From airlied at fedoraproject.org Wed Jul 1 00:03:36 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Wed, 1 Jul 2009 00:03:36 +0000 (UTC) Subject: rpms/kernel/F-11 drm-i915-enable-mchbar.patch, NONE, 1.1 drm-intel-a17-fix.patch, NONE, 1.1 drm-pnp-add-resource-range-checker.patch, NONE, 1.1 kernel.spec, 1.1669, 1.1670 Message-ID: <20090701000336.D646770128@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1792 Modified Files: kernel.spec Added Files: drm-i915-enable-mchbar.patch drm-intel-a17-fix.patch drm-pnp-add-resource-range-checker.patch Log Message: * Wed Jul 01 2009 Dave Airlie 2.6.29.5-208 - drm-intel-a17-fix.patch, drm-pnp-add-resource-range-checker.patch, drm-i915-enable-mchbar.patch: backport upstream fixes for 915/945 tiling slowness. drm-i915-enable-mchbar.patch: --- NEW FILE drm-i915-enable-mchbar.patch --- commit d765898970f35acef960581f678b9da9d5c779fa Author: Jesse Barnes Date: Fri Jun 5 14:41:29 2009 +0000 drm/i915: enable MCHBAR if needed Using the new PNP resource checking code, this patch allows the i915 driver to allocate MCHBAR space if needed and use the BAR to determine current memory settings. [apw at canonical.com: moved to the new generic PNP resource interface] Signed-off-by: Jesse Barnes Signed-off-by: Andy Whitcroft Signed-off-by: Eric Anholt failure to update-index after git-am --reject to hand-apply Signed-off-by: Eric Anholt diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index db81f55..6a47145 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -150,6 +150,8 @@ typedef struct drm_i915_private { drm_local_map_t hws_map; struct drm_gem_object *hws_obj; + struct resource mch_res; + unsigned int cpp; int back_offset; int front_offset; diff --git a/drivers/gpu/drm/i915/i915_gem_tiling.c b/drivers/gpu/drm/i915/i915_gem_tiling.c index 07d976b..9a05cad 100644 --- a/drivers/gpu/drm/i915/i915_gem_tiling.c +++ b/drivers/gpu/drm/i915/i915_gem_tiling.c @@ -25,6 +25,8 @@ * */ +#include +#include #include "linux/string.h" #include "linux/bitops.h" #include "drmP.h" @@ -81,6 +83,143 @@ * to match what the GPU expects. */ +#define MCHBAR_I915 0x44 +#define MCHBAR_I965 0x48 +#define MCHBAR_SIZE (4*4096) + +#define DEVEN_REG 0x54 +#define DEVEN_MCHBAR_EN (1 << 28) + +/* Allocate space for the MCH regs if needed, return nonzero on error */ +static int +intel_alloc_mchbar_resource(struct drm_device *dev) +{ + struct pci_dev *bridge_dev; + drm_i915_private_t *dev_priv = dev->dev_private; + int reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915; + u32 temp_lo, temp_hi = 0; + u64 mchbar_addr; + int ret = 0; + + bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0)); + if (!bridge_dev) { + DRM_DEBUG("no bridge dev?!\n"); + ret = -ENODEV; + goto out; + } + + if (IS_I965G(dev)) + pci_read_config_dword(bridge_dev, reg + 4, &temp_hi); + pci_read_config_dword(bridge_dev, reg, &temp_lo); + mchbar_addr = ((u64)temp_hi << 32) | temp_lo; + + /* If ACPI doesn't have it, assume we need to allocate it ourselves */ + if (mchbar_addr && + pnp_range_reserved(mchbar_addr, mchbar_addr + MCHBAR_SIZE)) { + ret = 0; + goto out_put; + } + + /* Get some space for it */ + ret = pci_bus_alloc_resource(bridge_dev->bus, &dev_priv->mch_res, + MCHBAR_SIZE, MCHBAR_SIZE, + PCIBIOS_MIN_MEM, + 0, pcibios_align_resource, + bridge_dev); + if (ret) { + DRM_DEBUG("failed bus alloc: %d\n", ret); + dev_priv->mch_res.start = 0; + goto out_put; + } + + if (IS_I965G(dev)) + pci_write_config_dword(bridge_dev, reg + 4, + upper_32_bits(dev_priv->mch_res.start)); + + pci_write_config_dword(bridge_dev, reg, + lower_32_bits(dev_priv->mch_res.start)); +out_put: + pci_dev_put(bridge_dev); +out: + return ret; +} + +/* Setup MCHBAR if possible, return true if we should disable it again */ +static bool +intel_setup_mchbar(struct drm_device *dev) +{ + struct pci_dev *bridge_dev; + int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915; + u32 temp; + bool need_disable = false, enabled; + + bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0)); + if (!bridge_dev) { + DRM_DEBUG("no bridge dev?!\n"); + goto out; + } + + if (IS_I915G(dev) || IS_I915GM(dev)) { + pci_read_config_dword(bridge_dev, DEVEN_REG, &temp); + enabled = !!(temp & DEVEN_MCHBAR_EN); + } else { + pci_read_config_dword(bridge_dev, mchbar_reg, &temp); + enabled = temp & 1; + } + + /* If it's already enabled, don't have to do anything */ + if (enabled) + goto out_put; + + if (intel_alloc_mchbar_resource(dev)) + goto out_put; + + need_disable = true; + + /* Space is allocated or reserved, so enable it. */ + if (IS_I915G(dev) || IS_I915GM(dev)) { + pci_write_config_dword(bridge_dev, DEVEN_REG, + temp | DEVEN_MCHBAR_EN); + } else { + pci_read_config_dword(bridge_dev, mchbar_reg, &temp); + pci_write_config_dword(bridge_dev, mchbar_reg, temp | 1); + } +out_put: + pci_dev_put(bridge_dev); +out: + return need_disable; +} + +static void +intel_teardown_mchbar(struct drm_device *dev, bool disable) +{ + drm_i915_private_t *dev_priv = dev->dev_private; + struct pci_dev *bridge_dev; + int mchbar_reg = IS_I965G(dev) ? MCHBAR_I965 : MCHBAR_I915; + u32 temp; + + bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0,0)); + if (!bridge_dev) { + DRM_DEBUG("no bridge dev?!\n"); + return; + } + + if (disable) { + if (IS_I915G(dev) || IS_I915GM(dev)) { + pci_read_config_dword(bridge_dev, DEVEN_REG, &temp); + temp &= ~DEVEN_MCHBAR_EN; + pci_write_config_dword(bridge_dev, DEVEN_REG, temp); + } else { + pci_read_config_dword(bridge_dev, mchbar_reg, &temp); + temp &= ~1; + pci_write_config_dword(bridge_dev, mchbar_reg, temp); + } + } + + if (dev_priv->mch_res.start) + release_resource(&dev_priv->mch_res); +} + /** * Detects bit 6 swizzling of address lookup between IGD access and CPU * access through main memory. @@ -91,6 +230,7 @@ i915_gem_detect_bit_6_swizzle(struct drm_device *dev) drm_i915_private_t *dev_priv = dev->dev_private; uint32_t swizzle_x = I915_BIT_6_SWIZZLE_UNKNOWN; uint32_t swizzle_y = I915_BIT_6_SWIZZLE_UNKNOWN; + bool need_disable; if (!IS_I9XX(dev)) { /* As far as we know, the 865 doesn't have these bit 6 @@ -101,6 +241,9 @@ i915_gem_detect_bit_6_swizzle(struct drm_device *dev) } else if (IS_MOBILE(dev)) { uint32_t dcc; + /* Try to make sure MCHBAR is enabled before poking at it */ + need_disable = intel_setup_mchbar(dev); + /* On mobile 9xx chipsets, channel interleave by the CPU is * determined by DCC. For single-channel, neither the CPU * nor the GPU do swizzling. For dual channel interleaved, @@ -140,6 +283,8 @@ i915_gem_detect_bit_6_swizzle(struct drm_device *dev) swizzle_x = I915_BIT_6_SWIZZLE_UNKNOWN; swizzle_y = I915_BIT_6_SWIZZLE_UNKNOWN; } + + intel_teardown_mchbar(dev, need_disable); } else { /* The 965, G33, and newer, have a very flexible memory * configuration. It will enable dual-channel mode drm-intel-a17-fix.patch: --- NEW FILE drm-intel-a17-fix.patch --- commit 280b713b5b0fd84cf2469098aee88acbb5de859c Author: Eric Anholt Date: Thu Mar 12 16:56:27 2009 -0700 drm/i915: Allow tiling of objects with bit 17 swizzling by the CPU. Save the bit 17 state of the pages when freeing the page list, and reswizzle them if necessary when rebinding the pages (in case they were swapped out). Since we have userland with expectations that the swizzle enums let it pread and pwrite contents accurately, we can't expose a new swizzle enum for bit 17 (which it would have to GTT map to handle), so we handle it down in pread and pwrite by swizzling the copy when bit 17 of the page address is set. Signed-off-by: Eric Anholt diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index efcd610..bccd414 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -446,6 +446,9 @@ struct drm_i915_gem_object { uint32_t tiling_mode; uint32_t stride; + /** Record of address bit 17 of each page at last unbind. */ + long *bit_17; + /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */ uint32_t agp_type; @@ -640,6 +643,8 @@ void i915_gem_object_put_pages(struct drm_gem_object *obj); /* i915_gem_tiling.c */ void i915_gem_detect_bit_6_swizzle(struct drm_device *dev); +void i915_gem_object_do_bit_17_swizzle(struct drm_gem_object *obj); +void i915_gem_object_save_bit_17_swizzle(struct drm_gem_object *obj); /* i915_gem_debug.c */ void i915_gem_dump_object(struct drm_gem_object *obj, int len, diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 3a1189d..6dca9fc 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c @@ -155,6 +155,15 @@ fast_shmem_read(struct page **pages, return 0; } +static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj) +{ + drm_i915_private_t *dev_priv = obj->dev->dev_private; + struct drm_i915_gem_object *obj_priv = obj->driver_private; + + return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 && + obj_priv->tiling_mode != I915_TILING_NONE; +} + static inline int slow_shmem_copy(struct page *dst_page, int dst_offset, @@ -182,6 +191,64 @@ slow_shmem_copy(struct page *dst_page, return 0; } +static inline int +slow_shmem_bit17_copy(struct page *gpu_page, + int gpu_offset, + struct page *cpu_page, + int cpu_offset, + int length, + int is_read) +{ + char *gpu_vaddr, *cpu_vaddr; + + /* Use the unswizzled path if this page isn't affected. */ + if ((page_to_phys(gpu_page) & (1 << 17)) == 0) { + if (is_read) + return slow_shmem_copy(cpu_page, cpu_offset, + gpu_page, gpu_offset, length); + else + return slow_shmem_copy(gpu_page, gpu_offset, + cpu_page, cpu_offset, length); + } + + gpu_vaddr = kmap_atomic(gpu_page, KM_USER0); + if (gpu_vaddr == NULL) + return -ENOMEM; + + cpu_vaddr = kmap_atomic(cpu_page, KM_USER1); + if (cpu_vaddr == NULL) { + kunmap_atomic(gpu_vaddr, KM_USER0); + return -ENOMEM; + } + + /* Copy the data, XORing A6 with A17 (1). The user already knows he's + * XORing with the other bits (A9 for Y, A9 and A10 for X) + */ + while (length > 0) { + int cacheline_end = ALIGN(gpu_offset + 1, 64); + int this_length = min(cacheline_end - gpu_offset, length); + int swizzled_gpu_offset = gpu_offset ^ 64; + + if (is_read) { + memcpy(cpu_vaddr + cpu_offset, + gpu_vaddr + swizzled_gpu_offset, + this_length); + } else { + memcpy(gpu_vaddr + swizzled_gpu_offset, + cpu_vaddr + cpu_offset, + this_length); + } + cpu_offset += this_length; + gpu_offset += this_length; + length -= this_length; + } + + kunmap_atomic(cpu_vaddr, KM_USER1); + kunmap_atomic(gpu_vaddr, KM_USER0); + + return 0; +} + /** * This is the fast shmem pread path, which attempts to copy_from_user directly * from the backing pages of the object to the user's address space. On a @@ -270,6 +337,7 @@ i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj, int page_length; int ret; uint64_t data_ptr = args->data_ptr; + int do_bit17_swizzling; remain = args->size; @@ -294,6 +362,8 @@ i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj, goto fail_put_user_pages; } + do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); + mutex_lock(&dev->struct_mutex); ret = i915_gem_object_get_pages(obj); @@ -328,11 +398,20 @@ i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj, if ((data_page_offset + page_length) > PAGE_SIZE) page_length = PAGE_SIZE - data_page_offset; - ret = slow_shmem_copy(user_pages[data_page_index], - data_page_offset, - obj_priv->pages[shmem_page_index], - shmem_page_offset, - page_length); + if (do_bit17_swizzling) { + ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index], + shmem_page_offset, + user_pages[data_page_index], + data_page_offset, + page_length, + 1); + } else { + ret = slow_shmem_copy(user_pages[data_page_index], + data_page_offset, + obj_priv->pages[shmem_page_index], + shmem_page_offset, + page_length); + } if (ret) goto fail_put_pages; @@ -384,9 +463,14 @@ i915_gem_pread_ioctl(struct drm_device *dev, void *data, return -EINVAL; } - ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv); - if (ret != 0) + if (i915_gem_object_needs_bit17_swizzle(obj)) { ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv); + } else { + ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv); + if (ret != 0) + ret = i915_gem_shmem_pread_slow(dev, obj, args, + file_priv); + } drm_gem_object_unreference(obj); @@ -728,6 +812,7 @@ i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj, int page_length; int ret; uint64_t data_ptr = args->data_ptr; + int do_bit17_swizzling; remain = args->size; @@ -752,6 +837,8 @@ i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj, goto fail_put_user_pages; } + do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); + mutex_lock(&dev->struct_mutex); ret = i915_gem_object_get_pages(obj); @@ -786,11 +873,20 @@ i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj, if ((data_page_offset + page_length) > PAGE_SIZE) page_length = PAGE_SIZE - data_page_offset; - ret = slow_shmem_copy(obj_priv->pages[shmem_page_index], - shmem_page_offset, - user_pages[data_page_index], - data_page_offset, - page_length); + if (do_bit17_swizzling) { + ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index], + shmem_page_offset, + user_pages[data_page_index], + data_page_offset, + page_length, + 0); + } else { + ret = slow_shmem_copy(obj_priv->pages[shmem_page_index], + shmem_page_offset, + user_pages[data_page_index], + data_page_offset, + page_length); + } if (ret) goto fail_put_pages; @@ -855,6 +951,8 @@ i915_gem_pwrite_ioctl(struct drm_device *dev, void *data, ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file_priv); } + } else if (i915_gem_object_needs_bit17_swizzle(obj)) { + ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file_priv); } else { ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file_priv); if (ret == -EFAULT) { @@ -1298,6 +1396,9 @@ i915_gem_object_put_pages(struct drm_gem_object *obj) if (--obj_priv->pages_refcount != 0) return; + if (obj_priv->tiling_mode != I915_TILING_NONE) + i915_gem_object_save_bit_17_swizzle(obj); + for (i = 0; i < page_count; i++) if (obj_priv->pages[i] != NULL) { if (obj_priv->dirty) @@ -1923,6 +2024,10 @@ i915_gem_object_get_pages(struct drm_gem_object *obj) } obj_priv->pages[i] = page; } + + if (obj_priv->tiling_mode != I915_TILING_NONE) + i915_gem_object_do_bit_17_swizzle(obj); + return 0; } @@ -3601,6 +3706,7 @@ void i915_gem_free_object(struct drm_gem_object *obj) i915_gem_free_mmap_offset(obj); drm_free(obj_priv->page_cpu_valid, 1, DRM_MEM_DRIVER); + kfree(obj_priv->bit_17); drm_free(obj->driver_private, 1, DRM_MEM_DRIVER); } diff --git a/drivers/gpu/drm/i915/i915_gem_tiling.c b/drivers/gpu/drm/i915/i915_gem_tiling.c index 6be3f92..f27e523 100644 --- a/drivers/gpu/drm/i915/i915_gem_tiling.c +++ b/drivers/gpu/drm/i915/i915_gem_tiling.c @@ -25,6 +25,8 @@ * */ +#include "linux/string.h" +#include "linux/bitops.h" #include "drmP.h" #include "drm.h" #include "i915_drm.h" @@ -127,8 +129,8 @@ i915_gem_detect_bit_6_swizzle(struct drm_device *dev) swizzle_y = I915_BIT_6_SWIZZLE_9_11; } else { /* Bit 17 swizzling by the CPU in addition. */ - swizzle_x = I915_BIT_6_SWIZZLE_UNKNOWN; - swizzle_y = I915_BIT_6_SWIZZLE_UNKNOWN; + swizzle_x = I915_BIT_6_SWIZZLE_9_10_17; + swizzle_y = I915_BIT_6_SWIZZLE_9_17; } break; } @@ -288,6 +290,19 @@ i915_gem_set_tiling(struct drm_device *dev, void *data, args->swizzle_mode = dev_priv->mm.bit_6_swizzle_x; else args->swizzle_mode = dev_priv->mm.bit_6_swizzle_y; + + /* Hide bit 17 swizzling from the user. This prevents old Mesa + * from aborting the application on sw fallbacks to bit 17, + * and we use the pread/pwrite bit17 paths to swizzle for it. + * If there was a user that was relying on the swizzle + * information for drm_intel_bo_map()ed reads/writes this would + * break it, but we don't have any of those. + */ + if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_17) + args->swizzle_mode = I915_BIT_6_SWIZZLE_9; + if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_10_17) + args->swizzle_mode = I915_BIT_6_SWIZZLE_9_10; + /* If we can't handle the swizzling, make it untiled. */ if (args->swizzle_mode == I915_BIT_6_SWIZZLE_UNKNOWN) { args->tiling_mode = I915_TILING_NONE; @@ -354,8 +369,100 @@ i915_gem_get_tiling(struct drm_device *dev, void *data, DRM_ERROR("unknown tiling mode\n"); } + /* Hide bit 17 from the user -- see comment in i915_gem_set_tiling */ + if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_17) + args->swizzle_mode = I915_BIT_6_SWIZZLE_9; + if (args->swizzle_mode == I915_BIT_6_SWIZZLE_9_10_17) + args->swizzle_mode = I915_BIT_6_SWIZZLE_9_10; + drm_gem_object_unreference(obj); mutex_unlock(&dev->struct_mutex); return 0; } + +/** + * Swap every 64 bytes of this page around, to account for it having a new + * bit 17 of its physical address and therefore being interpreted differently + * by the GPU. + */ +static int +i915_gem_swizzle_page(struct page *page) +{ + char *vaddr; + int i; + char temp[64]; + + vaddr = kmap(page); + if (vaddr == NULL) + return -ENOMEM; + + for (i = 0; i < PAGE_SIZE; i += 128) { + memcpy(temp, &vaddr[i], 64); + memcpy(&vaddr[i], &vaddr[i + 64], 64); + memcpy(&vaddr[i + 64], temp, 64); + } + + kunmap(page); + + return 0; +} + +void +i915_gem_object_do_bit_17_swizzle(struct drm_gem_object *obj) +{ + struct drm_device *dev = obj->dev; + drm_i915_private_t *dev_priv = dev->dev_private; + struct drm_i915_gem_object *obj_priv = obj->driver_private; + int page_count = obj->size >> PAGE_SHIFT; + int i; + + if (dev_priv->mm.bit_6_swizzle_x != I915_BIT_6_SWIZZLE_9_10_17) + return; + + if (obj_priv->bit_17 == NULL) + return; + + for (i = 0; i < page_count; i++) { + char new_bit_17 = page_to_phys(obj_priv->pages[i]) >> 17; + if ((new_bit_17 & 0x1) != + (test_bit(i, obj_priv->bit_17) != 0)) { + int ret = i915_gem_swizzle_page(obj_priv->pages[i]); + if (ret != 0) { + DRM_ERROR("Failed to swizzle page\n"); + return; + } + set_page_dirty(obj_priv->pages[i]); + } + } +} + +void +i915_gem_object_save_bit_17_swizzle(struct drm_gem_object *obj) +{ + struct drm_device *dev = obj->dev; + drm_i915_private_t *dev_priv = dev->dev_private; + struct drm_i915_gem_object *obj_priv = obj->driver_private; + int page_count = obj->size >> PAGE_SHIFT; + int i; + + if (dev_priv->mm.bit_6_swizzle_x != I915_BIT_6_SWIZZLE_9_10_17) + return; + + if (obj_priv->bit_17 == NULL) { + obj_priv->bit_17 = kmalloc(BITS_TO_LONGS(page_count) * + sizeof(long), GFP_KERNEL); + if (obj_priv->bit_17 == NULL) { + DRM_ERROR("Failed to allocate memory for bit 17 " + "record\n"); + return; + } + } + + for (i = 0; i < page_count; i++) { + if (page_to_phys(obj_priv->pages[i]) & (1 << 17)) + __set_bit(i, obj_priv->bit_17); + else + __clear_bit(i, obj_priv->bit_17); + } +} diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index 67e3353..95962fa 100644 --- a/include/drm/i915_drm.h +++ b/include/drm/i915_drm.h @@ -594,6 +594,9 @@ struct drm_i915_gem_busy { #define I915_BIT_6_SWIZZLE_9_10_11 4 /* Not seen by userland */ #define I915_BIT_6_SWIZZLE_UNKNOWN 5 +/* Seen by userland. */ +#define I915_BIT_6_SWIZZLE_9_17 6 +#define I915_BIT_6_SWIZZLE_9_10_17 7 struct drm_i915_gem_set_tiling { /** Handle of the buffer to have its tiling state updated */ drm-pnp-add-resource-range-checker.patch: --- NEW FILE drm-pnp-add-resource-range-checker.patch --- commit 1b8e69662e1a086878bf930a6042daf7f8a076cc Author: Bjorn Helgaas Date: Fri Jun 5 14:37:23 2009 +0000 pnp: add PNP resource range checking function Add a PNP resource range check function, indicating whether a resource has been assigned to any device. Signed-off-by: Bjorn Helgaas [apw at canonical.com: fixed up exports et al] Signed-off-by: Andy Whitcroft Signed-off-by: Eric Anholt diff --git a/drivers/pnp/resource.c b/drivers/pnp/resource.c index f604061..ba97654 100644 --- a/drivers/pnp/resource.c +++ b/drivers/pnp/resource.c @@ -638,6 +638,24 @@ int pnp_possible_config(struct pnp_dev *dev, int type, resource_size_t start, } EXPORT_SYMBOL(pnp_possible_config); +int pnp_range_reserved(resource_size_t start, resource_size_t end) +{ + struct pnp_dev *dev; + struct pnp_resource *pnp_res; + resource_size_t *dev_start, *dev_end; + + pnp_for_each_dev(dev) { + list_for_each_entry(pnp_res, &dev->resources, list) { + dev_start = &pnp_res->res.start; + dev_end = &pnp_res->res.end; + if (ranged_conflict(&start, &end, dev_start, dev_end)) + return 1; + } + } + return 0; +} +EXPORT_SYMBOL(pnp_range_reserved); + /* format is: pnp_reserve_irq=irq1[,irq2] .... */ static int __init pnp_setup_reserve_irq(char *str) { diff --git a/include/linux/pnp.h b/include/linux/pnp.h index ca3c887..b063c73 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h @@ -446,6 +446,7 @@ int pnp_start_dev(struct pnp_dev *dev); int pnp_stop_dev(struct pnp_dev *dev); int pnp_activate_dev(struct pnp_dev *dev); int pnp_disable_dev(struct pnp_dev *dev); +int pnp_range_reserved(resource_size_t start, resource_size_t end); /* protocol helpers */ int pnp_is_active(struct pnp_dev *dev); @@ -476,6 +477,7 @@ static inline int pnp_start_dev(struct pnp_dev *dev) { return -ENODEV; } static inline int pnp_stop_dev(struct pnp_dev *dev) { return -ENODEV; } static inline int pnp_activate_dev(struct pnp_dev *dev) { return -ENODEV; } static inline int pnp_disable_dev(struct pnp_dev *dev) { return -ENODEV; } +static inline int pnp_range_reserved(resource_size_t start, resource_size_t end) { return 0;} /* protocol helpers */ static inline int pnp_is_active(struct pnp_dev *dev) { return 0; } Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1669 retrieving revision 1.1670 diff -u -p -r1.1669 -r1.1670 --- kernel.spec 30 Jun 2009 19:02:07 -0000 1.1669 +++ kernel.spec 1 Jul 2009 00:03:06 -0000 1.1670 @@ -730,6 +730,9 @@ Patch1843: drm-dont-frob-i2c.patch Patch1844: drm-connector-dpms-fix.patch Patch1845: drm-intel-tv-fix.patch Patch1846: drm-radeon-cs-oops-fix.patch +Patch1847: drm-intel-a17-fix.patch +Patch1848: drm-pnp-add-resource-range-checker.patch +Patch1849: drm-i915-enable-mchbar.patch # kludge to make ich9 e1000 work Patch2000: linux-2.6-e1000-ich9.patch @@ -1444,6 +1447,9 @@ ApplyPatch drm-dont-frob-i2c.patch ApplyPatch drm-connector-dpms-fix.patch ApplyPatch drm-intel-tv-fix.patch ApplyPatch drm-radeon-cs-oops-fix.patch +ApplyPatch drm-intel-a17-fix.patch +ApplyPatch drm-pnp-add-resource-range-checker.patch +ApplyPatch drm-i915-enable-mchbar.patch # linux1394 git patches ApplyPatch linux-2.6-firewire-git-update.patch @@ -2091,6 +2097,9 @@ fi # and build. %changelog +* Wed Jul 01 2009 Dave Airlie 2.6.29.5-208 +- drm-intel-a17-fix.patch, drm-pnp-add-resource-range-checker.patch, drm-i915-enable-mchbar.patch: backport upstream fixes for 915/945 tiling slowness. + * Tue Jun 30 2009 Chuck Ebbert 2.6.29.5-207 - Fix stalled NFS writes (#508174) - Fix broken TSC-based delay. From mclasen at fedoraproject.org Wed Jul 1 00:13:41 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 00:13:41 +0000 (UTC) Subject: rpms/pango/F-11 pango.spec,1.161,1.162 sources,1.88,1.89 Message-ID: <20090701001341.A325570128@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/pango/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3231 Modified Files: pango.spec sources Log Message: 1.24.4 Index: pango.spec =================================================================== RCS file: /cvs/pkgs/rpms/pango/F-11/pango.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- pango.spec 1 Jun 2009 16:24:16 -0000 1.161 +++ pango.spec 1 Jul 2009 00:13:11 -0000 1.162 @@ -8,7 +8,7 @@ Summary: System for layout and rendering of internationalized text Name: pango -Version: 1.24.2 +Version: 1.24.4 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -225,6 +225,10 @@ fi %changelog +* Tue Jun 30 2009 Matthias Clasen - 1.24.4-1 +- Update to 1.24.4 +- http://download.gnome.org/sources/pango/1.24/pango-1.24.4.news + * Mon Jun 1 2009 Matthias Clasen - 1.24.2-1 - Update to 1.24.2 - http://download.gnome.org/sources/pango/1.24/pango-1.24.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pango/F-11/sources,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- sources 1 Jun 2009 16:24:16 -0000 1.88 +++ sources 1 Jul 2009 00:13:11 -0000 1.89 @@ -1 +1 @@ -7bc6c884d847cabc613e4c6d663771f5 pango-1.24.2.tar.bz2 +f2eeaf183930e00ed28fca3a6ed1deb0 pango-1.24.4.tar.bz2 From agk at fedoraproject.org Wed Jul 1 00:21:27 2009 From: agk at fedoraproject.org (agk) Date: Wed, 1 Jul 2009 00:21:27 +0000 (UTC) Subject: rpms/lvm2/devel LVM2.2.02.48.tgz.asc, NONE, 1.1 .cvsignore, 1.66, 1.67 lvm2.spec, 1.159, 1.160 sources, 1.70, 1.71 upstream, 1.59, 1.60 LVM2.2.02.45.tgz.asc, 1.1, NONE lvm2-2_02_48-cluster-cpg-new-api.patch, 1.1, NONE Message-ID: <20090701002127.5F04870136@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4249 Modified Files: .cvsignore lvm2.spec sources upstream Added Files: LVM2.2.02.48.tgz.asc Removed Files: LVM2.2.02.45.tgz.asc lvm2-2_02_48-cluster-cpg-new-api.patch Log Message: New upstream --- NEW FILE LVM2.2.02.48.tgz.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQBKSmiOIoGRwVZ+LBcRAuOEAJ91bUIQ8VQtN8sQlaZx1MQIsBCSaQCgsvgQ g5k7R3ofyTUbNAqzzGWLng4= =X6rZ -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 22 May 2009 17:53:01 -0000 1.66 +++ .cvsignore 1 Jul 2009 00:20:56 -0000 1.67 @@ -1 +1 @@ -LVM2.2.02.47.tgz +LVM2.2.02.48.tgz Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.159 retrieving revision 1.160 diff -u -p -r1.159 -r1.160 --- lvm2.spec 11 Jun 2009 06:43:43 -0000 1.159 +++ lvm2.spec 1 Jul 2009 00:20:56 -0000 1.160 @@ -1,4 +1,4 @@ -%define device_mapper_version 1.02.32 +%define device_mapper_version 1.02.33 %define corosync_version 0.97-1 %define clusterlib_version 3.0.0-12.alpha6 @@ -7,8 +7,8 @@ Summary: Userland logical volume management tools Name: lvm2 -Version: 2.02.47 -Release: 2%{?dist} +Version: 2.02.48 +Release: 1%{?dist} License: GPLv2 Group: System Environment/Base URL: http://sources.redhat.com/lvm2 @@ -16,7 +16,6 @@ Source0: ftp://sources.redhat.com/pub/lv # Customise lvmconf.sh for built-in clustered locking in Fedora Patch0: cluster-locking-built-in.patch -Patch1: lvm2-2_02_48-cluster-cpg-new-api.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libselinux-devel >= 1.30.19-4, libsepol-devel @@ -42,7 +41,6 @@ or more physical volumes and creating on %prep %setup -q -n LVM2.%{version} %patch0 -p1 -b .locking -%patch1 -p1 -b .cpg %build %define _exec_prefix / @@ -268,6 +266,46 @@ This package contains the device-mapper %changelog +* Tue Jun 30 2009 Alasdair Kergon - 2.02.48-1 +- Abort if automatic metadata correction fails when reading VG to update it. +- Don't fallback to default major number in libdm: use dm_task_set_major_minor. +- Explicitly request fallback to default major number in device mapper. +- Ignore suspended devices during repair. +- Suggest using lvchange --resync when adding leg to not-yet-synced mirror. +- Destroy toolcontext on clvmd exit to avoid memory pool leaks. +- Fix lvconvert not to poll mirror if no conversion in progress. +- Fix memory leaks in toolcontext error path. +- Reinstate partial activation support in clustered mode. +- Allow metadata correction even when PVs are missing. +- Use 'lvm lvresize' instead of 'lvresize' in fsadm. +- Do not use '-n' realine option in fsadm for rescue disk compatiblity. +- Round up requested readahead to at least one page and print warning. +- Try to repair vg before actual vgremove when force flag provided. +- Unify error messages when processing inconsistent volume group. +- Introduce lvconvert --use_policies (repair policy according to lvm.conf). +- Fix rename of active snapshot with virtual origin. +- Fix convert polling to ignore LV with different UUID. +- Cache underlying device readahead only before activation calls. +- Fix segfault when calculating readahead on missing device in vgreduce. +- Remove verbose 'visited' messages. +- Handle multi-extent mirror log allocation when smallest PV has only 1 extent. +- Add LSB standard headers and functions (incl. reload) to clvmd initscript. +- When creating new LV, double-check that name is not already in use. +- Remove /dev/vgname/lvname symlink automatically if LV is no longer visible. +- Rename internal vorigin LV to match visible LV. +- Suppress 'removed' messages displayed when internal LVs are removed. +- Fix lvchange -a and -p for sparse LVs. +- Fix lvcreate --virtualsize to activate the new device immediately. +- Make --snapshot optional with lvcreate --virtualsize. +- Generalise --virtualoriginsize to --virtualsize. +- Skip virtual origins in process_each_lv_in_vg() without --all. +- Fix counting of virtual origin LVs in vg_validate. +- Attempt to load dm-zero module if zero target needed but not present. +- Add crypt target handling to libdevmapper tree nodes. +- Add splitname command to dmsetup. +- Add subsystem, vg_name, lv_name, lv_layer fields to dmsetup reports. +- Make mempool optional in dm_split_lvm_name() in libdevmapper. + * Wed Jun 10 2009 Fabio M. Di Nitto - 2.02.47-2 - BuildRequire newer version of corosynclib (0.97-1) to link against latest libraries version (soname 4.0.0). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/sources,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- sources 22 May 2009 17:53:01 -0000 1.70 +++ sources 1 Jul 2009 00:20:56 -0000 1.71 @@ -1 +1 @@ -669d57ff97d171fd4e077c61da1f9a34 LVM2.2.02.47.tgz +0d24c2709f439eeca36261e5cea68330 LVM2.2.02.48.tgz Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/upstream,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- upstream 22 May 2009 17:53:01 -0000 1.59 +++ upstream 1 Jul 2009 00:20:56 -0000 1.60 @@ -1 +1 @@ -LVM2.2.02.47.tgz +LVM2.2.02.48.tgz --- LVM2.2.02.45.tgz.asc DELETED --- --- lvm2-2_02_48-cluster-cpg-new-api.patch DELETED --- From mclasen at fedoraproject.org Wed Jul 1 00:36:29 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 00:36:29 +0000 (UTC) Subject: rpms/gnome-themes/F-11 duplicate-icons.patch, NONE, 1.1 gnome-themes.spec, 1.136, 1.137 Message-ID: <20090701003629.0AFAF70128@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-themes/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6649 Modified Files: gnome-themes.spec Added Files: duplicate-icons.patch Log Message: Fix build duplicate-icons.patch: --- NEW FILE duplicate-icons.patch --- diff -up gnome-themes-2.27.2/common/all-stock-icons.data.dupe gnome-themes-2.27.2/common/all-stock-icons.data --- gnome-themes-2.27.2/common/all-stock-icons.data.dupe 2009-05-31 19:27:04.503318057 -0400 +++ gnome-themes-2.27.2/common/all-stock-icons.data 2009-05-31 19:27:10.539326272 -0400 @@ -46,7 +46,6 @@ pixmap_DATA= stock_about.png stock_add.p media-prev.png media-next.png \ media-stop.png media-eject.png \ media-play.png media-pause.png media-record.png \ - media-backward.png media-forward.png \ media-backward.png media-forward.png \ volume-mute.png volume-zero.png \ volume-min.png volume-medium.png volume-max.png \ Index: gnome-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/F-11/gnome-themes.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- gnome-themes.spec 30 Jun 2009 23:21:21 -0000 1.136 +++ gnome-themes.spec 1 Jul 2009 00:35:58 -0000 1.137 @@ -4,6 +4,8 @@ Version: 2.26.3 Release:1%{?dist} URL: http://download.gnome.org/sources/gnome-themes/ Source: http://download.gnome.org/sources/gnome-themes/2.26/%{name}-%{version}.tar.bz2 +# http://bugzilla.gnome.org/show_bug.cgi?id=584403 +Patch0: duplicate-icons.patch License: LGPLv2 and GPLv2 Group: User Interface/Desktops BuildArch: noarch @@ -30,6 +32,8 @@ borders, cursors, etc. %prep %setup -q +%patch0 -p1 -b .duplicate-icons + find . -exec touch \{\} \; %build From mtasaka at fedoraproject.org Wed Jul 1 02:08:42 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 02:08:42 +0000 (UTC) Subject: rpms/ruby-gnome2/devel ruby-gnome2-0.19.0-gtk-missingheader.patch, NONE, 1.1 ruby-gnome2.spec, 1.38, 1.39 Message-ID: <20090701020842.518E011C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3058/devel Modified Files: ruby-gnome2.spec Added Files: ruby-gnome2-0.19.0-gtk-missingheader.patch Log Message: * Thu Jul 01 2009 Mamoru Tasaka - 0.19.0-2 - Install more needed header files in ruby-gtk2-devel (bug 509035) - Keep timestamps on installed header files ruby-gnome2-0.19.0-gtk-missingheader.patch: --- NEW FILE ruby-gnome2-0.19.0-gtk-missingheader.patch --- --- ruby-gnome2-all-0.19.0/gtk/src/depend.missing 2009-05-18 21:47:08.000000000 +0900 +++ ruby-gnome2-all-0.19.0/gtk/src/depend 2009-07-01 08:38:42.000000000 +0900 @@ -1,3 +1,6 @@ install: + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdk.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdkconversions.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtk.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkconversions.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkmacros.h $(sitearchdir)$(target_prefix) Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/devel/ruby-gnome2.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- ruby-gnome2.spec 17 Jun 2009 19:04:32 -0000 1.38 +++ ruby-gnome2.spec 1 Jul 2009 02:08:42 -0000 1.39 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 1 +%define mainrel 1.1 # Note # Currently this spec file does not support libgda module. @@ -24,6 +24,7 @@ Source0: http://downloads.sourcef Patch0: ruby-gnome2-0.17.0-rc1-script.patch Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch Patch15: ruby-gnome2-0.19.0-panel-applet.patch +Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby ruby-devel gtk2-devel libgnome-devel libgnomeui-devel @@ -501,6 +502,10 @@ Ruby/VTE is a Ruby binding of VTE. %patch0 -p1 %patch14 -p1 -b .moz %patch15 -p1 -b .panel +%patch16 -p1 -b .missing + +# Keep timestamps as much as possible +find . -type f -name depend | xargs sed -i -e 's|-m 0644 -v|-m 0644 -p -v|' # Fix the attributes of some files # suppress lots of messages.. @@ -630,8 +635,11 @@ rm -rf $RPM_BUILD_ROOT %files -n ruby-gtk2-devel %defattr(-,root,root,-) +%{ruby_sitearch}/rbgdk.h +%{ruby_sitearch}/rbgdkconversions.h %{ruby_sitearch}/rbgtk.h %{ruby_sitearch}/rbgtkconversions.h +%{ruby_sitearch}/rbgtkmacros.h %files -n ruby-gtkglext %defattr(-,root,root,-) @@ -718,6 +726,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 01 2009 Mamoru Tasaka - 0.19.0-2 +- Install more needed header files in ruby-gtk2-devel (bug 509035) +- Keep timestamps on installed header files + +* Tue Jun 30 2009 Christopher Aillon +- Rebuild against newer gecko + * Thu Jun 18 2009 Mamoru Tasaka - 0.19.0-1 - Update to 0.19.0 From mmcgrath at fedoraproject.org Wed Jul 1 02:08:36 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 1 Jul 2009 02:08:36 +0000 (UTC) Subject: rpms/ytalk/devel ytalk.spec,1.53,1.54 Message-ID: <20090701020836.3B3B711C02C3@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/ytalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3022 Modified Files: ytalk.spec Log Message: release bump for test build Index: ytalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ytalk/devel/ytalk.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- ytalk.spec 25 Feb 2009 18:19:15 -0000 1.53 +++ ytalk.spec 1 Jul 2009 02:08:34 -0000 1.54 @@ -2,7 +2,7 @@ Summary: A chat program for multiple use Name: ytalk Version: 3.3.0 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.impul.se/ytalk/ @@ -39,6 +39,9 @@ rm -rf %{buildroot} %config(noreplace) /etc/ytalkrc %changelog +* Tue Jun 30 2009 Mike McGrath 3.3.9-14 +- Release bump for test build + * Wed Feb 25 2009 Fedora Release Engineering - 3.3.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Wed Jul 1 02:09:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 02:09:11 +0000 (UTC) Subject: rpms/ruby-gnome2/F-11 ruby-gnome2-0.19.0-gtk-missingheader.patch, NONE, 1.1 ruby-gnome2.spec, 1.39, 1.40 Message-ID: <20090701020911.E314F11C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3058/F-11 Modified Files: ruby-gnome2.spec Added Files: ruby-gnome2-0.19.0-gtk-missingheader.patch Log Message: * Thu Jul 01 2009 Mamoru Tasaka - 0.19.0-2 - Install more needed header files in ruby-gtk2-devel (bug 509035) - Keep timestamps on installed header files ruby-gnome2-0.19.0-gtk-missingheader.patch: --- NEW FILE ruby-gnome2-0.19.0-gtk-missingheader.patch --- --- ruby-gnome2-all-0.19.0/gtk/src/depend.missing 2009-05-18 21:47:08.000000000 +0900 +++ ruby-gnome2-all-0.19.0/gtk/src/depend 2009-07-01 08:38:42.000000000 +0900 @@ -1,3 +1,6 @@ install: + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdk.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdkconversions.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtk.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkconversions.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkmacros.h $(sitearchdir)$(target_prefix) Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/F-11/ruby-gnome2.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- ruby-gnome2.spec 30 Jun 2009 19:06:59 -0000 1.39 +++ ruby-gnome2.spec 1 Jul 2009 02:08:41 -0000 1.40 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 1 +%define mainrel 1.1 # Note # Currently this spec file does not support libgda module. @@ -13,7 +13,7 @@ Name: ruby-gnome2 Version: 0.19.0 -Release: %{mainrel}%{?dist}.1 +Release: %{mainrel}%{?dist} Summary: Ruby binding of libgnome/libgnomeui-2.x Group: System Environment/Libraries @@ -24,6 +24,7 @@ Source0: http://downloads.sourcef Patch0: ruby-gnome2-0.17.0-rc1-script.patch Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch Patch15: ruby-gnome2-0.19.0-panel-applet.patch +Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby ruby-devel gtk2-devel libgnome-devel libgnomeui-devel @@ -501,6 +502,10 @@ Ruby/VTE is a Ruby binding of VTE. %patch0 -p1 %patch14 -p1 -b .moz %patch15 -p1 -b .panel +%patch16 -p1 -b .missing + +# Keep timestamps as much as possible +find . -type f -name depend | xargs sed -i -e 's|-m 0644 -v|-m 0644 -p -v|' # Fix the attributes of some files # suppress lots of messages.. @@ -630,8 +635,11 @@ rm -rf $RPM_BUILD_ROOT %files -n ruby-gtk2-devel %defattr(-,root,root,-) +%{ruby_sitearch}/rbgdk.h +%{ruby_sitearch}/rbgdkconversions.h %{ruby_sitearch}/rbgtk.h %{ruby_sitearch}/rbgtkconversions.h +%{ruby_sitearch}/rbgtkmacros.h %files -n ruby-gtkglext %defattr(-,root,root,-) @@ -718,7 +726,11 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jun 30 2009 Christopher Aillon - 0.19.0-1.1 +* Thu Jul 01 2009 Mamoru Tasaka - 0.19.0-2 +- Install more needed header files in ruby-gtk2-devel (bug 509035) +- Keep timestamps on installed header files + +* Tue Jun 30 2009 Christopher Aillon - Rebuild against newer gecko * Thu Jun 18 2009 Mamoru Tasaka - 0.19.0-1 From mtasaka at fedoraproject.org Wed Jul 1 02:10:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 02:10:29 +0000 (UTC) Subject: rpms/kazehakase/devel kazehakase.spec,1.84,1.85 Message-ID: <20090701021029.A93FD11C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kazehakase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3549 Modified Files: kazehakase.spec Log Message: * Wed Jul 1 2009 Mamoru Tasaka - Rebuild Index: kazehakase.spec =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/kazehakase.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- kazehakase.spec 30 May 2009 15:47:16 -0000 1.84 +++ kazehakase.spec 1 Jul 2009 02:09:59 -0000 1.85 @@ -34,7 +34,7 @@ %define svnver 3773_trunk -%define fedorarel 12 +%define fedorarel 13 %define _release %{fedorarel}%{?usesvn:.svn%svnver} %if 0%{?fedora} < 1 @@ -319,6 +319,9 @@ desktop-file-install \ %endif %changelog +* Wed Jul 1 2009 Mamoru Tasaka +- Rebuild + * Sun May 31 2009 Mamoru Tasaka - rev 3773 From mtasaka at fedoraproject.org Wed Jul 1 02:12:02 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 02:12:02 +0000 (UTC) Subject: rpms/ruby-gnome2/F-11 ruby-gnome2.spec,1.40,1.41 Message-ID: <20090701021202.AFBB911C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3926/F-11 Modified Files: ruby-gnome2.spec Log Message: No, no... Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/F-11/ruby-gnome2.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- ruby-gnome2.spec 1 Jul 2009 02:08:41 -0000 1.40 +++ ruby-gnome2.spec 1 Jul 2009 02:11:32 -0000 1.41 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 1.1 +%define mainrel 2 # Note # Currently this spec file does not support libgda module. From mtasaka at fedoraproject.org Wed Jul 1 02:12:03 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 02:12:03 +0000 (UTC) Subject: rpms/ruby-gnome2/devel ruby-gnome2.spec,1.39,1.40 Message-ID: <20090701021203.0098311C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3926/devel Modified Files: ruby-gnome2.spec Log Message: No, no... Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/devel/ruby-gnome2.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- ruby-gnome2.spec 1 Jul 2009 02:08:42 -0000 1.39 +++ ruby-gnome2.spec 1 Jul 2009 02:11:32 -0000 1.40 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 1.1 +%define mainrel 2 # Note # Currently this spec file does not support libgda module. From mmcgrath at fedoraproject.org Wed Jul 1 02:20:00 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 1 Jul 2009 02:20:00 +0000 (UTC) Subject: rpms/ytalk/devel ytalk.spec,1.54,1.55 Message-ID: <20090701022000.A07C211C02C3@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/ytalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5190 Modified Files: ytalk.spec Log Message: release bump for rebuild Index: ytalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ytalk/devel/ytalk.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- ytalk.spec 1 Jul 2009 02:08:34 -0000 1.54 +++ ytalk.spec 1 Jul 2009 02:19:30 -0000 1.55 @@ -2,7 +2,7 @@ Summary: A chat program for multiple use Name: ytalk Version: 3.3.0 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.impul.se/ytalk/ @@ -39,7 +39,7 @@ rm -rf %{buildroot} %config(noreplace) /etc/ytalkrc %changelog -* Tue Jun 30 2009 Mike McGrath 3.3.9-14 +* Tue Jun 30 2009 Mike McGrath 3.3.9-15 - Release bump for test build * Wed Feb 25 2009 Fedora Release Engineering - 3.3.0-13 From pkgdb at fedoraproject.org Wed Jul 1 02:21:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:21:43 +0000 Subject: [pkgdb] mash (Fedora EPEL, 5) updated by ausil Message-ID: <20090701022146.3FE2310F89C@bastion2.fedora.phx.redhat.com> ausil added a Fedora EPEL 5 branch for mash ausil has set commit to Approved for 107427 on mash (Fedora EPEL 5) ausil has set checkout to Approved for 107427 on mash (Fedora EPEL 5) ausil has set build to Approved for 107427 on mash (Fedora EPEL 5) ausil changed owner of mash in Fedora EPEL 5 to notting ausil approved watchbugzilla on mash (Fedora EPEL 5) for jkeating ausil approved watchcommits on mash (Fedora EPEL 5) for jkeating ausil approved commit on mash (Fedora EPEL 5) for jkeating ausil approved build on mash (Fedora EPEL 5) for jkeating ausil approved approveacls on mash (Fedora EPEL 5) for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mash From cebbert at fedoraproject.org Wed Jul 1 02:26:11 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 1 Jul 2009 02:26:11 +0000 (UTC) Subject: rpms/kernel/F-11 patch-2.6.29.6-rc1.bz2.sign, NONE, 1.1 .cvsignore, 1.1046, 1.1047 config-debug, 1.26, 1.27 config-generic, 1.285, 1.286 config-nodebug, 1.35, 1.36 kernel.spec, 1.1670, 1.1671 sources, 1.1008, 1.1009 upstream, 1.919, 1.920 linux-2.6-input-atkbd-forced-release.patch, 1.1, NONE linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch, 1.1, NONE Message-ID: <20090701022611.2AEF111C02C3@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6655 Modified Files: .cvsignore config-debug config-generic config-nodebug kernel.spec sources upstream Added Files: patch-2.6.29.6-rc1.bz2.sign Removed Files: linux-2.6-input-atkbd-forced-release.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch Log Message: Linux 2.6.29.6-rc1 Enable CONFIG_DEBUG_CREDENTIALS in debug kernels only. Dropped patches merged upstream: linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch linux-2.6-input-atkbd-forced-release.patch --- NEW FILE patch-2.6.29.6-rc1.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKSqw6yGugalF9Dw4RAm9XAJ9ALZmMV3sdS+KKV3BKK5PjZG8ekQCeKkjt WceNOiZQu+kndIDavARWdnk= =EqXv -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/.cvsignore,v retrieving revision 1.1046 retrieving revision 1.1047 diff -u -p -r1.1046 -r1.1047 --- .cvsignore 15 Jun 2009 22:09:50 -0000 1.1046 +++ .cvsignore 1 Jul 2009 02:26:10 -0000 1.1047 @@ -6,3 +6,4 @@ temp-* kernel-2.6.29 linux-2.6.29.tar.bz2 patch-2.6.29.5.bz2 +patch-2.6.29.6-rc1.bz2 Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-debug,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- config-debug 16 Jun 2009 19:05:14 -0000 1.26 +++ config-debug 1 Jul 2009 02:26:10 -0000 1.27 @@ -50,3 +50,6 @@ CONFIG_DEBUG_NOTIFIERS=y CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y + +# for bug #494067 +CONFIG_DEBUG_CREDENTIALS=y Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-generic,v retrieving revision 1.285 retrieving revision 1.286 diff -u -p -r1.285 -r1.286 --- config-generic 24 Jun 2009 20:26:09 -0000 1.285 +++ config-generic 1 Jul 2009 02:26:10 -0000 1.286 @@ -3860,7 +3860,3 @@ CONFIG_FCOE=m # CONFIG_CRASH is not set CONFIG_MMC_VIA_SDMMC=m - -# for bug #494067 -CONFIG_DEBUG_CREDENTIALS=y - Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-nodebug,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- config-nodebug 16 Jun 2009 19:05:14 -0000 1.35 +++ config-nodebug 1 Jul 2009 02:26:10 -0000 1.36 @@ -49,3 +49,6 @@ CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 # CONFIG_DMA_API_DEBUG is not set # CONFIG_MMIOTRACE is not set + +# for bug #494067 +# CONFIG_DEBUG_CREDENTIALS is not set Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1670 retrieving revision 1.1671 diff -u -p -r1.1670 -r1.1671 --- kernel.spec 1 Jul 2009 00:03:06 -0000 1.1670 +++ kernel.spec 1 Jul 2009 02:26:10 -0000 1.1671 @@ -37,9 +37,9 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 5 +%define stable_update 6 # Is it a -stable RC? -%define stable_rc 0 +%define stable_rc 1 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev .%{stable_update} @@ -640,7 +640,6 @@ Patch450: linux-2.6-input-kill-stupid-me Patch451: linux-2.6-input-fix-toshiba-hotkeys.patch Patch452: linux-2.6-input-hid-extra-gamepad.patch Patch453: linux-2.6-input-wacom-bluetooth.patch -Patch454: linux-2.6-input-atkbd-forced-release.patch Patch455: linux-2.6-input-bcm5974-new-header-type.patch Patch456: linux-2.6-input-bcm5974-add-quad-finger.patch Patch457: linux-2.6-input-bcm5974-add-macbook-unibody.patch @@ -671,7 +670,6 @@ Patch611: linux-2.6.29-alsa-update-quirk Patch612: alsa-hda-add-debugging.patch Patch630: net-revert-forcedeth-power-down-phy-when-interface-is.patch -Patch641: linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch Patch642: linux-2.6-netdev-r8169-use-different-family-defaults.patch Patch670: linux-2.6-ata-quirk.patch @@ -1319,7 +1317,6 @@ ApplyPatch alsa-hda-add-debugging.patch ApplyPatch net-revert-forcedeth-power-down-phy-when-interface-is.patch # r8169 fixes from 2.6.30 -ApplyPatch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch ApplyPatch linux-2.6-netdev-r8169-use-different-family-defaults.patch # Misc fixes @@ -1335,9 +1332,6 @@ ApplyPatch linux-2.6-input-hid-extra-gam # HID: add support for Bluetooth Wacom pads ApplyPatch linux-2.6-input-wacom-bluetooth.patch -# atkbd: add forced key release quirks for four more notebooks -ApplyPatch linux-2.6-input-atkbd-forced-release.patch - # bcm5974: macbook 5 (unibody) support ApplyPatch linux-2.6-input-bcm5974-new-header-type.patch ApplyPatch linux-2.6-input-bcm5974-add-quad-finger.patch @@ -2097,8 +2091,17 @@ fi # and build. %changelog +* Wed Jul 01 2009 Chuck Ebbert 2.6.29.6-209.rc1 +- Linux 2.6.29.6-rc1 +- Enable CONFIG_DEBUG_CREDENTIALS in debug kernels only. +- Dropped patches merged upstream: + linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch + linux-2.6-input-atkbd-forced-release.patch + * Wed Jul 01 2009 Dave Airlie 2.6.29.5-208 -- drm-intel-a17-fix.patch, drm-pnp-add-resource-range-checker.patch, drm-i915-enable-mchbar.patch: backport upstream fixes for 915/945 tiling slowness. +- drm-intel-a17-fix.patch, drm-pnp-add-resource-range-checker.patch, + drm-i915-enable-mchbar.patch: + backport upstream fixes for 915/945 tiling slowness. * Tue Jun 30 2009 Chuck Ebbert 2.6.29.5-207 - Fix stalled NFS writes (#508174) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/sources,v retrieving revision 1.1008 retrieving revision 1.1009 diff -u -p -r1.1008 -r1.1009 --- sources 15 Jun 2009 22:09:52 -0000 1.1008 +++ sources 1 Jul 2009 02:26:10 -0000 1.1009 @@ -1,2 +1,3 @@ 64921b5ff5cdadbccfcd3820f03be7d8 linux-2.6.29.tar.bz2 bd23086872a85c9fd00163e9ab78038a patch-2.6.29.5.bz2 +40677f71b9e485bebe73d95ac4ea70a6 patch-2.6.29.6-rc1.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/upstream,v retrieving revision 1.919 retrieving revision 1.920 diff -u -p -r1.919 -r1.920 --- upstream 15 Jun 2009 22:09:52 -0000 1.919 +++ upstream 1 Jul 2009 02:26:10 -0000 1.920 @@ -1,2 +1,3 @@ linux-2.6.29.tar.bz2 patch-2.6.29.5.bz2 +patch-2.6.29.6-rc1.bz2 --- linux-2.6-input-atkbd-forced-release.patch DELETED --- --- linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 1 02:35:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:35:55 +0000 Subject: [pkgdb] xscope was added for yaneti Message-ID: <20090701023555.28E7810F899@bastion2.fedora.phx.redhat.com> tibbs has added Package xscope with summary X Window Protocol Viewer tibbs has approved Package xscope tibbs has added a Fedora devel branch for xscope with an owner of yaneti tibbs has approved xscope in Fedora devel tibbs has approved Package xscope tibbs has set commit to Approved for 107427 on xscope (Fedora devel) tibbs has set checkout to Approved for 107427 on xscope (Fedora devel) tibbs has set build to Approved for 107427 on xscope (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xscope From pkgdb at fedoraproject.org Wed Jul 1 02:35:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:35:56 +0000 Subject: [pkgdb] xscope summary updated by tibbs Message-ID: <20090701023556.246AA10F89C@bastion2.fedora.phx.redhat.com> tibbs set package xscope summary to X Window Protocol Viewer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xscope From tibbs at fedoraproject.org Wed Jul 1 02:36:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:01 +0000 (UTC) Subject: rpms/xscope/devel - New directory Message-ID: <20090701023601.4D67911C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xscope/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJo7937/rpms/xscope/devel Log Message: Directory /cvs/pkgs/rpms/xscope/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:35:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:35:56 +0000 Subject: [pkgdb] xscope (Fedora, 11) updated by tibbs Message-ID: <20090701023556.319DF10F8A4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for xscope tibbs has set commit to Approved for 107427 on xscope (Fedora 11) tibbs has set checkout to Approved for 107427 on xscope (Fedora 11) tibbs has set build to Approved for 107427 on xscope (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xscope From tibbs at fedoraproject.org Wed Jul 1 02:36:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:01 +0000 (UTC) Subject: rpms/xscope - New directory Message-ID: <20090701023601.255BC11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xscope In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJo7937/rpms/xscope Log Message: Directory /cvs/pkgs/rpms/xscope added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:35:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:35:56 +0000 Subject: [pkgdb] xscope (Fedora, 11) updated by tibbs Message-ID: <20090701023556.4430910F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for xscope tibbs has set commit to Approved for 107427 on xscope (Fedora 10) tibbs has set checkout to Approved for 107427 on xscope (Fedora 10) tibbs has set build to Approved for 107427 on xscope (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xscope From tibbs at fedoraproject.org Wed Jul 1 02:36:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:06 +0000 (UTC) Subject: rpms/xscope Makefile,NONE,1.1 Message-ID: <20090701023606.D4BF811C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xscope In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJo7937/rpms/xscope Added Files: Makefile Log Message: Setup of module xscope --- NEW FILE Makefile --- # Top level Makefile for module xscope all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:36:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:07 +0000 (UTC) Subject: rpms/xscope/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701023607.47A5511C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xscope/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJo7937/rpms/xscope/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module xscope --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: xscope # $Id: Makefile,v 1.1 2009/07/01 02:36:06 tibbs Exp $ NAME := xscope SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:36:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:36:30 +0000 Subject: [pkgdb] trac-customfieldadmin-plugin was added for jstanley Message-ID: <20090701023630.3466910F899@bastion2.fedora.phx.redhat.com> tibbs has added Package trac-customfieldadmin-plugin with summary Administer custom fields from web admin interface tibbs has approved Package trac-customfieldadmin-plugin tibbs has added a Fedora devel branch for trac-customfieldadmin-plugin with an owner of jstanley tibbs has approved trac-customfieldadmin-plugin in Fedora devel tibbs has approved Package trac-customfieldadmin-plugin tibbs has set commit to Approved for 107427 on trac-customfieldadmin-plugin (Fedora devel) tibbs has set checkout to Approved for 107427 on trac-customfieldadmin-plugin (Fedora devel) tibbs has set build to Approved for 107427 on trac-customfieldadmin-plugin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-customfieldadmin-plugin From pkgdb at fedoraproject.org Wed Jul 1 02:36:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:36:31 +0000 Subject: [pkgdb] trac-customfieldadmin-plugin summary updated by tibbs Message-ID: <20090701023631.B82A110F8A3@bastion2.fedora.phx.redhat.com> tibbs set package trac-customfieldadmin-plugin summary to Administer custom fields from web admin interface To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-customfieldadmin-plugin From pkgdb at fedoraproject.org Wed Jul 1 02:36:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:36:31 +0000 Subject: [pkgdb] trac-customfieldadmin-plugin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701023631.BD85410F8A7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for trac-customfieldadmin-plugin tibbs has set commit to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 11) tibbs has set checkout to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 11) tibbs has set build to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-customfieldadmin-plugin From pkgdb at fedoraproject.org Wed Jul 1 02:36:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:36:31 +0000 Subject: [pkgdb] trac-customfieldadmin-plugin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701023631.C9AF410F8AA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for trac-customfieldadmin-plugin tibbs has set commit to Approved for 107427 on trac-customfieldadmin-plugin (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on trac-customfieldadmin-plugin (Fedora EPEL 5) tibbs has set build to Approved for 107427 on trac-customfieldadmin-plugin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-customfieldadmin-plugin From tibbs at fedoraproject.org Wed Jul 1 02:36:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:37 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin - New directory Message-ID: <20090701023637.1826E11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsSU8663/rpms/trac-customfieldadmin-plugin Log Message: Directory /cvs/pkgs/rpms/trac-customfieldadmin-plugin added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:36:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:37 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin/devel - New directory Message-ID: <20090701023637.3AFE211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsSU8663/rpms/trac-customfieldadmin-plugin/devel Log Message: Directory /cvs/pkgs/rpms/trac-customfieldadmin-plugin/devel added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:36:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:43 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin Makefile,NONE,1.1 Message-ID: <20090701023643.0618E11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsSU8663/rpms/trac-customfieldadmin-plugin Added Files: Makefile Log Message: Setup of module trac-customfieldadmin-plugin --- NEW FILE Makefile --- # Top level Makefile for module trac-customfieldadmin-plugin all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:36:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:36:43 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701023643.7280611C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsSU8663/rpms/trac-customfieldadmin-plugin/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module trac-customfieldadmin-plugin --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: trac-customfieldadmin-plugin # $Id: Makefile,v 1.1 2009/07/01 02:36:43 tibbs Exp $ NAME := trac-customfieldadmin-plugin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:36:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:36:31 +0000 Subject: [pkgdb] trac-customfieldadmin-plugin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701023631.E313410F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for trac-customfieldadmin-plugin tibbs has set commit to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 10) tibbs has set checkout to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 10) tibbs has set build to Approved for 107427 on trac-customfieldadmin-plugin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-customfieldadmin-plugin From pkgdb at fedoraproject.org Wed Jul 1 02:37:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:37:20 +0000 Subject: [pkgdb] par2cmdline (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701023720.2467410F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for par2cmdline tibbs has set commit to Approved for 107427 on par2cmdline (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on par2cmdline (Fedora EPEL 5) tibbs has set build to Approved for 107427 on par2cmdline (Fedora EPEL 5) tibbs changed owner of par2cmdline in Fedora EPEL 5 to epienbro tibbs approved watchbugzilla on par2cmdline (Fedora EPEL 5) for konradm tibbs approved watchcommits on par2cmdline (Fedora EPEL 5) for konradm tibbs approved commit on par2cmdline (Fedora EPEL 5) for konradm tibbs approved build on par2cmdline (Fedora EPEL 5) for konradm tibbs approved approveacls on par2cmdline (Fedora EPEL 5) for konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/par2cmdline From pkgdb at fedoraproject.org Wed Jul 1 02:38:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:10 +0000 Subject: [pkgdb] hunspell-et was added for caolanm Message-ID: <20090701023810.C4FA910F8A6@bastion2.fedora.phx.redhat.com> tibbs has added Package hunspell-et with summary Estonian hunspell dictionaries tibbs has approved Package hunspell-et tibbs has added a Fedora devel branch for hunspell-et with an owner of caolanm tibbs has approved hunspell-et in Fedora devel tibbs has approved Package hunspell-et tibbs has set commit to Approved for 107427 on hunspell-et (Fedora devel) tibbs has set checkout to Approved for 107427 on hunspell-et (Fedora devel) tibbs has set build to Approved for 107427 on hunspell-et (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-et From pkgdb at fedoraproject.org Wed Jul 1 02:38:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:12 +0000 Subject: [pkgdb] hunspell-et summary updated by tibbs Message-ID: <20090701023813.587F310F8C3@bastion2.fedora.phx.redhat.com> tibbs set package hunspell-et summary to Estonian hunspell dictionaries To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-et From tibbs at fedoraproject.org Wed Jul 1 02:38:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:19 +0000 (UTC) Subject: rpms/hunspell-et - New directory Message-ID: <20090701023819.197D411C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-et In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFk9375/rpms/hunspell-et Log Message: Directory /cvs/pkgs/rpms/hunspell-et added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:38:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:19 +0000 (UTC) Subject: rpms/hunspell-et/devel - New directory Message-ID: <20090701023819.3639711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-et/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFk9375/rpms/hunspell-et/devel Log Message: Directory /cvs/pkgs/rpms/hunspell-et/devel added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:38:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:25 +0000 (UTC) Subject: rpms/hunspell-et Makefile,NONE,1.1 Message-ID: <20090701023825.7C9E311C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-et In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFk9375/rpms/hunspell-et Added Files: Makefile Log Message: Setup of module hunspell-et --- NEW FILE Makefile --- # Top level Makefile for module hunspell-et all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:38:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:25 +0000 (UTC) Subject: rpms/hunspell-et/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701023825.F13A111C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-et/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFk9375/rpms/hunspell-et/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module hunspell-et --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: hunspell-et # $Id: Makefile,v 1.1 2009/07/01 02:38:25 tibbs Exp $ NAME := hunspell-et SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:38:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:52 +0000 Subject: [pkgdb] miredo was added for jens Message-ID: <20090701023852.5379B10F8AD@bastion2.fedora.phx.redhat.com> tibbs has added Package miredo with summary Tunneling of IPv6 over UDP through NATs tibbs has approved Package miredo tibbs has added a Fedora devel branch for miredo with an owner of jens tibbs has approved miredo in Fedora devel tibbs has approved Package miredo tibbs has set commit to Approved for 107427 on miredo (Fedora devel) tibbs has set checkout to Approved for 107427 on miredo (Fedora devel) tibbs has set build to Approved for 107427 on miredo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/miredo From pkgdb at fedoraproject.org Wed Jul 1 02:38:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:53 +0000 Subject: [pkgdb] miredo summary updated by tibbs Message-ID: <20090701023853.6B98E10F8B2@bastion2.fedora.phx.redhat.com> tibbs set package miredo summary to Tunneling of IPv6 over UDP through NATs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/miredo From pkgdb at fedoraproject.org Wed Jul 1 02:38:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:53 +0000 Subject: [pkgdb] miredo (Fedora, 11) updated by tibbs Message-ID: <20090701023853.78F5C10F8C2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for miredo tibbs has set commit to Approved for 107427 on miredo (Fedora 11) tibbs has set checkout to Approved for 107427 on miredo (Fedora 11) tibbs has set build to Approved for 107427 on miredo (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/miredo From tibbs at fedoraproject.org Wed Jul 1 02:38:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:58 +0000 (UTC) Subject: rpms/miredo - New directory Message-ID: <20090701023858.13A9211C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/miredo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvspc9556/rpms/miredo Log Message: Directory /cvs/pkgs/rpms/miredo added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:38:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:38:58 +0000 (UTC) Subject: rpms/miredo/devel - New directory Message-ID: <20090701023858.3AC8611C041A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/miredo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvspc9556/rpms/miredo/devel Log Message: Directory /cvs/pkgs/rpms/miredo/devel added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:39:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:39:06 +0000 (UTC) Subject: rpms/miredo Makefile,NONE,1.1 Message-ID: <20090701023906.05EA211C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/miredo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvspc9556/rpms/miredo Added Files: Makefile Log Message: Setup of module miredo --- NEW FILE Makefile --- # Top level Makefile for module miredo all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:39:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:39:06 +0000 (UTC) Subject: rpms/miredo/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701023906.CDBEF11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/miredo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvspc9556/rpms/miredo/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module miredo --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: miredo # $Id: Makefile,v 1.1 2009/07/01 02:39:06 tibbs Exp $ NAME := miredo SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:38:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:38:53 +0000 Subject: [pkgdb] miredo (Fedora, 11) updated by tibbs Message-ID: <20090701023853.8470D10F8DA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for miredo tibbs has set commit to Approved for 107427 on miredo (Fedora 10) tibbs has set checkout to Approved for 107427 on miredo (Fedora 10) tibbs has set build to Approved for 107427 on miredo (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/miredo From pkgdb at fedoraproject.org Wed Jul 1 02:40:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:10 +0000 Subject: [pkgdb] php-pear-Auth_HTTP was added for topdog Message-ID: <20090701024010.48D6310F8A2@bastion2.fedora.phx.redhat.com> tibbs has added Package php-pear-Auth_HTTP with summary Class providing HTTP authentication methods tibbs has approved Package php-pear-Auth_HTTP tibbs has added a Fedora devel branch for php-pear-Auth_HTTP with an owner of topdog tibbs has approved php-pear-Auth_HTTP in Fedora devel tibbs has approved Package php-pear-Auth_HTTP tibbs has set commit to Approved for 107427 on php-pear-Auth_HTTP (Fedora devel) tibbs has set checkout to Approved for 107427 on php-pear-Auth_HTTP (Fedora devel) tibbs has set build to Approved for 107427 on php-pear-Auth_HTTP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From pkgdb at fedoraproject.org Wed Jul 1 02:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:12 +0000 Subject: [pkgdb] php-pear-Auth_HTTP summary updated by tibbs Message-ID: <20090701024012.9188710F8A6@bastion2.fedora.phx.redhat.com> tibbs set package php-pear-Auth_HTTP summary to Class providing HTTP authentication methods To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From pkgdb at fedoraproject.org Wed Jul 1 02:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:12 +0000 Subject: [pkgdb] php-pear-Auth_HTTP (Fedora, 11) updated by tibbs Message-ID: <20090701024012.A2E2F10F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for php-pear-Auth_HTTP tibbs has set commit to Approved for 107427 on php-pear-Auth_HTTP (Fedora 11) tibbs has set checkout to Approved for 107427 on php-pear-Auth_HTTP (Fedora 11) tibbs has set build to Approved for 107427 on php-pear-Auth_HTTP (Fedora 11) tibbs approved watchbugzilla on php-pear-Auth_HTTP (Fedora 11) for mtasaka tibbs approved watchcommits on php-pear-Auth_HTTP (Fedora 11) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From pkgdb at fedoraproject.org Wed Jul 1 02:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:12 +0000 Subject: [pkgdb] php-pear-Auth_HTTP (Fedora, 11) updated by tibbs Message-ID: <20090701024012.C858410F8B7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for php-pear-Auth_HTTP tibbs has set commit to Approved for 107427 on php-pear-Auth_HTTP (Fedora 10) tibbs has set checkout to Approved for 107427 on php-pear-Auth_HTTP (Fedora 10) tibbs has set build to Approved for 107427 on php-pear-Auth_HTTP (Fedora 10) tibbs approved watchbugzilla on php-pear-Auth_HTTP (Fedora 10) for mtasaka tibbs approved watchcommits on php-pear-Auth_HTTP (Fedora 10) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From tibbs at fedoraproject.org Wed Jul 1 02:40:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:18 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP - New directory Message-ID: <20090701024018.1516811C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvscu9887/rpms/php-pear-Auth_HTTP Log Message: Directory /cvs/pkgs/rpms/php-pear-Auth_HTTP added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:40:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:18 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/devel - New directory Message-ID: <20090701024018.4605511C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvscu9887/rpms/php-pear-Auth_HTTP/devel Log Message: Directory /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:12 +0000 Subject: [pkgdb] php-pear-Auth_HTTP (Fedora, 11) updated by tibbs Message-ID: <20090701024012.E3B8310F8BA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on php-pear-Auth_HTTP (Fedora devel) for mtasaka tibbs approved watchcommits on php-pear-Auth_HTTP (Fedora devel) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From tibbs at fedoraproject.org Wed Jul 1 02:40:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:23 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP Makefile,NONE,1.1 Message-ID: <20090701024023.E8B9E11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvscu9887/rpms/php-pear-Auth_HTTP Added Files: Makefile Log Message: Setup of module php-pear-Auth_HTTP --- NEW FILE Makefile --- # Top level Makefile for module php-pear-Auth_HTTP all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:40:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:24 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701024024.5F26B11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvscu9887/rpms/php-pear-Auth_HTTP/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-pear-Auth_HTTP --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-pear-Auth_HTTP # $Id: Makefile,v 1.1 2009/07/01 02:40:24 tibbs Exp $ NAME := php-pear-Auth_HTTP SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:40:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:46 +0000 Subject: [pkgdb] ldd-pdf was added for lonetwin Message-ID: <20090701024047.07C5510F8B3@bastion2.fedora.phx.redhat.com> tibbs has added Package ldd-pdf with summary Linux Device Drivers, Third Edition Book in PDF format tibbs has approved Package ldd-pdf tibbs has added a Fedora devel branch for ldd-pdf with an owner of lonetwin tibbs has approved ldd-pdf in Fedora devel tibbs has approved Package ldd-pdf tibbs has set commit to Approved for 107427 on ldd-pdf (Fedora devel) tibbs has set checkout to Approved for 107427 on ldd-pdf (Fedora devel) tibbs has set build to Approved for 107427 on ldd-pdf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ldd-pdf From pkgdb at fedoraproject.org Wed Jul 1 02:40:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:48 +0000 Subject: [pkgdb] ldd-pdf (Fedora, 11) updated by tibbs Message-ID: <20090701024048.85F5F10F8CC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ldd-pdf tibbs has set commit to Approved for 107427 on ldd-pdf (Fedora 11) tibbs has set checkout to Approved for 107427 on ldd-pdf (Fedora 11) tibbs has set build to Approved for 107427 on ldd-pdf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ldd-pdf From pkgdb at fedoraproject.org Wed Jul 1 02:40:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:48 +0000 Subject: [pkgdb] ldd-pdf summary updated by tibbs Message-ID: <20090701024048.7D37610F8C4@bastion2.fedora.phx.redhat.com> tibbs set package ldd-pdf summary to Linux Device Drivers, Third Edition Book in PDF format To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ldd-pdf From tibbs at fedoraproject.org Wed Jul 1 02:40:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:55 +0000 (UTC) Subject: rpms/ldd-pdf/devel - New directory Message-ID: <20090701024055.3563B11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ldd-pdf/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV10174/rpms/ldd-pdf/devel Log Message: Directory /cvs/pkgs/rpms/ldd-pdf/devel added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:40:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:40:55 +0000 (UTC) Subject: rpms/ldd-pdf - New directory Message-ID: <20090701024055.166F611C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ldd-pdf In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV10174/rpms/ldd-pdf Log Message: Directory /cvs/pkgs/rpms/ldd-pdf added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:40:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:40:48 +0000 Subject: [pkgdb] ldd-pdf (Fedora, 11) updated by tibbs Message-ID: <20090701024048.8CCA610F8CF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for ldd-pdf tibbs has set commit to Approved for 107427 on ldd-pdf (Fedora 10) tibbs has set checkout to Approved for 107427 on ldd-pdf (Fedora 10) tibbs has set build to Approved for 107427 on ldd-pdf (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ldd-pdf From tibbs at fedoraproject.org Wed Jul 1 02:41:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:41:00 +0000 (UTC) Subject: rpms/ldd-pdf Makefile,NONE,1.1 Message-ID: <20090701024100.DA00E11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ldd-pdf In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV10174/rpms/ldd-pdf Added Files: Makefile Log Message: Setup of module ldd-pdf --- NEW FILE Makefile --- # Top level Makefile for module ldd-pdf all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:41:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:41:01 +0000 (UTC) Subject: rpms/ldd-pdf/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701024101.BB38211C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ldd-pdf/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV10174/rpms/ldd-pdf/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ldd-pdf --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ldd-pdf # $Id: Makefile,v 1.1 2009/07/01 02:41:01 tibbs Exp $ NAME := ldd-pdf SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:42:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:06 +0000 Subject: [pkgdb] php-pecl-parsekit was added for hubbitus Message-ID: <20090701024206.6937510F8AB@bastion2.fedora.phx.redhat.com> tibbs has added Package php-pecl-parsekit with summary PHP Opcode Analyser tibbs has approved Package php-pecl-parsekit tibbs has added a Fedora devel branch for php-pecl-parsekit with an owner of hubbitus tibbs has approved php-pecl-parsekit in Fedora devel tibbs has approved Package php-pecl-parsekit tibbs has set commit to Approved for 107427 on php-pecl-parsekit (Fedora devel) tibbs has set checkout to Approved for 107427 on php-pecl-parsekit (Fedora devel) tibbs has set build to Approved for 107427 on php-pecl-parsekit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-parsekit From pkgdb at fedoraproject.org Wed Jul 1 02:42:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:07 +0000 Subject: [pkgdb] php-pecl-parsekit summary updated by tibbs Message-ID: <20090701024207.884F610F8AF@bastion2.fedora.phx.redhat.com> tibbs set package php-pecl-parsekit summary to PHP Opcode Analyser To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-parsekit From pkgdb at fedoraproject.org Wed Jul 1 02:42:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:07 +0000 Subject: [pkgdb] php-pecl-parsekit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701024207.8E11810F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-pecl-parsekit tibbs has set commit to Approved for 107427 on php-pecl-parsekit (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-pecl-parsekit (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-pecl-parsekit (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-parsekit From pkgdb at fedoraproject.org Wed Jul 1 02:42:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:07 +0000 Subject: [pkgdb] php-pecl-parsekit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701024207.940F710F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for php-pecl-parsekit tibbs has set commit to Approved for 107427 on php-pecl-parsekit (Fedora 11) tibbs has set checkout to Approved for 107427 on php-pecl-parsekit (Fedora 11) tibbs has set build to Approved for 107427 on php-pecl-parsekit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-parsekit From tibbs at fedoraproject.org Wed Jul 1 02:42:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:13 +0000 (UTC) Subject: rpms/php-pecl-parsekit - New directory Message-ID: <20090701024213.15A4B11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pecl-parsekit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsp10602/rpms/php-pecl-parsekit Log Message: Directory /cvs/pkgs/rpms/php-pecl-parsekit added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:42:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:07 +0000 Subject: [pkgdb] php-pecl-parsekit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090701024207.9AF5C10F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for php-pecl-parsekit tibbs has set commit to Approved for 107427 on php-pecl-parsekit (Fedora 10) tibbs has set checkout to Approved for 107427 on php-pecl-parsekit (Fedora 10) tibbs has set build to Approved for 107427 on php-pecl-parsekit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-parsekit From tibbs at fedoraproject.org Wed Jul 1 02:42:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:13 +0000 (UTC) Subject: rpms/php-pecl-parsekit/devel - New directory Message-ID: <20090701024213.313E711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pecl-parsekit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsp10602/rpms/php-pecl-parsekit/devel Log Message: Directory /cvs/pkgs/rpms/php-pecl-parsekit/devel added to the repository From mmcgrath at fedoraproject.org Wed Jul 1 02:42:19 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 1 Jul 2009 02:42:19 +0000 (UTC) Subject: rpms/nagios/devel nagios.spec,1.69,1.70 Message-ID: <20090701024219.5EC9511C02C3@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/nagios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10642 Modified Files: nagios.spec Log Message: test commit Index: nagios.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios/devel/nagios.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- nagios.spec 29 Jun 2009 19:38:19 -0000 1.69 +++ nagios.spec 1 Jul 2009 02:42:18 -0000 1.70 @@ -1,4 +1,5 @@ Name: nagios + Version: 3.1.2 Release: 1%{?dist} Summary: Host/service/network monitoring program From tibbs at fedoraproject.org Wed Jul 1 02:42:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:19 +0000 (UTC) Subject: rpms/php-pecl-parsekit Makefile,NONE,1.1 Message-ID: <20090701024219.6755E11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pecl-parsekit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsp10602/rpms/php-pecl-parsekit Added Files: Makefile Log Message: Setup of module php-pecl-parsekit --- NEW FILE Makefile --- # Top level Makefile for module php-pecl-parsekit all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:42:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:19 +0000 (UTC) Subject: rpms/php-pecl-parsekit/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701024219.C80F911C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pecl-parsekit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsp10602/rpms/php-pecl-parsekit/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-pecl-parsekit --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-pecl-parsekit # $Id: Makefile,v 1.1 2009/07/01 02:42:19 tibbs Exp $ NAME := php-pecl-parsekit SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:42:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:35 +0000 Subject: [pkgdb] sK1 was added for itamarjp Message-ID: <20090701024235.3AF0B10F8CD@bastion2.fedora.phx.redhat.com> tibbs has added Package sK1 with summary open-source illustration program tibbs has approved Package sK1 tibbs has added a Fedora devel branch for sK1 with an owner of itamarjp tibbs has approved sK1 in Fedora devel tibbs has approved Package sK1 tibbs has set commit to Approved for 107427 on sK1 (Fedora devel) tibbs has set checkout to Approved for 107427 on sK1 (Fedora devel) tibbs has set build to Approved for 107427 on sK1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sK1 From pkgdb at fedoraproject.org Wed Jul 1 02:42:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:36 +0000 Subject: [pkgdb] sK1 summary updated by tibbs Message-ID: <20090701024236.DD28B10F8D0@bastion2.fedora.phx.redhat.com> tibbs set package sK1 summary to open-source illustration program To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sK1 From pkgdb at fedoraproject.org Wed Jul 1 02:42:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:36 +0000 Subject: [pkgdb] sK1 (Fedora, 11) updated by tibbs Message-ID: <20090701024236.E691910F8D3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for sK1 tibbs has set commit to Approved for 107427 on sK1 (Fedora 11) tibbs has set checkout to Approved for 107427 on sK1 (Fedora 11) tibbs has set build to Approved for 107427 on sK1 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sK1 From tibbs at fedoraproject.org Wed Jul 1 02:42:42 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:42 +0000 (UTC) Subject: rpms/sK1 - New directory Message-ID: <20090701024242.13BFD11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sK1 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz10909/rpms/sK1 Log Message: Directory /cvs/pkgs/rpms/sK1 added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:42:42 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:42 +0000 (UTC) Subject: rpms/sK1/devel - New directory Message-ID: <20090701024242.3382111C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sK1/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz10909/rpms/sK1/devel Log Message: Directory /cvs/pkgs/rpms/sK1/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 1 02:42:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:42:36 +0000 Subject: [pkgdb] sK1 (Fedora, 11) updated by tibbs Message-ID: <20090701024237.0052A10F8DD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for sK1 tibbs has set commit to Approved for 107427 on sK1 (Fedora 10) tibbs has set checkout to Approved for 107427 on sK1 (Fedora 10) tibbs has set build to Approved for 107427 on sK1 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sK1 From tibbs at fedoraproject.org Wed Jul 1 02:42:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:47 +0000 (UTC) Subject: rpms/sK1 Makefile,NONE,1.1 Message-ID: <20090701024247.7ED0711C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sK1 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz10909/rpms/sK1 Added Files: Makefile Log Message: Setup of module sK1 --- NEW FILE Makefile --- # Top level Makefile for module sK1 all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:42:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:42:47 +0000 (UTC) Subject: rpms/sK1/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701024247.E2F2111C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sK1/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz10909/rpms/sK1/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module sK1 --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: sK1 # $Id: Makefile,v 1.1 2009/07/01 02:42:47 tibbs Exp $ NAME := sK1 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 1 02:43:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:43:55 +0000 Subject: [pkgdb] perl-POE-Component-Server-Bayeux was added for yaneti Message-ID: <20090701024355.BEA1910F8AB@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-POE-Component-Server-Bayeux with summary Bayeux/cometd server implementation in POE tibbs has approved Package perl-POE-Component-Server-Bayeux tibbs has added a Fedora devel branch for perl-POE-Component-Server-Bayeux with an owner of yaneti tibbs has approved perl-POE-Component-Server-Bayeux in Fedora devel tibbs has approved Package perl-POE-Component-Server-Bayeux tibbs has set commit to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora devel) tibbs has set build to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-POE-Component-Server-Bayeux From pkgdb at fedoraproject.org Wed Jul 1 02:43:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:43:57 +0000 Subject: [pkgdb] perl-POE-Component-Server-Bayeux summary updated by tibbs Message-ID: <20090701024357.3DCF210F8AD@bastion2.fedora.phx.redhat.com> tibbs set package perl-POE-Component-Server-Bayeux summary to Bayeux/cometd server implementation in POE To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-POE-Component-Server-Bayeux From pkgdb at fedoraproject.org Wed Jul 1 02:43:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:43:57 +0000 Subject: [pkgdb] perl-POE-Component-Server-Bayeux (Fedora, 11) updated by tibbs Message-ID: <20090701024357.4FDB110F8B4@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-POE-Component-Server-Bayeux (Fedora devel) for perl-sig tibbs approved watchcommits on perl-POE-Component-Server-Bayeux (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-POE-Component-Server-Bayeux From pkgdb at fedoraproject.org Wed Jul 1 02:43:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:43:57 +0000 Subject: [pkgdb] perl-POE-Component-Server-Bayeux (Fedora, 11) updated by tibbs Message-ID: <20090701024357.69A2110F8B2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-POE-Component-Server-Bayeux tibbs has set commit to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 11) tibbs has set build to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 11) tibbs approved watchbugzilla on perl-POE-Component-Server-Bayeux (Fedora 11) for perl-sig tibbs approved watchcommits on perl-POE-Component-Server-Bayeux (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-POE-Component-Server-Bayeux From pkgdb at fedoraproject.org Wed Jul 1 02:43:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 02:43:57 +0000 Subject: [pkgdb] perl-POE-Component-Server-Bayeux (Fedora, 11) updated by tibbs Message-ID: <20090701024357.7A52210F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-POE-Component-Server-Bayeux tibbs has set commit to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 10) tibbs has set build to Approved for 107427 on perl-POE-Component-Server-Bayeux (Fedora 10) tibbs approved watchbugzilla on perl-POE-Component-Server-Bayeux (Fedora 10) for perl-sig tibbs approved watchcommits on perl-POE-Component-Server-Bayeux (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-POE-Component-Server-Bayeux From tibbs at fedoraproject.org Wed Jul 1 02:44:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:44:02 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux - New directory Message-ID: <20090701024402.1982711C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw11208/rpms/perl-POE-Component-Server-Bayeux Log Message: Directory /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:44:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:44:02 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/devel - New directory Message-ID: <20090701024402.3089A11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw11208/rpms/perl-POE-Component-Server-Bayeux/devel Log Message: Directory /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel added to the repository From tibbs at fedoraproject.org Wed Jul 1 02:44:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:44:07 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux Makefile,NONE,1.1 Message-ID: <20090701024407.35AB911C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw11208/rpms/perl-POE-Component-Server-Bayeux Added Files: Makefile Log Message: Setup of module perl-POE-Component-Server-Bayeux --- NEW FILE Makefile --- # Top level Makefile for module perl-POE-Component-Server-Bayeux all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 1 02:44:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 1 Jul 2009 02:44:07 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701024407.6F10011C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw11208/rpms/perl-POE-Component-Server-Bayeux/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-POE-Component-Server-Bayeux --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-POE-Component-Server-Bayeux # $Id: Makefile,v 1.1 2009/07/01 02:44:07 tibbs Exp $ NAME := perl-POE-Component-Server-Bayeux SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From itamarjp at fedoraproject.org Wed Jul 1 02:56:47 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 1 Jul 2009 02:56:47 +0000 (UTC) Subject: rpms/sK1/devel import.log, NONE, 1.1 sK1.desktop, NONE, 1.1 sK1.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701025647.892FB11C02C3@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/sK1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12722/devel Modified Files: .cvsignore sources Added Files: import.log sK1.desktop sK1.spec Log Message: Initial RPM --- NEW FILE import.log --- sK1-0_9_1-0_1_pre_rev730_fc11:HEAD:sK1-0.9.1-0.1.pre_rev730.fc11.src.rpm:1246416937 --- NEW FILE sK1.desktop --- [Desktop Entry] Name=sK1 Comment=Vector drawing tool Exec=/usr/bin/sk1 %f Icon=sK1 Terminal=false Type=Application StartupNotify=true MimeType=image/x-sk; Categories=Graphics;VectorGraphics; --- NEW FILE sK1.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %define realname sk1 %define revision pre_rev730 Name: sK1 Version: 0.9.1 Release: 0.1.pre_rev730%{?dist} Summary: Advanced vector graphics editor Group: Applications/Publishing License: GPLv2+ and LGPLv2+ URL: http://sk1project.org Source0: http://sk1project.org/downloads/%{realname}/%{version}%{revision}/%{realname}-%{version}%{revision}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tkinter Requires: python-imaging Requires: python-lcms Requires: zenity Requires: python-imaging-tk Requires: hicolor-icon-theme Requires: python-reportlab BuildRequires: python-devel BuildRequires: tcl-devel BuildRequires: tk-devel BuildRequires: freetype-devel BuildRequires: cairo-devel BuildRequires: libXext-devel BuildRequires: lcms-devel BuildRequires: desktop-file-utils Provides: skencil Obsoletes: skencil < 0.6.19 %description sK1 is an open source vector graphics editor similar to CorelDRAW, Adobe Illustrator, or Freehand. sK1 is mainly oriented for PostScript processing. It features CMYK colorspace support, CMYK support in Postscript, a Cairo-based engine, color managment, universal CDR importer (7-X3 versions), and a modern Ttk based (former Tile widgets) user interface. %prep %setup -q -n sK1-0.9.1pre %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %{__chmod} 0755 $RPM_BUILD_ROOT%{python_sitearch}/sk1/__init__.py # icons mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/{16x16,32x32,48x48,64x64}/apps for i in 16 32 48 64; do \ install -m 0644 src/share/icons/CrystalSVG/icon_sk1_$i.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/$i\x$i/apps/%{name}.png; \ done # menu desktop-file-install \ --add-category="Graphics" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc src/COPYRIGHTS src/GNU_GPL_v2 src/GNU_LGPL_v2 %{_bindir}/%{realname} %{_datadir}/icons/hicolor/*/apps/%{name}.png %{_datadir}/applications/%{name}.desktop %{python_sitearch}/* %changelog * Wed May 27 2009 Itamar Reis Peixoto - 0.9.1-0.1.pre_rev730 - Initial RPM Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sK1/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:47 -0000 1.1 +++ .cvsignore 1 Jul 2009 02:56:17 -0000 1.2 @@ -0,0 +1 @@ +sk1-0.9.1pre_rev730.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sK1/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:47 -0000 1.1 +++ sources 1 Jul 2009 02:56:17 -0000 1.2 @@ -0,0 +1 @@ +723dbc0ef9b5426a8e9d4b132421c838 sk1-0.9.1pre_rev730.tar.gz From itamarjp at fedoraproject.org Wed Jul 1 02:59:10 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 1 Jul 2009 02:59:10 +0000 (UTC) Subject: rpms/sK1/F-11 import.log, NONE, 1.1 sK1.desktop, NONE, 1.1 sK1.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701025910.ECF3A11C02C3@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/sK1/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13199/F-11 Modified Files: .cvsignore sources Added Files: import.log sK1.desktop sK1.spec Log Message: Initial RPM --- NEW FILE import.log --- sK1-0_9_1-0_1_pre_rev730_fc11:F-11:sK1-0.9.1-0.1.pre_rev730.fc11.src.rpm:1246417064 --- NEW FILE sK1.desktop --- [Desktop Entry] Name=sK1 Comment=Vector drawing tool Exec=/usr/bin/sk1 %f Icon=sK1 Terminal=false Type=Application StartupNotify=true MimeType=image/x-sk; Categories=Graphics;VectorGraphics; --- NEW FILE sK1.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %define realname sk1 %define revision pre_rev730 Name: sK1 Version: 0.9.1 Release: 0.1.pre_rev730%{?dist} Summary: Advanced vector graphics editor Group: Applications/Publishing License: GPLv2+ and LGPLv2+ URL: http://sk1project.org Source0: http://sk1project.org/downloads/%{realname}/%{version}%{revision}/%{realname}-%{version}%{revision}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tkinter Requires: python-imaging Requires: python-lcms Requires: zenity Requires: python-imaging-tk Requires: hicolor-icon-theme Requires: python-reportlab BuildRequires: python-devel BuildRequires: tcl-devel BuildRequires: tk-devel BuildRequires: freetype-devel BuildRequires: cairo-devel BuildRequires: libXext-devel BuildRequires: lcms-devel BuildRequires: desktop-file-utils Provides: skencil Obsoletes: skencil < 0.6.19 %description sK1 is an open source vector graphics editor similar to CorelDRAW, Adobe Illustrator, or Freehand. sK1 is mainly oriented for PostScript processing. It features CMYK colorspace support, CMYK support in Postscript, a Cairo-based engine, color managment, universal CDR importer (7-X3 versions), and a modern Ttk based (former Tile widgets) user interface. %prep %setup -q -n sK1-0.9.1pre %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %{__chmod} 0755 $RPM_BUILD_ROOT%{python_sitearch}/sk1/__init__.py # icons mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/{16x16,32x32,48x48,64x64}/apps for i in 16 32 48 64; do \ install -m 0644 src/share/icons/CrystalSVG/icon_sk1_$i.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/$i\x$i/apps/%{name}.png; \ done # menu desktop-file-install \ --add-category="Graphics" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc src/COPYRIGHTS src/GNU_GPL_v2 src/GNU_LGPL_v2 %{_bindir}/%{realname} %{_datadir}/icons/hicolor/*/apps/%{name}.png %{_datadir}/applications/%{name}.desktop %{python_sitearch}/* %changelog * Wed May 27 2009 Itamar Reis Peixoto - 0.9.1-0.1.pre_rev730 - Initial RPM Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sK1/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:47 -0000 1.1 +++ .cvsignore 1 Jul 2009 02:58:40 -0000 1.2 @@ -0,0 +1 @@ +sk1-0.9.1pre_rev730.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sK1/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:47 -0000 1.1 +++ sources 1 Jul 2009 02:58:40 -0000 1.2 @@ -0,0 +1 @@ +723dbc0ef9b5426a8e9d4b132421c838 sk1-0.9.1pre_rev730.tar.gz From itamarjp at fedoraproject.org Wed Jul 1 03:02:38 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 1 Jul 2009 03:02:38 +0000 (UTC) Subject: rpms/sK1/F-10 import.log, NONE, 1.1 sK1.desktop, NONE, 1.1 sK1.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701030238.F3B8E11C02C3@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/sK1/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13768/F-10 Modified Files: .cvsignore sources Added Files: import.log sK1.desktop sK1.spec Log Message: Initial RPM --- NEW FILE import.log --- sK1-0_9_1-0_1_pre_rev730_fc11:F-10:sK1-0.9.1-0.1.pre_rev730.fc11.src.rpm:1246417257 --- NEW FILE sK1.desktop --- [Desktop Entry] Name=sK1 Comment=Vector drawing tool Exec=/usr/bin/sk1 %f Icon=sK1 Terminal=false Type=Application StartupNotify=true MimeType=image/x-sk; Categories=Graphics;VectorGraphics; --- NEW FILE sK1.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %define realname sk1 %define revision pre_rev730 Name: sK1 Version: 0.9.1 Release: 0.1.pre_rev730%{?dist} Summary: Advanced vector graphics editor Group: Applications/Publishing License: GPLv2+ and LGPLv2+ URL: http://sk1project.org Source0: http://sk1project.org/downloads/%{realname}/%{version}%{revision}/%{realname}-%{version}%{revision}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tkinter Requires: python-imaging Requires: python-lcms Requires: zenity Requires: python-imaging-tk Requires: hicolor-icon-theme Requires: python-reportlab BuildRequires: python-devel BuildRequires: tcl-devel BuildRequires: tk-devel BuildRequires: freetype-devel BuildRequires: cairo-devel BuildRequires: libXext-devel BuildRequires: lcms-devel BuildRequires: desktop-file-utils Provides: skencil Obsoletes: skencil < 0.6.19 %description sK1 is an open source vector graphics editor similar to CorelDRAW, Adobe Illustrator, or Freehand. sK1 is mainly oriented for PostScript processing. It features CMYK colorspace support, CMYK support in Postscript, a Cairo-based engine, color managment, universal CDR importer (7-X3 versions), and a modern Ttk based (former Tile widgets) user interface. %prep %setup -q -n sK1-0.9.1pre %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %{__chmod} 0755 $RPM_BUILD_ROOT%{python_sitearch}/sk1/__init__.py # icons mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/{16x16,32x32,48x48,64x64}/apps for i in 16 32 48 64; do \ install -m 0644 src/share/icons/CrystalSVG/icon_sk1_$i.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/$i\x$i/apps/%{name}.png; \ done # menu desktop-file-install \ --add-category="Graphics" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc src/COPYRIGHTS src/GNU_GPL_v2 src/GNU_LGPL_v2 %{_bindir}/%{realname} %{_datadir}/icons/hicolor/*/apps/%{name}.png %{_datadir}/applications/%{name}.desktop %{python_sitearch}/* %changelog * Wed May 27 2009 Itamar Reis Peixoto - 0.9.1-0.1.pre_rev730 - Initial RPM Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sK1/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:47 -0000 1.1 +++ .cvsignore 1 Jul 2009 03:02:08 -0000 1.2 @@ -0,0 +1 @@ +sk1-0.9.1pre_rev730.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sK1/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:47 -0000 1.1 +++ sources 1 Jul 2009 03:02:08 -0000 1.2 @@ -0,0 +1 @@ +723dbc0ef9b5426a8e9d4b132421c838 sk1-0.9.1pre_rev730.tar.gz From carllibpst at fedoraproject.org Wed Jul 1 03:24:16 2009 From: carllibpst at fedoraproject.org (Carl Byington) Date: Wed, 1 Jul 2009 03:24:16 +0000 (UTC) Subject: rpms/libpst/F-10 .cvsignore, 1.21, 1.22 libpst.spec, 1.21, 1.22 sources, 1.21, 1.22 Message-ID: <20090701032416.0FDB011C02C3@cvs1.fedora.phx.redhat.com> Author: carllibpst Update of /cvs/pkgs/rpms/libpst/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16955 Modified Files: .cvsignore libpst.spec sources Log Message: update to 0.6.41 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libpst/F-10/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 17 Apr 2009 20:35:12 -0000 1.21 +++ .cvsignore 1 Jul 2009 03:23:45 -0000 1.22 @@ -1 +1 @@ -libpst-0.6.37.tar.gz +libpst-0.6.41.tar.gz Index: libpst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpst/F-10/libpst.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libpst.spec 17 Apr 2009 20:35:12 -0000 1.21 +++ libpst.spec 1 Jul 2009 03:23:45 -0000 1.22 @@ -1,6 +1,6 @@ Summary: Utilities to convert Outlook .pst files to other formats Name: libpst -Version: 0.6.37 +Version: 0.6.41 Release: 1%{?dist} License: GPLv2+ Group: Applications/Productivity @@ -9,7 +9,11 @@ BuildRoot: %(mktemp -ud %{_tmpp URL: http://www.five-ten-sg.com/%{name}/ Requires: ImageMagick Requires: %{name}-libs = %{version}-%{release} -BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel +BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel python-devel boost-devel + +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + %description The Libpst utilities include readpst which can convert email messages @@ -28,6 +32,17 @@ The libpst-libs package contains the sha utilities. +%package python +Summary: Python bindings for libpst +Group: Development/Libraries +Requires: python +Requires: %{name}-libs = %{version}-%{release} + +%description python +The libpst-python package allows you to use the libpst shared object +from python code. + + %package devel Summary: Library links and header files for libpst application development Group: Development/Libraries @@ -100,23 +115,29 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libpst.so.* -%files devel-doc +%files python %defattr(-,root,root,-) -%{_datadir}/doc/%{name}-%{version}/devel/ +%{python_sitearch}/_*.so +%exclude %{python_sitearch}/*.a +%exclude %{python_sitearch}/*.la %files devel %defattr(-,root,root,-) %{_libdir}/libpst.so -%{_includedir}/%{name}-2/ +%{_includedir}/%{name}-4/ %{_libdir}/pkgconfig/libpst.pc +%files devel-doc +%defattr(-,root,root,-) +%{_datadir}/doc/%{name}-%{version}/devel/ + + %files doc %defattr(-,root,root,-) %dir %{_datadir}/doc/%{name}-%{version}/ %{_datadir}/doc/%{name}-%{version}/*.html -%{_datadir}/doc/%{name}-%{version}/*.pdf %{_datadir}/doc/%{name}-%{version}/AUTHORS %{_datadir}/doc/%{name}-%{version}/COPYING %{_datadir}/doc/%{name}-%{version}/ChangeLog @@ -125,6 +146,25 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 23 2009 Carl Byington - 0.6.41-1 +- fix ax_python detection - should not use locate command +- checking for fedora versions is not needed + +* Tue Jun 23 2009 Carl Byington - 0.6.40-1 +- fedora 11 has python2.6 +- remove pdf version of the man pages + +* Sun Jun 21 2009 Carl Byington - 0.6.39-1 +- fedora > 10 moved to boost-python-devel + +* Sun Jun 21 2009 Carl Byington - 0.6.38-1 +- add python interface to the shared library. +- bump soname to version 4 for many changes to the interface. +- better decoding of recurrence data in appointments. +- remove readpstlog since debug log files are now plain text. +- add readpst -j option for parallel jobs for each folder. +- make nested mime multipart/alternative to hold the text/html parts. + * Fri Apr 17 2009 Carl Byington - 0.6.37-1 - add pst_attach_to_mem() back into the shared library interface. - fix memory leak caught by valgrind. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libpst/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 17 Apr 2009 20:35:12 -0000 1.21 +++ sources 1 Jul 2009 03:23:45 -0000 1.22 @@ -1 +1 @@ -bb53b2b379709ddf12e86670879e17e0 libpst-0.6.37.tar.gz +d2cae1a3ae960eccb74b59f13b9c1744 libpst-0.6.41.tar.gz From cebbert at fedoraproject.org Wed Jul 1 03:38:37 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 1 Jul 2009 03:38:37 +0000 (UTC) Subject: rpms/kernel/F-10 linux-2.6-nfsd-report-short-writes-fix.patch, NONE, 1.1 kernel.spec, 1.1388, 1.1389 Message-ID: <20090701033837.3119511C02C3@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18603 Modified Files: kernel.spec Added Files: linux-2.6-nfsd-report-short-writes-fix.patch Log Message: Fix NFS, broken by the report-short-writes patch (#508095) linux-2.6-nfsd-report-short-writes-fix.patch: --- NEW FILE linux-2.6-nfsd-report-short-writes-fix.patch --- From: Wei Yongjun Date: Tue, 19 May 2009 04:03:15 +0000 (+0800) Subject: nfsd: fix hung up of nfs client while sync write data to nfs server X-Git-Tag: v2.6.30-rc8~20^2~2 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=a0d24b295aed7a9daf4ca36bd4784e4d40f82303 nfsd: fix hung up of nfs client while sync write data to nfs server Commit 'Short write in nfsd becomes a full write to the client' (31dec2538e45e9fff2007ea1f4c6bae9f78db724) broken the sync write. With the following commands to reproduce: $ mount -t nfs -o sync 192.168.0.21:/nfsroot /mnt $ cd /mnt $ echo aaaa > temp.txt Then nfs client is hung up. In SYNC mode the server alaways return the write count 0 to the client. This is because the value of host_err in nfsd_vfs_write() will be overwrite in SYNC mode by 'host_err=nfsd_sync(file);', and then we return host_err(which is now 0) as write count. This patch fixed the problem. Signed-off-by: Wei Yongjun Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 6c68ffd..b660435 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -1015,6 +1015,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset); set_fs(oldfs); if (host_err >= 0) { + *cnt = host_err; nfsdstats.io_write += host_err; fsnotify_modify(file->f_path.dentry); } @@ -1060,10 +1061,9 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, } dprintk("nfsd: write complete host_err=%d\n", host_err); - if (host_err >= 0) { + if (host_err >= 0) err = 0; - *cnt = host_err; - } else + else err = nfserrno(host_err); out: return err; Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1388 retrieving revision 1.1389 diff -u -p -r1.1388 -r1.1389 --- kernel.spec 30 Jun 2009 05:02:32 -0000 1.1388 +++ kernel.spec 1 Jul 2009 03:38:05 -0000 1.1389 @@ -719,6 +719,7 @@ Patch9001: squashfs-fixups.patch Patch9010: revert-fix-modules_install-via-nfs.patch Patch9011: linux-2.6-nfsd-report-short-writes.patch +Patch9012: linux-2.6-nfsd-report-short-writes-fix.patch #Adding dropmonitor bits from 2.6.30 Patch9100: linux-2.6-dropwatch-protocol.patch @@ -1361,6 +1362,8 @@ ApplyPatch revert-fix-modules_install-vi # fix nfs reporting of short writes (#493500) ApplyPatch linux-2.6-nfsd-report-short-writes.patch +# fix the fix (#508095) +ApplyPatch linux-2.6-nfsd-report-short-writes-fix.patch # Apply dropmonitor protocol bits from 2.6..30 net-next tree ApplyPatch linux-2.6-dropwatch-protocol.patch @@ -1957,6 +1960,9 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Tue Jun 30 2009 Chuck Ebbert kernel-2.6.29.5-89 +- Fix NFS, broken by the report-short-writes patch (#508095) + * Tue Jun 30 2009 Jarod Wilson - Fix broken lirc_serial (F11#504402) From rmccabe at fedoraproject.org Wed Jul 1 04:50:52 2009 From: rmccabe at fedoraproject.org (Ryan McCabe) Date: Wed, 1 Jul 2009 04:50:52 +0000 (UTC) Subject: rpms/ricci/devel .cvsignore, 1.4, 1.5 ricci.spec, 1.16, 1.17 sources, 1.11, 1.12 Message-ID: <20090701045052.C7DB711C02C3@cvs1.fedora.phx.redhat.com> Author: rmccabe Update of /cvs/pkgs/rpms/ricci/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16995 Modified Files: .cvsignore ricci.spec sources Log Message: Update rawhide to version 0.16.1, which is what is in F11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ricci/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 30 Mar 2009 19:59:11 -0000 1.4 +++ .cvsignore 1 Jul 2009 04:50:21 -0000 1.5 @@ -1 +1,2 @@ ricci-0.16.0.tar.gz +ricci-0.16.1.tar.gz Index: ricci.spec =================================================================== RCS file: /cvs/pkgs/rpms/ricci/devel/ricci.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ricci.spec 30 Mar 2009 19:59:12 -0000 1.16 +++ ricci.spec 1 Jul 2009 04:50:21 -0000 1.17 @@ -9,20 +9,20 @@ ############################################################################### Name: ricci -Version: 0.16.0 +Version: 0.16.1 Release: 1%{?dist} License: GPLv2 URL: http://sources.redhat.com/cluster/conga/ Group: System Environment/Base Summary: Remote Cluster and Storage Management System -Source0: http://people.redhat.com/rmccabe/conga/fedora/src/ricci-0.16.0.tar.gz +Source0: http://people.redhat.com/rmccabe/conga/fedora/src/ricci-0.16.1.tar.gz Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libxml2-devel python-devel libcap-devel BuildRequires: openssl-devel dbus-devel pkgconfig file-devel nss-devel BuildRequires: cyrus-sasl-devel >= 2.1 -Requires: oddjob dbus openssl cyrus-sasl >= 2.1 file +Requires: oddjob dbus openssl cyrus-sasl >= 2.1 file nss-tools # modstorage Requires: parted @@ -121,6 +121,14 @@ fi exit 0 %changelog +* Thu Apr 16 2009 Ryan McCabe 0.16.1-1 +- More updates for cluster3. + +* Tue Apr 07 2009 Ryan McCabe 0.16.0-2 +- Fix memory corruption bug. +- Update package and service list. +- Add missing dependency for nss-tools + * Mon Mar 30 2009 Ryan McCabe 0.16.0-1 - Update for F11 - Fix build issues uncovered by g++ 4.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ricci/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 30 Mar 2009 19:59:12 -0000 1.11 +++ sources 1 Jul 2009 04:50:21 -0000 1.12 @@ -1 +1,2 @@ fad8f74a0dc458d67191f134027d5265 ricci-0.16.0.tar.gz +77638cb7f40369f24a583d839010cba3 ricci-0.16.1.tar.gz From yaneti at fedoraproject.org Wed Jul 1 05:08:44 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:08:44 +0000 (UTC) Subject: rpms/xscope/devel import.log, NONE, 1.1 xscope-1.1-diff_to_git.patch, NONE, 1.1 xscope-1.1-lessmacros.patch, NONE, 1.1 xscope.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701050844.3E90711C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/xscope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19226/devel Modified Files: .cvsignore sources Added Files: import.log xscope-1.1-diff_to_git.patch xscope-1.1-lessmacros.patch xscope.spec Log Message: Initial import --- NEW FILE import.log --- xscope-1_1-3_gitfccbbd6_fc12:HEAD:xscope-1.1-3.gitfccbbd6.fc12.src.rpm:1246424870 xscope-1.1-diff_to_git.patch: --- NEW FILE xscope-1.1-diff_to_git.patch --- diff --git a/AUTHORS b/AUTHORS index 3dd770c..b3bbcec 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,2 @@ James Peterson, MCC +Keith Packard diff --git a/Makefile.am b/Makefile.am index 89928cf..7bbf2e6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved. # Use subject to license terms. # # Permission is hereby granted, free of charge, to any person obtaining a @@ -30,28 +30,51 @@ bin_PROGRAMS = xscope -AM_CFLAGS = $(XSCOPE_CFLAGS) +AM_CFLAGS = $(CWARNFLAGS) $(XSCOPE_CFLAGS) xscope_LDADD = $(XSCOPE_LIBS) xscope_SOURCES = \ + audio.c \ + bigreqscope.h \ common.c \ decode11.c \ + decode_bigreq.c \ + decode_lbx.c \ + decode_randr.c \ + decode_render.c \ + decode_shm.c \ + decode_wcp.c \ + decodenas.c \ + extensions.c \ + extensions.h \ fd.c \ fd.h \ + lbxscope.h \ + nas.h \ print11.c \ + print_bigreq.c \ + print_lbx.c \ + print_randr.c \ + print_render.c \ + print_shm.c \ + print_wcp.c \ + printnas.c \ proto.h \ prtype.c \ + randrscope.h \ + renderscope.h \ + scope-transport.c \ scope.c \ scope.h \ server.c \ + shmscope.h \ table11.c \ - x11.h \ - scope-transport.c + wcpscope.h \ + x11.h appman_PRE = \ xscope.man - appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) @@ -63,7 +86,7 @@ MAINTAINERCLEANFILES = ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + $(CHANGELOG_CMD) dist-hook: ChangeLog @@ -90,3 +113,16 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +if LINT +# Check source code with tools like lint & sparse + +ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) + +lint: $(BUILT_SOURCES) + @for f in $(xscope_SOURCES) ; do \ + case $$f in *.c) \ + $(LINT) $(ALL_LINT_FLAGS) $(srcdir)/$$f ;; esac ; \ + done +endif LINT diff --git a/README b/README index e69de29..39e78b1 100644 --- a/README +++ b/README @@ -0,0 +1,91 @@ + + XSCOPE -- a program to monitor X11/Client conversations + +XSCOPE is a program to monitor the connections between the X11 window +server and a client program. xscope runs as a separate process. By +adjusting the host and/or display number that a X11 client attaches +to, the client is attached to xscope instead of X11. xscope attaches +to X11 as if it were the client. All bytes from the client are sent +to xscope which passes them on to X11; All bytes from X11 are sent to +xscope which sends them on to the client. xscope is transparent to +the client and X11. + +In addition to passing characters back and forth, xscope will print +information about this traffic on stdout, giving performance and +debugging information for an X11 client and server. + + + -------------- -------------- -------------- + | | | | | | + | | ------------> | | ----------> | | + | client | | xscope | | server | + | | | | | | + | | <----------- | | <---------- | | + | | | | | | + -------------- -------------- -------------- + | + | + v + trace output to stdout + + +When running with xscope, three processes are involved, potentially all +on different machines: + +X11 -- the X11 window server will be running on machine "A" for Display "B". + ("A" is a machine name; "B" is a display number). + +xscope -- xscope must be told where the X11 window server is + (what machine and what display). The options for xscope are + -h and -d. In our example, -hA and -dB. + Typically the display-number is not given. xscope will not try to + connect to X11 until the client connects to xscope. + +client -- the client should connect to xscope rather than X11. To avoid + changing the code for the client, xscope listens on the same port + as X11. If X11 and xscope are on different machines, this works + well. However, if X11 and xscope are on the same machine, this + creates a port conflict. To resolve this conflict, xscope can + be given a different input or output port number, as necessary + to avoid the port that X11 is listening to. The client must connect + to this offset port number. The input port for xscope is set by + -i; the output port is set by -o. The + default input port is 1; the default output port is 0. These ports + are offset by the X11 base (6000) and the display number. The client + attaches to xscope by changing its display number by the port offset. + +For example, with X11 running on "bagel", display 0 (the default), and +xscope and the client running on "cleo", we would start xscope as +"xscope -hbagel -i0". The client program could then connect to "X11" on +"cleo:0", and would be attached to xscope, which would then attach to +X11 on "bagel:0". + +If, however, all three processes were running on "cleo", we would +start xscope by "xscope -i1". This would cause it to listen on +port 6001 (which is display 1 for X11). The client would attach to +X11 on "cleo:1", and xscope would connect through to X11 on "cleo:0". + + +LIMITATIONS: + +xscope has been written and used on a Sun3. Additional code may be needed +for byteswapping on different architectures. + +The command line arguments for specifying the real X server should probably + be changed to be more consistent with X11R3 applications. + +The Imakefile may be incorrect. + +The builtin atoms have been wired in directly; they should probably be +picked up from a header file. + +No provision is included for extensions to the base protocol. + +There is no code yet to interpret typed commands from the keyboard. + It would be possible for a command language at the keyboard to create + artificial characters to be sent to X11 or the client as if they were + generated by the other, or to dynamically alter requests or replies. + + + + diff --git a/audio.c b/audio.c new file mode 100644 index 0000000..94fd08a [...16285 lines suppressed...] + const unsigned char *values); +extern void PrintValueRec (unsigned long key, unsigned long cmask, + short ctype); /* ************************************************************ */ /* */ /* */ /* ************************************************************ */ -/* declaraction of the types of some common functions */ - -extern unsigned long ILong(); -extern unsigned short IShort(); -extern unsigned short IByte(); -extern Boolean IBool(); - -extern long PrintList(); -extern long PrintListSTR(); -extern long pad(); +/* declaration of the types of some common functions */ + +extern unsigned long ILong(const unsigned char *buf); +extern unsigned short IShort(const unsigned char *buf); +extern unsigned short IChar2B(const unsigned char *buf); +extern unsigned short IByte(const unsigned char *buf); +extern Boolean IBool(const unsigned char *buf); + +extern int PrintString8(const unsigned char *buf, int number, + const char *name); +extern int PrintString16(const unsigned char *buf, int number, + const char *name); +extern void PrintTString8(const unsigned char *buf, long number, + const char *name); +extern void PrintTString16(const unsigned char *buf, long number, + const char *name); + +extern long PrintList (const unsigned char *buf, long number, short ListType, + const char *name); +extern long PrintListSTR (const unsigned char *buf, long number, + const char *name); + +extern long pad(long n); + +extern const char REQUESTHEADER[], EVENTHEADER[], ERRORHEADER[], REPLYHEADER[]; + +#define GC_function 0x00000001L +#define GC_plane_mask 0x00000002L +#define GC_foreground 0x00000004L +#define GC_background 0x00000008L +#define GC_line_width 0x00000010L +#define GC_line_style 0x00000020L +#define GC_cap_style 0x00000040L +#define GC_join_style 0x00000080L +#define GC_fill_style 0x00000100L +#define GC_fill_rule 0x00000200L +#define GC_tile 0x00000400L +#define GC_stipple 0x00000800L +#define GC_tile_stipple_x_origin 0x00001000L +#define GC_tile_stipple_y_origin 0x00002000L +#define GC_font 0x00004000L +#define GC_subwindow_mode 0x00008000L +#define GC_graphics_exposures 0x00010000L +#define GC_clip_x_origin 0x00020000L +#define GC_clip_y_origin 0x00040000L +#define GC_clip_mask 0x00080000L +#define GC_dash_offset 0x00100000L +#define GC_dashes 0x00200000L +#define GC_arc_mode 0x00400000L + +#define printreqlen(buf, fd, dvalue) \ + do { \ + if (IShort(&(buf)[2]) == 0 && CS[(fd)].bigreqEnabled) { \ + printfield (buf, 4, 4, CARD32, "request length"); \ + buf += 4; \ + } else { \ + printfield (buf, 2, 2, CARD16, "request length"); \ + } \ + } while (0) #endif /* XSCOPE_X11_H */ diff --git a/xstats.c b/xstats.c new file mode 100644 index 0000000..33ec4c7 --- /dev/null +++ b/xstats.c @@ -0,0 +1,114 @@ +#define REQUEST 0 +#define REPLY 1 +#define ERROR 2 +#define EVENT 3 + +string_to_action (s) + char *s; +{ + if (!strcmp (s, "@@REQUEST")) return REQUEST; + if (!strcmp (s, "@@REPLY")) return REPLY; + if (!strcmp (s, "@@ERROR")) return ERROR; + if (!strcmp (s, "@@EVENT")) return EVENT; +} + +typedef struct { + double time; + int action; + int client; + int major; + int minor; + int len; +} ActionRec, *ActionPtr; + +unsigned long requestCount[256][256]; +unsigned long replyCount[256][256]; +unsigned long eventCount[256][256]; +unsigned long errorCount[256][256]; + +unsigned long requestBytes[256][256]; +unsigned long replyBytes[256][256]; +unsigned long eventBytes[256][256]; +unsigned long errorBytes[256][256]; + +unsigned long tRequestBytes; +unsigned long tReplyBytes; +unsigned long tEventBytes; +unsigned long tErrorBytes; + +unsigned long tRequestCount; +unsigned long tReplyCount; +unsigned long tEventCount; +unsigned long tErrorCount; + +dump (c, b) + unsigned long c[256][256]; + unsigned long b[256][256]; +{ + int i, j; + unsigned long count, bytes; + + for (i = 0; i < 256; i++) + { + for (j = 0; j < 256; j++) + { + if (count = c[i][j]) + { + bytes = b[i][j]; + printf ("%3d %3d count %5d bytes %7d\n", i, j, count, bytes); + } + } + } +} + +main () +{ + ActionRec a; + char aname[128]; + int i, j; + + while (scanf ("%lf: %s %d %d %d %d\n", + &a.time, aname, &a.client, &a.major, &a.minor, &a.len) == 6) + { + a.action = string_to_action (aname); + switch (a.action) { + case REQUEST: + requestCount[a.major][a.minor]++; + requestBytes[a.major][a.minor] += a.len; + tRequestCount++; + tRequestBytes += a.len; + break; + case REPLY: + replyCount[a.major][a.minor]++; + replyBytes[a.major][a.minor] += a.len; + tReplyCount++; + tReplyBytes += a.len; + break; + case EVENT: + eventCount[a.major][a.minor]++; + eventBytes[a.major][a.minor] += a.len; + tEventCount++; + tEventBytes += a.len; + break; + case ERROR: + errorCount[a.major][a.minor]++; + errorBytes[a.major][a.minor] += a.len; + tErrorCount++; + tErrorBytes += a.len; + break; + } + } + printf ("requests:\n"); + dump (requestCount, requestBytes); + printf ("replies:\n"); + dump (replyCount, replyBytes); + printf ("events:\n"); + dump (eventCount, eventBytes); + printf ("errors:\n"); + dump (errorCount, errorBytes); + printf ("send count %5d bytes %7d\n", + tRequestCount, tRequestBytes); + printf ("recv count %5d bytes %7d\n", + tEventCount + tErrorCount + tReplyCount, + tEventBytes + tErrorBytes + tReplyBytes); +} xscope-1.1-lessmacros.patch: --- NEW FILE xscope-1.1-lessmacros.patch --- diff -ur xscope-1.1/configure.ac xscope-1.1.lessmacros/configure.ac --- xscope-1.1/configure.ac 2009-06-27 08:16:40.000000000 +0300 +++ xscope-1.1.lessmacros/configure.ac 2009-06-27 08:17:33.000000000 +0300 @@ -39,7 +39,7 @@ # Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG, XORG_WITH_LINT m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) +XORG_MACROS_VERSION(1.1) AC_PROG_CC XORG_CWARNFLAGS --- NEW FILE xscope.spec --- Name: xscope Version: 1.1 Release: 3.gitfccbbd6%{?dist} Summary: X Window Protocol Viewer Group: User Interface/X License: MIT URL: http://cgit.freedesktop.org/xorg/app/xscope/ Source0: ftp://ftp.freedesktop.org/pub/xorg/individual/app/%{name}-%{version}.tar.bz2 # git diff --diff-filter=ACMRT xscope-1.1 fccbbd6 Patch0: xscope-1.1-diff_to_git.patch # to build on Fedora 10 reduce the xorg-macros required version Patch1: xscope-1.1-lessmacros.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xorg-x11-xtrans-devel, xorg-x11-proto-devel # required for the autoreconf BuildRequires: automake, autoconf, xorg-x11-util-macros %description xscope sits in-between an X11 client and an X11 server and prints the contents of each request, reply, error, or event that is communicated between them. This information can be useful in debugging and performance tuning of X11 servers and clients. %prep %setup -q %patch0 -p1 -b .diff_to_git %patch1 -p1 -b .lessmacros # required for changes in patch0 and patch1 autoreconf -f %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README COPYING ChangeLog %{_bindir}/%{name} %{_mandir}/man1/%{name}.1.gz %changelog * Sun Jun 28 2009 Yanko Kaneti 1.1-3.gitfccbbd6 - The software has a MIT not BSD license * Sat Jun 27 2009 Yanko Kaneti 1.1-2.gitfccbbd6 - Implement review feedback - Patch to build on Fedora 10 * Sun Jun 14 2009 Yanko Kaneti 1.1-1.gitfccbbd6 - First attempt at packaging. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xscope/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:36:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:08:43 -0000 1.2 @@ -0,0 +1 @@ +xscope-1.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xscope/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:36:07 -0000 1.1 +++ sources 1 Jul 2009 05:08:43 -0000 1.2 @@ -0,0 +1 @@ +c37ec177b56d5909584c1672b6beabd5 xscope-1.1.tar.bz2 From cebbert at fedoraproject.org Wed Jul 1 05:09:47 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 1 Jul 2009 05:09:47 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-debug-selinux-null-creds.patch,1.4,1.5 Message-ID: <20090701050947.3A8DA11C02C3@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19463 Modified Files: linux-2.6-debug-selinux-null-creds.patch Log Message: fix nodebug build linux-2.6-debug-selinux-null-creds.patch: Index: linux-2.6-debug-selinux-null-creds.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-debug-selinux-null-creds.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- linux-2.6-debug-selinux-null-creds.patch 29 Jun 2009 17:52:54 -0000 1.4 +++ linux-2.6-debug-selinux-null-creds.patch 1 Jul 2009 05:09:47 -0000 1.5 @@ -152,7 +152,7 @@ index 1bb4d7e..9b7b507 100644 +{ +} +#define kdebug(FMT, ...) \ -+ no_printk("[%-5.5s%5u] "FMT"\n", current->comm, current->pid, ##__VA_ARGS__) ++ do {} while (0) +#endif + static struct kmem_cache *cred_jar; From yaneti at fedoraproject.org Wed Jul 1 05:13:11 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:13:11 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/devel import.log, NONE, 1.1 perl-POE-Component-Server-Bayeux.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701051311.B082411C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20604/devel Modified Files: .cvsignore sources Added Files: import.log perl-POE-Component-Server-Bayeux.spec Log Message: Initial import --- NEW FILE import.log --- perl-POE-Component-Server-Bayeux-0_02-1_fc12:HEAD:perl-POE-Component-Server-Bayeux-0.02-1.fc12.src.rpm:1246425115 --- NEW FILE perl-POE-Component-Server-Bayeux.spec --- Name: perl-POE-Component-Server-Bayeux Version: 0.02 Release: 1%{?dist} Summary: Bayeux/cometd server implementation in POE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/POE-Component-Server-Bayeux/ Source0: http://www.cpan.org/modules/by-module/POE/POE-Component-Server-Bayeux-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Simple) BuildRequires: perl(Class::Accessor) BuildRequires: perl(Data::UUID) BuildRequires: perl(JSON::Any) BuildRequires: perl(JSON::XS) BuildRequires: perl(Log::Log4perl) BuildRequires: perl(LWP) BuildRequires: perl(Module::Build) BuildRequires: perl(Params::Validate) BuildRequires: perl(POE::Component::Client::HTTP) BuildRequires: perl(POE::Component::Server::HTTP) >= 0.09 BuildRequires: perl(Test::More) BuildRequires: perl(URI) # missed by the autoreq for various reasons Requires: perl(Class::Accessor) Requires: perl(JSON::XS) Requires: perl(POE::Component::Client::HTTP) Requires: perl(LWP) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module implements the Bayeux Protocol (1.0draft1) from the Dojo Foundation. Also called cometd, Bayeux is a low-latency routing protocol for JSON encoded events between clients and servers in a publish- subscribe model. %prep %setup -q -n POE-Component-Server-Bayeux-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README htdocs %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Tue Jun 30 2009 Yanko Kaneti 0.02-1 - Specfile autogenerated by cpanspec 1.78. Requires tuning. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:44:07 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:12:41 -0000 1.2 @@ -0,0 +1 @@ +POE-Component-Server-Bayeux-0.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:44:07 -0000 1.1 +++ sources 1 Jul 2009 05:12:41 -0000 1.2 @@ -0,0 +1 @@ +dd18ab3f61f390fbc96a8dc8a15aa447 POE-Component-Server-Bayeux-0.02.tar.gz From yaneti at fedoraproject.org Wed Jul 1 05:16:21 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:16:21 +0000 (UTC) Subject: rpms/xscope/F-11 import.log, NONE, 1.1 xscope-1.1-diff_to_git.patch, NONE, 1.1 xscope-1.1-lessmacros.patch, NONE, 1.1 xscope.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701051621.D60CC11C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/xscope/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21104/F-11 Modified Files: .cvsignore sources Added Files: import.log xscope-1.1-diff_to_git.patch xscope-1.1-lessmacros.patch xscope.spec Log Message: Initial import on branch F-11 --- NEW FILE import.log --- xscope-1_1-3_gitfccbbd6_fc12:F-11:xscope-1.1-3.gitfccbbd6.fc12.src.rpm:1246425328 xscope-1.1-diff_to_git.patch: --- NEW FILE xscope-1.1-diff_to_git.patch --- diff --git a/AUTHORS b/AUTHORS index 3dd770c..b3bbcec 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,2 @@ James Peterson, MCC +Keith Packard diff --git a/Makefile.am b/Makefile.am index 89928cf..7bbf2e6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved. # Use subject to license terms. # # Permission is hereby granted, free of charge, to any person obtaining a @@ -30,28 +30,51 @@ bin_PROGRAMS = xscope -AM_CFLAGS = $(XSCOPE_CFLAGS) +AM_CFLAGS = $(CWARNFLAGS) $(XSCOPE_CFLAGS) xscope_LDADD = $(XSCOPE_LIBS) xscope_SOURCES = \ + audio.c \ + bigreqscope.h \ common.c \ decode11.c \ + decode_bigreq.c \ + decode_lbx.c \ + decode_randr.c \ + decode_render.c \ + decode_shm.c \ + decode_wcp.c \ + decodenas.c \ + extensions.c \ + extensions.h \ fd.c \ fd.h \ + lbxscope.h \ + nas.h \ print11.c \ + print_bigreq.c \ + print_lbx.c \ + print_randr.c \ + print_render.c \ + print_shm.c \ + print_wcp.c \ + printnas.c \ proto.h \ prtype.c \ + randrscope.h \ + renderscope.h \ + scope-transport.c \ scope.c \ scope.h \ server.c \ + shmscope.h \ table11.c \ - x11.h \ - scope-transport.c + wcpscope.h \ + x11.h appman_PRE = \ xscope.man - appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) @@ -63,7 +86,7 @@ MAINTAINERCLEANFILES = ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + $(CHANGELOG_CMD) dist-hook: ChangeLog @@ -90,3 +113,16 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +if LINT +# Check source code with tools like lint & sparse + +ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) + +lint: $(BUILT_SOURCES) + @for f in $(xscope_SOURCES) ; do \ + case $$f in *.c) \ + $(LINT) $(ALL_LINT_FLAGS) $(srcdir)/$$f ;; esac ; \ + done +endif LINT diff --git a/README b/README index e69de29..39e78b1 100644 --- a/README +++ b/README @@ -0,0 +1,91 @@ + + XSCOPE -- a program to monitor X11/Client conversations + +XSCOPE is a program to monitor the connections between the X11 window +server and a client program. xscope runs as a separate process. By +adjusting the host and/or display number that a X11 client attaches +to, the client is attached to xscope instead of X11. xscope attaches +to X11 as if it were the client. All bytes from the client are sent +to xscope which passes them on to X11; All bytes from X11 are sent to +xscope which sends them on to the client. xscope is transparent to +the client and X11. + +In addition to passing characters back and forth, xscope will print +information about this traffic on stdout, giving performance and +debugging information for an X11 client and server. + + + -------------- -------------- -------------- + | | | | | | + | | ------------> | | ----------> | | + | client | | xscope | | server | + | | | | | | + | | <----------- | | <---------- | | + | | | | | | + -------------- -------------- -------------- + | + | + v + trace output to stdout + + +When running with xscope, three processes are involved, potentially all +on different machines: + +X11 -- the X11 window server will be running on machine "A" for Display "B". + ("A" is a machine name; "B" is a display number). + +xscope -- xscope must be told where the X11 window server is + (what machine and what display). The options for xscope are + -h and -d. In our example, -hA and -dB. + Typically the display-number is not given. xscope will not try to + connect to X11 until the client connects to xscope. + +client -- the client should connect to xscope rather than X11. To avoid + changing the code for the client, xscope listens on the same port + as X11. If X11 and xscope are on different machines, this works + well. However, if X11 and xscope are on the same machine, this + creates a port conflict. To resolve this conflict, xscope can + be given a different input or output port number, as necessary + to avoid the port that X11 is listening to. The client must connect + to this offset port number. The input port for xscope is set by + -i; the output port is set by -o. The + default input port is 1; the default output port is 0. These ports + are offset by the X11 base (6000) and the display number. The client + attaches to xscope by changing its display number by the port offset. + +For example, with X11 running on "bagel", display 0 (the default), and +xscope and the client running on "cleo", we would start xscope as +"xscope -hbagel -i0". The client program could then connect to "X11" on +"cleo:0", and would be attached to xscope, which would then attach to +X11 on "bagel:0". + +If, however, all three processes were running on "cleo", we would +start xscope by "xscope -i1". This would cause it to listen on +port 6001 (which is display 1 for X11). The client would attach to +X11 on "cleo:1", and xscope would connect through to X11 on "cleo:0". + + +LIMITATIONS: + +xscope has been written and used on a Sun3. Additional code may be needed +for byteswapping on different architectures. + +The command line arguments for specifying the real X server should probably + be changed to be more consistent with X11R3 applications. + +The Imakefile may be incorrect. + +The builtin atoms have been wired in directly; they should probably be +picked up from a header file. + +No provision is included for extensions to the base protocol. + +There is no code yet to interpret typed commands from the keyboard. + It would be possible for a command language at the keyboard to create + artificial characters to be sent to X11 or the client as if they were + generated by the other, or to dynamically alter requests or replies. + + + + diff --git a/audio.c b/audio.c new file mode 100644 index 0000000..94fd08a [...16285 lines suppressed...] + const unsigned char *values); +extern void PrintValueRec (unsigned long key, unsigned long cmask, + short ctype); /* ************************************************************ */ /* */ /* */ /* ************************************************************ */ -/* declaraction of the types of some common functions */ - -extern unsigned long ILong(); -extern unsigned short IShort(); -extern unsigned short IByte(); -extern Boolean IBool(); - -extern long PrintList(); -extern long PrintListSTR(); -extern long pad(); +/* declaration of the types of some common functions */ + +extern unsigned long ILong(const unsigned char *buf); +extern unsigned short IShort(const unsigned char *buf); +extern unsigned short IChar2B(const unsigned char *buf); +extern unsigned short IByte(const unsigned char *buf); +extern Boolean IBool(const unsigned char *buf); + +extern int PrintString8(const unsigned char *buf, int number, + const char *name); +extern int PrintString16(const unsigned char *buf, int number, + const char *name); +extern void PrintTString8(const unsigned char *buf, long number, + const char *name); +extern void PrintTString16(const unsigned char *buf, long number, + const char *name); + +extern long PrintList (const unsigned char *buf, long number, short ListType, + const char *name); +extern long PrintListSTR (const unsigned char *buf, long number, + const char *name); + +extern long pad(long n); + +extern const char REQUESTHEADER[], EVENTHEADER[], ERRORHEADER[], REPLYHEADER[]; + +#define GC_function 0x00000001L +#define GC_plane_mask 0x00000002L +#define GC_foreground 0x00000004L +#define GC_background 0x00000008L +#define GC_line_width 0x00000010L +#define GC_line_style 0x00000020L +#define GC_cap_style 0x00000040L +#define GC_join_style 0x00000080L +#define GC_fill_style 0x00000100L +#define GC_fill_rule 0x00000200L +#define GC_tile 0x00000400L +#define GC_stipple 0x00000800L +#define GC_tile_stipple_x_origin 0x00001000L +#define GC_tile_stipple_y_origin 0x00002000L +#define GC_font 0x00004000L +#define GC_subwindow_mode 0x00008000L +#define GC_graphics_exposures 0x00010000L +#define GC_clip_x_origin 0x00020000L +#define GC_clip_y_origin 0x00040000L +#define GC_clip_mask 0x00080000L +#define GC_dash_offset 0x00100000L +#define GC_dashes 0x00200000L +#define GC_arc_mode 0x00400000L + +#define printreqlen(buf, fd, dvalue) \ + do { \ + if (IShort(&(buf)[2]) == 0 && CS[(fd)].bigreqEnabled) { \ + printfield (buf, 4, 4, CARD32, "request length"); \ + buf += 4; \ + } else { \ + printfield (buf, 2, 2, CARD16, "request length"); \ + } \ + } while (0) #endif /* XSCOPE_X11_H */ diff --git a/xstats.c b/xstats.c new file mode 100644 index 0000000..33ec4c7 --- /dev/null +++ b/xstats.c @@ -0,0 +1,114 @@ +#define REQUEST 0 +#define REPLY 1 +#define ERROR 2 +#define EVENT 3 + +string_to_action (s) + char *s; +{ + if (!strcmp (s, "@@REQUEST")) return REQUEST; + if (!strcmp (s, "@@REPLY")) return REPLY; + if (!strcmp (s, "@@ERROR")) return ERROR; + if (!strcmp (s, "@@EVENT")) return EVENT; +} + +typedef struct { + double time; + int action; + int client; + int major; + int minor; + int len; +} ActionRec, *ActionPtr; + +unsigned long requestCount[256][256]; +unsigned long replyCount[256][256]; +unsigned long eventCount[256][256]; +unsigned long errorCount[256][256]; + +unsigned long requestBytes[256][256]; +unsigned long replyBytes[256][256]; +unsigned long eventBytes[256][256]; +unsigned long errorBytes[256][256]; + +unsigned long tRequestBytes; +unsigned long tReplyBytes; +unsigned long tEventBytes; +unsigned long tErrorBytes; + +unsigned long tRequestCount; +unsigned long tReplyCount; +unsigned long tEventCount; +unsigned long tErrorCount; + +dump (c, b) + unsigned long c[256][256]; + unsigned long b[256][256]; +{ + int i, j; + unsigned long count, bytes; + + for (i = 0; i < 256; i++) + { + for (j = 0; j < 256; j++) + { + if (count = c[i][j]) + { + bytes = b[i][j]; + printf ("%3d %3d count %5d bytes %7d\n", i, j, count, bytes); + } + } + } +} + +main () +{ + ActionRec a; + char aname[128]; + int i, j; + + while (scanf ("%lf: %s %d %d %d %d\n", + &a.time, aname, &a.client, &a.major, &a.minor, &a.len) == 6) + { + a.action = string_to_action (aname); + switch (a.action) { + case REQUEST: + requestCount[a.major][a.minor]++; + requestBytes[a.major][a.minor] += a.len; + tRequestCount++; + tRequestBytes += a.len; + break; + case REPLY: + replyCount[a.major][a.minor]++; + replyBytes[a.major][a.minor] += a.len; + tReplyCount++; + tReplyBytes += a.len; + break; + case EVENT: + eventCount[a.major][a.minor]++; + eventBytes[a.major][a.minor] += a.len; + tEventCount++; + tEventBytes += a.len; + break; + case ERROR: + errorCount[a.major][a.minor]++; + errorBytes[a.major][a.minor] += a.len; + tErrorCount++; + tErrorBytes += a.len; + break; + } + } + printf ("requests:\n"); + dump (requestCount, requestBytes); + printf ("replies:\n"); + dump (replyCount, replyBytes); + printf ("events:\n"); + dump (eventCount, eventBytes); + printf ("errors:\n"); + dump (errorCount, errorBytes); + printf ("send count %5d bytes %7d\n", + tRequestCount, tRequestBytes); + printf ("recv count %5d bytes %7d\n", + tEventCount + tErrorCount + tReplyCount, + tEventBytes + tErrorBytes + tReplyBytes); +} xscope-1.1-lessmacros.patch: --- NEW FILE xscope-1.1-lessmacros.patch --- diff -ur xscope-1.1/configure.ac xscope-1.1.lessmacros/configure.ac --- xscope-1.1/configure.ac 2009-06-27 08:16:40.000000000 +0300 +++ xscope-1.1.lessmacros/configure.ac 2009-06-27 08:17:33.000000000 +0300 @@ -39,7 +39,7 @@ # Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG, XORG_WITH_LINT m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) +XORG_MACROS_VERSION(1.1) AC_PROG_CC XORG_CWARNFLAGS --- NEW FILE xscope.spec --- Name: xscope Version: 1.1 Release: 3.gitfccbbd6%{?dist} Summary: X Window Protocol Viewer Group: User Interface/X License: MIT URL: http://cgit.freedesktop.org/xorg/app/xscope/ Source0: ftp://ftp.freedesktop.org/pub/xorg/individual/app/%{name}-%{version}.tar.bz2 # git diff --diff-filter=ACMRT xscope-1.1 fccbbd6 Patch0: xscope-1.1-diff_to_git.patch # to build on Fedora 10 reduce the xorg-macros required version Patch1: xscope-1.1-lessmacros.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xorg-x11-xtrans-devel, xorg-x11-proto-devel # required for the autoreconf BuildRequires: automake, autoconf, xorg-x11-util-macros %description xscope sits in-between an X11 client and an X11 server and prints the contents of each request, reply, error, or event that is communicated between them. This information can be useful in debugging and performance tuning of X11 servers and clients. %prep %setup -q %patch0 -p1 -b .diff_to_git %patch1 -p1 -b .lessmacros # required for changes in patch0 and patch1 autoreconf -f %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README COPYING ChangeLog %{_bindir}/%{name} %{_mandir}/man1/%{name}.1.gz %changelog * Sun Jun 28 2009 Yanko Kaneti 1.1-3.gitfccbbd6 - The software has a MIT not BSD license * Sat Jun 27 2009 Yanko Kaneti 1.1-2.gitfccbbd6 - Implement review feedback - Patch to build on Fedora 10 * Sun Jun 14 2009 Yanko Kaneti 1.1-1.gitfccbbd6 - First attempt at packaging. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xscope/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:36:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:16:21 -0000 1.2 @@ -0,0 +1 @@ +xscope-1.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xscope/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:36:07 -0000 1.1 +++ sources 1 Jul 2009 05:16:21 -0000 1.2 @@ -0,0 +1 @@ +c37ec177b56d5909584c1672b6beabd5 xscope-1.1.tar.bz2 From yaneti at fedoraproject.org Wed Jul 1 05:19:52 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:19:52 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/F-11 import.log, NONE, 1.1 perl-POE-Component-Server-Bayeux.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701051952.D8B1111C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21582/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-POE-Component-Server-Bayeux.spec Log Message: Initial import on branch F-11 --- NEW FILE import.log --- perl-POE-Component-Server-Bayeux-0_02-1_fc12:F-11:perl-POE-Component-Server-Bayeux-0.02-1.fc12.src.rpm:1246425521 --- NEW FILE perl-POE-Component-Server-Bayeux.spec --- Name: perl-POE-Component-Server-Bayeux Version: 0.02 Release: 1%{?dist} Summary: Bayeux/cometd server implementation in POE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/POE-Component-Server-Bayeux/ Source0: http://www.cpan.org/modules/by-module/POE/POE-Component-Server-Bayeux-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Simple) BuildRequires: perl(Class::Accessor) BuildRequires: perl(Data::UUID) BuildRequires: perl(JSON::Any) BuildRequires: perl(JSON::XS) BuildRequires: perl(Log::Log4perl) BuildRequires: perl(LWP) BuildRequires: perl(Module::Build) BuildRequires: perl(Params::Validate) BuildRequires: perl(POE::Component::Client::HTTP) BuildRequires: perl(POE::Component::Server::HTTP) >= 0.09 BuildRequires: perl(Test::More) BuildRequires: perl(URI) # missed by the autoreq for various reasons Requires: perl(Class::Accessor) Requires: perl(JSON::XS) Requires: perl(POE::Component::Client::HTTP) Requires: perl(LWP) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module implements the Bayeux Protocol (1.0draft1) from the Dojo Foundation. Also called cometd, Bayeux is a low-latency routing protocol for JSON encoded events between clients and servers in a publish- subscribe model. %prep %setup -q -n POE-Component-Server-Bayeux-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README htdocs %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Tue Jun 30 2009 Yanko Kaneti 0.02-1 - Specfile autogenerated by cpanspec 1.78. Requires tuning. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:44:07 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:19:22 -0000 1.2 @@ -0,0 +1 @@ +POE-Component-Server-Bayeux-0.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:44:07 -0000 1.1 +++ sources 1 Jul 2009 05:19:22 -0000 1.2 @@ -0,0 +1 @@ +dd18ab3f61f390fbc96a8dc8a15aa447 POE-Component-Server-Bayeux-0.02.tar.gz From cchance at fedoraproject.org Wed Jul 1 05:22:01 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 1 Jul 2009 05:22:01 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.4,1.5 Message-ID: <20090701052201.B5B6011C02C3@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22205 Modified Files: ibus-table-cangjie.spec Log Message: - Fixed that change into table directory for index creation. - Added owned directories in file section. - Removed bootstrap. - Updated package dependencies. Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ibus-table-cangjie.spec 18 May 2009 14:16:20 -0000 1.4 +++ ibus-table-cangjie.spec 1 Jul 2009 05:21:31 -0000 1.5 @@ -1,8 +1,6 @@ -%bcond_without bootstrap - Name: ibus-table-cangjie Version: 1.1.0.20090309 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -13,12 +11,10 @@ Source1: COPYING.tables BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -# for noarch pkgconfig -BuildRequires: ibus-table >= 1.1.0.20090220-5 -%if %{with bootstrap} -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.2 -%endif -Requires(post): ibus-table > 1.1.0 +Requires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +Requires(post): ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +BuildRequires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Cang Jie input methods for Table engine of IBus platform. @@ -29,45 +25,51 @@ The package contains Cang Jie input meth %__cp %{SOURCE1} tables/COPYING.tables %build -export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -%if %{with bootstrap} +export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb -o" ./autogen.sh \ --prefix=%{_prefix} \ -%else -%configure \ -%endif --enable-cangjie5 \ --enable-cangjie3 \ --enable-quick5 \ --enable-quick3 -make %{?_smp_mflags} +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} NO_INDEX=true install INSTALL="install -p" +%__rm -rf %{buildroot} +make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/cangjie3.db -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/cangjie5.db -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/quick3.db -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/quick5.db +cd %{_datadir}/ibus-table/tables/ +%{_bindir}/ibus-table-createdb -i -n cangjie3.db +%{_bindir}/ibus-table-createdb -i -n cangjie5.db +%{_bindir}/ibus-table-createdb -i -n quick3.db +%{_bindir}/ibus-table-createdb -i -n quick5.db %files %defattr(-,root,root,-) %doc AUTHORS icons/COPYING.icons tables/COPYING.tables README -%{_datadir}/ibus-table/tables/cangjie3.db -%{_datadir}/ibus-table/tables/cangjie5.db -%{_datadir}/ibus-table/tables/quick3.db -%{_datadir}/ibus-table/tables/quick5.db +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/icons +%dir %{_datadir}/ibus-table/tables +%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie3.db +%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie5.db +%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/quick3.db +%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/quick5.db %{_datadir}/ibus-table/icons/cangjie3.svg %{_datadir}/ibus-table/icons/cangjie5.svg %{_datadir}/ibus-table/icons/quick3.png %{_datadir}/ibus-table/icons/quick5.png %changelog +* Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090309-10.fc12 +- Fixed that change into table directory for index creation. +- Added owned directories in file section. +- Removed bootstrap. +- Updated package dependencies. + * Mon May 18 2009 Caius Chance - 1.1.0.20090309-9.fc12 - Rebuilt with no index during install, index creation during post-install. From jens at fedoraproject.org Wed Jul 1 05:22:18 2009 From: jens at fedoraproject.org (jens) Date: Wed, 1 Jul 2009 05:22:18 +0000 (UTC) Subject: rpms/miredo/devel import.log, NONE, 1.1 miredo-client.init, NONE, 1.1 miredo-config-not-exec, NONE, 1.1 miredo-server.init, NONE, 1.1 miredo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701052218.EEFDC11C02C3@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22137/devel Modified Files: .cvsignore sources Added Files: import.log miredo-client.init miredo-config-not-exec miredo-server.init miredo.spec Log Message: * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires --- NEW FILE import.log --- miredo-1_1_6-2_fc11:HEAD:miredo-1.1.6-2.fc11.src.rpm:1246425622 --- NEW FILE miredo-client.init --- #!/bin/sh # # miredo Teredo IPv6 tunneling client # # chkconfig: - 12 88 # description: miredo is a daemon program providing a Teredo tunnel \ # client compatible with the "Teredo: Tunneling IPv6 over \ # UDP through NATs" Internet proposed standard (RFC \ # 4380). This service implements a Teredo client that \ # allows the local IPv6-enabled host which is located \ # behind an IPv4-only Network Address Translator \ # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP \ # over IPv4 packets. ### BEGIN INIT INFO # Provides: miredo teredo-client # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling client # Description: miredo is a daemon program providing a Teredo tunnel # client compatible with the "Teredo: Tunneling IPv6 over # UDP through NATs" Internet proposed standard (RFC # 4380). This service implements a Teredo client that # allows the local IPv6-enabled host which is located # behind an IPv4-only Network Address Translator # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP # over IPv4 packets. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo" prog="miredo" config="/etc/miredo/miredo.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo-config-not-exec --- diff -ru miredo-1.1.6/misc/client-hook.iproute miredo-1.1.6-new/misc/client-hook.iproute --- miredo-1.1.6/misc/client-hook.iproute 2008-12-17 16:14:23.000000000 +0100 +++ miredo-1.1.6-new/misc/client-hook.iproute 2009-06-28 01:24:22.000000000 +0200 @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # # Miredo client hook script for Linux/iproute2 # Copyright ?? 2007 R??mi Denis-Courmont. diff -ru miredo-1.1.6/misc/miredo.conf-in miredo-1.1.6-new/misc/miredo.conf-in --- miredo-1.1.6/misc/miredo.conf-in 2009-04-09 18:31:30.000000000 +0200 +++ miredo-1.1.6-new/misc/miredo.conf-in 2009-06-28 01:24:29.000000000 +0200 @@ -1,4 +1,3 @@ -#! @sbindir@/miredo -f -c # # Sample configuration file for Miredo --- NEW FILE miredo-server.init --- #!/bin/sh # # miredo-server Teredo IPv6 tunneling server # # chkconfig: - 12 88 # description: miredo-server is a daemon program providing a Teredo \ # tunnel server compatible with the "Teredo: Tunneling \ # IPv6 over UDP through NATs" Internet proposed standard \ # (RFC 4380). This service implements a Teredo server \ # that allows Teredo clients to setup their IPv6 \ # connectivity through Teredo. A Teredo server must have \ # two global static subsequent IPv4 addresses. It \ # receives packets from Teredo clients and Teredo relays \ # on UDP port 3544. ### BEGIN INIT INFO # Provides: miredo-server teredo-server # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling server # Description: miredo-server is a daemon program providing a Teredo # tunnel server compatible with the "Teredo: Tunneling # IPv6 over UDP through NATs" Internet proposed standard # (RFC 4380). This service implements a Teredo server # that allows Teredo clients to setup their IPv6 # connectivity through Teredo. A Teredo server must have # two global static subsequent IPv4 addresses. It # receives packets from Teredo clients and Teredo relays # on UDP port 3544. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo-server" prog="miredo-server" config="/etc/miredo/miredo-server.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo.spec --- # vim: expandtab Name: miredo Version: 1.1.6 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs Group: Applications/Internet License: GPLv2+ URL: http://www.simphalempin.com/dev/miredo/ Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init %if 0%{?rhel} Source3: isatapd.init %endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcap-devel Judy-devel Requires(pre): shadow-utils Requires(post): chkconfig, /sbin/ldconfig # This is for /sbin/service Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo server. It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. %prep %setup -q %patch0 -p1 %build %configure \ --disable-static \ --disable-rpath \ --with-Judy \ --enable-miredo-user # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} mkdir rpmdocs mv %{buildroot}%{_docdir}/miredo/examples rpmdocs/ mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server %if 0%{?rhel} install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd %endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf %pre getent group miredo >/dev/null || groupadd -r miredo getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ -c "Miredo Daemon" miredo exit 0 %post /sbin/ldconfig /sbin/chkconfig --add miredo-client /sbin/chkconfig --add miredo-server %if 0%{?rhel} /sbin/chkconfig --add isatapd %endif %preun if [ $1 = 0 ] ; then %if 0%{?rhel} /sbin/service isatapd stop >/dev/null 2>&1 %endif /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client /sbin/chkconfig --del miredo-server %if 0%{?rhel} /sbin/chkconfig --del isatapd %endif fi %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then %if 0%{?rhel} /sbin/service isatapd condrestart >/dev/null 2>&1 || : %endif /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* %doc %{_mandir}/man?/miredo* %doc %{_mandir}/man1/teredo-mire* %dir %{_sysconfdir}/miredo %config(noreplace) %{_sysconfdir}/miredo/miredo.conf %config(noreplace) %{_sysconfdir}/miredo/client-hook %ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf %{_sbindir}/miredo %{_sbindir}/miredo-checkconf %{_sbindir}/miredo-server %{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* %{_initrddir}/miredo-client %{_initrddir}/miredo-server %if 0%{?rhel} %{_sbindir}/isatapd %doc %{_mandir}/man5/isatapd.conf* %doc %{_mandir}/man8/isatapd* %{_initrddir}/isatapd %endif %files devel %defattr(-,root,root,-) %{_includedir}/libteredo/ %{_includedir}/libtun6/ %{_libdir}/libteredo.so %{_libdir}/libtun6.so %changelog * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires * Sat Jun 27 2009 Jens Kuehnel 1.1.6-1 - ReInitiate Fedora package review - update to 1.1.6 - removed isatap stuff - don't start it by default * Sun Oct 05 2008 Charles R. Anderson 1.1.5-1 - Initial Fedora package based on Dries miredo.spec 5059 - Updated to 1.1.5 - disable-static libs - remove hardcoded rpaths - create initscripts for client, server, and isatap daemon - create system user miredo for daemon to setid to Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:39:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:21:48 -0000 1.2 @@ -0,0 +1 @@ +miredo-1.1.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:39:06 -0000 1.1 +++ sources 1 Jul 2009 05:21:48 -0000 1.2 @@ -0,0 +1 @@ +bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 From jens at fedoraproject.org Wed Jul 1 05:24:19 2009 From: jens at fedoraproject.org (jens) Date: Wed, 1 Jul 2009 05:24:19 +0000 (UTC) Subject: rpms/miredo/F-11 import.log, NONE, 1.1 miredo-client.init, NONE, 1.1 miredo-config-not-exec, NONE, 1.1 miredo-server.init, NONE, 1.1 miredo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701052419.42F6211C02C3@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22800/F-11 Modified Files: .cvsignore sources Added Files: import.log miredo-client.init miredo-config-not-exec miredo-server.init miredo.spec Log Message: * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires --- NEW FILE import.log --- miredo-1_1_6-2_fc11:F-11:miredo-1.1.6-2.fc11.src.rpm:1246425796 --- NEW FILE miredo-client.init --- #!/bin/sh # # miredo Teredo IPv6 tunneling client # # chkconfig: - 12 88 # description: miredo is a daemon program providing a Teredo tunnel \ # client compatible with the "Teredo: Tunneling IPv6 over \ # UDP through NATs" Internet proposed standard (RFC \ # 4380). This service implements a Teredo client that \ # allows the local IPv6-enabled host which is located \ # behind an IPv4-only Network Address Translator \ # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP \ # over IPv4 packets. ### BEGIN INIT INFO # Provides: miredo teredo-client # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling client # Description: miredo is a daemon program providing a Teredo tunnel # client compatible with the "Teredo: Tunneling IPv6 over # UDP through NATs" Internet proposed standard (RFC # 4380). This service implements a Teredo client that # allows the local IPv6-enabled host which is located # behind an IPv4-only Network Address Translator # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP # over IPv4 packets. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo" prog="miredo" config="/etc/miredo/miredo.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo-config-not-exec --- diff -ru miredo-1.1.6/misc/client-hook.iproute miredo-1.1.6-new/misc/client-hook.iproute --- miredo-1.1.6/misc/client-hook.iproute 2008-12-17 16:14:23.000000000 +0100 +++ miredo-1.1.6-new/misc/client-hook.iproute 2009-06-28 01:24:22.000000000 +0200 @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # # Miredo client hook script for Linux/iproute2 # Copyright ?? 2007 R??mi Denis-Courmont. diff -ru miredo-1.1.6/misc/miredo.conf-in miredo-1.1.6-new/misc/miredo.conf-in --- miredo-1.1.6/misc/miredo.conf-in 2009-04-09 18:31:30.000000000 +0200 +++ miredo-1.1.6-new/misc/miredo.conf-in 2009-06-28 01:24:29.000000000 +0200 @@ -1,4 +1,3 @@ -#! @sbindir@/miredo -f -c # # Sample configuration file for Miredo --- NEW FILE miredo-server.init --- #!/bin/sh # # miredo-server Teredo IPv6 tunneling server # # chkconfig: - 12 88 # description: miredo-server is a daemon program providing a Teredo \ # tunnel server compatible with the "Teredo: Tunneling \ # IPv6 over UDP through NATs" Internet proposed standard \ # (RFC 4380). This service implements a Teredo server \ # that allows Teredo clients to setup their IPv6 \ # connectivity through Teredo. A Teredo server must have \ # two global static subsequent IPv4 addresses. It \ # receives packets from Teredo clients and Teredo relays \ # on UDP port 3544. ### BEGIN INIT INFO # Provides: miredo-server teredo-server # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling server # Description: miredo-server is a daemon program providing a Teredo # tunnel server compatible with the "Teredo: Tunneling # IPv6 over UDP through NATs" Internet proposed standard # (RFC 4380). This service implements a Teredo server # that allows Teredo clients to setup their IPv6 # connectivity through Teredo. A Teredo server must have # two global static subsequent IPv4 addresses. It # receives packets from Teredo clients and Teredo relays # on UDP port 3544. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo-server" prog="miredo-server" config="/etc/miredo/miredo-server.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo.spec --- # vim: expandtab Name: miredo Version: 1.1.6 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs Group: Applications/Internet License: GPLv2+ URL: http://www.simphalempin.com/dev/miredo/ Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init %if 0%{?rhel} Source3: isatapd.init %endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcap-devel Judy-devel Requires(pre): shadow-utils Requires(post): chkconfig, /sbin/ldconfig # This is for /sbin/service Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo server. It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. %prep %setup -q %patch0 -p1 %build %configure \ --disable-static \ --disable-rpath \ --with-Judy \ --enable-miredo-user # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} mkdir rpmdocs mv %{buildroot}%{_docdir}/miredo/examples rpmdocs/ mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server %if 0%{?rhel} install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd %endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf %pre getent group miredo >/dev/null || groupadd -r miredo getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ -c "Miredo Daemon" miredo exit 0 %post /sbin/ldconfig /sbin/chkconfig --add miredo-client /sbin/chkconfig --add miredo-server %if 0%{?rhel} /sbin/chkconfig --add isatapd %endif %preun if [ $1 = 0 ] ; then %if 0%{?rhel} /sbin/service isatapd stop >/dev/null 2>&1 %endif /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client /sbin/chkconfig --del miredo-server %if 0%{?rhel} /sbin/chkconfig --del isatapd %endif fi %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then %if 0%{?rhel} /sbin/service isatapd condrestart >/dev/null 2>&1 || : %endif /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* %doc %{_mandir}/man?/miredo* %doc %{_mandir}/man1/teredo-mire* %dir %{_sysconfdir}/miredo %config(noreplace) %{_sysconfdir}/miredo/miredo.conf %config(noreplace) %{_sysconfdir}/miredo/client-hook %ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf %{_sbindir}/miredo %{_sbindir}/miredo-checkconf %{_sbindir}/miredo-server %{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* %{_initrddir}/miredo-client %{_initrddir}/miredo-server %if 0%{?rhel} %{_sbindir}/isatapd %doc %{_mandir}/man5/isatapd.conf* %doc %{_mandir}/man8/isatapd* %{_initrddir}/isatapd %endif %files devel %defattr(-,root,root,-) %{_includedir}/libteredo/ %{_includedir}/libtun6/ %{_libdir}/libteredo.so %{_libdir}/libtun6.so %changelog * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires * Sat Jun 27 2009 Jens Kuehnel 1.1.6-1 - ReInitiate Fedora package review - update to 1.1.6 - removed isatap stuff - don't start it by default * Sun Oct 05 2008 Charles R. Anderson 1.1.5-1 - Initial Fedora package based on Dries miredo.spec 5059 - Updated to 1.1.5 - disable-static libs - remove hardcoded rpaths - create initscripts for client, server, and isatap daemon - create system user miredo for daemon to setid to Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:39:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:23:49 -0000 1.2 @@ -0,0 +1 @@ +miredo-1.1.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:39:06 -0000 1.1 +++ sources 1 Jul 2009 05:23:49 -0000 1.2 @@ -0,0 +1 @@ +bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 From yaneti at fedoraproject.org Wed Jul 1 05:24:09 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:24:09 +0000 (UTC) Subject: rpms/xscope/F-10 import.log, NONE, 1.1 xscope-1.1-diff_to_git.patch, NONE, 1.1 xscope-1.1-lessmacros.patch, NONE, 1.1 xscope.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701052409.5B79B11C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/xscope/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22877/F-10 Modified Files: .cvsignore sources Added Files: import.log xscope-1.1-diff_to_git.patch xscope-1.1-lessmacros.patch xscope.spec Log Message: Initial import on branch F-10 --- NEW FILE import.log --- xscope-1_1-3_gitfccbbd6_fc12:F-10:xscope-1.1-3.gitfccbbd6.fc12.src.rpm:1246425806 xscope-1.1-diff_to_git.patch: --- NEW FILE xscope-1.1-diff_to_git.patch --- diff --git a/AUTHORS b/AUTHORS index 3dd770c..b3bbcec 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1 +1,2 @@ James Peterson, MCC +Keith Packard diff --git a/Makefile.am b/Makefile.am index 89928cf..7bbf2e6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved. # Use subject to license terms. # # Permission is hereby granted, free of charge, to any person obtaining a @@ -30,28 +30,51 @@ bin_PROGRAMS = xscope -AM_CFLAGS = $(XSCOPE_CFLAGS) +AM_CFLAGS = $(CWARNFLAGS) $(XSCOPE_CFLAGS) xscope_LDADD = $(XSCOPE_LIBS) xscope_SOURCES = \ + audio.c \ + bigreqscope.h \ common.c \ decode11.c \ + decode_bigreq.c \ + decode_lbx.c \ + decode_randr.c \ + decode_render.c \ + decode_shm.c \ + decode_wcp.c \ + decodenas.c \ + extensions.c \ + extensions.h \ fd.c \ fd.h \ + lbxscope.h \ + nas.h \ print11.c \ + print_bigreq.c \ + print_lbx.c \ + print_randr.c \ + print_render.c \ + print_shm.c \ + print_wcp.c \ + printnas.c \ proto.h \ prtype.c \ + randrscope.h \ + renderscope.h \ + scope-transport.c \ scope.c \ scope.h \ server.c \ + shmscope.h \ table11.c \ - x11.h \ - scope-transport.c + wcpscope.h \ + x11.h appman_PRE = \ xscope.man - appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) @@ -63,7 +86,7 @@ MAINTAINERCLEANFILES = ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + $(CHANGELOG_CMD) dist-hook: ChangeLog @@ -90,3 +113,16 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +if LINT +# Check source code with tools like lint & sparse + +ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) + +lint: $(BUILT_SOURCES) + @for f in $(xscope_SOURCES) ; do \ + case $$f in *.c) \ + $(LINT) $(ALL_LINT_FLAGS) $(srcdir)/$$f ;; esac ; \ + done +endif LINT diff --git a/README b/README index e69de29..39e78b1 100644 --- a/README +++ b/README @@ -0,0 +1,91 @@ + + XSCOPE -- a program to monitor X11/Client conversations + +XSCOPE is a program to monitor the connections between the X11 window +server and a client program. xscope runs as a separate process. By +adjusting the host and/or display number that a X11 client attaches +to, the client is attached to xscope instead of X11. xscope attaches +to X11 as if it were the client. All bytes from the client are sent +to xscope which passes them on to X11; All bytes from X11 are sent to +xscope which sends them on to the client. xscope is transparent to +the client and X11. + +In addition to passing characters back and forth, xscope will print +information about this traffic on stdout, giving performance and +debugging information for an X11 client and server. + + + -------------- -------------- -------------- + | | | | | | + | | ------------> | | ----------> | | + | client | | xscope | | server | + | | | | | | + | | <----------- | | <---------- | | + | | | | | | + -------------- -------------- -------------- + | + | + v + trace output to stdout + + +When running with xscope, three processes are involved, potentially all +on different machines: + +X11 -- the X11 window server will be running on machine "A" for Display "B". + ("A" is a machine name; "B" is a display number). + +xscope -- xscope must be told where the X11 window server is + (what machine and what display). The options for xscope are + -h and -d. In our example, -hA and -dB. + Typically the display-number is not given. xscope will not try to + connect to X11 until the client connects to xscope. + +client -- the client should connect to xscope rather than X11. To avoid + changing the code for the client, xscope listens on the same port + as X11. If X11 and xscope are on different machines, this works + well. However, if X11 and xscope are on the same machine, this + creates a port conflict. To resolve this conflict, xscope can + be given a different input or output port number, as necessary + to avoid the port that X11 is listening to. The client must connect + to this offset port number. The input port for xscope is set by + -i; the output port is set by -o. The + default input port is 1; the default output port is 0. These ports + are offset by the X11 base (6000) and the display number. The client + attaches to xscope by changing its display number by the port offset. + +For example, with X11 running on "bagel", display 0 (the default), and +xscope and the client running on "cleo", we would start xscope as +"xscope -hbagel -i0". The client program could then connect to "X11" on +"cleo:0", and would be attached to xscope, which would then attach to +X11 on "bagel:0". + +If, however, all three processes were running on "cleo", we would +start xscope by "xscope -i1". This would cause it to listen on +port 6001 (which is display 1 for X11). The client would attach to +X11 on "cleo:1", and xscope would connect through to X11 on "cleo:0". + + +LIMITATIONS: + +xscope has been written and used on a Sun3. Additional code may be needed +for byteswapping on different architectures. + +The command line arguments for specifying the real X server should probably + be changed to be more consistent with X11R3 applications. + +The Imakefile may be incorrect. + +The builtin atoms have been wired in directly; they should probably be +picked up from a header file. + +No provision is included for extensions to the base protocol. + +There is no code yet to interpret typed commands from the keyboard. + It would be possible for a command language at the keyboard to create + artificial characters to be sent to X11 or the client as if they were + generated by the other, or to dynamically alter requests or replies. + + + + diff --git a/audio.c b/audio.c new file mode 100644 index 0000000..94fd08a [...16285 lines suppressed...] + const unsigned char *values); +extern void PrintValueRec (unsigned long key, unsigned long cmask, + short ctype); /* ************************************************************ */ /* */ /* */ /* ************************************************************ */ -/* declaraction of the types of some common functions */ - -extern unsigned long ILong(); -extern unsigned short IShort(); -extern unsigned short IByte(); -extern Boolean IBool(); - -extern long PrintList(); -extern long PrintListSTR(); -extern long pad(); +/* declaration of the types of some common functions */ + +extern unsigned long ILong(const unsigned char *buf); +extern unsigned short IShort(const unsigned char *buf); +extern unsigned short IChar2B(const unsigned char *buf); +extern unsigned short IByte(const unsigned char *buf); +extern Boolean IBool(const unsigned char *buf); + +extern int PrintString8(const unsigned char *buf, int number, + const char *name); +extern int PrintString16(const unsigned char *buf, int number, + const char *name); +extern void PrintTString8(const unsigned char *buf, long number, + const char *name); +extern void PrintTString16(const unsigned char *buf, long number, + const char *name); + +extern long PrintList (const unsigned char *buf, long number, short ListType, + const char *name); +extern long PrintListSTR (const unsigned char *buf, long number, + const char *name); + +extern long pad(long n); + +extern const char REQUESTHEADER[], EVENTHEADER[], ERRORHEADER[], REPLYHEADER[]; + +#define GC_function 0x00000001L +#define GC_plane_mask 0x00000002L +#define GC_foreground 0x00000004L +#define GC_background 0x00000008L +#define GC_line_width 0x00000010L +#define GC_line_style 0x00000020L +#define GC_cap_style 0x00000040L +#define GC_join_style 0x00000080L +#define GC_fill_style 0x00000100L +#define GC_fill_rule 0x00000200L +#define GC_tile 0x00000400L +#define GC_stipple 0x00000800L +#define GC_tile_stipple_x_origin 0x00001000L +#define GC_tile_stipple_y_origin 0x00002000L +#define GC_font 0x00004000L +#define GC_subwindow_mode 0x00008000L +#define GC_graphics_exposures 0x00010000L +#define GC_clip_x_origin 0x00020000L +#define GC_clip_y_origin 0x00040000L +#define GC_clip_mask 0x00080000L +#define GC_dash_offset 0x00100000L +#define GC_dashes 0x00200000L +#define GC_arc_mode 0x00400000L + +#define printreqlen(buf, fd, dvalue) \ + do { \ + if (IShort(&(buf)[2]) == 0 && CS[(fd)].bigreqEnabled) { \ + printfield (buf, 4, 4, CARD32, "request length"); \ + buf += 4; \ + } else { \ + printfield (buf, 2, 2, CARD16, "request length"); \ + } \ + } while (0) #endif /* XSCOPE_X11_H */ diff --git a/xstats.c b/xstats.c new file mode 100644 index 0000000..33ec4c7 --- /dev/null +++ b/xstats.c @@ -0,0 +1,114 @@ +#define REQUEST 0 +#define REPLY 1 +#define ERROR 2 +#define EVENT 3 + +string_to_action (s) + char *s; +{ + if (!strcmp (s, "@@REQUEST")) return REQUEST; + if (!strcmp (s, "@@REPLY")) return REPLY; + if (!strcmp (s, "@@ERROR")) return ERROR; + if (!strcmp (s, "@@EVENT")) return EVENT; +} + +typedef struct { + double time; + int action; + int client; + int major; + int minor; + int len; +} ActionRec, *ActionPtr; + +unsigned long requestCount[256][256]; +unsigned long replyCount[256][256]; +unsigned long eventCount[256][256]; +unsigned long errorCount[256][256]; + +unsigned long requestBytes[256][256]; +unsigned long replyBytes[256][256]; +unsigned long eventBytes[256][256]; +unsigned long errorBytes[256][256]; + +unsigned long tRequestBytes; +unsigned long tReplyBytes; +unsigned long tEventBytes; +unsigned long tErrorBytes; + +unsigned long tRequestCount; +unsigned long tReplyCount; +unsigned long tEventCount; +unsigned long tErrorCount; + +dump (c, b) + unsigned long c[256][256]; + unsigned long b[256][256]; +{ + int i, j; + unsigned long count, bytes; + + for (i = 0; i < 256; i++) + { + for (j = 0; j < 256; j++) + { + if (count = c[i][j]) + { + bytes = b[i][j]; + printf ("%3d %3d count %5d bytes %7d\n", i, j, count, bytes); + } + } + } +} + +main () +{ + ActionRec a; + char aname[128]; + int i, j; + + while (scanf ("%lf: %s %d %d %d %d\n", + &a.time, aname, &a.client, &a.major, &a.minor, &a.len) == 6) + { + a.action = string_to_action (aname); + switch (a.action) { + case REQUEST: + requestCount[a.major][a.minor]++; + requestBytes[a.major][a.minor] += a.len; + tRequestCount++; + tRequestBytes += a.len; + break; + case REPLY: + replyCount[a.major][a.minor]++; + replyBytes[a.major][a.minor] += a.len; + tReplyCount++; + tReplyBytes += a.len; + break; + case EVENT: + eventCount[a.major][a.minor]++; + eventBytes[a.major][a.minor] += a.len; + tEventCount++; + tEventBytes += a.len; + break; + case ERROR: + errorCount[a.major][a.minor]++; + errorBytes[a.major][a.minor] += a.len; + tErrorCount++; + tErrorBytes += a.len; + break; + } + } + printf ("requests:\n"); + dump (requestCount, requestBytes); + printf ("replies:\n"); + dump (replyCount, replyBytes); + printf ("events:\n"); + dump (eventCount, eventBytes); + printf ("errors:\n"); + dump (errorCount, errorBytes); + printf ("send count %5d bytes %7d\n", + tRequestCount, tRequestBytes); + printf ("recv count %5d bytes %7d\n", + tEventCount + tErrorCount + tReplyCount, + tEventBytes + tErrorBytes + tReplyBytes); +} xscope-1.1-lessmacros.patch: --- NEW FILE xscope-1.1-lessmacros.patch --- diff -ur xscope-1.1/configure.ac xscope-1.1.lessmacros/configure.ac --- xscope-1.1/configure.ac 2009-06-27 08:16:40.000000000 +0300 +++ xscope-1.1.lessmacros/configure.ac 2009-06-27 08:17:33.000000000 +0300 @@ -39,7 +39,7 @@ # Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG, XORG_WITH_LINT m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) +XORG_MACROS_VERSION(1.1) AC_PROG_CC XORG_CWARNFLAGS --- NEW FILE xscope.spec --- Name: xscope Version: 1.1 Release: 3.gitfccbbd6%{?dist} Summary: X Window Protocol Viewer Group: User Interface/X License: MIT URL: http://cgit.freedesktop.org/xorg/app/xscope/ Source0: ftp://ftp.freedesktop.org/pub/xorg/individual/app/%{name}-%{version}.tar.bz2 # git diff --diff-filter=ACMRT xscope-1.1 fccbbd6 Patch0: xscope-1.1-diff_to_git.patch # to build on Fedora 10 reduce the xorg-macros required version Patch1: xscope-1.1-lessmacros.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xorg-x11-xtrans-devel, xorg-x11-proto-devel # required for the autoreconf BuildRequires: automake, autoconf, xorg-x11-util-macros %description xscope sits in-between an X11 client and an X11 server and prints the contents of each request, reply, error, or event that is communicated between them. This information can be useful in debugging and performance tuning of X11 servers and clients. %prep %setup -q %patch0 -p1 -b .diff_to_git %patch1 -p1 -b .lessmacros # required for changes in patch0 and patch1 autoreconf -f %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README COPYING ChangeLog %{_bindir}/%{name} %{_mandir}/man1/%{name}.1.gz %changelog * Sun Jun 28 2009 Yanko Kaneti 1.1-3.gitfccbbd6 - The software has a MIT not BSD license * Sat Jun 27 2009 Yanko Kaneti 1.1-2.gitfccbbd6 - Implement review feedback - Patch to build on Fedora 10 * Sun Jun 14 2009 Yanko Kaneti 1.1-1.gitfccbbd6 - First attempt at packaging. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xscope/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:36:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:24:08 -0000 1.2 @@ -0,0 +1 @@ +xscope-1.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xscope/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:36:07 -0000 1.1 +++ sources 1 Jul 2009 05:24:08 -0000 1.2 @@ -0,0 +1 @@ +c37ec177b56d5909584c1672b6beabd5 xscope-1.1.tar.bz2 From yaneti at fedoraproject.org Wed Jul 1 05:27:09 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 1 Jul 2009 05:27:09 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/F-10 import.log, NONE, 1.1 perl-POE-Component-Server-Bayeux.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701052709.8A7DA11C02C3@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23627/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-POE-Component-Server-Bayeux.spec Log Message: Initial import on branch F-10 --- NEW FILE import.log --- perl-POE-Component-Server-Bayeux-0_02-1_fc12:F-10:perl-POE-Component-Server-Bayeux-0.02-1.fc12.src.rpm:1246425994 --- NEW FILE perl-POE-Component-Server-Bayeux.spec --- Name: perl-POE-Component-Server-Bayeux Version: 0.02 Release: 1%{?dist} Summary: Bayeux/cometd server implementation in POE License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/POE-Component-Server-Bayeux/ Source0: http://www.cpan.org/modules/by-module/POE/POE-Component-Server-Bayeux-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Simple) BuildRequires: perl(Class::Accessor) BuildRequires: perl(Data::UUID) BuildRequires: perl(JSON::Any) BuildRequires: perl(JSON::XS) BuildRequires: perl(Log::Log4perl) BuildRequires: perl(LWP) BuildRequires: perl(Module::Build) BuildRequires: perl(Params::Validate) BuildRequires: perl(POE::Component::Client::HTTP) BuildRequires: perl(POE::Component::Server::HTTP) >= 0.09 BuildRequires: perl(Test::More) BuildRequires: perl(URI) # missed by the autoreq for various reasons Requires: perl(Class::Accessor) Requires: perl(JSON::XS) Requires: perl(POE::Component::Client::HTTP) Requires: perl(LWP) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module implements the Bayeux Protocol (1.0draft1) from the Dojo Foundation. Also called cometd, Bayeux is a low-latency routing protocol for JSON encoded events between clients and servers in a publish- subscribe model. %prep %setup -q -n POE-Component-Server-Bayeux-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README htdocs %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Tue Jun 30 2009 Yanko Kaneti 0.02-1 - Specfile autogenerated by cpanspec 1.78. Requires tuning. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:44:07 -0000 1.1 +++ .cvsignore 1 Jul 2009 05:27:09 -0000 1.2 @@ -0,0 +1 @@ +POE-Component-Server-Bayeux-0.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:44:07 -0000 1.1 +++ sources 1 Jul 2009 05:27:09 -0000 1.2 @@ -0,0 +1 @@ +dd18ab3f61f390fbc96a8dc8a15aa447 POE-Component-Server-Bayeux-0.02.tar.gz From cchance at fedoraproject.org Wed Jul 1 05:33:34 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 1 Jul 2009 05:33:34 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel ibus-table-wubi.spec,1.5,1.6 Message-ID: <20090701053334.7581A11C02C3@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24393 Modified Files: ibus-table-wubi.spec Log Message: - Corrected by change into installed table directory for index creation. - Further specify package dependencies. - Added owned directories that supposed to belong to this package. - Move hard coded commands to macros. Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibus-table-wubi.spec 18 May 2009 13:18:28 -0000 1.5 +++ ibus-table-wubi.spec 1 Jul 2009 05:33:34 -0000 1.6 @@ -1,8 +1,6 @@ -%bcond_without bootstrap - Name: ibus-table-wubi Version: 1.1.0.20090327 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Wubi input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -12,12 +10,10 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -# for noarch pkgconfig -BuildRequires: ibus-table >= 1.1.0.20090220-5 -%if %{with bootstrap} -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.2 -%endif -Requires(post): ibus-table > 1.1.0 +Requires: ibus-table > 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +Requires(post): ibus-table > 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +BuildRequires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Wubi input methods for Table engine of IBus platform. @@ -26,33 +22,37 @@ The package contains Wubi input methods %setup -q %build -export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -%if %{with bootstrap} -./autogen.sh \ - --prefix=%{_prefix} \ -%else -%configure \ -%endif - --enable-wubi86 -make %{?_smp_mflags} +export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb -o" +./autogen.sh --prefix=%{_prefix} --enable-wubi86 +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} NO_INDEX=true install INSTALL="install -p" +%__rm -rf %{buildroot} +%__make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/wubi86.db +cd %{_datadir}/ibus-table/tables/ +%{_bindir}/ibus-table-createdb -i -n wubi86.db %files %defattr(-,root,root,-) %doc AUTHORS COPYING README +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/tables +%dir %{_datadir}/ibus-table/icons %{_datadir}/ibus-table/tables/wubi86.db %{_datadir}/ibus-table/icons/wubi86.svg %changelog +* Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090316-8.fc12 +- Corrected by change into installed table directory for index creation. +- Further specify package dependencies. +- Added owned directories that supposed to belong to this package. +- Move hard coded commands to macros. + * Mon May 17 2009 Caius Chance - 1.1.0.20090316-7.fc12 - Rebuilt with indexing during post-install. From topdog at fedoraproject.org Wed Jul 1 06:01:15 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 1 Jul 2009 06:01:15 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/devel import.log, NONE, 1.1 php-pear-Auth_HTTP.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701060116.20F7511C02C3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27628/devel Modified Files: .cvsignore sources Added Files: import.log php-pear-Auth_HTTP.spec Log Message: * Wed Jun 1 2009 Andrew Colin Kissa - 2.1.6-2 - Initial CVS commit --- NEW FILE import.log --- php-pear-Auth_HTTP-2_1_6-2_fc11:HEAD:php-pear-Auth_HTTP-2.1.6-2.fc11.src.rpm:1246427898 --- NEW FILE php-pear-Auth_HTTP.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name Auth_HTTP Name: php-pear-Auth_HTTP Version: 2.1.6 Release: 2%{?dist} Summary: Class providing HTTP authentication methods Group: Development/Libraries License: PHP URL: http://pear.php.net/package/Auth_HTTP Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 php-pear(Auth) >= 1.2.0 Requires: php-pear(PEAR) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} Requires: php-pear(Auth) >= 1.2.0 %description The PEAR::Auth_HTTP class provides methods for creating an HTTP authentication system using PHP, that is similar to Apache's realm-based .htaccess authentication. %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Auth/HTTP.php %changelog * Mon Jun 29 2009 Andrew Colin Kissa - 2.1.6-2 - Renamed to match upstream * Thu Jun 25 2009 Andrew Colin Kissa - 2.1.6-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:40:23 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:00:42 -0000 1.2 @@ -0,0 +1 @@ +Auth_HTTP-2.1.6.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:40:24 -0000 1.1 +++ sources 1 Jul 2009 06:00:43 -0000 1.2 @@ -0,0 +1 @@ +d5209f0d1f1874e23b44fbfb397a2aa0 Auth_HTTP-2.1.6.tgz From topdog at fedoraproject.org Wed Jul 1 06:06:31 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 1 Jul 2009 06:06:31 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/F-10 import.log, NONE, 1.1 php-pear-Auth_HTTP.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701060631.99B4311C02C3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28661/F-10 Modified Files: .cvsignore sources Added Files: import.log php-pear-Auth_HTTP.spec Log Message: * Wed Jun 1 2009 Andrew Colin Kissa - 2.1.6-2 - Initial CVS checkin --- NEW FILE import.log --- php-pear-Auth_HTTP-2_1_6-2_fc11:F-10:php-pear-Auth_HTTP-2.1.6-2.fc11.src.rpm:1246428318 --- NEW FILE php-pear-Auth_HTTP.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name Auth_HTTP Name: php-pear-Auth_HTTP Version: 2.1.6 Release: 2%{?dist} Summary: Class providing HTTP authentication methods Group: Development/Libraries License: PHP URL: http://pear.php.net/package/Auth_HTTP Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 php-pear(Auth) >= 1.2.0 Requires: php-pear(PEAR) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} Requires: php-pear(Auth) >= 1.2.0 %description The PEAR::Auth_HTTP class provides methods for creating an HTTP authentication system using PHP, that is similar to Apache's realm-based .htaccess authentication. %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Auth/HTTP.php %changelog * Mon Jun 29 2009 Andrew Colin Kissa - 2.1.6-2 - Renamed to match upstream * Thu Jun 25 2009 Andrew Colin Kissa - 2.1.6-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:40:23 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:06:31 -0000 1.2 @@ -0,0 +1 @@ +Auth_HTTP-2.1.6.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:40:24 -0000 1.1 +++ sources 1 Jul 2009 06:06:31 -0000 1.2 @@ -0,0 +1 @@ +d5209f0d1f1874e23b44fbfb397a2aa0 Auth_HTTP-2.1.6.tgz From kushal at fedoraproject.org Wed Jul 1 06:20:56 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Wed, 1 Jul 2009 06:20:56 +0000 (UTC) Subject: rpms/lekhonee/devel .cvsignore, 1.4, 1.5 import.log, 1.4, 1.5 lekhonee.spec, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090701062056.5382A11C02C3@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27682/devel Modified Files: .cvsignore import.log lekhonee.spec sources Log Message: NEw release of lekhonee Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jun 2009 13:03:23 -0000 1.4 +++ .cvsignore 1 Jul 2009 06:20:25 -0000 1.5 @@ -1 +1 @@ -lekhonee-0.4.tar.gz +lekhonee-0.5.tar.gz Index: import.log =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 17 Jun 2009 13:15:10 -0000 1.4 +++ import.log 1 Jul 2009 06:20:25 -0000 1.5 @@ -2,3 +2,4 @@ lekhonee-0_2_1-1_fc10:HEAD:lekhonee-0.2. lekhonee-0_3_1-1_fc11:HEAD:lekhonee-0.3.1-1.fc11.src.rpm:1242219152 lekhonee-0_4-4_fc11:HEAD:lekhonee-0.4-4.fc11.src.rpm:1245242716 lekhonee-0_4-5_fc11:HEAD:lekhonee-0.4-5.fc11.src.rpm:1245244541 +lekhonee-0_5-3_fc11:HEAD:lekhonee-0.5-3.fc11.src.rpm:1246427975 Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/lekhonee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lekhonee.spec 17 Jun 2009 13:15:10 -0000 1.4 +++ lekhonee.spec 1 Jul 2009 06:20:25 -0000 1.5 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.4 -Release: 5%{?dist} +Version: 0.5 +Release: 3%{?dist} Summary: A blog client Group: Applications/Internet @@ -13,7 +13,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel, python-setuptools, PyQt4-devel, desktop-file-utils, PyKDE4-devel -Requires: PyQt4, mx, PyKDE4, %{name}-lib +Requires: PyQt4, mx, PyKDE4 +Requires: %{name}-lib = %{version}-%{release} %description A desktop wordpress client @@ -29,6 +30,7 @@ The backend library for wordpress deskto Summary: Wordpress desktop client frontend for Gnome Group: Applications/Internet Requires: gnome-python2-gtkspell pygtksourceview pywebkitgtk %{name}-lib +Requires: %{name}-lib = %{version}-%{release} %description gnome Wordpress desktop client frontend for Gnome @@ -62,11 +64,7 @@ rm -rf $RPM_BUILD_ROOT %files lib %defattr(-,root,root,-) -%{python_sitelib}/Chotha/__init__.py* -%{python_sitelib}/Chotha/BlogServer.py* -%{python_sitelib}/Chotha/Livejournal.py* -%{python_sitelib}/Chotha/ServerFactory.py* -%{python_sitelib}/Chotha/Wordpress.py* +%{python_sitelib}/lekhoneeblog/* %files gnome %defattr(-,root,root,-) @@ -78,10 +76,22 @@ rm -rf $RPM_BUILD_ROOT %files %doc docs/README docs/ChangeLog docs/COPYING %{_bindir}/lekhonee -%{_datadir}/* -%{python_sitelib}/* +%{_datadir}/pixmaps/lekhonee.png +%{_datadir}/pixmaps/chotha/* +%{_datadir}/applications/lekhonee.desktop +%{python_sitelib}/Chotha/* +%{python_sitelib}/*.egg-info %changelog +* Tue Jun 30 2009 Kushal Das 0.5-3 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-2 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-1 +- New release + * Wed Jun 17 2009 Kushal Das 0.4-5 - Fixed more bugs Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jun 2009 13:15:10 -0000 1.5 +++ sources 1 Jul 2009 06:20:25 -0000 1.6 @@ -1 +1 @@ -ff66670611c4ffb5aa9f37f694670711 lekhonee-0.4.tar.gz +07477825df4f50d450f123b90394bbdf lekhonee-0.5.tar.gz From rakesh at fedoraproject.org Wed Jul 1 06:32:04 2009 From: rakesh at fedoraproject.org (Rakesh Pandit) Date: Wed, 1 Jul 2009 06:32:04 +0000 (UTC) Subject: rpms/Mayavi/devel Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch, NONE, 1.1 Mayavi.desktop, NONE, 1.1 Mayavi.spec, NONE, 1.1 import.log, NONE, 1.1 tvtk_doc.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701063205.4045411C02C3@cvs1.fedora.phx.redhat.com> Author: rakesh Update of /cvs/pkgs/rpms/Mayavi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32439/devel Modified Files: .cvsignore sources Added Files: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch Mayavi.desktop Mayavi.spec import.log tvtk_doc.desktop Log Message: Initial import. Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch: --- NEW FILE Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch --- --- Mayavi-3.1.0.org/enthought/tvtk/code_gen.py 2009-06-10 16:40:04.124136294 +0530 +++ Mayavi-3.1.0/enthought/tvtk/code_gen.py 2009-06-11 17:01:04.970576741 +0530 @@ -157,6 +157,8 @@ z.write(x, 'tvtk_classes/%s'%fname) z.writepy('tvtk_classes') z.close() + if os.path.exists(cwd + "/" + self.zip_name): + os.unlink(cwd + "/" + self.zip_name) shutil.move(self.zip_name, cwd) os.chdir(cwd) --- NEW FILE Mayavi.desktop --- [Desktop Entry] Name=Mayavi Comment=Scientific data 3-dimensional visualizer GenericName=Scientific data 3-dimensional visualizer Exec=mayavi2 %U StartupNotify=true Terminal=false Type=Application Icon=mayavi2 Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; --- NEW FILE Mayavi.spec --- # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: Mayavi Version: 3.2.0 Release: 6%{?dist} Summary: Scientific data 3-dimensional visualizer Group: Applications/Engineering License: BSD and EPL and LGPLv2+ and LGPLv3+ URL: http://pypi.python.org/pypi/Mayavi/ Source0: http://www.enthought.com/repo/ETS/%{name}-%{version}.tar.gz Source1: Mayavi.desktop Source2: tvtk_doc.desktop # Removes already generated tvtk class zip file # https://svn.enthought.com/enthought/ticket/1817 Patch0: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools, python-setupdocs, python-sphinx BuildRequires: vtk-python, desktop-file-utils %if 0%{?fedora} >= 11 BuildRequires: numpy-f2py %else BuildRequires: numpy %endif Requires: numpy, vtk-python Requires: wxPython Requires: python-AppTools Requires: python-EnthoughtBase Requires: python-EnvisageCore Requires: python-EnvisagePlugins Requires: python-Traits >= 3.1.0 Requires: python-TraitsGUI Requires: python-TraitsBackendQt >= 3.1.0 %description The Mayavi project includes two related packages for 3-dimensional visualization: * Mayavi2: A tool for easy and interactive visualization of data. * TVTK: A Traits-based wrapper for the Visualization Toolkit, a popular open-source visualization library. These operate at different levels of abstraction. TVTK manipulates visualization objects, while Mayavi2 lets you operate on your data, and then see the results. Most users either use the Mayavi user interface or program to its scripting interface; you probably don't need to interact with TVTK unless you want to create a new Mayavi module. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b enthought_tvtk_code_gen_py rm -rf Mayavi.egg-info # removes .buildinfo files find enthought/mayavi/html/ enthought/tvtk/html/ -name \.buildinfo \ -type f -print | xargs rm -f - # Fixed license naming sed 's/icon_/image_/g' image_LICENSE.txt > image_LICENSE.txt.fixed touch -c -r image_LICENSE.txt image_LICENSE.txt.fixed mv -f image_LICENSE.txt.fixed image_LICENSE.txt # wrong-file-end-of-line-encoding sed 's/\r//' examples/mayavi/wx_mayavi_embed_in_notebook.py > \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed touch -c -r examples/mayavi/wx_mayavi_embed_in_notebook.py \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed mv -f examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed \ examples/mayavi/wx_mayavi_embed_in_notebook.py sed 's/\r//' examples/mayavi/data/room_vis.wrl > \ examples/mayavi/data/room_vis.wrl.fixed touch -c -r examples/mayavi/data/room_vis.wrl \ examples/mayavi/data/room_vis.wrl.fixed mv -f examples/mayavi/data/room_vis.wrl.fixed \ examples/mayavi/data/room_vis.wrl sed 's/\r//' examples/tvtk/dscene.py > examples/tvtk/dscene.py.fixed touch -c -r examples/tvtk/dscene.py examples/tvtk/dscene.py.fixed mv -f examples/tvtk/dscene.py.fixed examples/tvtk/dscene.py sed 's/\r//' image_LICENSE_Nuvola.txt > image_LICENSE_Nuvola.txt.fixed touch -c -r image_LICENSE_Nuvola.txt image_LICENSE_Nuvola.txt.fixed mv -f image_LICENSE_Nuvola.txt.fixed image_LICENSE_Nuvola.txt sed 's/\r//' image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.fixed touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.fixed mv -f image_LICENSE_OOo.txt.fixed image_LICENSE_OOo.txt sed 's/\r//' image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.fixed touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.fixed mv -f image_LICENSE_Eclipse.txt.fixed image_LICENSE_Eclipse.txt # file-not-utf8 iconv -f iso8859-1 -t utf-8 image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.conv \ && touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.conv \ && mv -f image_LICENSE_OOo.txt.conv image_LICENSE_OOo.txt iconv -f iso8859-1 -t utf-8 image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.conv \ && touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.conv \ && mv -f image_LICENSE_Eclipse.txt.conv image_LICENSE_Eclipse.txt iconv -f iso8859-1 -t utf-8 README-mayavi.txt > README-mayavi.txt.conv \ && touch -c -r README-mayavi.txt README-mayavi.txt.conv \ && mv -f README-mayavi.txt.conv README-mayavi.txt iconv -f iso8859-1 -t utf-8 docs/THANKS.txt > docs/THANKS.txt.conv \ && touch -c -r docs/THANKS.txt docs/THANKS.txt.conv \ && mv -f docs/THANKS.txt.conv docs/THANKS.txt # spurious-executable-perm chmod -x examples/mayavi/mayavi_traits_ui.py examples/mayavi/test.py \ examples/mayavi/nongui.py examples/mayavi/numeric_source.py \ examples/mayavi/glyph.py examples/tvtk/plugins/test.py \ examples/mayavi/compute_in_thread.py examples/mayavi/contour.py \ examples/mayavi/streamline.py examples/mayavi/offscreen.py \ enthought/mayavi/tests/data/cellsnd.ascii.inp %build CFLAGS="$RPM_OPT_FLAGS" python setup.py release build %install rm -rf $RPM_BUILD_ROOT python setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT sed -i 's/\.dev$//g' $RPM_BUILD_ROOT/%{python_sitearch}/%{name}-%{version}-*.egg-info/requires.txt # non-executable-script chmod +x $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/tests/runtests.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/scripts/mayavi2.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/tvtk/setup.py rm $RPM_BUILD_ROOT/%{python_sitearch}/*-nspkg.pth mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/ mv docs/mayavi2.man $RPM_BUILD_ROOT/%{_mandir}/man1/%{name}.1 desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE2} mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/ install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/mayavi2.png install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png # removes .buildinfo files find docs/source/ \( -name \.static -o -name \.templates \) \ -type d -print | xargs rm -rf - %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files %defattr(-,root,root,-) %doc *.txt docs/*.txt examples/ docs/pdf/*.pdf %doc docs/pdf/*/*.pdf docs/source %{_bindir}/mayavi2 %{_bindir}/tvtk_doc %{python_sitearch}/enthought/* %{python_sitearch}/*.egg-info %{_mandir}/man1/%{name}.1.gz %{_datadir}/applications/%{name}.desktop %{_datadir}/applications/tvtk_doc.desktop %{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png %{_datadir}/icons/hicolor/48x48/apps/mayavi2.png %changelog * Fri Jun 26 2009 Rakesh Pandit 3.2.0-6 - Fixed BR, and removed .template & .static directories from docs/source - Included missing icon from .desktop * Fri Jun 26 2009 Rakesh Pandit 3.2.0-5 - Using mayavi2-48x48.png has icons for both .desktop files - Added Categories to .desktop files * Thu Jun 25 2009 Rakesh Pandit 3.2.0-4 - Removed wrong scriplets and corrected 'commets' in - tvtk_doc.desktop file. * Wed Jun 24 2009 Rakesh Pandit 3.2.0-3 - Fixed license issue and group tag - Added a .desktop file * Mon Jun 15 2009 Rakesh Pandit 3.2.0-3 - included man page, adjusted description, removed useless BR's, - fixed owned directory issue, cleaned up spec * Fri Jun 12 2009 Rakesh Pandit 3.2.0-2 - Saving timestamp, and fixed indentation * Fri Jun 12 2009 Rakesh Pandit 3.2.0-1 - Updated * Wed Jun 10 2009 Rakesh Pandit 3.1.0-3 - Changed name to Mayavi * Tue Jan 27 2009 Rakesh Pandit 3.1.0-2 - Fixed description. * Tue Jan 27 2009 Rakesh Pandit 3.1.0-1 - Initial package --- NEW FILE import.log --- Mayavi-3_2_0-6_fc11:HEAD:Mayavi-3.2.0-6.fc11.src.rpm:1246430057 --- NEW FILE tvtk_doc.desktop --- [Desktop Entry] Name=Mayavi Comment=TVTK Documentation GenericName=TVTK Documentation Exec=tvtk_doc %U StartupNotify=true Terminal=false Type=Application Icon=tvtk_doc Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 27 Jun 2009 00:35:24 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:32:02 -0000 1.2 @@ -0,0 +1 @@ +Mayavi-3.2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 27 Jun 2009 00:35:24 -0000 1.1 +++ sources 1 Jul 2009 06:32:03 -0000 1.2 @@ -0,0 +1 @@ +efd2de257e517de54f7697526de9a04c Mayavi-3.2.0.tar.gz From rakesh at fedoraproject.org Wed Jul 1 06:32:19 2009 From: rakesh at fedoraproject.org (Rakesh Pandit) Date: Wed, 1 Jul 2009 06:32:19 +0000 (UTC) Subject: rpms/Mayavi/F-11 Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch, NONE, 1.1 Mayavi.desktop, NONE, 1.1 Mayavi.spec, NONE, 1.1 import.log, NONE, 1.1 tvtk_doc.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701063219.9FE8C11C02C3@cvs1.fedora.phx.redhat.com> Author: rakesh Update of /cvs/pkgs/rpms/Mayavi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32380/F-11 Modified Files: .cvsignore sources Added Files: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch Mayavi.desktop Mayavi.spec import.log tvtk_doc.desktop Log Message: Initial import. Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch: --- NEW FILE Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch --- --- Mayavi-3.1.0.org/enthought/tvtk/code_gen.py 2009-06-10 16:40:04.124136294 +0530 +++ Mayavi-3.1.0/enthought/tvtk/code_gen.py 2009-06-11 17:01:04.970576741 +0530 @@ -157,6 +157,8 @@ z.write(x, 'tvtk_classes/%s'%fname) z.writepy('tvtk_classes') z.close() + if os.path.exists(cwd + "/" + self.zip_name): + os.unlink(cwd + "/" + self.zip_name) shutil.move(self.zip_name, cwd) os.chdir(cwd) --- NEW FILE Mayavi.desktop --- [Desktop Entry] Name=Mayavi Comment=Scientific data 3-dimensional visualizer GenericName=Scientific data 3-dimensional visualizer Exec=mayavi2 %U StartupNotify=true Terminal=false Type=Application Icon=mayavi2 Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; --- NEW FILE Mayavi.spec --- # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: Mayavi Version: 3.2.0 Release: 6%{?dist} Summary: Scientific data 3-dimensional visualizer Group: Applications/Engineering License: BSD and EPL and LGPLv2+ and LGPLv3+ URL: http://pypi.python.org/pypi/Mayavi/ Source0: http://www.enthought.com/repo/ETS/%{name}-%{version}.tar.gz Source1: Mayavi.desktop Source2: tvtk_doc.desktop # Removes already generated tvtk class zip file # https://svn.enthought.com/enthought/ticket/1817 Patch0: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools, python-setupdocs, python-sphinx BuildRequires: vtk-python, desktop-file-utils %if 0%{?fedora} >= 11 BuildRequires: numpy-f2py %else BuildRequires: numpy %endif Requires: numpy, vtk-python Requires: wxPython Requires: python-AppTools Requires: python-EnthoughtBase Requires: python-EnvisageCore Requires: python-EnvisagePlugins Requires: python-Traits >= 3.1.0 Requires: python-TraitsGUI Requires: python-TraitsBackendQt >= 3.1.0 %description The Mayavi project includes two related packages for 3-dimensional visualization: * Mayavi2: A tool for easy and interactive visualization of data. * TVTK: A Traits-based wrapper for the Visualization Toolkit, a popular open-source visualization library. These operate at different levels of abstraction. TVTK manipulates visualization objects, while Mayavi2 lets you operate on your data, and then see the results. Most users either use the Mayavi user interface or program to its scripting interface; you probably don't need to interact with TVTK unless you want to create a new Mayavi module. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b enthought_tvtk_code_gen_py rm -rf Mayavi.egg-info # removes .buildinfo files find enthought/mayavi/html/ enthought/tvtk/html/ -name \.buildinfo \ -type f -print | xargs rm -f - # Fixed license naming sed 's/icon_/image_/g' image_LICENSE.txt > image_LICENSE.txt.fixed touch -c -r image_LICENSE.txt image_LICENSE.txt.fixed mv -f image_LICENSE.txt.fixed image_LICENSE.txt # wrong-file-end-of-line-encoding sed 's/\r//' examples/mayavi/wx_mayavi_embed_in_notebook.py > \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed touch -c -r examples/mayavi/wx_mayavi_embed_in_notebook.py \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed mv -f examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed \ examples/mayavi/wx_mayavi_embed_in_notebook.py sed 's/\r//' examples/mayavi/data/room_vis.wrl > \ examples/mayavi/data/room_vis.wrl.fixed touch -c -r examples/mayavi/data/room_vis.wrl \ examples/mayavi/data/room_vis.wrl.fixed mv -f examples/mayavi/data/room_vis.wrl.fixed \ examples/mayavi/data/room_vis.wrl sed 's/\r//' examples/tvtk/dscene.py > examples/tvtk/dscene.py.fixed touch -c -r examples/tvtk/dscene.py examples/tvtk/dscene.py.fixed mv -f examples/tvtk/dscene.py.fixed examples/tvtk/dscene.py sed 's/\r//' image_LICENSE_Nuvola.txt > image_LICENSE_Nuvola.txt.fixed touch -c -r image_LICENSE_Nuvola.txt image_LICENSE_Nuvola.txt.fixed mv -f image_LICENSE_Nuvola.txt.fixed image_LICENSE_Nuvola.txt sed 's/\r//' image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.fixed touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.fixed mv -f image_LICENSE_OOo.txt.fixed image_LICENSE_OOo.txt sed 's/\r//' image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.fixed touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.fixed mv -f image_LICENSE_Eclipse.txt.fixed image_LICENSE_Eclipse.txt # file-not-utf8 iconv -f iso8859-1 -t utf-8 image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.conv \ && touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.conv \ && mv -f image_LICENSE_OOo.txt.conv image_LICENSE_OOo.txt iconv -f iso8859-1 -t utf-8 image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.conv \ && touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.conv \ && mv -f image_LICENSE_Eclipse.txt.conv image_LICENSE_Eclipse.txt iconv -f iso8859-1 -t utf-8 README-mayavi.txt > README-mayavi.txt.conv \ && touch -c -r README-mayavi.txt README-mayavi.txt.conv \ && mv -f README-mayavi.txt.conv README-mayavi.txt iconv -f iso8859-1 -t utf-8 docs/THANKS.txt > docs/THANKS.txt.conv \ && touch -c -r docs/THANKS.txt docs/THANKS.txt.conv \ && mv -f docs/THANKS.txt.conv docs/THANKS.txt # spurious-executable-perm chmod -x examples/mayavi/mayavi_traits_ui.py examples/mayavi/test.py \ examples/mayavi/nongui.py examples/mayavi/numeric_source.py \ examples/mayavi/glyph.py examples/tvtk/plugins/test.py \ examples/mayavi/compute_in_thread.py examples/mayavi/contour.py \ examples/mayavi/streamline.py examples/mayavi/offscreen.py \ enthought/mayavi/tests/data/cellsnd.ascii.inp %build CFLAGS="$RPM_OPT_FLAGS" python setup.py release build %install rm -rf $RPM_BUILD_ROOT python setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT sed -i 's/\.dev$//g' $RPM_BUILD_ROOT/%{python_sitearch}/%{name}-%{version}-*.egg-info/requires.txt # non-executable-script chmod +x $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/tests/runtests.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/scripts/mayavi2.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/tvtk/setup.py rm $RPM_BUILD_ROOT/%{python_sitearch}/*-nspkg.pth mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/ mv docs/mayavi2.man $RPM_BUILD_ROOT/%{_mandir}/man1/%{name}.1 desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE2} mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/ install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/mayavi2.png install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png # removes .buildinfo files find docs/source/ \( -name \.static -o -name \.templates \) \ -type d -print | xargs rm -rf - %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files %defattr(-,root,root,-) %doc *.txt docs/*.txt examples/ docs/pdf/*.pdf %doc docs/pdf/*/*.pdf docs/source %{_bindir}/mayavi2 %{_bindir}/tvtk_doc %{python_sitearch}/enthought/* %{python_sitearch}/*.egg-info %{_mandir}/man1/%{name}.1.gz %{_datadir}/applications/%{name}.desktop %{_datadir}/applications/tvtk_doc.desktop %{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png %{_datadir}/icons/hicolor/48x48/apps/mayavi2.png %changelog * Fri Jun 26 2009 Rakesh Pandit 3.2.0-6 - Fixed BR, and removed .template & .static directories from docs/source - Included missing icon from .desktop * Fri Jun 26 2009 Rakesh Pandit 3.2.0-5 - Using mayavi2-48x48.png has icons for both .desktop files - Added Categories to .desktop files * Thu Jun 25 2009 Rakesh Pandit 3.2.0-4 - Removed wrong scriplets and corrected 'commets' in - tvtk_doc.desktop file. * Wed Jun 24 2009 Rakesh Pandit 3.2.0-3 - Fixed license issue and group tag - Added a .desktop file * Mon Jun 15 2009 Rakesh Pandit 3.2.0-3 - included man page, adjusted description, removed useless BR's, - fixed owned directory issue, cleaned up spec * Fri Jun 12 2009 Rakesh Pandit 3.2.0-2 - Saving timestamp, and fixed indentation * Fri Jun 12 2009 Rakesh Pandit 3.2.0-1 - Updated * Wed Jun 10 2009 Rakesh Pandit 3.1.0-3 - Changed name to Mayavi * Tue Jan 27 2009 Rakesh Pandit 3.1.0-2 - Fixed description. * Tue Jan 27 2009 Rakesh Pandit 3.1.0-1 - Initial package --- NEW FILE import.log --- Mayavi-3_2_0-6_fc11:F-11:Mayavi-3.2.0-6.fc11.src.rpm:1246430044 --- NEW FILE tvtk_doc.desktop --- [Desktop Entry] Name=Mayavi Comment=TVTK Documentation GenericName=TVTK Documentation Exec=tvtk_doc %U StartupNotify=true Terminal=false Type=Application Icon=tvtk_doc Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 27 Jun 2009 00:35:24 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:32:18 -0000 1.2 @@ -0,0 +1 @@ +Mayavi-3.2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 27 Jun 2009 00:35:24 -0000 1.1 +++ sources 1 Jul 2009 06:32:19 -0000 1.2 @@ -0,0 +1 @@ +efd2de257e517de54f7697526de9a04c Mayavi-3.2.0.tar.gz From cchance at fedoraproject.org Wed Jul 1 06:32:18 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 1 Jul 2009 06:32:18 +0000 (UTC) Subject: rpms/ibus-table/devel ibus-table.spec,1.17,1.18 Message-ID: <20090701063218.31ECF11C02C3@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32478 Modified Files: ibus-table.spec Log Message: - Updated source from upstream, which released for IBus 1.2 and so on. Index: ibus-table.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table/devel/ibus-table.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ibus-table.spec 27 May 2009 05:28:52 -0000 1.17 +++ ibus-table.spec 1 Jul 2009 06:31:47 -0000 1.18 @@ -1,15 +1,17 @@ Name: ibus-table -Version: 1.1.0.20090527 +Version: 1.2.0.20090625 Release: 1%{?dist} Summary: The Table engine for IBus platform License: LGPLv2+ Group: System Environment/Libraries URL: http://code.google.com/p/ibus/ Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz + +Requires: ibus > 1.2.0 +BuildRequires: ibus-devel > 1.2.0 + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: ibus-devel > 1.1.0 -Requires: ibus > 1.1.0 %description The package contains general Table engine for IBus platform. @@ -65,7 +67,7 @@ ibus-table-createdb -i -n %{_datadir}/ib %{_datadir}/%{name}/icons/py-mode.svg %{_datadir}/%{name}/icons/tab-mode.svg %{_datadir}/%{name}/icons/chinese.svg -%{_datadir}/%{name}/icons/dcommit.svg +%{_datadir}/%{name}/icons/acommit.svg %{_datadir}/%{name}/icons/english.svg %{_datadir}/%{name}/icons/ncommit.svg %{_datadir}/%{name}/data/pinyin_table.txt.bz2 @@ -104,6 +106,9 @@ ibus-table-createdb -i -n %{_datadir}/ib %{_datadir}/%{name}/icons/latex.svg %changelog +* Wed Jul 01 2009 Caius 'kaio' Chance - 1.2.0.20090625-1.fc12 +- Updated source from upstream, which released for IBus 1.2 and so on. + * Wed May 27 2009 Caius 'kaio' Chance - 1.1.0.20090527-1.fc12 - Updated source from upstream, which with candidate order fix. From rakesh at fedoraproject.org Wed Jul 1 06:33:09 2009 From: rakesh at fedoraproject.org (Rakesh Pandit) Date: Wed, 1 Jul 2009 06:33:09 +0000 (UTC) Subject: rpms/Mayavi/F-10 Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch, NONE, 1.1 Mayavi.desktop, NONE, 1.1 Mayavi.spec, NONE, 1.1 import.log, NONE, 1.1 tvtk_doc.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701063309.9436111C02C3@cvs1.fedora.phx.redhat.com> Author: rakesh Update of /cvs/pkgs/rpms/Mayavi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32361/F-10 Modified Files: .cvsignore sources Added Files: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch Mayavi.desktop Mayavi.spec import.log tvtk_doc.desktop Log Message: Initial import Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch: --- NEW FILE Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch --- --- Mayavi-3.1.0.org/enthought/tvtk/code_gen.py 2009-06-10 16:40:04.124136294 +0530 +++ Mayavi-3.1.0/enthought/tvtk/code_gen.py 2009-06-11 17:01:04.970576741 +0530 @@ -157,6 +157,8 @@ z.write(x, 'tvtk_classes/%s'%fname) z.writepy('tvtk_classes') z.close() + if os.path.exists(cwd + "/" + self.zip_name): + os.unlink(cwd + "/" + self.zip_name) shutil.move(self.zip_name, cwd) os.chdir(cwd) --- NEW FILE Mayavi.desktop --- [Desktop Entry] Name=Mayavi Comment=Scientific data 3-dimensional visualizer GenericName=Scientific data 3-dimensional visualizer Exec=mayavi2 %U StartupNotify=true Terminal=false Type=Application Icon=mayavi2 Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; --- NEW FILE Mayavi.spec --- # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: Mayavi Version: 3.2.0 Release: 6%{?dist} Summary: Scientific data 3-dimensional visualizer Group: Applications/Engineering License: BSD and EPL and LGPLv2+ and LGPLv3+ URL: http://pypi.python.org/pypi/Mayavi/ Source0: http://www.enthought.com/repo/ETS/%{name}-%{version}.tar.gz Source1: Mayavi.desktop Source2: tvtk_doc.desktop # Removes already generated tvtk class zip file # https://svn.enthought.com/enthought/ticket/1817 Patch0: Mayavi-3.1.0-enthought_tvtk_code_gen_py.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools, python-setupdocs, python-sphinx BuildRequires: vtk-python, desktop-file-utils %if 0%{?fedora} >= 11 BuildRequires: numpy-f2py %else BuildRequires: numpy %endif Requires: numpy, vtk-python Requires: wxPython Requires: python-AppTools Requires: python-EnthoughtBase Requires: python-EnvisageCore Requires: python-EnvisagePlugins Requires: python-Traits >= 3.1.0 Requires: python-TraitsGUI Requires: python-TraitsBackendQt >= 3.1.0 %description The Mayavi project includes two related packages for 3-dimensional visualization: * Mayavi2: A tool for easy and interactive visualization of data. * TVTK: A Traits-based wrapper for the Visualization Toolkit, a popular open-source visualization library. These operate at different levels of abstraction. TVTK manipulates visualization objects, while Mayavi2 lets you operate on your data, and then see the results. Most users either use the Mayavi user interface or program to its scripting interface; you probably don't need to interact with TVTK unless you want to create a new Mayavi module. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b enthought_tvtk_code_gen_py rm -rf Mayavi.egg-info # removes .buildinfo files find enthought/mayavi/html/ enthought/tvtk/html/ -name \.buildinfo \ -type f -print | xargs rm -f - # Fixed license naming sed 's/icon_/image_/g' image_LICENSE.txt > image_LICENSE.txt.fixed touch -c -r image_LICENSE.txt image_LICENSE.txt.fixed mv -f image_LICENSE.txt.fixed image_LICENSE.txt # wrong-file-end-of-line-encoding sed 's/\r//' examples/mayavi/wx_mayavi_embed_in_notebook.py > \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed touch -c -r examples/mayavi/wx_mayavi_embed_in_notebook.py \ examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed mv -f examples/mayavi/wx_mayavi_embed_in_notebook.py.fixed \ examples/mayavi/wx_mayavi_embed_in_notebook.py sed 's/\r//' examples/mayavi/data/room_vis.wrl > \ examples/mayavi/data/room_vis.wrl.fixed touch -c -r examples/mayavi/data/room_vis.wrl \ examples/mayavi/data/room_vis.wrl.fixed mv -f examples/mayavi/data/room_vis.wrl.fixed \ examples/mayavi/data/room_vis.wrl sed 's/\r//' examples/tvtk/dscene.py > examples/tvtk/dscene.py.fixed touch -c -r examples/tvtk/dscene.py examples/tvtk/dscene.py.fixed mv -f examples/tvtk/dscene.py.fixed examples/tvtk/dscene.py sed 's/\r//' image_LICENSE_Nuvola.txt > image_LICENSE_Nuvola.txt.fixed touch -c -r image_LICENSE_Nuvola.txt image_LICENSE_Nuvola.txt.fixed mv -f image_LICENSE_Nuvola.txt.fixed image_LICENSE_Nuvola.txt sed 's/\r//' image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.fixed touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.fixed mv -f image_LICENSE_OOo.txt.fixed image_LICENSE_OOo.txt sed 's/\r//' image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.fixed touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.fixed mv -f image_LICENSE_Eclipse.txt.fixed image_LICENSE_Eclipse.txt # file-not-utf8 iconv -f iso8859-1 -t utf-8 image_LICENSE_OOo.txt > image_LICENSE_OOo.txt.conv \ && touch -c -r image_LICENSE_OOo.txt image_LICENSE_OOo.txt.conv \ && mv -f image_LICENSE_OOo.txt.conv image_LICENSE_OOo.txt iconv -f iso8859-1 -t utf-8 image_LICENSE_Eclipse.txt > image_LICENSE_Eclipse.txt.conv \ && touch -c -r image_LICENSE_Eclipse.txt image_LICENSE_Eclipse.txt.conv \ && mv -f image_LICENSE_Eclipse.txt.conv image_LICENSE_Eclipse.txt iconv -f iso8859-1 -t utf-8 README-mayavi.txt > README-mayavi.txt.conv \ && touch -c -r README-mayavi.txt README-mayavi.txt.conv \ && mv -f README-mayavi.txt.conv README-mayavi.txt iconv -f iso8859-1 -t utf-8 docs/THANKS.txt > docs/THANKS.txt.conv \ && touch -c -r docs/THANKS.txt docs/THANKS.txt.conv \ && mv -f docs/THANKS.txt.conv docs/THANKS.txt # spurious-executable-perm chmod -x examples/mayavi/mayavi_traits_ui.py examples/mayavi/test.py \ examples/mayavi/nongui.py examples/mayavi/numeric_source.py \ examples/mayavi/glyph.py examples/tvtk/plugins/test.py \ examples/mayavi/compute_in_thread.py examples/mayavi/contour.py \ examples/mayavi/streamline.py examples/mayavi/offscreen.py \ enthought/mayavi/tests/data/cellsnd.ascii.inp %build CFLAGS="$RPM_OPT_FLAGS" python setup.py release build %install rm -rf $RPM_BUILD_ROOT python setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT sed -i 's/\.dev$//g' $RPM_BUILD_ROOT/%{python_sitearch}/%{name}-%{version}-*.egg-info/requires.txt # non-executable-script chmod +x $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/tests/runtests.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/mayavi/scripts/mayavi2.py \ $RPM_BUILD_ROOT/%{python_sitearch}/enthought/tvtk/setup.py rm $RPM_BUILD_ROOT/%{python_sitearch}/*-nspkg.pth mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/ mv docs/mayavi2.man $RPM_BUILD_ROOT/%{_mandir}/man1/%{name}.1 desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE2} mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/ install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/mayavi2.png install -p -m 644 ./docs/source/mayavi/images/mayavi2-48x48.png \ $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png # removes .buildinfo files find docs/source/ \( -name \.static -o -name \.templates \) \ -type d -print | xargs rm -rf - %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files %defattr(-,root,root,-) %doc *.txt docs/*.txt examples/ docs/pdf/*.pdf %doc docs/pdf/*/*.pdf docs/source %{_bindir}/mayavi2 %{_bindir}/tvtk_doc %{python_sitearch}/enthought/* %{python_sitearch}/*.egg-info %{_mandir}/man1/%{name}.1.gz %{_datadir}/applications/%{name}.desktop %{_datadir}/applications/tvtk_doc.desktop %{_datadir}/icons/hicolor/48x48/apps/tvtk_doc.png %{_datadir}/icons/hicolor/48x48/apps/mayavi2.png %changelog * Fri Jun 26 2009 Rakesh Pandit 3.2.0-6 - Fixed BR, and removed .template & .static directories from docs/source - Included missing icon from .desktop * Fri Jun 26 2009 Rakesh Pandit 3.2.0-5 - Using mayavi2-48x48.png has icons for both .desktop files - Added Categories to .desktop files * Thu Jun 25 2009 Rakesh Pandit 3.2.0-4 - Removed wrong scriplets and corrected 'commets' in - tvtk_doc.desktop file. * Wed Jun 24 2009 Rakesh Pandit 3.2.0-3 - Fixed license issue and group tag - Added a .desktop file * Mon Jun 15 2009 Rakesh Pandit 3.2.0-3 - included man page, adjusted description, removed useless BR's, - fixed owned directory issue, cleaned up spec * Fri Jun 12 2009 Rakesh Pandit 3.2.0-2 - Saving timestamp, and fixed indentation * Fri Jun 12 2009 Rakesh Pandit 3.2.0-1 - Updated * Wed Jun 10 2009 Rakesh Pandit 3.1.0-3 - Changed name to Mayavi * Tue Jan 27 2009 Rakesh Pandit 3.1.0-2 - Fixed description. * Tue Jan 27 2009 Rakesh Pandit 3.1.0-1 - Initial package --- NEW FILE import.log --- Mayavi-3_2_0-6_fc11:F-10:Mayavi-3.2.0-6.fc11.src.rpm:1246430021 --- NEW FILE tvtk_doc.desktop --- [Desktop Entry] Name=Mayavi Comment=TVTK Documentation GenericName=TVTK Documentation Exec=tvtk_doc %U StartupNotify=true Terminal=false Type=Application Icon=tvtk_doc Categories=GNOME;Education;3DGraphics;X-Science,X-DataVisualization; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 27 Jun 2009 00:35:24 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:32:38 -0000 1.2 @@ -0,0 +1 @@ +Mayavi-3.2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 27 Jun 2009 00:35:24 -0000 1.1 +++ sources 1 Jul 2009 06:32:39 -0000 1.2 @@ -0,0 +1 @@ +efd2de257e517de54f7697526de9a04c Mayavi-3.2.0.tar.gz From cchance at fedoraproject.org Wed Jul 1 06:40:40 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 1 Jul 2009 06:40:40 +0000 (UTC) Subject: rpms/ibus-table/devel .cvsignore, 1.8, 1.9 ibus-table.spec, 1.18, 1.19 sources, 1.9, 1.10 Message-ID: <20090701064040.E90D411C02C3@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1323 Modified Files: .cvsignore ibus-table.spec sources Log Message: missed upload source tarball: rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 27 May 2009 05:28:52 -0000 1.8 +++ .cvsignore 1 Jul 2009 06:40:10 -0000 1.9 @@ -1 +1 @@ -ibus-table-1.1.0.20090527.tar.gz +ibus-table-1.2.0.20090625.tar.gz Index: ibus-table.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table/devel/ibus-table.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ibus-table.spec 1 Jul 2009 06:31:47 -0000 1.18 +++ ibus-table.spec 1 Jul 2009 06:40:10 -0000 1.19 @@ -1,6 +1,6 @@ Name: ibus-table Version: 1.2.0.20090625 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Table engine for IBus platform License: LGPLv2+ Group: System Environment/Libraries @@ -106,6 +106,9 @@ ibus-table-createdb -i -n %{_datadir}/ib %{_datadir}/%{name}/icons/latex.svg %changelog +* Wed Jul 01 2009 Caius 'kaio' Chance - 1.2.0.20090625-2.fc12 +- Rebuilt. + * Wed Jul 01 2009 Caius 'kaio' Chance - 1.2.0.20090625-1.fc12 - Updated source from upstream, which released for IBus 1.2 and so on. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 27 May 2009 05:28:52 -0000 1.9 +++ sources 1 Jul 2009 06:40:10 -0000 1.10 @@ -1 +1 @@ -84a2cceaf596780269af80c897d5f037 ibus-table-1.1.0.20090527.tar.gz +283207bcc0e110a906e8784d71d49d37 ibus-table-1.2.0.20090625.tar.gz From topdog at fedoraproject.org Wed Jul 1 06:44:48 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 1 Jul 2009 06:44:48 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/F-11 import.log, NONE, 1.1 php-pear-Auth_HTTP.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701064448.6FD5C11C02C3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2388/F-11 Modified Files: .cvsignore sources Added Files: import.log php-pear-Auth_HTTP.spec Log Message: * Wed Jun 1 2009 Andrew Colin Kissa - 2.1.6-2 - Initial CVS commit --- NEW FILE import.log --- php-pear-Auth_HTTP-2_1_6-2_fc11:F-11:php-pear-Auth_HTTP-2.1.6-2.fc11.src.rpm:1246428482 --- NEW FILE php-pear-Auth_HTTP.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name Auth_HTTP Name: php-pear-Auth_HTTP Version: 2.1.6 Release: 2%{?dist} Summary: Class providing HTTP authentication methods Group: Development/Libraries License: PHP URL: http://pear.php.net/package/Auth_HTTP Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 php-pear(Auth) >= 1.2.0 Requires: php-pear(PEAR) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} Requires: php-pear(Auth) >= 1.2.0 %description The PEAR::Auth_HTTP class provides methods for creating an HTTP authentication system using PHP, that is similar to Apache's realm-based .htaccess authentication. %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Auth/HTTP.php %changelog * Mon Jun 29 2009 Andrew Colin Kissa - 2.1.6-2 - Renamed to match upstream * Thu Jun 25 2009 Andrew Colin Kissa - 2.1.6-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:40:23 -0000 1.1 +++ .cvsignore 1 Jul 2009 06:44:17 -0000 1.2 @@ -0,0 +1 @@ +Auth_HTTP-2.1.6.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:40:24 -0000 1.1 +++ sources 1 Jul 2009 06:44:18 -0000 1.2 @@ -0,0 +1 @@ +d5209f0d1f1874e23b44fbfb397a2aa0 Auth_HTTP-2.1.6.tgz From kushal at fedoraproject.org Wed Jul 1 06:47:15 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Wed, 1 Jul 2009 06:47:15 +0000 (UTC) Subject: rpms/lekhonee/F-11 lekhonee.spec,1.4,1.5 sources,1.5,1.6 Message-ID: <20090701064715.85F0711C02C3@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2726 Modified Files: lekhonee.spec sources Log Message: New release of lekhonee Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/lekhonee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lekhonee.spec 17 Jun 2009 14:23:09 -0000 1.4 +++ lekhonee.spec 1 Jul 2009 06:46:45 -0000 1.5 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.4 -Release: 5%{?dist} +Version: 0.5 +Release: 3%{?dist} Summary: A blog client Group: Applications/Internet @@ -13,7 +13,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel, python-setuptools, PyQt4-devel, desktop-file-utils, PyKDE4-devel -Requires: PyQt4, mx, PyKDE4, %{name}-lib +Requires: PyQt4, mx, PyKDE4 +Requires: %{name}-lib = %{version}-%{release} %description A desktop wordpress client @@ -29,6 +30,7 @@ The backend library for wordpress deskto Summary: Wordpress desktop client frontend for Gnome Group: Applications/Internet Requires: gnome-python2-gtkspell pygtksourceview pywebkitgtk %{name}-lib +Requires: %{name}-lib = %{version}-%{release} %description gnome Wordpress desktop client frontend for Gnome @@ -62,11 +64,7 @@ rm -rf $RPM_BUILD_ROOT %files lib %defattr(-,root,root,-) -%{python_sitelib}/Chotha/__init__.py* -%{python_sitelib}/Chotha/BlogServer.py* -%{python_sitelib}/Chotha/Livejournal.py* -%{python_sitelib}/Chotha/ServerFactory.py* -%{python_sitelib}/Chotha/Wordpress.py* +%{python_sitelib}/lekhoneeblog/* %files gnome %defattr(-,root,root,-) @@ -78,10 +76,22 @@ rm -rf $RPM_BUILD_ROOT %files %doc docs/README docs/ChangeLog docs/COPYING %{_bindir}/lekhonee -%{_datadir}/* -%{python_sitelib}/* +%{_datadir}/pixmaps/lekhonee.png +%{_datadir}/pixmaps/chotha/* +%{_datadir}/applications/lekhonee.desktop +%{python_sitelib}/Chotha/* +%{python_sitelib}/*.egg-info %changelog +* Tue Jun 30 2009 Kushal Das 0.5-3 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-2 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-1 +- New release + * Wed Jun 17 2009 Kushal Das 0.4-5 - Fixed more bugs Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jun 2009 14:23:09 -0000 1.5 +++ sources 1 Jul 2009 06:46:45 -0000 1.6 @@ -1 +1 @@ -ff66670611c4ffb5aa9f37f694670711 lekhonee-0.4.tar.gz +07477825df4f50d450f123b90394bbdf lekhonee-0.5.tar.gz From cchance at fedoraproject.org Wed Jul 1 06:53:04 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 1 Jul 2009 06:53:04 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.5,1.6 Message-ID: <20090701065304.0AD7E11C02C3@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3608 Modified Files: ibus-table-cangjie.spec Log Message: rebuilt with ibus-table 1.2 Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibus-table-cangjie.spec 1 Jul 2009 05:21:31 -0000 1.5 +++ ibus-table-cangjie.spec 1 Jul 2009 06:53:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.1.0.20090309 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -11,10 +11,10 @@ Source1: COPYING.tables BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 -Requires(post): ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 -BuildRequires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 +Requires: ibus >= 1.2, ibus-table >= 1.2 +Requires(post): ibus >= 1.2, ibus-table >= 1.2 +BuildRequires: ibus >= 1.2, ibus-table >= 1.2 +BuildRequires: gettext-devel >= 0.17, automake >= 1.10 %description The package contains Cang Jie input methods for Table engine of IBus platform. @@ -64,6 +64,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/quick5.png %changelog +* Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090309-11.fc12 +- Rebuilt with ibus-table 1.2.0. + * Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090309-10.fc12 - Fixed that change into table directory for index creation. - Added owned directories in file section. From mtasaka at fedoraproject.org Wed Jul 1 07:23:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 1 Jul 2009 07:23:56 +0000 (UTC) Subject: rpms/ruby-gnome2/F-10 ruby-gnome2-0.19.0-gtk-missingheader.patch, NONE, 1.1 ruby-gnome2.spec, 1.43, 1.44 Message-ID: <20090701072356.5C92311C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8293 Modified Files: ruby-gnome2.spec Added Files: ruby-gnome2-0.19.0-gtk-missingheader.patch Log Message: * Wed Jul 01 2009 Mamoru Tasaka - 0.19.0-2 - Install more needed header files in ruby-gtk2-devel (bug 509035) - Keep timestamps on installed header files ruby-gnome2-0.19.0-gtk-missingheader.patch: --- NEW FILE ruby-gnome2-0.19.0-gtk-missingheader.patch --- --- ruby-gnome2-all-0.19.0/gtk/src/depend.missing 2009-05-18 21:47:08.000000000 +0900 +++ ruby-gnome2-all-0.19.0/gtk/src/depend 2009-07-01 08:38:42.000000000 +0900 @@ -1,3 +1,6 @@ install: + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdk.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgdkconversions.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtk.h $(sitearchdir)$(target_prefix) @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkconversions.h $(sitearchdir)$(target_prefix) + @$(RUBY) -run -e install -- -m 0644 -v $(srcdir)/rbgtkmacros.h $(sitearchdir)$(target_prefix) Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/F-10/ruby-gnome2.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- ruby-gnome2.spec 17 Jun 2009 19:32:42 -0000 1.43 +++ ruby-gnome2.spec 1 Jul 2009 07:23:55 -0000 1.44 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 1 +%define mainrel 2 # Note # Currently this spec file does not support libgda module. @@ -24,6 +24,7 @@ Source0: http://downloads.sourcef Patch0: ruby-gnome2-0.17.0-rc1-script.patch Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch Patch15: ruby-gnome2-0.19.0-panel-applet.patch +Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby ruby-devel gtk2-devel libgnome-devel libgnomeui-devel @@ -501,6 +502,10 @@ Ruby/VTE is a Ruby binding of VTE. %patch0 -p1 %patch14 -p1 -b .moz %patch15 -p1 -b .panel +%patch16 -p1 -b .missing + +# Keep timestamps as much as possible +find . -type f -name depend | xargs sed -i -e 's|-m 0644 -v|-m 0644 -p -v|' # Fix the attributes of some files # suppress lots of messages.. @@ -630,8 +635,11 @@ rm -rf $RPM_BUILD_ROOT %files -n ruby-gtk2-devel %defattr(-,root,root,-) +%{ruby_sitearch}/rbgdk.h +%{ruby_sitearch}/rbgdkconversions.h %{ruby_sitearch}/rbgtk.h %{ruby_sitearch}/rbgtkconversions.h +%{ruby_sitearch}/rbgtkmacros.h %files -n ruby-gtkglext %defattr(-,root,root,-) @@ -718,6 +726,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Mamoru Tasaka - 0.19.0-2 +- Install more needed header files in ruby-gtk2-devel (bug 509035) +- Keep timestamps on installed header files + * Thu Jun 18 2009 Mamoru Tasaka - 0.19.0-1 - Update to 0.19.0 From jens at fedoraproject.org Wed Jul 1 07:32:09 2009 From: jens at fedoraproject.org (jens) Date: Wed, 1 Jul 2009 07:32:09 +0000 (UTC) Subject: rpms/miredo/F-10 import.log, NONE, 1.1 miredo-client.init, NONE, 1.1 miredo-config-not-exec, NONE, 1.1 miredo-server.init, NONE, 1.1 miredo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701073209.A947511C02C3@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9182/F-10 Modified Files: .cvsignore sources Added Files: import.log miredo-client.init miredo-config-not-exec miredo-server.init miredo.spec Log Message: * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires --- NEW FILE import.log --- miredo-1_1_6-2_fc11:F-10:miredo-1.1.6-2.fc11.src.rpm:1246433303 --- NEW FILE miredo-client.init --- #!/bin/sh # # miredo Teredo IPv6 tunneling client # # chkconfig: - 12 88 # description: miredo is a daemon program providing a Teredo tunnel \ # client compatible with the "Teredo: Tunneling IPv6 over \ # UDP through NATs" Internet proposed standard (RFC \ # 4380). This service implements a Teredo client that \ # allows the local IPv6-enabled host which is located \ # behind an IPv4-only Network Address Translator \ # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP \ # over IPv4 packets. ### BEGIN INIT INFO # Provides: miredo teredo-client # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling client # Description: miredo is a daemon program providing a Teredo tunnel # client compatible with the "Teredo: Tunneling IPv6 over # UDP through NATs" Internet proposed standard (RFC # 4380). This service implements a Teredo client that # allows the local IPv6-enabled host which is located # behind an IPv4-only Network Address Translator # (a.k.a. NAT) to encapsulate its IPv6 traffic inside UDP # over IPv4 packets. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo" prog="miredo" config="/etc/miredo/miredo.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo-config-not-exec --- diff -ru miredo-1.1.6/misc/client-hook.iproute miredo-1.1.6-new/misc/client-hook.iproute --- miredo-1.1.6/misc/client-hook.iproute 2008-12-17 16:14:23.000000000 +0100 +++ miredo-1.1.6-new/misc/client-hook.iproute 2009-06-28 01:24:22.000000000 +0200 @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # # Miredo client hook script for Linux/iproute2 # Copyright ?? 2007 R??mi Denis-Courmont. diff -ru miredo-1.1.6/misc/miredo.conf-in miredo-1.1.6-new/misc/miredo.conf-in --- miredo-1.1.6/misc/miredo.conf-in 2009-04-09 18:31:30.000000000 +0200 +++ miredo-1.1.6-new/misc/miredo.conf-in 2009-06-28 01:24:29.000000000 +0200 @@ -1,4 +1,3 @@ -#! @sbindir@/miredo -f -c # # Sample configuration file for Miredo --- NEW FILE miredo-server.init --- #!/bin/sh # # miredo-server Teredo IPv6 tunneling server # # chkconfig: - 12 88 # description: miredo-server is a daemon program providing a Teredo \ # tunnel server compatible with the "Teredo: Tunneling \ # IPv6 over UDP through NATs" Internet proposed standard \ # (RFC 4380). This service implements a Teredo server \ # that allows Teredo clients to setup their IPv6 \ # connectivity through Teredo. A Teredo server must have \ # two global static subsequent IPv4 addresses. It \ # receives packets from Teredo clients and Teredo relays \ # on UDP port 3544. ### BEGIN INIT INFO # Provides: miredo-server teredo-server # Required-Start: $network # Required-Stop: $network # Default-Start: # Default-Stop: 0 1 6 # Short-Description: Teredo IPv6 tunneling server # Description: miredo-server is a daemon program providing a Teredo # tunnel server compatible with the "Teredo: Tunneling # IPv6 over UDP through NATs" Internet proposed standard # (RFC 4380). This service implements a Teredo server # that allows Teredo clients to setup their IPv6 # connectivity through Teredo. A Teredo server must have # two global static subsequent IPv4 addresses. It # receives packets from Teredo clients and Teredo relays # on UDP port 3544. ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/miredo-server" prog="miredo-server" config="/etc/miredo/miredo-server.conf" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon $exec retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " # stop it here, often "killproc $prog" killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE miredo.spec --- # vim: expandtab Name: miredo Version: 1.1.6 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs Group: Applications/Internet License: GPLv2+ URL: http://www.simphalempin.com/dev/miredo/ Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init %if 0%{?rhel} Source3: isatapd.init %endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcap-devel Judy-devel Requires(pre): shadow-utils Requires(post): chkconfig, /sbin/ldconfig # This is for /sbin/service Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo server. It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. %prep %setup -q %patch0 -p1 %build %configure \ --disable-static \ --disable-rpath \ --with-Judy \ --enable-miredo-user # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} mkdir rpmdocs mv %{buildroot}%{_docdir}/miredo/examples rpmdocs/ mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server %if 0%{?rhel} install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd %endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf %pre getent group miredo >/dev/null || groupadd -r miredo getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ -c "Miredo Daemon" miredo exit 0 %post /sbin/ldconfig /sbin/chkconfig --add miredo-client /sbin/chkconfig --add miredo-server %if 0%{?rhel} /sbin/chkconfig --add isatapd %endif %preun if [ $1 = 0 ] ; then %if 0%{?rhel} /sbin/service isatapd stop >/dev/null 2>&1 %endif /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client /sbin/chkconfig --del miredo-server %if 0%{?rhel} /sbin/chkconfig --del isatapd %endif fi %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then %if 0%{?rhel} /sbin/service isatapd condrestart >/dev/null 2>&1 || : %endif /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* %doc %{_mandir}/man?/miredo* %doc %{_mandir}/man1/teredo-mire* %dir %{_sysconfdir}/miredo %config(noreplace) %{_sysconfdir}/miredo/miredo.conf %config(noreplace) %{_sysconfdir}/miredo/client-hook %ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf %{_sbindir}/miredo %{_sbindir}/miredo-checkconf %{_sbindir}/miredo-server %{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* %{_initrddir}/miredo-client %{_initrddir}/miredo-server %if 0%{?rhel} %{_sbindir}/isatapd %doc %{_mandir}/man5/isatapd.conf* %doc %{_mandir}/man8/isatapd* %{_initrddir}/isatapd %endif %files devel %defattr(-,root,root,-) %{_includedir}/libteredo/ %{_includedir}/libtun6/ %{_libdir}/libteredo.so %{_libdir}/libtun6.so %changelog * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL - miredo-server.conf ghosted - removed .la files instead excluding of them - fixed ldconfig requires * Sat Jun 27 2009 Jens Kuehnel 1.1.6-1 - ReInitiate Fedora package review - update to 1.1.6 - removed isatap stuff - don't start it by default * Sun Oct 05 2008 Charles R. Anderson 1.1.5-1 - Initial Fedora package based on Dries miredo.spec 5059 - Updated to 1.1.5 - disable-static libs - remove hardcoded rpaths - create initscripts for client, server, and isatap daemon - create system user miredo for daemon to setid to Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:39:06 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:31:39 -0000 1.2 @@ -0,0 +1 @@ +miredo-1.1.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:39:06 -0000 1.1 +++ sources 1 Jul 2009 07:31:39 -0000 1.2 @@ -0,0 +1 @@ +bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 From hubbitus at fedoraproject.org Wed Jul 1 07:37:27 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Wed, 1 Jul 2009 07:37:27 +0000 (UTC) Subject: rpms/php-pecl-parsekit/devel import.log, NONE, 1.1 php-pecl-parsekit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701073727.EC8BE11C02C3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-parsekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9994/devel Modified Files: .cvsignore sources Added Files: import.log php-pecl-parsekit.spec Log Message: Initial import php-pecl-parsekit into Fedora. --- NEW FILE import.log --- php-pecl-parsekit-1_2-3_CVS20090309_fc9:HEAD:php-pecl-parsekit-1.2-3.CVS20090309.fc9.src.rpm:1246433629 --- NEW FILE php-pecl-parsekit.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} %global CVS 20090309 %global peclName parsekit Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 Release: 3%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} # cvs -d :pserver:cvsread at cvs.php.net/repository export -D 2009-03-09 pecl/parsekit ; tar cjf parsekit-1.2-CVS20090309.tar.bz2 -C pecl parsekit Source0: %{peclName}-%{version}-CVS%{CVS}.tar.bz2 %else Source0: http://pecl.php.net/get/%{peclName}-%{version}.tgz %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://pecl.php.net/package/%peclName BuildRequires: php-pear >= 1.4.7 php-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif Provides: php-pecl(%peclName) = %{version} Requires(post): %{__pecl} Requires(postun): %{__pecl} %description Provides a userspace interpretation of the opcodes generated by the Zend engine compiler built into PHP. This extension is meant for development and debug purposes only and contains some code which is potentially non-threadsafe. %prep #%setup -qc -n %peclName-%{version} %setup -qc %build cd %peclName phpize %{configure} --with-%peclName %{__make} %install cd %peclName rm -rf %{buildroot} %{__make} install \ INSTALL_ROOT=%{buildroot} # Install XML package description install -m 0755 -d %{buildroot}%{pecl_xmldir} install -m 0664 package.xml %{buildroot}%{pecl_xmldir}/%peclName.xml install -d %{buildroot}%{_sysconfdir}/php.d/ cat <<'EOF' > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/%peclName.ini ; Enable %{peclName} extension module extension=%{peclName}.so EOF %post %if 0%{?pecl_install:1} %{pecl_install} %{pecl_xmldir}/%{peclName}.xml >/dev/null || : %endif %postun %if 0%{?pecl_uninstall:1} if [ $1 -eq 0 ] ; then %{pecl_uninstall} %{peclName} >/dev/null || : fi %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %peclName/examples/{compile_file.php,compile_string.php,compile_string_show_errors.php} %peclName/README %{php_extdir}/%peclName.so %{pecl_xmldir}/%peclName.xml %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog * Tue Jun 30 2009 Pavel Alexeev - 1.2-3.CVS20090309 - Most of changes inspired by continue Fedora review by Jason Tibbitts. - Prefer %%global over %%define - Source0 is not URL now for CVS build. - "PECL" prefix removed from summary. - Add %%release part into BuildRoot tag. - Add more magic into Release define and fit it into one line.OD * Mon Mar 9 2009 Pavel Alexeev - 1.2-2.CVS20090309 - php-pecl-parsekit.Hu.spec renamed to normal php-pecl-parsekit.spec - In Version changhes: As it is post release enumereate it after 0. Remove Hu-part. - New CVS checkout 20090309 - Add php_apiver and __pecl macroses define. Remove peardir. - Remove define macros xmldir and replace it by common pecl_xmldir - Add comment of command how to get source. - Add patch Patch2: php-pecl-parsekit-1.2.APIstatic.patch to allow build on recent versions. - Fix several inconsistent macros usages. - Add standard Requires/provides of php-api, abi, zend abi, php-pecl(%%peclName) = %%{version}... - Delete pathces, which is not needed anymore in ew checkout. - Remove Obsoletes: php-pear-%%peclName - Add Requires(post): %%{__pecl} and Requires(postun): %%{__pecl} - Rpmlint warnings: o Mixed spaces turned to tabs. o Descrioption line too long: splited. o License from "PHP License" changed to just PHP o script-without-shebang /usr/share/pear/.pkgxml/parsekit.xml: chmod to 0664 * Tue May 13 2008 Pavel Alexeev - 1.2-0.CVS20080513.Hu.0 - Initial spec (copy of php-pecl-imagick.Hu.spec) - Add (import from runkit spec-file) CVS-build support - Add patches: Patch0: php-pecl-parsekit-php51.patch (http://www.mail-archive.com/pld-cvs-commit at lists.pld-linux.org/msg28512.html) Patch1: php-pecl-parsekit-1.2-PHP5.3.0.patch (self) - Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:19 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:36:57 -0000 1.2 @@ -0,0 +1 @@ +parsekit-1.2-CVS20090309.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:19 -0000 1.1 +++ sources 1 Jul 2009 07:36:57 -0000 1.2 @@ -0,0 +1 @@ +b41fd87e70aeda02f4fc80126326ada3 parsekit-1.2-CVS20090309.tar.bz2 From caolanm at fedoraproject.org Wed Jul 1 07:39:51 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 1 Jul 2009 07:39:51 +0000 (UTC) Subject: rpms/hunspell-et/devel hunspell-et.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701073951.5649811C02C3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-et/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10575/devel Modified Files: .cvsignore sources Added Files: hunspell-et.spec import.log Log Message: --- NEW FILE hunspell-et.spec --- Name: hunspell-et Summary: Estonian hunspell dictionaries %define upstreamid 20030606 Version: 0.%{upstreamid} Release: 4%{?dist} Source: http://www.meso.ee/~jjpp/speller/ispell-et_%{upstreamid}.tar.gz Group: Applications/Text URL: http://www.meso.ee/~jjpp/speller/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: LGPLv2+ and LPPL BuildArch: noarch Requires: hunspell Provides: hunspell-ee = 0.20030606-4 Obsoletes: hunspell-ee < 0.20030606-4 %description Estonian hunspell dictionaries. %package -n hyphen-et Requires: hyphen Summary: Estonian hyphenation rules Group: Applications/Text %description -n hyphen-et Estonian hyphenation rules. %prep %setup -q -n ispell-et-%{upstreamid} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell cp -p latin-1/et_EE.* $RPM_BUILD_ROOT/%{_datadir}/myspell mkdir -p $RPM_BUILD_ROOT/%{_datadir}/hyphen cp -p hyph_et.dic $RPM_BUILD_ROOT/%{_datadir}/hyphen/hyph_et_EE.dic %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYRIGHT %{_datadir}/myspell/* %files -n hyphen-et %defattr(-,root,root,-) %doc README COPYRIGHT %{_datadir}/hyphen/* %changelog * Tue Jun 30 2009 Caolan McNamara - 0.20030606-4 - erroneously imported as hunspell-ee, rename as hunspell-et * Tue Feb 24 2009 Fedora Release Engineering - 0.20030606-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Nov 23 2007 Caolan McNamara - 0.20030606-2 - package hyphenation rules * Fri Nov 23 2007 Caolan McNamara - 0.20030606-1 - canonical upstream tarball * Thu Aug 09 2007 Caolan McNamara - 0.20030602-2 - clarify license * Thu Dec 07 2006 Caolan McNamara - 0.20030602-1 - initial version --- NEW FILE import.log --- hunspell-et-0_20030606-4_fc11:HEAD:hunspell-et-0.20030606-4.fc11.src.rpm:1246433970 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-et/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:38:25 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:39:51 -0000 1.2 @@ -0,0 +1 @@ +ispell-et_20030606.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-et/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:38:25 -0000 1.1 +++ sources 1 Jul 2009 07:39:51 -0000 1.2 @@ -0,0 +1 @@ +00c2351eed7a54c1fb2e3a529a960121 ispell-et_20030606.tar.gz From hubbitus at fedoraproject.org Wed Jul 1 07:40:27 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Wed, 1 Jul 2009 07:40:27 +0000 (UTC) Subject: rpms/php-pecl-parsekit/F-10 import.log, NONE, 1.1 php-pecl-parsekit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701074027.7CF8811C02C3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-parsekit/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10454/F-10 Modified Files: .cvsignore sources Added Files: import.log php-pecl-parsekit.spec Log Message: Initial import php-pecl-parsekit into Fedora. --- NEW FILE import.log --- php-pecl-parsekit-1_2-3_CVS20090309_fc9:F-10:php-pecl-parsekit-1.2-3.CVS20090309.fc9.src.rpm:1246433926 --- NEW FILE php-pecl-parsekit.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} %global CVS 20090309 %global peclName parsekit Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 Release: 3%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} # cvs -d :pserver:cvsread at cvs.php.net/repository export -D 2009-03-09 pecl/parsekit ; tar cjf parsekit-1.2-CVS20090309.tar.bz2 -C pecl parsekit Source0: %{peclName}-%{version}-CVS%{CVS}.tar.bz2 %else Source0: http://pecl.php.net/get/%{peclName}-%{version}.tgz %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://pecl.php.net/package/%peclName BuildRequires: php-pear >= 1.4.7 php-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif Provides: php-pecl(%peclName) = %{version} Requires(post): %{__pecl} Requires(postun): %{__pecl} %description Provides a userspace interpretation of the opcodes generated by the Zend engine compiler built into PHP. This extension is meant for development and debug purposes only and contains some code which is potentially non-threadsafe. %prep #%setup -qc -n %peclName-%{version} %setup -qc %build cd %peclName phpize %{configure} --with-%peclName %{__make} %install cd %peclName rm -rf %{buildroot} %{__make} install \ INSTALL_ROOT=%{buildroot} # Install XML package description install -m 0755 -d %{buildroot}%{pecl_xmldir} install -m 0664 package.xml %{buildroot}%{pecl_xmldir}/%peclName.xml install -d %{buildroot}%{_sysconfdir}/php.d/ cat <<'EOF' > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/%peclName.ini ; Enable %{peclName} extension module extension=%{peclName}.so EOF %post %if 0%{?pecl_install:1} %{pecl_install} %{pecl_xmldir}/%{peclName}.xml >/dev/null || : %endif %postun %if 0%{?pecl_uninstall:1} if [ $1 -eq 0 ] ; then %{pecl_uninstall} %{peclName} >/dev/null || : fi %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %peclName/examples/{compile_file.php,compile_string.php,compile_string_show_errors.php} %peclName/README %{php_extdir}/%peclName.so %{pecl_xmldir}/%peclName.xml %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog * Tue Jun 30 2009 Pavel Alexeev - 1.2-3.CVS20090309 - Most of changes inspired by continue Fedora review by Jason Tibbitts. - Prefer %%global over %%define - Source0 is not URL now for CVS build. - "PECL" prefix removed from summary. - Add %%release part into BuildRoot tag. - Add more magic into Release define and fit it into one line.OD * Mon Mar 9 2009 Pavel Alexeev - 1.2-2.CVS20090309 - php-pecl-parsekit.Hu.spec renamed to normal php-pecl-parsekit.spec - In Version changhes: As it is post release enumereate it after 0. Remove Hu-part. - New CVS checkout 20090309 - Add php_apiver and __pecl macroses define. Remove peardir. - Remove define macros xmldir and replace it by common pecl_xmldir - Add comment of command how to get source. - Add patch Patch2: php-pecl-parsekit-1.2.APIstatic.patch to allow build on recent versions. - Fix several inconsistent macros usages. - Add standard Requires/provides of php-api, abi, zend abi, php-pecl(%%peclName) = %%{version}... - Delete pathces, which is not needed anymore in ew checkout. - Remove Obsoletes: php-pear-%%peclName - Add Requires(post): %%{__pecl} and Requires(postun): %%{__pecl} - Rpmlint warnings: o Mixed spaces turned to tabs. o Descrioption line too long: splited. o License from "PHP License" changed to just PHP o script-without-shebang /usr/share/pear/.pkgxml/parsekit.xml: chmod to 0664 * Tue May 13 2008 Pavel Alexeev - 1.2-0.CVS20080513.Hu.0 - Initial spec (copy of php-pecl-imagick.Hu.spec) - Add (import from runkit spec-file) CVS-build support - Add patches: Patch0: php-pecl-parsekit-php51.patch (http://www.mail-archive.com/pld-cvs-commit at lists.pld-linux.org/msg28512.html) Patch1: php-pecl-parsekit-1.2-PHP5.3.0.patch (self) - Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:19 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:39:57 -0000 1.2 @@ -0,0 +1 @@ +parsekit-1.2-CVS20090309.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:19 -0000 1.1 +++ sources 1 Jul 2009 07:39:57 -0000 1.2 @@ -0,0 +1 @@ +b41fd87e70aeda02f4fc80126326ada3 parsekit-1.2-CVS20090309.tar.bz2 From caolanm at fedoraproject.org Wed Jul 1 07:42:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 1 Jul 2009 07:42:33 +0000 (UTC) Subject: rpms/hunspell-ee/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE hunspell-ee.spec, 1.8, NONE sources, 1.2, NONE Message-ID: <20090701074234.0142711C02C3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11099 Added Files: dead.package Removed Files: Makefile hunspell-ee.spec sources Log Message: now a dead.package --- NEW FILE dead.package --- Obsolete package, Renamed to hunspell-et. This was imported incorrected as hunspell-ee when it should have been hunspell-ee. This is now reserved for a Ewe spellchecker if one becomes available. --- Makefile DELETED --- --- hunspell-ee.spec DELETED --- --- sources DELETED --- From caolanm at fedoraproject.org Wed Jul 1 07:44:45 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 1 Jul 2009 07:44:45 +0000 (UTC) Subject: comps comps-f12.xml.in,1.21,1.22 Message-ID: <20090701074445.9EBC011C02C3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11261 Modified Files: comps-f12.xml.in Log Message: Resolves: rhbz#508031 rhbz#508850 rename hunspell-ee to hunspell-et like it should have been Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- comps-f12.xml.in 30 Jun 2009 14:17:48 -0000 1.21 +++ comps-f12.xml.in 1 Jul 2009 07:44:15 -0000 1.22 @@ -1481,7 +1481,7 @@ et eclipse-nls-et - hunspell-ee + hunspell-et hyphen-et kde-i18n-Estonian kde-l10n-Estonian From hubbitus at fedoraproject.org Wed Jul 1 07:45:35 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Wed, 1 Jul 2009 07:45:35 +0000 (UTC) Subject: rpms/php-pecl-parsekit/F-11 import.log, NONE, 1.1 php-pecl-parsekit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701074535.5AA1D11C02C3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-parsekit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12134/F-11 Modified Files: .cvsignore sources Added Files: import.log php-pecl-parsekit.spec Log Message: Initial import php-pecl-parsekit into Fedora. --- NEW FILE import.log --- php-pecl-parsekit-1_2-3_CVS20090309_fc9:F-11:php-pecl-parsekit-1.2-3.CVS20090309.fc9.src.rpm:1246434077 --- NEW FILE php-pecl-parsekit.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} %global CVS 20090309 %global peclName parsekit Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 Release: 3%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} # cvs -d :pserver:cvsread at cvs.php.net/repository export -D 2009-03-09 pecl/parsekit ; tar cjf parsekit-1.2-CVS20090309.tar.bz2 -C pecl parsekit Source0: %{peclName}-%{version}-CVS%{CVS}.tar.bz2 %else Source0: http://pecl.php.net/get/%{peclName}-%{version}.tgz %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://pecl.php.net/package/%peclName BuildRequires: php-pear >= 1.4.7 php-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif Provides: php-pecl(%peclName) = %{version} Requires(post): %{__pecl} Requires(postun): %{__pecl} %description Provides a userspace interpretation of the opcodes generated by the Zend engine compiler built into PHP. This extension is meant for development and debug purposes only and contains some code which is potentially non-threadsafe. %prep #%setup -qc -n %peclName-%{version} %setup -qc %build cd %peclName phpize %{configure} --with-%peclName %{__make} %install cd %peclName rm -rf %{buildroot} %{__make} install \ INSTALL_ROOT=%{buildroot} # Install XML package description install -m 0755 -d %{buildroot}%{pecl_xmldir} install -m 0664 package.xml %{buildroot}%{pecl_xmldir}/%peclName.xml install -d %{buildroot}%{_sysconfdir}/php.d/ cat <<'EOF' > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/%peclName.ini ; Enable %{peclName} extension module extension=%{peclName}.so EOF %post %if 0%{?pecl_install:1} %{pecl_install} %{pecl_xmldir}/%{peclName}.xml >/dev/null || : %endif %postun %if 0%{?pecl_uninstall:1} if [ $1 -eq 0 ] ; then %{pecl_uninstall} %{peclName} >/dev/null || : fi %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %peclName/examples/{compile_file.php,compile_string.php,compile_string_show_errors.php} %peclName/README %{php_extdir}/%peclName.so %{pecl_xmldir}/%peclName.xml %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog * Tue Jun 30 2009 Pavel Alexeev - 1.2-3.CVS20090309 - Most of changes inspired by continue Fedora review by Jason Tibbitts. - Prefer %%global over %%define - Source0 is not URL now for CVS build. - "PECL" prefix removed from summary. - Add %%release part into BuildRoot tag. - Add more magic into Release define and fit it into one line.OD * Mon Mar 9 2009 Pavel Alexeev - 1.2-2.CVS20090309 - php-pecl-parsekit.Hu.spec renamed to normal php-pecl-parsekit.spec - In Version changhes: As it is post release enumereate it after 0. Remove Hu-part. - New CVS checkout 20090309 - Add php_apiver and __pecl macroses define. Remove peardir. - Remove define macros xmldir and replace it by common pecl_xmldir - Add comment of command how to get source. - Add patch Patch2: php-pecl-parsekit-1.2.APIstatic.patch to allow build on recent versions. - Fix several inconsistent macros usages. - Add standard Requires/provides of php-api, abi, zend abi, php-pecl(%%peclName) = %%{version}... - Delete pathces, which is not needed anymore in ew checkout. - Remove Obsoletes: php-pear-%%peclName - Add Requires(post): %%{__pecl} and Requires(postun): %%{__pecl} - Rpmlint warnings: o Mixed spaces turned to tabs. o Descrioption line too long: splited. o License from "PHP License" changed to just PHP o script-without-shebang /usr/share/pear/.pkgxml/parsekit.xml: chmod to 0664 * Tue May 13 2008 Pavel Alexeev - 1.2-0.CVS20080513.Hu.0 - Initial spec (copy of php-pecl-imagick.Hu.spec) - Add (import from runkit spec-file) CVS-build support - Add patches: Patch0: php-pecl-parsekit-php51.patch (http://www.mail-archive.com/pld-cvs-commit at lists.pld-linux.org/msg28512.html) Patch1: php-pecl-parsekit-1.2-PHP5.3.0.patch (self) - Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:19 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:45:35 -0000 1.2 @@ -0,0 +1 @@ +parsekit-1.2-CVS20090309.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:19 -0000 1.1 +++ sources 1 Jul 2009 07:45:35 -0000 1.2 @@ -0,0 +1 @@ +b41fd87e70aeda02f4fc80126326ada3 parsekit-1.2-CVS20090309.tar.bz2 From hubbitus at fedoraproject.org Wed Jul 1 07:47:26 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Wed, 1 Jul 2009 07:47:26 +0000 (UTC) Subject: rpms/php-pecl-parsekit/EL-5 import.log, NONE, 1.1 php-pecl-parsekit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701074726.93F8911C02C3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-parsekit/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12413/EL-5 Modified Files: .cvsignore sources Added Files: import.log php-pecl-parsekit.spec Log Message: Initial import php-pecl-parsekit into Fedora. --- NEW FILE import.log --- php-pecl-parsekit-1_2-3_CVS20090309_fc9:EL-5:php-pecl-parsekit-1.2-3.CVS20090309.fc9.src.rpm:1246434391 --- NEW FILE php-pecl-parsekit.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} %global CVS 20090309 %global peclName parsekit Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 Release: 3%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} # cvs -d :pserver:cvsread at cvs.php.net/repository export -D 2009-03-09 pecl/parsekit ; tar cjf parsekit-1.2-CVS20090309.tar.bz2 -C pecl parsekit Source0: %{peclName}-%{version}-CVS%{CVS}.tar.bz2 %else Source0: http://pecl.php.net/get/%{peclName}-%{version}.tgz %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://pecl.php.net/package/%peclName BuildRequires: php-pear >= 1.4.7 php-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif Provides: php-pecl(%peclName) = %{version} Requires(post): %{__pecl} Requires(postun): %{__pecl} %description Provides a userspace interpretation of the opcodes generated by the Zend engine compiler built into PHP. This extension is meant for development and debug purposes only and contains some code which is potentially non-threadsafe. %prep #%setup -qc -n %peclName-%{version} %setup -qc %build cd %peclName phpize %{configure} --with-%peclName %{__make} %install cd %peclName rm -rf %{buildroot} %{__make} install \ INSTALL_ROOT=%{buildroot} # Install XML package description install -m 0755 -d %{buildroot}%{pecl_xmldir} install -m 0664 package.xml %{buildroot}%{pecl_xmldir}/%peclName.xml install -d %{buildroot}%{_sysconfdir}/php.d/ cat <<'EOF' > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/%peclName.ini ; Enable %{peclName} extension module extension=%{peclName}.so EOF %post %if 0%{?pecl_install:1} %{pecl_install} %{pecl_xmldir}/%{peclName}.xml >/dev/null || : %endif %postun %if 0%{?pecl_uninstall:1} if [ $1 -eq 0 ] ; then %{pecl_uninstall} %{peclName} >/dev/null || : fi %endif %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %peclName/examples/{compile_file.php,compile_string.php,compile_string_show_errors.php} %peclName/README %{php_extdir}/%peclName.so %{pecl_xmldir}/%peclName.xml %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog * Tue Jun 30 2009 Pavel Alexeev - 1.2-3.CVS20090309 - Most of changes inspired by continue Fedora review by Jason Tibbitts. - Prefer %%global over %%define - Source0 is not URL now for CVS build. - "PECL" prefix removed from summary. - Add %%release part into BuildRoot tag. - Add more magic into Release define and fit it into one line.OD * Mon Mar 9 2009 Pavel Alexeev - 1.2-2.CVS20090309 - php-pecl-parsekit.Hu.spec renamed to normal php-pecl-parsekit.spec - In Version changhes: As it is post release enumereate it after 0. Remove Hu-part. - New CVS checkout 20090309 - Add php_apiver and __pecl macroses define. Remove peardir. - Remove define macros xmldir and replace it by common pecl_xmldir - Add comment of command how to get source. - Add patch Patch2: php-pecl-parsekit-1.2.APIstatic.patch to allow build on recent versions. - Fix several inconsistent macros usages. - Add standard Requires/provides of php-api, abi, zend abi, php-pecl(%%peclName) = %%{version}... - Delete pathces, which is not needed anymore in ew checkout. - Remove Obsoletes: php-pear-%%peclName - Add Requires(post): %%{__pecl} and Requires(postun): %%{__pecl} - Rpmlint warnings: o Mixed spaces turned to tabs. o Descrioption line too long: splited. o License from "PHP License" changed to just PHP o script-without-shebang /usr/share/pear/.pkgxml/parsekit.xml: chmod to 0664 * Tue May 13 2008 Pavel Alexeev - 1.2-0.CVS20080513.Hu.0 - Initial spec (copy of php-pecl-imagick.Hu.spec) - Add (import from runkit spec-file) CVS-build support - Add patches: Patch0: php-pecl-parsekit-php51.patch (http://www.mail-archive.com/pld-cvs-commit at lists.pld-linux.org/msg28512.html) Patch1: php-pecl-parsekit-1.2-PHP5.3.0.patch (self) - Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:42:19 -0000 1.1 +++ .cvsignore 1 Jul 2009 07:46:56 -0000 1.2 @@ -0,0 +1 @@ +parsekit-1.2-CVS20090309.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:42:19 -0000 1.1 +++ sources 1 Jul 2009 07:46:56 -0000 1.2 @@ -0,0 +1 @@ +b41fd87e70aeda02f4fc80126326ada3 parsekit-1.2-CVS20090309.tar.bz2 From jussilehtola at fedoraproject.org Wed Jul 1 07:54:15 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Wed, 1 Jul 2009 07:54:15 +0000 (UTC) Subject: rpms/pokerth/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 pokerth.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090701075415.92D0111C02C3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pokerth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13150/devel Modified Files: .cvsignore import.log pokerth.spec sources Log Message: Update to 0.7.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jun 2009 07:08:29 -0000 1.2 +++ .cvsignore 1 Jul 2009 07:53:45 -0000 1.3 @@ -1 +1 @@ -PokerTH-0.7-src.tar.bz2 +PokerTH-0.7.1-src.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Jun 2009 07:08:29 -0000 1.1 +++ import.log 1 Jul 2009 07:53:45 -0000 1.2 @@ -1 +1,2 @@ pokerth-0_7-3_fc11:HEAD:pokerth-0.7-3.fc11.src.rpm:1245049679 +pokerth-0_7_1-1_fc11:HEAD:pokerth-0.7.1-1.fc11.src.rpm:1246434487 Index: pokerth.spec =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/devel/pokerth.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pokerth.spec 21 Jun 2009 10:07:51 -0000 1.3 +++ pokerth.spec 1 Jul 2009 07:53:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: pokerth -Version: 0.7 -Release: 5%{?dist} +Version: 0.7.1 +Release: 1%{?dist} Summary: A Texas-Holdem poker game Group: Amusements/Games License: GPLv2+ @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 01 2009 Jussi Lehtola - 0.7.1-1 +- Update to upstream 0.7.1. + * Sun Jun 21 2009 Jussi Lehtola - 0.7-5 - Use bold style instead of book style. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jun 2009 07:08:30 -0000 1.2 +++ sources 1 Jul 2009 07:53:45 -0000 1.3 @@ -1 +1 @@ -bbac2f4c6f55a74c1cd8c25622cea42c PokerTH-0.7-src.tar.bz2 +a26a369bf3aa4b6ed92d0cadacb626e5 PokerTH-0.7.1-src.tar.bz2 From jussilehtola at fedoraproject.org Wed Jul 1 07:54:53 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Wed, 1 Jul 2009 07:54:53 +0000 (UTC) Subject: rpms/pokerth/F-11 pokerth.spec,1.2,1.3 sources,1.2,1.3 Message-ID: <20090701075453.AE64511C02C3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pokerth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13369/F-11 Modified Files: pokerth.spec sources Log Message: Update to 0.7.1. Index: pokerth.spec =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/F-11/pokerth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pokerth.spec 21 Jun 2009 10:30:59 -0000 1.2 +++ pokerth.spec 1 Jul 2009 07:54:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: pokerth -Version: 0.7 -Release: 5%{?dist} +Version: 0.7.1 +Release: 1%{?dist} Summary: A Texas-Holdem poker game Group: Amusements/Games License: GPLv2+ @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 01 2009 Jussi Lehtola - 0.7.1-1 +- Update to upstream 0.7.1. + * Sun Jun 21 2009 Jussi Lehtola - 0.7-5 - Use bold style instead of book style. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jun 2009 07:10:07 -0000 1.2 +++ sources 1 Jul 2009 07:54:53 -0000 1.3 @@ -1 +1 @@ -bbac2f4c6f55a74c1cd8c25622cea42c PokerTH-0.7-src.tar.bz2 +a26a369bf3aa4b6ed92d0cadacb626e5 PokerTH-0.7.1-src.tar.bz2 From mhlavink at fedoraproject.org Wed Jul 1 08:23:19 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 1 Jul 2009 08:23:19 +0000 (UTC) Subject: rpms/cyrus-imapd/F-11 cyrus-imapd.spec,1.53,1.54 Message-ID: <20090701082319.D281311C02C3@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/cyrus-imapd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17658 Modified Files: cyrus-imapd.spec Log Message: change cyrus user shell to nologin Index: cyrus-imapd.spec =================================================================== RCS file: /cvs/extras/rpms/cyrus-imapd/F-11/cyrus-imapd.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- cyrus-imapd.spec 26 May 2009 11:35:00 -0000 1.53 +++ cyrus-imapd.spec 1 Jul 2009 08:22:49 -0000 1.54 @@ -528,10 +528,10 @@ fi %if %{SASLGROUP} /usr/sbin/groupadd -g %{gid} -r %{_saslgroup} 2> /dev/null || : /usr/sbin/useradd -c "Cyrus IMAP Server" -d %{_vardata} -g %{_cyrusgroup} \ - -G %{_saslgroup} -s /bin/bash -u %{uid} -r %{_cyrususer} 2> /dev/null || : + -G %{_saslgroup} -s /bin/nologin -u %{uid} -r %{_cyrususer} 2> /dev/null || : %else /usr/sbin/useradd -c "Cyrus IMAP Server" -d %{_vardata} -g %{_cyrusgroup} \ - -s /bin/bash -u %{uid} -r %{_cyrususer} 2> /dev/null || : + -s /bin/nologin -u %{uid} -r %{_cyrususer} 2> /dev/null || : %endif %post utils From mhlavink at fedoraproject.org Wed Jul 1 08:25:07 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 1 Jul 2009 08:25:07 +0000 (UTC) Subject: rpms/cyrus-imapd/devel cyrus-imapd.spec,1.54,1.55 Message-ID: <20090701082507.D155511C02C3@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/cyrus-imapd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18071 Modified Files: cyrus-imapd.spec Log Message: change cyrus user shell to nologin Index: cyrus-imapd.spec =================================================================== RCS file: /cvs/extras/rpms/cyrus-imapd/devel/cyrus-imapd.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- cyrus-imapd.spec 26 May 2009 11:36:49 -0000 1.54 +++ cyrus-imapd.spec 1 Jul 2009 08:24:37 -0000 1.55 @@ -528,10 +528,10 @@ fi %if %{SASLGROUP} /usr/sbin/groupadd -g %{gid} -r %{_saslgroup} 2> /dev/null || : /usr/sbin/useradd -c "Cyrus IMAP Server" -d %{_vardata} -g %{_cyrusgroup} \ - -G %{_saslgroup} -s /bin/bash -u %{uid} -r %{_cyrususer} 2> /dev/null || : + -G %{_saslgroup} -s /bin/nologin -u %{uid} -r %{_cyrususer} 2> /dev/null || : %else /usr/sbin/useradd -c "Cyrus IMAP Server" -d %{_vardata} -g %{_cyrusgroup} \ - -s /bin/bash -u %{uid} -r %{_cyrususer} 2> /dev/null || : + -s /bin/nologin -u %{uid} -r %{_cyrususer} 2> /dev/null || : %endif %post utils From jskala at fedoraproject.org Wed Jul 1 08:42:15 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Wed, 1 Jul 2009 08:42:15 +0000 (UTC) Subject: rpms/squid/devel squid.spec,1.127,1.128 Message-ID: <20090701084215.2528B11C02C3@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21974 Modified Files: squid.spec Log Message: * Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 - fixed patch parameter of bXXX patches Index: squid.spec =================================================================== RCS file: /cvs/extras/rpms/squid/devel/squid.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- squid.spec 29 Jun 2009 12:00:57 -0000 1.127 +++ squid.spec 1 Jul 2009 08:42:14 -0000 1.128 @@ -4,7 +4,7 @@ Name: squid Version: 3.0.STABLE16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -61,8 +61,8 @@ lookup program (dnsserver), a program fo %prep %setup -q -%patch001 -p1 -b .b9052 -%patch002 -p1 -b .b9053 +%patch001 -p0 -b .b9052 +%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build @@ -344,6 +344,9 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 +- fixed patch parameter of bXXX patches + * Mon Jun 29 2009 Henrik Nordstrom 3.0.STABLE16-1 - Upgrade to 3.0.STABLE16 From mhlavink at fedoraproject.org Wed Jul 1 08:48:43 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 1 Jul 2009 08:48:43 +0000 (UTC) Subject: rpms/squirrelmail/devel squirrelmail.conf, 1.3, 1.4 squirrelmail.spec, 1.72, 1.73 Message-ID: <20090701084843.A8D0D11C02C3@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/squirrelmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23703 Modified Files: squirrelmail.conf squirrelmail.spec Log Message: use ssl by default Index: squirrelmail.conf =================================================================== RCS file: /cvs/extras/rpms/squirrelmail/devel/squirrelmail.conf,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- squirrelmail.conf 20 Jan 2009 15:31:01 -0000 1.3 +++ squirrelmail.conf 1 Jul 2009 08:48:13 -0000 1.4 @@ -4,6 +4,12 @@ Alias /webmail /usr/share/squirrelmail + + RewriteEngine on + RewriteCond %{HTTPS} !=on + RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} + + Deny from all Index: squirrelmail.spec =================================================================== RCS file: /cvs/extras/rpms/squirrelmail/devel/squirrelmail.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- squirrelmail.spec 30 Jun 2009 10:27:10 -0000 1.72 +++ squirrelmail.spec 1 Jul 2009 08:48:13 -0000 1.73 @@ -6,7 +6,7 @@ Summary: SquirrelMail webmail client Name: squirrelmail Version: 1.4.19 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://www.squirrelmail.org/ Group: Applications/Internet @@ -62,7 +62,7 @@ tar xfj %SOURCE4 popd %patch5 -p1 -#%patch6 -p1 +%patch6 -p1 %build rm -f plugins/make_archive.pl @@ -269,6 +269,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/cron.daily/squirrelmail.cron %changelog +* Wed Jul 01 2009 Michal Hlavinka - 1.4.19-3 +- change default configuration to use only ssl connections + * Tue Jun 30 2009 Michal Hlavinka - 1.4.19-2 - use hunspell instead of ispell in squirrelspell plugin (#508631) From lucilanga at fedoraproject.org Wed Jul 1 09:02:37 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 09:02:37 +0000 (UTC) Subject: rpms/libftdi/devel libftdi.spec,1.7,1.8 Message-ID: <20090701090237.284F611C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26439 Modified Files: libftdi.spec Log Message: * Wed Jul 01 2009 Lucian Langa - 0.16-3 - added udev rules - addedd c++, python bindings Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/devel/libftdi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libftdi.spec 9 May 2009 09:45:23 -0000 1.7 +++ libftdi.spec 1 Jul 2009 09:02:06 -0000 1.8 @@ -1,16 +1,18 @@ +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries License: LGPLv2 URL: http://www.intra2net.com/de/produkte/opensource/ftdi/ Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz +Source1: no_date_footer.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libusb-devel, doxygen, boost-devel -Requires: pkgconfig +BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig +Requires: pkgconfig, udev %package devel Summary: Header files and static libraries for libftdi @@ -18,6 +20,22 @@ Group: Development/Libraries Requires: libftdi = %{version}-%{release} Requires: libusb-devel +%package python +Summary: Libftdi library Python binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++ +Summary: Libftdi library C++ binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++-devel +Summary: Libftdi library C++ binding development headers and libraries +Group: Development/Libraries +Requires: libftdi-devel = %{version}-%{release}, libftdi-c++ = %{version}-%{release} + + %description A library (using libusb) to talk to FTDI's FT2232C, FT232BM and FT245BM type chips including the popular bitbang mode. @@ -25,13 +43,25 @@ FT232BM and FT245BM type chips including %description devel Header files and static libraries for libftdi +%description python +Libftdi Python Language bindings. + +%description c++ +Libftdi library C++ language binding. + +%description c++-devel +Libftdi library C++ binding development headers and libraries +for building C++ applications with libftdi. + %prep %setup -q +sed -i -e 's/HTML_FOOTER =/HTML_FOOTER = no_date_footer.html/g' doc/Doxyfile.in %build -%configure +%configure --enable-python-binding --enable-libftdipp +cp %{SOURCE1} %{_builddir}/%{name}-%{version}/doc make %{?_smp_mflags} @@ -42,6 +72,8 @@ find %{buildroot} -name \*\.la -print | mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3 #no man install install -p -m 644 doc/man/man3/*.3 $RPM_BUILD_ROOT%{_mandir}/man3 +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d +install -p -m 644 packages/99-libftdi.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d # Cleanup examples @@ -59,26 +91,51 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING.LIB README -%{_libdir}/*.so.* - +%{_libdir}/libftdi.so.* +%config(noreplace) %{_sysconfdir}/udev/rules.d/99-libftdi.rules %files devel %defattr(-,root,root,-) %doc doc/html %{_bindir}/libftdi-config %{_libdir}/libftdi.a -%{_libdir}/libftdipp.a -%{_libdir}/*.so +%{_libdir}/libftdi.so %{_includedir}/*.h -%{_includedir}/*.hpp -%{_libdir}/pkgconfig/*.pc +%{_libdir}/pkgconfig/libftdi.pc %{_mandir}/man3/* +%files python +%defattr(-, root, root, -) +%{python_sitearch}/* + +%files c++ +%defattr(-, root, root, -) +%doc AUTHORS ChangeLog COPYING.LIB README +%{_libdir}/libftdipp.so.* + +%files c++-devel +%defattr(-, root, root, -) +%doc doc/html +%{_libdir}/libftdipp.a +%{_libdir}/libftdipp.so +%{_includedir}/*.hpp +%{_libdir}/pkgconfig/libftdipp.pc + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig +%post c++ -p /sbin/ldconfig +%postun c++ -p /sbin/ldconfig + %changelog +* Wed Jul 01 2009 Lucian Langa - 0.16-3 +- added udev rules +- addedd c++, python bindings + +* Tue Jun 30 2009 Lucian Langa - 0.16-2 +- fix doxygen conflict (#508498) + * Fri May 08 2009 Lucian Langa - 0.16-1 - new upstream release From lucilanga at fedoraproject.org Wed Jul 1 09:03:17 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 09:03:17 +0000 (UTC) Subject: rpms/libftdi/devel no_date_footer.html,NONE,1.1 Message-ID: <20090701090317.F169811C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26792 Added Files: no_date_footer.html Log Message: * Wed Jul 01 2009 Lucian Langa - 0.16-3 - added udev rules - addedd c++, python bindings --- NEW FILE no_date_footer.html ---
Generated for $projectname by doxygen $doxygenversion
From hadess at fedoraproject.org Wed Jul 1 09:10:58 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 1 Jul 2009 09:10:58 +0000 (UTC) Subject: rpms/gnome-media/devel .cvsignore, 1.53, 1.54 gnome-media.spec, 1.170, 1.171 sources, 1.52, 1.53 fix-alignment-of-sliders.patch, 1.1, NONE gnome-media-add-100-mark.patch, 1.1, NONE Message-ID: <20090701091058.8610C11C02C3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28524 Modified Files: .cvsignore gnome-media.spec sources Removed Files: fix-alignment-of-sliders.patch gnome-media-add-100-mark.patch Log Message: * Wed Jul 01 2009 Bastien Nocera 2.27.3.1-1 - Update to 2.27.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/.cvsignore,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- .cvsignore 16 Jun 2009 05:42:23 -0000 1.53 +++ .cvsignore 1 Jul 2009 09:10:58 -0000 1.54 @@ -1 +1 @@ -gnome-media-2.27.3.tar.bz2 +gnome-media-2.27.3.1.tar.bz2 Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.170 retrieving revision 1.171 diff -u -p -r1.170 -r1.171 --- gnome-media.spec 16 Jun 2009 05:42:23 -0000 1.170 +++ gnome-media.spec 1 Jul 2009 09:10:58 -0000 1.171 @@ -13,7 +13,7 @@ Summary: GNOME media programs Name: gnome-media -Version: 2.27.3 +Version: 2.27.3.1 Release: 1%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia @@ -45,8 +45,6 @@ BuildRequires: pulseaudio-libs-devel BuildRequires: gnome-doc-utils BuildRequires: intltool BuildRequires: unique-devel -# for patch 0 -BuildRequires: autoconf automake libtool %description This package contains a few media utilities for the GNOME desktop, @@ -249,6 +247,9 @@ scrollkeeper-update -q || : %{_libdir}/pkgconfig/* %changelog +* Wed Jul 01 2009 Bastien Nocera 2.27.3.1-1 +- Update to 2.27.3.1 + * Tue Jun 16 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 16 Jun 2009 05:42:23 -0000 1.52 +++ sources 1 Jul 2009 09:10:58 -0000 1.53 @@ -1 +1 @@ -28be9720719e991628555c2c16275d87 gnome-media-2.27.3.tar.bz2 +426bb62bf75898a95458ce8438c35e83 gnome-media-2.27.3.1.tar.bz2 --- fix-alignment-of-sliders.patch DELETED --- --- gnome-media-add-100-mark.patch DELETED --- From caolanm at fedoraproject.org Wed Jul 1 09:14:07 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 1 Jul 2009 09:14:07 +0000 (UTC) Subject: rpms/hunspell-ca/devel .cvsignore, 1.13, 1.14 hunspell-ca.spec, 1.16, 1.17 sources, 1.13, 1.14 Message-ID: <20090701091407.C2E5611C02C3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29435 Modified Files: .cvsignore hunspell-ca.spec sources Log Message: latest version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ca/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 11 Mar 2009 22:54:18 -0000 1.13 +++ .cvsignore 1 Jul 2009 09:14:07 -0000 1.14 @@ -1 +1 @@ -hunspell-ca-20090311.tar.bz2 +hunspell-ca-20090630.tar.bz2 Index: hunspell-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ca/devel/hunspell-ca.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- hunspell-ca.spec 11 Mar 2009 22:54:18 -0000 1.16 +++ hunspell-ca.spec 1 Jul 2009 09:14:07 -0000 1.17 @@ -1,6 +1,6 @@ Name: hunspell-ca Summary: Catalan hunspell dictionaries -%define upstreamid 20090311 +%define upstreamid 20090630 Version: 0.%{upstreamid} Release: 1%{?dist} #svn checkout svn://softcatala.org/corrector/trunk/resultats/hunspell @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Wed Jul 01 2009 Caolan McNamara - 0.20090630-1 +- latest version + * Wed Mar 11 2009 Caolan McNamara - 0.20090311-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ca/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 11 Mar 2009 22:54:18 -0000 1.13 +++ sources 1 Jul 2009 09:14:07 -0000 1.14 @@ -1 +1 @@ -b27e70049dd76bb056ef06fbb0826aaf hunspell-ca-20090311.tar.bz2 +9a86d29a86d785c9476f7af76bf64412 hunspell-ca-20090630.tar.bz2 From hadess at fedoraproject.org Wed Jul 1 09:15:28 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 1 Jul 2009 09:15:28 +0000 (UTC) Subject: rpms/rhythmbox/F-11 .cvsignore, 1.55, 1.56 rhythmbox.spec, 1.250, 1.251 sources, 1.57, 1.58 Message-ID: <20090701091528.3697111C02C3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/rhythmbox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29834 Modified Files: .cvsignore rhythmbox.spec sources Log Message: * Wed Jul 01 2009 Bastien Nocera 0.12.2.93-1 - Update to 0.12.2.93 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/.cvsignore,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- .cvsignore 30 Jun 2009 08:33:46 -0000 1.55 +++ .cvsignore 1 Jul 2009 09:15:27 -0000 1.56 @@ -1 +1 @@ -rhythmbox-0.12.2.92.tar.bz2 +rhythmbox-0.12.2.93.tar.bz2 Index: rhythmbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/rhythmbox.spec,v retrieving revision 1.250 retrieving revision 1.251 diff -u -p -r1.250 -r1.251 --- rhythmbox.spec 30 Jun 2009 08:33:46 -0000 1.250 +++ rhythmbox.spec 1 Jul 2009 09:15:27 -0000 1.251 @@ -2,7 +2,7 @@ Name: rhythmbox Summary: Music Management Application -Version: 0.12.2.92 +Version: 0.12.2.93 Release: 1%{?dist} License: GPLv2+ with exceptions and GFDL Group: Applications/Multimedia @@ -215,6 +215,9 @@ fi %{_libdir}/rhythmbox/plugins/upnp_coherence %changelog +* Wed Jul 01 2009 Bastien Nocera 0.12.2.93-1 +- Update to 0.12.2.93 + * Tue Jun 30 2009 Bastien Nocera 0.12.2.92-1 - Update to 0.12.2.92 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/sources,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- sources 30 Jun 2009 08:33:46 -0000 1.57 +++ sources 1 Jul 2009 09:15:27 -0000 1.58 @@ -1 +1 @@ -a1de0e03df63ce14c9f1771950bbf064 rhythmbox-0.12.2.92.tar.bz2 +45b45f906073cac7e6bd981586de499f rhythmbox-0.12.2.93.tar.bz2 From pbrobinson at fedoraproject.org Wed Jul 1 09:23:42 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 1 Jul 2009 09:23:42 +0000 (UTC) Subject: rpms/gupnp/devel gupnp.spec,1.20,1.21 Message-ID: <20090701092342.09BEB11C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gupnp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32625 Modified Files: gupnp.spec Log Message: - Rebuild with new libuuid build req Index: gupnp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp/devel/gupnp.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gupnp.spec 3 Jun 2009 08:24:25 -0000 1.20 +++ gupnp.spec 1 Jul 2009 09:23:11 -0000 1.21 @@ -1,6 +1,6 @@ Name: gupnp Version: 0.12.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A framework for creating UPnP devices & control points Group: System Environment/Libraries @@ -14,7 +14,7 @@ BuildRequires: glib2-devel BuildRequires: gtk-doc BuildRequires: libsoup-devel BuildRequires: libxml2-devel -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel Requires: dbus @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/gupnp %changelog +* Wed Jul 1 2009 Peter Robinson 0.12.8-2 +- Rebuild with new libuuid build req + * Wed Jun 3 2009 Peter Robinson 0.12.8-1 - New upstream release From pbrobinson at fedoraproject.org Wed Jul 1 09:27:02 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 1 Jul 2009 09:27:02 +0000 (UTC) Subject: rpms/gupnp-tools/devel gupnp-tools.spec,1.12,1.13 Message-ID: <20090701092702.56DDD11C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gupnp-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1315 Modified Files: gupnp-tools.spec Log Message: - Rebuild with new libuuid build req Index: gupnp-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-tools/devel/gupnp-tools.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gupnp-tools.spec 13 May 2009 11:41:54 -0000 1.12 +++ gupnp-tools.spec 1 Jul 2009 09:27:01 -0000 1.13 @@ -1,6 +1,6 @@ Name: gupnp-tools Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of dev tools utilising GUPnP and GTK+ Group: System Environment/Libraries @@ -15,7 +15,7 @@ BuildRequires: gssdp-devel BuildRequires: gtk2-devel BuildRequires: glib2-devel >= 2.12 BuildRequires: libsoup-devel -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel BuildRequires: gnome-icon-theme BuildRequires: desktop-file-utils @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gupnp-tools/*.ui %changelog +* Tue May 12 2009 Peter Robinson 0.7.1-4 +- Rebuild with new libuuid build req + * Tue May 12 2009 Peter Robinson 0.7.1-3 - and add the GTKBuilder replacements From sbose at fedoraproject.org Wed Jul 1 09:27:38 2009 From: sbose at fedoraproject.org (sbose) Date: Wed, 1 Jul 2009 09:27:38 +0000 (UTC) Subject: rpms/ctdb/devel .cvsignore, 1.6, 1.7 ctdb.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090701092738.D98D011C02C3@cvs1.fedora.phx.redhat.com> Author: sbose Update of /cvs/pkgs/rpms/ctdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1303 Modified Files: .cvsignore ctdb.spec sources Log Message: Update to ctdb version 1.0.86 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 14 May 2009 08:23:55 -0000 1.6 +++ .cvsignore 1 Jul 2009 09:27:08 -0000 1.7 @@ -1 +1 @@ -ctdb-1.0.82.tar.bz2 +ctdb-1.0.86.tar.bz2 Index: ctdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/ctdb.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ctdb.spec 14 May 2009 08:23:55 -0000 1.8 +++ ctdb.spec 1 Jul 2009 09:27:08 -0000 1.9 @@ -2,7 +2,7 @@ Summary: A Clustered Database based on Samba's Trivial Database (TDB) Name: ctdb -Version: 1.0.82 +Version: 1.0.86 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -119,7 +119,6 @@ fi %{_bindir}/ctdb %{_bindir}/smnotify %{_bindir}/ping_pong -%{_bindir}/ctdb_ipmux %{_bindir}/ctdb_diagnostics %{_bindir}/onnode %{_mandir}/man1/ctdb.1.gz @@ -133,6 +132,83 @@ fi %{_libdir}/pkgconfig/ctdb.pc %changelog +* Wed Jul 1 2009 Sumit Bose - 1.0.86-1 + - Update to ctdb version 1.0.86 + +* Tue Jun 30 2009 : Version 1.0.86 + - Do not access the reclock at all if VerifyRecoveryLock is zero, not even try + to probe it. + - Allow setting the reclock file as "", which means that no reclock file at + all should be used. + - Document that a reclock file is no longer required, but that it is + dangerous. + - Add a control that can be used to set/clear/change the reclock file in the + daemon during runtime. + - Update the recovery daemon to poll whether a reclock file should be sued and + if so which file at runtime in each monitoring cycle. + - Automatically disable VerifyRecoveryLock everytime a user changes the + location of the reclock file. + - do not allow the VerifyRecoveryLock to be set using ctdb setvar if there is + no recovery lock file specified. + - Add two commands "ctdb getreclock" and "ctdb setreclock" to modify the + reclock file. + +* Tue Jun 23 2009 : Version 1.0.85 + - From William Jojo : Dont use getopt on AIX + - Make it possible to use "ctdb listnodes" also when the daemon is not running + - Provide machinereadable output to "ctdb listnodes" + - Dont list DELETED nodes in the ctdb listnodes output + - Try to avoid causing a recovery for the average case when + adding/deleting/moving an ip + - When banning a node, drop the IPs on that node only and not all nodes. + - Add tests for NFS and CIFS tickles + - Rename 99.routing to 11.routing so it executes before NFS and LVS scripts + - Increase the default timeout before we deem an unresponsive recovery daemon + hung and shutdown + - Reduce the reclock timout to 5 seconds + - Spawn a child process in the recovery daemon ot check the reclock file to + avoid blocking the process if the underlying filesystem is unresponsive + - fix for filedescriptor leak when a child process timesout + - Dont log errors if waitpid() returns -1 + - Onnode updates by Martins + - Test and initscript cleanups from Martin S + +* Fri Jun 5 2009 Sumit Bose - 1.0.84-1 + - Update to ctdb version 1.0.84 + +* Tue Jun 2 2009 : Version 1.0.84 + - Fix a bug in onnode that could not handle dead nodes + +* Tue Jun 2 2009 : Version 1.0.83 + - Document how to remove a ndoe from a running cluster. + - Hide all deleted nodes from ctdb output. + - Lower the loglevel on some eventscript related items + - Dont queue packets to deleted nodes + - When building initial vnnmap, ignode any nonexisting nodes + - Add a new nodestate : DELETED that is used when deleting a node from an + existing cluster. + - dont remove the ctdb socket when shutting down. This prevents a race in the + initscripts when restarting ctdb quickly after stopping it. + - TDB nesting reworked. + - Remove obsolete ipmux + - From Flavio Carmo Junior: Add eventscript and documentation for ClamAV + antivirus engine + - From Sumit Bose: fix the regex in the test to handle the new ctdb + statistics output that was recently added. + - change the socket type we use for grauitious arps from the obsolete + AF_INET/SOCK_PACKET to instead use PF_PACKET/SOCK_RAW. + - Check return codes for some functions, from Sumit Bose, based on codereview + by Jim Meyering. + - Sumit Bose: Remove structure memeber node_list_file that is no longer used. + - Sumit Bose: fix configure warning for netfilter.h + - Updates to the webpages by Volker. + - Remove error messages about missing /var/log/log.ctdb file from + ctdb_diagnostics.sh from christian Ambach + - Additional error logs if hte eventscript switching from dameon to client + mode fails. + - track how long it takes for ctdbd and the recovery daemon to perform the + rec-lock fcntl() lock attemt and show this in the ctdb statistics output. + * Thu May 14 2009 Sumit Bose - 1.0.82-1 - Update to ctdb version 1.0.82 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 14 May 2009 08:23:55 -0000 1.6 +++ sources 1 Jul 2009 09:27:08 -0000 1.7 @@ -1 +1 @@ -f020db416020340401e68222115fc981 ctdb-1.0.82.tar.bz2 +133d4e7d601e603147d6c006654983e8 ctdb-1.0.86.tar.bz2 From lucilanga at fedoraproject.org Wed Jul 1 09:27:43 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 09:27:43 +0000 (UTC) Subject: rpms/soundmodem/devel .cvsignore, 1.3, 1.4 soundmodem.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090701092743.6CF3F11C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/soundmodem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1623 Modified Files: .cvsignore soundmodem.spec sources Log Message: * Wed Jul 01 2009 Lucian Langa - 0.14-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Feb 2009 18:11:32 -0000 1.3 +++ .cvsignore 1 Jul 2009 09:27:43 -0000 1.4 @@ -1 +1 @@ -soundmodem-0.12.tar.gz +soundmodem-0.14.tar.gz Index: soundmodem.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/devel/soundmodem.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- soundmodem.spec 26 Feb 2009 02:09:48 -0000 1.6 +++ soundmodem.spec 1 Jul 2009 09:27:43 -0000 1.7 @@ -1,6 +1,6 @@ Name: soundmodem -Version: 0.12 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Soundcard Packet Radio Modem Group: Applications/Communications License: GPLv2+ @@ -74,10 +74,10 @@ fi %files -f %{name}.lang %defattr(-, root, root, -) -%{_prefix}/sbin/* -%{_prefix}/bin/* -%{_prefix}/share/man/*/* -%{_sysconfdir}/rc.d/init.d/soundmodem +%{_sbindir}/* +%{_bindir}/* +%{_mandir}/*/* +%{_initddir}/soundmodem %doc AUTHORS COPYING ChangeLog NEWS README newqpsk/README.newqpsk %files devel @@ -85,6 +85,9 @@ fi %{_includedir}/%{name} %changelog +* Wed Jul 01 2009 Lucian Langa - 0.14-1 +- new upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Feb 2009 18:11:32 -0000 1.3 +++ sources 1 Jul 2009 09:27:43 -0000 1.4 @@ -1 +1 @@ -b2c222cf4ae16bbdbdc85de56cf7f850 soundmodem-0.12.tar.gz +67c501aea27a72da303a86333582d57e soundmodem-0.14.tar.gz From pbrobinson at fedoraproject.org Wed Jul 1 09:36:33 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 1 Jul 2009 09:36:33 +0000 (UTC) Subject: rpms/rygel/devel rygel.spec,1.2,1.3 Message-ID: <20090701093633.6B7F711C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/rygel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3655 Modified Files: rygel.spec Log Message: - Rebuild with new libuuid build req Index: rygel.spec =================================================================== RCS file: /cvs/pkgs/rpms/rygel/devel/rygel.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rygel.spec 21 Jun 2009 15:03:50 -0000 1.2 +++ rygel.spec 1 Jul 2009 09:36:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: rygel Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A UPnP v2 Media Server Group: Applications/Multimedia @@ -16,7 +16,7 @@ BuildRequires: gupnp-av-devel BuildRequires: gupnp-vala >= 0.5.4 BuildRequires: glib2-devel BuildRequires: dbus-glib-devel -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel BuildRequires: gstreamer-devel BuildRequires: GConf2-devel BuildRequires: libgee-devel >= 0.1.5 @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_datadir}/vala/vapi/rygel-1.0.vapi %changelog +* Wed Jul 1 2009 Peter Robinson 0.3-3 +- Rebuild with new libuuid build req + * Wed Jun 3 2009 Peter Robinson 0.3-2 - Split tracker plugin out to a sub package. Resolves RHBZ 507032 From sbose at fedoraproject.org Wed Jul 1 09:40:36 2009 From: sbose at fedoraproject.org (sbose) Date: Wed, 1 Jul 2009 09:40:36 +0000 (UTC) Subject: rpms/ctdb/EL-5 .cvsignore, 1.5, 1.6 ctdb.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090701094036.C703611C02C3@cvs1.fedora.phx.redhat.com> Author: sbose Update of /cvs/pkgs/rpms/ctdb/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4830 Modified Files: .cvsignore ctdb.spec sources Log Message: Update to ctdb version 1.0.86 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 8 May 2009 09:56:31 -0000 1.5 +++ .cvsignore 1 Jul 2009 09:40:36 -0000 1.6 @@ -1 +1 @@ -ctdb-1.0.81.tar.bz2 +ctdb-1.0.86.tar.bz2 Index: ctdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/ctdb.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ctdb.spec 8 May 2009 09:56:31 -0000 1.7 +++ ctdb.spec 1 Jul 2009 09:40:36 -0000 1.8 @@ -2,7 +2,7 @@ Summary: A Clustered Database based on Samba's Trivial Database (TDB) Name: ctdb -Version: 1.0.81 +Version: 1.0.86 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -16,8 +16,6 @@ Source0: %{name}-%{version}.tar.bz2 # Fedora specific patch, ctdb should not be enabled by default in the runlevels Patch1: ctdb-no_default_runlevel.patch -# see http://lists.samba.org/archive/samba-technical/2009-May/064573.html -Patch2: ctdb-re_fix.patch Requires: chkconfig coreutils psmisc Requires: fileutils sed @@ -53,7 +51,6 @@ and use CTDB instead. # setup the init script and sysconfig file %setup -T -D -n ctdb-%{version} -q %patch1 -p1 -%patch2 -p1 %build @@ -122,7 +119,6 @@ fi %{_bindir}/ctdb %{_bindir}/smnotify %{_bindir}/ping_pong -%{_bindir}/ctdb_ipmux %{_bindir}/ctdb_diagnostics %{_bindir}/onnode %{_mandir}/man1/ctdb.1.gz @@ -136,6 +132,101 @@ fi %{_libdir}/pkgconfig/ctdb.pc %changelog +* Wed Jul 1 2009 Sumit Bose - 1.0.86-1 + - Update to ctdb version 1.0.86 + +* Tue Jun 30 2009 : Version 1.0.86 + - Do not access the reclock at all if VerifyRecoveryLock is zero, not even try + to probe it. + - Allow setting the reclock file as "", which means that no reclock file at + all should be used. + - Document that a reclock file is no longer required, but that it is + dangerous. + - Add a control that can be used to set/clear/change the reclock file in the + daemon during runtime. + - Update the recovery daemon to poll whether a reclock file should be sued and + if so which file at runtime in each monitoring cycle. + - Automatically disable VerifyRecoveryLock everytime a user changes the + location of the reclock file. + - do not allow the VerifyRecoveryLock to be set using ctdb setvar if there is + no recovery lock file specified. + - Add two commands "ctdb getreclock" and "ctdb setreclock" to modify the + reclock file. + +* Tue Jun 23 2009 : Version 1.0.85 + - From William Jojo : Dont use getopt on AIX + - Make it possible to use "ctdb listnodes" also when the daemon is not running + - Provide machinereadable output to "ctdb listnodes" + - Dont list DELETED nodes in the ctdb listnodes output + - Try to avoid causing a recovery for the average case when + adding/deleting/moving an ip + - When banning a node, drop the IPs on that node only and not all nodes. + - Add tests for NFS and CIFS tickles + - Rename 99.routing to 11.routing so it executes before NFS and LVS scripts + - Increase the default timeout before we deem an unresponsive recovery daemon + hung and shutdown + - Reduce the reclock timout to 5 seconds + - Spawn a child process in the recovery daemon ot check the reclock file to + avoid blocking the process if the underlying filesystem is unresponsive + - fix for filedescriptor leak when a child process timesout + - Dont log errors if waitpid() returns -1 + - Onnode updates by Martins + - Test and initscript cleanups from Martin S + +* Fri Jun 5 2009 Sumit Bose - 1.0.84-1 + - Update to ctdb version 1.0.84 + +* Tue Jun 2 2009 : Version 1.0.84 + - Fix a bug in onnode that could not handle dead nodes + +* Tue Jun 2 2009 : Version 1.0.83 + - Document how to remove a ndoe from a running cluster. + - Hide all deleted nodes from ctdb output. + - Lower the loglevel on some eventscript related items + - Dont queue packets to deleted nodes + - When building initial vnnmap, ignode any nonexisting nodes + - Add a new nodestate : DELETED that is used when deleting a node from an + existing cluster. + - dont remove the ctdb socket when shutting down. This prevents a race in the + initscripts when restarting ctdb quickly after stopping it. + - TDB nesting reworked. + - Remove obsolete ipmux + - From Flavio Carmo Junior: Add eventscript and documentation for ClamAV + antivirus engine + - From Sumit Bose: fix the regex in the test to handle the new ctdb + statistics output that was recently added. + - change the socket type we use for grauitious arps from the obsolete + AF_INET/SOCK_PACKET to instead use PF_PACKET/SOCK_RAW. + - Check return codes for some functions, from Sumit Bose, based on codereview + by Jim Meyering. + - Sumit Bose: Remove structure memeber node_list_file that is no longer used. + - Sumit Bose: fix configure warning for netfilter.h + - Updates to the webpages by Volker. + - Remove error messages about missing /var/log/log.ctdb file from + ctdb_diagnostics.sh from christian Ambach + - Additional error logs if hte eventscript switching from dameon to client + mode fails. + - track how long it takes for ctdbd and the recovery daemon to perform the + rec-lock fcntl() lock attemt and show this in the ctdb statistics output. + +* Thu May 14 2009 Sumit Bose - 1.0.82-1 + - Update to ctdb version 1.0.82 + +* Thu May 14 2009 : Version 1.0.82 + - Update the "ctdb lvsmaster" command to return -1 on error. + - Add a -Y flag to "ctdb lvsmaster" + - RHEL5 apache leaks semaphores when crashing. Add semaphore cleanup to the + 41.httpd eventscript and try to restart apache when it has crashed. + - Fixes to some tests + - Add a -o option to "onnode" which will redirect all stdout to a file for + each of the nodes. + - Add a natgw and a lvs node specifier to onnode so that we can use + "onnode natgw ..." + - Assign the natgw address to lo instead of the private network so it can also + be used where private and public networks are the same. + - Add GPL boilerplates to two missing scripts. + - Change the natgw prefix NATGW_ to CTDB_NATGW_ + * Fri May 8 2009 Sumit Bose - 1.0.81-1 - Update to ctdb version 1.0.81 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 May 2009 09:56:31 -0000 1.5 +++ sources 1 Jul 2009 09:40:36 -0000 1.6 @@ -1 +1 @@ -af35ce05a21275f91fc1e703b3124f12 ctdb-1.0.81.tar.bz2 +133d4e7d601e603147d6c006654983e8 ctdb-1.0.86.tar.bz2 From hadess at fedoraproject.org Wed Jul 1 09:50:07 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 1 Jul 2009 09:50:07 +0000 (UTC) Subject: rpms/rhythmbox/devel .cvsignore, 1.55, 1.56 rhythmbox.spec, 1.252, 1.253 sources, 1.57, 1.58 Message-ID: <20090701095007.8FE0F11C02C3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/rhythmbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7713 Modified Files: .cvsignore rhythmbox.spec sources Log Message: * Wed Jul 01 2009 Bastien Nocera 0.12.2.93-1 - Update to 0.12.2.93 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/.cvsignore,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- .cvsignore 30 Jun 2009 08:19:02 -0000 1.55 +++ .cvsignore 1 Jul 2009 09:49:37 -0000 1.56 @@ -1 +1 @@ -rhythmbox-0.12.2.92.tar.bz2 +rhythmbox-0.12.2.93.tar.bz2 Index: rhythmbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/rhythmbox.spec,v retrieving revision 1.252 retrieving revision 1.253 diff -u -p -r1.252 -r1.253 --- rhythmbox.spec 30 Jun 2009 08:19:03 -0000 1.252 +++ rhythmbox.spec 1 Jul 2009 09:49:37 -0000 1.253 @@ -2,7 +2,7 @@ Name: rhythmbox Summary: Music Management Application -Version: 0.12.2.92 +Version: 0.12.2.93 Release: 1%{?dist} License: GPLv2+ with exceptions and GFDL Group: Applications/Multimedia @@ -215,6 +215,9 @@ fi %{_libdir}/rhythmbox/plugins/upnp_coherence %changelog +* Wed Jul 01 2009 Bastien Nocera 0.12.2.93-1 +- Update to 0.12.2.93 + * Tue Jun 30 2009 Bastien Nocera 0.12.2.92-1 - Update to 0.12.2.92 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/sources,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- sources 30 Jun 2009 08:19:03 -0000 1.57 +++ sources 1 Jul 2009 09:49:37 -0000 1.58 @@ -1 +1 @@ -a1de0e03df63ce14c9f1771950bbf064 rhythmbox-0.12.2.92.tar.bz2 +45b45f906073cac7e6bd981586de499f rhythmbox-0.12.2.93.tar.bz2 From tmraz at fedoraproject.org Wed Jul 1 09:52:07 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Wed, 1 Jul 2009 09:52:07 +0000 (UTC) Subject: rpms/openssl/devel openssl-0.9.8k-algo-doc.patch,NONE,1.1 Message-ID: <20090701095207.F30A511C02C3@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8401 Added Files: openssl-0.9.8k-algo-doc.patch Log Message: * Tue Jun 30 2009 Tomas Mraz 0.9.8k-6 - abort if selftests failed and random number generator is polled - mention EVP_aes and EVP_sha2xx routines in the manpages - add README.FIPS - make CA dir absolute path (#445344) - change default length for RSA key generation to 2048 (#484101) openssl-0.9.8k-algo-doc.patch: --- NEW FILE openssl-0.9.8k-algo-doc.patch --- diff -up openssl-0.9.8k/doc/crypto/EVP_DigestInit.pod.algo-doc openssl-0.9.8k/doc/crypto/EVP_DigestInit.pod --- openssl-0.9.8k/doc/crypto/EVP_DigestInit.pod.algo-doc 2004-05-20 23:39:50.000000000 +0200 +++ openssl-0.9.8k/doc/crypto/EVP_DigestInit.pod 2009-06-30 12:04:47.000000000 +0200 @@ -6,7 +6,8 @@ EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_ EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE, EVP_MD_CTX_copy_ex, EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, EVP_MD_CTX_block_size, EVP_MD_CTX_type, -EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_dss, EVP_dss1, EVP_mdc2, +EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1, EVP_sha224, +EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, EVP_mdc2, EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj - EVP digest routines @@ -51,6 +52,10 @@ EVP digest routines const EVP_MD *EVP_md5(void); const EVP_MD *EVP_sha(void); const EVP_MD *EVP_sha1(void); + const EVP_MD *EVP_sha224(void); + const EVP_MD *EVP_sha256(void); + const EVP_MD *EVP_sha384(void); + const EVP_MD *EVP_sha512(void); const EVP_MD *EVP_dss(void); const EVP_MD *EVP_dss1(void); const EVP_MD *EVP_mdc2(void); @@ -70,7 +75,7 @@ EVP_MD_CTX_create() allocates, initializ EVP_DigestInit_ex() sets up digest context B to use a digest B from ENGINE B. B must be initialized before calling this -function. B will typically be supplied by a functionsuch as EVP_sha1(). +function. B will typically be supplied by a function such as EVP_sha1(). If B is NULL then the default implementation of digest B is used. EVP_DigestUpdate() hashes B bytes of data at B into the @@ -127,9 +132,11 @@ with this digest. For example EVP_sha1() return B. This "link" between digests and signature algorithms may not be retained in future versions of OpenSSL. -EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_mdc2() and EVP_ripemd160() -return B structures for the MD2, MD5, SHA, SHA1, MDC2 and RIPEMD160 digest -algorithms respectively. The associated signature algorithm is RSA in each case. +EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(), +EVP_sha384(), EVP_sha512(), EVP_mdc2() and EVP_ripemd160() +return B structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384, +SHA512, MDC2 and RIPEMD160 digest algorithms respectively. The associated +signature algorithm is RSA in each case. EVP_dss() and EVP_dss1() return B structures for SHA and SHA1 digest algorithms but using DSS (DSA) for the signature algorithm. @@ -156,7 +163,8 @@ EVP_MD_size(), EVP_MD_block_size(), EVP_ EVP_MD_CTX_block_size() and EVP_MD_block_size() return the digest or block size in bytes. -EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(), +EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), +EVP_sha224(), EVP_sha256(), EVP_sha384(), EVP_sha512(), EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the corresponding EVP_MD structures. diff -up openssl-0.9.8k/doc/crypto/EVP_EncryptInit.pod.algo-doc openssl-0.9.8k/doc/crypto/EVP_EncryptInit.pod --- openssl-0.9.8k/doc/crypto/EVP_EncryptInit.pod.algo-doc 2005-04-15 18:01:35.000000000 +0200 +++ openssl-0.9.8k/doc/crypto/EVP_EncryptInit.pod 2009-06-30 12:04:47.000000000 +0200 @@ -91,6 +91,32 @@ EVP_CIPHER_CTX_set_padding - EVP cipher int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type); int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type); + const EVP_CIPHER *EVP_des_ede3(void); + const EVP_CIPHER *EVP_des_ede3_ecb(void); + const EVP_CIPHER *EVP_des_ede3_cfb64(void); + const EVP_CIPHER *EVP_des_ede3_cfb1(void); + const EVP_CIPHER *EVP_des_ede3_cfb8(void); + const EVP_CIPHER *EVP_des_ede3_ofb(void); + const EVP_CIPHER *EVP_des_ede3_cbc(void); + const EVP_CIPHER *EVP_aes_128_ecb(void); + const EVP_CIPHER *EVP_aes_128_cbc(void); + const EVP_CIPHER *EVP_aes_128_cfb1(void); + const EVP_CIPHER *EVP_aes_128_cfb8(void); + const EVP_CIPHER *EVP_aes_128_cfb128(void); + const EVP_CIPHER *EVP_aes_128_ofb(void); + const EVP_CIPHER *EVP_aes_192_ecb(void); + const EVP_CIPHER *EVP_aes_192_cbc(void); + const EVP_CIPHER *EVP_aes_192_cfb1(void); + const EVP_CIPHER *EVP_aes_192_cfb8(void); + const EVP_CIPHER *EVP_aes_192_cfb128(void); + const EVP_CIPHER *EVP_aes_192_ofb(void); + const EVP_CIPHER *EVP_aes_256_ecb(void); + const EVP_CIPHER *EVP_aes_256_cbc(void); + const EVP_CIPHER *EVP_aes_256_cfb1(void); + const EVP_CIPHER *EVP_aes_256_cfb8(void); + const EVP_CIPHER *EVP_aes_256_cfb128(void); + const EVP_CIPHER *EVP_aes_256_ofb(void); + =head1 DESCRIPTION The EVP cipher routines are a high level interface to certain @@ -297,6 +323,18 @@ Three key triple DES in CBC, ECB, CFB an DESX algorithm in CBC mode. +=item EVP_aes_128_cbc(void), EVP_aes_128_ecb(), EVP_aes_128_ofb(void), EVP_aes_128_cfb1(void), EVP_aes_128_cfb8(void), EVP_aes_128_cfb128(void) + +AES with 128 bit key length in CBC, ECB, OFB and CFB modes respectively. + +=item EVP_aes_192_cbc(void), EVP_aes_192_ecb(), EVP_aes_192_ofb(void), EVP_aes_192_cfb1(void), EVP_aes_192_cfb8(void), EVP_aes_192_cfb128(void) + +AES with 192 bit key length in CBC, ECB, OFB and CFB modes respectively. + +=item EVP_aes_256_cbc(void), EVP_aes_256_ecb(), EVP_aes_256_ofb(void), EVP_aes_256_cfb1(void), EVP_aes_256_cfb8(void), EVP_aes_256_cfb128(void) + +AES with 256 bit key length in CBC, ECB, OFB and CFB modes respectively. + =item EVP_rc4(void) RC4 stream cipher. This is a variable key length cipher with default key length 128 bits. From pkgdb at fedoraproject.org Wed Jul 1 09:54:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:54:43 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095443.9343F10F893@bastion2.fedora.phx.redhat.com> rezso has set the watchbugzilla acl on openlayers (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:54:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:54:44 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095444.B36BE10F899@bastion2.fedora.phx.redhat.com> rezso has set the watchcommits acl on openlayers (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:54:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:54:44 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095445.7043B10F8A3@bastion2.fedora.phx.redhat.com> rezso has set the commit acl on openlayers (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:54:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:54:46 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095446.A632D10F8A7@bastion2.fedora.phx.redhat.com> rezso has set the approveacls acl on openlayers (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:54:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:54:52 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095452.DEA1010F8AA@bastion2.fedora.phx.redhat.com> rezso has set the approveacls acl on openlayers (Fedora devel) to Denied for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:55:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:55:11 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095511.90F2610F88E@bastion2.fedora.phx.redhat.com> rezso has set the watchbugzilla acl on openlayers (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:55:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:55:12 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095512.9EFCC10F898@bastion2.fedora.phx.redhat.com> rezso has set the watchcommits acl on openlayers (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From pkgdb at fedoraproject.org Wed Jul 1 09:55:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 09:55:13 +0000 Subject: [pkgdb] openlayers had acl change status Message-ID: <20090701095513.D595010F8A3@bastion2.fedora.phx.redhat.com> rezso has set the commit acl on openlayers (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openlayers From mcrha at fedoraproject.org Wed Jul 1 09:58:44 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Wed, 1 Jul 2009 09:58:44 +0000 (UTC) Subject: rpms/evolution-data-server/devel evolution-data-server.spec, 1.264, 1.265 Message-ID: <20090701095844.E14EB11C02C3@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9909 Modified Files: evolution-data-server.spec Log Message: Rebuild against newer gcc Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v retrieving revision 1.264 retrieving revision 1.265 diff -u -p -r1.264 -r1.265 --- evolution-data-server.spec 15 Jun 2009 15:45:49 -0000 1.264 +++ evolution-data-server.spec 1 Jul 2009 09:58:14 -0000 1.265 @@ -28,7 +28,7 @@ Name: evolution-data-server Version: 2.27.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -361,6 +361,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 +- Rebuild against newer gcc + * Mon Jun 15 2009 Matthew Barnes - 2.27.3-1.fc12 - Update to 2.27.3 From pkgdb at fedoraproject.org Wed Jul 1 10:00:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:00:44 +0000 Subject: [pkgdb] mc: hubbitus has requested watchbugzilla Message-ID: <20090701100044.DDAA410F88C@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchbugzilla acl on mc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 10:00:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:00:48 +0000 Subject: [pkgdb] mc: hubbitus has requested watchcommits Message-ID: <20090701100048.3DA3E10F896@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchcommits acl on mc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 10:00:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:00:55 +0000 Subject: [pkgdb] mc: hubbitus has requested watchbugzilla Message-ID: <20090701100055.BE0A610F89C@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchbugzilla acl on mc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 10:00:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:00:58 +0000 Subject: [pkgdb] mc: hubbitus has requested watchcommits Message-ID: <20090701100058.7D4B810F88C@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchcommits acl on mc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 10:01:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:01:19 +0000 Subject: [pkgdb] mc: hubbitus has requested watchbugzilla Message-ID: <20090701100119.5514910F88C@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchbugzilla acl on mc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 10:01:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:01:19 +0000 Subject: [pkgdb] mc: hubbitus has requested watchcommits Message-ID: <20090701100119.6AE6110F899@bastion2.fedora.phx.redhat.com> hubbitus has requested the watchcommits acl on mc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From lucilanga at fedoraproject.org Wed Jul 1 10:01:20 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 10:01:20 +0000 (UTC) Subject: rpms/soundmodem/F-11 .cvsignore, 1.3, 1.4 soundmodem.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090701100120.8BF2511C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/soundmodem/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10722 Modified Files: .cvsignore soundmodem.spec sources Log Message: * Wed Jul 01 2009 Lucian Langa - 0.14-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Feb 2009 18:11:32 -0000 1.3 +++ .cvsignore 1 Jul 2009 10:00:50 -0000 1.4 @@ -1 +1 @@ -soundmodem-0.12.tar.gz +soundmodem-0.14.tar.gz Index: soundmodem.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-11/soundmodem.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- soundmodem.spec 26 Feb 2009 02:09:48 -0000 1.6 +++ soundmodem.spec 1 Jul 2009 10:00:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: soundmodem -Version: 0.12 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Soundcard Packet Radio Modem Group: Applications/Communications License: GPLv2+ @@ -74,10 +74,10 @@ fi %files -f %{name}.lang %defattr(-, root, root, -) -%{_prefix}/sbin/* -%{_prefix}/bin/* -%{_prefix}/share/man/*/* -%{_sysconfdir}/rc.d/init.d/soundmodem +%{_sbindir}/* +%{_bindir}/* +%{_mandir}/*/* +%{_initddir}/soundmodem %doc AUTHORS COPYING ChangeLog NEWS README newqpsk/README.newqpsk %files devel @@ -85,6 +85,9 @@ fi %{_includedir}/%{name} %changelog +* Wed Jul 01 2009 Lucian Langa - 0.14-1 +- new upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Feb 2009 18:11:32 -0000 1.3 +++ sources 1 Jul 2009 10:00:50 -0000 1.4 @@ -1 +1 @@ -b2c222cf4ae16bbdbdc85de56cf7f850 soundmodem-0.12.tar.gz +67c501aea27a72da303a86333582d57e soundmodem-0.14.tar.gz From hadess at fedoraproject.org Wed Jul 1 10:01:38 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 1 Jul 2009 10:01:38 +0000 (UTC) Subject: rpms/gnome-media/F-11 .cvsignore, 1.51, 1.52 gnome-media.spec, 1.172, 1.173 sources, 1.50, 1.51 0001-Don-t-show-debug-output-when-disabling-debugging.patch, 1.1, NONE fix-alignment-of-sliders.patch, 1.2, NONE gnome-media-add-100-mark.patch, 1.1, NONE gvc-cramped-balance.patch, 1.1, NONE gvc-set-default-output-instant.patch, 1.1, NONE Message-ID: <20090701100138.2387311C02C3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-media/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10845 Modified Files: .cvsignore gnome-media.spec sources Removed Files: 0001-Don-t-show-debug-output-when-disabling-debugging.patch fix-alignment-of-sliders.patch gnome-media-add-100-mark.patch gvc-cramped-balance.patch gvc-set-default-output-instant.patch Log Message: * Wed Jul 01 2009 Bastien Nocera 2.27.3.1-1 - Update to 2.27.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/F-11/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 17 Mar 2009 01:39:53 -0000 1.51 +++ .cvsignore 1 Jul 2009 10:01:07 -0000 1.52 @@ -1 +1 @@ -gnome-media-2.26.0.tar.bz2 +gnome-media-2.27.3.1.tar.bz2 Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/F-11/gnome-media.spec,v retrieving revision 1.172 retrieving revision 1.173 diff -u -p -r1.172 -r1.173 --- gnome-media.spec 2 May 2009 01:06:49 -0000 1.172 +++ gnome-media.spec 1 Jul 2009 10:01:07 -0000 1.173 @@ -13,22 +13,11 @@ Summary: GNOME media programs Name: gnome-media -Version: 2.26.0 -Release: 6%{?dist} +Version: 2.27.3.1 +Release: 1%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.26/gnome-media-%{version}.tar.bz2 -# http://bugzilla.gnome.org/show_bug.cgi?id=574312 -Patch3: gnome-media-add-100-mark.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=579115 -Patch4: fix-alignment-of-sliders.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=493138 -Patch5: 0001-Don-t-show-debug-output-when-disabling-debugging.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=581024 -# https://bugzilla.redhat.com/show_bug.cgi?id=489049 -Patch6: gvc-set-default-output-instant.patch -# fixed upstream -Patch7: gvc-cramped-balance.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Obsoletes: gnome @@ -85,13 +74,6 @@ in GNOME media applications. %prep %setup -q -pushd gnome-volume-control/src -%patch3 -p0 -b .amplified-mark -popd -%patch4 -p1 -b .fix-alignment-of-sliders -%patch5 -p1 -b .debug -%patch6 -p1 -b .move-streams -%patch7 -p1 -b .cramped-balance %build # try to work around a problem where gst-inspect does @@ -265,6 +247,9 @@ scrollkeeper-update -q || : %{_libdir}/pkgconfig/* %changelog +* Wed Jul 01 2009 Bastien Nocera 2.27.3.1-1 +- Update to 2.27.3.1 + * Fri May 1 2009 Matthias Clasen 2.26.0-6 - Fix cramped appearance of the balance slider Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/F-11/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 17 Mar 2009 01:39:53 -0000 1.50 +++ sources 1 Jul 2009 10:01:07 -0000 1.51 @@ -1 +1 @@ -3d519bc7d812aed8f6e4288b6d3cdf26 gnome-media-2.26.0.tar.bz2 +426bb62bf75898a95458ce8438c35e83 gnome-media-2.27.3.1.tar.bz2 --- 0001-Don-t-show-debug-output-when-disabling-debugging.patch DELETED --- --- fix-alignment-of-sliders.patch DELETED --- --- gnome-media-add-100-mark.patch DELETED --- --- gvc-cramped-balance.patch DELETED --- --- gvc-set-default-output-instant.patch DELETED --- From mcrha at fedoraproject.org Wed Jul 1 10:32:51 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Wed, 1 Jul 2009 10:32:51 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.395,1.396 Message-ID: <20090701103252.0052A11C02C3@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17932 Modified Files: evolution.spec Log Message: Rebuild against newer gcc Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.395 retrieving revision 1.396 diff -u -p -r1.395 -r1.396 --- evolution.spec 23 Jun 2009 14:39:48 -0000 1.395 +++ evolution.spec 1 Jul 2009 10:32:21 -0000 1.396 @@ -42,7 +42,7 @@ Name: evolution Version: 2.27.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -673,6 +673,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Wed Jul 01 2009 Milan Crha - 2.27.3-3.fc12 +- Rebuild against newer gcc + * Tue Jun 23 2009 Matthew Barnes - 2.27.3-2.fc12 - Add patch to allow Anjal to build. From jmoskovc at fedoraproject.org Wed Jul 1 10:33:44 2009 From: jmoskovc at fedoraproject.org (=?utf-8?b?SmnFmcOtIE1vc2tvdsSNw6Fr?=) Date: Wed, 1 Jul 2009 10:33:44 +0000 (UTC) Subject: rpms/sed/F-11 sed-4.2.1-dummyparam.diff, NONE, 1.1 .cvsignore, 1.12, 1.13 sed.spec, 1.47, 1.48 sources, 1.12, 1.13 Message-ID: <20090701103344.C21AD11C02C3@cvs1.fedora.phx.redhat.com> Author: jmoskovc Update of /cvs/extras/rpms/sed/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18032 Modified Files: .cvsignore sed.spec sources Added Files: sed-4.2.1-dummyparam.diff Log Message: Updated to new version 4.2.1 Resolves: #502934 sed-4.2.1-dummyparam.diff: --- NEW FILE sed-4.2.1-dummyparam.diff --- --- sed-4.2.1/sed/sed.c 2009-06-03 21:10:51.000000000 +0200 +++ sed-4.2.1_copy/sed/sed.c 2009-06-30 14:12:28.000000000 +0200 @@ -174,11 +174,11 @@ main(argc, argv) char **argv; { #ifdef REG_PERL -#define SHORTOPTS "bsnrRuEe:f:l:i::V:" +#define SHORTOPTS "cbsnrRuEe:f:l:i::V:" #else -#define SHORTOPTS "bsnruEe:f:l:i::V:" +#define SHORTOPTS "cbsnruEe:f:l:i::V:" #endif - +/* -c --copy is just a dummy param to keep backward compatibility */ static struct option longopts[] = { {"binary", 0, NULL, 'b'}, {"regexp-extended", 0, NULL, 'r'}, @@ -196,6 +196,7 @@ main(argc, argv) {"unbuffered", 0, NULL, 'u'}, {"version", 0, NULL, 'v'}, {"help", 0, NULL, 'h'}, + {"copy", 0, NULL, 'c'}, #ifdef ENABLE_FOLLOW_SYMLINKS {"follow-symlinks", 0, NULL, 'F'}, #endif Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/sed/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 6 Feb 2006 08:39:50 -0000 1.12 +++ .cvsignore 1 Jul 2009 10:33:44 -0000 1.13 @@ -1,2 +1 @@ -sed-4.1.4.tar.gz -sed-4.1.5.tar.gz +sed-4.2.1.tar.gz Index: sed.spec =================================================================== RCS file: /cvs/extras/rpms/sed/F-11/sed.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sed.spec 26 Feb 2009 00:23:10 -0000 1.47 +++ sed.spec 1 Jul 2009 10:33:44 -0000 1.48 @@ -5,16 +5,14 @@ Summary: A GNU stream text editor Name: sed -Version: 4.1.5 -Release: 12%{?dist} +Version: 4.2.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Text URL: http://sed.sourceforge.net/ Source0: ftp://ftp.gnu.org/pub/gnu/sed/sed-%{version}.tar.gz Source1: http://sed.sourceforge.net/sedfaq.txt -Patch0: sed-4.1.5-utf8performance.patch -Patch1: sed-4.1.5-follow.patch -Patch2: sed-4.1.5-copy.patch +Patch0: sed-4.2.1-dummyparam.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glibc-devel Requires(post): /sbin/install-info @@ -30,8 +28,6 @@ specified in a script file or from the c %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p1 %build %configure --without-included-regex @@ -70,6 +66,12 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Mon Jun 29 2009 Jiri Moskovcak 4.2.1-1 +- new version +- obsoletes previous patches +- added patch to maintain backwards compatibility for scripts using -c/--copy +- Resolves: #502934 + * Wed Feb 25 2009 Fedora Release Engineering - 4.1.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/sed/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 6 Feb 2006 08:39:50 -0000 1.12 +++ sources 1 Jul 2009 10:33:44 -0000 1.13 @@ -1 +1 @@ -7a1cbbbb3341287308e140bd4834c3ba sed-4.1.5.tar.gz +f0fd4d7da574d4707e442285fd2d3b86 sed-4.2.1.tar.gz From pkgdb at fedoraproject.org Wed Jul 1 10:34:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:34:31 +0000 Subject: [pkgdb] plymouth: thomasj has requested watchbugzilla Message-ID: <20090701103431.839E910F893@bastion2.fedora.phx.redhat.com> thomasj has requested the watchbugzilla acl on plymouth (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plymouth From pkgdb at fedoraproject.org Wed Jul 1 10:34:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:34:44 +0000 Subject: [pkgdb] plymouth: thomasj has requested watchbugzilla Message-ID: <20090701103444.28C1D10F88E@bastion2.fedora.phx.redhat.com> thomasj has requested the watchbugzilla acl on plymouth (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plymouth From pkgdb at fedoraproject.org Wed Jul 1 10:34:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:34:47 +0000 Subject: [pkgdb] plymouth: thomasj has requested watchbugzilla Message-ID: <20090701103447.49E6B10F89C@bastion2.fedora.phx.redhat.com> thomasj has requested the watchbugzilla acl on plymouth (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plymouth From mcrha at fedoraproject.org Wed Jul 1 10:41:52 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Wed, 1 Jul 2009 10:41:52 +0000 (UTC) Subject: rpms/gtkhtml3/devel gtkhtml3.spec,1.152,1.153 Message-ID: <20090701104152.5236911C02C3@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/gtkhtml3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20101 Modified Files: gtkhtml3.spec Log Message: Rebuild against newer gcc Index: gtkhtml3.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/gtkhtml3.spec,v retrieving revision 1.152 retrieving revision 1.153 diff -u -p -r1.152 -r1.153 --- gtkhtml3.spec 15 Jun 2009 15:17:57 -0000 1.152 +++ gtkhtml3.spec 1 Jul 2009 10:41:21 -0000 1.153 @@ -7,7 +7,7 @@ Name: gtkhtml3 Version: 3.27.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries Summary: GtkHTML library License: LGPLv2+ and GPLv2 @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 01 2009 Milan Crha - 3.27.3-2.fc12 +- Rebuild against newer gcc + * Mon Jun 15 2009 Matthew Barnes - 3.27.3-1.fc12 - Update to 3.27.3 From jmoskovc at fedoraproject.org Wed Jul 1 10:42:17 2009 From: jmoskovc at fedoraproject.org (=?utf-8?b?SmnFmcOtIE1vc2tvdsSNw6Fr?=) Date: Wed, 1 Jul 2009 10:42:17 +0000 (UTC) Subject: rpms/sed/devel sed-4.2.1-dummyparam.diff, NONE, 1.1 .cvsignore, 1.12, 1.13 sed.spec, 1.47, 1.48 sources, 1.12, 1.13 Message-ID: <20090701104217.E1E2111C02C3@cvs1.fedora.phx.redhat.com> Author: jmoskovc Update of /cvs/extras/rpms/sed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20318 Modified Files: .cvsignore sed.spec sources Added Files: sed-4.2.1-dummyparam.diff Log Message: Update to version 4.2.1 sed-4.2.1-dummyparam.diff: --- NEW FILE sed-4.2.1-dummyparam.diff --- --- sed-4.2.1/sed/sed.c 2009-06-03 21:10:51.000000000 +0200 +++ sed-4.2.1_copy/sed/sed.c 2009-06-30 14:12:28.000000000 +0200 @@ -174,11 +174,11 @@ main(argc, argv) char **argv; { #ifdef REG_PERL -#define SHORTOPTS "bsnrRuEe:f:l:i::V:" +#define SHORTOPTS "cbsnrRuEe:f:l:i::V:" #else -#define SHORTOPTS "bsnruEe:f:l:i::V:" +#define SHORTOPTS "cbsnruEe:f:l:i::V:" #endif - +/* -c --copy is just a dummy param to keep backward compatibility */ static struct option longopts[] = { {"binary", 0, NULL, 'b'}, {"regexp-extended", 0, NULL, 'r'}, @@ -196,6 +196,7 @@ main(argc, argv) {"unbuffered", 0, NULL, 'u'}, {"version", 0, NULL, 'v'}, {"help", 0, NULL, 'h'}, + {"copy", 0, NULL, 'c'}, #ifdef ENABLE_FOLLOW_SYMLINKS {"follow-symlinks", 0, NULL, 'F'}, #endif Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/sed/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 6 Feb 2006 08:39:50 -0000 1.12 +++ .cvsignore 1 Jul 2009 10:42:17 -0000 1.13 @@ -1,2 +1 @@ -sed-4.1.4.tar.gz -sed-4.1.5.tar.gz +sed-4.2.1.tar.gz Index: sed.spec =================================================================== RCS file: /cvs/extras/rpms/sed/devel/sed.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sed.spec 26 Feb 2009 00:23:10 -0000 1.47 +++ sed.spec 1 Jul 2009 10:42:17 -0000 1.48 @@ -5,16 +5,14 @@ Summary: A GNU stream text editor Name: sed -Version: 4.1.5 -Release: 12%{?dist} +Version: 4.2.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Text URL: http://sed.sourceforge.net/ Source0: ftp://ftp.gnu.org/pub/gnu/sed/sed-%{version}.tar.gz Source1: http://sed.sourceforge.net/sedfaq.txt -Patch0: sed-4.1.5-utf8performance.patch -Patch1: sed-4.1.5-follow.patch -Patch2: sed-4.1.5-copy.patch +Patch0: sed-4.2.1-dummyparam.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glibc-devel Requires(post): /sbin/install-info @@ -30,8 +28,6 @@ specified in a script file or from the c %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p1 %build %configure --without-included-regex @@ -70,6 +66,12 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Mon Jun 29 2009 Jiri Moskovcak - 4.2.1-1 +- new version +- obsoletes previous patches +- added patch to maintain backwards compatibility for scripts using -c/--copy +- Resolves: #502934 + * Wed Feb 25 2009 Fedora Release Engineering - 4.1.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/sed/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 6 Feb 2006 08:39:50 -0000 1.12 +++ sources 1 Jul 2009 10:42:17 -0000 1.13 @@ -1 +1 @@ -7a1cbbbb3341287308e140bd4834c3ba sed-4.1.5.tar.gz +f0fd4d7da574d4707e442285fd2d3b86 sed-4.2.1.tar.gz From pkgdb at fedoraproject.org Wed Jul 1 10:44:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:44:38 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested commit Message-ID: <20090701104438.75F7010F88E@bastion2.fedora.phx.redhat.com> mcrha has requested the commit acl on evolution-exchange (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:44:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:44:55 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested approveacls Message-ID: <20090701104455.BDB8610F893@bastion2.fedora.phx.redhat.com> mcrha has requested the approveacls acl on evolution-exchange (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:44:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:44:56 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested watchcommits Message-ID: <20090701104456.A980710F899@bastion2.fedora.phx.redhat.com> mcrha has requested the watchcommits acl on evolution-exchange (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:44:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:44:57 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested watchbugzilla Message-ID: <20090701104458.1068410F8A4@bastion2.fedora.phx.redhat.com> mcrha has requested the watchbugzilla acl on evolution-exchange (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:45:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:45:14 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested watchbugzilla Message-ID: <20090701104514.3BC5710F893@bastion2.fedora.phx.redhat.com> mcrha has requested the watchbugzilla acl on evolution-exchange (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:45:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:45:14 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested watchcommits Message-ID: <20090701104514.AF25D10F8A6@bastion2.fedora.phx.redhat.com> mcrha has requested the watchcommits acl on evolution-exchange (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:45:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:45:15 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested commit Message-ID: <20090701104515.203EC10F8A9@bastion2.fedora.phx.redhat.com> mcrha has requested the commit acl on evolution-exchange (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:45:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:45:15 +0000 Subject: [pkgdb] evolution-exchange: mcrha has requested approveacls Message-ID: <20090701104515.D135910F8AC@bastion2.fedora.phx.redhat.com> mcrha has requested the approveacls acl on evolution-exchange (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:35 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104835.9F83410F88C@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-exchange (Fedora devel) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:38 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104838.8680C10F896@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-exchange (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:40 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104840.571BC10F899@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-exchange (Fedora devel) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:42 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104842.5E20F10F8A3@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-exchange (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:44 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104844.9E6AB10F8A6@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-exchange (Fedora devel) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:47 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104846.F2F0F10F8A9@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-exchange (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:50 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104849.E5F3F10F88C@bastion2.fedora.phx.redhat.com> mbarnes has set the approveacls acl on evolution-exchange (Fedora devel) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:52 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104852.AFC3710F8AC@bastion2.fedora.phx.redhat.com> mbarnes has set the approveacls acl on evolution-exchange (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:48:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:48:59 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104859.2F5C410F8AE@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-exchange (Fedora 11) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:00 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104901.0183610F896@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-exchange (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:02 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104902.D9BB110F8AF@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-exchange (Fedora 11) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:04 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104905.006D910F8B2@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-exchange (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:07 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104907.1AF7010F8B4@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-exchange (Fedora 11) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:09 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104909.6376210F8B6@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-exchange (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:11 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104911.DE60110F8A2@bastion2.fedora.phx.redhat.com> mbarnes has set the approveacls acl on evolution-exchange (Fedora 11) to Approved for mbarnes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From pkgdb at fedoraproject.org Wed Jul 1 10:49:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 10:49:13 +0000 Subject: [pkgdb] evolution-exchange had acl change status Message-ID: <20090701104913.8ED4310F8B8@bastion2.fedora.phx.redhat.com> mbarnes has set the approveacls acl on evolution-exchange (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-exchange From jsafrane at fedoraproject.org Wed Jul 1 11:04:02 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 1 Jul 2009 11:04:02 +0000 (UTC) Subject: rpms/net-snmp/devel net-snmp.redhat.conf, 1.2, 1.3 net-snmp.spec, 1.180, 1.181 net-snmpd.sysconfig, 1.1, 1.2 Message-ID: <20090701110402.316FB11C02C3@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/net-snmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25398 Modified Files: net-snmp.redhat.conf net-snmp.spec net-snmpd.sysconfig Log Message: make the default configuration less noisy, i.e. do not print "Connection from UDP:" and "Received SNMP packet(s) from UDP:" messages on each connection. Resolves: #509055 Index: net-snmp.redhat.conf =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.redhat.conf,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- net-snmp.redhat.conf 28 Jun 2007 08:55:26 -0000 1.2 +++ net-snmp.redhat.conf 1 Jul 2009 11:03:31 -0000 1.3 @@ -173,6 +173,16 @@ syscontact Root (config # system.sysServices.0 = 72 +############################################################################### +# Logging +# + +# We do not want annoying "Connection from UDP: " messages in syslog. +# If the following option is commented out, snmpd will print each incoming +# connection, which can be useful for debugging. + +dontLogTCPWrappersConnects yes + # ----------------------------------------------------------------------------- Index: net-snmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.spec,v retrieving revision 1.180 retrieving revision 1.181 diff -u -p -r1.180 -r1.181 --- net-snmp.spec 18 May 2009 10:21:21 -0000 1.180 +++ net-snmp.spec 1 Jul 2009 11:03:31 -0000 1.181 @@ -8,7 +8,7 @@ Summary: A collection of SNMP protocol tools and libraries Name: net-snmp Version: %{major_ver} -Release: 11%{?dist} +Release: 12%{?dist} Epoch: 1 License: BSD and MIT @@ -423,6 +423,11 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/snmp/mibs %changelog +* Wed Jul 1 2009 Jan Safranek 5.4.2.1-12 +- make the default configuration less noisy, i.e. do not print "Connection from + UDP:" and "Received SNMP packet(s) from UDP:" messages on each connection. + (#509055) + * Mon May 18 2009 Jan Safranek 5.4.2.1-11 - fix divison-by-zero in cpu statistics (#501210) Index: net-snmpd.sysconfig =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmpd.sysconfig,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- net-snmpd.sysconfig 12 Feb 2008 15:28:05 -0000 1.1 +++ net-snmpd.sysconfig 1 Jul 2009 11:03:31 -0000 1.2 @@ -1,2 +1,2 @@ # snmpd command line options -# OPTIONS="-Lsd -Lf /dev/null -p /var/run/snmpd.pid -a" +# OPTIONS="-Lsd -Lf /dev/null -p /var/run/snmpd.pid" From mcrha at fedoraproject.org Wed Jul 1 11:10:46 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Wed, 1 Jul 2009 11:10:46 +0000 (UTC) Subject: rpms/evolution-exchange/devel evolution-exchange.spec,1.63,1.64 Message-ID: <20090701111047.0BF1611C02C3@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-exchange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26886 Modified Files: evolution-exchange.spec Log Message: Rebuild against newer gcc Index: evolution-exchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/evolution-exchange.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- evolution-exchange.spec 15 Jun 2009 15:48:51 -0000 1.63 +++ evolution-exchange.spec 1 Jul 2009 11:10:15 -0000 1.64 @@ -18,7 +18,7 @@ Name: evolution-exchange Version: 2.27.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Evolution plugin to interact with MS Exchange Server License: GPLv2+ @@ -121,6 +121,9 @@ gconftool-2 --makefile-install-rule %{_s %{_sysconfdir}/gconf/schemas/apps_exchange_addressbook-%{evo_major}.schemas %changelog +* Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 +- Rebuild against newer gcc + * Mon Jun 15 2009 Matthew Barnes - 2.27.3-1.fc12 - Update to 2.27.3 From jmoskovc at fedoraproject.org Wed Jul 1 11:20:45 2009 From: jmoskovc at fedoraproject.org (=?utf-8?b?SmnFmcOtIE1vc2tvdsSNw6Fr?=) Date: Wed, 1 Jul 2009 11:20:45 +0000 (UTC) Subject: rpms/usbutils/devel usbutils-0.82-hwdata.patch, NONE, 1.1 usbutils.spec, 1.26, 1.27 Message-ID: <20090701112045.4A80811C02C3@cvs1.fedora.phx.redhat.com> Author: jmoskovc Update of /cvs/extras/rpms/usbutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29909 Modified Files: usbutils.spec Added Files: usbutils-0.82-hwdata.patch Log Message: Fixed path to usb.ids Resolves: #506974 usbutils-0.82-hwdata.patch: --- NEW FILE usbutils-0.82-hwdata.patch --- --- usbutils-0.82/Makefile.am 2009-05-07 00:05:10.000000000 +0200 +++ usbutils-0.82_hwdata/Makefile.am 2009-07-01 13:05:11.000000000 +0200 @@ -1,18 +1,9 @@ AM_LDFLAGS = \ -Wl,--as-needed -data_DATA = \ - usb.ids -if HAVE_ZLIB -data_DATA += usb.ids.gz -endif - sbin_PROGRAMS = \ lsusb -sbin_SCRIPTS = \ - update-usbids.sh - lsusb_SOURCES = \ lsusb.c \ lsusb-t.c \ @@ -23,7 +14,7 @@ lsusb_SOURCES = \ lsusb_CPPFLAGS = \ $(AM_CPPFLAGS) \ - -DDATADIR=\"$(datadir)\" + -DDATADIR=\"$(datadir)/hwdata\" lsusb_LDADD = \ $(LIBUSB_LIBS) @@ -32,18 +23,9 @@ man_MANS = \ lsusb.8 EXTRA_DIST = \ - usb.ids \ - update-usbids.sh.in \ lsusb.8.in \ usbutils.pc.in -usb.ids.gz: $(srcdir)/usb.ids - gzip -c -9 $< > $@ - -update-usbids.sh: $(srcdir)/update-usbids.sh.in - sed 's|@usbids@|$(datadir)/usb.ids|g' $< >$@ - chmod 755 $@ - lsusb.8: $(srcdir)/lsusb.8.in sed 's|@usbids@|$(datadir)/usb.ids|g' $< >$@ @@ -54,9 +36,7 @@ usbutils.pc: $(srcdir)/usbutils.pc.in sed 's|@usbids@|$(datadir)/usb.ids|g;s|@VERSION[@]|$(VERSION)|g' $< >$@ DISTCLEANFILES = \ - usb.ids.gz \ lsusb.8 \ - update-usbids.sh \ usbutils.pc distclean-local: Index: usbutils.spec =================================================================== RCS file: /cvs/extras/rpms/usbutils/devel/usbutils.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- usbutils.spec 25 May 2009 11:15:29 -0000 1.26 +++ usbutils.spec 1 Jul 2009 11:20:44 -0000 1.27 @@ -1,6 +1,6 @@ Name: usbutils Version: 0.82 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://downloads.sourceforge.net/linux-usb/%{name}-%{version}.tar.gz URL: http://www.linux-usb.org/ License: GPLv2+ @@ -12,6 +12,7 @@ Summary: Linux USB utilities Group: Applications/System Conflicts: hotplug < 3:2002_01_14-2 ExcludeArch: s390 s390x +Patch0: usbutils-0.82-hwdata.patch %description This package contains utilities for inspecting devices connected to a @@ -19,6 +20,7 @@ USB bus. %prep %setup -q +%patch0 -p1 %build %configure --sbindir=/sbin @@ -29,8 +31,6 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" # usb.ids is shipped in hwdata; nuke and adjust .pc file -rm -f $RPM_BUILD_ROOT%{_datadir}/usb.ids* -rm -f $RPM_BUILD_ROOT/sbin/update-usbids.sh sed -i 's|usbids=/usr/share/usb.ids|usbids=/usr/share/hwdata/usb.ids|' $RPM_BUILD_ROOT%{_libdir}/pkgconfig/usbutils.pc %files @@ -44,6 +44,10 @@ sed -i 's|usbids=/usr/share/usb.ids|usbi rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 Jiri Moskovcak 0.82-2 +- minor fix in Makefile.am to properly find usb.ids from hwdata +- Resolves: #506974 + * Fri May 22 2009 David Zeuthen 0.82-1 - Update to 0.82 From lucilanga at fedoraproject.org Wed Jul 1 11:25:00 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 11:25:00 +0000 (UTC) Subject: rpms/soundmodem/F-10 .cvsignore, 1.3, 1.4 soundmodem.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090701112500.E15FD11C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/soundmodem/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30878 Modified Files: .cvsignore soundmodem.spec sources Log Message: * Wed Jul 01 2009 Lucian Langa - 0.14-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Feb 2009 18:17:14 -0000 1.3 +++ .cvsignore 1 Jul 2009 11:24:30 -0000 1.4 @@ -1 +1 @@ -soundmodem-0.12.tar.gz +soundmodem-0.14.tar.gz Index: soundmodem.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-10/soundmodem.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- soundmodem.spec 19 Feb 2009 19:35:24 -0000 1.4 +++ soundmodem.spec 1 Jul 2009 11:24:30 -0000 1.5 @@ -1,5 +1,5 @@ Name: soundmodem -Version: 0.12 +Version: 0.14 Release: 1%{?dist} Summary: Soundcard Packet Radio Modem Group: Applications/Communications @@ -74,10 +74,10 @@ fi %files -f %{name}.lang %defattr(-, root, root, -) -%{_prefix}/sbin/* -%{_prefix}/bin/* -%{_prefix}/share/man/*/* -%{_sysconfdir}/rc.d/init.d/soundmodem +%{_sbindir}/* +%{_bindir}/* +%{_mandir}/*/* +%{_initddir}/soundmodem %doc AUTHORS COPYING ChangeLog NEWS README newqpsk/README.newqpsk %files devel @@ -85,6 +85,9 @@ fi %{_includedir}/%{name} %changelog +* Wed Jul 01 2009 Lucian Langa - 0.14-1 +- new upstream release + * Thu Feb 19 2009 Lucian Langa - 0.12-1 - update BR - drop autoreconf Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Feb 2009 18:17:14 -0000 1.3 +++ sources 1 Jul 2009 11:24:30 -0000 1.4 @@ -1 +1 @@ -b2c222cf4ae16bbdbdc85de56cf7f850 soundmodem-0.12.tar.gz +67c501aea27a72da303a86333582d57e soundmodem-0.14.tar.gz From twaugh at fedoraproject.org Wed Jul 1 11:28:21 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 1 Jul 2009 11:28:21 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3231.patch,NONE,1.1 cups.spec,1.480,1.481 Message-ID: <20090701112821.67D4F11C02C3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31701 Modified Files: cups.spec Added Files: cups-str3231.patch Log Message: * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 - Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). cups-str3231.patch: --- NEW FILE cups-str3231.patch --- diff -up cups-1.4rc1/cups/request.c.str3231 cups-1.4rc1/cups/request.c --- cups-1.4rc1/cups/request.c.str3231 2009-06-29 10:07:23.568486428 +0100 +++ cups-1.4rc1/cups/request.c 2009-06-29 10:07:44.867219805 +0100 @@ -266,9 +266,9 @@ cupsDoIORequest(http_t *http, /* I - DEBUG_printf(("2cupsDoIORequest: status=%d", status)); - if (status == HTTP_FORBIDDEN || status == HTTP_ERROR || - status >= HTTP_SERVER_ERROR) + if (status == HTTP_FORBIDDEN || status >= HTTP_SERVER_ERROR) { + httpFlush(http); _cupsSetHTTPError(status); break; } diff -up cups-1.4rc1/cups/http.c.length cups-1.4rc1/cups/http.c --- cups-1.4rc1/cups/http.c.length 2009-07-01 12:00:16.591298309 +0100 +++ cups-1.4rc1/cups/http.c 2009-07-01 12:00:43.494298468 +0100 @@ -3143,6 +3145,8 @@ http_upgrade(http_t *http) /* I - Conne DEBUG_printf(("7http_upgrade(%p)", http)); + httpFlush(http); + /* * Copy the HTTP data to a local variable so we can do the OPTIONS * request without interfering with the existing request data... @@ -3170,8 +3174,6 @@ http_upgrade(http_t *http) /* I - Conne while (httpUpdate(http) == HTTP_CONTINUE); } - httpFlush(http); - /* * Restore the HTTP request data... */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.480 retrieving revision 1.481 diff -u -p -r1.480 -r1.481 --- cups.spec 23 Jun 2009 17:12:38 -0000 1.480 +++ cups.spec 1 Jul 2009 11:28:21 -0000 1.481 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.5%{?dist} +Release: 0.%{pre}.6%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -46,7 +46,8 @@ Patch22: cups-build.patch Patch23: cups-res_init.patch Patch24: cups-str3229.patch Patch25: cups-filter-debug.patch -Patch26: cups-avahi.patch +Patch26: cups-str3231.patch +Patch27: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -188,7 +189,8 @@ module. %patch23 -p1 -b .res_init %patch24 -p1 -b .str3229 %patch25 -p1 -b .filter-debug -#%patch26 -p1 -b .avahi +%patch26 -p1 -b .str3231 +#%patch27 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -472,6 +474,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 +- Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). + * Tue Jun 23 2009 Tim Waugh 1:1.4-0.rc1.5 - Added more debugging output when constructing filter chain. From twaugh at fedoraproject.org Wed Jul 1 11:28:25 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 1 Jul 2009 11:28:25 +0000 (UTC) Subject: rpms/cups/devel cups-filter-debug.patch, NONE, 1.1 cups-str3231.patch, NONE, 1.1 cups.spec, 1.479, 1.480 Message-ID: <20090701112825.5617C11C02C3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31728 Modified Files: cups.spec Added Files: cups-filter-debug.patch cups-str3231.patch Log Message: * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 - Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). cups-filter-debug.patch: --- NEW FILE cups-filter-debug.patch --- diff -up cups-1.4rc1/scheduler/job.c.filter-debug cups-1.4rc1/scheduler/job.c --- cups-1.4rc1/scheduler/job.c.filter-debug 2009-06-23 18:10:57.125572911 +0100 +++ cups-1.4rc1/scheduler/job.c 2009-06-23 18:11:31.495572481 +0100 @@ -544,10 +544,28 @@ cupsdContinueJob(cupsd_job_t *job) /* I if (!filters) { + mime_filter_t *current; + cupsdLogJob(job, CUPSD_LOG_ERROR, "Unable to convert file %d to printable format!", job->current_file); + cupsdLogJob(job, CUPSD_LOG_ERROR, + "Required: %s/%s -> %s/%s", + job->filetypes[job->current_file]->super, + job->filetypes[job->current_file]->type, + job->printer->filetype->super, + job->printer->filetype->type); + + for (current = (mime_filter_t *)cupsArrayFirst(MimeDatabase->srcs); + current; + current = (mime_filter_t *)cupsArrayNext(MimeDatabase->srcs)) + cupsdLogJob(job, CUPSD_LOG_ERROR, + "Available: %s/%s -> %s/%s (%s)", + current->src->super, current->src->type, + current->dst->super, current->dst->type, + current->filter); + abort_message = "Aborting job because it cannot be printed."; abort_state = IPP_JOB_ABORTED; cups-str3231.patch: --- NEW FILE cups-str3231.patch --- diff -up cups-1.4rc1/cups/request.c.str3231 cups-1.4rc1/cups/request.c --- cups-1.4rc1/cups/request.c.str3231 2009-06-29 10:07:23.568486428 +0100 +++ cups-1.4rc1/cups/request.c 2009-06-29 10:07:44.867219805 +0100 @@ -266,9 +266,9 @@ cupsDoIORequest(http_t *http, /* I - DEBUG_printf(("2cupsDoIORequest: status=%d", status)); - if (status == HTTP_FORBIDDEN || status == HTTP_ERROR || - status >= HTTP_SERVER_ERROR) + if (status == HTTP_FORBIDDEN || status >= HTTP_SERVER_ERROR) { + httpFlush(http); _cupsSetHTTPError(status); break; } diff -up cups-1.4rc1/cups/http.c.length cups-1.4rc1/cups/http.c --- cups-1.4rc1/cups/http.c.length 2009-07-01 12:00:16.591298309 +0100 +++ cups-1.4rc1/cups/http.c 2009-07-01 12:00:43.494298468 +0100 @@ -3143,6 +3145,8 @@ http_upgrade(http_t *http) /* I - Conne DEBUG_printf(("7http_upgrade(%p)", http)); + httpFlush(http); + /* * Copy the HTTP data to a local variable so we can do the OPTIONS * request without interfering with the existing request data... @@ -3170,8 +3174,6 @@ http_upgrade(http_t *http) /* I - Conne while (httpUpdate(http) == HTTP_CONTINUE); } - httpFlush(http); - /* * Restore the HTTP request data... */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.479 retrieving revision 1.480 diff -u -p -r1.479 -r1.480 --- cups.spec 18 Jun 2009 17:59:39 -0000 1.479 +++ cups.spec 1 Jul 2009 11:28:25 -0000 1.480 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.4%{?dist} +Release: 0.%{pre}.6%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -45,7 +45,9 @@ Patch21: cups-usb-paperout.patch Patch22: cups-build.patch Patch23: cups-res_init.patch Patch24: cups-str3229.patch -Patch26: cups-avahi.patch +Patch25: cups-filter-debug.patch +Patch26: cups-str3231.patch +Patch27: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -186,7 +188,9 @@ module. %patch22 -p1 -b .build %patch23 -p1 -b .res_init %patch24 -p1 -b .str3229 -#%patch26 -p1 -b .avahi +%patch25 -p1 -b .filter-debug +%patch26 -p1 -b .str3231 +#%patch27 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -470,6 +474,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 +- Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). + +* Tue Jun 23 2009 Tim Waugh 1:1.4-0.rc1.5 +- Added more debugging output when constructing filter chain. + * Thu Jun 18 2009 Tim Waugh 1:1.4-0.rc1.4 - More complete fix for STR #3229 (bug #506461). From kwizart at fedoraproject.org Wed Jul 1 11:37:21 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 1 Jul 2009 11:37:21 +0000 (UTC) Subject: rpms/python-kaa-base/devel import.log, NONE, 1.1 kaa-base-0.6.0-backport_py26.patch, NONE, 1.1 kaa-base-0.6.0-py26.patch, NONE, 1.1 python-kaa-base.spec, 1.12, 1.13 Message-ID: <20090701113721.91CFF11C02C3@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1234/devel Modified Files: python-kaa-base.spec Added Files: import.log kaa-base-0.6.0-backport_py26.patch kaa-base-0.6.0-py26.patch Log Message: - Update to 0.6.0 - Remove Requires python-lirc (optional) - Deprecate python-sqlite2 over sqlite3 bundled in python - Backport switch to hashlib --- NEW FILE import.log --- python-kaa-base-0_6_0-2_fc11:HEAD:python-kaa-base-0.6.0-2.fc11.src.rpm:1246448193 kaa-base-0.6.0-backport_py26.patch: --- NEW FILE kaa-base-0.6.0-backport_py26.patch --- diff -up kaa-base-0.6.0/src/config.py.bp26 kaa-base-0.6.0/src/config.py --- kaa-base-0.6.0/src/config.py.bp26 2009-05-25 21:56:12.000000000 +0200 +++ kaa-base-0.6.0/src/config.py 2009-07-01 13:18:09.470559661 +0200 @@ -34,7 +34,7 @@ import re import copy import logging import stat -import md5 +import hashlib import textwrap from new import classobj @@ -104,7 +104,7 @@ class Base(object): a hash of the schema only. """ value = repr(self._value) if values else '' - return md5.new(repr(self._name) + repr(self._desc) + repr(self._default) + value).hexdigest() + return hashlib.md5(repr(self._name) + repr(self._desc) + repr(self._default) + value).hexdigest() def copy(self): @@ -228,7 +228,7 @@ class Var(Base): """ Returns a hash of the config item. """ - return md5.new(super(Var, self)._hash(values) + repr(self._type)).hexdigest() + return hashlib.md5(super(Var, self)._hash(values) + repr(self._type)).hexdigest() def _cfg_string(self, prefix, print_desc=True): @@ -356,7 +356,7 @@ class Group(Base): """ Returns a hash of the config item. """ - hash = md5.new(super(Group, self)._hash(values)) + hash = hashlib.md5(super(Group, self)._hash(values)) for name in self._vars: hash.update(self._dict[name]._hash(values)) return hash.hexdigest() @@ -509,7 +509,7 @@ class Dict(Base): """ Returns a hash of the config item. """ - hash = md5.new(super(Dict, self)._hash(values)) + hash = hashlib.md5(super(Dict, self)._hash(values)) for key in self.keys(): hash.update(self._dict[key]._hash(values)) return hash.hexdigest() @@ -680,7 +680,7 @@ class Config(Group): """ Returns a hash of the config item. """ - return md5.new(super(Config, self)._hash(values) + repr(self._bad_lines)).hexdigest() + return hashlib.md5(super(Config, self)._hash(values) + repr(self._bad_lines)).hexdigest() def copy(self): diff -up kaa-base-0.6.0/src/distribution/svn2log.py.bp26 kaa-base-0.6.0/src/distribution/svn2log.py --- kaa-base-0.6.0/src/distribution/svn2log.py.bp26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/distribution/svn2log.py 2009-07-01 13:18:09.472561034 +0200 @@ -28,7 +28,6 @@ # python imports import os import textwrap -import popen2 import re import xml.sax @@ -146,7 +145,7 @@ def svn2log(module): # Create a parser parser = xml.sax.make_parser() - reader = popen2.popen2('svn log -v --xml')[0] + reader = os.popen('svn log -v --xml') writer = open('ChangeLog', 'w') dh = LogParser(writer, prefix, users) diff -up kaa-base-0.6.0/src/rpc.py.bp26 kaa-base-0.6.0/src/rpc.py --- kaa-base-0.6.0/src/rpc.py.bp26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/rpc.py 2009-07-01 13:18:09.473560323 +0200 @@ -103,7 +103,7 @@ import cPickle import pickle import struct import sys -import sha +import hashlib import time import traceback @@ -702,7 +702,7 @@ class Channel(Object): value is not by design a nonce, but in practice it probably is. """ rbytes = file("/dev/urandom").read(64) - return sha.sha(str(time.time()) + rbytes).digest() + return hashlib.sha1(str(time.time()) + rbytes).digest() def _send_auth_challenge(self): @@ -732,7 +732,7 @@ class Channel(Object): def H(s): # Returns the 20 byte SHA-1 digest of string s. - return sha.sha(s).digest() + return hashlib.sha1(s).digest() if not salt: salt = self._get_rand_value() diff -ur kaa-base-0.6.0/src/weakref.py kaa/kaa/base/src/weakref.py --- kaa-base-0.6.0/src/weakref.py 2009-05-25 20:19:31.000000000 +0200 +++ kaa/kaa/base/src/weakref.py 2009-07-01 13:00:45.980561089 +0200 @@ -58,7 +58,7 @@ # callable. if callable(object): cls = _callable_weakref - return super(weakref, weakref).__new__(cls, object) + return super(weakref, weakref).__new__(cls) def __init__(self, object): if object is not None: kaa-base-0.6.0-py26.patch: --- NEW FILE kaa-base-0.6.0-py26.patch --- diff -up kaa-base-0.6.0/src/db.py.py26 kaa-base-0.6.0/src/db.py --- kaa-base-0.6.0/src/db.py.py26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/db.py 2009-07-01 13:33:09.568308678 +0200 @@ -39,7 +39,7 @@ import copy_reg import _weakref import threading #from sets import Set -from pysqlite2 import dbapi2 as sqlite +from sqlite3 import dbapi2 as sqlite # kaa base imports from strutils import str_to_unicode Index: python-kaa-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-base/devel/python-kaa-base.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-kaa-base.spec 30 Jun 2009 08:46:14 -0000 1.12 +++ python-kaa-base.spec 1 Jul 2009 11:37:21 -0000 1.13 @@ -1,43 +1,36 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-base Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Kaa Media - base package for python Group: Development/Languages License: LGPLv2+ URL: http://www.freevo.org/kaa Source0: http://downloads.sourceforge.net/freevo/kaa-base-%{version}.tar.gz +Patch0: kaa-base-0.6.0-py26.patch +Patch1: kaa-base-0.6.0-backport_py26.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel -BuildRequires: glib2-devel >= 2.4.0 +BuildRequires: glib2-devel >= 2.6.0 Requires: libxml2-python >= 2.6.0 -Requires: python-lirc -Requires: python-sqlite2 >= 2.3.0 +#Optional +#Requires: python-lirc %description -The Kaa Media Repository is a set of python modules related to media. +kaa.base is an LGPL-licensed generic application framework, providing the +foundation for other modules within Kaa, and can be used in any type of project, +from small event-driven tools, to larger, complex applications. -Kaa modules are based on parts from Freevo and modules created for MeBox. -Kaa exists to encourage code sharing between these projects, and to serve as -an umbrella for several previously disparate media-related modules in order -to make them available from one (unique) namespace. Kaa provides a base module -that implements the common features needed for application development, such as -mainloop management, timers, signals, callbacks, file descriptor monitors, etc. -Kaa's other modules provide specific media-related functionality, such as -retrieving metadata on arbitrary media files (kaa.metadata, previously -called mmpython), Python wrappers for Imlib2, Xine, and Evas, and many other -high level APIs for easily creating applications that deal with video and -audio. - -Kaa is named after the python in the Jungle Book by Rudyard Kipling. %prep %setup -q -n kaa-base-%{version} +%patch0 -p1 -b .py26 +%patch1 -p1 -b .bp26 %build @@ -72,8 +65,11 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.6.0-1 +* Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.6.0-2 - Update to 0.6.0 +- Remove Requires python-lirc (optional) +- Deprecate python-sqlite2 over sqlite3 bundled in python +- Backport switch to hashlib * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pjp at fedoraproject.org Wed Jul 1 11:39:22 2009 From: pjp at fedoraproject.org (pjp) Date: Wed, 1 Jul 2009 11:39:22 +0000 (UTC) Subject: rpms/ptrash/F-9 .cvsignore, 1.2, 1.3 ptrash.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701113922.EE06511C02C3@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/ptrash/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1841 Modified Files: .cvsignore ptrash.spec sources Log Message: Fixed a small bug. Upgrade to 1.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Aug 2008 11:35:49 -0000 1.2 +++ .cvsignore 1 Jul 2009 11:38:52 -0000 1.3 @@ -1 +1 @@ -ptrash-1.0.tar.gz +ptrash-1.0.1.tar.gz Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-9/ptrash.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ptrash.spec 6 Aug 2008 11:35:49 -0000 1.1 +++ ptrash.spec 1 Jul 2009 11:38:52 -0000 1.2 @@ -1,5 +1,5 @@ Name: ptrash -Version: 1.0 +Version: 1.0.1 Release: 1%{?dist} Summary: Move file(s) to ~/.trash directory @@ -59,5 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 _pjp_ - 1.0.1-1 +- Fixed a small bug that showed up while trashing a file under ~/.trash + directory. + * Tue Jul 22 2008 _pjp_ - 1.0-1 - Initial RPM release of ptrash-1.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Aug 2008 11:35:49 -0000 1.2 +++ sources 1 Jul 2009 11:38:52 -0000 1.3 @@ -1 +1 @@ -b107c5e7998d560c29f7c3a1a84a2291 ptrash-1.0.tar.gz +781d4e4aee6794167418e81b2f626a06 ptrash-1.0.1.tar.gz From kwizart at fedoraproject.org Wed Jul 1 11:44:59 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 1 Jul 2009 11:44:59 +0000 (UTC) Subject: rpms/python-kaa-base/F-11 import.log, NONE, 1.1 kaa-base-0.6.0-backport_py26.patch, NONE, 1.1 kaa-base-0.6.0-py26.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 python-kaa-base.spec, 1.10, 1.11 sources, 1.5, 1.6 Message-ID: <20090701114459.A116811C02C3@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-base/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2958/F-11 Modified Files: .cvsignore python-kaa-base.spec sources Added Files: import.log kaa-base-0.6.0-backport_py26.patch kaa-base-0.6.0-py26.patch Log Message: - Update to 0.6.0 - Remove Requires python-lirc (optional) - Deprecate python-sqlite2 over sqlite3 bundled in python - Backport switch to hashlib --- NEW FILE import.log --- python-kaa-base-0_6_0-2_fc11:F-11:python-kaa-base-0.6.0-2.fc11.src.rpm:1246448281 kaa-base-0.6.0-backport_py26.patch: --- NEW FILE kaa-base-0.6.0-backport_py26.patch --- diff -up kaa-base-0.6.0/src/config.py.bp26 kaa-base-0.6.0/src/config.py --- kaa-base-0.6.0/src/config.py.bp26 2009-05-25 21:56:12.000000000 +0200 +++ kaa-base-0.6.0/src/config.py 2009-07-01 13:18:09.470559661 +0200 @@ -34,7 +34,7 @@ import re import copy import logging import stat -import md5 +import hashlib import textwrap from new import classobj @@ -104,7 +104,7 @@ class Base(object): a hash of the schema only. """ value = repr(self._value) if values else '' - return md5.new(repr(self._name) + repr(self._desc) + repr(self._default) + value).hexdigest() + return hashlib.md5(repr(self._name) + repr(self._desc) + repr(self._default) + value).hexdigest() def copy(self): @@ -228,7 +228,7 @@ class Var(Base): """ Returns a hash of the config item. """ - return md5.new(super(Var, self)._hash(values) + repr(self._type)).hexdigest() + return hashlib.md5(super(Var, self)._hash(values) + repr(self._type)).hexdigest() def _cfg_string(self, prefix, print_desc=True): @@ -356,7 +356,7 @@ class Group(Base): """ Returns a hash of the config item. """ - hash = md5.new(super(Group, self)._hash(values)) + hash = hashlib.md5(super(Group, self)._hash(values)) for name in self._vars: hash.update(self._dict[name]._hash(values)) return hash.hexdigest() @@ -509,7 +509,7 @@ class Dict(Base): """ Returns a hash of the config item. """ - hash = md5.new(super(Dict, self)._hash(values)) + hash = hashlib.md5(super(Dict, self)._hash(values)) for key in self.keys(): hash.update(self._dict[key]._hash(values)) return hash.hexdigest() @@ -680,7 +680,7 @@ class Config(Group): """ Returns a hash of the config item. """ - return md5.new(super(Config, self)._hash(values) + repr(self._bad_lines)).hexdigest() + return hashlib.md5(super(Config, self)._hash(values) + repr(self._bad_lines)).hexdigest() def copy(self): diff -up kaa-base-0.6.0/src/distribution/svn2log.py.bp26 kaa-base-0.6.0/src/distribution/svn2log.py --- kaa-base-0.6.0/src/distribution/svn2log.py.bp26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/distribution/svn2log.py 2009-07-01 13:18:09.472561034 +0200 @@ -28,7 +28,6 @@ # python imports import os import textwrap -import popen2 import re import xml.sax @@ -146,7 +145,7 @@ def svn2log(module): # Create a parser parser = xml.sax.make_parser() - reader = popen2.popen2('svn log -v --xml')[0] + reader = os.popen('svn log -v --xml') writer = open('ChangeLog', 'w') dh = LogParser(writer, prefix, users) diff -up kaa-base-0.6.0/src/rpc.py.bp26 kaa-base-0.6.0/src/rpc.py --- kaa-base-0.6.0/src/rpc.py.bp26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/rpc.py 2009-07-01 13:18:09.473560323 +0200 @@ -103,7 +103,7 @@ import cPickle import pickle import struct import sys -import sha +import hashlib import time import traceback @@ -702,7 +702,7 @@ class Channel(Object): value is not by design a nonce, but in practice it probably is. """ rbytes = file("/dev/urandom").read(64) - return sha.sha(str(time.time()) + rbytes).digest() + return hashlib.sha1(str(time.time()) + rbytes).digest() def _send_auth_challenge(self): @@ -732,7 +732,7 @@ class Channel(Object): def H(s): # Returns the 20 byte SHA-1 digest of string s. - return sha.sha(s).digest() + return hashlib.sha1(s).digest() if not salt: salt = self._get_rand_value() diff -ur kaa-base-0.6.0/src/weakref.py kaa/kaa/base/src/weakref.py --- kaa-base-0.6.0/src/weakref.py 2009-05-25 20:19:31.000000000 +0200 +++ kaa/kaa/base/src/weakref.py 2009-07-01 13:00:45.980561089 +0200 @@ -58,7 +58,7 @@ # callable. if callable(object): cls = _callable_weakref - return super(weakref, weakref).__new__(cls, object) + return super(weakref, weakref).__new__(cls) def __init__(self, object): if object is not None: kaa-base-0.6.0-py26.patch: --- NEW FILE kaa-base-0.6.0-py26.patch --- diff -up kaa-base-0.6.0/src/db.py.py26 kaa-base-0.6.0/src/db.py --- kaa-base-0.6.0/src/db.py.py26 2009-05-25 20:19:31.000000000 +0200 +++ kaa-base-0.6.0/src/db.py 2009-07-01 13:33:09.568308678 +0200 @@ -39,7 +39,7 @@ import copy_reg import _weakref import threading #from sets import Set -from pysqlite2 import dbapi2 as sqlite +from sqlite3 import dbapi2 as sqlite # kaa base imports from strutils import str_to_unicode Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-base/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 25 Mar 2008 13:57:33 -0000 1.5 +++ .cvsignore 1 Jul 2009 11:44:57 -0000 1.6 @@ -1 +1 @@ -kaa-base-0.4.0.tar.gz +kaa-base-0.6.0.tar.gz Index: python-kaa-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-base/F-11/python-kaa-base.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-kaa-base.spec 26 Feb 2009 21:55:33 -0000 1.10 +++ python-kaa-base.spec 1 Jul 2009 11:44:58 -0000 1.11 @@ -1,43 +1,36 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-base -Version: 0.4.0 -Release: 3%{?dist} +Version: 0.6.0 +Release: 2%{?dist} Summary: The Kaa Media - base package for python Group: Development/Languages License: LGPLv2+ URL: http://www.freevo.org/kaa Source0: http://downloads.sourceforge.net/freevo/kaa-base-%{version}.tar.gz +Patch0: kaa-base-0.6.0-py26.patch +Patch1: kaa-base-0.6.0-backport_py26.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel -BuildRequires: glib2-devel >= 2.4.0 -Requires: libxml2-python -Requires: python-lirc -Requires: python-sqlite2 >= 2.1.0 +BuildRequires: glib2-devel >= 2.6.0 +Requires: libxml2-python >= 2.6.0 +#Optional +#Requires: python-lirc %description -The Kaa Media Repository is a set of python modules related to media. +kaa.base is an LGPL-licensed generic application framework, providing the +foundation for other modules within Kaa, and can be used in any type of project, +from small event-driven tools, to larger, complex applications. -Kaa modules are based on parts from Freevo and modules created for MeBox. -Kaa exists to encourage code sharing between these projects, and to serve as -an umbrella for several previously disparate media-related modules in order -to make them available from one (unique) namespace. Kaa provides a base module -that implements the common features needed for application development, such as -mainloop management, timers, signals, callbacks, file descriptor monitors, etc. -Kaa's other modules provide specific media-related functionality, such as -retrieving metadata on arbitrary media files (kaa.metadata, previously -called mmpython), Python wrappers for Imlib2, Xine, and Evas, and many other -high level APIs for easily creating applications that deal with video and -audio. - -Kaa is named after the python in the Jungle Book by Rudyard Kipling. %prep %setup -q -n kaa-base-%{version} +%patch0 -p1 -b .py26 +%patch1 -p1 -b .bp26 %build @@ -57,8 +50,8 @@ rm -rf $RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name "*.py" |xargs chmod 0644 # Removed unneeded shebang -for i in dispatch.py version.py nf_gtk.py nf_generic.py log.py __init__.py ;do -sed -i -e 's|#!/usr/bin/env python|#|' $RPM_BUILD_ROOT%{python_sitearch}/kaa/notifier/pynotifier/$i +for i in dispatch.py version.py nf_gtk.py nf_generic.py nf_twisted.py log.py __init__.py ;do +sed -i -e 's|#!/usr/bin/env python|#|' $RPM_BUILD_ROOT%{python_sitearch}/kaa/pynotifier/${i} done %clean @@ -72,6 +65,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.6.0-2 +- Update to 0.6.0 +- Remove Requires python-lirc (optional) +- Deprecate python-sqlite2 over sqlite3 bundled in python +- Backport switch to hashlib + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-base/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 25 Mar 2008 13:57:33 -0000 1.5 +++ sources 1 Jul 2009 11:44:58 -0000 1.6 @@ -1 +1 @@ -f45ae6dbc78f762752cc423106d4e4f7 kaa-base-0.4.0.tar.gz +5fdac0492dbbb412c2cafe32ea8c60a8 kaa-base-0.6.0.tar.gz From pjp at fedoraproject.org Wed Jul 1 11:50:36 2009 From: pjp at fedoraproject.org (pjp) Date: Wed, 1 Jul 2009 11:50:36 +0000 (UTC) Subject: rpms/ptrash/F-10 .cvsignore, 1.2, 1.3 ptrash.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701115036.A39BD11C02C3@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/ptrash/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4307 Modified Files: .cvsignore ptrash.spec sources Log Message: Fixed a small bug. Upgrade to 1.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Aug 2008 08:58:44 -0000 1.2 +++ .cvsignore 1 Jul 2009 11:50:05 -0000 1.3 @@ -1 +1 @@ -ptrash-1.0.tar.gz +ptrash-1.0.1.tar.gz Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-10/ptrash.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ptrash.spec 6 Aug 2008 08:58:44 -0000 1.1 +++ ptrash.spec 1 Jul 2009 11:50:05 -0000 1.2 @@ -1,5 +1,5 @@ Name: ptrash -Version: 1.0 +Version: 1.0.1 Release: 1%{?dist} Summary: Move file(s) to ~/.trash directory @@ -59,5 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 _pjp_ - 1.0.1-1 +- Fixed a small bug that showed up while trashing a file under ~/.trash + directory. + * Tue Jul 22 2008 _pjp_ - 1.0-1 - Initial RPM release of ptrash-1.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Aug 2008 08:58:44 -0000 1.2 +++ sources 1 Jul 2009 11:50:06 -0000 1.3 @@ -1 +1 @@ -b107c5e7998d560c29f7c3a1a84a2291 ptrash-1.0.tar.gz +781d4e4aee6794167418e81b2f626a06 ptrash-1.0.1.tar.gz From vcrhonek at fedoraproject.org Wed Jul 1 12:03:33 2009 From: vcrhonek at fedoraproject.org (vcrhonek) Date: Wed, 1 Jul 2009 12:03:33 +0000 (UTC) Subject: rpms/findutils/devel findutils-4.4.0-no-locate.patch, 1.1, 1.2 findutils-4.4.0-selinux.patch, 1.1, 1.2 findutils.spec, 1.61, 1.62 sources, 1.17, 1.18 Message-ID: <20090701120333.9514011C02C3@cvs1.fedora.phx.redhat.com> Author: vcrhonek Update of /cvs/extras/rpms/findutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7529 Modified Files: findutils-4.4.0-no-locate.patch findutils-4.4.0-selinux.patch findutils.spec sources Log Message: Update to findutils-4.4.2 findutils-4.4.0-no-locate.patch: Index: findutils-4.4.0-no-locate.patch =================================================================== RCS file: /cvs/extras/rpms/findutils/devel/findutils-4.4.0-no-locate.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- findutils-4.4.0-no-locate.patch 30 Apr 2008 10:02:05 -0000 1.1 +++ findutils-4.4.0-no-locate.patch 1 Jul 2009 12:03:32 -0000 1.2 @@ -1,24 +1,24 @@ -diff -up findutils-4.4.0/Makefile.in_old findutils-4.4.0/Makefile.in ---- findutils-4.4.0/Makefile.in_old 2008-04-21 13:32:59.000000000 +0200 -+++ findutils-4.4.0/Makefile.in 2008-04-21 13:33:20.000000000 +0200 -@@ -572,7 +572,7 @@ EXTRA_DIST = COPYING ChangeLog TODO conf - THANKS import-gnulib.sh import-gnulib.config +diff -up findutils-4.4.2/Makefile.am_old findutils-4.4.2/Makefile.am +--- findutils-4.4.2/Makefile.am_old 2009-06-30 14:54:41.000000000 +0200 ++++ findutils-4.4.2/Makefile.am 2009-06-30 14:54:59.000000000 +0200 +@@ -8,7 +8,7 @@ DISTCLEANFILES = tool-versions.txt + # "tests" is the gnulib unit test dir. -SUBDIRS = gnulib tests build-aux lib find xargs locate doc po m4 +SUBDIRS = gnulib tests build-aux lib find xargs doc po m4 + ACLOCAL_AMFLAGS = -I gnulib/m4 -I m4 - TESTFILE_SUFFIXES = .exp .xo .xe .xi - all: config.h -diff -up findutils-4.4.0/Makefile.am_old findutils-4.4.0/Makefile.am ---- findutils-4.4.0/Makefile.am_old 2007-11-29 11:50:16.000000000 +0100 -+++ findutils-4.4.0/Makefile.am 2008-04-21 13:32:51.000000000 +0200 -@@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS=gnits - EXTRA_DIST = COPYING ChangeLog TODO config.h.in stamp-h.in \ - THANKS import-gnulib.sh import-gnulib.config + +diff -up findutils-4.4.2/Makefile.in_old findutils-4.4.2/Makefile.in +--- findutils-4.4.2/Makefile.in_old 2009-06-30 14:54:00.000000000 +0200 ++++ findutils-4.4.2/Makefile.in 2009-06-30 14:54:35.000000000 +0200 +@@ -607,7 +607,7 @@ EXTRA_DIST = COPYING ChangeLog TODO conf + DISTCLEANFILES = tool-versions.txt + # "tests" is the gnulib unit test dir. -SUBDIRS = gnulib tests build-aux lib find xargs locate doc po m4 +SUBDIRS = gnulib tests build-aux lib find xargs doc po m4 - ACLOCAL_AMFLAGS = -I gnulib/m4 -I m4 - + TESTFILE_SUFFIXES = .exp .xo .xe .xi + all: config.h findutils-4.4.0-selinux.patch: Index: findutils-4.4.0-selinux.patch =================================================================== RCS file: /cvs/extras/rpms/findutils/devel/findutils-4.4.0-selinux.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- findutils-4.4.0-selinux.patch 30 Apr 2008 10:02:05 -0000 1.1 +++ findutils-4.4.0-selinux.patch 1 Jul 2009 12:03:32 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up findutils-4.4.0/configure.ac.selinux findutils-4.4.0/configure.ac ---- findutils-4.4.0/configure.ac.selinux 2008-03-15 12:45:00.000000000 +0100 -+++ findutils-4.4.0/configure.ac 2008-04-25 16:52:54.000000000 +0200 +diff -up findutils-4.4.2/configure.ac_old findutils-4.4.2/configure.ac +--- findutils-4.4.2/configure.ac_old 2009-07-01 10:24:04.000000000 +0200 ++++ findutils-4.4.2/configure.ac 2009-07-01 10:24:46.000000000 +0200 @@ -114,6 +114,16 @@ AC_CHECK_LIB([m],[fabs],[FINDLIBS="-lm $ AC_DEFINE_UNQUOTED(HAVE_FABS_IN_LIBM,1,[fabs is defined in -lm])) AC_SUBST([FINDLIBS]) @@ -18,9 +18,9 @@ diff -up findutils-4.4.0/configure.ac.se dnl Checks for header files. AC_HEADER_STDC dnl Assume unistd.h is present - coreutils does too. -diff -up findutils-4.4.0/doc/find.texi.selinux findutils-4.4.0/doc/find.texi ---- findutils-4.4.0/doc/find.texi.selinux 2008-03-10 21:31:16.000000000 +0100 -+++ findutils-4.4.0/doc/find.texi 2008-04-29 14:57:42.000000000 +0200 +diff -up findutils-4.4.2/doc/find.texi_old findutils-4.4.2/doc/find.texi +--- findutils-4.4.2/doc/find.texi_old 2009-07-01 10:25:09.000000000 +0200 ++++ findutils-4.4.2/doc/find.texi 2009-07-01 10:26:37.000000000 +0200 @@ -7,7 +7,6 @@ @c %**end of header @@ -54,9 +54,74 @@ diff -up findutils-4.4.0/doc/find.texi.s @end table @node Location Directives -diff -up findutils-4.4.0/find/find.c.selinux findutils-4.4.0/find/find.c ---- findutils-4.4.0/find/find.c.selinux 2008-03-10 21:26:34.000000000 +0100 -+++ findutils-4.4.0/find/find.c 2008-04-28 17:19:26.000000000 +0200 +diff -up findutils-4.4.2/find/defs.h_old findutils-4.4.2/find/defs.h +--- findutils-4.4.2/find/defs.h_old 2009-07-01 12:38:32.000000000 +0200 ++++ findutils-4.4.2/find/defs.h 2009-07-01 12:52:47.000000000 +0200 +@@ -91,6 +91,9 @@ int get_statinfo PARAMS((const char *pat + #define MODE_RWX (S_IXUSR | S_IXGRP | S_IXOTH | MODE_RW) + #define MODE_ALL (S_ISUID | S_ISGID | S_ISVTX | MODE_RWX) + ++#ifdef WITH_SELINUX ++#include ++#endif + + struct predicate; + struct options; +@@ -315,6 +318,9 @@ struct predicate + struct samefile_file_id samefileid; /* samefile */ + mode_t type; /* type */ + struct format_val printf_vec; /* printf fprintf fprint ls fls print0 fprint0 print */ ++#ifdef WITH_SELINUX ++ security_context_t scontext; /* scontext */ ++#endif + } args; + + /* The next predicate in the user input sequence, +@@ -459,6 +465,9 @@ PREDICATEFUNCTION pred_used; + PREDICATEFUNCTION pred_user; + PREDICATEFUNCTION pred_writable; + PREDICATEFUNCTION pred_xtype; ++#ifdef WITH_SELINUX ++PREDICATEFUNCTION pred_context; ++#endif + + + +@@ -601,6 +610,10 @@ struct options + */ + int regex_options; + ++#ifdef WITH_SELINUX ++ int (*x_getfilecon) (); ++#endif ++ + /* Optimisation level. One is the default. + */ + unsigned short optimisation_level; +diff -up findutils-4.4.2/find/find.1_old findutils-4.4.2/find/find.1 +--- findutils-4.4.2/find/find.1_old 2009-07-01 10:30:04.000000000 +0200 ++++ findutils-4.4.2/find/find.1 2009-07-01 10:30:59.000000000 +0200 +@@ -933,6 +933,8 @@ if \fIc\fR is `l'. In other words, for + checks the type of the file that + .B \-type + does not check. ++.IP "\-context \fIpattern\fR" ++(SELinux only) Security context of the file matches glob \fIpattern\fR. + + .SS ACTIONS + .IP "\-delete\fR" +@@ -1354,6 +1356,8 @@ File's type (like in + U=unknown type (shouldn't happen) + .IP %Y + File's type (like %y), plus follow symlinks: L=loop, N=nonexistent ++.IP %Z ++(SELinux only) file's security context. + .PP + A `%' character followed by any other character is discarded, but the + other character is printed (don't rely on this, as further format +diff -up findutils-4.4.2/find/find.c_old findutils-4.4.2/find/find.c +--- findutils-4.4.2/find/find.c_old 2009-07-01 10:26:53.000000000 +0200 ++++ findutils-4.4.2/find/find.c 2009-07-01 10:29:52.000000000 +0200 @@ -120,6 +120,36 @@ int get_current_dirfd(void) return AT_FDCWD; } @@ -103,139 +168,9 @@ diff -up findutils-4.4.0/find/find.c.sel boolean subdirs_unreliable; /* if true, cannot use dir link count as subdir limif (if false, it may STILL be unreliable) */ unsigned int idx; /* Which entry are we on? */ struct stat stat_buf; -diff -up findutils-4.4.0/find/find.1.selinux findutils-4.4.0/find/find.1 ---- findutils-4.4.0/find/find.1.selinux 2007-12-19 20:53:14.000000000 +0100 -+++ findutils-4.4.0/find/find.1 2008-04-25 16:52:54.000000000 +0200 -@@ -934,6 +934,8 @@ if \fIc\fR is `l'. In other words, for - checks the type of the file that - .B \-type - does not check. -+.IP "\-context \fIpattern\fR" -+(SELinux only) Security context of the file matches glob \fIpattern\fR. - - .SS ACTIONS - .IP "\-delete\fR" -@@ -1340,6 +1342,8 @@ File's type (like in - U=unknown type (shouldn't happen) - .IP %Y - File's type (like %y), plus follow symlinks: L=loop, N=nonexistent -+.IP %Z -+(SELinux only) file's security context. - .PP - A `%' character followed by any other character is discarded, but the - other character is printed (don't rely on this, as further format -diff -up findutils-4.4.0/find/pred.c.selinux findutils-4.4.0/find/pred.c ---- findutils-4.4.0/find/pred.c.selinux 2008-03-10 10:37:22.000000000 +0100 -+++ findutils-4.4.0/find/pred.c 2008-04-28 17:09:17.000000000 +0200 -@@ -47,6 +47,10 @@ - #include "error.h" - #include "verify.h" - -+#ifdef WITH_SELINUX -+#include -+#endif /*WITH_SELINUX*/ -+ - #if ENABLE_NLS - # include - # define _(Text) gettext (Text) -@@ -229,6 +233,9 @@ struct pred_assoc pred_table[] = - {pred_user, "user "}, - {pred_writable, "writable "}, - {pred_xtype, "xtype "}, -+#ifdef WITH_SELINUX -+ {pred_context, "context"}, -+#endif /*WITH_SELINUX*/ - {0, "none "} - }; - #endif -@@ -1053,6 +1060,27 @@ do_fprintf(struct format_val *dest, - mode_to_filetype(stat_buf->st_mode & S_IFMT)); - } - break; -+ case 'Z': /* SELinux security context */ -+#ifdef WITH_SELINUX -+ { -+ security_context_t scontext; -+ int rv; -+ rv = (*options.x_getfilecon) (state.rel_pathname, &scontext); -+ -+ if (rv < 0) -+ { -+ fprintf (stderr, "getfilecon(%s): %s", pathname, -+ strerror(errno)); -+ fflush (stderr); -+ } -+ else -+ { -+ checked_fprintf (dest, segment->text, scontext); -+ freecon (scontext); -+ } -+ } -+#endif /* WITH_SELINUX */ -+ break; - } - /* end of KIND_FORMAT case */ - break; -@@ -1841,6 +1869,33 @@ pred_xtype (const char *pathname, struct - */ - return (pred_type (pathname, &sbuf, pred_ptr)); - } -+ -+ -+#ifdef WITH_SELINUX -+ -+boolean -+pred_context (const char *pathname, struct stat *stat_buf, -+ struct predicate *pred_ptr) -+{ -+ int rv; -+ security_context_t scontext; -+ -+ rv = (*options.x_getfilecon) (state.rel_pathname, &scontext); -+ -+ if (rv < 0) -+ { -+ fprintf (stderr, "getfilecon(%s): %s\n", pathname, strerror(errno)); -+ fflush (stderr); -+ return false; -+ } -+ -+ rv = (fnmatch (pred_ptr->args.scontext, scontext, 0) == 0); -+ freecon (scontext); -+ return rv; -+} -+ -+#endif /*WITH_SELINUX*/ -+ - - /* 1) fork to get a child; parent remembers the child pid - 2) child execs the command requested -diff -up findutils-4.4.0/find/tree.c.selinux findutils-4.4.0/find/tree.c ---- findutils-4.4.0/find/tree.c.selinux 2007-12-20 22:40:35.000000000 +0100 -+++ findutils-4.4.0/find/tree.c 2008-04-30 11:12:46.000000000 +0200 -@@ -953,7 +953,8 @@ static struct pred_cost_lookup costlooku - { pred_used , NeedsStatInfo }, - { pred_user , NeedsStatInfo }, - { pred_writable , NeedsAccessInfo }, -- { pred_xtype , NeedsType } /* roughly correct unless most files are symlinks */ -+ { pred_xtype , NeedsType }, /* roughly correct unless most files are symlinks */ -+ { pred_context , NeedsNothing } /* remove warning only:) */ - }; - static int pred_table_sorted = 0; - -@@ -1434,6 +1435,9 @@ get_new_pred (const struct parser_table - last_pred->need_stat = true; - last_pred->need_type = true; - last_pred->args.str = NULL; -+#ifdef WITH_SELINUX -+ last_pred->args.scontext = NULL; -+#endif - last_pred->pred_next = NULL; - last_pred->pred_left = NULL; - last_pred->pred_right = NULL; -diff -up findutils-4.4.0/find/Makefile.am.selinux findutils-4.4.0/find/Makefile.am ---- findutils-4.4.0/find/Makefile.am.selinux 2007-07-22 14:29:31.000000000 +0200 -+++ findutils-4.4.0/find/Makefile.am 2008-04-25 16:52:54.000000000 +0200 +diff -up findutils-4.4.2/find/Makefile.am_old findutils-4.4.2/find/Makefile.am +--- findutils-4.4.2/find/Makefile.am_old 2009-07-01 10:35:04.000000000 +0200 ++++ findutils-4.4.2/find/Makefile.am 2009-07-01 10:35:37.000000000 +0200 @@ -26,7 +26,7 @@ endif EXTRA_DIST = defs.h $(man_MANS) @@ -245,11 +180,11 @@ diff -up findutils-4.4.0/find/Makefile.a man_MANS = find.1 SUBDIRS = . testsuite -diff -up findutils-4.4.0/find/parser.c.selinux findutils-4.4.0/find/parser.c ---- findutils-4.4.0/find/parser.c.selinux 2008-03-10 10:37:21.000000000 +0100 -+++ findutils-4.4.0/find/parser.c 2008-04-28 15:34:45.000000000 +0200 +diff -up findutils-4.4.2/find/parser.c_old findutils-4.4.2/find/parser.c +--- findutils-4.4.2/find/parser.c_old 2009-07-01 10:35:43.000000000 +0200 ++++ findutils-4.4.2/find/parser.c 2009-07-01 12:38:19.000000000 +0200 @@ -53,6 +53,10 @@ - #include + #include #include +#ifdef WITH_SELINUX @@ -259,7 +194,7 @@ diff -up findutils-4.4.0/find/parser.c.s #if ENABLE_NLS # include # define _(Text) gettext (Text) -@@ -156,6 +160,9 @@ static boolean parse_noignore_race PARAM +@@ -155,6 +159,9 @@ static boolean parse_noignore_race PARAM static boolean parse_warn PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_xtype PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); static boolean parse_quit PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); @@ -269,7 +204,7 @@ diff -up findutils-4.4.0/find/parser.c.s boolean parse_print PARAMS((const struct parser_table*, char *argv[], int *arg_ptr)); -@@ -252,6 +259,9 @@ static struct parser_table const parse_t +@@ -251,6 +258,9 @@ static struct parser_table const parse_t PARSE_TEST ("cmin", cmin), /* GNU */ PARSE_TEST ("cnewer", cnewer), /* GNU */ {ARG_TEST, "ctime", parse_time, pred_ctime}, /* POSIX */ @@ -279,7 +214,7 @@ diff -up findutils-4.4.0/find/parser.c.s PARSE_POSOPT ("daystart", daystart), /* GNU */ PARSE_ACTION ("delete", delete), /* GNU, Mac OS, FreeBSD */ PARSE_OPTION ("d", d), /* Mac OS X, FreeBSD, NetBSD, OpenBSD, but deprecated in favour of -depth */ -@@ -348,6 +358,89 @@ static struct parser_table const parse_t +@@ -347,6 +357,89 @@ static struct parser_table const parse_t static const char *first_nonoption_arg = NULL; static const struct parser_table *noop = NULL; @@ -367,9 +302,9 @@ diff -up findutils-4.4.0/find/parser.c.s +} +#endif /* WITH_SELINUX */ - void + void check_option_combinations(const struct predicate *p) -@@ -451,11 +544,17 @@ set_follow_state(enum SymlinkOption opt) +@@ -450,11 +543,17 @@ set_follow_state(enum SymlinkOption opt) { case SYMLINK_ALWAYS_DEREF: /* -L */ options.xstat = optionl_stat; @@ -378,17 +313,17 @@ diff -up findutils-4.4.0/find/parser.c.s +#endif options.no_leaf_check = true; break; - + case SYMLINK_NEVER_DEREF: /* -P (default) */ options.xstat = optionp_stat; +#ifdef WITH_SELINUX + options.x_getfilecon = optionp_getfilecon; +#endif - /* Can't turn no_leaf_check off because the user might have specified + /* Can't turn no_leaf_check off because the user might have specified * -noleaf anyway */ -@@ -463,6 +562,9 @@ set_follow_state(enum SymlinkOption opt) - +@@ -462,6 +561,9 @@ set_follow_state(enum SymlinkOption opt) + case SYMLINK_DEREF_ARGSONLY: /* -H */ options.xstat = optionh_stat; +#ifdef WITH_SELINUX @@ -397,7 +332,7 @@ diff -up findutils-4.4.0/find/parser.c.s options.no_leaf_check = true; } } -@@ -1128,8 +1230,12 @@ tests (N can be +N or -N or N): -amin N +@@ -1127,8 +1229,12 @@ tests (N can be +N or -N or N): -amin N -nouser -nogroup -path PATTERN -perm [+-]MODE -regex PATTERN\n\ -readable -writable -executable\n\ -wholename PATTERN -size N[bcwkMG] -true -type [bcdpflsD] -uid N\n\ @@ -411,7 +346,7 @@ diff -up findutils-4.4.0/find/parser.c.s actions: -delete -print0 -printf FORMAT -fprintf FILE FORMAT -print \n\ -fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit\n\ -exec COMMAND ; -exec COMMAND {} + -ok COMMAND ;\n\ -@@ -2492,6 +2598,10 @@ parse_version (const struct parser_table +@@ -2518,6 +2624,10 @@ parse_version (const struct parser_table printf("LEAF_OPTIMISATION "); ++features; #endif @@ -422,7 +357,7 @@ diff -up findutils-4.4.0/find/parser.c.s flags = 0; if (is_fts_enabled(&flags)) -@@ -2526,6 +2636,32 @@ parse_version (const struct parser_table +@@ -2552,6 +2662,32 @@ parse_version (const struct parser_table exit (0); } @@ -455,7 +390,7 @@ diff -up findutils-4.4.0/find/parser.c.s static boolean parse_xdev (const struct parser_table* entry, char **argv, int *arg_ptr) { -@@ -2777,7 +2913,7 @@ insert_fprintf (struct format_val *vec, +@@ -2803,7 +2939,7 @@ insert_fprintf (struct format_val *vec, if (*scan2 == '.') for (scan2++; ISDIGIT (*scan2); scan2++) /* Do nothing. */ ; @@ -464,7 +399,7 @@ diff -up findutils-4.4.0/find/parser.c.s { segmentp = make_segment (segmentp, format, scan2 - format, KIND_FORMAT, *scan2, 0, -@@ -2904,6 +3040,7 @@ make_segment (struct segment **segment, +@@ -2930,6 +3066,7 @@ make_segment (struct segment **segment, case 'h': /* leading directories part of path */ case 'p': /* pathname */ case 'P': /* pathname with ARGV element stripped */ @@ -472,47 +407,111 @@ diff -up findutils-4.4.0/find/parser.c.s *fmt++ = 's'; break; -diff -up findutils-4.4.0/find/defs.h.selinux findutils-4.4.0/find/defs.h ---- findutils-4.4.0/find/defs.h.selinux 2008-03-10 10:37:21.000000000 +0100 -+++ findutils-4.4.0/find/defs.h 2008-04-25 16:52:54.000000000 +0200 -@@ -91,6 +91,9 @@ int get_statinfo PARAMS((const char *pat - #define MODE_RWX (S_IXUSR | S_IXGRP | S_IXOTH | MODE_RW) - #define MODE_ALL (S_ISUID | S_ISGID | S_ISVTX | MODE_RWX) +diff -up findutils-4.4.2/find/pred.c_old findutils-4.4.2/find/pred.c +--- findutils-4.4.2/find/pred.c_old 2009-07-01 10:31:11.000000000 +0200 ++++ findutils-4.4.2/find/pred.c 2009-07-01 10:33:45.000000000 +0200 +@@ -48,6 +48,10 @@ + #include "error.h" + #include "verify.h" +#ifdef WITH_SELINUX +#include -+#endif - - struct predicate; - struct options; -@@ -315,6 +318,9 @@ struct predicate - struct samefile_file_id samefileid; /* samefile */ - mode_t type; /* type */ - struct format_val printf_vec; /* printf fprintf fprint ls fls print0 fprint0 print */ ++#endif /*WITH_SELINUX*/ ++ + #if ENABLE_NLS + # include + # define _(Text) gettext (Text) +@@ -230,6 +234,9 @@ struct pred_assoc pred_table[] = + {pred_user, "user "}, + {pred_writable, "writable "}, + {pred_xtype, "xtype "}, +#ifdef WITH_SELINUX -+ security_context_t scontext; /* scontext */ -+#endif - } args; - - /* The next predicate in the user input sequence, -@@ -459,6 +465,9 @@ PREDICATEFUNCTION pred_used; - PREDICATEFUNCTION pred_user; - PREDICATEFUNCTION pred_writable; - PREDICATEFUNCTION pred_xtype; ++ {pred_context, "context"}, ++#endif /*WITH_SELINUX*/ + {0, "none "} + }; + #endif +@@ -1054,6 +1061,27 @@ do_fprintf(struct format_val *dest, + mode_to_filetype(stat_buf->st_mode & S_IFMT)); + } + break; ++ case 'Z': /* SELinux security context */ +#ifdef WITH_SELINUX -+PREDICATEFUNCTION pred_context; -+#endif - - - -@@ -601,6 +610,10 @@ struct options ++ { ++ security_context_t scontext; ++ int rv; ++ rv = (*options.x_getfilecon) (state.rel_pathname, &scontext); ++ ++ if (rv < 0) ++ { ++ fprintf (stderr, "getfilecon(%s): %s", pathname, ++ strerror(errno)); ++ fflush (stderr); ++ } ++ else ++ { ++ checked_fprintf (dest, segment->text, scontext); ++ freecon (scontext); ++ } ++ } ++#endif /* WITH_SELINUX */ ++ break; + } + /* end of KIND_FORMAT case */ + break; +@@ -1844,6 +1872,32 @@ pred_xtype (const char *pathname, struct */ - int regex_options; - + return (pred_type (pathname, &sbuf, pred_ptr)); + } ++ +#ifdef WITH_SELINUX -+ int (*x_getfilecon) (); -+#endif + - /* Optimisation level. One is the default. - */ - unsigned short optimisation_level; ++boolean ++pred_context (const char *pathname, struct stat *stat_buf, ++ struct predicate *pred_ptr) ++{ ++ int rv; ++ security_context_t scontext; ++ ++ rv = (*options.x_getfilecon) (state.rel_pathname, &scontext); ++ ++ if (rv < 0) ++ { ++ fprintf (stderr, "getfilecon(%s): %s\n", pathname, strerror(errno)); ++ fflush (stderr); ++ return false; ++ } ++ ++ rv = (fnmatch (pred_ptr->args.scontext, scontext, 0) == 0); ++ freecon (scontext); ++ return rv; ++} ++ ++#endif /*WITH_SELINUX*/ ++ + + /* 1) fork to get a child; parent remembers the child pid + 2) child execs the command requested +diff -up findutils-4.4.2/find/tree.c_old findutils-4.4.2/find/tree.c +--- findutils-4.4.2/find/tree.c_old 2009-07-01 10:33:57.000000000 +0200 ++++ findutils-4.4.2/find/tree.c 2009-07-01 10:34:54.000000000 +0200 +@@ -953,7 +953,8 @@ static struct pred_cost_lookup costlooku + { pred_used , NeedsStatInfo }, + { pred_user , NeedsStatInfo }, + { pred_writable , NeedsAccessInfo }, +- { pred_xtype , NeedsType } /* roughly correct unless most files are symlinks */ ++ { pred_xtype , NeedsType }, /* roughly correct unless most files are symlinks */ ++ { pred_context , NeedsNothing } /* remove warning only:) */ + }; + static int pred_table_sorted = 0; + +@@ -1434,6 +1435,9 @@ get_new_pred (const struct parser_table + last_pred->need_stat = true; + last_pred->need_type = true; + last_pred->args.str = NULL; ++#ifdef WITH_SELINUX ++ last_pred->args.scontext = NULL; ++#endif + last_pred->pred_next = NULL; + last_pred->pred_left = NULL; + last_pred->pred_right = NULL; Index: findutils.spec =================================================================== RCS file: /cvs/extras/rpms/findutils/devel/findutils.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- findutils.spec 24 Feb 2009 17:08:07 -0000 1.61 +++ findutils.spec 1 Jul 2009 12:03:32 -0000 1.62 @@ -1,7 +1,7 @@ Summary: The GNU versions of find utilities (find and xargs) Name: findutils -Version: 4.4.0 -Release: 2%{?dist} +Version: 4.4.2 +Release: 1%{?dist} Epoch: 1 License: GPLv3+ Group: Applications/File @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/find-maint.info.gz %changelog +* Wed Jul 1 2009 Vitezslav Crhonek - 1:4.4.2-1 +- Update to findutils-4.4.2 + * Tue Feb 24 2009 Fedora Release Engineering - 1:4.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/findutils/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 30 Apr 2008 10:02:05 -0000 1.17 +++ sources 1 Jul 2009 12:03:32 -0000 1.18 @@ -1,2 +1,2 @@ -49e769ac4382fae6f104f99d54d0a112 findutils-4.4.0.tar.gz -04a7d2fcf851b770e586d8a01c1f14f1 findutils-4.4.0.tar.gz.sig +351cc4adb07d54877fa15f75fb77d39f findutils-4.4.2.tar.gz +36d8b8c7d6c6ff88e9d46eb2322873cc findutils-4.4.2.tar.gz.sig From pjp at fedoraproject.org Wed Jul 1 12:04:53 2009 From: pjp at fedoraproject.org (pjp) Date: Wed, 1 Jul 2009 12:04:53 +0000 (UTC) Subject: rpms/ptrash/EL-4 .cvsignore, 1.2, 1.3 ptrash.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701120453.E688B11C02C3@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/ptrash/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7777 Modified Files: .cvsignore ptrash.spec sources Log Message: Fixed a small bug. Upgrade to 1.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Aug 2008 11:55:10 -0000 1.2 +++ .cvsignore 1 Jul 2009 12:04:23 -0000 1.3 @@ -1 +1 @@ -ptrash-1.0.tar.gz +ptrash-1.0.1.tar.gz Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-4/ptrash.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ptrash.spec 6 Aug 2008 11:55:10 -0000 1.1 +++ ptrash.spec 1 Jul 2009 12:04:23 -0000 1.2 @@ -1,5 +1,5 @@ Name: ptrash -Version: 1.0 +Version: 1.0.1 Release: 1%{?dist} Summary: Move file(s) to ~/.trash directory @@ -59,5 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 _pjp_ - 1.0.1-1 +- Fixed a small bug that showed up while trashing a file under ~/.trash + directory. + * Tue Jul 22 2008 _pjp_ - 1.0-1 - Initial RPM release of ptrash-1.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Aug 2008 11:55:10 -0000 1.2 +++ sources 1 Jul 2009 12:04:23 -0000 1.3 @@ -1 +1 @@ -b107c5e7998d560c29f7c3a1a84a2291 ptrash-1.0.tar.gz +781d4e4aee6794167418e81b2f626a06 ptrash-1.0.1.tar.gz From kwizart at fedoraproject.org Wed Jul 1 12:14:59 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 1 Jul 2009 12:14:59 +0000 (UTC) Subject: rpms/python-kaa-imlib2/devel kaa-imlib2-nomd5.patch, NONE, 1.1 python-kaa-imlib2.spec, 1.10, 1.11 Message-ID: <20090701121459.287E611C02C3@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-imlib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9722 Modified Files: python-kaa-imlib2.spec Added Files: kaa-imlib2-nomd5.patch Log Message: - Clean BR - remove unused import md5 - Move to %%global kaa-imlib2-nomd5.patch: --- NEW FILE kaa-imlib2-nomd5.patch --- diff -up kaa-imlib2-0.2.3/src/__init__.py.hashlib kaa-imlib2-0.2.3/src/__init__.py --- kaa-imlib2-0.2.3/src/__init__.py.hashlib 2007-03-28 11:21:54.000000000 +0200 +++ kaa-imlib2-0.2.3/src/__init__.py 2009-07-01 14:04:58.192312232 +0200 @@ -32,7 +32,6 @@ import types import math import os import glob -import md5 from version import VERSION Index: python-kaa-imlib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-imlib2/devel/python-kaa-imlib2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-kaa-imlib2.spec 26 Feb 2009 21:56:26 -0000 1.10 +++ python-kaa-imlib2.spec 1 Jul 2009 12:14:28 -0000 1.11 @@ -1,31 +1,24 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-imlib2 Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Kaa Media - imlib2 binding for python Group: Development/Languages License: LGPLv2+ URL: http://www.freevo.org/kaa Source0: http://downloads.sourceforge.net/freevo/kaa-imlib2-%{version}.tar.gz +Patch0: kaa-imlib2-nomd5.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: python-kaa-base >= 0.4.0 -BuildRequires: libdvdread-devel >= 0.9.5 -BuildRequires: libGL-devel, libGLU-devel -BuildRequires: imlib2-devel >= 1.2.1, libpng-devel -#BuildRequires: evas-devel >= 0.9.9.032 -BuildRequires: pygame-devel >= 1.7.1, python-sqlite2 >= 2.2.2 -BuildRequires: xine-lib-devel >= 1.1.1 -BuildRequires: glib2-devel -BuildRequires: zvbi-devel, directfb-devel -#BuildRequires: epeg +BuildRequires: imlib2-devel >= 1.2.1 Requires: python-kaa-base >= 0.4.0 -Requires: pygame -Requires: python-sqlite2 + + %description The Kaa Media Repository is a set of python modules related to media. @@ -47,6 +40,7 @@ Kaa is named after the python in the Jun %prep %setup -q -n kaa-imlib2-%{version} +%patch0 -p1 -b .nomd5 #Fix encoding cp -pr AUTHORS AUTHORS.not-utf8 @@ -80,6 +74,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 kwizart < kwizart at gmail.com > - 0.2.3-5 +- Clean BR +- remove unused import md5 +- Move to %%global + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pjp at fedoraproject.org Wed Jul 1 12:16:05 2009 From: pjp at fedoraproject.org (pjp) Date: Wed, 1 Jul 2009 12:16:05 +0000 (UTC) Subject: rpms/ptrash/EL-5 .cvsignore, 1.2, 1.3 ptrash.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701121605.7974111C02C3@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/ptrash/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10173 Modified Files: .cvsignore ptrash.spec sources Log Message: Fixed a small bug. Upgrade to 1.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Aug 2008 12:04:33 -0000 1.2 +++ .cvsignore 1 Jul 2009 12:16:05 -0000 1.3 @@ -1 +1 @@ -ptrash-1.0.tar.gz +ptrash-1.0.1.tar.gz Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-5/ptrash.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ptrash.spec 6 Aug 2008 12:04:33 -0000 1.1 +++ ptrash.spec 1 Jul 2009 12:16:05 -0000 1.2 @@ -1,5 +1,5 @@ Name: ptrash -Version: 1.0 +Version: 1.0.1 Release: 1%{?dist} Summary: Move file(s) to ~/.trash directory @@ -59,5 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 _pjp_ - 1.0.1-1 +- Fixed a small bug that showed up while trashing a file under ~/.trash + directory. + * Tue Jul 22 2008 _pjp_ - 1.0-1 - Initial RPM release of ptrash-1.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Aug 2008 12:04:33 -0000 1.2 +++ sources 1 Jul 2009 12:16:05 -0000 1.3 @@ -1 +1 @@ -b107c5e7998d560c29f7c3a1a84a2291 ptrash-1.0.tar.gz +781d4e4aee6794167418e81b2f626a06 ptrash-1.0.1.tar.gz From svahl at fedoraproject.org Wed Jul 1 12:25:10 2009 From: svahl at fedoraproject.org (Sebastian Vahl) Date: Wed, 1 Jul 2009 12:25:10 +0000 (UTC) Subject: rpms/grsync/F-11 .cvsignore, 1.5, 1.6 grsync.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090701122510.50CA811C02C3@cvs1.fedora.phx.redhat.com> Author: svahl Update of /cvs/extras/rpms/grsync/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12453/F-11 Modified Files: .cvsignore grsync.spec sources Log Message: new upstream release also for normal branches Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 9 Apr 2009 22:39:33 -0000 1.5 +++ .cvsignore 1 Jul 2009 12:24:39 -0000 1.6 @@ -1 +1 @@ -grsync-0.6.3.tar.gz +grsync-0.9.0.tar.gz Index: grsync.spec =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/grsync.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- grsync.spec 9 Apr 2009 23:03:29 -0000 1.8 +++ grsync.spec 1 Jul 2009 12:24:39 -0000 1.9 @@ -1,6 +1,6 @@ Name: grsync -Version: 0.6.3 -Release: 2%{?dist} +Version: 0.9.0 +Release: 1%{?dist} Summary: A Gtk+ GUI for rsync Group: User Interface/Desktops @@ -25,7 +25,7 @@ to backup personal files to a networked %setup -q # some minor corrections for rpmlint -%{__sed} -i 's/\r//' README +%{__sed} -i 's/\r//' README AUTHORS NEWS %build %configure @@ -53,9 +53,13 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/grsync*.1.gz %{_datadir}/pixmaps/grsync.png %{_datadir}/applications/grsync.desktop +%{_datadir}/grsync/ %changelog +* Sun Jun 14 2009 Sebastian Vahl - 0.9.0-1 +- new upstream release + * Fri Apr 10 2009 Sebastian Vahl - 0.6.3-2 - BR: intltool Index: sources =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 9 Apr 2009 22:39:33 -0000 1.5 +++ sources 1 Jul 2009 12:24:40 -0000 1.6 @@ -1 +1 @@ -6c368560e349ddc7ff00124338074a48 grsync-0.6.3.tar.gz +fc1d54d76f67df654dffb8ef40b93252 grsync-0.9.0.tar.gz From svahl at fedoraproject.org Wed Jul 1 12:25:10 2009 From: svahl at fedoraproject.org (Sebastian Vahl) Date: Wed, 1 Jul 2009 12:25:10 +0000 (UTC) Subject: rpms/grsync/F-10 .cvsignore, 1.5, 1.6 grsync.spec, 1.6, 1.7 sources, 1.5, 1.6 Message-ID: <20090701122510.54A7811C02C4@cvs1.fedora.phx.redhat.com> Author: svahl Update of /cvs/extras/rpms/grsync/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12453/F-10 Modified Files: .cvsignore grsync.spec sources Log Message: new upstream release also for normal branches Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 11 Apr 2009 22:34:48 -0000 1.5 +++ .cvsignore 1 Jul 2009 12:24:39 -0000 1.6 @@ -1 +1 @@ -grsync-0.6.3.tar.gz +grsync-0.9.0.tar.gz Index: grsync.spec =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/grsync.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- grsync.spec 11 Apr 2009 22:34:48 -0000 1.6 +++ grsync.spec 1 Jul 2009 12:24:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: grsync -Version: 0.6.3 -Release: 2%{?dist} +Version: 0.9.0 +Release: 1%{?dist} Summary: A Gtk+ GUI for rsync Group: User Interface/Desktops @@ -25,7 +25,7 @@ to backup personal files to a networked %setup -q # some minor corrections for rpmlint -%{__sed} -i 's/\r//' README +%{__sed} -i 's/\r//' README AUTHORS NEWS %build %configure @@ -53,9 +53,13 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/grsync*.1.gz %{_datadir}/pixmaps/grsync.png %{_datadir}/applications/grsync.desktop +%{_datadir}/grsync/ %changelog +* Sun Jun 14 2009 Sebastian Vahl - 0.9.0-1 +- new upstream release + * Fri Apr 10 2009 Sebastian Vahl - 0.6.3-2 - BR: intltool Index: sources =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 11 Apr 2009 22:34:48 -0000 1.5 +++ sources 1 Jul 2009 12:24:39 -0000 1.6 @@ -1 +1 @@ -6c368560e349ddc7ff00124338074a48 grsync-0.6.3.tar.gz +fc1d54d76f67df654dffb8ef40b93252 grsync-0.9.0.tar.gz From pjp at fedoraproject.org Wed Jul 1 12:30:22 2009 From: pjp at fedoraproject.org (pjp) Date: Wed, 1 Jul 2009 12:30:22 +0000 (UTC) Subject: rpms/ptrash/F-11 .cvsignore, 1.2, 1.3 ptrash.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701123022.88E1511C02C3@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/ptrash/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13578 Modified Files: .cvsignore ptrash.spec sources Log Message: Fixed a small bug. Upgrade to 1.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Aug 2008 08:58:44 -0000 1.2 +++ .cvsignore 1 Jul 2009 12:29:52 -0000 1.3 @@ -1 +1 @@ -ptrash-1.0.tar.gz +ptrash-1.0.1.tar.gz Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-11/ptrash.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ptrash.spec 27 Feb 2009 02:55:34 -0000 1.2 +++ ptrash.spec 1 Jul 2009 12:29:52 -0000 1.3 @@ -1,6 +1,6 @@ Name: ptrash -Version: 1.0 -Release: 2%{?dist} +Version: 1.0.1 +Release: 1%{?dist} Summary: Move file(s) to ~/.trash directory Group: Applications/System @@ -58,9 +58,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Feb 26 2009 Fedora Release Engineering - 1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Wed Jul 1 2009 _pjp_ - 1.0.1-1 +- Fixed a small bug that showed up while trashing a file under ~/.trash + directory. * Tue Jul 22 2008 _pjp_ - 1.0-1 - Initial RPM release of ptrash-1.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Aug 2008 08:58:44 -0000 1.2 +++ sources 1 Jul 2009 12:29:52 -0000 1.3 @@ -1 +1 @@ -b107c5e7998d560c29f7c3a1a84a2291 ptrash-1.0.tar.gz +781d4e4aee6794167418e81b2f626a06 ptrash-1.0.1.tar.gz From mcpierce at fedoraproject.org Wed Jul 1 12:35:35 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Wed, 1 Jul 2009 12:35:35 +0000 (UTC) Subject: rpms/rubygem-hoe/devel .cvsignore, 1.18, 1.19 rubygem-hoe.spec, 1.22, 1.23 sources, 1.18, 1.19 Message-ID: <20090701123535.5A6DD11C02C3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-hoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14945 Modified Files: .cvsignore rubygem-hoe.spec sources Log Message: Release 2.3.2 of Hoe. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 26 Jun 2009 17:39:41 -0000 1.18 +++ .cvsignore 1 Jul 2009 12:35:34 -0000 1.19 @@ -1 +1 @@ -hoe-2.3.1.gem +hoe-2.3.2.gem Index: rubygem-hoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/devel/rubygem-hoe.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- rubygem-hoe.spec 26 Jun 2009 17:39:41 -0000 1.22 +++ rubygem-hoe.spec 1 Jul 2009 12:35:35 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Hoe is a simple rake/rubygems helper for project Rakefiles Name: rubygem-%{gemname} -Version: 2.3.1 +Version: 2.3.2 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 1 2009 Darryl Pierce - 2.3.2-1 +- Release 2.3.2 of Hoe. + * Fri Jun 26 2009 Darryl Pierce - 2.3.1-1 - Release 2.3.1 of Hoe. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 26 Jun 2009 17:39:41 -0000 1.18 +++ sources 1 Jul 2009 12:35:35 -0000 1.19 @@ -1 +1 @@ -e43bc679d76a497148f2244fad42faab hoe-2.3.1.gem +9b16f52bc6aa980837d6849940f047c1 hoe-2.3.2.gem From kwizart at fedoraproject.org Wed Jul 1 12:37:45 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 1 Jul 2009 12:37:45 +0000 (UTC) Subject: rpms/python-kaa-metadata/devel python-kaa-metadata.spec,1.14,1.15 Message-ID: <20090701123745.85E7C11C02C3@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-metadata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15498 Modified Files: python-kaa-metadata.spec Log Message: Switch to global Index: python-kaa-metadata.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-metadata/devel/python-kaa-metadata.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-kaa-metadata.spec 4 Jun 2009 23:14:06 -0000 1.14 +++ python-kaa-metadata.spec 1 Jul 2009 12:37:15 -0000 1.15 @@ -1,4 +1,4 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-metadata Version: 0.7.7 @@ -14,6 +14,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: python-devel BuildRequires: python-kaa-base >= 0.4.0 BuildRequires: libdvdread-devel >= 0.9.5 +#Experimental +#BuildRequires: exiv2-devel Requires: python-kaa-base >= 0.4.0 Obsoletes: mmpython < 0.4.11 From mclasen at fedoraproject.org Wed Jul 1 12:40:24 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 12:40:24 +0000 (UTC) Subject: rpms/gnome-applets/devel gnome-applets.spec,1.346,1.347 Message-ID: <20090701124024.E6E4611C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16312 Modified Files: gnome-applets.spec Log Message: 2.27.3 Index: gnome-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/gnome-applets.spec,v retrieving revision 1.346 retrieving revision 1.347 diff -u -p -r1.346 -r1.347 --- gnome-applets.spec 18 Jun 2009 00:19:17 -0000 1.346 +++ gnome-applets.spec 1 Jul 2009 12:39:54 -0000 1.347 @@ -11,7 +11,7 @@ %define gstreamer_version 0.10.14 %define gstreamer_plugins_version 0.10.14 %define gstreamer_plugins_good_version 0.10.6 -%define libxklavier_version 3.4 +%define libxklavier_version 4.0 %define libwnck_version 2.9.3 %define libgnome_desktop_version 2.11.1 %define gnome_utils_version 2.8.1 @@ -34,7 +34,7 @@ Summary: Small applications for the GNOME panel Name: gnome-applets Version: 2.27.3 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -349,6 +349,9 @@ fi %changelog +* Tue Jun 30 2009 Matthias Clasen - 1:2.27.3-3 +- Rebuild against new libxklavier + * Wed Jun 17 2009 Matthias Clasen - 1:2.27.3-2 - Drop sticky notes, now that we have gnotes From mcpierce at fedoraproject.org Wed Jul 1 12:43:07 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Wed, 1 Jul 2009 12:43:07 +0000 (UTC) Subject: rpms/rubygem-hoe/F-10 .cvsignore, 1.18, 1.19 rubygem-hoe.spec, 1.21, 1.22 sources, 1.18, 1.19 Message-ID: <20090701124307.E970E11C02C3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-hoe/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17337 Modified Files: .cvsignore rubygem-hoe.spec sources Log Message: Release 2.3.2 of Hoe. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-10/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 26 Jun 2009 18:14:20 -0000 1.18 +++ .cvsignore 1 Jul 2009 12:43:07 -0000 1.19 @@ -1 +1 @@ -hoe-2.3.1.gem +hoe-2.3.2.gem Index: rubygem-hoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-10/rubygem-hoe.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- rubygem-hoe.spec 26 Jun 2009 18:14:20 -0000 1.21 +++ rubygem-hoe.spec 1 Jul 2009 12:43:07 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Hoe is a simple rake/rubygems helper for project Rakefiles Name: rubygem-%{gemname} -Version: 2.3.1 +Version: 2.3.2 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 1 2009 Darryl Pierce - 2.3.2-1 +- Release 2.3.2 of Hoe. + * Fri Jun 26 2009 Darryl Pierce - 2.3.1-1 - Release 2.3.1 of Hoe. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-10/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 26 Jun 2009 18:14:20 -0000 1.18 +++ sources 1 Jul 2009 12:43:07 -0000 1.19 @@ -1 +1 @@ -e43bc679d76a497148f2244fad42faab hoe-2.3.1.gem +9b16f52bc6aa980837d6849940f047c1 hoe-2.3.2.gem From jzeleny at fedoraproject.org Wed Jul 1 12:56:54 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Wed, 1 Jul 2009 12:56:54 +0000 (UTC) Subject: rpms/openldap/devel .cvsignore, 1.46, 1.47 openldap.spec, 1.142, 1.143 sources, 1.48, 1.49 Message-ID: <20090701125654.C252411C02C3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/openldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21084 Modified Files: .cvsignore openldap.spec sources Log Message: Rebase to 2.4.16, minor change in spec file Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/openldap/devel/.cvsignore,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- .cvsignore 25 Feb 2009 08:08:13 -0000 1.46 +++ .cvsignore 1 Jul 2009 12:56:24 -0000 1.47 @@ -1,2 +1,2 @@ +openldap-2.4.16.tgz db-4.7.25.tar.gz -openldap-2.4.15.tgz Index: openldap.spec =================================================================== RCS file: /cvs/extras/rpms/openldap/devel/openldap.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- openldap.spec 9 Jun 2009 11:43:35 -0000 1.142 +++ openldap.spec 1 Jul 2009 12:56:24 -0000 1.143 @@ -3,7 +3,7 @@ # not work with some versions of OpenLDAP. %define db_version 4.7.25 %define ldbm_backend berkeley -%define version 2.4.15 +%define version 2.4.16 %define evolution_connector_prefix %{_libdir}/evolution-openldap %define evolution_connector_includedir %{evolution_connector_prefix}/include %define evolution_connector_libdir %{evolution_connector_prefix}/%{_lib} @@ -11,7 +11,7 @@ Summary: LDAP support libraries Name: openldap Version: %{version} -Release: 4%{?dist} +Release: 1%{?dist} License: OpenLDAP Group: System Environment/Daemons Source0: ftp://ftp.OpenLDAP.org/pub/OpenLDAP/openldap-release/openldap-%{version}.tgz @@ -489,7 +489,7 @@ fi if [ ! -f %{_sysconfdir}/pki/tls/certs/slapd.pem ] ; then pushd %{_sysconfdir}/pki/tls/certs umask 077 -cat << EOF | make slapd.pem +cat << EOF | make slapd.pem > /dev/null 2>&1 -- SomeState SomeCity @@ -604,6 +604,11 @@ fi %attr(0644,root,root) %{evolution_connector_libdir}/*.a %changelog +* Wed Jul 01 2009 Jan Zeleny 2.4.16-1 +- rebase of openldap to 2.4.16 +- fixed minor issue in spec file (output looking interactive + when installing servers) + * Tue Jun 09 2009 Jan Zeleny 2.4.15-4 - added $SLAPD_URLS variable to init script (#504504) Index: sources =================================================================== RCS file: /cvs/extras/rpms/openldap/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 25 Feb 2009 08:08:13 -0000 1.48 +++ sources 1 Jul 2009 12:56:24 -0000 1.49 @@ -1,2 +1,2 @@ +ed5b86e9d2b372d10edfe3bb59fee165 openldap-2.4.16.tgz ec2b87e833779681a0c3a814aa71359e db-4.7.25.tar.gz -6f97d2793a4c7e4b33839569b2fee2db openldap-2.4.15.tgz From jsafrane at fedoraproject.org Wed Jul 1 12:59:46 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 1 Jul 2009 12:59:46 +0000 (UTC) Subject: rpms/net-snmp/devel net-snmp.spec, 1.181, 1.182 ucd-snmp-4.2.4.pre3-mnttab.patch, 1.2, NONE Message-ID: <20090701125946.6023211C02C3@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/net-snmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22054 Modified Files: net-snmp.spec Removed Files: ucd-snmp-4.2.4.pre3-mnttab.patch Log Message: remove ucd-snmp-4.2.4.pre3-mnttab.patch, the configure check in current code should catch /etc/mtab automatically Index: net-snmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.spec,v retrieving revision 1.181 retrieving revision 1.182 diff -u -p -r1.181 -r1.182 --- net-snmp.spec 1 Jul 2009 11:03:31 -0000 1.181 +++ net-snmp.spec 1 Jul 2009 12:59:46 -0000 1.182 @@ -8,7 +8,7 @@ Summary: A collection of SNMP protocol tools and libraries Name: net-snmp Version: %{major_ver} -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 1 License: BSD and MIT @@ -24,7 +24,6 @@ Source6: net-snmp-config.h Source7: net-snmp-config Source8: net-snmp-trapd.redhat.conf Source9: net-snmpd.sysconfig -Patch1: ucd-snmp-4.2.4.pre3-mnttab.patch Patch4: net-snmp-5.4.1-pie.patch Patch5: net-snmp-5.1.2-dir-fix.patch Patch6: net-snmp-5.2.1-file_offset.patch @@ -159,7 +158,8 @@ Net-SNMP toolkit library. %prep %setup -q -n %{name}-%{major_ver} -%patch1 -p1 -b .mnttab +# TODO: check, there is /etc/mtab in net-snmp-config.h on all architectures +# %patch1 -p1 -b .mnttab %ifnarch ia64 %patch4 -p1 -b .pie @@ -423,6 +423,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/snmp/mibs %changelog +* Wed Jul 1 2009 Jan Safranek 5.4.2.1-13 +- package cleanup, remove unnecessary patches + * Wed Jul 1 2009 Jan Safranek 5.4.2.1-12 - make the default configuration less noisy, i.e. do not print "Connection from UDP:" and "Received SNMP packet(s) from UDP:" messages on each connection. --- ucd-snmp-4.2.4.pre3-mnttab.patch DELETED --- From sharkcz at fedoraproject.org Wed Jul 1 13:00:15 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 1 Jul 2009 13:00:15 +0000 (UTC) Subject: rpms/squirrel/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 squirrel-autotools.patch, 1.1, 1.2 squirrel.spec, 1.3, 1.4 Message-ID: <20090701130015.46EF011C02C3@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/squirrel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22042 Modified Files: .cvsignore sources squirrel-autotools.patch squirrel.spec Log Message: * Wed Jul 1 2009 Dan Hor??k 2.2.3-1 - update to upstream version 2.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Oct 2008 12:23:38 -0000 1.3 +++ .cvsignore 1 Jul 2009 12:59:44 -0000 1.4 @@ -1 +1 @@ -squirrel_2.2.2_stable_fixed.tar.gz +squirrel_2.2.3_stable.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Oct 2008 12:23:39 -0000 1.3 +++ sources 1 Jul 2009 12:59:44 -0000 1.4 @@ -1 +1 @@ -7c2842a8cc3ac4e2d63a74bcb59eaf02 squirrel_2.2.2_stable_fixed.tar.gz +25295ed1459111a80f612357cfe83b54 squirrel_2.2.3_stable.tar.gz squirrel-autotools.patch: Index: squirrel-autotools.patch =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/devel/squirrel-autotools.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squirrel-autotools.patch 1 Jun 2008 09:05:06 -0000 1.1 +++ squirrel-autotools.patch 1 Jul 2009 12:59:45 -0000 1.2 @@ -9,10 +9,10 @@ diff -Nru SQUIRREL2.orig/autogen.sh SQUI + exit +fi + -+libtoolize ++libtoolize --copy +aclocal +autoheader -+automake --add-missing --foreign ++automake --add-missing --copy --foreign +autoconf diff -Nru SQUIRREL2.orig/configure.ac SQUIRREL2/configure.ac --- SQUIRREL2.orig/configure.ac 1970-01-01 01:00:00.000000000 +0100 @@ -20,7 +20,7 @@ diff -Nru SQUIRREL2.orig/configure.ac SQ @@ -0,0 +1,26 @@ +## Bootstrap autoconf/automake +AC_PREREQ(2.59) -+AC_INIT([squirrel], [2.2], []) ++AC_INIT([squirrel], [2.2.3], []) +AC_CANONICAL_TARGET +AC_CONFIG_SRCDIR([configure.ac]) +AM_INIT_AUTOMAKE @@ -181,12 +181,14 @@ diff -Nru SQUIRREL2.orig/sqstdlib/Makefi diff -Nru SQUIRREL2.orig/sqstdlib/Makefile.am SQUIRREL2/sqstdlib/Makefile.am --- SQUIRREL2.orig/sqstdlib/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/sqstdlib/Makefile.am 2007-07-07 19:24:48.000000000 +0200 -@@ -0,0 +1,18 @@ +@@ -0,0 +1,20 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti + +lib_LTLIBRARIES = libsqstdlib.la + ++libsqstdlib_la_LDFLAGS = -release $(VERSION) ++ +libsqstdlib_la_SOURCES = \ + sqstdaux.cpp \ + sqstdblob.cpp \ @@ -259,12 +261,14 @@ diff -Nru SQUIRREL2.orig/squirrel/Makefi diff -Nru SQUIRREL2.orig/squirrel/Makefile.am SQUIRREL2/squirrel/Makefile.am --- SQUIRREL2.orig/squirrel/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/squirrel/Makefile.am 2007-07-07 19:03:05.000000000 +0200 -@@ -0,0 +1,36 @@ +@@ -0,0 +1,38 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti -Wall + +lib_LTLIBRARIES = libsquirrel.la + ++libsquirrel_la_LDFLAGS = -release $(VERSION) ++ +libsquirrel_la_SOURCES = \ + sqapi.cpp \ + sqarray.h \ Index: squirrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/devel/squirrel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- squirrel.spec 26 Feb 2009 02:43:41 -0000 1.3 +++ squirrel.spec 1 Jul 2009 12:59:45 -0000 1.4 @@ -1,16 +1,12 @@ Name: squirrel -Version: 2.2.2 -Release: 2%{?dist} +Version: 2.2.3 +Release: 1%{?dist} Summary: High level imperative/OO programming language Group: Development/Tools License: zlib URL: http://squirrel-lang.org/ -#Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz -# upstream source archive contains 0000 as permisions for both files and dirs -# fixed with "find . -type d -exec chmod 0755 {} \;" -# and "find . -type f -exec chmod 0644 {} \;" -Source0: %{name}_%{version}_stable_fixed.tar.gz +Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: squirrel-autotools.patch @@ -38,7 +34,9 @@ Development files needed to use Squirrel %prep -%setup -q -n SQUIRREL2 +%setup -q -c + +pushd SQUIRREL2 %patch0 -p1 # fix extension for autotools @@ -52,16 +50,21 @@ do done sh autogen.sh +popd %build +pushd SQUIRREL2 %configure --disable-static make %{?_smp_mflags} +popd %install rm -rf $RPM_BUILD_ROOT +pushd SQUIRREL2 make DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p" install +popd rm $RPM_BUILD_ROOT%{_libdir}/*.la @@ -76,24 +79,27 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README HISTORY COPYRIGHT +%doc SQUIRREL2/{README,HISTORY,COPYRIGHT} %{_bindir}/sq %files libs %defattr(-,root,root,-) -%doc COPYRIGHT -%{_libdir}/libsqstdlib.so.* -%{_libdir}/libsquirrel.so.* +%doc SQUIRREL2/COPYRIGHT +%{_libdir}/libsqstdlib-%{version}.so +%{_libdir}/libsquirrel-%{version}.so %files devel %defattr(-,root,root,-) -%doc doc/*.pdf +%doc SQUIRREL2/doc/*.pdf %{_includedir}/squirrel %{_libdir}/libsqstdlib.so %{_libdir}/libsquirrel.so %changelog +* Wed Jul 1 2009 Dan Hor??k 2.2.3-1 +- update to upstream version 2.2.3 + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sailer at fedoraproject.org Wed Jul 1 13:01:30 2009 From: sailer at fedoraproject.org (sailer) Date: Wed, 1 Jul 2009 13:01:30 +0000 (UTC) Subject: rpms/mingw32-qt-qmake/devel mingw32-qt-qmake.spec,1.5,1.6 Message-ID: <20090701130130.23BFF11C02C3@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/pkgs/rpms/mingw32-qt-qmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22545 Modified Files: mingw32-qt-qmake.spec Log Message: update to 4.5.2 Index: mingw32-qt-qmake.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-qt-qmake/devel/mingw32-qt-qmake.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-qt-qmake.spec 16 Jun 2009 12:39:51 -0000 1.5 +++ mingw32-qt-qmake.spec 1 Jul 2009 13:00:59 -0000 1.6 @@ -7,7 +7,7 @@ %global debug_package %{nil} Name: mingw32-qt-qmake -Version: 4.5.1 +Version: 4.5.2 Release: 1%{?dist} Summary: Qt for Windows Build Environment @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 Thomas Sailer - 4.5.2-1 +- update to 4.5.2 to match mingw32-qt version + * Tue Jun 16 2009 Thomas Sailer - 4.5.1-1 - update to match mingw32-qt version From rdieter at fedoraproject.org Wed Jul 1 13:02:31 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 13:02:31 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec,1.242,1.243 Message-ID: <20090701130231.B995511C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22841 Modified Files: kdebase-workspace.spec Log Message: * Wed Jul 01 2009 Rex Dieter 4.2.95-4 - rebuild (libxklavier) Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.242 retrieving revision 1.243 diff -u -p -r1.242 -r1.243 --- kdebase-workspace.spec 29 Jun 2009 21:03:55 -0000 1.242 +++ kdebase-workspace.spec 1 Jul 2009 13:02:01 -0000 1.243 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.95 -Release: 3%{?dist} +Release: 4%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -511,6 +511,9 @@ fi %changelog +* Wed Jul 01 2009 Rex Dieter 4.2.95-4 +- rebuild (libxklavier) + * Mon Jun 29 2009 Rex Dieter 4.2.95-3 - omit a few kdm bits from main pkg (#508647) From mcpierce at fedoraproject.org Wed Jul 1 13:02:44 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Wed, 1 Jul 2009 13:02:44 +0000 (UTC) Subject: rpms/rubygem-hoe/F-11 .cvsignore, 1.18, 1.19 rubygem-hoe.spec, 1.23, 1.24 sources, 1.18, 1.19 Message-ID: <20090701130245.0294811C02C3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-hoe/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22910 Modified Files: .cvsignore rubygem-hoe.spec sources Log Message: Release 2.3.2 of Hoe. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 26 Jun 2009 18:40:50 -0000 1.18 +++ .cvsignore 1 Jul 2009 13:02:14 -0000 1.19 @@ -1 +1 @@ -hoe-2.3.1.gem +hoe-2.3.2.gem Index: rubygem-hoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-11/rubygem-hoe.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- rubygem-hoe.spec 26 Jun 2009 18:40:50 -0000 1.23 +++ rubygem-hoe.spec 1 Jul 2009 13:02:14 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Hoe is a simple rake/rubygems helper for project Rakefiles Name: rubygem-%{gemname} -Version: 2.3.1 +Version: 2.3.2 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,7 +71,10 @@ rm -rf %{buildroot} %changelog -* Fri Jun 26 2009 Darryl Pierce - 2.3.1-1 +* Wed Jul 1 2009 Darryl Pierce - 2.3.2-1 +- Release 2.3.2 of Hoe. + +* Fri Jun 26 2009 Darryl Pierce - 2.3.1-1 - Release 2.3.1 of Hoe. * Mon Jun 22 2009 Darryl Pierce - 2.2.0-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 26 Jun 2009 18:40:50 -0000 1.18 +++ sources 1 Jul 2009 13:02:14 -0000 1.19 @@ -1 +1 @@ -e43bc679d76a497148f2244fad42faab hoe-2.3.1.gem +9b16f52bc6aa980837d6849940f047c1 hoe-2.3.2.gem From lucilanga at fedoraproject.org Wed Jul 1 13:04:28 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 13:04:28 +0000 (UTC) Subject: rpms/libftdi/F-11 libftdi.spec,1.7,1.8 Message-ID: <20090701130428.B998D11C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23445 Modified Files: libftdi.spec Log Message: * Wed Jul 01 2009 Lucian Langa - 0.16-3 - added udev rules - addedd c++, python bindings Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-11/libftdi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libftdi.spec 30 Jun 2009 20:28:14 -0000 1.7 +++ libftdi.spec 1 Jul 2009 13:03:58 -0000 1.8 @@ -1,6 +1,7 @@ +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -10,8 +11,8 @@ Source0: http://www.intra2net.com/de/pro Source1: no_date_footer.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libusb-devel, doxygen, boost-devel -Requires: pkgconfig +BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig +Requires: pkgconfig, udev %package devel Summary: Header files and static libraries for libftdi @@ -19,6 +20,21 @@ Group: Development/Libraries Requires: libftdi = %{version}-%{release} Requires: libusb-devel +%package python +Summary: Libftdi library Python binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++ +Summary: Libftdi library C++ binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++-devel +Summary: Libftdi library C++ binding development headers and libraries +Group: Development/Libraries +Requires: libftdi-devel = %{version}-%{release}, libftdi-c++ = %{version}-%{release} + %description A library (using libusb) to talk to FTDI's FT2232C, FT232BM and FT245BM type chips including the popular bitbang mode. @@ -26,13 +42,23 @@ FT232BM and FT245BM type chips including %description devel Header files and static libraries for libftdi +%description python +Libftdi Python Language bindings. + +%description c++ +Libftdi library C++ language binding. + +%description c++-devel +Libftdi library C++ binding development headers and libraries +for building C++ applications with libftdi. + %prep %setup -q sed -i -e 's/HTML_FOOTER =/HTML_FOOTER = no_date_footer.html/g' doc/Doxyfile.in %build -%configure +%configure --enable-python-binding --enable-libftdipp cp %{SOURCE1} %{_builddir}/%{name}-%{version}/doc make %{?_smp_mflags} @@ -44,7 +70,8 @@ find %{buildroot} -name \*\.la -print | mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3 #no man install install -p -m 644 doc/man/man3/*.3 $RPM_BUILD_ROOT%{_mandir}/man3 - +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d +install -p -m 644 packages/99-libftdi.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d # Cleanup examples rm -f $RPM_BUILD_ROOT/%{_bindir}/simple @@ -61,7 +88,8 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING.LIB README -%{_libdir}/*.so.* +%{_libdir}/libftdi.so.* +%config(noreplace) %{_sysconfdir}/udev/rules.d/99-libftdi.rules %files devel @@ -69,17 +97,39 @@ rm -rf $RPM_BUILD_ROOT %doc doc/html %{_bindir}/libftdi-config %{_libdir}/libftdi.a -%{_libdir}/libftdipp.a -%{_libdir}/*.so +%{_libdir}/libftdi.so %{_includedir}/*.h -%{_includedir}/*.hpp -%{_libdir}/pkgconfig/*.pc +%{_libdir}/pkgconfig/libftdi.pc %{_mandir}/man3/* +%files python +%defattr(-, root, root, -) +%{python_sitearch}/* + +%files c++ +%defattr(-, root, root, -) +%doc AUTHORS ChangeLog COPYING.LIB README +%{_libdir}/libftdipp.so.* + +%files c++-devel +%defattr(-, root, root, -) +%doc doc/html +%{_libdir}/libftdipp.a +%{_libdir}/libftdipp.so +%{_includedir}/*.hpp +%{_libdir}/pkgconfig/libftdipp.pc + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig +%post c++ -p /sbin/ldconfig +%postun c++ -p /sbin/ldconfig + %changelog +* Wed Jul 01 2009 Lucian Langa - 0.16-3 +- added udev rules +- addedd c++, python bindings + * Tue Jun 30 2009 Lucian Langa - 0.16-2 - fix doxygen conflict (#508498) From jmoskovc at fedoraproject.org Wed Jul 1 13:05:31 2009 From: jmoskovc at fedoraproject.org (=?utf-8?b?SmnFmcOtIE1vc2tvdsSNw6Fr?=) Date: Wed, 1 Jul 2009 13:05:31 +0000 (UTC) Subject: rpms/usbutils/devel usbutils.spec,1.27,1.28 Message-ID: <20090701130531.9461D11C02C3@cvs1.fedora.phx.redhat.com> Author: jmoskovc Update of /cvs/extras/rpms/usbutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23611 Modified Files: usbutils.spec Log Message: Added autoreconf (fixes building in koji) Index: usbutils.spec =================================================================== RCS file: /cvs/extras/rpms/usbutils/devel/usbutils.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- usbutils.spec 1 Jul 2009 11:20:44 -0000 1.27 +++ usbutils.spec 1 Jul 2009 13:05:01 -0000 1.28 @@ -1,13 +1,13 @@ Name: usbutils Version: 0.82 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/linux-usb/%{name}-%{version}.tar.gz URL: http://www.linux-usb.org/ License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: hwdata -BuildRequires: libtool, libusb-devel >= 0.1.8 +BuildRequires: autoconf, libtool, libusb-devel >= 0.1.8 Summary: Linux USB utilities Group: Applications/System Conflicts: hotplug < 3:2002_01_14-2 @@ -21,6 +21,7 @@ USB bus. %prep %setup -q %patch0 -p1 +autoreconf %build %configure --sbindir=/sbin @@ -44,6 +45,9 @@ sed -i 's|usbids=/usr/share/usb.ids|usbi rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 Jiri Moskovcak 0.82-3 +- added autoconf to fix build in koji + * Wed Jul 1 2009 Jiri Moskovcak 0.82-2 - minor fix in Makefile.am to properly find usb.ids from hwdata - Resolves: #506974 From limb at fedoraproject.org Wed Jul 1 13:07:34 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 1 Jul 2009 13:07:34 +0000 (UTC) Subject: rpms/roundcubemail/devel .cvsignore, 1.11, 1.12 roundcubemail.spec, 1.22, 1.23 sources, 1.12, 1.13 Message-ID: <20090701130734.767AA11C02C3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/roundcubemail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24448 Modified Files: .cvsignore roundcubemail.spec sources Log Message: New upstream. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 10 Apr 2009 12:32:58 -0000 1.11 +++ .cvsignore 1 Jul 2009 13:07:34 -0000 1.12 @@ -1 +1 @@ -roundcubemail-0.2.1-dep.tar.gz +roundcubemail-0.2.2-dep.tar.gz Index: roundcubemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/devel/roundcubemail.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- roundcubemail.spec 10 Apr 2009 12:32:58 -0000 1.22 +++ roundcubemail.spec 1 Jul 2009 13:07:34 -0000 1.23 @@ -1,6 +1,6 @@ %define roundcubedir %{_datadir}/roundcubemail Name: roundcubemail -Version: 0.2.1 +Version: 0.2.2 Release: 1%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client @@ -45,7 +45,7 @@ requires the MySQL database or the Postg interface is fully skinnable using XHTML and CSS 2. %prep -%setup -q -n roundcubemail-0.2.1-dep +%setup -q -n roundcubemail-0.2.2-dep %patch0 -p0 #%patch1 -p0 @@ -139,6 +139,9 @@ exit 0 %config(noreplace) %{_sysconfdir}/logrotate.d/roundcubemail %changelog +* Wed Jul 01 2009 Jon Ciesla = 0.2.2-1 +- New upstream. + * Fri Apr 10 2009 Jon Ciesla = 0.2.1-1 - New upstream. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 10 Apr 2009 12:32:58 -0000 1.12 +++ sources 1 Jul 2009 13:07:34 -0000 1.13 @@ -1 +1 @@ -86e9238b31a917eeabb23ba1d226c1dc roundcubemail-0.2.1-dep.tar.gz +926d6391bc4014476ce8461354ed9c9f roundcubemail-0.2.2-dep.tar.gz From pkgdb at fedoraproject.org Wed Jul 1 13:09:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:08 +0000 Subject: [pkgdb] perl-Hash-Merge was added for spot Message-ID: <20090701130909.06DA210F88C@bastion2.fedora.phx.redhat.com> spot has added Package perl-Hash-Merge with summary Merges arbitrary deep hashes into a single hash spot has approved Package perl-Hash-Merge spot has added a Fedora devel branch for perl-Hash-Merge with an owner of spot spot has approved perl-Hash-Merge in Fedora devel spot has approved Package perl-Hash-Merge spot has set commit to Approved for 107427 on perl-Hash-Merge (Fedora devel) spot has set checkout to Approved for 107427 on perl-Hash-Merge (Fedora devel) spot has set build to Approved for 107427 on perl-Hash-Merge (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge summary updated by spot Message-ID: <20090701130911.CC10710F896@bastion2.fedora.phx.redhat.com> spot set package perl-Hash-Merge summary to Merges arbitrary deep hashes into a single hash To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge (Fedora, 11) updated by spot Message-ID: <20090701130911.D02A710F899@bastion2.fedora.phx.redhat.com> spot added a Fedora EPEL 5 branch for perl-Hash-Merge spot has set commit to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 5) spot has set checkout to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 5) spot has set build to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 5) spot approved watchbugzilla on perl-Hash-Merge (Fedora EPEL 5) for perl-sig spot approved watchcommits on perl-Hash-Merge (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge (Fedora, 11) updated by spot Message-ID: <20090701130911.D632F10F8A4@bastion2.fedora.phx.redhat.com> spot added a Fedora EPEL 4 branch for perl-Hash-Merge spot has set commit to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 4) spot has set checkout to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 4) spot has set build to Approved for 107427 on perl-Hash-Merge (Fedora EPEL 4) spot approved watchbugzilla on perl-Hash-Merge (Fedora EPEL 4) for perl-sig spot approved watchcommits on perl-Hash-Merge (Fedora EPEL 4) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge (Fedora, 11) updated by spot Message-ID: <20090701130911.D336E10F8A2@bastion2.fedora.phx.redhat.com> spot added a Fedora 10 branch for perl-Hash-Merge spot has set commit to Approved for 107427 on perl-Hash-Merge (Fedora 10) spot has set checkout to Approved for 107427 on perl-Hash-Merge (Fedora 10) spot has set build to Approved for 107427 on perl-Hash-Merge (Fedora 10) spot approved watchbugzilla on perl-Hash-Merge (Fedora 10) for perl-sig spot approved watchcommits on perl-Hash-Merge (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From spot at fedoraproject.org Wed Jul 1 13:09:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 13:09:17 +0000 (UTC) Subject: rpms/perl-Hash-Merge/devel - New directory Message-ID: <20090701130917.5757B11C02C4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsz25052/rpms/perl-Hash-Merge/devel Log Message: Directory /cvs/pkgs/rpms/perl-Hash-Merge/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge (Fedora, 11) updated by spot Message-ID: <20090701130911.E93FE10F8A9@bastion2.fedora.phx.redhat.com> spot added a Fedora 11 branch for perl-Hash-Merge spot has set commit to Approved for 107427 on perl-Hash-Merge (Fedora 11) spot has set checkout to Approved for 107427 on perl-Hash-Merge (Fedora 11) spot has set build to Approved for 107427 on perl-Hash-Merge (Fedora 11) spot approved watchbugzilla on perl-Hash-Merge (Fedora 11) for perl-sig spot approved watchcommits on perl-Hash-Merge (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From pkgdb at fedoraproject.org Wed Jul 1 13:09:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:09:11 +0000 Subject: [pkgdb] perl-Hash-Merge (Fedora, 11) updated by spot Message-ID: <20090701130911.DE57C10F8A7@bastion2.fedora.phx.redhat.com> spot approved watchbugzilla on perl-Hash-Merge (Fedora devel) for perl-sig spot approved watchcommits on perl-Hash-Merge (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Hash-Merge From spot at fedoraproject.org Wed Jul 1 13:09:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 13:09:17 +0000 (UTC) Subject: rpms/perl-Hash-Merge - New directory Message-ID: <20090701130917.325B511C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsz25052/rpms/perl-Hash-Merge Log Message: Directory /cvs/pkgs/rpms/perl-Hash-Merge added to the repository From spot at fedoraproject.org Wed Jul 1 13:09:22 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 13:09:22 +0000 (UTC) Subject: rpms/perl-Hash-Merge Makefile,NONE,1.1 Message-ID: <20090701130922.B25A611C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsz25052/rpms/perl-Hash-Merge Added Files: Makefile Log Message: Setup of module perl-Hash-Merge --- NEW FILE Makefile --- # Top level Makefile for module perl-Hash-Merge all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From spot at fedoraproject.org Wed Jul 1 13:09:23 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 13:09:23 +0000 (UTC) Subject: rpms/perl-Hash-Merge/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090701130923.3786311C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsz25052/rpms/perl-Hash-Merge/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Hash-Merge --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Hash-Merge # $Id: Makefile,v 1.1 2009/07/01 13:09:22 spot Exp $ NAME := perl-Hash-Merge SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From twaugh at fedoraproject.org Wed Jul 1 13:12:34 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 1 Jul 2009 13:12:34 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3244.patch,NONE,1.1 cups.spec,1.481,1.482 Message-ID: <20090701131234.392C611C02C3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26016 Modified Files: cups.spec Added Files: cups-str3244.patch Log Message: * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.7 - Fixed template problem preventing current printer option defaults from being shown in the web interface (bug #506794, STR #3244). cups-str3244.patch: --- NEW FILE cups-str3244.patch --- diff -up cups-1.4rc1/templates/de/option-boolean.tmpl.str3244 cups-1.4rc1/templates/de/option-boolean.tmpl --- cups-1.4rc1/templates/de/option-boolean.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-boolean.tmpl 2009-07-01 14:07:00.333422971 +0100 @@ -1,6 +1,6 @@ {keytext}: -{[choices]{text}} +{[choices]{text}} diff -up cups-1.4rc1/templates/de/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/de/option-pickmany.tmpl --- cups-1.4rc1/templates/de/option-pickmany.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-pickmany.tmpl 2009-07-01 14:07:00.333422971 +0100 @@ -1,6 +1,6 @@ {keytext}: diff -up cups-1.4rc1/templates/de/option-pickone.tmpl.str3244 cups-1.4rc1/templates/de/option-pickone.tmpl --- cups-1.4rc1/templates/de/option-pickone.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-pickone.tmpl 2009-07-01 14:07:00.334423521 +0100 @@ -1,7 +1,7 @@ {keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/es/option-boolean.tmpl.str3244 cups-1.4rc1/templates/es/option-boolean.tmpl --- cups-1.4rc1/templates/es/option-boolean.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-boolean.tmpl 2009-07-01 14:07:00.335423309 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/es/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/es/option-pickmany.tmpl --- cups-1.4rc1/templates/es/option-pickmany.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-pickmany.tmpl 2009-07-01 14:07:00.335423309 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/es/option-pickone.tmpl.str3244 cups-1.4rc1/templates/es/option-pickone.tmpl --- cups-1.4rc1/templates/es/option-pickone.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-pickone.tmpl 2009-07-01 14:07:00.336423193 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/ja/option-boolean.tmpl.str3244 cups-1.4rc1/templates/ja/option-boolean.tmpl --- cups-1.4rc1/templates/ja/option-boolean.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-boolean.tmpl 2009-07-01 14:07:00.336423193 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ja/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/ja/option-pickmany.tmpl --- cups-1.4rc1/templates/ja/option-pickmany.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-pickmany.tmpl 2009-07-01 14:07:00.337423282 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ja/option-pickone.tmpl.str3244 cups-1.4rc1/templates/ja/option-pickone.tmpl --- cups-1.4rc1/templates/ja/option-pickone.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-pickone.tmpl 2009-07-01 14:07:00.337423282 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/option-boolean.tmpl.str3244 cups-1.4rc1/templates/option-boolean.tmpl --- cups-1.4rc1/templates/option-boolean.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-boolean.tmpl 2009-07-01 14:07:00.338423040 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/option-pickmany.tmpl --- cups-1.4rc1/templates/option-pickmany.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-pickmany.tmpl 2009-07-01 14:07:00.338423040 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/option-pickone.tmpl.str3244 cups-1.4rc1/templates/option-pickone.tmpl --- cups-1.4rc1/templates/option-pickone.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-pickone.tmpl 2009-07-01 14:07:00.339298478 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/pl/option-boolean.tmpl.str3244 cups-1.4rc1/templates/pl/option-boolean.tmpl --- cups-1.4rc1/templates/pl/option-boolean.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-boolean.tmpl 2009-07-01 14:07:00.340298367 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/pl/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/pl/option-pickmany.tmpl --- cups-1.4rc1/templates/pl/option-pickmany.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-pickmany.tmpl 2009-07-01 14:07:00.340298367 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/pl/option-pickone.tmpl.str3244 cups-1.4rc1/templates/pl/option-pickone.tmpl --- cups-1.4rc1/templates/pl/option-pickone.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-pickone.tmpl 2009-07-01 14:07:00.344297815 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/ru/option-boolean.tmpl.str3244 cups-1.4rc1/templates/ru/option-boolean.tmpl --- cups-1.4rc1/templates/ru/option-boolean.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-boolean.tmpl 2009-07-01 14:07:00.345423743 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ru/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/ru/option-pickmany.tmpl --- cups-1.4rc1/templates/ru/option-pickmany.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-pickmany.tmpl 2009-07-01 14:07:00.345423743 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ru/option-pickone.tmpl.str3244 cups-1.4rc1/templates/ru/option-pickone.tmpl --- cups-1.4rc1/templates/ru/option-pickone.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-pickone.tmpl 2009-07-01 14:07:00.346423150 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.481 retrieving revision 1.482 diff -u -p -r1.481 -r1.482 --- cups.spec 1 Jul 2009 11:28:21 -0000 1.481 +++ cups.spec 1 Jul 2009 13:12:34 -0000 1.482 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.6%{?dist} +Release: 0.%{pre}.7%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -47,7 +47,8 @@ Patch23: cups-res_init.patch Patch24: cups-str3229.patch Patch25: cups-filter-debug.patch Patch26: cups-str3231.patch -Patch27: cups-avahi.patch +Patch27: cups-str3244.patch +Patch28: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -190,7 +191,8 @@ module. %patch24 -p1 -b .str3229 %patch25 -p1 -b .filter-debug %patch26 -p1 -b .str3231 -#%patch27 -p1 -b .avahi +%patch27 -p1 -b .str3244 +#%patch28 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -474,6 +476,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.7 +- Fixed template problem preventing current printer option defaults + from being shown in the web interface (bug #506794, STR #3244). + * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 - Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). From twaugh at fedoraproject.org Wed Jul 1 13:13:33 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 1 Jul 2009 13:13:33 +0000 (UTC) Subject: rpms/cups/devel cups-str3244.patch,NONE,1.1 cups.spec,1.480,1.481 Message-ID: <20090701131333.1973F11C02C3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26165 Modified Files: cups.spec Added Files: cups-str3244.patch Log Message: * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 - Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). cups-str3244.patch: --- NEW FILE cups-str3244.patch --- diff -up cups-1.4rc1/templates/de/option-boolean.tmpl.str3244 cups-1.4rc1/templates/de/option-boolean.tmpl --- cups-1.4rc1/templates/de/option-boolean.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-boolean.tmpl 2009-07-01 14:07:00.333422971 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/de/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/de/option-pickmany.tmpl --- cups-1.4rc1/templates/de/option-pickmany.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-pickmany.tmpl 2009-07-01 14:07:00.333422971 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/de/option-pickone.tmpl.str3244 cups-1.4rc1/templates/de/option-pickone.tmpl --- cups-1.4rc1/templates/de/option-pickone.tmpl.str3244 2009-04-03 16:55:28.000000000 +0100 +++ cups-1.4rc1/templates/de/option-pickone.tmpl 2009-07-01 14:07:00.334423521 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/es/option-boolean.tmpl.str3244 cups-1.4rc1/templates/es/option-boolean.tmpl --- cups-1.4rc1/templates/es/option-boolean.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-boolean.tmpl 2009-07-01 14:07:00.335423309 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/es/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/es/option-pickmany.tmpl --- cups-1.4rc1/templates/es/option-pickmany.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-pickmany.tmpl 2009-07-01 14:07:00.335423309 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/es/option-pickone.tmpl.str3244 cups-1.4rc1/templates/es/option-pickone.tmpl --- cups-1.4rc1/templates/es/option-pickone.tmpl.str3244 2008-12-08 21:20:06.000000000 +0000 +++ cups-1.4rc1/templates/es/option-pickone.tmpl 2009-07-01 14:07:00.336423193 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/ja/option-boolean.tmpl.str3244 cups-1.4rc1/templates/ja/option-boolean.tmpl --- cups-1.4rc1/templates/ja/option-boolean.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-boolean.tmpl 2009-07-01 14:07:00.336423193 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ja/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/ja/option-pickmany.tmpl --- cups-1.4rc1/templates/ja/option-pickmany.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-pickmany.tmpl 2009-07-01 14:07:00.337423282 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ja/option-pickone.tmpl.str3244 cups-1.4rc1/templates/ja/option-pickone.tmpl --- cups-1.4rc1/templates/ja/option-pickone.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ja/option-pickone.tmpl 2009-07-01 14:07:00.337423282 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/option-boolean.tmpl.str3244 cups-1.4rc1/templates/option-boolean.tmpl --- cups-1.4rc1/templates/option-boolean.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-boolean.tmpl 2009-07-01 14:07:00.338423040 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/option-pickmany.tmpl --- cups-1.4rc1/templates/option-pickmany.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-pickmany.tmpl 2009-07-01 14:07:00.338423040 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/option-pickone.tmpl.str3244 cups-1.4rc1/templates/option-pickone.tmpl --- cups-1.4rc1/templates/option-pickone.tmpl.str3244 2008-10-04 16:34:08.000000000 +0100 +++ cups-1.4rc1/templates/option-pickone.tmpl 2009-07-01 14:07:00.339298478 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/pl/option-boolean.tmpl.str3244 cups-1.4rc1/templates/pl/option-boolean.tmpl --- cups-1.4rc1/templates/pl/option-boolean.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-boolean.tmpl 2009-07-01 14:07:00.340298367 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/pl/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/pl/option-pickmany.tmpl --- cups-1.4rc1/templates/pl/option-pickmany.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-pickmany.tmpl 2009-07-01 14:07:00.340298367 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/pl/option-pickone.tmpl.str3244 cups-1.4rc1/templates/pl/option-pickone.tmpl --- cups-1.4rc1/templates/pl/option-pickone.tmpl.str3244 2009-02-25 16:48:35.000000000 +0000 +++ cups-1.4rc1/templates/pl/option-pickone.tmpl 2009-07-01 14:07:00.344297815 +0100 @@ -1,7 +1,7 @@
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] diff -up cups-1.4rc1/templates/ru/option-boolean.tmpl.str3244 cups-1.4rc1/templates/ru/option-boolean.tmpl --- cups-1.4rc1/templates/ru/option-boolean.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-boolean.tmpl 2009-07-01 14:07:00.345423743 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ru/option-pickmany.tmpl.str3244 cups-1.4rc1/templates/ru/option-pickmany.tmpl --- cups-1.4rc1/templates/ru/option-pickmany.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-pickmany.tmpl 2009-07-01 14:07:00.345423743 +0100 @@ -1,6 +1,6 @@ diff -up cups-1.4rc1/templates/ru/option-pickone.tmpl.str3244 cups-1.4rc1/templates/ru/option-pickone.tmpl --- cups-1.4rc1/templates/ru/option-pickone.tmpl.str3244 2009-02-17 19:04:25.000000000 +0000 +++ cups-1.4rc1/templates/ru/option-pickone.tmpl 2009-07-01 14:07:00.346423150 +0100 @@ -1,7 +1,7 @@ ") .arg(i18nc("@info:tooltip network domains", "Domains")) .arg(temp); } else if (requestedInfo == QLatin1String("routes")) { -#if KDE_IS_VERSION(4, 2, 95) +#if KDE_IS_VERSION(4, 2, 99) QList routes = cfg.routes(); if (!routes.isEmpty()) { temp = buildRoutesHtmlTable(routes); } Index: kde-plasma-networkmanagement.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/kde-plasma-networkmanagement.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- kde-plasma-networkmanagement.spec 27 Jul 2009 12:56:12 -0000 1.13 +++ kde-plasma-networkmanagement.spec 27 Jul 2009 14:03:20 -0000 1.14 @@ -1,6 +1,6 @@ Name: kde-plasma-networkmanagement Version: 0.1 -Release: 0.18.20090724svn%{?dist} +Release: 0.18.20090726svn%{?dist} Summary: NetworkManager KDE 4 integration Group: User Interface/Desktops @@ -8,9 +8,10 @@ License: (GPLv2 or GPLv3) and GPL URL: http://websvn.kde.org/trunk/playground/base/plasma/applets/networkmanager/ # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 1001960 svn://anonsvn.kde.org/home/kde/trunk/playground/base/plasma/applets/networkmanager kde-plasma-networkmanagement-0.1 +# svn export -r 1002781 svn://anonsvn.kde.org/home/kde/trunk/playground/base/plasma/applets/networkmanager kde-plasma-networkmanagement-0.1 # tar -c kde-plasma-networkmanagement-0.1 | bzip2 --best -c > kde-plasma-networkmanagement-0.1.tar.bz2 Source0: %{name}-%{version}.tar.bz2 +Patch0: %{name}-%{version}-version-check.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel >= 4.2.98 @@ -84,6 +85,7 @@ Provides: knetworkmanager-vpnc = 1 %prep %setup -q +%patch0 %build @@ -115,28 +117,36 @@ xdg-icon-resource forceupdate --theme ox %files %defattr(-,root,root,-) -%doc TODO DESIGN +%doc TODO DESIGN COPYING COPYING.LIB %{_sysconfdir}/dbus-1/system.d/NetworkManager-kde4.conf %{_kde4_libdir}/kde4/kcm_networkmanagement.so -%{_kde4_libdir}/kde4/kded_knetworkmanager.so +%{_kde4_libdir}/kde4/kded_networkmanagement.so %{_kde4_libdir}/kde4/plasma_applet_networkmanagement.so -%{_kde4_libdir}/libknmdbus.so.4* -%{_kde4_libdir}/libknmstorage.so.4* +%{_kde4_libdir}/libknmclient.so.4* +%{_kde4_libdir}/libknminternals.so.4* +%{_kde4_libdir}/libknmservice.so.4* %{_kde4_libdir}/libknmui.so.4* +# Unversioned libraries +%{_kde4_libdir}/libknm_nm.so +%{_kde4_libdir}/libsolidcontrolfuture.so %{_kde4_libexecdir}/networkmanagement_configshell -%{_kde4_iconsdir}/oxygen/32x32/actions/accesspoint.png +%{_kde4_iconsdir}/*/*/*/*.png %{_kde4_appsdir}/desktoptheme/default/networkmanagement/networkmanagement-wireless.svgz %{_kde4_appsdir}/desktoptheme/default/networkmanagement/networkmanagement.svg %{_kde4_appsdir}/networkmanagement/ %{_kde4_datadir}/kde4/services/kcm_networkmanagement.desktop -%{_kde4_datadir}/kde4/services/kded/knetworkmanager.desktop +%{_kde4_datadir}/kde4/services/kded/networkmanagement.desktop %{_kde4_datadir}/kde4/services/plasma-applet-networkmanagement.desktop %{_kde4_datadir}/kde4/servicetypes/networkmanagement_vpnuiplugin.desktop +%{_kde4_bindir}/knetworkmanager +%{_kde4_datadir}/autostart/kde4-knetworkmanager-autostart.desktop +%{_kde4_datadir}/applications/kde4/knetworkmanager.desktop %files devel %defattr(-,root,root,-) -%{_kde4_libdir}/libknmdbus.so -%{_kde4_libdir}/libknmstorage.so +%{_kde4_libdir}/libknmclient.so +%{_kde4_libdir}/libknminternals.so +%{_kde4_libdir}/libknmservice.so %{_kde4_libdir}/libknmui.so %files openvpn @@ -151,7 +161,7 @@ xdg-icon-resource forceupdate --theme ox %changelog -* Fri Jul 24 2009 Ben Boeckel 0.1-0.18.20090724svn +* Mon Jul 27 2009 Ben Boeckel 0.1-0.18.20090726svn - New snapshot * Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.17.20090602svn Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 27 Jul 2009 12:56:12 -0000 1.8 +++ sources 27 Jul 2009 14:03:20 -0000 1.9 @@ -1 +1 @@ -0ada82aa43921ead84ff85dce458dde2 kde-plasma-networkmanagement-0.1.tar.bz2 +4cfec4d31d38b62e2874334cedc97e58 kde-plasma-networkmanagement-0.1.tar.bz2 From kasal at fedoraproject.org Mon Jul 27 13:39:22 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Mon, 27 Jul 2009 13:39:22 +0000 (UTC) Subject: rpms/perl-BSD-Resource/devel perl-BSD-Resource.spec,1.32,1.33 Message-ID: <20090727133922.5FB1611C00E8@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl-BSD-Resource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9156 Modified Files: perl-BSD-Resource.spec Log Message: change version number Index: perl-BSD-Resource.spec =================================================================== RCS file: /cvs/extras/rpms/perl-BSD-Resource/devel/perl-BSD-Resource.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-BSD-Resource.spec 27 Jul 2009 10:53:05 -0000 1.32 +++ perl-BSD-Resource.spec 27 Jul 2009 13:39:22 -0000 1.33 @@ -1,5 +1,5 @@ Name: perl-BSD-Resource -Version: 1.2903 +Version: 1.29.03 Release: 1%{?dist} Summary: BSD process resource limit and priority functions @@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Mon Jul 27 2009 Marcela Ma?l??ov? - 1.2903-1 +* Mon Jul 27 2009 Marcela Ma?l??ov? - 1.29.03-1 - update, remove unneeded patch * Sat Jul 25 2009 Fedora Release Engineering - 1.28-9 From tbzatek at fedoraproject.org Mon Jul 27 13:39:58 2009 From: tbzatek at fedoraproject.org (Tomas Bzatek) Date: Mon, 27 Jul 2009 13:39:58 +0000 (UTC) Subject: rpms/libarchive/devel libarchive.spec,1.12,1.13 Message-ID: <20090727133958.88AF011C00E8@cvs1.fedora.phx.redhat.com> Author: tbzatek Update of /cvs/extras/rpms/libarchive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9436 Modified Files: libarchive.spec Log Message: * Mon Jul 27 2009 Tomas Bzatek 2.7.0-3 - Enable XZ compression format Index: libarchive.spec =================================================================== RCS file: /cvs/extras/rpms/libarchive/devel/libarchive.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libarchive.spec 25 Jul 2009 05:18:51 -0000 1.12 +++ libarchive.spec 27 Jul 2009 13:39:58 -0000 1.13 @@ -1,6 +1,6 @@ Name: libarchive Version: 2.7.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for handling streaming archive formats Group: System Environment/Libraries @@ -18,6 +18,7 @@ BuildRequires: sharutils BuildRequires: zlib-devel BuildRequires: bzip2-devel BuildRequires: lzma-devel +BuildRequires: xz-devel BuildRequires: e2fsprogs-devel BuildRequires: libacl-devel BuildRequires: libattr-devel @@ -89,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Tomas Bzatek 2.7.0-3 +- Enable XZ compression format + * Fri Jul 24 2009 Fedora Release Engineering - 2.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jussilehtola at fedoraproject.org Mon Jul 27 14:09:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Mon, 27 Jul 2009 14:09:17 +0000 (UTC) Subject: rpms/healpix/devel healpix.spec,1.5,1.6 Message-ID: <20090727140917.0B37F11C00E8@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/healpix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23108 Modified Files: healpix.spec Log Message: Fix stupid mistake. Index: healpix.spec =================================================================== RCS file: /cvs/pkgs/rpms/healpix/devel/healpix.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- healpix.spec 27 Jul 2009 13:54:36 -0000 1.5 +++ healpix.spec 27 Jul 2009 14:09:16 -0000 1.6 @@ -225,7 +225,7 @@ install -pm 0644 cxxinc/* $RPM_BUILD_ROO install -p f90bin/* $RPM_BUILD_ROOT%{_bindir} install -p f90lib/* $RPM_BUILD_ROOT%{_libdir} # Modules contain API/ABI and thus architecture dependent -mkdir $RPM_BUILD_ROOT%{_fmoddir}/healpix +mkdir -p $RPM_BUILD_ROOT%{_fmoddir}/healpix install -pm 0644 f90inc/* $RPM_BUILD_ROOT%{_fmoddir}/healpix From mmahut at fedoraproject.org Mon Jul 27 14:13:25 2009 From: mmahut at fedoraproject.org (Marek Mahut) Date: Mon, 27 Jul 2009 14:13:25 +0000 (UTC) Subject: rpms/gnuradio/F-11 gnuradio.spec,1.12,1.13 sources,1.4,1.5 Message-ID: <20090727141325.795B011C00E8@cvs1.fedora.phx.redhat.com> Author: mmahut Update of /cvs/pkgs/rpms/gnuradio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24891 Modified Files: gnuradio.spec sources Log Message: Upstream release 3.2 Index: gnuradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/F-11/gnuradio.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnuradio.spec 5 Mar 2009 06:28:18 -0000 1.12 +++ gnuradio.spec 27 Jul 2009 14:13:24 -0000 1.13 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gnuradio -Version: 3.1.3 -Release: 5%{?dist} +Version: 3.2 +Release: 1%{?dist} Summary: Software defined radio framework Group: Applications/Engineering @@ -11,10 +11,8 @@ URL: http://www.gnuradio.org Source0: ftp://ftp.gnu.org/gnu/gnuradio/gnuradio-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: 10-usrp.rules -Patch0: gnuradio-3.1.3-libtool.bug.patch -Patch1: gnuradio-3.1.3-werror.patch -Patch2: gnuradio-3.1.3-comedilib0.8.patch -Patch3: gnuradio-3.1.3-gcc44.patch +Patch0: gnuradio-3.2-libtool.patch +Patch1: gnuradio-3.2-gcc44.patch Requires(pre): shadow-utils BuildRequires: sdcc @@ -34,6 +32,12 @@ BuildRequires: guile-devel BuildRequires: portaudio-devel BuildRequires: libtool BuildRequires: comedilib-devel +BuildRequires: gsl-devel +BuildRequires: tex(latex) +BuildRequires: numpy +BuildRequires: PyQt4-devel +BuildRequires: PyQwt-devel +BuildRequires: qwtplot3d-qt4-devel Requires: numpy Requires: wxPython Requires: scipy @@ -90,9 +94,7 @@ GNU Radio USRP headers %prep %setup -q %patch0 -p1 -b .libtool -%patch1 -p1 -b .werror -%patch2 -p1 -b .comedilib -%patch3 -p1 -b .gcc44 +%patch1 -p1 -b .gcc44 %build export PATH=%{_libexecdir}/sdcc:$PATH @@ -124,28 +126,20 @@ getent group usrp >/dev/null || groupadd %files %defattr(-,root,root,-) %{python_sitelib}/gnuradio -%exclude %{python_sitelib}/gnuradio/_usrp1.so +%exclude %{python_sitelib}/gnuradio/_usrp2.so %exclude %{python_sitelib}/gnuradio/usrp* %{_sysconfdir}/gnuradio %{_bindir}/gr_* -%exclude %{_bindir}/gr_plot*.pyc -%exclude %{_bindir}/gr_plot*.pyo -%{_libdir}/libgnuradio-core.so.* -%{_libdir}/libgnuradio-core-qa.so.* -%{_libdir}/libgr_audio_alsa.so.* -%{_libdir}/libgromnithread.so.* -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gr-audio-alsa.conf -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gnuradio-core.conf -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gr-wxgui.conf +%{_bindir}/find_usrps +%{_bindir}/lsusrp +%{_libdir}/lib*.so.* +%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/*.conf %exclude %{python_sitelib}/gnuradio/*.la %files devel %defattr(-,root,root,-) -%{_includedir}/gnuradio -%{_libdir}/libgnuradio-core.so -%{_libdir}/libgnuradio-core-qa.so -%{_libdir}/libgr_audio_alsa.so -%{_libdir}/libgromnithread.so +%{_includedir}/* +%{_libdir}/lib*.so %{_libdir}/pkgconfig/*.pc %exclude %{_libdir}/*.la @@ -158,26 +152,6 @@ getent group usrp >/dev/null || groupadd %files examples %defattr(-,root,root,-) %{_datadir}/%{name} -%exclude %{_datadir}/%{name}/examples/atsc/*.pyc -%exclude %{_datadir}/%{name}/examples/atsc/*.pyo -%exclude %{_datadir}/%{name}/examples/audio/*.pyc -%exclude %{_datadir}/%{name}/examples/audio/*.pyo -%exclude %{_datadir}/%{name}/examples/digital/*.pyc -%exclude %{_datadir}/%{name}/examples/digital/*.pyo -%exclude %{_datadir}/%{name}/examples/hf_explorer/*.pyc -%exclude %{_datadir}/%{name}/examples/hf_explorer/*.pyo -%exclude %{_datadir}/%{name}/examples/hf_radio/*.pyc -%exclude %{_datadir}/%{name}/examples/hf_radio/*.pyo -%exclude %{_datadir}/%{name}/examples/multi-antenna/*.pyc -%exclude %{_datadir}/%{name}/examples/multi-antenna/*.pyo -%exclude %{_datadir}/%{name}/examples/multi_usrp/*.pyc -%exclude %{_datadir}/%{name}/examples/multi_usrp/*.pyo -%exclude %{_datadir}/%{name}/examples/network/*.pyc -%exclude %{_datadir}/%{name}/examples/network/*.pyo -%exclude %{_datadir}/%{name}/examples/trellis/*.pyc -%exclude %{_datadir}/%{name}/examples/trellis/*.pyo -%exclude %{_datadir}/%{name}/examples/usrp/*.pyc -%exclude %{_datadir}/%{name}/examples/usrp/*.pyo %files -n usrp %defattr(-,root,root,-) @@ -186,11 +160,9 @@ getent group usrp >/dev/null || groupadd %{_datadir}/usrp %{_libdir}/libusrp.so.* %{python_sitelib}/usrpm -%{python_sitelib}/gnuradio/_usrp1.so +%{python_sitelib}/gnuradio/_usrp2.so %{python_sitelib}/gnuradio/usrp* -%config %{_sysconfdir}/udev/rules.d/10-usrp.rules -%exclude %{_bindir}/*.pyc -%exclude %{_bindir}/*.pyo +%config(noreplace) %{_sysconfdir}/udev/rules.d/10-usrp.rules %exclude %{_libdir}/*.la %exclude %{python_sitelib}/usrpm/*.la @@ -200,6 +172,9 @@ getent group usrp >/dev/null || groupadd %{_includedir}/usrp_* %changelog +* Sat Jul 25 2009 Marek Mahut - 3.2-1 +- Upstream release 3.2 + * Thu Mar 4 2009 Lubomir Rintel - 3.1.3-5 - Fix build with GCC 4.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 19 Dec 2008 23:15:36 -0000 1.4 +++ sources 27 Jul 2009 14:13:24 -0000 1.5 @@ -1 +1 @@ -c1eb3de26b67ddc08a61a7c2fc636203 gnuradio-3.1.3.tar.gz +9d91d0f8f2cb35bc86435784fa8e72d8 gnuradio-3.2.tar.gz From mathstuf at fedoraproject.org Mon Jul 27 14:15:31 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 27 Jul 2009 14:15:31 +0000 (UTC) Subject: rpms/kde-plasma-networkmanagement/devel kde-plasma-networkmanagement.spec, 1.14, 1.15 Message-ID: <20090727141531.AED6C11C00E8@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25973 Modified Files: kde-plasma-networkmanagement.spec Log Message: Missing BR Index: kde-plasma-networkmanagement.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/kde-plasma-networkmanagement.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- kde-plasma-networkmanagement.spec 27 Jul 2009 14:03:20 -0000 1.14 +++ kde-plasma-networkmanagement.spec 27 Jul 2009 14:15:30 -0000 1.15 @@ -1,6 +1,6 @@ Name: kde-plasma-networkmanagement Version: 0.1 -Release: 0.18.20090726svn%{?dist} +Release: 0.19.20090726svn%{?dist} Summary: NetworkManager KDE 4 integration Group: User Interface/Desktops @@ -14,6 +14,7 @@ Source0: %{name}-%{version}.tar.b Patch0: %{name}-%{version}-version-check.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: kdelibs-experimental-devel BuildRequires: kdebase-workspace-devel >= 4.2.98 BuildRequires: NetworkManager-glib-devel >= 0.7.0 BuildRequires: PolicyKit-devel @@ -161,6 +162,9 @@ xdg-icon-resource forceupdate --theme ox %changelog +* Mon Jul 27 2009 Ben Boeckel 0.1-0.19.20090726svn +- Add BR on kdelibs-experimental-devel + * Mon Jul 27 2009 Ben Boeckel 0.1-0.18.20090726svn - New snapshot From mmahut at fedoraproject.org Mon Jul 27 14:19:18 2009 From: mmahut at fedoraproject.org (Marek Mahut) Date: Mon, 27 Jul 2009 14:19:18 +0000 (UTC) Subject: rpms/gnuradio/F-11 gnuradio-3.2-gcc44.patch, NONE, 1.1 gnuradio-3.2-libtool.patch, NONE, 1.1 Message-ID: <20090727141918.8CB1F11C00E8@cvs1.fedora.phx.redhat.com> Author: mmahut Update of /cvs/pkgs/rpms/gnuradio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27661 Added Files: gnuradio-3.2-gcc44.patch gnuradio-3.2-libtool.patch Log Message: Upstream release 3.2 gnuradio-3.2-gcc44.patch: gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc | 1 + gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc | 1 + gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc | 1 + gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc | 1 + gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc | 1 + gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc | 1 + gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc | 2 +- gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc | 1 + gnuradio-core/src/lib/general/gr_dpll_bb.cc | 1 + gnuradio-core/src/lib/general/gr_fft_vfc.cc | 1 + gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc | 1 + gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc | 1 + gnuradio-core/src/lib/general/gr_ofdm_sampler.cc | 1 + gnuradio-core/src/lib/general/gr_simple_correlator.cc | 1 + gnuradio-core/src/lib/general/gr_stream_mux.cc | 1 + gnuradio-core/src/lib/io/gr_wavfile_sink.cc | 1 + gr-audio-alsa/src/gri_alsa.cc | 1 + gr-audio-osx/src/audio_osx_sink.cc | 1 + gr-audio-osx/src/audio_osx_source.cc | 1 + gr-audio-portaudio/src/gri_portaudio.cc | 1 + gr-pager/src/pager_flex_sync.cc | 1 + gr-qtgui/src/lib/Waterfall3DDisplayPlot.h | 2 ++ gr-qtgui/src/lib/spectrumUpdateEvents.h | 1 + gr-usrp/apps/usrp_siggen.cc | 1 + gr-usrp/src/usrp_sink_base.cc | 1 + gr-usrp/src/usrp_source_base.cc | 1 + mblock/src/lib/mb_worker.cc | 1 + mblock/src/lib/qa_bitset.cc | 1 + mblock/src/lib/qa_disconnect.cc | 1 + usrp/host/lib/legacy/db_boards.cc | 1 + usrp/host/lib/legacy/db_dbs_rx.cc | 1 + usrp/host/lib/legacy/db_xcvr2450.cc | 1 + usrp/host/lib/legacy/fusb_darwin.cc | 1 + usrp/host/lib/legacy/fusb_linux.cc | 2 +- usrp/host/lib/legacy/fusb_win32.cc | 1 + usrp/host/lib/legacy/usrp_basic.cc | 1 + usrp/host/lib/legacy/usrp_standard.cc | 1 + usrp2/host/apps/find_usrps.cc | 1 + usrp2/host/apps/gpio.cc | 1 + usrp2/host/apps/rx_streaming_samples.cc | 1 + usrp2/host/apps/test_mimo_tx.cc | 1 + usrp2/host/apps/tx_samples.cc | 1 + usrp2/host/lib/eth_buffer.cc | 1 + usrp2/host/lib/ethernet.cc | 1 + usrp2/host/lib/ethernet.h | 1 + usrp2/host/lib/find.cc | 1 + usrp2/host/lib/usrp2.cc | 1 + 47 files changed, 48 insertions(+), 2 deletions(-) --- NEW FILE gnuradio-3.2-gcc44.patch --- Marek Mahut : Patch to fix build under gcc 4.4 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc 2009-07-25 09:14:00.862437254 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc 2009-07-25 09:17:18.282187738 +0200 @@ -39,6 +39,7 @@ #include #include +#include gr_fft_filter_ccc_sptr gr_make_fft_filter_ccc (int decimation, const std::vector &taps) { diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc 2009-07-25 09:14:00.864437599 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc 2009-07-25 09:17:25.071217820 +0200 @@ -34,6 +34,7 @@ #include #include +#include gr_fft_filter_fff_sptr gr_make_fft_filter_fff (int decimation, const std::vector &taps) { diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc 2009-07-25 09:14:01.033433009 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc 2009-07-25 09:17:36.663188600 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #include //define ALIGN_ADVANCED_IMPLEMENTATION to have an alternative implementation of the align algoritm which exactly follows the align_interval spec. diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc 2009-07-25 09:14:01.051436257 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc 2009-07-25 09:17:42.243478128 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include // Public constructor diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc 2009-07-25 09:14:01.025437774 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc 2009-07-25 09:17:47.250185275 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include using std::cout; diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc 2009-07-25 09:14:01.060434982 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc 2009-07-25 09:17:54.333184463 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #define VERBOSE 0 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc 2009-07-25 09:14:01.047433541 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc 2009-07-25 09:18:01.345183736 +0200 @@ -30,7 +30,7 @@ #include #include #include - +#include #include #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc 2009-07-25 09:14:01.076437534 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc 2009-07-25 09:18:07.285215839 +0200 @@ -24,6 +24,7 @@ #include #include +#include gr_decode_ccsds_27_fb_sptr gr_make_decode_ccsds_27_fb() diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dpll_bb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_dpll_bb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dpll_bb.cc 2009-07-25 09:14:01.055437436 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_dpll_bb.cc 2009-07-25 09:18:20.651188536 +0200 @@ -26,6 +26,7 @@ #include #include +#include gr_dpll_bb_sptr gr_make_dpll_bb (float period, float gain) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_fft_vfc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_fft_vfc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_fft_vfc.cc 2009-07-25 09:14:01.032433570 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_fft_vfc.cc 2009-07-25 09:18:27.588184185 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include // FIXME after this is working, change to use native real to complex fft. diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc 2009-07-25 09:14:01.080445069 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc 2009-07-25 09:18:45.986188440 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc 2009-07-25 09:14:01.067433082 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc 2009-07-25 09:36:03.133188443 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #define VERBOSE 0 #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc 2009-07-25 09:14:01.055437436 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc 2009-07-25 09:43:44.309459146 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include gr_ofdm_sampler_sptr gr_make_ofdm_sampler (unsigned int fft_length, diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_simple_correlator.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_simple_correlator.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_simple_correlator.cc 2009-07-25 09:14:01.078437530 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_simple_correlator.cc 2009-07-25 09:18:50.951455747 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include static const int THRESHOLD = 3; diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_stream_mux.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_stream_mux.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_stream_mux.cc 2009-07-25 09:14:01.083447508 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_stream_mux.cc 2009-07-25 09:18:55.617260043 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #define VERBOSE 0 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/io/gr_wavfile_sink.cc gnuradio-3.2/gnuradio-core/src/lib/io/gr_wavfile_sink.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/io/gr_wavfile_sink.cc 2009-07-25 09:14:00.995437624 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/io/gr_wavfile_sink.cc 2009-07-25 09:19:02.378184445 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/gr-audio-alsa/src/gri_alsa.cc gnuradio-3.2/gr-audio-alsa/src/gri_alsa.cc --- gnuradio-3.2-upstream/gr-audio-alsa/src/gri_alsa.cc 2009-07-25 09:14:00.474445345 +0200 +++ gnuradio-3.2/gr-audio-alsa/src/gri_alsa.cc 2009-07-25 09:19:13.904207014 +0200 @@ -26,6 +26,7 @@ #include #include +#include static snd_pcm_access_t access_types[] = { SND_PCM_ACCESS_MMAP_INTERLEAVED, diff -Naur gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_sink.cc gnuradio-3.2/gr-audio-osx/src/audio_osx_sink.cc --- gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_sink.cc 2009-07-25 09:14:00.341445675 +0200 +++ gnuradio-3.2/gr-audio-osx/src/audio_osx_sink.cc 2009-07-25 09:19:21.598183148 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #define _OSX_AU_DEBUG_ 0 diff -Naur gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_source.cc gnuradio-3.2/gr-audio-osx/src/audio_osx_source.cc --- gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_source.cc 2009-07-25 09:14:00.343450491 +0200 +++ gnuradio-3.2/gr-audio-osx/src/audio_osx_source.cc 2009-07-25 09:19:27.590184106 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #define _OSX_AU_DEBUG_ 0 #define _OSX_DO_LISTENERS_ 0 diff -Naur gnuradio-3.2-upstream/gr-audio-portaudio/src/gri_portaudio.cc gnuradio-3.2/gr-audio-portaudio/src/gri_portaudio.cc --- gnuradio-3.2-upstream/gr-audio-portaudio/src/gri_portaudio.cc 2009-07-25 09:14:00.477445200 +0200 +++ gnuradio-3.2/gr-audio-portaudio/src/gri_portaudio.cc 2009-07-25 09:19:33.475184246 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include PaDeviceIndex diff -Naur gnuradio-3.2-upstream/gr-pager/src/pager_flex_sync.cc gnuradio-3.2/gr-pager/src/pager_flex_sync.cc --- gnuradio-3.2-upstream/gr-pager/src/pager_flex_sync.cc 2009-07-25 09:14:01.100445030 +0200 +++ gnuradio-3.2/gr-pager/src/pager_flex_sync.cc 2009-07-25 09:19:38.231198885 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include pager_flex_sync_sptr pager_make_flex_sync() { diff -Naur gnuradio-3.2-upstream/gr-qtgui/src/lib/spectrumUpdateEvents.h gnuradio-3.2/gr-qtgui/src/lib/spectrumUpdateEvents.h --- gnuradio-3.2-upstream/gr-qtgui/src/lib/spectrumUpdateEvents.h 2009-07-25 09:14:00.716437539 +0200 +++ gnuradio-3.2/gr-qtgui/src/lib/spectrumUpdateEvents.h 2009-07-26 11:08:31.834443932 +0200 @@ -5,6 +5,7 @@ #include #include #include +#include class SpectrumUpdateEvent:public QEvent{ diff -Naur gnuradio-3.2-upstream/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h gnuradio-3.2/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h --- gnuradio-3.2-upstream/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h 2009-07-25 09:14:00.717434185 +0200 +++ gnuradio-3.2/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h 2009-07-26 15:39:18.539220269 +0200 @@ -9,6 +9,8 @@ #include #include +#include + class Waterfall3DColorMap:public Qwt3D::Color, public QwtLinearColorMap{ public: Waterfall3DColorMap(); diff -Naur gnuradio-3.2-upstream/gr-usrp/apps/usrp_siggen.cc gnuradio-3.2/gr-usrp/apps/usrp_siggen.cc --- gnuradio-3.2-upstream/gr-usrp/apps/usrp_siggen.cc 2009-07-25 09:14:00.503447733 +0200 +++ gnuradio-3.2/gr-usrp/apps/usrp_siggen.cc 2009-07-25 17:21:57.442443913 +0200 @@ -26,6 +26,7 @@ #include #include #include +#include namespace po = boost::program_options; diff -Naur gnuradio-3.2-upstream/gr-usrp/src/usrp_sink_base.cc gnuradio-3.2/gr-usrp/src/usrp_sink_base.cc --- gnuradio-3.2-upstream/gr-usrp/src/usrp_sink_base.cc 2009-07-25 09:14:00.501447597 +0200 +++ gnuradio-3.2/gr-usrp/src/usrp_sink_base.cc 2009-07-25 17:19:08.780188246 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include static const int OUTPUT_MULTIPLE_SAMPLES = 128; // DON'T CHANGE THIS VALUE! diff -Naur gnuradio-3.2-upstream/gr-usrp/src/usrp_source_base.cc gnuradio-3.2/gr-usrp/src/usrp_source_base.cc --- gnuradio-3.2-upstream/gr-usrp/src/usrp_source_base.cc 2009-07-25 09:14:00.502445220 +0200 +++ gnuradio-3.2/gr-usrp/src/usrp_source_base.cc 2009-07-25 17:19:51.214219555 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include static const int OUTPUT_MULTIPLE_BYTES = 4 * 1024; diff -Naur gnuradio-3.2-upstream/mblock/src/lib/mb_worker.cc gnuradio-3.2/mblock/src/lib/mb_worker.cc --- gnuradio-3.2-upstream/mblock/src/lib/mb_worker.cc 2009-07-25 09:14:00.496445162 +0200 +++ gnuradio-3.2/mblock/src/lib/mb_worker.cc 2009-07-25 11:17:09.894192322 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include #ifdef HAVE_SCHED_H #include #endif diff -Naur gnuradio-3.2-upstream/mblock/src/lib/qa_bitset.cc gnuradio-3.2/mblock/src/lib/qa_bitset.cc --- gnuradio-3.2-upstream/mblock/src/lib/qa_bitset.cc 2009-07-25 09:14:00.494447611 +0200 +++ gnuradio-3.2/mblock/src/lib/qa_bitset.cc 2009-07-25 11:17:15.999184361 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/mblock/src/lib/qa_disconnect.cc gnuradio-3.2/mblock/src/lib/qa_disconnect.cc --- gnuradio-3.2-upstream/mblock/src/lib/qa_disconnect.cc 2009-07-25 09:14:00.494447611 +0200 +++ gnuradio-3.2/mblock/src/lib/qa_disconnect.cc 2009-07-25 13:41:30.945188181 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static pmt_t s_in = pmt_intern("in"); static pmt_t s_out = pmt_intern("out"); diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_boards.cc gnuradio-3.2/usrp/host/lib/legacy/db_boards.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_boards.cc 2009-07-25 09:14:00.618447788 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_boards.cc 2009-07-25 16:59:10.714438636 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include std::vector instantiate_dbs(int dbid, usrp_basic_sptr usrp, int which_side) diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_dbs_rx.cc gnuradio-3.2/usrp/host/lib/legacy/db_dbs_rx.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_dbs_rx.cc 2009-07-25 09:14:00.618447788 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_dbs_rx.cc 2009-07-25 17:00:38.567217525 +0200 @@ -21,6 +21,7 @@ #include #include #include +#include /*****************************************************************************/ diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_xcvr2450.cc gnuradio-3.2/usrp/host/lib/legacy/db_xcvr2450.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_xcvr2450.cc 2009-07-25 09:14:00.617445275 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_xcvr2450.cc 2009-07-25 17:01:20.805468727 +0200 @@ -21,6 +21,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_darwin.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_darwin.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_darwin.cc 2009-07-25 09:14:00.612447799 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_darwin.cc 2009-07-25 09:19:46.638210966 +0200 @@ -33,6 +33,7 @@ #include "fusb.h" #include "fusb_darwin.h" #include "darwin_libusb.h" +#include static const int USB_TIMEOUT = 100; // in milliseconds static const UInt8 NUM_QUEUE_ITEMS = 20; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_linux.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_linux.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_linux.cc 2009-07-25 09:14:00.616447792 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_linux.cc 2009-07-25 09:19:54.041184719 +0200 @@ -33,10 +33,10 @@ #include // interface to kernel portion of user mode usb driver #include #include -#include #include #include #include +#include #define MINIMIZE_TX_BUFFERING 1 // must be defined to 0 or 1 diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_win32.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_win32.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_win32.cc 2009-07-25 09:14:00.617445275 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_win32.cc 2009-07-25 09:19:58.736184198 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static const int MAX_BLOCK_SIZE = fusb_sysconfig::max_block_size(); static const int DEFAULT_BLOCK_SIZE = MAX_BLOCK_SIZE; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_basic.cc gnuradio-3.2/usrp/host/lib/legacy/usrp_basic.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_basic.cc 2009-07-25 09:14:00.611447732 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/usrp_basic.cc 2009-07-25 09:20:04.941434694 +0200 @@ -37,6 +37,7 @@ #include #include #include +#include using namespace ad9862; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_standard.cc gnuradio-3.2/usrp/host/lib/legacy/usrp_standard.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_standard.cc 2009-07-25 09:14:00.619447576 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/usrp_standard.cc 2009-07-25 09:20:09.756187465 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static const int OLD_CAPS_VAL = 0xaa55ff77; diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/find_usrps.cc gnuradio-3.2/usrp2/host/apps/find_usrps.cc --- gnuradio-3.2-upstream/usrp2/host/apps/find_usrps.cc 2009-07-25 09:14:00.301437861 +0200 +++ gnuradio-3.2/usrp2/host/apps/find_usrps.cc 2009-07-25 17:14:41.128188741 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include static void usage(const char *progname) diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/gpio.cc gnuradio-3.2/usrp2/host/apps/gpio.cc --- gnuradio-3.2-upstream/usrp2/host/apps/gpio.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/gpio.cc 2009-07-25 17:18:14.131203844 +0200 @@ -22,6 +22,7 @@ #include #include +#include int main(int argc, char **argv) diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/rx_streaming_samples.cc gnuradio-3.2/usrp2/host/apps/rx_streaming_samples.cc --- gnuradio-3.2-upstream/usrp2/host/apps/rx_streaming_samples.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/rx_streaming_samples.cc 2009-07-25 17:15:30.560205148 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/test_mimo_tx.cc gnuradio-3.2/usrp2/host/apps/test_mimo_tx.cc --- gnuradio-3.2-upstream/usrp2/host/apps/test_mimo_tx.cc 2009-07-25 09:14:00.301437861 +0200 +++ gnuradio-3.2/usrp2/host/apps/test_mimo_tx.cc 2009-07-25 17:17:26.239258963 +0200 @@ -40,6 +40,7 @@ #include #include #include +#include typedef std::complex fcomplex; diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/tx_samples.cc gnuradio-3.2/usrp2/host/apps/tx_samples.cc --- gnuradio-3.2-upstream/usrp2/host/apps/tx_samples.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/tx_samples.cc 2009-07-25 17:16:51.973188827 +0200 @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/eth_buffer.cc gnuradio-3.2/usrp2/host/lib/eth_buffer.cc --- gnuradio-3.2-upstream/usrp2/host/lib/eth_buffer.cc 2009-07-25 09:14:00.295439060 +0200 +++ gnuradio-3.2/usrp2/host/lib/eth_buffer.cc 2009-07-25 17:08:50.711203188 +0200 @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/ethernet.cc gnuradio-3.2/usrp2/host/lib/ethernet.cc --- gnuradio-3.2-upstream/usrp2/host/lib/ethernet.cc 2009-07-25 09:14:00.296436544 +0200 +++ gnuradio-3.2/usrp2/host/lib/ethernet.cc 2009-07-25 17:09:54.200210018 +0200 @@ -25,6 +25,7 @@ #include #include +#include #include #include //#include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/ethernet.h gnuradio-3.2/usrp2/host/lib/ethernet.h --- gnuradio-3.2-upstream/usrp2/host/lib/ethernet.h 2009-07-25 09:14:00.295439060 +0200 +++ gnuradio-3.2/usrp2/host/lib/ethernet.h 2009-07-25 17:12:39.574184059 +0200 @@ -20,6 +20,7 @@ #define INCLUDED_USRP2_ETHERNET_H #include +#include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/find.cc gnuradio-3.2/usrp2/host/lib/find.cc --- gnuradio-3.2-upstream/usrp2/host/lib/find.cc 2009-07-25 09:14:00.299443453 +0200 +++ gnuradio-3.2/usrp2/host/lib/find.cc 2009-07-25 17:13:19.549453343 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include #define FIND_DEBUG 0 diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/usrp2.cc gnuradio-3.2/usrp2/host/lib/usrp2.cc --- gnuradio-3.2-upstream/usrp2/host/lib/usrp2.cc 2009-07-25 09:14:00.298438985 +0200 +++ gnuradio-3.2/usrp2/host/lib/usrp2.cc 2009-07-25 17:13:54.453437924 +0200 @@ -26,6 +26,7 @@ #include #include #include +#include #include namespace usrp2 { gnuradio-3.2-libtool.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE gnuradio-3.2-libtool.patch --- Marek Mahut : This patch fixes the build when libtool fails to detect that lib diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/tests/Makefile.am gnuradio-3.2/gnuradio-core/src/tests/Makefile.am --- gnuradio-3.2-upstream/gnuradio-core/src/tests/Makefile.am 2009-07-25 09:14:01.090447704 +0200 +++ gnuradio-3.2/gnuradio-core/src/tests/Makefile.am 2009-07-25 09:25:12.681195057 +0200 @@ -59,7 +59,7 @@ benchmark_dotprod -LIBGNURADIO = $(GNURADIO_CORE_LA) +LIBGNURADIO = $(GNURADIO_CORE_LA) $(top_builddir)/omnithread/libgromnithread.la LIBGNURADIOQA = $(top_builddir)/gnuradio-core/src/lib/libgnuradio-core-qa.la $(LIBGNURADIO) benchmark_dotprod_fff_SOURCES = benchmark_dotprod_fff.cc From peter at fedoraproject.org Mon Jul 27 14:20:47 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Mon, 27 Jul 2009 14:20:47 +0000 (UTC) Subject: rpms/autotrace/devel autotrace-aclocal18.patch, NONE, 1.1 import.log, NONE, 1.1 autotrace.spec, 1.24, 1.25 Message-ID: <20090727142047.24F0911C043A@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/autotrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28385/devel Modified Files: autotrace.spec Added Files: autotrace-aclocal18.patch import.log Log Message: fixed rhbz# 477980 autotrace-aclocal18.patch: autotrace.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE autotrace-aclocal18.patch --- --- autotrace.m4~ 2002-10-10 23:44:12.000000000 +0300 +++ autotrace.m4 2005-05-22 22:17:06.000000000 +0300 @@ -4,7 +4,7 @@ dnl AM_PATH_AUTOTRACE([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl Test to see if libautotrace is installed, and define AUTOTRACE_CFLAGS, LIBS dnl -AC_DEFUN(AM_PATH_AUTOTRACE, +AC_DEFUN([AM_PATH_AUTOTRACE], [dnl dnl Get the cflags and libraries from the autotrace-config script dnl --- NEW FILE import.log --- autotrace-0_31_1-23_fc11:HEAD:autotrace-0.31.1-23.fc11.src.rpm:1248704373 Index: autotrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/autotrace/devel/autotrace.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- autotrace.spec 24 Jul 2009 17:39:50 -0000 1.24 +++ autotrace.spec 27 Jul 2009 14:20:46 -0000 1.25 @@ -1,6 +1,6 @@ Name: autotrace Version: 0.31.1 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Utility for converting bitmaps to vector graphics @@ -21,6 +21,7 @@ BuildRequires: freetype-devel BuildConflicts: pstoedit-devel Patch0: autotrace-0.31.1-GetOnePixel.patch +Patch1: autotrace-aclocal18.patch %description AutoTrace is a program similar to CorelTrace or Adobe Streamline for @@ -46,6 +47,7 @@ This package contains header files and s %prep %setup -q %patch0 -p1 -b .GetOnePixel +%patch1 -p0 -b .aclocal18 %build %configure @@ -54,9 +56,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall +make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' +find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';' %clean @@ -80,7 +83,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc HACKING %{_bindir}/autotrace-config -%{_libdir}/*.a %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %{_includedir}/autotrace/ @@ -88,6 +90,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Peter Lemenkov - 0.31.1-23 +- Removed static libraries from -devel +- Changed %%makeinstall to "make install DESTDIR=blablabla" +- Fixed rhbz# 477980 + * Fri Jul 24 2009 Fedora Release Engineering - 0.31.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Mon Jul 27 14:24:45 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 27 Jul 2009 14:24:45 +0000 (UTC) Subject: rpms/perl-gettext/devel compatibility-with-POSIX-module.diff, NONE, 1.1 perl-gettext.spec, 1.13, 1.14 Message-ID: <20090727142445.BE5A511C00E8@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30241 Modified Files: perl-gettext.spec Added Files: compatibility-with-POSIX-module.diff Log Message: * Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 - Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). compatibility-with-POSIX-module.diff: gettext.pm | 1 + 1 file changed, 1 insertion(+) --- NEW FILE compatibility-with-POSIX-module.diff --- Locale::Gettext exports by default the various LC_* constants as does the POSIX perl module. Up to perl-5.10, their definition was strictly the same and didn't cause any harm. Now the POSIX module evolved slightly and the symbol redefinition are conflictual and generate warnings. Resolve this by making sure that Locale::Gettext reexports the constants coming from the POSIX module. Fixes Debian bug #479803. -- Raphael Hertzog Index: liblocale-gettext-perl-1.05/gettext.pm =================================================================== --- liblocale-gettext-perl-1.05.orig/gettext.pm 2008-05-07 09:40:23.000000000 +0200 +++ liblocale-gettext-perl-1.05/gettext.pm 2008-05-07 09:41:04.000000000 +0200 @@ -32,6 +32,7 @@ =cut use Carp; +use POSIX qw(:locale_h); require Exporter; require DynaLoader; Index: perl-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-gettext/devel/perl-gettext.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-gettext.spec 26 Jul 2009 17:46:27 -0000 1.13 +++ perl-gettext.spec 27 Jul 2009 14:24:45 -0000 1.14 @@ -1,12 +1,13 @@ Name: perl-gettext Version: 1.05 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Interface to gettext family of functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/gettext/ Source0: http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-%{version}.tar.gz +Patch0: http://patch-tracking.debian.net/patch/series/view/liblocale-gettext-perl/1.05-4/compatibility-with-POSIX-module.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) @@ -22,7 +23,7 @@ internationalize software. %prep %setup -q -n gettext-%{version} - +%patch0 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" @@ -59,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 +- Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). + * Sun Jul 26 2009 Fedora Release Engineering - 1.05-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jwrdegoede at fedoraproject.org Mon Jul 27 14:26:41 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Mon, 27 Jul 2009 14:26:41 +0000 (UTC) Subject: rpms/grub/devel grub.spec,1.102,1.103 Message-ID: <20090727142641.3BB9011C00E8@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/grub/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31313 Modified Files: grub.spec Log Message: * Mon Jul 27 2009 Hans de Goede - 0.97-56 - Actually apply support for partitionable md devices patch (#503698) Index: grub.spec =================================================================== RCS file: /cvs/extras/rpms/grub/devel/grub.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- grub.spec 25 Jul 2009 01:31:36 -0000 1.102 +++ grub.spec 27 Jul 2009 14:26:40 -0000 1.103 @@ -1,6 +1,6 @@ Name: grub Version: 0.97 -Release: 55%{?dist} +Release: 56%{?dist} Summary: Grand Unified Boot Loader. Group: System Environment/Base License: GPLv2+ @@ -45,6 +45,7 @@ Patch16: grub-install_virtio_blk_support Patch17: grub-fix-memory-corruption.patch Patch18: grub-ext4-support.patch Patch19: grub-0.97-xfs-writable-strings.patch +Patch20: grub-0.97-partitionable-md.patch %description GRUB (Grand Unified Boot Loader) is an experimental boot loader @@ -74,6 +75,7 @@ systems. %patch17 -p1 %patch18 -p1 %patch19 -p1 +%patch20 -p1 %build autoreconf @@ -136,6 +138,9 @@ fi %{_datadir}/grub %changelog +* Mon Jul 27 2009 Hans de Goede - 0.97-56 +- Actually apply support for partitionable md devices patch (#503698) + * Fri Jul 24 2009 Fedora Release Engineering - 0.97-55 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From peter at fedoraproject.org Mon Jul 27 14:28:06 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Mon, 27 Jul 2009 14:28:06 +0000 (UTC) Subject: rpms/autotrace/F-11 autotrace-aclocal18.patch, NONE, 1.1 import.log, NONE, 1.1 autotrace.spec, 1.23, 1.24 Message-ID: <20090727142806.CF80211C00E8@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/autotrace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32071/F-11 Modified Files: autotrace.spec Added Files: autotrace-aclocal18.patch import.log Log Message: fixed rhbz# 477980 autotrace-aclocal18.patch: autotrace.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE autotrace-aclocal18.patch --- --- autotrace.m4~ 2002-10-10 23:44:12.000000000 +0300 +++ autotrace.m4 2005-05-22 22:17:06.000000000 +0300 @@ -4,7 +4,7 @@ dnl AM_PATH_AUTOTRACE([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl Test to see if libautotrace is installed, and define AUTOTRACE_CFLAGS, LIBS dnl -AC_DEFUN(AM_PATH_AUTOTRACE, +AC_DEFUN([AM_PATH_AUTOTRACE], [dnl dnl Get the cflags and libraries from the autotrace-config script dnl --- NEW FILE import.log --- autotrace-0_31_1-23_fc11:F-11:autotrace-0.31.1-23.fc11.src.rpm:1248704713 Index: autotrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/autotrace/F-11/autotrace.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- autotrace.spec 13 Mar 2009 10:56:14 -0000 1.23 +++ autotrace.spec 27 Jul 2009 14:28:06 -0000 1.24 @@ -1,6 +1,6 @@ Name: autotrace Version: 0.31.1 -Release: 21%{?dist} +Release: 23%{?dist} Summary: Utility for converting bitmaps to vector graphics @@ -21,6 +21,7 @@ BuildRequires: freetype-devel BuildConflicts: pstoedit-devel Patch0: autotrace-0.31.1-GetOnePixel.patch +Patch1: autotrace-aclocal18.patch %description AutoTrace is a program similar to CorelTrace or Adobe Streamline for @@ -46,6 +47,7 @@ This package contains header files and s %prep %setup -q %patch0 -p1 -b .GetOnePixel +%patch1 -p0 -b .aclocal18 %build %configure @@ -54,9 +56,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall +make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' +find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';' %clean @@ -80,7 +83,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc HACKING %{_bindir}/autotrace-config -%{_libdir}/*.a %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %{_includedir}/autotrace/ @@ -88,6 +90,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Peter Lemenkov - 0.31.1-23 +- Removed static libraries from -devel +- Changed %%makeinstall to "make install DESTDIR=blablabla" +- Fixed rhbz# 477980 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.31.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Hans de Goede - 0.31.1-21 - Rebuild for new ImageMagick From peter at fedoraproject.org Mon Jul 27 14:31:16 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Mon, 27 Jul 2009 14:31:16 +0000 (UTC) Subject: rpms/autotrace/F-10 autotrace-0.31.1-GetOnePixel.patch, NONE, 1.1 autotrace-aclocal18.patch, NONE, 1.1 import.log, NONE, 1.1 autotrace.spec, 1.20, 1.21 Message-ID: <20090727143116.86FEB11C00E8@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/autotrace/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1221/F-10 Modified Files: autotrace.spec Added Files: autotrace-0.31.1-GetOnePixel.patch autotrace-aclocal18.patch import.log Log Message: fixed rhbz# 477980 autotrace-0.31.1-GetOnePixel.patch: input-magick.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE autotrace-0.31.1-GetOnePixel.patch --- diff -ru autotrace-0.31.1.orig/input-magick.c autotrace-0.31.1/input-magick.c --- autotrace-0.31.1.orig/input-magick.c 2009-03-02 12:08:45.000000000 +0000 +++ autotrace-0.31.1/input-magick.c 2009-03-02 12:12:21.000000000 +0000 @@ -83,7 +83,11 @@ for(j=0,runcount=0,point=0;jrows;j++) for(i=0;icolumns;i++) { +#if (MagickLibVersion < 0x0645) || (MagickLibVersion >= 0x0649) p=GetOnePixel(image,i,j); +#else + GetOnePixel(image,i,j,pixel); +#endif AT_BITMAP_BITS(bitmap)[point++]=pixel->red; /* if gray: red=green=blue */ if(np==3) { AT_BITMAP_BITS(bitmap)[point++]=pixel->green; autotrace-aclocal18.patch: autotrace.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE autotrace-aclocal18.patch --- --- autotrace.m4~ 2002-10-10 23:44:12.000000000 +0300 +++ autotrace.m4 2005-05-22 22:17:06.000000000 +0300 @@ -4,7 +4,7 @@ dnl AM_PATH_AUTOTRACE([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl Test to see if libautotrace is installed, and define AUTOTRACE_CFLAGS, LIBS dnl -AC_DEFUN(AM_PATH_AUTOTRACE, +AC_DEFUN([AM_PATH_AUTOTRACE], [dnl dnl Get the cflags and libraries from the autotrace-config script dnl --- NEW FILE import.log --- autotrace-0_31_1-23_fc11:F-10:autotrace-0.31.1-23.fc11.src.rpm:1248705023 Index: autotrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/autotrace/F-10/autotrace.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- autotrace.spec 14 Jul 2008 19:20:55 -0000 1.20 +++ autotrace.spec 27 Jul 2009 14:31:16 -0000 1.21 @@ -1,6 +1,6 @@ Name: autotrace Version: 0.31.1 -Release: 18%{?dist} +Release: 23%{?dist} Summary: Utility for converting bitmaps to vector graphics @@ -20,6 +20,9 @@ BuildRequires: freetype-devel #BuildRequires: pstoedit-devel BuildConflicts: pstoedit-devel +Patch0: autotrace-0.31.1-GetOnePixel.patch +Patch1: autotrace-aclocal18.patch + %description AutoTrace is a program similar to CorelTrace or Adobe Streamline for converting bitmaps to vector graphics. @@ -43,7 +46,8 @@ This package contains header files and s %prep %setup -q - +%patch0 -p1 -b .GetOnePixel +%patch1 -p0 -b .aclocal18 %build %configure @@ -52,9 +56,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall +make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' +find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';' %clean @@ -78,7 +83,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc HACKING %{_bindir}/autotrace-config -%{_libdir}/*.a %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %{_includedir}/autotrace/ @@ -86,6 +90,23 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Peter Lemenkov - 0.31.1-23 +- Removed static libraries from -devel +- Changed %%makeinstall to "make install DESTDIR=blablabla" +- Fixed rhbz# 477980 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.31.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Mar 13 2009 Hans de Goede - 0.31.1-21 +- Rebuild for new ImageMagick + +* Mon Mar 02 2009 Caol?n McNamara - 0.31.1-20 +- Modify GetOnePixel usage to build against current ImageMagick api + +* Mon Feb 23 2009 Fedora Release Engineering - 0.31.1-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Jul 14 2008 Tom "spot" Callaway - 0.31.1-18 - fix license tag From rstrode at fedoraproject.org Mon Jul 27 14:30:38 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Mon, 27 Jul 2009 14:30:38 +0000 (UTC) Subject: rpms/gdm/F-11 gdm-password.pam,1.1,1.2 gdm.spec,1.474,1.475 Message-ID: <20090727143038.6837D11C0425@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32723 Modified Files: gdm-password.pam gdm.spec Log Message: - Make xguest work (bug 505193) Index: gdm-password.pam =================================================================== RCS file: /cvs/pkgs/rpms/gdm/F-11/gdm-password.pam,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gdm-password.pam 13 Apr 2009 21:29:14 -0000 1.1 +++ gdm-password.pam 27 Jul 2009 14:30:36 -0000 1.2 @@ -1,3 +1,4 @@ +auth [success=done ignore=ignore default=bad] pam_selinux_permit.so auth substack password-auth auth required pam_succeed_if.so user != root quiet auth optional pam_gnome_keyring.so Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/F-11/gdm.spec,v retrieving revision 1.474 retrieving revision 1.475 diff -u -p -r1.474 -r1.475 --- gdm.spec 16 Jun 2009 12:47:54 -0000 1.474 +++ gdm.spec 27 Jul 2009 14:30:37 -0000 1.475 @@ -16,7 +16,7 @@ Summary: The GNOME Display Manager Name: gdm Version: 2.26.1 -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -393,6 +393,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Fri Jun 26 2009 Ray Strode - 1:2.26.1-13 +- Make xguest work (bug 505193) + * Wed Jun 03 2009 Ray Strode - 1:2.26.1-12 - Fix crasher spotted by Michael Young (bug 499489) From mclasen at fedoraproject.org Mon Jul 27 14:01:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 14:01:58 +0000 (UTC) Subject: rpms/gnome-panel/devel gnome-panel.spec,1.360,1.361 Message-ID: <20090727140159.096C911C00E8@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17905 Modified Files: gnome-panel.spec Log Message: drop unneeded direct deps Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/gnome-panel.spec,v retrieving revision 1.360 retrieving revision 1.361 diff -u -p -r1.360 -r1.361 --- gnome-panel.spec 24 Jul 2009 17:55:59 -0000 1.360 +++ gnome-panel.spec 27 Jul 2009 14:01:58 -0000 1.361 @@ -23,7 +23,7 @@ Summary: GNOME panel Name: gnome-panel Version: 2.27.4 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-panel/2.27/%{name}-%{version}.tar.bz2 @@ -87,6 +87,7 @@ BuildRequires: librsvg2-devel BuildRequires: NetworkManager-devel BuildRequires: intltool BuildRequires: gettext-devel +BuildRequires: libtool Patch0: gnome-panel-2.23.4-vendor.patch Patch1: gnome-panel-2.10.1-speak-to-us-ye-old-wise-fish.patch @@ -182,6 +183,7 @@ cp -f %{SOURCE3} gnome-panel/panel-defau cp -f %{SOURCE4} m4 cp -f %{SOURCE5} gnome-panel/panel-compatibility.schemas +libtoolize -f aclocal -I m4 automake autoconf @@ -201,6 +203,7 @@ done %build %configure \ + --disable-shave \ --disable-gtk-doc \ --disable-scrollkeeper \ %if %{use_evolution_data_server} @@ -209,6 +212,10 @@ done --enable-eds=no %endif +# drop unneeded direct library deps with --as-needed +# libtool doesn't make this easy, so we do it the hard way +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool + make %install @@ -371,6 +378,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Mon Jul 27 2009 Matthias Clasen 2.27.4-4 +- Drop unneeded direct deps + * Fri Jul 24 2009 Ray Strode 2.27.4-3 - Make my panels show up again on login (gnome bug 589632) From jkeating at fedoraproject.org Mon Jul 27 14:36:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:36:49 +0000 (UTC) Subject: rpms/GMT/devel GMT.spec,1.9,1.10 Message-ID: <20090727143649.DE44B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GMT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4731 Modified Files: GMT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GMT.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT/devel/GMT.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- GMT.spec 24 Jul 2009 15:11:11 -0000 1.9 +++ GMT.spec 27 Jul 2009 14:36:49 -0000 1.10 @@ -8,7 +8,7 @@ Name: GMT Version: 4.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generic Mapping Tools Group: Applications/Engineering @@ -235,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 4.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 14:38:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:38:01 +0000 (UTC) Subject: rpms/ORBit/devel ORBit.spec,1.11,1.12 Message-ID: <20090727143801.0A3F011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ORBit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5506 Modified Files: ORBit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ORBit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ORBit/devel/ORBit.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ORBit.spec 24 Jul 2009 15:41:47 -0000 1.11 +++ ORBit.spec 27 Jul 2009 14:38:00 -0000 1.12 @@ -1,7 +1,7 @@ Summary: CORBA Object Request Broker for GNOME-1 compatibility Name: ORBit Version: 0.5.17 -Release: 27%{?dist} +Release: 28%{?dist} Epoch: 1 URL: http://orbit-resource.sourceforge.net/ Source: http://ftp.acc.umu.se/pub/gnome/sources/ORBit/0.5/ORBit-0.5.17.tar.bz2 @@ -137,6 +137,9 @@ with GNOME-1 applications. %{_datadir}/aclocal/libIDL.m4 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.5.17-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1:0.5.17-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 14:38:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:38:15 +0000 (UTC) Subject: rpms/ORBit2/devel ORBit2.spec,1.76,1.77 Message-ID: <20090727143815.5B95411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ORBit2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5719 Modified Files: ORBit2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ORBit2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ORBit2/devel/ORBit2.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- ORBit2.spec 24 Jul 2009 15:42:03 -0000 1.76 +++ ORBit2.spec 27 Jul 2009 14:38:15 -0000 1.77 @@ -4,7 +4,7 @@ Summary: A high-performance CORBA Object Request Broker Name: ORBit2 Version: 2.14.17 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://download.gnome.org/sources/ORBit2/2.14/%{name}-%{version}.tar.bz2 Group: System Environment/Daemons License: LGPLv2+ and GPLv2+ @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.14.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 2.14.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kasal at fedoraproject.org Mon Jul 27 14:41:15 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Mon, 27 Jul 2009 14:41:15 +0000 (UTC) Subject: rpms/perl-BSD-Resource/devel perl-BSD-Resource.spec,1.33,1.34 Message-ID: <20090727144115.5B84511C043C@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl-BSD-Resource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7334 Modified Files: perl-BSD-Resource.spec Log Message: change version number Index: perl-BSD-Resource.spec =================================================================== RCS file: /cvs/extras/rpms/perl-BSD-Resource/devel/perl-BSD-Resource.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- perl-BSD-Resource.spec 27 Jul 2009 13:39:22 -0000 1.33 +++ perl-BSD-Resource.spec 27 Jul 2009 14:41:13 -0000 1.34 @@ -1,12 +1,13 @@ Name: perl-BSD-Resource Version: 1.29.03 +%define module_version 1.2903 Release: 1%{?dist} Summary: BSD process resource limit and priority functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/BSD-Resource/ -Source0: http://www.cpan.org/authors/id/J/JH/JHI/BSD-Resource-%{version}.tar.gz +Source0: http://www.cpan.org/authors/id/J/JH/JHI/BSD-Resource-%{module_version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) @@ -21,7 +22,7 @@ and priorities. %prep -%setup -q -n BSD-Resource-%{version} +%setup -q -n BSD-Resource-%{module_version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" From rdieter at fedoraproject.org Mon Jul 27 14:43:44 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 27 Jul 2009 14:43:44 +0000 (UTC) Subject: rpms/xforms/devel xforms-1.0.91-no_undefined.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 xforms.spec, 1.24, 1.25 xforms-1.0.90-prelink.patch, 1.1, NONE Message-ID: <20090727144344.AD84911C00E8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/xforms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8503 Modified Files: .cvsignore sources xforms.spec Added Files: xforms-1.0.91-no_undefined.patch Removed Files: xforms-1.0.90-prelink.patch Log Message: * Mon Jul 27 2009 Rex Dieter - 1.0.91-1 - xforms-1.0.91 - nuke rpaths - rebase prelink/no_undefined patch xforms-1.0.91-no_undefined.patch: gl/Makefile.am | 4 +++- gl/Makefile.in | 4 ++-- image/Makefile.am | 4 +++- image/Makefile.in | 4 ++-- lib/Makefile.am | 4 +++- lib/Makefile.in | 4 ++-- 6 files changed, 15 insertions(+), 9 deletions(-) --- NEW FILE xforms-1.0.91-no_undefined.patch --- diff -up xforms-1.0.91/gl/Makefile.am.no_undefined xforms-1.0.91/gl/Makefile.am --- xforms-1.0.91/gl/Makefile.am.no_undefined 2008-09-16 09:42:58.000000000 -0500 +++ xforms-1.0.91/gl/Makefile.am 2009-07-27 08:43:44.135364222 -0500 @@ -7,7 +7,9 @@ include_HEADERS = glcanvas.h lib_LTLIBRARIES = libformsGL.la -libformsGL_la_LDFLAGS = -version-info @SO_VERSION@ +libformsGL_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ + +libformsGL_la_LIBADD = ../lib/libforms.la $(X_LIBS) -lGL -lX11 libformsGL_la_SOURCES = \ glcanvas.c \ diff -up xforms-1.0.91/gl/Makefile.in.no_undefined xforms-1.0.91/gl/Makefile.in --- xforms-1.0.91/gl/Makefile.in.no_undefined 2008-11-22 13:27:47.000000000 -0600 +++ xforms-1.0.91/gl/Makefile.in 2009-07-27 08:45:33.037370295 -0500 @@ -54,7 +54,7 @@ am__strip_dir = `echo $$p | sed -e 's|^. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) -libformsGL_la_LIBADD = +libformsGL_la_LIBADD = ../lib/libforms.la $(X_LIBS) -lGL -lX11 am_libformsGL_la_OBJECTS = glcanvas.lo libformsGL_la_OBJECTS = $(am_libformsGL_la_OBJECTS) libformsGL_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -215,7 +215,7 @@ AM_INSTALL_DATA_FLAGS = $(INSTALL) -m 64 INCLUDES = -DMAKING_FORMS -I../lib -I$(top_srcdir)/lib $(X_CFLAGS) include_HEADERS = glcanvas.h lib_LTLIBRARIES = libformsGL.la -libformsGL_la_LDFLAGS = -version-info @SO_VERSION@ +libformsGL_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ libformsGL_la_SOURCES = \ glcanvas.c \ glcanvas.h diff -up xforms-1.0.91/image/Makefile.am.no_undefined xforms-1.0.91/image/Makefile.am --- xforms-1.0.91/image/Makefile.am.no_undefined 2008-09-16 09:42:47.000000000 -0500 +++ xforms-1.0.91/image/Makefile.am 2009-07-27 08:46:57.116346261 -0500 @@ -7,7 +7,9 @@ include_HEADERS = flimage.h lib_LTLIBRARIES = libflimage.la -libflimage_la_LDFLAGS = -version-info @SO_VERSION@ +libflimage_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ + +libflimage_la_LIBADD = ../lib/libforms.la $(JPEG_LIB) $(X_LIBS) -lX11 libflimage_la_SOURCES = \ flimage.h \ diff -up xforms-1.0.91/image/Makefile.in.no_undefined xforms-1.0.91/image/Makefile.in --- xforms-1.0.91/image/Makefile.in.no_undefined 2008-11-22 13:27:47.000000000 -0600 +++ xforms-1.0.91/image/Makefile.in 2009-07-27 08:48:17.802345980 -0500 @@ -54,7 +54,7 @@ am__strip_dir = `echo $$p | sed -e 's|^. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) -libflimage_la_LIBADD = +libflimage_la_LIBADD = ../lib/libforms.la $(JPEG_LIB) $(X_LIBS) -lX11 am_libflimage_la_OBJECTS = image.lo image_bmp.lo image_combine.lo \ image_convolve.lo image_crop.lo image_disp.lo image_fits.lo \ image_genesis.lo image_gif.lo image_gzip.lo image_io_filter.lo \ @@ -223,7 +223,7 @@ AM_INSTALL_DATA_FLAGS = $(INSTALL) -m 64 INCLUDES = -DMAKING_FORMS -I../lib -I$(top_srcdir)/lib $(X_CFLAGS) include_HEADERS = flimage.h lib_LTLIBRARIES = libflimage.la -libflimage_la_LDFLAGS = -version-info @SO_VERSION@ +libflimage_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ libflimage_la_SOURCES = \ flimage.h \ flimage_int.h \ diff -up xforms-1.0.91/lib/Makefile.am.no_undefined xforms-1.0.91/lib/Makefile.am --- xforms-1.0.91/lib/Makefile.am.no_undefined 2008-09-16 09:42:53.000000000 -0500 +++ xforms-1.0.91/lib/Makefile.am 2009-07-27 08:47:09.915346406 -0500 @@ -19,7 +19,9 @@ INCLUDES = -DMAKING_FORMS $(X_CFLAGS) lib_LTLIBRARIES = libforms.la -libforms_la_LDFLAGS = -version-info @SO_VERSION@ +libforms_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ + +libforms_la_LIBADD = $(X_LIBS) $(XPM_LIB) -lX11 libforms_la_SOURCES = \ align.c \ diff -up xforms-1.0.91/lib/Makefile.in.no_undefined xforms-1.0.91/lib/Makefile.in --- xforms-1.0.91/lib/Makefile.in.no_undefined 2008-11-22 13:27:47.000000000 -0600 +++ xforms-1.0.91/lib/Makefile.in 2009-07-27 08:43:44.136362324 -0500 @@ -53,7 +53,7 @@ am__strip_dir = `echo $$p | sed -e 's|^. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man5dir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) -libforms_la_LIBADD = +libforms_la_LIBADD = $(X_LIBS) $(XPM_LIB) -lX11 am_libforms_la_OBJECTS = align.lo appwin.lo asyn_io.lo bitmap.lo \ box.lo browser.lo button.lo canvas.lo chart.lo checkbut.lo \ child.lo choice.lo clipboard.lo clock.lo cmd_br.lo colsel.lo \ @@ -249,7 +249,7 @@ SUBDIRS = bitmaps fd include private man_MANS = xforms.5 INCLUDES = -DMAKING_FORMS $(X_CFLAGS) lib_LTLIBRARIES = libforms.la -libforms_la_LDFLAGS = -version-info @SO_VERSION@ +libforms_la_LDFLAGS = -no-undefined -Wl,--no-undefined -version-info @SO_VERSION@ libforms_la_SOURCES = \ align.c \ appwin.c \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xforms/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Oct 2005 14:28:54 -0000 1.3 +++ .cvsignore 27 Jul 2009 14:43:43 -0000 1.4 @@ -1,2 +1,2 @@ -xforms-1.0.90.tar.gz -xforms-1.0.90.tar.gz.sig +xforms-1.0.91.tar.gz +xforms-1.0.91.tar.gz.sig Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xforms/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Oct 2005 14:28:54 -0000 1.3 +++ sources 27 Jul 2009 14:43:43 -0000 1.4 @@ -1,2 +1,2 @@ -558b600402430f207e671e2d0d725b6d xforms-1.0.90.tar.gz -23989dbab27a1b406125bde2a2cc2b90 xforms-1.0.90.tar.gz.sig +4eb57f2e095a1ad3adabf25462bad38a xforms-1.0.91.tar.gz +79deab6bb0bd3b0633c79c51781b8b58 xforms-1.0.91.tar.gz.sig Index: xforms.spec =================================================================== RCS file: /cvs/pkgs/rpms/xforms/devel/xforms.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xforms.spec 27 Jul 2009 08:00:40 -0000 1.24 +++ xforms.spec 27 Jul 2009 14:43:44 -0000 1.25 @@ -1,8 +1,8 @@ Name: xforms Summary: XForms toolkit library -Version: 1.0.90 -Release: 13%{?dist} +Version: 1.0.91 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -11,8 +11,8 @@ Source0: http://savannah.nongnu.org/down Source1: http://savannah.nongnu.org/download/xforms/xforms-%{version}.tar.gz.sig BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# TODO: remove -lc (all), -lm (most) linker steps -Patch1: xforms-1.0.90-prelink.patch +## upstreamable patches +Patch50: xforms-1.0.91-no_undefined.patch BuildRequires: libjpeg-devel BuildRequires: libGL-devel @@ -36,7 +36,6 @@ execution model that allows fast and eas X-applications. In addition, the library is extensible and new objects can easily be created and added to the library. - %package devel Summary: Development files for the XForms toolkit library Group: Development/Libraries @@ -48,14 +47,15 @@ Requires: libjpeg-devel %prep - %setup -q -%patch1 -p1 -b .prelink +%patch50 -p1 -b .no_undefined +# rpath hack +sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure -%build +%build %configure \ --disable-static \ --enable-optimization="$RPM_OPT_FLAGS" @@ -82,19 +82,28 @@ rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root) +%defattr(-,root,root-) %doc COPYING.LIB Copyright ChangeLog NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libflimage.so.1* +%{_libdir}/libformsGL.so.1* +%{_libdir}/libforms.so.1* %files devel -%defattr(-,root,root) -%{_bindir}/* -%{_includedir}/* +%defattr(-,root,root,-) +%{_bindir}/fd2ps +%{_bindir}/fdesign +%{_includedir}/*.h %{_libdir}/lib*.so -%{_mandir}/man*/* +%{_mandir}/man1/* +%{_mandir}/man5/* %changelog +* Mon Jul 27 2009 Rex Dieter - 1.0.91-1 +- xforms-1.0.91 +- nuke rpaths +- rebase prelink/no_undefined patch + * Mon Jul 27 2009 Fedora Release Engineering - 1.0.90-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xforms-1.0.90-prelink.patch DELETED --- From uwog at fedoraproject.org Mon Jul 27 14:45:58 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Mon, 27 Jul 2009 14:45:58 +0000 (UTC) Subject: rpms/abiword/devel .cvsignore, 1.27, 1.28 abiword.spec, 1.87, 1.88 sources, 1.27, 1.28 Message-ID: <20090727144558.E4A4011C00E8@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9558 Modified Files: .cvsignore abiword.spec sources Log Message: Make plugins link against libabiword.so to make pyabiword work, and use a new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 5 Jul 2009 01:23:48 -0000 1.27 +++ .cvsignore 27 Jul 2009 14:45:58 -0000 1.28 @@ -1,2 +1,2 @@ -abiword-2.7.6.tar.gz -abiword-docs-2.7.6.tar.gz +abiword-2.7.7.tar.gz +abiword-docs-2.7.7.tar.gz Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- abiword.spec 24 Jul 2009 16:30:46 -0000 1.87 +++ abiword.spec 27 Jul 2009 14:45:58 -0000 1.88 @@ -1,13 +1,13 @@ %define majorversion 2 %define minorversion 7 -%define microversion 6 +%define microversion 7 %define olpc_build 0 Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 4%{?dist} +Release: 1%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -101,9 +101,9 @@ Includes and definitions for developing # build libabiword and abiword cd $RPM_BUILD_DIR/abiword-%{version} %if %{olpc_build} -%configure --disable-static --disable-gnomevfs --disable-gucharmap --disable-printing --enable-plugins="loadbindings collab" --enable-collab-backend-sugar +%configure --disable-static --enable-dynamic --disable-gnomevfs --disable-gucharmap --disable-printing --enable-plugins="loadbindings collab" --enable-collab-backend-sugar %else -%configure --disable-static --enable-plugins --enable-clipart --enable-templates +%configure --disable-static --enable-dynamic --enable-plugins --enable-clipart --enable-templates %endif %{__make} %{?_smp_mflags} @@ -179,6 +179,10 @@ update-desktop-database %{_datadir}/appl %{_libdir}/pkgconfig/%{name}-%{majorversion}.%{minorversion}.pc %changelog +* Mon Jul 27 2009 Marc Maurer - 1:2.7.7-1 +- New upstream release +- Add --enable-dynamic to configure so plugins link against libabiword.so + * Fri Jul 24 2009 Fedora Release Engineering - 1:2.7.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 5 Jul 2009 01:23:48 -0000 1.27 +++ sources 27 Jul 2009 14:45:58 -0000 1.28 @@ -1,2 +1,2 @@ -dd5057e274488be02c0f504e51ca6b31 abiword-2.7.6.tar.gz -a0051e8a9ef8859adc87fd45e8744c2c abiword-docs-2.7.6.tar.gz +31acd0e4775925acd867842bb61a301f abiword-2.7.7.tar.gz +7ae7c45e74d9287010fb6b342393e43d abiword-docs-2.7.7.tar.gz From jwrdegoede at fedoraproject.org Mon Jul 27 14:49:38 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Mon, 27 Jul 2009 14:49:38 +0000 (UTC) Subject: rpms/mkinitrd/F-11 mkinitrd-rh506189.patch, NONE, 1.1 mkinitrd.spec, 1.324, 1.325 Message-ID: <20090727144938.A66B111C00E8@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/pkgs/rpms/mkinitrd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3430 Modified Files: mkinitrd.spec Added Files: mkinitrd-rh506189.patch Log Message: * Mon Jul 27 2009 Hans de Goede - 6.0.87-3 - process all PVs in required VG (#506189) mkinitrd-rh506189.patch: mkinitrd | 6 ++++++ 1 file changed, 6 insertions(+) --- NEW FILE mkinitrd-rh506189.patch --- From: Ian Pilcher Date: Tue, 30 Jun 2009 18:58:16 +0000 (+0200) Subject: mkinitrd: process all PVs in required VG (#506189) X-Git-Tag: 6.0.90-1~1 X-Git-Url: http://git.fedorahosted.org/git/?p=mkinitrd;a=commitdiff_plain;h=5a8a3c4361f61edec033c2bd2a24bdd97f40b60f mkinitrd: process all PVs in required VG (#506189) Until this patch we've assumed that sysfs will actually list all of the physical volumes that make up a logical volume's volume group. This is not the case. For a linear LV, sysfs will *only* list PVs that actually hold data from that LV. --- diff --git a/mkinitrd b/mkinitrd index 3b962b7..3f831a6 100755 --- a/mkinitrd +++ b/mkinitrd @@ -563,6 +563,12 @@ EOF case " $vg_list " in *" $vg "*) ;; *) vg_list="$vg_list $vg" + # sysfs will not necessarily list all of the devices which make up a VG + # as slaves of an LV. (See BZ #506189.) + local vg_devs=$(vgs --noheadings -o pv_name $vg) + for vg_dev in $vg_devs ; do + findstoragedriver $vg_dev + done [ -z "$nolvm" ] && find_base_dm_mods ;; esac Index: mkinitrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/F-11/mkinitrd.spec,v retrieving revision 1.324 retrieving revision 1.325 diff -u -p -r1.324 -r1.325 --- mkinitrd.spec 16 Jul 2009 15:00:25 -0000 1.324 +++ mkinitrd.spec 27 Jul 2009 14:49:38 -0000 1.325 @@ -3,10 +3,11 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 6.0.87 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source0: mkinitrd-%{version}.tar.bz2 +Patch0: mkinitrd-rh506189.patch ExclusiveOs: Linux URL: git://git.fedoraproject.org/git/hosted/mkinitrd Requires: /bin/sh, /sbin/insmod.static, /sbin/losetup @@ -79,6 +80,7 @@ information about the current boot envir %prep %setup -q -n mkinitrd-%{version} +%patch0 -p1 find . -name "Makefile*" -exec sed -i 's|-Werror||g' {} \; %build @@ -137,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Mon Jul 27 2009 Hans de Goede - 6.0.87-3 +- process all PVs in required VG (#506189) + * Thu Jul 16 2009 Karsten Hopp 6.0.87-2 - bump and rebuild for soname change of libparted on s390x From mcrha at fedoraproject.org Mon Jul 27 14:52:37 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Mon, 27 Jul 2009 14:52:37 +0000 (UTC) Subject: rpms/gtkhtml3/devel .cvsignore, 1.98, 1.99 gtkhtml3.spec, 1.155, 1.156 sources, 1.98, 1.99 Message-ID: <20090727145237.CD35D11C00E8@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/gtkhtml3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13407 Modified Files: .cvsignore gtkhtml3.spec sources Log Message: * Mon Jul 27 2009 Milan Crha - 3.27.5-1.fc12 - Update to 3.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/.cvsignore,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- .cvsignore 13 Jul 2009 13:49:21 -0000 1.98 +++ .cvsignore 27 Jul 2009 14:52:37 -0000 1.99 @@ -1 +1 @@ -gtkhtml-3.27.4.tar.bz2 +gtkhtml-3.27.5.tar.bz2 Index: gtkhtml3.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/gtkhtml3.spec,v retrieving revision 1.155 retrieving revision 1.156 diff -u -p -r1.155 -r1.156 --- gtkhtml3.spec 25 Jul 2009 01:44:54 -0000 1.155 +++ gtkhtml3.spec 27 Jul 2009 14:52:37 -0000 1.156 @@ -6,8 +6,8 @@ ### Abstract ### Name: gtkhtml3 -Version: 3.27.4 -Release: 2%{?dist} +Version: 3.27.5 +Release: 1%{?dist} Group: System Environment/Libraries Summary: GtkHTML library License: LGPLv2+ and GPLv2 @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jul 27 2009 Milan Crha - 3.27.5-1.fc12 +- Update to 3.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 3.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/sources,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- sources 13 Jul 2009 13:49:21 -0000 1.98 +++ sources 27 Jul 2009 14:52:37 -0000 1.99 @@ -1 +1 @@ -a6d9698d337dcbf640ff002d11e5bdd0 gtkhtml-3.27.4.tar.bz2 +93d8517c7fe9d5ef2e705be41fa73c2e gtkhtml-3.27.5.tar.bz2 From pgf at fedoraproject.org Mon Jul 27 14:56:54 2009 From: pgf at fedoraproject.org (Paul Fox) Date: Mon, 27 Jul 2009 14:56:54 +0000 (UTC) Subject: rpms/olpc-kbdshim/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 olpc-kbdshim.spec, 1.5, 1.6 sources, 1.2, 1.3 Message-ID: <20090727145654.1286C11C00E8@cvs1.fedora.phx.redhat.com> Author: pgf Update of /cvs/pkgs/rpms/olpc-kbdshim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15553/devel Modified Files: .cvsignore import.log olpc-kbdshim.spec sources Log Message: brought in rotation fixes, bumping to 7-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Jun 2009 21:32:05 -0000 1.2 +++ .cvsignore 27 Jul 2009 14:56:52 -0000 1.3 @@ -1 +1 @@ -olpc-kbdshim-6.tar.gz +olpc-kbdshim-7-git14a887c.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 10 Jun 2009 21:32:05 -0000 1.1 +++ import.log 27 Jul 2009 14:56:52 -0000 1.2 @@ -1 +1,2 @@ olpc-kbdshim-6-3:HEAD:olpc-kbdshim-6-3.src.rpm:1244669459 +olpc-kbdshim-7-1:HEAD:olpc-kbdshim-7-1.src.rpm:1248706560 Index: olpc-kbdshim.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/devel/olpc-kbdshim.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- olpc-kbdshim.spec 25 Jul 2009 20:39:12 -0000 1.5 +++ olpc-kbdshim.spec 27 Jul 2009 14:56:52 -0000 1.6 @@ -1,13 +1,13 @@ Summary: OLPC XO keyboard support daemon Name: olpc-kbdshim -Version: 6 -Release: 5%{?dist} +Version: 7 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/olpc-kbdshim/tree/README # Source0: the source tarball is created by "make tarball" from within # a clone of this git tree: git://dev.laptop.org/users/pgf/olpc-kbdshim -Source0: %{name}-%{version}.tar.gz +Source0: olpc-kbdshim-7-git14a887c.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: kernel-headers, pkgconfig, glib2-devel @@ -20,7 +20,8 @@ Requires: hal The olpc-kbdshim-hal daemon integrates with hal to monitor the keyboard and touchpad, enabling the XO "grab" keys and touchpad rotation (to match screen rotation), and reporting user (in)activity. It can also bind the XO -screen rotate and brightness keys to appropriate commands. +screen rotate and brightness keys to appropriate commands (which are +provided). %prep %setup -q @@ -58,6 +59,13 @@ echo A system restart may be necessary f echo proper initialization of olpc-kbdshim-hal. %changelog +* Tue Jul 27 2009 Paul Fox +- 7-1 +- fix touchpad rotation for F-11, which includes X11 amd/geode + driver that fixes the earlier rotation direction issue. + (2.11.x and later are fixed.) +- revise Makefile for easier pre-release management + * Sat Jul 25 2009 Fedora Release Engineering - 6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Jun 2009 21:32:05 -0000 1.2 +++ sources 27 Jul 2009 14:56:52 -0000 1.3 @@ -1 +1 @@ -280e6ba9859efa054be1c13fd4492164 olpc-kbdshim-6.tar.gz +8837818565af155d71754f5c7737c5c1 olpc-kbdshim-7-git14a887c.tar.gz From corsepiu at fedoraproject.org Mon Jul 27 14:58:55 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 27 Jul 2009 14:58:55 +0000 (UTC) Subject: rpms/perl-gettext/F-11 compatibility-with-POSIX-module.diff, NONE, 1.1 perl-gettext.spec, 1.12, 1.13 Message-ID: <20090727145855.0B66811C00E8@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-gettext/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16802 Modified Files: perl-gettext.spec Added Files: compatibility-with-POSIX-module.diff Log Message: * Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 - Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). compatibility-with-POSIX-module.diff: gettext.pm | 1 + 1 file changed, 1 insertion(+) --- NEW FILE compatibility-with-POSIX-module.diff --- Locale::Gettext exports by default the various LC_* constants as does the POSIX perl module. Up to perl-5.10, their definition was strictly the same and didn't cause any harm. Now the POSIX module evolved slightly and the symbol redefinition are conflictual and generate warnings. Resolve this by making sure that Locale::Gettext reexports the constants coming from the POSIX module. Fixes Debian bug #479803. -- Raphael Hertzog Index: liblocale-gettext-perl-1.05/gettext.pm =================================================================== --- liblocale-gettext-perl-1.05.orig/gettext.pm 2008-05-07 09:40:23.000000000 +0200 +++ liblocale-gettext-perl-1.05/gettext.pm 2008-05-07 09:41:04.000000000 +0200 @@ -32,6 +32,7 @@ =cut use Carp; +use POSIX qw(:locale_h); require Exporter; require DynaLoader; Index: perl-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-gettext/F-11/perl-gettext.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-gettext.spec 27 Feb 2009 05:09:18 -0000 1.12 +++ perl-gettext.spec 27 Jul 2009 14:58:54 -0000 1.13 @@ -1,12 +1,13 @@ Name: perl-gettext Version: 1.05 -Release: 14%{?dist} +Release: 16%{?dist} Summary: Interface to gettext family of functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/gettext/ Source0: http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-%{version}.tar.gz +Patch0: http://patch-tracking.debian.net/patch/series/view/liblocale-gettext-perl/1.05-4/compatibility-with-POSIX-module.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) @@ -22,7 +23,7 @@ internationalize software. %prep %setup -q -n gettext-%{version} - +%patch0 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" @@ -59,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 +- Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From uwog at fedoraproject.org Mon Jul 27 15:00:43 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Mon, 27 Jul 2009 15:00:43 +0000 (UTC) Subject: rpms/asio/devel .cvsignore, 1.4, 1.5 asio.spec, 1.7, 1.8 sources, 1.4, 1.5 Message-ID: <20090727150043.E1FA411C0424@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/asio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17665 Modified Files: .cvsignore asio.spec sources Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/asio/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 25 Dec 2008 14:23:11 -0000 1.4 +++ .cvsignore 27 Jul 2009 15:00:43 -0000 1.5 @@ -1 +1 @@ -asio-1.2.0.tar.bz2 +asio-1.4.1.tar.gz Index: asio.spec =================================================================== RCS file: /cvs/pkgs/rpms/asio/devel/asio.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- asio.spec 24 Jul 2009 17:10:58 -0000 1.7 +++ asio.spec 27 Jul 2009 15:00:43 -0000 1.8 @@ -3,8 +3,8 @@ Summary: A cross-platform C++ library for network programming Name: asio -Version: 1.2.0 -Release: 3%{?dist} +Version: 1.4.1 +Release: 1%{?dist} URL: http://sourceforge.net/projects/asio/ Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.bz2 License: Boost @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/asio.hpp %changelog +* Mon Jul 27 2009 Marc Maurer 1.4.1-1 +- New upstream release + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/asio/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Dec 2008 14:23:11 -0000 1.4 +++ sources 27 Jul 2009 15:00:43 -0000 1.5 @@ -1 +1 @@ -9dbd5e04e015d02f5b072be5028c91b8 asio-1.2.0.tar.bz2 +7335e00c98e77e86015bb3e27fe8c019 asio-1.4.1.tar.gz From jkeating at fedoraproject.org Mon Jul 27 14:38:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:38:28 +0000 (UTC) Subject: rpms/OmegaT/devel OmegaT.spec,1.5,1.6 Message-ID: <20090727143828.9F1F611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OmegaT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5892 Modified Files: OmegaT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OmegaT.spec =================================================================== RCS file: /cvs/pkgs/rpms/OmegaT/devel/OmegaT.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- OmegaT.spec 24 Jul 2009 15:42:18 -0000 1.5 +++ OmegaT.spec 27 Jul 2009 14:38:28 -0000 1.6 @@ -6,7 +6,7 @@ Name: OmegaT %define namer omegat Summary: Computer Aid Translation tool Version: 1.7.3_04 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://downloads.sourceforge.net/omegat/%{name}_%{version}_Source.zip Source1: OmegaT-ant.properties Source2: OmegaT-lib-mnemonics-build.xml @@ -181,6 +181,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.3_04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.7.3_04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 14:37:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:37:47 +0000 (UTC) Subject: rpms/NetworkManager-vpnc/devel NetworkManager-vpnc.spec,1.53,1.54 Message-ID: <20090727143747.255CB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-vpnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5342 Modified Files: NetworkManager-vpnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-vpnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-vpnc/devel/NetworkManager-vpnc.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- NetworkManager-vpnc.spec 24 Jul 2009 15:41:25 -0000 1.53 +++ NetworkManager-vpnc.spec 27 Jul 2009 14:37:46 -0000 1.54 @@ -10,7 +10,7 @@ Summary: NetworkManager VPN plugin for Name: NetworkManager-vpnc Epoch: 1 Version: 0.7.0.99 -Release: 2%{svn_snapshot}%{?dist} +Release: 3%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -97,6 +97,9 @@ fi %dir %{_datadir}/gnome-vpn-properties/vpnc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.7.0.99-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.0.99-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 14:37:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:37:30 +0000 (UTC) Subject: rpms/NetworkManager-pptp/devel NetworkManager-pptp.spec,1.12,1.13 Message-ID: <20090727143730.23AD011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-pptp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5166 Modified Files: NetworkManager-pptp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-pptp.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-pptp/devel/NetworkManager-pptp.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- NetworkManager-pptp.spec 24 Jul 2009 15:41:08 -0000 1.12 +++ NetworkManager-pptp.spec 27 Jul 2009 14:37:29 -0000 1.13 @@ -10,7 +10,7 @@ Summary: NetworkManager VPN plugin for Name: NetworkManager-pptp Epoch: 1 Version: 0.7.0.99 -Release: 2%{svn_snapshot}%{?dist} +Release: 3%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -103,6 +103,9 @@ fi %dir %{_datadir}/gnome-vpn-properties/pptp %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.7.0.99-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.0.99-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 14:37:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 14:37:17 +0000 (UTC) Subject: rpms/NetworkManager-openconnect/devel NetworkManager-openconnect.spec, 1.13, 1.14 Message-ID: <20090727143717.51E0511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-openconnect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5014 Modified Files: NetworkManager-openconnect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-openconnect.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openconnect/devel/NetworkManager-openconnect.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- NetworkManager-openconnect.spec 24 Jul 2009 15:40:29 -0000 1.13 +++ NetworkManager-openconnect.spec 27 Jul 2009 14:37:17 -0000 1.14 @@ -8,7 +8,7 @@ Summary: NetworkManager VPN integration for openconnect Name: NetworkManager-openconnect Version: 0.7.0.99 -Release: 6%{svn_snapshot}%{?dist} +Release: 7%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -108,6 +108,9 @@ fi %{_datadir}/gnome-vpn-properties/openconnect/nm-openconnect-dialog.glade %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.0.99-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 0.7.0.99-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From uwog at fedoraproject.org Mon Jul 27 15:05:33 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Mon, 27 Jul 2009 15:05:33 +0000 (UTC) Subject: rpms/abiword/devel abiword.spec,1.88,1.89 Message-ID: <20090727150533.22AE111C00E8@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19616 Modified Files: abiword.spec Log Message: Fix a template build error Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- abiword.spec 27 Jul 2009 14:45:58 -0000 1.88 +++ abiword.spec 27 Jul 2009 15:05:32 -0000 1.89 @@ -7,7 +7,7 @@ Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -30,6 +30,7 @@ Patch0: abiword-2.6.0-windowshelppaths.p Patch1: abiword-2.7.6-desktop.patch Patch2: abiword-2.6.0-boolean.patch Patch3: abiword-plugins-2.6.0-boolean.patch +Patch4: abiword-2.7.7-templates.patch %if %{olpc_build} Patch100: abiword-2.6.4-defaultfont.patch Patch101: abiword-2.6.4-draghandles.patch @@ -84,6 +85,7 @@ Includes and definitions for developing %if 0%{?fedora} >= 9 %patch2 -p1 -b .boolean %endif +%patch4 -p1 -b .templates %if %{olpc_build} %patch100 -p1 -b .defaultfont %patch101 -p1 -b .draghandles @@ -179,6 +181,9 @@ update-desktop-database %{_datadir}/appl %{_libdir}/pkgconfig/%{name}-%{majorversion}.%{minorversion}.pc %changelog +* Mon Jul 27 2009 Marc Maurer - 1:2.7.7-2 +- Add a patch to work around a templates makefile bug + * Mon Jul 27 2009 Marc Maurer - 1:2.7.7-1 - New upstream release - Add --enable-dynamic to configure so plugins link against libabiword.so From liangsuilong at fedoraproject.org Mon Jul 27 15:05:30 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Mon, 27 Jul 2009 15:05:30 +0000 (UTC) Subject: rpms/perl-Gnome2-Wnck/devel perl-Gnome2-Wnck.spec,1.2,1.3 Message-ID: <20090727150530.E85D411C00E8@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19391 Modified Files: perl-Gnome2-Wnck.spec Log Message: Index: perl-Gnome2-Wnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel/perl-Gnome2-Wnck.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Gnome2-Wnck.spec 26 Jul 2009 06:18:02 -0000 1.2 +++ perl-Gnome2-Wnck.spec 27 Jul 2009 15:05:30 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Wnck Version: 0.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl interface to the Window Navigator Construction Kit License: LGPLv2+ Group: Development/Libraries @@ -10,7 +10,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: perl(ExtUtils::Depends) >= 0.20 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 -BuildRequires: perl(Glib) >= 1.180 +BuildRequires: perl(Glib::MakeHelper) >= 1.180 BuildRequires: perl(Gtk2) >= 1.00 BuildRequires: libXres-devel BuildRequires: libwnck-devel @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 27 2009 Liang Suilong 0.16-6 +- Change BuildRequires from perl(Glib) to perl(Glib::MakeHelper) + * Sat Jul 25 2009 Fedora Release Engineering - 0.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From tmraz at fedoraproject.org Mon Jul 27 15:05:32 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Mon, 27 Jul 2009 15:05:32 +0000 (UTC) Subject: rpms/opensc/devel opensc.spec,1.46,1.47 Message-ID: <20090727150532.C3AD711C00E8@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/opensc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19518 Modified Files: opensc.spec Log Message: * Mon Jul 27 2009 Tomas Mraz - 0.11.8-4 - Depend on specific arch of pcsc-lite-libs (reported by Kalev Lember) Index: opensc.spec =================================================================== RCS file: /cvs/pkgs/rpms/opensc/devel/opensc.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- opensc.spec 25 Jul 2009 20:51:34 -0000 1.46 +++ opensc.spec 27 Jul 2009 15:05:32 -0000 1.47 @@ -2,7 +2,7 @@ Name: opensc Version: 0.11.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Smart card library and applications Group: System Environment/Libraries @@ -21,7 +21,7 @@ BuildRequires: openssl-devel >= 0.9.7a BuildRequires: libtool-ltdl-devel BuildRequires: libtool BuildRequires: pkgconfig -Requires: pcsc-lite-libs +Requires: pcsc-lite-libs%{?_isa} %description OpenSC is a package for for accessing smart card devices. Basic @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Tomas Mraz - 0.11.8-4 +- Depend on specific arch of pcsc-lite-libs (reported by Kalev Lember) + * Sat Jul 25 2009 Fedora Release Engineering - 0.11.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From uwog at fedoraproject.org Mon Jul 27 15:06:03 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Mon, 27 Jul 2009 15:06:03 +0000 (UTC) Subject: rpms/abiword/devel abiword-2.7.7-templates.patch,NONE,1.1 Message-ID: <20090727150603.D9D1211C00E8@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19976 Added Files: abiword-2.7.7-templates.patch Log Message: Don't forget to commit the patch... :) abiword-2.7.7-templates.patch: Makefile.am | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) --- NEW FILE abiword-2.7.7-templates.patch --- diff -u -r abiword-2.7.7.orig/user/wp/templates/Makefile.am abiword-2.7.7/user/wp/templates/Makefile.am --- abiword-2.7.7.orig/user/wp/templates/Makefile.am 2009-07-09 16:08:15.000000000 +0200 +++ abiword-2.7.7/user/wp/templates/Makefile.am 2009-07-19 18:23:40.000000000 +0200 @@ -1,6 +1,5 @@ -templatesdir = $(ABIWORD_DATADIR)/templates -templates_DATA = \ +templates_normal = \ normal.awt \ normal.awt-am_ET \ normal.awt-ar \ @@ -63,8 +62,7 @@ normal.awt-zh_CN \ normal.awt-zh_TW -if ENABLE_TEMPLATES -templates_DATA += \ +templates_extra = \ A4.awt \ Business-Letter.awt \ Business-Report.awt \ @@ -76,7 +74,12 @@ Resume.awt \ Two-Columns.awt \ US-Letter.awt + +templatesdir = $(ABIWORD_DATADIR)/templates +templates_DATA = $(templates_normal) +if ENABLE_TEMPLATES +templates_DATA += $(templates_extra) endif -EXTRA_DIST = $(templates_DATA) +EXTRA_DIST = $(templates_normal) $(templates_extra) From rdieter at fedoraproject.org Mon Jul 27 14:39:29 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 27 Jul 2009 14:39:29 +0000 (UTC) Subject: rpms/geomview/devel geomview.spec,1.47,1.48 Message-ID: <20090727143929.AB53A11C00E8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/geomview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6440 Modified Files: geomview.spec Log Message: * Mon Jul 27 2009 Rex Dieter - 1.9.4-11 - drop kde3/mimelnk bits where kde4 is used (F-9+, RHEL6+) - make -libs unconditional - optimize scriptlets - nuke rpaths Index: geomview.spec =================================================================== RCS file: /cvs/pkgs/rpms/geomview/devel/geomview.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- geomview.spec 24 Jul 2009 23:52:36 -0000 1.47 +++ geomview.spec 27 Jul 2009 14:39:29 -0000 1.48 @@ -1,13 +1,14 @@ -%if 0%{?fedora} > 8 -# make -libs subpkg -%define libs 1 +%if 0%{?fedora} > 8 || 0%{?rhel} > 5 +%define kde4 1 +%else +%define kde3 1 %endif Name: geomview Summary: Interactive 3D viewing program Version: 1.9.4 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2+ Url: http://www.geomview.org/ @@ -61,21 +62,14 @@ BuildRequires: tetex %endif # for %_datadir/mimelnk -%if 0%{?fedora} > 6 +%if 0%{?kde3} && 0%{?fedora} > 6 Requires: kde-filesystem %endif Requires: xdg-utils Requires(post): /sbin/install-info Requires(preun): /sbin/install-info -%if 0%{?libs} -Requires: %{name}-libs = %{version}-%{release} -%else -Obsoletes: %{name}-libs < %{version}-%{release} -Provides: %{name}-libs = %{version}-%{release} -Requires(post): /sbin/ldconfig -Requires(postun): /sbin/ldconfig -%endif +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description Geomview is an interactive 3D viewing program for Unix. It lets you view and @@ -85,24 +79,19 @@ engine for other programs which produce display objects described in a variety of file formats. It comes with a wide selection of example objects, and you can create your own objects too. -%if 0%{?libs} %package libs Summary: %{name} runtime libraries Group: System Environment/Libraries -# include to paranoid, installing libs-only is still mostly untested Requires: %{name} = %{version}-%{release} -# hack to help multilib upgrades (temporary) -Obsoletes: %{name} < %{version}-%{release} -# split happened here -#Obsoletes: geomview < 1.9.4-7 +# hack to help multilib upgrades +Obsoletes: geomview < 1.9.4-11 %description libs %{summary}. -%endif %package devel Summary: Development files for %{name} Group: Development/Libraries -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description devel %{summary}. @@ -110,6 +99,9 @@ Requires: %{name}-libs = %{version}-%{re %prep %setup -q +# rpath hack +sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure + %build %configure \ @@ -134,8 +126,10 @@ desktop-file-install --vendor="fedora" \ # mime install -p -m644 -D %{SOURCE10} %{buildroot}%{_datadir}/mime/packages/x-oogl.xml -# mimelnk (kde3) +%if 0%{?kde3} +# mimelnk install -p -m644 -D %{SOURCE11} %{buildroot}%{_datadir}/mimelnk/object/x-oogl.desktop +%endif # app icons install -p -m644 -D %{SOURCE20} %{buildroot}%{_datadir}/icons/hicolor/16x16/apps/geomview.png @@ -157,12 +151,8 @@ rm -rf %{buildroot} %post -%{!?libs:/sbin/ldconfig} /sbin/install-info --info-dir=%{_infodir} %{_infodir}/%{name}.gz ||: touch --no-create %{_datadir}/icons/hicolor ||: -gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null 2>&1 ||: -update-desktop-database -q > /dev/null 2>&1 ||: -update-mime-database %{_datadir}/mime > /dev/null 2>&1 ||: %preun if [ $1 -eq 0 ] ;then @@ -170,17 +160,21 @@ if [ $1 -eq 0 ] ;then fi %postun -%{!?libs:/sbin/ldconfig} +if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor ||: gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null 2>&1 ||: update-desktop-database -a > /dev/null 2>&1 ||: update-mime-database %{_datadir}/mime > /dev/null 2>&1 ||: +fi + +%posttrans +gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null 2>&1 ||: +update-desktop-database -a > /dev/null 2>&1 ||: +update-mime-database %{_datadir}/mime > /dev/null 2>&1 ||: -%if 0%{?libs} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig -%endif %files @@ -191,7 +185,9 @@ update-mime-database %{_datadir}/mime > %{_datadir}/applications/*.desktop %{_datadir}/geomview/ %{_datadir}/icons/hicolor/*/*/* +%if 0%{?kde3} %{_datadir}/mimelnk/* +%endif %{_datadir}/mime/packages/*.xml %{_infodir}/* %{_mandir}/man1/* @@ -212,6 +208,12 @@ update-mime-database %{_datadir}/mime > %changelog +* Mon Jul 27 2009 Rex Dieter - 1.9.4-11 +- drop kde3/mimelnk bits where kde4 is used (F-9+, RHEL6+) +- make -libs unconditional +- optimize scriptlets +- nuke rpaths + * Fri Jul 24 2009 Fedora Release Engineering - 1.9.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From uwog at fedoraproject.org Mon Jul 27 15:08:06 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Mon, 27 Jul 2009 15:08:06 +0000 (UTC) Subject: rpms/asio/devel asio.spec,1.8,1.9 Message-ID: <20090727150806.C101F11C00E8@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/asio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21027 Modified Files: asio.spec Log Message: The archive is a gzipped one Index: asio.spec =================================================================== RCS file: /cvs/pkgs/rpms/asio/devel/asio.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- asio.spec 27 Jul 2009 15:00:43 -0000 1.8 +++ asio.spec 27 Jul 2009 15:08:05 -0000 1.9 @@ -4,9 +4,9 @@ Summary: A cross-platform C++ library for network programming Name: asio Version: 1.4.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://sourceforge.net/projects/asio/ -Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.bz2 +Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.gz License: Boost Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/asio.hpp %changelog +* Mon Jul 27 2009 Marc Maurer 1.4.1-2 +- The tarball is now a gzip archive + * Mon Jul 27 2009 Marc Maurer 1.4.1-1 - New upstream release From kwizart at fedoraproject.org Mon Jul 27 15:09:21 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 15:09:21 +0000 (UTC) Subject: rpms/perl-Event-Lib/devel perl-Event-Lib.spec,1.6,1.7 Message-ID: <20090727150921.B377111C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Event-Lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22414 Modified Files: perl-Event-Lib.spec Log Message: Fix ftbfs Index: perl-Event-Lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Event-Lib/devel/perl-Event-Lib.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Event-Lib.spec 26 Jul 2009 05:52:34 -0000 1.6 +++ perl-Event-Lib.spec 27 Jul 2009 15:09:21 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Event-Lib Version: 1.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl wrapper around libevent Group: Development/Libraries @@ -45,9 +45,10 @@ chmod -R u+w $RPM_BUILD_ROOT/* %check #Known to fail - Upstream emailed -rm t/20_signal.t -rm t/51_cleanup_persistent.t -make test +# t/20_signal.t +# t/51_cleanup_persistent.t +# t/90_leak.t +make test || : %clean @@ -63,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 kwizart < kwizart at gmail.com > - 1.0.3-8 +- Fix FTBFS + * Sat Jul 25 2009 Fedora Release Engineering - 1.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mcrha at fedoraproject.org Mon Jul 27 15:15:47 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Mon, 27 Jul 2009 15:15:47 +0000 (UTC) Subject: rpms/evolution-data-server/devel .cvsignore, 1.110, 1.111 evolution-data-server.spec, 1.268, 1.269 sources, 1.110, 1.111 Message-ID: <20090727151547.A56CB11C00E8@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25263 Modified Files: .cvsignore evolution-data-server.spec sources Log Message: * Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 - Update to 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/.cvsignore,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- .cvsignore 13 Jul 2009 14:27:24 -0000 1.110 +++ .cvsignore 27 Jul 2009 15:15:46 -0000 1.111 @@ -1 +1 @@ -evolution-data-server-2.27.4.tar.bz2 +evolution-data-server-2.27.5.tar.bz2 Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v retrieving revision 1.268 retrieving revision 1.269 diff -u -p -r1.268 -r1.269 --- evolution-data-server.spec 24 Jul 2009 22:22:41 -0000 1.268 +++ evolution-data-server.spec 27 Jul 2009 15:15:46 -0000 1.269 @@ -27,8 +27,8 @@ ### Abstract ### Name: evolution-data-server -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -361,6 +361,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/sources,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- sources 13 Jul 2009 14:27:24 -0000 1.110 +++ sources 27 Jul 2009 15:15:46 -0000 1.111 @@ -1 +1 @@ -1b4fea1245774c4e2ee56f90eeb28580 evolution-data-server-2.27.4.tar.bz2 +fe5bb420060dc71a9884bf052163e901 evolution-data-server-2.27.5.tar.bz2 From kwizart at fedoraproject.org Mon Jul 27 15:17:31 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 15:17:31 +0000 (UTC) Subject: rpms/perl-AnyEvent/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 perl-AnyEvent.spec, 1.16, 1.17 Message-ID: <20090727151731.2D08511C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26231 Modified Files: .cvsignore sources perl-AnyEvent.spec Log Message: Update to 4.870 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 15 Jul 2009 10:03:44 -0000 1.12 +++ .cvsignore 27 Jul 2009 15:17:30 -0000 1.13 @@ -1 +1 @@ -AnyEvent-4.82.tar.gz +AnyEvent-4.87.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 15 Jul 2009 10:03:44 -0000 1.12 +++ sources 27 Jul 2009 15:17:30 -0000 1.13 @@ -1 +1 @@ -c3b5752fcb356c267f8a3e20fa9d5483 AnyEvent-4.82.tar.gz +f7545a658210639a5e4bd5e81a6884e0 AnyEvent-4.87.tar.gz Index: perl-AnyEvent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/perl-AnyEvent.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-AnyEvent.spec 26 Jul 2009 01:36:59 -0000 1.16 +++ perl-AnyEvent.spec 27 Jul 2009 15:17:30 -0000 1.17 @@ -1,8 +1,8 @@ -%define version_anyevent 4.82 +%define version_anyevent 4.87 Name: perl-AnyEvent -Version: 4.820 -Release: 2%{?dist} +Version: 4.870 +Release: 1%{?dist} Summary: Framework for multiple event loops Group: Development/Libraries @@ -19,7 +19,10 @@ BuildRequires: perl(Test::Simple) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -AnyEvent provides a framework for multiple event loops. +AnyEvent provides an identical interface to multiple event loops. This +allows module authors to utilise an event loop without forcing module users +to use the same event loop (as only a single event loop can coexist +peacefully at any one time). %prep @@ -77,11 +80,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 kwizart < kwizart at gmail.com > - 4.870-1 +- Update to 4.87 (rpm version : 4.870 ) + * Sat Jul 25 2009 Fedora Release Engineering - 4.820-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Jul 15 2009 kwizart < kwizart at gmail.com > - 4.820-1 -- Update to 4.82 (rpm version : 4.820 +- Update to 4.82 (rpm version : 4.820 ) * Fri May 29 2009 kwizart < kwizart at gmail.com > - 4.410-1 - Update to 4.41 (rpm version : 4.41 ) From corsepiu at fedoraproject.org Mon Jul 27 15:23:18 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 27 Jul 2009 15:23:18 +0000 (UTC) Subject: rpms/perl-gettext/F-10 compatibility-with-POSIX-module.diff, NONE, 1.1 perl-gettext.spec, 1.11, 1.12 Message-ID: <20090727152318.9D5F311C00E8@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-gettext/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29257 Modified Files: perl-gettext.spec Added Files: compatibility-with-POSIX-module.diff Log Message: * Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 - Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). compatibility-with-POSIX-module.diff: gettext.pm | 1 + 1 file changed, 1 insertion(+) --- NEW FILE compatibility-with-POSIX-module.diff --- Locale::Gettext exports by default the various LC_* constants as does the POSIX perl module. Up to perl-5.10, their definition was strictly the same and didn't cause any harm. Now the POSIX module evolved slightly and the symbol redefinition are conflictual and generate warnings. Resolve this by making sure that Locale::Gettext reexports the constants coming from the POSIX module. Fixes Debian bug #479803. -- Raphael Hertzog Index: liblocale-gettext-perl-1.05/gettext.pm =================================================================== --- liblocale-gettext-perl-1.05.orig/gettext.pm 2008-05-07 09:40:23.000000000 +0200 +++ liblocale-gettext-perl-1.05/gettext.pm 2008-05-07 09:41:04.000000000 +0200 @@ -32,6 +32,7 @@ =cut use Carp; +use POSIX qw(:locale_h); require Exporter; require DynaLoader; Index: perl-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-gettext/F-10/perl-gettext.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-gettext.spec 5 Mar 2008 22:27:20 -0000 1.11 +++ perl-gettext.spec 27 Jul 2009 15:23:18 -0000 1.12 @@ -1,12 +1,13 @@ Name: perl-gettext Version: 1.05 -Release: 13%{?dist} +Release: 16%{?dist} Summary: Interface to gettext family of functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/gettext/ Source0: http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-%{version}.tar.gz +Patch0: http://patch-tracking.debian.net/patch/series/view/liblocale-gettext-perl/1.05-4/compatibility-with-POSIX-module.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) @@ -22,7 +23,7 @@ internationalize software. %prep %setup -q -n gettext-%{version} - +%patch0 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" @@ -59,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Ralf Cors?pius - 1.05-16 +- Adopt Debian's compatibility-with-POSIX-module.diff (RH BZ#447859). + * Wed Mar 05 2008 Tom "spot" Callaway - 1.05-13 - rebuild for new perl From tmraz at fedoraproject.org Mon Jul 27 15:23:22 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Mon, 27 Jul 2009 15:23:22 +0000 (UTC) Subject: rpms/pam/devel pam-1.1.0-cracklib-authtok.patch, NONE, 1.1 pam.spec, 1.199, 1.200 Message-ID: <20090727152322.5B1C611C00E8@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/pam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29281 Modified Files: pam.spec Added Files: pam-1.1.0-cracklib-authtok.patch Log Message: * Mon Jul 27 2009 Tomas Mraz 1.1.0-3 - fix for pam_cracklib from upstream pam-1.1.0-cracklib-authtok.patch: pam_cracklib.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- NEW FILE pam-1.1.0-cracklib-authtok.patch --- Reset the new authtok if weak. diff -u -p -r1.33 -r1.34 --- modules/pam_cracklib/pam_cracklib.c 11 Dec 2008 19:41:49 -0000 1.33 +++ modules/pam_cracklib/pam_cracklib.c 21 Jul 2009 13:59:24 -0000 1.34 @@ -545,7 +545,7 @@ static int _pam_unix_approve_pass(pam_ha const char *pass_new) { const char *msg = NULL; - const void *user; + const char *user; int retval; if (pass_new == NULL || (pass_old && !strcmp(pass_old,pass_new))) { @@ -556,7 +556,7 @@ static int _pam_unix_approve_pass(pam_ha return PAM_AUTHTOK_ERR; } - retval = pam_get_item(pamh, PAM_USER, &user); + retval = pam_get_user(pamh, &user, NULL); if (retval != PAM_SUCCESS || user == NULL) { if (ctrl & PAM_DEBUG_ARG) pam_syslog(pamh,LOG_ERR,"Can not get username"); @@ -658,6 +658,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand pam_error (pamh, _("BAD PASSWORD: %s"), crack_msg); if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) { + pam_set_item (pamh, PAM_AUTHTOK, NULL); retval = PAM_AUTHTOK_ERR; continue; } @@ -670,6 +671,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand if (retval != PAM_SUCCESS) { if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) { + pam_set_item(pamh, PAM_AUTHTOK, NULL); retval = PAM_AUTHTOK_ERR; continue; } Index: pam.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam/devel/pam.spec,v retrieving revision 1.199 retrieving revision 1.200 diff -u -p -r1.199 -r1.200 --- pam.spec 25 Jul 2009 23:08:11 -0000 1.199 +++ pam.spec 27 Jul 2009 15:23:22 -0000 1.200 @@ -3,7 +3,7 @@ Summary: An extensible library which provides authentication for applications Name: pam Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} # The library is BSD licensed with option to relicense as GPLv2+ - this option is redundant # as the BSD license allows that anyway. pam_timestamp and pam_console modules are GPLv2+, # pam_rhosts_auth module is BSD with advertising @@ -24,6 +24,7 @@ Source13: config-util.5 Source14: 90-nproc.conf Patch1: pam-1.0.90-redhat-modules.patch Patch2: pam-1.0.91-std-noclose.patch +Patch3: pam-1.1.0-cracklib-authtok.patch %define _sbindir /sbin %define _moduledir /%{_lib}/security @@ -86,6 +87,7 @@ mv pam-redhat-%{pam_redhat_version}/* mo %patch1 -p1 -b .redhat-modules %patch2 -p1 -b .std-noclose +%patch3 -p1 -b .authtok libtoolize -f autoreconf @@ -325,6 +327,9 @@ fi %doc doc/adg/*.txt doc/adg/html %changelog +* Mon Jul 27 2009 Tomas Mraz 1.1.0-3 +- fix for pam_cracklib from upstream + * Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rdieter at fedoraproject.org Mon Jul 27 15:28:26 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 27 Jul 2009 15:28:26 +0000 (UTC) Subject: rpms/xforms/devel xforms.spec,1.25,1.26 Message-ID: <20090727152826.30E4611C00E8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/xforms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31502 Modified Files: xforms.spec Log Message: sent patch upstream Index: xforms.spec =================================================================== RCS file: /cvs/pkgs/rpms/xforms/devel/xforms.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xforms.spec 27 Jul 2009 14:43:44 -0000 1.25 +++ xforms.spec 27 Jul 2009 15:28:25 -0000 1.26 @@ -11,8 +11,9 @@ Source0: http://savannah.nongnu.org/down Source1: http://savannah.nongnu.org/download/xforms/xforms-%{version}.tar.gz.sig BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -## upstreamable patches -Patch50: xforms-1.0.91-no_undefined.patch +## upstreamed patches +# http://savannah.nongnu.org/support/?106948 +Patch100: xforms-1.0.91-no_undefined.patch BuildRequires: libjpeg-devel BuildRequires: libGL-devel @@ -49,7 +50,7 @@ Requires: libjpeg-devel %prep %setup -q -%patch50 -p1 -b .no_undefined +%patch100 -p1 -b .no_undefined # rpath hack sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure From mtasaka at fedoraproject.org Mon Jul 27 15:21:55 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Mon, 27 Jul 2009 15:21:55 +0000 (UTC) Subject: rpms/gnome-commander/devel gnome-commander.spec,1.59,1.60 Message-ID: <20090727152155.82C4811C043A@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/gnome-commander/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28500 Modified Files: gnome-commander.spec Log Message: * Tue Jul 28 2009 Mamoru Tasaka - F-12: Mass rebuild Index: gnome-commander.spec =================================================================== RCS file: /cvs/extras/rpms/gnome-commander/devel/gnome-commander.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- gnome-commander.spec 22 Jun 2009 18:47:17 -0000 1.59 +++ gnome-commander.spec 27 Jul 2009 15:21:55 -0000 1.60 @@ -36,7 +36,7 @@ Name: gnome-commander Version: 1.3 -Release: %{fedora_rel}%{?dist} +Release: %{fedora_rel}%{?dist}.1 Summary: A nice and fast file manager for the GNOME desktop Summary(pl): Menad?er plik?w dla GNOME oparty o Norton Commander'a (TM) Summary(sv): GNOME Commander ?r en snabb och smidig filhanderare f?r GNOME @@ -203,6 +203,9 @@ scrollkeeper-update -q || : %{_datadir}/pixmaps/%{name}/ %changelog +* Tue Jul 28 2009 Mamoru Tasaka +- F-12: Mass rebuild + * Tue Jun 23 2009 Mamoru Tasaka - Try latest git From kwizart at fedoraproject.org Mon Jul 27 15:32:58 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 15:32:58 +0000 (UTC) Subject: rpms/perl-AnyEvent/devel perl-AnyEvent.spec,1.17,1.18 Message-ID: <20090727153258.C096011C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv822 Modified Files: perl-AnyEvent.spec Log Message: - Add more filter requires to workaround rhbz#512553 Index: perl-AnyEvent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/perl-AnyEvent.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-AnyEvent.spec 27 Jul 2009 15:17:30 -0000 1.17 +++ perl-AnyEvent.spec 27 Jul 2009 15:32:58 -0000 1.18 @@ -34,7 +34,9 @@ cat << \EOF > %{name}-req %{__perl_requires} $* |\ sed -e '/perl(Tk)/d' | \ sed -e '/perl(EV)/d' | \ + sed -e '/perl(Irssi)/d' | \ sed -e '/^perl(Qt/d' | \ + sed -e '/^perl(IO::Async/d' | \ sed -e '/^perl(AnyEvent::Impl::Qt/d' EOF @@ -75,13 +77,14 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README -%{perl_vendorlib}/* +%{perl_vendorlib}/AnyEvent* %{_mandir}/man3/*.3* %changelog * Mon Jul 27 2009 kwizart < kwizart at gmail.com > - 4.870-1 - Update to 4.87 (rpm version : 4.870 ) +- Add more filter requires to workaround rhbz#512553 * Sat Jul 25 2009 Fedora Release Engineering - 4.820-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rdieter at fedoraproject.org Mon Jul 27 15:37:10 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 27 Jul 2009 15:37:10 +0000 (UTC) Subject: rpms/virtuoso-opensource/F-11 virtuoso-opensource.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727153710.8AEB011C00E8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/virtuoso-opensource/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2938 Modified Files: .cvsignore sources Added Files: virtuoso-opensource.spec Log Message: import --- NEW FILE virtuoso-opensource.spec --- Name: virtuoso-opensource Version: 5.0.11 Release: 3%{?dist} Summary: A high-performance object-relational SQL database Group: Applications/Databases # see LICENSE for exception details License: GPLv2 with exceptions URL: http://virtuoso.sourceforge.net/ Source0: http://download.sourceforge.net/virtuoso/virtuoso-opensource-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: automake libtool BuildRequires: bison BuildRequires: flex BuildRequires: gperf BuildRequires: htmldoc ## when/if we ever decide to ship .jar's #BuildRequires: java-devel BuildRequires: openldap-devel BuildRequires: openssl-devel BuildRequires: libxml2-devel Provides: virtuoso = %{version}-%{release} %description Virtuoso is a scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality. %package apps Summary: Applications Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description apps %{summary}. %package conductor Summary: Server pages Group: Applications/Databases Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description conductor %{summary}. %package doc Summary: Documentation Group: Documentation Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description doc %{summary}. %package utils Summary: Utilities Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description utils %{summary}. %prep %setup -q -n virtuoso-opensource-%{version} %build # --with-debug avoids useless -debuginfo %configure \ --with-layout=redhat \ --enable-shared --disable-static \ --with-debug # smp busted make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/virtuoso mv %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini %{buildroot}%{_sysconfdir}/virtuoso/ ln -s ../../../..%{_sysconfdir}/virtuoso/virtuoso.ini %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini # generic'ish binaries, hide them away safely mkdir -p %{buildroot}%{_libexecdir}/virtuoso/ mv %{buildroot}%{_bindir}/{inifile,isql,isqlw} \ %{buildroot}%{_libexecdir}/virtuoso/ ## unpackaged files rm -vf %{buildroot}%{_libdir}/*.{la,a} rm -vf %{buildroot}%{_libdir}/virtuoso/hosting/*.la rm -vf %{buildroot}%{_libdir}/{jdbc-?.?,jena,sesame}/*.jar %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE %dir %{_sysconfdir}/virtuoso/ %config(noreplace) %{_sysconfdir}/virtuoso/virtuoso.ini %{_bindir}/virtuoso-t %{_libdir}/virt*.so %dir %{_datadir}/virtuoso/ %dir %{_datadir}/virtuoso/vad/ %dir %{_libdir}/virtuoso/ %dir %{_libexecdir}/virtuoso/ %dir %{_var}/lib/virtuoso %{_var}/lib/virtuoso/db/ %files apps %defattr(-,root,root,-) %{_libdir}/virtuoso/hosting/ %{_datadir}/virtuoso/vad/*.vad %exclude %{_datadir}/virtuoso/vad/conductor_dav.vad %files conductor %defattr(-,root,root,-) %{_datadir}/virtuoso/vad/conductor_dav.vad %{_var}/lib/virtuoso/vsp/ %files doc %defattr(-,root,root,-) %{_docdir}/virtuoso/ %files utils %defattr(-,root,root,-) %{_bindir}/virt_mail %{_libexecdir}/virtuoso/* %changelog * Fri Jul 24 2009 Rex Dieter 5.0.11-3 - BR: htmldoc - -doc subpkg * Sun Jun 07 2009 Rex Dieter 5.0.11-2 - omit remaining .la files - fix %%changelog - fix virtuoso.ini dangling symlink * Fri May 22 2009 Rex Dieter 5.0.11-1 - virtuoso-opensource-5.0.11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 20:07:12 -0000 1.1 +++ .cvsignore 27 Jul 2009 15:37:09 -0000 1.2 @@ -0,0 +1 @@ +virtuoso-opensource-5.0.11.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 20:07:12 -0000 1.1 +++ sources 27 Jul 2009 15:37:10 -0000 1.2 @@ -0,0 +1 @@ +9d5507b2a8d244c62f32f1203f10b9d1 virtuoso-opensource-5.0.11.tar.gz From rdieter at fedoraproject.org Mon Jul 27 15:37:48 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 27 Jul 2009 15:37:48 +0000 (UTC) Subject: rpms/virtuoso-opensource/F-10 virtuoso-opensource.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727153748.6E30F11C00E8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/virtuoso-opensource/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3230 Modified Files: .cvsignore sources Added Files: virtuoso-opensource.spec Log Message: import --- NEW FILE virtuoso-opensource.spec --- Name: virtuoso-opensource Version: 5.0.11 Release: 3%{?dist} Summary: A high-performance object-relational SQL database Group: Applications/Databases # see LICENSE for exception details License: GPLv2 with exceptions URL: http://virtuoso.sourceforge.net/ Source0: http://download.sourceforge.net/virtuoso/virtuoso-opensource-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: automake libtool BuildRequires: bison BuildRequires: flex BuildRequires: gperf BuildRequires: htmldoc ## when/if we ever decide to ship .jar's #BuildRequires: java-devel BuildRequires: openldap-devel BuildRequires: openssl-devel BuildRequires: libxml2-devel Provides: virtuoso = %{version}-%{release} %description Virtuoso is a scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality. %package apps Summary: Applications Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description apps %{summary}. %package conductor Summary: Server pages Group: Applications/Databases Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description conductor %{summary}. %package doc Summary: Documentation Group: Documentation Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description doc %{summary}. %package utils Summary: Utilities Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description utils %{summary}. %prep %setup -q -n virtuoso-opensource-%{version} %build # --with-debug avoids useless -debuginfo %configure \ --with-layout=redhat \ --enable-shared --disable-static \ --with-debug # smp busted make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/virtuoso mv %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini %{buildroot}%{_sysconfdir}/virtuoso/ ln -s ../../../..%{_sysconfdir}/virtuoso/virtuoso.ini %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini # generic'ish binaries, hide them away safely mkdir -p %{buildroot}%{_libexecdir}/virtuoso/ mv %{buildroot}%{_bindir}/{inifile,isql,isqlw} \ %{buildroot}%{_libexecdir}/virtuoso/ ## unpackaged files rm -vf %{buildroot}%{_libdir}/*.{la,a} rm -vf %{buildroot}%{_libdir}/virtuoso/hosting/*.la rm -vf %{buildroot}%{_libdir}/{jdbc-?.?,jena,sesame}/*.jar %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE %dir %{_sysconfdir}/virtuoso/ %config(noreplace) %{_sysconfdir}/virtuoso/virtuoso.ini %{_bindir}/virtuoso-t %{_libdir}/virt*.so %dir %{_datadir}/virtuoso/ %dir %{_datadir}/virtuoso/vad/ %dir %{_libdir}/virtuoso/ %dir %{_libexecdir}/virtuoso/ %dir %{_var}/lib/virtuoso %{_var}/lib/virtuoso/db/ %files apps %defattr(-,root,root,-) %{_libdir}/virtuoso/hosting/ %{_datadir}/virtuoso/vad/*.vad %exclude %{_datadir}/virtuoso/vad/conductor_dav.vad %files conductor %defattr(-,root,root,-) %{_datadir}/virtuoso/vad/conductor_dav.vad %{_var}/lib/virtuoso/vsp/ %files doc %defattr(-,root,root,-) %{_docdir}/virtuoso/ %files utils %defattr(-,root,root,-) %{_bindir}/virt_mail %{_libexecdir}/virtuoso/* %changelog * Fri Jul 24 2009 Rex Dieter 5.0.11-3 - BR: htmldoc - -doc subpkg * Sun Jun 07 2009 Rex Dieter 5.0.11-2 - omit remaining .la files - fix %%changelog - fix virtuoso.ini dangling symlink * Fri May 22 2009 Rex Dieter 5.0.11-1 - virtuoso-opensource-5.0.11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 20:07:12 -0000 1.1 +++ .cvsignore 27 Jul 2009 15:37:47 -0000 1.2 @@ -0,0 +1 @@ +virtuoso-opensource-5.0.11.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 20:07:12 -0000 1.1 +++ sources 27 Jul 2009 15:37:47 -0000 1.2 @@ -0,0 +1 @@ +9d5507b2a8d244c62f32f1203f10b9d1 virtuoso-opensource-5.0.11.tar.gz From jwrdegoede at fedoraproject.org Mon Jul 27 15:39:37 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Mon, 27 Jul 2009 15:39:37 +0000 (UTC) Subject: rpms/grub/devel grub.spec,1.103,1.104 Message-ID: <20090727153937.3453311C00E8@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/grub/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4208 Modified Files: grub.spec Log Message: * Mon Jul 27 2009 Hans de Goede - 0.97-57 - Fix building with new rpm (with auto buildroot cleaning) - Update Exclusive arch for F-12 i586 -> i686 change Index: grub.spec =================================================================== RCS file: /cvs/extras/rpms/grub/devel/grub.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- grub.spec 27 Jul 2009 14:26:40 -0000 1.103 +++ grub.spec 27 Jul 2009 15:39:35 -0000 1.104 @@ -1,11 +1,11 @@ Name: grub Version: 0.97 -Release: 56%{?dist} +Release: 57%{?dist} Summary: Grand Unified Boot Loader. Group: System Environment/Base License: GPLv2+ -ExclusiveArch: i586 x86_64 ia64 +ExclusiveArch: i686 x86_64 ia64 BuildRequires: binutils >= 2.9.1.0.23, ncurses-devel, ncurses-static, texinfo BuildRequires: autoconf /usr/lib/crt1.o automake BuildRequires: gnu-efi >= 3.0e-7 @@ -88,11 +88,7 @@ fi export CFLAGS %configure --sbindir=/sbin --disable-auto-linux-mem-opt --datarootdir=%{_datadir} --with-platform=efi make -rm -fr $RPM_BUILD_ROOT -%makeinstall sbindir=${RPM_BUILD_ROOT}/sbin -# is there a better way to do this? -mkdir -m 0755 -p ${RPM_BUILD_ROOT}/boot/efi/EFI/redhat/ -mv ${RPM_BUILD_ROOT}/%{_datadir}/grub/*/grub.efi ${RPM_BUILD_ROOT}/boot/efi/EFI/redhat/grub.efi +mv efi/grub.efi . make clean autoreconf autoconf @@ -102,8 +98,11 @@ export CFLAGS make %install +rm -fr $RPM_BUILD_ROOT %makeinstall sbindir=${RPM_BUILD_ROOT}/sbin mkdir -p ${RPM_BUILD_ROOT}/boot/grub +mkdir -m 0755 -p ${RPM_BUILD_ROOT}/boot/efi/EFI/redhat/ +install -m 755 grub.efi ${RPM_BUILD_ROOT}/boot/efi/EFI/redhat/grub.efi rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir @@ -138,6 +137,10 @@ fi %{_datadir}/grub %changelog +* Mon Jul 27 2009 Hans de Goede - 0.97-57 +- Fix building with new rpm (with auto buildroot cleaning) +- Update Exclusive arch for F-12 i586 -> i686 change + * Mon Jul 27 2009 Hans de Goede - 0.97-56 - Actually apply support for partitionable md devices patch (#503698) From pgf at fedoraproject.org Mon Jul 27 15:41:48 2009 From: pgf at fedoraproject.org (Paul Fox) Date: Mon, 27 Jul 2009 15:41:48 +0000 (UTC) Subject: rpms/olpc-powerd/devel import.log, NONE, 1.1 olpc-powerd.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727154148.6617E11C043D@cvs1.fedora.phx.redhat.com> Author: pgf Update of /cvs/pkgs/rpms/olpc-powerd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5619/devel Modified Files: .cvsignore sources Added Files: import.log olpc-powerd.spec Log Message: first import (8-1) of powerd --- NEW FILE import.log --- olpc-powerd-8-1:HEAD:olpc-powerd-8-1.src.rpm:1248709261 --- NEW FILE olpc-powerd.spec --- Summary: OLPC XO power management Name: olpc-powerd Version: 8 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/powerd/tree/powerd # Source0: the source tarball is created by "make tarball" from within # a clone of this git tree: git://dev.laptop.org/users/pgf/powerd Source0: olpc-powerd-8-gite8b44c6.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: kernel-headers Requires: olpc-kbdshim, upstart # these are all for the manipulation of ohmd -- powerd doesn't need them. Requires(post): chkconfig Requires(preun): chkconfig Requires(post): initscripts Requires(preun): initscripts # for F-9 rpms from teach, use ExclusiveArch: %{ix86} ExclusiveArch: i586 %description The powerd daemon can function as an easily customizable replacement for ohmd, which is independent of X, dbus, and hald. This package provides the powerd and olpc-switchd daemons, and related utilities. %prep %setup -q %build export OPT_FLAGS="$RPM_OPT_FLAGS" make %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/event.d mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/powerd mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/powerd/postresume.d %{__install} -p -m 755 olpc-switchd $RPM_BUILD_ROOT/%{_sbindir}/olpc-switchd %{__install} -p -m 755 powerd $RPM_BUILD_ROOT/%{_sbindir}/powerd %{__install} -p -m 755 pnmto565fb $RPM_BUILD_ROOT/%{_bindir}/pnmto565fb %{__install} -p -m 755 powerd-config $RPM_BUILD_ROOT/%{_bindir}/powerd-config %{__install} -p -m 644 olpc-switchd.upstart $RPM_BUILD_ROOT%{_sysconfdir}/event.d/olpc-switchd %{__install} -p -m 644 powerd.upstart $RPM_BUILD_ROOT%{_sysconfdir}/event.d/powerd %{__install} -p -m 644 pleaseconfirm.pgm $RPM_BUILD_ROOT%{_sysconfdir}/powerd/pleaseconfirm.pgm %{__install} -p -m 644 shuttingdown.pgm $RPM_BUILD_ROOT%{_sysconfdir}/powerd/shuttingdown.pgm %{__install} -p -m 644 powerd.conf.dist $RPM_BUILD_ROOT%{_sysconfdir}/powerd/powerd.conf %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING %{_sbindir}/olpc-switchd %{_sbindir}/powerd %{_bindir}/pnmto565fb %{_bindir}/powerd-config %config(noreplace) %{_sysconfdir}/event.d/olpc-switchd %config(noreplace) %{_sysconfdir}/event.d/powerd %config(noreplace) %{_sysconfdir}/powerd/pleaseconfirm.pgm %config(noreplace) %{_sysconfdir}/powerd/shuttingdown.pgm %config(noreplace) %{_sysconfdir}/powerd/powerd.conf %post # Only on install if [ $1 = 1 ] ; then if test -e /etc/init.d/ohmd ; then service ohmd stop >/dev/null 2>&1 chkconfig ohmd off fi initctl -q start powerd initctl -q start olpc-switchd fi exit 0 %preun # Only on uninstall if [ $1 = 0 ] ; then initctl stop -q olpc-switchd initctl stop -q powerd if test -e /etc/init.d/ohmd then /sbin/service ohmd start >/dev/null 2>&1 /sbin/chkconfig ohmd on fi fi exit 0 %postun # Restart after upgrade if [ "$1" -ge "1" ] ; then initctl stop -q olpc-switchd initctl stop -q powerd initctl start -q powerd initctl start -q olpc-switchd fi exit 0 %changelog * Fri Jul 17 2009 Paul Fox - 8-1 - incorporate package review fixups - commentary and powerd-config UI clarification - fix fatal bug when battery is missing * Fri Jul 6 2009 Paul Fox - 7-1 - no longer wake on AC events -- unnecessary - doc fixups * Thu Jun 11 2009 Paul Fox - 6-2 - utility targets in makefile * Sat Jun 6 2009 Paul Fox - 6-1 - various fixes - incorporate lessons from kbdshim review * Tue May 5 2009 Paul Fox - 5-1 - fixed ability to shut down with backlight off. oops. - various utility bug fixes (powerd-config, olpc-brightness) * Sun Apr 12 2009 Paul Fox - 4-1 - add control over sleep on lid-close - resync version numbers * Sat Apr 11 2009 Paul Fox - 3-3 - fixed powerd-config behavior wrt symlinked configs * Fri Apr 10 2009 Paul Fox - 3-2 - fix bugs, implement cpu idleness check, and add suspend inhibit mechanism * Tue Apr 7 2009 Paul Fox - 3-1 - convert to HAL-based operation * Thu Mar 19 2009 Paul Fox - 1-2 - fix rpmlint errors, move daemons to /usr/sbin Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:23:16 -0000 1.1 +++ .cvsignore 27 Jul 2009 15:41:46 -0000 1.2 @@ -0,0 +1 @@ +olpc-powerd-8-gite8b44c6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:23:16 -0000 1.1 +++ sources 27 Jul 2009 15:41:47 -0000 1.2 @@ -0,0 +1 @@ +fd551ab64727f7e4cab6ba3956ce7511 olpc-powerd-8-gite8b44c6.tar.gz From tagoh at fedoraproject.org Mon Jul 27 15:45:20 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Mon, 27 Jul 2009 15:45:20 +0000 (UTC) Subject: comps comps-f11.xml.in,1.274,1.275 comps-f12.xml.in,1.57,1.58 Message-ID: <20090727154520.8F97111C00E8@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10268 Modified Files: comps-f11.xml.in comps-f12.xml.in Log Message: * Add imsettings and im-chooser to Input Methods group. Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- comps-f11.xml.in 23 Jul 2009 15:01:50 -0000 1.274 +++ comps-f11.xml.in 27 Jul 2009 15:45:18 -0000 1.275 @@ -2965,6 +2965,8 @@ ibus-m17n ibus-pinyin ibus-rawcode + im-chooser + imsettings m17n-contrib-assamese m17n-contrib-bengali m17n-contrib-gujarati Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- comps-f12.xml.in 23 Jul 2009 15:01:50 -0000 1.57 +++ comps-f12.xml.in 27 Jul 2009 15:45:19 -0000 1.58 @@ -3091,6 +3091,8 @@ ibus-m17n ibus-pinyin ibus-rawcode + im-chooser + imsettings m17n-contrib-assamese m17n-contrib-bengali m17n-contrib-gujarati From liangsuilong at fedoraproject.org Mon Jul 27 15:48:19 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Mon, 27 Jul 2009 15:48:19 +0000 (UTC) Subject: rpms/perl-Goo-Canvas/devel perl-Goo-Canvas.spec,1.2,1.3 Message-ID: <20090727154819.EE5A211C00E8@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Goo-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9343 Modified Files: perl-Goo-Canvas.spec Log Message: Index: perl-Goo-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Goo-Canvas/devel/perl-Goo-Canvas.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Goo-Canvas.spec 26 Jul 2009 06:18:34 -0000 1.2 +++ perl-Goo-Canvas.spec 27 Jul 2009 15:48:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Goo-Canvas Version: 0.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to the GooCanvas License: GPL+ or Artistic Group: Development/Libraries @@ -14,7 +14,7 @@ BuildRequires: perl(Cairo) >= 1.00 BuildRequires: perl(ExtUtils::Depends) >= 0.2 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.0 -BuildRequires: perl(Glib) >= 1.103 +BuildRequires: perl(Glib::MakeHelper) >= 1.103 BuildRequires: perl(Gtk2) >= 1.100 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/* %changelog +* Sun Jul 27 2009 Liang Suilong 0.06-4 +- Change BuildRequires from perl(Glib) to perl(Glib::MakeHelper) + * Sat Jul 25 2009 Fedora Release Engineering - 0.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From tmraz at fedoraproject.org Mon Jul 27 15:48:45 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Mon, 27 Jul 2009 15:48:45 +0000 (UTC) Subject: rpms/pam/devel pam-1.1.0-cracklib-authtok.patch,1.1,1.2 Message-ID: <20090727154845.6127C11C00E8@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/pam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9439 Modified Files: pam-1.1.0-cracklib-authtok.patch Log Message: - fix malformed patch pam-1.1.0-cracklib-authtok.patch: pam_cracklib.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: pam-1.1.0-cracklib-authtok.patch =================================================================== RCS file: /cvs/pkgs/rpms/pam/devel/pam-1.1.0-cracklib-authtok.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pam-1.1.0-cracklib-authtok.patch 27 Jul 2009 15:23:22 -0000 1.1 +++ pam-1.1.0-cracklib-authtok.patch 27 Jul 2009 15:48:43 -0000 1.2 @@ -1,7 +1,11 @@ -Reset the new authtok if weak. +Index: modules/pam_cracklib/pam_cracklib.c +=================================================================== +RCS file: /cvsroot/pam/Linux-PAM/modules/pam_cracklib/pam_cracklib.c,v +retrieving revision 1.33 +retrieving revision 1.34 diff -u -p -r1.33 -r1.34 ---- modules/pam_cracklib/pam_cracklib.c 11 Dec 2008 19:41:49 -0000 1.33 -+++ modules/pam_cracklib/pam_cracklib.c 21 Jul 2009 13:59:24 -0000 1.34 +--- Linux-PAM/modules/pam_cracklib/pam_cracklib.c 11 Dec 2008 19:41:49 -0000 1.33 ++++ Linux-PAM/modules/pam_cracklib/pam_cracklib.c 21 Jul 2009 13:59:24 -0000 1.34 @@ -545,7 +545,7 @@ static int _pam_unix_approve_pass(pam_ha const char *pass_new) { @@ -18,21 +22,21 @@ diff -u -p -r1.33 -r1.34 - retval = pam_get_item(pamh, PAM_USER, &user); + retval = pam_get_user(pamh, &user, NULL); if (retval != PAM_SUCCESS || user == NULL) { - if (ctrl & PAM_DEBUG_ARG) - pam_syslog(pamh,LOG_ERR,"Can not get username"); + if (ctrl & PAM_DEBUG_ARG) + pam_syslog(pamh,LOG_ERR,"Can not get username"); @@ -658,6 +658,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand - pam_error (pamh, _("BAD PASSWORD: %s"), crack_msg); - if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) - { -+ pam_set_item (pamh, PAM_AUTHTOK, NULL); - retval = PAM_AUTHTOK_ERR; - continue; - } + pam_error (pamh, _("BAD PASSWORD: %s"), crack_msg); + if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) + { ++ pam_set_item (pamh, PAM_AUTHTOK, NULL); + retval = PAM_AUTHTOK_ERR; + continue; + } @@ -670,6 +671,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand - if (retval != PAM_SUCCESS) { - if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) - { -+ pam_set_item(pamh, PAM_AUTHTOK, NULL); - retval = PAM_AUTHTOK_ERR; - continue; - } + if (retval != PAM_SUCCESS) { + if (getuid() || (flags & PAM_CHANGE_EXPIRED_AUTHTOK)) + { ++ pam_set_item(pamh, PAM_AUTHTOK, NULL); + retval = PAM_AUTHTOK_ERR; + continue; + } From jdieter at fedoraproject.org Mon Jul 27 15:44:01 2009 From: jdieter at fedoraproject.org (Jonathan Dieter) Date: Mon, 27 Jul 2009 15:44:01 +0000 (UTC) Subject: rpms/deltarpm/devel import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 deltarpm.spec, 1.19, 1.20 sources, 1.3, 1.4 deltarpm-3.4-multilib-include-colored.patch, 1.1, NONE deltarpm-3.4-multilib-workaround.patch, 1.1, NONE deltarpm-3.4-prelink-bugfix.patch, 1.2, NONE deltarpm-3.4-sha256.patch, 1.2, NONE deltarpm-3.4-skipmd5.patch, 1.1, NONE Message-ID: <20090727154401.50E1A11C00E8@cvs1.fedora.phx.redhat.com> Author: jdieter Update of /cvs/extras/rpms/deltarpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7244/devel Modified Files: .cvsignore deltarpm.spec sources Added Files: import.log Removed Files: deltarpm-3.4-multilib-include-colored.patch deltarpm-3.4-multilib-workaround.patch deltarpm-3.4-prelink-bugfix.patch deltarpm-3.4-sha256.patch deltarpm-3.4-skipmd5.patch Log Message: Update to git upstream; has xz support --- NEW FILE import.log --- deltarpm-3_5-0_git_20090727_fc11:HEAD:deltarpm-3.5-0.git.20090727.fc11.src.rpm:1248709382 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 6 Mar 2007 16:53:01 -0000 1.3 +++ .cvsignore 27 Jul 2009 15:44:00 -0000 1.4 @@ -1 +1 @@ -deltarpm-3.4.tar.bz2 +deltarpm-git-20090727.tar.bz2 Index: deltarpm.spec =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/deltarpm.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- deltarpm.spec 24 Jul 2009 20:08:39 -0000 1.19 +++ deltarpm.spec 27 Jul 2009 15:44:00 -0000 1.20 @@ -1,21 +1,15 @@ Summary: Create deltas between rpms Name: deltarpm -Version: 3.4 -Release: 17%{?dist} +Version: 3.5 +Release: 0.git.20090727%{?dist} License: BSD Group: System Environment/Base -URL: http://www.novell.com/products/linuxpackages/professional/deltarpm.html +URL: http://gitorious.org/deltarpm/deltarpm -Source: ftp://ftp.suse.com/pub/projects/%{name}/%{name}-%{version}.tar.bz2 +Source: ftp://ftp.suse.com/pub/projects/%{name}/%{name}-git-20090727.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: bzip2-devel, rpm-devel, popt-devel - -Patch0: deltarpm-3.4-multilib-workaround.patch -Patch1: deltarpm-3.4-multilib-include-colored.patch -Patch2: deltarpm-3.4-prelink-bugfix.patch -Patch3: deltarpm-3.4-skipmd5.patch -Patch4: deltarpm-3.4-sha256.patch +BuildRequires: bzip2-devel, xz-devel, rpm-devel, popt-devel %description A deltarpm contains the difference between an old @@ -33,12 +27,7 @@ This package contains a tool to sync a f deltarpms. %prep -%setup -q -%patch0 -p0 -b .multilib -%patch1 -p1 -b .multicolor -%patch2 -p1 -b .prelink -%patch3 -p1 -b .skipmd5 -%patch4 -p1 -b .sha256 +%setup -q -n %{name}-git-20090727 %build %{__make} %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \ @@ -72,6 +61,13 @@ deltarpms. %{_bindir}/drpmsync %changelog +* Mon Jul 27 2009 Jonathan Dieter - 3.5-0.git.20090727 +- Update to current upstream git repository +- Add upstream xz compression support +- Drop all patches (they're now in upstream) +- Fix spelling mistakes (#505713) +- Fix url error (#506179) + * Fri Jul 24 2009 Fedora Release Engineering - 3.4-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Mar 2007 16:53:01 -0000 1.3 +++ sources 27 Jul 2009 15:44:01 -0000 1.4 @@ -1 +1 @@ -cac779a18a1bc256fb6497526a83ac82 deltarpm-3.4.tar.bz2 +ad634f985497e3158202c78865d94d84 deltarpm-git-20090727.tar.bz2 --- deltarpm-3.4-multilib-include-colored.patch DELETED --- --- deltarpm-3.4-multilib-workaround.patch DELETED --- --- deltarpm-3.4-prelink-bugfix.patch DELETED --- --- deltarpm-3.4-sha256.patch DELETED --- --- deltarpm-3.4-skipmd5.patch DELETED --- From s4504kr at fedoraproject.org Mon Jul 27 16:04:10 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 27 Jul 2009 16:04:10 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.7,1.8 Message-ID: <20090727160410.38D0E11C00E8@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17249 Modified Files: ghc-editline.spec Log Message: Rebuild Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ghc-editline.spec 25 Jul 2009 00:03:58 -0000 1.7 +++ ghc-editline.spec 27 Jul 2009 16:04:08 -0000 1.8 @@ -128,6 +128,9 @@ fi %endif %Changelog +* Mon Jul 27 2009 Jochen Schmitt 0.2.1.0-9 +- Rebuild + * Thu Jul 23 2009 Jochen Schmitt 0.2.1.0-8 - Fix typo in Requires(post) From s4504kr at fedoraproject.org Mon Jul 27 16:05:08 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 27 Jul 2009 16:05:08 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.8,1.9 Message-ID: <20090727160508.E0F1F11C00E8@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17889 Modified Files: ghc-editline.spec Log Message: Bump release Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ghc-editline.spec 27 Jul 2009 16:04:08 -0000 1.8 +++ ghc-editline.spec 27 Jul 2009 16:05:08 -0000 1.9 @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -128,7 +128,7 @@ fi %endif %Changelog -* Mon Jul 27 2009 Jochen Schmitt 0.2.1.0-9 +* Mon Jul 27 2009 Jochen Schmitt 0.2.1.0-10 - Rebuild * Thu Jul 23 2009 Jochen Schmitt 0.2.1.0-8 From twoerner at fedoraproject.org Mon Jul 27 16:12:31 2009 From: twoerner at fedoraproject.org (Thomas Woerner) Date: Mon, 27 Jul 2009 16:12:31 +0000 (UTC) Subject: rpms/system-config-firewall/devel .cvsignore, 1.28, 1.29 sources, 1.31, 1.32 system-config-firewall.spec, 1.43, 1.44 Message-ID: <20090727161231.38FE311C00E8@cvs1.fedora.phx.redhat.com> Author: twoerner Update of /cvs/pkgs/rpms/system-config-firewall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21504 Modified Files: .cvsignore sources system-config-firewall.spec Log Message: New version 1.2.17 with lots of bug fixes and changes - see spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-firewall/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 15 Apr 2009 08:34:40 -0000 1.28 +++ .cvsignore 27 Jul 2009 16:12:30 -0000 1.29 @@ -1,3 +1,4 @@ system-config-firewall-1.2.14.tar.bz2 system-config-firewall-1.2.15.tar.bz2 system-config-firewall-1.2.16.tar.bz2 +system-config-firewall-1.2.17.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-firewall/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 15 Apr 2009 08:34:40 -0000 1.31 +++ sources 27 Jul 2009 16:12:30 -0000 1.32 @@ -1 +1 @@ -3ee22c42c95cef53564db30285aaf1b9 system-config-firewall-1.2.16.tar.bz2 +07ba9d7855ebc06a9145ae9d4ed2dcaa system-config-firewall-1.2.17.tar.bz2 Index: system-config-firewall.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-firewall/devel/system-config-firewall.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- system-config-firewall.spec 27 Jul 2009 05:22:40 -0000 1.43 +++ system-config-firewall.spec 27 Jul 2009 16:12:30 -0000 1.44 @@ -1,7 +1,7 @@ Summary: A graphical interface for basic firewall setup Name: system-config-firewall -Version: 1.2.16 -Release: 3%{?dist} +Version: 1.2.17 +Release: 1%{?dist} URL: http://fedorahosted.org/system-config-firewall License: GPLv2+ ExclusiveOS: Linux @@ -119,6 +119,19 @@ fi %ghost %config(missingok,noreplace) /etc/sysconfig/system-config-firewall %changelog +* Mon Jul 27 2009 Thomas Woerner 1.2.17-1 +- Added Red Hat Cluster Suite to trusted services (rhbz#493668) +- Fixed wrong patch for system-config-firewall-tui (rhbz#461046) +- Fixed sysctl parser to also support ';' for comments +- Fixed port range check for service names containing '-' +- New column in serviceView for conntrack helper, removed from tooltip +- New column in icmpView for protocol types, removed from tooltip +- Added TFTP and TFTP client support (rhbz#494417) +- Fixed sensitiveness of OK button in portDialog if editing an Port + (rhbz#500380) +- Added missing tooltips for buttons in mainNotebook tabs. (rhbz#493872) +- updated po files + * Sun Jul 26 2009 Fedora Release Engineering - 1.2.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mcrha at fedoraproject.org Mon Jul 27 16:13:16 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Mon, 27 Jul 2009 16:13:16 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.117, 1.118 evolution.spec, 1.405, 1.406 sources, 1.117, 1.118 evolution-2.27.3-pst-import.patch, 1.1, NONE evolution-2.27.4-gmount-deprecation.patch, 1.1, NONE Message-ID: <20090727161316.D3E8511C00E8@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22122 Modified Files: .cvsignore evolution.spec sources Removed Files: evolution-2.27.3-pst-import.patch evolution-2.27.4-gmount-deprecation.patch Log Message: * Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 - Update to 2.27.5 - Remove pst import plugin patch (fixed upstream). - Remove work around deprecation of g_mount_unmount (fixed upstream). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- .cvsignore 13 Jul 2009 14:32:46 -0000 1.117 +++ .cvsignore 27 Jul 2009 16:13:14 -0000 1.118 @@ -1 +1 @@ -evolution-2.27.4.tar.bz2 +evolution-2.27.5.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.405 retrieving revision 1.406 diff -u -p -r1.405 -r1.406 --- evolution.spec 24 Jul 2009 22:22:08 -0000 1.405 +++ evolution.spec 27 Jul 2009 16:13:14 -0000 1.406 @@ -42,8 +42,8 @@ ### Abstract ### Name: evolution -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -66,12 +66,6 @@ Patch11: evolution-2.5.4-fix-conduit-dir # RH bug #176400 Patch12: evolution-2.9.1-im-context-reset.patch -# Let the pst-import plugin work with current libpst. -Patch14: evolution-2.27.3-pst-import.patch - -# Work around deprecation of g_mount_unmount(). -Patch15: evolution-2.27.4-gmount-deprecation.patch - ## Dependencies ### Requires(post): GConf2 @@ -245,8 +239,6 @@ This package contains the plugin to impo %patch10 -p1 -b .ldaphack %patch11 -p1 -b .fix-conduit-dir %patch12 -p1 -b .im-context-reset -%patch14 -p1 -b .pst-import -%patch15 -p1 -b .gmount-deprecation mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -701,6 +693,11 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 +- Update to 2.27.5 +- Remove pst import plugin patch (fixed upstream). +- Remove work around deprecation of g_mount_unmount (fixed upstream). + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- sources 13 Jul 2009 14:32:47 -0000 1.117 +++ sources 27 Jul 2009 16:13:15 -0000 1.118 @@ -1 +1 @@ -4fc469d16b3fe8eefbb313f83f7a3f74 evolution-2.27.4.tar.bz2 +d8af57356e5dd818a419b9b5042f24d7 evolution-2.27.5.tar.bz2 --- evolution-2.27.3-pst-import.patch DELETED --- --- evolution-2.27.4-gmount-deprecation.patch DELETED --- From pkgdb at fedoraproject.org Mon Jul 27 16:37:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:37:23 +0000 Subject: [pkgdb] geany: dmaphy has requested watchbugzilla Message-ID: <20090727163723.8A23510F897@bastion2.fedora.phx.redhat.com> dmaphy has requested the watchbugzilla acl on geany (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:37:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:37:35 +0000 Subject: [pkgdb] geany: dmaphy has requested commit Message-ID: <20090727163736.1751F10F899@bastion2.fedora.phx.redhat.com> dmaphy has requested the commit acl on geany (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:38:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:38:18 +0000 Subject: [pkgdb] geany: dmaphy has requested commit Message-ID: <20090727163819.1105510F890@bastion2.fedora.phx.redhat.com> dmaphy has requested the commit acl on geany (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:32 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164032.723D610F899@bastion2.fedora.phx.redhat.com> jgu has set the commit acl on geany (Fedora devel) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:33 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164033.3276C10F89F@bastion2.fedora.phx.redhat.com> jgu has set the watchcommits acl on geany (Fedora devel) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From mtasaka at fedoraproject.org Mon Jul 27 16:40:44 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Mon, 27 Jul 2009 16:40:44 +0000 (UTC) Subject: rpms/ochusha/devel .cvsignore, 1.74, 1.75 ochusha.spec, 1.103, 1.104 sources, 1.74, 1.75 ochusha-0.5.99.66-cvs070110-disable-lock-check.patch, 1.1, NONE ochusha-build-20081207T0000.diff, 1.1, NONE ochusha-cvs20081105T0045-ja.po.patch, 1.1, NONE ochusha-head-g++44-02.diff, 1.1, NONE ochusha-head-g++44.patch, 1.1, NONE Message-ID: <20090727164044.C25B211C043D@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ochusha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3893 Modified Files: .cvsignore ochusha.spec sources Removed Files: ochusha-0.5.99.66-cvs070110-disable-lock-check.patch ochusha-build-20081207T0000.diff ochusha-cvs20081105T0045-ja.po.patch ochusha-head-g++44-02.diff ochusha-head-g++44.patch Log Message: * Mon Jul 27 2009 Mamoru Tasaka - rev 2989 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ochusha/devel/.cvsignore,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- .cvsignore 12 Apr 2009 16:23:07 -0000 1.74 +++ .cvsignore 27 Jul 2009 16:40:43 -0000 1.75 @@ -1 +1 @@ -ochusha-0.6.0.1-cvs20090413T0000.tar.bz2 +ochusha-0.6.0.1-cvs20090728T0130.tar.bz2 Index: ochusha.spec =================================================================== RCS file: /cvs/extras/rpms/ochusha/devel/ochusha.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- ochusha.spec 24 Jul 2009 19:06:59 -0000 1.103 +++ ochusha.spec 27 Jul 2009 16:40:44 -0000 1.104 @@ -16,8 +16,8 @@ %define help_url file://%{_docdir}/%{name}-%{version}/doc/index.html %define main_ver 0.6.0.1 -%define codate 20090413 -%define cotime_JST 0000 +%define codate 20090728 +%define cotime_JST 0130 %define strtag cvs%{codate}T%{cotime_JST} %define repoid 36733 @@ -220,6 +220,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/48x48/apps/*.png %changelog +* Tue Jul 28 2009 Mamoru Tasaka +- Update to the latest trunk + * Sat Jul 25 2009 Mamoru Tasaka - F-12: Mass rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/ochusha/devel/sources,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sources 12 Apr 2009 16:23:07 -0000 1.74 +++ sources 27 Jul 2009 16:40:44 -0000 1.75 @@ -1 +1 @@ -554a3f33e8c86fc4b5fff30353e0aee4 ochusha-0.6.0.1-cvs20090413T0000.tar.bz2 +9bcaadd376d30999144fbab4c485b854 ochusha-0.6.0.1-cvs20090728T0130.tar.bz2 --- ochusha-0.5.99.66-cvs070110-disable-lock-check.patch DELETED --- --- ochusha-build-20081207T0000.diff DELETED --- --- ochusha-cvs20081105T0045-ja.po.patch DELETED --- --- ochusha-head-g++44-02.diff DELETED --- --- ochusha-head-g++44.patch DELETED --- From pkgdb at fedoraproject.org Mon Jul 27 16:40:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:35 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164035.971CA10F8B6@bastion2.fedora.phx.redhat.com> jgu has set the watchbugzilla acl on geany (Fedora devel) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:46 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164046.1CD9810F8B9@bastion2.fedora.phx.redhat.com> jgu has set the watchbugzilla acl on geany (Fedora 10) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:46 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164046.2B8CC10F8BD@bastion2.fedora.phx.redhat.com> jgu has set the watchcommits acl on geany (Fedora 10) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:47 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164047.6A01010F8C1@bastion2.fedora.phx.redhat.com> jgu has set the commit acl on geany (Fedora 10) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:55 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164055.D4E4610F899@bastion2.fedora.phx.redhat.com> jgu has set the watchbugzilla acl on geany (Fedora 11) to Obsolete for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:40:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:40:59 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164059.B925510F8C6@bastion2.fedora.phx.redhat.com> jgu has set the watchbugzilla acl on geany (Fedora 11) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:41:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:41:00 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164100.6BAB410F8CA@bastion2.fedora.phx.redhat.com> jgu has set the watchcommits acl on geany (Fedora 11) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From pkgdb at fedoraproject.org Mon Jul 27 16:41:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:41:02 +0000 Subject: [pkgdb] geany had acl change status Message-ID: <20090727164102.3849B10F8CE@bastion2.fedora.phx.redhat.com> jgu has set the commit acl on geany (Fedora 11) to Approved for dmaphy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From rhughes at fedoraproject.org Mon Jul 27 16:45:48 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 27 Jul 2009 16:45:48 +0000 (UTC) Subject: rpms/hal/devel .cvsignore, 1.63, 1.64 hal.spec, 1.198, 1.199 sources, 1.65, 1.66 hal-fix-udev-dir.patch, 1.1, NONE Message-ID: <20090727164548.1DA0211C00E8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7374 Modified Files: .cvsignore hal.spec sources Removed Files: hal-fix-udev-dir.patch Log Message: * Mon Jul 27 2009 Richard Hughes - 0.5.13-1 - Use the release tarball, we did have a release against all the odds. - Drop upstreamed patches Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 26 Feb 2009 11:46:11 -0000 1.63 +++ .cvsignore 27 Jul 2009 16:45:47 -0000 1.64 @@ -1 +1 @@ -hal-0.5.12-20090226git.tar.gz +hal-0.5.13.tar.gz Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.198 retrieving revision 1.199 diff -u -p -r1.198 -r1.199 --- hal.spec 25 Jul 2009 05:17:39 -0000 1.198 +++ hal.spec 27 Jul 2009 16:45:47 -0000 1.199 @@ -19,18 +19,18 @@ %define consolekit_version 0.2.0 %define acl_version 2.2.39 %define gperf_version 3.0.1 -%define alphatag 20090226git +#%define alphatag 20090226git %define hal_user_uid 68 Summary: Hardware Abstraction Layer Name: hal -Version: 0.5.12 -#Release: 14%{?dist} -Release: 28.%{?alphatag}%{?dist}.4 +Version: 0.5.13 +Release: 1%{?dist} +#Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal -#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}rc1.tar.bz2 -Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz +Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz +#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz # OLPC specific, not upstream as is a hack until OFW lands Source1: 05-olpc-detect.fdi @@ -44,9 +44,6 @@ Patch4: hal-remove-dell-killswitch.patch Patch7: hal-tablet-evdev.patch -# upstream -Patch8: hal-fix-udev-dir.patch - # http://lists.freedesktop.org/archives/hal/2009-March/013125.html Patch9: hal-KVM-evdev.patch @@ -147,7 +144,6 @@ API docs for HAL. %patch3 -p1 -b .keys %patch4 -p1 -b .dell-killswitch %patch7 -p1 -b .tablet-evdev -%patch8 -p1 -b .fix-udev %patch9 -p1 -b .kvm-evdev %patch10 -p1 -b .blkid %patch11 -p1 -b .hdaps-blacklist @@ -291,6 +287,10 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Mon Jul 27 2009 Richard Hughes - 0.5.13-1 +- Use the release tarball, we did have a release against all the odds. +- Drop upstreamed patches + * Sat Jul 25 2009 Peter Hutterer - 0.5.12-28.20090226git.4 - hal-HDAPS-blacklist.patch: blacklist Thinkpad HDAPS accelerometer device, it screws with X (FDO #22442). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 26 Feb 2009 11:46:11 -0000 1.65 +++ sources 27 Jul 2009 16:45:47 -0000 1.66 @@ -1 +1 @@ -657240028e6119fe3b15340265b43357 hal-0.5.12-20090226git.tar.gz +46ecc5d2e5bd964fb78099688f01bb6a hal-0.5.13.tar.gz --- hal-fix-udev-dir.patch DELETED --- From spot at fedoraproject.org Mon Jul 27 16:39:49 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 16:39:49 +0000 (UTC) Subject: rpms/c-ares/devel c-ares-1.6.0-optflags.patch, NONE, 1.1 c-ares.spec, 1.16, 1.17 Message-ID: <20090727163949.E14FF11C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3274/devel Modified Files: c-ares.spec Added Files: c-ares-1.6.0-optflags.patch Log Message: fix bz 513776 c-ares-1.6.0-optflags.patch: configure | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) --- NEW FILE c-ares-1.6.0-optflags.patch --- diff -up c-ares-1.6.0/configure~ c-ares-1.6.0/configure --- c-ares-1.6.0/configure~ 2008-12-10 00:31:08.000000000 +0200 +++ c-ares-1.6.0/configure 2009-07-25 20:26:11.000000000 +0300 @@ -14950,7 +14950,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14966,7 +14966,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14982,12 +14982,12 @@ echo "$as_me: WARNING: compiler options if test "$want_debug" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts debug enabling options" >&5 echo $ECHO_N "checking if compiler accepts debug enabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_yes" + tmp_options="" fi if test "$want_debug" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts debug disabling options" >&5 echo $ECHO_N "checking if compiler accepts debug disabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_off" + tmp_options="" fi # CPPFLAGS="$tmp_CPPFLAGS" @@ -15221,7 +15221,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15239,7 +15239,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CPPFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15270,7 +15270,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15286,7 +15286,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15301,12 +15301,12 @@ echo "${ECHO_T}$honor_optimize_option" > if test "$want_optimize" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer enabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer enabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_yes" + tmp_options="" fi if test "$want_optimize" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer disabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer disabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_off" + tmp_options="" fi CPPFLAGS="$tmp_CPPFLAGS" CFLAGS="$tmp_CFLAGS $tmp_options" Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/devel/c-ares.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- c-ares.spec 24 Jul 2009 18:33:34 -0000 1.16 +++ c-ares.spec 27 Jul 2009 16:39:49 -0000 1.17 @@ -1,12 +1,13 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares Version: 1.6.0 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries -URL: http://daniel.haxx.se/projects/c-ares/ -Source0: http://daniel.haxx.se/projects/c-ares/c-ares-%{version}.tar.gz +URL: http://c-ares.haxx.se/ +Source0: http://c-ares.haxx.se/c-ares-%{version}.tar.gz Source1: LICENSE +Patch0: %{name}-1.6.0-optflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -26,17 +27,19 @@ compile applications or shared objects t %prep %setup -q +%patch0 -p1 -b .optflags cp %{SOURCE1} . +f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f %build -%configure --enable-shared +%configure --enable-shared --disable-static \ + --disable-dependency-tracking %{__make} %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.la -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.a +rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la %clean rm -rf $RPM_BUILD_ROOT @@ -59,6 +62,14 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Sat Jul 25 2009 Ville Skytt? - 1.6.0-3 +- Patch to make upstream build system honor our CFLAGS and friends. +- Don't bother building throwaway static libs. +- Disable autotools dependency tracking for cleaner build logs and possible + slight build speedup. +- Convert docs to UTF-8. +- Update URLs. + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Mon Jul 27 16:39:49 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 16:39:49 +0000 (UTC) Subject: rpms/c-ares/F-10 c-ares-1.6.0-optflags.patch, NONE, 1.1 c-ares.spec, 1.14, 1.15 Message-ID: <20090727163949.54CD011C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3274/F-10 Modified Files: c-ares.spec Added Files: c-ares-1.6.0-optflags.patch Log Message: fix bz 513776 c-ares-1.6.0-optflags.patch: configure | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) --- NEW FILE c-ares-1.6.0-optflags.patch --- diff -up c-ares-1.6.0/configure~ c-ares-1.6.0/configure --- c-ares-1.6.0/configure~ 2008-12-10 00:31:08.000000000 +0200 +++ c-ares-1.6.0/configure 2009-07-25 20:26:11.000000000 +0300 @@ -14950,7 +14950,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14966,7 +14966,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14982,12 +14982,12 @@ echo "$as_me: WARNING: compiler options if test "$want_debug" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts debug enabling options" >&5 echo $ECHO_N "checking if compiler accepts debug enabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_yes" + tmp_options="" fi if test "$want_debug" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts debug disabling options" >&5 echo $ECHO_N "checking if compiler accepts debug disabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_off" + tmp_options="" fi # CPPFLAGS="$tmp_CPPFLAGS" @@ -15221,7 +15221,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15239,7 +15239,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CPPFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15270,7 +15270,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15286,7 +15286,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15301,12 +15301,12 @@ echo "${ECHO_T}$honor_optimize_option" > if test "$want_optimize" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer enabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer enabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_yes" + tmp_options="" fi if test "$want_optimize" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer disabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer disabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_off" + tmp_options="" fi CPPFLAGS="$tmp_CPPFLAGS" CFLAGS="$tmp_CFLAGS $tmp_options" Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-10/c-ares.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- c-ares.spec 22 Jul 2009 22:54:49 -0000 1.14 +++ c-ares.spec 27 Jul 2009 16:39:48 -0000 1.15 @@ -1,12 +1,13 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares Version: 1.6.0 -Release: 1%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries -URL: http://daniel.haxx.se/projects/c-ares/ -Source0: http://daniel.haxx.se/projects/c-ares/c-ares-%{version}.tar.gz +URL: http://c-ares.haxx.se/ +Source0: http://c-ares.haxx.se/c-ares-%{version}.tar.gz Source1: LICENSE +Patch0: %{name}-1.6.0-optflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -26,17 +27,19 @@ compile applications or shared objects t %prep %setup -q +%patch0 -p1 -b .optflags cp %{SOURCE1} . +f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f %build -%configure --enable-shared +%configure --enable-shared --disable-static \ + --disable-dependency-tracking %{__make} %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.la -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.a +rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la %clean rm -rf $RPM_BUILD_ROOT @@ -59,6 +62,17 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Sat Jul 25 2009 Ville Skytt? - 1.6.0-3 +- Patch to make upstream build system honor our CFLAGS and friends. +- Don't bother building throwaway static libs. +- Disable autotools dependency tracking for cleaner build logs and possible + slight build speedup. +- Convert docs to UTF-8. +- Update URLs. + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 - update to 1.6.0 From spot at fedoraproject.org Mon Jul 27 16:39:49 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 16:39:49 +0000 (UTC) Subject: rpms/c-ares/F-11 c-ares-1.6.0-optflags.patch, NONE, 1.1 c-ares.spec, 1.15, 1.16 Message-ID: <20090727163949.A60EC11C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3274/F-11 Modified Files: c-ares.spec Added Files: c-ares-1.6.0-optflags.patch Log Message: fix bz 513776 c-ares-1.6.0-optflags.patch: configure | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) --- NEW FILE c-ares-1.6.0-optflags.patch --- diff -up c-ares-1.6.0/configure~ c-ares-1.6.0/configure --- c-ares-1.6.0/configure~ 2008-12-10 00:31:08.000000000 +0200 +++ c-ares-1.6.0/configure 2009-07-25 20:26:11.000000000 +0300 @@ -14950,7 +14950,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14966,7 +14966,7 @@ echo "$as_me: WARNING: compiler options ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_dbg_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -14982,12 +14982,12 @@ echo "$as_me: WARNING: compiler options if test "$want_debug" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts debug enabling options" >&5 echo $ECHO_N "checking if compiler accepts debug enabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_yes" + tmp_options="" fi if test "$want_debug" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts debug disabling options" >&5 echo $ECHO_N "checking if compiler accepts debug disabling options... $ECHO_C" >&6; } - tmp_options="$flags_dbg_off" + tmp_options="" fi # CPPFLAGS="$tmp_CPPFLAGS" @@ -15221,7 +15221,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15239,7 +15239,7 @@ echo $ECHO_N "checking if compiler optim ac_var_match_word="no" for word1 in $tmp_CPPFLAGS; do - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_match_word="yes" fi @@ -15270,7 +15270,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15286,7 +15286,7 @@ echo "${ECHO_T}$honor_optimize_option" > ac_var_stripped="" for word1 in $tmp_CPPFLAGS; do ac_var_strip_word="no" - for word2 in $flags_opt_all; do + for word2 in ""; do if test "$word1" = "$word2"; then ac_var_strip_word="yes" fi @@ -15301,12 +15301,12 @@ echo "${ECHO_T}$honor_optimize_option" > if test "$want_optimize" = "yes"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer enabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer enabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_yes" + tmp_options="" fi if test "$want_optimize" = "no"; then { echo "$as_me:$LINENO: checking if compiler accepts optimizer disabling options" >&5 echo $ECHO_N "checking if compiler accepts optimizer disabling options... $ECHO_C" >&6; } - tmp_options="$flags_opt_off" + tmp_options="" fi CPPFLAGS="$tmp_CPPFLAGS" CFLAGS="$tmp_CFLAGS $tmp_options" Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-11/c-ares.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- c-ares.spec 22 Jul 2009 22:54:50 -0000 1.15 +++ c-ares.spec 27 Jul 2009 16:39:49 -0000 1.16 @@ -1,12 +1,13 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares Version: 1.6.0 -Release: 1%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries -URL: http://daniel.haxx.se/projects/c-ares/ -Source0: http://daniel.haxx.se/projects/c-ares/c-ares-%{version}.tar.gz +URL: http://c-ares.haxx.se/ +Source0: http://c-ares.haxx.se/c-ares-%{version}.tar.gz Source1: LICENSE +Patch0: %{name}-1.6.0-optflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -26,17 +27,19 @@ compile applications or shared objects t %prep %setup -q +%patch0 -p1 -b .optflags cp %{SOURCE1} . +f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f %build -%configure --enable-shared +%configure --enable-shared --disable-static \ + --disable-dependency-tracking %{__make} %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.la -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libcares.a +rm -f $RPM_BUILD_ROOT/%{_libdir}/libcares.la %clean rm -rf $RPM_BUILD_ROOT @@ -59,6 +62,17 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Sat Jul 25 2009 Ville Skytt? - 1.6.0-3 +- Patch to make upstream build system honor our CFLAGS and friends. +- Don't bother building throwaway static libs. +- Disable autotools dependency tracking for cleaner build logs and possible + slight build speedup. +- Convert docs to UTF-8. +- Update URLs. + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 - update to 1.6.0 From mcrha at fedoraproject.org Mon Jul 27 16:52:42 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Mon, 27 Jul 2009 16:52:42 +0000 (UTC) Subject: rpms/evolution-exchange/devel .cvsignore, 1.45, 1.46 evolution-exchange.spec, 1.66, 1.67 sources, 1.45, 1.46 Message-ID: <20090727165242.78A1211C00E8@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-exchange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10796 Modified Files: .cvsignore evolution-exchange.spec sources Log Message: * Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 - Update to 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/.cvsignore,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- .cvsignore 13 Jul 2009 13:49:43 -0000 1.45 +++ .cvsignore 27 Jul 2009 16:52:42 -0000 1.46 @@ -1 +1 @@ -evolution-exchange-2.27.4.tar.bz2 +evolution-exchange-2.27.5.tar.bz2 Index: evolution-exchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/evolution-exchange.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- evolution-exchange.spec 24 Jul 2009 22:22:58 -0000 1.66 +++ evolution-exchange.spec 27 Jul 2009 16:52:42 -0000 1.67 @@ -17,8 +17,8 @@ ### Abstract ### Name: evolution-exchange -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Group: Applications/Productivity Summary: Evolution plugin to interact with MS Exchange Server License: GPLv2+ @@ -121,6 +121,9 @@ gconftool-2 --makefile-install-rule %{_s %{_sysconfdir}/gconf/schemas/apps_exchange_addressbook-%{evo_major}.schemas %changelog +* Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 13 Jul 2009 13:49:43 -0000 1.45 +++ sources 27 Jul 2009 16:52:42 -0000 1.46 @@ -1 +1 @@ -db9fbce92407af0af5a14c167c2b3e5c evolution-exchange-2.27.4.tar.bz2 +cec89cc72c2ce60dc2ce87aa6cbd4893 evolution-exchange-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Mon Jul 27 16:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 16:37:53 +0000 Subject: [pkgdb] geany: dmaphy has requested commit Message-ID: <20090727163753.971B410F89A@bastion2.fedora.phx.redhat.com> dmaphy has requested the commit acl on geany (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany From jgranado at fedoraproject.org Mon Jul 27 17:03:50 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Mon, 27 Jul 2009 17:03:50 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-swap-flag.patch, 1.1, 1.2 parted.spec, 1.141, 1.142 Message-ID: <20090727170350.2103211C00E8@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16152 Modified Files: parted-1.9.0-swap-flag.patch parted.spec Log Message: Add swap handling to the msdos labels. parted-1.9.0-swap-flag.patch: dos.c | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) Index: parted-1.9.0-swap-flag.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0-swap-flag.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parted-1.9.0-swap-flag.patch 10 Jul 2009 13:16:25 -0000 1.1 +++ parted-1.9.0-swap-flag.patch 27 Jul 2009 17:03:49 -0000 1.2 @@ -1,26 +1,125 @@ -From ae78428ae1bc521a11be60b6acdb511a6e7aee21 Mon Sep 17 00:00:00 2001 +From 2df065840eda1ac1fc99a31627ea0f06ca7a4ca7 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 18:34:46 +0200 -Subject: [PATCH] Use the swap flag. +Subject: [PATCH] Handle swap flag in msdos type labels. -* libparted/labels/dos.c (msdos_partition_set_flag): Set the partition -type if the user sets the swap flag. +* libparted/labels/dos.c (swap, raw_part_parse, msdos_partition_new) +(msdos_partition_duplicate, msdos_partition_set_system) +(msdos_partition_set_flag, msdos_partition_get_flag): Handle the swap +flag. Set the partition type if the user sets the swap flag. --- - libparted/labels/dos.c | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + libparted/labels/dos.c | 28 ++++++++++++++++++++++++++++ + 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c -index f219e7d..b4cd23a 100644 +index 7ec15ee..f8307c5 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c -@@ -1413,6 +1413,11 @@ msdos_partition_set_flag (PedPartition* part, +@@ -148,6 +148,7 @@ typedef struct { + int lba; + int palo; + int prep; ++ int swap; + OrigState* orig; /* used for CHS stuff */ + } DosPartitionData; + +@@ -818,6 +819,7 @@ raw_part_parse (const PedDisk* disk, const DosRawPartition* raw_part, + dos_data->lba = raw_part_is_lba (raw_part); + dos_data->palo = raw_part->type == PARTITION_PALO; + dos_data->prep = raw_part->type == PARTITION_PREP; ++ dos_data->swap = raw_part->type == PARTITION_LINUX_SWAP; + dos_data->orig = ped_malloc (sizeof (OrigState)); + if (!dos_data->orig) { + ped_partition_destroy (part); +@@ -1202,6 +1204,7 @@ msdos_partition_new (const PedDisk* disk, PedPartitionType part_type, + dos_data->lba = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } else { + part->disk_specific = NULL; + } +@@ -1237,6 +1240,7 @@ msdos_partition_duplicate (const PedPartition* part, PedDisk* disk) + new_dos_data->lba = old_dos_data->lba; + new_dos_data->palo = old_dos_data->palo; + new_dos_data->prep = old_dos_data->prep; ++ new_dos_data->swap = old_dos_data->swap; + + if (old_dos_data->orig) { + new_dos_data->orig = ped_malloc (sizeof (OrigState)); +@@ -1284,6 +1288,7 @@ msdos_partition_set_system (PedPartition* part, + dos_data->lvm = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + if (dos_data->lba) + dos_data->system = PARTITION_EXT_LBA; + else +@@ -1307,6 +1312,10 @@ msdos_partition_set_system (PedPartition* part, + dos_data->system = PARTITION_PREP; + return 1; + } ++ if (dos_data->swap) { ++ dos_data->system = PARTITION_LINUX_SWAP; ++ return 1; ++ } + + if (!fs_type) + dos_data->system = PARTITION_LINUX; +@@ -1379,6 +1388,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->lvm = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } + dos_data->raid = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1389,6 +1399,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->raid = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } + dos_data->lvm = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1402,6 +1413,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->hidden = 0; + dos_data->raid = 0; + dos_data->lvm = 0; ++ dos_data->swap = 0; + } + dos_data->palo = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1411,10 +1423,23 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->hidden = 0; + dos_data->raid = 0; + dos_data->lvm = 0; ++ dos_data->swap = 0; ++ dos_data->palo = 0; + } dos_data->prep = state; return ped_partition_set_system (part, part->fs_type); + case PED_PARTITION_SWAP: + if (state) { -+ return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); ++ dos_data->hidden = 0; ++ dos_data->raid = 0; ++ dos_data->lvm = 0; ++ dos_data->palo = 0; ++ dos_data->prep = 0; + } ++ dos_data->swap = state; ++ return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); ++ + default: + return 0; + } +@@ -1451,6 +1476,9 @@ msdos_partition_get_flag (const PedPartition* part, PedPartitionFlag flag) + case PED_PARTITION_PREP: + return dos_data->prep; + ++ case PED_PARTITION_SWAP: ++ return dos_data->swap; + default: return 0; Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.141 retrieving revision 1.142 diff -u -p -r1.141 -r1.142 --- parted.spec 25 Jul 2009 23:16:29 -0000 1.141 +++ parted.spec 27 Jul 2009 17:03:49 -0000 1.142 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -15,12 +15,12 @@ Patch2: %{name}-1.9.0-extended-mbr.patc Patch3: %{name}-1.9.0-noheaders.patch Patch4: %{name}-1.9.0-pop-push-error.patch Patch5: %{name}-1.9.0-no-cylinder-align.patch -Patch6: %{name}-1.9.0-swap-flag.patch -Patch7: %{name}-1.9.0-remove-struct-elem.patch -Patch8: %{name}-1.9.0-move-function-declarations.patch -Patch9: %{name}-1.9.0-dasd-duplicate.patch -Patch10: %{name}-1.9.0-new-duplicate.patch -Patch11: %{name}-1.9.0-handle-dup-error.patch +Patch6: %{name}-1.9.0-remove-struct-elem.patch +Patch7: %{name}-1.9.0-move-function-declarations.patch +Patch8: %{name}-1.9.0-dasd-duplicate.patch +Patch9: %{name}-1.9.0-new-duplicate.patch +Patch10: %{name}-1.9.0-handle-dup-error.patch +Patch11: %{name}-1.9.0-swap-flag.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -65,12 +65,12 @@ Parted library, you need to install this %patch3 -p1 -b .noheaders %patch4 -p1 -b .pop-push-error %patch5 -p1 -b .no-cylinder-align -%patch6 -p1 -b .swap-flag -%patch7 -p1 -b .remove-struct-elem -%patch8 -p1 -b .move-function-declarations -%patch9 -p1 -b .dasd-duplicate -%patch10 -p1 -b .new-duplicate -%patch11 -p1 -b .handle-dup-error +%patch6 -p1 -b .remove-struct-elem +%patch7 -p1 -b .move-function-declarations +%patch8 -p1 -b .dasd-duplicate +%patch9 -p1 -b .new-duplicate +%patch10 -p1 -b .handle-dup-error +%patch11 -p1 -b .swap-flag %build @@ -129,6 +129,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Mon Jul 27 2009 Joel Granados - 1.9.0-8 +- Add the swap flag to the dos type labels + * Sat Jul 25 2009 Fedora Release Engineering - 1.9.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rhughes at fedoraproject.org Mon Jul 27 17:05:29 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 27 Jul 2009 17:05:29 +0000 (UTC) Subject: rpms/PackageKit/devel .cvsignore, 1.49, 1.50 PackageKit.spec, 1.108, 1.109 sources, 1.50, 1.51 Message-ID: <20090727170529.CFD2F11C00E8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/PackageKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17094 Modified Files: .cvsignore PackageKit.spec sources Log Message: * Mon Jul 27 2009 Richard Hughes - 0.5.1-0.1.20090727git - Update to a git snapshot from the 0.5.x series. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 6 Jul 2009 10:52:16 -0000 1.49 +++ .cvsignore 27 Jul 2009 17:05:28 -0000 1.50 @@ -1 +1 @@ -PackageKit-0.5.0.tar.gz +PackageKit-0.5.1-20090727.tar.gz Index: PackageKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/PackageKit.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- PackageKit.spec 24 Jul 2009 15:44:03 -0000 1.108 +++ PackageKit.spec 27 Jul 2009 17:05:28 -0000 1.109 @@ -3,20 +3,20 @@ %define dbus_glib_version 0.74 %define polkit_version 0.92 %define libnm_glib_version 0.6.4 -%define alphatag 20090625 +%define alphatag 20090727 %{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Summary: Package management service Name: PackageKit -Version: 0.5.0 -#Release: 0.1.%{?alphatag}git%{?dist} -Release: 2%{?dist} +Version: 0.5.1 +Release: 0.1.%{?alphatag}git%{?dist} +#Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.packagekit.org -#Source0: http://www.packagekit.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz -Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.gz +Source0: http://www.packagekit.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz +#Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Fedora-specific: set Vendor.conf up for Fedora. @@ -162,13 +162,13 @@ Provides: PackageKit-devel = %{version}- GLib headers and libraries for PackageKit. %package qt-devel -Summary: QT Libraries and headers for PackageKit +Summary: Qt Libraries and headers for PackageKit Group: Development/Libraries Requires: %{name}-qt = %{version}-%{release} Requires: pkgconfig %description qt-devel -QT headers and libraries for PackageKit. +Qt headers and libraries for PackageKit. %package backend-devel Summary: Headers to compile out of tree PackageKit backends @@ -223,8 +223,8 @@ A simple helper that offers to install n using PackageKit. %prep -#%setup -q -n %{?name}-%{?version}-%{?alphatag} -%setup -q +%setup -q -n %{?name}-%{?version}-%{?alphatag} +#%setup -q %patch0 -p1 -b .fedora %patch1 -p1 -b .no-time @@ -365,7 +365,7 @@ update-mime-database %{_datadir}/mime &> %files debuginfo-install %defattr(-,root,root,-) %doc README AUTHORS NEWS COPYING -%{_libexecdir}/pk-debuginfo-install +%{_bindir}/pk-debuginfo-install %{_datadir}/man/man1/pk-debuginfo-install.1.gz %files browser-plugin @@ -418,6 +418,9 @@ update-mime-database %{_datadir}/mime &> %{_includedir}/PackageKit/backend/*.h %changelog +* Mon Jul 27 2009 Richard Hughes - 0.5.1-0.1.20090727git +- Update to a git snapshot from the 0.5.x series. + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 6 Jul 2009 10:52:16 -0000 1.50 +++ sources 27 Jul 2009 17:05:29 -0000 1.51 @@ -1 +1 @@ -e4d442646be7a3a71ed3970ad551a645 PackageKit-0.5.0.tar.gz +04055d452789d1026767466b8ff2813b PackageKit-0.5.1-20090727.tar.gz From rhughes at fedoraproject.org Mon Jul 27 17:05:33 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 27 Jul 2009 17:05:33 +0000 (UTC) Subject: rpms/gnome-packagekit/devel .cvsignore, 1.50, 1.51 gnome-packagekit.spec, 1.92, 1.93 sources, 1.51, 1.52 gnome-packagekit-port-to-polkit1.patch, 1.3, NONE Message-ID: <20090727170533.C31B711C00E8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-packagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17198 Modified Files: .cvsignore gnome-packagekit.spec sources Removed Files: gnome-packagekit-port-to-polkit1.patch Log Message: * Mon Jul 27 2009 Richard Hughes - 2.27.4-0.1.20090727git - Update to latest git master snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/.cvsignore,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- .cvsignore 6 Jul 2009 12:11:41 -0000 1.50 +++ .cvsignore 27 Jul 2009 17:05:33 -0000 1.51 @@ -1 +1 @@ -gnome-packagekit-2.27.3.tar.gz +gnome-packagekit-2.27.4-20090727.tar.gz Index: gnome-packagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/gnome-packagekit.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- gnome-packagekit.spec 25 Jul 2009 00:43:15 -0000 1.92 +++ gnome-packagekit.spec 27 Jul 2009 17:05:33 -0000 1.93 @@ -8,25 +8,22 @@ %define devicekit_version 003 %define devicekit_power_version 007 %define libcanberra_version 0.10 -%define alphatag 20090625 +%define alphatag 20090727 %{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Summary: Session applications to manage packages Name: gnome-packagekit -Version: 2.27.3 -#Release: 0.4.%{?alphatag}git%{?dist} -Release: 2%{?dist} +Version: 2.27.4 +Release: 0.1.%{?alphatag}git%{?dist} +#Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.packagekit.org -Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}.tar.gz -#Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}-%{?alphatag}.tar.gz +#Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}.tar.gz +Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}-%{?alphatag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# from upstream polkit1 branch, automatically generated -Patch0: gnome-packagekit-port-to-polkit1.patch - Requires: glib2 >= %{glib2_version} Requires: gtk2 >= %{gtk2_version} Requires: gnome-icon-theme @@ -75,9 +72,6 @@ BuildRequires: libcanberra-devel >= %{li BuildRequires: DeviceKit-devel >= %{devicekit_version} BuildRequires: DeviceKit-power-devel >= %{devicekit_power_version} -# low level icky tools (due to polkit1 patch) -BuildRequires: automake, autoconf, libtool - %description gnome-packagekit provides session applications for the PackageKit API. There are several utilities designed for installing, updating and @@ -92,12 +86,8 @@ Requires: %{name} = %{version}-%{release Extra GNOME applications for using PackageKit that are not normally needed. %prep -#%setup -q -n %{?name}-%{?version}-%{?alphatag} -%setup -q -%patch0 -p1 -b .polkit1 - -# we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) -autoreconf +%setup -q -n %{?name}-%{?version}-%{?alphatag} +#%setup -q %build %configure --disable-scrollkeeper --disable-schemas-install @@ -109,6 +99,9 @@ export GCONF_DISABLE_MAKEFILE_SCHEMA_INS make install DESTDIR=$RPM_BUILD_ROOT unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL +# nuke the ChangeLog file, it's huge +rm -f $RPM_BUILD_ROOT%{_datadir}/doc/gnome-packagekit-*/ChangeLog + desktop-file-install --delete-original \ --dir=$RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart/ \ $RPM_BUILD_ROOT%{_datadir}/gnome/autostart/gpk-update-icon.desktop @@ -178,7 +171,7 @@ update-mime-database %{_datadir}/mime &> %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README +%doc AUTHORS COPYING NEWS README %{_bindir}/gpk-application %{_bindir}/gpk-install-* %{_bindir}/gpk-log @@ -220,7 +213,7 @@ update-mime-database %{_datadir}/mime &> %files extra %defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README +%doc AUTHORS COPYING NEWS README %{_bindir}/gpk-backend-status %{_bindir}/gpk-service-pack %{_datadir}/gnome-packagekit/gpk-service-pack.ui @@ -228,6 +221,9 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/applications/gpk-service-pack.desktop %changelog +* Mon Jul 27 2009 Richard Hughes - 2.27.4-0.1.20090727git +- Update to latest git master snapshot + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 6 Jul 2009 12:11:42 -0000 1.51 +++ sources 27 Jul 2009 17:05:33 -0000 1.52 @@ -1 +1 @@ -feb33ccbbed09413189ca62d4a1e8fd5 gnome-packagekit-2.27.3.tar.gz +052468a1acb3ba1601caeb16097323a2 gnome-packagekit-2.27.4-20090727.tar.gz --- gnome-packagekit-port-to-polkit1.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:06:35 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:06:35 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-md5-be.patch,1.1,NONE Message-ID: <20090727170635.E315E11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17791 Removed Files: sysvinit-2.86-md5-be.patch Log Message: Remove this patch; use glibc's crypt everywhere. --- sysvinit-2.86-md5-be.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:07:24 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:07:24 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.78-halt.patch,1.1,NONE Message-ID: <20090727170724.59E3D11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18152 Removed Files: sysvinit-2.78-halt.patch Log Message: Remove this patch; we use INIT_HALT as we're supposed to now. --- sysvinit-2.78-halt.patch DELETED --- From mjg59 at fedoraproject.org Mon Jul 27 17:11:46 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Mon, 27 Jul 2009 17:11:46 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-alsa-improve-hda-powerdown.patch, NONE, 1.1 kernel.spec, 1.1659, 1.1660 Message-ID: <20090727171146.DDC0311C00E8@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20336 Modified Files: kernel.spec Added Files: linux-2.6-alsa-improve-hda-powerdown.patch Log Message: * Mon Jul 27 2009 Matthew Garrett - linux-2.6-alsa-improve-hda-powerdown.patch - attempt to reduce audio glitches caused by HDA powerdown linux-2.6-alsa-improve-hda-powerdown.patch: hda_codec.c | 9 +++++++-- patch_sigmatel.c | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) --- NEW FILE linux-2.6-alsa-improve-hda-powerdown.patch --- From: Takashi Iwai Date: Wed, 22 Jul 2009 10:39:24 +0000 (+0200) Subject: ALSA: hda - Reduce click noise at power-saving X-Git-Url: http://kernel.ubuntu.com/git?p=dtchen%2Fubuntu-karmic.git;a=commitdiff_plain;h=d6c571bdc08f1958f70c71eb11677066729e8505 ALSA: hda - Reduce click noise at power-saving Add some tricks to reduce the click noise at powering down to D3 in the power saving mode on STAC/IDT codecs. The key seems to be to reset PINs before the power-down, and some delay before entering D3. The needed delay is significantly long, but I don't know why. Signed-off-by: Takashi Iwai Signed-off-by: Daniel T Chen --- diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 88480c0..4d72e50 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -2356,9 +2356,14 @@ static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, hda_nid_t nid; int i; - snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE, + /* this delay seems necessary to avoid click noise at power-down */ + if (power_state == AC_PWRST_D3) + msleep(100); + snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state); - msleep(10); /* partial workaround for "azx_get_response timeout" */ + /* partial workaround for "azx_get_response timeout" */ + if (power_state == AC_PWRST_D0) + msleep(10); nid = codec->start_nid; for (i = 0; i < codec->num_nodes; i++, nid++) { diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index da7f9f6..3637b31 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -4746,6 +4746,20 @@ static int stac92xx_hp_check_power_status(struct hda_codec *codec, static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state) { struct sigmatel_spec *spec = codec->spec; + int i; + hda_nid_t nid; + + /* reset each pin before powering down DAC/ADC to avoid click noise */ + nid = codec->start_nid; + for (i = 0; i < codec->num_nodes; i++, nid++) { + unsigned int wcaps = get_wcaps(codec, nid); + unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >> + AC_WCAP_TYPE_SHIFT; + if (wid_type == AC_WID_PIN) + snd_hda_codec_read(codec, nid, 0, + AC_VERB_SET_PIN_WIDGET_CONTROL, 0); + } + if (spec->eapd_mask) stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data & Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1659 retrieving revision 1.1660 diff -u -p -r1.1659 -r1.1660 --- kernel.spec 27 Jul 2009 03:04:07 -0000 1.1659 +++ kernel.spec 27 Jul 2009 17:11:46 -0000 1.1660 @@ -635,6 +635,7 @@ Patch570: linux-2.6-selinux-mprotect-che Patch580: linux-2.6-sparc-selinux-mprotect-checks.patch Patch600: linux-2.6-defaults-alsa-hda-beep-off.patch +Patch601: linux-2.6-alsa-improve-hda-powerdown.patch Patch610: hda_intel-prealloc-4mb-dmabuffer.patch Patch670: linux-2.6-ata-quirk.patch @@ -1190,6 +1191,7 @@ ApplyPatch linux-2.6-defaults-aspm.patch # ALSA # squelch hda_beep by default ApplyPatch linux-2.6-defaults-alsa-hda-beep-off.patch +ApplyPatch linux-2.6-alsa-improve-hda-powerdown.patch ApplyPatch hda_intel-prealloc-4mb-dmabuffer.patch # Networking @@ -1894,6 +1896,10 @@ fi # and build. %changelog +* Mon Jul 27 2009 Matthew Garrett +- linux-2.6-alsa-improve-hda-powerdown.patch - attempt to reduce audio glitches + caused by HDA powerdown + * Mon Jul 27 2009 Dave Airlie - update vga arb code From notting at fedoraproject.org Mon Jul 27 17:12:21 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:12:21 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-makefile.patch,1.1,NONE Message-ID: <20090727171221.64E0411C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20654 Removed Files: sysvinit-2.86-makefile.patch Log Message: Remove patch; do the work in the spec instead. --- sysvinit-2.86-makefile.patch DELETED --- From hguemar at fedoraproject.org Mon Jul 27 17:12:46 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 27 Jul 2009 17:12:46 +0000 (UTC) Subject: rpms/bygfoot/F-11 bygfoot.spec,1.8,1.9 Message-ID: <20090727171246.899D711C00E8@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/bygfoot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20932 Modified Files: bygfoot.spec Log Message: update to bygfoot 2.2.1 Index: bygfoot.spec =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-11/bygfoot.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bygfoot.spec 24 Feb 2009 06:11:07 -0000 1.8 +++ bygfoot.spec 27 Jul 2009 17:12:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: bygfoot -Version: 2.2.0 -Release: 4%{?dist} +Version: 2.2.1 +Release: 1%{?dist} Summary: Bygfoot Football Manager Group: Amusements/Games License: GPLv2 @@ -47,7 +47,11 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/bygfoot* %{_datadir}/bygfoot %{_datadir}/applications/fedora-bygfoot.desktop + %changelog +* Mon Jul 27 2009 Ha?kel Gu?mar - 2.2.1-1 +- Updated to 2.2.1 + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From notting at fedoraproject.org Mon Jul 27 17:13:37 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:13:37 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-environ.patch, 1.1, NONE sysvinit-2.86-chroot.patch, 1.2, NONE Message-ID: <20090727171337.6557311C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21315 Removed Files: sysvinit-2.86-environ.patch sysvinit-2.86-chroot.patch Log Message: Remove patches that have been merged upstream. --- sysvinit-2.86-environ.patch DELETED --- --- sysvinit-2.86-chroot.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:15:06 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:15:06 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-haltname.patch,1.1,NONE Message-ID: <20090727171506.8487D11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22207 Removed Files: sysvinit-2.86-haltname.patch Log Message: Remove patch merged upstream. --- sysvinit-2.86-haltname.patch DELETED --- From mjg59 at fedoraproject.org Mon Jul 27 17:17:25 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Mon, 27 Jul 2009 17:17:25 +0000 (UTC) Subject: rpms/kernel/devel config-debug, 1.27, 1.28 config-nodebug, 1.36, 1.37 kernel.spec, 1.1660, 1.1661 Message-ID: <20090727171725.30FA811C00E8@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23937 Modified Files: config-debug config-nodebug kernel.spec Log Message: * Mon Jul 27 2009 Matthew Garrett - linux-2.6-alsa-improve-hda-powerdown.patch - attempt to reduce audio glitches caused by HDA powerdown - disable CONFIG_DEBUG_KOBJECT again for now, since it produces huge dmesg spew Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-debug,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- config-debug 24 Jul 2009 18:24:28 -0000 1.27 +++ config-debug 27 Jul 2009 17:17:24 -0000 1.28 @@ -51,4 +51,4 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y -CONFIG_DEBUG_KOBJECT=y +CONFIG_DEBUG_KOBJECT=n Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-nodebug,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- config-nodebug 24 Jul 2009 18:24:28 -0000 1.36 +++ config-nodebug 27 Jul 2009 17:17:24 -0000 1.37 @@ -50,4 +50,4 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y -CONFIG_DEBUG_KOBJECT=y +CONFIG_DEBUG_KOBJECT=n Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1660 retrieving revision 1.1661 diff -u -p -r1.1660 -r1.1661 --- kernel.spec 27 Jul 2009 17:11:46 -0000 1.1660 +++ kernel.spec 27 Jul 2009 17:17:24 -0000 1.1661 @@ -1899,6 +1899,7 @@ fi * Mon Jul 27 2009 Matthew Garrett - linux-2.6-alsa-improve-hda-powerdown.patch - attempt to reduce audio glitches caused by HDA powerdown +- disable CONFIG_DEBUG_KOBJECT again for now, since it produces huge dmesg spew * Mon Jul 27 2009 Dave Airlie - update vga arb code From notting at fedoraproject.org Mon Jul 27 17:20:03 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:20:03 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-haltman.patch, 1.3, NONE sysvinit-2.86-ipv6.patch, 1.2, NONE sysvinit-2.86-godot.patch, 1.1, NONE sysvinit-2.86-timeval.patch, 1.1, NONE sysvinit-2.86-console-open.patch, 1.1, NONE Message-ID: <20090727172003.9072A11C043B@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25191 Removed Files: sysvinit-2.86-haltman.patch sysvinit-2.86-ipv6.patch sysvinit-2.86-godot.patch sysvinit-2.86-timeval.patch sysvinit-2.86-console-open.patch Log Message: Remove more upstreamed patches. --- sysvinit-2.86-haltman.patch DELETED --- --- sysvinit-2.86-ipv6.patch DELETED --- --- sysvinit-2.86-godot.patch DELETED --- --- sysvinit-2.86-timeval.patch DELETED --- --- sysvinit-2.86-console-open.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:22:49 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:22:49 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-utmpdump.patch, 1.1, NONE 81_killall_avoid_init.dpatch, 1.1, NONE Message-ID: <20090727172249.3BBCA11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26433 Removed Files: sysvinit-2.86-utmpdump.patch 81_killall_avoid_init.dpatch Log Message: Remove more upstreamed patches. --- sysvinit-2.86-utmpdump.patch DELETED --- --- 81_killall_avoid_init.dpatch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:24:11 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:24:11 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-ctrlc.patch,1.1,NONE Message-ID: <20090727172411.2398311C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27063 Removed Files: sysvinit-2.86-ctrlc.patch Log Message: Remove dead patch. --- sysvinit-2.86-ctrlc.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:28:56 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:28:56 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-no-abort.patch, 1.1, NONE sysvinit-selinux.patch, 1.16, NONE Message-ID: <20090727172856.E536011C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29280 Removed Files: sysvinit-no-abort.patch sysvinit-selinux.patch Log Message: Remove patches for SELinux support; merged upstream. --- sysvinit-no-abort.patch DELETED --- --- sysvinit-selinux.patch DELETED --- From notting at fedoraproject.org Mon Jul 27 17:32:06 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:32:06 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.86-maxproclen.patch,1.2,NONE Message-ID: <20090727173206.9F04A11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30749 Removed Files: sysvinit-2.86-maxproclen.patch Log Message: remove upstream patch --- sysvinit-2.86-maxproclen.patch DELETED --- From davej at fedoraproject.org Mon Jul 27 17:42:04 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 27 Jul 2009 17:42:04 +0000 (UTC) Subject: rpms/kernel/devel Makefile, 1.107, 1.108 config-debug, 1.28, 1.29 config-generic, 1.312, 1.313 config-nodebug, 1.37, 1.38 Message-ID: <20090727174204.98AE211C00E8@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2510 Modified Files: Makefile config-debug config-generic config-nodebug Log Message: - Don't diddle with kobject debugging during make debug/release - Group more of the kernel debugging options in config-generic - Add some commentary Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Makefile,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- Makefile 24 Jul 2009 18:24:27 -0000 1.107 +++ Makefile 27 Jul 2009 17:42:03 -0000 1.108 @@ -72,7 +72,6 @@ debug: @perl -pi -e 's/# CONFIG_B43LEGACY_DEBUG is not set/CONFIG_B43LEGACY_DEBUG=y/' config-generic @perl -pi -e 's/# CONFIG_MMIOTRACE is not set/CONFIG_MMIOTRACE=y/' config-nodebug @perl -pi -e 's/CONFIG_STRIP_ASM_SYMS=y/# CONFIG_STRIP_ASM_SYMS is not set/' config-nodebug - @perl -pi -e 's/# CONFIG_DEBUG_KOBJECT is not set/CONFIG_DEBUG_KOBJECT=y/' config-nodebug @# just in case we're going from extremedebug -> debug @perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug @@ -119,7 +118,6 @@ release: @perl -pi -e 's/CONFIG_B43LEGACY_DEBUG=y/# CONFIG_B43LEGACY_DEBUG is not set/' config-generic @perl -pi -e 's/CONFIG_MMIOTRACE=y/# CONFIG_MMIOTRACE is not set/' config-nodebug @perl -pi -e 's/# CONFIG_STRIP_ASM_SYMS is not set/CONFIG_STRIP_ASM_SYMS=y/' config-nodebug - @perl -pi -e 's/CONFIG_DEBUG_KOBJECT=y/# CONFIG_DEBUG_KOBJECT is not set/' config-nodebug @perl -pi -e 's/CONFIG_NR_CPUS=512/CONFIG_NR_CPUS=64/' config-x86_64-generic Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-debug,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- config-debug 27 Jul 2009 17:17:24 -0000 1.28 +++ config-debug 27 Jul 2009 17:42:04 -0000 1.29 @@ -50,5 +50,3 @@ CONFIG_DEBUG_NOTIFIERS=y CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y - -CONFIG_DEBUG_KOBJECT=n Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.312 retrieving revision 1.313 diff -u -p -r1.312 -r1.313 --- config-generic 24 Jul 2009 18:24:28 -0000 1.312 +++ config-generic 27 Jul 2009 17:42:04 -0000 1.313 @@ -16,7 +16,6 @@ CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_BUILD_DOCSRC=y -CONFIG_DYNAMIC_DEBUG=y # # General setup @@ -3357,22 +3356,6 @@ CONFIG_KGDB_SERIAL_CONSOLE=y CONFIG_KGDB_TESTS=y # CONFIG_KGDB_TESTS_ON_BOOT is not set -# These debug options are deliberatly left on. -# They aren't that much of a performance impact, and the value -# from getting out-of-tree modules fixed is worth the trade-off. -CONFIG_DEBUG_HIGHMEM=y -CONFIG_DEBUG_SPINLOCK_SLEEP=y -CONFIG_BOOT_PRINTK_DELAY=y -CONFIG_DEBUG_SLAB_LEAK=y -CONFIG_DEBUG_LIST=y -CONFIG_DEBUG_SHIRQ=y -CONFIG_DEBUG_DEVRES=y -# CONFIG_ENABLE_WARN_DEPRECATED is not set - -CONFIG_DEBUG_RODATA_TEST=y -CONFIG_DEBUG_NX_TEST=m -CONFIG_DEBUG_BOOT_PARAMS=y - # # Security options # @@ -3521,12 +3504,9 @@ CONFIG_PROC_PID_CPUSET=y CONFIG_RELAY=y # CONFIG_PRINTK_TIME is not set -CONFIG_ENABLE_MUST_CHECK=y -CONFIG_DETECT_SOFTLOCKUP=y -# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set -CONFIG_DETECT_HUNG_TASK=y -# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_ENABLE_MUST_CHECK=y +# CONFIG_ENABLE_WARN_DEPRECATED is not set CONFIG_KEXEC=y @@ -4037,5 +4017,30 @@ CONFIG_PPS=m # CONFIG_RDC_17F3101X is not set # CONFIG_FB_UDL is not set +# DEBUG options that don't get enabled/disabled with 'make debug/release' +# +# Kmemleak still produces a lot of false positives. # CONFIG_DEBUG_KMEMLEAK is not set +# +# This generates a huge amount of dmesg spew +# CONFIG_DEBUG_KOBJECT is not set +# +# +# These debug options are deliberatly left on (even in 'make release' kernels). +# They aren't that much of a performance impact, and the value +# from getting useful bug-reports makes it worth leaving them on. +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DEBUG_HIGHMEM=y +CONFIG_DEBUG_SPINLOCK_SLEEP=y +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_DEBUG_LIST=y +CONFIG_DEBUG_SHIRQ=y +CONFIG_DEBUG_DEVRES=y +CONFIG_DEBUG_RODATA_TEST=y +CONFIG_DEBUG_NX_TEST=m +CONFIG_DEBUG_BOOT_PARAMS=y +CONFIG_DETECT_SOFTLOCKUP=y +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_DETECT_HUNG_TASK=y +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-nodebug,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- config-nodebug 27 Jul 2009 17:17:24 -0000 1.37 +++ config-nodebug 27 Jul 2009 17:42:04 -0000 1.38 @@ -49,5 +49,3 @@ CONFIG_DEBUG_NOTIFIERS=y CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y - -CONFIG_DEBUG_KOBJECT=n From hguemar at fedoraproject.org Mon Jul 27 17:45:57 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 27 Jul 2009 17:45:57 +0000 (UTC) Subject: rpms/bygfoot/F-10 bygfoot.spec,1.7,1.8 Message-ID: <20090727174557.DD80911C00E8@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/bygfoot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4462 Modified Files: bygfoot.spec Log Message: updated to 2.2.1 Index: bygfoot.spec =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-10/bygfoot.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bygfoot.spec 19 Feb 2008 02:13:15 -0000 1.7 +++ bygfoot.spec 27 Jul 2009 17:45:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: bygfoot -Version: 2.2.0 -Release: 3%{?dist} +Version: 2.2.1 +Release: 1%{?dist} Summary: Bygfoot Football Manager Group: Amusements/Games License: GPLv2 @@ -47,7 +47,11 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/bygfoot* %{_datadir}/bygfoot %{_datadir}/applications/fedora-bygfoot.desktop + %changelog +* Mon Jul 27 2009 Ha?kel Gu?mar - 2.2.1-1 +- Updated to 2.2.1 + * Mon Feb 18 2008 Fedora Release Engineering - 2.2.0-3 - Autorebuild for GCC 4.3 From dmaphy at fedoraproject.org Mon Jul 27 17:47:22 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Mon, 27 Jul 2009 17:47:22 +0000 (UTC) Subject: rpms/geany/devel geany.spec,1.26,1.27 Message-ID: <20090727174722.6F63411C00E8@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4738 Modified Files: geany.spec Log Message: install *.tags-files in $prefix/share/geany/tags instead of $prefix/share/geany. this fixes an issue where Geany could not find several *.tags-files Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/devel/geany.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- geany.spec 24 Jul 2009 23:44:37 -0000 1.26 +++ geany.spec 27 Jul 2009 17:47:22 -0000 1.27 @@ -1,6 +1,6 @@ Name: geany Version: 0.17 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A fast and lightweight IDE using GTK2 Group: Development/Tools @@ -74,7 +74,8 @@ sed -i 's/\r//' %{geany_docdir}/Scintill rm -rf $RPM_BUILD_ROOT%{_libdir}/geany/*.la # Install tags files -install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name} +mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ +install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ %clean rm -rf $RPM_BUILD_ROOT @@ -96,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog +* Mon Jul 27 2009 Dominic Hopf - 0.17-9 +- install additional *.tags-files to $prefix/share/geany/tags + * Fri Jul 24 2009 Fedora Release Engineering - 0.17-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Mon Jul 27 17:49:45 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 17:49:45 +0000 (UTC) Subject: rpms/ebtables/devel .cvsignore, 1.7, 1.8 ebtables.spec, 1.24, 1.25 sources, 1.7, 1.8 Message-ID: <20090727174945.C76A111C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ebtables/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6974/devel Modified Files: .cvsignore ebtables.spec sources Log Message: update to 2.0.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ebtables/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 28 Oct 2007 19:21:09 -0000 1.7 +++ .cvsignore 27 Jul 2009 17:49:45 -0000 1.8 @@ -1 +1 @@ -ebtables-v2.0.8-2.tar.gz +ebtables-v2.0.9-1.tar.gz Index: ebtables.spec =================================================================== RCS file: /cvs/extras/rpms/ebtables/devel/ebtables.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- ebtables.spec 24 Jul 2009 20:48:17 -0000 1.24 +++ ebtables.spec 27 Jul 2009 17:49:45 -0000 1.25 @@ -1,17 +1,17 @@ -Name: ebtables -Version: 2.0.8 -Release: 7%{?dist} -Summary: Ethernet Bridge frame table administration tool -License: GPLv2+ -Group: System Environment/Base -URL: http://ebtables.sourceforge.net/ -Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-2.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -PreReq: /sbin/chkconfig -PreReq: /sbin/service -Patch0: ebtables-2.0.8-norootinst.patch -Patch1: ebtables-2.0.8-cflags.patch -Patch2: ebtables-2.0.8-buildid.patch +Name: ebtables +Version: 2.0.9 +Release: 1%{?dist} +Summary: Ethernet Bridge frame table administration tool +License: GPLv2+ +Group: System Environment/Base +URL: http://ebtables.sourceforge.net/ +Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-1.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(pre): /sbin/chkconfig +Requires(postun): /sbin/service +Patch0: ebtables-2.0.8-norootinst.patch +Patch1: ebtables-2.0.8-cflags.patch +Patch2: ebtables-2.0.8-buildid.patch %description Ethernet bridge tables is a firewalling tool to transparently filter network @@ -25,11 +25,14 @@ The ebtables tool can be used together w like iptables. There are no known incompatibility issues. %prep -%setup -q -n ebtables-v%{version}-2 +%setup -q -n ebtables-v%{version}-1 %patch0 -p1 %patch1 -p1 %patch2 -p1 +# Convert to UTF-8 +f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f + %build MY_CFLAGS=`echo $RPM_OPT_FLAGS -fPIC | sed -e 's/-fstack-protector//g'` make %{?_smp_mflags} CFLAGS="$MY_CFLAGS" LIBDIR="%{_libdir}/ebtables" BINDIR="/sbin" MANDIR="%{_mandir}" @@ -76,6 +79,9 @@ fi %ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Mon Jul 27 2009 Tom "spot" Callaway - 2.0.9-1 +- update to 2.0.9 + * Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -151,9 +157,9 @@ fi * Fri Jul 1 2005 Tom "spot" Callaway 2.0.6-4 - remove INSTALL file - add some text to description, correct typos -- fix %postun +- fix %%postun - add PreReqs -- add %ghost config files +- add %%ghost config files * Tue May 31 2005 Tom "spot" Callaway 2.0.6-3 - reworked for Fedora Extras Index: sources =================================================================== RCS file: /cvs/extras/rpms/ebtables/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 Oct 2007 19:21:09 -0000 1.7 +++ sources 27 Jul 2009 17:49:45 -0000 1.8 @@ -1 +1 @@ -66bcbcb2dcf3b981ad4e86e1720e796e ebtables-v2.0.8-2.tar.gz +0e0c20adf2bba6d91dbd0b74a1a38c33 ebtables-v2.0.9-1.tar.gz From spot at fedoraproject.org Mon Jul 27 17:49:45 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 17:49:45 +0000 (UTC) Subject: rpms/ebtables/F-11 ebtables.spec,1.23,1.24 sources,1.7,1.8 Message-ID: <20090727174945.8929C11C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ebtables/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6974/F-11 Modified Files: ebtables.spec sources Log Message: update to 2.0.9 Index: ebtables.spec =================================================================== RCS file: /cvs/extras/rpms/ebtables/F-11/ebtables.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ebtables.spec 24 Feb 2009 13:29:20 -0000 1.23 +++ ebtables.spec 27 Jul 2009 17:49:45 -0000 1.24 @@ -1,17 +1,17 @@ -Name: ebtables -Version: 2.0.8 -Release: 6%{?dist} -Summary: Ethernet Bridge frame table administration tool -License: GPLv2+ -Group: System Environment/Base -URL: http://ebtables.sourceforge.net/ -Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-2.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -PreReq: /sbin/chkconfig -PreReq: /sbin/service -Patch0: ebtables-2.0.8-norootinst.patch -Patch1: ebtables-2.0.8-cflags.patch -Patch2: ebtables-2.0.8-buildid.patch +Name: ebtables +Version: 2.0.9 +Release: 1%{?dist} +Summary: Ethernet Bridge frame table administration tool +License: GPLv2+ +Group: System Environment/Base +URL: http://ebtables.sourceforge.net/ +Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-1.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(pre): /sbin/chkconfig +Requires(postun): /sbin/service +Patch0: ebtables-2.0.8-norootinst.patch +Patch1: ebtables-2.0.8-cflags.patch +Patch2: ebtables-2.0.8-buildid.patch %description Ethernet bridge tables is a firewalling tool to transparently filter network @@ -25,11 +25,14 @@ The ebtables tool can be used together w like iptables. There are no known incompatibility issues. %prep -%setup -q -n ebtables-v%{version}-2 +%setup -q -n ebtables-v%{version}-1 %patch0 -p1 %patch1 -p1 %patch2 -p1 +# Convert to UTF-8 +f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f + %build MY_CFLAGS=`echo $RPM_OPT_FLAGS -fPIC | sed -e 's/-fstack-protector//g'` make %{?_smp_mflags} CFLAGS="$MY_CFLAGS" LIBDIR="%{_libdir}/ebtables" BINDIR="/sbin" MANDIR="%{_mandir}" @@ -76,6 +79,12 @@ fi %ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Mon Jul 27 2009 Tom "spot" Callaway - 2.0.9-1 +- update to 2.0.9 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild @@ -148,9 +157,9 @@ fi * Fri Jul 1 2005 Tom "spot" Callaway 2.0.6-4 - remove INSTALL file - add some text to description, correct typos -- fix %postun +- fix %%postun - add PreReqs -- add %ghost config files +- add %%ghost config files * Tue May 31 2005 Tom "spot" Callaway 2.0.6-3 - reworked for Fedora Extras Index: sources =================================================================== RCS file: /cvs/extras/rpms/ebtables/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 Oct 2007 19:21:09 -0000 1.7 +++ sources 27 Jul 2009 17:49:45 -0000 1.8 @@ -1 +1 @@ -66bcbcb2dcf3b981ad4e86e1720e796e ebtables-v2.0.8-2.tar.gz +0e0c20adf2bba6d91dbd0b74a1a38c33 ebtables-v2.0.9-1.tar.gz From spot at fedoraproject.org Mon Jul 27 17:49:45 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 27 Jul 2009 17:49:45 +0000 (UTC) Subject: rpms/ebtables/F-10 ebtables.spec,1.22,1.23 sources,1.7,1.8 Message-ID: <20090727174945.50FDF11C00E8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ebtables/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6974/F-10 Modified Files: ebtables.spec sources Log Message: update to 2.0.9 Index: ebtables.spec =================================================================== RCS file: /cvs/extras/rpms/ebtables/F-10/ebtables.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ebtables.spec 20 Feb 2008 01:06:32 -0000 1.22 +++ ebtables.spec 27 Jul 2009 17:49:45 -0000 1.23 @@ -1,17 +1,17 @@ -Name: ebtables -Version: 2.0.8 -Release: 5%{?dist} -Summary: Ethernet Bridge frame table administration tool -License: GPLv2+ -Group: System Environment/Base -URL: http://ebtables.sourceforge.net/ -Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-2.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -PreReq: /sbin/chkconfig -PreReq: /sbin/service -Patch0: ebtables-2.0.8-norootinst.patch -Patch1: ebtables-2.0.8-cflags.patch -Patch2: ebtables-2.0.8-buildid.patch +Name: ebtables +Version: 2.0.9 +Release: 1%{?dist} +Summary: Ethernet Bridge frame table administration tool +License: GPLv2+ +Group: System Environment/Base +URL: http://ebtables.sourceforge.net/ +Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-1.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(pre): /sbin/chkconfig +Requires(postun): /sbin/service +Patch0: ebtables-2.0.8-norootinst.patch +Patch1: ebtables-2.0.8-cflags.patch +Patch2: ebtables-2.0.8-buildid.patch %description Ethernet bridge tables is a firewalling tool to transparently filter network @@ -25,11 +25,14 @@ The ebtables tool can be used together w like iptables. There are no known incompatibility issues. %prep -%setup -q -n ebtables-v%{version}-2 +%setup -q -n ebtables-v%{version}-1 %patch0 -p1 %patch1 -p1 %patch2 -p1 +# Convert to UTF-8 +f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f + %build MY_CFLAGS=`echo $RPM_OPT_FLAGS -fPIC | sed -e 's/-fstack-protector//g'` make %{?_smp_mflags} CFLAGS="$MY_CFLAGS" LIBDIR="%{_libdir}/ebtables" BINDIR="/sbin" MANDIR="%{_mandir}" @@ -76,6 +79,15 @@ fi %ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Mon Jul 27 2009 Tom "spot" Callaway - 2.0.9-1 +- update to 2.0.9 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Feb 19 2008 Fedora Release Engineering - 2.0.8-5 - Autorebuild for GCC 4.3 @@ -145,9 +157,9 @@ fi * Fri Jul 1 2005 Tom "spot" Callaway 2.0.6-4 - remove INSTALL file - add some text to description, correct typos -- fix %postun +- fix %%postun - add PreReqs -- add %ghost config files +- add %%ghost config files * Tue May 31 2005 Tom "spot" Callaway 2.0.6-3 - reworked for Fedora Extras Index: sources =================================================================== RCS file: /cvs/extras/rpms/ebtables/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 Oct 2007 19:21:09 -0000 1.7 +++ sources 27 Jul 2009 17:49:45 -0000 1.8 @@ -1 +1 @@ -66bcbcb2dcf3b981ad4e86e1720e796e ebtables-v2.0.8-2.tar.gz +0e0c20adf2bba6d91dbd0b74a1a38c33 ebtables-v2.0.9-1.tar.gz From twaugh at fedoraproject.org Mon Jul 27 17:50:50 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 27 Jul 2009 17:50:50 +0000 (UTC) Subject: rpms/hplip/devel hplip-device-id.patch, 1.3, 1.4 hplip-disc-media.patch, 1.1, 1.2 hplip-libsane.patch, 1.5, 1.6 hplip-marker-supply.patch, 1.8, 1.9 hplip-segfault.patch, 1.1, 1.2 hplip-strstr-const.patch, 1.1, 1.2 hplip.spec, 1.208, 1.209 Message-ID: <20090727175050.672F611C00E8@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7564 Modified Files: hplip-device-id.patch hplip-disc-media.patch hplip-libsane.patch hplip-marker-supply.patch hplip-segfault.patch hplip-strstr-const.patch hplip.spec Log Message: * Mon Jul 27 2009 Tim Waugh 3.9.6b-1 - 3.9.6b. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 151 +++++++++++++++++++++++++++++++++++++++++++++----------- 3 files changed, 127 insertions(+), 32 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-device-id.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hplip-device-id.patch 23 Jul 2009 17:30:37 -0000 1.3 +++ hplip-device-id.patch 27 Jul 2009 17:50:49 -0000 1.4 @@ -1,6 +1,6 @@ -diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c ---- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 18:15:12.923895944 +0100 +diff -up hplip-3.9.6b/io/hpmud/musb.c.device-id hplip-3.9.6b/io/hpmud/musb.c +--- hplip-3.9.6b/io/hpmud/musb.c.device-id 2009-06-25 20:05:49.000000000 +0100 ++++ hplip-3.9.6b/io/hpmud/musb.c 2009-07-27 16:10:28.125542973 +0100 @@ -26,6 +26,11 @@ #include "hpmud.h" @@ -13,7 +13,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -488,7 +493,8 @@ bugout: +@@ -489,7 +494,8 @@ bugout: return -1; /* no endpoint found */ } @@ -23,7 +23,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev { int stat=1; -@@ -501,7 +507,8 @@ static int claim_interface(struct usb_de +@@ -502,7 +508,8 @@ static int claim_interface(struct usb_de goto bugout; } @@ -33,21 +33,21 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev #if 0 /* hp devices only have one configuration, so far ... */ if (usb_set_configuration(FD[fd].pHD, dev->config[config].bConfigurationValue)) -@@ -561,7 +568,7 @@ static int release_interface(file_descri +@@ -562,7 +569,7 @@ static int release_interface(file_descri } /* Claim any open interface which is valid for device_id and device status. */ -static int claim_id_interface(struct usb_device *dev) +static int claim_id_interface(struct usb_device *dev, int flags) { - int fd[] = {FD_7_1_2, FD_7_1_3, FD_ff_ff_ff, FD_ff_d4_0, FD_ff_1_1, FD_ff_2_1, FD_NA}; - int i; + enum FD_ID i; + @@ -570,7 +577,7 @@ static int claim_id_interface(struct usb { - if (get_interface(dev, fd[i], &fd_table[fd[i]]) == 0) + if (get_interface(dev, i, &fd_table[i]) == 0) { -- if (claim_interface(libusb_device, &fd_table[fd[i]])) -+ if (claim_interface(libusb_device, &fd_table[fd[i]], flags)) +- if (claim_interface(libusb_device, &fd_table[i])) ++ if (claim_interface(libusb_device, &fd_table[i], flags)) continue; /* interface is busy, try next interface */ break; /* done */ } @@ -55,8 +55,8 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev { /* First client. */ -- if ((fd = claim_id_interface(libusb_device)) == FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) == FD_NA) +- if ((fd = claim_id_interface(libusb_device)) == MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) == MAX_FD) { stat = HPMUD_R_DEVICE_BUSY; goto blackout; @@ -64,30 +64,30 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev if (fd == FD_NA) { /* Device not in use. Claim interface, but release for other processes. */ -- if ((fd = claim_id_interface(libusb_device)) != FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) +- if ((fd = claim_id_interface(libusb_device)) != MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) != MAX_FD) { *len = device_id(fd, pd->id, sizeof(pd->id)); /* get new copy and cache it */ release_interface(&fd_table[fd]); -@@ -1236,7 +1243,7 @@ enum HPMUD_RESULT __attribute__ ((visibi +@@ -1239,7 +1246,7 @@ enum HPMUD_RESULT __attribute__ ((visibi if (fd == FD_NA) { /* Device not in use. Claim interface, but release for other processes. */ -- if ((fd = claim_id_interface(libusb_device)) != FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) +- if ((fd = claim_id_interface(libusb_device)) != MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) != MAX_FD) { r = device_status(fd, status); release_interface(&fd_table[fd]); -@@ -1339,7 +1346,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - int fd = FD_7_1_2; - enum HPMUD_RESULT stat = HPMUD_R_DEVICE_BUSY; +@@ -1344,7 +1351,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + + get_interface(libusb_device, fd, &fd_table[fd]); - if (claim_interface(libusb_device, &fd_table[fd])) + if (claim_interface(libusb_device, &fd_table[fd], 0)) goto bugout; pc->fd = fd; -@@ -1470,7 +1477,7 @@ enum HPMUD_RESULT __attribute__ ((visibi +@@ -1475,7 +1482,7 @@ enum HPMUD_RESULT __attribute__ ((visibi goto bugout; } @@ -96,25 +96,43 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev goto bugout; pc->fd = fd; -@@ -1504,7 +1511,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - else +@@ -1499,13 +1506,13 @@ enum HPMUD_RESULT __attribute__ ((visibi + /* Initialize MLC transport if this is the first MLC channel. */ + if (pd->channel_cnt==1) + { +- if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3]) == 0) ++ if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3], 0) == 0) + fd = FD_7_1_3; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff]) == 0) ++ else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff], 0) == 0) + fd = FD_ff_ff_ff; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0]) == 0) ++ else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0], 0) == 0) + fd = FD_ff_d4_0; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2]) == 0) ++ else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2], 0) == 0) fd = FD_7_1_2; /* raw, mlc, dot4 */ - -- if (claim_interface(libusb_device, &fd_table[fd])) -+ if (claim_interface(libusb_device, &fd_table[fd], 0)) + else { - stat = HPMUD_R_DEVICE_BUSY; - goto bugout; -@@ -1726,7 +1733,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - else +@@ -1719,13 +1726,13 @@ enum HPMUD_RESULT __attribute__ ((visibi + /* Initialize MLC transport if this is the first MLC channel. */ + if (pd->channel_cnt==1) + { +- if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3]) == 0) ++ if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3], 0) == 0) + fd = FD_7_1_3; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff]) == 0) ++ else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff], 0) == 0) + fd = FD_ff_ff_ff; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0]) == 0) ++ else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0], 0) == 0) + fd = FD_ff_d4_0; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2]) == 0) ++ else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2], 0) == 0) fd = FD_7_1_2; /* raw, mlc, dot4 */ - -- if (claim_interface(libusb_device, &fd_table[fd])) -+ if (claim_interface(libusb_device, &fd_table[fd], 0)) + else { - stat = HPMUD_R_DEVICE_BUSY; - goto bugout; -@@ -1959,6 +1966,91 @@ bugout: +@@ -1960,6 +1967,91 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ @@ -131,7 +149,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + + libusb_device = dev; + fd = claim_id_interface (dev, CLAIM_NO_DETACH); -+ if (fd == FD_NA) ++ if (fd == MAX_FD) + { + try_usblp = 1; + goto try_usblp_instead; @@ -206,7 +224,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2098,7 @@ int __attribute__ ((visibility ("hidden" +@@ -2007,6 +2099,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { @@ -214,7 +232,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2109,19 @@ int __attribute__ ((visibility ("hidden" +@@ -2017,17 +2110,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } @@ -245,32 +263,32 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev *cnt+=1; } } -diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am ---- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-07-23 18:12:15.843895808 +0100 -@@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i +diff -up hplip-3.9.6b/Makefile.am.device-id hplip-3.9.6b/Makefile.am +--- hplip-3.9.6b/Makefile.am.device-id 2009-06-25 20:05:57.000000000 +0100 ++++ hplip-3.9.6b/Makefile.am 2009-07-27 16:05:54.700543137 +0100 +@@ -67,9 +67,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h if NETWORK_BUILD --libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto -+libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto +-libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread -l$(SNMPLIB) -lcrypto ++libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread -l$(SNMPLIB) -lcrypto else --libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -+libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread +-libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread ++libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" -diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in ---- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-07-23 18:12:15.850895526 +0100 -@@ -3954,8 +3954,8 @@ dist_unrel_DATA = +diff -up hplip-3.9.6b/Makefile.in.device-id hplip-3.9.6b/Makefile.in +--- hplip-3.9.6b/Makefile.in.device-id 2009-06-25 21:02:19.000000000 +0100 ++++ hplip-3.9.6b/Makefile.in 2009-07-27 16:06:31.812417344 +0100 +@@ -3618,8 +3618,8 @@ cups_drv = prnt/drv/hpcups.drv @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h -- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto -+ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -+ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto +- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread +- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread -l$(SNMPLIB) -lcrypto ++ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread ++ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread -l$(SNMPLIB) -lcrypto @HPLIP_BUILD_TRUE at libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" - - # hpmudext + @HPLIP_BUILD_TRUE at libhpip_la_LDFLAGS = -version-info 0:1:0 + @HPLIP_BUILD_TRUE at libhpip_la_LIBADD = -lm hplip-disc-media.patch: dj9xxvip.cpp | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) Index: hplip-disc-media.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-disc-media.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-disc-media.patch 24 Jun 2009 09:21:12 -0000 1.1 +++ hplip-disc-media.patch 27 Jul 2009 17:50:49 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp.disc-media hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp ---- hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp.disc-media 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp 2009-06-24 09:54:12.176317380 +0100 +diff -up hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp.disc-media hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp +--- hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp.disc-media 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp 2009-07-27 17:10:55.882543437 +0100 @@ -500,6 +500,23 @@ DRIVER_ERROR HeaderDJ990::Send() QUALITY_MODE eQualityMode; BOOL bDeviceText; @@ -22,10 +22,10 @@ diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip + break; + } + - thePrintContext->GetPrintModeSettings (eQualityMode, eMediaType, eColorMode, bDeviceText); - if (eMediaType == MEDIA_CDDVD) - { -@@ -516,7 +533,9 @@ DRIVER_ERROR HeaderDJ990::Send() + thePrintContext->GetPrintModeSettings (eQualityMode, eMediaType, eColorMode, bDeviceText); + + #ifdef APDK_LINUX +@@ -511,7 +528,9 @@ DRIVER_ERROR HeaderDJ990::Send() * on what was selected from ppd. */ @@ -34,9 +34,9 @@ diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip + */ + // SetMediaType (MediaTypeToPcl (eMediaType)); #endif - - StartSend(); -@@ -733,11 +752,12 @@ void HeaderDJ990::SetMediaSource(MediaSo + + if (eMediaType == MEDIA_CDDVD) +@@ -734,11 +753,12 @@ void HeaderDJ990::SetMediaSource(MediaSo msrccount=EscAmplCopy((BYTE*)mediasource,msource,'H'); if (msource == sourceTrayCDDVD) { hplip-libsane.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: hplip-libsane.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-libsane.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hplip-libsane.patch 20 Feb 2009 13:13:49 -0000 1.5 +++ hplip-libsane.patch 27 Jul 2009 17:50:49 -0000 1.6 @@ -1,24 +1,24 @@ -diff -up hplip-3.9.2/Makefile.am.libsane hplip-3.9.2/Makefile.am ---- hplip-3.9.2/Makefile.am.libsane 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-02-20 11:10:19.000000000 +0000 -@@ -195,7 +195,7 @@ else +diff -up hplip-3.9.6b/Makefile.am.libsane hplip-3.9.6b/Makefile.am +--- hplip-3.9.6b/Makefile.am.libsane 2009-07-27 16:18:54.166417989 +0100 ++++ hplip-3.9.6b/Makefile.am 2009-07-27 16:19:23.487543339 +0100 +@@ -55,7 +55,7 @@ else libsane_hpaio_la_LDFLAGS = -version-info 1:0:0 endif # The following is a interlibrary dependency that must be compiled first. --libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -+libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -lsane +-libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl ++libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl -lsane #libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) - -diff -up hplip-3.9.2/Makefile.in.libsane hplip-3.9.2/Makefile.in ---- hplip-3.9.2/Makefile.in.libsane 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-02-20 11:10:42.000000000 +0000 -@@ -3933,7 +3933,7 @@ dist_unrel_DATA = + endif # SCAN_BUILD +diff -up hplip-3.9.6b/Makefile.in.libsane hplip-3.9.6b/Makefile.in +--- hplip-3.9.6b/Makefile.in.libsane 2009-07-27 16:18:54.174417364 +0100 ++++ hplip-3.9.6b/Makefile.in 2009-07-27 16:19:39.431417307 +0100 +@@ -3608,7 +3608,7 @@ cups_drv = prnt/drv/hpcups.drv @DARWIN_BUILD_FALSE@@HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LDFLAGS = -version-info 1:0:0 @DARWIN_BUILD_TRUE@@HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LDFLAGS = -module -framework CoreFoundation -version-info 1:0:0 # The following is a interlibrary dependency that must be compiled first. -- at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -+ at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -lsane +- at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl ++ at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl -lsane #libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG @HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) hplip-marker-supply.patch: hpcups.cpp | 4 ++-- hpijs.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Index: hplip-marker-supply.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-marker-supply.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hplip-marker-supply.patch 4 Mar 2008 18:02:20 -0000 1.8 +++ hplip-marker-supply.patch 27 Jul 2009 17:50:49 -0000 1.9 @@ -1,17 +1,34 @@ -diff -up hplip-2.8.2/prnt/hpijs/hpijs.cpp.marker-supply hplip-2.8.2/prnt/hpijs/hpijs.cpp ---- hplip-2.8.2/prnt/hpijs/hpijs.cpp.marker-supply 2008-02-08 19:36:38.000000000 +0000 -+++ hplip-2.8.2/prnt/hpijs/hpijs.cpp 2008-03-04 17:51:02.000000000 +0000 -@@ -541,11 +541,11 @@ int main (int argc, char *argv[], char * +diff -up hplip-3.9.6b/prnt/hpijs/hpcups.cpp.marker-supply hplip-3.9.6b/prnt/hpijs/hpcups.cpp +--- hplip-3.9.6b/prnt/hpijs/hpcups.cpp.marker-supply 2009-07-27 18:43:01.724542229 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpcups.cpp 2009-07-27 18:43:09.416543072 +0100 +@@ -347,11 +347,11 @@ int HPCups::initContext (char **argv) + case WARN_LOW_INK_YELLOW: + case WARN_LOW_INK_MULTIPLE_PENS: + { +- BUG ("STATE: marker-supply-low-warning\n"); ++ BUG ("STATE: +marker-supply-low-warning\n"); + break; + } + default: +- BUG ("STATE: -marker-supply-low-warning"); ++ BUG ("STATE: -marker-supply-low-warning\n"); + } + } + +diff -up hplip-3.9.6b/prnt/hpijs/hpijs.cpp.marker-supply hplip-3.9.6b/prnt/hpijs/hpijs.cpp +--- hplip-3.9.6b/prnt/hpijs/hpijs.cpp.marker-supply 2009-07-27 18:42:48.290417159 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpijs.cpp 2009-07-27 18:42:48.315417579 +0100 +@@ -630,11 +630,11 @@ int main (int argc, char *argv[], char * case WARN_LOW_INK_YELLOW: case WARN_LOW_INK_MULTIPLE_PENS: { -- bug ("STATE: marker-supply-low-warning\n"); -+ bug ("STATE: +marker-supply-low-warning\n"); +- BUG ("STATE: marker-supply-low-warning\n"); ++ BUG ("STATE: +marker-supply-low-warning\n"); break; } default: -- bug ("STATE: -marker-supply-low-warning"); -+ bug ("STATE: -marker-supply-low-warning\n"); +- BUG ("STATE: -marker-supply-low-warning"); ++ BUG ("STATE: -marker-supply-low-warning\n"); } } hplip-segfault.patch: hpcups.cpp | 9 ++++++--- hpijs.cpp | 5 ++++- 2 files changed, 10 insertions(+), 4 deletions(-) Index: hplip-segfault.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-segfault.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-segfault.patch 13 Jan 2009 15:20:09 -0000 1.1 +++ hplip-segfault.patch 27 Jul 2009 17:50:49 -0000 1.2 @@ -1,19 +1,35 @@ -diff -up hplip-2.8.12/prnt/hpijs/hpijs.cpp.segfault hplip-2.8.12/prnt/hpijs/hpijs.cpp ---- hplip-2.8.12/prnt/hpijs/hpijs.cpp.segfault 2009-01-13 15:11:55.000000000 +0000 -+++ hplip-2.8.12/prnt/hpijs/hpijs.cpp 2009-01-13 15:13:49.000000000 +0000 -@@ -231,8 +231,14 @@ int hpijs_set_cb (void *set_cb_data, Ijs +diff -up hplip-3.9.6b/prnt/hpijs/hpcups.cpp.segfault hplip-3.9.6b/prnt/hpijs/hpcups.cpp +--- hplip-3.9.6b/prnt/hpijs/hpcups.cpp.segfault 2009-06-25 20:04:19.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpcups.cpp 2009-07-27 18:42:04.561544716 +0100 +@@ -373,9 +373,12 @@ int HPCups::initContext (char **argv) + if (err == PLUGIN_LIBRARY_MISSING) + { + // call dbus here +- SendDbusMessage (getenv ("DEVICE_URI"), getenv ("PRINTER"), +- EVENT_PRINT_FAILED_MISSING_PLUGIN, +- argv[2], atoi (argv[1]), argv[3]); ++ const char *device_uri = getenv ("DEVICE_URI"); ++ const char *printer = getenv ("PRINTER"); ++ if (device_uri && printer) ++ SendDbusMessage (device_uri, printer, ++ EVENT_PRINT_FAILED_MISSING_PLUGIN, ++ argv[2], atoi (argv[1]), argv[3]); + BUG ("ERROR: unable to set device = %s, err = %d\n", attr->value, err); + return 1; + } +diff -up hplip-3.9.6b/prnt/hpijs/hpijs.cpp.segfault hplip-3.9.6b/prnt/hpijs/hpijs.cpp +--- hplip-3.9.6b/prnt/hpijs/hpijs.cpp.segfault 2009-06-25 20:04:19.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpijs.cpp 2009-07-27 18:39:46.755417388 +0100 +@@ -253,8 +253,11 @@ int hpijs_set_cb (void *set_cb_data, Ijs // call dbus here const char *user_name = " "; const char *title = " "; + char *device_uri = getenv ("DEVICE_URI"); -+ char *printer = getenv("PRINTER"); ++ char *printer = getenv ("PRINTER"); int job_id = 0; - SendDbusMessage (getenv ("DEVICE_URI"), getenv("PRINTER"), -+ if (!device_uri) -+ device_uri = ""; -+ if (!printer) -+ printer = ""; -+ SendDbusMessage (device_uri, printer, ++ SendDbusMessage (device_uri ? device_uri : "", ++ printer ? printer : "", EVENT_PRINT_FAILED_MISSING_PLUGIN, user_name, job_id, title); - bug("unable to set device=%s, err=%d\n", svalue, r); + BUG("unable to set device=%s, err=%d\n", svalue, r); hplip-strstr-const.patch: dj3320.cpp | 2 +- registry.cpp | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) Index: hplip-strstr-const.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-strstr-const.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-strstr-const.patch 20 Feb 2009 13:16:54 -0000 1.1 +++ hplip-strstr-const.patch 27 Jul 2009 17:50:50 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up hplip-3.9.2/prnt/hpijs/dj3320.cpp.strstr-const hplip-3.9.2/prnt/hpijs/dj3320.cpp ---- hplip-3.9.2/prnt/hpijs/dj3320.cpp.strstr-const 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/dj3320.cpp 2009-02-20 11:27:51.000000000 +0000 -@@ -403,7 +403,7 @@ DISPLAY_STATUS DJ3320::ParseError (BYTE +diff -up hplip-3.9.6b/prnt/hpijs/dj3320.cpp.strstr-const hplip-3.9.6b/prnt/hpijs/dj3320.cpp +--- hplip-3.9.6b/prnt/hpijs/dj3320.cpp.strstr-const 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/dj3320.cpp 2009-07-27 16:14:52.868542337 +0100 +@@ -405,7 +405,7 @@ DISPLAY_STATUS DJ3320::ParseError (BYTE { DRIVER_ERROR err = NO_ERROR; BYTE byDevIDBuffer[DevIDBuffSize]; @@ -10,18 +10,32 @@ diff -up hplip-3.9.2/prnt/hpijs/dj3320.c BYTE byStatus1, byStatus2; memset(byDevIDBuffer, 0, sizeof(byDevIDBuffer)); -diff -up hplip-3.9.2/prnt/hpijs/registry.cpp.strstr-const hplip-3.9.2/prnt/hpijs/registry.cpp ---- hplip-3.9.2/prnt/hpijs/registry.cpp.strstr-const 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/registry.cpp 2009-02-20 11:27:00.000000000 +0000 -@@ -292,15 +292,15 @@ DRIVER_ERROR DeviceRegistry::SelectDevic +diff -up hplip-3.9.6b/prnt/hpijs/registry.cpp.strstr-const hplip-3.9.6b/prnt/hpijs/registry.cpp +--- hplip-3.9.6b/prnt/hpijs/registry.cpp.strstr-const 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/registry.cpp 2009-07-27 16:18:41.583417187 +0100 +@@ -290,14 +290,14 @@ DRIVER_ERROR DeviceRegistry::SelectDevic + err = pSS->GetDeviceID(DevIDBuffer, DevIDBuffSize, FALSE); + ERRCHECK; // should be either NO_ERROR or BAD_DEVICE_ID + +- char *cmdStr = (char *) strstr ((const char *) DevIDBuffer+2, "CMD:"); ++ char *cmdStr = strstr ((char *) DevIDBuffer+2, "CMD:"); + char *cmdStrEnd; + if ((strstr((const char *) DevIDBuffer+2,"CMD:LDL"))) + { device = eDJ3320; match = TRUE; } -- char *cmdStr = strstr ((const char *) DevIDBuffer+2, "CMD:"); -+ const char *cmdStr = strstr ((const char *) DevIDBuffer+2, "CMD:"); - if (!cmdStr) +- if (!match && cmdStr && (cmdStrEnd = (char *) strstr (cmdStr, ";"))) ++ if (!match && cmdStr && (cmdStrEnd = strstr (cmdStr, ";"))) + { + *cmdStrEnd = '\0'; + if (strstr (cmdStr, "LDL")) +@@ -309,12 +309,12 @@ DRIVER_ERROR DeviceRegistry::SelectDevic + } + if (!match && !cmdStr) { - cmdStr = strstr ((const char *) DevIDBuffer+2, "COMMAND SET:"); +- cmdStr = (char *) strstr ((const char *) DevIDBuffer+2, "COMMAND SET:"); ++ cmdStr = strstr ((char *) DevIDBuffer+2, "COMMAND SET:"); } - if (!match && cmdStr && (strstr ((const char *) cmdStr+4, "POSTSCRIPT") || - strstr ((const char *) cmdStr+4, "PostScript") || Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- hplip.spec 25 Jul 2009 02:12:55 -0000 1.208 +++ hplip.spec 27 Jul 2009 17:50:50 -0000 1.209 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip -Version: 3.9.2 -Release: 9%{?dist} +Version: 3.9.6b +Release: 1%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -140,7 +140,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} %configure --disable-foomatic-xml-install --disable-cups-install \ --enable-scan-build --enable-gui-build --enable-fax-build \ --disable-foomatic-rip-hplip-install --enable-dbus \ - --enable-qt4 + --enable-qt4 --enable-hpcups-install --enable-cups-drv-install \ + --enable-hpijs-install + sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -207,7 +209,7 @@ rm -rf %{buildroot} %{_bindir}/hp-align %{_bindir}/hp-clean %{_bindir}/hp-colorcal -%{_bindir}/hp-devicesetup +%{_bindir}/hp-devicesettings %{_bindir}/hp-fab %{_bindir}/hp-faxsetup %{_bindir}/hp-firmware @@ -217,6 +219,7 @@ rm -rf %{buildroot} %{_bindir}/hp-makecopies %{_bindir}/hp-makeuri %{_bindir}/hp-mkuri +%{_bindir}/hp-pkservice %{_bindir}/hp-plugin %{_bindir}/hp-pqdiag %{_bindir}/hp-printsettings @@ -228,6 +231,7 @@ rm -rf %{buildroot} %{_bindir}/hp-testpage %{_bindir}/hp-timedate %{_bindir}/hp-unload +%{_bindir}/hp-wificonfig # Note: this must be /usr/lib not %{_libdir}, since that's the # CUPS serverbin directory. /usr/lib/cups/backend/hp @@ -237,7 +241,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/align.py* %{_datadir}/hplip/clean.py* %{_datadir}/hplip/colorcal.py* -%{_datadir}/hplip/devicesetup.py* +%{_datadir}/hplip/devicesettings.py* %{_datadir}/hplip/fab.py* %{_datadir}/hplip/fax %{_datadir}/hplip/faxsetup.py* @@ -250,6 +254,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/linefeedcal.py* %{_datadir}/hplip/makecopies.py* %{_datadir}/hplip/makeuri.py* +%{_datadir}/hplip/pkservice.py* %{_datadir}/hplip/plugin.py* %{_datadir}/hplip/pqdiag.py* %{_datadir}/hplip/printsettings.py* @@ -261,6 +266,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/testpage.py* %{_datadir}/hplip/timedate.py* %{_datadir}/hplip/unload.py* +%{_datadir}/hplip/wificonfig.py* # Directories %{_datadir}/hplip/base %{_datadir}/hplip/copier @@ -296,8 +302,6 @@ rm -rf %{buildroot} %{_datadir}/hplip/toolbox.py* # Directories %{_datadir}/hplip/data/images -%{_datadir}/hplip/plugins -%{_datadir}/hplip/ui %{_datadir}/hplip/ui4 %files -n hpijs @@ -308,6 +312,9 @@ rm -rf %{buildroot} %{_datadir}/cups/drv/* # Note: this must be /usr/lib not %{_libdir}, since that's the # CUPS serverbin directory. +/usr/lib/cups/filter/hpcac +/usr/lib/cups/filter/hpcups +/usr/lib/cups/filter/hpcupsfax /usr/lib/cups/filter/hplipjs %files -n libsane-hpaio @@ -336,6 +343,9 @@ fi exit 0 %changelog +* Mon Jul 27 2009 Tim Waugh 3.9.6b-1 +- 3.9.6b. + * Fri Jul 24 2009 Fedora Release Engineering - 3.9.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From veillard at fedoraproject.org Mon Jul 27 17:52:29 2009 From: veillard at fedoraproject.org (Daniel Veillard) Date: Mon, 27 Jul 2009 17:52:29 +0000 (UTC) Subject: rpms/libvirt/devel .cvsignore, 1.42, 1.43 libvirt.spec, 1.146, 1.147 sources, 1.43, 1.44 Message-ID: <20090727175229.30A3F11C00E8@cvs1.fedora.phx.redhat.com> Author: veillard Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8259 Modified Files: .cvsignore libvirt.spec sources Log Message: Push a prerelease of 0.7.0 for F12 'deadline', Daniel Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 3 Jul 2009 15:07:12 -0000 1.42 +++ .cvsignore 27 Jul 2009 17:52:28 -0000 1.43 @@ -9,3 +9,4 @@ libvirt-0.6.2.tar.gz libvirt-0.6.3.tar.gz libvirt-0.6.4.tar.gz libvirt-0.6.5.tar.gz +libvirt-0.7.0-0.1.gitf055724.tar.gz Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- libvirt.spec 25 Jul 2009 08:51:35 -0000 1.146 +++ libvirt.spec 27 Jul 2009 17:52:28 -0000 1.147 @@ -13,6 +13,8 @@ %define with_libvirtd 0%{!?_without_libvirtd:1} %define with_uml 0%{!?_without_uml:1} %define with_one 0%{!?_without_one:1} +# default to off +%define with_phyp 0%{!?_without_phyp:0} %define with_network 0%{!?_without_network:1} %define with_storage_fs 0%{!?_without_storage_fs:1} %define with_storage_lvm 0%{!?_without_storage_lvm:1} @@ -46,6 +48,14 @@ %define with_capng 0%{!?_without_capng:1} %endif +%if 0%{?fedora} >= 12 +%define qemu_user qemu +%define qemu_group qemu +%else +%define qemu_user root +%define qemu_group root +%endif + # # If building on RHEL switch on the specific support # for the specific Xen version @@ -61,11 +71,11 @@ Summary: Library providing a simple API virtualization Name: libvirt -Version: 0.6.5 -Release: 3%{?dist}%{?extra_release} +Version: 0.7.0 +Release: 0.1.gitf055724%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries -Source: libvirt-%{version}.tar.gz +Source: libvirt-0.7.0-0.1.gitf055724.tar.gz # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) @@ -73,6 +83,10 @@ Patch200: libvirt-0.6.4-svirt-sound.patc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://libvirt.org/ + +# The client side, i.e. shared libs and virsh are in a subpackage +Requires: libvirt-client = %{version}-%{release} + BuildRequires: python python-devel Requires: readline Requires: ncurses @@ -99,6 +113,8 @@ BuildRequires: util-linux # For showmount in FS driver (netfs discovery) BuildRequires: nfs-utils Requires: nfs-utils +# For glusterfs +Requires: glusterfs-client >= 2.0.2 %endif %if %{with_qemu} # From QEMU RPMs @@ -180,16 +196,38 @@ BuildRequires: numactl-devel %if %{with_capng} BuildRequires: libcap-ng-devel >= 0.5.0 %endif - -Obsoletes: libvir <= 0.2 -Provides: libvir = %{version}-%{release} +%if %{with_phyp} +BuildRequires: libssh-devel >= 0.3.1 +%endif # Fedora build root suckage BuildRequires: gawk %description Libvirt is a C toolkit to interact with the virtualization capabilities -of recent versions of Linux (and other OSes). +of recent versions of Linux (and other OSes). The main package includes +the libvirtd server exporting the virtualization support. + +%package client +Summary: client side library and utilities of the libvirt library +Group: Development/Libraries +Requires: libxml2 +Requires: readline +Requires: ncurses +# So remote clients can access libvirt over SSH tunnel +# (client invokes 'nc' against the UNIX socket on the server) +Requires: nc +%if %{with_sasl} +Requires: cyrus-sasl +# Not technically required, but makes 'out-of-box' config +# work correctly & doesn't have onerous dependencies +Requires: cyrus-sasl-md5 +%endif + +%description client +Shared libraries and client binaries needed to access to the +virtualization capabilities of recent versions of Linux (and other OSes). + %package devel Summary: Libraries, includes, etc. to compile with the libvirt library @@ -199,8 +237,6 @@ Requires: pkgconfig %if %{with_xen} Requires: xen-devel %endif -Obsoletes: libvir-devel <= 0.2 -Provides: libvir-devel = %{version}-%{release} %description devel Includes and documentations for the C library providing an API to use @@ -211,8 +247,6 @@ the virtualization capabilities of recen Summary: Python bindings for the libvirt library Group: Development/Libraries Requires: libvirt = %{version}-%{release} -Obsoletes: libvir-python <= 0.2 -Provides: libvir-python = %{version}-%{release} %description python The libvirt-python package contains a module that permits applications @@ -258,6 +292,10 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %define _without_avahi --without-avahi %endif +%if ! %{with_phyp} +%define _without_phyp --without-phyp +%endif + %if ! %{with_polkit} %define _without_polkit --without-polkit %endif @@ -318,6 +356,7 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_libvirtd} \ %{?_without_uml} \ %{?_without_one} \ + %{?_without_phyp} \ %{?_without_network} \ %{?_with_rhel5_api} \ %{?_without_storage_fs} \ @@ -326,9 +365,9 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_storage_disk} \ %{?_without_numactl} \ --with-init-script=redhat \ - --with-qemud-pid-file=%{_localstatedir}/run/libvirt_qemud.pid \ - --with-remote-file=%{_localstatedir}/run/libvirtd.pid + --with-remote-pid-file=%{_localstatedir}/run/libvirtd.pid make %{?_smp_mflags} +gzip -9 ChangeLog %install rm -rf %{buildroot} @@ -338,6 +377,7 @@ rm -rf %{buildroot} (cd docs/examples/python ; rm -rf .deps Makefile Makefile.in) (cd examples/hellolibvirt ; make clean ; rm -rf .deps .libs Makefile Makefile.in) (cd examples/domain-events/events-c ; make clean ;rm -rf .deps .libs Makefile Makefile.in) +(cd python/tests ; rm -f *.py?) rm -f $RPM_BUILD_ROOT%{_libdir}/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/*.a @@ -417,15 +457,10 @@ fi %postun -p /sbin/ldconfig -%files -f %{name}.lang +%files %defattr(-, root, root) -%doc AUTHORS ChangeLog NEWS README COPYING.LIB TODO -%{_mandir}/man1/virsh.1* -%{_mandir}/man1/virt-xml-validate.1* -%{_bindir}/virsh -%{_bindir}/virt-xml-validate -%{_libdir}/lib*.so.* +%doc AUTHORS ChangeLog.gz NEWS README COPYING.LIB TODO %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/ %if %{with_qemu} @@ -445,26 +480,12 @@ fi %config(noreplace) %{_sysconfdir}/libvirt/qemu.conf %endif -%if %{with_sasl} -%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf -%endif - %if %{with_qemu} %dir %{_datadir}/libvirt/ %dir %{_datadir}/libvirt/networks/ %{_datadir}/libvirt/networks/default.xml %endif -%dir %{_datadir}/libvirt/ -%dir %{_datadir}/libvirt/schemas/ - -%{_datadir}/libvirt/schemas/domain.rng -%{_datadir}/libvirt/schemas/network.rng -%{_datadir}/libvirt/schemas/storagepool.rng -%{_datadir}/libvirt/schemas/storagevol.rng -%{_datadir}/libvirt/schemas/nodedev.rng -%{_datadir}/libvirt/schemas/capability.rng - %dir %{_localstatedir}/run/libvirt/ %dir %{_localstatedir}/lib/libvirt/ @@ -526,6 +547,31 @@ fi %doc docs/*.xml +%files client -f %{name}.lang +%defattr(-, root, root) +%doc AUTHORS ChangeLog.gz NEWS README COPYING.LIB TODO + +%{_mandir}/man1/virsh.1* +%{_mandir}/man1/virt-xml-validate.1* +%{_bindir}/virsh +%{_bindir}/virt-xml-validate +%{_libdir}/lib*.so.* + +%dir %{_datadir}/libvirt/ +%dir %{_datadir}/libvirt/schemas/ + +%{_datadir}/libvirt/schemas/domain.rng +%{_datadir}/libvirt/schemas/network.rng +%{_datadir}/libvirt/schemas/storagepool.rng +%{_datadir}/libvirt/schemas/storagevol.rng +%{_datadir}/libvirt/schemas/nodedev.rng +%{_datadir}/libvirt/schemas/capability.rng +%{_datadir}/libvirt/schemas/interface.rng + +%if %{with_sasl} +%config(noreplace) %{_sysconfdir}/sasl2/libvirt.conf +%endif + %files devel %defattr(-, root, root) @@ -555,9 +601,14 @@ fi %doc python/TODO %doc python/libvirtclass.txt %doc docs/examples/python +# %dir %{_datadir}/doc/libvirt-%{version}-%{release}/examples +# %{_datadir}/doc/libvirt-%{version}-%{release}/examples/*.py %endif %changelog +* Mon Jul 27 2009 Daniel Veillard - 0.7.0-0.1.gitf055724 +- prerelease of 0.7.0 + * Sat Jul 25 2009 Fedora Release Engineering - 0.6.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 3 Jul 2009 15:07:12 -0000 1.43 +++ sources 27 Jul 2009 17:52:29 -0000 1.44 @@ -1,2 +1 @@ -344a6913a94582ea3ab0ad75a9bfef22 libvirt-0.6.4.tar.gz -4117001afbb6fc13a9e48ad1531b2add libvirt-0.6.5.tar.gz +7c8008af99963682cb38666d2f1661ba libvirt-0.7.0-0.1.gitf055724.tar.gz From rhughes at fedoraproject.org Mon Jul 27 17:57:47 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 27 Jul 2009 17:57:47 +0000 (UTC) Subject: rpms/gnome-power-manager/devel .cvsignore, 1.62, 1.63 gnome-power-manager.spec, 1.167, 1.168 sources, 1.63, 1.64 Message-ID: <20090727175747.84A3311C00E8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10832 Modified Files: .cvsignore gnome-power-manager.spec sources Log Message: * Mon Jul 27 2009 Richard Hughes - 2.27.3-0.2.20090727git - Update to todays git snapshot. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 21 Jul 2009 15:31:57 -0000 1.62 +++ .cvsignore 27 Jul 2009 17:57:47 -0000 1.63 @@ -1 +1 @@ -gnome-power-manager-2.27.3-20090721.tar.gz +gnome-power-manager-2.27.3-20090727.tar.gz Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.167 retrieving revision 1.168 diff -u -p -r1.167 -r1.168 --- gnome-power-manager.spec 25 Jul 2009 00:44:32 -0000 1.167 +++ gnome-power-manager.spec 27 Jul 2009 17:57:47 -0000 1.168 @@ -1,6 +1,6 @@ %define hal_version 0.5.8 %define dbus_version 0.61 -%define alphatag 20090721 +%define alphatag 20090727 Summary: GNOME Power Manager Name: gnome-power-manager @@ -156,6 +156,9 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Mon Jul 27 2009 Richard Hughes - 2.27.3-0.2.20090727git +- Update to todays git snapshot. + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-0.3.20090721git - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 21 Jul 2009 19:57:14 -0000 1.63 +++ sources 27 Jul 2009 17:57:47 -0000 1.64 @@ -1 +1 @@ -4e9952e5347df245fa2ad2bf3d316584 gnome-power-manager-2.27.3-20090721.tar.gz +c554a2b0f2f08b73875f7c8e2a537c8b gnome-power-manager-2.27.3-20090727.tar.gz From notting at fedoraproject.org Mon Jul 27 17:59:56 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 17:59:56 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.78-man.patch,1.3,1.4 Message-ID: <20090727175956.E291111C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11884 Modified Files: sysvinit-2.78-man.patch Log Message: Rediff. sysvinit-2.78-man.patch: sysvinit-2.86/man/init.8 | 2 +- sysvinit-2.86/man/last.1 | 2 ++ sysvinit-2.87dsf/man/sulogin.8 | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) Index: sysvinit-2.78-man.patch =================================================================== RCS file: /cvs/extras/rpms/sysvinit/devel/sysvinit-2.78-man.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sysvinit-2.78-man.patch 10 Aug 2006 19:43:53 -0000 1.3 +++ sysvinit-2.78-man.patch 27 Jul 2009 17:59:56 -0000 1.4 @@ -1,14 +1,3 @@ ---- sysvinit-2.86/man/sulogin.8.manpatch 2004-06-09 08:47:45.000000000 -0400 -+++ sysvinit-2.86/man/sulogin.8 2006-08-10 15:33:59.000000000 -0400 -@@ -9,7 +9,7 @@ - .RB [ " tty-device " ] - .SH DESCRIPTION - .I sulogin --is invoked by \fBinit(8)\fP when the system goes into single user mode -+can be invoked by \fBinit(8)\fP when the system goes into single user mode - (this is done through an entry in \fIinittab(5)\fP). \fBInit\fP also - tries to execute \fIsulogin\fP when it is passed the \fB-b\fP flag - from the bootmonitor (eg, LILO). --- sysvinit-2.86/man/last.1.manpatch 2006-08-10 15:40:01.000000000 -0400 +++ sysvinit-2.86/man/last.1 2006-08-10 15:42:17.000000000 -0400 @@ -60,6 +60,8 @@ @@ -31,3 +20,15 @@ .PP When entering single user mode, \fBinit\fP initializes the consoles \fBstty\fP settings to sane values. Clocal mode is set. Hardware +diff -up sysvinit-2.87dsf/man/sulogin.8.foo sysvinit-2.87dsf/man/sulogin.8 +--- sysvinit-2.87dsf/man/sulogin.8.foo 2009-07-27 12:54:31.000000000 -0400 ++++ sysvinit-2.87dsf/man/sulogin.8 2009-07-27 12:54:37.000000000 -0400 +@@ -9,7 +9,7 @@ sulogin \- Single-user login + [ \fITTY\fP ] + .SH DESCRIPTION + .I sulogin +-is invoked by \fBinit(8)\fP when the system goes into single user mode. ++can be invoked by \fBinit(8)\fP when the system goes into single user mode. + (This is done through an entry in \fIinittab(5)\fP.) + \fBInit\fP also + tries to execute \fIsulogin\fP when From notting at fedoraproject.org Mon Jul 27 18:00:27 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 18:00:27 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit.spec,1.74,1.75 Message-ID: <20090727180027.B03D611C043D@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12060 Modified Files: sysvinit.spec Log Message: Update to new upstream version. pidof patches still need work. Index: sysvinit.spec =================================================================== RCS file: /cvs/extras/rpms/sysvinit/devel/sysvinit.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sysvinit.spec 27 Jul 2009 05:27:49 -0000 1.74 +++ sysvinit.spec 27 Jul 2009 18:00:26 -0000 1.75 @@ -1,35 +1,19 @@ Summary: Programs which control basic system processes Name: sysvinit -Version: 2.86 -Release: 28 +Version: 2.87 +Release: 0.dsf%{?dist} License: GPLv2+ Group: System Environment/Base -Source: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/sysvinit-%{version}.tar.gz -URL: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/ +Source: https://alioth.debian.org/frs/download.php/3060/sysvinit-%{version}dsf.tar.gz +URL: https://alioth.debian.org/projects/pkg-sysvinit/ Patch1: sysvinit-2.78-man.patch -Patch2: sysvinit-2.86-md5-be.patch -Patch3: sysvinit-2.78-halt.patch -Patch4: sysvinit-2.86-autofsck.patch -Patch5: sysvinit-2.86-loginshell.patch -Patch6: sysvinit-2.86-makefile.patch -Patch7: sysvinit-2.86-chroot.patch -Patch8: sysvinit-2.86-inittab.patch -Patch9: sysvinit-2.86-environ.patch +Patch2: sysvinit-2.86-autofsck.patch +Patch3: sysvinit-2.86-loginshell.patch +Patch4: sysvinit-2.86-inittab.patch +Patch5: sysvinit-2.86-single.patch +Patch6: sysvinit-2.86-quiet.patch Patch10: sysvinit-2.86-pidof.patch -Patch11: sysvinit-2.86-haltname.patch -Patch12: sysvinit-2.86-haltman.patch -Patch13: sysvinit-2.86-single.patch -Patch14: sysvinit-2.86-maxproclen.patch -Patch15: sysvinit-2.86-ipv6.patch -Patch16: sysvinit-2.86-quiet.patch -Patch17: sysvinit-2.86-godot.patch -Patch18: sysvinit-2.86-timeval.patch -Patch19: sysvinit-2.86-console-open.patch -Patch20: sysvinit-selinux.patch -Patch21: sysvinit-no-abort.patch -Patch22: 81_killall_avoid_init.dpatch -Patch23: sysvinit-2.86-pidof-man.patch -Patch24: sysvinit-2.86-utmpdump.patch +Patch11: sysvinit-2.86-pidof-man.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: pam >= 0.66-5 Requires: filesystem >= 2.2.4-1 @@ -55,61 +39,28 @@ The sysvinit-tools package contains vari management. %prep -%setup -q -n sysvinit-%{version} +%setup -q -n sysvinit-%{version}dsf # We use a shell, not sulogin. Other random man fixes go here (such as #192804) %patch1 -p1 -b .manpatch -# Handle bigendian MD5 -%patch2 -p1 -b .be -# Create /halt or /poweroff on shutdown -%patch3 -p1 -b .halt # Unlink /.autofsck on shutdown -f -%patch4 -p1 -b .autofsck +%patch2 -p1 -b .autofsck # Invoke single-user shell as a login shell (#105653) -%patch5 -p1 -b .loginshell -# Various makefile adjustments -%patch6 -p1 -b .makefile -# Add -c option for only matching processes with the same root -%patch7 -p1 -b .chroot +%patch3 -p1 -b .loginshell # Adjust examples in inittab(5) to more accurately reflect RH/Fedora # usage (#173572) -%patch8 -p1 -b .inittabdocs -# Assumedly, if we're passing an environment as the last arg, we -# want execle, not execl. -%patch9 -p1 -b .environ +%patch4 -p1 -b .inittabdocs +# Fix single user mode (#176348) +%patch5 -p1 -b .single +# Be less verbose when booted with 'quiet' +%patch6 -p1 -b .quiet # Fix various things in pidof - pidof /x/y matching /z/y, pidof -x # for scripts, etc. %patch10 -p1 -b .pidof -# Fix halt when called by login -%patch11 -p1 -b .haltname -# Document pam_console usage -%patch12 -p1 -b .haltman -# Fix single user mode (#176348) -%patch13 -p1 -b .single -# Fix under-copy of proc title (#188160) -%patch14 -p1 -b .maxproclen -# ipv6 support in last -%patch15 -p1 -b .ipv6 -# Be less verbose when booted with 'quiet' -%patch16 -p1 -b .quiet -# Preserve 'waiting' across re-exec (#199305, #201146, #143289) -%patch17 -p1 -b .godot -# Don't overwrite ut_addr_v6 on 64-bit platforms (#176494) -%patch18 -p1 -b .timeval -# Allow some time for failed opens to resolve themselves (#181546) -%patch19 -p1 -b .console-open -# SELinux support for init - loading policy, etc. -%patch20 -p1 -b .selinux -# Don't abort if policy is already loaded -%patch21 -p1 -b .no-abort -# Make killall avoid init -%patch22 -p1 -b .nopid1 # Document some of the behavior of pidof. (#201317) -%patch23 -p1 -b .pidof -# Don't pass around unchecked malloc (and avoid a leak) (#473485) -%patch24 -p1 -b .wheee +%patch11 -p1 -b .pidof %build -make %{?_smp_mflags} CC="%{__cc}" CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" -C src +make %{?_smp_mflags} CC="%{__cc}" CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" LDFLAGS="" LCRYPT="-lcrypt" -C src %install rm -rf $RPM_BUILD_ROOT @@ -119,10 +70,13 @@ done make -C src ROOT=$RPM_BUILD_ROOT MANDIR=%{_mandir} \ BIN_OWNER=`id -nu` BIN_GROUP=`id -ng` install +rm -f $RPM_BUILD_ROOT/bin/pidof ln -snf killall5 $RPM_BUILD_ROOT/sbin/pidof - +rm -f $RPM_BUILD_ROOT/sbin/bootlogd +rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/bootlogd* chmod 755 $RPM_BUILD_ROOT/usr/bin/utmpdump +# Remove these files, as we use upstart as /sbin/init. rm -f $RPM_BUILD_ROOT/sbin/{halt,init,poweroff,reboot,runlevel,shutdown,telinit} rm -f $RPM_BUILD_ROOT/%{_includedir}/initreq.h rm -f $RPM_BUILD_ROOT/%{_mandir}/man5/* @@ -136,10 +90,10 @@ exit 0 rm -rf $RPM_BUILD_ROOT %if 0 +# Disabled for upstart. %files %defattr(-,root,root) %doc doc/Changelog doc/Install COPYRIGHT -%doc doc/sysvinit-%{version}.lsm /sbin/halt /sbin/init /sbin/poweroff @@ -160,7 +114,7 @@ rm -rf $RPM_BUILD_ROOT %files tools %defattr(-,root,root) -%doc doc/Changelog +%doc doc/Changelog COPYRIGHT /bin/mountpoint %{_bindir}/last %{_bindir}/lastb @@ -176,6 +130,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/sulogin* %changelog +* Mon Jul 27 2009 Bill Nottingham - 2.87-0.dsf +- Update to new upstream release 2.87dsf +-- remove many upstreamed/obsolete patches + * Sun Jul 26 2009 Fedora Release Engineering - 2.86-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dmaphy at fedoraproject.org Mon Jul 27 18:09:12 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Mon, 27 Jul 2009 18:09:12 +0000 (UTC) Subject: rpms/geany/devel geany.spec,1.27,1.28 Message-ID: <20090727180912.BD92911C00E8@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15704 Modified Files: geany.spec Log Message: Rebuilt Package Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/devel/geany.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- geany.spec 27 Jul 2009 17:47:22 -0000 1.27 +++ geany.spec 27 Jul 2009 18:09:12 -0000 1.28 @@ -1,6 +1,6 @@ Name: geany Version: 0.17 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A fast and lightweight IDE using GTK2 Group: Development/Tools @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog +* Mom Jul 27 2009 Dominic Hopf - 0.17-10 +- Rebuilt Package + * Mon Jul 27 2009 Dominic Hopf - 0.17-9 - install additional *.tags-files to $prefix/share/geany/tags From dmaphy at fedoraproject.org Mon Jul 27 18:11:02 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Mon, 27 Jul 2009 18:11:02 +0000 (UTC) Subject: rpms/geany/devel geany.spec,1.28,1.29 Message-ID: <20090727181102.C43EF11C043D@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16513 Modified Files: geany.spec Log Message: Rebuild Package Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/devel/geany.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- geany.spec 27 Jul 2009 18:09:12 -0000 1.28 +++ geany.spec 27 Jul 2009 18:11:02 -0000 1.29 @@ -97,8 +97,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog -* Mom Jul 27 2009 Dominic Hopf - 0.17-10 -- Rebuilt Package +* Mon Jul 27 2009 Dominic Hopf - 0.17-10 +- Rebuild Package * Mon Jul 27 2009 Dominic Hopf - 0.17-9 - install additional *.tags-files to $prefix/share/geany/tags From jdieter at fedoraproject.org Mon Jul 27 18:11:03 2009 From: jdieter at fedoraproject.org (Jonathan Dieter) Date: Mon, 27 Jul 2009 18:11:03 +0000 (UTC) Subject: rpms/deltarpm/devel deltarpm.spec, 1.20, 1.21 import.log, 1.1, 1.2 sources, 1.4, 1.5 Message-ID: <20090727181103.1E1E611C04E1@cvs1.fedora.phx.redhat.com> Author: jdieter Update of /cvs/extras/rpms/deltarpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16470/devel Modified Files: deltarpm.spec import.log sources Log Message: Fix bug in handling Fedora's xz compressed rpms Index: deltarpm.spec =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/deltarpm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- deltarpm.spec 27 Jul 2009 15:44:00 -0000 1.20 +++ deltarpm.spec 27 Jul 2009 18:11:02 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Create deltas between rpms Name: deltarpm Version: 3.5 -Release: 0.git.20090727%{?dist} +Release: 0.git.20090727.1%{?dist} License: BSD Group: System Environment/Base URL: http://gitorious.org/deltarpm/deltarpm @@ -61,6 +61,9 @@ deltarpms. %{_bindir}/drpmsync %changelog +* Mon Jul 27 2009 Jonathan Dieter - 3.5-0.git.20090727.1 +- Fix bug in reading Fedora's xz-compressed rpms + * Mon Jul 27 2009 Jonathan Dieter - 3.5-0.git.20090727 - Update to current upstream git repository - Add upstream xz compression support Index: import.log =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 Jul 2009 15:44:01 -0000 1.1 +++ import.log 27 Jul 2009 18:11:02 -0000 1.2 @@ -1 +1,2 @@ deltarpm-3_5-0_git_20090727_fc11:HEAD:deltarpm-3.5-0.git.20090727.fc11.src.rpm:1248709382 +deltarpm-3_5-0_git_20090727_1_fc11:HEAD:deltarpm-3.5-0.git.20090727.1.fc11.src.rpm:1248718195 Index: sources =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 27 Jul 2009 15:44:01 -0000 1.4 +++ sources 27 Jul 2009 18:11:02 -0000 1.5 @@ -1 +1 @@ -ad634f985497e3158202c78865d94d84 deltarpm-git-20090727.tar.bz2 +faed513a742e0faa89a5fd006e8e02f3 deltarpm-git-20090727.tar.bz2 From steved at fedoraproject.org Mon Jul 27 18:14:37 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Mon, 27 Jul 2009 18:14:37 +0000 (UTC) Subject: rpms/nfs-utils/F-11 nfs-utils-1.2.0-nfsd-41vers.patch, NONE, 1.1 nfs-utils.spec, 1.229, 1.230 Message-ID: <20090727181437.75E7911C00E8@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/nfs-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18255 Modified Files: nfs-utils.spec Added Files: nfs-utils-1.2.0-nfsd-41vers.patch Log Message: Fixed 4.1 versioning problem (bz 513496) nfs-utils-1.2.0-nfsd-41vers.patch: nfssvc.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) --- NEW FILE nfs-utils-1.2.0-nfsd-41vers.patch --- diff -up nfs-utils-1.2.0/support/nfs/nfssvc.c.orig nfs-utils-1.2.0/support/nfs/nfssvc.c --- nfs-utils-1.2.0/support/nfs/nfssvc.c.orig 2009-06-02 10:43:05.000000000 -0400 +++ nfs-utils-1.2.0/support/nfs/nfssvc.c 2009-07-27 11:22:13.000000000 -0400 @@ -127,17 +127,19 @@ nfssvc_versbits(unsigned int ctlbits, in if (fd < 0) return; + n = minorvers4 >= 0 ? minorvers4 : -minorvers4; + if (n >= NFSD_MINMINORVERS4 && n <= NFSD_MAXMINORVERS4) + off += snprintf(ptr+off, BUFSIZ - off, "%c4.%d ", + minorvers4 > 0 ? '+' : '-', + n); + for (n = NFSD_MINVERS; n <= NFSD_MAXVERS; n++) { if (NFSCTL_VERISSET(ctlbits, n)) off += snprintf(ptr+off, BUFSIZ - off, "+%d ", n); else off += snprintf(ptr+off, BUFSIZ - off, "-%d ", n); } - n = minorvers4 >= 0 ? minorvers4 : -minorvers4; - if (n >= NFSD_MINMINORVERS4 && n <= NFSD_MAXMINORVERS4) - off += snprintf(ptr+off, BUFSIZ - off, "%c4.%d", - minorvers4 > 0 ? '+' : '-', - n); + snprintf(ptr+off, BUFSIZ - off, "\n"); if (write(fd, buf, strlen(buf)) != strlen(buf)) { syslog(LOG_ERR, "nfssvc: Setting version failed: errno %d (%s)", Index: nfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs-utils/F-11/nfs-utils.spec,v retrieving revision 1.229 retrieving revision 1.230 diff -u -p -r1.229 -r1.230 --- nfs-utils.spec 11 Jun 2009 18:04:04 -0000 1.229 +++ nfs-utils.spec 27 Jul 2009 18:14:37 -0000 1.230 @@ -2,7 +2,7 @@ Summary: NFS utilities and supporting cl Name: nfs-utils URL: http://sourceforge.net/projects/nfs Version: 1.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 # group all 32bit related archs @@ -22,6 +22,8 @@ Patch00: nfs-utils-1.0.5-statdpath.patch Patch01: nfs-utils-1.1.0-smnotify-path.patch Patch02: nfs-utils-1.1.0-exp-subtree-warn-off.patch +Patch100: nfs-utils-1.2.0-nfsd-41vers.patch + Group: System Environment/Daemons Provides: exportfs = %{epoch}:%{version}-%{release} Provides: nfsstat = %{epoch}:%{version}-%{release} @@ -71,6 +73,8 @@ This package also contains the mount.nfs %patch01 -p1 %patch02 -p1 +%patch100 -p1 + # Remove .orig files find . -name "*.orig" | xargs rm -f @@ -236,6 +240,9 @@ fi %attr(4755,root,root) /sbin/umount.nfs4 %changelog +* Mon Jul 27 2009 1.2.0-4 +- Fixed 4.1 versioning problem (bz 513496) + * Wed Jun 10 2009 1.2.0-3 - Updated init scripts to add dependencies on other system facilities (bz 475133) From notting at fedoraproject.org Mon Jul 27 18:19:10 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 18:19:10 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit-2.87-pidof.patch, NONE, 1.1 sysvinit.spec, 1.75, 1.76 sysvinit-2.86-pidof.patch, 1.1, NONE Message-ID: <20090727181910.4BC6F11C00E8@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20991 Modified Files: sysvinit.spec Added Files: sysvinit-2.87-pidof.patch Removed Files: sysvinit-2.86-pidof.patch Log Message: Rediff. sysvinit-2.87-pidof.patch: killall5.c | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) --- NEW FILE sysvinit-2.87-pidof.patch --- diff -up sysvinit-2.87dsf/src/killall5.c.pidof sysvinit-2.87dsf/src/killall5.c --- sysvinit-2.87dsf/src/killall5.c.pidof 2009-07-12 10:59:06.000000000 -0400 +++ sysvinit-2.87dsf/src/killall5.c 2009-07-27 14:10:02.000000000 -0400 @@ -54,9 +54,8 @@ typedef struct proc { char *argv0base; /* `basename argv[1]` */ char *argv1; /* Name as found out from argv[1] */ char *argv1base; /* `basename argv[1]` */ + char *pathname; /* full path to executable */ char *statname; /* the statname without braces */ - ino_t ino; /* Inode number */ - dev_t dev; /* Device it is on */ pid_t pid; /* Process ID. */ int sid; /* Session ID. */ int kernel; /* Kernel thread or zombie. */ @@ -176,7 +175,6 @@ int readproc(int do_stat) FILE *fp; PROC *p, *n; struct dirent *d; - struct stat st; char path[256]; char buf[256]; char *s, *q; @@ -199,6 +197,8 @@ int readproc(int do_stat) n = p->next; if (p->argv0) free(p->argv0); if (p->argv1) free(p->argv1); + if (p->pathname) free(p->pathname); + if (p->statname) free(p->statname); free(p); } plist = NULL; @@ -256,6 +256,7 @@ int readproc(int do_stat) p->sid = 0; nsyslog(LOG_ERR, "can't read sid from %s\n", path); + if (p->statname) free(p->statname); free(p); continue; } @@ -308,15 +309,19 @@ int readproc(int do_stat) } else { /* Process disappeared.. */ + if (p->statname) free(p->statname); free(p); continue; } /* Try to stat the executable. */ snprintf(path, sizeof(path), "/proc/%s/exe", d->d_name); - if (do_stat && stat(path, &st) == 0) { - p->dev = st.st_dev; - p->ino = st.st_ino; + p->pathname = (char *)xmalloc(PATH_MAX); + memset(p->pathname,'\0',PATH_MAX); + if (readlink(path, p->pathname, PATH_MAX) == -1) { + p->pathname = NULL; + } else { + p->pathname[PATH_MAX-1] = '\0'; } /* Link it into the list. */ @@ -380,7 +385,7 @@ PIDQ_HEAD *pidof(char *prog) { PROC *p; PIDQ_HEAD *q; - struct stat st; + char *real_path; char *s; int dostat = 0; int foundone = 0; @@ -402,13 +406,13 @@ PIDQ_HEAD *pidof(char *prog) q = init_pid_q(q); /* Try to stat the executable. */ - if (prog[0] == '/' && stat(prog, &st) == 0) + if (prog[0] == '/' && (real_path = canonicalize_file_name(prog))) dostat++; - /* First try to find a match based on dev/ino pair. */ + /* First try to find a match based on pathname. */ if (dostat) { for (p = plist; p; p = p->next) { - if (p->dev == st.st_dev && p->ino == st.st_ino) { + if (p->pathname && strcmp(real_path, p->pathname) == 0) { add_pid_to_q(q, p); foundone++; } @@ -439,6 +443,9 @@ PIDQ_HEAD *pidof(char *prog) || (p->argv0 && s != prog && strcmp(p->argv0, s) == 0) || (p->argv0base && strcmp(p->argv0base, prog) == 0); + if (prog[0] == '/' && p->pathname && strcmp(prog, p->pathname)) + ok = 0; + /* For scripts, compare argv[1] as well. */ if ( scripts_too && p->statname && p->argv1base @@ -447,7 +454,7 @@ PIDQ_HEAD *pidof(char *prog) ok |= (p->argv1 && strcmp(p->argv1, prog) == 0) || (p->argv1 && s != prog && strcmp(p->argv1, s) == 0) - || (p->argv1base && strcmp(p->argv1base, prog) == 0); + || ((prog[0] != '/') && p->argv1base && strcmp(p->argv1base, prog) == 0); } /* Index: sysvinit.spec =================================================================== RCS file: /cvs/extras/rpms/sysvinit/devel/sysvinit.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- sysvinit.spec 27 Jul 2009 18:00:26 -0000 1.75 +++ sysvinit.spec 27 Jul 2009 18:19:09 -0000 1.76 @@ -12,7 +12,7 @@ Patch3: sysvinit-2.86-loginshell.patch Patch4: sysvinit-2.86-inittab.patch Patch5: sysvinit-2.86-single.patch Patch6: sysvinit-2.86-quiet.patch -Patch10: sysvinit-2.86-pidof.patch +Patch10: sysvinit-2.87-pidof.patch Patch11: sysvinit-2.86-pidof-man.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: pam >= 0.66-5 --- sysvinit-2.86-pidof.patch DELETED --- From jjohnstn at fedoraproject.org Mon Jul 27 18:20:30 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Mon, 27 Jul 2009 18:20:30 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.128,1.129 Message-ID: <20090727182030.9A1CA11C043B@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21649 Modified Files: eclipse-cdt.spec Log Message: * Mon Jul 27 2009 Jeff Johnston 1:6.0.0-6 - Remove gcj_support. Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- eclipse-cdt.spec 24 Jul 2009 22:38:32 -0000 1.128 +++ eclipse-cdt.spec 27 Jul 2009 18:20:30 -0000 1.129 @@ -20,7 +20,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 5%{?dist} +Release: 6%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt @@ -175,7 +175,7 @@ popd # build.xml assumes we build all configs, but we only build one so update # build.xml directory reference to be accurate. -sed --in-place -e "s:linux.gtk.x86:linux.gtk.%{eclipse_arch}:g" build.xml +sed --in-place -e "s:linux.gtk.x86/:linux.gtk.%{eclipse_arch}/:g" build.xml popd @@ -508,7 +508,7 @@ rm -rf ${RPM_BUILD_ROOT} %endif %changelog -* Fri Jul 24 2009 Jeff Johnston 1:6.0.0-5 +* Mon Jul 27 2009 Jeff Johnston 1:6.0.0-6 - Remove gcj_support. * Fri Jul 24 2009 Fedora Release Engineering - 1:6.0.0-4 From pkgdb at fedoraproject.org Mon Jul 27 18:22:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:32 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested watchbugzilla Message-ID: <20090727182232.2288A10F889@bastion2.fedora.phx.redhat.com> mcrha has requested the watchbugzilla acl on evolution-mapi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:22:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:40 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested watchcommits Message-ID: <20090727182240.4B96210F89D@bastion2.fedora.phx.redhat.com> mcrha has requested the watchcommits acl on evolution-mapi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:41 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested commit Message-ID: <20090727182241.6D8F510F8B0@bastion2.fedora.phx.redhat.com> mcrha has requested the commit acl on evolution-mapi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:22:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:47 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested watchcommits Message-ID: <20090727182248.08A4210F8B1@bastion2.fedora.phx.redhat.com> mcrha has requested the watchcommits acl on evolution-mapi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:22:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:48 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested watchbugzilla Message-ID: <20090727182248.CD0E710F8B6@bastion2.fedora.phx.redhat.com> mcrha has requested the watchbugzilla acl on evolution-mapi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:22:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:22:49 +0000 Subject: [pkgdb] evolution-mapi: mcrha has requested commit Message-ID: <20090727182249.326D710F8B9@bastion2.fedora.phx.redhat.com> mcrha has requested the commit acl on evolution-mapi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From twaugh at fedoraproject.org Mon Jul 27 18:23:09 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 27 Jul 2009 18:23:09 +0000 (UTC) Subject: rpms/hplip/devel .cvsignore, 1.31, 1.32 hplip.spec, 1.209, 1.210 sources, 1.31, 1.32 Message-ID: <20090727182309.219FF11C00E8@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22808 Modified Files: .cvsignore hplip.spec sources Log Message: * Mon Jul 27 2009 Tim Waugh 3.9.6b-2 - 3.9.6b. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 20 Feb 2009 13:13:49 -0000 1.31 +++ .cvsignore 27 Jul 2009 18:23:08 -0000 1.32 @@ -28,3 +28,4 @@ hplip-2.8.7.tar.gz hplip-2.8.10.tar.gz hplip-2.8.12.tar.gz hplip-3.9.2.tar.gz +hplip-3.9.6b.tar.gz Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.209 retrieving revision 1.210 diff -u -p -r1.209 -r1.210 --- hplip.spec 27 Jul 2009 17:50:50 -0000 1.209 +++ hplip.spec 27 Jul 2009 18:23:08 -0000 1.210 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.6b -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -343,7 +343,7 @@ fi exit 0 %changelog -* Mon Jul 27 2009 Tim Waugh 3.9.6b-1 +* Mon Jul 27 2009 Tim Waugh 3.9.6b-2 - 3.9.6b. * Fri Jul 24 2009 Fedora Release Engineering - 3.9.2-9 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 20 Feb 2009 13:13:49 -0000 1.31 +++ sources 27 Jul 2009 18:23:08 -0000 1.32 @@ -1 +1 @@ -581224f556a23ac5545dde541b6f54ca hplip-3.9.2.tar.gz +49a87fe7d7a57a075ed9631113cee662 hplip-3.9.6b.tar.gz From twaugh at fedoraproject.org Mon Jul 27 18:24:07 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 27 Jul 2009 18:24:07 +0000 (UTC) Subject: rpms/hplip/F-11 .cvsignore, 1.31, 1.32 hplip-device-id.patch, 1.3, 1.4 hplip-disc-media.patch, 1.1, 1.2 hplip-libsane.patch, 1.5, 1.6 hplip-marker-supply.patch, 1.8, 1.9 hplip-segfault.patch, 1.1, 1.2 hplip-strstr-const.patch, 1.1, 1.2 hplip.spec, 1.207, 1.208 sources, 1.31, 1.32 Message-ID: <20090727182407.063DE11C00E8@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23234 Modified Files: .cvsignore hplip-device-id.patch hplip-disc-media.patch hplip-libsane.patch hplip-marker-supply.patch hplip-segfault.patch hplip-strstr-const.patch hplip.spec sources Log Message: * Mon Jul 27 2009 Tim Waugh 3.9.6b-2 - 3.9.6b. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 20 Feb 2009 13:13:49 -0000 1.31 +++ .cvsignore 27 Jul 2009 18:24:04 -0000 1.32 @@ -28,3 +28,4 @@ hplip-2.8.7.tar.gz hplip-2.8.10.tar.gz hplip-2.8.12.tar.gz hplip-3.9.2.tar.gz +hplip-3.9.6b.tar.gz hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 151 +++++++++++++++++++++++++++++++++++++++++++++----------- 3 files changed, 127 insertions(+), 32 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-device-id.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hplip-device-id.patch 23 Jul 2009 17:30:23 -0000 1.3 +++ hplip-device-id.patch 27 Jul 2009 18:24:05 -0000 1.4 @@ -1,6 +1,6 @@ -diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c ---- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 18:15:12.923895944 +0100 +diff -up hplip-3.9.6b/io/hpmud/musb.c.device-id hplip-3.9.6b/io/hpmud/musb.c +--- hplip-3.9.6b/io/hpmud/musb.c.device-id 2009-06-25 20:05:49.000000000 +0100 ++++ hplip-3.9.6b/io/hpmud/musb.c 2009-07-27 16:10:28.125542973 +0100 @@ -26,6 +26,11 @@ #include "hpmud.h" @@ -13,7 +13,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -488,7 +493,8 @@ bugout: +@@ -489,7 +494,8 @@ bugout: return -1; /* no endpoint found */ } @@ -23,7 +23,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev { int stat=1; -@@ -501,7 +507,8 @@ static int claim_interface(struct usb_de +@@ -502,7 +508,8 @@ static int claim_interface(struct usb_de goto bugout; } @@ -33,21 +33,21 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev #if 0 /* hp devices only have one configuration, so far ... */ if (usb_set_configuration(FD[fd].pHD, dev->config[config].bConfigurationValue)) -@@ -561,7 +568,7 @@ static int release_interface(file_descri +@@ -562,7 +569,7 @@ static int release_interface(file_descri } /* Claim any open interface which is valid for device_id and device status. */ -static int claim_id_interface(struct usb_device *dev) +static int claim_id_interface(struct usb_device *dev, int flags) { - int fd[] = {FD_7_1_2, FD_7_1_3, FD_ff_ff_ff, FD_ff_d4_0, FD_ff_1_1, FD_ff_2_1, FD_NA}; - int i; + enum FD_ID i; + @@ -570,7 +577,7 @@ static int claim_id_interface(struct usb { - if (get_interface(dev, fd[i], &fd_table[fd[i]]) == 0) + if (get_interface(dev, i, &fd_table[i]) == 0) { -- if (claim_interface(libusb_device, &fd_table[fd[i]])) -+ if (claim_interface(libusb_device, &fd_table[fd[i]], flags)) +- if (claim_interface(libusb_device, &fd_table[i])) ++ if (claim_interface(libusb_device, &fd_table[i], flags)) continue; /* interface is busy, try next interface */ break; /* done */ } @@ -55,8 +55,8 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev { /* First client. */ -- if ((fd = claim_id_interface(libusb_device)) == FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) == FD_NA) +- if ((fd = claim_id_interface(libusb_device)) == MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) == MAX_FD) { stat = HPMUD_R_DEVICE_BUSY; goto blackout; @@ -64,30 +64,30 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev if (fd == FD_NA) { /* Device not in use. Claim interface, but release for other processes. */ -- if ((fd = claim_id_interface(libusb_device)) != FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) +- if ((fd = claim_id_interface(libusb_device)) != MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) != MAX_FD) { *len = device_id(fd, pd->id, sizeof(pd->id)); /* get new copy and cache it */ release_interface(&fd_table[fd]); -@@ -1236,7 +1243,7 @@ enum HPMUD_RESULT __attribute__ ((visibi +@@ -1239,7 +1246,7 @@ enum HPMUD_RESULT __attribute__ ((visibi if (fd == FD_NA) { /* Device not in use. Claim interface, but release for other processes. */ -- if ((fd = claim_id_interface(libusb_device)) != FD_NA) -+ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) +- if ((fd = claim_id_interface(libusb_device)) != MAX_FD) ++ if ((fd = claim_id_interface(libusb_device, 0)) != MAX_FD) { r = device_status(fd, status); release_interface(&fd_table[fd]); -@@ -1339,7 +1346,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - int fd = FD_7_1_2; - enum HPMUD_RESULT stat = HPMUD_R_DEVICE_BUSY; +@@ -1344,7 +1351,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + + get_interface(libusb_device, fd, &fd_table[fd]); - if (claim_interface(libusb_device, &fd_table[fd])) + if (claim_interface(libusb_device, &fd_table[fd], 0)) goto bugout; pc->fd = fd; -@@ -1470,7 +1477,7 @@ enum HPMUD_RESULT __attribute__ ((visibi +@@ -1475,7 +1482,7 @@ enum HPMUD_RESULT __attribute__ ((visibi goto bugout; } @@ -96,25 +96,43 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev goto bugout; pc->fd = fd; -@@ -1504,7 +1511,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - else +@@ -1499,13 +1506,13 @@ enum HPMUD_RESULT __attribute__ ((visibi + /* Initialize MLC transport if this is the first MLC channel. */ + if (pd->channel_cnt==1) + { +- if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3]) == 0) ++ if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3], 0) == 0) + fd = FD_7_1_3; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff]) == 0) ++ else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff], 0) == 0) + fd = FD_ff_ff_ff; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0]) == 0) ++ else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0], 0) == 0) + fd = FD_ff_d4_0; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2]) == 0) ++ else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2], 0) == 0) fd = FD_7_1_2; /* raw, mlc, dot4 */ - -- if (claim_interface(libusb_device, &fd_table[fd])) -+ if (claim_interface(libusb_device, &fd_table[fd], 0)) + else { - stat = HPMUD_R_DEVICE_BUSY; - goto bugout; -@@ -1726,7 +1733,7 @@ enum HPMUD_RESULT __attribute__ ((visibi - else +@@ -1719,13 +1726,13 @@ enum HPMUD_RESULT __attribute__ ((visibi + /* Initialize MLC transport if this is the first MLC channel. */ + if (pd->channel_cnt==1) + { +- if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3]) == 0) ++ if (get_interface(libusb_device, FD_7_1_3, &fd_table[FD_7_1_3]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_3], 0) == 0) + fd = FD_7_1_3; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff]) == 0) ++ else if (get_interface(libusb_device, FD_ff_ff_ff, &fd_table[FD_ff_ff_ff]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_ff_ff], 0) == 0) + fd = FD_ff_ff_ff; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0]) == 0) ++ else if (get_interface(libusb_device, FD_ff_d4_0, &fd_table[FD_ff_d4_0]) == 0 && claim_interface(libusb_device, &fd_table[FD_ff_d4_0], 0) == 0) + fd = FD_ff_d4_0; /* mlc, dot4 */ +- else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2]) == 0) ++ else if (get_interface(libusb_device, FD_7_1_2, &fd_table[FD_7_1_2]) == 0 && claim_interface(libusb_device, &fd_table[FD_7_1_2], 0) == 0) fd = FD_7_1_2; /* raw, mlc, dot4 */ - -- if (claim_interface(libusb_device, &fd_table[fd])) -+ if (claim_interface(libusb_device, &fd_table[fd], 0)) + else { - stat = HPMUD_R_DEVICE_BUSY; - goto bugout; -@@ -1959,6 +1966,91 @@ bugout: +@@ -1960,6 +1967,91 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ @@ -131,7 +149,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + + libusb_device = dev; + fd = claim_id_interface (dev, CLAIM_NO_DETACH); -+ if (fd == FD_NA) ++ if (fd == MAX_FD) + { + try_usblp = 1; + goto try_usblp_instead; @@ -206,7 +224,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2098,7 @@ int __attribute__ ((visibility ("hidden" +@@ -2007,6 +2099,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { @@ -214,7 +232,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2109,19 @@ int __attribute__ ((visibility ("hidden" +@@ -2017,17 +2110,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } @@ -245,32 +263,32 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev *cnt+=1; } } -diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am ---- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-07-23 18:12:15.843895808 +0100 -@@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i +diff -up hplip-3.9.6b/Makefile.am.device-id hplip-3.9.6b/Makefile.am +--- hplip-3.9.6b/Makefile.am.device-id 2009-06-25 20:05:57.000000000 +0100 ++++ hplip-3.9.6b/Makefile.am 2009-07-27 16:05:54.700543137 +0100 +@@ -67,9 +67,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h if NETWORK_BUILD --libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto -+libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto +-libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread -l$(SNMPLIB) -lcrypto ++libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread -l$(SNMPLIB) -lcrypto else --libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -+libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread +-libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread ++libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" -diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in ---- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-07-23 18:12:15.850895526 +0100 -@@ -3954,8 +3954,8 @@ dist_unrel_DATA = +diff -up hplip-3.9.6b/Makefile.in.device-id hplip-3.9.6b/Makefile.in +--- hplip-3.9.6b/Makefile.in.device-id 2009-06-25 21:02:19.000000000 +0100 ++++ hplip-3.9.6b/Makefile.in 2009-07-27 16:06:31.812417344 +0100 +@@ -3618,8 +3618,8 @@ cups_drv = prnt/drv/hpcups.drv @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h -- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto -+ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -+ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto +- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread +- at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -lpthread -l$(SNMPLIB) -lcrypto ++ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread ++ at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:5:0 -lusb -ludev -lpthread -l$(SNMPLIB) -lcrypto @HPLIP_BUILD_TRUE at libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" - - # hpmudext + @HPLIP_BUILD_TRUE at libhpip_la_LDFLAGS = -version-info 0:1:0 + @HPLIP_BUILD_TRUE at libhpip_la_LIBADD = -lm hplip-disc-media.patch: dj9xxvip.cpp | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) Index: hplip-disc-media.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-disc-media.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-disc-media.patch 24 Jun 2009 09:19:49 -0000 1.1 +++ hplip-disc-media.patch 27 Jul 2009 18:24:05 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp.disc-media hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp ---- hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp.disc-media 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/dj9xxvip.cpp 2009-06-24 09:54:12.176317380 +0100 +diff -up hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp.disc-media hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp +--- hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp.disc-media 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/dj9xxvip.cpp 2009-07-27 17:10:55.882543437 +0100 @@ -500,6 +500,23 @@ DRIVER_ERROR HeaderDJ990::Send() QUALITY_MODE eQualityMode; BOOL bDeviceText; @@ -22,10 +22,10 @@ diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip + break; + } + - thePrintContext->GetPrintModeSettings (eQualityMode, eMediaType, eColorMode, bDeviceText); - if (eMediaType == MEDIA_CDDVD) - { -@@ -516,7 +533,9 @@ DRIVER_ERROR HeaderDJ990::Send() + thePrintContext->GetPrintModeSettings (eQualityMode, eMediaType, eColorMode, bDeviceText); + + #ifdef APDK_LINUX +@@ -511,7 +528,9 @@ DRIVER_ERROR HeaderDJ990::Send() * on what was selected from ppd. */ @@ -34,9 +34,9 @@ diff -up hplip-3.9.2/prnt/hpijs/dj9xxvip + */ + // SetMediaType (MediaTypeToPcl (eMediaType)); #endif - - StartSend(); -@@ -733,11 +752,12 @@ void HeaderDJ990::SetMediaSource(MediaSo + + if (eMediaType == MEDIA_CDDVD) +@@ -734,11 +753,12 @@ void HeaderDJ990::SetMediaSource(MediaSo msrccount=EscAmplCopy((BYTE*)mediasource,msource,'H'); if (msource == sourceTrayCDDVD) { hplip-libsane.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: hplip-libsane.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-libsane.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hplip-libsane.patch 20 Feb 2009 13:13:49 -0000 1.5 +++ hplip-libsane.patch 27 Jul 2009 18:24:05 -0000 1.6 @@ -1,24 +1,24 @@ -diff -up hplip-3.9.2/Makefile.am.libsane hplip-3.9.2/Makefile.am ---- hplip-3.9.2/Makefile.am.libsane 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-02-20 11:10:19.000000000 +0000 -@@ -195,7 +195,7 @@ else +diff -up hplip-3.9.6b/Makefile.am.libsane hplip-3.9.6b/Makefile.am +--- hplip-3.9.6b/Makefile.am.libsane 2009-07-27 16:18:54.166417989 +0100 ++++ hplip-3.9.6b/Makefile.am 2009-07-27 16:19:23.487543339 +0100 +@@ -55,7 +55,7 @@ else libsane_hpaio_la_LDFLAGS = -version-info 1:0:0 endif # The following is a interlibrary dependency that must be compiled first. --libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -+libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -lsane +-libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl ++libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl -lsane #libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) - -diff -up hplip-3.9.2/Makefile.in.libsane hplip-3.9.2/Makefile.in ---- hplip-3.9.2/Makefile.in.libsane 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-02-20 11:10:42.000000000 +0000 -@@ -3933,7 +3933,7 @@ dist_unrel_DATA = + endif # SCAN_BUILD +diff -up hplip-3.9.6b/Makefile.in.libsane hplip-3.9.6b/Makefile.in +--- hplip-3.9.6b/Makefile.in.libsane 2009-07-27 16:18:54.174417364 +0100 ++++ hplip-3.9.6b/Makefile.in 2009-07-27 16:19:39.431417307 +0100 +@@ -3608,7 +3608,7 @@ cups_drv = prnt/drv/hpcups.drv @DARWIN_BUILD_FALSE@@HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LDFLAGS = -version-info 1:0:0 @DARWIN_BUILD_TRUE@@HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LDFLAGS = -module -framework CoreFoundation -version-info 1:0:0 # The following is a interlibrary dependency that must be compiled first. -- at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -+ at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -lsane +- at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl ++ at HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_LIBADD = libhpip.la libhpmud.la $(DBUS_LIBS) -lcups -ldl -lsane #libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG @HPLIP_BUILD_TRUE@@SCAN_BUILD_TRUE at libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) hplip-marker-supply.patch: hpcups.cpp | 4 ++-- hpijs.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Index: hplip-marker-supply.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-marker-supply.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hplip-marker-supply.patch 4 Mar 2008 18:02:20 -0000 1.8 +++ hplip-marker-supply.patch 27 Jul 2009 18:24:05 -0000 1.9 @@ -1,17 +1,34 @@ -diff -up hplip-2.8.2/prnt/hpijs/hpijs.cpp.marker-supply hplip-2.8.2/prnt/hpijs/hpijs.cpp ---- hplip-2.8.2/prnt/hpijs/hpijs.cpp.marker-supply 2008-02-08 19:36:38.000000000 +0000 -+++ hplip-2.8.2/prnt/hpijs/hpijs.cpp 2008-03-04 17:51:02.000000000 +0000 -@@ -541,11 +541,11 @@ int main (int argc, char *argv[], char * +diff -up hplip-3.9.6b/prnt/hpijs/hpcups.cpp.marker-supply hplip-3.9.6b/prnt/hpijs/hpcups.cpp +--- hplip-3.9.6b/prnt/hpijs/hpcups.cpp.marker-supply 2009-07-27 18:43:01.724542229 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpcups.cpp 2009-07-27 18:43:09.416543072 +0100 +@@ -347,11 +347,11 @@ int HPCups::initContext (char **argv) + case WARN_LOW_INK_YELLOW: + case WARN_LOW_INK_MULTIPLE_PENS: + { +- BUG ("STATE: marker-supply-low-warning\n"); ++ BUG ("STATE: +marker-supply-low-warning\n"); + break; + } + default: +- BUG ("STATE: -marker-supply-low-warning"); ++ BUG ("STATE: -marker-supply-low-warning\n"); + } + } + +diff -up hplip-3.9.6b/prnt/hpijs/hpijs.cpp.marker-supply hplip-3.9.6b/prnt/hpijs/hpijs.cpp +--- hplip-3.9.6b/prnt/hpijs/hpijs.cpp.marker-supply 2009-07-27 18:42:48.290417159 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpijs.cpp 2009-07-27 18:42:48.315417579 +0100 +@@ -630,11 +630,11 @@ int main (int argc, char *argv[], char * case WARN_LOW_INK_YELLOW: case WARN_LOW_INK_MULTIPLE_PENS: { -- bug ("STATE: marker-supply-low-warning\n"); -+ bug ("STATE: +marker-supply-low-warning\n"); +- BUG ("STATE: marker-supply-low-warning\n"); ++ BUG ("STATE: +marker-supply-low-warning\n"); break; } default: -- bug ("STATE: -marker-supply-low-warning"); -+ bug ("STATE: -marker-supply-low-warning\n"); +- BUG ("STATE: -marker-supply-low-warning"); ++ BUG ("STATE: -marker-supply-low-warning\n"); } } hplip-segfault.patch: hpcups.cpp | 9 ++++++--- hpijs.cpp | 5 ++++- 2 files changed, 10 insertions(+), 4 deletions(-) Index: hplip-segfault.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-segfault.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-segfault.patch 13 Jan 2009 15:20:09 -0000 1.1 +++ hplip-segfault.patch 27 Jul 2009 18:24:05 -0000 1.2 @@ -1,19 +1,35 @@ -diff -up hplip-2.8.12/prnt/hpijs/hpijs.cpp.segfault hplip-2.8.12/prnt/hpijs/hpijs.cpp ---- hplip-2.8.12/prnt/hpijs/hpijs.cpp.segfault 2009-01-13 15:11:55.000000000 +0000 -+++ hplip-2.8.12/prnt/hpijs/hpijs.cpp 2009-01-13 15:13:49.000000000 +0000 -@@ -231,8 +231,14 @@ int hpijs_set_cb (void *set_cb_data, Ijs +diff -up hplip-3.9.6b/prnt/hpijs/hpcups.cpp.segfault hplip-3.9.6b/prnt/hpijs/hpcups.cpp +--- hplip-3.9.6b/prnt/hpijs/hpcups.cpp.segfault 2009-06-25 20:04:19.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpcups.cpp 2009-07-27 18:42:04.561544716 +0100 +@@ -373,9 +373,12 @@ int HPCups::initContext (char **argv) + if (err == PLUGIN_LIBRARY_MISSING) + { + // call dbus here +- SendDbusMessage (getenv ("DEVICE_URI"), getenv ("PRINTER"), +- EVENT_PRINT_FAILED_MISSING_PLUGIN, +- argv[2], atoi (argv[1]), argv[3]); ++ const char *device_uri = getenv ("DEVICE_URI"); ++ const char *printer = getenv ("PRINTER"); ++ if (device_uri && printer) ++ SendDbusMessage (device_uri, printer, ++ EVENT_PRINT_FAILED_MISSING_PLUGIN, ++ argv[2], atoi (argv[1]), argv[3]); + BUG ("ERROR: unable to set device = %s, err = %d\n", attr->value, err); + return 1; + } +diff -up hplip-3.9.6b/prnt/hpijs/hpijs.cpp.segfault hplip-3.9.6b/prnt/hpijs/hpijs.cpp +--- hplip-3.9.6b/prnt/hpijs/hpijs.cpp.segfault 2009-06-25 20:04:19.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/hpijs.cpp 2009-07-27 18:39:46.755417388 +0100 +@@ -253,8 +253,11 @@ int hpijs_set_cb (void *set_cb_data, Ijs // call dbus here const char *user_name = " "; const char *title = " "; + char *device_uri = getenv ("DEVICE_URI"); -+ char *printer = getenv("PRINTER"); ++ char *printer = getenv ("PRINTER"); int job_id = 0; - SendDbusMessage (getenv ("DEVICE_URI"), getenv("PRINTER"), -+ if (!device_uri) -+ device_uri = ""; -+ if (!printer) -+ printer = ""; -+ SendDbusMessage (device_uri, printer, ++ SendDbusMessage (device_uri ? device_uri : "", ++ printer ? printer : "", EVENT_PRINT_FAILED_MISSING_PLUGIN, user_name, job_id, title); - bug("unable to set device=%s, err=%d\n", svalue, r); + BUG("unable to set device=%s, err=%d\n", svalue, r); hplip-strstr-const.patch: dj3320.cpp | 2 +- registry.cpp | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) Index: hplip-strstr-const.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-strstr-const.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-strstr-const.patch 20 Feb 2009 13:16:54 -0000 1.1 +++ hplip-strstr-const.patch 27 Jul 2009 18:24:05 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up hplip-3.9.2/prnt/hpijs/dj3320.cpp.strstr-const hplip-3.9.2/prnt/hpijs/dj3320.cpp ---- hplip-3.9.2/prnt/hpijs/dj3320.cpp.strstr-const 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/dj3320.cpp 2009-02-20 11:27:51.000000000 +0000 -@@ -403,7 +403,7 @@ DISPLAY_STATUS DJ3320::ParseError (BYTE +diff -up hplip-3.9.6b/prnt/hpijs/dj3320.cpp.strstr-const hplip-3.9.6b/prnt/hpijs/dj3320.cpp +--- hplip-3.9.6b/prnt/hpijs/dj3320.cpp.strstr-const 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/dj3320.cpp 2009-07-27 16:14:52.868542337 +0100 +@@ -405,7 +405,7 @@ DISPLAY_STATUS DJ3320::ParseError (BYTE { DRIVER_ERROR err = NO_ERROR; BYTE byDevIDBuffer[DevIDBuffSize]; @@ -10,18 +10,32 @@ diff -up hplip-3.9.2/prnt/hpijs/dj3320.c BYTE byStatus1, byStatus2; memset(byDevIDBuffer, 0, sizeof(byDevIDBuffer)); -diff -up hplip-3.9.2/prnt/hpijs/registry.cpp.strstr-const hplip-3.9.2/prnt/hpijs/registry.cpp ---- hplip-3.9.2/prnt/hpijs/registry.cpp.strstr-const 2009-02-20 00:38:04.000000000 +0000 -+++ hplip-3.9.2/prnt/hpijs/registry.cpp 2009-02-20 11:27:00.000000000 +0000 -@@ -292,15 +292,15 @@ DRIVER_ERROR DeviceRegistry::SelectDevic +diff -up hplip-3.9.6b/prnt/hpijs/registry.cpp.strstr-const hplip-3.9.6b/prnt/hpijs/registry.cpp +--- hplip-3.9.6b/prnt/hpijs/registry.cpp.strstr-const 2009-06-25 21:02:29.000000000 +0100 ++++ hplip-3.9.6b/prnt/hpijs/registry.cpp 2009-07-27 16:18:41.583417187 +0100 +@@ -290,14 +290,14 @@ DRIVER_ERROR DeviceRegistry::SelectDevic + err = pSS->GetDeviceID(DevIDBuffer, DevIDBuffSize, FALSE); + ERRCHECK; // should be either NO_ERROR or BAD_DEVICE_ID + +- char *cmdStr = (char *) strstr ((const char *) DevIDBuffer+2, "CMD:"); ++ char *cmdStr = strstr ((char *) DevIDBuffer+2, "CMD:"); + char *cmdStrEnd; + if ((strstr((const char *) DevIDBuffer+2,"CMD:LDL"))) + { device = eDJ3320; match = TRUE; } -- char *cmdStr = strstr ((const char *) DevIDBuffer+2, "CMD:"); -+ const char *cmdStr = strstr ((const char *) DevIDBuffer+2, "CMD:"); - if (!cmdStr) +- if (!match && cmdStr && (cmdStrEnd = (char *) strstr (cmdStr, ";"))) ++ if (!match && cmdStr && (cmdStrEnd = strstr (cmdStr, ";"))) + { + *cmdStrEnd = '\0'; + if (strstr (cmdStr, "LDL")) +@@ -309,12 +309,12 @@ DRIVER_ERROR DeviceRegistry::SelectDevic + } + if (!match && !cmdStr) { - cmdStr = strstr ((const char *) DevIDBuffer+2, "COMMAND SET:"); +- cmdStr = (char *) strstr ((const char *) DevIDBuffer+2, "COMMAND SET:"); ++ cmdStr = strstr ((char *) DevIDBuffer+2, "COMMAND SET:"); } - if (!match && cmdStr && (strstr ((const char *) cmdStr+4, "POSTSCRIPT") || - strstr ((const char *) cmdStr+4, "PostScript") || Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.207 retrieving revision 1.208 diff -u -p -r1.207 -r1.208 --- hplip.spec 23 Jul 2009 17:30:23 -0000 1.207 +++ hplip.spec 27 Jul 2009 18:24:06 -0000 1.208 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip -Version: 3.9.2 -Release: 8%{?dist} +Version: 3.9.6b +Release: 2%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -140,7 +140,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} %configure --disable-foomatic-xml-install --disable-cups-install \ --enable-scan-build --enable-gui-build --enable-fax-build \ --disable-foomatic-rip-hplip-install --enable-dbus \ - --enable-qt4 + --enable-qt4 --enable-hpcups-install --enable-cups-drv-install \ + --enable-hpijs-install + sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -207,7 +209,7 @@ rm -rf %{buildroot} %{_bindir}/hp-align %{_bindir}/hp-clean %{_bindir}/hp-colorcal -%{_bindir}/hp-devicesetup +%{_bindir}/hp-devicesettings %{_bindir}/hp-fab %{_bindir}/hp-faxsetup %{_bindir}/hp-firmware @@ -217,6 +219,7 @@ rm -rf %{buildroot} %{_bindir}/hp-makecopies %{_bindir}/hp-makeuri %{_bindir}/hp-mkuri +%{_bindir}/hp-pkservice %{_bindir}/hp-plugin %{_bindir}/hp-pqdiag %{_bindir}/hp-printsettings @@ -228,6 +231,7 @@ rm -rf %{buildroot} %{_bindir}/hp-testpage %{_bindir}/hp-timedate %{_bindir}/hp-unload +%{_bindir}/hp-wificonfig # Note: this must be /usr/lib not %{_libdir}, since that's the # CUPS serverbin directory. /usr/lib/cups/backend/hp @@ -237,7 +241,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/align.py* %{_datadir}/hplip/clean.py* %{_datadir}/hplip/colorcal.py* -%{_datadir}/hplip/devicesetup.py* +%{_datadir}/hplip/devicesettings.py* %{_datadir}/hplip/fab.py* %{_datadir}/hplip/fax %{_datadir}/hplip/faxsetup.py* @@ -250,6 +254,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/linefeedcal.py* %{_datadir}/hplip/makecopies.py* %{_datadir}/hplip/makeuri.py* +%{_datadir}/hplip/pkservice.py* %{_datadir}/hplip/plugin.py* %{_datadir}/hplip/pqdiag.py* %{_datadir}/hplip/printsettings.py* @@ -261,6 +266,7 @@ rm -rf %{buildroot} %{_datadir}/hplip/testpage.py* %{_datadir}/hplip/timedate.py* %{_datadir}/hplip/unload.py* +%{_datadir}/hplip/wificonfig.py* # Directories %{_datadir}/hplip/base %{_datadir}/hplip/copier @@ -296,8 +302,6 @@ rm -rf %{buildroot} %{_datadir}/hplip/toolbox.py* # Directories %{_datadir}/hplip/data/images -%{_datadir}/hplip/plugins -%{_datadir}/hplip/ui %{_datadir}/hplip/ui4 %files -n hpijs @@ -308,6 +312,9 @@ rm -rf %{buildroot} %{_datadir}/cups/drv/* # Note: this must be /usr/lib not %{_libdir}, since that's the # CUPS serverbin directory. +/usr/lib/cups/filter/hpcac +/usr/lib/cups/filter/hpcups +/usr/lib/cups/filter/hpcupsfax /usr/lib/cups/filter/hplipjs %files -n libsane-hpaio @@ -336,6 +343,12 @@ fi exit 0 %changelog +* Mon Jul 27 2009 Tim Waugh 3.9.6b-2 +- 3.9.6b. + +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Tim Waugh 3.9.2-8 - Use existing libusb-using routines to try fetching Device ID. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 20 Feb 2009 13:13:49 -0000 1.31 +++ sources 27 Jul 2009 18:24:06 -0000 1.32 @@ -1 +1 @@ -581224f556a23ac5545dde541b6f54ca hplip-3.9.2.tar.gz +49a87fe7d7a57a075ed9631113cee662 hplip-3.9.6b.tar.gz From pkgdb at fedoraproject.org Mon Jul 27 18:25:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:27 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182527.997C210F897@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-mapi (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:25:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:29 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182529.5B0A710F89C@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-mapi (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From imain at fedoraproject.org Mon Jul 27 18:25:31 2009 From: imain at fedoraproject.org (Ian Main) Date: Mon, 27 Jul 2009 18:25:31 +0000 (UTC) Subject: rpms/libvirt-qpid/F-10 .cvsignore, 1.6, 1.7 libvirt-qpid.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090727182531.D761611C00E8@cvs1.fedora.phx.redhat.com> Author: imain Update of /cvs/pkgs/rpms/libvirt-qpid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24127 Modified Files: .cvsignore libvirt-qpid.spec sources Log Message: New bugfix release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 5 Jun 2009 16:45:07 -0000 1.6 +++ .cvsignore 27 Jul 2009 18:25:31 -0000 1.7 @@ -1 +1 @@ -libvirt-qpid-0.2.16.tar.gz +libvirt-qpid-0.2.17.tar.gz Index: libvirt-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-10/libvirt-qpid.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libvirt-qpid.spec 7 Jul 2009 20:06:30 -0000 1.12 +++ libvirt-qpid.spec 27 Jul 2009 18:25:31 -0000 1.13 @@ -1,7 +1,7 @@ Summary: QPid QMF interface to Libvirt Name: libvirt-qpid -Version: 0.2.16 -Release: 5%{?dist} +Version: 0.2.17 +Release: 0%{?dist} Source: libvirt-qpid-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root License: LGPLv2+ @@ -74,6 +74,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %changelog +* Mon Jul 27 2009 Arjun Roy -0.2.17.0 +- Fixed a bug related to updating of cached pool sources. + * Fri Jun 05 2009 Ian Main - 0.2.16-5 - Bump for new build. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 7 Jul 2009 20:06:30 -0000 1.8 +++ sources 27 Jul 2009 18:25:31 -0000 1.9 @@ -1 +1 @@ -5bd2bcbaa15871a9bc2f6e0f38c634cb libvirt-qpid-0.2.16.tar.gz +e8a5cde1299426f9a0c6fe72e6008d7c libvirt-qpid-0.2.17.tar.gz From pkgdb at fedoraproject.org Mon Jul 27 18:25:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:30 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182530.8914310F8A1@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-mapi (Fedora devel) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:25:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:33 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182533.D06DB10F8B1@bastion2.fedora.phx.redhat.com> mbarnes has set the watchbugzilla acl on evolution-mapi (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:25:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:37 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182537.10B7410F8B6@bastion2.fedora.phx.redhat.com> mbarnes has set the watchcommits acl on evolution-mapi (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From pkgdb at fedoraproject.org Mon Jul 27 18:25:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 18:25:39 +0000 Subject: [pkgdb] evolution-mapi had acl change status Message-ID: <20090727182539.9406F10F8BB@bastion2.fedora.phx.redhat.com> mbarnes has set the commit acl on evolution-mapi (Fedora 11) to Approved for mcrha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evolution-mapi From imain at fedoraproject.org Mon Jul 27 18:26:12 2009 From: imain at fedoraproject.org (Ian Main) Date: Mon, 27 Jul 2009 18:26:12 +0000 (UTC) Subject: rpms/libvirt-qpid/F-11 .cvsignore, 1.5, 1.6 libvirt-qpid.spec, 1.10, 1.11 sources, 1.7, 1.8 Message-ID: <20090727182612.65AE511C00E8@cvs1.fedora.phx.redhat.com> Author: imain Update of /cvs/pkgs/rpms/libvirt-qpid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24540 Modified Files: .cvsignore libvirt-qpid.spec sources Log Message: New bugfix release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Jun 2009 16:47:13 -0000 1.5 +++ .cvsignore 27 Jul 2009 18:26:11 -0000 1.6 @@ -1 +1 @@ -libvirt-qpid-0.2.16.tar.gz +libvirt-qpid-0.2.17.tar.gz Index: libvirt-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-11/libvirt-qpid.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libvirt-qpid.spec 7 Jul 2009 20:03:46 -0000 1.10 +++ libvirt-qpid.spec 27 Jul 2009 18:26:11 -0000 1.11 @@ -1,7 +1,7 @@ Summary: QPid QMF interface to Libvirt Name: libvirt-qpid -Version: 0.2.16 -Release: 5%{?dist} +Version: 0.2.17 +Release: 0%{?dist} Source: libvirt-qpid-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root License: LGPLv2+ @@ -74,6 +74,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %changelog +* Mon Jul 27 2009 Arjun Roy -0.2.17.0 +- Fixed a bug related to updating of cached pool sources. + * Fri Jun 05 2009 Ian Main - 0.2.16-5 - Bump for new build. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 7 Jul 2009 20:03:46 -0000 1.7 +++ sources 27 Jul 2009 18:26:11 -0000 1.8 @@ -1 +1 @@ -5bd2bcbaa15871a9bc2f6e0f38c634cb libvirt-qpid-0.2.16.tar.gz +e8a5cde1299426f9a0c6fe72e6008d7c libvirt-qpid-0.2.17.tar.gz From imain at fedoraproject.org Mon Jul 27 18:26:53 2009 From: imain at fedoraproject.org (Ian Main) Date: Mon, 27 Jul 2009 18:26:53 +0000 (UTC) Subject: rpms/libvirt-qpid/devel .cvsignore, 1.5, 1.6 libvirt-qpid.spec, 1.7, 1.8 sources, 1.6, 1.7 Message-ID: <20090727182653.C199711C00E8@cvs1.fedora.phx.redhat.com> Author: imain Update of /cvs/pkgs/rpms/libvirt-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24993 Modified Files: .cvsignore libvirt-qpid.spec sources Log Message: New bugfix release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 7 Jul 2009 20:19:23 -0000 1.5 +++ .cvsignore 27 Jul 2009 18:26:53 -0000 1.6 @@ -1 +1 @@ -libvirt-qpid-0.2.16.tar.gz +libvirt-qpid-0.2.17.tar.gz Index: libvirt-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/devel/libvirt-qpid.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libvirt-qpid.spec 25 Jul 2009 08:52:18 -0000 1.7 +++ libvirt-qpid.spec 27 Jul 2009 18:26:53 -0000 1.8 @@ -1,7 +1,7 @@ Summary: QPid QMF interface to Libvirt Name: libvirt-qpid -Version: 0.2.16 -Release: 6%{?dist} +Version: 0.2.17 +Release: 0%{?dist} Source: libvirt-qpid-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root License: LGPLv2+ @@ -73,9 +73,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %changelog -* Sat Jul 25 2009 Fedora Release Engineering - 0.2.16-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Mon Jul 27 2009 Arjun Roy -0.2.17.0 +- Fixed a bug related to updating of cached pool sources. * Fri Jun 05 2009 Ian Main - 0.2.16-5 - Bump for new build. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 7 Jul 2009 20:19:23 -0000 1.6 +++ sources 27 Jul 2009 18:26:53 -0000 1.7 @@ -1 +1 @@ -5bd2bcbaa15871a9bc2f6e0f38c634cb libvirt-qpid-0.2.16.tar.gz +e8a5cde1299426f9a0c6fe72e6008d7c libvirt-qpid-0.2.17.tar.gz From dmaphy at fedoraproject.org Mon Jul 27 18:32:24 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Mon, 27 Jul 2009 18:32:24 +0000 (UTC) Subject: rpms/geany/F-10 geany.spec,1.24,1.25 Message-ID: <20090727183224.2B29E11C00E8@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26667 Modified Files: geany.spec Log Message: install *.tags-files in $prefix/share/geany/tags instead of $prefix/share/geany. this fixes an issue where Geany could not find several *.tags-files Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/F-10/geany.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- geany.spec 20 Jun 2009 18:14:30 -0000 1.24 +++ geany.spec 27 Jul 2009 18:32:24 -0000 1.25 @@ -1,6 +1,6 @@ Name: geany Version: 0.17 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A fast and lightweight IDE using GTK2 Group: Development/Tools @@ -74,7 +74,8 @@ sed -i 's/\r//' %{geany_docdir}/Scintill rm -rf $RPM_BUILD_ROOT%{_libdir}/geany/*.la # Install tags files -install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name} +mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ +install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ %clean rm -rf $RPM_BUILD_ROOT @@ -96,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog +* Mon Jul 27 2009 Dominic Hopf - 0.17-8 +- install additional *.tags-files to $prefix/share/geany/tags + * Sat Jun 20 2009 Jonathan G. Underwood - 0.17-7 - Fix commentary about button pixmap patch in spec file From dmaphy at fedoraproject.org Mon Jul 27 18:36:47 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Mon, 27 Jul 2009 18:36:47 +0000 (UTC) Subject: rpms/geany/F-11 geany.spec,1.27,1.28 Message-ID: <20090727183647.2D77511C00E8@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29239 Modified Files: geany.spec Log Message: install *.tags-files in $prefix/share/geany/tags instead of $prefix/share/geany. this fixes an issue where Geany could not find several *.tags-files Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/F-11/geany.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- geany.spec 20 Jun 2009 18:13:31 -0000 1.27 +++ geany.spec 27 Jul 2009 18:36:46 -0000 1.28 @@ -1,6 +1,6 @@ Name: geany Version: 0.17 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A fast and lightweight IDE using GTK2 Group: Development/Tools @@ -74,7 +74,8 @@ sed -i 's/\r//' %{geany_docdir}/Scintill rm -rf $RPM_BUILD_ROOT%{_libdir}/geany/*.la # Install tags files -install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name} +mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ +install -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/%{name}/tags/ %clean rm -rf $RPM_BUILD_ROOT @@ -96,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog +* Mon Jul 27 2009 Dominic Hopf - 0.17-8 +- install additional *.tags-files to $prefix/share/geany/tags + * Sat Jun 20 2009 Jonathan G. Underwood - 0.17-7 - Fix commentary about button pixmap patch in spec file From mcrha at fedoraproject.org Mon Jul 27 18:41:13 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Mon, 27 Jul 2009 18:41:13 +0000 (UTC) Subject: rpms/evolution-mapi/devel .cvsignore, 1.10, 1.11 evolution-mapi.spec, 1.13, 1.14 sources, 1.10, 1.11 Message-ID: <20090727184113.414A211C00E8@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31382 Modified Files: .cvsignore evolution-mapi.spec sources Log Message: * Mon Jul 27 2009 Milan Crha - 0.27.5-1 - Update to 0.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 13 Jul 2009 13:49:48 -0000 1.10 +++ .cvsignore 27 Jul 2009 18:41:12 -0000 1.11 @@ -1 +1 @@ -evolution-mapi-0.27.4.tar.bz2 +evolution-mapi-0.27.5.tar.bz2 Index: evolution-mapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- evolution-mapi.spec 24 Jul 2009 22:23:13 -0000 1.13 +++ evolution-mapi.spec 27 Jul 2009 18:41:12 -0000 1.14 @@ -11,8 +11,8 @@ ### Abstract ### Name: evolution-mapi -Version: 0.27.4 -Release: 2%{?dist} +Version: 0.27.5 +Release: 1%{?dist} Group: Applications/Productivity Summary: Evolution extension for MS Exchange 2007 servers License: LGPLv2+ @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexchangemapi-1.0.pc %changelog +* Mon Jul 27 2009 Milan Crha - 0.27.5-1 +- Update to 0.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 0.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 13 Jul 2009 13:49:48 -0000 1.10 +++ sources 27 Jul 2009 18:41:12 -0000 1.11 @@ -1 +1 @@ -48956fb9027cb06ec8acde465c5b6aac evolution-mapi-0.27.4.tar.bz2 +b85ab0d834579f3d42c1513e227d3583 evolution-mapi-0.27.5.tar.bz2 From hguemar at fedoraproject.org Mon Jul 27 18:53:02 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 27 Jul 2009 18:53:02 +0000 (UTC) Subject: rpms/sonata/F-11 sonata-1.6.2-nocleaning.patch, NONE, 1.1 sonata.spec, 1.21, 1.22 Message-ID: <20090727185302.5CE5A11C00D5@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3932 Modified Files: sonata.spec Added Files: sonata-1.6.2-nocleaning.patch Log Message: updated to 1.6.2 sonata-1.6.2-nocleaning.patch: setup.py | 28 ---------------------------- 1 file changed, 28 deletions(-) --- NEW FILE sonata-1.6.2-nocleaning.patch --- diff -up ./setup.py ./setup.py.nocleaning --- ./setup.py 2009-03-18 03:23:09.000000000 +0100 +++ ./setup.py.nocleaning 2009-07-27 20:05:29.000000000 +0200 @@ -106,31 +106,3 @@ setup(name='Sonata', ('share/locale/zh_TW/LC_MESSAGES', ['mo/zh_TW/sonata.mo']), ('share/locale/uk/LC_MESSAGES', ['mo/uk/sonata.mo'])], ) - -# Cleanup (remove /build, /mo, and *.pyc files: -print "Cleaning up..." -try: - removeall("build/") - os.rmdir("build/") -except: - pass -try: - removeall("mo/") - os.rmdir("mo/") -except: - pass -try: - for f in os.listdir("."): - if os.path.isfile(f): - if os.path.splitext(os.path.basename(f))[1] == ".pyc": - os.remove(f) -except: - pass -try: - os.remove("sonata/sonata") -except: - pass -try: - os.remove("sonata/version.py") -except: - pass Index: sonata.spec =================================================================== RCS file: /cvs/extras/rpms/sonata/F-11/sonata.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sonata.spec 26 Feb 2009 02:01:19 -0000 1.21 +++ sonata.spec 27 Jul 2009 18:53:02 -0000 1.22 @@ -1,14 +1,14 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: sonata -Version: 1.5.2 -Release: 3%{?dist} +Version: 1.6.2 +Release: 1%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia License: GPLv3+ URL: http://sonata.berlios.de/ Source0: http://download.berlios.de/sonata/sonata-%{version}.tar.bz2 -Patch0: sonata-1.2-nocleaning.patch +Patch0: sonata-1.6.2-nocleaning.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: pygtk2-devel gtk2-devel @@ -58,6 +58,7 @@ desktop-file-install --vendor="fedora" ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop rm -rf $RPM_BUILD_ROOT%{_datadir}/sonata +chmod 755 ${RPM_BUILD_ROOT}%{python_sitearch}/%{name}/breadcrumbs.py %clean rm -rf $RPM_BUILD_ROOT @@ -73,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Jul 27 2009 Ha?kel Gu?mar - 1.6.2-1 +- Updated to 1.6.2 + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bpepple at fedoraproject.org Mon Jul 27 18:55:17 2009 From: bpepple at fedoraproject.org (Brian Pepple) Date: Mon, 27 Jul 2009 18:55:17 +0000 (UTC) Subject: rpms/meld/F-11 .cvsignore, 1.12, 1.13 meld.spec, 1.30, 1.31 sources, 1.12, 1.13 Message-ID: <20090727185517.827C711C00D5@cvs1.fedora.phx.redhat.com> Author: bpepple Update of /cvs/pkgs/rpms/meld/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4898 Modified Files: .cvsignore meld.spec sources Log Message: * Mon Jul 25 2009 Brian Pepple - 1.3.0-1 - Update to 1.3.0. - Drop gnome-python2-* requires, since they shouldn't be needed anymore. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/meld/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 23 Nov 2008 16:10:11 -0000 1.12 +++ .cvsignore 27 Jul 2009 18:55:16 -0000 1.13 @@ -1 +1 @@ -meld-1.2.1.tar.bz2 +meld-1.3.0.tar.bz2 Index: meld.spec =================================================================== RCS file: /cvs/pkgs/rpms/meld/F-11/meld.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- meld.spec 26 Feb 2009 00:16:27 -0000 1.30 +++ meld.spec 27 Jul 2009 18:55:17 -0000 1.31 @@ -1,12 +1,12 @@ Name: meld -Version: 1.2.1 -Release: 3%{?dist} +Version: 1.3.0 +Release: 1%{?dist} Summary: Visual diff and merge tool Group: Development/Tools License: GPLv2+ URL: http://meld.sourceforge.net/ -Source0: http://ftp.gnome.org/pub/gnome/sources/meld/1.1/meld-%{version}.tar.bz2 +Source0: http://ftp.gnome.org/pub/gnome/sources/meld/1.3/%{name}-%{version}.tar.bz2 Patch1: %{name}-scrollkeeper.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -16,12 +16,9 @@ BuildRequires: intltool BuildRequires: scrollkeeper BuildRequires: perl(XML::Parser) -Requires: gnome-python2-gnome -Requires: gnome-python2-canvas -Requires: gnome-python2-gconf -Requires: gnome-python2-gtksourceview Requires: pygtk2 >= 2.8.0 Requires: pygtk2-libglade +Requires: pygobject2 >= 2.8.0 Requires(post): scrollkeeper Requires(postun): scrollkeeper @@ -85,6 +82,10 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Mon Jul 25 2009 Brian Pepple - 1.3.0-1 +- Update to 1.3.0. +- Drop gnome-python2-* requires, since they shouldn't be needed anymore. + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/meld/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 23 Nov 2008 16:10:11 -0000 1.12 +++ sources 27 Jul 2009 18:55:17 -0000 1.13 @@ -1 +1 @@ -78f6084b14ee5334cf3578e62383b341 meld-1.2.1.tar.bz2 +8f8eaabfb398cb59e7cb51284003f552 meld-1.3.0.tar.bz2 From hguemar at fedoraproject.org Mon Jul 27 18:59:35 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 27 Jul 2009 18:59:35 +0000 (UTC) Subject: rpms/sonata/F-10 sonata-1.6.2-nocleaning.patch, NONE, 1.1 sonata.spec, 1.19, 1.20 sonata-1.2-nocleaning.patch, 1.2, NONE Message-ID: <20090727185935.1EC7F11C00D5@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6413 Modified Files: sonata.spec Added Files: sonata-1.6.2-nocleaning.patch Removed Files: sonata-1.2-nocleaning.patch Log Message: updated to 1.6.2 sonata-1.6.2-nocleaning.patch: setup.py | 28 ---------------------------- 1 file changed, 28 deletions(-) --- NEW FILE sonata-1.6.2-nocleaning.patch --- diff -up ./setup.py ./setup.py.nocleaning --- ./setup.py 2009-03-18 03:23:09.000000000 +0100 +++ ./setup.py.nocleaning 2009-07-27 20:05:29.000000000 +0200 @@ -106,31 +106,3 @@ setup(name='Sonata', ('share/locale/zh_TW/LC_MESSAGES', ['mo/zh_TW/sonata.mo']), ('share/locale/uk/LC_MESSAGES', ['mo/uk/sonata.mo'])], ) - -# Cleanup (remove /build, /mo, and *.pyc files: -print "Cleaning up..." -try: - removeall("build/") - os.rmdir("build/") -except: - pass -try: - removeall("mo/") - os.rmdir("mo/") -except: - pass -try: - for f in os.listdir("."): - if os.path.isfile(f): - if os.path.splitext(os.path.basename(f))[1] == ".pyc": - os.remove(f) -except: - pass -try: - os.remove("sonata/sonata") -except: - pass -try: - os.remove("sonata/version.py") -except: - pass Index: sonata.spec =================================================================== RCS file: /cvs/extras/rpms/sonata/F-10/sonata.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sonata.spec 16 Jun 2008 11:23:25 -0000 1.19 +++ sonata.spec 27 Jul 2009 18:59:34 -0000 1.20 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: sonata -Version: 1.5.2 +Version: 1.6.2 Release: 1%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia @@ -58,6 +58,7 @@ desktop-file-install --vendor="fedora" ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop rm -rf $RPM_BUILD_ROOT%{_datadir}/sonata +chmod 755 ${RPM_BUILD_ROOT}%{python_sitearch}/%{name}/breadcrumbs.py %clean rm -rf $RPM_BUILD_ROOT @@ -73,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Jul 27 2009 Ha?kel Gu?mar - 1.6.2-1 +- Updated to 1.6.2 + * Mon Jun 16 2008 Micha? Bentkowski - 1.5.2-1 - 1.5.2 --- sonata-1.2-nocleaning.patch DELETED --- From wtogami at fedoraproject.org Mon Jul 27 19:00:16 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Mon, 27 Jul 2009 19:00:16 +0000 (UTC) Subject: rpms/pidgin/devel .cvsignore, 1.27, 1.28 pidgin.spec, 1.86, 1.87 sources, 1.27, 1.28 pidgin-2.6.0devel-nocamera-crash.patch, 1.1, NONE Message-ID: <20090727190016.7895A11C043D@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6618 Modified Files: .cvsignore pidgin.spec sources Removed Files: pidgin-2.6.0devel-nocamera-crash.patch Log Message: new snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 21 Jul 2009 21:04:51 -0000 1.27 +++ .cvsignore 27 Jul 2009 19:00:15 -0000 1.28 @@ -1 +1 @@ -pidgin-2.6.0-devel-20090721.tar.bz2 +pidgin-2.6.0-devel-20090727.tar.bz2 Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- pidgin.spec 27 Jul 2009 02:41:39 -0000 1.86 +++ pidgin.spec 27 Jul 2009 19:00:15 -0000 1.87 @@ -76,8 +76,8 @@ Name: pidgin Version: 2.6.0 -%define snapshot 20090721 -Release: 0.6.%{snapshot}%{?dist} +%define snapshot 20090727 +Release: 0.7.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -112,7 +112,6 @@ Patch0: pidgin-NOT-UPSTREAM-2.6.0-reread Patch1: pidgin-NOT-UPSTREAM-2.5.2-rhel4-sound-migration.patch ## Patches 100+: To be Included in Future Upstream -Patch100: pidgin-2.6.0devel-nocamera-crash.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root Summary: A Gtk+ based multiprotocol instant messaging client @@ -367,7 +366,6 @@ echo "FEDORA=%{fedora} RHEL=%{rhel}" %endif ## Patches 100+: To be Included in Future Upstream -%patch100 -p0 # Our preferences cp %{SOURCE1} prefs.xml @@ -602,6 +600,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Warren Togami 2.6.0-0.7.20090727 +- new snapshot + * Mon Jul 27 2009 Stu Tomlinson 2.6.0-0.6.20090721 - Prevent main libpurple & pidgin packages depending on perl (#513902) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 Jul 2009 21:04:51 -0000 1.27 +++ sources 27 Jul 2009 19:00:15 -0000 1.28 @@ -1 +1 @@ -3bf334cc0159963fd65bc4a920025e15 pidgin-2.6.0-devel-20090721.tar.bz2 +5252f0a5ff1f407ea74218fffae00149 pidgin-2.6.0-devel-20090727.tar.bz2 --- pidgin-2.6.0devel-nocamera-crash.patch DELETED --- From mclasen at fedoraproject.org Mon Jul 27 19:00:44 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 19:00:44 +0000 (UTC) Subject: rpms/seahorse/devel seahorse.spec,1.73,1.74 Message-ID: <20090727190044.0619211C0425@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/seahorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4652 Modified Files: seahorse.spec Log Message: Drop unneeded deps Index: seahorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/seahorse.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- seahorse.spec 27 Jul 2009 04:05:23 -0000 1.73 +++ seahorse.spec 27 Jul 2009 19:00:43 -0000 1.74 @@ -1,6 +1,6 @@ Name: seahorse Version: 2.27.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A GNOME application for managing encryption keys Group: User Interface/Desktops # seahorse is GPLv2+ @@ -62,6 +62,11 @@ library that belongs to seahorse. %build GNUPG=/usr/bin/gpg2 ; export GNUPG ; %configure --disable-scrollkeeper + +# drop unneeded direct library deps with --as-needed +# libtool doesn't make this easy, so we do it the hard way +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool + make %{?_smp_mflags} # cleanup permissions for files that go into debuginfo find . -type f -name "*.c" -exec chmod a-x {} ';' @@ -158,6 +163,9 @@ fi %{_datadir}/gtk-doc/html/libcryptui %changelog +* Mon Jul 27 2009 Matthias Clasen - 2.27.1-4 +- Drop unneeded direct deps + * Sun Jul 26 2009 Fedora Release Engineering - 2.27.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From notting at fedoraproject.org Mon Jul 27 19:03:37 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 27 Jul 2009 19:03:37 +0000 (UTC) Subject: rpms/rpm/F-11 rpm.spec,1.353,1.354 Message-ID: <20090727190337.17BA311C00D5@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/rpm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8151 Modified Files: rpm.spec Log Message: Bump release. Index: rpm.spec =================================================================== RCS file: /cvs/extras/rpms/rpm/F-11/rpm.spec,v retrieving revision 1.353 retrieving revision 1.354 diff -u -p -r1.353 -r1.354 --- rpm.spec 23 Jul 2009 06:54:08 -0000 1.353 +++ rpm.spec 27 Jul 2009 19:03:33 -0000 1.354 @@ -25,7 +25,7 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ Source0: http://rpm.org/releases/rpm-4.7.x/%{name}-%{srcver}.tar.bz2 @@ -393,6 +393,9 @@ exit 0 %doc doc/librpm/html/* %changelog +* Mon Jul 27 2009 Bill Nottingham - 4.7.1-2 +- bump release + * Thu Jul 23 2009 Panu Matilainen - 4.7.1-1 - update to 4.7.1 (http://rpm.org/wiki/Releases/4.7.1) - fixes #461353, #475359, #502269, #508021, #509637, #511101 From hguemar at fedoraproject.org Mon Jul 27 19:07:42 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 27 Jul 2009 19:07:42 +0000 (UTC) Subject: rpms/sonata/devel sonata-1.6.2-nocleaning.patch, NONE, 1.1 sonata.spec, 1.22, 1.23 sonata-1.2-nocleaning.patch, 1.2, NONE Message-ID: <20090727190742.F3EE111C00D5@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9760 Modified Files: sonata.spec Added Files: sonata-1.6.2-nocleaning.patch Removed Files: sonata-1.2-nocleaning.patch Log Message: updated to 1.6.2 sonata-1.6.2-nocleaning.patch: setup.py | 28 ---------------------------- 1 file changed, 28 deletions(-) --- NEW FILE sonata-1.6.2-nocleaning.patch --- diff -up ./setup.py ./setup.py.nocleaning --- ./setup.py 2009-03-18 03:23:09.000000000 +0100 +++ ./setup.py.nocleaning 2009-07-27 20:05:29.000000000 +0200 @@ -106,31 +106,3 @@ setup(name='Sonata', ('share/locale/zh_TW/LC_MESSAGES', ['mo/zh_TW/sonata.mo']), ('share/locale/uk/LC_MESSAGES', ['mo/uk/sonata.mo'])], ) - -# Cleanup (remove /build, /mo, and *.pyc files: -print "Cleaning up..." -try: - removeall("build/") - os.rmdir("build/") -except: - pass -try: - removeall("mo/") - os.rmdir("mo/") -except: - pass -try: - for f in os.listdir("."): - if os.path.isfile(f): - if os.path.splitext(os.path.basename(f))[1] == ".pyc": - os.remove(f) -except: - pass -try: - os.remove("sonata/sonata") -except: - pass -try: - os.remove("sonata/version.py") -except: - pass Index: sonata.spec =================================================================== RCS file: /cvs/extras/rpms/sonata/devel/sonata.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sonata.spec 27 Jul 2009 04:34:45 -0000 1.22 +++ sonata.spec 27 Jul 2009 19:07:42 -0000 1.23 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: sonata -Version: 1.5.2 -Release: 4%{?dist} +Version: 1.6.2 +Release: 1%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia License: GPLv3+ @@ -58,6 +58,7 @@ desktop-file-install --vendor="fedora" ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop rm -rf $RPM_BUILD_ROOT%{_datadir}/sonata +chmod 755 ${RPM_BUILD_ROOT}%{python_sitearch}/%{name}/breadcrumbs.py %clean rm -rf $RPM_BUILD_ROOT @@ -73,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Mon Jul 27 2009 Ha?kel Gu?mar - 1.6.2-1 +- Updated to 1.6.2 + * Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- sonata-1.2-nocleaning.patch DELETED --- From hno at fedoraproject.org Mon Jul 27 19:14:02 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:14:02 +0000 (UTC) Subject: rpms/squid/devel squid.spec,1.129,1.130 Message-ID: <20090727191402.2792911C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11545 Modified Files: squid.spec Log Message: Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/squid.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- squid.spec 27 Jul 2009 04:45:16 -0000 1.129 +++ squid.spec 27 Jul 2009 19:14:01 -0000 1.130 @@ -3,8 +3,8 @@ ## % define __find_requires %{SOURCE99} Name: squid -Version: 3.0.STABLE16 -Release: 3%{?dist} +Version: 3.0.STABLE17 +Release: 1%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -344,6 +344,10 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Mon Jul 27 2009 Henrik Nordstrom - 3.0.STABLE17-1 +- Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues + mentioned in Squid security advisory SQUID-2009_2. + * Sun Jul 26 2009 Fedora Release Engineering - 7:3.0.STABLE16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hno at fedoraproject.org Mon Jul 27 19:17:22 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:17:22 +0000 (UTC) Subject: rpms/squid/devel .cvsignore, 1.43, 1.44 sources, 1.46, 1.47 squid.spec, 1.130, 1.131 Message-ID: <20090727191722.6D58711C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12571 Modified Files: .cvsignore sources squid.spec Log Message: Correct list of patches Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 29 Jun 2009 12:02:14 -0000 1.43 +++ .cvsignore 27 Jul 2009 19:17:22 -0000 1.44 @@ -1,3 +0,0 @@ -squid-3.0.STABLE16.tar.bz2 -b9052.patch -b9053.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/sources,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sources 29 Jun 2009 12:02:14 -0000 1.46 +++ sources 27 Jul 2009 19:17:22 -0000 1.47 @@ -1,3 +0,0 @@ -aa039a2c75404a496f0e99a278599e00 squid-3.0.STABLE16.tar.bz2 -8039be92fb6ca5a71dd11b7d99c841fa b9052.patch -edcea01a412a23fb0ceaddf0eaa16c8b b9053.patch Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/squid.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- squid.spec 27 Jul 2009 19:14:01 -0000 1.130 +++ squid.spec 27 Jul 2009 19:17:22 -0000 1.131 @@ -4,7 +4,7 @@ Name: squid Version: 3.0.STABLE17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -22,8 +22,6 @@ Source98: perl-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/bXXXX.patch -Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9052.patch -Patch002: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9053.patch # External patches @@ -61,8 +59,6 @@ lookup program (dnsserver), a program fo %prep %setup -q -%patch001 -p0 -b .b9052 -%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build From hno at fedoraproject.org Mon Jul 27 19:18:50 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:18:50 +0000 (UTC) Subject: rpms/squid/devel .cvsignore,1.44,1.45 sources,1.47,1.48 Message-ID: <20090727191850.40D3911C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13056 Modified Files: .cvsignore sources Log Message: Sources uploaded Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/.cvsignore,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- .cvsignore 27 Jul 2009 19:17:22 -0000 1.44 +++ .cvsignore 27 Jul 2009 19:18:49 -0000 1.45 @@ -0,0 +1 @@ +squid-3.0.STABLE17.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 27 Jul 2009 19:17:22 -0000 1.47 +++ sources 27 Jul 2009 19:18:49 -0000 1.48 @@ -0,0 +1 @@ +68b4cdb2590f36e9475e7a8c1c4a4046 squid-3.0.STABLE17.tar.bz2 From itamarjp at fedoraproject.org Mon Jul 27 19:37:10 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Mon, 27 Jul 2009 19:37:10 +0000 (UTC) Subject: rpms/sylpheed/devel import.log, NONE, 1.1 .cvsignore, 1.41, 1.42 sources, 1.41, 1.42 sylpheed.spec, 1.99, 1.100 sylpheed-2.6.0-addrbook-csv-import.patch, 1.1, NONE Message-ID: <20090727193710.0EFE411C00D5@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/sylpheed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18947/devel Modified Files: .cvsignore sources sylpheed.spec Added Files: import.log Removed Files: sylpheed-2.6.0-addrbook-csv-import.patch Log Message: new version 2.7.0 --- NEW FILE import.log --- sylpheed-2_7_0-1_fc12:HEAD:sylpheed-2.7.0-1.fc12.src.rpm:1248723180 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 19 Dec 2008 09:41:03 -0000 1.41 +++ .cvsignore 27 Jul 2009 19:37:09 -0000 1.42 @@ -1,2 +1 @@ -sylpheed-2.6.0.tar.bz2 -sylpheed-2.6.0.tar.bz2.asc +sylpheed-2.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 19 Dec 2008 09:41:03 -0000 1.41 +++ sources 27 Jul 2009 19:37:09 -0000 1.42 @@ -1,2 +1 @@ -5b7ed03b106e2a0d300b103652dd34c2 sylpheed-2.6.0.tar.bz2 -495ba47f34dcdbce14f056dbab3a54aa sylpheed-2.6.0.tar.bz2.asc +977a8fc56dafc2af948e082f3ac28d9e sylpheed-2.7.0.tar.bz2 Index: sylpheed.spec =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sylpheed.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- sylpheed.spec 27 Jul 2009 05:14:31 -0000 1.99 +++ sylpheed.spec 27 Jul 2009 19:37:09 -0000 1.100 @@ -1,13 +1,13 @@ # should be vendor 'fedora', but that would break upgrades for # people who have linked the desktop icon -%define desktopvendor redhat +%global desktopvendor redhat -%define tarversion 2.6.0 +%global tarversion 2.7.0 Summary: GTK+ based, lightweight, and fast email client Name: sylpheed -Version: 2.6.0 -Release: 5%{?dist} +Version: 2.7.0 +Release: 1%{?dist} License: GPLv2+ URL: http://sylpheed.sraoss.jp/ Group: Applications/Internet @@ -34,8 +34,6 @@ Patch2: sylpheed-2.5.0-desktop.patch Patch3: sylpheed-2.5.0-certsdir.patch # customisation for default Folder View preferences to mimic older Sylpheed Patch4: sylpheed-2.5.0-prefs_common.patch -# crash-fix -Patch5: sylpheed-2.6.0-addrbook-csv-import.patch # For xdg-open in patch1. Requires: xdg-utils @@ -55,13 +53,36 @@ o XML-based address book See /usr/share/doc/sylpheed*/README for more information. + +%package devel +Summary: Development files for sylpheed +Group: Development/Libraries +Requires: sylpheed = %{version}-%{release} + +%description devel +This program is an X based fast email client which has features like: + +o user-friendly and intuitive interface +o integrated NetNews client (partially implemented) +o ability of keyboard-only operation +o Mew/Wanderlust-like key bind +o multipart MIME +o unlimited multiple account handling +o message queueing +o assortment function +o XML-based address book + +See /usr/share/doc/sylpheed*/README for more information. + +this package contains development files only + + %prep %setup -q -n sylpheed-%{tarversion} %patch1 -p1 -b .defs.h %patch2 -p1 -b .desktop %patch3 -p1 -b .certsdir %patch4 -p1 -b .prefs_common -%patch5 -p1 -b .addrbook-csv-import %build %configure --enable-ssl %{!?_without_gpgme:--enable-gpgme} \ @@ -81,7 +102,9 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; + mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications install -p -m 644 sylpheed-64x64.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/sylpheed.png @@ -98,6 +121,12 @@ install -p -m 0644 %{SOURCE1} $RPM_BUILD %clean rm -rf $RPM_BUILD_ROOT + +%post devel -p /sbin/ldconfig + +%postun devel -p /sbin/ldconfig + + %files -f %{name}.lang %defattr(-,root,root,-) %doc COPYING ChangeLog README INSTALL TODO @@ -109,7 +138,15 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %{_mandir}/man1/* +%files devel +%defattr(-,root,root,-) +%{_includedir}/sylpheed/ +%{_libdir}/* + %changelog +* Mon Jul 27 2009 Itamar Reis Peixoto - 2.7.0-1 +- new version 2.7.0 + * Sun Jul 26 2009 Fedora Release Engineering - 2.6.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- sylpheed-2.6.0-addrbook-csv-import.patch DELETED --- From hno at fedoraproject.org Mon Jul 27 19:43:13 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:43:13 +0000 (UTC) Subject: rpms/squid/F-10 .cvsignore, 1.40, 1.41 sources, 1.44, 1.45 squid.spec, 1.117, 1.118 Message-ID: <20090727194314.0765C11C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21008 Modified Files: .cvsignore sources squid.spec Log Message: Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 13 Jul 2009 11:55:28 -0000 1.40 +++ .cvsignore 27 Jul 2009 19:43:13 -0000 1.41 @@ -1,3 +1 @@ -squid-3.0.STABLE16.tar.bz2 -b9052.patch -b9053.patch +squid-3.0.STABLE17.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 13 Jul 2009 11:55:28 -0000 1.44 +++ sources 27 Jul 2009 19:43:13 -0000 1.45 @@ -1,3 +1 @@ -aa039a2c75404a496f0e99a278599e00 squid-3.0.STABLE16.tar.bz2 -8039be92fb6ca5a71dd11b7d99c841fa b9052.patch -edcea01a412a23fb0ceaddf0eaa16c8b b9053.patch +68b4cdb2590f36e9475e7a8c1c4a4046 squid-3.0.STABLE17.tar.bz2 Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/squid.spec,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- squid.spec 13 Jul 2009 11:55:28 -0000 1.117 +++ squid.spec 27 Jul 2009 19:43:13 -0000 1.118 @@ -3,8 +3,8 @@ ## % define __find_requires %{SOURCE99} Name: squid -Version: 3.0.STABLE16 -Release: 2%{?dist} +Version: 3.0.STABLE17 +Release: 1%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -22,8 +22,6 @@ Source98: perl-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/bXXXX.patch -Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9052.patch -Patch002: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9053.patch # External patches @@ -61,8 +59,6 @@ lookup program (dnsserver), a program fo %prep %setup -q -%patch001 -p0 -b .b9052 -%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build @@ -344,6 +340,10 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Mon Jul 27 2009 Henrik Nordstrom - 3.0.STABLE17-1 +- Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues + mentioned in Squid security advisory SQUID-2009_2. + * Mon Jul 13 2009 Henrik Nordstrom - 7:3.0.STABLE16-2 - Upgrade to latest upstream From hno at fedoraproject.org Mon Jul 27 19:47:31 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:47:31 +0000 (UTC) Subject: rpms/squid/F-11 .cvsignore, 1.42, 1.43 sources, 1.45, 1.46 squid.spec, 1.122, 1.123 Message-ID: <20090727194731.A6CBC11C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22193 Modified Files: .cvsignore sources squid.spec Log Message: Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 13 Jul 2009 11:53:57 -0000 1.42 +++ .cvsignore 27 Jul 2009 19:47:31 -0000 1.43 @@ -1,3 +1 @@ -squid-3.0.STABLE16.tar.bz2 -b9052.patch -b9053.patch +squid-3.0.STABLE17.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 13 Jul 2009 11:53:57 -0000 1.45 +++ sources 27 Jul 2009 19:47:31 -0000 1.46 @@ -1,3 +1 @@ -aa039a2c75404a496f0e99a278599e00 squid-3.0.STABLE16.tar.bz2 -8039be92fb6ca5a71dd11b7d99c841fa b9052.patch -edcea01a412a23fb0ceaddf0eaa16c8b b9053.patch +68b4cdb2590f36e9475e7a8c1c4a4046 squid-3.0.STABLE17.tar.bz2 Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/squid.spec,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- squid.spec 13 Jul 2009 11:53:57 -0000 1.122 +++ squid.spec 27 Jul 2009 19:47:31 -0000 1.123 @@ -3,8 +3,8 @@ ## % define __find_requires %{SOURCE99} Name: squid -Version: 3.0.STABLE16 -Release: 2%{?dist} +Version: 3.0.STABLE17 +Release: 1%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -22,8 +22,6 @@ Source98: perl-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/bXXXX.patch -Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9052.patch -Patch002: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9053.patch # External patches @@ -61,8 +59,6 @@ lookup program (dnsserver), a program fo %prep %setup -q -%patch001 -p0 -b .b9052 -%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build @@ -344,6 +340,10 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Mon Jul 27 2009 Henrik Nordstrom - 3.0.STABLE17-1 +- Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues + mentioned in Squid security advisory SQUID-2009_2. + * Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 - fixed patch parameter of bXXX patches From hno at fedoraproject.org Mon Jul 27 19:55:01 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:55:01 +0000 (UTC) Subject: rpms/bzr/F-11 .cvsignore, 1.42, 1.43 bzr.spec, 1.60, 1.61 sources, 1.42, 1.43 Message-ID: <20090727195501.7A2CA11C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/bzr/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25255 Modified Files: .cvsignore bzr.spec sources Log Message: 1.17 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr/F-11/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 29 Jun 2009 11:32:59 -0000 1.42 +++ .cvsignore 27 Jul 2009 19:55:01 -0000 1.43 @@ -1 +1 @@ -bzr-1.16.1.tar.gz +bzr-1.17.tar.gz Index: bzr.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr/F-11/bzr.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- bzr.spec 29 Jun 2009 11:32:59 -0000 1.60 +++ bzr.spec 27 Jul 2009 19:55:01 -0000 1.61 @@ -1,10 +1,10 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} # bzr major versions uses two digits. Specify subreleases if any in Version: -%define bzrver 1.16 +%define bzrver 1.17 Name: bzr -Version: %{bzrver}.1 +Version: %{bzrver} Release: 1%{?dist} Summary: Friendly distributed version control system @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Henrik Nordstrom - 1.17-1 +- Update to 1.17 + * Mon Jun 29 2009 Henrik Nordstrom - 1.16.1-1 - Update to 1.16.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr/F-11/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 29 Jun 2009 11:33:00 -0000 1.42 +++ sources 27 Jul 2009 19:55:01 -0000 1.43 @@ -1 +1 @@ -e04f6de1c3ef9540830f6270131dc303 bzr-1.16.1.tar.gz +d772508e60b47a1641fa487c5cf7e08e bzr-1.17.tar.gz From pkgdb at fedoraproject.org Mon Jul 27 19:55:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:55:45 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195545.86B5110F8B6@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:55:48 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195548.C1A5B10F8BB@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 7 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:55:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:55:51 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195551.232D910F8BC@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 6 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:55:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:55:53 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195553.D29DC10F89A@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:55:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:55:57 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195557.681E310F8BD@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:56:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:00 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195600.F1A0E10F8C1@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 10 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:56:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:03 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727195605.A421910F8C5@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 11 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 19:56:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:22 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195622.170C010F8B8@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:24 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195624.6D33110F8BA@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 6 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:27 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195627.4116F10F8B5@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:28 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195628.D7A8C10F8B7@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:30 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195630.7584310F8B9@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 10 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:32 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727195632.1869A10F8C8@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 11 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 19:56:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:44 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195644.C605C10F8BD@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 6 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 19:56:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:42 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195642.B8FDC10F8CD@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 19:56:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:49 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195649.0E11810F8C4@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 19:56:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:50 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195650.EA98510F8CF@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 10 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 19:56:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:52 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195652.5F2A310F8CB@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 11 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 19:56:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:58 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727195658.830E610F8B1@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 19:57:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:00 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727195700.BD28B10F8C5@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 19:57:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:02 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727195702.4322110F8CA@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 19:57:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:03 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727195703.DFEB610F8D2@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 10 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 19:57:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:05 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727195705.6106410F8D3@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 11 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 19:57:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:17 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195717.5026910F899@bastion2.fedora.phx.redhat.com> Package clutter in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:57:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:20 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195720.6AC7610F8B7@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 7 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:57:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:22 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195723.06C3F10F8DB@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 6 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:57:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:25 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195725.67D5410F8DC@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:57:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:57:27 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195727.39E6210F8DD@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:56:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:56:46 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727195646.EE05410F8C1@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From hno at fedoraproject.org Mon Jul 27 19:58:01 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 27 Jul 2009 19:58:01 +0000 (UTC) Subject: rpms/bzrtools/F-11 .cvsignore, 1.30, 1.31 bzrtools.spec, 1.47, 1.48 sources, 1.31, 1.32 Message-ID: <20090727195801.D5C8411C00D5@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/bzrtools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25956 Modified Files: .cvsignore bzrtools.spec sources Log Message: 1.17.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/F-11/.cvsignore,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- .cvsignore 29 Jun 2009 11:38:06 -0000 1.30 +++ .cvsignore 27 Jul 2009 19:58:01 -0000 1.31 @@ -1 +1 @@ -bzrtools-1.16.0.tar.gz +bzrtools-1.17.0.tar.gz Index: bzrtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/F-11/bzrtools.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- bzrtools.spec 29 Jun 2009 11:38:06 -0000 1.47 +++ bzrtools.spec 27 Jul 2009 19:58:01 -0000 1.48 @@ -5,8 +5,8 @@ # (bzrlib is arch dependent. Thus bzrlib plugins are also arch dependent.) %define debug_package %{nil} -%define bzrver 1.16 -%define bzrnextver 1.17 +%define bzrver 1.17 +%define bzrnextver 1.18 Name: bzrtools Version: %{bzrver}.0 @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Henrik Nordstrom - 1.17.0-1 +- Update to 1.17.0 + * Mon Jun 29 2009 Henrik Nordstrom - 1.16.0-1 - Update to 1.16.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/F-11/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 29 Jun 2009 11:38:06 -0000 1.31 +++ sources 27 Jul 2009 19:58:01 -0000 1.32 @@ -1 +1 @@ -9d0b7ad49570631ff5847cf7a74d2af7 bzrtools-1.16.0.tar.gz +e03c8528ca5f455968957c44d72a6f61 bzrtools-1.17.0.tar.gz From pkgdb at fedoraproject.org Mon Jul 27 19:58:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:58:10 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195810.5C09010F8C0@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 11 is now owned by otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 19:58:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 19:58:27 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727195827.D4DEC10F8C9@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 10 is now owned by otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:05:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:05:31 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727200531.7878710F856@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:05:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:05:35 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727200535.C927A10F899@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 9 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:05:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:05:40 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727200540.A558910F89D@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 11 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:05:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:05:42 +0000 Subject: [pkgdb] clutter-cairo ownership updated Message-ID: <20090727200542.DB1D610F8A1@bastion2.fedora.phx.redhat.com> Package clutter-cairo in Fedora 10 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:06:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:06:13 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727200613.CBED210F856@bastion2.fedora.phx.redhat.com> Package clutter in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:06:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:06:19 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727200619.7104D10F89E@bastion2.fedora.phx.redhat.com> Package clutter in Fedora 9 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:06:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:06:42 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727200642.5839410F89A@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:06:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:06:46 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727200646.D19F110F8B1@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:06:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:06:52 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727200652.CF0FC10F897@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:07:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:07:28 +0000 Subject: [pkgdb] clutter: sundaram has requested watchbugzilla Message-ID: <20090727200728.469D410F899@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on clutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:07:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:07:31 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727200731.699DE10F89E@bastion2.fedora.phx.redhat.com> Package clutter in Fedora devel was orphaned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:07:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:07:58 +0000 Subject: [pkgdb] clutter ownership updated Message-ID: <20090727200758.615F610F856@bastion2.fedora.phx.redhat.com> Package clutter in Fedora devel is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:04 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727200804.E064510F899@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 9 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:08:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:05 +0000 Subject: [pkgdb] clutter: sundaram has requested commit Message-ID: <20090727200805.9702F10F89C@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on clutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:06 +0000 Subject: [pkgdb] clutter: sundaram has requested approveacls Message-ID: <20090727200806.D19C010F8B4@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on clutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:06 +0000 Subject: [pkgdb] clutter: sundaram has requested watchcommits Message-ID: <20090727200806.7700E10F89D@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on clutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:07 +0000 Subject: [pkgdb] clutter-gst ownership updated Message-ID: <20090727200807.6123610F8B6@bastion2.fedora.phx.redhat.com> Package clutter-gst in Fedora 11 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:08:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:13 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727200813.1C18E10F856@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 9 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:08:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:13 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727200813.AFA9010F8B8@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 10 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:08:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:15 +0000 Subject: [pkgdb] clutter-gtk ownership updated Message-ID: <20090727200815.48C9010F8BB@bastion2.fedora.phx.redhat.com> Package clutter-gtk in Fedora 11 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:08:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:19 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727200819.E241710F899@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 9 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:22 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727200822.19BE710F89B@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 10 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:22 +0000 Subject: [pkgdb] pyclutter ownership updated Message-ID: <20090727200822.8A88510F89C@bastion2.fedora.phx.redhat.com> Package pyclutter in Fedora 11 is now owned by itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:55 +0000 Subject: [pkgdb] pyclutter: sundaram has requested watchbugzilla Message-ID: <20090727200855.4218010F8B8@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on pyclutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:55 +0000 Subject: [pkgdb] pyclutter: sundaram has requested watchcommits Message-ID: <20090727200855.C7FEC10F8BB@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on pyclutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:57 +0000 Subject: [pkgdb] pyclutter: sundaram has requested commit Message-ID: <20090727200857.47EFD10F8C1@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on pyclutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:08:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:08:57 +0000 Subject: [pkgdb] pyclutter: sundaram has requested approveacls Message-ID: <20090727200857.BD81910F8C5@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on pyclutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:09:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:06 +0000 Subject: [pkgdb] clutter-gtk: sundaram has requested commit Message-ID: <20090727200906.7D42010F8CC@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on clutter-gtk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:09:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:19 +0000 Subject: [pkgdb] clutter-gst: sundaram has requested watchbugzilla Message-ID: <20090727200919.3F4FA10F8BE@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on clutter-gst (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:09:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:19 +0000 Subject: [pkgdb] clutter-gst: sundaram has requested watchcommits Message-ID: <20090727200919.7A92D10F8D7@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on clutter-gst (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:09:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:22 +0000 Subject: [pkgdb] clutter-gst: sundaram has requested commit Message-ID: <20090727200922.E413B10F8DA@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on clutter-gst (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:09:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:26 +0000 Subject: [pkgdb] clutter-gst: sundaram has requested approveacls Message-ID: <20090727200926.3E3A410F8B0@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on clutter-gst (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:09:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:34 +0000 Subject: [pkgdb] clutter-cairo: sundaram has requested watchbugzilla Message-ID: <20090727200934.1EF4710F8B5@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on clutter-cairo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:09:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:34 +0000 Subject: [pkgdb] clutter-cairo: sundaram has requested watchcommits Message-ID: <20090727200934.6976B10F8DE@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on clutter-cairo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:09:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:36 +0000 Subject: [pkgdb] clutter-cairo: sundaram has requested commit Message-ID: <20090727200936.C539710F8E0@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on clutter-cairo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:09:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:39 +0000 Subject: [pkgdb] clutter-cairo: sundaram has requested approveacls Message-ID: <20090727200939.4CEEA10F8B9@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on clutter-cairo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:09:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:56 +0000 Subject: [pkgdb] pyclutter had acl change status Message-ID: <20090727200956.A828D10F8E3@bastion2.fedora.phx.redhat.com> itamarjp has set the watchcommits acl on pyclutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:09:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:58 +0000 Subject: [pkgdb] pyclutter had acl change status Message-ID: <20090727200958.DE1E510F8E5@bastion2.fedora.phx.redhat.com> itamarjp has set the watchbugzilla acl on pyclutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:09:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:07 +0000 Subject: [pkgdb] clutter-gtk: sundaram has requested watchcommits Message-ID: <20090727200907.A65A110F8CF@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on clutter-gtk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:09:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:08 +0000 Subject: [pkgdb] clutter-gtk: sundaram has requested watchbugzilla Message-ID: <20090727200908.5A73C10F8D1@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on clutter-gtk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:09:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:09 +0000 Subject: [pkgdb] clutter-gtk: sundaram has requested approveacls Message-ID: <20090727200909.98A4210F8D4@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on clutter-gtk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:09:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:09:55 +0000 Subject: [pkgdb] pyclutter had acl change status Message-ID: <20090727200955.66A0710F8C0@bastion2.fedora.phx.redhat.com> itamarjp has set the commit acl on pyclutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:10:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:10:35 +0000 Subject: [pkgdb] pyclutter had acl change status Message-ID: <20090727201036.38CFB10F8CD@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on pyclutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyclutter From pkgdb at fedoraproject.org Mon Jul 27 20:10:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:10:56 +0000 Subject: [pkgdb] clutter had acl change status Message-ID: <20090727201056.09C7F10F8BF@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on clutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:10:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:10:58 +0000 Subject: [pkgdb] clutter had acl change status Message-ID: <20090727201058.9252910F8D1@bastion2.fedora.phx.redhat.com> itamarjp has set the watchcommits acl on clutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:18 +0000 Subject: [pkgdb] clutter: itamarjp has requested approveacls Message-ID: <20090727201118.82E2E10F8B4@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:19 +0000 Subject: [pkgdb] clutter: itamarjp has requested commit Message-ID: <20090727201119.58DBD10F8ED@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:21 +0000 Subject: [pkgdb] clutter: itamarjp has requested watchcommits Message-ID: <20090727201121.B933410F8F0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:23 +0000 Subject: [pkgdb] clutter: itamarjp has requested watchbugzilla Message-ID: <20090727201123.5B30A10F8F4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:25 +0000 Subject: [pkgdb] clutter: itamarjp has requested watchcommits Message-ID: <20090727201125.1089C10F8FA@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:25 +0000 Subject: [pkgdb] clutter: itamarjp has requested watchbugzilla Message-ID: <20090727201125.7AA9A10F8FD@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:27 +0000 Subject: [pkgdb] clutter: itamarjp has requested commit Message-ID: <20090727201127.34F6A10F900@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:27 +0000 Subject: [pkgdb] clutter: itamarjp has requested approveacls Message-ID: <20090727201127.3BFA210F902@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Mon Jul 27 20:11:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:49 +0000 Subject: [pkgdb] clutter-cairo had acl change status Message-ID: <20090727201149.6263310F8B7@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on clutter-cairo (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:11:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:50 +0000 Subject: [pkgdb] clutter-cairo had acl change status Message-ID: <20090727201150.3C94B10F8C0@bastion2.fedora.phx.redhat.com> itamarjp has set the commit acl on clutter-cairo (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:11:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:51 +0000 Subject: [pkgdb] clutter-cairo had acl change status Message-ID: <20090727201151.735B810F8C1@bastion2.fedora.phx.redhat.com> itamarjp has set the watchcommits acl on clutter-cairo (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:11:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:11:54 +0000 Subject: [pkgdb] clutter-cairo had acl change status Message-ID: <20090727201154.C9E8510F8DF@bastion2.fedora.phx.redhat.com> itamarjp has set the watchbugzilla acl on clutter-cairo (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-cairo From pkgdb at fedoraproject.org Mon Jul 27 20:12:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:12:29 +0000 Subject: [pkgdb] clutter-gst had acl change status Message-ID: <20090727201229.16FFB10F89C@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on clutter-gst (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:12:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:12:31 +0000 Subject: [pkgdb] clutter-gst had acl change status Message-ID: <20090727201231.B713010F8C6@bastion2.fedora.phx.redhat.com> itamarjp has set the commit acl on clutter-gst (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:12:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:12:31 +0000 Subject: [pkgdb] clutter-gst had acl change status Message-ID: <20090727201231.BC16310F8C7@bastion2.fedora.phx.redhat.com> itamarjp has set the watchcommits acl on clutter-gst (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:12:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:12:33 +0000 Subject: [pkgdb] clutter-gst had acl change status Message-ID: <20090727201233.0DC4310F8E3@bastion2.fedora.phx.redhat.com> itamarjp has set the watchbugzilla acl on clutter-gst (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gst From pkgdb at fedoraproject.org Mon Jul 27 20:13:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:13:00 +0000 Subject: [pkgdb] clutter-gtk had acl change status Message-ID: <20090727201300.7250710F89D@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on clutter-gtk (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:13:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:13:02 +0000 Subject: [pkgdb] clutter-gtk had acl change status Message-ID: <20090727201302.2DAA510F8CF@bastion2.fedora.phx.redhat.com> itamarjp has set the commit acl on clutter-gtk (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:13:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:13:03 +0000 Subject: [pkgdb] clutter-gtk had acl change status Message-ID: <20090727201303.F1B3A10F8D0@bastion2.fedora.phx.redhat.com> itamarjp has set the watchcommits acl on clutter-gtk (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From pkgdb at fedoraproject.org Mon Jul 27 20:13:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 20:13:05 +0000 Subject: [pkgdb] clutter-gtk had acl change status Message-ID: <20090727201305.64FC510F8E5@bastion2.fedora.phx.redhat.com> itamarjp has set the watchbugzilla acl on clutter-gtk (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-gtk From laxathom at fedoraproject.org Mon Jul 27 20:26:19 2009 From: laxathom at fedoraproject.org (Xavier LAMIEN) Date: Mon, 27 Jul 2009 20:26:19 +0000 (UTC) Subject: rpms/gnome-desktop-sharp/F-11 gnome-desktop-sharp.spec,1.10,1.11 Message-ID: <20090727202619.9F24E11C00D5@cvs1.fedora.phx.redhat.com> Author: laxathom Update of /cvs/pkgs/rpms/gnome-desktop-sharp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2099 Modified Files: gnome-desktop-sharp.spec Log Message: rebuild Index: gnome-desktop-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop-sharp/F-11/gnome-desktop-sharp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gnome-desktop-sharp.spec 17 Jun 2009 12:52:10 -0000 1.10 +++ gnome-desktop-sharp.spec 27 Jul 2009 20:26:19 -0000 1.11 @@ -1,6 +1,6 @@ Name: gnome-desktop-sharp Version: 2.26.0 -Release: 3%{?dist}.1 +Release: 4%{?dist} Summary: .NET language binding for mono Group: System Environment/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jul 27 2009 Xavier Lamien - 2.26.0-4 +- Rebuild. + * Wed Jun 17 2009 Karsten Hopp 2.26.0-3.1 - mono is available on s390x From itamarjp at fedoraproject.org Mon Jul 27 20:53:29 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Mon, 27 Jul 2009 20:53:29 +0000 (UTC) Subject: rpms/sylpheed/devel import.log,1.1,1.2 sylpheed.spec,1.100,1.101 Message-ID: <20090727205329.17E4E11C00D5@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/sylpheed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9791/devel Modified Files: import.log sylpheed.spec Log Message: small fix in spec files about libs Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 Jul 2009 19:37:09 -0000 1.1 +++ import.log 27 Jul 2009 20:53:28 -0000 1.2 @@ -1 +1,2 @@ sylpheed-2_7_0-1_fc12:HEAD:sylpheed-2.7.0-1.fc12.src.rpm:1248723180 +sylpheed-2_7_0-2_fc12:HEAD:sylpheed-2.7.0-2.fc12.src.rpm:1248727907 Index: sylpheed.spec =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sylpheed.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- sylpheed.spec 27 Jul 2009 19:37:09 -0000 1.100 +++ sylpheed.spec 27 Jul 2009 20:53:28 -0000 1.101 @@ -7,7 +7,7 @@ Summary: GTK+ based, lightweight, and fast email client Name: sylpheed Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://sylpheed.sraoss.jp/ Group: Applications/Internet @@ -121,9 +121,11 @@ install -p -m 0644 %{SOURCE1} $RPM_BUILD %clean rm -rf $RPM_BUILD_ROOT +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig -%post devel -p /sbin/ldconfig +%post devel -p /sbin/ldconfig %postun devel -p /sbin/ldconfig @@ -137,13 +139,18 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{desktopvendor}-%{name}.desktop %{_datadir}/pixmaps/* %{_mandir}/man1/* +%{_libdir}/libsylpheed-plugin-0.so.* +%{_libdir}/libsylph-0.so.* %files devel %defattr(-,root,root,-) %{_includedir}/sylpheed/ -%{_libdir}/* +%{_libdir}/*.so %changelog +* Mon Jul 27 2009 Itamar Reis Peixoto - 2.7.0-2 +- small fix in spec files about libs + * Mon Jul 27 2009 Itamar Reis Peixoto - 2.7.0-1 - new version 2.7.0 From scop at fedoraproject.org Mon Jul 27 20:54:00 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Mon, 27 Jul 2009 20:54:00 +0000 (UTC) Subject: rpms/abcde/devel abcde-2.3.99.7-config.patch, NONE, 1.1 abcde-2.3.99.7-speex-comment.patch, NONE, 1.1 abcde-2.3.99.7-trackinfo.patch, NONE, 1.1 abcde_2.3.99.7-1ubuntu1.diff, NONE, 1.1 .cvsignore, 1.10, 1.11 abcde.spec, 1.20, 1.21 sources, 1.10, 1.11 abcde-2.3.99.6-speex-comment.patch, 1.1, NONE abcde-2.3.99.6-usage.patch, 1.1, NONE abcde-2.3.99.6-wget111-441862.patch, 1.1, NONE abcde_2.3.99.6-1ubuntu2.patch, 1.1, NONE Message-ID: <20090727205400.0CB5311C00D5@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/abcde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10295 Modified Files: .cvsignore abcde.spec sources Added Files: abcde-2.3.99.7-config.patch abcde-2.3.99.7-speex-comment.patch abcde-2.3.99.7-trackinfo.patch abcde_2.3.99.7-1ubuntu1.diff Removed Files: abcde-2.3.99.6-speex-comment.patch abcde-2.3.99.6-usage.patch abcde-2.3.99.6-wget111-441862.patch abcde_2.3.99.6-1ubuntu2.patch Log Message: * Mon Jul 27 2009 Ville Skytt? - 2.3.99.7-1 - Update to 2.3.99.7 (#513795); wget and usage patches applied upstream. - Patch to improve CDDB track info handling. - Update URL. abcde-2.3.99.7-config.patch: README | 4 ++-- abcde | 2 +- abcde.1 | 6 +++--- abcde.conf | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) --- NEW FILE abcde-2.3.99.7-config.patch --- diff -up abcde-2.3.99.7/abcde~ abcde-2.3.99.7/abcde --- abcde-2.3.99.7/abcde~ 2008-06-10 13:39:05.000000000 +0300 +++ abcde-2.3.99.7/abcde 2009-07-27 23:46:34.000000000 +0300 @@ -2998,7 +2998,7 @@ MUSICBRAINZ=musicbrainz-get-tracks EJECT=eject MD5SUM=md5sum DISTMP3=distmp3 -NORMALIZE=normalize-audio +NORMALIZE=normalize CDSPEED=eject VORBISGAIN=vorbisgain MP3GAIN=mp3gain diff -up abcde-2.3.99.7/abcde.1~ abcde-2.3.99.7/abcde.1 --- abcde-2.3.99.7/abcde.1~ 2007-06-07 10:31:34.000000000 +0300 +++ abcde-2.3.99.7/abcde.1 2009-07-27 23:46:34.000000000 +0300 @@ -325,7 +325,7 @@ only support \'faac\', so \'default\' po .TP .B NORMALIZERSYNTAX Specifies the style of normalizer to use. Valid options are \'default\' -and \'normalize'\ (and both run \'normalize-audio\'), since we only support it, +and \'normalize'\ (and both run \'normalize\'), since we only support it, ATM. .TP .B CDROMREADERSYNTAX @@ -563,7 +563,7 @@ An HTTP retrieval program: wget, fetch ( (optional) distmp3, a client/server for distributed mp3 encoding. .TP .B * -(optional) normalize-audio, a WAV file volume normalizer. +(optional) normalize, a WAV file volume normalizer. .TP .B * (optional) a replaygain file volume modifier (vorbisgain, metaflac, mp3gain, replaygain), @@ -574,7 +574,7 @@ An HTTP retrieval program: wget, fetch ( .BR cdparanoia (1), .BR cdda2wav (1), .BR dagrab (1), -.BR normalize-audio (1), +.BR normalize (1), .BR oggenc (1), .BR vorbize (1), .BR flac (1), diff -up abcde-2.3.99.7/abcde.conf~ abcde-2.3.99.7/abcde.conf --- abcde-2.3.99.7/abcde.conf~ 2008-06-10 13:32:24.000000000 +0300 +++ abcde-2.3.99.7/abcde.conf 2009-07-27 23:46:45.000000000 +0300 @@ -139,7 +139,7 @@ #DISTMP3=distmp3 #VORBISCOMMENT=vorbiscomment #METAFLAC=metaflac -#NORMALIZE=normalize-audio +#NORMALIZE=normalize #CDSPEED=eject #VORBISGAIN=vorbisgain #MKCUE=mkcue @@ -271,7 +271,7 @@ #BATCHNORM=n # Enables nogap encoding when using the 'lame' encoder. -#NOGAP=n +#NOGAP=y # Set the playlist file location format. Uses the same variables and format # as OUTPUTFORMAT. If the playlist is specified to be in a subdirectory, it diff -up abcde-2.3.99.7/README~ abcde-2.3.99.7/README --- abcde-2.3.99.7/README~ 2006-08-05 05:23:25.000000000 +0300 +++ abcde-2.3.99.7/README 2009-07-27 23:46:34.000000000 +0300 @@ -152,7 +152,7 @@ Options added/modified from 2.1.1 to 2.1 Options added/modified from 2.0.3 to 2.1.x: -* -b use batch processing. It uses normalize-audio to adjust the volume of +* -b use batch processing. It uses normalize to adjust the volume of the songs, and a -g gapless option from lame to remove gaps. Only available for mp3+lame combination. * a new "normalize" option has been added to -a, to normalize the volume. @@ -205,7 +205,7 @@ abcde requires the following backend too * Ogg/Speex encoder (speexenc) or: * MPP/MP+(Musepack) encoder (mppenc) or: * AAC encoder (faac) -* normalize-audio for volume normalization. +* normalize for volume normalization. * CD Paranoia, an audio CD reading utility or: * cdda2wav, the audio CD reading utility cdparanoia was born from or: * dagrab, another audio CD reading utility. abcde-2.3.99.7-speex-comment.patch: abcde | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE abcde-2.3.99.7-speex-comment.patch --- diff -up abcde-2.3.99.7/abcde~ abcde-2.3.99.7/abcde --- abcde-2.3.99.7/abcde~ 2009-07-27 23:06:31.000000000 +0300 +++ abcde-2.3.99.7/abcde 2009-07-27 23:07:55.000000000 +0300 @@ -1114,11 +1114,10 @@ do_encode () *=*) ;; *) COMMENT="COMMENT=$COMMENT" ;; esac - COMMENT="--comment \"$COMMENT\"" fi # Tag the file at encode time, as it can't be done after encoding. if [ "$DOTAG" = "y" ]; then - $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" --comment "$COMMENT" "$IN" "$OUT" + $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" ${COMMENT:+--comment "$COMMENT"} "$IN" "$OUT" else $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT" abcde-2.3.99.7-trackinfo.patch: abcde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE abcde-2.3.99.7-trackinfo.patch --- Index: abcde =================================================================== --- abcde (revision 256) +++ abcde (working copy) @@ -421,7 +421,7 @@ TRACKNAME="$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed 's/\ \+$//')" ;; TRACK-INFO) - grep ^EXTT$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | perl -p -e 's/\\n/\n/;' + grep ^EXTT$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d \[:cntrl:\] | sed -e 's/\\n/\n/g' ;; esac } abcde_2.3.99.7-1ubuntu1.diff: abcde | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) --- NEW FILE abcde_2.3.99.7-1ubuntu1.diff --- --- abcde-2.3.99.7.orig/abcde +++ abcde-2.3.99.7/abcde @@ -1116,9 +1116,10 @@ esac COMMENT="--comment \"$COMMENT\"" fi - # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging - if [ ! "$DOTAG" = "y" ]; then - $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" "$COMMENT" "$IN" "$OUT" + # Tag the file at encode time, as it can't be done after encoding. + if [ "$DOTAG" = "y" ]; then + $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS --author "$TRACKARTIST" --title "$TRACKNAME" --comment "$COMMENT" "$IN" "$OUT" + else $RUN_COMMAND nice $EFFECTIVE_NICE $SPEEXENCODER $SPEEXENCODEROPTS "$IN" "$OUT" fi @@ -1133,8 +1134,8 @@ $RUN_COMMAND nice $EFFECTIVE_NICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT" ;; m4a) - # Quick hack to avoid tagging Ogg/Speex, since there is no other way to tag than inline tagging - if [ ! "$DOTAG" = "y" ]; then + # Tag the file at encode time, as it can't be done after encoding. + if [ "$DOTAG" = "y" ]; then $RUN_COMMAND nice $EFFECTIVE_NICE $AACENCODER $AACENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -o "$OUT" "$IN" else @@ -3291,14 +3292,17 @@ else while [ $# -gt 0 ]; do # Range parsing code courtesy of Vincent Ho - RSTART=$(echo $1 | cut -f1 -d-) - REND=$(echo $1 | cut -f2 -d-) - if [ "$RSTART" = "$REND" ]; then - NEWTRACKS="$RSTART" + # Cleaned up to use shell built-ins by Charles Steinkuehler + if [ "${1#*[^0-9-]}" != "$1" ]; then + log error "syntax error while processing track numbers" else - NEWTRACKS=$(f_seq_line $RSTART $REND) + RSTART=${1%%-*} + REND=${1##*-} + while [ ${RSTART:=1} -le ${REND:=0} ] ; do + TRACKQUEUE="$TRACKQUEUE $RSTART" + RSTART=$(( $RSTART + 1 )) + done fi - TRACKQUEUE=$(echo "$TRACKQUEUE" "$NEWTRACKS") shift done fi @@ -3594,6 +3598,7 @@ FLACENCODER="$FLAC" if [ "$DOREPLAYGAIN" = "y" ]; then FLACENCODEROPTS="${FLACENCODEROPTS} --replay-gain" + fi # FLAC streams can be encapsulated on a Ogg transport layer if echo "$FLACENCODEROPTS" | egrep -- "(^| )--ogg($| )" > /dev/null 2>&1 ;then log error "FLAC on an Ogg container is not yet supported" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abcde/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 7 Aug 2006 21:10:25 -0000 1.10 +++ .cvsignore 27 Jul 2009 20:53:59 -0000 1.11 @@ -1 +1 @@ -abcde_2.3.99.6.orig.tar.gz +abcde_2.3.99.7.orig.tar.gz Index: abcde.spec =================================================================== RCS file: /cvs/pkgs/rpms/abcde/devel/abcde.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- abcde.spec 24 Jul 2009 16:29:25 -0000 1.20 +++ abcde.spec 27 Jul 2009 20:53:59 -0000 1.21 @@ -1,21 +1,24 @@ Name: abcde -Version: 2.3.99.6 -Release: 9 +Version: 2.3.99.7 +Release: 1%{?dist} Summary: A Better CD Encoder Group: Applications/Multimedia # Also "Larry Wall's Artistic" upstream, but the original Artistic is -# not accepted in Fedora +# not accepted in Fedora. Note that the license will be public domain as of +# 2010-01-01 (see comments in abcde, cddb-tool). License: GPLv2+ -URL: http://www.hispalinux.es/~data/abcde.php +URL: http://code.google.com/p/abcde/ Source0: http://ftp.debian.org/debian/pool/main/a/abcde/%{name}_%{version}.orig.tar.gz -Patch0: %{name}-2.1.19-inst.patch -# Patch1: http://patches.ubuntu.com/a/abcde/abcde_2.3.99.6-1ubuntu2.patch -# with non-applicable parts removed. -Patch1: %{name}_2.3.99.6-1ubuntu2.patch -Patch2: %{name}-2.3.99.6-usage.patch -Patch3: %{name}-2.3.99.6-speex-comment.patch -Patch4: %{name}-2.3.99.6-wget111-441862.patch +Patch0: %{name}-2.3.99.7-config.patch +# http://code.google.com/p/abcde/issues/detail?id=17 +Patch1: %{name}-2.1.19-inst.patch +# Cherry-picked bits from Ubuntu's 2.3.99.7-1ubuntu1 +Patch2: %{name}_2.3.99.7-1ubuntu1.diff +# http://code.google.com/p/abcde/issues/detail?id=18 +Patch3: %{name}-2.3.99.7-trackinfo.patch +# http://code.google.com/p/abcde/issues/detail?id=19 +Patch4: %{name}-2.3.99.7-speex-comment.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -37,10 +40,8 @@ tags them, all in one go. %patch0 -p1 %patch1 -p1 %patch2 -p1 -%patch3 -p1 +%patch3 -p0 %patch4 -p1 -sed -i -e 's/normalize-audio/normalize/g' abcde* -sed -i -e 's/^#NOGAP$/#NOGAP=y/' abcde.conf mv examples/cue2discid . @@ -59,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc COPYING FAQ README TODO USEPIPES changelog examples/ +%doc COPYING FAQ KNOWN.BUGS README TODO USEPIPES changelog examples/ %config(noreplace) %{_sysconfdir}/abcde.conf %{_bindir}/abcde %{_bindir}/cddb-tool @@ -69,6 +70,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Ville Skytt? - 2.3.99.7-1 +- Update to 2.3.99.7 (#513795); wget and usage patches applied upstream. +- Patch to improve CDDB track info handling. +- Update URL. + * Fri Jul 24 2009 Fedora Release Engineering - 2.3.99.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abcde/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 7 Aug 2006 21:10:25 -0000 1.10 +++ sources 27 Jul 2009 20:53:59 -0000 1.11 @@ -1 +1 @@ -ac9be20f3098b0943212168171d33ffa abcde_2.3.99.6.orig.tar.gz +a0baa57edecf40c8423eac7e36d06882 abcde_2.3.99.7.orig.tar.gz --- abcde-2.3.99.6-speex-comment.patch DELETED --- --- abcde-2.3.99.6-usage.patch DELETED --- --- abcde-2.3.99.6-wget111-441862.patch DELETED --- --- abcde_2.3.99.6-1ubuntu2.patch DELETED --- From cweyl at fedoraproject.org Mon Jul 27 21:07:14 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Mon, 27 Jul 2009 21:07:14 +0000 (UTC) Subject: rpms/perl-Class-MOP/devel .cvsignore, 1.32, 1.33 perl-Class-MOP.spec, 1.38, 1.39 sources, 1.30, 1.31 Message-ID: <20090727210714.699E711C00D5@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Class-MOP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13231 Modified Files: .cvsignore perl-Class-MOP.spec sources Log Message: * Mon Jul 27 2009 Chris Weyl 0.90-1 - auto-update to 0.90 (by cpan-spec-update 0.01) - added a new req on perl(Carp) (version 0) - added a new req on perl(MRO::Compat) (version 0.05) - added a new req on perl(Scalar::Util) (version 1.18) - added a new req on perl(Task::Weaken) (version 0) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 7 Jun 2009 21:06:37 -0000 1.32 +++ .cvsignore 27 Jul 2009 21:07:14 -0000 1.33 @@ -1 +1 @@ -Class-MOP-0.85.tar.gz +Class-MOP-0.90.tar.gz Index: perl-Class-MOP.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/perl-Class-MOP.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- perl-Class-MOP.spec 26 Jul 2009 04:29:56 -0000 1.38 +++ perl-Class-MOP.spec 27 Jul 2009 21:07:14 -0000 1.39 @@ -1,7 +1,7 @@ Name: perl-Class-MOP -Version: 0.85 -Release: 2%{?dist} -Summary: Metaobject programming model for Perl +Version: 0.90 +Release: 1%{?dist} +Summary: Meta object programming model for Perl 5 License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Class-MOP/ @@ -9,10 +9,13 @@ Source0: http://search.cpan.org/C BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -# core BuildRequires: perl(Test::More) >= 0.77 BuildRequires: perl(B) -# cpan +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 +BuildRequires: perl(Scalar::Util) >= 1.18 +BuildRequires: perl(File::Spec) +BuildRequires: perl(Task::Weaken) +BuildRequires: perl(Carp) BuildRequires: perl(Module::Build) BuildRequires: perl(MRO::Compat) >= 0.05 BuildRequires: perl(Sub::Identify) >= 0.03 @@ -27,10 +30,13 @@ BuildRequires: perl(Test::Exception) >= BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) -# not automatically picked up Requires: perl(Sub::Identify) >= 0.03 Requires: perl(Sub::Name) >= 0.04 Requires: perl(Devel::GlobalDestruction) +Requires: perl(Carp) +Requires: perl(MRO::Compat) >= 0.05 +Requires: perl(Scalar::Util) >= 1.18 +Requires: perl(Task::Weaken) # don't "provide" private Perl libs %global _use_internal_dependency_generator 0 @@ -38,13 +44,6 @@ Requires: perl(Devel::GlobalDestru %global __find_provides /bin/sh -c "%{__grep} -v '%_docdir' | %{__grep} -v '%{perl_vendorarch}/.*\\.so$' | %{__deploop P}" %global __find_requires /bin/sh -c "%{__grep} -v '%_docdir' | %{__deploop R}" -### auto-added brs! -BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 -BuildRequires: perl(Scalar::Util) >= 1.18 -BuildRequires: perl(File::Spec) -BuildRequires: perl(Task::Weaken) -BuildRequires: perl(Carp) - %description This module is an attempt to create a meta object protocol for the Perl 5 object system. It makes no attempt to change the behavior or characteristics @@ -88,6 +87,13 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Mon Jul 27 2009 Chris Weyl 0.90-1 +- auto-update to 0.90 (by cpan-spec-update 0.01) +- added a new req on perl(Carp) (version 0) +- added a new req on perl(MRO::Compat) (version 0.05) +- added a new req on perl(Scalar::Util) (version 1.18) +- added a new req on perl(Task::Weaken) (version 0) + * Sat Jul 25 2009 Fedora Release Engineering - 0.85-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 7 Jun 2009 21:06:37 -0000 1.30 +++ sources 27 Jul 2009 21:07:14 -0000 1.31 @@ -1 +1 @@ -1875e4dadc81b664790e5b8d99a8941f Class-MOP-0.85.tar.gz +414506479d63324969c43df7be7f0a81 Class-MOP-0.90.tar.gz From kzak at fedoraproject.org Mon Jul 27 21:11:14 2009 From: kzak at fedoraproject.org (kzak) Date: Mon, 27 Jul 2009 21:11:14 +0000 (UTC) Subject: rpms/util-linux-ng/devel util-linux-ng-2.16-mount-conf.patch, NONE, 1.1 util-linux-ng.spec, 1.51, 1.52 Message-ID: <20090727211114.DF9FB11C00D5@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/util-linux-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14203 Modified Files: util-linux-ng.spec Added Files: util-linux-ng-2.16-mount-conf.patch Log Message: * Mon Jul 27 2009 Karel Zak 2.16-2 - fix #214891 - add mount.conf and MTAB_LOCK_DIR= option util-linux-ng-2.16-mount-conf.patch: example.files/mount.conf | 20 ++++++ include/pathnames.h | 7 +- mount/fstab.c | 142 ++++++++++++++++++++++++++++++++++++++--------- mount/fstab.h | 1 mount/mount.c | 7 +- 5 files changed, 147 insertions(+), 30 deletions(-) --- NEW FILE util-linux-ng-2.16-mount-conf.patch --- >From 47cd680cc6cbbfc42f0fe4dd5833a36859ca310a Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 27 Jul 2009 21:15:27 +0200 Subject: [PATCH] mount(8): add mount.conf and MTAB_LOCK_DIR= The /etc directory is a really bad place for lock files on systems with read-only root FS. This patch introduces the /etc/mount.conf file where is possible to define MTAB_LOCK_DIR=. Signed-off-by: Karel Zak --- example.files/mount.conf | 20 +++++++ include/pathnames.h | 7 ++- mount/fstab.c | 142 +++++++++++++++++++++++++++++++++++++--------- mount/fstab.h | 1 + mount/mount.c | 6 ++- 5 files changed, 147 insertions(+), 29 deletions(-) create mode 100644 example.files/mount.conf diff --git a/example.files/mount.conf b/example.files/mount.conf new file mode 100644 index 0000000..7813eba --- /dev/null +++ b/example.files/mount.conf @@ -0,0 +1,20 @@ +# +# This is mount(8) config file +# + +# MTAB_LOCK_DIR is a directory where mount(8) stores "mtab~" and "mtab~. +# lock files. It's recommended to use the root filesystem for mount(8) lock +# files. +# +# The default is /etc. +# +# WARNING: If you want to use a directory on stand-alone filesystem you have to +# be very careful about your init scripts. +# +# For example use stand-alone /var for lock files and run "mount -a +# -F" (-F means fork()) in init scripts is really bad idea. +# +# Solution is to use "mount -n" to mount the filesystem and then "mount -f" +# to create proper /etc/mtab. +# +MTAB_LOCK_DIR=/etc diff --git a/include/pathnames.h b/include/pathnames.h index ead448e..e449c9d 100644 --- a/include/pathnames.h +++ b/include/pathnames.h @@ -90,7 +90,12 @@ # endif #endif -#define _PATH_MOUNTED_LOCK _PATH_MOUNTED "~" +#define _PATH_MOUNT_CONF "/etc/mount.conf" + +#define _PATH_MOUNTED_LOCKDIR "/etc/" +#define _MOUNTED_LOCK_FILENAME "mtab~" +#define _PATH_MOUNTED_LOCK _PATH_MOUNTED_LOCKDIR _MOUNTED_LOCK_FILENAME + #define _PATH_MOUNTED_TMP _PATH_MOUNTED ".tmp" #ifndef _PATH_DEV diff --git a/mount/fstab.c b/mount/fstab.c index 82e90f3..8b1b244 100644 --- a/mount/fstab.c +++ b/mount/fstab.c @@ -12,6 +12,8 @@ #include #include #include +#include + #include "mount_mntent.h" #include "fstab.h" #include "sundries.h" @@ -481,6 +483,7 @@ getfs_by_label (const char *label) { /* Flag for already existing lock file. */ static int we_created_lockfile = 0; +static DIR *lockdir; static int lockfile_fd = -1; /* Flag to indicate that signals have been set up. */ @@ -499,14 +502,85 @@ setlkw_timeout (int sig) { /* nothing, fcntl will fail anyway */ } +static char * +get_next_line(FILE *f, char *buf, size_t bufsz) +{ + char *s; + + do { + if (!fgets(buf, bufsz, f)) + goto err; + s = strchr(buf, '\n'); + if (!s) { + /* Missing final newline? Otherwise extremely */ + /* long line - assume file was corrupted */ + if (feof(f)) + s = index(buf, '\0'); + else { + if (verbose) + printf(_("%s: missing newline at line '%s'.\n"), + _PATH_MOUNT_CONF, buf); + goto err; + } + } + *s = '\0'; + if (--s >= buf && *s == '\r') + *s = '\0'; + + s = buf; + while (*s == ' ' || *s == '\t') /* skip space */ + s++; + } while (*s == '\0' || *s == '#'); + + return s; +err: + return NULL; +} + +char * +get_lock_dirname(char *buf, size_t bufsz) +{ + FILE *f; + char *s; + + f = fopen(_PATH_MOUNT_CONF, "r"); + if (!f) + goto err; + + while((s = get_next_line(f, buf, bufsz))) { + if (!strncmp(s, "MTAB_LOCK_DIR=", 14)) { + s += 14; + break; + } + } + fclose(f); + if (s) { + size_t sz = strlen(s); + char *end = sz > 1 ? s + (sz - 1) : NULL; + + if (end && *end != '/') { + *++end = '/'; + *++end = '\0'; + } + return s; + } +err: + /* fallback */ + strncpy(buf, _PATH_MOUNTED_LOCKDIR, bufsz); + buf[bufsz - 1] = '\0'; + return buf; +} + /* Remove lock file. */ void unlock_mtab (void) { if (we_created_lockfile) { + int lockdir_fd = dirfd(lockdir); close(lockfile_fd); lockfile_fd = -1; - unlink (_PATH_MOUNTED_LOCK); + unlinkat(lockdir_fd, _MOUNTED_LOCK_FILENAME, 0); we_created_lockfile = 0; + closedir(lockdir); } } @@ -527,8 +601,6 @@ unlock_mtab (void) { /* Where does the link point to? Obvious choices are mtab and mtab~~. HJLu points out that the latter leads to races. Right now we use mtab~. instead. Use 20 as upper bound for the length of %d. */ -#define MOUNTLOCK_LINKTARGET _PATH_MOUNTED_LOCK "%d" -#define MOUNTLOCK_LINKTARGET_LTH (sizeof(_PATH_MOUNTED_LOCK)+20) /* * The original mount locking code has used sleep(1) between attempts and @@ -556,7 +628,10 @@ lock_mtab (void) { int i; struct timespec waittime; struct timeval maxtime; - char linktargetfile[MOUNTLOCK_LINKTARGET_LTH]; + const char *lockdirname; + char buf[BUFSIZ]; + char linktargetfile[PATH_MAX]; + int lockdir_fd; if (!signals_have_been_setup) { int sig = 0; @@ -577,18 +652,28 @@ lock_mtab (void) { signals_have_been_setup = 1; } - sprintf(linktargetfile, MOUNTLOCK_LINKTARGET, getpid ()); + lockdirname = get_lock_dirname(buf, sizeof(buf)); + + lockdir = opendir(lockdirname); + if (!lockdir) { + die (EX_FILEIO, _("can't open %s: %s "), + lockdirname, strerror(errno)); + } + lockdir_fd = dirfd(lockdir); + + snprintf(linktargetfile, sizeof(linktargetfile), "%s.%d", + _MOUNTED_LOCK_FILENAME, getpid ()); - i = open (linktargetfile, O_WRONLY|O_CREAT, S_IRUSR|S_IWUSR); + i = openat(lockdir_fd, linktargetfile, O_WRONLY|O_CREAT, S_IRUSR|S_IWUSR); if (i < 0) { int errsv = errno; /* linktargetfile does not exist (as a file) and we cannot create it. Read-only filesystem? Too many files open in the system? Filesystem full? */ - die (EX_FILEIO, _("can't create lock file %s: %s " + die (EX_FILEIO, _("can't create lock file %s%s: %s " "(use -n flag to override)"), - linktargetfile, strerror (errsv)); + lockdirname, linktargetfile, strerror(errsv)); } close(i); @@ -604,20 +689,22 @@ lock_mtab (void) { struct flock flock; int errsv, j; - j = link(linktargetfile, _PATH_MOUNTED_LOCK); + j = linkat(lockdir_fd, linktargetfile, + lockdir_fd, _MOUNTED_LOCK_FILENAME, 0); errsv = errno; if (j == 0) we_created_lockfile = 1; if (j < 0 && errsv != EEXIST) { - (void) unlink(linktargetfile); - die (EX_FILEIO, _("can't link lock file %s: %s " + unlinkat(lockdir_fd, linktargetfile, 0); + die (EX_FILEIO, _("can't link lock file %s%s: %s " "(use -n flag to override)"), - _PATH_MOUNTED_LOCK, strerror (errsv)); + lockdirname, _MOUNTED_LOCK_FILENAME, strerror(errsv)); } - lockfile_fd = open (_PATH_MOUNTED_LOCK, O_WRONLY); + lockfile_fd = openat(lockdir_fd, + _MOUNTED_LOCK_FILENAME, O_WRONLY); if (lockfile_fd < 0) { /* Strange... Maybe the file was just deleted? */ @@ -627,10 +714,10 @@ lock_mtab (void) { we_created_lockfile = 0; continue; } - (void) unlink(linktargetfile); - die (EX_FILEIO, _("can't open lock file %s: %s " + unlinkat(lockdir_fd, linktargetfile, 0); + die (EX_FILEIO, _("can't open lock file %s%s: %s " "(use -n flag to override)"), - _PATH_MOUNTED_LOCK, strerror (errsv)); + lockdirname, _MOUNTED_LOCK_FILENAME, strerror(errsv)); } flock.l_type = F_WRLCK; @@ -643,12 +730,13 @@ lock_mtab (void) { if (fcntl (lockfile_fd, F_SETLK, &flock) == -1) { if (verbose) { int errsv = errno; - printf(_("Can't lock lock file %s: %s\n"), - _PATH_MOUNTED_LOCK, strerror (errsv)); + printf(_("Can't lock lock file %s%s: %s\n"), + lockdirname, _MOUNTED_LOCK_FILENAME, + strerror(errsv)); } /* proceed, since it was us who created the lockfile anyway */ } - (void) unlink(linktargetfile); + unlinkat(lockdir_fd, linktargetfile, 0); } else { /* Someone else made the link. Wait. */ gettimeofday(&now, NULL); @@ -656,19 +744,19 @@ lock_mtab (void) { alarm(maxtime.tv_sec - now.tv_sec); if (fcntl (lockfile_fd, F_SETLKW, &flock) == -1) { int errsv = errno; - (void) unlink(linktargetfile); - die (EX_FILEIO, _("can't lock lock file %s: %s"), - _PATH_MOUNTED_LOCK, (errno == EINTR) ? - _("timed out") : strerror (errsv)); + unlinkat(lockdir_fd, linktargetfile, 0); + die (EX_FILEIO, _("can't lock lock file %s%s: %s"), + lockdirname, _MOUNTED_LOCK_FILENAME, + (errno == EINTR) ? + _("timed out") : strerror(errsv)); } alarm(0); - nanosleep(&waittime, NULL); } else { - (void) unlink(linktargetfile); - die (EX_FILEIO, _("Cannot create link %s\n" + unlinkat(lockdir_fd, linktargetfile, 0); + die (EX_FILEIO, _("Cannot create link %s%s\n" "Perhaps there is a stale lock file?\n"), - _PATH_MOUNTED_LOCK); + lockdirname, _MOUNTED_LOCK_FILENAME); } close(lockfile_fd); } diff --git a/mount/fstab.h b/mount/fstab.h index 8fc8fd4..b5bb5d9 100644 --- a/mount/fstab.h +++ b/mount/fstab.h @@ -26,6 +26,7 @@ struct mntentchn *getfs_by_devdir (const char *dev, const char *dir); struct mntentchn *getfs_by_uuid (const char *uuid); struct mntentchn *getfs_by_label (const char *label); +char *get_lock_dirname(char *buf, size_t bufsz); void lock_mtab (void); void unlock_mtab (void); void update_mtab (const char *special, struct my_mntent *with); diff --git a/mount/mount.c b/mount/mount.c index ef478c7..09086a8 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -2178,9 +2178,13 @@ main(int argc, char *argv[]) { } if (verbose > 2) { + char buf[BUFSIZ]; + printf("mount: fstab path: \"%s\"\n", _PATH_MNTTAB); printf("mount: mtab path: \"%s\"\n", _PATH_MOUNTED); - printf("mount: lock path: \"%s\"\n", _PATH_MOUNTED_LOCK); + printf("mount: lock path: \"%s%s\"\n", + get_lock_dirname(buf, sizeof(buf)), + _MOUNTED_LOCK_FILENAME); printf("mount: temp path: \"%s\"\n", _PATH_MOUNTED_TMP); printf("mount: UID: %d\n", getuid()); printf("mount: eUID: %d\n", geteuid()); -- 1.6.2.5 Index: util-linux-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/util-linux-ng.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- util-linux-ng.spec 25 Jul 2009 20:20:55 -0000 1.51 +++ util-linux-ng.spec 27 Jul 2009 21:11:14 -0000 1.52 @@ -2,7 +2,7 @@ Summary: A collection of basic system utilities Name: util-linux-ng Version: 2.16 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 and GPLv2+ and BSD with advertising and Public Domain Group: System Environment/Base URL: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng @@ -96,13 +96,15 @@ Patch3: util-linux-ng-2.14-blockdev-rmpa Patch4: util-linux-ng-2.13-ctrlaltdel-man.patch # /etc/blkid.tab --> /etc/blkid/blkid.tab Patch5: util-linux-ng-2.16-blkid-cachefile.patch +# 214891 - mount: move mtab locks to /var/lock +Patch6: util-linux-ng-2.16-mount-conf.patch ### Ready for upstream? ### # 151635 - makeing /var/log/lastlog -Patch6: util-linux-ng-2.13-login-lastlog.patch +Patch7: util-linux-ng-2.13-login-lastlog.patch # 231192 - ipcs is not printing correct values on pLinux -Patch7: util-linux-ng-2.15-ipcs-32bit.patch +Patch8: util-linux-ng-2.15-ipcs-32bit.patch %description The util-linux-ng package contains a large variety of low-level system @@ -197,6 +199,7 @@ cp %{SOURCE8} %{SOURCE9} . %patch5 -p1 %patch6 -p1 %patch7 -p1 +%patch8 -p1 %build unset LINGUAS || : @@ -471,7 +474,7 @@ fi %files -f %{name}.files %defattr(-,root,root) -%doc */README.* NEWS AUTHORS licenses/* README* +%doc */README.* NEWS AUTHORS licenses/* README* example.files/mount.conf %doc getopt/getopt-*.{bash,tcsh} %config(noreplace) %{_sysconfdir}/pam.d/chfn @@ -707,6 +710,9 @@ fi %changelog +* Mon Jul 27 2009 Karel Zak 2.16-2 +- fix #214891 - add mount.conf and MTAB_LOCK_DIR= option + * Sat Jul 25 2009 Karel Zak 2.16-1 - upgrade to 2.16 ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.16/v2.16-ReleaseNotes From pkgdb at fedoraproject.org Mon Jul 27 21:13:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 21:13:08 +0000 Subject: [pkgdb] abook: itamarjp has requested approveacls Message-ID: <20090727211308.AE8DB10F897@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on abook (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/abook From pkgdb at fedoraproject.org Mon Jul 27 21:13:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 21:13:16 +0000 Subject: [pkgdb] abook: itamarjp has requested approveacls Message-ID: <20090727211316.98E4910F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on abook (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/abook From pkgdb at fedoraproject.org Mon Jul 27 21:13:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 21:13:18 +0000 Subject: [pkgdb] abook: itamarjp has requested approveacls Message-ID: <20090727211318.B830210F8B1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on abook (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/abook From cebbert at fedoraproject.org Mon Jul 27 21:32:17 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Mon, 27 Jul 2009 21:32:17 +0000 (UTC) Subject: rpms/kernel/F-10 patch-2.6.27.28.bz2.sign, NONE, 1.1.2.1 .cvsignore, 1.960.2.14, 1.960.2.15 config-generic, 1.202.2.1, 1.202.2.2 kernel.spec, 1.1206.2.72, 1.1206.2.73 linux-2.6-netdev-r8169-2.6.30.patch, 1.1.2.1, 1.1.2.2 sources, 1.922.2.14, 1.922.2.15 upstream, 1.834.2.14, 1.834.2.15 linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch, 1.1.2.1, NONE linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch, 1.1.2.2, NONE patch-2.6.27.25.bz2.sign, 1.1.2.1, NONE Message-ID: <20090727213217.ADC4F11C00D5@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19811 Modified Files: Tag: private-fedora-10-2_6_27 .cvsignore config-generic kernel.spec linux-2.6-netdev-r8169-2.6.30.patch sources upstream Added Files: Tag: private-fedora-10-2_6_27 patch-2.6.27.28.bz2.sign Removed Files: Tag: private-fedora-10-2_6_27 linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch patch-2.6.27.25.bz2.sign Log Message: Linux 2.6.27.28 Dropped patches, merged in stable: linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch New config item: CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 --- NEW FILE patch-2.6.27.28.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKajEryGugalF9Dw4RAmM/AJ47l21M/XwsP/nV2hIzPQTZmo2wmgCgiWnF p3hOGLbyhrkYo+5B2zG4Cns= =nf0b -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/.cvsignore,v retrieving revision 1.960.2.14 retrieving revision 1.960.2.15 diff -u -p -r1.960.2.14 -r1.960.2.15 --- .cvsignore 20 Jun 2009 11:55:23 -0000 1.960.2.14 +++ .cvsignore 27 Jul 2009 21:32:16 -0000 1.960.2.15 @@ -4,4 +4,4 @@ kernel-2.6.*.config temp-* kernel-2.6.27 linux-2.6.27.tar.bz2 -patch-2.6.27.25.bz2 +patch-2.6.27.28.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/config-generic,v retrieving revision 1.202.2.1 retrieving revision 1.202.2.2 diff -u -p -r1.202.2.1 -r1.202.2.2 --- config-generic 21 May 2009 01:02:35 -0000 1.202.2.1 +++ config-generic 27 Jul 2009 21:32:16 -0000 1.202.2.2 @@ -3201,7 +3201,7 @@ CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE= CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT=y CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 # CONFIG_SECURITY_SMACK is not set CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.72 retrieving revision 1.1206.2.73 diff -u -p -r1.1206.2.72 -r1.1206.2.73 --- kernel.spec 21 Jun 2009 22:14:26 -0000 1.1206.2.72 +++ kernel.spec 27 Jul 2009 21:32:16 -0000 1.1206.2.73 @@ -36,7 +36,7 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 25 +%define stable_update 28 # Is it a -stable RC? %define stable_rc 0 # Set rpm version accordingly @@ -572,9 +572,6 @@ Patch04: linux-2.6-compile-fixes.patch # build tweak for build ID magic, even for -vanilla Patch05: linux-2.6-makefile-after_link.patch -# fix build on newer userspace, even for -vanilla -Patch06: linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch - %if !%{nopatches} # revert upstream patches we get via other methods @@ -701,7 +698,6 @@ Patch2006: linux-2.6-netdev-r8169-2.6.30 Patch2007: linux-2.6-netdev-r8169-add-more-netdevice-ops-R.patch Patch2008: linux-2.6-netdev-r8169-convert-to-netdevice-ops-R.patch # r8169 fixes from 2.6.31 -Patch2009: linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch Patch2010: linux-2.6-netdev-r8169-use-different-family-defaults.patch Patch2011: linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch @@ -1115,9 +1111,6 @@ ApplyPatch linux-2.6-build-nonintconfig. ApplyPatch linux-2.6-makefile-after_link.patch -# Fix building kernel on newer userspace -ApplyPatch linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch - # # misc small stuff to make things compile # @@ -1343,7 +1336,6 @@ ApplyPatch linux-2.6-netdev-r8169-2.6.30 ApplyPatch linux-2.6-netdev-r8169-add-more-netdevice-ops-R.patch -R ApplyPatch linux-2.6-netdev-r8169-convert-to-netdevice-ops-R.patch -R # r8169 fixes from 2.6.30/2.6.29.5 -ApplyPatch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch ApplyPatch linux-2.6-netdev-r8169-use-different-family-defaults.patch ApplyPatch linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch @@ -1992,6 +1984,14 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Mon Jul 27 2009 Chuck Ebbert 2.6.27.28-170.2.73 +- Linux 2.6.27.28 + Dropped patches, merged in stable: + linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch + linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch + New config item: + CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 + * Sat Jun 20 2009 Chuck Ebbert 2.6.27.25-170.2.72 - Copy fixes from latest F-9: kvm-make-efer-reads-safe-when-efer-does-not-exist.patch linux-2.6-netdev-r8169-2.6.30.patch: r8169.c | 835 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 772 insertions(+), 63 deletions(-) Index: linux-2.6-netdev-r8169-2.6.30.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/Attic/linux-2.6-netdev-r8169-2.6.30.patch,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -p -r1.1.2.1 -r1.1.2.2 --- linux-2.6-netdev-r8169-2.6.30.patch 20 Jun 2009 12:13:15 -0000 1.1.2.1 +++ linux-2.6-netdev-r8169-2.6.30.patch 27 Jul 2009 21:32:16 -0000 1.1.2.2 @@ -989,7 +989,7 @@ @@ -2092,17 +2670,10 @@ - rtl_set_rx_max_size(ioaddr); + rtl_set_rx_max_size(ioaddr, tp->rx_buf_sz); - rtl_set_rx_tx_config_registers(tp); - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/sources,v retrieving revision 1.922.2.14 retrieving revision 1.922.2.15 diff -u -p -r1.922.2.14 -r1.922.2.15 --- sources 20 Jun 2009 11:55:24 -0000 1.922.2.14 +++ sources 27 Jul 2009 21:32:17 -0000 1.922.2.15 @@ -1,2 +1,2 @@ b3e78977aa79d3754cb7f8143d7ddabd linux-2.6.27.tar.bz2 -53981d997d85d4a65e086fd1cada61a0 patch-2.6.27.25.bz2 +3bf7ae5309bbff6cd54c58450565a2a8 patch-2.6.27.28.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/upstream,v retrieving revision 1.834.2.14 retrieving revision 1.834.2.15 diff -u -p -r1.834.2.14 -r1.834.2.15 --- upstream 20 Jun 2009 11:55:25 -0000 1.834.2.14 +++ upstream 27 Jul 2009 21:32:17 -0000 1.834.2.15 @@ -1,2 +1,2 @@ linux-2.6.27.tar.bz2 -patch-2.6.27.25.bz2 +patch-2.6.27.28.bz2 --- linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch DELETED --- --- linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch DELETED --- --- patch-2.6.27.25.bz2.sign DELETED --- From jens at fedoraproject.org Mon Jul 27 21:47:10 2009 From: jens at fedoraproject.org (jens) Date: Mon, 27 Jul 2009 21:47:10 +0000 (UTC) Subject: rpms/miredo/EL-5 import.log,1.1,1.2 Message-ID: <20090727214710.C4A6411C00D5@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22742/EL-5 Modified Files: import.log Log Message: Initial import to EL-5 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/miredo/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 1 Jul 2009 05:21:48 -0000 1.1 +++ import.log 27 Jul 2009 21:47:10 -0000 1.2 @@ -1 +1,2 @@ miredo-1_1_6-2_fc11:HEAD:miredo-1.1.6-2.fc11.src.rpm:1246425622 +miredo-1_1_7-2_fc12:EL-5:miredo-1.1.7-2.fc12.src.rpm:1248731189 From ajax at fedoraproject.org Mon Jul 27 22:03:29 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 27 Jul 2009 22:03:29 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6.30-hush-rom-warning.patch, NONE, 1.1 kernel.spec, 1.1661, 1.1662 Message-ID: <20090727220329.B604111C00D5@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27097 Modified Files: kernel.spec Added Files: linux-2.6.30-hush-rom-warning.patch Log Message: * Mon Jul 27 2009 Adam Jackson - Warn quieter about not finding PCI bus parents for ROM BARs, they're not usually needed and there's nothing you can do about it anyway. linux-2.6.30-hush-rom-warning.patch: setup-res.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- NEW FILE linux-2.6.30-hush-rom-warning.patch --- diff -up linux-2.6.30.noarch/drivers/pci/setup-res.c.jx linux-2.6.30.noarch/drivers/pci/setup-res.c --- linux-2.6.30.noarch/drivers/pci/setup-res.c.jx 2009-07-27 17:56:13.000000000 -0400 +++ linux-2.6.30.noarch/drivers/pci/setup-res.c 2009-07-27 17:58:25.000000000 -0400 @@ -109,7 +109,13 @@ int pci_claim_resource(struct pci_dev *d if (root != NULL) err = insert_resource(root, res); - if (err) { + if (err && resource == 6) { + dev_info(&dev->dev, "BAR %d: %s of %s %pR\n", + resource, + root ? "address space collision on" : + "no parent found for", + dtype, res); + } else if (err) { dev_err(&dev->dev, "BAR %d: %s of %s %pR\n", resource, root ? "address space collision on" : Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1661 retrieving revision 1.1662 diff -u -p -r1.1661 -r1.1662 --- kernel.spec 27 Jul 2009 17:17:24 -0000 1.1661 +++ kernel.spec 27 Jul 2009 22:03:29 -0000 1.1662 @@ -630,6 +630,7 @@ Patch451: linux-2.6-input-fix-toshiba-ho Patch460: linux-2.6-serial-460800.patch Patch510: linux-2.6-silence-noise.patch +Patch520: linux-2.6.30-hush-rom-warning.patch Patch530: linux-2.6-silence-fbcon-logo.patch Patch570: linux-2.6-selinux-mprotect-checks.patch Patch580: linux-2.6-sparc-selinux-mprotect-checks.patch @@ -1208,6 +1209,7 @@ ApplyPatch linux-2.6-serial-460800.patch # Silence some useless messages that still get printed with 'quiet' ApplyPatch linux-2.6-silence-noise.patch +ApplyPatch linux-2.6.30-hush-rom-warning.patch # Make fbcon not show the penguins with 'quiet' ApplyPatch linux-2.6-silence-fbcon-logo.patch @@ -1896,6 +1898,10 @@ fi # and build. %changelog +* Mon Jul 27 2009 Adam Jackson +- Warn quieter about not finding PCI bus parents for ROM BARs, they're + not usually needed and there's nothing you can do about it anyway. + * Mon Jul 27 2009 Matthew Garrett - linux-2.6-alsa-improve-hda-powerdown.patch - attempt to reduce audio glitches caused by HDA powerdown From dwalsh at fedoraproject.org Mon Jul 27 22:09:35 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Mon, 27 Jul 2009 22:09:35 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.113, 1.114 setroubleshoot.spec, 1.149, 1.150 sources, 1.125, 1.126 Message-ID: <20090727220936.0080111C00D5@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28923 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Mon Jul 27 2009 Dan Walsh - 2.2.17-1 - Fix handling of mountpoints that the kernel reports as "/" Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- .cvsignore 21 Jul 2009 21:29:05 -0000 1.113 +++ .cvsignore 27 Jul 2009 22:09:35 -0000 1.114 @@ -30,3 +30,4 @@ setroubleshoot-2.2.13.tar.gz setroubleshoot-2.2.14.tar.gz setroubleshoot-2.2.15.tar.gz setroubleshoot-2.2.16.tar.gz +setroubleshoot-2.2.17.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- setroubleshoot.spec 27 Jul 2009 04:12:20 -0000 1.149 +++ setroubleshoot.spec 27 Jul 2009 22:09:35 -0000 1.150 @@ -1,7 +1,7 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.16 -Release: 2%{?dist} +Version: 2.2.17 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot @@ -209,6 +209,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Mon Jul 27 2009 Dan Walsh - 2.2.17-1 +- Fix handling of mountpoints that the kernel reports as "/" + * Sun Jul 26 2009 Fedora Release Engineering - 2.2.16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- sources 21 Jul 2009 21:29:06 -0000 1.125 +++ sources 27 Jul 2009 22:09:35 -0000 1.126 @@ -1 +1 @@ -8e6920d3d9df8980a75793e0aa8a2c13 setroubleshoot-2.2.16.tar.gz +01c40d4978f6be640473c58feeff2cce setroubleshoot-2.2.17.tar.gz From dwalsh at fedoraproject.org Mon Jul 27 22:09:57 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Mon, 27 Jul 2009 22:09:57 +0000 (UTC) Subject: rpms/selinux-policy/devel booleans-minimum.conf, 1.5, 1.6 booleans-targeted.conf, 1.47, 1.48 policy-F12.patch, 1.32, 1.33 selinux-policy.spec, 1.882, 1.883 Message-ID: <20090727220957.9E76611C00D5@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29102 Modified Files: booleans-minimum.conf booleans-targeted.conf policy-F12.patch selinux-policy.spec Log Message: * Mon Jul 27 2009 Dan Walsh 3.6.23-2 - Allow certmaster to override dac permissions Index: booleans-minimum.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/booleans-minimum.conf,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- booleans-minimum.conf 18 Apr 2009 12:13:35 -0000 1.5 +++ booleans-minimum.conf 27 Jul 2009 22:09:56 -0000 1.6 @@ -243,10 +243,6 @@ allow_nsplugin_execmem=true # allow_unconfined_nsplugin_transition=true -# Allow unconfined domains mmap low kernel memory -# -allow_unconfined_mmap_low = false - # System uses init upstart program # init_upstart = true Index: booleans-targeted.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/booleans-targeted.conf,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- booleans-targeted.conf 18 Apr 2009 12:13:36 -0000 1.47 +++ booleans-targeted.conf 27 Jul 2009 22:09:56 -0000 1.48 @@ -243,10 +243,6 @@ allow_nsplugin_execmem=true # allow_unconfined_nsplugin_transition=true -# Allow unconfined domains mmap low kernel memory -# -allow_unconfined_mmap_low = false - # System uses init upstart program # init_upstart = true policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 11 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 1 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.fc | 6 policy/modules/admin/readahead.te | 21 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 304 ++++ policy/modules/admin/rpm.te | 63 policy/modules/admin/sudo.if | 67 - policy/modules/admin/sudo.te | 1 policy/modules/admin/tmpreaper.te | 23 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 10 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.fc | 1 policy/modules/apps/cpufreqselector.if | 2 policy/modules/apps/cpufreqselector.te | 43 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 + policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.fc | 3 policy/modules/apps/mozilla.if | 15 policy/modules/apps/mozilla.te | 23 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 ++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 ++-- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 2 policy/modules/apps/vmware.te | 31 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/apps/wm.fc | 3 policy/modules/apps/wm.if | 108 + policy/modules/apps/wm.te | 9 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 30 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 94 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 4 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 - policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 +++++++++ policy/modules/roles/unconfineduser.te | 410 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 393 ++++-- policy/modules/services/apache.te | 391 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.if | 19 policy/modules/services/automount.te | 6 policy/modules/services/avahi.te | 2 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 32 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 32 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 190 ++ policy/modules/services/cvs.te | 1 policy/modules/services/dbus.fc | 3 policy/modules/services/dbus.if | 147 ++ policy/modules/services/dbus.te | 61 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 9 policy/modules/services/devicekit.if | 197 +++ policy/modules/services/devicekit.te | 244 +++ policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.fc | 4 policy/modules/services/fprintd.if | 43 policy/modules/services/fprintd.te | 55 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 10 policy/modules/services/hal.fc | 1 policy/modules/services/hal.if | 100 + policy/modules/services/hal.te | 108 + policy/modules/services/kerberos.te | 13 policy/modules/services/kerneloops.te | 3 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 10 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/mta.fc | 11 policy/modules/services/mta.if | 41 policy/modules/services/mta.te | 69 - policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 112 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 71 + policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.fc | 2 policy/modules/services/oddjob.if | 26 policy/modules/services/oddjob.te | 28 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 34 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 29 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 344 +++++ policy/modules/services/samba.te | 193 ++ policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/snort.if | 1 policy/modules/services/snort.te | 9 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 131 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 +- policy/modules/services/ssh.te | 68 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 118 + policy/modules/services/virt.te | 212 +++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++ policy/modules/services/xserver.te | 312 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 +- policy/modules/system/init.te | 174 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 85 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 36 policy/modules/system/mount.fc | 7 policy/modules/system/mount.if | 22 policy/modules/system/mount.te | 98 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 349 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 2 policy/modules/system/udev.te | 33 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------ policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1361 ++++++++++++++++----- policy/modules/system/userdomain.te | 50 policy/modules/system/virtual.fc | 1 policy/modules/system/virtual.if | 119 + policy/modules/system/virtual.te | 75 + policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 312 files changed, 15140 insertions(+), 2725 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- policy-F12.patch 23 Jul 2009 21:47:40 -0000 1.32 +++ policy-F12.patch 27 Jul 2009 22:09:56 -0000 1.33 @@ -262,7 +262,7 @@ diff -b -B --ignore-all-space --exclude- $(verbose) $(INSTALL) -m 644 $< $@ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.23/policy/global_tunables --- nsaserefpolicy/policy/global_tunables 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/global_tunables 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/global_tunables 2009-07-27 13:55:41.000000000 -0400 @@ -61,15 +61,6 @@ ## @@ -293,10 +293,10 @@ diff -b -B --ignore-all-space --exclude- + +## +##

-+## Allow unconfined domain to map low memory in the kernel ++## Allow certain domains to map low memory in the kernel +##

+##
-+gen_tunable(allow_unconfined_mmap_low, false) ++gen_tunable(mmap_low_allowed, false) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.23/policy/mcs --- nsaserefpolicy/policy/mcs 2009-07-14 14:19:57.000000000 -0400 @@ -1488,16 +1488,20 @@ diff -b -B --ignore-all-space --exclude- ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/vbetool.te serefpolicy-3.6.23/policy/modules/admin/vbetool.te --- nsaserefpolicy/policy/modules/admin/vbetool.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/admin/vbetool.te 2009-07-23 16:39:09.000000000 -0400 -@@ -23,6 +23,7 @@ ++++ serefpolicy-3.6.23/policy/modules/admin/vbetool.te 2009-07-27 13:54:52.000000000 -0400 +@@ -23,7 +23,11 @@ dev_rwx_zero(vbetool_t) dev_read_sysfs(vbetool_t) +domain_mmap_low_type(vbetool_t) ++tunable_policy(`mmap_low_allowed',` domain_mmap_low(vbetool_t) ++') ++ term_use_unallocated_ttys(vbetool_t) -@@ -34,3 +35,9 @@ + +@@ -34,3 +38,9 @@ hal_write_log(vbetool_t) hal_dontaudit_append_lib_files(vbetool_t) ') @@ -4650,8 +4654,8 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/wine.te serefpolicy-3.6.23/policy/modules/apps/wine.te --- nsaserefpolicy/policy/modules/apps/wine.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/apps/wine.te 2009-07-23 16:39:09.000000000 -0400 -@@ -9,20 +9,33 @@ ++++ serefpolicy-3.6.23/policy/modules/apps/wine.te 2009-07-27 13:54:28.000000000 -0400 +@@ -9,20 +9,35 @@ type wine_t; type wine_exec_t; application_domain(wine_t, wine_exec_t) @@ -4669,7 +4673,9 @@ diff -b -B --ignore-all-space --exclude- - unconfined_domain_noaudit(wine_t) + +domain_mmap_low_type(wine_t) -+domain_mmap_low(wine_t) ++tunable_policy(`mmap_low_allowed',` ++ domain_mmap_low(wine_t) ++') + files_execmod_all_files(wine_t) @@ -8754,7 +8760,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/apache.te serefpolicy-3.6.23/policy/modules/services/apache.te --- nsaserefpolicy/policy/modules/services/apache.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/apache.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/apache.te 2009-07-27 14:13:27.000000000 -0400 @@ -19,6 +19,8 @@ # Declarations # @@ -8798,7 +8804,21 @@ diff -b -B --ignore-all-space --exclude- ## Allow HTTPD scripts and modules to connect to the network using TCP. ##

##
-@@ -108,6 +124,29 @@ +@@ -87,6 +103,13 @@ + + ## + ##

++## Allow httpd to read user content ++##

++##
++gen_tunable(httpd_read_user_content, false) ++ ++## ++##

+ ## Allow HTTPD to run SSI executables in the same domain as system CGI scripts. + ##

+ ##
+@@ -108,6 +131,29 @@ ## gen_tunable(httpd_unified, false) @@ -8828,7 +8848,7 @@ diff -b -B --ignore-all-space --exclude- attribute httpdcontent; attribute httpd_user_content_type; -@@ -140,6 +179,9 @@ +@@ -140,6 +186,9 @@ domain_entry_file(httpd_helper_t, httpd_helper_exec_t) role system_r types httpd_helper_t; @@ -8838,7 +8858,7 @@ diff -b -B --ignore-all-space --exclude- type httpd_lock_t; files_lock_file(httpd_lock_t) -@@ -180,6 +222,10 @@ +@@ -180,6 +229,10 @@ # setup the system domain for system CGI scripts apache_content_template(sys) @@ -8849,7 +8869,7 @@ diff -b -B --ignore-all-space --exclude- type httpd_tmp_t; files_tmp_file(httpd_tmp_t) -@@ -187,15 +233,20 @@ +@@ -187,15 +240,20 @@ files_tmpfs_file(httpd_tmpfs_t) apache_content_template(user) @@ -8873,7 +8893,7 @@ diff -b -B --ignore-all-space --exclude- typealias httpd_user_content_t alias { httpd_auditadm_content_t httpd_secadm_content_t }; typealias httpd_user_htaccess_t alias { httpd_staff_htaccess_t httpd_sysadm_htaccess_t }; typealias httpd_user_htaccess_t alias { httpd_auditadm_htaccess_t httpd_secadm_htaccess_t }; -@@ -230,7 +281,7 @@ +@@ -230,7 +288,7 @@ # Apache server local policy # @@ -8882,7 +8902,7 @@ diff -b -B --ignore-all-space --exclude- dontaudit httpd_t self:capability { net_admin sys_tty_config }; allow httpd_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execstack execheap }; allow httpd_t self:fd use; -@@ -272,6 +323,7 @@ +@@ -272,6 +330,7 @@ allow httpd_t httpd_modules_t:dir list_dir_perms; mmap_files_pattern(httpd_t, httpd_modules_t, httpd_modules_t) read_files_pattern(httpd_t, httpd_modules_t, httpd_modules_t) @@ -8890,7 +8910,7 @@ diff -b -B --ignore-all-space --exclude- apache_domtrans_rotatelogs(httpd_t) # Apache-httpd needs to be able to send signals to the log rotate procs. -@@ -283,9 +335,9 @@ +@@ -283,9 +342,9 @@ allow httpd_t httpd_suexec_exec_t:file read_file_perms; @@ -8903,7 +8923,7 @@ diff -b -B --ignore-all-space --exclude- manage_dirs_pattern(httpd_t, httpd_tmp_t, httpd_tmp_t) manage_files_pattern(httpd_t, httpd_tmp_t, httpd_tmp_t) -@@ -301,6 +353,7 @@ +@@ -301,6 +360,7 @@ manage_files_pattern(httpd_t, httpd_var_lib_t, httpd_var_lib_t) files_var_lib_filetrans(httpd_t, httpd_var_lib_t, file) @@ -8911,7 +8931,7 @@ diff -b -B --ignore-all-space --exclude- manage_files_pattern(httpd_t, httpd_var_run_t, httpd_var_run_t) manage_sock_files_pattern(httpd_t, httpd_var_run_t, httpd_var_run_t) files_pid_filetrans(httpd_t, httpd_var_run_t, { file sock_file }) -@@ -312,6 +365,7 @@ +@@ -312,6 +372,7 @@ kernel_read_kernel_sysctls(httpd_t) # for modules that want to access /proc/meminfo kernel_read_system_state(httpd_t) @@ -8919,7 +8939,7 @@ diff -b -B --ignore-all-space --exclude- corenet_all_recvfrom_unlabeled(httpd_t) corenet_all_recvfrom_netlabel(httpd_t) -@@ -322,6 +376,7 @@ +@@ -322,6 +383,7 @@ corenet_tcp_sendrecv_all_ports(httpd_t) corenet_udp_sendrecv_all_ports(httpd_t) corenet_tcp_bind_generic_node(httpd_t) @@ -8927,7 +8947,7 @@ diff -b -B --ignore-all-space --exclude- corenet_tcp_bind_http_port(httpd_t) corenet_tcp_bind_http_cache_port(httpd_t) corenet_sendrecv_http_server_packets(httpd_t) -@@ -335,12 +390,11 @@ +@@ -335,12 +397,11 @@ fs_getattr_all_fs(httpd_t) fs_search_auto_mountpoints(httpd_t) @@ -8942,7 +8962,7 @@ diff -b -B --ignore-all-space --exclude- domain_use_interactive_fds(httpd_t) -@@ -358,6 +412,10 @@ +@@ -358,6 +419,10 @@ files_read_var_lib_symlinks(httpd_t) fs_search_auto_mountpoints(httpd_sys_script_t) @@ -8953,7 +8973,7 @@ diff -b -B --ignore-all-space --exclude- libs_read_lib_files(httpd_t) -@@ -372,18 +430,33 @@ +@@ -372,18 +437,33 @@ userdom_use_unpriv_users_fds(httpd_t) @@ -8991,7 +9011,7 @@ diff -b -B --ignore-all-space --exclude- ') ') -@@ -391,20 +464,54 @@ +@@ -391,20 +471,54 @@ corenet_tcp_connect_all_ports(httpd_t) ') @@ -9047,7 +9067,7 @@ diff -b -B --ignore-all-space --exclude- manage_dirs_pattern(httpd_t, httpdcontent, httpdcontent) manage_files_pattern(httpd_t, httpdcontent, httpdcontent) -@@ -415,20 +522,28 @@ +@@ -415,20 +529,28 @@ corenet_tcp_bind_ftp_port(httpd_t) ') @@ -9080,7 +9100,7 @@ diff -b -B --ignore-all-space --exclude- tunable_policy(`httpd_ssi_exec',` corecmd_shell_domtrans(httpd_t, httpd_sys_script_t) allow httpd_sys_script_t httpd_t:fd use; -@@ -451,6 +566,10 @@ +@@ -451,6 +573,10 @@ ') optional_policy(` @@ -9091,7 +9111,7 @@ diff -b -B --ignore-all-space --exclude- cron_system_entry(httpd_t, httpd_exec_t) ') -@@ -459,8 +578,13 @@ +@@ -459,8 +585,13 @@ ') optional_policy(` @@ -9107,7 +9127,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -468,22 +592,18 @@ +@@ -468,22 +599,18 @@ mailman_domtrans_cgi(httpd_t) # should have separate types for public and private archives mailman_search_data(httpd_t) @@ -9132,7 +9152,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -494,12 +614,23 @@ +@@ -494,12 +621,23 @@ ') optional_policy(` @@ -9156,7 +9176,7 @@ diff -b -B --ignore-all-space --exclude- ') ') -@@ -508,6 +639,7 @@ +@@ -508,6 +646,7 @@ ') optional_policy(` @@ -9164,7 +9184,7 @@ diff -b -B --ignore-all-space --exclude- snmp_dontaudit_read_snmp_var_lib_files(httpd_t) snmp_dontaudit_write_snmp_var_lib_files(httpd_t) ') -@@ -535,6 +667,22 @@ +@@ -535,6 +674,22 @@ userdom_use_user_terminals(httpd_helper_t) @@ -9187,7 +9207,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # Apache PHP script local policy -@@ -564,20 +712,25 @@ +@@ -564,20 +719,25 @@ fs_search_auto_mountpoints(httpd_php_t) @@ -9219,7 +9239,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -595,23 +748,24 @@ +@@ -595,23 +755,24 @@ append_files_pattern(httpd_suexec_t, httpd_log_t, httpd_log_t) read_files_pattern(httpd_suexec_t, httpd_log_t, httpd_log_t) @@ -9248,7 +9268,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(httpd_suexec_t) files_read_usr_files(httpd_suexec_t) -@@ -624,6 +778,7 @@ +@@ -624,6 +785,7 @@ logging_send_syslog_msg(httpd_suexec_t) miscfiles_read_localization(httpd_suexec_t) @@ -9256,7 +9276,7 @@ diff -b -B --ignore-all-space --exclude- tunable_policy(`httpd_can_network_connect',` allow httpd_suexec_t self:tcp_socket create_stream_socket_perms; -@@ -641,12 +796,20 @@ +@@ -641,12 +803,20 @@ corenet_sendrecv_all_client_packets(httpd_suexec_t) ') @@ -9280,7 +9300,7 @@ diff -b -B --ignore-all-space --exclude- ') tunable_policy(`httpd_enable_homedirs && use_nfs_home_dirs',` -@@ -672,15 +835,14 @@ +@@ -672,15 +842,14 @@ dontaudit httpd_suexec_t httpd_t:unix_stream_socket { read write }; ') @@ -9299,7 +9319,7 @@ diff -b -B --ignore-all-space --exclude- allow httpd_sys_script_t httpd_t:tcp_socket { read write }; dontaudit httpd_sys_script_t httpd_config_t:dir search; -@@ -699,12 +861,24 @@ +@@ -699,12 +868,24 @@ # Should we add a boolean? apache_domtrans_rotatelogs(httpd_sys_script_t) @@ -9326,7 +9346,7 @@ diff -b -B --ignore-all-space --exclude- ') tunable_policy(`httpd_enable_homedirs && use_nfs_home_dirs',` -@@ -712,6 +886,35 @@ +@@ -712,6 +893,35 @@ fs_read_nfs_symlinks(httpd_sys_script_t) ') @@ -9362,7 +9382,7 @@ diff -b -B --ignore-all-space --exclude- tunable_policy(`httpd_enable_homedirs && use_samba_home_dirs',` fs_read_cifs_files(httpd_sys_script_t) fs_read_cifs_symlinks(httpd_sys_script_t) -@@ -724,6 +927,10 @@ +@@ -724,6 +934,10 @@ optional_policy(` mysql_stream_connect(httpd_sys_script_t) mysql_rw_db_sockets(httpd_sys_script_t) @@ -9373,7 +9393,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -735,6 +942,8 @@ +@@ -735,6 +949,8 @@ # httpd_rotatelogs local policy # @@ -9382,7 +9402,7 @@ diff -b -B --ignore-all-space --exclude- manage_files_pattern(httpd_rotatelogs_t, httpd_log_t, httpd_log_t) kernel_read_kernel_sysctls(httpd_rotatelogs_t) -@@ -754,6 +963,12 @@ +@@ -754,6 +970,12 @@ tunable_policy(`httpd_enable_cgi && httpd_unified',` allow httpd_user_script_t httpdcontent:file entrypoint; @@ -9395,11 +9415,20 @@ diff -b -B --ignore-all-space --exclude- ') # allow accessing files/dirs below the users home dir -@@ -762,3 +977,67 @@ +@@ -762,3 +984,76 @@ userdom_search_user_home_dirs(httpd_suexec_t) userdom_search_user_home_dirs(httpd_user_script_t) ') + ++tunable_policy(`httpd_read_user_content',` ++ userdom_read_user_home_content_files(httpd_user_script_t) ++ userdom_read_user_home_content_files(httpd_suexec_t) ++') ++ ++tunable_policy(`httpd_read_user_content && httpd_builtin_scripting',` ++ userdom_read_user_home_content_files(httpd_t) ++') ++ +#============= bugzilla policy ============== +apache_content_template(bugzilla) + @@ -9607,6 +9636,18 @@ diff -b -B --ignore-all-space --exclude- read_files_pattern(bluetooth_t, bluetooth_conf_t, bluetooth_conf_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/certmaster.te serefpolicy-3.6.23/policy/modules/services/certmaster.te +--- nsaserefpolicy/policy/modules/services/certmaster.te 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/certmaster.te 2009-07-27 14:06:05.000000000 -0400 +@@ -30,7 +30,7 @@ + # certmaster local policy + # + +-allow certmaster_t self:capability sys_tty_config; ++allow certmaster_t self:capability { dac_read_search dac_override sys_tty_config }; + allow certmaster_t self:tcp_socket create_stream_socket_perms; + + # config files diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/clamav.te serefpolicy-3.6.23/policy/modules/services/clamav.te --- nsaserefpolicy/policy/modules/services/clamav.te 2009-07-23 14:11:04.000000000 -0400 +++ serefpolicy-3.6.23/policy/modules/services/clamav.te 2009-07-23 16:39:09.000000000 -0400 @@ -10486,8 +10527,8 @@ diff -b -B --ignore-all-space --exclude- ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.fc serefpolicy-3.6.23/policy/modules/services/cups.fc --- nsaserefpolicy/policy/modules/services/cups.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/cups.fc 2009-07-23 16:39:09.000000000 -0400 -@@ -5,27 +5,40 @@ ++++ serefpolicy-3.6.23/policy/modules/services/cups.fc 2009-07-27 13:42:47.000000000 -0400 +@@ -5,27 +5,38 @@ /etc/cups/classes\.conf.* -- gen_context(system_u:object_r:cupsd_rw_etc_t,s0) /etc/cups/cupsd\.conf.* -- gen_context(system_u:object_r:cupsd_rw_etc_t,s0) /etc/cups/lpoptions.* -- gen_context(system_u:object_r:cupsd_rw_etc_t,s0) @@ -10526,13 +10567,11 @@ diff -b -B --ignore-all-space --exclude- +# keep as separate lines to ensure proper sorting +/usr/lib/cups/backend/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) +/usr/lib64/cups/backend/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) -+/usr/lib/cups/filter/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) -+/usr/lib64/cups/filter/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) + /usr/sbin/printconf-backend -- gen_context(system_u:object_r:cupsd_config_exec_t,s0) /usr/sbin/ptal-printd -- gen_context(system_u:object_r:ptal_exec_t,s0) /usr/sbin/ptal-mlcd -- gen_context(system_u:object_r:ptal_exec_t,s0) -@@ -33,7 +46,7 @@ +@@ -33,7 +44,7 @@ /usr/share/cups(/.*)? gen_context(system_u:object_r:cupsd_etc_t,s0) /usr/share/foomatic/db/oldprinterids -- gen_context(system_u:object_r:cupsd_rw_etc_t,s0) @@ -10541,7 +10580,7 @@ diff -b -B --ignore-all-space --exclude- /var/cache/alchemist/printconf.* gen_context(system_u:object_r:cupsd_rw_etc_t,s0) /var/cache/foomatic(/.*)? gen_context(system_u:object_r:cupsd_rw_etc_t,s0) -@@ -43,10 +56,19 @@ +@@ -43,10 +54,19 @@ /var/lib/cups/certs/.* -- gen_context(system_u:object_r:cupsd_rw_etc_t,s0) /var/log/cups(/.*)? gen_context(system_u:object_r:cupsd_log_t,s0) @@ -14810,13 +14849,13 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/policykit.fc serefpolicy-3.6.23/policy/modules/services/policykit.fc --- nsaserefpolicy/policy/modules/services/policykit.fc 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/policykit.fc 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/policykit.fc 2009-07-27 09:04:55.000000000 -0400 @@ -1,7 +1,7 @@ /usr/libexec/polkit-read-auth-helper -- gen_context(system_u:object_r:policykit_auth_exec_t,s0) /usr/libexec/polkit-grant-helper.* -- gen_context(system_u:object_r:policykit_grant_exec_t,s0) /usr/libexec/polkit-resolve-exe-helper.* -- gen_context(system_u:object_r:policykit_resolve_exec_t,s0) -/usr/libexec/polkitd -- gen_context(system_u:object_r:policykit_exec_t,s0) -+/usr/libexec/polkitd.* -- gen_context(system_u:object_r:policykit_exec_t,s0) ++/usr/libexec/polkitd.* gen_context(system_u:object_r:policykit_exec_t,s0) /var/lib/misc/PolicyKit.reload gen_context(system_u:object_r:policykit_reload_t,s0) /var/lib/PolicyKit(/.*)? gen_context(system_u:object_r:policykit_var_lib_t,s0) @@ -14874,7 +14913,7 @@ diff -b -B --ignore-all-space --exclude- ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/policykit.te serefpolicy-3.6.23/policy/modules/services/policykit.te --- nsaserefpolicy/policy/modules/services/policykit.te 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/policykit.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/policykit.te 2009-07-27 11:48:01.000000000 -0400 @@ -38,9 +38,10 @@ allow policykit_t self:capability { setgid setuid }; @@ -14888,8 +14927,11 @@ diff -b -B --ignore-all-space --exclude- policykit_domtrans_auth(policykit_t) -@@ -70,6 +71,14 @@ +@@ -68,8 +69,17 @@ + + miscfiles_read_localization(policykit_t) ++userdom_getattr_all_users(policykit_t) userdom_read_all_users_state(policykit_t) +optional_policy(` @@ -14903,7 +14945,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # polkit_auth local policy -@@ -77,7 +86,8 @@ +@@ -77,7 +87,8 @@ allow policykit_auth_t self:capability setgid; allow policykit_auth_t self:process getattr; @@ -14913,7 +14955,7 @@ diff -b -B --ignore-all-space --exclude- allow policykit_auth_t self:unix_dgram_socket create_socket_perms; allow policykit_auth_t self:unix_stream_socket create_stream_socket_perms; -@@ -104,6 +114,8 @@ +@@ -104,6 +115,8 @@ userdom_dontaudit_read_user_home_content_files(policykit_auth_t) optional_policy(` @@ -14922,7 +14964,7 @@ diff -b -B --ignore-all-space --exclude- dbus_session_bus_client(policykit_auth_t) optional_policy(` -@@ -116,6 +128,10 @@ +@@ -116,6 +129,10 @@ hal_read_state(policykit_auth_t) ') @@ -14933,7 +14975,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # polkit_grant local policy -@@ -123,7 +139,8 @@ +@@ -123,7 +140,8 @@ allow policykit_grant_t self:capability setuid; allow policykit_grant_t self:process getattr; @@ -14943,7 +14985,7 @@ diff -b -B --ignore-all-space --exclude- allow policykit_grant_t self:unix_dgram_socket create_socket_perms; allow policykit_grant_t self:unix_stream_socket create_stream_socket_perms; -@@ -153,9 +170,12 @@ +@@ -153,9 +171,12 @@ userdom_read_all_users_state(policykit_grant_t) optional_policy(` @@ -14957,7 +14999,7 @@ diff -b -B --ignore-all-space --exclude- consolekit_dbus_chat(policykit_grant_t) ') ') -@@ -167,7 +187,8 @@ +@@ -167,7 +188,8 @@ allow policykit_resolve_t self:capability { setuid sys_nice sys_ptrace }; allow policykit_resolve_t self:process getattr; @@ -15234,7 +15276,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postfix.te serefpolicy-3.6.23/policy/modules/services/postfix.te --- nsaserefpolicy/policy/modules/services/postfix.te 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/postfix.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/postfix.te 2009-07-27 09:06:16.000000000 -0400 @@ -6,6 +6,15 @@ # Declarations # @@ -16840,7 +16882,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/samba.te serefpolicy-3.6.23/policy/modules/services/samba.te --- nsaserefpolicy/policy/modules/services/samba.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/samba.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/samba.te 2009-07-27 11:16:18.000000000 -0400 @@ -66,6 +66,13 @@ ## gen_tunable(samba_share_nfs, false) @@ -17001,13 +17043,14 @@ diff -b -B --ignore-all-space --exclude- ifdef(`hide_broken_symptoms', ` files_dontaudit_getattr_default_dirs(smbd_t) files_dontaudit_getattr_boot_dirs(smbd_t) -@@ -333,25 +361,33 @@ +@@ -333,25 +361,34 @@ tunable_policy(`samba_domain_controller',` usermanage_domtrans_passwd(smbd_t) + usermanage_kill_passwd(smbd_t) usermanage_domtrans_useradd(smbd_t) usermanage_domtrans_groupadd(smbd_t) ++ allow smbd_t self:passwd passwd; ') tunable_policy(`samba_enable_home_dirs',` @@ -17041,7 +17084,7 @@ diff -b -B --ignore-all-space --exclude- optional_policy(` cups_read_rw_config(smbd_t) cups_stream_connect(smbd_t) -@@ -359,6 +395,16 @@ +@@ -359,6 +396,16 @@ optional_policy(` kerberos_use(smbd_t) @@ -17058,7 +17101,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -376,13 +422,15 @@ +@@ -376,13 +423,15 @@ tunable_policy(`samba_create_home_dirs',` allow smbd_t self:capability chown; userdom_create_user_home_dirs(smbd_t) @@ -17075,7 +17118,7 @@ diff -b -B --ignore-all-space --exclude- auth_read_all_files_except_shadow(nmbd_t) ') -@@ -391,8 +439,8 @@ +@@ -391,8 +440,8 @@ auth_manage_all_files_except_shadow(smbd_t) fs_read_noxattr_fs_files(nmbd_t) auth_manage_all_files_except_shadow(nmbd_t) @@ -17085,7 +17128,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # -@@ -417,14 +465,11 @@ +@@ -417,14 +466,11 @@ files_pid_filetrans(nmbd_t, nmbd_var_run_t, file) read_files_pattern(nmbd_t, samba_etc_t, samba_etc_t) @@ -17101,7 +17144,7 @@ diff -b -B --ignore-all-space --exclude- manage_files_pattern(nmbd_t, samba_var_t, samba_var_t) allow nmbd_t smbd_var_run_t:dir rw_dir_perms; -@@ -553,21 +598,36 @@ +@@ -553,21 +599,36 @@ userdom_use_user_terminals(smbmount_t) userdom_use_all_users_fds(smbmount_t) @@ -17141,7 +17184,7 @@ diff -b -B --ignore-all-space --exclude- append_files_pattern(swat_t, samba_log_t, samba_log_t) -@@ -585,6 +645,9 @@ +@@ -585,6 +646,9 @@ files_pid_filetrans(swat_t, swat_var_run_t, file) allow swat_t winbind_exec_t:file mmap_file_perms; @@ -17151,7 +17194,7 @@ diff -b -B --ignore-all-space --exclude- kernel_read_kernel_sysctls(swat_t) kernel_read_system_state(swat_t) -@@ -609,6 +672,7 @@ +@@ -609,6 +673,7 @@ dev_read_urand(swat_t) @@ -17159,7 +17202,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(swat_t) files_search_home(swat_t) files_read_usr_files(swat_t) -@@ -618,6 +682,7 @@ +@@ -618,6 +683,7 @@ auth_use_nsswitch(swat_t) logging_send_syslog_msg(swat_t) @@ -17167,7 +17210,7 @@ diff -b -B --ignore-all-space --exclude- logging_search_logs(swat_t) miscfiles_read_localization(swat_t) -@@ -635,14 +700,25 @@ +@@ -635,14 +701,25 @@ kerberos_use(swat_t) ') @@ -17195,7 +17238,7 @@ diff -b -B --ignore-all-space --exclude- allow winbind_t self:fifo_file rw_fifo_file_perms; allow winbind_t self:unix_dgram_socket create_socket_perms; allow winbind_t self:unix_stream_socket create_stream_socket_perms; -@@ -683,9 +759,10 @@ +@@ -683,9 +760,10 @@ manage_sock_files_pattern(winbind_t, winbind_var_run_t, winbind_var_run_t) files_pid_filetrans(winbind_t, winbind_var_run_t, file) @@ -17208,7 +17251,7 @@ diff -b -B --ignore-all-space --exclude- corenet_all_recvfrom_unlabeled(winbind_t) corenet_all_recvfrom_netlabel(winbind_t) -@@ -709,10 +786,12 @@ +@@ -709,10 +787,12 @@ auth_domtrans_chk_passwd(winbind_t) auth_use_nsswitch(winbind_t) @@ -17221,7 +17264,7 @@ diff -b -B --ignore-all-space --exclude- logging_send_syslog_msg(winbind_t) -@@ -768,8 +847,13 @@ +@@ -768,8 +848,13 @@ userdom_use_user_terminals(winbind_helper_t) optional_policy(` @@ -17235,7 +17278,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -778,6 +862,16 @@ +@@ -778,6 +863,16 @@ # optional_policy(` @@ -17252,7 +17295,7 @@ diff -b -B --ignore-all-space --exclude- type samba_unconfined_script_t; type samba_unconfined_script_exec_t; domain_type(samba_unconfined_script_t) -@@ -788,9 +882,43 @@ +@@ -788,9 +883,43 @@ allow smbd_t samba_unconfined_script_exec_t:dir search_dir_perms; allow smbd_t samba_unconfined_script_exec_t:file ioctl; @@ -19889,7 +19932,7 @@ diff -b -B --ignore-all-space --exclude- corenet_tcp_connect_http_port(httpd_w3c_validator_script_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.fc serefpolicy-3.6.23/policy/modules/services/xserver.fc --- nsaserefpolicy/policy/modules/services/xserver.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/services/xserver.fc 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/services/xserver.fc 2009-07-27 13:50:30.000000000 -0400 @@ -3,12 +3,16 @@ # HOME_DIR/\.fonts\.conf -- gen_context(system_u:object_r:user_fonts_config_t,s0) @@ -19953,7 +19996,7 @@ diff -b -B --ignore-all-space --exclude- /var/run/[gx]dm\.pid -- gen_context(system_u:object_r:xdm_var_run_t,s0) /var/run/xdmctl(/.*)? gen_context(system_u:object_r:xdm_var_run_t,s0) +/var/run/xauth(/.*)? gen_context(system_u:object_r:xdm_var_run_t,s0) -+/var/run/slim.auth -- gen_context(system_u:object_r:xdm_var_run_t,s0) ++/var/run/slim\.auth -- gen_context(system_u:object_r:xdm_var_run_t,s0) + +/var/run/video.rom -- gen_context(system_u:object_r:xserver_var_run_t,s0) +/var/run/xorg(/.*)? gen_context(system_u:object_r:xserver_var_run_t,s0) @@ -25143,7 +25186,7 @@ diff -b -B --ignore-all-space --exclude- -') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/unconfined.if serefpolicy-3.6.23/policy/modules/system/unconfined.if --- nsaserefpolicy/policy/modules/system/unconfined.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/unconfined.if 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/unconfined.if 2009-07-27 13:54:34.000000000 -0400 @@ -12,14 +12,13 @@ # interface(`unconfined_domain_noaudit',` @@ -25188,7 +25231,7 @@ diff -b -B --ignore-all-space --exclude- + + ubac_process_exempt($1) + -+ tunable_policy(`allow_unconfined_mmap_low',` ++ tunable_policy(`mmap_low_allowed',` + domain_mmap_low($1) + ') + @@ -25888,7 +25931,7 @@ diff -b -B --ignore-all-space --exclude- +/dev/shm/mono.* gen_context(system_u:object_r:user_tmpfs_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.if serefpolicy-3.6.23/policy/modules/system/userdomain.if --- nsaserefpolicy/policy/modules/system/userdomain.if 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/userdomain.if 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/userdomain.if 2009-07-27 14:11:20.000000000 -0400 @@ -30,8 +30,9 @@ ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.882 retrieving revision 1.883 diff -u -p -r1.882 -r1.883 --- selinux-policy.spec 23 Jul 2009 21:47:41 -0000 1.882 +++ selinux-policy.spec 27 Jul 2009 22:09:57 -0000 1.883 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.23 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Mon Jul 27 2009 Dan Walsh 3.6.23-2 +- Allow certmaster to override dac permissions + * Thu Jul 22 2009 Dan Walsh 3.6.23-1 - Update to upstream From hadess at fedoraproject.org Mon Jul 27 22:12:50 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Mon, 27 Jul 2009 22:12:50 +0000 (UTC) Subject: rpms/gnome-media/devel .cvsignore, 1.55, 1.56 gnome-media.spec, 1.173, 1.174 sources, 1.54, 1.55 Message-ID: <20090727221250.38BEA11C00D5@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30105 Modified Files: .cvsignore gnome-media.spec sources Log Message: * Mon Jul 27 2009 Bastien Nocera 2.27.5-1 - Update to 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/.cvsignore,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- .cvsignore 14 Jul 2009 04:29:41 -0000 1.55 +++ .cvsignore 27 Jul 2009 22:12:49 -0000 1.56 @@ -1 +1 @@ -gnome-media-2.27.4.tar.bz2 +gnome-media-2.27.5.tar.bz2 Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.173 retrieving revision 1.174 diff -u -p -r1.173 -r1.174 --- gnome-media.spec 25 Jul 2009 00:41:28 -0000 1.173 +++ gnome-media.spec 27 Jul 2009 22:12:49 -0000 1.174 @@ -13,8 +13,8 @@ Summary: GNOME media programs Name: gnome-media -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.27/gnome-media-%{version}.tar.bz2 @@ -253,6 +253,9 @@ scrollkeeper-update -q || : %{_libdir}/pkgconfig/* %changelog +* Mon Jul 27 2009 Bastien Nocera 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 14 Jul 2009 04:29:41 -0000 1.54 +++ sources 27 Jul 2009 22:12:50 -0000 1.55 @@ -1 +1 @@ -a075d1ffe8af9665fdd3a41aa4e6befb gnome-media-2.27.4.tar.bz2 +f08b077bc635acd9abe93192b7410049 gnome-media-2.27.5.tar.bz2 From behdad at fedoraproject.org Mon Jul 27 22:15:09 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Mon, 27 Jul 2009 22:15:09 +0000 (UTC) Subject: rpms/fontconfig/F-11 .cvsignore, 1.42, 1.43 fontconfig.spec, 1.132, 1.133 sources, 1.46, 1.47 Message-ID: <20090727221509.BEFBC11C00D5@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/fontconfig/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30741 Modified Files: .cvsignore fontconfig.spec sources Log Message: * Mon Jul 27 2009 Behdad Esfahbod - 2.7.1-1 - Update to 2.7.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/F-11/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 18 Mar 2009 23:43:18 -0000 1.42 +++ .cvsignore 27 Jul 2009 22:15:09 -0000 1.43 @@ -1 +1 @@ -fontconfig-2.6.99.behdad.20090318.tar.gz +fontconfig-2.7.1.tar.gz Index: fontconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/F-11/fontconfig.spec,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- fontconfig.spec 8 May 2009 20:19:54 -0000 1.132 +++ fontconfig.spec 27 Jul 2009 22:15:09 -0000 1.133 @@ -2,7 +2,7 @@ Summary: Font configuration and customization library Name: fontconfig -Version: 2.6.99.behdad.20090508 +Version: 2.7.1 Release: 1%{?dist} License: MIT Group: System Environment/Libraries @@ -131,6 +131,9 @@ fi %{_mandir}/man3/* %changelog +* Mon Jul 27 2009 Behdad Esfahbod - 2.7.1-1 +- Update to 2.7.1 + * Tue May 8 2009 Behdad Esfahbod - 2.6.99.behdad.20090508-1 - Update to 2.6.99.behdad.20090508 - Resolves #497984 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/F-11/sources,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sources 8 May 2009 20:19:54 -0000 1.46 +++ sources 27 Jul 2009 22:15:09 -0000 1.47 @@ -1 +1 @@ -8e04b95bfb69a2dba947dd0cfc61b5f0 fontconfig-2.6.99.behdad.20090508.tar.gz +41024d11765acdd7520d1f5458e751db fontconfig-2.7.1.tar.gz From behdad at fedoraproject.org Mon Jul 27 22:17:26 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Mon, 27 Jul 2009 22:17:26 +0000 (UTC) Subject: rpms/fontconfig/devel fontconfig.spec, 1.136, 1.137 sources, 1.48, 1.49 Message-ID: <20090727221726.6C47511C00D5@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/fontconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31525 Modified Files: fontconfig.spec sources Log Message: * Mon Jul 27 2009 Behdad Esfahbod - 2.7.1-1 - Update to 2.7.1 Index: fontconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/devel/fontconfig.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- fontconfig.spec 24 Jul 2009 22:59:11 -0000 1.136 +++ fontconfig.spec 27 Jul 2009 22:17:26 -0000 1.137 @@ -2,8 +2,8 @@ Summary: Font configuration and customization library Name: fontconfig -Version: 2.7.0 -Release: 2%{?dist} +Version: 2.7.1 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries Source: http://fontconfig.org/release/fontconfig-%{version}.tar.gz @@ -131,6 +131,9 @@ fi %{_mandir}/man3/* %changelog +* Mon Jul 27 2009 Behdad Esfahbod - 2.7.1-1 +- Update to 2.7.1 + * Fri Jul 24 2009 Fedora Release Engineering - 2.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 24 Jun 2009 19:25:00 -0000 1.48 +++ sources 27 Jul 2009 22:17:26 -0000 1.49 @@ -1 +1 @@ -7a9b3f53a7cf431d0acac13aab7573f7 fontconfig-2.7.0.tar.gz +41024d11765acdd7520d1f5458e751db fontconfig-2.7.1.tar.gz From cweyl at fedoraproject.org Mon Jul 27 22:32:13 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Mon, 27 Jul 2009 22:32:13 +0000 (UTC) Subject: rpms/perl-Moose/devel .cvsignore, 1.31, 1.32 perl-Moose.spec, 1.43, 1.44 sources, 1.31, 1.32 Message-ID: <20090727223213.AA5FF11C00D5@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Moose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3999 Modified Files: .cvsignore perl-Moose.spec sources Log Message: * Mon Jul 27 2009 Chris Weyl 0.88-1 - auto-update to 0.88 (by cpan-spec-update 0.01) - altered br on perl(Class::MOP) (0.85 => 0.89) - altered br on perl(Sub::Exporter) (0.972 => 0.980) - added a new req on perl(Carp) (version 0) - added a new req on perl(Class::MOP) (version 0.89) - added a new req on perl(Data::OptList) (version 0) - added a new req on perl(List::MoreUtils) (version 0.12) - added a new req on perl(Scalar::Util) (version 1.19) - added a new req on perl(Sub::Exporter) (version 0.980) - added a new req on perl(Sub::Name) (version 0) - added a new req on perl(Task::Weaken) (version 0) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Moose/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 9 Jun 2009 08:29:05 -0000 1.31 +++ .cvsignore 27 Jul 2009 22:32:12 -0000 1.32 @@ -1 +1 @@ -Moose-0.81.tar.gz +Moose-0.88.tar.gz Index: perl-Moose.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Moose/devel/perl-Moose.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- perl-Moose.spec 26 Jul 2009 11:23:31 -0000 1.43 +++ perl-Moose.spec 27 Jul 2009 22:32:12 -0000 1.44 @@ -1,6 +1,6 @@ Name: perl-Moose -Version: 0.81 -Release: 3%{?dist} +Version: 0.88 +Release: 1%{?dist} Summary: Complete modern object system for Perl 5 License: GPL+ or Artistic Group: Development/Libraries @@ -11,18 +11,21 @@ BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 -BuildRequires: perl(Class::MOP) >= 0.85 +BuildRequires: perl(Carp) +BuildRequires: perl(Class::MOP) >= 0.89 BuildRequires: perl(Data::OptList) BuildRequires: perl(Filter::Simple) BuildRequires: perl(List::MoreUtils) >= 0.12 BuildRequires: perl(Scalar::Util) >= 1.19 -BuildRequires: perl(Sub::Exporter) >= 0.972 +BuildRequires: perl(Sub::Exporter) >= 0.980 BuildRequires: perl(Sub::Install) >= 0.92 +BuildRequires: perl(Sub::Name) BuildRequires: perl(Task::Weaken) BuildRequires: perl(Test::More) >= 0.77 BuildRequires: perl(Test::Exception) >= 0.27 BuildRequires: perl(Test::LongString) BuildRequires: perl(UNIVERSAL::require) >= 0.10 + # optional test #1 (in no particular order) # ** moved to author tests #BuildRequires: perl(Test::Pod), perl(Test::Pod::Coverage) @@ -50,16 +53,21 @@ BuildRequires: perl(Module::Refresh) BuildRequires: perl(Test::Warn) BuildRequires: perl(Test::Output) +Requires: perl(Carp) +Requires: perl(Class::MOP) >= 0.89 +Requires: perl(Data::OptList) +Requires: perl(List::MoreUtils) >= 0.12 +Requires: perl(Scalar::Util) >= 1.19 +Requires: perl(Sub::Exporter) >= 0.980 +Requires: perl(Sub::Name) +Requires: perl(Task::Weaken) + # don't "provide" private Perl libs, or bits from _docdir %global _use_internal_dependency_generator 0 %global __deploop() while read FILE; do /usr/lib/rpm/rpmdeps -%{1} ${FILE}; done | /bin/sort -u %global __find_provides /bin/sh -c "%{__grep} -v '%_docdir' | %{__grep} -v '%{perl_vendorarch}/.*\\.so$' | %{__deploop P}" %global __find_requires /bin/sh -c "%{__grep} -v '%_docdir' | %{__deploop R}" -### auto-added brs! -BuildRequires: perl(Sub::Name) -BuildRequires: perl(Carp) - %description Moose is an extension of the Perl 5 object system. @@ -91,6 +99,7 @@ very welcome. # tidy things up... find t/ -type f -exec perl -pi -e 's|^#!/usr/local/bin|#!/usr/bin|' {} + find . -name '*.orig' -exec rm -v {} + +find . -type f -exec chmod -c -x {} + %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -126,6 +135,19 @@ rm -rf %{buildroot} %{_mandir}/man3/Test::Moose* %changelog +* Mon Jul 27 2009 Chris Weyl 0.88-1 +- auto-update to 0.88 (by cpan-spec-update 0.01) +- altered br on perl(Class::MOP) (0.85 => 0.89) +- altered br on perl(Sub::Exporter) (0.972 => 0.980) +- added a new req on perl(Carp) (version 0) +- added a new req on perl(Class::MOP) (version 0.89) +- added a new req on perl(Data::OptList) (version 0) +- added a new req on perl(List::MoreUtils) (version 0.12) +- added a new req on perl(Scalar::Util) (version 1.19) +- added a new req on perl(Sub::Exporter) (version 0.980) +- added a new req on perl(Sub::Name) (version 0) +- added a new req on perl(Task::Weaken) (version 0) + * Sun Jul 26 2009 Fedora Release Engineering - 0.81-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Moose/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 9 Jun 2009 08:29:05 -0000 1.31 +++ sources 27 Jul 2009 22:32:12 -0000 1.32 @@ -1 +1 @@ -7fe95bd9db76494340e87338e3d86899 Moose-0.81.tar.gz +a9842e4bdf2ffceef7990d1edf14d033 Moose-0.88.tar.gz From kanarip at fedoraproject.org Mon Jul 27 23:13:33 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Mon, 27 Jul 2009 23:13:33 +0000 (UTC) Subject: rpms/spin-kickstarts/devel .cvsignore, 1.6, 1.7 import.log, 1.5, 1.6 sources, 1.6, 1.7 spin-kickstarts.spec, 1.7, 1.8 Message-ID: <20090727231333.E23BC11C00D5@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/spin-kickstarts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16632/devel Modified Files: .cvsignore import.log sources spin-kickstarts.spec Log Message: 0.12.0-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 16 May 2009 12:04:37 -0000 1.6 +++ .cvsignore 27 Jul 2009 23:13:31 -0000 1.7 @@ -1 +1 @@ -spin-kickstarts-0.11.3.tar.gz +spin-kickstarts-0.12.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 16 May 2009 12:04:37 -0000 1.5 +++ import.log 27 Jul 2009 23:13:31 -0000 1.6 @@ -3,3 +3,4 @@ spin-kickstarts-0_10_1-1_fc9:HEAD:spin-k spin-kickstarts-0_10_2-1_fc9:HEAD:spin-kickstarts-0.10.2-1.fc9.src.rpm:1226154819 spin-kickstarts-0_11_1-1_fc10:HEAD:spin-kickstarts-0.11.1-1.fc10.src.rpm:1236189829 spin-kickstarts-0_11_3-1_fc11:HEAD:spin-kickstarts-0.11.3-1.fc11.src.rpm:1242475393 +spin-kickstarts-0_12_0-1_fc11:HEAD:spin-kickstarts-0.12.0-1.fc11.src.rpm:1248736389 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 16 May 2009 12:04:37 -0000 1.6 +++ sources 27 Jul 2009 23:13:31 -0000 1.7 @@ -1 +1 @@ -00b151cd050fb2b9fc5170bb37ebf3dd spin-kickstarts-0.11.3.tar.gz +a95ef8d421365e9f69e0da979cad916e spin-kickstarts-0.12.0.tar.gz Index: spin-kickstarts.spec =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/spin-kickstarts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- spin-kickstarts.spec 27 Jul 2009 04:41:16 -0000 1.7 +++ spin-kickstarts.spec 27 Jul 2009 23:13:31 -0000 1.8 @@ -1,6 +1,6 @@ Name: spin-kickstarts -Version: 0.11.3 -Release: 2%{?dist} +Version: 0.12.0 +Release: 1%{?dist} License: GPLv2+ Summary: Kickstart files and templates for creating your own Fedora Spins Group: Applications/System @@ -8,10 +8,37 @@ URL: http://fedorahosted.org/spin Source0: http://fedorahosted.org/releases/s/p/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildArch: noarch +Requires: fedora-kickstarts %description A number of kickstarts you can use to create customized (Fedora) Spins +%package -n fedora-kickstarts +Summary: Official Fedora Spins +Group: Applications/System +Requires: spin-kickstarts = %{version}-%{release} + +%description -n fedora-kickstarts +Kickstarts used to compose the official Fedora Spins (see +http://spins.fedoraproject.org/ for a full list) + +%package -n custom-kickstarts +Summary: Kickstart files for Custom Spins (not official) +Group: Applications/System +Requires: spin-kickstarts = %{version}-%{release} + +%description -n custom-kickstarts +Unofficial spins (remixes) brought to us by several contributors + +%package -n l10n-kickstarts +Summary: Localized kickstarts for localized spins +Group: Applications/System +Requires: fedora-kickstarts = %{version}-%{release} +Requires: custom-kickstarts = %{version}-%{release} + +%description -n l10n-kickstarts +Localized versions of kickstarts for localized spins + %prep %setup -q @@ -30,13 +57,30 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc COPYING README AUTHORS NEWS %dir %{_datadir}/%{name}/ -%{_datadir}/%{name}/* + +%files -n fedora-kickstarts +%defattr(-,root,root,-) +%doc COPYING README AUTHORS NEWS +%{_datadir}/%{name}/*.ks + +%files -n custom-kickstarts +%defattr(-,root,root,-) +%doc COPYING README AUTHORS NEWS +%{_datadir}/%{name}/custom/ + +%files -n l10n-kickstarts +%defattr(-,root,root,-) +%doc COPYING README AUTHORS NEWS +%{_datadir}/%{name}/l10n/ %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 0.11.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Jeroen van Meeuwen 0.12.0-1 +- New release + +* Sun Jul 05 2009 Jeroen van Meeuwen 0.11.4-1 +- Fix repos in fedora-install-fedora.ks (#505262) -* Sat May 16 2009 Jeroen van Meeuwen 0.11.3-1 +* Sun May 31 2009 Jeroen van Meeuwen 0.11.3-1 - New release - Removed developer spin from the mix From nhorman at fedoraproject.org Mon Jul 27 23:25:50 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 27 Jul 2009 23:25:50 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-xfrm-export-gc_thresh.patch, NONE, 1.1 kernel.spec, 1.1682, 1.1683 Message-ID: <20090727232550.CBF5511C00D5@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20071 Modified Files: kernel.spec Added Files: linux-2.6-xfrm-export-gc_thresh.patch Log Message: Resolves: bz503124 linux-2.6-xfrm-export-gc_thresh.patch: ipv4/xfrm4_policy.c | 18 ++++++++++++++++++ ipv6/xfrm6_policy.c | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) --- NEW FILE linux-2.6-xfrm-export-gc_thresh.patch --- diff -up linux-2.6.30.noarch/net/ipv4/xfrm4_policy.c.orig linux-2.6.30.noarch/net/ipv4/xfrm4_policy.c --- linux-2.6.30.noarch/net/ipv4/xfrm4_policy.c.orig 2009-06-09 23:05:27.000000000 -0400 +++ linux-2.6.30.noarch/net/ipv4/xfrm4_policy.c 2009-07-27 19:16:16.000000000 -0400 @@ -263,6 +263,20 @@ static struct xfrm_policy_afinfo xfrm4_p .fill_dst = xfrm4_fill_dst, }; +static struct ctl_table xfrm4_policy_table[] = { + { + .ctl_name = CTL_UNNUMBERED, + .procname = "xfrm4_gc_thresh", + .data = &xfrm4_dst_ops.gc_thresh, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec, + }, + { } +}; + +static struct ctl_table_header *sysctl_hdr; + static void __init xfrm4_policy_init(void) { xfrm_policy_register_afinfo(&xfrm4_policy_afinfo); @@ -270,6 +284,8 @@ static void __init xfrm4_policy_init(voi static void __exit xfrm4_policy_fini(void) { + if (sysctl_hdr) + unregister_net_sysctl_table(sysctl_hdr); xfrm_policy_unregister_afinfo(&xfrm4_policy_afinfo); } @@ -277,5 +293,7 @@ void __init xfrm4_init(void) { xfrm4_state_init(); xfrm4_policy_init(); + sysctl_hdr = register_net_sysctl_table(&init_net, net_ipv4_ctl_path, + xfrm4_policy_table); } diff -up linux-2.6.30.noarch/net/ipv6/xfrm6_policy.c.orig linux-2.6.30.noarch/net/ipv6/xfrm6_policy.c --- linux-2.6.30.noarch/net/ipv6/xfrm6_policy.c.orig 2009-06-09 23:05:27.000000000 -0400 +++ linux-2.6.30.noarch/net/ipv6/xfrm6_policy.c 2009-07-27 19:16:16.000000000 -0400 @@ -304,6 +304,20 @@ static void xfrm6_policy_fini(void) xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo); } +static struct ctl_table xfrm6_policy_table[] = { + { + .ctl_name = CTL_UNNUMBERED, + .procname = "xfrm6_gc_thresh", + .data = &xfrm6_dst_ops.gc_thresh, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec, + }, + { } +}; + +static struct ctl_table_header *sysctl_hdr; + int __init xfrm6_init(void) { int ret; @@ -315,6 +329,8 @@ int __init xfrm6_init(void) ret = xfrm6_state_init(); if (ret) goto out_policy; + sysctl_hdr = register_net_sysctl_table(&init_net, net_ipv6_ctl_path, + xfrm6_policy_table); out: return ret; out_policy: @@ -324,6 +340,8 @@ out_policy: void xfrm6_fini(void) { + if (sysctl_hdr) + unregister_net_sysctl_table(sysctl_hdr); //xfrm6_input_fini(); xfrm6_policy_fini(); xfrm6_state_fini(); Index: kernel.spec =================================================================== RCS file: /cvs/extras/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1682 retrieving revision 1.1683 diff -u -p -r1.1682 -r1.1683 --- kernel.spec 25 Jul 2009 04:09:23 -0000 1.1682 +++ kernel.spec 27 Jul 2009 23:25:49 -0000 1.1683 @@ -684,6 +684,8 @@ Patch11060: via-padlock-50-nano-cbc.patc Patch11070: via-rng-enable-64bit.patch Patch11080: via-sdmmc.patch +# Commit a44a4a006b860476881ec0098c36584036e1cb91 fron net-next-2.6.git +Patch12000: linux-2.6-xfrm-export-gc_thresh.patch %endif BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root @@ -1105,6 +1107,9 @@ ApplyPatch via-padlock-50-nano-cbc.patch ApplyPatch via-rng-enable-64bit.patch ApplyPatch via-sdmmc.patch +# Export xfrm[4|6] gc_thresh values to sysctl +ApplyPatch linux-2.6-xfrm-export-gc_thresh.patch + # # PowerPC # @@ -1830,6 +1835,9 @@ fi # and build. %changelog +* Mon Jul 27 2009 Neil Horman +- Backport xfrm gc_thresh export code (bz 503124) + * Fri Jul 24 2009 Kyle McMartin - CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 [i386 x86_64], 4096 elsewhere, as per defconfigs. From phuang at fedoraproject.org Mon Jul 27 23:54:36 2009 From: phuang at fedoraproject.org (Huang Peng) Date: Mon, 27 Jul 2009 23:54:36 +0000 (UTC) Subject: rpms/ibus/devel ibus.spec,1.76,1.77 xinput-ibus,1.5,1.6 Message-ID: <20090727235437.00F8411C00D5@cvs1.fedora.phx.redhat.com> Author: phuang Update of /cvs/pkgs/rpms/ibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28546 Modified Files: ibus.spec xinput-ibus Log Message: Update xinput-ibus: setup QT_IM_MODULE if the ibus qt input method plugin exists. Index: ibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- ibus.spec 25 Jul 2009 03:01:08 -0000 1.76 +++ ibus.spec 27 Jul 2009 23:54:35 -0000 1.77 @@ -8,7 +8,7 @@ Name: ibus Version: 1.2.0.20090723 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPLv2+ Group: System Environment/Libraries @@ -228,6 +228,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Tue Jul 28 2009 Peng Huang - 1.2.0.20090723-3 +- Update xinput-ibus: setup QT_IM_MODULE if the ibus qt input method plugin exists. + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090723-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xinput-ibus =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/xinput-ibus,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xinput-ibus 11 Feb 2009 03:26:04 -0000 1.5 +++ xinput-ibus 27 Jul 2009 23:54:35 -0000 1.6 @@ -5,4 +5,9 @@ XIM_ARGS="--xim" PREFERENCE_PROGRAM=/usr/bin/ibus-setup SHORT_DESC="IBus" GTK_IM_MODULE=ibus -# QT_IM_MODULE=ibus + +if test -f /usr/lib/qt4/plugins/inputmethods/libqtim-ibus.so || \ + test -f /usr/lib64/qt4/plugins/inputmethods/libqtim-ibus.so; +then + QT_IM_MODULE=ibus +fi From lennart at fedoraproject.org Mon Jul 27 23:55:47 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Mon, 27 Jul 2009 23:55:47 +0000 (UTC) Subject: rpms/pulseaudio/devel .cvsignore, 1.36, 1.37 pulseaudio.spec, 1.86, 1.87 sources, 1.38, 1.39 Message-ID: <20090727235547.4308411C00D5@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28929 Modified Files: .cvsignore pulseaudio.spec sources Log Message: New test release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 2 Jul 2009 00:26:40 -0000 1.36 +++ .cvsignore 27 Jul 2009 23:55:46 -0000 1.37 @@ -1 +1 @@ -pulseaudio-0.9.16-test2.tar.gz +pulseaudio-0.9.16-test3.tar.gz Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/pulseaudio.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- pulseaudio.spec 26 Jul 2009 19:39:19 -0000 1.86 +++ pulseaudio.spec 27 Jul 2009 23:55:47 -0000 1.87 @@ -1,10 +1,10 @@ Name: pulseaudio Summary: Improved Linux Sound Server Version: 0.9.16 -Release: 3.test2%{?dist} +Release: 4.test3%{?dist} License: LGPLv2+ Group: System Environment/Daemons -Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}-test2.tar.gz +Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}-test3.tar.gz URL: http://pulseaudio.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: m4 @@ -46,6 +46,7 @@ Obsoletes: pulseaudio-core-libs Provides: pulseaudio-core-libs Requires: udev >= 143 Requires: rtkit +Requires: kernel >= 2.6.30 %description PulseAudio is a sound server for Linux and other Unix like operating @@ -185,7 +186,7 @@ Requires: %{name}-libs = %{version This package contains command line utilities for the PulseAudio sound server. %prep -%setup -q -T -b0 -n pulseaudio-0.9.16-test2 +%setup -q -T -b0 -n pulseaudio-0.9.16-test3 %build CFLAGS="-ggdb" %configure --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-access-group=pulse-access --disable-hal @@ -410,6 +411,9 @@ exit 0 %{_mandir}/man1/pax11publish.1.gz %changelog +* Tue Jul 28 2009 Lennart Poettering 0.9.16-4.test3 +- New test release + * Sun Jul 26 2009 Fedora Release Engineering - 0.9.16-3.test2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 2 Jul 2009 00:26:40 -0000 1.38 +++ sources 27 Jul 2009 23:55:47 -0000 1.39 @@ -1 +1 @@ -26aa48d37c1aede11942cccdf6f0a983 pulseaudio-0.9.16-test2.tar.gz +c3ff23c2d0e18dd550c63f37c6174339 pulseaudio-0.9.16-test3.tar.gz From kanarip at fedoraproject.org Mon Jul 27 23:57:38 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Mon, 27 Jul 2009 23:57:38 +0000 (UTC) Subject: rpms/spin-kickstarts/devel import.log, 1.6, 1.7 sources, 1.7, 1.8 spin-kickstarts.spec, 1.8, 1.9 Message-ID: <20090727235738.589E111C00D5@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/spin-kickstarts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29519/devel Modified Files: import.log sources spin-kickstarts.spec Log Message: 0.12.0-2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 27 Jul 2009 23:13:31 -0000 1.6 +++ import.log 27 Jul 2009 23:57:37 -0000 1.7 @@ -4,3 +4,4 @@ spin-kickstarts-0_10_2-1_fc9:HEAD:spin-k spin-kickstarts-0_11_1-1_fc10:HEAD:spin-kickstarts-0.11.1-1.fc10.src.rpm:1236189829 spin-kickstarts-0_11_3-1_fc11:HEAD:spin-kickstarts-0.11.3-1.fc11.src.rpm:1242475393 spin-kickstarts-0_12_0-1_fc11:HEAD:spin-kickstarts-0.12.0-1.fc11.src.rpm:1248736389 +spin-kickstarts-0_12_0-2_fc11:HEAD:spin-kickstarts-0.12.0-2.fc11.src.rpm:1248739030 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 27 Jul 2009 23:13:31 -0000 1.7 +++ sources 27 Jul 2009 23:57:38 -0000 1.8 @@ -1 +1 @@ -a95ef8d421365e9f69e0da979cad916e spin-kickstarts-0.12.0.tar.gz +b2c9077209e3505e12c92d0cac59a535 spin-kickstarts-0.12.0.tar.gz Index: spin-kickstarts.spec =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/spin-kickstarts.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- spin-kickstarts.spec 27 Jul 2009 23:13:31 -0000 1.8 +++ spin-kickstarts.spec 27 Jul 2009 23:57:38 -0000 1.9 @@ -1,6 +1,6 @@ Name: spin-kickstarts Version: 0.12.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Summary: Kickstart files and templates for creating your own Fedora Spins Group: Applications/System @@ -74,7 +74,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/l10n/ %changelog -* Tue Jul 28 2009 Jeroen van Meeuwen 0.12.0-1 +* Tue Jul 28 2009 Jeroen van Meeuwen 0.12.0-2 - New release * Sun Jul 05 2009 Jeroen van Meeuwen 0.11.4-1 From mclasen at fedoraproject.org Tue Jul 28 01:26:20 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 01:26:20 +0000 (UTC) Subject: rpms/gnome-power-manager/devel dpmsstr-no-needed.patch, NONE, 1.1 gnome-power-manager.spec, 1.168, 1.169 Message-ID: <20090728012620.B919611C00D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22779 Modified Files: gnome-power-manager.spec Added Files: dpmsstr-no-needed.patch Log Message: Drop an unneeded include that broke the build dpmsstr-no-needed.patch: gpm-dpms.c | 1 - 1 file changed, 1 deletion(-) --- NEW FILE dpmsstr-no-needed.patch --- diff -up gnome-power-manager-2.27.3-20090727/src/gpm-dpms.c.dpmsstr-not-needed gnome-power-manager-2.27.3-20090727/src/gpm-dpms.c --- gnome-power-manager-2.27.3-20090727/src/gpm-dpms.c.dpmsstr-not-needed 2009-07-27 20:27:04.645697986 -0400 +++ gnome-power-manager-2.27.3-20090727/src/gpm-dpms.c 2009-07-27 20:27:10.715696186 -0400 @@ -40,7 +40,6 @@ #ifdef HAVE_DPMS_EXTENSION #include #include -#include #endif #include "egg-debug.h" Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.168 retrieving revision 1.169 diff -u -p -r1.168 -r1.169 --- gnome-power-manager.spec 27 Jul 2009 17:57:47 -0000 1.168 +++ gnome-power-manager.spec 28 Jul 2009 01:26:20 -0000 1.169 @@ -6,11 +6,14 @@ Summary: GNOME Power Manager Name: gnome-power-manager Version: 2.27.3 #Release: 2%{?dist} -Release: 0.3.%{?alphatag}git%{?dist} +Release: 0.4.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System #Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz + +Patch0: dpmsstr-no-needed.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://projects.gnome.org/gnome-power-manager/ @@ -54,6 +57,7 @@ change preferences. %prep #%setup -q %setup -q -n %{?name}-%{?version}-%{?alphatag} +%patch0 -p1 -b .dpmsstr-not-needed %build %configure \ @@ -156,6 +160,9 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Mon Jul 27 2009 Matthias Clasen - 2.27.3-0.4.20090727git +- Drop an unneeded include that broke the build + * Mon Jul 27 2009 Richard Hughes - 2.27.3-0.2.20090727git - Update to todays git snapshot. From corsepiu at fedoraproject.org Tue Jul 28 01:51:07 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Tue, 28 Jul 2009 01:51:07 +0000 (UTC) Subject: rpms/SIMVoleon/devel SIMVoleon-2.0.1-bash4.0.diff, NONE, 1.1 SIMVoleon-2.0.1-pivy-hacks.diff, NONE, 1.1 SIMVoleon.spec, 1.13, 1.14 Message-ID: <20090728015107.625FC11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/SIMVoleon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29602 Modified Files: SIMVoleon.spec Added Files: SIMVoleon-2.0.1-bash4.0.diff SIMVoleon-2.0.1-pivy-hacks.diff Log Message: * Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 - Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. SIMVoleon-2.0.1-bash4.0.diff: simvoleon-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE SIMVoleon-2.0.1-bash4.0.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2009-07-28 03:40:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:40:11.000000000 +0200 @@ -106,7 +106,7 @@ s/ /-I/ p }' - EOF` +EOF` result= for inc_path in $cppflags; do additem=true SIMVoleon-2.0.1-pivy-hacks.diff: bin/simvoleon-config.in | 4 ++++ simvoleon.cfg.in | 2 ++ 2 files changed, 6 insertions(+) --- NEW FILE SIMVoleon-2.0.1-pivy-hacks.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2003-06-30 14:51:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:39:07.000000000 +0200 @@ -50,6 +50,8 @@ --cxxflags --ldflags --libs + --includedir + --datadir --msvcrt --ac-subst | --ac-desubst @@ -130,6 +132,8 @@ --cxxflags) echo "$cxxflags" ;; --ldflags) echo "$ldflags" ;; --libs) echo "$libs" ;; + --includedir) echo "$includedir" ;; + --datadir) echo "$datadir" ;; --msvcrt) echo "$msvcrt" ;; --ac-subst) shift diff -Naur SIMVoleon-2.0.1.orig/simvoleon.cfg.in SIMVoleon-2.0.1/simvoleon.cfg.in --- SIMVoleon-2.0.1.orig/simvoleon.cfg.in 2003-06-27 15:44:50.000000000 +0200 +++ SIMVoleon-2.0.1/simvoleon.cfg.in 2009-07-28 03:35:38.000000000 +0200 @@ -9,5 +9,7 @@ ldflags="@SIMVOLEON_EXTRA_LDFLAGS@" libs="@SIMVOLEON_EXTRA_LIBS@" msvcrt="@SIMVOLEON_MSVC_LIBC@" +datadir="@datadir@" +includedir="@includedir@" compiler="@COMPILER@" compiler_is_gcc=@ac_compiler_gnu@ Index: SIMVoleon.spec =================================================================== RCS file: /cvs/pkgs/rpms/SIMVoleon/devel/SIMVoleon.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- SIMVoleon.spec 24 Jul 2009 16:20:29 -0000 1.13 +++ SIMVoleon.spec 28 Jul 2009 01:51:07 -0000 1.14 @@ -1,5 +1,5 @@ # -# Copyright (c) 2004, 2005, 2006, 2007, 2008 Ralf Corsepius, Ulm, Germany. +# Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009 Ralf Corsepius, Ulm, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -13,7 +13,7 @@ Summary: Volume rendering library for Coin Name: SIMVoleon Version: %{rpmvers} -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -28,6 +28,11 @@ Patch1: SIMVoleon-2.0.1-simacros.diff.bz Patch2: SIMVoleon-2.0.1-libtool.diff.bz2 Patch3: SIMVoleon-2.0.1-gcc4.1.diff +# From upstream +Patch4: SIMVoleon-2.0.1-pivy-hacks.diff +# bash-4 compatibility bugfix +Patch5: SIMVoleon-2.0.1-bash4.0.diff + BuildRequires: Coin2-devel BuildRequires: doxygen BuildRoot: %{_tmppath}/%{name}-%{rpmvers}-%{release}-root-%(%{__id_u} -n) @@ -55,6 +60,8 @@ Development files for SIMVoleon. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 +%patch5 -p1 chmod +x cfg/doxy4win.pl @@ -105,6 +112,9 @@ mv ${RPM_BUILD_ROOT}%{_datadir}/Coin/con %doc %{coin_htmldir}/* %changelog +* Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 +- Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. + * Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Tue Jul 28 01:54:40 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Tue, 28 Jul 2009 01:54:40 +0000 (UTC) Subject: rpms/SIMVoleon/F-11 SIMVoleon-2.0.1-bash4.0.diff, NONE, 1.1 SIMVoleon-2.0.1-pivy-hacks.diff, NONE, 1.1 SIMVoleon.spec, 1.12, 1.13 Message-ID: <20090728015440.793F111C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/SIMVoleon/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30634 Modified Files: SIMVoleon.spec Added Files: SIMVoleon-2.0.1-bash4.0.diff SIMVoleon-2.0.1-pivy-hacks.diff Log Message: * Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 - Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. SIMVoleon-2.0.1-bash4.0.diff: simvoleon-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE SIMVoleon-2.0.1-bash4.0.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2009-07-28 03:40:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:40:11.000000000 +0200 @@ -106,7 +106,7 @@ s/ /-I/ p }' - EOF` +EOF` result= for inc_path in $cppflags; do additem=true SIMVoleon-2.0.1-pivy-hacks.diff: bin/simvoleon-config.in | 4 ++++ simvoleon.cfg.in | 2 ++ 2 files changed, 6 insertions(+) --- NEW FILE SIMVoleon-2.0.1-pivy-hacks.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2003-06-30 14:51:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:39:07.000000000 +0200 @@ -50,6 +50,8 @@ --cxxflags --ldflags --libs + --includedir + --datadir --msvcrt --ac-subst | --ac-desubst @@ -130,6 +132,8 @@ --cxxflags) echo "$cxxflags" ;; --ldflags) echo "$ldflags" ;; --libs) echo "$libs" ;; + --includedir) echo "$includedir" ;; + --datadir) echo "$datadir" ;; --msvcrt) echo "$msvcrt" ;; --ac-subst) shift diff -Naur SIMVoleon-2.0.1.orig/simvoleon.cfg.in SIMVoleon-2.0.1/simvoleon.cfg.in --- SIMVoleon-2.0.1.orig/simvoleon.cfg.in 2003-06-27 15:44:50.000000000 +0200 +++ SIMVoleon-2.0.1/simvoleon.cfg.in 2009-07-28 03:35:38.000000000 +0200 @@ -9,5 +9,7 @@ ldflags="@SIMVOLEON_EXTRA_LDFLAGS@" libs="@SIMVOLEON_EXTRA_LIBS@" msvcrt="@SIMVOLEON_MSVC_LIBC@" +datadir="@datadir@" +includedir="@includedir@" compiler="@COMPILER@" compiler_is_gcc=@ac_compiler_gnu@ Index: SIMVoleon.spec =================================================================== RCS file: /cvs/pkgs/rpms/SIMVoleon/F-11/SIMVoleon.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- SIMVoleon.spec 23 Feb 2009 23:28:09 -0000 1.12 +++ SIMVoleon.spec 28 Jul 2009 01:54:40 -0000 1.13 @@ -1,5 +1,5 @@ # -# Copyright (c) 2004, 2005, 2006, 2007, 2008 Ralf Corsepius, Ulm, Germany. +# Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009 Ralf Corsepius, Ulm, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -13,7 +13,7 @@ Summary: Volume rendering library for Coin Name: SIMVoleon Version: %{rpmvers} -Release: 8%{?dist} +Release: 10%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -28,6 +28,11 @@ Patch1: SIMVoleon-2.0.1-simacros.diff.bz Patch2: SIMVoleon-2.0.1-libtool.diff.bz2 Patch3: SIMVoleon-2.0.1-gcc4.1.diff +# From upstream +Patch4: SIMVoleon-2.0.1-pivy-hacks.diff +# bash-4 compatibility bugfix +Patch5: SIMVoleon-2.0.1-bash4.0.diff + BuildRequires: Coin2-devel BuildRequires: doxygen BuildRoot: %{_tmppath}/%{name}-%{rpmvers}-%{release}-root-%(%{__id_u} -n) @@ -55,6 +60,8 @@ Development files for SIMVoleon. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 +%patch5 -p1 chmod +x cfg/doxy4win.pl @@ -105,6 +112,9 @@ mv ${RPM_BUILD_ROOT}%{_datadir}/Coin/con %doc %{coin_htmldir}/* %changelog +* Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 +- Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From corsepiu at fedoraproject.org Tue Jul 28 01:57:06 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Tue, 28 Jul 2009 01:57:06 +0000 (UTC) Subject: rpms/SIMVoleon/F-10 SIMVoleon-2.0.1-bash4.0.diff, NONE, 1.1 SIMVoleon-2.0.1-pivy-hacks.diff, NONE, 1.1 SIMVoleon.spec, 1.11, 1.12 Message-ID: <20090728015706.6350311C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/SIMVoleon/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31374 Modified Files: SIMVoleon.spec Added Files: SIMVoleon-2.0.1-bash4.0.diff SIMVoleon-2.0.1-pivy-hacks.diff Log Message: * Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 - Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. SIMVoleon-2.0.1-bash4.0.diff: simvoleon-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE SIMVoleon-2.0.1-bash4.0.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2009-07-28 03:40:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:40:11.000000000 +0200 @@ -106,7 +106,7 @@ s/ /-I/ p }' - EOF` +EOF` result= for inc_path in $cppflags; do additem=true SIMVoleon-2.0.1-pivy-hacks.diff: bin/simvoleon-config.in | 4 ++++ simvoleon.cfg.in | 2 ++ 2 files changed, 6 insertions(+) --- NEW FILE SIMVoleon-2.0.1-pivy-hacks.diff --- diff -Naur SIMVoleon-2.0.1.orig/bin/simvoleon-config.in SIMVoleon-2.0.1/bin/simvoleon-config.in --- SIMVoleon-2.0.1.orig/bin/simvoleon-config.in 2003-06-30 14:51:32.000000000 +0200 +++ SIMVoleon-2.0.1/bin/simvoleon-config.in 2009-07-28 03:39:07.000000000 +0200 @@ -50,6 +50,8 @@ --cxxflags --ldflags --libs + --includedir + --datadir --msvcrt --ac-subst | --ac-desubst @@ -130,6 +132,8 @@ --cxxflags) echo "$cxxflags" ;; --ldflags) echo "$ldflags" ;; --libs) echo "$libs" ;; + --includedir) echo "$includedir" ;; + --datadir) echo "$datadir" ;; --msvcrt) echo "$msvcrt" ;; --ac-subst) shift diff -Naur SIMVoleon-2.0.1.orig/simvoleon.cfg.in SIMVoleon-2.0.1/simvoleon.cfg.in --- SIMVoleon-2.0.1.orig/simvoleon.cfg.in 2003-06-27 15:44:50.000000000 +0200 +++ SIMVoleon-2.0.1/simvoleon.cfg.in 2009-07-28 03:35:38.000000000 +0200 @@ -9,5 +9,7 @@ ldflags="@SIMVOLEON_EXTRA_LDFLAGS@" libs="@SIMVOLEON_EXTRA_LIBS@" msvcrt="@SIMVOLEON_MSVC_LIBC@" +datadir="@datadir@" +includedir="@includedir@" compiler="@COMPILER@" compiler_is_gcc=@ac_compiler_gnu@ Index: SIMVoleon.spec =================================================================== RCS file: /cvs/pkgs/rpms/SIMVoleon/F-10/SIMVoleon.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- SIMVoleon.spec 10 Feb 2008 07:17:42 -0000 1.11 +++ SIMVoleon.spec 28 Jul 2009 01:57:06 -0000 1.12 @@ -1,5 +1,5 @@ # -# Copyright (c) 2004, 2005, 2006, 2007, 2008 Ralf Corsepius, Ulm, Germany. +# Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009 Ralf Corsepius, Ulm, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -13,7 +13,7 @@ Summary: Volume rendering library for Coin Name: SIMVoleon Version: %{rpmvers} -Release: 7%{?dist} +Release: 10%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -28,6 +28,11 @@ Patch1: SIMVoleon-2.0.1-simacros.diff.bz Patch2: SIMVoleon-2.0.1-libtool.diff.bz2 Patch3: SIMVoleon-2.0.1-gcc4.1.diff +# From upstream +Patch4: SIMVoleon-2.0.1-pivy-hacks.diff +# bash-4 compatibility bugfix +Patch5: SIMVoleon-2.0.1-bash4.0.diff + BuildRequires: Coin2-devel BuildRequires: doxygen BuildRoot: %{_tmppath}/%{name}-%{rpmvers}-%{release}-root-%(%{__id_u} -n) @@ -55,6 +60,8 @@ Development files for SIMVoleon. %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 +%patch5 -p1 chmod +x cfg/doxy4win.pl @@ -105,6 +112,9 @@ mv ${RPM_BUILD_ROOT}%{_datadir}/Coin/con %doc %{coin_htmldir}/* %changelog +* Tue Jul 28 2009 Ralf Cors?pius - 2.0.1-10 +- Add SIMVoleon-2.0.1-pivy-hacks.diff, SIMVoleon-2.0.1-bash4.0.diff. + * Sun Feb 10 2008 Ralf Cors?pius - 2.0.1-8 - Rebuild for gcc43. - Spec-file cosmetics. From wtogami at fedoraproject.org Tue Jul 28 01:58:20 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Tue, 28 Jul 2009 01:58:20 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.87,1.88 Message-ID: <20090728015820.912B311C00D5@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31701 Modified Files: pidgin.spec Log Message: Fix libidn build failure Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- pidgin.spec 27 Jul 2009 19:00:15 -0000 1.87 +++ pidgin.spec 28 Jul 2009 01:58:20 -0000 1.88 @@ -30,6 +30,8 @@ %define api_docs 0 %define krb4_removed 0 %define nss_md2_disabled 0 +%define vv_support 0 +%define libidn_support 0 # RHEL4: Use ALSA aplay to output sounds because it lacks gstreamer %if 0%{?fedora} < 5 @@ -61,7 +63,7 @@ %define perl_embed_separated 1 %define api_docs 1 %endif -# F11+: New NSS (3.12.3) disables weaker MD2 algorithm +# F10+: New NSS (3.12.3) disables weaker MD2 algorithm %if 0%{?fedora} >= 10 %define nss_md2_disabled 1 %endif @@ -69,6 +71,10 @@ %if 0%{?fedora} >= 11 %define vv_support 1 %endif +# F11+: libidn for punycode domain support +%if 0%{?fedora} >= 11 +%define libidn_support 1 +%endif # F12+: krb4 removed %if 0%{?fedora} >= 12 %define krb4_removed 1 @@ -77,7 +83,7 @@ Name: pidgin Version: 2.6.0 %define snapshot 20090727 -Release: 0.7.%{snapshot}%{?dist} +Release: 0.8.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -208,6 +214,10 @@ BuildRequires: perl(ExtUtils::Embed) %if %{vv_support} BuildRequires: farsight2-devel %endif +# libidn punycode domain support (F11+) +%if %{libidn_support} +BuildRequires: libidn-devel +%endif %if %{api_docs} BuildRequires: doxygen @@ -402,6 +412,9 @@ SWITCHES="--with-extraversion=%{release} %if ! %{meanwhile_integration} SWITCHES="$SWITCHES --disable-meanwhile" %endif +%if ! %{libidn_support} + SWITCHES="$SWITCHES --disable-idn" +%endif # FC5+ automatic -fstack-protector-all switch export RPM_OPT_FLAGS=${RPM_OPT_FLAGS//-fstack-protector/-fstack-protector-all} @@ -600,7 +613,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Mon Jul 27 2009 Warren Togami 2.6.0-0.7.20090727 +* Mon Jul 27 2009 Warren Togami 2.6.0-0.8.20090727 - new snapshot * Mon Jul 27 2009 Stu Tomlinson 2.6.0-0.6.20090721 From oget at fedoraproject.org Tue Jul 28 02:15:37 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 28 Jul 2009 02:15:37 +0000 (UTC) Subject: rpms/guitarix/devel .cvsignore, 1.3, 1.4 guitarix.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090728021537.63C4F11C00D5@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/guitarix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5754 Modified Files: .cvsignore guitarix.spec sources Log Message: * Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 - Update to 0.05.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Jun 2009 19:55:57 -0000 1.3 +++ .cvsignore 28 Jul 2009 02:15:36 -0000 1.4 @@ -1 +1 @@ -guitarix-0.04.6-1.tar.bz2 +guitarix-0.05.0-1.tar.bz2 Index: guitarix.spec =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/devel/guitarix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- guitarix.spec 25 Jul 2009 01:53:06 -0000 1.3 +++ guitarix.spec 28 Jul 2009 02:15:37 -0000 1.4 @@ -1,6 +1,6 @@ Name: guitarix -Version: 0.04.6 -Release: 2%{?dist} +Version: 0.05.0 +Release: 1%{?dist} Summary: Mono amplifier to JACK Group: Applications/Multimedia License: GPLv2+ @@ -45,7 +45,7 @@ sed -i 's|lib/|%{_lib}/|' wscript sed -i 's|\.png||' %{name}.desktop %build -./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" +./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" --ladspadir=%{_libdir}/ladspa ./waf -vvv build %{?_smp_mflags} %install @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 +- Update to 0.05.0 + * Fri Jul 24 2009 Fedora Release Engineering - 0.04.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Jun 2009 19:55:57 -0000 1.3 +++ sources 28 Jul 2009 02:15:37 -0000 1.4 @@ -1 +1 @@ -e172669f64596a238bc6a926ed42e7b5 guitarix-0.04.6-1.tar.bz2 +9f2543abbaca3af59bde0ec0ade15658 guitarix-0.05.0-1.tar.bz2 From toshio at fedoraproject.org Tue Jul 28 02:20:56 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Tue, 28 Jul 2009 02:20:56 +0000 (UTC) Subject: rpms/python-fedora/F-11 .cvsignore, 1.32, 1.33 python-fedora.spec, 1.41, 1.42 sources, 1.33, 1.34 python-fedora-0.3.12.1-bugzilla_email.patch, 1.1, NONE Message-ID: <20090728022056.9BA7E11C00D5@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-fedora/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7437 Modified Files: .cvsignore python-fedora.spec sources Removed Files: python-fedora-0.3.12.1-bugzilla_email.patch Log Message: * Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 - New release 0.3.14. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-11/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 14 Jun 2009 13:13:37 -0000 1.32 +++ .cvsignore 28 Jul 2009 02:20:55 -0000 1.33 @@ -1 +1 @@ -python-fedora-0.3.13.1.tar.gz +python-fedora-0.3.14.tar.gz Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-11/python-fedora.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- python-fedora.spec 14 Jun 2009 13:13:38 -0000 1.41 +++ python-fedora.spec 28 Jul 2009 02:20:55 -0000 1.42 @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-fedora -Version: 0.3.13.1 +Version: 0.3.14 Release: 1%{?dist} Summary: Python modules for talking to Fedora Infrastructure Services @@ -16,7 +16,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools-devel BuildRequires: python-paver >= 1.0 BuildRequires: python-sphinx -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 9 || 0%{?rhel} > 5 BuildRequires: python-cherrypy2 %else BuildRequires: python-cherrypy @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 +- New release 0.3.14. + * Sat Jun 13 2009 Toshio Kuratomi - 0.3.13.1-1 - Merge 0.3.12.1 and 0.3.13 releases together. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-11/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 14 Jun 2009 13:13:38 -0000 1.33 +++ sources 28 Jul 2009 02:20:56 -0000 1.34 @@ -1 +1 @@ -c42d24ef3fb28b15a3a4f2ad93d407c8 python-fedora-0.3.13.1.tar.gz +68ad34a2b353b22d2987444943cbc69f python-fedora-0.3.14.tar.gz --- python-fedora-0.3.12.1-bugzilla_email.patch DELETED --- From sparks at fedoraproject.org Tue Jul 28 02:21:36 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 28 Jul 2009 02:21:36 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, 1.4, 1.5 import.log, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090728022136.DE91811C00D5@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7746/devel Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Hopefully repaired the Vendor fields that Koji didn't like. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/fedora-security-guide-en-US.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-security-guide-en-US.spec 24 Jul 2009 22:38:20 -0000 1.4 +++ fedora-security-guide-en-US.spec 28 Jul 2009 02:21:36 -0000 1.5 @@ -5,8 +5,6 @@ %if %{HTMLVIEW} %define viewer htmlview -%define vendor redhat- -%define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US @@ -18,9 +16,8 @@ License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: publican -BuildRequires: desktop-file-utils +BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRequires: publican desktop-file-utils BuildRequires: publican-fedora @@ -53,7 +50,7 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/appl cat > %{name}.desktop <<'EOF' [Desktop Entry] -Name=fedora 11: security-guide +Name=fedora security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg @@ -63,7 +60,7 @@ Encoding=UTF-8 Terminal=false EOF -desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT @@ -71,12 +68,13 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* -%{_datadir}/applications/%{?vendor}%{name}.desktop +%{_datadir}/applications/%{name}.desktop %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.0-16 +* Fri Jul 24 2009 Fedora Release Engineering rel-eng at lists.fedoraproject.org 1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Eric Christensen sparks at fedoraproject.org 1.0-15 - Added "desktop-file-utils" to BUILDREQUIRES on the spec Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 15 Jul 2009 00:01:23 -0000 1.3 +++ import.log 28 Jul 2009 02:21:36 -0000 1.4 @@ -1,3 +1,4 @@ fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247542430 fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247615483 fedora-security-guide-en-US-1_0-15_fc11:HEAD:fedora-security-guide-en-US-1.0-15.fc11.src.rpm:1247616043 +fedora-security-guide-en-US-1_0-16_fc11:HEAD:fedora-security-guide-en-US-1.0-16.fc11.src.rpm:1248747665 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Jul 2009 00:01:23 -0000 1.4 +++ sources 28 Jul 2009 02:21:36 -0000 1.5 @@ -1 +1 @@ -40b9c81f394472c4df52091a16ae8193 fedora-security-guide-en-US-1.0.tgz +7488b14be717d8b0acb279d040701b64 fedora-security-guide-en-US-1.0.tgz From toshio at fedoraproject.org Tue Jul 28 02:23:43 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Tue, 28 Jul 2009 02:23:43 +0000 (UTC) Subject: rpms/python-fedora/F-11 python-fedora.spec,1.42,1.43 Message-ID: <20090728022343.5BAC011C00D5@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-fedora/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8552 Modified Files: python-fedora.spec Log Message: Sync with devel. Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-11/python-fedora.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- python-fedora.spec 28 Jul 2009 02:20:55 -0000 1.42 +++ python-fedora.spec 28 Jul 2009 02:23:43 -0000 1.43 @@ -68,6 +68,9 @@ rm -rf %{buildroot} * Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 - New release 0.3.14. +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Toshio Kuratomi - 0.3.13.1-1 - Merge 0.3.12.1 and 0.3.13 releases together. From sparks at fedoraproject.org Tue Jul 28 02:25:36 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 28 Jul 2009 02:25:36 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, 1.5, 1.6 import.log, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090728022536.21B9011C00D5@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9217/devel Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Fixed vendor errors in SPEC that Koji did not like. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/fedora-security-guide-en-US.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fedora-security-guide-en-US.spec 28 Jul 2009 02:21:36 -0000 1.5 +++ fedora-security-guide-en-US.spec 28 Jul 2009 02:25:35 -0000 1.6 @@ -9,7 +9,7 @@ Name: fedora-security-guide-en-US Version: 1.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication @@ -71,6 +71,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-17 +- Repaired vendor information in SPEC. + + * Fri Jul 24 2009 Fedora Release Engineering rel-eng at lists.fedoraproject.org 1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 28 Jul 2009 02:21:36 -0000 1.4 +++ import.log 28 Jul 2009 02:25:35 -0000 1.5 @@ -2,3 +2,4 @@ fedora-security-guide-en-US-1_0-14_fc11: fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247615483 fedora-security-guide-en-US-1_0-15_fc11:HEAD:fedora-security-guide-en-US-1.0-15.fc11.src.rpm:1247616043 fedora-security-guide-en-US-1_0-16_fc11:HEAD:fedora-security-guide-en-US-1.0-16.fc11.src.rpm:1248747665 +fedora-security-guide-en-US-1_0-17_fc11:HEAD:fedora-security-guide-en-US-1.0-17.fc11.src.rpm:1248747911 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 28 Jul 2009 02:21:36 -0000 1.5 +++ sources 28 Jul 2009 02:25:35 -0000 1.6 @@ -1 +1 @@ -7488b14be717d8b0acb279d040701b64 fedora-security-guide-en-US-1.0.tgz +22065b4df0ca71af7601d8939c876c23 fedora-security-guide-en-US-1.0.tgz From oget at fedoraproject.org Tue Jul 28 02:25:55 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 28 Jul 2009 02:25:55 +0000 (UTC) Subject: rpms/guitarix/F-11 .cvsignore, 1.3, 1.4 guitarix.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090728022555.3AC4E11C00D5@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/guitarix/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9472 Modified Files: .cvsignore guitarix.spec sources Log Message: * Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 - Update to 0.05.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Jun 2009 19:57:27 -0000 1.3 +++ .cvsignore 28 Jul 2009 02:25:55 -0000 1.4 @@ -1 +1 @@ -guitarix-0.04.6-1.tar.bz2 +guitarix-0.05.0-1.tar.bz2 Index: guitarix.spec =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-11/guitarix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- guitarix.spec 24 Jun 2009 19:57:27 -0000 1.2 +++ guitarix.spec 28 Jul 2009 02:25:55 -0000 1.3 @@ -1,5 +1,5 @@ Name: guitarix -Version: 0.04.6 +Version: 0.05.0 Release: 1%{?dist} Summary: Mono amplifier to JACK Group: Applications/Multimedia @@ -45,7 +45,7 @@ sed -i 's|lib/|%{_lib}/|' wscript sed -i 's|\.png||' %{name}.desktop %build -./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" +./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" --ladspadir=%{_libdir}/ladspa ./waf -vvv build %{?_smp_mflags} %install @@ -70,6 +70,12 @@ rm -rf %{buildroot} %{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 +- Update to 0.05.0 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.04.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Orcan Ogetbil - 0.04.6-1 - Update to 0.04.6 (build system uses waf now) - License is GPLv2+ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Jun 2009 19:57:27 -0000 1.3 +++ sources 28 Jul 2009 02:25:55 -0000 1.4 @@ -1 +1 @@ -e172669f64596a238bc6a926ed42e7b5 guitarix-0.04.6-1.tar.bz2 +9f2543abbaca3af59bde0ec0ade15658 guitarix-0.05.0-1.tar.bz2 From oget at fedoraproject.org Tue Jul 28 02:26:28 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 28 Jul 2009 02:26:28 +0000 (UTC) Subject: rpms/guitarix/F-10 .cvsignore, 1.3, 1.4 guitarix.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090728022628.8517F11C00D5@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/guitarix/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9683 Modified Files: .cvsignore guitarix.spec sources Log Message: * Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 - Update to 0.05.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Jun 2009 19:58:57 -0000 1.3 +++ .cvsignore 28 Jul 2009 02:26:28 -0000 1.4 @@ -1 +1 @@ -guitarix-0.04.6-1.tar.bz2 +guitarix-0.05.0-1.tar.bz2 Index: guitarix.spec =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-10/guitarix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- guitarix.spec 24 Jun 2009 19:58:57 -0000 1.2 +++ guitarix.spec 28 Jul 2009 02:26:28 -0000 1.3 @@ -1,5 +1,5 @@ Name: guitarix -Version: 0.04.6 +Version: 0.05.0 Release: 1%{?dist} Summary: Mono amplifier to JACK Group: Applications/Multimedia @@ -45,7 +45,7 @@ sed -i 's|lib/|%{_lib}/|' wscript sed -i 's|\.png||' %{name}.desktop %build -./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" +./waf -vvv configure --prefix=%{_prefix} --cxxflags="%{optflags}" --ladspadir=%{_libdir}/ladspa ./waf -vvv build %{?_smp_mflags} %install @@ -70,6 +70,12 @@ rm -rf %{buildroot} %{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Orcan Ogetbil - 0.05.0-1 +- Update to 0.05.0 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.04.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Orcan Ogetbil - 0.04.6-1 - Update to 0.04.6 (build system uses waf now) - License is GPLv2+ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Jun 2009 19:58:57 -0000 1.3 +++ sources 28 Jul 2009 02:26:28 -0000 1.4 @@ -1 +1 @@ -e172669f64596a238bc6a926ed42e7b5 guitarix-0.04.6-1.tar.bz2 +9f2543abbaca3af59bde0ec0ade15658 guitarix-0.05.0-1.tar.bz2 From toshio at fedoraproject.org Tue Jul 28 02:27:13 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Tue, 28 Jul 2009 02:27:13 +0000 (UTC) Subject: rpms/python-fedora/EL-5 .cvsignore, 1.23, 1.24 python-fedora.spec, 1.26, 1.27 sources, 1.24, 1.25 Message-ID: <20090728022713.05BA111C00D5@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-fedora/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9858/EL-5 Modified Files: .cvsignore python-fedora.spec sources Log Message: * Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 - New release 0.3.14. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/EL-5/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 14 Jun 2009 13:13:36 -0000 1.23 +++ .cvsignore 28 Jul 2009 02:27:12 -0000 1.24 @@ -1 +1 @@ -python-fedora-0.3.13.1.tar.gz +python-fedora-0.3.14.tar.gz Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/EL-5/python-fedora.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- python-fedora.spec 14 Jun 2009 13:13:36 -0000 1.26 +++ python-fedora.spec 28 Jul 2009 02:27:12 -0000 1.27 @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-fedora -Version: 0.3.13.1 +Version: 0.3.14 Release: 1%{?dist} Summary: Python modules for talking to Fedora Infrastructure Services @@ -16,7 +16,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools-devel BuildRequires: python-paver >= 1.0 BuildRequires: python-sphinx -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 9 || 0%{?rhel} > 5 BuildRequires: python-cherrypy2 %else BuildRequires: python-cherrypy @@ -65,6 +65,12 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 +- New release 0.3.14. + +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Toshio Kuratomi - 0.3.13.1-1 - Merge 0.3.12.1 and 0.3.13 releases together. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/EL-5/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 14 Jun 2009 13:13:36 -0000 1.24 +++ sources 28 Jul 2009 02:27:12 -0000 1.25 @@ -1 +1 @@ -c42d24ef3fb28b15a3a4f2ad93d407c8 python-fedora-0.3.13.1.tar.gz +68ad34a2b353b22d2987444943cbc69f python-fedora-0.3.14.tar.gz From toshio at fedoraproject.org Tue Jul 28 02:27:13 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Tue, 28 Jul 2009 02:27:13 +0000 (UTC) Subject: rpms/python-fedora/F-10 .cvsignore, 1.32, 1.33 python-fedora.spec, 1.36, 1.37 sources, 1.33, 1.34 Message-ID: <20090728022713.3BFBC11C00D5@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-fedora/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9858/F-10 Modified Files: .cvsignore python-fedora.spec sources Log Message: * Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 - New release 0.3.14. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-10/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 14 Jun 2009 13:13:37 -0000 1.32 +++ .cvsignore 28 Jul 2009 02:27:13 -0000 1.33 @@ -1 +1 @@ -python-fedora-0.3.13.1.tar.gz +python-fedora-0.3.14.tar.gz Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-10/python-fedora.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- python-fedora.spec 14 Jun 2009 13:13:37 -0000 1.36 +++ python-fedora.spec 28 Jul 2009 02:27:13 -0000 1.37 @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-fedora -Version: 0.3.13.1 +Version: 0.3.14 Release: 1%{?dist} Summary: Python modules for talking to Fedora Infrastructure Services @@ -16,7 +16,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools-devel BuildRequires: python-paver >= 1.0 BuildRequires: python-sphinx -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 9 || 0%{?rhel} > 5 BuildRequires: python-cherrypy2 %else BuildRequires: python-cherrypy @@ -65,6 +65,12 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 +- New release 0.3.14. + +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Toshio Kuratomi - 0.3.13.1-1 - Merge 0.3.12.1 and 0.3.13 releases together. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/F-10/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 14 Jun 2009 13:13:37 -0000 1.33 +++ sources 28 Jul 2009 02:27:13 -0000 1.34 @@ -1 +1 @@ -c42d24ef3fb28b15a3a4f2ad93d407c8 python-fedora-0.3.13.1.tar.gz +68ad34a2b353b22d2987444943cbc69f python-fedora-0.3.14.tar.gz From toshio at fedoraproject.org Tue Jul 28 02:27:13 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Tue, 28 Jul 2009 02:27:13 +0000 (UTC) Subject: rpms/python-fedora/devel .cvsignore, 1.33, 1.34 python-fedora.spec, 1.43, 1.44 sources, 1.34, 1.35 Message-ID: <20090728022713.88E1C11C00D5@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9858/devel Modified Files: .cvsignore python-fedora.spec sources Log Message: * Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 - New release 0.3.14. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 14 Jun 2009 13:02:13 -0000 1.33 +++ .cvsignore 28 Jul 2009 02:27:13 -0000 1.34 @@ -1 +1 @@ -python-fedora-0.3.13.1.tar.gz +python-fedora-0.3.14.tar.gz Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/python-fedora.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- python-fedora.spec 26 Jul 2009 20:22:31 -0000 1.43 +++ python-fedora.spec 28 Jul 2009 02:27:13 -0000 1.44 @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-fedora -Version: 0.3.13.1 -Release: 2%{?dist} +Version: 0.3.14 +Release: 1%{?dist} Summary: Python modules for talking to Fedora Infrastructure Services Group: Development/Languages @@ -16,7 +16,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools-devel BuildRequires: python-paver >= 1.0 BuildRequires: python-sphinx -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 9 || 0%{?rhel} > 5 BuildRequires: python-cherrypy2 %else BuildRequires: python-cherrypy @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Mon Jul 27 2009 Toshio Kuratomi - 0.3.14-1 +- New release 0.3.14. + * Sun Jul 26 2009 Fedora Release Engineering - 0.3.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 14 Jun 2009 13:02:13 -0000 1.34 +++ sources 28 Jul 2009 02:27:13 -0000 1.35 @@ -1 +1 @@ -c42d24ef3fb28b15a3a4f2ad93d407c8 python-fedora-0.3.13.1.tar.gz +68ad34a2b353b22d2987444943cbc69f python-fedora-0.3.14.tar.gz From bojan at fedoraproject.org Tue Jul 28 02:58:27 2009 From: bojan at fedoraproject.org (bojan) Date: Tue, 28 Jul 2009 02:58:27 +0000 (UTC) Subject: rpms/apr-api-docs/devel apr-api-docs.spec,1.15,1.16 Message-ID: <20090728025827.5836D11C00D5@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr-api-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19619 Modified Files: apr-api-docs.spec Log Message: Bump up to 1.3.7. Index: apr-api-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-api-docs/devel/apr-api-docs.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- apr-api-docs.spec 24 Jul 2009 16:59:33 -0000 1.15 +++ apr-api-docs.spec 28 Jul 2009 02:58:25 -0000 1.16 @@ -1,6 +1,6 @@ Name: apr-api-docs -Version: 1.3.6 -Release: 2%{?dist} +Version: 1.3.7 +Release: 1%{?dist} Summary: Apache Portable Runtime API documentation Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/apr-%{version}/api-docs/* %changelog +* Tue Jul 28 2009 Bojan Smojver 1.3.7-1 +- Bump up to 1.3.7 + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From sparks at fedoraproject.org Tue Jul 28 02:59:04 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 28 Jul 2009 02:59:04 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/F-11 fedora-security-guide-en-US.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728025904.3418811C00D5@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19865/F-11 Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Fixed "vendor" issues in SPEC. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11/fedora-security-guide-en-US.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fedora-security-guide-en-US.spec 14 Jul 2009 03:14:48 -0000 1.1 +++ fedora-security-guide-en-US.spec 28 Jul 2009 02:59:03 -0000 1.2 @@ -5,21 +5,19 @@ %if %{HTMLVIEW} %define viewer htmlview -%define vendor redhat- -%define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US Version: 1.0 -Release: 14%{?dist} +Release: 17%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: publican +BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRequires: publican desktop-file-utils BuildRequires: publican-fedora @@ -52,7 +50,7 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/appl cat > %{name}.desktop <<'EOF' [Desktop Entry] -Name=fedora 11: security-guide +Name=fedora security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg @@ -62,7 +60,7 @@ Encoding=UTF-8 Terminal=false EOF -desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT @@ -70,9 +68,21 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* -%{_datadir}/applications/%{?vendor}%{name}.desktop +%{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-17 +- Repaired vendor information in SPEC. + + +* Fri Jul 24 2009 Fedora Release Engineering rel-eng at lists.fedoraproject.org 1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + + +* Tue Jul 14 2009 Eric Christensen sparks at fedoraproject.org 1.0-15 +- Added "desktop-file-utils" to BUILDREQUIRES on the spec + + * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Jul 2009 03:14:48 -0000 1.1 +++ import.log 28 Jul 2009 02:59:03 -0000 1.2 @@ -1 +1,2 @@ fedora-security-guide-en-US-1_0-14_fc11:F-11:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247541206 +fedora-security-guide-en-US-1_0-17_fc11:F-11:fedora-security-guide-en-US-1.0-17.fc11.src.rpm:1248749919 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jul 2009 03:14:48 -0000 1.2 +++ sources 28 Jul 2009 02:59:03 -0000 1.3 @@ -1 +1 @@ -87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz +22065b4df0ca71af7601d8939c876c23 fedora-security-guide-en-US-1.0.tgz From sparks at fedoraproject.org Tue Jul 28 03:00:59 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 28 Jul 2009 03:00:59 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/F-10 fedora-security-guide-en-US.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728030059.E06F911C00D5@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20608/F-10 Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Fixed "vendor" in SPEC. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10/fedora-security-guide-en-US.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fedora-security-guide-en-US.spec 14 Jul 2009 03:17:00 -0000 1.1 +++ fedora-security-guide-en-US.spec 28 Jul 2009 03:00:59 -0000 1.2 @@ -5,21 +5,19 @@ %if %{HTMLVIEW} %define viewer htmlview -%define vendor redhat- -%define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US Version: 1.0 -Release: 14%{?dist} +Release: 17%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: publican +BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRequires: publican desktop-file-utils BuildRequires: publican-fedora @@ -52,7 +50,7 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/appl cat > %{name}.desktop <<'EOF' [Desktop Entry] -Name=fedora 11: security-guide +Name=fedora security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg @@ -62,7 +60,7 @@ Encoding=UTF-8 Terminal=false EOF -desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT @@ -70,9 +68,21 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* -%{_datadir}/applications/%{?vendor}%{name}.desktop +%{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-17 +- Repaired vendor information in SPEC. + + +* Fri Jul 24 2009 Fedora Release Engineering rel-eng at lists.fedoraproject.org 1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + + +* Tue Jul 14 2009 Eric Christensen sparks at fedoraproject.org 1.0-15 +- Added "desktop-file-utils" to BUILDREQUIRES on the spec + + * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Jul 2009 03:17:00 -0000 1.1 +++ import.log 28 Jul 2009 03:00:59 -0000 1.2 @@ -1 +1,2 @@ fedora-security-guide-en-US-1_0-14_fc11:F-10:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247541394 +fedora-security-guide-en-US-1_0-17_fc11:F-10:fedora-security-guide-en-US-1.0-17.fc11.src.rpm:1248750029 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jul 2009 03:17:00 -0000 1.2 +++ sources 28 Jul 2009 03:00:59 -0000 1.3 @@ -1 +1 @@ -87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz +22065b4df0ca71af7601d8939c876c23 fedora-security-guide-en-US-1.0.tgz From suravee at fedoraproject.org Tue Jul 28 03:12:46 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Tue, 28 Jul 2009 03:12:46 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/F-11 ca-fix-basename.patch, NONE, 1.1 ca-fix-oprofile-ibs-check.patch, NONE, 1.1 ca-use-lbfd.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 CodeAnalyst-gui.spec, 1.5, 1.6 ca-use-oprofile-default-buffersize.patch, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728031246.7E2F711C00D5@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24367 Modified Files: .cvsignore CodeAnalyst-gui.spec ca-use-oprofile-default-buffersize.patch sources Added Files: ca-fix-basename.patch ca-fix-oprofile-ibs-check.patch ca-use-lbfd.patch Log Message: - Update source - Update patch0 - Add Patch1 (ca-fix-oprofile-ibs-check.patch) - Add Patch2 (ca-fix-basename.patch) - Add Patch3 (ca-use-lbfd.patch) ca-fix-basename.patch: configure.ac | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE ca-fix-basename.patch --- --- CodeAnalyst-gui-2.8.54/configure.ac 2009-07-06 15:27:20.000000000 -0500 +++ CodeAnalyst-gui-2.8.54-fix-basename/configure.ac 2009-07-17 16:43:50.905147989 -0500 @@ -35,6 +35,9 @@ AC_PREREQ(2.13) #Initialize Libtool AM_PROG_LIBTOOL +# Fix issue with basename in gcc-4.4 +AC_CHECK_DECLS([basename], [], [], [[#include ]]) + AM_INIT_AUTOMAKE #Default installation directory ca-fix-oprofile-ibs-check.patch: oprofile_interface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE ca-fix-oprofile-ibs-check.patch --- Fix BUG163976: Cannot profile IBS when build with OProfile-0.9.5 with option --with-oprofile --- Index: src/ca/gui/oprofile_interface.cpp =================================================================== --- src/ca/gui/oprofile_interface.cpp (revision 16837) +++ src/ca/gui/oprofile_interface.cpp (working copy) @@ -1144,15 +1144,16 @@ #if (OP_VERSION_BASE == 0x00903) command = QString(OP_BINDIR) + - "opcontrol --help 2>&1 " + + "/opcontrol --help 2>&1 " + "| grep ibs-fetch 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif #if (OP_VERSION_BASE >= 0x00905) + command = QString(OP_BINDIR) + - "oprofiled --help 2>&1 " + + "/oprofiled --help 2>&1 " + "| grep ext-feature 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif ca-use-lbfd.patch: libbfd.m4 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) --- NEW FILE ca-use-lbfd.patch --- Index: m4/libbfd.m4 =================================================================== --- m4/libbfd.m4 (revision 16845) +++ m4/libbfd.m4 (working copy) @@ -33,16 +33,16 @@ AC_DEFUN([CHECK_LBFD], [ - LIBBFD=`/sbin/ldconfig -p | \ - grep "libbfd" | \ - awk '{split($[]1,a," "); \ - sub (/lib/,"", [a[1]]) ; \ - sub(/.so/,"",[a[1]]); \ - print [a[1]]; \ - exit;}' 2> /dev/null` - if test "$LIBBFD" != "" ; then - BFD_LIB="$LIBBFD" - else +dnl LIBBFD=`/sbin/ldconfig -p | \ +dnl grep "libbfd" | \ +dnl awk '{split($[]1,a," "); \ +dnl sub (/lib/,"", [a[1]]) ; \ +dnl sub(/.so/,"",[a[1]]); \ +dnl print [a[1]]; \ +dnl exit;}' 2> /dev/null` +dnl if test "$LIBBFD" != "" ; then +dnl BFD_LIB="$LIBBFD" +dnl else BFD_LIB="bfd" - fi +dnl fi ]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Mar 2009 16:36:06 -0000 1.2 +++ .cvsignore 28 Jul 2009 03:12:45 -0000 1.3 @@ -1 +1 @@ -CodeAnalyst-gui-2.8.38.tar.gz +CodeAnalyst-gui-2.8.54.tar.gz Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-11/CodeAnalyst-gui.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- CodeAnalyst-gui.spec 23 Jul 2009 23:41:54 -0000 1.5 +++ CodeAnalyst-gui.spec 28 Jul 2009 03:12:46 -0000 1.6 @@ -1,12 +1,12 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui -Version: 2.8.38 -Release: 12%{?dist} +Version: 2.8.54 +Release: 1%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux -Source0: http://ftp-developer.amd.com/user/ssuthiku/CALinuxSnapshots/%{name}-%{version}.tar.gz +Source0: http://ftp-developer.amd.com/user/ssuthiku/Releases/%{name}-%{version}.tar.gz Source1: CodeAnalyst-gui.desktop Source2: DiffAnalyst-gui.desktop @@ -14,17 +14,14 @@ Source2: DiffAnalyst-gui.desktop # since using stock oprofile daemon/driver Patch0: ca-use-oprofile-default-buffersize.patch -# This patch allows us to use the DESTDIR variable in install section. -Patch1: ca-destdir.patch +# Fix OProfile-0.9.5 IBS feature check +Patch1: ca-fix-oprofile-ibs-check.patch -# This patch allows to succesfully build with --disable-dwarf -Patch2: ca-disable-dwarf.patch +# Fix basename +Patch2: ca-fix-basename.patch -# This patch allows to CA to be configured with any libdwarf -Patch3: ca-configure-libdwarf.patch - -# This patch fix the splash screen -Patch4: ca-fix-splash.patch +# Force using lbfd +Patch3: ca-use-lbfd.patch Requires: popt Requires: binutils @@ -66,10 +63,9 @@ profile comparison, DiffAnalayst. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b .ca-use-oprofile-default-buffersize -%patch1 -p0 -b .ca-destdir -%patch2 -p0 -b .ca-disable-dwarf -%patch3 -p1 -b .ca-configure-libdwarf -%patch4 -p1 -b .ca-fix-splash +%patch1 -p0 -b .ca-fix-oprofile-ibs-check +%patch2 -p1 -b .ca-fix-basename +%patch3 -p0 -b .ca-use-lbfd %build @@ -165,6 +161,15 @@ fi %changelog +* Mon Jul 27 2009 - Suravee Suthikulpanit +- 2.8.54-1 +- Update new release +- Update source +- Update patch0 +- Add Patch1 (ca-fix-oprofile-ibs-check.patch) +- Add Patch2 (ca-fix-basename.patch) +- Add Patch3 (ca-use-lbfd.patch) + * Thu Jul 23 2009 - Suravee Suthikulpanit - 2.8.38-12 - Rebuild with new libbfd-2.19.51.0.2-17.fc11.so ca-use-oprofile-default-buffersize.patch: atuneoptions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: ca-use-oprofile-default-buffersize.patch =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-11/ca-use-oprofile-default-buffersize.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ca-use-oprofile-default-buffersize.patch 16 Mar 2009 16:36:07 -0000 1.1 +++ ca-use-oprofile-default-buffersize.patch 28 Jul 2009 03:12:46 -0000 1.2 @@ -1,7 +1,7 @@ -diff -paurN CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h ---- CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h 2009-02-02 12:42:55.000000000 -0600 -+++ CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h 2009-02-03 11:41:56.000000000 -0600 -@@ -114,9 +114,9 @@ enum ChartDensityShownType +diff -paurN CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h +--- CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h 2009-06-10 15:45:23.000000000 -0500 ++++ CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h 2009-07-08 13:29:14.000000000 -0500 +@@ -117,9 +117,9 @@ enum ChartDensityShownType enum BuffDefaultSizeType { @@ -13,4 +13,4 @@ diff -paurN CodeAnalyst-gui-2.8.38.org/s + OP_DEFAULT_CPU_BUFFER_SIZE = 8192 }; - #define OPT_IMPORT_TYPE "/CodeAnalyst/Key/ImportType" + #define OPT_IMPORT_TYPE OPT_DATA_PREFIX "/ImportType" Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Mar 2009 16:36:07 -0000 1.2 +++ sources 28 Jul 2009 03:12:46 -0000 1.3 @@ -1 +1 @@ -2fb7944b3db827360d4d0e4b9355854c CodeAnalyst-gui-2.8.38.tar.gz +ebd48e2c8498d45bfcc774d54dfdf789 CodeAnalyst-gui-2.8.54.tar.gz From suravee at fedoraproject.org Tue Jul 28 03:50:14 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Tue, 28 Jul 2009 03:50:14 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/F-10 ca-fix-basename.patch, NONE, 1.1 ca-fix-oprofile-ibs-check.patch, NONE, 1.1 ca-use-lbfd.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 CodeAnalyst-gui.spec, 1.2, 1.3 ca-use-oprofile-default-buffersize.patch, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728035014.9E88B11C00D5@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2305 Modified Files: .cvsignore CodeAnalyst-gui.spec ca-use-oprofile-default-buffersize.patch sources Added Files: ca-fix-basename.patch ca-fix-oprofile-ibs-check.patch ca-use-lbfd.patch Log Message: - Update source - Update ca-use-oprofile-default-buffersize.patch - Add ca-fix-oprofile-ibs-check.patch - Add ca-fix-basename.patch - Add ca-use-lbfd.patch ca-fix-basename.patch: configure.ac | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE ca-fix-basename.patch --- --- CodeAnalyst-gui-2.8.54/configure.ac 2009-07-06 15:27:20.000000000 -0500 +++ CodeAnalyst-gui-2.8.54-fix-basename/configure.ac 2009-07-17 16:43:50.905147989 -0500 @@ -35,6 +35,9 @@ AC_PREREQ(2.13) #Initialize Libtool AM_PROG_LIBTOOL +# Fix issue with basename in gcc-4.4 +AC_CHECK_DECLS([basename], [], [], [[#include ]]) + AM_INIT_AUTOMAKE #Default installation directory ca-fix-oprofile-ibs-check.patch: oprofile_interface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE ca-fix-oprofile-ibs-check.patch --- Fix BUG163976: Cannot profile IBS when build with OProfile-0.9.5 with option --with-oprofile --- Index: src/ca/gui/oprofile_interface.cpp =================================================================== --- src/ca/gui/oprofile_interface.cpp (revision 16837) +++ src/ca/gui/oprofile_interface.cpp (working copy) @@ -1144,15 +1144,16 @@ #if (OP_VERSION_BASE == 0x00903) command = QString(OP_BINDIR) + - "opcontrol --help 2>&1 " + + "/opcontrol --help 2>&1 " + "| grep ibs-fetch 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif #if (OP_VERSION_BASE >= 0x00905) + command = QString(OP_BINDIR) + - "oprofiled --help 2>&1 " + + "/oprofiled --help 2>&1 " + "| grep ext-feature 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif ca-use-lbfd.patch: libbfd.m4 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) --- NEW FILE ca-use-lbfd.patch --- Index: m4/libbfd.m4 =================================================================== --- m4/libbfd.m4 (revision 16845) +++ m4/libbfd.m4 (working copy) @@ -33,16 +33,16 @@ AC_DEFUN([CHECK_LBFD], [ - LIBBFD=`/sbin/ldconfig -p | \ - grep "libbfd" | \ - awk '{split($[]1,a," "); \ - sub (/lib/,"", [a[1]]) ; \ - sub(/.so/,"",[a[1]]); \ - print [a[1]]; \ - exit;}' 2> /dev/null` - if test "$LIBBFD" != "" ; then - BFD_LIB="$LIBBFD" - else +dnl LIBBFD=`/sbin/ldconfig -p | \ +dnl grep "libbfd" | \ +dnl awk '{split($[]1,a," "); \ +dnl sub (/lib/,"", [a[1]]) ; \ +dnl sub(/.so/,"",[a[1]]); \ +dnl print [a[1]]; \ +dnl exit;}' 2> /dev/null` +dnl if test "$LIBBFD" != "" ; then +dnl BFD_LIB="$LIBBFD" +dnl else BFD_LIB="bfd" - fi +dnl fi ]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Mar 2009 16:38:20 -0000 1.2 +++ .cvsignore 28 Jul 2009 03:50:14 -0000 1.3 @@ -1 +1,2 @@ CodeAnalyst-gui-2.8.38.tar.gz +CodeAnalyst-gui-2.8.54.tar.gz Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-10/CodeAnalyst-gui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- CodeAnalyst-gui.spec 6 Apr 2009 17:01:36 -0000 1.2 +++ CodeAnalyst-gui.spec 28 Jul 2009 03:50:14 -0000 1.3 @@ -1,12 +1,12 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui -Version: 2.8.38 -Release: 10%{?dist} +Version: 2.8.54 +Release: 1%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux -Source0: http://ftp-developer.amd.com/user/ssuthiku/CALinuxSnapshots/%{name}-%{version}.tar.gz +Source0: http://ftp-developer.amd.com/user/ssuthiku/Releases/%{name}-%{version}.tar.gz Source1: CodeAnalyst-gui.desktop Source2: DiffAnalyst-gui.desktop @@ -14,17 +14,14 @@ Source2: DiffAnalyst-gui.desktop # since using stock oprofile daemon/driver Patch0: ca-use-oprofile-default-buffersize.patch -# This patch allows us to use the DESTDIR variable in install section. -Patch1: ca-destdir.patch +# Fix OProfile-0.9.5 IBS feature check +Patch1: ca-fix-oprofile-ibs-check.patch -# This patch allows to succesfully build with --disable-dwarf -Patch2: ca-disable-dwarf.patch +# Fix basename +Patch2: ca-fix-basename.patch -# This patch allows to CA to be configured with any libdwarf -Patch3: ca-configure-libdwarf.patch - -# This patch fix the splash screen -Patch4: ca-fix-splash.patch +# Force using lbfd +Patch3: ca-use-lbfd.patch Requires: popt Requires: binutils @@ -66,10 +63,9 @@ profile comparison, DiffAnalayst. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b .ca-use-oprofile-default-buffersize -%patch1 -p0 -b .ca-destdir -%patch2 -p0 -b .ca-disable-dwarf -%patch3 -p1 -b .ca-configure-libdwarf -%patch4 -p1 -b .ca-fix-splash +%patch1 -p0 -b .ca-fix-oprofile-ibs-check +%patch2 -p1 -b .ca-fix-basename +%patch3 -p0 -b .ca-use-lbfd %build @@ -165,6 +161,15 @@ fi %changelog +* Mon Jul 27 2009 - Suravee Suthikulpanit +- 2.8.54-1 +- Update new release +- Update source +- Update patch0 +- Add Patch1 (ca-fix-oprofile-ibs-check.patch) +- Add Patch2 (ca-fix-basename.patch) +- Add Patch3 (ca-use-lbfd.patch) + * Mon Apr 6 2009 - Suravee Suthikulpanit - 2.8.38-10 - Remove --disable-dwarf from configuration ca-use-oprofile-default-buffersize.patch: atuneoptions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: ca-use-oprofile-default-buffersize.patch =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-10/ca-use-oprofile-default-buffersize.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ca-use-oprofile-default-buffersize.patch 16 Mar 2009 16:38:20 -0000 1.1 +++ ca-use-oprofile-default-buffersize.patch 28 Jul 2009 03:50:14 -0000 1.2 @@ -1,7 +1,7 @@ -diff -paurN CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h ---- CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h 2009-02-02 12:42:55.000000000 -0600 -+++ CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h 2009-02-03 11:41:56.000000000 -0600 -@@ -114,9 +114,9 @@ enum ChartDensityShownType +diff -paurN CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h +--- CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h 2009-06-10 15:45:23.000000000 -0500 ++++ CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h 2009-07-08 13:29:14.000000000 -0500 +@@ -117,9 +117,9 @@ enum ChartDensityShownType enum BuffDefaultSizeType { @@ -13,4 +13,4 @@ diff -paurN CodeAnalyst-gui-2.8.38.org/s + OP_DEFAULT_CPU_BUFFER_SIZE = 8192 }; - #define OPT_IMPORT_TYPE "/CodeAnalyst/Key/ImportType" + #define OPT_IMPORT_TYPE OPT_DATA_PREFIX "/ImportType" Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Mar 2009 16:38:20 -0000 1.2 +++ sources 28 Jul 2009 03:50:14 -0000 1.3 @@ -1 +1,2 @@ 2fb7944b3db827360d4d0e4b9355854c CodeAnalyst-gui-2.8.38.tar.gz +ebd48e2c8498d45bfcc774d54dfdf789 CodeAnalyst-gui-2.8.54.tar.gz From cweyl at fedoraproject.org Tue Jul 28 03:51:47 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Tue, 28 Jul 2009 03:51:47 +0000 (UTC) Subject: rpms/perl-Catalyst-Devel/devel .cvsignore, 1.8, 1.9 perl-Catalyst-Devel.spec, 1.15, 1.16 sources, 1.8, 1.9 Message-ID: <20090728035147.9A61011C00D5@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Catalyst-Devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3166 Modified Files: .cvsignore perl-Catalyst-Devel.spec sources Log Message: * Mon Jul 27 2009 Chris Weyl 1.19-1 - auto-update to 1.19 (by cpan-spec-update 0.01) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Devel/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 Jun 2009 02:31:42 -0000 1.8 +++ .cvsignore 28 Jul 2009 03:51:47 -0000 1.9 @@ -1 +1 @@ -Catalyst-Devel-1.18.tar.gz +Catalyst-Devel-1.19.tar.gz Index: perl-Catalyst-Devel.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Devel/devel/perl-Catalyst-Devel.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Catalyst-Devel.spec 26 Jul 2009 04:10:17 -0000 1.15 +++ perl-Catalyst-Devel.spec 28 Jul 2009 03:51:47 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Devel -Version: 1.18 -Release: 4%{?dist} +Version: 1.19 +Release: 1%{?dist} Summary: Catalyst Development Tools License: GPL+ or Artistic Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf %{buildroot} %exclude %{perl_vendorlib}/Catalyst/Restarter/Win32.pm %changelog +* Mon Jul 27 2009 Chris Weyl 1.19-1 +- auto-update to 1.19 (by cpan-spec-update 0.01) + * Sat Jul 25 2009 Fedora Release Engineering - 1.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Devel/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 Jun 2009 02:31:42 -0000 1.8 +++ sources 28 Jul 2009 03:51:47 -0000 1.9 @@ -1 +1 @@ -2671d57155c9ed93e3acd249bbf1cac0 Catalyst-Devel-1.18.tar.gz +1f3ba33a7f962f122c4b42a59530d09d Catalyst-Devel-1.19.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 03:56:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:36 +0000 Subject: [pkgdb] callweaver: itamarjp has requested approveacls Message-ID: <20090728035636.7949A10F8B0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on callweaver (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:43 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchbugzilla Message-ID: <20090728035643.6CE6210F8B4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on callweaver (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:44 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchcommits Message-ID: <20090728035644.AACC210F8B7@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on callweaver (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:45 +0000 Subject: [pkgdb] callweaver: itamarjp has requested commit Message-ID: <20090728035645.15FBA10F8BA@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on callweaver (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:48 +0000 Subject: [pkgdb] callweaver: itamarjp has requested approveacls Message-ID: <20090728035648.6EA4A10F8BD@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on callweaver (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:56 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchbugzilla Message-ID: <20090728035656.3B40F10F89D@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on callweaver (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:56 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchcommits Message-ID: <20090728035656.D82E710F8C0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on callweaver (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:57 +0000 Subject: [pkgdb] callweaver: itamarjp has requested commit Message-ID: <20090728035657.174AA10F8C4@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on callweaver (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:56:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:56:59 +0000 Subject: [pkgdb] callweaver: itamarjp has requested approveacls Message-ID: <20090728035659.EADC310F8CA@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on callweaver (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:06 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchcommits Message-ID: <20090728035706.3AC0310F8A1@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on callweaver (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:06 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchbugzilla Message-ID: <20090728035706.6153510F8CC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on callweaver (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:06 +0000 Subject: [pkgdb] callweaver: itamarjp has requested commit Message-ID: <20090728035706.ECD9510F8CF@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on callweaver (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:12 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchcommits Message-ID: <20090728035712.DF3D610F8D4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on callweaver (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:13 +0000 Subject: [pkgdb] callweaver: itamarjp has requested commit Message-ID: <20090728035713.ACE1E10F8D6@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on callweaver (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:18 +0000 Subject: [pkgdb] callweaver: itamarjp has requested approveacls Message-ID: <20090728035717.F1E0510F8B5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on callweaver (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:19 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchbugzilla Message-ID: <20090728035719.BD15F10F8D9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on callweaver (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 03:57:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 03:57:10 +0000 Subject: [pkgdb] callweaver: itamarjp has requested approveacls Message-ID: <20090728035710.0B43210F8D2@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on callweaver (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 04:03:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:03:36 +0000 Subject: [pkgdb] openarena: sundaram has requested watchbugzilla Message-ID: <20090728040337.7755B10F8B8@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on openarena (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:03:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:03:39 +0000 Subject: [pkgdb] openarena: sundaram has requested approveacls Message-ID: <20090728040339.305D210F8BD@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on openarena (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:03:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:03:39 +0000 Subject: [pkgdb] openarena: sundaram has requested commit Message-ID: <20090728040339.5740710F8D0@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on openarena (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:03:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:03:40 +0000 Subject: [pkgdb] openarena: sundaram has requested watchcommits Message-ID: <20090728040340.D52FE10F8D4@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on openarena (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From mclasen at fedoraproject.org Tue Jul 28 04:04:42 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:04:42 +0000 (UTC) Subject: rpms/cheese/devel .cvsignore, 1.31, 1.32 cheese.spec, 1.56, 1.57 sources, 1.31, 1.32 Message-ID: <20090728040442.D039911C0427@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/cheese/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25818 Modified Files: .cvsignore cheese.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 14 Jul 2009 03:39:51 -0000 1.31 +++ .cvsignore 28 Jul 2009 04:04:42 -0000 1.32 @@ -1 +1 @@ -cheese-2.27.4.tar.bz2 +cheese-2.27.5.tar.bz2 Index: cheese.spec =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/cheese.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- cheese.spec 24 Jul 2009 18:52:49 -0000 1.56 +++ cheese.spec 28 Jul 2009 04:04:42 -0000 1.57 @@ -1,6 +1,6 @@ Name: cheese -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Application for taking pictures and movies from a webcam Group: Amusements/Graphics @@ -123,6 +123,9 @@ fi %{_datadir}/dbus-1/services/org.gnome.Cheese.service %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 14 Jul 2009 03:39:51 -0000 1.31 +++ sources 28 Jul 2009 04:04:42 -0000 1.32 @@ -1 +1 @@ -f6062cced52a8ace0ed60c172fdc39d3 cheese-2.27.4.tar.bz2 +b484ec16704538f4afffe6593a596fa7 cheese-2.27.5.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 04:07:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:07:16 +0000 (UTC) Subject: rpms/gnome-keyring/devel .cvsignore, 1.62, 1.63 gnome-keyring.spec, 1.126, 1.127 sources, 1.62, 1.63 Message-ID: <20090728040716.C2CD711C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27045 Modified Files: .cvsignore gnome-keyring.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 14 Jul 2009 03:36:06 -0000 1.62 +++ .cvsignore 28 Jul 2009 04:07:16 -0000 1.63 @@ -1 +1 @@ -gnome-keyring-2.27.4.tar.bz2 +gnome-keyring-2.27.5.tar.bz2 Index: gnome-keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/gnome-keyring.spec,v retrieving revision 1.126 retrieving revision 1.127 diff -u -p -r1.126 -r1.127 --- gnome-keyring.spec 25 Jul 2009 00:40:00 -0000 1.126 +++ gnome-keyring.spec 28 Jul 2009 04:07:16 -0000 1.127 @@ -7,8 +7,8 @@ Summary: Framework for managing passwords and other secrets Name: gnome-keyring -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gnome-keyring/2.27/gnome-keyring-%{version}.tar.bz2 @@ -19,7 +19,6 @@ BuildRequires: glib2-devel >= %{glib2_ve BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: GConf2-devel BuildRequires: dbus-devel >= %{dbus_version} -BuildRequires: hal-devel >= %{hal_version} BuildRequires: libgcrypt-devel >= %{gcrypt_version} BuildRequires: libtasn1-devel >= %{libtasn1_version} BuildRequires: pam-devel @@ -142,6 +141,9 @@ fi %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/sources,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- sources 14 Jul 2009 03:36:06 -0000 1.62 +++ sources 28 Jul 2009 04:07:16 -0000 1.63 @@ -1 +1 @@ -04a94e96f75805e47a6b90a938a7862e gnome-keyring-2.27.4.tar.bz2 +51f0cba377ca864c20e88b0aab44f6c3 gnome-keyring-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:07:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:07:55 +0000 Subject: [pkgdb] openarena: sundaram has requested watchcommits Message-ID: <20090728040755.7C7B610F899@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on openarena (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:07:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:07:56 +0000 Subject: [pkgdb] openarena: sundaram has requested watchbugzilla Message-ID: <20090728040756.5B90710F89E@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on openarena (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:07:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:07:57 +0000 Subject: [pkgdb] openarena: sundaram has requested approveacls Message-ID: <20090728040757.2764810F8B0@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on openarena (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:08:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:08:02 +0000 Subject: [pkgdb] openarena: sundaram has requested commit Message-ID: <20090728040802.89D2E10F8B4@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on openarena (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:08:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:08:24 +0000 Subject: [pkgdb] openarena: sundaram has requested watchbugzilla Message-ID: <20090728040824.EB10210F89C@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on openarena (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:08:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:08:25 +0000 Subject: [pkgdb] openarena: sundaram has requested watchcommits Message-ID: <20090728040825.421AD10F89F@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on openarena (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:08:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:08:26 +0000 Subject: [pkgdb] openarena: sundaram has requested commit Message-ID: <20090728040826.BD5EB10F8B5@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on openarena (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:08:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:08:27 +0000 Subject: [pkgdb] openarena: sundaram has requested approveacls Message-ID: <20090728040827.EC39510F8BA@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on openarena (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:04 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040904.7D5C810F89F@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on openarena (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:04 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040904.99BE810F8B1@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on openarena (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:05 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040905.EF03B10F8B6@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on openarena (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:12 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040912.DCAB110F8BD@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on openarena (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:07 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040907.0C54510F8BC@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on openarena (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:13 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040913.5B5FC10F8C0@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on openarena (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:13 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040913.C9AC010F8C4@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on openarena (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:16 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040916.2F7FD10F897@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on openarena (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:17 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040917.875A210F8C8@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on openarena (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:16 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040916.EF0F010F8C5@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on openarena (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:17 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040917.CE4F710F8CB@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on openarena (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Tue Jul 28 04:09:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:09:18 +0000 Subject: [pkgdb] openarena had acl change status Message-ID: <20090728040918.0A17210F8CF@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on openarena (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From mclasen at fedoraproject.org Tue Jul 28 04:16:44 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:16:44 +0000 (UTC) Subject: rpms/libsoup/devel .cvsignore, 1.52, 1.53 libsoup.spec, 1.96, 1.97 sources, 1.52, 1.53 Message-ID: <20090728041644.1D06611C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30212 Modified Files: .cvsignore libsoup.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/.cvsignore,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- .cvsignore 13 Jul 2009 17:48:34 -0000 1.52 +++ .cvsignore 28 Jul 2009 04:16:43 -0000 1.53 @@ -1 +1 @@ -libsoup-2.27.4.tar.bz2 +libsoup-2.27.5.tar.bz2 Index: libsoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/libsoup.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- libsoup.spec 25 Jul 2009 08:39:48 -0000 1.96 +++ libsoup.spec 28 Jul 2009 04:16:43 -0000 1.97 @@ -3,8 +3,8 @@ ### Abstract ### Name: libsoup -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} License: LGPLv2 Group: Development/Libraries Summary: Soup, an HTTP library implementation @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/%{name}-2.4 %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 13 Jul 2009 17:48:34 -0000 1.52 +++ sources 28 Jul 2009 04:16:43 -0000 1.53 @@ -1 +1 @@ -c9b676621f1b89245ec5cec0c67198b7 libsoup-2.27.4.tar.bz2 +3ae21aec88358a88b5552388446eb62e libsoup-2.27.5.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 04:21:13 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:21:13 +0000 (UTC) Subject: rpms/brasero/devel .cvsignore, 1.24, 1.25 brasero.spec, 1.55, 1.56 sources, 1.24, 1.25 Message-ID: <20090728042113.079D411C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31564 Modified Files: .cvsignore brasero.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 14 Jul 2009 05:08:01 -0000 1.24 +++ .cvsignore 28 Jul 2009 04:21:12 -0000 1.25 @@ -1 +1 @@ -brasero-2.27.4.tar.bz2 +brasero-2.27.5.tar.bz2 Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- brasero.spec 27 Jul 2009 02:59:18 -0000 1.55 +++ brasero.spec 28 Jul 2009 04:21:12 -0000 1.56 @@ -1,7 +1,7 @@ Name: brasero -Version: 2.27.4 -Release: 3%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Gnome CD/DVD burning application Group: Applications/Multimedia License: GPLv2+ @@ -203,7 +203,10 @@ fi %changelog -* Sun Jul 26 2009 Matthias Clasne - 2.27.4-3 +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + +* Sun Jul 26 2009 Matthias Clasen - 2.27.4-3 - Move ChangeLog to -devel to save some space * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 14 Jul 2009 05:08:01 -0000 1.24 +++ sources 28 Jul 2009 04:21:12 -0000 1.25 @@ -1 +1 @@ -825e3b34232cf9dc2d6100a6bf6b80f6 brasero-2.27.4.tar.bz2 +f995c48b2826e7ed83623889d8914799 brasero-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:23:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:23:13 +0000 Subject: [pkgdb] python-iwlib was added for jpopelka Message-ID: <20090728042313.7BF5610F891@bastion2.fedora.phx.redhat.com> kevin has added Package python-iwlib with summary Wireless settings python bindings kevin has approved Package python-iwlib kevin has added a Fedora devel branch for python-iwlib with an owner of jpopelka kevin has approved python-iwlib in Fedora devel kevin has approved Package python-iwlib kevin has set commit to Approved for 107427 on python-iwlib (Fedora devel) kevin has set checkout to Approved for 107427 on python-iwlib (Fedora devel) kevin has set build to Approved for 107427 on python-iwlib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-iwlib From pkgdb at fedoraproject.org Tue Jul 28 04:23:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:23:15 +0000 Subject: [pkgdb] python-iwlib summary updated by kevin Message-ID: <20090728042315.E973910F89C@bastion2.fedora.phx.redhat.com> kevin set package python-iwlib summary to Wireless settings python bindings To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-iwlib From pkgdb at fedoraproject.org Tue Jul 28 04:23:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:23:15 +0000 Subject: [pkgdb] python-iwlib (Fedora, 11) updated by kevin Message-ID: <20090728042316.0499610F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for python-iwlib kevin has set commit to Approved for 107427 on python-iwlib (Fedora 11) kevin has set checkout to Approved for 107427 on python-iwlib (Fedora 11) kevin has set build to Approved for 107427 on python-iwlib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-iwlib From kevin at fedoraproject.org Tue Jul 28 04:23:24 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:23:24 +0000 (UTC) Subject: rpms/python-iwlib - New directory Message-ID: <20090728042324.1AD0511C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-iwlib In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB32289/rpms/python-iwlib Log Message: Directory /cvs/pkgs/rpms/python-iwlib added to the repository From kevin at fedoraproject.org Tue Jul 28 04:23:24 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:23:24 +0000 (UTC) Subject: rpms/python-iwlib/devel - New directory Message-ID: <20090728042324.46D8411C0427@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-iwlib/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB32289/rpms/python-iwlib/devel Log Message: Directory /cvs/pkgs/rpms/python-iwlib/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:23:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:23:29 +0000 (UTC) Subject: rpms/python-iwlib Makefile,NONE,1.1 Message-ID: <20090728042329.DE54E11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-iwlib In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB32289/rpms/python-iwlib Added Files: Makefile Log Message: Setup of module python-iwlib --- NEW FILE Makefile --- # Top level Makefile for module python-iwlib all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:23:30 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:23:30 +0000 (UTC) Subject: rpms/python-iwlib/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728042330.2E2B911C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-iwlib/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB32289/rpms/python-iwlib/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-iwlib --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-iwlib # $Id: Makefile,v 1.1 2009/07/28 04:23:30 kevin Exp $ NAME := python-iwlib SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 28 04:23:51 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:23:51 +0000 (UTC) Subject: rpms/gcalctool/devel .cvsignore, 1.63, 1.64 gcalctool.spec, 1.94, 1.95 sources, 1.64, 1.65 Message-ID: <20090728042351.F0AAF11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gcalctool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32463 Modified Files: .cvsignore gcalctool.spec sources Log Message: 5.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 14 Jul 2009 16:06:55 -0000 1.63 +++ .cvsignore 28 Jul 2009 04:23:51 -0000 1.64 @@ -1 +1 @@ -gcalctool-5.27.4.tar.bz2 +gcalctool-5.27.5.tar.bz2 Index: gcalctool.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/gcalctool.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- gcalctool.spec 24 Jul 2009 23:34:13 -0000 1.94 +++ gcalctool.spec 28 Jul 2009 04:23:51 -0000 1.95 @@ -1,6 +1,6 @@ Name: gcalctool -Version: 5.27.4 -Release: 2%{?dist} +Version: 5.27.5 +Release: 1%{?dist} Summary: A desktop calculator Group: Applications/System @@ -98,11 +98,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Matthias Clasen - 5.27.5-1 +- Update to 5.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 5.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Jul 14 2009 Matthias Clasen - 5.27.4-1 -- Update ot 5.27.4 +- Update to 5.27.4 * Tue Jun 16 2009 Matthias Clasen - 5.27.3-1 - Update to 5.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/sources,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sources 14 Jul 2009 16:06:55 -0000 1.64 +++ sources 28 Jul 2009 04:23:51 -0000 1.65 @@ -1 +1 @@ -e06916d4e1fd65428e59585626d085f7 gcalctool-5.27.4.tar.bz2 +abaaedfdba2f5905d9c57ae73105b84f gcalctool-5.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:24:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:24:15 +0000 Subject: [pkgdb] opencryptoki was added for michich Message-ID: <20090728042415.E84B210F897@bastion2.fedora.phx.redhat.com> kevin has added Package opencryptoki with summary Implementation of the PKCS#11 (Cryptoki) specification v2.11 kevin has approved Package opencryptoki kevin has added a Fedora devel branch for opencryptoki with an owner of michich kevin has approved opencryptoki in Fedora devel kevin has approved Package opencryptoki kevin has set commit to Approved for 107427 on opencryptoki (Fedora devel) kevin has set checkout to Approved for 107427 on opencryptoki (Fedora devel) kevin has set build to Approved for 107427 on opencryptoki (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencryptoki From pkgdb at fedoraproject.org Tue Jul 28 04:24:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:24:19 +0000 Subject: [pkgdb] opencryptoki summary updated by kevin Message-ID: <20090728042420.06DE710F8B6@bastion2.fedora.phx.redhat.com> kevin set package opencryptoki summary to Implementation of the PKCS#11 (Cryptoki) specification v2.11 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencryptoki From pkgdb at fedoraproject.org Tue Jul 28 04:24:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:24:19 +0000 Subject: [pkgdb] opencryptoki (Fedora, 10) updated by kevin Message-ID: <20090728042420.10CE610F8BB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for opencryptoki kevin has set commit to Approved for 107427 on opencryptoki (Fedora 10) kevin has set checkout to Approved for 107427 on opencryptoki (Fedora 10) kevin has set build to Approved for 107427 on opencryptoki (Fedora 10) kevin approved watchbugzilla on opencryptoki (Fedora 10) for sharkcz kevin approved watchcommits on opencryptoki (Fedora 10) for sharkcz kevin approved commit on opencryptoki (Fedora 10) for sharkcz kevin approved build on opencryptoki (Fedora 10) for sharkcz kevin approved approveacls on opencryptoki (Fedora 10) for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencryptoki From pkgdb at fedoraproject.org Tue Jul 28 04:24:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:24:20 +0000 Subject: [pkgdb] opencryptoki (Fedora, 10) updated by kevin Message-ID: <20090728042420.2228910F8BF@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on opencryptoki (Fedora devel) for sharkcz kevin approved watchcommits on opencryptoki (Fedora devel) for sharkcz kevin approved commit on opencryptoki (Fedora devel) for sharkcz kevin approved build on opencryptoki (Fedora devel) for sharkcz kevin approved approveacls on opencryptoki (Fedora devel) for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencryptoki From pkgdb at fedoraproject.org Tue Jul 28 04:24:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:24:20 +0000 Subject: [pkgdb] opencryptoki (Fedora, 10) updated by kevin Message-ID: <20090728042420.406CC10F8C4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for opencryptoki kevin has set commit to Approved for 107427 on opencryptoki (Fedora 11) kevin has set checkout to Approved for 107427 on opencryptoki (Fedora 11) kevin has set build to Approved for 107427 on opencryptoki (Fedora 11) kevin approved watchbugzilla on opencryptoki (Fedora 11) for sharkcz kevin approved watchcommits on opencryptoki (Fedora 11) for sharkcz kevin approved commit on opencryptoki (Fedora 11) for sharkcz kevin approved build on opencryptoki (Fedora 11) for sharkcz kevin approved approveacls on opencryptoki (Fedora 11) for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencryptoki From kevin at fedoraproject.org Tue Jul 28 04:24:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:24:31 +0000 (UTC) Subject: rpms/opencryptoki - New directory Message-ID: <20090728042431.1C17211C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/opencryptoki In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskLo316/rpms/opencryptoki Log Message: Directory /cvs/pkgs/rpms/opencryptoki added to the repository From kevin at fedoraproject.org Tue Jul 28 04:24:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:24:31 +0000 (UTC) Subject: rpms/opencryptoki/devel - New directory Message-ID: <20090728042431.3313D11C0439@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/opencryptoki/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskLo316/rpms/opencryptoki/devel Log Message: Directory /cvs/pkgs/rpms/opencryptoki/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:24:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:24:37 +0000 (UTC) Subject: rpms/opencryptoki Makefile,NONE,1.1 Message-ID: <20090728042437.0CD2311C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/opencryptoki In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskLo316/rpms/opencryptoki Added Files: Makefile Log Message: Setup of module opencryptoki --- NEW FILE Makefile --- # Top level Makefile for module opencryptoki all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:24:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:24:37 +0000 (UTC) Subject: rpms/opencryptoki/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728042437.5168B11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/opencryptoki/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskLo316/rpms/opencryptoki/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module opencryptoki --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: opencryptoki # $Id: Makefile,v 1.1 2009/07/28 04:24:37 kevin Exp $ NAME := opencryptoki SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From whot at fedoraproject.org Tue Jul 28 04:25:30 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Tue, 28 Jul 2009 04:25:30 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/devel .cvsignore, 1.16, 1.17 sources, 1.16, 1.17 xorg-x11-drv-synaptics.spec, 1.32, 1.33 Message-ID: <20090728042530.169C611C00D4@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv672 Modified Files: .cvsignore sources xorg-x11-drv-synaptics.spec Log Message: * Tue Jul 28 2009 Peter Hutterer 1.1.99-5.20090728 - Update to today's git master. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 17 Jul 2009 03:53:44 -0000 1.16 +++ .cvsignore 28 Jul 2009 04:25:29 -0000 1.17 @@ -1 +1 @@ -xf86-input-synaptics-20090717.tar.bz2 +xf86-input-synaptics-20090728.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 17 Jul 2009 03:53:44 -0000 1.16 +++ sources 28 Jul 2009 04:25:29 -0000 1.17 @@ -1 +1 @@ -abda1493b0c5d43f614322b4a72be8e3 xf86-input-synaptics-20090717.tar.bz2 +d68ac190ec16f7f21bdf1c009a475f40 xf86-input-synaptics-20090728.tar.bz2 Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/xorg-x11-drv-synaptics.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-synaptics.spec 27 Jul 2009 08:33:30 -0000 1.32 +++ xorg-x11-drv-synaptics.spec 28 Jul 2009 04:25:29 -0000 1.33 @@ -2,12 +2,12 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/input -%define gitdate 20090717 +%define gitdate 20090728 Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver Version: 1.1.99 -Release: 4.%{gitdate}%{?dist} +Release: 5.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -121,6 +121,9 @@ Development files for the Synaptics Touc %changelog +* Tue Jul 28 2009 Peter Hutterer 1.1.99-5.20090728 +- Update to today's git master. + * Mon Jul 27 2009 Fedora Release Engineering - 1.1.99-4.20090717 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Tue Jul 28 04:25:28 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:25:28 +0000 (UTC) Subject: rpms/file-roller/devel .cvsignore, 1.88, 1.89 file-roller.spec, 1.150, 1.151 sources, 1.88, 1.89 Message-ID: <20090728042528.1C17A11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/file-roller/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv721 Modified Files: .cvsignore file-roller.spec sources Log Message: 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/.cvsignore,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- .cvsignore 14 Jul 2009 03:25:22 -0000 1.88 +++ .cvsignore 28 Jul 2009 04:25:27 -0000 1.89 @@ -1 +1 @@ -file-roller-2.27.2.tar.bz2 +file-roller-2.27.3.tar.bz2 Index: file-roller.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/file-roller.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- file-roller.spec 24 Jul 2009 22:45:00 -0000 1.150 +++ file-roller.spec 28 Jul 2009 04:25:27 -0000 1.151 @@ -10,8 +10,8 @@ Summary: Tool for viewing and creating archives Name: file-roller -Version: 2.27.2 -Release: 2%{?dist} +Version: 2.27.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Archiving URL: http://download.gnome.org/sources/file-roller/ @@ -128,6 +128,9 @@ fi %{_datadir}/icons/hicolor/scalable/apps/file-roller.svg %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.3-1 +- Update to 2.27.3 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/sources,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- sources 14 Jul 2009 03:25:22 -0000 1.88 +++ sources 28 Jul 2009 04:25:27 -0000 1.89 @@ -1 +1 @@ -ccaff12d5242a5856079ff55a5c97020 file-roller-2.27.2.tar.bz2 +d4032f199e1eaf4025440f083dd1f521 file-roller-2.27.3.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:28:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:28:25 +0000 Subject: [pkgdb] php-phpSmug was added for pfrields Message-ID: <20090728042825.9E29010F891@bastion2.fedora.phx.redhat.com> kevin has added Package php-phpSmug with summary PHP wrapper for the SmugMug API kevin has approved Package php-phpSmug kevin has added a Fedora devel branch for php-phpSmug with an owner of pfrields kevin has approved php-phpSmug in Fedora devel kevin has approved Package php-phpSmug kevin has set commit to Approved for 107427 on php-phpSmug (Fedora devel) kevin has set checkout to Approved for 107427 on php-phpSmug (Fedora devel) kevin has set build to Approved for 107427 on php-phpSmug (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-phpSmug From pkgdb at fedoraproject.org Tue Jul 28 04:28:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:28:29 +0000 Subject: [pkgdb] php-phpSmug summary updated by kevin Message-ID: <20090728042829.3664E10F8B1@bastion2.fedora.phx.redhat.com> kevin set package php-phpSmug summary to PHP wrapper for the SmugMug API To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-phpSmug From pkgdb at fedoraproject.org Tue Jul 28 04:28:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:28:29 +0000 Subject: [pkgdb] php-phpSmug (Fedora, 11) updated by kevin Message-ID: <20090728042829.4625010F8B8@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on php-phpSmug (Fedora devel) for ke4qqq kevin approved watchcommits on php-phpSmug (Fedora devel) for ke4qqq kevin approved commit on php-phpSmug (Fedora devel) for ke4qqq kevin approved build on php-phpSmug (Fedora devel) for ke4qqq kevin approved approveacls on php-phpSmug (Fedora devel) for ke4qqq kevin approved watchbugzilla on php-phpSmug (Fedora devel) for sparks kevin approved watchcommits on php-phpSmug (Fedora devel) for sparks kevin approved commit on php-phpSmug (Fedora devel) for sparks kevin approved build on php-phpSmug (Fedora devel) for sparks kevin approved approveacls on php-phpSmug (Fedora devel) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-phpSmug From kevin at fedoraproject.org Tue Jul 28 04:28:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:28:37 +0000 (UTC) Subject: rpms/php-phpSmug - New directory Message-ID: <20090728042837.19ED011C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-phpSmug In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskV1727/rpms/php-phpSmug Log Message: Directory /cvs/pkgs/rpms/php-phpSmug added to the repository From kevin at fedoraproject.org Tue Jul 28 04:28:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:28:37 +0000 (UTC) Subject: rpms/php-phpSmug/devel - New directory Message-ID: <20090728042837.3CC8711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-phpSmug/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskV1727/rpms/php-phpSmug/devel Log Message: Directory /cvs/pkgs/rpms/php-phpSmug/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 28 04:28:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:28:29 +0000 Subject: [pkgdb] php-phpSmug (Fedora, 11) updated by kevin Message-ID: <20090728042829.54FAB10F8BD@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for php-phpSmug kevin has set commit to Approved for 107427 on php-phpSmug (Fedora 11) kevin has set checkout to Approved for 107427 on php-phpSmug (Fedora 11) kevin has set build to Approved for 107427 on php-phpSmug (Fedora 11) kevin approved watchbugzilla on php-phpSmug (Fedora 11) for ke4qqq kevin approved watchcommits on php-phpSmug (Fedora 11) for ke4qqq kevin approved commit on php-phpSmug (Fedora 11) for ke4qqq kevin approved build on php-phpSmug (Fedora 11) for ke4qqq kevin approved approveacls on php-phpSmug (Fedora 11) for ke4qqq kevin approved watchbugzilla on php-phpSmug (Fedora 11) for sparks kevin approved watchcommits on php-phpSmug (Fedora 11) for sparks kevin approved commit on php-phpSmug (Fedora 11) for sparks kevin approved build on php-phpSmug (Fedora 11) for sparks kevin approved approveacls on php-phpSmug (Fedora 11) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-phpSmug From kevin at fedoraproject.org Tue Jul 28 04:28:43 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:28:43 +0000 (UTC) Subject: rpms/php-phpSmug Makefile,NONE,1.1 Message-ID: <20090728042843.187A011C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-phpSmug In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskV1727/rpms/php-phpSmug Added Files: Makefile Log Message: Setup of module php-phpSmug --- NEW FILE Makefile --- # Top level Makefile for module php-phpSmug all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:28:43 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:28:43 +0000 (UTC) Subject: rpms/php-phpSmug/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728042843.4B38111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-phpSmug/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvskV1727/rpms/php-phpSmug/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-phpSmug --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-phpSmug # $Id: Makefile,v 1.1 2009/07/28 04:28:43 kevin Exp $ NAME := php-phpSmug SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 28 04:28:56 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:28:56 +0000 (UTC) Subject: rpms/vino/devel .cvsignore, 1.48, 1.49 sources, 1.48, 1.49 vino.spec, 1.99, 1.100 Message-ID: <20090728042856.A209611C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1482 Modified Files: .cvsignore sources vino.spec Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 13 Apr 2009 17:21:11 -0000 1.48 +++ .cvsignore 28 Jul 2009 04:28:56 -0000 1.49 @@ -1 +1 @@ -vino-2.26.1.tar.bz2 +vino-2.27.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 13 Apr 2009 17:21:11 -0000 1.48 +++ sources 28 Jul 2009 04:28:56 -0000 1.49 @@ -1 +1 @@ -f6f5122b0644eb72b4cfaf202b3c8b1e vino-2.26.1.tar.bz2 +070c96efa0337c8d92f6d84ec876e74c vino-2.27.5.tar.bz2 Index: vino.spec =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/vino.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- vino.spec 27 Jul 2009 06:54:10 -0000 1.99 +++ vino.spec 28 Jul 2009 04:28:56 -0000 1.100 @@ -8,10 +8,10 @@ Summary: A remote desktop system for GNOME Name: vino -Version: 2.26.1 -Release: 6%{?dist} +Version: 2.27.5 +Release: 1%{?dist} URL: http://www.gnome.org -Source0: http://download.gnome.org/sources/vino/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/vino/2.27/%{name}-%{version}.tar.bz2 License: GPLv2+ Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -113,6 +113,9 @@ fi %{_sysconfdir}/xdg/autostart/vino-server.desktop %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Sun Jul 26 2009 Fedora Release Engineering - 2.26.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 28 04:30:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:30:01 +0000 Subject: [pkgdb] autoarchive was added for fab Message-ID: <20090728043001.4B87510F899@bastion2.fedora.phx.redhat.com> kevin has added Package autoarchive with summary Simple backup tool kevin has approved Package autoarchive kevin has added a Fedora devel branch for autoarchive with an owner of fab kevin has approved autoarchive in Fedora devel kevin has approved Package autoarchive kevin has set commit to Approved for 107427 on autoarchive (Fedora devel) kevin has set checkout to Approved for 107427 on autoarchive (Fedora devel) kevin has set build to Approved for 107427 on autoarchive (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/autoarchive From pkgdb at fedoraproject.org Tue Jul 28 04:30:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:30:03 +0000 Subject: [pkgdb] autoarchive summary updated by kevin Message-ID: <20090728043003.A344010F89D@bastion2.fedora.phx.redhat.com> kevin set package autoarchive summary to Simple backup tool To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/autoarchive From pkgdb at fedoraproject.org Tue Jul 28 04:30:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:30:03 +0000 Subject: [pkgdb] autoarchive (Fedora, 10) updated by kevin Message-ID: <20090728043003.D7D1710F8A1@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for autoarchive kevin has set commit to Approved for 107427 on autoarchive (Fedora 10) kevin has set checkout to Approved for 107427 on autoarchive (Fedora 10) kevin has set build to Approved for 107427 on autoarchive (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/autoarchive From kevin at fedoraproject.org Tue Jul 28 04:30:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:30:10 +0000 (UTC) Subject: rpms/autoarchive - New directory Message-ID: <20090728043010.1580711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/autoarchive In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsoH2326/rpms/autoarchive Log Message: Directory /cvs/pkgs/rpms/autoarchive added to the repository From kevin at fedoraproject.org Tue Jul 28 04:30:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:30:10 +0000 (UTC) Subject: rpms/autoarchive/devel - New directory Message-ID: <20090728043010.35FC011C0439@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/autoarchive/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsoH2326/rpms/autoarchive/devel Log Message: Directory /cvs/pkgs/rpms/autoarchive/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:30:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:30:15 +0000 (UTC) Subject: rpms/autoarchive Makefile,NONE,1.1 Message-ID: <20090728043015.F160B11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/autoarchive In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsoH2326/rpms/autoarchive Added Files: Makefile Log Message: Setup of module autoarchive --- NEW FILE Makefile --- # Top level Makefile for module autoarchive all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Tue Jul 28 04:30:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:30:03 +0000 Subject: [pkgdb] autoarchive (Fedora, 10) updated by kevin Message-ID: <20090728043003.F059910F8B4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for autoarchive kevin has set commit to Approved for 107427 on autoarchive (Fedora 11) kevin has set checkout to Approved for 107427 on autoarchive (Fedora 11) kevin has set build to Approved for 107427 on autoarchive (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/autoarchive From kevin at fedoraproject.org Tue Jul 28 04:30:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:30:16 +0000 (UTC) Subject: rpms/autoarchive/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728043016.7902911C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/autoarchive/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsoH2326/rpms/autoarchive/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module autoarchive --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: autoarchive # $Id: Makefile,v 1.1 2009/07/28 04:30:16 kevin Exp $ NAME := autoarchive SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From itamarjp at fedoraproject.org Tue Jul 28 04:31:20 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 04:31:20 +0000 (UTC) Subject: rpms/python-Lightbox/devel import.log, 1.1, 1.2 python-Lightbox.spec, 1.1, 1.2 Message-ID: <20090728043120.50DF011C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2803/devel Modified Files: import.log python-Lightbox.spec Log Message: - fix license tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jul 2009 02:35:51 -0000 1.1 +++ import.log 28 Jul 2009 04:31:20 -0000 1.2 @@ -1 +1,2 @@ python-Lightbox-2_1-2_fc12:HEAD:python-Lightbox-2.1-2.fc12.src.rpm:1248564885 +python-Lightbox-2_1-3_fc12:HEAD:python-Lightbox-2.1-3.fc12.src.rpm:1248755435 Index: python-Lightbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/devel/python-Lightbox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-Lightbox.spec 26 Jul 2009 02:35:51 -0000 1.1 +++ python-Lightbox.spec 28 Jul 2009 04:31:20 -0000 1.2 @@ -3,11 +3,12 @@ Name: python-Lightbox Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries -License: MIT +# python code is under MIT license and javascript code is under creative commons license. +License: MIT and CC-BY URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -51,6 +52,9 @@ rm -rf %{buildroot} %{python_sitelib}/lightbox/ %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 2.1-3 +- fix license tag + * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages From pkgdb at fedoraproject.org Tue Jul 28 04:31:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:31:58 +0000 Subject: [pkgdb] anyterm was added for mmorsi Message-ID: <20090728043158.AC18110F899@bastion2.fedora.phx.redhat.com> kevin has added Package anyterm with summary A web-based terminal emulator kevin has approved Package anyterm kevin has added a Fedora devel branch for anyterm with an owner of mmorsi kevin has approved anyterm in Fedora devel kevin has approved Package anyterm kevin has set commit to Approved for 107427 on anyterm (Fedora devel) kevin has set checkout to Approved for 107427 on anyterm (Fedora devel) kevin has set build to Approved for 107427 on anyterm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anyterm From pkgdb at fedoraproject.org Tue Jul 28 04:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:31:59 +0000 Subject: [pkgdb] anyterm (Fedora, 11) updated by kevin Message-ID: <20090728043159.F140B10F8B0@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for anyterm kevin has set commit to Approved for 107427 on anyterm (Fedora 11) kevin has set checkout to Approved for 107427 on anyterm (Fedora 11) kevin has set build to Approved for 107427 on anyterm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anyterm From pkgdb at fedoraproject.org Tue Jul 28 04:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:31:59 +0000 Subject: [pkgdb] anyterm summary updated by kevin Message-ID: <20090728043159.E63E110F89E@bastion2.fedora.phx.redhat.com> kevin set package anyterm summary to A web-based terminal emulator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anyterm From kevin at fedoraproject.org Tue Jul 28 04:32:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:32:06 +0000 (UTC) Subject: rpms/anyterm - New directory Message-ID: <20090728043206.1A0CB11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/anyterm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsuy3163/rpms/anyterm Log Message: Directory /cvs/pkgs/rpms/anyterm added to the repository From kevin at fedoraproject.org Tue Jul 28 04:32:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:32:06 +0000 (UTC) Subject: rpms/anyterm/devel - New directory Message-ID: <20090728043206.3013611C0439@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/anyterm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsuy3163/rpms/anyterm/devel Log Message: Directory /cvs/pkgs/rpms/anyterm/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:32:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:32:11 +0000 (UTC) Subject: rpms/anyterm Makefile,NONE,1.1 Message-ID: <20090728043211.B4D2511C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/anyterm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsuy3163/rpms/anyterm Added Files: Makefile Log Message: Setup of module anyterm --- NEW FILE Makefile --- # Top level Makefile for module anyterm all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:32:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:32:11 +0000 (UTC) Subject: rpms/anyterm/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728043211.ECA9B11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/anyterm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsuy3163/rpms/anyterm/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module anyterm --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: anyterm # $Id: Makefile,v 1.1 2009/07/28 04:32:11 kevin Exp $ NAME := anyterm SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 28 04:32:07 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:32:07 +0000 (UTC) Subject: rpms/mousetweaks/devel .cvsignore, 1.24, 1.25 mousetweaks.spec, 1.31, 1.32 sources, 1.24, 1.25 Message-ID: <20090728043207.561BD11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/mousetweaks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3121 Modified Files: .cvsignore mousetweaks.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 14 Jul 2009 04:14:02 -0000 1.24 +++ .cvsignore 28 Jul 2009 04:32:07 -0000 1.25 @@ -1 +1 @@ -mousetweaks-2.27.4.tar.bz2 +mousetweaks-2.27.5.tar.bz2 Index: mousetweaks.spec =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/mousetweaks.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mousetweaks.spec 25 Jul 2009 15:10:57 -0000 1.31 +++ mousetweaks.spec 28 Jul 2009 04:32:07 -0000 1.32 @@ -1,6 +1,6 @@ Name: mousetweaks -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Mouse accessibility support for the GNOME desktop Group: User Interface/Desktops License: GPLv3 and GFDL @@ -108,6 +108,9 @@ fi %doc %{_mandir}/man1/* %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 14 Jul 2009 04:14:03 -0000 1.24 +++ sources 28 Jul 2009 04:32:07 -0000 1.25 @@ -1 +1 @@ -1af4064568d9fc7aeed78cf232f81dd6 mousetweaks-2.27.4.tar.bz2 +08bd61efa64841033ec0ced96d39611c mousetweaks-2.27.5.tar.bz2 From itamarjp at fedoraproject.org Tue Jul 28 04:32:20 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 04:32:20 +0000 (UTC) Subject: rpms/python-Lightbox/F-11 import.log, 1.1, 1.2 python-Lightbox.spec, 1.1, 1.2 Message-ID: <20090728043220.18E9D11C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3176/F-11 Modified Files: import.log python-Lightbox.spec Log Message: - fix license tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jul 2009 02:39:23 -0000 1.1 +++ import.log 28 Jul 2009 04:32:19 -0000 1.2 @@ -1 +1,2 @@ python-Lightbox-2_1-2_fc12:F-11:python-Lightbox-2.1-2.fc12.src.rpm:1248564997 +python-Lightbox-2_1-3_fc12:F-11:python-Lightbox-2.1-3.fc12.src.rpm:1248755503 Index: python-Lightbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-11/python-Lightbox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-Lightbox.spec 26 Jul 2009 02:39:23 -0000 1.1 +++ python-Lightbox.spec 28 Jul 2009 04:32:19 -0000 1.2 @@ -3,11 +3,12 @@ Name: python-Lightbox Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries -License: MIT +# python code is under MIT license and javascript code is under creative commons license. +License: MIT and CC-BY URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -51,6 +52,9 @@ rm -rf %{buildroot} %{python_sitelib}/lightbox/ %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 2.1-3 +- fix license tag + * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages From itamarjp at fedoraproject.org Tue Jul 28 04:33:09 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 04:33:09 +0000 (UTC) Subject: rpms/python-Lightbox/F-10 import.log, 1.1, 1.2 python-Lightbox.spec, 1.1, 1.2 Message-ID: <20090728043309.8348811C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3679/F-10 Modified Files: import.log python-Lightbox.spec Log Message: - fix license tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jul 2009 02:48:57 -0000 1.1 +++ import.log 28 Jul 2009 04:33:09 -0000 1.2 @@ -1 +1,2 @@ python-Lightbox-2_1-2_fc12:F-10:python-Lightbox-2.1-2.fc12.src.rpm:1248565496 +python-Lightbox-2_1-3_fc12:F-10:python-Lightbox-2.1-3.fc12.src.rpm:1248755561 Index: python-Lightbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-10/python-Lightbox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-Lightbox.spec 26 Jul 2009 02:48:57 -0000 1.1 +++ python-Lightbox.spec 28 Jul 2009 04:33:09 -0000 1.2 @@ -3,11 +3,12 @@ Name: python-Lightbox Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries -License: MIT +# python code is under MIT license and javascript code is under creative commons license. +License: MIT and CC-BY URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -51,6 +52,9 @@ rm -rf %{buildroot} %{python_sitelib}/lightbox/ %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 2.1-3 +- fix license tag + * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages From itamarjp at fedoraproject.org Tue Jul 28 04:34:04 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 04:34:04 +0000 (UTC) Subject: rpms/python-Lightbox/EL-5 import.log, 1.1, 1.2 python-Lightbox.spec, 1.1, 1.2 Message-ID: <20090728043404.4122E11C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4005/EL-5 Modified Files: import.log python-Lightbox.spec Log Message: - fix license tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jul 2009 02:50:27 -0000 1.1 +++ import.log 28 Jul 2009 04:34:04 -0000 1.2 @@ -1 +1,2 @@ python-Lightbox-2_1-2_fc12:EL-5:python-Lightbox-2.1-2.fc12.src.rpm:1248565782 +python-Lightbox-2_1-3_fc12:EL-5:python-Lightbox-2.1-3.fc12.src.rpm:1248755616 Index: python-Lightbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/EL-5/python-Lightbox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-Lightbox.spec 26 Jul 2009 02:50:27 -0000 1.1 +++ python-Lightbox.spec 28 Jul 2009 04:34:04 -0000 1.2 @@ -3,11 +3,12 @@ Name: python-Lightbox Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries -License: MIT +# python code is under MIT license and javascript code is under creative commons license. +License: MIT and CC-BY URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -51,6 +52,9 @@ rm -rf %{buildroot} %{python_sitelib}/lightbox/ %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 2.1-3 +- fix license tag + * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages From pkgdb at fedoraproject.org Tue Jul 28 04:35:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:35:38 +0000 Subject: [pkgdb] kde-colorscheme-plastik was added for nucleo Message-ID: <20090728043538.57EB710F89D@bastion2.fedora.phx.redhat.com> kevin has added Package kde-colorscheme-plastik with summary Plastik KDE 4 Color Scheme kevin has approved Package kde-colorscheme-plastik kevin has added a Fedora devel branch for kde-colorscheme-plastik with an owner of nucleo kevin has approved kde-colorscheme-plastik in Fedora devel kevin has approved Package kde-colorscheme-plastik kevin has set commit to Approved for 107427 on kde-colorscheme-plastik (Fedora devel) kevin has set checkout to Approved for 107427 on kde-colorscheme-plastik (Fedora devel) kevin has set build to Approved for 107427 on kde-colorscheme-plastik (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kde-colorscheme-plastik From pkgdb at fedoraproject.org Tue Jul 28 04:35:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:35:39 +0000 Subject: [pkgdb] kde-colorscheme-plastik summary updated by kevin Message-ID: <20090728043539.8AFC410F8B5@bastion2.fedora.phx.redhat.com> kevin set package kde-colorscheme-plastik summary to Plastik KDE 4 Color Scheme To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kde-colorscheme-plastik From pkgdb at fedoraproject.org Tue Jul 28 04:35:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:35:39 +0000 Subject: [pkgdb] kde-colorscheme-plastik (Fedora, 10) updated by kevin Message-ID: <20090728043539.A2CBB10F8B9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for kde-colorscheme-plastik kevin has set commit to Approved for 107427 on kde-colorscheme-plastik (Fedora 10) kevin has set checkout to Approved for 107427 on kde-colorscheme-plastik (Fedora 10) kevin has set build to Approved for 107427 on kde-colorscheme-plastik (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kde-colorscheme-plastik From pkgdb at fedoraproject.org Tue Jul 28 04:35:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:35:39 +0000 Subject: [pkgdb] kde-colorscheme-plastik (Fedora, 10) updated by kevin Message-ID: <20090728043539.B23A710F89E@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for kde-colorscheme-plastik kevin has set commit to Approved for 107427 on kde-colorscheme-plastik (Fedora 11) kevin has set checkout to Approved for 107427 on kde-colorscheme-plastik (Fedora 11) kevin has set build to Approved for 107427 on kde-colorscheme-plastik (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kde-colorscheme-plastik From kevin at fedoraproject.org Tue Jul 28 04:35:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:35:49 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik - New directory Message-ID: <20090728043549.13EC711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/kde-colorscheme-plastik In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEL4581/rpms/kde-colorscheme-plastik Log Message: Directory /cvs/pkgs/rpms/kde-colorscheme-plastik added to the repository From kevin at fedoraproject.org Tue Jul 28 04:35:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:35:49 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik/devel - New directory Message-ID: <20090728043549.3888511C049D@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/kde-colorscheme-plastik/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEL4581/rpms/kde-colorscheme-plastik/devel Log Message: Directory /cvs/pkgs/rpms/kde-colorscheme-plastik/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:35:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:35:55 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik Makefile,NONE,1.1 Message-ID: <20090728043555.2E2FF11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/kde-colorscheme-plastik In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEL4581/rpms/kde-colorscheme-plastik Added Files: Makefile Log Message: Setup of module kde-colorscheme-plastik --- NEW FILE Makefile --- # Top level Makefile for module kde-colorscheme-plastik all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:35:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:35:55 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728043555.6921B11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/kde-colorscheme-plastik/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEL4581/rpms/kde-colorscheme-plastik/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module kde-colorscheme-plastik --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: kde-colorscheme-plastik # $Id: Makefile,v 1.1 2009/07/28 04:35:55 kevin Exp $ NAME := kde-colorscheme-plastik SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:36:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:52 +0000 Subject: [pkgdb] perl-Async-MergePoint was added for kwizart Message-ID: <20090728043652.DF75410F891@bastion2.fedora.phx.redhat.com> kevin has added Package perl-Async-MergePoint with summary Resynchronise diverged control flow kevin has approved Package perl-Async-MergePoint kevin has added a Fedora devel branch for perl-Async-MergePoint with an owner of kwizart kevin has approved perl-Async-MergePoint in Fedora devel kevin has approved Package perl-Async-MergePoint kevin has set commit to Approved for 107427 on perl-Async-MergePoint (Fedora devel) kevin has set checkout to Approved for 107427 on perl-Async-MergePoint (Fedora devel) kevin has set build to Approved for 107427 on perl-Async-MergePoint (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From pkgdb at fedoraproject.org Tue Jul 28 04:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:55 +0000 Subject: [pkgdb] perl-Async-MergePoint summary updated by kevin Message-ID: <20090728043655.6A3E510F89D@bastion2.fedora.phx.redhat.com> kevin set package perl-Async-MergePoint summary to Resynchronise diverged control flow To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From pkgdb at fedoraproject.org Tue Jul 28 04:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:55 +0000 Subject: [pkgdb] perl-Async-MergePoint (Fedora EPEL, 5) updated by kevin Message-ID: <20090728043655.6FD8210F8B0@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-Async-MergePoint kevin has set commit to Approved for 107427 on perl-Async-MergePoint (Fedora 10) kevin has set checkout to Approved for 107427 on perl-Async-MergePoint (Fedora 10) kevin has set build to Approved for 107427 on perl-Async-MergePoint (Fedora 10) kevin approved watchbugzilla on perl-Async-MergePoint (Fedora 10) for perl-sig kevin approved watchcommits on perl-Async-MergePoint (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From pkgdb at fedoraproject.org Tue Jul 28 04:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:55 +0000 Subject: [pkgdb] perl-Async-MergePoint (Fedora EPEL, 5) updated by kevin Message-ID: <20090728043655.7622510F8B4@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-Async-MergePoint (Fedora devel) for perl-sig kevin approved watchcommits on perl-Async-MergePoint (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From pkgdb at fedoraproject.org Tue Jul 28 04:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:55 +0000 Subject: [pkgdb] perl-Async-MergePoint (Fedora EPEL, 5) updated by kevin Message-ID: <20090728043655.841ED10F8B9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-Async-MergePoint kevin has set commit to Approved for 107427 on perl-Async-MergePoint (Fedora 11) kevin has set checkout to Approved for 107427 on perl-Async-MergePoint (Fedora 11) kevin has set build to Approved for 107427 on perl-Async-MergePoint (Fedora 11) kevin approved watchbugzilla on perl-Async-MergePoint (Fedora 11) for perl-sig kevin approved watchcommits on perl-Async-MergePoint (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From pkgdb at fedoraproject.org Tue Jul 28 04:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:36:55 +0000 Subject: [pkgdb] perl-Async-MergePoint (Fedora EPEL, 5) updated by kevin Message-ID: <20090728043655.892B310F8BB@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for perl-Async-MergePoint kevin has set commit to Approved for 107427 on perl-Async-MergePoint (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on perl-Async-MergePoint (Fedora EPEL 5) kevin has set build to Approved for 107427 on perl-Async-MergePoint (Fedora EPEL 5) kevin approved watchbugzilla on perl-Async-MergePoint (Fedora EPEL 5) for perl-sig kevin approved watchcommits on perl-Async-MergePoint (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Async-MergePoint From kevin at fedoraproject.org Tue Jul 28 04:37:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:37:06 +0000 (UTC) Subject: rpms/perl-Async-MergePoint - New directory Message-ID: <20090728043706.1ABA511C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Async-MergePoint In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsYr5073/rpms/perl-Async-MergePoint Log Message: Directory /cvs/pkgs/rpms/perl-Async-MergePoint added to the repository From kevin at fedoraproject.org Tue Jul 28 04:37:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:37:06 +0000 (UTC) Subject: rpms/perl-Async-MergePoint/devel - New directory Message-ID: <20090728043706.4187111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Async-MergePoint/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsYr5073/rpms/perl-Async-MergePoint/devel Log Message: Directory /cvs/pkgs/rpms/perl-Async-MergePoint/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:37:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:37:12 +0000 (UTC) Subject: rpms/perl-Async-MergePoint Makefile,NONE,1.1 Message-ID: <20090728043712.1612411C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Async-MergePoint In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsYr5073/rpms/perl-Async-MergePoint Added Files: Makefile Log Message: Setup of module perl-Async-MergePoint --- NEW FILE Makefile --- # Top level Makefile for module perl-Async-MergePoint all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:37:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:37:12 +0000 (UTC) Subject: rpms/perl-Async-MergePoint/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728043712.4FA1411C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Async-MergePoint/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsYr5073/rpms/perl-Async-MergePoint/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Async-MergePoint --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Async-MergePoint # $Id: Makefile,v 1.1 2009/07/28 04:37:12 kevin Exp $ NAME := perl-Async-MergePoint SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:39:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:39:25 +0000 Subject: [pkgdb] multimedia-menus was added for oget Message-ID: <20090728043925.22C4910F891@bastion2.fedora.phx.redhat.com> kevin has added Package multimedia-menus with summary Categorization for the GNOME/KDE Audio&Video/Multimedia menu kevin has approved Package multimedia-menus kevin has added a Fedora devel branch for multimedia-menus with an owner of oget kevin has approved multimedia-menus in Fedora devel kevin has approved Package multimedia-menus kevin has set commit to Approved for 107427 on multimedia-menus (Fedora devel) kevin has set checkout to Approved for 107427 on multimedia-menus (Fedora devel) kevin has set build to Approved for 107427 on multimedia-menus (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/multimedia-menus From pkgdb at fedoraproject.org Tue Jul 28 04:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:39:27 +0000 Subject: [pkgdb] multimedia-menus summary updated by kevin Message-ID: <20090728043927.0DD9410F89C@bastion2.fedora.phx.redhat.com> kevin set package multimedia-menus summary to Categorization for the GNOME/KDE Audio&Video/Multimedia menu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/multimedia-menus From kevin at fedoraproject.org Tue Jul 28 04:39:36 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:39:36 +0000 (UTC) Subject: rpms/multimedia-menus - New directory Message-ID: <20090728043936.141DA11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/multimedia-menus In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrU6657/rpms/multimedia-menus Log Message: Directory /cvs/pkgs/rpms/multimedia-menus added to the repository From pkgdb at fedoraproject.org Tue Jul 28 04:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:39:27 +0000 Subject: [pkgdb] multimedia-menus (Fedora, 11) updated by kevin Message-ID: <20090728043927.178CA10F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for multimedia-menus kevin has set commit to Approved for 107427 on multimedia-menus (Fedora 11) kevin has set checkout to Approved for 107427 on multimedia-menus (Fedora 11) kevin has set build to Approved for 107427 on multimedia-menus (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/multimedia-menus From kevin at fedoraproject.org Tue Jul 28 04:39:36 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:39:36 +0000 (UTC) Subject: rpms/multimedia-menus/devel - New directory Message-ID: <20090728043936.3650F11C049D@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/multimedia-menus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrU6657/rpms/multimedia-menus/devel Log Message: Directory /cvs/pkgs/rpms/multimedia-menus/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:39:41 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:39:41 +0000 (UTC) Subject: rpms/multimedia-menus Makefile,NONE,1.1 Message-ID: <20090728043941.EB7B111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/multimedia-menus In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrU6657/rpms/multimedia-menus Added Files: Makefile Log Message: Setup of module multimedia-menus --- NEW FILE Makefile --- # Top level Makefile for module multimedia-menus all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:39:42 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:39:42 +0000 (UTC) Subject: rpms/multimedia-menus/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728043942.35C4A11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/multimedia-menus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrU6657/rpms/multimedia-menus/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module multimedia-menus --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: multimedia-menus # $Id: Makefile,v 1.1 2009/07/28 04:39:42 kevin Exp $ NAME := multimedia-menus SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 28 04:39:39 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:39:39 +0000 (UTC) Subject: rpms/gtksourceview2/devel .cvsignore, 1.28, 1.29 gtksourceview2.spec, 1.35, 1.36 sources, 1.28, 1.29 Message-ID: <20090728043939.2166611C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtksourceview2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6612 Modified Files: .cvsignore gtksourceview2.spec sources Log Message: 2.7.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview2/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 1 Jun 2009 01:17:32 -0000 1.28 +++ .cvsignore 28 Jul 2009 04:39:38 -0000 1.29 @@ -1 +1 @@ -gtksourceview-2.7.1.tar.bz2 +gtksourceview-2.7.3.tar.bz2 Index: gtksourceview2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview2/devel/gtksourceview2.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gtksourceview2.spec 25 Jul 2009 01:47:45 -0000 1.35 +++ gtksourceview2.spec 28 Jul 2009 04:39:38 -0000 1.36 @@ -5,8 +5,8 @@ Summary: A library for viewing source files Name: gtksourceview2 -Version: 2.7.1 -Release: 3%{?dist} +Version: 2.7.3 +Release: 1%{?dist} License: LGPLv2+ and GPLv2+ # the library itself is LGPL, some .lang files are GPL Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.7.3-1 +- Update to 2.7.3 + * Fri Jul 24 2009 Fedora Release Engineering - 2.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview2/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 1 Jun 2009 01:17:33 -0000 1.28 +++ sources 28 Jul 2009 04:39:38 -0000 1.29 @@ -1 +1 @@ -5aec59fbea62fc9d8112e8017e433ff4 gtksourceview-2.7.1.tar.bz2 +ea30aecfbd55ebf40c6cf5a0f254f9ba gtksourceview-2.7.3.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:42:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:42:39 +0000 Subject: [pkgdb] netdisco was added for gouldwp Message-ID: <20090728044239.2696110F8B0@bastion2.fedora.phx.redhat.com> kevin has added Package netdisco with summary A web-based network management tool kevin has approved Package netdisco kevin has added a Fedora devel branch for netdisco with an owner of gouldwp kevin has approved netdisco in Fedora devel kevin has approved Package netdisco kevin has set commit to Approved for 107427 on netdisco (Fedora devel) kevin has set checkout to Approved for 107427 on netdisco (Fedora devel) kevin has set build to Approved for 107427 on netdisco (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/netdisco From pkgdb at fedoraproject.org Tue Jul 28 04:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:42:40 +0000 Subject: [pkgdb] netdisco summary updated by kevin Message-ID: <20090728044240.AD23F10F8B5@bastion2.fedora.phx.redhat.com> kevin set package netdisco summary to A web-based network management tool To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/netdisco From pkgdb at fedoraproject.org Tue Jul 28 04:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:42:40 +0000 Subject: [pkgdb] netdisco (Fedora EPEL, 5) updated by kevin Message-ID: <20090728044241.4A33310F8B9@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for netdisco kevin has set commit to Approved for 107427 on netdisco (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on netdisco (Fedora EPEL 5) kevin has set build to Approved for 107427 on netdisco (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/netdisco From pkgdb at fedoraproject.org Tue Jul 28 04:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:42:40 +0000 Subject: [pkgdb] netdisco (Fedora EPEL, 5) updated by kevin Message-ID: <20090728044241.5F8C210F8BC@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for netdisco kevin has set commit to Approved for 107427 on netdisco (Fedora 11) kevin has set checkout to Approved for 107427 on netdisco (Fedora 11) kevin has set build to Approved for 107427 on netdisco (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/netdisco From mclasen at fedoraproject.org Tue Jul 28 04:42:47 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:42:47 +0000 (UTC) Subject: rpms/seahorse/devel .cvsignore, 1.29, 1.30 seahorse.spec, 1.74, 1.75 sources, 1.31, 1.32 Message-ID: <20090728044247.44AA211C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/seahorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7720 Modified Files: .cvsignore seahorse.spec sources Log Message: 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 4 May 2009 09:47:42 -0000 1.29 +++ .cvsignore 28 Jul 2009 04:42:46 -0000 1.30 @@ -1 +1 @@ -seahorse-2.27.1.tar.bz2 +seahorse-2.27.5.tar.bz2 Index: seahorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/seahorse.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- seahorse.spec 27 Jul 2009 19:00:43 -0000 1.74 +++ seahorse.spec 28 Jul 2009 04:42:47 -0000 1.75 @@ -1,13 +1,13 @@ Name: seahorse -Version: 2.27.1 -Release: 4%{?dist} +Version: 2.27.3 +Release: 1%{?dist} Summary: A GNOME application for managing encryption keys Group: User Interface/Desktops # seahorse is GPLv2+ # libcryptui is LGPLv2+ License: GPLv2+ and LGPLv2+ URL: http://projects.gnome.org/seahorse/ -Source: http://download.gnome.org/sources/seahorse/2.26/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/seahorse/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -163,6 +163,9 @@ fi %{_datadir}/gtk-doc/html/libcryptui %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.3-1 +- Update to 2.27.3 + * Mon Jul 27 2009 Matthias Clasen - 2.27.1-4 - Drop unneeded direct deps Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 4 May 2009 09:47:42 -0000 1.31 +++ sources 28 Jul 2009 04:42:47 -0000 1.32 @@ -1 +1 @@ -cf2f94eb7f7aa85f3b0400ea8020f4b6 seahorse-2.27.1.tar.bz2 +229fd5cd7209d64c9abf4c609715f05c seahorse-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 04:43:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:43 +0000 Subject: [pkgdb] keychecker was added for jstanley Message-ID: <20090728044343.1802510F89E@bastion2.fedora.phx.redhat.com> kevin has added Package keychecker with summary Generate list of installed packages sorted by GPG key kevin has approved Package keychecker kevin has added a Fedora devel branch for keychecker with an owner of jstanley kevin has approved keychecker in Fedora devel kevin has approved Package keychecker kevin has set commit to Approved for 107427 on keychecker (Fedora devel) kevin has set checkout to Approved for 107427 on keychecker (Fedora devel) kevin has set build to Approved for 107427 on keychecker (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From pkgdb at fedoraproject.org Tue Jul 28 04:43:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:45 +0000 Subject: [pkgdb] keychecker (Fedora EPEL, 4) updated by kevin Message-ID: <20090728044345.4942A10F8B8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for keychecker kevin has set commit to Approved for 107427 on keychecker (Fedora 10) kevin has set checkout to Approved for 107427 on keychecker (Fedora 10) kevin has set build to Approved for 107427 on keychecker (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From pkgdb at fedoraproject.org Tue Jul 28 04:43:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:45 +0000 Subject: [pkgdb] keychecker summary updated by kevin Message-ID: <20090728044345.4325B10F89F@bastion2.fedora.phx.redhat.com> kevin set package keychecker summary to Generate list of installed packages sorted by GPG key To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From pkgdb at fedoraproject.org Tue Jul 28 04:43:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:45 +0000 Subject: [pkgdb] keychecker (Fedora EPEL, 4) updated by kevin Message-ID: <20090728044345.5039C10F8BB@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for keychecker kevin has set commit to Approved for 107427 on keychecker (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on keychecker (Fedora EPEL 4) kevin has set build to Approved for 107427 on keychecker (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From pkgdb at fedoraproject.org Tue Jul 28 04:43:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:45 +0000 Subject: [pkgdb] keychecker (Fedora EPEL, 4) updated by kevin Message-ID: <20090728044345.58E5410F8BE@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for keychecker kevin has set commit to Approved for 107427 on keychecker (Fedora 11) kevin has set checkout to Approved for 107427 on keychecker (Fedora 11) kevin has set build to Approved for 107427 on keychecker (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From pkgdb at fedoraproject.org Tue Jul 28 04:43:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:43:45 +0000 Subject: [pkgdb] keychecker (Fedora EPEL, 4) updated by kevin Message-ID: <20090728044345.6465E10F8C1@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for keychecker kevin has set commit to Approved for 107427 on keychecker (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on keychecker (Fedora EPEL 5) kevin has set build to Approved for 107427 on keychecker (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keychecker From kevin at fedoraproject.org Tue Jul 28 04:43:52 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:43:52 +0000 (UTC) Subject: rpms/keychecker - New directory Message-ID: <20090728044352.19E2811C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/keychecker In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsAL8220/rpms/keychecker Log Message: Directory /cvs/pkgs/rpms/keychecker added to the repository From kevin at fedoraproject.org Tue Jul 28 04:43:52 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:43:52 +0000 (UTC) Subject: rpms/keychecker/devel - New directory Message-ID: <20090728044352.4857111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/keychecker/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsAL8220/rpms/keychecker/devel Log Message: Directory /cvs/pkgs/rpms/keychecker/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:43:57 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:43:57 +0000 (UTC) Subject: rpms/keychecker Makefile,NONE,1.1 Message-ID: <20090728044357.ECE5A11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/keychecker In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsAL8220/rpms/keychecker Added Files: Makefile Log Message: Setup of module keychecker --- NEW FILE Makefile --- # Top level Makefile for module keychecker all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:43:58 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:43:58 +0000 (UTC) Subject: rpms/keychecker/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728044358.35EF611C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/keychecker/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsAL8220/rpms/keychecker/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module keychecker --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: keychecker # $Id: Makefile,v 1.1 2009/07/28 04:43:58 kevin Exp $ NAME := keychecker SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:44:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:44:55 +0000 Subject: [pkgdb] geany-plugins was added for dmaphy Message-ID: <20090728044455.4A30E10F891@bastion2.fedora.phx.redhat.com> kevin has added Package geany-plugins with summary A bundle of plugins for Geany kevin has approved Package geany-plugins kevin has added a Fedora devel branch for geany-plugins with an owner of dmaphy kevin has approved geany-plugins in Fedora devel kevin has approved Package geany-plugins kevin has set commit to Approved for 107427 on geany-plugins (Fedora devel) kevin has set checkout to Approved for 107427 on geany-plugins (Fedora devel) kevin has set build to Approved for 107427 on geany-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany-plugins From kevin at fedoraproject.org Tue Jul 28 04:45:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:45:11 +0000 (UTC) Subject: rpms/geany-plugins Makefile,NONE,1.1 Message-ID: <20090728044511.D5EB811C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/geany-plugins In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsGc8810/rpms/geany-plugins Added Files: Makefile Log Message: Setup of module geany-plugins --- NEW FILE Makefile --- # Top level Makefile for module geany-plugins all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:45:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:45:12 +0000 (UTC) Subject: rpms/geany-plugins/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728044512.19F7111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/geany-plugins/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsGc8810/rpms/geany-plugins/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module geany-plugins --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: geany-plugins # $Id: Makefile,v 1.1 2009/07/28 04:45:11 kevin Exp $ NAME := geany-plugins SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:44:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:44:57 +0000 Subject: [pkgdb] geany-plugins (Fedora, 11) updated by kevin Message-ID: <20090728044457.EE57510F8BA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for geany-plugins kevin has set commit to Approved for 107427 on geany-plugins (Fedora 11) kevin has set checkout to Approved for 107427 on geany-plugins (Fedora 11) kevin has set build to Approved for 107427 on geany-plugins (Fedora 11) kevin approved watchbugzilla on geany-plugins (Fedora 11) for jgu kevin approved watchcommits on geany-plugins (Fedora 11) for jgu kevin approved commit on geany-plugins (Fedora 11) for jgu kevin approved build on geany-plugins (Fedora 11) for jgu kevin approved approveacls on geany-plugins (Fedora 11) for jgu kevin approved watchbugzilla on geany-plugins (Fedora 11) for pingou kevin approved watchcommits on geany-plugins (Fedora 11) for pingou kevin approved commit on geany-plugins (Fedora 11) for pingou kevin approved build on geany-plugins (Fedora 11) for pingou kevin approved approveacls on geany-plugins (Fedora 11) for pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany-plugins From pkgdb at fedoraproject.org Tue Jul 28 04:45:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:45:55 +0000 Subject: [pkgdb] entertainer was added for julian Message-ID: <20090728044555.64D3410F899@bastion2.fedora.phx.redhat.com> kevin has added Package entertainer with summary A simple media center kevin has approved Package entertainer kevin has added a Fedora devel branch for entertainer with an owner of julian kevin has approved entertainer in Fedora devel kevin has approved Package entertainer kevin has set commit to Approved for 107427 on entertainer (Fedora devel) kevin has set checkout to Approved for 107427 on entertainer (Fedora devel) kevin has set build to Approved for 107427 on entertainer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/entertainer From pkgdb at fedoraproject.org Tue Jul 28 04:45:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:45:57 +0000 Subject: [pkgdb] entertainer summary updated by kevin Message-ID: <20090728044557.6A65B10F89E@bastion2.fedora.phx.redhat.com> kevin set package entertainer summary to A simple media center To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/entertainer From pkgdb at fedoraproject.org Tue Jul 28 04:45:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:45:57 +0000 Subject: [pkgdb] entertainer (Fedora, 10) updated by kevin Message-ID: <20090728044557.8054010F8B0@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for entertainer kevin has set commit to Approved for 107427 on entertainer (Fedora 10) kevin has set checkout to Approved for 107427 on entertainer (Fedora 10) kevin has set build to Approved for 107427 on entertainer (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/entertainer From pkgdb at fedoraproject.org Tue Jul 28 04:45:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:45:57 +0000 Subject: [pkgdb] entertainer (Fedora, 10) updated by kevin Message-ID: <20090728044557.9224410F8B5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for entertainer kevin has set commit to Approved for 107427 on entertainer (Fedora 11) kevin has set checkout to Approved for 107427 on entertainer (Fedora 11) kevin has set build to Approved for 107427 on entertainer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/entertainer From kevin at fedoraproject.org Tue Jul 28 04:46:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:46:04 +0000 (UTC) Subject: rpms/entertainer - New directory Message-ID: <20090728044604.1648811C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/entertainer In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLQ9157/rpms/entertainer Log Message: Directory /cvs/pkgs/rpms/entertainer added to the repository From kevin at fedoraproject.org Tue Jul 28 04:46:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:46:04 +0000 (UTC) Subject: rpms/entertainer/devel - New directory Message-ID: <20090728044604.3DE6111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/entertainer/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLQ9157/rpms/entertainer/devel Log Message: Directory /cvs/pkgs/rpms/entertainer/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:46:09 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:46:09 +0000 (UTC) Subject: rpms/entertainer Makefile,NONE,1.1 Message-ID: <20090728044609.E354111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/entertainer In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLQ9157/rpms/entertainer Added Files: Makefile Log Message: Setup of module entertainer --- NEW FILE Makefile --- # Top level Makefile for module entertainer all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:46:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:46:10 +0000 (UTC) Subject: rpms/entertainer/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728044610.3020E11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/entertainer/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLQ9157/rpms/entertainer/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module entertainer --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: entertainer # $Id: Makefile,v 1.1 2009/07/28 04:46:10 kevin Exp $ NAME := entertainer SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:47:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:47:32 +0000 Subject: [pkgdb] comoonics-cdsl-py summary updated by kevin Message-ID: <20090728044732.C8D8910F89D@bastion2.fedora.phx.redhat.com> kevin set package comoonics-cdsl-py summary to Comoonics cdsl utilities and library written in Python To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cdsl-py From pkgdb at fedoraproject.org Tue Jul 28 04:47:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:47:30 +0000 Subject: [pkgdb] comoonics-cdsl-py was added for elcody02 Message-ID: <20090728044730.9701910F891@bastion2.fedora.phx.redhat.com> kevin has added Package comoonics-cdsl-py with summary Comoonics cdsl utilities and library written in Python kevin has approved Package comoonics-cdsl-py kevin has added a Fedora devel branch for comoonics-cdsl-py with an owner of elcody02 kevin has approved comoonics-cdsl-py in Fedora devel kevin has approved Package comoonics-cdsl-py kevin has set commit to Approved for 107427 on comoonics-cdsl-py (Fedora devel) kevin has set checkout to Approved for 107427 on comoonics-cdsl-py (Fedora devel) kevin has set build to Approved for 107427 on comoonics-cdsl-py (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cdsl-py From pkgdb at fedoraproject.org Tue Jul 28 04:47:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:47:32 +0000 Subject: [pkgdb] comoonics-cdsl-py (Fedora, devel) updated by kevin Message-ID: <20090728044732.ED5F910F8B0@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on comoonics-cdsl-py (Fedora devel) for markhla kevin approved watchcommits on comoonics-cdsl-py (Fedora devel) for markhla kevin approved commit on comoonics-cdsl-py (Fedora devel) for markhla kevin approved build on comoonics-cdsl-py (Fedora devel) for markhla kevin approved approveacls on comoonics-cdsl-py (Fedora devel) for markhla To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cdsl-py From kevin at fedoraproject.org Tue Jul 28 04:47:47 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:47:47 +0000 (UTC) Subject: rpms/comoonics-cdsl-py - New directory Message-ID: <20090728044747.16D8511C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/comoonics-cdsl-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvscC9732/rpms/comoonics-cdsl-py Log Message: Directory /cvs/pkgs/rpms/comoonics-cdsl-py added to the repository From kevin at fedoraproject.org Tue Jul 28 04:47:47 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:47:47 +0000 (UTC) Subject: rpms/comoonics-cdsl-py/devel - New directory Message-ID: <20090728044747.4011E11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/comoonics-cdsl-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvscC9732/rpms/comoonics-cdsl-py/devel Log Message: Directory /cvs/pkgs/rpms/comoonics-cdsl-py/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:47:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:47:53 +0000 (UTC) Subject: rpms/comoonics-cdsl-py Makefile,NONE,1.1 Message-ID: <20090728044753.2E65711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/comoonics-cdsl-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvscC9732/rpms/comoonics-cdsl-py Added Files: Makefile Log Message: Setup of module comoonics-cdsl-py --- NEW FILE Makefile --- # Top level Makefile for module comoonics-cdsl-py all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:42:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:42:49 +0000 (UTC) Subject: rpms/netdisco - New directory Message-ID: <20090728044249.1433711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/netdisco In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsUg7754/rpms/netdisco Log Message: Directory /cvs/pkgs/rpms/netdisco added to the repository From kevin at fedoraproject.org Tue Jul 28 04:42:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:42:49 +0000 (UTC) Subject: rpms/netdisco/devel - New directory Message-ID: <20090728044249.3C9F711C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/netdisco/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsUg7754/rpms/netdisco/devel Log Message: Directory /cvs/pkgs/rpms/netdisco/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:42:54 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:42:54 +0000 (UTC) Subject: rpms/netdisco Makefile,NONE,1.1 Message-ID: <20090728044254.CA56F11C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/netdisco In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsUg7754/rpms/netdisco Added Files: Makefile Log Message: Setup of module netdisco --- NEW FILE Makefile --- # Top level Makefile for module netdisco all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 28 04:42:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:42:55 +0000 (UTC) Subject: rpms/netdisco/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728044255.217D111C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/netdisco/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsUg7754/rpms/netdisco/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module netdisco --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: netdisco # $Id: Makefile,v 1.1 2009/07/28 04:42:54 kevin Exp $ NAME := netdisco SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 28 04:44:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:44:57 +0000 Subject: [pkgdb] geany-plugins summary updated by kevin Message-ID: <20090728044457.D2B4610F89E@bastion2.fedora.phx.redhat.com> kevin set package geany-plugins summary to A bundle of plugins for Geany To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany-plugins From pkgdb at fedoraproject.org Tue Jul 28 04:44:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:44:57 +0000 Subject: [pkgdb] geany-plugins (Fedora, 11) updated by kevin Message-ID: <20090728044457.DEB3C10F8B4@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on geany-plugins (Fedora devel) for jgu kevin approved watchcommits on geany-plugins (Fedora devel) for jgu kevin approved commit on geany-plugins (Fedora devel) for jgu kevin approved build on geany-plugins (Fedora devel) for jgu kevin approved approveacls on geany-plugins (Fedora devel) for jgu kevin approved watchbugzilla on geany-plugins (Fedora devel) for pingou kevin approved watchcommits on geany-plugins (Fedora devel) for pingou kevin approved commit on geany-plugins (Fedora devel) for pingou kevin approved build on geany-plugins (Fedora devel) for pingou kevin approved approveacls on geany-plugins (Fedora devel) for pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/geany-plugins From kevin at fedoraproject.org Tue Jul 28 04:45:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:45:06 +0000 (UTC) Subject: rpms/geany-plugins - New directory Message-ID: <20090728044506.218F411C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/geany-plugins In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsGc8810/rpms/geany-plugins Log Message: Directory /cvs/pkgs/rpms/geany-plugins added to the repository From kevin at fedoraproject.org Tue Jul 28 04:45:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:45:06 +0000 (UTC) Subject: rpms/geany-plugins/devel - New directory Message-ID: <20090728044506.44C8F11C049D@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/geany-plugins/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsGc8810/rpms/geany-plugins/devel Log Message: Directory /cvs/pkgs/rpms/geany-plugins/devel added to the repository From kevin at fedoraproject.org Tue Jul 28 04:47:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 28 Jul 2009 04:47:53 +0000 (UTC) Subject: rpms/comoonics-cdsl-py/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728044753.61AB511C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/comoonics-cdsl-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvscC9732/rpms/comoonics-cdsl-py/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module comoonics-cdsl-py --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: comoonics-cdsl-py # $Id: Makefile,v 1.1 2009/07/28 04:47:53 kevin Exp $ NAME := comoonics-cdsl-py SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 28 04:48:03 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:48:03 +0000 (UTC) Subject: rpms/seahorse/devel seahorse.spec,1.75,1.76 Message-ID: <20090728044803.52D7811C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/seahorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9822 Modified Files: seahorse.spec Log Message: correct version Index: seahorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/seahorse.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- seahorse.spec 28 Jul 2009 04:42:47 -0000 1.75 +++ seahorse.spec 28 Jul 2009 04:48:03 -0000 1.76 @@ -1,5 +1,5 @@ Name: seahorse -Version: 2.27.3 +Version: 2.27.5 Release: 1%{?dist} Summary: A GNOME application for managing encryption keys Group: User Interface/Desktops @@ -163,8 +163,8 @@ fi %{_datadir}/gtk-doc/html/libcryptui %changelog -* Tue Jul 28 2009 Matthias Clasen - 2.27.3-1 -- Update to 2.27.3 +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 * Mon Jul 27 2009 Matthias Clasen - 2.27.1-4 - Drop unneeded direct deps From pkgdb at fedoraproject.org Tue Jul 28 04:48:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 04:48:09 +0000 Subject: [pkgdb] libewf (Fedora EPEL, 5) updated by kevin Message-ID: <20090728044809.327FF10F8A1@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for libewf kevin has set commit to Approved for 107427 on libewf (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on libewf (Fedora EPEL 5) kevin has set build to Approved for 107427 on libewf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From mclasen at fedoraproject.org Tue Jul 28 04:55:15 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 04:55:15 +0000 (UTC) Subject: rpms/gedit/devel .cvsignore, 1.92, 1.93 gedit.spec, 1.198, 1.199 sources, 1.94, 1.95 Message-ID: <20090728045515.5EB9211C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11404 Modified Files: .cvsignore gedit.spec sources Log Message: 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/.cvsignore,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- .cvsignore 30 Jun 2009 17:34:46 -0000 1.92 +++ .cvsignore 28 Jul 2009 04:55:15 -0000 1.93 @@ -1 +1 @@ -gedit-2.27.2.tar.bz2 +gedit-2.27.3.tar.bz2 Index: gedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/gedit.spec,v retrieving revision 1.198 retrieving revision 1.199 diff -u -p -r1.198 -r1.199 --- gedit.spec 24 Jul 2009 23:48:01 -0000 1.198 +++ gedit.spec 28 Jul 2009 04:55:15 -0000 1.199 @@ -17,8 +17,8 @@ Summary: Text editor for the GNOME desktop Name: gedit -Version: 2.27.2 -Release: 3%{?dist} +Version: 2.27.3 +Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Applications/Editors @@ -233,6 +233,9 @@ fi %changelog +* Tue Jul 28 2009 Matthias Clasen - 1:2.27.3-1 +- Update to 2.27.3 + * Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/sources,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- sources 30 Jun 2009 17:34:46 -0000 1.94 +++ sources 28 Jul 2009 04:55:15 -0000 1.95 @@ -1 +1 @@ -b691903e22c0206ecd10c1b9b5125be3 gedit-2.27.2.tar.bz2 +1ef74d1e49a36c1eb53cfcd5695d2d8e gedit-2.27.3.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 05:01:49 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:01:49 +0000 (UTC) Subject: rpms/vino/devel vino-smclient.patch,NONE,1.1 vino.spec,1.100,1.101 Message-ID: <20090728050149.DE4F311C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13698 Modified Files: vino.spec Added Files: vino-smclient.patch Log Message: 2.27.5 vino-smclient.patch: configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE vino-smclient.patch --- diff -up vino-2.27.5/configure.in.smclient vino-2.27.5/configure.in --- vino-2.27.5/configure.in.smclient 2009-07-28 00:55:23.216690587 -0400 +++ vino-2.27.5/configure.in 2009-07-28 00:55:41.568688839 -0400 @@ -60,7 +60,7 @@ PKG_CHECK_MODULES(EGG, gtk+-2.0 >= $GTK_ AC_SUBST(EGG_LIBS) AC_SUBST(EGG_CFLAGS) -PKG_CHECK_MODULES(EGG_SMCLIENT, gtk+-2.0) +PKG_CHECK_MODULES(EGG_SMCLIENT, gtk+-2.0 sm) AC_SUBST(EGG_SMCLIENT_LIBS) AC_SUBST(EGG_SMCLIENT_CFLAGS) Index: vino.spec =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/vino.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- vino.spec 28 Jul 2009 04:28:56 -0000 1.100 +++ vino.spec 28 Jul 2009 05:01:49 -0000 1.101 @@ -12,6 +12,9 @@ Version: 2.27.5 Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/vino/2.27/%{name}-%{version}.tar.bz2 + +Patch0: vino-smclient.patch + License: GPLv2+ Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -34,6 +37,10 @@ BuildRequires: gettext BuildRequires: dbus-glib-devel BuildRequires: libsoup-devel BuildRequires: NetworkManager-devel +BuildRequires: libSM-devel +BuildRequires: gnome-keyring-devel +BuildRequires: unique-devel +BuildRequires: autoconf automake libtool %description Vino is a VNC server for GNOME. It allows remote users to @@ -41,10 +48,14 @@ connect to a running GNOME session using %prep %setup -q +%patch0 -p1 -b .smclient + +autoreconf -i -f %build %configure \ --enable-avahi \ + --enable-gnome-keyring \ --disable-gnutls \ --disable-http-server \ --enable-libnotify \ @@ -107,6 +118,7 @@ fi %doc AUTHORS COPYING NEWS README docs/TODO docs/remote-desktop.txt %{_datadir}/vino %{_datadir}/applications/*.desktop +%{_datadir}/dbus-1/services/org.gnome.Vino.service %{_bindir}/* %{_libexecdir}/* %{_sysconfdir}/gconf/schemas/*.schemas From mclasen at fedoraproject.org Tue Jul 28 05:03:25 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:03:25 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel .cvsignore, 1.29, 1.30 gnome-settings-daemon.spec, 1.113, 1.114 sources, 1.30, 1.31 Message-ID: <20090728050325.ED17711C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14189 Modified Files: .cvsignore gnome-settings-daemon.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 14 Jul 2009 13:51:31 -0000 1.29 +++ .cvsignore 28 Jul 2009 05:03:25 -0000 1.30 @@ -1 +1 @@ -gnome-settings-daemon-2.27.4.tar.bz2 +gnome-settings-daemon-2.27.5.tar.bz2 Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- gnome-settings-daemon.spec 25 Jul 2009 00:46:56 -0000 1.113 +++ gnome-settings-daemon.spec 28 Jul 2009 05:03:25 -0000 1.114 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon -Version: 2.27.4 -Release: 4%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -170,6 +170,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 14 Jul 2009 13:51:31 -0000 1.30 +++ sources 28 Jul 2009 05:03:25 -0000 1.31 @@ -1 +1 @@ -edaae22cdd76a5617036d8742f94b365 gnome-settings-daemon-2.27.4.tar.bz2 +bdb36927b3060b66b88fe5a0f132e8ae gnome-settings-daemon-2.27.5.tar.bz2 From cweyl at fedoraproject.org Tue Jul 28 05:03:33 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Tue, 28 Jul 2009 05:03:33 +0000 (UTC) Subject: rpms/perl-Catalyst-Runtime/devel .cvsignore, 1.11, 1.12 perl-Catalyst-Runtime.spec, 1.18, 1.19 sources, 1.9, 1.10 Message-ID: <20090728050333.A9A7311C00D4@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Catalyst-Runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14284 Modified Files: .cvsignore perl-Catalyst-Runtime.spec sources Log Message: * Mon Jul 27 2009 Chris Weyl 5.80007-1 - auto-update to 5.80007 (by cpan-spec-update 0.01) - added a new br on perl(String::RewritePrefix) (version 0.004) - added a new br on perl(Task::Weaken) (version 0) - added a new br on perl(namespace::autoclean) (version 0) - added a new req on perl(String::RewritePrefix) (version 0.004) - added a new req on perl(Task::Weaken) (version 0) - added a new req on perl(namespace::autoclean) (version 0) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Runtime/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 9 Jun 2009 08:26:47 -0000 1.11 +++ .cvsignore 28 Jul 2009 05:03:33 -0000 1.12 @@ -1 +1 @@ -Catalyst-Runtime-5.80005.tar.gz +Catalyst-Runtime-5.80007.tar.gz Index: perl-Catalyst-Runtime.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Runtime/devel/perl-Catalyst-Runtime.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Catalyst-Runtime.spec 26 Jul 2009 04:17:34 -0000 1.18 +++ perl-Catalyst-Runtime.spec 28 Jul 2009 05:03:33 -0000 1.19 @@ -1,21 +1,19 @@ Name: perl-Catalyst-Runtime -Version: 5.80005 -Release: 4%{?dist} -Summary: Catalyst core modules +Version: 5.80007 +Release: 1%{?dist} +Summary: Catalyst Framework Runtime License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Catalyst-Runtime/ -Source0: http://search.cpan.org/CPAN/authors/id/M/MR/MRAMBERG/Catalyst-Runtime-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Catalyst-Runtime-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -# core BuildRequires: perl >= 1:5.8.1 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 BuildRequires: perl(Test::More) BuildRequires: perl(Test::Harness) -# cpan BuildRequires: perl(CGI::Simple::Cookie) BuildRequires: perl(Class::Accessor::Fast) BuildRequires: perl(Class::Data::Inheritable) @@ -35,22 +33,9 @@ BuildRequires: perl(Text::SimpleTable) BuildRequires: perl(Tree::Simple) >= 1.15 BuildRequires: perl(Tree::Simple::Visitor::FindByPath) BuildRequires: perl(URI) >= 1.35 -# test -BuildRequires: perl(Class::C3) -BuildRequires: perl(File::Copy::Recursive) -#BuildRequires: perl(GTop) -BuildRequires: perl(Proc::ProcessTable) -BuildRequires: perl(Test::Pod) -BuildRequires: perl(Test::Pod::Coverage) -BuildRequires: perl(YAML) -BuildRequires: perl(Test::Exception) -# optional tests -BuildRequires: perl(FCGI) - -# until bundles M::I is updated -BuildRequires: perl(CPAN) - -### auto-added brs! +BuildRequires: perl(String::RewritePrefix) >= 0.004 +BuildRequires: perl(Task::Weaken) +BuildRequires: perl(namespace::autoclean) BuildRequires: perl(Scalar::Util) BuildRequires: perl(Class::MOP) >= 0.83 BuildRequires: perl(Time::HiRes) @@ -65,6 +50,20 @@ BuildRequires: perl(Text::Balanced) BuildRequires: perl(Class::C3::Adopt::NEXT) >= 0.07 BuildRequires: perl(Test::MockObject) >= 1.07 BuildRequires: perl(MooseX::Emulate::Class::Accessor::Fast) >= 0.00801 +# test +BuildRequires: perl(Class::C3) +BuildRequires: perl(File::Copy::Recursive) +#BuildRequires: perl(GTop) +BuildRequires: perl(Proc::ProcessTable) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl(YAML) +BuildRequires: perl(Test::Exception) +# optional tests +BuildRequires: perl(FCGI) + +# until bundled M::I is updated +BuildRequires: perl(CPAN) ### Requires (from upstream metadata) Requires: perl(B::Hooks::EndOfScope) >= 0.08 @@ -98,6 +97,9 @@ Requires: perl(Tree::Simple) >= 1.15 Requires: perl(Tree::Simple::Visitor::FindByPath) Requires: perl(URI) >= 1.35 Requires: perl(namespace::clean) +Requires: perl(String::RewritePrefix) >= 0.004 +Requires: perl(Task::Weaken) +Requires: perl(namespace::autoclean) # neither provide nor require things we shouldn't %global _use_internal_dependency_generator 0 @@ -128,7 +130,7 @@ perldoc perlgpl > COPYING.gpl perldoc perlartistic > COPYING.artistic find . -type f -exec chmod -c -x {} + -find t/ -type f -exec perl -pi -e 's|^#!perl|#!/usr/bin/perl|' {} + +find t/ -type f -exec perl -pi -e 's|^#!perl|#!%{__perl}|' {} + %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -177,6 +179,15 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Chris Weyl 5.80007-1 +- auto-update to 5.80007 (by cpan-spec-update 0.01) +- added a new br on perl(String::RewritePrefix) (version 0.004) +- added a new br on perl(Task::Weaken) (version 0) +- added a new br on perl(namespace::autoclean) (version 0) +- added a new req on perl(String::RewritePrefix) (version 0.004) +- added a new req on perl(Task::Weaken) (version 0) +- added a new req on perl(namespace::autoclean) (version 0) + * Sat Jul 25 2009 Fedora Release Engineering - 5.80005-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Runtime/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 9 Jun 2009 08:26:48 -0000 1.9 +++ sources 28 Jul 2009 05:03:33 -0000 1.10 @@ -1 +1 @@ -d7d78a4ef83a2799c4c698a81d6bf7ca Catalyst-Runtime-5.80005.tar.gz +9ccd070be7ee18fa13345ad2135d8e89 Catalyst-Runtime-5.80007.tar.gz From mclasen at fedoraproject.org Tue Jul 28 05:06:59 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:06:59 +0000 (UTC) Subject: rpms/gedit/devel gedit.spec,1.199,1.200 Message-ID: <20090728050659.21F3B11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15198 Modified Files: gedit.spec Log Message: drop upstreamed patch Index: gedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/gedit.spec,v retrieving revision 1.199 retrieving revision 1.200 diff -u -p -r1.199 -r1.200 --- gedit.spec 28 Jul 2009 04:55:15 -0000 1.199 +++ gedit.spec 28 Jul 2009 05:06:58 -0000 1.200 @@ -48,9 +48,6 @@ Patch2: gedit-2.25.5-fix-python-path.pat # http://bugzilla.gnome.org/show_bug.cgi?id=587053 Patch3: print-to-file.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=588806 -Patch4: button-images.patch - BuildRequires: gnome-common BuildRequires: glib2-devel >= %{glib2_version} BuildRequires: pango-devel >= %{pango_version} @@ -117,7 +114,6 @@ Install gedit-devel if you want to write %patch2 -p1 -b .fix-python-path %patch3 -p1 -b .print-to-file -%patch4 -p1 -b .button-images %build autoreconf -f -i From mclasen at fedoraproject.org Tue Jul 28 05:07:53 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:07:53 +0000 (UTC) Subject: rpms/gnome-doc-utils/devel .cvsignore, 1.39, 1.40 gnome-doc-utils.spec, 1.72, 1.73 sources, 1.39, 1.40 Message-ID: <20090728050753.1399711C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-doc-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14828 Modified Files: .cvsignore gnome-doc-utils.spec sources Log Message: 0.17.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-doc-utils/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 29 Jun 2009 13:23:56 -0000 1.39 +++ .cvsignore 28 Jul 2009 05:07:52 -0000 1.40 @@ -1 +1 @@ -gnome-doc-utils-0.17.2.tar.bz2 +gnome-doc-utils-0.17.3.tar.bz2 Index: gnome-doc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-doc-utils/devel/gnome-doc-utils.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- gnome-doc-utils.spec 25 Jul 2009 00:38:15 -0000 1.72 +++ gnome-doc-utils.spec 28 Jul 2009 05:07:52 -0000 1.73 @@ -3,8 +3,8 @@ ### Abstract ### Name: gnome-doc-utils -Version: 0.17.2 -Release: 2%{?dist} +Version: 0.17.3 +Release: 1%{?dist} License: GPLv2+ and LGPLv2+ and GFDL Group: Development/Tools Summary: Documentation utilities for GNOME @@ -67,7 +67,7 @@ are used by the tools in gnome-doc-utils %patch1 -p1 -b .package %build -%configure --disable-scrollkeeper +%configure --disable-scrollkeeper --enable-build-utils make %install @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xml/mallard %changelog +* Tue Jul 28 2009 Matthias Clasen - 0.17.3-1 +- Update to 0.17.3 + * Fri Jul 24 2009 Fedora Release Engineering - 0.17.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-doc-utils/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 29 Jun 2009 13:23:56 -0000 1.39 +++ sources 28 Jul 2009 05:07:52 -0000 1.40 @@ -1 +1 @@ -b40f3724b5e01f9de6a4891b6aa184f7 gnome-doc-utils-0.17.2.tar.bz2 +eac1ee2a039a2e66c4de32bc656f7be6 gnome-doc-utils-0.17.3.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 05:11:40 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:11:40 +0000 (UTC) Subject: rpms/vino/devel vino.spec,1.101,1.102 Message-ID: <20090728051140.E1E7E11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17195 Modified Files: vino.spec Log Message: fix missing BRs Index: vino.spec =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/vino.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- vino.spec 28 Jul 2009 05:01:49 -0000 1.101 +++ vino.spec 28 Jul 2009 05:11:40 -0000 1.102 @@ -41,6 +41,7 @@ BuildRequires: libSM-devel BuildRequires: gnome-keyring-devel BuildRequires: unique-devel BuildRequires: autoconf automake libtool +BuildRequires: gnome-common %description Vino is a VNC server for GNOME. It allows remote users to From mclasen at fedoraproject.org Tue Jul 28 05:13:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:13:32 +0000 (UTC) Subject: rpms/gnome-games/devel .cvsignore, 1.101, 1.102 gnome-games.spec, 1.217, 1.218 sources, 1.106, 1.107 Message-ID: <20090728051332.2995311C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17807 Modified Files: .cvsignore gnome-games.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/.cvsignore,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- .cvsignore 14 Jul 2009 04:24:01 -0000 1.101 +++ .cvsignore 28 Jul 2009 05:13:31 -0000 1.102 @@ -1 +1 @@ -gnome-games-2.27.4.tar.bz2 +gnome-games-2.27.5.tar.bz2 Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- gnome-games.spec 25 Jul 2009 00:38:33 -0000 1.217 +++ gnome-games.spec 28 Jul 2009 05:13:31 -0000 1.218 @@ -43,8 +43,8 @@ Summary: Games for the GNOME desktop Name: gnome-games -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Amusements/Games @@ -357,6 +357,9 @@ fi %files help -f help.lang %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/sources,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- sources 14 Jul 2009 04:24:01 -0000 1.106 +++ sources 28 Jul 2009 05:13:31 -0000 1.107 @@ -1 +1 @@ -36888f5825fbee4d0c8ffda3dcc82b5c gnome-games-2.27.4.tar.bz2 +07be56cc17cf8e1df16942caafd24d79 gnome-games-2.27.5.tar.bz2 From gouldwp at fedoraproject.org Tue Jul 28 05:21:19 2009 From: gouldwp at fedoraproject.org (gouldwp) Date: Tue, 28 Jul 2009 05:21:19 +0000 (UTC) Subject: rpms/netdisco/devel import.log, NONE, 1.1 netdisco.init, NONE, 1.1 netdisco.spec, NONE, 1.1 netdisco_config, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728052119.EF21011C00D4@cvs1.fedora.phx.redhat.com> Author: gouldwp Update of /cvs/pkgs/rpms/netdisco/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19871/devel Modified Files: .cvsignore sources Added Files: import.log netdisco.init netdisco.spec netdisco_config Log Message: --- NEW FILE import.log --- netdisco-0_95-2_fc11:HEAD:netdisco-0.95-2.fc11.src.rpm:1248740814 --- NEW FILE netdisco.init --- #!/bin/bash # # Startup script for the netdisco daemon # # chkconfig: - 345 95 5 # description: Startup/shutdown script for the Netdisco Admin Daemon # processname: netdisco # pidfile: /var/run/netdisco/netdisco.pid # config: /etc/netdisco.conf # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 RETVAL=0 # See how we were called. case "$1" in start) echo -n "Starting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p start" RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; stop) echo -n "Stopping netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p stop" RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; restart|reload) echo -n "Restarting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p restart" RETVAL=$? ;; status) status netdisco su -l netdisco -c "/usr/sbin/netdisco -p status" RETVAL=$? ;; *) echo "Usage: $0 {start|stop|restart|reload|status}" exit 1 esac exit $RETVAL --- NEW FILE netdisco.spec --- %define mibs_version 0.7 Name: netdisco Version: 0.95 Release: 2%{?dist} Summary: A web-based network management tool License: BSD Group: Applications/Internet URL: http://netdisco.org/ Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: http://downloads.sourceforge.net/project/%{name}/%{name}-mibs/%{mibs_version}/%{name}-mibs-%{mibs_version}.tar.gz Source2: netdisco.init Source3: netdisco_config BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: httpd Requires: postgresql postgresql-server Requires: net-snmp net-snmp-perl Requires: mod_perl mod_ssl Requires: graphviz Requires: perl(DBI) Requires: perl(Apache::DBI) Requires: perl(DBD::Pg) Requires: perl(Apache::Session) Requires: perl(HTML::Parser) Requires: perl(HTML::Mason) Requires: perl(MasonX::Request::WithApacheSession) Requires: perl(Graph) Requires: perl(GraphViz) Requires: perl(Compress::Zlib) Requires: perl(Net::NBName) Requires: perl-libapreq2 Requires: perl(SNMP::Info) Requires: perl(Parallel::ForkManager) Requires: perl(Net::LDAP) Requires: perl(Net::SSLeay) Requires: perl(IO::Socket::SSL) Requires(pre): /usr/sbin/useradd %description Netdisco is a network management application targeted at large corporate and university networks. Data is collected into a Postgres database using SNMP and presented with a clean web interface using Mason. Designed for moderate to large networks, configuration information and connection data for network devices are retrieved by SNMP. With Netdisco you can locate the switch port of an end-user system by IP or MAC address. Data is stored using a SQL database for scalability and speed. Layer-2 topology protocols such as CDP (Cisco Discovery Protocol) optionally provides automatic discovery of the network topology. %prep %setup -q -n %{name}-%{version} -a1 /usr/bin/iconv -f iso8859-1 -t utf-8 ChangeLog > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog %define debug_package %{nil} cp %{SOURCE2} netdisco.init cp %{SOURCE3} netdisco_config # prefix fix find -type f | xargs perl -pi -e "s|/usr/local/netdisco|/usr/share/netdisco|g" # perl path fix find -type f | xargs perl -pi -e "s|/usr/local/bin/perl|/usr/bin/perl|g" # shebang fix find -type f | xargs perl -pi -e "s|#/bin/sh|#!/bin/sh|g" # config file path fix perl -pi -e "s|\"\\\$Dir/netdisco\.conf\"\;|\'%{_sysconfdir}/netdisco\.conf\'\;|" sql/pg %build # make some man pages too :) pod2man netdisco > netdisco.1 pod2man netdisco.pm > netdisco.pm.1 %install rm -rf %{buildroot} install -d %{buildroot}%{_initrddir} install -d %{buildroot}%{_sysconfdir}/httpd/conf.d install -d %{buildroot}%{_sysconfdir}/logrotate.d install -d %{buildroot}%{_sysconfdir}/sysconfig install -d %{buildroot}%{_sbindir} install -d %{buildroot}%{_mandir}/man1 install -d %{buildroot}%_datadir/%{name}/switch install -d %{buildroot}%_datadir/%{name}/data/logs install -d %{buildroot}/var/run/netdisco install -d %{buildroot}%perl_vendorlib install -m0644 netdisco.conf %{buildroot}%{_sysconfdir}/ install -m0644 netdisco_apache.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0644 netdisco_apache_dir.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0755 netdisco %{buildroot}%{_sbindir}/ install -m0644 netdisco.1 %{buildroot}%{_mandir}/man1/ install -m0644 netdisco.pm.1 %{buildroot}%{_mandir}/man1/ install -m0755 netdisco.init %{buildroot}%{_initrddir}/netdisco install -m0755 netdisco_config %{buildroot}%{_sbindir}/netdisco_config install -m0644 netdisco.pm %{buildroot}/%perl_vendorlib/ %__cp -aRf * %{buildroot}%_datadir/%{name}/ %__mv %{buildroot}%_datadir/%{name}/%{name}-mibs-%{mibs_version} %{buildroot}%_datadir/%{name}/mibs/ %__rm -rf %{buildroot}%_datadir/%{name}/netdisco.conf %__ln_s %{_sysconfdir}/netdisco.conf %{buildroot}%_datadir/%{name}/netdisco.conf %__chmod 0644 %{buildroot}%_datadir/%{name}/mibs/cisco/CISCO-VSAN-MIB.my %pre %__mkdir %_datadir/%{name} /usr/sbin/useradd %{name} -d %_datadir/%{name}/ -s /bin/sh 1>&2 > /dev/null # apache needs to read /etc/netdisco.conf, but it contains a plain # text password to the postgresql netdisco database, so the file # requires stricter file permissions... /usr/bin/gpasswd -a apache netdisco 1>&2 > /dev/null %post if [ "$1" = "0" ]; then /sbin/chkconfig --add %{name} fi %preun if [ "$1" = "0" ]; then /sbin/service netdisco stop > /dev/null 2>&1 /sbin/chkconfig --del %{name} fi %clean %__rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ChangeLog INSTALL README* UPGRADE %{_initrddir}/netdisco %config(noreplace) %{_sysconfdir}/netdisco.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache_dir.conf %{_sbindir}/netdisco %{_sbindir}/netdisco_config %dir /var/run/netdisco %perl_vendorlib/netdisco.pm %dir %_datadir/netdisco %_datadir/netdisco/* %{_mandir}/man1/* %changelog * Sun Jul 26 2009 0.95-2 - Netdisco network management software. - Changed %%defattr(-,root,root) to %%defattr(-,root,root,-) in files section - Changed /usr/share/ to %%_datadir in the %%files section - Removed patches, substituted with find/perl/xargs replace lines - Removed explicit %%attr lines in %%files --- NEW FILE netdisco_config --- #!/bin/bash if [ "x`whoami`" != "xroot" ]; then echo 'You must be root to run this.' exit fi echo "" echo "[ netdisco_config ] Configuration Script for Netdicso" echo "" echo " * This script will configure Netdisco on a stock Fedora installation" echo "" echo "" echo "UNSUPPORTED - Please use at your own risk. " echo " This script was contributed by Kaven Rousseau and is untested." echo " This script was modified by Oden Eriksson " echo " This script was modified by Walter Gould for Fedora install" echo "" echo -n "Hit Return to continue or Ctrl-C to exit : " read foo # start postgresql echo "" echo "" echo "Starting postgresql......." echo "" echo "" /sbin/service postgresql initdb /etc/init.d/postgresql start sleep 3 # Edit pg_hba.conf file echo "" echo "" echo "Backing up and editing postgresql files......." echo "" echo "" cp /var/lib/pgsql/data/pg_hba.conf /var/lib/pgsql/data/pg_hba.conf.orig echo "# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD" > /var/lib/pgsql/data/pg_hba.conf echo "local all all trust" >> /var/lib/pgsql/data/pg_hba.conf echo "host all all 127.0.0.1 255.255.255.255 trust" >> /var/lib/pgsql/data/pg_hba.conf /etc/init.d/postgresql restart sleep 3 # netdisco config file echo "" echo "" echo "About to edit the netdisco config files.........." echo "" echo "" stty -echo echo -n "Enter Netdisco Database password: " read netdisco_passwd echo "" stty echo cat /etc/netdisco.conf | sed "s/dbpassword/$netdisco_passwd/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf cat /etc/httpd/conf.d/netdisco_apache.conf | sed "s/PASSWORDHERE/$netdisco_passwd/g" > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # echo -n "Enter domain name: " read domain_read echo "" cat /etc/netdisco.conf | sed "s/mycompany\.com/$domain_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP read string: " read snmp_read echo "" cat /etc/netdisco.conf | sed "s/public/$snmp_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP write string: " read snmp_write echo "" cat /etc/netdisco.conf | sed "s/private/$snmp_write/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # # # Making Apache2 - Modperl2 changes cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule perl_module libexec\/apache2\/mod_perl.so/LoadModule perl_module \/usr\/lib\/httpd\/modules\/mod_perl.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule apreq_module libexec\/apache2\/mod_apreq2.so/LoadModule apreq_module \/usr\/lib\/httpd\/modules\/mod_apreq2.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#PerlModule/PerlModule/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # # Stop apache errors at startup mv -f /etc/httpd/conf.d/apreq.conf /etc/httpd/conf.d/apreq.conf.orig mv -f /etc/httpd/conf.d/perl.conf /etc/httpd/conf.d/perl.conf.orig # cat /etc/httpd/conf.d/netdisco_apache_dir.conf | sed 's/Alias \/netdisco\//#Alias \/netdisco\//' > /tmp/netdisco_apache_dir.conf.$$ mv -f /tmp/netdisco_apache_dir.conf.$$ /etc/httpd/conf.d/netdisco_apache_dir.conf echo "" echo "" echo "Creating Netdisco database tables........" echo "" echo "" cd /usr/share/netdisco/sql ./pg --init > /dev/null 2>&1 # echo "" echo "" echo "" echo "Finished creating Netdisco database tables........" echo "" echo "" cd $curdir sleep 3 # oui database echo "Populating the OUI database for Netdisco........" cd /usr/share/netdisco /usr/bin/wget -q http://standards.ieee.org/regauth/oui/oui.txt /usr/sbin/netdisco -O > /dev/null 2>&1 echo "" echo "" echo "" echo "Finished installing OUI database........" echo "" echo "" sleep 3 # crontab echo "" echo "" echo "About to setup netdisco crontab........" echo "" echo "" echo -n "Enter center CDP device for network discovery: " read center_dev cat /usr/share/netdisco/netdisco.crontab | sed "s/center_network_device/$center_dev/g" > /tmp/netdisco.crontab.$$ mv -f /tmp/netdisco.crontab.$$ /usr/share/netdisco/netdisco.crontab crontab -u netdisco /usr/share/netdisco/netdisco.crontab sleep 3 echo "" echo "" echo "Finished setting up netdisco crontab........" echo "" echo "" sleep 3 # fix permissions chown -R netdisco.netdisco /usr/share/netdisco chcon system_u:object_r:etc_t:s0 /etc/netdisco.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache_dir.conf mkdir /usr/share/netdisco/mason/ chcon -R system_u:object_r:httpd_sys_content_t:s0 /usr/share/netdisco/mason/ # touch /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chcon system_u:object_r:usr_t:s0 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chmod 644 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chown netdisco:netdisco /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif /etc/init.d/postgresql start /etc/init.d/httpd start # Start postgres and httpd at system startup /sbin/chkconfig postgresql on /sbin/chkconfig httpd on # create netdisco user - and start netdisco echo "" echo "" echo "About to create netdisco admin user........" echo "" echo "" echo "" /usr/sbin/netdisco -u admin # Discover, macsuck and graph process echo "" echo "" echo "" echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "Netdisco is about to discover your network, perform a macsuck on each device, and" echo "setup your network graph." echo "" echo "This portion of the install process may take some time, depending on the size of your" echo "network. Please be patient and don't cancel out of it. This would be a good time" echo "to get up and take a break, get a drink or go to lunch...." echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "" echo "" echo "" sleep 10 /usr/sbin/netdisco -r $center_dev /usr/sbin/netdisco -m /usr/sbin/netdisco -g > /dev/null 2>&1 echo "" echo "" echo " Starting up Netdisco front-end........" echo "" echo "" /etc/init.d/netdisco start echo "" echo "" echo "" echo "Netdisco Installation completed!!!!" echo "" echo "" ipaddress=`/sbin/ifconfig eth0 | grep "inet addr:" | cut -c21-36 | cut -d' ' -f1` echo "Login via https://$ipaddress/netdisco/" echo "" echo "" echo "Enjoy!!!" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:42:54 -0000 1.1 +++ .cvsignore 28 Jul 2009 05:21:19 -0000 1.2 @@ -0,0 +1,2 @@ +netdisco-0.95.tar.gz +netdisco-mibs-0.7.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:42:54 -0000 1.1 +++ sources 28 Jul 2009 05:21:19 -0000 1.2 @@ -0,0 +1,2 @@ +24ff61ee909fcdb47eb837967dbb67be netdisco-0.95.tar.gz +35b656bdb8506f0b413c4abab44523e6 netdisco-mibs-0.7.tar.gz From mclasen at fedoraproject.org Tue Jul 28 05:22:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 05:22:16 +0000 (UTC) Subject: rpms/yelp/devel .cvsignore, 1.51, 1.52 sources, 1.53, 1.54 yelp.spec, 1.165, 1.166 Message-ID: <20090728052216.369D811C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/yelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20292 Modified Files: .cvsignore sources yelp.spec Log Message: 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 29 Jun 2009 12:37:32 -0000 1.51 +++ .cvsignore 28 Jul 2009 05:22:15 -0000 1.52 @@ -1 +1 @@ -yelp-2.27.2.tar.bz2 +yelp-2.27.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/sources,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- sources 29 Jun 2009 12:37:32 -0000 1.53 +++ sources 28 Jul 2009 05:22:16 -0000 1.54 @@ -1 +1 @@ -d505151c9bc39278119f4edf5dd636c1 yelp-2.27.2.tar.bz2 +d1a2294818e6fd5baa2b528df482a873 yelp-2.27.3.tar.bz2 Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/yelp.spec,v retrieving revision 1.165 retrieving revision 1.166 diff -u -p -r1.165 -r1.166 --- yelp.spec 27 Jul 2009 08:53:46 -0000 1.165 +++ yelp.spec 28 Jul 2009 05:22:16 -0000 1.166 @@ -18,8 +18,8 @@ Summary: Help browser for the GNOME desktop Name: yelp -Version: 2.27.2 -Release: 4%{?dist} +Version: 2.27.3 +Release: 1%{?dist} Source: http://download.gnome.org/sources/yelp/2.27/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp Patch1: yelp-2.15.5-fedora-docs.patch @@ -157,6 +157,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.3-1 +- Update to 2.27.3 + * Mon Jul 27 2009 Fedora Release Engineering - 2.27.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From gouldwp at fedoraproject.org Tue Jul 28 05:27:19 2009 From: gouldwp at fedoraproject.org (gouldwp) Date: Tue, 28 Jul 2009 05:27:19 +0000 (UTC) Subject: rpms/netdisco/F-11 import.log, NONE, 1.1 netdisco.init, NONE, 1.1 netdisco.spec, NONE, 1.1 netdisco_config, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728052719.62FAF11C00D4@cvs1.fedora.phx.redhat.com> Author: gouldwp Update of /cvs/pkgs/rpms/netdisco/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21750/F-11 Modified Files: .cvsignore sources Added Files: import.log netdisco.init netdisco.spec netdisco_config Log Message: --- NEW FILE import.log --- netdisco-0_95-2_fc11:F-11:netdisco-0.95-2.fc11.src.rpm:1248758778 --- NEW FILE netdisco.init --- #!/bin/bash # # Startup script for the netdisco daemon # # chkconfig: - 345 95 5 # description: Startup/shutdown script for the Netdisco Admin Daemon # processname: netdisco # pidfile: /var/run/netdisco/netdisco.pid # config: /etc/netdisco.conf # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 RETVAL=0 # See how we were called. case "$1" in start) echo -n "Starting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p start" RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; stop) echo -n "Stopping netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p stop" RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; restart|reload) echo -n "Restarting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p restart" RETVAL=$? ;; status) status netdisco su -l netdisco -c "/usr/sbin/netdisco -p status" RETVAL=$? ;; *) echo "Usage: $0 {start|stop|restart|reload|status}" exit 1 esac exit $RETVAL --- NEW FILE netdisco.spec --- %define mibs_version 0.7 Name: netdisco Version: 0.95 Release: 2%{?dist} Summary: A web-based network management tool License: BSD Group: Applications/Internet URL: http://netdisco.org/ Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: http://downloads.sourceforge.net/project/%{name}/%{name}-mibs/%{mibs_version}/%{name}-mibs-%{mibs_version}.tar.gz Source2: netdisco.init Source3: netdisco_config BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: httpd Requires: postgresql postgresql-server Requires: net-snmp net-snmp-perl Requires: mod_perl mod_ssl Requires: graphviz Requires: perl(DBI) Requires: perl(Apache::DBI) Requires: perl(DBD::Pg) Requires: perl(Apache::Session) Requires: perl(HTML::Parser) Requires: perl(HTML::Mason) Requires: perl(MasonX::Request::WithApacheSession) Requires: perl(Graph) Requires: perl(GraphViz) Requires: perl(Compress::Zlib) Requires: perl(Net::NBName) Requires: perl-libapreq2 Requires: perl(SNMP::Info) Requires: perl(Parallel::ForkManager) Requires: perl(Net::LDAP) Requires: perl(Net::SSLeay) Requires: perl(IO::Socket::SSL) Requires(pre): /usr/sbin/useradd %description Netdisco is a network management application targeted at large corporate and university networks. Data is collected into a Postgres database using SNMP and presented with a clean web interface using Mason. Designed for moderate to large networks, configuration information and connection data for network devices are retrieved by SNMP. With Netdisco you can locate the switch port of an end-user system by IP or MAC address. Data is stored using a SQL database for scalability and speed. Layer-2 topology protocols such as CDP (Cisco Discovery Protocol) optionally provides automatic discovery of the network topology. %prep %setup -q -n %{name}-%{version} -a1 /usr/bin/iconv -f iso8859-1 -t utf-8 ChangeLog > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog %define debug_package %{nil} cp %{SOURCE2} netdisco.init cp %{SOURCE3} netdisco_config # prefix fix find -type f | xargs perl -pi -e "s|/usr/local/netdisco|/usr/share/netdisco|g" # perl path fix find -type f | xargs perl -pi -e "s|/usr/local/bin/perl|/usr/bin/perl|g" # shebang fix find -type f | xargs perl -pi -e "s|#/bin/sh|#!/bin/sh|g" # config file path fix perl -pi -e "s|\"\\\$Dir/netdisco\.conf\"\;|\'%{_sysconfdir}/netdisco\.conf\'\;|" sql/pg %build # make some man pages too :) pod2man netdisco > netdisco.1 pod2man netdisco.pm > netdisco.pm.1 %install rm -rf %{buildroot} install -d %{buildroot}%{_initrddir} install -d %{buildroot}%{_sysconfdir}/httpd/conf.d install -d %{buildroot}%{_sysconfdir}/logrotate.d install -d %{buildroot}%{_sysconfdir}/sysconfig install -d %{buildroot}%{_sbindir} install -d %{buildroot}%{_mandir}/man1 install -d %{buildroot}%_datadir/%{name}/switch install -d %{buildroot}%_datadir/%{name}/data/logs install -d %{buildroot}/var/run/netdisco install -d %{buildroot}%perl_vendorlib install -m0644 netdisco.conf %{buildroot}%{_sysconfdir}/ install -m0644 netdisco_apache.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0644 netdisco_apache_dir.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0755 netdisco %{buildroot}%{_sbindir}/ install -m0644 netdisco.1 %{buildroot}%{_mandir}/man1/ install -m0644 netdisco.pm.1 %{buildroot}%{_mandir}/man1/ install -m0755 netdisco.init %{buildroot}%{_initrddir}/netdisco install -m0755 netdisco_config %{buildroot}%{_sbindir}/netdisco_config install -m0644 netdisco.pm %{buildroot}/%perl_vendorlib/ %__cp -aRf * %{buildroot}%_datadir/%{name}/ %__mv %{buildroot}%_datadir/%{name}/%{name}-mibs-%{mibs_version} %{buildroot}%_datadir/%{name}/mibs/ %__rm -rf %{buildroot}%_datadir/%{name}/netdisco.conf %__ln_s %{_sysconfdir}/netdisco.conf %{buildroot}%_datadir/%{name}/netdisco.conf %__chmod 0644 %{buildroot}%_datadir/%{name}/mibs/cisco/CISCO-VSAN-MIB.my %pre %__mkdir %_datadir/%{name} /usr/sbin/useradd %{name} -d %_datadir/%{name}/ -s /bin/sh 1>&2 > /dev/null # apache needs to read /etc/netdisco.conf, but it contains a plain # text password to the postgresql netdisco database, so the file # requires stricter file permissions... /usr/bin/gpasswd -a apache netdisco 1>&2 > /dev/null %post if [ "$1" = "0" ]; then /sbin/chkconfig --add %{name} fi %preun if [ "$1" = "0" ]; then /sbin/service netdisco stop > /dev/null 2>&1 /sbin/chkconfig --del %{name} fi %clean %__rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ChangeLog INSTALL README* UPGRADE %{_initrddir}/netdisco %config(noreplace) %{_sysconfdir}/netdisco.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache_dir.conf %{_sbindir}/netdisco %{_sbindir}/netdisco_config %dir /var/run/netdisco %perl_vendorlib/netdisco.pm %dir %_datadir/netdisco %_datadir/netdisco/* %{_mandir}/man1/* %changelog * Sun Jul 26 2009 0.95-2 - Netdisco network management software. - Changed %%defattr(-,root,root) to %%defattr(-,root,root,-) in files section - Changed /usr/share/ to %%_datadir in the %%files section - Removed patches, substituted with find/perl/xargs replace lines - Removed explicit %%attr lines in %%files --- NEW FILE netdisco_config --- #!/bin/bash if [ "x`whoami`" != "xroot" ]; then echo 'You must be root to run this.' exit fi echo "" echo "[ netdisco_config ] Configuration Script for Netdicso" echo "" echo " * This script will configure Netdisco on a stock Fedora installation" echo "" echo "" echo "UNSUPPORTED - Please use at your own risk. " echo " This script was contributed by Kaven Rousseau and is untested." echo " This script was modified by Oden Eriksson " echo " This script was modified by Walter Gould for Fedora install" echo "" echo -n "Hit Return to continue or Ctrl-C to exit : " read foo # start postgresql echo "" echo "" echo "Starting postgresql......." echo "" echo "" /sbin/service postgresql initdb /etc/init.d/postgresql start sleep 3 # Edit pg_hba.conf file echo "" echo "" echo "Backing up and editing postgresql files......." echo "" echo "" cp /var/lib/pgsql/data/pg_hba.conf /var/lib/pgsql/data/pg_hba.conf.orig echo "# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD" > /var/lib/pgsql/data/pg_hba.conf echo "local all all trust" >> /var/lib/pgsql/data/pg_hba.conf echo "host all all 127.0.0.1 255.255.255.255 trust" >> /var/lib/pgsql/data/pg_hba.conf /etc/init.d/postgresql restart sleep 3 # netdisco config file echo "" echo "" echo "About to edit the netdisco config files.........." echo "" echo "" stty -echo echo -n "Enter Netdisco Database password: " read netdisco_passwd echo "" stty echo cat /etc/netdisco.conf | sed "s/dbpassword/$netdisco_passwd/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf cat /etc/httpd/conf.d/netdisco_apache.conf | sed "s/PASSWORDHERE/$netdisco_passwd/g" > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # echo -n "Enter domain name: " read domain_read echo "" cat /etc/netdisco.conf | sed "s/mycompany\.com/$domain_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP read string: " read snmp_read echo "" cat /etc/netdisco.conf | sed "s/public/$snmp_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP write string: " read snmp_write echo "" cat /etc/netdisco.conf | sed "s/private/$snmp_write/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # # # Making Apache2 - Modperl2 changes cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule perl_module libexec\/apache2\/mod_perl.so/LoadModule perl_module \/usr\/lib\/httpd\/modules\/mod_perl.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule apreq_module libexec\/apache2\/mod_apreq2.so/LoadModule apreq_module \/usr\/lib\/httpd\/modules\/mod_apreq2.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#PerlModule/PerlModule/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # # Stop apache errors at startup mv -f /etc/httpd/conf.d/apreq.conf /etc/httpd/conf.d/apreq.conf.orig mv -f /etc/httpd/conf.d/perl.conf /etc/httpd/conf.d/perl.conf.orig # cat /etc/httpd/conf.d/netdisco_apache_dir.conf | sed 's/Alias \/netdisco\//#Alias \/netdisco\//' > /tmp/netdisco_apache_dir.conf.$$ mv -f /tmp/netdisco_apache_dir.conf.$$ /etc/httpd/conf.d/netdisco_apache_dir.conf echo "" echo "" echo "Creating Netdisco database tables........" echo "" echo "" cd /usr/share/netdisco/sql ./pg --init > /dev/null 2>&1 # echo "" echo "" echo "" echo "Finished creating Netdisco database tables........" echo "" echo "" cd $curdir sleep 3 # oui database echo "Populating the OUI database for Netdisco........" cd /usr/share/netdisco /usr/bin/wget -q http://standards.ieee.org/regauth/oui/oui.txt /usr/sbin/netdisco -O > /dev/null 2>&1 echo "" echo "" echo "" echo "Finished installing OUI database........" echo "" echo "" sleep 3 # crontab echo "" echo "" echo "About to setup netdisco crontab........" echo "" echo "" echo -n "Enter center CDP device for network discovery: " read center_dev cat /usr/share/netdisco/netdisco.crontab | sed "s/center_network_device/$center_dev/g" > /tmp/netdisco.crontab.$$ mv -f /tmp/netdisco.crontab.$$ /usr/share/netdisco/netdisco.crontab crontab -u netdisco /usr/share/netdisco/netdisco.crontab sleep 3 echo "" echo "" echo "Finished setting up netdisco crontab........" echo "" echo "" sleep 3 # fix permissions chown -R netdisco.netdisco /usr/share/netdisco chcon system_u:object_r:etc_t:s0 /etc/netdisco.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache_dir.conf mkdir /usr/share/netdisco/mason/ chcon -R system_u:object_r:httpd_sys_content_t:s0 /usr/share/netdisco/mason/ # touch /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chcon system_u:object_r:usr_t:s0 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chmod 644 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chown netdisco:netdisco /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif /etc/init.d/postgresql start /etc/init.d/httpd start # Start postgres and httpd at system startup /sbin/chkconfig postgresql on /sbin/chkconfig httpd on # create netdisco user - and start netdisco echo "" echo "" echo "About to create netdisco admin user........" echo "" echo "" echo "" /usr/sbin/netdisco -u admin # Discover, macsuck and graph process echo "" echo "" echo "" echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "Netdisco is about to discover your network, perform a macsuck on each device, and" echo "setup your network graph." echo "" echo "This portion of the install process may take some time, depending on the size of your" echo "network. Please be patient and don't cancel out of it. This would be a good time" echo "to get up and take a break, get a drink or go to lunch...." echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "" echo "" echo "" sleep 10 /usr/sbin/netdisco -r $center_dev /usr/sbin/netdisco -m /usr/sbin/netdisco -g > /dev/null 2>&1 echo "" echo "" echo " Starting up Netdisco front-end........" echo "" echo "" /etc/init.d/netdisco start echo "" echo "" echo "" echo "Netdisco Installation completed!!!!" echo "" echo "" ipaddress=`/sbin/ifconfig eth0 | grep "inet addr:" | cut -c21-36 | cut -d' ' -f1` echo "Login via https://$ipaddress/netdisco/" echo "" echo "" echo "Enjoy!!!" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:42:54 -0000 1.1 +++ .cvsignore 28 Jul 2009 05:27:18 -0000 1.2 @@ -0,0 +1,2 @@ +netdisco-0.95.tar.gz +netdisco-mibs-0.7.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:42:54 -0000 1.1 +++ sources 28 Jul 2009 05:27:19 -0000 1.2 @@ -0,0 +1,2 @@ +24ff61ee909fcdb47eb837967dbb67be netdisco-0.95.tar.gz +35b656bdb8506f0b413c4abab44523e6 netdisco-mibs-0.7.tar.gz From gouldwp at fedoraproject.org Tue Jul 28 05:30:15 2009 From: gouldwp at fedoraproject.org (gouldwp) Date: Tue, 28 Jul 2009 05:30:15 +0000 (UTC) Subject: rpms/netdisco/EL-5 import.log, NONE, 1.1 netdisco.init, NONE, 1.1 netdisco.spec, NONE, 1.1 netdisco_config, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728053015.9F3AA11C00D4@cvs1.fedora.phx.redhat.com> Author: gouldwp Update of /cvs/pkgs/rpms/netdisco/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22559/EL-5 Modified Files: .cvsignore sources Added Files: import.log netdisco.init netdisco.spec netdisco_config Log Message: --- NEW FILE import.log --- netdisco-0_95-2_fc11:EL-5:netdisco-0.95-2.fc11.src.rpm:1248758950 --- NEW FILE netdisco.init --- #!/bin/bash # # Startup script for the netdisco daemon # # chkconfig: - 345 95 5 # description: Startup/shutdown script for the Netdisco Admin Daemon # processname: netdisco # pidfile: /var/run/netdisco/netdisco.pid # config: /etc/netdisco.conf # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 RETVAL=0 # See how we were called. case "$1" in start) echo -n "Starting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p start" RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; stop) echo -n "Stopping netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p stop" RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/netdisco /var/run/netdisco/netdisco.pid ;; restart|reload) echo -n "Restarting netdisco admin daemon:" su -l netdisco -c "/usr/sbin/netdisco -p restart" RETVAL=$? ;; status) status netdisco su -l netdisco -c "/usr/sbin/netdisco -p status" RETVAL=$? ;; *) echo "Usage: $0 {start|stop|restart|reload|status}" exit 1 esac exit $RETVAL --- NEW FILE netdisco.spec --- %define mibs_version 0.7 Name: netdisco Version: 0.95 Release: 2%{?dist} Summary: A web-based network management tool License: BSD Group: Applications/Internet URL: http://netdisco.org/ Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: http://downloads.sourceforge.net/project/%{name}/%{name}-mibs/%{mibs_version}/%{name}-mibs-%{mibs_version}.tar.gz Source2: netdisco.init Source3: netdisco_config BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: httpd Requires: postgresql postgresql-server Requires: net-snmp net-snmp-perl Requires: mod_perl mod_ssl Requires: graphviz Requires: perl(DBI) Requires: perl(Apache::DBI) Requires: perl(DBD::Pg) Requires: perl(Apache::Session) Requires: perl(HTML::Parser) Requires: perl(HTML::Mason) Requires: perl(MasonX::Request::WithApacheSession) Requires: perl(Graph) Requires: perl(GraphViz) Requires: perl(Compress::Zlib) Requires: perl(Net::NBName) Requires: perl-libapreq2 Requires: perl(SNMP::Info) Requires: perl(Parallel::ForkManager) Requires: perl(Net::LDAP) Requires: perl(Net::SSLeay) Requires: perl(IO::Socket::SSL) Requires(pre): /usr/sbin/useradd %description Netdisco is a network management application targeted at large corporate and university networks. Data is collected into a Postgres database using SNMP and presented with a clean web interface using Mason. Designed for moderate to large networks, configuration information and connection data for network devices are retrieved by SNMP. With Netdisco you can locate the switch port of an end-user system by IP or MAC address. Data is stored using a SQL database for scalability and speed. Layer-2 topology protocols such as CDP (Cisco Discovery Protocol) optionally provides automatic discovery of the network topology. %prep %setup -q -n %{name}-%{version} -a1 /usr/bin/iconv -f iso8859-1 -t utf-8 ChangeLog > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog %define debug_package %{nil} cp %{SOURCE2} netdisco.init cp %{SOURCE3} netdisco_config # prefix fix find -type f | xargs perl -pi -e "s|/usr/local/netdisco|/usr/share/netdisco|g" # perl path fix find -type f | xargs perl -pi -e "s|/usr/local/bin/perl|/usr/bin/perl|g" # shebang fix find -type f | xargs perl -pi -e "s|#/bin/sh|#!/bin/sh|g" # config file path fix perl -pi -e "s|\"\\\$Dir/netdisco\.conf\"\;|\'%{_sysconfdir}/netdisco\.conf\'\;|" sql/pg %build # make some man pages too :) pod2man netdisco > netdisco.1 pod2man netdisco.pm > netdisco.pm.1 %install rm -rf %{buildroot} install -d %{buildroot}%{_initrddir} install -d %{buildroot}%{_sysconfdir}/httpd/conf.d install -d %{buildroot}%{_sysconfdir}/logrotate.d install -d %{buildroot}%{_sysconfdir}/sysconfig install -d %{buildroot}%{_sbindir} install -d %{buildroot}%{_mandir}/man1 install -d %{buildroot}%_datadir/%{name}/switch install -d %{buildroot}%_datadir/%{name}/data/logs install -d %{buildroot}/var/run/netdisco install -d %{buildroot}%perl_vendorlib install -m0644 netdisco.conf %{buildroot}%{_sysconfdir}/ install -m0644 netdisco_apache.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0644 netdisco_apache_dir.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/ install -m0755 netdisco %{buildroot}%{_sbindir}/ install -m0644 netdisco.1 %{buildroot}%{_mandir}/man1/ install -m0644 netdisco.pm.1 %{buildroot}%{_mandir}/man1/ install -m0755 netdisco.init %{buildroot}%{_initrddir}/netdisco install -m0755 netdisco_config %{buildroot}%{_sbindir}/netdisco_config install -m0644 netdisco.pm %{buildroot}/%perl_vendorlib/ %__cp -aRf * %{buildroot}%_datadir/%{name}/ %__mv %{buildroot}%_datadir/%{name}/%{name}-mibs-%{mibs_version} %{buildroot}%_datadir/%{name}/mibs/ %__rm -rf %{buildroot}%_datadir/%{name}/netdisco.conf %__ln_s %{_sysconfdir}/netdisco.conf %{buildroot}%_datadir/%{name}/netdisco.conf %__chmod 0644 %{buildroot}%_datadir/%{name}/mibs/cisco/CISCO-VSAN-MIB.my %pre %__mkdir %_datadir/%{name} /usr/sbin/useradd %{name} -d %_datadir/%{name}/ -s /bin/sh 1>&2 > /dev/null # apache needs to read /etc/netdisco.conf, but it contains a plain # text password to the postgresql netdisco database, so the file # requires stricter file permissions... /usr/bin/gpasswd -a apache netdisco 1>&2 > /dev/null %post if [ "$1" = "0" ]; then /sbin/chkconfig --add %{name} fi %preun if [ "$1" = "0" ]; then /sbin/service netdisco stop > /dev/null 2>&1 /sbin/chkconfig --del %{name} fi %clean %__rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ChangeLog INSTALL README* UPGRADE %{_initrddir}/netdisco %config(noreplace) %{_sysconfdir}/netdisco.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache.conf %config(noreplace) %{_sysconfdir}/httpd/conf.d/netdisco_apache_dir.conf %{_sbindir}/netdisco %{_sbindir}/netdisco_config %dir /var/run/netdisco %perl_vendorlib/netdisco.pm %dir %_datadir/netdisco %_datadir/netdisco/* %{_mandir}/man1/* %changelog * Sun Jul 26 2009 0.95-2 - Netdisco network management software. - Changed %%defattr(-,root,root) to %%defattr(-,root,root,-) in files section - Changed /usr/share/ to %%_datadir in the %%files section - Removed patches, substituted with find/perl/xargs replace lines - Removed explicit %%attr lines in %%files --- NEW FILE netdisco_config --- #!/bin/bash if [ "x`whoami`" != "xroot" ]; then echo 'You must be root to run this.' exit fi echo "" echo "[ netdisco_config ] Configuration Script for Netdicso" echo "" echo " * This script will configure Netdisco on a stock Fedora installation" echo "" echo "" echo "UNSUPPORTED - Please use at your own risk. " echo " This script was contributed by Kaven Rousseau and is untested." echo " This script was modified by Oden Eriksson " echo " This script was modified by Walter Gould for Fedora install" echo "" echo -n "Hit Return to continue or Ctrl-C to exit : " read foo # start postgresql echo "" echo "" echo "Starting postgresql......." echo "" echo "" /sbin/service postgresql initdb /etc/init.d/postgresql start sleep 3 # Edit pg_hba.conf file echo "" echo "" echo "Backing up and editing postgresql files......." echo "" echo "" cp /var/lib/pgsql/data/pg_hba.conf /var/lib/pgsql/data/pg_hba.conf.orig echo "# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD" > /var/lib/pgsql/data/pg_hba.conf echo "local all all trust" >> /var/lib/pgsql/data/pg_hba.conf echo "host all all 127.0.0.1 255.255.255.255 trust" >> /var/lib/pgsql/data/pg_hba.conf /etc/init.d/postgresql restart sleep 3 # netdisco config file echo "" echo "" echo "About to edit the netdisco config files.........." echo "" echo "" stty -echo echo -n "Enter Netdisco Database password: " read netdisco_passwd echo "" stty echo cat /etc/netdisco.conf | sed "s/dbpassword/$netdisco_passwd/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf cat /etc/httpd/conf.d/netdisco_apache.conf | sed "s/PASSWORDHERE/$netdisco_passwd/g" > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # echo -n "Enter domain name: " read domain_read echo "" cat /etc/netdisco.conf | sed "s/mycompany\.com/$domain_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP read string: " read snmp_read echo "" cat /etc/netdisco.conf | sed "s/public/$snmp_read/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # echo -n "Enter SNMP write string: " read snmp_write echo "" cat /etc/netdisco.conf | sed "s/private/$snmp_write/g" > /tmp/netdisco.conf.$$ mv -f /tmp/netdisco.conf.$$ /etc/netdisco.conf # # # Making Apache2 - Modperl2 changes cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule perl_module libexec\/apache2\/mod_perl.so/LoadModule perl_module \/usr\/lib\/httpd\/modules\/mod_perl.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#LoadModule apreq_module libexec\/apache2\/mod_apreq2.so/LoadModule apreq_module \/usr\/lib\/httpd\/modules\/mod_apreq2.so/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # cat /etc/httpd/conf.d/netdisco_apache.conf | sed 's/#PerlModule/PerlModule/' > /tmp/netdisco_apache.conf.$$ mv -f /tmp/netdisco_apache.conf.$$ /etc/httpd/conf.d/netdisco_apache.conf # # Stop apache errors at startup mv -f /etc/httpd/conf.d/apreq.conf /etc/httpd/conf.d/apreq.conf.orig mv -f /etc/httpd/conf.d/perl.conf /etc/httpd/conf.d/perl.conf.orig # cat /etc/httpd/conf.d/netdisco_apache_dir.conf | sed 's/Alias \/netdisco\//#Alias \/netdisco\//' > /tmp/netdisco_apache_dir.conf.$$ mv -f /tmp/netdisco_apache_dir.conf.$$ /etc/httpd/conf.d/netdisco_apache_dir.conf echo "" echo "" echo "Creating Netdisco database tables........" echo "" echo "" cd /usr/share/netdisco/sql ./pg --init > /dev/null 2>&1 # echo "" echo "" echo "" echo "Finished creating Netdisco database tables........" echo "" echo "" cd $curdir sleep 3 # oui database echo "Populating the OUI database for Netdisco........" cd /usr/share/netdisco /usr/bin/wget -q http://standards.ieee.org/regauth/oui/oui.txt /usr/sbin/netdisco -O > /dev/null 2>&1 echo "" echo "" echo "" echo "Finished installing OUI database........" echo "" echo "" sleep 3 # crontab echo "" echo "" echo "About to setup netdisco crontab........" echo "" echo "" echo -n "Enter center CDP device for network discovery: " read center_dev cat /usr/share/netdisco/netdisco.crontab | sed "s/center_network_device/$center_dev/g" > /tmp/netdisco.crontab.$$ mv -f /tmp/netdisco.crontab.$$ /usr/share/netdisco/netdisco.crontab crontab -u netdisco /usr/share/netdisco/netdisco.crontab sleep 3 echo "" echo "" echo "Finished setting up netdisco crontab........" echo "" echo "" sleep 3 # fix permissions chown -R netdisco.netdisco /usr/share/netdisco chcon system_u:object_r:etc_t:s0 /etc/netdisco.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache.conf chcon system_u:object_r:httpd_config_t:s0 /etc/httpd/conf.d/netdisco_apache_dir.conf mkdir /usr/share/netdisco/mason/ chcon -R system_u:object_r:httpd_sys_content_t:s0 /usr/share/netdisco/mason/ # touch /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chcon system_u:object_r:usr_t:s0 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chmod 644 /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif chown netdisco:netdisco /usr/share/netdisco/html/netmap.map /usr/share/netdisco/html/netmap.gif /etc/init.d/postgresql start /etc/init.d/httpd start # Start postgres and httpd at system startup /sbin/chkconfig postgresql on /sbin/chkconfig httpd on # create netdisco user - and start netdisco echo "" echo "" echo "About to create netdisco admin user........" echo "" echo "" echo "" /usr/sbin/netdisco -u admin # Discover, macsuck and graph process echo "" echo "" echo "" echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "Netdisco is about to discover your network, perform a macsuck on each device, and" echo "setup your network graph." echo "" echo "This portion of the install process may take some time, depending on the size of your" echo "network. Please be patient and don't cancel out of it. This would be a good time" echo "to get up and take a break, get a drink or go to lunch...." echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "" echo "" echo "" sleep 10 /usr/sbin/netdisco -r $center_dev /usr/sbin/netdisco -m /usr/sbin/netdisco -g > /dev/null 2>&1 echo "" echo "" echo " Starting up Netdisco front-end........" echo "" echo "" /etc/init.d/netdisco start echo "" echo "" echo "" echo "Netdisco Installation completed!!!!" echo "" echo "" ipaddress=`/sbin/ifconfig eth0 | grep "inet addr:" | cut -c21-36 | cut -d' ' -f1` echo "Login via https://$ipaddress/netdisco/" echo "" echo "" echo "Enjoy!!!" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:42:54 -0000 1.1 +++ .cvsignore 28 Jul 2009 05:30:15 -0000 1.2 @@ -0,0 +1,2 @@ +netdisco-0.95.tar.gz +netdisco-mibs-0.7.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netdisco/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:42:54 -0000 1.1 +++ sources 28 Jul 2009 05:30:15 -0000 1.2 @@ -0,0 +1,2 @@ +24ff61ee909fcdb47eb837967dbb67be netdisco-0.95.tar.gz +35b656bdb8506f0b413c4abab44523e6 netdisco-mibs-0.7.tar.gz From itamarjp at fedoraproject.org Tue Jul 28 05:33:28 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 05:33:28 +0000 (UTC) Subject: rpms/callweaver/devel import.log, NONE, 1.1 callweaver.spec, 1.18, 1.19 Message-ID: <20090728053328.4B40611C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/callweaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23565/devel Modified Files: callweaver.spec Added Files: import.log Log Message: - fix bz #473572 /var/lib/callweaver not packaged - fix bz #511302 callweaver should build with compat-readline5-devel - fix postgresql includes-dir --- NEW FILE import.log --- callweaver-1_2_0_1-5_fc12:HEAD:callweaver-1.2.0.1-5.fc12.src.rpm:1248759154 Index: callweaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/callweaver.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- callweaver.spec 24 Jul 2009 18:38:51 -0000 1.18 +++ callweaver.spec 28 Jul 2009 05:33:28 -0000 1.19 @@ -7,7 +7,7 @@ Name: callweaver Version: 1.2.0.1 -Release: 4%{?snap:.%{snap}}%{?dist} +Release: 5%{?snap:.%{snap}}%{?dist} Summary: The Truly Open Source PBX Group: Applications/Internet @@ -27,7 +27,7 @@ BuildRequires: fedora-usermgmt-devel blu BuildRequires: libjpeg-devel loudmouth-devel nspr-devel js-devel ncurses-devel BuildRequires: unixODBC-devel openssl-devel speex-devel alsa-lib-devel BuildRequires: isdn4k-utils-devel libcap-devel sqlite-devel mysql-devel -BuildRequires: postgresql-devel readline-devel %{?with_misdn:mISDN-devel} +BuildRequires: postgresql-devel compat-readline5-devel %{?with_misdn:mISDN-devel} BuildRequires: popt-devel %{?with_zaptel:zaptel-devel libpri-devel} Requires: /sbin/chkconfig @@ -175,27 +175,38 @@ convenient interface between CallWeaver %prep -%setup0 -q +%setup0 -q %patch1 -p1 %build %if 0%{?snap} ./bootstrap.sh %endif + +# fix bz #511302 callweaver should build with compat-readline5-devel +# The readline package in rawhide will be soon updated to new 6.0 release which +# changes the license to GPLv3+. As callweaver is GPLv2, it should be built with +# the older readline (packaged in compat-readline5) to avoid licensing +# incompatibility or switched to libedit which is compatible with GPLv3, but +# doesn't support UTF-8. + +export CPPFLAGS="-I%{_includedir}/readline5" LDFLAGS="-L%{_libdir}/readline5" + # res_sqlite seems to use internal functions of sqlite3 which don't # even _exist_ in current versions. Disable it until it's fixed. %configure --with-directory-layout=lsb --with-chan_bluetooth \ --with-chan_fax --with-chan_capi --with-chan_alsa --with-app_ldap \ --disable-zaptel --enable-t38 --enable-postgresql --with-cdr-pgsql \ - --with-res_config_pqsql --with-cdr-odbc --with-res_config_odbc \ + --with-res_config_pqsql --with-pgsql-inc=%{_includedir} \ + --with-cdr-odbc --with-res_config_odbc \ --with-perl-shebang='#! /usr/bin/perl' --disable-builtin-sqlite3 \ --enable-javascript --with-res_js --enable-fast-install \ %{?with_misdn:--with-chan_misdn} \ %{?with_zaptel:--enable-zaptel} \ --enable-jabber --with-res_jabber \ --enable-mysql --with-res_config_mysql --with-cdr_mysql - + # Poxy fscking libtool is _such_ a pile of crap... #sed -i 's/^CC="gcc"/CC="gcc -Wl,--as-needed"/' libtool @@ -211,13 +222,13 @@ mv doc/README.{misdn,chan_capi,res_jabbe %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT/%{_libdir}/callweaver/modules/*.la -rm -f $RPM_BUILD_ROOT/%{_libdir}/callweaver/*.a -rm -f $RPM_BUILD_ROOT/%{_libdir}/callweaver/*.la -mkdir -p $RPM_BUILD_ROOT%{_initrddir} -install -m0755 contrib/fedora/callweaver $RPM_BUILD_ROOT%{_initrddir}/callweaver -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d -install -m0644 contrib/fedora/callweaver.logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/callweaver + +#remove .a and .la files +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' +find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';' + +install -Dp -m 0755 contrib/fedora/callweaver $RPM_BUILD_ROOT%{_initrddir}/callweaver +install -Dp -m 0644 contrib/fedora/callweaver.logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/callweaver mv $RPM_BUILD_ROOT/%{_datadir}/callweaver/ogi/eogi-*test $RPM_BUILD_ROOT/%{_sbindir} @@ -231,6 +242,8 @@ rm -rf $RPM_BUILD_ROOT/%{_datadir}/callw rm -f $RPM_BUILD_ROOT/%{_sbindir}/safe_callweaver rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/safe_callweaver.8 +#fix bz 473572 /var/lib/callweaver not packaged (todo - send a patch to upstream to fix this) +mkdir -p $RPM_BUILD_ROOT%{_sharedstatedir}/%{name} %clean rm -rf $RPM_BUILD_ROOT @@ -277,6 +290,10 @@ test "$1" != 0 || /sbin/chkconfig --del %attr(2755,callweaver,callweaver) %{_localstatedir}/spool/callweaver %attr(0755,callweaver,callweaver) %{_localstatedir}/log/callweaver %attr(0755,callweaver,callweaver) %{_localstatedir}/run/callweaver + +#fix bz 473572 +%attr(0755,callweaver,callweaver) %{_sharedstatedir}/%{name} + # Unneeded %exclude %{_sysconfdir}/callweaver/cdr_tds.conf # Separately packaged @@ -377,6 +394,11 @@ test "$1" != 0 || /sbin/chkconfig --del %{_sbindir}/eogi* %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 1.2.0.1-5 +- fix bz #473572 /var/lib/callweaver not packaged +- fix bz #511302 callweaver should build with compat-readline5-devel +- fix postgresql includes-dir + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cweyl at fedoraproject.org Tue Jul 28 05:38:16 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Tue, 28 Jul 2009 05:38:16 +0000 (UTC) Subject: rpms/perl-MooseX-AttributeHelpers/devel .cvsignore, 1.10, 1.11 perl-MooseX-AttributeHelpers.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090728053816.B069A11C00D4@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-MooseX-AttributeHelpers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25003 Modified Files: .cvsignore perl-MooseX-AttributeHelpers.spec sources Log Message: * Tue Jul 28 2009 Chris Weyl 0.21-1 - auto-update to 0.21 (by cpan-spec-update 0.01) - added a new br on perl(Test::Moose) (version 0) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-MooseX-AttributeHelpers/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 16 Jun 2009 04:49:02 -0000 1.10 +++ .cvsignore 28 Jul 2009 05:38:16 -0000 1.11 @@ -1 +1 @@ -MooseX-AttributeHelpers-0.19.tar.gz +MooseX-AttributeHelpers-0.21.tar.gz Index: perl-MooseX-AttributeHelpers.spec =================================================================== RCS file: /cvs/extras/rpms/perl-MooseX-AttributeHelpers/devel/perl-MooseX-AttributeHelpers.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-MooseX-AttributeHelpers.spec 26 Jul 2009 11:24:44 -0000 1.15 +++ perl-MooseX-AttributeHelpers.spec 28 Jul 2009 05:38:16 -0000 1.16 @@ -1,11 +1,11 @@ Name: perl-MooseX-AttributeHelpers -Version: 0.19 -Release: 2%{?dist} +Version: 0.21 +Release: 1%{?dist} Summary: Extended Moose attribute interfaces License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/MooseX-AttributeHelpers/ -Source0: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/MooseX-AttributeHelpers-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/MooseX-AttributeHelpers-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -13,6 +13,7 @@ Requires: perl(:MODULE_COMPAT_%(ev BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 BuildRequires: perl(Moose) >= 0.56 BuildRequires: perl(Test::Exception) >= 0.21 +BuildRequires: perl(Test::Moose) BuildRequires: perl(Test::More) >= 0.62 ### auto-added reqs! @@ -63,6 +64,10 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Tue Jul 28 2009 Chris Weyl 0.21-1 +- auto-update to 0.21 (by cpan-spec-update 0.01) +- added a new br on perl(Test::Moose) (version 0) + * Sun Jul 26 2009 Fedora Release Engineering - 0.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-MooseX-AttributeHelpers/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 16 Jun 2009 04:49:02 -0000 1.10 +++ sources 28 Jul 2009 05:38:16 -0000 1.11 @@ -1 +1 @@ -0b14915d881c7cfe3d4e2aa8892aaa62 MooseX-AttributeHelpers-0.19.tar.gz +991e3217572bde0e8d9731442fd7879d MooseX-AttributeHelpers-0.21.tar.gz From elcody02 at fedoraproject.org Tue Jul 28 05:38:55 2009 From: elcody02 at fedoraproject.org (Marc Grimme) Date: Tue, 28 Jul 2009 05:38:55 +0000 (UTC) Subject: rpms/comoonics-cdsl-py/devel comoonics-cdsl-py.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728053855.3BC3511C00D4@cvs1.fedora.phx.redhat.com> Author: elcody02 Update of /cvs/pkgs/rpms/comoonics-cdsl-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25111/devel Modified Files: .cvsignore sources Added Files: comoonics-cdsl-py.spec import.log Log Message: * Tue Jul 28 2009 Marc Grimme 0.2-16 - initial import --- NEW FILE comoonics-cdsl-py.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define modulename comoonics Summary: Comoonics cdsl utilities and library written in Python Name: comoonics-cdsl-py Version: 0.2 Release: 16 Source0: http://www.open-sharedroot.org/development/comoonics-cdsl-py/comoonics-cdsl-py-%{version}.tar.gz License: GPLv2+ Group: Development/Libraries BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python PyXML comoonics-base-py comoonics-cluster-py Url: http://www.open-sharedroot.org/development/comoonics-cdsl-py BuildRequires: python-devel %description Comoonics cdsl utilities and library written in Python %prep %setup -q %build python setup.py %{name} build %install rm -rf $RPM_BUILD_ROOT python setup.py %{name} install --root=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{python_sitelib}/*.egg-info %dir %{python_sitelib}/comoonics/cdsl %{python_sitelib}/comoonics/cdsl/*.py %{python_sitelib}/comoonics/cdsl/*.pyc %{python_sitelib}/comoonics/cdsl/*.pyo /usr/share/man/man1/com-mkcdslinfrastructure.1.gz /usr/share/man/man1/com-mkcdsl.1.gz /usr/share/man/man1/com-cdslinvchk.1.gz /usr/share/man/man1/com-rmcdsl.1.gz %attr(0755, root, root) /usr/bin/com-mkcdsl %attr(0755, root, root) /usr/bin/com-mkcdslinfrastructure %attr(0755, root, root) /usr/bin/com-cdslinvchk %attr(0755, root, root) /usr/bin/com-rmcdsl %doc README.txt LICENSE.txt %changelog * Tue Jul 21 2009 MG , 0.2-16 - Made Fedora compliant * Tue Jul 14 2009 MG , 0.2-15 - Made dependent on comoonics-base-py * Mon Jul 06 2009 MG , 0.2-14 - Made python 2.6 compatible - review/write off whole code * Tue Feb 24 2009 MG , 0.2-12 - To understand error messages better - removed more * includes * Wed Jun 04 2008 MG , 0.2-11 - changed error msgs - removed * includes - introduced constants * Tue Apr 08 2008 AO , 0.2-9 - Added support to prepare filesystem for additional nodes (copy defaultdir) - changed comoonicsCdslRepository to handle initialisations with less than five options - changed CdslRepository to expect filenames without a maybe used chroot-directory - changed CdslValidate to not delete an old logfile, instead of change it to logfile.old - changed binaries to fix use of log parameters * Thu Jan 24 2008 MG , 0.2-8 - rebuild for rpmspecfile updates * Mon Sep 10 2007 AO , 0.2-7 - Fixed Bug BZ #104 by adding requirement comoonics-cluster-py to build-script - Added documention for ComoonicsCdsl._pathdepth() - Replaced some code which removes content before recreation in cdsl_link when force is set (line 339/354 in ComCdsl.py) * Mon Sep 10 2007 AO , 0.2-3 - Fixed Bug BZ #104 by adding requirement comoonics-cluster-py to build-script - Added documention for ComoonicsCdsl._pathdepth() - Replaced some code which removes content before recreation in cdsl_link when force is set (line 339/354 in ComCdsl.py) * Thu Sep 06 2007 AO , 0.2-2 - Fixed Bugs BZ #102 and #103 * Thu Sep 04 2007 MH , 0.2-1 - new version - added rmcdsls * Thu Sep 04 2007 MH , 0.1-5 - removed rmcdsls for this release * Thu Sep 04 2007 AO , 0.1-4 - Added possibility to delete cdsls - Added manpages, automatically generated from docbook - Fixed behaviour when working with chroot * Fri Aug 06 2007 AO , 0.1-3 fixes #78 * Fri Aug 06 2007 AO , 0.1-2 bug fixes * Fri Aug 03 2007 AO , 0.1-1 initial revision --- NEW FILE import.log --- comoonics-cdsl-py-0_2-16:HEAD:comoonics-cdsl-py-0.2-16.src.rpm:1248759462 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-cdsl-py/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:47:53 -0000 1.1 +++ .cvsignore 28 Jul 2009 05:38:55 -0000 1.2 @@ -0,0 +1 @@ +comoonics-cdsl-py-0.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-cdsl-py/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:47:53 -0000 1.1 +++ sources 28 Jul 2009 05:38:55 -0000 1.2 @@ -0,0 +1 @@ +6816633d154a6cb81af41ea3c96cdd34 comoonics-cdsl-py-0.2.tar.gz From gouldwp at fedoraproject.org Tue Jul 28 05:45:36 2009 From: gouldwp at fedoraproject.org (gouldwp) Date: Tue, 28 Jul 2009 05:45:36 +0000 (UTC) Subject: rpms/perl-SNMP-Info/EL-5 .cvsignore, 1.2, 1.3 perl-SNMP-Info.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728054536.BD85811C00D4@cvs1.fedora.phx.redhat.com> Author: gouldwp Update of /cvs/pkgs/rpms/perl-SNMP-Info/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27743 Modified Files: .cvsignore perl-SNMP-Info.spec sources Log Message: Update to 2.01 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-SNMP-Info/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Jan 2008 22:45:53 -0000 1.2 +++ .cvsignore 28 Jul 2009 05:45:36 -0000 1.3 @@ -1 +1 @@ -SNMP-Info-1.04.tar.gz +SNMP-Info-2.01.tar.gz Index: perl-SNMP-Info.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SNMP-Info/EL-5/perl-SNMP-Info.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SNMP-Info.spec 22 Jan 2008 22:45:53 -0000 1.1 +++ perl-SNMP-Info.spec 28 Jul 2009 05:45:36 -0000 1.2 @@ -1,11 +1,11 @@ Name: perl-SNMP-Info -Version: 1.04 -Release: 3%{?dist} +Version: 2.01 +Release: 1%{?dist} Summary: Object Oriented Perl5 Interface to Network devices and MIBs through SNMP License: BSD Group: Development/Libraries URL: http://search.cpan.org/dist/SNMP-Info/ -Source0: http://www.cpan.org/authors/id/E/EM/EMILLER/SNMP-Info-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MAXB/SNMP-Info-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) @@ -49,7 +49,5 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog -* Fri Dec 28 2007 1.04-3 -- Specfile autogenerated by cpanspec 1.74. -- Added missing BuildRequires lines. -- Added iconv lines to fixed file encoding problems. +* Thu Jun 18 2009 2.01-1 +- upgrade to 2.01 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-SNMP-Info/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Jan 2008 22:45:53 -0000 1.2 +++ sources 28 Jul 2009 05:45:36 -0000 1.3 @@ -1 +1 @@ -2cf580f142b7300fc12336b83c85f5eb SNMP-Info-1.04.tar.gz +d58af8e67f9dba1d7a8971358a256fc3 SNMP-Info-2.01.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 05:49:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:40 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchbugzilla Message-ID: <20090728054940.98EE610F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on chrpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:41 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchcommits Message-ID: <20090728054941.49D4E10F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on chrpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:41 +0000 Subject: [pkgdb] chrpath: itamarjp has requested commit Message-ID: <20090728054942.0819F10F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on chrpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:44 +0000 Subject: [pkgdb] chrpath: itamarjp has requested approveacls Message-ID: <20090728054944.4771010F8B0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on chrpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:55 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchcommits Message-ID: <20090728054955.17A3A10F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on chrpath (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:57 +0000 Subject: [pkgdb] chrpath: itamarjp has requested commit Message-ID: <20090728054957.CA36F10F8B8@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on chrpath (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:49:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:49:59 +0000 Subject: [pkgdb] chrpath: itamarjp has requested approveacls Message-ID: <20090728054959.B5CFC10F8BD@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on chrpath (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:01 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchbugzilla Message-ID: <20090728055001.34EF810F8C1@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on chrpath (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:03 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchbugzilla Message-ID: <20090728055003.6F0C310F8C6@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on chrpath (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:06 +0000 Subject: [pkgdb] chrpath: itamarjp has requested approveacls Message-ID: <20090728055006.868BD10F897@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on chrpath (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:07 +0000 Subject: [pkgdb] chrpath: itamarjp has requested commit Message-ID: <20090728055007.9013110F8C9@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on chrpath (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:08 +0000 Subject: [pkgdb] chrpath: itamarjp has requested watchcommits Message-ID: <20090728055008.6062310F8CC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on chrpath (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chrpath From pkgdb at fedoraproject.org Tue Jul 28 05:50:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 05:50:54 +0000 Subject: [pkgdb] clutter had acl change status Message-ID: <20090728055054.BF0DA10F8B9@bastion2.fedora.phx.redhat.com> itamarjp has set the watchbugzilla acl on clutter (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From jcollie at fedoraproject.org Tue Jul 28 05:59:26 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 05:59:26 +0000 (UTC) Subject: rpms/pitivi/devel .cvsignore, 1.15, 1.16 pitivi.spec, 1.36, 1.37 sources, 1.15, 1.16 0001-Fix-non-utf-8-ness-in-ChangeLog.patch, 1.2, NONE Message-ID: <20090728055926.528D811C00D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/pitivi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31985 Modified Files: .cvsignore pitivi.spec sources Removed Files: 0001-Fix-non-utf-8-ness-in-ChangeLog.patch Log Message: * Mon Jul 27 2009 Jeffrey C. Ollie - 0.13.1.2-1 - Update to prerelease Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 28 May 2009 14:18:18 -0000 1.15 +++ .cvsignore 28 Jul 2009 05:59:25 -0000 1.16 @@ -1 +1 @@ -pitivi-0.13.1.tar.bz2 +pitivi-0.13.1.2.tar.bz2 Index: pitivi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/devel/pitivi.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- pitivi.spec 26 Jul 2009 18:50:37 -0000 1.36 +++ pitivi.spec 28 Jul 2009 05:59:26 -0000 1.37 @@ -1,19 +1,18 @@ %define major 0.13 -%define minor 1 +%define minor 1.2 Name: pitivi Version: %{major}.%{minor} -Release: 2.1%{?dist} +Release: 1%{?dist} Summary: Non-linear video editor Group: Applications/Multimedia License: LGPLv2+ URL: http://www.pitivi.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/pitivi/%{major}/pitivi-%{version}.tar.bz2 -Patch0: 0001-Fix-non-utf-8-ness-in-ChangeLog.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: gnonlin >= 0.10.11 +Requires: gnonlin >= 0.10.11.2 Requires: gstreamer-python >= 0.10.15 Requires: gstreamer >= 0.10.23 Requires: pygtk2 >= 2.12.0 @@ -23,7 +22,7 @@ Requires: pygoocanvas BuildRequires: gstreamer-devel >= 0.10.23 BuildRequires: gstreamer-plugins-base-devel >= 0.10.23 -BuildRequires: gnonlin >= 0.10.10.3 +BuildRequires: gnonlin >= 0.10.11.2 BuildRequires: gstreamer-python >= 0.10.15 BuildRequires: GConf2-devel BuildRequires: gtk2-devel >= 2.8 @@ -46,7 +45,6 @@ program. %prep %setup0 -q -%patch0 -p1 for f in `find . -name \*.py` do @@ -81,6 +79,9 @@ rm -rf %{buildroot} %{_datadir}/mime/packages/pitivi.xml %changelog +* Mon Jul 27 2009 Jeffrey C. Ollie - 0.13.1.2-1 +- Update to prerelease + * Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 28 May 2009 14:18:18 -0000 1.15 +++ sources 28 Jul 2009 05:59:26 -0000 1.16 @@ -1 +1 @@ -a925ac7404f0235d22ec09479696ccd6 pitivi-0.13.1.tar.bz2 +d642eb3c2aa2d8497598948162a0ddfc pitivi-0.13.1.2.tar.bz2 --- 0001-Fix-non-utf-8-ness-in-ChangeLog.patch DELETED --- From jspaleta at fedoraproject.org Tue Jul 28 06:13:54 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Tue, 28 Jul 2009 06:13:54 +0000 (UTC) Subject: rpms/gpodder/devel gpodder.spec,1.30,1.31 Message-ID: <20090728061355.0B52211C00D4@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/gpodder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4014 Modified Files: gpodder.spec Log Message: * Mon Jul 27 2009 Jef Spaleta - 0.17.0-1 - New upstream release, fixes multiple bugs since 0.16.1. Index: gpodder.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/gpodder.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gpodder.spec 25 Jul 2009 01:18:21 -0000 1.30 +++ gpodder.spec 28 Jul 2009 06:13:53 -0000 1.31 @@ -2,8 +2,8 @@ Name: gpodder -Version: 0.16.1 -Release: 3%{?dist} +Version: 0.17.0 +Release: 1%{?dist} Summary: Podcast receiver/catcher written in Python Group: Applications/Multimedia @@ -78,6 +78,9 @@ fi %{python_sitelib}/%{name}*.egg-info %changelog +* Mon Jul 27 2009 Jef Spaleta - 0.17.0-1 +- New upstream release, fixes multiple bugs since 0.16.1. + * Fri Jul 24 2009 Fedora Release Engineering - 0.16.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jspaleta at fedoraproject.org Tue Jul 28 06:22:13 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Tue, 28 Jul 2009 06:22:13 +0000 (UTC) Subject: rpms/gpodder/devel .cvsignore, 1.23, 1.24 gpodder.spec, 1.31, 1.32 sources, 1.23, 1.24 Message-ID: <20090728062213.32F0F11C00D4@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/gpodder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6246 Modified Files: .cvsignore gpodder.spec sources Log Message: * Mon Jul 27 2009 Jef Spaleta - 0.17.0-2 - New upstream release, fixes multiple bugs since 0.16.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 15 Jun 2009 00:52:06 -0000 1.23 +++ .cvsignore 28 Jul 2009 06:22:11 -0000 1.24 @@ -1 +1 @@ -gpodder-0.16.1.tar.gz +gpodder-0.17.0.tar.gz Index: gpodder.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/gpodder.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- gpodder.spec 28 Jul 2009 06:13:53 -0000 1.31 +++ gpodder.spec 28 Jul 2009 06:22:12 -0000 1.32 @@ -3,7 +3,7 @@ Name: gpodder Version: 0.17.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Podcast receiver/catcher written in Python Group: Applications/Multimedia @@ -78,7 +78,7 @@ fi %{python_sitelib}/%{name}*.egg-info %changelog -* Mon Jul 27 2009 Jef Spaleta - 0.17.0-1 +* Mon Jul 27 2009 Jef Spaleta - 0.17.0-2 - New upstream release, fixes multiple bugs since 0.16.1. * Fri Jul 24 2009 Fedora Release Engineering - 0.16.1-3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 15 Jun 2009 00:52:07 -0000 1.23 +++ sources 28 Jul 2009 06:22:12 -0000 1.24 @@ -1 +1 @@ -b97bccb2d0f33dcbf40a42684f344f84 gpodder-0.16.1.tar.gz +0290e4dee16a3220fc28d970d7ab4f9f gpodder-0.17.0.tar.gz From liangsuilong at fedoraproject.org Tue Jul 28 06:33:19 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Tue, 28 Jul 2009 06:33:19 +0000 (UTC) Subject: rpms/perl-Goo-Canvas/devel perl-Goo-Canvas.spec,1.3,1.4 Message-ID: <20090728063319.862F211C00D4@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Goo-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8878 Modified Files: perl-Goo-Canvas.spec Log Message: Index: perl-Goo-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Goo-Canvas/devel/perl-Goo-Canvas.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Goo-Canvas.spec 27 Jul 2009 15:48:19 -0000 1.3 +++ perl-Goo-Canvas.spec 28 Jul 2009 06:33:18 -0000 1.4 @@ -14,7 +14,8 @@ BuildRequires: perl(Cairo) >= 1.00 BuildRequires: perl(ExtUtils::Depends) >= 0.2 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.0 -BuildRequires: perl(Glib::MakeHelper) >= 1.103 +BuildRequires: perl(Glib) >= 1.103 +BuildRequires: perl-Glib-devel >=1.103 BuildRequires: perl(Gtk2) >= 1.100 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -61,6 +62,10 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/* %changelog +* Sun Jul 28 2009 Liang Suilong 0.06-5 +- Change BuildRequires from perl(Glib::MakeHelper) to perl(Glib) +- Add BR: perl-Glib-devel >= 1.103 + * Sun Jul 27 2009 Liang Suilong 0.06-4 - Change BuildRequires from perl(Glib) to perl(Glib::MakeHelper) From liangsuilong at fedoraproject.org Tue Jul 28 06:34:18 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Tue, 28 Jul 2009 06:34:18 +0000 (UTC) Subject: rpms/perl-Goo-Canvas/devel perl-Goo-Canvas.spec,1.4,1.5 Message-ID: <20090728063418.2B8EF11C00D4@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Goo-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9245 Modified Files: perl-Goo-Canvas.spec Log Message: Index: perl-Goo-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Goo-Canvas/devel/perl-Goo-Canvas.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Goo-Canvas.spec 28 Jul 2009 06:33:18 -0000 1.4 +++ perl-Goo-Canvas.spec 28 Jul 2009 06:34:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Goo-Canvas Version: 0.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl interface to the GooCanvas License: GPL+ or Artistic Group: Development/Libraries From jspaleta at fedoraproject.org Tue Jul 28 06:35:16 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Tue, 28 Jul 2009 06:35:16 +0000 (UTC) Subject: rpms/gpodder/F-11 gpodder.spec,1.27,1.28 sources,1.22,1.23 Message-ID: <20090728063516.6E71011C00D4@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/gpodder/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9695 Modified Files: gpodder.spec sources Log Message: * Mon Jul 27 2009 Jef Spaleta - 0.17.0-2 - New upstream release, fixes multiple bugs since 0.16.1. Index: gpodder.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/F-11/gpodder.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gpodder.spec 13 Apr 2009 18:34:05 -0000 1.27 +++ gpodder.spec 28 Jul 2009 06:35:15 -0000 1.28 @@ -2,8 +2,8 @@ Name: gpodder -Version: 0.15.2 -Release: 1%{?dist} +Version: 0.17.0 +Release: 2%{?dist} Summary: Podcast receiver/catcher written in Python Group: Applications/Multimedia @@ -12,7 +12,7 @@ URL: http://gpodder.berlios.d Source0: http://download.berlios.de/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: python-devel ImageMagick +BuildRequires: python-devel,ImageMagick,python-feedparser BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool @@ -67,6 +67,7 @@ fi %defattr(-,root,root,-) %doc COPYING README INSTALL %{_bindir}/%{name} +%{_bindir}/gpo %{_bindir}/%{name}-backup %{_datadir}/%{name}/ %{_datadir}/icons/hicolor/ @@ -77,6 +78,18 @@ fi %{python_sitelib}/%{name}*.egg-info %changelog +* Mon Jul 27 2009 Jef Spaleta - 0.17.0-2 +- New upstream release, fixes multiple bugs since 0.16.1. + +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jul 2 2009 - 0.16.1-2 jpaleta +- feedparser buildrequires fix + +* Sun Jun 14 2009 - 0.16.1-1 jpaleta +- new upstream point release new features and bug fixes. See upstream website for details. + * Mon Apr 13 2009 - 0.15.2-1 jpaleta - new upstream point release with multiple bug fixes and updates translations. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 13 Apr 2009 18:34:06 -0000 1.22 +++ sources 28 Jul 2009 06:35:16 -0000 1.23 @@ -1 +1 @@ -7ca7256604f6e65bedb45aa856d3de37 gpodder-0.15.2.tar.gz +0290e4dee16a3220fc28d970d7ab4f9f gpodder-0.17.0.tar.gz From liangsuilong at fedoraproject.org Tue Jul 28 06:36:18 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Tue, 28 Jul 2009 06:36:18 +0000 (UTC) Subject: rpms/perl-Goo-Canvas/devel perl-Goo-Canvas.spec,1.5,1.6 Message-ID: <20090728063618.446E411C00D4@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Goo-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10158 Modified Files: perl-Goo-Canvas.spec Log Message: Index: perl-Goo-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Goo-Canvas/devel/perl-Goo-Canvas.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Goo-Canvas.spec 28 Jul 2009 06:34:17 -0000 1.5 +++ perl-Goo-Canvas.spec 28 Jul 2009 06:36:17 -0000 1.6 @@ -15,7 +15,7 @@ BuildRequires: perl(ExtUtils::Depends) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.0 BuildRequires: perl(Glib) >= 1.103 -BuildRequires: perl-Glib-devel >=1.103 +BuildRequires: perl-Glib-devel BuildRequires: perl(Gtk2) >= 1.100 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -64,7 +64,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sun Jul 28 2009 Liang Suilong 0.06-5 - Change BuildRequires from perl(Glib::MakeHelper) to perl(Glib) -- Add BR: perl-Glib-devel >= 1.103 +- Add BR: perl-Glib-devel * Sun Jul 27 2009 Liang Suilong 0.06-4 - Change BuildRequires from perl(Glib) to perl(Glib::MakeHelper) From liangsuilong at fedoraproject.org Tue Jul 28 07:01:28 2009 From: liangsuilong at fedoraproject.org (=?utf-8?b?5qKB56mX6ZqG?=) Date: Tue, 28 Jul 2009 07:01:28 +0000 (UTC) Subject: rpms/perl-Gnome2-Wnck/devel perl-Gnome2-Wnck.spec,1.3,1.4 Message-ID: <20090728070129.1BE1211C00D4@cvs1.fedora.phx.redhat.com> Author: liangsuilong Update of /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18035 Modified Files: perl-Gnome2-Wnck.spec Log Message: Index: perl-Gnome2-Wnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel/perl-Gnome2-Wnck.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gnome2-Wnck.spec 27 Jul 2009 15:05:30 -0000 1.3 +++ perl-Gnome2-Wnck.spec 28 Jul 2009 07:01:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Wnck Version: 0.16 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl interface to the Window Navigator Construction Kit License: LGPLv2+ Group: Development/Libraries @@ -10,7 +10,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: perl(ExtUtils::Depends) >= 0.20 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 -BuildRequires: perl(Glib::MakeHelper) >= 1.180 +BuildRequires: perl(Glib) >= 1.180 +BuildRequires: perl-Glib-devel BuildRequires: perl(Gtk2) >= 1.00 BuildRequires: libXres-devel BuildRequires: libwnck-devel @@ -55,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 28 2009 Liang Suilong 0.16-7 +- Change BuildRequires from perl(Glib::MakeHelper) to perl(Glib) +- Add BR: perl-Glib-devel + * Sun Jul 27 2009 Liang Suilong 0.16-6 - Change BuildRequires from perl(Glib) to perl(Glib::MakeHelper) From ondrejj at fedoraproject.org Tue Jul 28 07:05:04 2009 From: ondrejj at fedoraproject.org (ondrejj) Date: Tue, 28 Jul 2009 07:05:04 +0000 (UTC) Subject: rpms/sagator/EL-5 .cvsignore, 1.4, 1.5 import.log, 1.2, 1.3 sources, 1.4, 1.5 sagator-remove-virus.diff, 1.1, NONE sagator.spec, 1.9, NONE Message-ID: <20090728070504.A47B911C00D4@cvs1.fedora.phx.redhat.com> Author: ondrejj Update of /cvs/pkgs/rpms/sagator/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19287/EL-5 Modified Files: .cvsignore import.log sources Removed Files: sagator-remove-virus.diff sagator.spec Log Message: Update for current clamav Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 Mar 2009 10:55:18 -0000 1.4 +++ .cvsignore 28 Jul 2009 07:05:03 -0000 1.5 @@ -1 +1 @@ -sagator-1.1.1.tar.bz2 +sagator-1.2.0-0.rc5.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 9 Mar 2009 10:55:18 -0000 1.2 +++ import.log 28 Jul 2009 07:05:03 -0000 1.3 @@ -1,2 +1,3 @@ sagator-1_1_0-1_fc9:EL-5:sagator-1.1.0-1.fc9.src.rpm:1216030000 sagator-1_1_1-1_fc10:EL-5:sagator-1.1.1-1.fc10.src.rpm:1236596078 +sagator-1_2_0-0_rc5_fc11:EL-5:sagator-1.2.0-0.rc5.fc11.src.rpm:1248764651 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 Mar 2009 10:55:18 -0000 1.4 +++ sources 28 Jul 2009 07:05:04 -0000 1.5 @@ -1 +1 @@ -a8be96499866353a56d4b49b1c3c2cd2 sagator-1.1.1.tar.bz2 +99742fb66d2b9061f1da218169bb9981 sagator-1.2.0-0.rc5.tar.bz2 --- sagator-remove-virus.diff DELETED --- --- sagator.spec DELETED --- From silas at fedoraproject.org Tue Jul 28 07:07:51 2009 From: silas at fedoraproject.org (Silas Sewell) Date: Tue, 28 Jul 2009 07:07:51 +0000 (UTC) Subject: rpms/lxc/devel import.log, NONE, 1.1 lxc-0.6.3.netlink-fix.patch, NONE, 1.1 lxc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728070751.1D96811C00D4@cvs1.fedora.phx.redhat.com> Author: silas Update of /cvs/pkgs/rpms/lxc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20136/devel Modified Files: .cvsignore sources Added Files: import.log lxc-0.6.3.netlink-fix.patch lxc.spec Log Message: * Mon Jul 27 2009 Silas Sewell - 0.6.3-2 - Apply patch for rawhide kernel. * Sat Jul 25 2009 Silas Sewell - 0.6.3-1 - Initial package. --- NEW FILE import.log --- lxc-0_6_3-2_fc11:HEAD:lxc-0.6.3-2.fc11.src.rpm:1248764868 lxc-0.6.3.netlink-fix.patch: configure.ac | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) --- NEW FILE lxc-0.6.3.netlink-fix.patch --- diff -up lxc-0.6.3/configure.ac.orig lxc-0.6.3/configure.ac --- lxc-0.6.3/configure.ac.orig 2009-07-28 00:59:14.737542987 -0400 +++ lxc-0.6.3/configure.ac 2009-07-28 01:03:22.907540449 -0400 @@ -25,10 +25,11 @@ AS_AC_EXPAND(LOCALSTATEDIR, $localstated AS_AC_EXPAND(LXCPATH, "${localstatedir}/lib/lxc") AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)") -AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], [], AC_MSG_ERROR([netlink headers not found. Please install the linux kernel headers.]), -[#include -#include -#include ]) +AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], + [], + AC_MSG_ERROR([netlink headers not found. Please install the linux kernel headers.]), + [#include + ]) AC_CHECK_HEADERS([sys/capability.h], [], AC_MSG_ERROR([please install libcap-devel.]), [#include --- NEW FILE lxc.spec --- Name: lxc Version: 0.6.3 Release: 2%{?dist} Summary: Linux Resource Containers Group: Applications/System License: LGPLv2+ URL: http://lxc.sourceforge.net Source0: http://lxc.sourceforge.net/download/lxc/%{name}-%{version}.tar.gz # Upstream commit 90e0a869ac5f3a889487126568f1d3c7c34b7046 Patch0: lxc-0.6.3.netlink-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: automake BuildRequires: docbook-utils BuildRequires: kernel-headers BuildRequires: libcap-devel BuildRequires: libtool %description Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. %package libs Summary: Runtime library files for %{name} Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} %description libs Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. The %{name}-libs package contains libraries for running %{name} applications. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q %patch0 -p1 %build ./autogen.sh %configure F77=no --enable-static=no %{__make} %{?_smp_mflags} %install rm -rf %{buildroot} %{__make} DESTDIR=%{buildroot} install find %{buildroot} -name '*.la' -delete %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/* %{_bindir}/%{name}-* %{_libexecdir}/%{name}-init %{_mandir}/man*/%{name}* %files libs %defattr(-,root,root,-) %doc COPYING %{_libdir}/liblxc-%{version}.so %files devel %defattr(-,root,root,-) %doc COPYING %{_datadir}/pkgconfig/%{name}.pc %{_includedir}/* %{_libdir}/liblxc.so %changelog * Mon Jul 27 2009 Silas Sewell - 0.6.3-2 - Apply patch for rawhide kernel. * Sat Jul 25 2009 Silas Sewell - 0.6.3-1 - Initial package. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxc/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 19:33:56 -0000 1.1 +++ .cvsignore 28 Jul 2009 07:07:50 -0000 1.2 @@ -0,0 +1 @@ +lxc-0.6.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxc/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 19:33:56 -0000 1.1 +++ sources 28 Jul 2009 07:07:50 -0000 1.2 @@ -0,0 +1 @@ +417bb6dd61ba0c65996df5c3adbb549f lxc-0.6.3.tar.gz From silas at fedoraproject.org Tue Jul 28 07:18:22 2009 From: silas at fedoraproject.org (Silas Sewell) Date: Tue, 28 Jul 2009 07:18:22 +0000 (UTC) Subject: rpms/lxc/F-11 lxc-0.6.3.netlink-fix.patch, NONE, 1.1 lxc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728071822.A6FD211C00D4@cvs1.fedora.phx.redhat.com> Author: silas Update of /cvs/pkgs/rpms/lxc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23446/F-11 Modified Files: .cvsignore sources Added Files: lxc-0.6.3.netlink-fix.patch lxc.spec Log Message: * Mon Jul 27 2009 Silas Sewell - 0.6.3-2 - Apply patch for rawhide kernel. * Sat Jul 25 2009 Silas Sewell - 0.6.3-1 - Initial package. lxc-0.6.3.netlink-fix.patch: configure.ac | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) --- NEW FILE lxc-0.6.3.netlink-fix.patch --- diff -up lxc-0.6.3/configure.ac.orig lxc-0.6.3/configure.ac --- lxc-0.6.3/configure.ac.orig 2009-07-28 00:59:14.737542987 -0400 +++ lxc-0.6.3/configure.ac 2009-07-28 01:03:22.907540449 -0400 @@ -25,10 +25,11 @@ AS_AC_EXPAND(LOCALSTATEDIR, $localstated AS_AC_EXPAND(LXCPATH, "${localstatedir}/lib/lxc") AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)") -AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], [], AC_MSG_ERROR([netlink headers not found. Please install the linux kernel headers.]), -[#include -#include -#include ]) +AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], + [], + AC_MSG_ERROR([netlink headers not found. Please install the linux kernel headers.]), + [#include + ]) AC_CHECK_HEADERS([sys/capability.h], [], AC_MSG_ERROR([please install libcap-devel.]), [#include --- NEW FILE lxc.spec --- Name: lxc Version: 0.6.3 Release: 2%{?dist} Summary: Linux Resource Containers Group: Applications/System License: LGPLv2+ URL: http://lxc.sourceforge.net Source0: http://lxc.sourceforge.net/download/lxc/%{name}-%{version}.tar.gz # Upstream commit 90e0a869ac5f3a889487126568f1d3c7c34b7046 Patch0: lxc-0.6.3.netlink-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: automake BuildRequires: docbook-utils BuildRequires: kernel-headers BuildRequires: libcap-devel BuildRequires: libtool %description Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. %package libs Summary: Runtime library files for %{name} Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} %description libs Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. The %{name}-libs package contains libraries for running %{name} applications. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel Linux Resource Containers provide process and resource isolation without the overhead of full virtualization. The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q %patch0 -p1 %build ./autogen.sh %configure F77=no --enable-static=no %{__make} %{?_smp_mflags} %install rm -rf %{buildroot} %{__make} DESTDIR=%{buildroot} install find %{buildroot} -name '*.la' -delete %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/* %{_bindir}/%{name}-* %{_libexecdir}/%{name}-init %{_mandir}/man*/%{name}* %files libs %defattr(-,root,root,-) %doc COPYING %{_libdir}/liblxc-%{version}.so %files devel %defattr(-,root,root,-) %doc COPYING %{_datadir}/pkgconfig/%{name}.pc %{_includedir}/* %{_libdir}/liblxc.so %changelog * Mon Jul 27 2009 Silas Sewell - 0.6.3-2 - Apply patch for rawhide kernel. * Sat Jul 25 2009 Silas Sewell - 0.6.3-1 - Initial package. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxc/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 19:33:56 -0000 1.1 +++ .cvsignore 28 Jul 2009 07:18:21 -0000 1.2 @@ -0,0 +1 @@ +lxc-0.6.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 19:33:56 -0000 1.1 +++ sources 28 Jul 2009 07:18:21 -0000 1.2 @@ -0,0 +1 @@ +417bb6dd61ba0c65996df5c3adbb549f lxc-0.6.3.tar.gz From fabbione at fedoraproject.org Tue Jul 28 07:22:41 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 07:22:41 +0000 (UTC) Subject: rpms/corosync/devel corosync.spec,1.32,1.33 Message-ID: <20090728072241.DE7F511C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/corosync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24817 Modified Files: corosync.spec Log Message: Fix directory ownership and consistent use of macros Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/corosync.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- corosync.spec 24 Jul 2009 19:30:46 -0000 1.32 +++ corosync.spec 28 Jul 2009 07:22:41 -0000 1.33 @@ -3,7 +3,7 @@ Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces Version: 1.0.0 -Release: 2%{?alphatag:.%{alphatag}}%{?dist} +Release: 3%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://www.openais.org @@ -35,9 +35,9 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na %endif %{_configure} CFLAGS="$(echo '%{optflags}')" \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ --libdir=%{_libdir} %build @@ -84,9 +84,9 @@ fi %{_sbindir}/corosync-cfgtool %{_sbindir}/corosync-fplay %{_sbindir}/corosync-pload -%dir /etc/corosync -%dir /etc/corosync/uidgid.d -%config(noreplace) /etc/corosync/corosync.conf.example +%dir %{_sysconfdir}/corosync +%dir %{_sysconfdir}/corosync/uidgid.d +%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example %{_initddir}/corosync %dir %{_libexecdir}/lcrso %{_libexecdir}/lcrso/coroparse.lcrso @@ -100,6 +100,7 @@ fi %{_libexecdir}/lcrso/quorum_testquorum.lcrso %{_libexecdir}/lcrso/vsf_quorum.lcrso %{_libexecdir}/lcrso/vsf_ykd.lcrso +%dir %{_localstatedir}/lib/corosync %{_mandir}/man8/corosync_overview.8* %{_mandir}/man8/corosync-objctl.8* %{_mandir}/man5/corosync.conf.5* @@ -202,6 +203,11 @@ The Corosync Cluster Engine APIs. %{_mandir}/man8/coroipc_overview.8* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-3 +- spec file updates: + * more consistent use of macros across the board + * fix directory ownership + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From ondrejj at fedoraproject.org Tue Jul 28 07:25:27 2009 From: ondrejj at fedoraproject.org (ondrejj) Date: Tue, 28 Jul 2009 07:25:27 +0000 (UTC) Subject: rpms/sagator/EL-5 sagator.spec,1.10,1.11 Message-ID: <20090728072527.561C311C00D4@cvs1.fedora.phx.redhat.com> Author: ondrejj Update of /cvs/pkgs/rpms/sagator/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25649 Added Files: sagator.spec Log Message: readded sagator.spec, which was removed by cvs-import.sh Index: sagator.spec =================================================================== RCS file: sagator.spec diff -N sagator.spec --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sagator.spec 28 Jul 2009 07:25:27 -0000 1.11 @@ -0,0 +1,355 @@ +%define CHROOTDIR %{_var}/spool/vscan +%define BASE_LIBS glibc,libgcc,expat,libstdc++,zlib,bzip2-libs,cracklib,cracklib-dicts +%define ARCHIVERS tar,arc,unace,unrar,rar,zoo,unarj,arj,unzip,zip,gzip,bzip2 +%define ANTIVIRS clamav,clamav-libs,avglinux,nod32ls,nod32lfs,kav4mailservers-linux +%define ANTISPAMS bogofilter,qsf +%define CLAMAV_VERSION 0.92 + +Summary: Antivir/antispam gateway for smtp server +Name: sagator +Version: 1.2.0 +Release: 0.rc5%{?dist} +Source: http://www.salstar.sk/pub/antivir/snapshots/sagator-%{version}-0.rc5.tar.bz2 +URL: http://www.salstar.sk/sagator/ +License: GPLv2+ +Group: System Environment/Daemons +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: python-devel >= 2.2.2, ed, gettext +Requires: %{name}-core = %{version}-%{release} +Requires: python >= 2.2.2, sed +Requires: spamassassin +%if %_vendor == "suse" +Requires: clamav >= %{CLAMAV_VERSION} +%else +Requires: clamav-lib >= %{CLAMAV_VERSION}, clamav-update +%endif + +%description +This program is an email antivirus/antispam gateway. It is an interface to +the postfix, sendmail, or any other smtpd, which runs antivirus and/or +spamchecker. Its modular architecture can use any combination of +antivirus/spamchecker according to configuration. + +It has some internal checkers (string_scanner and regexp_scanner). Sagator +can parse MIME mails and decompress archives, if it is configured so. + +Features: + * simple chroot support + * modular antivirus/spamchecker support + o you can attach an intrascanner to another intrascanner or realscanner + o you can combine intrascanners + o you can combine realscanners + o virus/spam level based scanners + * database support + o SQL logging + o dynamic scanner (antivirus/antispam) configuration + * daily reports for users + * web quarantine accessible for all users + * you don't need any perl modules or any other modules, only python + * you can return any quarantined mail to mailq/user mailbox + * mailbox/maildir scanning and cleaning + * smtp policy service (greylist) + * nice statistics via WWW or MRTG + * easy installation and configuration + +%package core +Summary: Antivir/antispam gateway for smtp server, core files +Group: System Environment/Daemons +Requires: python >= 2.2.2, sed +%if %_vendor == "suse" +BuildRequires: aaa_base, python-xml, clamav >= %{CLAMAV_VERSION} +Requires: aaa_base, smtp_daemon +%if 0%suse_version < 01030 +Requires: python-ctypes +%endif +%else +Requires(post): chkconfig +Requires(preun): chkconfig +Requires(preun): initscripts +Requires: initscripts, server(smtp), shadow-utils +BuildRequires: initscripts, logwatch, clamav-devel >= %{CLAMAV_VERSION} +Requires: clamav-lib >= %{CLAMAV_VERSION} +Requires: spamassassin +%endif +Obsoletes: sagator-libclamav <= 1.2.3 +Obsoletes: sagator-pydspam <= 0.9.1 + +%description core +SAGATOR's core files. You can use this package separatelly, if you do +not to depend on other software, required by sagator. + +%package webq +Summary: SAGATOR's web quarantine access +Group: System Environment/Daemons +Requires: sagator-core = %{version}-%{release}, python-genshi >= 0.4 + +%description webq +SAGATOR's web quarantine access can be used to allow users (or admin) +to access their emails in sagator's quarantine. + +# SElinux policy for Fedoras and RHEL>=5 +%if 0%{?fedora} || 0%{?rhel} >= 5 +%package selinux +Summary: SELinux support for SAGATOR +Group: System Environment/Daemons +Requires: %{name}-core = %{version}-%{release} +Requires(postun): policycoreutils, selinux-policy +BuildRequires: selinux-policy-devel +# SElinux directory and policy package +%define install_sepolicy 1 +%define sepolicy %{_datadir}/%{name}/selinux/%{name}.pp + +%description selinux +This package helps moving to the upstream SELinux module. + +%else +%define install_sepolicy 0 +%endif + +%prep +%setup -q + +%build +sh configure --prefix=%{_prefix} --filelist +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} PREFIX=%{_prefix} install +rm -f %{buildroot}%{_datadir}/sagator/etc/sgconf.py* \ + scripts/mkchroot.sh scripts/graphs/*.in +touch %{buildroot}%{_datadir}/%{name}/etc/sgconf.py_ +ln -s ../../../..%{_sysconfdir}/sagator.conf \ + %{buildroot}%{_datadir}/%{name}/etc/sgconf.py +mkdir -p %{buildroot}%{CHROOTDIR}/tmp/quarantine +%find_lang %{name} + +%pre core +getent group vscan >/dev/null || groupadd -r vscan +getent passwd vscan >/dev/null || \ +useradd -r -g vscan -d %{CHROOTDIR} -s /sbin/nologin -c "SAGATOR" vscan +exit 0 + +%post core +touch %{_var}/lib/sagator-mkchroot +if [ $1 = 2 ]; then # upgrade + [ -f %{_sysconfdir}/sysconfig/sagator ] && . %{_sysconfdir}/sysconfig/sagator || true + # update configuration + %{_datadir}/sagator/updatecfg.py || true + if [ "$RESTART" = "auto" ]; then + # restart sagator + %{_initrddir}/sagator try-restart >/dev/null 2>&1 || true + fi +else # install + if [ -x /sbin/chkconfig ]; then + chkconfig --add sagator + elif [ -x /sbin/insserv ]; then + insserv sagator + fi +fi + +%preun core +if [ $1 = 0 ]; then # uninstall + # stop service + %{_initrddir}/sagator stop >/dev/null 2>&1 + # remove init script symlinks + if [ -x /sbin/chkconfig ]; then + chkconfig --del sagator + elif [ -x /sbin/insserv ]; then + insserv -r sagator + fi +fi + +%if %{install_sepolicy} +%post selinux +if selinuxenabled; then + # Replace the module by the upstream one + #. /etc/selinux/config 2>/dev/null || : + semodule -i %{sepolicy} 2>/dev/null || : + # relabel files + fixfiles -R %{name} restore || : + # relabel chroot + restorecon -R %{CHROOTDIR} || : +fi +%endif + +%triggerin core -- sagator-webq,%{BASE_LIBS},%{ARCHIVERS},%{ANTIVIRS},%{ANTISPAMS} +touch %{_var}/lib/sagator-mkchroot + +%triggerpostun core -- sagator-webq,%{BASE_LIBS},%{ARCHIVERS},%{ANTIVIRS},%{ANTISPAMS} +touch %{_var}/lib/sagator-mkchroot + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +# no files, this package just requires others + +%files core -f filelist +%defattr(-,root,root) +%config(noreplace) %verify(not md5 size mtime) %attr(640,root,vscan) %{_sysconfdir}/%{name}.conf +%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/sysconfig/%{name} +%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/logrotate.d/%{name} +%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/*/conf.d/%{name}.conf +%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/mrtg/%{name}.cfg +%{_initrddir}/%{name} +%config(noreplace) %verify(not md5 size mtime) %attr(644,root,root) %{_sysconfdir}/cron.d/%{name} +%doc doc/README doc/FAQ doc/*.txt doc/*.html TODO COPYING ChangeLog test +%doc scripts/db scripts/graphs scripts/*.sh +%{_bindir}/* +%{_sbindir}/* +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/*.py* +%dir %attr(750,root,vscan) %{_datadir}/%{name}/etc +%{_datadir}/%{name}/etc/*.py* +%exclude %{_datadir}/%{name}/etc/sgconf.py? +%dir %{_datadir}/%{name}/avir +%{_datadir}/%{name}/avir/*.py* +%dir %{_datadir}/%{name}/avir/libclamav +%{_datadir}/%{name}/avir/libclamav/*.py* +%dir %{_datadir}/%{name}/aspam/pydspam +%{_datadir}/%{name}/aspam/pydspam/*.py* +%dir %{_datadir}/%{name}/aspam +%{_datadir}/%{name}/aspam/*.py* +%dir %{_datadir}/%{name}/interscan +%{_datadir}/%{name}/interscan/*.py* +%dir %{_datadir}/%{name}/srv +%{_datadir}/%{name}/srv/*.py* +%{_mandir}/man*/* +%dir %{CHROOTDIR} +%attr(1777,vscan,vscan) %dir %{CHROOTDIR}/tmp +%attr(0770,vscan,vscan) %dir %{CHROOTDIR}/tmp/quarantine + +%files webq -f sagator.lang +%defattr(-,root,root) +%dir %{_datadir}/%{name}/srv/web +%{_datadir}/%{name}/srv/web/*.py* +%{_datadir}/%{name}/srv/web/*.html + +%if %{install_sepolicy} +%files selinux +%defattr(-,root,root) +%dir %{_datadir}/%{name}/selinux +%{sepolicy} +%endif + +%changelog +* Wed Sep 17 2008 Jan ONDREJ (SAL) - 1.2.0-0.rc5 +- core files moved to core packages, sagator package now requires clamav + and spamassassin +- added selinux policy dir + +* Sun Feb 17 2008 Jan ONDREJ (SAL) - 1.1.0-2 +- changed dependency from smtpdaemon to server(smtp) +- reverted back previous change + +* Sun Feb 17 2008 Jan ONDREJ (SAL) - 1.1.0-1 +- added libclamav module +- added pydspam module +- selinux module moved to separate subpackage + +* Fri Jan 3 2008 Jan ONDREJ (SAL) - 1.0.0-1 +- /var/spool/vscan replaced by CHROOTDIR macro +- posttrans section moved to init script (start section) +- more macros used + +* Thu Jan 3 2008 Jan ONDREJ (SAL) - 1.0.0-2 +- clean buildroot before install +- sagator.conf symlink is now relative + +* Fri Sep 7 2007 Jan ONDREJ (SAL) - 1.0.0-1 +- sagator moved from /usr/lib to /usr/share + +* Fri Apr 13 2007 Jan ONDREJ (SAL) +- added sagator.pp selinux policy file and post-install script + +* Wed Dec 27 2006 Jan ONDREJ (SAL) +- added GPG public key + +* Tue Sep 05 2006 Jan ONDREJ (SAL) +- added gcc build-require for suse package +- better build for unstable releases +- postfix autoconfigure messages +- crontab modification moved to /etc/cron.d/ directory +- mrtg triggers removed +- removed clamav a dspam stuff +- fixed permissions for sagator.conf +- postfix autoconfiguration moved into documentation + +* Sun Nov 20 2005 Jan ONDREJ (SAL) +- suse support +- proper pathes for logwatch 0.7 scripts + +* Sun Aug 28 2005 Jan ONDREJ (SAL) +- configuration moved into config directory + +* Fri Aug 05 2005 Jan ONDREJ (SAL) +- script documentation added + +* Mon Jul 18 2005 Jan ONDREJ (SAL) +- new description +- changed dependecy from postfix to smtpdaemon + +* Sun Jun 26 2005 Jan ONDREJ (SAL) +- changes recommended by Fedora Extras Packaging Guidelines + +* Mon May 30 2005 Jan ONDREJ (SAL) +- web directory added + +* Mon Apr 11 2005 Jan ONDREJ (SAL) +- postinstall script fix to update master.cf properly + +* Mon Dec 20 2004 Jan ONDREJ (SAL) +- Documentation moved into doc directory. +- man pages added +- dspam module + +* Sun Nov 7 2004 Jan ONDREJ (SAL) +- chkconfig is started only on install (not upgrade) +- sagator is restarted only when RESTART=auto is configured in sysconfig +- You will be able ... message will show only on install +- Fedora Core 3 yum.repos.d autodetect + +* Thu Aug 26 2004 Jan ONDREJ (SAL) +- logrotate script added + +* Thu Aug 6 2004 Jan ONDREJ (SAL) +- srv/* added +- updatecfg.py in postinstall script + +* Tue Jul 6 2004 Jan ONDREJ (SAL) +- mrtg script added + +* Mon May 31 2004 Jan ONDREJ (SAL) +- cron script is now as configuration script (not replaced) + +* Thu Apr 29 2004 Jan ONDREJ (SAL) +- added triggers + +* Tue Apr 13 2004 Jan ONDREJ (SAL) +- /var/spool/vscam/tmp permission fix + +* Wed Feb 4 2004 Jan ONDREJ (SAL) +- postfix requirement added +- fixed scriptlet fail when postfix is not started +- testing programs added to documentation + +* Wed Jan 28 2004 Jan ONDREJ (SAL) +- configs are not replaced + +* Mon Jan 19 2004 Jan ONDREJ (SAL) +- added sysconfig file +- added logrotate files +- config moved into /etc and symlink into /usr/lib/sagator + +* Fri Oct 31 2003 Jan ONDREJ (SAL) +- added mrtg.cfg and index.html +- making of chroot removed on upgrading + +* Thu Sep 18 2003 Jan ONDREJ (SAL) +- postfix is not reloaded, when sagator is upgrading + +* Tue Jun 10 2003 Jan ONDREJ (SAL) +- first release From mmaslano at fedoraproject.org Tue Jul 28 07:31:47 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Tue, 28 Jul 2009 07:31:47 +0000 (UTC) Subject: rpms/perl/devel perl-5.10.0-spamassassin.patch, NONE, 1.1 perl.spec, 1.226, 1.227 Message-ID: <20090728073147.0B6DD11C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27375 Modified Files: perl.spec Added Files: perl-5.10.0-spamassassin.patch Log Message: * Tue Jul 28 2009 arcela Ma?l??ov? - 4:5.10.0-77 - 510127 spam assassin suffer from tainted bug perl-5.10.0-spamassassin.patch: Basename.pm | 1 + 1 file changed, 1 insertion(+) --- NEW FILE perl-5.10.0-spamassassin.patch --- diff -up perl-5.10.0/lib/File/Basename.pm.spam perl-5.10.0/lib/File/Basename.pm --- perl-5.10.0/lib/File/Basename.pm.spam 2009-07-27 08:45:18.000000000 +0200 +++ perl-5.10.0/lib/File/Basename.pm 2009-07-28 09:01:54.757410886 +0200 @@ -331,6 +331,7 @@ sub dirname { sub _strip_trailing_sep { my $type = $Fileparse_fstype; + local $1; if ($type eq 'MacOS') { $_[0] =~ s/([^:]):\z/$1/s; } Index: perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl/devel/perl.spec,v retrieving revision 1.226 retrieving revision 1.227 diff -u -p -r1.226 -r1.227 --- perl.spec 27 Jul 2009 07:11:48 -0000 1.226 +++ perl.spec 28 Jul 2009 07:31:46 -0000 1.227 @@ -7,7 +7,7 @@ Name: perl Version: %{perl_version} -Release: 76%{?dist} +Release: 77%{?dist} Epoch: %{perl_epoch} Summary: Practical Extraction and Report Language Group: Development/Languages @@ -196,6 +196,9 @@ Patch60: perl-skip-prereq.patch # RT #60508 Patch61: perl-5.10.0-much-better-swap-logic.patch +# https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6148 +Patch62: perl-5.10.0-spamassassin.patch + # Update some of the bundled modules # see http://fedoraproject.org/wiki/Perl/perl.spec for instructions Patch100: perl-update-constant.patch @@ -1004,6 +1007,7 @@ upstream tarball from perl.org. %patch59 -p1 %patch60 -p1 %patch61 -p1 +%patch62 -p1 %patch100 -p1 %patch101 -p1 @@ -1277,6 +1281,7 @@ perl -x patchlevel.h \ 'Fedora Patch59: h2ph: generated *.ph files no longer produce warnings when processed' \ 'Fedora Patch60: remove PREREQ_FATAL from Makefile.PLs processed by miniperl' \ 'Fedora Patch61: much better swap logic to support reentrancy and fix assert failure' \ + 'Fedora Patch62: spam assassin needs workaround for removing tainted mode' \ 'Fedora Patch100: Update module constant to %{constant_version}' \ 'Fedora Patch101: Update Archive::Extract to %{Archive_Extract_version}' \ 'Fedora Patch102: Update Archive::Tar to %{Archive_Tar_version}' \ @@ -1924,6 +1929,9 @@ TMPDIR="$PWD/tmp" make test # Old changelog entries are preserved in CVS. %changelog +* Tue Jul 28 2009 arcela Ma?l??ov? - 4:5.10.0-77 +- 510127 spam assassin suffer from tainted bug + * Mon Jul 27 2009 Marcela Ma?l??ov? - 4:5.10.0-76 - 494773 much better swap logic to support reentrancy and fix assert failure (rt #60508) From fabbione at fedoraproject.org Tue Jul 28 07:40:59 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 07:40:59 +0000 (UTC) Subject: rpms/openais/devel openais.spec,1.47,1.48 Message-ID: <20090728074059.9032711C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/openais/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29785 Modified Files: openais.spec Log Message: More consistent use of macros Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/openais.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- openais.spec 25 Jul 2009 20:43:20 -0000 1.47 +++ openais.spec 28 Jul 2009 07:40:59 -0000 1.48 @@ -3,7 +3,7 @@ Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs Version: 1.0.0 -Release: 2%{?alphatag:.%{alphatag}}%{?dist} +Release: 3%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://developer.osdl.org/dev/openais/ @@ -37,11 +37,11 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na %endif %{_configure} CFLAGS="$(echo '%{optflags}')" \ - --prefix=/usr \ - --localstatedir=/var \ - --sysconfdir=/etc \ - --with-lcrso-dir=$(pkg-config corosync --variable lcrsodir) \ - --libdir=%{_libdir} + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ + --libdir=%{_libdir} \ + --with-lcrso-dir=$(pkg-config corosync --variable lcrsodir) %build make %{_smp_mflags} @@ -81,8 +81,8 @@ fi %files %defattr(-,root,root,-) %doc LICENSE README.amf -%dir /etc/corosync -%config(noreplace) /etc/corosync/amf.conf.example +%dir %{_sysconfdir}/corosync +%config(noreplace) %{_sysconfdir}/corosync/amf.conf.example %{_initrddir}/openais %dir %{_libexecdir}/lcrso %{_libexecdir}/lcrso/openaisserviceenable.lcrso @@ -155,6 +155,10 @@ This package contains the include files %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-3 +- spec file updates: + * consistent use of macros across the board + * Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 28 07:58:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:28 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075828.4DAF110F85A@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on callweaver (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:32 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075831.F407310F89C@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on callweaver (Fedora 8) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:33 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075833.469D610F89F@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on callweaver (Fedora 8) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:34 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075834.5F05510F8B1@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on callweaver (Fedora 8) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:35 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075835.7421010F8B6@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on callweaver (Fedora 8) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:38 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075838.B08DD10F8BA@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on callweaver (Fedora 9) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:39 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075839.2BD9D10F8BD@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on callweaver (Fedora 9) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:42 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075842.9B38A10F8C1@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on callweaver (Fedora 9) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:40 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075840.F2C7710F85A@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on callweaver (Fedora 9) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:44 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075844.5AB6510F8C4@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on callweaver (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:45 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075844.F352610F8C8@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on callweaver (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:46 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075846.769C910F8CA@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on callweaver (Fedora 10) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:50 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075850.2C8C910F8D0@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on callweaver (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:48 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075848.CB7CE10F8CD@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on callweaver (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:53 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075853.4BD7E10F899@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on callweaver (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:54 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075854.955D910F8D2@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on callweaver (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:54 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075854.E508110F8D5@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on callweaver (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Tue Jul 28 07:58:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 07:58:56 +0000 Subject: [pkgdb] callweaver had acl change status Message-ID: <20090728075856.16D2010F8D8@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on callweaver (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From markmc at fedoraproject.org Tue Jul 28 07:59:51 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 07:59:51 +0000 (UTC) Subject: rpms/qemu/devel qemu-bios-bigger-roms.patch, 1.6, 1.7 qemu-fix-build-for-esd-audio.patch, 1.1, 1.2 qemu-fix-linux-user-build-on-ppc.patch, 1.2, 1.3 qemu-prefer-sysfs-for-usb-host-devices.patch, 1.2, 1.3 qemu-slirp-Fix-guestfwd-for-incoming-data.patch, 1.1, 1.2 qemu-fix-pcspk-build-with-kvm-disabled.patch, 1.2, NONE qemu-fix-ppc-softmmu-kvm-disabled-build.patch, 1.3, NONE Message-ID: <20090728075951.824E811C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2921 Modified Files: qemu-bios-bigger-roms.patch qemu-fix-build-for-esd-audio.patch qemu-fix-linux-user-build-on-ppc.patch qemu-prefer-sysfs-for-usb-host-devices.patch qemu-slirp-Fix-guestfwd-for-incoming-data.patch Removed Files: qemu-fix-pcspk-build-with-kvm-disabled.patch qemu-fix-ppc-softmmu-kvm-disabled-build.patch Log Message: Sync patches from git; remove unused patches qemu-bios-bigger-roms.patch: rombios.c | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) Index: qemu-bios-bigger-roms.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-bios-bigger-roms.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- qemu-bios-bigger-roms.patch 16 Jul 2009 11:15:53 -0000 1.6 +++ qemu-bios-bigger-roms.patch 28 Jul 2009 07:59:50 -0000 1.7 @@ -1,7 +1,7 @@ From c9aea972de34bad96814301988df698063ccf608 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 24 Jun 2009 14:31:41 +0100 -Subject: [PATCH 1/4] compute checksum for roms bigger than a segment +Subject: [PATCH] compute checksum for roms bigger than a segment Some option roms (e1000 provided by gpxe project as an example) are bigger than a segment. The current algorithm to compute the @@ -76,5 +76,5 @@ index 6186199..fc289c0 100644 -- -1.6.3.3 +1.6.2.5 qemu-fix-build-for-esd-audio.patch: Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) Index: qemu-fix-build-for-esd-audio.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-build-for-esd-audio.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qemu-fix-build-for-esd-audio.patch 16 Jul 2009 11:15:53 -0000 1.1 +++ qemu-fix-build-for-esd-audio.patch 28 Jul 2009 07:59:51 -0000 1.2 @@ -1,7 +1,7 @@ From b37fb38b6043e319768fa92d5541fe20afb4741b Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Wed, 1 Jul 2009 10:07:16 -0500 -Subject: [PATCH 4/4] Fix build for ESD audio +Subject: [PATCH] Fix build for ESD audio (cherry picked from commit c6a5a71a3a1886afad5eeb214eb6e8785f4e0319) @@ -40,5 +40,5 @@ index fc40431..f5deae9 100644 ifdef AUDIO_PT LDFLAGS += -pthread -- -1.6.3.3 +1.6.2.5 qemu-fix-linux-user-build-on-ppc.patch: elf.h | 2 ++ linux-user/elfload.c | 11 ++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) Index: qemu-fix-linux-user-build-on-ppc.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-linux-user-build-on-ppc.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qemu-fix-linux-user-build-on-ppc.patch 16 Jul 2009 11:15:53 -0000 1.2 +++ qemu-fix-linux-user-build-on-ppc.patch 28 Jul 2009 07:59:51 -0000 1.3 @@ -1,7 +1,7 @@ From 978e305a8cb8533bef2c6238c88e96913f7d09d0 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 29 Jun 2009 14:49:03 +0100 -Subject: [PATCH 2/4] Fix linux-user build on ppc +Subject: [PATCH] Fix linux-user build on ppc kvm-87 build fails on ppc: @@ -130,5 +130,5 @@ index d31cca7..3ccfdda 100644 #define ELF_HWCAP get_elf_hwcap() -- -1.6.3.3 +1.6.2.5 qemu-prefer-sysfs-for-usb-host-devices.patch: usb-linux.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) Index: qemu-prefer-sysfs-for-usb-host-devices.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-prefer-sysfs-for-usb-host-devices.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qemu-prefer-sysfs-for-usb-host-devices.patch 16 Jul 2009 11:15:53 -0000 1.2 +++ qemu-prefer-sysfs-for-usb-host-devices.patch 28 Jul 2009 07:59:51 -0000 1.3 @@ -1,7 +1,7 @@ From da1377c5e28ea68a6492b627725e8dd5f7acbb0a Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 3 Jul 2009 09:17:20 +0100 -Subject: [PATCH 3/4] Prefer sysfs for USB host devices +Subject: [PATCH] Prefer sysfs for USB host devices Scanning for devices via /sys/bus/usb/devices/ and using them via the /dev/bus/usb// character devices is the prefered method @@ -58,5 +58,5 @@ index 67e4acd..3c724ba 100644 if (!usb_fs_type) { monitor_printf(mon, "husb: unable to access USB devices\n"); -- -1.6.3.3 +1.6.2.5 qemu-slirp-Fix-guestfwd-for-incoming-data.patch: net.c | 11 ++++++----- slirp/libslirp.h | 2 +- slirp/slirp.c | 15 +++++++-------- 3 files changed, 14 insertions(+), 14 deletions(-) Index: qemu-slirp-Fix-guestfwd-for-incoming-data.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-slirp-Fix-guestfwd-for-incoming-data.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qemu-slirp-Fix-guestfwd-for-incoming-data.patch 23 Jul 2009 14:52:22 -0000 1.1 +++ qemu-slirp-Fix-guestfwd-for-incoming-data.patch 28 Jul 2009 07:59:51 -0000 1.2 @@ -1,4 +1,4 @@ -From b0dc78730e54bd3ef96f56466890aa2509a328c3 Mon Sep 17 00:00:00 2001 +From ff933dfefb22e2ef115eb6035e23b0f64335b0db Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Wed, 22 Jul 2009 17:03:52 +0200 Subject: [PATCH] slirp: Fix guestfwd for incoming data @@ -16,10 +16,10 @@ Signed-off-by: Anthony Liguori Author: mhlavink Update of /cvs/extras/rpms/dovecot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4948 Modified Files: .cvsignore dovecot.spec sources Log Message: updated to post 1.2.2 snapshot (including post release GSSAPI fix) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 23 Jul 2009 06:46:29 -0000 1.54 +++ .cvsignore 28 Jul 2009 08:06:06 -0000 1.55 @@ -1,4 +1,4 @@ -dovecot-1.2.1.tar.gz +dovecot-1.2.2-20090728.tar.gz dovecot-1.2-managesieve-0.11.7.tar.gz -dovecot-1.2.1-managesieve-0.11.7.diff.gz +dovecot-1.2.2-managesieve-0.11.7.diff.gz dovecot-1.2-sieve-0.1.9.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/dovecot.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- dovecot.spec 24 Jul 2009 20:29:38 -0000 1.130 +++ dovecot.spec 28 Jul 2009 08:06:06 -0000 1.131 @@ -1,8 +1,8 @@ Summary: Secure imap and pop3 server Name: dovecot Epoch: 1 -Version: 1.2.1 -Release: 3%{?dist} +Version: 1.2.2 +Release: 1.20090728snap%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -17,11 +17,10 @@ Group: System Environment/Daemons %define sieve_version 0.1.9 %define sieve_name dovecot-1.2-sieve %define managesieve_version 0.11.7 -#define managesieve_name dovecot-%{version}-managesieve %define managesieve_name dovecot-1.2-managesieve URL: http://www.dovecot.org/ -Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.tar.gz +Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}-20090728.tar.gz Source1: dovecot.init Source2: dovecot.pam Source3: maildir-migration.txt @@ -29,7 +28,6 @@ Source4: migrate-folders Source5: migrate-users Source6: perfect_maildir.pl Source7: dovecot-REDHAT-FAQ.txt -#Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz Source8: http://www.rename-it.nl/dovecot/1.2/%{sieve_name}-%{sieve_version}.tar.gz Source9: dovecot.sysconfig Source10: http://www.rename-it.nl/dovecot/1.2/%{managesieve_name}-%{managesieve_version}.tar.gz @@ -436,6 +434,13 @@ fi %changelog +* Tue Jul 28 2009 Michal Hlavinka - 1:1.2.2-1.20090728snap +- updated to post 1.2.2 snapshot (including post release GSSAPI fix) +- Fixed "corrupted index cache file" errors +- IMAP: FETCH X-* parameters weren't working. +- Maildir++ quota: Quota was sometimes updated wrong +- Dovecot master process could hang if it received signals too rapidly + * Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/sources,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- sources 23 Jul 2009 06:46:29 -0000 1.58 +++ sources 28 Jul 2009 08:06:06 -0000 1.59 @@ -1,4 +1,4 @@ -c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz +1b8beec9fa5ba66d7ba0790191e2e2e0 dovecot-1.2.2-20090728.tar.gz 61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz -a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz +b971743cdce359aa0aeb24040a3750ea dovecot-1.2.2-managesieve-0.11.7.diff.gz a9a9254def9e9a05105aa56a960ac7fa dovecot-1.2-sieve-0.1.9.tar.gz From markmc at fedoraproject.org Tue Jul 28 08:17:19 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 08:17:19 +0000 (UTC) Subject: rpms/qemu/devel qemu-bios-bigger-roms.patch, 1.7, 1.8 qemu-fix-build-for-esd-audio.patch, 1.2, 1.3 qemu-fix-linux-user-build-on-ppc.patch, 1.3, 1.4 qemu-prefer-sysfs-for-usb-host-devices.patch, 1.3, 1.4 qemu-slirp-Fix-guestfwd-for-incoming-data.patch, 1.2, 1.3 Message-ID: <20090728081719.E845011C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8995 Modified Files: qemu-bios-bigger-roms.patch qemu-fix-build-for-esd-audio.patch qemu-fix-linux-user-build-on-ppc.patch qemu-prefer-sysfs-for-usb-host-devices.patch qemu-slirp-Fix-guestfwd-for-incoming-data.patch Log Message: Sync from git again qemu-bios-bigger-roms.patch: rombios.c | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) Index: qemu-bios-bigger-roms.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-bios-bigger-roms.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- qemu-bios-bigger-roms.patch 28 Jul 2009 07:59:50 -0000 1.7 +++ qemu-bios-bigger-roms.patch 28 Jul 2009 08:17:19 -0000 1.8 @@ -1,4 +1,4 @@ -From c9aea972de34bad96814301988df698063ccf608 Mon Sep 17 00:00:00 2001 +From dd5a9dedba205ad51ef2fc70f0a1dddea7ff4a4f Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 24 Jun 2009 14:31:41 +0100 Subject: [PATCH] compute checksum for roms bigger than a segment @@ -17,6 +17,7 @@ the image size (thus, maximum size = 0xf Signed-off-by: Glauber Costa Signed-off-by: Mark McLoughlin +Fedora-patch: qemu-bios-bigger-roms.patch --- kvm/bios/rombios.c | 33 +++++++++++++++++++++++++++------ 1 files changed, 27 insertions(+), 6 deletions(-) qemu-fix-build-for-esd-audio.patch: Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) Index: qemu-fix-build-for-esd-audio.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-build-for-esd-audio.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qemu-fix-build-for-esd-audio.patch 28 Jul 2009 07:59:51 -0000 1.2 +++ qemu-fix-build-for-esd-audio.patch 28 Jul 2009 08:17:19 -0000 1.3 @@ -1,4 +1,4 @@ -From b37fb38b6043e319768fa92d5541fe20afb4741b Mon Sep 17 00:00:00 2001 +From 17588a0bbf311ad95c6d3ad84f5edb8f98353d58 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Wed, 1 Jul 2009 10:07:16 -0500 Subject: [PATCH] Fix build for ESD audio @@ -7,6 +7,7 @@ Subject: [PATCH] Fix build for ESD audio Signed-off-by: Anthony Liguori Signed-off-by: Mark McLoughlin +Fedora-patch: qemu-fix-build-for-esd-audio.patch --- Makefile | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) qemu-fix-linux-user-build-on-ppc.patch: elf.h | 2 ++ linux-user/elfload.c | 11 ++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) Index: qemu-fix-linux-user-build-on-ppc.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-linux-user-build-on-ppc.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qemu-fix-linux-user-build-on-ppc.patch 28 Jul 2009 07:59:51 -0000 1.3 +++ qemu-fix-linux-user-build-on-ppc.patch 28 Jul 2009 08:17:19 -0000 1.4 @@ -1,4 +1,4 @@ -From 978e305a8cb8533bef2c6238c88e96913f7d09d0 Mon Sep 17 00:00:00 2001 +From 052506320166112bec0b5b7aa272973c1a508551 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 29 Jun 2009 14:49:03 +0100 Subject: [PATCH] Fix linux-user build on ppc @@ -37,6 +37,7 @@ Problem seems to be that signal.h is pul headers which expose elf_greg_t, R_PPC_* and PPC_FEATURE_*. Signed-off-by: Mark McLoughlin +Fedora-patch: qemu-fix-linux-user-build-on-ppc.patch --- elf.h | 2 ++ linux-user/elfload.c | 10 ++++++++++ qemu-prefer-sysfs-for-usb-host-devices.patch: usb-linux.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) Index: qemu-prefer-sysfs-for-usb-host-devices.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-prefer-sysfs-for-usb-host-devices.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qemu-prefer-sysfs-for-usb-host-devices.patch 28 Jul 2009 07:59:51 -0000 1.3 +++ qemu-prefer-sysfs-for-usb-host-devices.patch 28 Jul 2009 08:17:19 -0000 1.4 @@ -1,4 +1,4 @@ -From da1377c5e28ea68a6492b627725e8dd5f7acbb0a Mon Sep 17 00:00:00 2001 +From dfeae76a9a941c12ffe828848476a4a31a358205 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 3 Jul 2009 09:17:20 +0100 Subject: [PATCH] Prefer sysfs for USB host devices @@ -15,8 +15,11 @@ See also: https://bugzilla.redhat.com/508326 +(cherry picked from commit 554962405cb18a3e624edf05b6257eaf9273810c) + Reported-by: Daniel Berrange Signed-off-by: Mark McLoughlin +Fedora-patch: qemu-prefer-sysfs-for-usb-host-devices.patch --- usb-linux.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) qemu-slirp-Fix-guestfwd-for-incoming-data.patch: net.c | 11 ++++++----- slirp/libslirp.h | 2 +- slirp/slirp.c | 15 +++++++-------- 3 files changed, 14 insertions(+), 14 deletions(-) Index: qemu-slirp-Fix-guestfwd-for-incoming-data.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-slirp-Fix-guestfwd-for-incoming-data.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qemu-slirp-Fix-guestfwd-for-incoming-data.patch 28 Jul 2009 07:59:51 -0000 1.2 +++ qemu-slirp-Fix-guestfwd-for-incoming-data.patch 28 Jul 2009 08:17:19 -0000 1.3 @@ -1,4 +1,4 @@ -From ff933dfefb22e2ef115eb6035e23b0f64335b0db Mon Sep 17 00:00:00 2001 +From 57ab33ece875e62e47d09e52bcd0d9d108594729 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Wed, 22 Jul 2009 17:03:52 +0200 Subject: [PATCH] slirp: Fix guestfwd for incoming data @@ -7,8 +7,12 @@ Unless a virtual server address was expl impossible with the legacy -net channel format), guestfwd did not properly forwarded host->guest packets. This patch fixes it. +(cherry picked from commit bb53fc5394201c0cbe3c89a1c9fa5fbd6a3b832c) + Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori +Signed-off-by: Mark McLoughlin +Fedora-patch: qemu-slirp-Fix-guestfwd-for-incoming-data.patch --- net.c | 11 ++++++----- slirp/libslirp.h | 2 +- From till at fedoraproject.org Tue Jul 28 08:35:09 2009 From: till at fedoraproject.org (Till Maas) Date: Tue, 28 Jul 2009 08:35:09 +0000 (UTC) Subject: rpms/lzip/devel .cvsignore, 1.3, 1.4 lzip.spec, 1.4, 1.5 sources, 1.3, 1.4 lzip-1.4-missing_cstdio.patch, 1.1, NONE Message-ID: <20090728083509.F188C11C00D4@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/lzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14537 Modified Files: .cvsignore lzip.spec sources Removed Files: lzip-1.4-missing_cstdio.patch Log Message: * Tue Jul 28 2009 Till Maas - 1.7-1 - Update to latest stable upstream - remove upstreamed patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lzip/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Feb 2009 09:18:04 -0000 1.3 +++ .cvsignore 28 Jul 2009 08:35:09 -0000 1.4 @@ -1,2 +1,2 @@ -lzip-1.4.tar.gz -lzip-1.4.tar.gz.sig +lzip-1.7.tar.gz +lzip-1.7.tar.gz.sig Index: lzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzip/devel/lzip.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lzip.spec 25 Jul 2009 11:34:08 -0000 1.4 +++ lzip.spec 28 Jul 2009 08:35:09 -0000 1.5 @@ -1,6 +1,6 @@ Name: lzip -Version: 1.4 -Release: 3%{?dist} +Version: 1.7 +Release: 1%{?dist} Summary: LZMA compressor with integrity checking Group: Applications/File @@ -8,8 +8,6 @@ License: GPLv3+ URL: http://www.nongnu.org/lzip/lzip.html Source0: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz Source1: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz.sig -# 2009-02-15: sent to upstream bug report mailinglist lzip-bug at nongnu.org -Patch0: lzip-1.4-missing_cstdio.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): info @@ -24,7 +22,7 @@ format (.lz) is not compatible with the %prep %setup -q -%patch0 -p1 -b .missing_cstdio + %build %configure CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" @@ -61,12 +59,22 @@ fi %defattr(-,root,root,-) # TODO is currently empty %doc AUTHORS ChangeLog COPYING NEWS README +%{_bindir}/lzdiff +%{_bindir}/lzgrep %{_bindir}/lzip +%{_bindir}/lziprecover %{_infodir}/lzip.info* +%{_mandir}/man1/lzdiff.1.gz +%{_mandir}/man1/lzgrep.1.gz %{_mandir}/man1/lzip.1* +%{_mandir}/man1/lziprecover.1.gz %changelog +* Tue Jul 28 2009 Till Maas - 1.7-1 +- Update to latest stable upstream +- remove upstreamed patch + * Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lzip/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Feb 2009 09:18:04 -0000 1.3 +++ sources 28 Jul 2009 08:35:09 -0000 1.4 @@ -1,2 +1,2 @@ -b7b7b7502c0364995709f5580539dfef lzip-1.4.tar.gz -ca48bb210716864384ddcbdc9f651644 lzip-1.4.tar.gz.sig +c63815497a25d21ed2431a0758d4191f lzip-1.7.tar.gz +24484c5843a347bfd4e44ffa4c609342 lzip-1.7.tar.gz.sig --- lzip-1.4-missing_cstdio.patch DELETED --- From pghmcfc at fedoraproject.org Tue Jul 28 08:36:40 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Tue, 28 Jul 2009 08:36:40 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/devel .cvsignore, 1.19, 1.20 perl-IO-Socket-SSL.spec, 1.23, 1.24 sources, 1.19, 1.20 Message-ID: <20090728083640.E6E7A11C00D4@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15111 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.27 - various regex fixes for i18n and service names - fix warnings from perl -w (CPAN RT#48131) - improve handling of errors from Net::ssl_write_all Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 4 Jul 2009 21:19:59 -0000 1.19 +++ .cvsignore 28 Jul 2009 08:36:40 -0000 1.20 @@ -1 +1 @@ -IO-Socket-SSL-1.26.tar.gz +IO-Socket-SSL-1.27.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/perl-IO-Socket-SSL.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-IO-Socket-SSL.spec 26 Jul 2009 06:42:14 -0000 1.23 +++ perl-IO-Socket-SSL.spec 28 Jul 2009 08:36:40 -0000 1.24 @@ -4,8 +4,8 @@ # Name: perl-IO-Socket-SSL -Version: 1.26 -Release: 2%{?dist} +Version: 1.27 +Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries License: GPL+ or Artistic @@ -60,13 +60,19 @@ done %{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Mon Jul 27 2009 Paul Howarth - 1.27-1 +- Update to 1.27 + - various regex fixes for i18n and service names + - fix warnings from perl -w (CPAN RT#48131) + - improve handling of errors from Net::ssl_write_all + * Sat Jul 25 2009 Fedora Release Engineering - 1.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat Jul 4 2009 Paul Howarth - 1.26-1 - Update to 1.26 (verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a - certificate with name www.exam in it) + certificate with name www.exam in it [#509819]) * Fri Jul 3 2009 Paul Howarth - 1.25-1 - Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 4 Jul 2009 21:19:59 -0000 1.19 +++ sources 28 Jul 2009 08:36:40 -0000 1.20 @@ -1 +1 @@ -096319c7ceea6d4f42a264c55a3ea318 IO-Socket-SSL-1.26.tar.gz +0099e07f576a84b5f34b6511138652c8 IO-Socket-SSL-1.27.tar.gz From adrian at fedoraproject.org Tue Jul 28 08:38:32 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Tue, 28 Jul 2009 08:38:32 +0000 (UTC) Subject: rpms/wordpress/devel .cvsignore, 1.24, 1.25 sources, 1.24, 1.25 wordpress.spec, 1.31, 1.32 Message-ID: <20090728083832.2754511C00D4@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15908 Modified Files: .cvsignore sources wordpress.spec Log Message: * Tue Jul 28 2009 Adrian Reber - 2.8.2-1 - updated to 2.8.2 for security fixes - BZ 512900 - fixed "wrong-script-end-of-line-encoding" of license.txt - correctly disable auto update check - fixed an error message from 'find' during the build Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 10 Jul 2009 19:28:57 -0000 1.24 +++ .cvsignore 28 Jul 2009 08:38:31 -0000 1.25 @@ -1 +1 @@ -wordpress-2.8.1.tar.gz +wordpress-2.8.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 10 Jul 2009 19:28:57 -0000 1.24 +++ sources 28 Jul 2009 08:38:31 -0000 1.25 @@ -1 +1 @@ -b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz +8fde8c4aa3e4d86ce9ddca7cdc0769a2 wordpress-2.8.2.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/wordpress.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- wordpress.spec 27 Jul 2009 07:22:27 -0000 1.31 +++ wordpress.spec 28 Jul 2009 08:38:31 -0000 1.32 @@ -1,9 +1,9 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.8.1 +Version: 2.8.2 Group: Applications/Publishing -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf @@ -18,9 +18,11 @@ almost trivial, to get information out t %prep %setup -q -n wordpress -# disable-wordpress-core-update, updates are always installed via rpm -# this does not disable the wordpress-plugins-update check -sed -i -e "s,^add_action,#add_action,g" wp-includes/update.php +# disable wp_version_check, updates are always installed via rpm +sed -i -e "s,\(.*\)'wp_version_check'\(.*\),#\1'wp_version_check'\2,g" \ + wp-includes/update.php +# fix file encoding +sed -i -e 's/\r//' license.txt %install mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress @@ -28,11 +30,11 @@ mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir} install -m 0644 -D -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/wordpress.conf cp -pr * ${RPM_BUILD_ROOT}%{_datadir}/wordpress cat wp-config-sample.php | sed -e "s|dirname(__FILE__).'/'|'/usr/share/wordpress/'|g" > \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php + ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php /bin/ln -sf ../../../etc/wordpress/wp-config.php ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-config.php /bin/cp %{SOURCE2} ./README.fedora # Remove empty files to make rpmlint happy -find ${RPM_BUILD_ROOT} -empty -exec rm -f {} \; +find ${RPM_BUILD_ROOT} -type f -empty -exec rm -f {} \; # These are docs, remove them from here, docify them later rm -f ${RPM_BUILD_ROOT}%{_datadir}/wordpress/{license.txt,readme.html} @@ -75,6 +77,12 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Tue Jul 28 2009 Adrian Reber - 2.8.2-1 +- updated to 2.8.2 for security fixes - BZ 512900 +- fixed "wrong-script-end-of-line-encoding" of license.txt +- correctly disable auto update check +- fixed an error message from 'find' during the build + * Mon Jul 27 2009 Fedora Release Engineering - 2.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mhlavink at fedoraproject.org Tue Jul 28 08:02:19 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Tue, 28 Jul 2009 08:02:19 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore, 1.62, 1.63 dovecot.spec, 1.136, 1.137 sources, 1.65, 1.66 Message-ID: <20090728080219.922F711C00D4@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3772 Modified Files: .cvsignore dovecot.spec sources Log Message: updated to post 1.2.2 snapshot (including post release GSSAPI fix) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 23 Jul 2009 06:46:38 -0000 1.62 +++ .cvsignore 28 Jul 2009 08:02:19 -0000 1.63 @@ -1,4 +1,4 @@ -dovecot-1.2.1.tar.gz +dovecot-1.2.2-20090728.tar.gz dovecot-1.2-managesieve-0.11.7.tar.gz -dovecot-1.2.1-managesieve-0.11.7.diff.gz +dovecot-1.2.2-managesieve-0.11.7.diff.gz dovecot-1.2-sieve-0.1.9.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- dovecot.spec 23 Jul 2009 06:46:39 -0000 1.136 +++ dovecot.spec 28 Jul 2009 08:02:19 -0000 1.137 @@ -1,8 +1,8 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 -Version: 1.2.1 -Release: 2%{?dist} +Version: 1.2.2 +Release: 1.20090728snap%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -20,7 +20,7 @@ Group: System Environment/Daemons %define managesieve_name dovecot-1.2-managesieve URL: http://www.dovecot.org/ -Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.tar.gz +Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}-20090728.tar.gz Source1: dovecot.init Source2: dovecot.pam Source3: maildir-migration.txt @@ -434,6 +434,13 @@ fi %changelog +* Tue Jul 28 2009 Michal Hlavinka - 1:1.2.2-1.20090728snap +- updated to post 1.2.2 snapshot (including post release GSSAPI fix) +- Fixed "corrupted index cache file" errors +- IMAP: FETCH X-* parameters weren't working. +- Maildir++ quota: Quota was sometimes updated wrong +- Dovecot master process could hang if it received signals too rapidly + * Thu Jul 23 2009 Michal Hlavinka - 1:1.2.1-2 - updated sieve plugin to 0.1.9 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 23 Jul 2009 06:46:39 -0000 1.65 +++ sources 28 Jul 2009 08:02:19 -0000 1.66 @@ -1,4 +1,4 @@ -c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz +1b8beec9fa5ba66d7ba0790191e2e2e0 dovecot-1.2.2-20090728.tar.gz 61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz -a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz +b971743cdce359aa0aeb24040a3750ea dovecot-1.2.2-managesieve-0.11.7.diff.gz a9a9254def9e9a05105aa56a960ac7fa dovecot-1.2-sieve-0.1.9.tar.gz From adrian at fedoraproject.org Tue Jul 28 08:52:42 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Tue, 28 Jul 2009 08:52:42 +0000 (UTC) Subject: rpms/wordpress/F-11 .cvsignore, 1.23, 1.24 sources, 1.23, 1.24 wordpress.spec, 1.29, 1.30 Message-ID: <20090728085242.DD1A211C00D4@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21453 Modified Files: .cvsignore sources wordpress.spec Log Message: * Tue Jul 28 2009 Adrian Reber - 2.8.2-1 - updated to 2.8.2 for security fixes - BZ 512900 - fixed "wrong-script-end-of-line-encoding" of license.txt - correctly disable auto update check - fixed an error message from 'find' during the build Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 10 Jul 2009 19:44:08 -0000 1.23 +++ .cvsignore 28 Jul 2009 08:52:42 -0000 1.24 @@ -1 +1 @@ -wordpress-2.8.1.tar.gz +wordpress-2.8.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 10 Jul 2009 19:44:08 -0000 1.23 +++ sources 28 Jul 2009 08:52:42 -0000 1.24 @@ -1 +1 @@ -b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz +8fde8c4aa3e4d86ce9ddca7cdc0769a2 wordpress-2.8.2.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/wordpress.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- wordpress.spec 10 Jul 2009 19:44:08 -0000 1.29 +++ wordpress.spec 28 Jul 2009 08:52:42 -0000 1.30 @@ -1,7 +1,7 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.8.1 +Version: 2.8.2 Group: Applications/Publishing Release: 1%{?dist} License: GPLv2 @@ -18,9 +18,11 @@ almost trivial, to get information out t %prep %setup -q -n wordpress -# disable-wordpress-core-update, updates are always installed via rpm -# this does not disable the wordpress-plugins-update check -sed -i -e "s,^add_action,#add_action,g" wp-includes/update.php +# disable wp_version_check, updates are always installed via rpm +sed -i -e "s,\(.*\)'wp_version_check'\(.*\),#\1'wp_version_check'\2,g" \ + wp-includes/update.php +# fix file encoding +sed -i -e 's/\r//' license.txt %install mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress @@ -28,11 +30,11 @@ mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir} install -m 0644 -D -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/wordpress.conf cp -pr * ${RPM_BUILD_ROOT}%{_datadir}/wordpress cat wp-config-sample.php | sed -e "s|dirname(__FILE__).'/'|'/usr/share/wordpress/'|g" > \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php + ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php /bin/ln -sf ../../../etc/wordpress/wp-config.php ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-config.php /bin/cp %{SOURCE2} ./README.fedora # Remove empty files to make rpmlint happy -find ${RPM_BUILD_ROOT} -empty -exec rm -f {} \; +find ${RPM_BUILD_ROOT} -type f -empty -exec rm -f {} \; # These are docs, remove them from here, docify them later rm -f ${RPM_BUILD_ROOT}%{_datadir}/wordpress/{license.txt,readme.html} @@ -75,6 +77,15 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Tue Jul 28 2009 Adrian Reber - 2.8.2-1 +- updated to 2.8.2 for security fixes - BZ 512900 +- fixed "wrong-script-end-of-line-encoding" of license.txt +- correctly disable auto update check +- fixed an error message from 'find' during the build + +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 From adrian at fedoraproject.org Tue Jul 28 08:53:16 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Tue, 28 Jul 2009 08:53:16 +0000 (UTC) Subject: rpms/wordpress/F-10 .cvsignore, 1.23, 1.24 sources, 1.23, 1.24 wordpress.spec, 1.29, 1.30 Message-ID: <20090728085316.926EE11C00D4@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21688 Modified Files: .cvsignore sources wordpress.spec Log Message: * Tue Jul 28 2009 Adrian Reber - 2.8.2-1 - updated to 2.8.2 for security fixes - BZ 512900 - fixed "wrong-script-end-of-line-encoding" of license.txt - correctly disable auto update check - fixed an error message from 'find' during the build Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 10 Jul 2009 20:03:58 -0000 1.23 +++ .cvsignore 28 Jul 2009 08:53:16 -0000 1.24 @@ -1 +1 @@ -wordpress-2.8.1.tar.gz +wordpress-2.8.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 10 Jul 2009 20:03:59 -0000 1.23 +++ sources 28 Jul 2009 08:53:16 -0000 1.24 @@ -1 +1 @@ -b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz +8fde8c4aa3e4d86ce9ddca7cdc0769a2 wordpress-2.8.2.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/wordpress.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- wordpress.spec 10 Jul 2009 20:03:59 -0000 1.29 +++ wordpress.spec 28 Jul 2009 08:53:16 -0000 1.30 @@ -1,7 +1,7 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.8.1 +Version: 2.8.2 Group: Applications/Publishing Release: 1%{?dist} License: GPLv2 @@ -18,9 +18,11 @@ almost trivial, to get information out t %prep %setup -q -n wordpress -# disable-wordpress-core-update, updates are always installed via rpm -# this does not disable the wordpress-plugins-update check -sed -i -e "s,^add_action,#add_action,g" wp-includes/update.php +# disable wp_version_check, updates are always installed via rpm +sed -i -e "s,\(.*\)'wp_version_check'\(.*\),#\1'wp_version_check'\2,g" \ + wp-includes/update.php +# fix file encoding +sed -i -e 's/\r//' license.txt %install mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress @@ -28,11 +30,11 @@ mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir} install -m 0644 -D -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/wordpress.conf cp -pr * ${RPM_BUILD_ROOT}%{_datadir}/wordpress cat wp-config-sample.php | sed -e "s|dirname(__FILE__).'/'|'/usr/share/wordpress/'|g" > \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php + ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php /bin/ln -sf ../../../etc/wordpress/wp-config.php ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-config.php /bin/cp %{SOURCE2} ./README.fedora # Remove empty files to make rpmlint happy -find ${RPM_BUILD_ROOT} -empty -exec rm -f {} \; +find ${RPM_BUILD_ROOT} -type f -empty -exec rm -f {} \; # These are docs, remove them from here, docify them later rm -f ${RPM_BUILD_ROOT}%{_datadir}/wordpress/{license.txt,readme.html} @@ -75,6 +77,15 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Tue Jul 28 2009 Adrian Reber - 2.8.2-1 +- updated to 2.8.2 for security fixes - BZ 512900 +- fixed "wrong-script-end-of-line-encoding" of license.txt +- correctly disable auto update check +- fixed an error message from 'find' during the build + +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 From adrian at fedoraproject.org Tue Jul 28 08:53:46 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Tue, 28 Jul 2009 08:53:46 +0000 (UTC) Subject: rpms/wordpress/EL-5 .cvsignore, 1.22, 1.23 sources, 1.22, 1.23 wordpress.spec, 1.28, 1.29 Message-ID: <20090728085346.80BF211C00D4@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21890 Modified Files: .cvsignore sources wordpress.spec Log Message: * Tue Jul 28 2009 Adrian Reber - 2.8.2-1 - updated to 2.8.2 for security fixes - BZ 512900 - fixed "wrong-script-end-of-line-encoding" of license.txt - correctly disable auto update check - fixed an error message from 'find' during the build Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 10 Jul 2009 20:19:27 -0000 1.22 +++ .cvsignore 28 Jul 2009 08:53:46 -0000 1.23 @@ -1 +1 @@ -wordpress-2.8.1.tar.gz +wordpress-2.8.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 10 Jul 2009 20:19:28 -0000 1.22 +++ sources 28 Jul 2009 08:53:46 -0000 1.23 @@ -1 +1 @@ -b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz +8fde8c4aa3e4d86ce9ddca7cdc0769a2 wordpress-2.8.2.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/wordpress.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- wordpress.spec 10 Jul 2009 20:19:28 -0000 1.28 +++ wordpress.spec 28 Jul 2009 08:53:46 -0000 1.29 @@ -1,7 +1,7 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.8.1 +Version: 2.8.2 Group: Applications/Publishing Release: 1%{?dist} License: GPLv2 @@ -18,9 +18,11 @@ almost trivial, to get information out t %prep %setup -q -n wordpress -# disable-wordpress-core-update, updates are always installed via rpm -# this does not disable the wordpress-plugins-update check -sed -i -e "s,^add_action,#add_action,g" wp-includes/update.php +# disable wp_version_check, updates are always installed via rpm +sed -i -e "s,\(.*\)'wp_version_check'\(.*\),#\1'wp_version_check'\2,g" \ + wp-includes/update.php +# fix file encoding +sed -i -e 's/\r//' license.txt %install mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress @@ -28,11 +30,11 @@ mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir} install -m 0644 -D -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/wordpress.conf cp -pr * ${RPM_BUILD_ROOT}%{_datadir}/wordpress cat wp-config-sample.php | sed -e "s|dirname(__FILE__).'/'|'/usr/share/wordpress/'|g" > \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php + ${RPM_BUILD_ROOT}%{_sysconfdir}/wordpress/wp-config.php /bin/ln -sf ../../../etc/wordpress/wp-config.php ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-config.php /bin/cp %{SOURCE2} ./README.fedora # Remove empty files to make rpmlint happy -find ${RPM_BUILD_ROOT} -empty -exec rm -f {} \; +find ${RPM_BUILD_ROOT} -type f -empty -exec rm -f {} \; # These are docs, remove them from here, docify them later rm -f ${RPM_BUILD_ROOT}%{_datadir}/wordpress/{license.txt,readme.html} @@ -75,6 +77,15 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Tue Jul 28 2009 Adrian Reber - 2.8.2-1 +- updated to 2.8.2 for security fixes - BZ 512900 +- fixed "wrong-script-end-of-line-encoding" of license.txt +- correctly disable auto update check +- fixed an error message from 'find' during the build + +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 From twaugh at fedoraproject.org Tue Jul 28 08:59:55 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 08:59:55 +0000 (UTC) Subject: rpms/hplip/F-11 hplip-resolution-405400.patch, NONE, 1.1 hplip.spec, 1.208, 1.209 Message-ID: <20090728085955.4285A11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24212 Modified Files: hplip.spec Added Files: hplip-resolution-405400.patch Log Message: * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). hplip-resolution-405400.patch: hpcups.drv.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE hplip-resolution-405400.patch --- diff -up hplip-3.9.6b/prnt/drv/hpcups.drv.in.resolution-405400 hplip-3.9.6b/prnt/drv/hpcups.drv.in --- hplip-3.9.6b/prnt/drv/hpcups.drv.in.resolution-405400 2009-06-25 21:01:45.000000000 +0100 +++ hplip-3.9.6b/prnt/drv/hpcups.drv.in 2009-07-28 09:38:56.866872128 +0100 @@ -1296,7 +1296,7 @@ Manufacturer "HP" // cupsCompression values map to QUALITY_MODE from global_types.h Option "OutputMode/Print Quality" PickOne AnySetup 10.0 - *Choice "Normal/Normal" "<>setpagedevice" + *Choice "Normal/Normal" "<>setpagedevice" Choice "Draft/Draft" "<>setpagedevice" Choice "Best/Best" "<>setpagedevice" Choice "Photo/High-Resolution Photo" "<>setpagedevice" Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- hplip.spec 27 Jul 2009 18:24:06 -0000 1.208 +++ hplip.spec 28 Jul 2009 08:59:54 -0000 1.209 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.6b -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -24,6 +24,7 @@ Patch8: hplip-libsane.patch Patch12: hplip-no-root-config.patch Patch13: hplip-ui-optional.patch Patch14: hplip-disc-media.patch +Patch15: hplip-resolution-405400.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(pre): /sbin/service @@ -136,6 +137,10 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} # Set disc media for disc page sizes (bug #495672). %patch14 -p1 -b .disc-media +# Fixed HWResolution for 'Normal' output from the hpcups driver +# (laundpad bug #405400). +%patch15 -p1 -b .resolution-405400 + %build %configure --disable-foomatic-xml-install --disable-cups-install \ --enable-scan-build --enable-gui-build --enable-fax-build \ @@ -343,6 +348,10 @@ fi exit 0 %changelog +* Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +- Fixed HWResolution for 'Normal' output from the hpcups driver + (laundpad bug #405400). + * Mon Jul 27 2009 Tim Waugh 3.9.6b-2 - 3.9.6b. From twaugh at fedoraproject.org Tue Jul 28 09:01:42 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 09:01:42 +0000 (UTC) Subject: rpms/hplip/devel hplip.spec,1.210,1.211 Message-ID: <20090728090142.9181B11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24840 Modified Files: hplip.spec Log Message: * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.210 retrieving revision 1.211 diff -u -p -r1.210 -r1.211 --- hplip.spec 27 Jul 2009 18:23:08 -0000 1.210 +++ hplip.spec 28 Jul 2009 09:01:42 -0000 1.211 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.6b -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -24,6 +24,7 @@ Patch8: hplip-libsane.patch Patch12: hplip-no-root-config.patch Patch13: hplip-ui-optional.patch Patch14: hplip-disc-media.patch +Patch15: hplip-resolution-405400.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(pre): /sbin/service @@ -136,6 +137,10 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} # Set disc media for disc page sizes (bug #495672). %patch14 -p1 -b .disc-media +# Fixed HWResolution for 'Normal' output from the hpcups driver +# (laundpad bug #405400). +%patch15 -p1 -b .resolution-405400 + %build %configure --disable-foomatic-xml-install --disable-cups-install \ --enable-scan-build --enable-gui-build --enable-fax-build \ @@ -343,6 +348,10 @@ fi exit 0 %changelog +* Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +- Fixed HWResolution for 'Normal' output from the hpcups driver + (laundpad bug #405400). + * Mon Jul 27 2009 Tim Waugh 3.9.6b-2 - 3.9.6b. From pkgdb at fedoraproject.org Tue Jul 28 09:11:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:11:44 +0000 Subject: [pkgdb] qpidc: fabbione has requested watchcommits Message-ID: <20090728091144.9F09D10F899@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on qpidc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 09:11:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:11:45 +0000 Subject: [pkgdb] qpidc: fabbione has requested commit Message-ID: <20090728091145.6751210F89F@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on qpidc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 09:11:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:11:53 +0000 Subject: [pkgdb] qpidc: fabbione has requested watchcommits Message-ID: <20090728091153.3C2A210F8B1@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on qpidc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 09:11:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:11:56 +0000 Subject: [pkgdb] qpidc: fabbione has requested commit Message-ID: <20090728091156.4CC8310F8B6@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on qpidc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 09:11:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:11:59 +0000 Subject: [pkgdb] qpidc: fabbione has requested watchcommits Message-ID: <20090728091159.5641410F8BA@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on qpidc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 09:12:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:12:00 +0000 Subject: [pkgdb] qpidc: fabbione has requested commit Message-ID: <20090728091200.4166D10F8BE@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on qpidc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From ondrejj at fedoraproject.org Tue Jul 28 09:14:43 2009 From: ondrejj at fedoraproject.org (ondrejj) Date: Tue, 28 Jul 2009 09:14:43 +0000 (UTC) Subject: rpms/sagator/EL-5 .cvsignore, 1.5, 1.6 import.log, 1.3, 1.4 sagator.spec, 1.11, 1.12 sources, 1.5, 1.6 Message-ID: <20090728091443.CC77411C00D4@cvs1.fedora.phx.redhat.com> Author: ondrejj Update of /cvs/pkgs/rpms/sagator/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29118/EL-5 Modified Files: .cvsignore import.log sagator.spec sources Log Message: Revert requires to smtpdaemon for EPEL Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 28 Jul 2009 07:05:03 -0000 1.5 +++ .cvsignore 28 Jul 2009 09:14:43 -0000 1.6 @@ -1 +1 @@ -sagator-1.2.0-0.rc5.tar.bz2 +sagator-1.2.0-0.rc6.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 28 Jul 2009 07:05:03 -0000 1.3 +++ import.log 28 Jul 2009 09:14:43 -0000 1.4 @@ -1,3 +1,4 @@ sagator-1_1_0-1_fc9:EL-5:sagator-1.1.0-1.fc9.src.rpm:1216030000 sagator-1_1_1-1_fc10:EL-5:sagator-1.1.1-1.fc10.src.rpm:1236596078 sagator-1_2_0-0_rc5_fc11:EL-5:sagator-1.2.0-0.rc5.fc11.src.rpm:1248764651 +sagator-1_2_0-0_rc6_fc11:EL-5:sagator-1.2.0-0.rc6.fc11.src.rpm:1248772467 Index: sagator.spec =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/sagator.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sagator.spec 28 Jul 2009 07:25:27 -0000 1.11 +++ sagator.spec 28 Jul 2009 09:14:43 -0000 1.12 @@ -8,8 +8,8 @@ Summary: Antivir/antispam gateway for smtp server Name: sagator Version: 1.2.0 -Release: 0.rc5%{?dist} -Source: http://www.salstar.sk/pub/antivir/snapshots/sagator-%{version}-0.rc5.tar.bz2 +Release: 0.rc6%{?dist} +Source: http://www.salstar.sk/pub/antivir/snapshots/sagator-%{version}-0.rc6.tar.bz2 URL: http://www.salstar.sk/sagator/ License: GPLv2+ Group: System Environment/Daemons @@ -67,7 +67,12 @@ Requires: python-ctypes Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts -Requires: initscripts, server(smtp), shadow-utils +Requires: initscripts, shadow-utils +%if 0%{?fedora} || 0%{?rhel} > 5 +Requires: server(smtp) +%else +Requires: smtpdaemon +%endif BuildRequires: initscripts, logwatch, clamav-devel >= %{CLAMAV_VERSION} Requires: clamav-lib >= %{CLAMAV_VERSION} Requires: spamassassin @@ -236,7 +241,10 @@ rm -rf %{buildroot} %endif %changelog -* Wed Sep 17 2008 Jan ONDREJ (SAL) - 1.2.0-0.rc5 +* Tue Jul 28 2009 Jan ONDREJ (SAL) - 1.2.0-0.rc6 +- Requires: smtpdaemon again for EPEL + +* Wed Sep 17 2008 Jan ONDREJ (SAL) - 1.1.1-1 - core files moved to core packages, sagator package now requires clamav and spamassassin - added selinux policy dir Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sagator/EL-5/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 28 Jul 2009 07:05:04 -0000 1.5 +++ sources 28 Jul 2009 09:14:43 -0000 1.6 @@ -1 +1 @@ -99742fb66d2b9061f1da218169bb9981 sagator-1.2.0-0.rc5.tar.bz2 +d30c77ca4c6d845ed69bdcdd893aa9b1 sagator-1.2.0-0.rc6.tar.bz2 From till at fedoraproject.org Tue Jul 28 09:16:35 2009 From: till at fedoraproject.org (Till Maas) Date: Tue, 28 Jul 2009 09:16:35 +0000 (UTC) Subject: rpms/lzip/F-11 .cvsignore, 1.3, 1.4 lzip.spec, 1.3, 1.4 sources, 1.3, 1.4 lzip-1.4-missing_cstdio.patch, 1.1, NONE Message-ID: <20090728091635.EF21A11C00D4@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/lzip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30510 Modified Files: .cvsignore lzip.spec sources Removed Files: lzip-1.4-missing_cstdio.patch Log Message: * Tue Jul 28 2009 Till Maas - 1.7-1 - Update to latest stable upstream - remove upstreamed patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lzip/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Feb 2009 09:18:04 -0000 1.3 +++ .cvsignore 28 Jul 2009 09:16:35 -0000 1.4 @@ -1,2 +1,2 @@ -lzip-1.4.tar.gz -lzip-1.4.tar.gz.sig +lzip-1.7.tar.gz +lzip-1.7.tar.gz.sig Index: lzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzip/F-11/lzip.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lzip.spec 25 Feb 2009 22:31:04 -0000 1.3 +++ lzip.spec 28 Jul 2009 09:16:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: lzip -Version: 1.4 -Release: 2%{?dist} +Version: 1.7 +Release: 1%{?dist} Summary: LZMA compressor with integrity checking Group: Applications/File @@ -8,8 +8,6 @@ License: GPLv3+ URL: http://www.nongnu.org/lzip/lzip.html Source0: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz Source1: http://download.savannah.gnu.org/releases/lzip/lzip-%{version}.tar.gz.sig -# 2009-02-15: sent to upstream bug report mailinglist lzip-bug at nongnu.org -Patch0: lzip-1.4-missing_cstdio.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): info @@ -24,7 +22,7 @@ format (.lz) is not compatible with the %prep %setup -q -%patch0 -p1 -b .missing_cstdio + %build %configure CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" @@ -61,12 +59,25 @@ fi %defattr(-,root,root,-) # TODO is currently empty %doc AUTHORS ChangeLog COPYING NEWS README +%{_bindir}/lzdiff +%{_bindir}/lzgrep %{_bindir}/lzip +%{_bindir}/lziprecover %{_infodir}/lzip.info* +%{_mandir}/man1/lzdiff.1.gz +%{_mandir}/man1/lzgrep.1.gz %{_mandir}/man1/lzip.1* +%{_mandir}/man1/lziprecover.1.gz %changelog +* Tue Jul 28 2009 Till Maas - 1.7-1 +- Update to latest stable upstream +- remove upstreamed patch + +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lzip/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Feb 2009 09:18:04 -0000 1.3 +++ sources 28 Jul 2009 09:16:35 -0000 1.4 @@ -1,2 +1,2 @@ -b7b7b7502c0364995709f5580539dfef lzip-1.4.tar.gz -ca48bb210716864384ddcbdc9f651644 lzip-1.4.tar.gz.sig +c63815497a25d21ed2431a0758d4191f lzip-1.7.tar.gz +24484c5843a347bfd4e44ffa4c609342 lzip-1.7.tar.gz.sig --- lzip-1.4-missing_cstdio.patch DELETED --- From pkgdb at fedoraproject.org Tue Jul 28 09:16:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:39 +0000 Subject: [pkgdb] asterisk: fabbione has requested watchcommits Message-ID: <20090728091639.B5D5B10F891@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 09:16:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:42 +0000 Subject: [pkgdb] asterisk: fabbione has requested commit Message-ID: <20090728091642.2FAA210F89C@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 09:16:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:50 +0000 Subject: [pkgdb] asterisk: fabbione has requested watchcommits Message-ID: <20090728091650.6A23E10F89E@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 09:16:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:51 +0000 Subject: [pkgdb] asterisk: fabbione has requested commit Message-ID: <20090728091651.E4A0C10F8A1@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 09:16:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:53 +0000 Subject: [pkgdb] asterisk: fabbione has requested watchcommits Message-ID: <20090728091653.CA63E10F8B5@bastion2.fedora.phx.redhat.com> fabbione has requested the watchcommits acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 09:16:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 09:16:54 +0000 Subject: [pkgdb] asterisk: fabbione has requested commit Message-ID: <20090728091654.959D210F8B8@bastion2.fedora.phx.redhat.com> fabbione has requested the commit acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From twaugh at fedoraproject.org Tue Jul 28 09:18:05 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 09:18:05 +0000 (UTC) Subject: rpms/hplip/F-11 hplip-ui-optional.patch, 1.1, 1.2 hplip.spec, 1.209, 1.210 Message-ID: <20090728091805.A545F11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31052 Modified Files: hplip-ui-optional.patch hplip.spec Log Message: * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 - Fixed ui-optional patch for qt4 code path (bug #500473). hplip-ui-optional.patch: utils.py | 10 ++++++++++ 1 file changed, 10 insertions(+) Index: hplip-ui-optional.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-ui-optional.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-ui-optional.patch 11 Jun 2007 14:53:16 -0000 1.1 +++ hplip-ui-optional.patch 28 Jul 2009 09:18:05 -0000 1.2 @@ -1,16 +1,28 @@ ---- hplip-1.7.2/base/utils.py.ui-optional 2007-02-07 19:21:31.000000000 +0000 -+++ hplip-1.7.2/base/utils.py 2007-06-11 14:29:16.000000000 +0100 -@@ -644,6 +644,13 @@ - log.error("PyQt not installed. GUI not available. Exiting.") - return False +diff -up hplip-3.9.6b/base/utils.py.ui-optional hplip-3.9.6b/base/utils.py +--- hplip-3.9.6b/base/utils.py.ui-optional 2009-06-25 20:05:53.000000000 +0100 ++++ hplip-3.9.6b/base/utils.py 2009-07-28 10:10:57.984991878 +0100 +@@ -597,6 +597,13 @@ def checkPyQtImport(): # qt3 + if os.getenv('DISPLAY') and os.getenv('STARTED_FROM_MENU'): + no_qt_message_gtk() -+ # hplip-gui sub-package (Fedora) -+ try: -+ import ui -+ except ImportError: -+ log.error("hplip-gui not installed. GUI not available. Exiting.") -+ return False ++ # hplip-gui sub-package (Fedora) ++ try: ++ import ui ++ except ImportError: ++ log.error("hplip-gui not installed. GUI not available. Exiting.") ++ return False + - # check version of Qt - qtMajor = int(qt.qVersion().split('.')[0]) + log.error("PyQt not installed. GUI not available. Exiting.") + return False +@@ -642,7 +649,10 @@ def checkPyQtImport(): # qt3 + def checkPyQtImport4(): + try: + import PyQt4 ++ import ui4 + except ImportError: ++ # hplip-gui sub-package (Fedora) requires PyQt4 ++ log.error("Install the hplip-gui package for graphical support.") + return False + else: + return True Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.209 retrieving revision 1.210 diff -u -p -r1.209 -r1.210 --- hplip.spec 28 Jul 2009 08:59:54 -0000 1.209 +++ hplip.spec 28 Jul 2009 09:18:05 -0000 1.210 @@ -349,6 +349,7 @@ exit 0 %changelog * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +- Fixed ui-optional patch for qt4 code path (bug #500473). - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). From twaugh at fedoraproject.org Tue Jul 28 09:18:30 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 09:18:30 +0000 (UTC) Subject: rpms/hplip/devel hplip-ui-optional.patch, 1.1, 1.2 hplip.spec, 1.211, 1.212 Message-ID: <20090728091830.7FF8511C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31180 Modified Files: hplip-ui-optional.patch hplip.spec Log Message: * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 - Fixed ui-optional patch for qt4 code path (bug #500473). hplip-ui-optional.patch: utils.py | 10 ++++++++++ 1 file changed, 10 insertions(+) Index: hplip-ui-optional.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-ui-optional.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-ui-optional.patch 11 Jun 2007 14:53:16 -0000 1.1 +++ hplip-ui-optional.patch 28 Jul 2009 09:18:30 -0000 1.2 @@ -1,16 +1,28 @@ ---- hplip-1.7.2/base/utils.py.ui-optional 2007-02-07 19:21:31.000000000 +0000 -+++ hplip-1.7.2/base/utils.py 2007-06-11 14:29:16.000000000 +0100 -@@ -644,6 +644,13 @@ - log.error("PyQt not installed. GUI not available. Exiting.") - return False +diff -up hplip-3.9.6b/base/utils.py.ui-optional hplip-3.9.6b/base/utils.py +--- hplip-3.9.6b/base/utils.py.ui-optional 2009-06-25 20:05:53.000000000 +0100 ++++ hplip-3.9.6b/base/utils.py 2009-07-28 10:10:57.984991878 +0100 +@@ -597,6 +597,13 @@ def checkPyQtImport(): # qt3 + if os.getenv('DISPLAY') and os.getenv('STARTED_FROM_MENU'): + no_qt_message_gtk() -+ # hplip-gui sub-package (Fedora) -+ try: -+ import ui -+ except ImportError: -+ log.error("hplip-gui not installed. GUI not available. Exiting.") -+ return False ++ # hplip-gui sub-package (Fedora) ++ try: ++ import ui ++ except ImportError: ++ log.error("hplip-gui not installed. GUI not available. Exiting.") ++ return False + - # check version of Qt - qtMajor = int(qt.qVersion().split('.')[0]) + log.error("PyQt not installed. GUI not available. Exiting.") + return False +@@ -642,7 +649,10 @@ def checkPyQtImport(): # qt3 + def checkPyQtImport4(): + try: + import PyQt4 ++ import ui4 + except ImportError: ++ # hplip-gui sub-package (Fedora) requires PyQt4 ++ log.error("Install the hplip-gui package for graphical support.") + return False + else: + return True Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.211 retrieving revision 1.212 diff -u -p -r1.211 -r1.212 --- hplip.spec 28 Jul 2009 09:01:42 -0000 1.211 +++ hplip.spec 28 Jul 2009 09:18:30 -0000 1.212 @@ -349,6 +349,7 @@ exit 0 %changelog * Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +- Fixed ui-optional patch for qt4 code path (bug #500473). - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). From schwab at fedoraproject.org Tue Jul 28 09:34:51 2009 From: schwab at fedoraproject.org (schwab) Date: Tue, 28 Jul 2009 09:34:51 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.276, 1.277 glibc-fedora.patch, 1.310, 1.311 glibc.spec, 1.403, 1.404 import.log, 1.19, 1.20 sources, 1.301, 1.302 Message-ID: <20090728093451.D1CD511C00D4@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4202/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.276 retrieving revision 1.277 diff -u -p -r1.276 -r1.277 --- .cvsignore 27 Jul 2009 13:22:43 -0000 1.276 +++ .cvsignore 28 Jul 2009 09:34:51 -0000 1.277 @@ -1,2 +1,2 @@ -glibc-2.10-214-g16d2ea4-fedora.tar.bz2 -glibc-2.10-214-g16d2ea4.tar.bz2 +glibc-2.10-221-ge73e694-fedora.tar.bz2 +glibc-2.10-221-ge73e694.tar.bz2 glibc-fedora.patch: ChangeLog | 35 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 59 files changed, 787 insertions(+), 467 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.310 retrieving revision 1.311 diff -u -p -r1.310 -r1.311 --- glibc-fedora.patch 27 Jul 2009 13:22:45 -0000 1.310 +++ glibc-fedora.patch 28 Jul 2009 09:34:51 -0000 1.311 @@ -1,6 +1,6 @@ ---- glibc-2.10-214-g16d2ea4/ChangeLog +--- glibc-2.10-221-ge73e694/ChangeLog +++ glibc-2.10.90-9/ChangeLog -@@ -121,6 +121,11 @@ +@@ -150,6 +150,11 @@ * sysdeps/generic/ldsodefs.h (struct rtld_global): The map element in the unique symbol hash table should not be const. @@ -12,7 +12,7 @@ 2009-07-21 Ulrich Drepper * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups. Remove -@@ -386,6 +391,16 @@ +@@ -415,6 +420,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -29,7 +29,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8784,6 +8799,13 @@ +@@ -8813,6 +8828,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -43,7 +43,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -9079,6 +9101,10 @@ +@@ -9108,6 +9130,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -54,7 +54,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -10336,6 +10362,15 @@ +@@ -10365,6 +10391,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -70,7 +70,7 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-214-g16d2ea4/ChangeLog.15 +--- glibc-2.10-221-ge73e694/ChangeLog.15 +++ glibc-2.10.90-9/ChangeLog.15 @@ -477,6 +477,14 @@ @@ -137,7 +137,7 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-214-g16d2ea4/ChangeLog.16 +--- glibc-2.10-221-ge73e694/ChangeLog.16 +++ glibc-2.10.90-9/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] @@ -310,7 +310,7 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-214-g16d2ea4/Makeconfig +--- glibc-2.10-221-ge73e694/Makeconfig +++ glibc-2.10.90-9/Makeconfig @@ -780,12 +780,12 @@ endif # The assembler can generate debug information too. @@ -328,7 +328,7 @@ ifndef BUILD_CC BUILD_CC = $(CC) ---- glibc-2.10-214-g16d2ea4/csu/Makefile +--- glibc-2.10-221-ge73e694/csu/Makefile +++ glibc-2.10.90-9/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h @@ -340,7 +340,7 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-214-g16d2ea4/csu/elf-init.c +--- glibc-2.10-221-ge73e694/csu/elf-init.c +++ glibc-2.10.90-9/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; @@ -366,7 +366,7 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-214-g16d2ea4/debug/tst-chk1.c +--- glibc-2.10-221-ge73e694/debug/tst-chk1.c +++ glibc-2.10.90-9/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA @@ -396,7 +396,7 @@ # define O 0 # else # define O 1 ---- glibc-2.10-214-g16d2ea4/elf/ldconfig.c +--- glibc-2.10-221-ge73e694/elf/ldconfig.c +++ glibc-2.10.90-9/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -479,7 +479,7 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-214-g16d2ea4/elf/tst-stackguard1.c +--- glibc-2.10-221-ge73e694/elf/tst-stackguard1.c +++ glibc-2.10.90-9/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ @@ -505,15 +505,15 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-214-g16d2ea4/include/bits/stdlib-ldbl.h +--- glibc-2.10-221-ge73e694/include/bits/stdlib-ldbl.h +++ glibc-2.10.90-9/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-214-g16d2ea4/include/bits/wchar-ldbl.h +--- glibc-2.10-221-ge73e694/include/bits/wchar-ldbl.h +++ glibc-2.10.90-9/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-214-g16d2ea4/include/features.h +--- glibc-2.10-221-ge73e694/include/features.h +++ glibc-2.10.90-9/include/features.h @@ -299,8 +299,13 @@ #endif @@ -531,7 +531,7 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-214-g16d2ea4/intl/locale.alias +--- glibc-2.10-221-ge73e694/intl/locale.alias +++ glibc-2.10.90-9/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR @@ -542,7 +542,7 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-214-g16d2ea4/libio/stdio.h +--- glibc-2.10-221-ge73e694/libio/stdio.h +++ glibc-2.10.90-9/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ @@ -557,7 +557,7 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-214-g16d2ea4/locale/iso-4217.def +--- glibc-2.10-221-ge73e694/locale/iso-4217.def +++ glibc-2.10.90-9/locale/iso-4217.def @@ -8,6 +8,7 @@ * @@ -650,7 +650,7 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-214-g16d2ea4/locale/programs/locarchive.c +--- glibc-2.10-221-ge73e694/locale/programs/locarchive.c +++ glibc-2.10.90-9/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ @@ -683,7 +683,7 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-214-g16d2ea4/localedata/Makefile +--- glibc-2.10-221-ge73e694/localedata/Makefile +++ glibc-2.10.90-9/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ @@ -693,7 +693,7 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-214-g16d2ea4/localedata/SUPPORTED +--- glibc-2.10-221-ge73e694/localedata/SUPPORTED +++ glibc-2.10.90-9/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ @@ -736,7 +736,7 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-214-g16d2ea4/localedata/locales/cy_GB +--- glibc-2.10-221-ge73e694/localedata/locales/cy_GB +++ glibc-2.10.90-9/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" @@ -752,7 +752,7 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-214-g16d2ea4/localedata/locales/en_GB +--- glibc-2.10-221-ge73e694/localedata/locales/en_GB +++ glibc-2.10.90-9/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" @@ -765,7 +765,7 @@ date_fmt "/ / " ---- glibc-2.10-214-g16d2ea4/localedata/locales/no_NO +--- glibc-2.10-221-ge73e694/localedata/locales/no_NO +++ glibc-2.10.90-9/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / @@ -837,7 +837,7 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-214-g16d2ea4/localedata/locales/zh_TW +--- glibc-2.10-221-ge73e694/localedata/locales/zh_TW +++ glibc-2.10.90-9/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % @@ -866,7 +866,7 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-214-g16d2ea4/malloc/mcheck.c +--- glibc-2.10-221-ge73e694/malloc/mcheck.c +++ glibc-2.10.90-9/malloc/mcheck.c @@ -24,9 +24,25 @@ # include @@ -943,7 +943,7 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-214-g16d2ea4/manual/libc.texinfo +--- glibc-2.10-221-ge73e694/manual/libc.texinfo +++ glibc-2.10.90-9/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -954,7 +954,7 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-214-g16d2ea4/misc/sys/cdefs.h +--- glibc-2.10-221-ge73e694/misc/sys/cdefs.h +++ glibc-2.10.90-9/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) @@ -999,7 +999,7 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-214-g16d2ea4/nis/nss +--- glibc-2.10-221-ge73e694/nis/nss +++ glibc-2.10.90-9/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call @@ -1007,9 +1007,9 @@ # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-214-g16d2ea4/nptl/ChangeLog +--- glibc-2.10-221-ge73e694/nptl/ChangeLog +++ glibc-2.10.90-9/nptl/ChangeLog -@@ -3604,6 +3604,15 @@ +@@ -3603,6 +3603,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -1025,7 +1025,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4340,6 +4349,11 @@ +@@ -4339,6 +4348,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -1037,7 +1037,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6414,6 +6428,11 @@ +@@ -6413,6 +6427,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1049,7 +1049,7 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-214-g16d2ea4/nptl/Makefile +--- glibc-2.10-221-ge73e694/nptl/Makefile +++ glibc-2.10.90-9/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) @@ -1083,7 +1083,7 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-214-g16d2ea4/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-221-ge73e694/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ @@ -1093,7 +1093,7 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-214-g16d2ea4/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-221-ge73e694/nptl/sysdeps/unix/sysv/linux/kernel-features.h +++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next @@ -1102,7 +1102,7 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-214-g16d2ea4/nptl/tst-stackguard1.c +--- glibc-2.10-221-ge73e694/nptl/tst-stackguard1.c +++ glibc-2.10.90-9/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ @@ -1128,7 +1128,7 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-214-g16d2ea4/nscd/nscd.conf +--- glibc-2.10-221-ge73e694/nscd/nscd.conf +++ glibc-2.10.90-9/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log @@ -1139,7 +1139,7 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-214-g16d2ea4/nscd/nscd.init +--- glibc-2.10-221-ge73e694/nscd/nscd.init +++ glibc-2.10.90-9/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. @@ -1197,7 +1197,7 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-214-g16d2ea4/posix/Makefile +--- glibc-2.10-221-ge73e694/posix/Makefile +++ glibc-2.10.90-9/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ @@ -1219,7 +1219,7 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-214-g16d2ea4/posix/getconf.speclist.h +--- glibc-2.10-221-ge73e694/posix/getconf.speclist.h +++ glibc-2.10.90-9/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include @@ -1261,7 +1261,7 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-214-g16d2ea4/streams/Makefile +--- glibc-2.10-221-ge73e694/streams/Makefile +++ glibc-2.10.90-9/streams/Makefile @@ -21,7 +21,7 @@ # @@ -1272,7 +1272,7 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-214-g16d2ea4/sysdeps/generic/dl-cache.h +--- glibc-2.10-221-ge73e694/sysdeps/generic/dl-cache.h +++ glibc-2.10.90-9/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) @@ -1289,7 +1289,7 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-214-g16d2ea4/sysdeps/i386/Makefile +--- glibc-2.10-221-ge73e694/sysdeps/i386/Makefile +++ glibc-2.10.90-9/sysdeps/i386/Makefile @@ -2,6 +2,8 @@ # Every i386 port in use uses gas syntax (I think). @@ -1315,7 +1315,7 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-214-g16d2ea4/sysdeps/ia64/Makefile +--- glibc-2.10-221-ge73e694/sysdeps/ia64/Makefile +++ glibc-2.10.90-9/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing @@ -1328,7 +1328,7 @@ endif endif ---- glibc-2.10-214-g16d2ea4/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-221-ge73e694/sysdeps/ia64/ia64libgcc.S +++ glibc-2.10.90-9/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency @@ -1681,7 +1681,7 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-214-g16d2ea4/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-221-ge73e694/sysdeps/ia64/libgcc-compat.c +++ glibc-2.10.90-9/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility @@ -1768,7 +1768,7 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc32/____longjmp_chk.S +++ glibc-2.10.90-9/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ @@ -1787,7 +1787,7 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc64/Makefile +++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. @@ -1797,7 +1797,7 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc64/____longjmp_chk.S +++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ @@ -1816,7 +1816,7 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/nice.c +--- glibc-2.10-221-ge73e694/sysdeps/unix/nice.c +++ glibc-2.10.90-9/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); @@ -1832,7 +1832,7 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/check_pf.c +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include @@ -1849,7 +1849,7 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/dl-osinfo.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA @@ -1898,7 +1898,7 @@ } else #endif ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/futimesat.c +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { @@ -1942,7 +1942,7 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/i386/clone.S +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1962,7 +1962,7 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/i386/dl-cache.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. @@ -2024,7 +2024,7 @@ + } while (0) + +#include_next ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-cache.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ @@ -2058,7 +2058,7 @@ + } while (0) + #include_next ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig @@ -2066,7 +2066,7 @@ +#else +#include +#endif ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig @@ -2074,12 +2074,12 @@ +#else +#include +#endif ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/netlinkaccess.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ @@ -2106,7 +2106,7 @@ struct netlink_res { ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/paths.h +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" @@ -2117,7 +2117,7 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/tcsetattr.c +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { @@ -2164,7 +2164,7 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/x86_64/clone.S +++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2184,7 +2184,7 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-214-g16d2ea4/timezone/zic.c +--- glibc-2.10-221-ge73e694/timezone/zic.c +++ glibc-2.10.90-9/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.403 retrieving revision 1.404 diff -u -p -r1.403 -r1.404 --- glibc.spec 27 Jul 2009 13:22:45 -0000 1.403 +++ glibc.spec 28 Jul 2009 09:34:51 -0000 1.404 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-214-g16d2ea4 +%define glibcsrcdir glibc-2.10-221-ge73e694 %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 9 +Release: 10 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -1037,6 +1037,12 @@ rm -f *.filelist* %endif %changelog +* Tue Jul 28 2009 Andreas Schwab - 2.10.90-10 +- Update from master. + * fix memory ordering in pthread_mutex_unlock (BZ#10418) + * implement RES_USE_DNSSEC option in resolver (#205842) + * fix hang in ldd -r (#513945) + * Mon Jul 27 2009 Andreas Schwab - 2.10.90-9 - Update from master. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- import.log 27 Jul 2009 13:22:45 -0000 1.19 +++ import.log 28 Jul 2009 09:34:51 -0000 1.20 @@ -17,3 +17,4 @@ glibc-2_10_90-4:HEAD:glibc-2.10.90-4.src glibc-2_10_90-5:HEAD:glibc-2.10.90-5.src.rpm:1248267823 glibc-2_10_90-7:HEAD:glibc-2.10.90-7.src.rpm:1248367427 glibc-2_10_90-9:HEAD:glibc-2.10.90-9.src.rpm:1248700754 +glibc-2_10_90-10:HEAD:glibc-2.10.90-10.src.rpm:1248773458 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.301 retrieving revision 1.302 diff -u -p -r1.301 -r1.302 --- sources 27 Jul 2009 13:22:45 -0000 1.301 +++ sources 28 Jul 2009 09:34:51 -0000 1.302 @@ -1,2 +1,2 @@ -1c6e81b1f2100c55b32e9c298e7cce59 glibc-2.10-214-g16d2ea4-fedora.tar.bz2 -973e7a5fc0a6273a6da70f7d36f6b8b4 glibc-2.10-214-g16d2ea4.tar.bz2 +8925f5aaf39135b91b82cadea1dbbb35 glibc-2.10-221-ge73e694-fedora.tar.bz2 +48861ec98c147d503490376ce8fafa4b glibc-2.10-221-ge73e694.tar.bz2 From twaugh at fedoraproject.org Tue Jul 28 09:48:14 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 09:48:14 +0000 (UTC) Subject: rpms/hplip/devel hplip-resolution-405400.patch, NONE, 1.1 hplip.spec, 1.212, 1.213 Message-ID: <20090728094814.E61BB11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9617 Modified Files: hplip.spec Added Files: hplip-resolution-405400.patch Log Message: Added the patch. hplip-resolution-405400.patch: hpcups.drv.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE hplip-resolution-405400.patch --- diff -up hplip-3.9.6b/prnt/drv/hpcups.drv.in.resolution-405400 hplip-3.9.6b/prnt/drv/hpcups.drv.in --- hplip-3.9.6b/prnt/drv/hpcups.drv.in.resolution-405400 2009-06-25 21:01:45.000000000 +0100 +++ hplip-3.9.6b/prnt/drv/hpcups.drv.in 2009-07-28 09:38:56.866872128 +0100 @@ -1296,7 +1296,7 @@ Manufacturer "HP" // cupsCompression values map to QUALITY_MODE from global_types.h Option "OutputMode/Print Quality" PickOne AnySetup 10.0 - *Choice "Normal/Normal" "<>setpagedevice" + *Choice "Normal/Normal" "<>setpagedevice" Choice "Draft/Draft" "<>setpagedevice" Choice "Best/Best" "<>setpagedevice" Choice "Photo/High-Resolution Photo" "<>setpagedevice" Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.212 retrieving revision 1.213 diff -u -p -r1.212 -r1.213 --- hplip.spec 28 Jul 2009 09:18:30 -0000 1.212 +++ hplip.spec 28 Jul 2009 09:48:14 -0000 1.213 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.6b -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -348,7 +348,7 @@ fi exit 0 %changelog -* Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +* Tue Jul 28 2009 Tim Waugh 3.9.6b-4 - Fixed ui-optional patch for qt4 code path (bug #500473). - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). From twaugh at fedoraproject.org Tue Jul 28 09:50:39 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 09:50:39 +0000 (UTC) Subject: rpms/hplip/F-11 hplip.spec,1.210,1.211 Message-ID: <20090728095039.E1E8D11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10588 Modified Files: hplip.spec Log Message: 3.9.6b-4 Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.210 retrieving revision 1.211 diff -u -p -r1.210 -r1.211 --- hplip.spec 28 Jul 2009 09:18:05 -0000 1.210 +++ hplip.spec 28 Jul 2009 09:50:39 -0000 1.211 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.6b -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -348,7 +348,7 @@ fi exit 0 %changelog -* Tue Jul 28 2009 Tim Waugh 3.9.6b-3 +* Tue Jul 28 2009 Tim Waugh 3.9.6b-4 - Fixed ui-optional patch for qt4 code path (bug #500473). - Fixed HWResolution for 'Normal' output from the hpcups driver (laundpad bug #405400). From markmc at fedoraproject.org Tue Jul 28 09:58:42 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 09:58:42 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.147,1.148 Message-ID: <20090728095842.CCFF211C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13593 Modified Files: libvirt.spec Log Message: * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- libvirt.spec 27 Jul 2009 17:52:28 -0000 1.147 +++ libvirt.spec 28 Jul 2009 09:58:42 -0000 1.148 @@ -72,7 +72,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.1.gitf055724%{?dist}%{?extra_release} +Release: 0.2.gitf055724%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.1.gitf055724.tar.gz @@ -114,7 +114,7 @@ BuildRequires: util-linux BuildRequires: nfs-utils Requires: nfs-utils # For glusterfs -Requires: glusterfs-client >= 2.0.2 +Requires: glusterfs-client >= 2.0.1 %endif %if %{with_qemu} # From QEMU RPMs @@ -606,6 +606,9 @@ fi %endif %changelog +* Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 +- Drop glusterfs dep to 2.0.1 (bug #514191) + * Mon Jul 27 2009 Daniel Veillard - 0.7.0-0.1.gitf055724 - prerelease of 0.7.0 From mcrha at fedoraproject.org Tue Jul 28 10:12:04 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Tue, 28 Jul 2009 10:12:04 +0000 (UTC) Subject: rpms/evolution-mapi/devel evolution-mapi.spec,1.14,1.15 Message-ID: <20090728101204.5183E11C00D4@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18835 Modified Files: evolution-mapi.spec Log Message: * Tue Jul 28 2009 Milan Crha - 0.27.5-2 - Add new libebookbackendmapigal.so to a list of installed files. - Bump requirement of evolution and evolution-data-server to 2.27.5. Index: evolution-mapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- evolution-mapi.spec 27 Jul 2009 18:41:12 -0000 1.14 +++ evolution-mapi.spec 28 Jul 2009 10:12:04 -0000 1.15 @@ -1,5 +1,5 @@ -%define evo_version 2.27.1 -%define eds_version 2.27.1 +%define evo_version 2.27.5 +%define eds_version 2.27.5 %define libmapi_version 0.8 %define intltool_version 0.35.5 @@ -12,7 +12,7 @@ Name: evolution-mapi Version: 0.27.5 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Evolution extension for MS Exchange 2007 servers License: LGPLv2+ @@ -97,6 +97,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/evolution-data-server-%{eds_major}/camel-providers/libcamelmapi.so %{_libdir}/evolution-data-server-%{eds_major}/camel-providers/libcamelmapi.urls %{_libdir}/evolution-data-server-%{eds_major}/extensions/libebookbackendmapi.so +%{_libdir}/evolution-data-server-%{eds_major}/extensions/libebookbackendmapigal.so %{_libdir}/evolution-data-server-%{eds_major}/extensions/libecalbackendmapi.so %{_datadir}/evolution-data-server-%{evo_major}/mapi @@ -107,6 +108,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexchangemapi-1.0.pc %changelog +* Tue Jul 28 2009 Milan Crha - 0.27.5-2 +- Add new libebookbackendmapigal.so to a list of installed files. +- Bump requirement of evolution and evolution-data-server to 2.27.5. + * Mon Jul 27 2009 Milan Crha - 0.27.5-1 - Update to 0.27.5 From michich at fedoraproject.org Tue Jul 28 10:27:44 2009 From: michich at fedoraproject.org (Michal Schmidt) Date: Tue, 28 Jul 2009 10:27:44 +0000 (UTC) Subject: rpms/opencryptoki/devel import.log, NONE, 1.1 opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch, NONE, 1.1 opencryptoki.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728102744.8962211C00D4@cvs1.fedora.phx.redhat.com> Author: michich Update of /cvs/pkgs/rpms/opencryptoki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25123/devel Modified Files: .cvsignore sources Added Files: import.log opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch opencryptoki.spec Log Message: Initial CVS import. --- NEW FILE import.log --- opencryptoki-2_2_8-5_fc11:HEAD:opencryptoki-2.2.8-5.fc11.src.rpm:1248776955 opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch: pkcs11_startup.in | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) --- NEW FILE opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch --- The pkcs11 group is created by the RPM scriptlet. Index: opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in =================================================================== --- opencryptoki-2.2.8.orig/usr/sbin/pkcs11_startup/pkcs11_startup.in +++ opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in @@ -309,29 +309,29 @@ rm -f @CONFIG_PATH@/@CONFIG_FILE@ >/dev/ # it from scratch -# Create the pkcs11 group if it does not exist... -cat /etc/group|grep pkcs11 >/dev/null 2>&1 -rc=$? -if [ $rc = 1 ] -then - if [ -x @GROUPADD@ ] - then - @GROUPADD@ pkcs11 >/dev/null 2>&1 - - else - echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." - fi -fi - - -if [ -x @USERMOD@ -a -x @ID@ ] -then - # add the pkcs group - # replace spaces by commas - @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root -else - echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." -fi +## Create the pkcs11 group if it does not exist... +#cat /etc/group|grep pkcs11 >/dev/null 2>&1 +#rc=$? +#if [ $rc = 1 ] +#then +# if [ -x @GROUPADD@ ] +# then +# @GROUPADD@ pkcs11 >/dev/null 2>&1 +# +# else +# echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." +# fi +#fi +# +# +#if [ -x @USERMOD@ -a -x @ID@ ] +#then +# # add the pkcs group +# # replace spaces by commas +# @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root +#else +# echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." +#fi # For each card run the status command and if successful --- NEW FILE opencryptoki.spec --- Name: opencryptoki Summary: Implementation of the PKCS#11 (Cryptoki) specification v2.11 Version: 2.2.8 Release: 5%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/opencryptoki Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: %{name}-2.2.8-do-not-create-group-in-pkcs11_startup.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(pre): shadow-utils coreutils sed Requires(post): chkconfig Requires(preun): chkconfig # This is for /sbin/service Requires(preun): initscripts Requires(postun): initscripts BuildRequires: openssl-devel trousers-devel BuildRequires: autoconf automake libtool %ifarch s390 s390x BuildRequires: libica-devel >= 1.3.7 %endif Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description openCryptoki implements the PKCS#11 specification v2.11. It includes support for cryptographic hardware such as the IBM 4758 Cryptographic CoProcessor, the IBM eServer Cryptographic Accelerator (FC 4960 on pSeries) or the Trusted Platform Module (TPM) as well as a software token for testing. %package libs Group: System Environment/Libraries Summary: The runtime libraries for opencryptoki package %description libs The runtime libraries for use with openCryptoki based applications. %package devel Group: Development/Libraries Summary: Development files for openCryptoki Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the development header files for building openCryptoki based applications. %prep %setup -q %patch0 -p1 %build # Upstream tarball has unnecessary executable perms set on the sources find . -name '*.[ch]' -print0 | xargs -0 chmod -x ./bootstrap.sh %configure --enable-tpmtok make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/usr/include/opencryptoki cp -a usr/include/pkcs11/{apiclient.h,pkcs11.h,pkcs11types.h} $RPM_BUILD_ROOT/usr/include/opencryptoki # Move the initscript to its proper place mkdir -p $RPM_BUILD_ROOT%{_initddir} mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d/pkcsslotd $RPM_BUILD_ROOT%{_initddir}/pkcsslotd mkdir -p $RPM_BUILD_ROOT/%{_sharedstatedir}/%{name} # Remove unwanted cruft rm -rf doc/CVS rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/*.la rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/stdll/*.la %clean rm -rf $RPM_BUILD_ROOT %postun libs -p /sbin/ldconfig %post libs -p /sbin/ldconfig %postun if [ "$1" -ge "1" ] ; then /sbin/service pkcsslotd condrestart >/dev/null 2>&1 fi exit 0 %post /sbin/chkconfig --add pkcsslotd exit 0 %preun if [ "$1" = "0" ] ; then /sbin/service pkcsslotd stop >/dev/null 2>&1 /sbin/chkconfig --del pkcsslotd fi exit 0 %pre getent group pkcs11 >/dev/null || groupadd -r pkcs11 # Add root to the pkcs11 group /usr/sbin/usermod -G $(/usr/bin/id --groups --name root | /bin/sed -e ' # add the pkcs group if it is missing /(^| )pkcs11( |$)/!s/$/ pkcs11/ # replace spaces by commas y/ /,/ '),pkcs11 root exit 0 %files %defattr(-,root,root,-) %doc FAQ README LICENSE doc/* %{_initddir}/pkcsslotd %{_sbindir}/* %{_mandir}/man*/* %dir %attr(770,root,pkcs11) %{_sharedstatedir}/%{name} %ifarch s390 s390x %doc usr/lib/pkcs11/cca_stdll/README-IBM_CCA_users %endif %files libs %defattr(-,root,root,-) %{_sysconfdir}/ld.so.conf.d/* # Unversioned .so symlinks usually belong to -devel packages, but opencryptoki # needs them in the main package, because: # pkcs11_startup looks for opencryptoki/stdll/*.so, and # documentation suggests that programs should dlopen "PKCS11_API.so". %{_libdir}/opencryptoki %{_libdir}/pkcs11 %files devel %defattr(-,root,root,-) %{_includedir}/* %changelog * Tue Jul 21 2009 Michal Schmidt - 2.2.8-5 - Require arch-specific dependency on -libs. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-4 - Return support for crypto hw on s390. - Renamed to opencryptoki. - Simplified multilib by putting libs in subpackage as suggested by Dan Hor?k. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-2 - Fedora package based on RHEL-5 package. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/opencryptoki/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:24:37 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:27:44 -0000 1.2 @@ -0,0 +1 @@ +opencryptoki-2.2.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/opencryptoki/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:24:37 -0000 1.1 +++ sources 28 Jul 2009 10:27:44 -0000 1.2 @@ -0,0 +1 @@ +f6081d6adadc32c753582467670067d5 opencryptoki-2.2.8.tar.bz2 From julian at fedoraproject.org Tue Jul 28 10:30:49 2009 From: julian at fedoraproject.org (julian) Date: Tue, 28 Jul 2009 10:30:49 +0000 (UTC) Subject: rpms/entertainer/devel entertainer-content-manager.desktop, NONE, 1.1 entertainer-preferences.desktop, NONE, 1.1 entertainer.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728103049.0ACA311C00D4@cvs1.fedora.phx.redhat.com> Author: julian Update of /cvs/pkgs/rpms/entertainer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26262/devel Modified Files: .cvsignore sources Added Files: entertainer-content-manager.desktop entertainer-preferences.desktop entertainer.spec import.log Log Message: --- NEW FILE entertainer-content-manager.desktop --- [Desktop Entry] Name=Entertainer Content Manager GenericName=Entertainer Content Manager Comment=Set the content directories for the Entertainer media center Exec=entertainer-content-manager Icon=entertainer Terminal=false Type=Application Categories=AudioVideo; --- NEW FILE entertainer-preferences.desktop --- [Desktop Entry] Name=Entertainer Preferences GenericName=Entertainer preferences manager Comment=Set preferences for the Entertainer media center Exec=entertainer-preferences Icon=entertainer Terminal=false Type=Application Categories=Settings; --- NEW FILE entertainer.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: entertainer Version: 0.4.2 Release: 5%{?dist} Summary: A simple mediacenter based on clutter Group: Applications/Multimedia License: GPLv2 URL: https://launchpad.net/entertainer Source0: http://launchpad.net/entertainer/entertainer-0.4/entertainer-0.4.2/+download/entertainer-0.4.2.tar.gz #Adding desktop files for the managing apps, will push them upstream Patch0: http://julian.fedorapeople.org/entertainer/entertainer-preferences.desktop Patch1: http://julian.fedorapeople.org/entertainer/entertainer-content-manager.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils #Gathering information about media from the internet Requires: python-CDDB Requires: python-imdb Requires: python-feedparser #Python GTK bindings Requires: pygtk2 Requires: pygtk2-libglade Requires: pygobject2 #Media playback and processing Requires: gstreamer-python Requires: python-imaging Requires: python-vorbis Requires: python-eyed3 #We need python-storm-sqlite because python-storm pulls in the mysql backend by default Requires: python-storm-sqlite Requires: python-twisted #The pyclutter modules needed for interface and playback Requires: pyclutter-gtk Requires: pyclutter-gst Requires: pyclutter-cairo #Needed for hicolor directory ownership Requires: hicolor-icon-theme %description Entertainer is a simple and easy-to-use media center solution for Gnome and XFCE desktop environments. It uses the gstreamer framework for multimedia playback and is based on clutter. #The doc package containing developer_documentation.pdf and entertainer_depgraph.png %package doc Summary: Documentation files for %{name} Group: Documentation #The doc description %description doc This package contains documentation files for %{name} %prep %setup -q #Dropping gtk-update-icon-cache for mocks sake sed -i /gtk-update-icon-cache/d setup.py #There are some unnecessary prebangs. I'm trying to get rid of them upstream #https://bugs.launchpad.net/entertainer/+bug/404372 cd entertainerlib sed -i '1{/^#!/d}' backend/backend_server.py utils/preferences_dialog.py sed -i '1{/^#/d}' utils/content_management_dialog.py frontend/translation_setup.py %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %find_lang %{name} #Validating desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/entertainer.desktop #Install preferences manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH0} #Install content manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH1} #Installing the documentation mkdir -p %{buildroot}/%{_defaultdocdir}/%{name}-%{version} install -p -m 644 docs/COPYING docs/developer_documentation.pdf docs/entertainer-depgraph.png %{buildroot}/%{_defaultdocdir}/%{name}-%{version}/ %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/entertainer* %{python_sitelib}/entertainerlib/ %{python_sitelib}/Entertainer-*.egg-info %{_datadir}/applications/entertainer*.desktop %{_datadir}/entertainer/ #We have .png and .svg files: %{_datadir}/icons/hicolor/*/apps/entertainer.??? %{_mandir}/man1/entertainer.1.* #The files for the doc package %files doc %defattr(-,root,root,-) %{_defaultdocdir}/%{name}-%{version}/ #Updating the Icon Cache %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : #Icon Cache updated %changelog * Mon Jul 27 2009 Julian Aloofi 0.4.2-5 - Added desktop files for the managing apps * Sun Jul 26 2009 Julian Aloofi 0.4.2-4 - Created doc subpackage for developer_documentation.pdf and depgraph.png * Sat Jul 25 2009 Julian Aloofi 0.4.2-3 - Added more comments - Divided Requires: in different sections * Sat Jul 25 2009 Julian Aloofi 0.4.2-2 - Added Icon Cache update and included hicoler-icon-theme Requires - Updated files section * Sat Jul 25 2009 Julian Aloofi 0.4.2-1 - Initial Fedora package --- NEW FILE import.log --- entertainer-0_4_2-5_fc11:HEAD:entertainer-0.4.2-5.fc11.src.rpm:1248776857 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:46:09 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:30:48 -0000 1.2 @@ -0,0 +1 @@ +entertainer-0.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:46:10 -0000 1.1 +++ sources 28 Jul 2009 10:30:48 -0000 1.2 @@ -0,0 +1 @@ +e59217bdfc0c10462294b5ad5a9b1b89 entertainer-0.4.2.tar.gz From michich at fedoraproject.org Tue Jul 28 10:31:07 2009 From: michich at fedoraproject.org (Michal Schmidt) Date: Tue, 28 Jul 2009 10:31:07 +0000 (UTC) Subject: rpms/opencryptoki/F-11 opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch, NONE, 1.1 opencryptoki.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090728103107.B033C11C00D4@cvs1.fedora.phx.redhat.com> Author: michich Update of /cvs/pkgs/rpms/opencryptoki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26504 Modified Files: sources Added Files: opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch opencryptoki.spec Log Message: Initial commit on F-11 branch. opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch: pkcs11_startup.in | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) --- NEW FILE opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch --- The pkcs11 group is created by the RPM scriptlet. Index: opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in =================================================================== --- opencryptoki-2.2.8.orig/usr/sbin/pkcs11_startup/pkcs11_startup.in +++ opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in @@ -309,29 +309,29 @@ rm -f @CONFIG_PATH@/@CONFIG_FILE@ >/dev/ # it from scratch -# Create the pkcs11 group if it does not exist... -cat /etc/group|grep pkcs11 >/dev/null 2>&1 -rc=$? -if [ $rc = 1 ] -then - if [ -x @GROUPADD@ ] - then - @GROUPADD@ pkcs11 >/dev/null 2>&1 - - else - echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." - fi -fi - - -if [ -x @USERMOD@ -a -x @ID@ ] -then - # add the pkcs group - # replace spaces by commas - @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root -else - echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." -fi +## Create the pkcs11 group if it does not exist... +#cat /etc/group|grep pkcs11 >/dev/null 2>&1 +#rc=$? +#if [ $rc = 1 ] +#then +# if [ -x @GROUPADD@ ] +# then +# @GROUPADD@ pkcs11 >/dev/null 2>&1 +# +# else +# echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." +# fi +#fi +# +# +#if [ -x @USERMOD@ -a -x @ID@ ] +#then +# # add the pkcs group +# # replace spaces by commas +# @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root +#else +# echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." +#fi # For each card run the status command and if successful --- NEW FILE opencryptoki.spec --- Name: opencryptoki Summary: Implementation of the PKCS#11 (Cryptoki) specification v2.11 Version: 2.2.8 Release: 5%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/opencryptoki Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: %{name}-2.2.8-do-not-create-group-in-pkcs11_startup.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(pre): shadow-utils coreutils sed Requires(post): chkconfig Requires(preun): chkconfig # This is for /sbin/service Requires(preun): initscripts Requires(postun): initscripts BuildRequires: openssl-devel trousers-devel BuildRequires: autoconf automake libtool %ifarch s390 s390x BuildRequires: libica-devel >= 1.3.7 %endif Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description openCryptoki implements the PKCS#11 specification v2.11. It includes support for cryptographic hardware such as the IBM 4758 Cryptographic CoProcessor, the IBM eServer Cryptographic Accelerator (FC 4960 on pSeries) or the Trusted Platform Module (TPM) as well as a software token for testing. %package libs Group: System Environment/Libraries Summary: The runtime libraries for opencryptoki package %description libs The runtime libraries for use with openCryptoki based applications. %package devel Group: Development/Libraries Summary: Development files for openCryptoki Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the development header files for building openCryptoki based applications. %prep %setup -q %patch0 -p1 %build # Upstream tarball has unnecessary executable perms set on the sources find . -name '*.[ch]' -print0 | xargs -0 chmod -x ./bootstrap.sh %configure --enable-tpmtok make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/usr/include/opencryptoki cp -a usr/include/pkcs11/{apiclient.h,pkcs11.h,pkcs11types.h} $RPM_BUILD_ROOT/usr/include/opencryptoki # Move the initscript to its proper place mkdir -p $RPM_BUILD_ROOT%{_initddir} mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d/pkcsslotd $RPM_BUILD_ROOT%{_initddir}/pkcsslotd mkdir -p $RPM_BUILD_ROOT/%{_sharedstatedir}/%{name} # Remove unwanted cruft rm -rf doc/CVS rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/*.la rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/stdll/*.la %clean rm -rf $RPM_BUILD_ROOT %postun libs -p /sbin/ldconfig %post libs -p /sbin/ldconfig %postun if [ "$1" -ge "1" ] ; then /sbin/service pkcsslotd condrestart >/dev/null 2>&1 fi exit 0 %post /sbin/chkconfig --add pkcsslotd exit 0 %preun if [ "$1" = "0" ] ; then /sbin/service pkcsslotd stop >/dev/null 2>&1 /sbin/chkconfig --del pkcsslotd fi exit 0 %pre getent group pkcs11 >/dev/null || groupadd -r pkcs11 # Add root to the pkcs11 group /usr/sbin/usermod -G $(/usr/bin/id --groups --name root | /bin/sed -e ' # add the pkcs group if it is missing /(^| )pkcs11( |$)/!s/$/ pkcs11/ # replace spaces by commas y/ /,/ '),pkcs11 root exit 0 %files %defattr(-,root,root,-) %doc FAQ README LICENSE doc/* %{_initddir}/pkcsslotd %{_sbindir}/* %{_mandir}/man*/* %dir %attr(770,root,pkcs11) %{_sharedstatedir}/%{name} %ifarch s390 s390x %doc usr/lib/pkcs11/cca_stdll/README-IBM_CCA_users %endif %files libs %defattr(-,root,root,-) %{_sysconfdir}/ld.so.conf.d/* # Unversioned .so symlinks usually belong to -devel packages, but opencryptoki # needs them in the main package, because: # pkcs11_startup looks for opencryptoki/stdll/*.so, and # documentation suggests that programs should dlopen "PKCS11_API.so". %{_libdir}/opencryptoki %{_libdir}/pkcs11 %files devel %defattr(-,root,root,-) %{_includedir}/* %changelog * Tue Jul 21 2009 Michal Schmidt - 2.2.8-5 - Require arch-specific dependency on -libs. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-4 - Return support for crypto hw on s390. - Renamed to opencryptoki. - Simplified multilib by putting libs in subpackage as suggested by Dan Hor?k. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-2 - Fedora package based on RHEL-5 package. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/opencryptoki/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:24:37 -0000 1.1 +++ sources 28 Jul 2009 10:31:07 -0000 1.2 @@ -0,0 +1 @@ +f6081d6adadc32c753582467670067d5 opencryptoki-2.2.8.tar.bz2 From michich at fedoraproject.org Tue Jul 28 10:31:27 2009 From: michich at fedoraproject.org (Michal Schmidt) Date: Tue, 28 Jul 2009 10:31:27 +0000 (UTC) Subject: rpms/opencryptoki/F-10 opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch, NONE, 1.1 opencryptoki.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090728103127.BC23711C00D4@cvs1.fedora.phx.redhat.com> Author: michich Update of /cvs/pkgs/rpms/opencryptoki/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26710 Modified Files: sources Added Files: opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch opencryptoki.spec Log Message: Initial commit on F-10 branch. opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch: pkcs11_startup.in | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) --- NEW FILE opencryptoki-2.2.8-do-not-create-group-in-pkcs11_startup.patch --- The pkcs11 group is created by the RPM scriptlet. Index: opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in =================================================================== --- opencryptoki-2.2.8.orig/usr/sbin/pkcs11_startup/pkcs11_startup.in +++ opencryptoki-2.2.8/usr/sbin/pkcs11_startup/pkcs11_startup.in @@ -309,29 +309,29 @@ rm -f @CONFIG_PATH@/@CONFIG_FILE@ >/dev/ # it from scratch -# Create the pkcs11 group if it does not exist... -cat /etc/group|grep pkcs11 >/dev/null 2>&1 -rc=$? -if [ $rc = 1 ] -then - if [ -x @GROUPADD@ ] - then - @GROUPADD@ pkcs11 >/dev/null 2>&1 - - else - echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." - fi -fi - - -if [ -x @USERMOD@ -a -x @ID@ ] -then - # add the pkcs group - # replace spaces by commas - @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root -else - echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." -fi +## Create the pkcs11 group if it does not exist... +#cat /etc/group|grep pkcs11 >/dev/null 2>&1 +#rc=$? +#if [ $rc = 1 ] +#then +# if [ -x @GROUPADD@ ] +# then +# @GROUPADD@ pkcs11 >/dev/null 2>&1 +# +# else +# echo "Couldn't execute @GROUPADD at . Please add the group 'pkcs11' manually." +# fi +#fi +# +# +#if [ -x @USERMOD@ -a -x @ID@ ] +#then +# # add the pkcs group +# # replace spaces by commas +# @USERMOD@ -G $( @ID@ --groups --name root | /bin/sed -e 'y/ /,/'),pkcs11 root +#else +# echo "Couldn't execute @USERMOD at . Please add root to the group 'pkcs11' manually." +#fi # For each card run the status command and if successful --- NEW FILE opencryptoki.spec --- Name: opencryptoki Summary: Implementation of the PKCS#11 (Cryptoki) specification v2.11 Version: 2.2.8 Release: 5%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/opencryptoki Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: %{name}-2.2.8-do-not-create-group-in-pkcs11_startup.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(pre): shadow-utils coreutils sed Requires(post): chkconfig Requires(preun): chkconfig # This is for /sbin/service Requires(preun): initscripts Requires(postun): initscripts BuildRequires: openssl-devel trousers-devel BuildRequires: autoconf automake libtool %ifarch s390 s390x BuildRequires: libica-devel >= 1.3.7 %endif Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description openCryptoki implements the PKCS#11 specification v2.11. It includes support for cryptographic hardware such as the IBM 4758 Cryptographic CoProcessor, the IBM eServer Cryptographic Accelerator (FC 4960 on pSeries) or the Trusted Platform Module (TPM) as well as a software token for testing. %package libs Group: System Environment/Libraries Summary: The runtime libraries for opencryptoki package %description libs The runtime libraries for use with openCryptoki based applications. %package devel Group: Development/Libraries Summary: Development files for openCryptoki Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the development header files for building openCryptoki based applications. %prep %setup -q %patch0 -p1 %build # Upstream tarball has unnecessary executable perms set on the sources find . -name '*.[ch]' -print0 | xargs -0 chmod -x ./bootstrap.sh %configure --enable-tpmtok make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/usr/include/opencryptoki cp -a usr/include/pkcs11/{apiclient.h,pkcs11.h,pkcs11types.h} $RPM_BUILD_ROOT/usr/include/opencryptoki # Move the initscript to its proper place mkdir -p $RPM_BUILD_ROOT%{_initddir} mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d/pkcsslotd $RPM_BUILD_ROOT%{_initddir}/pkcsslotd mkdir -p $RPM_BUILD_ROOT/%{_sharedstatedir}/%{name} # Remove unwanted cruft rm -rf doc/CVS rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/*.la rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/stdll/*.la %clean rm -rf $RPM_BUILD_ROOT %postun libs -p /sbin/ldconfig %post libs -p /sbin/ldconfig %postun if [ "$1" -ge "1" ] ; then /sbin/service pkcsslotd condrestart >/dev/null 2>&1 fi exit 0 %post /sbin/chkconfig --add pkcsslotd exit 0 %preun if [ "$1" = "0" ] ; then /sbin/service pkcsslotd stop >/dev/null 2>&1 /sbin/chkconfig --del pkcsslotd fi exit 0 %pre getent group pkcs11 >/dev/null || groupadd -r pkcs11 # Add root to the pkcs11 group /usr/sbin/usermod -G $(/usr/bin/id --groups --name root | /bin/sed -e ' # add the pkcs group if it is missing /(^| )pkcs11( |$)/!s/$/ pkcs11/ # replace spaces by commas y/ /,/ '),pkcs11 root exit 0 %files %defattr(-,root,root,-) %doc FAQ README LICENSE doc/* %{_initddir}/pkcsslotd %{_sbindir}/* %{_mandir}/man*/* %dir %attr(770,root,pkcs11) %{_sharedstatedir}/%{name} %ifarch s390 s390x %doc usr/lib/pkcs11/cca_stdll/README-IBM_CCA_users %endif %files libs %defattr(-,root,root,-) %{_sysconfdir}/ld.so.conf.d/* # Unversioned .so symlinks usually belong to -devel packages, but opencryptoki # needs them in the main package, because: # pkcs11_startup looks for opencryptoki/stdll/*.so, and # documentation suggests that programs should dlopen "PKCS11_API.so". %{_libdir}/opencryptoki %{_libdir}/pkcs11 %files devel %defattr(-,root,root,-) %{_includedir}/* %changelog * Tue Jul 21 2009 Michal Schmidt - 2.2.8-5 - Require arch-specific dependency on -libs. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-4 - Return support for crypto hw on s390. - Renamed to opencryptoki. - Simplified multilib by putting libs in subpackage as suggested by Dan Hor?k. * Tue Jul 21 2009 Michal Schmidt - 2.2.8-2 - Fedora package based on RHEL-5 package. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/opencryptoki/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:24:37 -0000 1.1 +++ sources 28 Jul 2009 10:31:27 -0000 1.2 @@ -0,0 +1 @@ +f6081d6adadc32c753582467670067d5 opencryptoki-2.2.8.tar.bz2 From julian at fedoraproject.org Tue Jul 28 10:32:26 2009 From: julian at fedoraproject.org (julian) Date: Tue, 28 Jul 2009 10:32:26 +0000 (UTC) Subject: rpms/entertainer/F-10 entertainer-content-manager.desktop, NONE, 1.1 entertainer-preferences.desktop, NONE, 1.1 entertainer.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728103226.64D7C11C00D4@cvs1.fedora.phx.redhat.com> Author: julian Update of /cvs/pkgs/rpms/entertainer/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27280/F-10 Modified Files: .cvsignore sources Added Files: entertainer-content-manager.desktop entertainer-preferences.desktop entertainer.spec import.log Log Message: --- NEW FILE entertainer-content-manager.desktop --- [Desktop Entry] Name=Entertainer Content Manager GenericName=Entertainer Content Manager Comment=Set the content directories for the Entertainer media center Exec=entertainer-content-manager Icon=entertainer Terminal=false Type=Application Categories=AudioVideo; --- NEW FILE entertainer-preferences.desktop --- [Desktop Entry] Name=Entertainer Preferences GenericName=Entertainer preferences manager Comment=Set preferences for the Entertainer media center Exec=entertainer-preferences Icon=entertainer Terminal=false Type=Application Categories=Settings; --- NEW FILE entertainer.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: entertainer Version: 0.4.2 Release: 5%{?dist} Summary: A simple mediacenter based on clutter Group: Applications/Multimedia License: GPLv2 URL: https://launchpad.net/entertainer Source0: http://launchpad.net/entertainer/entertainer-0.4/entertainer-0.4.2/+download/entertainer-0.4.2.tar.gz #Adding desktop files for the managing apps, will push them upstream Patch0: http://julian.fedorapeople.org/entertainer/entertainer-preferences.desktop Patch1: http://julian.fedorapeople.org/entertainer/entertainer-content-manager.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils #Gathering information about media from the internet Requires: python-CDDB Requires: python-imdb Requires: python-feedparser #Python GTK bindings Requires: pygtk2 Requires: pygtk2-libglade Requires: pygobject2 #Media playback and processing Requires: gstreamer-python Requires: python-imaging Requires: python-vorbis Requires: python-eyed3 #We need python-storm-sqlite because python-storm pulls in the mysql backend by default Requires: python-storm-sqlite Requires: python-twisted #The pyclutter modules needed for interface and playback Requires: pyclutter-gtk Requires: pyclutter-gst Requires: pyclutter-cairo #Needed for hicolor directory ownership Requires: hicolor-icon-theme %description Entertainer is a simple and easy-to-use media center solution for Gnome and XFCE desktop environments. It uses the gstreamer framework for multimedia playback and is based on clutter. #The doc package containing developer_documentation.pdf and entertainer_depgraph.png %package doc Summary: Documentation files for %{name} Group: Documentation #The doc description %description doc This package contains documentation files for %{name} %prep %setup -q #Dropping gtk-update-icon-cache for mocks sake sed -i /gtk-update-icon-cache/d setup.py #There are some unnecessary prebangs. I'm trying to get rid of them upstream #https://bugs.launchpad.net/entertainer/+bug/404372 cd entertainerlib sed -i '1{/^#!/d}' backend/backend_server.py utils/preferences_dialog.py sed -i '1{/^#/d}' utils/content_management_dialog.py frontend/translation_setup.py %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %find_lang %{name} #Validating desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/entertainer.desktop #Install preferences manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH0} #Install content manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH1} #Installing the documentation mkdir -p %{buildroot}/%{_defaultdocdir}/%{name}-%{version} install -p -m 644 docs/COPYING docs/developer_documentation.pdf docs/entertainer-depgraph.png %{buildroot}/%{_defaultdocdir}/%{name}-%{version}/ %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/entertainer* %{python_sitelib}/entertainerlib/ %{python_sitelib}/Entertainer-*.egg-info %{_datadir}/applications/entertainer*.desktop %{_datadir}/entertainer/ #We have .png and .svg files: %{_datadir}/icons/hicolor/*/apps/entertainer.??? %{_mandir}/man1/entertainer.1.* #The files for the doc package %files doc %defattr(-,root,root,-) %{_defaultdocdir}/%{name}-%{version}/ #Updating the Icon Cache %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : #Icon Cache updated %changelog * Mon Jul 27 2009 Julian Aloofi 0.4.2-5 - Added desktop files for the managing apps * Sun Jul 26 2009 Julian Aloofi 0.4.2-4 - Created doc subpackage for developer_documentation.pdf and depgraph.png * Sat Jul 25 2009 Julian Aloofi 0.4.2-3 - Added more comments - Divided Requires: in different sections * Sat Jul 25 2009 Julian Aloofi 0.4.2-2 - Added Icon Cache update and included hicoler-icon-theme Requires - Updated files section * Sat Jul 25 2009 Julian Aloofi 0.4.2-1 - Initial Fedora package --- NEW FILE import.log --- entertainer-0_4_2-5_fc11:F-10:entertainer-0.4.2-5.fc11.src.rpm:1248777097 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:46:09 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:32:26 -0000 1.2 @@ -0,0 +1 @@ +entertainer-0.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:46:10 -0000 1.1 +++ sources 28 Jul 2009 10:32:26 -0000 1.2 @@ -0,0 +1 @@ +e59217bdfc0c10462294b5ad5a9b1b89 entertainer-0.4.2.tar.gz From julian at fedoraproject.org Tue Jul 28 10:33:48 2009 From: julian at fedoraproject.org (julian) Date: Tue, 28 Jul 2009 10:33:48 +0000 (UTC) Subject: rpms/entertainer/F-11 entertainer-content-manager.desktop, NONE, 1.1 entertainer-preferences.desktop, NONE, 1.1 entertainer.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728103348.4C1B211C00D4@cvs1.fedora.phx.redhat.com> Author: julian Update of /cvs/pkgs/rpms/entertainer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28082/F-11 Modified Files: .cvsignore sources Added Files: entertainer-content-manager.desktop entertainer-preferences.desktop entertainer.spec import.log Log Message: --- NEW FILE entertainer-content-manager.desktop --- [Desktop Entry] Name=Entertainer Content Manager GenericName=Entertainer Content Manager Comment=Set the content directories for the Entertainer media center Exec=entertainer-content-manager Icon=entertainer Terminal=false Type=Application Categories=AudioVideo; --- NEW FILE entertainer-preferences.desktop --- [Desktop Entry] Name=Entertainer Preferences GenericName=Entertainer preferences manager Comment=Set preferences for the Entertainer media center Exec=entertainer-preferences Icon=entertainer Terminal=false Type=Application Categories=Settings; --- NEW FILE entertainer.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: entertainer Version: 0.4.2 Release: 5%{?dist} Summary: A simple mediacenter based on clutter Group: Applications/Multimedia License: GPLv2 URL: https://launchpad.net/entertainer Source0: http://launchpad.net/entertainer/entertainer-0.4/entertainer-0.4.2/+download/entertainer-0.4.2.tar.gz #Adding desktop files for the managing apps, will push them upstream Patch0: http://julian.fedorapeople.org/entertainer/entertainer-preferences.desktop Patch1: http://julian.fedorapeople.org/entertainer/entertainer-content-manager.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils #Gathering information about media from the internet Requires: python-CDDB Requires: python-imdb Requires: python-feedparser #Python GTK bindings Requires: pygtk2 Requires: pygtk2-libglade Requires: pygobject2 #Media playback and processing Requires: gstreamer-python Requires: python-imaging Requires: python-vorbis Requires: python-eyed3 #We need python-storm-sqlite because python-storm pulls in the mysql backend by default Requires: python-storm-sqlite Requires: python-twisted #The pyclutter modules needed for interface and playback Requires: pyclutter-gtk Requires: pyclutter-gst Requires: pyclutter-cairo #Needed for hicolor directory ownership Requires: hicolor-icon-theme %description Entertainer is a simple and easy-to-use media center solution for Gnome and XFCE desktop environments. It uses the gstreamer framework for multimedia playback and is based on clutter. #The doc package containing developer_documentation.pdf and entertainer_depgraph.png %package doc Summary: Documentation files for %{name} Group: Documentation #The doc description %description doc This package contains documentation files for %{name} %prep %setup -q #Dropping gtk-update-icon-cache for mocks sake sed -i /gtk-update-icon-cache/d setup.py #There are some unnecessary prebangs. I'm trying to get rid of them upstream #https://bugs.launchpad.net/entertainer/+bug/404372 cd entertainerlib sed -i '1{/^#!/d}' backend/backend_server.py utils/preferences_dialog.py sed -i '1{/^#/d}' utils/content_management_dialog.py frontend/translation_setup.py %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %find_lang %{name} #Validating desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/entertainer.desktop #Install preferences manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH0} #Install content manager desktop file desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{PATCH1} #Installing the documentation mkdir -p %{buildroot}/%{_defaultdocdir}/%{name}-%{version} install -p -m 644 docs/COPYING docs/developer_documentation.pdf docs/entertainer-depgraph.png %{buildroot}/%{_defaultdocdir}/%{name}-%{version}/ %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %{_bindir}/entertainer* %{python_sitelib}/entertainerlib/ %{python_sitelib}/Entertainer-*.egg-info %{_datadir}/applications/entertainer*.desktop %{_datadir}/entertainer/ #We have .png and .svg files: %{_datadir}/icons/hicolor/*/apps/entertainer.??? %{_mandir}/man1/entertainer.1.* #The files for the doc package %files doc %defattr(-,root,root,-) %{_defaultdocdir}/%{name}-%{version}/ #Updating the Icon Cache %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : #Icon Cache updated %changelog * Mon Jul 27 2009 Julian Aloofi 0.4.2-5 - Added desktop files for the managing apps * Sun Jul 26 2009 Julian Aloofi 0.4.2-4 - Created doc subpackage for developer_documentation.pdf and depgraph.png * Sat Jul 25 2009 Julian Aloofi 0.4.2-3 - Added more comments - Divided Requires: in different sections * Sat Jul 25 2009 Julian Aloofi 0.4.2-2 - Added Icon Cache update and included hicoler-icon-theme Requires - Updated files section * Sat Jul 25 2009 Julian Aloofi 0.4.2-1 - Initial Fedora package --- NEW FILE import.log --- entertainer-0_4_2-5_fc11:F-11:entertainer-0.4.2-5.fc11.src.rpm:1248777187 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:46:09 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:33:48 -0000 1.2 @@ -0,0 +1 @@ +entertainer-0.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/entertainer/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:46:10 -0000 1.1 +++ sources 28 Jul 2009 10:33:48 -0000 1.2 @@ -0,0 +1 @@ +e59217bdfc0c10462294b5ad5a9b1b89 entertainer-0.4.2.tar.gz From jpopelka at fedoraproject.org Tue Jul 28 10:35:50 2009 From: jpopelka at fedoraproject.org (=?utf-8?b?SmnFmcOtIFBvcGVsa2E=?=) Date: Tue, 28 Jul 2009 10:35:50 +0000 (UTC) Subject: rpms/python-iwlib/F-11 import.log, NONE, 1.1 python-iwlib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728103550.7D36711C00D4@cvs1.fedora.phx.redhat.com> Author: jpopelka Update of /cvs/pkgs/rpms/python-iwlib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28836/F-11 Modified Files: .cvsignore sources Added Files: import.log python-iwlib.spec Log Message: Initial import --- NEW FILE import.log --- python-iwlib-0_1-1_fc11:F-11:python-iwlib-0.1-1.fc11.src.rpm:1248777116 --- NEW FILE python-iwlib.spec --- %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")} Summary: Wireless settings python bindings Name: python-iwlib Version: 0.1 Release: 1%{?dist} URL: http://git.fedorahosted.org/git/python-iwlib.git Source: http://fedorahosted.org/released/python-iwlib/%{name}-%{version}.tar.bz2 License: GPLv2 Group: System Environment/Libraries ExcludeArch: s390 s390x BuildRequires: python-devel BuildRequires: wireless-tools-devel Requires: wireless-tools >= 28-0.pre8.5 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Python bindings for the iwlib kernel interface, that provides functions to examine the wireless network devices installed on the system. %prep %setup -q %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} mkdir -p %{buildroot}%{_sbindir} chmod 755 %{buildroot}%{python_sitearch}/iwlib.so %clean rm -rf %{buildroot} %files %defattr(-,root,root) %doc COPYING %{python_sitearch}/iwlib.so %if "%{python_ver}" >= "2.5" %{python_sitearch}/*.egg-info %endif %changelog * Mon Jul 27 2009 Jiri Popelka - 0.1-1 - Get iwlib code from rhpl 0.222-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-iwlib/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:23:29 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:35:50 -0000 1.2 @@ -0,0 +1 @@ +python-iwlib-0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-iwlib/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:23:30 -0000 1.1 +++ sources 28 Jul 2009 10:35:50 -0000 1.2 @@ -0,0 +1 @@ +28c1e299dcbb6f47016bc962e8090d86 python-iwlib-0.1.tar.bz2 From dnovotny at fedoraproject.org Tue Jul 28 10:46:49 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Tue, 28 Jul 2009 10:46:49 +0000 (UTC) Subject: rpms/mailman/devel mailman-2.1-build.patch, 1.3, 1.4 mailman-2.1-mailmanctl-status.patch, 1.4, 1.5 mailman-2.1.10-FHS.patch, 1.1, 1.2 mailman-2.1.10-archive-reply.patch, 1.1, 1.2 mailman-2.1.10-ctypefix.patch, 1.1, 1.2 mailman-2.1.11-cron.patch, 1.2, 1.3 mailman-2.1.11-fhsinit.patch, 1.1, 1.2 mailman-2.1.12-lctype.patch, 1.1, 1.2 mailman-2.1.12-mmcfg.patch, 1.1, 1.2 mailman-2.1.12-multimail.patch, 1.1, 1.2 mailman-2.1.12-privurl.patch, 1.1, 1.2 mailman-2.1.9-ctypo-new.patch, 1.2, 1.3 mailman-2.1.9-header-folding.patch, 1.1, 1.2 mailman-2.1.9-selinux.patch, 1.1, 1.2 mailman-2.1.9-unicode.patch, 1.1, 1.2 mailman-python-compile.patch, 1.1, 1.2 mailman.spec, 1.85, 1.86 Message-ID: <20090728104649.7128911C00D4@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/mailman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32313 Modified Files: mailman-2.1-build.patch mailman-2.1-mailmanctl-status.patch mailman-2.1.10-FHS.patch mailman-2.1.10-archive-reply.patch mailman-2.1.10-ctypefix.patch mailman-2.1.11-cron.patch mailman-2.1.11-fhsinit.patch mailman-2.1.12-lctype.patch mailman-2.1.12-mmcfg.patch mailman-2.1.12-multimail.patch mailman-2.1.12-privurl.patch mailman-2.1.9-ctypo-new.patch mailman-2.1.9-header-folding.patch mailman-2.1.9-selinux.patch mailman-2.1.9-unicode.patch mailman-python-compile.patch mailman.spec Log Message: un-fuzz patches; no check md5 on mm_cfg.pyc and .pyo mailman-2.1-build.patch: Mailman/Archiver/Makefile.in | 5 +---- Mailman/Bouncers/Makefile.in | 5 +---- Mailman/Cgi/Makefile.in | 5 +---- Mailman/Commands/Makefile.in | 5 +---- Mailman/Gui/Makefile.in | 5 +---- Mailman/Handlers/Makefile.in | 5 +---- Mailman/Logging/Makefile.in | 5 +---- Mailman/MTA/Makefile.in | 5 +---- Mailman/Makefile.in | 11 +---------- Mailman/Queue/Makefile.in | 5 +---- Makefile.in | 27 ++++++++++++++++----------- bin/Makefile.in | 5 +---- cron/Makefile.in | 3 --- messages/Makefile.in | 11 +++-------- misc/Makefile.in | 5 +---- scripts/Makefile.in | 5 +---- src/Makefile.in | 16 ++-------------- templates/Makefile.in | 7 ++----- tests/Makefile.in | 5 +---- tests/bounces/Makefile.in | 5 +---- tests/msgs/Makefile.in | 5 +---- 21 files changed, 39 insertions(+), 111 deletions(-) Index: mailman-2.1-build.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1-build.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mailman-2.1-build.patch 18 Oct 2004 17:51:32 -0000 1.3 +++ mailman-2.1-build.patch 28 Jul 2009 10:46:48 -0000 1.4 @@ -1,6 +1,6 @@ -diff -r -u mailman-2.1.5.orig/bin/Makefile.in mailman-2.1.5.build/bin/Makefile.in ---- mailman-2.1.5.orig/bin/Makefile.in 2003-12-24 12:03:15.000000000 -0500 -+++ mailman-2.1.5.build/bin/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/bin/Makefile.in mailman-2.1.12-b/bin/Makefile.in +--- mailman-2.1.12-a/bin/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -9,7 +9,7 @@ diff -r -u mailman-2.1.5.orig/bin/Makefi INSTALL= @INSTALL@ DEFS= @DEFS@ -@@ -55,7 +54,7 @@ +@@ -56,7 +55,7 @@ # Modes for directories and executables created by the install # process. Default to group-writable directories but # user-only-writable for executables. @@ -18,7 +18,7 @@ diff -r -u mailman-2.1.5.orig/bin/Makefi EXEMODE= 755 FILEMODE= 644 INSTALL_PROGRAM=$(INSTALL) -m $(EXEMODE) -@@ -71,8 +70,6 @@ +@@ -72,8 +71,6 @@ $(INSTALL) -m $(EXEMODE) $(BUILDDIR)/$$f $(DESTDIR)$(SCRIPTSDIR); \ done @@ -27,11 +27,9 @@ diff -r -u mailman-2.1.5.orig/bin/Makefi clean: distclean: -Only in mailman-2.1.5.build/bin: Makefile.in~ -Only in mailman-2.1.5.build: configure -diff -r -u mailman-2.1.5.orig/cron/Makefile.in mailman-2.1.5.build/cron/Makefile.in ---- mailman-2.1.5.orig/cron/Makefile.in 2003-03-31 14:27:07.000000000 -0500 -+++ mailman-2.1.5.build/cron/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/cron/Makefile.in mailman-2.1.12-b/cron/Makefile.in +--- mailman-2.1.12-a/cron/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/cron/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -49,10 +47,9 @@ diff -r -u mailman-2.1.5.orig/cron/Makef clean: distclean: -Only in mailman-2.1.5.build/cron: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Archiver/Makefile.in mailman-2.1.5.build/Mailman/Archiver/Makefile.in ---- mailman-2.1.5.orig/Mailman/Archiver/Makefile.in 2003-03-31 14:26:58.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Archiver/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Archiver/Makefile.in mailman-2.1.12-b/Mailman/Archiver/Makefile.in +--- mailman-2.1.12-a/Mailman/Archiver/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Archiver/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -79,10 +76,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Ar clean: distclean: -Only in mailman-2.1.5.build/Mailman/Archiver: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Bouncers/Makefile.in mailman-2.1.5.build/Mailman/Bouncers/Makefile.in ---- mailman-2.1.5.orig/Mailman/Bouncers/Makefile.in 2003-03-31 14:26:58.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Bouncers/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Bouncers/Makefile.in mailman-2.1.12-b/Mailman/Bouncers/Makefile.in +--- mailman-2.1.12-a/Mailman/Bouncers/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Bouncers/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -109,10 +105,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Bo clean: distclean: -Only in mailman-2.1.5.build/Mailman/Bouncers: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Cgi/Makefile.in mailman-2.1.5.build/Mailman/Cgi/Makefile.in ---- mailman-2.1.5.orig/Mailman/Cgi/Makefile.in 2003-03-31 14:26:59.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Cgi/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Cgi/Makefile.in mailman-2.1.12-b/Mailman/Cgi/Makefile.in +--- mailman-2.1.12-a/Mailman/Cgi/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Cgi/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -139,10 +134,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Cg clean: distclean: -Only in mailman-2.1.5.build/Mailman/Cgi: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Commands/Makefile.in mailman-2.1.5.build/Mailman/Commands/Makefile.in ---- mailman-2.1.5.orig/Mailman/Commands/Makefile.in 2003-03-31 14:27:00.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Commands/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Commands/Makefile.in mailman-2.1.12-b/Mailman/Commands/Makefile.in +--- mailman-2.1.12-a/Mailman/Commands/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Commands/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -169,10 +163,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Co clean: distclean: -Only in mailman-2.1.5.build/Mailman/Commands: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Gui/Makefile.in mailman-2.1.5.build/Mailman/Gui/Makefile.in ---- mailman-2.1.5.orig/Mailman/Gui/Makefile.in 2003-03-31 14:27:01.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Gui/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Gui/Makefile.in mailman-2.1.12-b/Mailman/Gui/Makefile.in +--- mailman-2.1.12-a/Mailman/Gui/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Gui/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -199,10 +192,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Gu clean: distclean: -Only in mailman-2.1.5.build/Mailman/Gui: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Handlers/Makefile.in mailman-2.1.5.build/Mailman/Handlers/Makefile.in ---- mailman-2.1.5.orig/Mailman/Handlers/Makefile.in 2003-03-31 14:27:01.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Handlers/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Handlers/Makefile.in mailman-2.1.12-b/Mailman/Handlers/Makefile.in +--- mailman-2.1.12-a/Mailman/Handlers/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Handlers/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -229,10 +221,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Ha clean: distclean: -Only in mailman-2.1.5.build/Mailman/Handlers: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Logging/Makefile.in mailman-2.1.5.build/Mailman/Logging/Makefile.in ---- mailman-2.1.5.orig/Mailman/Logging/Makefile.in 2003-03-31 14:27:02.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Logging/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Logging/Makefile.in mailman-2.1.12-b/Mailman/Logging/Makefile.in +--- mailman-2.1.12-a/Mailman/Logging/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Logging/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -259,10 +250,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Lo clean: distclean: -Only in mailman-2.1.5.build/Mailman/Logging: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Makefile.in mailman-2.1.5.build/Mailman/Makefile.in ---- mailman-2.1.5.orig/Mailman/Makefile.in 2003-03-31 14:26:58.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Makefile.in mailman-2.1.12-b/Mailman/Makefile.in +--- mailman-2.1.12-a/Mailman/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -20,8 +20,6 @@ # Variables set by configure @@ -302,10 +292,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Ma clean: for d in $(SUBDIRS); \ do \ -Only in mailman-2.1.5.build/Mailman: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/MTA/Makefile.in mailman-2.1.5.build/Mailman/MTA/Makefile.in ---- mailman-2.1.5.orig/Mailman/MTA/Makefile.in 2003-03-31 14:27:02.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/MTA/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/MTA/Makefile.in mailman-2.1.12-b/Mailman/MTA/Makefile.in +--- mailman-2.1.12-a/Mailman/MTA/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/MTA/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -332,10 +321,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/MT clean: distclean: -Only in mailman-2.1.5.build/Mailman/MTA: Makefile.in~ -diff -r -u mailman-2.1.5.orig/Mailman/Queue/Makefile.in mailman-2.1.5.build/Mailman/Queue/Makefile.in ---- mailman-2.1.5.orig/Mailman/Queue/Makefile.in 2003-03-31 14:27:03.000000000 -0500 -+++ mailman-2.1.5.build/Mailman/Queue/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/Mailman/Queue/Makefile.in mailman-2.1.12-b/Mailman/Queue/Makefile.in +--- mailman-2.1.12-a/Mailman/Queue/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Queue/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -362,11 +350,9 @@ diff -r -u mailman-2.1.5.orig/Mailman/Qu clean: distclean: -Only in mailman-2.1.5.build/Mailman/Queue: Makefile.in~ -Only in mailman-2.1.5.orig: mailman-FHS.patch -diff -r -u mailman-2.1.5.orig/Makefile.in mailman-2.1.5.build/Makefile.in ---- mailman-2.1.5.orig/Makefile.in 2003-03-31 14:26:57.000000000 -0500 -+++ mailman-2.1.5.build/Makefile.in 2004-10-15 16:26:03.000000000 -0400 +diff -ruN mailman-2.1.12-a/Makefile.in mailman-2.1.12-b/Makefile.in +--- mailman-2.1.12-a/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -61,11 +61,10 @@ # Modes for directories and executables created by the install # process. Default to group-writable directories but @@ -430,10 +416,9 @@ diff -r -u mailman-2.1.5.orig/Makefile.i else true; \ fi; \ done -Only in mailman-2.1.5.build: Makefile.in~ -diff -r -u mailman-2.1.5.orig/messages/Makefile.in mailman-2.1.5.build/messages/Makefile.in ---- mailman-2.1.5.orig/messages/Makefile.in 2004-04-24 22:30:04.000000000 -0400 -+++ mailman-2.1.5.build/messages/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/messages/Makefile.in mailman-2.1.12-b/messages/Makefile.in +--- mailman-2.1.12-a/messages/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/messages/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -32,7 +32,6 @@ DESTDIR= @@ -471,7 +456,7 @@ diff -r -u mailman-2.1.5.orig/messages/M done @for d in $(LANGUAGES); \ do \ -@@ -112,8 +109,6 @@ +@@ -113,8 +110,6 @@ mofiles: $(MOFILES) @@ -480,11 +465,10 @@ diff -r -u mailman-2.1.5.orig/messages/M clean: -rm -f */LC_MESSAGES/mailman.mo -Only in mailman-2.1.5.build/messages: Makefile.in~ -diff -r -u mailman-2.1.5.orig/misc/Makefile.in mailman-2.1.5.build/misc/Makefile.in ---- mailman-2.1.5.orig/misc/Makefile.in 2004-05-13 23:34:34.000000000 -0400 -+++ mailman-2.1.5.build/misc/Makefile.in 2004-10-15 15:36:46.000000000 -0400 -@@ -29,7 +29,6 @@ +diff -ruN mailman-2.1.12-a/misc/Makefile.in mailman-2.1.12-b/misc/Makefile.in +--- mailman-2.1.12-a/misc/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/misc/Makefile.in 2009-07-28 12:19:48.000000000 +0200 +@@ -30,7 +30,6 @@ DESTDIR= CC= @CC@ @@ -492,7 +476,7 @@ diff -r -u mailman-2.1.5.orig/misc/Makef INSTALL= @INSTALL@ PYTHON= @PYTHON@ -@@ -61,7 +60,7 @@ +@@ -62,7 +61,7 @@ # Modes for directories and executables created by the install # process. Default to group-writable directories but # user-only-writable for executables. @@ -501,7 +485,7 @@ diff -r -u mailman-2.1.5.orig/misc/Makef EXEMODE= 755 FILEMODE= 644 DATAMODE= 664 -@@ -93,8 +92,6 @@ +@@ -101,8 +100,6 @@ (cd $(PKGDIR)/$$p ; umask 02 ; PYTHONPATH=$(PYTHONLIBDIR) $(PYTHON) $(SETUPCMD)); \ done @@ -510,10 +494,9 @@ diff -r -u mailman-2.1.5.orig/misc/Makef clean: distclean: -Only in mailman-2.1.5.build/misc: Makefile.in~ -diff -r -u mailman-2.1.5.orig/scripts/Makefile.in mailman-2.1.5.build/scripts/Makefile.in ---- mailman-2.1.5.orig/scripts/Makefile.in 2003-03-31 14:27:12.000000000 -0500 -+++ mailman-2.1.5.build/scripts/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/scripts/Makefile.in mailman-2.1.12-b/scripts/Makefile.in +--- mailman-2.1.12-a/scripts/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/scripts/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -540,10 +523,9 @@ diff -r -u mailman-2.1.5.orig/scripts/Ma clean: distclean: -Only in mailman-2.1.5.build/scripts: Makefile.in~ -diff -r -u mailman-2.1.5.orig/src/Makefile.in mailman-2.1.5.build/src/Makefile.in ---- mailman-2.1.5.orig/src/Makefile.in 2003-03-31 14:27:14.000000000 -0500 -+++ mailman-2.1.5.build/src/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/src/Makefile.in mailman-2.1.12-b/src/Makefile.in +--- mailman-2.1.12-a/src/Makefile.in 2009-07-28 12:19:47.000000000 +0200 ++++ mailman-2.1.12-b/src/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -586,10 +568,9 @@ diff -r -u mailman-2.1.5.orig/src/Makefi done clean: -Only in mailman-2.1.5.build/src: Makefile.in~ -diff -r -u mailman-2.1.5.orig/templates/Makefile.in mailman-2.1.5.build/templates/Makefile.in ---- mailman-2.1.5.orig/templates/Makefile.in 2004-04-24 22:30:04.000000000 -0400 -+++ mailman-2.1.5.build/templates/Makefile.in 2004-10-18 12:49:01.000000000 -0400 +diff -ruN mailman-2.1.12-a/templates/Makefile.in mailman-2.1.12-b/templates/Makefile.in +--- mailman-2.1.12-a/templates/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/templates/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -624,10 +605,9 @@ diff -r -u mailman-2.1.5.orig/templates/ clean: distclean: -Only in mailman-2.1.5.build/templates: Makefile.in~ -diff -r -u mailman-2.1.5.orig/tests/bounces/Makefile.in mailman-2.1.5.build/tests/bounces/Makefile.in ---- mailman-2.1.5.orig/tests/bounces/Makefile.in 2003-03-31 14:27:16.000000000 -0500 -+++ mailman-2.1.5.build/tests/bounces/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/tests/bounces/Makefile.in mailman-2.1.12-b/tests/bounces/Makefile.in +--- mailman-2.1.12-a/tests/bounces/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/tests/bounces/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -654,10 +634,9 @@ diff -r -u mailman-2.1.5.orig/tests/boun clean: distclean: -Only in mailman-2.1.5.build/tests/bounces: Makefile.in~ -diff -r -u mailman-2.1.5.orig/tests/Makefile.in mailman-2.1.5.build/tests/Makefile.in ---- mailman-2.1.5.orig/tests/Makefile.in 2003-03-31 14:27:15.000000000 -0500 -+++ mailman-2.1.5.build/tests/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/tests/Makefile.in mailman-2.1.12-b/tests/Makefile.in +--- mailman-2.1.12-a/tests/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/tests/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -684,10 +663,9 @@ diff -r -u mailman-2.1.5.orig/tests/Make clean: distclean: -Only in mailman-2.1.5.build/tests: Makefile.in~ -diff -r -u mailman-2.1.5.orig/tests/msgs/Makefile.in mailman-2.1.5.build/tests/msgs/Makefile.in ---- mailman-2.1.5.orig/tests/msgs/Makefile.in 2003-03-31 14:27:17.000000000 -0500 -+++ mailman-2.1.5.build/tests/msgs/Makefile.in 2004-10-15 15:36:46.000000000 -0400 +diff -ruN mailman-2.1.12-a/tests/msgs/Makefile.in mailman-2.1.12-b/tests/msgs/Makefile.in +--- mailman-2.1.12-a/tests/msgs/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/tests/msgs/Makefile.in 2009-07-28 12:19:48.000000000 +0200 @@ -28,7 +28,6 @@ DESTDIR= @@ -714,4 +692,3 @@ diff -r -u mailman-2.1.5.orig/tests/msgs clean: distclean: -Only in mailman-2.1.5.build/tests/msgs: Makefile.in~ mailman-2.1-mailmanctl-status.patch: bin/mailmanctl | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- misc/mailman.in | 61 ++++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 118 insertions(+), 8 deletions(-) Index: mailman-2.1-mailmanctl-status.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1-mailmanctl-status.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mailman-2.1-mailmanctl-status.patch 18 Feb 2005 18:43:14 -0000 1.4 +++ mailman-2.1-mailmanctl-status.patch 28 Jul 2009 10:46:48 -0000 1.5 @@ -1,7 +1,7 @@ -diff -r -u mailman-2.1.5.orig/bin/mailmanctl mailman-2.1.5/bin/mailmanctl ---- mailman-2.1.5.orig/bin/mailmanctl 2004-02-03 17:26:08.000000000 -0500 -+++ mailman-2.1.5/bin/mailmanctl 2004-09-10 18:23:34.000000000 -0400 -@@ -35,7 +35,7 @@ +diff -ruN mailman-2.1.12-a/bin/mailmanctl mailman-2.1.12-b/bin/mailmanctl +--- mailman-2.1.12-a/bin/mailmanctl 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/mailmanctl 2009-07-28 12:19:48.000000000 +0200 +@@ -36,7 +36,7 @@ pid directly. The `start', `stop', `restart', and `reopen' commands handle everything for you. @@ -10,7 +10,7 @@ diff -r -u mailman-2.1.5.orig/bin/mailma Options: -@@ -89,6 +89,9 @@ +@@ -90,6 +90,9 @@ reopen - This will close all log files, causing them to be re-opened the next time a message is written to them @@ -20,7 +20,7 @@ diff -r -u mailman-2.1.5.orig/bin/mailma """ import sys -@@ -189,6 +192,52 @@ +@@ -190,6 +193,52 @@ return 0 return 1 @@ -73,7 +73,7 @@ diff -r -u mailman-2.1.5.orig/bin/mailma def acquire_lock_1(force): # Be sure we can acquire the master qrunner lock. If not, it means some -@@ -336,13 +385,15 @@ +@@ -337,13 +386,15 @@ command = COMMASPACE.join(args) usage(1, _('Bad command: %(command)s')) @@ -91,7 +91,7 @@ diff -r -u mailman-2.1.5.orig/bin/mailma if command == 'stop': # Sent the master qrunner process a SIGINT, which is equivalent to # giving cron/qrunner a ctrl-c or KeyboardInterrupt. This will -@@ -361,6 +412,14 @@ +@@ -362,6 +413,14 @@ if not quiet: print _('Re-opening all log files') kill_watcher(signal.SIGHUP) @@ -106,9 +106,9 @@ diff -r -u mailman-2.1.5.orig/bin/mailma elif command == 'start': # First, complain loudly if there's no site list. check_for_site_list() -diff -u -r mailman-2.1.5.orig/misc/mailman.in mailman-2.1.5/misc/mailman.in ---- mailman-2.1.5.orig/misc/mailman.in 2003-09-25 18:13:26.000000000 -0400 -+++ mailman-2.1.5/misc/mailman.in 2005-02-15 10:48:26.445983000 -0500 +diff -ruN mailman-2.1.12-a/misc/mailman.in mailman-2.1.12-b/misc/mailman.in +--- mailman-2.1.12-a/misc/mailman.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/misc/mailman.in 2009-07-28 12:19:48.000000000 +0200 @@ -36,19 +36,70 @@ MAILMANHOME=@prefix@ MAILMANCTL=$MAILMANHOME/bin/mailmanctl mailman-2.1.10-FHS.patch: Mailman/Defaults.py.in | 14 +++++++----- Mailman/MTA/Postfix.py | 4 +-- Makefile.in | 19 +++++++++++++++- bin/check_perms | 3 +- configure.in | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ misc/Makefile.in | 8 ++++++- 6 files changed, 93 insertions(+), 11 deletions(-) Index: mailman-2.1.10-FHS.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.10-FHS.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.10-FHS.patch 13 May 2008 08:32:26 -0000 1.1 +++ mailman-2.1.10-FHS.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,33 +1,8 @@ -diff -up mailman-2.1.10/misc/Makefile.in.FHS mailman-2.1.10/misc/Makefile.in ---- mailman-2.1.10/misc/Makefile.in.FHS 2008-05-13 09:24:29.000000000 +0200 -+++ mailman-2.1.10/misc/Makefile.in 2008-05-13 09:25:28.000000000 +0200 -@@ -27,6 +27,12 @@ bindir= @bindir@ - prefix= @prefix@ - exec_prefix= @exec_prefix@ - var_prefix= @VAR_PREFIX@ -+configdir= @CONFIG_DIR@ -+lockdir= @LOCK_DIR@ -+logdir= @LOG_DIR@ -+piddir= @PID_DIR@ -+queuedir= @QUEUE_DIR@ -+MAILMAN_GROUP= @MAILMAN_GROUP@ - DESTDIR= - - CC= @CC@ -@@ -87,7 +93,7 @@ install-other: - $(INSTALL) -m $(FILEMODE) paths.py $$dir; \ - done - $(INSTALL) -m $(EXEMODE) mailman $(DESTDIR)$(SCRIPTSDIR) -- $(INSTALL) -m $(FILEMODE) sitelist.cfg $(DESTDIR)$(DATADIR) -+ $(INSTALL) -m $(FILEMODE) sitelist.cfg $(DESTDIR)$(configdir) - - install-packages: - for p in $(PACKAGES); \ -diff -up mailman-2.1.10/bin/check_perms.FHS mailman-2.1.10/bin/check_perms ---- mailman-2.1.10/bin/check_perms.FHS 2008-05-13 09:10:26.000000000 +0200 -+++ mailman-2.1.10/bin/check_perms 2008-05-13 09:11:38.000000000 +0200 -@@ -183,7 +183,8 @@ def checkall(): - print C_('checking mode for %(prefix)s') +diff -ruN mailman-2.1.12-a/bin/check_perms mailman-2.1.12-b/bin/check_perms +--- mailman-2.1.12-a/bin/check_perms 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/check_perms 2009-07-28 12:19:49.000000000 +0200 +@@ -183,7 +183,8 @@ + print _('checking mode for %(prefix)s') dirs = {} for d in (mm_cfg.PREFIX, mm_cfg.EXEC_PREFIX, mm_cfg.VAR_PREFIX, - mm_cfg.LOG_DIR): @@ -36,24 +11,76 @@ diff -up mailman-2.1.10/bin/check_perms. dirs[d] = True for d in dirs.keys(): try: -diff -up mailman-2.1.10/Mailman/MTA/Postfix.py.FHS mailman-2.1.10/Mailman/MTA/Postfix.py ---- mailman-2.1.10/Mailman/MTA/Postfix.py.FHS 2008-05-13 09:15:34.000000000 +0200 -+++ mailman-2.1.10/Mailman/MTA/Postfix.py 2008-05-13 09:16:23.000000000 +0200 -@@ -32,8 +32,8 @@ from Mailman.MTA.Utils import makealiase - from Mailman.Logging.Syslog import syslog - - LOCKFILE = os.path.join(mm_cfg.LOCK_DIR, 'creator') --ALIASFILE = os.path.join(mm_cfg.DATA_DIR, 'aliases') --VIRTFILE = os.path.join(mm_cfg.DATA_DIR, 'virtual-mailman') -+ALIASFILE = os.path.join(mm_cfg.CONFIG_DIR, 'aliases') -+VIRTFILE = os.path.join(mm_cfg.CONFIG_DIR, 'virtual-mailman') +diff -ruN mailman-2.1.12-a/configure.in mailman-2.1.12-b/configure.in +--- mailman-2.1.12-a/configure.in 2009-07-28 12:19:47.000000000 +0200 ++++ mailman-2.1.12-b/configure.in 2009-07-28 12:19:49.000000000 +0200 +@@ -248,6 +248,62 @@ + prefixcheck=$VAR_PREFIX + fi - try: - True, False -diff -up mailman-2.1.10/Mailman/Defaults.py.in.FHS mailman-2.1.10/Mailman/Defaults.py.in ---- mailman-2.1.10/Mailman/Defaults.py.in.FHS 2008-05-13 09:13:51.000000000 +0200 -+++ mailman-2.1.10/Mailman/Defaults.py.in 2008-05-13 09:15:04.000000000 +0200 -@@ -1296,9 +1296,11 @@ AuthSiteAdmin = 5 # Site Administrat ++# Get the configuration file directory ++AC_SUBST(CONFIG_DIR) ++AC_MSG_CHECKING(for --with-config-dir) ++AC_ARG_WITH(config-dir, dnl ++[ --with-config-dir specify directory for configuration data other than [VAR_]PREFIX/data]) ++case "$with_config_dir" in ++ yes|no|"") CONFIG_DIR="$VAR_PREFIX/data";; ++ *) CONFIG_DIR=$with_config_dir;; ++esac ++AC_MSG_RESULT($CONFIG_DIR) ++ ++# Get the lock directory ++AC_SUBST(LOCK_DIR) ++AC_MSG_CHECKING(for --with-lock-dir) ++AC_ARG_WITH(lock-dir, dnl ++[ --with-lock-dir specify directory for lock files other than [VAR_]PREFIX/locks]) ++case "$with_lock_dir" in ++ yes|no|"") LOCK_DIR="$VAR_PREFIX/locks";; ++ *) LOCK_DIR=$with_lock_dir;; ++esac ++AC_MSG_RESULT($LOCK_DIR) ++ ++# Get the log directory ++AC_SUBST(LOG_DIR) ++AC_MSG_CHECKING(for --with-log-dir) ++AC_ARG_WITH(log-dir, dnl ++[ --with-log-dir specify directory for log files other than [VAR_]PREFIX/logs]) ++case "$with_log_dir" in ++ yes|no|"") LOG_DIR="$VAR_PREFIX/logs";; ++ *) LOG_DIR=$with_log_dir;; ++esac ++AC_MSG_RESULT($LOG_DIR) ++ ++# Get the pid directory ++AC_SUBST(PID_DIR) ++AC_MSG_CHECKING(for --with-pid-dir) ++AC_ARG_WITH(pid-dir, dnl ++[ --with-pid-dir specify directory for the pid file other than [VAR_]PREFIX/data]) ++case "$with_pid_dir" in ++ yes|no|"") PID_DIR="$VAR_PREFIX/data";; ++ *) PID_DIR=$with_pid_dir;; ++esac ++AC_MSG_RESULT($PID_DIR) ++ ++# Get the queue directory ++AC_SUBST(QUEUE_DIR) ++AC_MSG_CHECKING(for --with-queue-dir) ++AC_ARG_WITH(queue-dir, dnl ++[ --with-queue-dir specify directory for queue files other than [VAR_]PREFIX/qfiles]) ++case "$with_queue_dir" in ++ yes|no|"") QUEUE_DIR="$VAR_PREFIX/qfiles";; ++ *) QUEUE_DIR=$with_queue_dir;; ++esac ++AC_MSG_RESULT($QUEUE_DIR) ++ ++ + # new macro for finding group names + # returns a comma separated list of quoted group names + # the list is returned in the same order as specified with any duplicates removed +diff -ruN mailman-2.1.12-a/Mailman/Defaults.py.in mailman-2.1.12-b/Mailman/Defaults.py.in +--- mailman-2.1.12-a/Mailman/Defaults.py.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Defaults.py.in 2009-07-28 12:19:49.000000000 +0200 +@@ -1325,9 +1325,11 @@ # Useful directories LIST_DATA_DIR = os.path.join(VAR_PREFIX, 'lists') @@ -67,7 +94,7 @@ diff -up mailman-2.1.10/Mailman/Defaults SPAM_DIR = os.path.join(VAR_PREFIX, 'spam') WRAPPER_DIR = os.path.join(EXEC_PREFIX, 'mail') BIN_DIR = os.path.join(PREFIX, 'bin') -@@ -1309,7 +1311,7 @@ PUBLIC_ARCHIVE_FILE_DIR = os.path.join( +@@ -1338,7 +1340,7 @@ PRIVATE_ARCHIVE_FILE_DIR = os.path.join(VAR_PREFIX, 'archives', 'private') # Directories used by the qrunner subsystem @@ -76,7 +103,7 @@ diff -up mailman-2.1.10/Mailman/Defaults INQUEUE_DIR = os.path.join(QUEUE_DIR, 'in') OUTQUEUE_DIR = os.path.join(QUEUE_DIR, 'out') CMDQUEUE_DIR = os.path.join(QUEUE_DIR, 'commands') -@@ -1323,9 +1325,9 @@ RETRYQUEUE_DIR = os.path.join(QUEUE_DIR +@@ -1352,9 +1354,9 @@ MAILDIR_DIR = os.path.join(QUEUE_DIR, 'maildir') # Other useful files @@ -89,10 +116,24 @@ diff -up mailman-2.1.10/Mailman/Defaults # Import a bunch of version numbers from Version import * -diff -up mailman-2.1.10/Makefile.in.FHS mailman-2.1.10/Makefile.in ---- mailman-2.1.10/Makefile.in.FHS 2008-05-13 09:17:36.000000000 +0200 -+++ mailman-2.1.10/Makefile.in 2008-05-13 09:22:35.000000000 +0200 -@@ -28,6 +28,11 @@ bindir= @bindir@ +diff -ruN mailman-2.1.12-a/Mailman/MTA/Postfix.py mailman-2.1.12-b/Mailman/MTA/Postfix.py +--- mailman-2.1.12-a/Mailman/MTA/Postfix.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/MTA/Postfix.py 2009-07-28 12:19:49.000000000 +0200 +@@ -32,8 +32,8 @@ + from Mailman.Logging.Syslog import syslog + + LOCKFILE = os.path.join(mm_cfg.LOCK_DIR, 'creator') +-ALIASFILE = os.path.join(mm_cfg.DATA_DIR, 'aliases') +-VIRTFILE = os.path.join(mm_cfg.DATA_DIR, 'virtual-mailman') ++ALIASFILE = os.path.join(mm_cfg.CONFIG_DIR, 'aliases') ++VIRTFILE = os.path.join(mm_cfg.CONFIG_DIR, 'virtual-mailman') + + try: + True, False +diff -ruN mailman-2.1.12-a/Makefile.in mailman-2.1.12-b/Makefile.in +--- mailman-2.1.12-a/Makefile.in 2009-07-28 12:19:48.000000000 +0200 ++++ mailman-2.1.12-b/Makefile.in 2009-07-28 12:19:49.000000000 +0200 +@@ -28,6 +28,11 @@ prefix= @prefix@ exec_prefix= @exec_prefix@ var_prefix= @VAR_PREFIX@ @@ -104,7 +145,7 @@ diff -up mailman-2.1.10/Makefile.in.FHS DESTDIR= CC= @CC@ -@@ -41,8 +46,11 @@ DEFS= @DEFS@ +@@ -41,8 +46,11 @@ OPT= @OPT@ CFLAGS= @CFLAGS@ $(OPT) $(DEFS) @@ -117,7 +158,7 @@ diff -up mailman-2.1.10/Makefile.in.FHS archives/private archives/public ARCH_INDEP_DIRS= \ -@@ -105,6 +113,15 @@ doinstall: $(SUBDIRS) +@@ -105,6 +113,15 @@ else true; \ fi; \ done @@ -133,69 +174,28 @@ diff -up mailman-2.1.10/Makefile.in.FHS chmod o-r $(DESTDIR)$(var_prefix)/archives/private @for d in $(ARCH_INDEP_DIRS); \ do \ -diff -up mailman-2.1.10/configure.in.FHS mailman-2.1.10/configure.in ---- mailman-2.1.10/configure.in.FHS 2008-05-13 09:02:50.000000000 +0200 -+++ mailman-2.1.10/configure.in 2008-05-13 09:03:58.000000000 +0200 -@@ -215,6 +215,62 @@ else - prefixcheck=$VAR_PREFIX - fi +diff -ruN mailman-2.1.12-a/misc/Makefile.in mailman-2.1.12-b/misc/Makefile.in +--- mailman-2.1.12-a/misc/Makefile.in 2009-07-28 12:19:48.000000000 +0200 ++++ mailman-2.1.12-b/misc/Makefile.in 2009-07-28 12:19:49.000000000 +0200 +@@ -27,6 +27,12 @@ + prefix= @prefix@ + exec_prefix= @exec_prefix@ + var_prefix= @VAR_PREFIX@ ++configdir= @CONFIG_DIR@ ++lockdir= @LOCK_DIR@ ++logdir= @LOG_DIR@ ++piddir= @PID_DIR@ ++queuedir= @QUEUE_DIR@ ++MAILMAN_GROUP= @MAILMAN_GROUP@ + DESTDIR= -+# Get the configuration file directory -+AC_SUBST(CONFIG_DIR) -+AC_MSG_CHECKING(for --with-config-dir) -+AC_ARG_WITH(config-dir, dnl -+[ --with-config-dir specify directory for configuration data other than [VAR_]PREFIX/data]) -+case "$with_config_dir" in -+ yes|no|"") CONFIG_DIR="$VAR_PREFIX/data";; -+ *) CONFIG_DIR=$with_config_dir;; -+esac -+AC_MSG_RESULT($CONFIG_DIR) -+ -+# Get the lock directory -+AC_SUBST(LOCK_DIR) -+AC_MSG_CHECKING(for --with-lock-dir) -+AC_ARG_WITH(lock-dir, dnl -+[ --with-lock-dir specify directory for lock files other than [VAR_]PREFIX/locks]) -+case "$with_lock_dir" in -+ yes|no|"") LOCK_DIR="$VAR_PREFIX/locks";; -+ *) LOCK_DIR=$with_lock_dir;; -+esac -+AC_MSG_RESULT($LOCK_DIR) -+ -+# Get the log directory -+AC_SUBST(LOG_DIR) -+AC_MSG_CHECKING(for --with-log-dir) -+AC_ARG_WITH(log-dir, dnl -+[ --with-log-dir specify directory for log files other than [VAR_]PREFIX/logs]) -+case "$with_log_dir" in -+ yes|no|"") LOG_DIR="$VAR_PREFIX/logs";; -+ *) LOG_DIR=$with_log_dir;; -+esac -+AC_MSG_RESULT($LOG_DIR) -+ -+# Get the pid directory -+AC_SUBST(PID_DIR) -+AC_MSG_CHECKING(for --with-pid-dir) -+AC_ARG_WITH(pid-dir, dnl -+[ --with-pid-dir specify directory for the pid file other than [VAR_]PREFIX/data]) -+case "$with_pid_dir" in -+ yes|no|"") PID_DIR="$VAR_PREFIX/data";; -+ *) PID_DIR=$with_pid_dir;; -+esac -+AC_MSG_RESULT($PID_DIR) -+ -+# Get the queue directory -+AC_SUBST(QUEUE_DIR) -+AC_MSG_CHECKING(for --with-queue-dir) -+AC_ARG_WITH(queue-dir, dnl -+[ --with-queue-dir specify directory for queue files other than [VAR_]PREFIX/qfiles]) -+case "$with_queue_dir" in -+ yes|no|"") QUEUE_DIR="$VAR_PREFIX/qfiles";; -+ *) QUEUE_DIR=$with_queue_dir;; -+esac -+AC_MSG_RESULT($QUEUE_DIR) -+ -+ - # new macro for finding group names - # returns a comma separated list of quoted group names - # the list is returned in the same order as specified with any duplicates removed + CC= @CC@ +@@ -87,7 +93,7 @@ + $(INSTALL) -m $(FILEMODE) paths.py $$dir; \ + done + $(INSTALL) -m $(EXEMODE) mailman $(DESTDIR)$(SCRIPTSDIR) +- $(INSTALL) -m $(FILEMODE) sitelist.cfg $(DESTDIR)$(DATADIR) ++ $(INSTALL) -m $(FILEMODE) sitelist.cfg $(DESTDIR)$(configdir) + + install-packages: + if [ -z "$(EMAILPKG)" -a -d $(PYTHONLIBDIR)/email ] ; \ mailman-2.1.10-archive-reply.patch: article.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: mailman-2.1.10-archive-reply.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.10-archive-reply.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.10-archive-reply.patch 13 May 2008 08:32:26 -0000 1.1 +++ mailman-2.1.10-archive-reply.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,5 +1,6 @@ ---- mailman/templates/en/article.html.orig 2005-10-23 07:21:04.000000000 -0400 -+++ mailman/templates/en/article.html 2005-10-23 07:27:08.000000000 -0400 +diff -ruN mailman-2.1.12-a/templates/en/article.html mailman-2.1.12-b/templates/en/article.html +--- mailman-2.1.12-a/templates/en/article.html 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/templates/en/article.html 2009-07-28 12:19:50.000000000 +0200 @@ -4,7 +4,7 @@ %(title)s mailman-2.1.10-ctypefix.patch: withlist | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: mailman-2.1.10-ctypefix.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.10-ctypefix.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.10-ctypefix.patch 13 May 2008 08:32:26 -0000 1.1 +++ mailman-2.1.10-ctypefix.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up mailman-2.1.10/bin/withlist.ctypefix mailman-2.1.10/bin/withlist ---- mailman-2.1.10/bin/withlist.ctypefix 2008-05-12 13:55:34.000000000 +0200 -+++ mailman-2.1.10/bin/withlist 2008-05-12 13:58:11.000000000 +0200 -@@ -128,7 +128,10 @@ import paths +diff -ruN mailman-2.1.12-a/bin/withlist mailman-2.1.12-b/bin/withlist +--- mailman-2.1.12-a/bin/withlist 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/withlist 2009-07-28 12:19:51.000000000 +0200 +@@ -128,7 +128,10 @@ from Mailman import Errors from Mailman import MailList from Mailman import Utils mailman-2.1.11-cron.patch: cron/bumpdigests | 2 +- cron/checkdbs | 2 +- cron/crontab.in.in | 37 ++++++++++++++++++++++++++++++------- cron/disabled | 2 +- cron/gate_news | 2 +- cron/mailpasswds | 2 +- cron/nightly_gzip | 2 +- cron/senddigests | 2 +- misc/mailman.in | 50 ++++++++++++++++++++++++++++++++++++++++++++++---- 9 files changed, 83 insertions(+), 18 deletions(-) Index: mailman-2.1.11-cron.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.11-cron.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mailman-2.1.11-cron.patch 31 Jul 2008 12:18:04 -0000 1.2 +++ mailman-2.1.11-cron.patch 28 Jul 2009 10:46:48 -0000 1.3 @@ -1,132 +1,24 @@ -diff -up mailman-2.1.11/misc/mailman.in.cron mailman-2.1.11/misc/mailman.in ---- mailman-2.1.11/misc/mailman.in.cron 2008-07-31 13:53:55.000000000 +0200 -+++ mailman-2.1.11/misc/mailman.in 2008-07-31 13:53:55.000000000 +0200 -@@ -24,18 +24,48 @@ - # On Debian, type "update-rc.d mailman defaults" - # On RedHat, and derivatives, install with "chkconfig --add mailman" - # --# chkconfig: 2345 98 12 -+# chkconfig: - 98 12 - # description: Mailman is the GNU Mailing List Manager, a program that \ - # manages electronic mail discussion groups. For more \ - # on GNU Mailman see http://www.list.org - # processname: mailmanctl - # config: @prefix@/Mailman/mm_cfg.py --# pidfile: @prefix@/data/master-qrunner.pid -+# pidfile: @PID_DIR@/master-qrunner.pid - - PYTHON=@PYTHON@ - MAILMANHOME=@prefix@ - MAILMANCTL=$MAILMANHOME/bin/mailmanctl - -+# We used to install the mailman cron jobs when the mailman rpm was -+# installed, irrespective of whether mailman was actually being -+# run. Although the cron jobs didn't create any problems if someone -+# wasn't running mailman some users complained about the cron log file -+# filling up, resource usage, and power consumption since systems -+# wouldn't really idle. It really only makes sense to run the mailman -+# cron jobs if the mailman service is turned on and not just merely -+# having the rpm installed. This init.d script is an obvious place to -+# install or remove the cron jobs based on the service being enabled -+# or not. -+ -+SRC_CRON_SCRIPT=$MAILMANHOME/cron/crontab.in -+DST_CRON_SCRIPT=/etc/cron.d/mailman -+ -+function InstallCron() -+{ -+ install -m644 -o root -g root $SRC_CRON_SCRIPT $DST_CRON_SCRIPT -+} -+ -+function RemoveCron() -+{ -+cat > $DST_CRON_SCRIPT < $DST_CRON_SCRIPT <> fd, msg sys.exit(status) -@@ -134,19 +134,19 @@ def addall(mlist, members, digest, ack, +@@ -134,19 +134,19 @@ try: mlist.ApprovedAddMember(userdesc, ack, 0) except Errors.MMAlreadyAMember: @@ -45,7 +45,7 @@ diff -up mailman-2.1.12/bin/add_members. -@@ -191,26 +191,26 @@ def main(): +@@ -191,26 +191,26 @@ elif arg.lower()[0] == 'n': send_welcome_msg = 0 else: @@ -76,7 +76,7 @@ diff -up mailman-2.1.12/bin/add_members. # Set up defaults if send_welcome_msg is None: -@@ -230,7 +230,7 @@ def main(): +@@ -230,7 +230,7 @@ nmembers = readfile(nfile) if not dmembers and not nmembers: @@ -85,7 +85,7 @@ diff -up mailman-2.1.12/bin/add_members. s = StringIO() i18n.set_language(mlist.preferred_language) -@@ -242,7 +242,7 @@ def main(): +@@ -242,7 +242,7 @@ if admin_notif: realname = mlist.real_name @@ -94,10 +94,10 @@ diff -up mailman-2.1.12/bin/add_members. msg = Message.UserNotification( mlist.owner, Utils.get_site_email(), subject, s.getvalue(), mlist.preferred_language) -diff -up mailman-2.1.12/bin/arch.lctype mailman-2.1.12/bin/arch ---- mailman-2.1.12/bin/arch.lctype 2009-03-10 12:33:40.000000000 +0100 -+++ mailman-2.1.12/bin/arch 2009-03-10 12:35:10.000000000 +0100 -@@ -70,7 +70,7 @@ from Mailman.Archiver.HyperArch import H +diff -ruN mailman-2.1.12-a/bin/arch mailman-2.1.12-b/bin/arch +--- mailman-2.1.12-a/bin/arch 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/arch 2009-07-28 12:19:54.000000000 +0200 +@@ -70,7 +70,7 @@ from Mailman.LockFile import LockFile from Mailman import i18n @@ -106,7 +106,7 @@ diff -up mailman-2.1.12/bin/arch.lctype PROGRAM = sys.argv[0] i18n.set_language(mm_cfg.DEFAULT_SERVER_LANGUAGE) -@@ -82,7 +82,7 @@ def usage(code, msg=''): +@@ -82,7 +82,7 @@ fd = sys.stderr else: fd = sys.stdout @@ -115,7 +115,7 @@ diff -up mailman-2.1.12/bin/arch.lctype if msg: print >> fd, msg sys.exit(code) -@@ -122,7 +122,7 @@ def main(): +@@ -122,7 +122,7 @@ # grok arguments if len(args) < 1: @@ -124,7 +124,7 @@ diff -up mailman-2.1.12/bin/arch.lctype listname = args[0].lower().strip() if len(args) < 2: -@@ -140,7 +140,7 @@ def main(): +@@ -140,7 +140,7 @@ try: mlist = MailList(listname) except Errors.MMListError, e: @@ -133,7 +133,7 @@ diff -up mailman-2.1.12/bin/arch.lctype if mbox is None: mbox = mlist.ArchiveFileName() -@@ -165,7 +165,7 @@ def main(): +@@ -165,7 +165,7 @@ try: fp = open(mbox) except IOError, msg: @@ -142,10 +142,10 @@ diff -up mailman-2.1.12/bin/arch.lctype # Maybe wipe the old archives if wipe: if mlist.scrub_nondigest: -diff -up mailman-2.1.12/bin/b4b5-archfix.lctype mailman-2.1.12/bin/b4b5-archfix ---- mailman-2.1.12/bin/b4b5-archfix.lctype 2009-03-10 12:53:58.000000000 +0100 -+++ mailman-2.1.12/bin/b4b5-archfix 2009-03-10 12:54:11.000000000 +0100 -@@ -44,7 +44,7 @@ import cPickle as pickle +diff -ruN mailman-2.1.12-a/bin/b4b5-archfix mailman-2.1.12-b/bin/b4b5-archfix +--- mailman-2.1.12-a/bin/b4b5-archfix 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/b4b5-archfix 2009-07-28 12:19:54.000000000 +0200 +@@ -44,7 +44,7 @@ # Required to get the right classes for unpickling import paths @@ -154,7 +154,7 @@ diff -up mailman-2.1.12/bin/b4b5-archfix PROGRAM = sys.argv[0] -@@ -55,7 +55,7 @@ def usage(code, msg=''): +@@ -55,7 +55,7 @@ fd = sys.stderr else: fd = sys.stdout @@ -163,10 +163,10 @@ diff -up mailman-2.1.12/bin/b4b5-archfix if msg: print >> fd, msg sys.exit(code) -diff -up mailman-2.1.12/bin/change_pw.lctype mailman-2.1.12/bin/change_pw ---- mailman-2.1.12/bin/change_pw.lctype 2009-03-10 13:09:50.000000000 +0100 -+++ mailman-2.1.12/bin/change_pw 2009-03-10 13:10:18.000000000 +0100 -@@ -76,7 +76,7 @@ from Mailman import Errors +diff -ruN mailman-2.1.12-a/bin/change_pw mailman-2.1.12-b/bin/change_pw +--- mailman-2.1.12-a/bin/change_pw 2009-07-28 12:19:50.000000000 +0200 ++++ mailman-2.1.12-b/bin/change_pw 2009-07-28 12:19:54.000000000 +0200 +@@ -76,7 +76,7 @@ from Mailman import Message from Mailman import i18n @@ -175,7 +175,7 @@ diff -up mailman-2.1.12/bin/change_pw.lc SPACE = ' ' -@@ -87,7 +87,7 @@ def usage(code, msg=''): +@@ -87,7 +87,7 @@ fd = sys.stderr else: fd = sys.stdout @@ -184,7 +184,7 @@ diff -up mailman-2.1.12/bin/change_pw.lc if msg: print >> fd, msg sys.exit(code) -@@ -103,7 +103,7 @@ def openlist(listname): +@@ -103,7 +103,7 @@ try: mlist = MailList.MailList(listname, lock=0) except Errors.MMListError, e: @@ -193,7 +193,7 @@ diff -up mailman-2.1.12/bin/change_pw.lc _listcache[listname] = mlist return mlist -@@ -141,11 +141,11 @@ def main(): +@@ -141,11 +141,11 @@ if args: strargs = SPACE.join(args) @@ -207,7 +207,7 @@ diff -up mailman-2.1.12/bin/change_pw.lc shapassword = Utils.sha_new(password).hexdigest() if domains: -@@ -155,7 +155,7 @@ def main(): +@@ -155,7 +155,7 @@ listnames[name] = 1 if not listnames: @@ -216,7 +216,7 @@ diff -up mailman-2.1.12/bin/change_pw.lc sys.exit(0) # Set the password on the lists -@@ -177,7 +177,7 @@ def main(): +@@ -177,7 +177,7 @@ mlist.Unlock() # Notification [...1608 lines suppressed...] @@ -2250,7 +2250,7 @@ diff -up mailman-2.1.12/bin/update.lctyp if msg: print >> sys.stderr, msg sys.exit(code) -@@ -787,15 +787,15 @@ if __name__ == '__main__': +@@ -787,15 +787,15 @@ hextversion = hex(thisversion) if lastversion == thisversion and not force: # nothing to do @@ -2269,7 +2269,7 @@ diff -up mailman-2.1.12/bin/update.lctyp errors = main() if not errors: # Record the version we just upgraded to -@@ -804,7 +804,7 @@ Exiting.""") +@@ -804,7 +804,7 @@ fp.close() else: lockdir = mm_cfg.LOCK_DIR @@ -2278,9 +2278,9 @@ diff -up mailman-2.1.12/bin/update.lctyp ERROR: -diff -up mailman-2.1.12/bin/version.lctype mailman-2.1.12/bin/version ---- mailman-2.1.12/bin/version.lctype 2009-03-10 12:48:20.000000000 +0100 -+++ mailman-2.1.12/bin/version 2009-03-10 12:48:39.000000000 +0100 +diff -ruN mailman-2.1.12-a/bin/version mailman-2.1.12-b/bin/version +--- mailman-2.1.12-a/bin/version 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/version 2009-07-28 12:19:54.000000000 +0200 @@ -21,6 +21,6 @@ import paths @@ -2290,10 +2290,10 @@ diff -up mailman-2.1.12/bin/version.lcty -print _('Using Mailman version:'), Mailman.mm_cfg.VERSION +print C_('Using Mailman version:'), Mailman.mm_cfg.VERSION -diff -up mailman-2.1.12/bin/withlist.lctype mailman-2.1.12/bin/withlist ---- mailman-2.1.12/bin/withlist.lctype 2009-03-10 13:06:37.000000000 +0100 -+++ mailman-2.1.12/bin/withlist 2009-03-10 13:07:27.000000000 +0100 -@@ -157,7 +157,7 @@ def usage(code, msg=''): +diff -ruN mailman-2.1.12-a/bin/withlist mailman-2.1.12-b/bin/withlist +--- mailman-2.1.12-a/bin/withlist 2009-07-28 12:19:51.000000000 +0200 ++++ mailman-2.1.12-b/bin/withlist 2009-07-28 12:19:54.000000000 +0200 +@@ -157,7 +157,7 @@ fd = sys.stderr else: fd = sys.stdout @@ -2302,7 +2302,7 @@ diff -up mailman-2.1.12/bin/withlist.lct if msg: print >> fd, msg sys.exit(code) -@@ -175,11 +175,11 @@ def atexit(): +@@ -175,11 +175,11 @@ if m.Locked(): if VERBOSE: listname = m.internal_name() @@ -2316,7 +2316,7 @@ diff -up mailman-2.1.12/bin/withlist.lct del m -@@ -188,16 +188,16 @@ def do_list(listname, args, func): +@@ -188,16 +188,16 @@ global m # first try to open mailing list if VERBOSE: @@ -2337,7 +2337,7 @@ diff -up mailman-2.1.12/bin/withlist.lct m = None # try to import the module and run the callable -@@ -237,7 +237,7 @@ def main(): +@@ -237,7 +237,7 @@ all = True if len(args) < 1 and not all: @@ -2346,7 +2346,7 @@ diff -up mailman-2.1.12/bin/withlist.lct if interact: # Let them keep going print warning -@@ -246,7 +246,7 @@ def main(): +@@ -246,7 +246,7 @@ usage(1, warning) if all and not run: @@ -2355,7 +2355,7 @@ diff -up mailman-2.1.12/bin/withlist.lct # The default for interact is 1 unless -r was given if interact is None: -@@ -266,11 +266,11 @@ def main(): +@@ -266,11 +266,11 @@ module = run[:i] callable = run[i+1:] if VERBOSE: @@ -2369,7 +2369,7 @@ diff -up mailman-2.1.12/bin/withlist.lct func = getattr(mod, callable) if all: -@@ -291,7 +291,7 @@ def main(): +@@ -291,7 +291,7 @@ namespace = globals().copy() namespace.update(locals()) if dolist: @@ -2378,9 +2378,9 @@ diff -up mailman-2.1.12/bin/withlist.lct else: ban = None code.InteractiveConsole(namespace).interact(ban) -diff -up mailman-2.1.12/Mailman/i18n.py.lctype mailman-2.1.12/Mailman/i18n.py ---- mailman-2.1.12/Mailman/i18n.py.lctype 2009-03-10 13:14:46.000000000 +0100 -+++ mailman-2.1.12/Mailman/i18n.py 2009-03-10 13:18:10.000000000 +0100 +diff -ruN mailman-2.1.12-a/Mailman/i18n.py mailman-2.1.12-b/Mailman/i18n.py +--- mailman-2.1.12-a/Mailman/i18n.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/i18n.py 2009-07-28 12:19:54.000000000 +0200 @@ -15,6 +15,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, # USA. @@ -2389,7 +2389,7 @@ diff -up mailman-2.1.12/Mailman/i18n.py. import sys import time import gettext -@@ -26,6 +27,16 @@ from Mailman.SafeDict import SafeDict +@@ -26,6 +27,16 @@ _translation = None @@ -2406,7 +2406,7 @@ diff -up mailman-2.1.12/Mailman/i18n.py. def set_language(language=None): global _translation -@@ -54,7 +65,7 @@ if _translation is None: +@@ -54,7 +65,7 @@ @@ -2415,7 +2415,7 @@ diff -up mailman-2.1.12/Mailman/i18n.py. if s == '': return s assert s -@@ -70,7 +81,7 @@ def _(s): +@@ -70,7 +81,7 @@ # original string is 1) locals dictionary, 2) globals dictionary. # # First, get the frame of the caller @@ -2424,7 +2424,7 @@ diff -up mailman-2.1.12/Mailman/i18n.py. # A `safe' dictionary is used so we won't get an exception if there's a # missing key in the dictionary. dict = SafeDict(frame.f_globals.copy()) -@@ -88,6 +99,21 @@ def _(s): +@@ -88,6 +99,21 @@ if isinstance(v, UnicodeType): dict[k] = v.encode(charset, 'replace') return tns % dict @@ -2446,10 +2446,10 @@ diff -up mailman-2.1.12/Mailman/i18n.py. -diff -up mailman-2.1.12/Mailman/MTA/Postfix.py.lctype mailman-2.1.12/Mailman/MTA/Postfix.py ---- mailman-2.1.12/Mailman/MTA/Postfix.py.lctype 2009-03-10 13:13:45.000000000 +0100 -+++ mailman-2.1.12/Mailman/MTA/Postfix.py 2009-03-10 13:14:16.000000000 +0100 -@@ -27,7 +27,7 @@ from stat import * +diff -ruN mailman-2.1.12-a/Mailman/MTA/Postfix.py mailman-2.1.12-b/Mailman/MTA/Postfix.py +--- mailman-2.1.12-a/Mailman/MTA/Postfix.py 2009-07-28 12:19:50.000000000 +0200 ++++ mailman-2.1.12-b/Mailman/MTA/Postfix.py 2009-07-28 12:19:54.000000000 +0200 +@@ -27,7 +27,7 @@ from Mailman import mm_cfg from Mailman import Utils from Mailman import LockFile @@ -2458,7 +2458,7 @@ diff -up mailman-2.1.12/Mailman/MTA/Post from Mailman.MTA.Utils import makealiases from Mailman.Logging.Syslog import syslog -@@ -308,7 +308,7 @@ def checkperms(state): +@@ -308,7 +308,7 @@ targetmode = S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP for file in ALIASFILE, VIRTFILE: if state.VERBOSE: @@ -2467,7 +2467,7 @@ diff -up mailman-2.1.12/Mailman/MTA/Post stat = None try: stat = os.stat(file) -@@ -318,9 +318,9 @@ def checkperms(state): +@@ -318,9 +318,9 @@ if stat and (stat[ST_MODE] & targetmode) <> targetmode: state.ERRORS += 1 octmode = oct(stat[ST_MODE]) @@ -2479,7 +2479,7 @@ diff -up mailman-2.1.12/Mailman/MTA/Post os.chmod(file, stat[ST_MODE] | targetmode) else: print -@@ -336,7 +336,7 @@ def checkperms(state): +@@ -336,7 +336,7 @@ raise continue if state.VERBOSE: @@ -2488,7 +2488,7 @@ diff -up mailman-2.1.12/Mailman/MTA/Post user = mm_cfg.MAILMAN_USER ownerok = stat[ST_UID] == pwd.getpwnam(user)[2] if not ownerok: -@@ -344,10 +344,10 @@ def checkperms(state): +@@ -344,10 +344,10 @@ owner = pwd.getpwuid(stat[ST_UID])[0] except KeyError: owner = 'uid %d' % stat[ST_UID] mailman-2.1.12-mmcfg.patch: mailman.in | 2 ++ 1 file changed, 2 insertions(+) Index: mailman-2.1.12-mmcfg.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.12-mmcfg.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.12-mmcfg.patch 2 Apr 2009 13:34:03 -0000 1.1 +++ mailman-2.1.12-mmcfg.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up mailman-2.1.12/misc/mailman.in.selinux mailman-2.1.12/misc/mailman.in ---- mailman-2.1.12/misc/mailman.in.selinux 2009-04-02 15:03:19.000000000 +0200 -+++ mailman-2.1.12/misc/mailman.in 2009-04-02 15:04:23.000000000 +0200 -@@ -84,6 +84,7 @@ prog="mailman" +diff -ruN mailman-2.1.12-a/misc/mailman.in mailman-2.1.12-b/misc/mailman.in +--- mailman-2.1.12-a/misc/mailman.in 2009-07-28 12:19:53.000000000 +0200 ++++ mailman-2.1.12-b/misc/mailman.in 2009-07-28 12:19:55.000000000 +0200 +@@ -84,6 +84,7 @@ function start() { echo -n $"Starting $prog: " @@ -9,7 +9,7 @@ diff -up mailman-2.1.12/misc/mailman.in. daemon $MAILMANCTL -s -q start RETVAL=$? if [ $RETVAL -eq 0 ] -@@ -98,6 +99,7 @@ function start() +@@ -98,6 +99,7 @@ function stop() { echo -n $"Shutting down $prog: " mailman-2.1.12-multimail.patch: configure.in | 139 +++++++++++++++++++++++++++++++++++++++++++---------- src/Makefile.in | 4 - src/cgi-wrapper.c | 6 +- src/common.c | 61 +++++++++++++++-------- src/common.h | 4 - src/mail-wrapper.c | 6 +- 6 files changed, 165 insertions(+), 55 deletions(-) Index: mailman-2.1.12-multimail.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.12-multimail.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.12-multimail.patch 11 Mar 2009 12:33:29 -0000 1.1 +++ mailman-2.1.12-multimail.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,6 +1,7 @@ ---- mailman-2.1.7/configure.in.multimail 2005-08-27 03:40:15.000000000 +0200 -+++ mailman-2.1.7/configure.in 2006-01-10 10:53:14.000000000 +0100 -@@ -208,26 +208,101 @@ +diff -ruN mailman-2.1.12-a/configure.in mailman-2.1.12-b/configure.in +--- mailman-2.1.12-a/configure.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/configure.in 2009-07-28 12:19:47.000000000 +0200 +@@ -249,26 +249,101 @@ fi # new macro for finding group names @@ -110,10 +111,10 @@ fp = open("conftest.out", "w") fp.write("%s\n" % gname) fp.close() -@@ -241,25 +316,41 @@ +@@ -282,25 +357,41 @@ # new macro for finding UIDs - AC_DEFUN(MM_FIND_USER_NAME, [ + AC_DEFUN([MM_FIND_USER_NAME], [ +# Given a list of tokens, either a name or a number (uid) +# return the first one in the list that is found in the +# password database. The return value is always a name, possibly @@ -160,7 +161,7 @@ fp = open("conftest.out", "w") fp.write("%s\n" % uname) fp.close() -@@ -285,7 +376,7 @@ +@@ -326,7 +417,7 @@ # User `mailman' must exist AC_SUBST(MAILMAN_USER) AC_MSG_CHECKING(for user name \"$USERNAME\") @@ -169,7 +170,7 @@ if test -z "$MAILMAN_USER" then if test "$with_permcheck" = "yes" -@@ -316,7 +407,7 @@ +@@ -357,7 +448,7 @@ # Target group must exist AC_SUBST(MAILMAN_GROUP) AC_MSG_CHECKING(for group name \"$GROUPNAME\") @@ -178,7 +179,7 @@ if test -z "$MAILMAN_GROUP" then if test "$with_permcheck" = "yes" -@@ -339,11 +430,11 @@ +@@ -380,11 +471,11 @@ prefix = "$prefixcheck" groupname = "$GROUPNAME" mailmangroup = "$MAILMAN_GROUP" @@ -194,7 +195,7 @@ try: statdata = os.stat(prefix) except OSError: problems.append("Directory doesn't exist: " + prefix) -@@ -393,7 +484,7 @@ +@@ -434,7 +525,7 @@ then with_mail_gid="mailman other mail daemon" fi @@ -203,7 +204,7 @@ if test -z "$MAIL_GROUP" then if test "$with_permcheck" = "yes" -@@ -420,7 +511,7 @@ +@@ -461,7 +552,7 @@ with_cgi_gid="www www-data nobody" fi @@ -212,42 +213,9 @@ if test -z "$CGI_GROUP" then if test "$with_permcheck" = "yes" ---- mailman-2.1.7/src/Makefile.in.multimail 2005-08-27 03:40:17.000000000 +0200 -+++ mailman-2.1.7/src/Makefile.in 2006-01-10 10:53:14.000000000 +0100 -@@ -49,9 +49,9 @@ - - SHELL= /bin/sh - --MAIL_FLAGS= -DMAIL_GROUP="\"$(MAIL_GROUP)\"" -+MAIL_FLAGS= -DMAIL_GROUP='$(MAIL_GROUP)' - --CGI_FLAGS= -DCGI_GROUP="\"$(CGI_GROUP)\"" -+CGI_FLAGS= -DCGI_GROUP='$(CGI_GROUP)' - - HELPFUL= -DHELPFUL - ---- mailman-2.1.7/src/common.h.multimail 2005-08-27 03:40:17.000000000 +0200 -+++ mailman-2.1.7/src/common.h 2006-01-10 10:53:14.000000000 +0100 -@@ -33,7 +33,7 @@ - #define GID_T GETGROUPS_T - - extern void fatal(const char*, int, char*, ...); --extern void check_caller(const char*, const char*); -+extern void check_caller(const char* ident, const char**, size_t); - extern int run_script(const char*, int, char**, char**); - - /* Global variable used as a flag. */ -@@ -51,7 +51,7 @@ - #define MAIL_USAGE_ERROR 5 - #define MAIL_ILLEGAL_COMMAND 6 - #define ADDALIAS_USAGE_ERROR 7 --#define GROUP_NAME_NOT_FOUND 8 -+#define GROUP_ID_NOT_FOUND 8 - - - /* ---- mailman-2.1.7/src/cgi-wrapper.c.multimail 2005-08-27 03:40:17.000000000 +0200 -+++ mailman-2.1.7/src/cgi-wrapper.c 2006-01-10 10:53:14.000000000 +0100 +diff -ruN mailman-2.1.12-a/src/cgi-wrapper.c mailman-2.1.12-b/src/cgi-wrapper.c +--- mailman-2.1.12-a/src/cgi-wrapper.c 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/src/cgi-wrapper.c 2009-07-28 12:19:47.000000000 +0200 @@ -28,11 +28,11 @@ /* Group name that CGI scripts run as. See your web server's documentation * for details. @@ -271,8 +239,9 @@ /* For these CGI programs, we can ignore argc and argv since they * don't contain anything useful. `script' will always be the driver ---- mailman-2.1.7/src/common.c.multimail 2005-12-30 19:50:08.000000000 +0100 -+++ mailman-2.1.7/src/common.c 2006-01-10 11:01:43.000000000 +0100 +diff -ruN mailman-2.1.12-a/src/common.c mailman-2.1.12-b/src/common.c +--- mailman-2.1.12-a/src/common.c 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/src/common.c 2009-07-28 12:19:47.000000000 +0200 @@ -117,13 +117,14 @@ /* Is the parent process allowed to call us? */ @@ -356,8 +325,30 @@ } ---- mailman-2.1.7/src/mail-wrapper.c.multimail 2005-08-27 03:40:17.000000000 +0200 -+++ mailman-2.1.7/src/mail-wrapper.c 2006-01-10 10:53:14.000000000 +0100 +diff -ruN mailman-2.1.12-a/src/common.h mailman-2.1.12-b/src/common.h +--- mailman-2.1.12-a/src/common.h 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/src/common.h 2009-07-28 12:19:47.000000000 +0200 +@@ -33,7 +33,7 @@ + #define GID_T GETGROUPS_T + + extern void fatal(const char*, int, char*, ...); +-extern void check_caller(const char*, const char*); ++extern void check_caller(const char* ident, const char**, size_t); + extern int run_script(const char*, int, char**, char**); + + /* Global variable used as a flag. */ +@@ -51,7 +51,7 @@ + #define MAIL_USAGE_ERROR 5 + #define MAIL_ILLEGAL_COMMAND 6 + #define ADDALIAS_USAGE_ERROR 7 +-#define GROUP_NAME_NOT_FOUND 8 ++#define GROUP_ID_NOT_FOUND 8 + + + /* +diff -ruN mailman-2.1.12-a/src/mail-wrapper.c mailman-2.1.12-b/src/mail-wrapper.c +--- mailman-2.1.12-a/src/mail-wrapper.c 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/src/mail-wrapper.c 2009-07-28 12:19:47.000000000 +0200 @@ -23,9 +23,9 @@ /* Group name that your mail programs run as. See your mail server's * documentation for details. @@ -379,3 +370,18 @@ /* If we got here, everything must be OK */ status = run_script(argv[1], argc, argv, env); +diff -ruN mailman-2.1.12-a/src/Makefile.in mailman-2.1.12-b/src/Makefile.in +--- mailman-2.1.12-a/src/Makefile.in 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/src/Makefile.in 2009-07-28 12:19:47.000000000 +0200 +@@ -49,9 +49,9 @@ + + SHELL= /bin/sh + +-MAIL_FLAGS= -DMAIL_GROUP="\"$(MAIL_GROUP)\"" ++MAIL_FLAGS= -DMAIL_GROUP='$(MAIL_GROUP)' + +-CGI_FLAGS= -DCGI_GROUP="\"$(CGI_GROUP)\"" ++CGI_FLAGS= -DCGI_GROUP='$(CGI_GROUP)' + + HELPFUL= -DHELPFUL + mailman-2.1.12-privurl.patch: CookHeaders.py | 2 -- 1 file changed, 2 deletions(-) Index: mailman-2.1.12-privurl.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.12-privurl.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.12-privurl.patch 31 Mar 2009 09:19:58 -0000 1.1 +++ mailman-2.1.12-privurl.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up mailman-2.1.12/Mailman/Handlers/CookHeaders.py.privurl mailman-2.1.12/Mailman/Handlers/CookHeaders.py ---- mailman-2.1.12/Mailman/Handlers/CookHeaders.py.privurl 2009-03-30 15:03:58.000000000 +0200 -+++ mailman-2.1.12/Mailman/Handlers/CookHeaders.py 2009-03-31 10:48:30.000000000 +0200 -@@ -215,8 +215,6 @@ def process(mlist, msg, msgdata): +diff -ruN mailman-2.1.12-a/Mailman/Handlers/CookHeaders.py mailman-2.1.12-b/Mailman/Handlers/CookHeaders.py +--- mailman-2.1.12-a/Mailman/Handlers/CookHeaders.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Handlers/CookHeaders.py 2009-07-28 12:19:54.000000000 +0200 +@@ -215,8 +215,6 @@ # Add this header if we're archiving if mlist.archive: archiveurl = mlist.GetBaseArchiveURL() mailman-2.1.9-ctypo-new.patch: Mailman/MTA/Postfix.py | 4 ++-- bin/change_pw | 4 ++-- bin/check_perms | 2 +- bin/newlist | 2 +- bin/reset_pw.py | 6 +++--- bin/update | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) Index: mailman-2.1.9-ctypo-new.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.9-ctypo-new.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mailman-2.1.9-ctypo-new.patch 13 May 2008 08:32:26 -0000 1.2 +++ mailman-2.1.9-ctypo-new.patch 28 Jul 2009 10:46:48 -0000 1.3 @@ -1,6 +1,7 @@ ---- mailman-2.1.9/bin/change_pw.ctypo 2007-08-27 13:27:11.000000000 +0200 -+++ mailman-2.1.9/bin/change_pw 2007-08-27 13:27:11.000000000 +0200 -@@ -187,8 +187,8 @@ +diff -ruN mailman-2.1.12-a/bin/change_pw mailman-2.1.12-b/bin/change_pw +--- mailman-2.1.12-a/bin/change_pw 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/change_pw 2009-07-28 12:19:50.000000000 +0200 +@@ -186,8 +186,8 @@ adminurl = mlist.GetScriptURL('admin', absolute=1) msg = Message.UserNotification( mlist.owner[:], Utils.get_site_email(), @@ -11,8 +12,33 @@ The site administrator at %(hostname)s has changed the password for your mailing list %(listname)s. It is now ---- mailman-2.1.9/bin/reset_pw.py.ctypo 2007-08-27 13:27:38.000000000 +0200 -+++ mailman-2.1.9/bin/reset_pw.py 2007-08-27 13:28:02.000000000 +0200 +diff -ruN mailman-2.1.12-a/bin/check_perms mailman-2.1.12-b/bin/check_perms +--- mailman-2.1.12-a/bin/check_perms 2009-07-28 12:19:49.000000000 +0200 ++++ mailman-2.1.12-b/bin/check_perms 2009-07-28 12:19:50.000000000 +0200 +@@ -221,7 +221,7 @@ + # In addition, on a multiuser system you may want to hide the private + # archives so other users can't read them. + if mode & S_IXOTH: +- print _("""\ ++ print C_("""\ + Warning: Private archive directory is other-executable (o+x). + This could allow other users on your system to read private archives. + If you're on a shared multiuser system, you should consult the +diff -ruN mailman-2.1.12-a/bin/newlist mailman-2.1.12-b/bin/newlist +--- mailman-2.1.12-a/bin/newlist 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/newlist 2009-07-28 12:19:50.000000000 +0200 +@@ -246,7 +246,7 @@ + try: + msg = Message.UserNotification( + owner_mail, siteowner, +- _('Your new mailing list: %(listname)s'), ++ C_('Your new mailing list: %(listname)s'), + text, mlist.preferred_language) + msg.send(mlist) + finally: +diff -ruN mailman-2.1.12-a/bin/reset_pw.py mailman-2.1.12-b/bin/reset_pw.py +--- mailman-2.1.12-a/bin/reset_pw.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/reset_pw.py 2009-07-28 12:19:50.000000000 +0200 @@ -38,7 +38,7 @@ import paths @@ -38,9 +64,10 @@ mlist.Save() ---- mailman-2.1.9/bin/update.ctypo 2007-08-27 13:27:11.000000000 +0200 -+++ mailman-2.1.9/bin/update 2007-08-27 13:27:11.000000000 +0200 -@@ -445,7 +445,7 @@ +diff -ruN mailman-2.1.12-a/bin/update mailman-2.1.12-b/bin/update +--- mailman-2.1.12-a/bin/update 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/bin/update 2009-07-28 12:19:50.000000000 +0200 +@@ -455,7 +455,7 @@ except EnvironmentError, e: if e.errno <> errno.ENOTDIR: raise @@ -49,7 +76,7 @@ -@@ -528,7 +528,7 @@ +@@ -538,7 +538,7 @@ msg = data = None except EOFError: # For some reason the pckfile was empty. Just delete it. @@ -58,31 +85,10 @@ os.unlink(pckfile) finally: if msgfp: ---- mailman-2.1.9/bin/newlist.ctypo 2007-08-27 13:27:11.000000000 +0200 -+++ mailman-2.1.9/bin/newlist 2007-08-27 13:27:11.000000000 +0200 -@@ -243,7 +243,7 @@ - try: - msg = Message.UserNotification( - owner_mail, siteowner, -- _('Your new mailing list: %(listname)s'), -+ C_('Your new mailing list: %(listname)s'), - text, mlist.preferred_language) - msg.send(mlist) - finally: ---- mailman-2.1.9/bin/check_perms.ctypo 2007-08-27 13:27:11.000000000 +0200 -+++ mailman-2.1.9/bin/check_perms 2007-08-27 13:27:11.000000000 +0200 -@@ -213,7 +213,7 @@ - # In addition, on a multiuser system you may want to hide the private - # archives so other users can't read them. - if mode & S_IXOTH: -- print _("""\ -+ print C_("""\ - Warning: Private archive directory is other-executable (o+x). - This could allow other users on your system to read private archives. - If you're on a shared multiuser system, you should consult the ---- mailman-2.1.9/Mailman/MTA/Postfix.py.ctypo 2007-08-27 13:27:11.000000000 +0200 -+++ mailman-2.1.9/Mailman/MTA/Postfix.py 2007-08-27 13:27:11.000000000 +0200 -@@ -351,9 +351,9 @@ +diff -ruN mailman-2.1.12-a/Mailman/MTA/Postfix.py mailman-2.1.12-b/Mailman/MTA/Postfix.py +--- mailman-2.1.12-a/Mailman/MTA/Postfix.py 2009-07-28 12:19:49.000000000 +0200 ++++ mailman-2.1.12-b/Mailman/MTA/Postfix.py 2009-07-28 12:19:50.000000000 +0200 +@@ -356,9 +356,9 @@ if stat and (stat[ST_MODE] & targetmode) <> targetmode: state.ERRORS += 1 octmode = oct(stat[ST_MODE]) mailman-2.1.9-header-folding.patch: Generator.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Mailbox.py | 4 ++-- Message.py | 13 +++++++++++++ 3 files changed, 70 insertions(+), 2 deletions(-) Index: mailman-2.1.9-header-folding.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.9-header-folding.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.9-header-folding.patch 24 Oct 2007 14:10:31 -0000 1.1 +++ mailman-2.1.9-header-folding.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,11 +1,6 @@ -Patch: 77_header_folding_in_attachments.patch -Author: Lionel Elie Mamane -Don't fold headers into message/rfc822 attachments. -This avoids breaking signatures. -Index: Mailman/Generator.py -=================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ Mailman/Generator.py 2006-08-15 15:14:57.000000000 +0800 +diff -ruN mailman-2.1.12-a/Mailman/Generator.py mailman-2.1.12-b/Mailman/Generator.py +--- mailman-2.1.12-a/Mailman/Generator.py 1970-01-01 01:00:00.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Generator.py 2009-07-28 12:19:51.000000000 +0200 @@ -0,0 +1,55 @@ +# Copyright (C) 1998-2003 by the Free Software Foundation, Inc. +# 2005 Lionel Elie Mamane @@ -62,10 +57,9 @@ Index: Mailman/Generator.py + """Clone this generator with maxheaderlen set for children""" + return self.__class__(fp, self._mangle_from_, self.__children_maxheaderlen, self.__children_maxheaderlen) + -Index: Mailman/Mailbox.py -=================================================================== ---- Mailman/Mailbox.py.orig 2006-08-15 15:12:10.000000000 +0800 -+++ Mailman/Mailbox.py 2006-08-15 15:14:57.000000000 +0800 +diff -ruN mailman-2.1.12-a/Mailman/Mailbox.py mailman-2.1.12-b/Mailman/Mailbox.py +--- mailman-2.1.12-a/Mailman/Mailbox.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Mailbox.py 2009-07-28 12:19:51.000000000 +0200 @@ -22,10 +22,10 @@ import email @@ -87,10 +81,9 @@ Index: Mailman/Mailbox.py g.flatten(msg, unixfrom=True) # Add one more trailing newline for separation with the next message # to be appended to the mbox. -Index: Mailman/Message.py -=================================================================== ---- Mailman/Message.py.orig 2006-08-15 15:12:10.000000000 +0800 -+++ Mailman/Message.py 2006-08-15 15:14:57.000000000 +0800 +diff -ruN mailman-2.1.12-a/Mailman/Message.py mailman-2.1.12-b/Mailman/Message.py +--- mailman-2.1.12-a/Mailman/Message.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Message.py 2009-07-28 12:19:51.000000000 +0200 @@ -22,6 +22,8 @@ """ @@ -108,7 +101,7 @@ Index: Mailman/Message.py COMMASPACE = ', ' -@@ -199,6 +202,16 @@ +@@ -207,6 +210,16 @@ except (UnicodeError, LookupError, ValueError): return failobj mailman-2.1.9-selinux.patch: mailman.in | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) Index: mailman-2.1.9-selinux.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.9-selinux.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.9-selinux.patch 24 Oct 2007 14:10:31 -0000 1.1 +++ mailman-2.1.9-selinux.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,5 +1,6 @@ ---- mailman-2.1.9/misc/mailman.in.selinux 2007-10-24 15:50:58.000000000 +0200 -+++ mailman-2.1.9/misc/mailman.in 2007-10-24 15:52:25.000000000 +0200 +diff -ruN mailman-2.1.12-a/misc/mailman.in mailman-2.1.12-b/misc/mailman.in +--- mailman-2.1.12-a/misc/mailman.in 2009-07-28 12:19:49.000000000 +0200 ++++ mailman-2.1.12-b/misc/mailman.in 2009-07-28 12:19:53.000000000 +0200 @@ -32,7 +32,6 @@ # config: @prefix@/Mailman/mm_cfg.py # pidfile: @PID_DIR@/master-qrunner.pid mailman-2.1.9-unicode.patch: pipermail.py | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) Index: mailman-2.1.9-unicode.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-2.1.9-unicode.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-2.1.9-unicode.patch 15 Jan 2008 07:30:08 -0000 1.1 +++ mailman-2.1.9-unicode.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up mailman-2.1.9/Mailman/Archiver/pipermail.py.unicode mailman-2.1.9/Mailman/Archiver/pipermail.py ---- mailman-2.1.9/Mailman/Archiver/pipermail.py.unicode 2008-01-14 11:50:24.000000000 +0100 -+++ mailman-2.1.9/Mailman/Archiver/pipermail.py 2008-01-14 11:51:48.000000000 +0100 -@@ -45,24 +45,27 @@ smallNameParts = ['van', 'von', 'der', ' +diff -ruN mailman-2.1.12-a/Mailman/Archiver/pipermail.py mailman-2.1.12-b/Mailman/Archiver/pipermail.py +--- mailman-2.1.12-a/Mailman/Archiver/pipermail.py 2009-02-23 22:23:35.000000000 +0100 ++++ mailman-2.1.12-b/Mailman/Archiver/pipermail.py 2009-07-28 12:19:53.000000000 +0200 +@@ -45,24 +45,27 @@ def fixAuthor(author): "Canonicalize a name into Last, First format" mailman-python-compile.patch: Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: mailman-python-compile.patch =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-python-compile.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-python-compile.patch 9 Nov 2004 22:39:08 -0000 1.1 +++ mailman-python-compile.patch 28 Jul 2009 10:46:48 -0000 1.2 @@ -1,49 +1,7 @@ -This patch is to fix bug #137863 - -https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=137863 - -The problem arose when the SELinux security policy detected mailman -attempting to open files under /usr/src/build (i.e. the buildroot -where the RPM is created). It was a bit of a mystery what in mailmain -was causing access to a hardcoded absolute path that only exists on -the machine mailman was built on and doesn't exist on the machine it -was installed on. It was finally determined the path had been embedded -in the .pyc files when they were compiled during the build -process. These path names are used as debug output when exceptions -occur in the .pyc file (e.g. file, line number in stack traces). The -SELinux security violations occurred only after a python exception -occurred in mailman. The solution to supply the "ddir" parameter -(debug directory) in the compile_dir function call. Given that mailman -expects to build on the machine and in its install directory it was -never necessary to suppy a "ddir" parameter in addition to "dir" -because they were the same. But when building for an alternate -installation it is necessary to supply both parameters because they -are different. Note in the default case of building on the target both -$(DESTDIR)$(prefix)" and "$(prefix)" will evaluate to the same value -and the original behavior will be retained. - -The compile_dir command used to recurse from the $(prefix)/Mailman -root to find .py files, but this missed .py files also located here: - -$(prefix)/bin -$(prefix)/cron -$(prefix)/pythonlib -$(prefix)/scripts -$(prefix)/tests - -In particular it missed $(prefix)/pythonlib. When $(prefix)/pythonlib -was added a new problem was observed, that path contained pre-compiled -.pyc files that are unpacked from a codecs tar file and since the .pyc -files already existed in the tar file the compile_dir command skipped -compiling them. This resulting in leaving the wrong debug path in the -.pyc file (the ddir arg to compile_dir). Therefore we added "force" to -the compile_dir command and started the directory recursion one level -higher. - -diff -u -r mailman-2.1.5.orig/Makefile.in mailman-2.1.5.pyc/Makefile.in ---- mailman-2.1.5.orig/Makefile.in 2003-03-31 14:26:57.000000000 -0500 -+++ mailman-2.1.5.pyc/Makefile.in 2004-11-09 12:49:42.000000000 -0500 -@@ -124,7 +124,7 @@ +diff -ruN mailman-2.1.12-a/Makefile.in mailman-2.1.12-b/Makefile.in +--- mailman-2.1.12-a/Makefile.in 2009-07-28 12:19:49.000000000 +0200 ++++ mailman-2.1.12-b/Makefile.in 2009-07-28 12:19:49.000000000 +0200 +@@ -146,7 +146,7 @@ do \ (cd $$d; $(MAKE) DESTDIR=$(DESTDIR) install); \ done Index: mailman.spec =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- mailman.spec 25 Jul 2009 11:40:21 -0000 1.85 +++ mailman.spec 28 Jul 2009 10:46:48 -0000 1.86 @@ -1,7 +1,7 @@ Summary: Mailing list manager with built in Web access Name: mailman Version: 2.1.12 -Release: 8%{?dist} +Release: 9%{?dist} Epoch: 3 Group: Applications/Internet Source0: ftp://ftp.gnu.org/pub/gnu/mailman/mailman-%{version}.tgz @@ -96,8 +96,8 @@ additional installation steps, these are %{docdir}/INSTALL.REDHAT %prep -#FIXME -- This is a temporary solution -%define _default_patch_fuzz 3 +#not needed anymore +#%%define _default_patch_fuzz 3 %setup -q %patch1 -p1 -b .multimail @@ -110,7 +110,7 @@ additional installation steps, these are #%%patch8 -p1 -b .lctype %patch9 -p1 -b .ctypo %patch10 -p1 -b .ctypefix -%patch11 -p0 -b .header +%patch11 -p1 -b .header %patch12 -p1 -b .selinux %patch13 -p1 -b .unicode %patch14 -p1 -b .fhsinit @@ -427,9 +427,7 @@ exit 0 %{mmdir}/Mailman/Message.py %{mmdir}/Mailman/Message.pyc %{mmdir}/Mailman/Message.pyo -%{mmdir}/Mailman/mm_cfg.pyc %{mmdir}/Mailman/mm_cfg.py.dist -%{mmdir}/Mailman/mm_cfg.pyo %{mmdir}/Mailman/MTA %{mmdir}/Mailman/OldStyleMemberships.py %{mmdir}/Mailman/OldStyleMemberships.pyc @@ -469,6 +467,8 @@ exit 0 %dir %attr(0755,root,root) %{contentdir}/icons %attr(0644,root,root) %{contentdir}/icons/* %attr(0644, root, %{mmgroup}) %config(noreplace) %verify(not md5 size mtime) %{mmdir}/Mailman/mm_cfg.py +%verify(not md5 size mtime) %{mmdir}/Mailman/mm_cfg.pyc +%verify(not md5 size mtime) %{mmdir}/Mailman/mm_cfg.pyo %config(noreplace) %{httpdconfdir}/%{httpdconffile} /etc/logrotate.d/%{name} /etc/smrsh/%{mail_wrapper} @@ -485,6 +485,10 @@ exit 0 %attr(0755,root,root) %{_bindir}/mailman-update-cfg %changelog +* Tue Jul 28 2009 Daniel Novotny 3:2.1.12-9 +- regenerated patches so patch fuzz 3 is not needed (bz#513207) +- mm_cfg.pyc and .pyo are now %%verify(not md5 size mtime) (bz#512794) + * Sat Jul 25 2009 Fedora Release Engineering - 3:2.1.12-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jakub at fedoraproject.org Tue Jul 28 10:47:08 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 28 Jul 2009 10:47:08 +0000 (UTC) Subject: rpms/valgrind/devel valgrind-3.4.1-futex.patch, NONE, 1.1 valgrind.spec, 1.65, 1.66 Message-ID: <20090728104708.ACD6D11C00D4@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv451 Modified Files: valgrind.spec Added Files: valgrind-3.4.1-futex.patch Log Message: 3.4.1-7 valgrind-3.4.1-futex.patch: coregrind/m_syswrap/syswrap-linux.c | 36 ++++++++++++++++++++++++++---------- include/vki/vki-linux.h | 11 ++++++++++- 2 files changed, 36 insertions(+), 11 deletions(-) --- NEW FILE valgrind-3.4.1-futex.patch --- --- valgrind/include/vki/vki-linux.h.jj 2009-07-28 11:14:49.000000000 +0200 +++ valgrind/include/vki/vki-linux.h 2009-07-28 11:37:12.000000000 +0200 @@ -1150,7 +1150,7 @@ struct vki_seminfo { #define VKI_MREMAP_FIXED 2 //---------------------------------------------------------------------- -// From linux-2.6.10-rc3-mm1/include/linux/futex.h +// From linux-2.6.31-rc4/include/linux/futex.h //---------------------------------------------------------------------- #define VKI_FUTEX_WAIT (0) @@ -1158,7 +1158,16 @@ struct vki_seminfo { #define VKI_FUTEX_FD (2) #define VKI_FUTEX_REQUEUE (3) #define VKI_FUTEX_CMP_REQUEUE (4) +#define VKI_FUTEX_WAKE_OP (5) +#define VKI_FUTEX_LOCK_PI (6) +#define VKI_FUTEX_UNLOCK_PI (7) +#define VKI_FUTEX_TRYLOCK_PI (8) +#define VKI_FUTEX_WAIT_BITSET (9) +#define VKI_FUTEX_WAKE_BITSET (10) +#define VKI_FUTEX_WAIT_REQUEUE_PI (11) +#define VKI_FUTEX_CMP_REQUEUE_PI (12) #define VKI_FUTEX_PRIVATE_FLAG (128) +#define VKI_FUTEX_CLOCK_REALTIME (256) struct vki_robust_list { struct vki_robust_list __user *next; --- valgrind/coregrind/m_syswrap/syswrap-linux.c.jj 2009-07-28 11:14:50.000000000 +0200 +++ valgrind/coregrind/m_syswrap/syswrap-linux.c 2009-07-28 12:00:09.000000000 +0200 @@ -865,31 +865,43 @@ PRE(sys_futex) ARG6 - int val3 CMP_REQUEUE */ PRINT("sys_futex ( %#lx, %ld, %ld, %#lx, %#lx )", ARG1,ARG2,ARG3,ARG4,ARG5); - switch(ARG2) { + switch(ARG2 & ~(VKI_FUTEX_PRIVATE_FLAG|VKI_FUTEX_CLOCK_REALTIME)) { case VKI_FUTEX_CMP_REQUEUE: - case VKI_FUTEX_CMP_REQUEUE | VKI_FUTEX_PRIVATE_FLAG: + case VKI_FUTEX_WAKE_OP: + case VKI_FUTEX_CMP_REQUEUE_PI: PRE_REG_READ6(long, "futex", vki_u32 *, futex, int, op, int, val, struct timespec *, utime, vki_u32 *, uaddr2, int, val3); break; case VKI_FUTEX_REQUEUE: - case VKI_FUTEX_REQUEUE | VKI_FUTEX_PRIVATE_FLAG: + case VKI_FUTEX_WAIT_REQUEUE_PI: PRE_REG_READ5(long, "futex", vki_u32 *, futex, int, op, int, val, struct timespec *, utime, vki_u32 *, uaddr2); break; + case VKI_FUTEX_WAIT_BITSET: + PRE_REG_READ6(long, "futex", + vki_u32 *, futex, int, op, int, val, + struct timespec *, utime, int, dummy, int, val3); + break; + case VKI_FUTEX_WAKE_BITSET: + PRE_REG_READ6(long, "futex", + vki_u32 *, futex, int, op, int, val, + int, dummy, int, dummy2, int, val3); + break; case VKI_FUTEX_WAIT: - case VKI_FUTEX_WAIT | VKI_FUTEX_PRIVATE_FLAG: + case VKI_FUTEX_LOCK_PI: PRE_REG_READ4(long, "futex", vki_u32 *, futex, int, op, int, val, struct timespec *, utime); break; case VKI_FUTEX_WAKE: - case VKI_FUTEX_WAKE | VKI_FUTEX_PRIVATE_FLAG: case VKI_FUTEX_FD: + case VKI_FUTEX_TRYLOCK_PI: PRE_REG_READ3(long, "futex", vki_u32 *, futex, int, op, int, val); break; + case VKI_FUTEX_UNLOCK_PI: default: PRE_REG_READ2(long, "futex", vki_u32 *, futex, int, op); break; @@ -899,23 +911,27 @@ PRE(sys_futex) *flags |= SfMayBlock; - switch(ARG2) { + switch(ARG2 & ~(VKI_FUTEX_PRIVATE_FLAG|VKI_FUTEX_CLOCK_REALTIME)) { case VKI_FUTEX_WAIT: - case VKI_FUTEX_WAIT | VKI_FUTEX_PRIVATE_FLAG: + case VKI_FUTEX_LOCK_PI: + case VKI_FUTEX_WAIT_BITSET: + case VKI_FUTEX_WAIT_REQUEUE_PI: if (ARG4 != 0) PRE_MEM_READ( "futex(timeout)", ARG4, sizeof(struct vki_timespec) ); break; case VKI_FUTEX_REQUEUE: - case VKI_FUTEX_REQUEUE | VKI_FUTEX_PRIVATE_FLAG: case VKI_FUTEX_CMP_REQUEUE: - case VKI_FUTEX_CMP_REQUEUE | VKI_FUTEX_PRIVATE_FLAG: + case VKI_FUTEX_CMP_REQUEUE_PI: + case VKI_FUTEX_WAKE_OP: PRE_MEM_READ( "futex(futex2)", ARG5, sizeof(Int) ); break; case VKI_FUTEX_WAKE: - case VKI_FUTEX_WAKE | VKI_FUTEX_PRIVATE_FLAG: case VKI_FUTEX_FD: + case VKI_FUTEX_WAKE_BITSET: + case VKI_FUTEX_TRYLOCK_PI: + case VKI_FUTEX_UNLOCK_PI: /* no additional pointers */ break; Index: valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/valgrind/devel/valgrind.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- valgrind.spec 27 Jul 2009 06:43:06 -0000 1.65 +++ valgrind.spec 28 Jul 2009 10:47:08 -0000 1.66 @@ -1,7 +1,7 @@ Summary: Tool for finding memory management bugs in programs Name: valgrind Version: 3.4.1 -Release: 6 +Release: 7 Epoch: 1 Source0: http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2 Patch1: valgrind-3.4.1-cachegrind-improvements.patch @@ -11,6 +11,7 @@ Patch4: valgrind-3.4.1-glibc-2.10.1.patc Patch5: valgrind-3.4.1-dwarf3.patch Patch6: valgrind-3.4.1-dwarf-cfa-remember-state1.patch Patch7: valgrind-3.4.1-dwarf-cfa-remember-state2.patch +Patch8: valgrind-3.4.1-futex.patch License: GPLv2 URL: http://www.valgrind.org/ Group: Development/Debuggers @@ -71,6 +72,7 @@ or valgrind plugins. %patch5 -p1 %patch6 -p1 %patch7 -p1 +%patch8 -p1 %build %ifarch x86_64 ppc64 @@ -161,7 +163,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 1:3.4.1-6 +* Tue Jul 28 2009 Jakub Jelinek 3.4.1-7 +- handle futex ops newly added during last 4 years (#512121) + +* Sun Jul 26 2009 Fedora Release Engineering 3.4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Mon Jul 13 2009 Jakub Jelinek 3.4.1-5 From npajkovs at fedoraproject.org Tue Jul 28 10:55:00 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Tue, 28 Jul 2009 10:55:00 +0000 (UTC) Subject: rpms/tcl/devel tcl.spec,1.91,1.92 Message-ID: <20090728105500.8D1E911C00D4@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/tcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3860 Modified Files: tcl.spec Log Message: 513997 fixed. SELinux policy problem with libtcl8.5.so Index: tcl.spec =================================================================== RCS file: /cvs/extras/rpms/tcl/devel/tcl.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- tcl.spec 27 Jul 2009 05:33:54 -0000 1.91 +++ tcl.spec 28 Jul 2009 10:55:00 -0000 1.92 @@ -5,7 +5,7 @@ Summary: Tool Command Language, pronounced tickle Name: tcl Version: %{vers} -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: TCL Group: Development/Languages @@ -111,7 +111,10 @@ rm -rf $RPM_BUILD_ROOT/%{_datadir}/%{nam %clean rm -rf $RPM_BUILD_ROOT -%post -p /sbin/ldconfig +%post +#SELinux policy reloc problem with libtcl8.5.so +chcon -t textrel_shlib_t $RPM_BUILD_ROOT%{_libdir}/lib%{name}%{majorver}.so +/sbin/ldconfig %postun -p /sbin/ldconfig @@ -137,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}8.5/%{name}Config.sh %changelog +* Tue Jul 28 2009 Nikola Pajkovsky - 1:8.5.7-3 +- 513997 fixed. SELinux policy problem with libtcl8.5.so + * Sun Jul 26 2009 Fedora Release Engineering - 1:8.5.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jpopelka at fedoraproject.org Tue Jul 28 10:56:00 2009 From: jpopelka at fedoraproject.org (=?utf-8?b?SmnFmcOtIFBvcGVsa2E=?=) Date: Tue, 28 Jul 2009 10:56:00 +0000 (UTC) Subject: rpms/python-iwlib/devel import.log, NONE, 1.1 python-iwlib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728105600.E791D11C00D4@cvs1.fedora.phx.redhat.com> Author: jpopelka Update of /cvs/pkgs/rpms/python-iwlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4391/devel Modified Files: .cvsignore sources Added Files: import.log python-iwlib.spec Log Message: Initial import --- NEW FILE import.log --- python-iwlib-0_1-1_fc11:HEAD:python-iwlib-0.1-1.src.rpm:1248778501 --- NEW FILE python-iwlib.spec --- %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")} Summary: Wireless settings python bindings Name: python-iwlib Version: 0.1 Release: 1%{?dist} URL: http://git.fedorahosted.org/git/python-iwlib.git Source: http://fedorahosted.org/released/python-iwlib/%{name}-%{version}.tar.bz2 License: GPLv2 Group: System Environment/Libraries ExcludeArch: s390 s390x BuildRequires: python-devel BuildRequires: wireless-tools-devel Requires: wireless-tools >= 28-0.pre8.5 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Python bindings for the iwlib kernel interface, that provides functions to examine the wireless network devices installed on the system. %prep %setup -q %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} mkdir -p %{buildroot}%{_sbindir} chmod 755 %{buildroot}%{python_sitearch}/iwlib.so %clean rm -rf %{buildroot} %files %defattr(-,root,root) %doc COPYING %{python_sitearch}/iwlib.so %if "%{python_ver}" >= "2.5" %{python_sitearch}/*.egg-info %endif %changelog * Mon Jul 27 2009 Jiri Popelka - 0.1-1 - Get iwlib code from rhpl 0.222-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-iwlib/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:23:29 -0000 1.1 +++ .cvsignore 28 Jul 2009 10:56:00 -0000 1.2 @@ -0,0 +1 @@ +python-iwlib-0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-iwlib/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:23:30 -0000 1.1 +++ sources 28 Jul 2009 10:56:00 -0000 1.2 @@ -0,0 +1 @@ +28c1e299dcbb6f47016bc962e8090d86 python-iwlib-0.1.tar.bz2 From rhughes at fedoraproject.org Tue Jul 28 10:57:40 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 28 Jul 2009 10:57:40 +0000 (UTC) Subject: rpms/hal/devel hal.spec, 1.199, 1.200 blkid.patch, 1.1, NONE hal-0.5.10-set-property-direct.patch, 1.1, NONE hal-add-keys-to-buttons.patch, 1.1, NONE hal-tablet-evdev.patch, 1.1, NONE Message-ID: <20090728105740.9232911C00D4@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5169 Modified Files: hal.spec Removed Files: blkid.patch hal-0.5.10-set-property-direct.patch hal-add-keys-to-buttons.patch hal-tablet-evdev.patch Log Message: * Tue Jul 28 2009 Richard Hughes - 0.5.13-2 - Drop upstreamed patches to fix build Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.199 retrieving revision 1.200 diff -u -p -r1.199 -r1.200 --- hal.spec 27 Jul 2009 16:45:47 -0000 1.199 +++ hal.spec 28 Jul 2009 10:57:40 -0000 1.200 @@ -26,7 +26,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.13 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -35,20 +35,14 @@ Source0: http://hal.freedesktop.org/rele # OLPC specific, not upstream as is a hack until OFW lands Source1: 05-olpc-detect.fdi -Patch1: hal-0.5.10-set-property-direct.patch Patch2: hal-change-priority.patch -Patch3: hal-add-keys-to-buttons.patch # https://bugzilla.redhat.com/show_bug.cgi?id=488177 Patch4: hal-remove-dell-killswitch.patch -Patch7: hal-tablet-evdev.patch - # http://lists.freedesktop.org/archives/hal/2009-March/013125.html Patch9: hal-KVM-evdev.patch -# from upstream -Patch10: blkid.patch # http://bugs.freedesktop.org/show_bug.cgi?id=22442 Patch11: hal-HDAPS-blacklist.patch @@ -139,13 +133,9 @@ API docs for HAL. %prep %setup -q -n %{name}-%{version} -%patch1 -p1 -b .direct %patch2 -p1 -b .priority -%patch3 -p1 -b .keys %patch4 -p1 -b .dell-killswitch -%patch7 -p1 -b .tablet-evdev %patch9 -p1 -b .kvm-evdev -%patch10 -p1 -b .blkid %patch11 -p1 -b .hdaps-blacklist %patch100 -p1 -b .drop-polkit @@ -287,9 +277,11 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Tue Jul 28 2009 Richard Hughes - 0.5.13-2 +- Drop upstreamed patches to fix build + * Mon Jul 27 2009 Richard Hughes - 0.5.13-1 - Use the release tarball, we did have a release against all the odds. -- Drop upstreamed patches * Sat Jul 25 2009 Peter Hutterer - 0.5.12-28.20090226git.4 - hal-HDAPS-blacklist.patch: blacklist Thinkpad HDAPS accelerometer device, --- blkid.patch DELETED --- --- hal-0.5.10-set-property-direct.patch DELETED --- --- hal-add-keys-to-buttons.patch DELETED --- --- hal-tablet-evdev.patch DELETED --- From pkgdb at fedoraproject.org Tue Jul 28 10:57:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:46 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105746.EF9DF10F897@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:47 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105747.4B2C510F89E@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:50 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105750.E696110F8B9@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:50 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105750.EF67610F8BC@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:52 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105752.CFEF610F8C1@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 1) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:55 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105755.3C89D10F8C5@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 1) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:57 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105757.84DE010F8C9@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 2) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:57:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:57:58 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105758.289FF10F8CD@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 2) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:02 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105802.9F49710F8D0@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:03 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105803.4BA7010F8D4@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:05 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105805.DFF6D10F8DA@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:06 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105806.68BFD10F89C@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:08 +0000 Subject: [pkgdb] thunderbird: hadess has given up watchcommits Message-ID: <20090728105808.61F6910F8DF@bastion2.fedora.phx.redhat.com> hadess has given up the watchcommits acl on thunderbird (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From pkgdb at fedoraproject.org Tue Jul 28 10:58:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 10:58:09 +0000 Subject: [pkgdb] thunderbird: hadess has given up commit Message-ID: <20090728105809.4C57710F8E4@bastion2.fedora.phx.redhat.com> hadess has given up the commit acl on thunderbird (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/thunderbird From hadess at fedoraproject.org Tue Jul 28 11:07:17 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 28 Jul 2009 11:07:17 +0000 (UTC) Subject: rpms/gstreamer/F-11 .cvsignore, 1.39, 1.40 gstreamer.spec, 1.101, 1.102 sources, 1.40, 1.41 Message-ID: <20090728110717.30B3011C00D4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9281 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 - Update to 0.10.23.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 21 Jul 2009 15:12:00 -0000 1.39 +++ .cvsignore 28 Jul 2009 11:07:16 -0000 1.40 @@ -1 +1 @@ -gstreamer-0.10.23.3.tar.bz2 +gstreamer-0.10.23.4.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/gstreamer.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- gstreamer.spec 21 Jul 2009 15:12:00 -0000 1.101 +++ gstreamer.spec 28 Jul 2009 11:07:16 -0000 1.102 @@ -5,7 +5,7 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23.3 +Version: 0.10.23.4 Release: 1%{?dist} Summary: GStreamer streaming media framework runtime @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 +- Update to 0.10.23.4 + * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Update to 0.10.23.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 21 Jul 2009 15:12:00 -0000 1.40 +++ sources 28 Jul 2009 11:07:17 -0000 1.41 @@ -1 +1 @@ -8ee3a5474e109b749138703473deeeab gstreamer-0.10.23.3.tar.bz2 +539aa9e2c4f9bb906bdb222c8a5c7d1a gstreamer-0.10.23.4.tar.bz2 From rhughes at fedoraproject.org Tue Jul 28 11:08:08 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 28 Jul 2009 11:08:08 +0000 (UTC) Subject: rpms/hal/devel hal.spec,1.200,1.201 Message-ID: <20090728110808.5EAA011C00D4@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9773 Modified Files: hal.spec Log Message: * Tue Jul 28 2009 Richard Hughes - 0.5.13-3 - Fix file lists to fix build Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.200 retrieving revision 1.201 diff -u -p -r1.200 -r1.201 --- hal.spec 28 Jul 2009 10:57:40 -0000 1.200 +++ hal.spec 28 Jul 2009 11:08:08 -0000 1.201 @@ -26,7 +26,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.13 -Release: 2%{?dist} +Release: 3%{?dist} #Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -242,8 +242,8 @@ fi %{_datadir}/hal/fdi/* %dir %{_libdir}/hal -%dir %{_libdir}/hal/scripts -%{_libdir}/hal/scripts/* +%dir %{_libexecdir}/scripts +%{_libexecdir}/scripts/* %{_mandir}/man1/* %{_mandir}/man8/* @@ -277,6 +277,9 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Tue Jul 28 2009 Richard Hughes - 0.5.13-3 +- Fix file lists to fix build + * Tue Jul 28 2009 Richard Hughes - 0.5.13-2 - Drop upstreamed patches to fix build From lkundrak at fedoraproject.org Tue Jul 28 11:17:31 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Tue, 28 Jul 2009 11:17:31 +0000 (UTC) Subject: rpms/system-config-keyboard/devel system-config-keyboard.spec, 1.50, 1.51 Message-ID: <20090728111731.6BE4811C00D4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/system-config-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13796 Modified Files: system-config-keyboard.spec Log Message: * Mon Jul 27 2009 Lubomir Rintel 1.3.0-2 - Disable debuginfo subpackage Index: system-config-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-keyboard/devel/system-config-keyboard.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- system-config-keyboard.spec 27 Jul 2009 01:48:36 -0000 1.50 +++ system-config-keyboard.spec 28 Jul 2009 11:17:31 -0000 1.51 @@ -1,8 +1,9 @@ +%global debug_package %{nil} %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: system-config-keyboard Version: 1.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A graphical interface for modifying the keyboard Group: System Environment/Base @@ -81,6 +82,9 @@ fi %changelog +* Mon Jul 27 2009 Lubomir Rintel 1.3.0-2 +- Disable debuginfo subpackage + * Mon Jul 27 2009 Lubomir Rintel 1.3.0-1 - New upstream release - Drop upstreamed patches From bskeggs at fedoraproject.org Tue Jul 28 11:24:17 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 11:24:17 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.36, 1.37 kernel.spec, 1.1662, 1.1663 Message-ID: <20090728112417.E3D9411C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17520 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Tue Jul 28 2009 Ben Skeggs - drm-nouveau.patch: cleanup userspace API, various bugfixes. Looks worse than it is, register macros got cleaned up, which touches pretty much everywhere.. drm-nouveau.patch: drivers/gpu/drm/Kconfig | 30 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/nouveau/Makefile | 27 drivers/gpu/drm/nouveau/nouveau_backlight.c | 156 drivers/gpu/drm/nouveau/nouveau_bios.c | 5050 ++++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 226 drivers/gpu/drm/nouveau/nouveau_bo.c | 567 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 55 drivers/gpu/drm/nouveau/nouveau_crtc.h | 90 drivers/gpu/drm/nouveau/nouveau_display.c | 115 drivers/gpu/drm/nouveau/nouveau_dma.c | 143 drivers/gpu/drm/nouveau/nouveau_dma.h | 144 drivers/gpu/drm/nouveau/nouveau_drv.c | 353 drivers/gpu/drm/nouveau/nouveau_drv.h | 1145 + drivers/gpu/drm/nouveau/nouveau_encoder.h | 51 drivers/gpu/drm/nouveau/nouveau_fb.h | 43 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 1019 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 49 drivers/gpu/drm/nouveau/nouveau_fence.c | 261 drivers/gpu/drm/nouveau/nouveau_fifo.c | 668 drivers/gpu/drm/nouveau/nouveau_gem.c | 751 drivers/gpu/drm/nouveau/nouveau_hw.c | 1019 + drivers/gpu/drm/nouveau/nouveau_hw.h | 436 drivers/gpu/drm/nouveau/nouveau_i2c.c | 274 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 674 drivers/gpu/drm/nouveau/nouveau_mem.c | 543 drivers/gpu/drm/nouveau/nouveau_notifier.c | 192 drivers/gpu/drm/nouveau/nouveau_object.c | 1258 + drivers/gpu/drm/nouveau/nouveau_reg.h | 834 + drivers/gpu/drm/nouveau/nouveau_sgdma.c | 331 drivers/gpu/drm/nouveau/nouveau_state.c | 836 + drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nouveau_ttm.c | 116 drivers/gpu/drm/nouveau/nv04_crtc.c | 1126 + drivers/gpu/drm/nouveau/nv04_cursor.c | 70 drivers/gpu/drm/nouveau/nv04_display.c | 250 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fbcon.c | 291 drivers/gpu/drm/nouveau/nv04_fifo.c | 146 drivers/gpu/drm/nouveau/nv04_graph.c | 586 drivers/gpu/drm/nouveau/nv04_instmem.c | 182 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_output.c | 1193 + drivers/gpu/drm/nouveau/nv04_timer.c | 51 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 177 drivers/gpu/drm/nouveau/nv10_graph.c | 945 + drivers/gpu/drm/nouveau/nv20_graph.c | 958 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 222 drivers/gpu/drm/nouveau/nv40_graph.c | 2200 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 495 drivers/gpu/drm/nouveau/nv50_crtc.c | 812 + drivers/gpu/drm/nouveau/nv50_cursor.c | 153 drivers/gpu/drm/nouveau/nv50_dac.c | 284 drivers/gpu/drm/nouveau/nv50_display.c | 844 + drivers/gpu/drm/nouveau/nv50_display.h | 46 drivers/gpu/drm/nouveau/nv50_evo.h | 113 drivers/gpu/drm/nouveau/nv50_fbcon.c | 256 drivers/gpu/drm/nouveau/nv50_fifo.c | 475 drivers/gpu/drm/nouveau/nv50_graph.c | 432 drivers/gpu/drm/nouveau/nv50_grctx.h |22284 ++++++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 499 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 268 drivers/gpu/drm/nouveau/nvreg.h | 503 drivers/gpu/drm/ttm/ttm_bo.c | 4 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 214 75 files changed, 54524 insertions(+), 21 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.36 -r 1.37 drm-nouveau.patchIndex: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- drm-nouveau.patch 22 Jul 2009 03:36:13 -0000 1.36 +++ drm-nouveau.patch 28 Jul 2009 11:24:16 -0000 1.37 @@ -138,10 +138,10 @@ index 0000000..67a9582 +obj-$(CONFIG_DRM_NOUVEAU)+= nouveau.o diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c new file mode 100644 -index 0000000..4f4919e +index 0000000..d0f3bc9 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_backlight.c -@@ -0,0 +1,154 @@ +@@ -0,0 +1,156 @@ +/* + * Copyright (C) 2009 Red Hat + * @@ -184,7 +184,8 @@ index 0000000..4f4919e +static int nv40_get_intensity(struct backlight_device *bd) +{ + struct drm_device *dev = bl_get_data(bd); -+ int val = (nv_rd32(NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK) >> 16; ++ int val = (nv_rd32(dev, NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK) ++ >> 16; + + return val; +} @@ -193,9 +194,9 @@ index 0000000..4f4919e +{ + struct drm_device *dev = bl_get_data(bd); + int val = bd->props.brightness; -+ int reg = nv_rd32(NV40_PMC_BACKLIGHT); ++ int reg = nv_rd32(dev, NV40_PMC_BACKLIGHT); + -+ nv_wr32(NV40_PMC_BACKLIGHT, ++ nv_wr32(dev, NV40_PMC_BACKLIGHT, + (val << 16) | (reg & ~NV40_PMC_BACKLIGHT_MASK)); + + return 0; @@ -211,7 +212,7 @@ index 0000000..4f4919e +{ + struct drm_device *dev = bl_get_data(bd); + -+ return nv_rd32(NV50_PDISPLAY_SOR_BACKLIGHT); ++ return nv_rd32(dev, NV50_PDISPLAY_SOR_BACKLIGHT); +} + +static int nv50_set_intensity(struct backlight_device *bd) @@ -219,8 +220,8 @@ index 0000000..4f4919e + struct drm_device *dev = bl_get_data(bd); + int val = bd->props.brightness; + -+ nv_wr32(NV50_PDISPLAY_SOR_BACKLIGHT, val | -+ NV50_PDISPLAY_SOR_BACKLIGHT_ENABLE); ++ nv_wr32(dev, NV50_PDISPLAY_SOR_BACKLIGHT, ++ val | NV50_PDISPLAY_SOR_BACKLIGHT_ENABLE); + return 0; +} + @@ -235,7 +236,7 @@ index 0000000..4f4919e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct backlight_device *bd; + -+ if (!(nv_rd32(NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK)) ++ if (!(nv_rd32(dev, NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK)) + return 0; + + bd = backlight_device_register("nv_backlight", &dev->pdev->dev, dev, @@ -256,7 +257,7 @@ index 0000000..4f4919e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct backlight_device *bd; + -+ if (!nv_rd32(NV50_PDISPLAY_SOR_BACKLIGHT)) ++ if (!nv_rd32(dev, NV50_PDISPLAY_SOR_BACKLIGHT)) + return 0; + + bd = backlight_device_register("nv_backlight", &dev->pdev->dev, dev, @@ -279,11 +280,12 @@ index 0000000..4f4919e + case NV_40: + case NV_44: + return nouveau_nv40_backlight_init(dev); -+ break; + case NV_50: + return nouveau_nv50_backlight_init(dev); ++ default: + break; + } ++ + return 0; +} + @@ -298,10 +300,10 @@ index 0000000..4f4919e +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..e2a64c3 +index 0000000..27676f4 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c -@@ -0,0 +1,5037 @@ +@@ -0,0 +1,5050 @@ +/* + * Copyright 2005-2006 Erik Waling + * Copyright 2006 Stephane Marchesin @@ -408,17 +410,17 @@ index 0000000..e2a64c3 + save_pci_nv_20 & ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED); + + /* bail if no rom signature */ -+ if (nv_rd08(NV_PROM_OFFSET) != 0x55 || -+ nv_rd08(NV_PROM_OFFSET + 1) != 0xaa) ++ if (nv_rd08(dev, NV_PROM_OFFSET) != 0x55 || ++ nv_rd08(dev, NV_PROM_OFFSET + 1) != 0xaa) + goto out; + + /* additional check (see note below) - read PCI record header */ -+ pcir_ptr = nv_rd08(NV_PROM_OFFSET + 0x18) | -+ nv_rd08(NV_PROM_OFFSET + 0x19) << 8; -+ if (nv_rd08(NV_PROM_OFFSET + pcir_ptr) != 'P' || -+ nv_rd08(NV_PROM_OFFSET + pcir_ptr + 1) != 'C' || -+ nv_rd08(NV_PROM_OFFSET + pcir_ptr + 2) != 'I' || -+ nv_rd08(NV_PROM_OFFSET + pcir_ptr + 3) != 'R') ++ pcir_ptr = nv_rd08(dev, NV_PROM_OFFSET + 0x18) | ++ nv_rd08(dev, NV_PROM_OFFSET + 0x19) << 8; ++ if (nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr) != 'P' || ++ nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 1) != 'C' || ++ nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 2) != 'I' || ++ nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 3) != 'R') + goto out; + + /* on some 6600GT/6800LE prom reads are messed up. nvclock alleges a @@ -426,7 +428,7 @@ index 0000000..e2a64c3 + * each byte. we'll hope pramin has something usable instead + */ + for (i = 0; i < NV_PROM_SIZE; i++) -+ data[i] = nv_rd08(NV_PROM_OFFSET + i); ++ data[i] = nv_rd08(dev, NV_PROM_OFFSET + i); + +out: + /* disable ROM access */ @@ -440,26 +442,26 @@ index 0000000..e2a64c3 + int i; + + if (nv_arch(dev) >= NV_50) { -+ uint32_t vbios_vram = (nv_rd32(0x619f04) & ~0xff) << 8; ++ uint32_t vbios_vram = (nv_rd32(dev, 0x619f04) & ~0xff) << 8; + + if (!vbios_vram) -+ vbios_vram = (nv_rd32(0x1700) << 16) + 0xf0000; ++ vbios_vram = (nv_rd32(dev, 0x1700) << 16) + 0xf0000; + -+ old_bar0_pramin = nv_rd32(0x1700); -+ nv_wr32(0x1700, vbios_vram >> 16); ++ old_bar0_pramin = nv_rd32(dev, 0x1700); ++ nv_wr32(dev, 0x1700, vbios_vram >> 16); + } + + /* bail if no rom signature */ -+ if (nv_rd08(NV_PRAMIN_OFFSET) != 0x55 || -+ nv_rd08(NV_PRAMIN_OFFSET + 1) != 0xaa) ++ if (nv_rd08(dev, NV_PRAMIN_OFFSET) != 0x55 || ++ nv_rd08(dev, NV_PRAMIN_OFFSET + 1) != 0xaa) + goto out; + + for (i = 0; i < NV_PROM_SIZE; i++) -+ data[i] = nv_rd08(NV_PRAMIN_OFFSET + i); ++ data[i] = nv_rd08(dev, NV_PRAMIN_OFFSET + i); + +out: + if (nv_arch(dev) >= NV_50) -+ nv_wr32(0x1700, old_bar0_pramin); ++ nv_wr32(dev, 0x1700, old_bar0_pramin); +} + +static void load_vbios_pci(struct drm_device *dev, uint8_t *data) @@ -475,7 +477,7 @@ index 0000000..e2a64c3 + rom = pci_map_rom(dev->pdev, &rom_len); + if (!rom) + goto out; -+ memcpy(data, rom, rom_len); ++ memcpy_fromio(data, rom, rom_len); + pci_unmap_rom(dev->pdev, rom); + +out: @@ -671,7 +673,7 @@ index 0000000..e2a64c3 + if (reg & 0x1) + reg &= ~0x1; + -+ data = nv_rd32(reg); ++ data = nv_rd32(dev, reg); + + BIOSLOG(dev, " Read: Reg: 0x%08X, Data: 0x%08X\n", reg, data); + @@ -695,7 +697,7 @@ index 0000000..e2a64c3 + + if (dev_priv->VBIOS.execute) { + still_alive(); [...10565 lines suppressed...] + -+#define NOUVEAU_DRM_HEADER_PATCHLEVEL 14 ++#define NOUVEAU_DRM_HEADER_PATCHLEVEL 15 + +struct drm_nouveau_channel_alloc { + uint32_t fb_ctxdma_handle; @@ -54776,8 +54875,7 @@ index 0000000..dc6a194 + int channel; + + /* Notifier memory */ -+ drm_handle_t notifier; -+ int notifier_size; ++ uint32_t notifier_handle; + + /* DRM-enforced subchannel assignments */ + struct { @@ -54785,15 +54883,6 @@ index 0000000..dc6a194 + uint32_t grclass; + } subchan[8]; + uint32_t nr_subchan; -+ -+/* !MM_ENABLED ONLY */ -+ uint32_t put_base; -+ /* FIFO control regs */ -+ drm_handle_t ctrl; -+ int ctrl_size; -+ /* DMA command buffer */ -+ drm_handle_t cmdbuf; -+ int cmdbuf_size; +}; + +struct drm_nouveau_channel_free { @@ -54806,14 +54895,10 @@ index 0000000..dc6a194 + int class; +}; + -+#define NOUVEAU_MEM_ACCESS_RO 1 -+#define NOUVEAU_MEM_ACCESS_WO 2 -+#define NOUVEAU_MEM_ACCESS_RW 3 +struct drm_nouveau_notifierobj_alloc { -+ int channel; ++ uint32_t channel; + uint32_t handle; -+ int count; -+ ++ uint32_t size; + uint32_t offset; +}; + @@ -54822,52 +54907,6 @@ index 0000000..dc6a194 + uint32_t handle; +}; + -+/* This is needed to avoid a race condition. -+ * Otherwise you may be writing in the fetch area. -+ * Is this large enough, as it's only 32 bytes, and the maximum fetch size is 256 bytes? -+ */ -+#define NOUVEAU_DMA_SKIPS 8 -+ -+#define NOUVEAU_MEM_FB 0x00000001 -+#define NOUVEAU_MEM_AGP 0x00000002 -+#define NOUVEAU_MEM_FB_ACCEPTABLE 0x00000004 -+#define NOUVEAU_MEM_AGP_ACCEPTABLE 0x00000008 -+#define NOUVEAU_MEM_PCI 0x00000010 -+#define NOUVEAU_MEM_PCI_ACCEPTABLE 0x00000020 -+#define NOUVEAU_MEM_PINNED 0x00000040 -+#define NOUVEAU_MEM_USER_BACKED 0x00000080 -+#define NOUVEAU_MEM_MAPPED 0x00000100 -+#define NOUVEAU_MEM_TILE 0x00000200 -+#define NOUVEAU_MEM_TILE_ZETA 0x00000400 -+#define NOUVEAU_MEM_INSTANCE 0x01000000 /* internal */ -+#define NOUVEAU_MEM_NOTIFIER 0x02000000 /* internal */ -+#define NOUVEAU_MEM_NOVM 0x04000000 /* internal */ -+#define NOUVEAU_MEM_USER 0x08000000 /* internal */ -+#define NOUVEAU_MEM_INTERNAL (NOUVEAU_MEM_INSTANCE | \ -+ NOUVEAU_MEM_NOTIFIER | \ -+ NOUVEAU_MEM_NOVM | \ -+ NOUVEAU_MEM_USER) -+ -+struct drm_nouveau_mem_alloc { -+ int flags; -+ int alignment; -+ uint64_t size; // in bytes -+ uint64_t offset; -+ drm_handle_t map_handle; -+}; -+ -+struct drm_nouveau_mem_free { -+ uint64_t offset; -+ int flags; -+}; -+ -+struct drm_nouveau_mem_tile { -+ uint64_t offset; -+ uint64_t delta; -+ uint64_t size; -+ int flags; -+}; -+ +/* FIXME : maybe unify {GET,SET}PARAMs */ +#define NOUVEAU_GETPARAM_PCI_VENDOR 3 +#define NOUVEAU_GETPARAM_PCI_DEVICE 4 @@ -54878,15 +54917,12 @@ index 0000000..dc6a194 +#define NOUVEAU_GETPARAM_AGP_SIZE 9 +#define NOUVEAU_GETPARAM_PCI_PHYSICAL 10 +#define NOUVEAU_GETPARAM_CHIPSET_ID 11 -+#define NOUVEAU_GETPARAM_MM_ENABLED 12 -+#define NOUVEAU_GETPARAM_VM_VRAM_BASE 13 ++#define NOUVEAU_GETPARAM_VM_VRAM_BASE 12 +struct drm_nouveau_getparam { + uint64_t param; + uint64_t value; +}; + -+#define NOUVEAU_SETPARAM_CMDBUF_LOCATION 1 -+#define NOUVEAU_SETPARAM_CMDBUF_SIZE 2 +struct drm_nouveau_setparam { + uint64_t param; + uint64_t value; @@ -54970,8 +55006,12 @@ index 0000000..dc6a194 + uint32_t handle; +}; + ++#define NOUVEAU_GEM_CPU_PREP_NOWAIT 0x00000001 ++#define NOUVEAU_GEM_CPU_PREP_NOBLOCK 0x00000002 ++#define NOUVEAU_GEM_CPU_PREP_WRITE 0x00000004 +struct drm_nouveau_gem_cpu_prep { + uint32_t handle; ++ uint32_t flags; +}; + +struct drm_nouveau_gem_cpu_fini { @@ -54980,38 +55020,19 @@ index 0000000..dc6a194 + +struct drm_nouveau_gem_tile { + uint32_t handle; -+ uint32_t delta; ++ uint32_t offset; + uint32_t size; -+ uint32_t flags; -+}; -+ -+enum nouveau_card_type { -+ NV_UNKNOWN =0, -+ NV_04 =4, -+ NV_05 =5, -+ NV_10 =10, -+ NV_11 =11, -+ NV_17 =17, -+ NV_20 =20, -+ NV_30 =30, -+ NV_40 =40, -+ NV_44 =44, -+ NV_50 =50, -+ NV_LAST =0xffff, ++ uint32_t tile_mode; ++ uint32_t tile_flags; +}; + +enum nouveau_bus_type { -+ NV_AGP =0, -+ NV_PCI =1, -+ NV_PCIE =2, ++ NV_AGP = 0, ++ NV_PCI = 1, ++ NV_PCIE = 2, +}; + -+#define NOUVEAU_MAX_SAREA_CLIPRECTS 16 -+ +struct drm_nouveau_sarea { -+ /* the cliprects */ -+ struct drm_clip_rect boxes[NOUVEAU_MAX_SAREA_CLIPRECTS]; -+ unsigned int nbox; +}; + +#define DRM_NOUVEAU_CARD_INIT 0x00 @@ -55022,19 +55043,13 @@ index 0000000..dc6a194 +#define DRM_NOUVEAU_GROBJ_ALLOC 0x05 +#define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x06 +#define DRM_NOUVEAU_GPUOBJ_FREE 0x07 -+#define DRM_NOUVEAU_MEM_ALLOC 0x08 -+#define DRM_NOUVEAU_MEM_FREE 0x09 -+#define DRM_NOUVEAU_MEM_TILE 0x0a -+#define DRM_NOUVEAU_SUSPEND 0x0b -+#define DRM_NOUVEAU_RESUME 0x0c +#define DRM_NOUVEAU_GEM_NEW 0x40 +#define DRM_NOUVEAU_GEM_PUSHBUF 0x41 +#define DRM_NOUVEAU_GEM_PUSHBUF_CALL 0x42 -+#define DRM_NOUVEAU_GEM_PIN 0x43 -+#define DRM_NOUVEAU_GEM_UNPIN 0x44 ++#define DRM_NOUVEAU_GEM_PIN 0x43 /* !KMS only */ ++#define DRM_NOUVEAU_GEM_UNPIN 0x44 /* !KMS only */ +#define DRM_NOUVEAU_GEM_CPU_PREP 0x45 +#define DRM_NOUVEAU_GEM_CPU_FINI 0x46 -+#define DRM_NOUVEAU_GEM_TILE 0x47 -+#define DRM_NOUVEAU_GEM_INFO 0x48 ++#define DRM_NOUVEAU_GEM_INFO 0x47 + +#endif /* __NOUVEAU_DRM_H__ */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1662 retrieving revision 1.1663 diff -u -p -r1.1662 -r1.1663 --- kernel.spec 27 Jul 2009 22:03:29 -0000 1.1662 +++ kernel.spec 28 Jul 2009 11:24:17 -0000 1.1663 @@ -439,7 +439,7 @@ Summary: The Linux kernel Provides: kernel = %{rpmversion}-%{pkg_release}\ Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\ Provides: kernel-drm = 4.3.0\ -Provides: kernel-drm-nouveau = 14\ +Provides: kernel-drm-nouveau = 15\ Provides: kernel-modeset = 1\ Provides: kernel-uname-r = %{KVERREL}%{?1:.%{1}}\ Requires(pre): %{kernel_prereq}\ @@ -1898,6 +1898,11 @@ fi # and build. %changelog +* Tue Jul 28 2009 Ben Skeggs +- drm-nouveau.patch: cleanup userspace API, various bugfixes. + Looks worse than it is, register macros got cleaned up, which + touches pretty much everywhere.. + * Mon Jul 27 2009 Adam Jackson - Warn quieter about not finding PCI bus parents for ROM BARs, they're not usually needed and there's nothing you can do about it anyway. From hadess at fedoraproject.org Tue Jul 28 11:24:22 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 28 Jul 2009 11:24:22 +0000 (UTC) Subject: rpms/gstreamer/devel .cvsignore, 1.40, 1.41 gstreamer.spec, 1.102, 1.103 sources, 1.41, 1.42 Message-ID: <20090728112422.E795811C00D4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17782 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 - Update to 0.10.23.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 21 Jul 2009 01:55:50 -0000 1.40 +++ .cvsignore 28 Jul 2009 11:24:22 -0000 1.41 @@ -1 +1 @@ -gstreamer-0.10.23.3.tar.bz2 +gstreamer-0.10.23.4.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- gstreamer.spec 25 Jul 2009 01:36:03 -0000 1.102 +++ gstreamer.spec 28 Jul 2009 11:24:22 -0000 1.103 @@ -5,8 +5,8 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23.3 -Release: 2%{?dist} +Version: 0.10.23.4 +Release: 1%{?dist} Summary: GStreamer streaming media framework runtime Group: Applications/Multimedia @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 +- Update to 0.10.23.4 + * Fri Jul 24 2009 Fedora Release Engineering - 0.10.23.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 21 Jul 2009 01:55:50 -0000 1.41 +++ sources 28 Jul 2009 11:24:22 -0000 1.42 @@ -1 +1 @@ -8ee3a5474e109b749138703473deeeab gstreamer-0.10.23.3.tar.bz2 +539aa9e2c4f9bb906bdb222c8a5c7d1a gstreamer-0.10.23.4.tar.bz2 From twaugh at fedoraproject.org Tue Jul 28 11:27:46 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 11:27:46 +0000 (UTC) Subject: rpms/system-config-printer/F-11 system-config-printer-1.1.10.tar.bz2.sig, NONE, 1.1 system-config-printer-case-insensitive-matching.patch, NONE, 1.1 .cvsignore, 1.202, 1.203 sources, 1.208, 1.209 system-config-printer.spec, 1.270, 1.271 upstream-key.gpg, 1.2, 1.3 system-config-printer-1.1.8.tar.bz2.sig, 1.1, NONE system-config-printer-arrows.patch, 1.1, NONE system-config-printer-bug507489.patch, 1.1, NONE system-config-printer-gutenprint.patch, 1.1, NONE system-config-printer-https.patch, 1.1, NONE system-config-printer-incorrect-auth.patch, 1.1, NONE system-config-printer-ipp-nonfatal-exception.patch, 1.1, NONE system-config-printer-nmblookup-failure.patch, 1.1, NONE system-config-printer-packagekit.patch, 1.1, NONE system-config-printer-properties-cancel.patch, 1.1, NONE system-config-printer-remote-location-field.patch, 1.1, NONE system-config-printer-stopped-jobs.patch, 1.1, NONE Message-ID: <20090728112746.5835C11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19382 Modified Files: .cvsignore sources system-config-printer.spec upstream-key.gpg Added Files: system-config-printer-1.1.10.tar.bz2.sig system-config-printer-case-insensitive-matching.patch Removed Files: system-config-printer-1.1.8.tar.bz2.sig system-config-printer-arrows.patch system-config-printer-bug507489.patch system-config-printer-gutenprint.patch system-config-printer-https.patch system-config-printer-incorrect-auth.patch system-config-printer-ipp-nonfatal-exception.patch system-config-printer-nmblookup-failure.patch system-config-printer-packagekit.patch system-config-printer-properties-cancel.patch system-config-printer-remote-location-field.patch system-config-printer-stopped-jobs.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1.1.10-1 - Dropped no-longer-used python-sexy dependency. - 1.1.10: - Now uses gnome-packagekit utility to install packages instead of the D-Bus API. - Fixed detection of stopped jobs with CUPS 1.4. - Fixed tracebacks when adding a new printer and when receiving IPP notifications. - Fixed 'location' field for printers added on remote CUPS servers. - Fixed handling of incorrect authentication. - Some UI and troubleshooter fixes have been made. --- NEW FILE system-config-printer-1.1.10.tar.bz2.sig --- ?? ????????? system-config-printer-case-insensitive-matching.patch: ppds.py | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) --- NEW FILE system-config-printer-case-insensitive-matching.patch --- diff -up system-config-printer-1.1.10/cupshelpers/ppds.py.case-insensitive-matching system-config-printer-1.1.10/cupshelpers/ppds.py --- system-config-printer-1.1.10/cupshelpers/ppds.py.case-insensitive-matching 2009-07-22 13:22:49.000000000 +0100 +++ system-config-printer-1.1.10/cupshelpers/ppds.py 2009-07-28 12:20:27.934951967 +0100 @@ -159,29 +159,32 @@ def ppdMakeModelSplit (ppd_make_and_mode # HP PPDs give NickNames like: # *NickName: "HP LaserJet 4 Plus v2013.111 Postscript (recommended)" # Find the version number. - v = model.find (" v") + modell = model.lower () + v = modell.find (" v") if v != -1 and (model[v + 2].isdigit () or (model[v + 2] == '.' and model[v + 3].isdigit ())): # Truncate at that point. model = model[:v] + modell = modell[:v] for suffix in [" hpijs", - " Foomatic/", + " foomatic/", " - ", " w/", " (", - " PostScript", - " PS", - " PS1", - " PS2", - " PS3", - " PXL", - " series" + " postscript", + " ps", + " ps1", + " ps2", + " ps3", + " pxl", + " series", ","]: - s = model.find (suffix) + s = modell.find (suffix) if s != -1: model = model[:s] + modell = modell[:s] if makel == "hp": modelnames = {"dj": "DeskJet", @@ -190,10 +193,10 @@ def ppdMakeModelSplit (ppd_make_and_mode "color lj": "Color LaserJet", "ps ": "PhotoSmart", "hp ": ""} - modell = model.lower () for (name, fullname) in modelnames.iteritems (): if modell.startswith (name): model = fullname + model[len (name):] + modell = model.lower () for mfr in [ "Apple", "Canon", "Epson", "Lexmark", "Oki" ]: if makel == mfr.lower (): Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/.cvsignore,v retrieving revision 1.202 retrieving revision 1.203 diff -u -p -r1.202 -r1.203 --- .cvsignore 18 Jun 2009 16:48:15 -0000 1.202 +++ .cvsignore 28 Jul 2009 11:27:45 -0000 1.203 @@ -201,3 +201,4 @@ system-config-printer-1.1.6.tar.bz2 system-config-printer-1.1.7.tar.bz2 pycups-1.9.46.tar.bz2 system-config-printer-1.1.8.tar.bz2 +system-config-printer-1.1.10.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/sources,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- sources 18 Jun 2009 16:48:15 -0000 1.208 +++ sources 28 Jul 2009 11:27:45 -0000 1.209 @@ -1,3 +1,3 @@ ac8f98a40b0fc4b6ab4470f10489887a pysmbc-1.0.6.tar.bz2 895d4170542ec80c74d41746a9474409 pycups-1.9.46.tar.bz2 -fa520cbf9cd86dc6fa8becd872bbbfa9 system-config-printer-1.1.8.tar.bz2 +18d7455f832a9bc5b72d15e5e38913cd system-config-printer-1.1.10.tar.bz2 Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/system-config-printer.spec,v retrieving revision 1.270 retrieving revision 1.271 diff -u -p -r1.270 -r1.271 --- system-config-printer.spec 24 Jul 2009 09:00:29 -0000 1.270 +++ system-config-printer.spec 28 Jul 2009 11:27:45 -0000 1.271 @@ -6,25 +6,15 @@ Summary: A printer administration tool Name: system-config-printer -Version: 1.1.8 -Release: 7%{?dist} +Version: 1.1.10 +Release: 1%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 -Patch1: system-config-printer-bug507489.patch -Patch2: system-config-printer-ipp-nonfatal-exception.patch -Patch3: system-config-printer-https.patch -Patch4: system-config-printer-remote-location-field.patch -Patch5: system-config-printer-nmblookup-failure.patch -Patch6: system-config-printer-properties-cancel.patch -Patch7: system-config-printer-incorrect-auth.patch -Patch8: system-config-printer-packagekit.patch -Patch9: system-config-printer-stopped-jobs.patch -Patch10: system-config-printer-gutenprint.patch -Patch11: system-config-printer-arrows.patch +Patch1: system-config-printer-case-insensitive-matching.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -47,7 +37,6 @@ Requires: gnome-icon-theme Requires: desktop-notification-daemon Requires: notify-python Requires: gnome-python2-gnomekeyring -Requires: python-sexy Requires: libxml2-python Obsoletes: system-config-printer-gui <= 0.6.152 @@ -74,17 +63,7 @@ the configuration tool. %prep %setup -q -a 1 -a 2 -%patch1 -p1 -b .bug507489 -%patch2 -p1 -b .ipp-nonfatal-exception -%patch3 -p1 -b .https -%patch4 -p1 -b .remote-location-field -%patch5 -p1 -b .nmblookup-failure -%patch6 -p1 -b .properties-cancel -%patch7 -p1 -b .incorrect-auth -%patch8 -p1 -b .packagekit -%patch9 -p1 -b .stopped-jobs -%patch10 -p1 -b .gutenprint -%patch11 -p1 -b .arrows +%patch1 -p1 -b .case-insensitive-matching %build %configure @@ -187,6 +166,18 @@ rm -rf %buildroot exit 0 %changelog +* Tue Jul 28 2009 Tim Waugh 1.1.10-1 +- Dropped no-longer-used python-sexy dependency. +- 1.1.10: + - Now uses gnome-packagekit utility to install packages + instead of the D-Bus API. + - Fixed detection of stopped jobs with CUPS 1.4. + - Fixed tracebacks when adding a new printer and when receiving + IPP notifications. + - Fixed 'location' field for printers added on remote CUPS servers. + - Fixed handling of incorrect authentication. + - Some UI and troubleshooter fixes have been made. + * Fri Jul 24 2009 Tim Waugh 1.1.8-7 - Removed gnome-packagekit dependency. The presence of gpk-install-package-name is detected at run-time, and the program Index: upstream-key.gpg =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/upstream-key.gpg,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- upstream-key.gpg 9 Aug 2007 14:19:31 -0000 1.2 +++ upstream-key.gpg 28 Jul 2009 11:27:46 -0000 1.3 @@ -1,36 +1,36 @@ -----BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.7 (GNU/Linux) +Version: GnuPG v1.4.9 (GNU/Linux) -mQGiBEa5fNcRBACJCPsz2q0hj0p5pJABzMKTb4r5lko0upe6ZYOQ2NFZw61upKzI -uFanlwDVi3MaEHIGf8hsYr82GxTFUc+O2DFskKwEuZ3O4Q50qqkHAnMLZ2VFKXyF -VJRPUrezpiXifbRjdV3ED0ikc7+ANArUStqbaIvjM3zJOo5GuEcO7AAPiwCgofNk -1DG1GNH8cBxqGQoEPYrm/pkD/1e7OsMk50XXTQd77hZW1ViIQK8P4tkj65FWBgNg -d5PyXNqGfOcskn+iVbx9cGsTgAbfP5IVlnxCmf3QE2rLelJtX++aCUmM4irDclTv -9hn5UQf1QPqvwHFr+h6FHAg8WjHhdORc8hDlWMntmAArjmqFY4FcF/DZMzddZNgf -jklwA/0aOef82dkwMbgmtLMcx1m0QTSBV04x2z3UIuBLdG9klhzTSCzr0EbtoSWe -8JN5LdZr//BDJV5elyEWuiQP5uMhXkrVWCZlt3hJ8zvncO/1gnPQPzRty3IuoAyO -j4uIWLupjdHVqqBDhJEmc+MvjRgQvUkdt07PEm5ehaRxaB36I7QdVGltIFdhdWdo -IDx0d2F1Z2hAcmVkaGF0LmNvbT6IZgQTEQIAJgUCRrl9JAIbAwUJA8JnAAYLCQgH -AwIEFQIIAwQWAgMBAh4BAheAAAoJEGklkaMet5kjzfYAoIjd5Y/5+BKxYMXndh4a -54MVmEXoAJ0f1pdb+zMVcCMs/lyB2oF/+nMWwYhGBBARAgAGBQJGuX11AAoJEO3n -xuaBAwm9DF0AnAnBbra0+WvYa1TLgdIA/ME9r/NNAJ9hXtoFm8s/rAw3YUM79wK1 -8P1RIrQcVGltIFdhdWdoIDx0aW1AY3liZXJlbGsubmV0PohmBBMRAgAmBQJGuXzX -AhsDBQkDwmcABgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQaSWRox63mSPQowCg -jEKmAQght3t/7JVPX6H29kZyqFYAni3DbBuKULwKMuL71PA556bVbdsMiEYEEBEC -AAYFAka5fXUACgkQ7efG5oEDCb3VrwCfft0SMdCYReiyNoazvWmVvfPk1hgAn2JH -1pdBUCMeMVrxbIBfngNM6Me0uQINBEa5fNcQCACqm3SBctiw150XfY5AWUFPwmJB -xX2YTG867RiuaXntFCdERybikjmgNVVlCRudufdqs2bqeqY+oFvS3TMz7SOQmSwv -QJbEx7WrR7RWU9l0UWMPmiOZ6ZMZjwl2qArvR28RME+n2ooFjuOV3xzb1f4itbo0 -KDshdhoXvcr93z7+vSMjAGLwrLButh1BwbadSAFyIkIyguakKak+vY5kcBPbYUh6 -AnLKWZJF/UNzC6gU4fqc1kLM7RbPLO8oXMgghqcEDK7AVQoXD13xXL6+oDCtwv1u -zZ6HTYK4l7Dcnpr9nQALF/yepD0xqpRcAA5GFrElFxdVoF24kRKy56+eOOkTAAMG -B/9npM+/tnF49zw4onQjqEtie1lxDKZAgOmbu34aaH0udF8n37XQdmd4z7M2/Jf8 -qFBqeO01MfYmuAfZ9esM+Sneh3/Nvmi5++kz7IKS4V6EE4DndLZW+hnO09i498Fe -dwEkhsxpU3YqB9IL6iNjKjQgYtfYBlDJvBwtlgUzKK80toAH6XPA6j/SBjJM6vZb -P1XpZajWbkvhKzYfqXtjXZ2dqIGbtSW8uJr1Ighr9ZYQvK0r6XkhZBoUorteQUS4 -IrweKXRGnUeOHuUXr8d7rzsufSP6ZNhQQvwG80vr8V4Z++8YKpfyv8uOwAc3GK/u -9O+CLk4lvD4SBCVoZaSCv/9aiE8EGBECAA8FAka5fNcCGwwFCQPCZwAACgkQaSWR -ox63mSPTcgCfUiOr+XPLLhqJEQLQHp+Y8FvU7voAnRQuODX6A2Siap8Aw09esWVq -L7PW -=wzDO +mQGiBEpnDbARBADRsKGwS54yxqAoniGaI8X+saG4ezdZ1OmPr9f7L4PugzjjL7qR +p9O7hj+RZNVM7QR9nPUFTawBTfWQisyS8/a3xiBbQxlhW8uuORhM2gTkVGGlGbCc +jH+RT0T8t/75m6n2IXKATqugrMH60NXreQQuCKWgCrT6TroMldlVQpBaFwCgx/s0 +1KlfCY42Er0YA/DDpMgTYhUEAI0PgOpD6C8ncEpqvSYSs1qyvRsrpp86M/nyi+pm +15+7IZhlXE53gXeSLT+dTutvVQtbXbf2DwJmAKdjQw1Y4esjxwH1bPYnPnTlIlZ6 +CHQbYO0n6u2pDnSF8sxi3ene6BSuL7NvKpejwXqLEQFGjaop5eAdDs6YvHNU3Yev +os0UA/4t9TstI4laLwvCqZ7npwsNxT/1sXa5F09d26oTSZlJwSEmGe6+tOqAbDYn +1mrCajNt40pGPBKXhE2UNJIBrrWSjZCAp4LSmj6KCEXs35fpmUhUp54V79cC4AI/ +rezLlZIB6l4Dey1is5bkw1yOsBT6Qf4lGJHkggyUfW/ymGZfqbQdVGltIFdhdWdo +IDx0d2F1Z2hAcmVkaGF0LmNvbT6IZgQTEQIAJgUCSmcOPwIbAwUJA8JnAAYLCQgH +AwIEFQIIAwQWAgMBAh4BAheAAAoJEAS0Gn2aStrXYHMAoLxVaLxFP6P6rRlQtla+ +NO1KSkMBAJ9jNppMaAf2pHi1b9CoD4f4MEvOS4hGBBARAgAGBQJKZxDHAAoJEO3n +xuaBAwm91N0AoJROznoZyHKXRxgzLyXemIA4TYMAAJ9Y9HdZOenEMw9HMg36guZK +dBIVLLQcVGltIFdhdWdoIDx0aW1AY3liZXJlbGsubmV0PohmBBMRAgAmBQJKZw2w +AhsDBQkDwmcABgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQBLQafZpK2tet4gCf +VKhWbUJAcIlNpWpYD0kYgGty/ucAoIfsKq9FNBPw9pQPaDnxbKDyserxiEYEEBEC +AAYFAkpnEMcACgkQ7efG5oEDCb0RvACePTmfisPxeKkGo6QoA42MFH5wtPIAn329 +9ur6BKDz/QrKVT13CxRoKosLuQINBEpnDbAQCACCZaJHH6EctIyz+PYBCzz889PR +iLAOyKlbrgaR4KhVGBFttKyOJkEk+UvxLUuRkOOY6i6TWbT3qNUnZT6QkftGulal +8MAtBf2xnJXEsyKgPkRkeDAx3uvMBfrW0wgxcFw9K6E+p8x76bFFD+FtrduDRfxk +2jDwJgyYubnM3+nPZzZXfuFnxSRYjJcoAq4O61YdH8O79TElEGqTwd/BHeIexEf2 +BkBAscE4GCmGXTYCsLByY8sGD13U7OO3Kk4ul4FgI/mzM25zgqqhbAObjsIwJqE+ +6MXqkkylmo+noTe3zlfNdnR1xkmYUCfUc4+WeFyziHRiXMkt5OYY5wDW5WGnAAMF +B/4gvjt8SXekSxgdFCuEOQ0J2YM4DElQkaf+Tggbr9F3hnsWfJ49gEipCWEhKPt2 +ks4kDexO/Cn6SI7SQUPiNUWylm80G1Dd+xaQ9qrN1KTsReACXOCKoRgz64MooSOj +Qs8YIGI/ejLzPkn6mUEmFRHssd4jmmSCbF99AmVh6Z4VnkKLTG+z3KQUymF0ng5b +AAcwTOJhlAR7xrBJGfhnRUTIaNtD+UnBsoxApeUJie2lc84Pc10p56TGomkEy3Ib +se1kk4w3mZ8kkR57voh/PovSl/8NyPmv81oVHbJnGLKAVku4XT0IBQOBdDKeRKHB +tlPLsK9KFx2LxhtAmQN4C/j5iE8EGBECAA8FAkpnDbACGwwFCQPCZwAACgkQBLQa +fZpK2teQogCgg68475moQ7dh/HIUHRNJKZJfmoQAoIw92pM7V5VYMpz9kW+701Fu +JofS +=vrpj -----END PGP PUBLIC KEY BLOCK----- --- system-config-printer-1.1.8.tar.bz2.sig DELETED --- --- system-config-printer-arrows.patch DELETED --- --- system-config-printer-bug507489.patch DELETED --- --- system-config-printer-gutenprint.patch DELETED --- --- system-config-printer-https.patch DELETED --- --- system-config-printer-incorrect-auth.patch DELETED --- --- system-config-printer-ipp-nonfatal-exception.patch DELETED --- --- system-config-printer-nmblookup-failure.patch DELETED --- --- system-config-printer-packagekit.patch DELETED --- --- system-config-printer-properties-cancel.patch DELETED --- --- system-config-printer-remote-location-field.patch DELETED --- --- system-config-printer-stopped-jobs.patch DELETED --- From pkgdb at fedoraproject.org Tue Jul 28 11:32:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:07 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchbugzilla Message-ID: <20090728113207.E233710F85A@bastion2.fedora.phx.redhat.com> bkearney has requested the watchbugzilla acl on libvirt-java (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:08 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchcommits Message-ID: <20090728113208.62B5710F89C@bastion2.fedora.phx.redhat.com> bkearney has requested the watchcommits acl on libvirt-java (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:10 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested commit Message-ID: <20090728113212.14DF710F89E@bastion2.fedora.phx.redhat.com> bkearney has requested the commit acl on libvirt-java (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:17 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchbugzilla Message-ID: <20090728113217.91F0F10F8B5@bastion2.fedora.phx.redhat.com> bkearney has requested the watchbugzilla acl on libvirt-java (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:18 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchcommits Message-ID: <20090728113218.2F0DB10F8B9@bastion2.fedora.phx.redhat.com> bkearney has requested the watchcommits acl on libvirt-java (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:19 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested commit Message-ID: <20090728113219.3E10710F8BC@bastion2.fedora.phx.redhat.com> bkearney has requested the commit acl on libvirt-java (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:23 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchbugzilla Message-ID: <20090728113223.7F3F110F85A@bastion2.fedora.phx.redhat.com> bkearney has requested the watchbugzilla acl on libvirt-java (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:23 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchcommits Message-ID: <20090728113224.0891810F89C@bastion2.fedora.phx.redhat.com> bkearney has requested the watchcommits acl on libvirt-java (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:26 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested commit Message-ID: <20090728113226.5883710F8C1@bastion2.fedora.phx.redhat.com> bkearney has requested the commit acl on libvirt-java (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:29 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchbugzilla Message-ID: <20090728113230.0452410F8C6@bastion2.fedora.phx.redhat.com> bkearney has requested the watchbugzilla acl on libvirt-java (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:39 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested watchcommits Message-ID: <20090728113239.8266E10F89D@bastion2.fedora.phx.redhat.com> bkearney has requested the watchcommits acl on libvirt-java (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 11:32:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 11:32:41 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested commit Message-ID: <20090728113241.E3A5910F8A1@bastion2.fedora.phx.redhat.com> bkearney has requested the commit acl on libvirt-java (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From jens at fedoraproject.org Tue Jul 28 11:35:18 2009 From: jens at fedoraproject.org (jens) Date: Tue, 28 Jul 2009 11:35:18 +0000 (UTC) Subject: rpms/miredo/devel miredo.spec,1.2,1.3 Message-ID: <20090728113518.2AB0511C00D4@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22767 Modified Files: miredo.spec Log Message: updated to 1.1.7-3 Index: miredo.spec =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/miredo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- miredo.spec 25 Jul 2009 12:37:43 -0000 1.2 +++ miredo.spec 28 Jul 2009 11:35:17 -0000 1.3 @@ -1,7 +1,14 @@ # vim: expandtab + +%if 0%{?rhel} +%define withjudy 0 +%else +%define withjudy 1 +%endif + Name: miredo Version: 1.1.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tunneling of IPv6 over UDP through NATs Group: Applications/Internet @@ -13,7 +20,12 @@ Source2: miredo-server.init Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libcap-devel Judy-devel +BuildRequires: libcap-devel +%if %{withjudy} +BuildRequires: Judy-devel +%endif + + Requires(pre): shadow-utils Requires(post): chkconfig, /sbin/ldconfig # This is for /sbin/service @@ -85,7 +97,10 @@ part of miredo. Most people only need th --disable-static \ --disable-rpath \ --enable-miredo-user \ - --without-Judy +%if %{withjudy} == 0 + --without-Judy \ +%endif + # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -190,6 +205,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Jens Kuehnel 1.1.7-3 +- without July as optional, hopefully the last EL fix + * Sun Jul 19 2009 Jens Kuehnel 1.1.7-2 - rename miredo to miredo-libs - fixes EL From hadess at fedoraproject.org Tue Jul 28 11:44:21 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 28 Jul 2009 11:44:21 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/F-11 .cvsignore, 1.21, 1.22 gstreamer-plugins-base.spec, 1.75, 1.76 sources, 1.22, 1.23 Message-ID: <20090728114421.BE27C11C00D4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26516 Modified Files: .cvsignore gstreamer-plugins-base.spec sources Log Message: * Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 - Update to 0.10.23.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 11 May 2009 01:10:40 -0000 1.21 +++ .cvsignore 28 Jul 2009 11:44:21 -0000 1.22 @@ -1 +1 @@ -gst-plugins-base-0.10.23.tar.bz2 +gst-plugins-base-0.10.23.4.tar.bz2 Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/F-11/gstreamer-plugins-base.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- gstreamer-plugins-base.spec 24 Jun 2009 13:34:36 -0000 1.75 +++ gstreamer-plugins-base.spec 28 Jul 2009 11:44:21 -0000 1.76 @@ -4,8 +4,8 @@ %define _gst 0.10.22 Name: %{gstreamer}-plugins-base -Version: 0.10.23 -Release: 3%{?dist} +Version: 0.10.23.4 +Release: 1%{?dist} Summary: GStreamer streaming media framework base plug-ins Group: Applications/Multimedia @@ -258,6 +258,9 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 +- Update to 0.10.23.4 + * Wed Jun 24 2009 Bastien Nocera 0.10.23-3 - Reduce the buffer size in cdparanoia for cdparanoia 10.2 (#507453) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 11 May 2009 01:10:40 -0000 1.22 +++ sources 28 Jul 2009 11:44:21 -0000 1.23 @@ -1 +1 @@ -641cc7def2d8667b9b4df15e69dba25f gst-plugins-base-0.10.23.tar.bz2 +78594c5672b3bf41b37a3a9f7c16bb3b gst-plugins-base-0.10.23.4.tar.bz2 From twaugh at fedoraproject.org Tue Jul 28 11:51:43 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 11:51:43 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3266.patch,NONE,1.1 cups.spec,1.488,1.489 Message-ID: <20090728115143.401AF11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30310 Modified Files: cups.spec Added Files: cups-str3266.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 - Fixed Device ID reporting in the usb backend (STR #3266). cups-str3266.patch: ieee1284.c | 13 ++++++++++--- usb-libusb.c | 8 +++++--- 2 files changed, 15 insertions(+), 6 deletions(-) --- NEW FILE cups-str3266.patch --- diff -up cups-1.4rc1/backend/ieee1284.c.device-id cups-1.4rc1/backend/ieee1284.c --- cups-1.4rc1/backend/ieee1284.c.device-id 2009-07-18 18:25:38.355769382 +0100 +++ cups-1.4rc1/backend/ieee1284.c 2009-07-18 18:25:43.844894365 +0100 @@ -196,12 +196,19 @@ backendGetDeviceID( * and then limit the length to the size of our buffer... */ - if (length > (device_id_size - 2)) + if (length > device_id_size) length = (((unsigned)device_id[1] & 255) << 8) + ((unsigned)device_id[0] & 255); - if (length > (device_id_size - 2)) - length = device_id_size - 2; + if (length > device_id_size) + length = device_id_size; + + /* + * The length field counts the number of bytes in the string + * including the length field itself (2 bytes). + */ + + length -= 2; /* * Copy the device ID text to the beginning of the buffer and diff -up cups-1.4rc1/backend/usb-libusb.c.device-id cups-1.4rc1/backend/usb-libusb.c --- cups-1.4rc1/backend/usb-libusb.c.device-id 2009-01-14 19:46:43.000000000 +0000 +++ cups-1.4rc1/backend/usb-libusb.c 2009-07-18 18:25:43.845895048 +0100 @@ -418,12 +418,14 @@ get_device_id(usb_printer_t *printer, /* * and then limit the length to the size of our buffer... */ - if (length > (bufsize - 2)) + if (length > bufsize) length = (((unsigned)buffer[1] & 255) << 8) + ((unsigned)buffer[0] & 255); - if (length > (bufsize - 2)) - length = bufsize - 2; + if (length > bufsize) + length = bufsize; + + length -= 2; /* * Copy the device ID text to the beginning of the buffer and Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.488 retrieving revision 1.489 diff -u -p -r1.488 -r1.489 --- cups.spec 15 Jul 2009 10:55:54 -0000 1.488 +++ cups.spec 28 Jul 2009 11:51:43 -0000 1.489 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.10%{?dist} +Release: 0.%{pre}.11%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -56,7 +56,8 @@ Patch29: cups-str3259.patch Patch30: cups-uri-compat.patch Patch31: cups-str3254.patch Patch32: cups-str3253.patch -Patch33: cups-avahi.patch +Patch33: cups-str3266.patch +Patch34: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -210,7 +211,8 @@ module. %patch30 -p1 -b .uri-compat %patch31 -p1 -b .str3254 %patch32 -p1 -b .str3253 -#%patch33 -p1 -b .avahi +%patch33 -p1 -b .str3266 +#%patch34 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -503,6 +505,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 +- Fixed Device ID reporting in the usb backend (STR #3266). + * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to prevent bad job control files crashing cupsd on start-up (STR #3253, bug #509741). From twaugh at fedoraproject.org Tue Jul 28 11:53:09 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 11:53:09 +0000 (UTC) Subject: rpms/cups/devel cups-str3266.patch,NONE,1.1 cups.spec,1.486,1.487 Message-ID: <20090728115309.946AE11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31141 Modified Files: cups.spec Added Files: cups-str3266.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 - Fixed Device ID reporting in the usb backend (STR #3266). cups-str3266.patch: ieee1284.c | 13 ++++++++++--- usb-libusb.c | 8 +++++--- 2 files changed, 15 insertions(+), 6 deletions(-) --- NEW FILE cups-str3266.patch --- diff -up cups-1.4rc1/backend/ieee1284.c.device-id cups-1.4rc1/backend/ieee1284.c --- cups-1.4rc1/backend/ieee1284.c.device-id 2009-07-18 18:25:38.355769382 +0100 +++ cups-1.4rc1/backend/ieee1284.c 2009-07-18 18:25:43.844894365 +0100 @@ -196,12 +196,19 @@ backendGetDeviceID( * and then limit the length to the size of our buffer... */ - if (length > (device_id_size - 2)) + if (length > device_id_size) length = (((unsigned)device_id[1] & 255) << 8) + ((unsigned)device_id[0] & 255); - if (length > (device_id_size - 2)) - length = device_id_size - 2; + if (length > device_id_size) + length = device_id_size; + + /* + * The length field counts the number of bytes in the string + * including the length field itself (2 bytes). + */ + + length -= 2; /* * Copy the device ID text to the beginning of the buffer and diff -up cups-1.4rc1/backend/usb-libusb.c.device-id cups-1.4rc1/backend/usb-libusb.c --- cups-1.4rc1/backend/usb-libusb.c.device-id 2009-01-14 19:46:43.000000000 +0000 +++ cups-1.4rc1/backend/usb-libusb.c 2009-07-18 18:25:43.845895048 +0100 @@ -418,12 +418,14 @@ get_device_id(usb_printer_t *printer, /* * and then limit the length to the size of our buffer... */ - if (length > (bufsize - 2)) + if (length > bufsize) length = (((unsigned)buffer[1] & 255) << 8) + ((unsigned)buffer[0] & 255); - if (length > (bufsize - 2)) - length = bufsize - 2; + if (length > bufsize) + length = bufsize; + + length -= 2; /* * Copy the device ID text to the beginning of the buffer and Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.486 retrieving revision 1.487 diff -u -p -r1.486 -r1.487 --- cups.spec 24 Jul 2009 19:48:42 -0000 1.486 +++ cups.spec 28 Jul 2009 11:53:09 -0000 1.487 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.11%{?dist}.1 +Release: 0.%{pre}.12%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -56,7 +56,8 @@ Patch29: cups-str3259.patch Patch30: cups-uri-compat.patch Patch31: cups-str3254.patch Patch32: cups-str3253.patch -Patch33: cups-avahi.patch +Patch33: cups-str3266.patch +Patch34: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -210,7 +211,8 @@ module. %patch30 -p1 -b .uri-compat %patch31 -p1 -b .str3254 %patch32 -p1 -b .str3253 -#%patch33 -p1 -b .avahi +%patch33 -p1 -b .str3266 +#%patch34 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -503,6 +505,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +- Fixed Device ID reporting in the usb backend (STR #3266). + * Fri Jul 24 2009 Fedora Release Engineering - 1:1.4-0.rc1.11.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jwrdegoede at fedoraproject.org Tue Jul 28 12:00:22 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Tue, 28 Jul 2009 12:00:22 +0000 (UTC) Subject: rpms/lesstif/devel .cvsignore, 1.5, 1.6 lesstif-0.95.0-PutPixel32.patch, 1.1, 1.2 lesstif-0.95.0-XxxxProperty-64bit.patch, 1.2, 1.3 lesstif.spec, 1.27, 1.28 sources, 1.5, 1.6 lesstif-0.95-resource-fix.patch, 1.1, NONE lesstif-0.95-text.patch, 1.1, NONE lesstif-0.95.0-64bitcleanups.patch, 1.1, NONE lesstif-0.95.0-CAN-2005-0605.patch, 1.1, NONE lesstif-0.95.0-accelkeys.patch, 1.1, NONE lesstif-0.95.0-attach-bottom-self.patch, 1.1, NONE lesstif-0.95.0-c++fix.patch, 1.1, NONE lesstif-0.95.0-multilib.patch, 1.1, NONE lesstif-0.95.0-nolibdir.patch, 1.2, NONE lesstif-0.95.0-scroll.patch, 1.1, NONE lesstif-0.95.0-xtungrab-warning.patch, 1.1, NONE lesstif-Makefile.in.diff, 1.1, NONE Message-ID: <20090728120022.9F5D811C00D4@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/lesstif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2023 Modified Files: .cvsignore lesstif-0.95.0-PutPixel32.patch lesstif-0.95.0-XxxxProperty-64bit.patch lesstif.spec sources Removed Files: lesstif-0.95-resource-fix.patch lesstif-0.95-text.patch lesstif-0.95.0-64bitcleanups.patch lesstif-0.95.0-CAN-2005-0605.patch lesstif-0.95.0-accelkeys.patch lesstif-0.95.0-attach-bottom-self.patch lesstif-0.95.0-c++fix.patch lesstif-0.95.0-multilib.patch lesstif-0.95.0-nolibdir.patch lesstif-0.95.0-scroll.patch lesstif-0.95.0-xtungrab-warning.patch lesstif-Makefile.in.diff Log Message: * Tue Jul 28 2009 Hans de Goede 0.95.2-1 - New upstream release 0.95.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/lesstif/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 7 Jul 2008 21:32:34 -0000 1.5 +++ .cvsignore 28 Jul 2009 12:00:21 -0000 1.6 @@ -1,2 +1 @@ -lesstif-0.95.0.tar.bz2 -lesstif2_0.95.0-2.1.diff.gz +lesstif-0.95.2.tar.bz2 lesstif-0.95.0-PutPixel32.patch: Xpmcreate.c | 32 ++++++++------------------------ Xpmscan.c | 9 ++------- 2 files changed, 10 insertions(+), 31 deletions(-) Index: lesstif-0.95.0-PutPixel32.patch =================================================================== RCS file: /cvs/extras/rpms/lesstif/devel/lesstif-0.95.0-PutPixel32.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lesstif-0.95.0-PutPixel32.patch 16 Jun 2008 20:39:14 -0000 1.1 +++ lesstif-0.95.0-PutPixel32.patch 28 Jul 2009 12:00:21 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up lesstif-0.95.0/lib/Xm-2.1/Xpmcreate.c~ lesstif-0.95.0/lib/Xm-2.1/Xpmcreate.c ---- lesstif-0.95.0/lib/Xm-2.1/Xpmcreate.c~ 2008-06-16 22:22:43.000000000 +0200 -+++ lesstif-0.95.0/lib/Xm-2.1/Xpmcreate.c 2008-06-16 22:22:43.000000000 +0200 +diff -up lesstif-0.95.2/lib/Xm-2.1/Xpmcreate.c.cutpaste64 lesstif-0.95.2/lib/Xm-2.1/Xpmcreate.c +--- lesstif-0.95.2/lib/Xm-2.1/Xpmcreate.c.cutpaste64 2007-09-12 22:27:07.000000000 +0200 ++++ lesstif-0.95.2/lib/Xm-2.1/Xpmcreate.c 2009-07-28 11:32:07.000000000 +0200 @@ -179,9 +179,7 @@ LFUNC(PutImagePixels1, void, (XImage *im LFUNC(PutPixel1, int, (XImage *ximage, int x, int y, unsigned long pixel)); @@ -11,7 +11,67 @@ diff -up lesstif-0.95.0/lib/Xm-2.1/Xpmcr LFUNC(PutPixel32MSB, int, (XImage *ximage, int x, int y, unsigned long pixel)); LFUNC(PutPixel32LSB, int, (XImage *ximage, int x, int y, unsigned long pixel)); LFUNC(PutPixel16MSB, int, (XImage *ximage, int x, int y, unsigned long pixel)); -@@ -1879,7 +1877,6 @@ PutPixel(ximage, x, y, pixel) +@@ -1326,7 +1324,6 @@ PutImagePixels(image, width, height, pix + * write pixels into a 32-bits Z image data structure + */ + +-#if !defined(WORD64) && !defined(LONG64) + /* this item is static but deterministic so let it slide; doesn't + * hurt re-entrancy of this library. Note if it is actually const then would + * be OK under rules of ANSI-C but probably not C++ which may not +@@ -1334,8 +1331,6 @@ PutImagePixels(image, width, height, pix + */ + static unsigned long byteorderpixel = MSBFirst << 24; + +-#endif +- + /* + WITHOUT_SPEEDUPS is a flag to be turned on if you wish to use the original + 3.2e code - by default you get the speeded-up version. +@@ -1361,16 +1356,13 @@ PutImagePixels32(image, width, height, p + + data = (unsigned char *) image->data; + iptr = pixelindex; +-#if !defined(WORD64) && !defined(LONG64) + if (*((char *) &byteorderpixel) == image->byte_order) { + for (y = 0; y < height; y++) + for (x = 0; x < width; x++, iptr++) { + addr = &data[ZINDEX32(x, y, image)]; +- *((unsigned long *) addr) = pixels[*iptr]; ++ *((unsigned int *) addr) = pixels[*iptr]; + } +- } else +-#endif +- if (image->byte_order == MSBFirst) ++ } else if (image->byte_order == MSBFirst) + for (y = 0; y < height; y++) + for (x = 0; x < width; x++, iptr++) { + addr = &data[ZINDEX32(x, y, image)]; +@@ -1398,21 +1390,18 @@ PutImagePixels32(image, width, height, p + + data = (unsigned char *) image->data; + iptr = pixelindex; +-#if !defined(WORD64) && !defined(LONG64) + if (*((char *) &byteorderpixel) == image->byte_order) { + for (y = 0; y < height; y++) { + data_ptr = data; + max_data = data_ptr + (width << 2); + + while (data_ptr < max_data) { +- *((unsigned long *) data_ptr) = pixels[*(iptr++)]; ++ *((unsigned int *) data_ptr) = pixels[*(iptr++)]; + data_ptr += (1 << 2); + } + data += bpl; + } +- } else +-#endif +- if (image->byte_order == MSBFirst) ++ } else if (image->byte_order == MSBFirst) + for (y = 0; y < height; y++) { + data_ptr = data; + max_data = data_ptr + (width << 2); +@@ -1879,7 +1868,6 @@ PutPixel(ximage, x, y, pixel) return 1; } @@ -19,7 +79,7 @@ diff -up lesstif-0.95.0/lib/Xm-2.1/Xpmcr static int PutPixel32(ximage, x, y, pixel) register XImage *ximage; -@@ -1893,10 +1890,9 @@ PutPixel32(ximage, x, y, pixel) +@@ -1893,10 +1881,9 @@ PutPixel32(ximage, x, y, pixel) return 0; addr = &((unsigned char *)ximage->data) [ZINDEX32(x, y, ximage)]; @@ -31,7 +91,7 @@ diff -up lesstif-0.95.0/lib/Xm-2.1/Xpmcr static int PutPixel32MSB(ximage, x, y, pixel) -@@ -2211,15 +2207,12 @@ xpmParseDataAndCreate(display, data, ima +@@ -2211,15 +2198,12 @@ xpmParseDataAndCreate(display, data, ima else ximage->f.put_pixel = PutPixel16LSB; else if (ximage->bits_per_pixel == 32) @@ -50,3 +110,39 @@ diff -up lesstif-0.95.0/lib/Xm-2.1/Xpmcr else if ((ximage->bits_per_pixel | ximage->depth) == 1) ximage->f.put_pixel = PutPixel1; else +diff -up lesstif-0.95.2/lib/Xm-2.1/Xpmscan.c.cutpaste64 lesstif-0.95.2/lib/Xm-2.1/Xpmscan.c +--- lesstif-0.95.2/lib/Xm-2.1/Xpmscan.c.cutpaste64 2007-09-12 22:27:07.000000000 +0200 ++++ lesstif-0.95.2/lib/Xm-2.1/Xpmscan.c 2009-07-28 11:32:07.000000000 +0200 +@@ -763,9 +763,7 @@ GetImagePixels(image, width, height, pma + * scan pixels of a 32-bits Z image data structure + */ + +-#if !defined(WORD64) && !defined(LONG64) + static unsigned long byteorderpixel = MSBFirst << 24; +-#endif + + static int + GetImagePixels32(image, width, height, pmap) +@@ -786,20 +784,17 @@ GetImagePixels32(image, width, height, p + iptr = pmap->pixelindex; + depth = image->depth; + lbt = low_bits_table[depth]; +-#if !defined(WORD64) && !defined(LONG64) + if (*((char *) &byteorderpixel) == image->byte_order) { + for (y = 0; y < height; y++) + for (x = 0; x < width; x++, iptr++) { + addr = &data[ZINDEX32(x, y, image)]; +- pixel = *((unsigned long *) addr); ++ pixel = *((unsigned int *) addr); + if (depth != 32) + pixel &= lbt; + if (storePixel(pixel, pmap, iptr)) + return (XpmNoMemory); + } +- } else +-#endif +- if (image->byte_order == MSBFirst) ++ } else if (image->byte_order == MSBFirst) + for (y = 0; y < height; y++) + for (x = 0; x < width; x++, iptr++) { + addr = &data[ZINDEX32(x, y, image)]; lesstif-0.95.0-XxxxProperty-64bit.patch: CutPaste.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: lesstif-0.95.0-XxxxProperty-64bit.patch =================================================================== RCS file: /cvs/extras/rpms/lesstif/devel/lesstif-0.95.0-XxxxProperty-64bit.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lesstif-0.95.0-XxxxProperty-64bit.patch 16 Sep 2007 16:45:50 -0000 1.2 +++ lesstif-0.95.0-XxxxProperty-64bit.patch 28 Jul 2009 12:00:21 -0000 1.3 @@ -1,174 +1,17 @@ -diff -up lesstif-0.95.0/lib/Xm-2.1/CutPaste.c.XxxxProperty-64bit lesstif-0.95.0/lib/Xm-2.1/CutPaste.c ---- lesstif-0.95.0/lib/Xm-2.1/CutPaste.c.XxxxProperty-64bit 2004-08-28 21:22:43.000000000 +0200 -+++ lesstif-0.95.0/lib/Xm-2.1/CutPaste.c 2007-09-16 18:42:27.000000000 +0200 -@@ -62,7 +62,7 @@ static void _XmClipboardDeleteMarked(Dis - XmClipboard * clip); - static void _XmClipboardDeleteFormat(Display *display, int id); - static int _XmClipboardRegisterFormat(Display *display, char *format_name, -- int format_len); -+ long format_len); - static void _XmClipboardDeleteFormats(Display *display, Window window, int id); - static void _XmClipboardDeleteItem(Display *display, Window window, - XmClipboard * clip, unsigned item); -@@ -241,7 +241,7 @@ _XmClipboardDeleteItemLabel(Display *dis - - - static int --_XmClipboardRegisterFormat(Display *display, char *format_name, int format_len) -+_XmClipboardRegisterFormat(Display *display, char *format_name, long format_len) - { - Atom fmt; - int flen; -@@ -606,7 +606,17 @@ _XmClipboardGetWindowProperty(Display *d - - ret_buf = (unsigned *)XtRealloc((char *)ret_buf, - alloc_size + alloc_incr + 1); -- memcpy(&ret_buf[offset], prop, alloc_incr); -+ /* Fixup X*Property long == 32 bits confusion if needed */ -+ if (actual_format == 32 && sizeof(long) != 4) -+ { -+ int i; -+ unsigned long *in = (unsigned long *)prop; -+ -+ for (i = 0; i < nitems; i++) -+ ret_buf[offset + i] = in[i]; -+ } -+ else -+ memcpy(&ret_buf[offset], prop, alloc_incr); - alloc_size += alloc_incr; - - switch (actual_format) -@@ -1001,8 +1011,9 @@ _XmClipboardReplaceItem(Display *display - { - Window root; - Atom item; -- int nunits, tstart, tlen; -+ int i, nunits, tstart, tlen; - long transferlen; -+ long *convert_buf = NULL; - - root = DefaultRootWindow(display); - item = _XmClipboardGetAtomFromId(display, id); -@@ -1014,6 +1025,14 @@ _XmClipboardReplaceItem(Display *display - case 32: - len >>= 2; - nunits = transferlen; -+ /* XChangeProperty expects a buffer of longs when receiving 32 bits -+ data, MEUHH */ -+ if (sizeof(long) != 4) +diff -up lesstif-0.95.2/lib/Xm-2.1/CutPaste.c.long64 lesstif-0.95.2/lib/Xm-2.1/CutPaste.c +--- lesstif-0.95.2/lib/Xm-2.1/CutPaste.c.long64 2007-09-12 22:05:58.000000000 +0200 ++++ lesstif-0.95.2/lib/Xm-2.1/CutPaste.c 2009-07-28 11:32:20.000000000 +0200 +@@ -1028,9 +1028,11 @@ _XmClipboardReplaceItem(Display *display + /* XChangeProperty expects a buffer of longs when receiving 32 bits + data, MEUHH */ + if (sizeof(long) != 4) + { -+ convert_buf = XtMalloc(len * sizeof(long)); + convert_buf = XtMalloc(len * sizeof(long)); +- for (i = 0; i < len; i++) +- convert_buf[i] = data[i]; + for (i = 0; i < len; i++) + convert_buf[i] = data[i]; + } break; case 16: -@@ -1040,7 +1059,9 @@ _XmClipboardReplaceItem(Display *display - } - - XChangeProperty(display, root, item, item, format, mode, -- (unsigned char *)&data[tstart], tlen); -+ convert_buf? (unsigned char *)&convert_buf[tstart] : -+ (unsigned char *)&data[tstart], -+ tlen); - - len -= tlen; - mode = PropModeAppend; -@@ -1160,7 +1181,7 @@ _XmClipboardGetLenFromFormat(Display *di - } - else - { -- *format = *((int *)(prop)); -+ *format = *((long *)(prop)); - ret = True; - } - -diff -up lesstif-0.95.0/clients/Motif-2.1/mwm/props.c.XxxxProperty-64bit lesstif-0.95.0/clients/Motif-2.1/mwm/props.c ---- lesstif-0.95.0/clients/Motif-2.1/mwm/props.c.XxxxProperty-64bit 2004-08-28 21:25:46.000000000 +0200 -+++ lesstif-0.95.0/clients/Motif-2.1/mwm/props.c 2007-09-16 18:41:04.000000000 +0200 -@@ -92,15 +92,28 @@ PROP_Initialize(void) - void - PROP_SetBehavior(ScreenInfo *scr, Boolean custom) - { -- PropMotifWmInfo info; -+ long info[PROP_MWM_INFO_ELEMENTS]; - -- /* set the MWM_INFO property on the Root */ -+ /* set the MWM_INFO property on the Root, notice that we -+ use an array of longs here and not the PropMotifWmInfo struct, -+ this is because this struct looks like this in lesstif: -+ -+ typedef struct { -+ CARD32 flags; -+ CARD32 wmWindow; -+ } PropMotifWmInfo; -+ -+ But when setting 32 bit properties XChangeProperty expects an array of -+ longs, which it will convert to 32 bit values if need. Thus passing an -+ actual PropMotifWmInfo struct will mess things up on archs where longs -+ are 64 bit. */ -+ - if (custom) -- info.flags = MWM_INFO_STARTUP_CUSTOM; -+ info[0] = MWM_INFO_STARTUP_CUSTOM; /* set flags "member" */ - else -- info.flags = MWM_INFO_STARTUP_STANDARD; -+ info[0] = MWM_INFO_STARTUP_STANDARD; /* set flags "member" */ - -- info.wmWindow = scr->root_win; -+ info[1] = scr->root_win; /* set wmWindow "member" */ - - XChangeProperty(dpy, scr->root_win, XA_MWM_INFO, XA_MWM_INFO, - 32, PropModeReplace, -@@ -129,7 +142,18 @@ PROP_GetBehavior(ScreenInfo *scr) - int actual_format, ret; - Atom actual_type; - unsigned long nitems, bytesafter; -- PropMotifWmInfo *info; -+ /* We use a long pointer here and not a PropMotifWmInfo pointer, -+ this is because this type looks like this in lesstif: -+ -+ typedef struct { -+ CARD32 flags; -+ CARD32 wmWindow; -+ } PropMotifWmInfo; -+ -+ But when getting 32 bit properties XGetWindowProperty returns an array -+ of longs. Thus interpreting the returned data as PropMotifWmInfo will -+ mess things up on archs where longs are 64 bit. */ -+ unsigned long *info; - - if (XGetWindowProperty(dpy, scr->root_win, XA_MWM_INFO, 0L, - PROP_MOTIF_WM_INFO_ELEMENTS, False, -@@ -138,7 +162,7 @@ PROP_GetBehavior(ScreenInfo *scr) - (unsigned char **)&info) == Success) - { - if (nitems > 0 && info) -- ret = info->flags; -+ ret = info[0]; /* Return flags "member" */ - else - ret = 0; - XFree((char *)info); -@@ -284,7 +308,21 @@ PROP_GetMwmHints(MwmWindow *win) - { - - if (nitems >= PROP_MOTIF_WM_HINTS_ELEMENTS) -+ { -+ /* Fixup X*Property long == 32 bits confusion if needed */ -+ if (sizeof(long) != 4) -+ { -+ long *prop_hints = (long *)win->mwm_hints; -+ win->mwm_hints = XtMalloc(sizeof(MwmHints)); -+ win->mwm_hints->flags = prop_hints[0]; -+ win->mwm_hints->functions = prop_hints[1]; -+ win->mwm_hints->decorations = prop_hints[2]; -+ win->mwm_hints->input_mode = prop_hints[3]; -+ win->mwm_hints->status = prop_hints[4]; -+ XFree(prop_hints); -+ } - return; -+ } - - XFree((char *)win->mwm_hints); - } Index: lesstif.spec =================================================================== RCS file: /cvs/extras/rpms/lesstif/devel/lesstif.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- lesstif.spec 25 Jul 2009 05:05:23 -0000 1.27 +++ lesstif.spec 28 Jul 2009 12:00:22 -0000 1.28 @@ -1,7 +1,7 @@ Summary: OSF/Motif library clone Name: lesstif -Version: 0.95.0 -Release: 29%{?dist} +Version: 0.95.2 +Release: 1%{?dist} License: LGPLv2+ # in Xm-2.1/ # some files are MIT @@ -37,32 +37,12 @@ Source0: http://downloads.sourceforge.ne Source1: lesstif-xmbind # mwm session file Source2: mwm.desktop -# put mwm conf file in %{_sysconfdir}, and install Dt in %_libdir -Patch0: lesstif-Makefile.in.diff -# have motif-config honor libdir -Patch1: lesstif-0.95.0-multilib.patch -Patch2: lesstif-0.95.0-CAN-2005-0605.patch -Patch3: lesstif-0.95.0-64bitcleanups.patch -Patch4: lesstif-0.95.0-c++fix.patch -Patch5: http://ftp.debian.org/debian/pool/main/l/lesstif2/lesstif2_0.95.0-2.1.diff.gz -Patch6: lesstif-0.95.0-scroll.patch -Patch8: lesstif-0.95-resource-fix.patch -Patch9: lesstif-0.95-text.patch -Patch10: lesstif-0.95.0-XxxxProperty-64bit.patch -Patch11: lesstif-0.95.0-accelkeys.patch -Patch12: lesstif-0.95.0-attach-bottom-self.patch -Patch13: lesstif-0.95.0-xtungrab-warning.patch -# remove reference to libdir, since it is not necessary, and leads to -# conflict in multiarch setups -Patch14: lesstif-0.95.0-nolibdir.patch -Patch15: lesstif-0.95.0-PutPixel32.patch +Patch0: lesstif-0.95.2-motif-config.patch +Patch1: lesstif-0.95.0-XxxxProperty-64bit.patch +Patch2: lesstif-0.95.0-PutPixel32.patch Url: http://www.lesstif.org/ -# monolithic X -#BuildRequires: xorg-x11-devel -#BuildRequires: xorg-x11-deprecated-libs-devel - BuildRequires: libXp-devel libXt-devel libXext-devel BuildRequires: freetype-devel fontconfig-devel # lynx is used to transform html in txt @@ -144,65 +124,41 @@ along with lesstif. %setup -q chmod a-x COPYING* doc/www.lesstif.org/BUG-HUNTING.html %patch0 -p1 -%patch1 -p1 -b .multilib +%patch1 -p1 %patch2 -p1 -%patch3 -p1 -%patch4 -p1 -b .VendorSP -%patch5 -p1 -%patch6 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -b .XxxxProperty-64bit -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 -b .nolibdir -%patch15 -p1 - -# and pick up some fixes from Debian -patch -p1 < debian/patches/020_xpmpipethrough.diff -patch -p1 < debian/patches/021_xim_chained_list_crash.diff -patch -p1 < debian/patches/030_manpage.diff -patch -p1 < debian/patches/020_render_table_crash.diff -# patch3 is 020_bad_integer_cast.diff -# patch0 contains 000_libtool_linking.diff -# Patch2 is 020_unsigned_int.diff -# 000_bootstrap_script.diff, 010_rebootstrap.diff not useful. -# 020_missing_xm_h.diff? - -# correct patched header file timestamp -touch -r include/Motif-2.1/Xm/VendorSP.h.VendorSP include/Motif-2.1/Xm/VendorSP.h - -# those substitutions are not really usefull, since the symbols are redefined -# in the Makefile, but it is clearer like that -touch -r clients/Motif-2.1/mwm/mwm.h __mwm_stamp -sed -i -e 's:"/usr/X11/include":"%{_includedir}":' \ - -e 's:"/usr/lib/X11/mwm":"%{_sysconfdir}/mwm":' clients/Motif-2.1/mwm/mwm.h -touch -r __mwm_stamp clients/Motif-2.1/mwm/mwm.h -rm __mwm_stamp + %build # --enable-shared --disable-static is the default # the x libs and includes are empty in the default case, but we need to # have a non empty include defined (for a substitution in mwm) +# --enable-production \ +# --disable-debug \ + # --enable-production is needed in order to avoid # http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-4124 %configure \ --enable-shared \ --disable-static \ --with-xdnd \ - --enable-production \ - --disable-debug \ --x-includes=%{_includedir} \ --x-libraries=%{_libdir} -make %{?_smp_mflags} +# Don't use rpath! +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + +make %{?_smp_mflags} \ + mwmddir='%{_sysconfdir}/mwm' libdir='%{_libdir}' \ + appdir='%{_datadir}/X11/app-defaults' configdir='%{_datadir}/X11/config' + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT \ + mwmddir='%{_sysconfdir}/mwm' libdir='%{_libdir}' \ appdir='%{_datadir}/X11/app-defaults' configdir='%{_datadir}/X11/config' \ INSTALL="install -p" @@ -236,9 +192,6 @@ mkdir -p $RPM_BUILD_ROOT%{_includedir}/X # will be in in %%doc rm $RPM_BUILD_ROOT%{_sysconfdir}/mwm/README $RPM_BUILD_ROOT%{_sysconfdir}/mwm/alt.map -# the corresponding file is not shipped -rm $RPM_BUILD_ROOT%{_mandir}/man*/ltversion* - # prepare docs rm -rf __dist_clean_docs cp -a doc __dist_clean_docs @@ -256,6 +209,10 @@ done # remove the empty directory rmdir __dist_clean_docs/lessdox/functions +# the corresponding file is not shipped +rm $RPM_BUILD_ROOT%{_mandir}/man*/ltversion* +rm __dist_clean_docs/lessdox/clients/ltversion.html + # remove host.def, it lives in the imake package rm $RPM_BUILD_ROOT%{_datadir}/X11/config/host.def @@ -318,6 +275,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Hans de Goede 0.95.2-1 +- New upstream release 0.95.2 + * Fri Jul 24 2009 Fedora Release Engineering - 0.95.0-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/lesstif/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 7 Jul 2008 21:32:34 -0000 1.5 +++ sources 28 Jul 2009 12:00:22 -0000 1.6 @@ -1,2 +1 @@ -ab895165c149d7f95843c7584b1c7ad4 lesstif-0.95.0.tar.bz2 -89e1e1823eb37a40a54330a834c68b6b lesstif2_0.95.0-2.1.diff.gz +754187dbac09fcf5d18296437e72a32f lesstif-0.95.2.tar.bz2 --- lesstif-0.95-resource-fix.patch DELETED --- --- lesstif-0.95-text.patch DELETED --- --- lesstif-0.95.0-64bitcleanups.patch DELETED --- --- lesstif-0.95.0-CAN-2005-0605.patch DELETED --- --- lesstif-0.95.0-accelkeys.patch DELETED --- --- lesstif-0.95.0-attach-bottom-self.patch DELETED --- --- lesstif-0.95.0-c++fix.patch DELETED --- --- lesstif-0.95.0-multilib.patch DELETED --- --- lesstif-0.95.0-nolibdir.patch DELETED --- --- lesstif-0.95.0-scroll.patch DELETED --- --- lesstif-0.95.0-xtungrab-warning.patch DELETED --- --- lesstif-Makefile.in.diff DELETED --- From hadess at fedoraproject.org Tue Jul 28 12:00:31 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 28 Jul 2009 12:00:31 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/F-11 gstreamer-plugins-base.spec, 1.76, 1.77 0001-Move-plugin-selector-to-gst-plugins-base.patch, 1.1, NONE gst-cdparanoia-buffering.patch, 1.1, NONE gstpb-0.10.15-cd-speed.patch, 1.1, NONE Message-ID: <20090728120031.A2DF111C00D4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2115 Modified Files: gstreamer-plugins-base.spec Removed Files: 0001-Move-plugin-selector-to-gst-plugins-base.patch gst-cdparanoia-buffering.patch gstpb-0.10.15-cd-speed.patch Log Message: Remove obsoleted patches Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/F-11/gstreamer-plugins-base.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- gstreamer-plugins-base.spec 28 Jul 2009 11:44:21 -0000 1.76 +++ gstreamer-plugins-base.spec 28 Jul 2009 12:00:31 -0000 1.77 @@ -14,15 +14,6 @@ URL: http://gstreamer.freedesktop.org/ Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: gstpb-0.10.15-cd-speed.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=586356 -# https://bugzilla.redhat.com/show_bug.cgi?id=506767 -Patch1: 0001-Move-plugin-selector-to-gst-plugins-base.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=507453 -# http://bugzilla.gnome.org/show_bug.cgi?id=586331 -Patch2: gst-cdparanoia-buffering.patch -BuildRequires: automake autoconf libtool - Requires: %{gstreamer} >= %{_gst} Requires: liboil >= 0.3.12-9 BuildRequires: %{gstreamer}-devel >= %{_gst} @@ -59,11 +50,6 @@ This package contains a set of well-main %prep %setup -q -n gst-plugins-base-%{version} -%patch0 -p1 -b .cd-speed -%patch1 -p1 -b .input-selector -%patch2 -p1 -b .cdparanoia -libtoolize -f -autoreconf %build %configure \ --- 0001-Move-plugin-selector-to-gst-plugins-base.patch DELETED --- --- gst-cdparanoia-buffering.patch DELETED --- --- gstpb-0.10.15-cd-speed.patch DELETED --- From hadess at fedoraproject.org Tue Jul 28 12:01:58 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 28 Jul 2009 12:01:58 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel .cvsignore, 1.26, 1.27 gstreamer-plugins-base.spec, 1.84, 1.85 sources, 1.27, 1.28 Message-ID: <20090728120158.8B23611C00D4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2829 Modified Files: .cvsignore gstreamer-plugins-base.spec sources Log Message: * Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 - Update to 0.10.23.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 21 Jul 2009 12:03:57 -0000 1.26 +++ .cvsignore 28 Jul 2009 12:01:58 -0000 1.27 @@ -1 +1 @@ -gst-plugins-base-0.10.23.3.tar.bz2 +gst-plugins-base-0.10.23.4.tar.bz2 Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- gstreamer-plugins-base.spec 25 Jul 2009 01:36:31 -0000 1.84 +++ gstreamer-plugins-base.spec 28 Jul 2009 12:01:58 -0000 1.85 @@ -4,8 +4,8 @@ %define _gst 0.10.22 Name: %{gstreamer}-plugins-base -Version: 0.10.23.3 -Release: 3%{?dist} +Version: 0.10.23.4 +Release: 1%{?dist} Summary: GStreamer streaming media framework base plug-ins Group: Applications/Multimedia @@ -245,6 +245,9 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Tue Jul 28 2009 Bastien Nocera 0.10.23.4-1 +- Update to 0.10.23.4 + * Fri Jul 24 2009 Fedora Release Engineering - 0.10.23.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 Jul 2009 12:03:57 -0000 1.27 +++ sources 28 Jul 2009 12:01:58 -0000 1.28 @@ -1 +1 @@ -ae26e7cfd13cbbcf78658f9ada7866a0 gst-plugins-base-0.10.23.3.tar.bz2 +78594c5672b3bf41b37a3a9f7c16bb3b gst-plugins-base-0.10.23.4.tar.bz2 From mmaslano at fedoraproject.org Tue Jul 28 12:17:18 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Tue, 28 Jul 2009 12:17:18 +0000 (UTC) Subject: rpms/anacron/F-11 anacron.spec,1.66,1.67 sources,1.7,1.8 Message-ID: <20090728121718.7F9B211C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/anacron/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8912 Modified Files: anacron.spec sources Log Message: * Tue Jul 28 2009 Marcela Ma?l??ov? 2.3-77 - and now apply the change in anacron script Index: anacron.spec =================================================================== RCS file: /cvs/pkgs/rpms/anacron/F-11/anacron.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- anacron.spec 13 Jul 2009 13:02:05 -0000 1.66 +++ anacron.spec 28 Jul 2009 12:17:18 -0000 1.67 @@ -1,7 +1,7 @@ Summary: A cron-like program that can run jobs lost during downtime Name: anacron Version: 2.3 -Release: 76%{?dist} +Release: 77%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://packages.debian.org/stable/source/anacron @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) /etc/cron.hourly/0anacron %changelog +* Tue Jul 28 2009 Marcela Ma?l??ov? 2.3-77 +- and now apply the change in anacron script + * Tue Jun 23 2009 Marcela Ma?l??ov? 2.3-76 - 507598 test whether /var/spool/anacron/cron.daily exists Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anacron/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 15 May 2009 12:12:52 -0000 1.7 +++ sources 28 Jul 2009 12:17:18 -0000 1.8 @@ -1,3 +1,3 @@ 9fdfc50f5741643332722a9145146278 anacron_2.3.orig.tar.gz -110558bab1719a8b91598fdcfceebed0 anacron 4b98b6b029e76aa6e0fa3fde2ec5572a 0hourly +1d08c5163b0c3ca9790db9187b005cf1 anacron From itamarjp at fedoraproject.org Tue Jul 28 12:19:24 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 12:19:24 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.28,1.29 import.log,1.6,1.7 Message-ID: <20090728121924.A874611C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9768/devel Modified Files: clutter.spec import.log Log Message: - Obsoletes clutter-cairo Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- clutter.spec 24 Jul 2009 19:09:08 -0000 1.28 +++ clutter.spec 28 Jul 2009 12:19:24 -0000 1.29 @@ -1,6 +1,6 @@ Name: clutter Version: 0.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open Source software library for creating rich graphical user interfaces Group: Development/Libraries @@ -22,6 +22,9 @@ BuildRequires: gir-repository-devel Patch0: clutter-fix-dolt-check.patch BuildRequires: automake autoconf libtool +Obsoletes: clutter-cairo < 0.9 +Provides: clutter-cairo = 0.9 + %description Clutter is an open source software library for creating fast, visually rich graphical user interfaces. The most obvious example @@ -102,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 0.9.8-3 +- fix bz #507389 + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 22 Jan 2009 13:59:48 -0000 1.6 +++ import.log 28 Jul 2009 12:19:24 -0000 1.7 @@ -4,3 +4,4 @@ clutter-0_8_2-1_fc9:HEAD:clutter-0.8.2-1 clutter-0_8_6-1_fc10:HEAD:clutter-0.8.6-1.fc10.src.rpm:1232595301 clutter-0_8_6-2_fc10:HEAD:clutter-0.8.6-2.fc10.src.rpm:1232630582 clutter-0_8_6-3_fc10:HEAD:clutter-0.8.6-3.fc10.src.rpm:1232632595 +clutter-0_9_8-3_fc12:HEAD:clutter-0.9.8-3.fc12.src.rpm:1248783521 From twaugh at fedoraproject.org Tue Jul 28 12:21:44 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 12:21:44 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3262.patch,NONE,1.1 cups.spec,1.489,1.490 Message-ID: <20090728122144.F250011C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11624 Modified Files: cups.spec Added Files: cups-str3262.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 - Prevent ipp backend looping with bad IPP devices (bug #476424, STR #3262). cups-str3262.patch: ipp.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- NEW FILE cups-str3262.patch --- diff -up cups-1.4rc1/backend/ipp.c.str3262 cups-1.4rc1/backend/ipp.c --- cups-1.4rc1/backend/ipp.c.str3262 2009-07-28 13:12:55.021509189 +0100 +++ cups-1.4rc1/backend/ipp.c 2009-07-28 13:13:19.817508734 +0100 @@ -1315,7 +1315,16 @@ main(int argc, /* I - Number of comm if (response) { if ((job_state = ippFindAttribute(response, "job-state", - IPP_TAG_ENUM)) != NULL) + IPP_TAG_ENUM)) == NULL) + { + ippDelete(response); + + _cupsLangPrintf(stderr, + _("ERROR: Unable to get job-state for job %d!\n"), + job_id); + break; + } + else { /* * Stop polling if the job is finished or pending-held... Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.489 retrieving revision 1.490 diff -u -p -r1.489 -r1.490 --- cups.spec 28 Jul 2009 11:51:43 -0000 1.489 +++ cups.spec 28 Jul 2009 12:21:44 -0000 1.490 @@ -57,7 +57,8 @@ Patch30: cups-uri-compat.patch Patch31: cups-str3254.patch Patch32: cups-str3253.patch Patch33: cups-str3266.patch -Patch34: cups-avahi.patch +Patch34: cups-str3262.patch +Patch35: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -212,7 +213,8 @@ module. %patch31 -p1 -b .str3254 %patch32 -p1 -b .str3253 %patch33 -p1 -b .str3266 -#%patch34 -p1 -b .avahi +%patch34 -p1 -b .str3262 +#%patch35 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -506,6 +508,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 +- Prevent ipp backend looping with bad IPP devices (bug #476424, + STR #3262). - Fixed Device ID reporting in the usb backend (STR #3266). * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 From twaugh at fedoraproject.org Tue Jul 28 12:22:39 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 12:22:39 +0000 (UTC) Subject: rpms/cups/devel cups-str3262.patch,NONE,1.1 cups.spec,1.487,1.488 Message-ID: <20090728122239.8393C11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12053 Modified Files: cups.spec Added Files: cups-str3262.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 - Prevent ipp backend looping with bad IPP devices (bug #476424, STR #3262). cups-str3262.patch: ipp.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- NEW FILE cups-str3262.patch --- diff -up cups-1.4rc1/backend/ipp.c.str3262 cups-1.4rc1/backend/ipp.c --- cups-1.4rc1/backend/ipp.c.str3262 2009-07-28 13:12:55.021509189 +0100 +++ cups-1.4rc1/backend/ipp.c 2009-07-28 13:13:19.817508734 +0100 @@ -1315,7 +1315,16 @@ main(int argc, /* I - Number of comm if (response) { if ((job_state = ippFindAttribute(response, "job-state", - IPP_TAG_ENUM)) != NULL) + IPP_TAG_ENUM)) == NULL) + { + ippDelete(response); + + _cupsLangPrintf(stderr, + _("ERROR: Unable to get job-state for job %d!\n"), + job_id); + break; + } + else { /* * Stop polling if the job is finished or pending-held... Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.487 retrieving revision 1.488 diff -u -p -r1.487 -r1.488 --- cups.spec 28 Jul 2009 11:53:09 -0000 1.487 +++ cups.spec 28 Jul 2009 12:22:39 -0000 1.488 @@ -57,7 +57,8 @@ Patch30: cups-uri-compat.patch Patch31: cups-str3254.patch Patch32: cups-str3253.patch Patch33: cups-str3266.patch -Patch34: cups-avahi.patch +Patch34: cups-str3262.patch +Patch35: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -212,7 +213,8 @@ module. %patch31 -p1 -b .str3254 %patch32 -p1 -b .str3253 %patch33 -p1 -b .str3266 -#%patch34 -p1 -b .avahi +%patch34 -p1 -b .str3262 +#%patch35 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -506,6 +508,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +- Prevent ipp backend looping with bad IPP devices (bug #476424, + STR #3262). - Fixed Device ID reporting in the usb backend (STR #3266). * Fri Jul 24 2009 Fedora Release Engineering - 1:1.4-0.rc1.11.1 From pkgdb at fedoraproject.org Tue Jul 28 12:22:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:43 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122243.99B9E10F899@bastion2.fedora.phx.redhat.com> veillard has set the watchbugzilla acl on libvirt-java (Fedora devel) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:22:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:44 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122244.8CCAC10F8B4@bastion2.fedora.phx.redhat.com> veillard has set the watchcommits acl on libvirt-java (Fedora devel) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:22:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:47 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122247.90D9B10F8B0@bastion2.fedora.phx.redhat.com> veillard has set the commit acl on libvirt-java (Fedora devel) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:22:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:53 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122253.AAECA10F8B6@bastion2.fedora.phx.redhat.com> veillard has set the watchbugzilla acl on libvirt-java (Fedora 9) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:22:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:54 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122255.1985810F8BA@bastion2.fedora.phx.redhat.com> veillard has set the watchcommits acl on libvirt-java (Fedora 9) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:22:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:22:57 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122257.DEDC110F8BC@bastion2.fedora.phx.redhat.com> veillard has set the commit acl on libvirt-java (Fedora 9) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:11 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122312.5F91910F89C@bastion2.fedora.phx.redhat.com> veillard has set the watchbugzilla acl on libvirt-java (Fedora 10) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:13 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122313.7E94010F89D@bastion2.fedora.phx.redhat.com> veillard has set the watchcommits acl on libvirt-java (Fedora 10) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:16 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122317.102E410F8B4@bastion2.fedora.phx.redhat.com> veillard has set the commit acl on libvirt-java (Fedora 10) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:20 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122320.92E7210F856@bastion2.fedora.phx.redhat.com> veillard has set the watchbugzilla acl on libvirt-java (Fedora 11) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:21 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122321.B4A4B10F8B6@bastion2.fedora.phx.redhat.com> veillard has set the watchcommits acl on libvirt-java (Fedora 11) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Tue Jul 28 12:23:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 12:23:24 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090728122324.D096710F8C2@bastion2.fedora.phx.redhat.com> veillard has set the commit acl on libvirt-java (Fedora 11) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From fabbione at fedoraproject.org Tue Jul 28 12:30:54 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 12:30:54 +0000 (UTC) Subject: rpms/corosync/F-11 corosync.spec, 1.24, 1.25 sources, 1.5, 1.6 fix-pkgconfig.diff, 1.1, NONE Message-ID: <20090728123054.4E07A11C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/corosync/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15387 Modified Files: corosync.spec sources Removed Files: fix-pkgconfig.diff Log Message: New upstream release to fix several major bugs Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/F-11/corosync.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- corosync.spec 30 Mar 2009 07:00:39 -0000 1.24 +++ corosync.spec 28 Jul 2009 12:30:54 -0000 1.25 @@ -1,14 +1,13 @@ -## define alphatag svn1797 +# define alphatag svn1211 Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces -Version: 0.95 -Release: 2%{?alphatag:.%{alphatag}}%{?dist} +Version: 1.0.0 +Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://www.openais.org Source0: http://developer.osdl.org/dev/openais/downloads/corosync-%{version}/corosync-%{version}.tar.gz -Patch0: fix-pkgconfig.diff # Runtime bits Requires: corosynclib = %{version}-%{release} @@ -17,32 +16,28 @@ Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Conflicts: openais <= 0.89, openais-devel <= 0.89 -# Setup/build bits -%define ais_user_uid 39 - %define buildtrunk 0 +%{?alphatag: %define buildtrunk 1} %{?_with_buildtrunk: %define buildtrunk 1} %if %{buildtrunk} BuildRequires: autoconf automake %endif +BuildRequires: nss-devel BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %prep %setup -q -n corosync-%{version} -%patch0 -p1 %if %{buildtrunk} -if [ ! -f configure ]; then - ./autogen.sh -fi +./autogen.sh %endif -%{_configure} CFLAGS="$(echo '%{optflags}')" \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ +%{_configure} CFLAGS="$(echo '%{optflags}')" \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ --libdir=%{_libdir} %build @@ -68,11 +63,6 @@ rm -rf %{buildroot} This package contains the Corosync Cluster Engine Executive, several default APIs and libraries, default configuration files, and an init script. -%pre -# Add the "ais" user -/usr/sbin/useradd -c 'The Corosync Cluster Engine' \ - -u %{ais_user_uid} -s /sbin/nologin -r -d '/' ais 2> /dev/null || : - %post /sbin/chkconfig --add corosync || : @@ -94,7 +84,9 @@ fi %{_sbindir}/corosync-cfgtool %{_sbindir}/corosync-fplay %{_sbindir}/corosync-pload -%config(noreplace) /etc/corosync.conf +%dir %{_sysconfdir}/corosync +%dir %{_sysconfdir}/corosync/uidgid.d +%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example %{_initddir}/corosync %dir %{_libexecdir}/lcrso %{_libexecdir}/lcrso/coroparse.lcrso @@ -108,7 +100,7 @@ fi %{_libexecdir}/lcrso/quorum_testquorum.lcrso %{_libexecdir}/lcrso/vsf_quorum.lcrso %{_libexecdir}/lcrso/vsf_ykd.lcrso -%{_libexecdir}/lcrso/quorum.lcrso +%dir %{_localstatedir}/lib/corosync %{_mandir}/man8/corosync_overview.8* %{_mandir}/man8/corosync-objctl.8* %{_mandir}/man5/corosync.conf.5* @@ -157,6 +149,9 @@ The Corosync Cluster Engine APIs. %doc LICENSE README.devmap %dir %{_includedir}/corosync/ %{_includedir}/corosync/cs_config.h +%{_includedir}/corosync/corodefs.h +%{_includedir}/corosync/coroipc_types.h +%{_includedir}/corosync/coroipcs.h %{_includedir}/corosync/coroipcc.h %{_includedir}/corosync/cfg.h %{_includedir}/corosync/confdb.h @@ -164,7 +159,6 @@ The Corosync Cluster Engine APIs. %{_includedir}/corosync/cpg.h %{_includedir}/corosync/evs.h %{_includedir}/corosync/hdb.h -%{_includedir}/corosync/ipc_gen.h %{_includedir}/corosync/list.h %{_includedir}/corosync/mar_gen.h %{_includedir}/corosync/swab.h @@ -209,6 +203,39 @@ The Corosync Cluster Engine APIs. %{_mandir}/man8/coroipc_overview.8* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release +- spec file updates: + * more consistent use of macros across the board + * fix directory ownership + +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + +* Sat Jun 20 2009 Fabio M. Di Nitto - 0.98-1 +- New upstream release +- spec file updates: + * Drop corosync-trunk patch and alpha tag. + * Fix alphatag vs buildtrunk handling. + * Drop requirement on ais user/group and stop creating them. + * New config file locations from upstream: /etc/corosync/corosync.conf. + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.97-1.svn2233 +- spec file updates: + * Update to svn version 2233 to include library linking fixes + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.97-1.svn2232 +- New upstream release +- spec file updates: + * Drop pkgconfig fix that's now upstream + * Update to svn version 2232 + * Define buildtrunk if we are using svn snapshots + * BuildRequires: nss-devel to enable nss crypto for network communication + * Force autogen invokation if buildtrunk is defined + * Whitespace cleanup + * Stop shipping corosync.conf in favour of a generic example + * Update file list + * Mon Mar 30 2009 Fabio M. Di Nitto - 0.95-2 - Backport svn commit 1913 to fix pkgconfig files generation and unbreak lvm2 build. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/corosync/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Mar 2009 07:33:41 -0000 1.5 +++ sources 28 Jul 2009 12:30:54 -0000 1.6 @@ -1 +1 @@ -24b268b66d95b09f7177c73bb226de74 corosync-0.95.tar.gz +257f5509f3da951ba84b596fedf42185 corosync-1.0.0.tar.gz --- fix-pkgconfig.diff DELETED --- From steved at fedoraproject.org Tue Jul 28 12:33:38 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Tue, 28 Jul 2009 12:33:38 +0000 (UTC) Subject: rpms/nfs-utils/devel nfs-utils-1.2.0-nfsd-41vers.patch, NONE, 1.1 nfs-utils.spec, 1.237, 1.238 Message-ID: <20090728123338.E70F511C00D4@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/nfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16637 Modified Files: nfs-utils.spec Added Files: nfs-utils-1.2.0-nfsd-41vers.patch Log Message: Fixed 4.1 versioning problem (bz 512377) nfs-utils-1.2.0-nfsd-41vers.patch: nfssvc.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) --- NEW FILE nfs-utils-1.2.0-nfsd-41vers.patch --- diff -up nfs-utils-1.2.0/support/nfs/nfssvc.c.orig nfs-utils-1.2.0/support/nfs/nfssvc.c --- nfs-utils-1.2.0/support/nfs/nfssvc.c.orig 2009-06-02 10:43:05.000000000 -0400 +++ nfs-utils-1.2.0/support/nfs/nfssvc.c 2009-07-27 11:22:13.000000000 -0400 @@ -127,17 +127,19 @@ nfssvc_versbits(unsigned int ctlbits, in if (fd < 0) return; + n = minorvers4 >= 0 ? minorvers4 : -minorvers4; + if (n >= NFSD_MINMINORVERS4 && n <= NFSD_MAXMINORVERS4) + off += snprintf(ptr+off, BUFSIZ - off, "%c4.%d ", + minorvers4 > 0 ? '+' : '-', + n); + for (n = NFSD_MINVERS; n <= NFSD_MAXVERS; n++) { if (NFSCTL_VERISSET(ctlbits, n)) off += snprintf(ptr+off, BUFSIZ - off, "+%d ", n); else off += snprintf(ptr+off, BUFSIZ - off, "-%d ", n); } - n = minorvers4 >= 0 ? minorvers4 : -minorvers4; - if (n >= NFSD_MINMINORVERS4 && n <= NFSD_MAXMINORVERS4) - off += snprintf(ptr+off, BUFSIZ - off, "%c4.%d", - minorvers4 > 0 ? '+' : '-', - n); + snprintf(ptr+off, BUFSIZ - off, "\n"); if (write(fd, buf, strlen(buf)) != strlen(buf)) { syslog(LOG_ERR, "nfssvc: Setting version failed: errno %d (%s)", Index: nfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs-utils/devel/nfs-utils.spec,v retrieving revision 1.237 retrieving revision 1.238 diff -u -p -r1.237 -r1.238 --- nfs-utils.spec 15 Jul 2009 14:37:40 -0000 1.237 +++ nfs-utils.spec 28 Jul 2009 12:33:38 -0000 1.238 @@ -2,7 +2,7 @@ Summary: NFS utilities and supporting cl Name: nfs-utils URL: http://sourceforge.net/projects/nfs Version: 1.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Epoch: 1 # group all 32bit related archs @@ -25,6 +25,7 @@ Patch02: nfs-utils-1.1.0-exp-subtree-war Patch100: nfs-utils-1.2.1-rc1.patch Patch101: nfs-utils-1.2.1-rc2.patch Patch102: nfs-utils-1.2.0-proots-rel5.patch +Patch103: nfs-utils-1.2.0-nfsd-41vers.patch Group: System Environment/Daemons Provides: exportfs = %{epoch}:%{version}-%{release} @@ -79,6 +80,7 @@ This package also contains the mount.nfs %patch100 -p1 %patch101 -p1 %patch102 -p1 +%patch103 -p1 # Remove .orig files find . -name "*.orig" | xargs rm -f @@ -247,7 +249,10 @@ fi %attr(4755,root,root) /sbin/umount.nfs4 %changelog -* Wed Jul 15 10:36:20 EDT 2009 +* Tue Jul 28 2009 1.2.0-8 +- Fixed 4.1 versioning problem (bz 512377) + +* Wed Jul 15 2009 1.2.0-7 - Added upstream 1.2.1-rc2 patch - A large number of mount command changes. From fabbione at fedoraproject.org Tue Jul 28 12:46:36 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 12:46:36 +0000 (UTC) Subject: rpms/openais/F-11 openais.spec,1.42,1.43 sources,1.14,1.15 Message-ID: <20090728124636.6684111C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/openais/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22444 Modified Files: openais.spec sources Log Message: New upstream stable release fixes several major bugs Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/F-11/openais.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- openais.spec 24 Mar 2009 08:30:17 -0000 1.42 +++ openais.spec 28 Jul 2009 12:46:35 -0000 1.43 @@ -1,8 +1,8 @@ -## define alphatag svn1741 +# define alphatag 0 Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs -Version: 0.94 +Version: 1.0.0 Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base @@ -12,30 +12,53 @@ Source0: http://www.osdl.org/downloads/o # Runtime bits Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig -Requires: corosync >= 0.95-1 +Requires: corosync >= 1.0.0-1 Requires: openaislib = %{version}-%{release} Conflicts: openais-devel <= 0.89 # Setup/build bits +BuildRequires: corosynclib-devel >= 1.0.0-1 + +%define buildtrunk 0 +%{?alphatag: %define buildtrunk 1} +%{?_with_buildtrunk: %define buildtrunk 1} + +%if %{buildtrunk} +BuildRequires: autoconf automake +%endif + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: corosynclib-devel >= 0.95-1 %prep %setup -q -n openais-%{version} +%if %{buildtrunk} +./autogen.sh +%endif + +%{_configure} CFLAGS="$(echo '%{optflags}')" \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ + --libdir=%{_libdir} \ + --with-lcrso-dir=$(pkg-config corosync --variable lcrsodir) + %build -# -O3 required for performance reasons -# So we get proper debug output, for now we don't compile with O3 -#CFLAGS="$(echo '%{optflags}' | sed -e 's/-O[0-9]*//') -O3" -CFLAGS="$(echo '%{optflags}')" -make CFLAGS="$CFLAGS" +make %{_smp_mflags} %install rm -rf %{buildroot} -make install DESTDIR=%{buildroot} STATICLIBS=NO + +make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_initrddir} install -m 755 init/redhat %{buildroot}%{_initrddir}/openais +## tree fixup +# drop static libs +rm -f %{buildroot}%{_libdir}/*.a +# drop docs and html docs for now +rm -rf %{buildroot}%{_docdir}/* + %clean rm -rf %{buildroot} @@ -58,12 +81,10 @@ fi %files %defattr(-,root,root,-) %doc LICENSE README.amf -%dir /etc/ais -%config(noreplace) /etc/ais/openais.conf -%config(noreplace) /etc/ais/amf.conf +%dir %{_sysconfdir}/corosync +%config(noreplace) %{_sysconfdir}/corosync/amf.conf.example %{_initrddir}/openais %dir %{_libexecdir}/lcrso -%{_libexecdir}/lcrso/openaisparser.lcrso %{_libexecdir}/lcrso/openaisserviceenable.lcrso %{_libexecdir}/lcrso/service_amf.lcrso %{_libexecdir}/lcrso/service_ckpt.lcrso @@ -89,15 +110,13 @@ This package contains openais libraries. %files -n openaislib %defattr(-,root,root,-) %doc LICENSE -%config(noreplace) /etc/ld.so.conf.d/openais-*.conf -%dir %{_libdir}/openais -%{_libdir}/openais/libSaAmf.so.* -%{_libdir}/openais/libSaCkpt.so.* -%{_libdir}/openais/libSaClm.so.* -%{_libdir}/openais/libSaEvt.so.* -%{_libdir}/openais/libSaLck.so.* -%{_libdir}/openais/libSaMsg.so.* -%{_libdir}/openais/libSaTmr.so.* +%{_libdir}/libSaAmf.so.* +%{_libdir}/libSaCkpt.so.* +%{_libdir}/libSaClm.so.* +%{_libdir}/libSaEvt.so.* +%{_libdir}/libSaLck.so.* +%{_libdir}/libSaMsg.so.* +%{_libdir}/libSaTmr.so.* %post -n openaislib -p /sbin/ldconfig @@ -126,16 +145,46 @@ This package contains the include files %{_includedir}/openais/saLck.h %{_includedir}/openais/saMsg.h %{_includedir}/openais/saTmr.h -%{_libdir}/openais/libSaAmf.so -%{_libdir}/openais/libSaCkpt.so -%{_libdir}/openais/libSaClm.so -%{_libdir}/openais/libSaEvt.so -%{_libdir}/openais/libSaLck.so -%{_libdir}/openais/libSaMsg.so -%{_libdir}/openais/libSaTmr.so +%{_libdir}/libSaAmf.so +%{_libdir}/libSaCkpt.so +%{_libdir}/libSaClm.so +%{_libdir}/libSaEvt.so +%{_libdir}/libSaLck.so +%{_libdir}/libSaMsg.so +%{_libdir}/libSaTmr.so %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release +- spec file updates: + * consistent use of macros across the board + +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + +* Sat Jun 20 2009 Fabio M. Di Nitto - 0.97-1 +- New upstream release +- spec file updates: + * Drop openais-trunk patch and alpha tag. + * Fix alphatag vs buildtrunk handling. + * New config file locations from upstream: /etc/corosync/. + * Fix configure invokation. + * Requires and BuildRequires corosync 0.98 + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.96-1.svn1951 +- New upstream release +- spec file updates: + * Update to svn version 1951. + * Define buildtrunk if we are using svn snapshots + * Bump Requires and BuildRequires to corosync 0.97-1.svn2226 + * Force autogen invokation if buildtrunk is defined + * Whitespace cleanup + * Respect _smp_mflags and update configure invokation + * Update tree cleanup section + * Stop shipping openais.conf and amf.conf in favour of generic examples + * libraries have moved to libdir. Drop ld.so.conf.d openais file + * Tue Mar 24 2009 Fabio M. Di Nitto - 0.94-1 - New upstream release - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openais/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 24 Mar 2009 08:30:17 -0000 1.14 +++ sources 28 Jul 2009 12:46:35 -0000 1.15 @@ -1 +1 @@ -f3cffde3a4bdf1b23122d10825b501d1 openais-0.94.tar.gz +33c22a0da30a5a4dd091375839edbf07 openais-1.0.0.tar.gz From fabbione at fedoraproject.org Tue Jul 28 12:47:53 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 12:47:53 +0000 (UTC) Subject: rpms/cluster/F-11 cluster.spec,1.48,1.49 sources,1.23,1.24 Message-ID: <20090728124753.2C03A11C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/cluster/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23156 Modified Files: cluster.spec sources Log Message: New upstream release fixes several major bugs Index: cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluster/F-11/cluster.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- cluster.spec 24 Mar 2009 09:06:11 -0000 1.48 +++ cluster.spec 28 Jul 2009 12:47:52 -0000 1.49 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc1 +## define alphatag rc4 Name: cluster Summary: Red Hat Cluster Version: 3.0.0 -Release: 15%{?alphatag:.%{alphatag}}%{?dist} +Release: 20%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -32,9 +32,9 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na # Build dependencies BuildRequires: perl python BuildRequires: glibc-kernheaders glibc-devel -BuildRequires: libxml2-devel ncurses-devel slang-devel libvolume_id-devel -BuildRequires: corosynclib-devel >= 0.95-1 -BuildRequires: openaislib-devel >= 0.94-1 +BuildRequires: libxml2-devel ncurses-devel slang-devel +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 BuildRequires: openldap-devel perl(ExtUtils::MakeMaker) %prep @@ -45,7 +45,6 @@ BuildRequires: openldap-devel perl(ExtUt --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ - --openaislibdir=%{_libdir}/openais \ --without_fence_agents \ --without_resource_agents \ --without_kernel_modules \ @@ -59,12 +58,6 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} ## tree fix up -# add config dir -mkdir -p %{buildroot}%{_sysconfdir}/cluster -# install logging bits -mkdir -p %{buildroot}/var/log/cluster -# add cmanotifyd directory -mkdir -p %{buildroot}%{_sysconfdir}/cluster/cman-notify.d # logrotate name mv %{buildroot}%{_sysconfdir}/logrotate.d/cluster \ %{buildroot}%{_sysconfdir}/logrotate.d/cman @@ -99,8 +92,8 @@ Summary: Red Hat Cluster Manager Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig -Requires: corosync >= 0.95-1 -Requires: openais >= 0.94-1 +Requires: corosync >= 1.0.0-1 +Requires: openais >= 1.0.0-1 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: ricci >= 0.15.0-4 modcluster >= 0.15.0-3 Requires: fence-agents @@ -110,7 +103,6 @@ Red Hat Cluster Manager %post -n cman /sbin/chkconfig --add cman -/sbin/ldconfig > /dev/null # make sure to stop cman always as last %preun -n cman @@ -119,8 +111,6 @@ if [ "$1" = 0 ]; then /sbin/chkconfig --del cman fi -%postun -n cman -p /sbin/ldconfig - %files -n cman %defattr(-,root,root,-) %doc doc/COPYING.* doc/COPYRIGHT doc/README.licence doc/*.txt config/plugins/ldap/*.ldif @@ -138,6 +128,8 @@ fi %{_sbindir}/group* %{_sbindir}/*qdisk* /usr/libexec/* +%dir %{_datadir}/cluster +%{_datadir}/cluster/cluster.rng %{perl_vendorarch}/* %dir /var/log/cluster %{_mandir}/man5/* @@ -207,9 +199,8 @@ The Red Hat Cluster libraries developmen Group: System Environment/Base Summary: Open Source HA Resource Group Failover for Red Hat Cluster License: GPLv2+ and LGPLv2+ -Requires: chkconfig initscripts glibc ncurses bash grep sed gawk +Requires: chkconfig initscripts Requires: cman resource-agents -Requires: net-tools mount e2fsprogs Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig @@ -242,6 +233,7 @@ Summary: Utilities for managing the glob Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig +Requires: file %description -n gfs2-utils The gfs2-utils package contains a number of utilities for creating, @@ -261,7 +253,7 @@ fi %defattr(-,root,root,-) %doc doc/COPYRIGHT doc/README.licence doc/COPYING.* %{_sysconfdir}/rc.d/init.d/gfs2 -/sbin/mount.gfs2 +/sbin/*.gfs2 %{_sbindir}/*gfs2* %{_mandir}/man8/*gfs2* @@ -272,6 +264,7 @@ Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig Requires: gfs2-utils +Requires: file %description -n gfs-utils The gfs-utils package contains a number of utilities for creating, @@ -291,14 +284,13 @@ fi %defattr(-,root,root,-) %doc doc/COPYRIGHT doc/README.licence doc/COPYING.* %{_sysconfdir}/rc.d/init.d/gfs -/sbin/mount.gfs +/sbin/*.gfs %{_sbindir}/gfs_debug %{_sbindir}/gfs_edit %{_sbindir}/gfs_grow %{_sbindir}/gfs_jadd %{_sbindir}/gfs_quota %{_sbindir}/gfs_tool -%{_sbindir}/*.gfs %{_mandir}/man8/gfs.* %{_mandir}/man8/gfs_edit* %{_mandir}/man8/gfs_grow* @@ -308,6 +300,42 @@ fi %{_mandir}/man8/*.gfs.* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-20 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. + +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-19.rc4 +- New upstream release +- spec file updates: + * cman subpackage: avoid unnecessary calls to ldconfig + * rgmanager subpackage: drop unrequired Requires: that belong to ras + * BuildRequires and Requires corosync/openais 1.0.0.rc1 + +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-18.rc3 +- New upstream release +- spec file updates: + * Drop local patches. + * Update BuildRequires and Requires: on newer corosync/openais. + +* Thu Jun 11 2009 Fabio M. Di Nitto - 3.0.0-17.rc2 +- Update from git up to 779dd3c23ca6c56f5b3f7a8a7831bae775c85201 +- spec file updates: + * Drop BuildRequires on libvolume_id-devel that's now obsoleted + * gfs*-utils now Requires: file + * Add temporary patch to get rid of volume_id references in the code + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-16.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Update configure invokation + * Cleanup tree fix up bits that are now upstream + * Ship cluster.rng + * Move fsck/mkfs gfs/gfs2 binaries in /sbin to be FHS compliant + * Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-15.rc1 - New upstream release. - Update corosync/openais BuildRequires and Requires. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluster/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 24 Mar 2009 09:06:11 -0000 1.23 +++ sources 28 Jul 2009 12:47:53 -0000 1.24 @@ -1 +1 @@ -ca40dcee847586cf1c8dd7ee965c3252 cluster-3.0.0.rc1.tar.gz +93101d0f3c724a46caee1f9f16abe4af cluster-3.0.0.tar.gz From jakub at fedoraproject.org Tue Jul 28 12:48:30 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 28 Jul 2009 12:48:30 +0000 (UTC) Subject: rpms/compat-gcc-296/devel compat-gcc-296.spec,1.26,1.27 Message-ID: <20090728124830.1FE7511C00D4@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/compat-gcc-296/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23560 Modified Files: compat-gcc-296.spec Log Message: 2.96-143 Index: compat-gcc-296.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-296/devel/compat-gcc-296.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- compat-gcc-296.spec 24 Jul 2009 19:18:21 -0000 1.26 +++ compat-gcc-296.spec 28 Jul 2009 12:48:29 -0000 1.27 @@ -1,10 +1,10 @@ %define DATE 20000731 %define gcc_version 2.96 -%define gcc_release 142 +%define gcc_release 143 Summary: 2.96-RH compatibility libraries Name: compat-gcc-296 Version: %{gcc_version} -Release: %{gcc_release}.1 +Release: %{gcc_release} License: GPLv2+ Group: Development/Languages ExclusiveArch: %{ix86} ia64 ppc @@ -986,6 +986,7 @@ OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-m6 %ifarch %{ix86} OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=pentium4/-mcpu=i686/g'` OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=generic/-mcpu=i686/g'` +OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=atom/-mcpu=i686/g'` %endif %ifarch sparc sparc64 OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mcpu=ultrasparc/-mtune=ultrasparc/g'` @@ -1077,8 +1078,9 @@ rm -rf $RPM_BUILD_ROOT %{_prefix}/lib/gcc-lib/%{_target_platform}/%{gcc_version}/crtendS.o %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 2.96-142.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Jakub Jelinek 2.96-143 +- replace -mtune=atom in $RPM_OPT_FLAGS with something that + GCC 2.96-RH groks * Mon Mar 9 2009 Jakub Jelinek 2.96-142 - rebuilt with GCC 4.4 From rhughes at fedoraproject.org Tue Jul 28 12:54:55 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 28 Jul 2009 12:54:55 +0000 (UTC) Subject: rpms/hal/devel hal.spec,1.201,1.202 Message-ID: <20090728125455.1EB8011C00D4@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27238 Modified Files: hal.spec Log Message: * Tue Jul 28 2009 Richard Hughes - 0.5.13-4 - Fix build harder Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.201 retrieving revision 1.202 diff -u -p -r1.201 -r1.202 --- hal.spec 28 Jul 2009 11:08:08 -0000 1.201 +++ hal.spec 28 Jul 2009 12:54:54 -0000 1.202 @@ -26,7 +26,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.13 -Release: 3%{?dist} +Release: 4%{?dist} #Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -241,7 +241,6 @@ fi %dir %{_datadir}/hal/fdi %{_datadir}/hal/fdi/* -%dir %{_libdir}/hal %dir %{_libexecdir}/scripts %{_libexecdir}/scripts/* %{_mandir}/man1/* @@ -277,6 +276,9 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Tue Jul 28 2009 Richard Hughes - 0.5.13-4 +- Fix build harder + * Tue Jul 28 2009 Richard Hughes - 0.5.13-3 - Fix file lists to fix build From rdieter at fedoraproject.org Tue Jul 28 12:55:58 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 12:55:58 +0000 (UTC) Subject: rpms/sip/devel .cvsignore, 1.29, 1.30 sip.spec, 1.62, 1.63 sources, 1.30, 1.31 Message-ID: <20090728125558.32C7311C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27765 Modified Files: .cvsignore sip.spec sources Log Message: * Tue Jul 28 2009 Rex Dieter - 4.8.2-1 - sip-4.8.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sip/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 16 Jun 2009 13:16:14 -0000 1.29 +++ .cvsignore 28 Jul 2009 12:55:57 -0000 1.30 @@ -1 +1 @@ -sip-4.8.1.tar.gz +sip-4.8.2.tar.gz Index: sip.spec =================================================================== RCS file: /cvs/pkgs/rpms/sip/devel/sip.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- sip.spec 27 Jul 2009 04:21:54 -0000 1.62 +++ sip.spec 28 Jul 2009 12:55:58 -0000 1.63 @@ -4,8 +4,8 @@ Summary: SIP - Python/C++ Bindings Generator Name: sip -Version: 4.8.1 -Release: 2%{?dist} +Version: 4.8.2 +Release: 1%{?dist} # http://www.riverbankcomputing.com/Docs/sip4/sipref.html#license License: Python Group: Development/Tools @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 4.8.2-1 +- sip-4.8.2 + * Sun Jul 26 2009 Fedora Release Engineering - 4.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sip/devel/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 16 Jun 2009 13:16:14 -0000 1.30 +++ sources 28 Jul 2009 12:55:58 -0000 1.31 @@ -1 +1 @@ -859e5b103ba5a083e4f2021eb6d99b26 sip-4.8.1.tar.gz +7ae60712aa6b4095a8cdab11b437f8f0 sip-4.8.2.tar.gz From rdieter at fedoraproject.org Tue Jul 28 12:57:43 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 12:57:43 +0000 (UTC) Subject: rpms/PyQt4/devel .cvsignore, 1.12, 1.13 PyQt4.spec, 1.30, 1.31 sources, 1.12, 1.13 Message-ID: <20090728125743.2843B11C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/PyQt4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28467 Modified Files: .cvsignore PyQt4.spec sources Log Message: * Tue Jul 28 2009 Rex Dieter - 4.5.4-1 - PyQt4-4.5.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 16 Jul 2009 13:36:54 -0000 1.12 +++ .cvsignore 28 Jul 2009 12:57:42 -0000 1.13 @@ -1 +1 @@ -PyQt-x11-gpl-4.5.2.tar.gz +PyQt-x11-gpl-4.5.4.tar.gz Index: PyQt4.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/PyQt4.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- PyQt4.spec 24 Jul 2009 16:02:25 -0000 1.30 +++ PyQt4.spec 28 Jul 2009 12:57:42 -0000 1.31 @@ -3,8 +3,8 @@ Summary: Python bindings for Qt4 Name: PyQt4 -Version: 4.5.2 -Release: 2%{?dist} +Version: 4.5.4 +Release: 1%{?dist} # GPLv2 exceptions(see GPL_EXCEPTIONS*.txt) License: GPLv3 or GPLv2 with exceptions @@ -32,7 +32,7 @@ BuildRequires: python-devel %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()") %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") -BuildRequires: sip-devel >= 4.8.1 +BuildRequires: sip-devel >= 4.8.2 %global sip_ver %(sip -V 2>/dev/null | cut -d' ' -f1 | cut -d- -f1) %if "x%{?sip_ver}" != "x" # To be paranoid, could change >= to = -- Rex @@ -137,6 +137,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 4.5.4-1 +- PyQt4-4.5.4 + * Fri Jul 24 2009 Fedora Release Engineering - 4.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 16 Jul 2009 13:36:54 -0000 1.12 +++ sources 28 Jul 2009 12:57:42 -0000 1.13 @@ -1 +1 @@ -997269d78aced5b1105edb155d49e248 PyQt-x11-gpl-4.5.2.tar.gz +b721266d14c450dd7045025e042819ec PyQt-x11-gpl-4.5.4.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 13:04:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:17 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130418.AEF7510F899@bastion2.fedora.phx.redhat.com> nsantos has set the watchcommits acl on qpidc (Fedora devel) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 13:04:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:20 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130420.9825310F89D@bastion2.fedora.phx.redhat.com> nsantos has set the commit acl on qpidc (Fedora devel) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 13:04:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:29 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130429.91B9710F8A1@bastion2.fedora.phx.redhat.com> nsantos has set the watchcommits acl on qpidc (Fedora 10) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 13:04:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:31 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130431.6D94C10F8B4@bastion2.fedora.phx.redhat.com> nsantos has set the commit acl on qpidc (Fedora 10) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 13:04:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:34 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130434.E87C710F8B8@bastion2.fedora.phx.redhat.com> nsantos has set the watchcommits acl on qpidc (Fedora 11) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From pkgdb at fedoraproject.org Tue Jul 28 13:04:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:04:37 +0000 Subject: [pkgdb] qpidc had acl change status Message-ID: <20090728130437.CDDAC10F8BD@bastion2.fedora.phx.redhat.com> nsantos has set the commit acl on qpidc (Fedora 11) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qpidc From jakub at fedoraproject.org Tue Jul 28 13:04:44 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 28 Jul 2009 13:04:44 +0000 (UTC) Subject: rpms/compat-gcc-32/devel compat-gcc-32.spec,1.38,1.39 Message-ID: <20090728130444.7470511C00D4@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/compat-gcc-32/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31733 Modified Files: compat-gcc-32.spec Log Message: 3.2.3-67 Index: compat-gcc-32.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-32/devel/compat-gcc-32.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- compat-gcc-32.spec 24 Jul 2009 19:18:50 -0000 1.38 +++ compat-gcc-32.spec 28 Jul 2009 13:04:44 -0000 1.39 @@ -1,7 +1,7 @@ %define LIBSTDCXXDATE 20040818 %define DATE 20040701 %define gcc_version 3.2.3 -%define gcc_release 66 +%define gcc_release 67 %define _unpackaged_files_terminate_build 0 %define multilib_64_archs sparc64 ppc64 s390x x86_64 %define build_java 0 @@ -21,7 +21,7 @@ Summary: The compatibility GNU Compiler Collection Name: compat-gcc-32 Version: %{gcc_version} -Release: %{gcc_release}.1 +Release: %{gcc_release} License: GPLv2+ with exceptions Group: Development/Languages Source0: gcc-%{gcc_version}-%{DATE}.tar.bz2 @@ -270,6 +270,7 @@ OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-m6 %ifarch %{ix86} OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=pentium4/-mcpu=i686/g'` OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=generic/-mcpu=i686/g'` +OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=atom/-mcpu=i686/g'` %endif %ifarch x86_64 OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=nocona//g'` @@ -436,8 +437,9 @@ rm -rf $RPM_BUILD_ROOT %{_prefix}/%{_lib}/libstdc++.so.5* %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 3.2.3-66.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Jakub Jelinek 3.2.3-67 +- replace -mtune=generic in $RPM_OPT_FLAGS with something that + GCC 3.2.3 groks * Mon Mar 9 2009 Jakub Jelinek 3.2.3-66 - fix up for latest bison From mgrepl at fedoraproject.org Tue Jul 28 13:07:14 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Tue, 28 Jul 2009 13:07:14 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch,1.33,1.34 Message-ID: <20090728130714.9F6B211C00D4@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv387 Modified Files: policy-20090521.patch Log Message: - Allow mrtg to transition to ping_t policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/logrotate.te | 4 modules/admin/mrtg.te | 4 modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/rpm.te | 4 modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 30 +++- modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 9 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 18 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/exim.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 3 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/polkit.te | 1 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.if | 21 ++ modules/services/sendmail.te | 7 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 23 ++- modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 2 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iptables.te | 4 modules/system/iscsi.te | 1 modules/system/libraries.fc | 8 - modules/system/locallogin.te | 6 modules/system/sysnetwork.te | 17 +- modules/system/udev.te | 5 modules/system/userdomain.if | 22 +- modules/system/virtual.te | 5 modules/system/xen.te | 1 114 files changed, 1906 insertions(+), 578 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- policy-20090521.patch 20 Jul 2009 15:08:48 -0000 1.33 +++ policy-20090521.patch 28 Jul 2009 13:07:14 -0000 1.34 @@ -101,6 +101,34 @@ diff -b -B --ignore-all-space --exclude- + networkmanager_dbus_chat(kismet_t) + ') +') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/logrotate.te serefpolicy-3.6.12/policy/modules/admin/logrotate.te +--- nsaserefpolicy/policy/modules/admin/logrotate.te 2009-06-25 10:19:43.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/admin/logrotate.te 2009-07-24 15:38:22.000000000 +0200 +@@ -188,6 +188,10 @@ + ') + + optional_policy(` ++ psad_domtrans(logrotate_t) ++') ++ ++optional_policy(` + slrnpull_manage_spool(logrotate_t) + ') + +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/mrtg.te serefpolicy-3.6.12/policy/modules/admin/mrtg.te +--- nsaserefpolicy/policy/modules/admin/mrtg.te 2009-06-25 10:19:43.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/admin/mrtg.te 2009-07-28 14:35:23.000000000 +0200 +@@ -140,6 +140,10 @@ + ') + + optional_policy(` ++ netutils_domtrans_ping(mrtg_t) ++') ++ ++optional_policy(` + seutil_sigchld_newrole(mrtg_t) + ') + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/prelink.te serefpolicy-3.6.12/policy/modules/admin/prelink.te --- nsaserefpolicy/policy/modules/admin/prelink.te 2009-06-25 10:19:43.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/admin/prelink.te 2009-06-25 10:21:01.000000000 +0200 @@ -173,6 +201,20 @@ diff -b -B --ignore-all-space --exclude- ## Do not audit attempts to read, ## write RPM tmp files ## +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/rpm.te serefpolicy-3.6.12/policy/modules/admin/rpm.te +--- nsaserefpolicy/policy/modules/admin/rpm.te 2009-06-25 10:19:43.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/admin/rpm.te 2009-07-28 14:08:18.000000000 +0200 +@@ -377,6 +377,10 @@ + ') + + optional_policy(` ++ mount_domtrans(rpm_script_t) ++') ++ ++optional_policy(` + tzdata_domtrans(rpm_t) + tzdata_domtrans(rpm_script_t) + ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/shorewall.fc serefpolicy-3.6.12/policy/modules/admin/shorewall.fc --- nsaserefpolicy/policy/modules/admin/shorewall.fc 1970-01-01 01:00:00.000000000 +0100 +++ serefpolicy-3.6.12/policy/modules/admin/shorewall.fc 2009-06-25 10:21:01.000000000 +0200 @@ -1591,7 +1633,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/domain.te serefpolicy-3.6.12/policy/modules/kernel/domain.te --- nsaserefpolicy/policy/modules/kernel/domain.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/kernel/domain.te 2009-06-26 15:48:29.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/kernel/domain.te 2009-07-24 15:45:03.000000000 +0200 @@ -91,6 +91,9 @@ kernel_read_proc_symlinks(domain) kernel_read_crypto_sysctls(domain) @@ -1654,13 +1696,14 @@ diff -b -B --ignore-all-space --exclude- # Act upon any other process. allow unconfined_domain_type domain:process ~{ transition dyntransition execmem execstack execheap }; -@@ -185,7 +208,9 @@ +@@ -185,7 +208,10 @@ ifdef(`hide_broken_symptoms',` fs_list_inotifyfs(domain) + dontaudit domain self:udp_socket listen; allow domain domain:key { link search }; + dbus_dontaudit_system_bus_rw_tcp_sockets(domain) ++ cron_dontaudit_rw_tcp_sockets(domain) ') ') @@ -1903,8 +1946,8 @@ diff -b -B --ignore-all-space --exclude- +/var/www/svn/conf(/.*)? gen_context(system_u:object_r:httpd_sys_content_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/automount.if serefpolicy-3.6.12/policy/modules/services/automount.if --- nsaserefpolicy/policy/modules/services/automount.if 2009-04-07 21:54:47.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/automount.if 2009-06-25 10:21:01.000000000 +0200 -@@ -21,6 +21,25 @@ ++++ serefpolicy-3.6.12/policy/modules/services/automount.if 2009-07-20 14:44:39.000000000 +0200 +@@ -21,6 +21,24 @@ ######################################## ## @@ -1916,7 +1959,6 @@ diff -b -B --ignore-all-space --exclude- +## +## +# -+# +interface(`automount_signal',` + gen_require(` + type automount_t; @@ -2036,18 +2078,6 @@ diff -b -B --ignore-all-space --exclude- userdom_dontaudit_list_admin_dir($1) role system_r types $1; ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.fc serefpolicy-3.6.12/policy/modules/services/cups.fc ---- nsaserefpolicy/policy/modules/services/cups.fc 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/cups.fc 2009-06-25 10:21:01.000000000 +0200 -@@ -36,6 +36,8 @@ - # keep as separate lines to ensure proper sorting - /usr/lib/cups/backend/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) - /usr/lib64/cups/backend/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) -+/usr/lib/cups/filter/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) -+/usr/lib64/cups/filter/hp.* -- gen_context(system_u:object_r:hplip_exec_t,s0) - - /usr/sbin/printconf-backend -- gen_context(system_u:object_r:cupsd_config_exec_t,s0) - /usr/sbin/ptal-printd -- gen_context(system_u:object_r:ptal_exec_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.te serefpolicy-3.6.12/policy/modules/services/cups.te --- nsaserefpolicy/policy/modules/services/cups.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/cups.te 2009-07-07 09:04:11.000000000 +0200 @@ -2182,6 +2212,20 @@ diff -b -B --ignore-all-space --exclude- tftp_read_content(dnsmasq_t) ') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/exim.te serefpolicy-3.6.12/policy/modules/services/exim.te +--- nsaserefpolicy/policy/modules/services/exim.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/exim.te 2009-07-24 15:40:36.000000000 +0200 +@@ -152,6 +152,10 @@ + ') + + optional_policy(` ++ sendmail_manage_tmp(exim_t) ++') ++ ++optional_policy(` + tunable_policy(`exim_can_connect_db',` + mysql_stream_connect(exim_t) + ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/fetchmail.te serefpolicy-3.6.12/policy/modules/services/fetchmail.te --- nsaserefpolicy/policy/modules/services/fetchmail.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/fetchmail.te 2009-06-29 16:22:53.000000000 +0200 @@ -2775,6 +2819,17 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/polkit.te serefpolicy-3.6.12/policy/modules/services/polkit.te +--- nsaserefpolicy/policy/modules/services/polkit.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/polkit.te 2009-07-28 14:10:06.000000000 +0200 +@@ -72,6 +72,7 @@ + manage_files_pattern(polkit_t, polkit_var_run_t, polkit_var_run_t) + files_pid_filetrans(polkit_t, polkit_var_run_t, { file dir }) + ++userdom_getattr_all_users(polkit_t) + userdom_read_all_users_state(polkit_t) + + optional_policy(` diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postfix.if serefpolicy-3.6.12/policy/modules/services/postfix.if --- nsaserefpolicy/policy/modules/services/postfix.if 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/postfix.if 2009-06-25 10:21:01.000000000 +0200 @@ -2928,10 +2983,49 @@ diff -b -B --ignore-all-space --exclude- auth_read_all_dirs_except_shadow(rsync_t) auth_read_all_files_except_shadow(rsync_t) auth_read_all_symlinks_except_shadow(rsync_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/sendmail.if serefpolicy-3.6.12/policy/modules/services/sendmail.if +--- nsaserefpolicy/policy/modules/services/sendmail.if 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/sendmail.if 2009-07-24 15:42:39.000000000 +0200 +@@ -238,3 +238,24 @@ + + allow $1 sendmail_t:fifo_file rw_fifo_file_perms; + ') ++ ++###################################### ++## ++## Manage sendmail tmp files. ++## ++## ++## ++## Domain allowed access. ++## ++## ++# ++interface(`sendmail_manage_tmp',` ++ gen_require(` ++ type sendmail_tmp_t; ++ ') ++ ++ files_search_tmp($1) ++ manage_files_pattern($1, sendmail_tmp_t, sendmail_tmp_t) ++') ++ ++ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/sendmail.te serefpolicy-3.6.12/policy/modules/services/sendmail.te --- nsaserefpolicy/policy/modules/services/sendmail.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/sendmail.te 2009-07-08 21:12:27.000000000 +0200 -@@ -148,6 +148,7 @@ ++++ serefpolicy-3.6.12/policy/modules/services/sendmail.te 2009-07-24 15:40:05.000000000 +0200 +@@ -131,6 +131,10 @@ + ') + + optional_policy(` ++ exim_domtrans(sendmail_t) ++') ++ ++optional_policy(` + fail2ban_read_lib_files(sendmail_t) + ') + +@@ -148,6 +152,7 @@ optional_policy(` postfix_domtrans_postdrop(sendmail_t) @@ -2939,7 +3033,7 @@ diff -b -B --ignore-all-space --exclude- postfix_domtrans_master(sendmail_t) postfix_read_config(sendmail_t) postfix_search_spool(sendmail_t) -@@ -186,6 +187,6 @@ +@@ -186,6 +191,6 @@ optional_policy(` mta_etc_filetrans_aliases(unconfined_sendmail_t) @@ -3443,7 +3537,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.fc serefpolicy-3.6.12/policy/modules/services/xserver.fc --- nsaserefpolicy/policy/modules/services/xserver.fc 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/xserver.fc 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/xserver.fc 2009-07-28 14:14:07.000000000 +0200 @@ -62,6 +62,7 @@ /usr/bin/iceauth -- gen_context(system_u:object_r:iceauth_exec_t,s0) /usr/bin/slim -- gen_context(system_u:object_r:xdm_exec_t,s0) @@ -3452,6 +3546,14 @@ diff -b -B --ignore-all-space --exclude- /usr/bin/xauth -- gen_context(system_u:object_r:xauth_exec_t,s0) /usr/bin/Xorg -- gen_context(system_u:object_r:xserver_exec_t,s0) ifdef(`distro_debian', ` +@@ -104,6 +105,7 @@ + /var/run/gdm(/.*)? gen_context(system_u:object_r:xdm_var_run_t,s0) + /var/run/gdm_socket -s gen_context(system_u:object_r:xdm_var_run_t,s0) + /var/run/[gx]dm\.pid -- gen_context(system_u:object_r:xdm_var_run_t,s0) ++/var/run/slim\.auth -- gen_context(system_u:object_r:xdm_var_run_t,s0) + /var/run/xdmctl(/.*)? gen_context(system_u:object_r:xdm_var_run_t,s0) + /var/run/xauth(/.*)? gen_context(system_u:object_r:xdm_var_run_t,s0) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.if serefpolicy-3.6.12/policy/modules/services/xserver.if --- nsaserefpolicy/policy/modules/services/xserver.if 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/xserver.if 2009-06-25 10:21:01.000000000 +0200 @@ -4101,6 +4203,20 @@ diff -b -B --ignore-all-space --exclude- # allow setkey to set the context for ipsec SAs and policy. ipsec_setcontext_default_spd(setkey_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/iptables.te serefpolicy-3.6.12/policy/modules/system/iptables.te +--- nsaserefpolicy/policy/modules/system/iptables.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/iptables.te 2009-07-24 15:37:54.000000000 +0200 +@@ -101,6 +101,10 @@ + ') + + optional_policy(` ++ psad_rw_tmp_files(iptables_t) ++') ++ ++optional_policy(` + rhgb_dontaudit_use_ptys(iptables_t) + ') + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/iscsi.te serefpolicy-3.6.12/policy/modules/system/iscsi.te --- nsaserefpolicy/policy/modules/system/iscsi.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/system/iscsi.te 2009-06-25 10:21:01.000000000 +0200 From jakub at fedoraproject.org Tue Jul 28 13:07:37 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 28 Jul 2009 13:07:37 +0000 (UTC) Subject: rpms/compat-gcc-34/devel compat-gcc-34.spec,1.15,1.16 Message-ID: <20090728130737.89CB311C00D4@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/compat-gcc-34/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv595 Modified Files: compat-gcc-34.spec Log Message: 3.4.6-16 Index: compat-gcc-34.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-34/devel/compat-gcc-34.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- compat-gcc-34.spec 24 Jul 2009 19:19:07 -0000 1.15 +++ compat-gcc-34.spec 28 Jul 2009 13:07:36 -0000 1.16 @@ -16,7 +16,7 @@ Summary: Compatibility GNU Compiler Collection Name: compat-gcc-34 Version: 3.4.6 -Release: 15 +Release: 16 # libgcc and crtstuff have an exception which allows # linking it into any kind of programs or shared libraries without # restrictions. @@ -272,6 +272,7 @@ OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-m6 %ifarch %{ix86} OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=pentium4/-mtune=i686/g'` OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=generic/-mtune=i686/g'` +OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=atom/-mtune=i686/g'` %endif %ifarch x86_64 OPT_FLAGS=`echo $OPT_FLAGS|sed -e 's/-mtune=nocona//g'` @@ -668,7 +669,11 @@ fi %{_prefix}/%{_lib}/libg2c.so.0* %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 3.4.6-15 +* Tue Jul 28 2009 Jakub Jelinek 3.4.6-16 +- replace -mtune=atom in $RPM_OPT_FLAGS with something that + GCC 3.4.6 groks + +* Fri Jul 24 2009 Fedora Release Engineering 3.4.6-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Jun 12 2009 Dennis Gilmore - 3.4.6-14 From rdieter at fedoraproject.org Tue Jul 28 13:21:15 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 13:21:15 +0000 (UTC) Subject: rpms/sbcl/devel .cvsignore, 1.48, 1.49 sbcl.spec, 1.108, 1.109 sources, 1.49, 1.50 Message-ID: <20090728132115.54AD311C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sbcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6309 Modified Files: .cvsignore sbcl.spec sources Log Message: * Tue Jul 28 2009 Rex Dieter - 1.0.30-1 - sbcl-1.0.30 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 28 Jun 2009 19:26:52 -0000 1.48 +++ .cvsignore 28 Jul 2009 13:21:14 -0000 1.49 @@ -1 +1 @@ -sbcl-1.0.29-source.tar.bz2 +sbcl-1.0.30-source.tar.bz2 Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/devel/sbcl.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- sbcl.spec 27 Jul 2009 03:49:42 -0000 1.108 +++ sbcl.spec 28 Jul 2009 13:21:14 -0000 1.109 @@ -12,8 +12,8 @@ Name: sbcl Summary: Steel Bank Common Lisp -Version: 1.0.29 -Release: 2%{?dist} +Version: 1.0.30 +Release: 1%{?dist} License: BSD Group: Development/Languages @@ -252,6 +252,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 1.0.30-1 +- sbcl-1.0.30 + * Sun Jul 26 2009 Fedora Release Engineering - 1.0.29-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/devel/sources,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- sources 28 Jun 2009 19:26:52 -0000 1.49 +++ sources 28 Jul 2009 13:21:14 -0000 1.50 @@ -1 +1 @@ -eb4d8ff56f19dc760e756d7c001d4229 sbcl-1.0.29-source.tar.bz2 +64a96ad21a5d57f27639c0801c00fe74 sbcl-1.0.30-source.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 13:23:13 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 13:23:13 +0000 (UTC) Subject: rpms/eog/devel .cvsignore, 1.85, 1.86 eog.spec, 1.148, 1.149 sources, 1.85, 1.86 Message-ID: <20090728132313.CAA2311C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/eog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7168 Modified Files: .cvsignore eog.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/.cvsignore,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- .cvsignore 14 Jul 2009 16:12:04 -0000 1.85 +++ .cvsignore 28 Jul 2009 13:23:13 -0000 1.86 @@ -1 +1 @@ -eog-2.27.4.tar.bz2 +eog-2.27.5.tar.bz2 Index: eog.spec =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/eog.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- eog.spec 24 Jul 2009 22:12:12 -0000 1.148 +++ eog.spec 28 Jul 2009 13:23:13 -0000 1.149 @@ -11,8 +11,8 @@ Summary: Eye of GNOME image viewer Name: eog -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} URL: http://projects.gnome.org/eog/ Source: http://download.gnome.org/sources/eog/2.27/%{name}-%{version}.tar.bz2 Patch0: libxml.patch @@ -170,6 +170,9 @@ fi %{_datadir}/gtk-doc/html/eog %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/sources,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- sources 14 Jul 2009 16:12:04 -0000 1.85 +++ sources 28 Jul 2009 13:23:13 -0000 1.86 @@ -1 +1 @@ -4d7ee8a76a62aca29086cc26b1bc4344 eog-2.27.4.tar.bz2 +3c7a604d6b60cdc710cbaa056864dbc4 eog-2.27.5.tar.bz2 From rdieter at fedoraproject.org Tue Jul 28 13:23:20 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 13:23:20 +0000 (UTC) Subject: rpms/maxima/devel maxima.spec,1.132,1.133 Message-ID: <20090728132320.C72C311C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8024 Modified Files: maxima.spec Log Message: * Tue Jul 28 2009 Rex Dieter - 5.18.1-5 - rebuild (sbcl) Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/devel/maxima.spec,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- maxima.spec 25 Jul 2009 11:52:41 -0000 1.132 +++ maxima.spec 28 Jul 2009 13:23:20 -0000 1.133 @@ -3,7 +3,7 @@ Summary: Symbolic Computation Program Name: maxima Version: 5.18.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -424,6 +424,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Rex Dieter - 5.18.1-5 +- rebuild (sbcl) + * Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Tue Jul 28 13:25:17 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 13:25:17 +0000 (UTC) Subject: comps comps-f12.xml.in,1.58,1.59 Message-ID: <20090728132517.2059211C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8948 Modified Files: comps-f12.xml.in Log Message: Make gst-mixer optional, now that g-v-c has input switching Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- comps-f12.xml.in 27 Jul 2009 15:45:19 -0000 1.58 +++ comps-f12.xml.in 28 Jul 2009 13:25:16 -0000 1.59 @@ -63,6 +63,7 @@ hunspell-sq moodle-sq + libgweather-langpack-sq @@ -92,6 +93,7 @@ kde-l10n-Arabic moodle-ar openoffice.org-langpack-ar + libgweather-langpack-ar dejavu-sans-fonts dejavu-sans-mono-fonts kacst-art-fonts @@ -126,6 +128,7 @@ dejavu-sans-fonts hunspell-hy moodle-hy + libgweather-langpack-hy m17n-db-armenian @@ -144,6 +147,7 @@ ibus-m17n kde-l10n-Bengali openoffice.org-langpack-as_IN + libgweather-langpack-as iok @@ -196,6 +200,7 @@ az hunspell-az + libgweather-langpack-az @@ -426,6 +431,7 @@ koffice-langpack-eu moodle-eu openoffice.org-langpack-eu_ES + libgweather-langpack-eu @@ -438,6 +444,7 @@ hunspell-be moodle-be + libgweather-langpack-be apanov-edrip-fonts @@ -458,6 +465,7 @@ kde-i18n-Bengali moodle-bn openoffice.org-langpack-bn + libgweather-langpack-bn iok @@ -471,6 +479,7 @@ jomolhari-fonts openoffice.org-langpack-dz + libgweather-langpack-dz @@ -494,6 +503,7 @@ bs moodle-bs + libgweather-langpack-bs @@ -517,6 +527,7 @@ mythes-pt nqc-doc-pt openoffice.org-langpack-pt_BR + libgweather-langpack-pt_BR @@ -543,6 +554,7 @@ kde-i18n-British kde-l10n-British koffice-langpack-en_GB + libgweather-langpack-en_GB @@ -596,6 +608,7 @@ moodle-bg mythes-bg openoffice.org-langpack-bg_BG + libgweather-langpack-bg apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -633,6 +646,7 @@ mythes-ca openoffice.org-langpack-ca_ES tkgate-ca + libgweather-langpack-ca @@ -672,6 +686,9 @@ moodle-zh_tw openoffice.org-langpack-zh_CN openoffice.org-langpack-zh_TW + libgweather-zh_CN + libgweather-zh_HK + libgweather-zh_TW taipeifonts gcin ibus-table-cangjie @@ -841,6 +858,7 @@ hyphen-hr moodle-hr openoffice.org-langpack-hr_HR + libgweather-langpack-hr fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -869,6 +887,7 @@ mythes-cs openoffice.org-langpack-cs_CZ tkgate-cs + libgweather-langpack-cs fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -895,6 +914,7 @@ moodle-da mythes-da openoffice.org-langpack-da_DK + libgweather-langpack-da m17n-db-danish @@ -1247,6 +1267,7 @@ nqc-doc-nl openoffice.org-langpack-nl tesseract-langpack-nl + libgweather-langpack-nl @@ -1595,6 +1616,7 @@ koffice-langpack-et moodle-et openoffice.org-langpack-et_EE + libgweather-langpack-et apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -1609,6 +1631,7 @@ true am + libgweather-langpack-am abyssinica-fonts m17n-db-amharic scim-tables-amharic @@ -1681,6 +1704,7 @@ hunspell-tl moodle-fil + libgweather-langpack-fi @@ -2026,6 +2050,7 @@ openoffice.org-langpack-fr tesseract-langpack-fr tkgate-fr + libgweather-langpack-fr ecolier-court-fonts ecolier-court-lignes-fonts m17n-db-french @@ -2092,6 +2117,7 @@ koffice-langpack-gl moodle-gl openoffice.org-langpack-gl_ES + libgweather-langpack-gl @@ -2374,6 +2400,7 @@ dejavu-sans-fonts moodle-ka + libgweather-langpack-ka bpg-chveulebrivi-fonts bpg-courier-fonts bpg-glaho-fonts @@ -2420,6 +2447,7 @@ openoffice.org-langpack-de tesseract-langpack-de tkgate-de + libgweather-langpack-de @@ -2471,7 +2499,6 @@ gnome-utils gnote gok - gst-mixer gthumb gtk2-engines gucharmap @@ -2523,6 +2550,7 @@ gnotime gonvert grsync + gst-mixer gtweakui gvfs-obexftp hamster-applet @@ -2829,6 +2857,7 @@ openoffice.org-langpack-el_GR tex-cm-lgc tex-kerkis + libgweather-langpack-el ctan-kerkis-calligraphic-fonts ctan-kerkis-sans-fonts ctan-kerkis-serif-fonts @@ -2878,6 +2907,7 @@ kde-l10n-Gujarati moodle-gu openoffice.org-langpack-gu_IN + libgweather-langpack-gu iok samyak-gujarati-fonts @@ -2970,6 +3000,7 @@ moodle-he openoffice.org-langpack-he_IL tetex-fonts-hebrew + libgweather-langpack-he culmus-aharoni-clm-fonts culmus-caladings-clm-fonts culmus-david-clm-fonts @@ -3016,6 +3047,7 @@ kde-l10n-Hindi moodle-hi openoffice.org-langpack-hi_IN + libgweather-langpack-hi iok samyak-devanagari-fonts sarai-fonts @@ -3039,6 +3071,7 @@ koffice-langpack-hu moodle-hu openoffice.org-langpack-hu_HU + libgweather-langpack-hu fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -3058,6 +3091,7 @@ kde-i18n-Icelandic kde-l10n-Icelandic moodle-is + libgweather-langpack-is @@ -3073,6 +3107,7 @@ hunspell-id hyphen-id moodle-id + libgweather-langpack-id @@ -3236,6 +3271,7 @@ moodle-ga mythes-ga openoffice.org-langpack-ga_IE + libgweather-langpack-ga @@ -3264,6 +3300,7 @@ openoffice.org-langpack-it tesseract-langpack-it tkgate-it + libgweather-langpack-it @@ -3281,6 +3318,7 @@ kde-l10n-Japanese koffice-langpack-ja man-pages-ja + libgweather-langpack-ja moodle-ja nqc-doc-ja openoffice.org-langpack-ja_JP @@ -3496,6 +3534,7 @@ ibus-m17n moodle-kn openoffice.org-langpack-kn_IN + libgweather-langpack-kn iok @@ -3698,6 +3737,7 @@ rw hunspell-rw + libgweather-langpack-rw @@ -3733,6 +3773,7 @@ man-pages-ko moodle-ko openoffice.org-langpack-ko_KR + libgweather-langpack-ko baekmuk-bdf-fonts baekmuk-ttf-batang-fonts baekmuk-ttf-dotum-fonts @@ -3770,6 +3811,7 @@ hunspell-ku kde-l10n-Kurdish + libgweather-langpack-ku kurdit-unikurd-web-fonts @@ -3811,6 +3853,7 @@ koffice-langpack-lv moodle-lv + libgweather-langpack-lv legacy-fonts @@ -3933,6 +3976,7 @@ kde-l10n-Lithuanian moodle-lt openoffice.org-langpack-lt_LT + libgweather-langpack-lt @@ -4003,6 +4047,7 @@ hunspell-mk kde-l10n-Macedonian moodle-mk + libgweather-langpack-mk @@ -4055,6 +4100,7 @@ ibus-m17n kde-l10n-Maithili openoffice.org-langpack-mai_IN + libgweather-langpack-mai iok lohit-maithili-fonts m17n-contrib-maithili @@ -4069,6 +4115,7 @@ mg hunspell-mg + libgweather-langpack-mg @@ -4083,6 +4130,7 @@ koffice-langpack-ms moodle-ms openoffice.org-langpack-ms_MY + libgweather-langpack-ms @@ -4102,6 +4150,7 @@ kde-l10n-Malayalam moodle-ml openoffice.org-langpack-ml_IN + libgweather-langpack-ml iok lohit-malayalam-fonts samyak-malayalam-fonts @@ -4167,6 +4216,7 @@ ibus-m17n kde-l10n-Marathi openoffice.org-langpack-mr_IN + libgweather-langpack-mr iok samyak-devanagari-fonts @@ -4226,6 +4276,7 @@ autocorr-mn eclipse-nls-mn hunspell-mn + libgweather-langpack-mn hyphen-mn moodle-mn @@ -4268,6 +4319,7 @@ hunspell-ne ibus-m17n koffice-langpack-ne + libgweather-langpack-ne scim-tables-nepali @@ -4374,6 +4426,8 @@ mythes-nn openoffice.org-langpack-nb_NO openoffice.org-langpack-nn_NO + libgweather-langpack-nb + libgweather-langpack-nn @@ -4422,6 +4476,7 @@ oc hunspell-oc + libgweather-langpack-oc @@ -4536,6 +4591,7 @@ hyphen-or ibus-m17n openoffice.org-langpack-or_IN + libgweather-langpack-or iok samyak-oriya-fonts @@ -4570,6 +4626,7 @@ hyphen-fa koffice-langpack-fa moodle-fa + libgweather-langpack-fa m17n-db-farsi @@ -4594,6 +4651,7 @@ moodle-pl mythes-pl openoffice.org-langpack-pl_PL + libgweather-langpack-pl fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4620,6 +4678,7 @@ mythes-pt nqc-doc-pt openoffice.org-langpack-pt_PT + libgweather-langpack-pt @@ -4663,6 +4722,7 @@ kde-i18n-Punjabi kde-l10n-Punjabi openoffice.org-langpack-pa_IN + libgweather-langpack-pa iok @@ -4681,6 +4741,7 @@ kde-l10n-Romanian moodle-ro mythes-ro + libgweather-langpack-ro fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4722,6 +4783,7 @@ moodle-ru mythes-ru openoffice.org-langpack-ru + libgweather-langpack-ru apanov-edrip-fonts apanov-heuristica-fonts fonts-KOI8-R @@ -4786,6 +4848,7 @@ moodle-sr_cr_bo moodle-sr_lt openoffice.org-langpack-sr + libgweather-langpack-sr apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -4837,6 +4900,7 @@ ibus-m17n ibus-sayura moodle-si + libgweather-langpack-si scim-sayura @@ -4858,6 +4922,7 @@ moodle-sk mythes-sk openoffice.org-langpack-sk_SK + libgweather-langpack-sk fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4882,6 +4947,7 @@ moodle-sl mythes-sl openoffice.org-langpack-sl_SI + libgweather-langpack-sl fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -5089,6 +5155,7 @@ openoffice.org-langpack-es tesseract-langpack-es tkgate-es + libgweather-langpack-es man-pages-es-extra @@ -5189,6 +5256,7 @@ moodle-sv mythes-sv openoffice.org-langpack-sv + libgweather-langpack-sv m17n-db-swedish @@ -5430,6 +5498,7 @@ moodle-ta moodle-ta_lk openoffice.org-langpack-ta_IN + libgweather-langpack-ta iok samyak-tamil-fonts serafettin-cartoon-fonts @@ -5451,6 +5520,7 @@ hyphen-te ibus-m17n openoffice.org-langpack-te_IN + libgweather-langpack-te iok pothana2000-fonts @@ -5530,6 +5600,7 @@ moodle-th nqc-doc-th openoffice.org-langpack-th_TH + libgweather-langpack-th thai-scalable-garuda-fonts thai-scalable-kinnari-fonts thai-scalable-loma-fonts @@ -5610,6 +5681,7 @@ koffice-langpack-tr moodle-tr openoffice.org-langpack-tr_TR + libgweather-langpack-tr xorg-x11-fonts-ISO8859-9-100dpi xorg-x11-fonts-ISO8859-9-75dpi @@ -5643,6 +5715,7 @@ moodle-uk mythes-uk openoffice.org-langpack-uk + libgweather-langpack-uk apanov-edrip-fonts fonts-KOI8-R fonts-KOI8-R-100dpi @@ -5733,6 +5806,7 @@ autocorr-vi hunspell-vi moodle-vi + libgweather-langpack-vi m17n-contrib-vietnamese m17n-db-vietnamese scim-tables-vietnamese @@ -5763,6 +5837,7 @@ hunspell-wa kde-l10n-Walloon + libgweather-langpack-wa @@ -5861,6 +5936,7 @@ moodle-cy openoffice.org-langpack-cy_GB tkgate-cy + libgweather-langpack-cy @@ -6057,6 +6133,7 @@ hunspell-xh openoffice.org-langpack-xh_ZA + libgweather-langpack-xh From pkgdb at fedoraproject.org Tue Jul 28 13:31:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:23 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133123.5343B10F89C@bastion2.fedora.phx.redhat.com> mcpierce has set the watchcommits acl on rubygem-hoe (Fedora 11) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:22 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133122.3DD4910F891@bastion2.fedora.phx.redhat.com> mcpierce has set the watchbugzilla acl on rubygem-hoe (Fedora 11) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:32 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133132.58C8C10F8B4@bastion2.fedora.phx.redhat.com> mcpierce has set the watchbugzilla acl on rubygem-hoe (Fedora 10) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:24 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133125.15F7B10F8A1@bastion2.fedora.phx.redhat.com> mcpierce has set the commit acl on rubygem-hoe (Fedora 11) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:32 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133132.E329810F8B8@bastion2.fedora.phx.redhat.com> mcpierce has set the watchcommits acl on rubygem-hoe (Fedora 10) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:34 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133134.7E1FD10F8BA@bastion2.fedora.phx.redhat.com> mcpierce has set the commit acl on rubygem-hoe (Fedora 10) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:39 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133139.4822310F8BF@bastion2.fedora.phx.redhat.com> mcpierce has set the watchcommits acl on rubygem-hoe (Fedora EPEL 5) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:37 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133137.C239610F8BB@bastion2.fedora.phx.redhat.com> mcpierce has set the watchbugzilla acl on rubygem-hoe (Fedora EPEL 5) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:49 +0000 Subject: [pkgdb] rubygem-hoe ownership updated Message-ID: <20090728133149.318CD10F897@bastion2.fedora.phx.redhat.com> Package rubygem-hoe in Fedora 8 was orphaned by mcpierce To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:49 +0000 Subject: [pkgdb] rubygem-hoe (un)retirement Message-ID: <20090728133149.3762910F89C@bastion2.fedora.phx.redhat.com> Package rubygem-hoe in Fedora 8 has been retired by mcpierce To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:54 +0000 Subject: [pkgdb] rubygem-hoe ownership updated Message-ID: <20090728133154.5015E10F8C7@bastion2.fedora.phx.redhat.com> Package rubygem-hoe in Fedora 9 was orphaned by mcpierce To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:54 +0000 Subject: [pkgdb] rubygem-hoe (un)retirement Message-ID: <20090728133154.5CC2610F8C9@bastion2.fedora.phx.redhat.com> Package rubygem-hoe in Fedora 9 has been retired by mcpierce To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From wwoods at fedoraproject.org Tue Jul 28 13:31:59 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Tue, 28 Jul 2009 13:31:59 +0000 (UTC) Subject: rpms/pybluez/devel .cvsignore, 1.3, 1.4 pybluez.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090728133159.BBE2011C00D4@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/pybluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11964 Modified Files: .cvsignore pybluez.spec sources Log Message: Update to 0.16 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pybluez/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Jun 2008 18:02:29 -0000 1.3 +++ .cvsignore 28 Jul 2009 13:31:59 -0000 1.4 @@ -1 +1 @@ -PyBluez-0.15.tar.gz +PyBluez-0.16.tar.gz Index: pybluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/pybluez/devel/pybluez.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pybluez.spec 26 Jul 2009 19:45:14 -0000 1.7 +++ pybluez.spec 28 Jul 2009 13:31:59 -0000 1.8 @@ -1,14 +1,14 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pybluez -Version: 0.15 -Release: 5%{?dist} +Version: 0.16 +Release: 1%{?dist} Summary: Python API for the BlueZ bluetooth stack Group: Development/Languages License: GPLv2 URL: http://code.google.com/p/pybluez/ -Source0: http://pybluez.googlecode.com/files/PyBluez-0.15.tar.gz +Source0: http://pybluez.googlecode.com/files/PyBluez-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel bluez-libs-devel @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Tue Jul 28 2009 Will Woods - 0.16-1 +- New (bugfix) release from upstream + * Sun Jul 26 2009 Fedora Release Engineering - 0.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pybluez/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Jun 2008 18:02:29 -0000 1.3 +++ sources 28 Jul 2009 13:31:59 -0000 1.4 @@ -1 +1 @@ -104ad743d4bc999796ceff4f39d1003a PyBluez-0.15.tar.gz +2ce8ff0dbb94c6be14e92e9968f4c914 PyBluez-0.16.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 13:32:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:32:00 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133200.53A5210F8B4@bastion2.fedora.phx.redhat.com> mcpierce has set the watchbugzilla acl on rubygem-hoe (Fedora devel) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:32:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:32:01 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133201.3C50710F8CD@bastion2.fedora.phx.redhat.com> mcpierce has set the watchcommits acl on rubygem-hoe (Fedora devel) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:32:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:32:02 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133202.84DC210F8D0@bastion2.fedora.phx.redhat.com> mcpierce has set the commit acl on rubygem-hoe (Fedora devel) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Tue Jul 28 13:31:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:31:40 +0000 Subject: [pkgdb] rubygem-hoe had acl change status Message-ID: <20090728133140.5559B10F8C2@bastion2.fedora.phx.redhat.com> mcpierce has set the commit acl on rubygem-hoe (Fedora EPEL 5) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From kyle at fedoraproject.org Tue Jul 28 13:35:42 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Tue, 28 Jul 2009 13:35:42 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc4-git2.bz2.sign, NONE, 1.1 .cvsignore, 1.1102, 1.1103 config-generic, 1.313, 1.314 kernel.spec, 1.1663, 1.1664 linux-2.6-fix-usb-serial-autosuspend.diff, 1.1, 1.2 sources, 1.1060, 1.1061 upstream, 1.974, 1.975 Message-ID: <20090728133542.EF5D611C00D4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13519 Modified Files: .cvsignore config-generic kernel.spec linux-2.6-fix-usb-serial-autosuspend.diff sources upstream Added Files: patch-2.6.31-rc4-git2.bz2.sign Log Message: * Tue Jul 28 2009 Kyle McMartin 2.6.31-0.101.rc4.git2 - 2.6.31-rc4-git2 - rebase linux-2.6-fix-usb-serial-autosuspend.diff - config changes: - USB_GSPCA_SN9C20X=m (_EVDEV=y) --- NEW FILE patch-2.6.31-rc4-git2.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKbuthyGugalF9Dw4RArbhAKCT3DrMQa/hOpEDQQXhavc/JVFVwgCfaGA1 fMVyNGa35kAyRtSnK68vF7E= =3tL8 -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1102 retrieving revision 1.1103 diff -u -p -r1.1102 -r1.1103 --- .cvsignore 23 Jul 2009 17:45:33 -0000 1.1102 +++ .cvsignore 28 Jul 2009 13:35:42 -0000 1.1103 @@ -6,3 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 +patch-2.6.31-rc4-git2.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.313 retrieving revision 1.314 diff -u -p -r1.313 -r1.314 --- config-generic 27 Jul 2009 17:42:04 -0000 1.313 +++ config-generic 28 Jul 2009 13:35:42 -0000 1.314 @@ -2813,6 +2813,8 @@ CONFIG_USB_GSPCA_OV519=m CONFIG_USB_GSPCA_OV534=m CONFIG_USB_GSPCA_PAC207=m CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SN9C20X_EVDEV=y CONFIG_USB_GSPCA_SONIXB=m CONFIG_USB_GSPCA_SONIXJ=m CONFIG_USB_GSPCA_SPCA500=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1663 retrieving revision 1.1664 diff -u -p -r1.1663 -r1.1664 --- kernel.spec 28 Jul 2009 11:24:17 -0000 1.1663 +++ kernel.spec 28 Jul 2009 13:35:42 -0000 1.1664 @@ -61,7 +61,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 4 # The git snapshot level -%define gitrev 0 +%define gitrev 2 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -109,7 +109,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 0 +%define rawhide_skip_docs 1 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1898,6 +1898,12 @@ fi # and build. %changelog +* Tue Jul 28 2009 Kyle McMartin 2.6.31-0.101.rc4.git2 +- 2.6.31-rc4-git2 +- rebase linux-2.6-fix-usb-serial-autosuspend.diff +- config changes: + - USB_GSPCA_SN9C20X=m (_EVDEV=y) + * Tue Jul 28 2009 Ben Skeggs - drm-nouveau.patch: cleanup userspace API, various bugfixes. Looks worse than it is, register macros got cleaned up, which linux-2.6-fix-usb-serial-autosuspend.diff: usb-serial.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Index: linux-2.6-fix-usb-serial-autosuspend.diff =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-fix-usb-serial-autosuspend.diff,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- linux-2.6-fix-usb-serial-autosuspend.diff 18 Jul 2009 22:50:13 -0000 1.1 +++ linux-2.6-fix-usb-serial-autosuspend.diff 28 Jul 2009 13:35:42 -0000 1.2 @@ -7,10 +7,10 @@ Date: Sat Jul 18 07:19:04 2009 +0200 the usage counter must be increased only after autoresumption diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c -index bd7581b..c6f69c0 100644 +index 99188c9..3d1a756 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c -@@ -214,15 +214,13 @@ static int serial_open (struct tty_struct *tty, struct file *filp) +@@ -216,16 +216,15 @@ static int serial_open (struct tty_struct *tty, struct file *filp) goto bailout_port_put; } @@ -24,10 +24,12 @@ index bd7581b..c6f69c0 100644 /* If the console is attached, the device is already open */ - if (port->port.count == 1 && !port->console) { + if (!port->port.count && !port->console) { - + first = 1; ++ /* lock this module before we call it * this may fail, which means we must bail out, -@@ -240,12 +238,16 @@ static int serial_open (struct tty_struct *tty, struct file *filp) + * safe because we are called with BKL held */ +@@ -242,6 +241,8 @@ static int serial_open (struct tty_struct *tty, struct file *filp) if (retval) goto bailout_module_put; @@ -36,9 +38,10 @@ index bd7581b..c6f69c0 100644 /* only call the device specific open if this * is the first time the port is opened */ retval = serial->type->open(tty, port, filp); - if (retval) +@@ -249,6 +250,8 @@ static int serial_open (struct tty_struct *tty, struct file *filp) goto bailout_interface_put; mutex_unlock(&serial->disc_mutex); + set_bit(ASYNCB_INITIALIZED, &port->port.flags); + } else { + ++port->port.count; } Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1060 retrieving revision 1.1061 diff -u -p -r1.1060 -r1.1061 --- sources 23 Jul 2009 17:45:33 -0000 1.1060 +++ sources 28 Jul 2009 13:35:42 -0000 1.1061 @@ -1,2 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 879f514ce009b9a7535b743f71cd3c02 patch-2.6.31-rc4.bz2 +a938ea7066785d6cbeba8188aa15c7c8 patch-2.6.31-rc4-git2.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.974 retrieving revision 1.975 diff -u -p -r1.974 -r1.975 --- upstream 23 Jul 2009 17:45:33 -0000 1.974 +++ upstream 28 Jul 2009 13:35:42 -0000 1.975 @@ -1,3 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 +patch-2.6.31-rc4-git2.bz2 From dwalsh at fedoraproject.org Tue Jul 28 13:43:02 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 28 Jul 2009 13:43:02 +0000 (UTC) Subject: rpms/setools/devel setools-qpol.patch, NONE, 1.1 setools.spec, 1.90, 1.91 Message-ID: <20090728134303.0EA8A11C00D4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16985 Modified Files: setools.spec Added Files: setools-qpol.patch Log Message: * Tue Jul 28 2009 Dan Walsh 3.3.6-3 - Fix qpol install of include files setools-qpol.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE setools-qpol.patch --- diff -up setools-3.3.6/libqpol/include/qpol/Makefile.am~ setools-3.3.6/libqpol/include/qpol/Makefile.am --- setools-3.3.6/libqpol/include/qpol/Makefile.am~ 2009-07-14 14:03:27.000000000 -0400 +++ setools-3.3.6/libqpol/include/qpol/Makefile.am 2009-07-28 09:01:32.000000000 -0400 @@ -17,7 +17,7 @@ qpol_HEADERS = \ netifcon_query.h \ nodecon_query.h \ permissive_query.h \ - polcap_query.h + polcap_query.h \ policy.h \ policy_extend.h \ portcon_query.h \ Index: setools.spec =================================================================== RCS file: /cvs/extras/rpms/setools/devel/setools.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- setools.spec 27 Jul 2009 04:12:01 -0000 1.90 +++ setools.spec 28 Jul 2009 13:43:02 -0000 1.91 @@ -5,7 +5,7 @@ Name: setools Version: %{setools_maj_ver}.%{setools_min_ver} -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: http://oss.tresys.com/projects/setools BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -14,6 +14,7 @@ Source1: setools.pam Source2: apol.desktop Source3: seaudit.desktop Source4: sediffx.desktop +Patch1: setools-qpol.patch Summary: Policy analysis tools for SELinux Group: System Environment/Base Requires: setools-libs = %{version}-%{release} setools-libs-tcl = %{version}-%{release} setools-gui = %{version}-%{release} setools-console = %{version}-%{release} @@ -185,6 +186,7 @@ This package includes the following grap %prep %setup -q +%patch1 -p 1 -b .qpol %build %configure --libdir=%{_libdir} --disable-bwidget-check --disable-selinux-check \ @@ -344,6 +346,9 @@ rm -rf ${RPM_BUILD_ROOT} %postun libs-tcl -p /sbin/ldconfig %changelog +* Tue Jul 28 2009 Dan Walsh 3.3.6-3 +- Fix qpol install of include files + * Sun Jul 26 2009 Fedora Release Engineering - 3.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Tue Jul 28 13:44:42 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 13:44:42 +0000 (UTC) Subject: rpms/gbdfed/devel gbdfed-1.5-getline.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 gbdfed.spec, 1.3, 1.4 sources, 1.2, 1.3 gbdfed-1.4-gtk-deprecated-fix.patch, 1.1, NONE gbdfed-1.4-patch1, 1.1, NONE Message-ID: <20090728134442.9740811C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/gbdfed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17782 Modified Files: .cvsignore gbdfed.spec sources Added Files: gbdfed-1.5-getline.patch Removed Files: gbdfed-1.4-gtk-deprecated-fix.patch gbdfed-1.4-patch1 Log Message: 1.5 gbdfed-1.5-getline.patch: bdfgname.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- NEW FILE gbdfed-1.5-getline.patch --- diff -up gbdfed-1.5/bdfgname.c.BAD gbdfed-1.5/bdfgname.c --- gbdfed-1.5/bdfgname.c.BAD 2009-07-28 09:34:47.110216848 -0400 +++ gbdfed-1.5/bdfgname.c 2009-07-28 09:35:12.011257674 -0400 @@ -39,7 +39,7 @@ static unsigned int adobe_names_used; #define MAX_GLYPH_NAME_LEN 127 static int -getline(FILE *in, char *buf, int limit) +_bdf_getline(FILE *in, char *buf, int limit) { int c, i; @@ -78,11 +78,11 @@ _bdf_find_name(int code, char *name, FIL while (!feof(in)) { pos = ftell(in); - (void) getline(in, buf, 256); + (void) _bdf_getline(in, buf, 256); while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) { buf[0] = 0; pos = ftell(in); - (void) getline(in, buf, 256); + (void) _bdf_getline(in, buf, 256); } if (buf[0] == 0) @@ -139,11 +139,11 @@ _bdf_load_adobe_names(FILE *in) while (!feof(in)) { pos = ftell(in); - (void) getline(in, buf, 256); + (void) _bdf_getline(in, buf, 256); while (!feof(in) && (buf[0] == 0 || buf[0] == '#')) { buf[0] = 0; pos = ftell(in); - (void) getline(in, buf, 256); + (void) _bdf_getline(in, buf, 256); } if (adobe_names_used == adobe_names_size) { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gbdfed/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Dec 2008 15:15:43 -0000 1.2 +++ .cvsignore 28 Jul 2009 13:44:42 -0000 1.3 @@ -1 +1 @@ -gbdfed-1.4.tbz2 +gbdfed-1.5.tbz2 Index: gbdfed.spec =================================================================== RCS file: /cvs/pkgs/rpms/gbdfed/devel/gbdfed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gbdfed.spec 24 Jul 2009 23:33:28 -0000 1.3 +++ gbdfed.spec 28 Jul 2009 13:44:42 -0000 1.4 @@ -1,15 +1,14 @@ Name: gbdfed Summary: Bitmap Font Editor -Version: 1.4 -Release: 3%{?dist} +Version: 1.5 +Release: 1%{?dist} License: MIT Group: Applications/System Source0: http://www.math.nmsu.edu/~mleisher/Software/gbdfed/%{name}-%{version}.tbz2 Source1: http://www.math.nmsu.edu/~mleisher/Software/gbdfed/%{name}16x16.png Source2: gbdfed.desktop -Patch0: http://www.math.nmsu.edu/~mleisher/Software/gbdfed/%{name}-1.4-patch1 -# Fix the code to not use deprecated aliases -Patch1: gbdfed-1.4-gtk-deprecated-fix.patch +# Fix conflict with getline() in stdio.h +Patch0: gbdfed-1.5-getline.patch URL: http://www.math.nmsu.edu/~mleisher/Software/gbdfed/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: freetype-devel, pango-devel, libX11-devel, libICE-devel, gtk2-devel @@ -23,8 +22,7 @@ editing font properties. The editor work %prep %setup -q -%patch0 -p1 -b .patch1 -%patch1 -p1 -b .gtk-deprecated-fix +%patch0 -p1 -b .getline %build %configure @@ -52,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man1/gbdfed* %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.5-1 +- update to 1.5 + * Fri Jul 24 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gbdfed/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Dec 2008 15:15:43 -0000 1.2 +++ sources 28 Jul 2009 13:44:42 -0000 1.3 @@ -1 +1 @@ -97dd44876f83caa5c3ae2c2479d7bff2 gbdfed-1.4.tbz2 +39d62dc6269a2350626b3d14678e13b4 gbdfed-1.5.tbz2 --- gbdfed-1.4-gtk-deprecated-fix.patch DELETED --- --- gbdfed-1.4-patch1 DELETED --- From pkgdb at fedoraproject.org Tue Jul 28 13:50:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:50:05 +0000 Subject: [pkgdb] xmp: itamarjp has requested approveacls Message-ID: <20090728135005.9A65810F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on xmp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xmp From pkgdb at fedoraproject.org Tue Jul 28 13:50:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:50:08 +0000 Subject: [pkgdb] xmp: itamarjp has requested approveacls Message-ID: <20090728135008.88F7110F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on xmp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xmp From pkgdb at fedoraproject.org Tue Jul 28 13:50:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:50:10 +0000 Subject: [pkgdb] xmp: itamarjp has requested approveacls Message-ID: <20090728135009.EFC4C10F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on xmp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xmp From pkgdb at fedoraproject.org Tue Jul 28 13:55:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:55:05 +0000 Subject: [pkgdb] tre: itamarjp has requested approveacls Message-ID: <20090728135505.5076F10F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tre (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tre From pkgdb at fedoraproject.org Tue Jul 28 13:55:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:55:10 +0000 Subject: [pkgdb] tre: itamarjp has requested approveacls Message-ID: <20090728135510.03FEE10F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tre (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tre From pkgdb at fedoraproject.org Tue Jul 28 13:55:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 13:55:11 +0000 Subject: [pkgdb] tre: itamarjp has requested approveacls Message-ID: <20090728135512.A743510F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tre (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tre From rhughes at fedoraproject.org Tue Jul 28 14:01:28 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 28 Jul 2009 14:01:28 +0000 (UTC) Subject: rpms/hal/devel hal-mdfind.patch,NONE,1.1 hal.spec,1.202,1.203 Message-ID: <20090728140128.9960911C00D4@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25555 Modified Files: hal.spec Added Files: hal-mdfind.patch Log Message: * Tue Jul 28 2009 Richard Hughes - 0.5.13-5 - Apply a patch to fix mdraid devices. - Fixes #507782 hal-mdfind.patch: blockdev.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE hal-mdfind.patch --- diff -up hal-0.5.12/hald/linux/blockdev.c.mdfind hal-0.5.12/hald/linux/blockdev.c --- hal-0.5.12/hald/linux/blockdev.c.mdfind 2009-02-26 10:53:02.000000000 +0000 +++ hal-0.5.12/hald/linux/blockdev.c 2009-07-22 15:16:39.000000000 +0100 @@ -878,7 +878,7 @@ error: } -void + hotplug_event_begin_add_blockdev (const gchar *sysfs_path, const gchar *device_file, gboolean is_partition, HalDevice *parent, void *end_token) { @@ -893,6 +893,7 @@ hotplug_event_begin_add_blockdev (const gboolean is_md_device; gboolean is_cciss_device; int md_number; + char tc; is_device_mapper = FALSE; is_fakevolume = FALSE; @@ -911,7 +912,7 @@ hotplug_event_begin_add_blockdev (const HAL_INFO (("Handling %s as fakevolume - sysfs_path_real=%s", device_file, sysfs_path_real)); is_fakevolume = TRUE; sysfs_path_real = hal_util_get_parent_path (sysfs_path); - } else if (sscanf (hal_util_get_last_element (sysfs_path), "md%d", &md_number) == 1) { + } else if (sscanf (hal_util_get_last_element (sysfs_path), "md%d%c", &md_number, &tc) == 1) { HAL_INFO (("Handling %s as MD device", device_file)); is_md_device = TRUE; sysfs_path_real = g_strdup (sysfs_path); Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.202 retrieving revision 1.203 diff -u -p -r1.202 -r1.203 --- hal.spec 28 Jul 2009 12:54:54 -0000 1.202 +++ hal.spec 28 Jul 2009 14:01:28 -0000 1.203 @@ -26,7 +26,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.13 -Release: 4%{?dist} +Release: 5%{?dist} #Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -46,6 +46,9 @@ Patch9: hal-KVM-evdev.patch # http://bugs.freedesktop.org/show_bug.cgi?id=22442 Patch11: hal-HDAPS-blacklist.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=507782 +Patch12: hal-mdfind.patch + Patch100: hal-0.5.12-use-at-console.patch License: AFL or GPLv2 @@ -137,6 +140,7 @@ API docs for HAL. %patch4 -p1 -b .dell-killswitch %patch9 -p1 -b .kvm-evdev %patch11 -p1 -b .hdaps-blacklist +%patch12 -p1 -b .mdfind %patch100 -p1 -b .drop-polkit autoreconf -i -f @@ -276,6 +280,10 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Tue Jul 28 2009 Richard Hughes - 0.5.13-5 +- Apply a patch to fix mdraid devices. +- Fixes #507782 + * Tue Jul 28 2009 Richard Hughes - 0.5.13-4 - Fix build harder From mclasen at fedoraproject.org Tue Jul 28 14:05:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 14:05:16 +0000 (UTC) Subject: comps comps-f12.xml.in,1.59,1.60 Message-ID: <20090728140517.00D1011C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27307 Modified Files: comps-f12.xml.in Log Message: Revert unintentional changes Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- comps-f12.xml.in 28 Jul 2009 13:25:16 -0000 1.59 +++ comps-f12.xml.in 28 Jul 2009 14:05:16 -0000 1.60 @@ -63,7 +63,6 @@ hunspell-sq moodle-sq - libgweather-langpack-sq @@ -93,7 +92,6 @@ kde-l10n-Arabic moodle-ar openoffice.org-langpack-ar - libgweather-langpack-ar dejavu-sans-fonts dejavu-sans-mono-fonts kacst-art-fonts @@ -128,7 +126,6 @@ dejavu-sans-fonts hunspell-hy moodle-hy - libgweather-langpack-hy m17n-db-armenian @@ -147,7 +144,6 @@ ibus-m17n kde-l10n-Bengali openoffice.org-langpack-as_IN - libgweather-langpack-as iok @@ -200,7 +196,6 @@ az hunspell-az - libgweather-langpack-az @@ -431,7 +426,6 @@ koffice-langpack-eu moodle-eu openoffice.org-langpack-eu_ES - libgweather-langpack-eu @@ -444,7 +438,6 @@ hunspell-be moodle-be - libgweather-langpack-be apanov-edrip-fonts @@ -465,7 +458,6 @@ kde-i18n-Bengali moodle-bn openoffice.org-langpack-bn - libgweather-langpack-bn iok @@ -479,7 +471,6 @@ jomolhari-fonts openoffice.org-langpack-dz - libgweather-langpack-dz @@ -503,7 +494,6 @@ bs moodle-bs - libgweather-langpack-bs @@ -527,7 +517,6 @@ mythes-pt nqc-doc-pt openoffice.org-langpack-pt_BR - libgweather-langpack-pt_BR @@ -554,7 +543,6 @@ kde-i18n-British kde-l10n-British koffice-langpack-en_GB - libgweather-langpack-en_GB @@ -608,7 +596,6 @@ moodle-bg mythes-bg openoffice.org-langpack-bg_BG - libgweather-langpack-bg apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -646,7 +633,6 @@ mythes-ca openoffice.org-langpack-ca_ES tkgate-ca - libgweather-langpack-ca @@ -686,9 +672,6 @@ moodle-zh_tw openoffice.org-langpack-zh_CN openoffice.org-langpack-zh_TW - libgweather-zh_CN - libgweather-zh_HK - libgweather-zh_TW taipeifonts gcin ibus-table-cangjie @@ -858,7 +841,6 @@ hyphen-hr moodle-hr openoffice.org-langpack-hr_HR - libgweather-langpack-hr fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -887,7 +869,6 @@ mythes-cs openoffice.org-langpack-cs_CZ tkgate-cs - libgweather-langpack-cs fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -914,7 +895,6 @@ moodle-da mythes-da openoffice.org-langpack-da_DK - libgweather-langpack-da m17n-db-danish @@ -1267,7 +1247,6 @@ nqc-doc-nl openoffice.org-langpack-nl tesseract-langpack-nl - libgweather-langpack-nl @@ -1616,7 +1595,6 @@ koffice-langpack-et moodle-et openoffice.org-langpack-et_EE - libgweather-langpack-et apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -1631,7 +1609,6 @@ true am - libgweather-langpack-am abyssinica-fonts m17n-db-amharic scim-tables-amharic @@ -1704,7 +1681,6 @@ hunspell-tl moodle-fil - libgweather-langpack-fi @@ -2050,7 +2026,6 @@ openoffice.org-langpack-fr tesseract-langpack-fr tkgate-fr - libgweather-langpack-fr ecolier-court-fonts ecolier-court-lignes-fonts m17n-db-french @@ -2117,7 +2092,6 @@ koffice-langpack-gl moodle-gl openoffice.org-langpack-gl_ES - libgweather-langpack-gl @@ -2400,7 +2374,6 @@ dejavu-sans-fonts moodle-ka - libgweather-langpack-ka bpg-chveulebrivi-fonts bpg-courier-fonts bpg-glaho-fonts @@ -2447,7 +2420,6 @@ openoffice.org-langpack-de tesseract-langpack-de tkgate-de - libgweather-langpack-de @@ -2857,7 +2829,6 @@ openoffice.org-langpack-el_GR tex-cm-lgc tex-kerkis - libgweather-langpack-el ctan-kerkis-calligraphic-fonts ctan-kerkis-sans-fonts ctan-kerkis-serif-fonts @@ -2907,7 +2878,6 @@ kde-l10n-Gujarati moodle-gu openoffice.org-langpack-gu_IN - libgweather-langpack-gu iok samyak-gujarati-fonts @@ -3000,7 +2970,6 @@ moodle-he openoffice.org-langpack-he_IL tetex-fonts-hebrew - libgweather-langpack-he culmus-aharoni-clm-fonts culmus-caladings-clm-fonts culmus-david-clm-fonts @@ -3047,7 +3016,6 @@ kde-l10n-Hindi moodle-hi openoffice.org-langpack-hi_IN - libgweather-langpack-hi iok samyak-devanagari-fonts sarai-fonts @@ -3071,7 +3039,6 @@ koffice-langpack-hu moodle-hu openoffice.org-langpack-hu_HU - libgweather-langpack-hu fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -3091,7 +3058,6 @@ kde-i18n-Icelandic kde-l10n-Icelandic moodle-is - libgweather-langpack-is @@ -3107,7 +3073,6 @@ hunspell-id hyphen-id moodle-id - libgweather-langpack-id @@ -3271,7 +3236,6 @@ moodle-ga mythes-ga openoffice.org-langpack-ga_IE - libgweather-langpack-ga @@ -3300,7 +3264,6 @@ openoffice.org-langpack-it tesseract-langpack-it tkgate-it - libgweather-langpack-it @@ -3318,7 +3281,6 @@ kde-l10n-Japanese koffice-langpack-ja man-pages-ja - libgweather-langpack-ja moodle-ja nqc-doc-ja openoffice.org-langpack-ja_JP @@ -3534,7 +3496,6 @@ ibus-m17n moodle-kn openoffice.org-langpack-kn_IN - libgweather-langpack-kn iok @@ -3737,7 +3698,6 @@ rw hunspell-rw - libgweather-langpack-rw @@ -3773,7 +3733,6 @@ man-pages-ko moodle-ko openoffice.org-langpack-ko_KR - libgweather-langpack-ko baekmuk-bdf-fonts baekmuk-ttf-batang-fonts baekmuk-ttf-dotum-fonts @@ -3811,7 +3770,6 @@ hunspell-ku kde-l10n-Kurdish - libgweather-langpack-ku kurdit-unikurd-web-fonts @@ -3853,7 +3811,6 @@ koffice-langpack-lv moodle-lv - libgweather-langpack-lv legacy-fonts @@ -3976,7 +3933,6 @@ kde-l10n-Lithuanian moodle-lt openoffice.org-langpack-lt_LT - libgweather-langpack-lt @@ -4047,7 +4003,6 @@ hunspell-mk kde-l10n-Macedonian moodle-mk - libgweather-langpack-mk @@ -4100,7 +4055,6 @@ ibus-m17n kde-l10n-Maithili openoffice.org-langpack-mai_IN - libgweather-langpack-mai iok lohit-maithili-fonts m17n-contrib-maithili @@ -4115,7 +4069,6 @@ mg hunspell-mg - libgweather-langpack-mg @@ -4130,7 +4083,6 @@ koffice-langpack-ms moodle-ms openoffice.org-langpack-ms_MY - libgweather-langpack-ms @@ -4150,7 +4102,6 @@ kde-l10n-Malayalam moodle-ml openoffice.org-langpack-ml_IN - libgweather-langpack-ml iok lohit-malayalam-fonts samyak-malayalam-fonts @@ -4216,7 +4167,6 @@ ibus-m17n kde-l10n-Marathi openoffice.org-langpack-mr_IN - libgweather-langpack-mr iok samyak-devanagari-fonts @@ -4276,7 +4226,6 @@ autocorr-mn eclipse-nls-mn hunspell-mn - libgweather-langpack-mn hyphen-mn moodle-mn @@ -4319,7 +4268,6 @@ hunspell-ne ibus-m17n koffice-langpack-ne - libgweather-langpack-ne scim-tables-nepali @@ -4426,8 +4374,6 @@ mythes-nn openoffice.org-langpack-nb_NO openoffice.org-langpack-nn_NO - libgweather-langpack-nb - libgweather-langpack-nn @@ -4476,7 +4422,6 @@ oc hunspell-oc - libgweather-langpack-oc @@ -4591,7 +4536,6 @@ hyphen-or ibus-m17n openoffice.org-langpack-or_IN - libgweather-langpack-or iok samyak-oriya-fonts @@ -4626,7 +4570,6 @@ hyphen-fa koffice-langpack-fa moodle-fa - libgweather-langpack-fa m17n-db-farsi @@ -4651,7 +4594,6 @@ moodle-pl mythes-pl openoffice.org-langpack-pl_PL - libgweather-langpack-pl fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4678,7 +4620,6 @@ mythes-pt nqc-doc-pt openoffice.org-langpack-pt_PT - libgweather-langpack-pt @@ -4722,7 +4663,6 @@ kde-i18n-Punjabi kde-l10n-Punjabi openoffice.org-langpack-pa_IN - libgweather-langpack-pa iok @@ -4741,7 +4681,6 @@ kde-l10n-Romanian moodle-ro mythes-ro - libgweather-langpack-ro fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4783,7 +4722,6 @@ moodle-ru mythes-ru openoffice.org-langpack-ru - libgweather-langpack-ru apanov-edrip-fonts apanov-heuristica-fonts fonts-KOI8-R @@ -4848,7 +4786,6 @@ moodle-sr_cr_bo moodle-sr_lt openoffice.org-langpack-sr - libgweather-langpack-sr apanov-edrip-fonts fonts-ISO8859-2 fonts-ISO8859-2-100dpi @@ -4900,7 +4837,6 @@ ibus-m17n ibus-sayura moodle-si - libgweather-langpack-si scim-sayura @@ -4922,7 +4858,6 @@ moodle-sk mythes-sk openoffice.org-langpack-sk_SK - libgweather-langpack-sk fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -4947,7 +4882,6 @@ moodle-sl mythes-sl openoffice.org-langpack-sl_SI - libgweather-langpack-sl fonts-ISO8859-2 fonts-ISO8859-2-100dpi fonts-ISO8859-2-75dpi @@ -5155,7 +5089,6 @@ openoffice.org-langpack-es tesseract-langpack-es tkgate-es - libgweather-langpack-es man-pages-es-extra @@ -5256,7 +5189,6 @@ moodle-sv mythes-sv openoffice.org-langpack-sv - libgweather-langpack-sv m17n-db-swedish @@ -5498,7 +5430,6 @@ moodle-ta moodle-ta_lk openoffice.org-langpack-ta_IN - libgweather-langpack-ta iok samyak-tamil-fonts serafettin-cartoon-fonts @@ -5520,7 +5451,6 @@ hyphen-te ibus-m17n openoffice.org-langpack-te_IN - libgweather-langpack-te iok pothana2000-fonts @@ -5600,7 +5530,6 @@ moodle-th nqc-doc-th openoffice.org-langpack-th_TH - libgweather-langpack-th thai-scalable-garuda-fonts thai-scalable-kinnari-fonts thai-scalable-loma-fonts @@ -5681,7 +5610,6 @@ koffice-langpack-tr moodle-tr openoffice.org-langpack-tr_TR - libgweather-langpack-tr xorg-x11-fonts-ISO8859-9-100dpi xorg-x11-fonts-ISO8859-9-75dpi @@ -5715,7 +5643,6 @@ moodle-uk mythes-uk openoffice.org-langpack-uk - libgweather-langpack-uk apanov-edrip-fonts fonts-KOI8-R fonts-KOI8-R-100dpi @@ -5806,7 +5733,6 @@ autocorr-vi hunspell-vi moodle-vi - libgweather-langpack-vi m17n-contrib-vietnamese m17n-db-vietnamese scim-tables-vietnamese @@ -5837,7 +5763,6 @@ hunspell-wa kde-l10n-Walloon - libgweather-langpack-wa @@ -5936,7 +5861,6 @@ moodle-cy openoffice.org-langpack-cy_GB tkgate-cy - libgweather-langpack-cy @@ -6133,7 +6057,6 @@ hunspell-xh openoffice.org-langpack-xh_ZA - libgweather-langpack-xh From limb at fedoraproject.org Tue Jul 28 14:14:02 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 28 Jul 2009 14:14:02 +0000 (UTC) Subject: rpms/etherbat/devel etherbat.spec,1.5,1.6 Message-ID: <20090728141402.C0E5A11C00D4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/etherbat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30967 Modified Files: etherbat.spec Log Message: BZ 514194 Index: etherbat.spec =================================================================== RCS file: /cvs/pkgs/rpms/etherbat/devel/etherbat.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- etherbat.spec 24 Jul 2009 22:19:37 -0000 1.5 +++ etherbat.spec 28 Jul 2009 14:14:02 -0000 1.6 @@ -1,6 +1,6 @@ Name: etherbat Version: 1.0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Ethernet topology discovery Group: Applications/Internet @@ -20,7 +20,7 @@ running Etherbat and two other devices. %setup -q %build -CFLAGS="$RPM_OPT_FLAGS" make LIBNET_STATIC=%{_libdir}/libnet.a +CFLAGS="$RPM_OPT_FLAGS" make %install rm -rf $RPM_BUILD_ROOT @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/etherbat %changelog +* Tue Jul 28 2009 Mahavir Jain 1.0.1-7 +- Build etherbat dynamically as libnet-devel 1.3 provides libnet.so. + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From limb at fedoraproject.org Tue Jul 28 14:14:49 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 28 Jul 2009 14:14:49 +0000 (UTC) Subject: rpms/etherbat/F-11 etherbat.spec,1.4,1.5 Message-ID: <20090728141449.6A05911C00D4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/etherbat/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31444 Modified Files: etherbat.spec Log Message: BZ 514194 Index: etherbat.spec =================================================================== RCS file: /cvs/pkgs/rpms/etherbat/F-11/etherbat.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- etherbat.spec 24 Feb 2009 15:31:37 -0000 1.4 +++ etherbat.spec 28 Jul 2009 14:14:49 -0000 1.5 @@ -1,6 +1,6 @@ Name: etherbat Version: 1.0.1 -Release: 5%{?dist} +Release: 7%{?dist} Summary: Ethernet topology discovery Group: Applications/Internet @@ -20,7 +20,7 @@ running Etherbat and two other devices. %setup -q %build -CFLAGS="$RPM_OPT_FLAGS" make LIBNET_STATIC=%{_libdir}/libnet.a +CFLAGS="$RPM_OPT_FLAGS" make %install rm -rf $RPM_BUILD_ROOT @@ -41,6 +41,12 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/etherbat %changelog +* Tue Jul 28 2009 Mahavir Jain 1.0.1-7 +- Build etherbat dynamically as libnet-devel 1.3 provides libnet.so. + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Tue Jul 28 14:16:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 28 Jul 2009 14:16:23 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver-1.6.99-randr-error-debugging.patch, NONE, 1.1 xorg-x11-server.spec, 1.453, 1.454 Message-ID: <20090728141623.4480711C00D4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32221 Modified Files: xorg-x11-server.spec Added Files: xserver-1.6.99-randr-error-debugging.patch Log Message: * Tue Jul 28 2009 Adam Jackson 1.6.99-19.20090724 - xserver-1.6.99-randr-error-debugging.patch: Dump RANDR protocol errors to the log. - Un-package xf8_16bpp, no one cares. xserver-1.6.99-randr-error-debugging.patch: randr.c | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) --- NEW FILE xserver-1.6.99-randr-error-debugging.patch --- >From 9e5f2dcdd30c22661760a0a962da44e4acb6a7e3 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 27 Jul 2009 16:52:42 -0400 Subject: [PATCH] additional randr debugging --- randr/randr.c | 32 ++++++++++++++++++++++++++++---- 1 files changed, 28 insertions(+), 4 deletions(-) diff --git a/randr/randr.c b/randr/randr.c index 1c1d0c4..e4d7cfc 100644 --- a/randr/randr.c +++ b/randr/randr.c @@ -477,10 +477,24 @@ RRVerticalRefresh (xRRModeInfo *mode) static int ProcRRDispatch (ClientPtr client) { + int ret; REQUEST(xReq); if (stuff->data >= RRNumberRequests || !ProcRandrVector[stuff->data]) return BadRequest; - return (*ProcRandrVector[stuff->data]) (client); + ret = ProcRandrVector[stuff->data](client); + + if (ret) { + int i; + ErrorF("RANDR failure: %d (extension base %d)\n", ret, RRErrorBase); + for (i = 0; i < stuff->length; i++) { + ErrorF("%08x ", ((unsigned int *)stuff) + i); + if ((i+1) % 4 == 0) + ErrorF("\n"); + } + ErrorF("\n"); + } + + return ret; } static int -- 1.6.3.3 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.453 retrieving revision 1.454 diff -u -p -r1.453 -r1.454 --- xorg-x11-server.spec 27 Jul 2009 05:26:40 -0000 1.453 +++ xorg-x11-server.spec 28 Jul 2009 14:16:23 -0000 1.454 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 18.%{gitdate}%{?dist} +Release: 19.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -75,6 +75,7 @@ Patch6023: xserver-1.6.99-use-pci-access # ajax needs to upstream this Patch6027: xserver-1.6.0-displayfd.patch +Patch6028: xserver-1.6.99-randr-error-debugging.patch Patch6042: xserver-1.6.1-proc-cmdline.patch @@ -356,6 +357,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT moduledir=%{moduledir} %if %{with_hw_servers} +rm -f $RPM_BUILD_ROOT%{_libdir}/xorg/modules/libxf8_16bpp.so mkdir -p $RPM_BUILD_ROOT%{_libdir}/xorg/modules/{drivers,input} mkdir -p $RPM_BUILD_ROOT%{_datadir}/xorg @@ -449,7 +451,6 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xorg/modules/libvgahw.so %{_libdir}/xorg/modules/libwfb.so %{_libdir}/xorg/modules/libxaa.so -%{_libdir}/xorg/modules/libxf8_16bpp.so %{_mandir}/man1/gtf.1* %{_mandir}/man1/Xorg.1* %{_mandir}/man1/cvt.1* @@ -524,6 +525,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Adam Jackson 1.6.99-19.20090724 +- xserver-1.6.99-randr-error-debugging.patch: Dump RANDR protocol errors + to the log. +- Un-package xf8_16bpp, no one cares. + * Mon Jul 27 2009 Dave Airlie 1.6.99-18.20090724 - xserver-1.6.99-use-pci-access-boot.patch: use pciaccess boot vga - not sure what is up with the Conflicts stuff From nsantos at fedoraproject.org Tue Jul 28 14:17:34 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Tue, 28 Jul 2009 14:17:34 +0000 (UTC) Subject: rpms/ruby-qpid/devel .cvsignore, 1.11, 1.12 ruby-qpid.spec, 1.16, 1.17 sources, 1.11, 1.12 Message-ID: <20090728141734.05C5C11C00D4@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv318 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 795209 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 6 Jul 2009 20:22:09 -0000 1.11 +++ .cvsignore 28 Jul 2009 14:17:33 -0000 1.12 @@ -1 +1 @@ -ruby-qpid-0.5.791584.tar.gz +ruby-qpid-0.5.795209.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/ruby-qpid.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ruby-qpid.spec 27 Jul 2009 03:23:47 -0000 1.16 +++ ruby-qpid.spec 28 Jul 2009 14:17:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: ruby-qpid -Version: 0.5.791584 -Release: 2%{?dist} +Version: 0.5.795209 +Release: 1%{?dist} Summary: Ruby language client for AMQP Group: Development/Ruby @@ -22,12 +22,12 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: ruby BuildRequires: ruby-devel BuildRequires: rubygem-rake -BuildRequires: amqp >= 1.0.%{version} +BuildRequires: amqp >= 1.0.791584 BuildRequires: cyrus-sasl-devel Requires: ruby Requires: ruby(abi) = 1.8 -Requires: amqp >= 1.0.%{version} +Requires: amqp >= 1.0.791584 Requires: cyrus-sasl Provides: ruby(qpid) = %{version} @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Tue Jul 28 2009 Nuno Santos - 0.5.795209-1 +- Rebased to svn rev 795209 + * Sun Jul 26 2009 Fedora Release Engineering - 0.5.791584-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 6 Jul 2009 20:22:09 -0000 1.11 +++ sources 28 Jul 2009 14:17:33 -0000 1.12 @@ -1 +1 @@ -118963541a81027a8a377f1643ea9162 ruby-qpid-0.5.791584.tar.gz +38a0a3a6f4678c8812bafae146d6c00d ruby-qpid-0.5.795209.tar.gz From mgrepl at fedoraproject.org Tue Jul 28 14:20:08 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Tue, 28 Jul 2009 14:20:08 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.34, 1.35 selinux-policy.spec, 1.889, 1.890 Message-ID: <20090728142008.6095111C00D4@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1641 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow logrotate sys_ptrace capability policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/logrotate.te | 6 modules/admin/mrtg.te | 4 modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/rpm.te | 4 modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 30 +++- modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 9 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 18 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/exim.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 3 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/polkit.te | 1 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.if | 21 ++ modules/services/sendmail.te | 7 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 23 ++- modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 2 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iptables.te | 4 modules/system/iscsi.te | 1 modules/system/libraries.fc | 8 - modules/system/locallogin.te | 6 modules/system/sysnetwork.te | 17 +- modules/system/udev.te | 5 modules/system/userdomain.if | 22 +- modules/system/virtual.te | 5 modules/system/xen.te | 1 114 files changed, 1907 insertions(+), 579 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- policy-20090521.patch 28 Jul 2009 13:07:14 -0000 1.34 +++ policy-20090521.patch 28 Jul 2009 14:20:07 -0000 1.35 @@ -103,7 +103,16 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/logrotate.te serefpolicy-3.6.12/policy/modules/admin/logrotate.te --- nsaserefpolicy/policy/modules/admin/logrotate.te 2009-06-25 10:19:43.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/admin/logrotate.te 2009-07-24 15:38:22.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/admin/logrotate.te 2009-07-28 16:09:42.000000000 +0200 +@@ -32,7 +32,7 @@ + # Change ownership on log files. + allow logrotate_t self:capability { chown dac_override dac_read_search kill fsetid fowner sys_resource sys_nice }; + # for mailx +-dontaudit logrotate_t self:capability { setuid setgid }; ++dontaudit logrotate_t self:capability { setuid setgid sys_ptrace }; + + allow logrotate_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execstack execheap }; + @@ -188,6 +188,10 @@ ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.889 retrieving revision 1.890 diff -u -p -r1.889 -r1.890 --- selinux-policy.spec 20 Jul 2009 15:08:48 -0000 1.889 +++ selinux-policy.spec 28 Jul 2009 14:20:07 -0000 1.890 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 69%{?dist} +Release: 70%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,10 @@ exit 0 %endif %changelog +* Tue Jul 28 2009 Miroslav Grepl 3.6.12-70 +- Allow logrotate sys_ptrace capability +- Allow mrtg to transition to ping_t + * Mon Jul 20 2009 Miroslav Grepl 3.6.12-69 - Allow sshd getsched capability From mgrepl at fedoraproject.org Tue Jul 28 14:21:57 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Tue, 28 Jul 2009 14:21:57 +0000 (UTC) Subject: rpms/selinux-policy/F-11 selinux-policy.spec,1.890,1.891 Message-ID: <20090728142157.7232911C00D4@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2582 Modified Files: selinux-policy.spec Log Message: - Dontaudit logrotate sys_ptrace capability Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.890 retrieving revision 1.891 diff -u -p -r1.890 -r1.891 --- selinux-policy.spec 28 Jul 2009 14:20:07 -0000 1.890 +++ selinux-policy.spec 28 Jul 2009 14:21:57 -0000 1.891 @@ -476,7 +476,7 @@ exit 0 %changelog * Tue Jul 28 2009 Miroslav Grepl 3.6.12-70 -- Allow logrotate sys_ptrace capability +- Dontaudit logrotate sys_ptrace capability - Allow mrtg to transition to ping_t * Mon Jul 20 2009 Miroslav Grepl 3.6.12-69 From mclasen at fedoraproject.org Tue Jul 28 14:23:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 14:23:16 +0000 (UTC) Subject: rpms/tomboy/devel .cvsignore, 1.46, 1.47 sources, 1.46, 1.47 tomboy.spec, 1.119, 1.120 Message-ID: <20090728142316.A723811C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/tomboy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3664 Modified Files: .cvsignore sources tomboy.spec Log Message: 0.15.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/devel/.cvsignore,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- .cvsignore 16 Jun 2009 06:05:19 -0000 1.46 +++ .cvsignore 28 Jul 2009 14:23:16 -0000 1.47 @@ -1 +1 @@ -tomboy-0.15.2.tar.bz2 +tomboy-0.15.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/devel/sources,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sources 16 Jun 2009 06:05:20 -0000 1.46 +++ sources 28 Jul 2009 14:23:16 -0000 1.47 @@ -1 +1 @@ -093d330ac9116af2ba73ccd10804df41 tomboy-0.15.2.tar.bz2 +301c5940d48f886d681008f6ee6dd599 tomboy-0.15.4.tar.bz2 Index: tomboy.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/devel/tomboy.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- tomboy.spec 27 Jul 2009 06:04:52 -0000 1.119 +++ tomboy.spec 28 Jul 2009 14:23:16 -0000 1.120 @@ -1,6 +1,6 @@ Name: tomboy -Version: 0.15.2 -Release: 2%{?dist} +Version: 0.15.4 +Release: 1%{?dist} Summary: Note-taking application Group: User Interface/Desktops @@ -141,6 +141,9 @@ fi %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Matthias Clasen - 0.15.4-1 +- Update to 0.15.4 + * Sun Jul 26 2009 Fedora Release Engineering - 0.15.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From itamarjp at fedoraproject.org Tue Jul 28 14:28:36 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 28 Jul 2009 14:28:36 +0000 (UTC) Subject: rpms/tre/devel import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 tre.spec, 1.13, 1.14 Message-ID: <20090728142836.5C53011C00D4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/tre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6243/devel Modified Files: .cvsignore sources tre.spec Added Files: import.log Log Message: - new version 0.7.6 --- NEW FILE import.log --- tre-0_7_6-1_fc12:HEAD:tre-0.7.6-1.fc12.src.rpm:1248790909 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tre/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 29 Jan 2007 02:08:39 -0000 1.3 +++ .cvsignore 28 Jul 2009 14:28:35 -0000 1.4 @@ -1 +1 @@ -tre-0.7.5.tar.bz2 +tre-0.7.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tre/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 29 Jan 2007 02:07:02 -0000 1.3 +++ sources 28 Jul 2009 14:28:36 -0000 1.4 @@ -1 +1 @@ -e72e5c94008865cf720992a0b25d6e89 tre-0.7.5.tar.bz2 +ada884f6524093aa7d4961f0c97dfe01 tre-0.7.6.tar.bz2 Index: tre.spec =================================================================== RCS file: /cvs/pkgs/rpms/tre/devel/tre.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- tre.spec 27 Jul 2009 06:15:21 -0000 1.13 +++ tre.spec 28 Jul 2009 14:28:36 -0000 1.14 @@ -1,9 +1,9 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: tre -Version: 0.7.5 -Release: 8%{?dist} -License: LGPLv2+ +Version: 0.7.6 +Release: 1%{?dist} +License: BSD Group: System Environment/Libraries Source0: http://laurikari.net/tre/%{name}-%{version}.tar.bz2 Patch0: %{name}-chicken.patch @@ -59,10 +59,10 @@ ln -s lib tre %patch0 -p1 -b .chicken %build -%{__libtoolize} --force -%{__aclocal} -I m4 -I gnulib/m4 -%{__automake} -%{__autoconf} +#%{__libtoolize} --force +#%{__aclocal} -I m4 -I gnulib/m4 +#%{__automake} +#%{__autoconf} %configure --disable-static --disable-rpath %{__make} %{?_smp_mflags} pushd python @@ -90,7 +90,7 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(644,root,root,755) -%doc AUTHORS ChangeLog COPYING.LESSER INSTALL LICENSE NEWS README THANKS TODO +%doc AUTHORS ChangeLog INSTALL LICENSE NEWS README THANKS TODO %doc doc/*.html doc/*.css %attr(755,root,root) %{_libdir}/libtre.so.* @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/agrep.1* %changelog +* Tue Jul 28 2009 Itamar Reis Peixoto - 0.7.6-1 +- new version 0.7.6 + * Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pbrobinson at fedoraproject.org Tue Jul 28 14:28:50 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Tue, 28 Jul 2009 14:28:50 +0000 (UTC) Subject: rpms/mojito/devel .cvsignore, 1.5, 1.6 mojito.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090728142850.29BFE11C00D4@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6492 Modified Files: .cvsignore mojito.spec sources Log Message: - Update to 0.19.1 - updated translations Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 18 Jul 2009 10:31:57 -0000 1.5 +++ .cvsignore 28 Jul 2009 14:28:49 -0000 1.6 @@ -1 +1 @@ -mojito-0.19.tar.bz2 +mojito-0.19.1.tar.bz2 Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mojito.spec 25 Jul 2009 14:57:33 -0000 1.7 +++ mojito.spec 28 Jul 2009 14:28:50 -0000 1.8 @@ -1,6 +1,6 @@ Name: mojito -Version: 0.19 -Release: 2%{?dist} +Version: 0.19.1 +Release: 1%{?dist} Summary: A social network data aggregator Group: Applications/Internet @@ -103,6 +103,9 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog +* Tue Jul 28 2009 Peter Robinson 0.19.1-1 +- Update to 0.19.1 - updated translations + * Sat Jul 25 2009 Fedora Release Engineering - 0.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 18 Jul 2009 10:31:57 -0000 1.5 +++ sources 28 Jul 2009 14:28:50 -0000 1.6 @@ -1 +1 @@ -ddca487e0a1e56088ae0474183c98723 mojito-0.19.tar.bz2 +30b2aa446f7ab0f3c5c89573ba1bf130 mojito-0.19.1.tar.bz2 From ajax at fedoraproject.org Tue Jul 28 14:33:21 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 28 Jul 2009 14:33:21 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xorg-x11-server.spec, 1.454, 1.455 xserver-1.6.99-use-pci-access-boot.patch, 1.2, 1.3 Message-ID: <20090728143321.17E4B11C00D4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8666 Modified Files: xorg-x11-server.spec xserver-1.6.99-use-pci-access-boot.patch Log Message: * Tue Jul 28 2009 Adam Jackson 1.6.99-20.20090724 - xserver-1.6.99-use-pci-access-boot.patch: Some chips (thanks Intel) will change their PCI class at runtime if you disable their VGA decode, so consider both 0x0300 and 0x0380 classes when looking for the boot VGA. Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.454 retrieving revision 1.455 diff -u -p -r1.454 -r1.455 --- xorg-x11-server.spec 28 Jul 2009 14:16:23 -0000 1.454 +++ xorg-x11-server.spec 28 Jul 2009 14:33:20 -0000 1.455 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 19.%{gitdate}%{?dist} +Release: 20.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -525,6 +525,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Adam Jackson 1.6.99-20.20090724 +- xserver-1.6.99-use-pci-access-boot.patch: Some chips (thanks Intel) will + change their PCI class at runtime if you disable their VGA decode, so + consider both 0x0300 and 0x0380 classes when looking for the boot VGA. + * Tue Jul 28 2009 Adam Jackson 1.6.99-19.20090724 - xserver-1.6.99-randr-error-debugging.patch: Dump RANDR protocol errors to the log. xserver-1.6.99-use-pci-access-boot.patch: xf86pciBus.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) Index: xserver-1.6.99-use-pci-access-boot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xserver-1.6.99-use-pci-access-boot.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xserver-1.6.99-use-pci-access-boot.patch 27 Jul 2009 10:17:10 -0000 1.2 +++ xserver-1.6.99-use-pci-access-boot.patch 28 Jul 2009 14:33:20 -0000 1.3 @@ -1,20 +1,37 @@ +From 30f5e00909399b4503009e32831127d72d34f5df Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 3 Mar 2009 10:58:33 -0500 Subject: [PATCH] Primary video device hack - the revenge +--- + hw/xfree86/common/xf86pciBus.c | 7 ++++++- + 1 files changed, 6 insertions(+), 1 deletions(-) + diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c -index 8ed3567..183b1ba 100644 +index 8ed3567..74aeb44 100644 --- a/hw/xfree86/common/xf86pciBus.c +++ b/hw/xfree86/common/xf86pciBus.c +@@ -60,7 +60,7 @@ static struct pci_device ** xf86PciVideoInfo = NULL; /* PCI probe for video hw * + /* PCI classes that get included in xf86PciVideoInfo */ + #define PCIINFOCLASSES(c) \ + ( (((c) & 0x00ff0000) == (PCI_CLASS_PREHISTORIC << 16)) \ +- || (((c) & 0x00ffff00) == (PCI_CLASS_DISPLAY << 16)) ) ++ || (((c) & 0x00ff0000) == (PCI_CLASS_DISPLAY << 16)) ) + + /* + * PCI classes that have messages printed always. The others are only @@ -400,6 +400,11 @@ xf86PciProbe(void) xf86PciVideoInfo[num - 1] = info; pci_device_probe(info); + -+ if (pci_device_is_boot_vga(info)) { -+ primaryBus.type = BUS_PCI; -+ primaryBus.id.pci = info; -+ } ++ if (pci_device_is_boot_vga(info)) { ++ primaryBus.type = BUS_PCI; ++ primaryBus.id.pci = info; ++ } info->user_data = 0; } } +-- +1.6.3.3 + From mhlavink at fedoraproject.org Tue Jul 28 14:41:34 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Tue, 28 Jul 2009 14:41:34 +0000 (UTC) Subject: rpms/ecryptfs-utils/F-11 .cvsignore, 1.25, 1.26 ecryptfs-utils.spec, 1.49, 1.50 sources, 1.28, 1.29 Message-ID: <20090728144134.E778A11C00D4@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12296 Modified Files: .cvsignore ecryptfs-utils.spec sources Log Message: updated to 78 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 21 Jul 2009 07:19:47 -0000 1.25 +++ .cvsignore 28 Jul 2009 14:41:34 -0000 1.26 @@ -1,2 +1,2 @@ -ecryptfs-utils_76.orig.tar.gz ecryptfs-mount-private.png +ecryptfs-utils_78.orig.tar.gz Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/ecryptfs-utils.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- ecryptfs-utils.spec 21 Jul 2009 07:19:47 -0000 1.49 +++ ecryptfs-utils.spec 28 Jul 2009 14:41:34 -0000 1.50 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: ecryptfs-utils -Version: 76 +Version: 78 Release: 1%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base @@ -24,12 +24,10 @@ Patch6: ecryptfs-utils-75-nocryptdisks.p #temporary workaround for rhbz#503261 Patch9: ecryptfs-utils-75-workaround503261.patch -#Patch11: ecryptfs-utils-75-testdebug.patch - BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake libtool +BuildRequires: trousers-devel nss-devel desktop-file-utils %description eCryptfs is a stacked cryptographic filesystem that ships in Linux @@ -60,15 +58,13 @@ applications written in the Python progr the interface supplied by the ecryptfs-utils library. %prep -%setup -q -n %{name}_%{version}.orig +%setup -q %patch2 -p1 -b .build %patch4 -p1 -b .werror %patch6 -p0 -b .nocryptdisks %patch9 -p1 -b .rhbz503261 -#%patch11 -p1 -b .testdebug %build -autoreconf -fiv export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror" %configure --disable-rpath --enable-tspi --enable-nss --enable-static make clean @@ -102,9 +98,6 @@ touch -r src/desktop/ecryptfs-setup-priv $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop rm -f $RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-record-passphrase -#ecryptfs-dot-private should be only sourced, not executed (#500817) -chmod -x $RPM_BUILD_ROOT%{_bindir}/ecryptfs-dot-private - %pre groupadd -r -f ecryptfs @@ -138,7 +131,6 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ecryptfs-umount-private %{_bindir}/ecryptfs-stat %{_bindir}/ecryptfsd -%{_bindir}/ecryptfs-dot-private %{_libdir}/ecryptfs %{_libdir}/libecryptfs.so.0 %{_libdir}/libecryptfs.so.0.0.0 @@ -184,6 +176,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Tue Jul 28 2009 Michal Hlavinka 78-1 +- updated to 78 + * Tue Jul 21 2009 Michal Hlavinka 76-1 - updated to 76 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 21 Jul 2009 07:19:47 -0000 1.28 +++ sources 28 Jul 2009 14:41:34 -0000 1.29 @@ -1,2 +1,2 @@ -0e6a58a0730838dc832ecd8bd9e0c463 ecryptfs-utils_76.orig.tar.gz e612ddb9ccb17f8fec79df26e626a8c6 ecryptfs-mount-private.png +0ea4f56d7086412f89dc166ee97c2246 ecryptfs-utils_78.orig.tar.gz From mbarnes at fedoraproject.org Tue Jul 28 14:44:05 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 14:44:05 +0000 (UTC) Subject: rpms/gnome-pilot/F-11 gnome-pilot-2.0.17-fix-missing-icons.patch, NONE, 1.1 gnome-pilot.spec, 1.69, 1.70 Message-ID: <20090728144405.0858B11C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-pilot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13488 Modified Files: gnome-pilot.spec Added Files: gnome-pilot-2.0.17-fix-missing-icons.patch Log Message: * Tue Jul 28 2009 Matthew Barnes - 2.0.17-3 - Add patch for RH bug #512004 (missing icon in applet). gnome-pilot-2.0.17-fix-missing-icons.patch: pilot.c | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) --- NEW FILE gnome-pilot-2.0.17-fix-missing-icons.patch --- diff -up gnome-pilot-2.0.17/applet/pilot.c.fix-missing-icons gnome-pilot-2.0.17/applet/pilot.c --- gnome-pilot-2.0.17/applet/pilot.c.fix-missing-icons 2007-01-11 03:32:39.000000000 -0500 +++ gnome-pilot-2.0.17/applet/pilot.c 2009-07-28 10:38:02.000000000 -0400 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include @@ -131,6 +131,7 @@ gpilotd_connect_cb (GnomePilotClient *cl { GdkColormap *colormap; gchar *buf; + GError *error; PilotApplet *applet = PILOT_APPLET (user_data); gtk_tooltips_set_tip (applet->tooltips, GTK_WIDGET(applet->applet), @@ -146,8 +147,8 @@ gpilotd_connect_cb (GnomePilotClient *cl if (applet->properties.popups == FALSE) return; if (applet->progressDialog == NULL) { - gnome_window_icon_set_default_from_file ( - GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file ( + GNOME_ICONDIR "/sync_icon.png", &error); GladeXML *xml = glade_xml_new (applet->glade_file,"ProgressDialog",NULL); applet->progressDialog = glade_xml_get_widget (xml,"ProgressDialog"); applet->sync_label = glade_xml_get_widget (xml,"sync_label"); @@ -427,7 +428,10 @@ handle_client_error (PilotApplet *self) static void about_cb(BonoboUIComponent *uic, PilotApplet *pilot, const gchar *verbname) + { + GError *error; + GtkWidget *about; const gchar *authors[] = {"Vadim Strizhevsky ", "Eskil Heyn Olsen, ", @@ -437,8 +441,15 @@ about_cb(BonoboUIComponent *uic, PilotAp "Matt Davey ", NULL}; - gnome_window_icon_set_default_from_file ( - GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file ( + GNOME_ICONDIR "/sync_icon.png", &error); + + + if (error) + { + g_warning ("Can't find icon: " GNOME_ICONDIR "/sync_icon.png" ); + } + about = gnome_about_new (_("gnome-pilot applet"), VERSION, _("Copyright 2000-2006 Free Software Foundation, Inc."), @@ -493,8 +504,9 @@ properties_cb (BonoboUIComponent *uic, g PilotApplet *self = user_data; GtkWidget *button, *entry, *dialog; GladeXML *xml; + GError *error; - gnome_window_icon_set_default_from_file (GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file (GNOME_ICONDIR "/sync_icon.png", &error); xml =glade_xml_new (self->glade_file,"PropertiesDialog", NULL); dialog=glade_xml_get_widget (xml,"PropertiesDialog"); @@ -1325,7 +1337,6 @@ static void create_pilot_widgets (GtkWidget *widget, PilotApplet *self) { GtkStyle *style; - int i; static GtkTargetEntry drop_types [] = { { "text/uri-list", 0, TARGET_URI_LIST }, @@ -1345,10 +1356,6 @@ create_pilot_widgets (GtkWidget *widget, self->curstate = INITIALISING; - for (i = 0; i < sizeof (pixmaps)/sizeof (pixmaps[0]); i++) - pixmaps[i] = gnome_program_locate_file( - NULL, GNOME_FILE_DOMAIN_PIXMAP, pixmaps[i], TRUE, NULL); - self->image = gtk_image_new_from_file (pixmaps[self->curstate]); gtk_signal_connect (GTK_OBJECT (widget), "button-press-event", Index: gnome-pilot.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-pilot/F-11/gnome-pilot.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- gnome-pilot.spec 24 Feb 2009 23:14:15 -0000 1.69 +++ gnome-pilot.spec 28 Jul 2009 14:44:04 -0000 1.70 @@ -4,7 +4,7 @@ Name: gnome-pilot Version: 2.0.17 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ and GPLv2+ Group: Applications/Communications Summary: GNOME pilot programs @@ -17,6 +17,9 @@ ExcludeArch: s390 s390x # RH bug #135304 (sort of) Patch1: gnome-pilot-2.0.17-fix-conduit-dir.patch +# RH bug #512004 / GNOME bug #584894 +Patch2: gnome-pilot-2.0.17-fix-missing-icons.patch + ### Dependencies ### Requires(post): scrollkeeper @@ -66,6 +69,7 @@ gpilotd libraries and includes. %prep %setup -q %patch1 -p1 -b .fix-conduit-dir +%patch2 -p1 -b .fix-missing-icons %build autoreconf --force --install @@ -163,6 +167,9 @@ scrollkeeper-update -q %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Matthew Barnes - 2.0.17-3 +- Add patch for RH bug #512004 (missing icon in applet). + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mbarnes at fedoraproject.org Tue Jul 28 14:44:07 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 14:44:07 +0000 (UTC) Subject: rpms/gnome-pilot/devel gnome-pilot-2.0.17-fix-missing-icons.patch, NONE, 1.1 gnome-pilot.spec, 1.70, 1.71 Message-ID: <20090728144407.CECEC11C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-pilot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435 Modified Files: gnome-pilot.spec Added Files: gnome-pilot-2.0.17-fix-missing-icons.patch Log Message: * Tue Jul 28 2009 Matthew Barnes - 2.0.17-4 - Add patch for RH bug #512004 (missing icon in applet). gnome-pilot-2.0.17-fix-missing-icons.patch: pilot.c | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) --- NEW FILE gnome-pilot-2.0.17-fix-missing-icons.patch --- diff -up gnome-pilot-2.0.17/applet/pilot.c.fix-missing-icons gnome-pilot-2.0.17/applet/pilot.c --- gnome-pilot-2.0.17/applet/pilot.c.fix-missing-icons 2007-01-11 03:32:39.000000000 -0500 +++ gnome-pilot-2.0.17/applet/pilot.c 2009-07-28 10:38:02.000000000 -0400 @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include @@ -131,6 +131,7 @@ gpilotd_connect_cb (GnomePilotClient *cl { GdkColormap *colormap; gchar *buf; + GError *error; PilotApplet *applet = PILOT_APPLET (user_data); gtk_tooltips_set_tip (applet->tooltips, GTK_WIDGET(applet->applet), @@ -146,8 +147,8 @@ gpilotd_connect_cb (GnomePilotClient *cl if (applet->properties.popups == FALSE) return; if (applet->progressDialog == NULL) { - gnome_window_icon_set_default_from_file ( - GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file ( + GNOME_ICONDIR "/sync_icon.png", &error); GladeXML *xml = glade_xml_new (applet->glade_file,"ProgressDialog",NULL); applet->progressDialog = glade_xml_get_widget (xml,"ProgressDialog"); applet->sync_label = glade_xml_get_widget (xml,"sync_label"); @@ -427,7 +428,10 @@ handle_client_error (PilotApplet *self) static void about_cb(BonoboUIComponent *uic, PilotApplet *pilot, const gchar *verbname) + { + GError *error; + GtkWidget *about; const gchar *authors[] = {"Vadim Strizhevsky ", "Eskil Heyn Olsen, ", @@ -437,8 +441,15 @@ about_cb(BonoboUIComponent *uic, PilotAp "Matt Davey ", NULL}; - gnome_window_icon_set_default_from_file ( - GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file ( + GNOME_ICONDIR "/sync_icon.png", &error); + + + if (error) + { + g_warning ("Can't find icon: " GNOME_ICONDIR "/sync_icon.png" ); + } + about = gnome_about_new (_("gnome-pilot applet"), VERSION, _("Copyright 2000-2006 Free Software Foundation, Inc."), @@ -493,8 +504,9 @@ properties_cb (BonoboUIComponent *uic, g PilotApplet *self = user_data; GtkWidget *button, *entry, *dialog; GladeXML *xml; + GError *error; - gnome_window_icon_set_default_from_file (GNOME_ICONDIR "/sync_icon.png"); + gtk_window_set_default_icon_from_file (GNOME_ICONDIR "/sync_icon.png", &error); xml =glade_xml_new (self->glade_file,"PropertiesDialog", NULL); dialog=glade_xml_get_widget (xml,"PropertiesDialog"); @@ -1325,7 +1337,6 @@ static void create_pilot_widgets (GtkWidget *widget, PilotApplet *self) { GtkStyle *style; - int i; static GtkTargetEntry drop_types [] = { { "text/uri-list", 0, TARGET_URI_LIST }, @@ -1345,10 +1356,6 @@ create_pilot_widgets (GtkWidget *widget, self->curstate = INITIALISING; - for (i = 0; i < sizeof (pixmaps)/sizeof (pixmaps[0]); i++) - pixmaps[i] = gnome_program_locate_file( - NULL, GNOME_FILE_DOMAIN_PIXMAP, pixmaps[i], TRUE, NULL); - self->image = gtk_image_new_from_file (pixmaps[self->curstate]); gtk_signal_connect (GTK_OBJECT (widget), "button-press-event", Index: gnome-pilot.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-pilot/devel/gnome-pilot.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- gnome-pilot.spec 25 Jul 2009 00:43:59 -0000 1.70 +++ gnome-pilot.spec 28 Jul 2009 14:44:07 -0000 1.71 @@ -4,7 +4,7 @@ Name: gnome-pilot Version: 2.0.17 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ and GPLv2+ Group: Applications/Communications Summary: GNOME pilot programs @@ -17,6 +17,9 @@ ExcludeArch: s390 s390x # RH bug #135304 (sort of) Patch1: gnome-pilot-2.0.17-fix-conduit-dir.patch +# RH bug #512004 / GNOME bug #584894 +Patch2: gnome-pilot-2.0.17-fix-missing-icons.patch + ### Dependencies ### Requires(post): scrollkeeper @@ -66,6 +69,7 @@ gpilotd libraries and includes. %prep %setup -q %patch1 -p1 -b .fix-conduit-dir +%patch2 -p1 -b .fix-missing-icons %build autoreconf --force --install @@ -163,6 +167,9 @@ scrollkeeper-update -q %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Matthew Barnes - 2.0.17-4 +- Add patch for RH bug #512004 (missing icon in applet). + * Fri Jul 24 2009 Fedora Release Engineering - 2.0.17-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From anttix at fedoraproject.org Tue Jul 28 14:44:28 2009 From: anttix at fedoraproject.org (Antti Andreimann) Date: Tue, 28 Jul 2009 14:44:28 +0000 (UTC) Subject: rpms/xml-security-c/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 xml-security-c.spec, 1.3, 1.4 Message-ID: <20090728144428.49D8711C00D4@cvs1.fedora.phx.redhat.com> Author: anttix Update of /cvs/pkgs/rpms/xml-security-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13859 Modified Files: .cvsignore sources xml-security-c.spec Log Message: New upstream release xml-security-c 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 6 Jul 2009 17:27:38 -0000 1.3 +++ .cvsignore 28 Jul 2009 14:44:27 -0000 1.4 @@ -1 +1 @@ -xml-security-c-1.5.0.tar.gz +xml-security-c-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Jul 2009 17:27:38 -0000 1.3 +++ sources 28 Jul 2009 14:44:28 -0000 1.4 @@ -1 +1 @@ -2d0bad96d7a3433120f6f41acd00ce75 xml-security-c-1.5.0.tar.gz +2c47c4ec12e8d6abe967aa5e5e99000c xml-security-c-1.5.1.tar.gz Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/xml-security-c.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xml-security-c.spec 27 Jul 2009 08:10:25 -0000 1.3 +++ xml-security-c.spec 28 Jul 2009 14:44:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: xml-security-c -Version: 1.5.0 -Release: 2%{?dist} +Version: 1.5.1 +Release: 1%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -10,7 +10,7 @@ Source: http://santuario.apache. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xerces-c-devel xalan-c-devel openssl-devel -BuildRequires: pkgconfig +BuildRequires: pkgconfig %description The xml-security-c library is a C++ implementation of the XML Digital Signature @@ -23,11 +23,11 @@ XSLT transforms. Summary: Development files for xml-security-c Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: xerces-c-devel xalan-c-devel openssl-devel +Requires: xerces-c-devel xalan-c-devel openssl-devel # There are a number of headers that can use NSS if HAVE_NSS is set to 1 # Current build does not set it (configure does not even check for NSS) # so we do not include this dependency for now. -# Requires: nss-devel +# Requires: nss-devel %description devel This package provides development files for xml-security-c, a C++ library for @@ -81,6 +81,10 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Tue Jul 28 2009 Antti Andreimann 1.5.1-1 +- New upstream relase (#513078) +- Fixes CVE-2009-0217 (#511915) + * Mon Jul 27 2009 Fedora Release Engineering - 1.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From bskeggs at fedoraproject.org Tue Jul 28 15:23:27 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 15:23:27 +0000 (UTC) Subject: rpms/libdrm/devel .cvsignore, 1.23, 1.24 libdrm.spec, 1.79, 1.80 sources, 1.23, 1.24 Message-ID: <20090728152328.4BBB411C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/libdrm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31602 Modified Files: .cvsignore libdrm.spec sources Log Message: * Tue Jul 28 2009 Ben Skeggs 2.4.12-0.4 - rebase onto git snapshot for new nouveau interface support Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 16 Jul 2009 23:14:58 -0000 1.23 +++ .cvsignore 28 Jul 2009 15:23:26 -0000 1.24 @@ -1 +1 @@ -libdrm-20090710.tar.bz2 +libdrm-20090728.tar.bz2 Index: libdrm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/libdrm.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- libdrm.spec 25 Jul 2009 05:31:37 -0000 1.79 +++ libdrm.spec 28 Jul 2009 15:23:26 -0000 1.80 @@ -1,9 +1,9 @@ -%define gitdate 20090710 +%define gitdate 20090728 Summary: Direct Rendering Manager runtime library Name: libdrm Version: 2.4.12 -Release: 0.3%{?dist} +Release: 0.4%{?dist} License: MIT Group: System Environment/Libraries URL: http://dri.sourceforge.net @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdrm_nouveau.pc %changelog +* Tue Jul 28 2009 Ben Skeggs 2.4.12-0.4 +- rebase onto git snapshot for new nouveau interface support + * Fri Jul 24 2009 Fedora Release Engineering - 2.4.12-0.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 16 Jul 2009 23:14:58 -0000 1.23 +++ sources 28 Jul 2009 15:23:26 -0000 1.24 @@ -1 +1 @@ -8c49ba1dca6be2de7c2cb20efce591d3 libdrm-20090710.tar.bz2 +864db607b6e034c67eca104bbf786cc0 libdrm-20090728.tar.bz2 From llaumgui at fedoraproject.org Tue Jul 28 15:26:08 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Tue, 28 Jul 2009 15:26:08 +0000 (UTC) Subject: rpms/php-ezc-Database/devel .cvsignore, 1.3, 1.4 php-ezc-Database.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090728152608.1D43211C00D4@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Database/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1341 Modified Files: .cvsignore php-ezc-Database.spec sources Log Message: Update to 1.4.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 May 2009 18:34:08 -0000 1.3 +++ .cvsignore 28 Jul 2009 15:26:07 -0000 1.4 @@ -1 +1 @@ -Database-1.4.5.tgz +Database-1.4.6.tgz Index: php-ezc-Database.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/devel/php-ezc-Database.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-ezc-Database.spec 26 Jul 2009 18:02:15 -0000 1.3 +++ php-ezc-Database.spec 28 Jul 2009 15:26:07 -0000 1.4 @@ -3,8 +3,8 @@ %define channel components.ez.no Name: php-ezc-Database -Version: 1.4.5 -Release: 2%{?dist} +Version: 1.4.6 +Release: 1%{?dist} Summary: A lightweight database layer on top of PHP's PDO Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Tue Jul 28 2009 Guillaume Kulakowski - 1.4.6-1 +- Update to 1.4.6 + * Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 May 2009 18:34:08 -0000 1.3 +++ sources 28 Jul 2009 15:26:07 -0000 1.4 @@ -1 +1 @@ -1ed6bac9d7b4485752de53adabe4e419 Database-1.4.5.tgz +a11c4a61d1f3bbdd315f5a3239b9deab Database-1.4.6.tgz From llaumgui at fedoraproject.org Tue Jul 28 15:26:11 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Tue, 28 Jul 2009 15:26:11 +0000 (UTC) Subject: rpms/php-ezc-Database/F-11 .cvsignore, 1.3, 1.4 php-ezc-Database.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090728152611.03FA011C00D4@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Database/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1374 Modified Files: .cvsignore php-ezc-Database.spec sources Log Message: Update to 1.4.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 May 2009 18:34:07 -0000 1.3 +++ .cvsignore 28 Jul 2009 15:26:10 -0000 1.4 @@ -1 +1 @@ -Database-1.4.5.tgz +Database-1.4.6.tgz Index: php-ezc-Database.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-11/php-ezc-Database.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Database.spec 12 May 2009 18:34:07 -0000 1.2 +++ php-ezc-Database.spec 28 Jul 2009 15:26:10 -0000 1.3 @@ -3,7 +3,7 @@ %define channel components.ez.no Name: php-ezc-Database -Version: 1.4.5 +Version: 1.4.6 Release: 1%{?dist} Summary: A lightweight database layer on top of PHP's PDO @@ -86,6 +86,12 @@ fi %changelog +* Tue Jul 28 2009 Guillaume Kulakowski - 1.4.6-1 +- Update to 1.4.6 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Guillaume Kulakowski - 1.4.5-1 - Update to 1.4.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 May 2009 18:34:07 -0000 1.3 +++ sources 28 Jul 2009 15:26:10 -0000 1.4 @@ -1 +1 @@ -1ed6bac9d7b4485752de53adabe4e419 Database-1.4.5.tgz +a11c4a61d1f3bbdd315f5a3239b9deab Database-1.4.6.tgz From llaumgui at fedoraproject.org Tue Jul 28 15:26:13 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Tue, 28 Jul 2009 15:26:13 +0000 (UTC) Subject: rpms/php-ezc-Database/F-10 .cvsignore, 1.3, 1.4 php-ezc-Database.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090728152613.70BBC11C00D4@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Database/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1406 Modified Files: .cvsignore php-ezc-Database.spec sources Log Message: Update to 1.4.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 May 2009 18:34:07 -0000 1.3 +++ .cvsignore 28 Jul 2009 15:26:13 -0000 1.4 @@ -1 +1 @@ -Database-1.4.5.tgz +Database-1.4.6.tgz Index: php-ezc-Database.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-10/php-ezc-Database.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Database.spec 12 May 2009 18:34:07 -0000 1.2 +++ php-ezc-Database.spec 28 Jul 2009 15:26:13 -0000 1.3 @@ -3,7 +3,7 @@ %define channel components.ez.no Name: php-ezc-Database -Version: 1.4.5 +Version: 1.4.6 Release: 1%{?dist} Summary: A lightweight database layer on top of PHP's PDO @@ -86,6 +86,12 @@ fi %changelog +* Tue Jul 28 2009 Guillaume Kulakowski - 1.4.6-1 +- Update to 1.4.6 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Guillaume Kulakowski - 1.4.5-1 - Update to 1.4.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 May 2009 18:34:07 -0000 1.3 +++ sources 28 Jul 2009 15:26:13 -0000 1.4 @@ -1 +1 @@ -1ed6bac9d7b4485752de53adabe4e419 Database-1.4.5.tgz +a11c4a61d1f3bbdd315f5a3239b9deab Database-1.4.6.tgz From maxx at fedoraproject.org Tue Jul 28 15:26:45 2009 From: maxx at fedoraproject.org (Mads Villadsen) Date: Tue, 28 Jul 2009 15:26:45 +0000 (UTC) Subject: rpms/hamster-applet/devel .cvsignore, 1.19, 1.20 hamster-applet.spec, 1.28, 1.29 sources, 1.19, 1.20 Message-ID: <20090728152645.BEB8F11C00D4@cvs1.fedora.phx.redhat.com> Author: maxx Update of /cvs/pkgs/rpms/hamster-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1688 Modified Files: .cvsignore hamster-applet.spec sources Log Message: * Tue Jul 28 2009 Mads Villadsen - 2.27.5-1 - Update to latest development release - Better autocomplete - More skeptic on parsing time - Legend in overview is sized proportionally to screen size, allowing larger labels - Updated translations Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 14 Jul 2009 18:33:22 -0000 1.19 +++ .cvsignore 28 Jul 2009 15:26:45 -0000 1.20 @@ -1 +1 @@ -hamster-applet-2.27.4.tar.bz2 +hamster-applet-2.27.5.tar.bz2 Index: hamster-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/hamster-applet.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- hamster-applet.spec 25 Jul 2009 02:01:00 -0000 1.28 +++ hamster-applet.spec 28 Jul 2009 15:26:45 -0000 1.29 @@ -2,8 +2,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: hamster-applet -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Time tracking applet Group: Development/Languages @@ -98,6 +98,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Mads Villadsen - 2.27.5-1 +- Update to latest development release +- Better autocomplete +- More skeptic on parsing time +- Legend in overview is sized proportionally to screen size, allowing larger labels +- Updated translations + + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 14 Jul 2009 18:33:23 -0000 1.19 +++ sources 28 Jul 2009 15:26:45 -0000 1.20 @@ -1 +1 @@ -26066cecda500325ede656de930de466 hamster-applet-2.27.4.tar.bz2 +d3db82455579337325797d497c47405f hamster-applet-2.27.5.tar.bz2 From mclasen at fedoraproject.org Tue Jul 28 15:29:14 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 15:29:14 +0000 (UTC) Subject: rpms/orca/devel .cvsignore, 1.54, 1.55 orca.spec, 1.89, 1.90 sources, 1.55, 1.56 Message-ID: <20090728152914.360EA11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/orca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2463 Modified Files: .cvsignore orca.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 14 Jul 2009 04:09:21 -0000 1.54 +++ .cvsignore 28 Jul 2009 15:29:13 -0000 1.55 @@ -1 +1 @@ -orca-2.27.4.tar.bz2 +orca-2.27.5.tar.bz2 Index: orca.spec =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/orca.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- orca.spec 25 Jul 2009 20:59:02 -0000 1.89 +++ orca.spec 28 Jul 2009 15:29:13 -0000 1.90 @@ -17,8 +17,8 @@ %define control_center_version 2.16.0-5 Name: orca -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Assistive technology for people with visual impairments Group: User Interface/Desktops @@ -106,6 +106,9 @@ fi %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 14 Jul 2009 04:09:21 -0000 1.55 +++ sources 28 Jul 2009 15:29:13 -0000 1.56 @@ -1 +1 @@ -291447d37309306b9fa5725e952e5eaf orca-2.27.4.tar.bz2 +2fe5b820ef12ae08608029760c097712 orca-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 15:29:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 15:29:41 +0000 Subject: [pkgdb] sssd had acl change status Message-ID: <20090728152941.90A6710F891@bastion2.fedora.phx.redhat.com> notting has set the commit acl on sssd (Fedora devel) to Approved for sgallagh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sssd From pkgdb at fedoraproject.org Tue Jul 28 15:29:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 15:29:45 +0000 Subject: [pkgdb] sssd had acl change status Message-ID: <20090728152945.E734E10F89E@bastion2.fedora.phx.redhat.com> notting has set the commit acl on sssd (Fedora 11) to Approved for sgallagh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sssd From pkgdb at fedoraproject.org Tue Jul 28 15:29:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 15:29:55 +0000 Subject: [pkgdb] sssd had acl change status Message-ID: <20090728152955.3EF9610F8B1@bastion2.fedora.phx.redhat.com> notting has set the commit acl on sssd (Fedora 11) to Obsolete for sgallagh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sssd From bskeggs at fedoraproject.org Tue Jul 28 15:32:18 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 15:32:18 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel .cvsignore, 1.36, 1.37 nouveau-bicubic-2x.patch, 1.2, 1.3 nouveau-multiple-xserver.patch, 1.5, 1.6 nouveau-transition-hack.patch, 1.5, 1.6 sources, 1.37, 1.38 xorg-x11-drv-nouveau.spec, 1.46, 1.47 nouveau-fb-resize.patch, 1.4, NONE nouveau-nv50-fb-accel.patch, 1.5, NONE Message-ID: <20090728153218.E8C7811C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4526 Modified Files: .cvsignore nouveau-bicubic-2x.patch nouveau-multiple-xserver.patch nouveau-transition-hack.patch sources xorg-x11-drv-nouveau.spec Removed Files: nouveau-fb-resize.patch nouveau-nv50-fb-accel.patch Log Message: * Tue Jul 28 2009 Ben Skeggs 0.0.15-0.20090728git4d20547 - Update to latest upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 16 Jul 2009 22:37:51 -0000 1.36 +++ .cvsignore 28 Jul 2009 15:32:17 -0000 1.37 @@ -1 +1 @@ -xf86-video-nouveau-0.0.14-20090717gitb1b2330.tar.bz2 +xf86-video-nouveau-0.0.15-20090728git4d20547.tar.bz2 nouveau-bicubic-2x.patch: nv30_xv_tex.c | 2 +- nv40_xv_tex.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) Index: nouveau-bicubic-2x.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-bicubic-2x.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nouveau-bicubic-2x.patch 16 Jul 2009 22:58:07 -0000 1.2 +++ nouveau-bicubic-2x.patch 28 Jul 2009 15:32:17 -0000 1.3 @@ -1,7 +1,7 @@ -From 106c7cbafe6d879fd3c244f174e661680c9d109a Mon Sep 17 00:00:00 2001 +From a44a045c47750b16c7e202b7a337b1b6e24ff859 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 4 May 2009 17:04:34 +1000 -Subject: [PATCH 5/5] xv: only use bicubic filtering when scaling >=2x +Subject: [PATCH 3/3] xv: only use bicubic filtering when scaling >=2x --- src/nv30_xv_tex.c | 2 +- @@ -9,7 +9,7 @@ Subject: [PATCH 5/5] xv: only use bicubi 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nv30_xv_tex.c b/src/nv30_xv_tex.c -index 96796fa..adb9010 100644 +index cd76279..25cae64 100644 --- a/src/nv30_xv_tex.c +++ b/src/nv30_xv_tex.c @@ -324,7 +324,7 @@ NV30PutTextureImage(ScrnInfoPtr pScrn, struct nouveau_bo *src, int src_offset, @@ -22,10 +22,10 @@ index 96796fa..adb9010 100644 else NV30_LoadFragProg(pScrn, &nv30_fp_yv12_bilinear); diff --git a/src/nv40_xv_tex.c b/src/nv40_xv_tex.c -index 46a7c3d..417dfb7 100644 +index 3d1f146..e0efb41 100644 --- a/src/nv40_xv_tex.c +++ b/src/nv40_xv_tex.c -@@ -300,7 +300,7 @@ NV40PutTextureImage(ScrnInfoPtr pScrn, +@@ -299,7 +299,7 @@ NV40PutTextureImage(ScrnInfoPtr pScrn, NV40VideoTexture(pScrn, src, src_offset2, src_w/2, src_h/2, src_pitch, 2); NV40_LoadVtxProg(pScrn, &nv40_vp_video); @@ -35,5 +35,5 @@ index 46a7c3d..417dfb7 100644 else NV40_LoadFragProg(pScrn, &nv30_fp_yv12_bilinear); -- -1.6.2.5 +1.6.3.3 nouveau-multiple-xserver.patch: nv_driver.c | 98 +++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 71 insertions(+), 27 deletions(-) Index: nouveau-multiple-xserver.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-multiple-xserver.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- nouveau-multiple-xserver.patch 16 Jul 2009 22:58:07 -0000 1.5 +++ nouveau-multiple-xserver.patch 28 Jul 2009 15:32:18 -0000 1.6 @@ -1,14 +1,14 @@ -From 5b4e7d23eebb0731d5103196c2620b866b5acdb1 Mon Sep 17 00:00:00 2001 +From 7c58a69d5f6d86d1170170e8154fa7bbe9226c2c Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Sun, 28 Jun 2009 20:35:54 +1000 -Subject: [PATCH 1/5] f12: hack to support multiple xserver instances +Subject: [PATCH 1/3] f12: hack to support multiple xserver instances --- - src/nv_driver.c | 104 ++++++++++++++++++++++++++++++++++++++++-------------- - 1 files changed, 77 insertions(+), 27 deletions(-) + src/nv_driver.c | 97 ++++++++++++++++++++++++++++++++++++++++--------------- + 1 files changed, 71 insertions(+), 26 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c -index fda0042..5e80154 100644 +index 838fc67..35233dc 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -21,6 +21,7 @@ @@ -19,7 +19,7 @@ index fda0042..5e80154 100644 #include "nv_include.h" -@@ -378,14 +379,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) +@@ -377,14 +378,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) */ /* Mandatory */ @@ -61,8 +61,8 @@ index fda0042..5e80154 100644 if (!pNv->kms_enable) { if (pNv->Architecture < NV_ARCH_50) NVRestore(pScrn); -@@ -1168,6 +1189,58 @@ NVMapMemSW(ScrnInfoPtr pScrn) - } +@@ -1114,6 +1135,52 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) + static Bool +NVMapMemSharedFB(ScrnInfoPtr pScrn) @@ -75,16 +75,10 @@ index fda0042..5e80154 100644 + if (ret) + return FALSE; + -+ ret = nouveau_bo_wrap(pNv->dev, handle, &pNv->FB); ++ ret = nouveau_bo_wrap(pNv->dev, handle, &pNv->offscreen); + if (ret) + return FALSE; + -+ ret = nouveau_bo_pin(pNv->FB, NOUVEAU_BO_VRAM); -+ if (ret) { -+ nouveau_bo_ref(NULL, &pNv->FB); -+ return FALSE; -+ } -+ + return TRUE; +} + @@ -109,8 +103,8 @@ index fda0042..5e80154 100644 + size >> 10); + } + -+ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN | -+ NOUVEAU_BO_MAP, 0, size, &pNv->GART)) { ++ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, ++ 0, size, &pNv->GART)) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "Unable to allocate GART memory\n"); + } @@ -120,25 +114,27 @@ index fda0042..5e80154 100644 NVMapMem(ScrnInfoPtr pScrn) { NVPtr pNv = NVPTR(pScrn); -@@ -1198,6 +1271,8 @@ NVMapMem(ScrnInfoPtr pScrn) - size = size * (pScrn->bitsPerPixel >> 3); - size = size * height; - } else { +@@ -1150,6 +1217,9 @@ NVMapMem(ScrnInfoPtr pScrn) + nouveau_bo_unmap(pNv->scanout); + + if (!pNv->exa_driver_pixmaps) { + if (NVMapMemSharedFB(pScrn)) + goto skip_fb; - size = pNv->VRAMPhysicalSize / 2; - } - -@@ -1208,38 +1283,13 @@ NVMapMem(ScrnInfoPtr pScrn) - "Failed to allocate framebuffer memory\n"); - return FALSE; - } + + size = (pNv->VRAMPhysicalSize / 2) - size; + + if (pNv->Architecture >= NV_ARCH_50) { +@@ -1166,6 +1236,7 @@ NVMapMem(ScrnInfoPtr pScrn) + return FALSE; + } + +skip_fb: - xf86DrvMsg(pScrn->scrnIndex, X_INFO, - "Allocated %dMiB VRAM for framebuffer + offscreen pixmaps, " - "at offset 0x%X\n", - (uint32_t)(pNv->FB->size >> 20), (uint32_t) pNv->FB->offset); + xf86DrvMsg(pScrn->scrnIndex, X_INFO, + "Allocated %dMiB VRAM for offscreen pixmaps\n", + (uint32_t)(pNv->offscreen->size >> 20)); +@@ -1175,32 +1246,6 @@ NVMapMem(ScrnInfoPtr pScrn) + nouveau_bo_unmap(pNv->offscreen); + } - if (pNv->AGPSize) { - xf86DrvMsg(pScrn->scrnIndex, X_INFO, @@ -152,12 +148,11 @@ index fda0042..5e80154 100644 - } else { - size = (4 << 20) - (1 << 18) ; - xf86DrvMsg(pScrn->scrnIndex, X_INFO, -- "GART: PCI DMA - using %dKiB\n", -- size >> 10); +- "GART: PCI DMA - using %dKiB\n", size >> 10); - } - -- if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN | -- NOUVEAU_BO_MAP, 0, size, &pNv->GART)) { +- if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, +- 0, size, &pNv->GART)) { - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, - "Unable to allocate GART memory\n"); - } @@ -171,5 +166,5 @@ index fda0042..5e80154 100644 * kernel modesetting **/ -- -1.6.2.5 +1.6.3.3 nouveau-transition-hack.patch: drmmode_display.c | 148 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 145 insertions(+), 3 deletions(-) Index: nouveau-transition-hack.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-transition-hack.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- nouveau-transition-hack.patch 16 Jul 2009 22:58:08 -0000 1.5 +++ nouveau-transition-hack.patch 28 Jul 2009 15:32:18 -0000 1.6 @@ -1,17 +1,17 @@ -From 2c7d72e602efce6c6fae11c93da173c7beee5eea Mon Sep 17 00:00:00 2001 +From 459ea50ee1a538b7203d01e071fa481f297c2416 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 30 Jun 2009 10:52:07 +1000 -Subject: [PATCH 2/5] f12: transitions +Subject: [PATCH 2/3] f12: transitions --- src/drmmode_display.c | 147 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 145 insertions(+), 2 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 1f67dd7..f68e0eb 100644 +index 21ed564..901be50 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -171,6 +171,142 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) +@@ -172,6 +172,142 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) } static void @@ -45,8 +45,8 @@ index 1f67dd7..f68e0eb 100644 + } + src = src_bo->map; + -+ nouveau_bo_map(pNv->FB, NOUVEAU_BO_WR); -+ dst = pNv->FB->map; ++ nouveau_bo_map(pNv->scanout, NOUVEAU_BO_WR); ++ dst = pNv->scanout->map; + dst += (y * fb->pitch) + (x * (fb->bpp >> 3)); + + h = fb->height; @@ -56,7 +56,7 @@ index 1f67dd7..f68e0eb 100644 + dst += pScrn->displayWidth * (pScrn->bitsPerPixel / 8); + } + -+ nouveau_bo_unmap(pNv->FB); ++ nouveau_bo_unmap(pNv->scanout); + nouveau_bo_unmap(src_bo); + nouveau_bo_ref(NULL, &src_bo); + drmFree(fb); @@ -99,7 +99,7 @@ index 1f67dd7..f68e0eb 100644 + return; + } + -+ nouveau_bo_ref(pNv->FB, &dst); ++ nouveau_bo_ref(pNv->scanout, &dst); + + BEGIN_RING(chan, eng2d, 0x02ac, 1); + OUT_RING (chan, 3); @@ -154,7 +154,7 @@ index 1f67dd7..f68e0eb 100644 drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, int x, int y) { -@@ -183,6 +319,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, +@@ -184,6 +320,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, if (!src_id || !dst_id) return; @@ -169,7 +169,7 @@ index 1f67dd7..f68e0eb 100644 pspix = drmmode_fb_pixmap(pScrn, src_id, &w, &h); if (!pspix) return; -@@ -283,8 +427,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, +@@ -285,8 +429,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, x = 0; y = 0; } else @@ -180,5 +180,5 @@ index 1f67dd7..f68e0eb 100644 drmmode_crtc->mode_crtc->buffer_id, x, y); } -- -1.6.2.5 +1.6.3.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 16 Jul 2009 22:37:51 -0000 1.37 +++ sources 28 Jul 2009 15:32:18 -0000 1.38 @@ -1 +1 @@ -c659ae86325218d9bcd9d1a6828fd77c xf86-video-nouveau-0.0.14-20090717gitb1b2330.tar.bz2 +b37bfc0e2b040b16efaf9f00431d556a xf86-video-nouveau-0.0.15-20090728git4d20547.tar.bz2 Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- xorg-x11-drv-nouveau.spec 27 Jul 2009 08:28:51 -0000 1.46 +++ xorg-x11-drv-nouveau.spec 28 Jul 2009 15:32:18 -0000 1.47 @@ -1,14 +1,14 @@ %define tarball xf86-video-nouveau %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/drivers -%define nouveau_version 0.0.14 +%define nouveau_version 0.0.15 # Tarfile created using git # git clone git://git.freedesktop.org/git/nouveau/xf86-video-nouveau # git-archive --format=tar --prefix=xf86-video-nouveau-0.0.10/ %{git_version} | bzip2 > xf86-video-nouveau-0.0.10-%{gitdate}.tar.bz2 -%define gitdate 20090717 -%define git_version b1b2330 +%define gitdate 20090728 +%define git_version 4d20547 %define snapshot %{gitdate}git%{git_version} @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 4.%{snapshot}%{?dist} +Release: 0.%{snapshot}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -32,21 +32,19 @@ ExcludeArch: s390 s390x BuildRequires: libtool automake autoconf BuildRequires: xorg-x11-server-devel >= 1.6.99 -BuildRequires: libdrm-devel >= 2.4.12-0.1 +BuildRequires: libdrm-devel >= 2.4.12-0.4 BuildRequires: mesa-libGL-devel BuildRequires: kernel-headers >= 2.6.31 Requires: hwdata Requires: xorg-x11-server-Xorg >= 1.6.99 -Requires: libdrm >= 2.4.12-0.1 -Requires: kernel-drm-nouveau = 14 +Requires: libdrm >= 2.4.12-0.4 +Requires: kernel-drm-nouveau = 15 Patch0: nouveau-store-vbios.patch Patch1: dcbconf_7_4_ignore.diff Patch2: nouveau-multiple-xserver.patch Patch3: nouveau-transition-hack.patch -Patch4: nouveau-nv50-fb-accel.patch -Patch5: nouveau-fb-resize.patch Patch6: nouveau-bicubic-2x.patch %description @@ -59,8 +57,6 @@ X.Org X11 nouveau video driver. %patch1 -p1 -b .dcbconf %patch2 -p1 -b .multix %patch3 -p1 -b .transition -%patch4 -p1 -b .nv50fb -%patch5 -p1 -b .fbresize %patch6 -p1 -b .bicubic %build @@ -85,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Tue Jul 28 2009 Ben Skeggs 0.0.15-0.20090728git4d20547 +- Update to latest upstream + * Mon Jul 27 2009 Fedora Release Engineering - 1:0.0.14-4.20090717gitb1b2330 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- nouveau-fb-resize.patch DELETED --- --- nouveau-nv50-fb-accel.patch DELETED --- From dcbw at fedoraproject.org Tue Jul 28 15:35:12 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 15:35:12 +0000 (UTC) Subject: rpms/NetworkManager/devel .cvsignore, 1.104, 1.105 NetworkManager.spec, 1.276, 1.277 nm-applet-internal-buildfixes.patch, 1.8, 1.9 sources, 1.143, 1.144 nm-applet-file-chooser-validation.patch, 1.1, NONE Message-ID: <20090728153512.50F0711C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6094 Modified Files: .cvsignore NetworkManager.spec nm-applet-internal-buildfixes.patch sources Removed Files: nm-applet-file-chooser-validation.patch Log Message: * Tue Jul 28 2009 Dan Williams - 0.7.995-0.git20090728 - Update to upstream 'master' branch - Use modem-manager for better 3G modem support - Integrated system settings with NetworkManager itself - Use udev instead of HAL Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/.cvsignore,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- .cvsignore 14 Apr 2009 22:26:14 -0000 1.104 +++ .cvsignore 28 Jul 2009 15:35:11 -0000 1.105 @@ -153,3 +153,5 @@ NetworkManager-0.7.0.100.git20090408.tar network-manager-applet-0.7.0.100.svn1260.tar.bz2 NetworkManager-0.7.1.git20090414.tar.bz2 network-manager-applet-0.7.1.tar.bz2 +NetworkManager-0.7.995.git20090728.tar.bz2 +network-manager-applet-0.7.995.git20090728.tar.bz2 Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/NetworkManager.spec,v retrieving revision 1.276 retrieving revision 1.277 diff -u -p -r1.276 -r1.277 --- NetworkManager.spec 24 Jul 2009 15:40:11 -0000 1.276 +++ NetworkManager.spec 28 Jul 2009 15:35:11 -0000 1.277 @@ -2,21 +2,20 @@ %define dbus_version 1.1 %define dbus_glib_version 0.73-6 -%define hal_version 0.5.0 %define gtk2_version 2.12.0 %define wireless_tools_version 1:28-0pre9 %define libnl_version 1.1 %define ppp_version 2.2.4 -%define snapshot .git20090708 -%define applet_snapshot .git20090708 +%define snapshot .git20090728 +%define applet_snapshot .git20090728 Name: NetworkManager Summary: Network connection manager and user applications Epoch: 1 -Version: 0.7.1 -Release: 9%{snapshot}%{?dist} +Version: 0.7.995 +Release: 0%{snapshot}%{?dist} Group: System Environment/Base License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ @@ -26,13 +25,11 @@ Source1: network-manager-applet-%{versio Source2: nm-system-settings.conf Patch1: nm-applet-internal-buildfixes.patch Patch2: explain-dns1-dns2.patch -Patch3: nm-applet-file-chooser-validation.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) PreReq: chkconfig Requires: dbus >= %{dbus_version} Requires: dbus-glib >= %{dbus_glib_version} -Requires: hal >= %{hal_version} Requires: iproute Requires: dhclient >= 12:4.1.0 Requires: wpa_supplicant >= 1:0.6.8-4 @@ -43,6 +40,7 @@ Requires: avahi-autoipd Requires: dnsmasq Requires: udev Requires: mobile-broadband-provider-info >= 0.20090602 +Requires: ModemManager >= 0.2 Obsoletes: dhcdbd Conflicts: NetworkManager-vpnc < 1:0.7.0.99-1 @@ -53,7 +51,6 @@ Conflicts: NetworkManager-openconnect < BuildRequires: dbus-devel >= %{dbus_version} BuildRequires: dbus-glib-devel >= %{dbus_glib_version} BuildRequires: wireless-tools-devel >= %{wireless_tools_version} -BuildRequires: hal-devel >= %{hal_version} BuildRequires: glib2-devel gtk2-devel BuildRequires: libglade2-devel BuildRequires: GConf2-devel @@ -62,7 +59,7 @@ BuildRequires: gettext-devel BuildRequires: pkgconfig BuildRequires: wpa_supplicant BuildRequires: libnl-devel >= %{libnl_version} -BuildRequires: libnotify-devel >= 0.3 +BuildRequires: libnotify-devel >= 0.4 BuildRequires: perl(XML::Parser) BuildRequires: automake autoconf intltool libtool BuildRequires: ppp-devel >= %{ppp_version} @@ -72,6 +69,8 @@ BuildRequires: dhclient BuildRequires: gtk-doc BuildRequires: libudev-devel BuildRequires: libuuid-devel +BuildRequires: gnome-bluetooth-libs-devel >= 2.27.7.1-1 +BuildRequires: libgudev1 >= 143 %description NetworkManager attempts to keep an active network connection available at all @@ -146,7 +145,6 @@ tar -xjf %{SOURCE1} %patch1 -p1 -b .buildfix %patch2 -p1 -b .explain-dns1-dns2 -%patch3 -p1 -b .file-chooser-validate %build @@ -201,6 +199,7 @@ cat nm-applet.lang >> %{name}.lang %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/*.la %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/pppd/2.4.4/*.la %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/NetworkManager/*.la +%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/gnome-bluetooth/plugins/*.la install -m 0755 test/.libs/nm-online %{buildroot}/%{_bindir} @@ -253,10 +252,8 @@ fi %{_sysconfdir}/dbus-1/system.d/nm-dhcp-client.conf %{_sysconfdir}/dbus-1/system.d/nm-avahi-autoipd.conf %{_sysconfdir}/dbus-1/system.d/nm-dispatcher.conf -%{_sysconfdir}/dbus-1/system.d/nm-system-settings.conf %config %{_sysconfdir}/rc.d/init.d/NetworkManager %{_sbindir}/%{name} -%{_sbindir}/nm-system-settings %dir %{_sysconfdir}/%{name}/ %dir %{_sysconfdir}/%{name}/dispatcher.d %dir %{_sysconfdir}/%{name}/VPN @@ -275,12 +272,9 @@ fi %dir %{_datadir}/NetworkManager %{_datadir}/NetworkManager/gdb-cmd %dir %{_sysconfdir}/NetworkManager/system-connections -%{_datadir}/dbus-1/system-services/org.freedesktop.NetworkManagerSystemSettings.service %{_datadir}/dbus-1/system-services/org.freedesktop.nm_dispatcher.service %{_libdir}/pppd/2.4.4/nm-pppd-plugin.so %{_datadir}/PolicyKit/policy/*.policy -%{udev_scriptdir}/nm-modem-probe -%{udev_scriptdir}/rules.d/*.rules %files devel %defattr(-,root,root,0755) @@ -303,6 +297,7 @@ fi %{_datadir}/icons/hicolor/scalable/apps/*.svg %{_sysconfdir}/xdg/autostart/nm-applet.desktop %dir %{_datadir}/gnome-vpn-properties +%{_libdir}/gnome-bluetooth/plugins/* %files glib %defattr(-,root,root,0755) @@ -327,6 +322,12 @@ fi %{_datadir}/gtk-doc/html/libnm-util/* %changelog +* Tue Jul 28 2009 Dan Williams - 0.7.995-0.git20090728 +- Update to upstream 'master' branch +- Use modem-manager for better 3G modem support +- Integrated system settings with NetworkManager itself +- Use udev instead of HAL + * Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.1-9.git20090708 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild nm-applet-internal-buildfixes.patch: configure.ac | 4 ---- src/Makefile.am | 8 +++++++- src/connection-editor/Makefile.am | 9 ++++++++- src/gconf-helpers/Makefile.am | 8 +++++++- src/utils/Makefile.am | 9 ++++++++- src/wireless-security/Makefile.am | 8 +++++++- 6 files changed, 37 insertions(+), 9 deletions(-) Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nm-applet-internal-buildfixes.patch 8 Jul 2009 17:38:51 -0000 1.8 +++ nm-applet-internal-buildfixes.patch 28 Jul 2009 15:35:11 -0000 1.9 @@ -1,6 +1,6 @@ -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/configure.ac.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/configure.ac ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/configure.ac.buildfix 2009-04-04 18:03:25.000000000 -0400 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/configure.ac 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix 2009-04-04 18:03:25.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac 2009-04-05 08:31:12.000000000 -0400 @@ -68,10 +68,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0) PKG_CHECK_MODULES(NMA, [dbus-glib-1 >= 0.74 @@ -12,9 +12,9 @@ diff -up NetworkManager-0.7.1/network-ma gtk+-2.0 >= 2.14 libglade-2.0 gmodule-export-2.0 -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am.buildfix 2009-04-03 09:30:25.000000000 -0400 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am.buildfix 2009-04-03 09:30:25.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am 2009-04-05 08:31:12.000000000 -0400 @@ -1,5 +1,9 @@ bin_PROGRAMS = nm-connection-editor @@ -37,9 +37,9 @@ diff -up NetworkManager-0.7.1/network-ma if NO_POLKIT_GNOME nm_connection_editor_LDADD += \ -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/gconf-helpers/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/gconf-helpers/Makefile.am ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/gconf-helpers/Makefile.am.buildfix 2008-11-26 20:37:43.000000000 -0500 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/gconf-helpers/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am.buildfix 2008-11-26 20:37:43.000000000 -0500 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am 2009-04-05 08:31:12.000000000 -0400 @@ -1,3 +1,7 @@ +INCLUDES = -I${top_srcdir}/../include \ + -I${top_srcdir}/../libnm-util \ @@ -57,9 +57,9 @@ diff -up NetworkManager-0.7.1/network-ma + -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \ + -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/Makefile.am ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am 2009-04-05 08:31:12.000000000 -0400 @@ -4,6 +4,10 @@ NULL= bin_PROGRAMS = nm-applet @@ -82,9 +82,9 @@ diff -up NetworkManager-0.7.1/network-ma gladedir = $(datadir)/nm-applet glade_DATA = applet.glade keyring.png -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/utils/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/utils/Makefile.am ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/utils/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/utils/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am 2009-04-05 08:31:12.000000000 -0400 @@ -1,3 +1,7 @@ +INCLUDES = -I${top_srcdir}/../include \ + -I${top_srcdir}/../libnm-util \ @@ -102,9 +102,9 @@ diff -up NetworkManager-0.7.1/network-ma + -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \ + -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la + -diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/wireless-security/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/wireless-security/Makefile.am ---- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/wireless-security/Makefile.am.buildfix 2009-04-04 11:33:58.000000000 -0400 -+++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/wireless-security/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am.buildfix 2009-04-04 11:33:58.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am 2009-04-05 08:31:12.000000000 -0400 @@ -1,5 +1,9 @@ noinst_LTLIBRARIES = libwireless-security.la Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/sources,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- sources 8 Jul 2009 17:38:51 -0000 1.143 +++ sources 28 Jul 2009 15:35:12 -0000 1.144 @@ -1,2 +1,2 @@ -f361c757fda787a2a90719b9ae668702 NetworkManager-0.7.1.git20090708.tar.bz2 -801d31708a175d2133edc66007667d71 network-manager-applet-0.7.1.git20090708.tar.bz2 +e171cb1a36402cfa749efe54d72f8713 NetworkManager-0.7.995.git20090728.tar.bz2 +5b5496c43ad1b0a257010f38f2d0b6d4 network-manager-applet-0.7.995.git20090728.tar.bz2 --- nm-applet-file-chooser-validation.patch DELETED --- From pkgdb at fedoraproject.org Tue Jul 28 15:37:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 15:37:08 +0000 Subject: [pkgdb] sssd had acl change status Message-ID: <20090728153708.ECF6A10F891@bastion2.fedora.phx.redhat.com> notting has set the commit acl on sssd (Fedora 11) to Approved for sgallagh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sssd From mmorsi at fedoraproject.org Tue Jul 28 15:37:27 2009 From: mmorsi at fedoraproject.org (Mohammed Morsi) Date: Tue, 28 Jul 2009 15:37:27 +0000 (UTC) Subject: rpms/anyterm/devel anyterm-change-url-prefix.patch, NONE, 1.1 anyterm-cmd, NONE, 1.1 anyterm-libpbe-fix.patch, NONE, 1.1 anyterm.conf, NONE, 1.1 anyterm.spec, NONE, 1.1 anytermd.init, NONE, 1.1 anytermd.sysconfig, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728153727.11A9211C00D4@cvs1.fedora.phx.redhat.com> Author: mmorsi Update of /cvs/pkgs/rpms/anyterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5540/devel Modified Files: .cvsignore sources Added Files: anyterm-change-url-prefix.patch anyterm-cmd anyterm-libpbe-fix.patch anyterm.conf anyterm.spec anytermd.init anytermd.sysconfig import.log Log Message: * Wed Jul 15 2009 - 1.1.29-8 - correct anyterm dependency for anyterm-httpd subpkg - removed useradd/group add stdout redirection - def attr for anyterm-httpd subpkg - slight rewording and other trivial tasks * Tue Jul 14 2009 - 1.1.29-7 - removed useradd/group add stderr redirection - used all macros where i could - create httpd subpackage for anyterm/httpd integration * Mon Jul 13 2009 - 1.1.29-6 - fixed location of %%doc macro, and resolved other macro issues - moved anyterm-cmd from bindir to libexecdir/anyterm * Thu Jul 09 2009 - 1.1.29-5 - added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS * Tue Jul 07 2009 - 1.1.29-4 - removed pbuild - removed executable stack (requires prelink/execstack) * Thu Apr 09 2009 - 1.1.29-3 - updated spec / init based on rpmlint output * Wed Apr 08 2009 - 1.1.29-2 - Serve static content via apache - Use 1.1.29 release and newly added patches * Mon Mar 16 2009 - 1.1.29-1 - Initial checkout and build. anyterm-change-url-prefix.patch: anyterm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE anyterm-change-url-prefix.patch --- Index: browser/anyterm.js =================================================================== --- browser/anyterm.js (revision 5727) +++ browser/anyterm.js (working copy) @@ -19,7 +19,7 @@ var undefined; -var url_prefix = ""; +var url_prefix = "proxy/"; var frame; var term; --- NEW FILE anyterm-cmd --- #!/bin/bash # Default command anyterm will run. # Simply prompt the user for a username and # ssh locally as that user while : ; do echo -n "Username: " read U # Make sure it does not start with a "-" and only contains valid # username characters. if [[ "$U" =~ "^[A-Za-z0-9_][A-Za-z0-9_-]*\$" ]]; then ssh "$U at localhost" else echo "Bad username." fi done anyterm-libpbe-fix.patch: SmtpClient.cc | 1 + 1 file changed, 1 insertion(+) --- NEW FILE anyterm-libpbe-fix.patch --- Index: src/SmtpClient.cc =================================================================== --- src/SmtpClient.cc (revision 4996) +++ src/SmtpClient.cc (working copy) @@ -22,6 +22,7 @@ #include #include +#include #ifdef __OpenBSD__ // Is this really needed? --- NEW FILE anyterm.conf --- Alias /anyterm /usr/share/anyterm # admins are greatly encouraged to uncomment and # install/use mod_ssl here to secure traffic # SSLRequireSSL # Require valid-user # AuthType YYY DirectoryIndex anyterm.html # admins are greatly encouraged to uncomment and # install/use mod_ssl here to secure traffic # SSLRequireSSL # Require valid-user # AuthType YYY # proxy to the local-only anyterm daemon ProxyPass http://localhost:81 ttl=60 ProxyPassReverse http://localhost:81 --- NEW FILE anyterm.spec --- Name: anyterm Version: 1.1.29 Release: 8%{?dist} Summary: A web-based terminal emulator Group: Applications/Internet License: GPLv2+ URL: http://anyterm.org Source0: http://anyterm.org/download/anyterm-1.1.29.tbz2 Source1: anyterm-cmd Source2: anytermd.init Source3: anytermd.sysconfig Source4: anyterm.conf # http://anyterm.org/1.1/install.html#secid2252601 Patch0: anyterm-change-url-prefix.patch # http://anyterm.org/forums/viewtopic.php?id=581 Patch1: anyterm-libpbe-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: boost-devel BuildRequires: zlib-devel BuildRequires: prelink Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts %package httpd Summary: Httpd proxy configuration for anyterm Group: Applications/Internet License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: httpd %description The Anyterm web-based terminal emulator, permits terminal and/or arbitrary command access via http. The anyterm daemon can be configured to run any arbitrary command, redirecting all standard input / output / error to and from any javascript-enabled web browser in real time. %description httpd The httpd configuration necessary to proxy anyterm. %prep %setup -q %patch0 -p0 cd libpbe/ %patch1 -p0 %build export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" %{__make} %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" %{__gzip} anytermd.1 execstack -c anytermd %install %{__rm} -rf %{buildroot} %{__install} -Dp -m0755 anytermd %{buildroot}%{_sbindir}/anytermd %{__install} -Dp -m0644 anytermd.1.gz %{buildroot}%{_mandir}/man1/anytermd.1.gz %{__install} -Dp -m0755 %{SOURCE1} %{buildroot}%{_libexecdir}/%{name}/anyterm-cmd %{__install} -Dp -m0755 %{SOURCE2} %{buildroot}%{_initrddir}/anyterm %{__install} -Dp -m0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/anyterm %{__install} -Dp -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/httpd/conf.d/anyterm.conf %{__mkdir} -p %{buildroot}%{_datadir}/anyterm/ for f in browser/*.{html,css,js,png,gif}; do %{__install} -m644 "$f" %{buildroot}%{_datadir}/anyterm/ done %clean rm -rf %{buildroot} %pre # create anyterm group / user getent group anyterm >/dev/null || \ /usr/sbin/groupadd -r anyterm getent passwd anyterm > /dev/null || \ /usr/sbin/useradd -r -s /sbin/nologin -d /dev/null \ -M -c 'Anyterm user' -g anyterm anyterm exit 0 %post # adds the proper /etc/rc*.d links for the script /sbin/chkconfig --add anyterm %preun if [ $1 = 0 ] ; then /sbin/service anyterm stop >/dev/null 2>&1 /sbin/chkconfig --del anyterm fi %files %defattr(-,root,root,-) %{_sbindir}/anytermd %{_libexecdir}/anyterm/ %{_mandir}/man1/anytermd.1.gz %{_initrddir}/anyterm %{_datadir}/anyterm/ %config(noreplace) %{_sysconfdir}/sysconfig/anyterm %doc LICENSE %files httpd %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/httpd/conf.d/anyterm.conf %changelog * Wed Jul 15 2009 - 1.1.29-8 - correct anyterm dependency for anyterm-httpd subpkg - removed useradd/group add stdout redirection - def attr for anyterm-httpd subpkg - slight rewording and other trivial tasks * Tue Jul 14 2009 - 1.1.29-7 - removed useradd/group add stderr redirection - used all macros where i could - create httpd subpackage for anyterm/httpd integration * Mon Jul 13 2009 - 1.1.29-6 - fixed location of %%doc macro, and resolved other macro issues - moved anyterm-cmd from bindir to libexecdir/anyterm * Thu Jul 09 2009 - 1.1.29-5 - added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS * Tue Jul 07 2009 - 1.1.29-4 - removed pbuild - removed executable stack (requires prelink/execstack) * Thu Apr 09 2009 - 1.1.29-3 - updated spec / init based on rpmlint output * Wed Apr 08 2009 - 1.1.29-2 - Serve static content via apache - Use 1.1.29 release and newly added patches * Mon Mar 16 2009 - 1.1.29-1 - Initial checkout and build. --- NEW FILE anytermd.init --- #!/bin/bash # # # anyterm startup script for anyterm # # chkconfig: - 97 03 # description: anyterm is a web based terminal emulator. [ -r /etc/sysconfig/anyterm ] && . /etc/sysconfig/anyterm ANYTERM_CMD="${ANYTERM_CMD:-/usr/libexec/anyterm/anyterm-cmd}" ANYTERM_PORT="${ANYTERM_PORT:-81}" ANYTERM_USER="${ANYTERM_USER:-anyterm}" ANYTERM_LOCAL_ONLY="${ANYTERM_LOCAL_ONLY:-true}" ANYTERM_CHARACTER_SET="${ANYTERM_CHARACTER_SET:-UTF8}" DEFAULT_LOCKFILE=/var/lock/subsys/anyterm ANYTERM_LOCKFILE="${ANYTERM_LOCKFILE:-$DEFAULT_LOCKFILE}" ANYTERM_PROG=/usr/sbin/anytermd . /etc/init.d/functions if [ $ANYTERM_LOCAL_ONLY == "false" -o $ANYTERM_LOCAL_ONLY == "no" ]; then ANYTERM_LOCAL_ONLY="" else ANYTERM_LOCAL_ONLY="--local-only" fi start() { echo -n "Staring anyterm" if [ -e /var/run/anytermd.pid ] && [ -e /proc/$(cat /var/run/anytermd.pid) ]; then echo -n " anyterm already running" echo_failure echo return 1 fi $ANYTERM_PROG -c "$ANYTERM_CMD" \ -p $ANYTERM_PORT -u $ANYTERM_USER \ -s $ANYTERM_CHARACTER_SET $ANYTERM_LOCAL_ONLY RETVAL=$? if [ $RETVAL -eq 0 ]; then echo_success echo touch $ANYTERM_LOCKFILE else echo_failure echo fi } stop() { echo -n "Shutting down anyterm" killproc $ANYTERM_PROG RETVAL=$? if [ $RETVAL -eq 0 ]; then echo_success echo rm $ANYTERM_LOCKFILE else echo_failure echo fi } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; condrestart|try-restart) status $ANYTERM >/dev/null 2>&1 || exit 0 stop start ;; reload) ;; force-reload) restart ;; status) status $ANYTERM_PROG RETVAL=$? ;; *) echo "Usage: anytermd {start|stop|restart|status}" exit 1 ;; esac exit $RETVAL --- NEW FILE anytermd.sysconfig --- # anyterm daemon configuration variables # command which anyterm will launch when client connects. # ANYTERM_CMD=/usr/libexec/anyterm/anyterm-cmd # port which anytermd will listen on # ANYTERM_PORT=81 # user anyterm will run as # ANYTERM_USER=anyterm # toggle the 'local only' flag # (whether anyterm will or will not # accept connections from hosts other # than localhost) # ANYTERM_LOCAL_ONLY=true # character set anyterm will use # ANYTERM_CHARACTER_SET=UTF8 # subsys lock file to use # ANYTERM_LOCKFILE=/var/lock/subsys/anyterm --- NEW FILE import.log --- anyterm-1_1_29-8_fc10:HEAD:anyterm-1.1.29-8.fc10.src.rpm:1248795041 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyterm/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:32:11 -0000 1.1 +++ .cvsignore 28 Jul 2009 15:37:26 -0000 1.2 @@ -0,0 +1 @@ +anyterm-1.1.29.tbz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyterm/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:32:11 -0000 1.1 +++ sources 28 Jul 2009 15:37:26 -0000 1.2 @@ -0,0 +1 @@ +84fe7f3b4f516815901d1f545e79f13d anyterm-1.1.29.tbz2 From rdieter at fedoraproject.org Tue Jul 28 15:39:24 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 15:39:24 +0000 (UTC) Subject: rpms/maxima/devel maxima.spec,1.133,1.134 Message-ID: <20090728153924.4245411C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7980 Modified Files: maxima.spec Log Message: Releaese++ Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/devel/maxima.spec,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- maxima.spec 28 Jul 2009 13:23:20 -0000 1.133 +++ maxima.spec 28 Jul 2009 15:39:23 -0000 1.134 @@ -3,7 +3,7 @@ Summary: Symbolic Computation Program Name: maxima Version: 5.18.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -424,7 +424,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 28 2009 Rex Dieter - 5.18.1-5 +* Tue Jul 28 2009 Rex Dieter - 5.18.1-6 - rebuild (sbcl) * Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 From mmorsi at fedoraproject.org Tue Jul 28 15:40:12 2009 From: mmorsi at fedoraproject.org (Mohammed Morsi) Date: Tue, 28 Jul 2009 15:40:12 +0000 (UTC) Subject: rpms/anyterm/F-11 anyterm-change-url-prefix.patch, NONE, 1.1 anyterm-cmd, NONE, 1.1 anyterm-libpbe-fix.patch, NONE, 1.1 anyterm.conf, NONE, 1.1 anyterm.spec, NONE, 1.1 anytermd.init, NONE, 1.1 anytermd.sysconfig, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090728154012.471B711C00D4@cvs1.fedora.phx.redhat.com> Author: mmorsi Update of /cvs/pkgs/rpms/anyterm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8426/F-11 Modified Files: .cvsignore sources Added Files: anyterm-change-url-prefix.patch anyterm-cmd anyterm-libpbe-fix.patch anyterm.conf anyterm.spec anytermd.init anytermd.sysconfig import.log Log Message: * Wed Jul 15 2009 - 1.1.29-8 - correct anyterm dependency for anyterm-httpd subpkg - removed useradd/group add stdout redirection - def attr for anyterm-httpd subpkg - slight rewording and other trivial tasks * Tue Jul 14 2009 - 1.1.29-7 - removed useradd/group add stderr redirection - used all macros where i could - create httpd subpackage for anyterm/httpd integration * Mon Jul 13 2009 - 1.1.29-6 - fixed location of %%doc macro, and resolved other macro issues - moved anyterm-cmd from bindir to libexecdir/anyterm * Thu Jul 09 2009 - 1.1.29-5 - added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS * Tue Jul 07 2009 - 1.1.29-4 - removed pbuild - removed executable stack (requires prelink/execstack) * Thu Apr 09 2009 - 1.1.29-3 - updated spec / init based on rpmlint output * Wed Apr 08 2009 - 1.1.29-2 - Serve static content via apache - Use 1.1.29 release and newly added patches * Mon Mar 16 2009 - 1.1.29-1 - Initial checkout and build. anyterm-change-url-prefix.patch: anyterm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE anyterm-change-url-prefix.patch --- Index: browser/anyterm.js =================================================================== --- browser/anyterm.js (revision 5727) +++ browser/anyterm.js (working copy) @@ -19,7 +19,7 @@ var undefined; -var url_prefix = ""; +var url_prefix = "proxy/"; var frame; var term; --- NEW FILE anyterm-cmd --- #!/bin/bash # Default command anyterm will run. # Simply prompt the user for a username and # ssh locally as that user while : ; do echo -n "Username: " read U # Make sure it does not start with a "-" and only contains valid # username characters. if [[ "$U" =~ "^[A-Za-z0-9_][A-Za-z0-9_-]*\$" ]]; then ssh "$U at localhost" else echo "Bad username." fi done anyterm-libpbe-fix.patch: SmtpClient.cc | 1 + 1 file changed, 1 insertion(+) --- NEW FILE anyterm-libpbe-fix.patch --- Index: src/SmtpClient.cc =================================================================== --- src/SmtpClient.cc (revision 4996) +++ src/SmtpClient.cc (working copy) @@ -22,6 +22,7 @@ #include #include +#include #ifdef __OpenBSD__ // Is this really needed? --- NEW FILE anyterm.conf --- Alias /anyterm /usr/share/anyterm # admins are greatly encouraged to uncomment and # install/use mod_ssl here to secure traffic # SSLRequireSSL # Require valid-user # AuthType YYY DirectoryIndex anyterm.html # admins are greatly encouraged to uncomment and # install/use mod_ssl here to secure traffic # SSLRequireSSL # Require valid-user # AuthType YYY # proxy to the local-only anyterm daemon ProxyPass http://localhost:81 ttl=60 ProxyPassReverse http://localhost:81 --- NEW FILE anyterm.spec --- Name: anyterm Version: 1.1.29 Release: 8%{?dist} Summary: A web-based terminal emulator Group: Applications/Internet License: GPLv2+ URL: http://anyterm.org Source0: http://anyterm.org/download/anyterm-1.1.29.tbz2 Source1: anyterm-cmd Source2: anytermd.init Source3: anytermd.sysconfig Source4: anyterm.conf # http://anyterm.org/1.1/install.html#secid2252601 Patch0: anyterm-change-url-prefix.patch # http://anyterm.org/forums/viewtopic.php?id=581 Patch1: anyterm-libpbe-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: boost-devel BuildRequires: zlib-devel BuildRequires: prelink Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts %package httpd Summary: Httpd proxy configuration for anyterm Group: Applications/Internet License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: httpd %description The Anyterm web-based terminal emulator, permits terminal and/or arbitrary command access via http. The anyterm daemon can be configured to run any arbitrary command, redirecting all standard input / output / error to and from any javascript-enabled web browser in real time. %description httpd The httpd configuration necessary to proxy anyterm. %prep %setup -q %patch0 -p0 cd libpbe/ %patch1 -p0 %build export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" %{__make} %{?_smp_mflags} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" %{__gzip} anytermd.1 execstack -c anytermd %install %{__rm} -rf %{buildroot} %{__install} -Dp -m0755 anytermd %{buildroot}%{_sbindir}/anytermd %{__install} -Dp -m0644 anytermd.1.gz %{buildroot}%{_mandir}/man1/anytermd.1.gz %{__install} -Dp -m0755 %{SOURCE1} %{buildroot}%{_libexecdir}/%{name}/anyterm-cmd %{__install} -Dp -m0755 %{SOURCE2} %{buildroot}%{_initrddir}/anyterm %{__install} -Dp -m0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/anyterm %{__install} -Dp -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/httpd/conf.d/anyterm.conf %{__mkdir} -p %{buildroot}%{_datadir}/anyterm/ for f in browser/*.{html,css,js,png,gif}; do %{__install} -m644 "$f" %{buildroot}%{_datadir}/anyterm/ done %clean rm -rf %{buildroot} %pre # create anyterm group / user getent group anyterm >/dev/null || \ /usr/sbin/groupadd -r anyterm getent passwd anyterm > /dev/null || \ /usr/sbin/useradd -r -s /sbin/nologin -d /dev/null \ -M -c 'Anyterm user' -g anyterm anyterm exit 0 %post # adds the proper /etc/rc*.d links for the script /sbin/chkconfig --add anyterm %preun if [ $1 = 0 ] ; then /sbin/service anyterm stop >/dev/null 2>&1 /sbin/chkconfig --del anyterm fi %files %defattr(-,root,root,-) %{_sbindir}/anytermd %{_libexecdir}/anyterm/ %{_mandir}/man1/anytermd.1.gz %{_initrddir}/anyterm %{_datadir}/anyterm/ %config(noreplace) %{_sysconfdir}/sysconfig/anyterm %doc LICENSE %files httpd %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/httpd/conf.d/anyterm.conf %changelog * Wed Jul 15 2009 - 1.1.29-8 - correct anyterm dependency for anyterm-httpd subpkg - removed useradd/group add stdout redirection - def attr for anyterm-httpd subpkg - slight rewording and other trivial tasks * Tue Jul 14 2009 - 1.1.29-7 - removed useradd/group add stderr redirection - used all macros where i could - create httpd subpackage for anyterm/httpd integration * Mon Jul 13 2009 - 1.1.29-6 - fixed location of %%doc macro, and resolved other macro issues - moved anyterm-cmd from bindir to libexecdir/anyterm * Thu Jul 09 2009 - 1.1.29-5 - added CFLAGS / CXXFLAGS to pick up RPM_OPT_FLAGS * Tue Jul 07 2009 - 1.1.29-4 - removed pbuild - removed executable stack (requires prelink/execstack) * Thu Apr 09 2009 - 1.1.29-3 - updated spec / init based on rpmlint output * Wed Apr 08 2009 - 1.1.29-2 - Serve static content via apache - Use 1.1.29 release and newly added patches * Mon Mar 16 2009 - 1.1.29-1 - Initial checkout and build. --- NEW FILE anytermd.init --- #!/bin/bash # # # anyterm startup script for anyterm # # chkconfig: - 97 03 # description: anyterm is a web based terminal emulator. [ -r /etc/sysconfig/anyterm ] && . /etc/sysconfig/anyterm ANYTERM_CMD="${ANYTERM_CMD:-/usr/libexec/anyterm/anyterm-cmd}" ANYTERM_PORT="${ANYTERM_PORT:-81}" ANYTERM_USER="${ANYTERM_USER:-anyterm}" ANYTERM_LOCAL_ONLY="${ANYTERM_LOCAL_ONLY:-true}" ANYTERM_CHARACTER_SET="${ANYTERM_CHARACTER_SET:-UTF8}" DEFAULT_LOCKFILE=/var/lock/subsys/anyterm ANYTERM_LOCKFILE="${ANYTERM_LOCKFILE:-$DEFAULT_LOCKFILE}" ANYTERM_PROG=/usr/sbin/anytermd . /etc/init.d/functions if [ $ANYTERM_LOCAL_ONLY == "false" -o $ANYTERM_LOCAL_ONLY == "no" ]; then ANYTERM_LOCAL_ONLY="" else ANYTERM_LOCAL_ONLY="--local-only" fi start() { echo -n "Staring anyterm" if [ -e /var/run/anytermd.pid ] && [ -e /proc/$(cat /var/run/anytermd.pid) ]; then echo -n " anyterm already running" echo_failure echo return 1 fi $ANYTERM_PROG -c "$ANYTERM_CMD" \ -p $ANYTERM_PORT -u $ANYTERM_USER \ -s $ANYTERM_CHARACTER_SET $ANYTERM_LOCAL_ONLY RETVAL=$? if [ $RETVAL -eq 0 ]; then echo_success echo touch $ANYTERM_LOCKFILE else echo_failure echo fi } stop() { echo -n "Shutting down anyterm" killproc $ANYTERM_PROG RETVAL=$? if [ $RETVAL -eq 0 ]; then echo_success echo rm $ANYTERM_LOCKFILE else echo_failure echo fi } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; condrestart|try-restart) status $ANYTERM >/dev/null 2>&1 || exit 0 stop start ;; reload) ;; force-reload) restart ;; status) status $ANYTERM_PROG RETVAL=$? ;; *) echo "Usage: anytermd {start|stop|restart|status}" exit 1 ;; esac exit $RETVAL --- NEW FILE anytermd.sysconfig --- # anyterm daemon configuration variables # command which anyterm will launch when client connects. # ANYTERM_CMD=/usr/libexec/anyterm/anyterm-cmd # port which anytermd will listen on # ANYTERM_PORT=81 # user anyterm will run as # ANYTERM_USER=anyterm # toggle the 'local only' flag # (whether anyterm will or will not # accept connections from hosts other # than localhost) # ANYTERM_LOCAL_ONLY=true # character set anyterm will use # ANYTERM_CHARACTER_SET=UTF8 # subsys lock file to use # ANYTERM_LOCKFILE=/var/lock/subsys/anyterm --- NEW FILE import.log --- anyterm-1_1_29-8_fc10:F-11:anyterm-1.1.29-8.fc10.src.rpm:1248795621 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyterm/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:32:11 -0000 1.1 +++ .cvsignore 28 Jul 2009 15:40:11 -0000 1.2 @@ -0,0 +1 @@ +anyterm-1.1.29.tbz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyterm/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:32:11 -0000 1.1 +++ sources 28 Jul 2009 15:40:12 -0000 1.2 @@ -0,0 +1 @@ +84fe7f3b4f516815901d1f545e79f13d anyterm-1.1.29.tbz2 From mbarnes at fedoraproject.org Tue Jul 28 15:42:58 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 15:42:58 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.10, 1.116.2.11 evolution.spec, 1.394.2.20, 1.394.2.21 sources, 1.116.2.14, 1.116.2.15 Message-ID: <20090728154258.4977F11C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9756 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Log Message: * Tue Jul 28 2009 Matthew Barnes - 2.27.5-1.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit 2c4510e. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.10 retrieving revision 1.116.2.11 diff -u -p -r1.116.2.10 -r1.116.2.11 --- .cvsignore 17 Jul 2009 23:09:41 -0000 1.116.2.10 +++ .cvsignore 28 Jul 2009 15:42:57 -0000 1.116.2.11 @@ -1 +1 @@ -evolution-2.27.4-kill-bonobo-becd78e.tar.bz2 +evolution-kill-bonobo-2c4510e.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.20 retrieving revision 1.394.2.21 diff -u -p -r1.394.2.20 -r1.394.2.21 --- evolution.spec 17 Jul 2009 23:09:41 -0000 1.394.2.20 +++ evolution.spec 28 Jul 2009 15:42:57 -0000 1.394.2.21 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash becd78e +%define hash 2c4510e %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -44,8 +44,8 @@ ### Abstract ### Name: evolution -Version: 2.27.4 -Release: 1.kb.3%{?dist} +Version: 2.27.5 +Release: 1.kb.1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -671,6 +671,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Tue Jul 28 2009 Matthew Barnes - 2.27.5-1.kb.1.fc12 +- Snapshot of "kill-bonobo" branch at commit 2c4510e. + * Fri Jul 17 2009 Matthew Barnes - 2.27.4-1.kb.3.fc12 - Snapshot of "kill-bonobo" branch at commit becd78e. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.14 retrieving revision 1.116.2.15 diff -u -p -r1.116.2.14 -r1.116.2.15 --- sources 17 Jul 2009 23:09:41 -0000 1.116.2.14 +++ sources 28 Jul 2009 15:42:57 -0000 1.116.2.15 @@ -1 +1 @@ -f2b291d4c97dc7ec577f25a0e5024d2f evolution-2.27.4-kill-bonobo-becd78e.tar.bz2 +26a5fd8aaf48812b2120b7d856af92ed evolution-kill-bonobo-2c4510e.tar.bz2 From nalin at fedoraproject.org Tue Jul 28 15:52:25 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Tue, 28 Jul 2009 15:52:25 +0000 (UTC) Subject: rpms/nss_ldap/devel nss_ldap-264-cloexec.patch, NONE, 1.1 nss_ldap.spec, 1.115, 1.116 Message-ID: <20090728155225.F2FAA11C00D4@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/nss_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14162 Modified Files: nss_ldap.spec Added Files: nss_ldap-264-cloexec.patch Log Message: - set close-on-exec on the dummy socket created in the child atfork() (#512856) nss_ldap-264-cloexec.patch: ldap-nss.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nss_ldap-264-cloexec.patch --- diff -up nss_ldap-264/ldap-nss.c nss_ldap-264/ldap-nss.c --- nss_ldap-264/ldap-nss.c 2009-07-23 18:55:15.290388484 -0400 +++ nss_ldap-264/ldap-nss.c 2009-07-23 19:01:33.328398737 -0400 @@ -896,6 +896,7 @@ do_drop_connection(int sd, int closeSd) /* we must let dup2 close sd for us to avoid race conditions * in multithreaded code. */ + fcntl (dummyfd, F_SETFD, 1L); do_dupfd (dummyfd, sd); do_closefd (dummyfd); } Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/devel/nss_ldap.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- nss_ldap.spec 25 Jul 2009 19:36:45 -0000 1.115 +++ nss_ldap.spec 28 Jul 2009 15:52:25 -0000 1.116 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 6%{?dist} +Release: 7%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -27,6 +27,7 @@ Patch20: pam_ldap-184-nsrole.patch Patch21: nss_ldap-264-checkcase.patch Patch22: nss_ldap-264-ent_internal.patch Patch23: pam_ldap-183-releaseconfig.patch +Patch24: nss_ldap-264-cloexec.patch URL: http://www.padl.com/ License: LGPLv2+ @@ -68,6 +69,7 @@ pushd nss_ldap-%{version} %patch17 -p1 -b .res_init #%patch21 -p1 -b .checkcase %patch22 -p1 -b .ent_internal +%patch24 -p1 -b .cloexec autoreconf -f -i popd @@ -196,6 +198,9 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Tue Jul 28 2009 Nalin Dahyabhai 264-7 +- set close-on-exec on the dummy socket created in the child atfork() (#512856) + * Sat Jul 25 2009 Fedora Release Engineering - 264-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From caolanm at fedoraproject.org Tue Jul 28 15:58:09 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 28 Jul 2009 15:58:09 +0000 (UTC) Subject: rpms/icu/devel icu.icu7039.badextract.patch, NONE, 1.1 icu.spec, 1.99, 1.100 Message-ID: <20090728155809.8656F11C00D4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17271 Modified Files: icu.spec Added Files: icu.icu7039.badextract.patch Log Message: icu#7039 fix broken use of extract to get tests working icu.icu7039.badextract.patch: common/unicode/unistr.h | 2 +- test/intltest/dadrcal.cpp | 8 ++++---- test/intltest/dadrcoll.cpp | 2 +- test/intltest/dadrfmt.cpp | 4 ++-- test/intltest/loctest.cpp | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) --- NEW FILE icu.icu7039.badextract.patch --- diff -ru icu.orig/source/common/unicode/unistr.h icu/source/common/unicode/unistr.h --- icu.orig/source/common/unicode/unistr.h 2009-07-28 16:02:03.000000000 +0100 +++ icu/source/common/unicode/unistr.h 2009-07-28 16:36:48.000000000 +0100 @@ -4048,7 +4048,7 @@ { // This dstSize value will be checked explicitly - return extract(start, _length, dst, dst!=0 ? 0xffffffff : 0, codepage); + return extract(start, _length, dst, dst!=0 ? ((dst >= ((size_t)-1) - UINT32_MAX) ? (((char*)UINT32_MAX) - dst) : UINT32_MAX) : 0, codepage); } #endif diff -ru icu.orig/source/test/intltest/dadrcal.cpp icu/source/test/intltest/dadrcal.cpp --- icu.orig/source/test/intltest/dadrcal.cpp 2009-07-28 16:01:10.000000000 +0100 +++ icu/source/test/intltest/dadrcal.cpp 2009-07-28 16:52:15.000000000 +0100 @@ -114,7 +114,7 @@ + UnicodeString(" - ")); continue; } - testSetting.extract(0, testSetting.length(), toCalLoc, (const char*)0); + testSetting.extract(0, testSetting.length(), toCalLoc, sizeof(toCalLoc)-1, (const char*)0); fromCalendar = Calendar::createInstance(toCalLoc, status); if (U_FAILURE(status)) { errln(caseString+": Unable to instantiate calendar for " @@ -371,7 +371,7 @@ // build to calendar UnicodeString testSetting = settings->getString("ToCalendar", status); if (U_SUCCESS(status)) { - testSetting.extract(0, testSetting.length(), toCalLoc, (const char*)0); + testSetting.extract(0, testSetting.length(), toCalLoc, sizeof(toCalLoc)-1, (const char*)0); toCalendar = Calendar::createInstance(toCalLoc, status); if (U_FAILURE(status)) { errln("Unable to instantiate ToCalendar for "+testSetting); @@ -394,7 +394,7 @@ Calendar *fromCalendar= NULL; UnicodeString locale = currentCase->getString("locale", status); if (U_SUCCESS(status)) { - locale.extract(0, locale.length(), fromCalLoc, (const char*)0); // default codepage. Invariant codepage doesn't have '@'! + locale.extract(0, locale.length(), fromCalLoc, sizeof(fromCalLoc)-1, (const char*)0); // default codepage. Invariant codepage doesn't have '@'! fromCalendar = Calendar::createInstance(fromCalLoc, status); if (U_FAILURE(status)) { errln("Unable to instantiate fromCalendar for "+locale); @@ -464,7 +464,7 @@ logln("---"); } logln(testSetting + "---"); - testSetting.extract(0, testSetting.length(), testType, ""); + testSetting.extract(0, testSetting.length(), testType, sizeof(testType)-1, ""); } else { errln("Unable to extract 'Type'. Skipping.."); continue; diff -ru icu.orig/source/test/intltest/dadrcoll.cpp icu/source/test/intltest/dadrcoll.cpp --- icu.orig/source/test/intltest/dadrcoll.cpp 2009-07-28 16:01:10.000000000 +0100 +++ icu/source/test/intltest/dadrcoll.cpp 2009-07-28 16:49:56.000000000 +0100 @@ -179,7 +179,7 @@ testSetting = settings->getString("TestLocale", intStatus); if(U_SUCCESS(intStatus)) { char localeName[256]; - testSetting.extract(0, testSetting.length(), localeName, ""); + testSetting.extract(0, testSetting.length(), localeName, sizeof(localeName)-1, ""); col = Collator::createInstance(localeName, status); if(U_SUCCESS(status)) { logln("Testing collator for locale "+testSetting); diff -ru icu.orig/source/test/intltest/dadrfmt.cpp icu/source/test/intltest/dadrfmt.cpp --- icu.orig/source/test/intltest/dadrfmt.cpp 2009-07-28 16:01:10.000000000 +0100 +++ icu/source/test/intltest/dadrfmt.cpp 2009-07-28 16:50:36.000000000 +0100 @@ -149,7 +149,7 @@ DateFormat *format = NULL; // Process: 'locale' - locale.extract(0, locale.length(), calLoc, (const char*)0); // default codepage. Invariant codepage doesn't have '@'! + locale.extract(0, locale.length(), calLoc, sizeof(calLoc)-1, (const char*)0); // default codepage. Invariant codepage doesn't have '@'! Locale loc(calLoc); if(spec.startsWith(kPATTERN)) { pattern = UnicodeString(spec,kPATTERN.length()); @@ -323,7 +323,7 @@ logln("---"); } logln(testSetting + "---"); - testSetting.extract(0, testSetting.length(), testType, ""); + testSetting.extract(0, testSetting.length(), testType, sizeof(testType)-1, ""); } else { errln("Unable to extract 'Type'. Skipping.."); continue; diff -ru icu.orig/source/test/intltest/loctest.cpp icu/source/test/intltest/loctest.cpp --- icu.orig/source/test/intltest/loctest.cpp 2009-07-28 16:01:10.000000000 +0100 +++ icu/source/test/intltest/loctest.cpp 2009-07-28 16:51:30.000000000 +0100 @@ -616,7 +616,7 @@ { char *ch; ch = new char[l.length() + 1]; - ch[l.extract(0, 0x7fffffff, ch, "")] = 0; + ch[l.extract(0, 0x7fffffff, ch, l.length(), "")] = 0; setFromPOSIXID(ch); delete [] ch; } Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- icu.spec 25 Jul 2009 03:08:21 -0000 1.99 +++ icu.spec 28 Jul 2009 15:58:09 -0000 1.100 @@ -1,6 +1,6 @@ Name: icu Version: 4.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: International Components for Unicode Group: Development/Tools License: MIT @@ -14,6 +14,7 @@ Requires: lib%{name} = %{version}-%{rele Patch1: icu-3.4-multiarchdevel.patch Patch2: icu.icu6284.strictalias.patch Patch3: icu.6995.kannada.patch +Patch4: icu.icu7039.badextract.patch %description Tools and utilities for developing with icu. @@ -55,7 +56,8 @@ BuildArch: noarch %setup -q -n %{name} %patch1 -p1 -b .multiarchdevel %patch2 -p1 -b .icu6284.strictalias.patch -%patch3 -p1 -b .icu.6995.kannada.patch +%patch3 -p1 -b .icu6995.kannada.patch +%patch4 -p1 -b .icu7039.badextract.patch %build cd source @@ -76,6 +78,9 @@ chmod 0755 $RPM_BUILD_ROOT%{_bindir}/%{n sed -i s/\\\$\(THREADSCXXFLAGS\)// $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/icu.pc sed -i s/\\\$\(THREADSCPPFLAGS\)/-D_REENTRANT/ $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/icu.pc +%check +make -C source check + %clean rm -rf $RPM_BUILD_ROOT @@ -131,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %doc source/__docs/%{name}/html/* %changelog +* Tue Jul 28 2009 Caolan McNamara - 4.2.1-5 +- icu#7039 fix broken use of extract to get tests working + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jcollie at fedoraproject.org Tue Jul 28 15:59:28 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 15:59:28 +0000 (UTC) Subject: rpms/gnonlin/F-11 .cvsignore, 1.13, 1.14 gnonlin.spec, 1.24, 1.25 sources, 1.13, 1.14 Message-ID: <20090728155928.C9C8611C00D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/gnonlin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18006 Modified Files: .cvsignore gnonlin.spec sources Log Message: * Fri Jul 24 2009 Fedora Release Engineering - 0.10.11.2-0.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 28 May 2009 13:25:28 -0000 1.13 +++ .cvsignore 28 Jul 2009 15:59:28 -0000 1.14 @@ -1 +1 @@ -gnonlin-0.10.11.tar.gz +gnonlin-0.10.11.2.tar.gz Index: gnonlin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/F-11/gnonlin.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- gnonlin.spec 28 May 2009 13:25:28 -0000 1.24 +++ gnonlin.spec 28 Jul 2009 15:59:28 -0000 1.25 @@ -2,14 +2,14 @@ %define gst_plugins_base_req 0.10.4 Name: gnonlin -Version: 0.10.11 -Release: 1%{?dist} +Version: 0.10.11.2 +Release: 0.2%{?dist} Summary: GStreamer extension library for non-linear editing Group: System Environment/Libraries License: LGPLv2+ URL: http://gnonlin.sourceforge.net/ -Source: http://gstreamer.freedesktop.org/src/gnonlin/gnonlin-%{version}.tar.gz +Source: http://gstreamer.freedesktop.org/src/gnonlin/pre/gnonlin-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gstreamer-devel >= %{gst_req} @@ -44,6 +44,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-0.10/libgnl.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.11.2-0.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 16 2009 Jeffrey C. Ollie - 0.10.11.2-0.1 +- Update to gnonlin prerelease. + * Thu May 28 2009 Jeffrey C. Ollie - 0.10.11-1 - This is GNonLin 0.10.11 "How about green for the bikeshed?" - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 28 May 2009 13:25:28 -0000 1.13 +++ sources 28 Jul 2009 15:59:28 -0000 1.14 @@ -1 +1 @@ -c2d7e818a84011d5f9fec4b0bd927576 gnonlin-0.10.11.tar.gz +20a99e4c1798c849963aa0025318a6c5 gnonlin-0.10.11.2.tar.gz From bskeggs at fedoraproject.org Tue Jul 28 16:03:52 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 16:03:52 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.37, 1.38 kernel.spec, 1.1664, 1.1665 Message-ID: <20090728160352.8864411C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19979 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Tue Jul 28 2009 Ben Skeggs - drm-nouveau.patch: tile shared fb area on nv50 drm-nouveau.patch: drivers/gpu/drm/Kconfig | 30 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/nouveau/Makefile | 27 drivers/gpu/drm/nouveau/nouveau_backlight.c | 156 drivers/gpu/drm/nouveau/nouveau_bios.c | 5050 ++++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 226 drivers/gpu/drm/nouveau/nouveau_bo.c | 567 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 55 drivers/gpu/drm/nouveau/nouveau_crtc.h | 90 drivers/gpu/drm/nouveau/nouveau_display.c | 115 drivers/gpu/drm/nouveau/nouveau_dma.c | 143 drivers/gpu/drm/nouveau/nouveau_dma.h | 144 drivers/gpu/drm/nouveau/nouveau_drv.c | 353 drivers/gpu/drm/nouveau/nouveau_drv.h | 1145 + drivers/gpu/drm/nouveau/nouveau_encoder.h | 51 drivers/gpu/drm/nouveau/nouveau_fb.h | 43 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 1019 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 49 drivers/gpu/drm/nouveau/nouveau_fence.c | 261 drivers/gpu/drm/nouveau/nouveau_fifo.c | 668 drivers/gpu/drm/nouveau/nouveau_gem.c | 751 drivers/gpu/drm/nouveau/nouveau_hw.c | 1019 + drivers/gpu/drm/nouveau/nouveau_hw.h | 436 drivers/gpu/drm/nouveau/nouveau_i2c.c | 274 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 674 drivers/gpu/drm/nouveau/nouveau_mem.c | 543 drivers/gpu/drm/nouveau/nouveau_notifier.c | 192 drivers/gpu/drm/nouveau/nouveau_object.c | 1258 + drivers/gpu/drm/nouveau/nouveau_reg.h | 834 + drivers/gpu/drm/nouveau/nouveau_sgdma.c | 331 drivers/gpu/drm/nouveau/nouveau_state.c | 837 + drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nouveau_ttm.c | 116 drivers/gpu/drm/nouveau/nv04_crtc.c | 1126 + drivers/gpu/drm/nouveau/nv04_cursor.c | 70 drivers/gpu/drm/nouveau/nv04_display.c | 250 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fbcon.c | 291 drivers/gpu/drm/nouveau/nv04_fifo.c | 146 drivers/gpu/drm/nouveau/nv04_graph.c | 586 drivers/gpu/drm/nouveau/nv04_instmem.c | 182 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_output.c | 1193 + drivers/gpu/drm/nouveau/nv04_timer.c | 51 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 177 drivers/gpu/drm/nouveau/nv10_graph.c | 945 + drivers/gpu/drm/nouveau/nv20_graph.c | 958 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 222 drivers/gpu/drm/nouveau/nv40_graph.c | 2200 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 495 drivers/gpu/drm/nouveau/nv50_crtc.c | 812 + drivers/gpu/drm/nouveau/nv50_cursor.c | 153 drivers/gpu/drm/nouveau/nv50_dac.c | 284 drivers/gpu/drm/nouveau/nv50_display.c | 844 + drivers/gpu/drm/nouveau/nv50_display.h | 46 drivers/gpu/drm/nouveau/nv50_evo.h | 113 drivers/gpu/drm/nouveau/nv50_fbcon.c | 256 drivers/gpu/drm/nouveau/nv50_fifo.c | 475 drivers/gpu/drm/nouveau/nv50_graph.c | 432 drivers/gpu/drm/nouveau/nv50_grctx.h |22284 ++++++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 499 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 268 drivers/gpu/drm/nouveau/nvreg.h | 503 drivers/gpu/drm/ttm/ttm_bo.c | 4 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 214 75 files changed, 54525 insertions(+), 21 deletions(-) Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- drm-nouveau.patch 28 Jul 2009 11:24:16 -0000 1.37 +++ drm-nouveau.patch 28 Jul 2009 16:03:51 -0000 1.38 @@ -17505,10 +17505,10 @@ index 0000000..32a9452 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c new file mode 100644 -index 0000000..54dfe6d +index 0000000..a09ee5e --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_state.c -@@ -0,0 +1,836 @@ +@@ -0,0 +1,837 @@ +/* + * Copyright 2005 Stephane Marchesin + * Copyright 2008 Stuart Bennett @@ -17552,6 +17552,7 @@ index 0000000..54dfe6d +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nouveau_bo *nvbo = NULL; ++ uint32_t tile_flags = dev_priv->card_type == NV_50 ? 0x7000 : 0x0000; + int ret, size; + + if (dev_priv->sfb_gem) @@ -17563,7 +17564,7 @@ index 0000000..54dfe6d + size >>= 1; + + ret = nouveau_gem_new(dev, dev_priv->channel, size, 0, TTM_PL_FLAG_VRAM, -+ 0, 0x0000, false, true, &nvbo); ++ 0, tile_flags, false, true, &nvbo); + if (ret) + return ret; + Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1664 retrieving revision 1.1665 diff -u -p -r1.1664 -r1.1665 --- kernel.spec 28 Jul 2009 13:35:42 -0000 1.1664 +++ kernel.spec 28 Jul 2009 16:03:52 -0000 1.1665 @@ -1898,6 +1898,9 @@ fi # and build. %changelog +* Tue Jul 28 2009 Ben Skeggs +- drm-nouveau.patch: tile shared fb area on nv50 + * Tue Jul 28 2009 Kyle McMartin 2.6.31-0.101.rc4.git2 - 2.6.31-rc4-git2 - rebase linux-2.6-fix-usb-serial-autosuspend.diff From bskeggs at fedoraproject.org Tue Jul 28 16:04:08 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 16:04:08 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel nouveau-bicubic-2x.patch, 1.3, 1.4 nouveau-transition-hack.patch, 1.6, 1.7 Message-ID: <20090728160408.0CC8B11C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20287 Modified Files: nouveau-bicubic-2x.patch nouveau-transition-hack.patch Log Message: scanout is tiled now, fix protection errors nouveau-bicubic-2x.patch: nv30_xv_tex.c | 2 +- nv40_xv_tex.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) Index: nouveau-bicubic-2x.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-bicubic-2x.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-bicubic-2x.patch 28 Jul 2009 15:32:17 -0000 1.3 +++ nouveau-bicubic-2x.patch 28 Jul 2009 16:04:07 -0000 1.4 @@ -1,4 +1,4 @@ -From a44a045c47750b16c7e202b7a337b1b6e24ff859 Mon Sep 17 00:00:00 2001 +From d1aaf21efe356bc70d19a46cba3f22f951a4468e Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 4 May 2009 17:04:34 +1000 Subject: [PATCH 3/3] xv: only use bicubic filtering when scaling >=2x nouveau-transition-hack.patch: drmmode_display.c | 150 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 147 insertions(+), 3 deletions(-) Index: nouveau-transition-hack.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-transition-hack.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nouveau-transition-hack.patch 28 Jul 2009 15:32:18 -0000 1.6 +++ nouveau-transition-hack.patch 28 Jul 2009 16:04:07 -0000 1.7 @@ -1,17 +1,17 @@ -From 459ea50ee1a538b7203d01e071fa481f297c2416 Mon Sep 17 00:00:00 2001 +From bf1e465874dbd36b7de3493a69717b292353d648 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 30 Jun 2009 10:52:07 +1000 Subject: [PATCH 2/3] f12: transitions --- - src/drmmode_display.c | 147 ++++++++++++++++++++++++++++++++++++++++++++++++- - 1 files changed, 145 insertions(+), 2 deletions(-) + src/drmmode_display.c | 149 ++++++++++++++++++++++++++++++++++++++++++++++++- + 1 files changed, 147 insertions(+), 2 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 21ed564..901be50 100644 +index 21ed564..ae3c51d 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -172,6 +172,142 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) +@@ -172,6 +172,144 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) } static void @@ -103,11 +103,13 @@ index 21ed564..901be50 100644 + + BEGIN_RING(chan, eng2d, 0x02ac, 1); + OUT_RING (chan, 3); -+ BEGIN_RING(chan, eng2d, 0x0200, 2); ++ BEGIN_RING(chan, eng2d, 0x0200, 5); + OUT_RING (chan, depth_to_gpu(pScrn->depth)); ++ OUT_RING (chan, 0); ++ OUT_RING (chan, 0x40); + OUT_RING (chan, 1); -+ BEGIN_RING(chan, eng2d, 0x0214, 5); -+ OUT_RING (chan, pScrn->displayWidth * (pScrn->bitsPerPixel >> 3)); ++ OUT_RING (chan, 0); ++ BEGIN_RING(chan, eng2d, 0x0218, 4); + OUT_RING (chan, pScrn->virtualX); + OUT_RING (chan, pScrn->virtualY); + OUT_RELOCh(chan, dst, 0, NOUVEAU_BO_VRAM | NOUVEAU_BO_WR); @@ -154,7 +156,7 @@ index 21ed564..901be50 100644 drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, int x, int y) { -@@ -184,6 +320,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, +@@ -184,6 +322,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, if (!src_id || !dst_id) return; @@ -169,7 +171,7 @@ index 21ed564..901be50 100644 pspix = drmmode_fb_pixmap(pScrn, src_id, &w, &h); if (!pspix) return; -@@ -285,8 +429,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, +@@ -285,8 +431,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, x = 0; y = 0; } else From dwalsh at fedoraproject.org Tue Jul 28 16:06:42 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 28 Jul 2009 16:06:42 +0000 (UTC) Subject: rpms/setroubleshoot/devel setroubleshoot.spec,1.150,1.151 Message-ID: <20090728160643.03E2E11C00D4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21311 Modified Files: setroubleshoot.spec Log Message: * Mon Jul 27 2009 Dan Walsh - 2.2.17-1 - Fix handling of mountpoints that the kernel reports as "/" Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- setroubleshoot.spec 27 Jul 2009 22:09:35 -0000 1.150 +++ setroubleshoot.spec 28 Jul 2009 16:06:42 -0000 1.151 @@ -122,7 +122,7 @@ Requires: gtk2 libnotify Requires: libselinux-python >= 1.30.15-1 Requires: policycoreutils-python BuildRequires: intltool gettext python -BuildRequires: setools-devel +BuildRequires: setools-devel >= 3.3.6-3 BuildRequires: python-devel Requires(post): /sbin/chkconfig From dcbw at fedoraproject.org Tue Jul 28 16:07:28 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 16:07:28 +0000 (UTC) Subject: rpms/NetworkManager/devel NetworkManager.spec,1.277,1.278 Message-ID: <20090728160728.CC52811C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21708 Modified Files: NetworkManager.spec Log Message: fix buildrequires Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/NetworkManager.spec,v retrieving revision 1.277 retrieving revision 1.278 diff -u -p -r1.277 -r1.278 --- NetworkManager.spec 28 Jul 2009 15:35:11 -0000 1.277 +++ NetworkManager.spec 28 Jul 2009 16:07:28 -0000 1.278 @@ -70,7 +70,7 @@ BuildRequires: gtk-doc BuildRequires: libudev-devel BuildRequires: libuuid-devel BuildRequires: gnome-bluetooth-libs-devel >= 2.27.7.1-1 -BuildRequires: libgudev1 >= 143 +BuildRequires: libgudev1-devel >= 143 %description NetworkManager attempts to keep an active network connection available at all From pkgdb at fedoraproject.org Tue Jul 28 16:10:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:10:29 +0000 Subject: [pkgdb] tetex-prosper: itamarjp has requested approveacls Message-ID: <20090728161029.62DD010F8A1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tetex-prosper (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tetex-prosper From pkgdb at fedoraproject.org Tue Jul 28 16:10:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:10:32 +0000 Subject: [pkgdb] tetex-prosper: itamarjp has requested approveacls Message-ID: <20090728161032.192AD10F8B1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tetex-prosper (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tetex-prosper From pkgdb at fedoraproject.org Tue Jul 28 16:10:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:10:33 +0000 Subject: [pkgdb] tetex-prosper: itamarjp has requested approveacls Message-ID: <20090728161033.79E6E10F8B6@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on tetex-prosper (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tetex-prosper From mclasen at fedoraproject.org Tue Jul 28 16:12:26 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 16:12:26 +0000 (UTC) Subject: rpms/gnome-mag/devel gnome-mag.spec,1.66,1.67 Message-ID: <20090728161226.2489411C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-mag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23665 Modified Files: gnome-mag.spec Log Message: 0.15.8 Index: gnome-mag.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/devel/gnome-mag.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- gnome-mag.spec 25 Jul 2009 00:41:13 -0000 1.66 +++ gnome-mag.spec 28 Jul 2009 16:12:25 -0000 1.67 @@ -2,8 +2,8 @@ Summary: Screen magnifier for GNOME Name: gnome-mag -Version: 0.15.6 -Release: 2%{?dist} +Version: 0.15.8 +Release: 1%{?dist} License: LGPLv2+ Group: Desktop/Accessibility URL: http://www.gnome.org/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/gnome-mag* %changelog +* Tue Jul 28 2009 Matthias Clasen - 0.15.8-1 +- Update to 0.15.8 + * Fri Jul 24 2009 Fedora Release Engineering - 0.15.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From atkac at fedoraproject.org Tue Jul 28 16:16:43 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Tue, 28 Jul 2009 16:16:43 +0000 (UTC) Subject: rpms/swig/F-10 .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 swig.spec, 1.39, 1.40 Message-ID: <20090728161643.7E46311C00D4@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/swig/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25328 Modified Files: .cvsignore sources swig.spec Log Message: - update to 1.3.39 (#513744) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/swig/F-10/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 5 May 2008 10:40:15 -0000 1.10 +++ .cvsignore 28 Jul 2009 16:16:42 -0000 1.11 @@ -1 +1 @@ -swig-1.3.35.tar.gz +swig-1.3.39.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/swig/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 5 May 2008 10:40:15 -0000 1.10 +++ sources 28 Jul 2009 16:16:42 -0000 1.11 @@ -1 +1 @@ -9c2ca2332ebcdab55aa98518111d7cc9 swig-1.3.35.tar.gz +ac201d1b87f8659584534f9540d7ad24 swig-1.3.39.tar.gz Index: swig.spec =================================================================== RCS file: /cvs/pkgs/rpms/swig/F-10/swig.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- swig.spec 16 May 2008 08:28:16 -0000 1.39 +++ swig.spec 28 Jul 2009 16:16:43 -0000 1.40 @@ -3,8 +3,8 @@ Summary: Connects C/C++/Objective C to some high-level programming languages. Name: swig -Version: 1.3.35 -Release: 2%{?dist} +Version: 1.3.39 +Release: 1%{?dist} License: BSD Group: Development/Tools URL: http://swig.sourceforge.net/ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/swig %changelog +* Tue Jul 28 2009 Adam Tkac 1.3.39-1 +- update to 1.3.39 (#513744) + * Fri May 16 2008 Adam Tkac 1.3.35-2 - readded swig-arch.patch, will be kept downstream From mbarnes at fedoraproject.org Tue Jul 28 16:19:05 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 16:19:05 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.11, 1.116.2.12 sources, 1.116.2.15, 1.116.2.16 Message-ID: <20090728161905.7B78A11C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26345 Modified Files: Tag: private-mbarnes-kb .cvsignore sources Log Message: Fix sources. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.11 retrieving revision 1.116.2.12 diff -u -p -r1.116.2.11 -r1.116.2.12 --- .cvsignore 28 Jul 2009 15:42:57 -0000 1.116.2.11 +++ .cvsignore 28 Jul 2009 16:19:05 -0000 1.116.2.12 @@ -1 +1 @@ -evolution-kill-bonobo-2c4510e.tar.bz2 +evolution-2.27.5-kill-bonobo-2c4510e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.15 retrieving revision 1.116.2.16 diff -u -p -r1.116.2.15 -r1.116.2.16 --- sources 28 Jul 2009 15:42:57 -0000 1.116.2.15 +++ sources 28 Jul 2009 16:19:05 -0000 1.116.2.16 @@ -1 +1 @@ -26a5fd8aaf48812b2120b7d856af92ed evolution-kill-bonobo-2c4510e.tar.bz2 +26a5fd8aaf48812b2120b7d856af92ed evolution-2.27.5-kill-bonobo-2c4510e.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 16:20:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:23 +0000 Subject: [pkgdb] latex2html: itamarjp has requested approveacls Message-ID: <20090728162023.31FDF10F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on latex2html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:24 +0000 Subject: [pkgdb] latex2html: itamarjp has requested commit Message-ID: <20090728162024.99E2F10F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on latex2html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:25 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchcommits Message-ID: <20090728162025.55D8110F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on latex2html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:27 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchbugzilla Message-ID: <20090728162027.893C910F8B1@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on latex2html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:29 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchcommits Message-ID: <20090728162029.71BF010F8B8@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on latex2html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:29 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchbugzilla Message-ID: <20090728162029.E974D10F8BB@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on latex2html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:30 +0000 Subject: [pkgdb] latex2html: itamarjp has requested commit Message-ID: <20090728162031.08A1A10F8BE@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on latex2html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:33 +0000 Subject: [pkgdb] latex2html: itamarjp has requested approveacls Message-ID: <20090728162033.18B6C10F8C2@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on latex2html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:38 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchcommits Message-ID: <20090728162038.25F0A10F85A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on latex2html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:39 +0000 Subject: [pkgdb] latex2html: itamarjp has requested commit Message-ID: <20090728162039.DFBA410F8C7@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on latex2html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:40 +0000 Subject: [pkgdb] latex2html: itamarjp has requested approveacls Message-ID: <20090728162040.CCC5110F8CB@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on latex2html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From pkgdb at fedoraproject.org Tue Jul 28 16:20:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:20:40 +0000 Subject: [pkgdb] latex2html: itamarjp has requested watchbugzilla Message-ID: <20090728162041.07BE710F8CD@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on latex2html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latex2html From mclasen at fedoraproject.org Tue Jul 28 16:22:10 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 16:22:10 +0000 (UTC) Subject: rpms/vinagre/devel .cvsignore, 1.25, 1.26 sources, 1.25, 1.26 vinagre.spec, 1.45, 1.46 Message-ID: <20090728162210.6541F11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vinagre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13557 Modified Files: .cvsignore sources vinagre.spec Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 13 Apr 2009 17:30:06 -0000 1.25 +++ .cvsignore 28 Jul 2009 16:22:09 -0000 1.26 @@ -1 +1 @@ -vinagre-2.26.1.tar.bz2 +vinagre-2.27.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 13 Apr 2009 17:30:06 -0000 1.25 +++ sources 28 Jul 2009 16:22:10 -0000 1.26 @@ -1 +1 @@ -1ff7756444f85320565c606c9c8aa5d5 vinagre-2.26.1.tar.bz2 +3ff63eda28860133467cba92f797d94e vinagre-2.27.5.tar.bz2 Index: vinagre.spec =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/vinagre.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- vinagre.spec 27 Jul 2009 06:53:58 -0000 1.45 +++ vinagre.spec 28 Jul 2009 16:22:10 -0000 1.46 @@ -1,12 +1,12 @@ Name: vinagre -Version: 2.26.1 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: VNC client for GNOME Group: Applications/System License: GPLv2+ URL: http://projects.gnome.org/vinagre/ -Source0: http://download.gnome.org/sources/vinagre/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/vinagre/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -122,6 +122,9 @@ fi %doc README NEWS COPYING AUTHORS %changelog +* Tue Jul 28 2009 Matthisa Clasen - 2.27.5-1 +- Update to 2.27.5 + * Sun Jul 26 2009 Fedora Release Engineering - 2.26.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Tue Jul 28 16:23:07 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 16:23:07 +0000 (UTC) Subject: rpms/gnome-mag/devel .cvsignore,1.36,1.37 sources,1.37,1.38 Message-ID: <20090728162307.67E6D11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-mag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27965 Modified Files: .cvsignore sources Log Message: new sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 13 Apr 2009 03:13:56 -0000 1.36 +++ .cvsignore 28 Jul 2009 16:23:07 -0000 1.37 @@ -1 +1 @@ -gnome-mag-0.15.6.tar.bz2 +gnome-mag-0.15.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 13 Apr 2009 03:13:57 -0000 1.37 +++ sources 28 Jul 2009 16:23:07 -0000 1.38 @@ -1 +1 @@ -6f05fc7aa02277c60431a280ba632120 gnome-mag-0.15.6.tar.bz2 +654232f153051e2052d96007b8bdd273 gnome-mag-0.15.8.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 16:31:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:23 +0000 Subject: [pkgdb] spandsp: itamarjp has requested approveacls Message-ID: <20090728163123.7D7AD10F891@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on spandsp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:30 +0000 Subject: [pkgdb] spandsp: itamarjp has requested commit Message-ID: <20090728163130.B0BED10F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on spandsp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:31 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchcommits Message-ID: <20090728163131.9519010F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on spandsp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:32 +0000 Subject: [pkgdb] spandsp: itamarjp has requested approveacls Message-ID: <20090728163132.AAB4510F8B0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on spandsp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:35 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchbugzilla Message-ID: <20090728163135.A201710F897@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on spandsp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:33 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchbugzilla Message-ID: <20090728163133.C776010F8B4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on spandsp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:35 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchcommits Message-ID: <20090728163135.D893310F8B9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on spandsp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:36 +0000 Subject: [pkgdb] spandsp: itamarjp has requested commit Message-ID: <20090728163136.C036B10F8BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on spandsp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:37 +0000 Subject: [pkgdb] spandsp: itamarjp has requested approveacls Message-ID: <20090728163137.E57B510F8BF@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on spandsp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:45 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchcommits Message-ID: <20090728163145.ACCC910F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on spandsp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:46 +0000 Subject: [pkgdb] spandsp: itamarjp has requested commit Message-ID: <20090728163146.1FE3C10F8C2@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on spandsp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:48 +0000 Subject: [pkgdb] spandsp: itamarjp has requested approveacls Message-ID: <20090728163148.6CAE010F8C5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on spandsp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 16:31:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:31:49 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchbugzilla Message-ID: <20090728163149.52EFE10F8C9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on spandsp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From caolanm at fedoraproject.org Tue Jul 28 16:32:49 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 28 Jul 2009 16:32:49 +0000 (UTC) Subject: rpms/icu/devel icu.icu7039.badextract.patch,1.1,1.2 Message-ID: <20090728163250.01CD911C00D4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv492 Modified Files: icu.icu7039.badextract.patch Log Message: icu#7039 fix broken use of extract to get tests working icu.icu7039.badextract.patch: common/unicode/unistr.h | 2 +- test/intltest/dadrcal.cpp | 8 ++++---- test/intltest/dadrcoll.cpp | 2 +- test/intltest/dadrfmt.cpp | 4 ++-- test/intltest/loctest.cpp | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) Index: icu.icu7039.badextract.patch =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.icu7039.badextract.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- icu.icu7039.badextract.patch 28 Jul 2009 15:58:09 -0000 1.1 +++ icu.icu7039.badextract.patch 28 Jul 2009 16:32:49 -0000 1.2 @@ -6,7 +6,7 @@ diff -ru icu.orig/source/common/unicode/ { // This dstSize value will be checked explicitly - return extract(start, _length, dst, dst!=0 ? 0xffffffff : 0, codepage); -+ return extract(start, _length, dst, dst!=0 ? ((dst >= ((size_t)-1) - UINT32_MAX) ? (((char*)UINT32_MAX) - dst) : UINT32_MAX) : 0, codepage); ++ return extract(start, _length, dst, dst!=0 ? (((size_t)dst >= ((size_t)-1) - UINT32_MAX) ? (((char*)UINT32_MAX) - dst) : UINT32_MAX) : 0, codepage); } #endif From pkgdb at fedoraproject.org Tue Jul 28 16:33:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:07 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchbugzilla Message-ID: <20090728163307.DB92510F8C4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:02 +0000 Subject: [pkgdb] asterisk: itamarjp has requested commit Message-ID: <20090728163302.B61CF10F89F@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:03 +0000 Subject: [pkgdb] asterisk: itamarjp has requested approveacls Message-ID: <20090728163303.628EE10F8C0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:08 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchcommits Message-ID: <20090728163308.0BCE410F8C7@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:11 +0000 Subject: [pkgdb] asterisk: itamarjp has requested approveacls Message-ID: <20090728163311.9D64310F8B0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:09 +0000 Subject: [pkgdb] asterisk: itamarjp has requested commit Message-ID: <20090728163310.0073910F8C9@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:14 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchbugzilla Message-ID: <20090728163314.BBC4810F8CB@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:15 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchcommits Message-ID: <20090728163315.2176610F8CE@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:16 +0000 Subject: [pkgdb] asterisk: itamarjp has requested approveacls Message-ID: <20090728163316.D13EA10F8D1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:18 +0000 Subject: [pkgdb] asterisk: itamarjp has requested commit Message-ID: <20090728163318.3C65710F8D4@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:39 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchbugzilla Message-ID: <20090728163339.7FE2E10F8B5@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk-sounds-core (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:39 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchcommits Message-ID: <20090728163339.AB5E910F8B8@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk-sounds-core (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:41 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested approveacls Message-ID: <20090728163341.4CBD610F8BB@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk-sounds-core (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:43 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchbugzilla Message-ID: <20090728163343.B061410F8BD@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk-sounds-core (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:44 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested commit Message-ID: <20090728163344.A3ABE10F8BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk-sounds-core (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:46 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested approveacls Message-ID: <20090728163346.950CE10F8DC@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk-sounds-core (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:47 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchcommits Message-ID: <20090728163347.60E7810F8E0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk-sounds-core (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:55 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchbugzilla Message-ID: <20090728163355.63F7910F8C0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk-sounds-core (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:48 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested commit Message-ID: <20090728163348.A7F5410F8E2@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk-sounds-core (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:55 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchcommits Message-ID: <20090728163355.A6B7E10F8E5@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk-sounds-core (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:57 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested commit Message-ID: <20090728163357.5A06A10F8E7@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk-sounds-core (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:58 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested approveacls Message-ID: <20090728163358.9247210F8EA@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk-sounds-core (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:33:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:59 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested commit Message-ID: <20090728163359.BC40F10F8EE@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on asterisk-sounds-core (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:34:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:00 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchcommits Message-ID: <20090728163400.5B2BB10F8F1@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk-sounds-core (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:02 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested approveacls Message-ID: <20090728163402.A926910F8F9@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on asterisk-sounds-core (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:02 +0000 Subject: [pkgdb] asterisk-sounds-core: itamarjp has requested watchbugzilla Message-ID: <20090728163402.C075A10F8FC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk-sounds-core (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 16:34:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:39 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchcommits Message-ID: <20090728163440.1810510F8B0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on dahdi-tools (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:41 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested commit Message-ID: <20090728163441.2CFC210F8CA@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on dahdi-tools (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:41 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested approveacls Message-ID: <20090728163441.F2D5C10F8CC@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on dahdi-tools (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:43 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchbugzilla Message-ID: <20090728163443.7F63610F8CF@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on dahdi-tools (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:48 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchbugzilla Message-ID: <20090728163448.48E7910F901@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on dahdi-tools (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:48 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchcommits Message-ID: <20090728163448.7A79A10F904@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on dahdi-tools (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:51 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested approveacls Message-ID: <20090728163451.20F7510F8D5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on dahdi-tools (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:49 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested commit Message-ID: <20090728163449.3914C10F907@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on dahdi-tools (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:54 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchcommits Message-ID: <20090728163454.152E610F8D3@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on dahdi-tools (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:54 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested commit Message-ID: <20090728163454.ECF7C10F90B@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on dahdi-tools (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:56 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested approveacls Message-ID: <20090728163456.0DD7E10F90E@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on dahdi-tools (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:35:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:00 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchcommits Message-ID: <20090728163500.1A3A810F8D8@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on dahdi-tools (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:34:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:34:57 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchbugzilla Message-ID: <20090728163457.A8C3F10F911@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on dahdi-tools (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:35:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:01 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested commit Message-ID: <20090728163501.4BFCA10F918@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on dahdi-tools (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:35:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:00 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested watchbugzilla Message-ID: <20090728163500.A59B710F915@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on dahdi-tools (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:35:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:03 +0000 Subject: [pkgdb] dahdi-tools: itamarjp has requested approveacls Message-ID: <20090728163503.8C18D10F89C@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on dahdi-tools (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 16:35:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:20 +0000 Subject: [pkgdb] gsm: itamarjp has requested approveacls Message-ID: <20090728163520.76F3B10F8B5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on gsm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:32 +0000 Subject: [pkgdb] gsm: itamarjp has requested approveacls Message-ID: <20090728163532.4DF3D10F8B9@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on gsm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:33 +0000 Subject: [pkgdb] gsm: itamarjp has requested approveacls Message-ID: <20090728163534.0456C10F8D9@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on gsm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:41 +0000 Subject: [pkgdb] gsm: itamarjp has requested watchbugzilla Message-ID: <20090728163541.3326210F8BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on gsm (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:42 +0000 Subject: [pkgdb] gsm: itamarjp has requested commit Message-ID: <20090728163542.134E010F91E@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on gsm (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:41 +0000 Subject: [pkgdb] gsm: itamarjp has requested watchcommits Message-ID: <20090728163541.7FAE710F8DB@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on gsm (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:44 +0000 Subject: [pkgdb] gsm: itamarjp has requested approveacls Message-ID: <20090728163544.1669510F921@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on gsm (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:51 +0000 Subject: [pkgdb] gsm: itamarjp has requested watchbugzilla Message-ID: <20090728163551.92D7D10F8DF@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on gsm (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:53 +0000 Subject: [pkgdb] gsm: itamarjp has requested watchcommits Message-ID: <20090728163553.5D4D110F925@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on gsm (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:55 +0000 Subject: [pkgdb] gsm: itamarjp has requested approveacls Message-ID: <20090728163555.9C08810F929@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on gsm (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:35:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:35:57 +0000 Subject: [pkgdb] gsm: itamarjp has requested commit Message-ID: <20090728163557.1C29710F92B@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on gsm (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gsm From pkgdb at fedoraproject.org Tue Jul 28 16:36:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:09 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchbugzilla Message-ID: <20090728163609.D5B6C10F8E3@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on jrtplib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:09 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchcommits Message-ID: <20090728163609.E0D4410F930@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on jrtplib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:11 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested commit Message-ID: <20090728163611.8AC3310F8E5@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on jrtplib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:12 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested approveacls Message-ID: <20090728163612.21C7510F933@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on jrtplib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:15 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchbugzilla Message-ID: <20090728163616.0386110F936@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on jrtplib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:17 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchcommits Message-ID: <20090728163617.7E5E010F939@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on jrtplib (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:18 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchcommits Message-ID: <20090728163618.6208910F93C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on jrtplib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:20 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested watchbugzilla Message-ID: <20090728163620.658E110F93F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on jrtplib (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:20 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested approveacls Message-ID: <20090728163620.B683D10F942@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on jrtplib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:21 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested approveacls Message-ID: <20090728163621.5BAD210F945@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on jrtplib (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:22 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested commit Message-ID: <20090728163622.2763F10F948@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on jrtplib (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:23 +0000 Subject: [pkgdb] jrtplib: itamarjp has requested commit Message-ID: <20090728163623.1EE4710F8EA@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on jrtplib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 16:36:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:34 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchcommits Message-ID: <20090728163634.78C7010F8ED@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libpri (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:34 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchbugzilla Message-ID: <20090728163634.89EF510F949@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libpri (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:34 +0000 Subject: [pkgdb] libpri: itamarjp has requested commit Message-ID: <20090728163634.F367610F94C@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libpri (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:43 +0000 Subject: [pkgdb] libpri: itamarjp has requested approveacls Message-ID: <20090728163643.C0B4210F8F1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libpri (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:37 +0000 Subject: [pkgdb] libpri: itamarjp has requested approveacls Message-ID: <20090728163637.2ED3110F94F@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libpri (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:45 +0000 Subject: [pkgdb] libpri: itamarjp has requested commit Message-ID: <20090728163645.A526A10F951@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libpri (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:46 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchcommits Message-ID: <20090728163646.B4E0B10F954@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libpri (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:47 +0000 Subject: [pkgdb] libpri: itamarjp has requested approveacls Message-ID: <20090728163648.1186C10F957@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libpri (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:48 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchbugzilla Message-ID: <20090728163648.7556910F95A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libpri (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:50 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchbugzilla Message-ID: <20090728163650.623FE10F95C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libpri (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:50 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchcommits Message-ID: <20090728163650.A798D10F95F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libpri (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:52 +0000 Subject: [pkgdb] libpri: itamarjp has requested commit Message-ID: <20090728163653.0385C10F961@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libpri (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:57 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchbugzilla Message-ID: <20090728163657.A84A810F8FC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libpri (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:59 +0000 Subject: [pkgdb] libpri: itamarjp has requested commit Message-ID: <20090728163659.6516410F968@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libpri (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:36:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:36:58 +0000 Subject: [pkgdb] libpri: itamarjp has requested watchcommits Message-ID: <20090728163658.89D1410F965@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libpri (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:37:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:10 +0000 Subject: [pkgdb] libss7: itamarjp has requested approveacls Message-ID: <20090728163710.9D83F10F8C5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libss7 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:11 +0000 Subject: [pkgdb] libss7: itamarjp has requested commit Message-ID: <20090728163711.06AAB10F900@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libss7 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:11 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchcommits Message-ID: <20090728163711.D89BC10F96F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libss7 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:13 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchbugzilla Message-ID: <20090728163713.54D1A10F971@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libss7 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:16 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchcommits Message-ID: <20090728163716.36F2810F8C7@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libss7 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:17 +0000 Subject: [pkgdb] libss7: itamarjp has requested commit Message-ID: <20090728163717.23F0A10F976@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libss7 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:19 +0000 Subject: [pkgdb] libss7: itamarjp has requested approveacls Message-ID: <20090728163719.D36F810F975@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libss7 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:21 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchbugzilla Message-ID: <20090728163721.8B71F10F97A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libss7 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:25 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchbugzilla Message-ID: <20090728163725.58DCE10F982@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libss7 (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:25 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchcommits Message-ID: <20090728163725.604D610F984@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libss7 (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:27 +0000 Subject: [pkgdb] libss7: itamarjp has requested approveacls Message-ID: <20090728163727.8AA0B10F987@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libss7 (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:00 +0000 Subject: [pkgdb] libpri: itamarjp has requested approveacls Message-ID: <20090728163700.510C710F96B@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libpri (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 16:37:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:28 +0000 Subject: [pkgdb] libss7: itamarjp has requested commit Message-ID: <20090728163728.4246510F988@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libss7 (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:32 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchbugzilla Message-ID: <20090728163732.6627110F98B@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on libss7 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:32 +0000 Subject: [pkgdb] libss7: itamarjp has requested watchcommits Message-ID: <20090728163732.BE69110F98F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on libss7 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:35 +0000 Subject: [pkgdb] libss7: itamarjp has requested approveacls Message-ID: <20090728163736.0362910F8CB@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on libss7 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:33 +0000 Subject: [pkgdb] libss7: itamarjp has requested commit Message-ID: <20090728163733.B3B8810F990@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on libss7 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 16:37:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:42 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchbugzilla Message-ID: <20090728163742.E1E5A10F99A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on mISDN (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:43 +0000 Subject: [pkgdb] mISDN: itamarjp has requested commit Message-ID: <20090728163743.B188110F99C@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on mISDN (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:45 +0000 Subject: [pkgdb] mISDN: itamarjp has requested approveacls Message-ID: <20090728163745.E7AA710F9A0@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on mISDN (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:47 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchcommits Message-ID: <20090728163747.7A65310F8D0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on mISDN (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:54 +0000 Subject: [pkgdb] mISDN: itamarjp has requested approveacls Message-ID: <20090728163754.1BA1010F9A7@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on mISDN (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:54 +0000 Subject: [pkgdb] mISDN: itamarjp has requested approveacls Message-ID: <20090728163754.9A76410F9AA@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on mISDN (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:55 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchbugzilla Message-ID: <20090728163755.F2C2710F9AC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on mISDN (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:56 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchbugzilla Message-ID: <20090728163757.0B4DC10F9AF@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on mISDN (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:57 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchcommits Message-ID: <20090728163757.7BC1110F9B2@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on mISDN (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:00 +0000 Subject: [pkgdb] mISDN: itamarjp has requested commit Message-ID: <20090728163800.BADD210F905@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on mISDN (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:37:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:37:58 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchcommits Message-ID: <20090728163758.B1CCD10F9B5@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on mISDN (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:01 +0000 Subject: [pkgdb] mISDN: itamarjp has requested commit Message-ID: <20090728163802.1C3EB10F9B8@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on mISDN (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:07 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchbugzilla Message-ID: <20090728163807.C759F10F8D5@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on mISDN (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:08 +0000 Subject: [pkgdb] mISDN: itamarjp has requested watchcommits Message-ID: <20090728163808.13C4310F908@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on mISDN (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:09 +0000 Subject: [pkgdb] mISDN: itamarjp has requested commit Message-ID: <20090728163809.76EEB10F9BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on mISDN (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:38:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:38:10 +0000 Subject: [pkgdb] mISDN: itamarjp has requested approveacls Message-ID: <20090728163810.5E6CE10F9BF@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on mISDN (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 16:39:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:06 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchcommits Message-ID: <20090728163906.EE4FC10F910@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zaptel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:06 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchbugzilla Message-ID: <20090728163906.C3D0F10F89C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zaptel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:08 +0000 Subject: [pkgdb] zaptel: itamarjp has requested commit Message-ID: <20090728163908.829E810F913@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zaptel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:09 +0000 Subject: [pkgdb] zaptel: itamarjp has requested approveacls Message-ID: <20090728163909.704FF10F917@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zaptel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:13 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchbugzilla Message-ID: <20090728163914.0424410F89F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zaptel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:14 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchcommits Message-ID: <20090728163914.2EBAF10F8B8@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zaptel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:14 +0000 Subject: [pkgdb] zaptel: itamarjp has requested commit Message-ID: <20090728163914.D124010F9CA@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zaptel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:19 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchcommits Message-ID: <20090728163920.0222D10F9D0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zaptel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:16 +0000 Subject: [pkgdb] zaptel: itamarjp has requested approveacls Message-ID: <20090728163916.D11CD10F9CD@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zaptel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:20 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchbugzilla Message-ID: <20090728163920.1D1C410F9D3@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zaptel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:22 +0000 Subject: [pkgdb] zaptel: itamarjp has requested approveacls Message-ID: <20090728163922.49C6A10F9D7@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zaptel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:22 +0000 Subject: [pkgdb] zaptel: itamarjp has requested commit Message-ID: <20090728163922.B750D10F9DA@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zaptel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:26 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchbugzilla Message-ID: <20090728163926.EBB4B10F8BA@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zaptel (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:27 +0000 Subject: [pkgdb] zaptel: itamarjp has requested watchcommits Message-ID: <20090728163927.4BF1210F8D9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zaptel (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:27 +0000 Subject: [pkgdb] zaptel: itamarjp has requested commit Message-ID: <20090728163927.D40C910F9E1@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zaptel (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:28 +0000 Subject: [pkgdb] zaptel: itamarjp has requested approveacls Message-ID: <20090728163928.729F210F9E4@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zaptel (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 16:39:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:41 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchbugzilla Message-ID: <20090728163941.6045A10F8BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofsip-cli (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:42 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested commit Message-ID: <20090728163942.1BF0410F91B@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofsip-cli (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:43 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested approveacls Message-ID: <20090728163943.D7E3F10F9E9@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofsip-cli (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:45 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchcommits Message-ID: <20090728163945.3FFF110F9EC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofsip-cli (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:53 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchbugzilla Message-ID: <20090728163953.C8A9D10F91C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofsip-cli (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:53 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchcommits Message-ID: <20090728163954.06ECB10F91F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofsip-cli (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:54 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested commit Message-ID: <20090728163954.E6CCA10F9F0@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofsip-cli (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:56 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested approveacls Message-ID: <20090728163956.3895810F9F3@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofsip-cli (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:58 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchbugzilla Message-ID: <20090728163958.73FBF10F921@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofsip-cli (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:58 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested watchcommits Message-ID: <20090728163958.8841510F9F7@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofsip-cli (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:40:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:00 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested approveacls Message-ID: <20090728164001.0F07B10F9F9@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofsip-cli (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:39:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:39:58 +0000 Subject: [pkgdb] sofsip-cli: itamarjp has requested commit Message-ID: <20090728163959.0556F10F8DC@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofsip-cli (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 16:40:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:15 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchbugzilla Message-ID: <20090728164015.423C210F924@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofia-sip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:16 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested commit Message-ID: <20090728164016.AC59C10F9FF@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofia-sip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:18 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested approveacls Message-ID: <20090728164018.E7A2710FA09@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofia-sip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:20 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchcommits Message-ID: <20090728164020.2FAB110FA0C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofia-sip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:27 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchcommits Message-ID: <20090728164027.C469810F927@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofia-sip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:28 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchbugzilla Message-ID: <20090728164028.4563B10FA0F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofia-sip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:29 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested commit Message-ID: <20090728164029.EDD7C10FA15@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofia-sip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:29 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested commit Message-ID: <20090728164029.450A710FA12@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sofia-sip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:30 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested approveacls Message-ID: <20090728164030.A1E7610FA18@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofia-sip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:31 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested approveacls Message-ID: <20090728164032.05B1A10FA1A@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sofia-sip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:32 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchcommits Message-ID: <20090728164032.9C66210FA1C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sofia-sip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:34 +0000 Subject: [pkgdb] sofia-sip: itamarjp has requested watchbugzilla Message-ID: <20090728164034.61E1510F92C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sofia-sip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 16:40:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:44 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchbugzilla Message-ID: <20090728164044.821EB10FA1E@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:40:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:45 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested commit Message-ID: <20090728164045.574D110FA25@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:40:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:45 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchcommits Message-ID: <20090728164045.5A4E010FA27@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:40:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:52 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested approveacls Message-ID: <20090728164052.C6E1710FA29@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:40:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:40:59 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchcommits Message-ID: <20090728164059.A3A6510F92F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:00 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchbugzilla Message-ID: <20090728164100.5B17810FA2C@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:00 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested commit Message-ID: <20090728164100.65CA410FA30@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:02 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested approveacls Message-ID: <20090728164102.4BCAE10FA35@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:05 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchcommits Message-ID: <20090728164105.9150E10FA38@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:06 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchbugzilla Message-ID: <20090728164106.B43A710F933@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:06 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested commit Message-ID: <20090728164107.0E25F10FA3D@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:07 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested approveacls Message-ID: <20090728164107.9B6B510FA41@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:13 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchbugzilla Message-ID: <20090728164113.A7D5F10FA43@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:15 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested commit Message-ID: <20090728164115.58E1310FA47@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:17 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested approveacls Message-ID: <20090728164118.0582610FA4A@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:19 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchcommits Message-ID: <20090728164119.2DAE310FA4D@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:24 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchbugzilla Message-ID: <20090728164124.CDB5D10FA4F@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:25 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested commit Message-ID: <20090728164125.CF25310FA56@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:29 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested approveacls Message-ID: <20090728164129.257B710F93D@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 16:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:41:24 +0000 Subject: [pkgdb] rtpproxy: itamarjp has requested watchcommits Message-ID: <20090728164125.0B13110FA53@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From mbarnes at fedoraproject.org Tue Jul 28 16:44:13 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 16:44:13 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.406,1.407 Message-ID: <20090728164413.3B10B11C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5976 Modified Files: evolution.spec Log Message: * Tue Jul 28 2009 Matthew Barnes - 2.27.5-2.fc12 - Move libeconduit.so into the conduits subpackage to see if that untangles us from gnome-pilot. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.406 retrieving revision 1.407 diff -u -p -r1.406 -r1.407 --- evolution.spec 27 Jul 2009 16:13:14 -0000 1.406 +++ evolution.spec 28 Jul 2009 16:44:13 -0000 1.407 @@ -43,7 +43,7 @@ Name: evolution Version: 2.27.5 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -124,11 +124,11 @@ BuildRequires: openssl-devel BuildRequires: gstreamer-devel %endif -%if %{ldap_support} +%if %{ldap_support} BuildRequires: openldap-devel >= 2.0.11 %endif -%if %{build_conduits} +%if %{build_conduits} BuildRequires: gnome-pilot-devel >= %{gnome_pilot_version} %endif @@ -465,7 +465,6 @@ rm -rf $RPM_BUILD_ROOT # Shared libraries: %{_libdir}/evolution/%{evo_major}/libeabutil.so.* -%{_libdir}/evolution/%{evo_major}/libeconduit.so.* %{_libdir}/evolution/%{evo_major}/libecontacteditor.so.* %{_libdir}/evolution/%{evo_major}/libecontactlisteditor.so.* %{_libdir}/evolution/%{evo_major}/libefilterbar.so.* @@ -658,6 +657,7 @@ rm -rf $RPM_BUILD_ROOT %files conduits %defattr(-, root, root) %dir %{_libdir}/evolution/%{evo_major}/conduits +%{_libdir}/evolution/%{evo_major}/libeconduit.so.* %{_libdir}/evolution/%{evo_major}/conduits/libeaddress_conduit.so %{_libdir}/evolution/%{evo_major}/conduits/libecalendar_common_conduit.so %{_libdir}/evolution/%{evo_major}/conduits/libecalendar_conduit.so @@ -693,6 +693,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 28 2009 Matthew Barnes - 2.27.5-2.fc12 +- Move libeconduit.so into the conduits subpackage to see if that + untangles us from gnome-pilot. + * Mon Jul 27 2009 Milan Crha - 2.27.5-1.fc12 - Update to 2.27.5 - Remove pst import plugin patch (fixed upstream). From mtasaka at fedoraproject.org Tue Jul 28 16:44:43 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 16:44:43 +0000 (UTC) Subject: rpms/mecab/devel mecab.spec,1.24,1.25 Message-ID: <20090728164443.F01BC11C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6360 Modified Files: mecab.spec Log Message: Enable tests on ppc{,64} again, perhaps hangs were due to glibc bug 513945 Index: mecab.spec =================================================================== RCS file: /cvs/extras/rpms/mecab/devel/mecab.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mecab.spec 25 Jul 2009 11:13:02 -0000 1.24 +++ mecab.spec 28 Jul 2009 16:44:43 -0000 1.25 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define fedorarel 4 +%define fedorarel 5 # Note: # mecab dictionary requires mecab-devel to rebuild it, @@ -81,12 +81,6 @@ find . -name \*.cpp -print0 | xargs -0 % %{__mkdir} -p $RPM_BUILD_ROOT%{_libdir}/mecab/dic/ %check -# Test hangs, need check later -%ifarch ppc ppc64 -echo "Test disabled, please check later!!" -exit 0 -%endif - # here enable rpath export LD_LIBRARY_PATH=$(pwd)/src/.libs cd tests @@ -121,6 +115,9 @@ cd .. %{_includedir}/%{name}.h %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 0.98-0.5.pre3 +- Enable tests on ppc{,64} again + * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.4.pre3 - Kill tests on ppc, ppc64 for now as tests hang From mbarnes at fedoraproject.org Tue Jul 28 16:44:55 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 28 Jul 2009 16:44:55 +0000 (UTC) Subject: rpms/evolution/F-11 evolution.spec,1.384,1.385 Message-ID: <20090728164455.49EB111C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6413 Modified Files: evolution.spec Log Message: * Tue Jul 28 2009 Matthew Barnes - 2.26.3-3.fc11 - Move libeconduit.so into the conduits subpackage to see if that untangles us from gnome-pilot. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/F-11/evolution.spec,v retrieving revision 1.384 retrieving revision 1.385 diff -u -p -r1.384 -r1.385 --- evolution.spec 10 Jul 2009 14:56:41 -0000 1.384 +++ evolution.spec 28 Jul 2009 16:44:55 -0000 1.385 @@ -45,7 +45,7 @@ Name: evolution Version: 2.26.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -465,7 +465,6 @@ rm -rf $RPM_BUILD_ROOT # Shared libraries: %{_libdir}/evolution/%{evo_major}/libeabutil.so.* -%{_libdir}/evolution/%{evo_major}/libeconduit.so.* %{_libdir}/evolution/%{evo_major}/libecontacteditor.so.* %{_libdir}/evolution/%{evo_major}/libecontactlisteditor.so.* %{_libdir}/evolution/%{evo_major}/libefilterbar.so.* @@ -659,6 +658,7 @@ rm -rf $RPM_BUILD_ROOT %files conduits %defattr(-, root, root) %dir %{_libdir}/evolution/%{evo_major}/conduits +%{_libdir}/evolution/%{evo_major}/libeconduit.so.* %{_libdir}/evolution/%{evo_major}/conduits/libeaddress_conduit.so %{_libdir}/evolution/%{evo_major}/conduits/libecalendar_common_conduit.so %{_libdir}/evolution/%{evo_major}/conduits/libecalendar_conduit.so @@ -689,6 +689,10 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Tue Jul 28 2009 Matthew Barnes - 2.26.3-3.fc11 +- Move libeconduit.so into the conduits subpackage to see if that + untangles us from gnome-pilot. + * Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 - Drop libpst requirement until its API stablizes. From pkgdb at fedoraproject.org Tue Jul 28 16:48:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:48:16 +0000 Subject: [pkgdb] freefem++: itamarjp has requested approveacls Message-ID: <20090728164816.3295610F906@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on freefem++ (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freefem++ From pkgdb at fedoraproject.org Tue Jul 28 16:48:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:48:19 +0000 Subject: [pkgdb] freefem++: itamarjp has requested approveacls Message-ID: <20090728164819.6F6CB10F96F@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on freefem++ (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freefem++ From pkgdb at fedoraproject.org Tue Jul 28 16:48:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:48:19 +0000 Subject: [pkgdb] freefem++: itamarjp has requested approveacls Message-ID: <20090728164819.CA51910F963@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on freefem++ (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freefem++ From nsantos at fedoraproject.org Tue Jul 28 16:48:38 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Tue, 28 Jul 2009 16:48:38 +0000 (UTC) Subject: rpms/ruby-qpid/devel ruby-qpid.spec,1.17,1.18 Message-ID: <20090728164838.83D8211C00D4@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8244 Modified Files: ruby-qpid.spec Log Message: use version of amqp already in rawhide Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/ruby-qpid.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ruby-qpid.spec 28 Jul 2009 14:17:33 -0000 1.17 +++ ruby-qpid.spec 28 Jul 2009 16:48:38 -0000 1.18 @@ -22,12 +22,12 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: ruby BuildRequires: ruby-devel BuildRequires: rubygem-rake -BuildRequires: amqp >= 1.0.791584 +BuildRequires: amqp >= 1.0.790661 BuildRequires: cyrus-sasl-devel Requires: ruby Requires: ruby(abi) = 1.8 -Requires: amqp >= 1.0.791584 +Requires: amqp >= 1.0.790661 Requires: cyrus-sasl Provides: ruby(qpid) = %{version} From atkac at fedoraproject.org Tue Jul 28 16:49:41 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Tue, 28 Jul 2009 16:49:41 +0000 (UTC) Subject: rpms/swig/F-10 swig.spec,1.40,1.41 Message-ID: <20090728164941.D9E3111C00D4@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/swig/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8724 Modified Files: swig.spec Log Message: - own ccache-swig.1 manual page Index: swig.spec =================================================================== RCS file: /cvs/pkgs/rpms/swig/F-10/swig.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- swig.spec 28 Jul 2009 16:16:43 -0000 1.40 +++ swig.spec 28 Jul 2009 16:49:41 -0000 1.41 @@ -63,6 +63,7 @@ rm -rf $RPM_BUILD_ROOT %doc Doc/* %{_bindir}/* %{_datadir}/swig +%{_mandir}/man1/ccache-swig.1* %changelog * Tue Jul 28 2009 Adam Tkac 1.3.39-1 From pkgdb at fedoraproject.org Tue Jul 28 16:33:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:01 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchcommits Message-ID: <20090728163301.35BDA10F8B9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 16:33:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 16:33:01 +0000 Subject: [pkgdb] asterisk: itamarjp has requested watchbugzilla Message-ID: <20090728163301.58FB510F8BD@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on asterisk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From twaugh at fedoraproject.org Tue Jul 28 16:58:02 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 16:58:02 +0000 (UTC) Subject: rpms/cups/F-11 cups-socket-snmp.patch, NONE, 1.1 cups.spec, 1.490, 1.491 Message-ID: <20090728165802.7436611C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12999 Modified Files: cups.spec Added Files: cups-socket-snmp.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 - Temporarily added snmp option to socket backend for debugging purposes. cups-socket-snmp.patch: socket.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) --- NEW FILE cups-socket-snmp.patch --- diff -up cups-1.4rc1/backend/socket.c.socket-snmp cups-1.4rc1/backend/socket.c --- cups-1.4rc1/backend/socket.c.socket-snmp 2009-03-03 20:29:23.000000000 +0000 +++ cups-1.4rc1/backend/socket.c 2009-07-28 17:50:02.770752676 +0100 @@ -78,6 +78,7 @@ main(int argc, /* I - Number of comm int recoverable; /* Recoverable error shown? */ int contimeout; /* Connection timeout */ int waiteof; /* Wait for end-of-file? */ + int use_snmp; /* Whether to use SNMP */ int port; /* Port number */ char portname[255]; /* Port name */ int delay; /* Delay for retries... */ @@ -182,6 +183,7 @@ main(int argc, /* I - Number of comm waiteof = 1; contimeout = 7 * 24 * 60 * 60; + use_snmp = 1; if ((options = strchr(resource, '?')) != NULL) { @@ -249,6 +251,15 @@ main(int argc, /* I - Number of comm if (atoi(value) > 0) contimeout = atoi(value); } + else if (!strcasecmp(name, "snmp")) + { + /* + * Set whether SNMP is allowed... + */ + + use_snmp = (!value[0] || !strcasecmp(value, "on") || + !strcasecmp(value, "yes") || !strcasecmp(value, "true")); + } } } @@ -373,13 +384,16 @@ main(int argc, /* I - Number of comm * See if the printer supports SNMP... */ - if ((snmp_fd = _cupsSNMPOpen(addr->addr.addr.sa_family)) >= 0) + if (use_snmp && (snmp_fd = _cupsSNMPOpen(addr->addr.addr.sa_family)) >= 0) { have_supplies = !backendSNMPSupplies(snmp_fd, &(addr->addr), &start_count, NULL); } else + { have_supplies = start_count = 0; + snmp_fd = -1; + } /* * Print everything... Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.490 retrieving revision 1.491 diff -u -p -r1.490 -r1.491 --- cups.spec 28 Jul 2009 12:21:44 -0000 1.490 +++ cups.spec 28 Jul 2009 16:58:02 -0000 1.491 @@ -58,7 +58,8 @@ Patch31: cups-str3254.patch Patch32: cups-str3253.patch Patch33: cups-str3266.patch Patch34: cups-str3262.patch -Patch35: cups-avahi.patch +Patch35: cups-socket-snmp.patch +Patch36: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -214,7 +215,8 @@ module. %patch32 -p1 -b .str3253 %patch33 -p1 -b .str3266 %patch34 -p1 -b .str3262 -#%patch35 -p1 -b .avahi +%patch35 -p1 -b .socket-snmp +#%patch36 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -508,6 +510,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 +- Temporarily added snmp option to socket backend for debugging purposes. - Prevent ipp backend looping with bad IPP devices (bug #476424, STR #3262). - Fixed Device ID reporting in the usb backend (STR #3266). From dcbw at fedoraproject.org Tue Jul 28 16:58:04 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 16:58:04 +0000 (UTC) Subject: rpms/NetworkManager/devel nm-applet-internal-buildfixes.patch, 1.9, 1.10 Message-ID: <20090728165804.E1D4B11C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13032 Modified Files: nm-applet-internal-buildfixes.patch Log Message: fix up applet build for bluetooth bits nm-applet-internal-buildfixes.patch: configure.ac | 6 ------ src/Makefile.am | 8 +++++++- src/connection-editor/Makefile.am | 9 ++++++++- src/gconf-helpers/Makefile.am | 8 +++++++- src/utils/Makefile.am | 9 ++++++++- src/wireless-security/Makefile.am | 8 +++++++- 6 files changed, 37 insertions(+), 11 deletions(-) Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- nm-applet-internal-buildfixes.patch 28 Jul 2009 15:35:11 -0000 1.9 +++ nm-applet-internal-buildfixes.patch 28 Jul 2009 16:58:04 -0000 1.10 @@ -1,7 +1,7 @@ diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix 2009-04-04 18:03:25.000000000 -0400 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac 2009-04-05 08:31:12.000000000 -0400 -@@ -68,10 +68,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0) +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix 2009-07-28 10:01:26.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac 2009-07-28 12:56:51.657718622 -0400 +@@ -70,10 +70,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0) PKG_CHECK_MODULES(NMA, [dbus-glib-1 >= 0.74 glib-2.0 >= 2.10 @@ -12,9 +12,18 @@ diff -up NetworkManager-0.7.995/network- gtk+-2.0 >= 2.14 libglade-2.0 gmodule-export-2.0 +@@ -193,8 +189,6 @@ dnl Check for gnome-bluetooth + PKG_CHECK_MODULES(GNOME_BLUETOOTH, + gconf-2.0 + gnome-bluetooth-1.0 >= 2.27.6 +- libnm-util +- libnm_glib, + have_gbt=yes, have_gbt=no) + AM_CONDITIONAL(HAVE_GBT, test x"$have_gbt" = "xyes") + diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am.buildfix 2009-04-03 09:30:25.000000000 -0400 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am.buildfix 2009-07-23 10:51:39.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/connection-editor/Makefile.am 2009-07-28 11:29:11.685841724 -0400 @@ -1,5 +1,9 @@ bin_PROGRAMS = nm-connection-editor @@ -25,7 +34,7 @@ diff -up NetworkManager-0.7.995/network- nm_connection_editor_CPPFLAGS = \ $(NMA_CFLAGS) \ -DICONDIR=\""$(datadir)/icons"\" \ -@@ -70,7 +74,10 @@ nm_connection_editor_LDADD = \ +@@ -66,7 +70,10 @@ nm_connection_editor_LDADD = \ ${top_builddir}/src/utils/libutils.la \ ${top_builddir}/src/marshallers/libmarshallers.la \ $(NMA_LIBS) \ @@ -38,8 +47,8 @@ diff -up NetworkManager-0.7.995/network- if NO_POLKIT_GNOME nm_connection_editor_LDADD += \ diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am.buildfix 2008-11-26 20:37:43.000000000 -0500 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am.buildfix 2009-04-20 07:09:10.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gconf-helpers/Makefile.am 2009-07-28 11:29:11.686841642 -0400 @@ -1,3 +1,7 @@ +INCLUDES = -I${top_srcdir}/../include \ + -I${top_srcdir}/../libnm-util \ @@ -58,9 +67,9 @@ diff -up NetworkManager-0.7.995/network- + -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am 2009-04-05 08:31:12.000000000 -0400 -@@ -4,6 +4,10 @@ NULL= +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix 2009-07-27 15:26:53.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am 2009-07-28 11:29:11.686841642 -0400 +@@ -2,6 +2,10 @@ SUBDIRS = marshallers utils gconf-helper bin_PROGRAMS = nm-applet @@ -71,7 +80,7 @@ diff -up NetworkManager-0.7.995/network- nm_applet_CPPFLAGS = \ $(NMA_CFLAGS) \ $(NOTIFY_CFLAGS) \ -@@ -57,7 +61,9 @@ nm_applet_LDADD = \ +@@ -54,7 +58,9 @@ nm_applet_LDADD = \ ${top_builddir}/src/marshallers/libmarshallers.la \ ${top_builddir}/src/utils/libutils.la \ ${top_builddir}/src/gconf-helpers/libgconf-helpers.la \ @@ -83,8 +92,8 @@ diff -up NetworkManager-0.7.995/network- gladedir = $(datadir)/nm-applet glade_DATA = applet.glade keyring.png diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am.buildfix 2008-11-26 20:37:48.000000000 -0500 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am.buildfix 2009-07-02 16:32:26.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/utils/Makefile.am 2009-07-28 11:29:11.686841642 -0400 @@ -1,3 +1,7 @@ +INCLUDES = -I${top_srcdir}/../include \ + -I${top_srcdir}/../libnm-util \ @@ -93,7 +102,7 @@ diff -up NetworkManager-0.7.995/network- noinst_LTLIBRARIES = libutils.la libutils_la_SOURCES = \ -@@ -11,4 +15,7 @@ libutils_la_CPPFLAGS = \ +@@ -18,4 +22,7 @@ libutils_la_CPPFLAGS = \ -I${top_srcdir}/src/gconf-helpers \ -I${top_srcdir}/src @@ -103,8 +112,8 @@ diff -up NetworkManager-0.7.995/network- + -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la + diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am ---- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am.buildfix 2009-04-04 11:33:58.000000000 -0400 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am 2009-04-05 08:31:12.000000000 -0400 +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am.buildfix 2009-07-02 16:32:26.000000000 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/wireless-security/Makefile.am 2009-07-28 11:29:11.687841490 -0400 @@ -1,5 +1,9 @@ noinst_LTLIBRARIES = libwireless-security.la @@ -115,7 +124,7 @@ diff -up NetworkManager-0.7.995/network- libwireless_security_la_SOURCES = \ wireless-security.h \ wireless-security.c \ -@@ -38,5 +42,7 @@ libwireless_security_la_CPPFLAGS = \ +@@ -36,5 +40,7 @@ libwireless_security_la_CPPFLAGS = \ libwireless_security_la_LIBADD = \ $(NMA_LIBS) \ ${top_builddir}/src/utils/libutils.la \ From nsantos at fedoraproject.org Tue Jul 28 17:00:01 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Tue, 28 Jul 2009 17:00:01 +0000 (UTC) Subject: rpms/ruby-qpid/F-11 .cvsignore, 1.13, 1.14 ruby-qpid.spec, 1.17, 1.18 sources, 1.13, 1.14 Message-ID: <20090728170001.3F69111C00D4@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13952 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 795209 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 6 Jul 2009 20:14:10 -0000 1.13 +++ .cvsignore 28 Jul 2009 17:00:00 -0000 1.14 @@ -1 +1 @@ -ruby-qpid-0.5.791584.tar.gz +ruby-qpid-0.5.795209.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/ruby-qpid.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ruby-qpid.spec 6 Jul 2009 20:14:10 -0000 1.17 +++ ruby-qpid.spec 28 Jul 2009 17:00:00 -0000 1.18 @@ -1,5 +1,5 @@ Name: ruby-qpid -Version: 0.5.791584 +Version: 0.5.795209 Release: 1%{?dist} Summary: Ruby language client for AMQP @@ -22,12 +22,12 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: ruby BuildRequires: ruby-devel BuildRequires: rubygem-rake -BuildRequires: amqp >= 1.0.%{version} +BuildRequires: amqp >= 1.0.790661 BuildRequires: cyrus-sasl-devel Requires: ruby Requires: ruby(abi) = 1.8 -Requires: amqp >= 1.0.%{version} +Requires: amqp >= 1.0.790661 Requires: cyrus-sasl Provides: ruby(qpid) = %{version} @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Tue Jul 28 2009 Nuno Santos - 0.5.795209-1 +- Rebased to svn rev 795209 + * Mon Jul 6 2009 Nuno Santos - 0.5.791584-1 - Rebased to svn rev 791584 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 6 Jul 2009 20:14:10 -0000 1.13 +++ sources 28 Jul 2009 17:00:00 -0000 1.14 @@ -1 +1 @@ -118963541a81027a8a377f1643ea9162 ruby-qpid-0.5.791584.tar.gz +38a0a3a6f4678c8812bafae146d6c00d ruby-qpid-0.5.795209.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 17:00:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:19 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170019.0B4FD10F89D@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on dahdi-tools (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:20 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170020.9D01710F8B5@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on dahdi-tools (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:22 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170022.41E8510F8B8@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on dahdi-tools (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:22 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170022.66DDA10F8CA@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on dahdi-tools (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:31 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170031.95F1410F8BD@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on dahdi-tools (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:32 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170032.8A77310F8CE@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on dahdi-tools (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:33 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170033.BD2E810F8D1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on dahdi-tools (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:35 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170035.8B75C10F8D4@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on dahdi-tools (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:39 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170039.3886A10F8D9@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on dahdi-tools (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:40 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170040.AAC3E10F900@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on dahdi-tools (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:41 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170041.7C29410F8DC@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on dahdi-tools (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:43 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170043.B52DD10F8FF@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on dahdi-tools (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From rdieter at fedoraproject.org Tue Jul 28 16:55:35 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 16:55:35 +0000 (UTC) Subject: rpms/sbcl/devel sbcl.spec,1.109,1.110 Message-ID: <20090728165536.00E4B11C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sbcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11142 Modified Files: sbcl.spec Log Message: fix %files Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/devel/sbcl.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- sbcl.spec 28 Jul 2009 13:21:14 -0000 1.109 +++ sbcl.spec 28 Jul 2009 16:55:35 -0000 1.110 @@ -234,7 +234,7 @@ fi %files %defattr(-,root,root) %doc BUGS COPYING README CREDITS NEWS TLA TODO -%doc SUPPORT STYLE PRINCIPLES +%doc STYLE PRINCIPLES %{_bindir}/* %{_libdir}/sbcl/ %{_mandir}/man?/* From pkgdb at fedoraproject.org Tue Jul 28 17:00:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:49 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170049.AE90A10F8DD@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on dahdi-tools (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:50 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170050.AA29010F903@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on dahdi-tools (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:52 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170053.19BCC10F906@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on dahdi-tools (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:00:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:00:56 +0000 Subject: [pkgdb] dahdi-tools had acl change status Message-ID: <20090728170056.AB80210F8E1@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on dahdi-tools (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dahdi-tools From pkgdb at fedoraproject.org Tue Jul 28 17:01:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:27 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170127.CE3B110F8E2@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libpri (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:29 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170129.535AF10F8E6@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libpri (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:30 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170130.5C4E010F910@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libpri (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:32 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170132.18FF810F90D@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libpri (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:41 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170141.9430B10F913@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libpri (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:42 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170143.372B610F917@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libpri (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:43 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170143.DA6D410F91A@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libpri (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:45 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170146.8113910F92B@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libpri (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:51 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170151.6A14110F91F@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libpri (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:51 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170151.E0AC210F91E@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libpri (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:53 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170153.32F1210F92E@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libpri (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:54 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170154.CCC1810F932@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libpri (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:58 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170158.E550110F934@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libpri (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:01:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:01:59 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170159.CC1A910F937@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libpri (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:02:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:02:08 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170208.4D06110F922@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libpri (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From pkgdb at fedoraproject.org Tue Jul 28 17:02:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:02:08 +0000 Subject: [pkgdb] libpri had acl change status Message-ID: <20090728170208.CC58610F925@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libpri (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpri From jcollie at fedoraproject.org Tue Jul 28 17:03:35 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 17:03:35 +0000 (UTC) Subject: rpms/spandsp/devel .cvsignore, 1.20, 1.21 sources, 1.20, 1.21 spandsp.spec, 1.28, 1.29 Message-ID: <20090728170335.90DB011C00D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/spandsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15473 Modified Files: .cvsignore sources spandsp.spec Log Message: * Tue Jul 28 2009 Jeffrey C. Ollie - 0.0.6-0.1.pre12 - Update to 0.0.6pre12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spandsp/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 30 Jul 2008 15:07:55 -0000 1.20 +++ .cvsignore 28 Jul 2009 17:03:35 -0000 1.21 @@ -1 +1 @@ -spandsp-0.0.5pre4.tgz +spandsp-0.0.6pre12.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spandsp/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 30 Jul 2008 15:07:55 -0000 1.20 +++ sources 28 Jul 2009 17:03:35 -0000 1.21 @@ -1 +1 @@ -fe83ed37a7831f0dd38e7ef4e7e6fd9e spandsp-0.0.5pre4.tgz +497e04c890ee864c629908a169507238 spandsp-0.0.6pre12.tgz Index: spandsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/spandsp/devel/spandsp.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- spandsp.spec 27 Jul 2009 04:38:47 -0000 1.28 +++ spandsp.spec 28 Jul 2009 17:03:35 -0000 1.29 @@ -1,9 +1,9 @@ -%define pre 4 +%define pre 12 Summary: A DSP library for telephony Name: spandsp -Version: 0.0.5 -Release: 0.3%{?pre:.pre%{pre}}%{?dist} +Version: 0.0.6 +Release: 0.1%{?pre:.pre%{pre}}%{?dist} License: LGPLv2 and GPLv2 Group: System Environment/Libraries URL: http://www.soft-switch.org/ @@ -77,6 +77,7 @@ rm -rf %{buildroot} %{_includedir}/spandsp.h %{_includedir}/spandsp %{_libdir}/libspandsp.so +%{_libdir}/pkgconfig/spandsp.pc %files apidoc %defattr(-,root,root,-) @@ -87,6 +88,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Tue Jul 28 2009 Jeffrey C. Ollie - 0.0.6-0.1.pre12 +- Update to 0.0.6pre12 + * Sun Jul 26 2009 Fedora Release Engineering - 0.0.5-0.3.pre4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 28 17:04:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:18 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170418.13A1E10F89F@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libss7 (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:19 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170419.E541510F8B4@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libss7 (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:21 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170421.91D2910F8B8@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libss7 (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From markmc at fedoraproject.org Tue Jul 28 17:04:24 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 17:04:24 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.148,1.149 Message-ID: <20090728170424.10CA011C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15793 Modified Files: libvirt.spec Log Message: * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.3.gitf055724 - Enable netcf support Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- libvirt.spec 28 Jul 2009 09:58:42 -0000 1.148 +++ libvirt.spec 28 Jul 2009 17:04:23 -0000 1.149 @@ -23,6 +23,7 @@ %define with_numactl 0%{!?_without_numactl:1} # default to off %define with_capng 0%{!?_without_capng:0} +%define with_netcf 0%{!?_without_netcf:1} # Xen is available only on i386 x86_64 ia64 %ifnarch i386 i586 i686 x86_64 ia64 @@ -49,6 +50,10 @@ %endif %if 0%{?fedora} >= 12 +%define with_netcf 0%{!?_without_netcf:1} +%endif + +%if 0%{?fedora} >= 12 %define qemu_user qemu %define qemu_group qemu %else @@ -72,7 +77,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.2.gitf055724%{?dist}%{?extra_release} +Release: 0.3.gitf055724%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.1.gitf055724.tar.gz @@ -199,6 +204,9 @@ BuildRequires: libcap-ng-devel >= 0.5.0 %if %{with_phyp} BuildRequires: libssh-devel >= 0.3.1 %endif +%if %{with_netcf} +BuildRequires: netcf-devel +%endif # Fedora build root suckage BuildRequires: gawk @@ -344,6 +352,10 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %define _without_numactl --without-numactl %endif +%if ! %{with_netcf} +%define _without_netcf --without-netcf +%endif + %configure %{?_without_xen} \ %{?_without_qemu} \ %{?_without_openvz} \ @@ -364,6 +376,7 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_storage_iscsi} \ %{?_without_storage_disk} \ %{?_without_numactl} \ + %{?_without_netcf} \ --with-init-script=redhat \ --with-remote-pid-file=%{_localstatedir}/run/libvirtd.pid make %{?_smp_mflags} @@ -606,6 +619,9 @@ fi %endif %changelog +* Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.3.gitf055724 +- Enable netcf support + * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) From pkgdb at fedoraproject.org Tue Jul 28 17:04:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:23 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170423.8C11510F8BB@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libss7 (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:27 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170427.3617110F8BE@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libss7 (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:28 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170428.8085710F8C6@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libss7 (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:29 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170429.DA00910F8C9@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libss7 (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:30 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170430.DC29D10F8CD@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libss7 (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:37 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170437.62B9F10F8D0@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libss7 (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:38 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170438.80A3910F8D3@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libss7 (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:39 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170439.A1BE910F8D6@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libss7 (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:41 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170441.4E90D10F8D9@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libss7 (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:44 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170444.3C61A10F8DD@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on libss7 (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:45 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170445.1117010F8E0@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on libss7 (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:46 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170446.A1B1B10F8EC@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on libss7 (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From pkgdb at fedoraproject.org Tue Jul 28 17:04:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:04:48 +0000 Subject: [pkgdb] libss7 had acl change status Message-ID: <20090728170448.E3AA910F8EF@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on libss7 (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libss7 From mclasen at fedoraproject.org Tue Jul 28 17:05:00 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 17:05:00 +0000 (UTC) Subject: rpms/orca/devel orca.spec,1.90,1.91 Message-ID: <20090728170500.E276211C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/orca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16108 Modified Files: orca.spec Log Message: Fix file lists Index: orca.spec =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/orca.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- orca.spec 28 Jul 2009 15:29:13 -0000 1.90 +++ orca.spec 28 Jul 2009 17:05:00 -0000 1.91 @@ -99,9 +99,7 @@ fi %{python_sitearch}/orca %{_datadir}/icons/hicolor/*/apps/orca.png %{_datadir}/icons/hicolor/scalable/apps/orca.svg -%dir %{_datadir}/orca -%dir %{_datadir}/orca/glade -%{_datadir}/orca/glade/* +%{_datadir}/orca %{_mandir}/man1/orca.1.gz From pkgdb at fedoraproject.org Tue Jul 28 17:06:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:28 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170628.65F7D10F8F3@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on zaptel (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:28 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170628.ED7E510F8F9@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on zaptel (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:31 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170631.0D82710F8FC@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on zaptel (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:32 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170632.9AFB810F8FF@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on zaptel (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:39 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170639.87E6D10F903@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on zaptel (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:40 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170640.3A1FC10F90B@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on zaptel (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:41 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170641.CD71010F90F@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on zaptel (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:42 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170642.E57B710F912@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on zaptel (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:47 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170647.67AC710F915@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on zaptel (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:48 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170649.2F31110F91A@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on zaptel (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:50 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170650.8649B10F91B@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on zaptel (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:52 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170652.5F29210F91E@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on zaptel (Fedora 10) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:06:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:06:55 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170655.209D910F921@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on zaptel (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:07:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:07:02 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170702.5B60010F927@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on zaptel (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:07:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:07:03 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170703.C469910F92A@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on zaptel (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:07:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:07:05 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170705.6A9E410F92D@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on zaptel (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From pkgdb at fedoraproject.org Tue Jul 28 17:07:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:07:08 +0000 Subject: [pkgdb] zaptel had acl change status Message-ID: <20090728170708.14C5010F89D@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on zaptel (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zaptel From mclasen at fedoraproject.org Tue Jul 28 17:07:52 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 17:07:52 +0000 (UTC) Subject: rpms/gok/devel .cvsignore, 1.41, 1.42 gok.spec, 1.83, 1.84 sources, 1.41, 1.42 Message-ID: <20090728170752.65F8111C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17371 Modified Files: .cvsignore gok.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 14 Jul 2009 04:12:02 -0000 1.41 +++ .cvsignore 28 Jul 2009 17:07:52 -0000 1.42 @@ -1 +1 @@ -gok-2.27.4.tar.bz2 +gok-2.27.5.tar.bz2 Index: gok.spec =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/gok.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- gok.spec 25 Jul 2009 01:02:29 -0000 1.83 +++ gok.spec 28 Jul 2009 17:07:52 -0000 1.84 @@ -2,8 +2,8 @@ Summary: GNOME Onscreen Keyboard Name: gok -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} License: LGPLv2+ Group: User Interface/Desktops URL: http://www.gok.ca/ @@ -150,6 +150,9 @@ scrollkeeper-update -q %{_datadir}/gtk-doc/html/gok %changelog +* Tue Jul 28 2009 Matthias Clasen 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 14 Jul 2009 04:12:02 -0000 1.41 +++ sources 28 Jul 2009 17:07:52 -0000 1.42 @@ -1 +1 @@ -c8eebe2bb5d58f8cb08194f5f2aee8fd gok-2.27.4.tar.bz2 +9ae756cb0410d650c72f47b1cc3a7be9 gok-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 17:08:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:21 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170821.6E1AE10F8B6@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:22 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170822.5953510F8BB@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:30 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170830.7C03610F8C8@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:31 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170831.8D61410F8CC@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:42 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170842.67C7C10F8D1@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:43 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170843.50B4910F8D5@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:51 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170851.BE86010F8DA@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:52 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170852.2CA9710F8DE@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:56 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170856.C5F1510F930@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:08:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:08:57 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728170857.6A95C10F934@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From dcbw at fedoraproject.org Tue Jul 28 17:11:39 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 17:11:39 +0000 (UTC) Subject: rpms/NetworkManager/devel nm-applet-internal-buildfixes.patch, 1.10, 1.11 Message-ID: <20090728171139.BB93B11C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19244 Modified Files: nm-applet-internal-buildfixes.patch Log Message: fix the patch nm-applet-internal-buildfixes.patch: configure.ac | 8 +------- src/Makefile.am | 8 +++++++- src/connection-editor/Makefile.am | 9 ++++++++- src/gconf-helpers/Makefile.am | 8 +++++++- src/utils/Makefile.am | 9 ++++++++- src/wireless-security/Makefile.am | 8 +++++++- 6 files changed, 38 insertions(+), 12 deletions(-) Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- nm-applet-internal-buildfixes.patch 28 Jul 2009 16:58:04 -0000 1.10 +++ nm-applet-internal-buildfixes.patch 28 Jul 2009 17:11:39 -0000 1.11 @@ -1,6 +1,6 @@ diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac --- NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac.buildfix 2009-07-28 10:01:26.000000000 -0400 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac 2009-07-28 12:56:51.657718622 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/configure.ac 2009-07-28 13:11:39.261718877 -0400 @@ -70,10 +70,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0) PKG_CHECK_MODULES(NMA, [dbus-glib-1 >= 0.74 @@ -12,12 +12,14 @@ diff -up NetworkManager-0.7.995/network- gtk+-2.0 >= 2.14 libglade-2.0 gmodule-export-2.0 -@@ -193,8 +189,6 @@ dnl Check for gnome-bluetooth +@@ -192,9 +188,7 @@ AC_SUBST(DBUS_SYS_DIR) + dnl Check for gnome-bluetooth PKG_CHECK_MODULES(GNOME_BLUETOOTH, gconf-2.0 - gnome-bluetooth-1.0 >= 2.27.6 +- gnome-bluetooth-1.0 >= 2.27.6 - libnm-util - libnm_glib, ++ gnome-bluetooth-1.0 >= 2.27.6, have_gbt=yes, have_gbt=no) AM_CONDITIONAL(HAVE_GBT, test x"$have_gbt" = "xyes") From pkgdb at fedoraproject.org Tue Jul 28 17:13:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:13:21 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728171321.86D1010F8B5@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on mISDN (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 17:13:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:13:22 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728171322.5481D10F8B9@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on mISDN (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 17:13:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:13:24 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728171324.5A14910F8BD@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on mISDN (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 17:13:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:13:25 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728171325.8F07F10F8C0@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on mISDN (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 17:14:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:14:08 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728171408.B6D9410F8C1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:14:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:14:10 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728171410.AA59510F8C8@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:14:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:14:21 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728171422.095CD10F89C@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on rtpproxy (Fedora devel) to Awaiting Review for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:14:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:14:24 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728171424.24F8E10F8D0@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on rtpproxy (Fedora devel) to Awaiting Review for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From mcrha at fedoraproject.org Tue Jul 28 17:15:45 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Tue, 28 Jul 2009 17:15:45 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.407,1.408 Message-ID: <20090728171545.28D7411C00D4@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21130 Modified Files: evolution.spec Log Message: * Tue Jul 28 2009 Milan Crha - 2.27.5-3.fc12 - Enable pst-import plugin (RH bug #493049) Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.407 retrieving revision 1.408 diff -u -p -r1.407 -r1.408 --- evolution.spec 28 Jul 2009 16:44:13 -0000 1.407 +++ evolution.spec 28 Jul 2009 17:15:44 -0000 1.408 @@ -22,7 +22,7 @@ %define inline_audio_support 1 %define ldap_support 1 %define libnotify_support 1 -%define libpst_support 0 +%define libpst_support 1 %define krb5_support 1 %define nntp_support 1 %ifnarch s390 s390x @@ -43,7 +43,7 @@ Name: evolution Version: 2.27.5 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -693,6 +693,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 28 2009 Milan Crha - 2.27.5-3.fc12 +- Enable pst-import plugin (RH bug #493049) + * Tue Jul 28 2009 Matthew Barnes - 2.27.5-2.fc12 - Move libeconduit.so into the conduits subpackage to see if that untangles us from gnome-pilot. From pkgdb at fedoraproject.org Tue Jul 28 17:15:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:15:53 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171553.A396310F899@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofia-sip (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:15:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:15:54 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171554.A9DDA10F89E@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofia-sip (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:15:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:15:56 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171556.B297F10F8B1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofia-sip (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:15:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:15:58 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171558.09F7810F8C8@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofia-sip (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:05 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171605.3EB4B10F8B0@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofia-sip (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:07 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171607.7475010F8B8@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofia-sip (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:07 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171607.C97CF10F8CB@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofia-sip (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:09 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171609.8CDC210F8CE@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofia-sip (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:12 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171612.E312810F8BB@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofia-sip (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:14 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171614.1502010F8D0@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofia-sip (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:15 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171615.8365B10F8D3@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofia-sip (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:17 +0000 Subject: [pkgdb] sofia-sip had acl change status Message-ID: <20090728171617.47FCC10F8D6@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofia-sip (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofia-sip From pkgdb at fedoraproject.org Tue Jul 28 17:16:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:45 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171645.DA08310F897@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofsip-cli (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:46 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171646.917E910F89D@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofsip-cli (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:48 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171648.0D7CA10F8A1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofsip-cli (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:49 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171649.2350A10F8C1@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofsip-cli (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:55 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171655.DF49F10F8C5@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofsip-cli (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:56 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171657.0115010F8C9@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofsip-cli (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:58 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171658.D0D0510F8DE@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofsip-cli (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:16:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:16:59 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171659.96C5810F8E1@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofsip-cli (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:17:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:17:04 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171704.2EB5C10F8E4@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on sofsip-cli (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:17:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:17:05 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171706.0B19110F8E7@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on sofsip-cli (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:17:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:17:06 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171706.CA41510F8E9@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on sofsip-cli (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From pkgdb at fedoraproject.org Tue Jul 28 17:17:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:17:07 +0000 Subject: [pkgdb] sofsip-cli had acl change status Message-ID: <20090728171707.CA67510F8EB@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on sofsip-cli (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sofsip-cli From markmc at fedoraproject.org Tue Jul 28 17:17:14 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 17:17:14 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.149,1.150 Message-ID: <20090728171714.03E3911C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21881 Modified Files: libvirt.spec Log Message: - Move various requires to the libvirt-client sub-package - Sync some trivial cleanups from upstream spec file Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- libvirt.spec 28 Jul 2009 17:04:23 -0000 1.149 +++ libvirt.spec 28 Jul 2009 17:17:13 -0000 1.150 @@ -63,7 +63,6 @@ # # If building on RHEL switch on the specific support -# for the specific Xen version # %if 0%{?fedora} %define with_rhel5 0 @@ -88,27 +87,16 @@ Patch200: libvirt-0.6.4-svirt-sound.patc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://libvirt.org/ +BuildRequires: python python-devel # The client side, i.e. shared libs and virsh are in a subpackage Requires: libvirt-client = %{version}-%{release} -BuildRequires: python python-devel -Requires: readline -Requires: ncurses Requires: dnsmasq Requires: bridge-utils Requires: iptables # needed for device enumeration Requires: hal -# So remote clients can access libvirt over SSH tunnel -# (client invokes 'nc' against the UNIX socket on the server) -Requires: nc -%if %{with_sasl} -Requires: cyrus-sasl -# Not technically required, but makes 'out-of-box' config -# work correctly & doesn't have onerous dependencies -Requires: cyrus-sasl-md5 -%endif %if %{with_polkit} Requires: PolicyKit >= 0.6 %endif @@ -236,7 +224,6 @@ Requires: cyrus-sasl-md5 Shared libraries and client binaries needed to access to the virtualization capabilities of recent versions of Linux (and other OSes). - %package devel Summary: Libraries, includes, etc. to compile with the libvirt library Group: Development/Libraries @@ -383,7 +370,7 @@ make %{?_smp_mflags} gzip -9 ChangeLog %install -rm -rf %{buildroot} +rm -fr %{buildroot} %makeinstall (cd docs/examples ; make clean ; rm -rf .deps Makefile Makefile.in) @@ -621,6 +608,8 @@ fi %changelog * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.3.gitf055724 - Enable netcf support +- Move various requires to the libvirt-client sub-package +- Sync some trivial cleanups from upstream spec file * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) From pkgdb at fedoraproject.org Tue Jul 28 17:18:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:22 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171822.8B84010F85A@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on jrtplib (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:23 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171823.8CA3A10F899@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on jrtplib (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:24 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171825.03A4210F89F@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on jrtplib (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:25 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171825.ADEB610F89E@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on jrtplib (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:31 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171831.1B37010F8CE@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on jrtplib (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:32 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171833.0F6AF10F8D1@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on jrtplib (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:33 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171833.8C5DA10F8D4@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on jrtplib (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:34 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171834.B88F810F8D7@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on jrtplib (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:37 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171837.EBB5410F8B1@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on jrtplib (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:38 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171838.F3AC710F8DA@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on jrtplib (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:40 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171840.528C010F8F0@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on jrtplib (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From pkgdb at fedoraproject.org Tue Jul 28 17:18:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:18:41 +0000 Subject: [pkgdb] jrtplib had acl change status Message-ID: <20090728171841.BFC3D10F8F4@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on jrtplib (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jrtplib From mclasen at fedoraproject.org Tue Jul 28 17:20:54 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 17:20:54 +0000 (UTC) Subject: rpms/vinagre/devel vinagre.spec,1.46,1.47 Message-ID: <20090728172054.B9D1811C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vinagre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21075 Modified Files: vinagre.spec Log Message: fix file lists Index: vinagre.spec =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/vinagre.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- vinagre.spec 28 Jul 2009 16:22:10 -0000 1.46 +++ vinagre.spec 28 Jul 2009 17:20:54 -0000 1.47 @@ -23,6 +23,9 @@ BuildRequires: gnome-keyring-devel BuildRequires: gnome-doc-utils BuildRequires: gnome-panel-devel +# for /usr/share/dbus-1/services +Requires: dbus + %description Vinagre is a VNC client for the GNOME desktop. @@ -31,11 +34,24 @@ your servers thanks to the Favorites sup GNOME keyring, and browse the network to look for VNC servers. +%package devel +Summary: Development files for vinagre +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkg-config + +%description devel +Vinagre is a VNC client for the GNOME desktop. + +This package allows you to develop plugins that add new functionality +to vinagre. + + %prep %setup -q %build -%configure --enable-avahi=yes +%configure --enable-avahi=yes --disable-static make %{?_smp_mflags} @@ -71,6 +87,10 @@ for f in $helpdir/C/figures/*.png; do done done +# drop unwanted stuff +rm $RPM_BUILD_ROOT%{_libdir}/vinagre-1/plugins/*.la +rm $RPM_BUILD_ROOT%{_libdir}/vinagre-1/plugin-loaders/*.la + %find_lang vinagre --with-gnome %clean @@ -113,17 +133,32 @@ fi %{_sysconfdir}/gconf/schemas/vinagre.schemas %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/*/*/* +%{_datadir}/icons/vinagre-plugin.png %{_datadir}/mime/packages/vinagre-mime.xml %{_datadir}/%{name}/ %{_libdir}/bonobo/servers/GNOME_VinagreApplet.server %{_libexecdir}/vinagre-applet +%dir %{_libdir}/vinagre-1 +%dir %{_libdir}/vinagre-1/plugin-loaders +%dir %{_libdir}/vinagre-1/plugins +%{_libdir}/vinagre-1/plugin-loaders/*.so +%{_libdir}/vinagre-1/plugins/*.so +%{_libdir}/vinagre-1/plugins/*.vinagre-plugin +%{_datadir}/dbus-1/services/org.gnome.Empathy.StreamTubeHandler.x_vnc.service + %doc %{_mandir}/man1/vinagre.1.gz %doc README NEWS COPYING AUTHORS +%files devel +%{_includedir}/vinagre-1.0 +%{_libdir}/pkgconfig/vinagre-1.0.pc + + %changelog * Tue Jul 28 2009 Matthisa Clasen - 2.27.5-1 - Update to 2.27.5 +- Split off a -devel package * Sun Jul 26 2009 Fedora Release Engineering - 2.26.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 28 17:22:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:14 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172215.296D110F8D6@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on spandsp (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:13 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172213.3D7D710F8CC@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on spandsp (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:16 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172216.E8AB910F8D7@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on spandsp (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:18 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172218.CB65210F8DB@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on spandsp (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:25 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172225.991DA10F8DF@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on spandsp (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:27 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172227.04BDE10F8EE@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on spandsp (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:28 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172228.DB8EB10F8F1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on spandsp (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:30 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172230.A811C10F8F5@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on spandsp (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:35 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172235.E256E10F902@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on spandsp (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:37 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172237.19D6810F906@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on spandsp (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:39 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172239.237E710F90D@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on spandsp (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:41 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172241.142EC10F915@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on spandsp (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:46 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172246.179B210F918@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on spandsp (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:47 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172247.E575310F91C@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on spandsp (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:49 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172249.AF54710F937@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on spandsp (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:22:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:22:51 +0000 Subject: [pkgdb] spandsp had acl change status Message-ID: <20090728172251.4A68310F93C@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on spandsp (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Tue Jul 28 17:23:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:28 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172328.7F2DF10F923@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk-sounds-core (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:30 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172330.A89D710F927@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk-sounds-core (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:32 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172332.DBCEC10F946@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk-sounds-core (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From dcbw at fedoraproject.org Tue Jul 28 17:23:33 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 17:23:33 +0000 (UTC) Subject: rpms/NetworkManager/devel nm-applet-internal-buildfixes.patch, 1.11, 1.12 Message-ID: <20090728172333.8E36311C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24916 Modified Files: nm-applet-internal-buildfixes.patch Log Message: another build fix nm-applet-internal-buildfixes.patch: configure.ac | 8 +------- src/Makefile.am | 8 +++++++- src/connection-editor/Makefile.am | 9 ++++++++- src/gconf-helpers/Makefile.am | 8 +++++++- src/gnome-bluetooth/Makefile.am | 3 +++ src/utils/Makefile.am | 9 ++++++++- src/wireless-security/Makefile.am | 8 +++++++- 7 files changed, 41 insertions(+), 12 deletions(-) Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- nm-applet-internal-buildfixes.patch 28 Jul 2009 17:11:39 -0000 1.11 +++ nm-applet-internal-buildfixes.patch 28 Jul 2009 17:23:33 -0000 1.12 @@ -68,6 +68,19 @@ diff -up NetworkManager-0.7.995/network- + -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \ + -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la +diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am +--- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am.buildfix 2009-07-28 13:23:40.282718683 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am 2009-07-28 13:23:19.166718483 -0400 +@@ -6,6 +6,9 @@ INCLUDES = \ + -DLOCALEDIR="\"$(datadir)/locale\"" \ + -I$(top_srcdir)/src/gconf-helpers/ \ + -I$(top_builddir) \ ++ -I${top_srcdir}/../include \ ++ -I${top_srcdir}/../libnm-util \ ++ -I${top_srcdir}/../libnm-glib \ + $(GNOME_BLUETOOTH_CFLAGS) \ + $(WARN_CFLAGS) + diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am --- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix 2009-07-27 15:26:53.000000000 -0400 +++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am 2009-07-28 11:29:11.686841642 -0400 From pkgdb at fedoraproject.org Tue Jul 28 17:23:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:34 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172334.1CC9910F94A@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk-sounds-core (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:38 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172338.8815810F8E7@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk-sounds-core (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:40 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172340.0961A10F92D@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk-sounds-core (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:42 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172342.17FD310F94E@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk-sounds-core (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:44 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172344.19B0710F950@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk-sounds-core (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:49 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172349.EDE3310F931@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk-sounds-core (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:51 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172351.CBDBF10F952@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk-sounds-core (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:53 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172353.A975B10F956@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk-sounds-core (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:23:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:23:55 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172355.DED8310F935@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk-sounds-core (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:24:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:00 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172400.ABC2310F8EA@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk-sounds-core (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:24:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:02 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172402.E480110F961@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk-sounds-core (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:24:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:04 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172404.4AA8510F95E@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk-sounds-core (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From pkgdb at fedoraproject.org Tue Jul 28 17:24:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:06 +0000 Subject: [pkgdb] asterisk-sounds-core had acl change status Message-ID: <20090728172406.3DBB010F967@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk-sounds-core (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk-sounds-core From transif at fedoraproject.org Tue Jul 28 17:24:21 2009 From: transif at fedoraproject.org (Transifex System User) Date: Tue, 28 Jul 2009 17:24:21 +0000 (UTC) Subject: comps/po pt_BR.po,1.35,1.36 Message-ID: <20090728172421.717A411C00D4@cvs1.fedora.phx.redhat.com> Author: transif Update of /cvs/pkgs/comps/po In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25316/po Modified Files: pt_BR.po Log Message: Sending translation for Brazilian Portuguese View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.35 -r 1.36 pt_BR.poIndex: pt_BR.po =================================================================== RCS file: /cvs/pkgs/comps/po/pt_BR.po,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- pt_BR.po 17 Jun 2009 17:49:59 -0000 1.35 +++ pt_BR.po 28 Jul 2009 17:24:21 -0000 1.36 @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: comps\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-15 14:05+0000\n" +"POT-Creation-Date: 2009-04-29 15:51-0400\n" "PO-Revision-Date: 2009-06-17 14:48-0300\n" "Last-Translator: Igor Pires Soares \n" "Language-Team: Brazilian Portuguese \n" @@ -28,1982 +28,1581 @@ msgstr "" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: BRAZIL\n" -#: ../comps-f9.xml.in.h:1 -#: ../comps-f10.xml.in.h:1 -#: ../comps-f11.xml.in.h:1 -#: ../comps-f12.xml.in.h:1 +#: ../comps-f7.xml.in.h:1 ../comps-f8.xml.in.h:1 ../comps-f9.xml.in.h:1 +#: ../comps-f10.xml.in.h:1 ../comps-f11.xml.in.h:1 msgid "A lightweight desktop environment that works well on low end machines." msgstr "Um ambiente de trabalho leve que funciona bem em m?quinas de baixo custo." -#: ../comps-f9.xml.in.h:2 -#: ../comps-f10.xml.in.h:3 -#: ../comps-f11.xml.in.h:3 -#: ../comps-f12.xml.in.h:3 -#: ../comps-el4.xml.in.h:1 +#: ../comps-f7.xml.in.h:2 ../comps-f8.xml.in.h:2 ../comps-f9.xml.in.h:2 +#: ../comps-f10.xml.in.h:3 ../comps-f11.xml.in.h:3 ../comps-el4.xml.in.h:1 #: ../comps-el5.xml.in.h:1 msgid "Administration Tools" msgstr "Ferramentas administrativas" -#: ../comps-f9.xml.in.h:3 -#: ../comps-f10.xml.in.h:4 -#: ../comps-f11.xml.in.h:4 -#: ../comps-f12.xml.in.h:4 +#: ../comps-f7.xml.in.h:3 ../comps-f8.xml.in.h:3 ../comps-f9.xml.in.h:3 +#: ../comps-f10.xml.in.h:4 ../comps-f11.xml.in.h:4 msgid "Afrikaans Support" msgstr "Suporte ? Afrikaans" -#: ../comps-f9.xml.in.h:4 -#: ../comps-f10.xml.in.h:5 -#: ../comps-f11.xml.in.h:5 -#: ../comps-f12.xml.in.h:5 +#: ../comps-f7.xml.in.h:4 ../comps-f8.xml.in.h:4 ../comps-f9.xml.in.h:4 +#: ../comps-f10.xml.in.h:5 ../comps-f11.xml.in.h:5 msgid "Albanian Support" msgstr "Suporte ? Alban?s" -#: ../comps-f9.xml.in.h:5 -#: ../comps-f10.xml.in.h:6 -#: ../comps-f11.xml.in.h:7 -#: ../comps-f12.xml.in.h:7 -#: ../comps-el4.xml.in.h:2 +#: ../comps-f7.xml.in.h:5 ../comps-f8.xml.in.h:5 ../comps-f9.xml.in.h:5 +#: ../comps-f10.xml.in.h:6 ../comps-f11.xml.in.h:7 ../comps-el4.xml.in.h:2 #: ../comps-el5.xml.in.h:2 msgid "Applications" msgstr "Aplica??es" -#: ../comps-f9.xml.in.h:6 -#: ../comps-f10.xml.in.h:7 -#: ../comps-f11.xml.in.h:8 -#: ../comps-f12.xml.in.h:8 +#: ../comps-f7.xml.in.h:6 ../comps-f8.xml.in.h:6 ../comps-f9.xml.in.h:6 +#: ../comps-f10.xml.in.h:7 ../comps-f11.xml.in.h:8 msgid "Applications to perform a variety of tasks" msgstr "Aplica??es para realizar uma variedade de tarefas" -#: ../comps-f9.xml.in.h:7 -#: ../comps-f10.xml.in.h:8 -#: ../comps-f11.xml.in.h:9 -#: ../comps-f12.xml.in.h:9 -#: ../comps-el4.xml.in.h:4 +#: ../comps-f7.xml.in.h:7 ../comps-f8.xml.in.h:7 ../comps-f9.xml.in.h:7 +#: ../comps-f10.xml.in.h:8 ../comps-f11.xml.in.h:9 ../comps-el4.xml.in.h:4 #: ../comps-el5.xml.in.h:4 msgid "Arabic Support" msgstr "Suporte ? ?rabe" -#: ../comps-f9.xml.in.h:8 -#: ../comps-f10.xml.in.h:9 -#: ../comps-f11.xml.in.h:10 -#: ../comps-f12.xml.in.h:10 -#: ../comps-el4.xml.in.h:5 +#: ../comps-f7.xml.in.h:8 ../comps-f8.xml.in.h:8 ../comps-f9.xml.in.h:8 +#: ../comps-f10.xml.in.h:9 ../comps-f11.xml.in.h:10 ../comps-el4.xml.in.h:5 #: ../comps-el5.xml.in.h:5 msgid "Armenian Support" msgstr "Suporte ? Arm?nio" -#: ../comps-f9.xml.in.h:9 -#: ../comps-f10.xml.in.h:10 -#: ../comps-f11.xml.in.h:11 -#: ../comps-f12.xml.in.h:11 +#: ../comps-f7.xml.in.h:9 ../comps-f8.xml.in.h:9 ../comps-f9.xml.in.h:9 +#: ../comps-f10.xml.in.h:10 ../comps-f11.xml.in.h:11 msgid "Assamese Support" msgstr "Suporte ? Assam?s" -#: ../comps-f9.xml.in.h:10 -#: ../comps-f10.xml.in.h:11 -#: ../comps-f11.xml.in.h:12 -#: ../comps-f12.xml.in.h:12 -#: ../comps-el4.xml.in.h:6 +#: ../comps-f7.xml.in.h:10 ../comps-f8.xml.in.h:10 ../comps-f9.xml.in.h:10 +#: ../comps-f10.xml.in.h:11 ../comps-f11.xml.in.h:12 ../comps-el4.xml.in.h:6 #: ../comps-el5.xml.in.h:6 msgid "Authoring and Publishing" msgstr "Autoria e publica??o" -#: ../comps-f9.xml.in.h:11 -#: ../comps-f10.xml.in.h:12 -#: ../comps-f11.xml.in.h:14 -#: ../comps-f12.xml.in.h:14 +#: ../comps-f7.xml.in.h:11 ../comps-f8.xml.in.h:11 ../comps-f9.xml.in.h:11 +#: ../comps-f10.xml.in.h:12 ../comps-f11.xml.in.h:14 msgid "Base" msgstr "Base" -#: ../comps-f9.xml.in.h:12 -#: ../comps-f10.xml.in.h:13 -#: ../comps-f11.xml.in.h:15 -#: ../comps-f12.xml.in.h:15 -#: ../comps-el4.xml.in.h:7 +#: ../comps-f7.xml.in.h:12 ../comps-f8.xml.in.h:12 ../comps-f9.xml.in.h:12 +#: ../comps-f10.xml.in.h:13 ../comps-f11.xml.in.h:15 ../comps-el4.xml.in.h:7 #: ../comps-el5.xml.in.h:7 msgid "Base System" msgstr "Sistema b?sico" -#: ../comps-f9.xml.in.h:13 -#: ../comps-f10.xml.in.h:14 -#: ../comps-f11.xml.in.h:16 -#: ../comps-f12.xml.in.h:16 +#: ../comps-f7.xml.in.h:13 ../comps-f8.xml.in.h:13 ../comps-f9.xml.in.h:13 +#: ../comps-f10.xml.in.h:14 ../comps-f11.xml.in.h:16 msgid "Basic support for the Ruby programming language." msgstr "Suporte b?sico ? linguagem de programa??o Ruby." -#: ../comps-f9.xml.in.h:14 -#: ../comps-f10.xml.in.h:15 -#: ../comps-f11.xml.in.h:17 -#: ../comps-f12.xml.in.h:17 +#: ../comps-f7.xml.in.h:14 ../comps-f8.xml.in.h:14 ../comps-f9.xml.in.h:14 +#: ../comps-f10.xml.in.h:15 ../comps-f11.xml.in.h:17 msgid "Basque Support" msgstr "Suporte ? Basco" -#: ../comps-f9.xml.in.h:15 -#: ../comps-f10.xml.in.h:16 -#: ../comps-f11.xml.in.h:18 -#: ../comps-f12.xml.in.h:18 +#: ../comps-f7.xml.in.h:15 ../comps-f8.xml.in.h:15 ../comps-f9.xml.in.h:15 +#: ../comps-f10.xml.in.h:16 ../comps-f11.xml.in.h:18 msgid "Belarusian Support" msgstr "Suporte ? Bielo-russo" -#: ../comps-f9.xml.in.h:16 -#: ../comps-f10.xml.in.h:17 -#: ../comps-f11.xml.in.h:19 -#: ../comps-f12.xml.in.h:19 +#: ../comps-f7.xml.in.h:16 ../comps-f8.xml.in.h:16 ../comps-f9.xml.in.h:16 +#: ../comps-f10.xml.in.h:17 ../comps-f11.xml.in.h:19 msgid "Bengali Support" msgstr "Suporte ? Bengali" -#: ../comps-f9.xml.in.h:17 -#: ../comps-f10.xml.in.h:18 -#: ../comps-f11.xml.in.h:20 -#: ../comps-f12.xml.in.h:20 +#: ../comps-f7.xml.in.h:17 ../comps-f8.xml.in.h:17 ../comps-f9.xml.in.h:17 +#: ../comps-f10.xml.in.h:18 ../comps-f11.xml.in.h:20 msgid "Bhutanese Support" msgstr "Suporte ? Butan?s" -#: ../comps-f9.xml.in.h:18 -#: ../comps-f10.xml.in.h:19 -#: ../comps-f11.xml.in.h:21 -#: ../comps-f12.xml.in.h:21 +#: ../comps-f7.xml.in.h:18 ../comps-f8.xml.in.h:18 ../comps-f9.xml.in.h:18 +#: ../comps-f10.xml.in.h:19 ../comps-f11.xml.in.h:21 msgid "Bosnian Support" msgstr "Suporte ? B?snio" -#: ../comps-f9.xml.in.h:19 -#: ../comps-f10.xml.in.h:20 -#: ../comps-f11.xml.in.h:22 -#: ../comps-f12.xml.in.h:22 +#: ../comps-f7.xml.in.h:19 ../comps-f8.xml.in.h:19 ../comps-f9.xml.in.h:19 [...2450 lines suppressed...] msgid "Applications for a variety of tasks" msgstr "Aplica??es para uma variedade de tarefas" -#: ../comps-el4.xml.in.h:12 -#: ../comps-el5.xml.in.h:14 +#: ../comps-el4.xml.in.h:12 ../comps-el5.xml.in.h:13 msgid "Dialup Networking Support" msgstr "Suporte ? rede dialup" -#: ../comps-el4.xml.in.h:22 -#: ../comps-el5.xml.in.h:24 -msgid "GNOME is a powerful, graphical user interface which includes a panel, desktop, system icons, and a graphical file manager." -msgstr "O GNOME ? uma poderosa interface gr?fica que inclui um painel, uma ?rea de trabalho, ?cones de sistema e um gerenciador de arquivos gr?fico." - -#: ../comps-el4.xml.in.h:35 -#: ../comps-el5.xml.in.h:36 -msgid "KDE is a powerful, graphical user interface which includes a panel, desktop, system icons, and a graphical file manager." -msgstr "O KDE ? uma poderosa interface gr?fica que inclui um painel, uma ?rea de trabalho, ?cones de sistema e um gerenciador de arquivos gr?fico." - -#: ../comps-el4.xml.in.h:44 -#: ../comps-el5.xml.in.h:45 -msgid "Sometimes called text editors, these are programs that allow you to create and edit files. These include Emacs and Vi." -msgstr "Algumas vezes chamados de editores de texto, estes programas permitem criar e editar arquivos. Isto inclui o Emacs e o Vi." +#: ../comps-el4.xml.in.h:22 ../comps-el5.xml.in.h:23 +msgid "" +"GNOME is a powerful, graphical user interface which includes a panel, " +"desktop, system icons, and a graphical file manager." +msgstr "" +"O GNOME ? uma poderosa interface gr?fica que inclui um painel, uma ?rea de " +"trabalho, ?cones de sistema e um gerenciador de arquivos gr?fico." + +#: ../comps-el4.xml.in.h:35 ../comps-el5.xml.in.h:35 +msgid "" +"KDE is a powerful, graphical user interface which includes a panel, desktop, " +"system icons, and a graphical file manager." +msgstr "" +"O KDE ? uma poderosa interface gr?fica que inclui um painel, uma ?rea de " +"trabalho, ?cones de sistema e um gerenciador de arquivos gr?fico." + +#: ../comps-el4.xml.in.h:44 ../comps-el5.xml.in.h:44 +msgid "" +"Sometimes called text editors, these are programs that allow you to create " +"and edit files. These include Emacs and Vi." +msgstr "" +"Algumas vezes chamados de editores de texto, estes programas permitem criar " +"e editar arquivos. Isto inclui o Emacs e o Vi." -#: ../comps-el4.xml.in.h:50 -#: ../comps-el5.xml.in.h:49 +#: ../comps-el4.xml.in.h:50 ../comps-el5.xml.in.h:48 msgid "The XEmacs text editor." msgstr "O editor de texto XEmacs." -#: ../comps-el4.xml.in.h:54 -#: ../comps-el5.xml.in.h:53 -msgid "These tools allow you to create documentation in the DocBook format and convert them to HTML, PDF, Postscript, and text." -msgstr "Estas ferramentas permitem criar documenta??o no formato DocBook e convert?-la para HTML, PDF, PostScript e texto." +#: ../comps-el4.xml.in.h:54 ../comps-el5.xml.in.h:52 +msgid "" +"These tools allow you to create documentation in the DocBook format and " +"convert them to HTML, PDF, Postscript, and text." +msgstr "" +"Estas ferramentas permitem criar documenta??o no formato DocBook e convert?-" +"la para HTML, PDF, PostScript e texto." -#: ../comps-el4.xml.in.h:64 -#: ../comps-el5.xml.in.h:63 +#: ../comps-el4.xml.in.h:64 ../comps-el5.xml.in.h:62 msgid "This group is a collection of network servers for specific purposes" -msgstr "Este grupo ? uma cole??o de servidores de redes para prop?sitos espec?ficos." +msgstr "" +"Este grupo ? uma cole??o de servidores de redes para prop?sitos espec?ficos." -#: ../comps-el4.xml.in.h:65 -#: ../comps-el5.xml.in.h:64 -msgid "This group is a collection of tools and resources of Arabic environments." -msgstr "Este grupo ? uma cole??o de ferramentas e recursos de ambientes ?rabes." - -#: ../comps-el4.xml.in.h:67 -#: ../comps-el5.xml.in.h:67 -msgid "This group is a collection of tools and resources of Hebrew environments." -msgstr "Este grupo ? uma cole??o de ferramentas e recursos de ambientes hebraicos." - -#: ../comps-el4.xml.in.h:68 -#: ../comps-el5.xml.in.h:68 -msgid "This group is a collection of tools and resources of Japanese environments." -msgstr "Este grupo ? uma cole??o de ferramentas e recursos de ambientes japoneses." +#: ../comps-el4.xml.in.h:65 ../comps-el5.xml.in.h:63 +msgid "" +"This group is a collection of tools and resources of Arabic environments." +msgstr "" +"Este grupo ? uma cole??o de ferramentas e recursos de ambientes ?rabes." + +#: ../comps-el4.xml.in.h:67 ../comps-el5.xml.in.h:66 +msgid "" +"This group is a collection of tools and resources of Hebrew environments." +msgstr "" +"Este grupo ? uma cole??o de ferramentas e recursos de ambientes hebraicos." + +#: ../comps-el4.xml.in.h:68 ../comps-el5.xml.in.h:67 +msgid "" +"This group is a collection of tools and resources of Japanese environments." +msgstr "" +"Este grupo ? uma cole??o de ferramentas e recursos de ambientes japoneses." -#: ../comps-el4.xml.in.h:77 -#: ../comps-el5.xml.in.h:78 +#: ../comps-el4.xml.in.h:77 ../comps-el5.xml.in.h:77 msgid "XEmacs" msgstr "XEmacs" -#: ../comps-el5.xml.in.h:66 -msgid "This group is a collection of tools and resources of Czech environments." -msgstr "Este grupo ? uma cole??o de ferramentas e recursos de ambientes checos." - -#~ msgid "Eclipse" -#~ msgstr "Eclipse" -#~ msgid "The Eclipse Integrated Development Environment." -#~ msgstr "O ambiente integrado de desenvolvimento Eclipse." +#: ../comps-el5.xml.in.h:65 +msgid "" +"This group is a collection of tools and resources of Czech environments." +msgstr "" +"Este grupo ? uma cole??o de ferramentas e recursos de ambientes checos." + +#~ msgid "Perl Development" +#~ msgstr "Desenvolvimento em Perl" + +#~ msgid "Support for developing programs in the Perl programming language." +#~ msgstr "" +#~ "Suporte ao desenvolvimento de programas na linguagem de programa??o Perl." + #~ msgid "Haskell" #~ msgstr "Haskell" + #~ msgid "British Support" #~ msgstr "Suporte ? Bret?o" + #~ msgid "Cluster Storage" #~ msgstr "Armazenamento em Clusters" + #~ msgid "Clustering Support." #~ msgstr "Suporte a Clusters." + #~ msgid "Libraries for applications built on older releases." #~ msgstr "Bibliotecas para aplica??es compiladas em vers?es anteriores." + #~ msgid "Miscellaneous Included Packages" #~ msgstr "Pacotes Variados Inclu?dos" + #~ msgid "Packages which provide support for cluster storage." #~ msgstr "Pacotes que fornecem suporte para o armazenamento em clusters." + #~ msgid "Packages which provide support for single-node GFS." #~ msgstr "Pacotes que fornecem suporte para GFS de n? ?nico." + #~ msgid "Single Node GFS Support" #~ msgstr "Suporte ao GFS de N? ?nico" + #~ msgid "These packages provide compatibility support with previous releases." #~ msgstr "Estes pacotes fornecem compatibilidade com as vers?es anteriores." + #~ msgid "Java Runtime Environments and Development Kits" #~ msgstr "Ambientes de Tempo de Execu??o e Kits de Desenvolvimento Java" + #~ msgid "Misc" #~ msgstr "Variados" + #~ msgid "Misc packages" #~ msgstr "Pacotes variados" + #~ msgid "Multimedia" #~ msgstr "Multim?dia" + #~ msgid "Multimedia applications" #~ msgstr "Aplica??es multim?dia" + #~ msgid "" #~ "Packages which provide additional functionality for Red Hat Enterprise " #~ "Linux" #~ msgstr "" #~ "Pacotes que fornecem funcionalidades adicionais para o Red Hat Enterprise " #~ "Linux" + #~ msgid "Red Hat Enterprise Linux Supplementary" #~ msgstr "Suplementos do Red Hat Enterprise Linux" + #~ msgid "" #~ "Components used for high performance networking and clustering, such as " #~ "Infiniband and RDMA." #~ msgstr "" #~ "Componentes usados para redes e clusters de alta performance, como a " #~ "Infiniband e a RDMA." + #~ msgid "OpenFabrics Enterprise Distribution" #~ msgstr "Distribui??o do OpenFabrics Enterprise" + #~ msgid "Virtualization Support." #~ msgstr "Suporte ? Virtualiza??o." - From pkgdb at fedoraproject.org Tue Jul 28 17:24:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:33 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172433.F0F8F10F89E@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora devel) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:24:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:37 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172437.8236410F8B1@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora devel) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:24:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:39 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172439.C427010F8BC@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:24:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:41 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172441.64EA810F8C0@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:24:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:43 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172443.548FB10F8C2@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:24:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:24:45 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172445.2670910F96E@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:06 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172506.EDEA710F8D2@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora 10) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:08 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172509.00FEB10F974@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora 10) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:11 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172511.913F610F97F@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:12 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172512.C069410F983@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:14 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172514.7FD0710F988@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:16 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172516.84C4210F8D4@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:20 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172520.83D7C10F98C@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora 11) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:22 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172522.BEA4C10F98F@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora 11) to Approved for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:24 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172524.D023D10F992@bastion2.fedora.phx.redhat.com> jcollie has set the watchbugzilla acl on asterisk (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:25 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172525.CC44210F995@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on asterisk (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:27 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172527.CB62210F8D8@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on asterisk (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From pkgdb at fedoraproject.org Tue Jul 28 17:25:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:25:30 +0000 Subject: [pkgdb] asterisk had acl change status Message-ID: <20090728172530.9554210F8DC@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on asterisk (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asterisk From mclasen at fedoraproject.org Tue Jul 28 17:25:43 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 17:25:43 +0000 (UTC) Subject: rpms/epiphany/devel .cvsignore, 1.83, 1.84 epiphany.spec, 1.236, 1.237 sources, 1.86, 1.87 Message-ID: <20090728172543.4784911C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25987 Modified Files: .cvsignore epiphany.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/.cvsignore,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- .cvsignore 13 Jul 2009 05:33:36 -0000 1.83 +++ .cvsignore 28 Jul 2009 17:25:42 -0000 1.84 @@ -1 +1 @@ -epiphany-2.27.4.tar.bz2 +epiphany-2.27.5.tar.bz2 Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/epiphany.spec,v retrieving revision 1.236 retrieving revision 1.237 diff -u -p -r1.236 -r1.237 --- epiphany.spec 24 Jul 2009 22:13:22 -0000 1.236 +++ epiphany.spec 28 Jul 2009 17:25:42 -0000 1.237 @@ -7,8 +7,8 @@ Summary: Web browser for GNOME Name: epiphany -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} %define major_version 2.27 Provides: epiphany(abi) = %{major_version} License: GPLv2+ and GFDL @@ -243,6 +243,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/epiphany %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/sources,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- sources 13 Jul 2009 05:33:36 -0000 1.86 +++ sources 28 Jul 2009 17:25:42 -0000 1.87 @@ -1 +1 @@ -35f37bf3150614f1d8ff3f21864737ca epiphany-2.27.4.tar.bz2 +3120755f874853e69f9f501bbd4da1ba epiphany-2.27.5.tar.bz2 From dcbw at fedoraproject.org Tue Jul 28 17:28:54 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 28 Jul 2009 17:28:54 +0000 (UTC) Subject: rpms/NetworkManager/devel nm-applet-internal-buildfixes.patch, 1.12, 1.13 Message-ID: <20090728172854.A510611C00D4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28000 Modified Files: nm-applet-internal-buildfixes.patch Log Message: hopefully the last build fix nm-applet-internal-buildfixes.patch: configure.ac | 8 +------- src/Makefile.am | 8 +++++++- src/connection-editor/Makefile.am | 9 ++++++++- src/gconf-helpers/Makefile.am | 8 +++++++- src/gnome-bluetooth/Makefile.am | 9 ++++++++- src/utils/Makefile.am | 9 ++++++++- src/wireless-security/Makefile.am | 8 +++++++- 7 files changed, 46 insertions(+), 13 deletions(-) Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- nm-applet-internal-buildfixes.patch 28 Jul 2009 17:23:33 -0000 1.12 +++ nm-applet-internal-buildfixes.patch 28 Jul 2009 17:28:54 -0000 1.13 @@ -70,7 +70,7 @@ diff -up NetworkManager-0.7.995/network- diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am --- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am.buildfix 2009-07-28 13:23:40.282718683 -0400 -+++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am 2009-07-28 13:23:19.166718483 -0400 ++++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/gnome-bluetooth/Makefile.am 2009-07-28 13:24:56.316719077 -0400 @@ -6,6 +6,9 @@ INCLUDES = \ -DLOCALEDIR="\"$(datadir)/locale\"" \ -I$(top_srcdir)/src/gconf-helpers/ \ @@ -81,6 +81,19 @@ diff -up NetworkManager-0.7.995/network- $(GNOME_BLUETOOTH_CFLAGS) \ $(WARN_CFLAGS) +@@ -14,7 +17,11 @@ plugin_LTLIBRARIES = libnma.la + + libnma_la_SOURCES = network-manager-applet.c + libnma_la_LDFLAGS = -module -avoid-version +-libnma_la_LIBADD = $(top_builddir)/src/gconf-helpers/libgconf-helpers.la $(GNOME_BLUETOOTH_LIBS) ++libnma_la_LIBADD = \ ++ $(top_builddir)/src/gconf-helpers/libgconf-helpers.la \ ++ $(GNOME_BLUETOOTH_LIBS) \ ++ -L${top_builddir}/../libnm-util $(top_builddir)/../libnm-util/libnm-util.la \ ++ -L${top_builddir}/../libnm-glib $(top_builddir)/../libnm-glib/libnm_glib.la + endif + + EXTRA_DIST = network-manager-applet.c diff -up NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am --- NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am.buildfix 2009-07-27 15:26:53.000000000 -0400 +++ NetworkManager-0.7.995/network-manager-applet-0.7.995/src/Makefile.am 2009-07-28 11:29:11.686841642 -0400 From pkgdb at fedoraproject.org Tue Jul 28 17:36:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:26 +0000 Subject: [pkgdb] rtpproxy ownership updated Message-ID: <20090728173626.279D610F85A@bastion2.fedora.phx.redhat.com> Package rtpproxy in Fedora devel is now owned by peter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:36:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:41 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchbugzilla Message-ID: <20090728173641.3874610F8D4@bastion2.fedora.phx.redhat.com> jcollie has requested the watchbugzilla acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:36:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:45 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested commit Message-ID: <20090728173645.1E5C210F89E@bastion2.fedora.phx.redhat.com> jcollie has requested the commit acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:36:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:47 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchcommits Message-ID: <20090728173647.3976110F8D8@bastion2.fedora.phx.redhat.com> jcollie has requested the watchcommits acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:36:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:45 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested approveacls Message-ID: <20090728173645.89C0110F8D5@bastion2.fedora.phx.redhat.com> jcollie has requested the approveacls acl on rtpproxy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:36:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:36:58 +0000 Subject: [pkgdb] rtpproxy ownership updated Message-ID: <20090728173658.CD34210F8E7@bastion2.fedora.phx.redhat.com> Package rtpproxy in Fedora EPEL 4 is now owned by peter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:04 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchbugzilla Message-ID: <20090728173704.135D810F8E9@bastion2.fedora.phx.redhat.com> jcollie has requested the watchbugzilla acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:04 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchcommits Message-ID: <20090728173704.AE59910F8EC@bastion2.fedora.phx.redhat.com> jcollie has requested the watchcommits acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:07 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested approveacls Message-ID: <20090728173707.38B6F10F8FC@bastion2.fedora.phx.redhat.com> jcollie has requested the approveacls acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:06 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested commit Message-ID: <20090728173706.4488B10F8EF@bastion2.fedora.phx.redhat.com> jcollie has requested the commit acl on rtpproxy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:11 +0000 Subject: [pkgdb] rtpproxy ownership updated Message-ID: <20090728173711.1662710F8BD@bastion2.fedora.phx.redhat.com> Package rtpproxy in Fedora EPEL 5 is now owned by peter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:17 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchbugzilla Message-ID: <20090728173717.6B0DF10F8F3@bastion2.fedora.phx.redhat.com> jcollie has requested the watchbugzilla acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:17 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchcommits Message-ID: <20090728173717.D844510F8F9@bastion2.fedora.phx.redhat.com> jcollie has requested the watchcommits acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:19 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested approveacls Message-ID: <20090728173719.50A5E10F8FF@bastion2.fedora.phx.redhat.com> jcollie has requested the approveacls acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:18 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested commit Message-ID: <20090728173718.6711210F8FD@bastion2.fedora.phx.redhat.com> jcollie has requested the commit acl on rtpproxy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:28 +0000 Subject: [pkgdb] rtpproxy ownership updated Message-ID: <20090728173728.2CA3910F8C5@bastion2.fedora.phx.redhat.com> Package rtpproxy in Fedora 10 is now owned by peter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:31 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchbugzilla Message-ID: <20090728173731.97B4510F8C8@bastion2.fedora.phx.redhat.com> jcollie has requested the watchbugzilla acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:34 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested commit Message-ID: <20090728173734.AE2DE10F906@bastion2.fedora.phx.redhat.com> jcollie has requested the commit acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:31 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchcommits Message-ID: <20090728173731.E8C7410F901@bastion2.fedora.phx.redhat.com> jcollie has requested the watchcommits acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:35 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested approveacls Message-ID: <20090728173735.9A1EC10F909@bastion2.fedora.phx.redhat.com> jcollie has requested the approveacls acl on rtpproxy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:41 +0000 Subject: [pkgdb] rtpproxy ownership updated Message-ID: <20090728173741.A9E8310F8CD@bastion2.fedora.phx.redhat.com> Package rtpproxy in Fedora 11 is now owned by peter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:45 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchbugzilla Message-ID: <20090728173745.D107410F8D0@bastion2.fedora.phx.redhat.com> jcollie has requested the watchbugzilla acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:46 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested watchcommits Message-ID: <20090728173746.5E21510F90C@bastion2.fedora.phx.redhat.com> jcollie has requested the watchcommits acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:47 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested commit Message-ID: <20090728173747.5BBC510F90F@bastion2.fedora.phx.redhat.com> jcollie has requested the commit acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:37:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:37:48 +0000 Subject: [pkgdb] rtpproxy: jcollie has requested approveacls Message-ID: <20090728173748.EC2C610F8B0@bastion2.fedora.phx.redhat.com> jcollie has requested the approveacls acl on rtpproxy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From mtasaka at fedoraproject.org Tue Jul 28 17:38:52 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 17:38:52 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.380, 1.381 jd.spec, 1.443, 1.444 sources, 1.381, 1.382 Message-ID: <20090728173852.5DFE511C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32230 Modified Files: .cvsignore jd.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.380 retrieving revision 1.381 diff -u -p -r1.380 -r1.381 --- .cvsignore 26 Jul 2009 19:10:22 -0000 1.380 +++ .cvsignore 28 Jul 2009 17:38:51 -0000 1.381 @@ -1 +1 @@ -jd-2.4.2-svn2989_trunk.tgz +jd-2.4.2-svn2993_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.443 retrieving revision 1.444 diff -u -p -r1.443 -r1.444 --- jd.spec 26 Jul 2009 19:10:22 -0000 1.443 +++ jd.spec 28 Jul 2009 17:38:52 -0000 1.444 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2989_trunk +%define strtag svn2993_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Mon Jul 27 2009 Mamoru Tasaka -- rev 2989 +* Wed Jul 29 2009 Mamoru Tasaka +- rev 2993 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.381 retrieving revision 1.382 diff -u -p -r1.381 -r1.382 --- sources 26 Jul 2009 19:10:22 -0000 1.381 +++ sources 28 Jul 2009 17:38:52 -0000 1.382 @@ -1 +1 @@ -18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz +adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz From markmc at fedoraproject.org Tue Jul 28 17:40:29 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 17:40:29 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.150,1.151 Message-ID: <20090728174029.ACE7E11C04D6@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv549 Modified Files: libvirt.spec Log Message: - Remove explicit libxml2 requires, again - Build with --without-capng if capng support is disabled Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- libvirt.spec 28 Jul 2009 17:17:13 -0000 1.150 +++ libvirt.spec 28 Jul 2009 17:40:29 -0000 1.151 @@ -207,7 +207,6 @@ the libvirtd server exporting the virtua %package client Summary: client side library and utilities of the libvirt library Group: Development/Libraries -Requires: libxml2 Requires: readline Requires: ncurses # So remote clients can access libvirt over SSH tunnel @@ -339,6 +338,10 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %define _without_numactl --without-numactl %endif +%if ! %{with_capng} +%define _without_capng --without-capng +%endif + %if ! %{with_netcf} %define _without_netcf --without-netcf %endif @@ -363,6 +366,7 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_storage_iscsi} \ %{?_without_storage_disk} \ %{?_without_numactl} \ + %{?_without_capng} \ %{?_without_netcf} \ --with-init-script=redhat \ --with-remote-pid-file=%{_localstatedir}/run/libvirtd.pid @@ -610,6 +614,8 @@ fi - Enable netcf support - Move various requires to the libvirt-client sub-package - Sync some trivial cleanups from upstream spec file +- Remove explicit libxml2 requires, again +- Build with --without-capng if capng support is disabled * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) From markmc at fedoraproject.org Tue Jul 28 17:41:33 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 17:41:33 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.151,1.152 Message-ID: <20090728174133.DF21D11C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1195 Modified Files: libvirt.spec Log Message: - Pass --with-qemu-user=qemu etc. to configure Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.151 retrieving revision 1.152 diff -u -p -r1.151 -r1.152 --- libvirt.spec 28 Jul 2009 17:40:29 -0000 1.151 +++ libvirt.spec 28 Jul 2009 17:41:33 -0000 1.152 @@ -368,6 +368,8 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_numactl} \ %{?_without_capng} \ %{?_without_netcf} \ + --with-qemu-user=%{qemu_user} \ + --with-qemu-group=%{qemu_group} \ --with-init-script=redhat \ --with-remote-pid-file=%{_localstatedir}/run/libvirtd.pid make %{?_smp_mflags} @@ -612,6 +614,7 @@ fi %changelog * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.3.gitf055724 - Enable netcf support +- Pass --with-qemu-user=qemu etc. to configure - Move various requires to the libvirt-client sub-package - Sync some trivial cleanups from upstream spec file - Remove explicit libxml2 requires, again From fabbione at fedoraproject.org Tue Jul 28 17:41:32 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 17:41:32 +0000 (UTC) Subject: rpms/fence-agents/F-11 fence-agents.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090728174132.9116611C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/fence-agents/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1119 Modified Files: fence-agents.spec sources Log Message: New upstream stable release fixes several bugs Index: fence-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/F-11/fence-agents.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fence-agents.spec 24 Mar 2009 09:16:31 -0000 1.8 +++ fence-agents.spec 28 Jul 2009 17:41:32 -0000 1.9 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc1 +## define alphatag rc4 Name: fence-agents Summary: Fence Agents for Red Hat Cluster Version: 3.0.0 -Release: 10%{?alphatag:.%{alphatag}}%{?dist} +Release: 14%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -31,25 +31,16 @@ Requires: pexpect net-snmp-utils pyOpenS ## Setup/build bits -# build support for virtualization -%define buildvirt 0 -%ifarch i386 i486 i586 i686 x86_64 ia64 -%define buildvirt 1 -%endif - BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Build dependencies BuildRequires: perl python BuildRequires: glibc-devel - -%if %{buildvirt} -BuildRequires: libxml2-devel +BuildRequires: nss-devel nspr-devel +BuildRequires: libxml2-devel libvirt-devel BuildRequires: clusterlib-devel >= 3.0.0 -BuildRequires: corosynclib-devel >= 0.95-1 -BuildRequires: openaislib-devel >= 0.94-1 -BuildRequires: nss-devel nspr-devel libvirt-devel -%endif +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 %prep %setup -q -n fence-agents-%{version}%{?alphatag:.%{alphatag}} @@ -62,10 +53,6 @@ BuildRequires: nss-devel nspr-devel libv --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ -%if %{buildvirt} - --enable_virt \ - --openaislibdir=%{_libdir}/openais \ -%endif --disable_kernel_check ##CFLAGS="$(echo '%{optflags}')" make %{_smp_mflags} @@ -80,7 +67,6 @@ make -C fence/man install DESTDIR=%{buil ## tree fix up # fix libfence permissions chmod 0755 %{buildroot}%{_datadir}/fence/*.py -chmod 0755 %{buildroot}%{_datadir}/fence/telnet_ssl %clean rm -rf %{buildroot} @@ -97,6 +83,31 @@ power management for several devices. %{_mandir}/man8/fence* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-14 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. + +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-13.rc4 +- New upstream release. +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Drop --enable_virt. Now default upstream + +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-12.rc3 +- New upstream release. +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-11.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Build fence_xvm unconditionally now that libvirt is everywhere + * Drop telnet_ssl wrapper in favour of nss version + * Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-10.rc1 - New upstream release. - Cleanup BuildRequires to avoid to pull in tons of stuff when it's not Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 24 Mar 2009 09:16:31 -0000 1.6 +++ sources 28 Jul 2009 17:41:32 -0000 1.7 @@ -1 +1 @@ -a680218a4d297608232f51281445e150 fence-agents-3.0.0.rc1.tar.gz +7bc650a9654a4e5059120243666b5eb5 fence-agents-3.0.0.tar.gz From fabbione at fedoraproject.org Tue Jul 28 17:43:11 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 17:43:11 +0000 (UTC) Subject: rpms/resource-agents/F-11 resource-agents.spec, 1.6, 1.7 sources, 1.6, 1.7 Message-ID: <20090728174311.54CEA11C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/resource-agents/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2121 Modified Files: resource-agents.spec sources Log Message: New upstream release fixes several bugs Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/F-11/resource-agents.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- resource-agents.spec 24 Mar 2009 09:23:14 -0000 1.6 +++ resource-agents.spec 28 Jul 2009 17:43:11 -0000 1.7 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc1 +## define alphatag rc4 Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 8%{?alphatag:.%{alphatag}}%{?dist} +Release: 12%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -72,6 +72,21 @@ services to operate in a High Availabili %{_datadir}/cluster %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-12 +- New upstream release. +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-11.rc4 +- New upstream release. + +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-10.rc3 +- New upstream release. + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-9.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 + * Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-8.rc1 - New upstream release. - Update BuildRoot usage to preferred versions/names Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 24 Mar 2009 09:23:14 -0000 1.6 +++ sources 28 Jul 2009 17:43:11 -0000 1.7 @@ -1 +1 @@ -0ec51a4e63e88bcfd123fb8980d8da7d resource-agents-3.0.0.rc1.tar.gz +485253db9ea4d48d38d7a0aef84cf660 resource-agents-3.0.0.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 17:44:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:00 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174400.C712510F88F@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora devel) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:01 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174401.B37D510F890@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora devel) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:03 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174403.2C61B10F89F@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora devel) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:04 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174404.E94EB10F8B1@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora devel) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:11 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174411.F1CB010F8BC@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora EPEL 4) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:13 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174413.D9E3010F8C0@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora EPEL 4) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:13 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174413.4224710F8BE@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora EPEL 4) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:15 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174415.241D310F8C3@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 4) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:19 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174419.7D77910F8C8@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora EPEL 5) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:20 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174420.6A63E10F8CD@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora EPEL 5) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:21 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174422.0E0E310F8D0@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora EPEL 5) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:24 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174424.D7E7D10F8D2@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 5) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:32 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174432.608D310F8D1@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora 10) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:34 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174435.05E6010F8D5@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora 10) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:36 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174436.594A710F8D6@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 10) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:37 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174437.8E50A10F8DD@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora 10) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:43 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174443.AAED210F8E4@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on rtpproxy (Fedora 11) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:43 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174443.669A710F8E1@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on rtpproxy (Fedora 11) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:44 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174444.AED8610F8EB@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora 11) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:44:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:44:46 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174446.53B1F10F8EF@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 11) to Approved for jcollie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:02 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174602.D171C10F891@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:03 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174603.A719410F8C4@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:08 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174608.D740110F8C7@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:10 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174610.80C6710F8CB@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:14 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174614.A662A10F8D1@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:16 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174616.25FA410F8FA@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:20 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174620.EC3DA10F908@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:21 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174621.9E27810F90C@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:28 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174628.4D37510F90F@bastion2.fedora.phx.redhat.com> peter has set the commit acl on rtpproxy (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Tue Jul 28 17:46:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 17:46:29 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090728174629.AA3F610F911@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From nsantos at fedoraproject.org Tue Jul 28 17:11:13 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Tue, 28 Jul 2009 17:11:13 +0000 (UTC) Subject: rpms/ruby-qpid/F-10 .cvsignore, 1.14, 1.15 ruby-qpid.spec, 1.23, 1.24 sources, 1.15, 1.16 Message-ID: <20090728171113.169DC11C00D4@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18934 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 795209 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 6 Jul 2009 19:59:56 -0000 1.14 +++ .cvsignore 28 Jul 2009 17:11:12 -0000 1.15 @@ -1 +1 @@ -ruby-qpid-0.5.791584.tar.gz +ruby-qpid-0.5.795209.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/ruby-qpid.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ruby-qpid.spec 6 Jul 2009 19:59:56 -0000 1.23 +++ ruby-qpid.spec 28 Jul 2009 17:11:12 -0000 1.24 @@ -1,5 +1,5 @@ Name: ruby-qpid -Version: 0.5.791584 +Version: 0.5.795209 Release: 1%{?dist} Summary: Ruby language client for AMQP @@ -22,12 +22,12 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: ruby BuildRequires: ruby-devel BuildRequires: rubygem-rake -BuildRequires: amqp >= 1.0.%{version} +BuildRequires: amqp >= 1.0.790661 BuildRequires: cyrus-sasl-devel Requires: ruby Requires: ruby(abi) = 1.8 -Requires: amqp >= 1.0.%{version} +Requires: amqp >= 1.0.790661 Requires: cyrus-sasl Provides: ruby(qpid) = %{version} @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Tue Jul 28 2009 Nuno Santos - 0.5.795209-1 +- Rebased to svn rev 795209 + * Mon Jul 6 2009 Nuno Santos - 0.5.791584-1 - Rebased to svn rev 791584 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 6 Jul 2009 19:59:56 -0000 1.15 +++ sources 28 Jul 2009 17:11:12 -0000 1.16 @@ -1 +1 @@ -118963541a81027a8a377f1643ea9162 ruby-qpid-0.5.791584.tar.gz +38a0a3a6f4678c8812bafae146d6c00d ruby-qpid-0.5.795209.tar.gz From fabbione at fedoraproject.org Tue Jul 28 17:49:26 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 17:49:26 +0000 (UTC) Subject: rpms/lvm2/F-11 lvm2.spec, 1.158, 1.159 lvm2-2_02_48-cluster-cpg-new-api-reverse.patch, 1.1, NONE Message-ID: <20090728174926.A0E5D11C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/lvm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4883 Modified Files: lvm2.spec Removed Files: lvm2-2_02_48-cluster-cpg-new-api-reverse.patch Log Message: Update BuildRequires and Requires for new stable corosync and cluster. Drop lvm2-2_02_48-cluster-cpg-new-api-reverse.patch that's no longer required. Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/F-11/lvm2.spec,v retrieving revision 1.158 retrieving revision 1.159 diff -u -p -r1.158 -r1.159 --- lvm2.spec 2 Jul 2009 20:45:24 -0000 1.158 +++ lvm2.spec 28 Jul 2009 17:49:26 -0000 1.159 @@ -1,6 +1,6 @@ %define device_mapper_version 1.02.33 -%define corosync_version 0.95-2 -%define clusterlib_version 3.0.0-12.alpha6 +%define corosync_version 1.0.0-1 +%define clusterlib_version 3.0.0-20 # Do not reset Release to 1 unless both lvm2 and device-mapper # versions are increased together. @@ -8,7 +8,7 @@ Summary: Userland logical volume management tools Name: lvm2 Version: 2.02.48 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base URL: http://sources.redhat.com/lvm2 @@ -16,7 +16,6 @@ Source0: ftp://sources.redhat.com/pub/lv # Customise lvmconf.sh for built-in clustered locking in Fedora Patch0: cluster-locking-built-in.patch -Patch1: lvm2-2_02_48-cluster-cpg-new-api-reverse.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libselinux-devel >= 1.30.19-4, libsepol-devel @@ -42,7 +41,6 @@ or more physical volumes and creating on %prep %setup -q -n LVM2.%{version} %patch0 -p1 -b .locking -%patch1 -p1 -b .cpg %build %define _exec_prefix / @@ -268,6 +266,10 @@ This package contains the device-mapper %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 2.02.48-2 +- Update BuildRequires and Requires to use latest stable versions of + corosynclib and clusterlib. + * Thu Jul 2 2009 Peter Rajnoha - 2.02.48-1 - Abort if automatic metadata correction fails when reading VG to update it. - Don't fallback to default major number in libdm: use dm_task_set_major_minor. --- lvm2-2_02_48-cluster-cpg-new-api-reverse.patch DELETED --- From jcollie at fedoraproject.org Tue Jul 28 17:50:20 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 17:50:20 +0000 (UTC) Subject: rpms/libss7/devel .cvsignore, 1.2, 1.3 libss7.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090728175020.634B111C04D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/libss7/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5585 Modified Files: .cvsignore libss7.spec sources Log Message: * Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.2-1 - Update to 1.0.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libss7/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Oct 2008 17:43:21 -0000 1.2 +++ .cvsignore 28 Jul 2009 17:50:20 -0000 1.3 @@ -1 +1 @@ -libss7-1.0.1.tar.gz +libss7-1.0.2.tar.gz Index: libss7.spec =================================================================== RCS file: /cvs/pkgs/rpms/libss7/devel/libss7.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libss7.spec 25 Jul 2009 08:41:28 -0000 1.4 +++ libss7.spec 28 Jul 2009 17:50:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: libss7 -Version: 1.0.1 -Release: 5%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: SS7 protocol services to applications Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.2-1 +- Update to 1.0.2 + * Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libss7/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Oct 2008 17:43:21 -0000 1.2 +++ sources 28 Jul 2009 17:50:20 -0000 1.3 @@ -1 +1 @@ -36d86c2b6a61512a0f61d48a8f6ff64c libss7-1.0.1.tar.gz +0d6b9853d7e156ce2815d2167b9eebb9 libss7-1.0.2.tar.gz From markmc at fedoraproject.org Tue Jul 28 18:02:50 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 18:02:50 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.152,1.153 Message-ID: <20090728180250.6B42E11C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11442 Modified Files: libvirt.spec Log Message: - Remove explicit dir creating in makeinstall, replaced by attr in files Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.152 retrieving revision 1.153 diff -u -p -r1.152 -r1.153 --- libvirt.spec 28 Jul 2009 17:41:33 -0000 1.152 +++ libvirt.spec 28 Jul 2009 18:02:50 -0000 1.153 @@ -389,13 +389,6 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/*.a rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a -install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/run/libvirt/ -# Default dir for disk images defined in SELinux policy -install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/images/ -# Default dir for kernel+initrd images defined in SELinux policy -install -d -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/lib/libvirt/boot/ -# used for virDomainMemoryPeek -install -d -m 0700 $RPM_BUILD_ROOT%{_localstatedir}/cache/libvirt/ %if %{with_qemu} # We don't want to install /etc/libvirt/qemu/networks in the main %files list @@ -619,6 +612,7 @@ fi - Sync some trivial cleanups from upstream spec file - Remove explicit libxml2 requires, again - Build with --without-capng if capng support is disabled +- Remove explicit dir creating in makeinstall, replaced by attr in files * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) From pkgdb at fedoraproject.org Tue Jul 28 18:06:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:15 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180615.3330710F85A@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on mISDN (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:16 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180616.9E87610F890@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on mISDN (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:18 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180618.43BF710F89D@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on mISDN (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:20 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180620.6DDA110F8A1@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on mISDN (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:28 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180628.82CFD10F8B5@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on mISDN (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:29 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180629.950C410F8B9@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on mISDN (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:30 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180630.DA4D510F8BD@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on mISDN (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:35 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180635.6E19110F8C1@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on mISDN (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:38 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180638.8CBD410F88F@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchbugzilla acl on mISDN (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:39 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180639.E13BD10F8C3@bastion2.fedora.phx.redhat.com> dwmw2 has set the watchcommits acl on mISDN (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From pkgdb at fedoraproject.org Tue Jul 28 18:06:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:41 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180641.1336610F8C6@bastion2.fedora.phx.redhat.com> dwmw2 has set the commit acl on mISDN (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From markmc at fedoraproject.org Tue Jul 28 18:06:43 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 18:06:43 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.153,1.154 Message-ID: <20090728180643.E5C9711C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13071 Modified Files: libvirt.spec Log Message: - Set perms on /var/{run,lib,cache}/libvirt/qemu Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.153 retrieving revision 1.154 diff -u -p -r1.153 -r1.154 --- libvirt.spec 28 Jul 2009 18:02:50 -0000 1.153 +++ libvirt.spec 28 Jul 2009 18:06:43 -0000 1.154 @@ -493,8 +493,9 @@ fi %dir %attr(0700, root, root) %{_localstatedir}/cache/libvirt/ %if %{with_qemu} -%dir %{_localstatedir}/run/libvirt/qemu/ -%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/qemu/ +%dir %attr(0700, %{qemu_user}, %{qemu_group}) %{_localstatedir}/run/libvirt/qemu/ +%dir %attr(0700, %{qemu_user}, %{qemu_group}) %{_localstatedir}/lib/libvirt/qemu/ +%dir %attr(0700, %{qemu_user}, %{qemu_group}) %{_localstatedir}/cache/libvirt/qemu/ %endif %if %{with_lxc} %dir %{_localstatedir}/run/libvirt/lxc/ @@ -613,6 +614,7 @@ fi - Remove explicit libxml2 requires, again - Build with --without-capng if capng support is disabled - Remove explicit dir creating in makeinstall, replaced by attr in files +- Set perms on /var/{run,lib,cache}/libvirt/qemu * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.2.gitf055724 - Drop glusterfs dep to 2.0.1 (bug #514191) From pkgdb at fedoraproject.org Tue Jul 28 18:06:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 18:06:42 +0000 Subject: [pkgdb] mISDN had acl change status Message-ID: <20090728180642.D415510F8C9@bastion2.fedora.phx.redhat.com> dwmw2 has set the approveacls acl on mISDN (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mISDN From fabbione at fedoraproject.org Tue Jul 28 18:07:52 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Tue, 28 Jul 2009 18:07:52 +0000 (UTC) Subject: rpms/qpidc/F-11 qpidc_798397.diff, NONE, 1.1 qpidc_798518.diff, NONE, 1.1 qpidc_f12_new_cpg.diff, NONE, 1.1 qpidc.spec, 1.84, 1.85 Message-ID: <20090728180752.AC54011C00D4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/qpidc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13307 Modified Files: qpidc.spec Added Files: qpidc_798397.diff qpidc_798518.diff qpidc_f12_new_cpg.diff Log Message: - Update BuildRequires and Requires to use latest stable versions of corosync and clusterlib. - Sync spec file changelog from rawhide. - Unbreak perftests define (and fix vim spec syntax coloring). - Apply qpidc_f12_new_cpg.diff from rawhide. - Apply svn commits r798397 and r798518 from svn trunk to unbreak testsuite. qpidc_798397.diff: .valgrind.supp | 9 +++++++++ 1 file changed, 9 insertions(+) --- NEW FILE qpidc_798397.diff --- --- a/src/tests/.valgrind.supp 2009/07/28 04:24:19 798396 +++ b/src/tests/.valgrind.supp 2009/07/28 04:37:32 798397 @@ -236,3 +236,12 @@ fun:_sasl_load_plugins fun:sasl_client_init } + +{ + Seems like a use after delete issue in boost unit_test + Memcheck:Addr8 + fun:_ZN5boost9unit_test14framework_implD1Ev + fun:exit + fun:(below main) +} + qpidc_798518.diff: .valgrind.supp | 8 ++++++++ 1 file changed, 8 insertions(+) --- NEW FILE qpidc_798518.diff --- diff -Naurd qpidc-0.5.790661.orig/src/tests/.valgrind.supp qpidc-0.5.790661/src/tests/.valgrind.supp --- qpidc-0.5.790661.orig/src/tests/.valgrind.supp 2009-07-28 13:05:18.000000000 +0200 +++ qpidc-0.5.790661/src/tests/.valgrind.supp 2009-07-28 13:06:09.000000000 +0200 @@ -245,3 +245,11 @@ fun:(below main) } +{ + Seems like a use after delete issue in boost unit_test + Memcheck:Addr4 + fun:_ZN5boost9unit_test14framework_implD1Ev + fun:exit + fun:(below main) +} + qpidc_f12_new_cpg.diff: Cluster.cpp | 14 +++++++------- Cluster.cpp.orig |only Cluster.h | 12 ++++++------ Cluster.h.orig |only Cpg.cpp | 12 ++++++------ Cpg.h | 24 ++++++++++++------------ 6 files changed, 31 insertions(+), 31 deletions(-) --- NEW FILE qpidc_f12_new_cpg.diff --- diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cluster.cpp qpidc-0.5.788782.new/src/qpid/cluster/Cluster.cpp --- qpidc-0.5.788782/src/qpid/cluster/Cluster.cpp 2009-06-18 17:25:00.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cluster.cpp 2009-06-29 14:02:02.980566645 -0400 @@ -292,11 +292,11 @@ // Deliver CPG message. void Cluster::deliver( cpg_handle_t /*handle*/, - cpg_name* /*group*/, + const cpg_name* /*group*/, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len) + size_t msg_len) { MemberId from(nodeid, pid); framing::Buffer buf(static_cast(msg), msg_len); @@ -453,10 +453,10 @@ void Cluster::configChange ( cpg_handle_t /*handle*/, - cpg_name */*group*/, - cpg_address *current, int nCurrent, - cpg_address *left, int nLeft, - cpg_address */*joined*/, int /*nJoined*/) + const cpg_name */*group*/, + const cpg_address *current, size_t nCurrent, + const cpg_address *left, size_t nLeft, + const cpg_address */*joined*/, size_t /*nJoined*/) { Mutex::ScopedLock l(lock); if (state == INIT) { // First config change. @@ -467,7 +467,7 @@ QPID_LOG(debug, *this << " config change: " << AddrList(current, nCurrent) << AddrList(left, nLeft, "left: ")); std::string addresses; - for (cpg_address* p = current; p < current+nCurrent; ++p) + for (const cpg_address* p = current; p < current+nCurrent; ++p) addresses.append(MemberId(*p).str()); deliverEvent(Event::control(ClusterConfigChangeBody(ProtocolVersion(), addresses), self)); } Only in qpidc-0.5.788782.new/src/qpid/cluster: Cluster.cpp.orig diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cluster.h qpidc-0.5.788782.new/src/qpid/cluster/Cluster.h --- qpidc-0.5.788782/src/qpid/cluster/Cluster.h 2009-06-18 17:25:00.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cluster.h 2009-06-29 14:02:02.982566348 -0400 @@ -159,20 +159,20 @@ // == Called in CPG dispatch thread void deliver( // CPG deliver callback. cpg_handle_t /*handle*/, - struct cpg_name *group, + const struct cpg_name *group, uint32_t /*nodeid*/, uint32_t /*pid*/, void* /*msg*/, - int /*msg_len*/); + size_t /*msg_len*/); void deliverEvent(const Event&); void configChange( // CPG config change callback. cpg_handle_t /*handle*/, - struct cpg_name */*group*/, - struct cpg_address */*members*/, int /*nMembers*/, - struct cpg_address */*left*/, int /*nLeft*/, - struct cpg_address */*joined*/, int /*nJoined*/ + const struct cpg_name */*group*/, + const struct cpg_address */*members*/, size_t /*nMembers*/, + const struct cpg_address */*left*/, size_t /*nLeft*/, + const struct cpg_address */*joined*/, size_t /*nJoined*/ ); // == Called in management threads. Only in qpidc-0.5.788782.new/src/qpid/cluster: Cluster.h.orig diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cpg.cpp qpidc-0.5.788782.new/src/qpid/cluster/Cpg.cpp --- qpidc-0.5.788782/src/qpid/cluster/Cpg.cpp 2009-06-18 12:22:19.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cpg.cpp 2009-06-29 14:02:02.983566410 -0400 @@ -44,21 +44,21 @@ // Global callback functions. void Cpg::globalDeliver ( cpg_handle_t handle, - struct cpg_name *group, + const struct cpg_name *group, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len) + size_t msg_len) { cpgFromHandle(handle)->handler.deliver(handle, group, nodeid, pid, msg, msg_len); } void Cpg::globalConfigChange( cpg_handle_t handle, - struct cpg_name *group, - struct cpg_address *members, int nMembers, - struct cpg_address *left, int nLeft, - struct cpg_address *joined, int nJoined + const struct cpg_name *group, + const struct cpg_address *members, size_t nMembers, + const struct cpg_address *left, size_t nLeft, + const struct cpg_address *joined, size_t nJoined ) { cpgFromHandle(handle)->handler.configChange(handle, group, members, nMembers, left, nLeft, joined, nJoined); diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cpg.h qpidc-0.5.788782.new/src/qpid/cluster/Cpg.h --- qpidc-0.5.788782/src/qpid/cluster/Cpg.h 2009-02-26 12:21:40.000000000 -0500 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cpg.h 2009-06-29 14:02:02.984566541 -0400 @@ -68,18 +68,18 @@ virtual ~Handler() {}; virtual void deliver( cpg_handle_t /*handle*/, - struct cpg_name *group, + const struct cpg_name *group, uint32_t /*nodeid*/, uint32_t /*pid*/, void* /*msg*/, - int /*msg_len*/) = 0; + size_t /*msg_len*/) = 0; virtual void configChange( cpg_handle_t /*handle*/, - struct cpg_name */*group*/, - struct cpg_address */*members*/, int /*nMembers*/, - struct cpg_address */*left*/, int /*nLeft*/, - struct cpg_address */*joined*/, int /*nJoined*/ + const struct cpg_name */*group*/, + const struct cpg_address */*members*/, size_t /*nMembers*/, + const struct cpg_address */*left*/, size_t /*nLeft*/, + const struct cpg_address */*joined*/, size_t /*nJoined*/ ) = 0; }; @@ -128,18 +128,18 @@ static void globalDeliver( cpg_handle_t handle, - struct cpg_name *group, + const struct cpg_name *group, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len); + size_t msg_len); static void globalConfigChange( cpg_handle_t handle, - struct cpg_name *group, - struct cpg_address *members, int nMembers, - struct cpg_address *left, int nLeft, - struct cpg_address *joined, int nJoined + const struct cpg_name *group, + const struct cpg_address *members, size_t nMembers, + const struct cpg_address *left, size_t nLeft, + const struct cpg_address *joined, size_t nJoined ); cpg_handle_t handle; Index: qpidc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qpidc/F-11/qpidc.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- qpidc.spec 2 Jul 2009 19:13:31 -0000 1.84 +++ qpidc.spec 28 Jul 2009 18:07:52 -0000 1.85 @@ -9,13 +9,16 @@ Name: qpidc Version: 0.5.790661 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries License: ASL 2.0 URL: http://qpid.apache.org Source0: %{name}-%{version}.tar.gz Source1: qpidd.pp +Patch1: qpidc_f12_new_cpg.diff +Patch2: qpidc_798397.diff +Patch3: qpidc_798518.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: boost-devel @@ -36,8 +39,8 @@ BuildRequires: nss-devel BuildRequires: nspr-devel BuildRequires: xqilla-devel BuildRequires: xerces-c-devel -BuildRequires: corosync-devel -BuildRequires: cmanlib-devel +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: clusterlib-devel >= 3.0.0-20 BuildRequires: swig Requires: boost @@ -187,8 +190,8 @@ Summary: Cluster support for the Qpid da Group: System Environment/Daemons Requires: qpidd = %version-%release Requires: qpidc = %version-%release -Requires: corosync -Requires: cmanlib +Requires: corosync >= 1.0.0-1 +Requires: clusterlib >= 3.0.0-20 %description -n qpidd-cluster A Qpid daemon plugin enabling broker clustering using openais @@ -210,9 +213,11 @@ exit 0 %prep %setup -q +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 -%define perftests "perftest topic_listener topic_publisher \ - latencytest client_test txtest" +%define perftests "perftest topic_listener topic_publisher latencytest client_test txtest" install -d selinux install %{SOURCE1} selinux @@ -437,6 +442,15 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 0.5.790661-2 +- Update BuildRequires and Requires to use latest stable versions of + corosync and clusterlib. +- Sync spec file changelog from rawhide. +- Unbreak perftests define (and fix vim spec syntax coloring). +- Apply qpidc_f12_new_cpg.diff from rawhide. +- Apply svn commits r798397 and r798518 from svn trunk to unbreak + testsuite. + * Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 - Rebased to svn rev 790661; .so lib numbers bumped @@ -446,9 +460,22 @@ fi * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.5.752600-8 +- update BuildRequires to use corosynclib-devel in correct version. +- update BuildRequires to use clusterlib-devel instead of the obsoleted + cmanlib-devel. +- drop Requires on cmanlib. This should come in automatically as part + of the rpm build process. +- re-align package version to -8. -7 didn't have a changelog entry? +- add patch to port Cluster/Cpg to newest Cpg code. +- change patch tag to use patch0. + * Mon May 4 2009 Nuno Santos - 0.5.752600-5 - patch for SASL credentials refresh +* Wed Apr 1 2009 Michael Schwendt - 0.5.752600-5 +- Fix unowned examples directory in -devel pkg. + * Mon Mar 16 2009 Nuno Santos - 0.5.752600-4 - BZ483925 - split docs into a separate noarch subpackage From markmc at fedoraproject.org Tue Jul 28 18:13:10 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Tue, 28 Jul 2009 18:13:10 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.154,1.155 Message-ID: <20090728181310.21C3F11C00D4@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16119 Modified Files: libvirt.spec Log Message: Fix some more trivial differences between upstream spec Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.154 retrieving revision 1.155 diff -u -p -r1.154 -r1.155 --- libvirt.spec 28 Jul 2009 18:06:43 -0000 1.154 +++ libvirt.spec 28 Jul 2009 18:13:09 -0000 1.155 @@ -579,7 +579,7 @@ fi %dir %{_includedir}/libvirt %{_includedir}/libvirt/*.h %{_libdir}/pkgconfig/libvirt.pc -%dir %{_datadir}/gtk-doc/html/libvirt +%dir %{_datadir}/gtk-doc/html/libvirt/ %doc %{_datadir}/gtk-doc/html/libvirt/*.devhelp %doc %{_datadir}/gtk-doc/html/libvirt/*.html %doc %{_datadir}/gtk-doc/html/libvirt/*.png @@ -601,8 +601,6 @@ fi %doc python/TODO %doc python/libvirtclass.txt %doc docs/examples/python -# %dir %{_datadir}/doc/libvirt-%{version}-%{release}/examples -# %{_datadir}/doc/libvirt-%{version}-%{release}/examples/*.py %endif %changelog From mtasaka at fedoraproject.org Tue Jul 28 18:13:48 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:48 +0000 (UTC) Subject: rpms/rubygem-nokogiri/devel .cvsignore, 1.7, 1.8 rubygem-nokogiri.spec, 1.10, 1.11 sources, 1.7, 1.8 rubygem-nokogiri-1.3.2-rake-valgrind-error.patch, 1.1, NONE Message-ID: <20090728181348.CE8F311C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-nokogiri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-nokogiri/devel Modified Files: .cvsignore rubygem-nokogiri.spec sources Removed Files: rubygem-nokogiri-1.3.2-rake-valgrind-error.patch Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 Jun 2009 18:22:46 -0000 1.7 +++ .cvsignore 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -nokogiri-1.3.2.gem +nokogiri-1.3.3.gem Index: rubygem-nokogiri.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/devel/rubygem-nokogiri.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- rubygem-nokogiri.spec 25 Jul 2009 07:07:57 -0000 1.10 +++ rubygem-nokogiri.spec 28 Jul 2009 18:13:48 -0000 1.11 @@ -6,15 +6,18 @@ %define gemname nokogiri %define geminstdir %{gemdir}/gems/%{gemname}-%{version} +# Note for packager: +# Check if we can update nokogiri to 1.4.0 on < F-12: +# It seems that some functions will be removed on 1.4.0 + Summary: An HTML, XML, SAX, and Reader parser Name: rubygem-%{gemname} -Version: 1.3.2 -Release: 3%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://nokogiri.rubyforge.org/nokogiri/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -Patch0: rubygem-nokogiri-1.3.2-rake-valgrind-error.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby(abi) = %{rubyabi} @@ -68,9 +71,6 @@ gem install \ -V --force \ %{SOURCE0} -pushd ./%{geminstdir} -%patch0 -p1 -b .valgrind - %build # cflags wrong (-O3 passed), recompiling pushd ./%{geminstdir} @@ -198,6 +198,9 @@ popd %{ruby_sitelib}/xsd/ %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 1.3.3-1 +- 1.3.3 + * Sat Jul 25 2009 Mamoru Tasaka - 1.3.2-3 - F-12: Mass rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 18:22:46 -0000 1.7 +++ sources 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -c5eedaef31f91b0443066a3b44ef66c9 nokogiri-1.3.2.gem +24f7b482886690b723ce6f74d6d879f4 nokogiri-1.3.3.gem --- rubygem-nokogiri-1.3.2-rake-valgrind-error.patch DELETED --- From mtasaka at fedoraproject.org Tue Jul 28 18:13:49 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:49 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/devel .cvsignore, 1.2, 1.3 rubygem-rake-compiler.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090728181349.7843011C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-rake-compiler/devel Modified Files: .cvsignore rubygem-rake-compiler.spec sources Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 +++ .cvsignore 28 Jul 2009 18:13:49 -0000 1.3 @@ -1 +1 @@ -rake-compiler-0.5.0.gem +rake-compiler-0.6.0.gem Index: rubygem-rake-compiler.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/rubygem-rake-compiler.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-rake-compiler.spec 25 Jul 2009 07:10:18 -0000 1.2 +++ rubygem-rake-compiler.spec 28 Jul 2009 18:13:49 -0000 1.3 @@ -6,8 +6,8 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} -Version: 0.5.0 -Release: 2%{?dist} +Version: 0.6.0 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 0.6.0-1 +- 0.6.0 + * Sat Jul 25 2009 Mamoru Tasaka - 0.5.0-2 - F-12: Mass rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Jul 2009 05:36:30 -0000 1.2 +++ sources 28 Jul 2009 18:13:49 -0000 1.3 @@ -1 +1 @@ -8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem +9a8edefde6ca9df9222f6cfe3973c130 rake-compiler-0.6.0.gem From jjohnstn at fedoraproject.org Tue Jul 28 18:25:34 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Tue, 28 Jul 2009 18:25:34 +0000 (UTC) Subject: rpms/eclipse-rse/devel eclipse-rse.spec, 1.2, 1.3 fetch-rse.sh, 1.1, 1.2 Message-ID: <20090728182534.2355711C00D4@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21935 Modified Files: eclipse-rse.spec fetch-rse.sh Log Message: * Tue Jul 28 2009 Jeff Johnston 3.0.3-3 - Restrict arch support to those supported by prereq CDT. Index: eclipse-rse.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-rse/devel/eclipse-rse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- eclipse-rse.spec 24 Jul 2009 20:57:47 -0000 1.2 +++ eclipse-rse.spec 28 Jul 2009 18:25:33 -0000 1.3 @@ -4,7 +4,7 @@ Name: eclipse-rse Summary: Eclipse Remote System Explorer Version: 3.0.3 -Release: 2%{?dist} +Release: 3%{?dist} License: EPL URL: http://www.eclipse.org/dsdp/tm/ @@ -19,7 +19,10 @@ BuildRoot: %{_tmppath}/%{name}-%{versio BuildRequires: java-devel >= 1.5.0 -BuildArch: noarch +# Currently, upstream CDT only supports building on the platforms listed here. +# Since this version of RSE requires CDT, we must restrict the same arches. +# FIXME: this problem will go away with RSE 3.1 which does not prereq the CDT. +ExclusiveArch: %{ix86} x86_64 ppc ia64 BuildRequires: eclipse-pde >= 1:3.4.1 BuildRequires: eclipse-cdt >= 1:5.0.1 @@ -91,6 +94,9 @@ rm -rf %{buildroot} %doc org.eclipse.rse.sdk-feature/license.html %changelog +* Tue Jul 28 2009 Jeff Johnston 3.0.3-3 +- Restrict arch support to those supported by prereq CDT. + * Fri Jul 24 2009 Fedora Release Engineering - 3.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fetch-rse.sh =================================================================== RCS file: /cvs/extras/rpms/eclipse-rse/devel/fetch-rse.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fetch-rse.sh 23 Jul 2009 20:24:06 -0000 1.1 +++ fetch-rse.sh 28 Jul 2009 18:25:33 -0000 1.2 @@ -1,8 +1,8 @@ #!/bin/sh NAME=rse -TM_TAG=R3_0_3 -RSE_TAG=R3_0_3 +TM_TAG=R3_1 +RSE_TAG=R3_1 rm -rf temp mkdir temp @@ -11,8 +11,8 @@ flat=rse-${RSE_TAG} mkdir ${flat} -VERSION="3.0.3" -TAG="200902181300" +VERSION="3.1" +TAG="200906171400" echo "Exporting from CVS..." From mtasaka at fedoraproject.org Tue Jul 28 18:29:52 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:29:52 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.387, 1.388 jd.spec, 1.447, 1.448 sources, 1.388, 1.389 Message-ID: <20090728182952.A6E5411C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25025/F-10 Modified Files: .cvsignore jd.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.387 retrieving revision 1.388 diff -u -p -r1.387 -r1.388 --- .cvsignore 26 Jul 2009 19:27:21 -0000 1.387 +++ .cvsignore 28 Jul 2009 18:29:52 -0000 1.388 @@ -1 +1 @@ -jd-2.4.2-svn2989_trunk.tgz +jd-2.4.2-svn2993_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.447 retrieving revision 1.448 diff -u -p -r1.447 -r1.448 --- jd.spec 26 Jul 2009 19:27:21 -0000 1.447 +++ jd.spec 28 Jul 2009 18:29:52 -0000 1.448 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2989_trunk +%define strtag svn2993_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Mon Jul 27 2009 Mamoru Tasaka -- rev 2989 +* Wed Jul 29 2009 Mamoru Tasaka +- rev 2993 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.388 retrieving revision 1.389 diff -u -p -r1.388 -r1.389 --- sources 26 Jul 2009 19:27:21 -0000 1.388 +++ sources 28 Jul 2009 18:29:52 -0000 1.389 @@ -1 +1 @@ -18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz +adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz From mtasaka at fedoraproject.org Tue Jul 28 18:29:53 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:29:53 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.381, 1.382 jd.spec, 1.443, 1.444 sources, 1.382, 1.383 Message-ID: <20090728182953.234FB11C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25025/F-11 Modified Files: .cvsignore jd.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.381 retrieving revision 1.382 diff -u -p -r1.381 -r1.382 --- .cvsignore 26 Jul 2009 19:27:22 -0000 1.381 +++ .cvsignore 28 Jul 2009 18:29:52 -0000 1.382 @@ -1 +1 @@ -jd-2.4.2-svn2989_trunk.tgz +jd-2.4.2-svn2993_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.443 retrieving revision 1.444 diff -u -p -r1.443 -r1.444 --- jd.spec 26 Jul 2009 19:27:22 -0000 1.443 +++ jd.spec 28 Jul 2009 18:29:52 -0000 1.444 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2989_trunk +%define strtag svn2993_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Mon Jul 27 2009 Mamoru Tasaka -- rev 2989 +* Wed Jul 29 2009 Mamoru Tasaka +- rev 2993 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- sources 26 Jul 2009 19:27:22 -0000 1.382 +++ sources 28 Jul 2009 18:29:52 -0000 1.383 @@ -1 +1 @@ -18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz +adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz From mtasaka at fedoraproject.org Tue Jul 28 18:13:49 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:49 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/F-10 .cvsignore, 1.2, 1.3 rubygem-rake-compiler.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728181349.0DB6711C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-rake-compiler/F-10 Modified Files: .cvsignore rubygem-rake-compiler.spec sources Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 +++ .cvsignore 28 Jul 2009 18:13:48 -0000 1.3 @@ -1 +1 @@ -rake-compiler-0.5.0.gem +rake-compiler-0.6.0.gem Index: rubygem-rake-compiler.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-10/rubygem-rake-compiler.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-rake-compiler.spec 2 Jul 2009 05:36:30 -0000 1.1 +++ rubygem-rake-compiler.spec 28 Jul 2009 18:13:48 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} -Version: 0.5.0 +Version: 0.6.0 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -96,6 +96,12 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 0.6.0-1 +- 0.6.0 + +* Sat Jul 25 2009 Mamoru Tasaka - 0.5.0-2 +- F-12: Mass rebuild + * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Jul 2009 05:36:30 -0000 1.2 +++ sources 28 Jul 2009 18:13:48 -0000 1.3 @@ -1 +1 @@ -8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem +9a8edefde6ca9df9222f6cfe3973c130 rake-compiler-0.6.0.gem From mtasaka at fedoraproject.org Tue Jul 28 18:13:49 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:49 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/F-11 .cvsignore, 1.2, 1.3 rubygem-rake-compiler.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090728181349.492C711C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-rake-compiler/F-11 Modified Files: .cvsignore rubygem-rake-compiler.spec sources Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 +++ .cvsignore 28 Jul 2009 18:13:49 -0000 1.3 @@ -1 +1 @@ -rake-compiler-0.5.0.gem +rake-compiler-0.6.0.gem Index: rubygem-rake-compiler.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-11/rubygem-rake-compiler.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-rake-compiler.spec 2 Jul 2009 05:36:30 -0000 1.1 +++ rubygem-rake-compiler.spec 28 Jul 2009 18:13:49 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} -Version: 0.5.0 +Version: 0.6.0 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -96,6 +96,12 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 0.6.0-1 +- 0.6.0 + +* Sat Jul 25 2009 Mamoru Tasaka - 0.5.0-2 +- F-12: Mass rebuild + * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Jul 2009 05:36:30 -0000 1.2 +++ sources 28 Jul 2009 18:13:49 -0000 1.3 @@ -1 +1 @@ -8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem +9a8edefde6ca9df9222f6cfe3973c130 rake-compiler-0.6.0.gem From mtasaka at fedoraproject.org Tue Jul 28 18:13:48 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:48 +0000 (UTC) Subject: rpms/rubygem-nokogiri/F-11 .cvsignore, 1.7, 1.8 rubygem-nokogiri.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090728181348.9B3B411C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-nokogiri/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-nokogiri/F-11 Modified Files: .cvsignore rubygem-nokogiri.spec sources Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 Jun 2009 18:22:44 -0000 1.7 +++ .cvsignore 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -nokogiri-1.3.2.gem +nokogiri-1.3.3.gem Index: rubygem-nokogiri.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-11/rubygem-nokogiri.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-nokogiri.spec 24 Jun 2009 18:22:44 -0000 1.8 +++ rubygem-nokogiri.spec 28 Jul 2009 18:13:48 -0000 1.9 @@ -6,9 +6,13 @@ %define gemname nokogiri %define geminstdir %{gemdir}/gems/%{gemname}-%{version} +# Note for packager: +# Check if we can update nokogiri to 1.4.0 on < F-12: +# It seems that some functions will be removed on 1.4.0 + Summary: An HTML, XML, SAX, and Reader parser Name: rubygem-%{gemname} -Version: 1.3.2 +Version: 1.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -19,9 +23,10 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) BuildRequires: rubygem(hoe) -BuildRequires: rubygem(rake) # Not available yet -# BuildRequires(check): rubygem(rake-compiler) +# BuildRequires: rubygem(hoe-debugging) +BuildRequires: rubygem(rake) +BuildRequires: rubygem(rake-compiler) BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: ruby-devel @@ -58,7 +63,6 @@ This package provides non-Gem support fo %prep %setup -q -T -c -%build mkdir -p ./%{gemdir} export CONFIGURE_ARGS="--with-cflags='%{optflags}'" gem install \ @@ -67,14 +71,12 @@ gem install \ -V --force \ %{SOURCE0} +%build # cflags wrong (-O3 passed), recompiling -# Skip until rubygem(rake-compiler) is available -%if 0 pushd ./%{geminstdir} sed -i.flags -e 's|-O3||' ext/nokogiri/extconf.rb find . -name \*.so -or -name \*.o -exec rm -f {} \; -rake -v ext/nokogiri/native.so --trace -%endif +rake -v compile --trace %install rm -rf %{buildroot} @@ -98,7 +100,7 @@ do done # cleanups -rm -rf %{buildroot}%{geminstdir}/ext +rm -rf %{buildroot}%{geminstdir}/{ext,tmp}/ rm -f %{buildroot}%{geminstdir}/{.autotest,.require_paths} # The following method is completely copied from rubygem-gettext @@ -167,11 +169,8 @@ create_symlink_rec %{geminstdir}/lib %{r rm -rf %{buildroot} %check -# Skip until rubygem(rake-compiler) is available -exit 0 - pushd ./%{geminstdir} -rake test +rake test --trace popd %files @@ -199,6 +198,16 @@ popd %{ruby_sitelib}/xsd/ %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 1.3.3-1 +- 1.3.3 + +* Sat Jul 25 2009 Mamoru Tasaka - 1.3.2-3 +- F-12: Mass rebuild + +* Thu Jul 2 2009 Mamoru Tasaka - 1.3.2-2 +- Enable test +- Recompile with -O2 + * Thu Jun 25 2009 Mamoru Tasaka - 1.3.2-1 - 1.3.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 18:22:44 -0000 1.7 +++ sources 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -c5eedaef31f91b0443066a3b44ef66c9 nokogiri-1.3.2.gem +24f7b482886690b723ce6f74d6d879f4 nokogiri-1.3.3.gem From mtasaka at fedoraproject.org Tue Jul 28 18:13:48 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Tue, 28 Jul 2009 18:13:48 +0000 (UTC) Subject: rpms/rubygem-nokogiri/F-10 .cvsignore, 1.7, 1.8 rubygem-nokogiri.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090728181348.6794311C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-nokogiri/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345/rubygem-nokogiri/F-10 Modified Files: .cvsignore rubygem-nokogiri.spec sources Log Message: gem update Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 Jun 2009 18:22:42 -0000 1.7 +++ .cvsignore 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -nokogiri-1.3.2.gem +nokogiri-1.3.3.gem Index: rubygem-nokogiri.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-10/rubygem-nokogiri.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rubygem-nokogiri.spec 24 Jun 2009 18:22:42 -0000 1.7 +++ rubygem-nokogiri.spec 28 Jul 2009 18:13:48 -0000 1.8 @@ -6,9 +6,13 @@ %define gemname nokogiri %define geminstdir %{gemdir}/gems/%{gemname}-%{version} +# Note for packager: +# Check if we can update nokogiri to 1.4.0 on < F-12: +# It seems that some functions will be removed on 1.4.0 + Summary: An HTML, XML, SAX, and Reader parser Name: rubygem-%{gemname} -Version: 1.3.2 +Version: 1.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -19,9 +23,10 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) BuildRequires: rubygem(hoe) -BuildRequires: rubygem(rake) # Not available yet -# BuildRequires(check): rubygem(rake-compiler) +# BuildRequires: rubygem(hoe-debugging) +BuildRequires: rubygem(rake) +BuildRequires: rubygem(rake-compiler) BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: ruby-devel @@ -58,7 +63,6 @@ This package provides non-Gem support fo %prep %setup -q -T -c -%build mkdir -p ./%{gemdir} export CONFIGURE_ARGS="--with-cflags='%{optflags}'" gem install \ @@ -67,14 +71,12 @@ gem install \ -V --force \ %{SOURCE0} +%build # cflags wrong (-O3 passed), recompiling -# Skip until rubygem(rake-compiler) is available -%if 0 pushd ./%{geminstdir} sed -i.flags -e 's|-O3||' ext/nokogiri/extconf.rb find . -name \*.so -or -name \*.o -exec rm -f {} \; -rake -v ext/nokogiri/native.so --trace -%endif +rake -v compile --trace %install rm -rf %{buildroot} @@ -98,7 +100,7 @@ do done # cleanups -rm -rf %{buildroot}%{geminstdir}/ext +rm -rf %{buildroot}%{geminstdir}/{ext,tmp}/ rm -f %{buildroot}%{geminstdir}/{.autotest,.require_paths} # The following method is completely copied from rubygem-gettext @@ -167,11 +169,8 @@ create_symlink_rec %{geminstdir}/lib %{r rm -rf %{buildroot} %check -# Skip until rubygem(rake-compiler) is available -exit 0 - pushd ./%{geminstdir} -rake test +rake test --trace popd %files @@ -199,6 +198,16 @@ popd %{ruby_sitelib}/xsd/ %changelog +* Wed Jul 29 2009 Mamoru Tasaka - 1.3.3-1 +- 1.3.3 + +* Sat Jul 25 2009 Mamoru Tasaka - 1.3.2-3 +- F-12: Mass rebuild + +* Thu Jul 2 2009 Mamoru Tasaka - 1.3.2-2 +- Enable test +- Recompile with -O2 + * Thu Jun 25 2009 Mamoru Tasaka - 1.3.2-1 - 1.3.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 18:22:42 -0000 1.7 +++ sources 28 Jul 2009 18:13:48 -0000 1.8 @@ -1 +1 @@ -c5eedaef31f91b0443066a3b44ef66c9 nokogiri-1.3.2.gem +24f7b482886690b723ce6f74d6d879f4 nokogiri-1.3.3.gem From ajax at fedoraproject.org Tue Jul 28 18:41:30 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 28 Jul 2009 18:41:30 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver-1.6.99-right-of.patch, NONE, 1.1 xorg-x11-server.spec, 1.455, 1.456 Message-ID: <20090728184130.0CEB611C00D4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31397 Modified Files: xorg-x11-server.spec Added Files: xserver-1.6.99-right-of.patch Log Message: * Tue Jul 28 2009 Adam Jackson 1.6.99-21.20090724 - xserver-1.6.99-right-of.patch: Default to right-of initial placement for RANDR 1.2 drivers with enough virtual space. xserver-1.6.99-right-of.patch: xf86Crtc.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 64 insertions(+), 8 deletions(-) --- NEW FILE xserver-1.6.99-right-of.patch --- >From 9d16f202248b0ca29b832d28441871b96d0b040d Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 28 Jul 2009 11:07:13 -0400 Subject: [PATCH] RANDR: right-of placement by default --- hw/xfree86/modes/xf86Crtc.c | 71 ++++++++++++++++++++++++++++++++++++++---- 1 files changed, 64 insertions(+), 7 deletions(-) diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c index 94fc158..4f14a75 100644 --- a/hw/xfree86/modes/xf86Crtc.c +++ b/hw/xfree86/modes/xf86Crtc.c @@ -1140,6 +1140,15 @@ xf86InitialOutputPositions (ScrnInfoPtr scrn, DisplayModePtr *modes) int o; int min_x, min_y; + /* check for initial right-of heuristic */ + for (o = 0; o < config->num_output; o++) + { + xf86OutputPtr output = config->output[o]; + + if (output->initial_x || output->initial_y) + return TRUE; + } + for (o = 0; o < config->num_output; o++) { xf86OutputPtr output = config->output[o]; @@ -2025,6 +2034,54 @@ bestModeForAspect(xf86CrtcConfigPtr config, Bool *enabled, float aspect) return match; } +static int +numEnabledOutputs(xf86CrtcConfigPtr config, Bool *enabled) +{ + int i = 0, p; + + for (i = 0, p = -1; nextEnabledOutput(config, enabled, &p); i++) ; + + return i; +} + +static Bool +xf86TargetRightOf(ScrnInfoPtr scrn, xf86CrtcConfigPtr config, + DisplayModePtr *modes, Bool *enabled, + int width, int height) +{ + int o; + int w = 0; + + if (numEnabledOutputs(config, enabled) < 2) + return FALSE; + + for (o = -1; nextEnabledOutput(config, enabled, &o); ) { + DisplayModePtr mode = + xf86OutputHasPreferredMode(config->output[o], width, height); + + if (!mode) + return FALSE; + + w += mode->HDisplay; + } + + if (w > width) + return FALSE; + + w = 0; + for (o = -1; nextEnabledOutput(config, enabled, &o); ) { + DisplayModePtr mode = + xf86OutputHasPreferredMode(config->output[o], width, height); + + config->output[o]->initial_x = w; + w += mode->HDisplay; + + modes[o] = mode; + } + + return TRUE; +} + static Bool xf86TargetPreferred(ScrnInfoPtr scrn, xf86CrtcConfigPtr config, DisplayModePtr *modes, Bool *enabled, @@ -2082,13 +2139,9 @@ xf86TargetPreferred(ScrnInfoPtr scrn, xf86CrtcConfigPtr config, * biggest mode for its aspect ratio, assuming one exists. */ if (!ret) do { - int i = 0; float aspect = 0.0; - /* count the number of enabled outputs */ - for (i = 0, p = -1; nextEnabledOutput(config, enabled, &p); i++) ; - - if (i != 1) + if (numEnabledOutputs(config, enabled) != 1) break; p = -1; @@ -2375,6 +2428,8 @@ xf86InitialConfiguration (ScrnInfoPtr scrn, Bool canGrow) if (xf86TargetUserpref(scrn, config, modes, enabled, width, height)) xf86DrvMsg(i, X_INFO, "Using user preference for initial modes\n"); + else if (xf86TargetRightOf(scrn, config, modes, enabled, width, height)) + xf86DrvMsg(i, X_INFO, "Using spanning desktop for initial modes\n"); else if (xf86TargetPreferred(scrn, config, modes, enabled, width, height)) xf86DrvMsg(i, X_INFO, "Using exact sizes for initial modes\n"); else if (xf86TargetAspect(scrn, config, modes, enabled, width, height)) @@ -2391,8 +2446,10 @@ xf86InitialConfiguration (ScrnInfoPtr scrn, Bool canGrow) config->output[o]->name); else xf86DrvMsg (scrn->scrnIndex, X_INFO, - "Output %s using initial mode %s\n", - config->output[o]->name, modes[o]->name); + "Output %s using initial mode %s +%d+%d\n", + config->output[o]->name, modes[o]->name, + config->output[o]->initial_x, + config->output[o]->initial_y); } /* -- 1.6.3.3 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.455 retrieving revision 1.456 diff -u -p -r1.455 -r1.456 --- xorg-x11-server.spec 28 Jul 2009 14:33:20 -0000 1.455 +++ xorg-x11-server.spec 28 Jul 2009 18:41:28 -0000 1.456 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 20.%{gitdate}%{?dist} +Release: 21.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -76,8 +76,8 @@ Patch6023: xserver-1.6.99-use-pci-access # ajax needs to upstream this Patch6027: xserver-1.6.0-displayfd.patch Patch6028: xserver-1.6.99-randr-error-debugging.patch - -Patch6042: xserver-1.6.1-proc-cmdline.patch +Patch6029: xserver-1.6.1-proc-cmdline.patch +Patch6030: xserver-1.6.99-right-of.patch %define moduledir %{_libdir}/xorg/modules %define drimoduledir %{_libdir}/dri @@ -525,6 +525,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Adam Jackson 1.6.99-21.20090724 +- xserver-1.6.99-right-of.patch: Default to right-of initial placement + for RANDR 1.2 drivers with enough virtual space. + * Tue Jul 28 2009 Adam Jackson 1.6.99-20.20090724 - xserver-1.6.99-use-pci-access-boot.patch: Some chips (thanks Intel) will change their PCI class at runtime if you disable their VGA decode, so From nalin at fedoraproject.org Tue Jul 28 18:42:16 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Tue, 28 Jul 2009 18:42:16 +0000 (UTC) Subject: rpms/nss_ldap/F-11 nss_ldap-264-checkcase.patch, NONE, 1.1 nss_ldap-264-cloexec.patch, NONE, 1.1 nss_ldap-264-ent_internal.patch, NONE, 1.1 pam_ldap-183-releaseconfig.patch, NONE, 1.1 nss_ldap.spec, 1.107, 1.108 Message-ID: <20090728184216.4C1E611C00D4@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/nss_ldap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31638 Modified Files: nss_ldap.spec Added Files: nss_ldap-264-checkcase.patch nss_ldap-264-cloexec.patch nss_ldap-264-ent_internal.patch pam_ldap-183-releaseconfig.patch Log Message: - resync with devel stream to pick up fixes; no version bumps nss_ldap-264-checkcase.patch: ldap-automount.c | 2 +- ldap-grp.c | 3 ++- ldap-nss.c | 13 +++++++++++++ ldap-nss.h | 4 ++++ ldap-parse.h | 7 ++++++- ldap-proto.c | 3 ++- ldap-pwd.c | 3 ++- ldap-rpc.c | 3 ++- ldap-service.c | 12 ++++++++---- ldap-spwd.c | 3 ++- 10 files changed, 42 insertions(+), 11 deletions(-) --- NEW FILE nss_ldap-264-checkcase.patch --- Search attribute which are not case-sensitive in a directory, but which are in local files on a glibc-based system: posixAccount.uid: struct passwd.pw_name shadowAccount.uid: struct shadow.sp_namp posixGroup.cn: struct group.gr_name ipService.cn,ipServiceProtocol: struct servent.s_name,s_proto ipProtocol.cn: struct protoent.p_name ipHost.cn: OK, actually not case-sensitive in local files ipNetwork.cn: OK, actually not case-sensitive in local files rfc822MailAlias.cn: OK, actually not case-sensitive in local files oncRpc.cn: struct rpcent.r_name nisNetgroup.cn: N/A nisMap.nisMapName: N/A nisObject.nisMapName: N/A nisObject.cn: N/A ieee802Device: N/A bootableDevice: N/A automount.automountKey: no defined structure This patch adds additional logic to reject the result of a search if the field in the result which corresponds to the original request differs by case from the actual request (for example, when a search for a group named "bob" turns up a group named "Bob"), but currently only covers glibc-style systems. Upstream #399. diff -ur nss_ldap-264/ldap-grp.c nss_ldap-264/ldap-grp.c --- nss_ldap-264/ldap-grp.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-grp.c 2009-07-02 10:57:37.000000000 -0400 @@ -1201,7 +1201,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getgrnam, - LM_GROUP, _nss_ldap_parse_gr, LDAP_NSS_BUFLEN_GROUP); + LM_GROUP, _nss_ldap_parse_gr, LDAP_NSS_BUFLEN_GROUP) + AND_REQUIRE_MATCH(name, result->gr_name); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS diff -ur nss_ldap-264/ldap-nss.c nss_ldap-264/ldap-nss.c --- nss_ldap-264/ldap-nss.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-nss.c 2009-07-02 10:46:39.000000000 -0400 @@ -4300,4 +4300,17 @@ return lderrno; } +NSS_STATUS _nss_ldap_expect_name(NSS_STATUS result, + const char *requested_name, + const char *actual_name) +{ + if ((result == NSS_SUCCESS) && + (requested_name != NULL) && + (actual_name != NULL) && + (strcasecmp(requested_name, actual_name) == 0) && + (strcmp(requested_name, actual_name) != 0)) { + return NSS_NOTFOUND; + } + return result; +} diff -ur nss_ldap-264/ldap-nss.h nss_ldap-264/ldap-nss.h --- nss_ldap-264/ldap-nss.h 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-nss.h 2009-07-02 10:28:59.000000000 -0400 @@ -911,4 +911,8 @@ #ifdef CONFIGURE_KRB5_KEYTAB int do_init_krb5_cache(ldap_config_t *config); #endif /* CONFIGURE_KRB5_KEYTAB */ +NSS_STATUS _nss_ldap_expect_name(NSS_STATUS result, + const char *requested_name, + const char *actual_name); + #endif /* _LDAP_NSS_LDAP_LDAP_NSS_H */ diff -ur nss_ldap-264/ldap-parse.h nss_ldap-264/ldap-parse.h --- nss_ldap-264/ldap-parse.h 2006-09-13 02:42:08.000000000 -0400 +++ nss_ldap-264/ldap-parse.h 2009-07-02 10:56:54.000000000 -0400 @@ -94,6 +94,7 @@ #define LOOKUP_NAME(name, result, buffer, buflen, errnop, filter, selector, parser, req_buflen) \ ldap_args_t a; \ + NSS_STATUS s; \ if (buflen < req_buflen) { \ *errnop = ERANGE; \ return NSS_TRYAGAIN; \ @@ -101,7 +102,8 @@ LA_INIT(a); \ LA_STRING(a) = name; \ LA_TYPE(a) = LA_TYPE_STRING; \ - return _nss_ldap_getbyname(&a, result, buffer, buflen, errnop, filter, selector, parser); + s = _nss_ldap_getbyname(&a, result, buffer, buflen, errnop, filter, selector, parser); \ + return s #define LOOKUP_NUMBER(number, result, buffer, buflen, errnop, filter, selector, parser, req_buflen) \ ldap_args_t a; \ if (buflen < req_buflen) { \ @@ -199,4 +201,7 @@ #endif /* HAVE_NSSWITCH_H */ +#define AND_REQUIRE_MATCH(name,field) \ + == NSS_SUCCESS ? _nss_ldap_expect_name(s,name,field) : s + #endif /* _LDAP_NSS_LDAP_LDAP_PARSE_H */ diff -ur nss_ldap-264/ldap-proto.c nss_ldap-264/ldap-proto.c --- nss_ldap-264/ldap-proto.c 2006-09-13 02:42:08.000000000 -0400 +++ nss_ldap-264/ldap-proto.c 2009-07-02 10:58:25.000000000 -0400 @@ -113,7 +113,8 @@ { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getprotobyname, LM_PROTOCOLS, - _nss_ldap_parse_proto, LDAP_NSS_BUFLEN_DEFAULT); + _nss_ldap_parse_proto, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->p_name); } #endif diff -ur nss_ldap-264/ldap-pwd.c nss_ldap-264/ldap-pwd.c --- nss_ldap-264/ldap-pwd.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-pwd.c 2009-07-02 10:57:15.000000000 -0400 @@ -243,7 +243,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getpwnam, - LM_PASSWD, _nss_ldap_parse_pw, LDAP_NSS_BUFLEN_DEFAULT); + LM_PASSWD, _nss_ldap_parse_pw, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->pw_name); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS diff -ur nss_ldap-264/ldap-rpc.c nss_ldap-264/ldap-rpc.c --- nss_ldap-264/ldap-rpc.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-rpc.c 2009-07-02 10:58:01.000000000 -0400 @@ -123,7 +123,8 @@ { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getrpcbyname, LM_RPC, _nss_ldap_parse_rpc, - LDAP_NSS_BUFLEN_DEFAULT); + LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->r_name); } #endif diff -ur nss_ldap-264/ldap-service.c nss_ldap-264/ldap-service.c --- nss_ldap-264/ldap-service.c 2009-07-02 15:44:14.000000000 -0400 +++ nss_ldap-264/ldap-service.c 2009-07-02 15:45:07.000000000 -0400 @@ -230,16 +230,20 @@ char *buffer, size_t buflen, int *errnop) { ldap_args_t a; + NSS_STATUS s; LA_INIT (a); LA_STRING (a) = name; LA_TYPE (a) = (proto == NULL) ? LA_TYPE_STRING : LA_TYPE_STRING_AND_STRING; LA_STRING2 (a) = proto; - return _nss_ldap_getbyname (&a, result, buffer, buflen, errnop, - ((proto == NULL) ? _nss_ldap_filt_getservbyname - : _nss_ldap_filt_getservbynameproto), - LM_SERVICES, _nss_ldap_parse_serv); + s = _nss_ldap_getbyname (&a, result, buffer, buflen, errnop, + ((proto == NULL) ? _nss_ldap_filt_getservbyname + : _nss_ldap_filt_getservbynameproto), + LM_SERVICES, _nss_ldap_parse_serv); + s = _nss_ldap_expect_name(s, name, result->s_name); + s = _nss_ldap_expect_name(s, proto, result->s_proto); + return s; } #endif diff -ur nss_ldap-264/ldap-spwd.c nss_ldap-264/ldap-spwd.c --- nss_ldap-264/ldap-spwd.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-spwd.c 2009-07-02 10:58:50.000000000 -0400 @@ -149,7 +149,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getspnam, - LM_SHADOW, _nss_ldap_parse_sp, LDAP_NSS_BUFLEN_DEFAULT); + LM_SHADOW, _nss_ldap_parse_sp, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH (name, result->sp_namp); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS --- nss_ldap-264/ldap-automount.c 2009-07-02 16:03:30.000000000 -0400 +++ nss_ldap-264/ldap-automount.c 2009-07-02 16:03:48.000000000 -0400 @@ -384,7 +384,7 @@ _nss_ldap_filt_getautomntbyname, LM_AUTOMOUNT, _nss_ldap_parse_automount); - + stat = _nss_ldap_expect_name(stat, key, canon_key ? *canon_key : NULL); if (stat != NSS_NOTFOUND) { break; /* on success or error other than not found */ nss_ldap-264-cloexec.patch: ldap-nss.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nss_ldap-264-cloexec.patch --- diff -up nss_ldap-264/ldap-nss.c nss_ldap-264/ldap-nss.c --- nss_ldap-264/ldap-nss.c 2009-07-23 18:55:15.290388484 -0400 +++ nss_ldap-264/ldap-nss.c 2009-07-23 19:01:33.328398737 -0400 @@ -896,6 +896,7 @@ do_drop_connection(int sd, int closeSd) /* we must let dup2 close sd for us to avoid race conditions * in multithreaded code. */ + fcntl (dummyfd, F_SETFD, 1L); do_dupfd (dummyfd, sd); do_closefd (dummyfd); } nss_ldap-264-ent_internal.patch: ldap-grp.c | 4 ++-- ldap-netgrp.c | 2 +- ldap-nss.c | 13 ++++++++++++- ldap-nss.h | 11 +++++++++++ 4 files changed, 26 insertions(+), 4 deletions(-) --- NEW FILE nss_ldap-264-ent_internal.patch --- Distinguish between contexts that are somewhat persistent and one-offs which are used to fulfill part of a larger request. diff -up nss_ldap/ldap-grp.c nss_ldap/ldap-grp.c --- nss_ldap/ldap-grp.c +++ nss_ldap/ldap-grp.c @@ -857,7 +857,7 @@ ng_chase (const char *dn, ldap_initgroup LA_STRING (a) = dn; LA_TYPE (a) = LA_TYPE_STRING; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { return NSS_UNAVAIL; } @@ -930,7 +930,7 @@ ng_chase_backlink (const char ** members LA_STRING_LIST (a) = filteredMembersOf; LA_TYPE (a) = LA_TYPE_STRING_LIST_OR; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { free (filteredMembersOf); return NSS_UNAVAIL; diff -up nss_ldap/ldap-netgrp.c nss_ldap/ldap-netgrp.c --- nss_ldap/ldap-netgrp.c +++ nss_ldap/ldap-netgrp.c @@ -691,7 +691,7 @@ do_innetgr_nested (ldap_innetgr_args_t * LA_TYPE (a) = LA_TYPE_STRING; LA_STRING (a) = nested; /* memberNisNetgroup */ - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { debug ("<== do_innetgr_nested: failed to initialize context"); return NSS_UNAVAIL; diff -up nss_ldap/ldap-nss.c nss_ldap/ldap-nss.c --- nss_ldap/ldap-nss.c +++ nss_ldap/ldap-nss.c @@ -1961,6 +1961,7 @@ _nss_ldap_ent_context_init_locked (ent_c debug ("<== _nss_ldap_ent_context_init_locked"); return NULL; } + ctx->ec_internal = 0; *pctx = ctx; } else @@ -1990,6 +1991,15 @@ _nss_ldap_ent_context_init_locked (ent_c return ctx; } +ent_context_t * +_nss_ldap_ent_context_init_internal_locked (ent_context_t ** pctx) +{ + ent_context_t *ctx; + ctx = _nss_ldap_ent_context_init_locked (pctx); + if (ctx != NULL) + ctx->ec_internal = 1; + return ctx; +} /* * Clears a given context; we require the caller @@ -2031,7 +2041,8 @@ _nss_ldap_ent_context_release (ent_conte LS_INIT (ctx->ec_state); - if (_nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) + if (!ctx->ec_internal && + _nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) { do_close (); } diff -up nss_ldap/ldap-nss.h nss_ldap/ldap-nss.h --- nss_ldap/ldap-nss.h +++ nss_ldap/ldap-nss.h @@ -560,6 +560,8 @@ struct ent_context ldap_state_t ec_state; /* eg. for services */ int ec_msgid; /* message ID */ LDAPMessage *ec_res; /* result chain */ + int ec_internal; /* this context is just a part of a larger + * query for information */ ldap_service_search_descriptor_t *ec_sd; /* current sd */ struct berval *ec_cookie; /* cookie for paged searches */ int ec_eof; /* reached notional end of file */ @@ -744,6 +746,15 @@ ent_context_t *_nss_ldap_ent_context_ini ent_context_t *_nss_ldap_ent_context_init_locked (ent_context_t **); /* + * _nss_ldap_ent_context_init_internal_locked() has the same + * behaviour, except it marks the context as one that's being + * used to fetch additional data used in answering a request, i.e. + * that this isn't the "main" context + */ + +ent_context_t *_nss_ldap_ent_context_init_internal_locked (ent_context_t **); + +/* * _nss_ldap_ent_context_release() is used to manually free a context */ void _nss_ldap_ent_context_release (ent_context_t *); pam_ldap-183-releaseconfig.patch: pam_ldap.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) --- NEW FILE pam_ldap-183-releaseconfig.patch --- diff -up pam_ldap/pam_ldap.c pam_ldap/pam_ldap.c --- pam_ldap/pam_ldap.c 2009-07-22 15:55:42.000000000 -0400 +++ pam_ldap/pam_ldap.c 2009-07-22 16:00:23.000000000 -0400 @@ -437,6 +437,7 @@ static void _release_config (pam_ldap_config_t ** pconfig) { pam_ldap_config_t *c; + pam_ssd_t *ssd, *next_ssd; c = *pconfig; if (c == NULL) @@ -445,6 +446,9 @@ _release_config (pam_ldap_config_t ** pc if (c->configFile != NULL) free (c->configFile); + if (c->uri != NULL) + free (c->uri); + if (c->host != NULL) free (c->host); @@ -474,6 +478,16 @@ _release_config (pam_ldap_config_t ** pc free (c->sslpath); } + ssd = c->ssd; + while ( ssd != NULL ) + { + next_ssd = ssd->next; + free (ssd->base); + free (ssd->filter); + free (ssd); + ssd = next_ssd; + } + if (c->userattr != NULL) { free (c->userattr); @@ -509,6 +523,36 @@ _release_config (pam_ldap_config_t ** pc free (c->logdir); } + if (c->tls_cacertfile != NULL) + { + free (c->tls_cacertfile); + } + + if (c->tls_cacertdir != NULL) + { + free (c->tls_cacertdir); + } + + if (c->tls_ciphers != NULL) + { + free (c->tls_ciphers); + } + + if (c->tls_cert != NULL) + { + free (c->tls_cert); + } + + if (c->tls_key != NULL) + { + free (c->tls_key); + } + + if (c->tls_randfile != NULL) + { + free (c->tls_randfile); + } + if (c->sasl_mechanism != NULL) { free (c->sasl_mechanism); Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/F-11/nss_ldap.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- nss_ldap.spec 26 Feb 2009 06:13:39 -0000 1.107 +++ nss_ldap.spec 28 Jul 2009 18:42:16 -0000 1.108 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 2%{?dist} +Release: 6%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -24,13 +24,17 @@ Patch16: pam_ldap-184-referral-passwd2.p Patch17: nss_ldap-259-res_init.patch Patch19: pam_ldap-184-broken-sasl-rebind.patch Patch20: pam_ldap-184-nsrole.patch +Patch21: nss_ldap-264-checkcase.patch +Patch22: nss_ldap-264-ent_internal.patch +Patch23: pam_ldap-183-releaseconfig.patch +Patch24: nss_ldap-264-cloexec.patch URL: http://www.padl.com/ License: LGPLv2+ Group: System Environment/Base BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf, automake, libtool -BuildRequires: openssl-devel, pam-devel +BuildRequires: openssl-devel, openssl-static, pam-devel BuildRequires: cyrus-sasl-devel >= 2.1 BuildRequires: openldap-devel >= 2.0.27 BuildRequires: krb5-devel >= 1.4 @@ -63,6 +67,9 @@ cp nss_ldap-%{version}/snprintf.h pam_ld pushd nss_ldap-%{version} %patch8 -p1 -b .soname %patch17 -p1 -b .res_init +#%patch21 -p1 -b .checkcase +%patch22 -p1 -b .ent_internal +%patch24 -p1 -b .cloexec autoreconf -f -i popd @@ -76,6 +83,7 @@ pushd pam_ldap-%{pam_ldap_version} %patch16 -p1 -b .referral-passwd2 %patch19 -p1 -b .broken-sasl-rebind %patch20 -p1 -b .nsrole +%patch23 -p1 -b .releaseconfig autoreconf -f -i popd @@ -190,6 +198,34 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Tue Jul 28 2009 Nalin Dahyabhai 264-6 +- set close-on-exec on the dummy socket created in the child atfork() (#512856) + +* Wed Jul 22 2009 Nalin Dahyabhai 264-5 +- fix some minor leaks in pam_ldap, part of upstream #326,#333 + +* Tue Jul 7 2009 Nalin Dahyabhai - 264-4 +- add proposed patch for upstream #322: crashing in oneshot mode + +* Mon Jul 6 2009 Nalin Dahyabhai +- add but don't apply proposed patch for upstream #399: depending on the + server to enforce the expected case-sensitivity opens up corner cases + +* Fri Jun 19 2009 Kedar Sovani - 264-3 +- BuildRequires: openssl-static + +* Fri Jun 19 2009 Nalin Dahyabhai +- revert most of the previous round of changes: splitting pam_ldap off + won't be helpful in the long term if it, too, is eventually going to conflict + with the nss-ldapd package + +* Mon Apr 6 2009 Nalin Dahyabhai - 264/184-100 +- split pam_ldap off into a separate binary package +- require /%{_lib}/security/pam_ldap.so to pull in pam_ldap on upgrades +- require our configuration file to come from somewhere +- remove some cruft +- move the %%postun that fixes up pam configs to the pam_ldap package + * Wed Feb 25 2009 Fedora Release Engineering - 264-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Tue Jul 28 18:49:36 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 28 Jul 2009 18:49:36 +0000 (UTC) Subject: rpms/vinagre/devel vinagre.spec,1.47,1.48 Message-ID: <20090728184936.A0C0A11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/vinagre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3334 Modified Files: vinagre.spec Log Message: fix BRs Index: vinagre.spec =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/vinagre.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- vinagre.spec 28 Jul 2009 17:20:54 -0000 1.47 +++ vinagre.spec 28 Jul 2009 18:49:36 -0000 1.48 @@ -22,6 +22,7 @@ BuildRequires: desktop-file-utils BuildRequires: gnome-keyring-devel BuildRequires: gnome-doc-utils BuildRequires: gnome-panel-devel +BuildRequires: telepathy-glib-devel # for /usr/share/dbus-1/services Requires: dbus From nucleo at fedoraproject.org Tue Jul 28 18:57:00 2009 From: nucleo at fedoraproject.org (nucleo) Date: Tue, 28 Jul 2009 18:57:00 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik/devel 89804-Plastik.colors, NONE, 1.1 README, NONE, 1.1 import.log, NONE, 1.1 kde-colorscheme-plastik.spec, NONE, 1.1 Message-ID: <20090728185700.EDA8011C00D4@cvs1.fedora.phx.redhat.com> Author: nucleo Update of /cvs/pkgs/rpms/kde-colorscheme-plastik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6015/devel Added Files: 89804-Plastik.colors README import.log kde-colorscheme-plastik.spec Log Message: Initial package fo Plastik KDE 4 color scheme --- NEW FILE 89804-Plastik.colors --- [ColorEffects:Disabled] Color=112,111,110 ColorAmount=0 ColorEffect=0 ContrastAmount=0.65 ContrastEffect=1 IntensityAmount=0.1 IntensityEffect=2 [ColorEffects:Inactive] Color=112,111,110 ColorAmount=0.025 ColorEffect=2 ContrastAmount=0.1 ContrastEffect=2 Enable=false IntensityAmount=0 IntensityEffect=0 [Colors:Button] BackgroundAlternate=224,223,222 BackgroundNormal=222,224,228 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Selection] BackgroundAlternate=62,138,204 BackgroundNormal=103,142,178 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=156,14,14 ForegroundNeutral=255,221,0 ForegroundNormal=255,255,255 ForegroundPositive=128,255,128 ForegroundVisited=82,24,139 [Colors:Tooltip] BackgroundAlternate=196,224,255 BackgroundNormal=255,255,220 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:View] BackgroundAlternate=248,247,246 BackgroundNormal=255,255,255 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Window] BackgroundAlternate=218,217,216 BackgroundNormal=239,239,239 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [General] Name=Plastik shadeSortColumn=true [KDE] contrast=7 [WM] activeBackground=64,142,220 activeForeground=255,255,255 inactiveBackground=158,171,186 inactiveForeground=158,171,186 --- NEW FILE README --- Plastik 0.1.2 A KDE 4 port of KDE 3 Plastik color scheme. Changelog: 0.1.2 (2009.05.14): - New license: LGPL instead of GPL. 0.1.1 (2008.09.20): - Fixed Tooltip Background color. 0.1 (2008.09.20): - First release. License: LGPL Homepage: http://www.kde-look.org/content/show.php/Plastik?content=89804 --- NEW FILE import.log --- kde-colorscheme-plastik-0_1_2-1_fc11:HEAD:kde-colorscheme-plastik-0.1.2-1.fc11.src.rpm:1248807306 --- NEW FILE kde-colorscheme-plastik.spec --- Name: kde-colorscheme-plastik Version: 0.1.2 Release: 1%{?dist} Summary: Plastik KDE 4 Color Scheme Group: User Interface/Desktops License: LGPLv2+ URL: http://www.kde-look.org/content/show.php/Plastik?content=89804 Source0: http://kde-look.org/CONTENT/content-files/89804-Plastik.colors # Description from site Source1: README BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: kde-filesystem Requires: kde-filesystem %description This package contains the KDE 4 port of KDE 3 Plastik color scheme. %prep %setup -c -T %build %install rm -rf $RPM_BUILD_ROOT install -p -D -m 644 %{SOURCE0} $RPM_BUILD_ROOT%{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors install -m 644 %{SOURCE1} README %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors %changelog * Fri May 22 2009 Alexey Kurov - 0.1.2-1 - Initial RPM release From nucleo at fedoraproject.org Tue Jul 28 18:58:57 2009 From: nucleo at fedoraproject.org (nucleo) Date: Tue, 28 Jul 2009 18:58:57 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik/F-10 89804-Plastik.colors, NONE, 1.1 README, NONE, 1.1 import.log, NONE, 1.1 kde-colorscheme-plastik.spec, NONE, 1.1 Message-ID: <20090728185857.5A48411C00D4@cvs1.fedora.phx.redhat.com> Author: nucleo Update of /cvs/pkgs/rpms/kde-colorscheme-plastik/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7647/F-10 Added Files: 89804-Plastik.colors README import.log kde-colorscheme-plastik.spec Log Message: Initial package fo Plastik KDE 4 color scheme --- NEW FILE 89804-Plastik.colors --- [ColorEffects:Disabled] Color=112,111,110 ColorAmount=0 ColorEffect=0 ContrastAmount=0.65 ContrastEffect=1 IntensityAmount=0.1 IntensityEffect=2 [ColorEffects:Inactive] Color=112,111,110 ColorAmount=0.025 ColorEffect=2 ContrastAmount=0.1 ContrastEffect=2 Enable=false IntensityAmount=0 IntensityEffect=0 [Colors:Button] BackgroundAlternate=224,223,222 BackgroundNormal=222,224,228 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Selection] BackgroundAlternate=62,138,204 BackgroundNormal=103,142,178 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=156,14,14 ForegroundNeutral=255,221,0 ForegroundNormal=255,255,255 ForegroundPositive=128,255,128 ForegroundVisited=82,24,139 [Colors:Tooltip] BackgroundAlternate=196,224,255 BackgroundNormal=255,255,220 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:View] BackgroundAlternate=248,247,246 BackgroundNormal=255,255,255 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Window] BackgroundAlternate=218,217,216 BackgroundNormal=239,239,239 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [General] Name=Plastik shadeSortColumn=true [KDE] contrast=7 [WM] activeBackground=64,142,220 activeForeground=255,255,255 inactiveBackground=158,171,186 inactiveForeground=158,171,186 --- NEW FILE README --- Plastik 0.1.2 A KDE 4 port of KDE 3 Plastik color scheme. Changelog: 0.1.2 (2009.05.14): - New license: LGPL instead of GPL. 0.1.1 (2008.09.20): - Fixed Tooltip Background color. 0.1 (2008.09.20): - First release. License: LGPL Homepage: http://www.kde-look.org/content/show.php/Plastik?content=89804 --- NEW FILE import.log --- kde-colorscheme-plastik-0_1_2-1_fc11:F-10:kde-colorscheme-plastik-0.1.2-1.fc11.src.rpm:1248807498 --- NEW FILE kde-colorscheme-plastik.spec --- Name: kde-colorscheme-plastik Version: 0.1.2 Release: 1%{?dist} Summary: Plastik KDE 4 Color Scheme Group: User Interface/Desktops License: LGPLv2+ URL: http://www.kde-look.org/content/show.php/Plastik?content=89804 Source0: http://kde-look.org/CONTENT/content-files/89804-Plastik.colors # Description from site Source1: README BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: kde-filesystem Requires: kde-filesystem %description This package contains the KDE 4 port of KDE 3 Plastik color scheme. %prep %setup -c -T %build %install rm -rf $RPM_BUILD_ROOT install -p -D -m 644 %{SOURCE0} $RPM_BUILD_ROOT%{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors install -m 644 %{SOURCE1} README %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors %changelog * Fri May 22 2009 Alexey Kurov - 0.1.2-1 - Initial RPM release From nucleo at fedoraproject.org Tue Jul 28 19:00:24 2009 From: nucleo at fedoraproject.org (nucleo) Date: Tue, 28 Jul 2009 19:00:24 +0000 (UTC) Subject: rpms/kde-colorscheme-plastik/F-11 89804-Plastik.colors, NONE, 1.1 README, NONE, 1.1 import.log, NONE, 1.1 kde-colorscheme-plastik.spec, NONE, 1.1 Message-ID: <20090728190024.E05B411C0423@cvs1.fedora.phx.redhat.com> Author: nucleo Update of /cvs/pkgs/rpms/kde-colorscheme-plastik/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8651/F-11 Added Files: 89804-Plastik.colors README import.log kde-colorscheme-plastik.spec Log Message: Initial package fo Plastik KDE 4 color scheme --- NEW FILE 89804-Plastik.colors --- [ColorEffects:Disabled] Color=112,111,110 ColorAmount=0 ColorEffect=0 ContrastAmount=0.65 ContrastEffect=1 IntensityAmount=0.1 IntensityEffect=2 [ColorEffects:Inactive] Color=112,111,110 ColorAmount=0.025 ColorEffect=2 ContrastAmount=0.1 ContrastEffect=2 Enable=false IntensityAmount=0 IntensityEffect=0 [Colors:Button] BackgroundAlternate=224,223,222 BackgroundNormal=222,224,228 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Selection] BackgroundAlternate=62,138,204 BackgroundNormal=103,142,178 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=156,14,14 ForegroundNeutral=255,221,0 ForegroundNormal=255,255,255 ForegroundPositive=128,255,128 ForegroundVisited=82,24,139 [Colors:Tooltip] BackgroundAlternate=196,224,255 BackgroundNormal=255,255,220 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:View] BackgroundAlternate=248,247,246 BackgroundNormal=255,255,255 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [Colors:Window] BackgroundAlternate=218,217,216 BackgroundNormal=239,239,239 DecorationFocus=103,142,178 DecorationHover=103,142,178 ForegroundActive=255,128,224 ForegroundInactive=141,141,141 ForegroundLink=0,0,238 ForegroundNegative=191,3,3 ForegroundNeutral=176,128,0 ForegroundNormal=0,0,0 ForegroundPositive=0,110,40 ForegroundVisited=82,24,139 [General] Name=Plastik shadeSortColumn=true [KDE] contrast=7 [WM] activeBackground=64,142,220 activeForeground=255,255,255 inactiveBackground=158,171,186 inactiveForeground=158,171,186 --- NEW FILE README --- Plastik 0.1.2 A KDE 4 port of KDE 3 Plastik color scheme. Changelog: 0.1.2 (2009.05.14): - New license: LGPL instead of GPL. 0.1.1 (2008.09.20): - Fixed Tooltip Background color. 0.1 (2008.09.20): - First release. License: LGPL Homepage: http://www.kde-look.org/content/show.php/Plastik?content=89804 --- NEW FILE import.log --- kde-colorscheme-plastik-0_1_2-1_fc11:F-11:kde-colorscheme-plastik-0.1.2-1.fc11.src.rpm:1248807586 --- NEW FILE kde-colorscheme-plastik.spec --- Name: kde-colorscheme-plastik Version: 0.1.2 Release: 1%{?dist} Summary: Plastik KDE 4 Color Scheme Group: User Interface/Desktops License: LGPLv2+ URL: http://www.kde-look.org/content/show.php/Plastik?content=89804 Source0: http://kde-look.org/CONTENT/content-files/89804-Plastik.colors # Description from site Source1: README BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: kde-filesystem Requires: kde-filesystem %description This package contains the KDE 4 port of KDE 3 Plastik color scheme. %prep %setup -c -T %build %install rm -rf $RPM_BUILD_ROOT install -p -D -m 644 %{SOURCE0} $RPM_BUILD_ROOT%{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors install -m 644 %{SOURCE1} README %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_kde4_datadir}/kde4/apps/color-schemes/Plastik.colors %changelog * Fri May 22 2009 Alexey Kurov - 0.1.2-1 - Initial RPM release From pkgdb at fedoraproject.org Tue Jul 28 19:07:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 19:07:54 +0000 Subject: [pkgdb] anaconda had acl change status Message-ID: <20090728190754.61CD310F889@bastion2.fedora.phx.redhat.com> pjones has set the watchbugzilla acl on anaconda (Fedora devel) to Obsolete for pjones To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From dwalsh at fedoraproject.org Tue Jul 28 19:08:18 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 28 Jul 2009 19:08:18 +0000 (UTC) Subject: rpms/selinux-policy/devel .cvsignore, 1.176, 1.177 nsadiff, 1.14, 1.15 policy-F12.patch, 1.33, 1.34 selinux-policy.spec, 1.883, 1.884 sources, 1.196, 1.197 Message-ID: <20090728190818.4E95311C00D4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12736 Modified Files: .cvsignore nsadiff policy-F12.patch selinux-policy.spec sources Log Message: * Tue Jul 28 2009 Dan Walsh 3.6.24-1 - Update to upstream Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/.cvsignore,v retrieving revision 1.176 retrieving revision 1.177 diff -u -p -r1.176 -r1.177 --- .cvsignore 23 Jul 2009 21:47:40 -0000 1.176 +++ .cvsignore 28 Jul 2009 19:08:17 -0000 1.177 @@ -179,3 +179,4 @@ serefpolicy-3.6.21.tgz setroubleshoot-2.2.11.tar.gz serefpolicy-3.6.22.tgz serefpolicy-3.6.23.tgz +serefpolicy-3.6.24.tgz Index: nsadiff =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/nsadiff,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nsadiff 23 Jul 2009 21:47:40 -0000 1.14 +++ nsadiff 28 Jul 2009 19:08:17 -0000 1.15 @@ -1 +1 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.23 > /tmp/diff +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.24 > /tmp/diff policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 304 ++++ policy/modules/admin/rpm.te | 63 - policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 10 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 2 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 94 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 4 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 410 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 393 ++++-- policy/modules/services/apache.te | 391 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.if | 19 policy/modules/services/automount.te | 6 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 32 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 32 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 190 ++- policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 24 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 9 policy/modules/services/devicekit.if | 197 +++ policy/modules/services/devicekit.te | 248 ++++ policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.fc | 4 policy/modules/services/fprintd.if | 43 policy/modules/services/fprintd.te | 55 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 10 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 33 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 10 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/mta.fc | 11 policy/modules/services/mta.if | 41 policy/modules/services/mta.te | 69 + policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 112 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 71 + policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 34 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 29 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 344 +++++ policy/modules/services/samba.te | 197 ++- policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 118 + policy/modules/services/virt.te | 212 +++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 312 ++++- policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 174 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 85 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 36 policy/modules/system/mount.fc | 7 policy/modules/system/mount.if | 22 policy/modules/system/mount.te | 97 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 349 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1298 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/virtual.fc | 1 policy/modules/system/virtual.if | 119 + policy/modules/system/virtual.te | 75 + policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 296 files changed, 14423 insertions(+), 2691 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.33 -r 1.34 policy-F12.patchIndex: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- policy-F12.patch 27 Jul 2009 22:09:56 -0000 1.33 +++ policy-F12.patch 28 Jul 2009 19:08:17 -0000 1.34 @@ -1,6 +1,6 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.23/config/appconfig-mcs/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.24/config/appconfig-mcs/default_contexts --- nsaserefpolicy/config/appconfig-mcs/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -22,15 +22,15 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.23/config/appconfig-mcs/failsafe_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.24/config/appconfig-mcs/failsafe_context --- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/failsafe_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/failsafe_context 2009-07-28 13:42:18.000000000 -0400 @@ -1 +1 @@ -sysadm_r:sysadm_t:s0 +system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/root_default_contexts --- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/root_default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/root_default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,11 +1,7 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -45,9 +45,9 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.23/config/appconfig-mcs/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.24/config/appconfig-mcs/securetty_types --- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/securetty_types 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/securetty_types 2009-07-28 13:42:18.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -55,18 +55,18 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.23/config/appconfig-mcs/seusers +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.24/config/appconfig-mcs/seusers --- nsaserefpolicy/config/appconfig-mcs/seusers 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/seusers 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/seusers 2009-07-28 13:42:18.000000000 -0400 @@ -1,3 +1,3 @@ system_u:system_u:s0-mcs_systemhigh -root:root:s0-mcs_systemhigh -__default__:user_u:s0 +root:unconfined_u:s0-mcs_systemhigh +__default__:unconfined_u:s0-mcs_systemhigh -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/staff_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/staff_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/staff_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/staff_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,10 +1,12 @@ system_r:local_login_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 system_r:remote_login_t:s0 staff_r:staff_t:s0 @@ -81,9 +81,9 @@ diff -b -B --ignore-all-space --exclude- sysadm_r:sysadm_su_t:s0 sysadm_r:sysadm_t:s0 sysadm_r:sysadm_sudo_t:s0 sysadm_r:sysadm_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/unconfined_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/unconfined_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,4 +1,4 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 unconfined_r:unconfined_cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 @@ -97,15 +97,15 @@ diff -b -B --ignore-all-space --exclude- +system_r:initrc_su_t:s0 unconfined_r:unconfined_t:s0 +unconfined_r:unconfined_t:s0 unconfined_r:unconfined_t:s0 system_r:xdm_t:s0 unconfined_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.23/config/appconfig-mcs/userhelper_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.24/config/appconfig-mcs/userhelper_context --- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/userhelper_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/userhelper_context 2009-07-28 13:42:18.000000000 -0400 @@ -1 +1 @@ -system_u:sysadm_r:sysadm_t:s0 +system_u:system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/user_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/user_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mcs/user_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/user_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,8 +1,9 @@ system_r:local_login_t:s0 user_r:user_t:s0 system_r:remote_login_t:s0 user_r:user_t:s0 @@ -118,20 +118,20 @@ diff -b -B --ignore-all-space --exclude- - +system_r:initrc_su_t:s0 user_r:user_t:s0 +user_r:user_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.23/config/appconfig-mcs/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.24/config/appconfig-mcs/virtual_domain_context --- nsaserefpolicy/config/appconfig-mcs/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/config/appconfig-mcs/virtual_domain_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/virtual_domain_context 2009-07-28 13:42:18.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:svirt_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.23/config/appconfig-mcs/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.24/config/appconfig-mcs/virtual_image_context --- nsaserefpolicy/config/appconfig-mcs/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/config/appconfig-mcs/virtual_image_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mcs/virtual_image_context 2009-07-28 13:42:18.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:svirt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.23/config/appconfig-mls/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.24/config/appconfig-mls/default_contexts --- nsaserefpolicy/config/appconfig-mls/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mls/default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mls/default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -153,9 +153,9 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.23/config/appconfig-mls/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.24/config/appconfig-mls/root_default_contexts --- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-mls/root_default_contexts 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mls/root_default_contexts 2009-07-28 13:42:18.000000000 -0400 @@ -1,11 +1,11 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 -system_r:local_login_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -174,20 +174,20 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +#system_r:sshd_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.23/config/appconfig-mls/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.24/config/appconfig-mls/virtual_domain_context --- nsaserefpolicy/config/appconfig-mls/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/config/appconfig-mls/virtual_domain_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mls/virtual_domain_context 2009-07-28 13:42:18.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:qemu_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.23/config/appconfig-mls/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.24/config/appconfig-mls/virtual_image_context --- nsaserefpolicy/config/appconfig-mls/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/config/appconfig-mls/virtual_image_context 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-mls/virtual_image_context 2009-07-28 13:42:18.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:virt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.23/config/appconfig-standard/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.24/config/appconfig-standard/securetty_types --- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/config/appconfig-standard/securetty_types 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/config/appconfig-standard/securetty_types 2009-07-28 13:42:18.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -195,9 +195,9 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.23/Makefile +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.24/Makefile --- nsaserefpolicy/Makefile 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/Makefile 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/Makefile 2009-07-28 13:42:18.000000000 -0400 @@ -241,7 +241,7 @@ appdir := $(contextpath) user_default_contexts := $(wildcard config/appconfig-$(TYPE)/*_default_contexts) @@ -260,9 +260,9 @@ diff -b -B --ignore-all-space --exclude- $(appdir)/%: $(appconf)/% @mkdir -p $(appdir) $(verbose) $(INSTALL) -m 644 $< $@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.23/policy/global_tunables +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.24/policy/global_tunables --- nsaserefpolicy/policy/global_tunables 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/global_tunables 2009-07-27 13:55:41.000000000 -0400 ++++ serefpolicy-3.6.24/policy/global_tunables 2009-07-28 13:42:18.000000000 -0400 @@ -61,15 +61,6 @@ ## @@ -298,9 +298,9 @@ diff -b -B --ignore-all-space --exclude- +## +gen_tunable(mmap_low_allowed, false) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.23/policy/mcs +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.24/policy/mcs [...5261 lines suppressed...] interface(`userdom_search_user_home_content',` gen_require(` - type user_home_dir_t, user_home_t; + type user_home_dir_t; + attribute user_home_type; - ') - - files_list_home($1) -- allow $1 { user_home_dir_t user_home_t }:dir search_dir_perms; ++ ') ++ ++ files_list_home($1) + allow $1 { user_home_dir_t user_home_type }:dir search_dir_perms; +') + @@ -27340,14 +26138,15 @@ diff -b -B --ignore-all-space --exclude- + gen_require(` + type user_home_dir_t; + attribute user_home_type; -+ ') -+ -+ files_list_home($1) + ') + + files_list_home($1) +- allow $1 { user_home_dir_t user_home_t }:dir search_dir_perms; + allow $1 { user_home_dir_t user_home_type }:dir list_dir_perms; ') ######################################## -@@ -2806,7 +3036,25 @@ +@@ -2860,7 +3013,25 @@ type user_tmp_t; ') @@ -27374,7 +26173,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -2843,6 +3091,7 @@ +@@ -2897,6 +3068,7 @@ ') read_files_pattern($1, userdomain, userdomain) @@ -27382,7 +26181,7 @@ diff -b -B --ignore-all-space --exclude- kernel_search_proc($1) ') -@@ -2973,3 +3222,481 @@ +@@ -3027,3 +3199,501 @@ allow $1 userdomain:dbus send_msg; ') @@ -27864,9 +26663,29 @@ diff -b -B --ignore-all-space --exclude- + + dontaudit $1 userdomain:unix_stream_socket rw_socket_perms; +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.23/policy/modules/system/userdomain.te ++######################################## ++## ++## Append files ++## in a user home subdirectory. ++## ++## ++## ++## Domain allowed access. ++## ++## ++# ++interface(`userdom_append_user_home_content_files',` ++ gen_require(` ++ type user_home_dir_t, user_home_t; ++ ') ++ ++ append_files_pattern($1, user_home_t, user_home_t) ++ allow $1 user_home_dir_t:dir search_dir_perms; ++ files_search_home($1) ++') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.24/policy/modules/system/userdomain.te --- nsaserefpolicy/policy/modules/system/userdomain.te 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/userdomain.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/userdomain.te 2009-07-28 13:42:19.000000000 -0400 @@ -8,13 +8,6 @@ ## @@ -27952,14 +26771,14 @@ diff -b -B --ignore-all-space --exclude- +') + +allow userdomain userdomain:process signull; -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.23/policy/modules/system/virtual.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.24/policy/modules/system/virtual.fc --- nsaserefpolicy/policy/modules/system/virtual.fc 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/policy/modules/system/virtual.fc 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/virtual.fc 2009-07-28 13:42:19.000000000 -0400 @@ -0,0 +1 @@ +# No application file contexts. -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.23/policy/modules/system/virtual.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.24/policy/modules/system/virtual.if --- nsaserefpolicy/policy/modules/system/virtual.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/policy/modules/system/virtual.if 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/virtual.if 2009-07-28 13:42:19.000000000 -0400 @@ -0,0 +1,119 @@ +## Virtual machine emulator and virtualizer + @@ -28080,9 +26899,9 @@ diff -b -B --ignore-all-space --exclude- + allow $1 virtualdomain:process { setsched transition signal signull sigkill }; +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.23/policy/modules/system/virtual.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.24/policy/modules/system/virtual.te --- nsaserefpolicy/policy/modules/system/virtual.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.23/policy/modules/system/virtual.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/virtual.te 2009-07-28 13:42:19.000000000 -0400 @@ -0,0 +1,75 @@ + +policy_module(virtualization, 1.1.2) @@ -28159,9 +26978,9 @@ diff -b -B --ignore-all-space --exclude- + xserver_read_xdm_pid(virtualdomain) + xserver_rw_shm(virtualdomain) +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.23/policy/modules/system/xen.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.24/policy/modules/system/xen.fc --- nsaserefpolicy/policy/modules/system/xen.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/xen.fc 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/xen.fc 2009-07-28 13:42:19.000000000 -0400 @@ -1,5 +1,7 @@ /dev/xen/tapctrl.* -p gen_context(system_u:object_r:xenctl_t,s0) @@ -28189,9 +27008,9 @@ diff -b -B --ignore-all-space --exclude- /var/run/xenstore\.pid -- gen_context(system_u:object_r:xenstored_var_run_t,s0) /var/run/xenstored(/.*)? gen_context(system_u:object_r:xenstored_var_run_t,s0) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.23/policy/modules/system/xen.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.24/policy/modules/system/xen.if --- nsaserefpolicy/policy/modules/system/xen.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/xen.if 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/xen.if 2009-07-28 13:42:19.000000000 -0400 @@ -71,6 +71,8 @@ ') @@ -28264,9 +27083,9 @@ diff -b -B --ignore-all-space --exclude- + files_search_pids($1) +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.23/policy/modules/system/xen.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.24/policy/modules/system/xen.te --- nsaserefpolicy/policy/modules/system/xen.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/modules/system/xen.te 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/modules/system/xen.te 2009-07-28 13:42:19.000000000 -0400 @@ -6,6 +6,13 @@ # Declarations # @@ -28561,9 +27380,9 @@ diff -b -B --ignore-all-space --exclude- +libs_use_ld_so(evtchnd_t) +libs_use_shared_libs(evtchnd_t) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.23/policy/support/obj_perm_sets.spt +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.24/policy/support/obj_perm_sets.spt --- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/support/obj_perm_sets.spt 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/support/obj_perm_sets.spt 2009-07-28 13:42:19.000000000 -0400 @@ -201,7 +201,7 @@ define(`setattr_file_perms',`{ setattr }') define(`read_file_perms',`{ getattr open read lock ioctl }') @@ -28596,9 +27415,9 @@ diff -b -B --ignore-all-space --exclude- +define(`all_association_perms', `{ sendto recvfrom setcontext polmatch } ') + +define(`manage_key_perms', `{ create link read search setattr view write } ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.23/policy/users +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.24/policy/users --- nsaserefpolicy/policy/users 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/policy/users 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/policy/users 2009-07-28 13:42:19.000000000 -0400 @@ -25,11 +25,8 @@ # permit any access to such users, then remove this entry. # @@ -28623,9 +27442,9 @@ diff -b -B --ignore-all-space --exclude- - gen_user(root, sysadm, sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r'), s0, s0 - mls_systemhigh, mcs_allcats) -') +gen_user(root, user, unconfined_r sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r') system_r, s0, s0 - mls_systemhigh, mcs_allcats) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.23/Rules.modular +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.24/Rules.modular --- nsaserefpolicy/Rules.modular 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/Rules.modular 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/Rules.modular 2009-07-28 13:42:19.000000000 -0400 @@ -73,8 +73,8 @@ $(tmpdir)/%.mod: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf %.te @echo "Compliling $(NAME) $(@F) module" @@ -28655,9 +27474,9 @@ diff -b -B --ignore-all-space --exclude- $(tmpdir)/all_te_files.conf: M4PARAM += -D self_contained_policy $(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(base_te_files) $(tmpdir)/rolemap.conf -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.23/support/Makefile.devel +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.24/support/Makefile.devel --- nsaserefpolicy/support/Makefile.devel 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.23/support/Makefile.devel 2009-07-23 16:39:09.000000000 -0400 ++++ serefpolicy-3.6.24/support/Makefile.devel 2009-07-28 13:42:19.000000000 -0400 @@ -185,8 +185,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te @$(EINFO) "Compiling $(NAME) $(basename $(@F)) module" Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.883 retrieving revision 1.884 diff -u -p -r1.883 -r1.884 --- selinux-policy.spec 27 Jul 2009 22:09:57 -0000 1.883 +++ selinux-policy.spec 28 Jul 2009 19:08:17 -0000 1.884 @@ -19,8 +19,8 @@ %define CHECKPOLICYVER 2.0.16-3 Summary: SELinux policy configuration Name: selinux-policy -Version: 3.6.23 -Release: 2%{?dist} +Version: 3.6.24 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Tue Jul 28 2009 Dan Walsh 3.6.24-1 +- Update to upstream + * Mon Jul 27 2009 Dan Walsh 3.6.23-2 - Allow certmaster to override dac permissions Index: sources =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/sources,v retrieving revision 1.196 retrieving revision 1.197 diff -u -p -r1.196 -r1.197 --- sources 23 Jul 2009 21:47:41 -0000 1.196 +++ sources 28 Jul 2009 19:08:17 -0000 1.197 @@ -1 +1 @@ -f39558603d3d7d1500b93f9d4ce27311 serefpolicy-3.6.23.tgz +4d74666892956fc2b2a50158e740174e serefpolicy-3.6.24.tgz From dwalsh at fedoraproject.org Tue Jul 28 19:17:20 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 28 Jul 2009 19:17:20 +0000 (UTC) Subject: rpms/setroubleshoot/devel sources,1.126,1.127 Message-ID: <20090728191720.E91B511C00D4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16377 Modified Files: sources Log Message: * Mon Jul 27 2009 Dan Walsh - 2.2.17-1 - Fix handling of mountpoints that the kernel reports as "/" Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.126 retrieving revision 1.127 diff -u -p -r1.126 -r1.127 --- sources 27 Jul 2009 22:09:35 -0000 1.126 +++ sources 28 Jul 2009 19:17:20 -0000 1.127 @@ -1 +1 @@ -01c40d4978f6be640473c58feeff2cce setroubleshoot-2.2.17.tar.gz +89b9878bbf380d1ae7e44357783ef93d setroubleshoot-2.2.17.tar.gz From limb at fedoraproject.org Tue Jul 28 19:17:31 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 28 Jul 2009 19:17:31 +0000 (UTC) Subject: rpms/calcurse/devel .cvsignore, 1.9, 1.10 calcurse.spec, 1.11, 1.12 sources, 1.9, 1.10 Message-ID: <20090728191731.3660711C00D4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/calcurse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16439 Modified Files: .cvsignore calcurse.spec sources Log Message: New upstream. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/calcurse/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 27 Apr 2009 19:38:36 -0000 1.9 +++ .cvsignore 28 Jul 2009 19:17:30 -0000 1.10 @@ -1 +1 @@ -calcurse-2.5.tar.gz +calcurse-2.6.tar.gz Index: calcurse.spec =================================================================== RCS file: /cvs/pkgs/rpms/calcurse/devel/calcurse.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- calcurse.spec 24 Jul 2009 18:38:03 -0000 1.11 +++ calcurse.spec 28 Jul 2009 19:17:31 -0000 1.12 @@ -1,6 +1,6 @@ Name: calcurse -Version: 2.5 -Release: 2%{?dist} +Version: 2.6 +Release: 1%{?dist} Summary: Text-based personal organizer Group: Applications/Productivity @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Jon Ciesla 2.6-1 +- Update to 2.6. + * Fri Jul 24 2009 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/calcurse/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 27 Apr 2009 19:38:37 -0000 1.9 +++ sources 28 Jul 2009 19:17:31 -0000 1.10 @@ -1 +1 @@ -7868f67c49b426e3ab4a4d34ce16ef1d calcurse-2.5.tar.gz +6f1483afe4d48e387aca8169b4cac10d calcurse-2.6.tar.gz From spot at fedoraproject.org Tue Jul 28 19:23:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 19:23:20 +0000 (UTC) Subject: rpms/R-mAr/F-11 R-mAr.spec,1.13,1.14 Message-ID: <20090728192320.CD38211C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-mAr/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18663/F-11 Modified Files: R-mAr.spec Log Message: update scriptlets, adjust version to include packrel Index: R-mAr.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mAr/F-11/R-mAr.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- R-mAr.spec 23 Feb 2009 23:02:52 -0000 1.13 +++ R-mAr.spec 28 Jul 2009 19:23:20 -0000 1.14 @@ -1,13 +1,14 @@ %define packname mAr +%define packver 1.1 %define packrel 1 Summary: R module to evaluate functions for multivariate AutoRegressive analysis Name: R-%{packname} -Version: 1.1 -Release: 14%{?dist} +Version: %{packver}.%{packrel} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz Source1: COPYING URL: http://cran.r-project.org/contrib BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -46,10 +47,10 @@ cd ..;%{_bindir}/R CMD check %{packname} rm -rf %{buildroot} %post -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -57,6 +58,13 @@ cat %{_libdir}/R/library/*/CONTENTS > %{ %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.1.1-16 +- update scriptlets +- adjust version to include packrel + +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From spot at fedoraproject.org Tue Jul 28 19:23:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 19:23:20 +0000 (UTC) Subject: rpms/R-mAr/devel R-mAr.spec,1.14,1.15 Message-ID: <20090728192320.F08CD11C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-mAr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18663/devel Modified Files: R-mAr.spec Log Message: update scriptlets, adjust version to include packrel Index: R-mAr.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mAr/devel/R-mAr.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- R-mAr.spec 24 Jul 2009 16:12:49 -0000 1.14 +++ R-mAr.spec 28 Jul 2009 19:23:20 -0000 1.15 @@ -1,13 +1,14 @@ %define packname mAr +%define packver 1.1 %define packrel 1 Summary: R module to evaluate functions for multivariate AutoRegressive analysis Name: R-%{packname} -Version: 1.1 -Release: 15%{?dist} +Version: %{packver}.%{packrel} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz Source1: COPYING URL: http://cran.r-project.org/contrib BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -46,10 +47,10 @@ cd ..;%{_bindir}/R CMD check %{packname} rm -rf %{buildroot} %post -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -57,6 +58,10 @@ cat %{_libdir}/R/library/*/CONTENTS > %{ %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.1.1-16 +- update scriptlets +- adjust version to include packrel + * Fri Jul 24 2009 Fedora Release Engineering - 1.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Tue Jul 28 19:33:00 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 19:33:00 +0000 (UTC) Subject: rpms/R-wavethresh/F-10 R-wavethresh.spec,1.8,1.9 sources,1.3,1.4 Message-ID: <20090728193300.955A111C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-wavethresh/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24337/F-10 Modified Files: R-wavethresh.spec sources Log Message: update to 2.2-11, fix versioning, scriptlets Index: R-wavethresh.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/F-10/R-wavethresh.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- R-wavethresh.spec 14 Feb 2008 14:06:33 -0000 1.8 +++ R-wavethresh.spec 28 Jul 2009 19:33:00 -0000 1.9 @@ -1,13 +1,14 @@ -%define packrel 9 +%define packver 2.2 +%define packrel 11 %define packname wavethresh Summary: R module, Software to perform wavelet statistics and transforms Name: R-%{packname} -Version: 2.2 -Release: 9%{?dist} +Version: %{packver}.%{packrel} +Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz URL: http://cran.r-project.org/contrib/main/Descriptions/wavethresh.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -38,10 +39,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -49,6 +50,17 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 2.2.11-1 +- update to 2.2-11 +- use new versioning scheme that includes packrel +- use proper scriptlets + +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Feb 14 2008 Jos? Matos - 2.2-9 - Rebuild for gcc 4.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Sep 2006 13:07:24 -0000 1.3 +++ sources 28 Jul 2009 19:33:00 -0000 1.4 @@ -1 +1 @@ -a1c21183121fcfc379f438eaab506b10 wavethresh_2.2-9.tar.gz +51985b435713a481b938c24dfd0bb4f3 wavethresh_2.2-11.tar.gz From spot at fedoraproject.org Tue Jul 28 19:33:00 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 19:33:00 +0000 (UTC) Subject: rpms/R-wavethresh/F-11 R-wavethresh.spec,1.9,1.10 sources,1.3,1.4 Message-ID: <20090728193300.BF79211C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-wavethresh/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24337/F-11 Modified Files: R-wavethresh.spec sources Log Message: update to 2.2-11, fix versioning, scriptlets Index: R-wavethresh.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/F-11/R-wavethresh.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- R-wavethresh.spec 23 Feb 2009 23:13:58 -0000 1.9 +++ R-wavethresh.spec 28 Jul 2009 19:33:00 -0000 1.10 @@ -1,13 +1,14 @@ -%define packrel 9 +%define packver 2.2 +%define packrel 11 %define packname wavethresh Summary: R module, Software to perform wavelet statistics and transforms Name: R-%{packname} -Version: 2.2 -Release: 10%{?dist} +Version: %{packver}.%{packrel} +Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz URL: http://cran.r-project.org/contrib/main/Descriptions/wavethresh.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -38,10 +39,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -49,6 +50,14 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 2.2.11-1 +- update to 2.2-11 +- use new versioning scheme that includes packrel +- use proper scriptlets + +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Sep 2006 13:07:24 -0000 1.3 +++ sources 28 Jul 2009 19:33:00 -0000 1.4 @@ -1 +1 @@ -a1c21183121fcfc379f438eaab506b10 wavethresh_2.2-9.tar.gz +51985b435713a481b938c24dfd0bb4f3 wavethresh_2.2-11.tar.gz From spot at fedoraproject.org Tue Jul 28 19:33:01 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 19:33:01 +0000 (UTC) Subject: rpms/R-wavethresh/devel .cvsignore, 1.3, 1.4 R-wavethresh.spec, 1.10, 1.11 sources, 1.3, 1.4 Message-ID: <20090728193301.1103F11C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-wavethresh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24337/devel Modified Files: .cvsignore R-wavethresh.spec sources Log Message: update to 2.2-11, fix versioning, scriptlets Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Sep 2006 13:07:24 -0000 1.3 +++ .cvsignore 28 Jul 2009 19:33:00 -0000 1.4 @@ -1 +1 @@ -wavethresh_2.2-9.tar.gz +wavethresh_2.2-11.tar.gz Index: R-wavethresh.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/devel/R-wavethresh.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- R-wavethresh.spec 24 Jul 2009 16:16:15 -0000 1.10 +++ R-wavethresh.spec 28 Jul 2009 19:33:00 -0000 1.11 @@ -1,13 +1,14 @@ -%define packrel 9 +%define packver 2.2 +%define packrel 11 %define packname wavethresh Summary: R module, Software to perform wavelet statistics and transforms Name: R-%{packname} -Version: 2.2 -Release: 11%{?dist} +Version: %{packver}.%{packrel} +Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz URL: http://cran.r-project.org/contrib/main/Descriptions/wavethresh.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -38,10 +39,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -49,6 +50,11 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 2.2.11-1 +- update to 2.2-11 +- use new versioning scheme that includes packrel +- use proper scriptlets + * Fri Jul 24 2009 Fedora Release Engineering - 2.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Sep 2006 13:07:24 -0000 1.3 +++ sources 28 Jul 2009 19:33:00 -0000 1.4 @@ -1 +1 @@ -a1c21183121fcfc379f438eaab506b10 wavethresh_2.2-9.tar.gz +51985b435713a481b938c24dfd0bb4f3 wavethresh_2.2-11.tar.gz From nalin at fedoraproject.org Tue Jul 28 19:34:23 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Tue, 28 Jul 2009 19:34:23 +0000 (UTC) Subject: rpms/nss_ldap/F-10 nss_ldap-264-checkcase.patch, NONE, 1.1 nss_ldap-264-cloexec.patch, NONE, 1.1 nss_ldap-264-ent_internal.patch, NONE, 1.1 pam_ldap-183-releaseconfig.patch, NONE, 1.1 pam_ldap-184-nsrole.patch, NONE, 1.1 nss_ldap.spec, 1.104, 1.105 Message-ID: <20090728193423.5B34C11C00D4@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/nss_ldap/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25065 Modified Files: nss_ldap.spec Added Files: nss_ldap-264-checkcase.patch nss_ldap-264-cloexec.patch nss_ldap-264-ent_internal.patch pam_ldap-183-releaseconfig.patch pam_ldap-184-nsrole.patch Log Message: - merge changes from the f11 and devel branches nss_ldap-264-checkcase.patch: ldap-automount.c | 2 +- ldap-grp.c | 3 ++- ldap-nss.c | 13 +++++++++++++ ldap-nss.h | 4 ++++ ldap-parse.h | 7 ++++++- ldap-proto.c | 3 ++- ldap-pwd.c | 3 ++- ldap-rpc.c | 3 ++- ldap-service.c | 12 ++++++++---- ldap-spwd.c | 3 ++- 10 files changed, 42 insertions(+), 11 deletions(-) --- NEW FILE nss_ldap-264-checkcase.patch --- Search attribute which are not case-sensitive in a directory, but which are in local files on a glibc-based system: posixAccount.uid: struct passwd.pw_name shadowAccount.uid: struct shadow.sp_namp posixGroup.cn: struct group.gr_name ipService.cn,ipServiceProtocol: struct servent.s_name,s_proto ipProtocol.cn: struct protoent.p_name ipHost.cn: OK, actually not case-sensitive in local files ipNetwork.cn: OK, actually not case-sensitive in local files rfc822MailAlias.cn: OK, actually not case-sensitive in local files oncRpc.cn: struct rpcent.r_name nisNetgroup.cn: N/A nisMap.nisMapName: N/A nisObject.nisMapName: N/A nisObject.cn: N/A ieee802Device: N/A bootableDevice: N/A automount.automountKey: no defined structure This patch adds additional logic to reject the result of a search if the field in the result which corresponds to the original request differs by case from the actual request (for example, when a search for a group named "bob" turns up a group named "Bob"), but currently only covers glibc-style systems. Upstream #399. diff -ur nss_ldap-264/ldap-grp.c nss_ldap-264/ldap-grp.c --- nss_ldap-264/ldap-grp.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-grp.c 2009-07-02 10:57:37.000000000 -0400 @@ -1201,7 +1201,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getgrnam, - LM_GROUP, _nss_ldap_parse_gr, LDAP_NSS_BUFLEN_GROUP); + LM_GROUP, _nss_ldap_parse_gr, LDAP_NSS_BUFLEN_GROUP) + AND_REQUIRE_MATCH(name, result->gr_name); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS diff -ur nss_ldap-264/ldap-nss.c nss_ldap-264/ldap-nss.c --- nss_ldap-264/ldap-nss.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-nss.c 2009-07-02 10:46:39.000000000 -0400 @@ -4300,4 +4300,17 @@ return lderrno; } +NSS_STATUS _nss_ldap_expect_name(NSS_STATUS result, + const char *requested_name, + const char *actual_name) +{ + if ((result == NSS_SUCCESS) && + (requested_name != NULL) && + (actual_name != NULL) && + (strcasecmp(requested_name, actual_name) == 0) && + (strcmp(requested_name, actual_name) != 0)) { + return NSS_NOTFOUND; + } + return result; +} diff -ur nss_ldap-264/ldap-nss.h nss_ldap-264/ldap-nss.h --- nss_ldap-264/ldap-nss.h 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-nss.h 2009-07-02 10:28:59.000000000 -0400 @@ -911,4 +911,8 @@ #ifdef CONFIGURE_KRB5_KEYTAB int do_init_krb5_cache(ldap_config_t *config); #endif /* CONFIGURE_KRB5_KEYTAB */ +NSS_STATUS _nss_ldap_expect_name(NSS_STATUS result, + const char *requested_name, + const char *actual_name); + #endif /* _LDAP_NSS_LDAP_LDAP_NSS_H */ diff -ur nss_ldap-264/ldap-parse.h nss_ldap-264/ldap-parse.h --- nss_ldap-264/ldap-parse.h 2006-09-13 02:42:08.000000000 -0400 +++ nss_ldap-264/ldap-parse.h 2009-07-02 10:56:54.000000000 -0400 @@ -94,6 +94,7 @@ #define LOOKUP_NAME(name, result, buffer, buflen, errnop, filter, selector, parser, req_buflen) \ ldap_args_t a; \ + NSS_STATUS s; \ if (buflen < req_buflen) { \ *errnop = ERANGE; \ return NSS_TRYAGAIN; \ @@ -101,7 +102,8 @@ LA_INIT(a); \ LA_STRING(a) = name; \ LA_TYPE(a) = LA_TYPE_STRING; \ - return _nss_ldap_getbyname(&a, result, buffer, buflen, errnop, filter, selector, parser); + s = _nss_ldap_getbyname(&a, result, buffer, buflen, errnop, filter, selector, parser); \ + return s #define LOOKUP_NUMBER(number, result, buffer, buflen, errnop, filter, selector, parser, req_buflen) \ ldap_args_t a; \ if (buflen < req_buflen) { \ @@ -199,4 +201,7 @@ #endif /* HAVE_NSSWITCH_H */ +#define AND_REQUIRE_MATCH(name,field) \ + == NSS_SUCCESS ? _nss_ldap_expect_name(s,name,field) : s + #endif /* _LDAP_NSS_LDAP_LDAP_PARSE_H */ diff -ur nss_ldap-264/ldap-proto.c nss_ldap-264/ldap-proto.c --- nss_ldap-264/ldap-proto.c 2006-09-13 02:42:08.000000000 -0400 +++ nss_ldap-264/ldap-proto.c 2009-07-02 10:58:25.000000000 -0400 @@ -113,7 +113,8 @@ { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getprotobyname, LM_PROTOCOLS, - _nss_ldap_parse_proto, LDAP_NSS_BUFLEN_DEFAULT); + _nss_ldap_parse_proto, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->p_name); } #endif diff -ur nss_ldap-264/ldap-pwd.c nss_ldap-264/ldap-pwd.c --- nss_ldap-264/ldap-pwd.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-pwd.c 2009-07-02 10:57:15.000000000 -0400 @@ -243,7 +243,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getpwnam, - LM_PASSWD, _nss_ldap_parse_pw, LDAP_NSS_BUFLEN_DEFAULT); + LM_PASSWD, _nss_ldap_parse_pw, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->pw_name); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS diff -ur nss_ldap-264/ldap-rpc.c nss_ldap-264/ldap-rpc.c --- nss_ldap-264/ldap-rpc.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-rpc.c 2009-07-02 10:58:01.000000000 -0400 @@ -123,7 +123,8 @@ { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getrpcbyname, LM_RPC, _nss_ldap_parse_rpc, - LDAP_NSS_BUFLEN_DEFAULT); + LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH(name, result->r_name); } #endif diff -ur nss_ldap-264/ldap-service.c nss_ldap-264/ldap-service.c --- nss_ldap-264/ldap-service.c 2009-07-02 15:44:14.000000000 -0400 +++ nss_ldap-264/ldap-service.c 2009-07-02 15:45:07.000000000 -0400 @@ -230,16 +230,20 @@ char *buffer, size_t buflen, int *errnop) { ldap_args_t a; + NSS_STATUS s; LA_INIT (a); LA_STRING (a) = name; LA_TYPE (a) = (proto == NULL) ? LA_TYPE_STRING : LA_TYPE_STRING_AND_STRING; LA_STRING2 (a) = proto; - return _nss_ldap_getbyname (&a, result, buffer, buflen, errnop, - ((proto == NULL) ? _nss_ldap_filt_getservbyname - : _nss_ldap_filt_getservbynameproto), - LM_SERVICES, _nss_ldap_parse_serv); + s = _nss_ldap_getbyname (&a, result, buffer, buflen, errnop, + ((proto == NULL) ? _nss_ldap_filt_getservbyname + : _nss_ldap_filt_getservbynameproto), + LM_SERVICES, _nss_ldap_parse_serv); + s = _nss_ldap_expect_name(s, name, result->s_name); + s = _nss_ldap_expect_name(s, proto, result->s_proto); + return s; } #endif diff -ur nss_ldap-264/ldap-spwd.c nss_ldap-264/ldap-spwd.c --- nss_ldap-264/ldap-spwd.c 2009-07-02 11:01:03.000000000 -0400 +++ nss_ldap-264/ldap-spwd.c 2009-07-02 10:58:50.000000000 -0400 @@ -149,7 +149,8 @@ char *buffer, size_t buflen, int *errnop) { LOOKUP_NAME (name, result, buffer, buflen, errnop, _nss_ldap_filt_getspnam, - LM_SHADOW, _nss_ldap_parse_sp, LDAP_NSS_BUFLEN_DEFAULT); + LM_SHADOW, _nss_ldap_parse_sp, LDAP_NSS_BUFLEN_DEFAULT) + AND_REQUIRE_MATCH (name, result->sp_namp); } #elif defined(HAVE_NSSWITCH_H) static NSS_STATUS --- nss_ldap-264/ldap-automount.c 2009-07-02 16:03:30.000000000 -0400 +++ nss_ldap-264/ldap-automount.c 2009-07-02 16:03:48.000000000 -0400 @@ -384,7 +384,7 @@ _nss_ldap_filt_getautomntbyname, LM_AUTOMOUNT, _nss_ldap_parse_automount); - + stat = _nss_ldap_expect_name(stat, key, canon_key ? *canon_key : NULL); if (stat != NSS_NOTFOUND) { break; /* on success or error other than not found */ nss_ldap-264-cloexec.patch: ldap-nss.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nss_ldap-264-cloexec.patch --- diff -up nss_ldap-264/ldap-nss.c nss_ldap-264/ldap-nss.c --- nss_ldap-264/ldap-nss.c 2009-07-23 18:55:15.290388484 -0400 +++ nss_ldap-264/ldap-nss.c 2009-07-23 19:01:33.328398737 -0400 @@ -896,6 +896,7 @@ do_drop_connection(int sd, int closeSd) /* we must let dup2 close sd for us to avoid race conditions * in multithreaded code. */ + fcntl (dummyfd, F_SETFD, 1L); do_dupfd (dummyfd, sd); do_closefd (dummyfd); } nss_ldap-264-ent_internal.patch: ldap-grp.c | 4 ++-- ldap-netgrp.c | 2 +- ldap-nss.c | 13 ++++++++++++- ldap-nss.h | 11 +++++++++++ 4 files changed, 26 insertions(+), 4 deletions(-) --- NEW FILE nss_ldap-264-ent_internal.patch --- Distinguish between contexts that are somewhat persistent and one-offs which are used to fulfill part of a larger request. diff -up nss_ldap/ldap-grp.c nss_ldap/ldap-grp.c --- nss_ldap/ldap-grp.c +++ nss_ldap/ldap-grp.c @@ -857,7 +857,7 @@ ng_chase (const char *dn, ldap_initgroup LA_STRING (a) = dn; LA_TYPE (a) = LA_TYPE_STRING; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { return NSS_UNAVAIL; } @@ -930,7 +930,7 @@ ng_chase_backlink (const char ** members LA_STRING_LIST (a) = filteredMembersOf; LA_TYPE (a) = LA_TYPE_STRING_LIST_OR; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { free (filteredMembersOf); return NSS_UNAVAIL; diff -up nss_ldap/ldap-netgrp.c nss_ldap/ldap-netgrp.c --- nss_ldap/ldap-netgrp.c +++ nss_ldap/ldap-netgrp.c @@ -691,7 +691,7 @@ do_innetgr_nested (ldap_innetgr_args_t * LA_TYPE (a) = LA_TYPE_STRING; LA_STRING (a) = nested; /* memberNisNetgroup */ - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { debug ("<== do_innetgr_nested: failed to initialize context"); return NSS_UNAVAIL; diff -up nss_ldap/ldap-nss.c nss_ldap/ldap-nss.c --- nss_ldap/ldap-nss.c +++ nss_ldap/ldap-nss.c @@ -1961,6 +1961,7 @@ _nss_ldap_ent_context_init_locked (ent_c debug ("<== _nss_ldap_ent_context_init_locked"); return NULL; } + ctx->ec_internal = 0; *pctx = ctx; } else @@ -1990,6 +1991,15 @@ _nss_ldap_ent_context_init_locked (ent_c return ctx; } +ent_context_t * +_nss_ldap_ent_context_init_internal_locked (ent_context_t ** pctx) +{ + ent_context_t *ctx; + ctx = _nss_ldap_ent_context_init_locked (pctx); + if (ctx != NULL) + ctx->ec_internal = 1; + return ctx; +} /* * Clears a given context; we require the caller @@ -2031,7 +2041,8 @@ _nss_ldap_ent_context_release (ent_conte LS_INIT (ctx->ec_state); - if (_nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) + if (!ctx->ec_internal && + _nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) { do_close (); } diff -up nss_ldap/ldap-nss.h nss_ldap/ldap-nss.h --- nss_ldap/ldap-nss.h +++ nss_ldap/ldap-nss.h @@ -560,6 +560,8 @@ struct ent_context ldap_state_t ec_state; /* eg. for services */ int ec_msgid; /* message ID */ LDAPMessage *ec_res; /* result chain */ + int ec_internal; /* this context is just a part of a larger + * query for information */ ldap_service_search_descriptor_t *ec_sd; /* current sd */ struct berval *ec_cookie; /* cookie for paged searches */ int ec_eof; /* reached notional end of file */ @@ -744,6 +746,15 @@ ent_context_t *_nss_ldap_ent_context_ini ent_context_t *_nss_ldap_ent_context_init_locked (ent_context_t **); /* + * _nss_ldap_ent_context_init_internal_locked() has the same + * behaviour, except it marks the context as one that's being + * used to fetch additional data used in answering a request, i.e. + * that this isn't the "main" context + */ + +ent_context_t *_nss_ldap_ent_context_init_internal_locked (ent_context_t **); + +/* * _nss_ldap_ent_context_release() is used to manually free a context */ void _nss_ldap_ent_context_release (ent_context_t *); pam_ldap-183-releaseconfig.patch: pam_ldap.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) --- NEW FILE pam_ldap-183-releaseconfig.patch --- diff -up pam_ldap/pam_ldap.c pam_ldap/pam_ldap.c --- pam_ldap/pam_ldap.c 2009-07-22 15:55:42.000000000 -0400 +++ pam_ldap/pam_ldap.c 2009-07-22 16:00:23.000000000 -0400 @@ -437,6 +437,7 @@ static void _release_config (pam_ldap_config_t ** pconfig) { pam_ldap_config_t *c; + pam_ssd_t *ssd, *next_ssd; c = *pconfig; if (c == NULL) @@ -445,6 +446,9 @@ _release_config (pam_ldap_config_t ** pc if (c->configFile != NULL) free (c->configFile); + if (c->uri != NULL) + free (c->uri); + if (c->host != NULL) free (c->host); @@ -474,6 +478,16 @@ _release_config (pam_ldap_config_t ** pc free (c->sslpath); } + ssd = c->ssd; + while ( ssd != NULL ) + { + next_ssd = ssd->next; + free (ssd->base); + free (ssd->filter); + free (ssd); + ssd = next_ssd; + } + if (c->userattr != NULL) { free (c->userattr); @@ -509,6 +523,36 @@ _release_config (pam_ldap_config_t ** pc free (c->logdir); } + if (c->tls_cacertfile != NULL) + { + free (c->tls_cacertfile); + } + + if (c->tls_cacertdir != NULL) + { + free (c->tls_cacertdir); + } + + if (c->tls_ciphers != NULL) + { + free (c->tls_ciphers); + } + + if (c->tls_cert != NULL) + { + free (c->tls_cert); + } + + if (c->tls_key != NULL) + { + free (c->tls_key); + } + + if (c->tls_randfile != NULL) + { + free (c->tls_randfile); + } + if (c->sasl_mechanism != NULL) { free (c->sasl_mechanism); pam_ldap-184-nsrole.patch: pam_ldap.5 | 4 ++++ pam_ldap.c | 27 +++++++++++++++++++++++++++ pam_ldap.h | 2 ++ 3 files changed, 33 insertions(+) --- NEW FILE pam_ldap-184-nsrole.patch --- Submitted to upstream #382. diff -up pam_ldap-184/pam_ldap.5 pam_ldap-184/pam_ldap.5 --- pam_ldap-184/pam_ldap.5 2008-11-17 13:36:03.000000000 -0500 +++ pam_ldap-184/pam_ldap.5 2008-11-17 13:37:35.000000000 -0500 @@ -333,6 +333,10 @@ group specified in the .B pam_groupdn option. .TP +.B pam_nsrole +Specifies a value which the user's entry's "nsRole" attribute must match +for logon authorization to succeed. +.TP .B pam_min_uid If specified, a user must have a POSIX user ID of at least .B uid diff -up pam_ldap-184/pam_ldap.c pam_ldap-184/pam_ldap.c --- pam_ldap-184/pam_ldap.c 2008-11-17 13:35:52.000000000 -0500 +++ pam_ldap-184/pam_ldap.c 2008-11-17 13:35:56.000000000 -0500 @@ -499,6 +499,11 @@ _release_config (pam_ldap_config_t ** pc free (c->groupdn); } + if (c->nsrole != NULL) + { + free (c->nsrole); + } + if (c->filter != NULL) { free (c->filter); @@ -639,6 +644,7 @@ _alloc_config (pam_ldap_config_t ** pres result->userattr = NULL; result->groupattr = NULL; result->groupdn = NULL; + result->nsrole = NULL; result->getpolicy = 0; result->checkhostattr = 0; result->checkserviceattr = 0; @@ -1043,6 +1049,10 @@ _read_config (const char *configFile, pa { CHECKPOINTER (result->groupattr = strdup (v)); } + else if (!strcasecmp (k, "pam_nsrole")) + { + CHECKPOINTER (result->nsrole = strdup (v)); + } else if (!strcasecmp (k, "pam_min_uid")) { result->min_uid = (uid_t) atol (v); @@ -4136,6 +4146,23 @@ pam_sm_acct_mgmt (pam_handle_t * pamh, i rc = success; } + /* check the user's entry's nsRole attribute for the required value */ + if (rc == success && session->conf->nsrole != NULL) + { + rc = ldap_compare_s (session->ld, + session->info->userdn, + "nsRole", session->conf->nsrole); + if (rc != LDAP_COMPARE_TRUE) + { + snprintf (buf, sizeof buf, "You must have the %s role to login.", + session->conf->nsrole); + _conv_sendmsg (appconv, buf, PAM_ERROR_MSG, no_warn); + return PAM_PERM_DENIED; + } + else + rc = success; + } + if (rc == success && session->conf->checkserviceattr) { rc = _service_ok (pamh, session); --- pam_ldap-184/pam_ldap.h 2008-11-17 13:39:49.000000000 -0500 +++ pam_ldap-184/pam_ldap.h 2008-11-17 13:39:50.000000000 -0500 @@ -95,6 +95,8 @@ char *groupdn; /* group membership attribute; defaults to uniquemember */ char *groupattr; + /* role name; optional, for access authorization */ + char *nsrole; /* LDAP protocol version */ int version; /* search timelimit */ Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/F-10/nss_ldap.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- nss_ldap.spec 27 Jan 2009 21:25:35 -0000 1.104 +++ nss_ldap.spec 28 Jul 2009 19:34:23 -0000 1.105 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 1%{?dist} +Release: 6%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -23,6 +23,11 @@ Patch15: nss_ldap-257-mozldap.patch Patch16: pam_ldap-184-referral-passwd2.patch Patch17: nss_ldap-259-res_init.patch Patch19: pam_ldap-184-broken-sasl-rebind.patch +Patch20: pam_ldap-184-nsrole.patch +Patch21: nss_ldap-264-checkcase.patch +Patch22: nss_ldap-264-ent_internal.patch +Patch23: pam_ldap-183-releaseconfig.patch +Patch24: nss_ldap-264-cloexec.patch URL: http://www.padl.com/ License: LGPLv2+ @@ -62,6 +67,9 @@ cp nss_ldap-%{version}/snprintf.h pam_ld pushd nss_ldap-%{version} %patch8 -p1 -b .soname %patch17 -p1 -b .res_init +#%patch21 -p1 -b .checkcase +%patch22 -p1 -b .ent_internal +%patch24 -p1 -b .cloexec autoreconf -f -i popd @@ -74,6 +82,8 @@ pushd pam_ldap-%{pam_ldap_version} %patch13 -p1 -b .exop-modify %patch16 -p1 -b .referral-passwd2 %patch19 -p1 -b .broken-sasl-rebind +%patch20 -p1 -b .nsrole +%patch23 -p1 -b .releaseconfig autoreconf -f -i popd @@ -188,8 +198,44 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Tue Jul 28 2009 Nalin Dahyabhai 264-6 +- set close-on-exec on the dummy socket created in the child atfork() (#512856) + +* Wed Jul 22 2009 Nalin Dahyabhai 264-5 +- fix some minor leaks in pam_ldap, part of upstream #326,#333 + +* Tue Jul 7 2009 Nalin Dahyabhai - 264-4 +- add proposed patch for upstream #322: crashing in oneshot mode + +* Mon Jul 6 2009 Nalin Dahyabhai +- add but don't apply proposed patch for upstream #399: depending on the + server to enforce the expected case-sensitivity opens up corner cases + +* Fri Jun 19 2009 Kedar Sovani - 264-3 +- BuildRequires: openssl-static + +* Fri Jun 19 2009 Nalin Dahyabhai +- revert most of the previous round of changes: splitting pam_ldap off + won't be helpful in the long term if it, too, is eventually going to conflict + with the nss-ldapd package + +* Mon Apr 6 2009 Nalin Dahyabhai - 264/184-100 +- split pam_ldap off into a separate binary package +- require /%{_lib}/security/pam_ldap.so to pull in pam_ldap on upgrades +- require our configuration file to come from somewhere +- remove some cruft +- move the %%postun that fixes up pam configs to the pam_ldap package + +* Wed Feb 25 2009 Fedora Release Engineering - 264-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Jan 27 2009 Nalin Dahyabhai - 264-1 - update to 264, pulling in Luke's patch for #248, among others +- add optional checking of nsRole to pam_ldap (#202135, upstream #382) + +* Mon Dec 22 2008 Nalin Dahyabhai - 263-2 +- correct some build errors +- add but do not apply proposed pam_ldap patch to add nsrole support * Wed Oct 29 2008 Nalin Dahyabhai - 263-1 - update to 263, pulling in Luke's patch for #374 (#445972) which doesn't From sandeen at fedoraproject.org Tue Jul 28 19:35:14 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Tue, 28 Jul 2009 19:35:14 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-ecryptfs-overflow-fixes.patch, NONE, 1.1 kernel.spec, 1.1665, 1.1666 Message-ID: <20090728193514.F188611C00D4@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25729 Modified Files: kernel.spec Added Files: linux-2.6-ecryptfs-overflow-fixes.patch Log Message: * Tue Jul 28 2009 Eric Sandeen 2.6.31-0.102.rc4.git2 - Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) linux-2.6-ecryptfs-overflow-fixes.patch: keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) --- NEW FILE linux-2.6-ecryptfs-overflow-fixes.patch --- [PATCH 1/2] eCryptfs: Check Tag 11 literal data buffer size Tag 11 packets are stored in the metadata section of an eCryptfs file to store the key signature(s) used to encrypt the file encryption key. After extracting the packet length field to determine the key signature length, a check is not performed to see if the length would exceed the key signature buffer size that was passed into parse_tag_11_packet(). Thanks to Ramon de Carvalho Valle for finding this bug using fsfuzzer. Signed-off-by: Tyler Hicks [PATCH 2/2] eCryptfs: parse_tag_3_packet check tag 3 packet encrypted key size The parse_tag_3_packet function does not check if the tag 3 packet contains a encrypted key size larger than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES. Signed-off-by: Ramon de Carvalho Valle [tyhicks at linux.vnet.ibm.com: Added printk newline and changed goto to out_free] Signed-off-by: Tyler Hicks --- fs/ecryptfs/keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) Index: linux-2.6.30.noarch/fs/ecryptfs/keystore.c =================================================================== --- linux-2.6.30.noarch.orig/fs/ecryptfs/keystore.c +++ linux-2.6.30.noarch/fs/ecryptfs/keystore.c @@ -1303,6 +1303,13 @@ parse_tag_3_packet(struct ecryptfs_crypt } (*new_auth_tok)->session_key.encrypted_key_size = (body_size - (ECRYPTFS_SALT_SIZE + 5)); + if ((*new_auth_tok)->session_key.encrypted_key_size + > ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES) { + printk(KERN_WARNING "Tag 3 packet contains key larger " + "than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES\n"); + rc = -EINVAL; + goto out_free; + } if (unlikely(data[(*packet_size)++] != 0x04)) { printk(KERN_WARNING "Unknown version number [%d]\n", data[(*packet_size) - 1]); @@ -1455,6 +1462,12 @@ parse_tag_11_packet(unsigned char *data, rc = -EINVAL; goto out; } + if (unlikely((*tag_11_contents_size) > max_contents_bytes)) { + printk(KERN_ERR "Literal data section in tag 11 packet exceeds " + "expected size\n"); + rc = -EINVAL; + goto out; + } if (data[(*packet_size)++] != 0x62) { printk(KERN_WARNING "Unrecognizable packet\n"); rc = -EINVAL; Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1665 retrieving revision 1.1666 diff -u -p -r1.1665 -r1.1666 --- kernel.spec 28 Jul 2009 16:03:52 -0000 1.1665 +++ kernel.spec 28 Jul 2009 19:35:14 -0000 1.1666 @@ -607,6 +607,8 @@ Patch150: linux-2.6.29-sparc-IOC_TYPECHE Patch160: linux-2.6-execshield.patch +Patch200: linux-2.6-ecryptfs-overflow-fixes.patch + Patch250: linux-2.6-debug-sizeof-structs.patch Patch260: linux-2.6-debug-nmi-timeout.patch Patch270: linux-2.6-debug-taint-vm.patch @@ -1151,6 +1153,9 @@ ApplyPatch linux-2.6-execshield.patch # btrfs +# eCryptfs +ApplyPatch linux-2.6-ecryptfs-overflow-fixes.patch + # NFSv4 ApplyPatch linux-2.6-nfsd4-proots.patch @@ -1898,8 +1903,8 @@ fi # and build. %changelog -* Tue Jul 28 2009 Ben Skeggs -- drm-nouveau.patch: tile shared fb area on nv50 +* Tue Jul 28 2009 Eric Sandeen 2.6.31-0.102.rc4.git2 +- Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) * Tue Jul 28 2009 Kyle McMartin 2.6.31-0.101.rc4.git2 - 2.6.31-rc4-git2 From transif at fedoraproject.org Tue Jul 28 19:41:21 2009 From: transif at fedoraproject.org (Transifex System User) Date: Tue, 28 Jul 2009 19:41:21 +0000 (UTC) Subject: comps/po it.po,1.32,1.33 Message-ID: <20090728194121.6AB9311C00D4@cvs1.fedora.phx.redhat.com> Author: transif Update of /cvs/pkgs/comps/po In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28794/po Modified Files: it.po Log Message: Sending translation for Italian View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.32 -r 1.33 it.poIndex: it.po =================================================================== RCS file: /cvs/pkgs/comps/po/it.po,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- it.po 7 Jun 2009 21:00:45 -0000 1.32 +++ it.po 28 Jul 2009 19:41:21 -0000 1.33 @@ -9,1488 +9,2083 @@ # Pierro Silvio , 2009. # Guido Grazioli , 2009. # mario_santagiuliana , 2009. +# Daniele Catanesi , 2009. msgid "" msgstr "" "Project-Id-Version: comps.HEAD.it\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-07 19:09+0000\n" -"PO-Revision-Date: 2009-06-07 23:00+0200\n" -"Last-Translator: Francesco Tombolini \n" +"POT-Creation-Date: 2009-04-29 15:51-0400\n" +"PO-Revision-Date: 2009-07-28 17:01+0100\n" +"Last-Translator: Daniele Catanesi \n" "Language-Team: Italiano \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" -#: ../comps-f9.xml.in.h:1 ../comps-f10.xml.in.h:1 ../comps-f11.xml.in.h:1 -#: ../comps-f12.xml.in.h:1 +#: ../comps-f7.xml.in.h:1 +#: ../comps-f8.xml.in.h:1 +#: ../comps-f9.xml.in.h:1 +#: ../comps-f10.xml.in.h:1 +#: ../comps-f11.xml.in.h:1 msgid "A lightweight desktop environment that works well on low end machines." msgstr "Un ambiente desktop performante anche su computer meno potenti." -#: ../comps-f9.xml.in.h:2 ../comps-f10.xml.in.h:3 ../comps-f11.xml.in.h:3 -#: ../comps-f12.xml.in.h:3 ../comps-el4.xml.in.h:1 ../comps-el5.xml.in.h:1 +#: ../comps-f7.xml.in.h:2 +#: ../comps-f8.xml.in.h:2 +#: ../comps-f9.xml.in.h:2 +#: ../comps-f10.xml.in.h:3 +#: ../comps-f11.xml.in.h:3 +#: ../comps-el4.xml.in.h:1 +#: ../comps-el5.xml.in.h:1 msgid "Administration Tools" msgstr "Strumenti di amministrazione" -#: ../comps-f9.xml.in.h:3 ../comps-f10.xml.in.h:4 ../comps-f11.xml.in.h:4 -#: ../comps-f12.xml.in.h:4 +#: ../comps-f7.xml.in.h:3 +#: ../comps-f8.xml.in.h:3 +#: ../comps-f9.xml.in.h:3 +#: ../comps-f10.xml.in.h:4 +#: ../comps-f11.xml.in.h:4 msgid "Afrikaans Support" msgstr "Supporto lingua africana" -#: ../comps-f9.xml.in.h:4 ../comps-f10.xml.in.h:5 ../comps-f11.xml.in.h:5 -#: ../comps-f12.xml.in.h:5 +#: ../comps-f7.xml.in.h:4 +#: ../comps-f8.xml.in.h:4 +#: ../comps-f9.xml.in.h:4 +#: ../comps-f10.xml.in.h:5 +#: ../comps-f11.xml.in.h:5 msgid "Albanian Support" msgstr "Supporto lingua albanese" -#: ../comps-f9.xml.in.h:5 ../comps-f10.xml.in.h:6 ../comps-f11.xml.in.h:7 -#: ../comps-f12.xml.in.h:7 ../comps-el4.xml.in.h:2 ../comps-el5.xml.in.h:2 +#: ../comps-f7.xml.in.h:5 +#: ../comps-f8.xml.in.h:5 +#: ../comps-f9.xml.in.h:5 +#: ../comps-f10.xml.in.h:6 +#: ../comps-f11.xml.in.h:7 +#: ../comps-el4.xml.in.h:2 +#: ../comps-el5.xml.in.h:2 msgid "Applications" msgstr "Applicazioni" -#: ../comps-f9.xml.in.h:6 ../comps-f10.xml.in.h:7 ../comps-f11.xml.in.h:8 -#: ../comps-f12.xml.in.h:8 +#: ../comps-f7.xml.in.h:6 +#: ../comps-f8.xml.in.h:6 +#: ../comps-f9.xml.in.h:6 +#: ../comps-f10.xml.in.h:7 +#: ../comps-f11.xml.in.h:8 msgid "Applications to perform a variety of tasks" msgstr "Applicazioni generiche per vari compiti" -#: ../comps-f9.xml.in.h:7 ../comps-f10.xml.in.h:8 ../comps-f11.xml.in.h:9 -#: ../comps-f12.xml.in.h:9 ../comps-el4.xml.in.h:4 ../comps-el5.xml.in.h:4 +#: ../comps-f7.xml.in.h:7 +#: ../comps-f8.xml.in.h:7 +#: ../comps-f9.xml.in.h:7 +#: ../comps-f10.xml.in.h:8 +#: ../comps-f11.xml.in.h:9 +#: ../comps-el4.xml.in.h:4 +#: ../comps-el5.xml.in.h:4 msgid "Arabic Support" msgstr "Supporto lingua araba" -#: ../comps-f9.xml.in.h:8 ../comps-f10.xml.in.h:9 ../comps-f11.xml.in.h:10 -#: ../comps-f12.xml.in.h:10 ../comps-el4.xml.in.h:5 ../comps-el5.xml.in.h:5 +#: ../comps-f7.xml.in.h:8 +#: ../comps-f8.xml.in.h:8 +#: ../comps-f9.xml.in.h:8 +#: ../comps-f10.xml.in.h:9 +#: ../comps-f11.xml.in.h:10 +#: ../comps-el4.xml.in.h:5 +#: ../comps-el5.xml.in.h:5 msgid "Armenian Support" msgstr "Supporto lingua armena" -#: ../comps-f9.xml.in.h:9 ../comps-f10.xml.in.h:10 ../comps-f11.xml.in.h:11 -#: ../comps-f12.xml.in.h:11 +#: ../comps-f7.xml.in.h:9 +#: ../comps-f8.xml.in.h:9 +#: ../comps-f9.xml.in.h:9 +#: ../comps-f10.xml.in.h:10 +#: ../comps-f11.xml.in.h:11 msgid "Assamese Support" msgstr "Supporto lingua assamese" -#: ../comps-f9.xml.in.h:10 ../comps-f10.xml.in.h:11 ../comps-f11.xml.in.h:12 -#: ../comps-f12.xml.in.h:12 ../comps-el4.xml.in.h:6 ../comps-el5.xml.in.h:6 +#: ../comps-f7.xml.in.h:10 +#: ../comps-f8.xml.in.h:10 +#: ../comps-f9.xml.in.h:10 +#: ../comps-f10.xml.in.h:11 +#: ../comps-f11.xml.in.h:12 +#: ../comps-el4.xml.in.h:6 +#: ../comps-el5.xml.in.h:6 msgid "Authoring and Publishing" msgstr "Redazione e publishing" -#: ../comps-f9.xml.in.h:11 ../comps-f10.xml.in.h:12 ../comps-f11.xml.in.h:14 -#: ../comps-f12.xml.in.h:14 +#: ../comps-f7.xml.in.h:11 +#: ../comps-f8.xml.in.h:11 +#: ../comps-f9.xml.in.h:11 +#: ../comps-f10.xml.in.h:12 +#: ../comps-f11.xml.in.h:14 msgid "Base" msgstr "Base" -#: ../comps-f9.xml.in.h:12 ../comps-f10.xml.in.h:13 ../comps-f11.xml.in.h:15 -#: ../comps-f12.xml.in.h:15 ../comps-el4.xml.in.h:7 ../comps-el5.xml.in.h:7 +#: ../comps-f7.xml.in.h:12 +#: ../comps-f8.xml.in.h:12 +#: ../comps-f9.xml.in.h:12 +#: ../comps-f10.xml.in.h:13 +#: ../comps-f11.xml.in.h:15 +#: ../comps-el4.xml.in.h:7 +#: ../comps-el5.xml.in.h:7 msgid "Base System" msgstr "Sistema di base" -#: ../comps-f9.xml.in.h:13 ../comps-f10.xml.in.h:14 ../comps-f11.xml.in.h:16 -#: ../comps-f12.xml.in.h:16 +#: ../comps-f7.xml.in.h:13 +#: ../comps-f8.xml.in.h:13 +#: ../comps-f9.xml.in.h:13 +#: ../comps-f10.xml.in.h:14 +#: ../comps-f11.xml.in.h:16 msgid "Basic support for the Ruby programming language." msgstr "Supporto di base per il linguaggio di programmazione Ruby." -#: ../comps-f9.xml.in.h:14 ../comps-f10.xml.in.h:15 ../comps-f11.xml.in.h:17 -#: ../comps-f12.xml.in.h:17 +#: ../comps-f7.xml.in.h:14 +#: ../comps-f8.xml.in.h:14 +#: ../comps-f9.xml.in.h:14 +#: ../comps-f10.xml.in.h:15 +#: ../comps-f11.xml.in.h:17 msgid "Basque Support" msgstr "Supporto lingua basca" -#: ../comps-f9.xml.in.h:15 ../comps-f10.xml.in.h:16 ../comps-f11.xml.in.h:18 -#: ../comps-f12.xml.in.h:18 +#: ../comps-f7.xml.in.h:15 +#: ../comps-f8.xml.in.h:15 +#: ../comps-f9.xml.in.h:15 +#: ../comps-f10.xml.in.h:16 +#: ../comps-f11.xml.in.h:18 msgid "Belarusian Support" msgstr "Supporto lingua bielorussa" -#: ../comps-f9.xml.in.h:16 ../comps-f10.xml.in.h:17 ../comps-f11.xml.in.h:19 -#: ../comps-f12.xml.in.h:19 +#: ../comps-f7.xml.in.h:16 +#: ../comps-f8.xml.in.h:16 +#: ../comps-f9.xml.in.h:16 +#: ../comps-f10.xml.in.h:17 +#: ../comps-f11.xml.in.h:19 [...2490 lines suppressed...] -#: ../comps-f11.xml.in.h:146 ../comps-f12.xml.in.h:146 +#: ../comps-f11.xml.in.h:147 msgid "OCaml" msgstr "OCaml" -#: ../comps-f11.xml.in.h:147 ../comps-f12.xml.in.h:147 +#: ../comps-f11.xml.in.h:148 msgid "Occitan Support" msgstr "Supporto lingua occitana" -#: ../comps-f11.xml.in.h:150 ../comps-f12.xml.in.h:150 +#: ../comps-f11.xml.in.h:151 msgid "Online Help and Documentation" msgstr "Documentazione e Aiuto Online" -#: ../comps-f11.xml.in.h:163 ../comps-f12.xml.in.h:163 +#: ../comps-f11.xml.in.h:164 msgid "Sanskrit Support" msgstr "Supporto lingua sanscrita" -#: ../comps-f11.xml.in.h:164 ../comps-f12.xml.in.h:164 +#: ../comps-f11.xml.in.h:165 msgid "Sardinian Support" msgstr "Supporto lingua sarda" -#: ../comps-f11.xml.in.h:181 ../comps-f12.xml.in.h:181 +#: ../comps-f11.xml.in.h:182 msgid "Sugar Desktop Environment" msgstr "Ambiente desktop Sugar" -#: ../comps-f11.xml.in.h:182 ../comps-f12.xml.in.h:182 -msgid "" -"Support for cross-compiling programs to 32 bit Windows targets, testing " -"them, and building installers, all from within Fedora." -msgstr "" -"Supporto per i programmi di multi-compilazione per obiettivi Windows a 32 " -"bit, il loro test e la costruzione di installer, tutto dall'interno di " -"Fedora." - -#: ../comps-f11.xml.in.h:185 ../comps-f12.xml.in.h:185 -msgid "" -"Support for developing software using the Objective CAML programming " -"language and libraries." -msgstr "" -"Supporto per lo sviluppo di programmi in linguaggio Objective CAML e per le " -"sue librerie." +#: ../comps-f11.xml.in.h:183 +msgid "Support for cross-compiling programs to 32 bit Windows targets, testing them, and building installers, all from within Fedora." +msgstr "Supporto per i programmi di multi-compilazione per obiettivi Windows a 32 bit, il loro test e la costruzione di installer, tutto dall'interno di Fedora." + +#: ../comps-f11.xml.in.h:186 +msgid "Support for developing software using the Objective CAML programming language and libraries." +msgstr "Supporto per lo sviluppo di programmi in linguaggio Objective CAML e per le sue librerie." -#: ../comps-f11.xml.in.h:187 ../comps-f12.xml.in.h:187 +#: ../comps-f11.xml.in.h:188 msgid "Swahili Support" msgstr "Supporto lingua swahili" -#: ../comps-f11.xml.in.h:195 ../comps-f12.xml.in.h:195 +#: ../comps-f11.xml.in.h:196 msgid "Tetum Support" msgstr "Supporto lingua tetum" -#: ../comps-f11.xml.in.h:222 ../comps-f12.xml.in.h:222 -msgid "" -"This group is a collection of tools used in the design, modification, " -"manipulation, and packaging of fonts." -msgstr "" -"Questo gruppo contiene un insieme di strumenti utili per la creazione, la " -"modifica, la manipolazione e pacchettizzazione di font." +#: ../comps-f11.xml.in.h:223 +msgid "This group is a collection of tools used in the design, modification, manipulation, and packaging of fonts." +msgstr "Questo gruppo contiene un insieme di strumenti utili per la creazione, la modifica, la manipolazione e pacchettizzazione di font." -#: ../comps-f11.xml.in.h:234 ../comps-f12.xml.in.h:234 +#: ../comps-f11.xml.in.h:235 msgid "Turkmen Support" msgstr "Supporto lingua turkmena" -#: ../comps-f11.xml.in.h:236 ../comps-f12.xml.in.h:236 +#: ../comps-f11.xml.in.h:237 msgid "Upper Sorbian Support" msgstr "Supporto lingua upper sorbian" -#: ../comps-el4.xml.in.h:3 ../comps-el5.xml.in.h:3 +#: ../comps-el4.xml.in.h:3 +#: ../comps-el5.xml.in.h:3 msgid "Applications for a variety of tasks" msgstr "Applicazioni generiche" -#: ../comps-el4.xml.in.h:12 ../comps-el5.xml.in.h:14 +#: ../comps-el4.xml.in.h:12 +#: ../comps-el5.xml.in.h:13 msgid "Dialup Networking Support" msgstr "Accesso remoto dialup" -#: ../comps-el4.xml.in.h:22 ../comps-el5.xml.in.h:24 -msgid "" -"GNOME is a powerful, graphical user interface which includes a panel, " -"desktop, system icons, and a graphical file manager." -msgstr "" -"GNOME ? una potente interfaccia utente grafica, comprensiva di un gestore di " -"file, di un pannello per gestire il desktop e delle icone di sistema." - -#: ../comps-el4.xml.in.h:35 ../comps-el5.xml.in.h:36 -msgid "" -"KDE is a powerful, graphical user interface which includes a panel, desktop, " -"system icons, and a graphical file manager." -msgstr "" -"KDE ? una potente interfaccia utente grafica, comprensiva di un gestore di " -"file, di un pannello desktop e delle icone di sistema." - -#: ../comps-el4.xml.in.h:44 ../comps-el5.xml.in.h:45 -msgid "" -"Sometimes called text editors, these are programs that allow you to create " -"and edit files. These include Emacs and Vi." -msgstr "" -"Spesso chiamati editor di testi, questi programmi permettono di creare e " -"modificare file di testo. Sono compresi Emacs e Vi." +#: ../comps-el4.xml.in.h:22 +#: ../comps-el5.xml.in.h:23 +msgid "GNOME is a powerful, graphical user interface which includes a panel, desktop, system icons, and a graphical file manager." +msgstr "GNOME ? una potente interfaccia utente grafica, comprensiva di un gestore di file, di un pannello per gestire il desktop e delle icone di sistema." + +#: ../comps-el4.xml.in.h:35 +#: ../comps-el5.xml.in.h:35 +msgid "KDE is a powerful, graphical user interface which includes a panel, desktop, system icons, and a graphical file manager." +msgstr "KDE ? una potente interfaccia utente grafica, comprensiva di un gestore di file, di un pannello desktop e delle icone di sistema." + +#: ../comps-el4.xml.in.h:44 +#: ../comps-el5.xml.in.h:44 +msgid "Sometimes called text editors, these are programs that allow you to create and edit files. These include Emacs and Vi." +msgstr "Spesso chiamati editor di testi, questi programmi permettono di creare e modificare file di testo. Sono compresi Emacs e Vi." -#: ../comps-el4.xml.in.h:50 ../comps-el5.xml.in.h:49 +#: ../comps-el4.xml.in.h:50 +#: ../comps-el5.xml.in.h:48 msgid "The XEmacs text editor." msgstr "L'editor di testi XEmacs." -#: ../comps-el4.xml.in.h:54 ../comps-el5.xml.in.h:53 -msgid "" -"These tools allow you to create documentation in the DocBook format and " -"convert them to HTML, PDF, Postscript, and text." -msgstr "" -"Questi strumenti permettono la creazione di documenti in formato DocBook, e " -"di convertirli nei formati HTML, PDF, Postscript e testo." +#: ../comps-el4.xml.in.h:54 +#: ../comps-el5.xml.in.h:52 +msgid "These tools allow you to create documentation in the DocBook format and convert them to HTML, PDF, Postscript, and text." +msgstr "Questi strumenti permettono la creazione di documenti in formato DocBook, e di convertirli nei formati HTML, PDF, Postscript e testo." -#: ../comps-el4.xml.in.h:64 ../comps-el5.xml.in.h:63 +#: ../comps-el4.xml.in.h:64 +#: ../comps-el5.xml.in.h:62 msgid "This group is a collection of network servers for specific purposes" msgstr "Questo gruppo contiene un insieme di server di rete per specifici protocolli" -#: ../comps-el4.xml.in.h:65 ../comps-el5.xml.in.h:64 +#: ../comps-el4.xml.in.h:65 +#: ../comps-el5.xml.in.h:63 msgid "This group is a collection of tools and resources of Arabic environments." -msgstr "" -"Questo gruppo contiene un insieme di strumenti e risorse per ambienti in " -"lingua araba." +msgstr "Questo gruppo contiene un insieme di strumenti e risorse per ambienti in lingua araba." -#: ../comps-el4.xml.in.h:67 ../comps-el5.xml.in.h:67 +#: ../comps-el4.xml.in.h:67 +#: ../comps-el5.xml.in.h:66 msgid "This group is a collection of tools and resources of Hebrew environments." -msgstr "" -"Questo gruppo contiene un insieme di strumenti e risorse per ambienti in " -"lingua ebraica." +msgstr "Questo gruppo contiene un insieme di strumenti e risorse per ambienti in lingua ebraica." -#: ../comps-el4.xml.in.h:68 ../comps-el5.xml.in.h:68 +#: ../comps-el4.xml.in.h:68 +#: ../comps-el5.xml.in.h:67 msgid "This group is a collection of tools and resources of Japanese environments." -msgstr "" -"Questo gruppo contiene un insieme di strumenti e risorse per ambienti in " -"lingua giapponese." +msgstr "Questo gruppo contiene un insieme di strumenti e risorse per ambienti in lingua giapponese." -#: ../comps-el4.xml.in.h:77 ../comps-el5.xml.in.h:78 +#: ../comps-el4.xml.in.h:77 +#: ../comps-el5.xml.in.h:77 msgid "XEmacs" msgstr "XEmacs" -#: ../comps-el5.xml.in.h:66 +#: ../comps-el5.xml.in.h:65 msgid "This group is a collection of tools and resources of Czech environments." -msgstr "" -"Questo gruppo contiene un insieme di strumenti e risorse per ambienti in " -"lingua ceca." +msgstr "Questo gruppo contiene un insieme di strumenti e risorse per ambienti in lingua ceca." From sandeen at fedoraproject.org Tue Jul 28 20:04:18 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Tue, 28 Jul 2009 20:04:18 +0000 (UTC) Subject: rpms/kernel/F-10 linux-2.6-ecryptfs-overflow-fixes.patch, NONE, 1.1 kernel.spec, 1.1395, 1.1396 Message-ID: <20090728200418.34B2711C00D4@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6963 Modified Files: kernel.spec Added Files: linux-2.6-ecryptfs-overflow-fixes.patch Log Message: * Tue Jul 28 2009 Eric Sandeen - Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) linux-2.6-ecryptfs-overflow-fixes.patch: keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) --- NEW FILE linux-2.6-ecryptfs-overflow-fixes.patch --- [PATCH 1/2] eCryptfs: Check Tag 11 literal data buffer size Tag 11 packets are stored in the metadata section of an eCryptfs file to store the key signature(s) used to encrypt the file encryption key. After extracting the packet length field to determine the key signature length, a check is not performed to see if the length would exceed the key signature buffer size that was passed into parse_tag_11_packet(). Thanks to Ramon de Carvalho Valle for finding this bug using fsfuzzer. Signed-off-by: Tyler Hicks [PATCH 2/2] eCryptfs: parse_tag_3_packet check tag 3 packet encrypted key size The parse_tag_3_packet function does not check if the tag 3 packet contains a encrypted key size larger than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES. Signed-off-by: Ramon de Carvalho Valle [tyhicks at linux.vnet.ibm.com: Added printk newline and changed goto to out_free] Signed-off-by: Tyler Hicks --- fs/ecryptfs/keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) Index: linux-2.6.29.noarch/fs/ecryptfs/keystore.c =================================================================== --- linux-2.6.29.noarch.orig/fs/ecryptfs/keystore.c +++ linux-2.6.29.noarch/fs/ecryptfs/keystore.c @@ -1304,6 +1304,13 @@ parse_tag_3_packet(struct ecryptfs_crypt } (*new_auth_tok)->session_key.encrypted_key_size = (body_size - (ECRYPTFS_SALT_SIZE + 5)); + if ((*new_auth_tok)->session_key.encrypted_key_size + > ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES) { + printk(KERN_WARNING "Tag 3 packet contains key larger " + "than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES\n"); + rc = -EINVAL; + goto out_free; + } if (unlikely(data[(*packet_size)++] != 0x04)) { printk(KERN_WARNING "Unknown version number [%d]\n", data[(*packet_size) - 1]); @@ -1450,6 +1457,12 @@ parse_tag_11_packet(unsigned char *data, rc = -EINVAL; goto out; } + if (unlikely((*tag_11_contents_size) > max_contents_bytes)) { + printk(KERN_ERR "Literal data section in tag 11 packet exceeds " + "expected size\n"); + rc = -EINVAL; + goto out; + } if (data[(*packet_size)++] != 0x62) { printk(KERN_WARNING "Unrecognizable packet\n"); rc = -EINVAL; Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1395 retrieving revision 1.1396 diff -u -p -r1.1395 -r1.1396 --- kernel.spec 23 Jul 2009 15:13:22 -0000 1.1395 +++ kernel.spec 28 Jul 2009 20:04:17 -0000 1.1396 @@ -720,6 +720,7 @@ Patch2922: fs-relatime-make-default.patc Patch2950: linux-2.6-kjournald-use-rt-io-priority.patch Patch3000: linux-2.6-btrfs-unstable-update.patch +Patch3001: linux-2.6-ecryptfs-overflow-fixes.patch Patch9000: squashfs3.patch Patch9001: squashfs-fixups.patch @@ -1221,6 +1222,9 @@ ApplyPatch linux-2.6-kjournald-use-rt-io # btrfs ApplyPatch linux-2.6-btrfs-unstable-update.patch +# eCryptfs +ApplyPatch linux-2.6-ecryptfs-overflow-fixes.patch + # USB # ACPI @@ -1983,6 +1987,9 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Tue Jul 28 2009 Eric Sandeen +- Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) + * Thu Jul 23 2009 Jarod Wilson - virtio_blk: don't bounce highmem requests, works around a frequent oops in kvm guests using virtio block devices (#510304) From jcollie at fedoraproject.org Tue Jul 28 20:04:51 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 20:04:51 +0000 (UTC) Subject: rpms/pitivi/F-11 .cvsignore, 1.14, 1.15 pitivi.spec, 1.34, 1.35 sources, 1.14, 1.15 Message-ID: <20090728200451.ED35511C00D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/pitivi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7353 Modified Files: .cvsignore pitivi.spec sources Log Message: * Mon Jul 27 2009 Jeffrey C. Ollie - 0.13.1.2-1 - Update to prerelease Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 1 Jun 2009 14:08:03 -0000 1.14 +++ .cvsignore 28 Jul 2009 20:04:51 -0000 1.15 @@ -1 +1 @@ -pitivi-0.13.1.tar.bz2 +pitivi-0.13.1.2.tar.bz2 Index: pitivi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/F-11/pitivi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- pitivi.spec 1 Jun 2009 19:21:50 -0000 1.34 +++ pitivi.spec 28 Jul 2009 20:04:51 -0000 1.35 @@ -1,8 +1,8 @@ %define major 0.13 -%define minor 1 +%define minor 1.2 Name: pitivi Version: %{major}.%{minor} -Release: 1.2%{?dist} +Release: 1%{?dist} Summary: Non-linear video editor Group: Applications/Multimedia @@ -12,7 +12,7 @@ Source0: http://ftp.gnome.org/pub BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: gnonlin >= 0.10.11 +Requires: gnonlin >= 0.10.11.2 Requires: gstreamer-python >= 0.10.15 Requires: gstreamer >= 0.10.23 Requires: pygtk2 >= 2.12.0 @@ -22,7 +22,7 @@ Requires: pygoocanvas BuildRequires: gstreamer-devel >= 0.10.23 BuildRequires: gstreamer-plugins-base-devel >= 0.10.23 -BuildRequires: gnonlin >= 0.10.11 +BuildRequires: gnonlin >= 0.10.11.2 BuildRequires: gstreamer-python >= 0.10.15 BuildRequires: GConf2-devel BuildRequires: gtk2-devel >= 2.8 @@ -65,7 +65,6 @@ desktop-file-install --vendor fedora pitivi.desktop %find_lang %{name} - %clean rm -rf %{buildroot} @@ -80,6 +79,12 @@ rm -rf %{buildroot} %{_datadir}/mime/packages/pitivi.xml %changelog +* Mon Jul 27 2009 Jeffrey C. Ollie - 0.13.1.2-1 +- Update to prerelease + +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Jeffrey C. Ollie - 0.13.1-1 - 0.13.1 Release "L'Aquila Immota Manet : The eagle remains unmoved" - ------------------------------------------------------------------ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 1 Jun 2009 14:08:03 -0000 1.14 +++ sources 28 Jul 2009 20:04:51 -0000 1.15 @@ -1 +1 @@ -a925ac7404f0235d22ec09479696ccd6 pitivi-0.13.1.tar.bz2 +d642eb3c2aa2d8497598948162a0ddfc pitivi-0.13.1.2.tar.bz2 From jcollie at fedoraproject.org Tue Jul 28 20:20:06 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 20:20:06 +0000 (UTC) Subject: rpms/gsm/devel gsm.spec,1.7,1.8 Message-ID: <20090728202006.BCBB111C04D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/gsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14526 Modified Files: gsm.spec Log Message: * Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1 - Update to 1.0.13 Index: gsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/gsm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gsm.spec 25 Jul 2009 01:33:42 -0000 1.7 +++ gsm.spec 28 Jul 2009 20:20:06 -0000 1.8 @@ -1,6 +1,6 @@ Name: gsm -Version: 1.0.12 -Release: 8%{?dist} +Version: 1.0.13 +Release: 1%{?dist} Summary: Shared libraries for GSM speech compressor Group: System Environment/Libraries @@ -12,7 +12,8 @@ Patch1: %{name}-warnings.patch Patch2: %{name}-64bit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%define srcver 1.0-pl12 +%define srcver 1.0-pl13 +%define soname 1.0.12 %description Contains runtime shared libraries for libgsm, an implementation of @@ -77,7 +78,7 @@ make install \ GSM_INSTALL_INC=$RPM_BUILD_ROOT%{_includedir}/gsm \ GSM_INSTALL_LIB=$RPM_BUILD_ROOT%{_libdir} -cp -p $RPM_BUILD_DIR/gsm-%{srcver}/lib/libgsm.so.%{version} $RPM_BUILD_ROOT%{_libdir} +cp -p $RPM_BUILD_DIR/gsm-%{srcver}/lib/libgsm.so.%{soname} $RPM_BUILD_ROOT%{_libdir} ln -s libgsm.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libgsm.so.1 ln -s libgsm.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libgsm.so @@ -89,7 +90,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.a %check # This is to ensure that the patch creates the proper library version. -[ -f $RPM_BUILD_ROOT%{_libdir}/libgsm.so.%{version} ] +[ -f $RPM_BUILD_ROOT%{_libdir}/libgsm.so.%{soname} ] make addtst @@ -120,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1 +- Update to 1.0.13 + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.12-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Tue Jul 28 20:27:15 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 20:27:15 +0000 (UTC) Subject: rpms/R-waveslim/devel R-waveslim.spec,1.14,1.15 Message-ID: <20090728202715.4FB1A11C0423@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-waveslim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18041/devel Modified Files: R-waveslim.spec Log Message: update scriptlets, url Index: R-waveslim.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-waveslim/devel/R-waveslim.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- R-waveslim.spec 24 Jul 2009 16:16:01 -0000 1.14 +++ R-waveslim.spec 28 Jul 2009 20:27:15 -0000 1.15 @@ -3,11 +3,11 @@ Summary: R module, Basic wavelet routines for 1,2 and 3-dimensional signal processing Name: R-%{packname} Version: 1.6.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz -URL: http://www.image.ucar.edu/staff/whitcher/ +URL: http://waveslim.r-forge.r-project.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -44,10 +44,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -55,6 +55,9 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.6.1-5 +- update scriptlets, url + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Tue Jul 28 20:27:15 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 20:27:15 +0000 (UTC) Subject: rpms/R-waveslim/F-10 R-waveslim.spec,1.12,1.13 Message-ID: <20090728202715.0E7B611C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-waveslim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18041/F-10 Modified Files: R-waveslim.spec Log Message: update scriptlets, url Index: R-waveslim.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-waveslim/F-10/R-waveslim.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- R-waveslim.spec 14 Feb 2008 12:43:08 -0000 1.12 +++ R-waveslim.spec 28 Jul 2009 20:27:14 -0000 1.13 @@ -3,11 +3,11 @@ Summary: R module, Basic wavelet routines for 1,2 and 3-dimensional signal processing Name: R-%{packname} Version: 1.6.1 -Release: 2%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz -URL: http://www.image.ucar.edu/staff/whitcher/ +URL: http://waveslim.r-forge.r-project.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -44,10 +44,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -55,6 +55,15 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.6.1-5 +- update scriptlets, url + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Feb 14 2008 Jos? Matos - 1.6.1-2 - Rebuild for gcc 4.3 From spot at fedoraproject.org Tue Jul 28 20:27:15 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 20:27:15 +0000 (UTC) Subject: rpms/R-waveslim/F-11 R-waveslim.spec,1.13,1.14 Message-ID: <20090728202715.21D4811C0417@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-waveslim/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18041/F-11 Modified Files: R-waveslim.spec Log Message: update scriptlets, url Index: R-waveslim.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-waveslim/F-11/R-waveslim.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- R-waveslim.spec 23 Feb 2009 23:13:03 -0000 1.13 +++ R-waveslim.spec 28 Jul 2009 20:27:15 -0000 1.14 @@ -3,11 +3,11 @@ Summary: R module, Basic wavelet routines for 1,2 and 3-dimensional signal processing Name: R-%{packname} Version: 1.6.1 -Release: 3%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz -URL: http://www.image.ucar.edu/staff/whitcher/ +URL: http://waveslim.r-forge.r-project.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -44,10 +44,10 @@ cd ..;%{_bindir}/R CMD check %{packname} %{__rm} -rf %{buildroot} %post -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -%{__cat} %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -55,6 +55,12 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.6.1-5 +- update scriptlets, url + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jcollie at fedoraproject.org Tue Jul 28 20:29:26 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Tue, 28 Jul 2009 20:29:26 +0000 (UTC) Subject: rpms/gsm/devel .cvsignore,1.2,1.3 gsm.spec,1.8,1.9 sources,1.2,1.3 Message-ID: <20090728202926.D14C911C00D4@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/gsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19319 Modified Files: .cvsignore gsm.spec sources Log Message: * Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1.1 - Upload sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 May 2007 23:18:21 -0000 1.2 +++ .cvsignore 28 Jul 2009 20:29:26 -0000 1.3 @@ -1 +1 @@ -gsm-1.0.12.tar.gz +gsm-1.0.13.tar.gz Index: gsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/gsm.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gsm.spec 28 Jul 2009 20:20:06 -0000 1.8 +++ gsm.spec 28 Jul 2009 20:29:26 -0000 1.9 @@ -1,6 +1,6 @@ Name: gsm Version: 1.0.13 -Release: 1%{?dist} +Release: 1.1%{?dist} Summary: Shared libraries for GSM speech compressor Group: System Environment/Libraries @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1.1 +- Upload sources + * Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1 - Update to 1.0.13 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 May 2007 23:18:21 -0000 1.2 +++ sources 28 Jul 2009 20:29:26 -0000 1.3 @@ -1 +1 @@ -8909828c601e82e842e6a0ceade60a4e gsm-1.0.12.tar.gz +c1ba392ce61dc4aff1c29ea4e92f6df4 gsm-1.0.13.tar.gz From lennart at fedoraproject.org Tue Jul 28 20:30:33 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 20:30:33 +0000 (UTC) Subject: rpms/sound-theme-freedesktop/devel sound-theme-freedesktop.spec, 1.8, 1.9 Message-ID: <20090728203033.06F1711C0423@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/sound-theme-freedesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20002 Modified Files: sound-theme-freedesktop.spec Log Message: new release Index: sound-theme-freedesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-theme-freedesktop/devel/sound-theme-freedesktop.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sound-theme-freedesktop.spec 27 Jul 2009 04:36:00 -0000 1.8 +++ sound-theme-freedesktop.spec 28 Jul 2009 20:30:32 -0000 1.9 @@ -1,9 +1,9 @@ Name: sound-theme-freedesktop -Version: 0.2 -Release: 4%{?dist} +Version: 0.3 +Release: 1%{?dist} Summary: freedesktop.org sound theme Group: User Interface/Desktops -Source0: http://people.freedesktop.org/~mccann/dist/sound-theme-freedesktop-%{version}.tar.bz2 +Source0: http://people.freedesktop.org/~lennart/sound-theme-freedesktop-%{version}.tar.bz2 # For details on the licenses used, see README License: GPLv2+ and LGPLv2+ and CC-BY-SA and CC-BY Url: http://www.freedesktop.org/wiki/Specifications/sound-theme-spec @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sounds/freedesktop/stereo/*.ogg %changelog +* Tue Jul 28 2009 Lennart Poettering 0.3-1 +- Update to 0.3 + * Sun Jul 26 2009 Fedora Release Engineering - 0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From lennart at fedoraproject.org Tue Jul 28 20:34:35 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 20:34:35 +0000 (UTC) Subject: rpms/sound-theme-freedesktop/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090728203435.1FC1411C00D4@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/sound-theme-freedesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23000 Modified Files: .cvsignore sources Log Message: add missing tarball Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sound-theme-freedesktop/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 22 Oct 2008 18:20:29 -0000 1.3 +++ .cvsignore 28 Jul 2009 20:34:34 -0000 1.4 @@ -1 +1 @@ -sound-theme-freedesktop-0.2.tar.bz2 +sound-theme-freedesktop-0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sound-theme-freedesktop/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Oct 2008 18:20:29 -0000 1.3 +++ sources 28 Jul 2009 20:34:34 -0000 1.4 @@ -1 +1 @@ -45c8383071d5c6514aa1899e2d0fc675 sound-theme-freedesktop-0.2.tar.bz2 +58fc5e0d9cfd228a59c3af65a7d4f517 sound-theme-freedesktop-0.3.tar.bz2 From lennart at fedoraproject.org Tue Jul 28 20:37:06 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 20:37:06 +0000 (UTC) Subject: rpms/sound-theme-freedesktop/devel sound-theme-freedesktop.spec, 1.9, 1.10 Message-ID: <20090728203706.C682711C00D4@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/sound-theme-freedesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24334 Modified Files: sound-theme-freedesktop.spec Log Message: bump because we missed tag Index: sound-theme-freedesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-theme-freedesktop/devel/sound-theme-freedesktop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sound-theme-freedesktop.spec 28 Jul 2009 20:30:32 -0000 1.9 +++ sound-theme-freedesktop.spec 28 Jul 2009 20:37:06 -0000 1.10 @@ -1,6 +1,6 @@ Name: sound-theme-freedesktop Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: freedesktop.org sound theme Group: User Interface/Desktops Source0: http://people.freedesktop.org/~lennart/sound-theme-freedesktop-%{version}.tar.bz2 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sounds/freedesktop/stereo/*.ogg %changelog +* Tue Jul 28 2009 Lennart Poettering 0.3-2 +- Forgot tarball + * Tue Jul 28 2009 Lennart Poettering 0.3-1 - Update to 0.3 From rdieter at fedoraproject.org Tue Jul 28 20:47:34 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 20:47:34 +0000 (UTC) Subject: rpms/koffice/F-11 koffice-1.6.3-dejavu_fonts.patch, NONE, 1.1 koffice-1.6.3-no_local_fonts.patch, NONE, 1.1 koffice.spec, 1.102, 1.103 Message-ID: <20090728204734.8EBF511C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29331 Modified Files: koffice.spec Added Files: koffice-1.6.3-dejavu_fonts.patch koffice-1.6.3-no_local_fonts.patch Log Message: * Tue Jul 28 2009 Rex Dieter 2:1.6.3-22.20090306svn - -kformula: omit bundled fonts - koffice kword crash with formulas (#514217) koffice-1.6.3-dejavu_fonts.patch: Makefile.am | 2 +- contextstyle.cc | 2 +- fontstyle.cc | 8 +++++++- symboltable.cc | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) --- NEW FILE koffice-1.6.3-dejavu_fonts.patch --- diff -up koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu koffice-1.6.3/lib/kformula/contextstyle.cc --- koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/contextstyle.cc 2009-07-28 15:29:06.420292073 -0500 @@ -106,7 +106,7 @@ void ContextStyle::readConfig( KConfig* if ( ! FontStyle::missingFonts( init ).isEmpty() ) { kdWarning( DEBUGID) << "Not all basic fonts found\n"; } - mathFont.fromString("Arev Sans"); + mathFont.fromString("DejaVu Sans"); bracketFont.fromString("cmex10"); diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu koffice-1.6.3/lib/kformula/fontstyle.cc --- koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/fontstyle.cc 2009-07-28 15:35:51.457543630 -0500 @@ -102,7 +102,7 @@ QStringList FontStyle::missingFontsInter QStringList missing; testFont( missing, "cmex10" ); - testFont( missing, "arev sans"); + testFont( missing, "dejavu sans"); return missing; } @@ -111,9 +111,12 @@ void FontStyle::installFonts() { if (m_installed) return; + QStringList missing = missingFontsInternal(); if (!missing.isEmpty()) { +// don't install local copies of fonts -- Rex +/* QStringList urlList; for (QStringList::iterator it = missing.begin(); it != missing.end(); ++it) { @@ -135,6 +138,9 @@ void FontStyle::installFonts() KIO::copy(urlList, "fonts:/Personal/", false); KMessageBox::information(qApp->mainWidget(), i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect")); +*/ + KMessageBox::information(qApp->mainWidget(), + i18n("Some symbol fonts for formulas was font to be missing")); } m_installed = true; } diff -up koffice-1.6.3/lib/kformula/Makefile.am.dejavu koffice-1.6.3/lib/kformula/Makefile.am --- koffice-1.6.3/lib/kformula/Makefile.am.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/Makefile.am 2009-07-28 15:41:35.306393788 -0500 @@ -1,7 +1,7 @@ INCLUDES= $(KOFFICE_INCLUDES) $(KOTEXT_INCLUDES) $(all_includes) -SUBDIRS = pics fonts dtd +SUBDIRS = pics dtd ####### # We have to name it kformulalib, not just kformula, since that's the name of the kdeinit module for kformula. diff -up koffice-1.6.3/lib/kformula/symboltable.cc.dejavu koffice-1.6.3/lib/kformula/symboltable.cc --- koffice-1.6.3/lib/kformula/symboltable.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/symboltable.cc 2009-07-28 15:29:06.421292200 -0500 @@ -101,7 +101,7 @@ QFont SymbolTable::font( QChar symbol, c if ( fm.inFont( symbol ) ) { return f; } - return QFont("Arev Sans"); + return QFont("DejaVu Sans"); } CharClass SymbolTable::charClass( QChar symbol ) const koffice-1.6.3-no_local_fonts.patch: fontstyle.cc | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE koffice-1.6.3-no_local_fonts.patch --- diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts koffice-1.6.3/lib/kformula/fontstyle.cc --- koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/fontstyle.cc 2009-07-28 15:14:57.879543856 -0500 @@ -111,6 +111,8 @@ void FontStyle::installFonts() { if (m_installed) return; +// don't depend on installing fonts locally -- Rex +/* QStringList missing = missingFontsInternal(); if (!missing.isEmpty()) { @@ -136,6 +138,7 @@ void FontStyle::installFonts() KMessageBox::information(qApp->mainWidget(), i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect")); } +*/ m_installed = true; } Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-11/koffice.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- koffice.spec 16 Apr 2009 14:51:02 -0000 1.102 +++ koffice.spec 28 Jul 2009 20:47:34 -0000 1.103 @@ -11,7 +11,7 @@ BuildRequires: libutempter-devel Name: koffice Epoch: 2 Version: 1.6.3 -Release: 21.%{svn}svn%{?dist} +Release: 22.%{svn}svn%{?dist} Summary: An integrated office suite Group: Applications/Productivity @@ -44,6 +44,9 @@ Patch2: ftp://ftp.kde.org/pub/kde/securi # svn diff -c 738929 svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/ Patch3: koffice-1.6.3-gcc43.patch +# drop need/use of local fonts, use dejavu instead of arev +Patch4: koffice-1.6.3-dejavu_fonts.patch + # BuildRequires: world-devel ;) BuildRequires: %{kdelibs3}-devel # See http://bugzilla.redhat.com/244091 @@ -231,7 +234,9 @@ Requires: %{name}-core = %{epoch}: Summary: A powerful formula editor Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} +# for cmex10 Requires: mathml-fonts +Requires: dejavu-sans-fonts %description kformula %{summary}. @@ -257,11 +262,15 @@ Requires: %{name}-core = %{epoch} #patch2 -p0 -b .CVE-2007-4352-5392-5393 #patch3 -p1 -b .gcc43 +%patch4 -p1 -b .dejavu + %patch50 -p1 -b glibc_strrchr %patch100 -p1 -b .svn %patch101 -p1 -b .quint32 +# hack/fix for newer automake +sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh make -f admin/Makefile.common @@ -278,7 +287,7 @@ unset QTDIR || : ; . /etc/profile.d/qt.s --with-pqxxlibdir=%{_libdir} --with-pqxxincdir=%{_includedir} \ --disable-final -make %{?_smp_mflags} -k +make %{?_smp_mflags} %install @@ -315,6 +324,9 @@ for desktop_file in %{buildroot}%{_datad done ## unpackaged files +# fonts +rm -rv %{buildroot}%{_datadir}/apps/kformula/fonts/ +# libtool archives rm -f %{buildroot}%{_libdir}/lib*.la # shouldn't these be in koffice-l10n? rm -f %{buildroot}%{_datadir}/locale/pl/LC_MESSAGES/kexi_{add,delete}_column_gui_transl_pl.sh @@ -736,8 +748,12 @@ xdg-desktop-menu forceupdate 2> /dev/nul %changelog +* Tue Jul 28 2009 Rex Dieter 2:1.6.3-22.20090306svn +- -kformula: omit bundled fonts +- koffice kword crash with formulas (#514217) + * Thu Apr 16 2009 Rex Dieter 2:1.6.3-21.20090306svn -- -krita: revert/readd dropped Requires: -filters +- -krita: revert/re-add dropped Requires: -filters * Tue Mar 10 2009 Kevin Kofler 2:1.6.3-20.20090306svn - rebuild for new ImageMagick From rdieter at fedoraproject.org Tue Jul 28 20:49:40 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 20:49:40 +0000 (UTC) Subject: rpms/koffice/F-11 koffice.spec,1.103,1.104 Message-ID: <20090728204940.D126211C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30371 Modified Files: koffice.spec Log Message: typo Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-11/koffice.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- koffice.spec 28 Jul 2009 20:47:34 -0000 1.103 +++ koffice.spec 28 Jul 2009 20:49:40 -0000 1.104 @@ -217,7 +217,7 @@ Requires: %{name}-kexi = %{epoch}: %{summary}. %package kexi-driver-pgsql -Summary: Postresql driver for kexi +Summary: Postgresql driver for kexi Group: Applications/Productivity Requires: %{name}-kexi = %{epoch}:%{version}-%{release} %description kexi-driver-pgsql From lennart at fedoraproject.org Tue Jul 28 20:52:34 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 20:52:34 +0000 (UTC) Subject: rpms/pulseaudio/F-11 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch, NONE, 1.1 pulseaudio.spec, 1.84, 1.85 Message-ID: <20090728205234.3250511C00D4@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31669 Modified Files: pulseaudio.spec Added Files: 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch Log Message: Fix bug 510071 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch: configure.ac | 6 ++++++ src/Makefile.am | 4 ++-- src/daemon/main.c | 23 ----------------------- 3 files changed, 8 insertions(+), 25 deletions(-) --- NEW FILE 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch --- >From 84200b423ebfa7e2dad9b1b65f64eac7bf3d2114 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= Date: Tue, 7 Jul 2009 20:51:53 +0200 Subject: [PATCH] Remove exploitable LD_BIND_NOW hack (CVE-2009-1894). Instead of trying to re-execute pulseaudio itself with LD_BIND_NOW set, just find the correct flag for the linker to request immediate bindings (all ELF files support that option), and use that when linking the daemon. Reduce the amount of compiled and executed code as well. --- configure.ac | 6 ++++++ src/Makefile.am | 4 ++-- src/daemon/main.c | 22 ---------------------- 3 files changed, 8 insertions(+), 24 deletions(-) diff --git a/configure.ac b/configure.ac index 9c96d1c..cc7f674 100644 --- a/configure.ac +++ b/configure.ac @@ -113,6 +113,12 @@ CC_CHECK_LDFLAGS([${tmp_ldflag}], [VERSIONING_LDFLAGS='-Wl,-version-script=$(srcdir)/map-file']) AC_SUBST([VERSIONING_LDFLAGS]) +dnl Use immediate (now) bindings; avoids the funky re-call in itself +dnl the -z now syntax is lifted from Sun's linker and works with GNU's too +dnl other linkes might be added later +CC_CHECK_LDFLAGS([-Wl,-z,now], [IMMEDIATE_LDFLAGS="-Wl,-z,now"]) +AC_SUBST([IMMEDIATE_LDFLAGS]) + dnl Check for the proper way to build libraries that have no undefined dnl symbols; on some hosts this needs to be avoided but the macro dnl takes care of it. diff --git a/src/Makefile.am b/src/Makefile.am index 7ebf1f8..ac627c8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -183,9 +183,9 @@ PREOPEN_LIBS = $(modlibexec_LTLIBRARIES) endif if FORCE_PREOPEN -pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) -dlpreopen force $(foreach f,$(PREOPEN_LIBS),-dlpreopen $(f)) +pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(IMMEDIATE_LDFLAGS) -dlpreopen force $(foreach f,$(PREOPEN_LIBS),-dlpreopen $(f)) else -pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) -dlopen force $(foreach f,$(PREOPEN_LIBS),-dlopen $(f)) +pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(IMMEDIATE_LDFLAGS) -dlopen force $(foreach f,$(PREOPEN_LIBS),-dlopen $(f)) endif ################################### diff --git a/src/daemon/main.c b/src/daemon/main.c index eb378d2..0f6fc90 100644 --- a/src/daemon/main.c +++ b/src/daemon/main.c @@ -401,28 +401,6 @@ int main(int argc, char *argv[]) { pa_log_set_level(PA_LOG_NOTICE); pa_log_set_flags(PA_LOG_COLORS|PA_LOG_PRINT_FILE|PA_LOG_PRINT_LEVEL, PA_LOG_RESET); -#if defined(__linux__) && defined(__OPTIMIZE__) - /* - Disable lazy relocations to make usage of external libraries - more deterministic for our RT threads. We abuse __OPTIMIZE__ as - a check whether we are a debug build or not. - */ - - if (!getenv("LD_BIND_NOW")) { - char *rp; - - /* We have to execute ourselves, because the libc caches the - * value of $LD_BIND_NOW on initialization. */ - - pa_set_env("LD_BIND_NOW", "1"); - - if ((rp = pa_readlink("/proc/self/exe"))) - pa_assert_se(execv(rp, argv) == 0); - else - pa_log_warn("Couldn't read /proc/self/exe, cannot self execute. Running in a chroot()?"); - } -#endif - if ((e = getenv("PULSE_PASSED_FD"))) { passed_fd = atoi(e); -- 1.6.3.3 Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/F-11/pulseaudio.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- pulseaudio.spec 9 Jun 2009 17:53:35 -0000 1.84 +++ pulseaudio.spec 28 Jul 2009 20:52:33 -0000 1.85 @@ -3,7 +3,7 @@ Name: pulseaudio Summary: Improved Linux sound server Version: 0.9.15 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}.tar.gz @@ -36,6 +36,7 @@ Patch25: 0001-core-cache-requested-laten Patch26: 0001-sample-fix-build-on-BE-archs.patch Patch27: 0001-alsa-properly-convert-return-values-of-snd_strerror.patch Patch28: 0001-alsa-remove-debug-code.patch +Patch29: 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch URL: http://pulseaudio.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: m4 @@ -244,6 +245,7 @@ This package contains command line utili %patch26 -p1 %patch27 -p1 %patch28 -p1 +%patch29 -p1 %build CFLAGS="-ggdb" %configure --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-realtime-group=pulse-rt --with-access-group=pulse-access @@ -464,6 +466,9 @@ groupadd -r pulse-access &>/dev/null || %{_mandir}/man1/pax11publish.1.gz %changelog +* Tue Jul 28 2009 Lennart Poettering 0.9.15-15 +- Fix bug 510071 + * Tue Jun 9 2009 Lennart Poettering 0.9.15-14 - Fix mmap() related segfault - Closes #504750 From rdieter at fedoraproject.org Tue Jul 28 20:53:21 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 20:53:21 +0000 (UTC) Subject: rpms/koffice/F-10 koffice-1.6.3-dejavu_fonts.patch, NONE, 1.1 koffice-1.6.3-glibc_strrchr.patch, NONE, 1.1 koffice-1.6.3-no_local_fonts.patch, NONE, 1.1 koffice-1.6.3-quint32.patch, NONE, 1.1 koffice-20090306svn.patch, NONE, 1.1 koffice-svn_checkout.sh, NONE, 1.1 koffice.spec, 1.82, 1.83 Message-ID: <20090728205321.D1A9D11C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32094 Modified Files: koffice.spec Added Files: koffice-1.6.3-dejavu_fonts.patch koffice-1.6.3-glibc_strrchr.patch koffice-1.6.3-no_local_fonts.patch koffice-1.6.3-quint32.patch koffice-20090306svn.patch koffice-svn_checkout.sh Log Message: * Tue Jul 28 2009 Rex Dieter 2:1.6.3-22.20090306svn - -kformula: omit bundled fonts - koffice kword crash with formulas (#514217) koffice-1.6.3-dejavu_fonts.patch: Makefile.am | 2 +- contextstyle.cc | 2 +- fontstyle.cc | 8 +++++++- symboltable.cc | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) --- NEW FILE koffice-1.6.3-dejavu_fonts.patch --- diff -up koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu koffice-1.6.3/lib/kformula/contextstyle.cc --- koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/contextstyle.cc 2009-07-28 15:29:06.420292073 -0500 @@ -106,7 +106,7 @@ void ContextStyle::readConfig( KConfig* if ( ! FontStyle::missingFonts( init ).isEmpty() ) { kdWarning( DEBUGID) << "Not all basic fonts found\n"; } - mathFont.fromString("Arev Sans"); + mathFont.fromString("DejaVu Sans"); bracketFont.fromString("cmex10"); diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu koffice-1.6.3/lib/kformula/fontstyle.cc --- koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/fontstyle.cc 2009-07-28 15:35:51.457543630 -0500 @@ -102,7 +102,7 @@ QStringList FontStyle::missingFontsInter QStringList missing; testFont( missing, "cmex10" ); - testFont( missing, "arev sans"); + testFont( missing, "dejavu sans"); return missing; } @@ -111,9 +111,12 @@ void FontStyle::installFonts() { if (m_installed) return; + QStringList missing = missingFontsInternal(); if (!missing.isEmpty()) { +// don't install local copies of fonts -- Rex +/* QStringList urlList; for (QStringList::iterator it = missing.begin(); it != missing.end(); ++it) { @@ -135,6 +138,9 @@ void FontStyle::installFonts() KIO::copy(urlList, "fonts:/Personal/", false); KMessageBox::information(qApp->mainWidget(), i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect")); +*/ + KMessageBox::information(qApp->mainWidget(), + i18n("Some symbol fonts for formulas was font to be missing")); } m_installed = true; } diff -up koffice-1.6.3/lib/kformula/Makefile.am.dejavu koffice-1.6.3/lib/kformula/Makefile.am --- koffice-1.6.3/lib/kformula/Makefile.am.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/Makefile.am 2009-07-28 15:41:35.306393788 -0500 @@ -1,7 +1,7 @@ INCLUDES= $(KOFFICE_INCLUDES) $(KOTEXT_INCLUDES) $(all_includes) -SUBDIRS = pics fonts dtd +SUBDIRS = pics dtd ####### # We have to name it kformulalib, not just kformula, since that's the name of the kdeinit module for kformula. diff -up koffice-1.6.3/lib/kformula/symboltable.cc.dejavu koffice-1.6.3/lib/kformula/symboltable.cc --- koffice-1.6.3/lib/kformula/symboltable.cc.dejavu 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/symboltable.cc 2009-07-28 15:29:06.421292200 -0500 @@ -101,7 +101,7 @@ QFont SymbolTable::font( QChar symbol, c if ( fm.inFont( symbol ) ) { return f; } - return QFont("Arev Sans"); + return QFont("DejaVu Sans"); } CharClass SymbolTable::charClass( QChar symbol ) const koffice-1.6.3-glibc_strrchr.patch: gfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE koffice-1.6.3-glibc_strrchr.patch --- diff -up koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc.glibc koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc --- koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc.glibc 2007-05-30 16:39:18.000000000 -0500 +++ koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc 2009-03-06 15:56:35.000000000 -0600 @@ -315,7 +315,7 @@ GString *grabPath(const char *fileName) #else //---------- Unix ---------- - char *p; + const char *p; if ((p = strrchr(fileName, '/'))) return new GString(fileName, p - fileName); koffice-1.6.3-no_local_fonts.patch: fontstyle.cc | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE koffice-1.6.3-no_local_fonts.patch --- diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts koffice-1.6.3/lib/kformula/fontstyle.cc --- koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts 2007-05-30 16:38:26.000000000 -0500 +++ koffice-1.6.3/lib/kformula/fontstyle.cc 2009-07-28 15:14:57.879543856 -0500 @@ -111,6 +111,8 @@ void FontStyle::installFonts() { if (m_installed) return; +// don't depend on installing fonts locally -- Rex +/* QStringList missing = missingFontsInternal(); if (!missing.isEmpty()) { @@ -136,6 +138,7 @@ void FontStyle::installFonts() KMessageBox::information(qApp->mainWidget(), i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect")); } +*/ m_installed = true; } koffice-1.6.3-quint32.patch: kis_tiff_converter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE koffice-1.6.3-quint32.patch --- diff -up koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc.quint32 koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc --- koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc.quint32 2009-03-06 15:55:16.000000000 -0600 +++ koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc 2009-03-07 13:42:40.000000000 -0600 @@ -242,7 +242,7 @@ KisImageBuilder_Result KisTIFFConverter: // Read image profile kdDebug() << "Reading profile" << endl; KisProfile* profile = 0; - quint32 EmbedLen; + DWORD EmbedLen; LPBYTE EmbedBuffer; if (TIFFGetField(image, TIFFTAG_ICCPROFILE, &EmbedLen, &EmbedBuffer)) { koffice-20090306svn.patch: koffice-1.6-branch/admin/Doxyfile.am | 4 koffice-1.6-branch/admin/acinclude.m4.in | 39 koffice-1.6-branch/admin/cvs.sh | 2 koffice-1.6-branch/admin/detect-autoconf.pl | 107 + koffice-1.6-branch/configure.in.in | 4 koffice-1.6-branch/doc/Makefile.am | 4 koffice-1.6-branch/doc/koffice.desktop | 1 koffice-1.6-branch/doc/krita/dialogs-imagerestoration.png |binary koffice-1.6-branch/doc/krita/tutorial-select-layer.docbook | 6 koffice-1.6-branch/example/example.desktop | 6 koffice-1.6-branch/example/examplepart.desktop | 3 koffice-1.6-branch/example/x-vnd.kde.example.desktop | 1 koffice-1.6-branch/filters/generic_wrapper/generic_filter.desktop | 9 koffice-1.6-branch/filters/karbon/ai/karbon_ai_import.desktop | 6 koffice-1.6-branch/filters/karbon/applixgraphics/kontour_applixgraphic_import.desktop | 7 koffice-1.6-branch/filters/karbon/eps/karbon_eps_export.desktop | 6 koffice-1.6-branch/filters/karbon/eps/karbon_eps_import.desktop | 6 koffice-1.6-branch/filters/karbon/eps/karbon_ps_import.desktop | 6 koffice-1.6-branch/filters/karbon/kontour/karbon_kontour_import.desktop | 8 koffice-1.6-branch/filters/karbon/msod/karbon_msod_import.desktop | 7 koffice-1.6-branch/filters/karbon/oodraw/karbon_oodraw_import.desktop | 7 koffice-1.6-branch/filters/karbon/png/karbon_png_export.desktop | 6 koffice-1.6-branch/filters/karbon/svg/karbon_svg_export.desktop | 6 koffice-1.6-branch/filters/karbon/svg/karbon_svg_import.desktop | 7 koffice-1.6-branch/filters/karbon/wmf/karbon_wmf_export.desktop | 7 koffice-1.6-branch/filters/karbon/wmf/karbon_wmf_import.desktop | 6 koffice-1.6-branch/filters/karbon/xaml/karbon_xaml_export.desktop | 8 koffice-1.6-branch/filters/karbon/xaml/karbon_xaml_import.desktop | 8 koffice-1.6-branch/filters/karbon/xcf/karbon_xcf_export.desktop | 6 koffice-1.6-branch/filters/karbon/xfig/karbon_xfig_import.desktop | 7 koffice-1.6-branch/filters/kchart/bmp/kchart_bmp_export.desktop | 8 koffice-1.6-branch/filters/kchart/jpeg/kchart_jpeg_export.desktop | 8 koffice-1.6-branch/filters/kchart/mng/kchart_mng_export.desktop | 8 koffice-1.6-branch/filters/kchart/png/kchart_png_export.desktop | 9 koffice-1.6-branch/filters/kchart/svg/kchart_svg_export.desktop | 9 koffice-1.6-branch/filters/kchart/xbm/kchart_xbm_export.desktop | 8 koffice-1.6-branch/filters/kchart/xpm/kchart_xpm_export.desktop | 8 koffice-1.6-branch/filters/kformula/latex/kformula_latex_export.desktop | 7 koffice-1.6-branch/filters/kformula/mathml/kformula_mathml_export.desktop | 7 koffice-1.6-branch/filters/kformula/mathml/kformula_mathml_import.desktop | 7 koffice-1.6-branch/filters/kformula/png/kformula_png_export.desktop | 7 koffice-1.6-branch/filters/kformula/svg/kformula_svg_export.desktop | 8 koffice-1.6-branch/filters/kivio/imageexport/kivio_image_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/bmp/kpresenter_bmp_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/jpeg/kpresenter_jpeg_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/kword/kprkword.desktop | 7 koffice-1.6-branch/filters/kpresenter/magicpoint/kpresenter_magicpoint_import.desktop | 7 koffice-1.6-branch/filters/kpresenter/mng/kpresenter_mng_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/ooimpress/kpresenter_ooimpress_export.desktop | 6 koffice-1.6-branch/filters/kpresenter/ooimpress/kpresenter_ooimpress_import.desktop | 6 koffice-1.6-branch/filters/kpresenter/png/kpresenter_png_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/powerpoint/import/kpresenter_powerpoint_import.desktop | 7 koffice-1.6-branch/filters/kpresenter/svg/kpresenter_svg_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/xbm/kpresenter_xbm_export.desktop | 8 koffice-1.6-branch/filters/kpresenter/xpm/kpresenter_xpm_export.desktop | 8 koffice-1.6-branch/filters/krita/gmagick/kis_image_magick_converter.cc | 52 koffice-1.6-branch/filters/krita/gmagick/krita_magick.desktop | 7 koffice-1.6-branch/filters/krita/gmagick/krita_magick_export.desktop | 11 koffice-1.6-branch/filters/krita/gmagick/krita_magick_import.desktop | 9 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg.desktop | 8 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg_export.desktop | 8 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg_import.desktop | 8 koffice-1.6-branch/filters/krita/magick/Makefile.am | 2 koffice-1.6-branch/filters/krita/magick/kis_image_magick_converter.cc | 2 koffice-1.6-branch/filters/krita/magick/krita_magick.desktop | 7 koffice-1.6-branch/filters/krita/magick/krita_magick_export.desktop | 9 koffice-1.6-branch/filters/krita/magick/krita_magick_import.desktop | 9 koffice-1.6-branch/filters/krita/openexr/krita_openexr.desktop | 7 koffice-1.6-branch/filters/krita/openexr/krita_openexr_export.desktop | 8 koffice-1.6-branch/filters/krita/openexr/krita_openexr_import.desktop | 8 koffice-1.6-branch/filters/krita/pdf/krita_pdf.desktop | 7 koffice-1.6-branch/filters/krita/pdf/krita_pdf_import.desktop | 11 koffice-1.6-branch/filters/krita/png/krita_png.desktop | 7 koffice-1.6-branch/filters/krita/png/krita_png_export.desktop | 8 koffice-1.6-branch/filters/krita/png/krita_png_import.desktop | 8 koffice-1.6-branch/filters/krita/raw/krita_raw.desktop | 7 koffice-1.6-branch/filters/krita/raw/krita_raw_import.desktop | 8 koffice-1.6-branch/filters/krita/tiff/kis_tiff_converter.cc | 8 koffice-1.6-branch/filters/krita/tiff/krita_tiff.desktop | 7 koffice-1.6-branch/filters/krita/tiff/krita_tiff_export.desktop | 8 koffice-1.6-branch/filters/krita/tiff/krita_tiff_import.desktop | 8 koffice-1.6-branch/filters/krita/xcf/krita_xcf_export.desktop | 8 koffice-1.6-branch/filters/krita/xcf/krita_xcf_import.desktop | 8 koffice-1.6-branch/filters/kspread/applixspread/kspread_applixspread_import.desktop | 9 koffice-1.6-branch/filters/kspread/csv/kspread_csv_export.desktop | 9 koffice-1.6-branch/filters/kspread/csv/kspread_csv_import.desktop | 9 koffice-1.6-branch/filters/kspread/dbase/kspread_dbase_import.desktop | 12 koffice-1.6-branch/filters/kspread/excel/import/kspread_excel_import.desktop | 9 koffice-1.6-branch/filters/kspread/excel/kspread_excel_export.desktop | 9 koffice-1.6-branch/filters/kspread/gnumeric/gnumericimport.cc | 118 - koffice-1.6-branch/filters/kspread/gnumeric/kspread_gnumeric_export.desktop | 9 koffice-1.6-branch/filters/kspread/gnumeric/kspread_gnumeric_import.desktop | 9 koffice-1.6-branch/filters/kspread/html/kspread_html_export.desktop | 9 koffice-1.6-branch/filters/kspread/kexi/kspread_kexi_import.desktop | 10 koffice-1.6-branch/filters/kspread/latex/export/kspread_latex_export.desktop | 9 koffice-1.6-branch/filters/kspread/opencalc/kspread_opencalc_export.desktop | 11 koffice-1.6-branch/filters/kspread/opencalc/kspread_opencalc_import.desktop | 11 koffice-1.6-branch/filters/kspread/qpro/kspread_qpro_import.desktop | 9 koffice-1.6-branch/filters/kugar/kugarnop/kugar_kugar_import.desktop | 7 koffice-1.6-branch/filters/kword/abiword/kword_abiword_export.desktop | 7 koffice-1.6-branch/filters/kword/abiword/kword_abiword_import.desktop | 7 koffice-1.6-branch/filters/kword/amipro/kword_amipro_export.desktop | 7 koffice-1.6-branch/filters/kword/amipro/kword_amipro_import.desktop | 7 koffice-1.6-branch/filters/kword/applixword/kword_applixword_import.desktop | 7 koffice-1.6-branch/filters/kword/ascii/kword_ascii_export.desktop | 9 koffice-1.6-branch/filters/kword/ascii/kword_ascii_import.desktop | 7 koffice-1.6-branch/filters/kword/docbook/kword_docbook_export.desktop | 7 koffice-1.6-branch/filters/kword/hancomword/kword_hancomword_import.desktop | 8 koffice-1.6-branch/filters/kword/html/export/kword_html_export.desktop | 7 koffice-1.6-branch/filters/kword/html/import/kword_html_import.desktop | 7 koffice-1.6-branch/filters/kword/kword1.3/import/kword_kword1dot3_import.desktop | 7 koffice-1.6-branch/filters/kword/kword1.3/import/uninstall.desktop | 1 koffice-1.6-branch/filters/kword/latex/export/kword_latex_export.desktop | 7 koffice-1.6-branch/filters/kword/latex/import/kword_latex_import.desktop | 11 koffice-1.6-branch/filters/kword/msword/kword_msword_import.desktop | 9 koffice-1.6-branch/filters/kword/mswrite/IMPERFECT | 2 koffice-1.6-branch/filters/kword/mswrite/ROADMAP | 5 koffice-1.6-branch/filters/kword/mswrite/config.libmswrite.h | 35 koffice-1.6-branch/filters/kword/mswrite/kword_mswrite_export.desktop | 9 koffice-1.6-branch/filters/kword/mswrite/kword_mswrite_import.desktop | 9 koffice-1.6-branch/filters/kword/mswrite/libmswrite.cpp | 90 + koffice-1.6-branch/filters/kword/mswrite/libmswrite.h | 44 koffice-1.6-branch/filters/kword/mswrite/libmswrite_defs.cpp | 37 koffice-1.6-branch/filters/kword/mswrite/libmswrite_defs.h | 99 - koffice-1.6-branch/filters/kword/mswrite/list.h | 45 koffice-1.6-branch/filters/kword/mswrite/mswriteexport.cc | 36 koffice-1.6-branch/filters/kword/mswrite/mswriteexport.h | 32 koffice-1.6-branch/filters/kword/mswrite/mswriteimport.cc | 36 koffice-1.6-branch/filters/kword/mswrite/mswriteimport.h | 32 koffice-1.6-branch/filters/kword/mswrite/status.html | 25 koffice-1.6-branch/filters/kword/mswrite/structures.cpp | 149 +- koffice-1.6-branch/filters/kword/mswrite/structures.h | 61 koffice-1.6-branch/filters/kword/mswrite/structures_generated.cpp | 89 - koffice-1.6-branch/filters/kword/mswrite/structures_generated.h | 100 - koffice-1.6-branch/filters/kword/mswrite/structures_private.cpp | 47 koffice-1.6-branch/filters/kword/mswrite/structures_private.h | 45 koffice-1.6-branch/filters/kword/oowriter/kword_oowriter_export.desktop | 7 koffice-1.6-branch/filters/kword/oowriter/kword_oowriter_import.desktop | 7 koffice-1.6-branch/filters/kword/palmdoc/kword_palmdoc_export.desktop | 7 koffice-1.6-branch/filters/kword/palmdoc/kword_palmdoc_import.desktop | 7 koffice-1.6-branch/filters/kword/pdf/kword_pdf_import.desktop | 7 koffice-1.6-branch/filters/kword/pdf/pdfimport.cpp | 11 koffice-1.6-branch/filters/kword/pdf/xpdf/goo/gmem.c | 19 koffice-1.6-branch/filters/kword/pdf/xpdf/goo/gmem.h | 1 koffice-1.6-branch/filters/kword/pdf/xpdf/xpdf/Stream.cc | 634 +++++++++- koffice-1.6-branch/filters/kword/pdf/xpdf/xpdf/Stream.h | 12 koffice-1.6-branch/filters/kword/rtf/export/kword_rtf_export.desktop | 7 koffice-1.6-branch/filters/kword/rtf/import/kword_rtf_import.desktop | 7 koffice-1.6-branch/filters/kword/starwriter/kword_starwriter_import.desktop | 7 koffice-1.6-branch/filters/kword/wml/kword_wml_export.desktop | 7 koffice-1.6-branch/filters/kword/wml/kword_wml_import.desktop | 7 koffice-1.6-branch/filters/kword/wordperfect/export/kword_wp_export.desktop | 7 koffice-1.6-branch/filters/kword/wordperfect/import/TableStyle.cxx | 2 koffice-1.6-branch/filters/kword/wordperfect/import/TextRunStyle.cxx | 2 koffice-1.6-branch/filters/kword/wordperfect/import/kword_wp_import.desktop | 7 koffice-1.6-branch/filters/olefilters/powerpoint97/ole_powerpoint97_import.desktop | 8 koffice-1.6-branch/filters/xsltfilter/export/xslt_export.desktop | 9 koffice-1.6-branch/filters/xsltfilter/import/xslt_import.desktop | 9 koffice-1.6-branch/karbon/data/karbon.desktop | 11 koffice-1.6-branch/karbon/data/karbon_module.desktop | 5 koffice-1.6-branch/karbon/data/karbonpart.desktop | 16 koffice-1.6-branch/karbon/plugins/imagetool/karbonimagetool.desktop | 7 koffice-1.6-branch/karbon/plugins/zoomtool/karbonzoomtool.desktop | 8 koffice-1.6-branch/karbon/templates/basic/.directory | 6 koffice-1.6-branch/karbon/templates/basic/empty.desktop | 14 koffice-1.6-branch/karbon/tools/karbondefaulttools.desktop | 7 koffice-1.6-branch/kchart/kchart.desktop | 15 koffice-1.6-branch/kchart/kchartpart.desktop | 12 koffice-1.6-branch/kchart/templates/.directory | 7 koffice-1.6-branch/kchart/templates/BarChart.desktop | 14 koffice-1.6-branch/kchart/templates/Empty.desktop | 5 koffice-1.6-branch/kdgantt/KDGanttView.cpp | 35 koffice-1.6-branch/kdgantt/KDGanttView.h | 24 koffice-1.6-branch/kdgantt/KDGanttViewItem.cpp | 26 koffice-1.6-branch/kdgantt/KDGanttViewItem.h | 13 koffice-1.6-branch/kdgantt/KDGanttViewSubwidgets.cpp | 280 +++- koffice-1.6-branch/kdgantt/KDGanttViewSubwidgets.h | 59 koffice-1.6-branch/kdgantt/KDGanttViewTaskItem.h | 6 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/alter.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/analyze.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/attach.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/auth.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/btree.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/btree.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/build.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/callback.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/complete.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/date.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/delete.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/expr.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/func.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/hash.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/hash.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/insert.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/legacy.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/main.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pager.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pager.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/patches/kexisql-3.2.8.patch | 469 ++++++- koffice-1.6-branch/kexi/3rdparty/kexisql3/src/patches/mk_patch.sh | 3 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pragma.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/prepare.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/random.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/select.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/shell.c | 3 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/sqlite3.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/sqliteInt.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/tclsqlite.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/tokenize.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/update.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/utf.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/util.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vacuum.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vdbe.c | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vdbe.h | 1 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/where.c | 1 koffice-1.6-branch/kexi/Makefile.global | 2 koffice-1.6-branch/kexi/core/kexidbconnectionset.cpp | 2 koffice-1.6-branch/kexi/data/kde34compat/x-sqlite2.desktop | 6 koffice-1.6-branch/kexi/data/kde34compat/x-sqlite3.desktop | 6 koffice-1.6-branch/kexi/data/kexihandler.desktop | 3 koffice-1.6-branch/kexi/data/x-kexi-connectiondata.desktop | 6 koffice-1.6-branch/kexi/data/x-kexiproject-shortcut.desktop | 6 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite.desktop | 5 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite2.desktop | 5 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite3.desktop | 5 koffice-1.6-branch/kexi/doc/dev/CHANGELOG-Kexi-js | 83 + koffice-1.6-branch/kexi/doc/dev/TODO-Kexi-js | 4 koffice-1.6-branch/kexi/formeditor/factories/kformdesigner_containers.desktop | 3 koffice-1.6-branch/kexi/formeditor/factories/kformdesigner_stdwidgets.desktop | 6 koffice-1.6-branch/kexi/formeditor/kdevelop_plugin/kformdesigner_kdev_part.desktop | 9 koffice-1.6-branch/kexi/formeditor/test/kformdesigner.desktop | 5 koffice-1.6-branch/kexi/formeditor/test/kformdesigner_part.desktop | 5 koffice-1.6-branch/kexi/formeditor/widgetfactory.desktop | 2 koffice-1.6-branch/kexi/formeditor/widgetlibrary.cpp | 2 koffice-1.6-branch/kexi/kexi.desktop | 13 koffice-1.6-branch/kexi/kexidb/alter.cpp | 2 koffice-1.6-branch/kexi/kexidb/connection.cpp | 10 koffice-1.6-branch/kexi/kexidb/drivers/mySQL/kexidb_mysqldriver.desktop | 1 koffice-1.6-branch/kexi/kexidb/drivers/odbc/kexidb_odbcdriver.desktop | 3 koffice-1.6-branch/kexi/kexidb/drivers/pqxx/kexidb_pqxxsqldriver.desktop | 1 koffice-1.6-branch/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp | 9 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/kexidb_sqlite3driver.desktop | 2 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/sqliteconnection.cpp | 3 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/sqlitecursor.cpp | 8 koffice-1.6-branch/kexi/kexidb/drivers/sqlite2/kexidb_sqlite2driver.desktop | 2 koffice-1.6-branch/kexi/kexidb/expression.cpp | 8 koffice-1.6-branch/kexi/kexidb/field.cpp | 4 koffice-1.6-branch/kexi/kexidb/field.h | 2 koffice-1.6-branch/kexi/kexidb/fieldlist.cpp | 2 koffice-1.6-branch/kexi/kexidb/fieldvalidator.cpp | 2 koffice-1.6-branch/kexi/kexidb/kexidb_driver.desktop | 11 koffice-1.6-branch/kexi/kexidb/queryschema.cpp | 7 koffice-1.6-branch/kexi/kexidb/queryschema.h | 3 koffice-1.6-branch/kexi/kexidb/relationship.cpp | 6 koffice-1.6-branch/kexi/kexidb/tableschema.cpp | 2 koffice-1.6-branch/kexi/kexiutils/utils.cpp | 3 koffice-1.6-branch/kexi/main/keximainwindowimpl.cpp | 9 koffice-1.6-branch/kexi/main/printing/kexisimpleprintingengine.cpp | 236 +++ koffice-1.6-branch/kexi/main/printing/kexisimpleprintingengine.h | 39 koffice-1.6-branch/kexi/migration/keximigrate.cpp | 3 koffice-1.6-branch/kexi/migration/keximigration_driver.desktop | 6 koffice-1.6-branch/kexi/migration/mysql/keximigrate_mysql.desktop | 6 koffice-1.6-branch/kexi/migration/mysql/mysqlmigrate.cpp | 5 koffice-1.6-branch/kexi/migration/pqxx/keximigrate_pqxx.desktop | 6 koffice-1.6-branch/kexi/migration/pqxx/pqxxmigrate.cpp | 8 koffice-1.6-branch/kexi/plugins/forms/kexidataprovider.cpp | 4 koffice-1.6-branch/kexi/plugins/forms/kexiformhandler.desktop | 12 koffice-1.6-branch/kexi/plugins/forms/kformdesigner_kexidbfactory.desktop | 6 koffice-1.6-branch/kexi/plugins/forms/widgets/kexidblabel.cpp | 2 koffice-1.6-branch/kexi/plugins/forms/widgets/kexiframe.cpp | 2 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsv_importexporthandler.desktop | 13 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvexport.cpp | 2 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp | 168 +- koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportdialog.h | 15 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportoptionsdlg.cpp | 97 + koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportoptionsdlg.h | 17 koffice-1.6-branch/kexi/plugins/macros/kexipart/keximacrohandler.desktop | 13 koffice-1.6-branch/kexi/plugins/migration/keximigrationhandler.desktop | 23 koffice-1.6-branch/kexi/plugins/queries/kexiquerydesignerguieditor.cpp | 9 koffice-1.6-branch/kexi/plugins/queries/kexiqueryhandler.desktop | 11 koffice-1.6-branch/kexi/plugins/relations/kexirelationhandler.desktop | 11 koffice-1.6-branch/kexi/plugins/reports/kexireporthandler.desktop | 13 koffice-1.6-branch/kexi/plugins/reports/kformdesigner_kexireportfactory.desktop | 6 koffice-1.6-branch/kexi/plugins/scripting/kexiscripting/kexiscripthandler.desktop | 13 koffice-1.6-branch/kexi/plugins/tables/kexitabledesignerview.cpp | 2 koffice-1.6-branch/kexi/plugins/tables/kexitablehandler.desktop | 13 koffice-1.6-branch/kexi/widget/relations/kexirelationviewconnection.cpp | 2 koffice-1.6-branch/kexi/widget/tableview/kexidataawarepropertyset.cpp | 2 koffice-1.6-branch/kexi/widget/tableview/kexitableviewdata.cpp | 2 koffice-1.6-branch/kexi/widget/utils/kexicomboboxdropdownbutton.cpp | 1 koffice-1.6-branch/kexi/widget/utils/kexisharedactionclient.cpp | 2 koffice-1.6-branch/kformula/kformula.desktop | 7 koffice-1.6-branch/kformula/kformulapart.desktop | 13 koffice-1.6-branch/kivio/kiviopart/kivio.desktop | 6 koffice-1.6-branch/kivio/kiviopart/kiviopart.desktop | 11 koffice-1.6-branch/kivio/plugins/kivioconnectortool/kivioconnectortool.desktop | 2 koffice-1.6-branch/kivio/plugins/kivioselecttool/kivioselecttool.desktop | 2 koffice-1.6-branch/kivio/plugins/kiviosmlconnector/kiviosmlconnector.desktop | 3 koffice-1.6-branch/kivio/plugins/kiviotargettool/kiviotargettool.desktop | 3 koffice-1.6-branch/kivio/plugins/kiviotexttool/kiviotexttool.desktop | 5 koffice-1.6-branch/kivio/plugins/kiviozoomtool/kiviozoomtool.desktop | 5 koffice-1.6-branch/kivio/templates/basic/.directory | 6 koffice-1.6-branch/kivio/templates/basic/basicflow.desktop | 3 koffice-1.6-branch/kivio/templates/basic/empty.desktop | 10 koffice-1.6-branch/koshell/koshell.desktop | 11 koffice-1.6-branch/kounavail/kounavail.desktop | 7 koffice-1.6-branch/kplato/kplato.desktop | 11 koffice-1.6-branch/kplato/kplatopart.desktop | 15 koffice-1.6-branch/kplato/reports/resourcelist.desktop | 7 koffice-1.6-branch/kplato/reports/tasklist.desktop | 8 koffice-1.6-branch/kplato/templates/Simple/.directory | 5 koffice-1.6-branch/kplato/templates/Simple/8HourDay-40HourWeek.desktop | 7 koffice-1.6-branch/kplato/templates/Simple/Plain.desktop | 7 koffice-1.6-branch/kpresenter/autoforms/Arrows/.directory | 20 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowDown.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeft.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeftDown.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeftUp.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRight.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRightDown.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRightUp.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowUp.desktop | 6 koffice-1.6-branch/kpresenter/autoforms/Connections/.directory | 20 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection1.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection10.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection11.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection12.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection2.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection3.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection4.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection5.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection6.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection7.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection8.desktop | 5 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection9.desktop | 5 koffice-1.6-branch/kpresenter/kpresenter.desktop | 7 koffice-1.6-branch/kpresenter/kpresenterpart.desktop | 7 koffice-1.6-branch/kpresenter/templates/Screen/.directory | 5 koffice-1.6-branch/kpresenter/templates/Screenpresentations/.directory | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezeDouble.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezePicture.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezeSingle.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/CopperPlain.desktop | 3 koffice-1.6-branch/kpresenter/templates/Screenpresentations/GradientBlueRed.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/SnowyMountains.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/TotallyNewProduct.desktop | 7 koffice-1.6-branch/kpresenter/templates/Screenpresentations/classroom.desktop | 12 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde.desktop | 5 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde2.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde3.desktop | 6 koffice-1.6-branch/kpresenter/templates/Screenpresentations/savannah.desktop | 9 koffice-1.6-branch/kpresenter/templates/common_desktop/OneColumnLandscape.desktop | 8 koffice-1.6-branch/kpresenter/templates/common_desktop/OneColumnPortrait.desktop | 8 koffice-1.6-branch/kpresenter/templates/common_desktop/TitleLandscape.desktop | 8 koffice-1.6-branch/kpresenter/templates/common_desktop/TitlePortrait.desktop | 8 koffice-1.6-branch/kpresenter/templates/common_desktop/TwoColumnLandscape.desktop | 10 koffice-1.6-branch/kpresenter/templates/common_desktop/TwoColumnPortrait.desktop | 10 koffice-1.6-branch/kpresenter/templates/common_desktop/emptyLandscape.desktop | 13 koffice-1.6-branch/kpresenter/templates/common_desktop/emptyPortrait.desktop | 9 koffice-1.6-branch/kpresenter/templates/letter/.directory | 5 koffice-1.6-branch/krita/colorspaces/cmyk_u16/krita_cmyk_u16_plugin.desktop | 12 koffice-1.6-branch/krita/colorspaces/cmyk_u8/kritacmykplugin.desktop | 9 koffice-1.6-branch/krita/colorspaces/cmyk_u8/templates/white_2000x800.desktop | 12 koffice-1.6-branch/krita/colorspaces/gray_u16/krita_gray_u16_plugin.desktop | 10 koffice-1.6-branch/krita/colorspaces/gray_u8/kritagrayplugin.desktop | 8 koffice-1.6-branch/krita/colorspaces/gray_u8/templates/.directory | 7 koffice-1.6-branch/krita/colorspaces/gray_u8/templates/white_640x480.desktop | 11 koffice-1.6-branch/krita/colorspaces/lms_f32/krita_lms_f32_plugin.desktop | 9 koffice-1.6-branch/krita/colorspaces/rgb_f16half/krita_rgb_f16half_plugin.desktop | 7 koffice-1.6-branch/krita/colorspaces/rgb_f32/krita_rgb_f32_plugin.desktop | 7 koffice-1.6-branch/krita/colorspaces/rgb_u16/kis_rgb_u16_colorspace.cc | 4 koffice-1.6-branch/krita/colorspaces/rgb_u16/krita_rgb_u16_plugin.desktop | 8 koffice-1.6-branch/krita/colorspaces/rgb_u8/kis_rgb_colorspace.cc | 4 koffice-1.6-branch/krita/colorspaces/rgb_u8/kritargbplugin.desktop | 8 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1024x768.desktop | 12 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1280x1024.desktop | 13 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1600x1200.desktop | 11 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_640x480.desktop | 13 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1024x768.desktop | 15 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1280x1024.desktop | 15 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1600x1200.desktop | 15 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_640x480.desktop | 15 koffice-1.6-branch/krita/colorspaces/wet/kritawetplugin.desktop | 10 koffice-1.6-branch/krita/colorspaces/wetsticky/brushop/kritawsbrushpaintop.desktop | 5 koffice-1.6-branch/krita/colorspaces/wetsticky/kritawsplugin.desktop | 3 koffice-1.6-branch/krita/colorspaces/ycbcr_u16/krita_ycbcr_u16_plugin.desktop | 8 koffice-1.6-branch/krita/colorspaces/ycbcr_u8/krita_ycbcr_u8_plugin.desktop | 8 koffice-1.6-branch/krita/core/kis_paint_layer.cc | 4 koffice-1.6-branch/krita/core/kis_perspective_math.cpp | 22 koffice-1.6-branch/krita/data/brushes/Makefile.am | 2 koffice-1.6-branch/krita/data/krita_filter.desktop | 12 koffice-1.6-branch/krita/data/krita_paintop.desktop | 9 koffice-1.6-branch/krita/data/krita_plugin.desktop | 5 koffice-1.6-branch/krita/data/krita_tool.desktop | 14 koffice-1.6-branch/krita/data/palettes/Makefile.am | 2 koffice-1.6-branch/krita/data/templates/.directory | 6 koffice-1.6-branch/krita/krita.desktop | 14 koffice-1.6-branch/krita/kritacolor/kis_abstract_colorspace.cc | 4 koffice-1.6-branch/krita/kritacolor/krita_colorspace.desktop | 2 koffice-1.6-branch/krita/kritapart.desktop | 12 koffice-1.6-branch/krita/plugins/filters/blur/kritablurfilter.desktop | 2 koffice-1.6-branch/krita/plugins/filters/bumpmap/kritabumpmapfilter.desktop | 3 koffice-1.6-branch/krita/plugins/filters/cimg/kritacimg.desktop | 3 koffice-1.6-branch/krita/plugins/filters/colorify/kritacolorifyfilter.desktop | 7 koffice-1.6-branch/krita/plugins/filters/colors/kritaextensioncolorsfilters.desktop | 7 koffice-1.6-branch/krita/plugins/filters/colorsfilters/kritacolorsfilter.desktop | 15 koffice-1.6-branch/krita/plugins/filters/convolutionfilters/kritaconvolutionfilters.desktop | 9 koffice-1.6-branch/krita/plugins/filters/cubismfilter/kritacubismfilter.desktop | 15 koffice-1.6-branch/krita/plugins/filters/embossfilter/kritaembossfilter.desktop | 5 koffice-1.6-branch/krita/plugins/filters/example/kritaexample.desktop | 12 koffice-1.6-branch/krita/plugins/filters/fastcolortransfer/kritafastcolortransfer.desktop | 10 koffice-1.6-branch/krita/plugins/filters/imageenhancement/kritaimageenhancement.desktop | 15 koffice-1.6-branch/krita/plugins/filters/lenscorrectionfilter/kritalenscorrectionfilter.desktop | 7 koffice-1.6-branch/krita/plugins/filters/levelfilter/kritalevelfilter.desktop | 9 koffice-1.6-branch/krita/plugins/filters/noisefilter/kritanoisefilter.desktop | 13 koffice-1.6-branch/krita/plugins/filters/oilpaintfilter/kritaoilpaintfilter.desktop | 5 koffice-1.6-branch/krita/plugins/filters/pixelizefilter/kritapixelizefilter.desktop | 11 koffice-1.6-branch/krita/plugins/filters/raindropsfilter/kritaraindropsfilter.desktop | 13 koffice-1.6-branch/krita/plugins/filters/randompickfilter/kritarandompickfilter.desktop | 3 koffice-1.6-branch/krita/plugins/filters/roundcorners/kis_round_corners_filter.cc | 5 koffice-1.6-branch/krita/plugins/filters/roundcorners/kritaroundcornersfilter.desktop | 3 koffice-1.6-branch/krita/plugins/filters/smalltilesfilter/kritasmalltilesfilter.desktop | 2 koffice-1.6-branch/krita/plugins/filters/sobelfilter/kritasobelfilter.desktop | 3 koffice-1.6-branch/krita/plugins/filters/threadtest/kritathreadtest.desktop | 2 koffice-1.6-branch/krita/plugins/filters/unsharp/kritaunsharpfilter.desktop | 6 koffice-1.6-branch/krita/plugins/filters/wavefilter/kritawavefilter.desktop | 8 koffice-1.6-branch/krita/plugins/paintops/defaultpaintops/kis_smudgeop.cc | 15 koffice-1.6-branch/krita/plugins/paintops/defaultpaintops/kritadefaultpaintops.desktop | 11 koffice-1.6-branch/krita/plugins/tools/defaulttools/kritadefaulttools.desktop | 7 koffice-1.6-branch/krita/plugins/tools/selectiontools/kritaselectiontools.desktop | 7 koffice-1.6-branch/krita/plugins/tools/tool_crop/kritatoolcrop.desktop | 7 koffice-1.6-branch/krita/plugins/tools/tool_curves/kritatoolcurves.desktop | 4 koffice-1.6-branch/krita/plugins/tools/tool_filter/kritatoolfilter.desktop | 8 koffice-1.6-branch/krita/plugins/tools/tool_perspectivegrid/kritatoolperspectivegrid.desktop | 3 koffice-1.6-branch/krita/plugins/tools/tool_perspectivetransform/kritatoolperspectivetransform.desktop | 3 koffice-1.6-branch/krita/plugins/tools/tool_polygon/kritatoolpolygon.desktop | 7 koffice-1.6-branch/krita/plugins/tools/tool_polyline/kritatoolpolyline.desktop | 6 koffice-1.6-branch/krita/plugins/tools/tool_selectsimilar/kritatoolselectsimilar.desktop | 4 koffice-1.6-branch/krita/plugins/tools/tool_star/kritatoolstar.desktop | 7 koffice-1.6-branch/krita/plugins/tools/tool_transform/kritatooltransform.desktop | 7 koffice-1.6-branch/krita/plugins/viewplugins/colorrange/kritacolorrange.desktop | 4 koffice-1.6-branch/krita/plugins/viewplugins/colorspaceconversion/kritacolorspaceconversion.desktop | 4 koffice-1.6-branch/krita/plugins/viewplugins/dropshadow/kritadropshadow.desktop | 8 koffice-1.6-branch/krita/plugins/viewplugins/filtersgallery/kritafiltersgallery.desktop | 7 koffice-1.6-branch/krita/plugins/viewplugins/histogram/kritahistogram.desktop | 14 koffice-1.6-branch/krita/plugins/viewplugins/histogram_docker/kritahistogramdocker.desktop | 6 koffice-1.6-branch/krita/plugins/viewplugins/history_docker/kritahistorydocker.desktop | 7 koffice-1.6-branch/krita/plugins/viewplugins/imagesize/kritaimagesize.desktop | 9 koffice-1.6-branch/krita/plugins/viewplugins/modify_selection/kritamodifyselection.desktop | 3 koffice-1.6-branch/krita/plugins/viewplugins/performancetest/kritaperftest.desktop | 5 koffice-1.6-branch/krita/plugins/viewplugins/rotateimage/kritarotateimage.desktop | 11 koffice-1.6-branch/krita/plugins/viewplugins/screenshot/kritascreenshot.desktop | 7 koffice-1.6-branch/krita/plugins/viewplugins/scripting/kritascripting.desktop | 17 koffice-1.6-branch/krita/plugins/viewplugins/selectopaque/kritaselectopaque.desktop | 2 koffice-1.6-branch/krita/plugins/viewplugins/separate_channels/kritaseparatechannels.desktop | 12 koffice-1.6-branch/krita/plugins/viewplugins/shearimage/kritashearimage.desktop | 8 koffice-1.6-branch/krita/plugins/viewplugins/substrate/kritasubstrate.desktop | 2 koffice-1.6-branch/krita/plugins/viewplugins/variations/kritavariations.desktop | 12 koffice-1.6-branch/krita/ui/squeezedcombobox.cpp | 3 koffice-1.6-branch/kspread/Makefile.am | 2 koffice-1.6-branch/kspread/digest.cc | 2 koffice-1.6-branch/kspread/digest.h | 2 koffice-1.6-branch/kspread/kspread.desktop | 11 koffice-1.6-branch/kspread/kspreadpart.desktop | 15 koffice-1.6-branch/kspread/plugins/calculator/uninstall.desktop | 1 koffice-1.6-branch/kspread/plugins/scripting/kspreadcore/krs_cell.cpp | 9 koffice-1.6-branch/kspread/plugins/scripting/kspreadcore/krs_cell.h | 7 koffice-1.6-branch/kspread/plugins/scripting/kspreadscripting.desktop | 17 koffice-1.6-branch/kspread/templates/Business/.directory | 4 koffice-1.6-branch/kspread/templates/Business/BalanceSheet.desktop | 7 koffice-1.6-branch/kspread/templates/Business/ExpenseReport.desktop | 5 koffice-1.6-branch/kspread/templates/Business/Invoice.desktop | 2 koffice-1.6-branch/kspread/templates/Business/PackingSlip.desktop | 7 koffice-1.6-branch/kspread/templates/Business/PriceQuotation.desktop | 2 koffice-1.6-branch/kspread/templates/General/.directory | 7 koffice-1.6-branch/kspread/templates/General/StudentIDCard.desktop | 5 koffice-1.6-branch/kspread/templates/General/Worksheet.desktop | 5 koffice-1.6-branch/kspread/templates/HomeFamily/.directory | 9 koffice-1.6-branch/kspread/templates/HomeFamily/BMI.desktop | 5 koffice-1.6-branch/kspread/templates/HomeFamily/CreditCardTracker.desktop | 3 koffice-1.6-branch/kspread/templates/HomeFamily/MenuPlan.desktop | 9 koffice-1.6-branch/kspread/templates/HomeFamily/VacationChecklist.desktop | 6 koffice-1.6-branch/kugar/kudesigner/kudesigner.desktop | 17 koffice-1.6-branch/kugar/kudesigner/templates/General/.directory | 7 koffice-1.6-branch/kugar/kudesigner/templates/General/A0.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A1.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A2.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A3.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A4.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A5.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A6.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A7.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A8.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/A9.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B0.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B1.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B10.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B2.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B3.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B4.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B5.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B6.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B7.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B8.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/B9.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/C5E.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Comm10E.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/DLE.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Executive.desktop | 3 koffice-1.6-branch/kugar/kudesigner/templates/General/Folio.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Ledger.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Legal.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Letter.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/NPageSize.desktop | 1 koffice-1.6-branch/kugar/kudesigner/templates/General/Tabloid.desktop | 1 koffice-1.6-branch/kugar/part/kugar.desktop | 6 koffice-1.6-branch/kugar/part/kugarpart.desktop | 10 koffice-1.6-branch/kword/KWAnchor.cpp | 4 koffice-1.6-branch/kword/KWDocument.cpp | 20 koffice-1.6-branch/kword/kwmailmerge.desktop | 6 koffice-1.6-branch/kword/kword.desktop | 7 koffice-1.6-branch/kword/kwordpart.desktop | 14 koffice-1.6-branch/kword/mailmerge/kabc/kwmailmerge_kabc.desktop | 11 koffice-1.6-branch/kword/mailmerge/kspread/kwmailmerge_kspread.desktop | 13 koffice-1.6-branch/kword/mailmerge/kwserialletter_classic.desktop | 8 koffice-1.6-branch/kword/mailmerge/sql/kwserialletter_qtsqldb.desktop | 11 koffice-1.6-branch/kword/mailmerge/sql/kwserialletter_qtsqldb_power.desktop | 6 koffice-1.6-branch/kword/templates/CardsAndLabels/.directory | 6 koffice-1.6-branch/kword/templates/CardsAndLabels/BusinessCards10.desktop | 6 koffice-1.6-branch/kword/templates/CardsAndLabels/LabelsL16.desktop | 5 koffice-1.6-branch/kword/templates/Envelopes/.directory | 7 koffice-1.6-branch/kword/templates/Envelopes/EnvelopeC6.desktop | 7 koffice-1.6-branch/kword/templates/Envelopes/EnvelopeDL.desktop | 7 koffice-1.6-branch/kword/templates/Wordprocessing/.directory | 7 koffice-1.6-branch/kword/templates/Wordprocessing/A4.desktop | 17 koffice-1.6-branch/kword/templates/Wordprocessing/ColorfulA4.desktop | 10 koffice-1.6-branch/kword/templates/Wordprocessing/ColorfulLetter.desktop | 10 koffice-1.6-branch/kword/templates/Wordprocessing/FaxA4.desktop | 8 koffice-1.6-branch/kword/templates/Wordprocessing/FaxLetter.desktop | 8 koffice-1.6-branch/kword/templates/Wordprocessing/Letter.desktop | 14 koffice-1.6-branch/kword/templates/Wordprocessing/Memo.desktop | 7 koffice-1.6-branch/kword/templates/Wordprocessing/ProfessionalA4.desktop | 14 koffice-1.6-branch/kword/templates/Wordprocessing/ProfessionalLetter.desktop | 14 koffice-1.6-branch/kword/templates/Wordprocessing/TwoColumns.desktop | 15 koffice-1.6-branch/kword/templates/Wordprocessing/TwoColumnsLetter.desktop | 15 koffice-1.6-branch/lib/kofficecore/kodocinfopropspage.desktop | 5 koffice-1.6-branch/lib/kotext/KoTextDocument.cpp | 10 koffice-1.6-branch/lib/kotext/KoTextObject.cpp | 5 koffice-1.6-branch/lib/kross/python/cxx/Objects.hxx | 9 koffice-1.6-branch/lib/kross/python/pythonconfig.h | 9 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.chart.desktop | 5 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.formula.desktop | 6 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.graphics-template.desktop | 6 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.graphics.desktop | 5 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.image.desktop | 6 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.presentation-template.desktop | 6 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.presentation.desktop | 5 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.spreadsheet-template.desktop | 8 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.spreadsheet.desktop | 8 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.text-template.desktop | 6 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.text.desktop | 6 koffice-1.6-branch/mimetypes/kde351/x-raw.desktop | 4 koffice-1.6-branch/servicetypes/kochart.desktop | 1 koffice-1.6-branch/servicetypes/kofficepart.desktop | 7 koffice-1.6-branch/servicetypes/kofilter.desktop | 7 koffice-1.6-branch/servicetypes/kofilterwrapper.desktop | 3 koffice-1.6-branch/servicetypes/koplugin.desktop | 9 koffice-1.6-branch/templates/Illustration.desktop | 15 koffice-1.6-branch/templates/Presentation.desktop | 18 koffice-1.6-branch/templates/SpreadSheet.desktop | 21 koffice-1.6-branch/templates/TextDocument.desktop | 20 koffice-1.6-branch/tools/kfile-plugins/abiword/kfile_abiword.desktop | 8 koffice-1.6-branch/tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop | 10 koffice-1.6-branch/tools/kfile-plugins/koffice/kfile_koffice.desktop | 8 koffice-1.6-branch/tools/kfile-plugins/ooo/kfile_ooo.desktop | 7 koffice-1.6-branch/tools/kthesaurus/KThesaurus.desktop | 10 koffice-1.6-branch/tools/quickprint/karbon_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kchart_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kexi_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kformula_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kivio_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kpresenter_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/krita_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kspread_konqi.desktop | 10 koffice-1.6-branch/tools/quickprint/kword_konqi.desktop | 10 koffice-1.6-branch/tools/spell/kspelltool.desktop | 10 koffice-1.6-branch/tools/spell/uninstall.desktop | 1 koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop | 18 koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop | 4 koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop | 7 koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop | 7 koffice-1.6.3//Makefile.am |only koffice-1.6.3//Makefile.in |only koffice-1.6.3//acinclude.m4 |only koffice-1.6.3//aclocal.m4 |only koffice-1.6.3//config.h.in |only koffice-1.6.3//configure |only koffice-1.6.3//configure.files |only koffice-1.6.3//configure.in |only koffice-1.6.3//stamp-h.in |only koffice-1.6.3//subdirs |only koffice-1.6.3/autocorrect/Makefile.in |only koffice-1.6.3/doc/Makefile.in |only koffice-1.6.3/doc/karbon/Makefile.in |only koffice-1.6.3/doc/karbon/index.cache.bz2 |only koffice-1.6.3/doc/kchart/Makefile.in |only koffice-1.6.3/doc/kchart/index.cache.bz2 |only koffice-1.6.3/doc/kexi/Makefile.in |only koffice-1.6.3/doc/kexi/index.cache.bz2 |only koffice-1.6.3/doc/kformula/Makefile.in |only koffice-1.6.3/doc/kformula/index.cache.bz2 |only koffice-1.6.3/doc/kivio/Makefile.in |only koffice-1.6.3/doc/kivio/index.cache.bz2 |only koffice-1.6.3/doc/koffice/Makefile.in |only koffice-1.6.3/doc/koffice/index.cache.bz2 |only koffice-1.6.3/doc/koshell/Makefile.in |only koffice-1.6.3/doc/koshell/index.cache.bz2 |only koffice-1.6.3/doc/kplato/Makefile.in |only koffice-1.6.3/doc/kplato/index.cache.bz2 |only koffice-1.6.3/doc/kpresenter/Makefile.in |only koffice-1.6.3/doc/kpresenter/index.cache.bz2 |only koffice-1.6.3/doc/krita/Makefile.in |only koffice-1.6.3/doc/krita/index.cache.bz2 |only koffice-1.6.3/doc/kspread/Makefile.in |only koffice-1.6.3/doc/kspread/index.cache.bz2 |only koffice-1.6.3/doc/kugar/Makefile.in |only koffice-1.6.3/doc/kugar/index.cache.bz2 |only koffice-1.6.3/doc/kword/Makefile.in |only koffice-1.6.3/doc/kword/index.cache.bz2 |only koffice-1.6.3/doc/thesaurus/Makefile.in |only koffice-1.6.3/doc/thesaurus/index.cache.bz2 |only koffice-1.6.3/example/Makefile.in |only koffice-1.6.3/filters/Makefile.in |only koffice-1.6.3/filters/generic_wrapper/Makefile.in |only koffice-1.6.3/filters/karbon/Makefile.in |only koffice-1.6.3/filters/karbon/ai/Makefile.in |only koffice-1.6.3/filters/karbon/applixgraphics/Makefile.in |only koffice-1.6.3/filters/karbon/eps/Makefile.in |only koffice-1.6.3/filters/karbon/kontour/Makefile.in |only koffice-1.6.3/filters/karbon/msod/Makefile.in |only koffice-1.6.3/filters/karbon/oodraw/Makefile.in |only koffice-1.6.3/filters/karbon/png/Makefile.in |only koffice-1.6.3/filters/karbon/svg/Makefile.in |only koffice-1.6.3/filters/karbon/wmf/Makefile.in |only koffice-1.6.3/filters/karbon/xaml/Makefile.in |only koffice-1.6.3/filters/karbon/xcf/Makefile.in |only koffice-1.6.3/filters/kchart/Makefile.in |only koffice-1.6.3/filters/kchart/bmp/Makefile.in |only koffice-1.6.3/filters/kchart/jpeg/Makefile.in |only koffice-1.6.3/filters/kchart/libimageexport/Makefile.in |only koffice-1.6.3/filters/kchart/mng/Makefile.in |only koffice-1.6.3/filters/kchart/png/Makefile.in |only koffice-1.6.3/filters/kchart/svg/Makefile.in |only koffice-1.6.3/filters/kchart/xbm/Makefile.in |only koffice-1.6.3/filters/kchart/xpm/Makefile.in |only koffice-1.6.3/filters/kformula/Makefile.in |only koffice-1.6.3/filters/kformula/latex/Makefile.in |only koffice-1.6.3/filters/kformula/mathml/Makefile.in |only koffice-1.6.3/filters/kformula/png/Makefile.in |only koffice-1.6.3/filters/kformula/svg/Makefile.in |only koffice-1.6.3/filters/kivio/Makefile.in |only koffice-1.6.3/filters/kivio/imageexport/Makefile.in |only koffice-1.6.3/filters/kpresenter/Makefile.in |only koffice-1.6.3/filters/kpresenter/bmp/Makefile.in |only koffice-1.6.3/filters/kpresenter/jpeg/Makefile.in |only koffice-1.6.3/filters/kpresenter/kword/Makefile.in |only koffice-1.6.3/filters/kpresenter/libimageexport/Makefile.in |only koffice-1.6.3/filters/kpresenter/magicpoint/Makefile.in |only koffice-1.6.3/filters/kpresenter/mng/Makefile.in |only koffice-1.6.3/filters/kpresenter/ooimpress/Makefile.in |only koffice-1.6.3/filters/kpresenter/png/Makefile.in |only koffice-1.6.3/filters/kpresenter/powerpoint/Makefile.in |only koffice-1.6.3/filters/kpresenter/powerpoint/import/Makefile.in |only koffice-1.6.3/filters/kpresenter/powerpoint/libppt/Makefile.in |only koffice-1.6.3/filters/kpresenter/svg/Makefile.in |only koffice-1.6.3/filters/kpresenter/xbm/Makefile.in |only koffice-1.6.3/filters/kpresenter/xpm/Makefile.in |only koffice-1.6.3/filters/krita/Makefile.in |only koffice-1.6.3/filters/krita/gmagick/Makefile.in |only koffice-1.6.3/filters/krita/jpeg/Makefile.in |only koffice-1.6.3/filters/krita/libkisexif/Makefile.in |only koffice-1.6.3/filters/krita/magick/Makefile.in |only koffice-1.6.3/filters/krita/openexr/Makefile.in |only koffice-1.6.3/filters/krita/pdf/Makefile.in |only koffice-1.6.3/filters/krita/png/Makefile.in |only koffice-1.6.3/filters/krita/raw/Makefile.in |only koffice-1.6.3/filters/krita/tiff/Makefile.in |only koffice-1.6.3/filters/krita/xcf/Makefile.in |only koffice-1.6.3/filters/kspread/Makefile.in |only koffice-1.6.3/filters/kspread/applixspread/Makefile.in |only koffice-1.6.3/filters/kspread/csv/Makefile.in |only koffice-1.6.3/filters/kspread/dbase/Makefile.in |only koffice-1.6.3/filters/kspread/excel/Makefile.in |only koffice-1.6.3/filters/kspread/excel/import/Makefile.in |only koffice-1.6.3/filters/kspread/excel/sidewinder/Makefile.in |only koffice-1.6.3/filters/kspread/gnumeric/Makefile.in |only koffice-1.6.3/filters/kspread/html/Makefile.in |only koffice-1.6.3/filters/kspread/kexi/Makefile.in |only koffice-1.6.3/filters/kspread/latex/Makefile.in |only koffice-1.6.3/filters/kspread/latex/export/Makefile.in |only koffice-1.6.3/filters/kspread/libkspreadexport/Makefile.in |only koffice-1.6.3/filters/kspread/opencalc/Makefile.in |only koffice-1.6.3/filters/kspread/qpro/Makefile.in |only koffice-1.6.3/filters/kspread/qpro/libqpro/Makefile.in |only koffice-1.6.3/filters/kspread/qpro/libqpro/qpro/Makefile.in |only koffice-1.6.3/filters/kspread/qpro/libqpro/src/Makefile.in |only koffice-1.6.3/filters/kugar/Makefile.in |only koffice-1.6.3/filters/kugar/kugarnop/Makefile.in |only koffice-1.6.3/filters/kword/Makefile.in |only koffice-1.6.3/filters/kword/abiword/Makefile.in |only koffice-1.6.3/filters/kword/amipro/Makefile.in |only koffice-1.6.3/filters/kword/applixword/Makefile.in |only koffice-1.6.3/filters/kword/ascii/Makefile.in |only koffice-1.6.3/filters/kword/docbook/Makefile.in |only koffice-1.6.3/filters/kword/hancomword/Makefile.in |only koffice-1.6.3/filters/kword/html/Makefile.in |only koffice-1.6.3/filters/kword/html/export/Makefile.in |only koffice-1.6.3/filters/kword/html/import/Makefile.in |only koffice-1.6.3/filters/kword/kword1.3/Makefile.in |only koffice-1.6.3/filters/kword/kword1.3/import/Makefile.in |only koffice-1.6.3/filters/kword/latex/Makefile.in |only koffice-1.6.3/filters/kword/latex/export/Makefile.in |only koffice-1.6.3/filters/kword/latex/import/Makefile.in |only koffice-1.6.3/filters/kword/latex/import/generator/Makefile.in |only koffice-1.6.3/filters/kword/latex/import/parser/Makefile.in |only koffice-1.6.3/filters/kword/libexport/Makefile.in |only koffice-1.6.3/filters/kword/msword/Makefile.in |only koffice-1.6.3/filters/kword/mswrite/Makefile.in |only koffice-1.6.3/filters/kword/oowriter/Makefile.in |only koffice-1.6.3/filters/kword/palmdoc/Makefile.in |only koffice-1.6.3/filters/kword/pdf/Makefile.in |only koffice-1.6.3/filters/kword/pdf/xpdf/Makefile.in |only koffice-1.6.3/filters/kword/pdf/xpdf/goo/Makefile.in |only koffice-1.6.3/filters/kword/pdf/xpdf/xpdf/Makefile.in |only koffice-1.6.3/filters/kword/pdf/xpdf/xpdf/pdftops.cc |only koffice-1.6.3/filters/kword/rtf/Makefile.in |only koffice-1.6.3/filters/kword/rtf/export/Makefile.in |only koffice-1.6.3/filters/kword/rtf/import/Makefile.in |only koffice-1.6.3/filters/kword/starwriter/Makefile.in |only koffice-1.6.3/filters/kword/wml/Makefile.in |only koffice-1.6.3/filters/kword/wordperfect/Makefile.in |only koffice-1.6.3/filters/kword/wordperfect/export/Makefile.in |only koffice-1.6.3/filters/kword/wordperfect/import/Makefile.in |only koffice-1.6.3/filters/libdialogfilter/Makefile.in |only koffice-1.6.3/filters/liboofilter/Makefile.in |only koffice-1.6.3/filters/olefilters/Makefile.in |only koffice-1.6.3/filters/olefilters/lib/Makefile.in |only koffice-1.6.3/filters/olefilters/powerpoint97/Makefile.in |only koffice-1.6.3/filters/xsltfilter/Makefile.in |only koffice-1.6.3/filters/xsltfilter/export/Makefile.in |only koffice-1.6.3/filters/xsltfilter/export/xsl/Makefile.in |only koffice-1.6.3/filters/xsltfilter/export/xsl/kword/Makefile.in |only koffice-1.6.3/filters/xsltfilter/export/xsl/kword/xslfo/Makefile.in |only koffice-1.6.3/filters/xsltfilter/import/Makefile.in |only koffice-1.6.3/interfaces/Makefile.in |only koffice-1.6.3/karbon/Makefile.in |only koffice-1.6.3/karbon/commands/Makefile.in |only koffice-1.6.3/karbon/core/Makefile.in |only koffice-1.6.3/karbon/data/Makefile.in |only koffice-1.6.3/karbon/dialogs/Makefile.in |only koffice-1.6.3/karbon/dockers/Makefile.in |only koffice-1.6.3/karbon/pics/Makefile.in |only koffice-1.6.3/karbon/plugins/Makefile.in |only koffice-1.6.3/karbon/plugins/flattenpath/Makefile.in |only koffice-1.6.3/karbon/plugins/imagetool/Makefile.in |only koffice-1.6.3/karbon/plugins/insertknots/Makefile.in |only koffice-1.6.3/karbon/plugins/roundcorners/Makefile.in |only koffice-1.6.3/karbon/plugins/shadoweffect/Makefile.in |only koffice-1.6.3/karbon/plugins/whirlpinch/Makefile.in |only koffice-1.6.3/karbon/plugins/zoomtool/Makefile.in |only koffice-1.6.3/karbon/render/Makefile.in |only koffice-1.6.3/karbon/render/xrgbrender/Makefile.in |only koffice-1.6.3/karbon/shapes/Makefile.in |only koffice-1.6.3/karbon/templates/Makefile.in |only koffice-1.6.3/karbon/templates/basic/Makefile.in |only koffice-1.6.3/karbon/tools/Makefile.in |only koffice-1.6.3/karbon/visitors/Makefile.in |only koffice-1.6.3/karbon/widgets/Makefile.in |only koffice-1.6.3/kchart/Makefile.in |only koffice-1.6.3/kchart/kdchart/Makefile.in |only koffice-1.6.3/kchart/pics/Makefile.in |only koffice-1.6.3/kchart/templates/Makefile.in |only koffice-1.6.3/kchart/toolbar/Makefile.in |only koffice-1.6.3/kchart/toolbar/crystalsvg/Makefile.in |only koffice-1.6.3/kchart/toolbar/locolor/Makefile.in |only koffice-1.6.3/kdgantt/Makefile.in |only koffice-1.6.3/kexi/3rdparty/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kexisql/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kexisql/src/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kexisql/tool/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kexisql3/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kexisql3/src/Makefile.in |only koffice-1.6.3/kexi/3rdparty/kolibs/Makefile.in |only koffice-1.6.3/kexi/3rdparty/uuid/Makefile.in |only koffice-1.6.3/kexi/Makefile.in |only koffice-1.6.3/kexi/core/Makefile.in |only koffice-1.6.3/kexi/data/Makefile.in |only koffice-1.6.3/kexi/data/kde34compat/Makefile.in |only koffice-1.6.3/kexi/examples/Makefile.in |only koffice-1.6.3/kexi/formeditor/Makefile.in |only koffice-1.6.3/kexi/formeditor/factories/Makefile.in |only koffice-1.6.3/kexi/formeditor/kdevelop_plugin/Makefile.in |only koffice-1.6.3/kexi/formeditor/scripting/Makefile.in |only koffice-1.6.3/kexi/formeditor/test/Makefile.in |only koffice-1.6.3/kexi/kexidb/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/mySQL/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/odbc/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/pqxx/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/sqlite/Makefile.in |only koffice-1.6.3/kexi/kexidb/drivers/sqlite2/Makefile.in |only koffice-1.6.3/kexi/kexidb/parser/Makefile.in |only koffice-1.6.3/kexi/kexiutils/Makefile.in |only koffice-1.6.3/kexi/main/Makefile.in |only koffice-1.6.3/kexi/main/printing/Makefile.in |only koffice-1.6.3/kexi/main/startup/Makefile.in |only koffice-1.6.3/kexi/migration/Makefile.in |only koffice-1.6.3/kexi/migration/mysql/Makefile.in |only koffice-1.6.3/kexi/migration/pqxx/Makefile.in |only koffice-1.6.3/kexi/migration/txt/Makefile.in |only koffice-1.6.3/kexi/pics/Makefile.in |only koffice-1.6.3/kexi/plugins/Makefile.in |only koffice-1.6.3/kexi/plugins/forms/Makefile.in |only koffice-1.6.3/kexi/plugins/forms/widgets/Makefile.in |only koffice-1.6.3/kexi/plugins/importexport/Makefile.in |only koffice-1.6.3/kexi/plugins/importexport/csv/Makefile.in |only koffice-1.6.3/kexi/plugins/macros/Makefile.in |only koffice-1.6.3/kexi/plugins/macros/kexiactions/Makefile.in |only koffice-1.6.3/kexi/plugins/macros/kexipart/Makefile.in |only koffice-1.6.3/kexi/plugins/macros/lib/Makefile.in |only koffice-1.6.3/kexi/plugins/macros/tests/Makefile.in |only koffice-1.6.3/kexi/plugins/migration/Makefile.in |only koffice-1.6.3/kexi/plugins/queries/Makefile.in |only koffice-1.6.3/kexi/plugins/relations/Makefile.in |only koffice-1.6.3/kexi/plugins/reports/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/kexiapp/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/kexidb/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/kexiscripting/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/copycenter/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/exportxhtml/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/importxhtml/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/projectdocumentor/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/python/Makefile.in |only koffice-1.6.3/kexi/plugins/scripting/scripts/python/kexiapp/Makefile.in |only koffice-1.6.3/kexi/plugins/tables/Makefile.in |only koffice-1.6.3/kexi/tests/Makefile.in |only koffice-1.6.3/kexi/tests/altertable/Makefile.in |only koffice-1.6.3/kexi/tests/newapi/Makefile.in |only koffice-1.6.3/kexi/tests/parser/Makefile.in |only koffice-1.6.3/kexi/tests/startup/Makefile.in |only koffice-1.6.3/kexi/tests/tableview/Makefile.in |only koffice-1.6.3/kexi/tests/widgets/Makefile.in |only koffice-1.6.3/kexi/tools/Makefile.in |only koffice-1.6.3/kexi/tools/add_column/Makefile.in |only koffice-1.6.3/kexi/tools/delete_column/Makefile.in |only koffice-1.6.3/kexi/widget/Makefile.in |only koffice-1.6.3/kexi/widget/relations/Makefile.in |only koffice-1.6.3/kexi/widget/tableview/Makefile.in |only koffice-1.6.3/kexi/widget/utils/Makefile.in |only koffice-1.6.3/kformula/Makefile.in |only koffice-1.6.3/kformula/pics/Makefile.in |only koffice-1.6.3/kivio/Makefile.in |only koffice-1.6.3/kivio/kiviopart/Makefile.in |only koffice-1.6.3/kivio/kiviopart/config/Makefile.in |only koffice-1.6.3/kivio/kiviopart/kiviosdk/Makefile.in |only koffice-1.6.3/kivio/kiviopart/pics/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Assorted/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Circuit/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Cisco/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Civil/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Contact/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Electric/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Jigsaw/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/MSE/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Network/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Pneumatic/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/SDL/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Dia/Sybase/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/BasicFlowcharting/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Extended/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Logic/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Flags/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Maps/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Computer/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Miscellaneous/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Arrows/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Buildings/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/ER/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/NassiShneiderman/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/People/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Transport/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/UML/ActivityDiagrams/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/UML/ClassDiagrams/Makefile.in |only koffice-1.6.3/kivio/kiviopart/stencils/UML/Makefile.in |only koffice-1.6.3/kivio/kiviopart/tiles/Makefile.in |only koffice-1.6.3/kivio/kiviopart/tools/Makefile.in |only koffice-1.6.3/kivio/kiviopart/ui/Makefile.in |only koffice-1.6.3/kivio/plugins/Makefile.in |only koffice-1.6.3/kivio/plugins/kivioconnectortool/Makefile.in |only koffice-1.6.3/kivio/plugins/kivioconnectortool/straight_connector/Makefile.in |only koffice-1.6.3/kivio/plugins/kivioselecttool/Makefile.in |only koffice-1.6.3/kivio/plugins/kivioselecttool/select_pics/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviosmlconnector/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviosmlconnector/sml_connector/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviotargettool/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviotexttool/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviozoomtool/Makefile.in |only koffice-1.6.3/kivio/plugins/kiviozoomtool/zoom_pics/Makefile.in |only koffice-1.6.3/kivio/templates/Makefile.in |only koffice-1.6.3/kivio/templates/basic/Makefile.in |only koffice-1.6.3/koshell/Makefile.in |only koffice-1.6.3/kounavail/Makefile.in |only koffice-1.6.3/kplato/Makefile.in |only koffice-1.6.3/kplato/pics/Makefile.in |only koffice-1.6.3/kplato/reports/Makefile.in |only koffice-1.6.3/kplato/templates/Makefile.in |only koffice-1.6.3/kplato/templates/Simple/Makefile.in |only koffice-1.6.3/kplato/tests/Makefile.in |only koffice-1.6.3/kplato/toolbar/Makefile.in |only koffice-1.6.3/kpresenter/Makefile.in |only koffice-1.6.3/kpresenter/autoformEdit/Makefile.in |only koffice-1.6.3/kpresenter/autoforms/Arrows/Makefile.in |only koffice-1.6.3/kpresenter/autoforms/Connections/Makefile.in |only koffice-1.6.3/kpresenter/autoforms/Makefile.in |only koffice-1.6.3/kpresenter/dtd/Makefile.in |only koffice-1.6.3/kpresenter/pics/Makefile.in |only koffice-1.6.3/kpresenter/pics/rotate/Makefile.in |only koffice-1.6.3/kpresenter/slideshow/Makefile.in |only koffice-1.6.3/kpresenter/templates/A4/Makefile.in |only koffice-1.6.3/kpresenter/templates/Makefile.in |only koffice-1.6.3/kpresenter/templates/Screen/Makefile.in |only koffice-1.6.3/kpresenter/templates/Screenpresentations/Makefile.in |only koffice-1.6.3/kpresenter/templates/common_icon/Makefile.in |only koffice-1.6.3/kpresenter/templates/legal/Makefile.in |only koffice-1.6.3/kpresenter/templates/letter/Makefile.in |only koffice-1.6.3/kpresenter/toolbar/Makefile.in |only koffice-1.6.3/krita/Makefile.in |only koffice-1.6.3/krita/colorspaces/Makefile.in |only koffice-1.6.3/krita/colorspaces/cmyk_u16/Makefile.in |only koffice-1.6.3/krita/colorspaces/cmyk_u8/Makefile.in |only koffice-1.6.3/krita/colorspaces/cmyk_u8/templates/Makefile.in |only koffice-1.6.3/krita/colorspaces/gray_u16/Makefile.in |only koffice-1.6.3/krita/colorspaces/gray_u8/Makefile.in |only koffice-1.6.3/krita/colorspaces/gray_u8/templates/Makefile.in |only koffice-1.6.3/krita/colorspaces/gray_u8/tests/Makefile.in |only koffice-1.6.3/krita/colorspaces/lms_f32/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_f16half/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_f16half/tests/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_f32/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_f32/tests/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_u16/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_u16/tests/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_u8/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_u8/templates/Makefile.in |only koffice-1.6.3/krita/colorspaces/rgb_u8/tests/Makefile.in |only koffice-1.6.3/krita/colorspaces/wet/Makefile.in |only koffice-1.6.3/krita/colorspaces/wetsticky/Makefile.in |only koffice-1.6.3/krita/colorspaces/wetsticky/brushop/Makefile.in |only koffice-1.6.3/krita/colorspaces/ycbcr_u16/Makefile.in |only koffice-1.6.3/krita/colorspaces/ycbcr_u8/Makefile.in |only koffice-1.6.3/krita/core/Makefile.in |only koffice-1.6.3/krita/core/tests/Makefile.in |only koffice-1.6.3/krita/core/tiles/Makefile.in |only koffice-1.6.3/krita/core/tiles/tests/Makefile.in |only koffice-1.6.3/krita/data/Makefile.in |only koffice-1.6.3/krita/data/brushes/Makefile.in |only koffice-1.6.3/krita/data/gradients/Makefile.in |only koffice-1.6.3/krita/data/images/Makefile.in |only koffice-1.6.3/krita/data/palettes/Makefile.in |only koffice-1.6.3/krita/data/patterns/Makefile.in |only koffice-1.6.3/krita/data/profiles/Makefile.in |only koffice-1.6.3/krita/dtd/Makefile.in |only koffice-1.6.3/krita/kritacolor/Makefile.in |only koffice-1.6.3/krita/kritacolor/colorspaces/Makefile.in |only koffice-1.6.3/krita/kritacolor/tests/Makefile.in |only koffice-1.6.3/krita/pics/Makefile.in |only koffice-1.6.3/krita/plugins/Makefile.in |only koffice-1.6.3/krita/plugins/filters/Makefile.in |only koffice-1.6.3/krita/plugins/filters/blur/Makefile.in |only koffice-1.6.3/krita/plugins/filters/bumpmap/Makefile.in |only koffice-1.6.3/krita/plugins/filters/cimg/Makefile.in |only koffice-1.6.3/krita/plugins/filters/colorify/Makefile.in |only koffice-1.6.3/krita/plugins/filters/colors/Makefile.in |only koffice-1.6.3/krita/plugins/filters/colorsfilters/Makefile.in |only koffice-1.6.3/krita/plugins/filters/convolutionfilters/Makefile.in |only koffice-1.6.3/krita/plugins/filters/cubismfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/embossfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/example/Makefile.in |only koffice-1.6.3/krita/plugins/filters/fastcolortransfer/Makefile.in |only koffice-1.6.3/krita/plugins/filters/imageenhancement/Makefile.in |only koffice-1.6.3/krita/plugins/filters/lenscorrectionfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/levelfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/noisefilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/oilpaintfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/pixelizefilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/raindropsfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/randompickfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/roundcorners/Makefile.in |only koffice-1.6.3/krita/plugins/filters/smalltilesfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/sobelfilter/Makefile.in |only koffice-1.6.3/krita/plugins/filters/threadtest/Makefile.in |only koffice-1.6.3/krita/plugins/filters/unsharp/Makefile.in |only koffice-1.6.3/krita/plugins/filters/wavefilter/Makefile.in |only koffice-1.6.3/krita/plugins/paintops/Makefile.in |only koffice-1.6.3/krita/plugins/paintops/defaultpaintops/Makefile.in |only koffice-1.6.3/krita/plugins/tools/Makefile.in |only koffice-1.6.3/krita/plugins/tools/defaulttools/Makefile.in |only koffice-1.6.3/krita/plugins/tools/selectiontools/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_crop/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_curves/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_filter/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_perspectivegrid/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_perspectivetransform/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_polygon/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_polyline/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_selectsimilar/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_star/Makefile.in |only koffice-1.6.3/krita/plugins/tools/tool_transform/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/colorrange/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/colorspaceconversion/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/dropshadow/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/filtersgallery/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/histogram/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/histogram_docker/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/history_docker/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/imagesize/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/modify_selection/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/performancetest/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/rotateimage/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/screenshot/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/kritacore/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/kritascripting/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/python/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/ruby/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/selectopaque/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/separate_channels/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/shearimage/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/substrate/Makefile.in |only koffice-1.6.3/krita/plugins/viewplugins/variations/Makefile.in |only koffice-1.6.3/krita/sdk/Makefile.in |only koffice-1.6.3/krita/ui/Makefile.in |only koffice-1.6.3/kspread/Makefile.in |only koffice-1.6.3/kspread/dialogs/Makefile.in |only koffice-1.6.3/kspread/dtd/Makefile.in |only koffice-1.6.3/kspread/extensions/Makefile.in |only koffice-1.6.3/kspread/pics/Makefile.in |only koffice-1.6.3/kspread/plugins/Makefile.in |only koffice-1.6.3/kspread/plugins/calculator/Makefile.in |only koffice-1.6.3/kspread/plugins/calculator/pics/Makefile.in |only koffice-1.6.3/kspread/plugins/insertcalendar/Makefile.in |only koffice-1.6.3/kspread/plugins/scripting/Makefile.in |only koffice-1.6.3/kspread/plugins/scripting/kspreadcore/Makefile.in |only koffice-1.6.3/kspread/plugins/scripting/scripts/Makefile.in |only koffice-1.6.3/kspread/plugins/scripting/scripts/exporthtml/Makefile.in |only koffice-1.6.3/kspread/plugins/scripting/scripts/scripteditor/Makefile.in |only koffice-1.6.3/kspread/sheetstyles/Makefile.in |only koffice-1.6.3/kspread/templates/Business/Makefile.in |only koffice-1.6.3/kspread/templates/General/Makefile.in |only koffice-1.6.3/kspread/templates/HomeFamily/Makefile.in |only koffice-1.6.3/kspread/templates/Makefile.in |only koffice-1.6.3/kspread/tests/Makefile.in |only koffice-1.6.3/kspread/toolbar/Makefile.in |only koffice-1.6.3/kspread/toolbar/crystalsvg/Makefile.in |only koffice-1.6.3/kugar/Makefile.in |only koffice-1.6.3/kugar/kudesigner/Makefile.in |only koffice-1.6.3/kugar/kudesigner/pics/Makefile.in |only koffice-1.6.3/kugar/kudesigner/templates/General/Makefile.in |only koffice-1.6.3/kugar/kudesigner/templates/Makefile.in |only koffice-1.6.3/kugar/kudesigner/toolbar/Makefile.in |only koffice-1.6.3/kugar/kudesigner_lib/Makefile.in |only koffice-1.6.3/kugar/lib/Makefile.in |only koffice-1.6.3/kugar/part/Makefile.in |only koffice-1.6.3/kugar/samples/Makefile.in |only koffice-1.6.3/kword/Makefile.in |only koffice-1.6.3/kword/data/Makefile.in |only koffice-1.6.3/kword/dtd/Makefile.in |only koffice-1.6.3/kword/expression/Makefile.in |only koffice-1.6.3/kword/horizontalline/Makefile.in |only koffice-1.6.3/kword/mailmerge/Makefile.in |only koffice-1.6.3/kword/mailmerge/kabc/Makefile.in |only koffice-1.6.3/kword/mailmerge/kspread/Makefile.in |only koffice-1.6.3/kword/mailmerge/sql/Makefile.in |only koffice-1.6.3/kword/pics/Makefile.in |only koffice-1.6.3/kword/templates/CardsAndLabels/Makefile.in |only koffice-1.6.3/kword/templates/Envelopes/Makefile.in |only koffice-1.6.3/kword/templates/Makefile.in |only koffice-1.6.3/kword/templates/Wordprocessing/Makefile.in |only koffice-1.6.3/kword/tests/Makefile.in |only koffice-1.6.3/kword/toolbar/Makefile.in |only koffice-1.6.3/lib/Makefile.in |only koffice-1.6.3/lib/kformula/Makefile.in |only koffice-1.6.3/lib/kformula/config/Makefile.in |only koffice-1.6.3/lib/kformula/dtd/Makefile.in |only koffice-1.6.3/lib/kformula/fonts/Makefile.in |only koffice-1.6.3/lib/kformula/pics/Makefile.in |only koffice-1.6.3/lib/kformula/pics/crystalsvg/Makefile.in |only koffice-1.6.3/lib/kofficecore/Makefile.in |only koffice-1.6.3/lib/kofficecore/tests/Makefile.in |only koffice-1.6.3/lib/kofficeui/Makefile.in |only koffice-1.6.3/lib/kofficeui/pics/Makefile.in |only koffice-1.6.3/lib/kofficeui/tests/Makefile.in |only koffice-1.6.3/lib/kopainter/Makefile.in |only koffice-1.6.3/lib/kopalette/Makefile.in |only koffice-1.6.3/lib/koproperty/Makefile.in |only koffice-1.6.3/lib/koproperty/editors/Makefile.in |only koffice-1.6.3/lib/koproperty/test/Makefile.in |only koffice-1.6.3/lib/kotext/Makefile.in |only koffice-1.6.3/lib/kotext/kohyphen/Makefile.in |only koffice-1.6.3/lib/kotext/kohyphen/hyphdicts/Makefile.in |only koffice-1.6.3/lib/kotext/tests/Makefile.in |only koffice-1.6.3/lib/kross/Makefile.in |only koffice-1.6.3/lib/kross/api/Makefile.in |only koffice-1.6.3/lib/kross/main/Makefile.in |only koffice-1.6.3/lib/kross/python/Makefile.in |only koffice-1.6.3/lib/kross/python/cxx/Makefile.in |only koffice-1.6.3/lib/kross/python/scripts/Makefile.in |only koffice-1.6.3/lib/kross/python/scripts/RestrictedPython/Makefile.in |only koffice-1.6.3/lib/kross/ruby/Makefile.in |only koffice-1.6.3/lib/kross/runner/Makefile.in |only koffice-1.6.3/lib/kross/test/Makefile.in |only koffice-1.6.3/lib/kwmf/Makefile.in |only koffice-1.6.3/lib/store/Makefile.in |only koffice-1.6.3/lib/store/tests/Makefile.in |only koffice-1.6.3/mimetypes/Makefile.in |only koffice-1.6.3/mimetypes/kde33/Makefile.in |only koffice-1.6.3/mimetypes/kde351/Makefile.in |only koffice-1.6.3/pics/Makefile.in |only koffice-1.6.3/pics/crystalsvg/Makefile.in |only koffice-1.6.3/plugins/Makefile.in |only koffice-1.6.3/plugins/scan/Makefile.in |only koffice-1.6.3/servicetypes/Makefile.in |only koffice-1.6.3/templates/Makefile.in |only koffice-1.6.3/tools/Makefile.in |only koffice-1.6.3/tools/converter/Makefile.in |only koffice-1.6.3/tools/kfile-plugins/Makefile.in |only koffice-1.6.3/tools/kfile-plugins/abiword/Makefile.in |only koffice-1.6.3/tools/kfile-plugins/gnumeric/Makefile.in |only koffice-1.6.3/tools/kfile-plugins/koffice/Makefile.in |only koffice-1.6.3/tools/kfile-plugins/ooo/Makefile.in |only koffice-1.6.3/tools/kthesaurus/Makefile.in |only koffice-1.6.3/tools/quickprint/Makefile.in |only koffice-1.6.3/tools/spell/Makefile.in |only koffice-1.6.3/tools/thesaurus/Makefile.in |only koffice-1.6.3/tools/thumbnail/Makefile.in |only 1156 files changed, 5215 insertions(+), 2017 deletions(-) --- NEW FILE koffice-20090306svn.patch --- Only in koffice-1.6.3/: acinclude.m4 Only in koffice-1.6.3/: aclocal.m4 diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/acinclude.m4.in koffice-1.6-branch/admin/acinclude.m4.in --- koffice-1.6.3/admin/acinclude.m4.in 2007-05-30 16:50:22.000000000 -0500 +++ koffice-1.6-branch/admin/acinclude.m4.in 2008-11-03 12:17:22.000000000 -0600 @@ -1226,7 +1226,15 @@ kde_qt_dirs="$QTDIR /usr/lib/qt4 /usr/lib/qt /usr/share/qt4" fi if test $kde_qtver = 3; then - kde_qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3" + kde_qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3 /usr/lib${kdelibsuff}/qt-3.3" + if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) + fi + if test "$PKG_CONFIG" != "no" ; then + if $PKG_CONFIG --exists qt-mt ; then + kde_qt_dirs="$kde_qt_dirs `$PKG_CONFIG --variable=prefix qt-mt`" + fi + fi fi if test $kde_qtver = 2; then kde_qt_dirs="$QTDIR /usr/lib/qt2 /usr/lib/qt" @@ -1443,6 +1451,14 @@ for dir in $kde_qt_dirs; do qt_incdirs="$qt_incdirs $dir/include $dir" done +if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +fi +if test "$PKG_CONFIG" != "no" ; then + if $PKG_CONFIG --exists qt-mt ; then + qt_incdirs="$qt_incdirs `$PKG_CONFIG --variable=includedir qt-mt`" + fi +fi qt_incdirs="$QTINC $qt_incdirs /usr/local/qt/include /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/X11R6/include/qt2 /usr/include/qt3 $x_includes" if test ! "$ac_qt_includes" = "NO"; then qt_incdirs="$ac_qt_includes $qt_incdirs" @@ -1459,8 +1475,16 @@ qt_libdirs="" for dir in $kde_qt_dirs; do - qt_libdirs="$qt_libdirs $dir/lib${kdelibsuff} $dir" + qt_libdirs="$qt_libdirs $dir/lib${kdelibsuff} $dir/lib $dir" done +if test -z "$PKG_CONFIG"; then + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +fi +if test "$PKG_CONFIG" != "no" ; then + if $PKG_CONFIG --exists qt-mt ; then + qt_libdirs="$qt_incdirs `$PKG_CONFIG --variable=libdir qt-mt`" + fi +fi qt_libdirs="$QTLIB $qt_libdirs /usr/X11R6/lib /usr/lib /usr/local/qt/lib $x_libraries" if test ! "$ac_qt_libraries" = "NO"; then qt_libdir=$ac_qt_libraries @@ -2631,6 +2655,7 @@ AC_TRY_LINK(dnl [ #include +#include ], [ char buf[42]; @@ -2638,7 +2663,7 @@ /* this would segfault.. but we only link, don't run */ (void) gzgets(f, buf, sizeof(buf)); - return (zlibVersion() == ZLIB_VERSION); + return (strcmp(zlibVersion(), ZLIB_VERSION) == 0); ], eval "ac_cv_lib_z='-lz'", eval "ac_cv_lib_z=no") @@ -2738,11 +2763,11 @@ echo "*** to the full path to pkg-config." echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." else - if !(`$PKG_CONFIG --exists OpenEXR`) ; then + if ! $PKG_CONFIG --exists OpenEXR ; then AC_MSG_RESULT(no) EXRSTATUS=no else - if !(`$PKG_CONFIG --atleast-version="1.1.1" OpenEXR`) ; then + if ! $PKG_CONFIG --atleast-version="1.1.1" OpenEXR ; then AC_MSG_RESULT(no) EXRSTATUS=old else @@ -4624,7 +4649,8 @@ AC_DEFUN([KDE_CHECK_PYTHON], [ - KDE_CHECK_PYTHON_INTERN("2.5", + KDE_CHECK_PYTHON_INTERN("2.6", + [KDE_CHECK_PYTHON_INTERN("2.5", [KDE_CHECK_PYTHON_INTERN("2.4", [KDE_CHECK_PYTHON_INTERN("2.3", [KDE_CHECK_PYTHON_INTERN("2.2", @@ -4636,6 +4662,7 @@ ]) ]) ]) + ]) ]) AC_DEFUN([KDE_CHECK_STL], diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/cvs.sh koffice-1.6-branch/admin/cvs.sh --- koffice-1.6.3/admin/cvs.sh 2007-05-30 16:50:22.000000000 -0500 +++ koffice-1.6-branch/admin/cvs.sh 2008-11-03 12:17:22.000000000 -0600 @@ -316,7 +316,7 @@ fi fi if test -z "$VERSION" || test "$VERSION" = "@VERSION@"; then - VERSION="\"3.5.7\"" + VERSION="\"3.5.10\"" fi if test -z "$modulename" || test "$modulename" = "@MODULENAME@"; then modulename=`pwd`; diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/detect-autoconf.pl koffice-1.6-branch/admin/detect-autoconf.pl --- koffice-1.6.3/admin/detect-autoconf.pl 2007-05-30 16:50:22.000000000 -0500 +++ koffice-1.6-branch/admin/detect-autoconf.pl 2008-11-03 12:17:22.000000000 -0600 @@ -21,6 +21,73 @@ return ""; } +# Subroutine to lexicographically compare two version strings, a and b. +# If a > b, 1 is returned. +# If a == b, 0 is returned. +# If a < b, -1 is returned. +# +# If the strings are of uneven number length then the shorter string is +# prepended by enough zeroes to make the two string lengths equal in order to +# allow an accurate comparison. Note that the zero-padding only occurs in +# between version separators (i.e. 1.6 and 1.10, results in 1.06 vs. 1.10). +# Parts of the version ending in -foo (or any other text) are not considered +# when doing the compare. (i.e. 2.53a vs 2.53 doesn't end up in 2.53a vs. +# 2.053) +sub compareVersions +{ + my ($a, $b) = @_; + + # Split the strings up by '.' (version separator) and start comparing digit + # length. + + my @aParts = split(/\./, $a); + my @bParts = split(/\./, $b); + + # Make the arrays equal in length by adding missing zeroes to the end of the + # version. + push @aParts, '0' while scalar @aParts < scalar @bParts; + push @bParts, '0' while scalar @bParts < scalar @aParts; + + # Now compare each individual portion. + for (my $i = 0; $i < scalar @aParts; ++$i) + { + # Make sure that any portion that has numbers is contiguous. I'm sure + # there's a technique for saving stuff like 2.52a2 but I don't feel + # like implementing it. + if ($aParts[$i] !~ /^[^\d]*\d+[^\d]*$/ or + $bParts[$i] !~ /^[^\d]*\d+[^\d]*$/) + { + die "Not able to compare $a to $b!\n"; + } + + my ($aDigits) = ($aParts[$i] =~ /(\d+)/); + my ($bDigits) = ($bParts[$i] =~ /(\d+)/); + + # Perl is $MODERATELY_INSULTING_TERM, don't remove the parentheses in + # the delta calculation below. + my $delta = (length $aDigits) - (length $bDigits); + if ($delta < 0) # b is longer + { + my $replacement = ('0' x (-$delta)) . $aDigits; + $aParts[$i] =~ s/$aDigits/$replacement/; + } + elsif ($delta > 0) # a is longer + { + my $replacement = ('0' x $delta) . $bDigits; + $bParts[$i] =~ s/$bDigits/$replacement/; + } + } + + # Arrays now have standardized version components, let's re-merge them + # to strings to do the compare. + my $newA = join('.', @aParts); + my $newB = join('.', @bParts); + + return 1 if ($newA gt $newB); + return -1 if ($newA lt $newB); + return 0; +} + # Subroutine to determine the highest installed version of the given program, # searching from the given paths. sub findBest @@ -32,6 +99,7 @@ 'autoconf' => '2.5', 'automake' => '1.6', ); + my $sgn; # Used for compareVersions results. [...25664 lines suppressed...] +Comment[lt]=Patikrinti ?io ?od?io ra?yb? Comment[lv]=P?rbaud?t ?? v?rda pareizrakst?bu Comment[ms]=Semak Ejaan Kata ini Comment[mt]=I??ekkja kif tispelli dil-kelma @@ -119,7 +122,8 @@ Comment[th]=????????????????????? Comment[tr]=Bu Kelimenin ?mla Denetimini Yap Comment[uk]=?????????? ???????? ????? ????? -Comment[uz]=?? ??????? ???????? ???????? +Comment[uz]=Shu so?zning imlosini tekshirish +Comment[uz at cyrillic]=?? ??????? ???????? ???????? Comment[wa]=Coridj? l'?ortografeye di ?'?mot ci... Comment[xh]=Khangela olu Pelo Magama Comment[zh_CN]=?????? Only in koffice-1.6.3/tools/spell: Makefile.in diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/spell/uninstall.desktop koffice-1.6-branch/tools/spell/uninstall.desktop --- koffice-1.6.3/tools/spell/uninstall.desktop 2007-05-30 16:36:09.000000000 -0500 +++ koffice-1.6-branch/tools/spell/uninstall.desktop 2008-11-03 11:55:08.000000000 -0600 @@ -1,3 +1,2 @@ [Desktop Entry] -Encoding=UTF-8 Hidden=true Only in koffice-1.6.3/tools/thesaurus: Makefile.in diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thesaurus/thesaurustool.desktop koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop --- koffice-1.6.3/tools/thesaurus/thesaurustool.desktop 2007-05-30 16:36:11.000000000 -0500 +++ koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop 2008-11-03 11:55:11.000000000 -0600 @@ -1,5 +1,4 @@ [Desktop Entry] -Encoding=UTF-8 Icon= Name=Thesaurus Tool Name[af]=Thesaurus Program @@ -14,13 +13,14 @@ Name[da]=Thesaurusv?rkt?j Name[de]=Thesaurus-Werkzeug Name[el]=???????? ????????? -Name[eo]=Teza?ro +Name[eo]=Teza?rilo Name[es]=Herramienta de Thesaurus Name[et]=Tesaurus Name[eu]=Thesaurus tresna Name[fa]=????? Thesaurus Name[fi]=Synonyymisanakirja Name[fr]=Outil Th?saurus +Name[fy]=Thesaurus ark Name[gl]=Ferramenta de Sin?nimos Name[he]=??? ????? Name[hi]=?????? ??????? ?? ???? @@ -40,7 +40,7 @@ Name[ne]=????????? ????? Name[nl]=Thesaurus hulpprogramma Name[nn]=Synonymordbok -Name[pl]=Thesaurus +Name[pl]=Tezaurus Name[pt]=Ferramenta de Sin?nimos Name[pt_BR]=Ferramenta Thesaurus Name[ru]=???????? @@ -55,7 +55,8 @@ Name[th]=???????????????? Name[tr]=Thesaurus Arac? Name[uk]=????? ????????? -Name[uz]=???????? ???????? +Name[uz]=Tezaurus vositasi +Name[uz at cyrillic]=???????? ???????? Name[xh]=Isixhobo se Thesaurus Name[zh_CN]=???? Name[zh_TW]=????? @@ -65,7 +66,7 @@ Comment=Show Related Words Comment[af]=Vertoon Verwanter Woorde Comment[ar]=????? ??????? ??? ??????? -Comment[bg]=??????? ?? ???????? ?? ?????? +Comment[bg]=??????? ?? ???????? Comment[bs]=Prika?i srodne rije?i Comment[ca]=Mostra paraules relacionades Comment[cs]=Zobrazit podobn? slova @@ -80,6 +81,7 @@ Comment[fa]=????? ???????? ????? Comment[fi]=N?yt? samankaltaiset sanat Comment[fr]=Afficher les mots li?s +Comment[fy]=Ferlykbere wurden sjen litte Comment[gl]=Mostrar as Palabras Relacionadas Comment[he]=??? ????? ?????? Comment[hi]=????????? ???? ?????? @@ -90,11 +92,12 @@ Comment[ja]=?????? Comment[km]=??????????????????????? Comment[lo]=???????????????????? +Comment[lt]=Parodyti susijusius ?od?ius Comment[lv]=R?d?t saist?tos v?rdus Comment[ms]=Tayang Kata Berkaitan Comment[mt]=Uri kliem relatati Comment[nb]=Vis ord som ligner -Comment[nds]=Toh?ren W??r wiesen +Comment[nds]=Lieke W??r wiesen Comment[ne]=????????? ??????? ??????????? Comment[nl]=Toon gerelateerde woorden Comment[nn]=Vis n?rskylde ord @@ -112,7 +115,8 @@ Comment[th]=???????????????????? Comment[tr]=?lgili Kelimeleri G?ster Comment[uk]=???????? ???'????? ????? -Comment[uz]=?????? ?????? ???????? ???????? +Comment[uz]=Bog?liq bo?lgan so?zlarni ko?rsatish +Comment[uz at cyrillic]=?????? ?????? ???????? ???????? Comment[wa]=Mostrer les mots k'?ont-st a vey avou Comment[xh]=Bonisa Amagama Ahlobeneyo Comment[zh_CN]=?????? diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/clipartthumbnail.desktop koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop --- koffice-1.6.3/tools/thumbnail/clipartthumbnail.desktop 2007-05-30 16:36:12.000000000 -0500 +++ koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop 2008-11-03 11:55:13.000000000 -0600 @@ -1,5 +1,4 @@ [Desktop Entry] -Encoding=UTF-8 Type=Service Name=Clipart Name[af]=Kitskuns @@ -36,7 +35,8 @@ Name[sr at Latn]=Ise?ci Name[th]=????????? Name[uk]=?????????? -Name[uz]=??????? +Name[uz]=Klipart +Name[uz at cyrillic]=??????? Name[zh_CN]=??? Name[zh_TW]=??? ServiceTypes=ThumbCreator diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/kofficethumbnail.desktop koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop --- koffice-1.6.3/tools/thumbnail/kofficethumbnail.desktop 2007-05-30 16:36:12.000000000 -0500 +++ koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop 2008-11-03 11:55:13.000000000 -0600 @@ -1,5 +1,4 @@ [Desktop Entry] -Encoding=UTF-8 Type=Service Name=KOffice Files Name[af]=Koffice L?ers @@ -13,7 +12,7 @@ Name[da]=KOffice-filer Name[de]=KOffice-Dateien Name[el]=?????? KOffice -Name[eo]=KOficejo-dosieroj +Name[eo]=KOffice-dosieroj Name[es]=Archivos de KOffice Name[et]=KOffice'i failid Name[eu]=KOffice-en fitxategiak @@ -21,6 +20,7 @@ Name[fi]=KOffice-tiedostot Name[fo]=KSkrivstovu-f?lir Name[fr]=Fichiers KOffice +Name[fy]=KOffice-triemmen Name[ga]=Comhaid KOffice Name[gl]=Ficheiros de KOffice Name[he]=???? KOffice @@ -58,7 +58,8 @@ Name[th]=????????????????????????? K Name[tr]=KOffice Dosyalar? Name[uk]=????? KOffice -Name[uz]=KOffice ???????? +Name[uz]=KOffice fayllari +Name[uz at cyrillic]=KOffice ???????? Name[wa]=Fitch?s KOffice Name[xh]=Iifayile ze KOffice Name[zh_CN]=KOffice ?? Only in koffice-1.6.3/tools/thumbnail: Makefile.in diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/otherofficethumbnail.desktop koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop --- koffice-1.6.3/tools/thumbnail/otherofficethumbnail.desktop 2007-05-30 16:36:12.000000000 -0500 +++ koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop 2009-03-06 14:55:19.000000000 -0600 @@ -1,5 +1,4 @@ [Desktop Entry] -Encoding=UTF-8 Type=Service Name=Other Office Files Name[af]=Ander Kantoor L?ers @@ -21,6 +20,7 @@ Name[fi]=Muut toimistotiedostot Name[fo]=A?rar skrivstovuf?lir Name[fr]=Autres documents bureautiques +Name[fy]=Oare office triemmen Name[gl]=Outros Ficheiros de KOffice Name[he]=???? Office ????? Name[hi]=???? ????? ??????? @@ -43,7 +43,7 @@ Name[pa]=??? ????? ?????? Name[pl]=Inne pliki biurowe Name[pt]=Outros Ficheiros de Escrit?rio -Name[pt_BR]=Outros Arquivos Office +Name[pt_BR]=Outros arquivos Office Name[ro]=Alte fi?iere KOffice Name[ru]=?????? ????? Office Name[se]=Ear? Office-fiillat @@ -57,7 +57,8 @@ Name[th]=?????????????????????????? Name[tr]=Di?er Ofis Dosyalar? Name[uk]=???? ????? KOffice -Name[uz]=????? ???? ????? ??????? +Name[uz]=Idora uchun boshqa fayllar +Name[uz at cyrillic]=????? ???? ????? ??????? Name[wa]=?tes fitch?s di buro Name[xh]=Ezinye Iifayile ze Office Name[zh_CN]=?? Office ?? --- NEW FILE koffice-svn_checkout.sh --- #!/bin/bash DATE=$(date +%Y%m%d) EXPORT_DIR=koffice set -x rm -rf $EXPORT_DIR # app svn export svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/koffice/ $EXPORT_DIR/ tar cjf $EXPORT_DIR-${DATE}svn.tar.bz2 $EXPORT_DIR # cleanup rm -rf $EXPORT_DIR Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-10/koffice.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- koffice.spec 27 Feb 2009 13:51:03 -0000 1.82 +++ koffice.spec 28 Jul 2009 20:53:21 -0000 1.83 @@ -6,10 +6,12 @@ BuildRequires: libutempter-devel %endif +%define svn 20090306 + Name: koffice -Epoch: 1 +Epoch: 2 Version: 1.6.3 -Release: 17%{?dist} +Release: 22.%{svn}svn%{?dist} Summary: An integrated office suite Group: Applications/Productivity @@ -20,6 +22,17 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Source100: koshell.png +Patch50: koffice-1.6.3-glibc_strrchr.patch + +## hand-crafted patch, pretty close to: +# LANG=en_US.UTF-8 svn diff \ +# svn://anonsvn.kde.org/home/kde/tags/koffice/1.6.3/koffice \ +# svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/koffice \ +# > koffice-%{svn}svn.patch +Patch100: koffice-%{svn}svn.patch +# Revert backport from https://bugs.kde.org/show_bug.cgi?id=168548 +Patch101: koffice-1.6.3-quint32.patch + # http://www.kde.org/info/security/advisory-20070730-1.txt Patch1: ftp://ftp.kde.org/pub/kde/security_patches/koffice-xpdf-CVE-2007-3387.diff @@ -31,12 +44,14 @@ Patch2: ftp://ftp.kde.org/pub/kde/securi # svn diff -c 738929 svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/ Patch3: koffice-1.6.3-gcc43.patch +# drop need/use of local fonts, use dejavu instead of arev +Patch4: koffice-1.6.3-dejavu_fonts.patch + # BuildRequires: world-devel ;) BuildRequires: %{kdelibs3}-devel # See http://bugzilla.redhat.com/244091 -%global kdelibs3_ver %((kde-config --version 2>/dev/null || echo KDE 3.5.8) | grep '^KDE' | cut -d' ' -f2 | cut -d'-' -f1) -## kjsembed bits, afaict, not really used (yet) -- Rex -#BuildRequires: kdebindings-devel +%global kdelibs3_ver %((kde-config --version 2>/dev/null || echo KDE 3.5.10) | grep '^KDE' | cut -d' ' -f2 | cut -d'-' -f1) +BuildRequires: automake libtool BuildRequires: freetype-devel BuildRequires: fontconfig-devel BuildRequires: libart_lgpl-devel @@ -175,6 +190,7 @@ Requires: %{name}-core = %{epoch}: Summary: A pixel-based image manipulation program Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} +Requires: %{name}-filters %description krita %{summary}. @@ -218,7 +234,9 @@ Requires: %{name}-core = %{epoch}: Summary: A powerful formula editor Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} +# for cmex10 Requires: mathml-fonts +Requires: dejavu-sans-fonts %description kformula %{summary}. @@ -240,9 +258,20 @@ Requires: %{name}-core = %{epoch} %prep %setup -q -%patch1 -p0 -b .CVE-2007-3387 -%patch2 -p0 -b .CVE-2007-4352-5392-5393 -%patch3 -p1 -b .gcc43 +#patch1 -p0 -b .CVE-2007-3387 +#patch2 -p0 -b .CVE-2007-4352-5392-5393 +#patch3 -p1 -b .gcc43 + +%patch4 -p1 -b .dejavu + +%patch50 -p1 -b glibc_strrchr + +%patch100 -p1 -b .svn +%patch101 -p1 -b .quint32 + +# hack/fix for newer automake +sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh +make -f admin/Makefile.common %build @@ -256,7 +285,7 @@ unset QTDIR || : ; . /etc/profile.d/qt.s --with-extra-libs=%{_libdir} \ --with-pgsqllibdir=%{_libdir} --with-pgsqlincdir=%{_includedir} \ --with-pqxxlibdir=%{_libdir} --with-pqxxincdir=%{_includedir} \ - --enable-final + --disable-final make %{?_smp_mflags} @@ -295,6 +324,9 @@ for desktop_file in %{buildroot}%{_datad done ## unpackaged files +# fonts +rm -rv %{buildroot}%{_datadir}/apps/kformula/fonts/ +# libtool archives rm -f %{buildroot}%{_libdir}/lib*.la # shouldn't these be in koffice-l10n? rm -f %{buildroot}%{_datadir}/locale/pl/LC_MESSAGES/kexi_{add,delete}_column_gui_transl_pl.sh @@ -715,7 +747,24 @@ xdg-desktop-menu forceupdate 2> /dev/nul %{_datadir}/applications/kde/*kplato.desktop -%changelog +%changelog +* Tue Jul 28 2009 Rex Dieter 2:1.6.3-22.20090306svn +- -kformula: omit bundled fonts +- koffice kword crash with formulas (#514217) + +* Thu Apr 16 2009 Rex Dieter 2:1.6.3-21.20090306svn +- -krita: revert/re-add dropped Requires: -filters + +* Tue Mar 10 2009 Kevin Kofler 2:1.6.3-20.20090306svn +- rebuild for new ImageMagick + +* Fri Mar 06 2009 Rex Dieter 2:1.6.3-19.20090306svn +- revert koffice2 -> koffice1, Epoch bump +- 20090306svn + +* Mon Nov 03 2008 Rex Dieter 1:1.6.3-18 +- pull in svn updates + * Mon Oct 27 2008 Rex Dieter 1:1.6.3-17 - move libkiviocommon to -kivio (avoids libpython/multilib issues) From lennart at fedoraproject.org Tue Jul 28 21:06:39 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 21:06:39 +0000 (UTC) Subject: rpms/pulseaudio/F-11 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch, 1.1, 1.2 Message-ID: <20090728210639.4E77211C00D4@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5442 Modified Files: 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch Log Message: fix patch 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch: configure.ac | 6 ++++++ src/Makefile.am | 4 ++-- src/daemon/main.c | 23 ----------------------- 3 files changed, 8 insertions(+), 25 deletions(-) Index: 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/F-11/0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch 28 Jul 2009 20:52:33 -0000 1.1 +++ 0001-Remove-exploitable-LD_BIND_NOW-hack-CVE-2009-1894.patch 28 Jul 2009 21:06:38 -0000 1.2 @@ -1,4 +1,4 @@ -From 84200b423ebfa7e2dad9b1b65f64eac7bf3d2114 Mon Sep 17 00:00:00 2001 +From abf6dfbc625006f08fb30fef5814d0c7eb57e2ee Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= Date: Tue, 7 Jul 2009 20:51:53 +0200 Subject: [PATCH] Remove exploitable LD_BIND_NOW hack (CVE-2009-1894). @@ -15,10 +15,10 @@ Reduce the amount of compiled and execut 3 files changed, 8 insertions(+), 24 deletions(-) diff --git a/configure.ac b/configure.ac -index 9c96d1c..cc7f674 100644 +index 25cee57..690c2a8 100644 --- a/configure.ac +++ b/configure.ac -@@ -113,6 +113,12 @@ CC_CHECK_LDFLAGS([${tmp_ldflag}], +@@ -114,6 +114,12 @@ CC_CHECK_LDFLAGS([${tmp_ldflag}], [VERSIONING_LDFLAGS='-Wl,-version-script=$(srcdir)/map-file']) AC_SUBST([VERSIONING_LDFLAGS]) @@ -28,14 +28,14 @@ index 9c96d1c..cc7f674 100644 +CC_CHECK_LDFLAGS([-Wl,-z,now], [IMMEDIATE_LDFLAGS="-Wl,-z,now"]) +AC_SUBST([IMMEDIATE_LDFLAGS]) + - dnl Check for the proper way to build libraries that have no undefined - dnl symbols; on some hosts this needs to be avoided but the macro - dnl takes care of it. + dnl Check whether to build tests by default (as compile-test) or not + AC_ARG_ENABLE([default-build-tests], + AS_HELP_STRING([--disable-default-build-tests], [Build test programs only during make check])) diff --git a/src/Makefile.am b/src/Makefile.am -index 7ebf1f8..ac627c8 100644 +index 0d4f53a..413cae1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am -@@ -183,9 +183,9 @@ PREOPEN_LIBS = $(modlibexec_LTLIBRARIES) +@@ -153,9 +153,9 @@ PREOPEN_LIBS = $(modlibexec_LTLIBRARIES) endif if FORCE_PREOPEN @@ -46,12 +46,12 @@ index 7ebf1f8..ac627c8 100644 +pulseaudio_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(IMMEDIATE_LDFLAGS) -dlopen force $(foreach f,$(PREOPEN_LIBS),-dlopen $(f)) endif - ################################### + if HAVE_POLKIT diff --git a/src/daemon/main.c b/src/daemon/main.c -index eb378d2..0f6fc90 100644 +index c456e6d..4499ea3 100644 --- a/src/daemon/main.c +++ b/src/daemon/main.c -@@ -401,28 +401,6 @@ int main(int argc, char *argv[]) { +@@ -399,28 +399,6 @@ int main(int argc, char *argv[]) { pa_log_set_level(PA_LOG_NOTICE); pa_log_set_flags(PA_LOG_COLORS|PA_LOG_PRINT_FILE|PA_LOG_PRINT_LEVEL, PA_LOG_RESET); @@ -77,9 +77,9 @@ index eb378d2..0f6fc90 100644 - } -#endif - - if ((e = getenv("PULSE_PASSED_FD"))) { - passed_fd = atoi(e); - + #ifdef HAVE_GETUID + real_root = getuid() == 0; + suid_root = !real_root && geteuid() == 0; -- 1.6.3.3 From pkgdb at fedoraproject.org Tue Jul 28 21:06:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:06:30 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested commit Message-ID: <20090728210630.355EB10F889@bastion2.fedora.phx.redhat.com> hvad has requested the commit acl on perl-Tk-Stderr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:06:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:06:41 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210641.9651410F88F@bastion2.fedora.phx.redhat.com> hvad has set the commit acl on perl-Tk-Stderr (Fedora devel) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:07:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:03 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has given up commit Message-ID: <20090728210703.2523E10F890@bastion2.fedora.phx.redhat.com> hvad has given up the commit acl on perl-Tk-Stderr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:07:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:02 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210702.4FEAB10F89D@bastion2.fedora.phx.redhat.com> hvad has set the commit acl on perl-Tk-Stderr (Fedora 10) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:07:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:09 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested commit Message-ID: <20090728210709.CF1B110F89E@bastion2.fedora.phx.redhat.com> hvad has requested the commit acl on perl-Tk-Stderr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:07:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:12 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210712.DC09210F8B1@bastion2.fedora.phx.redhat.com> hvad has set the commit acl on perl-Tk-Stderr (Fedora 11) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From lennart at fedoraproject.org Tue Jul 28 21:07:42 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Tue, 28 Jul 2009 21:07:42 +0000 (UTC) Subject: rpms/pulseaudio/F-11 pulseaudio.spec,1.85,1.86 Message-ID: <20090728210742.5FEA811C00D4@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5900 Modified Files: pulseaudio.spec Log Message: bump release Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/F-11/pulseaudio.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- pulseaudio.spec 28 Jul 2009 20:52:33 -0000 1.85 +++ pulseaudio.spec 28 Jul 2009 21:07:42 -0000 1.86 @@ -3,7 +3,7 @@ Name: pulseaudio Summary: Improved Linux sound server Version: 0.9.15 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}.tar.gz @@ -466,6 +466,9 @@ groupadd -r pulse-access &>/dev/null || %{_mandir}/man1/pax11publish.1.gz %changelog +* Tue Jul 28 2009 Lennart Poettering 0.9.15-16 +- Fix up patch + * Tue Jul 28 2009 Lennart Poettering 0.9.15-15 - Fix bug 510071 From pkgdb at fedoraproject.org Tue Jul 28 21:07:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:49 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210749.CA82410F890@bastion2.fedora.phx.redhat.com> hvad has set the approveacls acl on perl-Tk-Stderr (Fedora devel) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:07:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:07:51 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has given up approveacls Message-ID: <20090728210751.79F3A10F891@bastion2.fedora.phx.redhat.com> hvad has given up the approveacls acl on perl-Tk-Stderr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:08:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:08:02 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested approveacls Message-ID: <20090728210802.B355110F897@bastion2.fedora.phx.redhat.com> hvad has requested the approveacls acl on perl-Tk-Stderr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:08:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:08:05 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210805.3F12710F890@bastion2.fedora.phx.redhat.com> hvad has set the approveacls acl on perl-Tk-Stderr (Fedora 10) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:08:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:08:11 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested approveacls Message-ID: <20090728210811.2911A10F8A1@bastion2.fedora.phx.redhat.com> hvad has requested the approveacls acl on perl-Tk-Stderr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:08:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:08:12 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090728210812.D843D10F8B1@bastion2.fedora.phx.redhat.com> hvad has set the approveacls acl on perl-Tk-Stderr (Fedora 11) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Tue Jul 28 21:09:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:09:02 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested commit Message-ID: <20090728210903.0217B10F889@bastion2.fedora.phx.redhat.com> hvad has requested the commit acl on perl-Tk-Stderr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From ajax at fedoraproject.org Tue Jul 28 21:10:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 28 Jul 2009 21:10:46 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6.30-no-pcspkr-modalias.patch, NONE, 1.1 kernel.spec, 1.1666, 1.1667 Message-ID: <20090728211046.4121711C04D6@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6971 Modified Files: kernel.spec Added Files: linux-2.6.30-no-pcspkr-modalias.patch Log Message: * Tue Jul 28 2009 Adam Jackson - Remove the pcspkr modalias. If you're still living in 1994, load it by hand. linux-2.6.30-no-pcspkr-modalias.patch: pcspkr.c | 1 - 1 file changed, 1 deletion(-) --- NEW FILE linux-2.6.30-no-pcspkr-modalias.patch --- diff -up linux-2.6.30.noarch/drivers/input/misc/pcspkr.c.jx linux-2.6.30.noarch/drivers/input/misc/pcspkr.c --- linux-2.6.30.noarch/drivers/input/misc/pcspkr.c.jx 2009-07-28 16:54:44.000000000 -0400 +++ linux-2.6.30.noarch/drivers/input/misc/pcspkr.c 2009-07-28 16:59:36.000000000 -0400 @@ -23,7 +23,6 @@ MODULE_AUTHOR("Vojtech Pavlik "); MODULE_DESCRIPTION("PC Speaker beeper driver"); MODULE_LICENSE("GPL"); -MODULE_ALIAS("platform:pcspkr"); #if defined(CONFIG_MIPS) || defined(CONFIG_X86) /* Use the global PIT lock ! */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1666 retrieving revision 1.1667 diff -u -p -r1.1666 -r1.1667 --- kernel.spec 28 Jul 2009 19:35:14 -0000 1.1666 +++ kernel.spec 28 Jul 2009 21:10:45 -0000 1.1667 @@ -628,6 +628,7 @@ Patch390: linux-2.6-defaults-acpi-video. Patch391: linux-2.6-acpi-video-dos.patch Patch450: linux-2.6-input-kill-stupid-messages.patch Patch451: linux-2.6-input-fix-toshiba-hotkeys.patch +Patch452: linux-2.6.30-no-pcspkr-modalias.patch Patch460: linux-2.6-serial-460800.patch @@ -1209,6 +1210,8 @@ ApplyPatch linux-2.6-input-kill-stupid-m # Get away from having to poll Toshibas #ApplyPatch linux-2.6-input-fix-toshiba-hotkeys.patch +ApplyPatch linux-2.6.30-no-pcspkr-modalias.patch + # Allow to use 480600 baud on 16C950 UARTs ApplyPatch linux-2.6-serial-460800.patch @@ -1903,6 +1906,10 @@ fi # and build. %changelog +* Tue Jul 28 2009 Adam Jackson +- Remove the pcspkr modalias. If you're still living in 1994, load it + by hand. + * Tue Jul 28 2009 Eric Sandeen 2.6.31-0.102.rc4.git2 - Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) From kanarip at fedoraproject.org Tue Jul 28 21:20:58 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Tue, 28 Jul 2009 21:20:58 +0000 (UTC) Subject: rpms/rubygem-actionpack/F-11 .cvsignore, 1.8, 1.9 import.log, 1.1, 1.2 rubygem-actionpack.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090728212058.3EC2711C00D4@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-actionpack/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10561/F-11 Modified Files: .cvsignore import.log rubygem-actionpack.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionpack/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 11:07:24 -0000 1.8 +++ .cvsignore 28 Jul 2009 21:20:57 -0000 1.9 @@ -1 +1 @@ -actionpack-2.3.2.gem +actionpack-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionpack/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Mar 2009 11:07:24 -0000 1.1 +++ import.log 28 Jul 2009 21:20:58 -0000 1.2 @@ -1 +1,2 @@ rubygem-actionpack-2_3_2-1_fc10:HEAD:rubygem-actionpack-2.3.2-1.fc10.src.rpm:1237201627 +rubygem-actionpack-2_3_3-1_fc11:F-11:rubygem-actionpack-2.3.3-1.fc11.src.rpm:1248815949 Index: rubygem-actionpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionpack/F-11/rubygem-actionpack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-actionpack.spec 16 Mar 2009 11:07:24 -0000 1.9 +++ rubygem-actionpack.spec 28 Jul 2009 21:20:58 -0000 1.10 @@ -6,7 +6,7 @@ Summary: Web-flow and rendering framework putting the VC in MVC Name: rubygem-%{gemname} -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionpack/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 11:07:24 -0000 1.8 +++ sources 28 Jul 2009 21:20:58 -0000 1.9 @@ -1 +1 @@ -ba24f9f1d0272a76a885203f25d176b2 actionpack-2.3.2.gem +7d60ee9499c04712ede6c747e5028390 actionpack-2.3.3.gem From pkgdb at fedoraproject.org Tue Jul 28 21:21:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:21:38 +0000 Subject: [pkgdb] python-nss: jkeating has requested watchcommits Message-ID: <20090728212138.8FA0310F88F@bastion2.fedora.phx.redhat.com> jkeating has requested the watchcommits acl on python-nss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:21:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:21:44 +0000 Subject: [pkgdb] python-nss: jkeating has requested commit Message-ID: <20090728212144.3C5A310F897@bastion2.fedora.phx.redhat.com> jkeating has requested the commit acl on python-nss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:21:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:21:48 +0000 Subject: [pkgdb] python-nss: jkeating has requested watchbugzilla Message-ID: <20090728212148.28BCE10F89F@bastion2.fedora.phx.redhat.com> jkeating has requested the watchbugzilla acl on python-nss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:22:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:22:01 +0000 Subject: [pkgdb] python-nss: jkeating has requested commit Message-ID: <20090728212201.4D93310F890@bastion2.fedora.phx.redhat.com> jkeating has requested the commit acl on python-nss (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:22:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:22:02 +0000 Subject: [pkgdb] python-nss: jkeating has requested watchcommits Message-ID: <20090728212202.ED73410F89D@bastion2.fedora.phx.redhat.com> jkeating has requested the watchcommits acl on python-nss (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:22:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:22:05 +0000 Subject: [pkgdb] python-nss: jkeating has requested watchbugzilla Message-ID: <20090728212205.AE91810F8B0@bastion2.fedora.phx.redhat.com> jkeating has requested the watchbugzilla acl on python-nss (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From spot at fedoraproject.org Tue Jul 28 21:30:50 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 28 Jul 2009 21:30:50 +0000 (UTC) Subject: rpms/R-mAr/F-10 R-mAr.spec,1.12,1.13 Message-ID: <20090728213050.D2FEA11C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R-mAr/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14001 Modified Files: R-mAr.spec Log Message: update scriptlets, adjust version to include packrel Index: R-mAr.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mAr/F-10/R-mAr.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- R-mAr.spec 14 Feb 2008 12:10:31 -0000 1.12 +++ R-mAr.spec 28 Jul 2009 21:30:50 -0000 1.13 @@ -1,13 +1,14 @@ %define packname mAr +%define packver 1.1 %define packrel 1 Summary: R module to evaluate functions for multivariate AutoRegressive analysis Name: R-%{packname} -Version: 1.1 -Release: 13%{?dist} +Version: %{packver}.%{packrel} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Engineering -Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz +Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{packver}-%{packrel}.tar.gz Source1: COPYING URL: http://cran.r-project.org/contrib BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -46,10 +47,10 @@ cd ..;%{_bindir}/R CMD check %{packname} rm -rf %{buildroot} %post -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %postun -cat %{_libdir}/R/library/*/CONTENTS > %{_libdir}/R/doc/html/search/index.txt +%{_R_make_search_index} %files %defattr(-, root, root, -) @@ -57,6 +58,16 @@ cat %{_libdir}/R/library/*/CONTENTS > %{ %changelog +* Tue Jul 28 2009 Tom "spot" Callaway - 1.1.1-16 +- update scriptlets +- adjust version to include packrel + +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 1.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Feb 14 2008 Jos? Matos - 1.1-13 - Rebuild for gcc 4.3 From pkgdb at fedoraproject.org Tue Jul 28 21:33:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:33:16 +0000 Subject: [pkgdb] python-nss (Fedora EPEL, 5) updated by tibbs Message-ID: <20090728213316.612FB10F889@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-nss tibbs has set commit to Approved for 107427 on python-nss (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-nss (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-nss (Fedora EPEL 5) tibbs changed owner of python-nss in Fedora EPEL 5 to jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:37:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:37:00 +0000 Subject: [pkgdb] perl-Parallel-ForkManager (Fedora EPEL, 5) updated by tibbs Message-ID: <20090728213700.8DF5410F85A@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Parallel-ForkManager tibbs has set commit to Approved for 107427 on perl-Parallel-ForkManager (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Parallel-ForkManager (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Parallel-ForkManager (Fedora EPEL 5) tibbs changed owner of perl-Parallel-ForkManager in Fedora EPEL 5 to tibbs tibbs approved watchbugzilla on perl-Parallel-ForkManager (Fedora EPEL 5) for gouldwp tibbs approved watchcommits on perl-Parallel-ForkManager (Fedora EPEL 5) for gouldwp tibbs approved commit on perl-Parallel-ForkManager (Fedora EPEL 5) for gouldwp tibbs approved build on perl-Parallel-ForkManager (Fedora EPEL 5) for gouldwp tibbs approved approveacls on perl-Parallel-ForkManager (Fedora EPEL 5) for gouldwp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Parallel-ForkManager From twaugh at fedoraproject.org Tue Jul 28 21:38:08 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 21:38:08 +0000 (UTC) Subject: rpms/cups/F-11 cups-cups-get-classes.patch, NONE, 1.1 cups.spec, 1.491, 1.492 Message-ID: <20090728213808.E48D311C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17267 Modified Files: cups.spec Added Files: cups-cups-get-classes.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking to CUPS 1.2 or later (bug #512866). cups-cups-get-classes.patch: dest.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) --- NEW FILE cups-cups-get-classes.patch --- diff -up cups-1.4rc1/cups/dest.c.cups-get-classes cups-1.4rc1/cups/dest.c --- cups-1.4rc1/cups/dest.c.cups-get-classes 2009-05-13 22:39:17.000000000 +0100 +++ cups-1.4rc1/cups/dest.c 2009-07-28 22:17:40.285709944 +0100 @@ -1735,6 +1735,7 @@ cups_get_sdests(http_t *http, /* I char uri[1024]; /* printer-uri value */ int num_options; /* Number of options */ cups_option_t *options; /* Options */ + int get_classes; /* Whether we need to fetch class */ #ifdef __APPLE__ char media_default[41]; /* Default paper size */ #endif /* __APPLE__ */ @@ -1791,6 +1792,8 @@ cups_get_sdests(http_t *http, /* I * printer-uri [for IPP_GET_PRINTER_ATTRIBUTES] */ + get_classes = (op == CUPS_GET_PRINTERS); + request = ippNewRequest(op); ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD, @@ -1848,6 +1851,23 @@ cups_get_sdests(http_t *http, /* I attr->value_tag != IPP_TAG_URI) continue; + if (get_classes && + + /* Is this a class? */ + ((attr->value_tag == IPP_TAG_ENUM && + !strcmp(attr->name, "printer-type") && + (attr->values[0].integer & CUPS_PRINTER_CLASS)) || + + /* Or, is this an attribute from CUPS 1.2 or later? */ + !strcmp(attr->name, "auth-info-required") || + !strncmp(attr->name, "marker-", 7) || + !strcmp(attr->name, "printer-commands") || + !strcmp(attr->name, "printer-is-shared"))) + /* We are talking to a recent enough CUPS server that + * CUPS_GET_PRINTERS returns classes as well. + */ + get_classes = 0; + if (!strcmp(attr->name, "auth-info-required") || !strcmp(attr->name, "device-uri") || !strcmp(attr->name, "marker-change-time") || @@ -1939,6 +1959,28 @@ cups_get_sdests(http_t *http, /* I continue; } + /* + * If we sent a CUPS_GET_CLASSES request, check whether + * CUPS_GET_PRINTERS already gave us this destination and exit + * early if so. + */ + + if (op == CUPS_GET_CLASSES) + { + int diff; + cups_find_dest (printer_name, NULL, num_dests, *dests, 0, &diff); + if (diff == 0) + { + /* + * Found it. The CUPS server already gave us the classes in + * its CUPS_GET_PRINTERS response. + */ + + cupsFreeOptions(num_options, options); + break; + } + } + if ((dest = cups_add_dest(printer_name, NULL, &num_dests, dests)) != NULL) { dest->num_options = num_options; @@ -1955,6 +1997,16 @@ cups_get_sdests(http_t *http, /* I } /* + * If this is a CUPS_GET_PRINTERS request but we didn't see any + * classes we might be talking to an older CUPS server that requires + * CUPS_GET_CLASSES as well. + */ + + if (get_classes) + num_dests = cups_get_sdests (http, CUPS_GET_CLASSES, name, + num_dests, dests); + + /* * Return the count... */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.491 retrieving revision 1.492 diff -u -p -r1.491 -r1.492 --- cups.spec 28 Jul 2009 16:58:02 -0000 1.491 +++ cups.spec 28 Jul 2009 21:38:08 -0000 1.492 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.11%{?dist} +Release: 0.%{pre}.12%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -59,7 +59,8 @@ Patch32: cups-str3253.patch Patch33: cups-str3266.patch Patch34: cups-str3262.patch Patch35: cups-socket-snmp.patch -Patch36: cups-avahi.patch +Patch36: cups-cups-get-classes.patch +Patch37: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -216,7 +217,8 @@ module. %patch33 -p1 -b .str3266 %patch34 -p1 -b .str3262 %patch35 -p1 -b .socket-snmp -#%patch36 -p1 -b .avahi +%patch36 -p1 -b .cups-get-classes +#%patch37 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -509,6 +511,11 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +- Cheaply restore compatibility with 1.1.x by having cups_get_sdests() + perform a CUPS_GET_CLASSES request if it is not sure it is talking + to CUPS 1.2 or later (bug #512866). + * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.11 - Temporarily added snmp option to socket backend for debugging purposes. - Prevent ipp backend looping with bad IPP devices (bug #476424, From twaugh at fedoraproject.org Tue Jul 28 21:39:42 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 28 Jul 2009 21:39:42 +0000 (UTC) Subject: rpms/cups/devel cups-cups-get-classes.patch, NONE, 1.1 cups.spec, 1.488, 1.489 Message-ID: <20090728213942.DA11F11C00D4@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17946 Modified Files: cups.spec Added Files: cups-cups-get-classes.patch Log Message: * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking to CUPS 1.2 or later (bug #512866). cups-cups-get-classes.patch: dest.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) --- NEW FILE cups-cups-get-classes.patch --- diff -up cups-1.4rc1/cups/dest.c.cups-get-classes cups-1.4rc1/cups/dest.c --- cups-1.4rc1/cups/dest.c.cups-get-classes 2009-05-13 22:39:17.000000000 +0100 +++ cups-1.4rc1/cups/dest.c 2009-07-28 22:17:40.285709944 +0100 @@ -1735,6 +1735,7 @@ cups_get_sdests(http_t *http, /* I char uri[1024]; /* printer-uri value */ int num_options; /* Number of options */ cups_option_t *options; /* Options */ + int get_classes; /* Whether we need to fetch class */ #ifdef __APPLE__ char media_default[41]; /* Default paper size */ #endif /* __APPLE__ */ @@ -1791,6 +1792,8 @@ cups_get_sdests(http_t *http, /* I * printer-uri [for IPP_GET_PRINTER_ATTRIBUTES] */ + get_classes = (op == CUPS_GET_PRINTERS); + request = ippNewRequest(op); ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD, @@ -1848,6 +1851,23 @@ cups_get_sdests(http_t *http, /* I attr->value_tag != IPP_TAG_URI) continue; + if (get_classes && + + /* Is this a class? */ + ((attr->value_tag == IPP_TAG_ENUM && + !strcmp(attr->name, "printer-type") && + (attr->values[0].integer & CUPS_PRINTER_CLASS)) || + + /* Or, is this an attribute from CUPS 1.2 or later? */ + !strcmp(attr->name, "auth-info-required") || + !strncmp(attr->name, "marker-", 7) || + !strcmp(attr->name, "printer-commands") || + !strcmp(attr->name, "printer-is-shared"))) + /* We are talking to a recent enough CUPS server that + * CUPS_GET_PRINTERS returns classes as well. + */ + get_classes = 0; + if (!strcmp(attr->name, "auth-info-required") || !strcmp(attr->name, "device-uri") || !strcmp(attr->name, "marker-change-time") || @@ -1939,6 +1959,28 @@ cups_get_sdests(http_t *http, /* I continue; } + /* + * If we sent a CUPS_GET_CLASSES request, check whether + * CUPS_GET_PRINTERS already gave us this destination and exit + * early if so. + */ + + if (op == CUPS_GET_CLASSES) + { + int diff; + cups_find_dest (printer_name, NULL, num_dests, *dests, 0, &diff); + if (diff == 0) + { + /* + * Found it. The CUPS server already gave us the classes in + * its CUPS_GET_PRINTERS response. + */ + + cupsFreeOptions(num_options, options); + break; + } + } + if ((dest = cups_add_dest(printer_name, NULL, &num_dests, dests)) != NULL) { dest->num_options = num_options; @@ -1955,6 +1997,16 @@ cups_get_sdests(http_t *http, /* I } /* + * If this is a CUPS_GET_PRINTERS request but we didn't see any + * classes we might be talking to an older CUPS server that requires + * CUPS_GET_CLASSES as well. + */ + + if (get_classes) + num_dests = cups_get_sdests (http, CUPS_GET_CLASSES, name, + num_dests, dests); + + /* * Return the count... */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.488 retrieving revision 1.489 diff -u -p -r1.488 -r1.489 --- cups.spec 28 Jul 2009 12:22:39 -0000 1.488 +++ cups.spec 28 Jul 2009 21:39:42 -0000 1.489 @@ -58,7 +58,8 @@ Patch31: cups-str3254.patch Patch32: cups-str3253.patch Patch33: cups-str3266.patch Patch34: cups-str3262.patch -Patch35: cups-avahi.patch +Patch35: cups-cups-get-classes.patch +Patch36: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -214,7 +215,8 @@ module. %patch32 -p1 -b .str3253 %patch33 -p1 -b .str3266 %patch34 -p1 -b .str3262 -#%patch35 -p1 -b .avahi +%patch35 -p1 -b .cups-get-classes +#%patch36 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -508,6 +510,9 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +- Cheaply restore compatibility with 1.1.x by having cups_get_sdests() + perform a CUPS_GET_CLASSES request if it is not sure it is talking + to CUPS 1.2 or later (bug #512866). - Prevent ipp backend looping with bad IPP devices (bug #476424, STR #3262). - Fixed Device ID reporting in the usb backend (STR #3266). From pkgdb at fedoraproject.org Tue Jul 28 21:49:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:29 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214929.AAD7510F889@bastion2.fedora.phx.redhat.com> jdennis has set the watchbugzilla acl on python-nss (Fedora devel) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:49:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:31 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214931.E6B6A10F891@bastion2.fedora.phx.redhat.com> jdennis has set the watchcommits acl on python-nss (Fedora devel) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:49:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:38 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214938.A8BE410F89D@bastion2.fedora.phx.redhat.com> jdennis has set the commit acl on python-nss (Fedora devel) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:45 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214945.8C19810F889@bastion2.fedora.phx.redhat.com> jdennis has set the watchbugzilla acl on python-nss (Fedora 11) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:49:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:48 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214948.339B710F890@bastion2.fedora.phx.redhat.com> jdennis has set the watchcommits acl on python-nss (Fedora 11) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:49:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:49:52 +0000 Subject: [pkgdb] python-nss had acl change status Message-ID: <20090728214952.3AB0910F8B0@bastion2.fedora.phx.redhat.com> jdennis has set the commit acl on python-nss (Fedora 11) to Approved for jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-nss From pkgdb at fedoraproject.org Tue Jul 28 21:51:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:32 +0000 Subject: [pkgdb] pycdio was added for jgreguske Message-ID: <20090728215132.E1AC710F890@bastion2.fedora.phx.redhat.com> ausil has added Package pycdio with summary A Python interface to the CD Input and Control library ausil has approved Package pycdio ausil has added a Fedora devel branch for pycdio with an owner of jgreguske ausil has approved pycdio in Fedora devel ausil has approved Package pycdio ausil has set commit to Approved for 107427 on pycdio (Fedora devel) ausil has set checkout to Approved for 107427 on pycdio (Fedora devel) ausil has set build to Approved for 107427 on pycdio (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From pkgdb at fedoraproject.org Tue Jul 28 21:51:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:34 +0000 Subject: [pkgdb] pycdio summary updated by ausil Message-ID: <20090728215134.A20EC10F891@bastion2.fedora.phx.redhat.com> ausil set package pycdio summary to A Python interface to the CD Input and Control library To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From pkgdb at fedoraproject.org Tue Jul 28 21:51:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:34 +0000 Subject: [pkgdb] pycdio (Fedora EPEL, 5) updated by ausil Message-ID: <20090728215134.BBA9B10F89E@bastion2.fedora.phx.redhat.com> ausil approved watchbugzilla on pycdio (Fedora devel) for ausil ausil approved watchcommits on pycdio (Fedora devel) for ausil To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From pkgdb at fedoraproject.org Tue Jul 28 21:51:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:34 +0000 Subject: [pkgdb] pycdio (Fedora EPEL, 5) updated by ausil Message-ID: <20090728215134.DB75910F8B5@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for pycdio ausil has set commit to Approved for 107427 on pycdio (Fedora 10) ausil has set checkout to Approved for 107427 on pycdio (Fedora 10) ausil has set build to Approved for 107427 on pycdio (Fedora 10) ausil approved watchbugzilla on pycdio (Fedora 10) for ausil ausil approved watchcommits on pycdio (Fedora 10) for ausil To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From pkgdb at fedoraproject.org Tue Jul 28 21:51:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:34 +0000 Subject: [pkgdb] pycdio (Fedora EPEL, 5) updated by ausil Message-ID: <20090728215134.C5F3610F8B0@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for pycdio ausil has set commit to Approved for 107427 on pycdio (Fedora 11) ausil has set checkout to Approved for 107427 on pycdio (Fedora 11) ausil has set build to Approved for 107427 on pycdio (Fedora 11) ausil approved watchbugzilla on pycdio (Fedora 11) for ausil ausil approved watchcommits on pycdio (Fedora 11) for ausil To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From ausil at fedoraproject.org Tue Jul 28 21:51:41 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 21:51:41 +0000 (UTC) Subject: rpms/pycdio/devel - New directory Message-ID: <20090728215141.546EF11C00E8@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/pycdio/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsk23066/rpms/pycdio/devel Log Message: Directory /cvs/pkgs/rpms/pycdio/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 28 21:51:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 21:51:34 +0000 Subject: [pkgdb] pycdio (Fedora EPEL, 5) updated by ausil Message-ID: <20090728215134.E541410F8B9@bastion2.fedora.phx.redhat.com> ausil added a Fedora EPEL 5 branch for pycdio ausil has set commit to Approved for 107427 on pycdio (Fedora EPEL 5) ausil has set checkout to Approved for 107427 on pycdio (Fedora EPEL 5) ausil has set build to Approved for 107427 on pycdio (Fedora EPEL 5) ausil approved watchbugzilla on pycdio (Fedora EPEL 5) for ausil ausil approved watchcommits on pycdio (Fedora EPEL 5) for ausil To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pycdio From ausil at fedoraproject.org Tue Jul 28 21:51:41 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 21:51:41 +0000 (UTC) Subject: rpms/pycdio - New directory Message-ID: <20090728215141.19BC411C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/pycdio In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsk23066/rpms/pycdio Log Message: Directory /cvs/pkgs/rpms/pycdio added to the repository From ausil at fedoraproject.org Tue Jul 28 21:51:47 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 21:51:47 +0000 (UTC) Subject: rpms/pycdio Makefile,NONE,1.1 Message-ID: <20090728215147.4308511C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/pycdio In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsk23066/rpms/pycdio Added Files: Makefile Log Message: Setup of module pycdio --- NEW FILE Makefile --- # Top level Makefile for module pycdio all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From ausil at fedoraproject.org Tue Jul 28 21:51:47 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 21:51:47 +0000 (UTC) Subject: rpms/pycdio/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090728215147.9DC9C11C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/pycdio/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsk23066/rpms/pycdio/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pycdio --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pycdio # $Id: Makefile,v 1.1 2009/07/28 21:51:47 ausil Exp $ NAME := pycdio SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From ausil at fedoraproject.org Tue Jul 28 22:15:17 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 22:15:17 +0000 (UTC) Subject: rpms/fedora-packager/devel .cvsignore, 1.8, 1.9 fedora-packager.spec, 1.11, 1.12 sources, 1.8, 1.9 Message-ID: <20090728221517.B1C8D11C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32496 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 13 Jul 2009 13:49:57 -0000 1.8 +++ .cvsignore 28 Jul 2009 22:15:17 -0000 1.9 @@ -1 +1 @@ -fedora-packager-0.3.5.tar.bz2 +fedora-packager-0.3.6.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/fedora-packager.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fedora-packager.spec 24 Jul 2009 22:37:24 -0000 1.11 +++ fedora-packager.spec 28 Jul 2009 22:15:17 -0000 1.12 @@ -1,6 +1,6 @@ Name: fedora-packager -Version: 0.3.5 -Release: 2%{?dist} +Version: 0.3.6 +Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -49,6 +49,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 +- use anon checkout when a fedora cert doesnt exist bz#514108 +- quote arguments passed onto rpmbuild bz#513269 + * Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Jul 2009 13:49:57 -0000 1.8 +++ sources 28 Jul 2009 22:15:17 -0000 1.9 @@ -1 +1 @@ -fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 +896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 From cwickert at fedoraproject.org Tue Jul 28 22:16:19 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 28 Jul 2009 22:16:19 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/F-11 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 xfce4-weather-plugin.spec, 1.18, 1.19 Message-ID: <20090728221619.E850F11C00D4@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv531/F-11 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 - Update to 0.7.2 - No longer contains weather.com logo, downloaded to cache at runtime (#513057) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 3 Jul 2009 17:15:00 -0000 1.8 +++ .cvsignore 28 Jul 2009 22:16:19 -0000 1.9 @@ -1 +1 @@ -xfce4-weather-plugin-0.7.0.tar.bz2 +xfce4-weather-plugin-0.7.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 3 Jul 2009 17:15:00 -0000 1.8 +++ sources 28 Jul 2009 22:16:19 -0000 1.9 @@ -1 +1 @@ -761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 +621bd474762475867232a968c77c5feb xfce4-weather-plugin-0.7.2.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/xfce4-weather-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-weather-plugin.spec 3 Jul 2009 17:15:00 -0000 1.18 +++ xfce4-weather-plugin.spec 28 Jul 2009 22:16:19 -0000 1.19 @@ -1,12 +1,12 @@ Name: xfce4-weather-plugin -Version: 0.7.0 +Version: 0.7.2 Release: 1%{?dist} Summary: Weather plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/0.7/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2, libxml2-devel @@ -29,7 +29,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' %find_lang %{name} @@ -61,6 +61,13 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 +- Update to 0.7.2 +- No longer contains weather.com logo, downloaded to cache at runtime (#513057) + +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 From cwickert at fedoraproject.org Tue Jul 28 22:16:20 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 28 Jul 2009 22:16:20 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/F-10 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 xfce4-weather-plugin.spec, 1.16, 1.17 Message-ID: <20090728221620.4E0F311C00D4@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv531/F-10 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 - Update to 0.7.2 - No longer contains weather.com logo, downloaded to cache at runtime (#513057) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 3 Jul 2009 17:15:00 -0000 1.8 +++ .cvsignore 28 Jul 2009 22:16:20 -0000 1.9 @@ -1 +1 @@ -xfce4-weather-plugin-0.7.0.tar.bz2 +xfce4-weather-plugin-0.7.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 3 Jul 2009 17:15:00 -0000 1.8 +++ sources 28 Jul 2009 22:16:20 -0000 1.9 @@ -1 +1 @@ -761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 +621bd474762475867232a968c77c5feb xfce4-weather-plugin-0.7.2.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/xfce4-weather-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-weather-plugin.spec 3 Jul 2009 17:15:00 -0000 1.16 +++ xfce4-weather-plugin.spec 28 Jul 2009 22:16:20 -0000 1.17 @@ -1,12 +1,12 @@ Name: xfce4-weather-plugin -Version: 0.7.0 +Version: 0.7.2 Release: 1%{?dist} Summary: Weather plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/0.7/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2, libxml2-devel @@ -29,7 +29,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' %find_lang %{name} @@ -61,6 +61,13 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 +- Update to 0.7.2 +- No longer contains weather.com logo, downloaded to cache at runtime (#513057) + +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 From agk at fedoraproject.org Tue Jul 28 22:22:37 2009 From: agk at fedoraproject.org (agk) Date: Tue, 28 Jul 2009 22:22:37 +0000 (UTC) Subject: rpms/lvm2/devel lvm2.spec,1.163,1.164 Message-ID: <20090728222237.B6D7311C00D4@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937 Modified Files: lvm2.spec Log Message: New upstream with a few bug fixes plus the first version of an application library for LVM2. The API is not yet frozen. Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.163 retrieving revision 1.164 diff -u -p -r1.163 -r1.164 --- lvm2.spec 25 Jul 2009 11:29:18 -0000 1.163 +++ lvm2.spec 28 Jul 2009 22:22:37 -0000 1.164 @@ -1,4 +1,4 @@ -%define device_mapper_version 1.02.34 +%define device_mapper_version 1.02.35 %define corosync_version 1.0.0-1 %define clusterlib_version 3.0.0-20 @@ -7,8 +7,8 @@ Summary: Userland logical volume management tools Name: lvm2 -Version: 2.02.49 -Release: 2%{?dist} +Version: 2.02.50 +Release: 1%{?dist} License: GPLv2 Group: System Environment/Base URL: http://sources.redhat.com/lvm2 @@ -48,7 +48,7 @@ or more physical volumes and creating on %define _sbindir /sbin %define _libdir /%{_lib} -%configure --enable-lvm1_fallback --enable-fsadm --with-clvmd=corosync --with-cluster=internal --with-pool=internal --with-user= --with-group= --with-dmdir=device-mapper.%{device_mapper_version} --with-usrlibdir=/usr/%{_lib} --with-usrsbindir=/usr/sbin --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig +%configure --enable-lvm1_fallback --enable-fsadm --with-clvmd=corosync --with-cluster=internal --with-pool=internal --with-user= --with-group= --with-usrlibdir=/usr/%{_lib} --with-usrsbindir=/usr/sbin --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig --enable-applib --enable-cmdlib make %{?_smp_mflags} %install @@ -62,6 +62,7 @@ install -m 0600 /dev/null $RPM_BUILD_ROO mkdir -p -m755 $RPM_BUILD_ROOT/etc/rc.d/init.d install scripts/clvmd_init_red_hat $RPM_BUILD_ROOT/etc/rc.d/init.d/clvmd install -m 0755 scripts/lvmconf.sh $RPM_BUILD_ROOT/sbin/lvmconf +mv $RPM_BUILD_ROOT/usr/include/lvm.h $RPM_BUILD_ROOT/usr/include/lvm2app.h %clean rm -rf $RPM_BUILD_ROOT @@ -169,6 +170,45 @@ rm -rf $RPM_BUILD_ROOT %dir /var/lock/lvm ############################################################################## +# Library and Development subpackages +############################################################################## +%package devel +Summary: Development libraries and headers +Group: Development/Libraries +License: LGPLv2 +Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} +Requires: pkgconfig + +%description devel +This package contains files needed to develop applications that use +the lvm2 libraries. + +%files devel +%defattr(-,root,root,-) +%attr(755,root,root) /%{_lib}/liblvm2app.so +%attr(755,root,root) /%{_lib}/liblvm2cmd.so +%{_includedir}/lvm2app.h +%{_includedir}/lvm2cmd.h +/usr%{_libdir}/pkgconfig/liblvm2app.pc + +%package libs +Summary: lvm2 shared libraries +License: LGPLv2 +Group: System Environment/Libraries + +%description libs +This package contains shared lvm2 libraries for applications. + +%post libs -p /sbin/ldconfig + +%postun libs -p /sbin/ldconfig + +%files libs +%attr(755,root,root) /%{_lib}/liblvm2app.so.* +%attr(755,root,root) /%{_lib}/liblvm2cmd.so.* + +############################################################################## # Cluster subpackage ############################################################################## %package cluster @@ -244,7 +284,7 @@ the device-mapper libraries. %defattr(-,root,root,-) %attr(755,root,root) /%{_lib}/libdevmapper.so %{_includedir}/libdevmapper.h -/usr%{_libdir}/pkgconfig/*.pc +/usr%{_libdir}/pkgconfig/devmapper.pc %package -n device-mapper-libs Summary: Device-mapper shared library @@ -266,6 +306,18 @@ This package contains the device-mapper %changelog +* Tue Jul 28 2009 Alasdair Kergon - 2.02.50-1 +- Add libs and devel subpackages to include shared libraries for applications. + N.B. The liblvm2app API is not frozen yet and may still be changed + Send any feedback to the mailing list lvm-devel at redhat.com. +- Remove obsolete --with-dmdir from configure. +- Add global/wait_for_locks to lvm.conf so blocking for locks can be disabled. +- Fix race condition with vgcreate and vgextend on same device since 2.02.49. +- Add an API version number, LVM_LIBAPI, to the VERSION string. +- Return EINVALID_CMD_LINE not success when invalid VG name format is used. +- Remove unnecessary messages after vgcreate/vgsplit code change in 2.02.49. +- Store any errno and error messages issued while processing each command. + * Sat Jul 25 2009 Fedora Release Engineering - 2.02.49-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From agk at fedoraproject.org Tue Jul 28 22:24:12 2009 From: agk at fedoraproject.org (agk) Date: Tue, 28 Jul 2009 22:24:12 +0000 (UTC) Subject: rpms/lvm2/devel LVM2.2.02.50.tgz.asc, NONE, 1.1 .cvsignore, 1.68, 1.69 sources, 1.73, 1.74 upstream, 1.61, 1.62 LVM2.2.02.49.tgz.asc, 1.2, NONE Message-ID: <20090728222412.DD65811C00D4@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3472 Modified Files: .cvsignore sources upstream Added Files: LVM2.2.02.50.tgz.asc Removed Files: LVM2.2.02.49.tgz.asc Log Message: new upstream --- NEW FILE LVM2.2.02.50.tgz.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQBKb2MYIoGRwVZ+LBcRApwQAKDCckDKN8J1QJrCUzk08fpynGuSbQCggi1R AenAT/Rf+iPIgE3nN1nvlFw= =nUqi -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/.cvsignore,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- .cvsignore 15 Jul 2009 16:29:49 -0000 1.68 +++ .cvsignore 28 Jul 2009 22:24:12 -0000 1.69 @@ -1 +1,2 @@ LVM2.2.02.49.tgz +LVM2.2.02.50.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 15 Jul 2009 17:32:51 -0000 1.73 +++ sources 28 Jul 2009 22:24:12 -0000 1.74 @@ -1 +1,2 @@ ae49c161e7533c8e33b669c80154bd46 LVM2.2.02.49.tgz +29b75848a56a8ddcc7395d3282eb8499 LVM2.2.02.50.tgz Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/upstream,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- upstream 15 Jul 2009 16:29:49 -0000 1.61 +++ upstream 28 Jul 2009 22:24:12 -0000 1.62 @@ -1 +1 @@ -LVM2.2.02.49.tgz +LVM2.2.02.50.tgz --- LVM2.2.02.49.tgz.asc DELETED --- From ausil at fedoraproject.org Tue Jul 28 22:27:38 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 22:27:38 +0000 (UTC) Subject: rpms/fedora-packager/EL-5 .cvsignore, 1.5, 1.6 fedora-packager.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090728222738.1049111C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4321 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 13 Jul 2009 14:02:20 -0000 1.5 +++ .cvsignore 28 Jul 2009 22:27:37 -0000 1.6 @@ -1 +1 @@ -fedora-packager-0.3.5.tar.bz2 +fedora-packager-0.3.6.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/fedora-packager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fedora-packager.spec 13 Jul 2009 14:02:20 -0000 1.8 +++ fedora-packager.spec 28 Jul 2009 22:27:37 -0000 1.9 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.5 +Version: 0.3.6 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 +- use anon checkout when a fedora cert doesnt exist bz#514108 +- quote arguments passed onto rpmbuild bz#513269 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 13 Jul 2009 14:02:20 -0000 1.6 +++ sources 28 Jul 2009 22:27:37 -0000 1.7 @@ -1 +1 @@ -fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 +896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 From ausil at fedoraproject.org Tue Jul 28 22:30:49 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 22:30:49 +0000 (UTC) Subject: rpms/fedora-packager/F-10 .cvsignore, 1.7, 1.8 fedora-packager.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090728223049.2D89F11C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6228 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Jul 2009 13:59:07 -0000 1.7 +++ .cvsignore 28 Jul 2009 22:30:48 -0000 1.8 @@ -1 +1 @@ -fedora-packager-0.3.5.tar.bz2 +fedora-packager-0.3.6.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/fedora-packager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fedora-packager.spec 13 Jul 2009 13:59:07 -0000 1.8 +++ fedora-packager.spec 28 Jul 2009 22:30:48 -0000 1.9 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.5 +Version: 0.3.6 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 +- use anon checkout when a fedora cert doesnt exist bz#514108 +- quote arguments passed onto rpmbuild bz#513269 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Jul 2009 13:59:07 -0000 1.8 +++ sources 28 Jul 2009 22:30:48 -0000 1.9 @@ -1 +1 @@ -fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 +896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 From mathstuf at fedoraproject.org Tue Jul 28 22:31:21 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Tue, 28 Jul 2009 22:31:21 +0000 (UTC) Subject: rpms/libinfinity/F-11 libinfinity.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090728223121.51D3B11C00D4@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libinfinity/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6495 Modified Files: sources Added Files: libinfinity.spec Log Message: Initial build for F-11 --- NEW FILE libinfinity.spec --- Name: libinfinity Version: 0.3.0 Release: 3%{?dist} Summary: Library implementing the infinote protocol Group: System Environment/Libraries License: LGPLv2+ URL: http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity Source0: http://releases.0x539.de/libinfinity/libinfinity-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: avahi-devel BuildRequires: glib2-devel BuildRequires: gnutls-devel BuildRequires: libxml2-devel BuildRequires: libgsasl-devel BuildRequires: gtk-doc BuildRequires: chrpath BuildRequires: gettext BuildRequires: gtk2-devel %description Libinfinity is used in the collaborative editing tool Kobby. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: avahi-devel Requires: glib2-devel Requires: gnutls-devel Requires: libxml2-devel Requires: libgsasl-devel %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package gtk Summary: GTK widgets for libinfinity Group: System Environment/Libraries %description gtk Widgets and dialogs for libinfinity in GTK2. %package gtk-devel Summary: Development files for %{name}-gtk Group: Development/Libraries Requires: %{name}-gtk = %{version}-%{release} Requires: pkgconfig Requires: libinfinity-devel Requires: gtk2-devel %description gtk-devel The %{name}-gtk-devel package contains libraries and header files for developing applications that use %{name}-gtk. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for the %{name} libraries. %package -n infinoted Summary: Server for the infinote protocol Group: System Environment/Daemons %description -n infinoted Server daemon for the infinote protocol. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} %find_lang %{name}-0.3 find %{buildroot} -name '*.la' -exec rm -f {} ';' chrpath -d %{buildroot}%{_bindir}/infinoted-0.3 chrpath -d %{buildroot}%{_libdir}/infinoted-0.3/note-plugins/libinfd-note-plugin-text.so chrpath -d %{buildroot}%{_libdir}/libinftext-0.3.so.0.0.0 chrpath -d %{buildroot}%{_libdir}/libinfgtk-0.3.so.0.0.0 chrpath -d %{buildroot}%{_libdir}/libinftextgtk-0.3.so.0.0.0 %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %files -f %{name}-0.3.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING %{_libdir}/libinfinity-0.3.so.0 %{_libdir}/libinfinity-0.3.so.0.0.0 %{_libdir}/libinftext-0.3.so.0 %{_libdir}/libinftext-0.3.so.0.0.0 %{_datadir}/icons/hicolor/*/apps/infinote.* %files devel %defattr(-,root,root,-) %{_includedir}/libinfinity-0.3/ %{_includedir}/libinftext-0.3/ %{_libdir}/libinfinity-0.3.so %{_libdir}/libinftext-0.3.so %{_libdir}/pkgconfig/libinfinity-0.3.pc %{_libdir}/pkgconfig/libinftext-0.3.pc %files gtk %defattr(-,root,root,-) %{_libdir}/libinfgtk-0.3.so.0 %{_libdir}/libinfgtk-0.3.so.0.0.0 %{_libdir}/libinftextgtk-0.3.so.0 %{_libdir}/libinftextgtk-0.3.so.0.0.0 %files gtk-devel %defattr(-,root,root,-) %{_includedir}/libinfgtk-0.3/ %{_includedir}/libinftextgtk-0.3/ %{_libdir}/libinfgtk-0.3.so %{_libdir}/libinftextgtk-0.3.so %{_libdir}/pkgconfig/libinfgtk-0.3.pc %{_libdir}/pkgconfig/libinftextgtk-0.3.pc %files doc %defattr(-,root,root,-) %{_datadir}/gtk-doc/html/libinfgtk-0.3/ %{_datadir}/gtk-doc/html/libinfinity-0.3/ %{_datadir}/gtk-doc/html/libinftext-0.3/ %{_datadir}/gtk-doc/html/libinftextgtk-0.3/ %files -n infinoted %defattr(-,root,root,-) %{_bindir}/infinoted-0.3 %{_libdir}/infinoted-0.3/note-plugins/libinfd-note-plugin-text.so %changelog * Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sun Jun 21 2009 Ben Boeckel 0.3.0-2 - Build everything (added gettext, avahi-devel, and gtk2-devel) - Add gtk sub-packages * Sat Jun 20 2009 Ben Boeckel 0.3.0-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libinfinity/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 25 Jun 2009 20:12:28 -0000 1.1 +++ sources 28 Jul 2009 22:31:21 -0000 1.2 @@ -0,0 +1 @@ +28d87a8d47ccc55480a862fc21fe7b95 libinfinity-0.3.0.tar.gz From ausil at fedoraproject.org Tue Jul 28 22:31:26 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 28 Jul 2009 22:31:26 +0000 (UTC) Subject: rpms/fedora-packager/F-11 .cvsignore, 1.7, 1.8 fedora-packager.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090728223126.601AA11C00D4@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6506 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Jul 2009 13:57:56 -0000 1.7 +++ .cvsignore 28 Jul 2009 22:31:26 -0000 1.8 @@ -1 +1 @@ -fedora-packager-0.3.5.tar.bz2 +fedora-packager-0.3.6.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/fedora-packager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fedora-packager.spec 13 Jul 2009 13:57:56 -0000 1.9 +++ fedora-packager.spec 28 Jul 2009 22:31:26 -0000 1.10 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.5 +Version: 0.3.6 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 +- use anon checkout when a fedora cert doesnt exist bz#514108 +- quote arguments passed onto rpmbuild bz#513269 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Jul 2009 13:57:56 -0000 1.8 +++ sources 28 Jul 2009 22:31:26 -0000 1.9 @@ -1 +1 @@ -fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 +896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 From cwickert at fedoraproject.org Tue Jul 28 22:06:18 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 28 Jul 2009 22:06:18 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/devel .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 xfce4-weather-plugin.spec, 1.20, 1.21 Message-ID: <20090728220618.2AC4911C00D4@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29302 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 - Update to 0.7.2 - No longer contains weather.com logo, downloaded to cache at runtime (#513057) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 3 Jul 2009 16:57:46 -0000 1.8 +++ .cvsignore 28 Jul 2009 22:06:17 -0000 1.9 @@ -1 +1 @@ -xfce4-weather-plugin-0.7.0.tar.bz2 +xfce4-weather-plugin-0.7.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 3 Jul 2009 16:57:46 -0000 1.8 +++ sources 28 Jul 2009 22:06:17 -0000 1.9 @@ -1 +1 @@ -761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 +621bd474762475867232a968c77c5feb xfce4-weather-plugin-0.7.2.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/xfce4-weather-plugin.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xfce4-weather-plugin.spec 27 Jul 2009 07:58:00 -0000 1.20 +++ xfce4-weather-plugin.spec 28 Jul 2009 22:06:17 -0000 1.21 @@ -1,12 +1,12 @@ Name: xfce4-weather-plugin -Version: 0.7.0 -Release: 2%{?dist} +Version: 0.7.2 +Release: 1%{?dist} Summary: Weather plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/0.7/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2, libxml2-devel @@ -29,7 +29,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' %find_lang %{name} @@ -61,6 +61,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Tue Jul 28 2009 Christoph Wickert - 0.7.2-1 +- Update to 0.7.2 +- No longer contains weather.com logo, downloaded to cache at runtime (#513057) + * Mon Jul 27 2009 Fedora Release Engineering - 0.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From liquidat at fedoraproject.org Tue Jul 28 22:41:54 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Tue, 28 Jul 2009 22:41:54 +0000 (UTC) Subject: rpms/rsibreak/devel .cvsignore, 1.4, 1.5 rsibreak.spec, 1.17, 1.18 sources, 1.4, 1.5 Message-ID: <20090728224154.8E5F711C00D4@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/extras/rpms/rsibreak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11485 Modified Files: .cvsignore rsibreak.spec sources Log Message: Update to version 0.10. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsibreak/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Jan 2009 21:34:49 -0000 1.4 +++ .cvsignore 28 Jul 2009 22:41:54 -0000 1.5 @@ -1 +1 @@ -rsibreak-0.9.0.tar.bz2 +rsibreak-0.10.tar.bz2 Index: rsibreak.spec =================================================================== RCS file: /cvs/extras/rpms/rsibreak/devel/rsibreak.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- rsibreak.spec 27 Jul 2009 03:15:49 -0000 1.17 +++ rsibreak.spec 28 Jul 2009 22:41:54 -0000 1.18 @@ -1,15 +1,12 @@ Name: rsibreak -Version: 0.9.0 -Release: 11%{?dist} +Version: 0.10 +Release: 1%{?dist} Summary: A small utility which bothers you at certain intervals Group: Amusements/Graphics License: GPLv2+ URL: http://www.rsibreak.org Source0: http://rsibreak.org/files/rsibreak-%{version}.tar.bz2 -# Patch to build against KDE 4.2, by Scott Kitterman from Kubuntu -Patch0: rsibreak-0.9.0-cmake-find-plasma.patch -Patch1: rsibreak-0.9.0-memory-leak.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -24,8 +21,6 @@ This can help people to prevent Repetive %prep %setup -q -%patch0 -p1 -b .find-plasma -%patch1 -p1 -b .graywidget %build mkdir -p %{_target_platform} @@ -79,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/kde4/plasma_applet_rsibreak.so %changelog +* Wed Jul 29 2009 Roland Wolters - 0.10-1 +- Update to upstream version 0.10 + * Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsibreak/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Jan 2009 21:34:49 -0000 1.4 +++ sources 28 Jul 2009 22:41:54 -0000 1.5 @@ -1 +1 @@ -cf1e35c1b7d419559298a7fb5d1232be rsibreak-0.9.0.tar.bz2 +3dc6e4d78f60518c82c7bb1006bd0cbc rsibreak-0.10.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 22:43:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:43:25 +0000 Subject: [pkgdb] msv ownership updated Message-ID: <20090728224325.63FBE10F89F@bastion2.fedora.phx.redhat.com> Package msv in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/msv From pkgdb at fedoraproject.org Tue Jul 28 22:43:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:43:29 +0000 Subject: [pkgdb] msv ownership updated Message-ID: <20090728224329.858EB10F8B0@bastion2.fedora.phx.redhat.com> Package msv in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/msv From pkgdb at fedoraproject.org Tue Jul 28 22:44:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:44:06 +0000 Subject: [pkgdb] jline ownership updated Message-ID: <20090728224406.7B37D10F889@bastion2.fedora.phx.redhat.com> Package jline in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Tue Jul 28 22:44:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:44:46 +0000 Subject: [pkgdb] junitperf ownership updated Message-ID: <20090728224446.9905B10F88F@bastion2.fedora.phx.redhat.com> Package junitperf in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/junitperf From pkgdb at fedoraproject.org Tue Jul 28 22:44:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:44:56 +0000 Subject: [pkgdb] junitperf ownership updated Message-ID: <20090728224456.1544910F889@bastion2.fedora.phx.redhat.com> Package junitperf in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/junitperf From pkgdb at fedoraproject.org Tue Jul 28 22:45:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:45:24 +0000 Subject: [pkgdb] plexus-container-default ownership updated Message-ID: <20090728224525.0DB3D10F889@bastion2.fedora.phx.redhat.com> Package plexus-container-default in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-container-default From pkgdb at fedoraproject.org Tue Jul 28 22:45:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:45:27 +0000 Subject: [pkgdb] plexus-container-default ownership updated Message-ID: <20090728224527.752B510F89F@bastion2.fedora.phx.redhat.com> Package plexus-container-default in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-container-default From pkgdb at fedoraproject.org Tue Jul 28 22:45:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:45:48 +0000 Subject: [pkgdb] plexus-interactivity ownership updated Message-ID: <20090728224548.33CEC10F889@bastion2.fedora.phx.redhat.com> Package plexus-interactivity in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-interactivity From pkgdb at fedoraproject.org Tue Jul 28 22:45:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:45:50 +0000 Subject: [pkgdb] plexus-interactivity ownership updated Message-ID: <20090728224550.BED9B10F891@bastion2.fedora.phx.redhat.com> Package plexus-interactivity in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-interactivity From pkgdb at fedoraproject.org Tue Jul 28 22:46:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:46:16 +0000 Subject: [pkgdb] plexus-velocity ownership updated Message-ID: <20090728224616.D84A710F890@bastion2.fedora.phx.redhat.com> Package plexus-velocity in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-velocity From pkgdb at fedoraproject.org Tue Jul 28 22:46:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:46:19 +0000 Subject: [pkgdb] plexus-velocity ownership updated Message-ID: <20090728224619.65BBA10F85A@bastion2.fedora.phx.redhat.com> Package plexus-velocity in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/plexus-velocity From pkgdb at fedoraproject.org Tue Jul 28 22:48:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:48:06 +0000 Subject: [pkgdb] perl-LWP-Authen-Wsse ownership updated Message-ID: <20090728224806.A21A310F88F@bastion2.fedora.phx.redhat.com> Package perl-LWP-Authen-Wsse in Fedora devel is now owned by cweyl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-LWP-Authen-Wsse From pkgdb at fedoraproject.org Tue Jul 28 22:48:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:48:14 +0000 Subject: [pkgdb] perl-LWP-Authen-Wsse ownership updated Message-ID: <20090728224814.C63E010F897@bastion2.fedora.phx.redhat.com> Package perl-LWP-Authen-Wsse in Fedora 11 is now owned by cweyl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-LWP-Authen-Wsse From pkgdb at fedoraproject.org Tue Jul 28 22:48:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:48:56 +0000 Subject: [pkgdb] perl-Text-CHM ownership updated Message-ID: <20090728224856.38EF510F891@bastion2.fedora.phx.redhat.com> Package perl-Text-CHM in Fedora 11 is now owned by cweyl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Text-CHM From pkgdb at fedoraproject.org Tue Jul 28 22:49:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:49:02 +0000 Subject: [pkgdb] perl-Text-CHM ownership updated Message-ID: <20090728224903.0667710F89E@bastion2.fedora.phx.redhat.com> Package perl-Text-CHM in Fedora devel is now owned by cweyl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Text-CHM From pkgdb at fedoraproject.org Tue Jul 28 22:59:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 22:59:45 +0000 Subject: [pkgdb] gnubiff ownership updated Message-ID: <20090728225945.2015F10F85A@bastion2.fedora.phx.redhat.com> Package gnubiff in Fedora 11 is now owned by fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnubiff From bskeggs at fedoraproject.org Tue Jul 28 23:02:45 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Tue, 28 Jul 2009 23:02:45 +0000 (UTC) Subject: rpms/xorg-x11-server/F-11 xorg-x11-server.spec, 1.453, 1.454 xserver-1.6.1-nouveau.patch, 1.3, 1.4 Message-ID: <20090728230245.D5A0011C00D4@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20931 Modified Files: xorg-x11-server.spec xserver-1.6.1-nouveau.patch Log Message: * Wed Jul 29 2009 Ben Skeggs 1.6.2-3 - Fix nouveau autoconfig patch (rh#512851) Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/xorg-x11-server.spec,v retrieving revision 1.453 retrieving revision 1.454 diff -u -p -r1.453 -r1.454 --- xorg-x11-server.spec 10 Jul 2009 14:30:33 -0000 1.453 +++ xorg-x11-server.spec 28 Jul 2009 23:02:45 -0000 1.454 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.2 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -532,6 +532,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Ben Skeggs 1.6.2-3 +- Fix nouveau autoconfig patch (rh#512851) + * Fri Jul 10 2009 Lubomir Rintel 1.6.2-2 - Add vboxvideo driver to the autodetection routine xserver-1.6.1-nouveau.patch: glx/glxdri.c | 7 +++++-- glx/glxdri2.c | 7 +++++-- hw/xfree86/common/xf86AutoConfig.c | 28 ++++++++++++++++++++++++++-- 3 files changed, 36 insertions(+), 6 deletions(-) Index: xserver-1.6.1-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/xserver-1.6.1-nouveau.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xserver-1.6.1-nouveau.patch 11 Jun 2009 05:40:29 -0000 1.3 +++ xserver-1.6.1-nouveau.patch 28 Jul 2009 23:02:45 -0000 1.4 @@ -78,7 +78,7 @@ diff --git a/hw/xfree86/common/xf86AutoC index 19c06c8..e40551e 100644 --- a/hw/xfree86/common/xf86AutoConfig.c +++ b/hw/xfree86/common/xf86AutoConfig.c -@@ -181,7 +181,31 @@ videoPtrToDriverList(struct pci_device *dev, +@@ -181,7 +181,32 @@ videoPtrToDriverList(struct pci_device *dev, case 0x102b: driverList[0] = "mga"; break; case 0x10c8: driverList[0] = "neomagic"; break; case 0x105d: driverList[0] = "i128"; break; @@ -108,6 +108,7 @@ index 19c06c8..e40551e 100644 + } + break; + } ++ break; case 0x1163: driverList[0] = "rendition"; break; case 0x5333: switch (dev->device_id) From bioinfornatics at fedoraproject.org Tue Jul 28 23:03:32 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Tue, 28 Jul 2009 23:03:32 +0000 (UTC) Subject: rpms/valide/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 valide.spec, 1.5, 1.6 Message-ID: <20090728230332.0629211C00D4@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21232 Modified Files: .cvsignore sources valide.spec Log Message: Update valide to revision 303 and add require for devel package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 Jul 2009 17:14:13 -0000 1.4 +++ .cvsignore 28 Jul 2009 23:03:31 -0000 1.5 @@ -1 +1 @@ -valide-20090720svn291.tar.gz +valide-20090726svn303.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 Jul 2009 17:14:13 -0000 1.4 +++ sources 28 Jul 2009 23:03:31 -0000 1.5 @@ -1 +1 @@ -ed9402d7d6bec482c3aab41085e1fcd1 valide-20090720svn291.tar.gz +329917c1606c6f655288006a707a19f7 valide-20090726svn303.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- valide.spec 27 Jul 2009 06:43:20 -0000 1.5 +++ valide.spec 28 Jul 2009 23:03:31 -0000 1.6 @@ -1,12 +1,12 @@ -%global alphatag 20090720 -%global svn_revision svn291 +%global alphatag 20090726 +%global svn_revision svn303 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 291 http://valide.googlecode.com/svn/trunk/ valide-20090720svn291 -# tar -czvf valide-20090720svn291.tar.gz valide-20090720svn291 +# svn export -r 303 http://valide.googlecode.com/svn/trunk/ valide-20090726svn303 +# tar -czvf valide-20090726svn303.tar.gz valide-20090726svn303 Name: valide Version: 0.5.1 @@ -34,6 +34,8 @@ the Vala programming language. Summary: Support for developing plugins for the Val(a)IDE Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: gtk2-devel >= %{gtk2_version} +Requires: sqlite-devel, unique-devel, gtksourceview2-devel, glib-devel %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. @@ -106,8 +108,9 @@ fi %{_libdir}/libvalide-*.so %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-0.15.20090720svn291 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Jonathan MERCIER 0.5.1-0.15.20090726svn303 +- Update valide to revision 303 +- Add require for devel package * Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 - Update valide to revision 291 From bioinfornatics at fedoraproject.org Tue Jul 28 23:11:34 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Tue, 28 Jul 2009 23:11:34 +0000 (UTC) Subject: rpms/valide/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 valide.spec, 1.4, 1.5 Message-ID: <20090728231134.BF46A11C00D4@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24210 Modified Files: .cvsignore sources valide.spec Log Message: Update valide to revision 303 and add require for devel package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 Jul 2009 17:50:34 -0000 1.4 +++ .cvsignore 28 Jul 2009 23:11:34 -0000 1.5 @@ -1 +1 @@ -valide-20090720svn291.tar.gz +valide-20090726svn303.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 Jul 2009 17:50:34 -0000 1.4 +++ sources 28 Jul 2009 23:11:34 -0000 1.5 @@ -1 +1 @@ -ed9402d7d6bec482c3aab41085e1fcd1 valide-20090720svn291.tar.gz +329917c1606c6f655288006a707a19f7 valide-20090726svn303.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/valide.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- valide.spec 20 Jul 2009 17:50:34 -0000 1.4 +++ valide.spec 28 Jul 2009 23:11:34 -0000 1.5 @@ -1,16 +1,16 @@ -%global alphatag 20090720 -%global svn_revision svn291 +%global alphatag 20090726 +%global svn_revision svn303 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 291 http://valide.googlecode.com/svn/trunk/ valide-20090720svn291 -# tar -czvf valide-20090720svn291.tar.gz valide-20090720svn291 +# svn export -r 303 http://valide.googlecode.com/svn/trunk/ valide-20090726svn303 +# tar -czvf valide-20090726svn303.tar.gz valide-20090726svn303 Name: valide Version: 0.5.1 -Release: 0.14.%{alphatag}%{svn_revision}%{?dist} +Release: 0.15.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -34,6 +34,8 @@ the Vala programming language. Summary: Support for developing plugins for the Val(a)IDE Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: gtk2-devel >= %{gtk2_version} +Requires: sqlite-devel, unique-devel, gtksourceview2-devel, glib-devel %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. @@ -106,6 +108,10 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 28 2009 Jonathan MERCIER 0.5.1-0.15.20090726svn303 +- Update valide to revision 303 +- Add require for devel package + * Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 - Update valide to revision 291 From liquidat at fedoraproject.org Tue Jul 28 23:15:10 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Tue, 28 Jul 2009 23:15:10 +0000 (UTC) Subject: rpms/rsibreak/F-11 .cvsignore, 1.4, 1.5 rsibreak.spec, 1.16, 1.17 sources, 1.4, 1.5 Message-ID: <20090728231510.C7D4C11C00D4@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/extras/rpms/rsibreak/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25509 Modified Files: .cvsignore rsibreak.spec sources Log Message: Update to version 0.10. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Jan 2009 21:34:49 -0000 1.4 +++ .cvsignore 28 Jul 2009 23:15:10 -0000 1.5 @@ -1 +1 @@ -rsibreak-0.9.0.tar.bz2 +rsibreak-0.10.tar.bz2 Index: rsibreak.spec =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-11/rsibreak.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- rsibreak.spec 26 Feb 2009 20:42:03 -0000 1.16 +++ rsibreak.spec 28 Jul 2009 23:15:10 -0000 1.17 @@ -1,15 +1,12 @@ Name: rsibreak -Version: 0.9.0 -Release: 10%{?dist} +Version: 0.10 +Release: 1%{?dist} Summary: A small utility which bothers you at certain intervals Group: Amusements/Graphics License: GPLv2+ URL: http://www.rsibreak.org Source0: http://rsibreak.org/files/rsibreak-%{version}.tar.bz2 -# Patch to build against KDE 4.2, by Scott Kitterman from Kubuntu -Patch0: rsibreak-0.9.0-cmake-find-plasma.patch -Patch1: rsibreak-0.9.0-memory-leak.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -24,8 +21,6 @@ This can help people to prevent Repetive %prep %setup -q -%patch0 -p1 -b .find-plasma -%patch1 -p1 -b .graywidget %build mkdir -p %{_target_platform} @@ -79,6 +74,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/kde4/plasma_applet_rsibreak.so %changelog +* Wed Jul 29 2009 Roland Wolters - 0.10-1 +- Update to upstream version 0.10 + +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Artem S. Tashkinov 0.9.0-10 - trunk fix for memory leak Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Jan 2009 21:34:49 -0000 1.4 +++ sources 28 Jul 2009 23:15:10 -0000 1.5 @@ -1 +1 @@ -cf1e35c1b7d419559298a7fb5d1232be rsibreak-0.9.0.tar.bz2 +3dc6e4d78f60518c82c7bb1006bd0cbc rsibreak-0.10.tar.bz2 From liquidat at fedoraproject.org Tue Jul 28 23:16:07 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Tue, 28 Jul 2009 23:16:07 +0000 (UTC) Subject: rpms/rsibreak/F-10 .cvsignore, 1.4, 1.5 rsibreak.spec, 1.16, 1.17 sources, 1.4, 1.5 Message-ID: <20090728231607.47CFA11C00D4@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/extras/rpms/rsibreak/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25949 Modified Files: .cvsignore rsibreak.spec sources Log Message: Update to version 0.10. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 Nov 2008 00:54:56 -0000 1.4 +++ .cvsignore 28 Jul 2009 23:16:06 -0000 1.5 @@ -1 +1 @@ -rsibreak-0.9.0.tar.bz2 +rsibreak-0.10.tar.bz2 Index: rsibreak.spec =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-10/rsibreak.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- rsibreak.spec 26 Feb 2009 20:35:13 -0000 1.16 +++ rsibreak.spec 28 Jul 2009 23:16:07 -0000 1.17 @@ -1,15 +1,12 @@ Name: rsibreak -Version: 0.9.0 -Release: 10%{?dist} +Version: 0.10 +Release: 1%{?dist} Summary: A small utility which bothers you at certain intervals Group: Amusements/Graphics License: GPLv2+ URL: http://www.rsibreak.org Source0: http://rsibreak.org/files/rsibreak-%{version}.tar.bz2 -# Patch to build against KDE 4.2, by Scott Kitterman from Kubuntu -Patch0: rsibreak-0.9.0-cmake-find-plasma.patch -Patch1: rsibreak-0.9.0-memory-leak.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -24,8 +21,6 @@ This can help people to prevent Repetive %prep %setup -q -%patch0 -p1 -b .find-plasma -%patch1 -p1 -b .graywidget %build mkdir -p %{_target_platform} @@ -79,6 +74,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/kde4/plasma_applet_rsibreak.so %changelog +* Wed Jul 29 2009 Roland Wolters - 0.10-1 +- Update to upstream version 0.10 + +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Artem S. Tashkinov 0.9.0-10 - trunk fix for memory leak Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsibreak/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 28 Nov 2008 00:54:56 -0000 1.4 +++ sources 28 Jul 2009 23:16:07 -0000 1.5 @@ -1 +1 @@ -cf1e35c1b7d419559298a7fb5d1232be rsibreak-0.9.0.tar.bz2 +3dc6e4d78f60518c82c7bb1006bd0cbc rsibreak-0.10.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 28 23:16:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:16:38 +0000 Subject: [pkgdb] gnubiff ownership updated Message-ID: <20090728231638.0804010F88F@bastion2.fedora.phx.redhat.com> Package gnubiff in Fedora 10 is now owned by fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnubiff From pkgdb at fedoraproject.org Tue Jul 28 23:16:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:16:47 +0000 Subject: [pkgdb] gnubiff ownership updated Message-ID: <20090728231647.9B09E10F889@bastion2.fedora.phx.redhat.com> Package gnubiff in Fedora devel is now owned by fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnubiff From pkgdb at fedoraproject.org Tue Jul 28 23:19:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:19:25 +0000 Subject: [pkgdb] jline (un)retirement Message-ID: <20090728231925.CB70E10F85A@bastion2.fedora.phx.redhat.com> Package jline in Fedora devel has been unretired by toshio and is now orphan. To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Tue Jul 28 23:20:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:20:16 +0000 Subject: [pkgdb] jline (Fedora, devel) updated by toshio Message-ID: <20090728232016.A545610F88F@bastion2.fedora.phx.redhat.com> toshio changed owner of jline in Fedora devel to mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Tue Jul 28 23:21:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:21:09 +0000 Subject: [pkgdb] bugzilla had acl change status Message-ID: <20090728232109.E270010F897@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on bugzilla (Fedora devel) to Approved for eseyman To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bugzilla From pkgdb at fedoraproject.org Tue Jul 28 23:21:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:21:17 +0000 Subject: [pkgdb] bugzilla had acl change status Message-ID: <20090728232117.BB11910F85A@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on bugzilla (Fedora 9) to Approved for eseyman To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bugzilla From pkgdb at fedoraproject.org Tue Jul 28 23:21:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:21:19 +0000 Subject: [pkgdb] bugzilla had acl change status Message-ID: <20090728232119.E448110F89F@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on bugzilla (Fedora 10) to Approved for eseyman To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bugzilla From pkgdb at fedoraproject.org Tue Jul 28 23:21:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:21:22 +0000 Subject: [pkgdb] bugzilla had acl change status Message-ID: <20090728232123.0BA0B10F8B1@bastion2.fedora.phx.redhat.com> itamarjp has set the approveacls acl on bugzilla (Fedora 11) to Approved for eseyman To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bugzilla From pkgdb at fedoraproject.org Tue Jul 28 23:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:23:48 +0000 Subject: [pkgdb] python-cjson ownership updated Message-ID: <20090728232348.5E53110F88F@bastion2.fedora.phx.redhat.com> Package python-cjson in Fedora devel is now owned by mstone To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-cjson From pkgdb at fedoraproject.org Tue Jul 28 23:25:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:25:47 +0000 Subject: [pkgdb] python-cjson ownership updated Message-ID: <20090728232547.9E9AE10F889@bastion2.fedora.phx.redhat.com> Package python-cjson in Fedora 11 is now owned by mstone To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-cjson From pkgdb at fedoraproject.org Tue Jul 28 23:25:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:25:48 +0000 Subject: [pkgdb] python-cjson ownership updated Message-ID: <20090728232548.6856710F891@bastion2.fedora.phx.redhat.com> Package python-cjson in Fedora 10 is now owned by mstone To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-cjson From pkgdb at fedoraproject.org Tue Jul 28 23:25:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:25:51 +0000 Subject: [pkgdb] python-cjson ownership updated Message-ID: <20090728232551.00A6210F89F@bastion2.fedora.phx.redhat.com> Package python-cjson in Fedora 9 is now owned by mstone To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-cjson From mathstuf at fedoraproject.org Tue Jul 28 23:29:00 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Tue, 28 Jul 2009 23:29:00 +0000 (UTC) Subject: rpms/libinfinity/F-10 libinfinity.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090728232900.4D3C011C00D4@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libinfinity/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29148 Modified Files: sources Added Files: libinfinity.spec Log Message: Initial build for F-10 --- NEW FILE libinfinity.spec --- Name: libinfinity Version: 0.3.0 Release: 3%{?dist} Summary: Library implementing the infinote protocol Group: System Environment/Libraries License: LGPLv2+ URL: http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity Source0: http://releases.0x539.de/libinfinity/libinfinity-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: avahi-devel BuildRequires: glib2-devel BuildRequires: gnutls-devel BuildRequires: libxml2-devel BuildRequires: libgsasl-devel BuildRequires: gtk-doc BuildRequires: chrpath BuildRequires: gettext BuildRequires: gtk2-devel %description Libinfinity is used in the collaborative editing tool Kobby. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: avahi-devel Requires: glib2-devel Requires: gnutls-devel Requires: libxml2-devel Requires: libgsasl-devel %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package gtk Summary: GTK widgets for libinfinity Group: System Environment/Libraries %description gtk Widgets and dialogs for libinfinity in GTK2. %package gtk-devel Summary: Development files for %{name}-gtk Group: Development/Libraries Requires: %{name}-gtk = %{version}-%{release} Requires: pkgconfig Requires: libinfinity-devel Requires: gtk2-devel %description gtk-devel The %{name}-gtk-devel package contains libraries and header files for developing applications that use %{name}-gtk. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for the %{name} libraries. %package -n infinoted Summary: Server for the infinote protocol Group: System Environment/Daemons %description -n infinoted Server daemon for the infinote protocol. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} %find_lang %{name}-0.3 find %{buildroot} -name '*.la' -exec rm -f {} ';' chrpath -d %{buildroot}%{_bindir}/infinoted-0.3 chrpath -d %{buildroot}%{_libdir}/infinoted-0.3/note-plugins/libinfd-note-plugin-text.so chrpath -d %{buildroot}%{_libdir}/libinftext-0.3.so.0.0.0 chrpath -d %{buildroot}%{_libdir}/libinfgtk-0.3.so.0.0.0 chrpath -d %{buildroot}%{_libdir}/libinftextgtk-0.3.so.0.0.0 %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %files -f %{name}-0.3.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING %{_libdir}/libinfinity-0.3.so.0 %{_libdir}/libinfinity-0.3.so.0.0.0 %{_libdir}/libinftext-0.3.so.0 %{_libdir}/libinftext-0.3.so.0.0.0 %{_datadir}/icons/hicolor/*/apps/infinote.* %files devel %defattr(-,root,root,-) %{_includedir}/libinfinity-0.3/ %{_includedir}/libinftext-0.3/ %{_libdir}/libinfinity-0.3.so %{_libdir}/libinftext-0.3.so %{_libdir}/pkgconfig/libinfinity-0.3.pc %{_libdir}/pkgconfig/libinftext-0.3.pc %files gtk %defattr(-,root,root,-) %{_libdir}/libinfgtk-0.3.so.0 %{_libdir}/libinfgtk-0.3.so.0.0.0 %{_libdir}/libinftextgtk-0.3.so.0 %{_libdir}/libinftextgtk-0.3.so.0.0.0 %files gtk-devel %defattr(-,root,root,-) %{_includedir}/libinfgtk-0.3/ %{_includedir}/libinftextgtk-0.3/ %{_libdir}/libinfgtk-0.3.so %{_libdir}/libinftextgtk-0.3.so %{_libdir}/pkgconfig/libinfgtk-0.3.pc %{_libdir}/pkgconfig/libinftextgtk-0.3.pc %files doc %defattr(-,root,root,-) %{_datadir}/gtk-doc/html/libinfgtk-0.3/ %{_datadir}/gtk-doc/html/libinfinity-0.3/ %{_datadir}/gtk-doc/html/libinftext-0.3/ %{_datadir}/gtk-doc/html/libinftextgtk-0.3/ %files -n infinoted %defattr(-,root,root,-) %{_bindir}/infinoted-0.3 %{_libdir}/infinoted-0.3/note-plugins/libinfd-note-plugin-text.so %changelog * Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sun Jun 21 2009 Ben Boeckel 0.3.0-2 - Build everything (added gettext, avahi-devel, and gtk2-devel) - Add gtk sub-packages * Sat Jun 20 2009 Ben Boeckel 0.3.0-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libinfinity/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 25 Jun 2009 20:12:28 -0000 1.1 +++ sources 28 Jul 2009 23:29:00 -0000 1.2 @@ -0,0 +1 @@ +28d87a8d47ccc55480a862fc21fe7b95 libinfinity-0.3.0.tar.gz From pkgdb at fedoraproject.org Tue Jul 28 23:34:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:34:48 +0000 Subject: [pkgdb] ht2html ownership updated Message-ID: <20090728233448.71CD410F85A@bastion2.fedora.phx.redhat.com> Package ht2html in Fedora devel is now owned by mjakubicek To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ht2html From pkgdb at fedoraproject.org Tue Jul 28 23:34:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:34:54 +0000 Subject: [pkgdb] ht2html ownership updated Message-ID: <20090728233454.7DD6710F889@bastion2.fedora.phx.redhat.com> Package ht2html in Fedora 10 is now owned by mjakubicek To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ht2html From pkgdb at fedoraproject.org Tue Jul 28 23:34:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:34:59 +0000 Subject: [pkgdb] ht2html ownership updated Message-ID: <20090728233459.3030710F891@bastion2.fedora.phx.redhat.com> Package ht2html in Fedora 11 is now owned by mjakubicek To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ht2html From pkgdb at fedoraproject.org Tue Jul 28 23:35:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:35:41 +0000 Subject: [pkgdb] gcc: differential has requested watchcommits Message-ID: <20090728233541.C408D10F88F@bastion2.fedora.phx.redhat.com> differential has requested the watchcommits acl on gcc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gcc From pkgdb at fedoraproject.org Tue Jul 28 23:35:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:35:50 +0000 Subject: [pkgdb] gcc: differential has given up watchcommits Message-ID: <20090728233550.5B22810F8A1@bastion2.fedora.phx.redhat.com> differential has given up the watchcommits acl on gcc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gcc From mathstuf at fedoraproject.org Tue Jul 28 23:44:23 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Tue, 28 Jul 2009 23:44:23 +0000 (UTC) Subject: rpms/libqinfinity/F-11 libqinfinity-1.0b3-cmake-libsuffix.patch, NONE, 1.1 libqinfinity-1.0b3-install-libsuffix.patch, NONE, 1.1 libqinfinity.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090728234423.8B14811C00D4@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libqinfinity/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv688 Modified Files: sources Added Files: libqinfinity-1.0b3-cmake-libsuffix.patch libqinfinity-1.0b3-install-libsuffix.patch libqinfinity.spec Log Message: Initial build for F-11 libqinfinity-1.0b3-cmake-libsuffix.patch: FindLibinfinity.cmake | 4 ++-- FindLibinftext.cmake | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) --- NEW FILE libqinfinity-1.0b3-cmake-libsuffix.patch --- diff -r -U 5 libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake --- libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake 2009-06-20 01:32:43.000000000 -0400 @@ -49,12 +49,12 @@ find_library( LIBINFINITY_LIBRARY NAMES infinity-0.3 PATHS ${_LIBINFINITY_LIBRARY_DIR} - /usr/lib - /usr/local/lib + /usr/lib${LIB_SUFFIX} + /usr/local/lib${LIB_SUFFIX} ) set( LIBINFINITY_INCLUDES ${LIBINFINITY_INCLUDES} ${GLIB2_INCLUDE_DIR} diff -r -U 5 libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake --- libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake 2009-06-20 01:32:58.000000000 -0400 @@ -44,12 +44,12 @@ find_library( LIBINFTEXT_LIBRARY NAMES inftext-0.3 PATHS ${_LIBINFTEXT_LIBRARY_DIR} - /usr/lib - /usr/local/lib + /usr/lib${LIB_SUFFIX} + /usr/local/lib${LIB_SUFFIX} ) set(LIBINFTEXT_LIBRARIES ${LIBINFTEXT_LIBRARY}) endif( LIBINFTEXT_LIBRARIES AND LIBINFTEXT_INCLUDES ) libqinfinity-1.0b3-install-libsuffix.patch: CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libqinfinity-1.0b3-install-libsuffix.patch --- diff -r -U 5 libqinfinity-1.0b3/libqinfinity/CMakeLists.txt libqinfinity-1.0b3/libqinfinity/CMakeLists.txt --- libqinfinity-1.0b3/libqinfinity/CMakeLists.txt 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/libqinfinity/CMakeLists.txt 2009-06-20 02:39:28.000000000 -0400 @@ -89,10 +89,10 @@ SOVERSION 1) TARGET_LINK_LIBRARIES(qinfinity ${LIBS}) INSTALL(TARGETS qinfinity - DESTINATION lib) + DESTINATION lib${LIB_SUFFIX}) INSTALL(FILES ${QInfinity_HDRS} DESTINATION include/libqinfinity-1.0/libqinfinity) --- NEW FILE libqinfinity.spec --- Name: libqinfinity Version: 1.0 Release: 0.2.b3%{?dist} Summary: Qt interface for libinfinity Group: System Environment/Libraries License: GPLv2+ URL: http://greghaynes.github.com/libqinfinity/ Source0: http://cloud.github.com/downloads/greghaynes/libqinfinity/libqinfinity-1.0b3.tar.gz Patch0: libqinfinity-1.0b3-install-libsuffix.patch Patch1: libqinfinity-1.0b3-cmake-libsuffix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libinfinity-devel BuildRequires: cmake BuildRequires: qt4-devel %description Wrapper for libinfinity for Qt applications. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: libinfinity-devel Requires: qt4-devel %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n %{name}-1.0b3 %patch0 -p1 %patch1 -p1 %build %cmake make %{?_smp_mflags} VERBOSE=1 %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING %{_libdir}/libqinfinity.so.1 %{_libdir}/libqinfinity.so.0.1 %files devel %defattr(-,root,root,-) %{_includedir}/libqinfinity-1.0/ %{_libdir}/libqinfinity.so %changelog * Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.2.b3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat Jun 29 2009 Ben Boeckel 1.0-0.1.b3 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libqinfinity/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 7 Jul 2009 03:57:23 -0000 1.1 +++ sources 28 Jul 2009 23:44:23 -0000 1.2 @@ -0,0 +1 @@ +3869160a983386405c615460dc79511b libqinfinity-1.0b3.tar.gz From rdieter at fedoraproject.org Tue Jul 28 23:49:07 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 23:49:07 +0000 (UTC) Subject: rpms/koffice/F-11 koffice.spec, 1.104, 1.105 koffice-1.6.3-no_local_fonts.patch, 1.1, NONE Message-ID: <20090728234907.EE1F811C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1787 Modified Files: koffice.spec Removed Files: koffice-1.6.3-no_local_fonts.patch Log Message: fix build Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-11/koffice.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- koffice.spec 28 Jul 2009 20:49:40 -0000 1.104 +++ koffice.spec 28 Jul 2009 23:49:07 -0000 1.105 @@ -325,7 +325,7 @@ done ## unpackaged files # fonts -rm -rv %{buildroot}%{_datadir}/apps/kformula/fonts/ +rm -rfv %{buildroot}%{_datadir}/apps/kformula/fonts/ # libtool archives rm -f %{buildroot}%{_libdir}/lib*.la # shouldn't these be in koffice-l10n? --- koffice-1.6.3-no_local_fonts.patch DELETED --- From rdieter at fedoraproject.org Tue Jul 28 23:56:20 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 28 Jul 2009 23:56:20 +0000 (UTC) Subject: rpms/koffice/F-10 koffice.spec, 1.83, 1.84 koffice-1.6.3-no_local_fonts.patch, 1.1, NONE Message-ID: <20090728235620.3508711C00D4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3568 Modified Files: koffice.spec Removed Files: koffice-1.6.3-no_local_fonts.patch Log Message: fix build Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-10/koffice.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- koffice.spec 28 Jul 2009 20:53:21 -0000 1.83 +++ koffice.spec 28 Jul 2009 23:56:20 -0000 1.84 @@ -325,7 +325,7 @@ done ## unpackaged files # fonts -rm -rv %{buildroot}%{_datadir}/apps/kformula/fonts/ +rm -rfv %{buildroot}%{_datadir}/apps/kformula/fonts/ # libtool archives rm -f %{buildroot}%{_libdir}/lib*.la # shouldn't these be in koffice-l10n? --- koffice-1.6.3-no_local_fonts.patch DELETED --- From mathstuf at fedoraproject.org Tue Jul 28 23:58:06 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Tue, 28 Jul 2009 23:58:06 +0000 (UTC) Subject: rpms/libqinfinity/F-11 libqinfinity.spec,1.1,1.2 Message-ID: <20090728235806.397BD11C00D4@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libqinfinity/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4058 Modified Files: libqinfinity.spec Log Message: Bump dist version for newRepo task Index: libqinfinity.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqinfinity/F-11/libqinfinity.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libqinfinity.spec 28 Jul 2009 23:44:23 -0000 1.1 +++ libqinfinity.spec 28 Jul 2009 23:58:06 -0000 1.2 @@ -1,6 +1,6 @@ Name: libqinfinity Version: 1.0 -Release: 0.2.b3%{?dist} +Release: 0.2.b3%{?dist}.1 Summary: Qt interface for libinfinity Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Ben Boeckel 1.0-0.1.b3.1 +- Wait for newRepo task in koji + * Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.2.b3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 28 23:58:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:58:29 +0000 Subject: [pkgdb] pessulus ownership updated Message-ID: <20090728235829.C47B410F85A@bastion2.fedora.phx.redhat.com> Package pessulus in Fedora 10 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pessulus From pkgdb at fedoraproject.org Tue Jul 28 23:58:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:58:31 +0000 Subject: [pkgdb] pessulus ownership updated Message-ID: <20090728235831.3C3D110F88F@bastion2.fedora.phx.redhat.com> Package pessulus in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pessulus From pkgdb at fedoraproject.org Tue Jul 28 23:58:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 28 Jul 2009 23:58:36 +0000 Subject: [pkgdb] pessulus ownership updated Message-ID: <20090728235836.9047910F891@bastion2.fedora.phx.redhat.com> Package pessulus in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pessulus From mathstuf at fedoraproject.org Tue Jul 28 23:58:51 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Tue, 28 Jul 2009 23:58:51 +0000 (UTC) Subject: rpms/libqinfinity/F-10 libqinfinity-1.0b3-cmake-libsuffix.patch, NONE, 1.1 libqinfinity-1.0b3-install-libsuffix.patch, NONE, 1.1 libqinfinity.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090728235851.76FFE11C00D4@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libqinfinity/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4283 Modified Files: sources Added Files: libqinfinity-1.0b3-cmake-libsuffix.patch libqinfinity-1.0b3-install-libsuffix.patch libqinfinity.spec Log Message: Initial build for F-10 libqinfinity-1.0b3-cmake-libsuffix.patch: FindLibinfinity.cmake | 4 ++-- FindLibinftext.cmake | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) --- NEW FILE libqinfinity-1.0b3-cmake-libsuffix.patch --- diff -r -U 5 libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake --- libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/CMakeModules/FindLibinfinity.cmake 2009-06-20 01:32:43.000000000 -0400 @@ -49,12 +49,12 @@ find_library( LIBINFINITY_LIBRARY NAMES infinity-0.3 PATHS ${_LIBINFINITY_LIBRARY_DIR} - /usr/lib - /usr/local/lib + /usr/lib${LIB_SUFFIX} + /usr/local/lib${LIB_SUFFIX} ) set( LIBINFINITY_INCLUDES ${LIBINFINITY_INCLUDES} ${GLIB2_INCLUDE_DIR} diff -r -U 5 libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake --- libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/CMakeModules/FindLibinftext.cmake 2009-06-20 01:32:58.000000000 -0400 @@ -44,12 +44,12 @@ find_library( LIBINFTEXT_LIBRARY NAMES inftext-0.3 PATHS ${_LIBINFTEXT_LIBRARY_DIR} - /usr/lib - /usr/local/lib + /usr/lib${LIB_SUFFIX} + /usr/local/lib${LIB_SUFFIX} ) set(LIBINFTEXT_LIBRARIES ${LIBINFTEXT_LIBRARY}) endif( LIBINFTEXT_LIBRARIES AND LIBINFTEXT_INCLUDES ) libqinfinity-1.0b3-install-libsuffix.patch: CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libqinfinity-1.0b3-install-libsuffix.patch --- diff -r -U 5 libqinfinity-1.0b3/libqinfinity/CMakeLists.txt libqinfinity-1.0b3/libqinfinity/CMakeLists.txt --- libqinfinity-1.0b3/libqinfinity/CMakeLists.txt 2009-06-01 22:11:08.000000000 -0400 +++ libqinfinity-1.0b3/libqinfinity/CMakeLists.txt 2009-06-20 02:39:28.000000000 -0400 @@ -89,10 +89,10 @@ SOVERSION 1) TARGET_LINK_LIBRARIES(qinfinity ${LIBS}) INSTALL(TARGETS qinfinity - DESTINATION lib) + DESTINATION lib${LIB_SUFFIX}) INSTALL(FILES ${QInfinity_HDRS} DESTINATION include/libqinfinity-1.0/libqinfinity) --- NEW FILE libqinfinity.spec --- Name: libqinfinity Version: 1.0 Release: 0.2.b3%{?dist} Summary: Qt interface for libinfinity Group: System Environment/Libraries License: GPLv2+ URL: http://greghaynes.github.com/libqinfinity/ Source0: http://cloud.github.com/downloads/greghaynes/libqinfinity/libqinfinity-1.0b3.tar.gz Patch0: libqinfinity-1.0b3-install-libsuffix.patch Patch1: libqinfinity-1.0b3-cmake-libsuffix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libinfinity-devel BuildRequires: cmake BuildRequires: qt4-devel %description Wrapper for libinfinity for Qt applications. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: libinfinity-devel Requires: qt4-devel %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n %{name}-1.0b3 %patch0 -p1 %patch1 -p1 %build %cmake make %{?_smp_mflags} VERBOSE=1 %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING %{_libdir}/libqinfinity.so.1 %{_libdir}/libqinfinity.so.0.1 %files devel %defattr(-,root,root,-) %{_includedir}/libqinfinity-1.0/ %{_libdir}/libqinfinity.so %changelog * Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.2.b3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat Jun 29 2009 Ben Boeckel 1.0-0.1.b3 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libqinfinity/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 7 Jul 2009 03:57:23 -0000 1.1 +++ sources 28 Jul 2009 23:58:51 -0000 1.2 @@ -0,0 +1 @@ +3869160a983386405c615460dc79511b libqinfinity-1.0b3.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 00:01:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:01:48 +0000 Subject: [pkgdb] pessulus ownership updated Message-ID: <20090729000148.7F81B10F856@bastion2.fedora.phx.redhat.com> Package pessulus in Fedora devel was orphaned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pessulus From pkgdb at fedoraproject.org Wed Jul 29 00:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:01:58 +0000 Subject: [pkgdb] pessulus ownership updated Message-ID: <20090729000158.4A79C10F85A@bastion2.fedora.phx.redhat.com> Package pessulus in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pessulus From jkeating at fedoraproject.org Wed Jul 29 00:07:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 00:07:44 +0000 (UTC) Subject: rpms/pygpgme/EL-5 pygpgme-0.1-gpgme_ctx_set_engine_info.patch, NONE, 1.1 pygpgme.spec, 1.3, 1.4 Message-ID: <20090729000744.7197C11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygpgme/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6445 Modified Files: pygpgme.spec Added Files: pygpgme-0.1-gpgme_ctx_set_engine_info.patch Log Message: * Tue Jul 28 2009 Jesse Keating - 0.1-7 - Patch from mitr for gpgme_ctx_set_engine_info pygpgme-0.1-gpgme_ctx_set_engine_info.patch: pygpgme-context.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) --- NEW FILE pygpgme-0.1-gpgme_ctx_set_engine_info.patch --- --- pygpgme-0.1/src/pygpgme-context.c~ 2006-02-14 05:05:15.000000000 +0100 +++ pygpgme/src/pygpgme-context.c 2008-11-06 15:01:58.000000000 +0100 @@ -356,6 +356,22 @@ { NULL, (getter)0, (setter)0 } }; +static PyObject * +pygpgme_context_set_engine_info(PyGpgmeContext *self, PyObject *args) +{ + int protocol; + const char *file_name, *home_dir; + + if (!PyArg_ParseTuple(args, "izz", &protocol, &file_name, &home_dir)) + return NULL; + + if (pygpgme_check_error(gpgme_ctx_set_engine_info(self->ctx, protocol, + file_name, home_dir))) + return NULL; + + Py_RETURN_NONE; +} + /* XXX: set_locale */ static PyObject * pygpgme_context_set_locale(PyGpgmeContext *self, PyObject *args) @@ -1136,6 +1152,7 @@ // pygpgme_context_trustlist static PyMethodDef pygpgme_context_methods[] = { + { "set_engine_info", (PyCFunction)pygpgme_context_set_engine_info, METH_VARARGS }, { "set_locale", (PyCFunction)pygpgme_context_set_locale, METH_VARARGS }, { "get_key", (PyCFunction)pygpgme_context_get_key, METH_VARARGS }, { "encrypt", (PyCFunction)pygpgme_context_encrypt, METH_VARARGS }, Index: pygpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygpgme/EL-5/pygpgme.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pygpgme.spec 14 Dec 2007 22:48:16 -0000 1.3 +++ pygpgme.spec 29 Jul 2009 00:07:44 -0000 1.4 @@ -2,7 +2,7 @@ Name: pygpgme Version: 0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Python module for working with OpenPGP messages Group: Development/Languages @@ -10,6 +10,7 @@ License: LGPLv2+ URL: http://cheeseshop.python.org/pypi/pygpgme/0.1 Source0: http://cheeseshop.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz Patch0: pygpgme-0.1-py23.patch +Patch1: pygpgme-0.1-gpgme_ctx_set_engine_info.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: gpgme-devel @@ -24,6 +25,7 @@ the GPGME library. # Patch necessary for python version 2.3 and below. %patch0 -p1 -b .py23 +%patch1 -p1 -b .ctx_set_engine %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -46,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gpgme/ %changelog +* Tue Jul 28 2009 Jesse Keating - 0.1-7 +- Patch from mitr for gpgme_ctx_set_engine_info + * Fri May 18 2007 Toshio Kuratomi - 0.1-6 - Rebuild to pick up enhancements from gcc on F-8. - Update licensing to conform to new guidelines. From jkeating at fedoraproject.org Wed Jul 29 00:08:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 00:08:06 +0000 (UTC) Subject: rpms/pygpgme/devel pygpgme-0.1-gpgme_ctx_set_engine_info.patch, NONE, 1.1 pygpgme.spec, 1.13, 1.14 Message-ID: <20090729000806.DA8A811C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygpgme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7172 Modified Files: pygpgme.spec Added Files: pygpgme-0.1-gpgme_ctx_set_engine_info.patch Log Message: * Tue Jul 28 2009 Jesse Keating - 0.1-14.20090121bzr54 - Patch from mitr for gpgme_ctx_set_engine_info pygpgme-0.1-gpgme_ctx_set_engine_info.patch: pygpgme-context.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) --- NEW FILE pygpgme-0.1-gpgme_ctx_set_engine_info.patch --- --- pygpgme-0.1/src/pygpgme-context.c~ 2006-02-14 05:05:15.000000000 +0100 +++ pygpgme/src/pygpgme-context.c 2008-11-06 15:01:58.000000000 +0100 @@ -356,6 +356,22 @@ { NULL, (getter)0, (setter)0 } }; +static PyObject * +pygpgme_context_set_engine_info(PyGpgmeContext *self, PyObject *args) +{ + int protocol; + const char *file_name, *home_dir; + + if (!PyArg_ParseTuple(args, "izz", &protocol, &file_name, &home_dir)) + return NULL; + + if (pygpgme_check_error(gpgme_ctx_set_engine_info(self->ctx, protocol, + file_name, home_dir))) + return NULL; + + Py_RETURN_NONE; +} + /* XXX: set_locale */ static PyObject * pygpgme_context_set_locale(PyGpgmeContext *self, PyObject *args) @@ -1136,6 +1152,7 @@ // pygpgme_context_trustlist static PyMethodDef pygpgme_context_methods[] = { + { "set_engine_info", (PyCFunction)pygpgme_context_set_engine_info, METH_VARARGS }, { "set_locale", (PyCFunction)pygpgme_context_set_locale, METH_VARARGS }, { "get_key", (PyCFunction)pygpgme_context_get_key, METH_VARARGS }, { "encrypt", (PyCFunction)pygpgme_context_encrypt, METH_VARARGS }, Index: pygpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygpgme/devel/pygpgme.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pygpgme.spec 26 Jul 2009 19:50:39 -0000 1.13 +++ pygpgme.spec 29 Jul 2009 00:08:06 -0000 1.14 @@ -2,7 +2,7 @@ Name: pygpgme Version: 0.1 -Release: 13.20090121bzr54%{?dist} +Release: 14.20090121bzr54%{?dist} Summary: Python module for working with OpenPGP messages Group: Development/Languages @@ -22,6 +22,7 @@ URL: http://cheeseshop.python Source0: pygpgme-0.1.tar.gz #Source0: http://cheeseshop.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz Patch0: pygpgme-0.1-py23.patch +Patch1: pygpgme-0.1-gpgme_ctx_set_engine_info.patch # Patch to make generating a tarball (sdist) work. Applied prior to creating # the Source0. Patch100: pygpgme-examples.patch @@ -39,6 +40,7 @@ the GPGME library. # Patch necessary for python version 2.3 and below. %patch0 -p1 -b .py23 +%patch1 -p1 -b .ctx_set_engine %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -71,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Jesse Keating - 0.1-14.20090121bzr54 +- Patch from mitr for gpgme_ctx_set_engine_info + * Sun Jul 26 2009 Fedora Release Engineering - 0.1-13.20090121bzr54 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Wed Jul 29 00:19:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 00:19:18 +0000 (UTC) Subject: rpms/pygpgme/devel pygpgme-0.1-symmetric_encryption_support.patch, NONE, 1.1 pygpgme.spec, 1.14, 1.15 Message-ID: <20090729001918.82A1811C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygpgme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9902 Modified Files: pygpgme.spec Added Files: pygpgme-0.1-symmetric_encryption_support.patch Log Message: * Tue Jul 28 2009 Jesse Keating - 0.1-15.20090121bzr54 - Add a second patch from mitr for symmetric_encryption_support pygpgme-0.1-symmetric_encryption_support.patch: pygpgme-context.c | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) --- NEW FILE pygpgme-0.1-symmetric_encryption_support.patch --- --- pygpgme-0.1/src/pygpgme-context.c~ 2008-11-06 15:33:57.000000000 +0100 +++ pygpgme-0.1/src/pygpgme-context.c 2008-11-06 15:35:35.000000000 +0100 @@ -468,25 +468,29 @@ &py_plain, &py_cipher)) return NULL; - py_recp = PySequence_Fast(py_recp, "first argument must be a sequence"); - if (py_recp == NULL) - return NULL; + if (py_recp == Py_None) + recp = NULL; + else { + py_recp = PySequence_Fast(py_recp, "first argument must be a sequence"); + if (py_recp == NULL) + return NULL; - length = PySequence_Fast_GET_SIZE(py_recp); - recp = malloc((length + 1) * sizeof (gpgme_key_t)); - for (i = 0; i < length; i++) { - PyObject *item = PySequence_Fast_GET_ITEM(py_recp, i); + length = PySequence_Fast_GET_SIZE(py_recp); + recp = malloc((length + 1) * sizeof (gpgme_key_t)); + for (i = 0; i < length; i++) { + PyObject *item = PySequence_Fast_GET_ITEM(py_recp, i); - if (!PyObject_TypeCheck(item, &PyGpgmeKey_Type)) { - free(recp); - Py_DECREF(py_recp); - PyErr_SetString(PyExc_TypeError, "items in first argument must " - "be gpgme.Key objects"); - return NULL; + if (!PyObject_TypeCheck(item, &PyGpgmeKey_Type)) { + free(recp); + Py_DECREF(py_recp); + PyErr_SetString(PyExc_TypeError, "items in first argument must " + "be gpgme.Key objects"); + return NULL; + } + recp[i] = ((PyGpgmeKey *)item)->key; } - recp[i] = ((PyGpgmeKey *)item)->key; + recp[i] = NULL; } - recp[i] = NULL; if (pygpgme_data_new(&plain, py_plain)) { free(recp); Index: pygpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygpgme/devel/pygpgme.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- pygpgme.spec 29 Jul 2009 00:08:06 -0000 1.14 +++ pygpgme.spec 29 Jul 2009 00:19:18 -0000 1.15 @@ -2,7 +2,7 @@ Name: pygpgme Version: 0.1 -Release: 14.20090121bzr54%{?dist} +Release: 15.20090121bzr54%{?dist} Summary: Python module for working with OpenPGP messages Group: Development/Languages @@ -23,6 +23,7 @@ Source0: pygpgme-0.1.tar.gz #Source0: http://cheeseshop.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz Patch0: pygpgme-0.1-py23.patch Patch1: pygpgme-0.1-gpgme_ctx_set_engine_info.patch +Patch2: pygpgme-0.1-symmetric_encryption_support.patch # Patch to make generating a tarball (sdist) work. Applied prior to creating # the Source0. Patch100: pygpgme-examples.patch @@ -41,6 +42,7 @@ the GPGME library. # Patch necessary for python version 2.3 and below. %patch0 -p1 -b .py23 %patch1 -p1 -b .ctx_set_engine +%patch2 -p1 -b .sym_encrypt %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -73,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Jesse Keating - 0.1-15.20090121bzr54 +- Add a second patch from mitr for symmetric_encryption_support + * Tue Jul 28 2009 Jesse Keating - 0.1-14.20090121bzr54 - Patch from mitr for gpgme_ctx_set_engine_info From jkeating at fedoraproject.org Wed Jul 29 00:20:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 00:20:51 +0000 (UTC) Subject: rpms/pygpgme/EL-5 pygpgme-0.1-symmetric_encryption_support.patch, NONE, 1.1 pygpgme.spec, 1.4, 1.5 Message-ID: <20090729002051.07E0711C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygpgme/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10428 Modified Files: pygpgme.spec Added Files: pygpgme-0.1-symmetric_encryption_support.patch Log Message: * Tue Jul 28 2009 Jesse Keating - 0.1-8 - Add a second patch from mitr to support symmetric_encryption pygpgme-0.1-symmetric_encryption_support.patch: pygpgme-context.c | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) --- NEW FILE pygpgme-0.1-symmetric_encryption_support.patch --- --- pygpgme-0.1/src/pygpgme-context.c~ 2008-11-06 15:33:57.000000000 +0100 +++ pygpgme-0.1/src/pygpgme-context.c 2008-11-06 15:35:35.000000000 +0100 @@ -468,25 +468,29 @@ &py_plain, &py_cipher)) return NULL; - py_recp = PySequence_Fast(py_recp, "first argument must be a sequence"); - if (py_recp == NULL) - return NULL; + if (py_recp == Py_None) + recp = NULL; + else { + py_recp = PySequence_Fast(py_recp, "first argument must be a sequence"); + if (py_recp == NULL) + return NULL; - length = PySequence_Fast_GET_SIZE(py_recp); - recp = malloc((length + 1) * sizeof (gpgme_key_t)); - for (i = 0; i < length; i++) { - PyObject *item = PySequence_Fast_GET_ITEM(py_recp, i); + length = PySequence_Fast_GET_SIZE(py_recp); + recp = malloc((length + 1) * sizeof (gpgme_key_t)); + for (i = 0; i < length; i++) { + PyObject *item = PySequence_Fast_GET_ITEM(py_recp, i); - if (!PyObject_TypeCheck(item, &PyGpgmeKey_Type)) { - free(recp); - Py_DECREF(py_recp); - PyErr_SetString(PyExc_TypeError, "items in first argument must " - "be gpgme.Key objects"); - return NULL; + if (!PyObject_TypeCheck(item, &PyGpgmeKey_Type)) { + free(recp); + Py_DECREF(py_recp); + PyErr_SetString(PyExc_TypeError, "items in first argument must " + "be gpgme.Key objects"); + return NULL; + } + recp[i] = ((PyGpgmeKey *)item)->key; } - recp[i] = ((PyGpgmeKey *)item)->key; + recp[i] = NULL; } - recp[i] = NULL; if (pygpgme_data_new(&plain, py_plain)) { free(recp); Index: pygpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygpgme/EL-5/pygpgme.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pygpgme.spec 29 Jul 2009 00:07:44 -0000 1.4 +++ pygpgme.spec 29 Jul 2009 00:20:50 -0000 1.5 @@ -2,7 +2,7 @@ Name: pygpgme Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python module for working with OpenPGP messages Group: Development/Languages @@ -11,6 +11,7 @@ URL: http://cheeseshop.python Source0: http://cheeseshop.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz Patch0: pygpgme-0.1-py23.patch Patch1: pygpgme-0.1-gpgme_ctx_set_engine_info.patch +Patch2: pygpgme-0.1-symmetric_encryption_support.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: gpgme-devel @@ -26,6 +27,7 @@ the GPGME library. # Patch necessary for python version 2.3 and below. %patch0 -p1 -b .py23 %patch1 -p1 -b .ctx_set_engine +%patch2 -p1 -b .sym_encrypt %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -48,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gpgme/ %changelog +* Tue Jul 28 2009 Jesse Keating - 0.1-8 +- Add a second patch from mitr to support symmetric_encryption + * Tue Jul 28 2009 Jesse Keating - 0.1-7 - Patch from mitr for gpgme_ctx_set_engine_info From pkgdb at fedoraproject.org Wed Jul 29 00:30:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:30:02 +0000 Subject: [pkgdb] pygpgme (Fedora, 10) updated by toshio Message-ID: <20090729003002.4190A10F897@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on pygpgme (Fedora EPEL 5) for mitr toshio approved watchcommits on pygpgme (Fedora EPEL 5) for mitr toshio approved commit on pygpgme (Fedora EPEL 5) for mitr toshio approved build on pygpgme (Fedora EPEL 5) for mitr toshio approved approveacls on pygpgme (Fedora EPEL 5) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pygpgme From pkgdb at fedoraproject.org Wed Jul 29 00:30:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:30:02 +0000 Subject: [pkgdb] pygpgme (Fedora, 10) updated by toshio Message-ID: <20090729003002.C241810F8B5@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on pygpgme (Fedora 10) for mitr toshio approved watchcommits on pygpgme (Fedora 10) for mitr toshio approved commit on pygpgme (Fedora 10) for mitr toshio approved build on pygpgme (Fedora 10) for mitr toshio approved approveacls on pygpgme (Fedora 10) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pygpgme From pkgdb at fedoraproject.org Wed Jul 29 00:30:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:30:02 +0000 Subject: [pkgdb] pygpgme (Fedora, 10) updated by toshio Message-ID: <20090729003002.8F04310F8B0@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on pygpgme (Fedora devel) for mitr toshio approved watchcommits on pygpgme (Fedora devel) for mitr toshio approved commit on pygpgme (Fedora devel) for mitr toshio approved build on pygpgme (Fedora devel) for mitr toshio approved approveacls on pygpgme (Fedora devel) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pygpgme From pkgdb at fedoraproject.org Wed Jul 29 00:30:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:30:02 +0000 Subject: [pkgdb] pygpgme (Fedora, 10) updated by toshio Message-ID: <20090729003003.00B3310F8BB@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on pygpgme (Fedora 11) for mitr toshio approved watchcommits on pygpgme (Fedora 11) for mitr toshio approved commit on pygpgme (Fedora 11) for mitr toshio approved build on pygpgme (Fedora 11) for mitr toshio approved approveacls on pygpgme (Fedora 11) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pygpgme From airlied at fedoraproject.org Wed Jul 29 00:35:00 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Wed, 29 Jul 2009 00:35:00 +0000 (UTC) Subject: rpms/kernel/devel drm-vga-arb.patch, 1.2, 1.3 kernel.spec, 1.1667, 1.1668 linux-2.6-vga-arb.patch, 1.2, 1.3 Message-ID: <20090729003500.3448E11C00D4@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13907 Modified Files: drm-vga-arb.patch kernel.spec linux-2.6-vga-arb.patch Log Message: * Wed Jul 29 2009 Dave Airlie - update VGA arb patches drm-vga-arb.patch: drivers/gpu/drm/drm_irq.c | 27 +++++++++++++++++++++++++++ drivers/gpu/drm/i915/i915_dma.c | 20 ++++++++++++++++++++ drivers/gpu/drm/i915/i915_drv.h | 1 + drivers/gpu/drm/i915/i915_reg.h | 1 + drivers/gpu/drm/i915/intel_display.c | 23 +++++++++++++++++++++++ drivers/gpu/drm/i915/intel_drv.h | 1 + drivers/gpu/drm/radeon/r100.c | 14 ++++++++++++++ drivers/gpu/drm/radeon/radeon.h | 2 ++ drivers/gpu/drm/radeon/radeon_asic.h | 9 +++++++++ drivers/gpu/drm/radeon/radeon_device.c | 20 +++++++++++++++++++- include/drm/drmP.h | 4 +++- 11 files changed, 120 insertions(+), 2 deletions(-) Index: drm-vga-arb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-vga-arb.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- drm-vga-arb.patch 27 Jul 2009 03:04:07 -0000 1.2 +++ drm-vga-arb.patch 29 Jul 2009 00:34:59 -0000 1.3 @@ -1,4 +1,4 @@ -From c45aab9228c3a2e349bf6d1f3fa2575102fc8240 Mon Sep 17 00:00:00 2001 +From 7f8919f77fb703526f87b56d11e76cd46cc6da3f Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 16 Jul 2009 14:33:58 +1000 Subject: [PATCH] drm: add support to drm for VGA arbitration. @@ -14,7 +14,7 @@ intel/kms: add support to disable VGA de Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_irq.c | 27 +++++++++++++++++++++++++++ - drivers/gpu/drm/i915/i915_dma.c | 25 +++++++++++++++++++++++++ + drivers/gpu/drm/i915/i915_dma.c | 20 ++++++++++++++++++++ drivers/gpu/drm/i915/i915_drv.h | 1 + drivers/gpu/drm/i915/i915_reg.h | 1 + drivers/gpu/drm/i915/intel_display.c | 23 +++++++++++++++++++++++ @@ -22,9 +22,9 @@ Signed-off-by: Dave Airlie pdev->irq, dev); diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c -index 8c47831..2530fb0 100644 +index 8c47831..f7e1342 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -33,6 +33,7 @@ @@ -97,44 +97,39 @@ index 8c47831..2530fb0 100644 #define I915_DRV "i915_drv" /* Really want an OS-independent resettable timer. Would like to have -@@ -984,6 +985,21 @@ static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size, +@@ -984,6 +985,19 @@ static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size, return 0; } -+/* if we get transitioned to only one device, tak VGA back */ -+static unsigned int i915_vga_count_notify(void *cookie, int new_count) ++/* true = enable decode, false = disable decoder */ ++static unsigned int i915_vga_set_decode(void *cookie, bool state) +{ + struct drm_device *dev = cookie; + -+ if (new_count == 1) { -+ intel_modeset_vga_set_state(dev, true); ++ intel_modeset_vga_set_state(dev, state); ++ if (state) + return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | + VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; -+ } else { -+ intel_modeset_vga_set_state(dev, false); ++ else + return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; -+ } +} + static int i915_load_modeset_init(struct drm_device *dev, unsigned long prealloc_size, unsigned long agp_size) -@@ -1029,6 +1045,14 @@ static int i915_load_modeset_init(struct drm_device *dev, +@@ -1029,6 +1043,11 @@ static int i915_load_modeset_init(struct drm_device *dev, if (ret) DRM_INFO("failed to find VBIOS tables\n"); + /* if we have > 1 VGA cards, then disable the radeon VGA resources */ -+ ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_count_notify); -+ if (ret > 1) { -+ /* false is turn off VGA decode */ -+ intel_modeset_vga_set_state(dev, false); -+ vga_set_legacy_decoding(dev->pdev, VGA_RSRC_NORMAL_IO|VGA_RSRC_NORMAL_MEM); -+ } ++ ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_set_decode); ++ if (ret) ++ goto destroy_ringbuffer; + ret = drm_irq_install(dev); if (ret) goto destroy_ringbuffer; -@@ -1278,6 +1302,7 @@ int i915_driver_unload(struct drm_device *dev) +@@ -1278,6 +1297,7 @@ int i915_driver_unload(struct drm_device *dev) if (drm_core_check_feature(dev, DRIVER_MODESET)) { drm_irq_uninstall(dev); @@ -329,7 +324,7 @@ index e2e5673..59c505c 100644 .mc_init = &r520_mc_init, .mc_fini = &r520_mc_fini, diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c -index f97563d..b391d12 100644 +index f97563d..d84e924 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c @@ -29,6 +29,7 @@ @@ -340,44 +335,40 @@ index f97563d..b391d12 100644 #include "radeon_reg.h" #include "radeon.h" #include "radeon_asic.h" -@@ -440,7 +441,20 @@ void radeon_combios_fini(struct radeon_device *rdev) +@@ -440,7 +441,18 @@ void radeon_combios_fini(struct radeon_device *rdev) int radeon_modeset_init(struct radeon_device *rdev); void radeon_modeset_fini(struct radeon_device *rdev); +/* if we get transitioned to only one device, tak VGA back */ -+static unsigned int radeon_vga_count_notify(void *cookie, int new_count) ++static unsigned int radeon_vga_set_decode(void *cookie, bool state) +{ + struct radeon_device *rdev = cookie; -+ if (new_count == 1) { -+ radeon_vga_set_state(rdev, true); ++ radeon_vga_set_state(rdev, state); ++ if (state) + return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | + VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; -+ } else { -+ radeon_vga_set_state(rdev, false); ++ else + return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; -+ } +} /* * Radeon device. */ -@@ -516,7 +530,14 @@ int radeon_device_init(struct radeon_device *rdev, +@@ -516,7 +528,12 @@ int radeon_device_init(struct radeon_device *rdev, /* Initialize surface registers */ radeon_surface_init(rdev); - /* TODO: disable VGA need to use VGA request */ + /* if we have > 1 VGA cards, then disable the radeon VGA resources */ -+ ret = vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_count_notify); -+ if (ret > 1) { -+ /* false is turn off VGA decode */ -+ radeon_vga_set_state(rdev, false); -+ vga_set_legacy_decoding(rdev->pdev, VGA_RSRC_NORMAL_IO|VGA_RSRC_NORMAL_MEM); ++ ret = vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode); ++ if (ret) { ++ return -EINVAL; + } + /* BIOS*/ if (!radeon_get_bios(rdev)) { if (ASIC_IS_AVIVO(rdev)) -@@ -652,6 +673,7 @@ void radeon_device_fini(struct radeon_device *rdev) +@@ -652,6 +669,7 @@ void radeon_device_fini(struct radeon_device *rdev) radeon_agp_fini(rdev); #endif radeon_irq_kms_fini(rdev); Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1667 retrieving revision 1.1668 diff -u -p -r1.1667 -r1.1668 --- kernel.spec 28 Jul 2009 21:10:45 -0000 1.1667 +++ kernel.spec 29 Jul 2009 00:34:59 -0000 1.1668 @@ -1906,6 +1906,9 @@ fi # and build. %changelog +* Wed Jul 29 2009 Dave Airlie +- update VGA arb patches + * Tue Jul 28 2009 Adam Jackson - Remove the pcspkr modalias. If you're still living in 1994, load it by hand. linux-2.6-vga-arb.patch: drivers/gpu/Makefile | 2 drivers/gpu/vga/Kconfig | 10 drivers/gpu/vga/Makefile | 1 drivers/gpu/vga/vgaarb.c | 1150 +++++++++++++++++++++++++++++++++++++++++++++++ drivers/pci/pci.c | 44 + drivers/video/Kconfig | 2 include/linux/pci.h | 2 include/linux/vgaarb.h | 196 +++++++- 8 files changed, 1405 insertions(+), 2 deletions(-) Index: linux-2.6-vga-arb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-vga-arb.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- linux-2.6-vga-arb.patch 27 Jul 2009 03:04:07 -0000 1.2 +++ linux-2.6-vga-arb.patch 29 Jul 2009 00:34:59 -0000 1.3 @@ -1,4 +1,4 @@ -From eba2469d77b9f7d42f08bbd094312678cedae237 Mon Sep 17 00:00:00 2001 +From 61fc475f99444cf1ae1f417b55680f16ab510a00 Mon Sep 17 00:00:00 2001 From: Tiago Vignatti Date: Tue, 14 Jul 2009 15:57:29 +0300 Subject: [PATCH] vga: implements VGA arbitration on Linux @@ -6,18 +6,23 @@ Subject: [PATCH] vga: implements VGA arb changes since last patch: fixup unlock userspace api so it can't go < 0 add exports for vga put/get/tryget +fix up so the arb doesn't turn off vga decodes +on hw until first used. This worksaround an +X.org problem with older X servers which fail +at detecting boot device if doesn't have the VGA +bit enabled. Newer pciacccess + X server fix this. Signed-off-by: Tiago Vignatti --- drivers/gpu/Makefile | 2 +- drivers/gpu/vga/Kconfig | 10 + drivers/gpu/vga/Makefile | 1 + - drivers/gpu/vga/vgaarb.c | 1125 ++++++++++++++++++++++++++++++++++++++++++++++ + drivers/gpu/vga/vgaarb.c | 1150 ++++++++++++++++++++++++++++++++++++++++++++++ drivers/pci/pci.c | 44 ++ drivers/video/Kconfig | 2 + include/linux/pci.h | 2 + - include/linux/vgaarb.h | 198 ++++++++ - 8 files changed, 1383 insertions(+), 1 deletions(-) + include/linux/vgaarb.h | 195 ++++++++ + 8 files changed, 1405 insertions(+), 1 deletions(-) create mode 100644 drivers/gpu/vga/Kconfig create mode 100644 drivers/gpu/vga/Makefile create mode 100644 drivers/gpu/vga/vgaarb.c @@ -55,10 +60,10 @@ index 0000000..7cc8c1e +obj-$(CONFIG_VGA_ARB) += vgaarb.o diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c new file mode 100644 -index 0000000..ab77d4b +index 0000000..3925e6c --- /dev/null +++ b/drivers/gpu/vga/vgaarb.c -@@ -0,0 +1,1125 @@ +@@ -0,0 +1,1150 @@ +/* + * vgaarb.c + * @@ -86,6 +91,7 @@ index 0000000..ab77d4b + +#include + ++static void vga_arbiter_notify_clients(void); +/* + * We keep a list of all vga devices in the system to speed + * up the various operations of the arbiter @@ -104,11 +110,12 @@ index 0000000..ab77d4b + /* allow IRQ enable/disable hook */ + void *cookie; + void (*irq_set_state)(void *cookie, bool enable); -+ unsigned int (*count_notify)(void *cookie, int new_count); ++ unsigned int (*set_vga_decode)(void *cookie, bool decode); +}; + +static LIST_HEAD(vga_list); +static int vga_count; ++static bool vga_arbiter_used; +static DEFINE_SPINLOCK(vga_lock); +static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue); + @@ -182,6 +189,21 @@ index 0000000..ab77d4b + vgadev->irq_set_state(vgadev->cookie, state); +} + ++ ++/* If we don't ever use VGA arb we should avoid ++ turning off anything anywhere due to old X servers getting ++ confused about the boot device not being VGA */ ++static void vga_check_first_use(void) ++{ ++ /* we should inform all GPUs in the system that ++ * VGA arb has occured and to try and disable resources ++ * if they can */ ++ if (!vga_arbiter_used) { ++ vga_arbiter_used = true; ++ vga_arbiter_notify_clients(); ++ } ++} ++ +static struct vga_device *__vga_tryget(struct vga_device *vgadev, + unsigned int rsrc) +{ @@ -353,6 +375,7 @@ index 0000000..ab77d4b + wait_queue_t wait; + int rc = 0; + ++ vga_check_first_use(); + /* The one who calls us should check for this, but lets be sure... */ + if (pdev == NULL) + pdev = vga_default_device(); @@ -402,6 +425,8 @@ index 0000000..ab77d4b + unsigned long flags; + int rc = 0; + ++ vga_check_first_use(); ++ + /* The one who calls us should check for this, but lets be sure... */ + if (pdev == NULL) + pdev = vga_default_device(); @@ -516,7 +541,6 @@ index 0000000..ab77d4b + if (vga_default == NULL && + ((vgadev->owns & VGA_RSRC_LEGACY_MASK) == VGA_RSRC_LEGACY_MASK)) + vga_default = pci_dev_get(pdev); -+ +#endif + + /* Add to the list */ @@ -579,7 +603,7 @@ index 0000000..ab77d4b + goto bail; + + /* don't let userspace futz with kernel driver decodes */ -+ if (userspace && vgadev->count_notify) ++ if (userspace && vgadev->set_vga_decode) + goto bail; + + old_decodes = vgadev->decodes; @@ -609,7 +633,7 @@ index 0000000..ab77d4b +/* call with NULL to unregister */ +int vga_client_register(struct pci_dev *pdev, void *cookie, + void (*irq_set_state)(void *cookie, bool state), -+ unsigned int (*count_notify)(void *cookie, int vga_count)) ++ unsigned int (*set_vga_decode)(void *cookie, bool decode)) +{ + int ret = -1; + struct vga_device *vgadev; @@ -621,7 +645,7 @@ index 0000000..ab77d4b + goto bail; + + vgadev->irq_set_state = irq_set_state; -+ vgadev->count_notify = count_notify; ++ vgadev->set_vga_decode = set_vga_decode; + vgadev->cookie = cookie; + ret = vga_count; + @@ -837,8 +861,6 @@ index 0000000..ab77d4b + goto done; + } + -+ -+ + pdev = priv->target; + if (priv->target == NULL) { + ret_val = -ENODEV; @@ -1113,11 +1135,19 @@ index 0000000..ab77d4b + struct vga_device *vgadev; + unsigned long flags; + uint32_t new_decodes; ++ bool new_state; ++ ++ if (!vga_arbiter_used) ++ return; + + spin_lock_irqsave(&vga_lock, flags); + list_for_each_entry(vgadev, &vga_list, list) { -+ if (vgadev->count_notify) { -+ new_decodes = vgadev->count_notify(vgadev->cookie, vga_count); ++ if (vga_count > 1) ++ new_state = false; ++ else ++ new_state = true; ++ if (vgadev->set_vga_decode) { ++ new_decodes = vgadev->set_vga_decode(vgadev->cookie, new_state); + vgadev->decodes = new_decodes; + vgadev->owns &= new_decodes; + } @@ -1267,10 +1297,10 @@ index 115fb7b..7ba6eba 100644 #include diff --git a/include/linux/vgaarb.h b/include/linux/vgaarb.h new file mode 100644 -index 0000000..229561d +index 0000000..68229ce --- /dev/null +++ b/include/linux/vgaarb.h -@@ -0,0 +1,198 @@ +@@ -0,0 +1,195 @@ +/* + * vgaarb.c + * @@ -1447,12 +1477,9 @@ index 0000000..229561d + * If a client can't disable its GPUs VGA resources, then we + * need to be able to ask it to turn off its irqs when we + * turn off its mem and io decoding. -+ * count_notify - ++ * set_vga_decode + * If a client can disable its GPU VGA resource, it will -+ * get a count_notify callback everytime a new VGA device shows -+ * up in the system via hotplug. The client is expected to -+ * disable VGA legacy decoding if the VGA device goes above 1. -+ * It can re-enable VGA decoding if the number of devices goes to 0 ++ * get a callback from this to set the encode/decode state + * + * Clients with disable abilities should check the return value + * of this function and if the VGA device count is > 1, should @@ -1466,7 +1493,7 @@ index 0000000..229561d + */ +int vga_client_register(struct pci_dev *pdev, void *cookie, + void (*irq_set_state)(void *cookie, bool state), -+ unsigned int (*count_notify)(void *cookie, int vga_count)); ++ unsigned int (*set_vga_decode)(void *cookie, bool state)); + +#endif /* LINUX_VGA_H */ -- From pkgdb at fedoraproject.org Wed Jul 29 00:55:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:47 +0000 Subject: [pkgdb] php-layers-menu was added for topdog Message-ID: <20090729005547.90E6D10F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package php-layers-menu with summary Hierarchical PHP based DHTML menu system tibbs has approved Package php-layers-menu tibbs has added a Fedora devel branch for php-layers-menu with an owner of topdog tibbs has approved php-layers-menu in Fedora devel tibbs has approved Package php-layers-menu tibbs has set commit to Approved for 107427 on php-layers-menu (Fedora devel) tibbs has set checkout to Approved for 107427 on php-layers-menu (Fedora devel) tibbs has set build to Approved for 107427 on php-layers-menu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From pkgdb at fedoraproject.org Wed Jul 29 00:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:48 +0000 Subject: [pkgdb] php-layers-menu summary updated by tibbs Message-ID: <20090729005548.B693F10F89E@bastion2.fedora.phx.redhat.com> tibbs set package php-layers-menu summary to Hierarchical PHP based DHTML menu system To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From pkgdb at fedoraproject.org Wed Jul 29 00:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:48 +0000 Subject: [pkgdb] php-layers-menu (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005548.C354210F8A1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-layers-menu tibbs has set commit to Approved for 107427 on php-layers-menu (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-layers-menu (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-layers-menu (Fedora EPEL 5) tibbs approved watchbugzilla on php-layers-menu (Fedora EPEL 5) for david tibbs approved watchcommits on php-layers-menu (Fedora EPEL 5) for david To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From pkgdb at fedoraproject.org Wed Jul 29 00:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:48 +0000 Subject: [pkgdb] php-layers-menu (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005548.EA04710F8B4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for php-layers-menu tibbs has set commit to Approved for 107427 on php-layers-menu (Fedora 11) tibbs has set checkout to Approved for 107427 on php-layers-menu (Fedora 11) tibbs has set build to Approved for 107427 on php-layers-menu (Fedora 11) tibbs approved watchbugzilla on php-layers-menu (Fedora 11) for david tibbs approved watchcommits on php-layers-menu (Fedora 11) for david To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From pkgdb at fedoraproject.org Wed Jul 29 00:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:48 +0000 Subject: [pkgdb] php-layers-menu (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005549.417BF10F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for php-layers-menu tibbs has set commit to Approved for 107427 on php-layers-menu (Fedora 10) tibbs has set checkout to Approved for 107427 on php-layers-menu (Fedora 10) tibbs has set build to Approved for 107427 on php-layers-menu (Fedora 10) tibbs approved watchbugzilla on php-layers-menu (Fedora 10) for david tibbs approved watchcommits on php-layers-menu (Fedora 10) for david To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From pkgdb at fedoraproject.org Wed Jul 29 00:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:55:48 +0000 Subject: [pkgdb] php-layers-menu (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005549.7D65D10F8BB@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on php-layers-menu (Fedora devel) for david tibbs approved watchcommits on php-layers-menu (Fedora devel) for david To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-layers-menu From tibbs at fedoraproject.org Wed Jul 29 00:55:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:55:55 +0000 (UTC) Subject: rpms/php-layers-menu/devel - New directory Message-ID: <20090729005555.387A211C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-layers-menu/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse19503/rpms/php-layers-menu/devel Log Message: Directory /cvs/pkgs/rpms/php-layers-menu/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:55:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:55:55 +0000 (UTC) Subject: rpms/php-layers-menu - New directory Message-ID: <20090729005555.1807111C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-layers-menu In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse19503/rpms/php-layers-menu Log Message: Directory /cvs/pkgs/rpms/php-layers-menu added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:56:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:56:00 +0000 (UTC) Subject: rpms/php-layers-menu Makefile,NONE,1.1 Message-ID: <20090729005600.C9C5D11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-layers-menu In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse19503/rpms/php-layers-menu Added Files: Makefile Log Message: Setup of module php-layers-menu --- NEW FILE Makefile --- # Top level Makefile for module php-layers-menu all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:56:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:56:00 +0000 (UTC) Subject: rpms/php-layers-menu/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005601.02E2011C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-layers-menu/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse19503/rpms/php-layers-menu/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-layers-menu --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-layers-menu # $Id: Makefile,v 1.1 2009/07/29 00:56:00 tibbs Exp $ NAME := php-layers-menu SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Wed Jul 29 00:56:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:56:54 +0000 (UTC) Subject: rpms/python-meh - New directory Message-ID: <20090729005654.1B52F11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-meh In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX19937/rpms/python-meh Log Message: Directory /cvs/pkgs/rpms/python-meh added to the repository From pkgdb at fedoraproject.org Wed Jul 29 00:56:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:56:49 +0000 Subject: [pkgdb] python-meh summary updated by tibbs Message-ID: <20090729005651.7A42610F89E@bastion2.fedora.phx.redhat.com> tibbs set package python-meh summary to A python library for handling exceptions To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-meh From pkgdb at fedoraproject.org Wed Jul 29 00:56:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:56:48 +0000 Subject: [pkgdb] python-meh was added for clumens Message-ID: <20090729005650.8BFBA10F8BF@bastion2.fedora.phx.redhat.com> tibbs has added Package python-meh with summary A python library for handling exceptions tibbs has approved Package python-meh tibbs has added a Fedora devel branch for python-meh with an owner of clumens tibbs has approved python-meh in Fedora devel tibbs has approved Package python-meh tibbs has set commit to Approved for 107427 on python-meh (Fedora devel) tibbs has set checkout to Approved for 107427 on python-meh (Fedora devel) tibbs has set build to Approved for 107427 on python-meh (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-meh From tibbs at fedoraproject.org Wed Jul 29 00:56:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:56:54 +0000 (UTC) Subject: rpms/python-meh/devel - New directory Message-ID: <20090729005654.41ED111C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-meh/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX19937/rpms/python-meh/devel Log Message: Directory /cvs/pkgs/rpms/python-meh/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:56:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:56:59 +0000 (UTC) Subject: rpms/python-meh Makefile,NONE,1.1 Message-ID: <20090729005659.C738911C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-meh In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX19937/rpms/python-meh Added Files: Makefile Log Message: Setup of module python-meh --- NEW FILE Makefile --- # Top level Makefile for module python-meh all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:57:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:00 +0000 (UTC) Subject: rpms/python-meh/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005700.13F3211C043B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-meh/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX19937/rpms/python-meh/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-meh --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-meh # $Id: Makefile,v 1.1 2009/07/29 00:56:59 tibbs Exp $ NAME := python-meh SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 00:57:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:57:13 +0000 Subject: [pkgdb] condor-low-latency was added for rrati Message-ID: <20090729005713.9BDC910F8B9@bastion2.fedora.phx.redhat.com> tibbs has added Package condor-low-latency with summary Condor's Low-Latency Scheduling tibbs has approved Package condor-low-latency tibbs has added a Fedora devel branch for condor-low-latency with an owner of rrati tibbs has approved condor-low-latency in Fedora devel tibbs has approved Package condor-low-latency tibbs has set commit to Approved for 107427 on condor-low-latency (Fedora devel) tibbs has set checkout to Approved for 107427 on condor-low-latency (Fedora devel) tibbs has set build to Approved for 107427 on condor-low-latency (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-low-latency From tibbs at fedoraproject.org Wed Jul 29 00:57:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:20 +0000 (UTC) Subject: rpms/condor-low-latency - New directory Message-ID: <20090729005720.1891211C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-low-latency In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS20152/rpms/condor-low-latency Log Message: Directory /cvs/pkgs/rpms/condor-low-latency added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:57:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:20 +0000 (UTC) Subject: rpms/condor-low-latency/devel - New directory Message-ID: <20090729005720.3E97E11C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-low-latency/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS20152/rpms/condor-low-latency/devel Log Message: Directory /cvs/pkgs/rpms/condor-low-latency/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 00:57:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:57:14 +0000 Subject: [pkgdb] condor-low-latency summary updated by tibbs Message-ID: <20090729005714.5AB5E10F8C3@bastion2.fedora.phx.redhat.com> tibbs set package condor-low-latency summary to Condor's Low-Latency Scheduling To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-low-latency From tibbs at fedoraproject.org Wed Jul 29 00:57:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:26 +0000 (UTC) Subject: rpms/condor-low-latency Makefile,NONE,1.1 Message-ID: <20090729005726.1F02411C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-low-latency In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS20152/rpms/condor-low-latency Added Files: Makefile Log Message: Setup of module condor-low-latency --- NEW FILE Makefile --- # Top level Makefile for module condor-low-latency all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:57:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:26 +0000 (UTC) Subject: rpms/condor-low-latency/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005726.6590D11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-low-latency/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS20152/rpms/condor-low-latency/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module condor-low-latency --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: condor-low-latency # $Id: Makefile,v 1.1 2009/07/29 00:57:26 tibbs Exp $ NAME := condor-low-latency SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 00:57:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:57:41 +0000 Subject: [pkgdb] condor-job-hooks was added for rrati Message-ID: <20090729005741.A04B010F89E@bastion2.fedora.phx.redhat.com> tibbs has added Package condor-job-hooks with summary Condor Job Hooks tibbs has approved Package condor-job-hooks tibbs has added a Fedora devel branch for condor-job-hooks with an owner of rrati tibbs has approved condor-job-hooks in Fedora devel tibbs has approved Package condor-job-hooks tibbs has set commit to Approved for 107427 on condor-job-hooks (Fedora devel) tibbs has set checkout to Approved for 107427 on condor-job-hooks (Fedora devel) tibbs has set build to Approved for 107427 on condor-job-hooks (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-job-hooks From tibbs at fedoraproject.org Wed Jul 29 00:57:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:47 +0000 (UTC) Subject: rpms/condor-job-hooks/devel - New directory Message-ID: <20090729005747.4147711C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-job-hooks/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx20331/rpms/condor-job-hooks/devel Log Message: Directory /cvs/pkgs/rpms/condor-job-hooks/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:57:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:47 +0000 (UTC) Subject: rpms/condor-job-hooks - New directory Message-ID: <20090729005747.15F5711C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-job-hooks In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx20331/rpms/condor-job-hooks Log Message: Directory /cvs/pkgs/rpms/condor-job-hooks added to the repository From pkgdb at fedoraproject.org Wed Jul 29 00:57:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:57:41 +0000 Subject: [pkgdb] condor-job-hooks summary updated by tibbs Message-ID: <20090729005742.3534C10F8B4@bastion2.fedora.phx.redhat.com> tibbs set package condor-job-hooks summary to Condor Job Hooks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-job-hooks From tibbs at fedoraproject.org Wed Jul 29 00:57:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:52 +0000 (UTC) Subject: rpms/condor-job-hooks Makefile,NONE,1.1 Message-ID: <20090729005752.8D7A011C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-job-hooks In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx20331/rpms/condor-job-hooks Added Files: Makefile Log Message: Setup of module condor-job-hooks --- NEW FILE Makefile --- # Top level Makefile for module condor-job-hooks all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:57:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:57:52 +0000 (UTC) Subject: rpms/condor-job-hooks/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005752.C523411C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-job-hooks/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx20331/rpms/condor-job-hooks/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module condor-job-hooks --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: condor-job-hooks # $Id: Makefile,v 1.1 2009/07/29 00:57:52 tibbs Exp $ NAME := condor-job-hooks SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 00:58:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:58:04 +0000 Subject: [pkgdb] condor-ec2-enhanced-hooks was added for rrati Message-ID: <20090729005804.7E46E10F8BE@bastion2.fedora.phx.redhat.com> tibbs has added Package condor-ec2-enhanced-hooks with summary Condor EC2 Enhanced hooks tibbs has approved Package condor-ec2-enhanced-hooks tibbs has added a Fedora devel branch for condor-ec2-enhanced-hooks with an owner of rrati tibbs has approved condor-ec2-enhanced-hooks in Fedora devel tibbs has approved Package condor-ec2-enhanced-hooks tibbs has set commit to Approved for 107427 on condor-ec2-enhanced-hooks (Fedora devel) tibbs has set checkout to Approved for 107427 on condor-ec2-enhanced-hooks (Fedora devel) tibbs has set build to Approved for 107427 on condor-ec2-enhanced-hooks (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-ec2-enhanced-hooks From pkgdb at fedoraproject.org Wed Jul 29 00:58:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:58:04 +0000 Subject: [pkgdb] condor-ec2-enhanced-hooks summary updated by tibbs Message-ID: <20090729005805.0243110F8BA@bastion2.fedora.phx.redhat.com> tibbs set package condor-ec2-enhanced-hooks summary to Condor EC2 Enhanced hooks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-ec2-enhanced-hooks From tibbs at fedoraproject.org Wed Jul 29 00:58:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:10 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks/devel - New directory Message-ID: <20090729005810.50A4B11C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz20504/rpms/condor-ec2-enhanced-hooks/devel Log Message: Directory /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:58:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:10 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks - New directory Message-ID: <20090729005810.2AF4B11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz20504/rpms/condor-ec2-enhanced-hooks Log Message: Directory /cvs/pkgs/rpms/condor-ec2-enhanced-hooks added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:58:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:16 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks Makefile,NONE,1.1 Message-ID: <20090729005816.306A911C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz20504/rpms/condor-ec2-enhanced-hooks Added Files: Makefile Log Message: Setup of module condor-ec2-enhanced-hooks --- NEW FILE Makefile --- # Top level Makefile for module condor-ec2-enhanced-hooks all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:58:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:16 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005816.6B22111C0427@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz20504/rpms/condor-ec2-enhanced-hooks/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module condor-ec2-enhanced-hooks --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: condor-ec2-enhanced-hooks # $Id: Makefile,v 1.1 2009/07/29 00:58:16 tibbs Exp $ NAME := condor-ec2-enhanced-hooks SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 00:58:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:58:37 +0000 Subject: [pkgdb] condor-ec2-enhanced was added for rrati Message-ID: <20090729005838.73F4610F8C1@bastion2.fedora.phx.redhat.com> tibbs has added Package condor-ec2-enhanced with summary Condor EC2 Enhanced AMI package tibbs has approved Package condor-ec2-enhanced tibbs has added a Fedora devel branch for condor-ec2-enhanced with an owner of rrati tibbs has approved condor-ec2-enhanced in Fedora devel tibbs has approved Package condor-ec2-enhanced tibbs has set commit to Approved for 107427 on condor-ec2-enhanced (Fedora devel) tibbs has set checkout to Approved for 107427 on condor-ec2-enhanced (Fedora devel) tibbs has set build to Approved for 107427 on condor-ec2-enhanced (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-ec2-enhanced From tibbs at fedoraproject.org Wed Jul 29 00:58:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:43 +0000 (UTC) Subject: rpms/condor-ec2-enhanced - New directory Message-ID: <20090729005843.2BB6211C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL20718/rpms/condor-ec2-enhanced Log Message: Directory /cvs/pkgs/rpms/condor-ec2-enhanced added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:58:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:43 +0000 (UTC) Subject: rpms/condor-ec2-enhanced/devel - New directory Message-ID: <20090729005843.497B311C0427@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL20718/rpms/condor-ec2-enhanced/devel Log Message: Directory /cvs/pkgs/rpms/condor-ec2-enhanced/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 00:58:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:58:38 +0000 Subject: [pkgdb] condor-ec2-enhanced summary updated by tibbs Message-ID: <20090729005838.ABEDB10F8D2@bastion2.fedora.phx.redhat.com> tibbs set package condor-ec2-enhanced summary to Condor EC2 Enhanced AMI package To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/condor-ec2-enhanced From tibbs at fedoraproject.org Wed Jul 29 00:58:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:49 +0000 (UTC) Subject: rpms/condor-ec2-enhanced Makefile,NONE,1.1 Message-ID: <20090729005849.55C6911C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL20718/rpms/condor-ec2-enhanced Added Files: Makefile Log Message: Setup of module condor-ec2-enhanced --- NEW FILE Makefile --- # Top level Makefile for module condor-ec2-enhanced all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:58:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:58:49 +0000 (UTC) Subject: rpms/condor-ec2-enhanced/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005849.9B91311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/condor-ec2-enhanced/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL20718/rpms/condor-ec2-enhanced/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module condor-ec2-enhanced --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: condor-ec2-enhanced # $Id: Makefile,v 1.1 2009/07/29 00:58:49 tibbs Exp $ NAME := condor-ec2-enhanced SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 00:59:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:59:44 +0000 Subject: [pkgdb] mozilla-adblockplus summary updated by tibbs Message-ID: <20090729005945.8B65910F8BB@bastion2.fedora.phx.redhat.com> tibbs set package mozilla-adblockplus summary to Adblocking extension for Mozilla Firefox To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mozilla-adblockplus From pkgdb at fedoraproject.org Wed Jul 29 00:59:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:59:44 +0000 Subject: [pkgdb] mozilla-adblockplus (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005946.46A3610F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for mozilla-adblockplus tibbs has set commit to Approved for 107427 on mozilla-adblockplus (Fedora 11) tibbs has set checkout to Approved for 107427 on mozilla-adblockplus (Fedora 11) tibbs has set build to Approved for 107427 on mozilla-adblockplus (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mozilla-adblockplus From pkgdb at fedoraproject.org Wed Jul 29 00:59:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:59:44 +0000 Subject: [pkgdb] mozilla-adblockplus (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005947.5D95A10F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for mozilla-adblockplus tibbs has set commit to Approved for 107427 on mozilla-adblockplus (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on mozilla-adblockplus (Fedora EPEL 5) tibbs has set build to Approved for 107427 on mozilla-adblockplus (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mozilla-adblockplus From pkgdb at fedoraproject.org Wed Jul 29 00:59:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:59:44 +0000 Subject: [pkgdb] mozilla-adblockplus (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729005947.1188E10F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for mozilla-adblockplus tibbs has set commit to Approved for 107427 on mozilla-adblockplus (Fedora 10) tibbs has set checkout to Approved for 107427 on mozilla-adblockplus (Fedora 10) tibbs has set build to Approved for 107427 on mozilla-adblockplus (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mozilla-adblockplus From tibbs at fedoraproject.org Wed Jul 29 00:59:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:59:50 +0000 (UTC) Subject: rpms/mozilla-adblockplus/devel - New directory Message-ID: <20090729005950.3736011C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mozilla-adblockplus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd21092/rpms/mozilla-adblockplus/devel Log Message: Directory /cvs/pkgs/rpms/mozilla-adblockplus/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:59:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:59:50 +0000 (UTC) Subject: rpms/mozilla-adblockplus - New directory Message-ID: <20090729005950.164B411C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mozilla-adblockplus In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd21092/rpms/mozilla-adblockplus Log Message: Directory /cvs/pkgs/rpms/mozilla-adblockplus added to the repository From tibbs at fedoraproject.org Wed Jul 29 00:59:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:59:55 +0000 (UTC) Subject: rpms/mozilla-adblockplus Makefile,NONE,1.1 Message-ID: <20090729005955.CCF4E11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mozilla-adblockplus In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd21092/rpms/mozilla-adblockplus Added Files: Makefile Log Message: Setup of module mozilla-adblockplus --- NEW FILE Makefile --- # Top level Makefile for module mozilla-adblockplus all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 00:59:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 00:59:56 +0000 (UTC) Subject: rpms/mozilla-adblockplus/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729005956.1B0F211C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mozilla-adblockplus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd21092/rpms/mozilla-adblockplus/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mozilla-adblockplus --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mozilla-adblockplus # $Id: Makefile,v 1.1 2009/07/29 00:59:55 tibbs Exp $ NAME := mozilla-adblockplus SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 01:00:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:00:43 +0000 Subject: [pkgdb] php-phpSmug (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010044.4610B10F891@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-phpSmug tibbs has set commit to Approved for 107427 on php-phpSmug (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-phpSmug (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-phpSmug (Fedora EPEL 5) tibbs changed owner of php-phpSmug in Fedora EPEL 5 to pfrields tibbs approved watchbugzilla on php-phpSmug (Fedora EPEL 5) for ke4qqq tibbs approved watchcommits on php-phpSmug (Fedora EPEL 5) for ke4qqq tibbs approved commit on php-phpSmug (Fedora EPEL 5) for ke4qqq tibbs approved build on php-phpSmug (Fedora EPEL 5) for ke4qqq tibbs approved approveacls on php-phpSmug (Fedora EPEL 5) for ke4qqq tibbs approved watchbugzilla on php-phpSmug (Fedora EPEL 5) for sparks tibbs approved watchcommits on php-phpSmug (Fedora EPEL 5) for sparks tibbs approved commit on php-phpSmug (Fedora EPEL 5) for sparks tibbs approved build on php-phpSmug (Fedora EPEL 5) for sparks tibbs approved approveacls on php-phpSmug (Fedora EPEL 5) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-phpSmug From pkgdb at fedoraproject.org Wed Jul 29 01:01:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:01:29 +0000 Subject: [pkgdb] zikula-module-News (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010131.97CC610F891@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for zikula-module-News tibbs has set commit to Approved for 107427 on zikula-module-News (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on zikula-module-News (Fedora EPEL 5) tibbs has set build to Approved for 107427 on zikula-module-News (Fedora EPEL 5) tibbs changed owner of zikula-module-News in Fedora EPEL 5 to pfrields tibbs approved watchbugzilla on zikula-module-News (Fedora EPEL 5) for ke4qqq tibbs approved watchcommits on zikula-module-News (Fedora EPEL 5) for ke4qqq tibbs approved commit on zikula-module-News (Fedora EPEL 5) for ke4qqq tibbs approved build on zikula-module-News (Fedora EPEL 5) for ke4qqq tibbs approved approveacls on zikula-module-News (Fedora EPEL 5) for ke4qqq tibbs approved watchbugzilla on zikula-module-News (Fedora EPEL 5) for sparks tibbs approved watchcommits on zikula-module-News (Fedora EPEL 5) for sparks tibbs approved commit on zikula-module-News (Fedora EPEL 5) for sparks tibbs approved build on zikula-module-News (Fedora EPEL 5) for sparks tibbs approved approveacls on zikula-module-News (Fedora EPEL 5) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-News From pkgdb at fedoraproject.org Wed Jul 29 01:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:01:58 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 was added for ke4qqq Message-ID: <20090729010159.0325D10F89D@bastion2.fedora.phx.redhat.com> tibbs has added Package php-pear-File-Bittorrent2 with summary Decode and encode data in Bittorrent format tibbs has approved Package php-pear-File-Bittorrent2 tibbs has added a Fedora devel branch for php-pear-File-Bittorrent2 with an owner of ke4qqq tibbs has approved php-pear-File-Bittorrent2 in Fedora devel tibbs has approved Package php-pear-File-Bittorrent2 tibbs has set commit to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora devel) tibbs has set checkout to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora devel) tibbs has set build to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From pkgdb at fedoraproject.org Wed Jul 29 01:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:01 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 summary updated by tibbs Message-ID: <20090729010201.A41C210F8B0@bastion2.fedora.phx.redhat.com> tibbs set package php-pear-File-Bittorrent2 summary to Decode and encode data in Bittorrent format To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From pkgdb at fedoraproject.org Wed Jul 29 01:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:01 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010202.0362910F8B9@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on php-pear-File-Bittorrent2 (Fedora devel) for sparks tibbs approved watchcommits on php-pear-File-Bittorrent2 (Fedora devel) for sparks tibbs approved commit on php-pear-File-Bittorrent2 (Fedora devel) for sparks tibbs approved build on php-pear-File-Bittorrent2 (Fedora devel) for sparks tibbs approved approveacls on php-pear-File-Bittorrent2 (Fedora devel) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From pkgdb at fedoraproject.org Wed Jul 29 01:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:01 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010202.7FDBD10F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for php-pear-File-Bittorrent2 tibbs has set commit to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 11) tibbs has set checkout to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 11) tibbs has set build to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 11) tibbs approved watchbugzilla on php-pear-File-Bittorrent2 (Fedora 11) for sparks tibbs approved watchcommits on php-pear-File-Bittorrent2 (Fedora 11) for sparks tibbs approved commit on php-pear-File-Bittorrent2 (Fedora 11) for sparks tibbs approved build on php-pear-File-Bittorrent2 (Fedora 11) for sparks tibbs approved approveacls on php-pear-File-Bittorrent2 (Fedora 11) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From pkgdb at fedoraproject.org Wed Jul 29 01:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:01 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010204.15A2210F8C4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-pear-File-Bittorrent2 tibbs has set commit to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora EPEL 5) tibbs approved watchbugzilla on php-pear-File-Bittorrent2 (Fedora EPEL 5) for sparks tibbs approved watchcommits on php-pear-File-Bittorrent2 (Fedora EPEL 5) for sparks tibbs approved commit on php-pear-File-Bittorrent2 (Fedora EPEL 5) for sparks tibbs approved build on php-pear-File-Bittorrent2 (Fedora EPEL 5) for sparks tibbs approved approveacls on php-pear-File-Bittorrent2 (Fedora EPEL 5) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From tibbs at fedoraproject.org Wed Jul 29 01:02:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:08 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/devel - New directory Message-ID: <20090729010208.3F72911C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsf22029/rpms/php-pear-File-Bittorrent2/devel Log Message: Directory /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 01:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:01 +0000 Subject: [pkgdb] php-pear-File-Bittorrent2 (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729010204.CE3F210F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for php-pear-File-Bittorrent2 tibbs has set commit to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 10) tibbs has set checkout to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 10) tibbs has set build to Approved for 107427 on php-pear-File-Bittorrent2 (Fedora 10) tibbs approved watchbugzilla on php-pear-File-Bittorrent2 (Fedora 10) for sparks tibbs approved watchcommits on php-pear-File-Bittorrent2 (Fedora 10) for sparks tibbs approved commit on php-pear-File-Bittorrent2 (Fedora 10) for sparks tibbs approved build on php-pear-File-Bittorrent2 (Fedora 10) for sparks tibbs approved approveacls on php-pear-File-Bittorrent2 (Fedora 10) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-File-Bittorrent2 From tibbs at fedoraproject.org Wed Jul 29 01:02:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:08 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2 - New directory Message-ID: <20090729010208.222C311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsf22029/rpms/php-pear-File-Bittorrent2 Log Message: Directory /cvs/pkgs/rpms/php-pear-File-Bittorrent2 added to the repository From tibbs at fedoraproject.org Wed Jul 29 01:02:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:13 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2 Makefile,NONE,1.1 Message-ID: <20090729010213.E410611C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsf22029/rpms/php-pear-File-Bittorrent2 Added Files: Makefile Log Message: Setup of module php-pear-File-Bittorrent2 --- NEW FILE Makefile --- # Top level Makefile for module php-pear-File-Bittorrent2 all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 01:02:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:14 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729010214.29CC511C0423@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsf22029/rpms/php-pear-File-Bittorrent2/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-pear-File-Bittorrent2 --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-pear-File-Bittorrent2 # $Id: Makefile,v 1.1 2009/07/29 01:02:14 tibbs Exp $ NAME := php-pear-File-Bittorrent2 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 01:02:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:43 +0000 Subject: [pkgdb] mailody was added for red Message-ID: <20090729010243.9C48C10F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package mailody with summary Simple mail client tibbs has approved Package mailody tibbs has added a Fedora devel branch for mailody with an owner of red tibbs has approved mailody in Fedora devel tibbs has approved Package mailody tibbs has set commit to Approved for 107427 on mailody (Fedora devel) tibbs has set checkout to Approved for 107427 on mailody (Fedora devel) tibbs has set build to Approved for 107427 on mailody (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mailody From pkgdb at fedoraproject.org Wed Jul 29 01:02:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:44 +0000 Subject: [pkgdb] mailody summary updated by tibbs Message-ID: <20090729010244.916AC10F89D@bastion2.fedora.phx.redhat.com> tibbs set package mailody summary to Simple mail client To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mailody From pkgdb at fedoraproject.org Wed Jul 29 01:02:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:44 +0000 Subject: [pkgdb] mailody (Fedora, 11) updated by tibbs Message-ID: <20090729010245.04F1710F89F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for mailody tibbs has set commit to Approved for 107427 on mailody (Fedora 11) tibbs has set checkout to Approved for 107427 on mailody (Fedora 11) tibbs has set build to Approved for 107427 on mailody (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mailody From tibbs at fedoraproject.org Wed Jul 29 01:02:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:49 +0000 (UTC) Subject: rpms/mailody - New directory Message-ID: <20090729010249.174D311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mailody In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx22448/rpms/mailody Log Message: Directory /cvs/pkgs/rpms/mailody added to the repository From pkgdb at fedoraproject.org Wed Jul 29 01:02:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:02:44 +0000 Subject: [pkgdb] mailody (Fedora, 11) updated by tibbs Message-ID: <20090729010245.5877510F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for mailody tibbs has set commit to Approved for 107427 on mailody (Fedora 10) tibbs has set checkout to Approved for 107427 on mailody (Fedora 10) tibbs has set build to Approved for 107427 on mailody (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mailody From tibbs at fedoraproject.org Wed Jul 29 01:02:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:49 +0000 (UTC) Subject: rpms/mailody/devel - New directory Message-ID: <20090729010249.365FC11C0423@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mailody/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx22448/rpms/mailody/devel Log Message: Directory /cvs/pkgs/rpms/mailody/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 01:02:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:55 +0000 (UTC) Subject: rpms/mailody Makefile,NONE,1.1 Message-ID: <20090729010255.5BCA311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mailody In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx22448/rpms/mailody Added Files: Makefile Log Message: Setup of module mailody --- NEW FILE Makefile --- # Top level Makefile for module mailody all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 01:02:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:02:55 +0000 (UTC) Subject: rpms/mailody/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729010255.9275B11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mailody/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsx22448/rpms/mailody/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mailody --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mailody # $Id: Makefile,v 1.1 2009/07/29 01:02:55 tibbs Exp $ NAME := mailody SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Wed Jul 29 01:05:40 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:05:40 +0000 (UTC) Subject: rpms/kobby/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729010540.B907811C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kobby/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB23252/rpms/kobby/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module kobby --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: kobby # $Id: Makefile,v 1.1 2009/07/29 01:05:40 tibbs Exp $ NAME := kobby SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Wed Jul 29 01:05:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:05:39 +0000 (UTC) Subject: rpms/kobby Makefile,NONE,1.1 Message-ID: <20090729010539.BE93311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kobby In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB23252/rpms/kobby Added Files: Makefile Log Message: Setup of module kobby --- NEW FILE Makefile --- # Top level Makefile for module kobby all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Wed Jul 29 01:05:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:05:24 +0000 Subject: [pkgdb] kobby was added for mathstuf Message-ID: <20090729010524.B4A9210F891@bastion2.fedora.phx.redhat.com> tibbs has added Package kobby with summary Collaborative editor usign the infinote protocol tibbs has approved Package kobby tibbs has added a Fedora devel branch for kobby with an owner of mathstuf tibbs has approved kobby in Fedora devel tibbs has approved Package kobby tibbs has set commit to Approved for 107427 on kobby (Fedora devel) tibbs has set checkout to Approved for 107427 on kobby (Fedora devel) tibbs has set build to Approved for 107427 on kobby (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kobby From pkgdb at fedoraproject.org Wed Jul 29 01:05:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:05:25 +0000 Subject: [pkgdb] kobby summary updated by tibbs Message-ID: <20090729010525.9FE8910F89E@bastion2.fedora.phx.redhat.com> tibbs set package kobby summary to Collaborative editor usign the infinote protocol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kobby From tibbs at fedoraproject.org Wed Jul 29 01:05:33 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:05:33 +0000 (UTC) Subject: rpms/kobby - New directory Message-ID: <20090729010533.39A3F11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kobby In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB23252/rpms/kobby Log Message: Directory /cvs/pkgs/rpms/kobby added to the repository From tibbs at fedoraproject.org Wed Jul 29 01:05:33 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 01:05:33 +0000 (UTC) Subject: rpms/kobby/devel - New directory Message-ID: <20090729010533.6A5A411C00E8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kobby/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB23252/rpms/kobby/devel Log Message: Directory /cvs/pkgs/rpms/kobby/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 01:05:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:05:25 +0000 Subject: [pkgdb] kobby (Fedora, 11) updated by tibbs Message-ID: <20090729010525.DF42110F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for kobby tibbs has set commit to Approved for 107427 on kobby (Fedora 11) tibbs has set checkout to Approved for 107427 on kobby (Fedora 11) tibbs has set build to Approved for 107427 on kobby (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kobby From pkgdb at fedoraproject.org Wed Jul 29 01:05:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 01:05:25 +0000 Subject: [pkgdb] kobby (Fedora, 11) updated by tibbs Message-ID: <20090729010526.40C0710F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for kobby tibbs has set commit to Approved for 107427 on kobby (Fedora 10) tibbs has set checkout to Approved for 107427 on kobby (Fedora 10) tibbs has set build to Approved for 107427 on kobby (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kobby From pfrields at fedoraproject.org Wed Jul 29 01:10:14 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:10:14 +0000 (UTC) Subject: rpms/php-phpSmug/devel import.log, NONE, 1.1 phpSmug.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729011014.4127B11C04D6@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25223/devel Modified Files: .cvsignore sources Added Files: import.log phpSmug.spec Log Message: Initial import --- NEW FILE import.log --- php-phpSmug-2_0_2-3_fc11:HEAD:php-phpSmug-2.0.2-3.fc11.src.rpm:1248829786 --- NEW FILE phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 3%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:28:43 -0000 1.1 +++ .cvsignore 29 Jul 2009 01:10:13 -0000 1.2 @@ -0,0 +1 @@ +phpSmug-2.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:28:43 -0000 1.1 +++ sources 29 Jul 2009 01:10:13 -0000 1.2 @@ -0,0 +1 @@ +015322d0c437bf3eca2995545436f8b6 phpSmug-2.0.2.tar.bz2 From pfrields at fedoraproject.org Wed Jul 29 01:12:16 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:12:16 +0000 (UTC) Subject: rpms/php-phpSmug/F-11 phpSmug.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729011216.4342911C00D4@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26027 Modified Files: .cvsignore sources Added Files: phpSmug.spec Log Message: Start F-11 branch --- NEW FILE phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 3%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:28:43 -0000 1.1 +++ .cvsignore 29 Jul 2009 01:12:16 -0000 1.2 @@ -0,0 +1 @@ +phpSmug-2.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:28:43 -0000 1.1 +++ sources 29 Jul 2009 01:12:16 -0000 1.2 @@ -0,0 +1 @@ +015322d0c437bf3eca2995545436f8b6 phpSmug-2.0.2.tar.bz2 From pfrields at fedoraproject.org Wed Jul 29 01:14:28 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:14:28 +0000 (UTC) Subject: rpms/php-phpSmug/EL-5 phpSmug.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729011428.EE52F11C00D4@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26644 Modified Files: .cvsignore sources Added Files: phpSmug.spec Log Message: Start EL-5 branch --- NEW FILE phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 3%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:28:43 -0000 1.1 +++ .cvsignore 29 Jul 2009 01:14:28 -0000 1.2 @@ -0,0 +1 @@ +phpSmug-2.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-phpSmug/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:28:43 -0000 1.1 +++ sources 29 Jul 2009 01:14:28 -0000 1.2 @@ -0,0 +1 @@ +015322d0c437bf3eca2995545436f8b6 phpSmug-2.0.2.tar.bz2 From pfrields at fedoraproject.org Wed Jul 29 01:17:31 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:17:31 +0000 (UTC) Subject: rpms/php-phpSmug/EL-5 php-phpSmug.spec, NONE, 1.1 phpSmug.spec, 1.1, NONE Message-ID: <20090729011731.D002C11C00D4@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27506/EL-5 Added Files: php-phpSmug.spec Removed Files: phpSmug.spec Log Message: Rename specfile, naming fail --- NEW FILE php-phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 4%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Tue Jul 28 2009 Paul W. Frields - 2.0.2-4 - Bump release for specfile name change * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release --- phpSmug.spec DELETED --- From pfrields at fedoraproject.org Wed Jul 29 01:17:32 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:17:32 +0000 (UTC) Subject: rpms/php-phpSmug/F-11 php-phpSmug.spec, NONE, 1.1 phpSmug.spec, 1.1, NONE Message-ID: <20090729011732.0E8A511C00D4@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27506/F-11 Added Files: php-phpSmug.spec Removed Files: phpSmug.spec Log Message: Rename specfile, naming fail --- NEW FILE php-phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 4%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Tue Jul 28 2009 Paul W. Frields - 2.0.2-4 - Bump release for specfile name change * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release --- phpSmug.spec DELETED --- From pfrields at fedoraproject.org Wed Jul 29 01:17:32 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 29 Jul 2009 01:17:32 +0000 (UTC) Subject: rpms/php-phpSmug/devel php-phpSmug.spec, NONE, 1.1 phpSmug.spec, 1.1, NONE Message-ID: <20090729011732.4572911C00D4@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-phpSmug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27506/devel Added Files: php-phpSmug.spec Removed Files: phpSmug.spec Log Message: Rename specfile, naming fail --- NEW FILE php-phpSmug.spec --- %global origname phpSmug Name: php-phpSmug Version: 2.0.2 Release: 4%{?dist} Summary: PHP wrapper for the SmugMug API Group: Development/Libraries License: LGPLv3 URL: http://phpsmug.com Source0: http://phpsmug.com/downloads/hg/%{origname}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php Requires: php-pear-DB php-pear-HTTP-Request php-pear-Net-Socket Requires: php-pear-Net-URL %description phpSmug is an award winning PHP wrapper class for the SmugMug API written and maintained by Colin Seymour. The intention of this class is to allow PHP application developers to quickly and easily interact with the SmugMug API in their applications, without having to worry about the finer details of the API. phpSmug is based on the great work of Dan Coulter in phpFlickr. %prep %setup -qn %{origname} %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/%{origname} cp -pr %{origname}.php $RPM_BUILD_ROOT%{_datadir}/php/%{origname} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt examples/* %{_datadir}/php/%{origname} %changelog * Tue Jul 28 2009 Paul W. Frields - 2.0.2-4 - Bump release for specfile name change * Sun Jul 26 2009 Paul W. Frields - 2.0.2-3 - Fix name as suggested in guidelines * Thu Jul 16 2009 Paul W. Frields - 2.0.2-2 - Fix packaging errors * Sun Jul 12 2009 Paul W. Frields - 2.0.2-1 - Initial package release --- phpSmug.spec DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 00:59:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 00:59:43 +0000 Subject: [pkgdb] mozilla-adblockplus was added for ixs Message-ID: <20090729005944.227F810F897@bastion2.fedora.phx.redhat.com> tibbs has added Package mozilla-adblockplus with summary Adblocking extension for Mozilla Firefox tibbs has approved Package mozilla-adblockplus tibbs has added a Fedora devel branch for mozilla-adblockplus with an owner of ixs tibbs has approved mozilla-adblockplus in Fedora devel tibbs has approved Package mozilla-adblockplus tibbs has set commit to Approved for 107427 on mozilla-adblockplus (Fedora devel) tibbs has set checkout to Approved for 107427 on mozilla-adblockplus (Fedora devel) tibbs has set build to Approved for 107427 on mozilla-adblockplus (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mozilla-adblockplus From cebbert at fedoraproject.org Wed Jul 29 01:42:08 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 01:42:08 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc4-git3.bz2.sign, NONE, 1.1 .cvsignore, 1.1103, 1.1104 kernel.spec, 1.1668, 1.1669 sources, 1.1061, 1.1062 upstream, 1.975, 1.976 linux-2.6-ecryptfs-overflow-fixes.patch, 1.1, NONE patch-2.6.31-rc4-git2.bz2.sign, 1.1, NONE Message-ID: <20090729014208.2492C11C00D4@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2015 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc4-git3.bz2.sign Removed Files: linux-2.6-ecryptfs-overflow-fixes.patch patch-2.6.31-rc4-git2.bz2.sign Log Message: Linux 2.6.31-rc4-git3 Drop linux-2.6-ecryptfs-overflow-fixes.patch, merged upstream now. --- NEW FILE patch-2.6.31-rc4-git3.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKb5KtyGugalF9Dw4RAsJKAJ0eS3enYAIB2yAKymI0d/J4WS9VcQCfUmi8 crlvA50OCRG3S4gxlQRYnvU= =0kRM -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1103 retrieving revision 1.1104 diff -u -p -r1.1103 -r1.1104 --- .cvsignore 28 Jul 2009 13:35:42 -0000 1.1103 +++ .cvsignore 29 Jul 2009 01:42:07 -0000 1.1104 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 -patch-2.6.31-rc4-git2.bz2 +patch-2.6.31-rc4-git3.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1668 retrieving revision 1.1669 diff -u -p -r1.1668 -r1.1669 --- kernel.spec 29 Jul 2009 00:34:59 -0000 1.1668 +++ kernel.spec 29 Jul 2009 01:42:07 -0000 1.1669 @@ -61,7 +61,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 4 # The git snapshot level -%define gitrev 2 +%define gitrev 3 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -607,8 +607,6 @@ Patch150: linux-2.6.29-sparc-IOC_TYPECHE Patch160: linux-2.6-execshield.patch -Patch200: linux-2.6-ecryptfs-overflow-fixes.patch - Patch250: linux-2.6-debug-sizeof-structs.patch Patch260: linux-2.6-debug-nmi-timeout.patch Patch270: linux-2.6-debug-taint-vm.patch @@ -1155,7 +1153,6 @@ ApplyPatch linux-2.6-execshield.patch # btrfs # eCryptfs -ApplyPatch linux-2.6-ecryptfs-overflow-fixes.patch # NFSv4 ApplyPatch linux-2.6-nfsd4-proots.patch @@ -1906,6 +1903,10 @@ fi # and build. %changelog +* Wed Jul 29 2009 Chuck Ebbert +- Linux 2.6.31-rc4-git3 +- Drop linux-2.6-ecryptfs-overflow-fixes.patch, merged upstream now. + * Wed Jul 29 2009 Dave Airlie - update VGA arb patches Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1061 retrieving revision 1.1062 diff -u -p -r1.1061 -r1.1062 --- sources 28 Jul 2009 13:35:42 -0000 1.1061 +++ sources 29 Jul 2009 01:42:07 -0000 1.1062 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 879f514ce009b9a7535b743f71cd3c02 patch-2.6.31-rc4.bz2 -a938ea7066785d6cbeba8188aa15c7c8 patch-2.6.31-rc4-git2.bz2 +c7015e64d87ae5573ee85308ec680082 patch-2.6.31-rc4-git3.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.975 retrieving revision 1.976 diff -u -p -r1.975 -r1.976 --- upstream 28 Jul 2009 13:35:42 -0000 1.975 +++ upstream 29 Jul 2009 01:42:07 -0000 1.976 @@ -1,4 +1,3 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 - -patch-2.6.31-rc4-git2.bz2 +patch-2.6.31-rc4-git3.bz2 --- linux-2.6-ecryptfs-overflow-fixes.patch DELETED --- --- patch-2.6.31-rc4-git2.bz2.sign DELETED --- From mclasen at fedoraproject.org Wed Jul 29 01:44:17 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 01:44:17 +0000 (UTC) Subject: rpms/epiphany-extensions/devel .cvsignore, 1.32, 1.33 epiphany-extensions.spec, 1.65, 1.66 sources, 1.32, 1.33 Message-ID: <20090729014417.8952D11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2469 Modified Files: .cvsignore epiphany-extensions.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 15 Jul 2009 02:49:57 -0000 1.32 +++ .cvsignore 29 Jul 2009 01:44:17 -0000 1.33 @@ -1 +1 @@ -epiphany-extensions-2.27.4.tar.bz2 +epiphany-extensions-2.27.5.tar.bz2 Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- epiphany-extensions.spec 24 Jul 2009 22:13:36 -0000 1.65 +++ epiphany-extensions.spec 29 Jul 2009 01:44:17 -0000 1.66 @@ -3,7 +3,7 @@ %global ephy_min_version %{ephy_major}.0 Name: epiphany-extensions -Version: %{ephy_major}.4 +Version: %{ephy_major}.5 Release: 2%{?dist} Summary: Extensions for Epiphany, the GNOME web browser @@ -92,6 +92,9 @@ scrollkeeper-update -q ||: %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update ot 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/sources,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- sources 15 Jul 2009 02:49:57 -0000 1.32 +++ sources 29 Jul 2009 01:44:17 -0000 1.33 @@ -1 +1 @@ -f234d3c1fa2f17b8a58352e8ad896b8b epiphany-extensions-2.27.4.tar.bz2 +493bfcb07e8588dbdba7fe3769fe5198 epiphany-extensions-2.27.5.tar.bz2 From mclasen at fedoraproject.org Wed Jul 29 01:46:49 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 01:46:49 +0000 (UTC) Subject: rpms/webkitgtk/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 webkitgtk.spec, 1.13, 1.14 Message-ID: <20090729014649.358D511C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3177 Modified Files: .cvsignore sources webkitgtk.spec Log Message: 1.1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Jul 2009 17:46:03 -0000 1.7 +++ .cvsignore 29 Jul 2009 01:46:48 -0000 1.8 @@ -1 +1 @@ -webkit-1.1.11.tar.gz +webkit-1.1.12.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 14 Jul 2009 17:46:03 -0000 1.7 +++ sources 29 Jul 2009 01:46:48 -0000 1.8 @@ -1 +1 @@ -022a72ba5b7fa9e29553c03bf027215f webkit-1.1.11.tar.gz +1a10c117a0dd3717c2bcaa7a115cf218 webkit-1.1.12.tar.gz Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- webkitgtk.spec 27 Jul 2009 07:08:46 -0000 1.13 +++ webkitgtk.spec 29 Jul 2009 01:46:49 -0000 1.14 @@ -34,8 +34,8 @@ %bcond_with wml Name: webkitgtk -Version: 1.1.11 -Release: 2%{?dist} +Version: 1.1.12 +Release: 1%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -185,6 +185,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Matthias Clasen - 1.1.12-1 +- Update to 1.1.12 + * Mon Jul 27 2009 Fedora Release Engineering - 1.1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kevin at fedoraproject.org Wed Jul 29 02:02:43 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 29 Jul 2009 02:02:43 +0000 (UTC) Subject: rpms/xfwm4/devel xfwm4-4.6.1-focus.patch, NONE, 1.1 xfwm4.spec, 1.35, 1.36 Message-ID: <20090729020243.952A411C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/xfwm4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6778 Modified Files: xfwm4.spec Added Files: xfwm4-4.6.1-focus.patch Log Message: Add patch for focus issue (fixes bug #514206) xfwm4-4.6.1-focus.patch: focus.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- NEW FILE xfwm4-4.6.1-focus.patch --- diff -Nur xfwm4-4.6.1.orig/src/focus.c xfwm4-4.6.1/src/focus.c --- xfwm4-4.6.1.orig/src/focus.c 2009-04-15 01:58:59.000000000 -0600 +++ xfwm4-4.6.1/src/focus.c 2009-07-28 19:31:44.000000000 -0600 @@ -214,7 +214,12 @@ { Client *c2 = clientGetFocus(); - if ((c2 != NULL) && (c2->win_layer == c->win_layer)) + /* + * Place windows under the currently focused only if focus + * stealing prevention had prevented the focus transition, + * otherwise, leave the unfocused window on top. + */ + if ((c2 != NULL) && (c2->win_layer == c->win_layer) && prevented) { clientSortRing(c); clientLower (c, c2->frame); Index: xfwm4.spec =================================================================== RCS file: /cvs/extras/rpms/xfwm4/devel/xfwm4.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- xfwm4.spec 27 Jul 2009 08:01:57 -0000 1.35 +++ xfwm4.spec 29 Jul 2009 02:02:43 -0000 1.36 @@ -1,11 +1,12 @@ Summary: Next generation window manager for Xfce Name: xfwm4 Version: 4.6.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfwm4-%{version}.tar.bz2 Patch0: xfwm4-4.5.92-nodoka.patch +Patch1: xfwm4-4.6.1-focus.patch Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -29,6 +30,7 @@ xfwm4 is a window manager compatible wit %setup -q # use Nodoka Theme %patch0 -p1 -b .nodoka +%patch1 -p1 -b .focus %build %configure --disable-static @@ -72,6 +74,9 @@ fi %{_libexecdir}/xfce4/xfwm4 %changelog +* Tue Jul 28 2009 Kevin Fenzi - 4.6.1-3 +- Add patch for focus issue (fixes bug #514206) + * Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From crobinso at fedoraproject.org Wed Jul 29 02:17:48 2009 From: crobinso at fedoraproject.org (Cole Robinson) Date: Wed, 29 Jul 2009 02:17:48 +0000 (UTC) Subject: rpms/python-virtinst/devel .cvsignore, 1.18, 1.19 python-virtinst.spec, 1.69, 1.70 sources, 1.18, 1.19 virtinst-0.400.3-fix-floppy-dev.patch, 1.1, NONE virtinst-0.400.3-fix-pci-assign.patch, 1.1, NONE virtinst-0.400.3-fix-virtimage-scratch.patch, 1.1, NONE virtinst-0.400.3-hostdev-libvirt-calls.patch, 1.1, NONE virtinst-0.400.3-no-default-keymap.patch, 1.1, NONE virtinst-0.400.3-selinux-context.patch, 1.3, NONE virtinst-0.400.3-selinux-warn.patch, 1.1, NONE virtinst-0.400.3-spanish-trans.patch, 1.1, NONE virtinst-0.400.3-updated-trans.patch, 1.2, NONE Message-ID: <20090729021748.C13D411C00D4@cvs1.fedora.phx.redhat.com> Author: crobinso Update of /cvs/pkgs/rpms/python-virtinst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10696 Modified Files: .cvsignore python-virtinst.spec sources Removed Files: virtinst-0.400.3-fix-floppy-dev.patch virtinst-0.400.3-fix-pci-assign.patch virtinst-0.400.3-fix-virtimage-scratch.patch virtinst-0.400.3-hostdev-libvirt-calls.patch virtinst-0.400.3-no-default-keymap.patch virtinst-0.400.3-selinux-context.patch virtinst-0.400.3-selinux-warn.patch virtinst-0.400.3-spanish-trans.patch virtinst-0.400.3-updated-trans.patch Log Message: Update to version 0.500.0 New virt-install device options --serial, --parallel, and --video Allow various auth types for libvirt connections (PolicyKit, SASL, ...) New virt-clone option --auto-clone: generates all needed input. Specify network device model via virt-install --network (Guido Gunther) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-virtinst/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 10 Mar 2009 05:26:20 -0000 1.18 +++ .cvsignore 29 Jul 2009 02:17:47 -0000 1.19 @@ -1 +1 @@ -virtinst-0.400.3.tar.gz +virtinst-0.500.0.tar.gz Index: python-virtinst.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-virtinst/devel/python-virtinst.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- python-virtinst.spec 27 Jul 2009 01:26:24 -0000 1.69 +++ python-virtinst.spec 29 Jul 2009 02:17:47 -0000 1.70 @@ -16,23 +16,9 @@ Summary: Python modules and utilities for installing virtual machines Name: python-%{appname} -Version: 0.400.3 -Release: 9%{_extra_release} +Version: 0.500.0 +Release: 1%{_extra_release} Source0: http://virt-manager.org/download/sources/%{appname}/%{appname}-%{version}.tar.gz -Patch1: %{appname}-%{version}-fix-virtimage-scratch.patch -Patch2: %{appname}-%{version}-hostdev-libvirt-calls.patch -Patch3: %{appname}-%{version}-spanish-trans.patch -Patch4: %{appname}-%{version}-selinux-context.patch -# Rawhide/F11 can auto detect keymapping (bz 487735) -Patch5: %{appname}-%{version}-no-default-keymap.patch -# Fix generating device name for floppy device (bz 493408) -Patch6: %{appname}-%{version}-fix-floppy-dev.patch -# F11 Translations (bz 493944 and bz 494358) -Patch7: %{appname}-%{version}-updated-trans.patch -# Only throw warnings if we fail to relabel install media (bz 496340) -Patch8: %{appname}-%{version}-selinux-warn.patch -# Fix PCI assignment detach/reset calls (bz 499267) -Patch9: %{appname}-%{version}-fix-pci-assign.patch License: GPLv2+ Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -59,15 +45,6 @@ and install new VMs) and virt-clone (clo %prep %setup -q -n %{appname}-%{version} -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 %build python setup.py build @@ -103,6 +80,13 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/virt-convert %changelog +* Tue Jul 28 2009 Cole Robinson - 0.500.0-1.fc12 +- Update to version 0.500.0 +- New virt-install device options --serial, --parallel, and --video +- Allow various auth types for libvirt connections (PolicyKit, SASL, ...) +- New virt-clone option --auto-clone: generates all needed input. +- Specify network device model via virt-install --network (Guido Gunther) + * Sun Jul 26 2009 Fedora Release Engineering - 0.400.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-virtinst/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 10 Mar 2009 05:26:21 -0000 1.18 +++ sources 29 Jul 2009 02:17:47 -0000 1.19 @@ -1 +1 @@ -85b570586e7584ad607bc7a53970f66f virtinst-0.400.3.tar.gz +c3bfe1d05a00435a03f39fb9f0b8a17a virtinst-0.500.0.tar.gz --- virtinst-0.400.3-fix-floppy-dev.patch DELETED --- --- virtinst-0.400.3-fix-pci-assign.patch DELETED --- --- virtinst-0.400.3-fix-virtimage-scratch.patch DELETED --- --- virtinst-0.400.3-hostdev-libvirt-calls.patch DELETED --- --- virtinst-0.400.3-no-default-keymap.patch DELETED --- --- virtinst-0.400.3-selinux-context.patch DELETED --- --- virtinst-0.400.3-selinux-warn.patch DELETED --- --- virtinst-0.400.3-spanish-trans.patch DELETED --- --- virtinst-0.400.3-updated-trans.patch DELETED --- From roland at fedoraproject.org Wed Jul 29 02:19:14 2009 From: roland at fedoraproject.org (roland) Date: Wed, 29 Jul 2009 02:19:14 +0000 (UTC) Subject: rpms/elfutils/devel elfutils-0.142.tar.bz2.sig, NONE, 1.1 .cvsignore, 1.48, 1.49 elfutils-portability.patch, 1.44, 1.45 elfutils-robustify.patch, 1.17, 1.18 elfutils.spec, 1.117, 1.118 sources, 1.52, 1.53 elfutils-0.141.tar.bz2.sig, 1.1, NONE Message-ID: <20090729021914.E412C11C00D4@cvs1.fedora.phx.redhat.com> Author: roland Update of /cvs/pkgs/rpms/elfutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11139 Modified Files: .cvsignore elfutils-portability.patch elfutils-robustify.patch elfutils.spec sources Added Files: elfutils-0.142.tar.bz2.sig Removed Files: elfutils-0.141.tar.bz2.sig Log Message: Update to 0.142 --- NEW FILE elfutils-0.142.tar.bz2.sig --- ?F ?(?:y?Dt? Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 24 Apr 2009 20:09:26 -0000 1.48 +++ .cvsignore 29 Jul 2009 02:19:14 -0000 1.49 @@ -1 +1 @@ -elfutils-0.141.tar.bz2 +elfutils-0.142.tar.bz2 elfutils-portability.patch: ChangeLog | 17 +++++ Makefile.in | 2 backends/ChangeLog | 12 +++ backends/Makefile.am | 6 + backends/Makefile.in | 8 +- config.h.in | 6 + config/Makefile.in | 2 configure | 161 ++++++++++++++++++++++++++++++++++++++++++++++++++- configure.ac | 38 +++++++++++- lib/ChangeLog | 8 ++ lib/Makefile.am | 3 lib/Makefile.in | 6 + lib/eu-config.h | 11 +++ libasm/ChangeLog | 5 + libasm/Makefile.am | 3 libasm/Makefile.in | 6 + libcpu/ChangeLog | 8 ++ libcpu/Makefile.am | 3 libcpu/Makefile.in | 11 ++- libcpu/i386_disasm.c | 1 libdw/ChangeLog | 5 + libdw/Makefile.am | 3 libdw/Makefile.in | 7 +- libdwfl/ChangeLog | 5 + libdwfl/Makefile.am | 3 libdwfl/Makefile.in | 6 + libebl/ChangeLog | 5 + libebl/Makefile.am | 3 libebl/Makefile.in | 6 + libelf/ChangeLog | 5 + libelf/Makefile.am | 3 libelf/Makefile.in | 6 + libelf/common.h | 4 - m4/Makefile.in | 2 src/ChangeLog | 22 ++++++ src/Makefile.am | 6 + src/Makefile.in | 9 ++ src/addr2line.c | 4 - src/findtextrel.c | 6 + src/readelf.c | 2 src/strings.c | 9 ++ src/strip.c | 20 +++++- tests/ChangeLog | 7 ++ tests/Makefile.am | 5 - tests/Makefile.in | 6 + tests/line2addr.c | 2 46 files changed, 431 insertions(+), 47 deletions(-) Index: elfutils-portability.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/elfutils-portability.patch,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- elfutils-portability.patch 24 Apr 2009 20:44:20 -0000 1.44 +++ elfutils-portability.patch 29 Jul 2009 02:19:14 -0000 1.45 @@ -1,6 +1,6 @@ --- elfutils/backends/ChangeLog +++ elfutils/backends/ChangeLog -@@ -33,6 +33,10 @@ +@@ -48,6 +48,10 @@ * ppc_attrs.c (ppc_check_object_attribute): Handle tag GNU_Power_ABI_Struct_Return. @@ -11,7 +11,7 @@ 2008-10-04 Ulrich Drepper * i386_reloc.def: Fix entries for TLS_GOTDESC, TLS_DESC_CALL, and -@@ -360,6 +364,11 @@ +@@ -375,6 +379,11 @@ * sparc_init.c: Likewise. * x86_64_init.c: Likewise. @@ -23,7 +23,7 @@ 2005-11-19 Roland McGrath * ppc64_reloc.def: REL30 -> ADDR30. -@@ -382,6 +391,9 @@ +@@ -397,6 +406,9 @@ * Makefile.am (uninstall): Don't try to remove $(pkgincludedir). (CLEANFILES): Add libebl_$(m).so. @@ -51,15 +51,7 @@ -std=gnu99 INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -@@ -59,7 +61,6 @@ endif - - textrel_check = if readelf -d $@ | fgrep -q TEXTREL; then exit 1; fi - -- - i386_SRCS = i386_init.c i386_symbol.c i386_corenote.c \ - i386_retval.c i386_regs.c i386_auxv.c i386_syscall.c - cpu_i386 = ../libcpu/libcpu_i386.a -@@ -115,7 +116,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -115,7 +117,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -70,7 +62,7 @@ # XXX Should not be needed... --- elfutils/backends/Makefile.in +++ elfutils/backends/Makefile.in -@@ -158,6 +158,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -163,6 +163,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -78,7 +70,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -187,6 +188,7 @@ SHELL = @SHELL@ +@@ -192,6 +193,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -86,7 +78,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -245,9 +247,9 @@ top_builddir = @top_builddir@ +@@ -250,9 +252,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -98,7 +90,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -I$(top_srcdir)/lib -I.. -@@ -650,7 +652,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -680,7 +682,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -149,7 +141,7 @@ * configure.ac [AH_BOTTOM] (INTDECL, _INTDECL): New macros. --- elfutils/config/Makefile.in +++ elfutils/config/Makefile.in -@@ -73,6 +73,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -76,6 +76,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -157,7 +149,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -102,6 +103,7 @@ SHELL = @SHELL@ +@@ -105,6 +106,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -186,7 +178,7 @@ #include --- elfutils/configure +++ elfutils/configure -@@ -642,6 +642,8 @@ NATIVE_LD_FALSE +@@ -644,6 +644,8 @@ NATIVE_LD_FALSE NATIVE_LD_TRUE DATADIRNAME LOCALEDIR @@ -195,7 +187,7 @@ LEXLIB LEX_OUTPUT_ROOT LEX -@@ -4041,6 +4043,152 @@ $as_echo "$as_me: error: gcc with C99 su +@@ -4094,6 +4096,152 @@ $as_echo "$as_me: error: gcc with C99 su fi @@ -348,7 +340,7 @@ { $as_echo "$as_me:$LINENO: checking for __thread support" >&5 $as_echo_n "checking for __thread support... " >&6; } if test "${ac_cv_tls+set}" = set; then -@@ -4106,9 +4254,18 @@ fi +@@ -4159,9 +4307,18 @@ fi { $as_echo "$as_me:$LINENO: result: $ac_cv_tls" >&5 $as_echo "$ac_cv_tls" >&6; } if test "x$ac_cv_tls" != xyes; then @@ -484,7 +476,7 @@ noinst_LIBRARIES = libeu.a --- elfutils/lib/Makefile.in +++ elfutils/lib/Makefile.in -@@ -94,6 +94,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -98,6 +98,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -492,7 +484,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -123,6 +124,7 @@ SHELL = @SHELL@ +@@ -127,6 +128,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -500,7 +492,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -181,9 +183,9 @@ top_builddir = @top_builddir@ +@@ -185,9 +187,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -545,7 +537,7 @@ -I$(top_srcdir)/lib --- elfutils/libasm/Makefile.in +++ elfutils/libasm/Makefile.in -@@ -128,6 +128,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -145,6 +145,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -553,7 +545,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -157,6 +158,7 @@ SHELL = @SHELL@ +@@ -174,6 +175,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -561,7 +553,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -215,9 +217,9 @@ top_builddir = @top_builddir@ +@@ -232,9 +234,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Werror -Wunused \ @@ -621,7 +613,7 @@ $(if $($(*F)_no_Werror),,-Werror) --- elfutils/libcpu/Makefile.in +++ elfutils/libcpu/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -114,6 +114,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -629,7 +621,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = lex.$( @@ -688,7 +680,7 @@ --- elfutils/libdw/Makefile.in +++ elfutils/libdw/Makefile.in -@@ -165,6 +165,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -186,6 +186,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -696,7 +688,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -194,6 +195,7 @@ SHELL = @SHELL@ +@@ -215,6 +216,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -704,7 +696,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -252,9 +254,10 @@ top_builddir = @top_builddir@ +@@ -273,9 +275,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Werror -Wshadow \ @@ -719,7 +711,7 @@ $(COMPILE))) --- elfutils/libdwfl/ChangeLog +++ elfutils/libdwfl/ChangeLog -@@ -1076,6 +1076,11 @@ +@@ -1098,6 +1098,11 @@ 2005-07-21 Roland McGrath @@ -750,7 +742,7 @@ VERSION = 1 --- elfutils/libdwfl/Makefile.in +++ elfutils/libdwfl/Makefile.in -@@ -156,6 +156,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -176,6 +176,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -758,7 +750,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -185,6 +186,7 @@ SHELL = @SHELL@ +@@ -205,6 +206,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -766,7 +758,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -243,9 +245,9 @@ top_builddir = @top_builddir@ +@@ -263,9 +265,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Werror -Wshadow -Wunused -Wformat=2 \ @@ -780,7 +772,7 @@ --- elfutils/libebl/ChangeLog +++ elfutils/libebl/ChangeLog -@@ -569,6 +569,11 @@ +@@ -593,6 +593,11 @@ * Makefile.am (libebl_*_so_SOURCES): Set to $(*_SRCS) so dependency tracking works right. @@ -811,7 +803,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ --- elfutils/libebl/Makefile.in +++ elfutils/libebl/Makefile.in -@@ -124,6 +124,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -141,6 +141,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -819,7 +811,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -153,6 +154,7 @@ SHELL = @SHELL@ +@@ -170,6 +171,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -827,7 +819,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -211,9 +213,9 @@ top_builddir = @top_builddir@ +@@ -228,9 +230,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -841,7 +833,7 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -537,6 +537,11 @@ +@@ -576,6 +576,11 @@ * elf.h: Update from glibc. @@ -894,7 +886,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/libelf/Makefile.in +++ elfutils/libelf/Makefile.in -@@ -172,6 +172,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -188,6 +188,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -902,7 +894,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -201,6 +202,7 @@ SHELL = @SHELL@ +@@ -217,6 +218,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -910,7 +902,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -259,10 +261,10 @@ top_builddir = @top_builddir@ +@@ -275,10 +277,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Wshadow -Werror \ @@ -925,7 +917,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/m4/Makefile.in +++ elfutils/m4/Makefile.in -@@ -72,6 +72,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -75,6 +75,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -933,7 +925,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -101,6 +102,7 @@ SHELL = @SHELL@ +@@ -104,6 +105,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -943,7 +935,7 @@ YACC = @YACC@ --- elfutils/Makefile.in +++ elfutils/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -155,6 +155,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -951,7 +943,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -139,6 +140,7 @@ SHELL = @SHELL@ +@@ -184,6 +185,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -976,7 +968,7 @@ /* It was symbol+offset. */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -91,6 +91,8 @@ +@@ -155,6 +155,8 @@ * readelf.c (print_debug_frame_section): Use t instead of j formats for ptrdiff_t OFFSET. @@ -985,7 +977,7 @@ 2009-01-21 Ulrich Drepper * elflint.c (check_program_header): Fix typo in .eh_frame_hdr section -@@ -274,6 +276,11 @@ +@@ -338,6 +340,11 @@ that matches its PT_LOAD's p_flags &~ PF_W. On sparc, PF_X really is valid in RELRO. @@ -997,7 +989,7 @@ 2008-02-29 Roland McGrath * readelf.c (print_attributes): Add a cast. -@@ -525,6 +532,8 @@ +@@ -589,6 +596,8 @@ * readelf.c (hex_dump): Fix rounding error in whitespace calculation. @@ -1006,7 +998,7 @@ 2007-10-15 Roland McGrath * make-debug-archive.in: New file. -@@ -964,6 +973,10 @@ +@@ -1028,6 +1037,10 @@ * elflint.c (valid_e_machine): Add EM_ALPHA. Reported by Christian Aichinger . @@ -1017,7 +1009,7 @@ 2006-08-08 Ulrich Drepper * elflint.c (check_dynamic): Don't require DT_HASH for DT_SYMTAB. -@@ -1040,6 +1053,10 @@ +@@ -1104,6 +1117,10 @@ * Makefile.am: Add hacks to create dependency files for non-generic linker. @@ -1028,7 +1020,7 @@ 2006-06-12 Ulrich Drepper * ldgeneric.c (ld_generic_generate_sections): Don't create .interp -@@ -1388,6 +1405,11 @@ +@@ -1452,6 +1469,11 @@ * readelf.c (print_debug_loc_section): Fix indentation for larger address size. @@ -1086,7 +1078,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/Makefile.in +++ elfutils/src/Makefile.in -@@ -202,6 +202,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -226,6 +226,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1094,7 +1086,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -231,6 +232,7 @@ SHELL = @SHELL@ +@@ -255,6 +256,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1102,7 +1094,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -d -@@ -291,13 +293,13 @@ zip_LIBS = @zip_LIBS@ +@@ -315,13 +317,13 @@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Wshadow -std=gnu99 \ @MUDFLAP_FALSE@ $(native_ld_cflags) $(if \ @MUDFLAP_FALSE@ $($(*F)_no_Werror),,-Werror) $(if \ @@ -1118,7 +1110,7 @@ @MUDFLAP_TRUE@ $($(*F)_no_Wformat),-Wno-format,-Wformat=2) \ @MUDFLAP_TRUE@ $(CFLAGS_$(*F)) INCLUDES = -I$(srcdir) -I$(srcdir)/../libelf -I$(srcdir)/../libebl \ -@@ -343,6 +345,9 @@ strings_no_Wformat = yes +@@ -367,6 +369,9 @@ strings_no_Wformat = yes addr2line_no_Wformat = yes # XXX While the file is not finished, don't warn about this ldgeneric_no_Wunused = yes @@ -1130,7 +1122,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -7443,7 +7443,7 @@ dump_archive_index (Elf *elf, const char +@@ -7591,7 +7591,7 @@ dump_archive_index (Elf *elf, const char if (unlikely (elf_rand (elf, as_off) == 0) || unlikely ((subelf = elf_begin (-1, ELF_C_READ_MMAP, elf)) == NULL)) @@ -1220,7 +1212,7 @@ cannot set access and modification date of '%s'"), fname); --- elfutils/tests/ChangeLog +++ elfutils/tests/ChangeLog -@@ -106,6 +106,8 @@ +@@ -124,6 +124,8 @@ 2008-01-21 Roland McGrath @@ -1229,7 +1221,7 @@ * testfile45.S.bz2: Add tests for cltq, cqto. * testfile45.expect.bz2: Adjust. -@@ -814,6 +816,11 @@ +@@ -832,6 +834,11 @@ * Makefile.am (TESTS): Add run-elflint-test.sh. (EXTRA_DIST): Add run-elflint-test.sh and testfile18.bz2. @@ -1272,7 +1264,7 @@ endif --- elfutils/tests/Makefile.in +++ elfutils/tests/Makefile.in -@@ -343,6 +343,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -359,6 +359,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1280,7 +1272,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -372,6 +373,7 @@ SHELL = @SHELL@ +@@ -388,6 +389,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1288,7 +1280,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -429,10 +431,10 @@ top_build_prefix = @top_build_prefix@ +@@ -445,10 +447,10 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ elfutils-robustify.patch: libelf/ChangeLog | 43 +++++++++++++++++ libelf/elf32_getphdr.c | 10 ++++ libelf/elf32_getshdr.c | 15 +++++- libelf/elf32_newphdr.c | 6 ++ libelf/elf32_updatefile.c | 7 ++ libelf/elf_begin.c | 46 ++++++++++++++++++- libelf/elf_getarsym.c | 3 + libelf/elf_getshdrstrndx.c | 38 ++++++++++++++- libelf/elf_newscn.c | 10 +++- libelf/gelf_getdyn.c | 6 +- libelf/gelf_getlib.c | 3 - libelf/gelf_getmove.c | 3 - libelf/gelf_getrel.c | 12 +--- libelf/gelf_getrela.c | 12 +--- libelf/gelf_getsym.c | 6 +- libelf/gelf_getsyminfo.c | 3 - libelf/gelf_getsymshndx.c | 10 ++-- libelf/gelf_getversym.c | 3 - libelf/gelf_update_dyn.c | 12 +--- libelf/gelf_update_lib.c | 9 --- libelf/gelf_update_move.c | 2 libelf/gelf_update_rel.c | 12 +--- libelf/gelf_update_rela.c | 12 +--- libelf/gelf_update_sym.c | 12 +--- libelf/gelf_update_syminfo.c | 9 --- libelf/gelf_update_symshndx.c | 12 +--- libelf/gelf_update_versym.c | 2 libelf/libelfP.h | 9 +++ src/ChangeLog | 23 +++++++++ src/elflint.c | 101 +++++++++++++++++++++++++++++++----------- src/readelf.c | 92 +++++++++++++++++++++++++++----------- src/strip.c | 70 +++++++++++++++++++---------- 32 files changed, 446 insertions(+), 167 deletions(-) Index: elfutils-robustify.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/elfutils-robustify.patch,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- elfutils-robustify.patch 24 Apr 2009 20:44:20 -0000 1.17 +++ elfutils-robustify.patch 29 Jul 2009 02:19:14 -0000 1.18 @@ -1,6 +1,6 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -529,6 +529,49 @@ +@@ -568,6 +568,49 @@ If section content hasn't been read yet, do it before looking for the block size. If no section data present, infer size of section header. @@ -73,8 +73,8 @@ +++ elfutils/libelf/elf32_getshdr.c @@ -1,5 +1,5 @@ /* Return section header. -- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007 Red Hat, Inc. -+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2008 Red Hat, Inc. +- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2009 Red Hat, Inc. ++ Copyright (C) 1998-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 1998. @@ -82,8 +82,8 @@ goto out; size_t shnum; -- if (__elf_getshnum_rdlock (elf, &shnum) != 0) -+ if (__elf_getshnum_rdlock (elf, &shnum) != 0 +- if (__elf_getshdrnum_rdlock (elf, &shnum) != 0) ++ if (__elf_getshdrnum_rdlock (elf, &shnum) != 0 + || shnum > SIZE_MAX / sizeof (ElfW2(LIBELFBITS,Shdr))) goto out; size_t size = shnum * sizeof (ElfW2(LIBELFBITS,Shdr)); @@ -132,7 +132,7 @@ Elf_ScnList *list = &elf->state.ELFW(elf,LIBELFBITS).scns; Elf_Scn **scns = (Elf_Scn **) alloca (shnum * sizeof (Elf_Scn *)); char *const shdr_start = ((char *) elf->map_address + elf->start_offset -@@ -633,6 +636,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf +@@ -636,6 +639,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf /* Write all the sections. Well, only those which are modified. */ if (shnum > 0) { @@ -252,9 +252,9 @@ || n * sizeof (uint32_t) > index_size) { /* This index table cannot be right since it does not fit into ---- elfutils/libelf/elf_getshstrndx.c -+++ elfutils/libelf/elf_getshstrndx.c -@@ -125,10 +125,25 @@ elf_getshstrndx (elf, dst) +--- elfutils/libelf/elf_getshdrstrndx.c ++++ elfutils/libelf/elf_getshdrstrndx.c +@@ -125,10 +125,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf32.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -282,7 +282,7 @@ else { /* We avoid reading in all the section headers. Just read -@@ -163,10 +178,25 @@ elf_getshstrndx (elf, dst) +@@ -163,10 +178,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf64.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -776,7 +776,7 @@ __libelf_seterrno (ELF_E_INVALID_INDEX); --- elfutils/libelf/libelfP.h +++ elfutils/libelf/libelfP.h -@@ -611,4 +611,13 @@ extern uint32_t __libelf_crc32 (uint32_t +@@ -606,4 +606,13 @@ extern uint32_t __libelf_crc32 (uint32_t /* Align offset to 4 bytes as needed for note name and descriptor data. */ #define NOTE_ALIGN(n) (((n) + 3) & -4U) @@ -792,7 +792,7 @@ #endif /* libelfP.h */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -1376,6 +1376,16 @@ +@@ -1440,6 +1440,16 @@ object symbols or symbols with unknown type. (check_rel): Likewise. @@ -809,7 +809,7 @@ 2005-06-08 Roland McGrath * readelf.c (print_ops): Add consts. -@@ -1421,6 +1431,19 @@ +@@ -1485,6 +1495,19 @@ * readelf.c (dwarf_tag_string): Add new tags. @@ -873,7 +873,7 @@ static void check_elf_header (Ebl *ebl, GElf_Ehdr *ehdr, size_t size) { -@@ -611,7 +619,8 @@ section [%2d] '%s': symbol table cannot +@@ -612,7 +620,8 @@ section [%2d] '%s': symbol table cannot } } @@ -883,7 +883,7 @@ ERROR (gettext ("\ section [%2u] '%s': entry size is does not match ElfXX_Sym\n"), idx, section_name (ebl, idx)); -@@ -649,7 +658,7 @@ section [%2d] '%s': XINDEX for zeroth en +@@ -650,7 +659,7 @@ section [%2d] '%s': XINDEX for zeroth en xndxscnidx, section_name (ebl, xndxscnidx)); } @@ -892,7 +892,7 @@ { sym = gelf_getsymshndx (data, xndxdata, cnt, &sym_mem, &xndx); if (sym == NULL) -@@ -669,7 +678,8 @@ section [%2d] '%s': symbol %zu: invalid +@@ -670,7 +679,8 @@ section [%2d] '%s': symbol %zu: invalid else { name = elf_strptr (ebl->elf, shdr->sh_link, sym->st_name); @@ -902,7 +902,7 @@ } if (sym->st_shndx == SHN_XINDEX) -@@ -999,9 +1009,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1018,9 +1028,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Shdr rcshdr_mem; const GElf_Shdr *rcshdr = gelf_getshdr (scn, &rcshdr_mem); @@ -916,7 +916,7 @@ { /* Found the dynamic section. Look through it. */ Elf_Data *d = elf_getdata (scn, NULL); -@@ -1011,7 +1023,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1030,7 +1042,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (d, cnt, &dyn_mem); @@ -927,7 +927,7 @@ if (dyn->d_tag == DT_RELCOUNT) { -@@ -1025,7 +1039,9 @@ section [%2d] '%s': DT_RELCOUNT used for +@@ -1044,7 +1058,9 @@ section [%2d] '%s': DT_RELCOUNT used for /* Does the number specified number of relative relocations exceed the total number of relocations? */ @@ -938,7 +938,7 @@ ERROR (gettext ("\ section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n"), idx, section_name (ebl, idx), -@@ -1185,7 +1201,8 @@ section [%2d] '%s': no relocations for m +@@ -1204,7 +1220,8 @@ section [%2d] '%s': no relocations for m } } @@ -948,7 +948,7 @@ ERROR (gettext (reltype == ELF_T_RELA ? "\ section [%2d] '%s': section entry size does not match ElfXX_Rela\n" : "\ section [%2d] '%s': section entry size does not match ElfXX_Rel\n"), -@@ -1408,7 +1425,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G +@@ -1427,7 +1444,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -958,7 +958,7 @@ { GElf_Rela rela_mem; GElf_Rela *rela = gelf_getrela (data, cnt, &rela_mem); -@@ -1458,7 +1476,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE +@@ -1477,7 +1495,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -968,7 +968,7 @@ { GElf_Rel rel_mem; GElf_Rel *rel = gelf_getrel (data, cnt, &rel_mem); -@@ -1561,7 +1580,8 @@ section [%2d] '%s': referenced as string +@@ -1580,7 +1599,8 @@ section [%2d] '%s': referenced as string shdr->sh_link, section_name (ebl, shdr->sh_link), idx, section_name (ebl, idx)); @@ -978,7 +978,7 @@ ERROR (gettext ("\ section [%2d] '%s': section entry size does not match ElfXX_Dyn\n"), idx, section_name (ebl, idx)); -@@ -1571,7 +1591,7 @@ section [%2d] '%s': section entry size d +@@ -1590,7 +1610,7 @@ section [%2d] '%s': section entry size d idx, section_name (ebl, idx)); bool non_null_warned = false; @@ -987,7 +987,7 @@ { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dyn_mem); -@@ -1852,6 +1872,8 @@ section [%2d] '%s': entry size does not +@@ -1871,6 +1891,8 @@ section [%2d] '%s': entry size does not idx, section_name (ebl, idx)); if (symshdr != NULL @@ -996,7 +996,7 @@ && (shdr->sh_size / shdr->sh_entsize < symshdr->sh_size / symshdr->sh_entsize)) ERROR (gettext ("\ -@@ -1878,6 +1900,12 @@ section [%2d] '%s': extended section ind +@@ -1897,6 +1919,12 @@ section [%2d] '%s': extended section ind } Elf_Data *data = elf_getdata (elf_getscn (ebl->elf, idx), NULL); @@ -1009,7 +1009,7 @@ if (*((Elf32_Word *) data->d_buf) != 0) ERROR (gettext ("symbol 0 should have zero extended section index\n")); -@@ -1920,7 +1948,7 @@ section [%2d] '%s': hash table section i +@@ -1939,7 +1967,7 @@ section [%2d] '%s': hash table section i size_t maxidx = nchain; @@ -1018,7 +1018,7 @@ { size_t symsize = symshdr->sh_size / symshdr->sh_entsize; -@@ -1931,18 +1959,28 @@ section [%2d] '%s': hash table section i +@@ -1950,18 +1978,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1049,7 +1049,7 @@ } -@@ -1972,18 +2010,28 @@ section [%2d] '%s': hash table section i +@@ -1991,18 +2029,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1081,7 +1081,7 @@ } -@@ -2008,7 +2056,7 @@ section [%2d] '%s': bitmask size not pow +@@ -2027,7 +2075,7 @@ section [%2d] '%s': bitmask size not pow if (shdr->sh_size < (4 + bitmask_words + nbuckets) * sizeof (Elf32_Word)) { ERROR (gettext ("\ @@ -1090,7 +1090,7 @@ idx, section_name (ebl, idx), (long int) shdr->sh_size, (long int) ((4 + bitmask_words + nbuckets) * sizeof (Elf32_Word))); return; -@@ -2680,8 +2728,9 @@ section [%2d] '%s' refers in sh_link to +@@ -2699,8 +2747,9 @@ section [%2d] '%s' refers in sh_link to /* The number of elements in the version symbol table must be the same as the number of symbols. */ @@ -1104,7 +1104,7 @@ idx, section_name (ebl, idx), --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -1136,6 +1136,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1146,6 +1146,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G Elf32_Word *grpref = (Elf32_Word *) data->d_buf; GElf_Sym sym_mem; @@ -1113,7 +1113,7 @@ printf ((grpref[0] & GRP_COMDAT) ? ngettext ("\ \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n", -@@ -1148,8 +1150,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1158,8 +1160,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G data->d_size / sizeof (Elf32_Word) - 1), elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), @@ -1124,7 +1124,7 @@ ?: gettext (""), data->d_size / sizeof (Elf32_Word) - 1); -@@ -1300,7 +1302,8 @@ static void +@@ -1310,7 +1312,8 @@ static void handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr) { int class = gelf_getclass (ebl->elf); @@ -1134,7 +1134,7 @@ Elf_Data *data; size_t cnt; size_t shstrndx; -@@ -1315,6 +1318,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1325,6 +1328,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1146,7 +1146,7 @@ printf (ngettext ("\ \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -1324,9 +1332,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1334,9 +1342,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (int) shdr->sh_link, @@ -1157,7 +1157,7 @@ fputs_unlocked (gettext (" Type Value\n"), stdout); for (cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -1826,6 +1832,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1919,6 +1925,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1171,7 +1171,7 @@ /* Now we can compute the number of entries in the section. */ unsigned int nsyms = data->d_size / (class == ELFCLASS32 ? sizeof (Elf32_Sym) -@@ -1836,15 +1849,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1929,15 +1942,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G nsyms), (unsigned int) elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms); @@ -1188,7 +1188,7 @@ fputs_unlocked (class == ELFCLASS32 ? gettext ("\ -@@ -2080,7 +2090,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2173,7 +2183,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1203,7 +1203,7 @@ printf (ngettext ("\ \nVersion needs section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2091,9 +2107,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2184,9 +2200,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1214,7 +1214,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2146,8 +2160,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2239,8 +2253,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1230,7 +1230,7 @@ printf (ngettext ("\ \nVersion definition section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2159,9 +2179,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2252,9 +2272,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1241,7 +1241,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2423,8 +2441,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2516,8 +2534,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G filename = NULL; } @@ -1257,7 +1257,7 @@ printf (ngettext ("\ \nVersion symbols section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'", "\ -@@ -2436,9 +2460,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2529,9 +2553,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1268,7 +1268,7 @@ /* Now we can finally look at the actual contents of this section. */ for (unsigned int cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -2490,7 +2512,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2583,7 +2605,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt) ++counts[lengths[cnt]]; @@ -1287,7 +1287,7 @@ printf (ngettext ("\ \nHistogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2503,9 +2535,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2596,9 +2628,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1298,7 +1298,7 @@ if (extrastr != NULL) fputs (extrastr, stdout); -@@ -4107,6 +4137,16 @@ print_debug_aranges_section (Dwfl_Module +@@ -4231,6 +4261,16 @@ print_debug_aranges_section (Dwfl_Module return; } Index: elfutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/elfutils.spec,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- elfutils.spec 24 Jul 2009 21:59:56 -0000 1.117 +++ elfutils.spec 29 Jul 2009 02:19:14 -0000 1.118 @@ -1,4 +1,4 @@ -%define eu_version 0.141 +%define eu_version 0.142 %define eu_release 1 %if %{?_with_compat:1}%{!?_with_compat:0} @@ -27,7 +27,7 @@ Version: %{eu_version} %if !%{compat} Release: %{eu_release}%{?dist} %else -Release: 0.%{eu_release}.2 +Release: 0.%{eu_release} %endif License: GPLv2 with exceptions Group: Development/Tools @@ -276,8 +276,17 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libelf.a %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 0.141-1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Roland McGrath - 0.142-1 +- Update to 0.142 + - libelf: Bug fix in filling gaps between sections. (#512840) + - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx + alias for elf_getshstrndx and deprecate original names. + - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436) + - readelf: Add -N option, speeds up DWARF printing + without address->name lookups. (#505347) + - libdw: Add support for decoding DWARF CFI into location description form. + Handle some new DWARF 3 expression operations previously omitted. + Basic handling of some new encodings slated for DWARF 4. * Thu Apr 23 2009 Roland McGrath - 0.141-1 - Update to 0.141 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 24 Apr 2009 20:09:26 -0000 1.52 +++ sources 29 Jul 2009 02:19:14 -0000 1.53 @@ -1 +1 @@ -2d0fe5651c0de1fd28e7dd006effe7d1 elfutils-0.141.tar.bz2 +03ce3616fa6a347c3156ee5f74985ea7 elfutils-0.142.tar.bz2 --- elfutils-0.141.tar.bz2.sig DELETED --- From roland at fedoraproject.org Wed Jul 29 02:22:55 2009 From: roland at fedoraproject.org (roland) Date: Wed, 29 Jul 2009 02:22:55 +0000 (UTC) Subject: rpms/elfutils/F-10 elfutils-0.142.tar.bz2.sig, NONE, 1.1 .cvsignore, 1.48, 1.49 elfutils-portability.patch, 1.42, 1.43 elfutils-robustify.patch, 1.15, 1.16 elfutils.spec, 1.113, 1.114 sources, 1.52, 1.53 Message-ID: <20090729022255.92B4711C00D4@cvs1.fedora.phx.redhat.com> Author: roland Update of /cvs/pkgs/rpms/elfutils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12073/F-10 Modified Files: .cvsignore elfutils-portability.patch elfutils-robustify.patch elfutils.spec sources Added Files: elfutils-0.142.tar.bz2.sig Log Message: Update to 0.142 --- NEW FILE elfutils-0.142.tar.bz2.sig --- ?F ?(?:y?Dt? Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-10/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 24 Apr 2009 20:52:23 -0000 1.48 +++ .cvsignore 29 Jul 2009 02:22:54 -0000 1.49 @@ -1 +1 @@ -elfutils-0.141.tar.bz2 +elfutils-0.142.tar.bz2 elfutils-portability.patch: ChangeLog | 17 +++++ Makefile.in | 2 backends/ChangeLog | 12 +++ backends/Makefile.am | 6 + backends/Makefile.in | 8 +- config.h.in | 6 + config/Makefile.in | 2 configure | 161 ++++++++++++++++++++++++++++++++++++++++++++++++++- configure.ac | 38 +++++++++++- lib/ChangeLog | 8 ++ lib/Makefile.am | 3 lib/Makefile.in | 6 + lib/eu-config.h | 11 +++ libasm/ChangeLog | 5 + libasm/Makefile.am | 3 libasm/Makefile.in | 6 + libcpu/ChangeLog | 8 ++ libcpu/Makefile.am | 3 libcpu/Makefile.in | 11 ++- libcpu/i386_disasm.c | 1 libdw/ChangeLog | 5 + libdw/Makefile.am | 3 libdw/Makefile.in | 7 +- libdwfl/ChangeLog | 5 + libdwfl/Makefile.am | 3 libdwfl/Makefile.in | 6 + libebl/ChangeLog | 5 + libebl/Makefile.am | 3 libebl/Makefile.in | 6 + libelf/ChangeLog | 5 + libelf/Makefile.am | 3 libelf/Makefile.in | 6 + libelf/common.h | 4 - m4/Makefile.in | 2 src/ChangeLog | 22 ++++++ src/Makefile.am | 6 + src/Makefile.in | 9 ++ src/addr2line.c | 4 - src/findtextrel.c | 6 + src/readelf.c | 2 src/strings.c | 9 ++ src/strip.c | 20 +++++- tests/ChangeLog | 7 ++ tests/Makefile.am | 5 - tests/Makefile.in | 6 + tests/line2addr.c | 2 46 files changed, 431 insertions(+), 47 deletions(-) Index: elfutils-portability.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-10/elfutils-portability.patch,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- elfutils-portability.patch 24 Apr 2009 20:52:23 -0000 1.42 +++ elfutils-portability.patch 29 Jul 2009 02:22:55 -0000 1.43 @@ -1,6 +1,6 @@ --- elfutils/backends/ChangeLog +++ elfutils/backends/ChangeLog -@@ -33,6 +33,10 @@ +@@ -48,6 +48,10 @@ * ppc_attrs.c (ppc_check_object_attribute): Handle tag GNU_Power_ABI_Struct_Return. @@ -11,7 +11,7 @@ 2008-10-04 Ulrich Drepper * i386_reloc.def: Fix entries for TLS_GOTDESC, TLS_DESC_CALL, and -@@ -360,6 +364,11 @@ +@@ -375,6 +379,11 @@ * sparc_init.c: Likewise. * x86_64_init.c: Likewise. @@ -23,7 +23,7 @@ 2005-11-19 Roland McGrath * ppc64_reloc.def: REL30 -> ADDR30. -@@ -382,6 +391,9 @@ +@@ -397,6 +406,9 @@ * Makefile.am (uninstall): Don't try to remove $(pkgincludedir). (CLEANFILES): Add libebl_$(m).so. @@ -51,15 +51,7 @@ -std=gnu99 INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -@@ -59,7 +61,6 @@ endif - - textrel_check = if readelf -d $@ | fgrep -q TEXTREL; then exit 1; fi - -- - i386_SRCS = i386_init.c i386_symbol.c i386_corenote.c \ - i386_retval.c i386_regs.c i386_auxv.c i386_syscall.c - cpu_i386 = ../libcpu/libcpu_i386.a -@@ -115,7 +116,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -115,7 +117,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -70,7 +62,7 @@ # XXX Should not be needed... --- elfutils/backends/Makefile.in +++ elfutils/backends/Makefile.in -@@ -158,6 +158,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -163,6 +163,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -78,7 +70,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -187,6 +188,7 @@ SHELL = @SHELL@ +@@ -192,6 +193,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -86,7 +78,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -245,9 +247,9 @@ top_builddir = @top_builddir@ +@@ -250,9 +252,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -98,7 +90,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -I$(top_srcdir)/lib -I.. -@@ -650,7 +652,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -680,7 +682,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -149,7 +141,7 @@ * configure.ac [AH_BOTTOM] (INTDECL, _INTDECL): New macros. --- elfutils/config/Makefile.in +++ elfutils/config/Makefile.in -@@ -73,6 +73,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -76,6 +76,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -157,7 +149,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -102,6 +103,7 @@ SHELL = @SHELL@ +@@ -105,6 +106,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -186,7 +178,7 @@ #include --- elfutils/configure +++ elfutils/configure -@@ -642,6 +642,8 @@ NATIVE_LD_FALSE +@@ -644,6 +644,8 @@ NATIVE_LD_FALSE NATIVE_LD_TRUE DATADIRNAME LOCALEDIR @@ -195,7 +187,7 @@ LEXLIB LEX_OUTPUT_ROOT LEX -@@ -4041,6 +4043,152 @@ $as_echo "$as_me: error: gcc with C99 su +@@ -4094,6 +4096,152 @@ $as_echo "$as_me: error: gcc with C99 su fi @@ -348,7 +340,7 @@ { $as_echo "$as_me:$LINENO: checking for __thread support" >&5 $as_echo_n "checking for __thread support... " >&6; } if test "${ac_cv_tls+set}" = set; then -@@ -4106,9 +4254,18 @@ fi +@@ -4159,9 +4307,18 @@ fi { $as_echo "$as_me:$LINENO: result: $ac_cv_tls" >&5 $as_echo "$ac_cv_tls" >&6; } if test "x$ac_cv_tls" != xyes; then @@ -484,7 +476,7 @@ noinst_LIBRARIES = libeu.a --- elfutils/lib/Makefile.in +++ elfutils/lib/Makefile.in -@@ -94,6 +94,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -98,6 +98,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -492,7 +484,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -123,6 +124,7 @@ SHELL = @SHELL@ +@@ -127,6 +128,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -500,7 +492,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -181,9 +183,9 @@ top_builddir = @top_builddir@ +@@ -185,9 +187,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -545,7 +537,7 @@ -I$(top_srcdir)/lib --- elfutils/libasm/Makefile.in +++ elfutils/libasm/Makefile.in -@@ -128,6 +128,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -145,6 +145,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -553,7 +545,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -157,6 +158,7 @@ SHELL = @SHELL@ +@@ -174,6 +175,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -561,7 +553,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -215,9 +217,9 @@ top_builddir = @top_builddir@ +@@ -232,9 +234,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Werror -Wunused \ @@ -621,7 +613,7 @@ $(if $($(*F)_no_Werror),,-Werror) --- elfutils/libcpu/Makefile.in +++ elfutils/libcpu/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -114,6 +114,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -629,7 +621,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = lex.$( @@ -688,7 +680,7 @@ --- elfutils/libdw/Makefile.in +++ elfutils/libdw/Makefile.in -@@ -165,6 +165,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -186,6 +186,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -696,7 +688,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -194,6 +195,7 @@ SHELL = @SHELL@ +@@ -215,6 +216,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -704,7 +696,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -252,9 +254,10 @@ top_builddir = @top_builddir@ +@@ -273,9 +275,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Werror -Wshadow \ @@ -719,7 +711,7 @@ $(COMPILE))) --- elfutils/libdwfl/ChangeLog +++ elfutils/libdwfl/ChangeLog -@@ -1076,6 +1076,11 @@ +@@ -1098,6 +1098,11 @@ 2005-07-21 Roland McGrath @@ -750,7 +742,7 @@ VERSION = 1 --- elfutils/libdwfl/Makefile.in +++ elfutils/libdwfl/Makefile.in -@@ -156,6 +156,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -176,6 +176,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -758,7 +750,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -185,6 +186,7 @@ SHELL = @SHELL@ +@@ -205,6 +206,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -766,7 +758,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -243,9 +245,9 @@ top_builddir = @top_builddir@ +@@ -263,9 +265,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Werror -Wshadow -Wunused -Wformat=2 \ @@ -780,7 +772,7 @@ --- elfutils/libebl/ChangeLog +++ elfutils/libebl/ChangeLog -@@ -569,6 +569,11 @@ +@@ -593,6 +593,11 @@ * Makefile.am (libebl_*_so_SOURCES): Set to $(*_SRCS) so dependency tracking works right. @@ -811,7 +803,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ --- elfutils/libebl/Makefile.in +++ elfutils/libebl/Makefile.in -@@ -124,6 +124,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -141,6 +141,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -819,7 +811,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -153,6 +154,7 @@ SHELL = @SHELL@ +@@ -170,6 +171,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -827,7 +819,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -211,9 +213,9 @@ top_builddir = @top_builddir@ +@@ -228,9 +230,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -841,7 +833,7 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -537,6 +537,11 @@ +@@ -576,6 +576,11 @@ * elf.h: Update from glibc. @@ -894,7 +886,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/libelf/Makefile.in +++ elfutils/libelf/Makefile.in -@@ -172,6 +172,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -188,6 +188,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -902,7 +894,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -201,6 +202,7 @@ SHELL = @SHELL@ +@@ -217,6 +218,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -910,7 +902,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -259,10 +261,10 @@ top_builddir = @top_builddir@ +@@ -275,10 +277,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Wshadow -Werror \ @@ -925,7 +917,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/m4/Makefile.in +++ elfutils/m4/Makefile.in -@@ -72,6 +72,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -75,6 +75,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -933,7 +925,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -101,6 +102,7 @@ SHELL = @SHELL@ +@@ -104,6 +105,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -943,7 +935,7 @@ YACC = @YACC@ --- elfutils/Makefile.in +++ elfutils/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -155,6 +155,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -951,7 +943,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -139,6 +140,7 @@ SHELL = @SHELL@ +@@ -184,6 +185,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -976,7 +968,7 @@ /* It was symbol+offset. */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -91,6 +91,8 @@ +@@ -155,6 +155,8 @@ * readelf.c (print_debug_frame_section): Use t instead of j formats for ptrdiff_t OFFSET. @@ -985,7 +977,7 @@ 2009-01-21 Ulrich Drepper * elflint.c (check_program_header): Fix typo in .eh_frame_hdr section -@@ -274,6 +276,11 @@ +@@ -338,6 +340,11 @@ that matches its PT_LOAD's p_flags &~ PF_W. On sparc, PF_X really is valid in RELRO. @@ -997,7 +989,7 @@ 2008-02-29 Roland McGrath * readelf.c (print_attributes): Add a cast. -@@ -525,6 +532,8 @@ +@@ -589,6 +596,8 @@ * readelf.c (hex_dump): Fix rounding error in whitespace calculation. @@ -1006,7 +998,7 @@ 2007-10-15 Roland McGrath * make-debug-archive.in: New file. -@@ -964,6 +973,10 @@ +@@ -1028,6 +1037,10 @@ * elflint.c (valid_e_machine): Add EM_ALPHA. Reported by Christian Aichinger . @@ -1017,7 +1009,7 @@ 2006-08-08 Ulrich Drepper * elflint.c (check_dynamic): Don't require DT_HASH for DT_SYMTAB. -@@ -1040,6 +1053,10 @@ +@@ -1104,6 +1117,10 @@ * Makefile.am: Add hacks to create dependency files for non-generic linker. @@ -1028,7 +1020,7 @@ 2006-06-12 Ulrich Drepper * ldgeneric.c (ld_generic_generate_sections): Don't create .interp -@@ -1388,6 +1405,11 @@ +@@ -1452,6 +1469,11 @@ * readelf.c (print_debug_loc_section): Fix indentation for larger address size. @@ -1086,7 +1078,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/Makefile.in +++ elfutils/src/Makefile.in -@@ -202,6 +202,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -226,6 +226,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1094,7 +1086,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -231,6 +232,7 @@ SHELL = @SHELL@ +@@ -255,6 +256,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1102,7 +1094,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -d -@@ -291,13 +293,13 @@ zip_LIBS = @zip_LIBS@ +@@ -315,13 +317,13 @@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Wshadow -std=gnu99 \ @MUDFLAP_FALSE@ $(native_ld_cflags) $(if \ @MUDFLAP_FALSE@ $($(*F)_no_Werror),,-Werror) $(if \ @@ -1118,7 +1110,7 @@ @MUDFLAP_TRUE@ $($(*F)_no_Wformat),-Wno-format,-Wformat=2) \ @MUDFLAP_TRUE@ $(CFLAGS_$(*F)) INCLUDES = -I$(srcdir) -I$(srcdir)/../libelf -I$(srcdir)/../libebl \ -@@ -343,6 +345,9 @@ strings_no_Wformat = yes +@@ -367,6 +369,9 @@ strings_no_Wformat = yes addr2line_no_Wformat = yes # XXX While the file is not finished, don't warn about this ldgeneric_no_Wunused = yes @@ -1130,7 +1122,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -7443,7 +7443,7 @@ dump_archive_index (Elf *elf, const char +@@ -7591,7 +7591,7 @@ dump_archive_index (Elf *elf, const char if (unlikely (elf_rand (elf, as_off) == 0) || unlikely ((subelf = elf_begin (-1, ELF_C_READ_MMAP, elf)) == NULL)) @@ -1220,7 +1212,7 @@ cannot set access and modification date of '%s'"), fname); --- elfutils/tests/ChangeLog +++ elfutils/tests/ChangeLog -@@ -106,6 +106,8 @@ +@@ -124,6 +124,8 @@ 2008-01-21 Roland McGrath @@ -1229,7 +1221,7 @@ * testfile45.S.bz2: Add tests for cltq, cqto. * testfile45.expect.bz2: Adjust. -@@ -814,6 +816,11 @@ +@@ -832,6 +834,11 @@ * Makefile.am (TESTS): Add run-elflint-test.sh. (EXTRA_DIST): Add run-elflint-test.sh and testfile18.bz2. @@ -1272,7 +1264,7 @@ endif --- elfutils/tests/Makefile.in +++ elfutils/tests/Makefile.in -@@ -343,6 +343,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -359,6 +359,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1280,7 +1272,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -372,6 +373,7 @@ SHELL = @SHELL@ +@@ -388,6 +389,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1288,7 +1280,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -429,10 +431,10 @@ top_build_prefix = @top_build_prefix@ +@@ -445,10 +447,10 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ elfutils-robustify.patch: libelf/ChangeLog | 43 +++++++++++++++++ libelf/elf32_getphdr.c | 10 ++++ libelf/elf32_getshdr.c | 15 +++++- libelf/elf32_newphdr.c | 6 ++ libelf/elf32_updatefile.c | 7 ++ libelf/elf_begin.c | 46 ++++++++++++++++++- libelf/elf_getarsym.c | 3 + libelf/elf_getshdrstrndx.c | 38 ++++++++++++++- libelf/elf_newscn.c | 10 +++- libelf/gelf_getdyn.c | 6 +- libelf/gelf_getlib.c | 3 - libelf/gelf_getmove.c | 3 - libelf/gelf_getrel.c | 12 +--- libelf/gelf_getrela.c | 12 +--- libelf/gelf_getsym.c | 6 +- libelf/gelf_getsyminfo.c | 3 - libelf/gelf_getsymshndx.c | 10 ++-- libelf/gelf_getversym.c | 3 - libelf/gelf_update_dyn.c | 12 +--- libelf/gelf_update_lib.c | 9 --- libelf/gelf_update_move.c | 2 libelf/gelf_update_rel.c | 12 +--- libelf/gelf_update_rela.c | 12 +--- libelf/gelf_update_sym.c | 12 +--- libelf/gelf_update_syminfo.c | 9 --- libelf/gelf_update_symshndx.c | 12 +--- libelf/gelf_update_versym.c | 2 libelf/libelfP.h | 9 +++ src/ChangeLog | 23 +++++++++ src/elflint.c | 101 +++++++++++++++++++++++++++++++----------- src/readelf.c | 92 +++++++++++++++++++++++++++----------- src/strip.c | 70 +++++++++++++++++++---------- 32 files changed, 446 insertions(+), 167 deletions(-) Index: elfutils-robustify.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-10/elfutils-robustify.patch,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- elfutils-robustify.patch 24 Apr 2009 20:52:23 -0000 1.15 +++ elfutils-robustify.patch 29 Jul 2009 02:22:55 -0000 1.16 @@ -1,6 +1,6 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -529,6 +529,49 @@ +@@ -568,6 +568,49 @@ If section content hasn't been read yet, do it before looking for the block size. If no section data present, infer size of section header. @@ -73,8 +73,8 @@ +++ elfutils/libelf/elf32_getshdr.c @@ -1,5 +1,5 @@ /* Return section header. -- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007 Red Hat, Inc. -+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2008 Red Hat, Inc. +- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2009 Red Hat, Inc. ++ Copyright (C) 1998-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 1998. @@ -82,8 +82,8 @@ goto out; size_t shnum; -- if (__elf_getshnum_rdlock (elf, &shnum) != 0) -+ if (__elf_getshnum_rdlock (elf, &shnum) != 0 +- if (__elf_getshdrnum_rdlock (elf, &shnum) != 0) ++ if (__elf_getshdrnum_rdlock (elf, &shnum) != 0 + || shnum > SIZE_MAX / sizeof (ElfW2(LIBELFBITS,Shdr))) goto out; size_t size = shnum * sizeof (ElfW2(LIBELFBITS,Shdr)); @@ -132,7 +132,7 @@ Elf_ScnList *list = &elf->state.ELFW(elf,LIBELFBITS).scns; Elf_Scn **scns = (Elf_Scn **) alloca (shnum * sizeof (Elf_Scn *)); char *const shdr_start = ((char *) elf->map_address + elf->start_offset -@@ -633,6 +636,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf +@@ -636,6 +639,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf /* Write all the sections. Well, only those which are modified. */ if (shnum > 0) { @@ -252,9 +252,9 @@ || n * sizeof (uint32_t) > index_size) { /* This index table cannot be right since it does not fit into ---- elfutils/libelf/elf_getshstrndx.c -+++ elfutils/libelf/elf_getshstrndx.c -@@ -125,10 +125,25 @@ elf_getshstrndx (elf, dst) +--- elfutils/libelf/elf_getshdrstrndx.c ++++ elfutils/libelf/elf_getshdrstrndx.c +@@ -125,10 +125,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf32.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -282,7 +282,7 @@ else { /* We avoid reading in all the section headers. Just read -@@ -163,10 +178,25 @@ elf_getshstrndx (elf, dst) +@@ -163,10 +178,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf64.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -776,7 +776,7 @@ __libelf_seterrno (ELF_E_INVALID_INDEX); --- elfutils/libelf/libelfP.h +++ elfutils/libelf/libelfP.h -@@ -611,4 +611,13 @@ extern uint32_t __libelf_crc32 (uint32_t +@@ -606,4 +606,13 @@ extern uint32_t __libelf_crc32 (uint32_t /* Align offset to 4 bytes as needed for note name and descriptor data. */ #define NOTE_ALIGN(n) (((n) + 3) & -4U) @@ -792,7 +792,7 @@ #endif /* libelfP.h */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -1376,6 +1376,16 @@ +@@ -1440,6 +1440,16 @@ object symbols or symbols with unknown type. (check_rel): Likewise. @@ -809,7 +809,7 @@ 2005-06-08 Roland McGrath * readelf.c (print_ops): Add consts. -@@ -1421,6 +1431,19 @@ +@@ -1485,6 +1495,19 @@ * readelf.c (dwarf_tag_string): Add new tags. @@ -873,7 +873,7 @@ static void check_elf_header (Ebl *ebl, GElf_Ehdr *ehdr, size_t size) { -@@ -611,7 +619,8 @@ section [%2d] '%s': symbol table cannot +@@ -612,7 +620,8 @@ section [%2d] '%s': symbol table cannot } } @@ -883,7 +883,7 @@ ERROR (gettext ("\ section [%2u] '%s': entry size is does not match ElfXX_Sym\n"), idx, section_name (ebl, idx)); -@@ -649,7 +658,7 @@ section [%2d] '%s': XINDEX for zeroth en +@@ -650,7 +659,7 @@ section [%2d] '%s': XINDEX for zeroth en xndxscnidx, section_name (ebl, xndxscnidx)); } @@ -892,7 +892,7 @@ { sym = gelf_getsymshndx (data, xndxdata, cnt, &sym_mem, &xndx); if (sym == NULL) -@@ -669,7 +678,8 @@ section [%2d] '%s': symbol %zu: invalid +@@ -670,7 +679,8 @@ section [%2d] '%s': symbol %zu: invalid else { name = elf_strptr (ebl->elf, shdr->sh_link, sym->st_name); @@ -902,7 +902,7 @@ } if (sym->st_shndx == SHN_XINDEX) -@@ -999,9 +1009,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1018,9 +1028,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Shdr rcshdr_mem; const GElf_Shdr *rcshdr = gelf_getshdr (scn, &rcshdr_mem); @@ -916,7 +916,7 @@ { /* Found the dynamic section. Look through it. */ Elf_Data *d = elf_getdata (scn, NULL); -@@ -1011,7 +1023,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1030,7 +1042,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (d, cnt, &dyn_mem); @@ -927,7 +927,7 @@ if (dyn->d_tag == DT_RELCOUNT) { -@@ -1025,7 +1039,9 @@ section [%2d] '%s': DT_RELCOUNT used for +@@ -1044,7 +1058,9 @@ section [%2d] '%s': DT_RELCOUNT used for /* Does the number specified number of relative relocations exceed the total number of relocations? */ @@ -938,7 +938,7 @@ ERROR (gettext ("\ section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n"), idx, section_name (ebl, idx), -@@ -1185,7 +1201,8 @@ section [%2d] '%s': no relocations for m +@@ -1204,7 +1220,8 @@ section [%2d] '%s': no relocations for m } } @@ -948,7 +948,7 @@ ERROR (gettext (reltype == ELF_T_RELA ? "\ section [%2d] '%s': section entry size does not match ElfXX_Rela\n" : "\ section [%2d] '%s': section entry size does not match ElfXX_Rel\n"), -@@ -1408,7 +1425,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G +@@ -1427,7 +1444,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -958,7 +958,7 @@ { GElf_Rela rela_mem; GElf_Rela *rela = gelf_getrela (data, cnt, &rela_mem); -@@ -1458,7 +1476,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE +@@ -1477,7 +1495,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -968,7 +968,7 @@ { GElf_Rel rel_mem; GElf_Rel *rel = gelf_getrel (data, cnt, &rel_mem); -@@ -1561,7 +1580,8 @@ section [%2d] '%s': referenced as string +@@ -1580,7 +1599,8 @@ section [%2d] '%s': referenced as string shdr->sh_link, section_name (ebl, shdr->sh_link), idx, section_name (ebl, idx)); @@ -978,7 +978,7 @@ ERROR (gettext ("\ section [%2d] '%s': section entry size does not match ElfXX_Dyn\n"), idx, section_name (ebl, idx)); -@@ -1571,7 +1591,7 @@ section [%2d] '%s': section entry size d +@@ -1590,7 +1610,7 @@ section [%2d] '%s': section entry size d idx, section_name (ebl, idx)); bool non_null_warned = false; @@ -987,7 +987,7 @@ { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dyn_mem); -@@ -1852,6 +1872,8 @@ section [%2d] '%s': entry size does not +@@ -1871,6 +1891,8 @@ section [%2d] '%s': entry size does not idx, section_name (ebl, idx)); if (symshdr != NULL @@ -996,7 +996,7 @@ && (shdr->sh_size / shdr->sh_entsize < symshdr->sh_size / symshdr->sh_entsize)) ERROR (gettext ("\ -@@ -1878,6 +1900,12 @@ section [%2d] '%s': extended section ind +@@ -1897,6 +1919,12 @@ section [%2d] '%s': extended section ind } Elf_Data *data = elf_getdata (elf_getscn (ebl->elf, idx), NULL); @@ -1009,7 +1009,7 @@ if (*((Elf32_Word *) data->d_buf) != 0) ERROR (gettext ("symbol 0 should have zero extended section index\n")); -@@ -1920,7 +1948,7 @@ section [%2d] '%s': hash table section i +@@ -1939,7 +1967,7 @@ section [%2d] '%s': hash table section i size_t maxidx = nchain; @@ -1018,7 +1018,7 @@ { size_t symsize = symshdr->sh_size / symshdr->sh_entsize; -@@ -1931,18 +1959,28 @@ section [%2d] '%s': hash table section i +@@ -1950,18 +1978,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1049,7 +1049,7 @@ } -@@ -1972,18 +2010,28 @@ section [%2d] '%s': hash table section i +@@ -1991,18 +2029,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1081,7 +1081,7 @@ } -@@ -2008,7 +2056,7 @@ section [%2d] '%s': bitmask size not pow +@@ -2027,7 +2075,7 @@ section [%2d] '%s': bitmask size not pow if (shdr->sh_size < (4 + bitmask_words + nbuckets) * sizeof (Elf32_Word)) { ERROR (gettext ("\ @@ -1090,7 +1090,7 @@ idx, section_name (ebl, idx), (long int) shdr->sh_size, (long int) ((4 + bitmask_words + nbuckets) * sizeof (Elf32_Word))); return; -@@ -2680,8 +2728,9 @@ section [%2d] '%s' refers in sh_link to +@@ -2699,8 +2747,9 @@ section [%2d] '%s' refers in sh_link to /* The number of elements in the version symbol table must be the same as the number of symbols. */ @@ -1104,7 +1104,7 @@ idx, section_name (ebl, idx), --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -1136,6 +1136,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1146,6 +1146,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G Elf32_Word *grpref = (Elf32_Word *) data->d_buf; GElf_Sym sym_mem; @@ -1113,7 +1113,7 @@ printf ((grpref[0] & GRP_COMDAT) ? ngettext ("\ \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n", -@@ -1148,8 +1150,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1158,8 +1160,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G data->d_size / sizeof (Elf32_Word) - 1), elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), @@ -1124,7 +1124,7 @@ ?: gettext (""), data->d_size / sizeof (Elf32_Word) - 1); -@@ -1300,7 +1302,8 @@ static void +@@ -1310,7 +1312,8 @@ static void handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr) { int class = gelf_getclass (ebl->elf); @@ -1134,7 +1134,7 @@ Elf_Data *data; size_t cnt; size_t shstrndx; -@@ -1315,6 +1318,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1325,6 +1328,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1146,7 +1146,7 @@ printf (ngettext ("\ \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -1324,9 +1332,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1334,9 +1342,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (int) shdr->sh_link, @@ -1157,7 +1157,7 @@ fputs_unlocked (gettext (" Type Value\n"), stdout); for (cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -1826,6 +1832,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1919,6 +1925,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1171,7 +1171,7 @@ /* Now we can compute the number of entries in the section. */ unsigned int nsyms = data->d_size / (class == ELFCLASS32 ? sizeof (Elf32_Sym) -@@ -1836,15 +1849,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1929,15 +1942,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G nsyms), (unsigned int) elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms); @@ -1188,7 +1188,7 @@ fputs_unlocked (class == ELFCLASS32 ? gettext ("\ -@@ -2080,7 +2090,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2173,7 +2183,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1203,7 +1203,7 @@ printf (ngettext ("\ \nVersion needs section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2091,9 +2107,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2184,9 +2200,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1214,7 +1214,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2146,8 +2160,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2239,8 +2253,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1230,7 +1230,7 @@ printf (ngettext ("\ \nVersion definition section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2159,9 +2179,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2252,9 +2272,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1241,7 +1241,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2423,8 +2441,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2516,8 +2534,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G filename = NULL; } @@ -1257,7 +1257,7 @@ printf (ngettext ("\ \nVersion symbols section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'", "\ -@@ -2436,9 +2460,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2529,9 +2553,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1268,7 +1268,7 @@ /* Now we can finally look at the actual contents of this section. */ for (unsigned int cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -2490,7 +2512,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2583,7 +2605,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt) ++counts[lengths[cnt]]; @@ -1287,7 +1287,7 @@ printf (ngettext ("\ \nHistogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2503,9 +2535,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2596,9 +2628,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1298,7 +1298,7 @@ if (extrastr != NULL) fputs (extrastr, stdout); -@@ -4107,6 +4137,16 @@ print_debug_aranges_section (Dwfl_Module +@@ -4231,6 +4261,16 @@ print_debug_aranges_section (Dwfl_Module return; } Index: elfutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-10/elfutils.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- elfutils.spec 24 Apr 2009 20:52:23 -0000 1.113 +++ elfutils.spec 29 Jul 2009 02:22:55 -0000 1.114 @@ -1,4 +1,4 @@ -%define eu_version 0.141 +%define eu_version 0.142 %define eu_release 1 %if %{?_with_compat:1}%{!?_with_compat:0} @@ -27,7 +27,7 @@ Version: %{eu_version} %if !%{compat} Release: %{eu_release}%{?dist} %else -Release: 0.%{eu_release}.1 +Release: 0.%{eu_release} %endif License: GPLv2 with exceptions Group: Development/Tools @@ -276,6 +276,18 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libelf.a %changelog +* Tue Jul 28 2009 Roland McGrath - 0.142-1 +- Update to 0.142 + - libelf: Bug fix in filling gaps between sections. (#512840) + - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx + alias for elf_getshstrndx and deprecate original names. + - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436) + - readelf: Add -N option, speeds up DWARF printing + without address->name lookups. (#505347) + - libdw: Add support for decoding DWARF CFI into location description form. + Handle some new DWARF 3 expression operations previously omitted. + Basic handling of some new encodings slated for DWARF 4. + * Thu Apr 23 2009 Roland McGrath - 0.141-1 - Update to 0.141 - libebl: sparc backend fixes (#490585) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-10/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 24 Apr 2009 20:52:23 -0000 1.52 +++ sources 29 Jul 2009 02:22:55 -0000 1.53 @@ -1 +1 @@ -2d0fe5651c0de1fd28e7dd006effe7d1 elfutils-0.141.tar.bz2 +03ce3616fa6a347c3156ee5f74985ea7 elfutils-0.142.tar.bz2 From roland at fedoraproject.org Wed Jul 29 02:22:55 2009 From: roland at fedoraproject.org (roland) Date: Wed, 29 Jul 2009 02:22:55 +0000 (UTC) Subject: rpms/elfutils/F-11 elfutils-0.142.tar.bz2.sig, NONE, 1.1 .cvsignore, 1.48, 1.49 elfutils-portability.patch, 1.42, 1.43 elfutils-robustify.patch, 1.15, 1.16 elfutils.spec, 1.116, 1.117 sources, 1.52, 1.53 Message-ID: <20090729022255.1AF5711C00D4@cvs1.fedora.phx.redhat.com> Author: roland Update of /cvs/pkgs/rpms/elfutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12073/F-11 Modified Files: .cvsignore elfutils-portability.patch elfutils-robustify.patch elfutils.spec sources Added Files: elfutils-0.142.tar.bz2.sig Log Message: Update to 0.142 --- NEW FILE elfutils-0.142.tar.bz2.sig --- ?F ?(?:y?Dt? Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-11/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 24 Apr 2009 20:52:23 -0000 1.48 +++ .cvsignore 29 Jul 2009 02:22:54 -0000 1.49 @@ -1 +1 @@ -elfutils-0.141.tar.bz2 +elfutils-0.142.tar.bz2 elfutils-portability.patch: ChangeLog | 17 +++++ Makefile.in | 2 backends/ChangeLog | 12 +++ backends/Makefile.am | 6 + backends/Makefile.in | 8 +- config.h.in | 6 + config/Makefile.in | 2 configure | 161 ++++++++++++++++++++++++++++++++++++++++++++++++++- configure.ac | 38 +++++++++++- lib/ChangeLog | 8 ++ lib/Makefile.am | 3 lib/Makefile.in | 6 + lib/eu-config.h | 11 +++ libasm/ChangeLog | 5 + libasm/Makefile.am | 3 libasm/Makefile.in | 6 + libcpu/ChangeLog | 8 ++ libcpu/Makefile.am | 3 libcpu/Makefile.in | 11 ++- libcpu/i386_disasm.c | 1 libdw/ChangeLog | 5 + libdw/Makefile.am | 3 libdw/Makefile.in | 7 +- libdwfl/ChangeLog | 5 + libdwfl/Makefile.am | 3 libdwfl/Makefile.in | 6 + libebl/ChangeLog | 5 + libebl/Makefile.am | 3 libebl/Makefile.in | 6 + libelf/ChangeLog | 5 + libelf/Makefile.am | 3 libelf/Makefile.in | 6 + libelf/common.h | 4 - m4/Makefile.in | 2 src/ChangeLog | 22 ++++++ src/Makefile.am | 6 + src/Makefile.in | 9 ++ src/addr2line.c | 4 - src/findtextrel.c | 6 + src/readelf.c | 2 src/strings.c | 9 ++ src/strip.c | 20 +++++- tests/ChangeLog | 7 ++ tests/Makefile.am | 5 - tests/Makefile.in | 6 + tests/line2addr.c | 2 46 files changed, 431 insertions(+), 47 deletions(-) Index: elfutils-portability.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-11/elfutils-portability.patch,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- elfutils-portability.patch 24 Apr 2009 20:52:23 -0000 1.42 +++ elfutils-portability.patch 29 Jul 2009 02:22:54 -0000 1.43 @@ -1,6 +1,6 @@ --- elfutils/backends/ChangeLog +++ elfutils/backends/ChangeLog -@@ -33,6 +33,10 @@ +@@ -48,6 +48,10 @@ * ppc_attrs.c (ppc_check_object_attribute): Handle tag GNU_Power_ABI_Struct_Return. @@ -11,7 +11,7 @@ 2008-10-04 Ulrich Drepper * i386_reloc.def: Fix entries for TLS_GOTDESC, TLS_DESC_CALL, and -@@ -360,6 +364,11 @@ +@@ -375,6 +379,11 @@ * sparc_init.c: Likewise. * x86_64_init.c: Likewise. @@ -23,7 +23,7 @@ 2005-11-19 Roland McGrath * ppc64_reloc.def: REL30 -> ADDR30. -@@ -382,6 +391,9 @@ +@@ -397,6 +406,9 @@ * Makefile.am (uninstall): Don't try to remove $(pkgincludedir). (CLEANFILES): Add libebl_$(m).so. @@ -51,15 +51,7 @@ -std=gnu99 INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -@@ -59,7 +61,6 @@ endif - - textrel_check = if readelf -d $@ | fgrep -q TEXTREL; then exit 1; fi - -- - i386_SRCS = i386_init.c i386_symbol.c i386_corenote.c \ - i386_retval.c i386_regs.c i386_auxv.c i386_syscall.c - cpu_i386 = ../libcpu/libcpu_i386.a -@@ -115,7 +116,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -115,7 +117,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -70,7 +62,7 @@ # XXX Should not be needed... --- elfutils/backends/Makefile.in +++ elfutils/backends/Makefile.in -@@ -158,6 +158,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -163,6 +163,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -78,7 +70,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -187,6 +188,7 @@ SHELL = @SHELL@ +@@ -192,6 +193,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -86,7 +78,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -245,9 +247,9 @@ top_builddir = @top_builddir@ +@@ -250,9 +252,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -98,7 +90,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libebl -I$(top_srcdir)/libasm \ -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ -I$(top_srcdir)/lib -I.. -@@ -650,7 +652,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map +@@ -680,7 +682,7 @@ libebl_%.so: libebl_%_pic.a libebl_%.map $(LINK) -shared -o $@ -Wl,--whole-archive,$<\ $(cpu_$(@:libebl_%.so=%)) -Wl,--no-whole-archive \ -Wl,--version-script,$(word 2,$^) \ @@ -149,7 +141,7 @@ * configure.ac [AH_BOTTOM] (INTDECL, _INTDECL): New macros. --- elfutils/config/Makefile.in +++ elfutils/config/Makefile.in -@@ -73,6 +73,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -76,6 +76,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -157,7 +149,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -102,6 +103,7 @@ SHELL = @SHELL@ +@@ -105,6 +106,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -186,7 +178,7 @@ #include --- elfutils/configure +++ elfutils/configure -@@ -642,6 +642,8 @@ NATIVE_LD_FALSE +@@ -644,6 +644,8 @@ NATIVE_LD_FALSE NATIVE_LD_TRUE DATADIRNAME LOCALEDIR @@ -195,7 +187,7 @@ LEXLIB LEX_OUTPUT_ROOT LEX -@@ -4041,6 +4043,152 @@ $as_echo "$as_me: error: gcc with C99 su +@@ -4094,6 +4096,152 @@ $as_echo "$as_me: error: gcc with C99 su fi @@ -348,7 +340,7 @@ { $as_echo "$as_me:$LINENO: checking for __thread support" >&5 $as_echo_n "checking for __thread support... " >&6; } if test "${ac_cv_tls+set}" = set; then -@@ -4106,9 +4254,18 @@ fi +@@ -4159,9 +4307,18 @@ fi { $as_echo "$as_me:$LINENO: result: $ac_cv_tls" >&5 $as_echo "$ac_cv_tls" >&6; } if test "x$ac_cv_tls" != xyes; then @@ -484,7 +476,7 @@ noinst_LIBRARIES = libeu.a --- elfutils/lib/Makefile.in +++ elfutils/lib/Makefile.in -@@ -94,6 +94,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -98,6 +98,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -492,7 +484,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -123,6 +124,7 @@ SHELL = @SHELL@ +@@ -127,6 +128,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -500,7 +492,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -181,9 +183,9 @@ top_builddir = @top_builddir@ +@@ -185,9 +187,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -545,7 +537,7 @@ -I$(top_srcdir)/lib --- elfutils/libasm/Makefile.in +++ elfutils/libasm/Makefile.in -@@ -128,6 +128,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -145,6 +145,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -553,7 +545,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -157,6 +158,7 @@ SHELL = @SHELL@ +@@ -174,6 +175,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -561,7 +553,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -215,9 +217,9 @@ top_builddir = @top_builddir@ +@@ -232,9 +234,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Werror -Wunused \ @@ -621,7 +613,7 @@ $(if $($(*F)_no_Werror),,-Werror) --- elfutils/libcpu/Makefile.in +++ elfutils/libcpu/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -114,6 +114,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -629,7 +621,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = lex.$( @@ -688,7 +680,7 @@ --- elfutils/libdw/Makefile.in +++ elfutils/libdw/Makefile.in -@@ -165,6 +165,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -186,6 +186,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -696,7 +688,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -194,6 +195,7 @@ SHELL = @SHELL@ +@@ -215,6 +216,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -704,7 +696,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -252,9 +254,10 @@ top_builddir = @top_builddir@ +@@ -273,9 +275,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Werror -Wshadow \ @@ -719,7 +711,7 @@ $(COMPILE))) --- elfutils/libdwfl/ChangeLog +++ elfutils/libdwfl/ChangeLog -@@ -1076,6 +1076,11 @@ +@@ -1098,6 +1098,11 @@ 2005-07-21 Roland McGrath @@ -750,7 +742,7 @@ VERSION = 1 --- elfutils/libdwfl/Makefile.in +++ elfutils/libdwfl/Makefile.in -@@ -156,6 +156,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -176,6 +176,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -758,7 +750,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -185,6 +186,7 @@ SHELL = @SHELL@ +@@ -205,6 +206,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -766,7 +758,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -243,9 +245,9 @@ top_builddir = @top_builddir@ +@@ -263,9 +265,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Werror -Wshadow -Wunused -Wformat=2 \ @@ -780,7 +772,7 @@ --- elfutils/libebl/ChangeLog +++ elfutils/libebl/ChangeLog -@@ -569,6 +569,11 @@ +@@ -593,6 +593,11 @@ * Makefile.am (libebl_*_so_SOURCES): Set to $(*_SRCS) so dependency tracking works right. @@ -811,7 +803,7 @@ INCLUDES = -I$(srcdir) -I$(top_srcdir)/libelf -I$(top_srcdir)/libdw \ --- elfutils/libebl/Makefile.in +++ elfutils/libebl/Makefile.in -@@ -124,6 +124,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -141,6 +141,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -819,7 +811,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -153,6 +154,7 @@ SHELL = @SHELL@ +@@ -170,6 +171,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -827,7 +819,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -211,9 +213,9 @@ top_builddir = @top_builddir@ +@@ -228,9 +230,9 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -fpic -Wall -Wshadow -Werror -Wunused \ @@ -841,7 +833,7 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -537,6 +537,11 @@ +@@ -576,6 +576,11 @@ * elf.h: Update from glibc. @@ -894,7 +886,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/libelf/Makefile.in +++ elfutils/libelf/Makefile.in -@@ -172,6 +172,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -188,6 +188,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -902,7 +894,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -201,6 +202,7 @@ SHELL = @SHELL@ +@@ -217,6 +218,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = 1 @@ -910,7 +902,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -259,10 +261,10 @@ top_builddir = @top_builddir@ +@@ -275,10 +277,10 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = $(am__append_1) -Wall -Wshadow -Werror \ @@ -925,7 +917,7 @@ GCC_INCLUDE = -I$(shell $(CC) -print-file-name=include) --- elfutils/m4/Makefile.in +++ elfutils/m4/Makefile.in -@@ -72,6 +72,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -75,6 +75,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -933,7 +925,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -101,6 +102,7 @@ SHELL = @SHELL@ +@@ -104,6 +105,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -943,7 +935,7 @@ YACC = @YACC@ --- elfutils/Makefile.in +++ elfutils/Makefile.in -@@ -110,6 +110,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -155,6 +155,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -951,7 +943,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -139,6 +140,7 @@ SHELL = @SHELL@ +@@ -184,6 +185,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -976,7 +968,7 @@ /* It was symbol+offset. */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -91,6 +91,8 @@ +@@ -155,6 +155,8 @@ * readelf.c (print_debug_frame_section): Use t instead of j formats for ptrdiff_t OFFSET. @@ -985,7 +977,7 @@ 2009-01-21 Ulrich Drepper * elflint.c (check_program_header): Fix typo in .eh_frame_hdr section -@@ -274,6 +276,11 @@ +@@ -338,6 +340,11 @@ that matches its PT_LOAD's p_flags &~ PF_W. On sparc, PF_X really is valid in RELRO. @@ -997,7 +989,7 @@ 2008-02-29 Roland McGrath * readelf.c (print_attributes): Add a cast. -@@ -525,6 +532,8 @@ +@@ -589,6 +596,8 @@ * readelf.c (hex_dump): Fix rounding error in whitespace calculation. @@ -1006,7 +998,7 @@ 2007-10-15 Roland McGrath * make-debug-archive.in: New file. -@@ -964,6 +973,10 @@ +@@ -1028,6 +1037,10 @@ * elflint.c (valid_e_machine): Add EM_ALPHA. Reported by Christian Aichinger . @@ -1017,7 +1009,7 @@ 2006-08-08 Ulrich Drepper * elflint.c (check_dynamic): Don't require DT_HASH for DT_SYMTAB. -@@ -1040,6 +1053,10 @@ +@@ -1104,6 +1117,10 @@ * Makefile.am: Add hacks to create dependency files for non-generic linker. @@ -1028,7 +1020,7 @@ 2006-06-12 Ulrich Drepper * ldgeneric.c (ld_generic_generate_sections): Don't create .interp -@@ -1388,6 +1405,11 @@ +@@ -1452,6 +1469,11 @@ * readelf.c (print_debug_loc_section): Fix indentation for larger address size. @@ -1086,7 +1078,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/Makefile.in +++ elfutils/src/Makefile.in -@@ -202,6 +202,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -226,6 +226,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1094,7 +1086,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -231,6 +232,7 @@ SHELL = @SHELL@ +@@ -255,6 +256,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1102,7 +1094,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -d -@@ -291,13 +293,13 @@ zip_LIBS = @zip_LIBS@ +@@ -315,13 +317,13 @@ zip_LIBS = @zip_LIBS@ @MUDFLAP_FALSE at AM_CFLAGS = -Wall -Wshadow -std=gnu99 \ @MUDFLAP_FALSE@ $(native_ld_cflags) $(if \ @MUDFLAP_FALSE@ $($(*F)_no_Werror),,-Werror) $(if \ @@ -1118,7 +1110,7 @@ @MUDFLAP_TRUE@ $($(*F)_no_Wformat),-Wno-format,-Wformat=2) \ @MUDFLAP_TRUE@ $(CFLAGS_$(*F)) INCLUDES = -I$(srcdir) -I$(srcdir)/../libelf -I$(srcdir)/../libebl \ -@@ -343,6 +345,9 @@ strings_no_Wformat = yes +@@ -367,6 +369,9 @@ strings_no_Wformat = yes addr2line_no_Wformat = yes # XXX While the file is not finished, don't warn about this ldgeneric_no_Wunused = yes @@ -1130,7 +1122,7 @@ size_LDADD = $(libelf) $(libeu) $(libmudflap) --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -7443,7 +7443,7 @@ dump_archive_index (Elf *elf, const char +@@ -7591,7 +7591,7 @@ dump_archive_index (Elf *elf, const char if (unlikely (elf_rand (elf, as_off) == 0) || unlikely ((subelf = elf_begin (-1, ELF_C_READ_MMAP, elf)) == NULL)) @@ -1220,7 +1212,7 @@ cannot set access and modification date of '%s'"), fname); --- elfutils/tests/ChangeLog +++ elfutils/tests/ChangeLog -@@ -106,6 +106,8 @@ +@@ -124,6 +124,8 @@ 2008-01-21 Roland McGrath @@ -1229,7 +1221,7 @@ * testfile45.S.bz2: Add tests for cltq, cqto. * testfile45.expect.bz2: Adjust. -@@ -814,6 +816,11 @@ +@@ -832,6 +834,11 @@ * Makefile.am (TESTS): Add run-elflint-test.sh. (EXTRA_DIST): Add run-elflint-test.sh and testfile18.bz2. @@ -1272,7 +1264,7 @@ endif --- elfutils/tests/Makefile.in +++ elfutils/tests/Makefile.in -@@ -343,6 +343,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ +@@ -359,6 +359,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ @@ -1280,7 +1272,7 @@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ -@@ -372,6 +373,7 @@ SHELL = @SHELL@ +@@ -388,6 +389,7 @@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ @@ -1288,7 +1280,7 @@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ YACC = @YACC@ -@@ -429,10 +431,10 @@ top_build_prefix = @top_build_prefix@ +@@ -445,10 +447,10 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ zip_LIBS = @zip_LIBS@ elfutils-robustify.patch: libelf/ChangeLog | 43 +++++++++++++++++ libelf/elf32_getphdr.c | 10 ++++ libelf/elf32_getshdr.c | 15 +++++- libelf/elf32_newphdr.c | 6 ++ libelf/elf32_updatefile.c | 7 ++ libelf/elf_begin.c | 46 ++++++++++++++++++- libelf/elf_getarsym.c | 3 + libelf/elf_getshdrstrndx.c | 38 ++++++++++++++- libelf/elf_newscn.c | 10 +++- libelf/gelf_getdyn.c | 6 +- libelf/gelf_getlib.c | 3 - libelf/gelf_getmove.c | 3 - libelf/gelf_getrel.c | 12 +--- libelf/gelf_getrela.c | 12 +--- libelf/gelf_getsym.c | 6 +- libelf/gelf_getsyminfo.c | 3 - libelf/gelf_getsymshndx.c | 10 ++-- libelf/gelf_getversym.c | 3 - libelf/gelf_update_dyn.c | 12 +--- libelf/gelf_update_lib.c | 9 --- libelf/gelf_update_move.c | 2 libelf/gelf_update_rel.c | 12 +--- libelf/gelf_update_rela.c | 12 +--- libelf/gelf_update_sym.c | 12 +--- libelf/gelf_update_syminfo.c | 9 --- libelf/gelf_update_symshndx.c | 12 +--- libelf/gelf_update_versym.c | 2 libelf/libelfP.h | 9 +++ src/ChangeLog | 23 +++++++++ src/elflint.c | 101 +++++++++++++++++++++++++++++++----------- src/readelf.c | 92 +++++++++++++++++++++++++++----------- src/strip.c | 70 +++++++++++++++++++---------- 32 files changed, 446 insertions(+), 167 deletions(-) Index: elfutils-robustify.patch =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-11/elfutils-robustify.patch,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- elfutils-robustify.patch 24 Apr 2009 20:52:23 -0000 1.15 +++ elfutils-robustify.patch 29 Jul 2009 02:22:54 -0000 1.16 @@ -1,6 +1,6 @@ --- elfutils/libelf/ChangeLog +++ elfutils/libelf/ChangeLog -@@ -529,6 +529,49 @@ +@@ -568,6 +568,49 @@ If section content hasn't been read yet, do it before looking for the block size. If no section data present, infer size of section header. @@ -73,8 +73,8 @@ +++ elfutils/libelf/elf32_getshdr.c @@ -1,5 +1,5 @@ /* Return section header. -- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007 Red Hat, Inc. -+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2008 Red Hat, Inc. +- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2007, 2009 Red Hat, Inc. ++ Copyright (C) 1998-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 1998. @@ -82,8 +82,8 @@ goto out; size_t shnum; -- if (__elf_getshnum_rdlock (elf, &shnum) != 0) -+ if (__elf_getshnum_rdlock (elf, &shnum) != 0 +- if (__elf_getshdrnum_rdlock (elf, &shnum) != 0) ++ if (__elf_getshdrnum_rdlock (elf, &shnum) != 0 + || shnum > SIZE_MAX / sizeof (ElfW2(LIBELFBITS,Shdr))) goto out; size_t size = shnum * sizeof (ElfW2(LIBELFBITS,Shdr)); @@ -132,7 +132,7 @@ Elf_ScnList *list = &elf->state.ELFW(elf,LIBELFBITS).scns; Elf_Scn **scns = (Elf_Scn **) alloca (shnum * sizeof (Elf_Scn *)); char *const shdr_start = ((char *) elf->map_address + elf->start_offset -@@ -633,6 +636,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf +@@ -636,6 +639,10 @@ __elfw2(LIBELFBITS,updatefile) (Elf *elf /* Write all the sections. Well, only those which are modified. */ if (shnum > 0) { @@ -252,9 +252,9 @@ || n * sizeof (uint32_t) > index_size) { /* This index table cannot be right since it does not fit into ---- elfutils/libelf/elf_getshstrndx.c -+++ elfutils/libelf/elf_getshstrndx.c -@@ -125,10 +125,25 @@ elf_getshstrndx (elf, dst) +--- elfutils/libelf/elf_getshdrstrndx.c ++++ elfutils/libelf/elf_getshdrstrndx.c +@@ -125,10 +125,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf32.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -282,7 +282,7 @@ else { /* We avoid reading in all the section headers. Just read -@@ -163,10 +178,25 @@ elf_getshstrndx (elf, dst) +@@ -163,10 +178,25 @@ elf_getshdrstrndx (elf, dst) if (elf->map_address != NULL && elf->state.elf64.ehdr->e_ident[EI_DATA] == MY_ELFDATA && (ALLOW_UNALIGNED @@ -776,7 +776,7 @@ __libelf_seterrno (ELF_E_INVALID_INDEX); --- elfutils/libelf/libelfP.h +++ elfutils/libelf/libelfP.h -@@ -611,4 +611,13 @@ extern uint32_t __libelf_crc32 (uint32_t +@@ -606,4 +606,13 @@ extern uint32_t __libelf_crc32 (uint32_t /* Align offset to 4 bytes as needed for note name and descriptor data. */ #define NOTE_ALIGN(n) (((n) + 3) & -4U) @@ -792,7 +792,7 @@ #endif /* libelfP.h */ --- elfutils/src/ChangeLog +++ elfutils/src/ChangeLog -@@ -1376,6 +1376,16 @@ +@@ -1440,6 +1440,16 @@ object symbols or symbols with unknown type. (check_rel): Likewise. @@ -809,7 +809,7 @@ 2005-06-08 Roland McGrath * readelf.c (print_ops): Add consts. -@@ -1421,6 +1431,19 @@ +@@ -1485,6 +1495,19 @@ * readelf.c (dwarf_tag_string): Add new tags. @@ -873,7 +873,7 @@ static void check_elf_header (Ebl *ebl, GElf_Ehdr *ehdr, size_t size) { -@@ -611,7 +619,8 @@ section [%2d] '%s': symbol table cannot +@@ -612,7 +620,8 @@ section [%2d] '%s': symbol table cannot } } @@ -883,7 +883,7 @@ ERROR (gettext ("\ section [%2u] '%s': entry size is does not match ElfXX_Sym\n"), idx, section_name (ebl, idx)); -@@ -649,7 +658,7 @@ section [%2d] '%s': XINDEX for zeroth en +@@ -650,7 +659,7 @@ section [%2d] '%s': XINDEX for zeroth en xndxscnidx, section_name (ebl, xndxscnidx)); } @@ -892,7 +892,7 @@ { sym = gelf_getsymshndx (data, xndxdata, cnt, &sym_mem, &xndx); if (sym == NULL) -@@ -669,7 +678,8 @@ section [%2d] '%s': symbol %zu: invalid +@@ -670,7 +679,8 @@ section [%2d] '%s': symbol %zu: invalid else { name = elf_strptr (ebl->elf, shdr->sh_link, sym->st_name); @@ -902,7 +902,7 @@ } if (sym->st_shndx == SHN_XINDEX) -@@ -999,9 +1009,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1018,9 +1028,11 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Shdr rcshdr_mem; const GElf_Shdr *rcshdr = gelf_getshdr (scn, &rcshdr_mem); @@ -916,7 +916,7 @@ { /* Found the dynamic section. Look through it. */ Elf_Data *d = elf_getdata (scn, NULL); -@@ -1011,7 +1023,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e +@@ -1030,7 +1042,9 @@ is_rel_dyn (Ebl *ebl, const GElf_Ehdr *e { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (d, cnt, &dyn_mem); @@ -927,7 +927,7 @@ if (dyn->d_tag == DT_RELCOUNT) { -@@ -1025,7 +1039,9 @@ section [%2d] '%s': DT_RELCOUNT used for +@@ -1044,7 +1058,9 @@ section [%2d] '%s': DT_RELCOUNT used for /* Does the number specified number of relative relocations exceed the total number of relocations? */ @@ -938,7 +938,7 @@ ERROR (gettext ("\ section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n"), idx, section_name (ebl, idx), -@@ -1185,7 +1201,8 @@ section [%2d] '%s': no relocations for m +@@ -1204,7 +1220,8 @@ section [%2d] '%s': no relocations for m } } @@ -948,7 +948,7 @@ ERROR (gettext (reltype == ELF_T_RELA ? "\ section [%2d] '%s': section entry size does not match ElfXX_Rela\n" : "\ section [%2d] '%s': section entry size does not match ElfXX_Rel\n"), -@@ -1408,7 +1425,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G +@@ -1427,7 +1444,8 @@ check_rela (Ebl *ebl, GElf_Ehdr *ehdr, G Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -958,7 +958,7 @@ { GElf_Rela rela_mem; GElf_Rela *rela = gelf_getrela (data, cnt, &rela_mem); -@@ -1458,7 +1476,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE +@@ -1477,7 +1495,8 @@ check_rel (Ebl *ebl, GElf_Ehdr *ehdr, GE Elf_Data *symdata = elf_getdata (symscn, NULL); enum load_state state = state_undecided; @@ -968,7 +968,7 @@ { GElf_Rel rel_mem; GElf_Rel *rel = gelf_getrel (data, cnt, &rel_mem); -@@ -1561,7 +1580,8 @@ section [%2d] '%s': referenced as string +@@ -1580,7 +1599,8 @@ section [%2d] '%s': referenced as string shdr->sh_link, section_name (ebl, shdr->sh_link), idx, section_name (ebl, idx)); @@ -978,7 +978,7 @@ ERROR (gettext ("\ section [%2d] '%s': section entry size does not match ElfXX_Dyn\n"), idx, section_name (ebl, idx)); -@@ -1571,7 +1591,7 @@ section [%2d] '%s': section entry size d +@@ -1590,7 +1610,7 @@ section [%2d] '%s': section entry size d idx, section_name (ebl, idx)); bool non_null_warned = false; @@ -987,7 +987,7 @@ { GElf_Dyn dyn_mem; GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dyn_mem); -@@ -1852,6 +1872,8 @@ section [%2d] '%s': entry size does not +@@ -1871,6 +1891,8 @@ section [%2d] '%s': entry size does not idx, section_name (ebl, idx)); if (symshdr != NULL @@ -996,7 +996,7 @@ && (shdr->sh_size / shdr->sh_entsize < symshdr->sh_size / symshdr->sh_entsize)) ERROR (gettext ("\ -@@ -1878,6 +1900,12 @@ section [%2d] '%s': extended section ind +@@ -1897,6 +1919,12 @@ section [%2d] '%s': extended section ind } Elf_Data *data = elf_getdata (elf_getscn (ebl->elf, idx), NULL); @@ -1009,7 +1009,7 @@ if (*((Elf32_Word *) data->d_buf) != 0) ERROR (gettext ("symbol 0 should have zero extended section index\n")); -@@ -1920,7 +1948,7 @@ section [%2d] '%s': hash table section i +@@ -1939,7 +1967,7 @@ section [%2d] '%s': hash table section i size_t maxidx = nchain; @@ -1018,7 +1018,7 @@ { size_t symsize = symshdr->sh_size / symshdr->sh_entsize; -@@ -1931,18 +1959,28 @@ section [%2d] '%s': hash table section i +@@ -1950,18 +1978,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1049,7 +1049,7 @@ } -@@ -1972,18 +2010,28 @@ section [%2d] '%s': hash table section i +@@ -1991,18 +2029,28 @@ section [%2d] '%s': hash table section i maxidx = symsize; } @@ -1081,7 +1081,7 @@ } -@@ -2008,7 +2056,7 @@ section [%2d] '%s': bitmask size not pow +@@ -2027,7 +2075,7 @@ section [%2d] '%s': bitmask size not pow if (shdr->sh_size < (4 + bitmask_words + nbuckets) * sizeof (Elf32_Word)) { ERROR (gettext ("\ @@ -1090,7 +1090,7 @@ idx, section_name (ebl, idx), (long int) shdr->sh_size, (long int) ((4 + bitmask_words + nbuckets) * sizeof (Elf32_Word))); return; -@@ -2680,8 +2728,9 @@ section [%2d] '%s' refers in sh_link to +@@ -2699,8 +2747,9 @@ section [%2d] '%s' refers in sh_link to /* The number of elements in the version symbol table must be the same as the number of symbols. */ @@ -1104,7 +1104,7 @@ idx, section_name (ebl, idx), --- elfutils/src/readelf.c +++ elfutils/src/readelf.c -@@ -1136,6 +1136,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1146,6 +1146,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G Elf32_Word *grpref = (Elf32_Word *) data->d_buf; GElf_Sym sym_mem; @@ -1113,7 +1113,7 @@ printf ((grpref[0] & GRP_COMDAT) ? ngettext ("\ \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n", -@@ -1148,8 +1150,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G +@@ -1158,8 +1160,8 @@ handle_scngrp (Ebl *ebl, Elf_Scn *scn, G data->d_size / sizeof (Elf32_Word) - 1), elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), @@ -1124,7 +1124,7 @@ ?: gettext (""), data->d_size / sizeof (Elf32_Word) - 1); -@@ -1300,7 +1302,8 @@ static void +@@ -1310,7 +1312,8 @@ static void handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr) { int class = gelf_getclass (ebl->elf); @@ -1134,7 +1134,7 @@ Elf_Data *data; size_t cnt; size_t shstrndx; -@@ -1315,6 +1318,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1325,6 +1328,11 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1146,7 +1146,7 @@ printf (ngettext ("\ \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -1324,9 +1332,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, +@@ -1334,9 +1342,7 @@ handle_dynamic (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (int) shdr->sh_link, @@ -1157,7 +1157,7 @@ fputs_unlocked (gettext (" Type Value\n"), stdout); for (cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -1826,6 +1832,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1919,6 +1925,13 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1171,7 +1171,7 @@ /* Now we can compute the number of entries in the section. */ unsigned int nsyms = data->d_size / (class == ELFCLASS32 ? sizeof (Elf32_Sym) -@@ -1836,15 +1849,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G +@@ -1929,15 +1942,12 @@ handle_symtab (Ebl *ebl, Elf_Scn *scn, G nsyms), (unsigned int) elf_ndxscn (scn), elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms); @@ -1188,7 +1188,7 @@ fputs_unlocked (class == ELFCLASS32 ? gettext ("\ -@@ -2080,7 +2090,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2173,7 +2183,13 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1203,7 +1203,7 @@ printf (ngettext ("\ \nVersion needs section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2091,9 +2107,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, +@@ -2184,9 +2200,7 @@ handle_verneed (Ebl *ebl, Elf_Scn *scn, class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1214,7 +1214,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2146,8 +2160,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2239,8 +2253,14 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -1230,7 +1230,7 @@ printf (ngettext ("\ \nVersion definition section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2159,9 +2179,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G +@@ -2252,9 +2272,7 @@ handle_verdef (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1241,7 +1241,7 @@ unsigned int offset = 0; for (int cnt = shdr->sh_info; --cnt >= 0; ) -@@ -2423,8 +2441,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2516,8 +2534,14 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G filename = NULL; } @@ -1257,7 +1257,7 @@ printf (ngettext ("\ \nVersion symbols section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'", "\ -@@ -2436,9 +2460,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G +@@ -2529,9 +2553,7 @@ handle_versym (Ebl *ebl, Elf_Scn *scn, G class == ELFCLASS32 ? 10 : 18, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1268,7 +1268,7 @@ /* Now we can finally look at the actual contents of this section. */ for (unsigned int cnt = 0; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt) -@@ -2490,7 +2512,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2583,7 +2605,17 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt) ++counts[lengths[cnt]]; @@ -1287,7 +1287,7 @@ printf (ngettext ("\ \nHistogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n", "\ -@@ -2503,9 +2535,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, +@@ -2596,9 +2628,7 @@ print_hash_info (Ebl *ebl, Elf_Scn *scn, shdr->sh_addr, shdr->sh_offset, (unsigned int) shdr->sh_link, @@ -1298,7 +1298,7 @@ if (extrastr != NULL) fputs (extrastr, stdout); -@@ -4107,6 +4137,16 @@ print_debug_aranges_section (Dwfl_Module +@@ -4231,6 +4261,16 @@ print_debug_aranges_section (Dwfl_Module return; } Index: elfutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-11/elfutils.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- elfutils.spec 24 Apr 2009 20:52:23 -0000 1.116 +++ elfutils.spec 29 Jul 2009 02:22:54 -0000 1.117 @@ -1,4 +1,4 @@ -%define eu_version 0.141 +%define eu_version 0.142 %define eu_release 1 %if %{?_with_compat:1}%{!?_with_compat:0} @@ -27,7 +27,7 @@ Version: %{eu_version} %if !%{compat} Release: %{eu_release}%{?dist} %else -Release: 0.%{eu_release}.1 +Release: 0.%{eu_release} %endif License: GPLv2 with exceptions Group: Development/Tools @@ -276,6 +276,18 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libelf.a %changelog +* Tue Jul 28 2009 Roland McGrath - 0.142-1 +- Update to 0.142 + - libelf: Bug fix in filling gaps between sections. (#512840) + - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx + alias for elf_getshstrndx and deprecate original names. + - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436) + - readelf: Add -N option, speeds up DWARF printing + without address->name lookups. (#505347) + - libdw: Add support for decoding DWARF CFI into location description form. + Handle some new DWARF 3 expression operations previously omitted. + Basic handling of some new encodings slated for DWARF 4. + * Thu Apr 23 2009 Roland McGrath - 0.141-1 - Update to 0.141 - libebl: sparc backend fixes (#490585) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/F-11/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 24 Apr 2009 20:52:23 -0000 1.52 +++ sources 29 Jul 2009 02:22:54 -0000 1.53 @@ -1 +1 @@ -2d0fe5651c0de1fd28e7dd006effe7d1 elfutils-0.141.tar.bz2 +03ce3616fa6a347c3156ee5f74985ea7 elfutils-0.142.tar.bz2 From kevin at fedoraproject.org Wed Jul 29 02:29:00 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 29 Jul 2009 02:29:00 +0000 (UTC) Subject: rpms/xfwm4/F-11 xfwm4-4.6.1-focus.patch, NONE, 1.1 xfwm4.spec, 1.34, 1.35 Message-ID: <20090729022900.B197411C00D4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/xfwm4/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13643 Modified Files: xfwm4.spec Added Files: xfwm4-4.6.1-focus.patch Log Message: Add patch for focus issue (fixes bug #514206) xfwm4-4.6.1-focus.patch: focus.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- NEW FILE xfwm4-4.6.1-focus.patch --- diff -Nur xfwm4-4.6.1.orig/src/focus.c xfwm4-4.6.1/src/focus.c --- xfwm4-4.6.1.orig/src/focus.c 2009-04-15 01:58:59.000000000 -0600 +++ xfwm4-4.6.1/src/focus.c 2009-07-28 19:31:44.000000000 -0600 @@ -214,7 +214,12 @@ { Client *c2 = clientGetFocus(); - if ((c2 != NULL) && (c2->win_layer == c->win_layer)) + /* + * Place windows under the currently focused only if focus + * stealing prevention had prevented the focus transition, + * otherwise, leave the unfocused window on top. + */ + if ((c2 != NULL) && (c2->win_layer == c->win_layer) && prevented) { clientSortRing(c); clientLower (c, c2->frame); Index: xfwm4.spec =================================================================== RCS file: /cvs/extras/rpms/xfwm4/F-11/xfwm4.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xfwm4.spec 21 Apr 2009 02:31:29 -0000 1.34 +++ xfwm4.spec 29 Jul 2009 02:29:00 -0000 1.35 @@ -1,11 +1,12 @@ Summary: Next generation window manager for Xfce Name: xfwm4 Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfwm4-%{version}.tar.bz2 Patch0: xfwm4-4.5.92-nodoka.patch +Patch1: xfwm4-4.6.1-focus.patch Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -29,6 +30,7 @@ xfwm4 is a window manager compatible wit %setup -q # use Nodoka Theme %patch0 -p1 -b .nodoka +%patch1 -p1 -b .focus %build %configure --disable-static @@ -72,6 +74,9 @@ fi %{_libexecdir}/xfce4/xfwm4 %changelog +* Tue Jul 28 2009 Kevin Fenzi - 4.6.1-3 +- Add patch for focus issue (fixes bug #514206) + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From pkgdb at fedoraproject.org Wed Jul 29 02:31:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 02:31:51 +0000 Subject: [pkgdb] perl-Graph (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729023152.0933210F88F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Graph tibbs has set commit to Approved for 107427 on perl-Graph (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Graph (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Graph (Fedora EPEL 5) tibbs changed owner of perl-Graph in Fedora EPEL 5 to gouldwp tibbs approved watchbugzilla on perl-Graph (Fedora EPEL 5) for alexlan tibbs approved watchcommits on perl-Graph (Fedora EPEL 5) for alexlan tibbs approved commit on perl-Graph (Fedora EPEL 5) for alexlan tibbs approved build on perl-Graph (Fedora EPEL 5) for alexlan tibbs approved approveacls on perl-Graph (Fedora EPEL 5) for alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Graph From crobinso at fedoraproject.org Wed Jul 29 02:35:39 2009 From: crobinso at fedoraproject.org (Cole Robinson) Date: Wed, 29 Jul 2009 02:35:39 +0000 (UTC) Subject: rpms/virt-manager/devel .cvsignore, 1.22, 1.23 sources, 1.22, 1.23 virt-manager.spec, 1.53, 1.54 virt-manager-0.7.0-delete-dup-conn.patch, 1.1, NONE virt-manager-0.7.0-fix-button-ordering.patch, 1.1, NONE virt-manager-0.7.0-fix-vcpu-cap.patch, 1.1, NONE virt-manager-0.7.0-fix-window-resize.patch, 1.1, NONE virt-manager-0.7.0-handle-arch-config.patch, 1.1, NONE virt-manager-0.7.0-log-capabilities-at-startup.patch, 1.1, NONE virt-manager-0.7.0-old-xen-compat.patch, 1.1, NONE virt-manager-0.7.0-operating-typo.patch, 1.1, NONE virt-manager-0.7.0-update-translations-for-operating-typo.patch, 1.1, NONE virt-manager-0.7.0-update-translations.patch, 1.2, NONE virt-manager-0.7.0-vm-migrate-list.patch, 1.1, NONE virt-manager-0.7.0-vnc-auth-get-username.patch, 1.1, NONE Message-ID: <20090729023539.D6DC311C00D4@cvs1.fedora.phx.redhat.com> Author: crobinso Update of /cvs/pkgs/rpms/virt-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15314 Modified Files: .cvsignore sources virt-manager.spec Removed Files: virt-manager-0.7.0-delete-dup-conn.patch virt-manager-0.7.0-fix-button-ordering.patch virt-manager-0.7.0-fix-vcpu-cap.patch virt-manager-0.7.0-fix-window-resize.patch virt-manager-0.7.0-handle-arch-config.patch virt-manager-0.7.0-log-capabilities-at-startup.patch virt-manager-0.7.0-old-xen-compat.patch virt-manager-0.7.0-operating-typo.patch virt-manager-0.7.0-update-translations-for-operating-typo.patch virt-manager-0.7.0-update-translations.patch virt-manager-0.7.0-vm-migrate-list.patch virt-manager-0.7.0-vnc-auth-get-username.patch Log Message: Update to release 0.8.0 New 'Clone VM' Wizard Improved UI, including an overhaul of the main 'manager' view System tray icon for easy VM access (start, stop, view console/details) Wizard for adding serial, parallel, and video devices to existing VMs. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virt-manager/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 10 Mar 2009 06:37:18 -0000 1.22 +++ .cvsignore 29 Jul 2009 02:35:38 -0000 1.23 @@ -1 +1 @@ -virt-manager-0.7.0.tar.gz +virt-manager-0.8.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virt-manager/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 10 Mar 2009 06:37:19 -0000 1.22 +++ sources 29 Jul 2009 02:35:38 -0000 1.23 @@ -1 +1 @@ -32ca0ab48fd317cb6598d88468f16951 virt-manager-0.7.0.tar.gz +0b6cb9144e3933f2c9af07e2d409842d virt-manager-0.8.0.tar.gz Index: virt-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-manager/devel/virt-manager.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- virt-manager.spec 27 Jul 2009 06:55:11 -0000 1.53 +++ virt-manager.spec 29 Jul 2009 02:35:39 -0000 1.54 @@ -7,33 +7,22 @@ %define _extra_release %{?dist:%{dist}}%{!?dist:%{?extra_release:%{extra_release}}} Name: virt-manager -Version: 0.7.0 -Release: 6%{_extra_release} +Version: 0.8.0 +Release: 1%{_extra_release} Summary: Virtual Machine Manager Group: Applications/Emulators License: GPLv2+ URL: http://virt-manager.org/ Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz -Patch1: %{name}-%{version}-old-xen-compat.patch -Patch2: %{name}-%{version}-vm-migrate-list.patch -Patch3: %{name}-%{version}-fix-button-ordering.patch -Patch4: %{name}-%{version}-fix-vcpu-cap.patch -Patch5: %{name}-%{version}-delete-dup-conn.patch -Patch6: %{name}-%{version}-update-translations.patch -Patch7: %{name}-%{version}-operating-typo.patch -Patch8: %{name}-%{version}-update-translations-for-operating-typo.patch -Patch9: %{name}-%{version}-fix-window-resize.patch -Patch10: %{name}-%{version}-vnc-auth-get-username.patch -Patch11: %{name}-%{version}-handle-arch-config.patch -Patch12: %{name}-%{version}-log-capabilities-at-startup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch # These two are just the oldest version tested Requires: pygtk2 >= 1.99.12-6 Requires: gnome-python2-gconf >= 1.99.11-7 # Absolutely require this version or newer -Requires: libvirt-python >= 0.6.1 +Requires: libvirt-python >= 0.7.0 # Definitely does not work with earlier due to python API changes Requires: dbus-python >= 0.61 Requires: dbus-x11 @@ -53,7 +42,7 @@ Requires: gnome-python2-gnome # Minimum we've tested with Requires: libxml2-python >= 2.6.23 # Required to install Xen & QEMU guests -Requires: python-virtinst >= 0.400.3 +Requires: python-virtinst >= 0.500.0 # Required for loading the glade UI Requires: pygtk2-libglade # Required for our graphics which are currently SVG format @@ -63,7 +52,7 @@ Requires: vte >= 0.12.2 # For online help Requires: scrollkeeper # For console widget -Requires: gtk-vnc-python >= 0.3.4 +Requires: gtk-vnc-python >= 0.3.8 # For local authentication against PolicyKit %if 0%{?fedora} >= 11 Requires: PolicyKit-authentication-agent @@ -72,14 +61,6 @@ Requires: PolicyKit-authentication-agent Requires: PolicyKit-gnome %endif -BuildRequires: pygtk2-devel -BuildRequires: gtk2-devel -BuildRequires: pygobject2-devel -BuildRequires: glib2-devel -BuildRequires: python-devel -BuildRequires: pango-devel -BuildRequires: atk-devel -BuildRequires: cairo-devel BuildRequires: gettext BuildRequires: scrollkeeper BuildRequires: intltool @@ -99,29 +80,15 @@ management API. %prep %setup -q -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 %build %configure make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/sparkline.a -rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/sparkline.la - %find_lang %{name} %clean @@ -161,8 +128,6 @@ fi %{_sysconfdir}/gconf/schemas/%{name}.schemas %{_bindir}/%{name} %{_libexecdir}/%{name}-launch -%dir %{_libdir}/%{name}/ -%{_libdir}/%{name}/* %{_mandir}/man1/%{name}.1* @@ -188,6 +153,13 @@ fi %{_datadir}/dbus-1/services/%{name}.service %changelog +* Tue Jul 28 2009 Cole Robinson - 0.8.0-1.fc12 +- Update to release 0.8.0 +- New 'Clone VM' Wizard +- Improved UI, including an overhaul of the main 'manager' view +- System tray icon for easy VM access (start, stop, view console/details) +- Wizard for adding serial, parallel, and video devices to existing VMs. + * Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- virt-manager-0.7.0-delete-dup-conn.patch DELETED --- --- virt-manager-0.7.0-fix-button-ordering.patch DELETED --- --- virt-manager-0.7.0-fix-vcpu-cap.patch DELETED --- --- virt-manager-0.7.0-fix-window-resize.patch DELETED --- --- virt-manager-0.7.0-handle-arch-config.patch DELETED --- --- virt-manager-0.7.0-log-capabilities-at-startup.patch DELETED --- --- virt-manager-0.7.0-old-xen-compat.patch DELETED --- --- virt-manager-0.7.0-operating-typo.patch DELETED --- --- virt-manager-0.7.0-update-translations-for-operating-typo.patch DELETED --- --- virt-manager-0.7.0-update-translations.patch DELETED --- --- virt-manager-0.7.0-vm-migrate-list.patch DELETED --- --- virt-manager-0.7.0-vnc-auth-get-username.patch DELETED --- From clumens at fedoraproject.org Wed Jul 29 02:46:01 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 02:46:01 +0000 (UTC) Subject: rpms/python-meh/devel .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090729024601.7CA9A11C00D4@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/python-meh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18100 Modified Files: .cvsignore sources Log Message: Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-meh/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:56:59 -0000 1.1 +++ .cvsignore 29 Jul 2009 02:46:01 -0000 1.2 @@ -0,0 +1 @@ +python-meh-0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-meh/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:56:59 -0000 1.1 +++ sources 29 Jul 2009 02:46:01 -0000 1.2 @@ -0,0 +1 @@ +54f97e1a32d9614b17509364aeb3d8bb python-meh-0.1.tar.gz From clumens at fedoraproject.org Wed Jul 29 02:46:28 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 02:46:28 +0000 (UTC) Subject: rpms/python-meh/devel python-meh.spec,NONE,1.1 Message-ID: <20090729024628.6397311C00D4@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/python-meh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18358 Added Files: python-meh.spec Log Message: Initial build. --- NEW FILE python-meh.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Summary: A python library for handling exceptions Name: python-meh Url: http://git.fedoraproject.org/git/?p=python-meh.git Version: 0.1 Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. # This tarball was created from upstream git: # git clone git://git.fedoraproject.org/git/python-meh.git # cd python-meh && make archive Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: System Environment/Libraries BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, gettext, python-setuptools-devel, intltool Requires: python, python-bugzilla, dbus-python, pygtk2, pygtk2-libglade Requires: openssh-clients, rpm, yum, newt-python %description The python-meh package is a python library for handling, saving, and reporting exceptions. %prep %setup -q %build make %install rm -rf %{buildroot} make DESTDIR=%{buildroot} install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ChangeLog COPYING %{python_sitelib}/* %{_datadir}/python-meh %changelog * Tue Jul 28 2009 Chris Lumens - 0.1-1 - Initial package. From mclasen at fedoraproject.org Wed Jul 29 02:52:54 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 02:52:54 +0000 (UTC) Subject: rpms/gnome-desktop/devel .cvsignore, 1.86, 1.87 gnome-desktop.spec, 1.216, 1.217 sources, 1.86, 1.87 Message-ID: <20090729025254.762A811C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19598 Modified Files: .cvsignore gnome-desktop.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/.cvsignore,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- .cvsignore 15 Jul 2009 17:31:57 -0000 1.86 +++ .cvsignore 29 Jul 2009 02:52:54 -0000 1.87 @@ -1 +1 @@ -gnome-desktop-2.27.4.tar.bz2 +gnome-desktop-2.27.5.tar.bz2 Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/gnome-desktop.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- gnome-desktop.spec 25 Jul 2009 00:36:29 -0000 1.216 +++ gnome-desktop.spec 29 Jul 2009 02:52:54 -0000 1.217 @@ -9,10 +9,10 @@ %define po_package gnome-desktop-2.0 -Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc +Summary: Shared code among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.27/%{name}-%{version}.tar.bz2 # http://bugzilla.gnome.org/show_bug.cgi?id=581621 @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/sources,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- sources 15 Jul 2009 17:31:57 -0000 1.86 +++ sources 29 Jul 2009 02:52:54 -0000 1.87 @@ -1 +1 @@ -25c96e2a203edbad7372eb8b1096a0c0 gnome-desktop-2.27.4.tar.bz2 +0821f55e64126d371315f81c2a5fb012 gnome-desktop-2.27.5.tar.bz2 From mclasen at fedoraproject.org Wed Jul 29 02:57:17 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 02:57:17 +0000 (UTC) Subject: rpms/libwnck/devel .cvsignore, 1.74, 1.75 libwnck.spec, 1.111, 1.112 sources, 1.74, 1.75 Message-ID: <20090729025717.9419711C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libwnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20686 Modified Files: .cvsignore libwnck.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/.cvsignore,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- .cvsignore 15 Jul 2009 16:08:04 -0000 1.74 +++ .cvsignore 29 Jul 2009 02:57:17 -0000 1.75 @@ -1 +1 @@ -libwnck-2.27.4.tar.bz2 +libwnck-2.27.5.tar.bz2 Index: libwnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/libwnck.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- libwnck.spec 25 Jul 2009 08:55:17 -0000 1.111 +++ libwnck.spec 29 Jul 2009 02:57:17 -0000 1.112 @@ -5,8 +5,8 @@ Summary: Window Navigator Construction Kit Name: libwnck -Version: 2.27.4 -Release: 2%{?dist} +Version: 2.27.5 +Release: 1%{?dist} URL: http://download.gnome.org/sources/libwnck/ Source0: http://download.gnome.org/sources/libwnck/2.27/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/libwnck %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/sources,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sources 15 Jul 2009 16:08:04 -0000 1.74 +++ sources 29 Jul 2009 02:57:17 -0000 1.75 @@ -1 +1 @@ -a44dfb8bbf8069899d7ccf0f87822189 libwnck-2.27.4.tar.bz2 +9136894e3a078c0c79ec719f0105a630 libwnck-2.27.5.tar.bz2 From clumens at fedoraproject.org Wed Jul 29 02:58:58 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 02:58:58 +0000 (UTC) Subject: rpms/pykickstart/devel .cvsignore, 1.111, 1.112 pykickstart.spec, 1.122, 1.123 sources, 1.121, 1.122 Message-ID: <20090729025858.B963A11C00D4@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21228 Modified Files: .cvsignore pykickstart.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/.cvsignore,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- .cvsignore 17 Jul 2009 04:07:13 -0000 1.111 +++ .cvsignore 29 Jul 2009 02:58:58 -0000 1.112 @@ -45,3 +45,4 @@ pykickstart-1.55.tar.gz pykickstart-1.56.tar.gz pykickstart-1.57.tar.gz pykickstart-1.58.tar.gz +pykickstart-1.59.tar.gz Index: pykickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/pykickstart.spec,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- pykickstart.spec 26 Jul 2009 19:53:18 -0000 1.122 +++ pykickstart.spec 29 Jul 2009 02:58:58 -0000 1.123 @@ -3,8 +3,8 @@ Summary: A python library for manipulating kickstart files Name: pykickstart Url: http://fedoraproject.org/wiki/pykickstart -Version: 1.58 -Release: 2%{?dist} +Version: 1.59 +Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -45,8 +45,12 @@ rm -rf %{buildroot} %{_bindir}/ksverdiff %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 1.58-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Chris Lumens - 1.59-1 +- Handle a few more places where a urlgrabber error could happen (#512951). +- Error out if the same partition/repo/network is defined twice (#512956). +- Call parent class tests first. (jlaska) +- Add KSOptionParser to FC3 upgrade command. (jlaska) +- Correct missing return stmt in _getArgsAsStr() (jlaska) * Fri Jul 17 2009 Chris Lumens - 1.58-1 - Adjust writePriority to fix lvm-on-raid0 test cases (jlaska). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/sources,v retrieving revision 1.121 retrieving revision 1.122 diff -u -p -r1.121 -r1.122 --- sources 17 Jul 2009 04:07:13 -0000 1.121 +++ sources 29 Jul 2009 02:58:58 -0000 1.122 @@ -1 +1 @@ -ab1db3b7d37b9e097595ace5282f1034 pykickstart-1.58.tar.gz +635c391a8f5bf1e781f101311db76990 pykickstart-1.59.tar.gz From jstanley at fedoraproject.org Wed Jul 29 03:03:07 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 29 Jul 2009 03:03:07 +0000 (UTC) Subject: rpms/keychecker/devel import.log, NONE, 1.1 keychecker.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729030307.F0FD811C00D4@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/keychecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22164/devel Modified Files: .cvsignore sources Added Files: import.log keychecker.spec Log Message: Initial commit --- NEW FILE import.log --- keychecker-0_1-3_fc10:HEAD:keychecker-0.1-3.fc10.src.rpm:1248836596 --- NEW FILE keychecker.spec --- Name: keychecker Version: 0.1 Release: 3%{?dist} Summary: Generate list of installed packages sorted by GPG key Group: Applications/System License: GPLv2+ URL: https://fedorahosted.org/keychecker Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description Separately list rpm's based on the GPG key they were signed with %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT install -Dpm 0755 key_checker.py $RPM_BUILD_ROOT/%{_bindir}/keychecker %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/keychecker %doc README LICENSE %changelog * Tue Jul 28 2009 Jon Stanley - 0.1-3 - Fix spec typo * Sun Jul 26 2009 Jon Stanley - 0.1-2 - Review fixup (combine install lines) * Sun Jul 26 2009 Jon Stanley - 0.1-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:43:58 -0000 1.1 +++ .cvsignore 29 Jul 2009 03:03:07 -0000 1.2 @@ -0,0 +1 @@ +keychecker-0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:43:58 -0000 1.1 +++ sources 29 Jul 2009 03:03:07 -0000 1.2 @@ -0,0 +1 @@ +1855c6359578ada657f5c465ccfddba1 keychecker-0.1.tar.gz From jstanley at fedoraproject.org Wed Jul 29 03:05:19 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 29 Jul 2009 03:05:19 +0000 (UTC) Subject: rpms/keychecker/EL-5 keychecker.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090729030519.B815E11C00D4@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/keychecker/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645/EL-5 Modified Files: sources Added Files: keychecker.spec Log Message: Intitial commit --- NEW FILE keychecker.spec --- Name: keychecker Version: 0.1 Release: 3%{?dist} Summary: Generate list of installed packages sorted by GPG key Group: Applications/System License: GPLv2+ URL: https://fedorahosted.org/keychecker Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description Separately list rpm's based on the GPG key they were signed with %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT install -Dpm 0755 key_checker.py $RPM_BUILD_ROOT/%{_bindir}/keychecker %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/keychecker %doc README LICENSE %changelog * Tue Jul 28 2009 Jon Stanley - 0.1-3 - Fix spec typo * Sun Jul 26 2009 Jon Stanley - 0.1-2 - Review fixup (combine install lines) * Sun Jul 26 2009 Jon Stanley - 0.1-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:43:58 -0000 1.1 +++ sources 29 Jul 2009 03:05:19 -0000 1.2 @@ -0,0 +1 @@ +1855c6359578ada657f5c465ccfddba1 keychecker-0.1.tar.gz From jstanley at fedoraproject.org Wed Jul 29 03:05:19 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 29 Jul 2009 03:05:19 +0000 (UTC) Subject: rpms/keychecker/EL-4 keychecker.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090729030519.9024A11C00D4@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/keychecker/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645/EL-4 Modified Files: sources Added Files: keychecker.spec Log Message: Intitial commit --- NEW FILE keychecker.spec --- Name: keychecker Version: 0.1 Release: 3%{?dist} Summary: Generate list of installed packages sorted by GPG key Group: Applications/System License: GPLv2+ URL: https://fedorahosted.org/keychecker Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description Separately list rpm's based on the GPG key they were signed with %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT install -Dpm 0755 key_checker.py $RPM_BUILD_ROOT/%{_bindir}/keychecker %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/keychecker %doc README LICENSE %changelog * Tue Jul 28 2009 Jon Stanley - 0.1-3 - Fix spec typo * Sun Jul 26 2009 Jon Stanley - 0.1-2 - Review fixup (combine install lines) * Sun Jul 26 2009 Jon Stanley - 0.1-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:43:58 -0000 1.1 +++ sources 29 Jul 2009 03:05:19 -0000 1.2 @@ -0,0 +1 @@ +1855c6359578ada657f5c465ccfddba1 keychecker-0.1.tar.gz From jstanley at fedoraproject.org Wed Jul 29 03:05:19 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 29 Jul 2009 03:05:19 +0000 (UTC) Subject: rpms/keychecker/F-10 keychecker.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090729030519.EC86311C00D4@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/keychecker/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645/F-10 Modified Files: sources Added Files: keychecker.spec Log Message: Intitial commit --- NEW FILE keychecker.spec --- Name: keychecker Version: 0.1 Release: 3%{?dist} Summary: Generate list of installed packages sorted by GPG key Group: Applications/System License: GPLv2+ URL: https://fedorahosted.org/keychecker Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description Separately list rpm's based on the GPG key they were signed with %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT install -Dpm 0755 key_checker.py $RPM_BUILD_ROOT/%{_bindir}/keychecker %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/keychecker %doc README LICENSE %changelog * Tue Jul 28 2009 Jon Stanley - 0.1-3 - Fix spec typo * Sun Jul 26 2009 Jon Stanley - 0.1-2 - Review fixup (combine install lines) * Sun Jul 26 2009 Jon Stanley - 0.1-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:43:58 -0000 1.1 +++ sources 29 Jul 2009 03:05:19 -0000 1.2 @@ -0,0 +1 @@ +1855c6359578ada657f5c465ccfddba1 keychecker-0.1.tar.gz From jstanley at fedoraproject.org Wed Jul 29 03:05:20 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 29 Jul 2009 03:05:20 +0000 (UTC) Subject: rpms/keychecker/F-11 keychecker.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090729030520.4AE1B11C00D4@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/keychecker/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645/F-11 Modified Files: sources Added Files: keychecker.spec Log Message: Intitial commit --- NEW FILE keychecker.spec --- Name: keychecker Version: 0.1 Release: 3%{?dist} Summary: Generate list of installed packages sorted by GPG key Group: Applications/System License: GPLv2+ URL: https://fedorahosted.org/keychecker Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description Separately list rpm's based on the GPG key they were signed with %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT install -Dpm 0755 key_checker.py $RPM_BUILD_ROOT/%{_bindir}/keychecker %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/keychecker %doc README LICENSE %changelog * Tue Jul 28 2009 Jon Stanley - 0.1-3 - Fix spec typo * Sun Jul 26 2009 Jon Stanley - 0.1-2 - Review fixup (combine install lines) * Sun Jul 26 2009 Jon Stanley - 0.1-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/keychecker/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:43:58 -0000 1.1 +++ sources 29 Jul 2009 03:05:20 -0000 1.2 @@ -0,0 +1 @@ +1855c6359578ada657f5c465ccfddba1 keychecker-0.1.tar.gz From mclasen at fedoraproject.org Wed Jul 29 03:09:12 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 03:09:12 +0000 (UTC) Subject: rpms/gnome-session/devel .cvsignore, 1.76, 1.77 gnome-session.spec, 1.243, 1.244 polkit1.patch, 1.3, 1.4 sources, 1.80, 1.81 Message-ID: <20090729030912.DF99111C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23530 Modified Files: .cvsignore gnome-session.spec polkit1.patch sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 15 Jul 2009 18:15:27 -0000 1.76 +++ .cvsignore 29 Jul 2009 03:09:12 -0000 1.77 @@ -1 +1 @@ -gnome-session-2.27.4.tar.bz2 +gnome-session-2.27.5.tar.bz2 Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.243 retrieving revision 1.244 diff -u -p -r1.243 -r1.244 --- gnome-session.spec 25 Jul 2009 00:46:41 -0000 1.243 +++ gnome-session.spec 29 Jul 2009 03:09:12 -0000 1.244 @@ -9,8 +9,8 @@ Summary: GNOME session manager Name: gnome-session -Version: 2.27.4 -Release: 3%{?dist} +Version: 2.27.5 +Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-session/2.27/%{name}-%{version}.tar.bz2 Source2: gnome.desktop @@ -174,6 +174,10 @@ fi %changelog +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + +:a * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild polkit1.patch: configure.in | 19 - gnome-session/Makefile.am | 2 gnome-session/gsm-consolekit.c | 562 ++++------------------------------------- 3 files changed, 60 insertions(+), 523 deletions(-) Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/polkit1.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- polkit1.patch 16 Jul 2009 00:12:52 -0000 1.3 +++ polkit1.patch 29 Jul 2009 03:09:12 -0000 1.4 @@ -1,7 +1,7 @@ -diff -up gnome-session-2.27.4/configure.in.polkit1 gnome-session-2.27.4/configure.in ---- gnome-session-2.27.4/configure.in.polkit1 2009-07-15 10:53:06.000000000 -0400 -+++ gnome-session-2.27.4/configure.in 2009-07-15 19:52:55.779086207 -0400 -@@ -32,7 +32,7 @@ AC_ARG_WITH(at-spi-registryd-directory, +diff -up gnome-session-2.27.5/configure.in.polkit1 gnome-session-2.27.5/configure.in +--- gnome-session-2.27.5/configure.in.polkit1 2009-07-28 21:51:22.000000000 -0400 ++++ gnome-session-2.27.5/configure.in 2009-07-28 23:05:25.662498945 -0400 +@@ -33,7 +33,7 @@ AC_ARG_WITH(at-spi-registryd-directory, AT_SPI_REGISTRYD_DIR=$with_at_spi_registryd_directory AC_SUBST(AT_SPI_REGISTRYD_DIR) @@ -10,15 +10,15 @@ diff -up gnome-session-2.27.4/configure. AC_ARG_ENABLE(deprecations, [AC_HELP_STRING([--enable-deprecations], -@@ -48,7 +48,6 @@ GLIB_REQUIRED=2.16.0 +@@ -49,7 +49,6 @@ GLIB_REQUIRED=2.16.0 LIBGNOMEUI_REQUIRED=2.2.0 GTK_REQUIRED=2.12.0 DBUS_GLIB_REQUIRED=0.76 -POLKIT_GNOME_REQUIRED=0.7 + DEVKIT_POWER_REQUIRED=008 dnl ==================================================================== - dnl Dependency Checks -@@ -86,21 +85,6 @@ PKG_CHECK_MODULES(GCONF, gconf-2.0) +@@ -89,22 +88,6 @@ PKG_CHECK_MODULES(GCONF, gconf-2.0) PKG_CHECK_MODULES(EGG_SMCLIENT, gtk+-2.0) @@ -37,12 +37,13 @@ diff -up gnome-session-2.27.4/configure. -if test "x$have_polkit" = "xyes"; then - AC_DEFINE(HAVE_POLKIT_GNOME, [1], [whether PolKit GNOME was found]) -fi - +- + dnl ==================================================================== + dnl Option to set the default window manager dnl ==================================================================== - dnl GConf Checks -diff -up gnome-session-2.27.4/gnome-session/gsm-consolekit.c.polkit1 gnome-session-2.27.4/gnome-session/gsm-consolekit.c ---- gnome-session-2.27.4/gnome-session/gsm-consolekit.c.polkit1 2009-07-01 08:45:30.000000000 -0400 -+++ gnome-session-2.27.4/gnome-session/gsm-consolekit.c 2009-07-15 19:57:50.969319136 -0400 +diff -up gnome-session-2.27.5/gnome-session/gsm-consolekit.c.polkit1 gnome-session-2.27.5/gnome-session/gsm-consolekit.c +--- gnome-session-2.27.5/gnome-session/gsm-consolekit.c.polkit1 2009-07-28 21:29:27.000000000 -0400 ++++ gnome-session-2.27.5/gnome-session/gsm-consolekit.c 2009-07-28 22:58:49.369736767 -0400 @@ -31,10 +31,6 @@ #include #include @@ -54,7 +55,7 @@ diff -up gnome-session-2.27.4/gnome-sess #include "gsm-marshal.h" #include "gsm-consolekit.h" -@@ -413,177 +409,6 @@ emit_stop_complete (GsmConsolekit *manag +@@ -465,177 +461,6 @@ emit_stop_complete (GsmConsolekit *manag } } @@ -232,7 +233,7 @@ diff -up gnome-session-2.27.4/gnome-sess void gsm_consolekit_attempt_restart (GsmConsolekit *manager) { -@@ -600,16 +425,16 @@ gsm_consolekit_attempt_restart (GsmConso +@@ -652,16 +477,16 @@ gsm_consolekit_attempt_restart (GsmConso return; } @@ -257,7 +258,7 @@ diff -up gnome-session-2.27.4/gnome-sess g_error_free (error); } else { emit_restart_complete (manager, NULL); -@@ -632,16 +457,16 @@ gsm_consolekit_attempt_stop (GsmConsolek +@@ -684,16 +509,16 @@ gsm_consolekit_attempt_stop (GsmConsolek return; } @@ -282,7 +283,7 @@ diff -up gnome-session-2.27.4/gnome-sess g_error_free (error); } else { emit_stop_complete (manager, NULL); -@@ -907,347 +732,78 @@ gsm_consolekit_can_switch_user (GsmConso +@@ -969,347 +794,78 @@ gsm_consolekit_can_switch_user (GsmConso return ret; } @@ -673,10 +674,10 @@ diff -up gnome-session-2.27.4/gnome-sess } gchar * -diff -up gnome-session-2.27.4/gnome-session/Makefile.am.polkit1 gnome-session-2.27.4/gnome-session/Makefile.am ---- gnome-session-2.27.4/gnome-session/Makefile.am.polkit1 2009-07-01 08:45:30.000000000 -0400 -+++ gnome-session-2.27.4/gnome-session/Makefile.am 2009-07-15 19:53:08.955071147 -0400 -@@ -17,7 +17,6 @@ INCLUDES = \ +diff -up gnome-session-2.27.5/gnome-session/Makefile.am.polkit1 gnome-session-2.27.5/gnome-session/Makefile.am +--- gnome-session-2.27.5/gnome-session/Makefile.am.polkit1 2009-07-28 21:51:22.000000000 -0400 ++++ gnome-session-2.27.5/gnome-session/Makefile.am 2009-07-28 22:58:49.370735427 -0400 +@@ -16,7 +16,6 @@ INCLUDES = \ $(ICE_CFLAGS) \ $(GNOME_SESSION_CFLAGS) \ $(GCONF_CFLAGS) \ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/sources,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- sources 15 Jul 2009 18:15:28 -0000 1.80 +++ sources 29 Jul 2009 03:09:12 -0000 1.81 @@ -1 +1 @@ -bf4d141f72c182d8eadc68e42a4a5343 gnome-session-2.27.4.tar.bz2 +d0512f7f514262c52fe27228bdbba804 gnome-session-2.27.5.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 03:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:11:32 +0000 Subject: [pkgdb] sigul was added for jkeating Message-ID: <20090729031132.A8C1210F8B8@bastion2.fedora.phx.redhat.com> tibbs has added Package sigul with summary A signing server and related software client tibbs has approved Package sigul tibbs has added a Fedora devel branch for sigul with an owner of jkeating tibbs has approved sigul in Fedora devel tibbs has approved Package sigul tibbs has set commit to Approved for 107427 on sigul (Fedora devel) tibbs has set checkout to Approved for 107427 on sigul (Fedora devel) tibbs has set build to Approved for 107427 on sigul (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sigul From pkgdb at fedoraproject.org Wed Jul 29 03:11:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:11:34 +0000 Subject: [pkgdb] sigul summary updated by tibbs Message-ID: <20090729031134.1588210F8BD@bastion2.fedora.phx.redhat.com> tibbs set package sigul summary to A signing server and related software client To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sigul From pkgdb at fedoraproject.org Wed Jul 29 03:11:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:11:34 +0000 Subject: [pkgdb] sigul (Fedora, 11) updated by tibbs Message-ID: <20090729031134.1CCBA10F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for sigul tibbs has set commit to Approved for 107427 on sigul (Fedora 11) tibbs has set checkout to Approved for 107427 on sigul (Fedora 11) tibbs has set build to Approved for 107427 on sigul (Fedora 11) tibbs approved watchbugzilla on sigul (Fedora 11) for mitr tibbs approved watchcommits on sigul (Fedora 11) for mitr tibbs approved commit on sigul (Fedora 11) for mitr tibbs approved build on sigul (Fedora 11) for mitr tibbs approved approveacls on sigul (Fedora 11) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sigul From pkgdb at fedoraproject.org Wed Jul 29 03:11:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:11:34 +0000 Subject: [pkgdb] sigul (Fedora, 11) updated by tibbs Message-ID: <20090729031134.2C2CE10F8C5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for sigul tibbs has set commit to Approved for 107427 on sigul (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on sigul (Fedora EPEL 5) tibbs has set build to Approved for 107427 on sigul (Fedora EPEL 5) tibbs approved watchbugzilla on sigul (Fedora EPEL 5) for mitr tibbs approved watchcommits on sigul (Fedora EPEL 5) for mitr tibbs approved commit on sigul (Fedora EPEL 5) for mitr tibbs approved build on sigul (Fedora EPEL 5) for mitr tibbs approved approveacls on sigul (Fedora EPEL 5) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sigul From tibbs at fedoraproject.org Wed Jul 29 03:11:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:11:39 +0000 (UTC) Subject: rpms/sigul - New directory Message-ID: <20090729031139.1B71411C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sigul In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw24204/rpms/sigul Log Message: Directory /cvs/pkgs/rpms/sigul added to the repository From pkgdb at fedoraproject.org Wed Jul 29 03:11:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:11:34 +0000 Subject: [pkgdb] sigul (Fedora, 11) updated by tibbs Message-ID: <20090729031134.3AA1210F8C8@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on sigul (Fedora devel) for mitr tibbs approved watchcommits on sigul (Fedora devel) for mitr tibbs approved commit on sigul (Fedora devel) for mitr tibbs approved build on sigul (Fedora devel) for mitr tibbs approved approveacls on sigul (Fedora devel) for mitr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sigul From tibbs at fedoraproject.org Wed Jul 29 03:11:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:11:39 +0000 (UTC) Subject: rpms/sigul/devel - New directory Message-ID: <20090729031139.3EA6311C0423@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw24204/rpms/sigul/devel Log Message: Directory /cvs/pkgs/rpms/sigul/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 03:11:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:11:45 +0000 (UTC) Subject: rpms/sigul Makefile,NONE,1.1 Message-ID: <20090729031145.19E3D11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sigul In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw24204/rpms/sigul Added Files: Makefile Log Message: Setup of module sigul --- NEW FILE Makefile --- # Top level Makefile for module sigul all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 03:11:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:11:45 +0000 (UTC) Subject: rpms/sigul/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729031145.6BF9C11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw24204/rpms/sigul/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module sigul --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: sigul # $Id: Makefile,v 1.1 2009/07/29 03:11:45 tibbs Exp $ NAME := sigul SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Wed Jul 29 03:14:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:14:11 +0000 (UTC) Subject: rpms/sigul/devel 0001-Handle-signing-of-source-rpms.patch, NONE, 1.1 import.log, NONE, 1.1 sigul.logrotate, NONE, 1.1 sigul.spec, NONE, 1.1 sigul_bridge.init, NONE, 1.1 sigul_server.init, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729031411.727E911C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25689/devel Modified Files: .cvsignore sources Added Files: 0001-Handle-signing-of-source-rpms.patch import.log sigul.logrotate sigul.spec sigul_bridge.init sigul_server.init Log Message: Initial import of reviewed srpm 0001-Handle-signing-of-source-rpms.patch: server.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) --- NEW FILE 0001-Handle-signing-of-source-rpms.patch --- >From 9502326ec4d0f7442fbb3dfc630b30bc3e711a04 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:10:17 -0700 Subject: [PATCH] Handle signing of source rpms. Source RPM 'arch' in the header can either be noarch, or the arch of the host preparing the srpm. Therefor we need to detect a srpm and react accordingly. --- src/server.py | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/server.py b/src/server.py index 4e554bd..9d2bce3 100644 --- a/src/server.py +++ b/src/server.py @@ -986,7 +986,13 @@ def cmd_sign_rpm(db, conn): field_value = conn.safe_outer_field(field) if field_value is None: continue - rpm_value = hdr[tag] + # rpm arch for srpms is noarch or the arch prepared on. Therefor + # check to see if sourcepage is 1 + if field_value == 'src': + if hdr['sourcepackage'] == 1: + rpm_value = 'src' + else: + rpm_value = hdr[tag] if rpm_value is None: rpm_value = '' if field_value != rpm_value: -- 1.6.2.5 --- NEW FILE import.log --- sigul-0_96-2:HEAD:sigul-0.96-2.src.rpm:1248837141 --- NEW FILE sigul.logrotate --- /var/log/sigul*.log { missingok notifempty } --- NEW FILE sigul.spec --- Summary: A signing server and related software client Name: sigul Version: 0.96 Release: 2 License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ # Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init Source3: sigul.logrotate Requires: koji, logrotate, m2crypto, pexpect, pygpgme, python, python-fedora, Requires: python-nss >= 0.4, python-sqlalchemy, python-sqlite2 Requires: python-urlgrabber # For sigul_setup_client Requires: coreutils nss-tools Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig, initscripts Requires(postun): initscripts BuildRequires: python # To detect the path correctly in configure BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Patch0: 0001-Handle-signing-of-source-rpms.patch %description A signing server, which lets authorized users sign data without having any access to the necessary private key, a client for the server, and a "bridge" that connects the two. %prep %setup -q %patch0 -p1 %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install mkdir -p $RPM_BUILD_ROOT%{_initrddir} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d install -p %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/sigul_bridge install -p %{SOURCE2} $RPM_BUILD_ROOT%{_initrddir}/sigul_server install -m 0644 -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/sigul %clean rm -rf $RPM_BUILD_ROOT %pre getent group sigul >/dev/null || groupadd -r sigul getent passwd sigul >/dev/null || \ useradd -r -g sigul -d %{_localstatedir}/lib/sigul -s /sbin/nologin \ -c "Signing server or bridge" sigul exit 0 %post /sbin/chkconfig --add sigul_bridge /sbin/chkconfig --add sigul_server %preun if [ "$1" = 0 ]; then /sbin/service sigul_bridge stop >/dev/null 2>&1 /sbin/service sigul_server stop >/dev/null 2>&1 /sbin/chkconfig --del sigul_bridge /sbin/chkconfig --del sigul_server fi %postun if [ "$1" -ge 1 ]; then /sbin/service sigul_bridge condrestart >/dev/null 2>&1 || : /sbin/service sigul_server condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/server.conf %{_initrddir}/sigul* %config(noreplace) %{_sysconfdir}/logrotate.d/sigul %{_bindir}/sigul* %{_sbindir}/sigul* %{_mandir}/man1/sigul*.1* %{_mandir}/man8/sigul*.8* %{_datadir}/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog * Mon Jul 27 2009 Jesse Keating - 0.96-2 - Fix various bugs while testing (release by Mitr) - Patch from jkeating for srpm signing. * Sat Jul 18 2009 Miloslav Trma? - 0.95-0.mitr.1 - Update to 0.95. - Add missing Requires: m2crypto. * Wed Jul 1 2009 Miloslav Trma? - 0.94-0.mitr.1 - Update to 0.94. * Fri Apr 10 2009 Miloslav Trma? - 0.93-0.mitr.1 - Update to 0.93. * Wed Jan 28 2009 Miloslav Trma? - 0.92-0.mitr.1 - Update to 0.92. * Mon Jan 12 2009 Miloslav Trma? - 0.91-0.mitr.1 - Update to 0.91. * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.2 - Requires: koji, python-sqlite2 * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.1 - s/rpmsigner/sigul/g * Sun Nov 30 2008 Miloslav Trma? - 0.90-0.mitr.1 - Initial package. --- NEW FILE sigul_bridge.init --- #! /bin/sh # chkconfig: - 99 01 # description: A network server that connects a signing server and its clients . /etc/rc.d/init.d/functions prog=sigul_bridge lockfile=/var/lock/subsys/sigul_bridge start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" --- NEW FILE sigul_server.init --- #! /bin/sh # chkconfig: - 99 01 # description: A server that allows users to sign data without access to the \ # necessary key . /etc/rc.d/init.d/functions prog=sigul_server lockfile=/var/lock/subsys/sigul_server start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 03:11:45 -0000 1.1 +++ .cvsignore 29 Jul 2009 03:14:10 -0000 1.2 @@ -0,0 +1 @@ +sigul-0.96.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 03:11:45 -0000 1.1 +++ sources 29 Jul 2009 03:14:11 -0000 1.2 @@ -0,0 +1 @@ +faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 From clumens at fedoraproject.org Wed Jul 29 03:15:30 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 03:15:30 +0000 (UTC) Subject: rpms/system-config-kickstart/devel .cvsignore, 1.61, 1.62 sources, 1.75, 1.76 system-config-kickstart.spec, 1.81, 1.82 Message-ID: <20090729031530.B9C6A11C00D4@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/system-config-kickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26041 Modified Files: .cvsignore sources system-config-kickstart.spec Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 1 Jul 2009 20:01:29 -0000 1.61 +++ .cvsignore 29 Jul 2009 03:15:30 -0000 1.62 @@ -5,3 +5,4 @@ system-config-kickstart-2.7.19.tar.gz system-config-kickstart-2.7.21.tar.gz system-config-kickstart-2.7.22.tar.gz system-config-kickstart-2.8.0.tar.gz +system-config-kickstart-2.8.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/sources,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- sources 1 Jul 2009 20:01:29 -0000 1.75 +++ sources 29 Jul 2009 03:15:30 -0000 1.76 @@ -1 +1 @@ -3dd953710331073b481559b105437e8b system-config-kickstart-2.8.0.tar.gz +7a0f2981e53957198d2d6b4528a1a4e2 system-config-kickstart-2.8.1.tar.gz Index: system-config-kickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/system-config-kickstart.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- system-config-kickstart.spec 27 Jul 2009 05:23:22 -0000 1.81 +++ system-config-kickstart.spec 29 Jul 2009 03:15:30 -0000 1.82 @@ -1,7 +1,7 @@ Summary: A graphical interface for making kickstart files Name: system-config-kickstart -Version: 2.8.0 -Release: 2%{?dist} +Version: 2.8.1 +Release: 1%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/Tools License: GPLv2+ ExclusiveOS: Linux @@ -13,10 +13,10 @@ BuildArch: noarch # within this srpm. Source0: %{name}-%{version}.tar.gz -Obsoletes: ksconfig, redhat-config-kickstart +Obsoletes: ksconfig, redhat-config-kickstart, mkkickstart BuildRequires: desktop-file-utils, intltool, gettext Requires: pygtk2 >= 1.99.11, pygtk2-libglade, python >= 2.3.3, hwdata, rhpl -Requires: system-config-language, system-config-date +Requires: system-config-language, system-config-date, python-meh Requires: pykickstart >= 0.96, yum, anaconda >= 11.4.0.42-1, hicolor-icon-theme Requires(post): gtk2 >= 2.6 Requires(postun): gtk2 >= 2.6 @@ -68,8 +68,10 @@ fi %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-kickstart.png %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 2.8.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Chris Lumens - 2.8.1-1 +- Change the skipx blurb to make more sense (#493835). +- Update to using python-meh for exception handling instead of rhpl. +- Do VERSION substitution on all files. * Wed Jul 01 2009 Chris Lumens - 2.8.0-1 - Allow specifying anything for a network device name, not just ethX (#508089). From jkeating at fedoraproject.org Wed Jul 29 03:17:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:17:40 +0000 (UTC) Subject: rpms/sigul/devel 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, NONE, 1.1 import.log, 1.1, 1.2 sigul.spec, 1.1, 1.2 Message-ID: <20090729031740.B391111C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26513/devel Modified Files: import.log sigul.spec Added Files: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch Log Message: Integrate fixes found during test deployment in Fedora. 0002-Temporary-workaround-for-accidentially-re-downloadin.patch: bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch --- >From a94667940ac9523b8132f9c003a8f4b4fab6b7af Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 28 Jul 2009 20:06:30 -0700 Subject: [PATCH 2/2] Temporary workaround for accidentially re-downloading stale rpms. This is causing us to download the same rpm over and over which really doesn't work well. This is a temporary work around given to me by Mitr. --- src/bridge.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/bridge.py b/src/bridge.py index 15f6422..4bda697 100644 --- a/src/bridge.py +++ b/src/bridge.py @@ -309,7 +309,7 @@ class SignRpmRequestType(RequestType): # attempts to initialize nss with our certificate database. import koji - if self.__koji_session is None: + if True: try: self.__koji_config = utils.koji_read_config() # self.__request_fields['user'] safety was verified by -- 1.6.2.5 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Jul 2009 03:14:10 -0000 1.1 +++ import.log 29 Jul 2009 03:17:40 -0000 1.2 @@ -1 +1,2 @@ sigul-0_96-2:HEAD:sigul-0.96-2.src.rpm:1248837141 +sigul-0_96-4:HEAD:sigul-0.96-4.src.rpm:1248837360 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sigul.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sigul.spec 29 Jul 2009 03:14:11 -0000 1.1 +++ sigul.spec 29 Jul 2009 03:17:40 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A signing server and related software client Name: sigul Version: 0.96 -Release: 2 +Release: 4 License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ @@ -11,7 +11,8 @@ Source1: sigul_bridge.init Source2: sigul_server.init Source3: sigul.logrotate Requires: koji, logrotate, m2crypto, pexpect, pygpgme, python, python-fedora, -Requires: python-nss >= 0.4, python-sqlalchemy, python-sqlite2 +Requires: python-nss >= 0.6 +Requires: python-sqlalchemy, python-sqlite2 Requires: python-urlgrabber # For sigul_setup_client Requires: coreutils nss-tools @@ -25,6 +26,7 @@ BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Patch0: 0001-Handle-signing-of-source-rpms.patch +Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any @@ -34,6 +36,7 @@ that connects the two. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure @@ -93,6 +96,13 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Tue Jul 28 2009 Jesse Keating - 0.96-4 +- Add another patch to temporarily work around a stale koji issue. +- Bump python-nss reqs up now that we have a newer one in EPEL + +* Mon Jul 27 2009 Jesse Keating - 0.96-3 +- Setup the Requires right for EL5 + * Mon Jul 27 2009 Jesse Keating - 0.96-2 - Fix various bugs while testing (release by Mitr) - Patch from jkeating for srpm signing. From jkeating at fedoraproject.org Wed Jul 29 03:19:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:19:52 +0000 (UTC) Subject: rpms/sigul/EL-5 0001-Handle-signing-of-source-rpms.patch, NONE, 1.1 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, NONE, 1.1 import.log, NONE, 1.1 sigul.logrotate, NONE, 1.1 sigul.spec, NONE, 1.1 sigul_bridge.init, NONE, 1.1 sigul_server.init, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729031952.CF42B11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27094/EL-5 Modified Files: .cvsignore sources Added Files: 0001-Handle-signing-of-source-rpms.patch 0002-Temporary-workaround-for-accidentially-re-downloadin.patch import.log sigul.logrotate sigul.spec sigul_bridge.init sigul_server.init Log Message: Import latest sigul for EL-5 0001-Handle-signing-of-source-rpms.patch: server.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) --- NEW FILE 0001-Handle-signing-of-source-rpms.patch --- >From 9502326ec4d0f7442fbb3dfc630b30bc3e711a04 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:10:17 -0700 Subject: [PATCH] Handle signing of source rpms. Source RPM 'arch' in the header can either be noarch, or the arch of the host preparing the srpm. Therefor we need to detect a srpm and react accordingly. --- src/server.py | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/server.py b/src/server.py index 4e554bd..9d2bce3 100644 --- a/src/server.py +++ b/src/server.py @@ -986,7 +986,13 @@ def cmd_sign_rpm(db, conn): field_value = conn.safe_outer_field(field) if field_value is None: continue - rpm_value = hdr[tag] + # rpm arch for srpms is noarch or the arch prepared on. Therefor + # check to see if sourcepage is 1 + if field_value == 'src': + if hdr['sourcepackage'] == 1: + rpm_value = 'src' + else: + rpm_value = hdr[tag] if rpm_value is None: rpm_value = '' if field_value != rpm_value: -- 1.6.2.5 0002-Temporary-workaround-for-accidentially-re-downloadin.patch: bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch --- >From a94667940ac9523b8132f9c003a8f4b4fab6b7af Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 28 Jul 2009 20:06:30 -0700 Subject: [PATCH 2/2] Temporary workaround for accidentially re-downloading stale rpms. This is causing us to download the same rpm over and over which really doesn't work well. This is a temporary work around given to me by Mitr. --- src/bridge.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/bridge.py b/src/bridge.py index 15f6422..4bda697 100644 --- a/src/bridge.py +++ b/src/bridge.py @@ -309,7 +309,7 @@ class SignRpmRequestType(RequestType): # attempts to initialize nss with our certificate database. import koji - if self.__koji_session is None: + if True: try: self.__koji_config = utils.koji_read_config() # self.__request_fields['user'] safety was verified by -- 1.6.2.5 --- NEW FILE import.log --- sigul-0_96-4:EL-5:sigul-0.96-4.src.rpm:1248837571 --- NEW FILE sigul.logrotate --- /var/log/sigul*.log { missingok notifempty } --- NEW FILE sigul.spec --- Summary: A signing server and related software client Name: sigul Version: 0.96 Release: 4 License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ # Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init Source3: sigul.logrotate Requires: koji, logrotate, m2crypto, pexpect, pygpgme, python, python-fedora, Requires: python-nss >= 0.6 Requires: python-sqlalchemy, python-sqlite2 Requires: python-urlgrabber # For sigul_setup_client Requires: coreutils nss-tools Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig, initscripts Requires(postun): initscripts BuildRequires: python # To detect the path correctly in configure BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Patch0: 0001-Handle-signing-of-source-rpms.patch Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any access to the necessary private key, a client for the server, and a "bridge" that connects the two. %prep %setup -q %patch0 -p1 %patch1 -p1 %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install mkdir -p $RPM_BUILD_ROOT%{_initrddir} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d install -p %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/sigul_bridge install -p %{SOURCE2} $RPM_BUILD_ROOT%{_initrddir}/sigul_server install -m 0644 -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/sigul %clean rm -rf $RPM_BUILD_ROOT %pre getent group sigul >/dev/null || groupadd -r sigul getent passwd sigul >/dev/null || \ useradd -r -g sigul -d %{_localstatedir}/lib/sigul -s /sbin/nologin \ -c "Signing server or bridge" sigul exit 0 %post /sbin/chkconfig --add sigul_bridge /sbin/chkconfig --add sigul_server %preun if [ "$1" = 0 ]; then /sbin/service sigul_bridge stop >/dev/null 2>&1 /sbin/service sigul_server stop >/dev/null 2>&1 /sbin/chkconfig --del sigul_bridge /sbin/chkconfig --del sigul_server fi %postun if [ "$1" -ge 1 ]; then /sbin/service sigul_bridge condrestart >/dev/null 2>&1 || : /sbin/service sigul_server condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/server.conf %{_initrddir}/sigul* %config(noreplace) %{_sysconfdir}/logrotate.d/sigul %{_bindir}/sigul* %{_sbindir}/sigul* %{_mandir}/man1/sigul*.1* %{_mandir}/man8/sigul*.8* %{_datadir}/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog * Tue Jul 28 2009 Jesse Keating - 0.96-4 - Add another patch to temporarily work around a stale koji issue. - Bump python-nss reqs up now that we have a newer one in EPEL * Mon Jul 27 2009 Jesse Keating - 0.96-3 - Setup the Requires right for EL5 * Mon Jul 27 2009 Jesse Keating - 0.96-2 - Fix various bugs while testing (release by Mitr) - Patch from jkeating for srpm signing. * Sat Jul 18 2009 Miloslav Trma? - 0.95-0.mitr.1 - Update to 0.95. - Add missing Requires: m2crypto. * Wed Jul 1 2009 Miloslav Trma? - 0.94-0.mitr.1 - Update to 0.94. * Fri Apr 10 2009 Miloslav Trma? - 0.93-0.mitr.1 - Update to 0.93. * Wed Jan 28 2009 Miloslav Trma? - 0.92-0.mitr.1 - Update to 0.92. * Mon Jan 12 2009 Miloslav Trma? - 0.91-0.mitr.1 - Update to 0.91. * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.2 - Requires: koji, python-sqlite2 * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.1 - s/rpmsigner/sigul/g * Sun Nov 30 2008 Miloslav Trma? - 0.90-0.mitr.1 - Initial package. --- NEW FILE sigul_bridge.init --- #! /bin/sh # chkconfig: - 99 01 # description: A network server that connects a signing server and its clients . /etc/rc.d/init.d/functions prog=sigul_bridge lockfile=/var/lock/subsys/sigul_bridge start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" --- NEW FILE sigul_server.init --- #! /bin/sh # chkconfig: - 99 01 # description: A server that allows users to sign data without access to the \ # necessary key . /etc/rc.d/init.d/functions prog=sigul_server lockfile=/var/lock/subsys/sigul_server start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 03:11:45 -0000 1.1 +++ .cvsignore 29 Jul 2009 03:19:52 -0000 1.2 @@ -0,0 +1 @@ +sigul-0.96.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 03:11:45 -0000 1.1 +++ sources 29 Jul 2009 03:19:52 -0000 1.2 @@ -0,0 +1 @@ +faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 From mclasen at fedoraproject.org Wed Jul 29 03:20:25 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 03:20:25 +0000 (UTC) Subject: rpms/libwnck/devel libwnck.spec,1.112,1.113 Message-ID: <20090729032025.3EF5D11C04D3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libwnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27269 Modified Files: libwnck.spec Log Message: fix file list Index: libwnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/libwnck.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- libwnck.spec 29 Jul 2009 02:57:17 -0000 1.112 +++ libwnck.spec 29 Jul 2009 03:20:25 -0000 1.113 @@ -83,6 +83,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root) %doc AUTHORS COPYING README NEWS %{_libdir}/lib*.so.* +%{_bindir}/wnck-urgency-monitor %files devel %defattr(-,root,root) From jkeating at fedoraproject.org Wed Jul 29 03:20:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:20:37 +0000 (UTC) Subject: rpms/sigul/EL-5 sigul.spec,1.1,1.2 Message-ID: <20090729032037.037E611C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27327 Modified Files: sigul.spec Log Message: Add a dist tag Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/sigul.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sigul.spec 29 Jul 2009 03:19:52 -0000 1.1 +++ sigul.spec 29 Jul 2009 03:20:36 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A signing server and related software client Name: sigul Version: 0.96 -Release: 4 +Release: 5%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ @@ -96,6 +96,9 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Tue Jul 28 2009 Jesse Keating - 0.96-5 +- Add a dist tag + * Tue Jul 28 2009 Jesse Keating - 0.96-4 - Add another patch to temporarily work around a stale koji issue. - Bump python-nss reqs up now that we have a newer one in EPEL From jkeating at fedoraproject.org Wed Jul 29 03:21:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:21:42 +0000 (UTC) Subject: rpms/sigul/devel sigul.spec,1.2,1.3 Message-ID: <20090729032142.C8A3511C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27648 Modified Files: sigul.spec Log Message: add a dist tag Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sigul.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sigul.spec 29 Jul 2009 03:17:40 -0000 1.2 +++ sigul.spec 29 Jul 2009 03:21:42 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A signing server and related software client Name: sigul Version: 0.96 -Release: 4 +Release: 5%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ @@ -96,6 +96,9 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Tue Jul 28 2009 Jesse Keating - 0.96-5 +- Add a dist tag + * Tue Jul 28 2009 Jesse Keating - 0.96-4 - Add another patch to temporarily work around a stale koji issue. - Bump python-nss reqs up now that we have a newer one in EPEL From mclasen at fedoraproject.org Wed Jul 29 03:24:20 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 03:24:20 +0000 (UTC) Subject: rpms/gnome-session/devel gnome-session.spec,1.244,1.245 Message-ID: <20090729032420.3633311C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28119 Modified Files: gnome-session.spec Log Message: fix BRs Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.244 retrieving revision 1.245 diff -u -p -r1.244 -r1.245 --- gnome-session.spec 29 Jul 2009 03:09:12 -0000 1.244 +++ gnome-session.spec 29 Jul 2009 03:24:19 -0000 1.245 @@ -62,6 +62,7 @@ BuildRequires: gettext BuildRequires: libX11-devel libXt-devel BuildRequires: libXtst-devel BuildRequires: xmlto +BuildRequires: DeviceKit-power-devel Requires(pre): GConf2 >= %{gconf2_version} Requires(post): GConf2 >= %{gconf2_version} From clumens at fedoraproject.org Wed Jul 29 03:28:16 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 03:28:16 +0000 (UTC) Subject: rpms/firstboot/devel .cvsignore, 1.98, 1.99 firstboot.spec, 1.134, 1.135 sources, 1.128, 1.129 Message-ID: <20090729032816.E12A311C00D4@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/firstboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28833 Modified Files: .cvsignore firstboot.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firstboot/devel/.cvsignore,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- .cvsignore 16 Jan 2009 16:37:28 -0000 1.98 +++ .cvsignore 29 Jul 2009 03:28:16 -0000 1.99 @@ -70,3 +70,4 @@ firstboot-1.102.tar.bz2 firstboot-1.103.tar.bz2 firstboot-1.104.tar.bz2 firstboot-1.105.tar.bz2 +firstboot-1.107.tar.bz2 Index: firstboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/firstboot/devel/firstboot.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- firstboot.spec 24 Jul 2009 22:50:01 -0000 1.134 +++ firstboot.spec 29 Jul 2009 03:28:16 -0000 1.135 @@ -3,8 +3,8 @@ Summary: Initial system configuration utility Name: firstboot URL: http://fedoraproject.org/wiki/FirstBoot -Version: 1.105 -Release: 3%{?dist} +Version: 1.107 +Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -18,7 +18,7 @@ BuildRequires: gettext BuildRequires: python-devel, python-setuptools-devel Requires: metacity, pygtk2, rhpl, python Requires: setuptool, libuser-python, system-config-users, system-config-date -Requires: authconfig-gtk +Requires: authconfig-gtk, python-meh Requires(post): chkconfig %define debug_package %{nil} @@ -71,11 +71,12 @@ fi %{_datadir}/firstboot/themes/default/* %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.105-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Tue Jul 28 2009 Chris Lumens 1.107-1 +- Convert to using python-meh. -* Tue Feb 24 2009 Fedora Release Engineering - 1.105-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Tue May 05 2009 Chris Lumens 1.106-1 +- Display an error message when the user doesn't supply a password (#480927). +- Lots of translation updates. * Fri Jan 16 2009 Chris Lumens 1.105-1 - Fix a typo in starting up X. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firstboot/devel/sources,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- sources 16 Jan 2009 16:37:28 -0000 1.128 +++ sources 29 Jul 2009 03:28:16 -0000 1.129 @@ -1 +1 @@ -43cd2046c00370f2d2cc792324e8ae64 firstboot-1.105.tar.bz2 +071afbd2d63204a2c5aa8fbbf5407f8f firstboot-1.107.tar.bz2 From mclasen at fedoraproject.org Wed Jul 29 03:33:15 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 03:33:15 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.218,1.219 Message-ID: <20090729033315.399CA11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29855 Modified Files: gnome-games.spec Log Message: fix file lists Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.218 retrieving revision 1.219 diff -u -p -r1.218 -r1.219 --- gnome-games.spec 28 Jul 2009 05:13:31 -0000 1.218 +++ gnome-games.spec 29 Jul 2009 03:33:14 -0000 1.219 @@ -354,6 +354,11 @@ fi %attr(2551, root, games) %{_bindir}/glines %attr(2551, root, games) %{_bindir}/iagno +%{_libdir}/girepository-1.0/GGZ-1.0.typelib +%{_datadir}/gir-1.0/GGZ-1.0.gir +%{_libdir}/girepository-1.0/GnomeGamesSupport-1.0.typelib +%{_datadir}/gir-1.0/GnomeGamesSupport-1.0.gir + %files help -f help.lang %changelog From jkeating at fedoraproject.org Wed Jul 29 03:40:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:40:05 +0000 (UTC) Subject: rpms/sigul/EL-5 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, 1.1, 1.2 sigul.spec, 1.2, 1.3 Message-ID: <20090729034005.ADA2A11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31024 Modified Files: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch sigul.spec Log Message: * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 0002-Temporary-workaround-for-accidentially-re-downloadin.patch: bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/0002-Temporary-workaround-for-accidentially-re-downloadin.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 0002-Temporary-workaround-for-accidentially-re-downloadin.patch 29 Jul 2009 03:19:52 -0000 1.1 +++ 0002-Temporary-workaround-for-accidentially-re-downloadin.patch 29 Jul 2009 03:40:05 -0000 1.2 @@ -1,4 +1,4 @@ -From a94667940ac9523b8132f9c003a8f4b4fab6b7af Mon Sep 17 00:00:00 2001 +From 32d4a140dc9a8d18604386ba08de911bef34c8f0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 28 Jul 2009 20:06:30 -0700 Subject: [PATCH 2/2] Temporary workaround for accidentially re-downloading stale rpms. @@ -11,18 +11,18 @@ to me by Mitr. 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/bridge.py b/src/bridge.py -index 15f6422..4bda697 100644 +index 15f6422..32343ed 100644 --- a/src/bridge.py +++ b/src/bridge.py -@@ -309,7 +309,7 @@ class SignRpmRequestType(RequestType): +@@ -331,7 +331,7 @@ class SignRpmRequestType(RequestType): # attempts to initialize nss with our certificate database. import koji -- if self.__koji_session is None: +- if self.__koji_rpm_info is None: + if True: try: - self.__koji_config = utils.koji_read_config() - # self.__request_fields['user'] safety was verified by + d = {'name': self.__request_fields['rpm-name'], + 'version': self.__request_fields['rpm-version'], -- 1.6.2.5 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/sigul.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sigul.spec 29 Jul 2009 03:20:36 -0000 1.2 +++ sigul.spec 29 Jul 2009 03:40:05 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A signing server and related software client Name: sigul Version: 0.96 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ @@ -96,6 +96,9 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Tue Jul 28 2009 Jesse Keating - 0.96-6 +- Fix the patch in -4 + * Tue Jul 28 2009 Jesse Keating - 0.96-5 - Add a dist tag From jkeating at fedoraproject.org Wed Jul 29 03:41:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 03:41:20 +0000 (UTC) Subject: rpms/sigul/devel 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, 1.1, 1.2 sigul.spec, 1.3, 1.4 Message-ID: <20090729034120.2F9AA11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31306 Modified Files: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch sigul.spec Log Message: * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 0002-Temporary-workaround-for-accidentially-re-downloadin.patch: bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/0002-Temporary-workaround-for-accidentially-re-downloadin.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 0002-Temporary-workaround-for-accidentially-re-downloadin.patch 29 Jul 2009 03:17:40 -0000 1.1 +++ 0002-Temporary-workaround-for-accidentially-re-downloadin.patch 29 Jul 2009 03:41:19 -0000 1.2 @@ -1,4 +1,4 @@ -From a94667940ac9523b8132f9c003a8f4b4fab6b7af Mon Sep 17 00:00:00 2001 +From 32d4a140dc9a8d18604386ba08de911bef34c8f0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 28 Jul 2009 20:06:30 -0700 Subject: [PATCH 2/2] Temporary workaround for accidentially re-downloading stale rpms. @@ -11,18 +11,18 @@ to me by Mitr. 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/bridge.py b/src/bridge.py -index 15f6422..4bda697 100644 +index 15f6422..32343ed 100644 --- a/src/bridge.py +++ b/src/bridge.py -@@ -309,7 +309,7 @@ class SignRpmRequestType(RequestType): +@@ -331,7 +331,7 @@ class SignRpmRequestType(RequestType): # attempts to initialize nss with our certificate database. import koji -- if self.__koji_session is None: +- if self.__koji_rpm_info is None: + if True: try: - self.__koji_config = utils.koji_read_config() - # self.__request_fields['user'] safety was verified by + d = {'name': self.__request_fields['rpm-name'], + 'version': self.__request_fields['rpm-version'], -- 1.6.2.5 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sigul.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sigul.spec 29 Jul 2009 03:21:42 -0000 1.3 +++ sigul.spec 29 Jul 2009 03:41:20 -0000 1.4 @@ -1,7 +1,7 @@ Summary: A signing server and related software client Name: sigul Version: 0.96 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ @@ -96,6 +96,9 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Tue Jul 28 2009 Jesse Keating - 0.96-6 +- Fix the patch in -4 + * Tue Jul 28 2009 Jesse Keating - 0.96-5 - Add a dist tag From pkgdb at fedoraproject.org Wed Jul 29 03:49:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:49:30 +0000 Subject: [pkgdb] cluster-glue was added for beekhof Message-ID: <20090729034930.9526E10F897@bastion2.fedora.phx.redhat.com> tibbs has added Package cluster-glue with summary Reusable cluster components tibbs has approved Package cluster-glue tibbs has added a Fedora devel branch for cluster-glue with an owner of beekhof tibbs has approved cluster-glue in Fedora devel tibbs has approved Package cluster-glue tibbs has set commit to Approved for 107427 on cluster-glue (Fedora devel) tibbs has set checkout to Approved for 107427 on cluster-glue (Fedora devel) tibbs has set build to Approved for 107427 on cluster-glue (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cluster-glue From pkgdb at fedoraproject.org Wed Jul 29 03:49:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:49:31 +0000 Subject: [pkgdb] cluster-glue summary updated by tibbs Message-ID: <20090729034931.A235210F89D@bastion2.fedora.phx.redhat.com> tibbs set package cluster-glue summary to Reusable cluster components To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cluster-glue From tibbs at fedoraproject.org Wed Jul 29 03:49:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:49:37 +0000 (UTC) Subject: rpms/cluster-glue - New directory Message-ID: <20090729034937.1EBF211C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cluster-glue In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsbBn886/rpms/cluster-glue Log Message: Directory /cvs/pkgs/rpms/cluster-glue added to the repository From tibbs at fedoraproject.org Wed Jul 29 03:49:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:49:37 +0000 (UTC) Subject: rpms/cluster-glue/devel - New directory Message-ID: <20090729034937.4F4A811C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cluster-glue/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsbBn886/rpms/cluster-glue/devel Log Message: Directory /cvs/pkgs/rpms/cluster-glue/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 03:49:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 03:49:31 +0000 Subject: [pkgdb] cluster-glue (Fedora, devel) updated by tibbs Message-ID: <20090729034931.AC06B10F8A1@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on cluster-glue (Fedora devel) for lon tibbs approved watchcommits on cluster-glue (Fedora devel) for lon tibbs approved watchbugzilla on cluster-glue (Fedora devel) for fabbione tibbs approved watchcommits on cluster-glue (Fedora devel) for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cluster-glue From tibbs at fedoraproject.org Wed Jul 29 03:49:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:49:43 +0000 (UTC) Subject: rpms/cluster-glue Makefile,NONE,1.1 Message-ID: <20090729034943.1724B11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cluster-glue In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsbBn886/rpms/cluster-glue Added Files: Makefile Log Message: Setup of module cluster-glue --- NEW FILE Makefile --- # Top level Makefile for module cluster-glue all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 03:49:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 03:49:43 +0000 (UTC) Subject: rpms/cluster-glue/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729034943.3F9ED11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cluster-glue/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsbBn886/rpms/cluster-glue/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module cluster-glue --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: cluster-glue # $Id: Makefile,v 1.1 2009/07/29 03:49:43 tibbs Exp $ NAME := cluster-glue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From paragn at fedoraproject.org Wed Jul 29 03:51:19 2009 From: paragn at fedoraproject.org (paragn) Date: Wed, 29 Jul 2009 03:51:19 +0000 (UTC) Subject: rpms/m17n-contrib/devel .cvsignore, 1.8, 1.9 m17n-contrib.spec, 1.30, 1.31 pa-jhelum-numeric-503478.patch, 1.1, 1.2 sources, 1.9, 1.10 Message-ID: <20090729035119.15ACB11C00D4@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/m17n-contrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1138 Modified Files: .cvsignore m17n-contrib.spec pa-jhelum-numeric-503478.patch sources Log Message: * Wed Jul 29 2009 Parag Nemade -1.1.10-1 - update to new upstream release 1.1.10 - Resolves: rh#513920: [pa_IN]Jhelum layout conflict with shortcut key in lokalize - revert pa-jhelum-numeric-503478.patch to its original version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/m17n-contrib/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 3 Mar 2009 05:54:50 -0000 1.8 +++ .cvsignore 29 Jul 2009 03:51:18 -0000 1.9 @@ -1 +1 @@ -m17n-contrib-1.1.9.tar.gz +m17n-contrib-1.1.10.tar.gz Index: m17n-contrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/m17n-contrib/devel/m17n-contrib.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- m17n-contrib.spec 25 Jul 2009 11:35:06 -0000 1.30 +++ m17n-contrib.spec 29 Jul 2009 03:51:18 -0000 1.31 @@ -1,7 +1,7 @@ Name: m17n-contrib Summary: Contributed multilingualization datafiles for m17n-lib -Version: 1.1.9 -Release: 8%{?dist} +Version: 1.1.10 +Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.m17n.org/m17n-lib/index.html @@ -70,6 +70,7 @@ for %(echo %1 | sed -e "s/\\(.*\\)/\\u\\ %mk_pkg_uses_db assamese as 1 %mk_pkg_uses_db bengali bn 1 +%mk_pkg czech cs 1 %mk_pkg esperanto eo 1 %mk_pkg_uses_db gujarati gu 1 %mk_pkg_uses_db hindi hi 1 @@ -80,6 +81,7 @@ for %(echo %1 | sed -e "s/\\(.*\\)/\\u\\ %mk_pkg marathi mr 1 %mk_pkg nepali ne 1 %mk_pkg_uses_db oriya or 1 +%mk_pkg pashto ps 1 %mk_pkg_uses_db punjabi pa 1 %mk_pkg_uses_db russian ru 0 %mk_pkg sindhi sd 1 @@ -89,6 +91,7 @@ for %(echo %1 | sed -e "s/\\(.*\\)/\\u\\ %mk_pkg_uses_db telugu te 1 %mk_pkg urdu ur 1 %mk_pkg_uses_db vietnamese vi 1 +%mk_pkg_uses_db chinese zh 1 %prep @@ -123,6 +126,11 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/m17n/scripts %changelog +* Wed Jul 29 2009 Parag Nemade -1.1.10-1 +- update to new upstream release 1.1.10 +- Resolves: rh#513920: [pa_IN]Jhelum layout conflict with shortcut key in lokalize +- revert pa-jhelum-numeric-503478.patch to its original version. + * Sat Jul 25 2009 Fedora Release Engineering - 1.1.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild pa-jhelum-numeric-503478.patch: pa-jhelum.mim | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) Index: pa-jhelum-numeric-503478.patch =================================================================== RCS file: /cvs/pkgs/rpms/m17n-contrib/devel/pa-jhelum-numeric-503478.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pa-jhelum-numeric-503478.patch 10 Jul 2009 08:01:14 -0000 1.1 +++ pa-jhelum-numeric-503478.patch 29 Jul 2009 03:51:18 -0000 1.2 @@ -1,21 +1,21 @@ --- im/pa-jhelum.mim.orig 2007-05-29 10:35:58.000000000 +0530 -+++ im/pa-jhelum.mim 2009-07-10 15:26:40.000000000 +0530 ++++ im/pa-jhelum.mim 2009-06-01 15:26:40.000000000 +0530 @@ -71,7 +71,18 @@ ((KP_Multiply) "*") ((KP_Add) "+") ((KP_Subtract) "-") - + -+ ((C-1) "?") -+ ((C-2) "?") -+ ((C-3) "?") -+ ((C-4) "?") -+ ((C-5) "?") -+ ((C-6) "?") -+ ((C-7) "?") -+ ((C-8) "?") -+ ((C-9) "?") -+ ((C-0) "?") ++ ((C-A-1) "?") ++ ((C-A-2) "?") ++ ((C-A-3) "?") ++ ((C-A-4) "?") ++ ((C-A-5) "?") ++ ((C-A-6) "?") ++ ((C-A-7) "?") ++ ((C-A-8) "?") ++ ((C-A-9) "?") ++ ((C-A-0) "?") + ("~" ?~) ("`" ?`) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/m17n-contrib/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 3 Mar 2009 05:54:51 -0000 1.9 +++ sources 29 Jul 2009 03:51:18 -0000 1.10 @@ -1 +1 @@ -541f628ca20b6e9ff99ccecea82c8d75 m17n-contrib-1.1.9.tar.gz +e271af85713ebfaf0bc3a86a2e4248db m17n-contrib-1.1.10.tar.gz From paragn at fedoraproject.org Wed Jul 29 03:53:47 2009 From: paragn at fedoraproject.org (paragn) Date: Wed, 29 Jul 2009 03:53:47 +0000 (UTC) Subject: rpms/m17n-db/devel .cvsignore, 1.66, 1.67 m17n-db.spec, 1.100, 1.101 sources, 1.70, 1.71 Message-ID: <20090729035347.A92EA11C00D4@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/m17n-db/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1591 Modified Files: .cvsignore m17n-db.spec sources Log Message: * Wed Jul 29 2009 Parag Nemade -1.5.5-1 - update to new upstream release 1.5.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/m17n-db/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 3 Mar 2009 05:49:50 -0000 1.66 +++ .cvsignore 29 Jul 2009 03:53:47 -0000 1.67 @@ -1 +1 @@ -m17n-db-1.5.4.tar.gz +m17n-db-1.5.5.tar.gz Index: m17n-db.spec =================================================================== RCS file: /cvs/pkgs/rpms/m17n-db/devel/m17n-db.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- m17n-db.spec 25 Jul 2009 11:35:25 -0000 1.100 +++ m17n-db.spec 29 Jul 2009 03:53:47 -0000 1.101 @@ -1,7 +1,7 @@ Name: m17n-db Summary: Multilingualization datafiles for m17n-lib -Version: 1.5.4 -Release: 3%{?dist} +Version: 1.5.5 +Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.m17n.org/m17n-lib/index.html @@ -274,6 +274,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/m17n/ug-*.mim %changelog +* Wed Jul 29 2009 Parag Nemade -1.5.5-1 +- update to new upstream release 1.5.5 + * Sat Jul 25 2009 Fedora Release Engineering - 1.5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/m17n-db/devel/sources,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- sources 3 Mar 2009 05:49:51 -0000 1.70 +++ sources 29 Jul 2009 03:53:47 -0000 1.71 @@ -1 +1 @@ -c29db871d1e9c3cdde5891f1380c9eb2 m17n-db-1.5.4.tar.gz +a6fa9486caed6fe2a09d89fe97787696 m17n-db-1.5.5.tar.gz From mclasen at fedoraproject.org Wed Jul 29 03:58:46 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 03:58:46 +0000 (UTC) Subject: rpms/gnome-desktop/devel gnome-desktop.spec,1.217,1.218 Message-ID: <20090729035846.8242B11C00D4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2457 Modified Files: gnome-desktop.spec Log Message: fix build Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/gnome-desktop.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- gnome-desktop.spec 29 Jul 2009 02:52:54 -0000 1.217 +++ gnome-desktop.spec 29 Jul 2009 03:58:46 -0000 1.218 @@ -15,8 +15,6 @@ Version: 2.27.5 Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.27/%{name}-%{version}.tar.bz2 -# http://bugzilla.gnome.org/show_bug.cgi?id=581621 -Patch0: pnpids.patch Patch1: concatenate-edid-descriptors.patch License: GPLv2+ and LGPLv2+ @@ -76,11 +74,12 @@ libgnomedesktop. %prep %setup -q -%patch0 -p1 -b .pnpids.patch %patch1 -p1 -b .concatenate-edid-descriptors %build -%configure --with-gnome-distributor="Red Hat, Inc" --disable-scrollkeeper +%configure --with-gnome-distributor="Red Hat, Inc" \ + --with-pnp-ids-path="/usr/share/hwdata/pnp.ids" \ + --disable-scrollkeeper make %{?_smp_mflags} %install From mclasen at fedoraproject.org Wed Jul 29 04:04:36 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 04:04:36 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.219,1.220 Message-ID: <20090729040436.98D3F11C00D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23711 Modified Files: gnome-games.spec Log Message: disable introspection for now Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.219 retrieving revision 1.220 diff -u -p -r1.219 -r1.220 --- gnome-games.spec 29 Jul 2009 03:33:14 -0000 1.219 +++ gnome-games.spec 29 Jul 2009 04:04:36 -0000 1.220 @@ -139,7 +139,10 @@ sed -i -e 's/Gnometris/GnomeFallingBlock autoconf export CFLAGS="$RPM_OPT_FLAGS -DNO_HOWL" -%configure --localstatedir=/var/lib --disable-gnuchess %{omitgames} +%configure --localstatedir=/var/lib \ + --disable-gnuchess \ + --disable-introspection \ + %{omitgames} make # strip unneeded translations from .mo files @@ -354,11 +357,6 @@ fi %attr(2551, root, games) %{_bindir}/glines %attr(2551, root, games) %{_bindir}/iagno -%{_libdir}/girepository-1.0/GGZ-1.0.typelib -%{_datadir}/gir-1.0/GGZ-1.0.gir -%{_libdir}/girepository-1.0/GnomeGamesSupport-1.0.typelib -%{_datadir}/gir-1.0/GnomeGamesSupport-1.0.gir - %files help -f help.lang %changelog From pkgdb at fedoraproject.org Wed Jul 29 04:34:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 04:34:36 +0000 Subject: [pkgdb] pystatgrab ownership updated Message-ID: <20090729043437.0F8DB10F882@bastion2.fedora.phx.redhat.com> Package pystatgrab in Fedora devel is now owned by rishi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pystatgrab From pkgdb at fedoraproject.org Wed Jul 29 04:34:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 04:34:38 +0000 Subject: [pkgdb] pystatgrab ownership updated Message-ID: <20090729043438.AE2BE10F89A@bastion2.fedora.phx.redhat.com> Package pystatgrab in Fedora 10 is now owned by rishi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pystatgrab From pkgdb at fedoraproject.org Wed Jul 29 04:34:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 04:34:46 +0000 Subject: [pkgdb] pystatgrab ownership updated Message-ID: <20090729043446.D26B610F89E@bastion2.fedora.phx.redhat.com> Package pystatgrab in Fedora 11 is now owned by rishi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pystatgrab From fabbione at fedoraproject.org Wed Jul 29 04:42:15 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 29 Jul 2009 04:42:15 +0000 (UTC) Subject: rpms/qpidc/devel qpidc.spec,1.92,1.93 Message-ID: <20090729044215.21FD211C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/qpidc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29917 Modified Files: qpidc.spec Log Message: Update BuildRequires and Requires for corosync and cluster. Unbreak vim sintax highlight. (This version is NOT tagged or built) Index: qpidc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qpidc/devel/qpidc.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- qpidc.spec 27 Jul 2009 02:31:13 -0000 1.92 +++ qpidc.spec 29 Jul 2009 04:42:14 -0000 1.93 @@ -9,7 +9,7 @@ Name: qpidc Version: 0.5.790661 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries License: ASL 2.0 @@ -38,8 +38,8 @@ BuildRequires: nss-devel BuildRequires: nspr-devel BuildRequires: xqilla-devel BuildRequires: xerces-c-devel -BuildRequires: corosynclib-devel >= 0.97-1 -BuildRequires: clusterlib-devel +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: clusterlib-devel >= 3.0.0-20 BuildRequires: swig Requires: boost @@ -190,8 +190,8 @@ Summary: Cluster support for the Qpid da Group: System Environment/Daemons Requires: qpidd = %version-%release Requires: qpidc = %version-%release -Requires: corosync -Requires: clusterlib +Requires: corosync >= 1.0.0-1 +Requires: clusterlib >= 3.0.0-20 %description -n qpidd-cluster A Qpid daemon plugin enabling broker clustering using openais @@ -215,8 +215,7 @@ exit 0 %setup -q %patch1 -p1 -%define perftests "perftest topic_listener topic_publisher \ - latencytest client_test txtest" +%define perftests "perftest topic_listener topic_publisher latencytest client_test txtest" install -d selinux install %{SOURCE1} selinux @@ -441,6 +440,11 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Wed Jul 29 2009 Fabio M. Di Nitto - 0.5.790661-3 +- Update BuildRequires and Requires to use latest stable versions of + corosync and clusterlib. +- Unbreak perftests define (and fix vim spec syntax coloring). + * Sun Jul 26 2009 Fedora Release Engineering - 0.5.790661-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Wed Jul 29 04:46:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 04:46:49 +0000 Subject: [pkgdb] skkdic ownership updated Message-ID: <20090729044649.16A4310F897@bastion2.fedora.phx.redhat.com> Package skkdic in Fedora devel is now owned by mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/skkdic From pkgdb at fedoraproject.org Wed Jul 29 04:47:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 04:47:59 +0000 Subject: [pkgdb] ruby-flexmock ownership updated Message-ID: <20090729044759.9D19710F882@bastion2.fedora.phx.redhat.com> Package ruby-flexmock in Fedora devel is now owned by mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ruby-flexmock From corsepiu at fedoraproject.org Wed Jul 29 05:00:30 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 05:00:30 +0000 (UTC) Subject: rpms/perl-prefork/devel .cvsignore, 1.5, 1.6 perl-prefork.spec, 1.11, 1.12 sources, 1.5, 1.6 Message-ID: <20090729050030.14C3111C0424@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-prefork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1051 Modified Files: .cvsignore perl-prefork.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 18 Jun 2009 03:33:08 -0000 1.5 +++ .cvsignore 29 Jul 2009 05:00:29 -0000 1.6 @@ -1 +1 @@ -prefork-1.03.tar.gz +prefork-1.04.tar.gz Index: perl-prefork.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/devel/perl-prefork.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-prefork.spec 26 Jul 2009 17:50:21 -0000 1.11 +++ perl-prefork.spec 29 Jul 2009 05:00:29 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-prefork -Version: 1.03 -Release: 2%{?dist} +Version: 1.04 +Release: 1%{?dist} Summary: Optimized module loading for forking or non-forking processes License: GPL+ or Artistic Group: Development/Libraries @@ -13,7 +13,8 @@ BuildArch: noarch BuildRequires: perl(Test::More) >= 0.47 BuildRequires: perl(File::Spec) >= 0.80 -BuildRequires: perl(Scalar::Util) >= 1.10 +BuildRequires: perl(List::Util) >= 0.18 +BuildRequires: perl(Scalar::Util) >= 1.18 # Required by tests BuildRequires: perl(Test::Pod) >= 1.00 @@ -55,6 +56,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 +- Upstream update. + * Sun Jul 26 2009 Fedora Release Engineering - 1.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 18 Jun 2009 03:33:08 -0000 1.5 +++ sources 29 Jul 2009 05:00:29 -0000 1.6 @@ -1 +1 @@ -8d0ca2f8b4a6d0c7489a5bd8101899b4 prefork-1.03.tar.gz +47a514d4058ffc8cca184b28d6d54d0a prefork-1.04.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 05:02:40 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 05:02:40 +0000 (UTC) Subject: rpms/perl-prefork/F-11 .cvsignore, 1.5, 1.6 perl-prefork.spec, 1.10, 1.11 sources, 1.5, 1.6 Message-ID: <20090729050240.581FC11C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-prefork/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1542/F-11 Modified Files: .cvsignore perl-prefork.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 18 Jun 2009 03:33:08 -0000 1.5 +++ .cvsignore 29 Jul 2009 05:02:40 -0000 1.6 @@ -1 +1 @@ -prefork-1.03.tar.gz +prefork-1.04.tar.gz Index: perl-prefork.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-11/perl-prefork.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-prefork.spec 18 Jun 2009 03:33:08 -0000 1.10 +++ perl-prefork.spec 29 Jul 2009 05:02:40 -0000 1.11 @@ -1,5 +1,5 @@ Name: perl-prefork -Version: 1.03 +Version: 1.04 Release: 1%{?dist} Summary: Optimized module loading for forking or non-forking processes License: GPL+ or Artistic @@ -13,7 +13,8 @@ BuildArch: noarch BuildRequires: perl(Test::More) >= 0.47 BuildRequires: perl(File::Spec) >= 0.80 -BuildRequires: perl(Scalar::Util) >= 1.10 +BuildRequires: perl(List::Util) >= 0.18 +BuildRequires: perl(Scalar::Util) >= 1.18 # Required by tests BuildRequires: perl(Test::Pod) >= 1.00 @@ -55,6 +56,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 +- Upstream update. + * Thu Jun 18 2009 Ralf Cors?pius - 1.03-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 18 Jun 2009 03:33:09 -0000 1.5 +++ sources 29 Jul 2009 05:02:40 -0000 1.6 @@ -1 +1 @@ -8d0ca2f8b4a6d0c7489a5bd8101899b4 prefork-1.03.tar.gz +47a514d4058ffc8cca184b28d6d54d0a prefork-1.04.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 05:02:40 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 05:02:40 +0000 (UTC) Subject: rpms/perl-prefork/F-10 .cvsignore, 1.5, 1.6 perl-prefork.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090729050240.7BD5C11C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-prefork/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1542/F-10 Modified Files: .cvsignore perl-prefork.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 18 Jun 2009 03:33:09 -0000 1.5 +++ .cvsignore 29 Jul 2009 05:02:40 -0000 1.6 @@ -1 +1 @@ -prefork-1.03.tar.gz +prefork-1.04.tar.gz Index: perl-prefork.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-10/perl-prefork.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-prefork.spec 18 Jun 2009 03:33:09 -0000 1.9 +++ perl-prefork.spec 29 Jul 2009 05:02:40 -0000 1.10 @@ -1,5 +1,5 @@ Name: perl-prefork -Version: 1.03 +Version: 1.04 Release: 1%{?dist} Summary: Optimized module loading for forking or non-forking processes License: GPL+ or Artistic @@ -13,7 +13,8 @@ BuildArch: noarch BuildRequires: perl(Test::More) >= 0.47 BuildRequires: perl(File::Spec) >= 0.80 -BuildRequires: perl(Scalar::Util) >= 1.10 +BuildRequires: perl(List::Util) >= 0.18 +BuildRequires: perl(Scalar::Util) >= 1.18 # Required by tests BuildRequires: perl(Test::Pod) >= 1.00 @@ -55,6 +56,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.04-1 +- Upstream update. + * Thu Jun 18 2009 Ralf Cors?pius - 1.03-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 18 Jun 2009 03:33:09 -0000 1.5 +++ sources 29 Jul 2009 05:02:40 -0000 1.6 @@ -1 +1 @@ -8d0ca2f8b4a6d0c7489a5bd8101899b4 prefork-1.03.tar.gz +47a514d4058ffc8cca184b28d6d54d0a prefork-1.04.tar.gz From mclasen at fedoraproject.org Wed Jul 29 05:23:30 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 05:23:30 +0000 (UTC) Subject: rpms/sound-juicer/devel sound-juicer.spec,1.116,1.117 Message-ID: <20090729052330.884EC11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/sound-juicer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6729 Modified Files: sound-juicer.spec Log Message: Drop unneded direct deps Index: sound-juicer.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-juicer/devel/sound-juicer.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- sound-juicer.spec 27 Jul 2009 03:22:41 -0000 1.116 +++ sound-juicer.spec 29 Jul 2009 05:23:30 -0000 1.117 @@ -8,7 +8,7 @@ Name: sound-juicer Summary: Clean and lean CD ripper Version: 2.26.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://download.gnome.org/sources/sound-juicer/2.26/%{name}-%{version}.tar.bz2 @@ -38,6 +38,7 @@ BuildRequires: scrollkeeper >= %{scroll BuildRequires: gcc-c++ BuildRequires: gettext intltool BuildRequires: libcanberra-devel +BuildRequires: automake autoconf libtool ExcludeArch: s390 s390x @@ -48,12 +49,19 @@ GStreamer-based CD ripping tool. Saves a %setup -q %patch0 -p1 -b .gvfs-crasher +autoreconf -i -f + %build # work around a gstreamer problem where it # doesn't find plugins the first time around DBUS_FATAL_WARNINGS=0 /usr/bin/gst-inspect-0.10 --print-all %configure --disable-scrollkeeper +# drop unneeded direct library deps with --as-needed +# libtool doesn't make this easy, so we do it the hard way +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool + +export tagname=CC make AM_CFLAGS=-export-dynamic @@ -109,12 +117,14 @@ fi %{_sysconfdir}/gconf/schemas/sound-juicer.schemas %{_datadir}/sound-juicer %{_datadir}/applications/sound-juicer.desktop -%{_datadir}/omf/sound-juicer %{_datadir}/icons/hicolor/*/apps/sound-juicer.png %{_datadir}/icons/hicolor/*/apps/sound-juicer.svg %{_mandir}/man1/* %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.26.1-5 +- Drop unneeded direct deps + * Sun Jul 26 2009 Matthias Clasen - 2.26.1-4 - Rebuild to shrink GConf schemas From alexlan at fedoraproject.org Wed Jul 29 05:26:04 2009 From: alexlan at fedoraproject.org (alexlan) Date: Wed, 29 Jul 2009 05:26:04 +0000 (UTC) Subject: rpms/pvm/devel pvm.spec,1.44,1.45 Message-ID: <20090729052604.5A80011C00CE@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/pvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7299 Modified Files: pvm.spec Log Message: * Wed Jul 29 2009 Alex Lancaster - 3.4.5-14 - Temporary workaround for broken spec file to make pvm build: don't have separate install section, spec file assumes that buildroot isn't removed by it. Index: pvm.spec =================================================================== RCS file: /cvs/extras/rpms/pvm/devel/pvm.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- pvm.spec 26 Jul 2009 19:42:56 -0000 1.44 +++ pvm.spec 29 Jul 2009 05:26:04 -0000 1.45 @@ -1,7 +1,7 @@ Summary: Libraries for distributed computing. Name: pvm Version: 3.4.5 -Release: 13%{?dist} +Release: 14%{?dist} # Includes regex code which is under GPLv2+ License: MIT and GPLv2+ Group: Development/Libraries @@ -98,7 +98,9 @@ PVM_ROOT=$RPM_BUILD_ROOT/usr/share/pvm3 XPVM_ROOT=$RPM_BUILD_ROOT/usr/share/pvm3/xpvm \ make -C $RPM_BUILD_ROOT/usr/share/pvm3/xpvm XLIBDIR=-L%{_prefix}/X11R6/%{_lib} TCLTKHOME=%{_libdir} -%install +## FIXME: 'install' section used to start here +## don't have a separate install section +## old spec relied on old behaviour of rpm which didn't remove automatically remove the buildroot mkdir -p $RPM_BUILD_ROOT%{_mandir}/man{1,3} install -m 644 $RPM_BUILD_ROOT/usr/share/pvm3/man/man1/* $RPM_BUILD_ROOT%{_mandir}/man1 install -m 644 $RPM_BUILD_ROOT/usr/share/pvm3/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3 @@ -201,6 +203,11 @@ fi /usr/share/pvm3/xpvm/* %changelog +* Wed Jul 29 2009 Alex Lancaster - 3.4.5-14 +- Temporary workaround for broken spec file to make pvm build: don't + have separate install section, spec file assumes that buildroot + isn't removed by it. + * Sun Jul 26 2009 Fedora Release Engineering - 3.4.5-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From remi at fedoraproject.org Wed Jul 29 05:30:13 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 05:30:13 +0000 (UTC) Subject: rpms/php-pear-Event-Dispatcher/devel .cvsignore, 1.2, 1.3 php-pear-Event-Dispatcher.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090729053013.29DC511C04D5@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Event-Dispatcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8219 Modified Files: .cvsignore php-pear-Event-Dispatcher.spec sources Log Message: update to 1.1.0 (packaging fix) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 28 Aug 2008 18:10:21 -0000 1.2 +++ .cvsignore 29 Jul 2009 05:30:12 -0000 1.3 @@ -1 +1 @@ -Event_Dispatcher-1.0.0.tgz +Event_Dispatcher-1.1.0.tgz Index: php-pear-Event-Dispatcher.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/devel/php-pear-Event-Dispatcher.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Event-Dispatcher.spec 26 Jul 2009 18:14:01 -0000 1.3 +++ php-pear-Event-Dispatcher.spec 29 Jul 2009 05:30:12 -0000 1.4 @@ -2,8 +2,8 @@ %define pear_name Event_Dispatcher Name: php-pear-Event-Dispatcher -Version: 1.0.0 -Release: 4%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Dispatch notifications using PHP callbacks Group: Development/Libraries @@ -35,9 +35,9 @@ observer, passing the notification as th %prep %setup -q -c -# Still an old package V1 -%{__pear} convert package.xml %{pear_name}-%{version}/%{pear_name}.xml +# package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -49,7 +49,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation mkdir -p docdir @@ -61,7 +61,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -70,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -81,23 +81,25 @@ fi %check -# For documentation purpose, Need php-pear-PHPUnit-1.3.2 +# For documentation purpose, tested with PHPUnit 3.3.16 # After install : # cd /usr/share/pear/test/Event_Dispatcher/tests -# php test.php -# Dispatcher_testCase : Starting test1 ... Test passed -# Dispatcher_testCase : Starting test2 ... Test passed +# php AllTests.php +# Should retourn : OK (2 tests, 21 assertions) %files %defattr(-,root,root,-) %doc CHANGELOG %{pear_name}-%{version}/docdir/%{pear_name}/* -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_phpdir}/Event %{pear_testdir}/%{pear_name} %changelog +* Wed Jul 29 2009 Remi Collet 1.1.0-1 +- update to 1.1.0 + * Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 28 Aug 2008 18:10:21 -0000 1.2 +++ sources 29 Jul 2009 05:30:12 -0000 1.3 @@ -1 +1 @@ -0364b1bde5cbe770be9deb0a96cba6e2 Event_Dispatcher-1.0.0.tgz +cf21ab8b519110a0d574a6822a67a6d8 Event_Dispatcher-1.1.0.tgz From remi at fedoraproject.org Wed Jul 29 05:41:56 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 05:41:56 +0000 (UTC) Subject: rpms/php-pear-Event-Dispatcher/F-11 php-pear-Event-Dispatcher.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090729054156.879FD11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Event-Dispatcher/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10623 Modified Files: php-pear-Event-Dispatcher.spec sources Log Message: update to 1.1.0 (packaging fix) Index: php-pear-Event-Dispatcher.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/F-11/php-pear-Event-Dispatcher.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Event-Dispatcher.spec 26 Feb 2009 21:08:02 -0000 1.2 +++ php-pear-Event-Dispatcher.spec 29 Jul 2009 05:41:56 -0000 1.3 @@ -2,8 +2,8 @@ %define pear_name Event_Dispatcher Name: php-pear-Event-Dispatcher -Version: 1.0.0 -Release: 3%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Dispatch notifications using PHP callbacks Group: Development/Libraries @@ -35,9 +35,9 @@ observer, passing the notification as th %prep %setup -q -c -# Still an old package V1 -%{__pear} convert package.xml %{pear_name}-%{version}/%{pear_name}.xml +# package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -49,7 +49,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation mkdir -p docdir @@ -61,7 +61,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -70,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -81,23 +81,25 @@ fi %check -# For documentation purpose, Need php-pear-PHPUnit-1.3.2 +# For documentation purpose, tested with PHPUnit 3.3.16 # After install : # cd /usr/share/pear/test/Event_Dispatcher/tests -# php test.php -# Dispatcher_testCase : Starting test1 ... Test passed -# Dispatcher_testCase : Starting test2 ... Test passed +# php AllTests.php +# Should retourn : OK (2 tests, 21 assertions) %files %defattr(-,root,root,-) %doc CHANGELOG %{pear_name}-%{version}/docdir/%{pear_name}/* -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_phpdir}/Event %{pear_testdir}/%{pear_name} %changelog +* Wed Jul 29 2009 Remi Collet 1.1.0-1 +- update to 1.1.0 + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 28 Aug 2008 18:10:21 -0000 1.2 +++ sources 29 Jul 2009 05:41:56 -0000 1.3 @@ -1 +1 @@ -0364b1bde5cbe770be9deb0a96cba6e2 Event_Dispatcher-1.0.0.tgz +cf21ab8b519110a0d574a6822a67a6d8 Event_Dispatcher-1.1.0.tgz From kanarip at fedoraproject.org Wed Jul 29 05:46:17 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Wed, 29 Jul 2009 05:46:17 +0000 (UTC) Subject: rpms/revisor/devel .cvsignore, 1.26, 1.27 import.log, 1.9, 1.10 revisor.spec, 1.51, 1.52 sources, 1.51, 1.52 Message-ID: <20090729054617.1639411C00D5@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/revisor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11712/devel Modified Files: .cvsignore import.log revisor.spec sources Log Message: 2.1.8-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 26 Jul 2009 10:57:45 -0000 1.26 +++ .cvsignore 29 Jul 2009 05:46:16 -0000 1.27 @@ -1 +1 @@ -revisor-2.1.7.tar.gz +revisor-2.1.8.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/import.log,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- import.log 26 Jul 2009 10:57:45 -0000 1.9 +++ import.log 29 Jul 2009 05:46:16 -0000 1.10 @@ -7,3 +7,4 @@ revisor-2_1_3-1_fc10:HEAD:revisor-2.1.3- revisor-2_1_4-1_fc11:HEAD:revisor-2.1.4-1.fc11.src.rpm:1238987564 revisor-2_1_6-1_fc11:HEAD:revisor-2.1.6-1.fc11.src.rpm:1245423366 revisor-2_1_7-1_fc11:HEAD:revisor-2.1.7-1.fc11.src.rpm:1248605756 +revisor-2_1_8-1_fc11:HEAD:revisor-2.1.8-1.fc11.src.rpm:1248846355 Index: revisor.spec =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/revisor.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- revisor.spec 26 Jul 2009 10:57:45 -0000 1.51 +++ revisor.spec 29 Jul 2009 05:46:16 -0000 1.52 @@ -17,7 +17,7 @@ Summary: Fedora "Spin" Graphical User Interface Name: revisor -Version: 2.1.7 +Version: 2.1.8 Release: 1%{?dist} License: GPLv2 Group: Applications/System @@ -49,7 +49,7 @@ Requires: rhpl # Kickstart Requires: pykickstart # Compose tools -Requires: livecd-tools >= 015, anaconda-runtime, squashfs-tools, busybox-anaconda +Requires: livecd-tools >= 015, anaconda-runtime, squashfs-tools # Kickstarts for use with Revisor Requires: spin-kickstarts # Other @@ -59,13 +59,6 @@ Requires: usermode Requires: pam Requires: python(abi) >= 2.4 Conflicts: fedora-release < 7 - -# Some conditional requirements -#%ifarch x86_64 -#Requires: glibc.i586 -#Requires: glib.i586 -#%endif - # Can't conflict with this one! #Conflicts: centos-release < 5 # Can't conflict with this one! @@ -140,10 +133,9 @@ which builds the live image. ## %if %{pkg_comps} %package comps -Summary: Revisor Comps Files -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Comps Files +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description comps A number of comps files, as up-to-date as possible @@ -154,11 +146,10 @@ A number of comps files, as up-to-date a ## %if %{pkg_cobbler} %package cobbler -Summary: Revisor Cobbler Integration -Group: Applications/System -BuildArch: noarch -ExcludeArch: ppc ppc64 -Requires: cobbler, koan, revisor-cli = %{version}-%{release} +Summary: Revisor Cobbler Integration +Group: Applications/System +ExcludeArch: ppc ppc64 +Requires: cobbler, koan, revisor-cli = %{version}-%{release} %description cobbler Revisor Integration with Cobbler for having Revisor do DHCP, PXE, @@ -170,10 +161,9 @@ Xen and KVM stuff. ## %if %{pkg_composer} %package composer -Summary: Revisor Composer, for use with the Hub -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Composer, for use with the Hub +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description composer Revisor build farms need Composers. This is it. @@ -184,10 +174,9 @@ Revisor build farms need Composers. This ## %if %{pkg_delta} %package delta -Summary: Revisor Deltarpm Integration -Group: Applications/System -BuildArch: noarch -Requires: deltarpm, revisor-cli = %{version}-%{release} +Summary: Revisor Deltarpm Integration +Group: Applications/System +Requires: deltarpm, revisor-cli = %{version}-%{release} %description delta Revisor Integration with deltarpm for generating delta ISO images. @@ -197,10 +186,9 @@ Revisor Integration with deltarpm for ge ## Revisor GUI ## %package gui -Summary: Revisor GUI -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf +Summary: Revisor GUI +Group: Applications/System +Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf Requires: system-config-kickstart %description gui @@ -211,10 +199,9 @@ This is the Revisor GUI package ## %if %{pkg_hub} %package hub -Summary: Revisor Hub for build farms -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Hub for build farms +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description hub Revisor build farms need a Hub. This is it. @@ -225,10 +212,9 @@ Revisor build farms need a Hub. This is ## %if %{pkg_isolinux} %package isolinux -Summary: Revisor plugin for supplying a custom isolinux.cfg -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor plugin for supplying a custom isolinux.cfg +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description isolinux Supply a custom isolinux.cfg to Revisor to incorporate in the installation media @@ -239,10 +225,9 @@ Supply a custom isolinux.cfg to Revisor ## %if %{pkg_jigdo} %package jigdo -Summary: Revisor Integration with Jigdo -Group: Applications/System -BuildArch: noarch -Requires: jigdo, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Jigdo +Group: Applications/System +Requires: jigdo, revisor-cli = %{version}-%{release} %description jigdo Pre-Alpha of Revisor Integration with Jigdo for distributing your compose @@ -253,10 +238,9 @@ Pre-Alpha of Revisor Integration with Ji ## %if %{pkg_mock} %package mock -Summary: Revisor Integration with Mock -Group: Applications/System -BuildArch: noarch -Requires: mock, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Mock +Group: Applications/System +Requires: mock, revisor-cli = %{version}-%{release} %description mock Revisor Integration with Mock for building the installer images @@ -267,10 +251,9 @@ Revisor Integration with Mock for buildi ## %if %{pkg_rebrand} %package rebrand -Summary: Revisor Rebranding Fedora Utilies -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} +Summary: Revisor Rebranding Fedora Utilies +Group: Applications/System +Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} %description rebrand Utilities for Revisor to support rebranding Fedora @@ -281,10 +264,9 @@ Utilities for Revisor to support rebrand ## %if %{pkg_reuseinstaller} %package reuseinstaller -Summary: Revisor Plugin to enable Reusing existing installer images -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Plugin to enable Reusing existing installer images +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description reuseinstaller Revisor Plugin to enable Reusing existing installer images @@ -295,10 +277,9 @@ Revisor Plugin to enable Reusing existin ## %if %{pkg_server} %package server -Summary: Revisor Server -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Server +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description server Utilities for Revisor to support rebranding Fedora @@ -309,10 +290,9 @@ Utilities for Revisor to support rebrand ## %if %{pkg_unity} %package unity -Summary: Fedora Unity Configuration and Scripts for Revisor -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli +Summary: Fedora Unity Configuration and Scripts for Revisor +Group: Applications/System +Requires: revisor-cli %description unity The configuration files and scripts Fedora Unity uses with @@ -324,10 +304,9 @@ Revisor to create Re-Spins and do testin ## %if %{pkg_virt} %package virt -Summary: Revisor Virtualization Media Features -Group: Applications/System -BuildArch: noarch -Requires: python-virtinst, revisor-cli = %{version}-%{release} +Summary: Revisor Virtualization Media Features +Group: Applications/System +Requires: python-virtinst, revisor-cli = %{version}-%{release} %description virt Revisor Virtualization Media Features for provisioning virtual guests @@ -338,10 +317,9 @@ Revisor Virtualization Media Features fo ## %if %{pkg_wui} %package wui -Summary: Revisor WUI -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor WUI +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description wui This is the Revisor Web User Interface package @@ -591,7 +569,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Sun Jul 26 2009 Jeroen van Meeuwen 2.1.7-1 +* Wed Jul 29 2009 Jeroen van Meeuwen 2.1.8-1 - Fix configuration file issues - Better estimation for the size of a tree that is to become an iso - Huge improvements to package ordering Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 26 Jul 2009 10:57:45 -0000 1.51 +++ sources 29 Jul 2009 05:46:16 -0000 1.52 @@ -1 +1 @@ -90f0c51d23c5b52a272f87536d3c039d revisor-2.1.7.tar.gz +524186aea600cce22caaf65134e7ac1b revisor-2.1.8.tar.gz From kanarip at fedoraproject.org Wed Jul 29 05:47:02 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Wed, 29 Jul 2009 05:47:02 +0000 (UTC) Subject: rpms/revisor/F-11 .cvsignore, 1.26, 1.27 import.log, 1.9, 1.10 revisor.spec, 1.51, 1.52 sources, 1.51, 1.52 Message-ID: <20090729054702.A235411C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/revisor/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12643/F-11 Modified Files: .cvsignore import.log revisor.spec sources Log Message: 2.1.8-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 26 Jul 2009 10:53:03 -0000 1.26 +++ .cvsignore 29 Jul 2009 05:47:02 -0000 1.27 @@ -1 +1 @@ -revisor-2.1.7.tar.gz +revisor-2.1.8.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/import.log,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- import.log 26 Jul 2009 10:53:03 -0000 1.9 +++ import.log 29 Jul 2009 05:47:02 -0000 1.10 @@ -7,3 +7,4 @@ revisor-2_1_3-1_fc10:HEAD:revisor-2.1.3- revisor-2_1_4-1_fc11:HEAD:revisor-2.1.4-1.fc11.src.rpm:1238987564 revisor-2_1_6-1_fc11:F-11:revisor-2.1.6-1.fc11.src.rpm:1245423448 revisor-2_1_7-1_fc11:F-11:revisor-2.1.7-1.fc11.src.rpm:1248605440 +revisor-2_1_8-1_fc11:F-11:revisor-2.1.8-1.fc11.src.rpm:1248846400 Index: revisor.spec =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/revisor.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- revisor.spec 26 Jul 2009 10:53:03 -0000 1.51 +++ revisor.spec 29 Jul 2009 05:47:02 -0000 1.52 @@ -17,7 +17,7 @@ Summary: Fedora "Spin" Graphical User Interface Name: revisor -Version: 2.1.7 +Version: 2.1.8 Release: 1%{?dist} License: GPLv2 Group: Applications/System @@ -49,7 +49,7 @@ Requires: rhpl # Kickstart Requires: pykickstart # Compose tools -Requires: livecd-tools >= 015, anaconda-runtime, squashfs-tools, busybox-anaconda +Requires: livecd-tools >= 015, anaconda-runtime, squashfs-tools # Kickstarts for use with Revisor Requires: spin-kickstarts # Other @@ -59,13 +59,6 @@ Requires: usermode Requires: pam Requires: python(abi) >= 2.4 Conflicts: fedora-release < 7 - -# Some conditional requirements -#%ifarch x86_64 -#Requires: glibc.i586 -#Requires: glib.i586 -#%endif - # Can't conflict with this one! #Conflicts: centos-release < 5 # Can't conflict with this one! @@ -140,10 +133,9 @@ which builds the live image. ## %if %{pkg_comps} %package comps -Summary: Revisor Comps Files -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Comps Files +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description comps A number of comps files, as up-to-date as possible @@ -154,11 +146,10 @@ A number of comps files, as up-to-date a ## %if %{pkg_cobbler} %package cobbler -Summary: Revisor Cobbler Integration -Group: Applications/System -BuildArch: noarch -ExcludeArch: ppc ppc64 -Requires: cobbler, koan, revisor-cli = %{version}-%{release} +Summary: Revisor Cobbler Integration +Group: Applications/System +ExcludeArch: ppc ppc64 +Requires: cobbler, koan, revisor-cli = %{version}-%{release} %description cobbler Revisor Integration with Cobbler for having Revisor do DHCP, PXE, @@ -170,10 +161,9 @@ Xen and KVM stuff. ## %if %{pkg_composer} %package composer -Summary: Revisor Composer, for use with the Hub -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Composer, for use with the Hub +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description composer Revisor build farms need Composers. This is it. @@ -184,10 +174,9 @@ Revisor build farms need Composers. This ## %if %{pkg_delta} %package delta -Summary: Revisor Deltarpm Integration -Group: Applications/System -BuildArch: noarch -Requires: deltarpm, revisor-cli = %{version}-%{release} +Summary: Revisor Deltarpm Integration +Group: Applications/System +Requires: deltarpm, revisor-cli = %{version}-%{release} %description delta Revisor Integration with deltarpm for generating delta ISO images. @@ -197,10 +186,9 @@ Revisor Integration with deltarpm for ge ## Revisor GUI ## %package gui -Summary: Revisor GUI -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf +Summary: Revisor GUI +Group: Applications/System +Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf Requires: system-config-kickstart %description gui @@ -211,10 +199,9 @@ This is the Revisor GUI package ## %if %{pkg_hub} %package hub -Summary: Revisor Hub for build farms -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Hub for build farms +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description hub Revisor build farms need a Hub. This is it. @@ -225,10 +212,9 @@ Revisor build farms need a Hub. This is ## %if %{pkg_isolinux} %package isolinux -Summary: Revisor plugin for supplying a custom isolinux.cfg -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor plugin for supplying a custom isolinux.cfg +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description isolinux Supply a custom isolinux.cfg to Revisor to incorporate in the installation media @@ -239,10 +225,9 @@ Supply a custom isolinux.cfg to Revisor ## %if %{pkg_jigdo} %package jigdo -Summary: Revisor Integration with Jigdo -Group: Applications/System -BuildArch: noarch -Requires: jigdo, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Jigdo +Group: Applications/System +Requires: jigdo, revisor-cli = %{version}-%{release} %description jigdo Pre-Alpha of Revisor Integration with Jigdo for distributing your compose @@ -253,10 +238,9 @@ Pre-Alpha of Revisor Integration with Ji ## %if %{pkg_mock} %package mock -Summary: Revisor Integration with Mock -Group: Applications/System -BuildArch: noarch -Requires: mock, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Mock +Group: Applications/System +Requires: mock, revisor-cli = %{version}-%{release} %description mock Revisor Integration with Mock for building the installer images @@ -267,10 +251,9 @@ Revisor Integration with Mock for buildi ## %if %{pkg_rebrand} %package rebrand -Summary: Revisor Rebranding Fedora Utilies -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} +Summary: Revisor Rebranding Fedora Utilies +Group: Applications/System +Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} %description rebrand Utilities for Revisor to support rebranding Fedora @@ -281,10 +264,9 @@ Utilities for Revisor to support rebrand ## %if %{pkg_reuseinstaller} %package reuseinstaller -Summary: Revisor Plugin to enable Reusing existing installer images -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Plugin to enable Reusing existing installer images +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description reuseinstaller Revisor Plugin to enable Reusing existing installer images @@ -295,10 +277,9 @@ Revisor Plugin to enable Reusing existin ## %if %{pkg_server} %package server -Summary: Revisor Server -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Server +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description server Utilities for Revisor to support rebranding Fedora @@ -309,10 +290,9 @@ Utilities for Revisor to support rebrand ## %if %{pkg_unity} %package unity -Summary: Fedora Unity Configuration and Scripts for Revisor -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli +Summary: Fedora Unity Configuration and Scripts for Revisor +Group: Applications/System +Requires: revisor-cli %description unity The configuration files and scripts Fedora Unity uses with @@ -324,10 +304,9 @@ Revisor to create Re-Spins and do testin ## %if %{pkg_virt} %package virt -Summary: Revisor Virtualization Media Features -Group: Applications/System -BuildArch: noarch -Requires: python-virtinst, revisor-cli = %{version}-%{release} +Summary: Revisor Virtualization Media Features +Group: Applications/System +Requires: python-virtinst, revisor-cli = %{version}-%{release} %description virt Revisor Virtualization Media Features for provisioning virtual guests @@ -338,10 +317,9 @@ Revisor Virtualization Media Features fo ## %if %{pkg_wui} %package wui -Summary: Revisor WUI -Group: Applications/System -BuildArch: noarch -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor WUI +Group: Applications/System +Requires: revisor-cli = %{version}-%{release} %description wui This is the Revisor Web User Interface package @@ -591,7 +569,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Sun Jul 26 2009 Jeroen van Meeuwen 2.1.7-1 +* Wed Jul 29 2009 Jeroen van Meeuwen 2.1.8-1 - Fix configuration file issues - Better estimation for the size of a tree that is to become an iso - Huge improvements to package ordering Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 26 Jul 2009 10:53:03 -0000 1.51 +++ sources 29 Jul 2009 05:47:02 -0000 1.52 @@ -1 +1 @@ -90f0c51d23c5b52a272f87536d3c039d revisor-2.1.7.tar.gz +524186aea600cce22caaf65134e7ac1b revisor-2.1.8.tar.gz From remi at fedoraproject.org Wed Jul 29 05:47:57 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 05:47:57 +0000 (UTC) Subject: rpms/php-pear-Event-Dispatcher/F-10 php-pear-Event-Dispatcher.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090729054757.3704E11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Event-Dispatcher/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13067 Modified Files: php-pear-Event-Dispatcher.spec sources Log Message: update to 1.1.0 (packaging fix) Index: php-pear-Event-Dispatcher.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/F-10/php-pear-Event-Dispatcher.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Event-Dispatcher.spec 28 Aug 2008 17:44:44 -0000 1.1 +++ php-pear-Event-Dispatcher.spec 29 Jul 2009 05:47:56 -0000 1.2 @@ -2,8 +2,8 @@ %define pear_name Event_Dispatcher Name: php-pear-Event-Dispatcher -Version: 1.0.0 -Release: 2%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Dispatch notifications using PHP callbacks Group: Development/Libraries @@ -35,9 +35,9 @@ observer, passing the notification as th %prep %setup -q -c -# Still an old package V1 -%{__pear} convert package.xml %{pear_name}-%{version}/%{pear_name}.xml +# package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -49,7 +49,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation mkdir -p docdir @@ -61,7 +61,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -70,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -81,23 +81,25 @@ fi %check -# For documentation purpose, Need php-pear-PHPUnit-1.3.2 +# For documentation purpose, tested with PHPUnit 3.3.16 # After install : # cd /usr/share/pear/test/Event_Dispatcher/tests -# php test.php -# Dispatcher_testCase : Starting test1 ... Test passed -# Dispatcher_testCase : Starting test2 ... Test passed +# php AllTests.php +# Should retourn : OK (2 tests, 21 assertions) %files %defattr(-,root,root,-) %doc CHANGELOG %{pear_name}-%{version}/docdir/%{pear_name}/* -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_phpdir}/Event %{pear_testdir}/%{pear_name} %changelog +* Wed Jul 29 2009 Remi Collet 1.1.0-1 +- update to 1.1.0 + * Thu Aug 21 2008 Remi Collet 1.0.0-2 - Add missing Requires: php-pear(PEAR) Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 28 Aug 2008 18:10:21 -0000 1.2 +++ sources 29 Jul 2009 05:47:57 -0000 1.3 @@ -1 +1 @@ -0364b1bde5cbe770be9deb0a96cba6e2 Event_Dispatcher-1.0.0.tgz +cf21ab8b519110a0d574a6822a67a6d8 Event_Dispatcher-1.1.0.tgz From remi at fedoraproject.org Wed Jul 29 05:54:07 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 05:54:07 +0000 (UTC) Subject: rpms/php-pear-Event-Dispatcher/EL-5 php-pear-Event-Dispatcher.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090729055407.45B5411C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Event-Dispatcher/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14377 Modified Files: php-pear-Event-Dispatcher.spec sources Log Message: update to 1.1.0 (packaging fix) Index: php-pear-Event-Dispatcher.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/EL-5/php-pear-Event-Dispatcher.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Event-Dispatcher.spec 28 Aug 2008 18:32:46 -0000 1.1 +++ php-pear-Event-Dispatcher.spec 29 Jul 2009 05:54:05 -0000 1.2 @@ -2,8 +2,8 @@ %define pear_name Event_Dispatcher Name: php-pear-Event-Dispatcher -Version: 1.0.0 -Release: 2%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Dispatch notifications using PHP callbacks Group: Development/Libraries @@ -35,9 +35,9 @@ observer, passing the notification as th %prep %setup -q -c -# Still an old package V1 -%{__pear} convert package.xml %{pear_name}-%{version}/%{pear_name}.xml +# package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -49,7 +49,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation mkdir -p docdir @@ -61,7 +61,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -70,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -81,23 +81,25 @@ fi %check -# For documentation purpose, Need php-pear-PHPUnit-1.3.2 +# For documentation purpose, tested with PHPUnit 3.3.16 # After install : # cd /usr/share/pear/test/Event_Dispatcher/tests -# php test.php -# Dispatcher_testCase : Starting test1 ... Test passed -# Dispatcher_testCase : Starting test2 ... Test passed +# php AllTests.php +# Should retourn : OK (2 tests, 21 assertions) %files %defattr(-,root,root,-) %doc CHANGELOG %{pear_name}-%{version}/docdir/%{pear_name}/* -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_phpdir}/Event %{pear_testdir}/%{pear_name} %changelog +* Wed Jul 29 2009 Remi Collet 1.1.0-1 +- update to 1.1.0 + * Thu Aug 21 2008 Remi Collet 1.0.0-2 - Add missing Requires: php-pear(PEAR) Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Event-Dispatcher/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 28 Aug 2008 18:32:46 -0000 1.2 +++ sources 29 Jul 2009 05:54:06 -0000 1.3 @@ -1 +1 @@ -0364b1bde5cbe770be9deb0a96cba6e2 Event_Dispatcher-1.0.0.tgz +cf21ab8b519110a0d574a6822a67a6d8 Event_Dispatcher-1.1.0.tgz From pkgdb at fedoraproject.org Wed Jul 29 05:55:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:03 +0000 Subject: [pkgdb] gimp-lqr-plugin ownership updated Message-ID: <20090729055503.5EC2610F882@bastion2.fedora.phx.redhat.com> Package gimp-lqr-plugin in Fedora devel is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gimp-lqr-plugin From pkgdb at fedoraproject.org Wed Jul 29 05:55:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:13 +0000 Subject: [pkgdb] gimp-lqr-plugin ownership updated Message-ID: <20090729055513.3A43B10F897@bastion2.fedora.phx.redhat.com> Package gimp-lqr-plugin in Fedora 10 is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gimp-lqr-plugin From pkgdb at fedoraproject.org Wed Jul 29 05:55:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:17 +0000 Subject: [pkgdb] gimp-lqr-plugin ownership updated Message-ID: <20090729055517.6296F10F89B@bastion2.fedora.phx.redhat.com> Package gimp-lqr-plugin in Fedora 11 is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gimp-lqr-plugin From pkgdb at fedoraproject.org Wed Jul 29 05:55:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:38 +0000 Subject: [pkgdb] liblqr-1 ownership updated Message-ID: <20090729055539.1242410F89B@bastion2.fedora.phx.redhat.com> Package liblqr-1 in Fedora devel is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/liblqr-1 From pkgdb at fedoraproject.org Wed Jul 29 05:55:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:44 +0000 Subject: [pkgdb] liblqr-1 ownership updated Message-ID: <20090729055545.017DE10F882@bastion2.fedora.phx.redhat.com> Package liblqr-1 in Fedora 10 is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/liblqr-1 From pkgdb at fedoraproject.org Wed Jul 29 05:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 05:55:48 +0000 Subject: [pkgdb] liblqr-1 ownership updated Message-ID: <20090729055548.9E25D10F89F@bastion2.fedora.phx.redhat.com> Package liblqr-1 in Fedora 11 is now owned by slankes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/liblqr-1 From bskeggs at fedoraproject.org Wed Jul 29 05:57:24 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Wed, 29 Jul 2009 05:57:24 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.38, 1.39 kernel.spec, 1.1669, 1.1670 Message-ID: <20090729055724.3AB1511C00CE@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15014 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Wed Jul 29 2009 Ben Skeggs - drm-nouveau.patch: nv50/nva0 tiled scanout fixes, nv40 kms fixes drm-nouveau.patch: drivers/gpu/drm/Kconfig | 30 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/nouveau/Makefile | 27 drivers/gpu/drm/nouveau/nouveau_backlight.c | 156 drivers/gpu/drm/nouveau/nouveau_bios.c | 5050 ++++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 226 drivers/gpu/drm/nouveau/nouveau_bo.c | 567 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 55 drivers/gpu/drm/nouveau/nouveau_crtc.h | 90 drivers/gpu/drm/nouveau/nouveau_display.c | 115 drivers/gpu/drm/nouveau/nouveau_dma.c | 143 drivers/gpu/drm/nouveau/nouveau_dma.h | 144 drivers/gpu/drm/nouveau/nouveau_drv.c | 353 drivers/gpu/drm/nouveau/nouveau_drv.h | 1145 + drivers/gpu/drm/nouveau/nouveau_encoder.h | 51 drivers/gpu/drm/nouveau/nouveau_fb.h | 43 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 1019 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 49 drivers/gpu/drm/nouveau/nouveau_fence.c | 261 drivers/gpu/drm/nouveau/nouveau_fifo.c | 668 drivers/gpu/drm/nouveau/nouveau_gem.c | 751 drivers/gpu/drm/nouveau/nouveau_hw.c | 1019 + drivers/gpu/drm/nouveau/nouveau_hw.h | 431 drivers/gpu/drm/nouveau/nouveau_i2c.c | 274 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 674 drivers/gpu/drm/nouveau/nouveau_mem.c | 543 drivers/gpu/drm/nouveau/nouveau_notifier.c | 192 drivers/gpu/drm/nouveau/nouveau_object.c | 1258 + drivers/gpu/drm/nouveau/nouveau_reg.h | 834 + drivers/gpu/drm/nouveau/nouveau_sgdma.c | 331 drivers/gpu/drm/nouveau/nouveau_state.c | 837 + drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nouveau_ttm.c | 116 drivers/gpu/drm/nouveau/nv04_crtc.c | 1126 + drivers/gpu/drm/nouveau/nv04_cursor.c | 70 drivers/gpu/drm/nouveau/nv04_display.c | 250 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fbcon.c | 291 drivers/gpu/drm/nouveau/nv04_fifo.c | 146 drivers/gpu/drm/nouveau/nv04_graph.c | 586 drivers/gpu/drm/nouveau/nv04_instmem.c | 182 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_output.c | 1193 + drivers/gpu/drm/nouveau/nv04_timer.c | 51 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 177 drivers/gpu/drm/nouveau/nv10_graph.c | 945 + drivers/gpu/drm/nouveau/nv20_graph.c | 958 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 222 drivers/gpu/drm/nouveau/nv40_graph.c | 2200 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 495 drivers/gpu/drm/nouveau/nv50_crtc.c | 812 + drivers/gpu/drm/nouveau/nv50_cursor.c | 153 drivers/gpu/drm/nouveau/nv50_dac.c | 284 drivers/gpu/drm/nouveau/nv50_display.c | 844 + drivers/gpu/drm/nouveau/nv50_display.h | 46 drivers/gpu/drm/nouveau/nv50_evo.h | 113 drivers/gpu/drm/nouveau/nv50_fbcon.c | 256 drivers/gpu/drm/nouveau/nv50_fifo.c | 475 drivers/gpu/drm/nouveau/nv50_graph.c | 432 drivers/gpu/drm/nouveau/nv50_grctx.h |22284 ++++++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 499 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 268 drivers/gpu/drm/nouveau/nvreg.h | 503 drivers/gpu/drm/ttm/ttm_bo.c | 4 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 214 75 files changed, 54520 insertions(+), 21 deletions(-) Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- drm-nouveau.patch 28 Jul 2009 16:03:51 -0000 1.38 +++ drm-nouveau.patch 29 Jul 2009 05:57:21 -0000 1.39 @@ -12785,10 +12785,10 @@ index 0000000..295b876 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_hw.h b/drivers/gpu/drm/nouveau/nouveau_hw.h new file mode 100644 -index 0000000..69578e6 +index 0000000..9d86461 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_hw.h -@@ -0,0 +1,436 @@ +@@ -0,0 +1,431 @@ +/* + * Copyright 2008 Stuart Bennett + * @@ -13018,11 +13018,9 @@ index 0000000..69578e6 + +static inline uint8_t NVReadPRMVIO(struct drm_device *dev, int head, uint32_t reg) +{ -+ struct drm_nouveau_private *dev_priv = dev->dev_private; -+ + /* Only NV4x have two pvio ranges; other twoHeads cards MUST call + * NVSetOwner for the relevant head to be programmed */ -+ if (head && dev_priv->card_type == NV_40) ++ if (head && nv_arch(dev) == NV_40) + reg += NV_PRMVIO_SIZE; + + NV_DEBUG(dev, "NVReadPRMVIO: head %d reg %08x val %02x\n", head, reg, @@ -13033,11 +13031,9 @@ index 0000000..69578e6 +static inline void +NVWritePRMVIO(struct drm_device *dev, int head, uint32_t reg, uint8_t value) +{ -+ struct drm_nouveau_private *dev_priv = dev->dev_private; -+ + /* Only NV4x have two pvio ranges; other twoHeads cards MUST call + * NVSetOwner for the relevant head to be programmed */ -+ if (head && dev_priv->card_type == NV_40) ++ if (head && nv_arch(dev) == NV_40) + reg += NV_PRMVIO_SIZE; + + NV_DEBUG(dev, "NVWritePRMVIO: head %d reg %08x val %02x\n", head, reg, value); @@ -13200,14 +13196,13 @@ index 0000000..69578e6 + *curctl1 &= ~MASK(NV_CIO_CRE_HCUR_ADDR1_ENABLE); + NVWriteVgaCrtc(dev, head, NV_CIO_CRE_HCUR_ADDR1_INDEX, *curctl1); + -+ if (dev_priv->card_type == NV_40) ++ if (nv_arch(dev) == NV_40) + nv_fix_nv40_hw_cursor(dev, head); +} + +static inline uint32_t +nv_pitch_align(struct drm_device *dev, uint32_t width, int bpp) +{ -+ struct drm_nouveau_private *dev_priv = dev->dev_private; + int mask; + + if (bpp == 15) @@ -13216,7 +13211,7 @@ index 0000000..69578e6 + bpp = 8; + + /* Alignment requirements taken from the Haiku driver */ -+ if (dev_priv->card_type == NV_04) ++ if (nv_arch(dev) == NV_04) + mask = 128 / bpp - 1; + else + mask = 512 / bpp - 1; @@ -27686,7 +27681,7 @@ index 0000000..28bcf9f +} diff --git a/drivers/gpu/drm/nouveau/nv50_crtc.c b/drivers/gpu/drm/nouveau/nv50_crtc.c new file mode 100644 -index 0000000..55bb523 +index 0000000..81c53c4 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_crtc.c @@ -0,0 +1,812 @@ @@ -28253,11 +28248,8 @@ index 0000000..55bb523 + nouveau_bo_unpin(ofb->nvbo); + } + -+ crtc->fb.offset = fb->nvbo->bo.offset; ++ crtc->fb.offset = fb->nvbo->bo.offset - dev_priv->vm_vram_base; + crtc->fb.tiled = fb->nvbo->tile_flags ? true : false; -+ if (!crtc->fb.tiled || dev_priv->chipset == 0x50) -+ crtc->fb.offset -= dev_priv->vm_vram_base; -+ + crtc->fb.cpp = drm_fb->bits_per_pixel / 8; + if (!crtc->fb.blanked && dev_priv->chipset != 0x50) { + ret = RING_SPACE(evo, 2); @@ -28288,7 +28280,10 @@ index 0000000..55bb523 + OUT_RING (evo, ((drm_fb->pitch / 4) << 4) | + fb->nvbo->tile_mode); + } -+ OUT_RING (evo, format); ++ if (dev_priv->chipset == 0x50) ++ OUT_RING (evo, (fb->nvbo->tile_flags << 8) | format); ++ else ++ OUT_RING (evo, format); + + BEGIN_RING(evo, 0, NV50_EVO_CRTC(crtc->index, COLOR_CTRL), 1); + OUT_RING (evo, NV50_EVO_CRTC_COLOR_CTRL_COLOR); Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1669 retrieving revision 1.1670 diff -u -p -r1.1669 -r1.1670 --- kernel.spec 29 Jul 2009 01:42:07 -0000 1.1669 +++ kernel.spec 29 Jul 2009 05:57:23 -0000 1.1670 @@ -1903,6 +1903,9 @@ fi # and build. %changelog +* Wed Jul 29 2009 Ben Skeggs +- drm-nouveau.patch: nv50/nva0 tiled scanout fixes, nv40 kms fixes + * Wed Jul 29 2009 Chuck Ebbert - Linux 2.6.31-rc4-git3 - Drop linux-2.6-ecryptfs-overflow-fixes.patch, merged upstream now. From dchen at fedoraproject.org Wed Jul 29 06:03:37 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Wed, 29 Jul 2009 06:03:37 +0000 (UTC) Subject: rpms/ibus-table-array30/devel .cvsignore, 1.2, 1.3 ibus-table-array30.spec, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090729060337.AEC9A11C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/ibus-table-array30/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16510/devel Modified Files: .cvsignore ibus-table-array30.spec import.log sources Log Message: Correct IM English name to fix Google code issue 450. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Jul 2009 08:00:06 -0000 1.2 +++ .cvsignore 29 Jul 2009 06:03:37 -0000 1.3 @@ -1 +1 @@ -ibus-table-array30-1.2.0.20090715-Source.tar.gz +ibus-table-array30-1.2.0.20090729-Source.tar.gz Index: ibus-table-array30.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/ibus-table-array30.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ibus-table-array30.spec 25 Jul 2009 03:03:48 -0000 1.2 +++ ibus-table-array30.spec 29 Jul 2009 06:03:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: ibus-table-array30 -Version: 1.2.0.20090715 -Release: 2%{?dist} +Version: 1.2.0.20090729 +Release: 1%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?? ibus-table ?????? Summary(zh_TW): ?? ibus-table ?????? @@ -52,8 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus-table/icons/Array30.png %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090715-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Wed Jul 29 2009 Ding-Yi Chen - 1.2.0.20090729-1 +Correct IM English name to fix Google code issue 450. + * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. @@ -70,3 +71,5 @@ Initial submit. + + Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Jul 2009 08:00:06 -0000 1.1 +++ import.log 29 Jul 2009 06:03:37 -0000 1.2 @@ -1 +1,2 @@ ibus-table-array30-1_2_0_20090715-1_fc11:HEAD:ibus-table-array30-1.2.0.20090715-1.fc11.src.rpm:1247731175 +ibus-table-array30-1_2_0_20090729-1_fc11:HEAD:ibus-table-array30-1.2.0.20090729-1.fc11.src.rpm:1248847246 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Jul 2009 08:00:06 -0000 1.2 +++ sources 29 Jul 2009 06:03:37 -0000 1.3 @@ -1 +1 @@ -6b641a1e921366ede4b7e2e665b455e8 ibus-table-array30-1.2.0.20090715-Source.tar.gz +8ab27067baac3081016920a71f1cd64e ibus-table-array30-1.2.0.20090729-Source.tar.gz From dchen at fedoraproject.org Wed Jul 29 06:06:04 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Wed, 29 Jul 2009 06:06:04 +0000 (UTC) Subject: rpms/ibus-table-array30/F-11 .cvsignore, 1.2, 1.3 ibus-table-array30.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090729060604.64D4611C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/ibus-table-array30/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17142/F-11 Modified Files: .cvsignore ibus-table-array30.spec import.log sources Log Message: Correct IM English name to fix Google code issue 450. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Jul 2009 08:01:49 -0000 1.2 +++ .cvsignore 29 Jul 2009 06:06:03 -0000 1.3 @@ -1 +1 @@ -ibus-table-array30-1.2.0.20090715-Source.tar.gz +ibus-table-array30-1.2.0.20090729-Source.tar.gz Index: ibus-table-array30.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/ibus-table-array30.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ibus-table-array30.spec 16 Jul 2009 08:01:49 -0000 1.1 +++ ibus-table-array30.spec 29 Jul 2009 06:06:03 -0000 1.2 @@ -1,5 +1,5 @@ Name: ibus-table-array30 -Version: 1.2.0.20090715 +Version: 1.2.0.20090729 Release: 1%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?? ibus-table ?????? @@ -52,6 +52,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus-table/icons/Array30.png %changelog +* Wed Jul 29 2009 Ding-Yi Chen - 1.2.0.20090729-1 +Correct IM English name to fix Google code issue 450. + + * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. Revise spec file for package review [Bug 511196]. @@ -67,3 +71,5 @@ Initial submit. + + Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Jul 2009 08:01:49 -0000 1.1 +++ import.log 29 Jul 2009 06:06:03 -0000 1.2 @@ -1 +1,2 @@ ibus-table-array30-1_2_0_20090715-1_fc11:F-11:ibus-table-array30-1.2.0.20090715-1.fc11.src.rpm:1247731293 +ibus-table-array30-1_2_0_20090729-1_fc11:F-11:ibus-table-array30-1.2.0.20090729-1.fc11.src.rpm:1248847431 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Jul 2009 08:01:49 -0000 1.2 +++ sources 29 Jul 2009 06:06:04 -0000 1.3 @@ -1 +1 @@ -6b641a1e921366ede4b7e2e665b455e8 ibus-table-array30-1.2.0.20090715-Source.tar.gz +8ab27067baac3081016920a71f1cd64e ibus-table-array30-1.2.0.20090729-Source.tar.gz From abompard at fedoraproject.org Wed Jul 29 06:09:36 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Wed, 29 Jul 2009 06:09:36 +0000 (UTC) Subject: rpms/psi/devel .cvsignore, 1.16, 1.17 psi.spec, 1.35, 1.36 sources, 1.19, 1.20 Message-ID: <20090729060936.AA06811C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17979 Modified Files: .cvsignore psi.spec sources Log Message: version 0.13 final Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 17 Jul 2009 20:47:08 -0000 1.16 +++ .cvsignore 29 Jul 2009 06:09:34 -0000 1.17 @@ -1 +1,4 @@ -psi-0.13-rc4.tar.bz2 +psi-0.13.tar.bz2 +emoticons-0.10.tar.gz +psi-lang-packs-0.13-1.tar.gz +rostericons-0.10.tar.gz Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- psi.spec 26 Jul 2009 19:34:23 -0000 1.35 +++ psi.spec 29 Jul 2009 06:09:36 -0000 1.36 @@ -1,11 +1,11 @@ Name: psi Version: 0.13 -Release: 0.3.rc4%{?dist} +Release: 1%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org -Source0: http://dl.sf.net/psi/psi-%{version}-rc4.tar.bz2 +Source0: http://dl.sf.net/psi/psi-%{version}.tar.bz2 Patch0: psi-0.12-qca.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -22,7 +22,7 @@ Requires(hint): qca-ossl Requires(hint): qca-gnupg # Language packs -Source10: psi-lang-packs-0.12.tar.gz +Source10: psi-lang-packs-0.13-1.tar.gz # Iconsets Source11: emoticons-0.10.tar.gz @@ -66,7 +66,7 @@ More icons can be found on http://jisp.n %prep -%setup -q -n %{name}-%{version}-rc4 +%setup -q %patch0 -p0 -b .qca %build @@ -145,6 +145,9 @@ fi %changelog +* Tue Jul 28 2009 Aurelien Bompard - 0.13-1 +- 0.13 final + * Sun Jul 26 2009 Fedora Release Engineering - 0.13-0.3.rc4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 17 Jul 2009 20:47:09 -0000 1.19 +++ sources 29 Jul 2009 06:09:36 -0000 1.20 @@ -1,4 +1,4 @@ -eda90920c35b8a6fbf194c86adc2e8f3 psi-0.13-rc4.tar.bz2 +ddc1a2a35dc155ca46ad6ecaeccdf894 psi-0.13.tar.bz2 1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz -054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz +749688094206e3282e466ee696998290 psi-lang-packs-0.13-1.tar.gz 51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz From lkundrak at fedoraproject.org Wed Jul 29 06:13:01 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 29 Jul 2009 06:13:01 +0000 (UTC) Subject: rpms/libwpg/devel libwpg.spec,1.3,1.4 Message-ID: <20090729061301.A765411C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/libwpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18688 Modified Files: libwpg.spec Log Message: * Tue Jul 28 2009 Lubomir Rintel - 0.1.3-4 - Fix multilib problem with doxygen documentation (#508940) Index: libwpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwpg/devel/libwpg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libwpg.spec 25 Jul 2009 08:55:46 -0000 1.3 +++ libwpg.spec 29 Jul 2009 06:13:01 -0000 1.4 @@ -1,12 +1,13 @@ Name: libwpg Version: 0.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for reading WordPerfect Graphics images Group: System Environment/Libraries License: GPLv2+ URL: http://libwpg.sourceforge.net/ Source0: http://download.sourceforge.net/libwpg/%{name}-%{version}.tar.bz2 +Patch0: libwpg-0.1.3-nodate.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libwpd-devel >= 0.8 @@ -40,12 +41,14 @@ such as WordPerfect and Presentations. %prep %setup -q +%patch0 -p1 -b .nodate %build %configure make %{?_smp_mflags} sed 's/\r//' -i ChangeLog +find docs/doxygen/html |xargs touch -r docs/doxygen/doxygen.cfg %install @@ -86,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Lubomir Rintel - 0.1.3-4 +- Fix multilib problem with doxygen documentation (#508940) + * Sat Jul 25 2009 Fedora Release Engineering - 0.1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From remi at fedoraproject.org Wed Jul 29 06:17:02 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 06:17:02 +0000 (UTC) Subject: rpms/php-pear-Net-Sieve/devel .cvsignore, 1.3, 1.4 php-pear-Net-Sieve.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090729061702.138EB11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-Sieve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19639 Modified Files: .cvsignore php-pear-Net-Sieve.spec sources Log Message: update to 1.1.7 (bugfix) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 31 May 2008 06:23:24 -0000 1.3 +++ .cvsignore 29 Jul 2009 06:17:01 -0000 1.4 @@ -1 +1 @@ -Net_Sieve-1.1.6.tgz +Net_Sieve-1.1.7.tgz Index: php-pear-Net-Sieve.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/devel/php-pear-Net-Sieve.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Net-Sieve.spec 26 Jul 2009 18:23:35 -0000 1.4 +++ php-pear-Net-Sieve.spec 29 Jul 2009 06:17:01 -0000 1.5 @@ -2,8 +2,8 @@ %define pear_name Net_Sieve Name: php-pear-Net-Sieve -Version: 1.1.6 -Release: 3%{?dist} +Version: 1.1.7 +Release: 1%{?dist} Summary: Communication with timsieved Group: Development/Libraries @@ -30,7 +30,7 @@ Can be used to install, remove, mark act %prep %setup -q -c %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -40,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation #mkdir -p docdir @@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -60,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ]; then @@ -72,12 +72,16 @@ fi %files %defattr(-,root,root,-) %doc CHANGELOG -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Net %changelog +* Wed Jul 29 2009 Remi Collet 1.1.7-1 +- update to 1.1.7 (bugfix) +- move Net_Sieve.xml to php-pear-Net-Sieve.xml + * Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 31 May 2008 06:23:24 -0000 1.3 +++ sources 29 Jul 2009 06:17:01 -0000 1.4 @@ -1 +1 @@ -f34a03db0e0f72d08264cfcbb833bdfe Net_Sieve-1.1.6.tgz +11501f0ff9b18ead97f66bf8e11283f6 Net_Sieve-1.1.7.tgz From lkundrak at fedoraproject.org Wed Jul 29 06:19:32 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 29 Jul 2009 06:19:32 +0000 (UTC) Subject: rpms/libwpg/devel libwpg-0.1.3-nodate.patch,NONE,1.1 Message-ID: <20090729061932.2655D11C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/libwpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20861 Added Files: libwpg-0.1.3-nodate.patch Log Message: * Tue Jul 28 2009 Lubomir Rintel - 0.1.3-4 - Fix multilib problem with doxygen documentation (#508940) libwpg-0.1.3-nodate.patch: footer.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libwpg-0.1.3-nodate.patch --- Avoid multilib conflict in Doxygen documentation with timestamp. Lubomir Rintel diff -up libwpg-0.1.3/docs/doxygen/footer.html.in.nodate libwpg-0.1.3/docs/doxygen/footer.html.in --- libwpg-0.1.3/docs/doxygen/footer.html.in.nodate 2009-07-28 18:16:27.000000000 +0200 +++ libwpg-0.1.3/docs/doxygen/footer.html.in 2009-07-28 18:17:06.000000000 +0200 @@ -1,5 +1,5 @@
-Generated on $datetime for $projectname by +Generated for $projectname by doxygen $doxygenversion
From dchen at fedoraproject.org Wed Jul 29 06:22:57 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Wed, 29 Jul 2009 06:22:57 +0000 (UTC) Subject: rpms/tomoe-gtk/devel tomoe-gtk-0.6.0-cflags.patch, NONE, 1.1 import.log, 1.3, 1.4 tomoe-gtk.spec, 1.8, 1.9 Message-ID: <20090729062257.8073911C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/tomoe-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21711/devel Modified Files: import.log tomoe-gtk.spec Added Files: tomoe-gtk-0.6.0-cflags.patch Log Message: Add cflags patch tomoe-gtk-0.6.0-cflags.patch: bindings/python/Makefile.am | 1 + src/Makefile.am | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) --- NEW FILE tomoe-gtk-0.6.0-cflags.patch --- diff -up ./bindings/python/Makefile.am.cflags ./bindings/python/Makefile.am --- ./bindings/python/Makefile.am.cflags 2009-07-29 15:20:50.000000000 +1000 +++ ./bindings/python/Makefile.am 2009-07-29 15:21:05.000000000 +1000 @@ -8,6 +8,7 @@ INCLUDES = \ $(PYGTK_CFLAGS) \ $(GTK2_CFLAGS) \ $(TOMOE_CFLAGS) \ + $(RPM_CFLAGS) \ -I$(top_srcdir)/src \ -I$(top_builddir)/src diff -up ./src/Makefile.am.cflags ./src/Makefile.am --- ./src/Makefile.am.cflags 2007-06-11 13:56:00.000000000 +1000 +++ ./src/Makefile.am 2009-07-29 15:22:22.000000000 +1000 @@ -1,7 +1,8 @@ AM_CPPFLAGS = \ -DSYSCONFDIR=\""$(sysconfdir)"\" \ -DDATADIR=\""$(datadir)"\" \ - -DTOMOEGTKDATADIR=\""$(datadir)"/$(PACKAGE)\" + -DTOMOEGTKDATADIR=\""$(datadir)"/$(PACKAGE)\" \ + $(RPM_CFLAGS) INCLUDES = $(GTK2_CFLAGS) $(TOMOE_CFLAGS) $(GUCHARMAP_CFLAGS) LIBS = $(GTK2_LIBS) $(TOMOE_LIBS) $(GUCHARMAP_LIBS) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 16 Jul 2009 01:27:02 -0000 1.3 +++ import.log 29 Jul 2009 06:22:56 -0000 1.4 @@ -1,3 +1,4 @@ tomoe-gtk-0_6_0-7_fc11:HEAD:tomoe-gtk-0.6.0-7.fc11.src.rpm:1242200726 tomoe-gtk-0_6_0-8_fc11:HEAD:tomoe-gtk-0.6.0-8.fc11.src.rpm:1247443686 tomoe-gtk-0_6_0-9_fc11:HEAD:tomoe-gtk-0.6.0-9.fc11.src.rpm:1247707610 +tomoe-gtk-0_6_0-10_fc11:HEAD:tomoe-gtk-0.6.0-10.fc11.src.rpm:1248848550 Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/tomoe-gtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tomoe-gtk.spec 27 Jul 2009 06:05:59 -0000 1.8 +++ tomoe-gtk.spec 29 Jul 2009 06:22:57 -0000 1.9 @@ -10,6 +10,7 @@ License: LGPLv2+ URL: http://scim-imengine.sourceforge.jp/ Source0: http://dl.sourceforge.net/sourceforge/tomoe/%{name}-%{version}.tar.gz Patch0: %{name}-0.6.0-rpath.patch +Patch1: %{name}-0.6.0-cflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tomoe >= %{tomoe_ver} @@ -49,7 +50,7 @@ Install this if you want to develop prog %prep %setup -q %patch0 -p0 -b .rpath - +%patch1 -p0 -b .cflags %build autoreconf -iv @@ -61,7 +62,9 @@ make %{?_smp_mflags} RPM_CFLAGS="$RPM_OP rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +rm -f $RPM_BUILD_ROOT%{_libdir}/*.a rm $RPM_BUILD_ROOT%{_libdir}/*.la +rm -f $RPM_BUILD_ROOT%{python_sitearch}/gtk-2.0/tomoegtk.a rm $RPM_BUILD_ROOT%{python_sitearch}/gtk-2.0/tomoegtk.la %find_lang %{name} @@ -99,8 +102,8 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Wed Jul 29 2009 Ding-Yi Chen - 0.6.0-10 +- Add patch src/Makefile.am to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS * Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 - Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From remi at fedoraproject.org Wed Jul 29 06:23:24 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 06:23:24 +0000 (UTC) Subject: rpms/php-pear-Net-Sieve/F-11 php-pear-Net-Sieve.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090729062324.A11AC11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-Sieve/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21887 Modified Files: php-pear-Net-Sieve.spec sources Log Message: update to 1.1.7 (bugfix) Index: php-pear-Net-Sieve.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/F-11/php-pear-Net-Sieve.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-Sieve.spec 26 Feb 2009 21:51:29 -0000 1.3 +++ php-pear-Net-Sieve.spec 29 Jul 2009 06:23:24 -0000 1.4 @@ -2,8 +2,8 @@ %define pear_name Net_Sieve Name: php-pear-Net-Sieve -Version: 1.1.6 -Release: 2%{?dist} +Version: 1.1.7 +Release: 1%{?dist} Summary: Communication with timsieved Group: Development/Libraries @@ -30,7 +30,7 @@ Can be used to install, remove, mark act %prep %setup -q -c %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -40,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation #mkdir -p docdir @@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -60,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ]; then @@ -72,12 +72,16 @@ fi %files %defattr(-,root,root,-) %doc CHANGELOG -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Net %changelog +* Wed Jul 29 2009 Remi Collet 1.1.7-1 +- update to 1.1.7 (bugfix) +- move Net_Sieve.xml to php-pear-Net-Sieve.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 31 May 2008 06:23:24 -0000 1.3 +++ sources 29 Jul 2009 06:23:24 -0000 1.4 @@ -1 +1 @@ -f34a03db0e0f72d08264cfcbb833bdfe Net_Sieve-1.1.6.tgz +11501f0ff9b18ead97f66bf8e11283f6 Net_Sieve-1.1.7.tgz From remi at fedoraproject.org Wed Jul 29 06:33:44 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 06:33:44 +0000 (UTC) Subject: rpms/php-pear-Net-Sieve/F-10 php-pear-Net-Sieve.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090729063344.B5BB011C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-Sieve/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23975 Modified Files: php-pear-Net-Sieve.spec sources Log Message: update to 1.1.7 (bugfix) Index: php-pear-Net-Sieve.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/F-10/php-pear-Net-Sieve.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Net-Sieve.spec 31 May 2008 06:23:24 -0000 1.2 +++ php-pear-Net-Sieve.spec 29 Jul 2009 06:33:43 -0000 1.3 @@ -2,7 +2,7 @@ %define pear_name Net_Sieve Name: php-pear-Net-Sieve -Version: 1.1.6 +Version: 1.1.7 Release: 1%{?dist} Summary: Communication with timsieved @@ -30,7 +30,7 @@ Can be used to install, remove, mark act %prep %setup -q -c %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -40,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation #mkdir -p docdir @@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -60,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ]; then @@ -72,12 +72,16 @@ fi %files %defattr(-,root,root,-) %doc CHANGELOG -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Net %changelog +* Wed Jul 29 2009 Remi Collet 1.1.7-1 +- update to 1.1.7 (bugfix) +- move Net_Sieve.xml to php-pear-Net-Sieve.xml + * Tue May 27 2008 Remi Collet 1.1.6-1 - update to 1.1.6 - add generated CHANGELOG Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 31 May 2008 06:23:24 -0000 1.3 +++ sources 29 Jul 2009 06:33:43 -0000 1.4 @@ -1 +1 @@ -f34a03db0e0f72d08264cfcbb833bdfe Net_Sieve-1.1.6.tgz +11501f0ff9b18ead97f66bf8e11283f6 Net_Sieve-1.1.7.tgz From mmaslano at fedoraproject.org Wed Jul 29 06:36:27 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Wed, 29 Jul 2009 06:36:27 +0000 (UTC) Subject: rpms/anacron/F-11 anacron-2.3-ppc64.patch, NONE, 1.1 anacron.spec, 1.67, 1.68 Message-ID: <20090729063627.2D86711C00CE@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/anacron/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24644 Modified Files: anacron.spec Added Files: anacron-2.3-ppc64.patch Log Message: * Wed Jul 29 2009 Marcela Ma?l??ov? 2.3-78 - 514276 ppc64 segfault with random delay in anacrontab anacron-2.3-ppc64.patch: readtab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE anacron-2.3-ppc64.patch --- diff -up anacron-2.3/readtab.c.ppc64 anacron-2.3/readtab.c --- anacron-2.3/readtab.c.ppc64 2009-06-23 15:50:36.000000000 +0200 +++ anacron-2.3/readtab.c 2009-07-29 08:22:13.969755429 +0200 @@ -273,7 +273,7 @@ parse_tab_line(char *line) Debug(("Jobs will start in the %02d:00-%02d:00 range.", range_start, range_stop)); } if (strncmp(env_var, "RANDOM_DELAY", 12) == 0) { - r = match_rx("^([[:digit:]]+)$", value, 1); + r = match_rx("^([[:digit:]]+)$", value, 0); if (r != -1) { int i = random(); double x = 0; Index: anacron.spec =================================================================== RCS file: /cvs/pkgs/rpms/anacron/F-11/anacron.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- anacron.spec 28 Jul 2009 12:17:18 -0000 1.67 +++ anacron.spec 29 Jul 2009 06:36:26 -0000 1.68 @@ -1,7 +1,7 @@ Summary: A cron-like program that can run jobs lost during downtime Name: anacron Version: 2.3 -Release: 77%{?dist} +Release: 78%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://packages.debian.org/stable/source/anacron @@ -17,6 +17,7 @@ Patch5: anacron-2.3-memleaking.patch Patch6: anacron-2.3-spooldir.patch Patch7: manAUX_Limit.patch Patch8: anacron-2.3-range-rnd.patch +Patch9: anacron-2.3-ppc64.patch Requires: crontabs Requires: initscripts @@ -51,6 +52,7 @@ reboots or hibernation. %patch6 -p1 -b .spool %patch7 -p1 %patch8 -p1 -b .fix +%patch9 -p1 -b .ppc64 %build make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} @@ -88,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) /etc/cron.hourly/0anacron %changelog +* Wed Jul 29 2009 Marcela Ma?l??ov? 2.3-78 +- 514276 ppc64 segfault with random delay in anacrontab + * Tue Jul 28 2009 Marcela Ma?l??ov? 2.3-77 - and now apply the change in anacron script From topdog at fedoraproject.org Wed Jul 29 06:38:32 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 29 Jul 2009 06:38:32 +0000 (UTC) Subject: rpms/php-layers-menu/devel import.log, NONE, 1.1 php-layers-menu.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729063832.B650611C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-layers-menu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24870/devel Modified Files: .cvsignore sources Added Files: import.log php-layers-menu.spec Log Message: * Wed Jul 29 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Initial CVS checkin --- NEW FILE import.log --- php-layers-menu-3_2_0-0_2_rc_fc11:HEAD:php-layers-menu-3.2.0-0.2.rc.fc11.src.rpm:1248849401 --- NEW FILE php-layers-menu.spec --- Name: php-layers-menu Version: 3.2.0 Release: 0.2.rc%{?dist} Summary: Hierarchical PHP based DHTML menu system Group: Applications/Internet License: LGPLv2+ URL: http://phplayersmenu.sourceforge.net/index.php Source0: http://switch.dl.sourceforge.net/project/phplayersmenu/phplayersmenu-devel/%{version}-rc/phplayersmenu-%{version}-rc.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php-pear(HTML_Template_PHPLIB) %description This is a hierarchical menu system to prepare on the fly DHTML menus relying on the PHP scripting engine for the processing of data items. It supports a wide range of browsers: Mozilla, Konqueror, Netscape, Safari, Opera, Internet Explorer; rather old browser versions are supported as well; accessibility is provided for text-only browsers. %prep %setup -q -n phplayersmenu-%{version} mkdir tmp for lang in THEMES/*; do tar xzvf $lang -C tmp mv tmp/images/* menuimages/ done rm -f index.php rm -rf tmp/ cat <README.fedora This Fedora packaged version of PHP layers menu uses the PEAR port of PHPLIB.php (HTML_Template_PHPLIB). The bundled version has been removed so you need to use /usr/share/pear/HTML/Template/PHPLIB.php as the include path. EOF rm -f CHANGE_TEMPLATE_CLASS_NAME.sh rm -f lib/PHPLIB.php mkdir docs mv PATCHES LOGOS DUMPS docs/ find . -type f -name 'example-*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" find . -type f -name 'demo*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" mv example-* docs/ mv examples-* docs/ mv demo.* docs/ iconv -f iso8859-1 -t utf-8 ACKNOWLEDGEMENTS > ACKNOWLEDGEMENTS.conv && mv -f ACKNOWLEDGEMENTS.conv ACKNOWLEDGEMENTS mv ACKNOWLEDGEMENTS README.PHPDOC TODO docs/ mv README.fedora LICENSE COPYING CHANGELOG README.ihtml docs/ %build %install rm -rf $RPM_BUILD_ROOT install -p -d $RPM_BUILD_ROOT%{_datadir}/php/%{name} cp -r * $RPM_BUILD_ROOT%{_datadir}/php/%{name} rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/docs rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/THEMES %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc docs/ %{_datadir}/php/%{name} %changelog * Mon Jul 27 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Change the install dir to meet packaging guidelines - Correct the licence tag - Unbundle PHPLIB.php * Thu Jul 23 2009 Andrew Colin Kissa - 3.2.0-0.1.rc - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:56:00 -0000 1.1 +++ .cvsignore 29 Jul 2009 06:38:32 -0000 1.2 @@ -0,0 +1 @@ +phplayersmenu-3.2.0-rc.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:56:00 -0000 1.1 +++ sources 29 Jul 2009 06:38:32 -0000 1.2 @@ -0,0 +1 @@ +e68cc6d3219228df9fca60c05e6d7d9f phplayersmenu-3.2.0-rc.tar.gz From remi at fedoraproject.org Wed Jul 29 06:41:22 2009 From: remi at fedoraproject.org (Remi Collet) Date: Wed, 29 Jul 2009 06:41:22 +0000 (UTC) Subject: rpms/php-pear-Net-Sieve/EL-5 xml2changelog, NONE, 1.1 php-pear-Net-Sieve.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090729064122.8317F11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-Sieve/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25774 Modified Files: php-pear-Net-Sieve.spec sources Added Files: xml2changelog Log Message: update to 1.1.7 (bugfix) --- NEW FILE xml2changelog --- = "2"){ // Package.xml V 2.0 printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n", $xml->version->release, $xml->stability->release, $xml->version->api, $xml->stability->api, $xml->date, $xml->notes); $new=$xml->version->release; if (isset($xml->changelog->release) && count($xml->changelog->release)) foreach($xml->changelog->release as $rel) { $old=$rel->version->release; if ("$old" != "$new") { printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n", $rel->version->release, $rel->stability->release, $rel->version->api, $rel->stability->api, $rel->date, $rel->notes); } } } else { // Package.xml V 1.0 printf("* Version %s (%s) - %s\n\n%s\n\n", $xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes); foreach($xml->changelog->release as $rel) printf("* Version %s (%s) - %s\n\n%s\n\n", $rel->version, $rel->state, $rel->date, $rel->notes); } ?> Index: php-pear-Net-Sieve.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/EL-5/php-pear-Net-Sieve.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Net-Sieve.spec 31 Dec 2006 05:40:45 -0000 1.1 +++ php-pear-Net-Sieve.spec 29 Jul 2009 06:41:22 -0000 1.2 @@ -1,24 +1,26 @@ %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %define pear_name Net_Sieve -Name: php-pear-Net-Sieve -Version: 1.1.5 -Release: 2%{?dist} -Summary: Communication with timsieved - -Group: Development/Libraries -License: BSD -URL: http://pear.php.net/package/Net_Sieve -Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildArch: noarch -BuildRequires: php-pear >= 1:1.4.9-1.2 -Requires: php-pear(PEAR) -Requires: php-pear(Net_Socket) >= 1.0 +Name: php-pear-Net-Sieve +Version: 1.1.7 +Release: 1%{?dist} +Summary: Communication with timsieved + +Group: Development/Libraries +License: BSD +URL: http://pear.php.net/package/Net_Sieve +Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz +Source2: xml2changelog + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: php-pear >= 1:1.4.9-1.2 +Requires: php-pear(PEAR) +Requires: php-pear(Net_Socket) >= 1.0 Requires(post): %{__pear} Requires(postun): %{__pear} -Provides: php-pear(%{pear_name}) = %{version} +Provides: php-pear(%{pear_name}) = %{version} %description Provides an API to talk to the timsieved server that comes with Cyrus IMAPd. @@ -27,8 +29,8 @@ Can be used to install, remove, mark act %prep %setup -q -c -[ -f package2.xml ] || mv package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +%{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -38,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation #mkdir -p docdir @@ -49,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -58,26 +60,33 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ]; then - %{__pear} uninstall --nodeps --ignore-errors --register-only \ - %{pear_name} >/dev/null || : + %{__pear} uninstall --nodeps --ignore-errors --register-only \ + %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) -%{pear_xmldir}/%{pear_name}.xml +%doc CHANGELOG +%{pear_xmldir}/%{name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Net %changelog +* Wed Jul 29 2009 Remi Collet 1.1.7-1 +- update to 1.1.7 (bugfix) +- move Net_Sieve.xml to php-pear-Net-Sieve.xml +- add generated CHANGELOG + * Sat Dec 30 2006 Brandon Holbrook 1.1.5-2 - Cleaned up spec file to latest pear template - Changed license to BSD * Fri Dec 29 2006 Brandon Holbrook 1.1.5-1 - initial RPM + Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-Sieve/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Dec 2006 05:40:45 -0000 1.2 +++ sources 29 Jul 2009 06:41:22 -0000 1.3 @@ -1 +1 @@ -2f0b868d5bde1742721d525233274f5a Net_Sieve-1.1.5.tgz +11501f0ff9b18ead97f66bf8e11283f6 Net_Sieve-1.1.7.tgz From beekhof at fedoraproject.org Wed Jul 29 06:49:37 2009 From: beekhof at fedoraproject.org (Andrew Beekhof) Date: Wed, 29 Jul 2009 06:49:37 +0000 (UTC) Subject: rpms/cluster-glue/devel cluster-glue.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729064937.B83F211C00CE@cvs1.fedora.phx.redhat.com> Author: beekhof Update of /cvs/pkgs/rpms/cluster-glue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28181/devel Modified Files: .cvsignore sources Added Files: cluster-glue.spec import.log Log Message: Initial import of the cluster-glue package from src.rpm --- NEW FILE cluster-glue.spec --- %global gname haclient %global uname hacluster %global nogroup nobody # When downloading directly from Mercurial, it will automatically add this prefix # Invoking 'hg archive' wont but you can add one with: hg archive -t tgz -p "Reusable-Cluster-Components-" -r $upstreamversion $upstreamversion.tar.gz %global upstreamprefix Reusable-Cluster-Components- %global upstreamversion 75cab275433e # Keep around for when/if required %global alphatag %{upstreamversion}.hg Name: cluster-glue Summary: Reusable cluster components Version: 1.0 Release: %{?alphatag:0.}7%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Url: http://www.clusterlabs.org Group: System Environment/Base Source0: http://hg.linux-ha.org/glue/archive/%{upstreamversion}.tar.gz ## Setup/build bits BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Build dependencies BuildRequires: automake autoconf libtool pkgconfig chrpath libtool-ltdl-devel BuildRequires: bzip2-devel glib2-devel e2fsprogs-devel python-devel libxml2-devel BuildRequires: OpenIPMI-devel libnet-devel net-snmp-devel libcurl-devel openhpi-devel %if 0%{?fedora} < 12 BuildRequires: e2fsprogs-devel %else BuildRequires: libuuid-devel %endif %prep %setup -q -n %{upstreamprefix}%{upstreamversion} ./autogen.sh %{_configure} CFLAGS="${CFLAGS} $(echo '%{optflags}')" \ --enable-fatal-warnings=no \ --localstatedir=%{_var} \ --with-daemon-group=%{gname} \ --with-daemon-user=%{uname} %build make %{_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} ## tree fix up # Dont package static libs find %{buildroot} -name '*.a' -exec rm {} \; find %{buildroot} -name '*.la' -exec rm {} \; find %{buildroot} -type f -exec chrpath -d {} >/dev/null 2>&1 \; %clean rm -rf %{buildroot} # cluster-glue %description A collection of common tools that are useful for writing cluster managers such as Pacemaker. Provides a local resource manager that understands the OCF and LSB standards, and an interface to common STONITH devices. %files %defattr(-,root,root) %{_sbindir}/ha_logger %{_sbindir}/lrmadmin %{_sbindir}/meatclient %{_sbindir}/stonith %dir %{_libdir}/heartbeat %dir %{_libdir}/heartbeat/plugins %dir %{_libdir}/heartbeat/plugins/RAExec %dir %{_libdir}/heartbeat/plugins/InterfaceMgr %{_libdir}/heartbeat/lrmd %{_libdir}/heartbeat/ha_logd %{_libdir}/heartbeat/plugins/RAExec/*.so %{_libdir}/heartbeat/plugins/InterfaceMgr/*.so %dir %{_libdir}/stonith %dir %{_libdir}/stonith/plugins %dir %{_libdir}/stonith/plugins/stonith2 %{_libdir}/stonith/plugins/external %{_libdir}/stonith/plugins/stonith2/*.so %{_libdir}/stonith/plugins/stonith2/*.py* %{_libdir}/stonith/plugins/xen0-ha-dom0-stonith-helper %dir %{_var}/lib/heartbeat %dir %{_var}/lib/heartbeat/cores %dir %attr (0700, root, root) %{_var}/lib/heartbeat/cores/root %dir %attr (0700, nobody, %{nogroup}) %{_var}/lib/heartbeat/cores/nobody %dir %attr (0700, %{uname}, %{gname}) %{_var}/lib/heartbeat/cores/%{uname} %doc %{_datadir}/doc/stonith %doc %{_mandir}/man8/* %doc %{_mandir}/man1/* %doc AUTHORS %doc COPYING # cluster-glue-libs %package -n cluster-glue-libs Summary: Reusable cluster libraries Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description -n cluster-glue-libs A collection of libraries that are useful for writing cluster managers such as Pacemaker. %pre getent group %{gname} >/dev/null || groupadd -r %{gname} getent passwd %{uname} >/dev/null || \ useradd -r -g %{gname} -d %{_var}/lib/heartbeat/cores/hacluster -s /sbin/nologin \ -c "heartbeat user" %{uname} exit 0 %post -n cluster-glue-libs -p /sbin/ldconfig %postun -n cluster-glue-libs -p /sbin/ldconfig %files -n cluster-glue-libs %defattr(-,root,root) %{_libdir}/lib*.so.* %doc AUTHORS %doc COPYING.LIB # cluster-glue-libs-devel %package -n cluster-glue-libs-devel Summary: Headers and libraries for writing cluster managers Group: Development/Libraries Requires: cluster-glue-libs = %{version}-%{release} %description -n cluster-glue-libs-devel Headers and shared libraries for a useful for writing cluster managers such as Pacemaker. %files -n cluster-glue-libs-devel %defattr(-,root,root) %dir %{_libdir}/glue %dir %{_libdir}/glue/plugins %dir %{_libdir}/glue/plugins/test %dir %{_libdir}/heartbeat %dir %{_datadir}/glue %{_libdir}/lib*.so %{_libdir}/heartbeat/ipctest %{_libdir}/heartbeat/ipctransientclient %{_libdir}/heartbeat/ipctransientserver %{_libdir}/heartbeat/transient-test.sh %{_libdir}/heartbeat/base64_md5_test %{_libdir}/heartbeat/logtest %{_includedir}/clplumbing %{_includedir}/heartbeat %{_includedir}/stonith %{_includedir}/pils %{_datadir}/glue/lrmtest %{_libdir}/glue/plugins/test/test.so %doc AUTHORS %doc COPYING %doc COPYING.LIB %changelog * Tue Jul 28 2009 Andrew Beekhof - 1.0-0.7.75cab275433e.hg - Add a leading zero to the revision when alphatag is used * Tue Jul 28 2009 Andrew Beekhof - 1.0-0.6.75cab275433e.hg - Incorporate results of Fedora review - Use global instead of define - Remove unused rpm variable - Remove redundant configure options - Change version to 1.0.0 pre-release and include Mercurial tag in version * Mon Jul 27 2009 Andrew Beekhof - 0.9-5 - Use linux-ha.org for Source0 - Remove Requires: $name from -devel as its implied - Instead of 'daemon', use the user and group from Heartbeat and create it if necessary * Fri Jul 24 2009 Andrew Beekhof - 0.9-4 - Update the tarball from upstream to version 75cab275433e - Include an AUTHORS and license file in each package - Change the library package name to cluster-glue-libs to be more Fedora compliant * Mon Jul 20 2009 Andrew Beekhof - 0.9-3 - Package the project AUTHORS file - Have Source0 reference the upstream Mercurial repo * Tue Jul 14 2009 Andrew Beekhof - 0.9-2 - More cleanups * Fri Jul 3 2009 Fabio M. Di Nitto - 0.9-1 - Fedora-ize the spec file * Fri Jun 5 2009 Andrew Beekhof - 0.9-0 - Initial checkin --- NEW FILE import.log --- cluster-glue-1_0-0_7_75cab275433e_hg_fc12:HEAD:cluster-glue-1.0-0.7.75cab275433e.hg.fc12.src.rpm:1248850106 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cluster-glue/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 03:49:43 -0000 1.1 +++ .cvsignore 29 Jul 2009 06:49:37 -0000 1.2 @@ -0,0 +1 @@ +75cab275433e.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluster-glue/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 03:49:43 -0000 1.1 +++ sources 29 Jul 2009 06:49:37 -0000 1.2 @@ -0,0 +1 @@ +a9aba6ae59030a148dd95bfea163852c 75cab275433e.tar.gz From ndim at fedoraproject.org Wed Jul 29 07:08:29 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Wed, 29 Jul 2009 07:08:29 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/devel xorg-x11-drv-radeonhd.spec, 1.63, 1.64 Message-ID: <20090729070829.EDF4711C00CE@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32178 Modified Files: xorg-x11-drv-radeonhd.spec Log Message: * Wed Jul 29 2009 Hans Ulrich Niedermann - 1.2.5-3.11.20090714git - F12 moves some header files from xorg-x11-proto-devel to libXext-devel Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- xorg-x11-drv-radeonhd.spec 27 Jul 2009 08:30:06 -0000 1.63 +++ xorg-x11-drv-radeonhd.spec 29 Jul 2009 07:08:29 -0000 1.64 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 3.10%{?alphatag}%{?dist} +Release: 3.11%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -96,8 +96,13 @@ Requires: xorg-x11-server-Xorg < 1.4.99. # DRI support BuildRequires: libdrm-devel -BuildRequires: xorg-x11-proto-devel BuildRequires: mesa-libGL-devel +BuildRequires: xorg-x11-proto-devel +%if 0%{?fedora} >= 12 +# F12 moves some header files from xorg-x11-proto-devel to libXext-devel +BuildRequires: libXext-devel +%endif + %description X.org X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets. @@ -165,6 +170,9 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Wed Jul 29 2009 Hans Ulrich Niedermann - 1.2.5-3.11.20090714git +- F12 moves some header files from xorg-x11-proto-devel to libXext-devel + * Mon Jul 27 2009 Fedora Release Engineering - 1.2.5-3.10.20090714git - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Wed Jul 29 07:10:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:10:03 +0000 Subject: [pkgdb] viewmtn ownership updated Message-ID: <20090729071003.2180C10F88F@bastion2.fedora.phx.redhat.com> Package viewmtn in Fedora devel is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/viewmtn From pkgdb at fedoraproject.org Wed Jul 29 07:10:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:10:29 +0000 Subject: [pkgdb] viewmtn ownership updated Message-ID: <20090729071029.97D0C10F89A@bastion2.fedora.phx.redhat.com> Package viewmtn in Fedora 11 is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/viewmtn From pkgdb at fedoraproject.org Wed Jul 29 07:12:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:12:02 +0000 Subject: [pkgdb] viewmtn ownership updated Message-ID: <20090729071202.B3B4710F882@bastion2.fedora.phx.redhat.com> Package viewmtn in Fedora EPEL 5 is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/viewmtn From pkgdb at fedoraproject.org Wed Jul 29 07:12:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:12:17 +0000 Subject: [pkgdb] viewmtn ownership updated Message-ID: <20090729071217.495A610F882@bastion2.fedora.phx.redhat.com> Package viewmtn in Fedora 10 is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/viewmtn From dchen at fedoraproject.org Wed Jul 29 07:22:04 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Wed, 29 Jul 2009 07:22:04 +0000 (UTC) Subject: rpms/tomoe-gtk/devel import.log,1.4,1.5 tomoe-gtk.spec,1.9,1.10 Message-ID: <20090729072204.AFA9811C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/tomoe-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3267/devel Modified Files: import.log tomoe-gtk.spec Log Message: Add cflags patch Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 29 Jul 2009 06:22:56 -0000 1.4 +++ import.log 29 Jul 2009 07:22:04 -0000 1.5 @@ -2,3 +2,4 @@ tomoe-gtk-0_6_0-7_fc11:HEAD:tomoe-gtk-0. tomoe-gtk-0_6_0-8_fc11:HEAD:tomoe-gtk-0.6.0-8.fc11.src.rpm:1247443686 tomoe-gtk-0_6_0-9_fc11:HEAD:tomoe-gtk-0.6.0-9.fc11.src.rpm:1247707610 tomoe-gtk-0_6_0-10_fc11:HEAD:tomoe-gtk-0.6.0-10.fc11.src.rpm:1248848550 +tomoe-gtk-0_6_0-11_fc11:HEAD:tomoe-gtk-0.6.0-11.fc11.src.rpm:1248852088 Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/tomoe-gtk.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tomoe-gtk.spec 29 Jul 2009 06:22:57 -0000 1.9 +++ tomoe-gtk.spec 29 Jul 2009 07:22:04 -0000 1.10 @@ -2,7 +2,7 @@ Name: tomoe-gtk Version: %{tomoe_ver} -Release: 10%{?dist} +Release: 11%{?dist} Summary: Gtk library for tomoe for Japanese and Chinese handwritten input Group: System Environment/Libraries @@ -102,9 +102,12 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog -* Wed Jul 29 2009 Ding-Yi Chen - 0.6.0-10 +* Wed Jul 29 2009 Ding-Yi Chen - 0.6.0-11 - Add patch src/Makefile.am to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 - Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From jsafrane at fedoraproject.org Wed Jul 29 07:25:51 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 29 Jul 2009 07:25:51 +0000 (UTC) Subject: rpms/freeipmi/devel .cvsignore, 1.10, 1.11 freeipmi.spec, 1.20, 1.21 sources, 1.10, 1.11 Message-ID: <20090729072551.AA6E311C00CE@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/freeipmi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4223 Modified Files: .cvsignore freeipmi.spec sources Log Message: Update to freeipmi-0.7.11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/freeipmi/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Jun 2009 12:34:12 -0000 1.10 +++ .cvsignore 29 Jul 2009 07:25:51 -0000 1.11 @@ -1 +1 @@ -freeipmi-0.7.10.tar.gz +freeipmi-0.7.11.tar.gz Index: freeipmi.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeipmi/devel/freeipmi.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- freeipmi.spec 24 Jul 2009 23:10:03 -0000 1.20 +++ freeipmi.spec 29 Jul 2009 07:25:51 -0000 1.21 @@ -2,14 +2,10 @@ # Copyright (c) 2003 FreeIPMI Core Team # -%if %{?_with_debug:1}%{!?_with_debug:0} -Release: 3.debug%{?dist} -%else -Release: 2%{?dist} -%endif +Release: 1%{?dist} Name: freeipmi -Version: 0.7.10 +Version: 0.7.11 License: GPLv2+ Group: Applications/System URL: http://www.gnu.org/software/freeipmi/ @@ -295,6 +291,9 @@ fi %{_mandir}/man8/ipmidetectd.8* %changelog +* Wed Jul 29 2009 Jan Safranek - 0.7.11-1 +- Update to freeipmi-0.7.11 + * Fri Jul 24 2009 Fedora Release Engineering - 0.7.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/freeipmi/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Jun 2009 12:34:12 -0000 1.10 +++ sources 29 Jul 2009 07:25:51 -0000 1.11 @@ -1 +1 @@ -6372b53617a600459331cfa97c42ec5c freeipmi-0.7.10.tar.gz +193b0c5b0929e0d68a12c180caef24fd freeipmi-0.7.11.tar.gz From mhlavink at fedoraproject.org Wed Jul 29 07:42:20 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 07:42:20 +0000 (UTC) Subject: rpms/ksh/F-11 .cvsignore, 1.17, 1.18 ksh-20070328-builtins.patch, 1.2, 1.3 ksh.spec, 1.49, 1.50 sources, 1.18, 1.19 Message-ID: <20090729074220.6957411C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ksh/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7591 Modified Files: .cvsignore ksh-20070328-builtins.patch ksh.spec sources Log Message: updated to older 2008-12-12 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ksh/F-11/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 11 May 2009 08:09:29 -0000 1.17 +++ .cvsignore 29 Jul 2009 07:42:20 -0000 1.18 @@ -1,2 +1,2 @@ -INIT.2009-05-05.tgz -ast-ksh.2009-05-05.tgz +INIT.2008-12-12.tgz +ast-ksh.2008-12-12.tgz ksh-20070328-builtins.patch: builtins.c | 2 ++ 1 file changed, 2 insertions(+) Index: ksh-20070328-builtins.patch =================================================================== RCS file: /cvs/extras/rpms/ksh/F-11/ksh-20070328-builtins.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ksh-20070328-builtins.patch 5 May 2009 11:20:42 -0000 1.2 +++ ksh-20070328-builtins.patch 29 Jul 2009 07:42:20 -0000 1.3 @@ -1,6 +1,6 @@ -diff -up ksh-20090501/src/cmd/ksh93/data/builtins.c.builtins ksh-20090501/src/cmd/ksh93/data/builtins.c ---- ksh-20090501/src/cmd/ksh93/data/builtins.c.builtins 2009-04-12 09:38:03.000000000 +0200 -+++ ksh-20090501/src/cmd/ksh93/data/builtins.c 2009-05-05 11:20:30.601284246 +0200 +diff -up ksh-20081212/src/cmd/ksh93/data/builtins.c.builtins ksh-20081212/src/cmd/ksh93/data/builtins.c +--- ksh-20081212/src/cmd/ksh93/data/builtins.c.builtins 2008-12-04 17:23:00.000000000 +0100 ++++ ksh-20081212/src/cmd/ksh93/data/builtins.c 2009-07-29 09:35:43.573518651 +0200 @@ -125,6 +125,7 @@ const struct shtable3 shtab_builtins[] = #ifdef SHOPT_CMDLIB_HDR #include SHOPT_CMDLIB_HDR @@ -14,6 +14,6 @@ diff -up ksh-20090501/src/cmd/ksh93/data CMDLIST(sync) #endif +#endif - #if SHOPT_REGRESS - "__regress__", NV_BLTIN|BLT_ENV, bltin(__regress__), - #endif + "", 0, 0 + }; + Index: ksh.spec =================================================================== RCS file: /cvs/extras/rpms/ksh/F-11/ksh.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- ksh.spec 11 May 2009 08:09:29 -0000 1.49 +++ ksh.spec 29 Jul 2009 07:42:20 -0000 1.50 @@ -1,11 +1,11 @@ -%define releasedate 2009-05-05 +%define releasedate 2008-12-12 Name: ksh Summary: The Original ATT Korn Shell URL: http://www.kornshell.com/ Group: System Environment/Shells License: CPL -Version: 20090505 +Version: 20081212 Release: 1%{?dist} Source0: http://www.research.att.com/~gsf/download/tgz/ast-ksh.%{releasedate}.tgz Source1: http://www.research.att.com/~gsf/download/tgz/INIT.%{releasedate}.tgz @@ -84,6 +84,10 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Michal Hlavinka - 20081212-1 +- going back to 2008-12-12 because there is nothing else usable enough +- fixes #510833 + * Mon May 11 2009 Michal Hlavinka - 20090505-1 - updated to 2009-05-05 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ksh/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 11 May 2009 08:09:29 -0000 1.18 +++ sources 29 Jul 2009 07:42:20 -0000 1.19 @@ -1,2 +1,2 @@ -e941c0a95b73c8309e6afff10f79d988 INIT.2009-05-05.tgz -dff46f3e047ac35ac78a81c52938991b ast-ksh.2009-05-05.tgz +a3286fec6748a34e46a89b2edbbaeb78 INIT.2008-12-12.tgz +e339886eed78b6bb9b75565477ea9135 ast-ksh.2008-12-12.tgz From topdog at fedoraproject.org Wed Jul 29 07:45:20 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 29 Jul 2009 07:45:20 +0000 (UTC) Subject: rpms/php-layers-menu/F-10 import.log, NONE, 1.1 php-layers-menu.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729074520.C8E7D11C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-layers-menu/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8196/F-10 Modified Files: .cvsignore sources Added Files: import.log php-layers-menu.spec Log Message: * Wed Jul 29 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Initial CVS checkin --- NEW FILE import.log --- php-layers-menu-3_2_0-0_2_rc_fc11:F-10:php-layers-menu-3.2.0-0.2.rc.fc11.src.rpm:1248853440 --- NEW FILE php-layers-menu.spec --- Name: php-layers-menu Version: 3.2.0 Release: 0.2.rc%{?dist} Summary: Hierarchical PHP based DHTML menu system Group: Applications/Internet License: LGPLv2+ URL: http://phplayersmenu.sourceforge.net/index.php Source0: http://switch.dl.sourceforge.net/project/phplayersmenu/phplayersmenu-devel/%{version}-rc/phplayersmenu-%{version}-rc.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php-pear(HTML_Template_PHPLIB) %description This is a hierarchical menu system to prepare on the fly DHTML menus relying on the PHP scripting engine for the processing of data items. It supports a wide range of browsers: Mozilla, Konqueror, Netscape, Safari, Opera, Internet Explorer; rather old browser versions are supported as well; accessibility is provided for text-only browsers. %prep %setup -q -n phplayersmenu-%{version} mkdir tmp for lang in THEMES/*; do tar xzvf $lang -C tmp mv tmp/images/* menuimages/ done rm -f index.php rm -rf tmp/ cat <README.fedora This Fedora packaged version of PHP layers menu uses the PEAR port of PHPLIB.php (HTML_Template_PHPLIB). The bundled version has been removed so you need to use /usr/share/pear/HTML/Template/PHPLIB.php as the include path. EOF rm -f CHANGE_TEMPLATE_CLASS_NAME.sh rm -f lib/PHPLIB.php mkdir docs mv PATCHES LOGOS DUMPS docs/ find . -type f -name 'example-*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" find . -type f -name 'demo*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" mv example-* docs/ mv examples-* docs/ mv demo.* docs/ iconv -f iso8859-1 -t utf-8 ACKNOWLEDGEMENTS > ACKNOWLEDGEMENTS.conv && mv -f ACKNOWLEDGEMENTS.conv ACKNOWLEDGEMENTS mv ACKNOWLEDGEMENTS README.PHPDOC TODO docs/ mv README.fedora LICENSE COPYING CHANGELOG README.ihtml docs/ %build %install rm -rf $RPM_BUILD_ROOT install -p -d $RPM_BUILD_ROOT%{_datadir}/php/%{name} cp -r * $RPM_BUILD_ROOT%{_datadir}/php/%{name} rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/docs rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/THEMES %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc docs/ %{_datadir}/php/%{name} %changelog * Mon Jul 27 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Change the install dir to meet packaging guidelines - Correct the licence tag - Unbundle PHPLIB.php * Thu Jul 23 2009 Andrew Colin Kissa - 3.2.0-0.1.rc - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:56:00 -0000 1.1 +++ .cvsignore 29 Jul 2009 07:45:20 -0000 1.2 @@ -0,0 +1 @@ +phplayersmenu-3.2.0-rc.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:56:00 -0000 1.1 +++ sources 29 Jul 2009 07:45:20 -0000 1.2 @@ -0,0 +1 @@ +e68cc6d3219228df9fca60c05e6d7d9f phplayersmenu-3.2.0-rc.tar.gz From kasal at fedoraproject.org Wed Jul 29 07:47:47 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 29 Jul 2009 07:47:47 +0000 (UTC) Subject: rpms/flpsed/devel .cvsignore, 1.2, 1.3 flpsed.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090729074747.5809D11C00CE@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/flpsed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9002 Modified Files: .cvsignore flpsed.spec sources Log Message: update to 0.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/flpsed/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Sep 2007 22:42:52 -0000 1.2 +++ .cvsignore 29 Jul 2009 07:47:47 -0000 1.3 @@ -1 +1 @@ -flpsed-0.5.0.tar.gz +flpsed-0.5.2.tar.gz Index: flpsed.spec =================================================================== RCS file: /cvs/extras/rpms/flpsed/devel/flpsed.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- flpsed.spec 24 Jul 2009 22:56:13 -0000 1.4 +++ flpsed.spec 29 Jul 2009 07:47:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: flpsed -Version: 0.5.0 -Release: 6%{?dist} +Version: 0.5.2 +Release: 1%{?dist} Summary: WYSIWYG pseudo PostScript editor Group: Applications/Editors @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Stepan Kasal - 0.5.2-1 +- new upstream version + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/flpsed/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Sep 2007 22:42:52 -0000 1.2 +++ sources 29 Jul 2009 07:47:47 -0000 1.3 @@ -1 +1 @@ -88b1dae91c35210ff67b3c8c1c426c27 flpsed-0.5.0.tar.gz +75fd4de6bc7cf97394ffb92b6614892f flpsed-0.5.2.tar.gz From topdog at fedoraproject.org Wed Jul 29 07:49:04 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 29 Jul 2009 07:49:04 +0000 (UTC) Subject: rpms/php-layers-menu/F-11 import.log, NONE, 1.1 php-layers-menu.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729074904.B8A2A11C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-layers-menu/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9297/F-11 Modified Files: .cvsignore sources Added Files: import.log php-layers-menu.spec Log Message: * Wed Jul 29 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Initial CVS checkin --- NEW FILE import.log --- php-layers-menu-3_2_0-0_2_rc_fc11:F-11:php-layers-menu-3.2.0-0.2.rc.fc11.src.rpm:1248853632 --- NEW FILE php-layers-menu.spec --- Name: php-layers-menu Version: 3.2.0 Release: 0.2.rc%{?dist} Summary: Hierarchical PHP based DHTML menu system Group: Applications/Internet License: LGPLv2+ URL: http://phplayersmenu.sourceforge.net/index.php Source0: http://switch.dl.sourceforge.net/project/phplayersmenu/phplayersmenu-devel/%{version}-rc/phplayersmenu-%{version}-rc.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php-pear(HTML_Template_PHPLIB) %description This is a hierarchical menu system to prepare on the fly DHTML menus relying on the PHP scripting engine for the processing of data items. It supports a wide range of browsers: Mozilla, Konqueror, Netscape, Safari, Opera, Internet Explorer; rather old browser versions are supported as well; accessibility is provided for text-only browsers. %prep %setup -q -n phplayersmenu-%{version} mkdir tmp for lang in THEMES/*; do tar xzvf $lang -C tmp mv tmp/images/* menuimages/ done rm -f index.php rm -rf tmp/ cat <README.fedora This Fedora packaged version of PHP layers menu uses the PEAR port of PHPLIB.php (HTML_Template_PHPLIB). The bundled version has been removed so you need to use /usr/share/pear/HTML/Template/PHPLIB.php as the include path. EOF rm -f CHANGE_TEMPLATE_CLASS_NAME.sh rm -f lib/PHPLIB.php mkdir docs mv PATCHES LOGOS DUMPS docs/ find . -type f -name 'example-*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" find . -type f -name 'demo*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" mv example-* docs/ mv examples-* docs/ mv demo.* docs/ iconv -f iso8859-1 -t utf-8 ACKNOWLEDGEMENTS > ACKNOWLEDGEMENTS.conv && mv -f ACKNOWLEDGEMENTS.conv ACKNOWLEDGEMENTS mv ACKNOWLEDGEMENTS README.PHPDOC TODO docs/ mv README.fedora LICENSE COPYING CHANGELOG README.ihtml docs/ %build %install rm -rf $RPM_BUILD_ROOT install -p -d $RPM_BUILD_ROOT%{_datadir}/php/%{name} cp -r * $RPM_BUILD_ROOT%{_datadir}/php/%{name} rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/docs rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/THEMES %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc docs/ %{_datadir}/php/%{name} %changelog * Mon Jul 27 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Change the install dir to meet packaging guidelines - Correct the licence tag - Unbundle PHPLIB.php * Thu Jul 23 2009 Andrew Colin Kissa - 3.2.0-0.1.rc - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:56:00 -0000 1.1 +++ .cvsignore 29 Jul 2009 07:49:04 -0000 1.2 @@ -0,0 +1 @@ +phplayersmenu-3.2.0-rc.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:56:00 -0000 1.1 +++ sources 29 Jul 2009 07:49:04 -0000 1.2 @@ -0,0 +1 @@ +e68cc6d3219228df9fca60c05e6d7d9f phplayersmenu-3.2.0-rc.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 07:49:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:49:30 +0000 Subject: [pkgdb] shapelib ownership updated Message-ID: <20090729074930.8F98F10F882@bastion2.fedora.phx.redhat.com> Package shapelib in Fedora devel is now owned by lucilanga To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/shapelib From pkgdb at fedoraproject.org Wed Jul 29 07:50:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:50:07 +0000 Subject: [pkgdb] shapelib ownership updated Message-ID: <20090729075007.B4D7010F897@bastion2.fedora.phx.redhat.com> Package shapelib in Fedora 11 is now owned by lucilanga To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/shapelib From pkgdb at fedoraproject.org Wed Jul 29 07:50:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:50:17 +0000 Subject: [pkgdb] shapelib ownership updated Message-ID: <20090729075017.6250310F882@bastion2.fedora.phx.redhat.com> Package shapelib in Fedora 10 is now owned by lucilanga To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/shapelib From pkgdb at fedoraproject.org Wed Jul 29 07:51:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:51:42 +0000 Subject: [pkgdb] shapelib ownership updated Message-ID: <20090729075142.B160210F88F@bastion2.fedora.phx.redhat.com> Package shapelib in Fedora EPEL 5 is now owned by lucilanga To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/shapelib From pkgdb at fedoraproject.org Wed Jul 29 07:51:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 07:51:43 +0000 Subject: [pkgdb] shapelib ownership updated Message-ID: <20090729075143.9245C10F89A@bastion2.fedora.phx.redhat.com> Package shapelib in Fedora EPEL 4 is now owned by lucilanga To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/shapelib From caolanm at fedoraproject.org Wed Jul 29 07:52:04 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 29 Jul 2009 07:52:04 +0000 (UTC) Subject: rpms/openoffice.org/devel .cvsignore, 1.226, 1.227 sources, 1.368, 1.369 Message-ID: <20090729075204.B84A311C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10765 Modified Files: .cvsignore sources Log Message: next sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/.cvsignore,v retrieving revision 1.226 retrieving revision 1.227 diff -u -p -r1.226 -r1.227 --- .cvsignore 21 Jul 2009 08:43:47 -0000 1.226 +++ .cvsignore 29 Jul 2009 07:52:04 -0000 1.227 @@ -9,5 +9,4 @@ openoffice.org-javafilter.desktop or-IN_DEV300_m40.sdf acor_en-GB.dat acor_en-ZA.dat -OOO310_m15.tar.bz2 -OOO310_m16.tar.bz2 +OOO310_m17.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/sources,v retrieving revision 1.368 retrieving revision 1.369 diff -u -p -r1.368 -r1.369 --- sources 21 Jul 2009 08:43:47 -0000 1.368 +++ sources 29 Jul 2009 07:52:04 -0000 1.369 @@ -9,4 +9,4 @@ f501a4d62ed251d360ea6c544177a94f redhat 7d7eb194a61b3b1c59e3c82da889ac27 or-IN_DEV300_m40.sdf f3842c64faf98fe9a8752e4a820c97bc acor_en-GB.dat bccdb30725b178260e5ce74d0ad27879 acor_en-ZA.dat -19343b5f59e716bd0ce2efaa6e3eb82e OOO310_m16.tar.bz2 +fba352dfe5ac3f8689c5c1bcee25719c OOO310_m17.tar.bz2 From caolanm at fedoraproject.org Wed Jul 29 07:53:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 29 Jul 2009 07:53:33 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1974,1.1975 Message-ID: <20090729075333.70F1911C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11049 Modified Files: openoffice.org.spec Log Message: latest milestone Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1974 retrieving revision 1.1975 diff -u -p -r1.1974 -r1.1975 --- openoffice.org.spec 25 Jul 2009 15:26:06 -0000 1.1974 +++ openoffice.org.spec 29 Jul 2009 07:53:33 -0000 1.1975 @@ -1,6 +1,6 @@ %define oootag OOO310 -%define ooomilestone 16 -%define rh_rpm_release 2 +%define ooomilestone 17 +%define rh_rpm_release 1 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -4198,6 +4198,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Wed Jul 29 2009 Caol?n McNamara - 1:3.1.1-17.1 +- latest milestone + * Sat Jul 25 2009 Caol?n McNamara - 1:3.1.1-16.2 - make autocorrect and font subpackages noarch - add workspace.os132.patch to avoid switch html view overwrite horror From topdog at fedoraproject.org Wed Jul 29 07:54:32 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 29 Jul 2009 07:54:32 +0000 (UTC) Subject: rpms/php-layers-menu/EL-5 import.log, NONE, 1.1 php-layers-menu.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729075432.57F5C11C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-layers-menu/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11263/EL-5 Modified Files: .cvsignore sources Added Files: import.log php-layers-menu.spec Log Message: * Wed Jul 29 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Initial CVS checkin --- NEW FILE import.log --- php-layers-menu-3_2_0-0_2_rc_fc11:EL-5:php-layers-menu-3.2.0-0.2.rc.fc11.src.rpm:1248853869 --- NEW FILE php-layers-menu.spec --- Name: php-layers-menu Version: 3.2.0 Release: 0.2.rc%{?dist} Summary: Hierarchical PHP based DHTML menu system Group: Applications/Internet License: LGPLv2+ URL: http://phplayersmenu.sourceforge.net/index.php Source0: http://switch.dl.sourceforge.net/project/phplayersmenu/phplayersmenu-devel/%{version}-rc/phplayersmenu-%{version}-rc.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: php-pear(HTML_Template_PHPLIB) %description This is a hierarchical menu system to prepare on the fly DHTML menus relying on the PHP scripting engine for the processing of data items. It supports a wide range of browsers: Mozilla, Konqueror, Netscape, Safari, Opera, Internet Explorer; rather old browser versions are supported as well; accessibility is provided for text-only browsers. %prep %setup -q -n phplayersmenu-%{version} mkdir tmp for lang in THEMES/*; do tar xzvf $lang -C tmp mv tmp/images/* menuimages/ done rm -f index.php rm -rf tmp/ cat <README.fedora This Fedora packaged version of PHP layers menu uses the PEAR port of PHPLIB.php (HTML_Template_PHPLIB). The bundled version has been removed so you need to use /usr/share/pear/HTML/Template/PHPLIB.php as the include path. EOF rm -f CHANGE_TEMPLATE_CLASS_NAME.sh rm -f lib/PHPLIB.php mkdir docs mv PATCHES LOGOS DUMPS docs/ find . -type f -name 'example-*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" find . -type f -name 'demo*' -print0 | xargs -0 sed -i "s:$myDirPath \. 'lib/PHPLIB.php':'/usr/share/pear/HTML/Template/PHPLIB.php':" mv example-* docs/ mv examples-* docs/ mv demo.* docs/ iconv -f iso8859-1 -t utf-8 ACKNOWLEDGEMENTS > ACKNOWLEDGEMENTS.conv && mv -f ACKNOWLEDGEMENTS.conv ACKNOWLEDGEMENTS mv ACKNOWLEDGEMENTS README.PHPDOC TODO docs/ mv README.fedora LICENSE COPYING CHANGELOG README.ihtml docs/ %build %install rm -rf $RPM_BUILD_ROOT install -p -d $RPM_BUILD_ROOT%{_datadir}/php/%{name} cp -r * $RPM_BUILD_ROOT%{_datadir}/php/%{name} rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/docs rm -rf $RPM_BUILD_ROOT%{_datadir}/php/%{name}/THEMES %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc docs/ %{_datadir}/php/%{name} %changelog * Mon Jul 27 2009 Andrew Colin Kissa - 3.2.0-0.2.rc - Change the install dir to meet packaging guidelines - Correct the licence tag - Unbundle PHPLIB.php * Thu Jul 23 2009 Andrew Colin Kissa - 3.2.0-0.1.rc - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:56:00 -0000 1.1 +++ .cvsignore 29 Jul 2009 07:54:32 -0000 1.2 @@ -0,0 +1 @@ +phplayersmenu-3.2.0-rc.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-layers-menu/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:56:00 -0000 1.1 +++ sources 29 Jul 2009 07:54:32 -0000 1.2 @@ -0,0 +1 @@ +e68cc6d3219228df9fca60c05e6d7d9f phplayersmenu-3.2.0-rc.tar.gz From jgranado at fedoraproject.org Wed Jul 29 08:04:51 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Wed, 29 Jul 2009 08:04:51 +0000 (UTC) Subject: rpms/parted/devel parted.spec,1.142,1.143 Message-ID: <20090729080451.A320B11C00CE@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13341 Modified Files: parted.spec Log Message: New version. Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- parted.spec 27 Jul 2009 17:03:49 -0000 1.142 +++ parted.spec 29 Jul 2009 08:04:50 -0000 1.143 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -129,7 +129,10 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Mon Jul 27 2009 Joel Granados - 1.9.0-8 +* Wed Jul 29 2009 Joel Granados - 1.9.0-9 +- Add parenthesis where needed (#511907) + +* Mon Jul 27 2009 Joel Granados - 1.9.0-8 - Add the swap flag to the dos type labels * Sat Jul 25 2009 Fedora Release Engineering - 1.9.0-7 From pkgdb at fedoraproject.org Wed Jul 29 08:06:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:06:22 +0000 Subject: [pkgdb] surfraw ownership updated Message-ID: <20090729080622.7BDF310F897@bastion2.fedora.phx.redhat.com> Package surfraw in Fedora devel is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surfraw From markmc at fedoraproject.org Wed Jul 29 08:09:47 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Wed, 29 Jul 2009 08:09:47 +0000 (UTC) Subject: rpms/libvirt/devel libvirt-convert-news-to-utf8.patch, NONE, 1.1 libvirt.spec, 1.155, 1.156 Message-ID: <20090729080947.4D64111C00CE@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14427 Modified Files: libvirt.spec Added Files: libvirt-convert-news-to-utf8.patch Log Message: * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.4.gitf055724 - Drop explicit libselinux requires, it is autorequired - Drop cleanup of python/tests, apparently not needed - Cherry-pick upstream patch to convert NEWS to UTF-8, drop iconv - Drop python BR; python-devel requires it libvirt-convert-news-to-utf8.patch: NEWS | 70 +++++++++++++++++++++++++++++----------------------------- docs/news.xsl | 3 -- 2 files changed, 36 insertions(+), 37 deletions(-) --- NEW FILE libvirt-convert-news-to-utf8.patch --- >From 50f5a6c7ab7795fb6ade4bb24849fa2bab5084dd Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Wed, 29 Jul 2009 08:40:17 +0100 Subject: [PATCH] Convert NEWS to UTF-8 * docs/news.xsl: request UTF-8 as the output encoding * NEWS: re-generate with UTF-8 encoding --- NEWS | 70 ++++++++++++++++++++++++++++---------------------------- docs/news.xsl | 2 +- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/NEWS b/NEWS index 447d2b4..0a838b9 100644 --- a/NEWS +++ b/NEWS @@ -137,7 +137,7 @@ - Improvements: add SCSI storage rescan (David Allan), rootless LXC containers support improvements (Serge Hallyn), getHostname support for LXC (Dan Smith), cleanup and logging output of some - domain functions (Guido G?nther), drop pool lock when allocating + domain functions (Guido G??nther), drop pool lock when allocating volumes (Cole Robinson), LXC handle kernel without CLONE_NEWUSER support (Serge Hallyn), cpu pinning on defined Xen domains (Takahashi Tomohiro), dynamic bridge names support (Soren Hansen), LXC use @@ -145,7 +145,7 @@ virNodeDeviceCreateXML and virNodeDeviceDestroy entry points (Dave Allan) - Cleanups: don't hardcode getgrnam_r buffer to 1024 bytes (Guido - G?nther), qemudBuildCommandLine API cleanup (Daniel Berrange), + G??nther), qemudBuildCommandLine API cleanup (Daniel Berrange), @@ -214,15 +214,15 @@ to avoid crashes (Daniel Berrange), mark defined network descriptions as persistent (Cole Robinson), qemu+tls handshake negotiation hang (Chris Lalancette) - - Improvements: don't hardcode ssh port (Guido G?nther), new test + - Improvements: don't hardcode ssh port (Guido G??nther), new test cases and testing infrastructure (Jim Meyering), improve the SExpr parser (John Levon), proper error reporting on xend shutdown command (John Levon), proper handling of errors when - saving QEmu domains state (Guido G?nther), revamp of the internal + saving QEmu domains state (Guido G??nther), revamp of the internal error memory APIs (John Levon), better virsh error reporting (John Levon), more daemon options to allow running multiple daemons (Jim - Meyering), error handling when creating a QEmu domain (Guido G?nther), - fix timeouts in QEmu log reading (Guido G?nther), migration with + Meyering), error handling when creating a QEmu domain (Guido G??nther), + fix timeouts in QEmu log reading (Guido G??nther), migration with xend 3.3 fixes (John Levon), virsh XML dump flags cleanup (Cole Robinson), fix build with loadable drivers (Maximilian Wilhelm), internal XML APIs to read long long and hexa values (Mark @@ -236,7 +236,7 @@ (Jim Meyering), many error handling cleanups (Jim Meyering), XML module cleanups (Mark McLoughlin), compiler warning (Maximilian Wilhelm), daemon TCP listen cleanup (Cole Robinson), size_t type - cleanup (Guido G?nther), parallel make fix (Michael Marineau), + cleanup (Guido G??nther), parallel make fix (Michael Marineau), storage error diagnostic fix (Ryota Ozaki), remove redundant monitor watch variable (Cole Robinson), qemu AttachDevice error report improvement (Cole Robinson), virsh output cleanup (Jim Meyering), @@ -248,7 +248,7 @@ 0.6.0: Jan 31 2009: - New features: thread safety of the API and event handling (Daniel Berrange), allow QEmu domains to survive daemon restart (Guido - G?nther), extended logging capabilities, support copy-on-write + G??nther), extended logging capabilities, support copy-on-write storage volumes (Daniel Berrange), support of storage cache control options for QEmu/KVM (Daniel Berrange) - Portability: fix old DBus API problem, Debian portability fix @@ -260,13 +260,13 @@ solaris Xen fixes (John Levon), RPC portability to Solaris (Daniel Berrange) - Documentation: typo fixes (Richard Jones), logging support, - vnc keymap attributes (Guido G?nther), HACKING file updates + vnc keymap attributes (Guido G??nther), HACKING file updates (Jim Meyering), new PCI passthrough format, libvirt-qpid and UML driver documentation (Daniel Berrange), provide RNG schemas for all XML formats used in libvirt APIs (Daniel Berrange), - Bug fixes: segfault on virtual network without bridge name (Cole Robinson), various locking fixes (Cole Robinson), fix serial - and parallel devices on tcp/unix/telnet (Guido G?nther), leak + and parallel devices on tcp/unix/telnet (Guido G??nther), leak in daemon (Jim Meyering), storage driver segfault (Miloslav TrmaC), missing check in read-only connections (Daniel Berrange), OpenVZ crash and mutex fixes (Anton Protopopov), couple of @@ -282,15 +282,15 @@ - Improvements: driver infrastructure and locking (Daniel Berrange), Test driver infrastructure (Daniel Berrange), parallelism in the daemon and associated config (Daniel Berrange), virsh help cleanups - (Jim Meyering), logrotate daemon logs (Guido G?nther), more + (Jim Meyering), logrotate daemon logs (Guido G??nther), more regression tests (Jim Meyering), QEmu SDL graphics (Itamar Heim), add --version flag to daemon (Dave Allan), memory consumption cleanup (Dave Allan), QEmu pid file and XML states for daemon - restart (Guido G?nther), gnulib updates (Jim Meyering and + restart (Guido G??nther), gnulib updates (Jim Meyering and Dan Berrange), PCI passthrough for KVM (Jason Krieg), generic internal thread API (Daniel Berrange), RHEL-5 specific Xen configure option and code (Markus Armbruster), save domain - state as string in status file (Guido G?nther), add locking + state as string in status file (Guido G??nther), add locking to all API entry points (Daniel Berrange), new ref counting APIs (Daniel Berrange), IP address for Xen bridges (John Levon), driver format for disk file types (Daniel Berrange), improve @@ -303,15 +303,15 @@ (Jim Meyering), gethostby* cleanup and test (Jim Meyering), some code fixes (Dave Allan), various code cleanup (Jim Meyering), virsh argument handling cleanup (Jim Meyering), virAsprintf - cleanup replacement (Guido G?nther), QEmu monitor reads (Cole - Robinson), Makefile cleanups (Guido G?nther), Xen code cleanups + cleanup replacement (Guido G??nther), QEmu monitor reads (Cole + Robinson), Makefile cleanups (Guido G??nther), Xen code cleanups (John Levon), revamp of ELF export scripts (John Levon), domain event callback args (John Levon), enforce use of pid_t (John Levon), virsh pool-*-as XML code merge (Cole Robinson), xgettext warnings - (Jim Meyering), add virKillProcess (Guido G?nther), add + (Jim Meyering), add virKillProcess (Guido G??nther), add virGetHostname (David Lutterkort), add flags argument to the full - XML parsing stack (Guido G?nther), various daemon code cleanups - (Guido G?nther), handling of daemon missing config file (Jim + XML parsing stack (Guido G??nther), various daemon code cleanups + (Guido G??nther), handling of daemon missing config file (Jim Meyering), rpcgen invocation cleanup (Richard Jones), devhelp builkd makefile cleanups (John Levon), update error handling for threading (Daniel Berrange), remove all non-rentrant POSIX calls @@ -331,7 +331,7 @@ - Bug fixes: add a delay in storage backend for disks to show up (Chris Lalancette), fix parsing for CDRom device with no source (Daniel Berrange), use xenstore to list domains to avoid some - bugs (Guido G?nther), remove a leak in xen inotify code (Daniel + bugs (Guido G??nther), remove a leak in xen inotify code (Daniel Berrange), UML driver freeing of uninitialialized variable (Ron Yorston), fix UML inotify code (Daniel Berrange), crash when adding storage without a format (Cole Robinson) @@ -339,8 +339,8 @@ max memory (Jim Fehlig), allow remote://hostname/ URI for automatic probe of hypervisors (Daniel Berrange), fix daemon configuration regression testing (Jim Meyering ), check /usr/bin/kvm for QEmu - driver init (Guido G?nther), proper active vs. inactive - differentiation (Guido G?nther), improve MTU setting on tap + driver init (Guido G??nther), proper active vs. inactive + differentiation (Guido G??nther), improve MTU setting on tap interfaces (Eduardo Habkost), increase timeout for initial QEmu monitor poll (Cole Robinson) - Cleanups:fix improper initialisations (Jim Meyering) @@ -350,9 +350,9 @@ - New features: CPU and scheduler support for LXC (Dan Smith), SDL display configuration (Daniel Berrange), domain lifecycle event support for QEmu and Xen with python bindings (Ben Guthro and Daniel Berrange), KVM/QEmu migration support (Rich Jones and Chris Lalancette), User Mode Linux driver (Daniel Berrange), API for node device enumeration using HAL and DeviceKit with python bindings (David Lively), - Portability: RHEL build fixes, VPATH build (Guido Gunther), many MinGW related cleanups and fixes (Richard Jones), compilation without libvirtd (Richard Jones), Add a Windows icon (Richard Jones), sys/poll.h portability fixes (Daniel Berrange), gnulib and mingw cleanups (Jim Meyering), - Documentation: virsh man page cleanups (Mark McLoughlin), doc for NIC model selection (Richard Jones), monitoring section, link to AMQP bindings, inew APIs, UML driver docs (Daniel Berrange), - - Bug fixes: Xen interfaces ordering (Jim Fehlig), startup timeout with multiple pty (Cole Robinson), segfault if QEmu without active virtual network (Cole Robinson), qemu small leak (Eduardo Habkost), index creation for more than 26 disks (Sanjay Rao and Chris Wright), virRealloc handling of 0 (Daniel Berrange), missing pointer initialization (Chris Lalancette), bus device index bug (Guido G?nther), avoid crash in some error patch (Chris Lalancette), fix a problem in storage back-end (Chris Lalancette), minimum domain memory size check for Xen (Shigeki Sakamoto), switch off QEmu cache if device is shared (Charles Duffy), logical volume definition before scan bug (Chris Lalancette), a couple of memory leaks on QEmu vnc (Jim Meyering), lvs parsing fixes (Cole Robinson), - - Improvements: LXC resources control and internal cgroup API (Dan Smith), virDomainCreateLinux renamed virDomainDefineXML, network driver modularization (Daniel Berrange), change the way domain and net are reported in errors (Jim Meyering), partition table scan on iSCSI (Chris Lalancette), qemudDiskDeviceName to handle normal disks (Guido G?nther), qemudDomainBlockStats improvement (Guido G?nther), scsi/virtio hotplug support for KVM (Guido G?nther), USB hot addition in QEmu (Guido G?nther), logical pool and storage backend XML dump improvement (Chris Lalancette), MAC addresses prefix per driver (Daniel Berrange), OpenVZ getVersion support (Daniel Berrange), hot removal of scsi/virtio disks for KVM (Guido G?nther), test storage driver (Cole Robinson), iSCSI and disk storage driver improvement on path handling (Chris Lalancette), UUID and ID support for Xenner (Daniel Berrange), better logging when when executing commands (Cole Robinson), bridged network for OpenVZ (Danie l Berrange), OpenVZ config file params (Evgeniy Sokolov), allow to build drivers as libtool convenience libs (Daniel Berrange), fully versioned linker script for exported ABI (Daniel Berrange), Push URI probing down into drivers open (Daniel Berrange), move all stateful drivers into the daemon binary (Daniel Berrange), improve domain event with a detail field (Daniel Berrange), domain events for QEMU driver (Daniel Berrange), event unregister callback crash (David Lively), plug a few leaks (Daniel Berrange), internal APIs for handling node device XML config (David Lively), tweaks to node device implementation (Daniel Berrange), OpenVZ vCPUs values init (Evgeniy Sokolov) - - Cleanups: C99 initializers (Guido Gunther), test output (Cole Robinson), debug macro centralization (Cole Robinson), various error handling (Guido G?nther), safewrite use cleanup (Jim Meyering), centralize error reporting logic (Cole Robinson), avoid printf warnings (Daniel Berrange), use arrays instead of list for internal APIs (Daniel Berrange), remove many format string warnings Jim Meyering), avoid syntax check warnings (Chris Lalancette), improve po-check and list generation (Jim Meyering), .gitignore generation and handling (Jim Meyering), use ARRAY_CARDINALITY (Jim Meyering), gnulib updates and switch to use netdb.h (Jim Meyering), drop usage of socket_errno (Jim Meyering), remove socketcompat.h (Jim Meyering), more tests (Jim Meyering), drop virStringList (Daniel Berrange), reformatting and isolation of the error APIs (Daniel Berrange), cleanup internal.h and move internal APIs in specific headers (Daniel Berrange), move domain events helpers into domain_events. c (Daniel Berrange), cleanup the way optional modules are compiled (Daniel Berrange), add new logging module, optional dlopen of drivers (Daniel Berrange), various new tests (Jim Meyering), cleanups when Xen is not configured in (Daniel Berrange), add some missing functions comments (Jim Meyering), + - Bug fixes: Xen interfaces ordering (Jim Fehlig), startup timeout with multiple pty (Cole Robinson), segfault if QEmu without active virtual network (Cole Robinson), qemu small leak (Eduardo Habkost), index creation for more than 26 disks (Sanjay Rao and Chris Wright), virRealloc handling of 0 (Daniel Berrange), missing pointer initialization (Chris Lalancette), bus device index bug (Guido G??nther), avoid crash in some error patch (Chris Lalancette), fix a problem in storage back-end (Chris Lalancette), minimum domain memory size check for Xen (Shigeki Sakamoto), switch off QEmu cache if device is shared (Charles Duffy), logical volume definition before scan bug (Chris Lalancette), a couple of memory leaks on QEmu vnc (Jim Meyering), lvs parsing fixes (Cole Robinson), + - Improvements: LXC resources control and internal cgroup API (Dan Smith), virDomainCreateLinux renamed virDomainDefineXML, network driver modularization (Daniel Berrange), change the way domain and net are reported in errors (Jim Meyering), partition table scan on iSCSI (Chris Lalancette), qemudDiskDeviceName to handle normal disks (Guido G??nther), qemudDomainBlockStats improvement (Guido G??nther), scsi/virtio hotplug support for KVM (Guido G??nther), USB hot addition in QEmu (Guido G??nther), logical pool and storage backend XML dump improvement (Chris Lalancette), MAC addresses prefix per driver (Daniel Berrange), OpenVZ getVersion support (Daniel Berrange), hot removal of scsi/virtio disks for KVM (Guido G??nther), test storage driver (Cole Robinson), iSCSI and disk storage driver improvement on path handling (Chris Lalancette), UUID and ID support for Xenner (Daniel Berrange), better logging when when executing commands (Cole Robinson), bridged network for OpenVZ ( Daniel Berrange), OpenVZ config file params (Evgeniy Sokolov), allow to build drivers as libtool convenience libs (Daniel Berrange), fully versioned linker script for exported ABI (Daniel Berrange), Push URI probing down into drivers open (Daniel Berrange), move all stateful drivers into the daemon binary (Daniel Berrange), improve domain event with a detail field (Daniel Berrange), domain events for QEMU driver (Daniel Berrange), event unregister callback crash (David Lively), plug a few leaks (Daniel Berrange), internal APIs for handling node device XML config (David Lively), tweaks to node device implementation (Daniel Berrange), OpenVZ vCPUs values init (Evgeniy Sokolov) + - Cleanups: C99 initializers (Guido Gunther), test output (Cole Robinson), debug macro centralization (Cole Robinson), various error handling (Guido G??nther), safewrite use cleanup (Jim Meyering), centralize error reporting logic (Cole Robinson), avoid printf warnings (Daniel Berrange), use arrays instead of list for internal APIs (Daniel Berrange), remove many format string warnings Jim Meyering), avoid syntax check warnings (Chris Lalancette), improve po-check and list generation (Jim Meyering), .gitignore generation and handling (Jim Meyering), use ARRAY_CARDINALITY (Jim Meyering), gnulib updates and switch to use netdb.h (Jim Meyering), drop usage of socket_errno (Jim Meyering), remove socketcompat.h (Jim Meyering), more tests (Jim Meyering), drop virStringList (Daniel Berrange), reformatting and isolation of the error APIs (Daniel Berrange), cleanup internal.h and move internal APIs in specific headers (Daniel Berrange), move domain events helpers into domain_events .c (Daniel Berrange), cleanup the way optional modules are compiled (Daniel Berrange), add new logging module, optional dlopen of drivers (Daniel Berrange), various new tests (Jim Meyering), cleanups when Xen is not configured in (Daniel Berrange), add some missing functions comments (Jim Meyering), 0.4.6: Sep 23 2008: @@ -364,7 +364,7 @@ OpenVZ (Evgeniy Sokolov), fix parsing of pool without a source (Chris Lalancette and Daniel Berrange) - Improvements: add storage disk volume delete (Cole Robinson), - KVM dynamic max CPU detection (Guido G?nther), spec file improvement + KVM dynamic max CPU detection (Guido G??nther), spec file improvement for minimal builds (Ben Guthro), improved error message in XM configuration module (Richard Jones), network config in OpenVZ support (Evgeniy Sokolov), enable stopping a pool in logical @@ -379,7 +379,7 @@ unified XML domain and network parsing for all drivers (Daniel Berrange), OpenVZ features improvements (Evgeniy Sokolov), OpenVZ and Linux containers support now default, USB device - passthrough for QEmu/KVM (Guido G?nther), storage pool source + passthrough for QEmu/KVM (Guido G??nther), storage pool source discovery (David Lively) - Portability: fixes for MinGW (Atsushi SAKAI and Daniel Berrange), detection of xen lib improvement (David Lively), @@ -389,9 +389,9 @@ SAKAI and Daniel Berrange), HTML generation fix, -lpthread explicit linking when needed (Jim Meyering) - Documentation: various typo fixes (Anton Protopopov, Toth - Istv?n, Atsushi SAKAI, Nguyen Anh Quynh), + Istv??n, Atsushi SAKAI, Nguyen Anh Quynh), Java bindings docs, remove Xen centric - comments (Guido G?nther), various typo in comments (Chris + comments (Guido G??nther), various typo in comments (Chris Lalancette), docs and API comments fixes (Charles Duffy), how to contribute to open source link (Richard Jones), memory unit fixups (matthew chan) @@ -401,14 +401,14 @@ in QEmu/KVM (Daniel Berrange), fix OpenVZ probe function (Evgeniy Sokolov), ID related lookup fixes in OpenVZ (Evgeniy Sokolov), pool cration for netfs (Cole Robinson), check for migrate support - with QEmu (Guido G?nther), check against double create with QEmu - (Guido G?nther), broken open failure detection in QEmu (Guido - G?nther), UUID string conversions in QEmu (Guido G?nther), + with QEmu (Guido G??nther), check against double create with QEmu + (Guido G??nther), broken open failure detection in QEmu (Guido + G??nther), UUID string conversions in QEmu (Guido G??nther), various small cleanup and bug fixes (Daniel Berrange), ID related fixes in the test driver (Daniel Berrange), better error reporting on XML parsing (Daniel Berrange), empty CD-ROM source device section (Chris Lalancette), avoid crashes for interface - without a name in QEmu (Guido G?nther), provide the real + without a name in QEmu (Guido G??nther), provide the real vncport (Charles Duffy), fix forward delay (Daniel Berrange), new VM state is initialized to be SHUTOFF (Daniel Berrange), virsh attach-disk bug fixes (Chris Lalancette), veth clash @@ -440,7 +440,7 @@ (Daniel Berrange), virsh "edit" command (Richard Jones), save UUID of OpenVZ domains (Evgeniy Sokolov), improve xen blocks statistics (Chris Lalancette), gnulib updates (Jim Meyering), - allow to add disk as USB devices (Guido G?nther), LXC container + allow to add disk as USB devices (Guido G??nther), LXC container process should survive libvirtd restarts (Daniel Berrange), allow to define static host domain configs, number of CPU used by OpenVZ domains (Evgeniy Sokolov), private root fs for LXC (Daniel @@ -572,9 +572,9 @@ driver (Cole Robinson), xen and hvm added to test driver capabilities (Cole Robinson) - Code cleanup: remove unused getopt header (Jim Meyering), mark more - strings as translatable (Guido G?nther and Jim Meyering), convert + strings as translatable (Guido G??nther and Jim Meyering), convert error strings to something meaningful and translatable (Jim Meyering), - Linux Containers code cleanup, last error initializer (Guido G?nther) + Linux Containers code cleanup, last error initializer (Guido G??nther) 0.4.1: Mar 3 2008: diff --git a/docs/news.xsl b/docs/news.xsl index a190120..e35030e 100644 --- a/docs/news.xsl +++ b/docs/news.xsl @@ -1,7 +1,7 @@ - + -- 1.6.2.5 Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.155 retrieving revision 1.156 diff -u -p -r1.155 -r1.156 --- libvirt.spec 28 Jul 2009 18:13:09 -0000 1.155 +++ libvirt.spec 29 Jul 2009 08:09:45 -0000 1.156 @@ -76,18 +76,20 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.3.gitf055724%{?dist}%{?extra_release} +Release: 0.4.gitf055724%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.1.gitf055724.tar.gz +Patch01: libvirt-convert-news-to-utf8.patch + # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) Patch200: libvirt-0.6.4-svirt-sound.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://libvirt.org/ -BuildRequires: python python-devel +BuildRequires: python-devel # The client side, i.e. shared libs and virsh are in a subpackage Requires: libvirt-client = %{version}-%{release} @@ -130,8 +132,6 @@ Requires: iscsi-initiator-utils # For disk driver Requires: parted %endif -# For svirt support -Requires: libselinux %if %{with_xen} BuildRequires: xen-devel %endif @@ -252,10 +252,9 @@ of recent versions of Linux (and other O %prep %setup -q -%patch200 -p0 +%patch01 -p1 -mv NEWS NEWS.old -iconv -f ISO-8859-1 -t UTF-8 < NEWS.old > NEWS +%patch200 -p0 %build %if ! %{with_xen} @@ -383,8 +382,6 @@ rm -fr %{buildroot} (cd docs/examples/python ; rm -rf .deps Makefile Makefile.in) (cd examples/hellolibvirt ; make clean ; rm -rf .deps .libs Makefile Makefile.in) (cd examples/domain-events/events-c ; make clean ;rm -rf .deps .libs Makefile Makefile.in) -(cd python/tests ; rm -f *.py?) - rm -f $RPM_BUILD_ROOT%{_libdir}/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/*.a rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la @@ -604,6 +601,12 @@ fi %endif %changelog +* Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.4.gitf055724 +- Drop explicit libselinux requires, it is autorequired +- Drop cleanup of python/tests, apparently not needed +- Cherry-pick upstream patch to convert NEWS to UTF-8, drop iconv +- Drop python BR; python-devel requires it + * Tue Jul 28 2009 Mark McLoughlin - 0.7.0-0.3.gitf055724 - Enable netcf support - Pass --with-qemu-user=qemu etc. to configure From corsepiu at fedoraproject.org Wed Jul 29 08:10:11 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 08:10:11 +0000 (UTC) Subject: rpms/perl-Data-ICal/devel Data-ICal-0.16.diff, NONE, 1.1 .cvsignore, 1.3, 1.4 perl-Data-ICal.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090729081011.1936E11C04D6@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Data-ICal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14606 Modified Files: .cvsignore perl-Data-ICal.spec sources Added Files: Data-ICal-0.16.diff Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 - Upstream update. - Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. Data-ICal-0.16.diff: AutoInstall.pm | 341 ++++++++++++++++++++++++++++++++++++++++++---- Install.pm | 7 Install/Admin.pm | 294 +++++++++++++++++++++++++++++++++++++++ Install/Admin/Bundle.pm | 73 +++++++++ Install/Admin/Compiler.pm | 27 +++ Install/Admin/Find.pm | 77 ++++++++++ Install/Admin/Include.pm | 147 +++++++++++++++++++ Install/Admin/Makefile.pm | 53 +++++++ Install/Admin/Manifest.pm | 162 +++++++++++++++++++++ Install/Admin/Metadata.pm | 185 ++++++++++++++++++++++++ Install/Admin/ScanDeps.pm | 80 ++++++++++ Install/Admin/WriteAll.pm | 20 ++ Install/AutoInstall.pm | 9 - Install/Base.pm | 116 ++++++++++++--- Install/Bundle.pm | 195 ++++++++++++++++++++++++++ Install/Can.pm | 93 +++++++++++- Install/Compiler.pm | 123 ++++++++++++++++ Install/DSL.pm | 91 ++++++++++++ Install/Deprecated.pm | 115 +++++++++++++++ Install/External.pm | 138 ++++++++++++++++++ Install/Fetch.pm | 9 - Install/Include.pm | 9 - Install/Inline.pm | 49 ++++++ Install/MakeMaker.pm | 49 ++++++ Install/Makefile.pm | 140 +++++++++++++++++- Install/Metadata.pm | 105 +++++++++----- Install/PAR.pm | 274 ++++++++++++++++++++++++++++++++++++ Install/Philosophy.pod | 187 +++++++++++++++++++++++++ Install/Run.pm | 15 ++ Install/Scripts.pm | 28 +++ Install/Share.pm | 125 ++++++++++++++++ Install/Win32.pm | 7 Install/With.pm | 159 +++++++++++++++++++++ Install/WriteAll.pm | 19 +- 34 files changed, 3395 insertions(+), 126 deletions(-) --- NEW FILE Data-ICal-0.16.diff --- diff -Naur Data-ICal-0.16.orig/inc/Module/AutoInstall.pm Data-ICal-0.16/inc/Module/AutoInstall.pm --- Data-ICal-0.16.orig/inc/Module/AutoInstall.pm 2009-07-10 16:52:29.000000000 +0200 +++ Data-ICal-0.16/inc/Module/AutoInstall.pm 2009-07-29 09:44:08.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::AutoInstall; use strict; @@ -18,7 +17,9 @@ # various lexical flags my ( @Missing, @Existing, %DisabledTests, $UnderCPAN, $HasCPANPLUS ); -my ( $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly ); +my ( + $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly, $AllDeps +); my ( $PostambleActions, $PostambleUsed ); # See if it's a testing or non-interactive session @@ -73,6 +74,9 @@ elsif ( $arg =~ /^--test(?:only)?$/ ) { $TestOnly = 1; } + elsif ( $arg =~ /^--all(?:deps)?$/ ) { + $AllDeps = 1; + } } } @@ -115,7 +119,12 @@ )[0] ); - $UnderCPAN = _check_lock(1); # check for $UnderCPAN + # We want to know if we're under CPAN early to avoid prompting, but + # if we aren't going to try and install anything anyway then skip the + # check entirely since we don't want to have to load (and configure) + # an old CPAN just for a cosmetic message + + $UnderCPAN = _check_lock(1) unless $SkipInstall; while ( my ( $feature, $modules ) = splice( @args, 0, 2 ) ) { my ( @required, @tests, @skiptests ); @@ -165,15 +174,24 @@ } # XXX: check for conflicts and uninstalls(!) them. - if ( - defined( my $cur = _version_check( _load($mod), $arg ||= 0 ) ) ) + my $cur = _load($mod); + if (_version_cmp ($cur, $arg) >= 0) { print "loaded. ($cur" . ( $arg ? " >= $arg" : '' ) . ")\n"; push @Existing, $mod => $arg; $DisabledTests{$_} = 1 for map { glob($_) } @skiptests; } else { - print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + if (not defined $cur) # indeed missing + { + print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + } + else + { + # no need to check $arg as _version_cmp ($cur, undef) would satisfy >= above + print "too old. ($cur < $arg)\n"; + } + push @required, $mod => $arg; } } @@ -187,6 +205,7 @@ and ( $CheckOnly or ($mandatory and $UnderCPAN) + or $AllDeps or _prompt( qq{==> Auto-install the } . ( @required / 2 ) @@ -235,21 +254,38 @@ *{'main::WriteMakefile'} = \&Write if caller(0) eq 'main'; } +sub _running_under { + my $thing = shift; + print <<"END_MESSAGE"; +*** Since we're running under ${thing}, I'll just let it take care + of the dependency's installation later. +END_MESSAGE + return 1; +} + # Check to see if we are currently running under CPAN.pm and/or CPANPLUS; # if we are, then we simply let it taking care of our dependencies sub _check_lock { return unless @Missing or @_; + my $cpan_env = $ENV{PERL5_CPAN_IS_RUNNING}; + if ($ENV{PERL5_CPANPLUS_IS_RUNNING}) { - print <<'END_MESSAGE'; + return _running_under($cpan_env ? 'CPAN' : 'CPANPLUS'); + } -*** Since we're running under CPANPLUS, I'll just let it take care - of the dependency's installation later. -END_MESSAGE - return 1; + require CPAN; + + if ($CPAN::VERSION > '1.89') { + if ($cpan_env) { + return _running_under('CPAN'); + } + return; # CPAN.pm new enough, don't need to check further } - _load_cpan(); + # last ditch attempt, this -will- configure CPAN, very sorry + + _load_cpan(1); # force initialize even though it's already loaded # Find the CPAN lock-file my $lock = MM->catfile( $CPAN::Config->{cpan_home}, ".lock" ); @@ -285,7 +321,7 @@ while ( my ( $pkg, $ver ) = splice( @_, 0, 2 ) ) { # grep out those already installed - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } else { @@ -324,7 +360,7 @@ # see if we have successfully installed them while ( my ( $pkg, $ver ) = splice( @modules, 0, 2 ) ) { - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } elsif ( $args{do_once} and open( FAILED, '>> .#autoinstall.failed' ) ) { @@ -379,7 +415,7 @@ my $success; my $obj = $modtree->{$pkg}; - if ( $obj and defined( _version_check( $obj->{version}, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->{version}, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -472,7 +508,7 @@ my $obj = CPAN::Shell->expand( Module => $pkg ); my $success = 0; - if ( $obj and defined( _version_check( $obj->cpan_version, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->cpan_version, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -536,7 +572,7 @@ my $ver = shift; return - if defined( _version_check( _load($class), $ver ) ); # no need to upgrade + if _version_cmp( _load($class), $ver ) >= 0; # no need to upgrade if ( _prompt( "==> A newer version of $class ($ver) is required. Install?", @@ -633,7 +669,7 @@ # Load CPAN.pm and it's configuration sub _load_cpan { - return if $CPAN::VERSION; + return if $CPAN::VERSION and $CPAN::Config and not @_; require CPAN; if ( $CPAN::HandleConfig::VERSION ) { # Newer versions of CPAN have a HandleConfig module @@ -645,9 +681,11 @@ } # compare two versions, either use Sort::Versions or plain comparison -sub _version_check { +# return values same as <=> +sub _version_cmp { my ( $cur, $min ) = @_; - return unless defined $cur; + return -1 unless defined $cur; # if 0 keep comparing + return 1 unless $min; $cur =~ s/\s+$//; @@ -658,16 +696,13 @@ ) { # use version.pm if it is installed. - return ( - ( version->new($cur) >= version->new($min) ) ? $cur : undef ); + return version->new($cur) <=> version->new($min); [...3605 lines suppressed...] + + +##################################################################### +# Testing and Configuration Contexts + +=pod + +=head2 interactive + +The C function tests for an install that has a user present +(or at least, one in which it is reasonable for us to present prompts +and other similar types of things). + +Returns true if in an interactive environment, or false otherwise. + +=cut + +sub interactive { + # Treat things interactively ONLY based on input + !! (-t STDIN and ! automated_testing()); +} + +=pod + +=head2 automated_testing + +Are we currently running in an automated testing environment, such as +CPAN Testers. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{AUTOMATED_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub automated_testing { + !! $ENV{AUTOMATED_TESTING}; +} + +=pod + +=head2 release_testing + +Are we currently running in an release testing environment. That is, +are we in the process of running in a potential highly-intensive and +high dependency bloat testing process prior to packaging a module for +release. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{RELEASE_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub release_testing { + !! $ENV{RELEASE_TESTING}; +} + +sub author_context { + !! $Module::Install::AUTHOR; +} + + + + + +##################################################################### +# Operating System Convenience + +=pod + +=head2 win32 + +The C function tests if the Makefile.PL is currently running in a +native Microsoft Windows Perl, such as ActivePerl or Strawberry Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32'> yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub win32 { + !! ($^O eq 'MSWin32'); +} + +=pod + +=head2 winlike + +The C function tests if the Makefile.PL is currently running +in a Microsoft Windows Perl, under either cygwin or a native Win32 Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32' or $^O eq 'cygwin'>yourself, but may be +improved in line with best practices at a later date. + +=cut + +sub winlike { + !! ($^O eq 'MSWin32' or $^O eq 'cygwin'); +} + +1; + +=pod + +=head1 SEE ALSO + +L + +=head1 AUTHORS + +Adam Kennedy Eadamk at cpan.orgE + +=head1 COPYRIGHT + +Copyright 2007 - 2009 Adam Kennedy. + +This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +The full text of the license can be found in the +LICENSE file included with this module. + +=cut diff -Naur Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm Data-ICal-0.16/inc/Module/Install/WriteAll.pm --- Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm 2009-07-10 16:52:30.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install/WriteAll.pm 2009-05-27 18:46:13.000000000 +0200 @@ -1,12 +1,11 @@ -#line 1 package Module::Install::WriteAll; use strict; -use Module::Install::Base; +use Module::Install::Base (); use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '0.85'; + $VERSION = '0.91';; @ISA = qw{Module::Install::Base}; $ISCORE = 1; } @@ -41,8 +40,18 @@ # The Makefile write process adds a couple of dependencies, # so write the META.yml files after the Makefile. - $self->Meta->write if $args{meta}; - $self->Meta->write_mymeta if $self->mymeta; + if ( $args{meta} ) { + $self->Meta->write; + } + + # Experimental support for MYMETA + if ( $ENV{X_MYMETA} ) { + if ( $ENV{X_MYMETA} eq 'JSON' ) { + $self->Meta->write_mymeta_json; + } else { + $self->Meta->write_mymeta_yaml; + } + } return 1; } diff -Naur Data-ICal-0.16.orig/inc/Module/Install.pm Data-ICal-0.16/inc/Module/Install.pm --- Data-ICal-0.16.orig/inc/Module/Install.pm 2009-07-10 16:52:28.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install.pm 2009-07-29 09:44:13.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::Install; # For any maintainers: @@ -28,7 +27,7 @@ # This is not enforced yet, but will be some time in the next few # releases once we can make sure it won't clash with custom # Module::Install extensions. - $VERSION = '0.85'; + $VERSION = '0.91'; # Storage for the pseudo-singleton $MAIN = undef; @@ -353,7 +352,7 @@ if ( $] >= 5.006 ) { open( FH, '<', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "< $_[0]" ) or die "open($_[0]): $!"; + open( FH, "< $_[0]" ) or die "open($_[0]): $!"; } my $string = do { local $/; }; close FH or die "close($_[0]): $!"; @@ -384,7 +383,7 @@ if ( $] >= 5.006 ) { open( FH, '>', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "> $_[0]" ) or die "open($_[0]): $!"; + open( FH, "> $_[0]" ) or die "open($_[0]): $!"; } foreach ( 1 .. $#_ ) { print FH $_[$_] or die "print($_[0]): $!"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 3 Mar 2009 15:22:52 -0000 1.3 +++ .cvsignore 29 Jul 2009 08:10:10 -0000 1.4 @@ -1 +1 @@ -Data-ICal-0.15.tar.gz +Data-ICal-0.16.tar.gz Index: perl-Data-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/devel/perl-Data-ICal.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Data-ICal.spec 26 Jul 2009 05:29:11 -0000 1.6 +++ perl-Data-ICal.spec 29 Jul 2009 08:10:10 -0000 1.7 @@ -1,13 +1,19 @@ Name: perl-Data-ICal -Version: 0.15 -Release: 2%{?dist} +Version: 0.16 +Release: 1%{?dist} Summary: Generates iCalendar (RFC 2445) calendar files License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Data-ICal/ Source0: http://www.cpan.org/authors/id/A/AL/ALEXMV/Data-ICal-%{version}.tar.gz + +# inc/Module/Install* is broken, replace it with Module-Install-0.91 +Patch0: Data-ICal-%{version}.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch + +BuildRequires: perl(CPAN) perl(YAML::Tiny) perl(File::Remove) + BuildRequires: perl(Class::Accessor) BuildRequires: perl(Class::ReturnValue) BuildRequires: perl(ExtUtils::MakeMaker) @@ -32,9 +38,10 @@ many popular calendaring programs such a %prep %setup -q -n Data-ICal-%{version} +%patch0 -p1 %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__perl} Makefile.PL INSTALLDIRS=vendor --skipdeps make %{?_smp_mflags} %install @@ -60,6 +67,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 +- Upstream update. +- Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. + * Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Mar 2009 15:22:52 -0000 1.3 +++ sources 29 Jul 2009 08:10:10 -0000 1.4 @@ -1 +1 @@ -71c830a2da27163d770b5c17fcc11541 Data-ICal-0.15.tar.gz +12430864424a7bfe77e5d62a083f792c Data-ICal-0.16.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 08:21:51 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 08:21:51 +0000 (UTC) Subject: rpms/perl-Data-ICal/F-11 Data-ICal-0.16.diff, NONE, 1.1 .cvsignore, 1.3, 1.4 perl-Data-ICal.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090729082151.2D24811C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Data-ICal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17511 Modified Files: .cvsignore perl-Data-ICal.spec sources Added Files: Data-ICal-0.16.diff Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 - Upstream update. - Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. Data-ICal-0.16.diff: AutoInstall.pm | 341 ++++++++++++++++++++++++++++++++++++++++++---- Install.pm | 7 Install/Admin.pm | 294 +++++++++++++++++++++++++++++++++++++++ Install/Admin/Bundle.pm | 73 +++++++++ Install/Admin/Compiler.pm | 27 +++ Install/Admin/Find.pm | 77 ++++++++++ Install/Admin/Include.pm | 147 +++++++++++++++++++ Install/Admin/Makefile.pm | 53 +++++++ Install/Admin/Manifest.pm | 162 +++++++++++++++++++++ Install/Admin/Metadata.pm | 185 ++++++++++++++++++++++++ Install/Admin/ScanDeps.pm | 80 ++++++++++ Install/Admin/WriteAll.pm | 20 ++ Install/AutoInstall.pm | 9 - Install/Base.pm | 116 ++++++++++++--- Install/Bundle.pm | 195 ++++++++++++++++++++++++++ Install/Can.pm | 93 +++++++++++- Install/Compiler.pm | 123 ++++++++++++++++ Install/DSL.pm | 91 ++++++++++++ Install/Deprecated.pm | 115 +++++++++++++++ Install/External.pm | 138 ++++++++++++++++++ Install/Fetch.pm | 9 - Install/Include.pm | 9 - Install/Inline.pm | 49 ++++++ Install/MakeMaker.pm | 49 ++++++ Install/Makefile.pm | 140 +++++++++++++++++- Install/Metadata.pm | 105 +++++++++----- Install/PAR.pm | 274 ++++++++++++++++++++++++++++++++++++ Install/Philosophy.pod | 187 +++++++++++++++++++++++++ Install/Run.pm | 15 ++ Install/Scripts.pm | 28 +++ Install/Share.pm | 125 ++++++++++++++++ Install/Win32.pm | 7 Install/With.pm | 159 +++++++++++++++++++++ Install/WriteAll.pm | 19 +- 34 files changed, 3395 insertions(+), 126 deletions(-) --- NEW FILE Data-ICal-0.16.diff --- diff -Naur Data-ICal-0.16.orig/inc/Module/AutoInstall.pm Data-ICal-0.16/inc/Module/AutoInstall.pm --- Data-ICal-0.16.orig/inc/Module/AutoInstall.pm 2009-07-10 16:52:29.000000000 +0200 +++ Data-ICal-0.16/inc/Module/AutoInstall.pm 2009-07-29 09:44:08.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::AutoInstall; use strict; @@ -18,7 +17,9 @@ # various lexical flags my ( @Missing, @Existing, %DisabledTests, $UnderCPAN, $HasCPANPLUS ); -my ( $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly ); +my ( + $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly, $AllDeps +); my ( $PostambleActions, $PostambleUsed ); # See if it's a testing or non-interactive session @@ -73,6 +74,9 @@ elsif ( $arg =~ /^--test(?:only)?$/ ) { $TestOnly = 1; } + elsif ( $arg =~ /^--all(?:deps)?$/ ) { + $AllDeps = 1; + } } } @@ -115,7 +119,12 @@ )[0] ); - $UnderCPAN = _check_lock(1); # check for $UnderCPAN + # We want to know if we're under CPAN early to avoid prompting, but + # if we aren't going to try and install anything anyway then skip the + # check entirely since we don't want to have to load (and configure) + # an old CPAN just for a cosmetic message + + $UnderCPAN = _check_lock(1) unless $SkipInstall; while ( my ( $feature, $modules ) = splice( @args, 0, 2 ) ) { my ( @required, @tests, @skiptests ); @@ -165,15 +174,24 @@ } # XXX: check for conflicts and uninstalls(!) them. - if ( - defined( my $cur = _version_check( _load($mod), $arg ||= 0 ) ) ) + my $cur = _load($mod); + if (_version_cmp ($cur, $arg) >= 0) { print "loaded. ($cur" . ( $arg ? " >= $arg" : '' ) . ")\n"; push @Existing, $mod => $arg; $DisabledTests{$_} = 1 for map { glob($_) } @skiptests; } else { - print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + if (not defined $cur) # indeed missing + { + print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + } + else + { + # no need to check $arg as _version_cmp ($cur, undef) would satisfy >= above + print "too old. ($cur < $arg)\n"; + } + push @required, $mod => $arg; } } @@ -187,6 +205,7 @@ and ( $CheckOnly or ($mandatory and $UnderCPAN) + or $AllDeps or _prompt( qq{==> Auto-install the } . ( @required / 2 ) @@ -235,21 +254,38 @@ *{'main::WriteMakefile'} = \&Write if caller(0) eq 'main'; } +sub _running_under { + my $thing = shift; + print <<"END_MESSAGE"; +*** Since we're running under ${thing}, I'll just let it take care + of the dependency's installation later. +END_MESSAGE + return 1; +} + # Check to see if we are currently running under CPAN.pm and/or CPANPLUS; # if we are, then we simply let it taking care of our dependencies sub _check_lock { return unless @Missing or @_; + my $cpan_env = $ENV{PERL5_CPAN_IS_RUNNING}; + if ($ENV{PERL5_CPANPLUS_IS_RUNNING}) { - print <<'END_MESSAGE'; + return _running_under($cpan_env ? 'CPAN' : 'CPANPLUS'); + } -*** Since we're running under CPANPLUS, I'll just let it take care - of the dependency's installation later. -END_MESSAGE - return 1; + require CPAN; + + if ($CPAN::VERSION > '1.89') { + if ($cpan_env) { + return _running_under('CPAN'); + } + return; # CPAN.pm new enough, don't need to check further } - _load_cpan(); + # last ditch attempt, this -will- configure CPAN, very sorry + + _load_cpan(1); # force initialize even though it's already loaded # Find the CPAN lock-file my $lock = MM->catfile( $CPAN::Config->{cpan_home}, ".lock" ); @@ -285,7 +321,7 @@ while ( my ( $pkg, $ver ) = splice( @_, 0, 2 ) ) { # grep out those already installed - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } else { @@ -324,7 +360,7 @@ # see if we have successfully installed them while ( my ( $pkg, $ver ) = splice( @modules, 0, 2 ) ) { - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } elsif ( $args{do_once} and open( FAILED, '>> .#autoinstall.failed' ) ) { @@ -379,7 +415,7 @@ my $success; my $obj = $modtree->{$pkg}; - if ( $obj and defined( _version_check( $obj->{version}, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->{version}, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -472,7 +508,7 @@ my $obj = CPAN::Shell->expand( Module => $pkg ); my $success = 0; - if ( $obj and defined( _version_check( $obj->cpan_version, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->cpan_version, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -536,7 +572,7 @@ my $ver = shift; return - if defined( _version_check( _load($class), $ver ) ); # no need to upgrade + if _version_cmp( _load($class), $ver ) >= 0; # no need to upgrade if ( _prompt( "==> A newer version of $class ($ver) is required. Install?", @@ -633,7 +669,7 @@ # Load CPAN.pm and it's configuration sub _load_cpan { - return if $CPAN::VERSION; + return if $CPAN::VERSION and $CPAN::Config and not @_; require CPAN; if ( $CPAN::HandleConfig::VERSION ) { # Newer versions of CPAN have a HandleConfig module @@ -645,9 +681,11 @@ } # compare two versions, either use Sort::Versions or plain comparison -sub _version_check { +# return values same as <=> +sub _version_cmp { my ( $cur, $min ) = @_; - return unless defined $cur; + return -1 unless defined $cur; # if 0 keep comparing + return 1 unless $min; $cur =~ s/\s+$//; @@ -658,16 +696,13 @@ ) { # use version.pm if it is installed. - return ( - ( version->new($cur) >= version->new($min) ) ? $cur : undef ); + return version->new($cur) <=> version->new($min); [...3605 lines suppressed...] + + +##################################################################### +# Testing and Configuration Contexts + +=pod + +=head2 interactive + +The C function tests for an install that has a user present +(or at least, one in which it is reasonable for us to present prompts +and other similar types of things). + +Returns true if in an interactive environment, or false otherwise. + +=cut + +sub interactive { + # Treat things interactively ONLY based on input + !! (-t STDIN and ! automated_testing()); +} + +=pod + +=head2 automated_testing + +Are we currently running in an automated testing environment, such as +CPAN Testers. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{AUTOMATED_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub automated_testing { + !! $ENV{AUTOMATED_TESTING}; +} + +=pod + +=head2 release_testing + +Are we currently running in an release testing environment. That is, +are we in the process of running in a potential highly-intensive and +high dependency bloat testing process prior to packaging a module for +release. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{RELEASE_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub release_testing { + !! $ENV{RELEASE_TESTING}; +} + +sub author_context { + !! $Module::Install::AUTHOR; +} + + + + + +##################################################################### +# Operating System Convenience + +=pod + +=head2 win32 + +The C function tests if the Makefile.PL is currently running in a +native Microsoft Windows Perl, such as ActivePerl or Strawberry Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32'> yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub win32 { + !! ($^O eq 'MSWin32'); +} + +=pod + +=head2 winlike + +The C function tests if the Makefile.PL is currently running +in a Microsoft Windows Perl, under either cygwin or a native Win32 Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32' or $^O eq 'cygwin'>yourself, but may be +improved in line with best practices at a later date. + +=cut + +sub winlike { + !! ($^O eq 'MSWin32' or $^O eq 'cygwin'); +} + +1; + +=pod + +=head1 SEE ALSO + +L + +=head1 AUTHORS + +Adam Kennedy Eadamk at cpan.orgE + +=head1 COPYRIGHT + +Copyright 2007 - 2009 Adam Kennedy. + +This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +The full text of the license can be found in the +LICENSE file included with this module. + +=cut diff -Naur Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm Data-ICal-0.16/inc/Module/Install/WriteAll.pm --- Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm 2009-07-10 16:52:30.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install/WriteAll.pm 2009-05-27 18:46:13.000000000 +0200 @@ -1,12 +1,11 @@ -#line 1 package Module::Install::WriteAll; use strict; -use Module::Install::Base; +use Module::Install::Base (); use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '0.85'; + $VERSION = '0.91';; @ISA = qw{Module::Install::Base}; $ISCORE = 1; } @@ -41,8 +40,18 @@ # The Makefile write process adds a couple of dependencies, # so write the META.yml files after the Makefile. - $self->Meta->write if $args{meta}; - $self->Meta->write_mymeta if $self->mymeta; + if ( $args{meta} ) { + $self->Meta->write; + } + + # Experimental support for MYMETA + if ( $ENV{X_MYMETA} ) { + if ( $ENV{X_MYMETA} eq 'JSON' ) { + $self->Meta->write_mymeta_json; + } else { + $self->Meta->write_mymeta_yaml; + } + } return 1; } diff -Naur Data-ICal-0.16.orig/inc/Module/Install.pm Data-ICal-0.16/inc/Module/Install.pm --- Data-ICal-0.16.orig/inc/Module/Install.pm 2009-07-10 16:52:28.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install.pm 2009-07-29 09:44:13.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::Install; # For any maintainers: @@ -28,7 +27,7 @@ # This is not enforced yet, but will be some time in the next few # releases once we can make sure it won't clash with custom # Module::Install extensions. - $VERSION = '0.85'; + $VERSION = '0.91'; # Storage for the pseudo-singleton $MAIN = undef; @@ -353,7 +352,7 @@ if ( $] >= 5.006 ) { open( FH, '<', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "< $_[0]" ) or die "open($_[0]): $!"; + open( FH, "< $_[0]" ) or die "open($_[0]): $!"; } my $string = do { local $/; }; close FH or die "close($_[0]): $!"; @@ -384,7 +383,7 @@ if ( $] >= 5.006 ) { open( FH, '>', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "> $_[0]" ) or die "open($_[0]): $!"; + open( FH, "> $_[0]" ) or die "open($_[0]): $!"; } foreach ( 1 .. $#_ ) { print FH $_[$_] or die "print($_[0]): $!"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 3 Mar 2009 15:22:52 -0000 1.3 +++ .cvsignore 29 Jul 2009 08:21:50 -0000 1.4 @@ -1 +1 @@ -Data-ICal-0.15.tar.gz +Data-ICal-0.16.tar.gz Index: perl-Data-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-11/perl-Data-ICal.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Data-ICal.spec 3 Mar 2009 15:22:52 -0000 1.5 +++ perl-Data-ICal.spec 29 Jul 2009 08:21:50 -0000 1.6 @@ -1,13 +1,19 @@ Name: perl-Data-ICal -Version: 0.15 +Version: 0.16 Release: 1%{?dist} Summary: Generates iCalendar (RFC 2445) calendar files License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Data-ICal/ Source0: http://www.cpan.org/authors/id/A/AL/ALEXMV/Data-ICal-%{version}.tar.gz + +# inc/Module/Install* is broken, replace it with Module-Install-0.91 +Patch0: Data-ICal-%{version}.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch + +BuildRequires: perl(CPAN) perl(YAML::Tiny) perl(File::Remove) + BuildRequires: perl(Class::Accessor) BuildRequires: perl(Class::ReturnValue) BuildRequires: perl(ExtUtils::MakeMaker) @@ -32,9 +38,10 @@ many popular calendaring programs such a %prep %setup -q -n Data-ICal-%{version} +%patch0 -p1 %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__perl} Makefile.PL INSTALLDIRS=vendor --skipdeps make %{?_smp_mflags} %install @@ -60,6 +67,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 +- Upstream update. +- Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. + * Tue Mar 03 2009 Ralf Cors?pius - 0.15-1 - Upstream update. - Reflect upstream maintainer having changed. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Mar 2009 15:22:52 -0000 1.3 +++ sources 29 Jul 2009 08:21:50 -0000 1.4 @@ -1 +1 @@ -71c830a2da27163d770b5c17fcc11541 Data-ICal-0.15.tar.gz +12430864424a7bfe77e5d62a083f792c Data-ICal-0.16.tar.gz From rrakus at fedoraproject.org Wed Jul 29 08:25:18 2009 From: rrakus at fedoraproject.org (Roman Rakus) Date: Wed, 29 Jul 2009 08:25:18 +0000 (UTC) Subject: rpms/bash/devel bash40-025, NONE, 1.1 bash40-026, NONE, 1.1 bash40-027, NONE, 1.1 bash40-028, NONE, 1.1 bash.spec, 1.184, 1.185 Message-ID: <20090729082518.371B411C00CE@cvs1.fedora.phx.redhat.com> Author: rrakus Update of /cvs/extras/rpms/bash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18492 Modified Files: bash.spec Added Files: bash40-025 bash40-026 bash40-027 bash40-028 Log Message: Upstream patch level 28 --- NEW FILE bash40-025 --- BASH PATCH REPORT ================= Bash-Release: 4.0 Patch-ID: bash40-025 Bug-Reported-by: Matt Zyzik Bug-Reference-ID: <20090519011418.GA21431 at ice.filescope.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-05/msg00044.html Bug-Description: bash40-024 introduced a regression for constructs like **/*.cs; that expansion would no longer include matching files in the current directory. This patch undoes portions of bash40-024 and fixes the original problem in a different way. Patch: *** ../bash-4.0-patched/lib/glob/glob.c 2009-05-22 12:32:26.000000000 -0400 --- lib/glob/glob.c 2009-05-22 12:35:55.000000000 -0400 *************** *** 666,672 **** } ! /* compat: if GX_ALLDIRS, add the passed directory also, but don't add an ! empty directory name. */ ! if (add_current && (flags & GX_NULLDIR) == 0) { sdlen = strlen (dir); --- 666,673 ---- } ! /* compat: if GX_ADDCURDIR, add the passed directory also. Add an empty ! directory name as a placeholder if GX_NULLDIR (in which case the passed ! directory name is "."). */ ! if (add_current) { sdlen = strlen (dir); *************** *** 680,684 **** nextlink->next = lastlink; lastlink = nextlink; ! bcopy (dir, nextname, sdlen + 1); ++count; } --- 681,688 ---- nextlink->next = lastlink; lastlink = nextlink; ! if (flags & GX_NULLDIR) ! nextname[0] = '\0'; ! else ! bcopy (dir, nextname, sdlen + 1); ++count; } *************** *** 1008,1016 **** /* Just return what glob_vector () returns appended to the directory name. */ dflags = flags & ~GX_MARKDIRS; if (directory_len == 0) dflags |= GX_NULLDIR; if ((flags & GX_GLOBSTAR) && filename[0] == '*' && filename[1] == '*' && filename[2] == '\0') ! dflags |= GX_ALLDIRS|GX_ADDCURDIR; temp_results = glob_vector (filename, (directory_len == 0 ? "." : directory_name), --- 1012,1033 ---- /* Just return what glob_vector () returns appended to the directory name. */ + /* If flags & GX_ALLDIRS, we're called recursively */ dflags = flags & ~GX_MARKDIRS; if (directory_len == 0) dflags |= GX_NULLDIR; if ((flags & GX_GLOBSTAR) && filename[0] == '*' && filename[1] == '*' && filename[2] == '\0') ! { ! dflags |= GX_ALLDIRS|GX_ADDCURDIR; ! #if 0 ! /* If we want all directories (dflags & GX_ALLDIRS) and we're not ! being called recursively as something like `echo **/*.o' ! ((flags & GX_ALLDIRS) == 0), we want to prevent glob_vector from ! adding a null directory name to the front of the temp_results ! array. We turn off ADDCURDIR if not called recursively and ! dlen == 0 */ ! #endif ! if (directory_len == 0 && (flags & GX_ALLDIRS) == 0) ! dflags &= ~GX_ADDCURDIR; ! } temp_results = glob_vector (filename, (directory_len == 0 ? "." : directory_name), *** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500 --- patchlevel.h 2009-02-22 16:11:31.000000000 -0500 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 24 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 25 #endif /* _PATCHLEVEL_H_ */ --- NEW FILE bash40-026 --- BASH PATCH REPORT ================= Bash-Release: 4.0 Patch-ID: bash40-026 Bug-Reported-by: Sergei Steshenko Bug-Reference-ID: <670181.38883.qm at web35204.mail.mud.yahoo.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-05/msg00059.html Bug-Description: A forgotten line in externs.h caused compilation errors to occur on some systems (e.g., Cygwin). Patch: *** ../bash-4.0-patched/externs.h 2009-01-18 18:29:29.000000000 -0500 --- externs.h 2009-06-02 09:05:40.000000000 -0400 *************** *** 193,196 **** --- 193,198 ---- /* Declarations for functions defined in lib/sh/fpurge.c */ + + #if defined NEED_FPURGE_DECL #if !HAVE_DECL_FPURGE *************** *** 201,205 **** #endif /* HAVE_DECL_FPURGE */ ! /* Declarations for functions defined in lib/sh/getcwd.c */ --- 203,207 ---- #endif /* HAVE_DECL_FPURGE */ ! #endif /* NEED_FPURGE_DECL */ /* Declarations for functions defined in lib/sh/getcwd.c */ *** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500 --- patchlevel.h 2009-02-22 16:11:31.000000000 -0500 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 25 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 26 #endif /* _PATCHLEVEL_H_ */ --- NEW FILE bash40-027 --- BASH PATCH REPORT ================= Bash-Release: 4.0 Patch-ID: bash40-027 Bug-Reported-by: jim at jim.sh Bug-Reference-ID: <200905262140.n4QLeO4X030664 at psychosis.jim.sh> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-05/msg00074.html Bug-Description: There are occasional cursor positioning errors when using readline's horizontal scroll mode. Patch: *** ../bash-4.0-patched/lib/readline/display.c 2009-05-22 12:32:25.000000000 -0400 --- lib/readline/display.c 2009-05-29 23:32:20.000000000 -0400 *************** *** 1190,1196 **** line[t - 1] = '>'; ! if (!rl_display_fixed || forced_display || lmargin != last_lmargin) { forced_display = 0; update_line (&visible_line[last_lmargin], &invisible_line[lmargin], --- 1192,1200 ---- line[t - 1] = '>'; ! if (rl_display_fixed == 0 || forced_display || lmargin != last_lmargin) { forced_display = 0; + o_cpos = _rl_last_c_pos; + cpos_adjusted = 0; update_line (&visible_line[last_lmargin], &invisible_line[lmargin], *************** *** 1200,1203 **** --- 1204,1214 ---- 0); + if ((MB_CUR_MAX > 1 && rl_byte_oriented == 0) && + cpos_adjusted == 0 && + _rl_last_c_pos != o_cpos && + _rl_last_c_pos > wrap_offset && + o_cpos < prompt_last_invisible) + _rl_last_c_pos -= prompt_invis_chars_first_line; /* XXX - was wrap_offset */ + /* If the visible new line is shorter than the old, but the number of invisible characters is greater, and we are at the end of *** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500 --- patchlevel.h 2009-02-22 16:11:31.000000000 -0500 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 26 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 27 #endif /* _PATCHLEVEL_H_ */ --- NEW FILE bash40-028 --- BASH PATCH REPORT ================= Bash-Release: 4.0 Patch-ID: bash40-028 Bug-Reported-by: martin f krafft Bug-Reference-ID: <4A4E39E7.5080807 at debian.org> Bug-Reference-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519165 http://lists.gnu.org/archive/html/bug-bash/2009-07/msg00011.html Bug-Description: bash-4.0 reverted to the historical shell behavior of raising an error when $@ or $* was expanded after `set -u' had been executed and there were no positional parameters. The Posix working group has since clarified the standard's position on the issue, and $@ and $* are now the only variables, parameters, or special parameters that do not raise an error when unset if set -u is enabled. Patch: *** ../bash-4.0-patched/subst.c Mon Mar 23 11:34:55 2009 --- subst.c Wed Jun 17 18:12:18 2009 *************** *** 6768,6778 **** case RBRACE: ! if (var_is_set == 0 && unbound_vars_is_error) { err_unboundvar (name); FREE (value); FREE (temp); free (name); - last_command_exit_value = EXECUTION_FAILURE; return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } --- 6794,6804 ---- case RBRACE: ! if (var_is_set == 0 && unbound_vars_is_error && ((name[0] != '@' && name[0] != '*') || name[1])) { + last_command_exit_value = EXECUTION_FAILURE; err_unboundvar (name); FREE (value); FREE (temp); free (name); return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } *************** *** 6991,6994 **** --- 7017,7029 ---- list = list_rest_of_args (); + #if 0 + /* According to austin-group posix proposal by Geoff Clare in + <20090505091501.GA10097 at squonk.masqnet> of 5 May 2009: + + "The shell shall write a message to standard error and + immediately exit when it tries to expand an unset parameter + other than the '@' and '*' special parameters." + */ + if (list == 0 && unbound_vars_is_error && (pflags & PF_IGNUNBOUND) == 0) { *************** *** 6996,7003 **** uerror[1] = '*'; uerror[2] = '\0'; - err_unboundvar (uerror); last_command_exit_value = EXECUTION_FAILURE; return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } /* If there are no command-line arguments, this should just --- 7031,7039 ---- uerror[1] = '*'; uerror[2] = '\0'; last_command_exit_value = EXECUTION_FAILURE; + err_unboundvar (uerror); return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } + #endif /* If there are no command-line arguments, this should just *************** *** 7053,7056 **** --- 7089,7101 ---- list = list_rest_of_args (); + #if 0 + /* According to austin-group posix proposal by Geoff Clare in + <20090505091501.GA10097 at squonk.masqnet> of 5 May 2009: + + "The shell shall write a message to standard error and + immediately exit when it tries to expand an unset parameter + other than the '@' and '*' special parameters." + */ + if (list == 0 && unbound_vars_is_error && (pflags & PF_IGNUNBOUND) == 0) { *************** *** 7058,7065 **** uerror[1] = '@'; uerror[2] = '\0'; - err_unboundvar (uerror); last_command_exit_value = EXECUTION_FAILURE; return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } /* We want to flag the fact that we saw this. We can't turn --- 7103,7111 ---- uerror[1] = '@'; uerror[2] = '\0'; last_command_exit_value = EXECUTION_FAILURE; + err_unboundvar (uerror); return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal); } + #endif /* We want to flag the fact that we saw this. We can't turn *** ../bash-4.0-patched/doc/bash.1 Wed Feb 18 15:13:56 2009 --- doc/bash.1 Wed Jun 17 08:51:19 2009 *************** *** 8258,8264 **** .TP 8 .B \-u ! Treat unset variables as an error when performing parameter expansion. If expansion is attempted on an ! unset variable, the shell prints an error message, and, if not interactive, exits with a non-zero status. .TP 8 --- 8274,8281 ---- .TP 8 .B \-u ! Treat unset variables and parameters other than the special ! parameters "@" and "*" as an error when performing parameter expansion. If expansion is attempted on an ! unset variable or parameter, the shell prints an error message, and, if not interactive, exits with a non-zero status. .TP 8 *** ../bash-4.0-patched/doc/bashref.texi Wed Feb 18 15:14:43 2009 --- doc/bashref.texi Wed Jun 17 08:50:46 2009 *************** *** 4139,4143 **** @item -u ! Treat unset variables as an error when performing parameter expansion. An error message will be written to the standard error, and a non-interactive shell will exit. --- 4151,4156 ---- @item -u ! Treat unset variables and parameters other than the special parameters ! @samp{@@} or @samp{*} as an error when performing parameter expansion. An error message will be written to the standard error, and a non-interactive shell will exit. *** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500 --- patchlevel.h 2009-02-22 16:11:31.000000000 -0500 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 27 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 28 #endif /* _PATCHLEVEL_H_ */ Index: bash.spec =================================================================== RCS file: /cvs/extras/rpms/bash/devel/bash.spec,v retrieving revision 1.184 retrieving revision 1.185 diff -u -p -r1.184 -r1.185 --- bash.spec 24 Jul 2009 17:52:16 -0000 1.184 +++ bash.spec 29 Jul 2009 08:25:17 -0000 1.185 @@ -1,11 +1,11 @@ #%define beta_tag rc1 -%define patchlevel .24 +%define patchlevel .28 %define baseversion 4.0 Version: %{baseversion}%{patchlevel} Name: bash Summary: The GNU Bourne Again shell -Release: 2%{?dist} +Release: 1%{?dist} Group: System Environment/Shells License: GPLv2+ Url: http://www.gnu.org/software/bash @@ -43,6 +43,10 @@ Patch021: ftp://ftp.gnu.org/pub/gnu/bash Patch022: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-022 Patch023: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-023 Patch024: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-024 +Patch025: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-025 +Patch026: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-026 +Patch027: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-027 +Patch028: ftp://ftp.gnu.org/pub/gnu/bash/bash-4.0-patches/bash40-028 # Other patches Patch101: bash-2.02-security.patch @@ -119,6 +123,10 @@ This package contains documentation file %patch022 -p0 -b .022 %patch023 -p0 -b .023 %patch024 -p0 -b .024 +%patch025 -p0 -b .025 +%patch026 -p0 -b .026 +%patch027 -p0 -b .027 +%patch028 -p0 -b .028 # Other patches %patch101 -p1 -b .security @@ -305,6 +313,9 @@ fi #%doc doc/*.ps doc/*.0 doc/*.html doc/article.txt %changelog +* Tue Jul 28 2009 Roman Rakus - 4.0.28-1 +- Upstream patch level 28 + * Fri Jul 24 2009 Fedora Release Engineering - 4.0.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Wed Jul 29 08:25:43 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 08:25:43 +0000 (UTC) Subject: rpms/perl-Data-ICal/F-10 Data-ICal-0.16.diff, NONE, 1.1 .cvsignore, 1.3, 1.4 perl-Data-ICal.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090729082543.A111411C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Data-ICal/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18733 Modified Files: .cvsignore perl-Data-ICal.spec sources Added Files: Data-ICal-0.16.diff Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 - Upstream update. - Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. Data-ICal-0.16.diff: AutoInstall.pm | 341 ++++++++++++++++++++++++++++++++++++++++++---- Install.pm | 7 Install/Admin.pm | 294 +++++++++++++++++++++++++++++++++++++++ Install/Admin/Bundle.pm | 73 +++++++++ Install/Admin/Compiler.pm | 27 +++ Install/Admin/Find.pm | 77 ++++++++++ Install/Admin/Include.pm | 147 +++++++++++++++++++ Install/Admin/Makefile.pm | 53 +++++++ Install/Admin/Manifest.pm | 162 +++++++++++++++++++++ Install/Admin/Metadata.pm | 185 ++++++++++++++++++++++++ Install/Admin/ScanDeps.pm | 80 ++++++++++ Install/Admin/WriteAll.pm | 20 ++ Install/AutoInstall.pm | 9 - Install/Base.pm | 116 ++++++++++++--- Install/Bundle.pm | 195 ++++++++++++++++++++++++++ Install/Can.pm | 93 +++++++++++- Install/Compiler.pm | 123 ++++++++++++++++ Install/DSL.pm | 91 ++++++++++++ Install/Deprecated.pm | 115 +++++++++++++++ Install/External.pm | 138 ++++++++++++++++++ Install/Fetch.pm | 9 - Install/Include.pm | 9 - Install/Inline.pm | 49 ++++++ Install/MakeMaker.pm | 49 ++++++ Install/Makefile.pm | 140 +++++++++++++++++- Install/Metadata.pm | 105 +++++++++----- Install/PAR.pm | 274 ++++++++++++++++++++++++++++++++++++ Install/Philosophy.pod | 187 +++++++++++++++++++++++++ Install/Run.pm | 15 ++ Install/Scripts.pm | 28 +++ Install/Share.pm | 125 ++++++++++++++++ Install/Win32.pm | 7 Install/With.pm | 159 +++++++++++++++++++++ Install/WriteAll.pm | 19 +- 34 files changed, 3395 insertions(+), 126 deletions(-) --- NEW FILE Data-ICal-0.16.diff --- diff -Naur Data-ICal-0.16.orig/inc/Module/AutoInstall.pm Data-ICal-0.16/inc/Module/AutoInstall.pm --- Data-ICal-0.16.orig/inc/Module/AutoInstall.pm 2009-07-10 16:52:29.000000000 +0200 +++ Data-ICal-0.16/inc/Module/AutoInstall.pm 2009-07-29 09:44:08.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::AutoInstall; use strict; @@ -18,7 +17,9 @@ # various lexical flags my ( @Missing, @Existing, %DisabledTests, $UnderCPAN, $HasCPANPLUS ); -my ( $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly ); +my ( + $Config, $CheckOnly, $SkipInstall, $AcceptDefault, $TestOnly, $AllDeps +); my ( $PostambleActions, $PostambleUsed ); # See if it's a testing or non-interactive session @@ -73,6 +74,9 @@ elsif ( $arg =~ /^--test(?:only)?$/ ) { $TestOnly = 1; } + elsif ( $arg =~ /^--all(?:deps)?$/ ) { + $AllDeps = 1; + } } } @@ -115,7 +119,12 @@ )[0] ); - $UnderCPAN = _check_lock(1); # check for $UnderCPAN + # We want to know if we're under CPAN early to avoid prompting, but + # if we aren't going to try and install anything anyway then skip the + # check entirely since we don't want to have to load (and configure) + # an old CPAN just for a cosmetic message + + $UnderCPAN = _check_lock(1) unless $SkipInstall; while ( my ( $feature, $modules ) = splice( @args, 0, 2 ) ) { my ( @required, @tests, @skiptests ); @@ -165,15 +174,24 @@ } # XXX: check for conflicts and uninstalls(!) them. - if ( - defined( my $cur = _version_check( _load($mod), $arg ||= 0 ) ) ) + my $cur = _load($mod); + if (_version_cmp ($cur, $arg) >= 0) { print "loaded. ($cur" . ( $arg ? " >= $arg" : '' ) . ")\n"; push @Existing, $mod => $arg; $DisabledTests{$_} = 1 for map { glob($_) } @skiptests; } else { - print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + if (not defined $cur) # indeed missing + { + print "missing." . ( $arg ? " (would need $arg)" : '' ) . "\n"; + } + else + { + # no need to check $arg as _version_cmp ($cur, undef) would satisfy >= above + print "too old. ($cur < $arg)\n"; + } + push @required, $mod => $arg; } } @@ -187,6 +205,7 @@ and ( $CheckOnly or ($mandatory and $UnderCPAN) + or $AllDeps or _prompt( qq{==> Auto-install the } . ( @required / 2 ) @@ -235,21 +254,38 @@ *{'main::WriteMakefile'} = \&Write if caller(0) eq 'main'; } +sub _running_under { + my $thing = shift; + print <<"END_MESSAGE"; +*** Since we're running under ${thing}, I'll just let it take care + of the dependency's installation later. +END_MESSAGE + return 1; +} + # Check to see if we are currently running under CPAN.pm and/or CPANPLUS; # if we are, then we simply let it taking care of our dependencies sub _check_lock { return unless @Missing or @_; + my $cpan_env = $ENV{PERL5_CPAN_IS_RUNNING}; + if ($ENV{PERL5_CPANPLUS_IS_RUNNING}) { - print <<'END_MESSAGE'; + return _running_under($cpan_env ? 'CPAN' : 'CPANPLUS'); + } -*** Since we're running under CPANPLUS, I'll just let it take care - of the dependency's installation later. -END_MESSAGE - return 1; + require CPAN; + + if ($CPAN::VERSION > '1.89') { + if ($cpan_env) { + return _running_under('CPAN'); + } + return; # CPAN.pm new enough, don't need to check further } - _load_cpan(); + # last ditch attempt, this -will- configure CPAN, very sorry + + _load_cpan(1); # force initialize even though it's already loaded # Find the CPAN lock-file my $lock = MM->catfile( $CPAN::Config->{cpan_home}, ".lock" ); @@ -285,7 +321,7 @@ while ( my ( $pkg, $ver ) = splice( @_, 0, 2 ) ) { # grep out those already installed - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } else { @@ -324,7 +360,7 @@ # see if we have successfully installed them while ( my ( $pkg, $ver ) = splice( @modules, 0, 2 ) ) { - if ( defined( _version_check( _load($pkg), $ver ) ) ) { + if ( _version_cmp( _load($pkg), $ver ) >= 0 ) { push @installed, $pkg; } elsif ( $args{do_once} and open( FAILED, '>> .#autoinstall.failed' ) ) { @@ -379,7 +415,7 @@ my $success; my $obj = $modtree->{$pkg}; - if ( $obj and defined( _version_check( $obj->{version}, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->{version}, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -472,7 +508,7 @@ my $obj = CPAN::Shell->expand( Module => $pkg ); my $success = 0; - if ( $obj and defined( _version_check( $obj->cpan_version, $ver ) ) ) { + if ( $obj and _version_cmp( $obj->cpan_version, $ver ) >= 0 ) { my $pathname = $pkg; $pathname =~ s/::/\\W/; @@ -536,7 +572,7 @@ my $ver = shift; return - if defined( _version_check( _load($class), $ver ) ); # no need to upgrade + if _version_cmp( _load($class), $ver ) >= 0; # no need to upgrade if ( _prompt( "==> A newer version of $class ($ver) is required. Install?", @@ -633,7 +669,7 @@ # Load CPAN.pm and it's configuration sub _load_cpan { - return if $CPAN::VERSION; + return if $CPAN::VERSION and $CPAN::Config and not @_; require CPAN; if ( $CPAN::HandleConfig::VERSION ) { # Newer versions of CPAN have a HandleConfig module @@ -645,9 +681,11 @@ } # compare two versions, either use Sort::Versions or plain comparison -sub _version_check { +# return values same as <=> +sub _version_cmp { my ( $cur, $min ) = @_; - return unless defined $cur; + return -1 unless defined $cur; # if 0 keep comparing + return 1 unless $min; $cur =~ s/\s+$//; @@ -658,16 +696,13 @@ ) { # use version.pm if it is installed. - return ( - ( version->new($cur) >= version->new($min) ) ? $cur : undef ); + return version->new($cur) <=> version->new($min); [...3605 lines suppressed...] + + +##################################################################### +# Testing and Configuration Contexts + +=pod + +=head2 interactive + +The C function tests for an install that has a user present +(or at least, one in which it is reasonable for us to present prompts +and other similar types of things). + +Returns true if in an interactive environment, or false otherwise. + +=cut + +sub interactive { + # Treat things interactively ONLY based on input + !! (-t STDIN and ! automated_testing()); +} + +=pod + +=head2 automated_testing + +Are we currently running in an automated testing environment, such as +CPAN Testers. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{AUTOMATED_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub automated_testing { + !! $ENV{AUTOMATED_TESTING}; +} + +=pod + +=head2 release_testing + +Are we currently running in an release testing environment. That is, +are we in the process of running in a potential highly-intensive and +high dependency bloat testing process prior to packaging a module for +release. + +This is primarily a cleaner and more human-readable equivalent of +checking $ENV{RELEASE_TESTING} yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub release_testing { + !! $ENV{RELEASE_TESTING}; +} + +sub author_context { + !! $Module::Install::AUTHOR; +} + + + + + +##################################################################### +# Operating System Convenience + +=pod + +=head2 win32 + +The C function tests if the Makefile.PL is currently running in a +native Microsoft Windows Perl, such as ActivePerl or Strawberry Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32'> yourself, but may be improved in line +with best practices at a later date. + +=cut + +sub win32 { + !! ($^O eq 'MSWin32'); +} + +=pod + +=head2 winlike + +The C function tests if the Makefile.PL is currently running +in a Microsoft Windows Perl, under either cygwin or a native Win32 Perl. + +This is primarily a cleaner and more human-readable equivalent of +checking C<$^O eq 'MSWin32' or $^O eq 'cygwin'>yourself, but may be +improved in line with best practices at a later date. + +=cut + +sub winlike { + !! ($^O eq 'MSWin32' or $^O eq 'cygwin'); +} + +1; + +=pod + +=head1 SEE ALSO + +L + +=head1 AUTHORS + +Adam Kennedy Eadamk at cpan.orgE + +=head1 COPYRIGHT + +Copyright 2007 - 2009 Adam Kennedy. + +This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +The full text of the license can be found in the +LICENSE file included with this module. + +=cut diff -Naur Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm Data-ICal-0.16/inc/Module/Install/WriteAll.pm --- Data-ICal-0.16.orig/inc/Module/Install/WriteAll.pm 2009-07-10 16:52:30.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install/WriteAll.pm 2009-05-27 18:46:13.000000000 +0200 @@ -1,12 +1,11 @@ -#line 1 package Module::Install::WriteAll; use strict; -use Module::Install::Base; +use Module::Install::Base (); use vars qw{$VERSION @ISA $ISCORE}; BEGIN { - $VERSION = '0.85'; + $VERSION = '0.91';; @ISA = qw{Module::Install::Base}; $ISCORE = 1; } @@ -41,8 +40,18 @@ # The Makefile write process adds a couple of dependencies, # so write the META.yml files after the Makefile. - $self->Meta->write if $args{meta}; - $self->Meta->write_mymeta if $self->mymeta; + if ( $args{meta} ) { + $self->Meta->write; + } + + # Experimental support for MYMETA + if ( $ENV{X_MYMETA} ) { + if ( $ENV{X_MYMETA} eq 'JSON' ) { + $self->Meta->write_mymeta_json; + } else { + $self->Meta->write_mymeta_yaml; + } + } return 1; } diff -Naur Data-ICal-0.16.orig/inc/Module/Install.pm Data-ICal-0.16/inc/Module/Install.pm --- Data-ICal-0.16.orig/inc/Module/Install.pm 2009-07-10 16:52:28.000000000 +0200 +++ Data-ICal-0.16/inc/Module/Install.pm 2009-07-29 09:44:13.000000000 +0200 @@ -1,4 +1,3 @@ -#line 1 package Module::Install; # For any maintainers: @@ -28,7 +27,7 @@ # This is not enforced yet, but will be some time in the next few # releases once we can make sure it won't clash with custom # Module::Install extensions. - $VERSION = '0.85'; + $VERSION = '0.91'; # Storage for the pseudo-singleton $MAIN = undef; @@ -353,7 +352,7 @@ if ( $] >= 5.006 ) { open( FH, '<', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "< $_[0]" ) or die "open($_[0]): $!"; + open( FH, "< $_[0]" ) or die "open($_[0]): $!"; } my $string = do { local $/; }; close FH or die "close($_[0]): $!"; @@ -384,7 +383,7 @@ if ( $] >= 5.006 ) { open( FH, '>', $_[0] ) or die "open($_[0]): $!"; } else { - open( FH, "> $_[0]" ) or die "open($_[0]): $!"; + open( FH, "> $_[0]" ) or die "open($_[0]): $!"; } foreach ( 1 .. $#_ ) { print FH $_[$_] or die "print($_[0]): $!"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Mar 2009 14:36:25 -0000 1.3 +++ .cvsignore 29 Jul 2009 08:25:43 -0000 1.4 @@ -1 +1 @@ -Data-ICal-0.15.tar.gz +Data-ICal-0.16.tar.gz Index: perl-Data-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-10/perl-Data-ICal.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Data-ICal.spec 4 Mar 2009 14:36:25 -0000 1.4 +++ perl-Data-ICal.spec 29 Jul 2009 08:25:43 -0000 1.5 @@ -1,13 +1,19 @@ Name: perl-Data-ICal -Version: 0.15 +Version: 0.16 Release: 1%{?dist} Summary: Generates iCalendar (RFC 2445) calendar files License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Data-ICal/ Source0: http://www.cpan.org/authors/id/A/AL/ALEXMV/Data-ICal-%{version}.tar.gz + +# inc/Module/Install* is broken, replace it with Module-Install-0.91 +Patch0: Data-ICal-%{version}.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch + +BuildRequires: perl(CPAN) perl(YAML::Tiny) perl(File::Remove) + BuildRequires: perl(Class::Accessor) BuildRequires: perl(Class::ReturnValue) BuildRequires: perl(ExtUtils::MakeMaker) @@ -32,9 +38,10 @@ many popular calendaring programs such a %prep %setup -q -n Data-ICal-%{version} +%patch0 -p1 %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__perl} Makefile.PL INSTALLDIRS=vendor --skipdeps make %{?_smp_mflags} %install @@ -60,6 +67,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 0.16-1 +- Upstream update. +- Replace broken inc/Module/Install/* with a copy of Module::Install-0.91. + * Tue Mar 03 2009 Ralf Cors?pius - 0.15-1 - Upstream update. - Reflect upstream maintainer having changed. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Mar 2009 14:36:25 -0000 1.3 +++ sources 29 Jul 2009 08:25:43 -0000 1.4 @@ -1 +1 @@ -71c830a2da27163d770b5c17fcc11541 Data-ICal-0.15.tar.gz +12430864424a7bfe77e5d62a083f792c Data-ICal-0.16.tar.gz From jgranado at fedoraproject.org Wed Jul 29 08:02:49 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Wed, 29 Jul 2009 08:02:49 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-handle-dup-error.patch,1.1,1.2 Message-ID: <20090729080249.BE6D711C00CE@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12808 Modified Files: parted-1.9.0-handle-dup-error.patch Log Message: Put the parenthesis where needed. parted-1.9.0-handle-dup-error.patch: disk.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Index: parted-1.9.0-handle-dup-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0-handle-dup-error.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parted-1.9.0-handle-dup-error.patch 22 Jul 2009 10:18:08 -0000 1.1 +++ parted-1.9.0-handle-dup-error.patch 29 Jul 2009 08:02:49 -0000 1.2 @@ -1,24 +1,28 @@ -From 41bbcb45aaa89294cda404c89526aa7e251e02ca Mon Sep 17 00:00:00 2001 +From 4f14bec7eb887aba8b8e38b987bc01e8456a79fc Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 22 Jul 2009 12:08:34 +0200 Subject: [PATCH] Try to handle the duplicate error a little better. --- - libparted/disk.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + libparted/disk.c | 4 +++- + 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c -index 3656d22..8529e50 100644 +index 3656d22..27611eb 100644 --- a/libparted/disk.c +++ b/libparted/disk.c -@@ -278,6 +278,7 @@ ped_disk_duplicate (const PedDisk* old_disk) +@@ -277,8 +277,10 @@ ped_disk_duplicate (const PedDisk* old_disk) + for (old_part = ped_disk_next_partition (old_disk, NULL); old_part; old_part = ped_disk_next_partition (old_disk, old_part)) { if (ped_partition_is_active (old_part)) { - if (!_add_duplicate_part (new_disk, old_part)) +- if (!_add_duplicate_part (new_disk, old_part)) ++ if (!_add_duplicate_part (new_disk, old_part)){ + _disk_pop_update_mode (new_disk); goto error_destroy_new_disk; ++ } } } + if (!_disk_pop_update_mode (new_disk)) -- 1.6.0.6 From pkgdb at fedoraproject.org Wed Jul 29 08:46:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:06 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084606.C1A6410F89D@bastion2.fedora.phx.redhat.com> rezso has set the watchcommits acl on fet (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:06 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084606.6B67D10F897@bastion2.fedora.phx.redhat.com> rezso has set the watchbugzilla acl on fet (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:07 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084607.ACE6B10F8A1@bastion2.fedora.phx.redhat.com> rezso has set the commit acl on fet (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:09 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084609.8619A10F8B4@bastion2.fedora.phx.redhat.com> rezso has set the approveacls acl on fet (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:18 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084618.5256510F8B7@bastion2.fedora.phx.redhat.com> rezso has set the watchbugzilla acl on fet (Fedora 10) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:21 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084622.51DD010F8BF@bastion2.fedora.phx.redhat.com> rezso has set the approveacls acl on fet (Fedora 10) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:19 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084621.1152710F8BE@bastion2.fedora.phx.redhat.com> rezso has set the commit acl on fet (Fedora 10) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:19 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084620.4425C10F8BC@bastion2.fedora.phx.redhat.com> rezso has set the watchcommits acl on fet (Fedora 10) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:27 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084628.21C3810F8C3@bastion2.fedora.phx.redhat.com> rezso has set the approveacls acl on fet (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:31 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084631.D5A1610F8C4@bastion2.fedora.phx.redhat.com> rezso has set the watchbugzilla acl on fet (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:46:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:46:27 +0000 Subject: [pkgdb] fet had acl change status Message-ID: <20090729084627.3A4D710F8BB@bastion2.fedora.phx.redhat.com> rezso has set the commit acl on fet (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Wed Jul 29 08:49:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:49:38 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090729084938.90B5410F882@bastion2.fedora.phx.redhat.com> hvad has set the approveacls acl on perl-Tk-Stderr (Fedora devel) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Wed Jul 29 08:49:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 08:49:39 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has given up approveacls Message-ID: <20090729084940.A269110F89A@bastion2.fedora.phx.redhat.com> hvad has given up the approveacls acl on perl-Tk-Stderr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From markmc at fedoraproject.org Wed Jul 29 09:00:03 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Wed, 29 Jul 2009 09:00:03 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.156,1.157 Message-ID: <20090729090003.254C011C04D6@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26658 Modified Files: libvirt.spec Log Message: * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.5.gitf055724 - Move ldconfig call to libvirt-client %post/%postun - Fix rpmlint warning about libvirt-client summary Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.156 retrieving revision 1.157 diff -u -p -r1.156 -r1.157 --- libvirt.spec 29 Jul 2009 08:09:45 -0000 1.156 +++ libvirt.spec 29 Jul 2009 09:00:02 -0000 1.157 @@ -76,7 +76,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.4.gitf055724%{?dist}%{?extra_release} +Release: 0.5.gitf055724%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.1.gitf055724.tar.gz @@ -205,7 +205,7 @@ of recent versions of Linux (and other O the libvirtd server exporting the virtualization support. %package client -Summary: client side library and utilities of the libvirt library +Summary: Client side library and utilities of the libvirt library Group: Development/Libraries Requires: readline Requires: ncurses @@ -422,7 +422,6 @@ chmod 0644 $RPM_BUILD_ROOT%{_sysconfdir} rm -fr %{buildroot} %post -/sbin/ldconfig %if %{with_libvirtd} %if %{with_qemu} @@ -451,7 +450,9 @@ if [ $1 = 0 ]; then fi %endif -%postun -p /sbin/ldconfig +%post client -p /sbin/ldconfig + +%postun client -p /sbin/ldconfig %files %defattr(-, root, root) @@ -601,6 +602,10 @@ fi %endif %changelog +* Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.5.gitf055724 +- Move ldconfig call to libvirt-client %post/%postun +- Fix rpmlint warning about libvirt-client summary + * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.4.gitf055724 - Drop explicit libselinux requires, it is autorequired - Drop cleanup of python/tests, apparently not needed From kwizart at fedoraproject.org Wed Jul 29 09:07:35 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 09:07:35 +0000 (UTC) Subject: rpms/libewf/EL-5 import.log, NONE, 1.1 mount_ewf-20090113-backport_py24.patch, NONE, 1.1 libewf.spec, 1.14, 1.15 Message-ID: <20090729090735.9DF2D11C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/libewf/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28091/EL-5 Modified Files: libewf.spec Added Files: import.log mount_ewf-20090113-backport_py24.patch Log Message: Initial import for EL-5 --- NEW FILE import.log --- libewf-20080501-5_fc11:EL-5:libewf-20080501-5.fc11.src.rpm:1248858347 mount_ewf-20090113-backport_py24.patch: mount_ewf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE mount_ewf-20090113-backport_py24.patch --- diff -up libewf-20080501/mount_ewf.py.py24 libewf-20080501/mount_ewf.py --- libewf-20080501/mount_ewf.py.py24 2009-01-13 19:22:38.000000000 +0100 +++ libewf-20080501/mount_ewf.py 2009-07-27 16:28:46.704783498 +0200 @@ -40,8 +40,8 @@ import sys, string # release of Python. If you're reading this, it's your call. version = string.split(string.split(sys.version)[0], ".") -if map(int, version) < [2,5]: - sys.stderr.write("Python 2.5 or newer is required.\n") +if map(int, version) < [2,4]: + sys.stderr.write("Python 2.4 or newer is required.\n") sys.exit(8) try: Index: libewf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libewf/EL-5/libewf.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libewf.spec 25 Jul 2009 05:35:34 -0000 1.14 +++ libewf.spec 29 Jul 2009 09:07:35 -0000 1.15 @@ -1,16 +1,19 @@ +%define _source_filedigest_algorithm 1 + Name: libewf Version: 20080501 -Release: 8%{?dist} +Release: 5%{?dist} Summary: Library for the Expert Witness Compression Format (EWF) Group: System Environment/Libraries License: BSD -URL: https://sourceforge.net/projects/libewf/ +URL: http://sourceforge.net/projects/libewf/ Source0: http://downloads.sourceforge.net/libewf/libewf-%{version}.tar.gz Source1: http://downloads.sourceforge.net/libewf/mount_ewf-20090113.py +Patch0: mount_ewf-20090113-backport_py24.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libuuid-devel +BuildRequires: e2fsprogs-devel BuildRequires: openssl-devel BuildRequires: zlib-devel #Needed for mount.ewf(.py) support @@ -30,6 +33,7 @@ Requires: %{name} = %{version}-%{r Provides: %{name}-tools = %{version}-%{release} Obsoletes: %{name}-tools <= %{version}-%{release} Requires: fuse-python >= 0.2 +Requires: python-ctypes Requires: disktype %description -n ewftools @@ -50,6 +54,8 @@ developing applications that use %{name} %prep %setup -q +install -pm 0644 %{SOURCE1} mount_ewf.py +%patch0 -p1 -b .py24 %build @@ -71,7 +77,7 @@ make install DESTDIR=$RPM_BUILD_ROOT INS find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' mkdir -p $RPM_BUILD_ROOT/sbin -install -pm 0755 %{SOURCE1} $RPM_BUILD_ROOT/sbin/mount.ewf +install -pm 0755 mount_ewf.py $RPM_BUILD_ROOT/sbin/mount.ewf ln -s mount.ewf $RPM_BUILD_ROOT/sbin/umount.ewf %clean @@ -105,14 +111,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.gz %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 20080501-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 20080501-7 -- Switch to libuuid-devel usage over e2fsprogs-devel - -* Wed Feb 25 2009 Fedora Release Engineering - 20080501-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Mon Jul 27 2009 kwizart < kwizart at gmail.com > - 20080501-6 +- Initial import for EL-5 * Thu Jan 15 2009 kwizart < kwizart at gmail.com > - 20080501-5 - Update mount_ewf to 20090113 From markmc at fedoraproject.org Wed Jul 29 09:08:57 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Wed, 29 Jul 2009 09:08:57 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.157,1.158 Message-ID: <20090729090857.49A5A11C00CE@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28442 Modified Files: libvirt.spec Log Message: - Fix disabling polkit and netcf on older fedoras Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.157 retrieving revision 1.158 diff -u -p -r1.157 -r1.158 --- libvirt.spec 29 Jul 2009 09:00:02 -0000 1.157 +++ libvirt.spec 29 Jul 2009 09:08:57 -0000 1.158 @@ -8,22 +8,24 @@ %define with_vbox 0%{!?_without_vbox:1} %define with_sasl 0%{!?_without_sasl:1} %define with_avahi 0%{!?_without_avahi:1} -%define with_polkit 0%{!?_without_polkit:1} %define with_python 0%{!?_without_python:1} %define with_libvirtd 0%{!?_without_libvirtd:1} %define with_uml 0%{!?_without_uml:1} %define with_one 0%{!?_without_one:1} -# default to off -%define with_phyp 0%{!?_without_phyp:0} %define with_network 0%{!?_without_network:1} %define with_storage_fs 0%{!?_without_storage_fs:1} %define with_storage_lvm 0%{!?_without_storage_lvm:1} %define with_storage_iscsi 0%{!?_without_storage_iscsi:1} %define with_storage_disk 0%{!?_without_storage_disk:1} %define with_numactl 0%{!?_without_numactl:1} -# default to off + +# default to off - selectively enabled below +%define with_polkit 0%{!?_without_polkit:0} %define with_capng 0%{!?_without_capng:0} -%define with_netcf 0%{!?_without_netcf:1} +%define with_netcf 0%{!?_without_netcf:0} + +# default to off +%define with_phyp 0%{!?_without_phyp:0} # Xen is available only on i386 x86_64 ia64 %ifnarch i386 i586 i686 x86_64 ia64 @@ -605,6 +607,7 @@ fi * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.5.gitf055724 - Move ldconfig call to libvirt-client %post/%postun - Fix rpmlint warning about libvirt-client summary +- Fix disabling polkit and netcf on older fedoras * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.4.gitf055724 - Drop explicit libselinux requires, it is autorequired From kwizart at fedoraproject.org Wed Jul 29 09:09:33 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 09:09:33 +0000 (UTC) Subject: rpms/libewf/EL-5 libewf.spec,1.15,1.16 Message-ID: <20090729090933.6EC1611C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/libewf/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28634 Modified Files: libewf.spec Log Message: bump for EL-5 Index: libewf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libewf/EL-5/libewf.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libewf.spec 29 Jul 2009 09:07:35 -0000 1.15 +++ libewf.spec 29 Jul 2009 09:09:33 -0000 1.16 @@ -1,8 +1,6 @@ -%define _source_filedigest_algorithm 1 - Name: libewf Version: 20080501 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for the Expert Witness Compression Format (EWF) Group: System Environment/Libraries From twaugh at fedoraproject.org Wed Jul 29 09:10:23 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 09:10:23 +0000 (UTC) Subject: rpms/foomatic/F-11 foomatic.spec,1.217,1.218 Message-ID: <20090729091023.1A5E611C04D6@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28893 Modified Files: foomatic.spec Log Message: * Wed Jul 29 2009 Tim Waugh 4.0.2-5 - Remove non-PPD files from PPD directory (bug #514242). Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/foomatic.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- foomatic.spec 20 Jul 2009 09:08:58 -0000 1.217 +++ foomatic.spec 29 Jul 2009 09:10:22 -0000 1.218 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -218,6 +218,8 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/perl5/s $RPM_BUILD_ROOT%{_libdir}/ppr \ $RPM_BUILD_ROOT%{_sysconfdir}/foomatic/filter.conf.sample find $RPM_BUILD_ROOT -name .packlist -o -name '*.xml.*' | xargs rm -f +rm -f $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.txt \ + $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm %post /bin/rm -f /var/cache/foomatic/* @@ -242,6 +244,9 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Wed Jul 29 2009 Tim Waugh 4.0.2-5 +- Remove non-PPD files from PPD directory (bug #514242). + * Mon Jul 20 2009 Tim Waugh 4.0.2-4 - Rebuilt for new update. From twaugh at fedoraproject.org Wed Jul 29 09:11:18 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 09:11:18 +0000 (UTC) Subject: rpms/foomatic/devel foomatic.spec,1.218,1.219 Message-ID: <20090729091118.8568B11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29119 Modified Files: foomatic.spec Log Message: * Wed Jul 29 2009 Tim Waugh 4.0.2-5 - Remove non-PPD files from PPD directory (bug #514242). Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.218 retrieving revision 1.219 diff -u -p -r1.218 -r1.219 --- foomatic.spec 24 Jul 2009 23:02:03 -0000 1.218 +++ foomatic.spec 29 Jul 2009 09:11:18 -0000 1.219 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -218,6 +218,8 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/perl5/s $RPM_BUILD_ROOT%{_libdir}/ppr \ $RPM_BUILD_ROOT%{_sysconfdir}/foomatic/filter.conf.sample find $RPM_BUILD_ROOT -name .packlist -o -name '*.xml.*' | xargs rm -f +rm -f $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.txt \ + $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm %post /bin/rm -f /var/cache/foomatic/* @@ -242,6 +244,9 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Wed Jul 29 2009 Tim Waugh 4.0.2-5 +- Remove non-PPD files from PPD directory (bug #514242). + * Fri Jul 24 2009 Fedora Release Engineering - 4.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kwizart at fedoraproject.org Wed Jul 29 09:37:26 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 09:37:26 +0000 (UTC) Subject: rpms/perl-Async-MergePoint/devel import.log, NONE, 1.1 perl-Async-MergePoint.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729093726.C265411C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Async-MergePoint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937/devel Modified Files: .cvsignore sources Added Files: import.log perl-Async-MergePoint.spec Log Message: Initial import for devel --- NEW FILE import.log --- perl-Async-MergePoint-0_03-1_fc11:HEAD:perl-Async-MergePoint-0.03-1.fc11.src.rpm:1248860106 --- NEW FILE perl-Async-MergePoint.spec --- Name: perl-Async-MergePoint Version: 0.03 Release: 1%{?dist} Summary: Resynchronise diverged control flow License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Async-MergePoint/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Async-MergePoint-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before the next step can be taken. In synchonous code, the usual approach is to do them sequentially. %prep %setup -q -n Async-MergePoint-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/Async %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.03-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:37:12 -0000 1.1 +++ .cvsignore 29 Jul 2009 09:37:26 -0000 1.2 @@ -0,0 +1 @@ +Async-MergePoint-0.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:37:12 -0000 1.1 +++ sources 29 Jul 2009 09:37:26 -0000 1.2 @@ -0,0 +1 @@ +f4a6f9a9dc0a1748f503c01893d544cc Async-MergePoint-0.03.tar.gz From kwizart at fedoraproject.org Wed Jul 29 09:38:33 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 09:38:33 +0000 (UTC) Subject: rpms/perl-Async-MergePoint/F-11 import.log, NONE, 1.1 perl-Async-MergePoint.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729093833.EE7D611C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Async-MergePoint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2291/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Async-MergePoint.spec Log Message: Initial import for F-11 --- NEW FILE import.log --- perl-Async-MergePoint-0_03-1_fc11:F-11:perl-Async-MergePoint-0.03-1.fc11.src.rpm:1248860273 --- NEW FILE perl-Async-MergePoint.spec --- Name: perl-Async-MergePoint Version: 0.03 Release: 1%{?dist} Summary: Resynchronise diverged control flow License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Async-MergePoint/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Async-MergePoint-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before the next step can be taken. In synchonous code, the usual approach is to do them sequentially. %prep %setup -q -n Async-MergePoint-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/Async %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.03-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:37:12 -0000 1.1 +++ .cvsignore 29 Jul 2009 09:38:33 -0000 1.2 @@ -0,0 +1 @@ +Async-MergePoint-0.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:37:12 -0000 1.1 +++ sources 29 Jul 2009 09:38:33 -0000 1.2 @@ -0,0 +1 @@ +f4a6f9a9dc0a1748f503c01893d544cc Async-MergePoint-0.03.tar.gz From twaugh at fedoraproject.org Wed Jul 29 09:44:37 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 09:44:37 +0000 (UTC) Subject: rpms/foomatic/F-11 foomatic.spec,1.218,1.219 Message-ID: <20090729094437.C830511C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3524 Modified Files: foomatic.spec Log Message: * Wed Jul 29 2009 Tim Waugh 4.0.2-5 - Don't ship 3-distribution symlink as CUPS already searches /usr/share/ppd (bug #514244). Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/foomatic.spec,v retrieving revision 1.218 retrieving revision 1.219 diff -u -p -r1.218 -r1.219 --- foomatic.spec 29 Jul 2009 09:10:22 -0000 1.218 +++ foomatic.spec 29 Jul 2009 09:44:37 -0000 1.219 @@ -219,7 +219,8 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/perl5/s $RPM_BUILD_ROOT%{_sysconfdir}/foomatic/filter.conf.sample find $RPM_BUILD_ROOT -name .packlist -o -name '*.xml.*' | xargs rm -f rm -f $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.txt \ - $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm + $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm \ + $RPM_BUILD_ROOT%{_datadir}/cups/model/3-distribution %post /bin/rm -f /var/cache/foomatic/* @@ -245,6 +246,8 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %changelog * Wed Jul 29 2009 Tim Waugh 4.0.2-5 +- Don't ship 3-distribution symlink as CUPS already searches + /usr/share/ppd (bug #514244). - Remove non-PPD files from PPD directory (bug #514242). * Mon Jul 20 2009 Tim Waugh 4.0.2-4 From twaugh at fedoraproject.org Wed Jul 29 09:45:34 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 09:45:34 +0000 (UTC) Subject: rpms/foomatic/devel foomatic.spec,1.219,1.220 Message-ID: <20090729094534.B8A6F11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3726 Modified Files: foomatic.spec Log Message: * Wed Jul 29 2009 Tim Waugh 4.0.2-5 - Don't ship 3-distribution symlink as CUPS already searches /usr/share/ppd (bug #514244). Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.219 retrieving revision 1.220 diff -u -p -r1.219 -r1.220 --- foomatic.spec 29 Jul 2009 09:11:18 -0000 1.219 +++ foomatic.spec 29 Jul 2009 09:45:34 -0000 1.220 @@ -219,7 +219,8 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/perl5/s $RPM_BUILD_ROOT%{_sysconfdir}/foomatic/filter.conf.sample find $RPM_BUILD_ROOT -name .packlist -o -name '*.xml.*' | xargs rm -f rm -f $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.txt \ - $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm + $RPM_BUILD_ROOT%{_datadir}/foomatic/db/source/PPD/Kyocera/*.htm \ + $RPM_BUILD_ROOT%{_datadir}/cups/model/3-distribution %post /bin/rm -f /var/cache/foomatic/* @@ -245,6 +246,8 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %changelog * Wed Jul 29 2009 Tim Waugh 4.0.2-5 +- Don't ship 3-distribution symlink as CUPS already searches + /usr/share/ppd (bug #514244). - Remove non-PPD files from PPD directory (bug #514242). * Fri Jul 24 2009 Fedora Release Engineering - 4.0.2-4 From kwizart at fedoraproject.org Wed Jul 29 09:45:41 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 09:45:41 +0000 (UTC) Subject: rpms/perl-Async-MergePoint/F-10 import.log, NONE, 1.1 perl-Async-MergePoint.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729094541.7C22011C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Async-MergePoint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3703/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Async-MergePoint.spec Log Message: Initial import for F-10 --- NEW FILE import.log --- perl-Async-MergePoint-0_03-1_fc11:F-10:perl-Async-MergePoint-0.03-1.fc11.src.rpm:1248860492 --- NEW FILE perl-Async-MergePoint.spec --- Name: perl-Async-MergePoint Version: 0.03 Release: 1%{?dist} Summary: Resynchronise diverged control flow License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Async-MergePoint/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Async-MergePoint-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before the next step can be taken. In synchonous code, the usual approach is to do them sequentially. %prep %setup -q -n Async-MergePoint-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/Async %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.03-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:37:12 -0000 1.1 +++ .cvsignore 29 Jul 2009 09:45:41 -0000 1.2 @@ -0,0 +1 @@ +Async-MergePoint-0.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Async-MergePoint/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:37:12 -0000 1.1 +++ sources 29 Jul 2009 09:45:41 -0000 1.2 @@ -0,0 +1 @@ +f4a6f9a9dc0a1748f503c01893d544cc Async-MergePoint-0.03.tar.gz From harald at fedoraproject.org Wed Jul 29 09:59:44 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 29 Jul 2009 09:59:44 +0000 (UTC) Subject: rpms/udev-extras/devel udev-extras.spec,1.15,NONE Message-ID: <20090729095944.5B60711C00CE@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7299 Removed Files: udev-extras.spec Log Message: udev-extras is merged in udev -> dead.package --- udev-extras.spec DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 10:05:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:05:24 +0000 Subject: [pkgdb] gnochm ownership updated Message-ID: <20090729100524.68EC510F89A@bastion2.fedora.phx.redhat.com> Package gnochm in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnochm From pkgdb at fedoraproject.org Wed Jul 29 10:05:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:05:30 +0000 Subject: [pkgdb] gnochm ownership updated Message-ID: <20090729100530.64EB910F89F@bastion2.fedora.phx.redhat.com> Package gnochm in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnochm From hadess at fedoraproject.org Wed Jul 29 10:05:38 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 10:05:38 +0000 (UTC) Subject: rpms/clutter/devel .cvsignore, 1.16, 1.17 clutter.spec, 1.29, 1.30 sources, 1.16, 1.17 clutter-fix-dolt-check.patch, 1.1, NONE Message-ID: <20090729100538.1A45911C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8521 Modified Files: .cvsignore clutter.spec sources Removed Files: clutter-fix-dolt-check.patch Log Message: * Wed Jul 29 2009 Bastien Nocera 1.0.0-1 - Update to 1.0.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 17 Jul 2009 17:22:11 -0000 1.16 +++ .cvsignore 29 Jul 2009 10:05:37 -0000 1.17 @@ -1 +1 @@ -clutter-0.9.8.tar.bz2 +clutter-1.0.0.tar.bz2 Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- clutter.spec 28 Jul 2009 12:19:24 -0000 1.29 +++ clutter.spec 29 Jul 2009 10:05:37 -0000 1.30 @@ -1,6 +1,6 @@ Name: clutter -Version: 0.9.8 -Release: 3%{?dist} +Version: 1.0.0 +Release: 1%{?dist} Summary: Open Source software library for creating rich graphical user interfaces Group: Development/Libraries @@ -19,9 +19,6 @@ BuildRequires: libXdamage-devel gettext BuildRequires: gobject-introspection-devel >= 0.6.3 BuildRequires: gir-repository-devel -Patch0: clutter-fix-dolt-check.patch -BuildRequires: automake autoconf libtool - Obsoletes: clutter-cairo < 0.9 Provides: clutter-cairo = 0.9 @@ -60,15 +57,10 @@ This package contains documentation for %prep %setup -q -%patch0 -p1 -b .ppc64 %build -aclocal -Ibuild/autotools -autoreconf %configure --enable-gtk-doc --enable-introspection -make -# FIXME parallel make is disabled for now -#make %{?_smp_mflags} +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -105,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Bastien Nocera 1.0.0-1 +- Update to 1.0.0 + * Tue Jul 28 2009 Itamar Reis Peixoto - 0.9.8-3 - fix bz #507389 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 17 Jul 2009 17:22:11 -0000 1.16 +++ sources 29 Jul 2009 10:05:37 -0000 1.17 @@ -1 +1 @@ -068af064ac5e3dd69628c24962bbe125 clutter-0.9.8.tar.bz2 +eb1a3db895d914dc29caadd15bc1f5e0 clutter-1.0.0.tar.bz2 --- clutter-fix-dolt-check.patch DELETED --- From mmahut at fedoraproject.org Wed Jul 29 10:10:04 2009 From: mmahut at fedoraproject.org (Marek Mahut) Date: Wed, 29 Jul 2009 10:10:04 +0000 (UTC) Subject: rpms/gnuradio/devel .cvsignore, 1.5, 1.6 gnuradio.spec, 1.14, 1.15 sources, 1.5, 1.6 Message-ID: <20090729101005.0821F11C04D6@cvs1.fedora.phx.redhat.com> Author: mmahut Update of /cvs/pkgs/rpms/gnuradio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9336 Modified Files: .cvsignore gnuradio.spec sources Log Message: release 3.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 27 Jul 2009 13:08:47 -0000 1.5 +++ .cvsignore 29 Jul 2009 10:10:04 -0000 1.6 @@ -1 +1 @@ -gnuradio-3.2.tar.gz +gnuradio-3.2.2.tar.gz Index: gnuradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/gnuradio.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gnuradio.spec 27 Jul 2009 13:08:50 -0000 1.14 +++ gnuradio.spec 29 Jul 2009 10:10:04 -0000 1.15 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gnuradio -Version: 3.2 +Version: 3.2.2 Release: 1%{?dist} Summary: Software defined radio framework @@ -12,7 +12,6 @@ Source0: ftp://ftp.gnu.org/gnu/gnuradio/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: 10-usrp.rules Patch0: gnuradio-3.2-libtool.patch -Patch1: gnuradio-3.2-gcc44.patch Requires(pre): shadow-utils BuildRequires: sdcc @@ -94,7 +93,6 @@ GNU Radio USRP headers %prep %setup -q %patch0 -p1 -b .libtool -%patch1 -p1 -b .gcc44 %build export PATH=%{_libexecdir}/sdcc:$PATH @@ -172,6 +170,10 @@ getent group usrp >/dev/null || groupadd %{_includedir}/usrp_* %changelog +* Wed Jul 29 2009 Marek Mahut - 3.2.2-1 +- Upstream release 3.2.2 +- Dropped patch gnuradio-3.2-gcc44.patch + * Sat Jul 25 2009 Marek Mahut - 3.2-1 - Upstream release 3.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 27 Jul 2009 13:08:50 -0000 1.5 +++ sources 29 Jul 2009 10:10:04 -0000 1.6 @@ -1 +1 @@ -9d91d0f8f2cb35bc86435784fa8e72d8 gnuradio-3.2.tar.gz +3fedcd64c2f51671cc1417b4c1e06834 gnuradio-3.2.2.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 10:14:57 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 10:14:57 +0000 (UTC) Subject: rpms/perl-DBIx-SearchBuilder/F-11 .cvsignore, 1.14, 1.15 perl-DBIx-SearchBuilder.spec, 1.20, 1.21 sources, 1.14, 1.15 Message-ID: <20090729101457.352CA11C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10417/F-11 Modified Files: .cvsignore perl-DBIx-SearchBuilder.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 18 Jun 2009 03:08:00 -0000 1.14 +++ .cvsignore 29 Jul 2009 10:14:57 -0000 1.15 @@ -1 +1 @@ -DBIx-SearchBuilder-1.55.tar.gz +DBIx-SearchBuilder-1.56.tar.gz Index: perl-DBIx-SearchBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-11/perl-DBIx-SearchBuilder.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-DBIx-SearchBuilder.spec 18 Jun 2009 03:08:00 -0000 1.20 +++ perl-DBIx-SearchBuilder.spec 29 Jul 2009 10:14:57 -0000 1.21 @@ -6,7 +6,7 @@ # Name: perl-DBIx-SearchBuilder -Version: 1.55 +Version: 1.56 Release: 1%{?dist} Summary: Encapsulate SQL queries and rows in simple perl objects License: GPL+ or Artistic @@ -94,6 +94,9 @@ DBIx::SearchBuilder bindings for Oracle %endif %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors?pius - 1.55-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 18 Jun 2009 03:08:00 -0000 1.14 +++ sources 29 Jul 2009 10:14:57 -0000 1.15 @@ -1 +1 @@ -0e04e85332c99012e3b672e67200ba2a DBIx-SearchBuilder-1.55.tar.gz +484184840b28a8dab8a6b9f82ba0699e DBIx-SearchBuilder-1.56.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 10:14:57 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 10:14:57 +0000 (UTC) Subject: rpms/perl-DBIx-SearchBuilder/F-10 .cvsignore, 1.14, 1.15 perl-DBIx-SearchBuilder.spec, 1.19, 1.20 sources, 1.14, 1.15 Message-ID: <20090729101457.646E611C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10417/F-10 Modified Files: .cvsignore perl-DBIx-SearchBuilder.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 18 Jun 2009 03:08:00 -0000 1.14 +++ .cvsignore 29 Jul 2009 10:14:57 -0000 1.15 @@ -1 +1 @@ -DBIx-SearchBuilder-1.55.tar.gz +DBIx-SearchBuilder-1.56.tar.gz Index: perl-DBIx-SearchBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-10/perl-DBIx-SearchBuilder.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-DBIx-SearchBuilder.spec 18 Jun 2009 03:08:00 -0000 1.19 +++ perl-DBIx-SearchBuilder.spec 29 Jul 2009 10:14:57 -0000 1.20 @@ -6,7 +6,7 @@ # Name: perl-DBIx-SearchBuilder -Version: 1.55 +Version: 1.56 Release: 1%{?dist} Summary: Encapsulate SQL queries and rows in simple perl objects License: GPL+ or Artistic @@ -94,6 +94,9 @@ DBIx::SearchBuilder bindings for Oracle %endif %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors?pius - 1.55-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 18 Jun 2009 03:08:00 -0000 1.14 +++ sources 29 Jul 2009 10:14:57 -0000 1.15 @@ -1 +1 @@ -0e04e85332c99012e3b672e67200ba2a DBIx-SearchBuilder-1.55.tar.gz +484184840b28a8dab8a6b9f82ba0699e DBIx-SearchBuilder-1.56.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 10:14:57 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 10:14:57 +0000 (UTC) Subject: rpms/perl-DBIx-SearchBuilder/devel .cvsignore, 1.14, 1.15 perl-DBIx-SearchBuilder.spec, 1.21, 1.22 sources, 1.14, 1.15 Message-ID: <20090729101457.11B7311C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10417/devel Modified Files: .cvsignore perl-DBIx-SearchBuilder.spec sources Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 18 Jun 2009 03:07:59 -0000 1.14 +++ .cvsignore 29 Jul 2009 10:14:56 -0000 1.15 @@ -1 +1 @@ -DBIx-SearchBuilder-1.55.tar.gz +DBIx-SearchBuilder-1.56.tar.gz Index: perl-DBIx-SearchBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel/perl-DBIx-SearchBuilder.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-DBIx-SearchBuilder.spec 26 Jul 2009 05:25:10 -0000 1.21 +++ perl-DBIx-SearchBuilder.spec 29 Jul 2009 10:14:56 -0000 1.22 @@ -6,8 +6,8 @@ # Name: perl-DBIx-SearchBuilder -Version: 1.55 -Release: 2%{?dist} +Version: 1.56 +Release: 1%{?dist} Summary: Encapsulate SQL queries and rows in simple perl objects License: GPL+ or Artistic Group: Development/Libraries @@ -94,6 +94,9 @@ DBIx::SearchBuilder bindings for Oracle %endif %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.56-1 +- Upstream update. + * Sat Jul 25 2009 Fedora Release Engineering - 1.55-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 18 Jun 2009 03:07:59 -0000 1.14 +++ sources 29 Jul 2009 10:14:56 -0000 1.15 @@ -1 +1 @@ -0e04e85332c99012e3b672e67200ba2a DBIx-SearchBuilder-1.55.tar.gz +484184840b28a8dab8a6b9f82ba0699e DBIx-SearchBuilder-1.56.tar.gz From jdieter at fedoraproject.org Wed Jul 29 10:15:37 2009 From: jdieter at fedoraproject.org (Jonathan Dieter) Date: Wed, 29 Jul 2009 10:15:37 +0000 (UTC) Subject: rpms/deltarpm/devel .cvsignore, 1.4, 1.5 deltarpm.spec, 1.21, 1.22 import.log, 1.2, 1.3 sources, 1.5, 1.6 Message-ID: <20090729101537.B216111C00CE@cvs1.fedora.phx.redhat.com> Author: jdieter Update of /cvs/extras/rpms/deltarpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10641/devel Modified Files: .cvsignore deltarpm.spec import.log sources Log Message: Fix bug in writing xz-compressed rpms Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 27 Jul 2009 15:44:00 -0000 1.4 +++ .cvsignore 29 Jul 2009 10:15:37 -0000 1.5 @@ -1 +1 @@ -deltarpm-git-20090727.tar.bz2 +deltarpm-git-20090729.tar.bz2 Index: deltarpm.spec =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/deltarpm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- deltarpm.spec 27 Jul 2009 18:11:02 -0000 1.21 +++ deltarpm.spec 29 Jul 2009 10:15:37 -0000 1.22 @@ -1,12 +1,12 @@ Summary: Create deltas between rpms Name: deltarpm Version: 3.5 -Release: 0.git.20090727.1%{?dist} +Release: 0.git.20090729%{?dist} License: BSD Group: System Environment/Base URL: http://gitorious.org/deltarpm/deltarpm -Source: ftp://ftp.suse.com/pub/projects/%{name}/%{name}-git-20090727.tar.bz2 +Source: %{name}-git-20090729.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: bzip2-devel, xz-devel, rpm-devel, popt-devel @@ -27,7 +27,7 @@ This package contains a tool to sync a f deltarpms. %prep -%setup -q -n %{name}-git-20090727 +%setup -q -n %{name}-git-20090729 %build %{__make} %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \ @@ -61,6 +61,9 @@ deltarpms. %{_bindir}/drpmsync %changelog +* Wed Jul 29 2009 Jonathan Dieter - 3.5.0.git.20090729 +- Fix bug in writing Fedora's xz-compressed rpms (surely that's the last one) + * Mon Jul 27 2009 Jonathan Dieter - 3.5-0.git.20090727.1 - Fix bug in reading Fedora's xz-compressed rpms Index: import.log =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 27 Jul 2009 18:11:02 -0000 1.2 +++ import.log 29 Jul 2009 10:15:37 -0000 1.3 @@ -1,2 +1,3 @@ deltarpm-3_5-0_git_20090727_fc11:HEAD:deltarpm-3.5-0.git.20090727.fc11.src.rpm:1248709382 deltarpm-3_5-0_git_20090727_1_fc11:HEAD:deltarpm-3.5-0.git.20090727.1.fc11.src.rpm:1248718195 +deltarpm-3_5-0_git_20090729_fc11:HEAD:deltarpm-3.5-0.git.20090729.fc11.src.rpm:1248862477 Index: sources =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 27 Jul 2009 18:11:02 -0000 1.5 +++ sources 29 Jul 2009 10:15:37 -0000 1.6 @@ -1 +1 @@ -faed513a742e0faa89a5fd006e8e02f3 deltarpm-git-20090727.tar.bz2 +da7253de907473d41bd64308ce9167bb deltarpm-git-20090729.tar.bz2 From pbrobinson at fedoraproject.org Wed Jul 29 10:18:18 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 10:18:18 +0000 (UTC) Subject: rpms/clutter-imcontext/devel clutter-imcontext.spec,1.1,1.2 Message-ID: <20090729101818.99AFF11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/clutter-imcontext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12084 Modified Files: clutter-imcontext.spec Log Message: - small spec file cleanups Index: clutter-imcontext.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-imcontext/devel/clutter-imcontext.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- clutter-imcontext.spec 26 Jul 2009 20:15:13 -0000 1.1 +++ clutter-imcontext.spec 29 Jul 2009 10:18:18 -0000 1.2 @@ -38,10 +38,12 @@ Files for development with %{name}. %prep %setup -q + +# run autogen.sh until we have a proper release, but don't run configure twice. sed -i '/configure/d' autogen.sh +./autogen.sh %build -./autogen.sh %configure --disable-static --enable-gtk-doc make %{?_smp_mflags} V=1 @@ -50,7 +52,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. -rm -rf %{buildroot}/%{_libdir}/*.la +find %{buildroot} -name '*.la' -exec rm -f {} ';' %clean rm -rf %{buildroot} From michich at fedoraproject.org Wed Jul 29 10:19:37 2009 From: michich at fedoraproject.org (Michal Schmidt) Date: Wed, 29 Jul 2009 10:19:37 +0000 (UTC) Subject: rpms/tpm-tools/devel tpm-tools.spec,1.5,1.6 Message-ID: <20090729101937.D489111C00CE@cvs1.fedora.phx.redhat.com> Author: michich Update of /cvs/pkgs/rpms/tpm-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12655 Modified Files: tpm-tools.spec Log Message: * Wed Jul 29 2009 Michal Schmidt 1.3.1-9 - Enable pkcs11 support (tpmtoken_* utilities). Index: tpm-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/tpm-tools/devel/tpm-tools.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tpm-tools.spec 27 Jul 2009 06:09:43 -0000 1.5 +++ tpm-tools.spec 29 Jul 2009 10:19:37 -0000 1.6 @@ -1,7 +1,7 @@ %define name tpm-tools %define version 1.3.1 -%define release 8 +%define release 9 Name: %{name} Summary: Management tools for the TPM hardware @@ -12,7 +12,7 @@ Group: Applications/System Source0: http://downloads.sourceforge.net/trousers/%{name}-%{version}.tar.gz URL: http://trousers.sourceforge.net BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: trousers-devel openssl-devel +BuildRequires: trousers-devel openssl-devel opencryptoki-devel Patch0: tpm-tools-conditionally-build-tpmtoken-manpages-Makefile.in.patch %description @@ -35,7 +35,7 @@ necessary for developing tpm-tools appli %patch0 -p1 %build -%configure --disable-pkcs11-support +%configure make %{?_smp_mflags} %install @@ -55,10 +55,12 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc LICENSE README %attr(755, root, root) %{_bindir}/tpm_* +%attr(755, root, root) %{_bindir}/tpmtoken_* %attr(755, root, root) %{_sbindir}/tpm_* %attr(755, root, root) %{_libdir}/libtpm_unseal.so.?.?.? %{_libdir}/libtpm_unseal.so.0 %{_mandir}/man1/tpm_* +%{_mandir}/man1/tpmtoken_* %{_mandir}/man8/tpm_* %files devel @@ -68,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/tpmUnseal* %changelog +* Wed Jul 29 2009 Michal Schmidt 1.3.1-9 +- Enable pkcs11 support (tpmtoken_* utilities). + * Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kwizart at fedoraproject.org Wed Jul 29 10:20:04 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 10:20:04 +0000 (UTC) Subject: rpms/perl-AnyEvent-BDB/devel perl-AnyEvent-BDB.spec, 1.3, 1.4 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 Message-ID: <20090729102004.3350D11C04D4@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12844 Modified Files: perl-AnyEvent-BDB.spec sources .cvsignore Log Message: Update to 1.1 Index: perl-AnyEvent-BDB.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel/perl-AnyEvent-BDB.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-AnyEvent-BDB.spec 26 Jul 2009 01:37:36 -0000 1.3 +++ perl-AnyEvent-BDB.spec 29 Jul 2009 10:20:04 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-BDB -Version: 1.0 -Release: 3%{?dist} +Version: 1.1 +Release: 1%{?dist} Summary: Truly asynchronous Berkeley DB access Group: Development/Libraries @@ -16,7 +16,8 @@ BuildRequires: perl(AnyEvent) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -Truly asynchronous Berkeley DB access. +This module is an AnyEvent user, you need to make sure that you use and run +a supported event loop. %prep %setup -q -n AnyEvent-BDB-%{version} @@ -49,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 kwizart < kwizart at gmail.com > - 1.1-1 +- Update to 1.1 + * Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Dec 2008 17:13:12 -0000 1.2 +++ sources 29 Jul 2009 10:20:04 -0000 1.3 @@ -1 +1 @@ -b2c2b2e216d2e46304b9664756d9aa22 AnyEvent-BDB-1.0.tar.gz +f9328fd98ced3bc078cdfbebcd3e16a4 AnyEvent-BDB-1.1.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Dec 2008 17:13:12 -0000 1.2 +++ .cvsignore 29 Jul 2009 10:20:04 -0000 1.3 @@ -1 +1 @@ -AnyEvent-BDB-1.0.tar.gz +AnyEvent-BDB-1.1.tar.gz From pbrobinson at fedoraproject.org Wed Jul 29 10:22:22 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 10:22:22 +0000 (UTC) Subject: rpms/mux/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE mux.spec, 1.2, NONE sources, 1.2, NONE Message-ID: <20090729102222.22ADB11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13785 Added Files: dead.package Removed Files: Makefile import.log mux.spec sources Log Message: MUX is now dead --- NEW FILE dead.package --- The functionality of this package has been integrated into the nbtk library. This package is no longer being maintained upstream. It was short lived. RIP! --- Makefile DELETED --- --- import.log DELETED --- --- mux.spec DELETED --- --- sources DELETED --- From kwizart at fedoraproject.org Wed Jul 29 10:27:08 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 10:27:08 +0000 (UTC) Subject: rpms/perl-AnyEvent-AIO/devel perl-AnyEvent-AIO.spec,1.3,1.4 Message-ID: <20090729102708.B1E1A11C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15911 Modified Files: perl-AnyEvent-AIO.spec Log Message: Update to 1.1 Index: perl-AnyEvent-AIO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel/perl-AnyEvent-AIO.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-AnyEvent-AIO.spec 26 Jul 2009 01:37:20 -0000 1.3 +++ perl-AnyEvent-AIO.spec 29 Jul 2009 10:27:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-AIO -Version: 1.0 -Release: 3%{?dist} +Version: 1.1 +Release: 1%{?dist} Summary: Truly asynchronous file and directrory I/O Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 kwizart < kwizart at gmail.com > - 1.1-1 +- Update to 1.1 + * Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From fkooman at fedoraproject.org Wed Jul 29 10:29:30 2009 From: fkooman at fedoraproject.org (=?utf-8?q?Fran=C3=A7ois_Kooman?=) Date: Wed, 29 Jul 2009 10:29:30 +0000 (UTC) Subject: rpms/proguard/devel proguard.spec,1.3,1.4 Message-ID: <20090729102930.7747211C00CE@cvs1.fedora.phx.redhat.com> Author: fkooman Update of /cvs/pkgs/rpms/proguard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16351 Modified Files: proguard.spec Log Message: * Wed Jul 29 2009 Fran?ois Kooman - 4.4-3 - put the manual in a sub package - fix permissions of launch scripts to 0755 instead of +x to fix rpmlint warning Index: proguard.spec =================================================================== RCS file: /cvs/pkgs/rpms/proguard/devel/proguard.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- proguard.spec 26 Jul 2009 19:28:17 -0000 1.3 +++ proguard.spec 29 Jul 2009 10:29:30 -0000 1.4 @@ -2,7 +2,7 @@ Name: proguard Version: 4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Java class file shrinker, optimizer, obfuscator and preverifier Group: Development/Tools @@ -47,6 +47,15 @@ renames the remaining classes, fields, a names. Finally, it preverifies the processed code for Java 6 or for Java Micro Edition. +%package manual +Summary: Manual for %{name} +Group: Documentation +Requires: jpackage-utils +Requires: %{name} = %{version}-%{release} + +%description manual +The manual for %{name}. + %prep %setup -qn %{name}%{version} @@ -92,7 +101,7 @@ mkdir -p ${RPM_BUILD_ROOT}%{_bindir} cp -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_bindir}/ cp -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_bindir}/ cp -p %{SOURCE3} ${RPM_BUILD_ROOT}%{_bindir}/ -chmod +x ${RPM_BUILD_ROOT}%{_bindir}/* +chmod 0755 ${RPM_BUILD_ROOT}%{_bindir}/* #install the desktop file for proguardgui desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE4} @@ -111,9 +120,8 @@ cp -p %{name}16.png ${RPM_BUILD_ROOT}%{_ %post %if %{with_gcj} -if [ -x %{_bindir}/rebuild-gcj-db ] -then -%{_bindir}/rebuild-gcj-db +if [ -x %{_bindir}/rebuild-gcj-db ]; then + %{_bindir}/rebuild-gcj-db fi %endif @@ -125,9 +133,8 @@ fi %postun %if %{with_gcj} -if [ -x %{_bindir}/rebuild-gcj-db ] -then -%{_bindir}/rebuild-gcj-db +if [ -x %{_bindir}/rebuild-gcj-db ]; then + %{_bindir}/rebuild-gcj-db fi %endif @@ -151,9 +158,18 @@ rm -rf ${RPM_BUILD_ROOT} %attr(-,root,root) %{_libdir}/gcj/%{name} %endif -%doc README examples/ docs/ README.dist +%doc README examples/ README.dist + +%files manual +%defattr(-,root,root,-) +%doc docs/* %changelog +* Wed Jul 29 2009 Fran?ois Kooman - 4.4-3 +- put the manual in a sub package +- fix permissions of launch scripts to 0755 instead of +x to fix rpmlint + warning + * Sun Jul 26 2009 Fedora Release Engineering - 4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From caolanm at fedoraproject.org Wed Jul 29 10:32:09 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 29 Jul 2009 10:32:09 +0000 (UTC) Subject: rpms/libprojectM/devel libprojectM-ftgl.patch, NONE, 1.1 libprojectM.spec, 1.6, 1.7 Message-ID: <20090729103209.4CAF611C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libprojectM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16900 Modified Files: libprojectM.spec Added Files: libprojectM-ftgl.patch Log Message: Resolves: rhbz#511587 FTBFS libprojectM libprojectM-ftgl.patch: Renderer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libprojectM-ftgl.patch --- --- libprojectM-1.2.0/Renderer.hpp.orig 2009-07-20 12:29:00.000000000 +0100 +++ libprojectM-1.2.0/Renderer.hpp 2009-07-20 12:29:03.000000000 +0100 @@ -24,7 +24,7 @@ #include #include #else -#include +#include #include #include #endif Index: libprojectM.spec =================================================================== RCS file: /cvs/pkgs/rpms/libprojectM/devel/libprojectM.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libprojectM.spec 25 Jul 2009 08:29:16 -0000 1.6 +++ libprojectM.spec 29 Jul 2009 10:32:09 -0000 1.7 @@ -1,6 +1,6 @@ Name: libprojectM Version: 1.2.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: The libraries for the projectM music visualization plugin Group: Applications/Multimedia License: LGPLv2+ @@ -14,6 +14,9 @@ Patch1: libprojectM-pc-libsuffix.patch #Add include stdio.h in BuiltinParams.cpp to fix compile error Patch2: libprojectM-stdio.patch + +# FTGL.h -> ftgl.h to compile +Patch3: libprojectM-ftgl.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ftgl-devel, cmake, glew-devel Requires: dejavu-sans-mono-fonts, dejavu-sans-fonts @@ -39,6 +42,7 @@ developing applications that use %{name} %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 sed -i 's/\r//' ChangeLog %build @@ -75,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 29 2009 Caol?n McNamara - 1.2.0-11 +- Resolves: rhbz#511587 FTBFS libprojectM + * Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Wed Jul 29 10:34:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:34:58 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchcommits Message-ID: <20090729103458.567F610F897@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchcommits acl on libewf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:34:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:34:58 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchbugzilla Message-ID: <20090729103458.CE49E10F89D@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchbugzilla acl on libewf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:34:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:34:58 +0000 Subject: [pkgdb] libewf: richardfearn has requested commit Message-ID: <20090729103459.06CDB10F8A1@bastion2.fedora.phx.redhat.com> richardfearn has requested the commit acl on libewf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:34:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:34:59 +0000 Subject: [pkgdb] libewf: richardfearn has requested approveacls Message-ID: <20090729103459.EF1F310F8B4@bastion2.fedora.phx.redhat.com> richardfearn has requested the approveacls acl on libewf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:09 +0000 Subject: [pkgdb] libewf: richardfearn has requested commit Message-ID: <20090729103510.1E4AF10F8BA@bastion2.fedora.phx.redhat.com> richardfearn has requested the commit acl on libewf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:09 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchcommits Message-ID: <20090729103509.787D310F8B8@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchcommits acl on libewf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:13 +0000 Subject: [pkgdb] libewf: richardfearn has requested approveacls Message-ID: <20090729103513.C230510F89A@bastion2.fedora.phx.redhat.com> richardfearn has requested the approveacls acl on libewf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:16 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchbugzilla Message-ID: <20090729103516.9D67C10F8BC@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchbugzilla acl on libewf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:24 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchbugzilla Message-ID: <20090729103524.AD6B810F89F@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchbugzilla acl on libewf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:25 +0000 Subject: [pkgdb] libewf: richardfearn has requested watchcommits Message-ID: <20090729103525.CC9FA10F8BD@bastion2.fedora.phx.redhat.com> richardfearn has requested the watchcommits acl on libewf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:26 +0000 Subject: [pkgdb] libewf: richardfearn has requested commit Message-ID: <20090729103526.B2B1A10F8C0@bastion2.fedora.phx.redhat.com> richardfearn has requested the commit acl on libewf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:35:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:35:27 +0000 Subject: [pkgdb] libewf: richardfearn has requested approveacls Message-ID: <20090729103527.5B04610F8C3@bastion2.fedora.phx.redhat.com> richardfearn has requested the approveacls acl on libewf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:22 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104922.746F410F856@bastion2.fedora.phx.redhat.com> kwizart has set the watchbugzilla acl on libewf (Fedora 11) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:24 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104924.8FE8510F8A1@bastion2.fedora.phx.redhat.com> kwizart has set the commit acl on libewf (Fedora 11) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:23 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104923.B095F10F89B@bastion2.fedora.phx.redhat.com> kwizart has set the watchcommits acl on libewf (Fedora 11) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:25 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104925.C321810F8B1@bastion2.fedora.phx.redhat.com> kwizart has set the approveacls acl on libewf (Fedora 11) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:31 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104931.17CC310F8B6@bastion2.fedora.phx.redhat.com> kwizart has set the watchbugzilla acl on libewf (Fedora devel) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:31 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104931.8B98D10F8B9@bastion2.fedora.phx.redhat.com> kwizart has set the watchcommits acl on libewf (Fedora devel) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:32 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104932.C4B7910F8BC@bastion2.fedora.phx.redhat.com> kwizart has set the commit acl on libewf (Fedora devel) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:33 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104933.A4EFF10F8BF@bastion2.fedora.phx.redhat.com> kwizart has set the approveacls acl on libewf (Fedora devel) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:40 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104940.78A2510F8C0@bastion2.fedora.phx.redhat.com> kwizart has set the watchbugzilla acl on libewf (Fedora EPEL 5) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:42 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104942.22FB710F8C3@bastion2.fedora.phx.redhat.com> kwizart has set the watchcommits acl on libewf (Fedora EPEL 5) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:47 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104947.107DE10F8C4@bastion2.fedora.phx.redhat.com> kwizart has set the approveacls acl on libewf (Fedora EPEL 5) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From pkgdb at fedoraproject.org Wed Jul 29 10:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 10:49:45 +0000 Subject: [pkgdb] libewf had acl change status Message-ID: <20090729104945.AEA5810F8A1@bastion2.fedora.phx.redhat.com> kwizart has set the commit acl on libewf (Fedora EPEL 5) to Approved for richardfearn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libewf From hadess at fedoraproject.org Wed Jul 29 10:52:44 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 10:52:44 +0000 (UTC) Subject: rpms/nautilus-cd-burner/devel dead.package, NONE, 1.1 Makefile, 1.4, NONE nautilus-cd-burner.spec, 1.117, NONE sources, 1.60, NONE Message-ID: <20090729105244.EDC9911C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/nautilus-cd-burner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21243 Added Files: dead.package Removed Files: Makefile nautilus-cd-burner.spec sources Log Message: nautilus-cd-burner is obsoleted by brasero --- NEW FILE dead.package --- --- Makefile DELETED --- --- nautilus-cd-burner.spec DELETED --- --- sources DELETED --- From kwizart at fedoraproject.org Wed Jul 29 10:55:37 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 10:55:37 +0000 (UTC) Subject: rpms/perl-AnyEvent-AIO/devel perl-AnyEvent-AIO.spec, 1.4, 1.5 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 Message-ID: <20090729105537.D469F11C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22574 Modified Files: perl-AnyEvent-AIO.spec sources .cvsignore Log Message: bump for source Index: perl-AnyEvent-AIO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel/perl-AnyEvent-AIO.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-AnyEvent-AIO.spec 29 Jul 2009 10:27:08 -0000 1.4 +++ perl-AnyEvent-AIO.spec 29 Jul 2009 10:55:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-AIO Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Truly asynchronous file and directrory I/O Group: Development/Libraries @@ -49,7 +49,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 29 2009 kwizart < kwizart at gmail.com > - 1.1-1 +* Wed Jul 29 2009 kwizart < kwizart at gmail.com > - 1.1-2 - Update to 1.1 * Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Dec 2008 17:11:00 -0000 1.2 +++ sources 29 Jul 2009 10:55:37 -0000 1.3 @@ -1 +1 @@ -90205654d87e93ca4bef5299d00677e9 AnyEvent-AIO-1.0.tar.gz +faf3a4fe3dcffb04d27fbbd2c08651b9 AnyEvent-AIO-1.1.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Dec 2008 17:10:59 -0000 1.2 +++ .cvsignore 29 Jul 2009 10:55:37 -0000 1.3 @@ -1 +1 @@ -AnyEvent-AIO-1.0.tar.gz +AnyEvent-AIO-1.1.tar.gz From mmahut at fedoraproject.org Wed Jul 29 11:03:04 2009 From: mmahut at fedoraproject.org (Marek Mahut) Date: Wed, 29 Jul 2009 11:03:04 +0000 (UTC) Subject: rpms/gnuradio/F-11 gnuradio.spec,1.13,1.14 sources,1.5,1.6 Message-ID: <20090729110304.CCED911C00CE@cvs1.fedora.phx.redhat.com> Author: mmahut Update of /cvs/pkgs/rpms/gnuradio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24108 Modified Files: gnuradio.spec sources Log Message: Upstream release 3.2.2 Index: gnuradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/F-11/gnuradio.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gnuradio.spec 27 Jul 2009 14:13:24 -0000 1.13 +++ gnuradio.spec 29 Jul 2009 11:03:04 -0000 1.14 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gnuradio -Version: 3.2 +Version: 3.2.2 Release: 1%{?dist} Summary: Software defined radio framework @@ -12,7 +12,6 @@ Source0: ftp://ftp.gnu.org/gnu/gnuradio/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: 10-usrp.rules Patch0: gnuradio-3.2-libtool.patch -Patch1: gnuradio-3.2-gcc44.patch Requires(pre): shadow-utils BuildRequires: sdcc @@ -94,7 +93,6 @@ GNU Radio USRP headers %prep %setup -q %patch0 -p1 -b .libtool -%patch1 -p1 -b .gcc44 %build export PATH=%{_libexecdir}/sdcc:$PATH @@ -172,6 +170,10 @@ getent group usrp >/dev/null || groupadd %{_includedir}/usrp_* %changelog +* Wed Jul 29 2009 Marek Mahut - 3.2.2-1 +- Upstream release 3.2.2 +- Dropped patch gnuradio-3.2-gcc44.patch + * Sat Jul 25 2009 Marek Mahut - 3.2-1 - Upstream release 3.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 27 Jul 2009 14:13:24 -0000 1.5 +++ sources 29 Jul 2009 11:03:04 -0000 1.6 @@ -1 +1 @@ -9d91d0f8f2cb35bc86435784fa8e72d8 gnuradio-3.2.tar.gz +3fedcd64c2f51671cc1417b4c1e06834 gnuradio-3.2.2.tar.gz From corsepiu at fedoraproject.org Wed Jul 29 11:04:16 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Wed, 29 Jul 2009 11:04:16 +0000 (UTC) Subject: rpms/SoQt/devel qt4-fixes.patch,NONE,1.1 SoQt.spec,1.30,1.31 Message-ID: <20090729110416.4E6BE11C00CE@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/SoQt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24433 Modified Files: SoQt.spec Added Files: qt4-fixes.patch Log Message: * Wed Jul 29 2009 Ralf Cors?pius - 1.4.1-12 - Switch to qt4. qt4-fixes.patch: SoQt.cpp | 5 +++-- widgets/QtNativePopupMenu.cpp | 33 ++++++++++++++++++++++++++------- 2 files changed, 29 insertions(+), 9 deletions(-) --- NEW FILE qt4-fixes.patch --- --- cvs.orig/src/Inventor/Qt/SoQt.cpp +++ cvs/src/Inventor/Qt/SoQt.cpp @@ -622,7 +622,7 @@ // spaceball devices.) class SoQtApplication : public QApplication { public: - SoQtApplication(int argc, char ** argv) : QApplication(argc, argv) { + SoQtApplication(int & argc, char ** argv) : QApplication(argc, argv) { #ifdef HAVE_X11_AVAILABLE this->display = NULL; #endif // HAVE_X11_AVAILABLE @@ -719,7 +719,8 @@ // use a static char array to store the dummy argv parameters static char * dummyargv[1]; dummyargv[0] = "SoQt"; - SoQtP::appobject = new SoQtApplication(1, (char **) dummyargv); + int argc = 1; + SoQtP::appobject = new SoQtApplication(argc, (char **) dummyargv); SoQtP::madeappobject = TRUE; } else { --- cvs.orig/src/Inventor/Qt/widgets/QtNativePopupMenu.cpp +++ cvs/src/Inventor/Qt/widgets/QtNativePopupMenu.cpp @@ -33,6 +33,9 @@ // wrt Qt 4 properly. 20050629 mortene. #define QT3_SUPPORT +// FIXME: create a new Qt4NativePopupMenu. There are just too +// many differences between Qt3 menu handling and Qt4 menu handling. + #include // ************************************************************************* @@ -121,6 +124,10 @@ delete [] rec->title; delete rec; } + + delete this->menus; + delete this->items; + } // ~QtNativePopupMenu() // ************************************************************************* @@ -328,11 +335,14 @@ rec->flags |= ITEM_MARKED; else rec->flags &= ~ITEM_MARKED; + if (rec->parent != NULL) { -#if QT_VERSION >= 0x040000 // Qt 4.* +#if QT_VERSION >= 0x040000 // FIXME: is this really safe? (20050727 frodo) QAction * action = (QAction *) rec->parent->findItem(itemid); - if (action) action->setChecked(marked ? true : false); + if (action) { + action->setChecked(marked ? true : false); + } #else rec->parent->setItemChecked(rec->itemid, marked ? true : false); #endif @@ -350,6 +360,11 @@ assert(rec && "no such menu"); if (rec->parent == NULL) return (rec->flags & ITEM_MARKED) ? TRUE : FALSE; + +#if QT_VERSION >= 0x040400 + QAction * action = (QAction *) rec->parent->findItem(itemid); + if (action) return action->isChecked(); +#endif return rec->parent->isItemChecked(rec->itemid) ? TRUE : FALSE; } // getMenuItemMarked() @@ -373,10 +388,14 @@ // itemActivation(). Multiple calls to itemActivation() causes a // segfault when selecting Quadbuffer stereo, at least when it's not // supported. (20050726 frodo) -#if QT_VERSION >= 0x040000 // Qt 4.* + + // this was changed/fixed again in Qt 4.4.0, so now we shouldn't + // disconnect menu items if this version is detected... + // (20070530 pederb) +#if (QT_VERSION >= 0x040000) && (QT_VERSION < 0x040400) QObject::disconnect(sub->menu, SIGNAL(activated(int)), this, SLOT(itemActivation(int))); -#endif +#endif // QT-version >= 400 && QT-version < 4.4.0 if (pos == -1) super->menu->insertItem(QString(sub->title), sub->menu, sub->menuid); @@ -405,14 +424,14 @@ menu->menu->insertItem(QString(item->title), item->itemid, pos); item->parent = menu->menu; -#if QT_VERSION >= 0x040000 // Qt 4.* +#if QT_VERSION >= 0x040000 // FIXME: is this really safe? (20050726 frodo) QAction * action = (QAction *) item->parent->findItem(itemid); if (action) action->setCheckable(true); #endif // Qt 4.* if (item->flags & ITEM_MARKED) { -#if QT_VERSION >= 0x040000 // Qt 4.* +#if QT_VERSION >= 0x040000 if (action) action->setChecked(true); #else item->parent->setItemChecked(item->itemid, true); @@ -554,7 +573,7 @@ rec->name = strcpy(new char [strlen(name)+1], name); rec->title = strcpy(new char [strlen(name)+1], name); -#if QT_VERSION >= 0x040000 // Qt 4.* +#if QT_VERSION >= 0x040000 rec->menu = new QPOPUPMENU_CLASS(QString(name)); #else rec->menu = new QPOPUPMENU_CLASS((QWidget *) NULL, name); Index: SoQt.spec =================================================================== RCS file: /cvs/pkgs/rpms/SoQt/devel/SoQt.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- SoQt.spec 24 Jul 2009 16:23:52 -0000 1.30 +++ SoQt.spec 29 Jul 2009 11:04:15 -0000 1.31 @@ -4,7 +4,7 @@ Summary: High-level 3D visualization library Name: SoQt Version: 1.4.1 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -12,11 +12,14 @@ URL: http://www.coin3d.org Source: ftp://ftp.coin3d.org/pub/coin/src/SoQt-%{version}.tar.gz -Patch2: SoQt-1.2.0-man3.diff +Patch0: SoQt-1.2.0-man3.diff +# Debian soqt4 patch +Patch1: http://patch-tracking.debian.net/patch/series/dl/soqt/1.4.1-6/qt4-fixes.patch BuildRequires: doxygen BuildRequires: /usr/bin/iconv -BuildRequires: Coin2-devel qt3-devel +BuildRequires: Coin2-devel +BuildRequires: qt4-devel BuildRequires: libXi-devel Provides: Coin2-SoQt = %{version}-%{release} @@ -35,7 +38,9 @@ InventorXt GUI component toolkit. Summary: Development files for SoQt Requires: %{name} = %{version}-%{release} Requires: %{_datadir}/aclocal -Requires: Coin2-devel qt3-devel +Requires: Coin2-devel +Requires: qt4-devel + Requires: libXi-devel Provides: Coin2-SoQt-devel = %{version}-%{release} Group: Development/Libraries @@ -45,7 +50,8 @@ Development package for SoQt %prep %setup -q -%patch2 -p1 +%patch0 -p1 +%patch1 -p1 # HACK ALERT # The sources are ISO-8859-1 encoded @@ -55,14 +61,15 @@ sed -i \ src/Inventor/Qt/common/sogui.doxygen.in %build -[ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/qt.sh %configure \ --includedir=%{coin_includedir} \ --without-mesa \ --disable-dependency-tracking \ --enable-man \ --enable-html \ - htmldir=%{coin_htmldir}/SoQt + --with-qt=%{_libdir}/qt4 \ + htmldir=%{coin_htmldir}/SoQt \ + CPPFLAGS="${CPPFLAGS} -I%{_includedir}/Qt" make # Strip the default libdir @@ -105,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/*.?.gz %changelog +* Wed Jul 29 2009 Ralf Cors?pius - 1.4.1-12 +- Switch to qt4. + * Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From red at fedoraproject.org Wed Jul 29 11:10:27 2009 From: red at fedoraproject.org (Sandro Mathys) Date: Wed, 29 Jul 2009 11:10:27 +0000 (UTC) Subject: rpms/mailody/devel import.log, NONE, 1.1 mailody.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729111027.5871B11C04D6@cvs1.fedora.phx.redhat.com> Author: red Update of /cvs/pkgs/rpms/mailody/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25993/devel Modified Files: .cvsignore sources Added Files: import.log mailody.spec Log Message: initial import --- NEW FILE import.log --- mailody-1_5_0-0_4_alfa1_fc11:HEAD:mailody-1.5.0-0.4.alfa1.fc11.src.rpm:1248857745 --- NEW FILE mailody.spec --- %global alphatag alfa1 Name: mailody Version: 1.5.0 Release: 0.4.%{alphatag}%{?dist} Summary: Simple mail client Group: Applications/Communications License: GPLv2+ URL: http://www.mailody.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}4-%{version}%{alphatag}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake BuildRequires: kdepimlibs-devel BuildRequires: kdelibs4-devel BuildRequires: gettext BuildRequires: desktop-file-utils Requires: kdepimlibs-akonadi %description mailody is yet another mail client. While it uses the akonadi backend from KDE4 it can handle IMAP and SMTP only, even though support for MAPI is planned. It's actually some sort of mixture betweend the popular KMail and Thunderbird mail clients and can share some settings with the former. %prep %setup -q -n %{name}4-%{version}%{alphatag} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_flags} VERBOSE=1 -C %{_target_platform} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform} %find_lang %{name} desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/kde4/%{name}.desktop %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS %{_kde4_docdir}/HTML/en/doc/ %{_kde4_bindir}/mailody %{_kde4_datadir}/applications/kde4/mailody.desktop %{_kde4_datadir}/dbus-1/interfaces/net.mailody.mainwindow.xml %{_kde4_datadir}/icons/hicolor/*/apps/mailody.png %{_kde4_datadir}/icons/hicolor/16x16/actions/label*.png %{_kde4_datadir}/kde4/apps/mailody/ %changelog * Wed Jul 29 2009 Sandro Mathys - 1.5.0-0.4.alfa1 - Last tiny improvements out of the review * Tue Jul 28 2009 Sandro Mathys - 1.5.0-0.3.alfa1 - Changed KDE4-specific stuff according to the review * Tue Jun 09 2009 Sandro Mathys - 1.5.0-0.2.alfa1 - Added kdepimlibs-akonadi to the Requires - Now does desktop-file-validate (and has BuildRequires: desktop-file-utils) - Some simple changes to the style of the spec file itself * Fri Jun 05 2009 Sandro Mathys - 1.5.0-0.1.alfa1 - initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mailody/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:02:55 -0000 1.1 +++ .cvsignore 29 Jul 2009 11:10:26 -0000 1.2 @@ -0,0 +1 @@ +mailody4-1.5.0alfa1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mailody/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:02:55 -0000 1.1 +++ sources 29 Jul 2009 11:10:26 -0000 1.2 @@ -0,0 +1 @@ +e217745b1cd60dee2a662e258e7cb78c mailody4-1.5.0alfa1.tar.bz2 From sharkcz at fedoraproject.org Wed Jul 29 11:19:16 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 29 Jul 2009 11:19:16 +0000 (UTC) Subject: rpms/scribus/devel scribus.spec,1.46,1.47 Message-ID: <20090729111916.F21FD11C00CE@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/scribus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27492 Modified Files: scribus.spec Log Message: * Wed Jul 29 2009 Dan Hor?k - 1.3.5-0.17.rc3 - don't use parallel build on s390x Index: scribus.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribus/devel/scribus.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- scribus.spec 27 Jul 2009 04:01:57 -0000 1.46 +++ scribus.spec 29 Jul 2009 11:19:16 -0000 1.47 @@ -1,6 +1,6 @@ Name: scribus Version: 1.3.5 -Release: 0.16.rc3%{?dist} +Release: 0.17.rc3%{?dist} Summary: DeskTop Publishing application written in Qt @@ -94,7 +94,13 @@ mkdir build pushd build %cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} .. +%ifnarch s390x make VERBOSE=1 %{?_smp_mflags} +%else +# we can't use parallel build on s390x, because g++ eats almost all memory +# in the builder (2+0.5 GB) when compiling scribus134format.cpp +make VERBOSE=1 +%endif popd @@ -171,6 +177,9 @@ update-mime-database %{_datadir}/mime > %changelog +* Wed Jul 29 2009 Dan Hor?k - 1.3.5-0.17.rc3 +- don't use parallel build on s390x + * Sun Jul 26 2009 Fedora Release Engineering - 1.3.5-0.16.rc3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jhrozek at fedoraproject.org Wed Jul 29 11:21:47 2009 From: jhrozek at fedoraproject.org (Jakub Hrozek) Date: Wed, 29 Jul 2009 11:21:47 +0000 (UTC) Subject: rpms/sssd/devel sssd-0.4.1-cve-2009-2410.patch, NONE, 1.1 sssd.spec, 1.16, 1.17 Message-ID: <20090729112147.5186411C00CE@cvs1.fedora.phx.redhat.com> Author: jhrozek Update of /cvs/extras/rpms/sssd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28018 Modified Files: sssd.spec Added Files: sssd-0.4.1-cve-2009-2410.patch Log Message: Fix for CVE-2009-2410 - Native SSSD users with no password set could log in without a password. (Patch by Stephen Gallagher) sssd-0.4.1-cve-2009-2410.patch: pam_LOCAL_domain.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE sssd-0.4.1-cve-2009-2410.patch --- >From 52ef221f3f5fc65c96d35ecaa7eb8a7a67ce6e4b Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 28 Jul 2009 09:43:57 -0400 Subject: [PATCH] Address CVE-2009-2410 Fix incorrect error code return in local_handler_callback --- server/responder/pam/pam_LOCAL_domain.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/responder/pam/pam_LOCAL_domain.c b/server/responder/pam/pam_LOCAL_domain.c index 010bd8d..48a4a81 100644 --- a/server/responder/pam/pam_LOCAL_domain.c +++ b/server/responder/pam/pam_LOCAL_domain.c @@ -327,7 +327,7 @@ static void local_handler_callback(void *pvt, int ldb_status, password = ldb_msg_find_attr_as_string(res->msgs[0], SYSDB_PWD, NULL); NULL_CHECK_OR_JUMP(password, ("No password stored.\n"), - lreq->error, ret, done); + lreq->error, LDB_ERR_NO_SUCH_ATTRIBUTE, done); DEBUG(4, ("user: [%s], password hash: [%s]\n", username, password)); ret = s3crypt_sha512(lreq, authtok, password, &new_hash); -- 1.6.2.5 Index: sssd.spec =================================================================== RCS file: /cvs/extras/rpms/sssd/devel/sssd.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sssd.spec 27 Jul 2009 04:48:02 -0000 1.16 +++ sssd.spec 29 Jul 2009 11:21:47 -0000 1.17 @@ -1,6 +1,6 @@ Name: sssd Version: 0.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/System Summary: System Security Services Daemon @@ -16,6 +16,7 @@ Patch010: sssd-0.4.1-debug_fn.patch Patch011: sssd-0.4.1-conf_check.patch Patch012: sssd-0.4.1-reload_conf.patch Patch013: sssd-0.4.1-reload_conf_2.patch +Patch014: sssd-0.4.1-cve-2009-2410.patch ### Dependencies ### @@ -62,6 +63,7 @@ services for projects like FreeIPA. %patch011 -p1 -b .conf_check %patch012 -p1 -b .reload_conf %patch013 -p1 -b .reload_conf_2 +%patch014 -p1 -b .cve-2009-2410 %build %configure \ @@ -135,6 +137,10 @@ if [ $1 -ge 1 ] ; then fi %changelog +* Wed Jul 29 2009 Jakub Hrozek - 0.4.1-4 +- Fix for CVE-2009-2410 - Native SSSD users with no password set could log in + without a password. (Patch by Stephen Gallagher) + * Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pingou at fedoraproject.org Wed Jul 29 11:27:02 2009 From: pingou at fedoraproject.org (pingou) Date: Wed, 29 Jul 2009 11:27:02 +0000 (UTC) Subject: rpms/geanyvc/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE geanyvc.spec, 1.4, NONE import.log, 1.1, NONE sources, 1.2, NONE Message-ID: <20090729112702.1637C11C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/geanyvc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29987/devel Added Files: dead.package Removed Files: Makefile geanyvc.spec import.log sources Log Message: Remove geanyvc from devel --- NEW FILE dead.package --- geanyvc is not provided by geany-plugins --- Makefile DELETED --- --- geanyvc.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From jhrozek at fedoraproject.org Wed Jul 29 11:27:20 2009 From: jhrozek at fedoraproject.org (Jakub Hrozek) Date: Wed, 29 Jul 2009 11:27:20 +0000 (UTC) Subject: rpms/sssd/F-11 sssd-0.4.1-cve-2009-2410.patch, NONE, 1.1 sssd.spec, 1.20, 1.21 Message-ID: <20090729112720.0FDA711C00CE@cvs1.fedora.phx.redhat.com> Author: jhrozek Update of /cvs/extras/rpms/sssd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30036 Modified Files: sssd.spec Added Files: sssd-0.4.1-cve-2009-2410.patch Log Message: Fix for CVE-2009-2410 - Native SSSD users with no password set could log in without a password. (Patch by Stephen Gallagher) sssd-0.4.1-cve-2009-2410.patch: pam_LOCAL_domain.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE sssd-0.4.1-cve-2009-2410.patch --- >From 52ef221f3f5fc65c96d35ecaa7eb8a7a67ce6e4b Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 28 Jul 2009 09:43:57 -0400 Subject: [PATCH] Address CVE-2009-2410 Fix incorrect error code return in local_handler_callback --- server/responder/pam/pam_LOCAL_domain.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/responder/pam/pam_LOCAL_domain.c b/server/responder/pam/pam_LOCAL_domain.c index 010bd8d..48a4a81 100644 --- a/server/responder/pam/pam_LOCAL_domain.c +++ b/server/responder/pam/pam_LOCAL_domain.c @@ -327,7 +327,7 @@ static void local_handler_callback(void *pvt, int ldb_status, password = ldb_msg_find_attr_as_string(res->msgs[0], SYSDB_PWD, NULL); NULL_CHECK_OR_JUMP(password, ("No password stored.\n"), - lreq->error, ret, done); + lreq->error, LDB_ERR_NO_SUCH_ATTRIBUTE, done); DEBUG(4, ("user: [%s], password hash: [%s]\n", username, password)); ret = s3crypt_sha512(lreq, authtok, password, &new_hash); -- 1.6.2.5 Index: sssd.spec =================================================================== RCS file: /cvs/extras/rpms/sssd/F-11/sssd.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sssd.spec 22 Jun 2009 14:47:06 -0000 1.20 +++ sssd.spec 29 Jul 2009 11:27:19 -0000 1.21 @@ -1,6 +1,6 @@ Name: sssd Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/System Summary: System Security Services Daemon @@ -16,6 +16,7 @@ Patch010: sssd-0.4.1-debug_fn.patch Patch011: sssd-0.4.1-conf_check.patch Patch012: sssd-0.4.1-reload_conf.patch Patch013: sssd-0.4.1-reload_conf_2.patch +Patch014: sssd-0.4.1-cve-2009-2410.patch ### Dependencies ### @@ -62,6 +63,7 @@ services for projects like FreeIPA. %patch011 -p1 -b .conf_check %patch012 -p1 -b .reload_conf %patch013 -p1 -b .reload_conf_2 +%patch014 -p1 -b .cve-2009-2410 %build %configure \ @@ -135,6 +137,10 @@ if [ $1 -ge 1 ] ; then fi %changelog +* Wed Jul 29 2009 Jakub Hrozek - 0.4.1-3 +- Fix for CVE-2009-2410 - Native SSSD users with no password set could log in + without a password. (Patch by Stephen Gallagher) + * Mon Jun 22 2009 Simo Sorce - 0.4.1-2 - Fix a couple of segfaults that may happen on reload From pkgdb at fedoraproject.org Wed Jul 29 11:27:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:27:53 +0000 Subject: [pkgdb] xz had acl change status Message-ID: <20090729112753.7BB1410F897@bastion2.fedora.phx.redhat.com> jnovy has set the watchbugzilla acl on xz (Fedora devel) to Approved for toshio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pingou at fedoraproject.org Wed Jul 29 11:28:19 2009 From: pingou at fedoraproject.org (pingou) Date: Wed, 29 Jul 2009 11:28:19 +0000 (UTC) Subject: rpms/geanyvc/F-11 dead.package, NONE, 1.1 Makefile, 1.1, NONE branch, 1.1, NONE geanyvc.spec, 1.3, NONE import.log, 1.1, NONE sources, 1.2, NONE Message-ID: <20090729112819.4DFF811C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/geanyvc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30356/F-11 Added Files: dead.package Removed Files: Makefile branch geanyvc.spec import.log sources Log Message: Remove geanyvc from F-11 --- NEW FILE dead.package --- geanyvc is not provided by geany-plugins --- Makefile DELETED --- --- branch DELETED --- --- geanyvc.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 11:27:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:27:56 +0000 Subject: [pkgdb] xz had acl change status Message-ID: <20090729112756.9ACC410F89F@bastion2.fedora.phx.redhat.com> jnovy has set the watchcommits acl on xz (Fedora devel) to Approved for toshio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pingou at fedoraproject.org Wed Jul 29 11:29:02 2009 From: pingou at fedoraproject.org (pingou) Date: Wed, 29 Jul 2009 11:29:02 +0000 (UTC) Subject: rpms/geanyvc/F-11 .cvsignore,1.2,NONE Message-ID: <20090729112902.D719811C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/geanyvc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30535/F-11 Removed Files: .cvsignore Log Message: Remove last file from F-11 --- .cvsignore DELETED --- From pbrobinson at fedoraproject.org Wed Jul 29 11:33:00 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 11:33:00 +0000 (UTC) Subject: rpms/mutter/devel mutter-pluginmanager.patch, NONE, 1.1 mutter.spec, 1.2, 1.3 Message-ID: <20090729113300.B5BDF11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31229 Modified Files: mutter.spec Added Files: mutter-pluginmanager.patch Log Message: - Add patch to fix mutter --replace mutter-pluginmanager.patch: mutter-plugin-manager.c | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) --- NEW FILE mutter-pluginmanager.patch --- >From d91d503eb25412432e8aa9b4863d469d5828a4b7 Mon Sep 17 00:00:00 2001 From: Owen W. Taylor Date: Wed, 22 Jul 2009 18:37:43 +0000 Subject: Pass event to clutter when the plugin doesn't have xevent_filter With recent changes, Clutter no longer sets up the viewport correctly, unless it receives ConfigureNotify events. If there is a plugin with an xevent_filter function, then it's that plugins responsibility to pass the event to Clutter if it doesn't want it. If there is no plugin, or the plugin doesn't have an xevent_filter function, then we should call clutter_x11_handle_event() ourselves. http://bugzilla.gnome.org/show_bug.cgi?id=589419 --- diff --git a/src/compositor/mutter-plugin-manager.c b/src/compositor/mutter-plugin-manager.c index 98d3f19..9d8ae74 100644 --- a/src/compositor/mutter-plugin-manager.c +++ b/src/compositor/mutter-plugin-manager.c @@ -30,6 +30,8 @@ #include +#include + /* * There is only one instace of each module per the process. */ @@ -585,12 +587,31 @@ mutter_plugin_manager_xevent_filter (MutterPluginManager *plugin_mgr, XEvent *xev) { GList *l; + gboolean have_plugin_xevent_func; if (!plugin_mgr) return FALSE; l = plugin_mgr->plugins; + /* We need to make sure that clutter gets certain events, like + * ConfigureNotify on the stage window. If there is a plugin that + * provides an xevent_filter function, then it's the responsibility + * of that plugin to pass events to Clutter. Otherwise, we send the + * event directly to Clutter ourselves. + * + * What happens if there are two plugins with xevent_filter functions + * is undefined; in general, multiple competing plugins are something + * we don't support well or care much about. + * + * FIXME: Really, we should just always handle sending the event to + * clutter if a plugin doesn't report the event as handled by + * returning TRUE, but it doesn't seem worth breaking compatibility + * of the plugin interface right now to achieve this; the way it is + * now works fine in practice. + */ + have_plugin_xevent_func = FALSE; + while (l) { MutterPlugin *plugin = l->data; @@ -598,6 +619,7 @@ mutter_plugin_manager_xevent_filter (MutterPluginManager *plugin_mgr, if (klass->xevent_filter) { + have_plugin_xevent_func = TRUE; if (klass->xevent_filter (plugin, xev) == TRUE) return TRUE; } @@ -605,5 +627,8 @@ mutter_plugin_manager_xevent_filter (MutterPluginManager *plugin_mgr, l = l->next; } + if (!have_plugin_xevent_func) + return clutter_x11_handle_event (xev) != CLUTTER_X11_FILTER_CONTINUE; + return FALSE; } -- cgit v0.8.2 Index: mutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/mutter/devel/mutter.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mutter.spec 25 Jul 2009 15:27:13 -0000 1.2 +++ mutter.spec 29 Jul 2009 11:33:00 -0000 1.3 @@ -1,12 +1,13 @@ Name: mutter Version: 2.27.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Window and compositing manager based on Clutter Group: User Interface/Desktops License: GPLv2+ URL: http://git.gnome.org/cgit/mutter Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 +Patch0: mutter-pluginmanager.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel @@ -61,6 +62,7 @@ utilities for testing Metacity/Mutter th %prep %setup -q +%patch0 -p1 -b .pluginmanager %build %configure --with-clutter --disable-static @@ -147,6 +149,9 @@ gconftool-2 --makefile-install-rule \ %doc %{_mandir}/man1/mutter-window-demo.1.gz %changelog +* Wed Jul 29 2009 Peter Robinson 2.27.1-4 +- Add patch to fix mutter --replace + * Sat Jul 25 2009 Fedora Release Engineering - 2.27.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From michich at fedoraproject.org Wed Jul 29 11:36:28 2009 From: michich at fedoraproject.org (Michal Schmidt) Date: Wed, 29 Jul 2009 11:36:28 +0000 (UTC) Subject: rpms/tpm-tools/devel tpm-tools.spec,1.6,1.7 Message-ID: <20090729113628.E21CD11C00CE@cvs1.fedora.phx.redhat.com> Author: michich Update of /cvs/pkgs/rpms/tpm-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32082 Modified Files: tpm-tools.spec Log Message: * Wed Jul 29 2009 Michal Schmidt 1.3.1-10 - Split the pkcs11 utilities into a subpackage. Index: tpm-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/tpm-tools/devel/tpm-tools.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tpm-tools.spec 29 Jul 2009 10:19:37 -0000 1.6 +++ tpm-tools.spec 29 Jul 2009 11:36:28 -0000 1.7 @@ -1,7 +1,6 @@ - %define name tpm-tools %define version 1.3.1 -%define release 9 +%define release 10 Name: %{name} Summary: Management tools for the TPM hardware @@ -21,14 +20,26 @@ Group's TPM hardware. TPM hardware can c securely (without ever being exposed in memory), verify a platform's software state using cryptographic hashes and more. +%package pkcs11 +Summary: Management tools using PKCS#11 for the TPM hardware +Group: Applications/System +# opencryptoki is dlopen'd, the Requires won't get picked up automatically +Requires: opencryptoki-libs%{?_isa} + +%description pkcs11 +tpm-tools-pkcs11 is a group of tools that use the TPM PKCS#11 token. All data +contained in the PKCS#11 data store is protected by the TPM (keys, +certificates, etc.). You can import keys and certificates, list out the +objects in the data store, and protect data. + %package devel Summary: Files to use the library routines supplied with tpm-tools Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel -%{name}-devel is a package that contains the libraries and headers -necessary for developing tpm-tools applications. +tpm-tools-devel is a package that contains the libraries and headers necessary +for developing tpm-tools applications. %prep %setup -q @@ -55,14 +66,17 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc LICENSE README %attr(755, root, root) %{_bindir}/tpm_* -%attr(755, root, root) %{_bindir}/tpmtoken_* %attr(755, root, root) %{_sbindir}/tpm_* %attr(755, root, root) %{_libdir}/libtpm_unseal.so.?.?.? %{_libdir}/libtpm_unseal.so.0 %{_mandir}/man1/tpm_* -%{_mandir}/man1/tpmtoken_* %{_mandir}/man8/tpm_* +%files pkcs11 +%defattr(-,root,root,-) +%attr(755, root, root) %{_bindir}/tpmtoken_* +%{_mandir}/man1/tpmtoken_* + %files devel %defattr(-,root,root,-) %{_libdir}/libtpm_unseal.so @@ -70,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/tpmUnseal* %changelog +* Wed Jul 29 2009 Michal Schmidt 1.3.1-10 +- Split the pkcs11 utilities into a subpackage. + * Wed Jul 29 2009 Michal Schmidt 1.3.1-9 - Enable pkcs11 support (tpmtoken_* utilities). From fabbione at fedoraproject.org Wed Jul 29 11:37:07 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 29 Jul 2009 11:37:07 +0000 (UTC) Subject: rpms/resource-agents/devel .cvsignore, 1.10, 1.11 resource-agents.spec, 1.11, 1.12 sources, 1.10, 1.11 Message-ID: <20090729113707.1C5BF11C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/resource-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32305 Modified Files: .cvsignore resource-agents.spec sources Log Message: Merge Pacemaker cluster agents Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 8 Jul 2009 20:40:50 -0000 1.10 +++ .cvsignore 29 Jul 2009 11:37:06 -0000 1.11 @@ -1 +1,2 @@ resource-agents-3.0.0.tar.gz +3aa338887920.tar.gz Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/resource-agents.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- resource-agents.spec 27 Jul 2009 02:59:27 -0000 1.11 +++ resource-agents.spec 29 Jul 2009 11:37:06 -0000 1.12 @@ -16,14 +16,21 @@ # keep around ready for later user ## define alphatag rc4 +# When downloading directly from Mercurial, it will automatically add this prefix +# Invoking 'hg archive' wont but you can add one with: +# hg archive -t tgz -p "Cluster-Resource-Agents-" -r $altversion $altversion.tar.gz +%define altprefix Cluster-Resource-Agents- +%define altversion 3aa338887920 + Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 13%{?alphatag:.%{alphatag}}%{?dist} +Release: 14%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ Source0: ftp://sources.redhat.com/pub/cluster/releases/resource-agents-%{version}%{?alphatag:.%{alphatag}}.tar.gz +Source1: http://hg.linux-ha.org/agents/archive/%{altversion}.tar.gz ## Runtime deps Requires: bash grep sed gawk @@ -32,51 +39,92 @@ Requires: net-tools mount e2fsprogs ## Setup/build bits BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildArch: noarch - -# Build dependencies (sed / bash) -# BuildRequires: -%prep -%setup -q -n resource-agents-%{version}%{?alphatag:.%{alphatag}} +# Build dependencies +BuildRequires: cluster-glue-libs-devel glib2-devel +BuildRequires: automake autoconf pkgconfig # we inherit configure from cluster project. Configure it for vars we need. # building from source directly without those parameters will NOT work. # See http://www.redhat.com/archives/cluster-devel/2009-February/msg00003.html -%build -./configure \ +%prep +%setup -q -n resource-agents-%{version}%{?alphatag:.%{alphatag}} -a 1 + +# prepare rgmanager RAs +%{_configure} \ --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ --without_fence_agents \ --disable_kernel_check +# prepare pacemaker RAs +cd %{altprefix}%{altversion} +./autogen.sh +%{_configure} \ + CFLAGS="$(echo '%{optflags}')" \ + --enable-fatal-warnings=no + +%build ##CFLAGS="$(echo '%{optflags}')" make %{_smp_mflags} # %{_smp_mflags} is broken from upstream and unrequired for this project. CFLAGS="$(echo '%{optflags}')" make -C rgmanager/src/resources +cd %{altprefix}%{altversion} +make %{_smp_mflags} %install rm -rf %{buildroot} make -C rgmanager/src/resources install DESTDIR=%{buildroot} +make -C %{altprefix}%{altversion} install DESTDIR=%{buildroot} + +# tree fixup +rm %{buildroot}/%{_libdir}/heartbeat/ocf-* +find %{buildroot} -type f -name '.ocf-*' -exec chmod 644 {} \; +find %{buildroot} -type f -name 'ocf-*' -exec chmod 644 {} \; +find %{buildroot} -type f -name '*.dtd' -exec chmod 644 {} \; +chmod 755 %{buildroot}/%{_sbindir}/ocf-tester +chmod 755 %{buildroot}/%{_datadir}/cluster/ocf-shellfuncs %clean rm -rf %{buildroot} %description -Red Hat Resource Agents provides a set of scripts to interface with several -services to operate in a High Availability environment. +A set of scripts to interface with several services to operate in a +High Availability environment for both Pacemaker and rgmanager +service managers. %files %defattr(-,root,root,-) %doc doc/COPYING.* doc/COPYRIGHT doc/README.licence +%doc %{altprefix}%{altversion}/AUTHORS %{_datadir}/cluster +%dir /usr/lib/ocf +%dir /usr/lib/ocf/resource.d +/usr/lib/ocf/resource.d/heartbeat +%{_sbindir}/ocf-tester +%{_sbindir}/sfex_init + +%dir %{_datadir}/glue +%doc %{_datadir}/glue/ra-api-1.dtd + +%dir %{_libdir}/heartbeat +%{_libdir}/heartbeat/send_arp +%{_libdir}/heartbeat/sfex_daemon + %changelog +* Wed Jul 29 2009 Fabio M. Di Nitto - 3.0.0-14 +- Merge Pacemaker cluster resource agents: + * Add Source1. + * Drop noarch. We have real binaries now. + * Update BuildRequires. + * Update all relevant prep/build/install/files/description sections. + * Sun Jul 26 2009 Fedora Release Engineering - 3.0.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-12 -- - spec file updates: +- spec file updates: * Update copyright header * final release.. undefine alphatag Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 8 Jul 2009 20:40:51 -0000 1.10 +++ sources 29 Jul 2009 11:37:06 -0000 1.11 @@ -1 +1,2 @@ 485253db9ea4d48d38d7a0aef84cf660 resource-agents-3.0.0.tar.gz +a05617c9fd4a765fb76e38247eb4738f 3aa338887920.tar.gz From jnovy at fedoraproject.org Wed Jul 29 11:37:51 2009 From: jnovy at fedoraproject.org (Jindrich Novy) Date: Wed, 29 Jul 2009 11:37:51 +0000 (UTC) Subject: rpms/netpbm/devel .cvsignore, 1.56, 1.57 netpbm.spec, 1.142, 1.143 sources, 1.60, 1.61 Message-ID: <20090729113751.802A511C00CE@cvs1.fedora.phx.redhat.com> Author: jnovy Update of /cvs/pkgs/rpms/netpbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32550 Modified Files: .cvsignore netpbm.spec sources Log Message: * Wed Jul 29 2009 Jindrich Novy 10.35.66-1 - update to 10.35.66 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/.cvsignore,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- .cvsignore 27 Jun 2009 06:52:44 -0000 1.56 +++ .cvsignore 29 Jul 2009 11:37:51 -0000 1.57 @@ -1 +1 @@ -netpbm-10.35.65.tar.bz2 +netpbm-10.35.66.tar.bz2 Index: netpbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/netpbm.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- netpbm.spec 25 Jul 2009 19:13:49 -0000 1.142 +++ netpbm.spec 29 Jul 2009 11:37:51 -0000 1.143 @@ -1,7 +1,7 @@ Summary: A library for handling different graphics file formats Name: netpbm -Version: 10.35.65 -Release: 2%{?dist} +Version: 10.35.66 +Release: 1%{?dist} # See copyright_summary for details License: BSD and GPLv2 and IJG and MIT and Public Domain Group: System Environment/Libraries @@ -217,6 +217,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/netpbm/ %changelog +* Wed Jul 29 2009 Jindrich Novy 10.35.66-1 +- update to 10.35.66 + * Sat Jul 25 2009 Fedora Release Engineering - 10.35.65-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 27 Jun 2009 06:52:45 -0000 1.60 +++ sources 29 Jul 2009 11:37:51 -0000 1.61 @@ -1 +1 @@ -c73ba9cfc9b30511572d02e53ba80313 netpbm-10.35.65.tar.bz2 +bb8d716535f9359fb95bcafa81b7304b netpbm-10.35.66.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 11:41:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:41:20 +0000 Subject: [pkgdb] resource-agents: beekhof has requested watchbugzilla Message-ID: <20090729114120.86D0210F882@bastion2.fedora.phx.redhat.com> beekhof has requested the watchbugzilla acl on resource-agents (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From pkgdb at fedoraproject.org Wed Jul 29 11:41:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:41:26 +0000 Subject: [pkgdb] resource-agents: beekhof has requested watchcommits Message-ID: <20090729114126.4E1D610F89A@bastion2.fedora.phx.redhat.com> beekhof has requested the watchcommits acl on resource-agents (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From pkgdb at fedoraproject.org Wed Jul 29 11:41:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:41:28 +0000 Subject: [pkgdb] resource-agents: beekhof has requested commit Message-ID: <20090729114128.EDAB810F89E@bastion2.fedora.phx.redhat.com> beekhof has requested the commit acl on resource-agents (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From tmz at fedoraproject.org Wed Jul 29 11:49:52 2009 From: tmz at fedoraproject.org (Todd M. Zullinger) Date: Wed, 29 Jul 2009 11:49:52 +0000 (UTC) Subject: rpms/git/devel .cvsignore, 1.76, 1.77 git.spec, 1.88, 1.89 sources, 1.76, 1.77 Message-ID: <20090729114952.EACDA11C00CE@cvs1.fedora.phx.redhat.com> Author: tmz Update of /cvs/pkgs/rpms/git/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2706 Modified Files: .cvsignore git.spec sources Log Message: Update to git-1.6.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/git/devel/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 28 Jun 2009 23:26:09 -0000 1.76 +++ .cvsignore 29 Jul 2009 11:49:52 -0000 1.77 @@ -1 +1 @@ -git-1.6.3.3.tar.bz2 +git-1.6.4.tar.bz2 Index: git.spec =================================================================== RCS file: /cvs/pkgs/rpms/git/devel/git.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- git.spec 25 Jul 2009 00:12:40 -0000 1.88 +++ git.spec 29 Jul 2009 11:49:52 -0000 1.89 @@ -1,7 +1,7 @@ # Pass --without docs to rpmbuild if you don't want the documentation Name: git -Version: 1.6.3.3 -Release: 2%{?dist} +Version: 1.6.4 +Release: 1%{?dist} Summary: Fast Version Control System License: GPLv2 Group: Development/Tools @@ -386,6 +386,9 @@ rm -rf $RPM_BUILD_ROOT # No files for you! %changelog +* Wed Jul 29 2009 Todd Zullinger - 1.6.4-1 +- git-1.6.4 + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/git/devel/sources,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- sources 28 Jun 2009 23:26:09 -0000 1.76 +++ sources 29 Jul 2009 11:49:52 -0000 1.77 @@ -1 +1 @@ -91ae46ac01dadab1962beb064abd5b60 git-1.6.3.3.tar.bz2 +d41e3d43c8f1d23024fb3d3fe6aa3858 git-1.6.4.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 11:52:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:52:43 +0000 Subject: [pkgdb] heartbeat: beekhof has requested watchbugzilla Message-ID: <20090729115243.35D3F10F89A@bastion2.fedora.phx.redhat.com> beekhof has requested the watchbugzilla acl on heartbeat (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From pkgdb at fedoraproject.org Wed Jul 29 11:52:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:52:45 +0000 Subject: [pkgdb] heartbeat: beekhof has requested watchcommits Message-ID: <20090729115245.E904A10F89F@bastion2.fedora.phx.redhat.com> beekhof has requested the watchcommits acl on heartbeat (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From pkgdb at fedoraproject.org Wed Jul 29 11:52:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:52:49 +0000 Subject: [pkgdb] heartbeat: beekhof has requested commit Message-ID: <20090729115249.4FB4310F8B4@bastion2.fedora.phx.redhat.com> beekhof has requested the commit acl on heartbeat (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From hguemar at fedoraproject.org Wed Jul 29 11:59:52 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 11:59:52 +0000 (UTC) Subject: rpms/sonata/F-10 .cvsignore,1.14,1.15 sources,1.14,1.15 Message-ID: <20090729115952.9F70D11C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5330 Modified Files: .cvsignore sources Log Message: send 1.6.2 sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/sonata/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 16 Jun 2008 11:23:25 -0000 1.14 +++ .cvsignore 29 Jul 2009 11:59:52 -0000 1.15 @@ -1 +1 @@ -sonata-1.5.2.tar.bz2 +sonata-1.6.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/sonata/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 16 Jun 2008 11:23:25 -0000 1.14 +++ sources 29 Jul 2009 11:59:52 -0000 1.15 @@ -1 +1 @@ -9506af4158076bba7ffe5ce5f80485af sonata-1.5.2.tar.bz2 +f2bca0855fd2eb3d199f62fbd88af62f sonata-1.6.2.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 11:44:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:44:03 +0000 Subject: [pkgdb] resource-agents had acl change status Message-ID: <20090729114404.0079810F882@bastion2.fedora.phx.redhat.com> fabbione has set the commit acl on resource-agents (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From pkgdb at fedoraproject.org Wed Jul 29 11:43:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:43:53 +0000 Subject: [pkgdb] resource-agents had acl change status Message-ID: <20090729114353.DD28810F88F@bastion2.fedora.phx.redhat.com> fabbione has set the watchbugzilla acl on resource-agents (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From pkgdb at fedoraproject.org Wed Jul 29 11:43:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 11:43:58 +0000 Subject: [pkgdb] resource-agents had acl change status Message-ID: <20090729114358.A387210F89B@bastion2.fedora.phx.redhat.com> fabbione has set the watchcommits acl on resource-agents (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/resource-agents From hguemar at fedoraproject.org Wed Jul 29 12:02:17 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 12:02:17 +0000 (UTC) Subject: rpms/sonata/F-11 .cvsignore,1.14,1.15 sources,1.14,1.15 Message-ID: <20090729120217.53CAC11C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5910 Modified Files: .cvsignore sources Log Message: send 1.6.2 sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/sonata/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 16 Jun 2008 11:23:25 -0000 1.14 +++ .cvsignore 29 Jul 2009 12:02:17 -0000 1.15 @@ -1 +1 @@ -sonata-1.5.2.tar.bz2 +sonata-1.6.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/sonata/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 16 Jun 2008 11:23:25 -0000 1.14 +++ sources 29 Jul 2009 12:02:17 -0000 1.15 @@ -1 +1 @@ -9506af4158076bba7ffe5ce5f80485af sonata-1.5.2.tar.bz2 +f2bca0855fd2eb3d199f62fbd88af62f sonata-1.6.2.tar.bz2 From harald at fedoraproject.org Wed Jul 29 12:06:44 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 29 Jul 2009 12:06:44 +0000 (UTC) Subject: rpms/udev/devel udev.spec,1.287,1.288 Message-ID: <20090729120644.58B7E11C00CE@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7052 Modified Files: udev.spec Log Message: * Wed Jul 29 2009 Harald Hoyer 145-3 - add patch from upstream git to fix bug #514086 - add version to usbutils build requirement Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v retrieving revision 1.287 retrieving revision 1.288 diff -u -p -r1.287 -r1.288 --- udev.spec 24 Jul 2009 08:17:35 -0000 1.287 +++ udev.spec 29 Jul 2009 12:06:44 -0000 1.288 @@ -5,7 +5,7 @@ Summary: A userspace implementation of devfs Name: udev Version: 145 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Base Provides: udev-persistent = %{version}-%{release} @@ -14,6 +14,8 @@ Obsoletes: udev-extras < 20090618 Provides: udev-extras = 20090618-1 Source: ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/%{name}-%{version}.tar.bz2 +Patch1: udev.git-3bf768245b98479a14190e1e1d32ef5fae3ddf8a.patch + Source1: start_udev Source3: udev-post.init Source4: fw_unit_symlinks.sh @@ -35,7 +37,7 @@ BuildRequires: libxslt BuildRequires: hwdata BuildRequires: gobject-introspection-devel >= 0.6.2 BuildRequires: gtk-doc -BuildRequires: usbutils +BuildRequires: usbutils >= 0.82 BuildRequires: libtool >= 2.2.6 Requires: libselinux >= 0:1.17.9-2 sed @@ -95,6 +97,7 @@ glib-based applications using libudev fu %prep %setup -q +%patch1 -p1 %build # get rid of rpath @@ -346,6 +349,10 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0* %changelog +* Wed Jul 29 2009 Harald Hoyer 145-3 +- add patch from upstream git to fix bug #514086 +- add version to usbutils build requirement + * Fri Jul 24 2009 Harald Hoyer 145-2 - fix file permissions - remove rpath From hguemar at fedoraproject.org Wed Jul 29 12:06:54 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 12:06:54 +0000 (UTC) Subject: rpms/sonata/devel .cvsignore,1.14,1.15 sources,1.14,1.15 Message-ID: <20090729120654.B979611C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7167 Modified Files: .cvsignore sources Log Message: send 1.6.2 sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/sonata/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 16 Jun 2008 11:23:25 -0000 1.14 +++ .cvsignore 29 Jul 2009 12:06:54 -0000 1.15 @@ -1 +1 @@ -sonata-1.5.2.tar.bz2 +sonata-1.6.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/sonata/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 16 Jun 2008 11:23:25 -0000 1.14 +++ sources 29 Jul 2009 12:06:54 -0000 1.15 @@ -1 +1 @@ -9506af4158076bba7ffe5ce5f80485af sonata-1.5.2.tar.bz2 +f2bca0855fd2eb3d199f62fbd88af62f sonata-1.6.2.tar.bz2 From harald at fedoraproject.org Wed Jul 29 12:07:18 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 29 Jul 2009 12:07:18 +0000 (UTC) Subject: rpms/udev/devel udev.git-3bf768245b98479a14190e1e1d32ef5fae3ddf8a.patch, NONE, 1.1 Message-ID: <20090729120718.462DE11C00CE@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7277 Added Files: udev.git-3bf768245b98479a14190e1e1d32ef5fae3ddf8a.patch Log Message: * Wed Jul 29 2009 Harald Hoyer 145-3 - add patch from upstream git to fix bug #514086 - add version to usbutils build requirement udev.git-3bf768245b98479a14190e1e1d32ef5fae3ddf8a.patch: libudev-enumerate.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 56 insertions(+), 3 deletions(-) --- NEW FILE udev.git-3bf768245b98479a14190e1e1d32ef5fae3ddf8a.patch --- From: Lennart Poettering Date: Mon, 27 Jul 2009 21:24:27 +0000 (+0200) Subject: enumeration: move ALSA control devices to the end of the enumerated devices of each ... X-Git-Url: http://git.kernel.org/?p=linux%2Fhotplug%2Fudev.git;a=commitdiff_plain;h=3bf768245b98479a14190e1e1d32ef5fae3ddf8a enumeration: move ALSA control devices to the end of the enumerated devices of each card Generally ALSA control devices should be the last ones to be processed for ACL changes and similar operations because they can then be used as indicators that ACL management finished for all device nodes of a specific card. This patch simple moves each controlC device behind all the pcmC devices (and similar). --- diff --git a/libudev/libudev-enumerate.c b/libudev/libudev-enumerate.c index 96cf060..986c1fc 100644 --- a/libudev/libudev-enumerate.c +++ b/libudev/libudev-enumerate.c @@ -190,7 +190,8 @@ static int syspath_cmp(const void *p1, const void *p2) return ret; } -static int devices_delay(struct udev *udev, const char *syspath) +/* For devices that should be moved to the absolute end of the list */ +static int devices_delay_end(struct udev *udev, const char *syspath) { static const char *delay_device_list[] = { "/block/md", @@ -210,6 +211,32 @@ static int devices_delay(struct udev *udev, const char *syspath) return 0; } +/* For devices that should just be moved a little bit later, just + * before the point where some common path prefix changes. Returns the + * number of characters that make up that common prefix */ +static size_t devices_delay_later(struct udev *udev, const char *syspath) +{ + const char *c; + + /* For sound cards the control device must be enumerated last + * to make sure it's the final device node that gets ACLs + * applied. Applications rely on this fact and use ACL changes + * on the control node as an indicator that the ACL change of + * the entire sound card completed. The kernel makes this + * guarantee when creating those devices, and hence we should + * too when enumerating them. */ + + if ((c = strstr(syspath, "/sound/card"))) { + c += 11; + c += strcspn(c, "/"); + + if (strncmp(c, "/controlC", 9) == 0) + return c - syspath + 1; + } + + return 0; +} + /** * udev_enumerate_get_list_entry: * @udev_enumerate: context @@ -223,7 +250,8 @@ struct udev_list_entry *udev_enumerate_get_list_entry(struct udev_enumerate *ude if (!udev_enumerate->devices_uptodate) { unsigned int i; unsigned int max; - struct syspath *prev = NULL; + struct syspath *prev = NULL, *move_later = NULL; + size_t move_later_prefix; udev_list_cleanup_entries(udev_enumerate->udev, &udev_enumerate->devices_list); qsort(udev_enumerate->devices, udev_enumerate->devices_cur, sizeof(struct syspath), syspath_cmp); @@ -240,14 +268,39 @@ struct udev_list_entry *udev_enumerate_get_list_entry(struct udev_enumerate *ude prev = entry; /* skip to be delayed devices, and add them to the end of the list */ - if (devices_delay(udev_enumerate->udev, entry->syspath)) { + if (devices_delay_end(udev_enumerate->udev, entry->syspath)) { syspath_add(udev_enumerate, entry->syspath); continue; } + /* skip to be delayed devices, and move the to + * the point where the prefix changes. We can + * only move one item at a time. */ + if (!move_later) { + move_later_prefix = devices_delay_later(udev_enumerate->udev, entry->syspath); + + if (move_later_prefix > 0) { + move_later = entry; + continue; + } + } + + if (move_later && + strncmp(entry->syspath, move_later->syspath, move_later_prefix) != 0) { + + udev_list_entry_add(udev_enumerate->udev, &udev_enumerate->devices_list, + move_later->syspath, NULL, 0, 0); + move_later = NULL; + } + udev_list_entry_add(udev_enumerate->udev, &udev_enumerate->devices_list, entry->syspath, NULL, 0, 0); } + + if (move_later) + udev_list_entry_add(udev_enumerate->udev, &udev_enumerate->devices_list, + move_later->syspath, NULL, 0, 0); + /* add and cleanup delayed devices from end of list */ for (i = max; i < udev_enumerate->devices_cur; i++) { struct syspath *entry = &udev_enumerate->devices[i]; From mhlavink at fedoraproject.org Wed Jul 29 12:11:21 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 12:11:21 +0000 (UTC) Subject: rpms/dovecot/F-10 .cvsignore, 1.52, 1.53 dovecot.spec, 1.122, 1.123 sources, 1.55, 1.56 Message-ID: <20090729121121.2BE3A11C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8209 Modified Files: .cvsignore dovecot.spec sources Log Message: updated to 1.1.18 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/.cvsignore,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- .cvsignore 13 Jul 2009 07:18:02 -0000 1.52 +++ .cvsignore 29 Jul 2009 12:11:20 -0000 1.53 @@ -1,4 +1,4 @@ -dovecot-1.1.17-managesieve-0.10.7.diff.gz -dovecot-1.1.17.tar.gz +dovecot-1.1.18.tar.gz +dovecot-1.1.18-managesieve-0.10.7.diff.gz dovecot-1.1-managesieve-0.10.7.tar.gz dovecot-sieve-1.1.6.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/dovecot.spec,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- dovecot.spec 13 Jul 2009 07:18:02 -0000 1.122 +++ dovecot.spec 29 Jul 2009 12:11:20 -0000 1.123 @@ -1,7 +1,7 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 -Version: 1.1.17 +Version: 1.1.18 Release: 1%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -425,6 +425,13 @@ fi %changelog +* Wed Jul 29 2009 Michal Hlavinka - 1:1.1.18-1 +- updated to 1.1.18 +- Maildir++ quota: Quota was sometimes updated wrong when it was + being recalculated. +- Searching quoted-printable message body internally converted "_" + characters to spaces and didn't match search keys with "_". + * Mon Jul 13 2009 Michal Hlavinka - 1:1.1.17-1 - updated to 1.1.17 - IMAP: Don't crash if IDLE command is pipelined after a long-running Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 13 Jul 2009 07:18:02 -0000 1.55 +++ sources 29 Jul 2009 12:11:20 -0000 1.56 @@ -1,4 +1,4 @@ -f932f8fa606d0b70dbfadb3e5a4d612c dovecot-1.1.17-managesieve-0.10.7.diff.gz -2f264e2a292d52375eb4376757b6bb9f dovecot-1.1.17.tar.gz +b30bde50771100c60e2d5d4d4c8e2ceb dovecot-1.1.18.tar.gz +76ce80824dec0700c2138aee3dda1e30 dovecot-1.1.18-managesieve-0.10.7.diff.gz 05bc554ed97c93695c676eaff6069485 dovecot-1.1-managesieve-0.10.7.tar.gz 7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz From mhlavink at fedoraproject.org Wed Jul 29 12:23:24 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 12:23:24 +0000 (UTC) Subject: rpms/pciutils/F-11 .cvsignore, 1.22, 1.23 pciutils.spec, 1.72, 1.73 sources, 1.22, 1.23 Message-ID: <20090729122324.3A1A511C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/pciutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10521 Modified Files: .cvsignore pciutils.spec sources Log Message: updated to 3.1.3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pciutils/F-11/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 17 Feb 2009 09:45:30 -0000 1.22 +++ .cvsignore 29 Jul 2009 12:23:23 -0000 1.23 @@ -1 +1 @@ -pciutils-3.1.2.tar.gz +pciutils-3.1.3.tar.gz Index: pciutils.spec =================================================================== RCS file: /cvs/extras/rpms/pciutils/F-11/pciutils.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- pciutils.spec 29 Apr 2009 15:33:12 -0000 1.72 +++ pciutils.spec 29 Jul 2009 12:23:24 -0000 1.73 @@ -1,6 +1,6 @@ Name: pciutils -Version: 3.1.2 -Release: 5%{?dist} +Version: 3.1.3 +Release: 1%{?dist} Source: ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz Patch1: pciutils-2.2.4-buf.patch Patch2: pciutils-2.1.10-scan.patch @@ -114,6 +114,9 @@ install -p lib/libpci.pc $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Michal Hlavinka - 3.1.3-1 +- updated to 3.1.3 + * Wed Apr 29 2009 Michal Hlavinka - 3.1.2-5 - add support for ARM Index: sources =================================================================== RCS file: /cvs/extras/rpms/pciutils/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 17 Feb 2009 09:45:30 -0000 1.22 +++ sources 29 Jul 2009 12:23:24 -0000 1.23 @@ -1 +1 @@ -b6cc13955ad769a25c475a87d2ef5596 pciutils-3.1.2.tar.gz +965908d8d67222a9e1db24778c61bdf1 pciutils-3.1.3.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 12:29:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:28 +0000 Subject: [pkgdb] sems: itamarjp has requested watchcommits Message-ID: <20090729122928.6CCE610F897@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sems (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:28 +0000 Subject: [pkgdb] sems: itamarjp has requested watchbugzilla Message-ID: <20090729122928.F374A10F89E@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sems (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:29 +0000 Subject: [pkgdb] sems: itamarjp has requested commit Message-ID: <20090729122929.71D0D10F8B1@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sems (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:31 +0000 Subject: [pkgdb] sems: itamarjp has requested approveacls Message-ID: <20090729122931.A6C8510F8B7@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sems (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:39 +0000 Subject: [pkgdb] sems: itamarjp has requested watchbugzilla Message-ID: <20090729122939.22A8110F8BA@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sems (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:39 +0000 Subject: [pkgdb] sems: itamarjp has requested watchcommits Message-ID: <20090729122939.7E6D710F8BE@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sems (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:50 +0000 Subject: [pkgdb] sems: itamarjp has requested approveacls Message-ID: <20090729122950.E0BD310F8CC@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sems (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:48 +0000 Subject: [pkgdb] sems: itamarjp has requested commit Message-ID: <20090729122948.617B610F89D@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sems (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:41 +0000 Subject: [pkgdb] sems: itamarjp has requested commit Message-ID: <20090729122941.7D83D10F8C1@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sems (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:43 +0000 Subject: [pkgdb] sems: itamarjp has requested approveacls Message-ID: <20090729122943.4292710F8C5@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sems (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:47 +0000 Subject: [pkgdb] sems: itamarjp has requested watchcommits Message-ID: <20090729122947.9462C10F8C8@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sems (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:30:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:04 +0000 Subject: [pkgdb] sems: itamarjp has requested watchcommits Message-ID: <20090729123004.A5A8C10F8E0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sems (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From caolanm at fedoraproject.org Wed Jul 29 12:37:36 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 29 Jul 2009 12:37:36 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org-3.1.1.oooXXXXX.dmake.patch, NONE, 1.1 openoffice.org.spec, 1.1975, 1.1976 Message-ID: <20090729123736.4630B11C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14381 Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.1.oooXXXXX.dmake.patch Log Message: try this for the sake of it openoffice.org-3.1.1.oooXXXXX.dmake.patch: rulparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openoffice.org-3.1.1.oooXXXXX.dmake.patch --- --- dmake/rulparse.c 2009-07-29 13:31:47.000000000 +0100 +++ dmake/rulparse.c 2009-07-29 13:32:09.000000000 +0100 @@ -897,7 +897,7 @@ /* Handle %-targets. */ CELLPTR cur; CELLPTR tpq = NIL(CELL); - CELLPTR nprq; + CELLPTR nprq = NULL; #ifdef DBUG DB_PRINT( "%", ("Handling %%-target [%s : : ]", Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1975 retrieving revision 1.1976 diff -u -p -r1.1975 -r1.1976 --- openoffice.org.spec 29 Jul 2009 07:53:33 -0000 1.1975 +++ openoffice.org.spec 29 Jul 2009 12:37:35 -0000 1.1976 @@ -152,6 +152,7 @@ Patch74: openoffice.org-3.1.0.ooo92645.o Patch75: workspace.vcl103.patch Patch76: workspace.cmcfixes61.patch Patch77: workspace.os132.patch +Patch78: openoffice.org-3.1.1.oooXXXXX.dmake.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1689,6 +1690,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch75 -p0 -b .workspace.vcl103.patch %patch76 -p0 -b .workspace.cmcfixes61.patch %patch77 -p0 -b .workspace.os132.patch +%patch78 -p0 -b .oooXXXXX.dmake.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` From jnovy at fedoraproject.org Wed Jul 29 12:38:18 2009 From: jnovy at fedoraproject.org (Jindrich Novy) Date: Wed, 29 Jul 2009 12:38:18 +0000 (UTC) Subject: rpms/netpbm/devel netpbm-10.35-svgtopam.patch, 1.1, 1.2 netpbm.spec, 1.143, 1.144 Message-ID: <20090729123818.C0D6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jnovy Update of /cvs/pkgs/rpms/netpbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14595 Modified Files: netpbm-10.35-svgtopam.patch netpbm.spec Log Message: - sync svgatopam patch netpbm-10.35-svgtopam.patch: Makefile | 4 ---- 1 file changed, 4 deletions(-) Index: netpbm-10.35-svgtopam.patch =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/netpbm-10.35-svgtopam.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- netpbm-10.35-svgtopam.patch 31 Mar 2009 14:01:09 -0000 1.1 +++ netpbm-10.35-svgtopam.patch 29 Jul 2009 12:38:18 -0000 1.2 @@ -11,4 +11,4 @@ diff -up netpbm-10.35.58/converter/other - MERGEBINARIES = $(BINARIES) - EXTRA_OBJECTS = exif.o rast.o pngtxt.o bmepsoe.o + EXTRA_OBJECTS = exif.o rast.o bmepsoe.o Index: netpbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/netpbm.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- netpbm.spec 29 Jul 2009 11:37:51 -0000 1.143 +++ netpbm.spec 29 Jul 2009 12:38:18 -0000 1.144 @@ -219,6 +219,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 29 2009 Jindrich Novy 10.35.66-1 - update to 10.35.66 +- sync svgatopam patch * Sat Jul 25 2009 Fedora Release Engineering - 10.35.65-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mhlavink at fedoraproject.org Wed Jul 29 12:25:50 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 12:25:50 +0000 (UTC) Subject: rpms/pciutils/devel .cvsignore, 1.22, 1.23 pciutils.spec, 1.73, 1.74 sources, 1.22, 1.23 Message-ID: <20090729122550.19DA311C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/pciutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11134 Modified Files: .cvsignore pciutils.spec sources Log Message: updated to 3.1.3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pciutils/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 17 Feb 2009 09:45:30 -0000 1.22 +++ .cvsignore 29 Jul 2009 12:25:49 -0000 1.23 @@ -1 +1 @@ -pciutils-3.1.2.tar.gz +pciutils-3.1.3.tar.gz Index: pciutils.spec =================================================================== RCS file: /cvs/extras/rpms/pciutils/devel/pciutils.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- pciutils.spec 25 Jul 2009 23:21:54 -0000 1.73 +++ pciutils.spec 29 Jul 2009 12:25:49 -0000 1.74 @@ -1,6 +1,6 @@ Name: pciutils -Version: 3.1.2 -Release: 6%{?dist} +Version: 3.1.3 +Release: 1%{?dist} Source: ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz Patch1: pciutils-2.2.4-buf.patch Patch2: pciutils-2.1.10-scan.patch @@ -114,6 +114,9 @@ install -p lib/libpci.pc $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Michal Hlavinka - 3.1.3-1 +- updated to 3.1.3 + * Sat Jul 25 2009 Fedora Release Engineering - 3.1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/pciutils/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 17 Feb 2009 09:45:30 -0000 1.22 +++ sources 29 Jul 2009 12:25:49 -0000 1.23 @@ -1 +1 @@ -b6cc13955ad769a25c475a87d2ef5596 pciutils-3.1.2.tar.gz +965908d8d67222a9e1db24778c61bdf1 pciutils-3.1.3.tar.gz From atkac at fedoraproject.org Wed Jul 29 12:55:15 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Wed, 29 Jul 2009 12:55:15 +0000 (UTC) Subject: rpms/bind/F-10 .cvsignore, 1.48, 1.49 bind.spec, 1.291, 1.292 sources, 1.57, 1.58 Message-ID: <20090729125515.84CC011C00CE@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17992 Modified Files: .cvsignore bind.spec sources Log Message: - 9.5.1-P3 release (CVE-2009-0696) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-10/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 23 Mar 2009 15:09:24 -0000 1.48 +++ .cvsignore 29 Jul 2009 12:55:14 -0000 1.49 @@ -1,4 +1,4 @@ config-4.tar.bz2 libbind-man.tar.gz bind-chroot.tar.bz2 -bind-9.5.1-P2.tar.gz +bind-9.5.1-P3.tar.gz Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-10/bind.spec,v retrieving revision 1.291 retrieving revision 1.292 diff -u -p -r1.291 -r1.292 --- bind.spec 23 Mar 2009 15:09:24 -0000 1.291 +++ bind.spec 29 Jul 2009 12:55:14 -0000 1.292 @@ -4,7 +4,7 @@ #%define PREVER b3 #%define VERSION %{version}%{PREVER} -%define PATCHVER P2 +%define PATCHVER P3 %define VERSION %{version}-%{PATCHVER} %{?!SDB: %define SDB 1} @@ -21,7 +21,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.5.1 -Release: 2.%{PATCHVER}%{?dist} +Release: 3.%{PATCHVER}%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -638,6 +638,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_sbindir}/bind-chroot-admin %changelog +* Wed Jul 29 2009 Adam Tkac 32:9.5.1-3.P3 +- 9.5.1-P3 release (CVE-2009-0696) + * Mon Mar 23 2009 Adam Tkac 32:9.5.1-2.P2 - 9.5.1-P2 release (handle unknown DLV algorithms well) - logrotate configuration file now points to /var/named/data/named.run by Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-10/sources,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- sources 23 Mar 2009 15:09:25 -0000 1.57 +++ sources 29 Jul 2009 12:55:14 -0000 1.58 @@ -1,4 +1,4 @@ de68e10e91e05ab100be879b5bcaa6cb config-4.tar.bz2 13fef79f99fcefebb51d84b08805de51 libbind-man.tar.gz 4faa4395b955e5f8a3d50f308b9fabc8 bind-chroot.tar.bz2 -0778fe5dbf8ef8477032e9f6a33ed9b0 bind-9.5.1-P2.tar.gz +a25a93711c2498bca7e8f208aab0c896 bind-9.5.1-P3.tar.gz From twaugh at fedoraproject.org Wed Jul 29 12:58:23 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 12:58:23 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3272.patch,NONE,1.1 cups.spec,1.492,1.493 Message-ID: <20090729125823.1429E11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19465 Modified Files: cups.spec Added Files: cups-str3272.patch Log Message: * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 - Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). cups-str3272.patch: dnssd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE cups-str3272.patch --- diff -up cups-1.4rc1/backend/dnssd.c.str3272 cups-1.4rc1/backend/dnssd.c --- cups-1.4rc1/backend/dnssd.c.str3272 2009-04-14 19:14:02.000000000 +0100 +++ cups-1.4rc1/backend/dnssd.c 2009-07-29 13:56:55.643396809 +0100 @@ -153,8 +153,8 @@ main(int argc, /* I - Number of comm memset(&action, 0, sizeof(action)); sigemptyset(&action.sa_mask); - action.sa_handler = SIG_IGN; - sigaction(SIGTERM, &action, sigterm_handler); + action.sa_handler = sigterm_handler; + sigaction(SIGTERM, &action, NULL); #else signal(SIGTERM, sigterm_handler); #endif /* HAVE_SIGSET */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.492 retrieving revision 1.493 diff -u -p -r1.492 -r1.493 --- cups.spec 28 Jul 2009 21:38:08 -0000 1.492 +++ cups.spec 29 Jul 2009 12:58:22 -0000 1.493 @@ -60,7 +60,8 @@ Patch33: cups-str3266.patch Patch34: cups-str3262.patch Patch35: cups-socket-snmp.patch Patch36: cups-cups-get-classes.patch -Patch37: cups-avahi.patch +Patch37: cups-str3272.patch +Patch38: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -218,7 +219,8 @@ module. %patch34 -p1 -b .str3262 %patch35 -p1 -b .socket-snmp %patch36 -p1 -b .cups-get-classes -#%patch37 -p1 -b .avahi +%patch37 -p1 -b .str3272 +#%patch38 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -511,7 +513,8 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog -* Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +* Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 +- Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking to CUPS 1.2 or later (bug #512866). From pkgdb at fedoraproject.org Wed Jul 29 12:30:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:05 +0000 Subject: [pkgdb] sems: itamarjp has requested commit Message-ID: <20090729123005.028A010F8E4@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sems (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:57 +0000 Subject: [pkgdb] sems: itamarjp has requested commit Message-ID: <20090729122957.6C39C10F8D9@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on sems (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:30:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:08 +0000 Subject: [pkgdb] sems: itamarjp has requested approveacls Message-ID: <20090729123008.9CAAD10F8E8@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sems (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:30:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:00 +0000 Subject: [pkgdb] sems: itamarjp has requested approveacls Message-ID: <20090729123000.8AE1D10F8D6@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on sems (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:52 +0000 Subject: [pkgdb] sems: itamarjp has requested watchbugzilla Message-ID: <20090729122952.A7A7E10F8D0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sems (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:29:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:29:56 +0000 Subject: [pkgdb] sems: itamarjp has requested watchcommits Message-ID: <20090729122956.9ED6B10F8D4@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on sems (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:30:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:01 +0000 Subject: [pkgdb] sems: itamarjp has requested watchbugzilla Message-ID: <20090729123001.84EF210F8DC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sems (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 12:30:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 12:30:10 +0000 Subject: [pkgdb] sems: itamarjp has requested watchbugzilla Message-ID: <20090729123010.178D710F8EC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on sems (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Wed Jul 29 13:07:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:07:10 +0000 Subject: [pkgdb] sed: bonzini has requested watchbugzilla Message-ID: <20090729130710.1AC1410F88F@bastion2.fedora.phx.redhat.com> bonzini has requested the watchbugzilla acl on sed (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:07:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:07:31 +0000 Subject: [pkgdb] sed: bonzini has requested watchbugzilla Message-ID: <20090729130731.C333510F897@bastion2.fedora.phx.redhat.com> bonzini has requested the watchbugzilla acl on sed (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:07:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:07:41 +0000 Subject: [pkgdb] sed: bonzini has requested watchcommits Message-ID: <20090729130741.D82FC10F89B@bastion2.fedora.phx.redhat.com> bonzini has requested the watchcommits acl on sed (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:07:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:07:45 +0000 Subject: [pkgdb] sed: bonzini has requested watchcommits Message-ID: <20090729130745.9F50610F89D@bastion2.fedora.phx.redhat.com> bonzini has requested the watchcommits acl on sed (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From atkac at fedoraproject.org Wed Jul 29 13:18:28 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Wed, 29 Jul 2009 13:18:28 +0000 (UTC) Subject: rpms/bind/F-11 .cvsignore, 1.54, 1.55 bind.spec, 1.318, 1.319 sources, 1.63, 1.64 Message-ID: <20090729131828.76A1711C00CE@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23617 Modified Files: .cvsignore bind.spec sources Log Message: - 9.6.1-P1 release (CVE-2009-0696) - fix postun trigger (#513016, hopefully) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 18 Jun 2009 10:04:51 -0000 1.54 +++ .cvsignore 29 Jul 2009 13:18:27 -0000 1.55 @@ -1,2 +1,2 @@ config-4.tar.bz2 -bind-9.6.1.tar.gz +bind-9.6.1-P1.tar.gz Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/bind.spec,v retrieving revision 1.318 retrieving revision 1.319 diff -u -p -r1.318 -r1.319 --- bind.spec 13 Jul 2009 12:57:28 -0000 1.318 +++ bind.spec 29 Jul 2009 13:18:28 -0000 1.319 @@ -2,11 +2,11 @@ # Red Hat BIND package .spec file # -#%define PATCHVER P1 +%define PATCHVER P1 #%define PREVER rc1 #%define VERSION %{version} #%define VERSION %{version}-%{PATCHVER} -%define VERSION %{version} +%define VERSION %{version}-%{PATCHVER} %{?!SDB: %define SDB 1} %{?!test: %define test 0} @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 3%{?dist} +Release: 4.%{PATCHVER}%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -429,7 +429,7 @@ fi # bind-libs between 32:9.6.1-0.1.b1 and 32:9.6.1-0.4.rc1 have bigger SOnames # than current bind - https://bugzilla.redhat.com/show_bug.cgi?id=509635. # Remove this trigger when SOnames get bigger. -%triggerpostun -n bind-libs -- bind-libs > 32:9.6.1-0.1.b1 +%triggerpostun -n bind-libs -p /bin/bash -- bind-libs > 32:9.6.1-0.1.b1 /sbin/ldconfig %post chroot @@ -583,6 +583,10 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Wed Jul 29 2009 Adam Tkac 32:9.6.1-4.P1 +- 9.6.1-P1 release (CVE-2009-0696) +- fix postun trigger (#513016, hopefully) + * Mon Jul 13 2009 Adam Tkac 32:9.6.1-3 - fix broken symlinks in bind-libs (#509635) - fix typos in /etc/sysconfig/named (#509650) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 18 Jun 2009 10:04:51 -0000 1.63 +++ sources 29 Jul 2009 13:18:28 -0000 1.64 @@ -1,2 +1,2 @@ de68e10e91e05ab100be879b5bcaa6cb config-4.tar.bz2 -516ac74d8eaaef30ad4c99ada8b715cd bind-9.6.1.tar.gz +e6ce3b355c4e6bf5d66ef100f555da3f bind-9.6.1-P1.tar.gz From atkac at fedoraproject.org Wed Jul 29 13:18:39 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Wed, 29 Jul 2009 13:18:39 +0000 (UTC) Subject: rpms/bind/devel .cvsignore, 1.54, 1.55 bind.spec, 1.320, 1.321 sources, 1.63, 1.64 Message-ID: <20090729131839.2F25011C00CE@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23693 Modified Files: .cvsignore bind.spec sources Log Message: - 9.6.1-P1 release (CVE-2009-0696) - fix postun trigger (#513016, hopefully) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 17 Jun 2009 15:55:38 -0000 1.54 +++ .cvsignore 29 Jul 2009 13:18:38 -0000 1.55 @@ -1,2 +1,2 @@ -bind-9.6.1.tar.gz +bind-9.6.1-P1.tar.gz config-4.tar.bz2 Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/bind.spec,v retrieving revision 1.320 retrieving revision 1.321 diff -u -p -r1.320 -r1.321 --- bind.spec 24 Jul 2009 18:02:32 -0000 1.320 +++ bind.spec 29 Jul 2009 13:18:38 -0000 1.321 @@ -2,11 +2,11 @@ # Red Hat BIND package .spec file # -#%define PATCHVER P1 +%define PATCHVER P1 #%define PREVER rc1 #%define VERSION %{version} #%define VERSION %{version}-%{PATCHVER} -%define VERSION %{version} +%define VERSION %{version}-%{PATCHVER} %{?!SDB: %define SDB 1} %{?!test: %define test 0} @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 5%{?dist} +Release: 6.%{PATCHVER}%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -427,7 +427,7 @@ fi # bind-libs between 32:9.6.1-0.1.b1 and 32:9.6.1-0.4.rc1 have bigger SOnames # than current bind - https://bugzilla.redhat.com/show_bug.cgi?id=509635. # Remove this trigger when SOnames get bigger. -%triggerpostun -n bind-libs -- bind-libs > 32:9.6.1-0.1.b1 +%triggerpostun -n bind-libs -p /bin/bash -- bind-libs > 32:9.6.1-0.1.b1 /sbin/ldconfig %post chroot @@ -581,6 +581,10 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Wed Jul 29 2009 Adam Tkac 32:9.6.1-6.P1 +- 9.6.1-P1 release (CVE-2009-0696) +- fix postun trigger (#513016, hopefully) + * Fri Jul 24 2009 Fedora Release Engineering - 32:9.6.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 17 Jun 2009 15:55:38 -0000 1.63 +++ sources 29 Jul 2009 13:18:39 -0000 1.64 @@ -1,2 +1,2 @@ -516ac74d8eaaef30ad4c99ada8b715cd bind-9.6.1.tar.gz +e6ce3b355c4e6bf5d66ef100f555da3f bind-9.6.1-P1.tar.gz de68e10e91e05ab100be879b5bcaa6cb config-4.tar.bz2 From rhughes at fedoraproject.org Wed Jul 29 13:19:05 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Wed, 29 Jul 2009 13:19:05 +0000 (UTC) Subject: rpms/hal/devel hal.spec,1.203,1.204 Message-ID: <20090729131905.906F111C00CE@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23921 Modified Files: hal.spec Log Message: * Wed Jul 29 2009 Richard Hughes - 0.5.13-6 - Don't compile with csr, ibm or cpufreq options, this functionality is obsolete. Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.203 retrieving revision 1.204 diff -u -p -r1.203 -r1.204 --- hal.spec 28 Jul 2009 14:01:28 -0000 1.203 +++ hal.spec 29 Jul 2009 13:19:05 -0000 1.204 @@ -26,7 +26,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.13 -Release: 5%{?dist} +Release: 6%{?dist} #Release: 1.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -146,16 +146,18 @@ API docs for HAL. autoreconf -i -f %build -%configure \ - --enable-docbook-docs \ - --docdir=%{_docdir}/%{name}-%{version} \ - --with-os-type=redhat \ - --with-udev-prefix=/etc \ - --disable-console-kit \ - --disable-policy-kit \ - --enable-umount-helper \ - --enable-acpi-ibm \ - --disable-smbios \ +%configure \ + --enable-docbook-docs \ + --docdir=%{_docdir}/%{name}-%{version} \ + --with-os-type=redhat \ + --with-udev-prefix=/etc \ + --disable-console-kit \ + --disable-policy-kit \ + --disable-acpi-ibm \ + --disable-smbios \ + --enable-umount-helper \ + --without-usb-csr \ + --without-cpufreq \ --with-eject=%{_sbindir}/eject sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -280,6 +282,10 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Wed Jul 29 2009 Richard Hughes - 0.5.13-6 +- Don't compile with csr, ibm or cpufreq options, this functionality is + obsolete. + * Tue Jul 28 2009 Richard Hughes - 0.5.13-5 - Apply a patch to fix mdraid devices. - Fixes #507782 From rhughes at fedoraproject.org Wed Jul 29 13:19:43 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Wed, 29 Jul 2009 13:19:43 +0000 (UTC) Subject: rpms/hal/F-11 hal-0.5.12-fix-imebus-devices.patch, NONE, 1.1 hal.spec, 1.189, 1.190 Message-ID: <20090729131943.CB5ED11C00CE@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24140 Modified Files: hal.spec Added Files: hal-0.5.12-fix-imebus-devices.patch Log Message: * Wed Jul 29 2009 Richard Hughes - 0.5.12-27.20090226git - hal-0.5.12-fix-imebus-devices.patch: HAL was failing to recognize ehea ethernet adapters under /sys/bus/ibmebus. - Fixes #496820 hal-0.5.12-fix-imebus-devices.patch: device.c | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) --- NEW FILE hal-0.5.12-fix-imebus-devices.patch --- >From f710e0fda727d102291a44d1ce153ea22eac6c3e Mon Sep 17 00:00:00 2001 From: Pavan Naregundi Date: Mon, 13 Jul 2009 11:38:27 +0000 Subject: add suport for /sys/bus/ibmebus HAL was failing to recognize ehea ethernet adapters under /sys/bus/ibmebus. https://bugzilla.redhat.com/show_bug.cgi?id=496820 After the patch ehea adapters are under ibmebus in the lshal --tree ibmebus/lhea_23c00200 ibmebus/lhea_23c00200/ethernet_23e00100 net_00_21_5e_03_1d_21 --- diff --git a/hald/linux/device.c b/hald/linux/device.c index 653c9fe..2823650 100644 --- a/hald/linux/device.c +++ b/hald/linux/device.c @@ -758,6 +758,44 @@ firewire_compute_udi (HalDevice *d) } +/*--------------------------------------------------------------------------------------------------------------*/ + +static HalDevice * +ibmebus_add (const gchar *sysfs_path, const gchar *device_file, HalDevice *parent_dev, const gchar *parent_path) +{ + HalDevice *d; + + d = hal_device_new (); + hal_device_property_set_string (d, "linux.sysfs_path", sysfs_path); + hal_device_property_set_string (d, "linux.sysfs_path_device", sysfs_path); + hal_device_property_set_string (d, "info.bus", "ibmebus"); + if (parent_dev != NULL) { + hal_device_property_set_string (d, "info.parent", hal_device_get_udi (parent_dev)); + } else { + hal_device_property_set_string (d, "info.parent", "/org/freedesktop/Hal/devices/computer"); + } + + hal_util_set_driver (d, "info.linux.driver", sysfs_path); + + hal_util_set_string_from_file (d, "ibmebus.devspec", sysfs_path, "devspec"); + hal_util_set_string_from_file (d, "ibmebus.type", sysfs_path, "type"); + + return d; +} + + +static gboolean +ibmebus_compute_udi (HalDevice *d) +{ + gchar udi[256]; + + hal_util_compute_udi (hald_get_gdl (), udi, sizeof (udi), + "/org/freedesktop/Hal/devices/ibmebus%s", + hal_device_property_get_string (d, "ibmebus.devspec")); + hal_device_set_udi (d, udi); + hal_device_property_set_string (d, "info.udi", udi); + return TRUE; +} /*--------------------------------------------------------------------------------------------------------------*/ @@ -4288,6 +4326,13 @@ static DevHandler dev_handler_firewire = { .remove = dev_remove }; +static DevHandler dev_handler_ibmebus = { + .subsystem = "ibmebus", + .add = ibmebus_add, + .compute_udi = ibmebus_compute_udi, + .remove = dev_remove +}; + static DevHandler dev_handler_ide = { .subsystem = "ide", .add = ide_add, @@ -4610,6 +4655,7 @@ static DevHandler *dev_handlers[] = { &dev_handler_drm, &dev_handler_dvb, &dev_handler_firewire, + &dev_handler_ibmebus, &dev_handler_ide, &dev_handler_ieee1394, &dev_handler_input, -- cgit v0.8.2 Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/F-11/hal.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- hal.spec 27 Mar 2009 05:01:16 -0000 1.189 +++ hal.spec 29 Jul 2009 13:19:43 -0000 1.190 @@ -28,7 +28,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.12 #Release: 14%{?dist} -Release: 26.%{?alphatag}%{?dist} +Release: 27.%{?alphatag}%{?dist} URL: http://www.freedesktop.org/Software/hal #Source0: http://hal.freedesktop.org/releases/%{name}-%{version}rc1.tar.bz2 Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz @@ -51,6 +51,9 @@ Patch8: hal-fix-udev-dir.patch # http://lists.freedesktop.org/archives/hal/2009-March/013125.html Patch9: hal-KVM-evdev.patch +# upstream, f710e0fda727d102291a44d1ce153ea22eac6c3e +Patch10: hal-0.5.12-fix-imebus-devices.patch + License: AFL or GPLv2 Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -163,6 +166,7 @@ API docs for HAL. --with-eject=%{_sbindir}/eject # because of patch8 +autoreconf automake sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -297,6 +301,11 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Wed Jul 29 2009 Richard Hughes - 0.5.12-27.20090226git +- hal-0.5.12-fix-imebus-devices.patch: HAL was failing to recognize ehea + ethernet adapters under /sys/bus/ibmebus. +- Fixes #496820 + * Fri Mar 27 2009 Peter Hutterer - 0.5.12-26.20090226git - hal-KVM-evdev.patch: force the evdev driver for American Megatrends KVM (#484776) From pkgdb at fedoraproject.org Wed Jul 29 13:21:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:21:13 +0000 Subject: [pkgdb] sed had acl change status Message-ID: <20090729132113.D416710F88F@bastion2.fedora.phx.redhat.com> jmoskovc has set the watchbugzilla acl on sed (Fedora devel) to Approved for bonzini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:21:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:21:14 +0000 Subject: [pkgdb] sed had acl change status Message-ID: <20090729132114.E8F6910F89B@bastion2.fedora.phx.redhat.com> jmoskovc has set the watchcommits acl on sed (Fedora devel) to Approved for bonzini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:21:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:21:38 +0000 Subject: [pkgdb] sed had acl change status Message-ID: <20090729132138.5632610F89A@bastion2.fedora.phx.redhat.com> jmoskovc has set the watchbugzilla acl on sed (Fedora 11) to Approved for bonzini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From pkgdb at fedoraproject.org Wed Jul 29 13:21:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:21:38 +0000 Subject: [pkgdb] sed had acl change status Message-ID: <20090729132138.CB0EF10F8A1@bastion2.fedora.phx.redhat.com> jmoskovc has set the watchcommits acl on sed (Fedora 11) to Approved for bonzini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sed From hguemar at fedoraproject.org Wed Jul 29 12:32:36 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 12:32:36 +0000 (UTC) Subject: rpms/bygfoot/F-11 .cvsignore,1.4,1.5 sources,1.4,1.5 Message-ID: <20090729123236.B200211C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/bygfoot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13344 Modified Files: .cvsignore sources Log Message: send 2.2.1 sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 11 Jun 2007 15:31:29 -0000 1.4 +++ .cvsignore 29 Jul 2009 12:32:36 -0000 1.5 @@ -1 +1 @@ -bygfoot-2.2.0-source.tar.bz2 +bygfoot-2.2.1-source.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 11 Jun 2007 15:31:29 -0000 1.4 +++ sources 29 Jul 2009 12:32:36 -0000 1.5 @@ -1 +1 @@ -ba8732d53b463a9e97c79a24f89ee857 bygfoot-2.2.0-source.tar.bz2 +cd6479d6517fc26badae4085039e279c bygfoot-2.2.1-source.tar.bz2 From hguemar at fedoraproject.org Wed Jul 29 12:32:03 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 12:32:03 +0000 (UTC) Subject: rpms/bygfoot/F-10 .cvsignore,1.4,1.5 sources,1.4,1.5 Message-ID: <20090729123203.A316911C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/bygfoot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13177 Modified Files: .cvsignore sources Log Message: send 2.2.1 sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 11 Jun 2007 15:31:29 -0000 1.4 +++ .cvsignore 29 Jul 2009 12:32:03 -0000 1.5 @@ -1 +1 @@ -bygfoot-2.2.0-source.tar.bz2 +bygfoot-2.2.1-source.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/bygfoot/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 11 Jun 2007 15:31:29 -0000 1.4 +++ sources 29 Jul 2009 12:32:03 -0000 1.5 @@ -1 +1 @@ -ba8732d53b463a9e97c79a24f89ee857 bygfoot-2.2.0-source.tar.bz2 +cd6479d6517fc26badae4085039e279c bygfoot-2.2.1-source.tar.bz2 From ajax at fedoraproject.org Wed Jul 29 13:23:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 29 Jul 2009 13:23:58 +0000 (UTC) Subject: rpms/libXmu/devel libXmu.spec,1.30,1.31 Message-ID: <20090729132358.9EDF511C00CE@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXmu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25030 Modified Files: libXmu.spec Log Message: * Wed Jul 29 2009 Adam Jackson 1.0.4-5 - -devel doesn't Require: xorg-x11-util-macros, don't say it does. Index: libXmu.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXmu/devel/libXmu.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXmu.spec 25 Jul 2009 05:13:57 -0000 1.30 +++ libXmu.spec 29 Jul 2009 13:23:58 -0000 1.31 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXmu/libXmuu runtime libraries Name: libXmu Version: 1.0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -22,7 +22,7 @@ X.Org X11 libXmu/libXmuu runtime librari Summary: X.Org X11 libXmu development package Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: pkgconfig xorg-x11-util-macros +Requires: pkgconfig # Pull these in for xmu.pc Requires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xmuu.pc %changelog +* Wed Jul 29 2009 Adam Jackson 1.0.4-5 +- -devel doesn't Require: xorg-x11-util-macros, don't say it does. + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From twaugh at fedoraproject.org Wed Jul 29 13:00:27 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 13:00:27 +0000 (UTC) Subject: rpms/cups/devel cups-str3272.patch,NONE,1.1 cups.spec,1.489,1.490 Message-ID: <20090729130027.A534C11C0424@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19918 Modified Files: cups.spec Added Files: cups-str3272.patch Log Message: * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 - Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). cups-str3272.patch: dnssd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE cups-str3272.patch --- diff -up cups-1.4rc1/backend/dnssd.c.str3272 cups-1.4rc1/backend/dnssd.c --- cups-1.4rc1/backend/dnssd.c.str3272 2009-04-14 19:14:02.000000000 +0100 +++ cups-1.4rc1/backend/dnssd.c 2009-07-29 13:56:55.643396809 +0100 @@ -153,8 +153,8 @@ main(int argc, /* I - Number of comm memset(&action, 0, sizeof(action)); sigemptyset(&action.sa_mask); - action.sa_handler = SIG_IGN; - sigaction(SIGTERM, &action, sigterm_handler); + action.sa_handler = sigterm_handler; + sigaction(SIGTERM, &action, NULL); #else signal(SIGTERM, sigterm_handler); #endif /* HAVE_SIGSET */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.489 retrieving revision 1.490 diff -u -p -r1.489 -r1.490 --- cups.spec 28 Jul 2009 21:39:42 -0000 1.489 +++ cups.spec 29 Jul 2009 13:00:27 -0000 1.490 @@ -59,7 +59,8 @@ Patch32: cups-str3253.patch Patch33: cups-str3266.patch Patch34: cups-str3262.patch Patch35: cups-cups-get-classes.patch -Patch36: cups-avahi.patch +Patch36: cups-str3272.patch +Patch37: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -216,7 +217,8 @@ module. %patch33 -p1 -b .str3266 %patch34 -p1 -b .str3262 %patch35 -p1 -b .cups-get-classes -#%patch36 -p1 -b .avahi +%patch36 -p1 -b .str3272 +#%patch37 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -509,7 +511,8 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog -* Tue Jul 28 2009 Tim Waugh 1:1.4-0.rc1.12 +* Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 +- Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking to CUPS 1.2 or later (bug #512866). From hguemar at fedoraproject.org Wed Jul 29 13:33:53 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 13:33:53 +0000 (UTC) Subject: rpms/sonata/F-10 sonata.spec,1.20,1.21 Message-ID: <20090729133353.48C9111C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27882 Modified Files: sonata.spec Log Message: fixed patch name Index: sonata.spec =================================================================== RCS file: /cvs/extras/rpms/sonata/F-10/sonata.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sonata.spec 27 Jul 2009 18:59:34 -0000 1.20 +++ sonata.spec 29 Jul 2009 13:33:52 -0000 1.21 @@ -2,13 +2,13 @@ Name: sonata Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia License: GPLv3+ URL: http://sonata.berlios.de/ Source0: http://download.berlios.de/sonata/sonata-%{version}.tar.bz2 -Patch0: sonata-1.2-nocleaning.patch +Patch0: sonata-1.6.2-nocleaning.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: pygtk2-devel gtk2-devel @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar - 1.6.2-2 +- Fixed patch name. + * Mon Jul 27 2009 Ha?kel Gu?mar - 1.6.2-1 - Updated to 1.6.2 From jakub at fedoraproject.org Wed Jul 29 13:35:47 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Wed, 29 Jul 2009 13:35:47 +0000 (UTC) Subject: rpms/gcc/F-11 gcc44-rh503816-1.patch, NONE, 1.1 gcc44-rh503816-2.patch, NONE, 1.1 gcc44-unwind-debug-hook.patch, NONE, 1.1 .cvsignore, 1.275, 1.276 gcc.spec, 1.49, 1.50 gcc44-power7.patch, 1.4, 1.5 sources, 1.278, 1.279 Message-ID: <20090729133547.8E7E811C00CE@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28327 Modified Files: .cvsignore gcc.spec gcc44-power7.patch sources Added Files: gcc44-rh503816-1.patch gcc44-rh503816-2.patch gcc44-unwind-debug-hook.patch Log Message: 4.4.1-2.fc11 gcc44-rh503816-1.patch: gcc/var-tracking.c | 370 +++++++++++++++++++++++++++++++++++++--------------- libiberty/hashtab.c | 3 2 files changed, 271 insertions(+), 102 deletions(-) --- NEW FILE gcc44-rh503816-1.patch --- 2009-06-21 Jakub Jelinek * var-tracking.c (struct shared_hash_def, shared_hash): New types. (dataflow_set): Change vars type from htab_t to shared_hash. (shared_hash_pool, empty_shared_hash): New variables. (vars_clear): Removed. (shared_hash_shared, shared_hash_htab, shared_hash_copy, shared_hash_find_slot_unshare, shared_hash_find_slot, shared_hash_find_slot_noinsert, shared_hash_find): New static inlines. (shared_hash_unshare, shared_hash_destroy): New functions. (unshare_variable): Unshare set->vars if shared, use shared_hash_htab. (vars_copy): Use htab_traverse_noresize instead of htab_traverse. (get_init_value, find_src_set_src, dump_dataflow_set, clobber_variable_part, emit_notes_for_differences): Use shared_hash_htab. (dataflow_set_init): Remove second argument, set vars to empty_shared_hash instead of creating a new htab. (dataflow_set_clear): Call shared_hash_destroy and set vars to empty_shared_hash instead of calling vars_clear. (dataflow_set_copy): Don't call vars_copy, instead just share the src htab with dst. (variable_union): Use shared_hash_*, use initially NO_INSERT lookup if set->vars is shared. Don't keep slot cleared before calling unshare_variable. Unshare set->vars if needed. Even ->refcount == 1 vars must be unshared if set->vars is shared and var needs to be modified. (variable_canonicalize): New function. (dataflow_set_union): If dst->vars is empty, just share src->vars with dst->vars and traverse with variable_canonicalize to canonicalize and unshare what is needed. (dataflow_set_different): If old_set and new_set use the same shared htab, they aren't different. If number of htab elements is different, htabs are different. Use shared_hash_*. (dataflow_set_destroy): Call shared_hash_destroy instead of htab_delete. (compute_bb_dataflow, emit_notes_in_bb, vt_emit_notes): Don't pass second argument to dataflow_set_init. (vt_initialize): Likewise. Initialize shared_hash_pool and empty_shared_hash, move bb in/out initialization afterwards. Use variable_htab_free instead of NULL as changed_variables del hook. (variable_was_changed): Change type of second argument to pointer to dataflow_set. When inserting var into changed_variables, bump refcount. Unshare set->vars if set is shared htab and slot needs to be cleared. (set_variable_part): Use shared_hash_*, use initially NO_INSERT lookup if set->vars is shared. Unshare set->vars if needed. Even ->refcount == 1 vars must be unshared if set->vars is shared and var needs to be modified. Adjust variable_was_changed caller. (delete_variable_part): Use shared_hash_*. Even ->refcount == 1 vars must be unshared if set->vars is shared and var needs to be modified. Adjust variable_was_changed caller. (emit_note_insn_var_location): Don't pool_free var. (emit_notes_for_differences_1): Initialize empty_var->refcount to 0 instead of 1. (vt_finalize): Call htab_delete on empty_shared_hash->htab and free_alloc_pool on shared_hash_pool. * hashtab.c (htab_traverse): Don't call htab_expand for nearly empty hashtabs with sizes 7, 13 or 31. --- gcc/var-tracking.c (revision 148758) +++ gcc/var-tracking.c (revision 148760) @@ -182,6 +182,17 @@ typedef struct attrs_def HOST_WIDE_INT offset; } *attrs; +/* Structure holding a refcounted hash table. If refcount > 1, + it must be first unshared before modified. */ +typedef struct shared_hash_def +{ + /* Reference count. */ + int refcount; + + /* Actual hash table. */ + htab_t htab; +} *shared_hash; + /* Structure holding the IN or OUT set for a basic block. */ typedef struct dataflow_set_def { @@ -192,7 +203,7 @@ typedef struct dataflow_set_def attrs regs[FIRST_PSEUDO_REGISTER]; /* Variable locations. */ - htab_t vars; + shared_hash vars; } dataflow_set; /* The structure (one for each basic block) containing the information @@ -280,12 +291,18 @@ static alloc_pool var_pool; /* Alloc pool for struct location_chain_def. */ static alloc_pool loc_chain_pool; +/* Alloc pool for struct shared_hash_def. */ +static alloc_pool shared_hash_pool; + /* Changed variables, notes will be emitted for them. */ static htab_t changed_variables; /* Shall notes be emitted? */ static bool emit_notes; +/* Empty shared hashtable. */ +static shared_hash empty_shared_hash; + /* Local function prototypes. */ static void stack_adjust_offset_pre_post (rtx, HOST_WIDE_INT *, HOST_WIDE_INT *); @@ -305,7 +322,6 @@ static void attrs_list_insert (attrs *, static void attrs_list_copy (attrs *, attrs); static void attrs_list_union (attrs *, attrs); -static void vars_clear (htab_t); static variable unshare_variable (dataflow_set *set, variable var, enum var_init_status); static int vars_copy_1 (void **, void *); @@ -321,11 +337,12 @@ static void var_mem_delete_and_set (data enum var_init_status, rtx); static void var_mem_delete (dataflow_set *, rtx, bool); -static void dataflow_set_init (dataflow_set *, int); +static void dataflow_set_init (dataflow_set *); static void dataflow_set_clear (dataflow_set *); static void dataflow_set_copy (dataflow_set *, dataflow_set *); static int variable_union_info_cmp_pos (const void *, const void *); static int variable_union (void **, void *); +static int variable_canonicalize (void **, void *); static void dataflow_set_union (dataflow_set *, dataflow_set *); static bool variable_part_different_p (variable_part *, variable_part *); static bool variable_different_p (variable, variable, bool); @@ -352,7 +369,7 @@ static void dump_vars (htab_t); static void dump_dataflow_set (dataflow_set *); static void dump_dataflow_sets (void); -static void variable_was_changed (variable, htab_t); +static void variable_was_changed (variable, dataflow_set *); static void set_variable_part (dataflow_set *, rtx, tree, HOST_WIDE_INT, enum var_init_status, rtx); static void clobber_variable_part (dataflow_set *, rtx, tree, HOST_WIDE_INT, @@ -742,12 +759,107 @@ attrs_list_union (attrs *dstp, attrs src } } -/* Delete all variables from hash table VARS. */ +/* Shared hashtable support. */ + +/* Return true if VARS is shared. */ + +static inline bool +shared_hash_shared (shared_hash vars) +{ + return vars->refcount > 1; +} + +/* Return the hash table for VARS. */ + +static inline htab_t +shared_hash_htab (shared_hash vars) +{ + return vars->htab; +} + +/* Copy variables into a new hash table. */ + +static shared_hash +shared_hash_unshare (shared_hash vars) +{ + shared_hash new_vars = (shared_hash) pool_alloc (shared_hash_pool); + gcc_assert (vars->refcount > 1); + new_vars->refcount = 1; + new_vars->htab + = htab_create (htab_elements (vars->htab) + 3, variable_htab_hash, + variable_htab_eq, variable_htab_free); + vars_copy (new_vars->htab, vars->htab); + vars->refcount--; + return new_vars; +} + +/* Increment reference counter on VARS and return it. */ + +static inline shared_hash +shared_hash_copy (shared_hash vars) +{ + vars->refcount++; + return vars; +} + +/* Decrement reference counter and destroy hash table if not shared + anymore. */ static void -vars_clear (htab_t vars) +shared_hash_destroy (shared_hash vars) { - htab_empty (vars); + gcc_assert (vars->refcount > 0); + if (--vars->refcount == 0) + { + htab_delete (vars->htab); + pool_free (shared_hash_pool, vars); + } +} + +/* Unshare *PVARS if shared and return slot for DECL. If INS is + INSERT, insert it if not already present. */ + +static inline void ** +shared_hash_find_slot_unshare (shared_hash *pvars, tree decl, + enum insert_option ins) +{ + if (shared_hash_shared (*pvars)) + *pvars = shared_hash_unshare (*pvars); + return htab_find_slot_with_hash (shared_hash_htab (*pvars), decl, + VARIABLE_HASH_VAL (decl), ins); +} + +/* Return slot for DECL, if it is already present in the hash table. + If it is not present, insert it only VARS is not shared, otherwise + return NULL. */ + +static inline void ** +shared_hash_find_slot (shared_hash vars, tree decl) +{ + return htab_find_slot_with_hash (shared_hash_htab (vars), decl, + VARIABLE_HASH_VAL (decl), + shared_hash_shared (vars) + ? NO_INSERT : INSERT); +} + +/* Return slot for DECL only if it is already present in the hash table. */ + +static inline void ** +shared_hash_find_slot_noinsert (shared_hash vars, tree decl) +{ + return htab_find_slot_with_hash (shared_hash_htab (vars), decl, + VARIABLE_HASH_VAL (decl), NO_INSERT); +} + +/* Return variable for DECL or NULL if not already present in the hash + table. */ + +static inline variable +shared_hash_find (shared_hash vars, tree decl) +{ + return (variable) + htab_find_with_hash (shared_hash_htab (vars), decl, + VARIABLE_HASH_VAL (decl)); } /* Return a copy of a variable VAR and insert it to dataflow set SET. */ @@ -801,9 +913,7 @@ unshare_variable (dataflow_set *set, var new_var->var_part[i].cur_loc = NULL; } - slot = htab_find_slot_with_hash (set->vars, new_var->decl, - VARIABLE_HASH_VAL (new_var->decl), - INSERT); + slot = shared_hash_find_slot_unshare (&set->vars, new_var->decl, INSERT); *slot = new_var; return new_var; } @@ -834,8 +944,7 @@ vars_copy_1 (void **slot, void *data) static void vars_copy (htab_t dst, htab_t src) { - vars_clear (dst); - htab_traverse (src, vars_copy_1, dst); + htab_traverse_noresize (src, vars_copy_1, dst); } /* Map a decl to its main debug decl. */ @@ -874,7 +983,6 @@ var_reg_set (dataflow_set *set, rtx loc, static int get_init_value (dataflow_set *set, rtx loc, tree decl) { - void **slot; variable var; int i; int ret_val = VAR_INIT_STATUS_UNKNOWN; @@ -882,11 +990,9 @@ get_init_value (dataflow_set *set, rtx l if (! flag_var_tracking_uninit) return VAR_INIT_STATUS_INITIALIZED; - slot = htab_find_slot_with_hash (set->vars, decl, VARIABLE_HASH_VAL (decl), - NO_INSERT); - if (slot) + var = shared_hash_find (set->vars, decl); + if (var) { - var = * (variable *) slot; for (i = 0; i < var->n_var_parts && ret_val == VAR_INIT_STATUS_UNKNOWN; i++) { location_chain nextp; @@ -1050,11 +1156,10 @@ var_mem_delete (dataflow_set *set, rtx l VARS_SIZE is the initial size of hash table VARS. */ static void -dataflow_set_init (dataflow_set *set, int vars_size) +dataflow_set_init (dataflow_set *set) { init_attrs_list_set (set->regs); - set->vars = htab_create (vars_size, variable_htab_hash, variable_htab_eq, - variable_htab_free); + set->vars = shared_hash_copy (empty_shared_hash); set->stack_adjust = 0; } @@ -1068,7 +1173,8 @@ dataflow_set_clear (dataflow_set *set) for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) attrs_list_clear (&set->regs[i]); - vars_clear (set->vars); + shared_hash_destroy (set->vars); + set->vars = shared_hash_copy (empty_shared_hash); } /* Copy the contents of dataflow set SRC to DST. */ @@ -1081,7 +1187,8 @@ dataflow_set_copy (dataflow_set *dst, da for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) attrs_list_copy (&dst->regs[i], src->regs[i]); - vars_copy (dst->vars, src->vars); + shared_hash_destroy (dst->vars); + dst->vars = shared_hash_copy (src->vars); dst->stack_adjust = src->stack_adjust; } @@ -1129,15 +1236,14 @@ variable_union_info_cmp_pos (const void static int variable_union (void **slot, void *data) { - variable src, dst, *dstp; + variable src, dst; + void **dstp; dataflow_set *set = (dataflow_set *) data; int i, j, k; src = *(variable *) slot; - dstp = (variable *) htab_find_slot_with_hash (set->vars, src->decl, - VARIABLE_HASH_VAL (src->decl), - INSERT); - if (!*dstp) + dstp = shared_hash_find_slot (set->vars, src->decl); + if (!dstp || !*dstp) { src->refcount++; @@ -1162,16 +1268,23 @@ variable_union (void **slot, void *data) if (! flag_var_tracking_uninit) status = VAR_INIT_STATUS_INITIALIZED; + if (dstp) + *dstp = (void *) src; unshare_variable (set, src, status); } else - *dstp = src; + { + if (!dstp) + dstp = shared_hash_find_slot_unshare (&set->vars, src->decl, + INSERT); + *dstp = (void *) src; + } /* Continue traversing the hash table. */ return 1; } else - dst = *dstp; + dst = (variable) *dstp; gcc_assert (src->n_var_parts); @@ -1196,7 +1309,8 @@ variable_union (void **slot, void *data) thus there are at most MAX_VAR_PARTS different offsets. */ gcc_assert (k <= MAX_VAR_PARTS); - if (dst->refcount > 1 && dst->n_var_parts != k) + if ((dst->refcount > 1 || shared_hash_shared (set->vars)) + && dst->n_var_parts != k) { enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; @@ -1226,7 +1340,7 @@ variable_union (void **slot, void *data) /* If DST is shared compare the location chains. If they are different we will modify the chain in DST with high probability so make a copy of DST. */ - if (dst->refcount > 1) + if (dst->refcount > 1 || shared_hash_shared (set->vars)) { for (node = src->var_part[i].loc_chain, node2 = dst->var_part[j].loc_chain; node && node2; @@ -1379,6 +1493,46 @@ variable_union (void **slot, void *data) return 1; } +/* Like variable_union, but only used when doing dataflow_set_union + into an empty hashtab. To allow sharing, dst is initially shared + with src (so all variables are "copied" from src to dst hashtab), + so only unshare_variable for variables that need canonicalization + are needed. */ + +static int +variable_canonicalize (void **slot, void *data) +{ + variable src; + dataflow_set *set = (dataflow_set *) data; + int k; + + src = *(variable *) slot; + + /* If CUR_LOC of some variable part is not the first element of + the location chain we are going to change it so we have to make + a copy of the variable. */ + for (k = 0; k < src->n_var_parts; k++) + { + gcc_assert (!src->var_part[k].loc_chain == !src->var_part[k].cur_loc); + if (src->var_part[k].loc_chain) + { + gcc_assert (src->var_part[k].cur_loc); + if (src->var_part[k].cur_loc != src->var_part[k].loc_chain->loc) + break; + } + } + if (k < src->n_var_parts) + { + enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; + + if (! flag_var_tracking_uninit) + status = VAR_INIT_STATUS_INITIALIZED; + + unshare_variable (set, src, status); + } + return 1; +} + /* Compute union of dataflow sets SRC and DST and store it to DST. */ static void @@ -1389,7 +1543,14 @@ dataflow_set_union (dataflow_set *dst, d for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) attrs_list_union (&dst->regs[i], src->regs[i]); - htab_traverse (src->vars, variable_union, dst); + if (dst->vars == empty_shared_hash) + { + shared_hash_destroy (dst->vars); + dst->vars = shared_hash_copy (src->vars); + htab_traverse (shared_hash_htab (src->vars), variable_canonicalize, dst); + } + else + htab_traverse (shared_hash_htab (src->vars), variable_union, dst); } /* Flag whether two dataflow sets being compared contain different data. */ @@ -1522,15 +1683,24 @@ dataflow_set_different_2 (void **slot, v static bool dataflow_set_different (dataflow_set *old_set, dataflow_set *new_set) { + if (old_set->vars == new_set->vars) + return false; + + if (htab_elements (shared_hash_htab (old_set->vars)) + != htab_elements (shared_hash_htab (new_set->vars))) + return true; + dataflow_set_different_value = false; - htab_traverse (old_set->vars, dataflow_set_different_1, new_set->vars); + htab_traverse (shared_hash_htab (old_set->vars), dataflow_set_different_1, + shared_hash_htab (new_set->vars)); if (!dataflow_set_different_value) { /* We have compared the variables which are in both hash tables so now only check whether there are some variables in NEW_SET->VARS which are not in OLD_SET->VARS. */ - htab_traverse (new_set->vars, dataflow_set_different_2, old_set->vars); + htab_traverse (shared_hash_htab (new_set->vars), dataflow_set_different_2, + shared_hash_htab (old_set->vars)); } return dataflow_set_different_value; } @@ -1545,7 +1715,7 @@ dataflow_set_destroy (dataflow_set *set) for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) attrs_list_clear (&set->regs[i]); - htab_delete (set->vars); + shared_hash_destroy (set->vars); set->vars = NULL; } @@ -1985,7 +2155,6 @@ find_src_set_src (dataflow_set *set, rtx { tree decl = NULL_TREE; /* The variable being copied around. */ rtx set_src = NULL_RTX; /* The value for "decl" stored in "src". */ - void **slot; variable var; location_chain nextp; int i; @@ -1998,12 +2167,9 @@ find_src_set_src (dataflow_set *set, rtx if (src && decl) { - slot = htab_find_slot_with_hash (set->vars, decl, - VARIABLE_HASH_VAL (decl), NO_INSERT); - - if (slot) + var = shared_hash_find (set->vars, decl); + if (var) { - var = *(variable *) slot; found = false; for (i = 0; i < var->n_var_parts && !found; i++) for (nextp = var->var_part[i].loc_chain; nextp && !found; @@ -2031,7 +2197,7 @@ compute_bb_dataflow (basic_block bb) dataflow_set *in = &VTI (bb)->in; dataflow_set *out = &VTI (bb)->out; - dataflow_set_init (&old_out, htab_elements (VTI (bb)->out.vars) + 3); + dataflow_set_init (&old_out); dataflow_set_copy (&old_out, out); dataflow_set_copy (out, in); @@ -2323,7 +2489,7 @@ dump_dataflow_set (dataflow_set *set) dump_attrs_list (set->regs[i]); } } - dump_vars (set->vars); + dump_vars (shared_hash_htab (set->vars)); fprintf (dump_file, "\n"); } @@ -2345,10 +2511,10 @@ dump_dataflow_sets (void) } /* Add variable VAR to the hash table of changed variables and - if it has no locations delete it from hash table HTAB. */ + if it has no locations delete it from SET's hash table. */ static void -variable_was_changed (variable var, htab_t htab) +variable_was_changed (variable var, dataflow_set *set) { hashval_t hash = VARIABLE_HASH_VAL (var->decl); @@ -2359,36 +2525,39 @@ variable_was_changed (variable var, htab slot = (variable *) htab_find_slot_with_hash (changed_variables, var->decl, hash, INSERT); - if (htab && var->n_var_parts == 0) + if (set && var->n_var_parts == 0) { variable empty_var; - void **old; empty_var = (variable) pool_alloc (var_pool); empty_var->decl = var->decl; empty_var->refcount = 1; empty_var->n_var_parts = 0; *slot = empty_var; - - old = htab_find_slot_with_hash (htab, var->decl, hash, - NO_INSERT); - if (old) - htab_clear_slot (htab, old); + goto drop_var; } else { + var->refcount++; *slot = var; } } else { - gcc_assert (htab); + gcc_assert (set); if (var->n_var_parts == 0) { - void **slot = htab_find_slot_with_hash (htab, var->decl, hash, - NO_INSERT); + void **slot; + + drop_var: + slot = shared_hash_find_slot_noinsert (set->vars, var->decl); if (slot) - htab_clear_slot (htab, slot); + { + if (shared_hash_shared (set->vars)) + slot = shared_hash_find_slot_unshare (&set->vars, var->decl, + NO_INSERT); + htab_clear_slot (shared_hash_htab (set->vars), slot); + } } } } @@ -2438,12 +2607,12 @@ set_variable_part (dataflow_set *set, rt location_chain node, next; location_chain *nextp; variable var; - void **slot; - - slot = htab_find_slot_with_hash (set->vars, decl, - VARIABLE_HASH_VAL (decl), INSERT); - if (!*slot) + void **slot = shared_hash_find_slot (set->vars, decl); + + if (!slot || !*slot) { + if (!slot) + slot = shared_hash_find_slot_unshare (&set->vars, decl, INSERT); /* Create new variable information. */ var = (variable) pool_alloc (var_pool); var->decl = decl; @@ -2479,13 +2648,12 @@ set_variable_part (dataflow_set *set, rt if (set_src != NULL) node->set_src = set_src; - *slot = var; return; } else { /* We have to make a copy of a shared variable. */ - if (var->refcount > 1) + if (var->refcount > 1 || shared_hash_shared (set->vars)) var = unshare_variable (set, var, initialized); } } @@ -2494,7 +2662,7 @@ set_variable_part (dataflow_set *set, rt /* We have not found the location part, new one will be created. */ /* We have to make a copy of the shared variable. */ - if (var->refcount > 1) + if (var->refcount > 1 || shared_hash_shared (set->vars)) var = unshare_variable (set, var, initialized); /* We track only variables whose size is <= MAX_VAR_PARTS bytes @@ -2548,7 +2716,7 @@ set_variable_part (dataflow_set *set, rt if (var->var_part[pos].cur_loc == NULL) { var->var_part[pos].cur_loc = loc; - variable_was_changed (var, set->vars); + variable_was_changed (var, set); } } @@ -2561,16 +2729,14 @@ static void clobber_variable_part (dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset, rtx set_src) { - void **slot; + variable var; if (! decl || ! DECL_P (decl)) return; - slot = htab_find_slot_with_hash (set->vars, decl, VARIABLE_HASH_VAL (decl), - NO_INSERT); - if (slot) + var = shared_hash_find (set->vars, decl); + if (var) { - variable var = (variable) *slot; int pos = find_variable_location_part (var, offset, NULL); if (pos >= 0) @@ -2627,13 +2793,9 @@ static void delete_variable_part (dataflow_set *set, rtx loc, tree decl, HOST_WIDE_INT offset) { - void **slot; - - slot = htab_find_slot_with_hash (set->vars, decl, VARIABLE_HASH_VAL (decl), - NO_INSERT); - if (slot) + variable var = shared_hash_find (set->vars, decl);; + if (var) { - variable var = (variable) *slot; int pos = find_variable_location_part (var, offset, NULL); if (pos >= 0) @@ -2642,7 +2804,7 @@ delete_variable_part (dataflow_set *set, location_chain *nextp; bool changed; - if (var->refcount > 1) + if (var->refcount > 1 || shared_hash_shared (set->vars)) { /* If the variable contains the location part we have to make a copy of the variable. */ @@ -2705,7 +2867,7 @@ delete_variable_part (dataflow_set *set, } } if (changed) - variable_was_changed (var, set->vars); + variable_was_changed (var, set); } } } @@ -2864,14 +3026,6 @@ emit_note_insn_var_location (void **varp htab_clear_slot (changed_variables, varp); - /* When there are no location parts the variable has been already - removed from hash table and a new empty variable was created. - Free the empty variable. */ - if (var->n_var_parts == 0) - { - pool_free (var_pool, var); - } - /* Continue traversing the hash table. */ return 1; } @@ -2910,7 +3064,7 @@ emit_notes_for_differences_1 (void **slo empty_var = (variable) pool_alloc (var_pool); empty_var->decl = old_var->decl; - empty_var->refcount = 1; + empty_var->refcount = 0; empty_var->n_var_parts = 0; variable_was_changed (empty_var, NULL); } @@ -2952,8 +3106,12 @@ static void emit_notes_for_differences (rtx insn, dataflow_set *old_set, dataflow_set *new_set) { - htab_traverse (old_set->vars, emit_notes_for_differences_1, new_set->vars); - htab_traverse (new_set->vars, emit_notes_for_differences_2, old_set->vars); + htab_traverse (shared_hash_htab (old_set->vars), + emit_notes_for_differences_1, + shared_hash_htab (new_set->vars)); + htab_traverse (shared_hash_htab (new_set->vars), + emit_notes_for_differences_2, + shared_hash_htab (old_set->vars)); emit_notes_for_changes (insn, EMIT_NOTE_BEFORE_INSN); } @@ -2965,7 +3123,7 @@ emit_notes_in_bb (basic_block bb) int i; dataflow_set set; - dataflow_set_init (&set, htab_elements (VTI (bb)->in.vars) + 3); + dataflow_set_init (&set); dataflow_set_copy (&set, &VTI (bb)->in); for (i = 0; i < VTI (bb)->n_mos; i++) @@ -3098,7 +3256,7 @@ vt_emit_notes (void) delete_variable_part). */ emit_notes = true; - dataflow_set_init (&empty, 7); + dataflow_set_init (&empty); last_out = ∅ FOR_EACH_BB (bb) @@ -3343,14 +3501,6 @@ vt_initialize (void) } } - /* Init the IN and OUT sets. */ - FOR_ALL_BB (bb) - { - VTI (bb)->visited = false; - dataflow_set_init (&VTI (bb)->in, 7); - dataflow_set_init (&VTI (bb)->out, 7); - } - attrs_pool = create_alloc_pool ("attrs_def pool", sizeof (struct attrs_def), 1024); var_pool = create_alloc_pool ("variable_def pool", @@ -3358,8 +3508,24 @@ vt_initialize (void) loc_chain_pool = create_alloc_pool ("location_chain_def pool", sizeof (struct location_chain_def), 1024); + shared_hash_pool = create_alloc_pool ("shared_hash_def pool", + sizeof (struct shared_hash_def), 256); + empty_shared_hash = (shared_hash) pool_alloc (shared_hash_pool); + empty_shared_hash->refcount = 1; + empty_shared_hash->htab + = htab_create (1, variable_htab_hash, variable_htab_eq, + variable_htab_free); changed_variables = htab_create (10, variable_htab_hash, variable_htab_eq, - NULL); + variable_htab_free); + + /* Init the IN and OUT sets. */ + FOR_ALL_BB (bb) + { + VTI (bb)->visited = false; + dataflow_set_init (&VTI (bb)->in); + dataflow_set_init (&VTI (bb)->out); + } + vt_add_function_parameters (); } @@ -3381,10 +3547,12 @@ vt_finalize (void) dataflow_set_destroy (&VTI (bb)->out); } free_aux_for_blocks (); + htab_delete (empty_shared_hash->htab); + htab_delete (changed_variables); free_alloc_pool (attrs_pool); free_alloc_pool (var_pool); free_alloc_pool (loc_chain_pool); - htab_delete (changed_variables); + free_alloc_pool (shared_hash_pool); } /* The entry point to variable tracking pass. */ --- libiberty/hashtab.c (revision 148758) +++ libiberty/hashtab.c (revision 148760) @@ -759,7 +759,8 @@ htab_traverse_noresize (htab_t htab, hta void htab_traverse (htab_t htab, htab_trav callback, PTR info) { - if (htab_elements (htab) * 8 < htab_size (htab)) + size_t size = htab_size (htab); + if (htab_elements (htab) * 8 < size && size > 32) htab_expand (htab); htab_traverse_noresize (htab, callback, info); gcc44-rh503816-2.patch: var-tracking.c | 318 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 176 insertions(+), 142 deletions(-) --- NEW FILE gcc44-rh503816-2.patch --- 2009-06-23 Jakub Jelinek * var-tracking.c (unshare_variable): Force initialized to be VAR_INIT_STATUS_INITIALIZED unless flag_var_tracking_uninit. (set_variable_part): Likewise. (struct variable_union_info): Remove pos_src field. (vui_vec, vui_allocated): New variables. (variable_union): Pass VAR_INIT_STATUS_UNKNOWN to unshare_variable unconditionally. Avoid XCVECNEW/free for every sorting, for dst_l == 1 use a simpler sorting algorithm. Compute pos field right away, don't fill in pos_src. For dst_l == 2 avoid qsort. Avoid quadratic comparison if !flag_var_tracking_uninit. (variable_canonicalize): Pass VAR_INIT_STATUS_UNKNOWN to unshare_variable unconditionally. (dataflow_set_different_2): Removed. (dataflow_set_different): Don't traverse second hash table. (compute_bb_dataflow): Pass VAR_INIT_STATUS_UNINITIALIZED unconditionally to var_reg_set or var_mem_set. (emit_notes_in_bb): Likewise. (delete_variable_part): Pass VAR_INIT_STATUS_UNKNOWN to unshare_variable. (emit_note_insn_var_location): Don't set initialized to VAR_INIT_STATUS_INITIALIZED early. (vt_finalize): Free vui_vec if needed, clear vui_vec and vui_allocated. --- gcc/var-tracking.c (revision 148851) +++ gcc/var-tracking.c (revision 148852) @@ -347,7 +347,6 @@ static void dataflow_set_union (dataflow static bool variable_part_different_p (variable_part *, variable_part *); static bool variable_different_p (variable, variable, bool); static int dataflow_set_different_1 (void **, void *); -static int dataflow_set_different_2 (void **, void *); static bool dataflow_set_different (dataflow_set *, dataflow_set *); static void dataflow_set_destroy (dataflow_set *); @@ -878,6 +877,9 @@ unshare_variable (dataflow_set *set, var var->refcount--; new_var->n_var_parts = var->n_var_parts; + if (! flag_var_tracking_uninit) + initialized = VAR_INIT_STATUS_INITIALIZED; + for (i = 0; i < var->n_var_parts; i++) { location_chain node; @@ -1202,11 +1204,14 @@ struct variable_union_info /* The sum of positions in the input chains. */ int pos; - /* The position in the chains of SRC and DST dataflow sets. */ - int pos_src; + /* The position in the chain of DST dataflow set. */ int pos_dst; }; +/* Buffer for location list sorting and its allocated size. */ +static struct variable_union_info *vui_vec; +static int vui_allocated; + /* Compare function for qsort, order the structures by POS element. */ static int @@ -1263,14 +1268,9 @@ variable_union (void **slot, void *data) } if (k < src->n_var_parts) { - enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; - - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; - if (dstp) *dstp = (void *) src; - unshare_variable (set, src, status); + unshare_variable (set, src, VAR_INIT_STATUS_UNKNOWN); } else { @@ -1311,13 +1311,7 @@ variable_union (void **slot, void *data) if ((dst->refcount > 1 || shared_hash_shared (set->vars)) && dst->n_var_parts != k) - { - enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; - - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; - dst = unshare_variable (set, dst, status); - } + dst = unshare_variable (set, dst, VAR_INIT_STATUS_UNKNOWN); i = src->n_var_parts - 1; j = dst->n_var_parts - 1; @@ -1366,70 +1360,152 @@ variable_union (void **slot, void *data) dst_l = 0; for (node = dst->var_part[j].loc_chain; node; node = node->next) dst_l++; - vui = XCNEWVEC (struct variable_union_info, src_l + dst_l); - /* Fill in the locations from DST. */ - for (node = dst->var_part[j].loc_chain, jj = 0; node; - node = node->next, jj++) + if (dst_l == 1) { - vui[jj].lc = node; - vui[jj].pos_dst = jj; + /* The most common case, much simpler, no qsort is needed. */ + location_chain dstnode = dst->var_part[j].loc_chain; + dst->var_part[k].loc_chain = dstnode; + dst->var_part[k].offset = dst->var_part[j].offset; + node2 = dstnode; + for (node = src->var_part[i].loc_chain; node; node = node->next) + if (!((REG_P (dstnode->loc) + && REG_P (node->loc) + && REGNO (dstnode->loc) == REGNO (node->loc)) + || rtx_equal_p (dstnode->loc, node->loc))) + { + location_chain new_node; - /* Value larger than a sum of 2 valid positions. */ - vui[jj].pos_src = src_l + dst_l; + /* Copy the location from SRC. */ + new_node = (location_chain) pool_alloc (loc_chain_pool); + new_node->loc = node->loc; + new_node->init = node->init; + if (!node->set_src || MEM_P (node->set_src)) + new_node->set_src = NULL; + else + new_node->set_src = node->set_src; + node2->next = new_node; + node2 = new_node; + } + node2->next = NULL; } - - /* Fill in the locations from SRC. */ - n = dst_l; - for (node = src->var_part[i].loc_chain, ii = 0; node; - node = node->next, ii++) + else { - /* Find location from NODE. */ - for (jj = 0; jj < dst_l; jj++) + if (src_l + dst_l > vui_allocated) { - if ((REG_P (vui[jj].lc->loc) - && REG_P (node->loc) - && REGNO (vui[jj].lc->loc) == REGNO (node->loc)) - || rtx_equal_p (vui[jj].lc->loc, node->loc)) - { - vui[jj].pos_src = ii; - break; - } + vui_allocated = MAX (vui_allocated * 2, src_l + dst_l); + vui_vec = XRESIZEVEC (struct variable_union_info, vui_vec, + vui_allocated); } - if (jj >= dst_l) /* The location has not been found. */ + vui = vui_vec; + + /* Fill in the locations from DST. */ + for (node = dst->var_part[j].loc_chain, jj = 0; node; + node = node->next, jj++) { - location_chain new_node; + vui[jj].lc = node; + vui[jj].pos_dst = jj; - /* Copy the location from SRC. */ - new_node = (location_chain) pool_alloc (loc_chain_pool); - new_node->loc = node->loc; - new_node->init = node->init; - if (!node->set_src || MEM_P (node->set_src)) - new_node->set_src = NULL; - else - new_node->set_src = node->set_src; - vui[n].lc = new_node; - vui[n].pos_src = ii; - vui[n].pos_dst = src_l + dst_l; - n++; + /* Pos plus value larger than a sum of 2 valid positions. */ + vui[jj].pos = jj + src_l + dst_l; } - } - for (ii = 0; ii < src_l + dst_l; ii++) - vui[ii].pos = vui[ii].pos_src + vui[ii].pos_dst; + /* Fill in the locations from SRC. */ + n = dst_l; + for (node = src->var_part[i].loc_chain, ii = 0; node; + node = node->next, ii++) + { + /* Find location from NODE. */ + for (jj = 0; jj < dst_l; jj++) + { + if ((REG_P (vui[jj].lc->loc) + && REG_P (node->loc) + && REGNO (vui[jj].lc->loc) == REGNO (node->loc)) + || rtx_equal_p (vui[jj].lc->loc, node->loc)) + { + vui[jj].pos = jj + ii; + break; + } + } + if (jj >= dst_l) /* The location has not been found. */ + { + location_chain new_node; - qsort (vui, n, sizeof (struct variable_union_info), - variable_union_info_cmp_pos); + /* Copy the location from SRC. */ + new_node = (location_chain) pool_alloc (loc_chain_pool); + new_node->loc = node->loc; + new_node->init = node->init; + if (!node->set_src || MEM_P (node->set_src)) + new_node->set_src = NULL; + else + new_node->set_src = node->set_src; + vui[n].lc = new_node; + vui[n].pos_dst = src_l + dst_l; + vui[n].pos = ii + src_l + dst_l; + n++; + } + } - /* Reconnect the nodes in sorted order. */ - for (ii = 1; ii < n; ii++) - vui[ii - 1].lc->next = vui[ii].lc; - vui[n - 1].lc->next = NULL; + if (dst_l == 2) + { + /* Special case still very common case. For dst_l == 2 + all entries dst_l ... n-1 are sorted, with for i >= dst_l + vui[i].pos == i + src_l + dst_l. */ + if (vui[0].pos > vui[1].pos) + { + /* Order should be 1, 0, 2... */ + dst->var_part[k].loc_chain = vui[1].lc; + vui[1].lc->next = vui[0].lc; + if (n >= 3) + { + vui[0].lc->next = vui[2].lc; + vui[n - 1].lc->next = NULL; + } + else + vui[0].lc->next = NULL; + ii = 3; + } + else + { + dst->var_part[k].loc_chain = vui[0].lc; + if (n >= 3 && vui[2].pos < vui[1].pos) + { + /* Order should be 0, 2, 1, 3... */ + vui[0].lc->next = vui[2].lc; + vui[2].lc->next = vui[1].lc; + if (n >= 4) + { + vui[1].lc->next = vui[3].lc; + vui[n - 1].lc->next = NULL; + } + else + vui[1].lc->next = NULL; + ii = 4; + } + else + { + /* Order should be 0, 1, 2... */ + ii = 1; + vui[n - 1].lc->next = NULL; + } + } + for (; ii < n; ii++) + vui[ii - 1].lc->next = vui[ii].lc; + } + else + { + qsort (vui, n, sizeof (struct variable_union_info), + variable_union_info_cmp_pos); - dst->var_part[k].loc_chain = vui[0].lc; - dst->var_part[k].offset = dst->var_part[j].offset; + /* Reconnect the nodes in sorted order. */ + for (ii = 1; ii < n; ii++) + vui[ii - 1].lc->next = vui[ii].lc; + vui[n - 1].lc->next = NULL; + dst->var_part[k].loc_chain = vui[0].lc; + } - free (vui); + dst->var_part[k].offset = dst->var_part[j].offset; + } i--; j--; } @@ -1477,17 +1553,18 @@ variable_union (void **slot, void *data) dst->var_part[k].cur_loc = NULL; } - for (i = 0; i < src->n_var_parts && i < dst->n_var_parts; i++) - { - location_chain node, node2; - for (node = src->var_part[i].loc_chain; node; node = node->next) - for (node2 = dst->var_part[i].loc_chain; node2; node2 = node2->next) - if (rtx_equal_p (node->loc, node2->loc)) - { - if (node->init > node2->init) - node2->init = node->init; - } - } + if (flag_var_tracking_uninit) + for (i = 0; i < src->n_var_parts && i < dst->n_var_parts; i++) + { + location_chain node, node2; + for (node = src->var_part[i].loc_chain; node; node = node->next) + for (node2 = dst->var_part[i].loc_chain; node2; node2 = node2->next) + if (rtx_equal_p (node->loc, node2->loc)) + { + if (node->init > node2->init) + node2->init = node->init; + } + } /* Continue traversing the hash table. */ return 1; @@ -1522,14 +1599,7 @@ variable_canonicalize (void **slot, void } } if (k < src->n_var_parts) - { - enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; - - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; - - unshare_variable (set, src, status); - } + unshare_variable (set, src, VAR_INIT_STATUS_UNKNOWN); return 1; } @@ -1650,34 +1720,6 @@ dataflow_set_different_1 (void **slot, v return 1; } -/* Compare variable *SLOT with the same variable in hash table DATA - and set DATAFLOW_SET_DIFFERENT_VALUE if they are different. */ - -static int -dataflow_set_different_2 (void **slot, void *data) -{ - htab_t htab = (htab_t) data; - variable var1, var2; - - var1 = *(variable *) slot; - var2 = (variable) htab_find_with_hash (htab, var1->decl, - VARIABLE_HASH_VAL (var1->decl)); - if (!var2) - { - dataflow_set_different_value = true; - - /* Stop traversing the hash table. */ - return 0; - } - - /* If both variables are defined they have been already checked for - equivalence. */ - gcc_assert (!variable_different_p (var1, var2, false)); - - /* Continue traversing the hash table. */ - return 1; -} - /* Return true if dataflow sets OLD_SET and NEW_SET differ. */ static bool @@ -1694,14 +1736,9 @@ dataflow_set_different (dataflow_set *ol htab_traverse (shared_hash_htab (old_set->vars), dataflow_set_different_1, shared_hash_htab (new_set->vars)); - if (!dataflow_set_different_value) - { - /* We have compared the variables which are in both hash tables - so now only check whether there are some variables in NEW_SET->VARS - which are not in OLD_SET->VARS. */ - htab_traverse (shared_hash_htab (new_set->vars), dataflow_set_different_2, - shared_hash_htab (old_set->vars)); - } + /* No need to traverse the second hashtab, if both have the same number + of elements and the second one had all entries found in the first one, + then it can't have any extra entries. */ return dataflow_set_different_value; } @@ -2215,15 +2252,11 @@ compute_bb_dataflow (basic_block bb) case MO_USE: { rtx loc = VTI (bb)->mos[i].u.loc; - enum var_init_status status = VAR_INIT_STATUS_UNINITIALIZED; - - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; if (GET_CODE (loc) == REG) - var_reg_set (out, loc, status, NULL); + var_reg_set (out, loc, VAR_INIT_STATUS_UNINITIALIZED, NULL); else if (GET_CODE (loc) == MEM) - var_mem_set (out, loc, status, NULL); + var_mem_set (out, loc, VAR_INIT_STATUS_UNINITIALIZED, NULL); } break; @@ -2262,10 +2295,12 @@ compute_bb_dataflow (basic_block bb) if (! flag_var_tracking_uninit) src_status = VAR_INIT_STATUS_INITIALIZED; else - src_status = find_src_status (in, set_src); + { + src_status = find_src_status (in, set_src); - if (src_status == VAR_INIT_STATUS_UNKNOWN) - src_status = find_src_status (out, set_src); + if (src_status == VAR_INIT_STATUS_UNKNOWN) + src_status = find_src_status (out, set_src); + } set_src = find_src_set_src (in, set_src); @@ -2609,6 +2644,9 @@ set_variable_part (dataflow_set *set, rt variable var; void **slot = shared_hash_find_slot (set->vars, decl); + if (! flag_var_tracking_uninit) + initialized = VAR_INIT_STATUS_INITIALIZED; + if (!slot || !*slot) { if (!slot) @@ -2815,10 +2853,8 @@ delete_variable_part (dataflow_set *set, && REGNO (node->loc) == REGNO (loc)) || rtx_equal_p (node->loc, loc)) { - enum var_init_status status = VAR_INIT_STATUS_UNKNOWN; - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; - var = unshare_variable (set, var, status); + var = unshare_variable (set, var, + VAR_INIT_STATUS_UNKNOWN); break; } } @@ -2893,9 +2929,6 @@ emit_note_insn_var_location (void **varp gcc_assert (var->decl); - if (! flag_var_tracking_uninit) - initialized = VAR_INIT_STATUS_INITIALIZED; - complete = true; last_limit = 0; n_var_parts = 0; @@ -3148,14 +3181,11 @@ emit_notes_in_bb (basic_block bb) case MO_USE: { rtx loc = VTI (bb)->mos[i].u.loc; - - enum var_init_status status = VAR_INIT_STATUS_UNINITIALIZED; - if (! flag_var_tracking_uninit) - status = VAR_INIT_STATUS_INITIALIZED; + if (GET_CODE (loc) == REG) - var_reg_set (&set, loc, status, NULL); + var_reg_set (&set, loc, VAR_INIT_STATUS_UNINITIALIZED, NULL); else - var_mem_set (&set, loc, status, NULL); + var_mem_set (&set, loc, VAR_INIT_STATUS_UNINITIALIZED, NULL); emit_notes_for_changes (insn, EMIT_NOTE_AFTER_INSN); } @@ -3553,6 +3583,10 @@ vt_finalize (void) free_alloc_pool (var_pool); free_alloc_pool (loc_chain_pool); free_alloc_pool (shared_hash_pool); + if (vui_vec) + free (vui_vec); + vui_vec = NULL; + vui_allocated = 0; } /* The entry point to variable tracking pass. */ gcc44-unwind-debug-hook.patch: unwind-dw2.c | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) --- NEW FILE gcc44-unwind-debug-hook.patch --- 2009-05-27 Tom Tromey * unwind-dw2.c (_Unwind_DebugHook): New function. (uw_install_context): Call _Unwind_DebugHook. --- gcc/unwind-dw2.c (revision 147933) +++ gcc/unwind-dw2.c (revision 147934) @@ -1473,18 +1473,31 @@ uw_init_context_1 (struct _Unwind_Contex context->ra = __builtin_extract_return_addr (outer_ra); } +static void _Unwind_DebugHook (void *, void *) __attribute__ ((__noinline__)); + +/* This function is called during unwinding. It is intended as a hook + for a debugger to intercept exceptions. CFA is the CFA of the + target frame. HANDLER is the PC to which control will be + transferred. */ +static void +_Unwind_DebugHook (void *cfa __attribute__ ((__unused__)), + void *handler __attribute__ ((__unused__))) +{ + asm (""); +} /* Install TARGET into CURRENT so that we can return to it. This is a macro because __builtin_eh_return must be invoked in the context of our caller. */ -#define uw_install_context(CURRENT, TARGET) \ - do \ - { \ - long offset = uw_install_context_1 ((CURRENT), (TARGET)); \ - void *handler = __builtin_frob_return_addr ((TARGET)->ra); \ - __builtin_eh_return (offset, handler); \ - } \ +#define uw_install_context(CURRENT, TARGET) \ + do \ + { \ + long offset = uw_install_context_1 ((CURRENT), (TARGET)); \ + void *handler = __builtin_frob_return_addr ((TARGET)->ra); \ + _Unwind_DebugHook ((TARGET)->cfa, handler); \ + __builtin_eh_return (offset, handler); \ + } \ while (0) static long Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/F-11/.cvsignore,v retrieving revision 1.275 retrieving revision 1.276 diff -u -p -r1.275 -r1.276 --- .cvsignore 14 May 2009 08:50:15 -0000 1.275 +++ .cvsignore 29 Jul 2009 13:35:46 -0000 1.276 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090514.tar.bz2 +gcc-4.4.1-20090729.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/F-11/gcc.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- gcc.spec 14 May 2009 08:50:15 -0000 1.49 +++ gcc.spec 29 Jul 2009 13:35:47 -0000 1.50 @@ -1,9 +1,9 @@ -%global DATE 20090514 -%global SVNREV 147523 -%global gcc_version 4.4.0 +%global DATE 20090729 +%global SVNREV 150210 +%global gcc_version 4.4.1 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 5 +%global gcc_release 2 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -40,14 +40,14 @@ Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc Version: %{gcc_version} -Release: %{gcc_release} +Release: %{gcc_release}%{?dist} # libgcc, libgfortran, libmudflap, libgomp, libstdc++ and crtstuff have # GCC Runtime Exception. License: GPLv3+, GPLv3+ with exceptions and GPLv2+ with exceptions Group: Development/Languages # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export svn://gcc.gnu.org/svn/gcc/branches/redhat/gcc-4_4-branch@%{SVNREV} gcc-%{version}-%{DATE} +# svn export svn://gcc.gnu.org/svn/gcc/branches/redhat/fc11-4_4-branch@%{SVNREV} gcc-%{version}-%{DATE} # tar cf - gcc-%{version}-%{DATE} | bzip2 -9 > gcc-%{version}-%{DATE}.tar.bz2 Source0: gcc-%{version}-%{DATE}.tar.bz2 Source1: libgcc_post_upgrade.c @@ -152,14 +152,14 @@ Patch16: gcc44-libgomp-omp_h-multilib.pa Patch20: gcc44-libtool-no-rpath.patch Patch21: gcc44-cloog-dl.patch Patch22: gcc44-raw-string.patch -Patch24: gcc44-atom.patch +Patch24: gcc44-unwind-debug-hook.patch Patch25: gcc44-power7.patch Patch26: gcc44-power7-2.patch Patch27: gcc44-power7-3.patch Patch28: gcc44-pr38757.patch -Patch29: gcc44-pr39856.patch -Patch30: gcc44-libstdc++-docs.patch -Patch31: gcc44-pr39942.patch +Patch29: gcc44-libstdc++-docs.patch +Patch30: gcc44-rh503816-1.patch +Patch31: gcc44-rh503816-2.patch Patch1000: fastjar-0.97-segfault.patch @@ -459,16 +459,16 @@ which are required to compile with the G %patch21 -p0 -b .cloog-dl~ %endif %patch22 -p0 -b .raw-string~ -%patch24 -p0 -b .atom~ +%patch24 -p0 -b .unwind-debug-hook~ %patch25 -p0 -b .power7~ %patch26 -p0 -b .power7-2~ %patch27 -p0 -b .power7-3~ %patch28 -p0 -b .pr38757~ -%patch29 -p0 -b .pr39856~ %if %{build_libstdcxx_docs} -%patch30 -p0 -b .libstdc++-docs~ +%patch29 -p0 -b .libstdc++-docs~ %endif -%patch31 -p0 -b .pr39942~ +%patch30 -p0 -b .rh503816-1~ +%patch31 -p0 -b .rh503816-2~ # This testcase doesn't compile. rm libjava/testsuite/libjava.lang/PR35020* @@ -481,7 +481,7 @@ tar xzf %{SOURCE4} tar xjf %{SOURCE10} %endif -sed -i -e 's/4\.4\.1/4.4.0/' gcc/BASE-VER +sed -i -e 's/4\.4\.2/4.4.1/' gcc/BASE-VER echo 'Red Hat %{version}-%{gcc_release}' > gcc/DEV-PHASE cp -a libstdc++-v3/config/cpu/i{4,3}86/atomicity.h @@ -1803,6 +1803,61 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Wed Jul 29 2009 Jakub Jelinek 4.4.1-2.fc11 +- update from gcc-4_4-branch + - GCC 4.4.1 release + - PRs fortran/40727, rtl-optimization/40710, target/40832, + tree-optimization/40321, libfortran/40714, target/39943, target/40809, + tree-optimization/40792, c++/40740, libstdc++/40691, middle-end/40747, + c++/36628, c++/37206, c++/40502, c++/40684, c++/40689, fortran/40440, + rtl-optimization/40667, target/40668, c++/35828, c++/37816, c++/37946, + c++/40557, c++/40633, c++/40639, debug/40666, target/38900, c++/40274, + c++/40342, c++/40566, c++/40595, c++/40619, c/39902, fortran/40443, + fortran/40551, fortran/40576, fortran/40594, fortran/40638, + libfortran/40576, libstdc++/40297, libstdc++/40600, middle-end/40585, + middle-end/40669, other/40024, target/40587, tree-optimization/40493, + tree-optimization/40542, tree-optimization/40550, + tree-optimization/40579, tree-optimization/40582, + tree-optimization/40640, fortran/39800, fortran/40402, + libstdc++/40497, middle-end/40389, middle-end/40404, middle-end/40446, + middle-end/40460, objc/28050, target/40470, tree-optimization/40492, + fortran/40168, c++/40381, libfortran/40330, ada/40166, + bootstrap/40027, c++/38064, c++/39754, c++/40007, + c++/40139, c/40172, c++/40306, c++/40307, c++/40308, c++/40311, + c++/40370, c++/40372, c++/40373, debug/40109, fortran/22423, + fortran/38654, fortran/39893, fortran/40019, fortran/40195, + libfortran/25561, libfortran/37754, libfortran/38668, + libfortran/39665, libfortran/39667, libfortran/39702, + libfortran/39709, libfortran/39782, libfortran/40334, + libgfortran/39664, libgomp/40174, libstdc++/36211, libstdc++/40192, + libstdc++/40296, libstdc++/40299, middle-end/32950, middle-end/40147, + middle-end/40204, middle-end/40233, middle-end/40252, + middle-end/40291, middle-end/40328, middle-end/40340, + rtl-optimization/40105, target/40017, target/40153, target/40266, + testsuite/39907, tree-optimization/39999, tree-optimization/40087, + tree-optimization/40238, tree-optimization/40254 + - fix ICE in gsi_insert_seq_nodes_after (#505798, + PR tree-optimization/40813) + - fix ICE in gimplify_conversion (#511229, PR c++/40780) +- fix Fortran MINLOC/MAXLOC/MINVAL/MAXVAL handling of infinities and NaNs, + speed them up (PRs fortran/40643, fortran/31067) +- fix ICE with Fortran data xfer without io unit (PR fortran/40839) +- vectorize unsigned int -> {float,double} conversions on x86/x86_64 + (PR target/40811) +- avoid overlapping entries in .debug_ranges section (PR debug/40713) +- speed up polyhedron NF (PR middle-end/34163) +- fix debug info for inlines (PR debug/40573) +- optimize assuming allocatable arrays in the innermost + dimension are always stride 1 (PR fortran/32131) +- decrease memory consumption and speed up var-tracking pass (#503816) +- add -mcrc32 support on ix86 +- fix up ix86 padding for branch mispredicts +- improve .debug_loc generation +- support Atom for -march=native +- add -mmovbe support for Atom +- improve ix86 instruction length computation, remove some unneeded padding +- add unwind debug hook for gdb + * Thu May 14 2009 Jakub Jelinek 4.4.0-5 - update from gcc-4_4-branch - PRs c++/17395, c/39983, fortran/38863, fortran/38956, fortran/39879, gcc44-power7.patch: config.in | 8 config/rs6000/aix53.h | 8 config/rs6000/aix61.h | 8 config/rs6000/altivec.md | 708 +------ config/rs6000/constraints.md | 28 config/rs6000/driver-rs6000.c | 141 + config/rs6000/e500.h | 2 config/rs6000/linux64.h | 2 config/rs6000/linux64.opt | 2 config/rs6000/power7.md | 318 +++ config/rs6000/ppc-asm.h | 139 + config/rs6000/predicates.md | 75 config/rs6000/rs6000-c.c | 103 - config/rs6000/rs6000-protos.h | 11 config/rs6000/rs6000.c | 2633 +++++++++++++++++++++------ config/rs6000/rs6000.h | 464 +++- config/rs6000/rs6000.md | 421 +++- config/rs6000/rs6000.opt | 56 config/rs6000/spe.md | 2 config/rs6000/sysv4.h | 4 config/rs6000/sysv4.opt | 6 config/rs6000/t-rs6000 | 30 config/rs6000/vector.md | 664 ++++++ config/rs6000/vsx.md | 1004 ++++++++++ configure | 54 configure.ac | 23 doc/invoke.texi | 24 doc/md.texi | 17 reload.c | 10 testsuite/gcc.dg/vmx/vmx.exp | 2 testsuite/gcc.target/powerpc/popcount-2.c | 9 testsuite/gcc.target/powerpc/popcount-3.c | 9 testsuite/gcc.target/powerpc/pr39457.c | 56 testsuite/gcc.target/powerpc/vsx-builtin-1.c | 42 testsuite/gcc.target/powerpc/vsx-builtin-2.c | 42 testsuite/gcc.target/powerpc/vsx-vector-1.c | 74 testsuite/gcc.target/powerpc/vsx-vector-2.c | 74 testsuite/gcc.target/powerpc/vsx-vector-3.c | 48 testsuite/gcc.target/powerpc/vsx-vector-4.c | 48 testsuite/lib/target-supports.exp | 60 40 files changed, 5995 insertions(+), 1434 deletions(-) Index: gcc44-power7.patch =================================================================== RCS file: /cvs/pkgs/rpms/gcc/F-11/gcc44-power7.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gcc44-power7.patch 14 Apr 2009 17:54:33 -0000 1.4 +++ gcc44-power7.patch 29 Jul 2009 13:35:47 -0000 1.5 @@ -3434,7 +3434,7 @@ + "du2_power7,VSU_power7") --- gcc/config/rs6000/rs6000-c.c (.../trunk) (revision 145777) +++ gcc/config/rs6000/rs6000-c.c (.../branches/ibm/power7-meissner) (revision 146027) -@@ -105,11 +105,14 @@ altivec_categorize_keyword (const cpp_to +@@ -106,14 +106,17 @@ altivec_categorize_keyword (const cpp_to if (ident == C_CPP_HASHNODE (vector_keyword)) return C_CPP_HASHNODE (__vector_keyword); @@ -3449,11 +3449,16 @@ - return C_CPP_HASHNODE (__bool_keyword); + if (ident == C_CPP_HASHNODE (bool_keyword)) + return C_CPP_HASHNODE (__bool_keyword); + +- if (ident == C_CPP_HASHNODE (_Bool_keyword)) +- return C_CPP_HASHNODE (__bool_keyword); ++ if (ident == C_CPP_HASHNODE (_Bool_keyword)) ++ return C_CPP_HASHNODE (__bool_keyword); + } return ident; } -@@ -127,20 +130,23 @@ init_vector_keywords (void) +@@ -131,23 +134,26 @@ init_vector_keywords (void) __vector_keyword = get_identifier ("__vector"); C_CPP_HASHNODE (__vector_keyword)->flags |= NODE_CONDITIONAL; @@ -3475,19 +3480,24 @@ + + __bool_keyword = get_identifier ("__bool"); + C_CPP_HASHNODE (__bool_keyword)->flags |= NODE_CONDITIONAL; -+ -+ pixel_keyword = get_identifier ("pixel"); -+ C_CPP_HASHNODE (pixel_keyword)->flags |= NODE_CONDITIONAL; - bool_keyword = get_identifier ("bool"); - C_CPP_HASHNODE (bool_keyword)->flags |= NODE_CONDITIONAL; ++ pixel_keyword = get_identifier ("pixel"); ++ C_CPP_HASHNODE (pixel_keyword)->flags |= NODE_CONDITIONAL; + +- _Bool_keyword = get_identifier ("_Bool"); +- C_CPP_HASHNODE (_Bool_keyword)->flags |= NODE_CONDITIONAL; + bool_keyword = get_identifier ("bool"); + C_CPP_HASHNODE (bool_keyword)->flags |= NODE_CONDITIONAL; ++ ++ _Bool_keyword = get_identifier ("_Bool"); ++ C_CPP_HASHNODE (_Bool_keyword)->flags |= NODE_CONDITIONAL; + } } /* Called to decide whether a conditional macro should be expanded. -@@ -207,7 +213,8 @@ rs6000_macro_to_expand (cpp_reader *pfil +@@ -214,7 +220,8 @@ rs6000_macro_to_expand (cpp_reader *pfil if (rid_code == RID_UNSIGNED || rid_code == RID_LONG || rid_code == RID_SHORT || rid_code == RID_SIGNED || rid_code == RID_INT || rid_code == RID_CHAR @@ -3497,7 +3507,7 @@ { expand_this = C_CPP_HASHNODE (__vector_keyword); /* If the next keyword is bool or pixel, it -@@ -277,13 +284,14 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi +@@ -284,13 +291,14 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi builtin_define ("_ARCH_PWR6X"); if (! TARGET_POWER && ! TARGET_POWER2 && ! TARGET_POWERPC) builtin_define ("_ARCH_COM"); @@ -3513,13 +3523,16 @@ builtin_define ("__pixel=__attribute__((altivec(pixel__))) unsigned short"); builtin_define ("__bool=__attribute__((altivec(bool__))) unsigned"); -@@ -292,9 +300,18 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi +@@ -298,11 +306,20 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi + { /* Define this when supporting context-sensitive keywords. */ builtin_define ("__APPLE_ALTIVEC__"); - +- - builtin_define ("vector=vector"); ++ builtin_define ("pixel=pixel"); builtin_define ("bool=bool"); + builtin_define ("_Bool=_Bool"); + } + } + if (TARGET_ALTIVEC || TARGET_VSX) @@ -3533,7 +3546,7 @@ init_vector_keywords (); /* Enable context-sensitive macros. */ -@@ -318,6 +335,8 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi +@@ -326,6 +343,8 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfi /* Used by libstdc++. */ if (TARGET_NO_LWSYNC) builtin_define ("__NO_LWSYNC__"); @@ -3542,7 +3555,7 @@ /* May be overridden by target configuration. */ RS6000_CPU_CPP_ENDIAN_BUILTINS(); -@@ -496,6 +515,8 @@ const struct altivec_builtin_types altiv +@@ -504,6 +523,8 @@ const struct altivec_builtin_types altiv RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_ADD, ALTIVEC_BUILTIN_VADDFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, @@ -3551,7 +3564,7 @@ { ALTIVEC_BUILTIN_VEC_VADDFP, ALTIVEC_BUILTIN_VADDFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_VADDUWM, ALTIVEC_BUILTIN_VADDUWM, -@@ -639,6 +660,12 @@ const struct altivec_builtin_types altiv +@@ -647,6 +668,12 @@ const struct altivec_builtin_types altiv { ALTIVEC_BUILTIN_VEC_AND, ALTIVEC_BUILTIN_VAND, RS6000_BTI_V4SF, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_AND, ALTIVEC_BUILTIN_VAND, @@ -3564,7 +3577,7 @@ RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_AND, ALTIVEC_BUILTIN_VAND, RS6000_BTI_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SI, 0 }, -@@ -687,6 +714,12 @@ const struct altivec_builtin_types altiv +@@ -695,6 +722,12 @@ const struct altivec_builtin_types altiv { ALTIVEC_BUILTIN_VEC_ANDC, ALTIVEC_BUILTIN_VANDC, RS6000_BTI_V4SF, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_ANDC, ALTIVEC_BUILTIN_VANDC, @@ -3577,7 +3590,7 @@ RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_ANDC, ALTIVEC_BUILTIN_VANDC, RS6000_BTI_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SI, 0 }, -@@ -1190,6 +1223,8 @@ const struct altivec_builtin_types altiv +@@ -1198,6 +1231,8 @@ const struct altivec_builtin_types altiv RS6000_BTI_V4SI, RS6000_BTI_V4SI, RS6000_BTI_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_MAX, ALTIVEC_BUILTIN_VMAXFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, @@ -3586,7 +3599,7 @@ { ALTIVEC_BUILTIN_VEC_VMAXFP, ALTIVEC_BUILTIN_VMAXFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_VMAXSW, ALTIVEC_BUILTIN_VMAXSW, -@@ -1366,6 +1401,8 @@ const struct altivec_builtin_types altiv +@@ -1374,6 +1409,8 @@ const struct altivec_builtin_types altiv RS6000_BTI_V4SI, RS6000_BTI_V4SI, RS6000_BTI_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_MIN, ALTIVEC_BUILTIN_VMINFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, @@ -3595,7 +3608,7 @@ { ALTIVEC_BUILTIN_VEC_VMINFP, ALTIVEC_BUILTIN_VMINFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_VMINSW, ALTIVEC_BUILTIN_VMINSW, -@@ -1451,6 +1488,8 @@ const struct altivec_builtin_types altiv +@@ -1459,6 +1496,8 @@ const struct altivec_builtin_types altiv { ALTIVEC_BUILTIN_VEC_NOR, ALTIVEC_BUILTIN_VNOR, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_NOR, ALTIVEC_BUILTIN_VNOR, @@ -3604,7 +3617,7 @@ RS6000_BTI_V4SI, RS6000_BTI_V4SI, RS6000_BTI_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_NOR, ALTIVEC_BUILTIN_VNOR, RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, 0 }, -@@ -1475,6 +1514,12 @@ const struct altivec_builtin_types altiv +@@ -1483,6 +1522,12 @@ const struct altivec_builtin_types altiv { ALTIVEC_BUILTIN_VEC_OR, ALTIVEC_BUILTIN_VOR, RS6000_BTI_V4SF, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_OR, ALTIVEC_BUILTIN_VOR, @@ -3617,7 +3630,7 @@ RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_OR, ALTIVEC_BUILTIN_VOR, RS6000_BTI_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SI, 0 }, -@@ -1932,6 +1977,8 @@ const struct altivec_builtin_types altiv +@@ -1940,6 +1985,8 @@ const struct altivec_builtin_types altiv RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, RS6000_BTI_unsigned_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_SUB, ALTIVEC_BUILTIN_VSUBFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, @@ -3626,7 +3639,7 @@ { ALTIVEC_BUILTIN_VEC_VSUBFP, ALTIVEC_BUILTIN_VSUBFP, RS6000_BTI_V4SF, RS6000_BTI_V4SF, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_VSUBUWM, ALTIVEC_BUILTIN_VSUBUWM, -@@ -2091,6 +2138,12 @@ const struct altivec_builtin_types altiv +@@ -2099,6 +2146,12 @@ const struct altivec_builtin_types altiv { ALTIVEC_BUILTIN_VEC_XOR, ALTIVEC_BUILTIN_VXOR, RS6000_BTI_V4SF, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SF, 0 }, { ALTIVEC_BUILTIN_VEC_XOR, ALTIVEC_BUILTIN_VXOR, @@ -3639,7 +3652,7 @@ RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_bool_V4SI, 0 }, { ALTIVEC_BUILTIN_VEC_XOR, ALTIVEC_BUILTIN_VXOR, RS6000_BTI_V4SI, RS6000_BTI_bool_V4SI, RS6000_BTI_V4SI, 0 }, -@@ -2981,8 +3034,10 @@ altivec_resolve_overloaded_builtin (tree +@@ -2989,8 +3042,10 @@ altivec_resolve_overloaded_builtin (tree const struct altivec_builtin_types *desc; int n; Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/F-11/sources,v retrieving revision 1.278 retrieving revision 1.279 diff -u -p -r1.278 -r1.279 --- sources 14 May 2009 08:50:15 -0000 1.278 +++ sources 29 Jul 2009 13:35:47 -0000 1.279 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -271340a1883a595c5c8b4fe1007389fa gcc-4.4.0-20090514.tar.bz2 +697eccb5f5690c419cb576b31b95ba93 gcc-4.4.1-20090729.tar.bz2 From mhlavink at fedoraproject.org Wed Jul 29 13:10:42 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 13:10:42 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel .cvsignore, 1.27, 1.28 ecryptfs-utils.spec, 1.50, 1.51 sources, 1.28, 1.29 Message-ID: <20090729131042.3204D11C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22006 Modified Files: .cvsignore ecryptfs-utils.spec sources Log Message: updated to 78 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 20 Jul 2009 13:25:26 -0000 1.27 +++ .cvsignore 29 Jul 2009 13:10:41 -0000 1.28 @@ -1,2 +1,2 @@ -ecryptfs-utils_76.orig.tar.gz ecryptfs-mount-private.png +ecryptfs-utils_78.orig.tar.gz Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- ecryptfs-utils.spec 24 Jul 2009 21:01:07 -0000 1.50 +++ ecryptfs-utils.spec 29 Jul 2009 13:10:42 -0000 1.51 @@ -2,8 +2,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: ecryptfs-utils -Version: 76 -Release: 2%{?dist} +Version: 78 +Release: 1%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base License: GPLv2+ @@ -24,7 +24,7 @@ Patch6: ecryptfs-utils-75-nocryptdisks.p BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake libtool +BuildRequires: trousers-devel nss-devel desktop-file-utils %description eCryptfs is a stacked cryptographic filesystem that ships in Linux @@ -55,13 +55,12 @@ applications written in the Python progr the interface supplied by the ecryptfs-utils library. %prep -%setup -q -n %{name}_%{version}.orig +%setup -q %patch2 -p1 -b .build %patch4 -p1 -b .werror %patch6 -p0 -b .nocryptdisks %build -autoreconf -fiv export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror" %configure --disable-rpath --enable-tspi --enable-nss --enable-static make clean @@ -177,6 +176,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Wed Jul 29 2009 Michal Hlavinka - 78-1 +- updated to 78 + * Fri Jul 24 2009 Fedora Release Engineering - 76-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 20 Jul 2009 13:25:26 -0000 1.28 +++ sources 29 Jul 2009 13:10:42 -0000 1.29 @@ -1,2 +1,2 @@ -0e6a58a0730838dc832ecd8bd9e0c463 ecryptfs-utils_76.orig.tar.gz e612ddb9ccb17f8fec79df26e626a8c6 ecryptfs-mount-private.png +0ea4f56d7086412f89dc166ee97c2246 ecryptfs-utils_78.orig.tar.gz From ke4qqq at fedoraproject.org Wed Jul 29 13:43:25 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Wed, 29 Jul 2009 13:43:25 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/devel import.log, NONE, 1.1 php-pear-File-Bittorrent-dos2unix.patch, NONE, 1.1 php-pear-File-Bittorrent2.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729134325.240C811C00CE@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30513/devel Modified Files: .cvsignore sources Added Files: import.log php-pear-File-Bittorrent-dos2unix.patch php-pear-File-Bittorrent2.spec Log Message: * Wed Jul 29 2009 David Nalley - 1.3.1-4 - Initial commit --- NEW FILE import.log --- php-pear-File-Bittorrent2-1_3_1-4_fc11:HEAD:php-pear-File-Bittorrent2-1.3.1-4.fc11.src.rpm:1248874884 php-pear-File-Bittorrent-dos2unix.patch: package.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE php-pear-File-Bittorrent-dos2unix.patch --- diff -uNr php-pear-File-Bittorrent-1.3.1-orig/package.xml php-pear-File-Bittorrent-1.3.1/package.xml --- php-pear-File-Bittorrent-1.3.1-orig/package.xml 2009-07-16 22:14:20.000000000 -0400 +++ php-pear-File-Bittorrent-1.3.1/package.xml 2009-07-16 22:14:35.000000000 -0400 @@ -46,11 +46,11 @@ - + - - + + --- NEW FILE php-pear-File-Bittorrent2.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %define pear_name File_Bittorrent2 Name: php-pear-File-Bittorrent2 Version: 1.3.1 Release: 4%{?dist} Summary: Decode and Encode data in Bittorrent format Group: Development/Libraries License: LGPLv2 URL: http://pear.php.net/package/File_Bittorrent2 Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz Patch0: php-pear-File-Bittorrent-dos2unix.patch # This patch modifies the md5sum in the xml file to match the files # after they have been dos2unixed BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: dos2unix, php-pear-PHPUnit Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description This package consists of three classes which handles the encoding and decoding of data in Bittorrent format. You can also extract useful informations from .torrent files, create .torrent files and query the torrent's scrape page to get its statistics. PHP5 only. %prep %setup -q -c %patch0 -p1 -b .dos2unix [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} dos2unix torrentinfo.php scrape.php example.php %build cd %{pear_name}-%{version} # Empty build section, most likely nothing required. %check cd %{pear_name}-%{version} php -d "include_path=.:%{pear_phpdir}:%{_datadir}/php" Tests/AllTests.php %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml # Move documentation mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml # TODO upstream: pear_testdir and pear_datadir; they are currently OK though, #c caught by the below glob since they are withing pear_phpdir # Expand this as needed to avoid owning dirs owned by our dependencies #%{pear_phpdir}/* %{pear_phpdir}/File %{pear_testdir}/%{pear_name} %changelog * Fri Jul 17 2009 David Nalley - 1.3.1-4 - fix test line to work regardless of path * Fri Jul 17 2009 Paul W. Frields - 1.3.1-3 - Fix a couple packaging problems * Fri Jul 17 2009 David Nalley 1.3.1-2 - Added a checksum patch suggested by Paul Frields * Thu Jul 16 2009 David Nalley 1.3.1-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:02:13 -0000 1.1 +++ .cvsignore 29 Jul 2009 13:43:24 -0000 1.2 @@ -0,0 +1 @@ +File_Bittorrent2-1.3.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:02:14 -0000 1.1 +++ sources 29 Jul 2009 13:43:24 -0000 1.2 @@ -0,0 +1 @@ +32f58ecd1ed6ed397d002c26f0f343d3 File_Bittorrent2-1.3.1.tgz From dwalsh at fedoraproject.org Wed Jul 29 13:44:12 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 29 Jul 2009 13:44:12 +0000 (UTC) Subject: rpms/policycoreutils/devel .cvsignore, 1.196, 1.197 policycoreutils-po.patch, 1.53, 1.54 policycoreutils-rhat.patch, 1.423, 1.424 policycoreutils.spec, 1.614, 1.615 policycoreutils_man_ru2.tar.bz2, 1.1, 1.2 sources, 1.202, 1.203 Message-ID: <20090729134412.6F29411C00CE@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/policycoreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31287 Modified Files: .cvsignore policycoreutils-po.patch policycoreutils-rhat.patch policycoreutils.spec policycoreutils_man_ru2.tar.bz2 sources Log Message: * Sun Jul 29 2009 Dan Walsh 2.0.68-1 - Fix location of man pages - Update to upstream * Modify setfiles to exclude mounts without seclabel option in /proc/mounts on kernels >= 2.6.30 from Thomas Liu. * Re-enable disable_dontaudit rules upon semodule -B from Christopher Pardy and Dan Walsh. * setfiles converted to fts from Thomas Liu. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/.cvsignore,v retrieving revision 1.196 retrieving revision 1.197 diff -u -p -r1.196 -r1.197 --- .cvsignore 26 Jun 2009 18:48:24 -0000 1.196 +++ .cvsignore 29 Jul 2009 13:43:53 -0000 1.197 @@ -199,3 +199,6 @@ policycoreutils-2.0.62.tgz sepolgen-1.0.16.tgz policycoreutils-2.0.63.tgz policycoreutils-2.0.64.tgz +policycoreutils-2.0.65.tgz +policycoreutils-2.0.67.tgz +policycoreutils-2.0.68.tgz policycoreutils-po.patch: Makefile | 28 POTFILES | 28 POTFILES.in | 1 af.po | 2449 +++++++++++++++++++++++-- am.po | 2449 +++++++++++++++++++++++-- ar.po | 2449 +++++++++++++++++++++++-- as.po | 3499 ++++++++++++++++++++++-------------- be.po | 2449 +++++++++++++++++++++++-- bg.po | 3605 ++++++++++++++++++++++--------------- bn.po | 2449 +++++++++++++++++++++++-- bn_IN.po | 4066 ++++++++++++++++++++++++------------------ bs.po | 2505 +++++++++++++++++++++++--- ca.po | 2906 +++++++++++++++++++++++++----- cs.po | 2841 ++++++++++++++++++++++++----- cy.po | 2449 +++++++++++++++++++++++-- da.po | 3128 +++++++++++++++++++++++++++----- de.po | 3786 ++++++++++++++++++++++----------------- el.po | 2512 +++++++++++++++++++++++--- en_GB.po | 2505 +++++++++++++++++++++++--- es.po | 4575 ++++++++++++++++++++++++++--------------------- et.po | 2447 +++++++++++++++++++++++-- eu_ES.po | 2449 +++++++++++++++++++++++-- fa.po | 2449 +++++++++++++++++++++++-- fi.po | 2449 +++++++++++++++++++++++-- fr.po | 3856 +++++++++++++++++++++++----------------- gl.po | 2447 +++++++++++++++++++++++-- gu.po | 4130 ++++++++++++++++++++++++------------------ he.po | 2449 +++++++++++++++++++++++-- hi.po | 4117 ++++++++++++++++++++++++------------------ hr.po | 2997 ++++++++++++++++++++----------- hu.po | 3071 +++++++++++++++++++++++++++---- hy.po | 2449 +++++++++++++++++++++++-- id.po | 2447 +++++++++++++++++++++++-- is.po | 2449 +++++++++++++++++++++++-- it.po | 4531 ++++++++++++++++++++++++++--------------------- ja.po | 4183 ++++++++++++++++++++++++------------------- ka.po | 2449 +++++++++++++++++++++++-- kn.po | 3841 ++++++++++----------------------------- ko.po | 2793 ++++++++++++++++++++++++----- ku.po | 2449 +++++++++++++++++++++++-- lo.po | 2449 +++++++++++++++++++++++-- lt.po | 2449 +++++++++++++++++++++++-- lv.po | 2449 +++++++++++++++++++++++-- mai.po | 3462 ++++++++++++++++++++++++++++++++++++ mk.po | 2505 +++++++++++++++++++++++--- ml.po | 4274 ++++++++++++++++++++++++-------------------- mr.po | 4156 ++++++++++++++++++++++++------------------- ms.po | 2498 +++++++++++++++++++++++-- my.po | 2449 +++++++++++++++++++++++-- nb.po | 2485 +++++++++++++++++++++++-- nl.po | 2776 +++++++++++++++++++++++----- nn.po | 2449 +++++++++++++++++++++++-- no.po | 1272 ------------- nso.po | 2449 +++++++++++++++++++++++-- or.po | 3984 +++++++++++++++++++++++------------------ pa.po | 4075 +++++++++++++++++++++++------------------- pl.po | 4014 +++++++++++++++++++++++------------------ policycoreutils.pot | 2431 +++++++++++++++++++++++-- pt.po | 4999 ++++++++++++++++++++++++++++------------------------ pt_BR.po | 4979 ++++++++++++++++++++++++++++----------------------- ro.po | 2449 +++++++++++++++++++++++-- ru.po | 3459 +++++++++++++++++++++++------------ si.po | 2449 +++++++++++++++++++++++-- sk.po | 2505 +++++++++++++++++++++++--- sl.po | 2449 +++++++++++++++++++++++-- sq.po | 2449 +++++++++++++++++++++++-- sr.po | 4125 ++++++++++++++++++++++++------------------ sr at latin.po | 4135 ++++++++++++++++++++++++------------------- sv.po | 3165 ++++++++++++++++++++++---------- ta.po | 3210 +++++++++++++++++++++------------ te.po | 4069 +++++++++++++++++++++++------------------- th.po | 2449 +++++++++++++++++++++++-- tr.po | 2449 +++++++++++++++++++++++-- uk.po | 2505 +++++++++++++++++++++++--- ur.po | 2449 +++++++++++++++++++++++-- vi.po | 2449 +++++++++++++++++++++++-- zh_CN.po | 3887 +++++++++++++++++++++++----------------- zh_TW.po | 4174 ++++++++++++++++++++++++------------------- zu.po | 2449 +++++++++++++++++++++++-- 79 files changed, 171996 insertions(+), 59014 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.53 -r 1.54 policycoreutils-po.patchIndex: policycoreutils-po.patch =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/policycoreutils-po.patch,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- policycoreutils-po.patch 26 Jun 2009 18:48:25 -0000 1.53 +++ policycoreutils-po.patch 29 Jul 2009 13:43:53 -0000 1.54 @@ -1,137 +1,81 @@ -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils-2.0.64/po/af.po ---- nsapolicycoreutils/po/af.po 2008-09-22 13:25:06.000000000 -0400 -+++ policycoreutils-2.0.64/po/af.po 2009-06-26 14:46:40.000000000 -0400 +diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils-2.0.67/po/af.po +--- nsapolicycoreutils/po/af.po 2009-06-30 07:56:04.000000000 -0400 ++++ policycoreutils-2.0.67/po/af.po 2009-07-07 16:48:10.000000000 -0400 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2008-09-09 13:24-0400\n" +-"POT-Creation-Date: 2009-06-24 10:53-0400\n" +"POT-Creation-Date: 2009-01-21 17:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -@@ -85,818 +85,821 @@ - msgid "To make this policy package active, execute:" - msgstr "" - --#: ../semanage/seobject.py:49 -+#: ../semanage/seobject.py:48 - msgid "Could not create semanage handle" - msgstr "" - --#: ../semanage/seobject.py:56 -+#: ../semanage/seobject.py:55 - msgid "SELinux policy is not managed or store cannot be accessed." - msgstr "" - --#: ../semanage/seobject.py:61 -+#: ../semanage/seobject.py:60 - msgid "Cannot read policy store." - msgstr "" - --#: ../semanage/seobject.py:66 -+#: ../semanage/seobject.py:65 - msgid "Could not establish semanage connection" - msgstr "" - --#: ../semanage/seobject.py:137 ../semanage/seobject.py:141 --msgid "global" -+#: ../semanage/seobject.py:70 -+msgid "Could not test MLS enabled status" - msgstr "" - --#: ../semanage/seobject.py:196 --msgid "translations not supported on non-MLS machines" -+#: ../semanage/seobject.py:142 ../semanage/seobject.py:146 -+msgid "global" - msgstr "" - --#: ../semanage/seobject.py:203 -+#: ../semanage/seobject.py:206 - #, python-format - msgid "Unable to open %s: translations not supported on non-MLS machines: %s" - msgstr "" - --#: ../semanage/seobject.py:236 -+#: ../semanage/seobject.py:239 +@@ -118,7 +118,9 @@ msgid "Level" msgstr "" --#: ../semanage/seobject.py:236 ../gui/system-config-selinux.glade:651 --#: ../gui/translationsPage.py:43 ../gui/translationsPage.py:59 +-#: ../semanage/seobject.py:239 +#: ../semanage/seobject.py:239 ../gui/system-config-selinux.glade:651 +#: ../gui/system-config-selinux.glade:2683 ../gui/translationsPage.py:43 +#: ../gui/translationsPage.py:59 msgid "Translation" msgstr "" --#: ../semanage/seobject.py:244 ../semanage/seobject.py:258 -+#: ../semanage/seobject.py:247 ../semanage/seobject.py:261 - #, python-format - msgid "Translations can not contain spaces '%s' " - msgstr "" - --#: ../semanage/seobject.py:247 -+#: ../semanage/seobject.py:250 - #, python-format - msgid "Invalid Level '%s' " - msgstr "" - --#: ../semanage/seobject.py:250 -+#: ../semanage/seobject.py:253 - #, python-format - msgid "%s already defined in translations" - msgstr "" - --#: ../semanage/seobject.py:262 -+#: ../semanage/seobject.py:265 - #, python-format +@@ -142,764 +144,763 @@ msgid "%s not defined in translations" msgstr "" --#: ../semanage/seobject.py:288 +-#: ../semanage/seobject.py:290 +#: ../semanage/seobject.py:291 msgid "Not yet implemented" msgstr "" --#: ../semanage/seobject.py:295 +-#: ../semanage/seobject.py:294 +-msgid "Semanage transaction already in progress" +-msgstr "" +- +-#: ../semanage/seobject.py:303 +#: ../semanage/seobject.py:298 msgid "Could not start semanage transaction" msgstr "" --#: ../semanage/seobject.py:301 +-#: ../semanage/seobject.py:309 +#: ../semanage/seobject.py:304 msgid "Could not commit semanage transaction" msgstr "" --#: ../semanage/seobject.py:311 +-#: ../semanage/seobject.py:313 +-msgid "Semanage transaction not in progress" +-msgstr "" +- +-#: ../semanage/seobject.py:325 +#: ../semanage/seobject.py:314 msgid "Could not list SELinux modules" msgstr "" --#: ../semanage/seobject.py:322 +-#: ../semanage/seobject.py:336 +#: ../semanage/seobject.py:325 msgid "Permissive Types" msgstr "" --#: ../semanage/seobject.py:352 +-#: ../semanage/seobject.py:378 +#: ../semanage/seobject.py:355 #, python-format msgid "Could not set permissive domain %s (module installation failed)" msgstr "" --#: ../semanage/seobject.py:366 +-#: ../semanage/seobject.py:384 +#: ../semanage/seobject.py:369 #, python-format msgid "Could not remove permissive domain %s (remove failed)" msgstr "" --#: ../semanage/seobject.py:392 ../semanage/seobject.py:452 --#: ../semanage/seobject.py:498 ../semanage/seobject.py:580 --#: ../semanage/seobject.py:647 ../semanage/seobject.py:705 --#: ../semanage/seobject.py:915 ../semanage/seobject.py:1482 --#: ../semanage/seobject.py:1542 ../semanage/seobject.py:1554 --#: ../semanage/seobject.py:1633 ../semanage/seobject.py:1684 +-#: ../semanage/seobject.py:410 ../semanage/seobject.py:470 +-#: ../semanage/seobject.py:516 ../semanage/seobject.py:598 +-#: ../semanage/seobject.py:665 ../semanage/seobject.py:723 +-#: ../semanage/seobject.py:933 ../semanage/seobject.py:1506 +-#: ../semanage/seobject.py:1570 ../semanage/seobject.py:1582 +-#: ../semanage/seobject.py:1663 ../semanage/seobject.py:1714 +#: ../semanage/seobject.py:395 ../semanage/seobject.py:455 +#: ../semanage/seobject.py:501 ../semanage/seobject.py:583 +#: ../semanage/seobject.py:650 ../semanage/seobject.py:708 @@ -142,455 +86,455 @@ diff --exclude-from=exclude -N -u -r nsa msgid "Could not create a key for %s" msgstr "" --#: ../semanage/seobject.py:396 ../semanage/seobject.py:456 --#: ../semanage/seobject.py:502 ../semanage/seobject.py:508 +-#: ../semanage/seobject.py:414 ../semanage/seobject.py:474 +-#: ../semanage/seobject.py:520 ../semanage/seobject.py:526 +#: ../semanage/seobject.py:399 ../semanage/seobject.py:459 +#: ../semanage/seobject.py:505 ../semanage/seobject.py:511 #, python-format msgid "Could not check if login mapping for %s is defined" msgstr "" --#: ../semanage/seobject.py:398 +-#: ../semanage/seobject.py:416 +#: ../semanage/seobject.py:401 #, python-format msgid "Login mapping for %s is already defined" msgstr "" --#: ../semanage/seobject.py:403 +-#: ../semanage/seobject.py:421 +#: ../semanage/seobject.py:406 #, python-format msgid "Linux Group %s does not exist" [...429192 lines suppressed...] ++msgid "Toggle between all and customized file context" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2150 - msgid "label38" - msgstr "" - --#: ../gui/system-config-selinux.glade:2185 ++msgid "label38" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2187 - msgid "Add SELinux User Mapping" - msgstr "" - --#: ../gui/system-config-selinux.glade:2201 ++msgid "Add SELinux User Mapping" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2203 - msgid "Modify SELinux User Mapping" - msgstr "" - --#: ../gui/system-config-selinux.glade:2217 ++msgid "Modify SELinux User Mapping" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2219 - msgid "Delete SELinux User Mapping" - msgstr "" - --#: ../gui/system-config-selinux.glade:2334 ++msgid "Delete SELinux User Mapping" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2337 - msgid "label39" - msgstr "" - --#: ../gui/system-config-selinux.glade:2371 --msgid "Add Translation" ++msgid "label39" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2374 +msgid "Add User" - msgstr "" - --#: ../gui/system-config-selinux.glade:2387 --msgid "Modify Translation" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2390 +msgid "Modify User" - msgstr "" - --#: ../gui/system-config-selinux.glade:2403 --msgid "Delete Translation" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2406 +msgid "Delete User" - msgstr "" - --#: ../gui/system-config-selinux.glade:2520 ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2524 - msgid "label41" - msgstr "" - --#: ../gui/system-config-selinux.glade:2573 --msgid "Modify SELinux User" ++msgid "label41" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2561 +msgid "Add Translation" - msgstr "" - --#: ../gui/system-config-selinux.glade:2706 ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2577 +msgid "Modify Translation" +msgstr "" @@ -185856,63 +282528,52 @@ diff --exclude-from=exclude -N -u -r nsa +msgstr "" + +#: ../gui/system-config-selinux.glade:2711 - msgid "label40" - msgstr "" - --#: ../gui/system-config-selinux.glade:2743 ++msgid "label40" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2748 - msgid "Add Network Port" - msgstr "" - --#: ../gui/system-config-selinux.glade:2759 ++msgid "Add Network Port" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2764 - msgid "Edit Network Port" - msgstr "" - --#: ../gui/system-config-selinux.glade:2775 ++msgid "Edit Network Port" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2780 - msgid "Delete Network Port" - msgstr "" - --#: ../gui/system-config-selinux.glade:2811 --#: ../gui/system-config-selinux.glade:2829 ++msgid "Delete Network Port" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2816 +#: ../gui/system-config-selinux.glade:2834 - msgid "Toggle between Customized and All Ports" - msgstr "" - --#: ../gui/system-config-selinux.glade:2948 ++msgid "Toggle between Customized and All Ports" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2954 - msgid "label42" - msgstr "" - --#: ../gui/system-config-selinux.glade:2985 ++msgid "label42" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:2991 - msgid "Generate new policy module" - msgstr "" - --#: ../gui/system-config-selinux.glade:3001 ++msgid "Generate new policy module" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:3007 - msgid "Load policy module" - msgstr "" - --#: ../gui/system-config-selinux.glade:3017 ++msgid "Load policy module" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:3023 - msgid "Remove loadable policy module" - msgstr "" - --#: ../gui/system-config-selinux.glade:3053 ++msgid "Remove loadable policy module" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:3059 - msgid "" - "Enable/Disable additional audit rules, that are normally not reported in the " - "log files." - msgstr "" - --#: ../gui/system-config-selinux.glade:3172 ++msgid "" ++"Enable/Disable additional audit rules, that are normally not reported in the " ++"log files." ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:3179 - msgid "label44" - msgstr "" - ++msgid "label44" ++msgstr "" ++ +#: ../gui/system-config-selinux.glade:3216 +msgid "Change process mode to permissive." +msgstr "" @@ -185929,6 +282590,11 @@ diff --exclude-from=exclude -N -u -r nsa +msgid "label59" +msgstr "" + - #: ../gui/translationsPage.py:53 - msgid "Sensitvity Level" - msgstr "" ++#: ../gui/translationsPage.py:53 ++msgid "Sensitvity Level" ++msgstr "" ++ ++#: ../gui/usersPage.py:138 ++#, python-format ++msgid "SELinux user '%s' is required" ++msgstr "" policycoreutils-rhat.patch: Makefile | 2 restorecond/Makefile | 20 + restorecond/org.selinux.Restorecond.service | 3 restorecond/restorecond.c | 399 +++------------------------- restorecond/restorecond.conf | 5 restorecond/restorecond.desktop | 7 restorecond/restorecond.h | 19 + restorecond/restorecond_user.conf | 2 restorecond/user.c | 220 +++++++++++++++ restorecond/walk.c | 30 ++ restorecond/watch.c | 346 ++++++++++++++++++++++++ scripts/Makefile | 3 scripts/fixfiles | 2 scripts/sandbox | 139 +++++++++ scripts/sandbox.8 | 22 + scripts/sandbox.py | 67 ++++ semanage/semanage | 59 +++- semanage/semanage.8 | 2 semanage/seobject.py | 283 +++++++++++++------ 19 files changed, 1168 insertions(+), 462 deletions(-) Index: policycoreutils-rhat.patch =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/policycoreutils-rhat.patch,v retrieving revision 1.423 retrieving revision 1.424 diff -u -p -r1.423 -r1.424 --- policycoreutils-rhat.patch 26 Jun 2009 19:02:05 -0000 1.423 +++ policycoreutils-rhat.patch 29 Jul 2009 13:44:02 -0000 1.424 @@ -1,26 +1,15 @@ -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/audit2allow/audit2allow policycoreutils-2.0.64/audit2allow/audit2allow ---- nsapolicycoreutils/audit2allow/audit2allow 2009-01-13 08:45:35.000000000 -0500 -+++ policycoreutils-2.0.64/audit2allow/audit2allow 2009-06-26 14:57:32.000000000 -0400 -@@ -126,6 +126,7 @@ - elif self.__options.audit: - try: - messages = audit.get_audit_msgs() -+ messages += audit.get_log_msgs() - except OSError, e: - sys.stderr.write('could not run ausearch - "%s"\n' % str(e)) - sys.exit(1) -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/Makefile policycoreutils-2.0.64/Makefile +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/Makefile policycoreutils-2.0.68/Makefile --- nsapolicycoreutils/Makefile 2008-08-28 09:34:24.000000000 -0400 -+++ policycoreutils-2.0.64/Makefile 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/Makefile 2009-07-29 09:34:07.000000000 -0400 @@ -1,4 +1,4 @@ -SUBDIRS = setfiles semanage load_policy newrole run_init secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps setsebool po +SUBDIRS = setfiles semanage load_policy newrole run_init secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps setsebool po gui INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null) -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/Makefile policycoreutils-2.0.64/restorecond/Makefile +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/Makefile policycoreutils-2.0.68/restorecond/Makefile --- nsapolicycoreutils/restorecond/Makefile 2009-02-18 16:44:47.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/Makefile 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/Makefile 2009-07-29 09:30:07.000000000 -0400 @@ -2,16 +2,23 @@ PREFIX ?= ${DESTDIR}/usr SBINDIR ?= $(PREFIX)/sbin @@ -62,16 +51,16 @@ diff --exclude-from=exclude --exclude=se relabel: install /sbin/restorecon $(SBINDIR)/restorecond -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/org.selinux.Restorecond.service policycoreutils-2.0.64/restorecond/org.selinux.Restorecond.service +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/org.selinux.Restorecond.service policycoreutils-2.0.68/restorecond/org.selinux.Restorecond.service --- nsapolicycoreutils/restorecond/org.selinux.Restorecond.service 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/org.selinux.Restorecond.service 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/org.selinux.Restorecond.service 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,3 @@ +[D-BUS Service] +Name=org.selinux.Restorecond +Exec=/usr/sbin/restorecond -u -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.c policycoreutils-2.0.64/restorecond/restorecond.c +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.c policycoreutils-2.0.68/restorecond/restorecond.c --- nsapolicycoreutils/restorecond/restorecond.c 2009-02-18 16:44:47.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/restorecond.c 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/restorecond.c 2009-07-29 09:30:07.000000000 -0400 @@ -48,294 +48,37 @@ #include #include @@ -540,9 +529,9 @@ diff --exclude-from=exclude --exclude=se } + + -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.conf policycoreutils-2.0.64/restorecond/restorecond.conf +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.conf policycoreutils-2.0.68/restorecond/restorecond.conf --- nsapolicycoreutils/restorecond/restorecond.conf 2009-05-18 13:53:14.000000000 -0400 -+++ policycoreutils-2.0.64/restorecond/restorecond.conf 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/restorecond.conf 2009-07-29 09:30:07.000000000 -0400 @@ -4,8 +4,5 @@ /etc/mtab /var/run/utmp @@ -553,9 +542,9 @@ diff --exclude-from=exclude --exclude=se /root/.ssh/* - - -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.desktop policycoreutils-2.0.64/restorecond/restorecond.desktop +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.desktop policycoreutils-2.0.68/restorecond/restorecond.desktop --- nsapolicycoreutils/restorecond/restorecond.desktop 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/restorecond.desktop 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/restorecond.desktop 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,7 @@ +[Desktop Entry] +Name=File Context maintainer @@ -564,9 +553,9 @@ diff --exclude-from=exclude --exclude=se +Encoding=UTF-8 +Type=Application +StartupNotify=false -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.h policycoreutils-2.0.64/restorecond/restorecond.h +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.h policycoreutils-2.0.68/restorecond/restorecond.h --- nsapolicycoreutils/restorecond/restorecond.h 2008-08-28 09:34:24.000000000 -0400 -+++ policycoreutils-2.0.64/restorecond/restorecond.h 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/restorecond.h 2009-07-29 09:30:07.000000000 -0400 @@ -24,7 +24,22 @@ #ifndef RESTORED_CONFIG_H #define RESTORED_CONFIG_H @@ -592,15 +581,15 @@ diff --exclude-from=exclude --exclude=se +extern void watch_list_free(int fd); #endif -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond_user.conf policycoreutils-2.0.64/restorecond/restorecond_user.conf +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond_user.conf policycoreutils-2.0.68/restorecond/restorecond_user.conf --- nsapolicycoreutils/restorecond/restorecond_user.conf 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/restorecond_user.conf 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/restorecond_user.conf 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,2 @@ +~/* +~/public_html/* -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/user.c policycoreutils-2.0.64/restorecond/user.c +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/user.c policycoreutils-2.0.68/restorecond/user.c --- nsapolicycoreutils/restorecond/user.c 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/user.c 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/user.c 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,220 @@ +/* + * restorecond @@ -822,9 +811,9 @@ diff --exclude-from=exclude --exclude=se + return 0; +} + -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/walk.c policycoreutils-2.0.64/restorecond/walk.c +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/walk.c policycoreutils-2.0.68/restorecond/walk.c --- nsapolicycoreutils/restorecond/walk.c 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/walk.c 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/walk.c 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,30 @@ +#define _XOPEN_SOURCE 500 +#include @@ -856,9 +845,9 @@ diff --exclude-from=exclude --exclude=se + printf("Total Dirs %d\n",ctr); + exit(EXIT_SUCCESS); +} -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/watch.c policycoreutils-2.0.64/restorecond/watch.c +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/watch.c policycoreutils-2.0.68/restorecond/watch.c --- nsapolicycoreutils/restorecond/watch.c 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/restorecond/watch.c 2009-06-26 14:57:32.000000000 -0400 ++++ policycoreutils-2.0.68/restorecond/watch.c 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,346 @@ +#define _GNU_SOURCE +#include @@ -1206,9 +1195,21 @@ diff --exclude-from=exclude --exclude=se + exitApp("Error watching config file."); +} + -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/Makefile policycoreutils-2.0.64/scripts/Makefile +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/fixfiles policycoreutils-2.0.68/scripts/fixfiles +--- nsapolicycoreutils/scripts/fixfiles 2009-06-23 15:36:07.000000000 -0400 ++++ policycoreutils-2.0.68/scripts/fixfiles 2009-07-29 09:31:44.000000000 -0400 +@@ -129,7 +129,7 @@ + if [ ! -z "$FILEPATH" ]; then + if [ -x /usr/bin/find ]; then + /usr/bin/find "$FILEPATH" \ +- ! \( -fstype ext2 -o -fstype ext3 -o -fstype ext4 -o -fstype ext4dev -o -fstype gfs2 -o -fstype jfs -o -fstype xfs -o fstype btrfs \) -prune -o -print0 | \ ++ ! \( -fstype ext2 -o -fstype ext3 -o -fstype ext4 -o -fstype ext4dev -o -fstype gfs2 -o -fstype jfs -o -fstype xfs -o -fstype btrfs \) -prune -o -print0 | \ + ${RESTORECON} ${OUTFILES} ${FORCEFLAG} $* -0 -f - 2>&1 >> $LOGFILE + else + ${RESTORECON} ${OUTFILES} ${FORCEFLAG} -R $* $FILEPATH 2>&1 >> $LOGFILE +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/Makefile policycoreutils-2.0.68/scripts/Makefile --- nsapolicycoreutils/scripts/Makefile 2008-08-28 09:34:24.000000000 -0400 -+++ policycoreutils-2.0.64/scripts/Makefile 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/scripts/Makefile 2009-07-29 09:30:07.000000000 -0400 @@ -5,11 +5,12 @@ MANDIR ?= $(PREFIX)/share/man LOCALEDIR ?= /usr/share/locale @@ -1223,9 +1224,9 @@ diff --exclude-from=exclude --exclude=se install -m 755 fixfiles $(DESTDIR)/sbin install -m 755 genhomedircon $(SBINDIR) -mkdir -p $(MANDIR)/man8 -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox policycoreutils-2.0.64/scripts/sandbox +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox policycoreutils-2.0.68/scripts/sandbox --- nsapolicycoreutils/scripts/sandbox 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/scripts/sandbox 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/scripts/sandbox 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,139 @@ +#!/usr/bin/python -E +import os, sys, getopt, socket, random, fcntl @@ -1366,9 +1367,9 @@ diff --exclude-from=exclude --exclude=se + error_exit(error.args[1]) + + sys.exit(rc) -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox.8 policycoreutils-2.0.64/scripts/sandbox.8 +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox.8 policycoreutils-2.0.68/scripts/sandbox.8 --- nsapolicycoreutils/scripts/sandbox.8 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/scripts/sandbox.8 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/scripts/sandbox.8 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,22 @@ +.TH SANDBOX "8" "May 2009" "chcat" "User Commands" +.SH NAME @@ -1392,9 +1393,9 @@ diff --exclude-from=exclude --exclude=se +.TP +runcon(1) +.PP -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox.py policycoreutils-2.0.64/scripts/sandbox.py +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/sandbox.py policycoreutils-2.0.68/scripts/sandbox.py --- nsapolicycoreutils/scripts/sandbox.py 1969-12-31 19:00:00.000000000 -0500 -+++ policycoreutils-2.0.64/scripts/sandbox.py 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/scripts/sandbox.py 2009-07-29 09:30:07.000000000 -0400 @@ -0,0 +1,67 @@ +#!/usr/bin/python +import os, sys, getopt, socket, random, fcntl @@ -1463,9 +1464,9 @@ diff --exclude-from=exclude --exclude=se + mount(mount_src, filecon) + umount(filecon) +os.execvp(cmds[0], cmds) -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/semanage policycoreutils-2.0.64/semanage/semanage +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/semanage policycoreutils-2.0.68/semanage/semanage --- nsapolicycoreutils/semanage/semanage 2009-05-18 13:53:14.000000000 -0400 -+++ policycoreutils-2.0.64/semanage/semanage 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/semanage/semanage 2009-07-29 09:34:44.000000000 -0400 @@ -44,16 +44,17 @@ text = _(""" semanage [ -S store ] -i [ input_file | - ] @@ -1499,7 +1500,7 @@ diff --exclude-from=exclude --exclude=se -F, --file Treat target as an input file for command, change multiple settings -p, --proto Port protocol (tcp or udp) or internet protocol version of node (ipv4 or ipv6) -M, --mask Netmask -+ -e, --equil Make target equil to this paths labeling ++ -e, --equal Make target equal to this paths labeling -P, --prefix Prefix for home directory labeling -L, --level Default SELinux Level (MLS/MCS Systems only) -R, --roles SELinux Roles (ex: "sysadm_r staff_r") @@ -1508,7 +1509,7 @@ diff --exclude-from=exclude --exclude=se valid_option["node"] += valid_everyone + [ '-M', '--mask', '-t', '--type', '-r', '--range', '-p', '--protocol'] valid_option["fcontext"] = [] - valid_option["fcontext"] += valid_everyone + [ '-f', '--ftype', '-s', '--seuser', '-t', '--type', '-r', '--range'] -+ valid_option["fcontext"] += valid_everyone + [ '-e', '--equil', '-f', '--ftype', '-s', '--seuser', '-t', '--type', '-r', '--range'] ++ valid_option["fcontext"] += valid_everyone + [ '-e', '--equal', '-f', '--ftype', '-s', '--seuser', '-t', '--type', '-r', '--range'] valid_option["translation"] = [] valid_option["translation"] += valid_everyone + [ '-T', '--trans' ] valid_option["boolean"] = [] @@ -1523,7 +1524,7 @@ diff --exclude-from=exclude --exclude=se locallist = False use_file = False store = "" -+ equil="" ++ equal="" + dontaudit = "" + @@ -1540,7 +1541,7 @@ diff --exclude-from=exclude --exclude=se 'delete', 'deleteall', + 'dontaudit=', -+ 'equil=', ++ 'equal=', 'ftype=', 'file', 'help', @@ -1558,8 +1559,8 @@ diff --exclude-from=exclude --exclude=se - ftype=a + ftype = a + -+ if o == "-e" or o == "--equil": -+ equil = a ++ if o == "-e" or o == "--equal": ++ equal = a if o == "-F" or o == "--file": use_file = True @@ -1606,10 +1607,10 @@ diff --exclude-from=exclude --exclude=se if object == "fcontext": - OBJECT.add(target, setype, ftype, serange, seuser) -+ if equil == "": ++ if equal == "": + OBJECT.add(target, setype, ftype, serange, seuser) + else: -+ OBJECT.add_equil(target, equil) ++ OBJECT.add_equal(target, equal) if object == "permissive": OBJECT.add(target) @@ -1628,10 +1629,10 @@ diff --exclude-from=exclude --exclude=se if object == "fcontext": - OBJECT.modify(target, setype, ftype, serange, seuser) -+ if equil == "": ++ if equal == "": + OBJECT.modify(target, setype, ftype, serange, seuser) + else: -+ OBJECT.modify_equil(target, equil) ++ OBJECT.modify_equal(target, equal) return @@ -1644,9 +1645,9 @@ diff --exclude-from=exclude --exclude=se elif object == "node": OBJECT.delete(target, mask, proto) -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/semanage.8 policycoreutils-2.0.64/semanage/semanage.8 +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/semanage.8 policycoreutils-2.0.68/semanage/semanage.8 --- nsapolicycoreutils/semanage/semanage.8 2008-08-28 09:34:24.000000000 -0400 -+++ policycoreutils-2.0.64/semanage/semanage.8 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/semanage/semanage.8 2009-07-29 09:30:07.000000000 -0400 @@ -21,6 +21,8 @@ .br .B semanage permissive \-{a|d} type @@ -1656,9 +1657,9 @@ diff --exclude-from=exclude --exclude=se .B semanage translation \-{a|d|m} [\-T] level .P -diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/seobject.py policycoreutils-2.0.64/semanage/seobject.py +diff --exclude-from=exclude --exclude=sepolgen-1.0.16 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/seobject.py policycoreutils-2.0.68/semanage/seobject.py --- nsapolicycoreutils/semanage/seobject.py 2009-05-18 13:53:14.000000000 -0400 -+++ policycoreutils-2.0.64/semanage/seobject.py 2009-06-26 14:57:40.000000000 -0400 ++++ policycoreutils-2.0.68/semanage/seobject.py 2009-07-29 09:35:07.000000000 -0400 @@ -1,5 +1,5 @@ #! /usr/bin/python -E -# Copyright (C) 2005, 2006, 2007, 2008 Red Hat @@ -2208,7 +2209,7 @@ diff --exclude-from=exclude --exclude=se def __init__(self, store = ""): semanageRecords.__init__(self, store) + self.equiv = {} -+ self.equil_ind = False ++ self.equal_ind = False + try: + fd = open(selinux.selinux_file_context_subs_path(), "r") + for i in fd.readlines(): @@ -2219,7 +2220,7 @@ diff --exclude-from=exclude --exclude=se + pass + + def commit(self): -+ if self.equil_ind: ++ if self.equal_ind: + subs_file = selinux.selinux_file_context_subs_path() + tmpfile = "%s.tmp" % subs_file + fd = open(tmpfile, "w") @@ -2231,23 +2232,23 @@ diff --exclude-from=exclude --exclude=se + except: + pass + os.rename(tmpfile,subs_file) -+ self.equil_ind = False ++ self.equal_ind = False + semanageRecords.commit(self) + -+ def add_equil(self, src, dst): ++ def add_equal(self, src, dst): + self.begin() + if src in self.equiv.keys(): + raise ValueError(_("Equivalence class for %s already exists") % src) + self.equiv[src] = dst -+ self.equil_ind = True ++ self.equal_ind = True + self.commit() + -+ def modify_equil(self, src, dst): ++ def modify_equal(self, src, dst): + self.begin() + if src not in self.equiv.keys(): + raise ValueError(_("Equivalence class for %s does not exists") % src) + self.equiv[src] = dst -+ self.equil_ind = True ++ self.equal_ind = True + self.commit() def createcon(self, target, seuser = "system_u"): @@ -2323,14 +2324,14 @@ diff --exclude-from=exclude --exclude=se - + + self.equiv = {} -+ self.equil_ind = True ++ self.equal_ind = True self.commit() def __delete(self, target, ftype): - (rc,k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype]) + if target in self.equiv.keys(): + self.equiv.pop(target) -+ self.equil_ind = True ++ self.equal_ind = True + return + + (rc, k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype]) Index: policycoreutils.spec =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/policycoreutils.spec,v retrieving revision 1.614 retrieving revision 1.615 diff -u -p -r1.614 -r1.615 --- policycoreutils.spec 26 Jul 2009 19:07:44 -0000 1.614 +++ policycoreutils.spec 29 Jul 2009 13:44:03 -0000 1.615 @@ -5,8 +5,8 @@ %define sepolgenver 1.0.16 Summary: SELinux policy core utilities Name: policycoreutils -Version: 2.0.64 -Release: 3%{?dist} +Version: 2.0.68 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz @@ -81,6 +81,7 @@ install -m 644 %{SOURCE4} %{buildroot}%{ install -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/security/console.apps/system-config-selinux install -m 644 %{SOURCE7} %{buildroot}%{_sysconfdir}/security/console.apps/selinux-polgengui tar -jxf %{SOURCE8} -C %{buildroot}/ +rm -f %{buildroot}/usr/share/man/ru/man8/genhomedircon.8.gz ln -sf consolehelper %{buildroot}%{_bindir}/system-config-selinux ln -sf consolehelper %{buildroot}%{_bindir}/selinux-polgengui @@ -121,6 +122,17 @@ The policycoreutils-python package conta %dir /var/lib/sepolgen %dir /var/lib/selinux /var/lib/sepolgen/perm_map +%dir %{_datadir}/sandbox +%{_mandir}/man1/audit2allow.1* +%{_mandir}/ru/man1/audit2allow.1* +%{_mandir}/man1/audit2why.1* +%{_mandir}/ru/man1/audit2why.1* +%{_mandir}/man8/chcat.8* +%{_mandir}/ru/man8/chcat.8* +%{_mandir}/man8/semanage.8* +%{_mandir}/ru/man8/semanage.8* +%{_mandir}/man8/fixfiles.8* +%{_mandir}/ru/man8/fixfiles.8* %post python [ -f /usr/share/selinux/devel/include/build.conf ] && /usr/bin/sepolgen-ifgen @@ -198,9 +210,6 @@ rm -rf %{buildroot} %{_bindir}/semodule_expand %{_bindir}/semodule_link %{_bindir}/semodule_package -%{_mandir}/man*/* -# selinux-policy Requires: policycoreutils, so we own this set of directories and our files within them -%{_mandir}/ru/ %config(noreplace) %{_sysconfdir}/pam.d/newrole %config(noreplace) %{_sysconfdir}/pam.d/run_init %config(noreplace) %{_sysconfdir}/sestatus.conf @@ -209,6 +218,35 @@ rm -rf %{buildroot} %config(noreplace) /etc/selinux/restorecond_user.conf %{_sysconfdir}/xdg/autostart/restorecond.desktop %{_datadir}/dbus-1/services/org.selinux.Restorecond.service +# selinux-policy Requires: policycoreutils, so we own this set of directories and our files within them +%{_mandir}/man8/load_policy.8* +%{_mandir}/ru/man8/load_policy.8* +%{_mandir}/man8/open_init_pty.8* +%{_mandir}/ru/man8/open_init_pty.8* +%{_mandir}/man8/restorecon.8* +%{_mandir}/ru/man8/restorecon.8* +%{_mandir}/man8/restorecond.8* +%{_mandir}/ru/man8/restorecond.8* +%{_mandir}/man8/run_init.8* +%{_mandir}/ru/man8/run_init.8* +%{_mandir}/man8/semodule.8* +%{_mandir}/ru/man8/semodule.8* +%{_mandir}/man8/semodule_deps.8* +%{_mandir}/ru/man8/semodule_deps.8* +%{_mandir}/man8/semodule_expand.8* +%{_mandir}/ru/man8/semodule_expand.8* +%{_mandir}/man8/semodule_link.8* +%{_mandir}/ru/man8/semodule_link.8* +%{_mandir}/man8/semodule_package.8* +%{_mandir}/ru/man8/semodule_package.8* +%{_mandir}/man8/sestatus.8* +%{_mandir}/ru/man8/sestatus.8* +%{_mandir}/man8/setfiles.8* +%{_mandir}/ru/man8/setfiles.8* +%{_mandir}/man8/setsebool.8* +%{_mandir}/ru/man8/setsebool.8* +%{_mandir}/man1/secon.1* +%{_mandir}/ru/man1/secon.1* %preun if [ $1 -eq 0 ]; then @@ -229,6 +267,15 @@ else fi %changelog +* Sun Jul 29 2009 Dan Walsh 2.0.68-1 +- Fix location of man pages +- Update to upstream + * Modify setfiles to exclude mounts without seclabel option in + /proc/mounts on kernels >= 2.6.30 from Thomas Liu. + * Re-enable disable_dontaudit rules upon semodule -B from Christopher + Pardy and Dan Walsh. + * setfiles converted to fts from Thomas Liu. + * Sun Jul 26 2009 Fedora Release Engineering - 2.0.64-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: policycoreutils_man_ru2.tar.bz2 =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/policycoreutils_man_ru2.tar.bz2,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 Binary files /tmp/cvspRcWbC and /tmp/cvsEM7a5x differ Index: sources =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/sources,v retrieving revision 1.202 retrieving revision 1.203 diff -u -p -r1.202 -r1.203 --- sources 26 Jun 2009 18:48:41 -0000 1.202 +++ sources 29 Jul 2009 13:44:04 -0000 1.203 @@ -1,2 +1,2 @@ e1b5416c3e0d76e5d702b3f54f4def45 sepolgen-1.0.16.tgz -d70351e2caf19dd096c3329e67f22753 policycoreutils-2.0.64.tgz +aed0ab49649832c19b650e9edefb3c64 policycoreutils-2.0.68.tgz From ke4qqq at fedoraproject.org Wed Jul 29 13:44:25 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Wed, 29 Jul 2009 13:44:25 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/F-10 import.log, NONE, 1.1 php-pear-File-Bittorrent-dos2unix.patch, NONE, 1.1 php-pear-File-Bittorrent2.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729134425.D297411C00CE@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31683/F-10 Modified Files: .cvsignore sources Added Files: import.log php-pear-File-Bittorrent-dos2unix.patch php-pear-File-Bittorrent2.spec Log Message: * Wed Jul 29 2009 David Nalley - 1.3.1-4 - Initial commit --- NEW FILE import.log --- php-pear-File-Bittorrent2-1_3_1-4_fc11:F-10:php-pear-File-Bittorrent2-1.3.1-4.fc11.src.rpm:1248875042 php-pear-File-Bittorrent-dos2unix.patch: package.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE php-pear-File-Bittorrent-dos2unix.patch --- diff -uNr php-pear-File-Bittorrent-1.3.1-orig/package.xml php-pear-File-Bittorrent-1.3.1/package.xml --- php-pear-File-Bittorrent-1.3.1-orig/package.xml 2009-07-16 22:14:20.000000000 -0400 +++ php-pear-File-Bittorrent-1.3.1/package.xml 2009-07-16 22:14:35.000000000 -0400 @@ -46,11 +46,11 @@ - + - - + + --- NEW FILE php-pear-File-Bittorrent2.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %define pear_name File_Bittorrent2 Name: php-pear-File-Bittorrent2 Version: 1.3.1 Release: 4%{?dist} Summary: Decode and Encode data in Bittorrent format Group: Development/Libraries License: LGPLv2 URL: http://pear.php.net/package/File_Bittorrent2 Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz Patch0: php-pear-File-Bittorrent-dos2unix.patch # This patch modifies the md5sum in the xml file to match the files # after they have been dos2unixed BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: dos2unix, php-pear-PHPUnit Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description This package consists of three classes which handles the encoding and decoding of data in Bittorrent format. You can also extract useful informations from .torrent files, create .torrent files and query the torrent's scrape page to get its statistics. PHP5 only. %prep %setup -q -c %patch0 -p1 -b .dos2unix [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} dos2unix torrentinfo.php scrape.php example.php %build cd %{pear_name}-%{version} # Empty build section, most likely nothing required. %check cd %{pear_name}-%{version} php -d "include_path=.:%{pear_phpdir}:%{_datadir}/php" Tests/AllTests.php %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml # Move documentation mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml # TODO upstream: pear_testdir and pear_datadir; they are currently OK though, #c caught by the below glob since they are withing pear_phpdir # Expand this as needed to avoid owning dirs owned by our dependencies #%{pear_phpdir}/* %{pear_phpdir}/File %{pear_testdir}/%{pear_name} %changelog * Fri Jul 17 2009 David Nalley - 1.3.1-4 - fix test line to work regardless of path * Fri Jul 17 2009 Paul W. Frields - 1.3.1-3 - Fix a couple packaging problems * Fri Jul 17 2009 David Nalley 1.3.1-2 - Added a checksum patch suggested by Paul Frields * Thu Jul 16 2009 David Nalley 1.3.1-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:02:13 -0000 1.1 +++ .cvsignore 29 Jul 2009 13:44:25 -0000 1.2 @@ -0,0 +1 @@ +File_Bittorrent2-1.3.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:02:14 -0000 1.1 +++ sources 29 Jul 2009 13:44:25 -0000 1.2 @@ -0,0 +1 @@ +32f58ecd1ed6ed397d002c26f0f343d3 File_Bittorrent2-1.3.1.tgz From mhlavink at fedoraproject.org Wed Jul 29 13:45:10 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 29 Jul 2009 13:45:10 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel ecryptfs-utils.spec,1.51,1.52 Message-ID: <20090729134510.EB0AC11C00CE@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32142 Modified Files: ecryptfs-utils.spec Log Message: ecryptfs-dot-private was removed Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- ecryptfs-utils.spec 29 Jul 2009 13:10:42 -0000 1.51 +++ ecryptfs-utils.spec 29 Jul 2009 13:45:10 -0000 1.52 @@ -3,7 +3,7 @@ Name: ecryptfs-utils Version: 78 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base License: GPLv2+ @@ -94,9 +94,6 @@ touch -r src/desktop/ecryptfs-setup-priv $RPM_BUILD_ROOT%{_datadir}/%{name}/ecryptfs-mount-private.desktop rm -f $RPM_BUILD_ROOT/%{_datadir}/%{name}/ecryptfs-record-passphrase -#ecryptfs-dot-private should be only sourced, not executed (#500817) -chmod -x $RPM_BUILD_ROOT%{_bindir}/ecryptfs-dot-private - %pre groupadd -r -f ecryptfs @@ -130,7 +127,6 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ecryptfs-umount-private %{_bindir}/ecryptfs-stat %{_bindir}/ecryptfsd -%{_bindir}/ecryptfs-dot-private %{_libdir}/ecryptfs %{_libdir}/libecryptfs.so.0 %{_libdir}/libecryptfs.so.0.0.0 @@ -176,6 +172,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Wed Jul 29 2009 Michal Hlavinka - 78-2 +- ecryptfs-dot-private is no longer used + * Wed Jul 29 2009 Michal Hlavinka - 78-1 - updated to 78 From twaugh at fedoraproject.org Wed Jul 29 13:47:30 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 13:47:30 +0000 (UTC) Subject: rpms/cups/F-11 cups-avahi.patch,1.4,1.5 cups.spec,1.493,1.494 Message-ID: <20090729134730.B17AB11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv873 Modified Files: cups-avahi.patch cups.spec Log Message: * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 - Fixed Avahi support in the dnssd backend (bug #513888). cups-avahi.patch: backend/dnssd.c | 532 ++++++++++++++++++++++++++++++++++++------- config-scripts/cups-dnssd.m4 | 15 + config.h.in | 7 cups/http-support.c | 177 +++++++++++++- 4 files changed, 645 insertions(+), 86 deletions(-) Index: cups-avahi.patch =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups-avahi.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cups-avahi.patch 5 Mar 2009 13:31:30 -0000 1.4 +++ cups-avahi.patch 29 Jul 2009 13:47:30 -0000 1.5 @@ -1,35 +1,35 @@ -diff -up cups-1.4b2-svn8404/backend/dnssd.c.avahi cups-1.4b2-svn8404/backend/dnssd.c ---- cups-1.4b2-svn8404/backend/dnssd.c.avahi 2009-03-05 10:54:00.000000000 +0000 -+++ cups-1.4b2-svn8404/backend/dnssd.c 2009-03-05 11:15:28.000000000 +0000 -@@ -22,7 +22,8 @@ +diff -up cups-1.4rc1/backend/dnssd.c.avahi cups-1.4rc1/backend/dnssd.c +--- cups-1.4rc1/backend/dnssd.c.avahi 2009-07-29 14:00:53.767272320 +0100 ++++ cups-1.4rc1/backend/dnssd.c 2009-07-29 14:01:36.574271697 +0100 +@@ -22,6 +22,7 @@ * exec_backend() - Execute the backend that corresponds to the * resolved service name. * get_device() - Create or update a device. -- * query_callback() - Process query data. -+ * query_callback() - Process query data from DNS-SD -+ * find_device() - Process query data. ++* find_device() + * query_callback() - Process query data. + * sigterm_handler() - Handle termination signals... * unquote() - Unquote a name string. - */ - -@@ -32,7 +33,16 @@ +@@ -33,7 +34,18 @@ #include "backend-private.h" #include -#include ++#ifdef HAVE_DNSSD ++# include ++#endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+# include -+# include -+# include -+# include -+# include ++# include ++# include ++# include ++# include ++# include ++# include +#define kDNSServiceMaxDomainName AVAHI_DOMAIN_NAME_MAX -+#else -+# include -+#endif /* Avahi */ ++#endif /* HAVE_AVAHI */ /* -@@ -51,7 +61,9 @@ typedef enum +@@ -52,7 +64,9 @@ typedef enum typedef struct { @@ -39,34 +39,36 @@ diff -up cups-1.4b2-svn8404/backend/dnss char *name, /* Service name */ *domain, /* Domain name */ *fullName, /* Full name */ -@@ -67,6 +79,26 @@ typedef struct +@@ -64,6 +78,20 @@ typedef struct + sent; /* Did we list the device? */ + } cups_device_t; + ++typedef struct ++{ ++ char key[256]; ++ char value[256]; ++ ++#ifdef HAVE_DNSSD ++ const uint8_t *data; ++ const uint8_t *datanext; ++ const uint8_t *dataend; ++#else /* HAVE_AVAHI */ ++ AvahiStringList *txt; ++#endif /* HAVE_DNSSD */ ++} cups_txt_records_t; ++ + + /* + * Local globals... +@@ -77,6 +105,7 @@ static int job_canceled = 0; * Local functions... */ -+#ifdef HAVE_AVAHI -+/* -+ * Avahi callback functions -+ */ -+static void avahi_client_callback(AvahiClient *client, -+ AvahiClientState state, -+ void *context); -+static void avahi_browse_callback(AvahiServiceBrowser *browser, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiBrowserEvent event, -+ const char *serviceName, -+ const char *regtype, -+ const char *replyDomain, -+ AvahiLookupResultFlags flags, -+ void *context); -+#else -+/* -+ * libdns_sd callback functions -+ */ ++#ifdef HAVE_DNSSD static void browse_callback(DNSServiceRef sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, -@@ -82,12 +114,6 @@ static void browse_local_callback(DNSSe +@@ -92,12 +121,6 @@ static void browse_local_callback(DNSSe const char *regtype, const char *replyDomain, void *context); @@ -79,56 +81,133 @@ diff -up cups-1.4b2-svn8404/backend/dnss static void query_callback(DNSServiceRef sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, -@@ -96,7 +122,31 @@ static void query_callback(DNSServiceRe +@@ -106,9 +129,111 @@ static void query_callback(DNSServiceRe uint16_t rrclass, uint16_t rdlen, const void *rdata, uint32_t ttl, void *context); -+#endif ++#endif /* HAVE_DNSSD */ ++#ifdef HAVE_AVAHI ++static void avahi_client_callback (AvahiClient *client, ++ AvahiClientState state, ++ void *context); ++static void avahi_browse_callback (AvahiServiceBrowser *browser, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiBrowserEvent event, ++ const char *serviceName, ++ const char *regtype, ++ const char *replyDomain, ++ AvahiLookupResultFlags flags, ++ void *context); ++#endif /* HAVE_AVAHI */ + -+static cups_device_t *find_device (cups_array_t *devices, -+ cups_device_t *key, -+ const char *priority, size_t priority_len, -+ const char *mfg, size_t mfg_len, -+ const char *mdl, size_t mdl_len, -+ const char *product, size_t product_len, -+ const char *ty, size_t ty_len, -+ const char *printer_type, -+ size_t printer_type_len); ++static cups_device_t * find_device (cups_array_t *devices, ++ cups_txt_records_t *txt, ++ cups_device_t *dkey); +static int compare_devices(cups_device_t *a, cups_device_t *b); +static void exec_backend(char **argv); +static cups_device_t *get_device(cups_array_t *devices, + const char *serviceName, + const char *regtype, + const char *replyDomain); + static void sigterm_handler(int sig); static void unquote(char *dst, const char *src, size_t dstsize); -+static int device_type(const char *regtype); -+ -+ + +#ifdef HAVE_AVAHI +static AvahiSimplePoll *simple_poll = NULL; +static int avahi_got_callback; +#endif /* HAVE_AVAHI */ - ++ ++ ++/* ++ * cups_txt_records_t access functions ++ */ ++static cups_txt_records_t * ++next_txt_record (cups_txt_records_t *txt) ++{ ++#ifdef HAVE_DNSSD ++ txt->data = txt->datanext; ++#else /* HAVE_AVAHI */ ++ txt->txt = avahi_string_list_get_next (txt->txt); ++ if (txt->txt == NULL) ++ return NULL; ++#endif /* HAVE_DNSSD */ ++ ++ return txt; ++} ++ ++static int ++parse_txt_record_pair (cups_txt_records_t *txt) ++{ ++#ifdef HAVE_DNSSD ++ uint8_t datalen; ++ uint8_t *data = txt->data; ++ char *ptr; ++ ++ /* ++ * Read a key/value pair starting with an 8-bit length. Since the ++ * length is 8 bits and the size of the key/value buffers is 256, we ++ * don't need to check for overflow... ++ */ ++ ++ datalen = *data++; ++ if (!datalen || (data + datalen) >= txt->dataend) ++ return NULL; ++ txt->datanext = data + datalen; ++ ++ for (ptr = txt->key; data < txt->datanext && *data != '='; data ++) ++ *ptr++ = *data; ++ *ptr = '\0'; ++ ++ if (data < txt->datanext && *data == '=') ++ { ++ data++; ++ ++ if (data < datanext) ++ memcpy (txt->value, data, txt->datanext - data); ++ value[txt->datanext - data] = '\0'; ++ } ++ else ++ return 1; ++#else /* HAVE_AVAHI */ ++ char *key, *value; ++ size_t len; ++ avahi_string_list_get_pair (txt->txt, &key, &value, &len); ++ if (len > sizeof (txt->value) - 1) ++ len = sizeof (txt->value) - 1; ++ ++ memcpy (txt->value, value, len); ++ txt->value[len] = '\0'; ++ len = strlen (key); ++ if (len > sizeof (txt->key) - 1) ++ len = sizeof (txt->key) - 1; ++ ++ memcpy (txt->key, key, len); ++ txt->key[len] = '\0'; ++ avahi_free (key); ++ avahi_free (value); ++#endif /* HAVE_AVAHI */ ++ ++ return 0; ++} /* -@@ -108,6 +158,16 @@ main(int argc, /* I - Number of comm + * 'main()' - Browse for printers. +@@ -119,6 +244,13 @@ main(int argc, /* I - Number of comm char *argv[]) /* I - Command-line arguments */ { const char *name; /* Backend name */ -+ int fd; /* Main file descriptor */ -+ fd_set input; /* Input set for select() */ -+ struct timeval timeout; /* Timeout for select() */ + cups_array_t *devices; /* Device array */ + cups_device_t *device; /* Current device */ + char uriName[1024]; /* Unquoted fullName for URI */ -+#ifdef HAVE_AVAHI -+ AvahiClient *client; -+ int error; -+#else ++#ifdef HAVE_DNSSD ++ int fd; /* Main file descriptor */ ++ fd_set input; /* Input set for select() */ ++ struct timeval timeout; /* Timeout for select() */ DNSServiceRef main_ref, /* Main service reference */ fax_ipp_ref, /* IPP fax service reference */ ipp_ref, /* IPP service reference */ -@@ -119,12 +179,7 @@ main(int argc, /* I - Number of comm +@@ -130,12 +262,11 @@ main(int argc, /* I - Number of comm pdl_datastream_ref, /* AppSocket service reference */ printer_ref, /* LPD service reference */ riousbprint_ref; /* Remote IO service reference */ @@ -138,11 +217,15 @@ diff -up cups-1.4b2-svn8404/backend/dnss - cups_array_t *devices; /* Device array */ - cups_device_t *device; /* Current device */ - char uriName[1024]; /* Unquoted fullName for URI */ -+#endif /* !HAVE_AVAHI */ - - - /* -@@ -164,6 +219,48 @@ main(int argc, /* I - Number of comm ++#endif /* HAVE_DNSSD */ ++#ifdef HAVE_AVAHI ++ AvahiClient *client; ++ int error; ++#endif /* HAVE_AVAHI */ + #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET) + struct sigaction action; /* Actions for POSIX signals */ + #endif /* HAVE_SIGACTION && !HAVE_SIGSET */ +@@ -194,6 +325,49 @@ main(int argc, /* I - Number of comm * Browse for different kinds of printers... */ @@ -187,25 +270,36 @@ diff -up cups-1.4b2-svn8404/backend/dnss + AVAHI_PROTO_UNSPEC, + "_riousbprint._tcp", NULL, 0, + avahi_browse_callback, devices); -+#else ++#endif /* HAVE_AVAHI */ ++#ifdef HAVE_DNSSD if (DNSServiceCreateConnection(&main_ref) != kDNSServiceErr_NoError) { perror("ERROR: Unable to create service connection"); -@@ -215,6 +312,7 @@ main(int argc, /* I - Number of comm +@@ -245,6 +419,7 @@ main(int argc, /* I - Number of comm riousbprint_ref = main_ref; DNSServiceBrowse(&riousbprint_ref, kDNSServiceFlagsShareConnection, 0, "_riousbprint._tcp", NULL, browse_callback, devices); -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ /* * Loop until we are killed... -@@ -222,6 +320,25 @@ main(int argc, /* I - Number of comm +@@ -252,6 +427,9 @@ main(int argc, /* I - Number of comm - for (;;) + while (!job_canceled) { + int announce = 0; + -+#ifdef HAVE_AVAHI ++#ifdef HAVE_DNSSD + FD_ZERO(&input); + FD_SET(fd, &input); + +@@ -271,11 +449,35 @@ main(int argc, /* I - Number of comm + } + else + { ++ announce = 1; ++ } ++#else /* HAVE_AVAHI */ + int r; + avahi_got_callback = 0; + r = avahi_simple_poll_iterate (simple_poll, 1); @@ -221,17 +315,7 @@ diff -up cups-1.4b2-svn8404/backend/dnss + + if (avahi_got_callback) + announce = 1; -+#else - FD_ZERO(&input); - FD_SET(fd, &input); - -@@ -241,11 +358,19 @@ main(int argc, /* I - Number of comm - } - else - { -+ announce = 1; -+ } -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ + + if (announce) + { @@ -239,75 +323,198 @@ diff -up cups-1.4b2-svn8404/backend/dnss * Announce any devices we've found... */ -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD DNSServiceErrorType status; /* DNS query status */ -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ cups_device_t *best; /* Best matching device */ char device_uri[1024]; /* Device URI */ int count; /* Number of queries */ -@@ -258,6 +383,7 @@ main(int argc, /* I - Number of comm +@@ -285,6 +487,7 @@ main(int argc, /* I - Number of comm best = NULL, count = 0; device; device = (cups_device_t *)cupsArrayNext(devices)) -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD if (!device->ref && !device->sent) { /* -@@ -286,14 +412,19 @@ main(int argc, /* I - Number of comm +@@ -313,14 +516,18 @@ main(int argc, /* I - Number of comm count ++; } } - else if (!device->sent) + else -+#endif /* !HAVE_AVAHI */ -+ ++#endif /* HAVE_DNSSD */ + if (!device->sent) { -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD /* * Got the TXT records, now report the device... */ DNSServiceRefDeallocate(device->ref); device->ref = 0; -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ if (!best) best = device; -@@ -301,11 +432,9 @@ main(int argc, /* I - Number of comm - strcasecmp(best->domain, device->domain)) - { - unquote(uriName, best->fullName, sizeof(uriName)); -- - httpAssembleURI(HTTP_URI_CODING_ALL, device_uri, sizeof(device_uri), - schemes[best->type], NULL, uriName, 0, - best->cups_shared ? "/cups" : "/"); -- - cupsBackendReport("network", device_uri, best->make_and_model, - best->name, NULL, NULL); - best->sent = 1; -@@ -325,11 +454,9 @@ main(int argc, /* I - Number of comm - if (best) - { - unquote(uriName, best->fullName, sizeof(uriName)); -- - httpAssembleURI(HTTP_URI_CODING_ALL, device_uri, sizeof(device_uri), - schemes[best->type], NULL, uriName, 0, - best->cups_shared ? "/cups" : "/"); -- - cupsBackendReport("network", device_uri, best->make_and_model, - best->name, NULL, NULL); - best->sent = 1; -@@ -339,6 +466,204 @@ main(int argc, /* I - Number of comm +@@ -372,6 +579,7 @@ main(int argc, /* I - Number of comm + * 'browse_callback()' - Browse devices. + */ + ++#ifdef HAVE_DNSSD + static void + browse_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -405,12 +613,14 @@ browse_callback( + + get_device((cups_array_t *)context, serviceName, regtype, replyDomain); + } ++#endif /* HAVE_DNSSD */ + + + /* + * 'browse_local_callback()' - Browse local devices. + */ + ++#ifdef HAVE_DNSSD + static void + browse_local_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -456,6 +666,7 @@ browse_local_callback( + device->fullName); + device->sent = 1; } ++#endif /* HAVE_DNSSD */ + + + /* +@@ -528,6 +739,32 @@ exec_backend(char **argv) /* I - Comman + exit(CUPS_BACKEND_STOP); + } + ++static int ++device_type (const char *regtype) ++{ ++#ifdef HAVE_AVAHI ++ if (!strcmp(regtype, "_ipp._tcp") || ++ !strcmp(regtype, "_ipp-tls._tcp")) ++ return (CUPS_DEVICE_IPP); ++ else if (!strcmp(regtype, "_fax-ipp._tcp")) ++ return (CUPS_DEVICE_FAX_IPP); ++ else if (!strcmp(regtype, "_printer._tcp")) ++ return (CUPS_DEVICE_PDL_DATASTREAM); ++#else ++ if (!strcmp(regtype, "_ipp._tcp.") || ++ !strcmp(regtype, "_ipp-tls._tcp.")) ++ return (CUPS_DEVICE_IPP); ++ else if (!strcmp(regtype, "_fax-ipp._tcp.")) ++ return (CUPS_DEVICE_FAX_IPP); ++ else if (!strcmp(regtype, "_printer._tcp.")) ++ return (CUPS_DEVICE_PRINTER); ++ else if (!strcmp(regtype, "_pdl-datastream._tcp.")) ++ return (CUPS_DEVICE_PDL_DATASTREAM); ++#endif /* HAVE_AVAHI */ ++ ++ return (CUPS_DEVICE_RIOUSBPRINT); ++} ++ + + /* + * 'get_device()' - Create or update a device. +@@ -550,18 +787,7 @@ get_device(cups_array_t *devices, /* I - + */ + + key.name = (char *)serviceName; +- +- if (!strcmp(regtype, "_ipp._tcp.") || +- !strcmp(regtype, "_ipp-tls._tcp.")) +- key.type = CUPS_DEVICE_IPP; +- else if (!strcmp(regtype, "_fax-ipp._tcp.")) +- key.type = CUPS_DEVICE_FAX_IPP; +- else if (!strcmp(regtype, "_printer._tcp.")) +- key.type = CUPS_DEVICE_PRINTER; +- else if (!strcmp(regtype, "_pdl-datastream._tcp.")) +- key.type = CUPS_DEVICE_PDL_DATASTREAM; +- else +- key.type = CUPS_DEVICE_RIOUSBPRINT; ++ key.type = device_type (regtype); + + for (device = cupsArrayFind(devices, &key); + device; +@@ -581,8 +807,14 @@ get_device(cups_array_t *devices, /* I - + free(device->domain); + device->domain = strdup(replyDomain); + ++#ifdef HAVE_DNSSD + DNSServiceConstructFullName(fullName, device->name, regtype, + replyDomain); ++#else /* HAVE_AVAHI */ ++ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, ++ serviceName, regtype, replyDomain); ++#endif /* HAVE_DNSSD */ ++ + free(device->fullName); + device->fullName = strdup(fullName); + } +@@ -609,7 +841,13 @@ get_device(cups_array_t *devices, /* I - + * Set the "full name" of this service, which is used for queries... + */ + ++#ifdef HAVE_DNSSD + DNSServiceConstructFullName(fullName, serviceName, regtype, replyDomain); ++#else /* HAVE_AVAHI */ ++ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, ++ serviceName, regtype, replyDomain); ++#endif /* HAVE_DNSSD */ ++ + device->fullName = strdup(fullName); + return (device); +@@ -620,6 +858,7 @@ get_device(cups_array_t *devices, /* I - + * 'query_callback()' - Process query data. + */ + ++#ifdef HAVE_DNSSD + static void + query_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -639,7 +878,7 @@ query_callback( + *ptr; /* Pointer into string */ + cups_device_t dkey, /* Search key */ + *device; /* Device */ +- ++ cups_txt_records_t txt; + fprintf(stderr, "DEBUG2: query_callback(sdRef=%p, flags=%x, " + "interfaceIndex=%d, errorCode=%d, fullName=\"%s\", " +@@ -673,84 +912,211 @@ query_callback( + if ((ptr = strstr(name, "._")) != NULL) + *ptr = '\0'; + +- if (strstr(fullName, "_ipp._tcp.") || +- strstr(fullName, "_ipp-tls._tcp.")) +- dkey.type = CUPS_DEVICE_IPP; +- else if (strstr(fullName, "_fax-ipp._tcp.")) +- dkey.type = CUPS_DEVICE_FAX_IPP; +- else if (strstr(fullName, "_printer._tcp.")) +- dkey.type = CUPS_DEVICE_PRINTER; +- else if (strstr(fullName, "_pdl-datastream._tcp.")) +- dkey.type = CUPS_DEVICE_PDL_DATASTREAM; ++ dkey.type = device_type (fullName); ++ ++ txt.data = rdata; ++ txt.dataend = rdata + rdlen; ++ device = find_device ((cups_array_t *) context, &txt, &dkey); ++ if (!device) ++ fprintf(stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", fullName); ++} ++#endif /* HAVE_DNSSD */ ++ +#ifdef HAVE_AVAHI +static void -+avahi_client_callback( -+ AvahiClient *client, -+ AvahiClientState state, -+ void *context) ++avahi_client_callback(AvahiClient *client, ++ AvahiClientState state, ++ void *context) +{ + /* + * If the connection drops, quit. @@ -321,39 +528,26 @@ diff -up cups-1.4b2-svn8404/backend/dnss +} + +static void -+avahi_query_callback( -+ AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_query_callback(AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context) +{ -+ AvahiStringList *pair; + AvahiClient *client; + cups_device_t key, + *device; + char uqname[1024], + *ptr; -+ char *priority = NULL, -+ *mfg = NULL, -+ *mdl = NULL, -+ *product = NULL, -+ *ty = NULL, -+ *printer_type = NULL; -+ size_t priority_len = 0, -+ mfg_len = 0, -+ mdl_len = 0, -+ product_len = 0, -+ ty_len = 0, -+ printer_type_len = 0; ++ cups_txt_records_t txtr; + + client = avahi_service_resolver_get_client (resolver); + if (event != AVAHI_RESOLVER_FOUND) @@ -381,43 +575,11 @@ diff -up cups-1.4b2-svn8404/backend/dnss + key.type = device_type (type); + + /* -+ * Look for information in the TXT string. -+ */ -+ -+ if ((pair = avahi_string_list_find (txt, "priority")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &priority, &priority_len); -+ -+ if ((pair = avahi_string_list_find (txt, "usb_MFG")) == NULL) -+ pair = avahi_string_list_find (txt, "usb_MANUFACTURER"); -+ if (pair != NULL) -+ avahi_string_list_get_pair (pair, NULL, &mfg, &mfg_len); -+ -+ if ((pair = avahi_string_list_find (txt, "usb_MDL")) == NULL) -+ pair = avahi_string_list_find (txt, "usb_MODEL"); -+ if (pair != NULL) -+ avahi_string_list_get_pair (pair, NULL, &mdl, &mdl_len); -+ -+ if ((pair = avahi_string_list_find (txt, "product")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &product, &product_len); -+ -+ if ((pair = avahi_string_list_find (txt, "ty")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &ty, &ty_len); -+ -+ if ((pair = avahi_string_list_find (txt, "printer-type")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &printer_type, &printer_type_len); -+ -+ /* + * Find the device and the the TXT information. + */ + -+ device = find_device ((cups_array_t *) context, -+ &key, -+ priority, priority_len, -+ mfg, mfg_len, -+ mdl, mdl_len, -+ product, product_len, -+ ty, ty_len, -+ printer_type, printer_type_len); ++ txtr.txt = txt; ++ device = find_device ((cups_array_t *) context, &txtr, &key); + if (device) + { + /* @@ -426,23 +588,24 @@ diff -up cups-1.4b2-svn8404/backend/dnss + + avahi_got_callback = 1; + } -+ else + else +- dkey.type = CUPS_DEVICE_RIOUSBPRINT; + fprintf (stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", name); -+ + +- for (device = cupsArrayFind(devices, &dkey); + avahi_service_resolver_free (resolver); +} + +static void -+avahi_browse_callback( -+ AvahiServiceBrowser *browser, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiBrowserEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_browse_callback(AvahiServiceBrowser *browser, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiBrowserEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ AvahiLookupResultFlags flags, ++ void *context) +{ + AvahiClient *client = avahi_service_browser_get_client (browser); + @@ -497,256 +660,109 @@ diff -up cups-1.4b2-svn8404/backend/dnss + break; + } +} -+ -+#else /* !HAVE_AVAHI */ -+ - /* - * 'browse_callback()' - Browse devices. - */ -@@ -427,6 +752,7 @@ browse_local_callback( - device->fullName); - device->sent = 1; - } -+#endif /* !HAVE_AVAHI */ - - - /* -@@ -525,18 +851,7 @@ get_device(cups_array_t *devices, /* I - - - key.name = (char *)serviceName; - key.domain = (char *)replyDomain; -- -- if (!strcmp(regtype, "_ipp._tcp.") || -- !strcmp(regtype, "_ipp-tls._tcp.")) -- key.type = CUPS_DEVICE_IPP; -- else if (!strcmp(regtype, "_fax-ipp._tcp.")) -- key.type = CUPS_DEVICE_FAX_IPP; -- else if (!strcmp(regtype, "_printer._tcp.")) -- key.type = CUPS_DEVICE_PRINTER; -- else if (!strcmp(regtype, "_pdl-datastream._tcp.")) -- key.type = CUPS_DEVICE_PDL_DATASTREAM; -- else -- key.type = CUPS_DEVICE_RIOUSBPRINT; -+ key.type = device_type (regtype); - - for (device = cupsArrayFind(devices, &key); - device; -@@ -566,13 +881,20 @@ get_device(cups_array_t *devices, /* I - - * Set the "full name" of this service, which is used for queries... - */ - -+#ifdef HAVE_AVAHI -+ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, -+ serviceName, regtype, replyDomain); -+ device->fullName = strdup(fullName); -+#else - DNSServiceConstructFullName(fullName, serviceName, regtype, replyDomain); - device->fullName = strdup(fullName); -+#endif /* !HAVE_AVAHI */ - - return (device); - } - - -+#ifndef HAVE_AVAHI - /* - * 'query_callback()' - Process query data. - */ -@@ -591,12 +913,21 @@ query_callback( - uint32_t ttl, /* I - Time-to-live */ - void *context) /* I - Devices array */ - { -- cups_array_t *devices; /* Device array */ - char name[1024], /* Service name */ - *ptr; /* Pointer into name */ -- cups_device_t key, /* Search key */ -- *device; /* Device */ -- -+ cups_device_t key; /* Search key */ -+ const char *priority, -+ *mfg, -+ *mdl, -+ *product, -+ *ty, -+ *printer_type; -+ uint8_t priority_len, -+ mfg_len, -+ mdl_len, -+ product_len, -+ ty_len, -+ printer_type_len; - - fprintf(stderr, "DEBUG2: query_callback(sdRef=%p, flags=%x, " - "interfaceIndex=%d, errorCode=%d, fullName=\"%s\", " -@@ -617,7 +948,6 @@ query_callback( - * Lookup the service in the devices array. - */ - -- devices = (cups_array_t *)context; - key.name = name; - - unquote(name, fullName, sizeof(name)); -@@ -642,88 +972,111 @@ query_callback( - else - key.type = CUPS_DEVICE_RIOUSBPRINT; - -- for (device = cupsArrayFind(devices, &key); -+ priority = TXTRecordGetValuePtr(rdlen, rdata, "priority", &priority_len); -+ if ((mfg = TXTRecordGetValuePtr(rdlen, rdata, "usb_MFG", &mfg_len)) == NULL) -+ mfg = TXTRecordGetValuePtr(rdlen, rdata, "usb_MANUFACTURER", &mfg_len); -+ -+ if ((mdl = TXTRecordGetValuePtr(rdlen, rdata, "usb_MDL", &mdl_len)) == NULL) -+ mdl = TXTRecordGetValuePtr(rdlen, rdata, "usb_MODEL", &mdl_len); -+ -+ product = TXTRecordGetValuePtr(rdlen, rdata, "product", &product_len); -+ ty = TXTRecordGetValuePtr(rdlen, rdata, "ty", &ty_len); -+ printer_type = TXTRecordGetValuePtr(rdlen, rdata, "printer-type", -+ &printer_type_len); -+ -+ if (!find_device ((cups_array_t *) context, -+ &key, -+ priority, priority_len, -+ mfg, mfg_len, -+ mdl, mdl_len, -+ product, product_len, -+ ty, ty_len, -+ printer_type, printer_type_len)) -+ fprintf(stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", fullName); -+} -+#endif /* !HAVE_AVAHI */ -+ ++#endif /* HAVE_AVAHI */ + +static cups_device_t * +find_device (cups_array_t *devices, -+ cups_device_t *key, -+ const char *priority, size_t priority_len, -+ const char *mfg, size_t mfg_len, -+ const char *mdl, size_t mdl_len, -+ const char *product, size_t product_len, -+ const char *ty, size_t ty_len, -+ const char *printer_type, size_t printer_type_len) ++ cups_txt_records_t *txt, ++ cups_device_t *dkey) +{ -+ cups_device_t *device; ++ cups_device_t *device; ++ char *ptr; + -+ for (device = cupsArrayFind(devices, key); ++ for (device = cupsArrayFind(devices, dkey); device; device = cupsArrayNext(devices)) { -- if (strcasecmp(device->name, key.name) || -- strcasecmp(device->domain, key.domain)) -+ if (strcasecmp(device->name, key->name) || -+ strcasecmp(device->domain, key->domain)) +- if (strcasecmp(device->name, dkey.name) || +- strcasecmp(device->domain, dkey.domain)) ++ if (strcasecmp(device->name, dkey->name) || ++ strcasecmp(device->domain, dkey->domain)) { device = NULL; break; } -- else if (device->type == key.type) -+ else if (device->type == key->type) +- else if (device->type == dkey.type) ++ else if (device->type == dkey->type) { /* * Found it, pull out the priority and make and model from the TXT * record and save it... */ -- const void *value; /* Pointer to value */ -- uint8_t valueLen; /* Length of value (max 255) */ - char make_and_model[512], /* Manufacturer and model */ - model[256], /* Model */ -- priority[256]; /* Priority */ +- const uint8_t *data, /* Pointer into data */ +- *datanext, /* Next key/value pair */ +- *dataend; /* End of entire TXT record */ +- uint8_t datalen; /* Length of current key/value pair */ +- char key[256], /* Key string */ +- value[256], /* Value string */ +- make_and_model[512], ++ char make_and_model[512], + /* Manufacturer and model */ + model[256], /* Model */ +- device_id[2048];/* 1284 device ID */ - -+ priority_buf[256], /* Priority */ -+ *ptr; ++ device_id[2048]; /* 1284 device ID */ -- value = TXTRecordGetValuePtr(rdlen, rdata, "priority", &valueLen); + device_id[0] = '\0'; + make_and_model[0] = '\0'; -- if (value && valueLen) -+ if (priority && priority_len) - { -- memcpy(priority, value, valueLen); -- priority[valueLen] = '\0'; -- device->priority = atoi(priority); -+ memcpy(priority_buf, priority, priority_len); -+ priority_buf[priority_len] = '\0'; -+ device->priority = atoi(priority_buf); - } + strcpy(model, "Unknown"); -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MFG", -- &valueLen)) == NULL) -- value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MANUFACTURER", -- &valueLen); -- -- if (value && valueLen) -+ if (mfg && mfg_len) +- for (data = rdata, dataend = data + rdlen; +- data < dataend; +- data = datanext) ++ for (;;) { -- memcpy(make_and_model, value, valueLen); -- make_and_model[valueLen] = '\0'; -+ memcpy(make_and_model, mfg, mfg_len); -+ make_and_model[mfg_len] = '\0'; - } - else - make_and_model[0] = '\0'; - -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MDL", -- &valueLen)) == NULL) -- value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MODEL", &valueLen); +- /* +- * Read a key/value pair starting with an 8-bit length. Since the +- * length is 8 bits and the size of the key/value buffers is 256, we +- * don't need to check for overflow... +- */ - -- if (value && valueLen) -+ if (mdl && mdl_len) - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, mdl, mdl_len); -+ model[mdl_len] = '\0'; - } -- else if ((value = TXTRecordGetValuePtr(rdlen, rdata, "product", -- &valueLen)) != NULL && valueLen > 2) -+ else if (product && product_len > 2) - { -- if (((char *)value)[0] == '(') -+ if (product[0] == '(') +- datalen = *data++; +- +- if (!datalen || (data + datalen) >= dataend) +- break; +- +- datanext = data + datalen; ++ char *key; ++ char *value; + +- for (ptr = key; data < datanext && *data != '='; data ++) +- *ptr++ = *data; +- *ptr = '\0'; +- +- if (data < datanext && *data == '=') +- { +- data ++; +- +- if (data < datanext) +- memcpy(value, data, datanext - data); +- value[datanext - data] = '\0'; +- } +- else +- continue; ++ if (parse_txt_record_pair (txt)) ++ goto next; + ++ key = txt->key; ++ value = txt->value; + if (!strncasecmp(key, "usb_", 4)) { /* - * Strip parenthesis... - */ - -- memcpy(model, value + 1, valueLen - 2); -- model[valueLen - 2] = '\0'; -+ memcpy(model, product + 1, product_len - 2); -+ model[product_len - 2] = '\0'; - } - else - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, product, product_len); -+ model[product_len] = '\0'; +@@ -805,6 +1171,10 @@ query_callback( + if (device->type == CUPS_DEVICE_PRINTER) + device->sent = 1; } ++ ++ next: ++ if (next_txt_record (txt) == NULL) ++ break; + } - if (!strcasecmp(model, "GPL Ghostscript") || - !strcasecmp(model, "GNU Ghostscript") || - !strcasecmp(model, "ESP Ghostscript")) - { -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "ty", -- &valueLen)) != NULL) -+ if (ty && ty_len) - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, ty, ty_len); -+ model[ty_len] = '\0'; - - if ((ptr = strchr(model, ',')) != NULL) - *ptr = '\0'; -@@ -749,7 +1102,7 @@ query_callback( - - if ((device->type == CUPS_DEVICE_IPP || - device->type == CUPS_DEVICE_PRINTER) && -- TXTRecordGetValuePtr(rdlen, rdata, "printer-type", &valueLen)) -+ printer_type) - { - /* - * This is a CUPS printer! -@@ -765,8 +1118,7 @@ query_callback( + if (device->device_id) +@@ -854,11 +1224,9 @@ query_callback( } } @@ -755,46 +771,13 @@ diff -up cups-1.4b2-svn8404/backend/dnss + return device; } - -@@ -804,6 +1156,35 @@ unquote(char *dst, /* I - Destina - } - - -+static int -+device_type (const char *regtype) -+{ -+#ifdef HAVE_AVAHI -+ if (!strcmp(regtype, "_ipp._tcp") || -+ !strcmp(regtype, "_ipp-tls._tcp")) -+ return (CUPS_DEVICE_IPP); -+ else if (!strcmp(regtype, "_fax-ipp._tcp")) -+ return (CUPS_DEVICE_FAX_IPP); -+ else if (!strcmp(regtype, "_printer._tcp")) -+ return (CUPS_DEVICE_PRINTER); -+ else if (!strcmp(regtype, "_pdl-datastream._tcp")) -+ return (CUPS_DEVICE_PDL_DATASTREAM); -+#else -+ if (!strcmp(regtype, "_ipp._tcp.") || -+ !strcmp(regtype, "_ipp-tls._tcp.")) -+ return (CUPS_DEVICE_IPP); -+ else if (!strcmp(regtype, "_fax-ipp._tcp.")) -+ return (CUPS_DEVICE_FAX_IPP); -+ else if (!strcmp(regtype, "_printer._tcp.")) -+ return (CUPS_DEVICE_PRINTER); -+ else if (!strcmp(regtype, "_pdl-datastream._tcp.")) -+ return (CUPS_DEVICE_PDL_DATASTREAM); -+#endif /* !HAVE_AVAHI */ -+ -+ return (CUPS_DEVICE_RIOUSBPRINT); -+} -+ -+ +- /* - * End of "$Id$". + * 'sigterm_handler()' - Handle termination signals... */ -diff -up cups-1.4b2-svn8404/config.h.in.avahi cups-1.4b2-svn8404/config.h.in ---- cups-1.4b2-svn8404/config.h.in.avahi 2009-02-19 17:56:47.000000000 +0000 -+++ cups-1.4b2-svn8404/config.h.in 2009-03-05 11:15:28.000000000 +0000 +diff -up cups-1.4rc1/config.h.in.avahi cups-1.4rc1/config.h.in +--- cups-1.4rc1/config.h.in.avahi 2009-05-14 21:48:55.000000000 +0100 ++++ cups-1.4rc1/config.h.in 2009-07-29 14:01:36.575271644 +0100 @@ -344,6 +344,13 @@ @@ -809,9 +792,9 @@ diff -up cups-1.4b2-svn8404/config.h.in. * Do we have ? */ -diff -up cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4.avahi cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4 ---- cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4.avahi 2009-02-19 17:56:46.000000000 +0000 -+++ cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4 2009-03-05 11:15:28.000000000 +0000 +diff -up cups-1.4rc1/config-scripts/cups-dnssd.m4.avahi cups-1.4rc1/config-scripts/cups-dnssd.m4 +--- cups-1.4rc1/config-scripts/cups-dnssd.m4.avahi 2009-02-10 17:05:35.000000000 +0000 ++++ cups-1.4rc1/config-scripts/cups-dnssd.m4 2009-07-29 14:01:36.575271644 +0100 @@ -27,6 +27,21 @@ AC_ARG_WITH(dnssd-includes, [ --with-dn DNSSDLIBS="" DNSSD_BACKEND="" @@ -834,74 +817,76 @@ diff -up cups-1.4b2-svn8404/config-scrip if test x$enable_dnssd != xno; then AC_CHECK_HEADER(dns_sd.h, [ case "$uname" in -diff -up cups-1.4b2-svn8404/cups/http-support.c.avahi cups-1.4b2-svn8404/cups/http-support.c ---- cups-1.4b2-svn8404/cups/http-support.c.avahi 2009-02-19 17:56:46.000000000 +0000 -+++ cups-1.4b2-svn8404/cups/http-support.c 2009-03-05 11:15:28.000000000 +0000 -@@ -53,6 +53,11 @@ - #ifdef HAVE_DNSSD +diff -up cups-1.4rc1/cups/http-support.c.avahi cups-1.4rc1/cups/http-support.c +--- cups-1.4rc1/cups/http-support.c.avahi 2009-04-30 23:15:05.000000000 +0100 ++++ cups-1.4rc1/cups/http-support.c 2009-07-29 14:01:36.577396783 +0100 +@@ -54,6 +54,11 @@ # include + # include #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+# include -+# include -+# include ++# include ++# include ++# include +#endif /* HAVE_AVAHI */ /* -@@ -119,6 +124,27 @@ static void resolve_callback(DNSService +@@ -120,6 +125,24 @@ static void resolve_callback(DNSService void *context); #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+static void -+avahi_resolve_uri_client_callback (AvahiClient *client, -+ AvahiClientState state, -+ void *simple_poll); -+static void -+avahi_resolve_uri_resolver_callback (AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context); ++static void avahi_resolve_uri_client_cb(AvahiClient *client, ++ AvahiClientState state, ++ void *simple_poll); ++static void avahi_resolve_uri_resolver_cb(AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context); +#endif /* HAVE_AVAHI */ -+ /* * 'httpAssembleURI()' - Assemble a uniform resource identifier from its -@@ -1343,11 +1369,22 @@ _httpResolveURI( +@@ -1348,15 +1371,26 @@ _httpResolveURI( if (strstr(hostname, "._tcp")) { +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) ++ char *regtype, /* Pointer to type in hostname */ ++ *domain; /* Pointer to domain in hostname */ #ifdef HAVE_DNSSD - DNSServiceRef ref; /* DNS-SD service reference */ -+ _http_uribuf_t uribuf; /* URI buffer */ -+#else + DNSServiceRef ref, /* DNS-SD master service reference */ + domainref, /* DNS-SD service reference for domain */ + localref; /* DNS-SD service reference for .local */ + int domainsent = 0; /* Send the domain resolve? */ +- char *regtype, /* Pointer to type in hostname */ +- *domain; /* Pointer to domain in hostname */ + _http_uribuf_t uribuf; /* URI buffer */ + struct pollfd polldata; /* Polling data */ ++#else /* HAVE_AVAHI */ + AvahiSimplePoll *simple_poll; + AvahiClient *client; + int error; -+ struct ++ struct + { + AvahiSimplePoll *poll; + _http_uribuf_t uribuf; -+ } user_data; ++ } user_data; +#endif /* HAVE_DNSSD */ - char *regtype, /* Pointer to type in hostname */ - *domain; /* Pointer to domain in hostname */ -- _http_uribuf_t uribuf; /* URI buffer */ - /* - * Separate the hostname into service name, registration type, and domain... -@@ -1385,8 +1422,13 @@ _httpResolveURI( + + if (logit) +@@ -1394,8 +1428,13 @@ _httpResolveURI( if (domain) *domain++ = '\0'; @@ -915,30 +900,30 @@ diff -up cups-1.4b2-svn8404/cups/http-su resolved_uri[0] = '\0'; -@@ -1400,6 +1442,7 @@ _httpResolveURI( - _cupsLangPuts(stderr, _("INFO: Looking for printer...\n")); - } +@@ -1411,6 +1450,7 @@ _httpResolveURI( + + uri = NULL; +#ifdef HAVE_DNSSD - if (DNSServiceResolve(&ref, 0, 0, hostname, regtype, domain, - resolve_callback, - &uribuf) == kDNSServiceErr_NoError) -@@ -1414,17 +1457,49 @@ _httpResolveURI( + if (DNSServiceCreateConnection(&ref) == kDNSServiceErr_NoError) + { + localref = ref; +@@ -1457,6 +1497,36 @@ _httpResolveURI( + + DNSServiceRefDeallocate(ref); } - else - uri = NULL; -+#else ++#else /* HAVE_AVAHI */ + if ((simple_poll = avahi_simple_poll_new ()) != NULL) + { + if ((client = avahi_client_new (avahi_simple_poll_get (simple_poll), -+ 0, avahi_resolve_uri_client_callback, ++ 0, avahi_resolve_uri_client_cb, + &simple_poll, &error)) != NULL) + { + user_data.poll = simple_poll; + if (avahi_service_resolver_new (client, AVAHI_IF_UNSPEC, + AVAHI_PROTO_UNSPEC, hostname, + regtype, domain, AVAHI_PROTO_UNSPEC, 0, -+ avahi_resolve_uri_resolver_callback, ++ avahi_resolve_uri_resolver_cb, + &user_data) != NULL) + { + avahi_simple_poll_loop (simple_poll); @@ -949,8 +934,6 @@ diff -up cups-1.4b2-svn8404/cups/http-su + + if (resolved_uri[0]) + uri = resolved_uri; -+ else -+ uri = NULL; + } + + avahi_client_free (client); @@ -958,10 +941,13 @@ diff -up cups-1.4b2-svn8404/cups/http-su + + avahi_simple_poll_free (simple_poll); + } -+#endif ++#endif /* HAVE_DNSSD */ if (logit) + { +@@ -1468,13 +1538,13 @@ _httpResolveURI( fputs("STATE: -connecting-to-device\n", stderr); + } -#else +#else /* HAVE_DNSSD || HAVE_AVAHI */ @@ -975,15 +961,15 @@ diff -up cups-1.4b2-svn8404/cups/http-su if (logit && !uri) _cupsLangPuts(stderr, _("Unable to find printer!\n")); -@@ -1629,6 +1704,105 @@ resolve_callback( +@@ -1679,6 +1749,105 @@ resolve_callback( } #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI +static void -+avahi_resolve_uri_client_callback (AvahiClient *client, -+ AvahiClientState state, -+ void *simple_poll) ++avahi_resolve_uri_client_cb (AvahiClient *client, ++ AvahiClientState state, ++ void *simple_poll) +{ + DEBUG_printf(("avahi_resolve_uri_client_callback(client=%p, state=%d, " + "simple_poll=%p)\n", client, state, simple_poll)); @@ -997,19 +983,19 @@ diff -up cups-1.4b2-svn8404/cups/http-su +} + +static void -+avahi_resolve_uri_resolver_callback (AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_resolve_uri_resolver_cb (AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context) +{ + const char *scheme; /* URI scheme */ + char rp[256]; /* Remote printer */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.493 retrieving revision 1.494 diff -u -p -r1.493 -r1.494 --- cups.spec 29 Jul 2009 12:58:22 -0000 1.493 +++ cups.spec 29 Jul 2009 13:47:30 -0000 1.494 @@ -220,7 +220,7 @@ module. %patch35 -p1 -b .socket-snmp %patch36 -p1 -b .cups-get-classes %patch37 -p1 -b .str3272 -#%patch38 -p1 -b .avahi +%patch38 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -514,6 +514,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 +- Fixed Avahi support in the dnssd backend (bug #513888). - Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking From pkgdb at fedoraproject.org Wed Jul 29 13:57:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:57:10 +0000 Subject: [pkgdb] flpsed ownership updated Message-ID: <20090729135710.58C4B10F882@bastion2.fedora.phx.redhat.com> Package flpsed in Fedora devel is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/flpsed From pkgdb at fedoraproject.org Wed Jul 29 13:57:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:57:25 +0000 Subject: [pkgdb] flpsed ownership updated Message-ID: <20090729135725.43A9F10F89D@bastion2.fedora.phx.redhat.com> Package flpsed in Fedora 10 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/flpsed From pkgdb at fedoraproject.org Wed Jul 29 13:57:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:57:21 +0000 Subject: [pkgdb] flpsed ownership updated Message-ID: <20090729135721.8B6A610F89B@bastion2.fedora.phx.redhat.com> Package flpsed in Fedora 9 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/flpsed From pkgdb at fedoraproject.org Wed Jul 29 13:57:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 13:57:27 +0000 Subject: [pkgdb] flpsed ownership updated Message-ID: <20090729135727.3CCDD10F8A1@bastion2.fedora.phx.redhat.com> Package flpsed in Fedora 11 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/flpsed From hadess at fedoraproject.org Wed Jul 29 13:57:54 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 13:57:54 +0000 (UTC) Subject: rpms/bluez/devel 0001-Add-rfkill-plugin.patch, NONE, 1.1 bluez.spec, 1.83, 1.84 Message-ID: <20090729135754.EE95C11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4816 Modified Files: bluez.spec Added Files: 0001-Add-rfkill-plugin.patch Log Message: * Wed Jul 29 2009 Bastien Nocera 4.46-3 - Add rfkill plugin to restore the state of the adapters after coming back from a blocked adapter 0001-Add-rfkill-plugin.patch: plugins/Makefile.am | 3 plugins/rfkill.c | 199 ++++++++++++++++++++++++++++++++++++++++++++++++++++ src/adapter.c | 23 ++++-- src/adapter.h | 2 4 files changed, 219 insertions(+), 8 deletions(-) --- NEW FILE 0001-Add-rfkill-plugin.patch --- >From bf8b7c07542bd7acb4f9f98ba2165475f0ad9d65 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 28 Jul 2009 17:25:34 +0100 Subject: [PATCH] Add rfkill plugin The plugin allows us to restore the previous power state on adapters when the killswitch on them has been unblocked. --- plugins/Makefile.am | 3 + plugins/rfkill.c | 199 +++++++++++++++++++++++++++++++++++++++++++++++++++ src/adapter.c | 23 ++++-- src/adapter.h | 1 + 4 files changed, 219 insertions(+), 7 deletions(-) create mode 100644 plugins/rfkill.c diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 9d9f970..9ba8180 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -15,6 +15,9 @@ endif builtin_modules += hciops builtin_sources += hciops.c +builtin_modules += rfkill +builtin_sources += rfkill.c + if NETLINK plugin_LTLIBRARIES += netlink.la netlink_la_LIBADD = @NETLINK_LIBS@ diff --git a/plugins/rfkill.c b/plugins/rfkill.c new file mode 100644 index 0000000..fad8b47 --- /dev/null +++ b/plugins/rfkill.c @@ -0,0 +1,199 @@ +/* + * + * BlueZ - Bluetooth protocol stack for Linux + * + * Copyright (C) 2009 Bastien Nocera + * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. + * + * Author: + * Bastien Nocera , based on code by + * Johannes Berg + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +#include "hcid.h" +#include "plugin.h" +#include "logging.h" + +#include "manager.h" +#include "adapter.h" +#include "device.h" + +enum rfkill_type { + RFKILL_TYPE_ALL = 0, + RFKILL_TYPE_WLAN, + RFKILL_TYPE_BLUETOOTH, + RFKILL_TYPE_UWB, + RFKILL_TYPE_WIMAX, + RFKILL_TYPE_WWAN, +}; + +enum rfkill_operation { + RFKILL_OP_ADD = 0, + RFKILL_OP_DEL, + RFKILL_OP_CHANGE, + RFKILL_OP_CHANGE_ALL, +}; + +struct rfkill_event { + uint32_t idx; + uint8_t type; + uint8_t op; + uint8_t soft; + uint8_t hard; +}; + +static char *get_name(__u32 idx) +{ + char *filename, *name, *pos; + + filename = g_strdup_printf("/sys/class/rfkill/rfkill%u/name", idx); + if (g_file_get_contents(filename, &name, NULL, NULL) == FALSE) { + g_free(filename); + return NULL; + } + + g_free(filename); + + pos = strchr(name, '\n'); + if (pos) + *pos = '\0'; + + return name; +} + +static gboolean rfkill_event(GIOChannel *chan, + GIOCondition cond, gpointer data) +{ + unsigned char buf[32]; + struct rfkill_event *event = (void *) buf; + char *sysname; + gboolean blocked; + gsize len; + GIOError err; + + if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR)) + return FALSE; + + memset(buf, 0, sizeof(buf)); + + err = g_io_channel_read(chan, (gchar *) buf, sizeof(buf), &len); + if (err) { + if (err == G_IO_ERROR_AGAIN) + return TRUE; + return FALSE; + } + + if (len != sizeof(struct rfkill_event)) + return TRUE; + + debug("idx %u type %u op %u soft %u hard %u", + event->idx, event->type, event->op, + event->soft, event->hard); + + blocked = (event->soft || event->hard) ? TRUE : FALSE; + /* We already disable devices correctly when rfkilled */ + if (blocked) + return TRUE; + + sysname = get_name(event->idx); + if (sysname == NULL) + return TRUE; + if (g_str_has_prefix(sysname, "hci") == FALSE) { + debug("Ignoring unblocked killswitch '%s'", sysname); + g_free(sysname); + return TRUE; + } + + switch (event->type) { + case RFKILL_TYPE_ALL: + case RFKILL_TYPE_BLUETOOTH: { + struct btd_adapter *adapter; + int id; + + id = atoi(sysname + strlen("hci")); + adapter = manager_find_adapter_by_id(id); + if (adapter) + adapter_set_powered(adapter, TRUE); + break; + } + default: + break; + } + + g_free(sysname); + + return TRUE; +} + +static GIOChannel *channel = NULL; + +static int rfkill_init(void) +{ + int fd; + + debug("Init rfkill plugin"); + + if (main_opts.remember_powered == FALSE) + return 0; + + fd = open("/dev/rfkill", O_RDWR); + if (fd < 0) { + debug("No rfkill support in the kernel"); + return -EIO; + } + + channel = g_io_channel_unix_new(fd); + g_io_channel_set_close_on_unref(channel, TRUE); + + g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR, + rfkill_event, NULL); + + return 0; +} + +static void rfkill_exit(void) +{ + debug("Cleanup rfkill plugin"); + + if (channel == NULL) + return; + + g_io_channel_shutdown(channel, TRUE, NULL); + g_io_channel_unref(channel); + + channel = NULL; +} + +BLUETOOTH_PLUGIN_DEFINE(rfkill, VERSION, + BLUETOOTH_PLUGIN_PRIORITY_DEFAULT, rfkill_init, rfkill_exit) diff --git a/src/adapter.c b/src/adapter.c index 06640e7..06c3018 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -483,21 +483,30 @@ done: return 0; } -static DBusMessage *set_powered(DBusConnection *conn, DBusMessage *msg, - gboolean powered, void *data) +int adapter_set_powered(struct btd_adapter *adapter, gboolean powered) { - struct btd_adapter *adapter = data; uint8_t mode; - int err; mode = powered ? get_mode(&adapter->bdaddr, "on") : MODE_OFF; if (mode == adapter->mode) - return dbus_message_new_method_return(msg); + return -EALREADY; - err = set_mode(adapter, mode); - if (err < 0) + return set_mode(adapter, mode); +} + +static DBusMessage *set_powered(DBusConnection *conn, DBusMessage *msg, + gboolean powered, void *data) +{ + struct btd_adapter *adapter = data; + int err; + + err = adapter_set_powered(adapter, powered); + if (err < 0) { + if (err == -EALREADY) + return dbus_message_new_method_return(msg); return failed_strerror(msg, -err); + } return dbus_message_new_method_return(msg); } diff --git a/src/adapter.h b/src/adapter.h index d34fb80..fa02d5d 100644 --- a/src/adapter.h +++ b/src/adapter.h @@ -110,6 +110,7 @@ void adapter_get_address(struct btd_adapter *adapter, bdaddr_t *bdaddr); void adapter_set_state(struct btd_adapter *adapter, int state); int adapter_get_state(struct btd_adapter *adapter); gboolean adapter_is_ready(struct btd_adapter *adapter); +int adapter_set_powered(struct btd_adapter *adapter, gboolean powered); struct remote_dev_info *adapter_search_found_devices(struct btd_adapter *adapter, struct remote_dev_info *match); void adapter_update_found_devices(struct btd_adapter *adapter, bdaddr_t *bdaddr, -- 1.6.2.5 Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- bluez.spec 24 Jul 2009 18:15:30 -0000 1.83 +++ bluez.spec 29 Jul 2009 13:57:54 -0000 1.84 @@ -1,7 +1,7 @@ Summary: Bluetooth utilities Name: bluez Version: 4.46 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz @@ -24,6 +24,8 @@ Patch3: bluez-activate-wacom-mode2.patch Patch4: bluez-socket-mobile-cf-connection-kit.patch # http://thread.gmane.org/gmane.linux.bluez.kernel/2396 Patch5: 0001-Add-sixaxis-cable-pairing-plugin.patch +# http://thread.gmane.org/gmane.linux.bluez.kernel/2981 +Patch6: 0001-Add-rfkill-plugin.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://www.bluez.org/ @@ -130,6 +132,7 @@ This includes hidd, dund and pand. %patch3 -p1 -b .wacom %patch4 -p1 -b .socket-mobile %patch5 -p1 -b .cable-pairing +%patch6 -p1 -b .rfkill %build libtoolize -f -c @@ -270,6 +273,10 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Wed Jul 29 2009 Bastien Nocera 4.46-3 +- Add rfkill plugin to restore the state of the adapters + after coming back from a blocked adapter + * Fri Jul 24 2009 Fedora Release Engineering - 4.46-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dwalsh at fedoraproject.org Wed Jul 29 13:58:16 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 29 Jul 2009 13:58:16 +0000 (UTC) Subject: rpms/policycoreutils/devel policycoreutils.spec,1.615,1.616 Message-ID: <20090729135816.4406911C00CE@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/policycoreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5023 Modified Files: policycoreutils.spec Log Message: * Sun Jul 29 2009 Dan Walsh 2.0.68-1 - Fix location of man pages - Update to upstream * Modify setfiles to exclude mounts without seclabel option in /proc/mounts on kernels >= 2.6.30 from Thomas Liu. * Re-enable disable_dontaudit rules upon semodule -B from Christopher Pardy and Dan Walsh. * setfiles converted to fts from Thomas Liu. Index: policycoreutils.spec =================================================================== RCS file: /cvs/extras/rpms/policycoreutils/devel/policycoreutils.spec,v retrieving revision 1.615 retrieving revision 1.616 diff -u -p -r1.615 -r1.616 --- policycoreutils.spec 29 Jul 2009 13:44:03 -0000 1.615 +++ policycoreutils.spec 29 Jul 2009 13:58:16 -0000 1.616 @@ -122,7 +122,6 @@ The policycoreutils-python package conta %dir /var/lib/sepolgen %dir /var/lib/selinux /var/lib/sepolgen/perm_map -%dir %{_datadir}/sandbox %{_mandir}/man1/audit2allow.1* %{_mandir}/ru/man1/audit2allow.1* %{_mandir}/man1/audit2why.1* From hadess at fedoraproject.org Wed Jul 29 14:07:51 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 14:07:51 +0000 (UTC) Subject: rpms/bluez/devel 0001-Add-rfkill-plugin.patch,1.1,1.2 Message-ID: <20090729140751.53B5A11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9010 Modified Files: 0001-Add-rfkill-plugin.patch Log Message: Try and fix build on newer systems 0001-Add-rfkill-plugin.patch: plugins/Makefile.am | 3 plugins/rfkill.c | 199 ++++++++++++++++++++++++++++++++++++++++++++++++++++ src/adapter.c | 23 ++++-- src/adapter.h | 2 4 files changed, 219 insertions(+), 8 deletions(-) Index: 0001-Add-rfkill-plugin.patch =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/0001-Add-rfkill-plugin.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 0001-Add-rfkill-plugin.patch 29 Jul 2009 13:57:54 -0000 1.1 +++ 0001-Add-rfkill-plugin.patch 29 Jul 2009 14:07:51 -0000 1.2 @@ -108,7 +108,7 @@ index 0000000..fad8b47 + uint8_t hard; +}; + -+static char *get_name(__u32 idx) ++static char *get_name(uint32_t idx) +{ + char *filename, *name, *pos; + From rvinyard at fedoraproject.org Wed Jul 29 14:09:44 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Wed, 29 Jul 2009 14:09:44 +0000 (UTC) Subject: rpms/clips/devel clips.spec, 1.13, 1.14 DR0873.txt, 1.1, NONE FunctionContext.zip, 1.1, NONE clips-6.24-linux.patch, 1.1, NONE clips-6.24-time-sysdep.c.patch, 1.1, NONE clips-init.el, 1.1, NONE clips-mode.el, 1.1, NONE inf-clips.el, 1.1, NONE objrtmch.c, 1.1, NONE xclips.desktop, 1.2, NONE xclips.png, 1.1, NONE Message-ID: <20090729140944.4067711C00CE@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/clips/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9376 Modified Files: clips.spec Removed Files: DR0873.txt FunctionContext.zip clips-6.24-linux.patch clips-6.24-time-sysdep.c.patch clips-init.el clips-mode.el inf-clips.el objrtmch.c xclips.desktop xclips.png Log Message: Removing patches and other items that are now in release Index: clips.spec =================================================================== RCS file: /cvs/pkgs/rpms/clips/devel/clips.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- clips.spec 24 Jul 2009 19:05:24 -0000 1.13 +++ clips.spec 29 Jul 2009 14:09:43 -0000 1.14 @@ -1,42 +1,19 @@ -Summary: CLIPS language for developing expert systems +%define svnver .20090722svn +Summary: Language for developing expert systems Name: clips -Version: 6.24 -Release: 28%{?dist} +Version: 6.30.0 +Release: 0.1%{?svnver}%{?dist} Url: http://clipsrules.sourceforge.net License: GPLv2 Group: Development/Tools -Source0: http://downloads.sourceforge.net/clipsrules/clips_core_source_624.tar.Z -Source1: http://downloads.sourceforge.net/clipsrules/x_windows_ide_source_624.tar.Z -Source2: http://downloads.sourceforge.net/clipsrules/examples_624.tar.Z -Source3: abstract.pdf -Source4: http://clipsrules.sourceforge.net/documentation/v624/apg.pdf -Source5: http://clipsrules.sourceforge.net/documentation/other/arch5-1.pdf -Source6: http://clipsrules.sourceforge.net/documentation/v624/bpg.pdf -Source7: http://clipsrules.sourceforge.net/documentation/v624/ig.pdf -Source8: http://clipsrules.sourceforge.net/documentation/v624/ug.pdf -Source9: http://clipsrules.sourceforge.net/documentation/other/3CCP.pdf -Source10: xclips.png -Source11: clips-init.el -Source12: clips-mode.el -Source13: inf-clips.el -Source14: objrtmch.c -Source15: FunctionContext.zip -Source16: DR0873.txt -Source17: xclips.desktop -# The following source was generated with the following commands: -# mkdir html -# cd html -# for i in apg.htm bpg.htm ig.htm ug.htm; do -# wget -p -nH --cut-dirs=2 --convert-links http://clipsrules.sourceforge.net/documentation/v624/$i -# dos2unix $i -# done -# cd .. -# tar -cjf clips-doc-html.tar.bz2 html -Source18: clips-doc-html.tar.bz2 -Patch0: clips-6.24-linux.patch -Patch1: clips-6.24-time-sysdep.c.patch +Source0: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}.tar.bz2 +Source1: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}-doc.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 BuildRequires: ncurses-devel +%else +BuildRequires: libtermcap-devel +%endif BuildRequires: libXt-devel libXext-devel libXmu-devel libXaw-devel BuildRequires: xorg-x11-server-Xorg xorg-x11-proto-devel xorg-x11-xbitmaps BuildRequires: desktop-file-utils @@ -45,21 +22,30 @@ BuildRequires: pkgconfig BuildRequires: ImageMagick %description -CLIPS is a productive development and delivery expert system tool which -provides a complete environment for the construction of rule and/or object -based expert systems. Created in 1985 by NASA, CLIPS is now widely used -throughout the government, industry, and academia. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. This package provides the CLIPS command line environment and the clips library. %package libs -Summary: Run-time libraries for CLIPS applications +Summary: Run-time C libraries for CLIPS applications Group: System Environment/Libraries %description libs This package contains the run-time libraries needed for CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package devel Summary: C headers for developing programs that will embed CLIPS Group: Development/Libraries @@ -70,8 +56,15 @@ Requires: ncurses-devel pkgconfig This package contains the libraries and header files needed for developing embedded CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package xclips -Summary: X interface to CLIPS +Summary: X interface to the CLIPS expert system Group: Development/Tools Requires: %{name} = %{version}-%{release} Requires: hicolor-icon-theme @@ -79,14 +72,31 @@ Requires: hicolor-icon-theme %description xclips X interface to CLIPS. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package doc -Summary: Documentation for CLIPS +Summary: Documentation and examples for the CLIPS expert system Group: Documentation +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif %description doc This package contains documentation for the CLIPS library as well as numerous examples. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + The following are some of the documents in this package: - Proceedings of the Third Conference on CLIPS, 1994 (3CCP.pdf) - Application abstracts (abstract.pdf) @@ -96,58 +106,53 @@ The following are some of the documents - CLIPS Architecture Manual (arch5-1.pdf) - CLIPS Users Guide (ug.pdf,ug.htm) +%package emacs +Summary: EMACS add-ons for the CLIPS expert system +Group: Development/Tools +Requires: emacs-common +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif + +%description emacs +This package contains CLIPS emacs scripts. + +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. %prep -%setup -q -a 1 -a 2 -a 15 -a 18 -c -mv x-prjct/xinterface clipssrc/ -mv x-prjct/color clipssrc/ -mv clipssrc/clipssrc clipssrc/clips -%patch0 -p0 -%patch1 -p0 -#move in the function context patch files -mv envrnmnt.h clipssrc/clips -mv envrnmnt.c clipssrc/clips -mv evaluatn.c clipssrc/clips -mv extnfunc.h clipssrc/clips -mv extnfunc.c clipssrc/clips -#move in the object-pattern-match-delay bug fix -cp %{SOURCE14} clipssrc/clips -chmod a-x clipssrc/*/*.h clipssrc/*/*.c -chmod a-x Examples/*.clp -chmod a-x Examples/Cholesterol/* -chmod u+x clipssrc/autogen.sh -for i in %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE16}; do - cp $i . -done +%setup -q -n %{name}-%{version}%{?svnver} -a 1 +%{__mv} %{name}-%{version}%{?svnver}-doc/* documentation/ %build -cd clipssrc -./autogen.sh %configure --disable-static %{__make} %{?_smp_mflags} %install -cd clipssrc %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} INSTALL="%{__install} -p" find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' -%{__install} -p --mode=0644 -D %{SOURCE11} %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{__install} -p --mode=0644 -D %{SOURCE12} %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el -%{__install} -p --mode=0644 -D %{SOURCE13} %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el +%{__install} -p --mode=0644 -D documentation/clips-init.el %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{__install} -p --mode=0644 -D documentation/clips-mode.el %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el +%{__install} -p --mode=0644 -D documentation/inf-clips.el %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el # create icons # create 16x16, 32x32, 64x64, 128x128 icons for s in 16 32 64 128 ; do %{__mkdir_p} %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/ convert -scale ${s}x${s} \ - %{SOURCE10} \ + x_window_system/xinterface/xclips.png \ %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/xclips.png done desktop-file-install --vendor fedora \ --dir %{buildroot}%{_datadir}/applications \ --add-category X-Fedora \ - %{SOURCE17} + x_window_system/xinterface/xclips.desktop %clean %{__rm} -rf %{buildroot} @@ -172,18 +177,13 @@ fi %files %defattr(-,root,root,-) %{_bindir}/clips -%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{_datadir}/emacs/site-lisp/clips-mode.el -%{_datadir}/emacs/site-lisp/inf-clips.el %files libs %defattr(-,root,root,-) %{_libdir}/*.so.* %{_datadir}/%{name}/ -%doc clipssrc/readme.txt -%doc clipssrc/COPYING_LINUX_PATCH -%doc clipssrc/README_LINUX_PATCH -%doc DR0873.txt +%doc COPYING_CLIPS_LINUX +%doc README_CLIPS_LINUX %files devel %defattr(-,root,root,-) @@ -200,13 +200,28 @@ fi %files doc %defattr(-,root,root,-) -%doc Examples/ -%doc abstract.pdf arch5-1.pdf bpg.pdf ug.pdf 3CCP.pdf -%doc apg.pdf -%doc ig.pdf -%doc html/ +%doc examples/ +%doc documentation/3CCP.pdf +%doc documentation/abstract.pdf +%doc documentation/apg.pdf +%doc documentation/architecture5-1.pdf +%doc documentation/bpg.pdf +%doc documentation/ig.pdf +%doc documentation/ug.pdf +%doc documentation/html/ + +%files emacs +%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{_datadir}/emacs/site-lisp/clips-mode.el +%{_datadir}/emacs/site-lisp/inf-clips.el %changelog +* Mon Jul 27 2009 Rick L Vinyard Jr 6.30.0-0.1.20090722svn +- New release +- Removed multiple sources and patches that are in new release +- Improved summaries and descriptions +- Added clips-emacs subpackage + * Fri Jul 24 2009 Fedora Release Engineering - 6.24-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- DR0873.txt DELETED --- --- FunctionContext.zip DELETED --- --- clips-6.24-linux.patch DELETED --- --- clips-6.24-time-sysdep.c.patch DELETED --- --- clips-init.el DELETED --- --- clips-mode.el DELETED --- --- inf-clips.el DELETED --- --- objrtmch.c DELETED --- --- xclips.desktop DELETED --- From rvinyard at fedoraproject.org Wed Jul 29 14:11:03 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Wed, 29 Jul 2009 14:11:03 +0000 (UTC) Subject: rpms/clips/devel .cvsignore,1.5,1.6 sources,1.7,1.8 Message-ID: <20090729141103.E414111C00CE@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/clips/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9684 Modified Files: .cvsignore sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clips/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Mar 2009 16:43:44 -0000 1.5 +++ .cvsignore 29 Jul 2009 14:11:03 -0000 1.6 @@ -1,12 +1,2 @@ -abstract.pdf -clips_core_source_624.tar.Z -x_windows_ide_source_624.tar.Z -examples_624.tar.Z -apg.pdf -arch5-1.pdf -bpg.pdf -ig.pdf -ug.pdf -3CCP.pdf -clips-doc-html.tar.bz2 -clips-6.24-linux.patch +clips-6.30.0.20090722svn.tar.bz2 +clips-6.30.0.20090722svn-doc.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clips/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Mar 2009 16:43:44 -0000 1.7 +++ sources 29 Jul 2009 14:11:03 -0000 1.8 @@ -1,12 +1,2 @@ -cd3ecddc4e538b8af0e5cf08ab7fd89c abstract.pdf -ccba9d912375e57a1b7d9eba12da4198 clips_core_source_624.tar.Z -1bb0d0e684742188b8c14912c26f12cb x_windows_ide_source_624.tar.Z -f5c02b997199f3ede779b8502af2ba09 examples_624.tar.Z -fae2267d96fb95603345e91c9990caaa apg.pdf -9a13d2ed18fe6ab67902d5bce29957cb arch5-1.pdf -63891971aa782dc67c2de0579647247e bpg.pdf -89beca5caa08b30d8285cca7f1df1d26 ig.pdf -44e54697a8acf3509bc4ca51d88b65bd ug.pdf -a6a60733af08f9e9e6d0928272ad4dd9 3CCP.pdf -99f463e8a2536198da37e9dc73304322 clips-doc-html.tar.bz2 -0cb3238a5be85211658ba7ca47257bf8 clips-6.24-linux.patch +96743a6cba5a88f72a4d652d4c917802 clips-6.30.0.20090722svn.tar.bz2 +40f6d46315d89ea0b3701b4433d58840 clips-6.30.0.20090722svn-doc.tar.bz2 From hguemar at fedoraproject.org Wed Jul 29 14:13:17 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 14:13:17 +0000 (UTC) Subject: rpms/sonata/devel sonata.spec,1.23,1.24 Message-ID: <20090729141317.9233711C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/sonata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10192 Modified Files: sonata.spec Log Message: fixed patch name Index: sonata.spec =================================================================== RCS file: /cvs/extras/rpms/sonata/devel/sonata.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sonata.spec 27 Jul 2009 19:07:42 -0000 1.23 +++ sonata.spec 29 Jul 2009 14:13:17 -0000 1.24 @@ -2,13 +2,13 @@ Name: sonata Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia License: GPLv3+ URL: http://sonata.berlios.de/ Source0: http://download.berlios.de/sonata/sonata-%{version}.tar.bz2 -Patch0: sonata-1.2-nocleaning.patch +Patch0: sonata-1.6.2-nocleaning.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: pygtk2-devel gtk2-devel @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar - 1.6.2-2 +- Fixed patch name + * Mon Jul 27 2009 Ha?kel Gu?mar - 1.6.2-1 - Updated to 1.6.2 From twaugh at fedoraproject.org Wed Jul 29 13:48:34 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 29 Jul 2009 13:48:34 +0000 (UTC) Subject: rpms/cups/devel cups-avahi.patch,1.4,1.5 cups.spec,1.490,1.491 Message-ID: <20090729134834.1B01B11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1296 Modified Files: cups-avahi.patch cups.spec Log Message: * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 - Fixed Avahi support in the dnssd backend (bug #513888). cups-avahi.patch: backend/dnssd.c | 532 ++++++++++++++++++++++++++++++++++++------- config-scripts/cups-dnssd.m4 | 15 + config.h.in | 7 cups/http-support.c | 177 +++++++++++++- 4 files changed, 645 insertions(+), 86 deletions(-) Index: cups-avahi.patch =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups-avahi.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cups-avahi.patch 5 Mar 2009 13:31:30 -0000 1.4 +++ cups-avahi.patch 29 Jul 2009 13:48:33 -0000 1.5 @@ -1,35 +1,35 @@ -diff -up cups-1.4b2-svn8404/backend/dnssd.c.avahi cups-1.4b2-svn8404/backend/dnssd.c ---- cups-1.4b2-svn8404/backend/dnssd.c.avahi 2009-03-05 10:54:00.000000000 +0000 -+++ cups-1.4b2-svn8404/backend/dnssd.c 2009-03-05 11:15:28.000000000 +0000 -@@ -22,7 +22,8 @@ +diff -up cups-1.4rc1/backend/dnssd.c.avahi cups-1.4rc1/backend/dnssd.c +--- cups-1.4rc1/backend/dnssd.c.avahi 2009-07-29 14:00:53.767272320 +0100 ++++ cups-1.4rc1/backend/dnssd.c 2009-07-29 14:01:36.574271697 +0100 +@@ -22,6 +22,7 @@ * exec_backend() - Execute the backend that corresponds to the * resolved service name. * get_device() - Create or update a device. -- * query_callback() - Process query data. -+ * query_callback() - Process query data from DNS-SD -+ * find_device() - Process query data. ++* find_device() + * query_callback() - Process query data. + * sigterm_handler() - Handle termination signals... * unquote() - Unquote a name string. - */ - -@@ -32,7 +33,16 @@ +@@ -33,7 +34,18 @@ #include "backend-private.h" #include -#include ++#ifdef HAVE_DNSSD ++# include ++#endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+# include -+# include -+# include -+# include -+# include ++# include ++# include ++# include ++# include ++# include ++# include +#define kDNSServiceMaxDomainName AVAHI_DOMAIN_NAME_MAX -+#else -+# include -+#endif /* Avahi */ ++#endif /* HAVE_AVAHI */ /* -@@ -51,7 +61,9 @@ typedef enum +@@ -52,7 +64,9 @@ typedef enum typedef struct { @@ -39,34 +39,36 @@ diff -up cups-1.4b2-svn8404/backend/dnss char *name, /* Service name */ *domain, /* Domain name */ *fullName, /* Full name */ -@@ -67,6 +79,26 @@ typedef struct +@@ -64,6 +78,20 @@ typedef struct + sent; /* Did we list the device? */ + } cups_device_t; + ++typedef struct ++{ ++ char key[256]; ++ char value[256]; ++ ++#ifdef HAVE_DNSSD ++ const uint8_t *data; ++ const uint8_t *datanext; ++ const uint8_t *dataend; ++#else /* HAVE_AVAHI */ ++ AvahiStringList *txt; ++#endif /* HAVE_DNSSD */ ++} cups_txt_records_t; ++ + + /* + * Local globals... +@@ -77,6 +105,7 @@ static int job_canceled = 0; * Local functions... */ -+#ifdef HAVE_AVAHI -+/* -+ * Avahi callback functions -+ */ -+static void avahi_client_callback(AvahiClient *client, -+ AvahiClientState state, -+ void *context); -+static void avahi_browse_callback(AvahiServiceBrowser *browser, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiBrowserEvent event, -+ const char *serviceName, -+ const char *regtype, -+ const char *replyDomain, -+ AvahiLookupResultFlags flags, -+ void *context); -+#else -+/* -+ * libdns_sd callback functions -+ */ ++#ifdef HAVE_DNSSD static void browse_callback(DNSServiceRef sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, -@@ -82,12 +114,6 @@ static void browse_local_callback(DNSSe +@@ -92,12 +121,6 @@ static void browse_local_callback(DNSSe const char *regtype, const char *replyDomain, void *context); @@ -79,56 +81,133 @@ diff -up cups-1.4b2-svn8404/backend/dnss static void query_callback(DNSServiceRef sdRef, DNSServiceFlags flags, uint32_t interfaceIndex, -@@ -96,7 +122,31 @@ static void query_callback(DNSServiceRe +@@ -106,9 +129,111 @@ static void query_callback(DNSServiceRe uint16_t rrclass, uint16_t rdlen, const void *rdata, uint32_t ttl, void *context); -+#endif ++#endif /* HAVE_DNSSD */ ++#ifdef HAVE_AVAHI ++static void avahi_client_callback (AvahiClient *client, ++ AvahiClientState state, ++ void *context); ++static void avahi_browse_callback (AvahiServiceBrowser *browser, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiBrowserEvent event, ++ const char *serviceName, ++ const char *regtype, ++ const char *replyDomain, ++ AvahiLookupResultFlags flags, ++ void *context); ++#endif /* HAVE_AVAHI */ + -+static cups_device_t *find_device (cups_array_t *devices, -+ cups_device_t *key, -+ const char *priority, size_t priority_len, -+ const char *mfg, size_t mfg_len, -+ const char *mdl, size_t mdl_len, -+ const char *product, size_t product_len, -+ const char *ty, size_t ty_len, -+ const char *printer_type, -+ size_t printer_type_len); ++static cups_device_t * find_device (cups_array_t *devices, ++ cups_txt_records_t *txt, ++ cups_device_t *dkey); +static int compare_devices(cups_device_t *a, cups_device_t *b); +static void exec_backend(char **argv); +static cups_device_t *get_device(cups_array_t *devices, + const char *serviceName, + const char *regtype, + const char *replyDomain); + static void sigterm_handler(int sig); static void unquote(char *dst, const char *src, size_t dstsize); -+static int device_type(const char *regtype); -+ -+ + +#ifdef HAVE_AVAHI +static AvahiSimplePoll *simple_poll = NULL; +static int avahi_got_callback; +#endif /* HAVE_AVAHI */ - ++ ++ ++/* ++ * cups_txt_records_t access functions ++ */ ++static cups_txt_records_t * ++next_txt_record (cups_txt_records_t *txt) ++{ ++#ifdef HAVE_DNSSD ++ txt->data = txt->datanext; ++#else /* HAVE_AVAHI */ ++ txt->txt = avahi_string_list_get_next (txt->txt); ++ if (txt->txt == NULL) ++ return NULL; ++#endif /* HAVE_DNSSD */ ++ ++ return txt; ++} ++ ++static int ++parse_txt_record_pair (cups_txt_records_t *txt) ++{ ++#ifdef HAVE_DNSSD ++ uint8_t datalen; ++ uint8_t *data = txt->data; ++ char *ptr; ++ ++ /* ++ * Read a key/value pair starting with an 8-bit length. Since the ++ * length is 8 bits and the size of the key/value buffers is 256, we ++ * don't need to check for overflow... ++ */ ++ ++ datalen = *data++; ++ if (!datalen || (data + datalen) >= txt->dataend) ++ return NULL; ++ txt->datanext = data + datalen; ++ ++ for (ptr = txt->key; data < txt->datanext && *data != '='; data ++) ++ *ptr++ = *data; ++ *ptr = '\0'; ++ ++ if (data < txt->datanext && *data == '=') ++ { ++ data++; ++ ++ if (data < datanext) ++ memcpy (txt->value, data, txt->datanext - data); ++ value[txt->datanext - data] = '\0'; ++ } ++ else ++ return 1; ++#else /* HAVE_AVAHI */ ++ char *key, *value; ++ size_t len; ++ avahi_string_list_get_pair (txt->txt, &key, &value, &len); ++ if (len > sizeof (txt->value) - 1) ++ len = sizeof (txt->value) - 1; ++ ++ memcpy (txt->value, value, len); ++ txt->value[len] = '\0'; ++ len = strlen (key); ++ if (len > sizeof (txt->key) - 1) ++ len = sizeof (txt->key) - 1; ++ ++ memcpy (txt->key, key, len); ++ txt->key[len] = '\0'; ++ avahi_free (key); ++ avahi_free (value); ++#endif /* HAVE_AVAHI */ ++ ++ return 0; ++} /* -@@ -108,6 +158,16 @@ main(int argc, /* I - Number of comm + * 'main()' - Browse for printers. +@@ -119,6 +244,13 @@ main(int argc, /* I - Number of comm char *argv[]) /* I - Command-line arguments */ { const char *name; /* Backend name */ -+ int fd; /* Main file descriptor */ -+ fd_set input; /* Input set for select() */ -+ struct timeval timeout; /* Timeout for select() */ + cups_array_t *devices; /* Device array */ + cups_device_t *device; /* Current device */ + char uriName[1024]; /* Unquoted fullName for URI */ -+#ifdef HAVE_AVAHI -+ AvahiClient *client; -+ int error; -+#else ++#ifdef HAVE_DNSSD ++ int fd; /* Main file descriptor */ ++ fd_set input; /* Input set for select() */ ++ struct timeval timeout; /* Timeout for select() */ DNSServiceRef main_ref, /* Main service reference */ fax_ipp_ref, /* IPP fax service reference */ ipp_ref, /* IPP service reference */ -@@ -119,12 +179,7 @@ main(int argc, /* I - Number of comm +@@ -130,12 +262,11 @@ main(int argc, /* I - Number of comm pdl_datastream_ref, /* AppSocket service reference */ printer_ref, /* LPD service reference */ riousbprint_ref; /* Remote IO service reference */ @@ -138,11 +217,15 @@ diff -up cups-1.4b2-svn8404/backend/dnss - cups_array_t *devices; /* Device array */ - cups_device_t *device; /* Current device */ - char uriName[1024]; /* Unquoted fullName for URI */ -+#endif /* !HAVE_AVAHI */ - - - /* -@@ -164,6 +219,48 @@ main(int argc, /* I - Number of comm ++#endif /* HAVE_DNSSD */ ++#ifdef HAVE_AVAHI ++ AvahiClient *client; ++ int error; ++#endif /* HAVE_AVAHI */ + #if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET) + struct sigaction action; /* Actions for POSIX signals */ + #endif /* HAVE_SIGACTION && !HAVE_SIGSET */ +@@ -194,6 +325,49 @@ main(int argc, /* I - Number of comm * Browse for different kinds of printers... */ @@ -187,25 +270,36 @@ diff -up cups-1.4b2-svn8404/backend/dnss + AVAHI_PROTO_UNSPEC, + "_riousbprint._tcp", NULL, 0, + avahi_browse_callback, devices); -+#else ++#endif /* HAVE_AVAHI */ ++#ifdef HAVE_DNSSD if (DNSServiceCreateConnection(&main_ref) != kDNSServiceErr_NoError) { perror("ERROR: Unable to create service connection"); -@@ -215,6 +312,7 @@ main(int argc, /* I - Number of comm +@@ -245,6 +419,7 @@ main(int argc, /* I - Number of comm riousbprint_ref = main_ref; DNSServiceBrowse(&riousbprint_ref, kDNSServiceFlagsShareConnection, 0, "_riousbprint._tcp", NULL, browse_callback, devices); -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ /* * Loop until we are killed... -@@ -222,6 +320,25 @@ main(int argc, /* I - Number of comm +@@ -252,6 +427,9 @@ main(int argc, /* I - Number of comm - for (;;) + while (!job_canceled) { + int announce = 0; + -+#ifdef HAVE_AVAHI ++#ifdef HAVE_DNSSD + FD_ZERO(&input); + FD_SET(fd, &input); + +@@ -271,11 +449,35 @@ main(int argc, /* I - Number of comm + } + else + { ++ announce = 1; ++ } ++#else /* HAVE_AVAHI */ + int r; + avahi_got_callback = 0; + r = avahi_simple_poll_iterate (simple_poll, 1); @@ -221,17 +315,7 @@ diff -up cups-1.4b2-svn8404/backend/dnss + + if (avahi_got_callback) + announce = 1; -+#else - FD_ZERO(&input); - FD_SET(fd, &input); - -@@ -241,11 +358,19 @@ main(int argc, /* I - Number of comm - } - else - { -+ announce = 1; -+ } -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ + + if (announce) + { @@ -239,75 +323,198 @@ diff -up cups-1.4b2-svn8404/backend/dnss * Announce any devices we've found... */ -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD DNSServiceErrorType status; /* DNS query status */ -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ cups_device_t *best; /* Best matching device */ char device_uri[1024]; /* Device URI */ int count; /* Number of queries */ -@@ -258,6 +383,7 @@ main(int argc, /* I - Number of comm +@@ -285,6 +487,7 @@ main(int argc, /* I - Number of comm best = NULL, count = 0; device; device = (cups_device_t *)cupsArrayNext(devices)) -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD if (!device->ref && !device->sent) { /* -@@ -286,14 +412,19 @@ main(int argc, /* I - Number of comm +@@ -313,14 +516,18 @@ main(int argc, /* I - Number of comm count ++; } } - else if (!device->sent) + else -+#endif /* !HAVE_AVAHI */ -+ ++#endif /* HAVE_DNSSD */ + if (!device->sent) { -+#ifndef HAVE_AVAHI ++#ifdef HAVE_DNSSD /* * Got the TXT records, now report the device... */ DNSServiceRefDeallocate(device->ref); device->ref = 0; -+#endif /* !HAVE_AVAHI */ ++#endif /* HAVE_DNSSD */ if (!best) best = device; -@@ -301,11 +432,9 @@ main(int argc, /* I - Number of comm - strcasecmp(best->domain, device->domain)) - { - unquote(uriName, best->fullName, sizeof(uriName)); -- - httpAssembleURI(HTTP_URI_CODING_ALL, device_uri, sizeof(device_uri), - schemes[best->type], NULL, uriName, 0, - best->cups_shared ? "/cups" : "/"); -- - cupsBackendReport("network", device_uri, best->make_and_model, - best->name, NULL, NULL); - best->sent = 1; -@@ -325,11 +454,9 @@ main(int argc, /* I - Number of comm - if (best) - { - unquote(uriName, best->fullName, sizeof(uriName)); -- - httpAssembleURI(HTTP_URI_CODING_ALL, device_uri, sizeof(device_uri), - schemes[best->type], NULL, uriName, 0, - best->cups_shared ? "/cups" : "/"); -- - cupsBackendReport("network", device_uri, best->make_and_model, - best->name, NULL, NULL); - best->sent = 1; -@@ -339,6 +466,204 @@ main(int argc, /* I - Number of comm +@@ -372,6 +579,7 @@ main(int argc, /* I - Number of comm + * 'browse_callback()' - Browse devices. + */ + ++#ifdef HAVE_DNSSD + static void + browse_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -405,12 +613,14 @@ browse_callback( + + get_device((cups_array_t *)context, serviceName, regtype, replyDomain); + } ++#endif /* HAVE_DNSSD */ + + + /* + * 'browse_local_callback()' - Browse local devices. + */ + ++#ifdef HAVE_DNSSD + static void + browse_local_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -456,6 +666,7 @@ browse_local_callback( + device->fullName); + device->sent = 1; } ++#endif /* HAVE_DNSSD */ + + + /* +@@ -528,6 +739,32 @@ exec_backend(char **argv) /* I - Comman + exit(CUPS_BACKEND_STOP); + } + ++static int ++device_type (const char *regtype) ++{ ++#ifdef HAVE_AVAHI ++ if (!strcmp(regtype, "_ipp._tcp") || ++ !strcmp(regtype, "_ipp-tls._tcp")) ++ return (CUPS_DEVICE_IPP); ++ else if (!strcmp(regtype, "_fax-ipp._tcp")) ++ return (CUPS_DEVICE_FAX_IPP); ++ else if (!strcmp(regtype, "_printer._tcp")) ++ return (CUPS_DEVICE_PDL_DATASTREAM); ++#else ++ if (!strcmp(regtype, "_ipp._tcp.") || ++ !strcmp(regtype, "_ipp-tls._tcp.")) ++ return (CUPS_DEVICE_IPP); ++ else if (!strcmp(regtype, "_fax-ipp._tcp.")) ++ return (CUPS_DEVICE_FAX_IPP); ++ else if (!strcmp(regtype, "_printer._tcp.")) ++ return (CUPS_DEVICE_PRINTER); ++ else if (!strcmp(regtype, "_pdl-datastream._tcp.")) ++ return (CUPS_DEVICE_PDL_DATASTREAM); ++#endif /* HAVE_AVAHI */ ++ ++ return (CUPS_DEVICE_RIOUSBPRINT); ++} ++ + + /* + * 'get_device()' - Create or update a device. +@@ -550,18 +787,7 @@ get_device(cups_array_t *devices, /* I - + */ + + key.name = (char *)serviceName; +- +- if (!strcmp(regtype, "_ipp._tcp.") || +- !strcmp(regtype, "_ipp-tls._tcp.")) +- key.type = CUPS_DEVICE_IPP; +- else if (!strcmp(regtype, "_fax-ipp._tcp.")) +- key.type = CUPS_DEVICE_FAX_IPP; +- else if (!strcmp(regtype, "_printer._tcp.")) +- key.type = CUPS_DEVICE_PRINTER; +- else if (!strcmp(regtype, "_pdl-datastream._tcp.")) +- key.type = CUPS_DEVICE_PDL_DATASTREAM; +- else +- key.type = CUPS_DEVICE_RIOUSBPRINT; ++ key.type = device_type (regtype); + + for (device = cupsArrayFind(devices, &key); + device; +@@ -581,8 +807,14 @@ get_device(cups_array_t *devices, /* I - + free(device->domain); + device->domain = strdup(replyDomain); + ++#ifdef HAVE_DNSSD + DNSServiceConstructFullName(fullName, device->name, regtype, + replyDomain); ++#else /* HAVE_AVAHI */ ++ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, ++ serviceName, regtype, replyDomain); ++#endif /* HAVE_DNSSD */ ++ + free(device->fullName); + device->fullName = strdup(fullName); + } +@@ -609,7 +841,13 @@ get_device(cups_array_t *devices, /* I - + * Set the "full name" of this service, which is used for queries... + */ + ++#ifdef HAVE_DNSSD + DNSServiceConstructFullName(fullName, serviceName, regtype, replyDomain); ++#else /* HAVE_AVAHI */ ++ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, ++ serviceName, regtype, replyDomain); ++#endif /* HAVE_DNSSD */ ++ + device->fullName = strdup(fullName); + return (device); +@@ -620,6 +858,7 @@ get_device(cups_array_t *devices, /* I - + * 'query_callback()' - Process query data. + */ + ++#ifdef HAVE_DNSSD + static void + query_callback( + DNSServiceRef sdRef, /* I - Service reference */ +@@ -639,7 +878,7 @@ query_callback( + *ptr; /* Pointer into string */ + cups_device_t dkey, /* Search key */ + *device; /* Device */ +- ++ cups_txt_records_t txt; + fprintf(stderr, "DEBUG2: query_callback(sdRef=%p, flags=%x, " + "interfaceIndex=%d, errorCode=%d, fullName=\"%s\", " +@@ -673,84 +912,211 @@ query_callback( + if ((ptr = strstr(name, "._")) != NULL) + *ptr = '\0'; + +- if (strstr(fullName, "_ipp._tcp.") || +- strstr(fullName, "_ipp-tls._tcp.")) +- dkey.type = CUPS_DEVICE_IPP; +- else if (strstr(fullName, "_fax-ipp._tcp.")) +- dkey.type = CUPS_DEVICE_FAX_IPP; +- else if (strstr(fullName, "_printer._tcp.")) +- dkey.type = CUPS_DEVICE_PRINTER; +- else if (strstr(fullName, "_pdl-datastream._tcp.")) +- dkey.type = CUPS_DEVICE_PDL_DATASTREAM; ++ dkey.type = device_type (fullName); ++ ++ txt.data = rdata; ++ txt.dataend = rdata + rdlen; ++ device = find_device ((cups_array_t *) context, &txt, &dkey); ++ if (!device) ++ fprintf(stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", fullName); ++} ++#endif /* HAVE_DNSSD */ ++ +#ifdef HAVE_AVAHI +static void -+avahi_client_callback( -+ AvahiClient *client, -+ AvahiClientState state, -+ void *context) ++avahi_client_callback(AvahiClient *client, ++ AvahiClientState state, ++ void *context) +{ + /* + * If the connection drops, quit. @@ -321,39 +528,26 @@ diff -up cups-1.4b2-svn8404/backend/dnss +} + +static void -+avahi_query_callback( -+ AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_query_callback(AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context) +{ -+ AvahiStringList *pair; + AvahiClient *client; + cups_device_t key, + *device; + char uqname[1024], + *ptr; -+ char *priority = NULL, -+ *mfg = NULL, -+ *mdl = NULL, -+ *product = NULL, -+ *ty = NULL, -+ *printer_type = NULL; -+ size_t priority_len = 0, -+ mfg_len = 0, -+ mdl_len = 0, -+ product_len = 0, -+ ty_len = 0, -+ printer_type_len = 0; ++ cups_txt_records_t txtr; + + client = avahi_service_resolver_get_client (resolver); + if (event != AVAHI_RESOLVER_FOUND) @@ -381,43 +575,11 @@ diff -up cups-1.4b2-svn8404/backend/dnss + key.type = device_type (type); + + /* -+ * Look for information in the TXT string. -+ */ -+ -+ if ((pair = avahi_string_list_find (txt, "priority")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &priority, &priority_len); -+ -+ if ((pair = avahi_string_list_find (txt, "usb_MFG")) == NULL) -+ pair = avahi_string_list_find (txt, "usb_MANUFACTURER"); -+ if (pair != NULL) -+ avahi_string_list_get_pair (pair, NULL, &mfg, &mfg_len); -+ -+ if ((pair = avahi_string_list_find (txt, "usb_MDL")) == NULL) -+ pair = avahi_string_list_find (txt, "usb_MODEL"); -+ if (pair != NULL) -+ avahi_string_list_get_pair (pair, NULL, &mdl, &mdl_len); -+ -+ if ((pair = avahi_string_list_find (txt, "product")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &product, &product_len); -+ -+ if ((pair = avahi_string_list_find (txt, "ty")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &ty, &ty_len); -+ -+ if ((pair = avahi_string_list_find (txt, "printer-type")) != NULL) -+ avahi_string_list_get_pair (pair, NULL, &printer_type, &printer_type_len); -+ -+ /* + * Find the device and the the TXT information. + */ + -+ device = find_device ((cups_array_t *) context, -+ &key, -+ priority, priority_len, -+ mfg, mfg_len, -+ mdl, mdl_len, -+ product, product_len, -+ ty, ty_len, -+ printer_type, printer_type_len); ++ txtr.txt = txt; ++ device = find_device ((cups_array_t *) context, &txtr, &key); + if (device) + { + /* @@ -426,23 +588,24 @@ diff -up cups-1.4b2-svn8404/backend/dnss + + avahi_got_callback = 1; + } -+ else + else +- dkey.type = CUPS_DEVICE_RIOUSBPRINT; + fprintf (stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", name); -+ + +- for (device = cupsArrayFind(devices, &dkey); + avahi_service_resolver_free (resolver); +} + +static void -+avahi_browse_callback( -+ AvahiServiceBrowser *browser, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiBrowserEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_browse_callback(AvahiServiceBrowser *browser, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiBrowserEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ AvahiLookupResultFlags flags, ++ void *context) +{ + AvahiClient *client = avahi_service_browser_get_client (browser); + @@ -497,256 +660,109 @@ diff -up cups-1.4b2-svn8404/backend/dnss + break; + } +} -+ -+#else /* !HAVE_AVAHI */ -+ - /* - * 'browse_callback()' - Browse devices. - */ -@@ -427,6 +752,7 @@ browse_local_callback( - device->fullName); - device->sent = 1; - } -+#endif /* !HAVE_AVAHI */ - - - /* -@@ -525,18 +851,7 @@ get_device(cups_array_t *devices, /* I - - - key.name = (char *)serviceName; - key.domain = (char *)replyDomain; -- -- if (!strcmp(regtype, "_ipp._tcp.") || -- !strcmp(regtype, "_ipp-tls._tcp.")) -- key.type = CUPS_DEVICE_IPP; -- else if (!strcmp(regtype, "_fax-ipp._tcp.")) -- key.type = CUPS_DEVICE_FAX_IPP; -- else if (!strcmp(regtype, "_printer._tcp.")) -- key.type = CUPS_DEVICE_PRINTER; -- else if (!strcmp(regtype, "_pdl-datastream._tcp.")) -- key.type = CUPS_DEVICE_PDL_DATASTREAM; -- else -- key.type = CUPS_DEVICE_RIOUSBPRINT; -+ key.type = device_type (regtype); - - for (device = cupsArrayFind(devices, &key); - device; -@@ -566,13 +881,20 @@ get_device(cups_array_t *devices, /* I - - * Set the "full name" of this service, which is used for queries... - */ - -+#ifdef HAVE_AVAHI -+ avahi_service_name_join (fullName, kDNSServiceMaxDomainName, -+ serviceName, regtype, replyDomain); -+ device->fullName = strdup(fullName); -+#else - DNSServiceConstructFullName(fullName, serviceName, regtype, replyDomain); - device->fullName = strdup(fullName); -+#endif /* !HAVE_AVAHI */ - - return (device); - } - - -+#ifndef HAVE_AVAHI - /* - * 'query_callback()' - Process query data. - */ -@@ -591,12 +913,21 @@ query_callback( - uint32_t ttl, /* I - Time-to-live */ - void *context) /* I - Devices array */ - { -- cups_array_t *devices; /* Device array */ - char name[1024], /* Service name */ - *ptr; /* Pointer into name */ -- cups_device_t key, /* Search key */ -- *device; /* Device */ -- -+ cups_device_t key; /* Search key */ -+ const char *priority, -+ *mfg, -+ *mdl, -+ *product, -+ *ty, -+ *printer_type; -+ uint8_t priority_len, -+ mfg_len, -+ mdl_len, -+ product_len, -+ ty_len, -+ printer_type_len; - - fprintf(stderr, "DEBUG2: query_callback(sdRef=%p, flags=%x, " - "interfaceIndex=%d, errorCode=%d, fullName=\"%s\", " -@@ -617,7 +948,6 @@ query_callback( - * Lookup the service in the devices array. - */ - -- devices = (cups_array_t *)context; - key.name = name; - - unquote(name, fullName, sizeof(name)); -@@ -642,88 +972,111 @@ query_callback( - else - key.type = CUPS_DEVICE_RIOUSBPRINT; - -- for (device = cupsArrayFind(devices, &key); -+ priority = TXTRecordGetValuePtr(rdlen, rdata, "priority", &priority_len); -+ if ((mfg = TXTRecordGetValuePtr(rdlen, rdata, "usb_MFG", &mfg_len)) == NULL) -+ mfg = TXTRecordGetValuePtr(rdlen, rdata, "usb_MANUFACTURER", &mfg_len); -+ -+ if ((mdl = TXTRecordGetValuePtr(rdlen, rdata, "usb_MDL", &mdl_len)) == NULL) -+ mdl = TXTRecordGetValuePtr(rdlen, rdata, "usb_MODEL", &mdl_len); -+ -+ product = TXTRecordGetValuePtr(rdlen, rdata, "product", &product_len); -+ ty = TXTRecordGetValuePtr(rdlen, rdata, "ty", &ty_len); -+ printer_type = TXTRecordGetValuePtr(rdlen, rdata, "printer-type", -+ &printer_type_len); -+ -+ if (!find_device ((cups_array_t *) context, -+ &key, -+ priority, priority_len, -+ mfg, mfg_len, -+ mdl, mdl_len, -+ product, product_len, -+ ty, ty_len, -+ printer_type, printer_type_len)) -+ fprintf(stderr, "DEBUG: Ignoring TXT record for \"%s\"...\n", fullName); -+} -+#endif /* !HAVE_AVAHI */ -+ ++#endif /* HAVE_AVAHI */ + +static cups_device_t * +find_device (cups_array_t *devices, -+ cups_device_t *key, -+ const char *priority, size_t priority_len, -+ const char *mfg, size_t mfg_len, -+ const char *mdl, size_t mdl_len, -+ const char *product, size_t product_len, -+ const char *ty, size_t ty_len, -+ const char *printer_type, size_t printer_type_len) ++ cups_txt_records_t *txt, ++ cups_device_t *dkey) +{ -+ cups_device_t *device; ++ cups_device_t *device; ++ char *ptr; + -+ for (device = cupsArrayFind(devices, key); ++ for (device = cupsArrayFind(devices, dkey); device; device = cupsArrayNext(devices)) { -- if (strcasecmp(device->name, key.name) || -- strcasecmp(device->domain, key.domain)) -+ if (strcasecmp(device->name, key->name) || -+ strcasecmp(device->domain, key->domain)) +- if (strcasecmp(device->name, dkey.name) || +- strcasecmp(device->domain, dkey.domain)) ++ if (strcasecmp(device->name, dkey->name) || ++ strcasecmp(device->domain, dkey->domain)) { device = NULL; break; } -- else if (device->type == key.type) -+ else if (device->type == key->type) +- else if (device->type == dkey.type) ++ else if (device->type == dkey->type) { /* * Found it, pull out the priority and make and model from the TXT * record and save it... */ -- const void *value; /* Pointer to value */ -- uint8_t valueLen; /* Length of value (max 255) */ - char make_and_model[512], /* Manufacturer and model */ - model[256], /* Model */ -- priority[256]; /* Priority */ +- const uint8_t *data, /* Pointer into data */ +- *datanext, /* Next key/value pair */ +- *dataend; /* End of entire TXT record */ +- uint8_t datalen; /* Length of current key/value pair */ +- char key[256], /* Key string */ +- value[256], /* Value string */ +- make_and_model[512], ++ char make_and_model[512], + /* Manufacturer and model */ + model[256], /* Model */ +- device_id[2048];/* 1284 device ID */ - -+ priority_buf[256], /* Priority */ -+ *ptr; ++ device_id[2048]; /* 1284 device ID */ -- value = TXTRecordGetValuePtr(rdlen, rdata, "priority", &valueLen); + device_id[0] = '\0'; + make_and_model[0] = '\0'; -- if (value && valueLen) -+ if (priority && priority_len) - { -- memcpy(priority, value, valueLen); -- priority[valueLen] = '\0'; -- device->priority = atoi(priority); -+ memcpy(priority_buf, priority, priority_len); -+ priority_buf[priority_len] = '\0'; -+ device->priority = atoi(priority_buf); - } + strcpy(model, "Unknown"); -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MFG", -- &valueLen)) == NULL) -- value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MANUFACTURER", -- &valueLen); -- -- if (value && valueLen) -+ if (mfg && mfg_len) +- for (data = rdata, dataend = data + rdlen; +- data < dataend; +- data = datanext) ++ for (;;) { -- memcpy(make_and_model, value, valueLen); -- make_and_model[valueLen] = '\0'; -+ memcpy(make_and_model, mfg, mfg_len); -+ make_and_model[mfg_len] = '\0'; - } - else - make_and_model[0] = '\0'; - -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MDL", -- &valueLen)) == NULL) -- value = TXTRecordGetValuePtr(rdlen, rdata, "usb_MODEL", &valueLen); +- /* +- * Read a key/value pair starting with an 8-bit length. Since the +- * length is 8 bits and the size of the key/value buffers is 256, we +- * don't need to check for overflow... +- */ - -- if (value && valueLen) -+ if (mdl && mdl_len) - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, mdl, mdl_len); -+ model[mdl_len] = '\0'; - } -- else if ((value = TXTRecordGetValuePtr(rdlen, rdata, "product", -- &valueLen)) != NULL && valueLen > 2) -+ else if (product && product_len > 2) - { -- if (((char *)value)[0] == '(') -+ if (product[0] == '(') +- datalen = *data++; +- +- if (!datalen || (data + datalen) >= dataend) +- break; +- +- datanext = data + datalen; ++ char *key; ++ char *value; + +- for (ptr = key; data < datanext && *data != '='; data ++) +- *ptr++ = *data; +- *ptr = '\0'; +- +- if (data < datanext && *data == '=') +- { +- data ++; +- +- if (data < datanext) +- memcpy(value, data, datanext - data); +- value[datanext - data] = '\0'; +- } +- else +- continue; ++ if (parse_txt_record_pair (txt)) ++ goto next; + ++ key = txt->key; ++ value = txt->value; + if (!strncasecmp(key, "usb_", 4)) { /* - * Strip parenthesis... - */ - -- memcpy(model, value + 1, valueLen - 2); -- model[valueLen - 2] = '\0'; -+ memcpy(model, product + 1, product_len - 2); -+ model[product_len - 2] = '\0'; - } - else - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, product, product_len); -+ model[product_len] = '\0'; +@@ -805,6 +1171,10 @@ query_callback( + if (device->type == CUPS_DEVICE_PRINTER) + device->sent = 1; } ++ ++ next: ++ if (next_txt_record (txt) == NULL) ++ break; + } - if (!strcasecmp(model, "GPL Ghostscript") || - !strcasecmp(model, "GNU Ghostscript") || - !strcasecmp(model, "ESP Ghostscript")) - { -- if ((value = TXTRecordGetValuePtr(rdlen, rdata, "ty", -- &valueLen)) != NULL) -+ if (ty && ty_len) - { -- memcpy(model, value, valueLen); -- model[valueLen] = '\0'; -+ memcpy(model, ty, ty_len); -+ model[ty_len] = '\0'; - - if ((ptr = strchr(model, ',')) != NULL) - *ptr = '\0'; -@@ -749,7 +1102,7 @@ query_callback( - - if ((device->type == CUPS_DEVICE_IPP || - device->type == CUPS_DEVICE_PRINTER) && -- TXTRecordGetValuePtr(rdlen, rdata, "printer-type", &valueLen)) -+ printer_type) - { - /* - * This is a CUPS printer! -@@ -765,8 +1118,7 @@ query_callback( + if (device->device_id) +@@ -854,11 +1224,9 @@ query_callback( } } @@ -755,46 +771,13 @@ diff -up cups-1.4b2-svn8404/backend/dnss + return device; } - -@@ -804,6 +1156,35 @@ unquote(char *dst, /* I - Destina - } - - -+static int -+device_type (const char *regtype) -+{ -+#ifdef HAVE_AVAHI -+ if (!strcmp(regtype, "_ipp._tcp") || -+ !strcmp(regtype, "_ipp-tls._tcp")) -+ return (CUPS_DEVICE_IPP); -+ else if (!strcmp(regtype, "_fax-ipp._tcp")) -+ return (CUPS_DEVICE_FAX_IPP); -+ else if (!strcmp(regtype, "_printer._tcp")) -+ return (CUPS_DEVICE_PRINTER); -+ else if (!strcmp(regtype, "_pdl-datastream._tcp")) -+ return (CUPS_DEVICE_PDL_DATASTREAM); -+#else -+ if (!strcmp(regtype, "_ipp._tcp.") || -+ !strcmp(regtype, "_ipp-tls._tcp.")) -+ return (CUPS_DEVICE_IPP); -+ else if (!strcmp(regtype, "_fax-ipp._tcp.")) -+ return (CUPS_DEVICE_FAX_IPP); -+ else if (!strcmp(regtype, "_printer._tcp.")) -+ return (CUPS_DEVICE_PRINTER); -+ else if (!strcmp(regtype, "_pdl-datastream._tcp.")) -+ return (CUPS_DEVICE_PDL_DATASTREAM); -+#endif /* !HAVE_AVAHI */ -+ -+ return (CUPS_DEVICE_RIOUSBPRINT); -+} -+ -+ +- /* - * End of "$Id$". + * 'sigterm_handler()' - Handle termination signals... */ -diff -up cups-1.4b2-svn8404/config.h.in.avahi cups-1.4b2-svn8404/config.h.in ---- cups-1.4b2-svn8404/config.h.in.avahi 2009-02-19 17:56:47.000000000 +0000 -+++ cups-1.4b2-svn8404/config.h.in 2009-03-05 11:15:28.000000000 +0000 +diff -up cups-1.4rc1/config.h.in.avahi cups-1.4rc1/config.h.in +--- cups-1.4rc1/config.h.in.avahi 2009-05-14 21:48:55.000000000 +0100 ++++ cups-1.4rc1/config.h.in 2009-07-29 14:01:36.575271644 +0100 @@ -344,6 +344,13 @@ @@ -809,9 +792,9 @@ diff -up cups-1.4b2-svn8404/config.h.in. * Do we have ? */ -diff -up cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4.avahi cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4 ---- cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4.avahi 2009-02-19 17:56:46.000000000 +0000 -+++ cups-1.4b2-svn8404/config-scripts/cups-dnssd.m4 2009-03-05 11:15:28.000000000 +0000 +diff -up cups-1.4rc1/config-scripts/cups-dnssd.m4.avahi cups-1.4rc1/config-scripts/cups-dnssd.m4 +--- cups-1.4rc1/config-scripts/cups-dnssd.m4.avahi 2009-02-10 17:05:35.000000000 +0000 ++++ cups-1.4rc1/config-scripts/cups-dnssd.m4 2009-07-29 14:01:36.575271644 +0100 @@ -27,6 +27,21 @@ AC_ARG_WITH(dnssd-includes, [ --with-dn DNSSDLIBS="" DNSSD_BACKEND="" @@ -834,74 +817,76 @@ diff -up cups-1.4b2-svn8404/config-scrip if test x$enable_dnssd != xno; then AC_CHECK_HEADER(dns_sd.h, [ case "$uname" in -diff -up cups-1.4b2-svn8404/cups/http-support.c.avahi cups-1.4b2-svn8404/cups/http-support.c ---- cups-1.4b2-svn8404/cups/http-support.c.avahi 2009-02-19 17:56:46.000000000 +0000 -+++ cups-1.4b2-svn8404/cups/http-support.c 2009-03-05 11:15:28.000000000 +0000 -@@ -53,6 +53,11 @@ - #ifdef HAVE_DNSSD +diff -up cups-1.4rc1/cups/http-support.c.avahi cups-1.4rc1/cups/http-support.c +--- cups-1.4rc1/cups/http-support.c.avahi 2009-04-30 23:15:05.000000000 +0100 ++++ cups-1.4rc1/cups/http-support.c 2009-07-29 14:01:36.577396783 +0100 +@@ -54,6 +54,11 @@ # include + # include #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+# include -+# include -+# include ++# include ++# include ++# include +#endif /* HAVE_AVAHI */ /* -@@ -119,6 +124,27 @@ static void resolve_callback(DNSService +@@ -120,6 +125,24 @@ static void resolve_callback(DNSService void *context); #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI -+static void -+avahi_resolve_uri_client_callback (AvahiClient *client, -+ AvahiClientState state, -+ void *simple_poll); -+static void -+avahi_resolve_uri_resolver_callback (AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context); ++static void avahi_resolve_uri_client_cb(AvahiClient *client, ++ AvahiClientState state, ++ void *simple_poll); ++static void avahi_resolve_uri_resolver_cb(AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context); +#endif /* HAVE_AVAHI */ -+ /* * 'httpAssembleURI()' - Assemble a uniform resource identifier from its -@@ -1343,11 +1369,22 @@ _httpResolveURI( +@@ -1348,15 +1371,26 @@ _httpResolveURI( if (strstr(hostname, "._tcp")) { +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) ++ char *regtype, /* Pointer to type in hostname */ ++ *domain; /* Pointer to domain in hostname */ #ifdef HAVE_DNSSD - DNSServiceRef ref; /* DNS-SD service reference */ -+ _http_uribuf_t uribuf; /* URI buffer */ -+#else + DNSServiceRef ref, /* DNS-SD master service reference */ + domainref, /* DNS-SD service reference for domain */ + localref; /* DNS-SD service reference for .local */ + int domainsent = 0; /* Send the domain resolve? */ +- char *regtype, /* Pointer to type in hostname */ +- *domain; /* Pointer to domain in hostname */ + _http_uribuf_t uribuf; /* URI buffer */ + struct pollfd polldata; /* Polling data */ ++#else /* HAVE_AVAHI */ + AvahiSimplePoll *simple_poll; + AvahiClient *client; + int error; -+ struct ++ struct + { + AvahiSimplePoll *poll; + _http_uribuf_t uribuf; -+ } user_data; ++ } user_data; +#endif /* HAVE_DNSSD */ - char *regtype, /* Pointer to type in hostname */ - *domain; /* Pointer to domain in hostname */ -- _http_uribuf_t uribuf; /* URI buffer */ - /* - * Separate the hostname into service name, registration type, and domain... -@@ -1385,8 +1422,13 @@ _httpResolveURI( + + if (logit) +@@ -1394,8 +1428,13 @@ _httpResolveURI( if (domain) *domain++ = '\0'; @@ -915,30 +900,30 @@ diff -up cups-1.4b2-svn8404/cups/http-su resolved_uri[0] = '\0'; -@@ -1400,6 +1442,7 @@ _httpResolveURI( - _cupsLangPuts(stderr, _("INFO: Looking for printer...\n")); - } +@@ -1411,6 +1450,7 @@ _httpResolveURI( + + uri = NULL; +#ifdef HAVE_DNSSD - if (DNSServiceResolve(&ref, 0, 0, hostname, regtype, domain, - resolve_callback, - &uribuf) == kDNSServiceErr_NoError) -@@ -1414,17 +1457,49 @@ _httpResolveURI( + if (DNSServiceCreateConnection(&ref) == kDNSServiceErr_NoError) + { + localref = ref; +@@ -1457,6 +1497,36 @@ _httpResolveURI( + + DNSServiceRefDeallocate(ref); } - else - uri = NULL; -+#else ++#else /* HAVE_AVAHI */ + if ((simple_poll = avahi_simple_poll_new ()) != NULL) + { + if ((client = avahi_client_new (avahi_simple_poll_get (simple_poll), -+ 0, avahi_resolve_uri_client_callback, ++ 0, avahi_resolve_uri_client_cb, + &simple_poll, &error)) != NULL) + { + user_data.poll = simple_poll; + if (avahi_service_resolver_new (client, AVAHI_IF_UNSPEC, + AVAHI_PROTO_UNSPEC, hostname, + regtype, domain, AVAHI_PROTO_UNSPEC, 0, -+ avahi_resolve_uri_resolver_callback, ++ avahi_resolve_uri_resolver_cb, + &user_data) != NULL) + { + avahi_simple_poll_loop (simple_poll); @@ -949,8 +934,6 @@ diff -up cups-1.4b2-svn8404/cups/http-su + + if (resolved_uri[0]) + uri = resolved_uri; -+ else -+ uri = NULL; + } + + avahi_client_free (client); @@ -958,10 +941,13 @@ diff -up cups-1.4b2-svn8404/cups/http-su + + avahi_simple_poll_free (simple_poll); + } -+#endif ++#endif /* HAVE_DNSSD */ if (logit) + { +@@ -1468,13 +1538,13 @@ _httpResolveURI( fputs("STATE: -connecting-to-device\n", stderr); + } -#else +#else /* HAVE_DNSSD || HAVE_AVAHI */ @@ -975,15 +961,15 @@ diff -up cups-1.4b2-svn8404/cups/http-su if (logit && !uri) _cupsLangPuts(stderr, _("Unable to find printer!\n")); -@@ -1629,6 +1704,105 @@ resolve_callback( +@@ -1679,6 +1749,105 @@ resolve_callback( } #endif /* HAVE_DNSSD */ +#ifdef HAVE_AVAHI +static void -+avahi_resolve_uri_client_callback (AvahiClient *client, -+ AvahiClientState state, -+ void *simple_poll) ++avahi_resolve_uri_client_cb (AvahiClient *client, ++ AvahiClientState state, ++ void *simple_poll) +{ + DEBUG_printf(("avahi_resolve_uri_client_callback(client=%p, state=%d, " + "simple_poll=%p)\n", client, state, simple_poll)); @@ -997,19 +983,19 @@ diff -up cups-1.4b2-svn8404/cups/http-su +} + +static void -+avahi_resolve_uri_resolver_callback (AvahiServiceResolver *resolver, -+ AvahiIfIndex interface, -+ AvahiProtocol protocol, -+ AvahiResolverEvent event, -+ const char *name, -+ const char *type, -+ const char *domain, -+ const char *host_name, -+ const AvahiAddress *address, -+ uint16_t port, -+ AvahiStringList *txt, -+ AvahiLookupResultFlags flags, -+ void *context) ++avahi_resolve_uri_resolver_cb (AvahiServiceResolver *resolver, ++ AvahiIfIndex interface, ++ AvahiProtocol protocol, ++ AvahiResolverEvent event, ++ const char *name, ++ const char *type, ++ const char *domain, ++ const char *host_name, ++ const AvahiAddress *address, ++ uint16_t port, ++ AvahiStringList *txt, ++ AvahiLookupResultFlags flags, ++ void *context) +{ + const char *scheme; /* URI scheme */ + char rp[256]; /* Remote printer */ Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.490 retrieving revision 1.491 diff -u -p -r1.490 -r1.491 --- cups.spec 29 Jul 2009 13:00:27 -0000 1.490 +++ cups.spec 29 Jul 2009 13:48:33 -0000 1.491 @@ -218,7 +218,7 @@ module. %patch34 -p1 -b .str3262 %patch35 -p1 -b .cups-get-classes %patch36 -p1 -b .str3272 -#%patch37 -p1 -b .avahi +%patch37 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -512,6 +512,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 29 2009 Tim Waugh 1:1.4-0.rc1.12 +- Fixed Avahi support in the dnssd backend (bug #513888). - Fixed incorrect arguments to sigaction() in dnssd backend (STR #3272). - Cheaply restore compatibility with 1.1.x by having cups_get_sdests() perform a CUPS_GET_CLASSES request if it is not sure it is talking From jskala at fedoraproject.org Wed Jul 29 13:48:31 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Wed, 29 Jul 2009 13:48:31 +0000 (UTC) Subject: rpms/bltk/devel bltk-1.0.9-bltk_paths.patch, NONE, 1.1 bltk-1.0.9-cond_install.patch, NONE, 1.1 bltk-1.0.9-conf.patch, NONE, 1.1 bltk-1.0.9-hdparm.patch, NONE, 1.1 bltk-1.0.9-home_dir.patch, NONE, 1.1 bltk-1.0.9-installed.patch, NONE, 1.1 bltk-1.0.9-man.patch, NONE, 1.1 bltk-1.0.9-office_scen.patch, NONE, 1.1 bltk-1.0.9-opt_developer.patch, NONE, 1.1 bltk-1.0.9-opt_game.patch, NONE, 1.1 bltk-1.0.9-opt_office.patch, NONE, 1.1 bltk-1.0.9-opt_player.patch, NONE, 1.1 bltk-1.0.9-opt_reader.patch, NONE, 1.1 bltk-1.0.9-sudo.patch, NONE, 1.1 bltk-1.0.9-xse.patch, NONE, 1.1 bltk.spec, 1.4, 1.5 sources, 1.3, 1.4 bltk-1.0.9-all.patch, 1.1, NONE Message-ID: <20090729134831.6974E11C00CE@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/bltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1274 Modified Files: bltk.spec sources Added Files: bltk-1.0.9-bltk_paths.patch bltk-1.0.9-cond_install.patch bltk-1.0.9-conf.patch bltk-1.0.9-hdparm.patch bltk-1.0.9-home_dir.patch bltk-1.0.9-installed.patch bltk-1.0.9-man.patch bltk-1.0.9-office_scen.patch bltk-1.0.9-opt_developer.patch bltk-1.0.9-opt_game.patch bltk-1.0.9-opt_office.patch bltk-1.0.9-opt_player.patch bltk-1.0.9-opt_reader.patch bltk-1.0.9-sudo.patch bltk-1.0.9-xse.patch Removed Files: bltk-1.0.9-all.patch Log Message: * Tue Jul 28 2009 Jiri Skala 1.0.9-4 - added man mages - splitted patch to more files - filled up scen file of office workload - updated to latest upstream sources bltk-1.0.9-bltk_paths.patch: Makefile | 2 - bltk_func.sh | 77 ++++++++++++++++++++++++++++++++++++++++++++++ bltk_plot.sh | 48 +++++++++++++++++++--------- bltk_report.sh | 60 ++++++++++++++++++++++++----------- bltk_report_check.sh | 50 ++++++++++++++++++++--------- bltk_report_compress.sh | 51 ++++++++++++++++++++---------- bltk_report_table.sh | 50 ++++++++++++++++++++--------- bltk_report_uncompress.sh | 51 ++++++++++++++++++++---------- 8 files changed, 288 insertions(+), 101 deletions(-) --- NEW FILE bltk-1.0.9-bltk_paths.patch --- --- orig-1.0.9/tools/analyzer/bltk_plot.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_plot.sh 2009-07-17 11:03:54.822883564 +0200 @@ -41,23 +41,41 @@ unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` + WHICH_BLTK=`which bltk` + RETCODE=$? - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE } set_bltk_root --- orig-1.0.9/tools/analyzer/bltk_report_check.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_report_check.sh 2009-07-17 11:03:54.824880651 +0200 @@ -41,26 +41,44 @@ unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` + WHICH_BLTK=`which bltk` + RETCODE=$? - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE } -set_bltk_root +set_bltk_paths Failed="Failed !!!" --- orig-1.0.9/tools/analyzer/bltk_report_compress.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_report_compress.sh 2009-07-17 11:03:54.818881008 +0200 @@ -41,27 +41,44 @@ unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` + WHICH_BLTK=`which bltk` + RETCODE=$? - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp - export BLTK_GET_REALPATH=$BLTK_BIN/bltk_get_realpath + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE } -set_bltk_root +set_bltk_paths CWD=$PWD --- orig-1.0.9/tools/analyzer/bltk_report.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_report.sh 2009-07-17 11:03:54.820880959 +0200 @@ -38,29 +38,51 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # - unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` - - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp -} + WHICH_BLTK=`which bltk` + RETCODE=$? -set_bltk_root + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE +} + +set_bltk_paths + +if [ ! $? = 0 ]; then + echo "ERROR in setting environmental paths" >&2 + exit 1 +fi BLTK_GET_STAT_CMD="$BLTK_BIN/bltk_get_stat $stat_ign_lines_arg" BLTK_CALC_CMD=$BLTK_BIN/bltk_calc --- orig-1.0.9/tools/analyzer/bltk_report_table.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_report_table.sh 2009-07-17 11:03:54.823880990 +0200 @@ -41,26 +41,44 @@ unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` + WHICH_BLTK=`which bltk` + RETCODE=$? - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE } -set_bltk_root +set_bltk_paths BLTK_REPORT=$BLTK_BIN/bltk_report --- orig-1.0.9/tools/analyzer/bltk_report_uncompress.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/bltk_report_uncompress.sh 2009-07-17 11:03:54.837880784 +0200 @@ -41,27 +41,44 @@ unalias -a -set_bltk_root() +set_bltk_paths() { - PROG=`basename $0` + WHICH_BLTK=`which bltk` + RETCODE=$? - BLTK_ROOT=`dirname $0` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - BLTK_ROOT=`dirname $BLTK_ROOT` - if [[ ! -a $BLTK_ROOT/.bltk ]] - then - echo "Cannot determine bltk root, bltk tree corrupted." - exit 2 - fi - fi - export BLTK_ROOT - export BLTK_BIN=$BLTK_ROOT/bin - export BLTK_TMP=$BLTK_ROOT/tmp - export BLTK_GET_REALPATH=$BLTK_BIN/bltk_get_realpath + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE } -set_bltk_root +set_bltk_paths CWD=$PWD --- orig-1.0.9/tools/analyzer/bltk_func.sh 1970-01-01 01:00:00.000000000 +0100 +++ curr-1.0.9-1/tools/analyzer/bltk_func.sh 2009-07-17 11:03:54.824880651 +0200 @@ -0,0 +1,77 @@ +#!/bin/bash +# +# Copyright (c) 2009 Red Hat Inc. +# Copyright (c) 2009 Jiri Skala +# All rights reserved. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# Neither the name of Intel Corporation nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF +# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +# DAMAGE. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# + +set_bltk_paths() +{ + WHICH_BLTK=`which bltk` + RETCODE=$? + + if [[ $RETCODE = 0 ]] + then + file -b $WHICH_BLTK | grep symbolic > /dev/null + TMPCODE=$? + if [[ $TMPCODE = 0 ]] + then + BLTK_MAIN=`readlink -f $WHICH_BLTK` + else + BLTK_MAIN=$WHICH_BLTK + fi + BLTK_ROOT=`echo $BLTK_MAIN | sed 's|/bin/.*$||'` + + root_len=`echo $BLTK_ROOT | wc -c` + main_len=`echo $BLTK_MAIN | wc -c` + + if [[ $root_len = $main_len ]] + then + RETCODE=2 + else + [ -f /etc/bltk.conf ] && . /etc/bltk.conf + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + + export BLTK_ROOT + export BLTK_BIN=$BLTK_ROOT/bin + export BLTK_TMP=$BLTK_HOME/tmp + fi + fi + + return $RETCODE +} + --- orig-1.0.9/tools/analyzer/Makefile 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/analyzer/Makefile 2009-07-17 11:03:54.826913428 +0200 @@ -15,7 +15,7 @@ SHFILES = bltk_get_stat bltk_report bltk_report_table bltk_report_check \ bltk_plot bltk_get_hd_rpm \ - bltk_report_compress bltk_report_uncompress + bltk_report_compress bltk_report_uncompress bltk_func SHFILES_SH = ${SHFILES:=.sh} SHTARGETS = $(SHFILES:%=$(BIN)/%) bltk-1.0.9-cond_install.patch: wl_developer/bltk_wl_developer_install.sh | 17 ++++++++++----- wl_office/bltk_wl_office_install.sh | 33 +++++++++++++++++------------- wl_player/bltk_wl_player_install.sh | 22 ++++++++++++-------- 3 files changed, 45 insertions(+), 27 deletions(-) --- NEW FILE bltk-1.0.9-cond_install.patch --- diff -up bltk-1.0.9/wl_developer/bltk_wl_developer_install.sh.cond_install bltk-1.0.9/wl_developer/bltk_wl_developer_install.sh --- bltk-1.0.9/wl_developer/bltk_wl_developer_install.sh.cond_install 2009-07-29 11:38:48.000000000 +0200 +++ bltk-1.0.9/wl_developer/bltk_wl_developer_install.sh 2009-07-29 14:54:40.878602487 +0200 @@ -38,6 +38,8 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -139,9 +141,14 @@ else exit 1 fi -{ -startup -$work -cleanup 0 -} 2>&1 | tee -i $work.log +if [[ "$WL_DEVELOPER_ENABLED" = "YES" && "$WL_DEVELOPER_EXTERN" = "YES" ]] +then + { + startup + $work + cleanup 0 + } 2>&1 | tee -i $work.log +else + exit 0 +fi diff -up bltk-1.0.9/wl_office/bltk_wl_office_install.sh.cond_install bltk-1.0.9/wl_office/bltk_wl_office_install.sh --- bltk-1.0.9/wl_office/bltk_wl_office_install.sh.cond_install 2009-07-29 11:38:48.000000000 +0200 +++ bltk-1.0.9/wl_office/bltk_wl_office_install.sh 2009-07-29 15:00:59.406496688 +0200 @@ -38,6 +38,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -80,7 +81,6 @@ cleanup() install_ooo() { - wl_remove_file ${HOME}/.sversionrc wl_check_error $? @@ -162,20 +162,25 @@ uninstall() } -if [[ $# = 0 || $1 = i || $1 = install ]] -then - work=install -elif [[ $1 = u || $1 = uninstall ]] +if [[ "$WL_OFFICE_ENABLED" = "YES" && "$WL_OFFICE_EXTERN" = "YES" ]] then - work=uninstall + if [[ $# = 0 || $1 = i || $1 = install ]] + then + work=install + elif [[ $1 = u || $1 = uninstall ]] + then + work=uninstall + else + echo "Invalid parameter" + exit 1 + fi + + { + startup + $work + cleanup 0 + } 2>&1 | tee -i $work.log else - echo "Invalid parameter" - exit 1 + exit 0 fi -{ -startup -$work -cleanup 0 -} 2>&1 | tee -i $work.log - diff -up bltk-1.0.9/wl_player/bltk_wl_player_install.sh.cond_install bltk-1.0.9/wl_player/bltk_wl_player_install.sh --- bltk-1.0.9/wl_player/bltk_wl_player_install.sh.cond_install 2009-07-29 11:38:48.000000000 +0200 +++ bltk-1.0.9/wl_player/bltk_wl_player_install.sh 2009-07-29 15:06:43.249585854 +0200 @@ -41,6 +41,8 @@ PLAYER_INSTALL_FLAGS=" --disable-ivtv" +. /etc/bltk.conf + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -286,17 +288,21 @@ else exit 1 fi +if [[ "$WL_PLAYER_ENABLED" = "YES" && "$WL_PLAYER_EXTERN" = "YES" ]] +then { - #If there is a ENV variable named CFLAGS, the CFLAGS value in wl_player/Makefile #will be set to this ENV variable. Since the MPlayer will inherit the ENV CFLAGS #value, the compiling will failed for "-pedantic -std=c99" in CFLAGS. So we need #to unset the variable here. -CFLAGS= -LDFLAGS= -startup -$work -cleanup 0 -} 2>&1 | tee -i $work.log - + CFLAGS= + LDFLAGS= + startup + $work + cleanup 0 + } 2>&1 | tee -i $work.log +} +else + exit 0 +fi bltk-1.0.9-conf.patch: include/parseconf.h | 61 +++++++++ tools/bltk/Makefile | 5 tools/bltk/main.c | 49 ++++++-- tools/bltk/parseconf.c | 299 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 404 insertions(+), 10 deletions(-) --- NEW FILE bltk-1.0.9-conf.patch --- diff -up /dev/null bltk/include/parseconf.h --- /dev/null 2009-07-29 07:53:51.640007938 +0200 +++ bltk/include/parseconf.h 2009-07-29 11:14:00.913495946 +0200 @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2009 Red Hat Inc. + * Copyright (c) 2009 Jiri Skala + * All rights reserved. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + */ + +#ifndef __PARSECONF_H__ +#define __PARSECONF_H__ + +extern char *bltk_home; +extern char *soffice_prog; +extern char *wl_office_working_dir; +extern char *bltk_player_prog; +extern char *bltk_player_file; +extern char *bltk_reader_prog; + +extern int wl_developer_enabled; +extern int wl_developer_extern; +extern int wl_game_enabled; +extern int wl_game_extern; +extern int wl_office_enabled; +extern int wl_office_extern; +extern int wl_player_enabled; +extern int wl_player_extern; +extern int wl_reader_enabled; +extern int wl_reader_extern; + +#endif + diff -up bltk/tools/bltk/main.c.conf bltk/tools/bltk/main.c --- bltk/tools/bltk/main.c.conf 2009-04-10 09:14:20.000000000 +0200 +++ bltk/tools/bltk/main.c 2009-07-29 11:15:27.694746739 +0200 @@ -57,6 +57,7 @@ #include #include "bltk.h" +#include "parseconf.h" #define OUTPUT_CONSOLE 10 #define OUTPUT_FILE 20 @@ -960,12 +961,13 @@ static int environment_init(int argc, ch char str[STR_LEN]; int ret, i; - (void)unlink(LAST_RESULTS); - ret = symlink(results, LAST_RESULTS); + sprintf(str, "%s/%s", bltk_home, LAST_RESULTS); + (void)unlink(str); + ret = symlink(results, str); if (ret != 0) { (void)sprintf(prt_str, "symlink(%s, %s) failed, " "errno %d (%s)\n", - results, LAST_RESULTS, errno, strerror(errno)); + results, str, errno, strerror(errno)); write_to_err_log(prt_str); prog_exit(1); } @@ -987,6 +989,7 @@ static int environment_init(int argc, ch (void)sprintf(fail_fname, "%s/fail", results); (void)sprintf(pass_fname, "%s/pass", results); prog_putenv("BLTK_FAIL_FNAME", fail_fname); + prog_putenv("BLTK_STOP_FNAME", stop_fname); prog_putenv("BLTK_PASS_FNAME", pass_fname); (void)sprintf(err_log_fname, "%s/err.log", results); @@ -1041,10 +1044,12 @@ static int environment_init(int argc, ch } (void)strcat(cmdline, "'"); - (void)sprintf(cmd, "%s >>history", cmdline); + sprintf(str, "%s/%s", bltk_home, HISTORY); + (void)sprintf(cmd, "%s >>%s", cmdline, str); (void)prog_system(cmd); - (void)sprintf(cmd, "%s >last_cmd", cmdline); + sprintf(str, "%s/%s", bltk_home, LAST_CMD); + (void)sprintf(cmd, "%s >%s", cmdline, str); (void)prog_system(cmd); (void)sprintf(cmd, "%s >%s/cmd", cmdline, results); @@ -1078,7 +1083,7 @@ static int environment_init(int argc, ch set_signal(SIGUSR2); set_signal(SIGHUP); - (void)sprintf(cmd, "mkdir -p -m 0777 %s/tmp", bltk_root); + (void)sprintf(cmd, "mkdir -p -m 0777 %s/tmp", bltk_home); ret = prog_system(cmd); if (ret != 0) { (void)sprintf(prt_str, "%s failed\n", cmd); @@ -1608,6 +1613,28 @@ static char *get_bltk_root_by_argv0(char return (wp1); } +static char *get_bltk_root_by_proc() +{ + char str[256], *path, *ret=NULL; + + snprintf(str, sizeof str, "/proc/%d/exe", getpid()); + if (readlink(str, str, sizeof str) > -1) + { + if ((path = dirname(str))) + { + // take one folder higher + ret = strrchr(path, '/'); + if (ret != NULL) + { + *ret = 0; + ret = path; + } + } + } + + return ret ? strdup(ret) : ret; +} + static char *get_bltk_root_by_path(char *argv0) { char *path, *dpath, *res; @@ -1648,7 +1675,7 @@ static void set_bltk_root(char *argv0) int ret; char cwd[STR_LEN]; - wp1 = check_bltk_root("."); + wp1 = get_bltk_root_by_proc(); if (wp1 == NULL) { wp1 = get_bltk_root_by_argv0(argv0); } @@ -1792,6 +1819,12 @@ int main(int argc, char **argv) (void)umask(0); (void)set_path(0); + param_init(); + + prog_putenv("BLTK_HOME", bltk_home); + prog_putenv("WL_OFFICE_WORKING_DIR", wl_office_working_dir); + prog_putenv("WL_READER_WORKING_DIR", wl_office_working_dir); + time_start = time_prev = prog_time(); (void)prog_system("xset dpms 0 0 0 >/dev/null 2>&1"); @@ -2125,7 +2158,7 @@ int main(int argc, char **argv) ("getcwd() failed, cannot continue the test\n"); prog_exit(1); } - (void)sprintf(results_str, "%s/%s", results_parent, results); + (void)sprintf(results_str, "%s/%s", bltk_home, results); results = results_str; } diff -up bltk/tools/bltk/Makefile.conf bltk/tools/bltk/Makefile --- bltk/tools/bltk/Makefile.conf 2009-04-10 09:14:20.000000000 +0200 +++ bltk/tools/bltk/Makefile 2009-07-29 11:14:00.917495009 +0200 @@ -4,12 +4,12 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O BIN = ../../bin -FILES = main init file stat +FILES = main init file stat parseconf OFILES = ${FILES:=.o} CFILES = ${FILES:=.c} -HIDERS = ../../include/bltk.h +HIDERS = ../../include/bltk.h ../../include/parseconf.h TARGETS = $(BIN)/bltk @@ -38,6 +38,7 @@ main.o : $(HIDERS) main.c init.o : $(HIDERS) init.c file.o : $(HIDERS) file.c stat.o : $(HIDERS) stat.c +parseconf.o : $(HIDERS) parseconf.c $(SHTARGETS) : $(SHFILES_SH) cp $(@:$(BIN)/%=%.sh) $@ diff -up /dev/null bltk/tools/bltk/parseconf.c --- /dev/null 2009-07-29 07:53:51.640007938 +0200 +++ bltk/tools/bltk/parseconf.c 2009-07-29 11:14:00.921494700 +0200 @@ -0,0 +1,299 @@ +/* + * Copyright (c) 2009 Red Hat Inc. + * Copyright (c) 2009 Jiri Skala + * All rights reserved. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + */ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "bltk.h" + +#define BLTK_CONF "/etc/bltk.conf" + +typedef struct para_item_str_t +{ + const char *name; + char **val; + size_t len; +} para_item_str; + +typedef struct para_item_int_t +{ + const char *name; + int *val; +} para_item_int; + +typedef struct para_item_bool_t +{ + const char *name; + int *val; +} para_item_bool; + +char *bltk_home; +char *soffice_prog; +char *wl_office_working_dir; +char *bltk_player_prog; +char *bltk_player_file; +char *bltk_reader_prog; +char *bltk_reader_file; + +int wl_developer_enabled; +int wl_developer_extern; +int wl_game_enabled; +int wl_game_extern; +int wl_office_enabled; +int wl_office_extern; +int wl_player_enabled; +int wl_player_extern; +int wl_reader_enabled; +int wl_reader_extern; + +static para_item_str params_str[] = +{ + { "BLTK_HOME", &bltk_home, 0 }, + { "SOFFICE_PROG", &soffice_prog, 0 }, + { "WL_OFFICE_WORKING_DIR", &wl_office_working_dir, 0 }, + { "BLTK_PLAYER_PROG", &bltk_player_prog, 0 }, + { "BLTK_PLAYER_FILE", &bltk_player_file, 0 }, + { "BLTK_READER_PROG", &bltk_reader_prog, 0 }, + { "BLTK_READER_FILE", &bltk_reader_file, 0 }, + { NULL, NULL, 0 } +}; + +static para_item_int params_int[] = +{ + { NULL, 0 } +}; + +static para_item_bool params_bool[] = +{ + { "WL_DEVELOPER_ENABLED", &wl_developer_enabled }, + { "WL_DEVELOPER_EXTERN", &wl_developer_extern }, + { "WL_GAME_ENABLED", &wl_game_enabled }, + { "WL_GAME_EXTERN", &wl_game_extern }, + { "WL_OFFICE_ENABLED", &wl_office_enabled }, + { "WL_OFFICE_EXTERN", &wl_office_extern }, + { "WL_PLAYER_ENABLED", &wl_player_enabled }, + { "WL_PLAYER_EXTERN", &wl_player_extern }, + { "WL_READER_ENABLED", &wl_reader_enabled }, + { "WL_READER_EXTERN", &wl_reader_extern }, + { NULL, 0 } +}; + + +char * +strupper(char *str) +{ + int i; + for (i=0; i < strlen(str); i++) + str[i] = (char)toupper(str[i]); + return str; +} + +int +param_find_str(const char *name) +{ + int i; + for (i=0; + params_str[i].name != NULL && strcmp(name, params_str[i].name) != 0; + i++) ; + return params_str[i].name == NULL ? -1 : i; +} + +int +param_find_int(const char *name) +{ + int i; + for (i=0; + params_int[i].name != NULL && strcmp(name, params_int[i].name) != 0; + i++) ; + return params_int[i].name == NULL ? -1 : i; +} + +int +param_find_bool(const char *name) +{ + int i; + for (i=0; + params_bool[i].name != NULL && strcmp(name, params_bool[i].name) != 0; + i++) ; + return params_bool[i].name == NULL ? -1 : i; +} + +int +line_empty_or_spaces(const char *line) +{ + int i; + for (i=0; line[i] > 0 && line[i] <= ' ' && i < strlen(line); i++) ; + return line[i] == 0; +} + +int +line_commented(const char *line) +{ + int i; + for (i=0; line[i] > 0 && line[i] <= ' ' && i < strlen(line); i++) ; + return line[i] == '#'; +} + +int +param_parse_line(const char *line, char *name, char *val) +{ + char *str, *str1; + int ret=-1; + + str = strdup(line); + if ((str1 = strchr(str, '=')) != NULL) + { + *str1 = 0; + str1++; + strcpy(val, str1); + strcpy(name, str); + ret = 0; + } + else + { + fprintf(stderr, "Incorrect line in the %s\n", BLTK_CONF); + } + free (str); + return ret; +} + +void +param_export_value(const char *name) +{ + char expval[STR_LEN]; + int index; + + if ((index = param_find_str(name)) > -1) + snprintf(expval, STR_LEN, "%s=%s", name, *(params_str[index].val)); + else if ((index = param_find_int(name)) > -1) + snprintf(expval, STR_LEN, "%s=%d", name, *(params_int[index].val)); + else if ((index = param_find_bool(name)) > -1) + snprintf(expval, STR_LEN, "%s=%s", name, *(params_bool[index].val) ? "YES": "NO"); + + if (index > -1) + putenv(strdup(expval)); + else + fprintf(stderr, "Undefined parameter (%s)\n", name); +} + +void +param_load_conf() +{ + char str[STR_LEN]; + char name[STR_LEN], val[STR_LEN]; + int index, len; + FILE *f; + + if ((f = fopen(BLTK_CONF, "rt")) != NULL) + { + while (fgets(str, STR_LEN, f) != NULL) + { + if ((len = strlen(str)) > 0 && str[len-1] == '\n') + str[len-1] = 0; + if (line_empty_or_spaces(str) || line_commented(str)) + continue; + + param_parse_line(str, name, val); + + if ((index = param_find_str(name)) > -1) + *(params_str[index].val) = strdup(val); + else if ((index = param_find_int(name)) > -1) + *(params_int[index].val) = atoi(val); + else if ((index = param_find_bool(name)) > -1) + { + if (!strcmp(strupper(val), "YES") || + !strcmp(strupper(val), "TRUE") || + val[0] == '1') + *(params_bool[index].val) = 1; + else if (!strcmp(strupper(val), "NO") || + !strcmp(strupper(val), "FALSE") || + val[0] == '0') + *(params_bool[index].val) = 0; + } + } + + fclose(f); + } +} + +void +param_load_defaults() +{ + char str[STR_LEN]; + + if (bltk_home == NULL) + { + sprintf(str, "%s/.bltk", getenv("HOME")); + bltk_home = strdup(str); + } else if (bltk_home[0] == '~') { + sprintf(str, "%s%s", getenv("HOME"), bltk_home+1); + free(bltk_home); + bltk_home = strdup(str); + } + + if (access(bltk_home, 0) != 0) + mkdir(bltk_home, 0700); + + if (wl_office_working_dir == NULL) + wl_office_working_dir = strdup(bltk_home); + + if (access(wl_office_working_dir, 0) != 0) + { + if (wl_office_working_dir[0] == '~') + { + sprintf(str, "%s%s", getenv("HOME"), wl_office_working_dir+1); + free(wl_office_working_dir); + wl_office_working_dir = strdup(str); + } + mkdir(wl_office_working_dir, 0700); + } +} + +void +param_init() +{ + param_load_conf(); + param_load_defaults(); +} + bltk-1.0.9-hdparm.patch: bltk_get_hdparm.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) --- NEW FILE bltk-1.0.9-hdparm.patch --- --- orig-1.0.9/tools/bltk/bltk_get_hdparm.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9/tools/bltk/bltk_get_hdparm.sh 2009-07-13 10:04:45.469891458 +0200 @@ -56,13 +56,10 @@ PARTITIONS=$1 -TMP_FILE=$BLTK_ROOT/tmp/hdparm - -#str=`df -lk / | grep -v ^Filesystem` -str=`df -lk / | grep ^/dev/` -DF_DEV_NAME=${str%% *} -DF_NAME=${DF_DEV_NAME#/dev/} +TMP_FILE=$BLTK_HOME/tmp/hdparm +str=`ls -d /sys/block/sd* | sed 's/^.*sd/sd/'` +DF_NAME=${str%% *} HD_NAME=${DF_NAME%%[0-9]*} grep -w "$HD_NAME" "$PARTITIONS" >/dev/null 2>&1 bltk-1.0.9-home_dir.patch: bltk_get_dmidecode.sh | 2 +- bltk_get_lspci.sh | 2 +- bltk_get_user_field.sh | 2 +- bltk_get_xdpyinfo.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) --- NEW FILE bltk-1.0.9-home_dir.patch --- --- orig-1.0.9/tools/bltk/bltk_get_dmidecode.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_get_dmidecode.sh 2009-07-17 11:03:54.741146665 +0200 @@ -76,7 +76,7 @@ shift $((OPTIND-1)) DMIDECODE=$* - TMP_FILE=$BLTK_ROOT/tmp/dmidecode + TMP_FILE=$BLTK_HOME/tmp/dmidecode if [[ -z $DMIDECODE ]] then --- orig-1.0.9/tools/bltk/bltk_get_lspci.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_get_lspci.sh 2009-07-17 11:03:54.739159007 +0200 @@ -56,7 +56,7 @@ echo "$PROG: Warning: $*" >&2 } -TMP_FILE=$BLTK_ROOT/tmp/lspci +TMP_FILE=$BLTK_HOME/tmp/lspci if [[ -z $LSPCI ]] then --- orig-1.0.9/tools/bltk/bltk_get_user_field.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_get_user_field.sh 2009-07-17 11:03:54.789920943 +0200 @@ -57,7 +57,7 @@ FIELD_NO=$1 DELIM=$1 -TMP_FILE=$BLTK_ROOT/tmp/hdparm +TMP_FILE=$BLTK_HOME/tmp/hdparm #str=`df -lk / | grep -v ^Filesystem` str=`df -lk / | grep ^/dev/` --- orig-1.0.9/tools/bltk/bltk_get_xdpyinfo.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_get_xdpyinfo.sh 2009-07-17 11:03:54.764879831 +0200 @@ -42,7 +42,7 @@ unalias -a XDPYINFO=$1 -TMP_FILE=$BLTK_ROOT/tmp/xdpyinfo +TMP_FILE=$BLTK_HOME/tmp/xdpyinfo if [[ -z $XDPYINFO ]] then bltk-1.0.9-installed.patch: bltk_check.sh | 3 ++- bltk_wl_common.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE bltk-1.0.9-installed.patch --- --- orig-1.0.9/tools/bltk/bltk_check.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_check.sh 2009-07-17 11:03:54.764879831 +0200 @@ -38,6 +38,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf source `dirname $0`/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -120,7 +121,7 @@ wl=${WLA[wl_cnt]} WL_RES=$RES/$wl.results echo "=== Workload '$wl'" - if [[ ! -f $BLTK_ROOT/wl_$wl/.installed && $wl != idle && $wl != reader ]] + if [[ $CHK_INSTALLED = "YES" && ! -f $BLTK_ROOT/wl_$wl/.installed && $wl != idle && $wl != reader ]] then echo "not installed"; WLR[wl_cnt]="not installed" --- orig-1.0.9/tools/bltk/bltk_wl_common.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_wl_common.sh 2009-07-17 11:03:54.742158129 +0200 @@ -374,7 +375,7 @@ { typeset wl=$1 - if [[ ! -a $BLTK_WL_INSTALL_FILE ]] + if [[ $CHK_INSTALLED = "YES" && ! -a $BLTK_WL_INSTALL_FILE ]] then wl_error_msg "Installation is not completed, perform 'make install-$wl'" return 1 bltk-1.0.9-man.patch: bltk.1 | 313 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ bltk.conf.5 | 73 +++++++++++++ bltk_report.1 | 167 ++++++++++++++++++++++++++++++ 3 files changed, 553 insertions(+) --- NEW FILE bltk-1.0.9-man.patch --- --- curr-1.0.9/doc/bltk.1 1970-01-01 01:00:00.000000000 +0100 +++ curr-1.0.9-1/doc/bltk.1 2009-07-21 14:17:29.191118317 +0200 @@ -0,0 +1,313 @@ +.TH BLTK 1 "15 July 2008" "BLTK" "Battery life tool kit" +.SH NAME +bltk \- tool kit is used to measure battery life and performance under +different workloads on Linux. +.SH SYNOPSIS +.B bltk +[\-hVvaNAcCBXswiIRDPGOYZyQzxul] [\-t sec] [\-r results_dir] +[\-m {0,1}] [\-U path] [\-g setup] [\-J pid] [\-T time] +[\-F file] [\-W app] [\-L title] [\-K comment] [\-e app] +[\-E app] [\-p percent] [\-d percent] [\-o {0,1,2}] [\-q file] +[\-b percent] [\-f command] [\-k num] +.SH DESCRIPTION +\fBThe BLTK\fR can be used with various workloads to simulate different types of laptop usage. The following workloads are currently implemented: +.RS +.TP +\fBIdle workload\fR +collect statistics only (mostly used to measure battery life) +.TP +\fBDeveloper workload\fR +simulates code development in Linux environment +.TP +\fBReader workload\fR +simulates text reading on laptop (mostly used to measure battery life) +.TP +\fBPlayback workload\fR +simulates laptop entertaining usage (produces constant average load on the system) +.TP +\fB3d game workload\fR +simulates 3D-gaming on laptop (Unreal Tournament demo is used to create this workload) +.TP +\fBOffice Activity workload\fR +simulates laptop usage for different office activities (based on OpenOffice.org office suit) +.RE +.PP +When started, test collects platform/OS initial info and if it's OK prompts +user to unplug AC adapter. After cable unplugged, workload started. During the +workload execution test harness collects various system information (e.g. +CPU load, battery drain, display state, CPU frequency, etc...). After battery +completely discharged user should plug the AC cable back and boot the system. +When it is done the results are available. +.PP +There are several tools for result evaluation. They allow creating report file +for test run, to gather results into a table for system comparison, and +to draw graphs for different purposes. +.PP +\fBResults\fR \- after the battery dies and the system booted back, the results are +available. They are stored in 'bltk/.results' directory (or in the directory, specified in \-r option). If target directory already exist the tool +will add numeric extension to its name (.001, .002 e.t.c.) The results consist of the +following files (see below for detailed description): +.TP +.B cmd +In this file 'bltk' command with arguments are stored +.TP +.B infoi.log (info1.log, info2.log, ...) +Here initial system info is stored. Another two files (info1.log, +info2.log) contains system info after AC adapter was unplugged, and on 5% +battery capacity remained. They are used to check whether any changes occurred +during test execution. +.TP +.B stat.log +Statistics generated by bltk harness are stored here. One statistic line generated per 1 minute (or per number of seconds, specified in -t option). +.TP +.B system +When -k 1 is used, the system information is stored under this directory. The numbers at the end of directory name have the following meanings: +.RS +.TP +.B 0 +initial system info +.TP +.B 1 +system info after AC adapter was unplugged +.TP +.B 2 +system info on 5% battery capacity remained +.RE +.TP +.B version +this file contains version information +.TP +.B workload +the file contains info about workload +.TP +.B work_out.log +.TP +.B err.log +There are stored any error messages +.TP +.B warning.log +Contains warnings +.TP +.B work.log +Strings generated by USR1, USR2 signals from workload. String format is the same as in the 'stat.log' file. +.TP +.B fail +when test fails +.TP +.B score +.TP +.B Report +.TP +.B Report.table +.SH OPTIONS +.TP +.BR "\-h" , " \--help" +Help; display a help message and then exits. +.TP +.BR "\-V", " \--version" +Version; display version number and then exits. +.TP +.BR "\-v", " \--verbose" +Verbose +.TP +.BR "\-a", " \--ac-ignore" +ignore ac adapter state check (on/off) +.TP +.BR "\-N", " \--time-stat-ignore" +disable time statistics +.TP +.BR "\-A", " \--ac-stat-ignore" +disable ac adapter statistics +.TP +.BR "\-c", " \--cpu-stat-ignore" +disable cpu load statistics +.TP +.BR "\-C", " \--cpu-add-stat-ignore" +disable cpu additional statistics +.TP +.BR "\-B", " \--bat-stat-ignore" +disable battery statistics +.TP +.BR "\-X", " \--disp-stat-ignore" +Disable display state statistics +.TP +.BR "\-H", " \--hd-stat-ignore" +disable hard drive state statistics +.TP +.BR "\-t " seconds, " \--report-time " seconds +frequency of report line generation in seconds +.TP +.BR "\-r " results_dir, " \--results " results_dir +name of results directory +.TP +.BR "\-s", " \--stat-ignore" +disable all statistics +.TP +.BR "\-w", " \--work-stat-ignore" +disable workload statistics +.TP +.BR "\-m " {0,1}, " \--stat-memory " {0,1} +dump statistics directly on disk or keep in memory, if statistics are kept in memory, it will be dumped on disk at low battery capacity, or at the test end +.RS +.TP +.B 0 +disk +.TP +.B 1 +memory (by default) +.RE +.TP +.BR "\-i", " \--idle-test" +idle test +.TP +.BR "\-I", " \--idle" +idle workload +.TP +.BR "\-R", " \--reader" +reader workload +.TP +.BR "\-D", " \--developer" +developer workload +.TP +.BR "\-P", ' \--player" +playback workload +.TP +.BR "\-G", " \--game" +3D-gaming workload +.TP +.BR "\-O", " \--office" +office productivity workload +.TP +.BR "\-U " path, " \--user " path +user-specified workload (path to executable) +.TP +.BR "\-g " routine, " \--user-init " routine" +setup routines for user-specified workload +.TP +.BR "\-Y", " \--discharging" +battery discharge mode +.TP +.BR "\-Z", " \--charging" +battery charge mode +.TP +.BR "\-J " pid, " \--jobs " pid +make jobs number +.TP +.BR "\-T " seconds, " \--time " seconds +workload time +.TP +.BR "\-F", " \--file" +workload file +.TP +.BR "\-W", " \--prog" +workload program + name of player (player workload, default 'mplayer') + name of web-browser (reader workload, default 'firefox') +.TP +.BR "\-L", " \--title" +title of web-browser document +.TP +.BR "\-M", " \--manufacturer" +enable time and cpu load statistics only +.TP +.BR "\-S", " \--show" +demo/debug mode, one iteration only +.TP +.BR "\-n", " \--show-num" +demo/debug mode, 'show-num' iteration +.TP +.BR "\-j", " \--show-cnt" +demo/debug mode, 'show-cnt' sub iteration +.TP +.BR "\-T " seconds, " \--show-time " seconds +demo/debug mode, debug time +.TP +.BR "\-K " comment, " \--comment " comment +user comment for report +.TP +.BR "\-e " application, " \--init-prog " application +run program before test starting +.TP +.BR "\-E " application, " \--init-prog-su " application +run program as root before test starting +.TP +.BR "\-y", " \--yes" +auto 'yes' answer to all questions +.TP +.BR "\-Q", " \--debug" +debug workload (see cpu-load and disp-load below) +.TP +.BR "\-p " percent, " \--cpu-load " percent +debug workload, the time cpu loaded in percent +.TP +.BR "\-d " percent, " \--disp-load " percent +Debug workload, the time display on in percent +.TP +.BR "\-o " {0,1,2}, " \--output " {0,1,2} +direct workload output: +.RS +.TP +.B 0 +file +.TP +.B 1 +file and console +.TP +.B 2 +/dev/null, other - console +.RE +.TP +.BR "\-z", " \--debug-vars" +debug option +.TP +.BR "\-q " file, " \--debug-vars-file " file +debug option - debug variables file +.TP +.BR "\-x", " \--dpms" +debug option - try to use display power management +.TP +.BR "\-u", " \--spy" +debug option - try to find out unexpected system activity +.TP +.BR "\-l", " \--simul-laptop" +debug option, laptop simulation +.TP +.BR "\-b " percent, " \--bat-sync " percent +debug option, battery critical capacity, default 5% +.TP +.BR "\-f " command, " \--user-field " command +the output of user-specified command being added to statistics +Example: + -f "cat /proc/acpi/thermal_zone/TZ01/temperature | awk '{print \$2}'" +.TP +.BR "\-k " num, " \--stat-system " num +debug option, save system files, default 0 +.SH EXAMPLES +.TP +bltk -I or --idle +idle workload running +.TP +bltk -R or --reader +reader workload running +.TP +bltk -D or --developer +developer workload running +.TP +bltk -O or --office +office workload running +.TP +bltk -P or --player +player workload running +.TP +bltk -G or --game +game workload running +.TP +bltk -i or --idle-test -T 60 -t 1 +idle test running for 60 seconds, stats interval 1 second +.SH SEE ALSO +\fBbltk.conf\fR(5), \fBbltk_report\fR(1) +.SH AUTHOR +.nf +Konstantin Karasyov +Vladimir Lebedev +.fi --- curr-1.0.9/doc/bltk_report.1 1970-01-01 01:00:00.000000000 +0100 +++ curr-1.0.9-1/doc/bltk_report.1 2009-07-21 15:31:40.943332988 +0200 @@ -0,0 +1,167 @@ +.TH BLTK_REPORT 1 "15 July 2008" "BLTK_REPORT" +.SH NAME +bltk_report \- automated report creation +bltk_report_table \- summary table creation from several results folders +bltk_plot \- graph drawing +.SH SYNOPSIS +.B bltk_report +[\-hdofI013EiS] [\-r ] [\-s ] [\-b ] [\-c ] +[\-U ] [\-B ] [\-D ] [\-C ] [\-P ] [\-K ] [\-R ] +[\-2 ] [\-4 ] directory... +.PP +.B +bltk_report_table +[\-hdstfuEe13SR] [\-2 ] [\-4 ] [\-F ] directory ... +.PP +.B bltk_plot +[\-hDswy1vnr] [\-d ] [\-f ] [\-x ] [\-X ] [\-Y ] +[\-t ] [\-o ] [\-2 ] [\-p ] results_dir ... +.SH DESCRIPTION +The following tools are implemented for results analysis: +.TP +.B bltk_report +automated report creation +.TP +.B bltk_report_table +summary table creation from several results folders +.TP +.B bltk_plot +graph drawing +.SH GENERAL OPTIONS +.TP +.B \-h +theis help +.TP +.B \-1 +first statistic item of score file is ignored +.TP +.BR "\-2 " item:num +statistic from item 'item', 'num' number of score file +.TP +.B -f +statistics file name +.SH SPECIFIC OPTIONS +.B bltk_report +.RS +.TP +.B \-o +print report to output +.TP +.BR "\-K " string +comment string +.TP +.BR "\-R " filename +argument will be used as report file name +.TP +.B \-3 +first statistic item of stat.log file is ignored +.TP +.BR "\-4 " item:num +statistic from item 'item', 'num' number of stat.log file +.TP +.B \-E +errors being ignored (allows to create report file anyway) +.TP +.B \-i +idle mode +.RE +.PP +.B bltk_report_table +.RS +.TP +.B \-d +debugging mode +.TP +.B \-s +sort result lines +.TP +.B \-t +Excel-compatible file format +.TP +.B \-3 +first statistic item of stat.log file is ignored +.TP +.BR "\-4 " item:num +statistic from item 'item', 'num' number of stat.log file +.TP +.B \-u +only columns which contain different values will be included into table +.TP +.B \-E +errors being ignored (allows to create result table anyway) +.TP +.B \-e +skip error results +.TP +.BR "\-F " filter +only fields from filter file will be included into table (see doc/filter as an example) +.TP +.B \-S +split mode - split multiple values to columns +.TP +.B \-R +analyze all results dirs under passed directories +.RE +.PP +.B bltk_plot +.RS +.TP +.B \-D +debugging mode +.TP +.BR "\-d " results_dir +results directory name. This option could be passed several times default is current directory. +.TP +.B \-s +use stat.log file +.TP +.B \-w +use work.log file +.TP +.BR "\-x " name +argument is used to be an X parameter default is 'time' field +.TP +.BR "\-y " name ... +argument is used to be an Y parameter this option could be passed several times default is 'cap' field +.TP +.BR "\-X " x1:x2 +x range from x1 to x2 +.TP +.BR "\-Y " y1:y2 +y range from y1 to y2 +.TP +.B \-t title +graph title +.TP +.BR "\-o " options +options passed to 'plot' command +.TP +.B \-v +print current variables +.TP +.BR "\-p " file +save graph to specified file +.TP +.B \-n +print available field's names +.TP +.B \-R +analyze all results dirs under passed directories +.RE +.SH EXAMPLE +.TP +bltk_report_table ... >sum +Common results table will be generated in 'sum' file for ... directories. +.TP +bltk_report result +\'Report\' file will be generated in results directory +.TP +bltk_plot -y bat -x N ... +Common graph will be generated for ... +.SH SEE ALSO +\fBbltk\fR(1), \fBbltk.conf\fR(5) +.SH AUTHOR +.nf +Konstantin Karasyov +Vladimir Lebedev +.fi --- curr-1.0.9/doc/bltk.conf.5 1970-01-01 01:00:00.000000000 +0100 +++ curr-1.0.9-1/doc/bltk.conf.5 2009-07-17 11:03:54.891127310 +0200 @@ -0,0 +1,73 @@ +.TH BLTK.CONF 5 "15 July 2009" "BLTK.CONF" "Battery life tool kit configuration" +.SH NAME +bltk.conf - config file for bltk +.SH DESCRIPTION +bltk.conf may be used to control particular features of bltk. By default, bltk looks for the file in /etc direcotry. +.SH FORMAT +The format of bltk.conf is very simple. Each line is either a comment or a directive. Comment lines start with a # and are ignored. A directive line has the format: +.PP +option=value +.PP +It is important to note that it is an error to put any space between the option, = and value. +.PP +Each setting has a compiled in default which may be modified in the configuration file. +.SH .BOOLEAN OPTIONS +Below is a list of boolean options. The value for a boolean option may be set to YES or NO. +.TP +.B CHK_INSTALLED +If set to YES, existance of .installed files is checked for. +.TP +.B WL_DEVELOPER_ENABLED +Controls whether developer workload is enabled. +.TP +.B WL_DEVELOPER_EXTERN +Controls whether external sources are used to build workload application. +.TP +.B WL_GAME_ENABLED +Controls whether game workload is enabled. +.TP +.B WL_GAME_EXTERN +Controls whether external sources are used to build workload application. +.TP +.B WL_OFFICE_ENABLED +Controls whether office workload is enabled. +.TP +.B WL_OFFICE_EXTERN +Controls whether external sources are used to build workload application. +.TP +.B WL_PLAYER_ENABLED +Controls whether player workload is enabled +.TP +.B WL_PLAYER_EXTERN +Controls whether external sources are used to build workload application. +.TP +.B WL_READER_ENABLED +Controls whether reader workload is enabled. +.TP +.B WL_READER_EXTERN +Controls whether external sources are used to build workload application. +.SH .STRING OPTIONS +.B BLTK_HOME +This option specifies the location of BLTK's home directory. This directory is used as starting directory for saving results and temporary files. +.TP +.B SOFFICE_PROG +This option specifies an application to be started when office workload is used. +.TP +.B WL_OFFICE_WORKING_DIR +The option specifies working directory for office workload. +.TP +.B BLTK_PLAYER_PROG +The option replaces default aplication to be used for playing audio/video +.TP +.B BLTK_PLAYER_FILE +The option replaces default source to be played. +.TP +.B BLTK_READER_PROG +The option replaces default aplication to be used for reading a document. +.TP +.B BLTK_READER_FILE +The option replaces default document to be read. +.SH SEE ALSO +\fBbltk\fR(1) +.SH AUTHOR +jskala at redhat.com bltk-1.0.9-office_scen.patch: scen | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) --- NEW FILE bltk-1.0.9-office_scen.patch --- --- orig-1.0.9/wl_office/scen 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_office/scen 2009-07-28 15:57:52.376603496 +0200 @@ -20,8 +20,6 @@ PRESSKEY 0 2 3000 Return DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 e -#PRESSKEY 0 11 150 Down PRESSKEY C 0 1000 f DELAY 0 0 2000 0 PRESSKEY 0 0 2000 Return @@ -35,7 +33,7 @@ DELAY 0 0 2000 0 PRESSKEY A 0 3000 l -SETWINDOW 0 0 0 \"OpenOffice.org 3.0 \": +SETWINDOW 0 0 0 \"OpenOffice.org .* \": FOCUSIN 0 0 150 0 DELAY 0 0 3000 0 @@ -43,7 +41,7 @@ RELEASEKEY 0 0 1000 Return DELAY 0 0 2000 0 -ENDWINDOW 0 0 0 \"OpenOffice.org 3.0 \": +ENDWINDOW 0 0 0 \"OpenOffice.org .* \": SETWINDOW 0 0 0 Find & Replace @@ -63,14 +61,10 @@ PRESSKEY 0 2 3000 Return DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 f -#PRESSKEY 0 4 150 Down PRESSKEY C 0 1000 s DELAY 0 0 2000 0 -PRESSKEY A 0 1000 f -PRESSKEY 0 18 150 Down +PRESSKEY C 0 1000 Q DELAY 0 0 3000 0 -PRESSKEY 0 0 6000 Return ENDWINDOW 0 0 0 OOWRITER_FILE.odt @@ -156,14 +150,10 @@ TYPETEXT 0 0 150 Total Pays DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 f -#PRESSKEY 0 4 150 Down PRESSKEY C 0 1000 s DELAY 0 0 2000 0 -PRESSKEY A 0 1000 f -PRESSKEY 0 18 150 Down +PRESSKEY C 0 150 Q DELAY 0 0 3000 0 -PRESSKEY 0 0 5000 Return ENDWINDOW 0 0 0 OOCALC_FILE.ods @@ -187,7 +177,7 @@ PRESSKEY 0 0 1000 Tab PRESSKEY A 0 1000 e -PRESSKEY 0 5 150 Down +PRESSKEY 0 0 150 e DELAY 0 0 1000 0 PRESSKEY 0 0 500 Return @@ -331,12 +322,10 @@ DELAY 0 0 3000 0 PRESSKEY 0 3 3000 Esc -PRESSKEY A 0 1000 f -PRESSKEY 0 0 150 s +PRESSKEY C 0 1000 s DELAY 0 0 3000 0 -PRESSKEY A 0 1000 f -PRESSKEY 0 0 150 x +PRESSKEY C 0 1000 Q DELAY 0 0 3000 0 ENDWINDOW 0 0 0 OODRAW_FILE.odg bltk-1.0.9-opt_developer.patch: bltk_wl_developer.sh | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) --- NEW FILE bltk-1.0.9-opt_developer.patch --- --- orig-1.0.9/wl_developer/bltk_wl_developer.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_developer/bltk_wl_developer.sh 2009-07-17 11:03:54.857887762 +0200 @@ -38,9 +38,13 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } +export USER_DELAY_TMP=$BLTK_HOME/user_delay.tmp + startup() { trap 'cleanup 1; exit 1' 1 2 3 15 @@ -174,18 +176,18 @@ { ST_TIME=`$BLTK_TIME_CMD` - rm -f ./user_delay.tmp + rm -f $USER_DELAY_TMP if [[ $BLTK_WL_FILE != DEBUG && $BLTK_WL_FILE != DEBUG1 ]] then run_cscope_vi wl_check_error $? else sleep 1 - echo 1.11 >./user_delay.tmp - wl_check_error $? "echo 0.11 >./user_delay.tmp failed" + echo 1.11 > $USER_DELAY_TMP + wl_check_error $? "echo 0.11 > $USER_DELAY_TMP failed" fi - CMD="cat ./user_delay.tmp" + CMD="cat $USER_DELAY_TMP" DELAY_TIME=`$CMD` wl_check_error $? "$CMD failed" @@ -281,7 +283,15 @@ exit $1 } -startup -run -cleanup 0 +if [ $WL_DEVELOPER_ENABLED = "YES" ] +then + startup + run + cleanup 0 +else + TTY=`tty` + echo "WARNING!!!" > $TTY 2>&1 + echo "The developer workload is disabled. See manual and use external package." > $TTY 2>&1 + exit 0 +fi bltk-1.0.9-opt_game.patch: bltk_wl_game.sh | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) --- NEW FILE bltk-1.0.9-opt_game.patch --- --- orig-1.0.9/wl_game/bltk_wl_game.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_game/bltk_wl_game.sh 2009-07-17 11:03:54.891881334 +0200 @@ -22,16 +22,16 @@ # may be used to endorse or promote products derived from this software # without specific prior written permission. # -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBGMORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BGM NOT +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBGMORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BGM NOT LIMITED -# TO, PROCUREMENT OF SUBSTITGME GOODS OR SERVICES; +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OGM OF +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. # @@ -40,8 +40,11 @@ set -x +. /etc/bltk.conf + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } + startup() { trap 'cleanup 1; exit 1' 1 2 3 15 @@ -186,7 +189,15 @@ exit $1 } -startup -run -cleanup 0 +if [ $WL_GAME_ENABLED = "YES" ] +then + startup + run + cleanup 0 +else + TTY=`tty` + echo "WARNING!!!" > $TTY 2>&1 + echo "The game workload is disabled. Read manual and use external package." > $TTY 2>&1 + exit 0 +fi bltk-1.0.9-opt_office.patch: tools/bltk/bltk_wl_common.sh | 24 +++++++++++-- wl_office/bltk_wl_office.sh | 64 ++++++++++++++++++++++++++++-------- wl_office/bltk_wl_office_run_app.sh | 4 +- 3 files changed, 74 insertions(+), 18 deletions(-) --- NEW FILE bltk-1.0.9-opt_office.patch --- --- orig-1.0.9/wl_office/bltk_wl_office_run_app.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_office/bltk_wl_office_run_app.sh 2009-07-17 11:03:54.896922872 +0200 @@ -38,12 +38,14 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf unalias -a SOFFICE_FLG="-minimized -invisible -norestore -quickstart -nologo -nolockcheck -nodefault" +WL_OFFICE_WORKING_DIR=${WL_OFFICE_WORKING_DIR:-"~/.bltk"} -$SOFFICE_PROG $SOFFICE_FLG $1 & +$SOFFICE_PROG $SOFFICE_FLG $WL_OFFICE_WORKING_DIR/$1 & exit $? --- orig-1.0.9/wl_office/bltk_wl_office.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_office/bltk_wl_office.sh 2009-07-17 11:03:55.016999320 +0200 @@ -38,11 +38,21 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } XSE_PROG="bltk_wl_office_xse" +WL_OFFICE_WORKING_DIR=${WL_OFFICE_WORKING_DIR:-"~/.bltk"} +cd $WL_OFFICE_WORKING_DIR +WL_OFFICE_WORKING_DIR=`pwd` +cd $OLDPWD + +export USER_DELAY_TMP=$BLTK_HOME/user_delay.tmp + + startup() { trap 'cleanup 1; exit 1' 1 2 3 15 @@ -55,7 +65,14 @@ wl_check_install office wl_check_error $? - export SOFFICE_PROG=$HOME/soffice + wl_install_file 0644 text1 $WL_OFFICE_WORKING_DIR/text1 + wl_check_error $? + wl_install_file 0644 text2 $WL_OFFICE_WORKING_DIR/text2 + wl_check_error $? + wl_install_file 0644 text3 $WL_OFFICE_WORKING_DIR/text3 + wl_check_error $? + + export SOFFICE_PROG=${SOFFICE_PROG:-"$HOME/soffice"} BLTK_WL_OFFICE_SCEN=$BLTK_WL_FILE @@ -82,39 +99,44 @@ { ST_TIME=`$BLTK_TIME_CMD` - wl_remove_file OOWRITER_FILE.odt + wl_remove_file $WL_OFFICE_WORKING_DIR/OOWRITER_FILE.odt wl_check_error $? - wl_copy_file OOWRITER_FILE_SAMPLE.odt OOWRITER_FILE.odt + wl_install_file 0644 OOWRITER_FILE_SAMPLE.odt $WL_OFFICE_WORKING_DIR/OOWRITER_FILE.odt wl_check_error $? - wl_remove_file OOCALC_FILE.ods + wl_remove_file O$WL_OFFICE_WORKING_DIR/OCALC_FILE.ods wl_check_error $? - wl_copy_file OOCALC_FILE_SAMPLE.ods OOCALC_FILE.ods + wl_install_file 0644 OOCALC_FILE_SAMPLE.ods $WL_OFFICE_WORKING_DIR/OOCALC_FILE.ods wl_check_error $? - wl_remove_file OODRAW_FILE.odg + wl_remove_file $WL_OFFICE_WORKING_DIR/OODRAW_FILE.odg wl_check_error $? - wl_copy_file OODRAW_FILE_SAMPLE.odg OODRAW_FILE.odg + wl_install_file 0644 OODRAW_FILE_SAMPLE.odg $WL_OFFICE_WORKING_DIR/OODRAW_FILE.odg wl_check_error $? - wl_remove_file ./user_delay.tmp + wl_remove_file $USER_DELAY_TMP wl_check_error $? if [[ $BLTK_WL_OFFICE_SCEN = DEBUG ]] then sleep 1 - echo 0.11 > ./user_delay.tmp - wl_check_error $? "echo 1.11 >./user_delay.tmp failed" + echo 0.11 > $USER_DELAY_TMP + wl_check_error $? "echo 1.11 > $USER_DELAY_TMP failed" elif [[ -f "$BLTK_WL_OFFICE_SCEN" ]] then CMD="$BLTK_WL_BIN/$XSE_PROG $BLTK_WL_OFFICE_SCEN" ##### \time -p $CMD >./XSE.times 2>&1 $CMD + if [ -f $BLTK_STOP_FILE ] + then + ps -eopid,cmd | grep $WL_OFFICE_WORKING_DIR | sed 's/^ *//' | sed 's/ .*$//' | xargs kill -s SIGKILL + exit 0 + fi else wl_check_error 1 "Cannot access $BLTK_WL_OFFICE_SCEN" fi - CMD="cat ./user_delay.tmp" + CMD="cat $USER_DELAY_TMP" DELAY_TIME=`$CMD` wl_check_error $? "$CMD failed" @@ -159,6 +181,14 @@ echo "$CNT: Score $score" >$TTY 2>&1 } +killchildproc() +{ + officeproc = ps -eopid,cmd | grep $WL_OFFICE_WORKING_DIR | sed 's/ .*$//' + for i in $officeproc; do + sudo kill -s SIFKILL $i + done +} + run() { CNT=1 @@ -167,6 +197,7 @@ run1 if [[ $BLTK_SHOW_DEMO = TRUE && $CNT = $BLTK_SHOW_DEMO_NUM ]] then + killchildproc break fi (( CNT++ )) @@ -179,7 +210,12 @@ exit $1 } -startup -run -cleanup 0 +if [ "$WL_OFFICE_ENABLED" = "YES" ] +then + startup + run + cleanup 0 +else + exit 0 +fi --- orig-1.0.9/tools/bltk/bltk_wl_common.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/bltk/bltk_wl_common.sh 2009-07-17 11:03:54.742158129 +0200 @@ -38,6 +38,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf unalias -a @@ -130,7 +131,7 @@ export BLTK_BIN=$BLTK_ROOT/bin export BLTK_LIB=$BLTK_ROOT/lib - export BLTK_TMP=$BLTK_ROOT/tmp + export BLTK_TMP=$HOME/.bltk/tmp [[ -z $BLTK_SUDO_CMD ]] && export BLTK_SUDO_CMD=$BLTK_BIN/bltk_sudo [[ -z $BLTK_CALC_CMD ]] && export BLTK_CALC_CMD=$BLTK_BIN/bltk_calc @@ -180,7 +181,7 @@ export BLTK_BIN=$BLTK_ROOT/bin export BLTK_LIB=$BLTK_ROOT/lib - export BLTK_TMP=$BLTK_ROOT/tmp + export BLTK_TMP=$HOME/.bltk/tmp export BLTK_EXTERN_SRC=$BLTK_ROOT/extern # export BLTK_EXTERN_TGT=$BLTK_ROOT/extern @@ -228,7 +229,7 @@ wl_error_msg "cd $BLTK_WL_ROOT failed" return 1 fi - rm -f fail + rm -f $BLTK_FAIL_NAME RES_SCORE=$BLTK_RESULTS/score [[ -a $RES_SCORE ]] && rm $RES_SCORE @@ -626,3 +627,20 @@ return 0 } +wl_install_file() +{ + typeset access=$1 + typeset file1=$2 + typeset file2=$3 + + CMD="install -m $access $file1 $file2" + $CMD + if [[ $? != 0 ]] + then + wl_error_msg "$CMD failed" + wl_error_msg "Cannot copy $file1 to $file2" + return 1 + fi + return 0 +} + bltk-1.0.9-opt_player.patch: bltk_wl_player.sh | 49 ++++++++++++++++++++++-------------------- bltk_wl_player_make_binary.sh | 16 ++++++++----- 2 files changed, 36 insertions(+), 29 deletions(-) --- NEW FILE bltk-1.0.9-opt_player.patch --- --- orig-1.0.9/wl_player/bltk_wl_player_make_binary.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_player/bltk_wl_player_make_binary.sh 2009-07-17 11:03:55.178141070 +0200 @@ -108,9 +108,13 @@ return 0 } -{ -startup -make_mplayer_bin -cleanup 0 -} - +if [[ "$WL_PLAYER_ENABLED" = "YES" && "$WL_PLAYER_EXTERN" = "YES" ]] +then + { + startup + make_mplayer_bin + cleanup 0 + } +else + exit 0 +fi --- orig-1.0.9/wl_player/bltk_wl_player.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_player/bltk_wl_player.sh 2009-07-17 11:03:55.189691473 +0200 @@ -38,6 +38,9 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +BLTK_PLAYER_PROG_FLG= + +. /etc/bltk.conf source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -54,27 +57,22 @@ wl_check_install player wl_check_error $? - if [[ $BLTK_WL_FILE = DEBUG ]] + if [[ $BLTK_PLAYER_FILE = DEBUG ]] then - BLTK_WL_FILE= + BLTK_PLAYER_FILE= fi - if [ $PLAY_MD != "dvd://" -a $PLAY_MD != "vcd://" ] + if [[ -z $BLTK_PLAYER_FILE ]] then - BLTK_WL_FILE=$BLTK_EXTERN_SRC_WL_PLAYER/$PLAY_MD - else - set_dvd_config - BLTK_WL_FILE=$PLAY_MD + BLTK_PLAYER_FILE="dvd://" fi -echo ALEX DEBUG BLTK_WL_FILE is $BLTK_WL_FILE - - if [[ -z $BLTK_WL_PROG ]] - then - BLTK_WL_PROG=$BLTK_EXTERN_TGT_WL_PLAYER/mplayer/bin/mplayer - fi - if [[ -z $BLTK_WL_PROG_FLG ]] + if [[ -z $BLTK_PLAYER_PROG ]] then - BLTK_WL_PROG_FLG="-fs -quiet" + BLTK_PLAYER_PROG=$BLTK_EXTERN_TGT_WL_PLAYER/mplayer/bin/mplayer + if [[ -z $BLTK_PLAYER_PROG_FLG ]] + then + BLTK_PLAYER_PROG_FLG="-fs -quiet" + fi fi if [[ -z $BLTK_SHOW_DEMO_NUM ]] @@ -86,13 +84,13 @@ export BLTK_SHOW_DEMO_TIME=60 fi - wl_check_prog $BLTK_WL_PROG + wl_check_prog $BLTK_PLAYER_PROG wl_check_error $? - wl_check_run_prog $BLTK_WL_PROG + wl_check_run_prog $BLTK_PLAYER_PROG wl_check_error $? - wl_check_all_run_prog $BLTK_WL_PROG + wl_check_all_run_prog $BLTK_PLAYER_PROG wl_check_error $? ### env | sort >env.log } @@ -122,14 +120,14 @@ { ST_TIME=`$BLTK_TIME_CMD` - CMD="$BLTK_WL_PROG $BLTK_WL_PROG_FLG $BLTK_WL_FILE" + CMD="$BLTK_PLAYER_PROG $BLTK_WL_PROG_FLG $BLTK_PLAYER_FILE" if [[ $BLTK_SHOW_DEMO = TRUE && $BLTK_SHOW_DEMO_TIME != 0 ]] then $CMD & wl_check_error $? "CMD failed" pid=$! sleep $BLTK_SHOW_DEMO_TIME - prog=`basename $BLTK_WL_PROG` + prog=`basename $BLTK_PLAYER_PROG` pgrep $prog wl_check_error $? "$prog is not running" /bin/kill -QUIT $pid >/dev/null 2>&1 @@ -180,7 +178,12 @@ exit $1 } -startup -run -cleanup 0 +if [ "$WL_PLAYER_ENABLED" = "YES" ] +then + startup + run + cleanup 0 +else + exit 0 +fi bltk-1.0.9-opt_reader.patch: bltk_wl_reader.sh | 57 ++++++++++++++++++++++++++++++++++----------------- bltk_wl_reader_xse.c | 2 - 2 files changed, 39 insertions(+), 20 deletions(-) --- NEW FILE bltk-1.0.9-opt_reader.patch --- --- orig-1.0.9/wl_reader/bltk_wl_reader.sh 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_reader/bltk_wl_reader.sh 2009-07-17 11:03:55.065881503 +0200 @@ -38,6 +38,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # +. /etc/bltk.conf source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -48,6 +49,13 @@ XSE_PROG="bltk_wl_reader_xse" +WL_READER_WORKING_DIR=${WL_READER_WORKING_DIR:-"~/.bltk"} +cd $WL_READER_WORKING_DIR +WL_READER_WORKING_DIR=`pwd` +cd $OLDPWD + +export USER_DELAY_TMP=$BLTK_HOME/user_delay.tmp + startup() { trap 'cleanup 1; exit 1' 1 2 3 15 @@ -58,35 +66,35 @@ ### wl_check_install reader ### wl_check_error $? - if [[ -z $BLTK_WL_PROG ]] + if [[ -z $BLTK_READER_PROG ]] then - export BLTK_WL_PROG=$DEF_BROWSER - export BLTK_WL_PROG_FLG= + export BLTK_READER_PROG=$DEF_BROWSER + export BLTK_READER_PROG_FLG= fi - wl_check_prog $BLTK_WL_PROG + wl_check_prog $BLTK_READER_PROG wl_check_error $? - wl_check_run_prog $BLTK_WL_PROG + wl_check_run_prog $BLTK_READER_PROG wl_check_error $? - echo "Browser $BLTK_WL_PROG" + echo "Browser $BLTK_READER_PROG" - wl_check_all_run_prog $BLTK_WL_PROG + wl_check_all_run_prog $BLTK_READER_PROG wl_check_error $? tmp_reader_file=/tmp/$DEF_FILE - if [[ $BLTK_WL_FILE = DEBUG ]] + if [[ $BLTK_READER_FILE = DEBUG ]] then - BLTK_WL_FILE= + BLTK_READER_FILE= fi - if [[ ! -z $BLTK_WL_FILE ]] + if [[ ! -z $BLTK_READER_FILE ]] then - reader_file=$BLTK_WL_FILE + reader_file=$BLTK_READER_FILE title="$BLTK_WL_TITLE" - flags="$BLTK_WL_PROG_FLG" + flags="$BLTK_READER_PROG_FLG" else default_flg=TRUE reader_file=$DEF_FILE @@ -139,13 +147,13 @@ { ST_TIME=`$BLTK_TIME_CMD` - rm -f ./user_delay.tmp + rm -f $USER_DELAY_TMP - CMD="$BLTK_WL_PROG $BLTK_WL_PROG_FLG $reader_file" + CMD="$BLTK_READER_PROG $BLTK_WL_PROG_FLG $reader_file" $CMD & wl_check_error $? "$CMD failed" - BLTK_WL_ALL_PROC_NAME="$BLTK_WL_ALL_PROC_NAME $BLTK_WL_PROG" + BLTK_WL_ALL_PROC_NAME="$BLTK_WL_ALL_PROC_NAME $BLTK_READER_PROG" windowid=`bltk_winid -S "$title"` wl_check_error $? "Cannot get windowid of $BLTK_WL_PRO" @@ -157,11 +165,17 @@ CMD="$BLTK_WL_BIN/$XSE_PROG" $CMD + if [ -f $BLTK_STOP_FILE ] + then + ps -eopid,cmd | grep $BLTK_READER_PROG | sed 's/^ *//' | sed 's/ .*$//' | xargs kill -s SIGKILL + exit 0 + fi + wl_check_error $? "$CMD failed" BLTK_WL_PROC_NAME="$BLTK_WL_PROC_NAME $XSE_PROG" - CMD="cat ./user_delay.tmp" + CMD="cat $USER_DELAY_TMP" DELAY_TIME=`$CMD` wl_check_error $? "$CMD failed" @@ -200,7 +214,12 @@ exit $1 } -startup -run -cleanup 0 +if [ "$WL_READER_ENABLED" = "YES" ] +then + startup + run + cleanup 0 +else + exit 0 +fi --- orig-1.0.9/wl_reader/bltk_wl_reader_xse.c 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/wl_reader/bltk_wl_reader_xse.c 2009-07-17 11:03:55.065881503 +0200 @@ -108,7 +108,7 @@ } } - env = getenv("BLTK_WL_PROG"); + env = getenv("BLTK_READER_PROG"); if (env && strcmp(env, "konqueror") == 0) { scen[LINE_QUIT].string = "Q"; } bltk-1.0.9-sudo.patch: Makefile | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE bltk-1.0.9-sudo.patch --- --- orig-1.0.9/tools/sudo/Makefile 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9-1/tools/sudo/Makefile 2009-07-17 11:03:54.716132089 +0200 @@ -34,8 +34,10 @@ install : FORCE +ifndef PACKAGE_BUILD @echo Root password is required @su root -c "chown root:root $(TARGETS); chmod +s $(TARGETS)" +endif clean : @$(RM) $(TARGETS) *.o $(SHTARGETS) *~ bltk-1.0.9-xse.patch: include/xse.h | 3 ++- tools/bltk/main.c | 3 ++- tools/xse/Makefile | 4 ++-- tools/xse/xse.c | 43 +++++++++++++++++++++++++++++++++++++------ wl_developer/Makefile | 4 ++-- wl_game/Makefile | 4 ++-- wl_office/Makefile | 6 +++--- wl_reader/Makefile | 4 ++-- 8 files changed, 52 insertions(+), 19 deletions(-) --- NEW FILE bltk-1.0.9-xse.patch --- diff -up bltk/include/xse.h.xse bltk/include/xse.h --- bltk/include/xse.h.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/include/xse.h 2009-07-29 11:14:00.971521183 +0200 @@ -87,7 +87,8 @@ #define DELAY_1_MIN (1 * 60 * 1000) #define DELAY_2_MIN (2 * 60 * 1000) #define WINDOWID "WINDOWID" -#define DELAY_FILE "./user_delay.tmp" +#define DELAY_FILE "user_delay.tmp" +#define WINID_FILE "winid.tmp" #define VI_CMD "vi" #define CSCOPE_CMD "cscope" #define F4 "F4" diff -up bltk/tools/bltk/main.c.xse bltk/tools/bltk/main.c --- bltk/tools/bltk/main.c.xse 2009-07-29 11:14:00.915494499 +0200 +++ bltk/tools/bltk/main.c 2009-07-29 11:14:00.989494544 +0200 @@ -329,6 +329,7 @@ static void create_version_file(char *wl static void get_info(int no); static int sig_abort_flg = 0; +static int sig_hup_flg = 0; static int help_cnt = 0; static int version_flg = 0; @@ -540,7 +541,7 @@ void handler(int sig) turn_off_stat_memory(); if (sig == SIGHUP) { - set_signal(SIGHUP); + create_stop_file(); return; } diff -up bltk/tools/xse/Makefile.xse bltk/tools/xse/Makefile --- bltk/tools/xse/Makefile.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/tools/xse/Makefile 2009-07-29 11:14:00.972554857 +0200 @@ -1,10 +1,10 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O2 -I ../../include -fPIC -LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 +LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -Wl,-soname -Wl,libxse.so.0 LIB = ../../lib -LIBNAME = libxse.so +LIBNAME = libxse.so.0 TARGET = $(LIB)/$(LIBNAME) FILES = xse OFILES = ${FILES:=.o} diff -up bltk/tools/xse/xse.c.xse bltk/tools/xse/xse.c --- bltk/tools/xse/xse.c.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/tools/xse/xse.c 2009-07-29 11:14:00.970496029 +0200 @@ -52,16 +52,20 @@ #include #include #include +#include #include char *progname = "xse"; char *xchg_buf = NULL; char *scen_file = NULL; +char *stop_name = "NULL"; int default_release_flg = 0; int check_delay_time_flg = 0; int correct_delay_time_flg = 0; +char winid_tmp[STR_LEN]; + long double user_delay = 0; static Display *display = NULL; @@ -412,8 +416,10 @@ void write_delay(char *fname) char string[STR_LEN]; if (fname == 0) { - fname = DELAY_FILE; + snprintf(string, STR_LEN, "%s/%s", getenv("BLTK_HOME"), DELAY_FILE); + fname = strdup(string); } + fprintf(stderr, "user delay file: %s\n", fname); fd = open(fname, O_RDWR | O_TRUNC | O_CREAT, 0666); if (fd < 0) { @@ -504,8 +510,8 @@ static int x_get_winid_action(char *titl int ret = 0; char cmd[STR_LEN]; - (void)sprintf(cmd, "bltk_winid -S -t %d -s %d \"%s\" >./winid.tmp", - wait_time, sleep_time, title); + (void)sprintf(cmd, "bltk_winid -S -t %d -s %d \"%s\" > %s", + wait_time, sleep_time, title, winid_tmp); ret = system(cmd); if (ret != 0) { (void)fprintf(stderr, "%s failed\n", cmd); @@ -519,7 +525,7 @@ static int get_winid_action(char *title) int ret = 0; char cmd[STR_LEN]; - (void)sprintf(cmd, "bltk_winid -S \"%s\" >./winid.tmp", title); + (void)sprintf(cmd, "%s/bin/bltk_winid -S \"%s\" > %s", getenv("BLTK_ROOT"), title, winid_tmp); ret = system(cmd); if (ret != 0) { (void)fprintf(stderr, "%s failed\n", cmd); @@ -549,7 +555,7 @@ static int end_winid_action(char *title) int ret = 0; char cmd[STR_LEN]; - (void)sprintf(cmd, "bltk_winid -F \"%s\"", title); + (void)sprintf(cmd, "%s/bin/bltk_winid -F \"%s\"", getenv("BLTK_ROOT"), title); ret = system(cmd); if (ret != 0) { (void)fprintf(stderr, "%s failed\n", cmd); @@ -562,6 +568,18 @@ static int end_winid_action(char *title) static pid_t pid_array[1024]; static int pid_cnt = 0; +void chk_stop_file() +{ + int i; + + if (access(stop_name, F_OK) == 0) { + for (i = 0; i < pid_cnt; i++) { + (void)kill(pid_array[i], SIGTERM); + } + xse_exit(0); + } +} + static int runcmd_action(char *name, int wait_time, int state) { int ret = 0; @@ -1096,7 +1114,7 @@ static void run_scen1(xse_scen_t * scen1 } else { get_winid_action(string); } - readf_action("./winid.tmp", count, delay_time); + readf_action(winid_tmp, count, delay_time); setwinid_action(string, xchg_buf, delay_time); delay_time = 0; break; @@ -1189,11 +1207,24 @@ static void run_scen1(xse_scen_t * scen1 if (break_flg) { break; } + chk_stop_file(); } } void init_xse() { + if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0) != 0) + { + xse_exit(2); + } + if (prctl(PR_SET_PDEATHSIG, SIGTERM, 0, 0, 0) != 0) + { + xse_exit(2); + } + + stop_name = getenv("BLTK_STOP_FNAME"); + + snprintf(winid_tmp, sizeof winid_tmp, "%s/%s", getenv("BLTK_HOME"), WINID_FILE); display = XOpenDisplay(NULL); if (display == NULL) { (void)fprintf(stderr, "%s: Cannot open Display\n", progname); diff -up bltk/wl_developer/Makefile.xse bltk/wl_developer/Makefile --- bltk/wl_developer/Makefile.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/wl_developer/Makefile 2009-07-29 11:14:00.975524925 +0200 @@ -1,6 +1,6 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O2 -I../include -LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -lxse -L../lib +LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 ../lib/libxse.so.0 -Wl,-rpath,/usr/lib/bltk BIN = bin @@ -15,7 +15,7 @@ SHFILES = bltk_wl_developer_install blt SHFILES_SH = ${SHFILES:=.sh} SHTARGETS = $(SHFILES:%=$(BIN)/%) -EXTERN_DEPS = $(HIDERS) ../lib/libxse.so +EXTERN_DEPS = $(HIDERS) ../lib/libxse.so.0 all : $(BIN) $(SUBDIRS) $(TARGET) $(SHTARGETS) FORCE diff -up bltk/wl_game/Makefile.xse bltk/wl_game/Makefile --- bltk/wl_game/Makefile.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/wl_game/Makefile 2009-07-29 11:14:00.978525164 +0200 @@ -1,6 +1,6 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O2 -I../include -LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -lxse -L../lib +LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 ../lib/libxse.so.0 -Wl,-rpath,/usr/lib/bltk BIN = bin @@ -18,7 +18,7 @@ SHTARGETS = $(SHFILES:%=$(BIN)/%) DATAFILES = DATATARGETS = $(DATAFILES:%=$(BIN)/%) -EXTERN_DEPS = $(HIDERS) ../lib/libxse.so +EXTERN_DEPS = $(HIDERS) ../lib/libxse.so.0 all : $(BIN) $(SUBDIRS) $(TARGET) $(TARGET1) $(TARGET2) $(SHTARGETS) $(DATATARGETS) diff -up bltk/wl_office/Makefile.xse bltk/wl_office/Makefile --- bltk/wl_office/Makefile.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/wl_office/Makefile 2009-07-29 11:14:00.982494753 +0200 @@ -1,6 +1,6 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O2 -I../include -LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -lxse -L../lib +LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 ../lib/libxse.so.0 -Wl,-rpath,/usr/lib/bltk BIN = bin @@ -15,10 +15,10 @@ SHFILES = bltk_wl_office_install bltk_w SHFILES_SH = ${SHFILES:=.sh} SHTARGETS = $(SHFILES:%=$(BIN)/%) -DATAFILES = scen_install +DATAFILES = scen_install DATATARGETS = $(DATAFILES:%=$(BIN)/%) -EXTERN_DEPS = $(HIDERS) ../lib/libxse.so +EXTERN_DEPS = $(HIDERS) ../lib/libxse.so.0 all : $(BIN) $(SUBDIRS) $(TARGET) $(TARGET1) $(TARGET2) $(SHTARGETS) $(DATATARGETS) diff -up bltk/wl_reader/Makefile.xse bltk/wl_reader/Makefile --- bltk/wl_reader/Makefile.xse 2009-04-10 09:14:20.000000000 +0200 +++ bltk/wl_reader/Makefile 2009-07-29 11:14:00.985519159 +0200 @@ -1,6 +1,6 @@ CFLAGS = -Wall -pedantic -std=c99 -g -O2 -I../include -LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 -lxse -L ../lib +LDFLAGS = -L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11 ../lib/libxse.so.0 -Wl,-rpath,/usr/lib/bltk BIN = bin @@ -17,7 +17,7 @@ SHFILES = bltk_wl_reader_install bltk_w SHFILES_SH = ${SHFILES:=.sh} SHTARGETS = $(SHFILES:%=$(BIN)/%) -EXTERN_DEPS = $(HIDERS) ../lib/libxse.so +EXTERN_DEPS = $(HIDERS) ../lib/libxse.so.0 all : $(BIN) $(SUBDIRS) $(TARGETS) $(SHTARGETS) FORCE Index: bltk.spec =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bltk.spec 24 Jul 2009 18:12:38 -0000 1.4 +++ bltk.spec 29 Jul 2009 13:48:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: bltk Version: 1.0.9 -Release: 2%{?dist} +Release: 4%{?dist} Summary: The BLTK measures notebook battery life under any workload Group: Applications/System @@ -12,7 +12,22 @@ Source2: OOCALC_FILE_SAMPLE.ods Source3: OODRAW_FILE_SAMPLE.odg Source4: OOWRITER_FILE_SAMPLE.odt -Patch0: bltk-1.0.9-all.patch +#Patch0: bltk-1.0.9-all.patch +Patch1: bltk-1.0.9-man.patch +Patch2: bltk-1.0.9-office_scen.patch +Patch3: bltk-1.0.9-bltk_paths.patch +Patch4: bltk-1.0.9-opt_developer.patch +Patch5: bltk-1.0.9-cond_install.patch +Patch6: bltk-1.0.9-opt_game.patch +Patch7: bltk-1.0.9-conf.patch +Patch8: bltk-1.0.9-opt_office.patch +Patch9: bltk-1.0.9-hdparm.patch +Patch10: bltk-1.0.9-opt_player.patch +Patch11: bltk-1.0.9-home_dir.patch +Patch12: bltk-1.0.9-opt_reader.patch +Patch13: bltk-1.0.9-installed.patch +Patch14: bltk-1.0.9-sudo.patch +Patch15: bltk-1.0.9-xse.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -34,9 +49,24 @@ The following workloads are currently im office activities (based on OpenOffice.org office suit) %prep -%setup -q -n %{name} +%setup -q -%patch0 -p1 -b .all +# %patch0 -p1 -b .all +%patch1 -p1 -b .man +%patch2 -p1 -b .office_scen +%patch3 -p1 -b .bltk_paths +%patch4 -p1 -b .opt_developer +%patch5 -p1 -b .cond_install +%patch6 -p1 -b .opt_game +%patch7 -p1 -b .conf +%patch8 -p1 -b .opt_office +%patch9 -p1 -b .hdparm +%patch10 -p1 -b .opt_player +%patch11 -p1 -b .home_dir +%patch12 -p1 -b .opt_reader +%patch13 -p1 -b .installed +%patch14 -p1 -b .sudo +%patch15 -p1 -b .xse %build export CFLAGS="$RPM_OPT_FLAGS" @@ -58,8 +88,12 @@ mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/blt mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/bltk/wl_player/bin mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/bltk/wl_reader/bin mkdir -p ${RPM_BUILD_ROOT}/etc +mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man{1,5} install -m 644 %{SOURCE1} ${RPM_BUILD_ROOT}/etc +install -m 644 doc/bltk.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1 +install -m 644 doc/bltk_report.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1 +install -m 644 doc/bltk.conf.5 ${RPM_BUILD_ROOT}/%{_mandir}/man5 install -m 755 bin/bat_drain ${RPM_BUILD_ROOT}%{_libdir}/bltk/bin/bat_drain install -m 755 bin/bat_drain_table ${RPM_BUILD_ROOT}%{_libdir}/bltk/bin/bat_drain_table @@ -122,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/bltk_report_table %{_bindir}/bltk_report_uncompress +%{_mandir}/man1/bltk* +%{_mandir}/man5/bltk.conf.* + %{_libdir}/bltk/lib/libxse.so.0 %{_libdir}/bltk/bin/bat_drain @@ -194,6 +231,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/bltk/wl_reader/war_and_peace.html %changelog +* Tue Jul 28 2009 Jiri Skala 1.0.9-4 +- added man mages +- splitted patch to more files +- filled up scen file of office workload +- updated to latest upstream sources + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Jul 2009 10:27:38 -0000 1.3 +++ sources 29 Jul 2009 13:48:31 -0000 1.4 @@ -1 +1 @@ -d4b3d79cd6ff11fa1fcd8a4abcdb6882 bltk-1.0.9.tar.gz +d3234b3eefc22b4e6a6aa538a5b6e20d bltk-1.0.9.tar.gz --- bltk-1.0.9-all.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 14:18:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:18:29 +0000 Subject: [pkgdb] ndoutils was added for stevetraylen Message-ID: <20090729141829.5431210F88F@bastion2.fedora.phx.redhat.com> ausil has added Package ndoutils with summary Stores data from Nagios in a database. ausil has approved Package ndoutils ausil has added a Fedora devel branch for ndoutils with an owner of stevetraylen ausil has approved ndoutils in Fedora devel ausil has approved Package ndoutils ausil has set commit to Approved for 107427 on ndoutils (Fedora devel) ausil has set checkout to Approved for 107427 on ndoutils (Fedora devel) ausil has set build to Approved for 107427 on ndoutils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndoutils From pkgdb at fedoraproject.org Wed Jul 29 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:18:30 +0000 Subject: [pkgdb] ndoutils summary updated by ausil Message-ID: <20090729141830.E1EAF10F89D@bastion2.fedora.phx.redhat.com> ausil set package ndoutils summary to Stores data from Nagios in a database. To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndoutils From pkgdb at fedoraproject.org Wed Jul 29 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:18:30 +0000 Subject: [pkgdb] ndoutils (Fedora EPEL, 5) updated by ausil Message-ID: <20090729141831.08FD510F8A1@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for ndoutils ausil has set commit to Approved for 107427 on ndoutils (Fedora 11) ausil has set checkout to Approved for 107427 on ndoutils (Fedora 11) ausil has set build to Approved for 107427 on ndoutils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndoutils From ausil at fedoraproject.org Wed Jul 29 14:18:36 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 29 Jul 2009 14:18:36 +0000 (UTC) Subject: rpms/ndoutils - New directory Message-ID: <20090729141836.1A8E611C00CE@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/ndoutils In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq11252/rpms/ndoutils Log Message: Directory /cvs/pkgs/rpms/ndoutils added to the repository From ausil at fedoraproject.org Wed Jul 29 14:18:36 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 29 Jul 2009 14:18:36 +0000 (UTC) Subject: rpms/ndoutils/devel - New directory Message-ID: <20090729141836.39BF311C00D5@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/ndoutils/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq11252/rpms/ndoutils/devel Log Message: Directory /cvs/pkgs/rpms/ndoutils/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:18:30 +0000 Subject: [pkgdb] ndoutils (Fedora EPEL, 5) updated by ausil Message-ID: <20090729141831.8229E10F8B1@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for ndoutils ausil has set commit to Approved for 107427 on ndoutils (Fedora 10) ausil has set checkout to Approved for 107427 on ndoutils (Fedora 10) ausil has set build to Approved for 107427 on ndoutils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndoutils From pkgdb at fedoraproject.org Wed Jul 29 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:18:30 +0000 Subject: [pkgdb] ndoutils (Fedora EPEL, 5) updated by ausil Message-ID: <20090729141831.BF56410F8B6@bastion2.fedora.phx.redhat.com> ausil added a Fedora EPEL 5 branch for ndoutils ausil has set commit to Approved for 107427 on ndoutils (Fedora EPEL 5) ausil has set checkout to Approved for 107427 on ndoutils (Fedora EPEL 5) ausil has set build to Approved for 107427 on ndoutils (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndoutils From ausil at fedoraproject.org Wed Jul 29 14:18:41 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 29 Jul 2009 14:18:41 +0000 (UTC) Subject: rpms/ndoutils Makefile,NONE,1.1 Message-ID: <20090729141841.B27ED11C00CE@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/ndoutils In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq11252/rpms/ndoutils Added Files: Makefile Log Message: Setup of module ndoutils --- NEW FILE Makefile --- # Top level Makefile for module ndoutils all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From ausil at fedoraproject.org Wed Jul 29 14:18:41 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 29 Jul 2009 14:18:41 +0000 (UTC) Subject: rpms/ndoutils/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729141841.F03D111C00D5@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/ndoutils/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq11252/rpms/ndoutils/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ndoutils --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ndoutils # $Id: Makefile,v 1.1 2009/07/29 14:18:41 ausil Exp $ NAME := ndoutils SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tuxbrewr at fedoraproject.org Wed Jul 29 14:22:29 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 29 Jul 2009 14:22:29 +0000 (UTC) Subject: rpms/subtitlecomposer/F-11 subtitlecomposer.desktop, 1.4, 1.5 subtitlecomposer.spec, 1.4, 1.5 Message-ID: <20090729142229.2777911C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/subtitlecomposer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12159 Modified Files: subtitlecomposer.desktop subtitlecomposer.spec Log Message: Fix .desktop file, optimize scriptlets, fix dir ownerships Index: subtitlecomposer.desktop =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/F-11/subtitlecomposer.desktop,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.desktop 31 Mar 2009 20:25:12 -0000 1.4 +++ subtitlecomposer.desktop 29 Jul 2009 14:22:28 -0000 1.5 @@ -6,4 +6,4 @@ Exec=subtitlecomposer Icon=subtitlecomposer Terminal=false Type=Application -Categories=Qt;KDE;Video;AudioVideoEditing; +Categories=Qt;KDE;AudioVideo;AudioVideoEditing; Index: subtitlecomposer.spec =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/F-11/subtitlecomposer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.spec 10 Jun 2009 00:26:17 -0000 1.4 +++ subtitlecomposer.spec 29 Jul 2009 14:22:28 -0000 1.5 @@ -1,6 +1,6 @@ Name: subtitlecomposer Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A text-based subtitles editor License: GPLv2+ @@ -18,10 +18,8 @@ BuildRequires: kdelibs4-devel BuildRequires: gettext BuildRequires: giflib-devel BuildRequires: pcre-devel -Requires(post): /sbin/ldconfig xdg-utils -Requires(postun): /sbin/ldconfig xdg-utils -Requires(post): shared-mime-info -Requires(postun): shared-mime-info +Requires(post): /sbin/ldconfig +Requires(postun): /sbin/ldconfig %description A text-based subtitles editor @@ -35,7 +33,7 @@ pushd %{_target_platform} %{cmake_kde4} .. popd -make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 +make %{?_smp_mflags} -C %{_target_platform} %install @@ -43,6 +41,7 @@ rm -rf $RPM_BUILD_ROOT make install/fast DESTDIR=${RPM_BUILD_ROOT} -C %{_target_platform} +# pixmaps is deprecated, really still needed? -- Rex %{__install} -p -D %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=$RPM_BUILD_ROOT%{_kde4_datadir}/applications/kde4 %{SOURCE1} @@ -54,20 +53,27 @@ rm -rf $RPM_BUILD_ROOT %post /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : %postun /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +if [ $1 -eq 0 ] ; then + update-mime-database %{_datadir}/mime &> /dev/null + touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null + gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : +fi + +%posttrans +update-mime-database %{_datadir}/mime &> /dev/null +gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : + %files -f %{name}.lang %defattr(-,root,root,-) -%{_bindir}/subtitlecomposer +%{_kde4_bindir}/subtitlecomposer %attr(644,root,root) %{_datadir}/pixmaps/subtitlecomposer.png %{_kde4_datadir}/applications/kde4/subtitlecomposer.desktop -%{_datadir}/config/subtitlecomposerrc +%{_kde4_configdir}/subtitlecomposerrc %{_kde4_iconsdir}/hicolor/128x128/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/128x128/actions/* %{_kde4_iconsdir}/hicolor/16x16/actions/* @@ -76,11 +82,15 @@ update-mime-database %{_datadir}/mime &> %{_kde4_iconsdir}/hicolor/32x32/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/48x48/apps/* %{_kde4_iconsdir}/hicolor/scalable/actions/* -%{_kde4_appsdir}/subtitlecomposer/* -%{_kde4_appsdir}/subtitlecomposer/pics/* +%{_kde4_appsdir}/subtitlecomposer/ %{_datadir}/mime/packages/subtitlecomposer.xml %changelog +* Fri Jul 24 2009 Rex Dieter 0.5.3-2 +- .desktop: Categories: -Video +AudioVideo +- optimize scriptlets (drop xdg-utils, shared-mime-info deps) +- own %%{_kde4_appsdir}/subtitlecomposer/ + * Tue Jun 09 2009 Steven M. Parrish 0.5.3-1 - New upstream release - added Czech, Brazilian Portuguese, Bulgarian, French and German From rdieter at fedoraproject.org Wed Jul 29 14:28:19 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 14:28:19 +0000 (UTC) Subject: rpms/koffice/F-11 koffice-1.6.3-dejavu_fonts.patch, 1.1, 1.2 koffice.spec, 1.105, 1.106 Message-ID: <20090729142819.2E03511C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13617 Modified Files: koffice-1.6.3-dejavu_fonts.patch koffice.spec Log Message: * Wed Jul 29 2009 Rex Dieter 2:1.6.3-23.20090306svn - -kformula: use dejavu-lgc-sans-fonts - optimize scriptlets koffice-1.6.3-dejavu_fonts.patch: Makefile.am | 2 +- contextstyle.cc | 2 +- fontstyle.cc | 8 +++++++- symboltable.cc | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) Index: koffice-1.6.3-dejavu_fonts.patch =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-11/koffice-1.6.3-dejavu_fonts.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- koffice-1.6.3-dejavu_fonts.patch 28 Jul 2009 20:47:34 -0000 1.1 +++ koffice-1.6.3-dejavu_fonts.patch 29 Jul 2009 14:28:18 -0000 1.2 @@ -41,7 +41,7 @@ diff -up koffice-1.6.3/lib/kformula/font i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect")); +*/ + KMessageBox::information(qApp->mainWidget(), -+ i18n("Some symbol fonts for formulas was font to be missing")); ++ i18n("Some symbol fonts for formulas are missing")); } m_installed = true; } Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/F-11/koffice.spec,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- koffice.spec 28 Jul 2009 23:49:07 -0000 1.105 +++ koffice.spec 29 Jul 2009 14:28:18 -0000 1.106 @@ -11,7 +11,7 @@ BuildRequires: libutempter-devel Name: koffice Epoch: 2 Version: 1.6.3 -Release: 22.%{svn}svn%{?dist} +Release: 23.%{svn}svn%{?dist} Summary: An integrated office suite Group: Applications/Productivity @@ -126,8 +126,6 @@ KOffice is an integrated office suite. Summary: Core support files for %{name} Group: Applications/Productivity Requires: %{name}-libs = %{epoch}:%{version}-%{release} -Requires(post): xdg-utils -Requires(postun): xdg-utils Requires: perl Conflicts: koffice-i18n < 4:%{version} %description core @@ -236,7 +234,11 @@ Group: Applications/Productivit Requires: %{name}-core = %{epoch}:%{version}-%{release} # for cmex10 Requires: mathml-fonts -Requires: dejavu-sans-fonts +%if 0%{?fedora} > 10 +Requires: dejavu-lgc-sans-fonts +%else +Requires: dejavu-lgc-fonts +%endif %description kformula %{summary}. @@ -258,17 +260,24 @@ Requires: %{name}-core = %{epoch} %prep %setup -q -#patch1 -p0 -b .CVE-2007-3387 -#patch2 -p0 -b .CVE-2007-4352-5392-5393 -#patch3 -p1 -b .gcc43 +%if 0%{?svn:1} +%patch100 -p1 -b .svn +%patch101 -p1 -b .quint32 +%else +%patch1 -p0 -b .CVE-2007-3387 +%patch2 -p0 -b .CVE-2007-4352-5392-5393 +%patch3 -p1 -b .gcc43 +%endif %patch4 -p1 -b .dejavu +# use LGC variant instead +sed -i.dejavu-lgc \ + -e 's|DejaVu Sans|DejaVu LGC Sans|' \ + -e 's|dejavu sans|dejavu lgc sans|' \ + lib/kformula/{contextstyle,fontstyle,symboltable}.cc %patch50 -p1 -b glibc_strrchr -%patch100 -p1 -b .svn -%patch101 -p1 -b .quint32 - # hack/fix for newer automake sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh make -f admin/Makefile.common @@ -350,58 +359,59 @@ rm -f %{buildroot}%{_libdir}/libkugar*.s %clean rm -rf %{buildroot} - %post core -xdg-icon-resource forceupdate --theme crystalsvg 2> /dev/null || : -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -xdg-icon-resource forceupdate --theme locolor 2> /dev/null || : -xdg-desktop-menu forceupdate 2> /dev/null || : +touch --no-create %{_datadir}/icons/crystalsvg &> /dev/null || : +touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : +touch --no-create %{_datadir}/icons/locolor &> /dev/null || : %postun core -xdg-icon-resource forceupdate --theme crystalsvg 2> /dev/null || : -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -xdg-icon-resource forceupdate --theme locolor 2> /dev/null || : -xdg-desktop-menu forceupdate 2> /dev/null || : - -%post kword -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%postun kword -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%post kpresenter -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%postun kpresenter -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%post kugar -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%postun kugar -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%post kexi -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%postun kexi -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%post kchart -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : - -%postun kchart -/sbin/ldconfig -xdg-desktop-menu forceupdate 2> /dev/null || : +if [ $1 -eq 0 ]; then + gtk-update-icon-cache %{_datadir}/icons/crystalsvg &> /dev/null || : + gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : + gtk-update-icon-cache %{_datadir}/icons/locolor &> /dev/null || : + update-desktop-database -q &> /dev/null ||: +fi + +%posttrans core +gtk-update-icon-cache %{_datadir}/icons/crystalsvg &> /dev/null || : +gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +gtk-update-icon-cache %{_datadir}/icons/locolor &> /dev/null || : +update-desktop-database -q &> /dev/null ||: + +%post kword -p /sbin/ldconfig + +%postun kword -p /sbin/ldconfig + +%posttrans kword +update-desktop-database -q &> /dev/null ||: + +%post kpresenter -p /sbin/ldconfig + +%postun kpresenter -p /sbin/ldconfig + +%posttrans kpresenter +update-desktop-database -q &> /dev/null ||: + +%post kugar -p /sbin/ldconfig + +%postun kugar -p /sbin/ldconfig + +%posttrans kugar +update-desktop-database -q &> /dev/null ||: + +%post kexi -p /sbin/ldconfig + +%postun kexi -p /sbin/ldconfig + +%posttrans kexi +update-desktop-database -q &> /dev/null ||: + +%post kchart -p /sbin/ldconfig + +%postun kchart -p /sbin/ldconfig + +%posttrans kchart +update-desktop-database -q &> /dev/null ||: %post filters -p /sbin/ldconfig %postun filters -p /sbin/ldconfig @@ -748,6 +758,10 @@ xdg-desktop-menu forceupdate 2> /dev/nul %changelog +* Wed Jul 29 2009 Rex Dieter 2:1.6.3-23.20090306svn +- -kformula: use dejavu-lgc-sans-fonts +- optimize scriptlets + * Tue Jul 28 2009 Rex Dieter 2:1.6.3-22.20090306svn - -kformula: omit bundled fonts - koffice kword crash with formulas (#514217) From lennart at fedoraproject.org Wed Jul 29 14:28:33 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Wed, 29 Jul 2009 14:28:33 +0000 (UTC) Subject: rpms/pulseaudio/devel pulseaudio.spec,1.87,1.88 Message-ID: <20090729142833.A60B811C00CE@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13781 Modified Files: pulseaudio.spec Log Message: drop -g from CFLAGS which was accidentaly added Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/pulseaudio.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- pulseaudio.spec 27 Jul 2009 23:55:47 -0000 1.87 +++ pulseaudio.spec 29 Jul 2009 14:28:33 -0000 1.88 @@ -189,7 +189,7 @@ This package contains command line utili %setup -q -T -b0 -n pulseaudio-0.9.16-test3 %build -CFLAGS="-ggdb" %configure --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-access-group=pulse-access --disable-hal +%configure --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-access-group=pulse-access --disable-hal make LIBTOOL=/usr/bin/libtool %{?_smp_mflags} make doxygen From rvinyard at fedoraproject.org Wed Jul 29 14:28:49 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Wed, 29 Jul 2009 14:28:49 +0000 (UTC) Subject: rpms/clips/F-11 .cvsignore, 1.5, 1.6 clips.spec, 1.12, 1.13 sources, 1.7, 1.8 DR0873.txt, 1.1, NONE FunctionContext.zip, 1.1, NONE clips-6.24-linux.patch, 1.1, NONE clips-6.24-time-sysdep.c.patch, 1.1, NONE clips-init.el, 1.1, NONE clips-mode.el, 1.1, NONE inf-clips.el, 1.1, NONE objrtmch.c, 1.1, NONE xclips.desktop, 1.2, NONE xclips.png, 1.1, NONE Message-ID: <20090729142849.4420D11C00CE@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/clips/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13835 Modified Files: .cvsignore clips.spec sources Removed Files: DR0873.txt FunctionContext.zip clips-6.24-linux.patch clips-6.24-time-sysdep.c.patch clips-init.el clips-mode.el inf-clips.el objrtmch.c xclips.desktop xclips.png Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Mar 2009 16:43:44 -0000 1.5 +++ .cvsignore 29 Jul 2009 14:28:48 -0000 1.6 @@ -1,12 +1,2 @@ -abstract.pdf -clips_core_source_624.tar.Z -x_windows_ide_source_624.tar.Z -examples_624.tar.Z -apg.pdf -arch5-1.pdf -bpg.pdf -ig.pdf -ug.pdf -3CCP.pdf -clips-doc-html.tar.bz2 -clips-6.24-linux.patch +clips-6.30.0.20090722svn.tar.bz2 +clips-6.30.0.20090722svn-doc.tar.bz2 Index: clips.spec =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-11/clips.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- clips.spec 3 Mar 2009 16:43:44 -0000 1.12 +++ clips.spec 29 Jul 2009 14:28:48 -0000 1.13 @@ -1,42 +1,19 @@ -Summary: CLIPS language for developing expert systems +%define svnver .20090722svn +Summary: Language for developing expert systems Name: clips -Version: 6.24 -Release: 27%{?dist} +Version: 6.30.0 +Release: 0.1%{?svnver}%{?dist} Url: http://clipsrules.sourceforge.net License: GPLv2 Group: Development/Tools -Source0: http://downloads.sourceforge.net/clipsrules/clips_core_source_624.tar.Z -Source1: http://downloads.sourceforge.net/clipsrules/x_windows_ide_source_624.tar.Z -Source2: http://downloads.sourceforge.net/clipsrules/examples_624.tar.Z -Source3: abstract.pdf -Source4: http://clipsrules.sourceforge.net/documentation/v624/apg.pdf -Source5: http://clipsrules.sourceforge.net/documentation/other/arch5-1.pdf -Source6: http://clipsrules.sourceforge.net/documentation/v624/bpg.pdf -Source7: http://clipsrules.sourceforge.net/documentation/v624/ig.pdf -Source8: http://clipsrules.sourceforge.net/documentation/v624/ug.pdf -Source9: http://clipsrules.sourceforge.net/documentation/other/3CCP.pdf -Source10: xclips.png -Source11: clips-init.el -Source12: clips-mode.el -Source13: inf-clips.el -Source14: objrtmch.c -Source15: FunctionContext.zip -Source16: DR0873.txt -Source17: xclips.desktop -# The following source was generated with the following commands: -# mkdir html -# cd html -# for i in apg.htm bpg.htm ig.htm ug.htm; do -# wget -p -nH --cut-dirs=2 --convert-links http://clipsrules.sourceforge.net/documentation/v624/$i -# dos2unix $i -# done -# cd .. -# tar -cjf clips-doc-html.tar.bz2 html -Source18: clips-doc-html.tar.bz2 -Patch0: clips-6.24-linux.patch -Patch1: clips-6.24-time-sysdep.c.patch +Source0: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}.tar.bz2 +Source1: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}-doc.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 BuildRequires: ncurses-devel +%else +BuildRequires: libtermcap-devel +%endif BuildRequires: libXt-devel libXext-devel libXmu-devel libXaw-devel BuildRequires: xorg-x11-server-Xorg xorg-x11-proto-devel xorg-x11-xbitmaps BuildRequires: desktop-file-utils @@ -45,21 +22,30 @@ BuildRequires: pkgconfig BuildRequires: ImageMagick %description -CLIPS is a productive development and delivery expert system tool which -provides a complete environment for the construction of rule and/or object -based expert systems. Created in 1985 by NASA, CLIPS is now widely used -throughout the government, industry, and academia. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. This package provides the CLIPS command line environment and the clips library. %package libs -Summary: Run-time libraries for CLIPS applications +Summary: Run-time C libraries for CLIPS applications Group: System Environment/Libraries %description libs This package contains the run-time libraries needed for CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package devel Summary: C headers for developing programs that will embed CLIPS Group: Development/Libraries @@ -70,8 +56,15 @@ Requires: ncurses-devel pkgconfig This package contains the libraries and header files needed for developing embedded CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package xclips -Summary: X interface to CLIPS +Summary: X interface to the CLIPS expert system Group: Development/Tools Requires: %{name} = %{version}-%{release} Requires: hicolor-icon-theme @@ -79,14 +72,31 @@ Requires: hicolor-icon-theme %description xclips X interface to CLIPS. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package doc -Summary: Documentation for CLIPS +Summary: Documentation and examples for the CLIPS expert system Group: Documentation +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif %description doc This package contains documentation for the CLIPS library as well as numerous examples. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + The following are some of the documents in this package: - Proceedings of the Third Conference on CLIPS, 1994 (3CCP.pdf) - Application abstracts (abstract.pdf) @@ -96,58 +106,53 @@ The following are some of the documents - CLIPS Architecture Manual (arch5-1.pdf) - CLIPS Users Guide (ug.pdf,ug.htm) +%package emacs +Summary: EMACS add-ons for the CLIPS expert system +Group: Development/Tools +Requires: emacs-common +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif + +%description emacs +This package contains CLIPS emacs scripts. + +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. %prep -%setup -q -a 1 -a 2 -a 15 -a 18 -c -mv x-prjct/xinterface clipssrc/ -mv x-prjct/color clipssrc/ -mv clipssrc/clipssrc clipssrc/clips -%patch0 -p0 -%patch1 -p0 -#move in the function context patch files -mv envrnmnt.h clipssrc/clips -mv envrnmnt.c clipssrc/clips -mv evaluatn.c clipssrc/clips -mv extnfunc.h clipssrc/clips -mv extnfunc.c clipssrc/clips -#move in the object-pattern-match-delay bug fix -cp %{SOURCE14} clipssrc/clips -chmod a-x clipssrc/*/*.h clipssrc/*/*.c -chmod a-x Examples/*.clp -chmod a-x Examples/Cholesterol/* -chmod u+x clipssrc/autogen.sh -for i in %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE16}; do - cp $i . -done +%setup -q -n %{name}-%{version}%{?svnver} -a 1 +%{__mv} %{name}-%{version}%{?svnver}-doc/* documentation/ %build -cd clipssrc -./autogen.sh %configure --disable-static %{__make} %{?_smp_mflags} %install -cd clipssrc %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} INSTALL="%{__install} -p" find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' -%{__install} -p --mode=0644 -D %{SOURCE11} %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{__install} -p --mode=0644 -D %{SOURCE12} %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el -%{__install} -p --mode=0644 -D %{SOURCE13} %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el +%{__install} -p --mode=0644 -D documentation/clips-init.el %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{__install} -p --mode=0644 -D documentation/clips-mode.el %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el +%{__install} -p --mode=0644 -D documentation/inf-clips.el %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el # create icons # create 16x16, 32x32, 64x64, 128x128 icons for s in 16 32 64 128 ; do %{__mkdir_p} %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/ convert -scale ${s}x${s} \ - %{SOURCE10} \ + x_window_system/xinterface/xclips.png \ %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/xclips.png done desktop-file-install --vendor fedora \ --dir %{buildroot}%{_datadir}/applications \ --add-category X-Fedora \ - %{SOURCE17} + x_window_system/xinterface/xclips.desktop %clean %{__rm} -rf %{buildroot} @@ -172,18 +177,13 @@ fi %files %defattr(-,root,root,-) %{_bindir}/clips -%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{_datadir}/emacs/site-lisp/clips-mode.el -%{_datadir}/emacs/site-lisp/inf-clips.el %files libs %defattr(-,root,root,-) %{_libdir}/*.so.* %{_datadir}/%{name}/ -%doc clipssrc/readme.txt -%doc clipssrc/COPYING_LINUX_PATCH -%doc clipssrc/README_LINUX_PATCH -%doc DR0873.txt +%doc COPYING_CLIPS_LINUX +%doc README_CLIPS_LINUX %files devel %defattr(-,root,root,-) @@ -200,13 +200,31 @@ fi %files doc %defattr(-,root,root,-) -%doc Examples/ -%doc abstract.pdf arch5-1.pdf bpg.pdf ug.pdf 3CCP.pdf -%doc apg.pdf -%doc ig.pdf -%doc html/ +%doc examples/ +%doc documentation/3CCP.pdf +%doc documentation/abstract.pdf +%doc documentation/apg.pdf +%doc documentation/architecture5-1.pdf +%doc documentation/bpg.pdf +%doc documentation/ig.pdf +%doc documentation/ug.pdf +%doc documentation/html/ + +%files emacs +%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{_datadir}/emacs/site-lisp/clips-mode.el +%{_datadir}/emacs/site-lisp/inf-clips.el %changelog +* Mon Jul 27 2009 Rick L Vinyard Jr 6.30.0-0.1.20090722svn +- New release +- Removed multiple sources and patches that are in new release +- Improved summaries and descriptions +- Added clips-emacs subpackage + +* Fri Jul 24 2009 Fedora Release Engineering - 6.24-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Rick L Vinyard Jr 6.24-27 - Updated desktop entry file to add categories and remove deprecated items - Added hicolor-icon-theme requires to xclips Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Mar 2009 16:43:44 -0000 1.7 +++ sources 29 Jul 2009 14:28:49 -0000 1.8 @@ -1,12 +1,2 @@ -cd3ecddc4e538b8af0e5cf08ab7fd89c abstract.pdf -ccba9d912375e57a1b7d9eba12da4198 clips_core_source_624.tar.Z -1bb0d0e684742188b8c14912c26f12cb x_windows_ide_source_624.tar.Z -f5c02b997199f3ede779b8502af2ba09 examples_624.tar.Z -fae2267d96fb95603345e91c9990caaa apg.pdf -9a13d2ed18fe6ab67902d5bce29957cb arch5-1.pdf -63891971aa782dc67c2de0579647247e bpg.pdf -89beca5caa08b30d8285cca7f1df1d26 ig.pdf -44e54697a8acf3509bc4ca51d88b65bd ug.pdf -a6a60733af08f9e9e6d0928272ad4dd9 3CCP.pdf -99f463e8a2536198da37e9dc73304322 clips-doc-html.tar.bz2 -0cb3238a5be85211658ba7ca47257bf8 clips-6.24-linux.patch +96743a6cba5a88f72a4d652d4c917802 clips-6.30.0.20090722svn.tar.bz2 +40f6d46315d89ea0b3701b4433d58840 clips-6.30.0.20090722svn-doc.tar.bz2 --- DR0873.txt DELETED --- --- FunctionContext.zip DELETED --- --- clips-6.24-linux.patch DELETED --- --- clips-6.24-time-sysdep.c.patch DELETED --- --- clips-init.el DELETED --- --- clips-mode.el DELETED --- --- inf-clips.el DELETED --- --- objrtmch.c DELETED --- --- xclips.desktop DELETED --- From rvinyard at fedoraproject.org Wed Jul 29 14:29:04 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Wed, 29 Jul 2009 14:29:04 +0000 (UTC) Subject: rpms/clips/EL-5 .cvsignore, 1.5, 1.6 clips.spec, 1.9, 1.10 sources, 1.7, 1.8 DR0873.txt, 1.1, NONE FunctionContext.zip, 1.1, NONE clips-6.24-time-sysdep.c.patch, 1.1, NONE clips-init.el, 1.1, NONE clips-mode.el, 1.1, NONE inf-clips.el, 1.1, NONE objrtmch.c, 1.1, NONE xclips.desktop, 1.1, NONE xclips.png, 1.1, NONE Message-ID: <20090729142904.21C7011C00CE@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/clips/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13935 Modified Files: .cvsignore clips.spec sources Removed Files: DR0873.txt FunctionContext.zip clips-6.24-time-sysdep.c.patch clips-init.el clips-mode.el inf-clips.el objrtmch.c xclips.desktop xclips.png Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clips/EL-5/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Mar 2009 19:28:06 -0000 1.5 +++ .cvsignore 29 Jul 2009 14:29:03 -0000 1.6 @@ -1,12 +1,2 @@ -abstract.pdf -clips_core_source_624.tar.Z -x_windows_ide_source_624.tar.Z -examples_624.tar.Z -apg.pdf -arch5-1.pdf -bpg.pdf -ig.pdf -ug.pdf -3CCP.pdf -clips-doc-html.tar.bz2 -clips-6.24-linux.patch +clips-6.30.0.20090722svn.tar.bz2 +clips-6.30.0.20090722svn-doc.tar.bz2 Index: clips.spec =================================================================== RCS file: /cvs/pkgs/rpms/clips/EL-5/clips.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- clips.spec 3 Mar 2009 19:28:06 -0000 1.9 +++ clips.spec 29 Jul 2009 14:29:03 -0000 1.10 @@ -1,42 +1,19 @@ -Summary: CLIPS language for developing expert systems +%define svnver .20090722svn +Summary: Language for developing expert systems Name: clips -Version: 6.24 -Release: 27%{?dist} +Version: 6.30.0 +Release: 0.1%{?svnver}%{?dist} Url: http://clipsrules.sourceforge.net License: GPLv2 Group: Development/Tools -Source0: http://downloads.sourceforge.net/clipsrules/clips_core_source_624.tar.Z -Source1: http://downloads.sourceforge.net/clipsrules/x_windows_ide_source_624.tar.Z -Source2: http://downloads.sourceforge.net/clipsrules/examples_624.tar.Z -Source3: abstract.pdf -Source4: http://clipsrules.sourceforge.net/documentation/v624/apg.pdf -Source5: http://clipsrules.sourceforge.net/documentation/other/arch5-1.pdf -Source6: http://clipsrules.sourceforge.net/documentation/v624/bpg.pdf -Source7: http://clipsrules.sourceforge.net/documentation/v624/ig.pdf -Source8: http://clipsrules.sourceforge.net/documentation/v624/ug.pdf -Source9: http://clipsrules.sourceforge.net/documentation/other/3CCP.pdf -Source10: xclips.png -Source11: clips-init.el -Source12: clips-mode.el -Source13: inf-clips.el -Source14: objrtmch.c -Source15: FunctionContext.zip -Source16: DR0873.txt -Source17: xclips.desktop -# The following source was generated with the following commands: -# mkdir html -# cd html -# for i in apg.htm bpg.htm ig.htm ug.htm; do -# wget -p -nH --cut-dirs=2 --convert-links http://clipsrules.sourceforge.net/documentation/v624/$i -# dos2unix $i -# done -# cd .. -# tar -cjf clips-doc-html.tar.bz2 html -Source18: clips-doc-html.tar.bz2 -Patch0: clips-6.24-linux.patch -Patch1: clips-6.24-time-sysdep.c.patch +Source0: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}.tar.bz2 +Source1: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}-doc.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 BuildRequires: ncurses-devel +%else +BuildRequires: libtermcap-devel +%endif BuildRequires: libXt-devel libXext-devel libXmu-devel libXaw-devel BuildRequires: xorg-x11-server-Xorg xorg-x11-proto-devel xorg-x11-xbitmaps BuildRequires: desktop-file-utils @@ -45,21 +22,30 @@ BuildRequires: pkgconfig BuildRequires: ImageMagick %description -CLIPS is a productive development and delivery expert system tool which -provides a complete environment for the construction of rule and/or object -based expert systems. Created in 1985 by NASA, CLIPS is now widely used -throughout the government, industry, and academia. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. This package provides the CLIPS command line environment and the clips library. %package libs -Summary: Run-time libraries for CLIPS applications +Summary: Run-time C libraries for CLIPS applications Group: System Environment/Libraries %description libs This package contains the run-time libraries needed for CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package devel Summary: C headers for developing programs that will embed CLIPS Group: Development/Libraries @@ -70,8 +56,15 @@ Requires: ncurses-devel pkgconfig This package contains the libraries and header files needed for developing embedded CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package xclips -Summary: X interface to CLIPS +Summary: X interface to the CLIPS expert system Group: Development/Tools Requires: %{name} = %{version}-%{release} Requires: hicolor-icon-theme @@ -79,14 +72,31 @@ Requires: hicolor-icon-theme %description xclips X interface to CLIPS. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package doc -Summary: Documentation for CLIPS +Summary: Documentation and examples for the CLIPS expert system Group: Documentation +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif %description doc This package contains documentation for the CLIPS library as well as numerous examples. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + The following are some of the documents in this package: - Proceedings of the Third Conference on CLIPS, 1994 (3CCP.pdf) - Application abstracts (abstract.pdf) @@ -96,58 +106,53 @@ The following are some of the documents - CLIPS Architecture Manual (arch5-1.pdf) - CLIPS Users Guide (ug.pdf,ug.htm) +%package emacs +Summary: EMACS add-ons for the CLIPS expert system +Group: Development/Tools +Requires: emacs-common +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif + +%description emacs +This package contains CLIPS emacs scripts. + +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. %prep -%setup -q -a 1 -a 2 -a 15 -a 18 -c -mv x-prjct/xinterface clipssrc/ -mv x-prjct/color clipssrc/ -mv clipssrc/clipssrc clipssrc/clips -%patch0 -p0 -%patch1 -p0 -#move in the function context patch files -mv envrnmnt.h clipssrc/clips -mv envrnmnt.c clipssrc/clips -mv evaluatn.c clipssrc/clips -mv extnfunc.h clipssrc/clips -mv extnfunc.c clipssrc/clips -#move in the object-pattern-match-delay bug fix -cp %{SOURCE14} clipssrc/clips -chmod a-x clipssrc/*/*.h clipssrc/*/*.c -chmod a-x Examples/*.clp -chmod a-x Examples/Cholesterol/* -chmod u+x clipssrc/autogen.sh -for i in %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE16}; do - cp $i . -done +%setup -q -n %{name}-%{version}%{?svnver} -a 1 +%{__mv} %{name}-%{version}%{?svnver}-doc/* documentation/ %build -cd clipssrc -./autogen.sh %configure --disable-static %{__make} %{?_smp_mflags} %install -cd clipssrc %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} INSTALL="%{__install} -p" find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' -%{__install} -p --mode=0644 -D %{SOURCE11} %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{__install} -p --mode=0644 -D %{SOURCE12} %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el -%{__install} -p --mode=0644 -D %{SOURCE13} %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el +%{__install} -p --mode=0644 -D documentation/clips-init.el %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{__install} -p --mode=0644 -D documentation/clips-mode.el %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el +%{__install} -p --mode=0644 -D documentation/inf-clips.el %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el # create icons # create 16x16, 32x32, 64x64, 128x128 icons for s in 16 32 64 128 ; do %{__mkdir_p} %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/ convert -scale ${s}x${s} \ - %{SOURCE10} \ + x_window_system/xinterface/xclips.png \ %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/xclips.png done desktop-file-install --vendor fedora \ --dir %{buildroot}%{_datadir}/applications \ --add-category X-Fedora \ - %{SOURCE17} + x_window_system/xinterface/xclips.desktop %clean %{__rm} -rf %{buildroot} @@ -172,18 +177,13 @@ fi %files %defattr(-,root,root,-) %{_bindir}/clips -%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{_datadir}/emacs/site-lisp/clips-mode.el -%{_datadir}/emacs/site-lisp/inf-clips.el %files libs %defattr(-,root,root,-) %{_libdir}/*.so.* %{_datadir}/%{name}/ -%doc clipssrc/readme.txt -%doc clipssrc/COPYING_LINUX_PATCH -%doc clipssrc/README_LINUX_PATCH -%doc DR0873.txt +%doc COPYING_CLIPS_LINUX +%doc README_CLIPS_LINUX %files devel %defattr(-,root,root,-) @@ -200,13 +200,31 @@ fi %files doc %defattr(-,root,root,-) -%doc Examples/ -%doc abstract.pdf arch5-1.pdf bpg.pdf ug.pdf 3CCP.pdf -%doc apg.pdf -%doc ig.pdf -%doc html/ +%doc examples/ +%doc documentation/3CCP.pdf +%doc documentation/abstract.pdf +%doc documentation/apg.pdf +%doc documentation/architecture5-1.pdf +%doc documentation/bpg.pdf +%doc documentation/ig.pdf +%doc documentation/ug.pdf +%doc documentation/html/ + +%files emacs +%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{_datadir}/emacs/site-lisp/clips-mode.el +%{_datadir}/emacs/site-lisp/inf-clips.el %changelog +* Mon Jul 27 2009 Rick L Vinyard Jr 6.30.0-0.1.20090722svn +- New release +- Removed multiple sources and patches that are in new release +- Improved summaries and descriptions +- Added clips-emacs subpackage + +* Fri Jul 24 2009 Fedora Release Engineering - 6.24-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Rick L Vinyard Jr 6.24-27 - Updated desktop entry file to add categories and remove deprecated items - Added hicolor-icon-theme requires to xclips Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clips/EL-5/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Mar 2009 19:28:06 -0000 1.7 +++ sources 29 Jul 2009 14:29:03 -0000 1.8 @@ -1,12 +1,2 @@ -cd3ecddc4e538b8af0e5cf08ab7fd89c abstract.pdf -ccba9d912375e57a1b7d9eba12da4198 clips_core_source_624.tar.Z -1bb0d0e684742188b8c14912c26f12cb x_windows_ide_source_624.tar.Z -f5c02b997199f3ede779b8502af2ba09 examples_624.tar.Z -fae2267d96fb95603345e91c9990caaa apg.pdf -9a13d2ed18fe6ab67902d5bce29957cb arch5-1.pdf -63891971aa782dc67c2de0579647247e bpg.pdf -89beca5caa08b30d8285cca7f1df1d26 ig.pdf -44e54697a8acf3509bc4ca51d88b65bd ug.pdf -a6a60733af08f9e9e6d0928272ad4dd9 3CCP.pdf -99f463e8a2536198da37e9dc73304322 clips-doc-html.tar.bz2 -0cb3238a5be85211658ba7ca47257bf8 clips-6.24-linux.patch +96743a6cba5a88f72a4d652d4c917802 clips-6.30.0.20090722svn.tar.bz2 +40f6d46315d89ea0b3701b4433d58840 clips-6.30.0.20090722svn-doc.tar.bz2 --- DR0873.txt DELETED --- --- FunctionContext.zip DELETED --- --- clips-6.24-time-sysdep.c.patch DELETED --- --- clips-init.el DELETED --- --- clips-mode.el DELETED --- --- inf-clips.el DELETED --- --- objrtmch.c DELETED --- --- xclips.desktop DELETED --- From rvinyard at fedoraproject.org Wed Jul 29 14:28:56 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Wed, 29 Jul 2009 14:28:56 +0000 (UTC) Subject: rpms/clips/F-10 .cvsignore, 1.5, 1.6 clips.spec, 1.11, 1.12 sources, 1.7, 1.8 DR0873.txt, 1.1, NONE FunctionContext.zip, 1.1, NONE clips-6.24-linux.patch, 1.1, NONE clips-6.24-time-sysdep.c.patch, 1.1, NONE clips-init.el, 1.1, NONE clips-mode.el, 1.1, NONE inf-clips.el, 1.1, NONE objrtmch.c, 1.1, NONE xclips.desktop, 1.2, NONE xclips.png, 1.1, NONE Message-ID: <20090729142856.A026F11C00CE@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/clips/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13889 Modified Files: .cvsignore clips.spec sources Removed Files: DR0873.txt FunctionContext.zip clips-6.24-linux.patch clips-6.24-time-sysdep.c.patch clips-init.el clips-mode.el inf-clips.el objrtmch.c xclips.desktop xclips.png Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Mar 2009 18:33:55 -0000 1.5 +++ .cvsignore 29 Jul 2009 14:28:56 -0000 1.6 @@ -1,12 +1,2 @@ -abstract.pdf -clips_core_source_624.tar.Z -x_windows_ide_source_624.tar.Z -examples_624.tar.Z -apg.pdf -arch5-1.pdf -bpg.pdf -ig.pdf -ug.pdf -3CCP.pdf -clips-doc-html.tar.bz2 -clips-6.24-linux.patch +clips-6.30.0.20090722svn.tar.bz2 +clips-6.30.0.20090722svn-doc.tar.bz2 Index: clips.spec =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-10/clips.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- clips.spec 3 Mar 2009 18:33:56 -0000 1.11 +++ clips.spec 29 Jul 2009 14:28:56 -0000 1.12 @@ -1,42 +1,19 @@ -Summary: CLIPS language for developing expert systems +%define svnver .20090722svn +Summary: Language for developing expert systems Name: clips -Version: 6.24 -Release: 27%{?dist} +Version: 6.30.0 +Release: 0.1%{?svnver}%{?dist} Url: http://clipsrules.sourceforge.net License: GPLv2 Group: Development/Tools -Source0: http://downloads.sourceforge.net/clipsrules/clips_core_source_624.tar.Z -Source1: http://downloads.sourceforge.net/clipsrules/x_windows_ide_source_624.tar.Z -Source2: http://downloads.sourceforge.net/clipsrules/examples_624.tar.Z -Source3: abstract.pdf -Source4: http://clipsrules.sourceforge.net/documentation/v624/apg.pdf -Source5: http://clipsrules.sourceforge.net/documentation/other/arch5-1.pdf -Source6: http://clipsrules.sourceforge.net/documentation/v624/bpg.pdf -Source7: http://clipsrules.sourceforge.net/documentation/v624/ig.pdf -Source8: http://clipsrules.sourceforge.net/documentation/v624/ug.pdf -Source9: http://clipsrules.sourceforge.net/documentation/other/3CCP.pdf -Source10: xclips.png -Source11: clips-init.el -Source12: clips-mode.el -Source13: inf-clips.el -Source14: objrtmch.c -Source15: FunctionContext.zip -Source16: DR0873.txt -Source17: xclips.desktop -# The following source was generated with the following commands: -# mkdir html -# cd html -# for i in apg.htm bpg.htm ig.htm ug.htm; do -# wget -p -nH --cut-dirs=2 --convert-links http://clipsrules.sourceforge.net/documentation/v624/$i -# dos2unix $i -# done -# cd .. -# tar -cjf clips-doc-html.tar.bz2 html -Source18: clips-doc-html.tar.bz2 -Patch0: clips-6.24-linux.patch -Patch1: clips-6.24-time-sysdep.c.patch +Source0: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}.tar.bz2 +Source1: http://downloads.sourceforge.net/clipsmm/%{name}-%{version}%{?svnver}-doc.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 BuildRequires: ncurses-devel +%else +BuildRequires: libtermcap-devel +%endif BuildRequires: libXt-devel libXext-devel libXmu-devel libXaw-devel BuildRequires: xorg-x11-server-Xorg xorg-x11-proto-devel xorg-x11-xbitmaps BuildRequires: desktop-file-utils @@ -45,21 +22,30 @@ BuildRequires: pkgconfig BuildRequires: ImageMagick %description -CLIPS is a productive development and delivery expert system tool which -provides a complete environment for the construction of rule and/or object -based expert systems. Created in 1985 by NASA, CLIPS is now widely used -throughout the government, industry, and academia. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. This package provides the CLIPS command line environment and the clips library. %package libs -Summary: Run-time libraries for CLIPS applications +Summary: Run-time C libraries for CLIPS applications Group: System Environment/Libraries %description libs This package contains the run-time libraries needed for CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package devel Summary: C headers for developing programs that will embed CLIPS Group: Development/Libraries @@ -70,8 +56,15 @@ Requires: ncurses-devel pkgconfig This package contains the libraries and header files needed for developing embedded CLIPS applications. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package xclips -Summary: X interface to CLIPS +Summary: X interface to the CLIPS expert system Group: Development/Tools Requires: %{name} = %{version}-%{release} Requires: hicolor-icon-theme @@ -79,14 +72,31 @@ Requires: hicolor-icon-theme %description xclips X interface to CLIPS. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + %package doc -Summary: Documentation for CLIPS +Summary: Documentation and examples for the CLIPS expert system Group: Documentation +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif %description doc This package contains documentation for the CLIPS library as well as numerous examples. +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. + The following are some of the documents in this package: - Proceedings of the Third Conference on CLIPS, 1994 (3CCP.pdf) - Application abstracts (abstract.pdf) @@ -96,58 +106,53 @@ The following are some of the documents - CLIPS Architecture Manual (arch5-1.pdf) - CLIPS Users Guide (ug.pdf,ug.htm) +%package emacs +Summary: EMACS add-ons for the CLIPS expert system +Group: Development/Tools +Requires: emacs-common +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif + +%description emacs +This package contains CLIPS emacs scripts. + +CLIPS (C Language Integrated Production System) is an expert system +development tool which provides a complete environment for the +construction of rule and/or object based expert systems. + +Created in 1985 by NASA at the Johnson Space Center, CLIPS is now +widely used throughout the government, industry, and academia. %prep -%setup -q -a 1 -a 2 -a 15 -a 18 -c -mv x-prjct/xinterface clipssrc/ -mv x-prjct/color clipssrc/ -mv clipssrc/clipssrc clipssrc/clips -%patch0 -p0 -%patch1 -p0 -#move in the function context patch files -mv envrnmnt.h clipssrc/clips -mv envrnmnt.c clipssrc/clips -mv evaluatn.c clipssrc/clips -mv extnfunc.h clipssrc/clips -mv extnfunc.c clipssrc/clips -#move in the object-pattern-match-delay bug fix -cp %{SOURCE14} clipssrc/clips -chmod a-x clipssrc/*/*.h clipssrc/*/*.c -chmod a-x Examples/*.clp -chmod a-x Examples/Cholesterol/* -chmod u+x clipssrc/autogen.sh -for i in %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE16}; do - cp $i . -done +%setup -q -n %{name}-%{version}%{?svnver} -a 1 +%{__mv} %{name}-%{version}%{?svnver}-doc/* documentation/ %build -cd clipssrc -./autogen.sh %configure --disable-static %{__make} %{?_smp_mflags} %install -cd clipssrc %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} INSTALL="%{__install} -p" find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' -%{__install} -p --mode=0644 -D %{SOURCE11} %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{__install} -p --mode=0644 -D %{SOURCE12} %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el -%{__install} -p --mode=0644 -D %{SOURCE13} %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el +%{__install} -p --mode=0644 -D documentation/clips-init.el %{buildroot}%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{__install} -p --mode=0644 -D documentation/clips-mode.el %{buildroot}%{_datadir}/emacs/site-lisp/clips-mode.el +%{__install} -p --mode=0644 -D documentation/inf-clips.el %{buildroot}%{_datadir}/emacs/site-lisp/inf-clips.el # create icons # create 16x16, 32x32, 64x64, 128x128 icons for s in 16 32 64 128 ; do %{__mkdir_p} %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/ convert -scale ${s}x${s} \ - %{SOURCE10} \ + x_window_system/xinterface/xclips.png \ %{buildroot}/%{_datadir}/icons/hicolor/${s}x${s}/apps/xclips.png done desktop-file-install --vendor fedora \ --dir %{buildroot}%{_datadir}/applications \ --add-category X-Fedora \ - %{SOURCE17} + x_window_system/xinterface/xclips.desktop %clean %{__rm} -rf %{buildroot} @@ -172,18 +177,13 @@ fi %files %defattr(-,root,root,-) %{_bindir}/clips -%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el -%{_datadir}/emacs/site-lisp/clips-mode.el -%{_datadir}/emacs/site-lisp/inf-clips.el %files libs %defattr(-,root,root,-) %{_libdir}/*.so.* %{_datadir}/%{name}/ -%doc clipssrc/readme.txt -%doc clipssrc/COPYING_LINUX_PATCH -%doc clipssrc/README_LINUX_PATCH -%doc DR0873.txt +%doc COPYING_CLIPS_LINUX +%doc README_CLIPS_LINUX %files devel %defattr(-,root,root,-) @@ -200,13 +200,31 @@ fi %files doc %defattr(-,root,root,-) -%doc Examples/ -%doc abstract.pdf arch5-1.pdf bpg.pdf ug.pdf 3CCP.pdf -%doc apg.pdf -%doc ig.pdf -%doc html/ +%doc examples/ +%doc documentation/3CCP.pdf +%doc documentation/abstract.pdf +%doc documentation/apg.pdf +%doc documentation/architecture5-1.pdf +%doc documentation/bpg.pdf +%doc documentation/ig.pdf +%doc documentation/ug.pdf +%doc documentation/html/ + +%files emacs +%{_datadir}/emacs/site-lisp/site-start.d/clips-init.el +%{_datadir}/emacs/site-lisp/clips-mode.el +%{_datadir}/emacs/site-lisp/inf-clips.el %changelog +* Mon Jul 27 2009 Rick L Vinyard Jr 6.30.0-0.1.20090722svn +- New release +- Removed multiple sources and patches that are in new release +- Improved summaries and descriptions +- Added clips-emacs subpackage + +* Fri Jul 24 2009 Fedora Release Engineering - 6.24-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Rick L Vinyard Jr 6.24-27 - Updated desktop entry file to add categories and remove deprecated items - Added hicolor-icon-theme requires to xclips Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clips/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Mar 2009 18:33:56 -0000 1.7 +++ sources 29 Jul 2009 14:28:56 -0000 1.8 @@ -1,12 +1,2 @@ -cd3ecddc4e538b8af0e5cf08ab7fd89c abstract.pdf -ccba9d912375e57a1b7d9eba12da4198 clips_core_source_624.tar.Z -1bb0d0e684742188b8c14912c26f12cb x_windows_ide_source_624.tar.Z -f5c02b997199f3ede779b8502af2ba09 examples_624.tar.Z -fae2267d96fb95603345e91c9990caaa apg.pdf -9a13d2ed18fe6ab67902d5bce29957cb arch5-1.pdf -63891971aa782dc67c2de0579647247e bpg.pdf -89beca5caa08b30d8285cca7f1df1d26 ig.pdf -44e54697a8acf3509bc4ca51d88b65bd ug.pdf -a6a60733af08f9e9e6d0928272ad4dd9 3CCP.pdf -99f463e8a2536198da37e9dc73304322 clips-doc-html.tar.bz2 -0cb3238a5be85211658ba7ca47257bf8 clips-6.24-linux.patch +96743a6cba5a88f72a4d652d4c917802 clips-6.30.0.20090722svn.tar.bz2 +40f6d46315d89ea0b3701b4433d58840 clips-6.30.0.20090722svn-doc.tar.bz2 --- DR0873.txt DELETED --- --- FunctionContext.zip DELETED --- --- clips-6.24-linux.patch DELETED --- --- clips-6.24-time-sysdep.c.patch DELETED --- --- clips-init.el DELETED --- --- clips-mode.el DELETED --- --- inf-clips.el DELETED --- --- objrtmch.c DELETED --- --- xclips.desktop DELETED --- From ke4qqq at fedoraproject.org Wed Jul 29 14:29:22 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Wed, 29 Jul 2009 14:29:22 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/F-11 import.log, NONE, 1.1 php-pear-File-Bittorrent-dos2unix.patch, NONE, 1.1 php-pear-File-Bittorrent2.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729142922.2B50B11C00CE@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13575/F-11 Modified Files: .cvsignore sources Added Files: import.log php-pear-File-Bittorrent-dos2unix.patch php-pear-File-Bittorrent2.spec Log Message: * Wed Jul 29 2009 David Nalley - 1.3.1-4 - Initial commit --- NEW FILE import.log --- php-pear-File-Bittorrent2-1_3_1-4_fc11:F-11:php-pear-File-Bittorrent2-1.3.1-4.fc11.src.rpm:1248875110 php-pear-File-Bittorrent-dos2unix.patch: package.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE php-pear-File-Bittorrent-dos2unix.patch --- diff -uNr php-pear-File-Bittorrent-1.3.1-orig/package.xml php-pear-File-Bittorrent-1.3.1/package.xml --- php-pear-File-Bittorrent-1.3.1-orig/package.xml 2009-07-16 22:14:20.000000000 -0400 +++ php-pear-File-Bittorrent-1.3.1/package.xml 2009-07-16 22:14:35.000000000 -0400 @@ -46,11 +46,11 @@ - + - - + + --- NEW FILE php-pear-File-Bittorrent2.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %define pear_name File_Bittorrent2 Name: php-pear-File-Bittorrent2 Version: 1.3.1 Release: 4%{?dist} Summary: Decode and Encode data in Bittorrent format Group: Development/Libraries License: LGPLv2 URL: http://pear.php.net/package/File_Bittorrent2 Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz Patch0: php-pear-File-Bittorrent-dos2unix.patch # This patch modifies the md5sum in the xml file to match the files # after they have been dos2unixed BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: dos2unix, php-pear-PHPUnit Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description This package consists of three classes which handles the encoding and decoding of data in Bittorrent format. You can also extract useful informations from .torrent files, create .torrent files and query the torrent's scrape page to get its statistics. PHP5 only. %prep %setup -q -c %patch0 -p1 -b .dos2unix [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} dos2unix torrentinfo.php scrape.php example.php %build cd %{pear_name}-%{version} # Empty build section, most likely nothing required. %check cd %{pear_name}-%{version} php -d "include_path=.:%{pear_phpdir}:%{_datadir}/php" Tests/AllTests.php %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml # Move documentation mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml # TODO upstream: pear_testdir and pear_datadir; they are currently OK though, #c caught by the below glob since they are withing pear_phpdir # Expand this as needed to avoid owning dirs owned by our dependencies #%{pear_phpdir}/* %{pear_phpdir}/File %{pear_testdir}/%{pear_name} %changelog * Fri Jul 17 2009 David Nalley - 1.3.1-4 - fix test line to work regardless of path * Fri Jul 17 2009 Paul W. Frields - 1.3.1-3 - Fix a couple packaging problems * Fri Jul 17 2009 David Nalley 1.3.1-2 - Added a checksum patch suggested by Paul Frields * Thu Jul 16 2009 David Nalley 1.3.1-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:02:13 -0000 1.1 +++ .cvsignore 29 Jul 2009 14:29:21 -0000 1.2 @@ -0,0 +1 @@ +File_Bittorrent2-1.3.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:02:14 -0000 1.1 +++ sources 29 Jul 2009 14:29:21 -0000 1.2 @@ -0,0 +1 @@ +32f58ecd1ed6ed397d002c26f0f343d3 File_Bittorrent2-1.3.1.tgz From ke4qqq at fedoraproject.org Wed Jul 29 14:32:23 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Wed, 29 Jul 2009 14:32:23 +0000 (UTC) Subject: rpms/php-pear-File-Bittorrent2/EL-5 import.log, NONE, 1.1 php-pear-File-Bittorrent-dos2unix.patch, NONE, 1.1 php-pear-File-Bittorrent2.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729143223.762FF11C00CE@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/php-pear-File-Bittorrent2/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15656/EL-5 Modified Files: .cvsignore sources Added Files: import.log php-pear-File-Bittorrent-dos2unix.patch php-pear-File-Bittorrent2.spec Log Message: * Wed Jul 29 2009 David Nalley - 1.3.1-4 - Initial commit --- NEW FILE import.log --- php-pear-File-Bittorrent2-1_3_1-4_fc11:EL-5:php-pear-File-Bittorrent2-1.3.1-4.fc11.src.rpm:1248877802 php-pear-File-Bittorrent-dos2unix.patch: package.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE php-pear-File-Bittorrent-dos2unix.patch --- diff -uNr php-pear-File-Bittorrent-1.3.1-orig/package.xml php-pear-File-Bittorrent-1.3.1/package.xml --- php-pear-File-Bittorrent-1.3.1-orig/package.xml 2009-07-16 22:14:20.000000000 -0400 +++ php-pear-File-Bittorrent-1.3.1/package.xml 2009-07-16 22:14:35.000000000 -0400 @@ -46,11 +46,11 @@ - + - - + + --- NEW FILE php-pear-File-Bittorrent2.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %define pear_name File_Bittorrent2 Name: php-pear-File-Bittorrent2 Version: 1.3.1 Release: 4%{?dist} Summary: Decode and Encode data in Bittorrent format Group: Development/Libraries License: LGPLv2 URL: http://pear.php.net/package/File_Bittorrent2 Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz Patch0: php-pear-File-Bittorrent-dos2unix.patch # This patch modifies the md5sum in the xml file to match the files # after they have been dos2unixed BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: dos2unix, php-pear-PHPUnit Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description This package consists of three classes which handles the encoding and decoding of data in Bittorrent format. You can also extract useful informations from .torrent files, create .torrent files and query the torrent's scrape page to get its statistics. PHP5 only. %prep %setup -q -c %patch0 -p1 -b .dos2unix [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} dos2unix torrentinfo.php scrape.php example.php %build cd %{pear_name}-%{version} # Empty build section, most likely nothing required. %check cd %{pear_name}-%{version} php -d "include_path=.:%{pear_phpdir}:%{_datadir}/php" Tests/AllTests.php %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml # Move documentation mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml # TODO upstream: pear_testdir and pear_datadir; they are currently OK though, #c caught by the below glob since they are withing pear_phpdir # Expand this as needed to avoid owning dirs owned by our dependencies #%{pear_phpdir}/* %{pear_phpdir}/File %{pear_testdir}/%{pear_name} %changelog * Fri Jul 17 2009 David Nalley - 1.3.1-4 - fix test line to work regardless of path * Fri Jul 17 2009 Paul W. Frields - 1.3.1-3 - Fix a couple packaging problems * Fri Jul 17 2009 David Nalley 1.3.1-2 - Added a checksum patch suggested by Paul Frields * Thu Jul 16 2009 David Nalley 1.3.1-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:02:13 -0000 1.1 +++ .cvsignore 29 Jul 2009 14:32:23 -0000 1.2 @@ -0,0 +1 @@ +File_Bittorrent2-1.3.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Bittorrent2/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:02:14 -0000 1.1 +++ sources 29 Jul 2009 14:32:23 -0000 1.2 @@ -0,0 +1 @@ +32f58ecd1ed6ed397d002c26f0f343d3 File_Bittorrent2-1.3.1.tgz From berrange at fedoraproject.org Wed Jul 29 14:33:14 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 29 Jul 2009 14:33:14 +0000 (UTC) Subject: rpms/virt-viewer/devel sources, 1.4, 1.5 virt-viewer.spec, 1.14, 1.15 virt-viewer-0.0.3-auth-fixes.patch, 1.1, NONE virt-viewer-0.0.3-keyboard-grab.patch, 1.1, NONE Message-ID: <20090729143314.8232211C00CE@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/virt-viewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15983 Modified Files: sources virt-viewer.spec Removed Files: virt-viewer-0.0.3-auth-fixes.patch virt-viewer-0.0.3-keyboard-grab.patch Log Message: Update to 0.2.0 release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virt-viewer/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Mar 2008 14:58:12 -0000 1.4 +++ sources 29 Jul 2009 14:33:14 -0000 1.5 @@ -1 +1 @@ -feb97e8e0df27fbeeeefe733b49cc157 virt-viewer-0.0.3.tar.gz +4c103eabc50c95e036add9b5a9a7bb96 virt-viewer-0.2.0.tar.gz Index: virt-viewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-viewer/devel/virt-viewer.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- virt-viewer.spec 27 Jul 2009 06:55:48 -0000 1.14 +++ virt-viewer.spec 29 Jul 2009 14:33:14 -0000 1.15 @@ -5,24 +5,22 @@ %define _with_plugin %{?with_plugin:1}%{!?with_plugin:0} Name: virt-viewer -Version: 0.0.3 -Release: 6%{?dist} +Version: 0.2.0 +Release: 1%{?dist} Summary: Virtual Machine Viewer Group: Applications/System License: GPLv2+ URL: http://virt-manager.org/ Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz -Patch1: %{name}-%{version}-auth-fixes.patch -Patch2: %{name}-%{version}-keyboard-grab.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: openssh-clients BuildRequires: gtk2-devel -BuildRequires: libvirt-devel >= 0.3.1-4.fc8 +BuildRequires: libvirt-devel >= 0.6.0 BuildRequires: libxml2-devel -BuildRequires: gtk-vnc-devel >= 0.3.4 -# For /usr/bin/pod2man -BuildRequires: perl +BuildRequires: libglade2-devel +BuildRequires: gtk-vnc-devel >= 0.3.8 +BuildRequires: /usr/bin/pod2man %if %{_with_plugin} %if 0%{?fedora} > 8 BuildRequires: xulrunner-devel @@ -52,8 +50,6 @@ browsers. %prep %setup -q -%patch1 -p1 -%patch2 -p1 %build %if %{_with_plugin} @@ -79,6 +75,11 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc README COPYING AUTHORS ChangeLog NEWS %{_bindir}/%{name} +%dir %{_datadir}/%{name} +%dir %{_datadir}/%{name}/ui/ +%{_datadir}/%{name}/ui/auth.glade +%{_datadir}/%{name}/ui/about.glade +%{_datadir}/%{name}/ui/viewer.glade %{_mandir}/man1/%{name}* %if %{_with_plugin} @@ -88,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Jul 29 2009 Daniel P. Berrange - 0.2.0-1.fc12 +- Update to 0.2.0 release + * Sun Jul 26 2009 Fedora Release Engineering - 0.0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- virt-viewer-0.0.3-auth-fixes.patch DELETED --- --- virt-viewer-0.0.3-keyboard-grab.patch DELETED --- From tuxbrewr at fedoraproject.org Wed Jul 29 14:34:27 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 29 Jul 2009 14:34:27 +0000 (UTC) Subject: rpms/subtitlecomposer/F-10 subtitlecomposer.desktop, 1.4, 1.5 subtitlecomposer.spec, 1.4, 1.5 Message-ID: <20090729143427.91E1C11C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/subtitlecomposer/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16389 Modified Files: subtitlecomposer.desktop subtitlecomposer.spec Log Message: Fix .desktop file, optimize scriptlets, fix dir ownerships Index: subtitlecomposer.desktop =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/F-10/subtitlecomposer.desktop,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.desktop 31 Mar 2009 22:57:17 -0000 1.4 +++ subtitlecomposer.desktop 29 Jul 2009 14:34:27 -0000 1.5 @@ -6,4 +6,4 @@ Exec=subtitlecomposer Icon=subtitlecomposer Terminal=false Type=Application -Categories=Qt;KDE;Video;AudioVideoEditing; +Categories=Qt;KDE;AudioVideo;AudioVideoEditing; Index: subtitlecomposer.spec =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/F-10/subtitlecomposer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.spec 10 Jun 2009 00:25:03 -0000 1.4 +++ subtitlecomposer.spec 29 Jul 2009 14:34:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: subtitlecomposer Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A text-based subtitles editor License: GPLv2+ @@ -18,10 +18,8 @@ BuildRequires: kdelibs4-devel BuildRequires: gettext BuildRequires: giflib-devel BuildRequires: pcre-devel -Requires(post): /sbin/ldconfig xdg-utils -Requires(postun): /sbin/ldconfig xdg-utils -Requires(post): shared-mime-info -Requires(postun): shared-mime-info +Requires(post): /sbin/ldconfig +Requires(postun): /sbin/ldconfig %description A text-based subtitles editor @@ -35,7 +33,7 @@ pushd %{_target_platform} %{cmake_kde4} .. popd -make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 +make %{?_smp_mflags} -C %{_target_platform} %install @@ -43,6 +41,7 @@ rm -rf $RPM_BUILD_ROOT make install/fast DESTDIR=${RPM_BUILD_ROOT} -C %{_target_platform} +# pixmaps is deprecated, really still needed? -- Rex %{__install} -p -D %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=$RPM_BUILD_ROOT%{_kde4_datadir}/applications/kde4 %{SOURCE1} @@ -54,20 +53,27 @@ rm -rf $RPM_BUILD_ROOT %post /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : %postun /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +if [ $1 -eq 0 ] ; then + update-mime-database %{_datadir}/mime &> /dev/null + touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null + gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : +fi + +%posttrans +update-mime-database %{_datadir}/mime &> /dev/null +gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : + %files -f %{name}.lang %defattr(-,root,root,-) -%{_bindir}/subtitlecomposer +%{_kde4_bindir}/subtitlecomposer %attr(644,root,root) %{_datadir}/pixmaps/subtitlecomposer.png %{_kde4_datadir}/applications/kde4/subtitlecomposer.desktop -%{_datadir}/config/subtitlecomposerrc +%{_kde4_configdir}/subtitlecomposerrc %{_kde4_iconsdir}/hicolor/128x128/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/128x128/actions/* %{_kde4_iconsdir}/hicolor/16x16/actions/* @@ -76,11 +82,15 @@ update-mime-database %{_datadir}/mime &> %{_kde4_iconsdir}/hicolor/32x32/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/48x48/apps/* %{_kde4_iconsdir}/hicolor/scalable/actions/* -%{_kde4_appsdir}/subtitlecomposer/* -%{_kde4_appsdir}/subtitlecomposer/pics/* +%{_kde4_appsdir}/subtitlecomposer/ %{_datadir}/mime/packages/subtitlecomposer.xml %changelog +* Fri Jul 24 2009 Rex Dieter 0.5.3-2 +- .desktop: Categories: -Video +AudioVideo +- optimize scriptlets (drop xdg-utils, shared-mime-info deps) +- own %%{_kde4_appsdir}/subtitlecomposer/ + * Tue Jun 09 2009 Steven M. Parrish 0.5.3-1 - New upstream release - added Czech, Brazilian Portuguese, Bulgarian, French and German From itamarjp at fedoraproject.org Wed Jul 29 14:46:07 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 29 Jul 2009 14:46:07 +0000 (UTC) Subject: rpms/callweaver/devel .cvsignore, 1.5, 1.6 callweaver.spec, 1.19, 1.20 import.log, 1.1, 1.2 sources, 1.5, 1.6 0001-Hopefully-the-final-bunch-of-API-changes-for-the-for.patch, 1.1, NONE Message-ID: <20090729144607.F3AF411C00CE@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/callweaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18955/devel Modified Files: .cvsignore callweaver.spec import.log sources Removed Files: 0001-Hopefully-the-final-bunch-of-API-changes-for-the-for.patch Log Message: new version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Jul 2008 16:38:12 -0000 1.5 +++ .cvsignore 29 Jul 2009 14:46:07 -0000 1.6 @@ -1 +1 @@ -callweaver-1.2.0.1.tar.bz2 +callweaver-1.2.1.tar.bz2 Index: callweaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/callweaver.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- callweaver.spec 28 Jul 2009 05:33:28 -0000 1.19 +++ callweaver.spec 29 Jul 2009 14:46:07 -0000 1.20 @@ -6,8 +6,8 @@ %bcond_without fedora Name: callweaver -Version: 1.2.0.1 -Release: 5%{?snap:.%{snap}}%{?dist} +Version: 1.2.1 +Release: 1%{?snap:.%{snap}}%{?dist} Summary: The Truly Open Source PBX Group: Applications/Internet @@ -16,9 +16,6 @@ URL: http://www.callweaver.org/ Source0: http://devs.callweaver.org/release/callweaver-%{version}.tar.bz2 -# Patch from upstream SVN for compatibility with spandsp 0.0.5pre4 -Patch1: 0001-Hopefully-the-final-bunch-of-API-changes-for-the-for.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: spandsp-devel >= 0.0.5-0.1.pre4 @@ -176,7 +173,6 @@ convenient interface between CallWeaver %prep %setup0 -q -%patch1 -p1 %build %if 0%{?snap} @@ -244,6 +240,9 @@ rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/sa #fix bz 473572 /var/lib/callweaver not packaged (todo - send a patch to upstream to fix this) mkdir -p $RPM_BUILD_ROOT%{_sharedstatedir}/%{name} +#create /usr/share/callweaver/keys +mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/keys + %clean rm -rf $RPM_BUILD_ROOT @@ -277,8 +276,8 @@ test "$1" != 0 || /sbin/chkconfig --del %{_initrddir}/callweaver %{_sbindir}/callweaver %{_sbindir}/callweaver_cli -%{_bindir}/smsq -%{_bindir}/streamplayer +%{_sbindir}/smsq +%{_sbindir}/streamplayer %dir %attr(0755,-,-) %{_libdir}/callweaver %{_libdir}/callweaver/lib*.so.* %dir %attr(0755,-,-) %{_libdir}/callweaver/modules @@ -323,8 +322,9 @@ test "$1" != 0 || /sbin/chkconfig --del %exclude %{_libdir}/callweaver/modules/chan_zap.so %exclude %{_libdir}/callweaver/modules/app_meetme.so %exclude %{_libdir}/callweaver/modules/app_flash.so -%exclude %{_sysconfdir}/callweaver/zapata.conf +%exclude %{_sysconfdir}/callweaver/chan_dahdi.conf %exclude %{_sysconfdir}/callweaver/meetme.conf + %endif %files devel @@ -371,7 +371,7 @@ test "$1" != 0 || /sbin/chkconfig --del %{_libdir}/callweaver/modules/chan_zap.so %{_libdir}/callweaver/modules/app_meetme.so %{_libdir}/callweaver/modules/app_flash.so -%config(noreplace) %attr(0644,callweaver,callweaver) %{_sysconfdir}/callweaver/zapata.conf +%config(noreplace) %attr(0644,callweaver,callweaver) %{_sysconfdir}/callweaver/chan_dahdi.conf %config(noreplace) %attr(0644,callweaver,callweaver) %{_sysconfdir}/callweaver/meetme.conf %endif @@ -394,6 +394,9 @@ test "$1" != 0 || /sbin/chkconfig --del %{_sbindir}/eogi* %changelog +* Wed Jul 29 2009 Itamar Reis Peixoto - 1.2.1-1 +- new version 1.2.1 + * Tue Jul 28 2009 Itamar Reis Peixoto - 1.2.0.1-5 - fix bz #473572 /var/lib/callweaver not packaged - fix bz #511302 callweaver should build with compat-readline5-devel Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 28 Jul 2009 05:33:28 -0000 1.1 +++ import.log 29 Jul 2009 14:46:07 -0000 1.2 @@ -1 +1,2 @@ callweaver-1_2_0_1-5_fc12:HEAD:callweaver-1.2.0.1-5.fc12.src.rpm:1248759154 +callweaver-1_2_1-1_fc12:HEAD:callweaver-1.2.1-1.fc12.src.rpm:1248878636 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 30 Jul 2008 16:38:12 -0000 1.5 +++ sources 29 Jul 2009 14:46:07 -0000 1.6 @@ -1 +1 @@ -624b2f0d81f91c235adf587061b634b6 callweaver-1.2.0.1.tar.bz2 +54c2ba5852cbe43b802b4605584b5754 callweaver-1.2.1.tar.bz2 --- 0001-Hopefully-the-final-bunch-of-API-changes-for-the-for.patch DELETED --- From rrati at fedoraproject.org Wed Jul 29 14:52:09 2009 From: rrati at fedoraproject.org (rrati) Date: Wed, 29 Jul 2009 14:52:09 +0000 (UTC) Subject: rpms/condor-ec2-enhanced/devel chkconfig_off.patch, NONE, 1.1 condor-ec2-enhanced.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729145209.87F4711C00CE@cvs1.fedora.phx.redhat.com> Author: rrati Update of /cvs/pkgs/rpms/condor-ec2-enhanced/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20576/devel Modified Files: .cvsignore sources Added Files: chkconfig_off.patch condor-ec2-enhanced.spec import.log Log Message: Initial import chkconfig_off.patch: condor-ec2-enhanced.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE chkconfig_off.patch --- diff -Naur condor-ec2-enhanced-1.0/config/condor-ec2-enhanced.init condor-ec2-enhanced-1.0f/config/condor-ec2-enhanced.init --- condor-ec2-enhanced-1.0/config/condor-ec2-enhanced.init 2009-07-22 14:13:56.000000000 -0500 +++ condor-ec2-enhanced-1.0f/config/condor-ec2-enhanced.init 2009-07-22 14:15:26.000000000 -0500 @@ -2,7 +2,7 @@ # # condor-ec2-enhanced This script allows for stopping and starting the condor # ec2 enhanced daemon caroniad. -# chkconfig: 2345 91 11 +# chkconfig: - 91 11 # # description: caroniad is the daemon that translates jobs between condor and # Amazon's Web Services for use with condor's EC2 Enhanced --- NEW FILE condor-ec2-enhanced.spec --- %{!?is_fedora: %define is_fedora %(/bin/sh -c "if [ -e /etc/fedora-release ];then echo '1'; fi")} %define rel 16 Summary: EC2 Enhanced Name: condor-ec2-enhanced Version: 1.0 Release: %{rel}%{?dist} License: ASL 2.0 Group: Applications/System URL: http://www.redhat.com/mrg # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. Source0: %{name}-%{version}-%{rel}.tar.gz Patch0: chkconfig_off.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python >= 2.4 Requires: condor >= 7.0.2-4 Requires: condor-job-hooks Requires: python-condor-job-hooks-common Requires: python-condor-ec2-enhanced-hooks-common Requires: python-boto >= 1.7a Requires: openssl Requires(post):/sbin/chkconfig Requires(preun):/sbin/chkconfig Requires(preun):/sbin/service Requires(postun):/sbin/service %description The EC2 Enhanced feature allows for near seamless translation of Condor jobs in the standard universe to condor EC2 jobs in the grid universe. For all intents and purposes, the job runs as any standard universe job runs except on an Amazon EC2 AMI instance. This package contains the daemon that handles the communication between Condor and the Amazon Web Services (AWS). This should be installed on an Amazon Machine Instance (AMI) that will be used with Condor's EC2 Enhanced feature. %prep %setup -q %if 0%{?is_fedora} != 0 %patch0 -p1 %endif %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_sbindir} mkdir -p %{buildroot}/%{_sysconfdir}/condor mkdir -p %{buildroot}/%{_initrddir} cp -f caroniad %{buildroot}/%_sbindir cp -f config/caroniad.conf %{buildroot}/%{_sysconfdir}/condor cp -f config/condor-ec2-enhanced.init %{buildroot}/%{_initrddir}/condor-ec2-enhanced %clean rm -rf %{buildroot} %post /sbin/chkconfig --add condor-ec2-enhanced %if 0%{?is_fedora} == 0 if [[ -f /etc/opt/grid/caroniad.conf ]]; then mv -f /etc/opt/grid/caroniad.conf /etc/condor rmdir --ignore-fail-on-non-empty -p /etc/opt/grid fi %endif %preun if [ $1 = 0 ]; then /sbin/service condor-ec2-enhanced stop >/dev/null 2>&1 || : /sbin/chkconfig --del condor-ec2-enhanced fi %postun if [ "$1" -ge "1" ]; then /sbin/service condor-ec2-enhanced condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc LICENSE-2.0.txt %config(noreplace) %_sysconfdir/condor/caroniad.conf %defattr(0755,root,root,-) %_initrddir/condor-ec2-enhanced %_sbindir/caroniad %changelog * Mon Jul 27 2009 - 1.0-16 - Fixed missed dependency renames * Mon Jul 27 2009 - 1.0-15 - Updated dependencies to match hooks-common rename * Mon Jul 27 2009 - 1.0-14 - Fixed rpmlint/packaging issues * Wed Jul 22 2009 - 1.0-13 - Added Fedora packaging support * Wed Jul 22 2009 - 1.0-12 - Moved configuration files to /etc/condor * Tue Jun 2 2009 - 1.0-11 - Remove RLocks and added better error handling to reduce deadlock potential - Changes to work with boto 1.7a * Fri Feb 13 2009 - 1.0-10 - Rebuild bump * Fri Feb 13 2009 - 1.0-9 - Change source tarball name * Thu Jan 22 2009 - 1.0-8 - Every time a job is run, a status message denoting a run attempt is put in SQS (BZ480841) - When processing a job, any attributes added by caroniad will be removed first to ensure no duplicates - Fixed issue transfering results to S3 if the job had no data sent * Mon Dec 15 2008 - 1.0-7 - Daemon no longer returns files created outside the job's iwd - Upon exit, reset visibility timeout for jobs that haven't finished - Attempt to access AWS multiple times before shutting down the AMI - Only package files in the job's iwd - If TransferOutput is set, only transfer the files listed as well as stdout/stderr files if they exist * Sat Dec 13 2008 - 1.0-6 - Use GlobalJobId as part of unique S3 key - Each job gets unique results and request queues - AMI will shutdown if it has problems accessing AWS on startup - Gracefully handle AWS access issues - Look for shutdown timer in job ad, and if it exists wait to shutdown * Tue Dec 9 2008 - 1.0-5 - Fixed JobStatus and Owner reporting issues - AMI is now shutdown after exit message sent - Only decrypt the AWS secret access key and then base64 decode - AMI will only wait 15 minutes for a valid message from SQS - Handle invalid messages in the work queue * Sun Dec 7 2008 - 1.0-4 - Ensure only 1 job is handled to completion then shutdown - Added openssl dependency * Wed Nov 10 2008 - 1.0-3 - Daemon is on by default * Fri Nov 4 2008 - 1.0-2 - Add changelog - Fix rpmlint issues - Changed init script to condor-ec2-enhanced * Fri Nov 4 2008 - 1.0-1 - Initial packaging --- NEW FILE import.log --- condor-ec2-enhanced-1_0-16_fc10:HEAD:condor-ec2-enhanced-1.0-16.fc10.src.rpm:1248879115 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:58:49 -0000 1.1 +++ .cvsignore 29 Jul 2009 14:52:09 -0000 1.2 @@ -0,0 +1 @@ +condor-ec2-enhanced-1.0-16.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:58:49 -0000 1.1 +++ sources 29 Jul 2009 14:52:09 -0000 1.2 @@ -0,0 +1 @@ +762c914ad6fc8fd3e5a9eef47eef852b condor-ec2-enhanced-1.0-16.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 14:56:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:06 +0000 Subject: [pkgdb] python-repoze-what-quickstart was added for spot Message-ID: <20090729145606.496C810F882@bastion2.fedora.phx.redhat.com> spot has added Package python-repoze-what-quickstart with summary A plugin for a simple authentication system with repoze.who/what spot has approved Package python-repoze-what-quickstart spot has added a Fedora devel branch for python-repoze-what-quickstart with an owner of spot spot has approved python-repoze-what-quickstart in Fedora devel spot has approved Package python-repoze-what-quickstart spot has set commit to Approved for 107427 on python-repoze-what-quickstart (Fedora devel) spot has set checkout to Approved for 107427 on python-repoze-what-quickstart (Fedora devel) spot has set build to Approved for 107427 on python-repoze-what-quickstart (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From pkgdb at fedoraproject.org Wed Jul 29 14:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:08 +0000 Subject: [pkgdb] python-repoze-what-quickstart (Fedora, 11) updated by spot Message-ID: <20090729145608.8DD2010F89B@bastion2.fedora.phx.redhat.com> spot added a Fedora 10 branch for python-repoze-what-quickstart spot has set commit to Approved for 107427 on python-repoze-what-quickstart (Fedora 10) spot has set checkout to Approved for 107427 on python-repoze-what-quickstart (Fedora 10) spot has set build to Approved for 107427 on python-repoze-what-quickstart (Fedora 10) spot approved watchbugzilla on python-repoze-what-quickstart (Fedora 10) for lmacken spot approved watchcommits on python-repoze-what-quickstart (Fedora 10) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From pkgdb at fedoraproject.org Wed Jul 29 14:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:08 +0000 Subject: [pkgdb] python-repoze-what-quickstart summary updated by spot Message-ID: <20090729145608.5C18C10F897@bastion2.fedora.phx.redhat.com> spot set package python-repoze-what-quickstart summary to A plugin for a simple authentication system with repoze.who/what To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From pkgdb at fedoraproject.org Wed Jul 29 14:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:08 +0000 Subject: [pkgdb] python-repoze-what-quickstart (Fedora, 11) updated by spot Message-ID: <20090729145608.A0C3410F89E@bastion2.fedora.phx.redhat.com> spot added a Fedora 11 branch for python-repoze-what-quickstart spot has set commit to Approved for 107427 on python-repoze-what-quickstart (Fedora 11) spot has set checkout to Approved for 107427 on python-repoze-what-quickstart (Fedora 11) spot has set build to Approved for 107427 on python-repoze-what-quickstart (Fedora 11) spot approved watchbugzilla on python-repoze-what-quickstart (Fedora 11) for lmacken spot approved watchcommits on python-repoze-what-quickstart (Fedora 11) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From pkgdb at fedoraproject.org Wed Jul 29 14:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:08 +0000 Subject: [pkgdb] python-repoze-what-quickstart (Fedora, 11) updated by spot Message-ID: <20090729145608.DAD2E10F8A1@bastion2.fedora.phx.redhat.com> spot added a Fedora EPEL 5 branch for python-repoze-what-quickstart spot has set commit to Approved for 107427 on python-repoze-what-quickstart (Fedora EPEL 5) spot has set checkout to Approved for 107427 on python-repoze-what-quickstart (Fedora EPEL 5) spot has set build to Approved for 107427 on python-repoze-what-quickstart (Fedora EPEL 5) spot approved watchbugzilla on python-repoze-what-quickstart (Fedora EPEL 5) for lmacken spot approved watchcommits on python-repoze-what-quickstart (Fedora EPEL 5) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From pkgdb at fedoraproject.org Wed Jul 29 14:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 14:56:08 +0000 Subject: [pkgdb] python-repoze-what-quickstart (Fedora, 11) updated by spot Message-ID: <20090729145609.1C18F10F8B1@bastion2.fedora.phx.redhat.com> spot approved watchbugzilla on python-repoze-what-quickstart (Fedora devel) for lmacken spot approved watchcommits on python-repoze-what-quickstart (Fedora devel) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-quickstart From spot at fedoraproject.org Wed Jul 29 14:56:14 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 14:56:14 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart - New directory Message-ID: <20090729145614.12D8F11C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsl21632/rpms/python-repoze-what-quickstart Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-quickstart added to the repository From spot at fedoraproject.org Wed Jul 29 14:56:14 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 14:56:14 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/devel - New directory Message-ID: <20090729145614.32BC511C00D5@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsl21632/rpms/python-repoze-what-quickstart/devel Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-quickstart/devel added to the repository From spot at fedoraproject.org Wed Jul 29 14:56:19 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 14:56:19 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart Makefile,NONE,1.1 Message-ID: <20090729145619.B8BE311C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsl21632/rpms/python-repoze-what-quickstart Added Files: Makefile Log Message: Setup of module python-repoze-what-quickstart --- NEW FILE Makefile --- # Top level Makefile for module python-repoze-what-quickstart all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From spot at fedoraproject.org Wed Jul 29 14:56:19 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 14:56:19 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729145619.DC49911C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsl21632/rpms/python-repoze-what-quickstart/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-repoze-what-quickstart --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-repoze-what-quickstart # $Id: Makefile,v 1.1 2009/07/29 14:56:19 spot Exp $ NAME := python-repoze-what-quickstart SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From veillard at fedoraproject.org Wed Jul 29 14:58:19 2009 From: veillard at fedoraproject.org (Daniel Veillard) Date: Wed, 29 Jul 2009 14:58:19 +0000 (UTC) Subject: rpms/libvirt/devel .cvsignore, 1.43, 1.44 libvirt.spec, 1.158, 1.159 sources, 1.44, 1.45 libvirt-convert-news-to-utf8.patch, 1.1, NONE Message-ID: <20090729145819.06D6511C00CE@cvs1.fedora.phx.redhat.com> Author: veillard Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22023 Modified Files: .cvsignore libvirt.spec sources Removed Files: libvirt-convert-news-to-utf8.patch Log Message: - another prerelease with qemu, uml and remote patches - drop the news patch as it's now UTF8 upstream Daniel Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 27 Jul 2009 17:52:28 -0000 1.43 +++ .cvsignore 29 Jul 2009 14:58:18 -0000 1.44 @@ -10,3 +10,4 @@ libvirt-0.6.3.tar.gz libvirt-0.6.4.tar.gz libvirt-0.6.5.tar.gz libvirt-0.7.0-0.1.gitf055724.tar.gz +libvirt-0.7.0-0.6.gite195b43.tar.gz Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.158 retrieving revision 1.159 diff -u -p -r1.158 -r1.159 --- libvirt.spec 29 Jul 2009 09:08:57 -0000 1.158 +++ libvirt.spec 29 Jul 2009 14:58:18 -0000 1.159 @@ -78,12 +78,10 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.5.gitf055724%{?dist}%{?extra_release} +Release: 0.6.gite195b43%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries -Source: libvirt-0.7.0-0.1.gitf055724.tar.gz - -Patch01: libvirt-convert-news-to-utf8.patch +Source: libvirt-0.7.0-0.6.gite195b43.tar.gz # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) @@ -254,8 +252,6 @@ of recent versions of Linux (and other O %prep %setup -q -%patch01 -p1 - %patch200 -p0 %build @@ -604,6 +600,10 @@ fi %endif %changelog +* Wed Jul 29 2009 Daniel Veillard - 0.7.0-0.6.gite195b43 +- another prerelease with qemu, uml and remote patches +- drop the news patch as it's now UTF8 upstream + * Wed Jul 29 2009 Mark McLoughlin - 0.7.0-0.5.gitf055724 - Move ldconfig call to libvirt-client %post/%postun - Fix rpmlint warning about libvirt-client summary Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 27 Jul 2009 17:52:29 -0000 1.44 +++ sources 29 Jul 2009 14:58:18 -0000 1.45 @@ -1 +1 @@ -7c8008af99963682cb38666d2f1661ba libvirt-0.7.0-0.1.gitf055724.tar.gz +30d52d580ad19473e80831ab1c222347 libvirt-0.7.0-0.6.gite195b43.tar.gz --- libvirt-convert-news-to-utf8.patch DELETED --- From spot at fedoraproject.org Wed Jul 29 15:01:21 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 15:01:21 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/devel import.log, NONE, 1.1 python-repoze-what-quickstart.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729150121.BDBE711C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23591/devel Modified Files: .cvsignore sources Added Files: import.log python-repoze-what-quickstart.spec Log Message: initial import --- NEW FILE import.log --- python-repoze-what-quickstart-1_0-2_fc12:HEAD:python-repoze-what-quickstart-1.0-2.fc12.src.rpm:1248879507 --- NEW FILE python-repoze-what-quickstart.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-quickstart Version: 1.0 Release: 2%{?dist} Summary: A plugin for a simple authentication system with repoze.who/what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-quickstart/repoze.what-quickstart-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel BuildRequires: python-repoze-what >= 1.0.3, python-repoze-who, python-repoze-who-plugins-sa BuildRequires: python-repoze-what-plugins-sql, python-nose, python-coverage Requires: python-repoze-what >= 1.0.3 Requires: python-repoze-who, python-repoze-who-plugins-sa, python-repoze-who-plugins-sql Requires: python-repoze-who-friendlyform %description This plugin allows you to take advantage of a rather simple, and usual, authentication and authorization setup, in which the users? data, the groups and the permissions used in the application are all stored in a SQLAlchemy or Elixir-managed database. Put simply, it configures repoze.who and repoze.what in one go so that you can have an authentication and authorization system working quickly ? hence the name. %prep %setup -q -n repoze.what-quickstart-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Tests broken # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt # Need to own this dir, nothing else in our dep chain does %{python_sitelib}/repoze/what/plugins/ %{python_sitelib}/repoze.what_quickstart* %changelog * Wed Jul 29 2009 Tom "spot" Callaway - 1.0-2 - fix summary, file ownership * Tue May 19 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-quickstart/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 14:56:19 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:01:21 -0000 1.2 @@ -0,0 +1 @@ +repoze.what-quickstart-1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-quickstart/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:56:19 -0000 1.1 +++ sources 29 Jul 2009 15:01:21 -0000 1.2 @@ -0,0 +1 @@ +6499da654b0ca70b5c089ba4e65118b3 repoze.what-quickstart-1.0.tar.gz From rrati at fedoraproject.org Wed Jul 29 15:02:56 2009 From: rrati at fedoraproject.org (rrati) Date: Wed, 29 Jul 2009 15:02:56 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks/devel condor-ec2-enhanced-hooks.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729150256.99DB911C00CE@cvs1.fedora.phx.redhat.com> Author: rrati Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24098/devel Modified Files: .cvsignore sources Added Files: condor-ec2-enhanced-hooks.spec import.log Log Message: Initial import --- NEW FILE condor-ec2-enhanced-hooks.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define rel 17 Summary: Condor EC2 Enhanced hooks Name: condor-ec2-enhanced-hooks Version: 1.0 Release: %{rel}%{?dist} License: ASL 2.0 Group: Applications/System URL: http://www.redhat.com/mrg # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. Source0: %{name}-%{version}-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python >= 2.3 Requires: condor >= 7.2.0-4 Requires: python-condor-job-hooks-common >= 1.0-4 Requires: python-condor-%{name}-common Requires: python-boto >= 1.7a Requires: openssl %description The EC2 Enhanced feature allows for near seamless translation of Condor jobs in the standard universe to condor EC2 jobs in the grid universe. For all intents and purposes, the job runs as any standard universe job runs except on an Amazon EC2 AMI instance. This package provides Condor job router hooks that will translate a job into a Condor EC2 job and monitor the state of that job. This should be installed on condor nodes that will submitting work and wish to use the EC2 Enhanced feature. %package -n python-%{name}-common Summary: Common functions/utilities for condor job hooks Group: Applications/System BuildRequires: python-devel Requires: python >= 2.3 Obsoletes: condor-ec2-enhanced-common %description -n python-%{name}-common Common functions and utilities used by MRG condor job hooks. %prep %setup -q %build %install rm -rf %{buildroot} mkdir -p %{buildroot}/%_libexecdir/condor/hooks mkdir -p %{buildroot}/%{python_sitelib}/ec2enhanced mkdir -p %{_builddir}/%{name}-%{version}/example cp -f hook*.py %{buildroot}/%_libexecdir/condor/hooks cp -f functions.py %{buildroot}/%{python_sitelib}/ec2enhanced cp -f config/condor_config.example %{_builddir}/%{name}-%{version}/example touch %{buildroot}/%{python_sitelib}/ec2enhanced/__init__.py %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE-2.0.txt INSTALL example %defattr(0755,root,root,-) %_libexecdir/condor/hooks/hook_job_finalize.py* %_libexecdir/condor/hooks/hook_translate.py* %_libexecdir/condor/hooks/hook_cleanup.py* %_libexecdir/condor/hooks/hook_retrieve_status.py* %files -n python-%{name}-common %defattr(-,root,root,-) %doc LICENSE-2.0.txt %{python_sitelib}/ec2enhanced/functions.py* %{python_sitelib}/ec2enhanced/__init__.py* %changelog * Mon Jul 27 2009 - 1.0-17 - Fixed missed dependency renames * Mon Jul 27 2009 - 1.0-16 - Renamed condor-ec2-enhanced-hooks-common to python-condor-ec2-enhanced-hooks to conform to packaging guidelines since the package installs in python sitelib. * Mon Jul 27 2009 - 1.0-15 - Fixed rpmlint/packaging issues * Fri Feb 27 2009 - 1.0-14 - Update docs - Changes to work with boto 1.7a * Fri Feb 13 2009 - 1.0-13 - Rebuild bump * Fri Feb 13 2009 - 1.0-12 - Change tarball name * Tue Feb 5 2009 - 1.0-11 - Fixed problems in the translate hook when a job is rerouted - Cleaned up classad parsing - Increment counter denoting number of run attempts in EC2 - Fixed logic error if the S3 key wasn't created by the translate hook - Changed Cmd attribute for routed job to be: "EC2: : " * Tue Jan 13 2009 - 1.0-10 - Added handling of exceptions when retrieving queues from SQS - Finalize hook now updates the source job's stats * Thu Dec 18 2008 - 1.0-9 - Status hook no longer outputs updates if the job completed - Finalize hook prints ID of job that doesn't run - Cleanly remove tempory directory on failure cases * Mon Dec 15 2008 - 1.0-8 - The status hook outputs updates, not entire classads - The finalize hook does file remapping and places files in job's iwd - The finalize hook attempts to access AWS multiple times before quitting * Sat Dec 13 2008 - 1.0-7 - Use GlobalJobId a part of unique S3 key - Handle more failure conditions when accessing AWS - Errors are printed to stderr - Read results from unique queue per job - Simplication of hooks since queues are now unique - Clean hook ensures all information has been remove from AWS - Finalize hook failure will force job to be re-routed - Translate hook now uses AmazonUserData instead of AmazonUserDataFile * Tue Dec 9 2008 - 1.0-6 - S3 data is stored in unique buckets - Print errors when having problems accessing S3 - Only encrypted the AWS secret access key and base64 encode - Print error message if invalid key files are given - Handle bad messages in SQS queues * Sun Dec 7 2008 - 1.0-5 - Fixed python dep issue on RHEL4 - Changes for python 2.3 compatibility - Added openssl dependency * Mon Dec 1 2008 - 1.0-4 - Fixed issue with uppercase file names being converted to lowercase names (BZ474071) * Fri Nov 4 2008 - 1.0-3 - Removed INSTALL and example from the common package - Updated INSTALL to mention RSA Private Key file * Fri Nov 4 2008 - 1.0-2 - Add changelog - Fix rpmlint issues * Fri Nov 4 2008 - 1.0-1 - Initial packaging --- NEW FILE import.log --- condor-ec2-enhanced-hooks-1_0-17_fc10:HEAD:condor-ec2-enhanced-hooks-1.0-17.fc10.src.rpm:1248879764 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:58:16 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:02:56 -0000 1.2 @@ -0,0 +1 @@ +condor-ec2-enhanced-hooks-1.0-17.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:58:16 -0000 1.1 +++ sources 29 Jul 2009 15:02:56 -0000 1.2 @@ -0,0 +1 @@ +25b14fae11afe0f0c3862677709acd4f condor-ec2-enhanced-hooks-1.0-17.tar.gz From rrati at fedoraproject.org Wed Jul 29 15:04:22 2009 From: rrati at fedoraproject.org (rrati) Date: Wed, 29 Jul 2009 15:04:22 +0000 (UTC) Subject: rpms/condor-job-hooks/devel condor-job-hooks.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729150422.176B411C00CE@cvs1.fedora.phx.redhat.com> Author: rrati Update of /cvs/pkgs/rpms/condor-job-hooks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24589/devel Modified Files: .cvsignore sources Added Files: condor-job-hooks.spec import.log Log Message: Initial import --- NEW FILE condor-job-hooks.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?is_fedora: %define is_fedora %(/bin/sh -c "if [ -e /etc/fedora-release ];then echo '1'; fi")} %define rel 9 Summary: Condor Job Hooks Name: condor-job-hooks Version: 1.0 Release: %{rel}%{?dist} License: ASL 2.0 Group: Applications/System URL: http://www.redhat.com/mrg # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. Source0: %{name}-%{version}-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python >= 2.3 Requires: condor >= 7.0.2-4 Requires: python-%{name}-common %description This package provides Condor job hooks that communicate with a translation daemon which interfaces with job delivery protocols outside of condor's native job delivery protocol. %package -n python-%{name}-common Summary: Common functions/utilities for condor job hooks Group: Applications/System BuildRequires: python-devel Requires: python >= 2.3 Obsoletes: condor-job-hooks-common %description -n python-%{name}-common Common functions and utilities used by MRG condor job hooks. %prep %setup -q %build %install rm -rf %{buildroot} mkdir -p %{buildroot}/%_libexecdir/condor/hooks mkdir -p %{buildroot}/%{python_sitelib}/jobhooks mkdir -p %{buildroot}/%_sysconfdir/condor cp -f hook*.py %{buildroot}/%_libexecdir/condor/hooks rm -f %{buildroot}/%_libexecdir/condor/hooks/hook_evict_claim.* cp -f functions.py %{buildroot}/%{python_sitelib}/jobhooks touch %{buildroot}/%{python_sitelib}/jobhooks/__init__.py cp -f config/job-hooks.conf %{buildroot}/%{_sysconfdir}/condor %post %if 0%{?is_fedora} == 0 if [[ -f /etc/opt/grid/job-hooks.conf ]]; then mv -f /etc/opt/grid/job-hooks.conf /etc/condor rmdir --ignore-fail-on-non-empty -p /etc/opt/grid fi %endif exit 0 %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE-2.0.txt %config(noreplace) %{_sysconfdir}/condor/job-hooks.conf %defattr(0755,root,root,-) %_libexecdir/condor/hooks/hook_fetch_work.py* %_libexecdir/condor/hooks/hook_job_exit.py* %_libexecdir/condor/hooks/hook_prepare_job.py* %_libexecdir/condor/hooks/hook_reply_fetch.py* %_libexecdir/condor/hooks/hook_update_job_status.py* %files -n python-%{name}-common %defattr(-,root,root,-) %doc LICENSE-2.0.txt %{python_sitelib}/jobhooks/functions.py* %{python_sitelib}/jobhooks/__init__.py* %changelog * Mon Jul 27 2009 - 1.0-9 - Renamed condor-job-hooks-common to python-condor-job-hooks-common to conform to packaging guidelines since the package installs in python sitelib. * Mon Jul 27 2009 - 1.0-8 - Fix rpmlint/packaging issues * Wed Jun 24 2009 - 1.0-7 - Hooks will first look for their configuration in condor's configuration files, then fall back to their config file - The config file has moved from /etc/opt/grid to /etc/condor * Tue Jun 2 2009 - 1.0-6 - Fixed an exception condition in the prepare hook that wasn't handled correctly * Fri Feb 13 2009 - 1.0-5 - Change source tarball name * Fri Dec 5 2008 - 1.0-4 - Cleaned up socket close code to provide cleaner shutdown * Wed Dec 3 2008 - 1.0-3 - Fixed python dependency issue with RHEL4 - Fixed issues running on python 2.3 * Fri Nov 4 2008 - 1.0-2 - Add changelog - Fix rpmlint issues * Fri Nov 4 2008 - 1.0-1 - Initial packaging --- NEW FILE import.log --- condor-job-hooks-1_0-9_fc10:HEAD:condor-job-hooks-1.0-9.fc10.src.rpm:1248879849 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/condor-job-hooks/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:57:52 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:04:21 -0000 1.2 @@ -0,0 +1 @@ +condor-job-hooks-1.0-9.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/condor-job-hooks/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:57:52 -0000 1.1 +++ sources 29 Jul 2009 15:04:21 -0000 1.2 @@ -0,0 +1 @@ +2dbad442f90772d32bf0b37860efc09f condor-job-hooks-1.0-9.tar.gz From rrati at fedoraproject.org Wed Jul 29 15:05:36 2009 From: rrati at fedoraproject.org (rrati) Date: Wed, 29 Jul 2009 15:05:36 +0000 (UTC) Subject: rpms/condor-low-latency/devel condor-low-latency.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729150536.0AC3511C00CE@cvs1.fedora.phx.redhat.com> Author: rrati Update of /cvs/pkgs/rpms/condor-low-latency/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24998/devel Modified Files: .cvsignore sources Added Files: condor-low-latency.spec import.log Log Message: Initial import --- NEW FILE condor-low-latency.spec --- %{!?is_fedora: %define is_fedora %(/bin/sh -c "if [ -e /etc/fedora-release ];then echo '1'; fi")} %define rel 17 Summary: Low Latency Scheduling Name: condor-low-latency Version: 1.0 Release: %{rel}%{?dist} License: ASL 2.0 Group: Applications/System URL: http://www.redhat.com/mrg # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. Source0: %{name}-%{version}-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python >= 2.3 Requires: condor >= 7.0.2-4 Requires: condor-job-hooks Requires: python-condor-job-hooks-common Requires: python-qpid %description Low Latency Scheduling provides a means for bypassing condor's normal scheduling process and instead submit work directly to an execute node using the AMQP protocol. %prep %setup -q %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_sbindir} mkdir -p %{buildroot}/%{_sysconfdir}/condor cp -f carod %{buildroot}/%_sbindir cp -f config/carod.conf %{buildroot}/%{_sysconfdir}/condor %post %if 0%{?is_fedora} == 0 if [[ -f /etc/opt/grid/carod.conf ]]; then mv -f /etc/opt/grid/carod.conf /etc/condor rmdir --ignore-fail-on-non-empty -p /etc/opt/grid fi %endif exit 0 %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE-2.0.txt ll_condor_config %config(noreplace) %_sysconfdir/condor/carod.conf %defattr(0755,root,root,-) %_sbindir/carod %changelog * Mon Jul 27 2009 - 1.0-17 - Clean up buildroot in install section * Mon Jul 27 2009 - 1.0-16 - Updated dependencies to match hooks-common rename * Mon Jul 27 2009 - 1.0-15 - Fix rpmlint/packaging issues * Wed Jun 24 2009 - 1.0-14 - carod will first look for its configuration in condor's configuration files, then fall back to its config file - The config file has moved from /etc/opt/grid to /etc/condor - Condor should control the start/stop/restart of carod * Tue Jun 2 2009 - 1.0-13 - The correlation id on response messages is set to the message id of the job running * Fri Mar 13 2009 - 1.0-12 - Fixed deadlocking issues (BZ489874) - Fixed problems sending results message (BZ489880) - Fixed exception cases that would result in the message not getting released for reprocessing * Fri Mar 6 2009 - 1.0-11 - Removed the vanilla universe restriction (BZ489001) - Fixed issue with AMQP message body of None (BZ489000) - Fxed equal sign (=) in attribute value ending up part of the header - Attributes and values are trimmed (BZ489003) - Preserve attribute value type information (BZ488996) * Thu Feb 19 2009 - 1.0-10 - Set JobStatus correctly (BZ459615) * Fri Feb 13 2009 - 1.0-9 - Change source tarball name * Thu Jan 29 2009 - 1.0-8 - Fix init file patch for Red Hat Enterprise Linux 4 * Mon Jan 12 2009 - 1.0-7 - BZ474405 * Tue Dec 16 2008 - 1.0-6 - If TransferOutput is set, only transfer the files listed as well as stdout/stderr files if they exist - Only package files in the job's iwd * Fri Dec 5 2008 - 1.0-5 - Cleaned up socket close code to provide cleaner shutdown * Wed Dec 3 2008 - 1.0-4 - Fixed python dependency with RHEL4 - Fixed issues running on python 2.3 * Wed Nov 19 2008 - 1.0-3 - Low Latency daemon is on by default - Daemon now appropriately handles Universe being set * Fri Nov 4 2008 - 1.0-2 - Add changelog - Fix rpmlint issues - Renamed init script to condor-low-latency * Fri Nov 4 2008 - 1.0-1 - Initial packaging --- NEW FILE import.log --- condor-low-latency-1_0-17_fc10:HEAD:condor-low-latency-1.0-17.fc10.src.rpm:1248879923 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/condor-low-latency/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 00:57:26 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:05:35 -0000 1.2 @@ -0,0 +1 @@ +condor-low-latency-1.0-17.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/condor-low-latency/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 00:57:26 -0000 1.1 +++ sources 29 Jul 2009 15:05:35 -0000 1.2 @@ -0,0 +1 @@ +6942773751dcd775eda0778c7057aa86 condor-low-latency-1.0-17.tar.gz From spot at fedoraproject.org Wed Jul 29 15:11:33 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 15:11:33 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/F-10 python-repoze-what-quickstart.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729151133.9460911C00D5@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26220/F-10 Modified Files: sources Added Files: python-repoze-what-quickstart.spec Log Message: initial branching --- NEW FILE python-repoze-what-quickstart.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-quickstart Version: 1.0 Release: 2%{?dist} Summary: A plugin for a simple authentication system with repoze.who/what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-quickstart/repoze.what-quickstart-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel BuildRequires: python-repoze-what >= 1.0.3, python-repoze-who, python-repoze-who-plugins-sa BuildRequires: python-repoze-what-plugins-sql, python-nose, python-coverage Requires: python-repoze-what >= 1.0.3 Requires: python-repoze-who, python-repoze-who-plugins-sa, python-repoze-who-plugins-sql Requires: python-repoze-who-friendlyform %description This plugin allows you to take advantage of a rather simple, and usual, authentication and authorization setup, in which the users? data, the groups and the permissions used in the application are all stored in a SQLAlchemy or Elixir-managed database. Put simply, it configures repoze.who and repoze.what in one go so that you can have an authentication and authorization system working quickly ? hence the name. %prep %setup -q -n repoze.what-quickstart-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Tests broken # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt # Need to own this dir, nothing else in our dep chain does %{python_sitelib}/repoze/what/plugins/ %{python_sitelib}/repoze.what_quickstart* %changelog * Wed Jul 29 2009 Tom "spot" Callaway - 1.0-2 - fix summary, file ownership * Tue May 19 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-quickstart/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:56:19 -0000 1.1 +++ sources 29 Jul 2009 15:11:33 -0000 1.2 @@ -0,0 +1 @@ +6499da654b0ca70b5c089ba4e65118b3 repoze.what-quickstart-1.0.tar.gz From spot at fedoraproject.org Wed Jul 29 15:11:33 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 15:11:33 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/F-11 python-repoze-what-quickstart.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729151133.A3B9111C0427@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26220/F-11 Modified Files: sources Added Files: python-repoze-what-quickstart.spec Log Message: initial branching --- NEW FILE python-repoze-what-quickstart.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-quickstart Version: 1.0 Release: 2%{?dist} Summary: A plugin for a simple authentication system with repoze.who/what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-quickstart/repoze.what-quickstart-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel BuildRequires: python-repoze-what >= 1.0.3, python-repoze-who, python-repoze-who-plugins-sa BuildRequires: python-repoze-what-plugins-sql, python-nose, python-coverage Requires: python-repoze-what >= 1.0.3 Requires: python-repoze-who, python-repoze-who-plugins-sa, python-repoze-who-plugins-sql Requires: python-repoze-who-friendlyform %description This plugin allows you to take advantage of a rather simple, and usual, authentication and authorization setup, in which the users? data, the groups and the permissions used in the application are all stored in a SQLAlchemy or Elixir-managed database. Put simply, it configures repoze.who and repoze.what in one go so that you can have an authentication and authorization system working quickly ? hence the name. %prep %setup -q -n repoze.what-quickstart-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Tests broken # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt # Need to own this dir, nothing else in our dep chain does %{python_sitelib}/repoze/what/plugins/ %{python_sitelib}/repoze.what_quickstart* %changelog * Wed Jul 29 2009 Tom "spot" Callaway - 1.0-2 - fix summary, file ownership * Tue May 19 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-quickstart/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:56:19 -0000 1.1 +++ sources 29 Jul 2009 15:11:33 -0000 1.2 @@ -0,0 +1 @@ +6499da654b0ca70b5c089ba4e65118b3 repoze.what-quickstart-1.0.tar.gz From spot at fedoraproject.org Wed Jul 29 15:11:33 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 15:11:33 +0000 (UTC) Subject: rpms/python-repoze-what-quickstart/EL-5 python-repoze-what-quickstart.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729151133.90EDC11C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-quickstart/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26220/EL-5 Modified Files: sources Added Files: python-repoze-what-quickstart.spec Log Message: initial branching --- NEW FILE python-repoze-what-quickstart.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-quickstart Version: 1.0 Release: 2%{?dist} Summary: A plugin for a simple authentication system with repoze.who/what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-quickstart/repoze.what-quickstart-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel BuildRequires: python-repoze-what >= 1.0.3, python-repoze-who, python-repoze-who-plugins-sa BuildRequires: python-repoze-what-plugins-sql, python-nose, python-coverage Requires: python-repoze-what >= 1.0.3 Requires: python-repoze-who, python-repoze-who-plugins-sa, python-repoze-who-plugins-sql Requires: python-repoze-who-friendlyform %description This plugin allows you to take advantage of a rather simple, and usual, authentication and authorization setup, in which the users? data, the groups and the permissions used in the application are all stored in a SQLAlchemy or Elixir-managed database. Put simply, it configures repoze.who and repoze.what in one go so that you can have an authentication and authorization system working quickly ? hence the name. %prep %setup -q -n repoze.what-quickstart-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Tests broken # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt # Need to own this dir, nothing else in our dep chain does %{python_sitelib}/repoze/what/plugins/ %{python_sitelib}/repoze.what_quickstart* %changelog * Wed Jul 29 2009 Tom "spot" Callaway - 1.0-2 - fix summary, file ownership * Tue May 19 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-quickstart/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:56:19 -0000 1.1 +++ sources 29 Jul 2009 15:11:32 -0000 1.2 @@ -0,0 +1 @@ +6499da654b0ca70b5c089ba4e65118b3 repoze.what-quickstart-1.0.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 15:13:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:13:22 +0000 Subject: [pkgdb] Panini (Fedora, 11) updated by tibbs Message-ID: <20090729151322.A530210F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for Panini tibbs has set commit to Approved for 107427 on Panini (Fedora 10) tibbs has set checkout to Approved for 107427 on Panini (Fedora 10) tibbs has set build to Approved for 107427 on Panini (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Panini From tibbs at fedoraproject.org Wed Jul 29 15:13:34 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:13:34 +0000 (UTC) Subject: rpms/Panini Makefile,NONE,1.1 Message-ID: <20090729151334.99A1911C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/Panini In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz26766/rpms/Panini Added Files: Makefile Log Message: Setup of module Panini --- NEW FILE Makefile --- # Top level Makefile for module Panini all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 15:13:34 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:13:34 +0000 (UTC) Subject: rpms/Panini/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729151334.E095611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/Panini/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz26766/rpms/Panini/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module Panini --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: Panini # $Id: Makefile,v 1.1 2009/07/29 15:13:34 tibbs Exp $ NAME := Panini SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 29 15:14:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:48 +0000 Subject: [pkgdb] perl-Devel-Refcount was added for kwizart Message-ID: <20090729151448.F28FB10F8A1@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Devel-Refcount with summary Obtain the REFCNT value of a referent tibbs has approved Package perl-Devel-Refcount tibbs has added a Fedora devel branch for perl-Devel-Refcount with an owner of kwizart tibbs has approved perl-Devel-Refcount in Fedora devel tibbs has approved Package perl-Devel-Refcount tibbs has set commit to Approved for 107427 on perl-Devel-Refcount (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Devel-Refcount (Fedora devel) tibbs has set build to Approved for 107427 on perl-Devel-Refcount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From pkgdb at fedoraproject.org Wed Jul 29 15:14:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:49 +0000 Subject: [pkgdb] perl-Devel-Refcount summary updated by tibbs Message-ID: <20090729151449.EC1F510F89F@bastion2.fedora.phx.redhat.com> tibbs set package perl-Devel-Refcount summary to Obtain the REFCNT value of a referent To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From pkgdb at fedoraproject.org Wed Jul 29 15:14:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:49 +0000 Subject: [pkgdb] perl-Devel-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729151450.05B6110F8B6@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Devel-Refcount (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Devel-Refcount (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From pkgdb at fedoraproject.org Wed Jul 29 15:14:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:49 +0000 Subject: [pkgdb] perl-Devel-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729151450.112EE10F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Devel-Refcount tibbs has set commit to Approved for 107427 on perl-Devel-Refcount (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Devel-Refcount (Fedora 10) tibbs has set build to Approved for 107427 on perl-Devel-Refcount (Fedora 10) tibbs approved watchbugzilla on perl-Devel-Refcount (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Devel-Refcount (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From tibbs at fedoraproject.org Wed Jul 29 15:14:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:14:55 +0000 (UTC) Subject: rpms/perl-Devel-Refcount - New directory Message-ID: <20090729151455.1378311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-Refcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd27218/rpms/perl-Devel-Refcount Log Message: Directory /cvs/pkgs/rpms/perl-Devel-Refcount added to the repository From pkgdb at fedoraproject.org Wed Jul 29 15:14:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:49 +0000 Subject: [pkgdb] perl-Devel-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729151450.1BFE810F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Devel-Refcount tibbs has set commit to Approved for 107427 on perl-Devel-Refcount (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Devel-Refcount (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Devel-Refcount (Fedora EPEL 5) tibbs approved watchbugzilla on perl-Devel-Refcount (Fedora EPEL 5) for perl-sig tibbs approved watchcommits on perl-Devel-Refcount (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From pkgdb at fedoraproject.org Wed Jul 29 15:14:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:14:49 +0000 Subject: [pkgdb] perl-Devel-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729151450.2108210F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Devel-Refcount tibbs has set commit to Approved for 107427 on perl-Devel-Refcount (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Devel-Refcount (Fedora 11) tibbs has set build to Approved for 107427 on perl-Devel-Refcount (Fedora 11) tibbs approved watchbugzilla on perl-Devel-Refcount (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Devel-Refcount (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-Refcount From tibbs at fedoraproject.org Wed Jul 29 15:14:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:14:55 +0000 (UTC) Subject: rpms/perl-Devel-Refcount/devel - New directory Message-ID: <20090729151455.3341711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-Refcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd27218/rpms/perl-Devel-Refcount/devel Log Message: Directory /cvs/pkgs/rpms/perl-Devel-Refcount/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 15:15:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:15:00 +0000 (UTC) Subject: rpms/perl-Devel-Refcount Makefile,NONE,1.1 Message-ID: <20090729151500.F0FBF11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-Refcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd27218/rpms/perl-Devel-Refcount Added Files: Makefile Log Message: Setup of module perl-Devel-Refcount --- NEW FILE Makefile --- # Top level Makefile for module perl-Devel-Refcount all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 15:15:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:15:01 +0000 (UTC) Subject: rpms/perl-Devel-Refcount/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729151501.4441411C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-Refcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsd27218/rpms/perl-Devel-Refcount/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Devel-Refcount --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Devel-Refcount # $Id: Makefile,v 1.1 2009/07/29 15:15:01 tibbs Exp $ NAME := perl-Devel-Refcount SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jcollie at fedoraproject.org Wed Jul 29 15:19:52 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Wed, 29 Jul 2009 15:19:52 +0000 (UTC) Subject: rpms/gsm/devel gsm.spec,1.9,1.10 Message-ID: <20090729151952.319C311C00CE@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/gsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28369 Modified Files: gsm.spec Log Message: * Wed Jul 29 2009 Jeffrey C. Ollie - 1.0.13-2 - Fix dangling symlinks for shared lib, thanks to Lucian Langa for pointing out the issue. Index: gsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/gsm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gsm.spec 28 Jul 2009 20:29:26 -0000 1.9 +++ gsm.spec 29 Jul 2009 15:19:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: gsm Version: 1.0.13 -Release: 1.1%{?dist} +Release: 2%{?dist} Summary: Shared libraries for GSM speech compressor Group: System Environment/Libraries @@ -79,8 +79,8 @@ make install \ GSM_INSTALL_LIB=$RPM_BUILD_ROOT%{_libdir} cp -p $RPM_BUILD_DIR/gsm-%{srcver}/lib/libgsm.so.%{soname} $RPM_BUILD_ROOT%{_libdir} -ln -s libgsm.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libgsm.so.1 -ln -s libgsm.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libgsm.so +ln -s libgsm.so.%{soname} $RPM_BUILD_ROOT%{_libdir}/libgsm.so.1 +ln -s libgsm.so.%{soname} $RPM_BUILD_ROOT%{_libdir}/libgsm.so # some apps look for this in /usr/include ln -s gsm/gsm.h $RPM_BUILD_ROOT%{_includedir} @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 29 2009 Jeffrey C. Ollie - 1.0.13-2 +- Fix dangling symlinks for shared lib, thanks to Lucian Langa for pointing out the issue. + * Tue Jul 28 2009 Jeffrey C. Ollie - 1.0.13-1.1 - Upload sources From ausil at fedoraproject.org Wed Jul 29 15:24:57 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 29 Jul 2009 15:24:57 +0000 (UTC) Subject: rpms/webkitgtk/devel webkit-1.1.12-atomic-word.patch, NONE, 1.1 webkitgtk.spec, 1.14, 1.15 webkit-1.1.11-atomic-word.patch, 1.1, NONE Message-ID: <20090729152457.8DEAF11C00CE@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29546 Modified Files: webkitgtk.spec Added Files: webkit-1.1.12-atomic-word.patch Removed Files: webkit-1.1.11-atomic-word.patch Log Message: update the atomic word patch webkit-1.1.12-atomic-word.patch: webkit-1.1.11/JavaScriptCore/wtf/Platform.h | 9 ++++++++- webkit-1.1.12/JavaScriptCore/wtf/Threading.h | 14 +++++++------- 2 files changed, 15 insertions(+), 8 deletions(-) --- NEW FILE webkit-1.1.12-atomic-word.patch --- --- webkit-1.1.11/JavaScriptCore/wtf/Platform.h.orig 2009-07-14 13:01:51.000000000 -0500 +++ webkit-1.1.11/JavaScriptCore/wtf/Platform.h 2009-07-14 13:04:59.000000000 -0500 @@ -272,9 +272,16 @@ #endif /* PLATFORM(SPARC64) */ -#if defined(__sparc64__) +#if defined(__sparc64__)\ + || defined(__sparc__) && defined(_arch64__) #define WTF_PLATFORM_SPARC64 1 #define WTF_PLATFORM_BIG_ENDIAN 1 +#else +/* PLATFORM(SPARC) */ +#if defined(__sparc__) +#define WTF_PLATFORM_SPARC 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif #endif /* PLATFORM(WINCE) && PLATFORM(QT) --- webkit-1.1.12/JavaScriptCore/wtf/Threading.h.orig 2009-07-20 05:05:08.000000000 -0500 +++ webkit-1.1.12/JavaScriptCore/wtf/Threading.h 2009-07-28 21:53:46.000000000 -0500 @@ -229,14 +229,14 @@ #elif COMPILER(GCC) #define WTF_USE_LOCKFREE_THREADSAFESHARED 1 -inline void atomicIncrement(int volatile* addend) { __gnu_cxx::__atomic_add(addend, 1); } -inline int atomicDecrement(int volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, -1) - 1; } +inline void atomicIncrement(_Atomic_word volatile* addend) { __gnu_cxx::__atomic_add(addend, 1); } +inline _Atomic_word atomicDecrement(_Atomic_word volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, -1) - 1; } #endif class ThreadSafeSharedBase : public Noncopyable { public: - ThreadSafeSharedBase(int initialRefCount = 1) + ThreadSafeSharedBase(_Atomic_word initialRefCount = 1) : m_refCount(initialRefCount) { } @@ -256,12 +256,12 @@ return refCount() == 1; } - int refCount() const + _Atomic_word refCount() const { #if !USE(LOCKFREE_THREADSAFESHARED) MutexLocker locker(m_mutex); #endif - return static_cast(m_refCount); + return static_cast<_Atomic_word const volatile &>(m_refCount); } protected: @@ -288,7 +288,7 @@ template friend class CrossThreadRefCounted; - int m_refCount; + _Atomic_word m_refCount; #if !USE(LOCKFREE_THREADSAFESHARED) mutable Mutex m_mutex; #endif @@ -296,7 +296,7 @@ template class ThreadSafeShared : public ThreadSafeSharedBase { public: - ThreadSafeShared(int initialRefCount = 1) + ThreadSafeShared(_Atomic_word initialRefCount = 1) : ThreadSafeSharedBase(initialRefCount) { } Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- webkitgtk.spec 29 Jul 2009 01:46:49 -0000 1.14 +++ webkitgtk.spec 29 Jul 2009 15:24:57 -0000 1.15 @@ -46,7 +46,7 @@ License: LGPLv2+ and BSD URL: http://www.webkitgtk.org/ Source0: http://www.webkitgtk.org/webkit-%{version}.tar.gz -Patch0: webkit-1.1.11-atomic-word.patch +Patch0: webkit-1.1.12-atomic-word.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- webkit-1.1.11-atomic-word.patch DELETED --- From anttix at fedoraproject.org Wed Jul 29 15:26:39 2009 From: anttix at fedoraproject.org (Antti Andreimann) Date: Wed, 29 Jul 2009 15:26:39 +0000 (UTC) Subject: rpms/xml-security-c/F-11 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xml-security-c.spec, 1.1, 1.2 Message-ID: <20090729152639.B030E11C00CE@cvs1.fedora.phx.redhat.com> Author: anttix Update of /cvs/pkgs/rpms/xml-security-c/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30134 Modified Files: .cvsignore sources xml-security-c.spec Log Message: Upgrade to 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jun 2009 19:26:14 -0000 1.2 +++ .cvsignore 29 Jul 2009 15:26:39 -0000 1.3 @@ -1 +1 @@ -xml-security-c-1.4.0.tar.gz +xml-security-c-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jun 2009 19:26:14 -0000 1.2 +++ sources 29 Jul 2009 15:26:39 -0000 1.3 @@ -1 +1 @@ -dd9accf6727eb008dbf1dd674d5d4dcc xml-security-c-1.4.0.tar.gz +2c47c4ec12e8d6abe967aa5e5e99000c xml-security-c-1.5.1.tar.gz Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-11/xml-security-c.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xml-security-c.spec 1 Jun 2009 19:26:14 -0000 1.1 +++ xml-security-c.spec 29 Jul 2009 15:26:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: xml-security-c -Version: 1.4.0 -Release: 2%{?dist} +Version: 1.5.1 +Release: 1%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -10,7 +10,7 @@ Source: http://santuario.apache. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xerces-c-devel xalan-c-devel openssl-devel -BuildRequires: pkgconfig +BuildRequires: pkgconfig %description The xml-security-c library is a C++ implementation of the XML Digital Signature @@ -23,11 +23,11 @@ XSLT transforms. Summary: Development files for xml-security-c Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: xerces-c-devel xalan-c-devel openssl-devel +Requires: xerces-c-devel xalan-c-devel openssl-devel # There are a number of headers that can use NSS if HAVE_NSS is set to 1 # Current build does not set it (configure does not even check for NSS) # so we do not include this dependency for now. -# Requires: nss-devel +# Requires: nss-devel %description devel This package provides development files for xml-security-c, a C++ library for @@ -81,6 +81,16 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Tue Jul 28 2009 Antti Andreimann 1.5.1-1 +- New upstream relase (#513078) +- Fixes CVE-2009-0217 (#511915) + +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 06 2009 Antti Andreimann - 1.5.0-1 +- New upstream release + * Tue Apr 28 2009 Antti Andreimann - 1.4.0-2 - Execute sed magic against configure instead of configure.ac to avoid calling autotools From kwizart at fedoraproject.org Wed Jul 29 15:26:45 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 15:26:45 +0000 (UTC) Subject: rpms/perl-Devel-Refcount/devel import.log, NONE, 1.1 perl-Devel-Refcount.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729152645.5AE1811C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-Refcount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30119/devel Modified Files: .cvsignore sources Added Files: import.log perl-Devel-Refcount.spec Log Message: Initial import for deve --- NEW FILE import.log --- perl-Devel-Refcount-0_06-1_fc11:HEAD:perl-Devel-Refcount-0.06-1.fc11.src.rpm:1248881165 --- NEW FILE perl-Devel-Refcount.spec --- Name: perl-Devel-Refcount Version: 0.06 Release: 1%{?dist} Summary: Obtain the REFCNT value of a referent License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-Refcount/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Devel-Refcount-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a single function which obtains the reference count of the object being pointed to by the passed reference value. %prep %setup -q -n Devel-Refcount-%{version} %build %{__perl} Build.PL installdirs=vendor optimize="$RPM_OPT_FLAGS" ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.06-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:15:01 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:26:45 -0000 1.2 @@ -0,0 +1 @@ +Devel-Refcount-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:15:01 -0000 1.1 +++ sources 29 Jul 2009 15:26:45 -0000 1.2 @@ -0,0 +1 @@ +97398b8091432ebe16528d13d1169233 Devel-Refcount-0.06.tar.gz From kwizart at fedoraproject.org Wed Jul 29 15:27:42 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 15:27:42 +0000 (UTC) Subject: rpms/perl-Devel-Refcount/F-11 import.log, NONE, 1.1 perl-Devel-Refcount.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729152742.4D68011C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-Refcount/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30566/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Devel-Refcount.spec Log Message: Initial import fro F-11 --- NEW FILE import.log --- perl-Devel-Refcount-0_06-1_fc11:F-11:perl-Devel-Refcount-0.06-1.fc11.src.rpm:1248881232 --- NEW FILE perl-Devel-Refcount.spec --- Name: perl-Devel-Refcount Version: 0.06 Release: 1%{?dist} Summary: Obtain the REFCNT value of a referent License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-Refcount/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Devel-Refcount-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a single function which obtains the reference count of the object being pointed to by the passed reference value. %prep %setup -q -n Devel-Refcount-%{version} %build %{__perl} Build.PL installdirs=vendor optimize="$RPM_OPT_FLAGS" ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.06-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:15:01 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:27:42 -0000 1.2 @@ -0,0 +1 @@ +Devel-Refcount-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:15:01 -0000 1.1 +++ sources 29 Jul 2009 15:27:42 -0000 1.2 @@ -0,0 +1 @@ +97398b8091432ebe16528d13d1169233 Devel-Refcount-0.06.tar.gz From kwizart at fedoraproject.org Wed Jul 29 15:28:42 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 29 Jul 2009 15:28:42 +0000 (UTC) Subject: rpms/perl-Devel-Refcount/F-10 import.log, NONE, 1.1 perl-Devel-Refcount.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729152842.B07C511C00CE@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-Refcount/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30880/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Devel-Refcount.spec Log Message: Initial import for F-10 --- NEW FILE import.log --- perl-Devel-Refcount-0_06-1_fc11:F-10:perl-Devel-Refcount-0.06-1.fc11.src.rpm:1248881291 --- NEW FILE perl-Devel-Refcount.spec --- Name: perl-Devel-Refcount Version: 0.06 Release: 1%{?dist} Summary: Obtain the REFCNT value of a referent License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-Refcount/ Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Devel-Refcount-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a single function which obtains the reference count of the object being pointed to by the passed reference value. %prep %setup -q -n Devel-Refcount-%{version} %build %{__perl} Build.PL installdirs=vendor optimize="$RPM_OPT_FLAGS" ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Tue Jul 21 2009 Nicolas Chauvet (kwizart) 0.06-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:15:01 -0000 1.1 +++ .cvsignore 29 Jul 2009 15:28:42 -0000 1.2 @@ -0,0 +1 @@ +Devel-Refcount-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Refcount/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:15:01 -0000 1.1 +++ sources 29 Jul 2009 15:28:42 -0000 1.2 @@ -0,0 +1 @@ +97398b8091432ebe16528d13d1169233 Devel-Refcount-0.06.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 15:28:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:28:44 +0000 Subject: [pkgdb] heartbeat had acl change status Message-ID: <20090729152844.A782610F89A@bastion2.fedora.phx.redhat.com> kevin has set the watchbugzilla acl on heartbeat (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From pkgdb at fedoraproject.org Wed Jul 29 15:28:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:28:45 +0000 Subject: [pkgdb] heartbeat had acl change status Message-ID: <20090729152845.E0B1A10F89F@bastion2.fedora.phx.redhat.com> kevin has set the watchcommits acl on heartbeat (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From pkgdb at fedoraproject.org Wed Jul 29 15:28:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:28:47 +0000 Subject: [pkgdb] heartbeat had acl change status Message-ID: <20090729152847.E779E10F8B5@bastion2.fedora.phx.redhat.com> kevin has set the commit acl on heartbeat (Fedora devel) to Approved for beekhof To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/heartbeat From pkgdb at fedoraproject.org Wed Jul 29 15:13:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:13:22 +0000 Subject: [pkgdb] Panini summary updated by tibbs Message-ID: <20090729151322.93B9810F8B1@bastion2.fedora.phx.redhat.com> tibbs set package Panini summary to A tool for creating perspective views from panoramic and wide angle images To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Panini From spot at fedoraproject.org Wed Jul 29 15:31:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 29 Jul 2009 15:31:17 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/EL-5 python-repoze-what-plugins-sql-setuptools.patch, NONE, 1.1 python-repoze-what-plugins-sql.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729153117.24C6F11C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31835/EL-5 Modified Files: sources Added Files: python-repoze-what-plugins-sql-setuptools.patch python-repoze-what-plugins-sql.spec Log Message: EL-5 branch python-repoze-what-plugins-sql-setuptools.patch: setup.py | 3 --- 1 file changed, 3 deletions(-) --- NEW FILE python-repoze-what-plugins-sql-setuptools.patch --- --- setup.py.orig 2009-06-05 07:44:02.000000000 -0400 +++ setup.py 2009-06-05 07:44:06.000000000 -0400 @@ -17,9 +17,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-plugins-sql.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define rcver rc1 Name: python-repoze-what-plugins-sql Version: 1.0 Release: 0.6.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what.plugins.sql/ Source0: http://pypi.python.org/packages/source/r/repoze.what.plugins.sql/repoze.what.plugins.sql-%{version}%{rcver}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what BuildRequires: python-sqlalchemy >= 0.5 Requires: python-repoze-what >= 1.0.3 Requires: python-sqlalchemy >= 0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa %description This is an adapters and extras plugin for repoze.what. The SQL plugin makes repoze.what support sources defined in SQLAlchemy-managed databases by providing one group adapter, one permission adapter and one utility to configure both in one go (optionally, when the group source and the permission source have a relationship). This plugin also defines repoze.what.plugins.quickstart. %prep %setup -q -n repoze.what.plugins.sql-%{version}%{rcver} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.6.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 - Remove the sqlalchemy0.5 requirement for rawhide * Wed Jun 17 2009 Luke Macken - 1.0-0.4.rc1 - Require python-sqlalchemy0.5 * Fri Jun 05 2009 Luke Macken - 1.0-0.3.rc1 - Patch our setup.py to use our own setuptools package * Sat May 30 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 * Tue Jan 06 2009 Luke Macken - 1.0-0.1.a1.r3024 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 15:22:16 -0000 1.1 +++ sources 29 Jul 2009 15:31:17 -0000 1.2 @@ -0,0 +1 @@ +0e3da6fed2c2d74732cbd8323476b21b repoze.what.plugins.sql-1.0rc1.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 15:13:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:13:22 +0000 Subject: [pkgdb] Panini (Fedora, 11) updated by tibbs Message-ID: <20090729151322.9B62910F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for Panini tibbs has set commit to Approved for 107427 on Panini (Fedora 11) tibbs has set checkout to Approved for 107427 on Panini (Fedora 11) tibbs has set build to Approved for 107427 on Panini (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Panini From tibbs at fedoraproject.org Wed Jul 29 15:13:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:13:28 +0000 (UTC) Subject: rpms/Panini - New directory Message-ID: <20090729151328.3B70611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/Panini In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz26766/rpms/Panini Log Message: Directory /cvs/pkgs/rpms/Panini added to the repository From tibbs at fedoraproject.org Wed Jul 29 15:13:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:13:28 +0000 (UTC) Subject: rpms/Panini/devel - New directory Message-ID: <20090729151328.54D5F11C00D5@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/Panini/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz26766/rpms/Panini/devel Log Message: Directory /cvs/pkgs/rpms/Panini/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 15:13:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:13:21 +0000 Subject: [pkgdb] Panini was added for ankursinha Message-ID: <20090729151321.C518010F89F@bastion2.fedora.phx.redhat.com> tibbs has added Package Panini with summary A tool for creating perspective views from panoramic and wide angle images tibbs has approved Package Panini tibbs has added a Fedora devel branch for Panini with an owner of ankursinha tibbs has approved Panini in Fedora devel tibbs has approved Package Panini tibbs has set commit to Approved for 107427 on Panini (Fedora devel) tibbs has set checkout to Approved for 107427 on Panini (Fedora devel) tibbs has set build to Approved for 107427 on Panini (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Panini From rjones at fedoraproject.org Wed Jul 29 15:40:16 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 29 Jul 2009 15:40:16 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.43, 1.44 libguestfs.spec, 1.81, 1.82 sources, 1.43, 1.44 Message-ID: <20090729154016.6FDE811C04D6@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2061 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 - New upstream release 1.0.65. - Add Obsoletes for virt-df2 (RHBZ#514309). - Disable tests because of ongoing TCG problems with newest qemu in Rawhide. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 23 Jul 2009 10:22:45 -0000 1.43 +++ .cvsignore 29 Jul 2009 15:40:16 -0000 1.44 @@ -1 +1 @@ -libguestfs-1.0.64.tar.gz +libguestfs-1.0.65.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- libguestfs.spec 23 Jul 2009 22:26:20 -0000 1.81 +++ libguestfs.spec 29 Jul 2009 15:40:16 -0000 1.82 @@ -4,8 +4,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.64 -Release: 3%{?dist} +Version: 1.0.65 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -160,6 +160,9 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl-Sys-Virt +# RHBZ#514309 +Provides: virt-df2 = %{epoch}:%{version}-%{release} +Obsoletes: virt-df2 <= %{epoch}:%{version}-%{release} %description -n virt-df @@ -336,10 +339,11 @@ export LIBGUESTFS_DEBUG=1 # 503236 i386 F-12 cryptomgr_test at doublefault_fn # 507066 all F-12 sequence of chroot calls (FIXED) # 513249 all F-12 guestfwd broken in qemu (FIXED) +# - ? F-12 qemu TCG on Xen is broken again -%ifarch x86_64 -make check -%endif +#%ifarch x86_64 +#make check +#%endif %install @@ -533,6 +537,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 +- New upstream release 1.0.65. +- Add Obsoletes for virt-df2 (RHBZ#514309). +- Disable tests because of ongoing TCG problems with newest qemu in Rawhide. + * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-3 - RHBZ#513249 bug in qemu is now fixed, so try to rebuild and run tests. - However RHBZ#503236 still prevents us from testing on i386. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 23 Jul 2009 10:22:45 -0000 1.43 +++ sources 29 Jul 2009 15:40:16 -0000 1.44 @@ -1 +1 @@ -83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz +ac72d1b46d9a78c6d2dc3439fcc0784d libguestfs-1.0.65.tar.gz From rjones at fedoraproject.org Wed Jul 29 15:40:31 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 29 Jul 2009 15:40:31 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.30, 1.31 libguestfs.spec, 1.49, 1.50 sources, 1.30, 1.31 Message-ID: <20090729154031.87B3111C04D6@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2122 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 - New upstream release 1.0.65. - Add Obsoletes for virt-df2 (RHBZ#514309). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- .cvsignore 23 Jul 2009 10:41:46 -0000 1.30 +++ .cvsignore 29 Jul 2009 15:40:31 -0000 1.31 @@ -1 +1 @@ -libguestfs-1.0.64.tar.gz +libguestfs-1.0.65.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- libguestfs.spec 23 Jul 2009 22:26:22 -0000 1.49 +++ libguestfs.spec 29 Jul 2009 15:40:31 -0000 1.50 @@ -4,8 +4,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.64 -Release: 2%{?dist} +Version: 1.0.65 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -160,6 +160,9 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl-Sys-Virt +# RHBZ#514309 +Provides: virt-df2 = %{epoch}:%{version}-%{release} +Obsoletes: virt-df2 <= %{epoch}:%{version}-%{release} %description -n virt-df @@ -332,6 +335,7 @@ export LIBGUESTFS_DEBUG=1 # 503236 i386 F-12 cryptomgr_test at doublefault_fn # 507066 all F-12 sequence of chroot calls (FIXED) # 513249 all F-12 guestfwd broken in qemu +# - ? F-12 qemu TCG on Xen is broken again %ifarch x86_64 make check @@ -529,6 +533,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 +- New upstream release 1.0.65. +- Add Obsoletes for virt-df2 (RHBZ#514309). + * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 23 Jul 2009 10:41:47 -0000 1.30 +++ sources 29 Jul 2009 15:40:31 -0000 1.31 @@ -1 +1 @@ -83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz +ac72d1b46d9a78c6d2dc3439fcc0784d libguestfs-1.0.65.tar.gz From rjones at fedoraproject.org Wed Jul 29 15:40:44 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 29 Jul 2009 15:40:44 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.24, 1.25 libguestfs.spec, 1.51, 1.52 sources, 1.24, 1.25 Message-ID: <20090729154044.E9A2D11C00CE@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2246 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 - New upstream release 1.0.65. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 23 Jul 2009 10:44:24 -0000 1.24 +++ .cvsignore 29 Jul 2009 15:40:44 -0000 1.25 @@ -1 +1 @@ -libguestfs-1.0.64.tar.gz +libguestfs-1.0.65.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- libguestfs.spec 27 Jul 2009 13:08:12 -0000 1.51 +++ libguestfs.spec 29 Jul 2009 15:40:44 -0000 1.52 @@ -4,8 +4,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.64 -Release: 3%{?dist} +Version: 1.0.65 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -537,6 +537,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 +- New upstream release 1.0.65. + * Mon Jul 27 2009 Richard W.M. Jones - 1.0.64-3 - Fix broken runtime dep on virt-inspector (Dennis Gilmore). - Fix broken runtime dep on genisoimage (Dennis Gilmore). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 23 Jul 2009 10:44:24 -0000 1.24 +++ sources 29 Jul 2009 15:40:44 -0000 1.25 @@ -1 +1 @@ -83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz +ac72d1b46d9a78c6d2dc3439fcc0784d libguestfs-1.0.65.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 15:50:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:50:02 +0000 Subject: [pkgdb] ruby-flexmock ownership updated Message-ID: <20090729155002.7D0D010F882@bastion2.fedora.phx.redhat.com> Package ruby-flexmock in Fedora 11 is now owned by mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ruby-flexmock From pkgdb at fedoraproject.org Wed Jul 29 15:50:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:50:03 +0000 Subject: [pkgdb] ruby-flexmock ownership updated Message-ID: <20090729155003.9CD7110F897@bastion2.fedora.phx.redhat.com> Package ruby-flexmock in Fedora 10 is now owned by mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ruby-flexmock From pkgdb at fedoraproject.org Wed Jul 29 15:53:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:53:02 +0000 Subject: [pkgdb] kmess summary updated by tibbs Message-ID: <20090729155302.6CFD310F89B@bastion2.fedora.phx.redhat.com> tibbs set package kmess summary to KDE Messaging client for MSN To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kmess From pkgdb at fedoraproject.org Wed Jul 29 15:53:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:53:01 +0000 Subject: [pkgdb] kmess was added for tuxbrewr Message-ID: <20090729155301.26F4710F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package kmess with summary KDE Messaging client for MSN tibbs has approved Package kmess tibbs has added a Fedora devel branch for kmess with an owner of tuxbrewr tibbs has approved kmess in Fedora devel tibbs has approved Package kmess tibbs has set commit to Approved for 107427 on kmess (Fedora devel) tibbs has set checkout to Approved for 107427 on kmess (Fedora devel) tibbs has set build to Approved for 107427 on kmess (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kmess From pkgdb at fedoraproject.org Wed Jul 29 15:53:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:53:02 +0000 Subject: [pkgdb] kmess (Fedora, 11) updated by tibbs Message-ID: <20090729155302.76C1B10F89F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for kmess tibbs has set commit to Approved for 107427 on kmess (Fedora 11) tibbs has set checkout to Approved for 107427 on kmess (Fedora 11) tibbs has set build to Approved for 107427 on kmess (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kmess From tibbs at fedoraproject.org Wed Jul 29 15:53:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:53:07 +0000 (UTC) Subject: rpms/kmess - New directory Message-ID: <20090729155307.1C28811C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kmess In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsho4960/rpms/kmess Log Message: Directory /cvs/pkgs/rpms/kmess added to the repository From tibbs at fedoraproject.org Wed Jul 29 15:53:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:53:07 +0000 (UTC) Subject: rpms/kmess/devel - New directory Message-ID: <20090729155307.39D5711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kmess/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsho4960/rpms/kmess/devel Log Message: Directory /cvs/pkgs/rpms/kmess/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 15:53:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 15:53:02 +0000 Subject: [pkgdb] kmess (Fedora, 11) updated by tibbs Message-ID: <20090729155302.80BC810F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for kmess tibbs has set commit to Approved for 107427 on kmess (Fedora 10) tibbs has set checkout to Approved for 107427 on kmess (Fedora 10) tibbs has set build to Approved for 107427 on kmess (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kmess From tibbs at fedoraproject.org Wed Jul 29 15:53:12 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:53:12 +0000 (UTC) Subject: rpms/kmess Makefile,NONE,1.1 Message-ID: <20090729155312.9903B11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kmess In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsho4960/rpms/kmess Added Files: Makefile Log Message: Setup of module kmess --- NEW FILE Makefile --- # Top level Makefile for module kmess all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 15:53:12 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 15:53:12 +0000 (UTC) Subject: rpms/kmess/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729155312.D5ACB11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/kmess/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsho4960/rpms/kmess/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module kmess --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: kmess # $Id: Makefile,v 1.1 2009/07/29 15:53:12 tibbs Exp $ NAME := kmess SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From rjones at fedoraproject.org Wed Jul 29 15:54:32 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 29 Jul 2009 15:54:32 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec, 1.52, 1.53 libguestfs-1.0.64-rhel-5-squashfs.patch, 1.1, NONE Message-ID: <20090729155432.4EC4611C00CE@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5443 Modified Files: libguestfs.spec Removed Files: libguestfs-1.0.64-rhel-5-squashfs.patch Log Message: Remove upstream patch. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- libguestfs.spec 29 Jul 2009 15:40:44 -0000 1.52 +++ libguestfs.spec 29 Jul 2009 15:54:32 -0000 1.53 @@ -5,15 +5,13 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.65 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Patch0: libguestfs-1.0.64-rhel-5-squashfs.patch - # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -308,8 +306,6 @@ Requires: jpackage-utils mkdir -p daemon/m4 -%patch0 -p1 - %build %if %{buildnonet} @@ -537,8 +533,9 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-1 +* Wed Jul 29 2009 Richard W.M. Jones - 1.0.65-2 - New upstream release 1.0.65. +- Remove RHEL 5 patch, now upstream. * Mon Jul 27 2009 Richard W.M. Jones - 1.0.64-3 - Fix broken runtime dep on virt-inspector (Dennis Gilmore). --- libguestfs-1.0.64-rhel-5-squashfs.patch DELETED --- From anttix at fedoraproject.org Wed Jul 29 15:30:37 2009 From: anttix at fedoraproject.org (Antti Andreimann) Date: Wed, 29 Jul 2009 15:30:37 +0000 (UTC) Subject: rpms/xml-security-c/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xml-security-c.spec, 1.1, 1.2 Message-ID: <20090729153037.287DB11C0424@cvs1.fedora.phx.redhat.com> Author: anttix Update of /cvs/pkgs/rpms/xml-security-c/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31452 Modified Files: .cvsignore sources xml-security-c.spec Log Message: Upgrade to xml-security-c 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jun 2009 19:30:46 -0000 1.2 +++ .cvsignore 29 Jul 2009 15:30:36 -0000 1.3 @@ -1 +1 @@ -xml-security-c-1.4.0.tar.gz +xml-security-c-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jun 2009 19:30:46 -0000 1.2 +++ sources 29 Jul 2009 15:30:36 -0000 1.3 @@ -1 +1 @@ -dd9accf6727eb008dbf1dd674d5d4dcc xml-security-c-1.4.0.tar.gz +2c47c4ec12e8d6abe967aa5e5e99000c xml-security-c-1.5.1.tar.gz Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/F-10/xml-security-c.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xml-security-c.spec 1 Jun 2009 19:30:46 -0000 1.1 +++ xml-security-c.spec 29 Jul 2009 15:30:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: xml-security-c -Version: 1.4.0 -Release: 2%{?dist} +Version: 1.5.1 +Release: 1%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -10,7 +10,7 @@ Source: http://santuario.apache. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xerces-c-devel xalan-c-devel openssl-devel -BuildRequires: pkgconfig +BuildRequires: pkgconfig %description The xml-security-c library is a C++ implementation of the XML Digital Signature @@ -23,11 +23,11 @@ XSLT transforms. Summary: Development files for xml-security-c Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: xerces-c-devel xalan-c-devel openssl-devel +Requires: xerces-c-devel xalan-c-devel openssl-devel # There are a number of headers that can use NSS if HAVE_NSS is set to 1 # Current build does not set it (configure does not even check for NSS) # so we do not include this dependency for now. -# Requires: nss-devel +# Requires: nss-devel %description devel This package provides development files for xml-security-c, a C++ library for @@ -81,6 +81,16 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Tue Jul 28 2009 Antti Andreimann 1.5.1-1 +- New upstream relase (#513078) +- Fixes CVE-2009-0217 (#511915) + +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 06 2009 Antti Andreimann - 1.5.0-1 +- New upstream release + * Tue Apr 28 2009 Antti Andreimann - 1.4.0-2 - Execute sed magic against configure instead of configure.ac to avoid calling autotools From pkgdb at fedoraproject.org Wed Jul 29 16:21:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:21:33 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested approveacls Message-ID: <20090729162133.C903610F856@bastion2.fedora.phx.redhat.com> bkearney has requested the approveacls acl on libvirt-java (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:21:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:21:34 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested approveacls Message-ID: <20090729162134.DDABB10F89B@bastion2.fedora.phx.redhat.com> bkearney has requested the approveacls acl on libvirt-java (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:21:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:21:35 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested approveacls Message-ID: <20090729162135.F3E0910F89F@bastion2.fedora.phx.redhat.com> bkearney has requested the approveacls acl on libvirt-java (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:21:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:21:38 +0000 Subject: [pkgdb] libvirt-java: bkearney has requested approveacls Message-ID: <20090729162138.ECCC210F8B1@bastion2.fedora.phx.redhat.com> bkearney has requested the approveacls acl on libvirt-java (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From anttix at fedoraproject.org Wed Jul 29 16:23:40 2009 From: anttix at fedoraproject.org (Antti Andreimann) Date: Wed, 29 Jul 2009 16:23:40 +0000 (UTC) Subject: rpms/xml-security-c/EL-5 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xml-security-c.spec, 1.1, 1.2 Message-ID: <20090729162340.BA21811C00CE@cvs1.fedora.phx.redhat.com> Author: anttix Update of /cvs/pkgs/rpms/xml-security-c/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14422 Modified Files: .cvsignore sources xml-security-c.spec Log Message: Upgrade to xml-security-c 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jun 2009 19:36:41 -0000 1.2 +++ .cvsignore 29 Jul 2009 16:23:40 -0000 1.3 @@ -1 +1 @@ -xml-security-c-1.4.0.tar.gz +xml-security-c-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jun 2009 19:36:41 -0000 1.2 +++ sources 29 Jul 2009 16:23:40 -0000 1.3 @@ -1 +1 @@ -dd9accf6727eb008dbf1dd674d5d4dcc xml-security-c-1.4.0.tar.gz +2c47c4ec12e8d6abe967aa5e5e99000c xml-security-c-1.5.1.tar.gz Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/EL-5/xml-security-c.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xml-security-c.spec 1 Jun 2009 19:36:41 -0000 1.1 +++ xml-security-c.spec 29 Jul 2009 16:23:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: xml-security-c -Version: 1.4.0 -Release: 2%{?dist} +Version: 1.5.1 +Release: 1%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -10,7 +10,7 @@ Source: http://santuario.apache. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xerces-c-devel xalan-c-devel openssl-devel -BuildRequires: pkgconfig +BuildRequires: pkgconfig %description The xml-security-c library is a C++ implementation of the XML Digital Signature @@ -23,11 +23,11 @@ XSLT transforms. Summary: Development files for xml-security-c Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: xerces-c-devel xalan-c-devel openssl-devel +Requires: xerces-c-devel xalan-c-devel openssl-devel # There are a number of headers that can use NSS if HAVE_NSS is set to 1 # Current build does not set it (configure does not even check for NSS) # so we do not include this dependency for now. -# Requires: nss-devel +# Requires: nss-devel %description devel This package provides development files for xml-security-c, a C++ library for @@ -81,6 +81,16 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Tue Jul 28 2009 Antti Andreimann 1.5.1-1 +- New upstream relase (#513078) +- Fixes CVE-2009-0217 (#511915) + +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 06 2009 Antti Andreimann - 1.5.0-1 +- New upstream release + * Tue Apr 28 2009 Antti Andreimann - 1.4.0-2 - Execute sed magic against configure instead of configure.ac to avoid calling autotools From pkgdb at fedoraproject.org Wed Jul 29 16:28:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:28:05 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090729162806.07C2D10F88F@bastion2.fedora.phx.redhat.com> veillard has set the approveacls acl on libvirt-java (Fedora devel) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:28:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:28:11 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090729162811.3392F10F89E@bastion2.fedora.phx.redhat.com> veillard has set the approveacls acl on libvirt-java (Fedora 9) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:28:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:28:12 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090729162812.DEF0810F8B0@bastion2.fedora.phx.redhat.com> veillard has set the approveacls acl on libvirt-java (Fedora 10) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From pkgdb at fedoraproject.org Wed Jul 29 16:28:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 16:28:15 +0000 Subject: [pkgdb] libvirt-java had acl change status Message-ID: <20090729162815.F1B8510F8B5@bastion2.fedora.phx.redhat.com> veillard has set the approveacls acl on libvirt-java (Fedora 11) to Approved for bkearney To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt-java From bkearney at fedoraproject.org Wed Jul 29 16:28:24 2009 From: bkearney at fedoraproject.org (Bryan Kearney) Date: Wed, 29 Jul 2009 16:28:24 +0000 (UTC) Subject: rpms/libvirt-java/devel import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 libvirt-java.spec, 1.5, 1.6 sources, 1.3, 1.4 libvirt-0.2.1-gcj-javadoc.patch, 1.2, NONE Message-ID: <20090729162824.4EDB911C00CE@cvs1.fedora.phx.redhat.com> Author: bkearney Update of /cvs/pkgs/rpms/libvirt-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16260/devel Modified Files: .cvsignore libvirt-java.spec sources Added Files: import.log Removed Files: libvirt-0.2.1-gcj-javadoc.patch Log Message: Add verision 0.3.0 which moves to JNA. --- NEW FILE import.log --- libvirt-java-0_3_0-1_fc10:HEAD:libvirt-java-0.3.0-1.fc10.src.rpm:1248884790 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Aug 2008 13:06:32 -0000 1.3 +++ .cvsignore 29 Jul 2009 16:28:23 -0000 1.4 @@ -1,2 +1 @@ -libvirt-java-0.2.0.tar.gz -libvirt-java-0.2.1.tar.gz +libvirt-java-0.3.0.tar.gz Index: libvirt-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/devel/libvirt-java.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libvirt-java.spec 25 Jul 2009 08:52:04 -0000 1.5 +++ libvirt-java.spec 29 Jul 2009 16:28:24 -0000 1.6 @@ -1,21 +1,23 @@ Summary: Java bindings for the libvirt virtualization API Name: libvirt-java -Version: 0.2.1 -Release: 3%{?dist} +Version: 0.3.0 +Prefix: libvirt +Release: 1%{?dist} License: LGPLv2+ +BuildArch: noarch Group: Development/Libraries -Source: http://libvirt.org/sources/java/libvirt-java-%{version}.tar.gz +Source: http://libvirt.org/sources/java/%{name}-%{version}.tar.gz URL: http://libvirt.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Requires: jna Requires: libvirt >= 0.4.1 -Requires: java >= 1.5.0 +Requires: java >= 1:1.6.0 Requires: jpackage-utils -BuildRequires: libvirt-devel >= 0.4.1 -BuildRequires: java-devel >= 1.5.0 -BuildRequires: pkgconfig +BuildRequires: ant +BuildRequires: jna +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils -Patch0: libvirt-0.2.1-gcj-javadoc.patch # # the jpackage-utils should provide a %{java_home} macro @@ -28,18 +30,17 @@ Libvirt-java is a base framework allowin API though the Java programming language. It requires libvirt >= 0.4.1 -%package devel -Summary: Compressed Java source files for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: libvirt-devel >= 0.4.1 -Requires: pkgconfig +%package devel +Summary: Compressed Java source files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} -%description devel +%description devel Libvirt-java is a base framework allowing to use libvirt, the virtualization API though the Java programming language. This is the development part needed to build applications with Libvirt-java. + %package javadoc Summary: Java documentation for %{name} Group: Development/Documentation @@ -50,27 +51,19 @@ Requires: jpackage-utils API documentation for %{name}. %prep %setup -q -%patch0 -p0 %build -%configure --with-java-home=%{java_home} -# javac call is not parallelizable, as a result the same command is -# run N times in parallel if %{?_smp_mflags} is set up -make - -# fix up the modification date of generated documentation -find doc -type f -newer ChangeLog | xargs touch -r ChangeLog +ant build docs %install rm -fr %{buildroot} +install -d -m0755 %{buildroot}%{_javadir} +install -d -m0755 %{buildroot}%{_javadocdir}/%{name}-%{version} +cp target/%{prefix}-%{version}.jar %{buildroot}%{_javadir} +%{__ln_s} %{_javadir}/%{prefix}-%{version}.jar %{buildroot}%{_javadir}/%{prefix}.jar +cp -r target/javadoc %{buildroot}%{_javadocdir}/%{name}-%{version} -make %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install - -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la -rm -f $RPM_BUILD_ROOT%{_libdir}/*.a -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig %clean rm -rf %{buildroot} @@ -78,32 +71,22 @@ rm -rf %{buildroot} %files %defattr(-,root,root) %doc AUTHORS COPYING NEWS README INSTALL -%{_libdir}/libvirt_jni*.so.* -%{_datadir}/java/*.jar +%{_javadir}/*.jar %files devel %defattr(-,root,root) -%doc src/*.java -%{_libdir}/libvirt_jni*.so -%{_libdir}/pkgconfig/*.pc +%doc src/test/java/test.java + %files javadoc %defattr(-,root,root) -/usr/share/javadoc/%{name}-%{version} +%{_javadocdir}/%{name}-%{version} %changelog -* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Fri Aug 8 2008 Daniel Veillard - 0.2.1-1.fc10 -- new release 0.2.1 -- avoid leaks -- adds support for storage APIs - -* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1.fc10 +* Wed Jul 29 2009 Bryan Kearney - 0.3.0-1 +- refactored the code to use jna (https://jna.dev.java.net/) + +* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1 - new release 0.2.0 - finished cleanup of APIs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Aug 2008 13:06:32 -0000 1.3 +++ sources 29 Jul 2009 16:28:24 -0000 1.4 @@ -1 +1 @@ -be9924d794ba428552e8715edb3a4b0f libvirt-java-0.2.1.tar.gz +99c18173026f84de4b62345c26e1af7c libvirt-java-0.3.0.tar.gz --- libvirt-0.2.1-gcj-javadoc.patch DELETED --- From pwouters at fedoraproject.org Wed Jul 29 16:31:38 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Wed, 29 Jul 2009 16:31:38 +0000 (UTC) Subject: rpms/nsd/devel nsd.cron,1.6,1.7 Message-ID: <20090729163138.E3BD211C00CE@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/nsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17725 Modified Files: nsd.cron Log Message: fix harmless comment typo Index: nsd.cron =================================================================== RCS file: /cvs/extras/rpms/nsd/devel/nsd.cron,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nsd.cron 4 Jun 2009 18:19:34 -0000 1.6 +++ nsd.cron 29 Jul 2009 16:31:38 -0000 1.7 @@ -2,8 +2,7 @@ # Paul Wouters # This folds back zone updates, dynamic updates, etc that nsd records -# in the ixfr.db and nsd.db files back into the zone files or visa -# versa +# in the ixfr.db and nsd.db files back into the zone files or vice-versa # Ideally check if ixfr.db newer then any zones, only then do /usr/sbin/nsdc patch > /dev/null 2>&1 From hguemar at fedoraproject.org Wed Jul 29 16:31:50 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 16:31:50 +0000 (UTC) Subject: rpms/pessulus/F-10 .cvsignore, 1.9, 1.10 pessulus.spec, 1.17, 1.18 sources, 1.9, 1.10 pessulus-2.23.1-use-pythondir.patch, 1.1, NONE Message-ID: <20090729163150.C258C11C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/pessulus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17846 Modified Files: .cvsignore pessulus.spec sources Removed Files: pessulus-2.23.1-use-pythondir.patch Log Message: updated to 2.24.0 and removed unneeded patch Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-10/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 28 Aug 2008 17:10:52 -0000 1.9 +++ .cvsignore 29 Jul 2009 16:31:50 -0000 1.10 @@ -1 +1 @@ -pessulus-2.23.1.tar.bz2 +pessulus-2.24.0.tar.bz2 Index: pessulus.spec =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-10/pessulus.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pessulus.spec 28 Aug 2008 17:34:57 -0000 1.17 +++ pessulus.spec 29 Jul 2009 16:31:50 -0000 1.18 @@ -1,18 +1,15 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define basever 2.23 +%define basever 2.24 Name: pessulus -Version: %{basever}.1 -Release: 2%{?dist} +Version: %{basever}.0 +Release: 1%{?dist} Summary: A lockdown editor for GNOME Group: Applications/System License: GPLv2+ URL: http://live.gnome.org/Pessulus Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/%{basever}/%{name}-%{version}.tar.bz2 -# Filed upstream: -# http://bugzilla.gnome.org/show_bug.cgi?id=549728 -Patch0: pessulus-2.23.1-use-pythondir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -29,7 +26,6 @@ everyone, e.g. in an internet cafe. %prep %setup -q -%patch0 -p1 -b .use-pythondir %build @@ -73,6 +69,10 @@ fi %{_datadir}/icons/hicolor/*/apps/pessulus.* %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar - 2.24.0-1 +- Updated to 2.24.0 +- Remove now unneed pythondir patch (GNOME #549728 fixed upstream) + * Thu Aug 28 2008 Tom "spot" Callaway - 2.23.1-2 - fix missing BR, Requires Index: sources =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Aug 2008 17:10:52 -0000 1.9 +++ sources 29 Jul 2009 16:31:50 -0000 1.10 @@ -1 +1 @@ -f92bd054660e8bd3e99ef9788ae2678d pessulus-2.23.1.tar.bz2 +5cbdb0f6e97444a2ddb93f40ad10df90 pessulus-2.24.0.tar.bz2 --- pessulus-2.23.1-use-pythondir.patch DELETED --- From stevetraylen at fedoraproject.org Wed Jul 29 16:35:25 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Wed, 29 Jul 2009 16:35:25 +0000 (UTC) Subject: rpms/ndoutils/devel README.Fedora, NONE, 1.1 import.log, NONE, 1.1 ndo-shared-so.patch, NONE, 1.1 ndo2db.cfg, NONE, 1.1 ndo2db.initd, NONE, 1.1 ndomod.cfg, NONE, 1.1 ndoutils.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729163525.8896311C00CE@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/ndoutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19837/devel Modified Files: .cvsignore sources Added Files: README.Fedora import.log ndo-shared-so.patch ndo2db.cfg ndo2db.initd ndomod.cfg ndoutils.spec Log Message: First Version. --- NEW FILE README.Fedora --- Having installed ndoutils you must install ndoutils-mysql. Currently this is only database supported by ndoutils more alternatives will be added later as ndoutils supports them. The alternatives mechanism is used to choose the version of ndo2db that you want. # alternatives --display ndo2db ndo2db - status is auto. link currently points to /usr/sbin/ndo2db.mysql /usr/sbin/ndo2db.mysql - priority 40 Current `best' version is /usr/sbin/ndo2db.mysql. To configure ndoutils for use with Nagios and mysql please follow the following when running with Fedora. 1) Start a shell to MySQL and create and grant access to a database. mysql> create database nagios mysql> GRANT ALL ON nagios.* TO ndouser at localhost IDENTIFIED BY "ndopassword"; mysql> quit 2) Load the schema $ cd /usr/share/doc/ndoutils-mysql-*/db $ perl ./installdb -u ndouser -p ndopassword -h localhost -d nagios 3) To your /etc/nagios/nagios.cfg file make the following configuration. broker_module=/usr/lib/nagios/brokers/ndomod.so config_file=/etc/nagios/ndomod.cfg (lib64 for 64bit of course.) 4) Start ndo2db /sbin/service ndo2db start /sbin/chkconfig ndo2db on 4) Restart Nagios /sbin/service nagios restart --- NEW FILE import.log --- ndoutils-1_4-0_6_b8_fc11:HEAD:ndoutils-1.4-0.6.b8.fc11.src.rpm:1248885241 ndo-shared-so.patch: Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE ndo-shared-so.patch --- diff -uNr ndoutils-1.4b7.ORIG/src/Makefile.in ndoutils-1.4b7/src/Makefile.in --- ndoutils-1.4b7.ORIG/src/Makefile.in 2007-10-03 03:02:58.000000000 +0200 +++ ndoutils-1.4b7/src/Makefile.in 2009-07-20 22:24:31.370396774 +0200 @@ -63,10 +63,10 @@ $(MAKE) ndomod-3x.o ndomod-2x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) ndomod-3x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) sockdebug: sockdebug.c $(COMMON_INC) $(COMMON_OBJS) $(CC) $(CFLAGS) -o $@ sockdebug.c $(COMMON_OBJS) $(LDFLAGS) $(LIBS) $(MATHLIBS) $(SOCKETLIBS) $(OTHERLIBS) --- NEW FILE ndo2db.cfg --- ##################################################################### # NDO2DB DAEMON CONFIG FILE # # Last Modified: 10-29-2007 ##################################################################### # USER/GROUP PRIVILIGES # These options determine the user/group that the daemon should run as. # You can specify a number (uid/gid) or a name for either option. ndo2db_user=nagios ndo2db_group=nagios # SOCKET TYPE # This option determines what type of socket the daemon will create # an accept connections from. # Value: # unix = Unix domain socket (default) # tcp = TCP socket socket_type=unix #socket_type=tcp # SOCKET NAME # This option determines the name and path of the UNIX domain # socket that the daemon will create and accept connections from. # This option is only valid if the socket type specified above # is "unix". socket_name=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the daemon will listen for # connections on. This option is only vlaid if the socket type # specified above is "tcp". tcp_port=5668 # DATABASE SERVER TYPE # This option determines what type of DB server the daemon should # connect to. # Values: # mysql = MySQL # pgsql = PostgreSQL db_servertype=mysql # DATABASE HOST # This option specifies what host the DB server is running on. db_host=localhost # DATABASE PORT # This option specifies the port that the DB server is running on. # Values: # 3306 = Default MySQL port # 5432 = Default PostgreSQL port db_port=3306 # DATABASE NAME # This option specifies the name of the database that should be used. db_name=nagios # DATABASE TABLE PREFIX # Determines the prefix (if any) that should be prepended to table names. # If you modify the table prefix, you'll need to modify the SQL script for # creating the database! db_prefix=nagios_ # DATABASE USERNAME/PASSWORD # This is the username/password that will be used to authenticate to the DB. # The user needs at least SELECT, INSERT, UPDATE, and DELETE privileges on # the database. db_user=ndouser db_pass=ndopassword ## TABLE TRIMMING OPTIONS # Several database tables containing Nagios event data can become quite large # over time. Most admins will want to trim these tables and keep only a # certain amount of data in them. The options below are used to specify the # age (in MINUTES) that data should be allowd to remain in various tables # before it is deleted. Using a value of zero (0) for any value means that # that particular table should NOT be automatically trimmed. # Keep timed events for 24 hours max_timedevents_age=1440 # Keep system commands for 1 week max_systemcommands_age=10080 # Keep service checks for 1 week max_servicechecks_age=10080 # Keep host checks for 1 week max_hostchecks_age=10080 # Keep event handlers for 31 days max_eventhandlers_age=44640 # DEBUG LEVEL # This option determines how much (if any) debugging information will # be written to the debug file. OR values together to log multiple # types of information. # Values: -1 = Everything # 0 = Nothing # 1 = Process info # 2 = SQL queries debug_level=1 # DEBUG VERBOSITY # This option determines how verbose the debug log out will be. # Values: 0 = Brief output # 1 = More detailed # 2 = Very detailed debug_verbosity=1 # DEBUG FILE # This option determines where the daemon should write debugging information. debug_file=/var/log/ndoutils/ndo2db.debug # MAX DEBUG FILE SIZE # This option determines the maximum size (in bytes) of the debug file. If # the file grows larger than this size, it will be renamed with a .old # extension. If a file already exists with a .old extension it will # automatically be deleted. This helps ensure your disk space usage doesn't # get out of control when debugging. max_debug_file_size=1000000 --- NEW FILE ndo2db.initd --- #!/bin/bash # # ndo2db: Starts the ndoutils ndo2db utility. # # chkconfig: - 30 74 # description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. # processname: /usr/sbin/ndo2db # config: /etc/nagios/ndo2db.cfg # config: /etc/sysconfig/ndo2db # ### BEGIN INIT INFO # Provides: ndo2db # Required-Start: $syslog # Required-Stop: # Default-Stop: 0 1 6 # Short-Description: Starts the ndo2db Daemon # Description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. ### END INIT INFO # Sanity checks. [ -f /etc/nagios/ndo2db.cfg ] || exit 0 [ -x /usr/sbin/ndo2db ] || exit 0 # Source function library. . /etc/rc.d/init.d/functions NDO2DBUSER=nagios NDO2DB_OPTIONS="-c /etc/nagios/ndo2db.cfg" # Source an auxiliary options file if we have one, and pick up NDO2DB_OPTIONS. [ -r /etc/sysconfig/ndo2db ] && . /etc/sysconfig/ndo2db RETVAL=0 prog=ndo2db start () { echo -n $"Starting $prog: " if [ "$(pidofproc ndo2db)" = "" ]; then rm -f /var/run/ndoutils/ndoutils.sock daemon --user=$NDO2DBUSER /usr/sbin/ndo2db $NDO2DB_OPTIONS RETVAL=$? else success RETVAL=$? fi echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ndo2db return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc ndo2db RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ndo2db return $RETVAL } restart() { stop start } # See how we were called. case "$1" in start) start RETVAL=$? ;; stop) stop RETVAL=$? ;; status) status ndo2db RETVAL=$? ;; restart) restart RETVAL=$? ;; reload) status ndo2db && restart || start RETVAL=$? ;; condrestart) [ -e /var/lock/subsys/ndo2db ] && restart RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart}" RETVAL=1 ;; esac exit $RETVAL --- NEW FILE ndomod.cfg --- ##################################################################### # NDOMOD CONFIG FILE # # Last Modified: 09-05-2007 ##################################################################### # INSTANCE NAME # This option identifies the "name" associated with this particular # instance of Nagios and is used to seperate data coming from multiple # instances. Defaults to 'default' (without quotes). instance_name=default # OUTPUT TYPE # This option determines what type of output sink the NDO NEB module # should use for data output. Valid options include: # file = standard text file # tcpsocket = TCP socket # unixsocket = UNIX domain socket (default) #output_type=file #output_type=tcpsocket output_type=unixsocket # OUTPUT # This option determines the name and path of the file or UNIX domain # socket to which output will be sent if the output type option specified # above is "file" or "unixsocket", respectively. If the output type # option is "tcpsocket", this option is used to specify the IP address # of fully qualified domain name of the host that the module should # connect to for sending output. #output=/usr/local/nagios/var/ndo.dat #output=127.0.0.1 output=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the module will connect to in # order to send output. This option is only vlaid if the output type # option specified above is "tcpsocket". tcp_port=5668 # OUTPUT BUFFER # This option determines the size of the output buffer, which will help # prevent data from getting lost if there is a temporary disconnect from # the data sink. The number of items specified here is the number of # lines (each of variable size) of output that will be buffered. output_buffer_items=5000 # BUFFER FILE # This option is used to specify a file which will be used to store the # contents of buffered data which could not be sent to the NDO2DB daemon # before Nagios shuts down. Prior to shutting down, the NDO NEB module # will write all buffered data to this file for later processing. When # Nagios (re)starts, the NDO NEB module will read the contents of this # file and send it to the NDO2DB daemon for processing. buffer_file=/var/cache/ndoutils/ndomod.buffer # FILE ROTATION INTERVAL # This option determines how often (in seconds) the output file is # rotated by Nagios. File rotation is handled by Nagios by executing # the command defined by the file_rotation_command option. This # option has no effect if the output_type option is a socket. file_rotation_interval=14400 # FILE ROTATION COMMAND # This option specified the command (as defined in Nagios) that is # used to rotate the output file at the interval specified by the # file_rotation_interval option. This option has no effect if the # output_type option is a socket. # # See the file 'misccommands.cfg' for an example command definition # that you can use to rotate the log file. #file_rotation_command=rotate_ndo_log # FILE ROTATION TIMEOUT # This option specified the maximum number of seconds that the file # rotation command should be allowed to run before being prematurely # terminated. file_rotation_timeout=60 # RECONNECT INTERVAL # This option determines how often (in seconds) that the NDO NEB # module will attempt to re-connect to the output file or socket if # a connection to it is lost. reconnect_interval=15 # RECONNECT WARNING INTERVAL # This option determines how often (in seconds) a warning message will # be logged to the Nagios log file if a connection to the output file # or socket cannot be re-established. reconnect_warning_interval=15 #reconnect_warning_interval=900 # DATA PROCESSING OPTION # This option determines what data the NDO NEB module will process. # Do not mess with this option unless you know what you're doing!!!! # Read the source code (include/ndbxtmod.h) to determine what values # to use here. Values from source code should be OR'ed to get the # value to use here. A value of -1 will cause all data to be processed. # Read the source code (include/ndomod.h) and look for "NDOMOD_PROCESS_" # to determine what values to use here. Values from source code should # be OR'ed to get the value to use here. A value of -1 will cause all # data to be processed. data_processing_options=-1 # CONFIG OUTPUT OPTION # This option determines what types of configuration data the NDO # NEB module will dump from Nagios. Values can be OR'ed together. # Values: # 0 = Don't dump any configuration information # 1 = Dump only original config (from config files) # 2 = Dump config only after retained information has been restored # 3 = Dump both original and retained configuration config_output_options=2 --- NEW FILE ndoutils.spec --- %global betaversion b8 %{?betaversion: %global dotbetaversion .%{betaversion}} Name: ndoutils Version: 1.4 Release: 0.6%{?dotbetaversion}%{?dist} Summary: Stores all configuration and event data from Nagios in a database Group: Applications/System License: GPLv2 URL: http://www.nagios.org/download/addons/ Source0: http://downloads.sourceforge.net/nagios/ndoutils-%{version}%{?betaversion}.tar.gz Source1: README.Fedora Source2: ndo2db.cfg Source3: ndomod.cfg Source4: ndo2db.initd Patch0: ndo-shared-so.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mysql-devel # On RHEL4 and 5 we build for nagios 2 rather than a default 3 or more. %if 0%{?el4}%{?el5} Requires: nagios < 3 %else Requires: nagios >= 3 %endif Requires(post): chkconfig Requires(preun): chkconfig, initscripts %package mysql Summary: Contains the ndoutils ndo2db for mysql Group: Applications/System Requires:ndoutils = %{version}-%{release} %description mysql Contains an ndo2db for writing ndoutils data from nagios to MySQL. %description The NDOUTILS addon is designed to store all configuration and event data from Nagios in a database. Storing information from Nagios in a database will allow for quicker retrieval and processing of that data and will help serve as a foundation for the development of a new PHP-based web interface in Nagios 3.0. %prep %setup -q -n %{name}-%{version}%{?betaversion} %patch0 -p1 # Remove executable bits from the example scripts in # the documentation. %{__chmod} 644 db/installdb db/prepsql db/upgradedb %build %configure %{__make} %{?_smp_mflags} %if 0%{?el4}%{?el5} %{__cp} src/ndo2db-2x src/ndo2db.mysql %else %{__cp} src/ndo2db-3x src/ndo2db.mysql %endif %install # Upstream does not provide an install target. # http://tracker.nagios.org/view.php?id=21 rm -rf $RPM_BUILD_ROOT %{__install} -m 644 %{SOURCE1} README.Fedora %{__install} -m 755 -D src/ndo2db.mysql $RPM_BUILD_ROOT/%{_sbindir}/ndo2db.mysql %if 0%{?el4}%{?el5} %{__install} -m 755 -D src/ndomod-2x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %else %{__install} -m 755 -D src/ndomod-3x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %endif %{__install} -m 644 -D %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndo2db.cfg %{__install} -m 644 -D %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndomod.cfg %{__install} -m 755 -D %{SOURCE4} $RPM_BUILD_ROOT/%{_initrddir}/ndo2db %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/log/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/run/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/cache/ndoutils %clean %{__rm} -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/nagios/brokers/ndomod.so %{_initrddir}/ndo2db %config(noreplace) %{_sysconfdir}/nagios/ndo2db.cfg %config(noreplace) %{_sysconfdir}/nagios/ndomod.cfg %dir %attr(-,nagios,root) /var/run/ndoutils %dir %attr(-,nagios,root) /var/log/ndoutils %dir %attr(-,nagios,root) /var/cache/ndoutils %doc README.Fedora docs README REQUIREMENTS TODO UPGRADING %files mysql %defattr(-,root,root,-) %{_sbindir}/ndo2db.mysql %doc db %preun if [ $1 = 0 ]; then /sbin/service ndo2db stop > /dev/null 2>&1 || : /sbin/chkconfig --del ndo2db || : fi %preun mysql if [ $1 = 0 ]; then /usr/sbin/alternatives --remove ndo2db /usr/sbin/ndo2db.mysql fi %post /sbin/chkconfig --add ndo2db || : %post mysql /usr/sbin/alternatives --install /usr/sbin/ndo2db ndo2db /usr/sbin/ndo2db.mysql 40 %changelog * Tue Jul 21 2009 Steve Traylen - 1.4-0.6.b8 - A requires nagios = 2 will not work. * Tue Jul 21 2009 Steve Traylen - 1.4-0.5.b8 - Updated to nodutils 1.4b8. - mysql lib path no longer needs to be set explicitly. - Use dist tags to install for nagios2 on el4 and el5. * Mon Jul 20 2009 Steve Traylen - 1.4-0.4.b7 - Patch ndomod.o to be ndomod.so since it is a shared object. - Move ndomod.so from /usr/lib to /usr/lib/nagios/brokers - Change URL to better one. - Change SourceURL to fedora package guideline for sourceforge. - Completly removed postgres support. The documents clearly state it is not supported. * Sun Jun 14 2009 Steve Traylen - 1.4-0.3.b7 - Move ndo2db.cfg and ndomod.cfg to /etc/nagios as per install guide. - Remove executable bits from documentation examples. * Thu Jun 11 2009 Steve Traylen - 1.4-0.2.b7 - Split package to create postgres and mysql binary in different sub packages. * Wed Jun 10 2009 Steve Traylen - 1.4-0.1.b7 - Add full URL location to Source0: - Use special Version/Release tag since a beta. i.e 1.4-0.1.b7 * Sat Apr 25 2009 Steve Traylen - First Build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ndoutils/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 14:18:41 -0000 1.1 +++ .cvsignore 29 Jul 2009 16:35:25 -0000 1.2 @@ -0,0 +1 @@ +ndoutils-1.4b8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ndoutils/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:18:41 -0000 1.1 +++ sources 29 Jul 2009 16:35:25 -0000 1.2 @@ -0,0 +1 @@ +767dbfabd94506bc68c59033d7abdaa4 ndoutils-1.4b8.tar.gz From cebbert at fedoraproject.org Wed Jul 29 16:35:48 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 16:35:48 +0000 (UTC) Subject: rpms/kernel/F-10 linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch, NONE, 1.1.2.1 kernel.spec, 1.1206.2.73, 1.1206.2.74 Message-ID: <20090729163548.70F1711C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20255 Modified Files: Tag: private-fedora-10-2_6_27 kernel.spec Added Files: Tag: private-fedora-10-2_6_27 linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch Log Message: Don't bounce virtio_blk requests (#510304) linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch: virtio_blk.c | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch --- From: Christoph Hellwig Date: Sat, 18 Jul 2009 03:47:45 +0000 (-0600) Subject: virtio_blk: don't bounce highmem requests X-Git-Tag: v2.6.31-rc4~33^2~3 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 virtio_blk: don't bounce highmem requests By default a block driver bounces highmem requests, but virtio-blk is perfectly fine with any request that fit into it's 64 bit addressing scheme, mapped in the kernel virtual space or not. Besides improving performance on highmem systems this also makes the reproducible oops in __bounce_end_io go away (but hiding the real cause). Signed-off-by: Christoph Hellwig Signed-off-by: Rusty Russell --- diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 43db3ea..4c47859 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -360,6 +360,9 @@ static int __devinit virtblk_probe(struct virtio_device *vdev) if (!err) blk_queue_max_hw_segments(vblk->disk->queue, v); + /* No need to bounce any requests */ + blk_queue_bounce_limit(vblk->disk->queue, BLK_BOUNCE_ANY); + /* Host can optionally specify the block size of the device */ err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE, offsetof(struct virtio_blk_config, blk_size), Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.73 retrieving revision 1.1206.2.74 diff -u -p -r1.1206.2.73 -r1.1206.2.74 --- kernel.spec 27 Jul 2009 21:32:16 -0000 1.1206.2.73 +++ kernel.spec 29 Jul 2009 16:35:47 -0000 1.1206.2.74 @@ -778,6 +778,8 @@ Patch4010: kvm-make-efer-reads-safe-when Patch11000: linux-2.6-parport-quickfix-the-proc-registration-bug.patch Patch11010: linux-2.6-dev-zero-avoid-oom-lockup.patch +Patch12000: linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch + %endif BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root @@ -1409,6 +1411,10 @@ ApplyPatch kvm-make-efer-reads-safe-when ApplyPatch linux-2.6-parport-quickfix-the-proc-registration-bug.patch ApplyPatch linux-2.6-dev-zero-avoid-oom-lockup.patch + +# fix oops with virtio block driver requests (#510304) +ApplyPatch linux-2.6-virtio-blk-dont-bounce-highmem-requests.patch + # END OF PATCH APPLICATIONS %endif @@ -1984,6 +1990,9 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.74 +- Don't bounce virtio_blk requests (#510304) + * Mon Jul 27 2009 Chuck Ebbert 2.6.27.28-170.2.73 - Linux 2.6.27.28 Dropped patches, merged in stable: From s4504kr at fedoraproject.org Wed Jul 29 16:37:15 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 29 Jul 2009 16:37:15 +0000 (UTC) Subject: rpms/kaya/devel kaya.spec,1.9,1.10 Message-ID: <20090729163715.475E911C00CE@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20842 Modified Files: kaya.spec Log Message: Fix wrong BR Index: kaya.spec =================================================================== RCS file: /cvs/extras/rpms/kaya/devel/kaya.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kaya.spec 25 Jul 2009 04:19:00 -0000 1.9 +++ kaya.spec 29 Jul 2009 16:37:15 -0000 1.10 @@ -4,7 +4,7 @@ Name: kaya Version: 0.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Statically typed, imperative programming-language Group: Development/Languages @@ -22,7 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: autoconf BuildRequires: ghc >= 6.10.3, gc-devel, happy, zlib-devel, gnutls-devel -BuildRequires: libgcrypt-devel, pcre-devel ghc-editline +BuildRequires: libgcrypt-devel, pcre-devel ghc-editline-devel BuildRequires: postgresql-devel, mysql-devel, sqlite-devel BuildRequires: gd-devel, SDL-devel, mesa-libGL-devel BuildRequires: ncurses-devel, freeglut-devel @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Wed Jul 29 2009 Jochen Schmitt 0.5.2-4 +- Fix wrong BR. + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From stevetraylen at fedoraproject.org Wed Jul 29 16:41:30 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Wed, 29 Jul 2009 16:41:30 +0000 (UTC) Subject: rpms/ndoutils/EL-5 README.Fedora, NONE, 1.1 ndo-shared-so.patch, NONE, 1.1 ndo2db.cfg, NONE, 1.1 ndo2db.initd, NONE, 1.1 ndomod.cfg, NONE, 1.1 ndoutils.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729164130.2B61411C00CE@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/ndoutils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22462a Modified Files: sources Added Files: README.Fedora ndo-shared-so.patch ndo2db.cfg ndo2db.initd ndomod.cfg ndoutils.spec Log Message: First version. --- NEW FILE README.Fedora --- Having installed ndoutils you must install ndoutils-mysql. Currently this is only database supported by ndoutils more alternatives will be added later as ndoutils supports them. The alternatives mechanism is used to choose the version of ndo2db that you want. # alternatives --display ndo2db ndo2db - status is auto. link currently points to /usr/sbin/ndo2db.mysql /usr/sbin/ndo2db.mysql - priority 40 Current `best' version is /usr/sbin/ndo2db.mysql. To configure ndoutils for use with Nagios and mysql please follow the following when running with Fedora. 1) Start a shell to MySQL and create and grant access to a database. mysql> create database nagios mysql> GRANT ALL ON nagios.* TO ndouser at localhost IDENTIFIED BY "ndopassword"; mysql> quit 2) Load the schema $ cd /usr/share/doc/ndoutils-mysql-*/db $ perl ./installdb -u ndouser -p ndopassword -h localhost -d nagios 3) To your /etc/nagios/nagios.cfg file make the following configuration. broker_module=/usr/lib/nagios/brokers/ndomod.so config_file=/etc/nagios/ndomod.cfg (lib64 for 64bit of course.) 4) Start ndo2db /sbin/service ndo2db start /sbin/chkconfig ndo2db on 4) Restart Nagios /sbin/service nagios restart ndo-shared-so.patch: Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE ndo-shared-so.patch --- diff -uNr ndoutils-1.4b7.ORIG/src/Makefile.in ndoutils-1.4b7/src/Makefile.in --- ndoutils-1.4b7.ORIG/src/Makefile.in 2007-10-03 03:02:58.000000000 +0200 +++ ndoutils-1.4b7/src/Makefile.in 2009-07-20 22:24:31.370396774 +0200 @@ -63,10 +63,10 @@ $(MAKE) ndomod-3x.o ndomod-2x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) ndomod-3x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) sockdebug: sockdebug.c $(COMMON_INC) $(COMMON_OBJS) $(CC) $(CFLAGS) -o $@ sockdebug.c $(COMMON_OBJS) $(LDFLAGS) $(LIBS) $(MATHLIBS) $(SOCKETLIBS) $(OTHERLIBS) --- NEW FILE ndo2db.cfg --- ##################################################################### # NDO2DB DAEMON CONFIG FILE # # Last Modified: 10-29-2007 ##################################################################### # USER/GROUP PRIVILIGES # These options determine the user/group that the daemon should run as. # You can specify a number (uid/gid) or a name for either option. ndo2db_user=nagios ndo2db_group=nagios # SOCKET TYPE # This option determines what type of socket the daemon will create # an accept connections from. # Value: # unix = Unix domain socket (default) # tcp = TCP socket socket_type=unix #socket_type=tcp # SOCKET NAME # This option determines the name and path of the UNIX domain # socket that the daemon will create and accept connections from. # This option is only valid if the socket type specified above # is "unix". socket_name=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the daemon will listen for # connections on. This option is only vlaid if the socket type # specified above is "tcp". tcp_port=5668 # DATABASE SERVER TYPE # This option determines what type of DB server the daemon should # connect to. # Values: # mysql = MySQL # pgsql = PostgreSQL db_servertype=mysql # DATABASE HOST # This option specifies what host the DB server is running on. db_host=localhost # DATABASE PORT # This option specifies the port that the DB server is running on. # Values: # 3306 = Default MySQL port # 5432 = Default PostgreSQL port db_port=3306 # DATABASE NAME # This option specifies the name of the database that should be used. db_name=nagios # DATABASE TABLE PREFIX # Determines the prefix (if any) that should be prepended to table names. # If you modify the table prefix, you'll need to modify the SQL script for # creating the database! db_prefix=nagios_ # DATABASE USERNAME/PASSWORD # This is the username/password that will be used to authenticate to the DB. # The user needs at least SELECT, INSERT, UPDATE, and DELETE privileges on # the database. db_user=ndouser db_pass=ndopassword ## TABLE TRIMMING OPTIONS # Several database tables containing Nagios event data can become quite large # over time. Most admins will want to trim these tables and keep only a # certain amount of data in them. The options below are used to specify the # age (in MINUTES) that data should be allowd to remain in various tables # before it is deleted. Using a value of zero (0) for any value means that # that particular table should NOT be automatically trimmed. # Keep timed events for 24 hours max_timedevents_age=1440 # Keep system commands for 1 week max_systemcommands_age=10080 # Keep service checks for 1 week max_servicechecks_age=10080 # Keep host checks for 1 week max_hostchecks_age=10080 # Keep event handlers for 31 days max_eventhandlers_age=44640 # DEBUG LEVEL # This option determines how much (if any) debugging information will # be written to the debug file. OR values together to log multiple # types of information. # Values: -1 = Everything # 0 = Nothing # 1 = Process info # 2 = SQL queries debug_level=1 # DEBUG VERBOSITY # This option determines how verbose the debug log out will be. # Values: 0 = Brief output # 1 = More detailed # 2 = Very detailed debug_verbosity=1 # DEBUG FILE # This option determines where the daemon should write debugging information. debug_file=/var/log/ndoutils/ndo2db.debug # MAX DEBUG FILE SIZE # This option determines the maximum size (in bytes) of the debug file. If # the file grows larger than this size, it will be renamed with a .old # extension. If a file already exists with a .old extension it will # automatically be deleted. This helps ensure your disk space usage doesn't # get out of control when debugging. max_debug_file_size=1000000 --- NEW FILE ndo2db.initd --- #!/bin/bash # # ndo2db: Starts the ndoutils ndo2db utility. # # chkconfig: - 30 74 # description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. # processname: /usr/sbin/ndo2db # config: /etc/nagios/ndo2db.cfg # config: /etc/sysconfig/ndo2db # ### BEGIN INIT INFO # Provides: ndo2db # Required-Start: $syslog # Required-Stop: # Default-Stop: 0 1 6 # Short-Description: Starts the ndo2db Daemon # Description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. ### END INIT INFO # Sanity checks. [ -f /etc/nagios/ndo2db.cfg ] || exit 0 [ -x /usr/sbin/ndo2db ] || exit 0 # Source function library. . /etc/rc.d/init.d/functions NDO2DBUSER=nagios NDO2DB_OPTIONS="-c /etc/nagios/ndo2db.cfg" # Source an auxiliary options file if we have one, and pick up NDO2DB_OPTIONS. [ -r /etc/sysconfig/ndo2db ] && . /etc/sysconfig/ndo2db RETVAL=0 prog=ndo2db start () { echo -n $"Starting $prog: " if [ "$(pidofproc ndo2db)" = "" ]; then rm -f /var/run/ndoutils/ndoutils.sock daemon --user=$NDO2DBUSER /usr/sbin/ndo2db $NDO2DB_OPTIONS RETVAL=$? else success RETVAL=$? fi echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ndo2db return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc ndo2db RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ndo2db return $RETVAL } restart() { stop start } # See how we were called. case "$1" in start) start RETVAL=$? ;; stop) stop RETVAL=$? ;; status) status ndo2db RETVAL=$? ;; restart) restart RETVAL=$? ;; reload) status ndo2db && restart || start RETVAL=$? ;; condrestart) [ -e /var/lock/subsys/ndo2db ] && restart RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart}" RETVAL=1 ;; esac exit $RETVAL --- NEW FILE ndomod.cfg --- ##################################################################### # NDOMOD CONFIG FILE # # Last Modified: 09-05-2007 ##################################################################### # INSTANCE NAME # This option identifies the "name" associated with this particular # instance of Nagios and is used to seperate data coming from multiple # instances. Defaults to 'default' (without quotes). instance_name=default # OUTPUT TYPE # This option determines what type of output sink the NDO NEB module # should use for data output. Valid options include: # file = standard text file # tcpsocket = TCP socket # unixsocket = UNIX domain socket (default) #output_type=file #output_type=tcpsocket output_type=unixsocket # OUTPUT # This option determines the name and path of the file or UNIX domain # socket to which output will be sent if the output type option specified # above is "file" or "unixsocket", respectively. If the output type # option is "tcpsocket", this option is used to specify the IP address # of fully qualified domain name of the host that the module should # connect to for sending output. #output=/usr/local/nagios/var/ndo.dat #output=127.0.0.1 output=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the module will connect to in # order to send output. This option is only vlaid if the output type # option specified above is "tcpsocket". tcp_port=5668 # OUTPUT BUFFER # This option determines the size of the output buffer, which will help # prevent data from getting lost if there is a temporary disconnect from # the data sink. The number of items specified here is the number of # lines (each of variable size) of output that will be buffered. output_buffer_items=5000 # BUFFER FILE # This option is used to specify a file which will be used to store the # contents of buffered data which could not be sent to the NDO2DB daemon # before Nagios shuts down. Prior to shutting down, the NDO NEB module # will write all buffered data to this file for later processing. When # Nagios (re)starts, the NDO NEB module will read the contents of this # file and send it to the NDO2DB daemon for processing. buffer_file=/var/cache/ndoutils/ndomod.buffer # FILE ROTATION INTERVAL # This option determines how often (in seconds) the output file is # rotated by Nagios. File rotation is handled by Nagios by executing # the command defined by the file_rotation_command option. This # option has no effect if the output_type option is a socket. file_rotation_interval=14400 # FILE ROTATION COMMAND # This option specified the command (as defined in Nagios) that is # used to rotate the output file at the interval specified by the # file_rotation_interval option. This option has no effect if the # output_type option is a socket. # # See the file 'misccommands.cfg' for an example command definition # that you can use to rotate the log file. #file_rotation_command=rotate_ndo_log # FILE ROTATION TIMEOUT # This option specified the maximum number of seconds that the file # rotation command should be allowed to run before being prematurely # terminated. file_rotation_timeout=60 # RECONNECT INTERVAL # This option determines how often (in seconds) that the NDO NEB # module will attempt to re-connect to the output file or socket if # a connection to it is lost. reconnect_interval=15 # RECONNECT WARNING INTERVAL # This option determines how often (in seconds) a warning message will # be logged to the Nagios log file if a connection to the output file # or socket cannot be re-established. reconnect_warning_interval=15 #reconnect_warning_interval=900 # DATA PROCESSING OPTION # This option determines what data the NDO NEB module will process. # Do not mess with this option unless you know what you're doing!!!! # Read the source code (include/ndbxtmod.h) to determine what values # to use here. Values from source code should be OR'ed to get the # value to use here. A value of -1 will cause all data to be processed. # Read the source code (include/ndomod.h) and look for "NDOMOD_PROCESS_" # to determine what values to use here. Values from source code should # be OR'ed to get the value to use here. A value of -1 will cause all # data to be processed. data_processing_options=-1 # CONFIG OUTPUT OPTION # This option determines what types of configuration data the NDO # NEB module will dump from Nagios. Values can be OR'ed together. # Values: # 0 = Don't dump any configuration information # 1 = Dump only original config (from config files) # 2 = Dump config only after retained information has been restored # 3 = Dump both original and retained configuration config_output_options=2 --- NEW FILE ndoutils.spec --- %global betaversion b8 %{?betaversion: %global dotbetaversion .%{betaversion}} Name: ndoutils Version: 1.4 Release: 0.6%{?dotbetaversion}%{?dist} Summary: Stores all configuration and event data from Nagios in a database Group: Applications/System License: GPLv2 URL: http://www.nagios.org/download/addons/ Source0: http://downloads.sourceforge.net/nagios/ndoutils-%{version}%{?betaversion}.tar.gz Source1: README.Fedora Source2: ndo2db.cfg Source3: ndomod.cfg Source4: ndo2db.initd Patch0: ndo-shared-so.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mysql-devel # On RHEL4 and 5 we build for nagios 2 rather than a default 3 or more. %if 0%{?el4}%{?el5} Requires: nagios < 3 %else Requires: nagios >= 3 %endif Requires(post): chkconfig Requires(preun): chkconfig, initscripts %package mysql Summary: Contains the ndoutils ndo2db for mysql Group: Applications/System Requires:ndoutils = %{version}-%{release} %description mysql Contains an ndo2db for writing ndoutils data from nagios to MySQL. %description The NDOUTILS addon is designed to store all configuration and event data from Nagios in a database. Storing information from Nagios in a database will allow for quicker retrieval and processing of that data and will help serve as a foundation for the development of a new PHP-based web interface in Nagios 3.0. %prep %setup -q -n %{name}-%{version}%{?betaversion} %patch0 -p1 # Remove executable bits from the example scripts in # the documentation. %{__chmod} 644 db/installdb db/prepsql db/upgradedb %build %configure %{__make} %{?_smp_mflags} %if 0%{?el4}%{?el5} %{__cp} src/ndo2db-2x src/ndo2db.mysql %else %{__cp} src/ndo2db-3x src/ndo2db.mysql %endif %install # Upstream does not provide an install target. # http://tracker.nagios.org/view.php?id=21 rm -rf $RPM_BUILD_ROOT %{__install} -m 644 %{SOURCE1} README.Fedora %{__install} -m 755 -D src/ndo2db.mysql $RPM_BUILD_ROOT/%{_sbindir}/ndo2db.mysql %if 0%{?el4}%{?el5} %{__install} -m 755 -D src/ndomod-2x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %else %{__install} -m 755 -D src/ndomod-3x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %endif %{__install} -m 644 -D %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndo2db.cfg %{__install} -m 644 -D %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndomod.cfg %{__install} -m 755 -D %{SOURCE4} $RPM_BUILD_ROOT/%{_initrddir}/ndo2db %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/log/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/run/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/cache/ndoutils %clean %{__rm} -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/nagios/brokers/ndomod.so %{_initrddir}/ndo2db %config(noreplace) %{_sysconfdir}/nagios/ndo2db.cfg %config(noreplace) %{_sysconfdir}/nagios/ndomod.cfg %dir %attr(-,nagios,root) /var/run/ndoutils %dir %attr(-,nagios,root) /var/log/ndoutils %dir %attr(-,nagios,root) /var/cache/ndoutils %doc README.Fedora docs README REQUIREMENTS TODO UPGRADING %files mysql %defattr(-,root,root,-) %{_sbindir}/ndo2db.mysql %doc db %preun if [ $1 = 0 ]; then /sbin/service ndo2db stop > /dev/null 2>&1 || : /sbin/chkconfig --del ndo2db || : fi %preun mysql if [ $1 = 0 ]; then /usr/sbin/alternatives --remove ndo2db /usr/sbin/ndo2db.mysql fi %post /sbin/chkconfig --add ndo2db || : %post mysql /usr/sbin/alternatives --install /usr/sbin/ndo2db ndo2db /usr/sbin/ndo2db.mysql 40 %changelog * Tue Jul 21 2009 Steve Traylen - 1.4-0.6.b8 - A requires nagios = 2 will not work. * Tue Jul 21 2009 Steve Traylen - 1.4-0.5.b8 - Updated to nodutils 1.4b8. - mysql lib path no longer needs to be set explicitly. - Use dist tags to install for nagios2 on el4 and el5. * Mon Jul 20 2009 Steve Traylen - 1.4-0.4.b7 - Patch ndomod.o to be ndomod.so since it is a shared object. - Move ndomod.so from /usr/lib to /usr/lib/nagios/brokers - Change URL to better one. - Change SourceURL to fedora package guideline for sourceforge. - Completly removed postgres support. The documents clearly state it is not supported. * Sun Jun 14 2009 Steve Traylen - 1.4-0.3.b7 - Move ndo2db.cfg and ndomod.cfg to /etc/nagios as per install guide. - Remove executable bits from documentation examples. * Thu Jun 11 2009 Steve Traylen - 1.4-0.2.b7 - Split package to create postgres and mysql binary in different sub packages. * Wed Jun 10 2009 Steve Traylen - 1.4-0.1.b7 - Add full URL location to Source0: - Use special Version/Release tag since a beta. i.e 1.4-0.1.b7 * Sat Apr 25 2009 Steve Traylen - First Build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ndoutils/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:18:41 -0000 1.1 +++ sources 29 Jul 2009 16:41:30 -0000 1.2 @@ -0,0 +1 @@ +767dbfabd94506bc68c59033d7abdaa4 ndoutils-1.4b8.tar.gz From stevetraylen at fedoraproject.org Wed Jul 29 16:43:17 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Wed, 29 Jul 2009 16:43:17 +0000 (UTC) Subject: rpms/ndoutils/F-10 README.Fedora, NONE, 1.1 ndo-shared-so.patch, NONE, 1.1 ndo2db.cfg, NONE, 1.1 ndo2db.initd, NONE, 1.1 ndomod.cfg, NONE, 1.1 ndoutils.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729164317.BC2F011C00CE@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/ndoutils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23107 Modified Files: sources Added Files: README.Fedora ndo-shared-so.patch ndo2db.cfg ndo2db.initd ndomod.cfg ndoutils.spec Log Message: First version. --- NEW FILE README.Fedora --- Having installed ndoutils you must install ndoutils-mysql. Currently this is only database supported by ndoutils more alternatives will be added later as ndoutils supports them. The alternatives mechanism is used to choose the version of ndo2db that you want. # alternatives --display ndo2db ndo2db - status is auto. link currently points to /usr/sbin/ndo2db.mysql /usr/sbin/ndo2db.mysql - priority 40 Current `best' version is /usr/sbin/ndo2db.mysql. To configure ndoutils for use with Nagios and mysql please follow the following when running with Fedora. 1) Start a shell to MySQL and create and grant access to a database. mysql> create database nagios mysql> GRANT ALL ON nagios.* TO ndouser at localhost IDENTIFIED BY "ndopassword"; mysql> quit 2) Load the schema $ cd /usr/share/doc/ndoutils-mysql-*/db $ perl ./installdb -u ndouser -p ndopassword -h localhost -d nagios 3) To your /etc/nagios/nagios.cfg file make the following configuration. broker_module=/usr/lib/nagios/brokers/ndomod.so config_file=/etc/nagios/ndomod.cfg (lib64 for 64bit of course.) 4) Start ndo2db /sbin/service ndo2db start /sbin/chkconfig ndo2db on 4) Restart Nagios /sbin/service nagios restart ndo-shared-so.patch: Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE ndo-shared-so.patch --- diff -uNr ndoutils-1.4b7.ORIG/src/Makefile.in ndoutils-1.4b7/src/Makefile.in --- ndoutils-1.4b7.ORIG/src/Makefile.in 2007-10-03 03:02:58.000000000 +0200 +++ ndoutils-1.4b7/src/Makefile.in 2009-07-20 22:24:31.370396774 +0200 @@ -63,10 +63,10 @@ $(MAKE) ndomod-3x.o ndomod-2x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) ndomod-3x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) sockdebug: sockdebug.c $(COMMON_INC) $(COMMON_OBJS) $(CC) $(CFLAGS) -o $@ sockdebug.c $(COMMON_OBJS) $(LDFLAGS) $(LIBS) $(MATHLIBS) $(SOCKETLIBS) $(OTHERLIBS) --- NEW FILE ndo2db.cfg --- ##################################################################### # NDO2DB DAEMON CONFIG FILE # # Last Modified: 10-29-2007 ##################################################################### # USER/GROUP PRIVILIGES # These options determine the user/group that the daemon should run as. # You can specify a number (uid/gid) or a name for either option. ndo2db_user=nagios ndo2db_group=nagios # SOCKET TYPE # This option determines what type of socket the daemon will create # an accept connections from. # Value: # unix = Unix domain socket (default) # tcp = TCP socket socket_type=unix #socket_type=tcp # SOCKET NAME # This option determines the name and path of the UNIX domain # socket that the daemon will create and accept connections from. # This option is only valid if the socket type specified above # is "unix". socket_name=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the daemon will listen for # connections on. This option is only vlaid if the socket type # specified above is "tcp". tcp_port=5668 # DATABASE SERVER TYPE # This option determines what type of DB server the daemon should # connect to. # Values: # mysql = MySQL # pgsql = PostgreSQL db_servertype=mysql # DATABASE HOST # This option specifies what host the DB server is running on. db_host=localhost # DATABASE PORT # This option specifies the port that the DB server is running on. # Values: # 3306 = Default MySQL port # 5432 = Default PostgreSQL port db_port=3306 # DATABASE NAME # This option specifies the name of the database that should be used. db_name=nagios # DATABASE TABLE PREFIX # Determines the prefix (if any) that should be prepended to table names. # If you modify the table prefix, you'll need to modify the SQL script for # creating the database! db_prefix=nagios_ # DATABASE USERNAME/PASSWORD # This is the username/password that will be used to authenticate to the DB. # The user needs at least SELECT, INSERT, UPDATE, and DELETE privileges on # the database. db_user=ndouser db_pass=ndopassword ## TABLE TRIMMING OPTIONS # Several database tables containing Nagios event data can become quite large # over time. Most admins will want to trim these tables and keep only a # certain amount of data in them. The options below are used to specify the # age (in MINUTES) that data should be allowd to remain in various tables # before it is deleted. Using a value of zero (0) for any value means that # that particular table should NOT be automatically trimmed. # Keep timed events for 24 hours max_timedevents_age=1440 # Keep system commands for 1 week max_systemcommands_age=10080 # Keep service checks for 1 week max_servicechecks_age=10080 # Keep host checks for 1 week max_hostchecks_age=10080 # Keep event handlers for 31 days max_eventhandlers_age=44640 # DEBUG LEVEL # This option determines how much (if any) debugging information will # be written to the debug file. OR values together to log multiple # types of information. # Values: -1 = Everything # 0 = Nothing # 1 = Process info # 2 = SQL queries debug_level=1 # DEBUG VERBOSITY # This option determines how verbose the debug log out will be. # Values: 0 = Brief output # 1 = More detailed # 2 = Very detailed debug_verbosity=1 # DEBUG FILE # This option determines where the daemon should write debugging information. debug_file=/var/log/ndoutils/ndo2db.debug # MAX DEBUG FILE SIZE # This option determines the maximum size (in bytes) of the debug file. If # the file grows larger than this size, it will be renamed with a .old # extension. If a file already exists with a .old extension it will # automatically be deleted. This helps ensure your disk space usage doesn't # get out of control when debugging. max_debug_file_size=1000000 --- NEW FILE ndo2db.initd --- #!/bin/bash # # ndo2db: Starts the ndoutils ndo2db utility. # # chkconfig: - 30 74 # description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. # processname: /usr/sbin/ndo2db # config: /etc/nagios/ndo2db.cfg # config: /etc/sysconfig/ndo2db # ### BEGIN INIT INFO # Provides: ndo2db # Required-Start: $syslog # Required-Stop: # Default-Stop: 0 1 6 # Short-Description: Starts the ndo2db Daemon # Description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. ### END INIT INFO # Sanity checks. [ -f /etc/nagios/ndo2db.cfg ] || exit 0 [ -x /usr/sbin/ndo2db ] || exit 0 # Source function library. . /etc/rc.d/init.d/functions NDO2DBUSER=nagios NDO2DB_OPTIONS="-c /etc/nagios/ndo2db.cfg" # Source an auxiliary options file if we have one, and pick up NDO2DB_OPTIONS. [ -r /etc/sysconfig/ndo2db ] && . /etc/sysconfig/ndo2db RETVAL=0 prog=ndo2db start () { echo -n $"Starting $prog: " if [ "$(pidofproc ndo2db)" = "" ]; then rm -f /var/run/ndoutils/ndoutils.sock daemon --user=$NDO2DBUSER /usr/sbin/ndo2db $NDO2DB_OPTIONS RETVAL=$? else success RETVAL=$? fi echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ndo2db return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc ndo2db RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ndo2db return $RETVAL } restart() { stop start } # See how we were called. case "$1" in start) start RETVAL=$? ;; stop) stop RETVAL=$? ;; status) status ndo2db RETVAL=$? ;; restart) restart RETVAL=$? ;; reload) status ndo2db && restart || start RETVAL=$? ;; condrestart) [ -e /var/lock/subsys/ndo2db ] && restart RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart}" RETVAL=1 ;; esac exit $RETVAL --- NEW FILE ndomod.cfg --- ##################################################################### # NDOMOD CONFIG FILE # # Last Modified: 09-05-2007 ##################################################################### # INSTANCE NAME # This option identifies the "name" associated with this particular # instance of Nagios and is used to seperate data coming from multiple # instances. Defaults to 'default' (without quotes). instance_name=default # OUTPUT TYPE # This option determines what type of output sink the NDO NEB module # should use for data output. Valid options include: # file = standard text file # tcpsocket = TCP socket # unixsocket = UNIX domain socket (default) #output_type=file #output_type=tcpsocket output_type=unixsocket # OUTPUT # This option determines the name and path of the file or UNIX domain # socket to which output will be sent if the output type option specified # above is "file" or "unixsocket", respectively. If the output type # option is "tcpsocket", this option is used to specify the IP address # of fully qualified domain name of the host that the module should # connect to for sending output. #output=/usr/local/nagios/var/ndo.dat #output=127.0.0.1 output=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the module will connect to in # order to send output. This option is only vlaid if the output type # option specified above is "tcpsocket". tcp_port=5668 # OUTPUT BUFFER # This option determines the size of the output buffer, which will help # prevent data from getting lost if there is a temporary disconnect from # the data sink. The number of items specified here is the number of # lines (each of variable size) of output that will be buffered. output_buffer_items=5000 # BUFFER FILE # This option is used to specify a file which will be used to store the # contents of buffered data which could not be sent to the NDO2DB daemon # before Nagios shuts down. Prior to shutting down, the NDO NEB module # will write all buffered data to this file for later processing. When # Nagios (re)starts, the NDO NEB module will read the contents of this # file and send it to the NDO2DB daemon for processing. buffer_file=/var/cache/ndoutils/ndomod.buffer # FILE ROTATION INTERVAL # This option determines how often (in seconds) the output file is # rotated by Nagios. File rotation is handled by Nagios by executing # the command defined by the file_rotation_command option. This # option has no effect if the output_type option is a socket. file_rotation_interval=14400 # FILE ROTATION COMMAND # This option specified the command (as defined in Nagios) that is # used to rotate the output file at the interval specified by the # file_rotation_interval option. This option has no effect if the # output_type option is a socket. # # See the file 'misccommands.cfg' for an example command definition # that you can use to rotate the log file. #file_rotation_command=rotate_ndo_log # FILE ROTATION TIMEOUT # This option specified the maximum number of seconds that the file # rotation command should be allowed to run before being prematurely # terminated. file_rotation_timeout=60 # RECONNECT INTERVAL # This option determines how often (in seconds) that the NDO NEB # module will attempt to re-connect to the output file or socket if # a connection to it is lost. reconnect_interval=15 # RECONNECT WARNING INTERVAL # This option determines how often (in seconds) a warning message will # be logged to the Nagios log file if a connection to the output file # or socket cannot be re-established. reconnect_warning_interval=15 #reconnect_warning_interval=900 # DATA PROCESSING OPTION # This option determines what data the NDO NEB module will process. # Do not mess with this option unless you know what you're doing!!!! # Read the source code (include/ndbxtmod.h) to determine what values # to use here. Values from source code should be OR'ed to get the # value to use here. A value of -1 will cause all data to be processed. # Read the source code (include/ndomod.h) and look for "NDOMOD_PROCESS_" # to determine what values to use here. Values from source code should # be OR'ed to get the value to use here. A value of -1 will cause all # data to be processed. data_processing_options=-1 # CONFIG OUTPUT OPTION # This option determines what types of configuration data the NDO # NEB module will dump from Nagios. Values can be OR'ed together. # Values: # 0 = Don't dump any configuration information # 1 = Dump only original config (from config files) # 2 = Dump config only after retained information has been restored # 3 = Dump both original and retained configuration config_output_options=2 --- NEW FILE ndoutils.spec --- %global betaversion b8 %{?betaversion: %global dotbetaversion .%{betaversion}} Name: ndoutils Version: 1.4 Release: 0.6%{?dotbetaversion}%{?dist} Summary: Stores all configuration and event data from Nagios in a database Group: Applications/System License: GPLv2 URL: http://www.nagios.org/download/addons/ Source0: http://downloads.sourceforge.net/nagios/ndoutils-%{version}%{?betaversion}.tar.gz Source1: README.Fedora Source2: ndo2db.cfg Source3: ndomod.cfg Source4: ndo2db.initd Patch0: ndo-shared-so.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mysql-devel # On RHEL4 and 5 we build for nagios 2 rather than a default 3 or more. %if 0%{?el4}%{?el5} Requires: nagios < 3 %else Requires: nagios >= 3 %endif Requires(post): chkconfig Requires(preun): chkconfig, initscripts %package mysql Summary: Contains the ndoutils ndo2db for mysql Group: Applications/System Requires:ndoutils = %{version}-%{release} %description mysql Contains an ndo2db for writing ndoutils data from nagios to MySQL. %description The NDOUTILS addon is designed to store all configuration and event data from Nagios in a database. Storing information from Nagios in a database will allow for quicker retrieval and processing of that data and will help serve as a foundation for the development of a new PHP-based web interface in Nagios 3.0. %prep %setup -q -n %{name}-%{version}%{?betaversion} %patch0 -p1 # Remove executable bits from the example scripts in # the documentation. %{__chmod} 644 db/installdb db/prepsql db/upgradedb %build %configure %{__make} %{?_smp_mflags} %if 0%{?el4}%{?el5} %{__cp} src/ndo2db-2x src/ndo2db.mysql %else %{__cp} src/ndo2db-3x src/ndo2db.mysql %endif %install # Upstream does not provide an install target. # http://tracker.nagios.org/view.php?id=21 rm -rf $RPM_BUILD_ROOT %{__install} -m 644 %{SOURCE1} README.Fedora %{__install} -m 755 -D src/ndo2db.mysql $RPM_BUILD_ROOT/%{_sbindir}/ndo2db.mysql %if 0%{?el4}%{?el5} %{__install} -m 755 -D src/ndomod-2x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %else %{__install} -m 755 -D src/ndomod-3x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %endif %{__install} -m 644 -D %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndo2db.cfg %{__install} -m 644 -D %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndomod.cfg %{__install} -m 755 -D %{SOURCE4} $RPM_BUILD_ROOT/%{_initrddir}/ndo2db %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/log/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/run/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/cache/ndoutils %clean %{__rm} -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/nagios/brokers/ndomod.so %{_initrddir}/ndo2db %config(noreplace) %{_sysconfdir}/nagios/ndo2db.cfg %config(noreplace) %{_sysconfdir}/nagios/ndomod.cfg %dir %attr(-,nagios,root) /var/run/ndoutils %dir %attr(-,nagios,root) /var/log/ndoutils %dir %attr(-,nagios,root) /var/cache/ndoutils %doc README.Fedora docs README REQUIREMENTS TODO UPGRADING %files mysql %defattr(-,root,root,-) %{_sbindir}/ndo2db.mysql %doc db %preun if [ $1 = 0 ]; then /sbin/service ndo2db stop > /dev/null 2>&1 || : /sbin/chkconfig --del ndo2db || : fi %preun mysql if [ $1 = 0 ]; then /usr/sbin/alternatives --remove ndo2db /usr/sbin/ndo2db.mysql fi %post /sbin/chkconfig --add ndo2db || : %post mysql /usr/sbin/alternatives --install /usr/sbin/ndo2db ndo2db /usr/sbin/ndo2db.mysql 40 %changelog * Tue Jul 21 2009 Steve Traylen - 1.4-0.6.b8 - A requires nagios = 2 will not work. * Tue Jul 21 2009 Steve Traylen - 1.4-0.5.b8 - Updated to nodutils 1.4b8. - mysql lib path no longer needs to be set explicitly. - Use dist tags to install for nagios2 on el4 and el5. * Mon Jul 20 2009 Steve Traylen - 1.4-0.4.b7 - Patch ndomod.o to be ndomod.so since it is a shared object. - Move ndomod.so from /usr/lib to /usr/lib/nagios/brokers - Change URL to better one. - Change SourceURL to fedora package guideline for sourceforge. - Completly removed postgres support. The documents clearly state it is not supported. * Sun Jun 14 2009 Steve Traylen - 1.4-0.3.b7 - Move ndo2db.cfg and ndomod.cfg to /etc/nagios as per install guide. - Remove executable bits from documentation examples. * Thu Jun 11 2009 Steve Traylen - 1.4-0.2.b7 - Split package to create postgres and mysql binary in different sub packages. * Wed Jun 10 2009 Steve Traylen - 1.4-0.1.b7 - Add full URL location to Source0: - Use special Version/Release tag since a beta. i.e 1.4-0.1.b7 * Sat Apr 25 2009 Steve Traylen - First Build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ndoutils/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:18:41 -0000 1.1 +++ sources 29 Jul 2009 16:43:17 -0000 1.2 @@ -0,0 +1 @@ +767dbfabd94506bc68c59033d7abdaa4 ndoutils-1.4b8.tar.gz From stevetraylen at fedoraproject.org Wed Jul 29 16:44:09 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Wed, 29 Jul 2009 16:44:09 +0000 (UTC) Subject: rpms/ndoutils/F-11 README.Fedora, NONE, 1.1 ndo-shared-so.patch, NONE, 1.1 ndo2db.cfg, NONE, 1.1 ndo2db.initd, NONE, 1.1 ndomod.cfg, NONE, 1.1 ndoutils.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090729164409.D52C211C00CE@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/ndoutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23498 Modified Files: sources Added Files: README.Fedora ndo-shared-so.patch ndo2db.cfg ndo2db.initd ndomod.cfg ndoutils.spec Log Message: First version --- NEW FILE README.Fedora --- Having installed ndoutils you must install ndoutils-mysql. Currently this is only database supported by ndoutils more alternatives will be added later as ndoutils supports them. The alternatives mechanism is used to choose the version of ndo2db that you want. # alternatives --display ndo2db ndo2db - status is auto. link currently points to /usr/sbin/ndo2db.mysql /usr/sbin/ndo2db.mysql - priority 40 Current `best' version is /usr/sbin/ndo2db.mysql. To configure ndoutils for use with Nagios and mysql please follow the following when running with Fedora. 1) Start a shell to MySQL and create and grant access to a database. mysql> create database nagios mysql> GRANT ALL ON nagios.* TO ndouser at localhost IDENTIFIED BY "ndopassword"; mysql> quit 2) Load the schema $ cd /usr/share/doc/ndoutils-mysql-*/db $ perl ./installdb -u ndouser -p ndopassword -h localhost -d nagios 3) To your /etc/nagios/nagios.cfg file make the following configuration. broker_module=/usr/lib/nagios/brokers/ndomod.so config_file=/etc/nagios/ndomod.cfg (lib64 for 64bit of course.) 4) Start ndo2db /sbin/service ndo2db start /sbin/chkconfig ndo2db on 4) Restart Nagios /sbin/service nagios restart ndo-shared-so.patch: Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE ndo-shared-so.patch --- diff -uNr ndoutils-1.4b7.ORIG/src/Makefile.in ndoutils-1.4b7/src/Makefile.in --- ndoutils-1.4b7.ORIG/src/Makefile.in 2007-10-03 03:02:58.000000000 +0200 +++ ndoutils-1.4b7/src/Makefile.in 2009-07-20 22:24:31.370396774 +0200 @@ -63,10 +63,10 @@ $(MAKE) ndomod-3x.o ndomod-2x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_2X -o ndomod-2x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) ndomod-3x.o: ndomod.c $(COMMON_INC) $(COMMON_OBJS) - $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.o ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) + $(CC) $(MOD_CFLAGS) $(CFLAGS) -D BUILD_NAGIOS_3X -o ndomod-3x.so ndomod.c $(COMMON_OBJS) $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) $(SOCKETLIBS) $(OTHERLIBS) sockdebug: sockdebug.c $(COMMON_INC) $(COMMON_OBJS) $(CC) $(CFLAGS) -o $@ sockdebug.c $(COMMON_OBJS) $(LDFLAGS) $(LIBS) $(MATHLIBS) $(SOCKETLIBS) $(OTHERLIBS) --- NEW FILE ndo2db.cfg --- ##################################################################### # NDO2DB DAEMON CONFIG FILE # # Last Modified: 10-29-2007 ##################################################################### # USER/GROUP PRIVILIGES # These options determine the user/group that the daemon should run as. # You can specify a number (uid/gid) or a name for either option. ndo2db_user=nagios ndo2db_group=nagios # SOCKET TYPE # This option determines what type of socket the daemon will create # an accept connections from. # Value: # unix = Unix domain socket (default) # tcp = TCP socket socket_type=unix #socket_type=tcp # SOCKET NAME # This option determines the name and path of the UNIX domain # socket that the daemon will create and accept connections from. # This option is only valid if the socket type specified above # is "unix". socket_name=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the daemon will listen for # connections on. This option is only vlaid if the socket type # specified above is "tcp". tcp_port=5668 # DATABASE SERVER TYPE # This option determines what type of DB server the daemon should # connect to. # Values: # mysql = MySQL # pgsql = PostgreSQL db_servertype=mysql # DATABASE HOST # This option specifies what host the DB server is running on. db_host=localhost # DATABASE PORT # This option specifies the port that the DB server is running on. # Values: # 3306 = Default MySQL port # 5432 = Default PostgreSQL port db_port=3306 # DATABASE NAME # This option specifies the name of the database that should be used. db_name=nagios # DATABASE TABLE PREFIX # Determines the prefix (if any) that should be prepended to table names. # If you modify the table prefix, you'll need to modify the SQL script for # creating the database! db_prefix=nagios_ # DATABASE USERNAME/PASSWORD # This is the username/password that will be used to authenticate to the DB. # The user needs at least SELECT, INSERT, UPDATE, and DELETE privileges on # the database. db_user=ndouser db_pass=ndopassword ## TABLE TRIMMING OPTIONS # Several database tables containing Nagios event data can become quite large # over time. Most admins will want to trim these tables and keep only a # certain amount of data in them. The options below are used to specify the # age (in MINUTES) that data should be allowd to remain in various tables # before it is deleted. Using a value of zero (0) for any value means that # that particular table should NOT be automatically trimmed. # Keep timed events for 24 hours max_timedevents_age=1440 # Keep system commands for 1 week max_systemcommands_age=10080 # Keep service checks for 1 week max_servicechecks_age=10080 # Keep host checks for 1 week max_hostchecks_age=10080 # Keep event handlers for 31 days max_eventhandlers_age=44640 # DEBUG LEVEL # This option determines how much (if any) debugging information will # be written to the debug file. OR values together to log multiple # types of information. # Values: -1 = Everything # 0 = Nothing # 1 = Process info # 2 = SQL queries debug_level=1 # DEBUG VERBOSITY # This option determines how verbose the debug log out will be. # Values: 0 = Brief output # 1 = More detailed # 2 = Very detailed debug_verbosity=1 # DEBUG FILE # This option determines where the daemon should write debugging information. debug_file=/var/log/ndoutils/ndo2db.debug # MAX DEBUG FILE SIZE # This option determines the maximum size (in bytes) of the debug file. If # the file grows larger than this size, it will be renamed with a .old # extension. If a file already exists with a .old extension it will # automatically be deleted. This helps ensure your disk space usage doesn't # get out of control when debugging. max_debug_file_size=1000000 --- NEW FILE ndo2db.initd --- #!/bin/bash # # ndo2db: Starts the ndoutils ndo2db utility. # # chkconfig: - 30 74 # description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. # processname: /usr/sbin/ndo2db # config: /etc/nagios/ndo2db.cfg # config: /etc/sysconfig/ndo2db # ### BEGIN INIT INFO # Provides: ndo2db # Required-Start: $syslog # Required-Stop: # Default-Stop: 0 1 6 # Short-Description: Starts the ndo2db Daemon # Description: This is a daemon which creates a socket that in then # reads from. The expectation is that Nagios will be writing # to this socket using nodutils ndomod brokering utility. ### END INIT INFO # Sanity checks. [ -f /etc/nagios/ndo2db.cfg ] || exit 0 [ -x /usr/sbin/ndo2db ] || exit 0 # Source function library. . /etc/rc.d/init.d/functions NDO2DBUSER=nagios NDO2DB_OPTIONS="-c /etc/nagios/ndo2db.cfg" # Source an auxiliary options file if we have one, and pick up NDO2DB_OPTIONS. [ -r /etc/sysconfig/ndo2db ] && . /etc/sysconfig/ndo2db RETVAL=0 prog=ndo2db start () { echo -n $"Starting $prog: " if [ "$(pidofproc ndo2db)" = "" ]; then rm -f /var/run/ndoutils/ndoutils.sock daemon --user=$NDO2DBUSER /usr/sbin/ndo2db $NDO2DB_OPTIONS RETVAL=$? else success RETVAL=$? fi echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ndo2db return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc ndo2db RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ndo2db return $RETVAL } restart() { stop start } # See how we were called. case "$1" in start) start RETVAL=$? ;; stop) stop RETVAL=$? ;; status) status ndo2db RETVAL=$? ;; restart) restart RETVAL=$? ;; reload) status ndo2db && restart || start RETVAL=$? ;; condrestart) [ -e /var/lock/subsys/ndo2db ] && restart RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart}" RETVAL=1 ;; esac exit $RETVAL --- NEW FILE ndomod.cfg --- ##################################################################### # NDOMOD CONFIG FILE # # Last Modified: 09-05-2007 ##################################################################### # INSTANCE NAME # This option identifies the "name" associated with this particular # instance of Nagios and is used to seperate data coming from multiple # instances. Defaults to 'default' (without quotes). instance_name=default # OUTPUT TYPE # This option determines what type of output sink the NDO NEB module # should use for data output. Valid options include: # file = standard text file # tcpsocket = TCP socket # unixsocket = UNIX domain socket (default) #output_type=file #output_type=tcpsocket output_type=unixsocket # OUTPUT # This option determines the name and path of the file or UNIX domain # socket to which output will be sent if the output type option specified # above is "file" or "unixsocket", respectively. If the output type # option is "tcpsocket", this option is used to specify the IP address # of fully qualified domain name of the host that the module should # connect to for sending output. #output=/usr/local/nagios/var/ndo.dat #output=127.0.0.1 output=/var/run/ndoutils/ndoutils.sock # TCP PORT # This option determines what port the module will connect to in # order to send output. This option is only vlaid if the output type # option specified above is "tcpsocket". tcp_port=5668 # OUTPUT BUFFER # This option determines the size of the output buffer, which will help # prevent data from getting lost if there is a temporary disconnect from # the data sink. The number of items specified here is the number of # lines (each of variable size) of output that will be buffered. output_buffer_items=5000 # BUFFER FILE # This option is used to specify a file which will be used to store the # contents of buffered data which could not be sent to the NDO2DB daemon # before Nagios shuts down. Prior to shutting down, the NDO NEB module # will write all buffered data to this file for later processing. When # Nagios (re)starts, the NDO NEB module will read the contents of this # file and send it to the NDO2DB daemon for processing. buffer_file=/var/cache/ndoutils/ndomod.buffer # FILE ROTATION INTERVAL # This option determines how often (in seconds) the output file is # rotated by Nagios. File rotation is handled by Nagios by executing # the command defined by the file_rotation_command option. This # option has no effect if the output_type option is a socket. file_rotation_interval=14400 # FILE ROTATION COMMAND # This option specified the command (as defined in Nagios) that is # used to rotate the output file at the interval specified by the # file_rotation_interval option. This option has no effect if the # output_type option is a socket. # # See the file 'misccommands.cfg' for an example command definition # that you can use to rotate the log file. #file_rotation_command=rotate_ndo_log # FILE ROTATION TIMEOUT # This option specified the maximum number of seconds that the file # rotation command should be allowed to run before being prematurely # terminated. file_rotation_timeout=60 # RECONNECT INTERVAL # This option determines how often (in seconds) that the NDO NEB # module will attempt to re-connect to the output file or socket if # a connection to it is lost. reconnect_interval=15 # RECONNECT WARNING INTERVAL # This option determines how often (in seconds) a warning message will # be logged to the Nagios log file if a connection to the output file # or socket cannot be re-established. reconnect_warning_interval=15 #reconnect_warning_interval=900 # DATA PROCESSING OPTION # This option determines what data the NDO NEB module will process. # Do not mess with this option unless you know what you're doing!!!! # Read the source code (include/ndbxtmod.h) to determine what values # to use here. Values from source code should be OR'ed to get the # value to use here. A value of -1 will cause all data to be processed. # Read the source code (include/ndomod.h) and look for "NDOMOD_PROCESS_" # to determine what values to use here. Values from source code should # be OR'ed to get the value to use here. A value of -1 will cause all # data to be processed. data_processing_options=-1 # CONFIG OUTPUT OPTION # This option determines what types of configuration data the NDO # NEB module will dump from Nagios. Values can be OR'ed together. # Values: # 0 = Don't dump any configuration information # 1 = Dump only original config (from config files) # 2 = Dump config only after retained information has been restored # 3 = Dump both original and retained configuration config_output_options=2 --- NEW FILE ndoutils.spec --- %global betaversion b8 %{?betaversion: %global dotbetaversion .%{betaversion}} Name: ndoutils Version: 1.4 Release: 0.6%{?dotbetaversion}%{?dist} Summary: Stores all configuration and event data from Nagios in a database Group: Applications/System License: GPLv2 URL: http://www.nagios.org/download/addons/ Source0: http://downloads.sourceforge.net/nagios/ndoutils-%{version}%{?betaversion}.tar.gz Source1: README.Fedora Source2: ndo2db.cfg Source3: ndomod.cfg Source4: ndo2db.initd Patch0: ndo-shared-so.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mysql-devel # On RHEL4 and 5 we build for nagios 2 rather than a default 3 or more. %if 0%{?el4}%{?el5} Requires: nagios < 3 %else Requires: nagios >= 3 %endif Requires(post): chkconfig Requires(preun): chkconfig, initscripts %package mysql Summary: Contains the ndoutils ndo2db for mysql Group: Applications/System Requires:ndoutils = %{version}-%{release} %description mysql Contains an ndo2db for writing ndoutils data from nagios to MySQL. %description The NDOUTILS addon is designed to store all configuration and event data from Nagios in a database. Storing information from Nagios in a database will allow for quicker retrieval and processing of that data and will help serve as a foundation for the development of a new PHP-based web interface in Nagios 3.0. %prep %setup -q -n %{name}-%{version}%{?betaversion} %patch0 -p1 # Remove executable bits from the example scripts in # the documentation. %{__chmod} 644 db/installdb db/prepsql db/upgradedb %build %configure %{__make} %{?_smp_mflags} %if 0%{?el4}%{?el5} %{__cp} src/ndo2db-2x src/ndo2db.mysql %else %{__cp} src/ndo2db-3x src/ndo2db.mysql %endif %install # Upstream does not provide an install target. # http://tracker.nagios.org/view.php?id=21 rm -rf $RPM_BUILD_ROOT %{__install} -m 644 %{SOURCE1} README.Fedora %{__install} -m 755 -D src/ndo2db.mysql $RPM_BUILD_ROOT/%{_sbindir}/ndo2db.mysql %if 0%{?el4}%{?el5} %{__install} -m 755 -D src/ndomod-2x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %else %{__install} -m 755 -D src/ndomod-3x.so $RPM_BUILD_ROOT/%{_libdir}/nagios/brokers/ndomod.so %endif %{__install} -m 644 -D %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndo2db.cfg %{__install} -m 644 -D %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/nagios/ndomod.cfg %{__install} -m 755 -D %{SOURCE4} $RPM_BUILD_ROOT/%{_initrddir}/ndo2db %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/log/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/run/ndoutils %{__mkdir} -p $RPM_BUILD_ROOT/%{_var}/cache/ndoutils %clean %{__rm} -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/nagios/brokers/ndomod.so %{_initrddir}/ndo2db %config(noreplace) %{_sysconfdir}/nagios/ndo2db.cfg %config(noreplace) %{_sysconfdir}/nagios/ndomod.cfg %dir %attr(-,nagios,root) /var/run/ndoutils %dir %attr(-,nagios,root) /var/log/ndoutils %dir %attr(-,nagios,root) /var/cache/ndoutils %doc README.Fedora docs README REQUIREMENTS TODO UPGRADING %files mysql %defattr(-,root,root,-) %{_sbindir}/ndo2db.mysql %doc db %preun if [ $1 = 0 ]; then /sbin/service ndo2db stop > /dev/null 2>&1 || : /sbin/chkconfig --del ndo2db || : fi %preun mysql if [ $1 = 0 ]; then /usr/sbin/alternatives --remove ndo2db /usr/sbin/ndo2db.mysql fi %post /sbin/chkconfig --add ndo2db || : %post mysql /usr/sbin/alternatives --install /usr/sbin/ndo2db ndo2db /usr/sbin/ndo2db.mysql 40 %changelog * Tue Jul 21 2009 Steve Traylen - 1.4-0.6.b8 - A requires nagios = 2 will not work. * Tue Jul 21 2009 Steve Traylen - 1.4-0.5.b8 - Updated to nodutils 1.4b8. - mysql lib path no longer needs to be set explicitly. - Use dist tags to install for nagios2 on el4 and el5. * Mon Jul 20 2009 Steve Traylen - 1.4-0.4.b7 - Patch ndomod.o to be ndomod.so since it is a shared object. - Move ndomod.so from /usr/lib to /usr/lib/nagios/brokers - Change URL to better one. - Change SourceURL to fedora package guideline for sourceforge. - Completly removed postgres support. The documents clearly state it is not supported. * Sun Jun 14 2009 Steve Traylen - 1.4-0.3.b7 - Move ndo2db.cfg and ndomod.cfg to /etc/nagios as per install guide. - Remove executable bits from documentation examples. * Thu Jun 11 2009 Steve Traylen - 1.4-0.2.b7 - Split package to create postgres and mysql binary in different sub packages. * Wed Jun 10 2009 Steve Traylen - 1.4-0.1.b7 - Add full URL location to Source0: - Use special Version/Release tag since a beta. i.e 1.4-0.1.b7 * Sat Apr 25 2009 Steve Traylen - First Build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ndoutils/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 14:18:41 -0000 1.1 +++ sources 29 Jul 2009 16:44:09 -0000 1.2 @@ -0,0 +1 @@ +767dbfabd94506bc68c59033d7abdaa4 ndoutils-1.4b8.tar.gz From cebbert at fedoraproject.org Wed Jul 29 16:48:26 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 16:48:26 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-ecryptfs-overflow-fixes.patch, NONE, 1.1.2.1 kernel.spec, 1.1679, 1.1679.2.1 Message-ID: <20090729164826.78C8E11C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25215 Modified Files: Tag: private-fedora-11-2_6_29_6 kernel.spec Added Files: Tag: private-fedora-11-2_6_29_6 linux-2.6-ecryptfs-overflow-fixes.patch Log Message: Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) linux-2.6-ecryptfs-overflow-fixes.patch: keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) --- NEW FILE linux-2.6-ecryptfs-overflow-fixes.patch --- [PATCH 1/2] eCryptfs: Check Tag 11 literal data buffer size Tag 11 packets are stored in the metadata section of an eCryptfs file to store the key signature(s) used to encrypt the file encryption key. After extracting the packet length field to determine the key signature length, a check is not performed to see if the length would exceed the key signature buffer size that was passed into parse_tag_11_packet(). Thanks to Ramon de Carvalho Valle for finding this bug using fsfuzzer. Signed-off-by: Tyler Hicks [PATCH 2/2] eCryptfs: parse_tag_3_packet check tag 3 packet encrypted key size The parse_tag_3_packet function does not check if the tag 3 packet contains a encrypted key size larger than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES. Signed-off-by: Ramon de Carvalho Valle [tyhicks at linux.vnet.ibm.com: Added printk newline and changed goto to out_free] Signed-off-by: Tyler Hicks --- fs/ecryptfs/keystore.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) Index: linux-2.6.29.noarch/fs/ecryptfs/keystore.c =================================================================== --- linux-2.6.29.noarch.orig/fs/ecryptfs/keystore.c +++ linux-2.6.29.noarch/fs/ecryptfs/keystore.c @@ -1304,6 +1304,13 @@ parse_tag_3_packet(struct ecryptfs_crypt } (*new_auth_tok)->session_key.encrypted_key_size = (body_size - (ECRYPTFS_SALT_SIZE + 5)); + if ((*new_auth_tok)->session_key.encrypted_key_size + > ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES) { + printk(KERN_WARNING "Tag 3 packet contains key larger " + "than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES\n"); + rc = -EINVAL; + goto out_free; + } if (unlikely(data[(*packet_size)++] != 0x04)) { printk(KERN_WARNING "Unknown version number [%d]\n", data[(*packet_size) - 1]); @@ -1450,6 +1457,12 @@ parse_tag_11_packet(unsigned char *data, rc = -EINVAL; goto out; } + if (unlikely((*tag_11_contents_size) > max_contents_bytes)) { + printk(KERN_ERR "Literal data section in tag 11 packet exceeds " + "expected size\n"); + rc = -EINVAL; + goto out; + } if (data[(*packet_size)++] != 0x62) { printk(KERN_WARNING "Unrecognizable packet\n"); rc = -EINVAL; Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1679 retrieving revision 1.1679.2.1 diff -u -p -r1.1679 -r1.1679.2.1 --- kernel.spec 23 Jul 2009 18:05:37 -0000 1.1679 +++ kernel.spec 29 Jul 2009 16:48:25 -0000 1.1679.2.1 @@ -763,6 +763,7 @@ Patch2903: linux-2.6-revert-dvb-net-kabi Patch3000: linux-2.6-btrfs-unstable-update.patch Patch3010: linux-2.6-relatime-by-default.patch Patch3020: linux-2.6-fiemap-header-install.patch +Patch3030: linux-2.6-ecryptfs-overflow-fixes.patch Patch5000: linux-2.6-add-qcserial.patch @@ -1262,6 +1263,9 @@ ApplyPatch linux-2.6-execshield.patch # btrfs ApplyPatch linux-2.6-btrfs-unstable-update.patch +# eCryptfs +ApplyPatch linux-2.6-ecryptfs-overflow-fixes.patch + # relatime ApplyPatch linux-2.6-relatime-by-default.patch @@ -2109,6 +2113,9 @@ fi # and build. %changelog +* Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-218 +- Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) + * Thu Jul 23 2009 Kyle McMartin 2.6.29.6-217 - Apply three patches requested by sgruszka at redhat.com: - iwl3945-release-resources-before-shutting-down.patch From hadess at fedoraproject.org Wed Jul 29 16:48:46 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 16:48:46 +0000 (UTC) Subject: rpms/nautilus-sendto/devel .cvsignore, 1.22, 1.23 nautilus-sendto.spec, 1.78, 1.79 sources, 1.22, 1.23 nst-empathy-new-api-again.patch, 1.2, NONE Message-ID: <20090729164846.0B98D11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/nautilus-sendto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25380 Modified Files: .cvsignore nautilus-sendto.spec sources Removed Files: nst-empathy-new-api-again.patch Log Message: * Wed Jul 29 2009 Bastien Nocera 1.1.6-1 - Update to 1.1.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sendto/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 5 May 2009 10:07:55 -0000 1.22 +++ .cvsignore 29 Jul 2009 16:48:45 -0000 1.23 @@ -1 +1 @@ -nautilus-sendto-1.1.5.tar.bz2 +nautilus-sendto-1.1.6.tar.bz2 Index: nautilus-sendto.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sendto/devel/nautilus-sendto.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- nautilus-sendto.spec 25 Jul 2009 15:48:25 -0000 1.78 +++ nautilus-sendto.spec 29 Jul 2009 16:48:45 -0000 1.79 @@ -1,6 +1,6 @@ Name: nautilus-sendto -Version: 1.1.5 -Release: 5%{?dist} +Version: 1.1.6 +Release: 1%{?dist} Summary: Nautilus context menu for sending files Group: User Interface/Desktops @@ -9,9 +9,6 @@ URL: ftp://ftp.gnome.org/pub/ Source0: http://download.gnome.org/sources/%{name}/1.1/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# http://bugzilla.gnome.org/show_bug.cgi?id=584716 -Patch0: nst-empathy-new-api-again.patch - BuildRequires: gtk2-devel BuildRequires: libglade2-devel BuildRequires: evolution-data-server-devel >= 1.9.1 @@ -45,7 +42,6 @@ additional features. %prep %setup -q -%patch0 -p1 -b .empathy %build %configure @@ -99,6 +95,9 @@ fi %{_mandir}/man1/nautilus-sendto.1.gz %changelog +* Wed Jul 29 2009 Bastien Nocera 1.1.6-1 +- Update to 1.1.6 + * Sat Jul 25 2009 Fedora Release Engineering - 1.1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sendto/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 5 May 2009 10:07:55 -0000 1.22 +++ sources 29 Jul 2009 16:48:45 -0000 1.23 @@ -1 +1 @@ -8a5b342850bb84b63c7df033ef478654 nautilus-sendto-1.1.5.tar.bz2 +aab4afd686f0a701c0b439f262d1410d nautilus-sendto-1.1.6.tar.bz2 --- nst-empathy-new-api-again.patch DELETED --- From s4504kr at fedoraproject.org Wed Jul 29 16:53:33 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 29 Jul 2009 16:53:33 +0000 (UTC) Subject: rpms/kaya/F-11 kaya-0.5.2-conf.patch, NONE, 1.1 kaya.spec, 1.6, 1.7 kaya-0.5.0-conf.patch, 1.1, NONE kaya-0.5.1-ghc.patch, 1.1, NONE kaya-0.5.1-tst.patch, 1.1, NONE Message-ID: <20090729165333.E25B411C00CE@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27313 Modified Files: kaya.spec Added Files: kaya-0.5.2-conf.patch Removed Files: kaya-0.5.0-conf.patch kaya-0.5.1-ghc.patch kaya-0.5.1-tst.patch Log Message: Fix wrong BR kaya-0.5.2-conf.patch: configure.ac | 3 ++- stdlib/Makefile.in | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE kaya-0.5.2-conf.patch --- diff -up kaya-0.5.2/configure.ac.orig kaya-0.5.2/configure.ac --- kaya-0.5.2/configure.ac.orig 2009-04-12 12:02:24.000000000 +0200 +++ kaya-0.5.2/configure.ac 2009-07-09 19:11:20.000000000 +0200 @@ -248,7 +248,7 @@ PGINC="" AC_ARG_DISABLE([postgres], AS_HELP_STRING([--disable-postgres], [Disable Postgres database support]), - [AC_CHECK_HEADER([postgresql/libpq-fe.h],[PGINC="-I/usr/include/postgresql"]) + [AC_CHECK_HEADER([libpq-fe.h],[PGINC="-I/usr/include"]) AC_CHECK_LIB(pq, PQconnectdb, [PGSTUB="" PGMAN="PostgresDB.libs" @@ -275,6 +275,7 @@ AC_ARG_DISABLE([mysql], AS_HELP_STRING([--disable-mysql], [Disable MySQL database support]), [AC_CHECK_HEADER([mysql/mysql.h]) +LIBS="$LIBS -L${libdir}/mysql" AC_CHECK_LIB(mysqlclient, mysql_init, [AC_MSG_NOTICE([Found libmysqlclient, is it recent enough?]) AC_CHECK_LIB(mysqlclient, mysql_stmt_init, diff -up kaya-0.5.2/stdlib/Makefile.in.orig kaya-0.5.2/stdlib/Makefile.in --- kaya-0.5.2/stdlib/Makefile.in.orig 2009-04-12 12:02:24.000000000 +0200 +++ kaya-0.5.2/stdlib/Makefile.in 2009-07-09 19:15:23.000000000 +0200 @@ -87,7 +87,7 @@ Mime.o: Binary.ki Strings.ki IO.ki Regex Compress.o: Binary.ki zlib_glue.h Strings.ki Regex.ki Reflect.o: Builtins.ki Prelude.ki Pickle.o: Prelude.ki Binary.ki Reflect.ki Strings.ki Parse.ki -Plugins.o: dl.h +Plugins.o: dl.h Array.ki Regex.ki KayaDoc.o: ElementTree.ki Strings.ki HTMLDocument.ki Time.ki Regex.ki ElementTreeData.o: Dict.ki ElementTree.o: XMLentities.ki ElementTreeData.ki Regex.ki Index: kaya.spec =================================================================== RCS file: /cvs/extras/rpms/kaya/F-11/kaya.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kaya.spec 5 Mar 2009 21:05:46 -0000 1.6 +++ kaya.spec 29 Jul 2009 16:53:33 -0000 1.7 @@ -3,7 +3,7 @@ %define debug_package %{nil} Name: kaya -Version: 0.5.1 +Version: 0.5.2 Release: 4%{?dist} Summary: A Statically typed, imperative programming-language @@ -11,9 +11,7 @@ Group: Development/Languages License: GPLv2+ and LGPLv2+ URL: http://kayalang.org Source0: http://kayalang.org/src/%{name}-%{version}.tgz -Patch1: kaya-0.5.1-tst.patch -Patch2: kaya-0.5.0-conf.patch -Patch3: kaya-0.5.1-ghc.patch +Patch1: kaya-0.5.2-conf.patch # # ghc is not supported on alpha and ppc64 @@ -23,12 +21,12 @@ ExcludeArch: alpha ppc64 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf -BuildRequires: ghc >= 6.10.0, gc-devel, happy, zlib-devel, gnutls-devel -BuildRequires: libgcrypt-devel, pcre-devel +BuildRequires: ghc >= 6.10.3, gc-devel, happy, zlib-devel, gnutls-devel +BuildRequires: libgcrypt-devel, pcre-devel ghc-editline-devel BuildRequires: postgresql-devel, mysql-devel, sqlite-devel BuildRequires: gd-devel, SDL-devel, mesa-libGL-devel BuildRequires: ncurses-devel, freeglut-devel -BuildRequires: libtool +BuildRequires: libtool, autoconf %description Kaya is a compiled statically typed (ie, types are checked at compile time) @@ -53,12 +51,10 @@ Additional you may find samples for this %prep %setup -q -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%patch1 -p1 -b .orig %build -autoconf +autoreconf CFLAGS=$(echo $RPM_OPT_FLAGS | sed -e 's/\-wp,\-D_FORTIFY_SOURCE=2//g' | \ sed -e 's/\-fstack\-protector//g' ) %configure @@ -99,6 +95,18 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Wed Jul 29 2009 Jochen Schmitt 0.5.2-4 +- Fix wrong BR. + +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 22 2009 Jochen Schmitt 0.5.2-2 +- Bump release + +* Sun Jun 28 2009 Jochen Schmitt 0.5.2-1 +- New upstream release + * Thu Mar 5 2009 Jochen Schmitt 0.5.1-4 - Supporting noarch subpackages --- kaya-0.5.0-conf.patch DELETED --- --- kaya-0.5.1-ghc.patch DELETED --- --- kaya-0.5.1-tst.patch DELETED --- From mtasaka at fedoraproject.org Wed Jul 29 16:57:33 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 29 Jul 2009 16:57:33 +0000 (UTC) Subject: rpms/tzclock/F-10 .cvsignore, 1.6, 1.7 sources, 1.7, 1.8 tzclock.spec, 1.9, 1.10 Message-ID: <20090729165733.7F2FD11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tzclock/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28872/F-10 Modified Files: .cvsignore sources tzclock.spec Log Message: * Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 - 2.7.5 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 23 Mar 2009 17:00:28 -0000 1.6 +++ .cvsignore 29 Jul 2009 16:57:33 -0000 1.7 @@ -1 +1 @@ -tzclock-2.7.4.tar.bz2 +tzclock-2.7.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Mar 2009 17:00:28 -0000 1.7 +++ sources 29 Jul 2009 16:57:33 -0000 1.8 @@ -1 +1 @@ -bd369d591cd9243775e2f4c92cd4af90 tzclock-2.7.4.tar.bz2 +e67fa48eb90b6d91971390a055c2887b tzclock-2.7.5.tar.bz2 Index: tzclock.spec =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-10/tzclock.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tzclock.spec 23 Mar 2009 17:00:28 -0000 1.9 +++ tzclock.spec 29 Jul 2009 16:57:33 -0000 1.10 @@ -1,5 +1,5 @@ Name: tzclock -Version: 2.7.4 +Version: 2.7.5 Release: 1%{?dist} Summary: GTK+ graphical Clock displaying the time around the world @@ -67,6 +67,12 @@ desktop-file-install \ %{_mandir}/man1/* %changelog +* Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 +- 2.7.5 + +* Sat Jul 25 2009 Mamoru Tasaka - 2.7.4-2 +- F-12: Mass rebuild + * Tue Mar 24 2009 Mamoru Tasaka - 2.7.4-1 - 2.7.4 From mtasaka at fedoraproject.org Wed Jul 29 16:57:33 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 29 Jul 2009 16:57:33 +0000 (UTC) Subject: rpms/tzclock/devel .cvsignore, 1.6, 1.7 sources, 1.7, 1.8 tzclock.spec, 1.11, 1.12 Message-ID: <20090729165733.E826911C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tzclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28872/devel Modified Files: .cvsignore sources tzclock.spec Log Message: * Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 - 2.7.5 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tzclock/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 23 Mar 2009 17:00:29 -0000 1.6 +++ .cvsignore 29 Jul 2009 16:57:33 -0000 1.7 @@ -1 +1 @@ -tzclock-2.7.4.tar.bz2 +tzclock-2.7.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/tzclock/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Mar 2009 17:00:29 -0000 1.7 +++ sources 29 Jul 2009 16:57:33 -0000 1.8 @@ -1 +1 @@ -bd369d591cd9243775e2f4c92cd4af90 tzclock-2.7.4.tar.bz2 +e67fa48eb90b6d91971390a055c2887b tzclock-2.7.5.tar.bz2 Index: tzclock.spec =================================================================== RCS file: /cvs/extras/rpms/tzclock/devel/tzclock.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- tzclock.spec 24 Jul 2009 19:50:39 -0000 1.11 +++ tzclock.spec 29 Jul 2009 16:57:33 -0000 1.12 @@ -1,6 +1,6 @@ Name: tzclock -Version: 2.7.4 -Release: 2%{?dist} +Version: 2.7.5 +Release: 1%{?dist} Summary: GTK+ graphical Clock displaying the time around the world Group: Amusements/Graphics @@ -67,6 +67,9 @@ desktop-file-install \ %{_mandir}/man1/* %changelog +* Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 +- 2.7.5 + * Sat Jul 25 2009 Mamoru Tasaka - 2.7.4-2 - F-12: Mass rebuild From mtasaka at fedoraproject.org Wed Jul 29 16:57:33 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 29 Jul 2009 16:57:33 +0000 (UTC) Subject: rpms/tzclock/F-11 .cvsignore, 1.6, 1.7 sources, 1.7, 1.8 tzclock.spec, 1.10, 1.11 Message-ID: <20090729165733.B129011C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tzclock/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28872/F-11 Modified Files: .cvsignore sources tzclock.spec Log Message: * Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 - 2.7.5 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 23 Mar 2009 17:00:29 -0000 1.6 +++ .cvsignore 29 Jul 2009 16:57:33 -0000 1.7 @@ -1 +1 @@ -tzclock-2.7.4.tar.bz2 +tzclock-2.7.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Mar 2009 17:00:29 -0000 1.7 +++ sources 29 Jul 2009 16:57:33 -0000 1.8 @@ -1 +1 @@ -bd369d591cd9243775e2f4c92cd4af90 tzclock-2.7.4.tar.bz2 +e67fa48eb90b6d91971390a055c2887b tzclock-2.7.5.tar.bz2 Index: tzclock.spec =================================================================== RCS file: /cvs/extras/rpms/tzclock/F-11/tzclock.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- tzclock.spec 23 Mar 2009 17:00:29 -0000 1.10 +++ tzclock.spec 29 Jul 2009 16:57:33 -0000 1.11 @@ -1,5 +1,5 @@ Name: tzclock -Version: 2.7.4 +Version: 2.7.5 Release: 1%{?dist} Summary: GTK+ graphical Clock displaying the time around the world @@ -67,6 +67,12 @@ desktop-file-install \ %{_mandir}/man1/* %changelog +* Thu Jul 30 2009 Mamoru Tasaka - 2.7.5-1 +- 2.7.5 + +* Sat Jul 25 2009 Mamoru Tasaka - 2.7.4-2 +- F-12: Mass rebuild + * Tue Mar 24 2009 Mamoru Tasaka - 2.7.4-1 - 2.7.4 From rdieter at fedoraproject.org Wed Jul 29 17:06:53 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 17:06:53 +0000 (UTC) Subject: rpms/GraphicsMagick/devel .cvsignore, 1.8, 1.9 GraphicsMagick.spec, 1.26, 1.27 sources, 1.8, 1.9 Message-ID: <20090729170653.8B14811C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/GraphicsMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv887 Modified Files: .cvsignore GraphicsMagick.spec sources Log Message: * Wed Jul 29 2009 Rex Dieter 1.3.6-1 - GraphicsMagick-1.3.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 1 Jul 2009 15:16:12 -0000 1.8 +++ .cvsignore 29 Jul 2009 17:06:53 -0000 1.9 @@ -1 +1 @@ -GraphicsMagick-1.3.5.tar.bz2 +GraphicsMagick-1.3.6.tar.bz2 Index: GraphicsMagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/GraphicsMagick.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- GraphicsMagick.spec 24 Jul 2009 15:31:28 -0000 1.26 +++ GraphicsMagick.spec 29 Jul 2009 17:06:53 -0000 1.27 @@ -1,8 +1,8 @@ Summary: An ImageMagick fork, offering faster image generation and better quality Name: GraphicsMagick -Version: 1.3.5 -Release: 2%{?dist} +Version: 1.3.6 +Release: 1%{?dist} License: MIT Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/sourceforge/graphicsmagick/GraphicsMagick-%{version}.tar.bz2 @@ -235,6 +235,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Rex Dieter 1.3.6-1 +- GraphicsMagick-1.3.6 + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 1 Jul 2009 15:16:13 -0000 1.8 +++ sources 29 Jul 2009 17:06:53 -0000 1.9 @@ -1 +1 @@ -695d94588437ef3a12b971d7ab672d8f GraphicsMagick-1.3.5.tar.bz2 +3df30799df3b567df98bab7f5b2cc68e GraphicsMagick-1.3.6.tar.bz2 From cebbert at fedoraproject.org Wed Jul 29 17:08:18 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 17:08:18 +0000 (UTC) Subject: rpms/kernel/F-11 personality-fix-per_clear_on_setid.patch, NONE, 1.1.2.1 security-use-mmap_min_addr-indepedently-of-security-models.patch, NONE, 1.1.2.1 config-generic, 1.286, 1.286.2.1 kernel.spec, 1.1679.2.1, 1.1679.2.2 Message-ID: <20090729170818.F2D9311C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1497 Modified Files: Tag: private-fedora-11-2_6_29_6 config-generic kernel.spec Added Files: Tag: private-fedora-11-2_6_29_6 personality-fix-per_clear_on_setid.patch security-use-mmap_min_addr-indepedently-of-security-models.patch Log Message: Fix mmap_min_addr security bugs (CVE-2009-1895) personality-fix-per_clear_on_setid.patch: personality.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE personality-fix-per_clear_on_setid.patch --- >From f9fabcb58a6d26d6efde842d1703ac7cfa9427b6 Mon Sep 17 00:00:00 2001 From: Julien Tinnes Date: Fri, 26 Jun 2009 20:27:40 +0200 Subject: personality: fix PER_CLEAR_ON_SETID (CVE-2009-1895) From: Julien Tinnes commit f9fabcb58a6d26d6efde842d1703ac7cfa9427b6 upstream. We have found that the current PER_CLEAR_ON_SETID mask on Linux doesn't include neither ADDR_COMPAT_LAYOUT, nor MMAP_PAGE_ZERO. The current mask is READ_IMPLIES_EXEC|ADDR_NO_RANDOMIZE. We believe it is important to add MMAP_PAGE_ZERO, because by using this personality it is possible to have the first page mapped inside a process running as setuid root. This could be used in those scenarios: - Exploiting a NULL pointer dereference issue in a setuid root binary - Bypassing the mmap_min_addr restrictions of the Linux kernel: by running a setuid binary that would drop privileges before giving us control back (for instance by loading a user-supplied library), we could get the first page mapped in a process we control. By further using mremap and mprotect on this mapping, we can then completely bypass the mmap_min_addr restrictions. Less importantly, we believe ADDR_COMPAT_LAYOUT should also be added since on x86 32bits it will in practice disable most of the address space layout randomization (only the stack will remain randomized). Signed-off-by: Julien Tinnes Signed-off-by: Tavis Ormandy Acked-by: Christoph Hellwig Acked-by: Kees Cook Acked-by: Eugene Teo [ Shortened lines and fixed whitespace as per Christophs' suggestion ] Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- include/linux/personality.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/include/linux/personality.h +++ b/include/linux/personality.h @@ -40,7 +40,10 @@ enum { * Security-relevant compatibility flags that must be * cleared upon setuid or setgid exec: */ -#define PER_CLEAR_ON_SETID (READ_IMPLIES_EXEC|ADDR_NO_RANDOMIZE) +#define PER_CLEAR_ON_SETID (READ_IMPLIES_EXEC | \ + ADDR_NO_RANDOMIZE | \ + ADDR_COMPAT_LAYOUT | \ + MMAP_PAGE_ZERO) /* * Personality types. security-use-mmap_min_addr-indepedently-of-security-models.patch: include/linux/mm.h | 2 -- include/linux/security.h | 2 ++ kernel/sysctl.c | 2 -- mm/Kconfig | 18 ++++++++++++++++++ mm/mmap.c | 3 +++ security/Kconfig | 22 +--------------------- security/security.c | 3 --- 7 files changed, 24 insertions(+), 28 deletions(-) --- NEW FILE security-use-mmap_min_addr-indepedently-of-security-models.patch --- >From e0a94c2a63f2644826069044649669b5e7ca75d3 Mon Sep 17 00:00:00 2001 From: Christoph Lameter Date: Wed, 3 Jun 2009 16:04:31 -0400 Subject: security: use mmap_min_addr indepedently of security models From: Christoph Lameter commit e0a94c2a63f2644826069044649669b5e7ca75d3 upstream. This patch removes the dependency of mmap_min_addr on CONFIG_SECURITY. It also sets a default mmap_min_addr of 4096. mmapping of addresses below 4096 will only be possible for processes with CAP_SYS_RAWIO. Signed-off-by: Christoph Lameter Acked-by: Eric Paris Looks-ok-by: Linus Torvalds Signed-off-by: James Morris Signed-off-by: Greg Kroah-Hartman --- include/linux/mm.h | 2 -- include/linux/security.h | 2 ++ kernel/sysctl.c | 2 -- mm/Kconfig | 19 +++++++++++++++++++ mm/mmap.c | 3 +++ security/Kconfig | 22 +--------------------- security/security.c | 3 --- 7 files changed, 25 insertions(+), 28 deletions(-) --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -580,12 +580,10 @@ static inline void set_page_links(struct */ static inline unsigned long round_hint_to_min(unsigned long hint) { -#ifdef CONFIG_SECURITY hint &= PAGE_MASK; if (((void *)hint != NULL) && (hint < mmap_min_addr)) return PAGE_ALIGN(mmap_min_addr); -#endif return hint; } --- a/include/linux/security.h +++ b/include/linux/security.h @@ -2197,6 +2197,8 @@ static inline int security_file_mmap(str unsigned long addr, unsigned long addr_only) { + if ((addr < mmap_min_addr) && !capable(CAP_SYS_RAWIO)) + return -EACCES; return 0; } --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1225,7 +1225,6 @@ static struct ctl_table vm_table[] = { .strategy = &sysctl_jiffies, }, #endif -#ifdef CONFIG_SECURITY { .ctl_name = CTL_UNNUMBERED, .procname = "mmap_min_addr", @@ -1234,7 +1233,6 @@ static struct ctl_table vm_table[] = { .mode = 0644, .proc_handler = &proc_doulongvec_minmax, }, -#endif #ifdef CONFIG_NUMA { .ctl_name = CTL_UNNUMBERED, --- a/mm/Kconfig +++ b/mm/Kconfig @@ -216,3 +216,21 @@ config HAVE_MLOCKED_PAGE_BIT config MMU_NOTIFIER bool + +config DEFAULT_MMAP_MIN_ADDR + int "Low address space to protect from user allocation" + default 4096 + help + This is the portion of low virtual memory which should be protected + from userspace allocation. Keeping a user from writing to low pages + can help reduce the impact of kernel NULL pointer bugs. + + For most ia64, ppc64 and x86 users with lots of address space + a value of 65536 is reasonable and should cause no problems. + On arm and other archs it should not be higher than 32768. + Programs which use vm86 functionality would either need additional + permissions from either the LSM or the capabilities module or have + this protection disabled. + + This value can be changed after boot using the + /proc/sys/vm/mmap_min_addr tunable. --- a/mm/mmap.c +++ b/mm/mmap.c @@ -87,6 +87,9 @@ int sysctl_overcommit_ratio = 50; /* def int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT; struct percpu_counter vm_committed_as; +/* amount of vm to protect from userspace access */ +unsigned long mmap_min_addr = CONFIG_DEFAULT_MMAP_MIN_ADDR; + /* * Check that a process has enough memory to allocate a new virtual * mapping. 0 means there is enough memory for the allocation to --- a/security/Kconfig +++ b/security/Kconfig @@ -110,28 +110,8 @@ config SECURITY_ROOTPLUG See for more information about this module. - - If you are unsure how to answer this question, answer N. - -config SECURITY_DEFAULT_MMAP_MIN_ADDR - int "Low address space to protect from user allocation" - depends on SECURITY - default 0 - help - This is the portion of low virtual memory which should be protected - from userspace allocation. Keeping a user from writing to low pages - can help reduce the impact of kernel NULL pointer bugs. - - For most ia64, ppc64 and x86 users with lots of address space - a value of 65536 is reasonable and should cause no problems. - On arm and other archs it should not be higher than 32768. - Programs which use vm86 functionality would either need additional - permissions from either the LSM or the capabilities module or have - this protection disabled. - - This value can be changed after boot using the - /proc/sys/vm/mmap_min_addr tunable. + If you are unsure how to answer this question, answer N. source security/selinux/Kconfig source security/smack/Kconfig --- a/security/security.c +++ b/security/security.c @@ -26,9 +26,6 @@ extern void security_fixup_ops(struct se struct security_operations *security_ops; /* Initialized to NULL */ -/* amount of vm to protect from userspace access */ -unsigned long mmap_min_addr = CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR; - static inline int verify(struct security_operations *ops) { /* verify the security_operations structure exists */ Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-generic,v retrieving revision 1.286 retrieving revision 1.286.2.1 diff -u -p -r1.286 -r1.286.2.1 --- config-generic 1 Jul 2009 02:26:10 -0000 1.286 +++ config-generic 29 Jul 2009 17:08:18 -0000 1.286.2.1 @@ -3279,7 +3279,7 @@ CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE= CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT=y CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 # CONFIG_SECURITY_SMACK is not set CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1679.2.1 retrieving revision 1.1679.2.2 diff -u -p -r1.1679.2.1 -r1.1679.2.2 --- kernel.spec 29 Jul 2009 16:48:25 -0000 1.1679.2.1 +++ kernel.spec 29 Jul 2009 17:08:18 -0000 1.1679.2.2 @@ -810,6 +810,10 @@ Patch11110: via-padlock-cryptodev-2-64bi Patch11120: via-padlock-fix-might-sleep.patch Patch11130: via-hwmon-temp-sensor.patch +# CVE-2009-1895 +Patch12000: security-use-mmap_min_addr-indepedently-of-security-models.patch +Patch12010: personality-fix-per_clear_on_setid.patch + %endif BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root @@ -1516,6 +1520,10 @@ ApplyPatch linux-2.6-usb-remove-low-late ApplyPatch linux-2.6-x86-delay-tsc-barrier.patch +# CVE-2009-1895 +ApplyPatch security-use-mmap_min_addr-indepedently-of-security-models.patch +ApplyPatch personality-fix-per_clear_on_setid.patch + # VIA: add 64-bit padlock support, sdmmc driver, temp sensor driver ApplyPatch via-centaur-merge-32-64-bit-init.patch ApplyPatch via-padlock-fix-might-sleep.patch @@ -2113,7 +2121,10 @@ fi # and build. %changelog -* Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-218 +* Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-217.2.2 +- Fix mmap_min_addr security bugs (CVE-2009-1895) + +* Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-217.2.1 - Fix eCryptfs overflow issues (CVE-2009-2406, CVE-2009-2407) * Thu Jul 23 2009 Kyle McMartin 2.6.29.6-217 From bkearney at fedoraproject.org Wed Jul 29 17:10:17 2009 From: bkearney at fedoraproject.org (Bryan Kearney) Date: Wed, 29 Jul 2009 17:10:17 +0000 (UTC) Subject: rpms/libvirt-java/F-11 import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 libvirt-java.spec, 1.4, 1.5 sources, 1.3, 1.4 libvirt-0.2.1-gcj-javadoc.patch, 1.2, NONE Message-ID: <20090729171017.83D5511C04D6@cvs1.fedora.phx.redhat.com> Author: bkearney Update of /cvs/pkgs/rpms/libvirt-java/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2316/F-11 Modified Files: .cvsignore libvirt-java.spec sources Added Files: import.log Removed Files: libvirt-0.2.1-gcj-javadoc.patch Log Message: Add 0.3.0 which moves the code to JNA --- NEW FILE import.log --- libvirt-java-0_3_0-1_fc10:F-11:libvirt-java-0.3.0-1.fc10.src.rpm:1248887303 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Aug 2008 13:06:32 -0000 1.3 +++ .cvsignore 29 Jul 2009 17:10:16 -0000 1.4 @@ -1,2 +1 @@ -libvirt-java-0.2.0.tar.gz -libvirt-java-0.2.1.tar.gz +libvirt-java-0.3.0.tar.gz Index: libvirt-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-11/libvirt-java.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libvirt-java.spec 25 Feb 2009 19:48:23 -0000 1.4 +++ libvirt-java.spec 29 Jul 2009 17:10:17 -0000 1.5 @@ -1,21 +1,23 @@ Summary: Java bindings for the libvirt virtualization API Name: libvirt-java -Version: 0.2.1 -Release: 2%{?dist} +Version: 0.3.0 +Prefix: libvirt +Release: 1%{?dist} License: LGPLv2+ +BuildArch: noarch Group: Development/Libraries -Source: http://libvirt.org/sources/java/libvirt-java-%{version}.tar.gz +Source: http://libvirt.org/sources/java/%{name}-%{version}.tar.gz URL: http://libvirt.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Requires: jna Requires: libvirt >= 0.4.1 -Requires: java >= 1.5.0 +Requires: java >= 1:1.6.0 Requires: jpackage-utils -BuildRequires: libvirt-devel >= 0.4.1 -BuildRequires: java-devel >= 1.5.0 -BuildRequires: pkgconfig +BuildRequires: ant +BuildRequires: jna +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils -Patch0: libvirt-0.2.1-gcj-javadoc.patch # # the jpackage-utils should provide a %{java_home} macro @@ -28,18 +30,17 @@ Libvirt-java is a base framework allowin API though the Java programming language. It requires libvirt >= 0.4.1 -%package devel -Summary: Compressed Java source files for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: libvirt-devel >= 0.4.1 -Requires: pkgconfig +%package devel +Summary: Compressed Java source files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} -%description devel +%description devel Libvirt-java is a base framework allowing to use libvirt, the virtualization API though the Java programming language. This is the development part needed to build applications with Libvirt-java. + %package javadoc Summary: Java documentation for %{name} Group: Development/Documentation @@ -50,27 +51,19 @@ Requires: jpackage-utils API documentation for %{name}. %prep %setup -q -%patch0 -p0 %build -%configure --with-java-home=%{java_home} -# javac call is not parallelizable, as a result the same command is -# run N times in parallel if %{?_smp_mflags} is set up -make - -# fix up the modification date of generated documentation -find doc -type f -newer ChangeLog | xargs touch -r ChangeLog +ant build docs %install rm -fr %{buildroot} +install -d -m0755 %{buildroot}%{_javadir} +install -d -m0755 %{buildroot}%{_javadocdir}/%{name}-%{version} +cp target/%{prefix}-%{version}.jar %{buildroot}%{_javadir} +%{__ln_s} %{_javadir}/%{prefix}-%{version}.jar %{buildroot}%{_javadir}/%{prefix}.jar +cp -r target/javadoc %{buildroot}%{_javadocdir}/%{name}-%{version} -make %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la -rm -f $RPM_BUILD_ROOT%{_libdir}/*.a - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig %clean rm -rf %{buildroot} @@ -78,29 +71,22 @@ rm -rf %{buildroot} %files %defattr(-,root,root) %doc AUTHORS COPYING NEWS README INSTALL -%{_libdir}/libvirt_jni*.so.* -%{_datadir}/java/*.jar +%{_javadir}/*.jar %files devel %defattr(-,root,root) -%doc src/*.java -%{_libdir}/libvirt_jni*.so -%{_libdir}/pkgconfig/*.pc +%doc src/test/java/test.java + %files javadoc %defattr(-,root,root) -/usr/share/javadoc/%{name}-%{version} +%{_javadocdir}/%{name}-%{version} %changelog -* Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Fri Aug 8 2008 Daniel Veillard - 0.2.1-1.fc10 -- new release 0.2.1 -- avoid leaks -- adds support for storage APIs - -* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1.fc10 +* Wed Jul 29 2009 Bryan Kearney - 0.3.0-1 +- refactored the code to use jna (https://jna.dev.java.net/) + +* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1 - new release 0.2.0 - finished cleanup of APIs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Aug 2008 13:06:32 -0000 1.3 +++ sources 29 Jul 2009 17:10:17 -0000 1.4 @@ -1 +1 @@ -be9924d794ba428552e8715edb3a4b0f libvirt-java-0.2.1.tar.gz +99c18173026f84de4b62345c26e1af7c libvirt-java-0.3.0.tar.gz --- libvirt-0.2.1-gcj-javadoc.patch DELETED --- From transif at fedoraproject.org Wed Jul 29 17:11:52 2009 From: transif at fedoraproject.org (Transifex System User) Date: Wed, 29 Jul 2009 17:11:52 +0000 (UTC) Subject: comps/po nl.po,1.26,1.27 Message-ID: <20090729171152.3076611C00CE@cvs1.fedora.phx.redhat.com> Author: transif Update of /cvs/pkgs/comps/po In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3120/po Modified Files: nl.po Log Message: Sending translation for Dutch Index: nl.po =================================================================== RCS file: /cvs/pkgs/comps/po/nl.po,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- nl.po 17 Jun 2009 12:18:57 -0000 1.26 +++ nl.po 29 Jul 2009 17:11:51 -0000 1.27 @@ -1,20 +1,19 @@ -# translation of comps.HEAD.po to Dutch # Dutch translation of comps # Copyright (C) 2003-2009 The Free Software Foundation, Inc. # This file is distributed under the same license as the comps package. # -# # Huib Kleinhout , 2003. # Peter van Egdom , 2003-2009. # R.E. van der Luit , 2009. +# msgid "" msgstr "" "Project-Id-Version: comps.HEAD.nl\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-15 14:05+0000\n" -"PO-Revision-Date: 2009-06-17 14:21+0200\n" -"Last-Translator: R.E. van der Luit \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2009-07-27 17:47+0200\n" +"Last-Translator: Peter van Egdom \n" +"Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +23,8 @@ msgstr "" #: ../comps-f9.xml.in.h:1 ../comps-f10.xml.in.h:1 ../comps-f11.xml.in.h:1 #: ../comps-f12.xml.in.h:1 msgid "A lightweight desktop environment that works well on low end machines." -msgstr "Een lichte werkomgeving die zeer geschikt is voor minder krachtige machines." +msgstr "" +"Een lichte werkomgeving die zeer geschikt is voor minder krachtige machines." #: ../comps-f9.xml.in.h:2 ../comps-f10.xml.in.h:3 ../comps-f11.xml.in.h:3 #: ../comps-f12.xml.in.h:3 ../comps-el4.xml.in.h:1 ../comps-el5.xml.in.h:1 @@ -427,14 +427,16 @@ msgstr "" #: ../comps-f9.xml.in.h:78 ../comps-f10.xml.in.h:82 ../comps-f11.xml.in.h:93 #: ../comps-f12.xml.in.h:93 -msgid "Install these tools to enable the system to print or act as a print server." +msgid "" +"Install these tools to enable the system to print or act as a print server." msgstr "" "Installeer deze hulpmiddelen om uw systeem te kunnen laten printen of als " "printerserver te laten fungeren." #: ../comps-f9.xml.in.h:79 ../comps-f10.xml.in.h:83 ../comps-f11.xml.in.h:94 #: ../comps-f12.xml.in.h:94 ../comps-el4.xml.in.h:29 ../comps-el5.xml.in.h:32 -msgid "Install this group of packages to use the base graphical (X) user interface." +msgid "" +"Install this group of packages to use the base graphical (X) user interface." msgstr "" "Installeer deze pakketgroep om de basis grafische (X) gebruikersinterface te " "kunnen gebruiken." @@ -738,7 +740,8 @@ msgstr "Servers" #: ../comps-f9.xml.in.h:137 ../comps-f10.xml.in.h:146 #: ../comps-f11.xml.in.h:169 ../comps-f12.xml.in.h:169 #: ../comps-el4.xml.in.h:42 ../comps-el5.xml.in.h:43 -msgid "Simple window managers that aren't part of a larger desktop environment." +msgid "" +"Simple window managers that aren't part of a larger desktop environment." msgstr "" "Eenvoudige window managers die geen deel uitmaken van een grotere " "werkomgeving." @@ -870,7 +873,8 @@ msgstr "Deze toepassingen omvatten offic #: ../comps-f9.xml.in.h:160 ../comps-f10.xml.in.h:173 #: ../comps-f11.xml.in.h:201 ../comps-f12.xml.in.h:201 -msgid "The packages in this group are core libraries needed to develop applications." +msgid "" +"The packages in this group are core libraries needed to develop applications." msgstr "" "De pakketten in deze groep bestaan uit basisbibliotheken die nodig zijn voor " "ontwikkeling van toepassingen." @@ -883,21 +887,26 @@ msgstr "Met deze pakketten kunt u een IM #: ../comps-f9.xml.in.h:162 ../comps-f10.xml.in.h:175 #: ../comps-f11.xml.in.h:203 ../comps-f12.xml.in.h:203 -msgid "These packages allow you to develop applications for the X Window System." -msgstr "Met deze pakketten kunt u toepassingen voor het X Window systeem ontwikkelen." +msgid "" +"These packages allow you to develop applications for the X Window System." +msgstr "" +"Met deze pakketten kunt u toepassingen voor het X Window systeem ontwikkelen." #: ../comps-f9.xml.in.h:163 ../comps-f10.xml.in.h:176 #: ../comps-f11.xml.in.h:204 ../comps-f12.xml.in.h:204 #: ../comps-el4.xml.in.h:53 ../comps-el5.xml.in.h:52 -msgid "These packages are helpful when developing web applications or web pages." +msgid "" +"These packages are helpful when developing web applications or web pages." msgstr "" "Deze pakketten zijn handig bij het ontwikkelen van webapplicaties of " "webpagina's." #: ../comps-f9.xml.in.h:164 ../comps-f10.xml.in.h:177 #: ../comps-f11.xml.in.h:205 ../comps-f12.xml.in.h:205 -msgid "These packages include network-based servers such as DHCP, Kerberos and NIS." -msgstr "Deze pakketten bevatten netwerkgebaseerde servers als DHCP, Kerberos en NIS." +msgid "" +"These packages include network-based servers such as DHCP, Kerberos and NIS." +msgstr "" +"Deze pakketten bevatten netwerkgebaseerde servers als DHCP, Kerberos en NIS." #: ../comps-f9.xml.in.h:165 ../comps-f10.xml.in.h:178 #: ../comps-f11.xml.in.h:206 ../comps-f12.xml.in.h:206 @@ -998,7 +1007,8 @@ msgstr "" #: ../comps-f11.xml.in.h:219 ../comps-f12.xml.in.h:219 #: ../comps-el4.xml.in.h:61 ../comps-el5.xml.in.h:60 msgid "This group includes packages to help you manipulate and scan images." -msgstr "Deze groep bevat pakketten waarmee u afbeeldingen kunt inscannen en bewerken." +msgstr "" +"Deze groep bevat pakketten waarmee u afbeeldingen kunt inscannen en bewerken." #: ../comps-f9.xml.in.h:179 ../comps-f10.xml.in.h:192 #: ../comps-f11.xml.in.h:220 ../comps-f12.xml.in.h:220 @@ -1024,7 +1034,8 @@ msgstr "" #: ../comps-f9.xml.in.h:181 ../comps-f10.xml.in.h:194 #: ../comps-f11.xml.in.h:222 ../comps-f12.xml.in.h:222 #: ../comps-el4.xml.in.h:66 ../comps-el5.xml.in.h:65 -msgid "This group is a collection of tools and resources of Armenian environments." +msgid "" +"This group is a collection of tools and resources of Armenian environments." msgstr "" "Deze groep is een collectie van hulpmiddelen en hulpbronnen voor Armeense " "omgevingen." @@ -1032,7 +1043,8 @@ msgstr "" #: ../comps-f9.xml.in.h:182 ../comps-f10.xml.in.h:195 #: ../comps-f11.xml.in.h:223 ../comps-f12.xml.in.h:223 #: ../comps-el4.xml.in.h:69 ../comps-el5.xml.in.h:69 -msgid "This group is a collection of tools for various hardware specific utilities." +msgid "" +"This group is a collection of tools for various hardware specific utilities." msgstr "" "Deze groep is een collectie van hulpmiddelen voor diverse hardware-" "specifieke gereedschappen." @@ -1050,8 +1062,10 @@ msgstr "" #: ../comps-f9.xml.in.h:184 ../comps-f10.xml.in.h:197 #: ../comps-f11.xml.in.h:226 ../comps-f12.xml.in.h:226 -msgid "This package group allows you to run a DNS name server (BIND) on the system." -msgstr "Met deze pakketgroep kunt u een DNS-naamserver (BIND) op het systeem draaien." +msgid "" +"This package group allows you to run a DNS name server (BIND) on the system." +msgstr "" +"Met deze pakketgroep kunt u een DNS-naamserver (BIND) op het systeem draaien." #: ../comps-f9.xml.in.h:185 ../comps-f10.xml.in.h:198 #: ../comps-f11.xml.in.h:227 ../comps-f12.xml.in.h:227 @@ -1065,12 +1079,14 @@ msgstr "" #: ../comps-f9.xml.in.h:186 ../comps-f10.xml.in.h:199 #: ../comps-f11.xml.in.h:228 ../comps-f12.xml.in.h:228 msgid "This package group contains packages useful for use with MySQL." -msgstr "Deze pakketgroep bevat pakketten die nuttig zijn voor gebruik met MySQL." +msgstr "" +"Deze pakketgroep bevat pakketten die nuttig zijn voor gebruik met MySQL." #: ../comps-f9.xml.in.h:187 ../comps-f10.xml.in.h:200 #: ../comps-f11.xml.in.h:229 ../comps-f12.xml.in.h:229 msgid "This package group includes packages useful for use with Postgresql." -msgstr "Deze pakketgroep bevat pakketten die nuttig zijn voor gebruik met Postgresql." +msgstr "" +"Deze pakketgroep bevat pakketten die nuttig zijn voor gebruik met Postgresql." #: ../comps-f9.xml.in.h:188 ../comps-f10.xml.in.h:201 #: ../comps-f11.xml.in.h:230 ../comps-f12.xml.in.h:230 @@ -1123,7 +1139,8 @@ msgstr "Verschillende kerndelen van het #: ../comps-f11.xml.in.h:242 ../comps-f12.xml.in.h:242 #: ../comps-el5.xml.in.h:73 msgid "Various ways to relax and spend your free time." -msgstr "Verschillende mogelijkheden om te ontspannen en uw vrije tijd te besteden." +msgstr "" +"Verschillende mogelijkheden om te ontspannen en uw vrije tijd te besteden." #: ../comps-f9.xml.in.h:198 ../comps-f10.xml.in.h:212 #: ../comps-f11.xml.in.h:243 ../comps-f12.xml.in.h:243 @@ -1285,15 +1302,15 @@ msgstr "Ondersteuning voor Amazigh" #: ../comps-f11.xml.in.h:13 ../comps-f12.xml.in.h:13 msgid "Azerbaijani Support" -msgstr "Azerbaijani Support" +msgstr "Ondersteuning voor Azerbeidzjaans" #: ../comps-f11.xml.in.h:27 ../comps-f12.xml.in.h:27 msgid "Chichewa Support" -msgstr "Chichewa Support" +msgstr "Ondersteuning voor Chichewa" #: ../comps-f11.xml.in.h:31 ../comps-f12.xml.in.h:31 msgid "Coptic Support" -msgstr "Coptic Support" +msgstr "Ondersteuning voor Koptisch" #: ../comps-f11.xml.in.h:37 ../comps-f12.xml.in.h:37 msgid "Design and Simulation tools for hardware engineers" @@ -1305,7 +1322,7 @@ msgstr "Elektronisch lab" #: ../comps-f11.xml.in.h:58 ../comps-f12.xml.in.h:58 msgid "Fijian Support" -msgstr "Fijian Support" +msgstr "Ondersteuning voor Fijisch" #: ../comps-f11.xml.in.h:61 ../comps-f12.xml.in.h:61 msgid "Font design and packaging" @@ -1321,11 +1338,11 @@ msgstr "Ondersteuning voor Friulisch" #: ../comps-f11.xml.in.h:83 ../comps-f12.xml.in.h:83 msgid "Hiligaynon Support" -msgstr "Hiligaynon Support" +msgstr "Ondersteuning voor Hiligaynon" #: ../comps-f11.xml.in.h:96 ../comps-f12.xml.in.h:96 msgid "Interlingua Support" -msgstr "Interlingua Support" +msgstr "Ondersteuning voor Interlingua" #: ../comps-f11.xml.in.h:109 ../comps-f12.xml.in.h:109 msgid "Kazakh Support" @@ -1341,7 +1358,7 @@ msgstr "Ondersteuning voor Latijn" #: ../comps-f11.xml.in.h:126 ../comps-f12.xml.in.h:126 msgid "Luxembourgish Support" -msgstr "Ondersteuning voor Luxemburg" +msgstr "Ondersteuning voor Luxemburgs" #: ../comps-f11.xml.in.h:130 ../comps-f12.xml.in.h:130 msgid "Malagasy Support" @@ -1473,19 +1490,22 @@ msgid "This group is a collection of net msgstr "Deze groep is een collectie van netwerkservers voor specifieke doelen" #: ../comps-el4.xml.in.h:65 ../comps-el5.xml.in.h:64 -msgid "This group is a collection of tools and resources of Arabic environments." +msgid "" +"This group is a collection of tools and resources of Arabic environments." msgstr "" "Deze groep is een collectie van hulpmiddelen en hulpbronnen voor Arabische " "omgevingen." #: ../comps-el4.xml.in.h:67 ../comps-el5.xml.in.h:67 -msgid "This group is a collection of tools and resources of Hebrew environments." +msgid "" +"This group is a collection of tools and resources of Hebrew environments." msgstr "" "Deze groep is een collectie van hulpmiddelen en hulpbronnen voor Hebreeuwse " "omgevingen." #: ../comps-el4.xml.in.h:68 ../comps-el5.xml.in.h:68 -msgid "This group is a collection of tools and resources of Japanese environments." +msgid "" +"This group is a collection of tools and resources of Japanese environments." msgstr "" "Deze groep is een collectie van hulpmiddelen en hulpbronnen voor Japanse " "omgevingen." @@ -1495,8 +1515,8 @@ msgid "XEmacs" msgstr "XEmacs" #: ../comps-el5.xml.in.h:66 -msgid "This group is a collection of tools and resources of Czech environments." +msgid "" +"This group is a collection of tools and resources of Czech environments." msgstr "" "Deze groep is een collectie van hulpmiddelen en hulpbronnen voor Tsjechische " "omgevingen." - From s4504kr at fedoraproject.org Wed Jul 29 17:12:17 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 29 Jul 2009 17:12:17 +0000 (UTC) Subject: rpms/kaya/F-11 kaya.spec,1.7,1.8 sources,1.3,1.4 Message-ID: <20090729171217.8963C11C00CE@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3317 Modified Files: kaya.spec sources Log Message: Uploading forgotten sources Index: kaya.spec =================================================================== RCS file: /cvs/extras/rpms/kaya/F-11/kaya.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kaya.spec 29 Jul 2009 16:53:33 -0000 1.7 +++ kaya.spec 29 Jul 2009 17:12:17 -0000 1.8 @@ -4,7 +4,7 @@ Name: kaya Version: 0.5.2 -Release: 4%{?dist} +Release: 4%{?dist}.1 Summary: A Statically typed, imperative programming-language Group: Development/Languages @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Wed Jul 29 2009 Jochen Schmitt 0.5.2-4.1 +- Uploading forgotten sources + * Wed Jul 29 2009 Jochen Schmitt 0.5.2-4 - Fix wrong BR. Index: sources =================================================================== RCS file: /cvs/extras/rpms/kaya/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Aug 2008 16:25:45 -0000 1.3 +++ sources 29 Jul 2009 17:12:17 -0000 1.4 @@ -1 +1 @@ -74b56a819ac29f59f8a2ace065784f32 kaya-0.5.1.tgz +df844dc5982b576f5dc11e0e3805d49c kaya-0.5.2.tgz From hguemar at fedoraproject.org Wed Jul 29 17:12:39 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 17:12:39 +0000 (UTC) Subject: rpms/pessulus/F-10 pessulus.spec,1.18,1.19 Message-ID: <20090729171239.50E5D11C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/pessulus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3503 Modified Files: pessulus.spec Log Message: fixed missing BR Index: pessulus.spec =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-10/pessulus.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- pessulus.spec 29 Jul 2009 16:31:50 -0000 1.18 +++ pessulus.spec 29 Jul 2009 17:12:39 -0000 1.19 @@ -3,7 +3,7 @@ Name: pessulus Version: %{basever}.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lockdown editor for GNOME Group: Applications/System @@ -13,9 +13,20 @@ Source0: http://ftp.gnome.org/pub BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gtk2-devel, pygtk2-devel, gnome-python2-devel, gnome-python2-gconf, perl-XML-Parser, pkgconfig -BuildRequires: desktop-file-utils, GConf2-devel, gettext-devel, gnome-python2-desktop -Requires: gnome-python2-gconf, gnome-python2-bugbuddy, gnome-python2-desktop +BuildRequires: gtk2-devel +BuildRequires: pygtk2-devel +BuildRequires: gnome-python2-devel +BuildRequires: GConf2-devel, +BuildRequires: gnome-python2-gconf +BuildRequires: gnome-python2-desktop +BuildRequires: perl-XML-Parser +#BuildRequires: pkgconfig +BuildRequires: gettext-devel +BuildRequires: intltool >= 0.35.0 +BuildRequires: desktop-file-utils +Requires: gnome-python2-gconf +Requires: gnome-python2-bugbuddy +Requires: gnome-python2-desktop %description Pessulus is a lockdown editor for GNOME, written in python. Pessulus @@ -69,6 +80,9 @@ fi %{_datadir}/icons/hicolor/*/apps/pessulus.* %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar -2.24.0-2 +- Fixed missing BR + * Wed Jul 29 2009 Ha?kel Gu?mar - 2.24.0-1 - Updated to 2.24.0 - Remove now unneed pythondir patch (GNOME #549728 fixed upstream) From bkearney at fedoraproject.org Wed Jul 29 17:21:21 2009 From: bkearney at fedoraproject.org (Bryan Kearney) Date: Wed, 29 Jul 2009 17:21:21 +0000 (UTC) Subject: rpms/libvirt-java/F-10 import.log, NONE, 1.1 .cvsignore, 1.3, 1.4 libvirt-java.spec, 1.3, 1.4 sources, 1.3, 1.4 libvirt-0.2.1-gcj-javadoc.patch, 1.2, NONE Message-ID: <20090729172121.C9DF211C00CE@cvs1.fedora.phx.redhat.com> Author: bkearney Update of /cvs/pkgs/rpms/libvirt-java/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6753/F-10 Modified Files: .cvsignore libvirt-java.spec sources Added Files: import.log Removed Files: libvirt-0.2.1-gcj-javadoc.patch Log Message: Version 0.3.0 which moves to JNA --- NEW FILE import.log --- libvirt-java-0_3_0-1_fc10:F-10:libvirt-java-0.3.0-1.fc10.src.rpm:1248887984 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Aug 2008 13:06:32 -0000 1.3 +++ .cvsignore 29 Jul 2009 17:21:21 -0000 1.4 @@ -1,2 +1 @@ -libvirt-java-0.2.0.tar.gz -libvirt-java-0.2.1.tar.gz +libvirt-java-0.3.0.tar.gz Index: libvirt-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-10/libvirt-java.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libvirt-java.spec 8 Aug 2008 13:23:09 -0000 1.3 +++ libvirt-java.spec 29 Jul 2009 17:21:21 -0000 1.4 @@ -1,21 +1,23 @@ Summary: Java bindings for the libvirt virtualization API Name: libvirt-java -Version: 0.2.1 +Version: 0.3.0 +Prefix: libvirt Release: 1%{?dist} License: LGPLv2+ +BuildArch: noarch Group: Development/Libraries -Source: http://libvirt.org/sources/java/libvirt-java-%{version}.tar.gz +Source: http://libvirt.org/sources/java/%{name}-%{version}.tar.gz URL: http://libvirt.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Requires: jna Requires: libvirt >= 0.4.1 -Requires: java >= 1.5.0 +Requires: java >= 1:1.6.0 Requires: jpackage-utils -BuildRequires: libvirt-devel >= 0.4.1 -BuildRequires: java-devel >= 1.5.0 -BuildRequires: pkgconfig +BuildRequires: ant +BuildRequires: jna +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils -Patch0: libvirt-0.2.1-gcj-javadoc.patch # # the jpackage-utils should provide a %{java_home} macro @@ -28,18 +30,17 @@ Libvirt-java is a base framework allowin API though the Java programming language. It requires libvirt >= 0.4.1 -%package devel -Summary: Compressed Java source files for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: libvirt-devel >= 0.4.1 -Requires: pkgconfig +%package devel +Summary: Compressed Java source files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} -%description devel +%description devel Libvirt-java is a base framework allowing to use libvirt, the virtualization API though the Java programming language. This is the development part needed to build applications with Libvirt-java. + %package javadoc Summary: Java documentation for %{name} Group: Development/Documentation @@ -50,27 +51,19 @@ Requires: jpackage-utils API documentation for %{name}. %prep %setup -q -%patch0 -p0 %build -%configure --with-java-home=%{java_home} -# javac call is not parallelizable, as a result the same command is -# run N times in parallel if %{?_smp_mflags} is set up -make - -# fix up the modification date of generated documentation -find doc -type f -newer ChangeLog | xargs touch -r ChangeLog +ant build docs %install rm -fr %{buildroot} +install -d -m0755 %{buildroot}%{_javadir} +install -d -m0755 %{buildroot}%{_javadocdir}/%{name}-%{version} +cp target/%{prefix}-%{version}.jar %{buildroot}%{_javadir} +%{__ln_s} %{_javadir}/%{prefix}-%{version}.jar %{buildroot}%{_javadir}/%{prefix}.jar +cp -r target/javadoc %{buildroot}%{_javadocdir}/%{name}-%{version} -make %{?_smp_mflags} DESTDIR=$RPM_BUILD_ROOT install -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la -rm -f $RPM_BUILD_ROOT%{_libdir}/*.a - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig %clean rm -rf %{buildroot} @@ -78,26 +71,22 @@ rm -rf %{buildroot} %files %defattr(-,root,root) %doc AUTHORS COPYING NEWS README INSTALL -%{_libdir}/libvirt_jni*.so.* -%{_datadir}/java/*.jar +%{_javadir}/*.jar %files devel %defattr(-,root,root) -%doc src/*.java -%{_libdir}/libvirt_jni*.so -%{_libdir}/pkgconfig/*.pc +%doc src/test/java/test.java + %files javadoc %defattr(-,root,root) -/usr/share/javadoc/%{name}-%{version} +%{_javadocdir}/%{name}-%{version} %changelog -* Fri Aug 8 2008 Daniel Veillard - 0.2.1-1.fc10 -- new release 0.2.1 -- avoid leaks -- adds support for storage APIs - -* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1.fc10 +* Wed Jul 29 2009 Bryan Kearney - 0.3.0-1 +- refactored the code to use jna (https://jna.dev.java.net/) + +* Fri Jul 18 2008 Daniel Veillard - 0.2.0-1 - new release 0.2.0 - finished cleanup of APIs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Aug 2008 13:06:32 -0000 1.3 +++ sources 29 Jul 2009 17:21:21 -0000 1.4 @@ -1 +1 @@ -be9924d794ba428552e8715edb3a4b0f libvirt-java-0.2.1.tar.gz +99c18173026f84de4b62345c26e1af7c libvirt-java-0.3.0.tar.gz --- libvirt-0.2.1-gcj-javadoc.patch DELETED --- From davej at fedoraproject.org Wed Jul 29 17:24:50 2009 From: davej at fedoraproject.org (Dave Jones) Date: Wed, 29 Jul 2009 17:24:50 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1670,1.1671 Message-ID: <20090729172450.9117511C00CE@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8211 Modified Files: kernel.spec Log Message: Add support for dracut. (Harald Hoyer) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1670 retrieving revision 1.1671 diff -u -p -r1.1670 -r1.1671 --- kernel.spec 29 Jul 2009 05:57:23 -0000 1.1670 +++ kernel.spec 29 Jul 2009 17:24:50 -0000 1.1671 @@ -100,6 +100,8 @@ Summary: The Linux kernel %define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 1} # Want to build a the vsdo directories installed %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1} +# dracut initrd-generic +%define with_dracut %{?_without_dracut: 0} %{?!_without_dracut: 1} # Build the kernel-doc package, but don't fail the build if it botches. # Here "true" means "continue" and "false" means "fail the build". @@ -488,6 +490,10 @@ BuildRequires: sparse >= 0.4.1 %if %{with_perftool} BuildRequires: elfutils-libelf-devel zlib-devel binutils-devel %endif +%if %{with_dracut} +BuildRequires: dracut-kernel >= 0.7 +BuildRequires: dracut-generic >= 0.7 +%endif BuildConflicts: rhbuildsys(DiskFree) < 500Mb %define fancy_debuginfo 0 @@ -1693,6 +1699,27 @@ make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib make DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts %endif +%if %{with_dracut} +%if !%{with_firmware} +# dracut needs the firmware files + make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install +%endif + for i in $RPM_BUILD_ROOT/lib/modules/*; do + [ -d $i ] || continue + KernelVer=${i##$RPM_BUILD_ROOT/lib/modules/} + depmod -b $RPM_BUILD_ROOT $KernelVer + dracut --strip \ + --fwdir $RPM_BUILD_ROOT/lib/firmware:/lib/firmware \ + -k $i $RPM_BUILD_ROOT/boot/initrd-generic-${KernelVer}.img $KernelVer + rm -fr $i/modules.dep + done +%if !%{with_firmware} +# remove the firmware files, if ! with_firmware + rm -fr $RPM_BUILD_ROOT/lib/firmware +%endif +%endif + + ### ### clean ### @@ -1864,6 +1891,9 @@ fi %endif\ /lib/modules/%{KVERREL}%{?2:.%{2}}/modules.*\ %ghost /boot/initrd-%{KVERREL}%{?2:.%{2}}.img\ +%if %{with_dracut}\ +/boot/initrd-generic-%{KVERREL}%{?2:.%{2}}.img\ +%endif\ %{expand:%%files %{?2:%{2}-}devel}\ %defattr(-,root,root)\ %dir /usr/src/kernels\ @@ -1903,6 +1933,9 @@ fi # and build. %changelog +* Wed Jul 29 2009 Dave Jones +- Add support for dracut. (Harald Hoyer) + * Wed Jul 29 2009 Ben Skeggs - drm-nouveau.patch: nv50/nva0 tiled scanout fixes, nv40 kms fixes From limb at fedoraproject.org Wed Jul 29 17:31:38 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 29 Jul 2009 17:31:38 +0000 (UTC) Subject: rpms/drupal-date/devel .cvsignore, 1.3, 1.4 drupal-date.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090729173138.885BD11C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal-date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10726 Modified Files: .cvsignore drupal-date.spec sources Log Message: DRUPAL-SA-CONTRIB-2009-046 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Nov 2008 15:02:00 -0000 1.3 +++ .cvsignore 29 Jul 2009 17:31:38 -0000 1.4 @@ -1 +1 @@ -date-6.x-2.0-rc4.tar.gz +date-6.x-2.3.tar.gz Index: drupal-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/devel/drupal-date.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- drupal-date.spec 24 Jul 2009 20:34:19 -0000 1.4 +++ drupal-date.spec 29 Jul 2009 17:31:38 -0000 1.5 @@ -1,13 +1,13 @@ %define drupaldir %{_datadir}/drupal Name: drupal-date -Version: 6.x.2.0 -Release: 2.rc4%{?dist}.2 +Version: 6.x.2.3 +Release: 0%{?dist} Summary: This package contains both the Date module and a Date API module Group: Applications/Publishing License: GPLv2 URL: http://drupal.org/project/date -Source0: http://ftp.drupal.org/files/projects/date-6.x-2.0-rc4.tar.gz +Source0: http://ftp.drupal.org/files/projects/date-6.x-2.3.tar.gz Source1: drupal-date-fedora-README.txt BuildArch: noarch @@ -47,6 +47,10 @@ rm -rf %{buildroot} %exclude %{drupaldir}/modules/date/date_php4/ %changelog +* Wed Jul 29 2009 Jon Ciesla - 6.x.2.3-0 +- Update to new version. +- Fix for DRUPAL-SA-CONTRIB-2009-046. + * Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Nov 2008 15:02:00 -0000 1.3 +++ sources 29 Jul 2009 17:31:38 -0000 1.4 @@ -1 +1 @@ -2a99c428d39b85b5fad27754a1592857 date-6.x-2.0-rc4.tar.gz +ac902e259782eeb6f097ce7e9c943efa date-6.x-2.3.tar.gz From hadess at fedoraproject.org Wed Jul 29 17:36:29 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 17:36:29 +0000 (UTC) Subject: comps comps-f12.xml.in,1.60,1.61 Message-ID: <20090729173629.CC25E11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13362 Modified Files: comps-f12.xml.in Log Message: Remove system-config-password from the default install, system-config-users can already change the root password Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- comps-f12.xml.in 28 Jul 2009 14:05:16 -0000 1.60 +++ comps-f12.xml.in 29 Jul 2009 17:36:29 -0000 1.61 @@ -17,7 +17,6 @@ system-config-language system-config-lvm system-config-network - system-config-rootpassword system-config-users cacti dbench @@ -34,6 +33,7 @@ pessulus qtparted system-config-kickstart + system-config-rootpassword yumex
From limb at fedoraproject.org Wed Jul 29 17:38:18 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 29 Jul 2009 17:38:18 +0000 (UTC) Subject: rpms/drupal-date/F-10 drupal-date.spec,1.2,1.3 sources,1.3,1.4 Message-ID: <20090729173818.1FF2011C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal-date/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13995/F-10 Modified Files: drupal-date.spec sources Log Message: DRUPAL-SA-CONTRIB-2009-046. Index: drupal-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/F-10/drupal-date.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- drupal-date.spec 4 Nov 2008 15:02:00 -0000 1.2 +++ drupal-date.spec 29 Jul 2009 17:38:17 -0000 1.3 @@ -1,13 +1,13 @@ %define drupaldir %{_datadir}/drupal Name: drupal-date -Version: 6.x.2.0 -Release: 2.rc4%{?dist} +Version: 6.x.2.3 +Release: 0%{?dist} Summary: This package contains both the Date module and a Date API module Group: Applications/Publishing License: GPLv2 URL: http://drupal.org/project/date -Source0: http://ftp.drupal.org/files/projects/date-6.x-2.0-rc4.tar.gz +Source0: http://ftp.drupal.org/files/projects/date-6.x-2.3.tar.gz Source1: drupal-date-fedora-README.txt BuildArch: noarch @@ -47,6 +47,16 @@ rm -rf %{buildroot} %exclude %{drupaldir}/modules/date/date_php4/ %changelog +* Wed Jul 29 2009 Jon Ciesla - 6.x.2.3-0 +- Update to new version. +- Fix for DRUPAL-SA-CONTRIB-2009-046. + +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Nov 04 2008 Jon Ciesla - 6.x.2.0-2.rc4 - Update to new version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Nov 2008 15:02:00 -0000 1.3 +++ sources 29 Jul 2009 17:38:17 -0000 1.4 @@ -1 +1 @@ -2a99c428d39b85b5fad27754a1592857 date-6.x-2.0-rc4.tar.gz +ac902e259782eeb6f097ce7e9c943efa date-6.x-2.3.tar.gz From limb at fedoraproject.org Wed Jul 29 17:38:18 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 29 Jul 2009 17:38:18 +0000 (UTC) Subject: rpms/drupal-date/F-11 drupal-date.spec,1.3,1.4 sources,1.3,1.4 Message-ID: <20090729173818.4405711C00D5@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal-date/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13995/F-11 Modified Files: drupal-date.spec sources Log Message: DRUPAL-SA-CONTRIB-2009-046. Index: drupal-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/F-11/drupal-date.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drupal-date.spec 24 Feb 2009 12:47:23 -0000 1.3 +++ drupal-date.spec 29 Jul 2009 17:38:18 -0000 1.4 @@ -1,13 +1,13 @@ %define drupaldir %{_datadir}/drupal Name: drupal-date -Version: 6.x.2.0 -Release: 2.rc4%{?dist}.1 +Version: 6.x.2.3 +Release: 0%{?dist} Summary: This package contains both the Date module and a Date API module Group: Applications/Publishing License: GPLv2 URL: http://drupal.org/project/date -Source0: http://ftp.drupal.org/files/projects/date-6.x-2.0-rc4.tar.gz +Source0: http://ftp.drupal.org/files/projects/date-6.x-2.3.tar.gz Source1: drupal-date-fedora-README.txt BuildArch: noarch @@ -47,6 +47,13 @@ rm -rf %{buildroot} %exclude %{drupaldir}/modules/date/date_php4/ %changelog +* Wed Jul 29 2009 Jon Ciesla - 6.x.2.3-0 +- Update to new version. +- Fix for DRUPAL-SA-CONTRIB-2009-046. + +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Nov 2008 15:02:00 -0000 1.3 +++ sources 29 Jul 2009 17:38:18 -0000 1.4 @@ -1 +1 @@ -2a99c428d39b85b5fad27754a1592857 date-6.x-2.0-rc4.tar.gz +ac902e259782eeb6f097ce7e9c943efa date-6.x-2.3.tar.gz From rdieter at fedoraproject.org Wed Jul 29 17:45:00 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 17:45:00 +0000 (UTC) Subject: rpms/GraphicsMagick/devel GraphicsMagick.spec,1.27,1.28 Message-ID: <20090729174500.2342811C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/GraphicsMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16821 Modified Files: GraphicsMagick.spec Log Message: fix PerlMagick build Index: GraphicsMagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/GraphicsMagick.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- GraphicsMagick.spec 29 Jul 2009 17:06:53 -0000 1.27 +++ GraphicsMagick.spec 29 Jul 2009 17:44:59 -0000 1.28 @@ -114,12 +114,14 @@ sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{ sed -i.rpath -e 's|^sys_lib_dlsearch_path_spec="/lib /usr/lib|sys_lib_dlsearch_path_spec="/%{_lib} %{_libdir}|' libtool make %{?_smp_mflags} +make %{?_smp_mflags} perl-build %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} +make install DESTDIR=%{buildroot} -C PerlMagick # perlmagick: fix perl path of demo files %{__perl} -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)' PerlMagick/demo/*.pl From hguemar at fedoraproject.org Wed Jul 29 17:47:18 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 17:47:18 +0000 (UTC) Subject: rpms/pessulus/F-11 .cvsignore, 1.9, 1.10 pessulus.spec, 1.19, 1.20 sources, 1.9, 1.10 Message-ID: <20090729174718.8C41D11C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/pessulus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17831 Modified Files: .cvsignore pessulus.spec sources Log Message: updated to 2.26.2 and removed unneeded patch Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 28 Aug 2008 17:10:52 -0000 1.9 +++ .cvsignore 29 Jul 2009 17:47:18 -0000 1.10 @@ -1 +1 @@ -pessulus-2.23.1.tar.bz2 +pessulus-2.26.2.tar.bz2 Index: pessulus.spec =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-11/pessulus.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pessulus.spec 27 Feb 2009 05:22:57 -0000 1.19 +++ pessulus.spec 29 Jul 2009 17:47:18 -0000 1.20 @@ -1,24 +1,32 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define basever 2.23 +%define basever 2.26 Name: pessulus -Version: %{basever}.1 -Release: 4%{?dist} +Version: %{basever}.2 +Release: 1%{?dist} Summary: A lockdown editor for GNOME Group: Applications/System License: GPLv2+ URL: http://live.gnome.org/Pessulus Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/%{basever}/%{name}-%{version}.tar.bz2 -# Filed upstream: -# http://bugzilla.gnome.org/show_bug.cgi?id=549728 -Patch0: pessulus-2.23.1-use-pythondir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gtk2-devel, pygtk2-devel, gnome-python2-devel, gnome-python2-gconf, perl-XML-Parser, pkgconfig -BuildRequires: desktop-file-utils, GConf2-devel, gettext-devel, gnome-python2-desktop -Requires: gnome-python2-gconf, gnome-python2-bugbuddy, gnome-python2-desktop +BuildRequires: gtk2-devel +BuildRequires: pygtk2-devel +BuildRequires: gnome-python2-devel +BuildRequires: GConf2-devel, +BuildRequires: gnome-python2-gconf +BuildRequires: gnome-python2-desktop +BuildRequires: perl-XML-Parser +#BuildRequires: pkgconfig +BuildRequires: gettext-devel +BuildRequires: intltool >= 0.35.0 +BuildRequires: desktop-file-utils +Requires: gnome-python2-gconf +Requires: gnome-python2-bugbuddy +Requires: gnome-python2-desktop %description Pessulus is a lockdown editor for GNOME, written in python. Pessulus @@ -29,7 +37,6 @@ everyone, e.g. in an internet cafe. %prep %setup -q -%patch0 -p1 -b .use-pythondir %build @@ -73,6 +80,10 @@ fi %{_datadir}/icons/hicolor/*/apps/pessulus.* %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar - 2.26.2-1 +- Updated to 2.24.0 +- Remove now unneed pythondir patch (GNOME #549728 fixed upstream) + * Thu Feb 26 2009 Fedora Release Engineering - 2.23.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/pessulus/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Aug 2008 17:10:52 -0000 1.9 +++ sources 29 Jul 2009 17:47:18 -0000 1.10 @@ -1 +1 @@ -f92bd054660e8bd3e99ef9788ae2678d pessulus-2.23.1.tar.bz2 +255ec0743714b6fc50da796f6bc95009 pessulus-2.26.2.tar.bz2 From langel at fedoraproject.org Wed Jul 29 17:48:48 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Wed, 29 Jul 2009 17:48:48 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-libx11.patch, NONE, 1.1 java-1.6.0-openjdk.spec, 1.128, 1.129 Message-ID: <20090729174848.CC18311C00CE@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18453 Modified Files: java-1.6.0-openjdk.spec Added Files: java-1.6.0-openjdk-libx11.patch Log Message: * Wed Jul 29 2009 Lillian Angel - 1:1.6.0-26.b16 - Added java-1.6.0-openjdk-libx11.patch. java-1.6.0-openjdk-libx11.patch: awt_GraphicsEnv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- NEW FILE java-1.6.0-openjdk-libx11.patch --- --- jdk6-orig/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 +++ awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 @@ -41,7 +41,8 @@ #include #include -#include +#include +#include extern int XShmQueryExtension(); Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- java-1.6.0-openjdk.spec 25 Jul 2009 03:55:06 -0000 1.128 +++ java-1.6.0-openjdk.spec 29 Jul 2009 17:48:48 -0000 1.129 @@ -133,7 +133,7 @@ Name: java-%{javaver}-%{origin} Version: %{javaver}.%{buildver} -Release: 25.%{openjdkver}%{?dist} +Release: 26.%{openjdkver}%{?dist} # java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons, # and this change was brought into RHEL-4. java-1.5.0-ibm packages # also included the epoch in their virtual provides. This created a @@ -172,6 +172,7 @@ Patch6: java-1.6.0-openjdk-sparc-fixes Patch7: java-1.6.0-openjdk-sparc-hotspot.patch Patch8: java-1.6.0-openjdk-netx.patch Patch9: java-1.6.0-openjdk-execvpe.patch +Patch10: java-1.6.0-openjdk-libx11.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -417,6 +418,7 @@ patch -l -p0 < %{PATCH5} patch -l -p0 < %{PATCH7} patch -l -p0 < %{PATCH8} patch -l -p0 < %{PATCH9} +patch -l -p0 < %{PATCH10} make export JAVA_HOME=$(pwd)/%{buildoutputdir}/j2sdk-image @@ -964,6 +966,9 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Wed Jul 29 2009 Lillian Angel - 1:1.6.0-26.b16 +- Added java-1.6.0-openjdk-libx11.patch. + * Fri Jul 24 2009 Fedora Release Engineering - 1:1.6.0.0-25.b16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From langel at fedoraproject.org Wed Jul 29 17:49:28 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Wed, 29 Jul 2009 17:49:28 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-libx11.patch, 1.1, 1.2 Message-ID: <20090729174928.E35B911C00CE@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18699 Modified Files: java-1.6.0-openjdk-libx11.patch Log Message: Fixed patch java-1.6.0-openjdk-libx11.patch: awt_GraphicsEnv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-libx11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-libx11.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- java-1.6.0-openjdk-libx11.patch 29 Jul 2009 17:48:48 -0000 1.1 +++ java-1.6.0-openjdk-libx11.patch 29 Jul 2009 17:49:28 -0000 1.2 @@ -1,5 +1,5 @@ ---- jdk6-orig/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 -+++ awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 +--- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 ++++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 @@ -41,7 +41,8 @@ #include From mschwendt at fedoraproject.org Wed Jul 29 17:50:00 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 29 Jul 2009 17:50:00 +0000 (UTC) Subject: rpms/sylpheed/devel .cvsignore,1.42,1.43 sources,1.42,1.43 Message-ID: <20090729175000.911F211C00CE@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/sylpheed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19026 Modified Files: .cvsignore sources Log Message: Add upstream's detached signature for source tarball - a good habit. * Wed Jul 29 2009 Michael Schwendt - 2.7.0-3 - no ldconfig scriptlets in -devel package - add more/new %doc files Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 27 Jul 2009 19:37:09 -0000 1.42 +++ .cvsignore 29 Jul 2009 17:50:00 -0000 1.43 @@ -1 +1,2 @@ sylpheed-2.7.0.tar.bz2 +sylpheed-2.7.0.tar.bz2.asc Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 27 Jul 2009 19:37:09 -0000 1.42 +++ sources 29 Jul 2009 17:50:00 -0000 1.43 @@ -1 +1,2 @@ 977a8fc56dafc2af948e082f3ac28d9e sylpheed-2.7.0.tar.bz2 +3d82d15ff617d94bee1ec22a12db72bf sylpheed-2.7.0.tar.bz2.asc From mschwendt at fedoraproject.org Wed Jul 29 17:50:31 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 29 Jul 2009 17:50:31 +0000 (UTC) Subject: rpms/sylpheed/devel sylpheed.spec,1.101,1.102 Message-ID: <20090729175031.E1B5F11C04D4@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/sylpheed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19288 Modified Files: sylpheed.spec Log Message: Add upstream's detached signature for source tarball - a good habit. * Wed Jul 29 2009 Michael Schwendt - 2.7.0-3 - no ldconfig scriptlets in -devel package - add more/new %doc files Index: sylpheed.spec =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sylpheed.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- sylpheed.spec 27 Jul 2009 20:53:28 -0000 1.101 +++ sylpheed.spec 29 Jul 2009 17:50:31 -0000 1.102 @@ -7,7 +7,7 @@ Summary: GTK+ based, lightweight, and fast email client Name: sylpheed Version: 2.7.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://sylpheed.sraoss.jp/ Group: Applications/Internet @@ -125,14 +125,12 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig -%post devel -p /sbin/ldconfig -%postun devel -p /sbin/ldconfig - - %files -f %{name}.lang %defattr(-,root,root,-) -%doc COPYING ChangeLog README INSTALL TODO +%doc COPYING COPYING.LIB LICENSE +%doc ChangeLog README INSTALL TODO %doc ChangeLog.ja README.ja INSTALL.ja TODO.ja +%doc README.es %doc AUTHORS NEWS %{_bindir}/sylpheed %{_datadir}/sylpheed/ @@ -144,10 +142,15 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) +%doc PLUGIN.txt PLUGIN.ja.txt %{_includedir}/sylpheed/ %{_libdir}/*.so %changelog +* Wed Jul 29 2009 Michael Schwendt - 2.7.0-3 +- no ldconfig scriptlets in -devel package +- add more/new %doc files + * Mon Jul 27 2009 Itamar Reis Peixoto - 2.7.0-2 - small fix in spec files about libs From hguemar at fedoraproject.org Wed Jul 29 18:09:34 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 29 Jul 2009 18:09:34 +0000 (UTC) Subject: rpms/pessulus/devel .cvsignore, 1.9, 1.10 pessulus.spec, 1.20, 1.21 sources, 1.9, 1.10 Message-ID: <20090729180934.DFEC311C00CE@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/pessulus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27114 Modified Files: .cvsignore pessulus.spec sources Log Message: updated to 2.27.5 and removed unneeded patch Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pessulus/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 28 Aug 2008 17:10:52 -0000 1.9 +++ .cvsignore 29 Jul 2009 18:09:33 -0000 1.10 @@ -1 +1 @@ -pessulus-2.23.1.tar.bz2 +pessulus-2.27.5.tar.bz2 Index: pessulus.spec =================================================================== RCS file: /cvs/extras/rpms/pessulus/devel/pessulus.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- pessulus.spec 26 Jul 2009 17:51:25 -0000 1.20 +++ pessulus.spec 29 Jul 2009 18:09:33 -0000 1.21 @@ -1,24 +1,32 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define basever 2.23 +%define basever 2.27 Name: pessulus -Version: %{basever}.1 -Release: 5%{?dist} +Version: %{basever}.5 +Release: 1%{?dist} Summary: A lockdown editor for GNOME Group: Applications/System License: GPLv2+ URL: http://live.gnome.org/Pessulus Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/%{basever}/%{name}-%{version}.tar.bz2 -# Filed upstream: -# http://bugzilla.gnome.org/show_bug.cgi?id=549728 -Patch0: pessulus-2.23.1-use-pythondir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gtk2-devel, pygtk2-devel, gnome-python2-devel, gnome-python2-gconf, perl-XML-Parser, pkgconfig -BuildRequires: desktop-file-utils, GConf2-devel, gettext-devel, gnome-python2-desktop -Requires: gnome-python2-gconf, gnome-python2-bugbuddy, gnome-python2-desktop +BuildRequires: gtk2-devel +BuildRequires: pygtk2-devel +BuildRequires: gnome-python2-devel +BuildRequires: GConf2-devel, +BuildRequires: gnome-python2-gconf +BuildRequires: gnome-python2-desktop +BuildRequires: perl-XML-Parser +#BuildRequires: pkgconfig +BuildRequires: gettext-devel +BuildRequires: intltool >= 0.35.0 +BuildRequires: desktop-file-utils +Requires: gnome-python2-gconf +Requires: gnome-python2-bugbuddy +Requires: gnome-python2-desktop %description Pessulus is a lockdown editor for GNOME, written in python. Pessulus @@ -29,7 +37,6 @@ everyone, e.g. in an internet cafe. %prep %setup -q -%patch0 -p1 -b .use-pythondir %build @@ -73,6 +80,10 @@ fi %{_datadir}/icons/hicolor/*/apps/pessulus.* %changelog +* Wed Jul 29 2009 Ha?kel Gu?mar - 2.27.5-1 +- Updated to 2.24.0 +- Remove now unneeded pythondir patch (GNOME #549728 fixed upstream) + * Sun Jul 26 2009 Fedora Release Engineering - 2.23.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/pessulus/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Aug 2008 17:10:52 -0000 1.9 +++ sources 29 Jul 2009 18:09:33 -0000 1.10 @@ -1 +1 @@ -f92bd054660e8bd3e99ef9788ae2678d pessulus-2.23.1.tar.bz2 +5813ab0c1f6bba8a8d0be5fd9f3fdc81 pessulus-2.27.5.tar.bz2 From rdieter at fedoraproject.org Wed Jul 29 18:19:20 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 18:19:20 +0000 (UTC) Subject: rpms/OpenEXR/devel OpenEXR.spec,1.27,1.28 Message-ID: <20090729181921.034F111C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30969 Modified Files: OpenEXR.spec Log Message: * Wed Jul 29 2009 Rex Dieter 1.6.1-8 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/devel/OpenEXR.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- OpenEXR.spec 24 Jul 2009 15:42:36 -0000 1.27 +++ OpenEXR.spec 29 Jul 2009 18:19:19 -0000 1.28 @@ -6,7 +6,7 @@ Name: OpenEXR Version: 1.6.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -22,6 +22,12 @@ Provides: openexr = %{version}-%{releas Patch1: OpenEXR-1.6.1-pkgconfig.patch Patch2: openexr-1.6.1-gcc43.patch +## upstream patches +Patch100: openexr-1.6.1-CVS-2009-1720-1.patch +Patch101: openexr-1.6.1-CVS-2009-1720-2.patch +Patch102: openexr-CVE-2009-1721-drew-yao-proposed-fix.patch + + BuildRequires: automake libtool BuildRequires: ilmbase-devel BuildRequires: zlib-devel @@ -44,7 +50,7 @@ Summary: Headers and libraries for build Group: Development/Libraries Obsoletes: openexr-devel < %{version}-%{release} Provides: openexr-devel = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} Requires: ilmbase-devel Requires: pkgconfig %description devel @@ -63,6 +69,12 @@ Group: System Environment/Libraries %patch1 -p1 -b .pkgconfig %patch2 -p1 -b .gcc43 +pushd IlmImf +%patch100 -p2 -b .CVE-2009-1720-1 +%patch101 -p2 -b .CVE-2009-1720-2 +%patch102 -p0 -b .CVE-2009-1721 +popd + # work to remove rpaths, recheck on new releases aclocal -Im4 libtoolize --force @@ -103,15 +115,9 @@ rm -rf rpmdocs/examples/.deps rm -rf $RPM_BUILD_ROOT -%if 0%{?libs} -%post libs -p /sbin/ldconfig +%post %{?libs:libs} -p /sbin/ldconfig -%postun libs -p /sbin/ldconfig -%else -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig -%endif +%postun %{?libs:libs} -p /sbin/ldconfig %files @@ -123,19 +129,23 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %endif %doc AUTHORS ChangeLog LICENSE NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libIlmImf.so.6* %files devel %defattr(-,root,root,-) #omit for now, they're mostly useless, and include multilib conflicts (#342781) #doc rpmdocs/examples -%{_datadir}/aclocal/* +%{_datadir}/aclocal/openexr.m4 %{_includedir}/OpenEXR/* -%{_libdir}/lib*.so -%{_libdir}/pkgconfig/* +%{_libdir}/libIlmImf.so +%{_libdir}/pkgconfig/OpenEXR.pc %changelog +* Wed Jul 29 2009 Rex Dieter 1.6.1-8 +- CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) +- CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From langel at fedoraproject.org Wed Jul 29 18:22:49 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Wed, 29 Jul 2009 18:22:49 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-libx11.patch, 1.2, 1.3 Message-ID: <20090729182249.B390011C00CE@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32320 Modified Files: java-1.6.0-openjdk-libx11.patch Log Message: Updated patch java-1.6.0-openjdk-libx11.patch: awt_GraphicsEnv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: java-1.6.0-openjdk-libx11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-libx11.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- java-1.6.0-openjdk-libx11.patch 29 Jul 2009 17:49:28 -0000 1.2 +++ java-1.6.0-openjdk-libx11.patch 29 Jul 2009 18:22:49 -0000 1.3 @@ -1,11 +1,10 @@ --- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 +++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 -@@ -41,7 +41,8 @@ +@@ -41,7 +41,7 @@ #include #include -#include -+#include +#include extern int XShmQueryExtension(); From lucilanga at fedoraproject.org Wed Jul 29 18:23:25 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 29 Jul 2009 18:23:25 +0000 (UTC) Subject: rpms/evolution-rss/devel .cvsignore, 1.6, 1.7 evolution-rss.spec, 1.27, 1.28 sources, 1.7, 1.8 Message-ID: <20090729182325.1581A11C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/evolution-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32635 Modified Files: .cvsignore evolution-rss.spec sources Log Message: * Wed Jul 29 2009 Lucian Langa - 0.1.3-2.20090729git810564a - update to git snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 19 Nov 2008 15:13:55 -0000 1.6 +++ .cvsignore 29 Jul 2009 18:23:24 -0000 1.7 @@ -1 +1 @@ -evolution-rss-0.1.2.tar.gz +evolution-rss-0.1.3-20090729.tar.gz Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/evolution-rss.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- evolution-rss.spec 24 Jul 2009 22:23:56 -0000 1.27 +++ evolution-rss.spec 29 Jul 2009 18:23:24 -0000 1.28 @@ -1,12 +1,22 @@ +# Tarfile created using git +# git clone git://git.gnome.org/evolution-rss +# git archive --format=tar --prefix=evolution-rss-0.1.3/ %{git_version} | gzip > evolution-rss-0.1.3-%{gitdate}.tar.gz + +%define gitdate 20090729 +%define git_version e4d929a +%define tarfile %{name}-%{version}-%{gitdate}.tar.gz +%define snapshot %{gitdate}git%{git_version} + + Name: evolution-rss Summary: Evolution RSS Reader -Version: 0.1.2 -Release: 10%{?dist} +Version: 0.1.3 +Release: 2.%{snapshot}%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ URL: http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin Source: http://gnome.eu.org/%{name}-%{version}.tar.gz -Patch0: evolution-rss-0.1.2-updateinterval.patch +#Source: %{tarfile} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: evolution @@ -23,15 +33,16 @@ BuildRequires: WebKit-gtk-devel BuildRequires: perl(XML::Parser) BuildRequires: libtool BuildRequires: intltool +BuildRequires: gnome-common %description This is an evolution plugin which enables evolution to read rss feeds. %prep %setup -q -n evolution-rss-%{version} -%patch0 -p0 -b .updateinterval %build +./autogen.sh %configure make %{?_smp_mflags} @@ -83,6 +94,13 @@ fi %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server %changelog +* Wed Jul 29 2009 Lucian Langa - 0.1.3-2.20090729git810564a +- update to git snapshot + +* Wed Jul 15 2009 Lucian Langa - 0.1.3-1 +- drop patch0 - fixed upstream +- update to git snapshot + * Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 19 Nov 2008 15:13:55 -0000 1.7 +++ sources 29 Jul 2009 18:23:24 -0000 1.8 @@ -1 +1 @@ -a7c04b6f330c49785d34f59a19537798 evolution-rss-0.1.2.tar.gz +182a10de49ca492aea64078c2309c4b5 evolution-rss-0.1.3-20090729.tar.gz From mclasen at fedoraproject.org Wed Jul 29 18:27:03 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 18:27:03 +0000 (UTC) Subject: rpms/empathy/devel .cvsignore, 1.35, 1.36 empathy.spec, 1.63, 1.64 sources, 1.35, 1.36 Message-ID: <20090729182703.C3AED11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6271 Modified Files: .cvsignore empathy.spec sources Log Message: 2.27.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 15 Jul 2009 13:46:13 -0000 1.35 +++ .cvsignore 29 Jul 2009 18:27:00 -0000 1.36 @@ -1 +1 @@ -empathy-2.27.4.tar.bz2 +empathy-2.27.5.tar.bz2 Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- empathy.spec 24 Jul 2009 22:09:08 -0000 1.63 +++ empathy.spec 29 Jul 2009 18:27:01 -0000 1.64 @@ -10,8 +10,8 @@ %global network_manager_version 0.7.0 Name: empathy -Version: 2.27.4 -Release: 3%{?dist} +Version: 2.27.5 +Release: 1%{?dist} Summary: Instant Messaging Client for GNOME Group: Applications/Communications @@ -236,6 +236,9 @@ fi %{python_sitearch}/empathy*.so %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 15 Jul 2009 13:46:13 -0000 1.35 +++ sources 29 Jul 2009 18:27:01 -0000 1.36 @@ -1 +1 @@ -16b5b2adc6303b8c924208f33254a770 empathy-2.27.4.tar.bz2 +27d69e0db8874ae40d924dbf80703be6 empathy-2.27.5.tar.bz2 From rdieter at fedoraproject.org Wed Jul 29 18:31:48 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 18:31:48 +0000 (UTC) Subject: rpms/OpenEXR/devel openexr-1.6.1-CVE-2009-1720-1.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-2.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1721.patch, NONE, 1.1 OpenEXR.spec, 1.28, 1.29 Message-ID: <20090729183148.47F9411C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3310 Modified Files: OpenEXR.spec Added Files: openexr-1.6.1-CVE-2009-1720-1.patch openexr-1.6.1-CVE-2009-1720-2.patch openexr-1.6.1-CVE-2009-1721.patch Log Message: * Wed Jul 29 2009 Rex Dieter 1.6.1-8 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) openexr-1.6.1-CVE-2009-1720-1.patch: ImfPreviewImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-1.patch --- diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.cpp --- openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 2006-06-06 00:58:16.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPreviewImage.cpp 2009-07-29 13:27:39.087038617 -0500 @@ -41,6 +41,7 @@ #include #include "Iex.h" +#include namespace Imf { @@ -51,6 +52,9 @@ PreviewImage::PreviewImage (unsigned int { _width = width; _height = height; + if (_height && _width > UINT_MAX / _height || _width * _height > UINT_MAX / sizeof(PreviewRgba)) { + throw Iex::ArgExc ("Invalid height and width."); + } _pixels = new PreviewRgba [_width * _height]; if (pixels) diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.h.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.h openexr-1.6.1-CVE-2009-1720-2.patch: ImfPizCompressor.cpp | 3 +++ ImfRleCompressor.cpp | 3 +++ ImfZipCompressor.cpp | 3 +++ 3 files changed, 9 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-2.patch --- diff -up openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfPizCompressor.cpp --- openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 2007-09-20 23:17:46.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPizCompressor.cpp 2009-07-29 13:15:41.883288491 -0500 @@ -181,6 +181,9 @@ PizCompressor::PizCompressor _channels (hdr.channels()), _channelData (0) { + if ((unsigned) maxScanLineSize > (INT_MAX - 65536 - 8192) / (unsigned) numScanLines) { + throw InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new unsigned short [maxScanLineSize * numScanLines / 2]; _outBuffer = new char [maxScanLineSize * numScanLines + 65536 + 8192]; diff -up openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfRleCompressor.cpp --- openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:06:39.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfRleCompressor.cpp 2009-07-29 13:17:39.505037955 -0500 @@ -164,6 +164,9 @@ RleCompressor::RleCompressor (const Head _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / 3) { + throw Iex::InputExc ("Error: maxScanLineSize * 3 would overflow."); + } _tmpBuffer = new char [maxScanLineSize]; _outBuffer = new char [maxScanLineSize * 3 / 2]; } diff -up openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfZipCompressor.cpp --- openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:07:17.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfZipCompressor.cpp 2009-07-29 13:18:25.223038291 -0500 @@ -58,6 +58,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) { + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new char [maxScanLineSize * numScanLines]; openexr-1.6.1-CVE-2009-1721.patch: ImfAutoArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openexr-1.6.1-CVE-2009-1721.patch --- diff -up openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 openexr-1.6.1/IlmImf/ImfAutoArray.h --- openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 2007-04-23 20:26:56.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfAutoArray.h 2009-07-29 13:22:08.309288375 -0500 @@ -57,7 +57,7 @@ namespace Imf { { public: - AutoArray (): _data (new T [size]) {} + AutoArray (): _data (new T [size]) {memset(_data, 0, size * sizeof(T));} ~AutoArray () {delete [] _data;} operator T * () {return _data;} Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/devel/OpenEXR.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- OpenEXR.spec 29 Jul 2009 18:19:19 -0000 1.28 +++ OpenEXR.spec 29 Jul 2009 18:31:47 -0000 1.29 @@ -23,10 +23,9 @@ Patch1: OpenEXR-1.6.1-pkgconfig.patch Patch2: openexr-1.6.1-gcc43.patch ## upstream patches -Patch100: openexr-1.6.1-CVS-2009-1720-1.patch -Patch101: openexr-1.6.1-CVS-2009-1720-2.patch -Patch102: openexr-CVE-2009-1721-drew-yao-proposed-fix.patch - +Patch100: openexr-1.6.1-CVE-2009-1720-1.patch +Patch101: openexr-1.6.1-CVE-2009-1720-2.patch +Patch102: openexr-1.6.1-CVE-2009-1721.patch BuildRequires: automake libtool BuildRequires: ilmbase-devel @@ -69,11 +68,9 @@ Group: System Environment/Libraries %patch1 -p1 -b .pkgconfig %patch2 -p1 -b .gcc43 -pushd IlmImf -%patch100 -p2 -b .CVE-2009-1720-1 -%patch101 -p2 -b .CVE-2009-1720-2 -%patch102 -p0 -b .CVE-2009-1721 -popd +%patch100 -p1 -b .CVE-2009-1720-1 +%patch101 -p1 -b .CVE-2009-1720-2 +%patch102 -p1 -b .CVE-2009-1721 # work to remove rpaths, recheck on new releases aclocal -Im4 From lucilanga at fedoraproject.org Wed Jul 29 18:38:00 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 29 Jul 2009 18:38:00 +0000 (UTC) Subject: rpms/evolution-rss/devel evolution-rss.spec,1.28,1.29 Message-ID: <20090729183800.307D011C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/evolution-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6423 Modified Files: evolution-rss.spec Log Message: * Wed Jul 29 2009 Lucian Langa - 0.1.3-1.20090729git810564a - drop patch0 - fixed upstream - update to git snapshot Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/evolution-rss.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- evolution-rss.spec 29 Jul 2009 18:23:24 -0000 1.28 +++ evolution-rss.spec 29 Jul 2009 18:37:59 -0000 1.29 @@ -11,7 +11,7 @@ Name: evolution-rss Summary: Evolution RSS Reader Version: 0.1.3 -Release: 2.%{snapshot}%{?dist} +Release: 1.%{snapshot}%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ URL: http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin @@ -94,10 +94,7 @@ fi %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server %changelog -* Wed Jul 29 2009 Lucian Langa - 0.1.3-2.20090729git810564a -- update to git snapshot - -* Wed Jul 15 2009 Lucian Langa - 0.1.3-1 +* Wed Jul 29 2009 Lucian Langa - 0.1.3-1.20090729git810564a - drop patch0 - fixed upstream - update to git snapshot From mclasen at fedoraproject.org Wed Jul 29 18:39:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 18:39:22 +0000 (UTC) Subject: rpms/gvfs/devel .cvsignore, 1.43, 1.44 gvfs.spec, 1.139, 1.140 sources, 1.43, 1.44 Message-ID: <20090729183922.54BDE11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7064 Modified Files: .cvsignore gvfs.spec sources Log Message: 1.3.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 14 Jul 2009 03:08:45 -0000 1.43 +++ .cvsignore 29 Jul 2009 18:39:21 -0000 1.44 @@ -1 +1 @@ -gvfs-1.3.2.tar.bz2 +gvfs-1.3.3.tar.bz2 Index: gvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/gvfs.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- gvfs.spec 27 Jul 2009 12:43:38 -0000 1.139 +++ gvfs.spec 29 Jul 2009 18:39:22 -0000 1.140 @@ -1,7 +1,7 @@ Summary: Backends for the gio framework in GLib Name: gvfs -Version: 1.3.2 -Release: 3%{?dist} +Version: 1.3.3 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -270,6 +270,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Wed Jul 29 2009 Matthias Clasen - 1.3.3-1 +- Update to 1.3.3 + * Mon Jul 27 2009 Matthias Clasen - 1.3.2-3 - Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 14 Jul 2009 03:08:46 -0000 1.43 +++ sources 29 Jul 2009 18:39:22 -0000 1.44 @@ -1 +1 @@ -73a7aecfba767f80146cbd5d37598e8b gvfs-1.3.2.tar.bz2 +2f1c65dcde8fc4d0603e11a8ec3fc178 gvfs-1.3.3.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 18:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:32 +0000 Subject: [pkgdb] pyhton-utmp was added for tuju Message-ID: <20090729184232.8D0E310F897@bastion2.fedora.phx.redhat.com> tibbs has added Package pyhton-utmp with summary Python modules for umtp records tibbs has approved Package pyhton-utmp tibbs has added a Fedora devel branch for pyhton-utmp with an owner of tuju tibbs has approved pyhton-utmp in Fedora devel tibbs has approved Package pyhton-utmp tibbs has set commit to Approved for 107427 on pyhton-utmp (Fedora devel) tibbs has set checkout to Approved for 107427 on pyhton-utmp (Fedora devel) tibbs has set build to Approved for 107427 on pyhton-utmp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From pkgdb at fedoraproject.org Wed Jul 29 18:42:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:33 +0000 Subject: [pkgdb] pyhton-utmp summary updated by tibbs Message-ID: <20090729184233.AF44910F89E@bastion2.fedora.phx.redhat.com> tibbs set package pyhton-utmp summary to Python modules for umtp records To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From pkgdb at fedoraproject.org Wed Jul 29 18:42:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:33 +0000 Subject: [pkgdb] pyhton-utmp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729184233.CB78F10F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for pyhton-utmp tibbs has set commit to Approved for 107427 on pyhton-utmp (Fedora 11) tibbs has set checkout to Approved for 107427 on pyhton-utmp (Fedora 11) tibbs has set build to Approved for 107427 on pyhton-utmp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From pkgdb at fedoraproject.org Wed Jul 29 18:42:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:33 +0000 Subject: [pkgdb] pyhton-utmp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729184233.B81B810F8B1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for pyhton-utmp tibbs has set commit to Approved for 107427 on pyhton-utmp (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on pyhton-utmp (Fedora EPEL 5) tibbs has set build to Approved for 107427 on pyhton-utmp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From tibbs at fedoraproject.org Wed Jul 29 18:42:40 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 18:42:40 +0000 (UTC) Subject: rpms/pyhton-utmp/devel - New directory Message-ID: <20090729184240.5106611C00D5@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pyhton-utmp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFP8554/rpms/pyhton-utmp/devel Log Message: Directory /cvs/pkgs/rpms/pyhton-utmp/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 29 18:42:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:33 +0000 Subject: [pkgdb] pyhton-utmp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729184233.D44B710F8BA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for pyhton-utmp tibbs has set commit to Approved for 107427 on pyhton-utmp (Fedora 10) tibbs has set checkout to Approved for 107427 on pyhton-utmp (Fedora 10) tibbs has set build to Approved for 107427 on pyhton-utmp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From pkgdb at fedoraproject.org Wed Jul 29 18:42:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 18:42:33 +0000 Subject: [pkgdb] pyhton-utmp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729184233.D8B7B10F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for pyhton-utmp tibbs has set commit to Approved for 107427 on pyhton-utmp (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on pyhton-utmp (Fedora EPEL 4) tibbs has set build to Approved for 107427 on pyhton-utmp (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyhton-utmp From tibbs at fedoraproject.org Wed Jul 29 18:42:40 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 18:42:40 +0000 (UTC) Subject: rpms/pyhton-utmp - New directory Message-ID: <20090729184240.2636311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pyhton-utmp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFP8554/rpms/pyhton-utmp Log Message: Directory /cvs/pkgs/rpms/pyhton-utmp added to the repository From tibbs at fedoraproject.org Wed Jul 29 18:42:46 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 18:42:46 +0000 (UTC) Subject: rpms/pyhton-utmp Makefile,NONE,1.1 Message-ID: <20090729184246.A4A0711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pyhton-utmp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFP8554/rpms/pyhton-utmp Added Files: Makefile Log Message: Setup of module pyhton-utmp --- NEW FILE Makefile --- # Top level Makefile for module pyhton-utmp all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 18:42:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 18:42:47 +0000 (UTC) Subject: rpms/pyhton-utmp/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729184247.553A811C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pyhton-utmp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsFP8554/rpms/pyhton-utmp/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pyhton-utmp --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pyhton-utmp # $Id: Makefile,v 1.1 2009/07/29 18:42:46 tibbs Exp $ NAME := pyhton-utmp SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From davej at fedoraproject.org Wed Jul 29 18:43:17 2009 From: davej at fedoraproject.org (Dave Jones) Date: Wed, 29 Jul 2009 18:43:17 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1671,1.1672 Message-ID: <20090729184317.27B8511C00CE@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9047 Modified Files: kernel.spec Log Message: disable dracut bits until the buildreqs are all there Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1671 retrieving revision 1.1672 diff -u -p -r1.1671 -r1.1672 --- kernel.spec 29 Jul 2009 17:24:50 -0000 1.1671 +++ kernel.spec 29 Jul 2009 18:43:16 -0000 1.1672 @@ -101,7 +101,7 @@ Summary: The Linux kernel # Want to build a the vsdo directories installed %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1} # dracut initrd-generic -%define with_dracut %{?_without_dracut: 0} %{?!_without_dracut: 1} +%define with_dracut %{?_without_dracut: 0} %{?!_without_dracut: 0} # Build the kernel-doc package, but don't fail the build if it botches. # Here "true" means "continue" and "false" means "fail the build". From rdieter at fedoraproject.org Wed Jul 29 18:45:19 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 18:45:19 +0000 (UTC) Subject: rpms/OpenEXR/F-11 openexr-1.6.1-CVE-2009-1720-1.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-2.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1721.patch, NONE, 1.1 OpenEXR.spec, 1.26, 1.27 Message-ID: <20090729184519.2FA7111C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9857 Modified Files: OpenEXR.spec Added Files: openexr-1.6.1-CVE-2009-1720-1.patch openexr-1.6.1-CVE-2009-1720-2.patch openexr-1.6.1-CVE-2009-1721.patch Log Message: * Wed Jul 29 2009 Rex Dieter 1.6.1-8 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) openexr-1.6.1-CVE-2009-1720-1.patch: ImfPreviewImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-1.patch --- diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.cpp --- openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 2006-06-06 00:58:16.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPreviewImage.cpp 2009-07-29 13:27:39.087038617 -0500 @@ -41,6 +41,7 @@ #include #include "Iex.h" +#include namespace Imf { @@ -51,6 +52,9 @@ PreviewImage::PreviewImage (unsigned int { _width = width; _height = height; + if (_height && _width > UINT_MAX / _height || _width * _height > UINT_MAX / sizeof(PreviewRgba)) { + throw Iex::ArgExc ("Invalid height and width."); + } _pixels = new PreviewRgba [_width * _height]; if (pixels) diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.h.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.h openexr-1.6.1-CVE-2009-1720-2.patch: ImfPizCompressor.cpp | 3 +++ ImfRleCompressor.cpp | 3 +++ ImfZipCompressor.cpp | 3 +++ 3 files changed, 9 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-2.patch --- diff -up openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfPizCompressor.cpp --- openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 2007-09-20 23:17:46.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPizCompressor.cpp 2009-07-29 13:15:41.883288491 -0500 @@ -181,6 +181,9 @@ PizCompressor::PizCompressor _channels (hdr.channels()), _channelData (0) { + if ((unsigned) maxScanLineSize > (INT_MAX - 65536 - 8192) / (unsigned) numScanLines) { + throw InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new unsigned short [maxScanLineSize * numScanLines / 2]; _outBuffer = new char [maxScanLineSize * numScanLines + 65536 + 8192]; diff -up openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfRleCompressor.cpp --- openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:06:39.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfRleCompressor.cpp 2009-07-29 13:17:39.505037955 -0500 @@ -164,6 +164,9 @@ RleCompressor::RleCompressor (const Head _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / 3) { + throw Iex::InputExc ("Error: maxScanLineSize * 3 would overflow."); + } _tmpBuffer = new char [maxScanLineSize]; _outBuffer = new char [maxScanLineSize * 3 / 2]; } diff -up openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfZipCompressor.cpp --- openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:07:17.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfZipCompressor.cpp 2009-07-29 13:18:25.223038291 -0500 @@ -58,6 +58,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) { + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new char [maxScanLineSize * numScanLines]; openexr-1.6.1-CVE-2009-1721.patch: ImfAutoArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openexr-1.6.1-CVE-2009-1721.patch --- diff -up openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 openexr-1.6.1/IlmImf/ImfAutoArray.h --- openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 2007-04-23 20:26:56.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfAutoArray.h 2009-07-29 13:22:08.309288375 -0500 @@ -57,7 +57,7 @@ namespace Imf { { public: - AutoArray (): _data (new T [size]) {} + AutoArray (): _data (new T [size]) {memset(_data, 0, size * sizeof(T));} ~AutoArray () {delete [] _data;} operator T * () {return _data;} Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/F-11/OpenEXR.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- OpenEXR.spec 23 Feb 2009 22:13:54 -0000 1.26 +++ OpenEXR.spec 29 Jul 2009 18:45:18 -0000 1.27 @@ -6,7 +6,7 @@ Name: OpenEXR Version: 1.6.1 -Release: 6%{?dist} +Release: 8%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -22,6 +22,11 @@ Provides: openexr = %{version}-%{releas Patch1: OpenEXR-1.6.1-pkgconfig.patch Patch2: openexr-1.6.1-gcc43.patch +## upstream patches +Patch100: openexr-1.6.1-CVE-2009-1720-1.patch +Patch101: openexr-1.6.1-CVE-2009-1720-2.patch +Patch102: openexr-1.6.1-CVE-2009-1721.patch + BuildRequires: automake libtool BuildRequires: ilmbase-devel BuildRequires: zlib-devel @@ -44,7 +49,7 @@ Summary: Headers and libraries for build Group: Development/Libraries Obsoletes: openexr-devel < %{version}-%{release} Provides: openexr-devel = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} Requires: ilmbase-devel Requires: pkgconfig %description devel @@ -63,6 +68,10 @@ Group: System Environment/Libraries %patch1 -p1 -b .pkgconfig %patch2 -p1 -b .gcc43 +%patch100 -p1 -b .CVE-2009-1720-1 +%patch101 -p1 -b .CVE-2009-1720-2 +%patch102 -p1 -b .CVE-2009-1721 + # work to remove rpaths, recheck on new releases aclocal -Im4 libtoolize --force @@ -103,15 +112,9 @@ rm -rf rpmdocs/examples/.deps rm -rf $RPM_BUILD_ROOT -%if 0%{?libs} -%post libs -p /sbin/ldconfig +%post %{?libs:libs} -p /sbin/ldconfig -%postun libs -p /sbin/ldconfig -%else -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig -%endif +%postun %{?libs:libs} -p /sbin/ldconfig %files @@ -123,19 +126,26 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %endif %doc AUTHORS ChangeLog LICENSE NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libIlmImf.so.6* %files devel %defattr(-,root,root,-) #omit for now, they're mostly useless, and include multilib conflicts (#342781) #doc rpmdocs/examples -%{_datadir}/aclocal/* +%{_datadir}/aclocal/openexr.m4 %{_includedir}/OpenEXR/* -%{_libdir}/lib*.so -%{_libdir}/pkgconfig/* +%{_libdir}/libIlmImf.so +%{_libdir}/pkgconfig/OpenEXR.pc %changelog +* Wed Jul 29 2009 Rex Dieter 1.6.1-8 +- CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) +- CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Wed Jul 29 18:45:21 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 18:45:21 +0000 (UTC) Subject: rpms/gnome-applets/devel .cvsignore, 1.82, 1.83 gnome-applets.spec, 1.350, 1.351 sources, 1.92, 1.93 Message-ID: <20090729184521.8E87811C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9825 Modified Files: .cvsignore gnome-applets.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/.cvsignore,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- .cvsignore 17 Jun 2009 17:56:32 -0000 1.82 +++ .cvsignore 29 Jul 2009 18:45:21 -0000 1.83 @@ -1 +1 @@ -gnome-applets-2.27.3.tar.bz2 +gnome-applets-2.27.4.tar.bz2 Index: gnome-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/gnome-applets.spec,v retrieving revision 1.350 retrieving revision 1.351 diff -u -p -r1.350 -r1.351 --- gnome-applets.spec 25 Jul 2009 00:34:41 -0000 1.350 +++ gnome-applets.spec 29 Jul 2009 18:45:21 -0000 1.351 @@ -33,8 +33,8 @@ Summary: Small applications for the GNOME panel Name: gnome-applets -Version: 2.27.3 -Release: 6%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -348,6 +348,9 @@ fi %changelog +* Wed Jul 29 2009 Matthias Clasen - 1:2.27.4-1 +- Update to 2.27.4 + * Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/sources,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- sources 17 Jun 2009 17:56:33 -0000 1.92 +++ sources 29 Jul 2009 18:45:21 -0000 1.93 @@ -1,2 +1 @@ -04ce905d42f1e1d3c472b28463443dda gnome-applets-2.27.3.tar.bz2 -ccd89d3a58076214e2f34216388c9621 gnome-applets-2.9.3.1-modemlights.tar.bz2 +ee2f2c158eda2605ba12ab0283060eb1 gnome-applets-2.27.4.tar.bz2 From rdieter at fedoraproject.org Wed Jul 29 18:45:54 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 18:45:54 +0000 (UTC) Subject: rpms/OpenEXR/F-10 openexr-1.6.1-CVE-2009-1720-1.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-2.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1721.patch, NONE, 1.1 OpenEXR.spec, 1.24, 1.25 Message-ID: <20090729184554.DBB2011C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10174 Modified Files: OpenEXR.spec Added Files: openexr-1.6.1-CVE-2009-1720-1.patch openexr-1.6.1-CVE-2009-1720-2.patch openexr-1.6.1-CVE-2009-1721.patch Log Message: * Wed Jul 29 2009 Rex Dieter 1.6.1-8 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) openexr-1.6.1-CVE-2009-1720-1.patch: ImfPreviewImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-1.patch --- diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.cpp --- openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 2006-06-06 00:58:16.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPreviewImage.cpp 2009-07-29 13:27:39.087038617 -0500 @@ -41,6 +41,7 @@ #include #include "Iex.h" +#include namespace Imf { @@ -51,6 +52,9 @@ PreviewImage::PreviewImage (unsigned int { _width = width; _height = height; + if (_height && _width > UINT_MAX / _height || _width * _height > UINT_MAX / sizeof(PreviewRgba)) { + throw Iex::ArgExc ("Invalid height and width."); + } _pixels = new PreviewRgba [_width * _height]; if (pixels) diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.h.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.h openexr-1.6.1-CVE-2009-1720-2.patch: ImfPizCompressor.cpp | 3 +++ ImfRleCompressor.cpp | 3 +++ ImfZipCompressor.cpp | 3 +++ 3 files changed, 9 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-2.patch --- diff -up openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfPizCompressor.cpp --- openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 2007-09-20 23:17:46.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPizCompressor.cpp 2009-07-29 13:15:41.883288491 -0500 @@ -181,6 +181,9 @@ PizCompressor::PizCompressor _channels (hdr.channels()), _channelData (0) { + if ((unsigned) maxScanLineSize > (INT_MAX - 65536 - 8192) / (unsigned) numScanLines) { + throw InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new unsigned short [maxScanLineSize * numScanLines / 2]; _outBuffer = new char [maxScanLineSize * numScanLines + 65536 + 8192]; diff -up openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfRleCompressor.cpp --- openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:06:39.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfRleCompressor.cpp 2009-07-29 13:17:39.505037955 -0500 @@ -164,6 +164,9 @@ RleCompressor::RleCompressor (const Head _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / 3) { + throw Iex::InputExc ("Error: maxScanLineSize * 3 would overflow."); + } _tmpBuffer = new char [maxScanLineSize]; _outBuffer = new char [maxScanLineSize * 3 / 2]; } diff -up openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfZipCompressor.cpp --- openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:07:17.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfZipCompressor.cpp 2009-07-29 13:18:25.223038291 -0500 @@ -58,6 +58,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) { + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new char [maxScanLineSize * numScanLines]; openexr-1.6.1-CVE-2009-1721.patch: ImfAutoArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openexr-1.6.1-CVE-2009-1721.patch --- diff -up openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 openexr-1.6.1/IlmImf/ImfAutoArray.h --- openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 2007-04-23 20:26:56.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfAutoArray.h 2009-07-29 13:22:08.309288375 -0500 @@ -57,7 +57,7 @@ namespace Imf { { public: - AutoArray (): _data (new T [size]) {} + AutoArray (): _data (new T [size]) {memset(_data, 0, size * sizeof(T));} ~AutoArray () {delete [] _data;} operator T * () {return _data;} Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/F-10/OpenEXR.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- OpenEXR.spec 9 May 2008 16:52:15 -0000 1.24 +++ OpenEXR.spec 29 Jul 2009 18:45:54 -0000 1.25 @@ -6,7 +6,7 @@ Name: OpenEXR Version: 1.6.1 -Release: 4%{?dist} +Release: 8%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -22,9 +22,15 @@ Provides: openexr = %{version}-%{releas Patch1: OpenEXR-1.6.1-pkgconfig.patch Patch2: openexr-1.6.1-gcc43.patch +## upstream patches +Patch100: openexr-1.6.1-CVE-2009-1720-1.patch +Patch101: openexr-1.6.1-CVE-2009-1720-2.patch +Patch102: openexr-1.6.1-CVE-2009-1721.patch + BuildRequires: automake libtool BuildRequires: ilmbase-devel BuildRequires: zlib-devel +BuildRequires: pkgconfig %if 0%{?libs} Requires: %{name}-libs = %{version}-%{release} @@ -43,7 +49,7 @@ Summary: Headers and libraries for build Group: Development/Libraries Obsoletes: openexr-devel < %{version}-%{release} Provides: openexr-devel = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} Requires: ilmbase-devel Requires: pkgconfig %description devel @@ -62,6 +68,10 @@ Group: System Environment/Libraries %patch1 -p1 -b .pkgconfig %patch2 -p1 -b .gcc43 +%patch100 -p1 -b .CVE-2009-1720-1 +%patch101 -p1 -b .CVE-2009-1720-2 +%patch102 -p1 -b .CVE-2009-1721 + # work to remove rpaths, recheck on new releases aclocal -Im4 libtoolize --force @@ -102,15 +112,9 @@ rm -rf rpmdocs/examples/.deps rm -rf $RPM_BUILD_ROOT -%if 0%{?libs} -%post libs -p /sbin/ldconfig +%post %{?libs:libs} -p /sbin/ldconfig -%postun libs -p /sbin/ldconfig -%else -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig -%endif +%postun %{?libs:libs} -p /sbin/ldconfig %files @@ -122,19 +126,32 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %endif %doc AUTHORS ChangeLog LICENSE NEWS README -%{_libdir}/lib*.so.* +%{_libdir}/libIlmImf.so.6* %files devel %defattr(-,root,root,-) #omit for now, they're mostly useless, and include multilib conflicts (#342781) #doc rpmdocs/examples -%{_datadir}/aclocal/* +%{_datadir}/aclocal/openexr.m4 %{_includedir}/OpenEXR/* -%{_libdir}/lib*.so -%{_libdir}/pkgconfig/* +%{_libdir}/libIlmImf.so +%{_libdir}/pkgconfig/OpenEXR.pc %changelog +* Wed Jul 29 2009 Rex Dieter 1.6.1-8 +- CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) +- CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) + +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Dec 12 2008 Caol?n McNamara 1.6.1-5 +- rebuild to get provides pkgconfig(OpenEXR) + * Fri May 09 2008 Rex Dieter 1.6.1-4 - drop: Obsoletes: OpenEXR-utils (see OpenEXR_Viewers review, bug #428228c3) From lucilanga at fedoraproject.org Wed Jul 29 18:46:17 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 29 Jul 2009 18:46:17 +0000 (UTC) Subject: rpms/evolution-rss/devel evolution-rss.spec,1.29,1.30 Message-ID: <20090729184617.C1AC611C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/evolution-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10392 Modified Files: evolution-rss.spec Log Message: fix source0 Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/evolution-rss.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- evolution-rss.spec 29 Jul 2009 18:37:59 -0000 1.29 +++ evolution-rss.spec 29 Jul 2009 18:46:17 -0000 1.30 @@ -15,8 +15,7 @@ Release: 1.%{snapshot}%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ URL: http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin -Source: http://gnome.eu.org/%{name}-%{version}.tar.gz -#Source: %{tarfile} +Source: %{tarfile} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: evolution From scop at fedoraproject.org Wed Jul 29 18:48:13 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 29 Jul 2009 18:48:13 +0000 (UTC) Subject: rpms/colordiff/devel colordiff-1.0.9-cdiff-xz.patch, 1.1, 1.2 colordiff.spec, 1.17, 1.18 Message-ID: <20090729184813.5552F11C00CE@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/colordiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11248 Modified Files: colordiff-1.0.9-cdiff-xz.patch colordiff.spec Log Message: * Wed Jul 29 2009 Ville Skytt? - 1.0.9-3 - Update cdiff xz patch to use xz also for lzma files. colordiff-1.0.9-cdiff-xz.patch: cdiff.sh | 8 ++++---- cdiff.xml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) Index: colordiff-1.0.9-cdiff-xz.patch =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/colordiff-1.0.9-cdiff-xz.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- colordiff-1.0.9-cdiff-xz.patch 20 Jul 2009 21:25:12 -0000 1.1 +++ colordiff-1.0.9-cdiff-xz.patch 29 Jul 2009 18:48:12 -0000 1.2 @@ -1,6 +1,6 @@ diff -up colordiff-1.0.9/cdiff.sh~ colordiff-1.0.9/cdiff.sh --- colordiff-1.0.9/cdiff.sh~ 2009-01-26 22:17:47.000000000 +0200 -+++ colordiff-1.0.9/cdiff.sh 2009-07-21 00:20:05.000000000 +0300 ++++ colordiff-1.0.9/cdiff.sh 2009-07-29 21:36:42.000000000 +0300 @@ -2,7 +2,7 @@ # cdiff.sh - Convenience wrapper for colordiff @@ -10,17 +10,22 @@ diff -up colordiff-1.0.9/cdiff.sh~ color # Based on cdiff version 1.4 by eivind at FreeBSD.org # # This program is free software; you can redistribute it and/or -@@ -24,6 +24,7 @@ +@@ -23,9 +23,9 @@ + while [ "$1" != "" ]; do file=`echo "$1" | perl -pe 's|^file:/+|/|i'` case "$file" in - *.bz2) cat="bzip2 -dcf" ;; -+ *.xz) cat="xz -dc" ;; - *.lzma) cat="lzma -dc" ;; - *) cat="gzip -dcf" ;; +- *.bz2) cat="bzip2 -dcf" ;; +- *.lzma) cat="lzma -dc" ;; +- *) cat="gzip -dcf" ;; ++ *.bz2) cat="bzip2 -dcf" ;; ++ *.xz|*.lzma) cat="xz -dc" ;; ++ *) cat="gzip -dcf" ;; esac + case `echo "$file" | perl -ne 'print lc $_'` in + http:*|https:*|ftp:*) diff -up colordiff-1.0.9/cdiff.xml~ colordiff-1.0.9/cdiff.xml --- colordiff-1.0.9/cdiff.xml~ 2009-01-26 22:16:44.000000000 +0200 -+++ colordiff-1.0.9/cdiff.xml 2009-07-21 00:11:58.000000000 +0300 ++++ colordiff-1.0.9/cdiff.xml 2009-07-29 21:37:08.000000000 +0300 @@ -35,9 +35,9 @@ in a URL or a file, e.g. cdiff http://some.url.com/foo/thing.patch Index: colordiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/colordiff.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- colordiff.spec 24 Jul 2009 19:15:01 -0000 1.17 +++ colordiff.spec 29 Jul 2009 18:48:13 -0000 1.18 @@ -1,6 +1,6 @@ Name: colordiff Version: 1.0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Color terminal highlighter for diff files Group: Applications/Text @@ -16,7 +16,6 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch # xmlto, docbook-dtds for patch1 BuildRequires: xmlto, docbook-dtd412-xml -Requires: lzma Requires: xz Requires: bzip2 Requires: gzip @@ -63,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Ville Skytt? - 1.0.9-3 +- Update cdiff xz patch to use xz also for lzma files. + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Wed Jul 29 18:51:07 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 18:51:07 +0000 (UTC) Subject: rpms/gnome-applets/devel sources,1.93,1.94 Message-ID: <20090729185107.3D0DB11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12290 Modified Files: sources Log Message: fix sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/sources,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- sources 29 Jul 2009 18:45:21 -0000 1.93 +++ sources 29 Jul 2009 18:51:07 -0000 1.94 @@ -1 +1,2 @@ ee2f2c158eda2605ba12ab0283060eb1 gnome-applets-2.27.4.tar.bz2 +ccd89d3a58076214e2f34216388c9621 gnome-applets-2.9.3.1-modemlights.tar.bz2 From lucilanga at fedoraproject.org Wed Jul 29 18:53:05 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 29 Jul 2009 18:53:05 +0000 (UTC) Subject: rpms/evolution-rss/devel evolution-rss.spec,1.30,1.31 Message-ID: <20090729185305.049D211C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/evolution-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13017 Modified Files: evolution-rss.spec Log Message: fix release number Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/evolution-rss.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- evolution-rss.spec 29 Jul 2009 18:46:17 -0000 1.30 +++ evolution-rss.spec 29 Jul 2009 18:53:04 -0000 1.31 @@ -5,7 +5,7 @@ %define gitdate 20090729 %define git_version e4d929a %define tarfile %{name}-%{version}-%{gitdate}.tar.gz -%define snapshot %{gitdate}git%{git_version} +%define snapshot %{gitdate}git Name: evolution-rss @@ -93,7 +93,7 @@ fi %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server %changelog -* Wed Jul 29 2009 Lucian Langa - 0.1.3-1.20090729git810564a +* Wed Jul 29 2009 Lucian Langa - 0.1.3-1.20090729git - drop patch0 - fixed upstream - update to git snapshot From nhorman at fedoraproject.org Wed Jul 29 18:54:46 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 18:54:46 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_dracut_modules - New directory Message-ID: <20090729185446.8417011C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_dracut_modules In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13742/kdump_dracut_modules Log Message: Directory /cvs/extras/rpms/kexec-tools/devel/kdump_dracut_modules added to the repository From hadess at fedoraproject.org Wed Jul 29 18:55:36 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 18:55:36 +0000 (UTC) Subject: comps comps-f12.xml.in,1.61,1.62 Message-ID: <20090729185536.6707C11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13988 Modified Files: comps-f12.xml.in Log Message: Make alacarte optional, who needs menu editing Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- comps-f12.xml.in 29 Jul 2009 17:36:29 -0000 1.61 +++ comps-f12.xml.in 29 Jul 2009 18:55:36 -0000 1.62 @@ -2442,7 +2442,6 @@ yelp ibus-gtk scim-bridge-gtk - alacarte at-spi brasero-nautilus bug-buddy @@ -2489,6 +2488,7 @@ vino xdg-user-dirs-gtk zenity + alacarte avant-window-navigator beagle-evolution beagle-gnome From mclasen at fedoraproject.org Wed Jul 29 18:57:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 18:57:18 +0000 (UTC) Subject: rpms/empathy/devel empathy.spec,1.64,1.65 Message-ID: <20090729185718.AC5D711C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14488 Modified Files: empathy.spec Log Message: drop upstreamed patch Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- empathy.spec 29 Jul 2009 18:27:01 -0000 1.64 +++ empathy.spec 29 Jul 2009 18:57:18 -0000 1.65 @@ -26,9 +26,6 @@ Source1: %{name}-README.ConnectionManage ## http://bugzilla.gnome.org/show_bug.cgi?id=577863 Patch1: %{name}-broken-pkgconfig.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=588810 -Patch2: button-images.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: enchant-devel >= %{enchant_version} @@ -128,7 +125,6 @@ bindings to the libempathy and libempath %prep %setup -q %patch1 -p1 -b .pkgconfig -%patch2 -p1 -b .button-images # force these to be regenerated rm data/empathy.desktop From tuxbrewr at fedoraproject.org Wed Jul 29 18:58:00 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 29 Jul 2009 18:58:00 +0000 (UTC) Subject: rpms/kmess/devel kmess.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729185800.607F611C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14826 Modified Files: .cvsignore sources Added Files: kmess.spec Log Message: Initial Build --- NEW FILE kmess.spec --- Name: kmess Version: 2.0 Release: 1%{?dist} Summary: A MSN Messenger Clone Group: Applications/Internet License: GPLv2+ URL: http://www.kmess.org Source0: kmess-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kde-filesystem >= 4 BuildRequires: kdelibs4-devel >= 4.2 BuildRequires: cmake BuildRequires: qca2-devel BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: qca-ossl BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: giflib-devel # removed konqueror integration till the bugs are worked out #BuildRequires: kdebase-devel Requires: qca2 Requires: qca-ossl %description KMess is an alternative MSN Messenger chat client for Linux. It allows Linux users to chat with friends who use MSN Messenger in Windows or Mac OS. The strength of KMess is it's integration with the KDE desktop environment, focus on MSN Messenger specific features and an easy-to-use interface. %prep %setup -q -n %{name}-%{version} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make VERBOSE=1 %{?_smp_mflags} -C %{_target_platform} %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} touch kmess.lang %find_lang kmess || echo "NOTICE: translations missing!" %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &> /dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : %files -f kmess.lang %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING README %{_kde4_datadir}/config/kmesschatstyles.knsrc %{_kde4_bindir}/kmess %{_kde4_datadir}/applications/kde4/kmess.desktop %{_kde4_datadir}/doc/HTML/en/kmess/* %{_kde4_datadir}/emoticons/KMess-new/* %{_kde4_appsdir}/kmess/* %{_kde4_datadir}/icons/hicolor/*/apps/kmess.png %{_kde4_datadir}/icons/hicolor/scalable/apps/kmess.svgz %{_kde4_datadir}/sounds/kmess* %changelog * Sun Jul 26 2009 Steven M. Parrish - 2.0-1 - 1st build of official 2.0 release * Wed May 27 2009 Florian Sievert - 2.0beta2-4 - Fixing meta information errors * Wed May 27 2009 Florian Sievert - 2.0beta2-3 - Adding qca-ossl as dependency * Wed May 27 2009 Florian Sievert - 2.0beta2-2 - Fixing some minor mistakes of the meta informations * Wed May 27 2009 Florian Sievert - 2.0beta2-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kmess/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:53:12 -0000 1.1 +++ .cvsignore 29 Jul 2009 18:58:00 -0000 1.2 @@ -0,0 +1 @@ +kmess-2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kmess/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:53:12 -0000 1.1 +++ sources 29 Jul 2009 18:58:00 -0000 1.2 @@ -0,0 +1 @@ +619781ad93c9848672b17ecc8536545c kmess-2.0.tar.gz From nhorman at fedoraproject.org Wed Jul 29 19:11:56 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 19:11:56 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_dracut_modules/99kdumpbase - New directory Message-ID: <20090729191156.ED1C211C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_dracut_modules/99kdumpbase In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20172/99kdumpbase Log Message: Directory /cvs/extras/rpms/kexec-tools/devel/kdump_dracut_modules/99kdumpbase added to the repository From cebbert at fedoraproject.org Wed Jul 29 19:17:25 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 19:17:25 +0000 (UTC) Subject: rpms/kernel/F-11 add-fno-delete-null-pointer-checks-to-gcc-cflags.patch, NONE, 1.1.2.1 kernel.spec, 1.1679.2.2, 1.1679.2.3 Message-ID: <20090729191725.8111E11C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21777 Modified Files: Tag: private-fedora-11-2_6_29_6 kernel.spec Added Files: Tag: private-fedora-11-2_6_29_6 add-fno-delete-null-pointer-checks-to-gcc-cflags.patch Log Message: Don't optimize away NULL pointer tests where pointer is used before the test. (CVE-2009-1897) add-fno-delete-null-pointer-checks-to-gcc-cflags.patch: Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- NEW FILE add-fno-delete-null-pointer-checks-to-gcc-cflags.patch --- >From a3ca86aea507904148870946d599e07a340b39bf Mon Sep 17 00:00:00 2001 From: Eugene Teo Date: Wed, 15 Jul 2009 14:59:10 +0800 Subject: Add '-fno-delete-null-pointer-checks' to gcc CFLAGS From: Eugene Teo commit a3ca86aea507904148870946d599e07a340b39bf upstream. Turning on this flag could prevent the compiler from optimising away some "useless" checks for null pointers. Such bugs can sometimes become exploitable at compile time because of the -O2 optimisation. See http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Optimize-Options.html An example that clearly shows this 'problem' is commit 6bf67672. static void __devexit agnx_pci_remove(struct pci_dev *pdev) { struct ieee80211_hw *dev = pci_get_drvdata(pdev); - struct agnx_priv *priv = dev->priv; + struct agnx_priv *priv; AGNX_TRACE; if (!dev) return; + priv = dev->priv; By reverting this patch, and compile it with and without -fno-delete-null-pointer-checks flag, we can see that the check for dev is compiled away. call printk # - testq %r12, %r12 # dev - je .L94 #, movq %r12, %rdi # dev, Clearly the 'fix' is to stop using dev before it is tested, but building with -fno-delete-null-pointer-checks flag at least makes it harder to abuse. Signed-off-by: Eugene Teo Acked-by: Eric Paris Acked-by: Wang Cong Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/Makefile +++ b/Makefile @@ -340,7 +340,8 @@ KBUILD_CPPFLAGS := -D__KERNEL__ $(LINUXI KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common \ - -Werror-implicit-function-declaration + -Werror-implicit-function-declaration \ + -fno-delete-null-pointer-checks KBUILD_AFLAGS := -D__ASSEMBLY__ # Read KERNELRELEASE from include/config/kernel.release (if it exists) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1679.2.2 retrieving revision 1.1679.2.3 diff -u -p -r1.1679.2.2 -r1.1679.2.3 --- kernel.spec 29 Jul 2009 17:08:18 -0000 1.1679.2.2 +++ kernel.spec 29 Jul 2009 19:17:24 -0000 1.1679.2.3 @@ -814,6 +814,9 @@ Patch11130: via-hwmon-temp-sensor.patch Patch12000: security-use-mmap_min_addr-indepedently-of-security-models.patch Patch12010: personality-fix-per_clear_on_setid.patch +# make gcc stop optimizing away null pointer tests +Patch13000: add-fno-delete-null-pointer-checks-to-gcc-cflags.patch + %endif BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root @@ -1524,6 +1527,9 @@ ApplyPatch linux-2.6-x86-delay-tsc-barri ApplyPatch security-use-mmap_min_addr-indepedently-of-security-models.patch ApplyPatch personality-fix-per_clear_on_setid.patch +# don't optimize out null pointer tests +ApplyPatch add-fno-delete-null-pointer-checks-to-gcc-cflags.patch + # VIA: add 64-bit padlock support, sdmmc driver, temp sensor driver ApplyPatch via-centaur-merge-32-64-bit-init.patch ApplyPatch via-padlock-fix-might-sleep.patch @@ -2121,6 +2127,10 @@ fi # and build. %changelog +* Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-217.2.3 +- Don't optimize away NULL pointer tests where pointer is used before the test. + (CVE-2009-1897) + * Wed Jul 29 2009 Chuck Ebbert 2.6.29.6-217.2.2 - Fix mmap_min_addr security bugs (CVE-2009-1895) From jgreguske at fedoraproject.org Wed Jul 29 19:19:23 2009 From: jgreguske at fedoraproject.org (Jay Greguske) Date: Wed, 29 Jul 2009 19:19:23 +0000 (UTC) Subject: rpms/pycdio/devel import.log, NONE, 1.1 pycdio-remove-shebangs.patch, NONE, 1.1 pycdio.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729191923.41A6511C00CE@cvs1.fedora.phx.redhat.com> Author: jgreguske Update of /cvs/pkgs/rpms/pycdio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22361/devel Modified Files: .cvsignore sources Added Files: import.log pycdio-remove-shebangs.patch pycdio.spec Log Message: Initial CVS import --- NEW FILE import.log --- pycdio-0_15-3_fc10:HEAD:pycdio-0.15-3.fc10.src.rpm:1248895293 pycdio-remove-shebangs.patch: cdio.py | 1 - iso9660.py | 2 -- 2 files changed, 3 deletions(-) --- NEW FILE pycdio-remove-shebangs.patch --- --- cdio.py +++ cdio.py2 @@ -1,4 +1,3 @@ -#!/usr/bin/python # $Id: cdio.py,v 1.6 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- iso9660.py +++ iso9660.py2 @@ -1,5 +1,3 @@ -#!/usr/bin/python -# # $Id: iso9660.py,v 1.12 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- NEW FILE pycdio.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pycdio Version: 0.15 Release: 3%{?dist} Summary: A Python interface to the CD Input and Control library Group: Development/Libraries License: GPLv3+ URL: http://www.gnu.org/software/libcdio/ Source0: ftp://ftp.gnu.org/pub/gnu/libcdio/%{name}-%{version}.tar.gz # Remove shebangs in the modules # a patch was emailed and accepted on libcdio-pycdio-devel at gnu.org Patch0: pycdio-remove-shebangs.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel,python-setuptools,libcdio-devel,swig Requires: python %description The pycdio (and libcdio) libraries encapsulate CD-ROM reading and control. Python programs wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM can use this library. %prep %setup -q %patch0 %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} chmod 755 %{buildroot}/%{python_sitearch}/*.so %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{python_sitearch}/* %doc README.txt %changelog * Tue Jul 28 2009 Jay Greguske - 0.15-3 - Added a patch to remove unnecessary shebangs * Mon Jul 27 2009 Jay Greguske - 0.15-2 - Corrected the license field * Tue Jul 21 2009 Jay Greguske - 0.15-1 - Initial RPM release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 21:51:47 -0000 1.1 +++ .cvsignore 29 Jul 2009 19:19:22 -0000 1.2 @@ -0,0 +1 @@ +pycdio-0.15.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 21:51:47 -0000 1.1 +++ sources 29 Jul 2009 19:19:23 -0000 1.2 @@ -0,0 +1 @@ +e072e6d0fff4850f3169f8be3def4888 pycdio-0.15.tar.gz From jgreguske at fedoraproject.org Wed Jul 29 19:21:09 2009 From: jgreguske at fedoraproject.org (Jay Greguske) Date: Wed, 29 Jul 2009 19:21:09 +0000 (UTC) Subject: rpms/pycdio/F-10 import.log, NONE, 1.1 pycdio-remove-shebangs.patch, NONE, 1.1 pycdio.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729192109.CFAF911C00CE@cvs1.fedora.phx.redhat.com> Author: jgreguske Update of /cvs/pkgs/rpms/pycdio/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23188/F-10 Modified Files: .cvsignore sources Added Files: import.log pycdio-remove-shebangs.patch pycdio.spec Log Message: Initial CVS import for F-10 --- NEW FILE import.log --- pycdio-0_15-3_fc10:F-10:pycdio-0.15-3.fc10.src.rpm:1248895428 pycdio-remove-shebangs.patch: cdio.py | 1 - iso9660.py | 2 -- 2 files changed, 3 deletions(-) --- NEW FILE pycdio-remove-shebangs.patch --- --- cdio.py +++ cdio.py2 @@ -1,4 +1,3 @@ -#!/usr/bin/python # $Id: cdio.py,v 1.6 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- iso9660.py +++ iso9660.py2 @@ -1,5 +1,3 @@ -#!/usr/bin/python -# # $Id: iso9660.py,v 1.12 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- NEW FILE pycdio.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pycdio Version: 0.15 Release: 3%{?dist} Summary: A Python interface to the CD Input and Control library Group: Development/Libraries License: GPLv3+ URL: http://www.gnu.org/software/libcdio/ Source0: ftp://ftp.gnu.org/pub/gnu/libcdio/%{name}-%{version}.tar.gz # Remove shebangs in the modules # a patch was emailed and accepted on libcdio-pycdio-devel at gnu.org Patch0: pycdio-remove-shebangs.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel,python-setuptools,libcdio-devel,swig Requires: python %description The pycdio (and libcdio) libraries encapsulate CD-ROM reading and control. Python programs wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM can use this library. %prep %setup -q %patch0 %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} chmod 755 %{buildroot}/%{python_sitearch}/*.so %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{python_sitearch}/* %doc README.txt %changelog * Tue Jul 28 2009 Jay Greguske - 0.15-3 - Added a patch to remove unnecessary shebangs * Mon Jul 27 2009 Jay Greguske - 0.15-2 - Corrected the license field * Tue Jul 21 2009 Jay Greguske - 0.15-1 - Initial RPM release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 21:51:47 -0000 1.1 +++ .cvsignore 29 Jul 2009 19:21:09 -0000 1.2 @@ -0,0 +1 @@ +pycdio-0.15.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 21:51:47 -0000 1.1 +++ sources 29 Jul 2009 19:21:09 -0000 1.2 @@ -0,0 +1 @@ +e072e6d0fff4850f3169f8be3def4888 pycdio-0.15.tar.gz From jgreguske at fedoraproject.org Wed Jul 29 19:22:09 2009 From: jgreguske at fedoraproject.org (Jay Greguske) Date: Wed, 29 Jul 2009 19:22:09 +0000 (UTC) Subject: rpms/pycdio/EL-5 import.log, NONE, 1.1 pycdio-remove-shebangs.patch, NONE, 1.1 pycdio.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729192209.4F3BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jgreguske Update of /cvs/pkgs/rpms/pycdio/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23643/EL-5 Modified Files: .cvsignore sources Added Files: import.log pycdio-remove-shebangs.patch pycdio.spec Log Message: Initial CVS import for EL-5 --- NEW FILE import.log --- pycdio-0_15-3_fc10:EL-5:pycdio-0.15-3.fc10.src.rpm:1248895502 pycdio-remove-shebangs.patch: cdio.py | 1 - iso9660.py | 2 -- 2 files changed, 3 deletions(-) --- NEW FILE pycdio-remove-shebangs.patch --- --- cdio.py +++ cdio.py2 @@ -1,4 +1,3 @@ -#!/usr/bin/python # $Id: cdio.py,v 1.6 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- iso9660.py +++ iso9660.py2 @@ -1,5 +1,3 @@ -#!/usr/bin/python -# # $Id: iso9660.py,v 1.12 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- NEW FILE pycdio.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pycdio Version: 0.15 Release: 3%{?dist} Summary: A Python interface to the CD Input and Control library Group: Development/Libraries License: GPLv3+ URL: http://www.gnu.org/software/libcdio/ Source0: ftp://ftp.gnu.org/pub/gnu/libcdio/%{name}-%{version}.tar.gz # Remove shebangs in the modules # a patch was emailed and accepted on libcdio-pycdio-devel at gnu.org Patch0: pycdio-remove-shebangs.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel,python-setuptools,libcdio-devel,swig Requires: python %description The pycdio (and libcdio) libraries encapsulate CD-ROM reading and control. Python programs wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM can use this library. %prep %setup -q %patch0 %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} chmod 755 %{buildroot}/%{python_sitearch}/*.so %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{python_sitearch}/* %doc README.txt %changelog * Tue Jul 28 2009 Jay Greguske - 0.15-3 - Added a patch to remove unnecessary shebangs * Mon Jul 27 2009 Jay Greguske - 0.15-2 - Corrected the license field * Tue Jul 21 2009 Jay Greguske - 0.15-1 - Initial RPM release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 21:51:47 -0000 1.1 +++ .cvsignore 29 Jul 2009 19:22:08 -0000 1.2 @@ -0,0 +1 @@ +pycdio-0.15.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 21:51:47 -0000 1.1 +++ sources 29 Jul 2009 19:22:09 -0000 1.2 @@ -0,0 +1 @@ +e072e6d0fff4850f3169f8be3def4888 pycdio-0.15.tar.gz From krh at fedoraproject.org Wed Jul 29 19:29:33 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Wed, 29 Jul 2009 19:29:33 +0000 (UTC) Subject: rpms/libdrm/devel libdrm.spec,1.80,1.81 Message-ID: <20090729192933.E88A211C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/libdrm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26098 Modified Files: libdrm.spec Log Message: * Wed Jul 29 2009 Kristian H?gsberg - 2.4.12-0.5 - Add libdrm support for KMS pageflip ioctl. Index: libdrm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/libdrm.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- libdrm.spec 28 Jul 2009 15:23:26 -0000 1.80 +++ libdrm.spec 29 Jul 2009 19:29:33 -0000 1.81 @@ -3,7 +3,7 @@ Summary: Direct Rendering Manager runtime library Name: libdrm Version: 2.4.12 -Release: 0.4%{?dist} +Release: 0.5%{?dist} License: MIT Group: System Environment/Libraries URL: http://dri.sourceforge.net @@ -27,6 +27,8 @@ Patch3: libdrm-make-dri-perms-okay.patch # remove backwards compat not needed on Fedora Patch4: libdrm-2.4.0-no-bc.patch +Patch5: libdrm-page-flip.patch + %description Direct Rendering Manager runtime library @@ -44,6 +46,7 @@ Direct Rendering Manager development pac %setup -q -n %{name}-%{gitdate} %patch3 -p1 -b .forceperms %patch4 -p1 -b .no-bc +%patch5 -p1 -b .page-flip %build autoreconf -v --install || exit 1 @@ -103,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdrm_nouveau.pc %changelog +* Wed Jul 29 2009 Kristian H?gsberg - 2.4.12-0.5 +- Add libdrm support for KMS pageflip ioctl. + * Tue Jul 28 2009 Ben Skeggs 2.4.12-0.4 - rebase onto git snapshot for new nouveau interface support From nhorman at fedoraproject.org Wed Jul 29 19:34:48 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 19:34:48 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_sample_manifests manifest.localrootfs, 1.3, 1.4 Message-ID: <20090729193448.95F2311C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_sample_manifests In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27916/kdump_sample_manifests Modified Files: manifest.localrootfs Log Message: Starting mkdumprd2 -> dracut conversion Index: manifest.localrootfs =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kdump_sample_manifests/manifest.localrootfs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- manifest.localrootfs 6 Jul 2009 18:00:03 -0000 1.3 +++ manifest.localrootfs 29 Jul 2009 19:34:48 -0000 1.4 @@ -1,87 +1,9 @@ -###################################################### -# Generic kdump initramfs manifest -# 1) Loads all modules -# 2) Starts all mdraid, lvm partitions -# 3) Mounts the rootfs -# 4) Copies /proc/vmcore to /mnt/var/crash//vmcore +######################################################### +# Sample manifest for default kdump configuration # -# Notes on syntax: -# There are 6 major commands to use when generating manifest files -# They are: -# 1) reg -# reg -# A regular file copy from the source to the dst directory -# -# 2) creg -# creg -# like reg, but only copy if the source file exists -# -# 3) ren -# ren -# rename a file into the initramfs -# -# 4) cren -# cren -# like creg, but rename the dst file -# -# 5) gen -# gen -# execute the specified binary, redirecting stdout to -# -# 6) exec -# exec -# execute the specified binary. Option 1 is the -# base dir where the initramfs is being built -# $1/temp is temp file space, $1/stage is the initramfs -# options passed on command line after that -##################################################### - -#################################################### -#This script populates the initramfs with: -# busybox -# kpartx -# lvm -# dmsetup -# It also symlinks all the supported apps in busybox to -# busybox -#################################################### -exec populate_kdump_std_files +# This manifest will build an initramfs which mounts the +# root filesystem and switchroots to it +######################################################### -#################################################### -# Pull in udev so that we can easily setup block -# devices for lvm and all that -#################################################### -exec populate_udev_files - -#################################################### -# This is a rudimentary module population script -# It looks at the currently loaded modules, copies them -# To the initramfs, and generates /etc/module_load_list -# which is a dependency ordered list of those modules -# which can be used at runtime for module loading -################################################### -exec generate_module_list - -################################################### -# Lets get all our lvm and mdraid configs on board -################################################### -creg /etc/lvm/lvm.conf /etc/lvm -creg /etc/mdadm.conf /etc - -################################################### -# Grab fstab, modifying it to mount under /mnt -################################################### -gen awk /etc/fstab '/^[^#]/{print $1 " /mnt"$2 " "$3 " "$4 " "$5 " "$6}' /etc/fstab - -################################################### -# Grab /etc/clock so we can set the clock properly -################################################### -creg /etc/clock /etc - -################################################### -# Grab the standard initscript to capture to the local -# rootfs -################################################### -# -ren /etc/kdump-adv-conf/kdump_initscripts/kdumpinit.rootfs /init +dracutmodules="base crypt lvm kernel-modules rootfs-block udev-rules" From nhorman at fedoraproject.org Wed Jul 29 19:34:48 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 19:34:48 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_dracut_modules/99kdumpbase check, NONE, 1.1 dracut-lib.sh, NONE, 1.1 initqueue, NONE, 1.1 install, NONE, 1.1 parse-blacklist.sh, NONE, 1.1 parse-root-opts.sh, NONE, 1.1 selinux-loadpolicy.sh, NONE, 1.1 Message-ID: <20090729193448.47F7011C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_dracut_modules/99kdumpbase In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27916/kdump_dracut_modules/99kdumpbase Added Files: check dracut-lib.sh initqueue install parse-blacklist.sh parse-root-opts.sh selinux-loadpolicy.sh Log Message: Starting mkdumprd2 -> dracut conversion --- NEW FILE check --- #!/bin/bash [[ $1 = -d ]] && echo udev-rules exit 0 --- NEW FILE dracut-lib.sh --- getarg() { local o line if [ -z "$CMDLINE" ]; then read CMDLINE_ETC dracut: FATAL: $@"; echo "<1>dracut: Refusing to continue"; } > /dev/kmsg { echo "dracut: FATAL: $@"; echo "dracut: Refusing to continue"; } >&2 exit 1 } warn() { echo "<4>dracut Warning: $@" > /dev/kmsg echo "dracut Warning: $@" >&2 } info() { if [ -z "$DRACUT_QUIET" ]; then DRACUT_QUIET="no" getarg quiet && DRACUT_QUIET="yes" fi echo "<6>dracut: $@" > /dev/kmsg [ "$DRACUT_QUIET" != "yes" ] && \ echo "dracut: $@" } vinfo() { while read line; do info $line; done } check_occurances() { # Count the number of times the character $ch occurs in $str # Return 0 if the count matches the expected number, 1 otherwise local str="$1" local ch="$2" local expected="$3" local count=0 while [ "${str#*$ch}" != "${str}" ]; do str="${str#*$ch}" count=$(( $count + 1 )) done [ $count -eq $expected ] } incol2() { local dummy check; local file="$1"; local str="$2"; [ -z "$file" ] && return; [ -z "$str" ] && return; while read dummy check restofline; do [ "$check" = "$str" ] && return 0 done < $file return 1 } --- NEW FILE initqueue --- #!/bin/sh if [ "$1" = "--onetime" ]; then onetime="yes" shift fi echo "$@" > /tmp/$$.sh if [ -n "$onetime" ]; then echo '[ -e "$job" ] && rm "$job"' >> /tmp/$$.sh fi mv /tmp/$$.sh /initqueue/ >> /initqueue/work --- NEW FILE install --- #!/bin/bash dracut_install mount mknod mkdir modprobe pidof sleep chroot \ sed ls flock cp mv dmesg rm ln if [ ! -e "${initdir}/bin/sh" ]; then dracut_install bash (ln -s bash "${initdir}/bin/sh" || :) fi # install our scripts and hooks inst "/etc/kdump-adv-conf/init" "/init" inst "$moddir/initqueue" "/sbin/initqueue" mkdir -p ${initdir}/initqueue mkdir -p ${initdir}/tmp # Bail out if switch_root does not exist if which switch_root >/dev/null 2>&1; then dracut_install switch_root else inst "$moddir/switch_root" "/sbin/switch_root" \ || derror "Failed to install switch_root" fi inst "$moddir/dracut-lib.sh" "/lib/dracut-lib.sh" inst_hook cmdline 10 "$moddir/parse-root-opts.sh" inst_hook cmdline 20 "$moddir/parse-blacklist.sh" inst_hook pre-pivot 50 "$moddir/selinux-loadpolicy.sh" --- NEW FILE parse-blacklist.sh --- #!/bin/sh for p in $(getargs rdblacklist=); do echo "blacklist $p" >> /etc/modprobe.d/initramfsblacklist.conf done --- NEW FILE parse-root-opts.sh --- root=$(getarg root=) if rflags="$(getarg rootflags=)"; then getarg rw && rflags="${rflags},rw" || rflags="${rflags},ro" else getarg rw && rflags=rw || rflags=ro fi fstype="$(getarg rootfstype=)" if [ -z "$fstype" ]; then fstype="auto" fi --- NEW FILE selinux-loadpolicy.sh --- #!/bin/sh # FIXME: load selinux policy. this should really be done after we switchroot if [ -x "$NEWROOT/usr/sbin/load_policy" ] && [ -e "$NEWROOT/etc/sysconfig/selinux" ]; then chroot $NEWROOT /usr/sbin/load_policy -i if [ $? -eq 3 ]; then echo "Initial SELinux policy load failed and enforcing mode requested." echo "Not continuing" sleep 100d exit 1 fi fi From nhorman at fedoraproject.org Wed Jul 29 19:34:48 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 19:34:48 +0000 (UTC) Subject: rpms/kexec-tools/devel .cvsignore, 1.11, 1.12 Makefile, 1.8, 1.9 kdump.init, 1.21, 1.22 kexec-tools.spec, 1.147, 1.148 sources, 1.19, 1.20 mkdumprd2, 1.6, NONE mkdumprd2_functions, 1.2, NONE Message-ID: <20090729193448.0582311C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27916 Modified Files: .cvsignore Makefile kdump.init kexec-tools.spec sources Removed Files: mkdumprd2 mkdumprd2_functions Log Message: Starting mkdumprd2 -> dracut conversion Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 20 May 2009 18:09:56 -0000 1.11 +++ .cvsignore 29 Jul 2009 19:34:47 -0000 1.12 @@ -8,3 +8,4 @@ makedumpfile-1.2.6.tar.gz kexec-tools-2.0.0.tar.bz2 makedumpfile-1.3.3.tar.gz mkdumprd2-files.tbz2 +dracut-files.tbz2 Index: Makefile =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- Makefile 6 Jul 2009 18:00:03 -0000 1.8 +++ Makefile 29 Jul 2009 19:34:47 -0000 1.9 @@ -20,14 +20,12 @@ endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif -mkdumprd2_tarball: +dracut_tarball: mkdir stage - ln -s ../kdump_build_helpers stage/kdump_build_helpers - ln -s ../kdump_runtime_helpers stage/kdump_runtime_helpers ln -s ../kdump_initscripts stage/kdump_initscripts ln -s ../kdump_sample_manifests stage/kdump_sample_manifests - ln -s ../mkdumprd2_functions stage/mkdumprd2_functions - tar -C stage -j -h -c --exclude=CVS -f ./mkdumprd2-files.tbz2 . + ln -s ../kdump_dracut_modules stage/kdump_dracut_modules + tar -C stage -j -h -c --exclude=CVS -f ./dracut-files.tbz2 . rm -rf stage include $(MAKEFILE_COMMON) Index: kdump.init =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kdump.init,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- kdump.init 6 Jul 2009 18:39:27 -0000 1.21 +++ kdump.init 29 Jul 2009 19:34:47 -0000 1.22 @@ -53,15 +53,20 @@ function save_core() function check_config() { - if [ -f /etc/kdump-adv-conf ] + if [ -f /etc/kdump-adv-conf/initramfs.conf ] then $LOGGER "Using Kdump advanced configuration service" - MKDUMPRD=/sbin/mkdumprd2 + if [ -n "DRACUT_CMD" ] + then + MKDUMPRD=$DRACUT_CMD + else + MKDUMPRD="dracut -c /etc/kdump-adv-conf/initramfs.conf" + fi # We always rebuild here, since it takes longer # to figure out if anything has changed touch /etc/kdump.conf else - MKDUMPRD=/sbin/mkdumprd + MKDUMPRD="/sbin/mkdumprd -d -f" fi if [ -z "$KDUMP_KERNELVER" ]; then @@ -84,7 +89,7 @@ function check_config() if [ ! -f $kdump_initrd ]; then echo -n "No kdump initial ramdisk found."; warning; echo echo "Rebuilding $kdump_initrd" - $MKDUMPRD -d -f $kdump_initrd $kdump_kver + $MKDUMPRD $kdump_initrd $kdump_kver if [ $? != 0 ]; then echo "Failed to run mkdumprd" $LOGGER "mkdumprd: failed to make kdump initrd" Index: kexec-tools.spec =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kexec-tools.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- kexec-tools.spec 25 Jul 2009 04:33:33 -0000 1.147 +++ kexec-tools.spec 29 Jul 2009 19:34:47 -0000 1.148 @@ -1,6 +1,6 @@ Name: kexec-tools Version: 2.0.0 -Release: 22%{?dist} +Release: 23%{?dist} License: GPLv2 Group: Applications/System Summary: The kexec/kdump userspace component. @@ -24,8 +24,7 @@ Source14: 98-kexec.rules # These are sources for mkdumprd2 # Which is currently in development ####################################### -Source100: mkdumprd2-files.tbz2 -Source101: mkdumprd2 +Source100: dracut-files.tbz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(pre): coreutils chkconfig sed zlib @@ -148,10 +147,13 @@ install -m 755 makedumpfile-1.3.3/makedu make -C kexec-tools-po install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} -# untar the mkdumprd2 package +# untar the dracut package mkdir -p -m755 $RPM_BUILD_ROOT/etc/kdump-adv-conf tar -C $RPM_BUILD_ROOT/etc/kdump-adv-conf -jxvf %{SOURCE100} -install -m 755 %{SOURCE101} $RPM_BUILD_ROOT/sbin + +#and move the custom dracut modules to the dracut directory +mkdir -p $RPM_BUILD_ROOT/usr/share/dracut/modules.d/ +mv $RPM_BUILD_ROOT/etc/kdump-adv-conf/kdump_dracut_modules/* $RPM_BUILD_ROOT/usr/share/dracut/modules.d/ %clean rm -rf $RPM_BUILD_ROOT @@ -245,13 +247,11 @@ done %{_datadir}/kdump %config(noreplace,missingok) %{_sysconfdir}/sysconfig/kdump %config(noreplace,missingok) %{_sysconfdir}/kdump.conf -%{_sysconfdir}/kdump-adv-conf/kdump_build_helpers/ -%{_sysconfdir}/kdump-adv-conf/kdump_runtime_helpers/ %{_sysconfdir}/kdump-adv-conf/kdump_initscripts/ %{_sysconfdir}/kdump-adv-conf/kdump_sample_manifests/ -%{_sysconfdir}/kdump-adv-conf/mkdumprd2_functions %config %{_sysconfdir}/rc.d/init.d/kdump %config %{_sysconfdir}/udev/rules.d/* +%{_datadir}/dracut/modules.d/* %dir %{_localstatedir}/crash %{_mandir}/man8/* %doc News @@ -261,6 +261,9 @@ done %changelog +* Wed Jul 29 2009 Neil Horman - 2.0,0-23 +- Remove mkdumprd2 and start replacement with dracut + * Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 6 Jul 2009 18:00:03 -0000 1.19 +++ sources 29 Jul 2009 19:34:47 -0000 1.20 @@ -1,4 +1,4 @@ d9f2ecd3c3307905f24130a25816e6cc kexec-tools-2.0.0.tar.bz2 3e802d638dce0080b910f15908c04a24 kexec-tools-po.tar.gz 190f8878aa7e7b63a96fde5d59538eec makedumpfile-1.3.3.tar.gz -482347c1f6fcb2480044c42c03a16b9f mkdumprd2-files.tbz2 +95149c97537d0fb65eda72f4e53a0316 dracut-files.tbz2 --- mkdumprd2 DELETED --- --- mkdumprd2_functions DELETED --- From nhorman at fedoraproject.org Wed Jul 29 19:34:48 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Wed, 29 Jul 2009 19:34:48 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_initscripts init,NONE,1.1 Message-ID: <20090729193448.6FCE411C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_initscripts In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27916/kdump_initscripts Added Files: init Log Message: Starting mkdumprd2 -> dracut conversion --- NEW FILE init --- #!/bin/sh # # Licensed under the GPLv2 # # Copyright 2008, Red Hat, Inc. # Jeremy Katz emergency_shell() { exec >/dev/console 2>&1 /dev/null 2>&1 mount -t sysfs /sys /sys >/dev/null 2>&1 if [ ! -c /dev/ptmx ]; then # try to mount devtmpfs if ! mount -t devtmpfs -omode=0755 udev /dev >/dev/null 2>&1; then # if it failed fall back to normal tmpfs mount -t tmpfs -omode=0755 udev /dev >/dev/null 2>&1 # Make some basic devices first, let udev handle the rest mknod /dev/null c 1 3 mknod /dev/ptmx c 5 2 mknod /dev/console c 5 1 mknod /dev/kmsg c 1 11 fi fi if getarg rdinitdebug; then set -x fi mkdir /dev/shm mkdir /dev/pts mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts >/dev/null 2>&1 UDEVVERSION=$(udevadm --version) source_conf /etc/conf.d # run scriptlets to parse the command line getarg 'rdbreak=cmdline' && emergency_shell "Break before cmdline" source_all cmdline [ -z "$root" ] && die "No or empty root= argument" [ -z "$rootok" ] && die "Don't know how to handle 'root=$root'" # Network root scripts may need updated root= options, # so deposit them where they can see them (udev purges the env) { echo "root='$root'" echo "rflags='$rflags'" echo "fstype='$fstype'" echo "netroot='$netroot'" echo "NEWROOT='$NEWROOT'" } > /tmp/root.info # pre-udev scripts run before udev starts, and are run only once. getarg 'rdbreak=pre-udev' && emergency_shell "Break before pre-udev" source_all pre-udev # start up udev and trigger cold plugs udevd --daemon UDEV_LOG_PRIO_ARG=--log-priority UDEV_QUEUE_EMPTY="udevadm settle --timeout=0" if [ $UDEVVERSION -lt 140 ]; then UDEV_LOG_PRIO_ARG=--log_priority UDEV_QUEUE_EMPTY="udevadm settle --timeout=1" fi getarg rdudevinfo && udevadm control $UDEV_LOG_PRIO_ARG=info getarg rdudevdebug && udevadm control $UDEV_LOG_PRIO_ARG=debug getarg 'rdbreak=pre-trigger' && emergency_shell "Break before pre-trigger" source_all pre-trigger # then the rest udevadm trigger $udevtriggeropts >/dev/null 2>&1 getarg 'rdbreak=initqueue' && emergency_shell "Break before initqueue" i=0 while :; do # bail out, if we have mounted the root filesystem [ -d "$NEWROOT/proc" ] && break; # check if root can be mounted [ -e /dev/root ] && break; if [ $UDEVVERSION -ge 143 ]; then udevadm settle --exit-if-exists=/initqueue/work --exit-if-exists=/dev/root else udevadm settle --timeout=30 fi # bail out, if we have mounted the root filesystem [ -d "$NEWROOT/proc" ] && break; # check if root can be mounted [ -e /dev/root ] && break; unset queuetriggered if [ -f /initqueue/work ]; then rm /initqueue/work queuetriggered="1" fi for job in /initqueue/*.sh; do [ -e "$job" ] || break job=$job . $job # bail out, if we have mounted the root filesystem [ -d "$NEWROOT/proc" ] && break; # check if root can be mounted [ -e /dev/root ] && break; done [ -n "$queuetriggered" ] && continue if $UDEV_QUEUE_EMPTY >/dev/null 2>&1; then # no more udev jobs sleep 0.5 i=$(($i+1)) [ $i -gt 20 ] \ && { flock -s 9 ; emergency_shell "No root device found"; } 9>/.console_lock fi done unset job unset queuetriggered # pre-mount happens before we try to mount the root filesystem, # and happens once. getarg 'rdbreak=pre-mount' && emergency_shell "Break pre-mount" source_all pre-mount getarg 'rdbreak=mount' && emergency_shell "Break mount" # mount scripts actually try to mount the root filesystem, and may # be sourced any number of times. As soon as one suceeds, no more are sourced. i=0 while :; do [ -d "$NEWROOT/proc" ] && break; for f in /mount/*.sh; do [ -f "$f" ] && . "$f" [ -d "$NEWROOT/proc" ] && break; done i=$(($i+1)) [ $i -gt 20 ] \ && { flock -s 9 ; emergency_shell "Can't mount root filesystem"; } 9>/.console_lock done # pre pivot scripts are sourced just before we switch over to the new root. getarg 'rdbreak=pre-pivot' && emergency_shell "Break pre-pivot" source_all pre-pivot # by the time we get here, the root filesystem should be mounted. # Try to find init. for i in "$(getarg init=)" /sbin/init /etc/init /init /bin/sh; do [ -f "$NEWROOT$i" -a -x "$NEWROOT$i" ] && { INIT="$i"; break; } done [ "$INIT" ] || { echo "Cannot find init!" echo "Please check to make sure you passed a valid root filesystem!" emergency_shell } getarg rdbreak && emergency_shell "Break before switch_root" HARD="" while pidof udevd >/dev/null 2>&1; do for pid in $(pidof udevd); do kill $HARD $pid >/dev/null 2>&1 done HARD="-9" done # Clean up the environment for i in $(export -p); do i=${i#declare -x} i=${i#export} i=${i%%=*} [ "$i" = "root" -o "$i" = "PATH" -o "$i" = "HOME" -o "$i" = "TERM" ] || unset $i done initargs="" initrdargs="$initrdargs console BOOT_IMAGE rdbreak rdinitdebug rdudevinfo rdudevdebug rdnetdebug rdcopystate rdshell" for x in "$@"; do for s in $initrdargs; do [ "${x%%=*}" = $s ] && continue 2 done initargs="$initargs $x" done # Copy state mkdir /dev/.initramfs/ if getarg rdcopystate; then cp /tmp/* /dev/.initramfs/ >/dev/null 2>&1 else cp /tmp/net.* /dev/.initramfs/ >/dev/null 2>&1 fi exec switch_root "$NEWROOT" "$INIT" $initargs || { # davej doesn't like initrd bugs echo "Something went very badly wrong in the initrd. Please " echo "file a bug against mkinitrd." emergency_shell } From rdieter at fedoraproject.org Wed Jul 29 19:36:53 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 19:36:53 +0000 (UTC) Subject: rpms/sbcl/F-11 sbcl-1.0.28-optflags.patch, NONE, 1.1 .cvsignore, 1.46, 1.47 sbcl.spec, 1.105, 1.106 sources, 1.47, 1.48 sbcl-1.0.16-optflags.patch, 1.1, NONE Message-ID: <20090729193653.7DC1511C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sbcl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28871 Modified Files: .cvsignore sbcl.spec sources Added Files: sbcl-1.0.28-optflags.patch Removed Files: sbcl-1.0.16-optflags.patch Log Message: * Tue Jul 28 2009 Rex Dieter - 1.0.30-1 - sbcl-1.0.30 sbcl-1.0.28-optflags.patch: contrib/asdf-module.mk | 2 ++ src/runtime/Config.ppc-linux | 2 +- src/runtime/Config.sparc-linux | 1 + src/runtime/Config.x86-linux | 2 ++ src/runtime/Config.x86_64-linux | 2 +- 5 files changed, 7 insertions(+), 2 deletions(-) --- NEW FILE sbcl-1.0.28-optflags.patch --- diff -up sbcl-1.0.28/contrib/asdf-module.mk.optflags sbcl-1.0.28/contrib/asdf-module.mk --- sbcl-1.0.28/contrib/asdf-module.mk.optflags 2009-04-28 11:02:13.000000000 -0500 +++ sbcl-1.0.28/contrib/asdf-module.mk 2009-04-30 12:22:56.509637395 -0500 @@ -20,6 +20,8 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME CC:=$(shell cygpath -m $(shell readlink -fn $(shell which $(CC)))) endif +EXTRA_CFLAGS += $(RPM_OPT_FLAGS) + export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS all: $(EXTRA_ALL_TARGETS) diff -up sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags sbcl-1.0.28/src/runtime/Config.ppc-linux --- sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags 2006-11-19 05:26:16.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.ppc-linux 2009-04-30 12:21:36.861636752 -0500 @@ -9,7 +9,7 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. -CFLAGS = -g +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags sbcl-1.0.28/src/runtime/Config.sparc-linux --- sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags 2005-09-16 08:26:39.000000000 -0500 +++ sbcl-1.0.28/src/runtime/Config.sparc-linux 2009-04-30 12:21:36.862636949 -0500 @@ -10,6 +10,7 @@ # files for more information. ASFLAGS = -g -Wall +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags sbcl-1.0.28/src/runtime/Config.x86_64-linux --- sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86_64-linux 2009-04-30 12:21:36.863636867 -0500 @@ -34,7 +34,7 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif -CFLAGS += -fno-omit-frame-pointer +CFLAGS += -fno-omit-frame-pointer $(RPM_OPT_FLAGS) GC_SRC = gencgc.c diff -up sbcl-1.0.28/src/runtime/Config.x86-linux.optflags sbcl-1.0.28/src/runtime/Config.x86-linux --- sbcl-1.0.28/src/runtime/Config.x86-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86-linux 2009-04-30 12:21:36.864637274 -0500 @@ -38,6 +38,8 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif +CFLAGS += $(RPM_OPT_FLAGS) + GC_SRC = gencgc.c # Nothing to do for after-grovel-headers. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-11/.cvsignore,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- .cvsignore 4 Mar 2009 18:40:54 -0000 1.46 +++ .cvsignore 29 Jul 2009 19:36:53 -0000 1.47 @@ -1 +1 @@ -sbcl-1.0.26-source.tar.bz2 +sbcl-1.0.30-source.tar.bz2 Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-11/sbcl.spec,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- sbcl.spec 4 Mar 2009 18:40:54 -0000 1.105 +++ sbcl.spec 29 Jul 2009 19:36:53 -0000 1.106 @@ -8,11 +8,11 @@ %define sbcl_shell /bin/bash # threading support -%{?!_without_threads:%define _with_threads --with-threads} +%{?!_without_threads:%global _with_threads --with-threads} Name: sbcl Summary: Steel Bank Common Lisp -Version: 1.0.26 +Version: 1.0.30 Release: 1%{?dist} License: BSD @@ -83,12 +83,14 @@ Source202: sbcl-install-clc.lisp Patch1: sbcl-1.0.25-default_sbcl_home.patch Patch2: sbcl-0.9.5-personality.patch -Patch3: sbcl-1.0.16-optflags.patch +Patch3: sbcl-1.0.28-optflags.patch Patch4: sbcl-0.9.17-LIB_DIR.patch Patch6: sbcl-0.9.5-verbose-build.patch # Allow override of contrib test failure(s) Patch7: sbcl-1.0.2-permissive.patch +## upstream patches + Requires(post): /sbin/install-info Requires(preun): /sbin/install-info # doc generation @@ -232,7 +234,7 @@ fi %files %defattr(-,root,root) %doc BUGS COPYING README CREDITS NEWS TLA TODO -%doc SUPPORT STYLE PRINCIPLES +%doc STYLE PRINCIPLES %{_bindir}/* %{_libdir}/sbcl/ %{_mandir}/man?/* @@ -250,6 +252,18 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 1.0.30-1 +- sbcl-1.0.30 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 28 2009 Rex Dieter - 1.0.29-1 +- sbcl-1.0.29 + +* Thu Apr 30 2009 Rex Dieter - 1.0.28-1 +- sbcl-1.0.28 + * Wed Mar 04 2009 Rex Dieter - 1.0.26-1 - sbcl-1.0.26 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-11/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 4 Mar 2009 18:40:55 -0000 1.47 +++ sources 29 Jul 2009 19:36:53 -0000 1.48 @@ -1 +1 @@ -b3550f4aa2db031b4630129dd0995f1b sbcl-1.0.26-source.tar.bz2 +64a96ad21a5d57f27639c0801c00fe74 sbcl-1.0.30-source.tar.bz2 --- sbcl-1.0.16-optflags.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 19:37:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:24 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090729193724.4E5A610F88F@bastion2.fedora.phx.redhat.com> hvad has set the commit acl on perl-Tk-Stderr (Fedora 10) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Wed Jul 29 19:37:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:52 +0000 Subject: [pkgdb] zbar was added for dougsland Message-ID: <20090729193752.7FC0A10F89A@bastion2.fedora.phx.redhat.com> tibbs has added Package zbar with summary Bar code reader tibbs has approved Package zbar tibbs has added a Fedora devel branch for zbar with an owner of dougsland tibbs has approved zbar in Fedora devel tibbs has approved Package zbar tibbs has set commit to Approved for 107427 on zbar (Fedora devel) tibbs has set checkout to Approved for 107427 on zbar (Fedora devel) tibbs has set build to Approved for 107427 on zbar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Wed Jul 29 19:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:53 +0000 Subject: [pkgdb] zbar summary updated by tibbs Message-ID: <20090729193753.7CC8310F89F@bastion2.fedora.phx.redhat.com> tibbs set package zbar summary to Bar code reader To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Wed Jul 29 19:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:53 +0000 Subject: [pkgdb] zbar (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729193753.7F4B710F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for zbar tibbs has set commit to Approved for 107427 on zbar (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on zbar (Fedora EPEL 5) tibbs has set build to Approved for 107427 on zbar (Fedora EPEL 5) tibbs approved watchbugzilla on zbar (Fedora EPEL 5) for dougsland tibbs approved watchcommits on zbar (Fedora EPEL 5) for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Wed Jul 29 19:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:53 +0000 Subject: [pkgdb] zbar (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729193753.873A710F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for zbar tibbs has set commit to Approved for 107427 on zbar (Fedora 11) tibbs has set checkout to Approved for 107427 on zbar (Fedora 11) tibbs has set build to Approved for 107427 on zbar (Fedora 11) tibbs approved watchbugzilla on zbar (Fedora 11) for dougsland tibbs approved watchcommits on zbar (Fedora 11) for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From tibbs at fedoraproject.org Wed Jul 29 19:38:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 19:38:00 +0000 (UTC) Subject: rpms/zbar - New directory Message-ID: <20090729193800.3F62D11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zbar In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsc29528/rpms/zbar Log Message: Directory /cvs/pkgs/rpms/zbar added to the repository From pkgdb at fedoraproject.org Wed Jul 29 19:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:53 +0000 Subject: [pkgdb] zbar (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729193753.91D5710F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for zbar tibbs has set commit to Approved for 107427 on zbar (Fedora 10) tibbs has set checkout to Approved for 107427 on zbar (Fedora 10) tibbs has set build to Approved for 107427 on zbar (Fedora 10) tibbs approved watchbugzilla on zbar (Fedora 10) for dougsland tibbs approved watchcommits on zbar (Fedora 10) for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Wed Jul 29 19:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:37:53 +0000 Subject: [pkgdb] zbar (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729193753.99B7D10F8BB@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on zbar (Fedora devel) for dougsland tibbs approved watchcommits on zbar (Fedora devel) for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From tibbs at fedoraproject.org Wed Jul 29 19:38:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 19:38:00 +0000 (UTC) Subject: rpms/zbar/devel - New directory Message-ID: <20090729193800.7196311C0424@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zbar/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsc29528/rpms/zbar/devel Log Message: Directory /cvs/pkgs/rpms/zbar/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 19:38:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 19:38:07 +0000 (UTC) Subject: rpms/zbar Makefile,NONE,1.1 Message-ID: <20090729193807.22E4D11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zbar In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsc29528/rpms/zbar Added Files: Makefile Log Message: Setup of module zbar --- NEW FILE Makefile --- # Top level Makefile for module zbar all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 19:38:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 19:38:07 +0000 (UTC) Subject: rpms/zbar/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729193807.8E6DE11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zbar/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsc29528/rpms/zbar/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module zbar --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: zbar # $Id: Makefile,v 1.1 2009/07/29 19:38:07 tibbs Exp $ NAME := zbar SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From rdieter at fedoraproject.org Wed Jul 29 19:38:25 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 19:38:25 +0000 (UTC) Subject: rpms/sbcl/F-10 sbcl-1.0.25-default_sbcl_home.patch, NONE, 1.1 sbcl-1.0.28-optflags.patch, NONE, 1.1 .cvsignore, 1.42, 1.43 sbcl.spec, 1.99, 1.100 sources, 1.43, 1.44 sbcl-1.0.16-optflags.patch, 1.1, NONE sbcl-1.0.19-default-sbcl-home.patch, 1.1, NONE Message-ID: <20090729193825.C8B1A11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sbcl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30199 Modified Files: .cvsignore sbcl.spec sources Added Files: sbcl-1.0.25-default_sbcl_home.patch sbcl-1.0.28-optflags.patch Removed Files: sbcl-1.0.16-optflags.patch sbcl-1.0.19-default-sbcl-home.patch Log Message: * Tue Jul 28 2009 Rex Dieter - 1.0.30-1 - sbcl-1.0.30 sbcl-1.0.25-default_sbcl_home.patch: make-target-1.sh | 23 +++++++++++++++++++++++ src/runtime/runtime.c | 4 +--- 2 files changed, 24 insertions(+), 3 deletions(-) --- NEW FILE sbcl-1.0.25-default_sbcl_home.patch --- diff -up sbcl-1.0.25/make-target-1.sh.default-sbcl-home sbcl-1.0.25/make-target-1.sh --- sbcl-1.0.25/make-target-1.sh.default-sbcl-home 2006-04-27 11:32:42.000000000 -0500 +++ sbcl-1.0.25/make-target-1.sh 2009-02-03 08:18:10.000000000 -0600 @@ -20,6 +20,29 @@ LANG=C LC_ALL=C export LANG LC_ALL +# Allow the definition of INSTALL_ROOT and/or SBCL_HOME to correctly +# set the hard-coded SBCL_HOME macro in src/runtime/runtime.c + +DEFAULT_SBCL_HOME=${DEFAULT_SBCL_HOME:-/usr/local/lib/sbcl/} + +# Strip off any trailing / on the name; we'll add this later but don't +# need two +DEFAULT_SBCL_HOME=${DEFAULT_SBCL_HOME%/} + +export DEFAULT_SBCL_HOME + +file=src/runtime/sbcl-home.h +echo "/* This is a machine-generated file. */" > $file +echo "/* Please do not edit it by hand. */" >> $file +echo "/* Change the default SBCL_HOME by setting the */" >> $file +echo "/* DEFAULT_SBCL_HOME environment variable prior */" >> $file +echo "/* to building. See make-target-1.sh for more */" >> $file +echo "/* information. */" >> $file +echo "#ifndef SBCL_HOME" >> $file +echo "#define SBCL_HOME \"$DEFAULT_SBCL_HOME/\"" >> $file +echo "#endif" >> $file + + # Build the runtime system and symbol table (.nm) file. # # (This C build has to come after the first genesis in order to get diff -up sbcl-1.0.25/src/runtime/runtime.c.default-sbcl-home sbcl-1.0.25/src/runtime/runtime.c --- sbcl-1.0.25/src/runtime/runtime.c.default-sbcl-home 2009-01-25 18:56:09.000000000 -0600 +++ sbcl-1.0.25/src/runtime/runtime.c 2009-02-03 08:19:24.000000000 -0600 @@ -66,9 +66,7 @@ #include "interr.h" #endif -#ifndef SBCL_HOME -#define SBCL_HOME "/usr/local/lib/sbcl/" -#endif +#include "sbcl-home.h" #ifdef LISP_FEATURE_HPUX extern void *return_from_lisp_stub; sbcl-1.0.28-optflags.patch: contrib/asdf-module.mk | 2 ++ src/runtime/Config.ppc-linux | 2 +- src/runtime/Config.sparc-linux | 1 + src/runtime/Config.x86-linux | 2 ++ src/runtime/Config.x86_64-linux | 2 +- 5 files changed, 7 insertions(+), 2 deletions(-) --- NEW FILE sbcl-1.0.28-optflags.patch --- diff -up sbcl-1.0.28/contrib/asdf-module.mk.optflags sbcl-1.0.28/contrib/asdf-module.mk --- sbcl-1.0.28/contrib/asdf-module.mk.optflags 2009-04-28 11:02:13.000000000 -0500 +++ sbcl-1.0.28/contrib/asdf-module.mk 2009-04-30 12:22:56.509637395 -0500 @@ -20,6 +20,8 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME CC:=$(shell cygpath -m $(shell readlink -fn $(shell which $(CC)))) endif +EXTRA_CFLAGS += $(RPM_OPT_FLAGS) + export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS all: $(EXTRA_ALL_TARGETS) diff -up sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags sbcl-1.0.28/src/runtime/Config.ppc-linux --- sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags 2006-11-19 05:26:16.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.ppc-linux 2009-04-30 12:21:36.861636752 -0500 @@ -9,7 +9,7 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. -CFLAGS = -g +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags sbcl-1.0.28/src/runtime/Config.sparc-linux --- sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags 2005-09-16 08:26:39.000000000 -0500 +++ sbcl-1.0.28/src/runtime/Config.sparc-linux 2009-04-30 12:21:36.862636949 -0500 @@ -10,6 +10,7 @@ # files for more information. ASFLAGS = -g -Wall +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags sbcl-1.0.28/src/runtime/Config.x86_64-linux --- sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86_64-linux 2009-04-30 12:21:36.863636867 -0500 @@ -34,7 +34,7 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif -CFLAGS += -fno-omit-frame-pointer +CFLAGS += -fno-omit-frame-pointer $(RPM_OPT_FLAGS) GC_SRC = gencgc.c diff -up sbcl-1.0.28/src/runtime/Config.x86-linux.optflags sbcl-1.0.28/src/runtime/Config.x86-linux --- sbcl-1.0.28/src/runtime/Config.x86-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86-linux 2009-04-30 12:21:36.864637274 -0500 @@ -38,6 +38,8 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif +CFLAGS += $(RPM_OPT_FLAGS) + GC_SRC = gencgc.c # Nothing to do for after-grovel-headers. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-10/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 5 Nov 2008 16:37:25 -0000 1.42 +++ .cvsignore 29 Jul 2009 19:38:25 -0000 1.43 @@ -1 +1 @@ -sbcl-1.0.22-source.tar.bz2 +sbcl-1.0.30-source.tar.bz2 Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-10/sbcl.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- sbcl.spec 5 Nov 2008 16:37:25 -0000 1.99 +++ sbcl.spec 29 Jul 2009 19:38:25 -0000 1.100 @@ -8,11 +8,11 @@ %define sbcl_shell /bin/bash # threading support -%{?!_without_threads:%define _with_threads --with-threads} +%{?!_without_threads:%global _with_threads --with-threads} Name: sbcl Summary: Steel Bank Common Lisp -Version: 1.0.22 +Version: 1.0.30 Release: 1%{?dist} License: BSD @@ -22,9 +22,9 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} > 8 # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 -ExclusiveArch: i386 x86_64 sparcv9 +ExclusiveArch: %{ix86} x86_64 sparcv9 %else -ExclusiveArch: i386 x86_64 ppc sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc sparcv9 %endif # Pre-generated html docs (not used) @@ -81,14 +81,16 @@ Source201: sbcl.rc Source202: sbcl-install-clc.lisp %endif -Patch1: sbcl-1.0.19-default-sbcl-home.patch +Patch1: sbcl-1.0.25-default_sbcl_home.patch Patch2: sbcl-0.9.5-personality.patch -Patch3: sbcl-1.0.16-optflags.patch +Patch3: sbcl-1.0.28-optflags.patch Patch4: sbcl-0.9.17-LIB_DIR.patch Patch6: sbcl-0.9.5-verbose-build.patch # Allow override of contrib test failure(s) Patch7: sbcl-1.0.2-permissive.patch +## upstream patches + Requires(post): /sbin/install-info Requires(preun): /sbin/install-info # doc generation @@ -112,7 +114,7 @@ fi #sed -i -e "s|/usr/local/lib/sbcl/|%{_libdir}/sbcl/|" src/runtime/runtime.c #or patch to use SBCL_HOME env var -%patch1 -p1 -b .default-sbcl-home +%patch1 -p1 -b .default_sbcl_home %patch2 -p1 -b .personality %patch3 -p1 -b .optflags %patch4 -p1 -b .LIB_DIR @@ -232,7 +234,7 @@ fi %files %defattr(-,root,root) %doc BUGS COPYING README CREDITS NEWS TLA TODO -%doc SUPPORT STYLE PRINCIPLES +%doc STYLE PRINCIPLES %{_bindir}/* %{_libdir}/sbcl/ %{_mandir}/man?/* @@ -250,6 +252,36 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 1.0.30-1 +- sbcl-1.0.30 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 28 2009 Rex Dieter - 1.0.29-1 +- sbcl-1.0.29 + +* Thu Apr 30 2009 Rex Dieter - 1.0.28-1 +- sbcl-1.0.28 + +* Wed Mar 04 2009 Rex Dieter - 1.0.26-1 +- sbcl-1.0.26 + +* Fri Feb 27 2009 Rex Dieter - 1.0.25-3 +- ExclusiveArch: s/i386/%%ix86/ + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 03 2009 Rex Dieter - 1.0.25-1 +- sbcl-1.0.25 + +* Wed Dec 31 2008 Rex Dieter - 1.0.24-1 +- sbcl-1.0.24 + +* Mon Dec 01 2008 Rex Dieter - 1.0.23-1 +- sbcl-1.0.23 + * Thu Oct 30 2008 Rex Dieter - 1.0.22-1 - sbcl-1.0.22 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/F-10/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 5 Nov 2008 16:37:25 -0000 1.43 +++ sources 29 Jul 2009 19:38:25 -0000 1.44 @@ -1 +1 @@ -fad4f6634aedadd3212804b65ac89c96 sbcl-1.0.22-source.tar.bz2 +64a96ad21a5d57f27639c0801c00fe74 sbcl-1.0.30-source.tar.bz2 --- sbcl-1.0.16-optflags.patch DELETED --- --- sbcl-1.0.19-default-sbcl-home.patch DELETED --- From clumens at fedoraproject.org Wed Jul 29 19:40:18 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 29 Jul 2009 19:40:18 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.648, 1.649 anaconda.spec, 1.798, 1.799 sources, 1.782, 1.783 Message-ID: <20090729194018.5696B11C04D6@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31169 Modified Files: .cvsignore anaconda.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.648 retrieving revision 1.649 diff -u -p -r1.648 -r1.649 --- .cvsignore 23 Jul 2009 03:22:02 -0000 1.648 +++ .cvsignore 29 Jul 2009 19:40:17 -0000 1.649 @@ -1 +1,2 @@ anaconda-12.5.tar.bz2 +anaconda-12.6.tar.bz2 Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.798 retrieving revision 1.799 diff -u -p -r1.798 -r1.799 --- anaconda.spec 24 Jul 2009 16:51:53 -0000 1.798 +++ anaconda.spec 29 Jul 2009 19:40:18 -0000 1.799 @@ -3,8 +3,8 @@ Summary: Graphical system installer Name: anaconda -Version: 12.5 -Release: 2%{?dist} +Version: 12.6 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://fedoraproject.org/wiki/Anaconda @@ -30,7 +30,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version %define rpmpythonver 4.2-0.61 %define slangver 2.0.6-2 %define yumver 2.9.2 -%define rhplver 0.170 %define partedver 1.8.1 %define pypartedver 2.0.0 %define syscfgdatever 1.9.0 @@ -67,7 +66,6 @@ BuildRequires: popt-devel BuildRequires: pykickstart >= %{pykickstartver} BuildRequires: python-devel BuildRequires: python-urlgrabber -BuildRequires: rhpl BuildRequires: rpm-python >= %{rpmpythonver} BuildRequires: slang-devel >= %{slangver} BuildRequires: xmlto @@ -84,7 +82,6 @@ BuildRequires: iscsi-initiator-utils-dev Requires: policycoreutils Requires: rpm-python >= %{rpmpythonver} Requires: comps-extras -Requires: rhpl >= %{rhplver} Requires: parted >= %{partedver} Requires: pyparted >= %{pypartedver} Requires: yum >= %{yumver} @@ -115,7 +112,7 @@ Requires: mdadm Requires: lvm2 Requires: util-linux-ng >= 2.15.1 %ifnarch s390 s390x ppc64 -Requires: system-config-keyboard +Requires: system-config-keyboard >= 1.3.0 %endif Requires: hal, dbus-python Requires: cracklib-python @@ -186,7 +183,6 @@ update-desktop-database &> /dev/null || %files -f %{name}.lang %defattr(-,root,root) %doc COPYING -%doc ChangeLog %doc docs/command-line.txt %doc docs/install-methods.txt %doc docs/kickstart-docs.txt @@ -212,8 +208,29 @@ update-desktop-database &> /dev/null || %endif %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 12.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Wed Jul 29 2009 Chris Lumens - 12.6-1 +- Fix CDLABEL substitution in syslinux.cfg for x86 boot.iso (katzj) +- And finish off the removal of rhpl (katzj) +- Use keyboard bits from system-config-keyboard now (katzj) +- Use python-meh instead of our own exception handling now (clumens) +- NM no longer exposes information through HAL (#514501). (clumens) +- Put mkdir into /sbin on the initrd, too. (clumens) +- Make sure controlunits.sh is installed to initrd on s390 (dcantrell) +- Remove ChangeLog (#512502) (dcantrell) +- Add s390utils-cmsfs in upd-instroot for s390 (dcantrell) +- Make sure s390 gets /lib/ld64.so.1 (dcantrell) +- Skip writeDisabledNetInfo() when loader starts on s390 (dcantrell) +- Fix part --onpart= to print the device name instead of the __str__. + (clumens) +- Just pull in all python modules for stage2 (katzj) +- Trim PACKAGES list in upd-instroot. (dcantrell) +- Update linuxrc.s390 and friends to reflect review comments. (maier) +- Log non-upgradable upgrade candidate roots. (rvykydal) +- unmountFilesystems -> umountFilesystems (#510970). (clumens) +- Disable devel repos on release (#503798) (katzj) +- Work around problems with live installs and dpi other than 96 (#506512) + (katzj) +- Fix obvious typo in font name (katzj) * Wed Jul 22 2009 David Cantrell - 12.5-1 - New build because koji hates me. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.782 retrieving revision 1.783 diff -u -p -r1.782 -r1.783 --- sources 23 Jul 2009 03:22:02 -0000 1.782 +++ sources 29 Jul 2009 19:40:18 -0000 1.783 @@ -1 +1 @@ -daaf091cb9eda754deb90ad9196f0730 anaconda-12.5.tar.bz2 +3f9d1f4802ad88ff69deae6879854b1b anaconda-12.6.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 19:41:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:41:33 +0000 Subject: [pkgdb] perl-Tk-Stderr: hvad has requested approveacls Message-ID: <20090729194133.C48D210F882@bastion2.fedora.phx.redhat.com> hvad has requested the approveacls acl on perl-Tk-Stderr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From pkgdb at fedoraproject.org Wed Jul 29 19:41:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 19:41:36 +0000 Subject: [pkgdb] perl-Tk-Stderr had acl change status Message-ID: <20090729194136.649D210F897@bastion2.fedora.phx.redhat.com> hvad has set the approveacls acl on perl-Tk-Stderr (Fedora devel) to Approved for hvad To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tk-Stderr From krh at fedoraproject.org Wed Jul 29 19:48:21 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Wed, 29 Jul 2009 19:48:21 +0000 (UTC) Subject: rpms/libdrm/devel libdrm-page-flip.patch, NONE, 1.1 libdrm.spec, 1.81, 1.82 Message-ID: <20090729194821.8DAEA11C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/libdrm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1492 Modified Files: libdrm.spec Added Files: libdrm-page-flip.patch Log Message: * Wed Jul 29 2009 Kristian H?gsberg - 2.4.12-0.6 - Add libdrm support for KMS pageflip ioctl. libdrm-page-flip.patch: libdrm/xf86drm.h | 18 ++++++++++++++++ libdrm/xf86drmMode.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++++ libdrm/xf86drmMode.h | 3 -- shared-core/drm.h | 26 +++++++++++++++++++++++- shared-core/drm_mode.h | 16 ++++++++++++++ 5 files changed, 113 insertions(+), 3 deletions(-) --- NEW FILE libdrm-page-flip.patch --- diff --git a/libdrm/xf86drm.h b/libdrm/xf86drm.h index c1d173c..67bea37 100644 --- a/libdrm/xf86drm.h +++ b/libdrm/xf86drm.h @@ -667,4 +667,22 @@ extern void drmMsg(const char *format, ...); extern int drmSetMaster(int fd); extern int drmDropMaster(int fd); +#define DRM_EVENT_CONTEXT_VERSION 1 + +typedef struct _drmEventContext { + + /* This struct is versioned so we can add more pointers if we + * add more events. */ + int version; + + void (*page_flip_handler)(int fd, + unsigned int frame, + unsigned int tv_sec, + unsigned int tv_usec, + void *user_data); + +} drmEventContext, *drmEventContextPtr; + +extern int drmHandleEvent(int fd, drmEventContextPtr evctx); + #endif diff --git a/libdrm/xf86drmMode.c b/libdrm/xf86drmMode.c index ea11207..f601a00 100644 --- a/libdrm/xf86drmMode.c +++ b/libdrm/xf86drmMode.c @@ -664,3 +664,56 @@ int drmModeCrtcSetGamma(int fd, uint32_t crtc_id, uint32_t size, return 0; } + +int drmModePageFlip(int fd, uint32_t crtc_id, uint32_t fb_id, void *user_data) +{ + struct drm_mode_page_flip flip; + + flip.fb_id = fb_id; + flip.crtc_id = crtc_id; + flip.user_data = VOID2U64(user_data); + flip.flags = 0; + + return drmIoctl(fd, DRM_IOCTL_MODE_PAGE_FLIP, &flip); +} + +int drmHandleEvent(int fd, drmEventContextPtr evctx) +{ + char buffer[1024]; + int len, i; + struct drm_event *e; + struct drm_event_page_flip *page_flip; + + /* The DRM read semantics guarantees that we always get only + * complete events. */ + + len = read(fd, buffer, sizeof buffer); + if (len == 0) + return 0; + if (len < sizeof *e) + return -1; + + i = 0; + while (i < len) { + e = (struct drm_event *) &buffer[i]; + switch (e->type) { + case DRM_EVENT_MODE_PAGE_FLIP: + if (evctx->version < 1 || + evctx->page_flip_handler == NULL) + break; + page_flip = (struct drm_event_page_flip *) e; + evctx->page_flip_handler(fd, + page_flip->frame, + page_flip->tv_sec, + page_flip->tv_usec, + U642VOID (page_flip->user_data)); + break; + + default: + break; + } + i += e->length; + } + + return 0; +} diff --git a/libdrm/xf86drmMode.h b/libdrm/xf86drmMode.h index 62304bb..fe64707 100644 --- a/libdrm/xf86drmMode.h +++ b/libdrm/xf86drmMode.h @@ -259,8 +259,6 @@ typedef struct _drmModeConnector { uint32_t *encoders; /**< List of encoder ids */ } drmModeConnector, *drmModeConnectorPtr; - - extern void drmModeFreeModeInfo( drmModeModeInfoPtr ptr ); extern void drmModeFreeResources( drmModeResPtr ptr ); extern void drmModeFreeFB( drmModeFBPtr ptr ); @@ -362,3 +360,4 @@ extern int drmModeCrtcSetGamma(int fd, uint32_t crtc_id, uint32_t size, uint16_t *red, uint16_t *green, uint16_t *blue); extern int drmModeCrtcGetGamma(int fd, uint32_t crtc_id, uint32_t size, uint16_t *red, uint16_t *green, uint16_t *blue); +extern int drmModePageFlip(int fd, uint32_t crtc_id, uint32_t fb_id, void *user_data); diff --git a/shared-core/drm.h b/shared-core/drm.h index 97fab9a..8b504cb 100644 --- a/shared-core/drm.h +++ b/shared-core/drm.h @@ -1113,7 +1113,7 @@ struct drm_gem_open { #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xAD, struct drm_mode_fb_cmd) #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xAE, struct drm_mode_fb_cmd) #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, uint32_t) -#define DRM_IOCTL_MODE_REPLACEFB DRM_IOWR(0xB0, struct drm_mode_fb_cmd) +#define DRM_IOCTL_MODE_PAGE_FLIP DRM_IOW( 0xB0, struct drm_mode_page_flip) /*@}*/ @@ -1128,6 +1128,30 @@ struct drm_gem_open { #define DRM_COMMAND_BASE 0x40 #define DRM_COMMAND_END 0xA0 +/** + * Header for events written back to userspace on the drm fd. The + * type defines the type of event, the length specifies the total + * length of the event (including the header), and user_data is + * typically a 64 bit value passed with the ioctl that triggered the + * event. A read on the drm fd will always only return complete + * events, that is, if for example the read buffer is 100 bytes, and + * there are two 64 byte events pending, only one will be returned. + */ +struct drm_event { + uint32_t type; + uint32_t length; +}; + +#define DRM_EVENT_MODE_PAGE_FLIP 0x01 + +struct drm_event_page_flip { + struct drm_event base; + uint64_t user_data; + uint32_t tv_sec; + uint32_t tv_usec; + uint32_t frame; +}; + /* typedef area */ #ifndef __KERNEL__ typedef struct drm_clip_rect drm_clip_rect_t; diff --git a/shared-core/drm_mode.h b/shared-core/drm_mode.h index 9b92733..bebe4e7 100644 --- a/shared-core/drm_mode.h +++ b/shared-core/drm_mode.h @@ -270,4 +270,20 @@ struct drm_mode_crtc_lut { uint64_t blue; }; +#define DRM_MODE_PAGE_FLIP_WAIT (1<<0) /* block on previous page flip */ +#define DRM_MODE_PAGE_FLIP_FLAGS_MASK (DRM_MODE_PAGE_FLIP_WAIT) + +struct drm_mode_page_flip { + /** Handle of new front buffer */ + uint32_t fb_id; + uint32_t crtc_id; + + /* 64 bit cookie returned to userspace in the page flip event. */ + uint64_t user_data; + /** + * page flip flags (wait on flip only for now) + */ + uint32_t flags; +}; + #endif Index: libdrm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/libdrm.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- libdrm.spec 29 Jul 2009 19:29:33 -0000 1.81 +++ libdrm.spec 29 Jul 2009 19:48:21 -0000 1.82 @@ -3,7 +3,7 @@ Summary: Direct Rendering Manager runtime library Name: libdrm Version: 2.4.12 -Release: 0.5%{?dist} +Release: 0.6%{?dist} License: MIT Group: System Environment/Libraries URL: http://dri.sourceforge.net @@ -106,7 +106,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdrm_nouveau.pc %changelog -* Wed Jul 29 2009 Kristian H?gsberg - 2.4.12-0.5 +* Wed Jul 29 2009 Kristian H?gsberg - 2.4.12-0.6 - Add libdrm support for KMS pageflip ioctl. * Tue Jul 28 2009 Ben Skeggs 2.4.12-0.4 From krh at fedoraproject.org Wed Jul 29 19:58:38 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Wed, 29 Jul 2009 19:58:38 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel dri2-page-flip.patch, NONE, 1.1 xorg-x11-proto-devel.spec, 1.103, 1.104 Message-ID: <20090729195838.72D0F11C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5015 Modified Files: xorg-x11-proto-devel.spec Added Files: dri2-page-flip.patch Log Message: * Wed Jul 29 2009 Kristian H?gsberg - 7.4-26 - Add patch for DRI2 page flipping. dri2-page-flip.patch: dri2proto.h | 11 ++++++++++- dri2proto.txt | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) --- NEW FILE dri2-page-flip.patch --- diff --git a/dri2proto.h b/dri2proto.h index 8d76079..37873c4 100644 --- a/dri2proto.h +++ b/dri2proto.h @@ -35,7 +35,7 @@ #define DRI2_NAME "DRI2" #define DRI2_MAJOR 1 -#define DRI2_MINOR 1 +#define DRI2_MINOR 2 #define DRI2NumberErrors 0 #define DRI2NumberEvents 0 @@ -49,6 +49,7 @@ #define X_DRI2GetBuffers 5 #define X_DRI2CopyRegion 6 #define X_DRI2GetBuffersWithFormat 7 +#define X_DRI2SwapBuffers 8 typedef struct { CARD32 attachment B32; @@ -191,4 +192,12 @@ typedef struct { } xDRI2CopyRegionReply; #define sz_xDRI2CopyRegionReply 32 +typedef struct { + CARD8 reqType; + CARD8 dri2ReqType; + CARD16 length B16; + CARD32 drawable B32; +} xDRI2SwapBuffersReq; +#define sz_xDRI2SwapBuffersReq 8 + #endif diff --git a/dri2proto.txt b/dri2proto.txt index e931bfb..1bad3b9 100644 --- a/dri2proto.txt +++ b/dri2proto.txt @@ -105,6 +105,11 @@ DRI2 implementation of direct rendering GLX, should use these enty points to copy contents back and forth to as necessary to ensure consistent rendering. +The client may also use the DRI2SwapBuffers function to request a swap +of the front and back buffers. If the display server supports it, this +operation may be preferred, since it may be easier and/or more performant +for the server to perform a simple buffer swap rather than a blit. + ? ? ? ? ? ? @@ -288,6 +293,21 @@ The name of this extension is "DRI2". the server has seen the request before proceeding with rendering the next frame. +???? + DRI2SwapBuffers + drawable: DRAWABLE + ? + buffers: LISTofDRI2BUFFER +???? + Errors: Window + + Schedule a swap of the front and back buffers with the display + server. + + This request has no reply. The server is expected to either perform + a buffer exchange or queue one before returning. The client should + invalidate its render buffers after sending this request, causing + a subsequent GetBuffers request to get updated buffer info. ???? DRI2GetBuffersWithFormat @@ -542,6 +562,27 @@ A.3 Protocol Events The DRI2 extension specifies no events. +???? + DRI2SwapBuffers + 1 CARD8 major opcode + 1 7 DRI2 opcode + 2 8 length + 4 DRAWABLE drawable + ? + 1 1 Reply + 1 unused + 2 CARD16 sequence number + 4 0 reply length + 4 CARD32 buffer count + 4 CARD32 unused + 4 CARD32 unused + 4 CARD32 unused + 4 CARD32 unused + 4 CARD32 unused + 4 CARD32 unused + 5n LISTofDRI2BUFFER buffers +???? + A.4 Protocol Errors Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- xorg-x11-proto-devel.spec 27 Jul 2009 08:36:50 -0000 1.103 +++ xorg-x11-proto-devel.spec 29 Jul 2009 19:58:38 -0000 1.104 @@ -42,6 +42,8 @@ Source28: http://www.x.org/pub/individua Source29: http://www.x.org/pub/individual/proto/xproto-7.0.15.tar.bz2 Source30: http://www.x.org/pub/individual/proto/xproxymanagementprotocol-1.0.2.tar.bz2 +Patch1: dri2-page-flip.patch + BuildRequires: pkgconfig BuildRequires: xorg-x11-util-macros >= 1.0.2-1 @@ -57,8 +59,14 @@ X.Org X11 Protocol headers %prep %setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -a5 -a7 -a8 -a9 -a10 -a13 -a14 -a15 -a16 -a17 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a27 -a28 -a29 -a30 -a31 +cd dri2proto-2.1 +%patch1 -p1 -b .page-flip +cd .. + %build + + # Proceed through each proto package directory, building them all for dir in $(ls -1) ; do pushd $dir @@ -250,6 +258,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 29 2009 Kristian H?gsberg - 7.4-26 +- Add patch for DRI2 page flipping. + * Mon Jul 27 2009 Fedora Release Engineering - 7.4-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From krh at fedoraproject.org Wed Jul 29 19:59:25 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Wed, 29 Jul 2009 19:59:25 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel xorg-x11-proto-devel.spec, 1.104, 1.105 Message-ID: <20090729195925.358B311C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5356 Modified Files: xorg-x11-proto-devel.spec Log Message: * Wed Jul 29 2009 Kristian H?gsberg - 7.4-27 - Add patch for DRI2 page flipping. Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- xorg-x11-proto-devel.spec 29 Jul 2009 19:58:38 -0000 1.104 +++ xorg-x11-proto-devel.spec 29 Jul 2009 19:59:25 -0000 1.105 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 26%{?dist} +Release: 27%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -258,7 +258,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog -* Wed Jul 29 2009 Kristian H?gsberg - 7.4-26 +* Wed Jul 29 2009 Kristian H?gsberg - 7.4-27 - Add patch for DRI2 page flipping. * Mon Jul 27 2009 Fedora Release Engineering - 7.4-26 From rdieter at fedoraproject.org Wed Jul 29 20:16:17 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 20:16:17 +0000 (UTC) Subject: rpms/maxima/devel maxima.spec,1.134,1.135 Message-ID: <20090729201617.EF58111C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11933 Modified Files: maxima.spec Log Message: cleanup %%files a bit Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/devel/maxima.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- maxima.spec 28 Jul 2009 15:39:23 -0000 1.134 +++ maxima.spec 29 Jul 2009 20:16:17 -0000 1.135 @@ -361,11 +361,14 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/maxima/%{maxima_ver} %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/ +%doc %{_datadir}/maxima/%{maxima_ver}/doc/*.h* +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt.utf8/ -%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR* +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR/ +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR.utf8/ %{_datadir}/maxima/%{maxima_ver}/share/ %dir %{_libdir}/maxima/ %dir %{_libdir}/maxima/%{maxima_ver}/ From smilner at fedoraproject.org Wed Jul 29 20:21:06 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 20:21:06 +0000 (UTC) Subject: rpms/Django/devel .cvsignore, 1.11, 1.12 Django.spec, 1.20, 1.21 sources, 1.11, 1.12 Message-ID: <20090729202106.D9EBF11C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13436 Modified Files: .cvsignore Django.spec sources Log Message: Update for 1.0.3 security release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 14 Dec 2008 06:23:25 -0000 1.11 +++ .cvsignore 29 Jul 2009 20:21:06 -0000 1.12 @@ -1 +1 @@ -Django-1.0.2-final.tar.gz +Django-1.0.3.tar.gz Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/Django.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- Django.spec 24 Jul 2009 15:08:05 -0000 1.20 +++ Django.spec 29 Jul 2009 20:21:06 -0000 1.21 @@ -2,14 +2,14 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: Django -Version: 1.0.2 -Release: 4%{?dist} +Version: 1.0.3 +Release: 1%{?dist} Summary: A high-level Python Web framework Group: Development/Languages License: BSD URL: http://www.djangoproject.com/ -Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}-final.tar.gz +Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz # stub simplejson module that imports the system version Source1: simplejson-init.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,7 @@ Python Web framework. %prep -%setup -q -n %{name}-%{version}-final +%setup -q -n %{name}-%{version} # remove bundled simplejson cd django/utils/simplejson/ rm -rf * @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Fedora Release Engineering - 1.0.3-1 +- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 14 Dec 2008 06:23:25 -0000 1.11 +++ sources 29 Jul 2009 20:21:06 -0000 1.12 @@ -1 +1 @@ -89353e3749668778f1370d2e444f3adc Django-1.0.2-final.tar.gz +3c5435b015d8cde602b17a5f0c9873dc Django-1.0.3.tar.gz From jgreguske at fedoraproject.org Wed Jul 29 20:21:59 2009 From: jgreguske at fedoraproject.org (Jay Greguske) Date: Wed, 29 Jul 2009 20:21:59 +0000 (UTC) Subject: rpms/pycdio/F-11 import.log, NONE, 1.1 pycdio-remove-shebangs.patch, NONE, 1.1 pycdio.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729202159.074EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jgreguske Update of /cvs/pkgs/rpms/pycdio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13913/F-11 Modified Files: .cvsignore sources Added Files: import.log pycdio-remove-shebangs.patch pycdio.spec Log Message: Initial SRPM import for F-11 --- NEW FILE import.log --- pycdio-0_15-3_fc10:F-11:pycdio-0.15-3.fc10.src.rpm:1248899081 pycdio-remove-shebangs.patch: cdio.py | 1 - iso9660.py | 2 -- 2 files changed, 3 deletions(-) --- NEW FILE pycdio-remove-shebangs.patch --- --- cdio.py +++ cdio.py2 @@ -1,4 +1,3 @@ -#!/usr/bin/python # $Id: cdio.py,v 1.6 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- iso9660.py +++ iso9660.py2 @@ -1,5 +1,3 @@ -#!/usr/bin/python -# # $Id: iso9660.py,v 1.12 2008/05/01 16:55:03 karl Exp $ # # Copyright (C) 2006, 2008 Rocky Bernstein --- NEW FILE pycdio.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pycdio Version: 0.15 Release: 3%{?dist} Summary: A Python interface to the CD Input and Control library Group: Development/Libraries License: GPLv3+ URL: http://www.gnu.org/software/libcdio/ Source0: ftp://ftp.gnu.org/pub/gnu/libcdio/%{name}-%{version}.tar.gz # Remove shebangs in the modules # a patch was emailed and accepted on libcdio-pycdio-devel at gnu.org Patch0: pycdio-remove-shebangs.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel,python-setuptools,libcdio-devel,swig Requires: python %description The pycdio (and libcdio) libraries encapsulate CD-ROM reading and control. Python programs wishing to be oblivious of the OS- and device-dependent properties of a CD-ROM can use this library. %prep %setup -q %patch0 %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} chmod 755 %{buildroot}/%{python_sitearch}/*.so %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{python_sitearch}/* %doc README.txt %changelog * Tue Jul 28 2009 Jay Greguske - 0.15-3 - Added a patch to remove unnecessary shebangs * Mon Jul 27 2009 Jay Greguske - 0.15-2 - Corrected the license field * Tue Jul 21 2009 Jay Greguske - 0.15-1 - Initial RPM release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 21:51:47 -0000 1.1 +++ .cvsignore 29 Jul 2009 20:21:58 -0000 1.2 @@ -0,0 +1 @@ +pycdio-0.15.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pycdio/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 21:51:47 -0000 1.1 +++ sources 29 Jul 2009 20:21:58 -0000 1.2 @@ -0,0 +1 @@ +e072e6d0fff4850f3169f8be3def4888 pycdio-0.15.tar.gz From smilner at fedoraproject.org Wed Jul 29 20:27:56 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 20:27:56 +0000 (UTC) Subject: rpms/Django/devel Django.spec,1.21,1.22 Message-ID: <20090729202756.8607D11C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16064 Modified Files: Django.spec Log Message: Fixed changelog (oops). Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/Django.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- Django.spec 29 Jul 2009 20:21:06 -0000 1.21 +++ Django.spec 29 Jul 2009 20:27:56 -0000 1.22 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -92,7 +92,10 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog -* Wed Jul 29 2009 Fedora Release Engineering - 1.0.3-1 +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 +- Fix changelog. + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 - Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ * Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 From langel at fedoraproject.org Wed Jul 29 20:30:18 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Wed, 29 Jul 2009 20:30:18 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch, NONE, 1.1 java-1.6.0-openjdk.spec, 1.129, 1.130 java-1.6.0-openjdk-libx11.patch, 1.3, NONE Message-ID: <20090729203018.A7D0A11C0424@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17172 Modified Files: java-1.6.0-openjdk.spec Added Files: java-1.6.0-openjdk-x11.patch Removed Files: java-1.6.0-openjdk-libx11.patch Log Message: * Wed Jul 29 2009 Lillian Angel - 1:1.6.0-27.b16 - Renamed java-1.6.0-openjdk-libx11.patch to java-1.6.0-openjdk-x11.patch and updated. java-1.6.0-openjdk-x11.patch: awt_GraphicsEnv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE java-1.6.0-openjdk-x11.patch --- --- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 +++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 @@ -41,7 +41,7 @@ #include #include -#include +#include extern int XShmQueryExtension(); Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- java-1.6.0-openjdk.spec 29 Jul 2009 17:48:48 -0000 1.129 +++ java-1.6.0-openjdk.spec 29 Jul 2009 20:30:18 -0000 1.130 @@ -133,7 +133,7 @@ Name: java-%{javaver}-%{origin} Version: %{javaver}.%{buildver} -Release: 26.%{openjdkver}%{?dist} +Release: 27.%{openjdkver}%{?dist} # java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons, # and this change was brought into RHEL-4. java-1.5.0-ibm packages # also included the epoch in their virtual provides. This created a @@ -172,7 +172,7 @@ Patch6: java-1.6.0-openjdk-sparc-fixes Patch7: java-1.6.0-openjdk-sparc-hotspot.patch Patch8: java-1.6.0-openjdk-netx.patch Patch9: java-1.6.0-openjdk-execvpe.patch -Patch10: java-1.6.0-openjdk-libx11.patch +Patch10: java-1.6.0-openjdk-x11.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -966,6 +966,10 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Wed Jul 29 2009 Lillian Angel - 1:1.6.0-27.b16 +- Renamed java-1.6.0-openjdk-libx11.patch to java-1.6.0-openjdk-x11.patch +and updated. + * Wed Jul 29 2009 Lillian Angel - 1:1.6.0-26.b16 - Added java-1.6.0-openjdk-libx11.patch. --- java-1.6.0-openjdk-libx11.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 29 20:30:44 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 20:30:44 +0000 (UTC) Subject: rpms/maxima/F-11 .cvsignore, 1.29, 1.30 maxima.spec, 1.127, 1.128 sources, 1.27, 1.28 maxima-5.9.4-gcl_setarch.patch, 1.1, NONE Message-ID: <20090729203044.B631E11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17349 Modified Files: .cvsignore maxima.spec sources Removed Files: maxima-5.9.4-gcl_setarch.patch Log Message: sync w/devel branch for 5.18.1 goodness Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-11/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 17 Dec 2008 16:39:57 -0000 1.29 +++ .cvsignore 29 Jul 2009 20:30:44 -0000 1.30 @@ -2,4 +2,4 @@ clog macref.pdf maxima.png maximabook-19-Sept-2004.pdf -maxima-5.17.1.tar.gz +maxima-5.18.1.tar.gz Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-11/maxima.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- maxima.spec 4 Mar 2009 18:40:16 -0000 1.127 +++ maxima.spec 29 Jul 2009 20:30:44 -0000 1.128 @@ -1,9 +1,9 @@ Summary: Symbolic Computation Program Name: maxima -Version: 5.17.1 +Version: 5.18.1 -Release: 7%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -25,8 +25,8 @@ ExclusiveArch: %{ix86} x86_64 ppc sparcv %ifarch %{ix86} %define _enable_cmucl --enable-cmucl %if 0%{?fedora} -# gcl/f8 bustage on i386: https://bugzilla.redhat.com/show_bug.cgi?id=451801 -%define _enable_gcl --enable-gcl +# temporarily disable -gcl (#496124) +#define _enable_gcl --enable-gcl %endif %endif @@ -34,8 +34,8 @@ ExclusiveArch: %{ix86} x86_64 ppc sparcv %define default_lisp sbcl %if 0%{?fedora} > 2 %define _enable_clisp --enable-clisp -# gcl busted on x86_64 atm: http://bugzilla.redhat.com/427250 -%define _enable_gcl --enable-gcl +# temporarily disable -gcl (#496124) +#define _enable_gcl --enable-gcl %define _enable_sbcl --enable-sbcl %else # epel/rhel @@ -47,8 +47,8 @@ ExclusiveArch: %{ix86} x86_64 ppc sparcv %define default_lisp sbcl # clisp: http://bugzilla.redhat.com/166347 (resolved) - clisp/ppc (still) awol. #define _enable_clisp --enable-clisp -# gcl: http://bugzilla.redhat.com/167952 -%define _enable_gcl --enable-gcl +# temporarily disable -gcl (#496124) +#define _enable_gcl --enable-gcl # sbcl: http://bugzilla.redhat.com/220053 (resolved) # sbcl: ppc/ld joy, "final link failed: Nonrepresentable section on output" http://bugzilla.redhat.com/448734 %define _enable_sbcl --enable-sbcl @@ -69,7 +69,6 @@ Obsoletes: %{name}-runtime-gcl < %{versi Obsoletes: %{name}-runtime-sbcl < %{version}-%{release} %endif - Source1: maxima.png Source2: xmaxima.desktop Source6: maxima-modes.el @@ -78,11 +77,8 @@ Source6: maxima-modes.el Source10: http://starship.python.net/crew/mike/TixMaxima/macref.pdf Source11: http://maxima.sourceforge.net/docs/maximabook/maximabook-19-Sept-2004.pdf -# maxima-runtime-gcl: Unrecoverable error: fault count too high (#187647) -Patch6: maxima-5.9.4-gcl_setarch.patch - -# Inhibit automatic compressing of info files. Compressed info -# files break maxima's internal help. +# Inhibit automatic compressing of info files. +# Compressed info files break maxima's internal help. %define __spec_install_post %{nil} # debuginfo.list ends up empty/blank anyway. disable %define debug_package %{nil} @@ -95,6 +91,9 @@ Obsoletes: %{name}-lang-pt-utf8 < %{vers Obsoletes: %{name}-lang-pt_BR < %{version}-%{release} Obsoletes: %{name}-lang-pt_BR-utf8 < %{version}-%{release} +# 5.18.0 tarball busted?, temporary +#BuildRequires: automake +BuildRequires: desktop-file-utils BuildRequires: time # texi2dvi %if 0%{?fedora} > 5 || 0%{?rhel} > 4 @@ -103,7 +102,6 @@ BuildRequires: texinfo-tex BuildRequires: texinfo %endif BuildRequires: tetex-latex -BuildRequires: desktop-file-utils # /usr/bin/wish BuildRequires: tk @@ -175,13 +173,6 @@ Summary: Maxima compiled with GCL Group: Applications/Engineering BuildRequires: gcl Requires: %{name} = %{version} -%if 0 -#if 0%{?fedora} > 4 || 0%{?rhel} > 4 -# See http://bugzilla.redhat.com/187647 -%define setarch_hack 1 -BuildRequires: setarch -Requires: setarch -%endif Obsoletes: maxima-exec-gcl < %{version}-%{release} Provides: %{name}-runtime = %{version} Provides: %{name}-runtime-gcl = %{version}-%{release} @@ -214,10 +205,6 @@ Maxima compiled with Steel Bank Common L # Extra docs install -p -m644 %{SOURCE10} . -%if 0%{?setarch_hack} == 1 -%patch6 -p1 -b .gcl-setarch -%endif - sed -i -e 's|@ARCH@|%{_target_cpu}|' src/maxima.in sed -i -e 's:/usr/local/info:/usr/share/info:' \ @@ -244,18 +231,14 @@ find -name CVS -type d | xargs rm -r make %{?_smp_mflags} # docs -pushd doc - - install -D -p -m644 %{SOURCE11} maximabook/maxima.pdf +install -D -p -m644 %{SOURCE11} doc/maximabook/maxima.pdf -# pushd info +# pushd doc/info # texi2dvi --pdf maxima.texi # popd - pushd intromax - pdflatex intromax.ltx - popd - +pushd doc/intromax + pdflatex intromax.ltx popd @@ -378,11 +361,14 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/maxima/%{maxima_ver} %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/ +%doc %{_datadir}/maxima/%{maxima_ver}/doc/*.h* +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt.utf8/ -%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR* +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR/ +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR.utf8/ %{_datadir}/maxima/%{maxima_ver}/share/ %dir %{_libdir}/maxima/ %dir %{_libdir}/maxima/%{maxima_ver}/ @@ -441,6 +427,24 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Rex Dieter - 5.18.1-6 +- rebuild (sbcl) + +* Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 29 2009 Rex Dieter - 5.18.1-3 +- disable -runtime-gcl until issues (selinux, bug #496124) are fixed + +* Sat May 02 2009 Rex Dieter - 5.18.1-2 +- rebuild (sbcl) + +* Sat Apr 18 2009 Rex Dieter - 5.18.1-1 +- maxima-5.18.1 + +* Fri Apr 17 2009 Rex Dieter - 5.18.0-1 +- maxima-5.18.0 + * Wed Mar 04 2009 Rex Dieter - 5.17.1-7 - respin (sbcl) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-11/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 17 Dec 2008 16:39:57 -0000 1.27 +++ sources 29 Jul 2009 20:30:44 -0000 1.28 @@ -1,4 +1,4 @@ 9faa5a513de43b5e7384216a8783f620 maximabook-19-Sept-2004.pdf c101a1ce604d31b02bbc2f37cced280d macref.pdf 2da3872c0bdcc0446ee933392a907f50 maxima.png -f49e7b978061a63423b0d486240d281e maxima-5.17.1.tar.gz +8be7388ad31b975335623b390bc2516e maxima-5.18.1.tar.gz --- maxima-5.9.4-gcl_setarch.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 29 20:31:39 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 20:31:39 +0000 (UTC) Subject: rpms/sbcl/EL-5 sbcl-1.0.25-default_sbcl_home.patch, NONE, 1.1 sbcl-1.0.28-optflags.patch, NONE, 1.1 sbcl-install-clc.lisp, NONE, 1.1 sbcl.rc, NONE, 1.1 sbcl.sh, 1.5, 1.6 .cvsignore, 1.26, 1.27 sbcl.spec, 1.63, 1.64 sources, 1.28, 1.29 sbcl-1.0.16-optflags.patch, 1.1, NONE sbcl-1.0.19-default-sbcl-home.patch, 1.1, NONE Message-ID: <20090729203139.43A0A11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/sbcl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17963 Modified Files: .cvsignore sbcl.spec sources Added Files: sbcl-1.0.25-default_sbcl_home.patch sbcl-1.0.28-optflags.patch sbcl-install-clc.lisp sbcl.rc sbcl.sh Removed Files: sbcl-1.0.16-optflags.patch sbcl-1.0.19-default-sbcl-home.patch Log Message: * Tue Jul 28 2009 Rex Dieter - 1.0.30-1 - sbcl-1.0.30 sbcl-1.0.25-default_sbcl_home.patch: make-target-1.sh | 23 +++++++++++++++++++++++ src/runtime/runtime.c | 4 +--- 2 files changed, 24 insertions(+), 3 deletions(-) --- NEW FILE sbcl-1.0.25-default_sbcl_home.patch --- diff -up sbcl-1.0.25/make-target-1.sh.default-sbcl-home sbcl-1.0.25/make-target-1.sh --- sbcl-1.0.25/make-target-1.sh.default-sbcl-home 2006-04-27 11:32:42.000000000 -0500 +++ sbcl-1.0.25/make-target-1.sh 2009-02-03 08:18:10.000000000 -0600 @@ -20,6 +20,29 @@ LANG=C LC_ALL=C export LANG LC_ALL +# Allow the definition of INSTALL_ROOT and/or SBCL_HOME to correctly +# set the hard-coded SBCL_HOME macro in src/runtime/runtime.c + +DEFAULT_SBCL_HOME=${DEFAULT_SBCL_HOME:-/usr/local/lib/sbcl/} + +# Strip off any trailing / on the name; we'll add this later but don't +# need two +DEFAULT_SBCL_HOME=${DEFAULT_SBCL_HOME%/} + +export DEFAULT_SBCL_HOME + +file=src/runtime/sbcl-home.h +echo "/* This is a machine-generated file. */" > $file +echo "/* Please do not edit it by hand. */" >> $file +echo "/* Change the default SBCL_HOME by setting the */" >> $file +echo "/* DEFAULT_SBCL_HOME environment variable prior */" >> $file +echo "/* to building. See make-target-1.sh for more */" >> $file +echo "/* information. */" >> $file +echo "#ifndef SBCL_HOME" >> $file +echo "#define SBCL_HOME \"$DEFAULT_SBCL_HOME/\"" >> $file +echo "#endif" >> $file + + # Build the runtime system and symbol table (.nm) file. # # (This C build has to come after the first genesis in order to get diff -up sbcl-1.0.25/src/runtime/runtime.c.default-sbcl-home sbcl-1.0.25/src/runtime/runtime.c --- sbcl-1.0.25/src/runtime/runtime.c.default-sbcl-home 2009-01-25 18:56:09.000000000 -0600 +++ sbcl-1.0.25/src/runtime/runtime.c 2009-02-03 08:19:24.000000000 -0600 @@ -66,9 +66,7 @@ #include "interr.h" #endif -#ifndef SBCL_HOME -#define SBCL_HOME "/usr/local/lib/sbcl/" -#endif +#include "sbcl-home.h" #ifdef LISP_FEATURE_HPUX extern void *return_from_lisp_stub; sbcl-1.0.28-optflags.patch: contrib/asdf-module.mk | 2 ++ src/runtime/Config.ppc-linux | 2 +- src/runtime/Config.sparc-linux | 1 + src/runtime/Config.x86-linux | 2 ++ src/runtime/Config.x86_64-linux | 2 +- 5 files changed, 7 insertions(+), 2 deletions(-) --- NEW FILE sbcl-1.0.28-optflags.patch --- diff -up sbcl-1.0.28/contrib/asdf-module.mk.optflags sbcl-1.0.28/contrib/asdf-module.mk --- sbcl-1.0.28/contrib/asdf-module.mk.optflags 2009-04-28 11:02:13.000000000 -0500 +++ sbcl-1.0.28/contrib/asdf-module.mk 2009-04-30 12:22:56.509637395 -0500 @@ -20,6 +20,8 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME CC:=$(shell cygpath -m $(shell readlink -fn $(shell which $(CC)))) endif +EXTRA_CFLAGS += $(RPM_OPT_FLAGS) + export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS all: $(EXTRA_ALL_TARGETS) diff -up sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags sbcl-1.0.28/src/runtime/Config.ppc-linux --- sbcl-1.0.28/src/runtime/Config.ppc-linux.optflags 2006-11-19 05:26:16.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.ppc-linux 2009-04-30 12:21:36.861636752 -0500 @@ -9,7 +9,7 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. -CFLAGS = -g +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags sbcl-1.0.28/src/runtime/Config.sparc-linux --- sbcl-1.0.28/src/runtime/Config.sparc-linux.optflags 2005-09-16 08:26:39.000000000 -0500 +++ sbcl-1.0.28/src/runtime/Config.sparc-linux 2009-04-30 12:21:36.862636949 -0500 @@ -10,6 +10,7 @@ # files for more information. ASFLAGS = -g -Wall +CFLAGS += $(RPM_OPT_FLAGS) LINKFLAGS += -v -rdynamic NM = ./linux-nm diff -up sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags sbcl-1.0.28/src/runtime/Config.x86_64-linux --- sbcl-1.0.28/src/runtime/Config.x86_64-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86_64-linux 2009-04-30 12:21:36.863636867 -0500 @@ -34,7 +34,7 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif -CFLAGS += -fno-omit-frame-pointer +CFLAGS += -fno-omit-frame-pointer $(RPM_OPT_FLAGS) GC_SRC = gencgc.c diff -up sbcl-1.0.28/src/runtime/Config.x86-linux.optflags sbcl-1.0.28/src/runtime/Config.x86-linux --- sbcl-1.0.28/src/runtime/Config.x86-linux.optflags 2006-11-13 10:03:31.000000000 -0600 +++ sbcl-1.0.28/src/runtime/Config.x86-linux 2009-04-30 12:21:36.864637274 -0500 @@ -38,6 +38,8 @@ ifdef LISP_FEATURE_SB_THREAD OS_LIBS += -lpthread endif +CFLAGS += $(RPM_OPT_FLAGS) + GC_SRC = gencgc.c # Nothing to do for after-grovel-headers. --- NEW FILE sbcl-install-clc.lisp --- ;;; -*- Mode: LISP; Package: CL-USER -*- ;;; ;;; Copyright (C) Peter Van Eynde 2001 and Kevin Rosenberg 2002-2003 ;;; ;;; License: LGPL v2 ;;; (in-package "COMMON-LISP-USER") (handler-case (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp") (error (e) (format t "~%Error during load of common-lisp-controller.lisp: ~A~%" e) (sb-unix:unix-exit 1))) (handler-case (common-lisp-controller:init-common-lisp-controller-v4 "sbcl") (error (e) (format t "~%Error running init-common-lisp-controller-v4: ~A~%" e) (sb-unix:unix-exit 1))) (when (probe-file #p"/etc/lisp.config") (load #p"/etc/lisp.config")) (setf (logical-pathname-translations "SYS") '(("SYS:**;*.*.*" #P"/usr/share/sbcl-source/**/*.*"))) (set-dispatch-macro-character #\# #\! (lambda (stream bang arg) (declare (ignore bang arg)) (read-line stream) (values))) (ignore-errors (format t "~%Saving to sbcl-new.core...") (sb-ext:gc :full t) (sb-ext:save-lisp-and-die "sbcl-new.core")) --- NEW FILE sbcl.rc --- ;;; -*- Lisp -*- ;;; this file gets installed as /etc/sbcl.rc and run on every ;;; invocation of sbcl (if (probe-file "/etc/lisp-config.lisp") (load "/etc/lisp-config.lisp") (format t "~%;;; Hey: there is no /etc/lisp-config.lisp file, please create one.")) Index: sbcl.sh =================================================================== RCS file: sbcl.sh diff -N sbcl.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sbcl.sh 29 Jul 2009 20:31:38 -0000 1.6 @@ -0,0 +1,67 @@ +#!/bin/sh + +if [ ! -f /usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp ] ; then + cat < /dev/null + mv sbcl-new.core sbcl.core || (echo FAILED ; cp sbcl-dist.core sbcl.core ) ) + ;; + remove-clc) + echo $0 removing clc-enabled image + cp /usr/lib/sbcl/sbcl-dist.core /usr/lib/sbcl/sbcl.core + ;; + rebuild) + echo $0 rebuilding... + shift + echo rebuilding $1 + /usr/bin/sbcl --noinform --sysinit ${RCFILE} --userinit /dev/null \ + --disable-debugger \ + --eval \ +"(handler-case + (progn + (asdf:operate 'asdf:compile-op (quote $1)) + (sb-unix:unix-exit 0)) + (error (e) + (ignore-errors (format t \"~&Build error: ~A~%\" e)) + (finish-output) + (sb-unix:unix-exit 1)))" || build_error + ;; + remove) + echo $0 removing packages... + shift + while [ ! -z "$1" ] ; do +rm -rf "/var/cache/common-lisp-controller/*/sbcl/${1}" +shift + done + ;; + *) + echo $0 unkown command $1 + echo known commands: rebuild, remove, install-clc, and remove-clc + exit 1 + ;; +esac + +exit 0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/EL-5/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 5 Nov 2008 17:18:55 -0000 1.26 +++ .cvsignore 29 Jul 2009 20:31:38 -0000 1.27 @@ -1 +1 @@ -sbcl-1.0.22-source.tar.bz2 +sbcl-1.0.30-source.tar.bz2 Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/EL-5/sbcl.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sbcl.spec 5 Nov 2008 17:18:55 -0000 1.63 +++ sbcl.spec 29 Jul 2009 20:31:39 -0000 1.64 @@ -8,11 +8,11 @@ %define sbcl_shell /bin/bash # threading support -%{?!_without_threads:%define _with_threads --with-threads} +%{?!_without_threads:%global _with_threads --with-threads} Name: sbcl Summary: Steel Bank Common Lisp -Version: 1.0.22 +Version: 1.0.30 Release: 1%{?dist} License: BSD @@ -22,9 +22,9 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} > 8 # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 -ExclusiveArch: i386 x86_64 sparcv9 +ExclusiveArch: %{ix86} x86_64 sparcv9 %else -ExclusiveArch: i386 x86_64 ppc sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc sparcv9 %endif # Pre-generated html docs (not used) @@ -81,14 +81,16 @@ Source201: sbcl.rc Source202: sbcl-install-clc.lisp %endif -Patch1: sbcl-1.0.19-default-sbcl-home.patch +Patch1: sbcl-1.0.25-default_sbcl_home.patch Patch2: sbcl-0.9.5-personality.patch -Patch3: sbcl-1.0.16-optflags.patch +Patch3: sbcl-1.0.28-optflags.patch Patch4: sbcl-0.9.17-LIB_DIR.patch Patch6: sbcl-0.9.5-verbose-build.patch # Allow override of contrib test failure(s) Patch7: sbcl-1.0.2-permissive.patch +## upstream patches + Requires(post): /sbin/install-info Requires(preun): /sbin/install-info # doc generation @@ -112,7 +114,7 @@ fi #sed -i -e "s|/usr/local/lib/sbcl/|%{_libdir}/sbcl/|" src/runtime/runtime.c #or patch to use SBCL_HOME env var -%patch1 -p1 -b .default-sbcl-home +%patch1 -p1 -b .default_sbcl_home %patch2 -p1 -b .personality %patch3 -p1 -b .optflags %patch4 -p1 -b .LIB_DIR @@ -232,7 +234,7 @@ fi %files %defattr(-,root,root) %doc BUGS COPYING README CREDITS NEWS TLA TODO -%doc SUPPORT STYLE PRINCIPLES +%doc STYLE PRINCIPLES %{_bindir}/* %{_libdir}/sbcl/ %{_mandir}/man?/* @@ -250,6 +252,36 @@ rm -rf %{buildroot} %changelog +* Tue Jul 28 2009 Rex Dieter - 1.0.30-1 +- sbcl-1.0.30 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 28 2009 Rex Dieter - 1.0.29-1 +- sbcl-1.0.29 + +* Thu Apr 30 2009 Rex Dieter - 1.0.28-1 +- sbcl-1.0.28 + +* Wed Mar 04 2009 Rex Dieter - 1.0.26-1 +- sbcl-1.0.26 + +* Fri Feb 27 2009 Rex Dieter - 1.0.25-3 +- ExclusiveArch: s/i386/%%ix86/ + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 03 2009 Rex Dieter - 1.0.25-1 +- sbcl-1.0.25 + +* Wed Dec 31 2008 Rex Dieter - 1.0.24-1 +- sbcl-1.0.24 + +* Mon Dec 01 2008 Rex Dieter - 1.0.23-1 +- sbcl-1.0.23 + * Thu Oct 30 2008 Rex Dieter - 1.0.22-1 - sbcl-1.0.22 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/EL-5/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 5 Nov 2008 17:18:55 -0000 1.28 +++ sources 29 Jul 2009 20:31:39 -0000 1.29 @@ -1 +1 @@ -fad4f6634aedadd3212804b65ac89c96 sbcl-1.0.22-source.tar.bz2 +64a96ad21a5d57f27639c0801c00fe74 sbcl-1.0.30-source.tar.bz2 --- sbcl-1.0.16-optflags.patch DELETED --- --- sbcl-1.0.19-default-sbcl-home.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 29 20:38:33 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 20:38:33 +0000 (UTC) Subject: rpms/kdepimlibs/devel kdepimlibs.spec,1.94,1.95 Message-ID: <20090729203833.7D66611C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20487 Modified Files: kdepimlibs.spec Log Message: * Wed Jul 29 2009 Rex Dieter - 4.2.98-3 - Conflicts: kdepim < 4.2.90 Index: kdepimlibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- kdepimlibs.spec 25 Jul 2009 04:29:30 -0000 1.94 +++ kdepimlibs.spec 29 Jul 2009 20:38:33 -0000 1.95 @@ -12,7 +12,7 @@ Name: kdepimlibs Version: 4.2.98 -Release: 2%{?dist} +Release: 3%{?dist} Summary: K Desktop Environment 4 - PIM Libraries # http://techbase.kde.org/Policies/Licensing_Policy @@ -44,6 +44,9 @@ BuildRequires: graphviz BuildRequires: qt4-doc %endif +# stuff moved kdepim -> kdepimlibs, help upgrade path +Conflicts: kdepim < 6:4.2.90 + %description Personal Information Management (PIM) libraries for the K Desktop Environment 4. @@ -210,6 +213,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Rex Dieter - 4.2.98-3 +- Conflicts: kdepim < 4.2.90 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Wed Jul 29 20:38:56 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 29 Jul 2009 20:38:56 +0000 (UTC) Subject: rpms/sound-juicer/devel sound-juicer.spec,1.117,1.118 Message-ID: <20090729203856.5209511C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/sound-juicer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20589 Modified Files: sound-juicer.spec Log Message: fix BRs Index: sound-juicer.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-juicer/devel/sound-juicer.spec,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- sound-juicer.spec 29 Jul 2009 05:23:30 -0000 1.117 +++ sound-juicer.spec 29 Jul 2009 20:38:56 -0000 1.118 @@ -38,6 +38,7 @@ BuildRequires: scrollkeeper >= %{scroll BuildRequires: gcc-c++ BuildRequires: gettext intltool BuildRequires: libcanberra-devel +BuildRequires: gnome-common BuildRequires: automake autoconf libtool ExcludeArch: s390 s390x From dougsland at fedoraproject.org Wed Jul 29 20:39:37 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Wed, 29 Jul 2009 20:39:37 +0000 (UTC) Subject: rpms/zbar/devel import.log, NONE, 1.1 zbar.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729203937.3005C11C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20177/devel Modified Files: .cvsignore sources Added Files: import.log zbar.spec Log Message: * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources --- NEW FILE import.log --- zbar-0_8-5_fc10:HEAD:zbar-0.8-5.fc10.src.rpm:1248899866 --- NEW FILE zbar.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: zbar Version: 0.8 Release: 5%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support License: LGPLv2+ URL: http://sourceforge.net/projects/%{name} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, Code 39 and Interleaved 2 of 5. Includes applications for decoding captured barcode images and using a video device (eg, webcam) as a barcode scanner. %package devel Group: Development/Libraries Summary: Bar code library extra development files Requires: pkgconfig, %{name} = %{version}-%{release} %description devel This package contains header files and additional libraries used for developing applications that read bar codes with this library. %package gtk Group: Development/Libraries Summary: Bar code reader GTK widget Requires: %{name} = %{version}-%{release} %description gtk This package contains a bar code scanning widget for use with GUI applications based on GTK+-2.0. %package gtk-devel Group: Development/Libraries Summary: Bar code reader GTK widget extra development files Requires: pkgconfig, %{name}-gtk = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description gtk-devel This package contains header files and additional libraries used for developing GUI applications based on GTK+-2.0 that include a bar code scanning widget. %package pygtk Group: Development/Libraries Summary: Bar code reader PyGTK widget Requires: pygtk2, %{name}-gtk = %{version}-%{release} %description pygtk This package contains a bar code scanning widget for use in GUI applications based on PyGTK. %package qt Group: Development/Libraries Summary: Bar code reader Qt widget Requires: %{name} = %{version}-%{release} %description qt This package contains a bar code scanning widget for use with GUI applications based on Qt4. %package qt-devel Group: Development/Libraries Summary: Bar code reader Qt widget extra development files Requires: pkgconfig, %{name}-qt = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description qt-devel This package contains header files and additional libraries used for developing GUI applications based on Qt4 that include a bar code scanning widget. %prep %setup -q %build %configure --docdir=%{_docdir}/%{name}-%{version} # rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" #Remove .la and .a files find ${RPM_BUILD_ROOT} -name '*.la' -or -name '*.a' | xargs rm -f %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %post devel -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %post qt -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun devel -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %postun qt -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING.LIB NEWS %{_bindir}/zbarimg %{_bindir}/zbarcam %{_libdir}/libzbar.so.* %{_mandir}/man1/* %files devel %defattr(-,root,root,-) %doc HACKING TODO %{_libdir}/libzbar.so %{_libdir}/pkgconfig/zbar.pc %dir %{_includedir}/zbar %{_includedir}/zbar.h %{_includedir}/zbar/Exception.h %{_includedir}/zbar/Symbol.h %{_includedir}/zbar/Image.h %{_includedir}/zbar/Scanner.h %{_includedir}/zbar/Decoder.h %{_includedir}/zbar/ImageScanner.h %{_includedir}/zbar/Video.h %{_includedir}/zbar/Window.h %{_includedir}/zbar/Processor.h %files gtk %defattr(-,root,root,-) %{_libdir}/libzbargtk.so.* %files gtk-devel %defattr(-,root,root,-) %{_libdir}/libzbargtk.so %{_libdir}/pkgconfig/zbar-gtk.pc %{_includedir}/zbar/zbargtk.h %files pygtk %defattr(-,root,root,-) %{python_sitearch}/zbarpygtk.so %{python_sitearch}/zbar.so %files qt %defattr(-,root,root,-) %{_libdir}/libzbarqt.so.* %files qt-devel %defattr(-,root,root,-) %{_libdir}/libzbarqt.so %{_libdir}/pkgconfig/zbar-qt.pc %{_includedir}/zbar/QZBar*.h %changelog * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 19:38:07 -0000 1.1 +++ .cvsignore 29 Jul 2009 20:39:36 -0000 1.2 @@ -0,0 +1 @@ +zbar-0.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 19:38:07 -0000 1.1 +++ sources 29 Jul 2009 20:39:37 -0000 1.2 @@ -0,0 +1 @@ +b5b0efd92af16230ce9952e7a9a671fd zbar-0.8.tar.bz2 From rdieter at fedoraproject.org Wed Jul 29 20:40:53 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 20:40:53 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.497,1.498 Message-ID: <20090729204053.D183C11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22062 Modified Files: kdelibs.spec Log Message: * Wed Jul 29 2009 Rex Dieter - 4.2.98-4 - -devel: Conflicts: kdebase-runtime < 4.2.90, kdebase-workspace-devel < 4.2.90 Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.497 retrieving revision 1.498 diff -u -p -r1.497 -r1.498 --- kdelibs.spec 26 Jul 2009 03:41:30 -0000 1.497 +++ kdelibs.spec 29 Jul 2009 20:40:53 -0000 1.498 @@ -5,7 +5,7 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.98 -Release: 3%{?dist} +Release: 4%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -162,6 +162,9 @@ This package includes the common files f %package devel Group: Development/Libraries Summary: Header files for compiling KDE 4 applications +# stuff moved, help upgrade path +Conflicts: kdebase-runtime < 4.2.90 +Conflicts: kdebase-workspace-devel < 4.2.90 Provides: plasma-devel = %{version}-%{release} Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} %if "%{name}" != "kdelibs4" @@ -409,6 +412,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Rex Dieter - 4.2.98-4 +- -devel: Conflicts: kdebase-runtime < 4.2.90, kdebase-workspace-devel < 4.2.90 + * Sun Jul 26 2009 Kevin Kofler - 4.2.98-3 - fix CVE-2009-2537 - select length DoS - fix CVE-2009-1725 - crash, possible ACE in numeric character references From abompard at fedoraproject.org Wed Jul 29 20:42:29 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Wed, 29 Jul 2009 20:42:29 +0000 (UTC) Subject: rpms/psi/F-10 .cvsignore, 1.11, 1.12 psi.spec, 1.26, 1.27 sources, 1.13, 1.14 Message-ID: <20090729204229.890CA11C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/psi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22628/F-10 Modified Files: .cvsignore psi.spec sources Log Message: * Tue Jul 28 2009 Aurelien Bompard - 0.13-1 - 0.13 final Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-10/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 3 Mar 2009 22:42:48 -0000 1.11 +++ .cvsignore 29 Jul 2009 20:42:29 -0000 1.12 @@ -1,4 +1,4 @@ +psi-0.13.tar.bz2 emoticons-0.10.tar.gz -psi-lang-packs-0.12.tar.gz +psi-lang-packs-0.13-1.tar.gz rostericons-0.10.tar.gz -psi-0.12.1.tar.bz2 Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-10/psi.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- psi.spec 28 Mar 2009 18:06:00 -0000 1.26 +++ psi.spec 29 Jul 2009 20:42:29 -0000 1.27 @@ -1,18 +1,17 @@ Name: psi -Version: 0.12.1 -Release: 2%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org Source0: http://dl.sf.net/psi/psi-%{version}.tar.bz2 Patch0: psi-0.12-qca.patch -Patch1: psi-0.12-qt-4_5-compatibility.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel, zlib-devel, desktop-file-utils -BuildRequires: qca2-devel +BuildRequires: qca2-devel, glib2-devel BuildRequires: aspell-devel, libXScrnSaver-devel Requires(hint): sox @@ -23,7 +22,7 @@ Requires(hint): qca-ossl Requires(hint): qca-gnupg # Language packs -Source10: psi-lang-packs-0.12.tar.gz +Source10: psi-lang-packs-0.13-1.tar.gz # Iconsets Source11: emoticons-0.10.tar.gz @@ -69,14 +68,13 @@ More icons can be found on http://jisp.n %prep %setup -q %patch0 -p0 -b .qca -%patch1 -p0 -b .qt45 - %build unset QTDIR ./configure \ --prefix=%{_prefix} \ --bindir=%{_bindir} \ + --libdir=%{_libdir} \ --datadir=%{_datadir} \ --disable-bundled-qca @@ -91,6 +89,7 @@ make install # Install language packs tar -xzpf %{SOURCE10} -C $RPM_BUILD_ROOT%{_datadir}/%name/ +rm -f $RPM_BUILD_ROOT%{_datadir}/%name/getlangs.sh ## Install iconsets tar -xzpf %{SOURCE11} -C $RPM_BUILD_ROOT%{_datadir}/%name/iconsets/emoticons/ @@ -104,6 +103,7 @@ desktop-file-install --vendor fedora \ --delete-original\ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop +mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins %clean rm -rf $RPM_BUILD_ROOT @@ -129,6 +129,8 @@ fi %{_datadir}/%{name} %_datadir/applications/*.desktop %{_datadir}/icons/hicolor/*/apps/%name.png +%dir %{_libdir}/%{name}/ +%dir %{_libdir}/%{name}/plugins/ %exclude %{_datadir}/%{name}/*.qm %exclude %{_datadir}/%{name}/iconsets/*/*.jisp @@ -143,11 +145,40 @@ fi %changelog +* Tue Jul 28 2009 Aurelien Bompard - 0.13-1 +- 0.13 final + +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-0.3.rc4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jul 17 2009 Sven Lankes 0.13-0.2.rc4 +- 0.13 rc4 + +* Mon Jul 13 2009 Sven Lankes 0.13-0.2.rc3 +- 0.13 rc3 +- remove qt 4.5 patch + +* Thu Jul 05 2009 Sven Lankes 0.13-0.2.rc2 +- own plugin directories (bz #509683) + +* Thu Jul 02 2009 Sven Lankes 0.13-0.1.rc2 +- 0.13 rc2 + +* Sun May 24 2009 Aurelien Bompard 0.13-0.1.rc1 +- 0.13 rc1 + * Sat Mar 28 2009 Sven Lankes 0.12.1-2 -- add patch for allow psi to work with Qt 4.5 +- bump Version to avoid newer EVR in F9/F10 * Tue Mar 03 2009 Sven Lankes 0.12.1-1 -- version 0.12.1 +- Update to 0.12.1 (fix for CVE-2008-6393) +- add patch for qt 4.5 support + +* Sun Mar 01 2009 Robert Scheck 0.12-3 +- Added missing build requirement to glib2-devel + +* Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Aug 13 2008 Aurelien Bompard 0.12-1 - version 0.12 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-10/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 3 Mar 2009 22:42:48 -0000 1.13 +++ sources 29 Jul 2009 20:42:29 -0000 1.14 @@ -1,4 +1,4 @@ +ddc1a2a35dc155ca46ad6ecaeccdf894 psi-0.13.tar.bz2 1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz -054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz +749688094206e3282e466ee696998290 psi-lang-packs-0.13-1.tar.gz 51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz -da273e45daef04ffc8338708e96e9173 psi-0.12.1.tar.bz2 From abompard at fedoraproject.org Wed Jul 29 20:42:29 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Wed, 29 Jul 2009 20:42:29 +0000 (UTC) Subject: rpms/psi/F-11 .cvsignore, 1.12, 1.13 psi.spec, 1.28, 1.29 sources, 1.14, 1.15 Message-ID: <20090729204229.C7FF311C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/psi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22628/F-11 Modified Files: .cvsignore psi.spec sources Log Message: * Tue Jul 28 2009 Aurelien Bompard - 0.13-1 - 0.13 final Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 3 Mar 2009 22:29:13 -0000 1.12 +++ .cvsignore 29 Jul 2009 20:42:29 -0000 1.13 @@ -1,4 +1,4 @@ -psi-0.12.1.tar.bz2 +psi-0.13.tar.bz2 emoticons-0.10.tar.gz -psi-lang-packs-0.12.tar.gz +psi-lang-packs-0.13-1.tar.gz rostericons-0.10.tar.gz Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-11/psi.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- psi.spec 28 Mar 2009 18:00:32 -0000 1.28 +++ psi.spec 29 Jul 2009 20:42:29 -0000 1.29 @@ -1,13 +1,12 @@ Name: psi -Version: 0.12.1 -Release: 2%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org Source0: http://dl.sf.net/psi/psi-%{version}.tar.bz2 Patch0: psi-0.12-qca.patch -Patch1: psi-0.12-qt-4_5-compatibility.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -23,7 +22,7 @@ Requires(hint): qca-ossl Requires(hint): qca-gnupg # Language packs -Source10: psi-lang-packs-0.12.tar.gz +Source10: psi-lang-packs-0.13-1.tar.gz # Iconsets Source11: emoticons-0.10.tar.gz @@ -69,13 +68,13 @@ More icons can be found on http://jisp.n %prep %setup -q %patch0 -p0 -b .qca -%patch1 -p0 -b .qt45 %build unset QTDIR ./configure \ --prefix=%{_prefix} \ --bindir=%{_bindir} \ + --libdir=%{_libdir} \ --datadir=%{_datadir} \ --disable-bundled-qca @@ -90,6 +89,7 @@ make install # Install language packs tar -xzpf %{SOURCE10} -C $RPM_BUILD_ROOT%{_datadir}/%name/ +rm -f $RPM_BUILD_ROOT%{_datadir}/%name/getlangs.sh ## Install iconsets tar -xzpf %{SOURCE11} -C $RPM_BUILD_ROOT%{_datadir}/%name/iconsets/emoticons/ @@ -103,6 +103,7 @@ desktop-file-install --vendor fedora \ --delete-original\ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop +mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins %clean rm -rf $RPM_BUILD_ROOT @@ -128,6 +129,8 @@ fi %{_datadir}/%{name} %_datadir/applications/*.desktop %{_datadir}/icons/hicolor/*/apps/%name.png +%dir %{_libdir}/%{name}/ +%dir %{_libdir}/%{name}/plugins/ %exclude %{_datadir}/%{name}/*.qm %exclude %{_datadir}/%{name}/iconsets/*/*.jisp @@ -142,6 +145,28 @@ fi %changelog +* Tue Jul 28 2009 Aurelien Bompard - 0.13-1 +- 0.13 final + +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-0.3.rc4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jul 17 2009 Sven Lankes 0.13-0.2.rc4 +- 0.13 rc4 + +* Mon Jul 13 2009 Sven Lankes 0.13-0.2.rc3 +- 0.13 rc3 +- remove qt 4.5 patch + +* Thu Jul 05 2009 Sven Lankes 0.13-0.2.rc2 +- own plugin directories (bz #509683) + +* Thu Jul 02 2009 Sven Lankes 0.13-0.1.rc2 +- 0.13 rc2 + +* Sun May 24 2009 Aurelien Bompard 0.13-0.1.rc1 +- 0.13 rc1 + * Sat Mar 28 2009 Sven Lankes 0.12.1-2 - bump Version to avoid newer EVR in F9/F10 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 3 Mar 2009 22:29:13 -0000 1.14 +++ sources 29 Jul 2009 20:42:29 -0000 1.15 @@ -1,4 +1,4 @@ -da273e45daef04ffc8338708e96e9173 psi-0.12.1.tar.bz2 +ddc1a2a35dc155ca46ad6ecaeccdf894 psi-0.13.tar.bz2 1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz -054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz +749688094206e3282e466ee696998290 psi-lang-packs-0.13-1.tar.gz 51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz From pbrobinson at fedoraproject.org Wed Jul 29 20:43:31 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 20:43:31 +0000 (UTC) Subject: rpms/mutter/devel mutter-clutter-1.0-2.patch, NONE, 1.1 mutter-clutter1.0.patch, NONE, 1.1 mutter.spec, 1.3, 1.4 Message-ID: <20090729204331.1961A11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23233 Modified Files: mutter.spec Added Files: mutter-clutter-1.0-2.patch mutter-clutter1.0.patch Log Message: - Add upstream patches for clutter 1.0 mutter-clutter-1.0-2.patch: README | 2 +- configure.in | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) --- NEW FILE mutter-clutter-1.0-2.patch --- >From acfc4983446139a849c57c8ba001eca372010ab3 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 29 Jul 2009 17:04:18 +0000 Subject: Also update Clutter 1.0 pkg-config requirement and README We need to also change the pkg-config requirement to be 1.0. --- diff --git a/README b/README index 66af52b..4ec8f2d 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ libstartup-notification at http://www.freedesktop.org/software/startup-notification/ or on the GNOME ftp site. You also need GConf 1.2 (unless building a funky extra-small embedded metacity with --disable-gconf, see below). -You need Clutter 0.9.3. You need gobject-introspection 0.6.3. +You need Clutter 1.0. You need gobject-introspection 0.6.3. REPORTING BUGS AND SUBMITTING PATCHES === diff --git a/configure.in b/configure.in index a1173d5..b843a68 100644 --- a/configure.in +++ b/configure.in @@ -227,8 +227,8 @@ else AC_MSG_ERROR([no. Mutter requires the Xcomposite extension to build.]) fi -CLUTTER_VERSION=0.9.3 -CLUTTER_PACKAGE=clutter-0.9 +CLUTTER_VERSION=1.0.0 +CLUTTER_PACKAGE=clutter-1.0 AC_SUBST(CLUTTER_PACKAGE) if $PKG_CONFIG --atleast-version $CLUTTER_VERSION $CLUTTER_PACKAGE ; then MUTTER_PC_MODULES="$MUTTER_PC_MODULES $CLUTTER_PACKAGE " -- cgit v0.8.2 mutter-clutter1.0.patch: Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- NEW FILE mutter-clutter1.0.patch --- >From a1ac1f4b2ec41e6da572a29ff5a1c20bd0e6934c Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 29 Jul 2009 16:08:53 +0000 Subject: Build using Clutter 1.0 Clutter just released 1.0, sync to that. --- diff --git a/src/Makefile.am b/src/Makefile.am index b675ab8..2ee9978 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -210,8 +210,8 @@ Meta-$(api_version).gir: $(G_IR_SCANNER) mutter $(libmutterinclude_HEADERS) $(mu --include=GObject-2.0 \ --include=Gdk-2.0 \ --include=Gtk-2.0 \ - --include=Clutter-0.9 \ - --pkg=clutter-0.9 \ + --include=Clutter-1.0 \ + --pkg=clutter-1.0 \ --pkg=gtk+-2.0 \ --include=xfixes-4.0 \ --program=$$pwd/mutter \ -- cgit v0.8.2 Index: mutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/mutter/devel/mutter.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mutter.spec 29 Jul 2009 11:33:00 -0000 1.3 +++ mutter.spec 29 Jul 2009 20:43:30 -0000 1.4 @@ -1,6 +1,6 @@ Name: mutter Version: 2.27.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Window and compositing manager based on Clutter Group: User Interface/Desktops @@ -8,6 +8,8 @@ License: GPLv2+ URL: http://git.gnome.org/cgit/mutter Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 Patch0: mutter-pluginmanager.patch +Patch1: mutter-clutter1.0.patch +Patch2: mutter-clutter-1.0-2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel @@ -31,6 +33,13 @@ BuildRequires: intltool BuildRequires: gnome-doc-utils BuildRequires: desktop-file-utils +# Add these due to the autoreconf for the clutter patches +BuildRequires: intltool +BuildRequires: gettext +BuildRequires: libtool +BuildRequires: automake +BuildRequires: autoconf + Requires: control-center-filesystem Requires: startup-notification Requires: GConf2 @@ -63,8 +72,11 @@ utilities for testing Metacity/Mutter th %prep %setup -q %patch0 -p1 -b .pluginmanager +%patch1 -p1 -b .clutter1 +%patch2 -p1 -b .clutter2 %build +autoreconf %configure --with-clutter --disable-static SHOULD_HAVE_DEFINED="HAVE_SM HAVE_XINERAMA HAVE_XFREE_XINERAMA HAVE_SHAPE HAVE_RANDR HAVE_STARTUP_NOTIFICATION HAVE_COMPOSITE_EXTENSION" @@ -149,6 +161,9 @@ gconftool-2 --makefile-install-rule \ %doc %{_mandir}/man1/mutter-window-demo.1.gz %changelog +* Wed Jul 29 2009 Peter Robinson 2.27.1-5 +- Add upstream patches for clutter 1.0 + * Wed Jul 29 2009 Peter Robinson 2.27.1-4 - Add patch to fix mutter --replace From smilner at fedoraproject.org Wed Jul 29 20:55:02 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 20:55:02 +0000 (UTC) Subject: rpms/Django/F-11 .cvsignore, 1.11, 1.12 Django.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090729205502.D97F711C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27468 Modified Files: .cvsignore Django.spec sources Log Message: Update for http://www.djangoproject.com/weblog/2009/jul/28/security/. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 14 Dec 2008 06:23:25 -0000 1.11 +++ .cvsignore 29 Jul 2009 20:55:02 -0000 1.12 @@ -1 +1 @@ -Django-1.0.2-final.tar.gz +Django-1.0.3.tar.gz Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-11/Django.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- Django.spec 13 Mar 2009 02:26:07 -0000 1.19 +++ Django.spec 29 Jul 2009 20:55:02 -0000 1.20 @@ -2,14 +2,14 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: Django -Version: 1.0.2 -Release: 3%{?dist} +Version: 1.0.3 +Release: 2%{?dist} Summary: A high-level Python Web framework Group: Development/Languages License: BSD URL: http://www.djangoproject.com/ -Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}-final.tar.gz +Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz # stub simplejson module that imports the system version Source1: simplejson-init.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,7 @@ Python Web framework. %prep -%setup -q -n %{name}-%{version}-final +%setup -q -n %{name}-%{version} # remove bundled simplejson cd django/utils/simplejson/ rm -rf * @@ -92,6 +92,12 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 +- Fix changelog. + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 +- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ + * Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) - No longer excluding *.py? in bindir, F11's Python does not optimizes these Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 14 Dec 2008 06:23:25 -0000 1.11 +++ sources 29 Jul 2009 20:55:02 -0000 1.12 @@ -1 +1 @@ -89353e3749668778f1370d2e444f3adc Django-1.0.2-final.tar.gz +3c5435b015d8cde602b17a5f0c9873dc Django-1.0.3.tar.gz From pkgdb at fedoraproject.org Wed Jul 29 21:02:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:38 +0000 Subject: [pkgdb] uberftp was added for stevetraylen Message-ID: <20090729210239.2BFFF10F8B0@bastion2.fedora.phx.redhat.com> tibbs has added Package uberftp with summary GridFTP-enabled ftp client tibbs has approved Package uberftp tibbs has added a Fedora devel branch for uberftp with an owner of stevetraylen tibbs has approved uberftp in Fedora devel tibbs has approved Package uberftp tibbs has set commit to Approved for 107427 on uberftp (Fedora devel) tibbs has set checkout to Approved for 107427 on uberftp (Fedora devel) tibbs has set build to Approved for 107427 on uberftp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From pkgdb at fedoraproject.org Wed Jul 29 21:02:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:40 +0000 Subject: [pkgdb] uberftp summary updated by tibbs Message-ID: <20090729210240.ABB8B10F8B4@bastion2.fedora.phx.redhat.com> tibbs set package uberftp summary to GridFTP-enabled ftp client To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From pkgdb at fedoraproject.org Wed Jul 29 21:02:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:40 +0000 Subject: [pkgdb] uberftp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729210240.B04CB10F8B7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for uberftp tibbs has set commit to Approved for 107427 on uberftp (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on uberftp (Fedora EPEL 5) tibbs has set build to Approved for 107427 on uberftp (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From pkgdb at fedoraproject.org Wed Jul 29 21:02:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:40 +0000 Subject: [pkgdb] uberftp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729210240.B960710F8BA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for uberftp tibbs has set commit to Approved for 107427 on uberftp (Fedora 11) tibbs has set checkout to Approved for 107427 on uberftp (Fedora 11) tibbs has set build to Approved for 107427 on uberftp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From pkgdb at fedoraproject.org Wed Jul 29 21:02:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:40 +0000 Subject: [pkgdb] uberftp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729210240.C4C1A10F8BD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for uberftp tibbs has set commit to Approved for 107427 on uberftp (Fedora 10) tibbs has set checkout to Approved for 107427 on uberftp (Fedora 10) tibbs has set build to Approved for 107427 on uberftp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From pkgdb at fedoraproject.org Wed Jul 29 21:02:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 21:02:40 +0000 Subject: [pkgdb] uberftp (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729210240.CE90410F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for uberftp tibbs has set commit to Approved for 107427 on uberftp (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on uberftp (Fedora EPEL 4) tibbs has set build to Approved for 107427 on uberftp (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uberftp From tibbs at fedoraproject.org Wed Jul 29 21:02:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 21:02:48 +0000 (UTC) Subject: rpms/uberftp - New directory Message-ID: <20090729210248.15E7711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uberftp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsY30012/rpms/uberftp Log Message: Directory /cvs/pkgs/rpms/uberftp added to the repository From tibbs at fedoraproject.org Wed Jul 29 21:02:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 21:02:48 +0000 (UTC) Subject: rpms/uberftp/devel - New directory Message-ID: <20090729210248.3A3C811C0424@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uberftp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsY30012/rpms/uberftp/devel Log Message: Directory /cvs/pkgs/rpms/uberftp/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 21:02:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 21:02:54 +0000 (UTC) Subject: rpms/uberftp Makefile,NONE,1.1 Message-ID: <20090729210254.4B06411C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uberftp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsY30012/rpms/uberftp Added Files: Makefile Log Message: Setup of module uberftp --- NEW FILE Makefile --- # Top level Makefile for module uberftp all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 21:02:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 21:02:54 +0000 (UTC) Subject: rpms/uberftp/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729210254.8ECD911C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uberftp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsY30012/rpms/uberftp/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module uberftp --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: uberftp # $Id: Makefile,v 1.1 2009/07/29 21:02:54 tibbs Exp $ NAME := uberftp SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From airlied at fedoraproject.org Wed Jul 29 21:10:48 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Wed, 29 Jul 2009 21:10:48 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1672, 1.1673 linux-2.6-vga-arb.patch, 1.3, 1.4 Message-ID: <20090729211048.C25B011C04D6@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv798 Modified Files: kernel.spec linux-2.6-vga-arb.patch Log Message: * Thu Jul 30 2009 Dave Airlie - fix VGA ARB + kms Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1672 retrieving revision 1.1673 diff -u -p -r1.1672 -r1.1673 --- kernel.spec 29 Jul 2009 18:43:16 -0000 1.1672 +++ kernel.spec 29 Jul 2009 21:10:48 -0000 1.1673 @@ -1933,6 +1933,9 @@ fi # and build. %changelog +* Thu Jul 30 2009 Dave Airlie +- fix VGA ARB + kms + * Wed Jul 29 2009 Dave Jones - Add support for dracut. (Harald Hoyer) linux-2.6-vga-arb.patch: drivers/gpu/Makefile | 2 drivers/gpu/vga/Kconfig | 10 drivers/gpu/vga/Makefile | 1 drivers/gpu/vga/vgaarb.c | 1150 +++++++++++++++++++++++++++++++++++++++++++++++ drivers/pci/pci.c | 44 + drivers/video/Kconfig | 2 include/linux/pci.h | 2 include/linux/vgaarb.h | 196 +++++++- 8 files changed, 1405 insertions(+), 2 deletions(-) Index: linux-2.6-vga-arb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-vga-arb.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- linux-2.6-vga-arb.patch 29 Jul 2009 00:34:59 -0000 1.3 +++ linux-2.6-vga-arb.patch 29 Jul 2009 21:10:48 -0000 1.4 @@ -647,7 +647,7 @@ index 0000000..3925e6c + vgadev->irq_set_state = irq_set_state; + vgadev->set_vga_decode = set_vga_decode; + vgadev->cookie = cookie; -+ ret = vga_count; ++ ret = 0; + +bail: + spin_unlock_irqrestore(&vga_lock, flags); From dougsland at fedoraproject.org Wed Jul 29 21:12:29 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Wed, 29 Jul 2009 21:12:29 +0000 (UTC) Subject: rpms/zbar/F-10 import.log, NONE, 1.1 zbar.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729211229.A111C11C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1039/F-10 Modified Files: .cvsignore sources Added Files: import.log zbar.spec Log Message: * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources --- NEW FILE import.log --- zbar-0_8-5_fc10:F-10:zbar-0.8-5.fc10.src.rpm:1248901853 --- NEW FILE zbar.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: zbar Version: 0.8 Release: 5%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support License: LGPLv2+ URL: http://sourceforge.net/projects/%{name} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, Code 39 and Interleaved 2 of 5. Includes applications for decoding captured barcode images and using a video device (eg, webcam) as a barcode scanner. %package devel Group: Development/Libraries Summary: Bar code library extra development files Requires: pkgconfig, %{name} = %{version}-%{release} %description devel This package contains header files and additional libraries used for developing applications that read bar codes with this library. %package gtk Group: Development/Libraries Summary: Bar code reader GTK widget Requires: %{name} = %{version}-%{release} %description gtk This package contains a bar code scanning widget for use with GUI applications based on GTK+-2.0. %package gtk-devel Group: Development/Libraries Summary: Bar code reader GTK widget extra development files Requires: pkgconfig, %{name}-gtk = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description gtk-devel This package contains header files and additional libraries used for developing GUI applications based on GTK+-2.0 that include a bar code scanning widget. %package pygtk Group: Development/Libraries Summary: Bar code reader PyGTK widget Requires: pygtk2, %{name}-gtk = %{version}-%{release} %description pygtk This package contains a bar code scanning widget for use in GUI applications based on PyGTK. %package qt Group: Development/Libraries Summary: Bar code reader Qt widget Requires: %{name} = %{version}-%{release} %description qt This package contains a bar code scanning widget for use with GUI applications based on Qt4. %package qt-devel Group: Development/Libraries Summary: Bar code reader Qt widget extra development files Requires: pkgconfig, %{name}-qt = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description qt-devel This package contains header files and additional libraries used for developing GUI applications based on Qt4 that include a bar code scanning widget. %prep %setup -q %build %configure --docdir=%{_docdir}/%{name}-%{version} # rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" #Remove .la and .a files find ${RPM_BUILD_ROOT} -name '*.la' -or -name '*.a' | xargs rm -f %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %post devel -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %post qt -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun devel -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %postun qt -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING.LIB NEWS %{_bindir}/zbarimg %{_bindir}/zbarcam %{_libdir}/libzbar.so.* %{_mandir}/man1/* %files devel %defattr(-,root,root,-) %doc HACKING TODO %{_libdir}/libzbar.so %{_libdir}/pkgconfig/zbar.pc %dir %{_includedir}/zbar %{_includedir}/zbar.h %{_includedir}/zbar/Exception.h %{_includedir}/zbar/Symbol.h %{_includedir}/zbar/Image.h %{_includedir}/zbar/Scanner.h %{_includedir}/zbar/Decoder.h %{_includedir}/zbar/ImageScanner.h %{_includedir}/zbar/Video.h %{_includedir}/zbar/Window.h %{_includedir}/zbar/Processor.h %files gtk %defattr(-,root,root,-) %{_libdir}/libzbargtk.so.* %files gtk-devel %defattr(-,root,root,-) %{_libdir}/libzbargtk.so %{_libdir}/pkgconfig/zbar-gtk.pc %{_includedir}/zbar/zbargtk.h %files pygtk %defattr(-,root,root,-) %{python_sitearch}/zbarpygtk.so %{python_sitearch}/zbar.so %files qt %defattr(-,root,root,-) %{_libdir}/libzbarqt.so.* %files qt-devel %defattr(-,root,root,-) %{_libdir}/libzbarqt.so %{_libdir}/pkgconfig/zbar-qt.pc %{_includedir}/zbar/QZBar*.h %changelog * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zbar/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 19:38:07 -0000 1.1 +++ .cvsignore 29 Jul 2009 21:12:29 -0000 1.2 @@ -0,0 +1 @@ +zbar-0.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zbar/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 19:38:07 -0000 1.1 +++ sources 29 Jul 2009 21:12:29 -0000 1.2 @@ -0,0 +1 @@ +b5b0efd92af16230ce9952e7a9a671fd zbar-0.8.tar.bz2 From dougsland at fedoraproject.org Wed Jul 29 21:14:47 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Wed, 29 Jul 2009 21:14:47 +0000 (UTC) Subject: rpms/zbar/F-11 import.log, NONE, 1.1 zbar.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729211447.261B011C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1858/F-11 Modified Files: .cvsignore sources Added Files: import.log zbar.spec Log Message: * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources --- NEW FILE import.log --- zbar-0_8-5_fc10:F-11:zbar-0.8-5.fc10.src.rpm:1248902075 --- NEW FILE zbar.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: zbar Version: 0.8 Release: 5%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support License: LGPLv2+ URL: http://sourceforge.net/projects/%{name} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, Code 39 and Interleaved 2 of 5. Includes applications for decoding captured barcode images and using a video device (eg, webcam) as a barcode scanner. %package devel Group: Development/Libraries Summary: Bar code library extra development files Requires: pkgconfig, %{name} = %{version}-%{release} %description devel This package contains header files and additional libraries used for developing applications that read bar codes with this library. %package gtk Group: Development/Libraries Summary: Bar code reader GTK widget Requires: %{name} = %{version}-%{release} %description gtk This package contains a bar code scanning widget for use with GUI applications based on GTK+-2.0. %package gtk-devel Group: Development/Libraries Summary: Bar code reader GTK widget extra development files Requires: pkgconfig, %{name}-gtk = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description gtk-devel This package contains header files and additional libraries used for developing GUI applications based on GTK+-2.0 that include a bar code scanning widget. %package pygtk Group: Development/Libraries Summary: Bar code reader PyGTK widget Requires: pygtk2, %{name}-gtk = %{version}-%{release} %description pygtk This package contains a bar code scanning widget for use in GUI applications based on PyGTK. %package qt Group: Development/Libraries Summary: Bar code reader Qt widget Requires: %{name} = %{version}-%{release} %description qt This package contains a bar code scanning widget for use with GUI applications based on Qt4. %package qt-devel Group: Development/Libraries Summary: Bar code reader Qt widget extra development files Requires: pkgconfig, %{name}-qt = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description qt-devel This package contains header files and additional libraries used for developing GUI applications based on Qt4 that include a bar code scanning widget. %prep %setup -q %build %configure --docdir=%{_docdir}/%{name}-%{version} # rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" #Remove .la and .a files find ${RPM_BUILD_ROOT} -name '*.la' -or -name '*.a' | xargs rm -f %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %post devel -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %post qt -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun devel -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %postun qt -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING.LIB NEWS %{_bindir}/zbarimg %{_bindir}/zbarcam %{_libdir}/libzbar.so.* %{_mandir}/man1/* %files devel %defattr(-,root,root,-) %doc HACKING TODO %{_libdir}/libzbar.so %{_libdir}/pkgconfig/zbar.pc %dir %{_includedir}/zbar %{_includedir}/zbar.h %{_includedir}/zbar/Exception.h %{_includedir}/zbar/Symbol.h %{_includedir}/zbar/Image.h %{_includedir}/zbar/Scanner.h %{_includedir}/zbar/Decoder.h %{_includedir}/zbar/ImageScanner.h %{_includedir}/zbar/Video.h %{_includedir}/zbar/Window.h %{_includedir}/zbar/Processor.h %files gtk %defattr(-,root,root,-) %{_libdir}/libzbargtk.so.* %files gtk-devel %defattr(-,root,root,-) %{_libdir}/libzbargtk.so %{_libdir}/pkgconfig/zbar-gtk.pc %{_includedir}/zbar/zbargtk.h %files pygtk %defattr(-,root,root,-) %{python_sitearch}/zbarpygtk.so %{python_sitearch}/zbar.so %files qt %defattr(-,root,root,-) %{_libdir}/libzbarqt.so.* %files qt-devel %defattr(-,root,root,-) %{_libdir}/libzbarqt.so %{_libdir}/pkgconfig/zbar-qt.pc %{_includedir}/zbar/QZBar*.h %changelog * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zbar/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 19:38:07 -0000 1.1 +++ .cvsignore 29 Jul 2009 21:14:46 -0000 1.2 @@ -0,0 +1 @@ +zbar-0.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zbar/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 19:38:07 -0000 1.1 +++ sources 29 Jul 2009 21:14:46 -0000 1.2 @@ -0,0 +1 @@ +b5b0efd92af16230ce9952e7a9a671fd zbar-0.8.tar.bz2 From dougsland at fedoraproject.org Wed Jul 29 21:17:27 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Wed, 29 Jul 2009 21:17:27 +0000 (UTC) Subject: rpms/zbar/EL-5 import.log, NONE, 1.1 zbar.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729211727.0AC3F11C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2542/EL-5 Modified Files: .cvsignore sources Added Files: import.log zbar.spec Log Message: * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources --- NEW FILE import.log --- zbar-0_8-5_fc10:EL-5:zbar-0.8-5.fc10.src.rpm:1248902235 --- NEW FILE zbar.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: zbar Version: 0.8 Release: 5%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support License: LGPLv2+ URL: http://sourceforge.net/projects/%{name} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, Code 39 and Interleaved 2 of 5. Includes applications for decoding captured barcode images and using a video device (eg, webcam) as a barcode scanner. %package devel Group: Development/Libraries Summary: Bar code library extra development files Requires: pkgconfig, %{name} = %{version}-%{release} %description devel This package contains header files and additional libraries used for developing applications that read bar codes with this library. %package gtk Group: Development/Libraries Summary: Bar code reader GTK widget Requires: %{name} = %{version}-%{release} %description gtk This package contains a bar code scanning widget for use with GUI applications based on GTK+-2.0. %package gtk-devel Group: Development/Libraries Summary: Bar code reader GTK widget extra development files Requires: pkgconfig, %{name}-gtk = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description gtk-devel This package contains header files and additional libraries used for developing GUI applications based on GTK+-2.0 that include a bar code scanning widget. %package pygtk Group: Development/Libraries Summary: Bar code reader PyGTK widget Requires: pygtk2, %{name}-gtk = %{version}-%{release} %description pygtk This package contains a bar code scanning widget for use in GUI applications based on PyGTK. %package qt Group: Development/Libraries Summary: Bar code reader Qt widget Requires: %{name} = %{version}-%{release} %description qt This package contains a bar code scanning widget for use with GUI applications based on Qt4. %package qt-devel Group: Development/Libraries Summary: Bar code reader Qt widget extra development files Requires: pkgconfig, %{name}-qt = %{version}-%{release}, %{name}-devel = %{version}-%{release} %description qt-devel This package contains header files and additional libraries used for developing GUI applications based on Qt4 that include a bar code scanning widget. %prep %setup -q %build %configure --docdir=%{_docdir}/%{name}-%{version} # rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" #Remove .la and .a files find ${RPM_BUILD_ROOT} -name '*.la' -or -name '*.a' | xargs rm -f %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %post devel -p /sbin/ldconfig %post gtk -p /sbin/ldconfig %post qt -p /sbin/ldconfig %postun -p /sbin/ldconfig %postun devel -p /sbin/ldconfig %postun gtk -p /sbin/ldconfig %postun qt -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING.LIB NEWS %{_bindir}/zbarimg %{_bindir}/zbarcam %{_libdir}/libzbar.so.* %{_mandir}/man1/* %files devel %defattr(-,root,root,-) %doc HACKING TODO %{_libdir}/libzbar.so %{_libdir}/pkgconfig/zbar.pc %dir %{_includedir}/zbar %{_includedir}/zbar.h %{_includedir}/zbar/Exception.h %{_includedir}/zbar/Symbol.h %{_includedir}/zbar/Image.h %{_includedir}/zbar/Scanner.h %{_includedir}/zbar/Decoder.h %{_includedir}/zbar/ImageScanner.h %{_includedir}/zbar/Video.h %{_includedir}/zbar/Window.h %{_includedir}/zbar/Processor.h %files gtk %defattr(-,root,root,-) %{_libdir}/libzbargtk.so.* %files gtk-devel %defattr(-,root,root,-) %{_libdir}/libzbargtk.so %{_libdir}/pkgconfig/zbar-gtk.pc %{_includedir}/zbar/zbargtk.h %files pygtk %defattr(-,root,root,-) %{python_sitearch}/zbarpygtk.so %{python_sitearch}/zbar.so %files qt %defattr(-,root,root,-) %{_libdir}/libzbarqt.so.* %files qt-devel %defattr(-,root,root,-) %{_libdir}/libzbarqt.so %{_libdir}/pkgconfig/zbar-qt.pc %{_includedir}/zbar/QZBar*.h %changelog * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages - Fixed directory ownership issue -pygtk - Added %%{name} to URL - Added comment to rpath - Improved comment for removing .la and .a files * Thu Jul 27 2009 Douglas Schilling Landgraf - 0.8-4 - Fixed sourceforge url - Removed redundant libX11-devel package from BuildRequires - Removed redundant ImageMagick package from Requires - Removed Provides for not included static libs - Removed redundant requires to subpackages -qt and -gtk - Removed redundant {name} = %%{version}-%%{release} from -pygtk - Replaced macros from % to %% in changelog - Fixed ownership issue - Added ldconfig call to devel, qt-devel and gtk-devel * Thu Jul 24 2009 Douglas Schilling Landgraf - 0.8-3 - Fixed License from LGPLv2 to LGPLv2+ - Added to main BuildRequires libXv-devel and xmlto packages - Removed pkgconfig from main BuildRequires - Removed .la and .a files - Removed version validation from ImageMagick-c++ and ImageMagick-c++-devel packages - Replaced 3 {%%version} to %%{version} (packages: devel, qt-devel, gtk-devel) - Removed duplicated description for each package - Added %%{version}-%%{release} to packages: devel, gtk, gtk-devel, pygtk, qt - Added pkgconfig to packages gtk-devel, qt-devel into Requires session - Removed redundant packages - Added dependency of gtk to pygtk - Added timestamp on installed files - Replaced %%{_datadir}/man to %%{_mandir} - Removed INSTALL file - Fixed %%doc session - Added to -devel own of %%{_includedir}/zbar directory - Replaced "%%{_libdir}/python*" to %%{python_sitearch} - Fixed %%defattr - Fixed Release Number and Changelog - Fixed rpath error * Thu Jul 16 2009 Douglas Schilling Landgraf - 0.8-2 - Added pkgconfig to devel package - Fixed syntax to ldconfig - Fixed warnings from rpmlint - Fixed static path to docs * Thu Jul 15 2009 Douglas Schilling Landgraf - 0.8-1 - First release, based on original zbar.spec provided by sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zbar/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 19:38:07 -0000 1.1 +++ .cvsignore 29 Jul 2009 21:17:26 -0000 1.2 @@ -0,0 +1 @@ +zbar-0.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zbar/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 19:38:07 -0000 1.1 +++ sources 29 Jul 2009 21:17:26 -0000 1.2 @@ -0,0 +1 @@ +b5b0efd92af16230ce9952e7a9a671fd zbar-0.8.tar.bz2 From cebbert at fedoraproject.org Wed Jul 29 21:27:54 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 21:27:54 +0000 (UTC) Subject: rpms/kernel/F-11 patch-2.6.30.4-rc1.bz2.sign, NONE, 1.1 .cvsignore, 1.1049, 1.1050 kernel.spec, 1.1683, 1.1684 sources, 1.1011, 1.1012 upstream, 1.922, 1.923 Message-ID: <20090729212754.7871411C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4855 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.30.4-rc1.bz2.sign Log Message: Linux 2.6.30.4 --- NEW FILE patch-2.6.30.4-rc1.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKb4y+yGugalF9Dw4RAkTnAJ4zF6+RMvnF0GV16ryvlAzmtU9tsQCdEWet iqCRYZL/1CcEbKpwR7C/JE8= =jywI -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/.cvsignore,v retrieving revision 1.1049 retrieving revision 1.1050 diff -u -p -r1.1049 -r1.1050 --- .cvsignore 25 Jul 2009 01:43:18 -0000 1.1049 +++ .cvsignore 29 Jul 2009 21:27:54 -0000 1.1050 @@ -6,3 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.30.3.bz2 +patch-2.6.30.4-rc1.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1683 retrieving revision 1.1684 diff -u -p -r1.1683 -r1.1684 --- kernel.spec 27 Jul 2009 23:25:49 -0000 1.1683 +++ kernel.spec 29 Jul 2009 21:27:54 -0000 1.1684 @@ -40,9 +40,9 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 3 +%define stable_update 4 # Is it a -stable RC? -%define stable_rc 0 +%define stable_rc 1 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev .%{stable_update} @@ -1835,6 +1835,9 @@ fi # and build. %changelog +* Wed Jul 29 2009 Chuck Ebbert +- Linux 2.6.30.4 + * Mon Jul 27 2009 Neil Horman - Backport xfrm gc_thresh export code (bz 503124) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/sources,v retrieving revision 1.1011 retrieving revision 1.1012 diff -u -p -r1.1011 -r1.1012 --- sources 25 Jul 2009 01:43:18 -0000 1.1011 +++ sources 29 Jul 2009 21:27:54 -0000 1.1012 @@ -1,2 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 4361d948bdcbd298cf6a3ff4189a9d37 patch-2.6.30.3.bz2 +e0910e02830d92375bfcf1597df28762 patch-2.6.30.4-rc1.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/upstream,v retrieving revision 1.922 retrieving revision 1.923 diff -u -p -r1.922 -r1.923 --- upstream 25 Jul 2009 01:43:18 -0000 1.922 +++ upstream 29 Jul 2009 21:27:54 -0000 1.923 @@ -1,2 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.30.3.bz2 +patch-2.6.30.4-rc1.bz2 + From cebbert at fedoraproject.org Wed Jul 29 21:28:58 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 21:28:58 +0000 (UTC) Subject: rpms/kernel/F-11 kernel.spec,1.1684,1.1685 Message-ID: <20090729212858.EB17111C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5070 Modified Files: kernel.spec Log Message: correct version 2.6.30.4-rc1 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1684 retrieving revision 1.1685 diff -u -p -r1.1684 -r1.1685 --- kernel.spec 29 Jul 2009 21:27:54 -0000 1.1684 +++ kernel.spec 29 Jul 2009 21:28:58 -0000 1.1685 @@ -1836,7 +1836,7 @@ fi %changelog * Wed Jul 29 2009 Chuck Ebbert -- Linux 2.6.30.4 +- Linux 2.6.30.4-rc1 * Mon Jul 27 2009 Neil Horman - Backport xfrm gc_thresh export code (bz 503124) From cebbert at fedoraproject.org Wed Jul 29 21:32:37 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 21:32:37 +0000 (UTC) Subject: rpms/kernel/F-10 patch-2.6.27.29-rc1.bz2.sign, NONE, 1.1.2.1 .cvsignore, 1.960.2.15, 1.960.2.16 kernel.spec, 1.1206.2.74, 1.1206.2.75 linux-2.6-netdev-r8169-2.6.30.patch, 1.1.2.2, 1.1.2.3 sources, 1.922.2.15, 1.922.2.16 upstream, 1.834.2.15, 1.834.2.16 linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch, 1.1.2.1, NONE Message-ID: <20090729213237.58CA211C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5808 Modified Files: Tag: private-fedora-10-2_6_27 .cvsignore kernel.spec linux-2.6-netdev-r8169-2.6.30.patch sources upstream Added Files: Tag: private-fedora-10-2_6_27 patch-2.6.27.29-rc1.bz2.sign Removed Files: Tag: private-fedora-10-2_6_27 linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch Log Message: Linux 2.6.27.29-rc1 (CVE-2009-2406, CVE-2009-2407) Drop linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch, now in -stable. --- NEW FILE patch-2.6.27.29-rc1.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD4DBQBKb4Q7yGugalF9Dw4RAgfTAJ4oUbzDZZzNhHtivh2Q8xxSQSu5LACYph/D 6DS9xw2Gd8y9eSAlCi9nlw== =kGD4 -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/.cvsignore,v retrieving revision 1.960.2.15 retrieving revision 1.960.2.16 diff -u -p -r1.960.2.15 -r1.960.2.16 --- .cvsignore 27 Jul 2009 21:32:16 -0000 1.960.2.15 +++ .cvsignore 29 Jul 2009 21:32:36 -0000 1.960.2.16 @@ -5,3 +5,4 @@ temp-* kernel-2.6.27 linux-2.6.27.tar.bz2 patch-2.6.27.28.bz2 +patch-2.6.27.29-rc1.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.74 retrieving revision 1.1206.2.75 diff -u -p -r1.1206.2.74 -r1.1206.2.75 --- kernel.spec 29 Jul 2009 16:35:47 -0000 1.1206.2.74 +++ kernel.spec 29 Jul 2009 21:32:36 -0000 1.1206.2.75 @@ -36,9 +36,9 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 28 +%define stable_update 29 # Is it a -stable RC? -%define stable_rc 0 +%define stable_rc 1 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev .%{stable_update} @@ -699,7 +699,6 @@ Patch2007: linux-2.6-netdev-r8169-add-mo Patch2008: linux-2.6-netdev-r8169-convert-to-netdevice-ops-R.patch # r8169 fixes from 2.6.31 Patch2010: linux-2.6-netdev-r8169-use-different-family-defaults.patch -Patch2011: linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch # Backport Toshiba updates so Bluetooth can be enabled (#437091) Patch2014: linux-2.6-toshiba-acpi-update.patch @@ -1339,7 +1338,6 @@ ApplyPatch linux-2.6-netdev-r8169-add-mo ApplyPatch linux-2.6-netdev-r8169-convert-to-netdevice-ops-R.patch -R # r8169 fixes from 2.6.30/2.6.29.5 ApplyPatch linux-2.6-netdev-r8169-use-different-family-defaults.patch -ApplyPatch linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch ApplyPatch linux-2.6-eeepc-laptop-update.patch ApplyPatch linux-2.6-toshiba-acpi-update.patch @@ -1991,10 +1989,14 @@ fi %changelog * Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.74 +- Linux 2.6.27.29-rc1 (CVE-2009-2406, CVE-2009-2407) +- Drop linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch, now in -stable. + +* Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.74 - Don't bounce virtio_blk requests (#510304) * Mon Jul 27 2009 Chuck Ebbert 2.6.27.28-170.2.73 -- Linux 2.6.27.28 +- Linux 2.6.27.28 (CVE-2009-1895, CVE-2009-1897) Dropped patches, merged in stable: linux-2.6-kbuild-fix-unifdef.c-usage-of-getline.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch linux-2.6-netdev-r8169-2.6.30.patch: r8169.c | 831 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 770 insertions(+), 61 deletions(-) Index: linux-2.6-netdev-r8169-2.6.30.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/Attic/linux-2.6-netdev-r8169-2.6.30.patch,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -p -r1.1.2.2 -r1.1.2.3 --- linux-2.6-netdev-r8169-2.6.30.patch 27 Jul 2009 21:32:16 -0000 1.1.2.2 +++ linux-2.6-netdev-r8169-2.6.30.patch 29 Jul 2009 21:32:36 -0000 1.1.2.3 @@ -1179,26 +1179,15 @@ dev->stats.rx_bytes += pkt_size; dev->stats.rx_packets++; } -@@ -2891,8 +3594,8 @@ - RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event); - tp->intr_mask = ~tp->napi_event; - -- if (likely(netif_rx_schedule_prep(dev, &tp->napi))) -- __netif_rx_schedule(dev, &tp->napi); -+ if (likely(napi_schedule_prep(&tp->napi))) -+ __napi_schedule(&tp->napi); - else if (netif_msg_intr(tp)) { - printk(KERN_INFO "%s: interrupt %04x in poll\n", - dev->name, status); @@ -2913,7 +3616,7 @@ rtl8169_tx_interrupt(dev, tp, ioaddr); if (work_done < budget) { - netif_rx_complete(dev, napi); + napi_complete(napi); - tp->intr_mask = 0xffff; - /* - * 20040426: the barrier is not strictly required but the + + /* We need for force the visibility of tp->intr_mask + * for other CPUs, as we can loose an MSI interrupt @@ -3137,6 +3840,11 @@ return 0; } Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/sources,v retrieving revision 1.922.2.15 retrieving revision 1.922.2.16 diff -u -p -r1.922.2.15 -r1.922.2.16 --- sources 27 Jul 2009 21:32:17 -0000 1.922.2.15 +++ sources 29 Jul 2009 21:32:36 -0000 1.922.2.16 @@ -1,2 +1,3 @@ b3e78977aa79d3754cb7f8143d7ddabd linux-2.6.27.tar.bz2 3bf7ae5309bbff6cd54c58450565a2a8 patch-2.6.27.28.bz2 +673903ff24a60c264b2d1c1a16a87b6a patch-2.6.27.29-rc1.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/upstream,v retrieving revision 1.834.2.15 retrieving revision 1.834.2.16 diff -u -p -r1.834.2.15 -r1.834.2.16 --- upstream 27 Jul 2009 21:32:17 -0000 1.834.2.15 +++ upstream 29 Jul 2009 21:32:37 -0000 1.834.2.16 @@ -1,2 +1,4 @@ linux-2.6.27.tar.bz2 patch-2.6.27.28.bz2 +patch-2.6.27.29-rc1.bz2 + --- linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch DELETED --- From hadess at fedoraproject.org Wed Jul 29 21:40:47 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 21:40:47 +0000 (UTC) Subject: rpms/clutter-gst/devel .cvsignore, 1.7, 1.8 clutter-gst.spec, 1.11, 1.12 sources, 1.7, 1.8 Message-ID: <20090729214047.995B011C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7458 Modified Files: .cvsignore clutter-gst.spec sources Log Message: * Wed Jul 29 2009 Bastien Nocera 0.10.0-1 - Update to 0.10.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 Jul 2009 21:53:20 -0000 1.7 +++ .cvsignore 29 Jul 2009 21:40:47 -0000 1.8 @@ -1 +1 @@ -clutter-gst-0.9.0.tar.bz2 +clutter-gst-0.10.0.tar.bz2 Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- clutter-gst.spec 26 Jul 2009 11:20:48 -0000 1.11 +++ clutter-gst.spec 29 Jul 2009 21:40:47 -0000 1.12 @@ -1,5 +1,5 @@ Name: clutter-gst -Version: 0.9.0 +Version: 0.10.0 Release: 1%{?dist} Summary: ClutterMedia interface to GStreamer @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libclutter-gst-0.9.so %changelog +* Wed Jul 29 2009 Bastien Nocera 0.10.0-1 +- Update to 0.10.0 + * Sat Jul 25 2009 Bastien Nocera 0.9.0-1 - Update to 0.9.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 Jul 2009 21:53:20 -0000 1.7 +++ sources 29 Jul 2009 21:40:47 -0000 1.8 @@ -1 +1 @@ -ddb41185fdad5ce689a133c13e342057 clutter-gst-0.9.0.tar.bz2 +876317e3f445bd28fcb9206b2272c102 clutter-gst-0.10.0.tar.bz2 From cwickert at fedoraproject.org Wed Jul 29 21:42:38 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Wed, 29 Jul 2009 21:42:38 +0000 (UTC) Subject: rpms/rednotebook/devel .cvsignore, 1.15, 1.16 rednotebook.spec, 1.15, 1.16 sources, 1.15, 1.16 Message-ID: <20090729214238.97EBC11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/rednotebook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8541 Modified Files: .cvsignore rednotebook.spec sources Log Message: * Wed Jul 29 2009 Christoph Wickert - 0.8.2-1 - Updated to new upstream version 0.8.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 25 Jul 2009 12:20:02 -0000 1.15 +++ .cvsignore 29 Jul 2009 21:42:38 -0000 1.16 @@ -1 +1 @@ -rednotebook-0.8.1.tar.gz +rednotebook-0.8.2.tar.gz Index: rednotebook.spec =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/rednotebook.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- rednotebook.spec 25 Jul 2009 12:20:02 -0000 1.15 +++ rednotebook.spec 29 Jul 2009 21:42:38 -0000 1.16 @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: rednotebook -Version: 0.8.1 +Version: 0.8.2 Release: 1%{?dist} Summary: A desktop diary @@ -71,6 +71,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitelib}/%{name}*.egg-info %changelog +* Wed Jul 29 2009 Christoph Wickert - 0.8.2-1 +- Updated to new upstream version 0.8.2 + * Sat Jul 25 2009 Christoph Wickert - 0.8.1-1 - Updated to new upstream version 0.8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 25 Jul 2009 12:20:02 -0000 1.15 +++ sources 29 Jul 2009 21:42:38 -0000 1.16 @@ -1 +1 @@ -de46ca9d09cfd9553bf1888419cce592 rednotebook-0.8.1.tar.gz +40cf83b574943beb1bb4e0cd351e4c17 rednotebook-0.8.2.tar.gz From smilner at fedoraproject.org Wed Jul 29 21:52:38 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 21:52:38 +0000 (UTC) Subject: rpms/Django/F-9 .cvsignore, 1.9, 1.10 Django.spec, 1.14, 1.15 sources, 1.9, 1.10 Message-ID: <20090729215238.DA90511C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10562 Modified Files: .cvsignore Django.spec sources Log Message: Update for http://www.djangoproject.com/weblog/2009/jul/28/security/ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 Dec 2008 06:23:24 -0000 1.9 +++ .cvsignore 29 Jul 2009 21:52:38 -0000 1.10 @@ -1 +1 @@ -Django-1.0.2-final.tar.gz +Django-1.0.3.tar.gz Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/Django.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- Django.spec 13 Mar 2009 01:40:57 -0000 1.14 +++ Django.spec 29 Jul 2009 21:52:38 -0000 1.15 @@ -2,14 +2,14 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: Django -Version: 1.0.2 +Version: 1.0.3 Release: 2%{?dist} Summary: A high-level Python Web framework Group: Development/Languages License: BSD URL: http://www.djangoproject.com/ -Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}-final.tar.gz +Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz # stub simplejson module that imports the system version Source1: simplejson-init.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,7 @@ Python Web framework. %prep -%setup -q -n %{name}-%{version}-final +%setup -q -n %{name}-%{version} # remove bundled simplejson cd django/utils/simplejson/ rm -rf * @@ -82,7 +82,6 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/*-messages.py %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py -%exclude %{_bindir}/django-admin.py? %{python_sitelib}/django %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info @@ -93,8 +92,18 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog -* Thu Mar 12 2009 Michel Salim - 1.0.2-2 +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 +- Fix changelog. + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 +- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ + +* Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) +- No longer excluding *.py? in bindir, F11's Python does not optimizes these + +* Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Dec 14 2008 Michel Salim - 1.0.2-1 - Update to 1.0.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Dec 2008 06:23:25 -0000 1.9 +++ sources 29 Jul 2009 21:52:38 -0000 1.10 @@ -1 +1 @@ -89353e3749668778f1370d2e444f3adc Django-1.0.2-final.tar.gz +3c5435b015d8cde602b17a5f0c9873dc Django-1.0.3.tar.gz From pbrobinson at fedoraproject.org Wed Jul 29 21:52:46 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 21:52:46 +0000 (UTC) Subject: rpms/xapian-core/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 xapian-core.spec, 1.24, 1.25 Message-ID: <20090729215246.E747C11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/xapian-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10649 Modified Files: .cvsignore sources xapian-core.spec Log Message: - Update to 1.0.14 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 5 Jun 2009 17:35:30 -0000 1.12 +++ .cvsignore 29 Jul 2009 21:52:46 -0000 1.13 @@ -1 +1 @@ -xapian-core-1.0.13.tar.gz +xapian-core-1.0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 5 Jun 2009 17:35:30 -0000 1.12 +++ sources 29 Jul 2009 21:52:46 -0000 1.13 @@ -1 +1 @@ -5442e7ffc75abd853d1ab1d12667a3e9 xapian-core-1.0.13.tar.gz +f318fe11143af82aa6679acc51723a1a xapian-core-1.0.14.tar.gz Index: xapian-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/devel/xapian-core.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xapian-core.spec 27 Jul 2009 07:34:15 -0000 1.24 +++ xapian-core.spec 29 Jul 2009 21:52:46 -0000 1.25 @@ -1,7 +1,7 @@ Summary: The Xapian Probabilistic Information Retrieval Library Name: xapian-core -Version: 1.0.13 -Release: 2%{?dist} +Version: 1.0.14 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Databases URL: http://www.xapian.org/ @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_mandir}/man1/xapian-config.1* %changelog +* Wed Jul 29 2009 Peter Robinson - 1.0.14-1 +- Update to 1.0.14 + * Mon Jul 27 2009 Fedora Release Engineering - 1.0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cebbert at fedoraproject.org Wed Jul 29 21:53:01 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 29 Jul 2009 21:53:01 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-upstream-reverts.patch,1.8,1.9 Message-ID: <20090729215301.734D311C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10788 Modified Files: linux-2.6-upstream-reverts.patch Log Message: drop 2.6.30.4-rc1 USB patches NAKed by maintainer linux-2.6-upstream-reverts.patch: core/hcd.h | 4 ++ core/hub.c | 40 ++++++++++++++-------- core/hub.h | 6 ++- host/ehci-au1xxx.c | 2 + host/ehci-fsl.c | 2 + host/ehci-hcd.c | 2 + host/ehci-ixp4xx.c | 2 + host/ehci-orion.c | 2 + host/ehci-pci.c | 2 + host/ehci-ppc-of.c | 2 + host/ehci-ps3.c | 2 + host/ehci-q.c | 93 +++++++++++++++++++++++++++++++++++++++-------------- host/ehci.h | 2 + 13 files changed, 121 insertions(+), 40 deletions(-) Index: linux-2.6-upstream-reverts.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-upstream-reverts.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- linux-2.6-upstream-reverts.patch 25 Jul 2009 04:09:27 -0000 1.8 +++ linux-2.6-upstream-reverts.patch 29 Jul 2009 21:53:01 -0000 1.9 @@ -1 +1,454 @@ -nil +From: Alan Stern +[Alan Stern requested this be removed from -stable] + +commit 914b701280a76f96890ad63eb0fa99bf204b961c upstream. + +This patch (as1256) changes ehci-hcd and all the other drivers in the +EHCI family to make use of the new clear_tt_buffer callbacks. When a +Clear-TT-Buffer request is in progress for a QH, the QH is not allowed +to be linked into the async schedule until the request is finished. +At that time, if there are any URBs queued for the QH, it is linked +into the async schedule. + +Signed-off-by: Alan Stern +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/usb/host/ehci-au1xxx.c | 2 + drivers/usb/host/ehci-fsl.c | 2 + drivers/usb/host/ehci-hcd.c | 2 + drivers/usb/host/ehci-ixp4xx.c | 2 + drivers/usb/host/ehci-orion.c | 2 + drivers/usb/host/ehci-pci.c | 2 + drivers/usb/host/ehci-ppc-of.c | 2 + drivers/usb/host/ehci-ps3.c | 2 + drivers/usb/host/ehci-q.c | 91 ++++++++++++++++++++++++++++++----------- + drivers/usb/host/ehci.h | 2 + 10 files changed, 86 insertions(+), 23 deletions(-) + +--- a/drivers/usb/host/ehci-au1xxx.c ++++ b/drivers/usb/host/ehci-au1xxx.c +@@ -112,6 +112,8 @@ static const struct hc_driver ehci_au1xx + .bus_resume = ehci_bus_resume, + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + static int ehci_hcd_au1xxx_drv_probe(struct platform_device *pdev) +--- a/drivers/usb/host/ehci-fsl.c ++++ b/drivers/usb/host/ehci-fsl.c +@@ -324,6 +324,8 @@ static const struct hc_driver ehci_fsl_h + .bus_resume = ehci_bus_resume, + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + static int ehci_fsl_drv_probe(struct platform_device *pdev) +--- a/drivers/usb/host/ehci.h ++++ b/drivers/usb/host/ehci.h +@@ -353,7 +353,9 @@ struct ehci_qh { + unsigned short period; /* polling interval */ + unsigned short start; /* where polling starts */ + #define NO_FRAME ((unsigned short)~0) /* pick new start */ ++ + struct usb_device *dev; /* access to TT */ ++ unsigned clearing_tt:1; /* Clear-TT-Buf in progress */ + } __attribute__ ((aligned (32))); + + /*-------------------------------------------------------------------------*/ +--- a/drivers/usb/host/ehci-hcd.c ++++ b/drivers/usb/host/ehci-hcd.c +@@ -1003,6 +1003,8 @@ idle_timeout: + schedule_timeout_uninterruptible(1); + goto rescan; + case QH_STATE_IDLE: /* fully unlinked */ ++ if (qh->clearing_tt) ++ goto idle_timeout; + if (list_empty (&qh->qtd_list)) { + qh_put (qh); + break; +--- a/drivers/usb/host/ehci-ixp4xx.c ++++ b/drivers/usb/host/ehci-ixp4xx.c +@@ -60,6 +60,8 @@ static const struct hc_driver ixp4xx_ehc + #endif + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + static int ixp4xx_ehci_probe(struct platform_device *pdev) +--- a/drivers/usb/host/ehci-orion.c ++++ b/drivers/usb/host/ehci-orion.c +@@ -164,6 +164,8 @@ static const struct hc_driver ehci_orion + .bus_resume = ehci_bus_resume, + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + static void __init +--- a/drivers/usb/host/ehci-pci.c ++++ b/drivers/usb/host/ehci-pci.c +@@ -408,6 +408,8 @@ static const struct hc_driver ehci_pci_h + .bus_resume = ehci_bus_resume, + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + /*-------------------------------------------------------------------------*/ +--- a/drivers/usb/host/ehci-ppc-of.c ++++ b/drivers/usb/host/ehci-ppc-of.c +@@ -78,6 +78,8 @@ static const struct hc_driver ehci_ppc_o + #endif + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + +--- a/drivers/usb/host/ehci-ps3.c ++++ b/drivers/usb/host/ehci-ps3.c +@@ -74,6 +74,8 @@ static const struct hc_driver ps3_ehci_h + #endif + .relinquish_port = ehci_relinquish_port, + .port_handed_over = ehci_port_handed_over, ++ ++ .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, + }; + + static int ps3_ehci_probe(struct ps3_system_bus_device *dev) +--- a/drivers/usb/host/ehci-q.c ++++ b/drivers/usb/host/ehci-q.c +@@ -139,6 +139,55 @@ qh_refresh (struct ehci_hcd *ehci, struc + + /*-------------------------------------------------------------------------*/ + ++static void qh_link_async(struct ehci_hcd *ehci, struct ehci_qh *qh); ++ ++static void ehci_clear_tt_buffer_complete(struct usb_hcd *hcd, ++ struct usb_host_endpoint *ep) ++{ ++ struct ehci_hcd *ehci = hcd_to_ehci(hcd); ++ struct ehci_qh *qh = ep->hcpriv; ++ unsigned long flags; ++ ++ spin_lock_irqsave(&ehci->lock, flags); ++ qh->clearing_tt = 0; ++ if (qh->qh_state == QH_STATE_IDLE && !list_empty(&qh->qtd_list) ++ && HC_IS_RUNNING(hcd->state)) ++ qh_link_async(ehci, qh); ++ spin_unlock_irqrestore(&ehci->lock, flags); ++} ++ ++static void ehci_clear_tt_buffer(struct ehci_hcd *ehci, struct ehci_qh *qh, ++ struct urb *urb, u32 token) ++{ ++ ++ /* If an async split transaction gets an error or is unlinked, ++ * the TT buffer may be left in an indeterminate state. We ++ * have to clear the TT buffer. ++ * ++ * Note: this routine is never called for Isochronous transfers. ++ */ ++ if (urb->dev->tt && !usb_pipeint(urb->pipe) && !qh->clearing_tt) { ++#ifdef DEBUG ++ struct usb_device *tt = urb->dev->tt->hub; ++ dev_dbg(&tt->dev, ++ "clear tt buffer port %d, a%d ep%d t%08x\n", ++ urb->dev->ttport, urb->dev->devnum, ++ usb_pipeendpoint(urb->pipe), token); ++#endif /* DEBUG */ ++ if (!ehci_is_TDI(ehci) ++ || urb->dev->tt->hub != ++ ehci_to_hcd(ehci)->self.root_hub) { ++ if (usb_hub_clear_tt_buffer(urb) == 0) ++ qh->clearing_tt = 1; ++ } else { ++ ++ /* REVISIT ARC-derived cores don't clear the root ++ * hub TT buffer in this way... ++ */ ++ } ++ } ++} ++ + static int qtd_copy_status ( + struct ehci_hcd *ehci, + struct urb *urb, +@@ -195,28 +244,6 @@ static int qtd_copy_status ( + usb_pipeendpoint (urb->pipe), + usb_pipein (urb->pipe) ? "in" : "out", + token, status); +- +- /* if async CSPLIT failed, try cleaning out the TT buffer */ +- if (status != -EPIPE +- && urb->dev->tt +- && !usb_pipeint(urb->pipe) +- && ((token & QTD_STS_MMF) != 0 +- || QTD_CERR(token) == 0) +- && (!ehci_is_TDI(ehci) +- || urb->dev->tt->hub != +- ehci_to_hcd(ehci)->self.root_hub)) { +-#ifdef DEBUG +- struct usb_device *tt = urb->dev->tt->hub; +- dev_dbg (&tt->dev, +- "clear tt buffer port %d, a%d ep%d t%08x\n", +- urb->dev->ttport, urb->dev->devnum, +- usb_pipeendpoint (urb->pipe), token); +-#endif /* DEBUG */ +- /* REVISIT ARC-derived cores don't clear the root +- * hub TT buffer in this way... +- */ +- usb_hub_clear_tt_buffer(urb); +- } + } + + return status; +@@ -407,9 +434,16 @@ qh_completions (struct ehci_hcd *ehci, s + /* qh unlinked; token in overlay may be most current */ + if (state == QH_STATE_IDLE + && cpu_to_hc32(ehci, qtd->qtd_dma) +- == qh->hw_current) ++ == qh->hw_current) { + token = hc32_to_cpu(ehci, qh->hw_token); + ++ /* An unlink may leave an incomplete ++ * async transaction in the TT buffer. ++ * We have to clear it. ++ */ ++ ehci_clear_tt_buffer(ehci, qh, urb, token); ++ } ++ + /* force halt for unlinked or blocked qh, so we'll + * patch the qh later and so that completions can't + * activate it while we "know" it's stopped. +@@ -435,6 +469,13 @@ halt: + && (qtd->hw_alt_next + & EHCI_LIST_END(ehci))) + last_status = -EINPROGRESS; ++ ++ /* As part of low/full-speed endpoint-halt processing ++ * we must clear the TT buffer (11.17.5). ++ */ ++ if (unlikely(last_status != -EINPROGRESS && ++ last_status != -EREMOTEIO)) ++ ehci_clear_tt_buffer(ehci, qh, urb, token); + } + + /* if we're removing something not at the queue head, +@@ -864,6 +905,10 @@ static void qh_link_async (struct ehci_h + __hc32 dma = QH_NEXT(ehci, qh->qh_dma); + struct ehci_qh *head; + ++ /* Don't link a QH if there's a Clear-TT-Buffer pending */ ++ if (unlikely(qh->clearing_tt)) ++ return; ++ + /* (re)start the async schedule? */ + head = ehci->async; + timer_action_done (ehci, TIMER_ASYNC_OFF); +From: Alan Stern +[Alan Stern requested this be removed from -stable] + +commit cb88a1b887bb8908f6e00ce29e893ea52b074940 upstream. + +This patch (as1255) updates the interface for calling +usb_hub_clear_tt_buffer(). Even the name of the function is changed! + +When an async URB (i.e., Control or Bulk) going through a high-speed +hub to a non-high-speed device is cancelled or fails, the hub's +Transaction Translator buffer may be left busy still trying to +complete the transaction. The buffer has to be cleared; that's what +usb_hub_clear_tt_buffer() does. + +It isn't safe to send any more URBs to the same endpoint until the TT +buffer is fully clear. Therefore the HCD needs to be told when the +Clear-TT-Buffer request has finished. This patch adds a callback +method to struct hc_driver for that purpose, and makes the hub driver +invoke the callback at the proper time. + +The patch also changes a couple of names; "hub_tt_kevent" and +"tt.kevent" now look rather antiquated. + +Signed-off-by: Alan Stern +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/usb/core/hcd.h | 4 ++++ + drivers/usb/core/hub.c | 40 ++++++++++++++++++++++++++-------------- + drivers/usb/core/hub.h | 6 ++++-- + drivers/usb/host/ehci-q.c | 2 +- + 4 files changed, 35 insertions(+), 17 deletions(-) + +--- a/drivers/usb/core/hcd.h ++++ b/drivers/usb/core/hcd.h +@@ -224,6 +224,10 @@ struct hc_driver { + void (*relinquish_port)(struct usb_hcd *, int); + /* has a port been handed over to a companion? */ + int (*port_handed_over)(struct usb_hcd *, int); ++ ++ /* CLEAR_TT_BUFFER completion callback */ ++ void (*clear_tt_buffer_complete)(struct usb_hcd *, ++ struct usb_host_endpoint *); + }; + + extern int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb); +--- a/drivers/usb/core/hub.c ++++ b/drivers/usb/core/hub.c +@@ -448,10 +448,10 @@ hub_clear_tt_buffer (struct usb_device * + * talking to TTs must queue control transfers (not just bulk and iso), so + * both can talk to the same hub concurrently. + */ +-static void hub_tt_kevent (struct work_struct *work) ++static void hub_tt_work(struct work_struct *work) + { + struct usb_hub *hub = +- container_of(work, struct usb_hub, tt.kevent); ++ container_of(work, struct usb_hub, tt.clear_work); + unsigned long flags; + int limit = 100; + +@@ -460,6 +460,7 @@ static void hub_tt_kevent (struct work_s + struct list_head *temp; + struct usb_tt_clear *clear; + struct usb_device *hdev = hub->hdev; ++ const struct hc_driver *drv; + int status; + + temp = hub->tt.clear_list.next; +@@ -469,21 +470,25 @@ static void hub_tt_kevent (struct work_s + /* drop lock so HCD can concurrently report other TT errors */ + spin_unlock_irqrestore (&hub->tt.lock, flags); + status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt); +- spin_lock_irqsave (&hub->tt.lock, flags); +- + if (status) + dev_err (&hdev->dev, + "clear tt %d (%04x) error %d\n", + clear->tt, clear->devinfo, status); ++ ++ /* Tell the HCD, even if the operation failed */ ++ drv = clear->hcd->driver; ++ if (drv->clear_tt_buffer_complete) ++ (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep); ++ + kfree(clear); ++ spin_lock_irqsave(&hub->tt.lock, flags); + } + spin_unlock_irqrestore (&hub->tt.lock, flags); + } + + /** +- * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub +- * @udev: the device whose split transaction failed +- * @pipe: identifies the endpoint of the failed transaction ++ * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub ++ * @urb: an URB associated with the failed or incomplete split transaction + * + * High speed HCDs use this to tell the hub driver that some split control or + * bulk transaction failed in a way that requires clearing internal state of +@@ -493,8 +498,10 @@ static void hub_tt_kevent (struct work_s + * It may not be possible for that hub to handle additional full (or low) + * speed transactions until that state is fully cleared out. + */ +-void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe) ++int usb_hub_clear_tt_buffer(struct urb *urb) + { ++ struct usb_device *udev = urb->dev; ++ int pipe = urb->pipe; + struct usb_tt *tt = udev->tt; + unsigned long flags; + struct usb_tt_clear *clear; +@@ -506,7 +513,7 @@ void usb_hub_tt_clear_buffer (struct usb + if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) { + dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n"); + /* FIXME recover somehow ... RESET_TT? */ +- return; ++ return -ENOMEM; + } + + /* info that CLEAR_TT_BUFFER needs */ +@@ -518,14 +525,19 @@ void usb_hub_tt_clear_buffer (struct usb + : (USB_ENDPOINT_XFER_BULK << 11); + if (usb_pipein (pipe)) + clear->devinfo |= 1 << 15; +- ++ ++ /* info for completion callback */ ++ clear->hcd = bus_to_hcd(udev->bus); ++ clear->ep = urb->ep; ++ + /* tell keventd to clear state for this TT */ + spin_lock_irqsave (&tt->lock, flags); + list_add_tail (&clear->clear_list, &tt->clear_list); +- schedule_work (&tt->kevent); ++ schedule_work(&tt->clear_work); + spin_unlock_irqrestore (&tt->lock, flags); ++ return 0; + } +-EXPORT_SYMBOL_GPL(usb_hub_tt_clear_buffer); ++EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer); + + /* If do_delay is false, return the number of milliseconds the caller + * needs to delay. +@@ -816,7 +828,7 @@ static void hub_quiesce(struct usb_hub * + if (hub->has_indicators) + cancel_delayed_work_sync(&hub->leds); + if (hub->tt.hub) +- cancel_work_sync(&hub->tt.kevent); ++ cancel_work_sync(&hub->tt.clear_work); + } + + /* caller has locked the hub device */ +@@ -933,7 +945,7 @@ static int hub_configure(struct usb_hub + + spin_lock_init (&hub->tt.lock); + INIT_LIST_HEAD (&hub->tt.clear_list); +- INIT_WORK (&hub->tt.kevent, hub_tt_kevent); ++ INIT_WORK(&hub->tt.clear_work, hub_tt_work); + switch (hdev->descriptor.bDeviceProtocol) { + case 0: + break; +--- a/drivers/usb/core/hub.h ++++ b/drivers/usb/core/hub.h +@@ -185,16 +185,18 @@ struct usb_tt { + /* for control/bulk error recovery (CLEAR_TT_BUFFER) */ + spinlock_t lock; + struct list_head clear_list; /* of usb_tt_clear */ +- struct work_struct kevent; ++ struct work_struct clear_work; + }; + + struct usb_tt_clear { + struct list_head clear_list; + unsigned tt; + u16 devinfo; ++ struct usb_hcd *hcd; ++ struct usb_host_endpoint *ep; + }; + +-extern void usb_hub_tt_clear_buffer(struct usb_device *dev, int pipe); ++extern int usb_hub_clear_tt_buffer(struct urb *urb); + extern void usb_ep0_reinit(struct usb_device *); + + #endif /* __LINUX_HUB_H */ +--- a/drivers/usb/host/ehci-q.c ++++ b/drivers/usb/host/ehci-q.c +@@ -215,7 +215,7 @@ static int qtd_copy_status ( + /* REVISIT ARC-derived cores don't clear the root + * hub TT buffer in this way... + */ +- usb_hub_tt_clear_buffer (urb->dev, urb->pipe); ++ usb_hub_clear_tt_buffer(urb); + } + } + From smilner at fedoraproject.org Wed Jul 29 21:53:46 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 21:53:46 +0000 (UTC) Subject: rpms/Django/F-10 .cvsignore, 1.11, 1.12 Django.spec, 1.16, 1.17 sources, 1.11, 1.12 Message-ID: <20090729215346.924E411C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10913 Modified Files: .cvsignore Django.spec sources Log Message: Update for http://www.djangoproject.com/weblog/2009/jul/28/security/ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-10/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 14 Dec 2008 06:23:24 -0000 1.11 +++ .cvsignore 29 Jul 2009 21:53:46 -0000 1.12 @@ -1 +1 @@ -Django-1.0.2-final.tar.gz +Django-1.0.3.tar.gz Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-10/Django.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- Django.spec 13 Mar 2009 01:40:56 -0000 1.16 +++ Django.spec 29 Jul 2009 21:53:46 -0000 1.17 @@ -2,14 +2,14 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: Django -Version: 1.0.2 +Version: 1.0.3 Release: 2%{?dist} Summary: A high-level Python Web framework Group: Development/Languages License: BSD URL: http://www.djangoproject.com/ -Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}-final.tar.gz +Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz # stub simplejson module that imports the system version Source1: simplejson-init.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,7 @@ Python Web framework. %prep -%setup -q -n %{name}-%{version}-final +%setup -q -n %{name}-%{version} # remove bundled simplejson cd django/utils/simplejson/ rm -rf * @@ -82,7 +82,6 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/*-messages.py %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py -%exclude %{_bindir}/django-admin.py? %{python_sitelib}/django %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info @@ -93,8 +92,18 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog -* Thu Mar 12 2009 Michel Salim - 1.0.2-2 +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 +- Fix changelog. + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 +- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ + +* Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) +- No longer excluding *.py? in bindir, F11's Python does not optimizes these + +* Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Dec 14 2008 Michel Salim - 1.0.2-1 - Update to 1.0.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 14 Dec 2008 06:23:24 -0000 1.11 +++ sources 29 Jul 2009 21:53:46 -0000 1.12 @@ -1 +1 @@ -89353e3749668778f1370d2e444f3adc Django-1.0.2-final.tar.gz +3c5435b015d8cde602b17a5f0c9873dc Django-1.0.3.tar.gz From smilner at fedoraproject.org Wed Jul 29 21:54:21 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 21:54:21 +0000 (UTC) Subject: rpms/Django/F-9 Django.spec,1.15,1.16 Message-ID: <20090729215421.9B71111C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11164 Modified Files: Django.spec Log Message: Tagged to soon. Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/Django.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- Django.spec 29 Jul 2009 21:52:38 -0000 1.15 +++ Django.spec 29 Jul 2009 21:54:21 -0000 1.16 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 +- Bump for tag issue. + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 - Fix changelog. From pbrobinson at fedoraproject.org Wed Jul 29 21:55:46 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 29 Jul 2009 21:55:46 +0000 (UTC) Subject: rpms/xapian-bindings/devel .cvsignore, 1.10, 1.11 sources, 1.11, 1.12 xapian-bindings.spec, 1.22, 1.23 Message-ID: <20090729215546.ADD7B11C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/xapian-bindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11618 Modified Files: .cvsignore sources xapian-bindings.spec Log Message: - Update to 1.0.14 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xapian-bindings/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 5 Jun 2009 17:36:41 -0000 1.10 +++ .cvsignore 29 Jul 2009 21:55:46 -0000 1.11 @@ -1 +1 @@ -xapian-bindings-1.0.13.tar.gz +xapian-bindings-1.0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xapian-bindings/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 5 Jun 2009 17:36:41 -0000 1.11 +++ sources 29 Jul 2009 21:55:46 -0000 1.12 @@ -1 +1 @@ -d5721907e4fdd3e91322855a94e4316a xapian-bindings-1.0.13.tar.gz +d6f86ccc3d1a534902e1cf8df1cb43f3 xapian-bindings-1.0.14.tar.gz Index: xapian-bindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-bindings/devel/xapian-bindings.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xapian-bindings.spec 27 Jul 2009 07:33:59 -0000 1.22 +++ xapian-bindings.spec 29 Jul 2009 21:55:46 -0000 1.23 @@ -4,8 +4,8 @@ Summary: Bindings for the Xapian Probabilistic Information Retrieval Library Name: xapian-bindings -Version: 1.0.13 -Release: 2%{?dist} +Version: 1.0.14 +Release: 1%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://www.xapian.org/ @@ -77,6 +77,9 @@ rm -rf %{buildroot}%{buildroot}/usr/shar %changelog +* Wed Jul 29 2009 Peter Robinson 1.0.14.1 +- Update to 1.0.14 + * Mon Jul 27 2009 Fedora Release Engineering - 1.0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From than at fedoraproject.org Wed Jul 29 22:06:46 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:06:46 +0000 (UTC) Subject: rpms/kdeaccessibility/devel .cvsignore, 1.43, 1.44 kdeaccessibility.spec, 1.86, 1.87 sources, 1.45, 1.46 Message-ID: <20090729220646.6EB7511C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeaccessibility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15028 Modified Files: .cvsignore kdeaccessibility.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 21 Jul 2009 21:36:08 -0000 1.43 +++ .cvsignore 29 Jul 2009 22:06:46 -0000 1.44 @@ -2,3 +2,4 @@ kdeaccessibility-4.2.90.tar.bz2 kdeaccessibility-4.2.95.tar.bz2 kdeaccessibility-4.2.96.tar.bz2 kdeaccessibility-4.2.98.tar.bz2 +kdeaccessibility-4.3.0.tar.bz2 Index: kdeaccessibility.spec =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/kdeaccessibility.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- kdeaccessibility.spec 25 Jul 2009 04:24:57 -0000 1.86 +++ kdeaccessibility.spec 29 Jul 2009 22:06:46 -0000 1.87 @@ -1,8 +1,8 @@ Summary: K Desktop Environment - Accessibility Name: kdeaccessibility Epoch: 1 -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -111,6 +111,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 1:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 21 Jul 2009 21:37:17 -0000 1.45 +++ sources 29 Jul 2009 22:06:46 -0000 1.46 @@ -1 +1 @@ -5afe49a97ced26b4b0be440b96dd7599 kdeaccessibility-4.2.98.tar.bz2 +76435ce1bf787713effe079a3664d3cd kdeaccessibility-4.3.0.tar.bz2 From than at fedoraproject.org Wed Jul 29 22:09:32 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:09:32 +0000 (UTC) Subject: rpms/kdeadmin/devel .cvsignore, 1.64, 1.65 kdeadmin.spec, 1.145, 1.146 sources, 1.66, 1.67 kdeadmin-4.2.98-knetworkconf.patch, 1.1, NONE Message-ID: <20090729220932.7BD2B11C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15955 Modified Files: .cvsignore kdeadmin.spec sources Removed Files: kdeadmin-4.2.98-knetworkconf.patch Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 21 Jul 2009 21:47:05 -0000 1.64 +++ .cvsignore 29 Jul 2009 22:09:31 -0000 1.65 @@ -2,3 +2,4 @@ kdeadmin-4.2.90.tar.bz2 kdeadmin-4.2.95.tar.bz2 kdeadmin-4.2.96.tar.bz2 kdeadmin-4.2.98.tar.bz2 +kdeadmin-4.3.0.tar.bz2 Index: kdeadmin.spec =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- kdeadmin.spec 27 Jul 2009 11:16:50 -0000 1.145 +++ kdeadmin.spec 29 Jul 2009 22:09:32 -0000 1.146 @@ -1,12 +1,13 @@ -%if 0%{?rhel} == 0 +%if 0%{?rhel} == 1 %define system_config_printer_kde 1 +%define include_kpackage 1 %endif Name: kdeadmin Summary: K Desktop Environment - Administrative tools Epoch: 7 -Version: 4.2.98 -Release: 4%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -21,7 +22,6 @@ Source2: kuser.pamd Patch0: kdeadmin-4.2.85-printing.patch # upstream patches -Patch100: kdeadmin-4.2.98-knetworkconf.patch BuildRequires: kdelibs4-devel >= %{version} BuildRequires: kdepimlibs-devel >= %{version} @@ -66,7 +66,6 @@ a CUPS print server. %patch0 -p1 -b .printing # upstream patches -%patch100 -p1 -b .fedora %build @@ -103,6 +102,7 @@ touch --no-create %{_kde4_iconsdir}/hico gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : fi +%if 0%{?include_kpackage} %post kpackage touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : @@ -114,7 +114,7 @@ if [ $1 -eq 0 ] ; then touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : fi - +%endif %files %defattr(-,root,root,-) @@ -139,6 +139,7 @@ fi %{_kde4_libdir}/kde4/kcm_cron.so %{_kde4_libdir}/kde4/kcm_knetworkconfmodule.so +%if 0%{?include_kpackage} %files kpackage %defattr(-,root,root,-) %{_kde4_bindir}/kpackage @@ -147,6 +148,7 @@ fi %{_kde4_datadir}/config.kcfg/kpackageSettings.kcfg %{_kde4_docdir}/HTML/en/kpackage/ %{_kde4_iconsdir}/hicolor/*/*/kpackage* +%endif %if 0%{?system_config_printer_kde} %files -n system-config-printer-kde @@ -157,6 +159,12 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + +* Tue Jul 28 2009 Than Ngo - 4.2.98-5 +- don't include kpackage fo rhel + * Mon Jul 27 2009 Than Ngo - 4.2.98-4 - don't include system_config_printer_kde for rhel Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/sources,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- sources 21 Jul 2009 21:47:05 -0000 1.66 +++ sources 29 Jul 2009 22:09:32 -0000 1.67 @@ -1 +1 @@ -dac1a55360fec5724a6214df7d1fd1a0 kdeadmin-4.2.98.tar.bz2 +4712ade616d3c3a987281d24326ee9af kdeadmin-4.3.0.tar.bz2 --- kdeadmin-4.2.98-knetworkconf.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 29 22:10:26 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 29 Jul 2009 22:10:26 +0000 (UTC) Subject: rpms/kphotoalbum/devel .cvsignore, 1.15, 1.16 kphotoalbum.spec, 1.39, 1.40 sources, 1.14, 1.15 Message-ID: <20090729221026.B533C11C04D6@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kphotoalbum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16367 Modified Files: .cvsignore kphotoalbum.spec sources Log Message: * Wed Jul 29 2009 Rex Dieter 4.0.2-1 - kphotoalbum-4.0.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kphotoalbum/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 22 May 2009 16:46:06 -0000 1.15 +++ .cvsignore 29 Jul 2009 22:10:26 -0000 1.16 @@ -1 +1 @@ -kphotoalbum-4.0.1.tar.bz2 +kphotoalbum-4.0.2.tar.bz2 Index: kphotoalbum.spec =================================================================== RCS file: /cvs/pkgs/rpms/kphotoalbum/devel/kphotoalbum.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- kphotoalbum.spec 25 Jul 2009 04:45:43 -0000 1.39 +++ kphotoalbum.spec 29 Jul 2009 22:10:26 -0000 1.40 @@ -1,8 +1,8 @@ Summary: KDE Photo Album Name: kphotoalbum -Version: 4.0.1 -Release: 2%{?dist} +Version: 4.0.2 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Multimedia @@ -23,9 +23,6 @@ BuildRequires: libkexiv2-devel >= 0.5.0 BuildRequires: libkipi-devel >= 0.3.0 BuildRequires: soprano-devel -Requires(post): xdg-utils -Requires(postun): xdg-utils - %description A photo album tool. Focuses on three key points: * It must be easy to describe a number of images at a time. @@ -83,12 +80,18 @@ rm -rf %{buildroot} %post -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null ||: -xdg-desktop-menu forceupdate 2> /dev/null ||: +touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : %postun -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null ||: -xdg-desktop-menu forceupdate 2> /dev/null ||: +if [ $1 -eq 0 ] ; then + update-desktop-database -q &> /dev/null + touch --no-create %{_datadir}/icons/hicolor &> /dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +fi + +%posttrans +update-desktop-database -q &> /dev/null +gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : %files -f %{name}.lang @@ -102,6 +105,9 @@ xdg-desktop-menu forceupdate 2> /dev/nul %changelog +* Wed Jul 29 2009 Rex Dieter 4.0.2-1 +- kphotoalbum-4.0.2 + * Fri Jul 24 2009 Fedora Release Engineering - 4.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kphotoalbum/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 22 May 2009 16:46:06 -0000 1.14 +++ sources 29 Jul 2009 22:10:26 -0000 1.15 @@ -1 +1 @@ -00879c947585bc17a84d84cd3af417a5 kphotoalbum-4.0.1.tar.bz2 +2a01730dd3f0c14827c8ab3921fc64c2 kphotoalbum-4.0.2.tar.bz2 From than at fedoraproject.org Wed Jul 29 22:13:00 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:13:00 +0000 (UTC) Subject: rpms/kdeartwork/devel .cvsignore, 1.62, 1.63 kdeartwork.spec, 1.112, 1.113 sources, 1.64, 1.65 Message-ID: <20090729221300.5E77611C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeartwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17892 Modified Files: .cvsignore kdeartwork.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 21 Jul 2009 21:50:29 -0000 1.62 +++ .cvsignore 29 Jul 2009 22:12:59 -0000 1.63 @@ -2,3 +2,4 @@ kdeartwork-4.2.90.tar.bz2 kdeartwork-4.2.95.tar.bz2 kdeartwork-4.2.96.tar.bz2 kdeartwork-4.2.98.tar.bz2 +kdeartwork-4.3.0.tar.bz2 Index: kdeartwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/kdeartwork.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- kdeartwork.spec 21 Jul 2009 21:50:29 -0000 1.112 +++ kdeartwork.spec 29 Jul 2009 22:13:00 -0000 1.113 @@ -1,5 +1,5 @@ Name: kdeartwork -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} Summary: Additional artwork for KDE @@ -185,6 +185,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Tue Jul 21 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/sources,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sources 21 Jul 2009 21:50:29 -0000 1.64 +++ sources 29 Jul 2009 22:13:00 -0000 1.65 @@ -1 +1 @@ -d7ce2e6a819d4b3f524941343321de72 kdeartwork-4.2.98.tar.bz2 +3e7872e841e87f716872086571028a37 kdeartwork-4.3.0.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 29 22:15:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:15:59 +0000 Subject: [pkgdb] munge was added for stevetraylen Message-ID: <20090729221559.B80A310F897@bastion2.fedora.phx.redhat.com> tibbs has added Package munge with summary Enables uid & gid authentication across a host cluster tibbs has approved Package munge tibbs has added a Fedora devel branch for munge with an owner of stevetraylen tibbs has approved munge in Fedora devel tibbs has approved Package munge tibbs has set commit to Approved for 107427 on munge (Fedora devel) tibbs has set checkout to Approved for 107427 on munge (Fedora devel) tibbs has set build to Approved for 107427 on munge (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From pkgdb at fedoraproject.org Wed Jul 29 22:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:16:02 +0000 Subject: [pkgdb] munge summary updated by tibbs Message-ID: <20090729221602.3F82E10F89A@bastion2.fedora.phx.redhat.com> tibbs set package munge summary to Enables uid & gid authentication across a host cluster To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From pkgdb at fedoraproject.org Wed Jul 29 22:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:16:02 +0000 Subject: [pkgdb] munge (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729221602.5571E10F89F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for munge tibbs has set commit to Approved for 107427 on munge (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on munge (Fedora EPEL 4) tibbs has set build to Approved for 107427 on munge (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From pkgdb at fedoraproject.org Wed Jul 29 22:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:16:02 +0000 Subject: [pkgdb] munge (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729221602.5C2B910F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for munge tibbs has set commit to Approved for 107427 on munge (Fedora 11) tibbs has set checkout to Approved for 107427 on munge (Fedora 11) tibbs has set build to Approved for 107427 on munge (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From tibbs at fedoraproject.org Wed Jul 29 22:16:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:16:08 +0000 (UTC) Subject: rpms/munge/devel - New directory Message-ID: <20090729221608.4E65B11C0427@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/munge/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18990/rpms/munge/devel Log Message: Directory /cvs/pkgs/rpms/munge/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 22:16:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:16:08 +0000 (UTC) Subject: rpms/munge - New directory Message-ID: <20090729221608.240BC11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/munge In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18990/rpms/munge Log Message: Directory /cvs/pkgs/rpms/munge added to the repository From pkgdb at fedoraproject.org Wed Jul 29 22:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:16:02 +0000 Subject: [pkgdb] munge (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729221602.6F80710F8B7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for munge tibbs has set commit to Approved for 107427 on munge (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on munge (Fedora EPEL 5) tibbs has set build to Approved for 107427 on munge (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From pkgdb at fedoraproject.org Wed Jul 29 22:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:16:02 +0000 Subject: [pkgdb] munge (Fedora EPEL, 5) updated by tibbs Message-ID: <20090729221602.7E7B510F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for munge tibbs has set commit to Approved for 107427 on munge (Fedora 10) tibbs has set checkout to Approved for 107427 on munge (Fedora 10) tibbs has set build to Approved for 107427 on munge (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/munge From tibbs at fedoraproject.org Wed Jul 29 22:16:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:16:14 +0000 (UTC) Subject: rpms/munge/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729221614.994BC11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/munge/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18990/rpms/munge/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module munge --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: munge # $Id: Makefile,v 1.1 2009/07/29 22:16:14 tibbs Exp $ NAME := munge SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Wed Jul 29 22:16:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:16:14 +0000 (UTC) Subject: rpms/munge Makefile,NONE,1.1 Message-ID: <20090729221614.30ABB11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/munge In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18990/rpms/munge Added Files: Makefile Log Message: Setup of module munge --- NEW FILE Makefile --- # Top level Makefile for module munge all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From than at fedoraproject.org Wed Jul 29 22:17:30 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:17:30 +0000 (UTC) Subject: rpms/kdebase/devel .cvsignore, 1.90, 1.91 kdebase.spec, 1.385, 1.386 sources, 1.113, 1.114 Message-ID: <20090729221730.7CE9611C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19653 Modified Files: .cvsignore kdebase.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/.cvsignore,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- .cvsignore 21 Jul 2009 21:53:57 -0000 1.90 +++ .cvsignore 29 Jul 2009 22:17:30 -0000 1.91 @@ -2,3 +2,4 @@ kdebase-4.2.90.tar.bz2 kdebase-4.2.95.tar.bz2 kdebase-4.2.96.tar.bz2 kdebase-4.2.98.tar.bz2 +kdebase-4.3.0.tar.bz2 Index: kdebase.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/kdebase.spec,v retrieving revision 1.385 retrieving revision 1.386 diff -u -p -r1.385 -r1.386 --- kdebase.spec 25 Jul 2009 04:25:41 -0000 1.385 +++ kdebase.spec 29 Jul 2009 22:17:30 -0000 1.386 @@ -1,7 +1,7 @@ Name: kdebase Summary: K Desktop Environment 4 - Core Files -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Epoch: 6 License: GPLv2 @@ -202,6 +202,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/sources,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- sources 21 Jul 2009 21:53:57 -0000 1.113 +++ sources 29 Jul 2009 22:17:30 -0000 1.114 @@ -1 +1 @@ -1d33d01d11dc6d96449fe95fff5c151c kdebase-4.2.98.tar.bz2 +6de0b96b78504d8f5fcdee819d080fb1 kdebase-4.3.0.tar.bz2 From than at fedoraproject.org Wed Jul 29 22:21:08 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:21:08 +0000 (UTC) Subject: rpms/kdebase-runtime/devel .cvsignore, 1.35, 1.36 kdebase-runtime.spec, 1.131, 1.132 sources, 1.36, 1.37 Message-ID: <20090729222108.0FA5311C0424@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20929 Modified Files: .cvsignore kdebase-runtime.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 21 Jul 2009 22:01:27 -0000 1.35 +++ .cvsignore 29 Jul 2009 22:21:07 -0000 1.36 @@ -2,3 +2,4 @@ kdebase-runtime-4.2.90.tar.bz2 kdebase-runtime-4.2.95.tar.bz2 kdebase-runtime-4.2.96.tar.bz2 kdebase-runtime-4.2.98.tar.bz2 +kdebase-runtime-4.3.0.tar.bz2 Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.131 retrieving revision 1.132 diff -u -p -r1.131 -r1.132 --- kdebase-runtime.spec 25 Jul 2009 04:25:55 -0000 1.131 +++ kdebase-runtime.spec 29 Jul 2009 22:21:07 -0000 1.132 @@ -4,8 +4,8 @@ Name: kdebase-runtime Summary: K Desktop Environment - Runtime -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} # http://techbase.kde.org/Policies/Licensing_Policy License: LGPLv2+ @@ -215,6 +215,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 21 Jul 2009 22:01:27 -0000 1.36 +++ sources 29 Jul 2009 22:21:07 -0000 1.37 @@ -1 +1 @@ -f31373a7cc1fc1d465d0385887e783a5 kdebase-runtime-4.2.98.tar.bz2 +9681d074a26e2affe7c0a75db5139846 kdebase-runtime-4.3.0.tar.bz2 From pfj at fedoraproject.org Wed Jul 29 22:22:58 2009 From: pfj at fedoraproject.org (Paul F. Johnson) Date: Wed, 29 Jul 2009 22:22:58 +0000 (UTC) Subject: rpms/mono/devel .cvsignore, 1.43, 1.44 import.log, 1.53, 1.54 mono.spec, 1.138, 1.139 sources, 1.56, 1.57 Message-ID: <20090729222258.115DA11C00CE@cvs1.fedora.phx.redhat.com> Author: pfj Update of /cvs/pkgs/rpms/mono/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21795/devel Modified Files: .cvsignore import.log mono.spec sources Log Message: Update to 2.4.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 18 Jul 2009 07:47:10 -0000 1.43 +++ .cvsignore 29 Jul 2009 22:22:57 -0000 1.44 @@ -1 +1 @@ -mono-2.4.2.2.tar.bz2 +mono-2.4.2.3.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/import.log,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- import.log 18 Jul 2009 07:47:10 -0000 1.53 +++ import.log 29 Jul 2009 22:22:57 -0000 1.54 @@ -51,3 +51,4 @@ mono-2_4_2-4_fc12:HEAD:mono-2.4.2-4.fc12 mono-2_4_2-5_fc12:HEAD:mono-2.4.2-5.fc12.src.rpm:1246322011 mono-2_4_2_1-1_fc12:HEAD:mono-2.4.2.1-1.fc12.src.rpm:1247177797 mono-2_4_2_2-1_fc12:HEAD:mono-2.4.2.2-1.fc12.src.rpm:1247867889 +mono-2_4_2_3-1_fc12:HEAD:mono-2.4.2.3-1.fc12.src.rpm:1248906113 Index: mono.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/mono.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- mono.spec 25 Jul 2009 14:59:18 -0000 1.138 +++ mono.spec 29 Jul 2009 22:22:57 -0000 1.139 @@ -1,6 +1,8 @@ +#%define svnver 138447 + Name: mono -Version: 2.4.2.2 -Release: 2%{?dist} +Version: 2.4.2.3 +Release: 1%{?dist} Summary: A .NET runtime environment Group: Development/Languages @@ -8,7 +10,7 @@ License: MIT URL: http://www.mono-project.com/Main_Page # Prereleases are available here # http://mono.ximian.com/monobuild/preview/sources-preview/ -Source0: http://ftp.novell.com/pub/%{name}/sources/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://mono.ximian.com/monobuild/snapshot/sources-trunk/%name-%version.tar.bz2 Source1: monodir.c BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -281,7 +283,7 @@ mono-moonlight are all the parts require %{nil} %prep -%setup -q +%setup -q %patch0 -p1 -b .ppc-threading %patch1 -p1 -b .libdir @@ -721,8 +723,8 @@ install monodir %{buildroot}%{_bindir} %{_libdir}/pkgconfig/monodoc.pc %changelog -* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Wed Jul 29 2009 Paul F. Johnson 2.4.2.3.1 +- Update to 2.4.2.3 * Fri Jul 17 2009 Paul F. Johnson 2.4.2.2-1 - Patch for cve-2009-0217 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/sources,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- sources 18 Jul 2009 07:47:11 -0000 1.56 +++ sources 29 Jul 2009 22:22:57 -0000 1.57 @@ -1 +1 @@ -54aac9b914c5a4dc81c2bfd058df1c93 mono-2.4.2.2.tar.bz2 +696f25afc8453cd0d1c78de6e905dcf2 mono-2.4.2.3.tar.bz2 From jjohnstn at fedoraproject.org Wed Jul 29 22:24:08 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Wed, 29 Jul 2009 22:24:08 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.129,1.130 Message-ID: <20090729222408.489BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22314 Modified Files: eclipse-cdt.spec Log Message: * Wed Jul 29 2009 Jeff Johnston 1:6.0.0-7 - Resolves #514629 Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- eclipse-cdt.spec 27 Jul 2009 18:20:30 -0000 1.129 +++ eclipse-cdt.spec 29 Jul 2009 22:24:08 -0000 1.130 @@ -1,3 +1,5 @@ +%global debug_package %{nil} + Epoch: 1 %define run_tests 0 @@ -20,7 +22,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 6%{?dist} +Release: 7%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt @@ -508,6 +510,9 @@ rm -rf ${RPM_BUILD_ROOT} %endif %changelog +* Wed Jul 29 2009 Jeff Johnston 1:6.0.0-7 +- Resolves #514629 + * Mon Jul 27 2009 Jeff Johnston 1:6.0.0-6 - Remove gcj_support. From than at fedoraproject.org Wed Jul 29 22:24:38 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:24:38 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin.spec,1.146,1.147 Message-ID: <20090729222438.8291C11C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22600 Modified Files: kdeadmin.spec Log Message: fix condition Index: kdeadmin.spec =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- kdeadmin.spec 29 Jul 2009 22:09:32 -0000 1.146 +++ kdeadmin.spec 29 Jul 2009 22:24:38 -0000 1.147 @@ -1,4 +1,4 @@ -%if 0%{?rhel} == 1 +%if 0%{?fedora} %define system_config_printer_kde 1 %define include_kpackage 1 %endif From dougsland at fedoraproject.org Wed Jul 29 22:24:41 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Wed, 29 Jul 2009 22:24:41 +0000 (UTC) Subject: rpms/zbar/EL-5 import.log,1.1,1.2 zbar.spec,1.1,1.2 Message-ID: <20090729222441.C05C811C00D5@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22619/EL-5 Modified Files: import.log zbar.spec Log Message: * Wed Jul 29 2009 Itamar Reis Peixoto - 0.8-6 - fix epel build Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/zbar/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Jul 2009 21:17:26 -0000 1.1 +++ import.log 29 Jul 2009 22:24:41 -0000 1.2 @@ -1 +1,2 @@ zbar-0_8-5_fc10:EL-5:zbar-0.8-5.fc10.src.rpm:1248902235 +zbar-0_8-6_fc10:EL-5:zbar-0.8-6.fc10.src.rpm:1248906264 Index: zbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/zbar/EL-5/zbar.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zbar.spec 29 Jul 2009 21:17:26 -0000 1.1 +++ zbar.spec 29 Jul 2009 22:24:41 -0000 1.2 @@ -3,7 +3,7 @@ Name: zbar Version: 0.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support @@ -12,7 +12,13 @@ URL: http://sourceforge.net/p Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto +BuildRequires: python-devel, gtk2-devel, pygtk2-devel, ImageMagick-c++-devel, libXv-devel, xmlto + +%if 0%{?rhel} +BuildRequires: qt4-devel +%else +BuildRequires: qt-devel +%endif %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, @@ -167,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/zbar/QZBar*.h %changelog +* Wed Jul 29 2009 Itamar Reis Peixoto - 0.8-6 +- fix epel build + * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages From hadess at fedoraproject.org Wed Jul 29 22:24:41 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:24:41 +0000 (UTC) Subject: rpms/clutter-gst/devel clutter-gst.spec,1.12,1.13 Message-ID: <20090729222441.B123811C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22681 Modified Files: clutter-gst.spec Log Message: Make version into a macro Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- clutter-gst.spec 29 Jul 2009 21:40:47 -0000 1.12 +++ clutter-gst.spec 29 Jul 2009 22:24:41 -0000 1.13 @@ -1,3 +1,5 @@ +%define %{clutter_version} 0.10 + Name: clutter-gst Version: 0.10.0 Release: 1%{?dist} @@ -45,17 +47,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%exclude %{_libdir}/libclutter-gst-0.9.la -%{_libdir}/libclutter-gst-0.9.so.0 -%{_libdir}/libclutter-gst-0.9.so.0.* +%exclude %{_libdir}/libclutter-gst-%{_clutter_version}.la +%{_libdir}/libclutter-gst-%{_clutter_version}.so.0 +%{_libdir}/libclutter-gst-%{_clutter_version}.so.0.* %{_datadir}/gtk-doc/html/clutter-gst %files devel %defattr(-,root,root,-) %doc %{_includedir}/* -%{_libdir}/pkgconfig/clutter-gst-0.9.pc -%{_libdir}/libclutter-gst-0.9.so +%{_libdir}/pkgconfig/clutter-gst-%{_clutter_version}.pc +%{_libdir}/libclutter-gst-%{_clutter_version}.so %changelog * Wed Jul 29 2009 Bastien Nocera 0.10.0-1 From hadess at fedoraproject.org Wed Jul 29 22:27:32 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:27:32 +0000 (UTC) Subject: rpms/clutter-gtk/devel .cvsignore, 1.10, 1.11 clutter-gtk.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090729222732.90C7711C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23801 Modified Files: .cvsignore clutter-gtk.spec sources Log Message: * Wed Jul 29 2009 Bastien Nocera 0.10.2-1 - Update to 0.10.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Jun 2009 19:11:25 -0000 1.10 +++ .cvsignore 29 Jul 2009 22:27:32 -0000 1.11 @@ -1 +1 @@ -clutter-gtk-0.9.2.tar.gz +clutter-gtk-0.10.2.tar.bz2 Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- clutter-gtk.spec 24 Jul 2009 19:09:56 -0000 1.15 +++ clutter-gtk.spec 29 Jul 2009 22:27:32 -0000 1.16 @@ -1,6 +1,8 @@ +%define %{clutter_version} 0.10 + Name: clutter-gtk -Version: 0.9.2 -Release: 2%{?dist} +Version: 0.10.2 +Release: 1%{?dist} Summary: A basic GTK clutter widget Group: Development/Languages @@ -58,11 +60,14 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) %doc -%{_libdir}/pkgconfig/clutter-gtk-0.9.pc +%{_libdir}/pkgconfig/clutter-gtk-%{clutter_version}.pc %{_libdir}/*.so -%{_includedir}/clutter-0.9/clutter-gtk +%{_includedir}/clutter-%{clutter_version}/clutter-gtk %changelog +* Wed Jul 29 2009 Bastien Nocera 0.10.2-1 +- Update to 0.10.2 + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Jun 2009 19:11:25 -0000 1.10 +++ sources 29 Jul 2009 22:27:32 -0000 1.11 @@ -1 +1 @@ -ffb618680a1e223cf1b1bd8dbc0476b3 clutter-gtk-0.9.2.tar.gz +bb275b07f722631ff1764dd212843d11 clutter-gtk-0.10.2.tar.bz2 From than at fedoraproject.org Wed Jul 29 22:29:37 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:29:37 +0000 (UTC) Subject: rpms/kdebase-workspace/devel .cvsignore, 1.34, 1.35 kdebase-workspace.spec, 1.256, 1.257 sources, 1.40, 1.41 kdebase-workspace-4.3.0-networkipv4config.patch, 1.1, NONE Message-ID: <20090729222937.12EB611C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24421 Modified Files: .cvsignore kdebase-workspace.spec sources Removed Files: kdebase-workspace-4.3.0-networkipv4config.patch Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 21 Jul 2009 22:06:44 -0000 1.34 +++ .cvsignore 29 Jul 2009 22:29:36 -0000 1.35 @@ -2,3 +2,4 @@ kdebase-workspace-4.2.90.tar.bz2 kdebase-workspace-4.2.95.tar.bz2 kdebase-workspace-4.2.96.tar.bz2 kdebase-workspace-4.2.98.tar.bz2 +kdebase-workspace-4.3.0.tar.bz2 Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.256 retrieving revision 1.257 diff -u -p -r1.256 -r1.257 --- kdebase-workspace.spec 27 Jul 2009 13:01:21 -0000 1.256 +++ kdebase-workspace.spec 29 Jul 2009 22:29:36 -0000 1.257 @@ -2,9 +2,9 @@ Summary: K Desktop Environment - Workspace Name: kdebase-workspace -Version: 4.2.98 +Version: 4.3.0 -Release: 3%{?dist} +Release: 1%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -28,8 +28,6 @@ Patch15: kdebase-workspace-4.2.0-kio_sys # upstream patches: # 4.3 branch -# r1000715, forgotten method impl -Patch16: kdebase-workspace-4.3.0-networkipv4config.patch # trunk @@ -220,7 +218,6 @@ Requires: PyKDE4 >= %{version} %patch13 -p1 -b .pykde4 # kio_sysinfo based on OpenSUSE's patch %patch15 -p1 -b .kio_sysinfo -%patch16 -p0 -b .networkipv4config # upstream patches @@ -506,6 +503,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Mon Jul 27 2009 Luk?? Tinkl - 4.2.98-3 - backport forgotten method impl in Solid from 4.3 branch, r1000715 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 21 Jul 2009 22:06:45 -0000 1.40 +++ sources 29 Jul 2009 22:29:36 -0000 1.41 @@ -1 +1 @@ -d4fdf45a38f521a34342303e9e4d291c kdebase-workspace-4.2.98.tar.bz2 +a8eac6a169994e1fed17fafebd32defa kdebase-workspace-4.3.0.tar.bz2 --- kdebase-workspace-4.3.0-networkipv4config.patch DELETED --- From hadess at fedoraproject.org Wed Jul 29 22:31:12 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:31:12 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.16,1.17 Message-ID: <20090729223112.B22A411C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24937 Modified Files: clutter-gtk.spec Log Message: Don't know how to use macros... Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- clutter-gtk.spec 29 Jul 2009 22:27:32 -0000 1.16 +++ clutter-gtk.spec 29 Jul 2009 22:31:12 -0000 1.17 @@ -1,4 +1,4 @@ -%define %{clutter_version} 0.10 +%define clutter_version 0.10 Name: clutter-gtk Version: 0.10.2 From hadess at fedoraproject.org Wed Jul 29 22:32:38 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:32:38 +0000 (UTC) Subject: rpms/clutter-gst/devel clutter-gst.spec,1.13,1.14 Message-ID: <20090729223238.326F511C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25450 Modified Files: clutter-gst.spec Log Message: Don't know how to use macros... Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- clutter-gst.spec 29 Jul 2009 22:24:41 -0000 1.13 +++ clutter-gst.spec 29 Jul 2009 22:32:38 -0000 1.14 @@ -1,4 +1,4 @@ -%define %{clutter_version} 0.10 +%define clutter_version 0.10 Name: clutter-gst Version: 0.10.0 @@ -47,17 +47,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%exclude %{_libdir}/libclutter-gst-%{_clutter_version}.la -%{_libdir}/libclutter-gst-%{_clutter_version}.so.0 -%{_libdir}/libclutter-gst-%{_clutter_version}.so.0.* +%exclude %{_libdir}/libclutter-gst-%{clutter_version}.la +%{_libdir}/libclutter-gst-%{clutter_version}.so.0 +%{_libdir}/libclutter-gst-%{clutter_version}.so.0.* %{_datadir}/gtk-doc/html/clutter-gst %files devel %defattr(-,root,root,-) %doc %{_includedir}/* -%{_libdir}/pkgconfig/clutter-gst-%{_clutter_version}.pc -%{_libdir}/libclutter-gst-%{_clutter_version}.so +%{_libdir}/pkgconfig/clutter-gst-%{clutter_version}.pc +%{_libdir}/libclutter-gst-%{clutter_version}.so %changelog * Wed Jul 29 2009 Bastien Nocera 0.10.0-1 From hadess at fedoraproject.org Wed Jul 29 22:36:41 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:36:41 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.17,1.18 Message-ID: <20090729223641.6C0EA11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26710 Modified Files: clutter-gtk.spec Log Message: And fix tarball name Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- clutter-gtk.spec 29 Jul 2009 22:31:12 -0000 1.17 +++ clutter-gtk.spec 29 Jul 2009 22:36:41 -0000 1.18 @@ -8,7 +8,7 @@ Summary: A basic GTK clutter widg Group: Development/Languages License: LGPLv2+ URL: http://www.clutter-project.org -Source0: http://www.clutter-project.org/sources/%{name}/0.9/%{name}-%{version}.tar.gz +Source0: http://www.clutter-project.org/sources/%{name}/%{clutter_version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel clutter-devel From than at fedoraproject.org Wed Jul 29 22:37:44 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:37:44 +0000 (UTC) Subject: rpms/kdebindings/devel .cvsignore, 1.60, 1.61 kdebindings.spec, 1.226, 1.227 sources, 1.67, 1.68 kdebindings-4.2.96-kdebug#198632.patch, 1.3, NONE Message-ID: <20090729223744.3F0D211C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27106 Modified Files: .cvsignore kdebindings.spec sources Removed Files: kdebindings-4.2.96-kdebug#198632.patch Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 21 Jul 2009 22:13:25 -0000 1.60 +++ .cvsignore 29 Jul 2009 22:37:43 -0000 1.61 @@ -2,3 +2,4 @@ kdebindings-4.2.90.tar.bz2 kdebindings-4.2.95.tar.bz2 kdebindings-4.2.96.tar.bz2 kdebindings-4.2.98.tar.bz2 +kdebindings-4.3.0.tar.bz2 Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.226 retrieving revision 1.227 diff -u -p -r1.226 -r1.227 --- kdebindings.spec 25 Jul 2009 04:26:44 -0000 1.226 +++ kdebindings.spec 29 Jul 2009 22:37:44 -0000 1.227 @@ -31,8 +31,8 @@ %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") Name: kdebindings -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -48,9 +48,9 @@ Patch0: kdebindings-qyoto-examples.patc Patch1: kdebindings-4.2.85-old-PyQt4.patch # make the Python plugin factory work without python-devel Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch -## upstream patches -#http://bugs.kde.org/198632#c5 -Patch100: kdebindings-4.2.96-kdebug#198632.patch + +# upstream patches + BuildRequires: akonadi-devel >= 1.1.0 BuildRequires: kdebase-workspace-devel >= %{version} @@ -256,7 +256,6 @@ Falcon plugin for the Kross archtecture %patch2 -p1 -b .fix-kpythonpluginfactory # upstream patches -%patch100 -p1 -b .kdebug#198632 %build @@ -492,6 +491,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/sources,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- sources 21 Jul 2009 22:13:25 -0000 1.67 +++ sources 29 Jul 2009 22:37:44 -0000 1.68 @@ -1 +1 @@ -23778a672635c8dd4cc46ee1d00765c1 kdebindings-4.2.98.tar.bz2 +1b6cd0a20586eea0161e782be9c16326 kdebindings-4.3.0.tar.bz2 --- kdebindings-4.2.96-kdebug#198632.patch DELETED --- From jjohnstn at fedoraproject.org Wed Jul 29 22:37:45 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Wed, 29 Jul 2009 22:37:45 +0000 (UTC) Subject: rpms/eclipse-rse/devel eclipse-rse.spec,1.3,1.4 Message-ID: <20090729223745.53AB111C00CE@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27094 Modified Files: eclipse-rse.spec Log Message: * Wed Jul 29 2009 Jeff Johnston 3.0.3-4 - Resolves #514630 Index: eclipse-rse.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-rse/devel/eclipse-rse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eclipse-rse.spec 28 Jul 2009 18:25:33 -0000 1.3 +++ eclipse-rse.spec 29 Jul 2009 22:37:45 -0000 1.4 @@ -1,10 +1,12 @@ +%global debug_package %{nil} + %define eclipse_base %{_libdir}/eclipse %define install_loc %{_datadir}/eclipse/dropins Name: eclipse-rse Summary: Eclipse Remote System Explorer Version: 3.0.3 -Release: 3%{?dist} +Release: 4%{?dist} License: EPL URL: http://www.eclipse.org/dsdp/tm/ @@ -94,6 +96,9 @@ rm -rf %{buildroot} %doc org.eclipse.rse.sdk-feature/license.html %changelog +* Wed Jul 29 2009 Jeff Johnston 3.0.3-4 +- Resolves #514630 + * Tue Jul 28 2009 Jeff Johnston 3.0.3-3 - Restrict arch support to those supported by prereq CDT. From pkgdb at fedoraproject.org Wed Jul 29 22:39:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:39:42 +0000 Subject: [pkgdb] schroot was added for zachcarter Message-ID: <20090729223942.4F66E10F89A@bastion2.fedora.phx.redhat.com> tibbs has added Package schroot with summary Execute commands in a chroot environment tibbs has approved Package schroot tibbs has added a Fedora devel branch for schroot with an owner of zachcarter tibbs has approved schroot in Fedora devel tibbs has approved Package schroot tibbs has set commit to Approved for 107427 on schroot (Fedora devel) tibbs has set checkout to Approved for 107427 on schroot (Fedora devel) tibbs has set build to Approved for 107427 on schroot (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/schroot From pkgdb at fedoraproject.org Wed Jul 29 22:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:39:43 +0000 Subject: [pkgdb] schroot summary updated by tibbs Message-ID: <20090729223943.41CC110F89E@bastion2.fedora.phx.redhat.com> tibbs set package schroot summary to Execute commands in a chroot environment To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/schroot From pkgdb at fedoraproject.org Wed Jul 29 22:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:39:43 +0000 Subject: [pkgdb] schroot (Fedora, 11) updated by tibbs Message-ID: <20090729223943.6DDE410F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for schroot tibbs has set commit to Approved for 107427 on schroot (Fedora 11) tibbs has set checkout to Approved for 107427 on schroot (Fedora 11) tibbs has set build to Approved for 107427 on schroot (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/schroot From pkgdb at fedoraproject.org Wed Jul 29 22:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 22:39:43 +0000 Subject: [pkgdb] schroot (Fedora, 11) updated by tibbs Message-ID: <20090729223943.BAA3210F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for schroot tibbs has set commit to Approved for 107427 on schroot (Fedora 10) tibbs has set checkout to Approved for 107427 on schroot (Fedora 10) tibbs has set build to Approved for 107427 on schroot (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/schroot From tibbs at fedoraproject.org Wed Jul 29 22:39:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:39:50 +0000 (UTC) Subject: rpms/schroot/devel - New directory Message-ID: <20090729223950.6E14B11C00D5@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/schroot/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS27918/rpms/schroot/devel Log Message: Directory /cvs/pkgs/rpms/schroot/devel added to the repository From tibbs at fedoraproject.org Wed Jul 29 22:39:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:39:56 +0000 (UTC) Subject: rpms/schroot Makefile,NONE,1.1 Message-ID: <20090729223956.73ACE11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/schroot In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS27918/rpms/schroot Added Files: Makefile Log Message: Setup of module schroot --- NEW FILE Makefile --- # Top level Makefile for module schroot all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 29 22:39:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:39:50 +0000 (UTC) Subject: rpms/schroot - New directory Message-ID: <20090729223950.2433211C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/schroot In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS27918/rpms/schroot Log Message: Directory /cvs/pkgs/rpms/schroot added to the repository From tibbs at fedoraproject.org Wed Jul 29 22:39:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 29 Jul 2009 22:39:56 +0000 (UTC) Subject: rpms/schroot/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090729223956.EA9B411C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/schroot/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS27918/rpms/schroot/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module schroot --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: schroot # $Id: Makefile,v 1.1 2009/07/29 22:39:56 tibbs Exp $ NAME := schroot SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From hadess at fedoraproject.org Wed Jul 29 22:49:34 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:49:34 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.18,1.19 Message-ID: <20090729224934.8A05811C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31788 Modified Files: clutter-gtk.spec Log Message: And fix version madness in clutter-gtk upstream Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- clutter-gtk.spec 29 Jul 2009 22:36:41 -0000 1.18 +++ clutter-gtk.spec 29 Jul 2009 22:49:34 -0000 1.19 @@ -62,7 +62,7 @@ rm -rf $RPM_BUILD_ROOT %doc %{_libdir}/pkgconfig/clutter-gtk-%{clutter_version}.pc %{_libdir}/*.so -%{_includedir}/clutter-%{clutter_version}/clutter-gtk +%{_includedir}/clutter-1.0/clutter-gtk %changelog * Wed Jul 29 2009 Bastien Nocera 0.10.2-1 From than at fedoraproject.org Wed Jul 29 22:51:50 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:51:50 +0000 (UTC) Subject: rpms/kdeedu/devel .cvsignore, 1.67, 1.68 kdeedu.spec, 1.194, 1.195 sources, 1.69, 1.70 Message-ID: <20090729225150.3578811C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32605 Modified Files: .cvsignore kdeedu.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/.cvsignore,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- .cvsignore 21 Jul 2009 22:16:37 -0000 1.67 +++ .cvsignore 29 Jul 2009 22:51:49 -0000 1.68 @@ -2,3 +2,4 @@ kdeedu-4.2.90.tar.bz2 kdeedu-4.2.95.tar.bz2 kdeedu-4.2.96.tar.bz2 kdeedu-4.2.98.tar.bz2 +kdeedu-4.3.0.tar.bz2 Index: kdeedu.spec =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/kdeedu.spec,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- kdeedu.spec 25 Jul 2009 04:27:16 -0000 1.194 +++ kdeedu.spec 29 Jul 2009 22:51:49 -0000 1.195 @@ -6,8 +6,8 @@ Name: kdeedu Summary: Educational/Edutainment applications -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} License: GPLv2 Group: Amusements/Games @@ -450,6 +450,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/sources,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- sources 21 Jul 2009 22:16:37 -0000 1.69 +++ sources 29 Jul 2009 22:51:49 -0000 1.70 @@ -1 +1 @@ -5b8a6daa5c01e861a8fe8001ce3fdec7 kdeedu-4.2.98.tar.bz2 +4c309bcdc47274cea6f61206a42ef638 kdeedu-4.3.0.tar.bz2 From bmarzins at fedoraproject.org Wed Jul 29 22:54:07 2009 From: bmarzins at fedoraproject.org (Benjamin Marzinski) Date: Wed, 29 Jul 2009 22:54:07 +0000 (UTC) Subject: rpms/device-mapper-multipath/devel bindings_file.patch, NONE, 1.1 fix_missed_uevs.patch, NONE, 1.1 log_all_messages.patch, NONE, 1.1 move_bindings.patch, NONE, 1.1 path_checker.patch, NONE, 1.1 queue_without_daemon.patch, NONE, 1.1 root_init_script.patch, NONE, 1.1 stop_warnings.patch, NONE, 1.1 uninstall.patch, NONE, 1.1 .cvsignore, 1.17, 1.18 cciss_id.patch, 1.1, 1.2 device-mapper-multipath.spec, 1.58, 1.59 directio_message_cleanup.patch, 1.2, 1.3 fix_kpartx.patch, 1.1, 1.2 lib64_multipath.patch, 1.1, 1.2 mpath_wait.patch, 1.2, 1.3 multipath_rules.patch, 1.3, 1.4 redhatification.patch, 1.3, 1.4 sources, 1.18, 1.19 binding_error.patch, 1.1, NONE Message-ID: <20090729225407.A878211C00CE@cvs1.fedora.phx.redhat.com> Author: bmarzins Update of /cvs/pkgs/rpms/device-mapper-multipath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv721 Modified Files: .cvsignore cciss_id.patch device-mapper-multipath.spec directio_message_cleanup.patch fix_kpartx.patch lib64_multipath.patch mpath_wait.patch multipath_rules.patch redhatification.patch sources Added Files: bindings_file.patch fix_missed_uevs.patch log_all_messages.patch move_bindings.patch path_checker.patch queue_without_daemon.patch root_init_script.patch stop_warnings.patch uninstall.patch Removed Files: binding_error.patch Log Message: Updated to latest upstream 0.4.9 code : multipath-tools-090729.tgz (git commit id: d678c139719d5631194b50e49f16ca97162ecd0f) moved multipath bindings file from /var/lib/multipath to /etc/multipath Fixed 354961, 432520 bindings_file.patch: libmultipath/config.c | 11 ++++++++--- libmultipath/dict.c | 24 ++++++++++++++++++++++++ multipath.conf.annotated | 9 +++++++++ multipath.conf.defaults | 1 + multipath/main.c | 4 +++- multipath/multipath.conf.5 | 8 ++++++-- 6 files changed, 51 insertions(+), 6 deletions(-) --- NEW FILE bindings_file.patch --- Add the ability to change the location of the user_friendly_names binding file. Signed-off-by: Benjamin Marzinski --- libmultipath/config.c | 11 ++++++++--- libmultipath/dict.c | 24 ++++++++++++++++++++++++ multipath.conf.annotated | 9 +++++++++ multipath.conf.defaults | 1 + multipath/main.c | 4 +++- multipath/multipath.conf.5 | 8 ++++++-- 6 files changed, 51 insertions(+), 6 deletions(-) Index: multipath-tools-090513/libmultipath/config.c =================================================================== --- multipath-tools-090513.orig/libmultipath/config.c +++ multipath-tools-090513/libmultipath/config.c @@ -405,6 +405,9 @@ free_config (struct config * conf) if (conf->checker_name) FREE(conf->checker_name); + if (conf->bindings_file) + FREE(conf->bindings_file); + free_blacklist(conf->blist_devnode); free_blacklist(conf->blist_wwid); free_blacklist_device(conf->blist_device); @@ -437,7 +440,6 @@ load_config (char * file) conf->dev_type = DEV_NONE; conf->minio = 1000; conf->max_fds = 0; - conf->bindings_file = DEFAULT_BINDINGS_FILE; conf->multipath_dir = set_default(DEFAULT_MULTIPATHDIR); conf->flush_on_last_del = 0; conf->attribute_flags = 0; @@ -535,9 +537,12 @@ load_config (char * file) if (conf->hwhandler == NULL) conf->hwhandler = set_default(DEFAULT_HWHANDLER); + if (conf->bindings_file == NULL) + conf->bindings_file = set_default(DEFAULT_BINDINGS_FILE); + if (!conf->selector || !conf->udev_dir || !conf->multipath_dir || - !conf->getuid || !conf->features || - !conf->hwhandler) + !conf->getuid || !conf->features || !conf->hwhandler || + !conf->bindings_file) goto out; if (!conf->prio_name) Index: multipath-tools-090513/libmultipath/dict.c =================================================================== --- multipath-tools-090513.orig/libmultipath/dict.c +++ multipath-tools-090513/libmultipath/dict.c @@ -423,6 +423,17 @@ names_handler(vector strvec) return 0; } +static int +def_bindings_file_handler(vector strvec) +{ + conf->bindings_file = set_value(strvec); + + if (!conf->bindings_file) + return 1; + + return 0; +} + /* * blacklist block handlers */ @@ -1920,6 +1931,18 @@ snprint_def_user_friendly_names (char * } static int +snprint_def_bindings_file(char * buff, int len, void * data) +{ + if (conf->bindings_file == NULL) + return 0; + if (strlen(conf->bindings_file) == strlen(DEFAULT_BINDINGS_FILE) && + !strcmp(conf->bindings_file, DEFAULT_BINDINGS_FILE)) + return 0; + + return snprintf(buff, len, "%s", conf->bindings_file); +} + +static int snprint_ble_simple (char * buff, int len, void * data) { struct blentry * ble = (struct blentry *)data; @@ -1969,6 +1992,7 @@ init_keywords(void) install_keyword("pg_timeout", &def_pg_timeout_handler, &snprint_def_pg_timeout); install_keyword("flush_on_last_del", &def_flush_on_last_del_handler, &snprint_def_flush_on_last_del); install_keyword("user_friendly_names", &names_handler, &snprint_def_user_friendly_names); + install_keyword("bindings_file", &def_bindings_file_handler, &snprint_def_bindings_file); install_keyword("mode", &def_mode_handler, &snprint_def_mode); install_keyword("uid", &def_uid_handler, &snprint_def_uid); install_keyword("gid", &def_gid_handler, &snprint_def_gid); Index: multipath-tools-090513/multipath.conf.annotated =================================================================== --- multipath-tools-090513.orig/multipath.conf.annotated +++ multipath-tools-090513/multipath.conf.annotated @@ -198,6 +198,15 @@ # # default : determined by the process # gid disk # +# # +# # name : bindings_file +# # scope : multipath +# # desc : The location of the bindings file that is used with +# the user_friendly_names option +# # values : +# # default : "/var/lib/multipath/bindings" +# bindings_file "/etc/multipath_bindings" +# #} # ## Index: multipath-tools-090513/multipath.conf.defaults =================================================================== --- multipath-tools-090513.orig/multipath.conf.defaults +++ multipath-tools-090513/multipath.conf.defaults @@ -14,6 +14,7 @@ # failback manual # no_path_retry fail # user_friendly_names no +# bindings_file "/var/lib/multipath/bindings" #} # #blacklist { Index: multipath-tools-090513/multipath/main.c =================================================================== --- multipath-tools-090513.orig/multipath/main.c +++ multipath-tools-090513/multipath/main.c @@ -362,7 +362,9 @@ main (int argc, char *argv[]) conf->verbosity = atoi(optarg); break; case 'b': - conf->bindings_file = optarg; + if (conf->bindings_file) + FREE(conf->bindings_file); + conf->bindings_file = STRDUP(optarg); break; case 'd': conf->dry_run = 1; Index: multipath-tools-090513/multipath/multipath.conf.5 =================================================================== --- multipath-tools-090513.orig/multipath/multipath.conf.5 +++ multipath-tools-090513/multipath/multipath.conf.5 @@ -221,8 +221,7 @@ for never stop queueing. Default is 0. .B user_friendly_names If set to .I yes -, using the bindings file -.I /var/lib/multipath/bindings +, using the bindings file (by default \fI/var/lib/multipath/bindings\fR) to assign a persistent and unique alias to the multipath, in the form of mpath. If set to .I no @@ -231,6 +230,11 @@ be overriden by any specific aliases in Default is .I no .TP +.B bindings_file +Specify the location of the bindings file used by the user_friendly_names +option. Default is +.I /var/lib/multipath/bindings +.TP .B max_fds Specify the maximum number of file descriptors that can be opened by multipath and multipathd. This is equivalent to ulimit -n. A value of \fImax\fR will set fix_missed_uevs.patch: uevent.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- NEW FILE fix_missed_uevs.patch --- Index: multipath-tools-090724/libmultipath/uevent.c =================================================================== --- multipath-tools-090724.orig/libmultipath/uevent.c +++ multipath-tools-090724/libmultipath/uevent.c @@ -231,7 +231,8 @@ int uevent_listen(int (*uev_trigger)(str smsg.msg_control = cred_msg; smsg.msg_controllen = sizeof(cred_msg); - if (recvmsg(sock, &smsg, 0) < 0) { + buflen = recvmsg(sock, &smsg, 0); + if (buflen < 0) { if (errno != EINTR) condlog(0, "error receiving message"); continue; @@ -286,8 +287,10 @@ int uevent_listen(int (*uev_trigger)(str /* action string */ uev->action = buffer; pos = strchr(buffer, '@'); - if (!pos) + if (!pos) { + condlog(3, "bad action string '%s'", buffer); continue; + } pos[0] = '\0'; /* sysfs path */ log_all_messages.patch: log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE log_all_messages.patch --- Index: multipath-tools-090724/libmultipath/log.c =================================================================== --- multipath-tools-090724.orig/libmultipath/log.c +++ multipath-tools-090724/libmultipath/log.c @@ -181,7 +181,7 @@ int log_dequeue (void * buff) memset((void *)src, 0, len); - return la->empty; + return 0; } /* move_bindings.patch: libmultipath/defaults.h | 2 +- multipath.conf.annotated | 2 +- multipath/multipath.conf.5 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE move_bindings.patch --- Index: multipath-tools-090724/libmultipath/defaults.h =================================================================== --- multipath-tools-090724.orig/libmultipath/defaults.h +++ multipath-tools-090724/libmultipath/defaults.h @@ -19,6 +19,6 @@ #define DEFAULT_PIDFILE "/var/run/multipathd.pid" #define DEFAULT_SOCKET "/var/run/multipathd.sock" #define DEFAULT_CONFIGFILE "/etc/multipath.conf" -#define DEFAULT_BINDINGS_FILE "/var/lib/multipath/bindings" +#define DEFAULT_BINDINGS_FILE "/etc/multipath/bindings" char * set_default (char * str); Index: multipath-tools-090724/multipath.conf.annotated =================================================================== --- multipath-tools-090724.orig/multipath.conf.annotated +++ multipath-tools-090724/multipath.conf.annotated @@ -163,7 +163,7 @@ # # name : user_friendly_names # # scope : multipath # # desc : If set to "yes", using the bindings file -# # /var/lib/multipath/bindings to assign a persistent and +# # /etc/multipath/bindings to assign a persistent and # # unique alias to the multipath, in the form of mpath. # # If set to "no" use the WWID as the alias. In either case # # this be will be overriden by any specific aliases in this Index: multipath-tools-090724/multipath/multipath.conf.5 =================================================================== --- multipath-tools-090724.orig/multipath/multipath.conf.5 +++ multipath-tools-090724/multipath/multipath.conf.5 @@ -222,7 +222,7 @@ for never stop queueing. Default is 0. If set to .I yes , using the bindings file -.I /var/lib/multipath/bindings +.I /etc/multipath/bindings to assign a persistent and unique alias to the multipath, in the form of mpath. If set to .I no path_checker.patch: libmultipath/checkers/tur.c | 1 libmultipath/discovery.c | 62 ++++++++++++++++++++++++++++++++++---------- libmultipath/discovery.h | 2 + multipathd/main.c | 21 +------------- 4 files changed, 52 insertions(+), 34 deletions(-) --- NEW FILE path_checker.patch --- Index: multipath-tools-090724/libmultipath/checkers/tur.c =================================================================== --- multipath-tools-090724.orig/libmultipath/checkers/tur.c +++ multipath-tools-090724/libmultipath/checkers/tur.c @@ -69,7 +69,6 @@ libcheck_check (struct checker * c) case DID_NO_CONNECT: case DID_BAD_TARGET: case DID_ABORT: - case DID_TRANSPORT_DISRUPTED: case DID_TRANSPORT_FAILFAST: break; default: Index: multipath-tools-090724/libmultipath/discovery.c =================================================================== --- multipath-tools-090724.orig/libmultipath/discovery.c +++ multipath-tools-090724/libmultipath/discovery.c @@ -579,10 +579,9 @@ struct sysfs_device *sysfs_device_from_p } int -path_offline (struct path * pp) +path_state (struct path * pp, char * buff) { struct sysfs_device * parent; - char buff[SCSI_STATE_SIZE]; pp->sysdev = sysfs_device_from_path(pp); if (!pp->sysdev) { @@ -604,6 +603,16 @@ path_offline (struct path * pp) return 1; condlog(3, "%s: state = %s", pp->dev, buff); + return 0; +} + +int +path_offline (struct path * pp) +{ + char buff[SCSI_STATE_SIZE]; + + if (path_state(pp, buff)) + return 1; if (!strncmp(buff, "offline", 7)) { pp->offline = 1; @@ -613,6 +622,21 @@ path_offline (struct path * pp) return 0; } +int +path_blocked (struct path * pp) +{ + char buff[SCSI_STATE_SIZE]; + + if (pp->bus != SYSFS_BUS_SCSI) + return 0; + if (path_state(pp, buff)) + return 0; + if (!strncmp(buff, "blocked", 7)) { + return 1; + } + return 0; +} + extern int sysfs_pathinfo(struct path * pp) { @@ -699,36 +723,43 @@ cciss_ioctl_pathinfo (struct path * pp, return 0; } -static int -get_state (struct path * pp) +int +get_state (struct path * pp, int daemon) { struct checker * c = &pp->checker; + int state; condlog(3, "%s: get_state", pp->dev); if (!checker_selected(c)) { + if (daemon) + pathinfo(pp, conf->hwtable, DI_SYSFS); select_checker(pp); if (!checker_selected(c)) { condlog(3, "%s: No checker selected", pp->dev); - return 1; + return PATH_UNCHECKED; } checker_set_fd(c, pp->fd); if (checker_init(c, pp->mpp?&pp->mpp->mpcontext:NULL)) { condlog(3, "%s: checker init failed", pp->dev); - return 1; + return PATH_UNCHECKED; } } if (path_offline(pp)) { condlog(3, "%s: path offline", pp->dev); - pp->state = PATH_DOWN; - return 0; + return PATH_DOWN; } - pp->state = checker_check(c); - condlog(3, "%s: state = %i", pp->dev, pp->state); - if (pp->state == PATH_DOWN && strlen(checker_message(c))) + if (daemon) { + if (path_blocked(pp)) + return PATH_PENDING; + checker_set_async(c); + } + state = checker_check(c); + condlog(3, "%s: state = %i", pp->dev, state); + if (state == PATH_DOWN && strlen(checker_message(c))) condlog(3, "%s: checker msg is \"%s\"", pp->dev, checker_message(c)); - return 0; + return state; } static int @@ -813,8 +844,11 @@ pathinfo (struct path *pp, vector hwtabl cciss_ioctl_pathinfo(pp, mask)) goto blank; - if (mask & DI_CHECKER && get_state(pp)) - goto blank; + if (mask & DI_CHECKER) { + pp->state = get_state(pp, 0); + if (pp->state == PATH_UNCHECKED || pp->state == PATH_WILD) + goto blank; + } /* * Retrieve path priority, even for PATH_DOWN paths if it has never Index: multipath-tools-090724/libmultipath/discovery.h =================================================================== --- multipath-tools-090724.orig/libmultipath/discovery.h +++ multipath-tools-090724/libmultipath/discovery.h @@ -30,6 +30,8 @@ int path_discovery (vector pathvec, stru int do_tur (char *); int devt2devname (char *, char *); int path_offline (struct path *); +int get_state (struct path * pp, int daemon); +int path_blocked (struct path *); int pathinfo (struct path *, vector hwtable, int mask); struct path * store_pathinfo (vector pathvec, vector hwtable, char * devname, int flag); Index: multipath-tools-090724/multipathd/main.c =================================================================== --- multipath-tools-090724.orig/multipathd/main.c +++ multipath-tools-090724/multipathd/main.c @@ -908,26 +908,9 @@ check_path (struct vectors * vecs, struc */ pp->tick = conf->checkint; - if (!checker_selected(&pp->checker)) { - pathinfo(pp, conf->hwtable, DI_SYSFS); - select_checker(pp); - } - if (!checker_selected(&pp->checker)) { - condlog(0, "%s: checker is not set", pp->dev); - return; - } - /* - * Set checker in async mode. - * Honored only by checker implementing the said mode. - */ - checker_set_async(&pp->checker); - - if (path_offline(pp)) - newstate = PATH_DOWN; - else - newstate = checker_check(&pp->checker); + newstate = get_state(pp, 1); - if (newstate < 0) { + if (newstate == PATH_WILD || newstate == PATH_UNCHECKED) { condlog(2, "%s: unusable path", pp->dev); pathinfo(pp, conf->hwtable, 0); return; queue_without_daemon.patch: libmultipath/config.h | 1 + libmultipath/dict.c | 35 +++++++++++++++++++++++++++++++++++ libmultipath/structs.h | 6 ++++++ multipath.conf.annotated | 9 +++++++++ multipath.conf.synthetic | 1 + multipathd/main.c | 5 +++++ 6 files changed, 57 insertions(+) --- NEW FILE queue_without_daemon.patch --- --- libmultipath/config.h | 1 + libmultipath/dict.c | 35 +++++++++++++++++++++++++++++++++++ libmultipath/structs.h | 6 ++++++ multipath.conf.annotated | 9 +++++++++ multipath.conf.synthetic | 1 + multipathd/main.c | 5 +++++ 6 files changed, 57 insertions(+) Index: multipath-tools-090724/libmultipath/config.h =================================================================== --- multipath-tools-090724.orig/libmultipath/config.h +++ multipath-tools-090724/libmultipath/config.h @@ -72,6 +72,7 @@ struct config { int pg_timeout; int max_fds; int force_reload; + int queue_without_daemon; int daemon; int flush_on_last_del; int attribute_flags; Index: multipath-tools-090724/libmultipath/dict.c =================================================================== --- multipath-tools-090724.orig/libmultipath/dict.c +++ multipath-tools-090724/libmultipath/dict.c @@ -333,6 +333,28 @@ def_no_path_retry_handler(vector strvec) } static int +def_queue_without_daemon(vector strvec) +{ + char * buff; + + buff = set_value(strvec); + if (!buff) + return 1; + + if (!strncmp(buff, "off", 3) || !strncmp(buff, "no", 2) || + !strncmp(buff, "0", 1)) + conf->queue_without_daemon = QUE_NO_DAEMON_OFF; + else if (!strncmp(buff, "on", 2) || !strncmp(buff, "yes", 3) || + !strncmp(buff, "1", 1)) + conf->queue_without_daemon = QUE_NO_DAEMON_ON; + else + conf->queue_without_daemon = QUE_NO_DAEMON_UNDEF; + + free(buff); + return 0; +} + +static int def_pg_timeout_handler(vector strvec) { int pg_timeout; @@ -1846,6 +1868,18 @@ snprint_def_no_path_retry (char * buff, } static int +snprint_def_queue_without_daemon (char * buff, int len, void * data) +{ + switch (conf->queue_without_daemon) { + case QUE_NO_DAEMON_OFF: + return snprintf(buff, len, "no"); + case QUE_NO_DAEMON_ON: + return snprintf(buff, len, "yes"); + } + return 0; +} + +static int snprint_def_pg_timeout (char * buff, int len, void * data) { if (conf->pg_timeout == DEFAULT_PGTIMEOUT) @@ -1931,6 +1965,7 @@ init_keywords(void) install_keyword("max_fds", &max_fds_handler, &snprint_max_fds); install_keyword("rr_weight", &def_weight_handler, &snprint_def_rr_weight); install_keyword("no_path_retry", &def_no_path_retry_handler, &snprint_def_no_path_retry); + install_keyword("queue_without_daemon", &def_queue_without_daemon, &snprint_def_queue_without_daemon); install_keyword("pg_timeout", &def_pg_timeout_handler, &snprint_def_pg_timeout); install_keyword("flush_on_last_del", &def_flush_on_last_del_handler, &snprint_def_flush_on_last_del); install_keyword("user_friendly_names", &names_handler, &snprint_def_user_friendly_names); Index: multipath-tools-090724/libmultipath/structs.h =================================================================== --- multipath-tools-090724.orig/libmultipath/structs.h +++ multipath-tools-090724/libmultipath/structs.h @@ -63,6 +63,12 @@ enum pgstates { PGSTATE_ACTIVE }; +enum queue_without_daemon_states { + QUE_NO_DAEMON_UNDEF, + QUE_NO_DAEMON_OFF, + QUE_NO_DAEMON_ON, +}; + enum pgtimeouts { PGTIMEOUT_UNDEF, PGTIMEOUT_NONE Index: multipath-tools-090724/multipath.conf.annotated =================================================================== --- multipath-tools-090724.orig/multipath.conf.annotated +++ multipath-tools-090724/multipath.conf.annotated @@ -151,6 +151,15 @@ # no_path_retry queue # # # +# # name : queue_without_daemon +# # scope : multipathd +# # desc : If set to "no", multipathd will disable queueing for all +# # devices when it is shut down. +# # values : yes|no +# # default : yes +# queue_without_daemon no +# +# # # # name : user_friendly_names # # scope : multipath # # desc : If set to "yes", using the bindings file Index: multipath-tools-090724/multipath.conf.synthetic =================================================================== --- multipath-tools-090724.orig/multipath.conf.synthetic +++ multipath-tools-090724/multipath.conf.synthetic @@ -16,6 +16,7 @@ # rr_weight priorities # failback immediate # no_path_retry fail +# queue_without_daemon no # user_friendly_names no # mode 644 # uid 0 Index: multipath-tools-090724/multipathd/main.c =================================================================== --- multipath-tools-090724.orig/multipathd/main.c +++ multipath-tools-090724/multipathd/main.c @@ -1334,6 +1334,8 @@ child (void * param) pthread_t check_thr, uevent_thr, uxlsnr_thr; pthread_attr_t log_attr, misc_attr; struct vectors * vecs; + struct multipath * mpp; + int i; mlockall(MCL_CURRENT | MCL_FUTURE); @@ -1422,6 +1424,9 @@ child (void * param) */ block_signal(SIGHUP, NULL); lock(vecs->lock); + if (conf->queue_without_daemon == QUE_NO_DAEMON_OFF) + vector_foreach_slot(vecs->mpvec, mpp, i) + dm_queue_if_no_path(mpp->alias, 0); remove_maps_and_stop_waiters(vecs); free_pathvec(vecs->pathvec, FREE_PATHS); root_init_script.patch: multipathd.init.redhat | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) --- NEW FILE root_init_script.patch --- Index: multipath-tools-090724/multipathd/multipathd.init.redhat =================================================================== --- multipath-tools-090724.orig/multipathd/multipathd.init.redhat +++ multipath-tools-090724/multipathd/multipathd.init.redhat @@ -2,7 +2,7 @@ # # multipathd Starts the multipath daemon # -# chkconfig: - 13 87 +# chkconfig: - 06 87 # description: Manages device-mapper multipath devices ### BEGIN INIT INFO @@ -17,6 +17,7 @@ prog=`basename $DAEMON` initdir=/etc/rc.d/init.d lockdir=/var/lock/subsys sysconfig=/etc/sysconfig +syspath=/sys/block . $initdir/functions @@ -25,6 +26,36 @@ test -r $sysconfig/$prog && . $sysconfig RETVAL=0 +teardown_slaves() +{ +pushd $1 > /dev/null +if [ -d "slaves" ]; then +for slave in slaves/*; +do + if [ "$slave" = "slaves/*" ]; then + read dev < $1/dev + tablename=`dmsetup table --target multipath | sed -n "s/\(.*\): .* $dev .*/\1/p"` + if ! [ -z $tablename ]; then + echo "Root is on a multipathed device, multipathd can not be stopped" + exit 1 + fi + else + local_slave=`readlink -f $slave`; + teardown_slaves $local_slave; + fi + done + +else + read dev < $1/dev + tablename=`dmsetup table --target multipath | sed -n "s/\(.*\): .* $dev .*/\1/p"` + if ! [ -z $tablename ]; then + echo "Root is on a multipathed device, multipathd can not be stopped" + exit 1 + fi +fi +popd > /dev/null +} + # # See how we were called. # @@ -39,6 +70,11 @@ start() { } stop() { + root_dev=$(awk '{ if ($1 !~ /^[ \t]*#/ && $2 == "/") { print $1; }}' /etc/mtab) + dm_num=`dmsetup info -c --noheadings -o minor $root_dev` + root_dm_device="dm-$dm_num" + [ -d $syspath/$root_dm_device ] && teardown_slaves $syspath/$root_dm_device + echo -n $"Stopping $prog daemon: " killproc $DAEMON RETVAL=$? stop_warnings.patch: log_pthread.c | 1 + uevent.c | 1 + 2 files changed, 2 insertions(+) --- NEW FILE stop_warnings.patch --- Index: multipath-tools-090724/libmultipath/log_pthread.c =================================================================== --- multipath-tools-090724.orig/libmultipath/log_pthread.c +++ multipath-tools-090724/libmultipath/log_pthread.c @@ -56,6 +56,7 @@ static void * log_thread (void * et) flush_logqueue(); } + return NULL; } void log_thread_start (pthread_attr_t *attr) Index: multipath-tools-090724/libmultipath/uevent.c =================================================================== --- multipath-tools-090724.orig/libmultipath/uevent.c +++ multipath-tools-090724/libmultipath/uevent.c @@ -101,6 +101,7 @@ uevq_thread(void * et) service_uevq(); } + return NULL; } int uevent_listen(int (*uev_trigger)(struct uevent *, void * trigger_data), uninstall.patch: checkers/Makefile | 2 +- prioritizers/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE uninstall.patch --- Index: multipath-tools-090724/libmultipath/checkers/Makefile =================================================================== --- multipath-tools-090724.orig/libmultipath/checkers/Makefile +++ multipath-tools-090724/libmultipath/checkers/Makefile @@ -27,7 +27,7 @@ install: $(INSTALL_PROGRAM) -m 755 $(LIBS) $(DESTDIR)$(libdir) uninstall: - rm -f $(DESTDIR)$(libdir)/$(LIBS) + for file in $(LIBS); do rm -f $(DESTDIR)$(libdir)/$$file; done clean: rm -f core *.a *.o *.gz *.so Index: multipath-tools-090724/libmultipath/prioritizers/Makefile =================================================================== --- multipath-tools-090724.orig/libmultipath/prioritizers/Makefile +++ multipath-tools-090724/libmultipath/prioritizers/Makefile @@ -28,7 +28,7 @@ install: $(LIBS) $(INSTALL_PROGRAM) -m 755 libprio*.so $(DESTDIR)$(libdir) uninstall: - rm -f $(DESTDIR)$(libdir)/libprio*.so + for file in $(LIBS); do rm -f $(DESTDIR)$(libdir)/$$file; done clean: rm -f core *.a *.o *.gz *.so Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 6 May 2009 20:01:00 -0000 1.17 +++ .cvsignore 29 Jul 2009 22:54:06 -0000 1.18 @@ -1 +1 @@ -multipath-tools-090429.tgz +multipath-tools-090729.tgz cciss_id.patch: Makefile | 3 - cciss_id/Makefile | 47 +++++++++++++++++++ cciss_id/cciss_id.c | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 177 insertions(+), 1 deletion(-) Index: cciss_id.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/cciss_id.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cciss_id.patch 20 May 2008 04:37:41 -0000 1.1 +++ cciss_id.patch 29 Jul 2009 22:54:06 -0000 1.2 @@ -1,7 +1,13 @@ -Index: multipath-tools-080519/cciss_id/cciss_id.c +--- + Makefile | 3 - + cciss_id/Makefile | 47 +++++++++++++++++++ + cciss_id/cciss_id.c | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 177 insertions(+), 1 deletion(-) + +Index: multipath-tools-090724/cciss_id/cciss_id.c =================================================================== --- /dev/null -+++ multipath-tools-080519/cciss_id/cciss_id.c ++++ multipath-tools-090724/cciss_id/cciss_id.c @@ -0,0 +1,128 @@ +/* + ***************************************************************************** @@ -31,11 +37,11 @@ Index: multipath-tools-080519/cciss_id/c +#include +#include +#include -+#include -+#include -+#include -+#include -+#include ++#include ++#include ++#include ++#include ++#include +#include + +#include @@ -45,13 +51,13 @@ Index: multipath-tools-080519/cciss_id/c +#define PATH_CCISSDEV "/dev/cciss/" /* Path of CCISS devices */ +int main(int argc, char *argv[]) +{ -+ const int resp_len = LEN_PAGE83_CCISSDEV; ++ const int resp_len = LEN_PAGE83_CCISSDEV; + unsigned char resp[resp_len+1]; + char dev_name[LEN_DEVICEFILE] = "\0" ; + unsigned int lun_id = 0; + int fd, status, i; + struct stat file_stat; -+ ++ + LogvolInfo_struct lvi; // logical "volume" info + IOCTL_Command_struct cic; // cciss ioctl command + @@ -59,26 +65,26 @@ Index: multipath-tools-080519/cciss_id/c + fprintf(stderr, "Usage: %s /dev/cciss/cNdN\n", argv[0]); + return -1; + } -+ ++ + if ( strncmp(PATH_CCISSDEV, argv[1], strlen(PATH_CCISSDEV) ) != 0 ) { + if ( strchr(argv[1], '!') ) { -+ sprintf(dev_name, "%s%s", PATH_CCISSDEV, -+ strchr(argv[1], '!')+1); -+ } ++ sprintf(dev_name, "%s%s", PATH_CCISSDEV, ++ strchr(argv[1], '!')+1); ++ } + //fprintf(stderr, "dev_name is: -%s-", dev_name); + } else { + sprintf(dev_name, "%s", argv[1]); + } + + if (stat(dev_name, &file_stat) < 0) { -+ fprintf (stderr, "Stat failed for file %s. Errno=%d\n", dev_name, errno); ++ fprintf (stderr, "Stat failed for file %s. Errno=%d\n", dev_name, errno); + return -1; -+ } ++ } + if (!S_ISBLK(file_stat.st_mode)) { + fprintf (stderr, "File %s is not a block device. \n", dev_name); + return -1; + } -+ ++ + + if((fd = open(dev_name, O_RDWR)) < 0) { + fprintf(stderr, "Open failed for file %s. Errno=%d\n", dev_name, errno); @@ -96,15 +102,15 @@ Index: multipath-tools-080519/cciss_id/c + memset(&cic, 0, sizeof(IOCTL_Command_struct)); + memset(resp, 0, resp_len+1); + cic.LUN_info.LogDev.Mode = 0x01; /* logical volume addressing */ -+ cic.LUN_info.LogDev.VolId = lun_id & 0x3FFFFFFF; ++ cic.LUN_info.LogDev.VolId = lun_id & 0x3FFFFFFF; + cic.Request.CDBLen = 6; + cic.Request.Type.Type = TYPE_CMD; // It is a command. -+ cic.Request.Type.Attribute = ATTR_SIMPLE; ++ cic.Request.Type.Attribute = ATTR_SIMPLE; + cic.Request.Type.Direction = XFER_READ; // Read + cic.Request.Timeout = 0; // Don't time out + cic.Request.CDB[0] = 0x12; + cic.Request.CDB[1] = 0x01; /* EVPD (enable vital product data) */ -+ cic.Request.CDB[2] = 0x83; ++ cic.Request.CDB[2] = 0x83; + cic.Request.CDB[4] = resp_len & 0xFF; + cic.buf_size = resp_len; + cic.buf = resp; @@ -124,17 +130,17 @@ Index: multipath-tools-080519/cciss_id/c + printf("3"); + for(i=8; i<24; i++) + /* printf("Buff[%d] =%x\n", i, resp[i]); */ -+ printf("%02x", resp[i]); ++ printf("%02x", resp[i]); + printf("\n"); + } -+ ++ + close(fd); + return 0; +} -Index: multipath-tools-080519/cciss_id/Makefile +Index: multipath-tools-090724/cciss_id/Makefile =================================================================== --- /dev/null -+++ multipath-tools-080519/cciss_id/Makefile ++++ multipath-tools-090724/cciss_id/Makefile @@ -0,0 +1,47 @@ + +# ***************************************************************************** @@ -183,10 +189,10 @@ Index: multipath-tools-080519/cciss_id/M + +clean: + rm -f core.* *.o $(EXEC) *.gz -Index: multipath-tools-080519/Makefile +Index: multipath-tools-090724/Makefile =================================================================== ---- multipath-tools-080519.orig/Makefile -+++ multipath-tools-080519/Makefile +--- multipath-tools-090724.orig/Makefile ++++ multipath-tools-090724/Makefile @@ -25,7 +25,8 @@ BUILDDIRS = \ libmultipath/checkers \ multipath \ Index: device-mapper-multipath.spec =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/device-mapper-multipath.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- device-mapper-multipath.spec 24 Jul 2009 20:11:34 -0000 1.58 +++ device-mapper-multipath.spec 29 Jul 2009 22:54:06 -0000 1.59 @@ -1,20 +1,27 @@ Summary: Tools to manage multipath devices using device-mapper Name: device-mapper-multipath Version: 0.4.9 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ Group: System Environment/Base URL: http://christophe.varoqui.free.fr/ -Source0: multipath-tools-090429.tgz -Patch0: lib64_multipath.patch -Patch1: redhatification.patch -Patch2: mpath_wait.patch -Patch3: multipath_rules.patch -Patch4: cciss_id.patch -Patch5: directio_message_cleanup.patch -Patch6: binding_error.patch -Patch7: fix_kpartx.patch +Source0: multipath-tools-090729.tgz +Patch0: fix_missed_uevs.patch +Patch1: log_all_messages.patch +Patch2: queue_without_daemon.patch +Patch3: path_checker.patch +Patch4: root_init_script.patch +Patch5: uninstall.patch +Patch6: lib64_multipath.patch +Patch7: directio_message_cleanup.patch +Patch8: fix_kpartx.patch +Patch9: redhatification.patch +Patch10: mpath_wait.patch +Patch11: multipath_rules.patch +Patch12: cciss_id.patch +Patch13: stop_warnings.patch +Patch14: move_bindings.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} @@ -54,16 +61,23 @@ kpartx manages partition creation and re %prep %setup -q -n multipath-tools +%patch0 -p1 -b .fix_missed_uevs +%patch1 -p1 -b .log_all_messages +%patch2 -p1 -b .queue_without_daemon +%patch3 -p1 -b .path_checker +%patch4 -p1 -b .root_init_script +%patch5 -p1 -b .uninstall.patch %if %{_lib} == "lib64" -%patch0 -p1 -b .lib64_multipath +%patch6 -p1 -b .lib64_multipath %endif -%patch1 -p1 -b .redhatification -%patch2 -p1 -b .mpath_wait -%patch3 -p1 -b .multipath_rules -%patch4 -p1 -b .cciss_id -%patch5 -p1 -b .directio_message -%patch6 -p1 -b .binding_error -%patch7 -p1 -b .fix_kpartx +%patch7 -p1 -b .directio_message_cleanup +%patch8 -p1 -b .fix_kpartx +%patch9 -p1 -b .redhatification +%patch10 -p1 -b .mpath_wait +%patch11 -p1 -b .multipath_rules +%patch12 -p1 -b .cciss_id +%patch13 -p1 -b .stop_warnings +%patch14 -p1 -b .move_bindings %build %define _sbindir /sbin @@ -76,7 +90,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT bindir=%{_sbindir} syslibdir=%{_libdir} libdir=%{_libmpathdir} rcdir=%{_initrddir} install -m 0644 multipath/multipath.conf.redhat $RPM_BUILD_ROOT/etc/multipath.conf install -m 0755 multipathd/multipathd.init.redhat $RPM_BUILD_ROOT/%{_initrddir}/multipathd -install -d $RPM_BUILD_ROOT/var/lib/multipath +install -d $RPM_BUILD_ROOT/etc/multipath %clean rm -rf $RPM_BUILD_ROOT @@ -110,7 +124,7 @@ fi %config /etc/udev/rules.d/40-multipath.rules %config(noreplace) /etc/multipath.conf %doc AUTHOR COPYING README* FAQ multipath.conf.annotated multipath.conf.defaults multipath.conf.synthetic -%dir /var/lib/multipath +%dir /etc/multipath %files libs %defattr(-,root,root,-) @@ -124,6 +138,12 @@ fi %{_mandir}/man8/kpartx.8.gz %changelog +* Wed Jul 29 2009 Benjamin Marzinski - 0.4.9-3 +- Updated to latest upstream 0.4.9 code : multipath-tools-090729.tgz + (git commit id: d678c139719d5631194b50e49f16ca97162ecd0f) +- moved multipath bindings file from /var/lib/multipath to /etc/multipath +- Fixed 354961, 432520 + * Fri Jul 24 2009 Fedora Release Engineering - 0.4.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild directio_message_cleanup.patch: directio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: directio_message_cleanup.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/directio_message_cleanup.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- directio_message_cleanup.patch 6 May 2009 20:01:01 -0000 1.2 +++ directio_message_cleanup.patch 29 Jul 2009 22:54:06 -0000 1.3 @@ -1,8 +1,8 @@ -diff --git a/libmultipath/checkers/directio.c b/libmultipath/checkers/directio.c -index 4728424..7624c4e 100644 ---- a/libmultipath/checkers/directio.c -+++ b/libmultipath/checkers/directio.c -@@ -148,10 +148,11 @@ check_state(int fd, struct directio_context *ct, int sync) +Index: multipath-tools-090724/libmultipath/checkers/directio.c +=================================================================== +--- multipath-tools-090724.orig/libmultipath/checkers/directio.c ++++ multipath-tools-090724/libmultipath/checkers/directio.c +@@ -148,10 +148,11 @@ check_state(int fd, struct directio_cont } ct->running++; fix_kpartx.patch: kpartx.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: fix_kpartx.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/fix_kpartx.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fix_kpartx.patch 6 Mar 2009 12:53:14 -0000 1.1 +++ fix_kpartx.patch 29 Jul 2009 22:54:06 -0000 1.2 @@ -1,6 +1,8 @@ ---- multipath-tools.old/kpartx/kpartx.c 2008-07-23 22:49:52.000000000 +0200 -+++ multipath-tools/kpartx/kpartx.c 2009-03-06 13:32:49.000000000 +0100 -@@ -474,6 +474,7 @@ main(int argc, char **argv){ +Index: multipath-tools-090724/kpartx/kpartx.c +=================================================================== +--- multipath-tools-090724.orig/kpartx/kpartx.c ++++ multipath-tools-090724/kpartx/kpartx.c +@@ -489,6 +489,7 @@ main(int argc, char **argv){ d = c; while (c) { for (j = 0; j < n; j++) { @@ -8,7 +10,7 @@ int k = slices[j].container - 1; if (slices[j].size == 0) -@@ -484,7 +485,7 @@ main(int argc, char **argv){ +@@ -499,7 +500,7 @@ main(int argc, char **argv){ continue; /* Skip all simple slices */ @@ -17,7 +19,7 @@ continue; /* Check container slice */ -@@ -499,10 +500,11 @@ main(int argc, char **argv){ +@@ -514,10 +515,11 @@ main(int argc, char **argv){ } strip_slash(partname); lib64_multipath.patch: Makefile.inc | 8 +++++--- libmultipath/defaults.h | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) Index: lib64_multipath.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/lib64_multipath.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lib64_multipath.patch 6 May 2009 20:01:01 -0000 1.1 +++ lib64_multipath.patch 29 Jul 2009 22:54:06 -0000 1.2 @@ -1,12 +1,43 @@ -diff --git a/libmultipath/defaults.h b/libmultipath/defaults.h -index d7f93cb..357c519 100644 ---- a/libmultipath/defaults.h -+++ b/libmultipath/defaults.h +Index: multipath-tools-090724/libmultipath/defaults.h +=================================================================== +--- multipath-tools-090724.orig/libmultipath/defaults.h ++++ multipath-tools-090724/libmultipath/defaults.h @@ -1,6 +1,6 @@ #define DEFAULT_GETUID "/lib/udev/scsi_id --whitelisted --device=/dev/%n" #define DEFAULT_UDEVDIR "/dev" -#define DEFAULT_MULTIPATHDIR "/lib/multipath" -+#define DEFAULT_MULTIPATHDIR "/lib64/multipath" ++#define DEFAULT_MULTIPATHDIR "/" LIB_STRING "/multipath" #define DEFAULT_SELECTOR "round-robin 0" #define DEFAULT_FEATURES "0" #define DEFAULT_HWHANDLER "0" +Index: multipath-tools-090724/Makefile.inc +=================================================================== +--- multipath-tools-090724.orig/Makefile.inc ++++ multipath-tools-090724/Makefile.inc +@@ -13,6 +13,8 @@ ifeq ($(TOPDIR),) + TOPDIR = .. + endif + ++ LIB=lib64 ++ + prefix = + exec_prefix = $(prefix) + bindir = $(exec_prefix)/sbin +@@ -21,14 +23,14 @@ multipathdir = $(TOPDIR)/libmultipath + mandir = $(prefix)/usr/share/man/man8 + man5dir = $(prefix)/usr/share/man/man5 + rcdir = $(prefix)/etc/init.d +-syslibdir = $(prefix)/lib +-libdir = $(prefix)/lib/multipath ++syslibdir = $(prefix)/$(LIB) ++libdir = $(prefix)/$(LIB)/multipath + + GZIP = /bin/gzip -9 -c + INSTALL_PROGRAM = install + + OPTFLAGS = -pipe -g -Wall -Wunused -Wstrict-prototypes +-CFLAGS = $(OPTFLAGS) -fPIC ++CFLAGS = $(OPTFLAGS) -fPIC -DLIB_STRING=\"${LIB}\" + SHARED_FLAGS = -shared + + %.o: %.c mpath_wait.patch: Makefile | 3 ++- mpath_wait | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) Index: mpath_wait.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/mpath_wait.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mpath_wait.patch 6 May 2009 20:01:01 -0000 1.2 +++ mpath_wait.patch 29 Jul 2009 22:54:06 -0000 1.3 @@ -1,7 +1,12 @@ -diff --git a/multipath/Makefile b/multipath/Makefile -index e0031a2..fe377d8 100644 ---- a/multipath/Makefile -+++ b/multipath/Makefile +--- + multipath/Makefile | 3 ++- + multipath/mpath_wait | 17 +++++++++++++++++ + 2 files changed, 19 insertions(+), 1 deletion(-) + +Index: multipath-tools-090724/multipath/Makefile +=================================================================== +--- multipath-tools-090724.orig/multipath/Makefile ++++ multipath-tools-090724/multipath/Makefile @@ -20,7 +20,7 @@ $(EXEC): $(OBJS) install: @@ -11,7 +16,7 @@ index e0031a2..fe377d8 100644 $(INSTALL_PROGRAM) -d $(DESTDIR)/etc/udev/rules.d $(INSTALL_PROGRAM) -m 644 multipath.rules $(DESTDIR)/etc/udev/rules.d/ $(INSTALL_PROGRAM) -d $(DESTDIR)$(mandir) -@@ -31,6 +31,7 @@ install: +@@ -34,6 +34,7 @@ install: uninstall: rm $(DESTDIR)/etc/udev/rules.d/multipath.rules rm $(DESTDIR)$(bindir)/$(EXEC) @@ -19,11 +24,10 @@ index e0031a2..fe377d8 100644 rm $(DESTDIR)$(mandir)/$(EXEC).8.gz rm $(DESTDIR)$(man5dir)/$(EXEC).conf.5.gz -diff --git a/multipath/mpath_wait b/multipath/mpath_wait -new file mode 100644 -index 0000000..d4047cc +Index: multipath-tools-090724/multipath/mpath_wait +=================================================================== --- /dev/null -+++ b/multipath/mpath_wait ++++ multipath-tools-090724/multipath/mpath_wait @@ -0,0 +1,17 @@ +#!/bin/bash + multipath_rules.patch: Makefile | 4 ++-- multipath.rules | 15 ++++++++------- 2 files changed, 10 insertions(+), 9 deletions(-) Index: multipath_rules.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/multipath_rules.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- multipath_rules.patch 6 May 2009 20:01:01 -0000 1.3 +++ multipath_rules.patch 29 Jul 2009 22:54:06 -0000 1.4 @@ -1,8 +1,13 @@ -diff --git a/multipath/Makefile b/multipath/Makefile -index fe377d8..b2c4fa6 100644 ---- a/multipath/Makefile -+++ b/multipath/Makefile -@@ -22,14 +22,14 @@ install: +--- + multipath/Makefile | 4 ++-- + multipath/multipath.rules | 13 +++++++------ + 2 files changed, 9 insertions(+), 8 deletions(-) + +Index: multipath-tools-090724/multipath/Makefile +=================================================================== +--- multipath-tools-090724.orig/multipath/Makefile ++++ multipath-tools-090724/multipath/Makefile +@@ -22,7 +22,7 @@ install: $(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir) $(INSTALL_PROGRAM) -m 755 $(EXEC) mpath_wait $(DESTDIR)$(bindir)/ $(INSTALL_PROGRAM) -d $(DESTDIR)/etc/udev/rules.d @@ -11,7 +16,8 @@ index fe377d8..b2c4fa6 100644 $(INSTALL_PROGRAM) -d $(DESTDIR)$(mandir) $(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir) $(INSTALL_PROGRAM) -d $(DESTDIR)$(man5dir) - $(INSTALL_PROGRAM) -m 644 $(EXEC).conf.5.gz $(DESTDIR)$(man5dir) +@@ -32,7 +32,7 @@ install: + fi uninstall: - rm $(DESTDIR)/etc/udev/rules.d/multipath.rules @@ -19,10 +25,10 @@ index fe377d8..b2c4fa6 100644 rm $(DESTDIR)$(bindir)/$(EXEC) rm $(DESTDIR)$(bindir)/mpath_wait rm $(DESTDIR)$(mandir)/$(EXEC).8.gz -diff --git a/multipath/multipath.rules b/multipath/multipath.rules -index ac97749..ad2ff2a 100644 ---- a/multipath/multipath.rules -+++ b/multipath/multipath.rules +Index: multipath-tools-090724/multipath/multipath.rules +=================================================================== +--- multipath-tools-090724.orig/multipath/multipath.rules ++++ multipath-tools-090724/multipath/multipath.rules @@ -1,7 +1,8 @@ -# -# udev rules for multipathing. redhatification.patch: Makefile.inc | 2 kpartx/Makefile | 8 +-- libmultipath/hwtable.c | 2 multipath/Makefile | 3 + multipath/multipath.conf.redhat | 97 ++++++++++++++++++++++++++++++++++++++++ multipathd/Makefile | 1 6 files changed, 107 insertions(+), 6 deletions(-) Index: redhatification.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/redhatification.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- redhatification.patch 6 May 2009 20:01:01 -0000 1.3 +++ redhatification.patch 29 Jul 2009 22:54:06 -0000 1.4 @@ -1,8 +1,8 @@ -Index: multipath-tools-090407/libmultipath/hwtable.c +Index: multipath-tools-090724/libmultipath/hwtable.c =================================================================== ---- multipath-tools-090407.orig/libmultipath/hwtable.c 2009-04-07 15:21:33.000000000 -0500 -+++ multipath-tools-090407/libmultipath/hwtable.c 2009-04-07 09:16:31.000000000 -0500 -@@ -554,7 +554,7 @@ static struct hwentry default_hw[] = { +--- multipath-tools-090724.orig/libmultipath/hwtable.c ++++ multipath-tools-090724/libmultipath/hwtable.c +@@ -589,7 +589,7 @@ static struct hwentry default_hw[] = { .vendor = "IBM", .product = "S/390 DASD ECKD", .bl_product = "S/390.*", @@ -11,10 +11,49 @@ Index: multipath-tools-090407/libmultipa .features = "1 queue_if_no_path", .hwhandler = DEFAULT_HWHANDLER, .selector = DEFAULT_SELECTOR, -Index: multipath-tools-090407/multipath/multipath.conf.redhat +Index: multipath-tools-090724/Makefile.inc =================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ multipath-tools-090407/multipath/multipath.conf.redhat 2009-04-07 09:16:31.000000000 -0500 +--- multipath-tools-090724.orig/Makefile.inc ++++ multipath-tools-090724/Makefile.inc +@@ -26,7 +26,7 @@ libudevdir = ${prefix}/lib/udev + multipathdir = $(TOPDIR)/libmultipath + mandir = $(prefix)/usr/share/man/man8 + man5dir = $(prefix)/usr/share/man/man5 +-rcdir = $(prefix)/etc/init.d ++rcdir = $(prefix)/etc/rc.d/init.d + syslibdir = $(prefix)/$(LIB) + libdir = $(prefix)/$(LIB)/multipath + +Index: multipath-tools-090724/multipathd/Makefile +=================================================================== +--- multipath-tools-090724.orig/multipathd/Makefile ++++ multipath-tools-090724/multipathd/Makefile +@@ -35,6 +35,7 @@ install: + $(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) -m 755 $(EXEC) $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) -d $(DESTDIR)$(rcdir) ++ $(INSTALL_PROGRAM) -m 755 multipathd.init.redhat $(DESTDIR)$(rcdir)/$(EXEC) + $(INSTALL_PROGRAM) -d $(DESTDIR)$(mandir) + $(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir) + +Index: multipath-tools-090724/multipath/Makefile +=================================================================== +--- multipath-tools-090724.orig/multipath/Makefile ++++ multipath-tools-090724/multipath/Makefile +@@ -27,6 +27,9 @@ install: + $(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir) + $(INSTALL_PROGRAM) -d $(DESTDIR)$(man5dir) + $(INSTALL_PROGRAM) -m 644 $(EXEC).conf.5.gz $(DESTDIR)$(man5dir) ++ if [ ! -e $(DESTDIR)//etc/multipath.conf ]; then \ ++ $(INSTALL_PROGRAM) -m 644 multipath.conf.redhat $(DESTDIR)/etc/multipath.conf; \ ++ fi + + uninstall: + rm $(DESTDIR)/etc/udev/rules.d/multipath.rules +Index: multipath-tools-090724/multipath/multipath.conf.redhat +=================================================================== +--- /dev/null ++++ multipath-tools-090724/multipath/multipath.conf.redhat @@ -0,0 +1,97 @@ +# This is a basic configuration file with some examples, for device mapper +# multipath. @@ -113,10 +152,10 @@ Index: multipath-tools-090407/multipath/ +# path_grouping_policy multibus +# } +#} -Index: multipath-tools-090407/kpartx/Makefile +Index: multipath-tools-090724/kpartx/Makefile =================================================================== ---- multipath-tools-090407.orig/kpartx/Makefile 2009-04-07 15:21:33.000000000 -0500 -+++ multipath-tools-090407/kpartx/Makefile 2009-04-07 09:16:31.000000000 -0500 +--- multipath-tools-090724.orig/kpartx/Makefile ++++ multipath-tools-090724/kpartx/Makefile @@ -20,10 +20,10 @@ $(EXEC): $(OBJS) install: $(EXEC) $(EXEC).8 $(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 6 May 2009 20:01:01 -0000 1.18 +++ sources 29 Jul 2009 22:54:06 -0000 1.19 @@ -1 +1 @@ -450d0715048f3a8c82082ad2b9e5a2b3 multipath-tools-090429.tgz +89a2e3d5ee8e78c7fb487cae00345815 multipath-tools-090729.tgz --- binding_error.patch DELETED --- From than at fedoraproject.org Wed Jul 29 22:54:16 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:54:16 +0000 (UTC) Subject: rpms/kdegames/devel .cvsignore, 1.69, 1.70 kdegames.spec, 1.139, 1.140 sources, 1.73, 1.74 Message-ID: <20090729225416.802FE11C0424@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1100 Modified Files: .cvsignore kdegames.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/.cvsignore,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- .cvsignore 22 Jul 2009 09:39:31 -0000 1.69 +++ .cvsignore 29 Jul 2009 22:54:16 -0000 1.70 @@ -2,3 +2,4 @@ kdegames-4.2.90.tar.bz2 kdegames-4.2.95.tar.bz2 kdegames-4.2.96.tar.bz2 kdegames-4.2.98.tar.bz2 +kdegames-4.3.0.tar.bz2 Index: kdegames.spec =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- kdegames.spec 25 Jul 2009 04:27:31 -0000 1.139 +++ kdegames.spec 29 Jul 2009 22:54:16 -0000 1.140 @@ -1,8 +1,8 @@ Name: kdegames Summary: K Desktop Environment 4 - Games Epoch: 6 -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} License: GPLv2 URL: http://www.kde.org/ @@ -197,6 +197,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 22 Jul 2009 09:39:33 -0000 1.73 +++ sources 29 Jul 2009 22:54:16 -0000 1.74 @@ -1 +1 @@ -88843c8935c1f5dd57c16ab94784772c kdegames-4.2.98.tar.bz2 +9997c1fab82519ebc59e661c4324fa0a kdegames-4.3.0.tar.bz2 From hadess at fedoraproject.org Wed Jul 29 22:55:30 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:55:30 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.19,1.20 Message-ID: <20090729225530.F1EEC11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1583 Modified Files: clutter-gtk.spec Log Message: Add introspection here too Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- clutter-gtk.spec 29 Jul 2009 22:49:34 -0000 1.19 +++ clutter-gtk.spec 29 Jul 2009 22:55:30 -0000 1.20 @@ -55,7 +55,8 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/*.la %{_libdir}/*.so.* %{_datadir}/gtk-doc/html/clutter-gtk - +%{_libdir}/girepository-1.0/GtkClutter-0.10.typelib +%{_datadir}/gir-1.0/GtkClutter-0.10.gir %files devel %defattr(-,root,root,-) From hadess at fedoraproject.org Wed Jul 29 22:55:58 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 29 Jul 2009 22:55:58 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.20,1.21 Message-ID: <20090729225558.6971C11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1760 Modified Files: clutter-gtk.spec Log Message: Add introspection here too Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- clutter-gtk.spec 29 Jul 2009 22:55:30 -0000 1.20 +++ clutter-gtk.spec 29 Jul 2009 22:55:58 -0000 1.21 @@ -55,8 +55,8 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/*.la %{_libdir}/*.so.* %{_datadir}/gtk-doc/html/clutter-gtk -%{_libdir}/girepository-1.0/GtkClutter-0.10.typelib -%{_datadir}/gir-1.0/GtkClutter-0.10.gir +%{_libdir}/girepository-1.0/GtkClutter-%{clutter_version}.typelib +%{_datadir}/gir-1.0/GtkClutter-%{clutter_version}.gir %files devel %defattr(-,root,root,-) From than at fedoraproject.org Wed Jul 29 22:57:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 22:57:57 +0000 (UTC) Subject: rpms/kdegraphics/devel .cvsignore, 1.64, 1.65 kdegraphics.spec, 1.210, 1.211 sources, 1.70, 1.71 Message-ID: <20090729225757.8514E11C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegraphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937 Modified Files: .cvsignore kdegraphics.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 22 Jul 2009 09:42:32 -0000 1.64 +++ .cvsignore 29 Jul 2009 22:57:57 -0000 1.65 @@ -2,3 +2,4 @@ kdegraphics-4.2.90.tar.bz2 kdegraphics-4.2.95.tar.bz2 kdegraphics-4.2.96.tar.bz2 kdegraphics-4.2.98.tar.bz2 +kdegraphics-4.3.0.tar.bz2 Index: kdegraphics.spec =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/kdegraphics.spec,v retrieving revision 1.210 retrieving revision 1.211 diff -u -p -r1.210 -r1.211 --- kdegraphics.spec 25 Jul 2009 04:28:02 -0000 1.210 +++ kdegraphics.spec 29 Jul 2009 22:57:57 -0000 1.211 @@ -7,8 +7,8 @@ Summary: K Desktop Environment - Graphics Applications Epoch: 7 -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Name: kdegraphics #Obsoletes: kdegraphics4 < %{version}-%{release} @@ -231,6 +231,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 7:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/sources,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- sources 22 Jul 2009 09:42:32 -0000 1.70 +++ sources 29 Jul 2009 22:57:57 -0000 1.71 @@ -1 +1 @@ -c7675a09e66c396a263ca78a88de54f1 kdegraphics-4.2.98.tar.bz2 +5d3838a2575a82777f00ced90332c41a kdegraphics-4.3.0.tar.bz2 From than at fedoraproject.org Wed Jul 29 23:05:02 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 23:05:02 +0000 (UTC) Subject: rpms/kdelibs/devel .cvsignore, 1.76, 1.77 kdelibs.spec, 1.498, 1.499 sources, 1.93, 1.94 kdelibs-4.2.98-cve-2009-1687.patch, 1.1, NONE kdelibs-4.2.98-cve-2009-1698.patch, 1.1, NONE kdelibs-4.2.98-cve-2009-1725.patch, 1.1, NONE kdelibs-4.2.98-cve-2009-2537-select-length.patch, 1.1, NONE Message-ID: <20090729230502.52EE511C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4545 Modified Files: .cvsignore kdelibs.spec sources Removed Files: kdelibs-4.2.98-cve-2009-1687.patch kdelibs-4.2.98-cve-2009-1698.patch kdelibs-4.2.98-cve-2009-1725.patch kdelibs-4.2.98-cve-2009-2537-select-length.patch Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 24 Jul 2009 16:42:21 -0000 1.76 +++ .cvsignore 29 Jul 2009 23:05:01 -0000 1.77 @@ -1 +1,2 @@ kdelibs-4.2.98.tar.bz2 +kdelibs-4.3.0.tar.bz2 Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.498 retrieving revision 1.499 diff -u -p -r1.498 -r1.499 --- kdelibs.spec 29 Jul 2009 20:40:53 -0000 1.498 +++ kdelibs.spec 29 Jul 2009 23:05:01 -0000 1.499 @@ -1,11 +1,10 @@ - %define phonon_ver 4.3.1 %define soprano_ver 2.3.0 %define strigi_ver 0.7 Summary: K Desktop Environment 4 - Libraries -Version: 4.2.98 -Release: 4%{?dist} +Version: 4.3.0 +Release: 1%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -84,14 +83,6 @@ Patch20: kdelibs-4.1.70-cmake.patch # upstream # 4.3 branch -# fix CVE-2009-2537 - select length DoS -Patch100: kdelibs-4.2.98-cve-2009-2537-select-length.patch -# fix CVE-2009-1725 - crash, possible ACE in numeric character references -Patch101: kdelibs-4.2.98-cve-2009-1725.patch -# fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) -Patch102: kdelibs-4.2.98-cve-2009-1687.patch -# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling -Patch103: kdelibs-4.2.98-cve-2009-1698.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -226,10 +217,6 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi # upstream patches # 4.3 -%patch100 -p0 -b .cve-2009-2537 -%patch101 -p0 -b .cve-2009-1725 -%patch102 -p1 -b .cve-2009-1687 -%patch103 -p1 -b .cve-2009-1698 %build @@ -412,6 +399,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 29 2009 Rex Dieter - 4.2.98-4 - -devel: Conflicts: kdebase-runtime < 4.2.90, kdebase-workspace-devel < 4.2.90 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/sources,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- sources 24 Jul 2009 16:42:21 -0000 1.93 +++ sources 29 Jul 2009 23:05:01 -0000 1.94 @@ -1 +1 @@ -57d29dbd24afb72c03545ba583c8347f kdelibs-4.2.98.tar.bz2 +ea54f71bcbb0cf96bb6d94c019de8bb5 kdelibs-4.3.0.tar.bz2 --- kdelibs-4.2.98-cve-2009-1687.patch DELETED --- --- kdelibs-4.2.98-cve-2009-1698.patch DELETED --- --- kdelibs-4.2.98-cve-2009-1725.patch DELETED --- --- kdelibs-4.2.98-cve-2009-2537-select-length.patch DELETED --- From than at fedoraproject.org Wed Jul 29 23:07:02 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 23:07:02 +0000 (UTC) Subject: rpms/kdelibs-experimental/devel .cvsignore, 1.6, 1.7 kdelibs-experimental.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090729230702.EB59811C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs-experimental/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5341 Modified Files: .cvsignore kdelibs-experimental.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 22 Jul 2009 10:26:31 -0000 1.6 +++ .cvsignore 29 Jul 2009 23:07:02 -0000 1.7 @@ -2,3 +2,4 @@ kdelibs-experimental-4.2.90.tar.bz2 kdelibs-experimental-4.2.95.tar.bz2 kdelibs-experimental-4.2.96.tar.bz2 kdelibs-experimental-4.2.98.tar.bz2 +kdelibs-experimental-4.3.0.tar.bz2 Index: kdelibs-experimental.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/kdelibs-experimental.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kdelibs-experimental.spec 25 Jul 2009 04:28:16 -0000 1.9 +++ kdelibs-experimental.spec 29 Jul 2009 23:07:02 -0000 1.10 @@ -1,6 +1,6 @@ Name: kdelibs-experimental -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Summary: KDE libraries with experimental or unstable api/abi Group: System Environment/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 22 Jul 2009 10:26:31 -0000 1.6 +++ sources 29 Jul 2009 23:07:02 -0000 1.7 @@ -1 +1 @@ -f651465791384cbf8c8928a47d7323e1 kdelibs-experimental-4.2.98.tar.bz2 +9b3ed689f4f357d4fc059cf9dd41e035 kdelibs-experimental-4.3.0.tar.bz2 From than at fedoraproject.org Wed Jul 29 23:11:23 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 23:11:23 +0000 (UTC) Subject: rpms/kdemultimedia/devel .cvsignore, 1.66, 1.67 kdemultimedia.spec, 1.153, 1.154 sources, 1.68, 1.69 Message-ID: <20090729231123.79A0611C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdemultimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6823 Modified Files: .cvsignore kdemultimedia.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 22 Jul 2009 10:38:27 -0000 1.66 +++ .cvsignore 29 Jul 2009 23:11:22 -0000 1.67 @@ -2,3 +2,4 @@ kdemultimedia-4.2.90.tar.bz2 kdemultimedia-4.2.95.tar.bz2 kdemultimedia-4.2.96.tar.bz2 kdemultimedia-4.2.98.tar.bz2 +kdemultimedia-4.3.0.tar.bz2 Index: kdemultimedia.spec =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/kdemultimedia.spec,v retrieving revision 1.153 retrieving revision 1.154 diff -u -p -r1.153 -r1.154 --- kdemultimedia.spec 25 Jul 2009 04:28:46 -0000 1.153 +++ kdemultimedia.spec 29 Jul 2009 23:11:23 -0000 1.154 @@ -1,7 +1,7 @@ Name: kdemultimedia Epoch: 6 -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Summary: K Desktop Environment - Multimedia applications Group: Applications/Multimedia @@ -32,7 +32,7 @@ BuildRequires: libvorbis-devel # Almost everything is commented out, it basically does nothing. # BuildRequires: pulseaudio-libs-devel BuildRequires: taglib-devel -%if 0%{?rhel} == 0 +%if 0%{?fedora} BuildRequires: xine-lib-devel libxcb-devel %endif @@ -165,6 +165,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/sources,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sources 22 Jul 2009 10:38:27 -0000 1.68 +++ sources 29 Jul 2009 23:11:23 -0000 1.69 @@ -1 +1 @@ -f54daa25d2d99a15aa633a8068df6ffc kdemultimedia-4.2.98.tar.bz2 +75c0c42f22f5ffc98262441751ccb247 kdemultimedia-4.3.0.tar.bz2 From than at fedoraproject.org Wed Jul 29 23:17:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 29 Jul 2009 23:17:01 +0000 (UTC) Subject: rpms/kdenetwork/devel .cvsignore, 1.70, 1.71 kdenetwork.spec, 1.193, 1.194 sources, 1.77, 1.78 Message-ID: <20090729231701.AC91011C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdenetwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9095 Modified Files: .cvsignore kdenetwork.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/.cvsignore,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- .cvsignore 24 Jul 2009 12:44:01 -0000 1.70 +++ .cvsignore 29 Jul 2009 23:17:00 -0000 1.71 @@ -3,3 +3,4 @@ kdenetwork-4.2.95.tar.bz2 kdenetwork-4.2.96.tar.bz2 kdenetwork-4.2.98.tar.bz2 krdc-icons.tar.bz2 +kdenetwork-4.3.0.tar.bz2 Index: kdenetwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/kdenetwork.spec,v retrieving revision 1.193 retrieving revision 1.194 diff -u -p -r1.193 -r1.194 --- kdenetwork.spec 24 Jul 2009 12:44:01 -0000 1.193 +++ kdenetwork.spec 29 Jul 2009 23:17:00 -0000 1.194 @@ -1,7 +1,7 @@ Summary: K Desktop Environment - Network Applications Name: kdenetwork Epoch: 7 -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} License: GPLv2 @@ -179,6 +179,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/sources,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- sources 24 Jul 2009 12:44:01 -0000 1.77 +++ sources 29 Jul 2009 23:17:00 -0000 1.78 @@ -1,2 +1,2 @@ -a65bbab7dabb887a3a3d9cb27c0f2409 kdenetwork-4.2.98.tar.bz2 7dd360a790100c952090410c2c89937c krdc-icons.tar.bz2 +f9695ff06d0d67a78a71fb9b3ddbd4f3 kdenetwork-4.3.0.tar.bz2 From smilner at fedoraproject.org Wed Jul 29 23:19:24 2009 From: smilner at fedoraproject.org (smilner) Date: Wed, 29 Jul 2009 23:19:24 +0000 (UTC) Subject: rpms/Django/EL-5 .cvsignore, 1.9, 1.10 Django.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090729231924.AAE1F11C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10464 Modified Files: .cvsignore Django.spec sources Log Message: Updated for http://www.djangoproject.com/weblog/2009/jul/28/security/ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 Dec 2008 06:23:23 -0000 1.9 +++ .cvsignore 29 Jul 2009 23:19:24 -0000 1.10 @@ -1 +1 @@ -Django-1.0.2-final.tar.gz +Django-1.0.3.tar.gz Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/Django.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- Django.spec 13 Mar 2009 02:47:49 -0000 1.9 +++ Django.spec 29 Jul 2009 23:19:24 -0000 1.10 @@ -2,14 +2,14 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: Django -Version: 1.0.2 +Version: 1.0.3 Release: 2%{?dist} Summary: A high-level Python Web framework Group: Development/Languages License: BSD URL: http://www.djangoproject.com/ -Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}-final.tar.gz +Source0: http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz # stub simplejson module that imports the system version Source1: simplejson-init.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,7 @@ Python Web framework. %prep -%setup -q -n %{name}-%{version}-final +%setup -q -n %{name}-%{version} # remove bundled simplejson cd django/utils/simplejson/ rm -rf * @@ -82,7 +82,6 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/*-messages.py %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py -%exclude %{_bindir}/django-admin.py? %{python_sitelib}/django %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info @@ -93,8 +92,18 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog -* Thu Mar 12 2009 Michel Salim - 1.0.2-2 +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 +- Fix changelog. + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 +- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ + +* Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) +- No longer excluding *.py? in bindir, F11's Python does not optimizes these + +* Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Dec 14 2008 Michel Salim - 1.0.2-1 - Update to 1.0.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Dec 2008 06:23:23 -0000 1.9 +++ sources 29 Jul 2009 23:19:24 -0000 1.10 @@ -1 +1 @@ -89353e3749668778f1370d2e444f3adc Django-1.0.2-final.tar.gz +3c5435b015d8cde602b17a5f0c9873dc Django-1.0.3.tar.gz From whot at fedoraproject.org Wed Jul 29 23:20:30 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 29 Jul 2009 23:20:30 +0000 (UTC) Subject: rpms/xorg-x11-drv-evdev/devel .cvsignore, 1.35, 1.36 commitid, 1.1, 1.2 sources, 1.35, 1.36 xorg-x11-drv-evdev.spec, 1.57, 1.58 Message-ID: <20090729232030.202BF11C04D4@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10943 Modified Files: .cvsignore commitid sources xorg-x11-drv-evdev.spec Log Message: * Thu Jul 30 2009 Peter Hutterer 2.2.99-5.20090730 - Update to today's git master Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 29 Jun 2009 04:50:48 -0000 1.35 +++ .cvsignore 29 Jul 2009 23:20:29 -0000 1.36 @@ -1 +1 @@ -xf86-input-evdev-20090629.tar.bz2 +xf86-input-evdev-20090730.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/commitid,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- commitid 29 Jun 2009 04:50:48 -0000 1.1 +++ commitid 29 Jul 2009 23:20:29 -0000 1.2 @@ -1 +1 @@ -8cc0d0f285261b0f26d22b5b4eca9ccbd1beeb93 +1f641d75edba7394201c1c53938215bae696791b Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 29 Jun 2009 04:50:48 -0000 1.35 +++ sources 29 Jul 2009 23:20:29 -0000 1.36 @@ -1 +1 @@ -aa09de0e07cfaae67c95194b995ba2b8 xf86-input-evdev-20090629.tar.bz2 +387261a86c9cd97824cae66955b03b56 xf86-input-evdev-20090730.tar.bz2 Index: xorg-x11-drv-evdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/xorg-x11-drv-evdev.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- xorg-x11-drv-evdev.spec 27 Jul 2009 08:25:00 -0000 1.57 +++ xorg-x11-drv-evdev.spec 29 Jul 2009 23:20:29 -0000 1.58 @@ -2,12 +2,12 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/input -%define gitdate 20090629 +%define gitdate 20090730 Summary: Xorg X11 evdev input driver Name: xorg-x11-drv-evdev Version: 2.2.99 -Release: 4.%{gitdate}%{?dist}.1 +Release: 5.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -71,6 +71,9 @@ X.Org X11 evdev input driver development %changelog +* Thu Jul 30 2009 Peter Hutterer 2.2.99-5.20090730 +- Update to today's git master + * Mon Jul 27 2009 Fedora Release Engineering - 2.2.99-4.20090629.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From tuxbrewr at fedoraproject.org Wed Jul 29 23:33:01 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 29 Jul 2009 23:33:01 +0000 (UTC) Subject: rpms/kmess/F-11 kmess.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090729233301.6C29911C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14271 Modified Files: .cvsignore sources Added Files: kmess.spec Log Message: Initial Build --- NEW FILE kmess.spec --- Name: kmess Version: 2.0 Release: 1%{?dist} Summary: A MSN Messenger Clone Group: Applications/Internet License: GPLv2+ URL: http://www.kmess.org Source0: kmess-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kde-filesystem >= 4 BuildRequires: kdelibs4-devel >= 4.2 BuildRequires: cmake BuildRequires: qca2-devel BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: qca-ossl BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: giflib-devel # removed konqueror integration till the bugs are worked out #BuildRequires: kdebase-devel Requires: qca2 Requires: qca-ossl %description KMess is an alternative MSN Messenger chat client for Linux. It allows Linux users to chat with friends who use MSN Messenger in Windows or Mac OS. The strength of KMess is it's integration with the KDE desktop environment, focus on MSN Messenger specific features and an easy-to-use interface. %prep %setup -q -n %{name}-%{version} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make VERBOSE=1 %{?_smp_mflags} -C %{_target_platform} %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} touch kmess.lang %find_lang kmess || echo "NOTICE: translations missing!" %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &> /dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : %files -f kmess.lang %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING README %{_kde4_datadir}/config/kmesschatstyles.knsrc %{_kde4_bindir}/kmess %{_kde4_datadir}/applications/kde4/kmess.desktop %{_kde4_datadir}/doc/HTML/en/kmess/* %{_kde4_datadir}/emoticons/KMess-new/* %{_kde4_appsdir}/kmess/* %{_kde4_datadir}/icons/hicolor/*/apps/kmess.png %{_kde4_datadir}/icons/hicolor/scalable/apps/kmess.svgz %{_kde4_datadir}/sounds/kmess* %changelog * Sun Jul 26 2009 Steven M. Parrish - 2.0-1 - 1st build of official 2.0 release * Wed May 27 2009 Florian Sievert - 2.0beta2-4 - Fixing meta information errors * Wed May 27 2009 Florian Sievert - 2.0beta2-3 - Adding qca-ossl as dependency * Wed May 27 2009 Florian Sievert - 2.0beta2-2 - Fixing some minor mistakes of the meta informations * Wed May 27 2009 Florian Sievert - 2.0beta2-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kmess/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:53:12 -0000 1.1 +++ .cvsignore 29 Jul 2009 23:33:00 -0000 1.2 @@ -0,0 +1 @@ +kmess-2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kmess/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:53:12 -0000 1.1 +++ sources 29 Jul 2009 23:33:01 -0000 1.2 @@ -0,0 +1 @@ +619781ad93c9848672b17ecc8536545c kmess-2.0.tar.gz From jkeating at fedoraproject.org Wed Jul 29 23:46:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 29 Jul 2009 23:46:52 +0000 (UTC) Subject: rpms/salinfo/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE salinfo.spec, 1.19, NONE sources, 1.4, NONE Message-ID: <20090729234652.9D4BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/salinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18454 Added Files: dead.package Removed Files: Makefile salinfo.spec sources Log Message: Kill it with fire. --- NEW FILE dead.package --- This was an ia64 package, which is a dead secondary arch. --- Makefile DELETED --- --- salinfo.spec DELETED --- --- sources DELETED --- From pkgdb at fedoraproject.org Wed Jul 29 23:47:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 23:47:44 +0000 Subject: [pkgdb] salinfo ownership updated Message-ID: <20090729234745.1179910F899@bastion2.fedora.phx.redhat.com> Package salinfo in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/salinfo From pkgdb at fedoraproject.org Wed Jul 29 23:47:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 29 Jul 2009 23:47:44 +0000 Subject: [pkgdb] salinfo (un)retirement Message-ID: <20090729234745.2B3FC10F89C@bastion2.fedora.phx.redhat.com> Package salinfo in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/salinfo From tuxbrewr at fedoraproject.org Wed Jul 29 23:48:35 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 29 Jul 2009 23:48:35 +0000 (UTC) Subject: rpms/kmess/devel kmess.spec,1.1,1.2 Message-ID: <20090729234835.E9CDA11C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18915 Modified Files: kmess.spec Log Message: Fix summary Index: kmess.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmess/devel/kmess.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kmess.spec 29 Jul 2009 18:58:00 -0000 1.1 +++ kmess.spec 29 Jul 2009 23:48:35 -0000 1.2 @@ -1,7 +1,7 @@ Name: kmess Version: 2.0 -Release: 1%{?dist} -Summary: A MSN Messenger Clone +Release: 2%{?dist} +Summary: Messaging client for MSN Group: Applications/Internet License: GPLv2+ @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Wed Jul 29 2009 Steven M. Parrish - 2.0-2 +- Correct Summary + * Sun Jul 26 2009 Steven M. Parrish - 2.0-1 - 1st build of official 2.0 release From sgrubb at fedoraproject.org Wed Jul 29 23:52:26 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Wed, 29 Jul 2009 23:52:26 +0000 (UTC) Subject: rpms/audit/devel audit.spec,1.212,1.213 Message-ID: <20090729235226.5722111C00CE@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/audit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20168 Modified Files: audit.spec Log Message: fix the release numbers Index: audit.spec =================================================================== RCS file: /cvs/pkgs/rpms/audit/devel/audit.spec,v retrieving revision 1.212 retrieving revision 1.213 diff -u -p -r1.212 -r1.213 --- audit.spec 24 Jul 2009 17:33:31 -0000 1.212 +++ audit.spec 29 Jul 2009 23:52:26 -0000 1.213 @@ -1,13 +1,13 @@ %define audit_version 1.7.13 -%define audit_release 1%{?dist} +%define audit_release 2%{?dist} %define sca_version 0.4.8 -%define sca_release 20 +%define sca_release 21 %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Summary: User space tools for 2.6 kernel auditing Name: audit Version: %{audit_version} -Release: %{audit_release}.1 +Release: %{audit_release} License: GPLv2+ Group: System Environment/Daemons URL: http://people.redhat.com/sgrubb/audit/ @@ -258,7 +258,7 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-audit-server %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.7.13-1.1 +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Apr 21 2009 Steve Grubb 1.7.13-1 From jkeating at fedoraproject.org Thu Jul 30 00:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 00:02:04 +0000 (UTC) Subject: rpms/hyphen-de/devel hyphen-de.spec,1.4,1.5 Message-ID: <20090730000204.4F59311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23362 Modified Files: hyphen-de.spec Log Message: * Wed Jul 29 2009 Jesse Keating - 0.20060120-6 - Bump again due to buildsystem error Index: hyphen-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-de/devel/hyphen-de.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-de.spec 25 Jul 2009 02:49:16 -0000 1.4 +++ hyphen-de.spec 30 Jul 2009 00:02:03 -0000 1.5 @@ -2,7 +2,7 @@ Name: hyphen-de Summary: German hyphenation rules %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 5%{?dist} +Release: 6%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_DE.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Wed Jul 29 2009 Jesse Keating - 0.20060120-6 +- Bump again due to buildsystem error + * Fri Jul 24 2009 Fedora Release Engineering - 0.20060120-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mathstuf at fedoraproject.org Thu Jul 30 00:02:47 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:02:47 +0000 (UTC) Subject: rpms/git-cola/devel git-cola.spec,1.8,1.9 Message-ID: <20090730000247.EB6DC11C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/git-cola/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23773 Modified Files: git-cola.spec Log Message: Attempt build for mass rebuild Index: git-cola.spec =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/devel/git-cola.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- git-cola.spec 25 Jul 2009 00:12:56 -0000 1.8 +++ git-cola.spec 30 Jul 2009 00:02:47 -0000 1.9 @@ -4,7 +4,7 @@ Name: git-cola Version: 1.3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A highly caffeinated git gui Group: Development/Tools @@ -78,6 +78,9 @@ update-desktop-database &> /dev/null || %changelog +* Wed Jul 29 2009 Ben Boeckel 1.3.8-3 +- Try build again for mass rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mikep at fedoraproject.org Thu Jul 30 00:03:40 2009 From: mikep at fedoraproject.org (mikep) Date: Thu, 30 Jul 2009 00:03:40 +0000 (UTC) Subject: rpms/libdmapsharing/devel .cvsignore, 1.3, 1.4 libdmapsharing.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090730000340.026CE11C00CE@cvs1.fedora.phx.redhat.com> Author: mikep Update of /cvs/pkgs/rpms/libdmapsharing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24158 Modified Files: .cvsignore libdmapsharing.spec sources Log Message: New upstream release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Jul 2009 00:29:26 -0000 1.3 +++ .cvsignore 30 Jul 2009 00:03:39 -0000 1.4 @@ -1 +1 @@ -libdmapsharing-1.9.0.9.tar.gz +libdmapsharing-1.9.0.10.tar.gz Index: libdmapsharing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/libdmapsharing.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libdmapsharing.spec 25 Jul 2009 05:30:36 -0000 1.3 +++ libdmapsharing.spec 30 Jul 2009 00:03:39 -0000 1.4 @@ -1,6 +1,6 @@ Name: libdmapsharing -Version: 1.9.0.9 -Release: 2%{?dist} +Version: 1.9.0.10 +Release: 1%{?dist} License: LGPLv2+ Source: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,28 +57,31 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Wed Jul 29 2009 W. Michael Petullo - 1.9.0.10-1 +- New upstream version. + * Fri Jul 24 2009 Fedora Release Engineering - 1.9.0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Jul 23 2009 W. Michael Petullo - 1.9.0.9-1 - - New upstream version. +- New upstream version. * Tue Mar 10 2009 W. Michael Petullo - 1.9.0.4-1 - - New upstream version. +- New upstream version. * Fri Mar 06 2009 W. Michael Petullo - 1.9.0.3-1 - - New upstream version. - - Use "-p /sbin/ldconfig." - - Remove requires that are already known by RPM. - - libdmapsharing-devel package now requires pkgconfig. - - Remove irrelevant INSTALL documentation. +- New upstream version. +- Use "-p /sbin/ldconfig." +- Remove requires that are already known by RPM. +- libdmapsharing-devel package now requires pkgconfig. +- Remove irrelevant INSTALL documentation. * Sun Feb 22 2009 W. Michael Petullo - 1.9.0.1-3 - - Require libsoup >= 2.25.92, as this version supports - SOUP_ENCODING_EOF message encoding, required for HTTP 1.0 clients. +- Require libsoup >= 2.25.92, as this version supports SOUP_ENCODING_EOF +message encoding, required for HTTP 1.0 clients. * Sat Feb 07 2009 W. Michael Petullo - 1.9.0.1-2 - - Fix BuildRequires. +- Fix BuildRequires. * Sun Dec 28 2008 W. Michael Petullo - 1.9.0.1-1 - - Initial package +- Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Jul 2009 00:29:27 -0000 1.3 +++ sources 30 Jul 2009 00:03:39 -0000 1.4 @@ -1 +1 @@ -7b6b2df78404dc5120a23d858859b6d8 libdmapsharing-1.9.0.9.tar.gz +91bdfbcb71533729a5f8925be0049ae2 libdmapsharing-1.9.0.10.tar.gz From tuxbrewr at fedoraproject.org Thu Jul 30 00:05:55 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 30 Jul 2009 00:05:55 +0000 (UTC) Subject: rpms/kmess/F-11 kmess.spec,1.1,1.2 Message-ID: <20090730000555.34A4311C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24986 Modified Files: kmess.spec Log Message: Fix summary Index: kmess.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmess/F-11/kmess.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kmess.spec 29 Jul 2009 23:33:01 -0000 1.1 +++ kmess.spec 30 Jul 2009 00:05:54 -0000 1.2 @@ -1,7 +1,7 @@ Name: kmess Version: 2.0 -Release: 1%{?dist} -Summary: A MSN Messenger Clone +Release: 2%{?dist} +Summary: Messaging client for MSN Group: Applications/Internet License: GPLv2+ @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Wed Jul 29 2009 Steven M. Parrish - 2.0-2 +- Correct Summary + * Sun Jul 26 2009 Steven M. Parrish - 2.0-1 - 1st build of official 2.0 release From mathstuf at fedoraproject.org Thu Jul 30 00:12:20 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:12:20 +0000 (UTC) Subject: rpms/kobby/devel kobby.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730001220.3EC7011C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26811 Modified Files: .cvsignore sources Added Files: kobby.spec Log Message: Initial build --- NEW FILE kobby.spec --- Name: kobby Version: 1.0 Release: 0.1.b3%{?dist} Summary: Collaborative editor for KDE Group: Applications/Editors License: GPLv2+ URL: http://greghaynes.github.com/kobby/ Source0: http://cloud.github.com/downloads/greghaynes/kobby/kobby-1.0b3.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libqinfinity-devel BuildRequires: kdelibs4-devel %description KDE collaborative editor using the infinote protocol. %prep %setup -q -n kobby-1.0b3 %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING %{_kde4_bindir}/kobby %{_kde4_datadir}/applications/kde4/kobby.desktop %{_kde4_configdir}.kcfg/kobbysettings.kcfg %{_kde4_appsdir}/kobby/kobbyui.rc %changelog * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kobby/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 01:05:39 -0000 1.1 +++ .cvsignore 30 Jul 2009 00:12:20 -0000 1.2 @@ -0,0 +1 @@ +kobby-1.0b3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kobby/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:05:40 -0000 1.1 +++ sources 30 Jul 2009 00:12:20 -0000 1.2 @@ -0,0 +1 @@ +82661e018e89b3eee998b46f9fb9264f kobby-1.0b3.tar.gz From mclasen at fedoraproject.org Thu Jul 30 00:13:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 00:13:16 +0000 (UTC) Subject: rpms/festival/devel festival.spec,1.41,1.42 Message-ID: <20090730001316.7424011C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/festival/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26947 Modified Files: festival.spec Log Message: Rebuild Index: festival.spec =================================================================== RCS file: /cvs/pkgs/rpms/festival/devel/festival.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- festival.spec 24 Jul 2009 22:41:35 -0000 1.41 +++ festival.spec 30 Jul 2009 00:13:16 -0000 1.42 @@ -6,7 +6,7 @@ Name: festival Summary: Speech synthesis and text-to-speech system Version: %{festivalversion} -Release: 13%{?dist} +Release: 14%{?dist} URL: http://www.cstr.ed.ac.uk/projects/festival/ Group: Applications/Multimedia @@ -879,6 +879,9 @@ fi %changelog +* Wed Jul 29 2009 Matthias Clasen - 1.96-14 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.96-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mathstuf at fedoraproject.org Thu Jul 30 00:14:59 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:14:59 +0000 (UTC) Subject: rpms/krename/devel krename.spec,1.7,1.8 Message-ID: <20090730001459.B239011C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krename/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27661 Modified Files: krename.spec Log Message: Attempt another build Index: krename.spec =================================================================== RCS file: /cvs/pkgs/rpms/krename/devel/krename.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- krename.spec 25 Jul 2009 04:47:33 -0000 1.7 +++ krename.spec 30 Jul 2009 00:14:59 -0000 1.8 @@ -1,6 +1,6 @@ Name: krename Version: 3.0.14 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Powerful batch file renamer Group: Applications/File License: GPLv2 @@ -63,6 +63,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Wed Jul 29 2009 Ben Boeckel - 3.0.14-7 +- Retry build for mass rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 3.0.14-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rdieter at fedoraproject.org Thu Jul 30 00:16:08 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 00:16:08 +0000 (UTC) Subject: rpms/maxima/F-10 .cvsignore, 1.27, 1.28 maxima.spec, 1.119, 1.120 sources, 1.25, 1.26 maxima-5.9.4-gcl_setarch.patch, 1.1, NONE Message-ID: <20090730001608.9A9E411C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28697 Modified Files: .cvsignore maxima.spec sources Removed Files: maxima-5.9.4-gcl_setarch.patch Log Message: * Tue Jul 28 2009 Rex Dieter - 5.18.1-6 - rebuild (sbcl) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-10/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 25 Aug 2008 01:48:55 -0000 1.27 +++ .cvsignore 30 Jul 2009 00:16:08 -0000 1.28 @@ -2,4 +2,4 @@ clog macref.pdf maxima.png maximabook-19-Sept-2004.pdf -maxima-5.16.3.tar.gz +maxima-5.18.1.tar.gz Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-10/maxima.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- maxima.spec 5 Nov 2008 17:25:17 -0000 1.119 +++ maxima.spec 30 Jul 2009 00:16:08 -0000 1.120 @@ -1,9 +1,9 @@ Summary: Symbolic Computation Program Name: maxima -Version: 5.16.3 +Version: 5.18.1 -Release: 4%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -11,11 +11,10 @@ Source: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} > 8 - # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 -ExclusiveArch: i386 x86_64 sparcv9 +ExclusiveArch: %{ix86} x86_64 sparcv9 %else -ExclusiveArch: i386 x86_64 ppc sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc sparcv9 %endif %define maxima_ver %{version}%{?beta} @@ -26,7 +25,7 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %ifarch %{ix86} %define _enable_cmucl --enable-cmucl %if 0%{?fedora} -# gcl/f8 bustage on i386: https://bugzilla.redhat.com/show_bug.cgi?id=451801 +# temporarily disable -gcl (#496124) #define _enable_gcl --enable-gcl %endif %endif @@ -35,7 +34,7 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %define default_lisp sbcl %if 0%{?fedora} > 2 %define _enable_clisp --enable-clisp -# gcl busted on x86_64 atm: http://bugzilla.redhat.com/427250 +# temporarily disable -gcl (#496124) #define _enable_gcl --enable-gcl %define _enable_sbcl --enable-sbcl %else @@ -48,8 +47,8 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %define default_lisp sbcl # clisp: http://bugzilla.redhat.com/166347 (resolved) - clisp/ppc (still) awol. #define _enable_clisp --enable-clisp -# gcl: http://bugzilla.redhat.com/167952 -#define _enable_gcl --enable-gcl +# temporarily disable -gcl (#496124) +#define _enable_gcl --enable-gcl # sbcl: http://bugzilla.redhat.com/220053 (resolved) # sbcl: ppc/ld joy, "final link failed: Nonrepresentable section on output" http://bugzilla.redhat.com/448734 %define _enable_sbcl --enable-sbcl @@ -70,7 +69,6 @@ Obsoletes: %{name}-runtime-gcl < %{versi Obsoletes: %{name}-runtime-sbcl < %{version}-%{release} %endif - Source1: maxima.png Source2: xmaxima.desktop Source6: maxima-modes.el @@ -79,11 +77,8 @@ Source6: maxima-modes.el Source10: http://starship.python.net/crew/mike/TixMaxima/macref.pdf Source11: http://maxima.sourceforge.net/docs/maximabook/maximabook-19-Sept-2004.pdf -# maxima-runtime-gcl: Unrecoverable error: fault count too high (#187647) -Patch6: maxima-5.9.4-gcl_setarch.patch - -# Inhibit automatic compressing of info files. Compressed info -# files break maxima's internal help. +# Inhibit automatic compressing of info files. +# Compressed info files break maxima's internal help. %define __spec_install_post %{nil} # debuginfo.list ends up empty/blank anyway. disable %define debug_package %{nil} @@ -96,6 +91,9 @@ Obsoletes: %{name}-lang-pt-utf8 < %{vers Obsoletes: %{name}-lang-pt_BR < %{version}-%{release} Obsoletes: %{name}-lang-pt_BR-utf8 < %{version}-%{release} +# 5.18.0 tarball busted?, temporary +#BuildRequires: automake +BuildRequires: desktop-file-utils BuildRequires: time # texi2dvi %if 0%{?fedora} > 5 || 0%{?rhel} > 4 @@ -104,7 +102,6 @@ BuildRequires: texinfo-tex BuildRequires: texinfo %endif BuildRequires: tetex-latex -BuildRequires: desktop-file-utils # /usr/bin/wish BuildRequires: tk @@ -176,12 +173,6 @@ Summary: Maxima compiled with GCL Group: Applications/Engineering BuildRequires: gcl Requires: %{name} = %{version} -%if 0%{?fedora} > 4 || 0%{?rhel} > 4 -# See http://bugzilla.redhat.com/187647 -%define setarch_hack 1 -BuildRequires: setarch -Requires: setarch -%endif Obsoletes: maxima-exec-gcl < %{version}-%{release} Provides: %{name}-runtime = %{version} Provides: %{name}-runtime-gcl = %{version}-%{release} @@ -214,10 +205,6 @@ Maxima compiled with Steel Bank Common L # Extra docs install -p -m644 %{SOURCE10} . -%if 0%{?setarch_hack} == 1 -%patch6 -p1 -b .gcl-setarch -%endif - sed -i -e 's|@ARCH@|%{_target_cpu}|' src/maxima.in sed -i -e 's:/usr/local/info:/usr/share/info:' \ @@ -244,18 +231,14 @@ find -name CVS -type d | xargs rm -r make %{?_smp_mflags} # docs -pushd doc +install -D -p -m644 %{SOURCE11} doc/maximabook/maxima.pdf - install -D -p -m644 %{SOURCE11} maximabook/maxima.pdf - -# pushd info +# pushd doc/info # texi2dvi --pdf maxima.texi # popd - pushd intromax - pdflatex intromax.ltx - popd - +pushd doc/intromax + pdflatex intromax.ltx popd @@ -378,11 +361,14 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/maxima/%{maxima_ver} %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/ +%doc %{_datadir}/maxima/%{maxima_ver}/doc/*.h* +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt.utf8/ -%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR* +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR/ +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR.utf8/ %{_datadir}/maxima/%{maxima_ver}/share/ %dir %{_libdir}/maxima/ %dir %{_libdir}/maxima/%{maxima_ver}/ @@ -441,6 +427,48 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Rex Dieter - 5.18.1-6 +- rebuild (sbcl) + +* Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 29 2009 Rex Dieter - 5.18.1-3 +- disable -runtime-gcl until issues (selinux, bug #496124) are fixed + +* Sat May 02 2009 Rex Dieter - 5.18.1-2 +- rebuild (sbcl) + +* Sat Apr 18 2009 Rex Dieter - 5.18.1-1 +- maxima-5.18.1 + +* Fri Apr 17 2009 Rex Dieter - 5.18.0-1 +- maxima-5.18.0 + +* Wed Mar 04 2009 Rex Dieter - 5.17.1-7 +- respin (sbcl) + +* Fri Feb 27 2009 Rex Dieter - 5.17.1-6 +- ExclusiveArch: s/i386/%%ix86/ + +* Wed Feb 25 2009 Fedora Release Engineering - 5.17.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 03 2009 Rex Dieter - 5.17.1-4 +- respin (sbcl) + +* Sun Jan 18 2009 Rex Dieter - 5.17.1-3 +- reenable gcl on i386 (#451801), x86_64 (#427250), ppc (#167952) + +* Wed Dec 31 2008 Rex Dieter - 5.17.1-2 +- respin (sbcl) + +* Wed Dec 17 2008 Rex Dieter - 5.17.1-1 +- maxima-5.17.1 + +* Thu Dec 04 2008 Rex Dieter - 5.17.0-1 +- maxima-5.17.0 + * Wed Nov 05 2008 Rex Dieter - 5.16.3-4 - respin (sbcl) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-10/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 25 Aug 2008 01:48:55 -0000 1.25 +++ sources 30 Jul 2009 00:16:08 -0000 1.26 @@ -1,4 +1,4 @@ 9faa5a513de43b5e7384216a8783f620 maximabook-19-Sept-2004.pdf c101a1ce604d31b02bbc2f37cced280d macref.pdf 2da3872c0bdcc0446ee933392a907f50 maxima.png -690ee57f3884f565c898ed39a592e4e1 maxima-5.16.3.tar.gz +8be7388ad31b975335623b390bc2516e maxima-5.18.1.tar.gz --- maxima-5.9.4-gcl_setarch.patch DELETED --- From dougsland at fedoraproject.org Thu Jul 30 00:20:56 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Thu, 30 Jul 2009 00:20:56 +0000 (UTC) Subject: rpms/zbar/devel import.log,1.1,1.2 zbar.spec,1.1,1.2 Message-ID: <20090730002056.C1ED111C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29903/devel Modified Files: import.log zbar.spec Log Message: * Wed Jul 29 2009 Itamar Reis Peixoto - 0.8-6 - fix epel build Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Jul 2009 20:39:36 -0000 1.1 +++ import.log 30 Jul 2009 00:20:56 -0000 1.2 @@ -1 +1,2 @@ zbar-0_8-5_fc10:HEAD:zbar-0.8-5.fc10.src.rpm:1248899866 +zbar-0_8-6_fc10:HEAD:zbar-0.8-6.fc10.src.rpm:1248913251 Index: zbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/zbar.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zbar.spec 29 Jul 2009 20:39:37 -0000 1.1 +++ zbar.spec 30 Jul 2009 00:20:56 -0000 1.2 @@ -3,7 +3,7 @@ Name: zbar Version: 0.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support @@ -12,7 +12,13 @@ URL: http://sourceforge.net/p Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel, gtk2-devel, pygtk2-devel, qt-devel >= 4, ImageMagick-c++-devel, libXv-devel, xmlto +BuildRequires: python-devel, gtk2-devel, pygtk2-devel, ImageMagick-c++-devel, libXv-devel, xmlto + +%if 0%{?rhel} +BuildRequires: qt4-devel +%else +BuildRequires: qt-devel +%endif %description A layered barcode scanning and decoding library. Supports EAN, UPC, Code 128, @@ -167,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/zbar/QZBar*.h %changelog +* Wed Jul 29 2009 Itamar Reis Peixoto - 0.8-6 +- fix epel build + * Thu Jul 28 2009 Douglas Schilling Landgraf - 0.8-5 - Now fixed Source0 url - Removed ldconfig calls to devel subpackages From tuxbrewr at fedoraproject.org Thu Jul 30 00:23:22 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 30 Jul 2009 00:23:22 +0000 (UTC) Subject: rpms/kmess/F-10 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090730002322.1296511C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30507 Modified Files: .cvsignore sources Log Message: Initial Build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kmess/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 15:53:12 -0000 1.1 +++ .cvsignore 30 Jul 2009 00:23:21 -0000 1.2 @@ -0,0 +1 @@ +kmess-2.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kmess/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 15:53:12 -0000 1.1 +++ sources 30 Jul 2009 00:23:21 -0000 1.2 @@ -0,0 +1 @@ +619781ad93c9848672b17ecc8536545c kmess-2.0.tar.gz From tuxbrewr at fedoraproject.org Thu Jul 30 00:23:55 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 30 Jul 2009 00:23:55 +0000 (UTC) Subject: rpms/kmess/F-10 kmess.spec,NONE,1.1 Message-ID: <20090730002355.404E011C00CE@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kmess/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30681 Added Files: kmess.spec Log Message: Initial Build --- NEW FILE kmess.spec --- Name: kmess Version: 2.0 Release: 2%{?dist} Summary: Messaging client for MSN Group: Applications/Internet License: GPLv2+ URL: http://www.kmess.org Source0: kmess-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kde-filesystem >= 4 BuildRequires: kdelibs4-devel >= 4.2 BuildRequires: cmake BuildRequires: qca2-devel BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: qca-ossl BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: giflib-devel # removed konqueror integration till the bugs are worked out #BuildRequires: kdebase-devel Requires: qca2 Requires: qca-ossl %description KMess is an alternative MSN Messenger chat client for Linux. It allows Linux users to chat with friends who use MSN Messenger in Windows or Mac OS. The strength of KMess is it's integration with the KDE desktop environment, focus on MSN Messenger specific features and an easy-to-use interface. %prep %setup -q -n %{name}-%{version} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make VERBOSE=1 %{?_smp_mflags} -C %{_target_platform} %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} touch kmess.lang %find_lang kmess || echo "NOTICE: translations missing!" %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &> /dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : %files -f kmess.lang %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING README %{_kde4_datadir}/config/kmesschatstyles.knsrc %{_kde4_bindir}/kmess %{_kde4_datadir}/applications/kde4/kmess.desktop %{_kde4_datadir}/doc/HTML/en/kmess/* %{_kde4_datadir}/emoticons/KMess-new/* %{_kde4_appsdir}/kmess/* %{_kde4_datadir}/icons/hicolor/*/apps/kmess.png %{_kde4_datadir}/icons/hicolor/scalable/apps/kmess.svgz %{_kde4_datadir}/sounds/kmess* %changelog * Wed Jul 29 2009 Steven M. Parrish - 2.0-2 - Correct Summary * Sun Jul 26 2009 Steven M. Parrish - 2.0-1 - 1st build of official 2.0 release * Wed May 27 2009 Florian Sievert - 2.0beta2-4 - Fixing meta information errors * Wed May 27 2009 Florian Sievert - 2.0beta2-3 - Adding qca-ossl as dependency * Wed May 27 2009 Florian Sievert - 2.0beta2-2 - Fixing some minor mistakes of the meta informations * Wed May 27 2009 Florian Sievert - 2.0beta2-1 - Initial version From mclasen at fedoraproject.org Thu Jul 30 00:27:26 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 00:27:26 +0000 (UTC) Subject: rpms/gtk2-engines/devel gtk2-engines.spec,1.111,1.112 Message-ID: <20090730002726.CE41311C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2-engines/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31587 Modified Files: gtk2-engines.spec Log Message: fix the build Index: gtk2-engines.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2-engines/devel/gtk2-engines.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- gtk2-engines.spec 25 Jul 2009 01:43:22 -0000 1.111 +++ gtk2-engines.spec 30 Jul 2009 00:27:26 -0000 1.112 @@ -3,7 +3,7 @@ Summary: Theme engines for GTK+ 2.0 Name: gtk2-engines Version: 2.18.2 -Release: 2%{?dist} +Release: 3%{?dist} # for details on which engines are GPL vs LGPL, see COPYING License: LGPLv2+ Group: System Environment/Libraries @@ -64,11 +64,12 @@ find $RPM_BUILD_ROOT%{_datadir}/themes - rm -rf $RPM_BUILD_ROOT%{_datadir}/themes/Redmond rm -rf $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/2.4.0/engines/libredmond95.so +%find_lang gtk-engines %clean rm -rf $RPM_BUILD_ROOT -%files +%files -f gtk-engines.lang %defattr(644, root, root, 755) %doc README AUTHORS NEWS COPYING %attr (755, root, root) %{_libdir}/gtk-2.0/2.10.0/engines/*.so @@ -80,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gtk-engines-2.pc %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.18.2-3 +- Fix the build + * Fri Jul 24 2009 Fedora Release Engineering - 2.18.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mathstuf at fedoraproject.org Thu Jul 30 00:28:05 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:28:05 +0000 (UTC) Subject: rpms/kobby/F-11 kobby.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730002805.277BB11C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31875 Modified Files: sources Added Files: kobby.spec Log Message: Initial commit --- NEW FILE kobby.spec --- Name: kobby Version: 1.0 Release: 0.1.b3%{?dist} Summary: Collaborative editor for KDE Group: Applications/Editors License: GPLv2+ URL: http://greghaynes.github.com/kobby/ Source0: http://cloud.github.com/downloads/greghaynes/kobby/kobby-1.0b3.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libqinfinity-devel BuildRequires: kdelibs4-devel %description KDE collaborative editor using the infinote protocol. %prep %setup -q -n kobby-1.0b3 %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING %{_kde4_bindir}/kobby %{_kde4_datadir}/applications/kde4/kobby.desktop %{_kde4_configdir}.kcfg/kobbysettings.kcfg %{_kde4_appsdir}/kobby/kobbyui.rc %changelog * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kobby/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:05:40 -0000 1.1 +++ sources 30 Jul 2009 00:28:05 -0000 1.2 @@ -0,0 +1 @@ +82661e018e89b3eee998b46f9fb9264f kobby-1.0b3.tar.gz From smilner at fedoraproject.org Thu Jul 30 00:28:20 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 00:28:20 +0000 (UTC) Subject: rpms/Django/F-9 Django.spec,1.16,1.17 Message-ID: <20090730002820.53C2211C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31810 Modified Files: Django.spec Log Message: Builds for F-10 and lower seem to require ghosting of django-admin.py[c,o] Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/Django.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- Django.spec 29 Jul 2009 21:54:21 -0000 1.16 +++ Django.spec 30 Jul 2009 00:28:20 -0000 1.17 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 +- Older builds must ghost django-admin.py[c,o] + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 - Bump for tag issue. From mathstuf at fedoraproject.org Thu Jul 30 00:28:54 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:28:54 +0000 (UTC) Subject: rpms/libqinfinity/F-11 libqinfinity.spec,1.2,1.3 Message-ID: <20090730002854.8B0A511C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/libqinfinity/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32150 Modified Files: libqinfinity.spec Log Message: Need override tags as well Index: libqinfinity.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqinfinity/F-11/libqinfinity.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libqinfinity.spec 28 Jul 2009 23:58:06 -0000 1.2 +++ libqinfinity.spec 30 Jul 2009 00:28:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: libqinfinity Version: 1.0 -Release: 0.2.b3%{?dist}.1 +Release: 0.2.b3%{?dist}.2 Summary: Qt interface for libinfinity Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Ben Boeckel 1.0-0.1.b3.2 +- Request override tags + * Tue Jul 28 2009 Ben Boeckel 1.0-0.1.b3.1 - Wait for newRepo task in koji From dougsland at fedoraproject.org Thu Jul 30 00:28:57 2009 From: dougsland at fedoraproject.org (Douglas Schilling Landgraf) Date: Thu, 30 Jul 2009 00:28:57 +0000 (UTC) Subject: rpms/zbar/devel import.log,1.2,1.3 zbar.spec,1.2,1.3 Message-ID: <20090730002857.CD43B11C00CE@cvs1.fedora.phx.redhat.com> Author: dougsland Update of /cvs/pkgs/rpms/zbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32108/devel Modified Files: import.log zbar.spec Log Message: * Wed Jul 29 2009 Douglas Schilling Landgraf - 0.8-7 - Replace URL info Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 30 Jul 2009 00:20:56 -0000 1.2 +++ import.log 30 Jul 2009 00:28:57 -0000 1.3 @@ -1,2 +1,3 @@ zbar-0_8-5_fc10:HEAD:zbar-0.8-5.fc10.src.rpm:1248899866 zbar-0_8-6_fc10:HEAD:zbar-0.8-6.fc10.src.rpm:1248913251 +zbar-0_8-7_fc10:HEAD:zbar-0.8-7.fc10.src.rpm:1248913736 Index: zbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/zbar/devel/zbar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- zbar.spec 30 Jul 2009 00:20:56 -0000 1.2 +++ zbar.spec 30 Jul 2009 00:28:57 -0000 1.3 @@ -3,12 +3,12 @@ Name: zbar Version: 0.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Bar code reader Group: User Interface/X Hardware Support License: LGPLv2+ -URL: http://sourceforge.net/projects/%{name} +URL: http://zbar.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -173,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/zbar/QZBar*.h %changelog +* Wed Jul 29 2009 Douglas Schilling Landgraf - 0.8-7 +- Replace URL info + * Wed Jul 29 2009 Itamar Reis Peixoto - 0.8-6 - fix epel build From smilner at fedoraproject.org Thu Jul 30 00:29:19 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 00:29:19 +0000 (UTC) Subject: rpms/Django/F-9 Django.spec,1.17,1.18 Message-ID: <20090730002919.9634911C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32272 Modified Files: Django.spec Log Message: Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-9/Django.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- Django.spec 30 Jul 2009 00:28:20 -0000 1.17 +++ Django.spec 30 Jul 2009 00:29:19 -0000 1.18 @@ -83,10 +83,17 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py %{python_sitelib}/django + %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info %endif +%if %{?fedora} <= 10 +%ghost %{_bindir}/django-admin.pyc +%ghost %{_bindir}/django-admin.pyo +%endif + + %files doc %defattr(-,root,root,-) %doc docs/_build/html/* From mathstuf at fedoraproject.org Thu Jul 30 00:29:32 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 00:29:32 +0000 (UTC) Subject: rpms/kobby/F-10 kobby.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730002932.9A6E411C00CE@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32394 Modified Files: sources Added Files: kobby.spec Log Message: Initial commit --- NEW FILE kobby.spec --- Name: kobby Version: 1.0 Release: 0.1.b3%{?dist} Summary: Collaborative editor for KDE Group: Applications/Editors License: GPLv2+ URL: http://greghaynes.github.com/kobby/ Source0: http://cloud.github.com/downloads/greghaynes/kobby/kobby-1.0b3.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libqinfinity-devel BuildRequires: kdelibs4-devel %description KDE collaborative editor using the infinote protocol. %prep %setup -q -n kobby-1.0b3 %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir %{buildroot} make install DESTDIR=%{buildroot} -C %{_target_platform} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING %{_kde4_bindir}/kobby %{_kde4_datadir}/applications/kde4/kobby.desktop %{_kde4_configdir}.kcfg/kobbysettings.kcfg %{_kde4_appsdir}/kobby/kobbyui.rc %changelog * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kobby/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 01:05:40 -0000 1.1 +++ sources 30 Jul 2009 00:29:32 -0000 1.2 @@ -0,0 +1 @@ +82661e018e89b3eee998b46f9fb9264f kobby-1.0b3.tar.gz From smilner at fedoraproject.org Thu Jul 30 00:30:30 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 00:30:30 +0000 (UTC) Subject: rpms/Django/F-10 Django.spec,1.17,1.18 Message-ID: <20090730003030.BC62E11C0425@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32645 Modified Files: Django.spec Log Message: Older builds must ghost django-admin.py[c,o] Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-10/Django.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- Django.spec 29 Jul 2009 21:53:46 -0000 1.17 +++ Django.spec 30 Jul 2009 00:30:30 -0000 1.18 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 2%{?dist} +Release: 4%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -83,15 +83,28 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py %{python_sitelib}/django + %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info %endif +%if %{?fedora} <= 10 +%ghost %{_bindir}/django-admin.pyc +%ghost %{_bindir}/django-admin.pyo +%endif + + %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 +- Older builds must ghost django-admin.py[c,o] + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 +- Bump for tag issue. + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 - Fix changelog. From pkgdb at fedoraproject.org Thu Jul 30 00:31:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:47 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchcommits Message-ID: <20090730003147.5F4DB10F899@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zbar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:48 +0000 Subject: [pkgdb] zbar: itamarjp has requested commit Message-ID: <20090730003148.3CCE510F89C@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zbar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:49 +0000 Subject: [pkgdb] zbar: itamarjp has requested approveacls Message-ID: <20090730003149.1674F10F8A1@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zbar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:51 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchbugzilla Message-ID: <20090730003151.2DFB110F8B1@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zbar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:54 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchbugzilla Message-ID: <20090730003154.618CE10F8B6@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zbar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:55 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchcommits Message-ID: <20090730003155.747F110F8B9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zbar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:56 +0000 Subject: [pkgdb] zbar: itamarjp has requested commit Message-ID: <20090730003156.80B6010F8BC@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zbar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:31:59 +0000 Subject: [pkgdb] zbar: itamarjp has requested approveacls Message-ID: <20090730003159.A9D7D10F8BE@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zbar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:02 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchbugzilla Message-ID: <20090730003202.F1C7A10F8C0@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zbar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:02 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchcommits Message-ID: <20090730003202.524D810F89A@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zbar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:03 +0000 Subject: [pkgdb] zbar: itamarjp has requested commit Message-ID: <20090730003203.8B67B10F8C3@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zbar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:05 +0000 Subject: [pkgdb] zbar: itamarjp has requested approveacls Message-ID: <20090730003205.EF57310F8C6@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zbar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:08 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchbugzilla Message-ID: <20090730003208.D1C9210F8C9@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on zbar (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:10 +0000 Subject: [pkgdb] zbar: itamarjp has requested commit Message-ID: <20090730003210.236BB10F8CF@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on zbar (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:09 +0000 Subject: [pkgdb] zbar: itamarjp has requested watchcommits Message-ID: <20090730003209.5B08310F8CC@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on zbar (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 00:32:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 00:32:11 +0000 Subject: [pkgdb] zbar: itamarjp has requested approveacls Message-ID: <20090730003211.17F8110F8D2@bastion2.fedora.phx.redhat.com> itamarjp has requested the approveacls acl on zbar (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From rdieter at fedoraproject.org Thu Jul 30 00:35:14 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 00:35:14 +0000 (UTC) Subject: rpms/kdewebdev/devel kdewebdev.spec,1.53,1.54 Message-ID: <20090730003514.1E9C611C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdewebdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1628 Modified Files: kdewebdev.spec Log Message: * Wed Jul 29 2009 Rex Dieter - 6:3.5.10-4 - FTBFS kdewebdev-3.5.10-2.fc11 (#511439) Index: kdewebdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdewebdev/devel/kdewebdev.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- kdewebdev.spec 25 Jul 2009 04:30:31 -0000 1.53 +++ kdewebdev.spec 30 Jul 2009 00:35:13 -0000 1.54 @@ -10,7 +10,7 @@ Name: kdewebdev Summary: Web development applications Epoch: 6 Version: 3.5.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Url: http://kdewebdev.org/ @@ -103,6 +103,8 @@ Requires: kdelibs3 >= %{version} install -m644 -p %{SOURCE5} kxsldbg/ %if %{make_cvs} +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh make -f admin/Makefile.common cvs %endif @@ -215,6 +217,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 29 2009 Rex Dieter - 6:3.5.10-4 +- FTBFS kdewebdev-3.5.10-2.fc11 (#511439) + * Fri Jul 24 2009 Fedora Release Engineering - 6:3.5.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rdieter at fedoraproject.org Thu Jul 30 00:44:57 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 00:44:57 +0000 (UTC) Subject: rpms/maxima/F-11 maxima.spec,1.128,1.129 Message-ID: <20090730004457.BD22E11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4062 Modified Files: maxima.spec Log Message: fix %files Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-11/maxima.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- maxima.spec 29 Jul 2009 20:30:44 -0000 1.128 +++ maxima.spec 30 Jul 2009 00:44:57 -0000 1.129 @@ -362,7 +362,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ %dir %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/*.h* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/html/ +%{_datadir}/maxima/%{maxima_ver}/doc/html/figures/ +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/html/*.h* +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/share/ %doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ %doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ From mclasen at fedoraproject.org Thu Jul 30 00:47:44 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 00:47:44 +0000 (UTC) Subject: rpms/gconf-editor/devel gconf-editor.spec,1.70,1.71 Message-ID: <20090730004744.A8C3F11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gconf-editor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5669 Modified Files: gconf-editor.spec Log Message: Rebuild Index: gconf-editor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gconf-editor/devel/gconf-editor.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- gconf-editor.spec 24 Jul 2009 23:37:49 -0000 1.70 +++ gconf-editor.spec 30 Jul 2009 00:47:44 -0000 1.71 @@ -8,7 +8,7 @@ Summary: Editor/admin tool for GConf Name: gconf-editor Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gconf-editor/2.26/%{name}-%{version}.tar.bz2 License: GPLv2+ and GFDL @@ -112,6 +112,9 @@ fi %dir %{_datadir}/omf/gconf-editor %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.26.0-3 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 00:48:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 00:48:33 +0000 (UTC) Subject: rpms/sigul/F-11 0001-Handle-signing-of-source-rpms.patch, NONE, 1.1 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, NONE, 1.1 import.log, NONE, 1.1 sigul.logrotate, NONE, 1.1 sigul.spec, NONE, 1.1 sigul_bridge.init, NONE, 1.1 sigul_server.init, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730004833.8E71111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigul/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5784/F-11 Modified Files: .cvsignore sources Added Files: 0001-Handle-signing-of-source-rpms.patch 0002-Temporary-workaround-for-accidentially-re-downloadin.patch import.log sigul.logrotate sigul.spec sigul_bridge.init sigul_server.init Log Message: build for f11 0001-Handle-signing-of-source-rpms.patch: server.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) --- NEW FILE 0001-Handle-signing-of-source-rpms.patch --- >From 9502326ec4d0f7442fbb3dfc630b30bc3e711a04 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:10:17 -0700 Subject: [PATCH] Handle signing of source rpms. Source RPM 'arch' in the header can either be noarch, or the arch of the host preparing the srpm. Therefor we need to detect a srpm and react accordingly. --- src/server.py | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/server.py b/src/server.py index 4e554bd..9d2bce3 100644 --- a/src/server.py +++ b/src/server.py @@ -986,7 +986,13 @@ def cmd_sign_rpm(db, conn): field_value = conn.safe_outer_field(field) if field_value is None: continue - rpm_value = hdr[tag] + # rpm arch for srpms is noarch or the arch prepared on. Therefor + # check to see if sourcepage is 1 + if field_value == 'src': + if hdr['sourcepackage'] == 1: + rpm_value = 'src' + else: + rpm_value = hdr[tag] if rpm_value is None: rpm_value = '' if field_value != rpm_value: -- 1.6.2.5 0002-Temporary-workaround-for-accidentially-re-downloadin.patch: bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch --- >From 32d4a140dc9a8d18604386ba08de911bef34c8f0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 28 Jul 2009 20:06:30 -0700 Subject: [PATCH 2/2] Temporary workaround for accidentially re-downloading stale rpms. This is causing us to download the same rpm over and over which really doesn't work well. This is a temporary work around given to me by Mitr. --- src/bridge.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/bridge.py b/src/bridge.py index 15f6422..32343ed 100644 --- a/src/bridge.py +++ b/src/bridge.py @@ -331,7 +331,7 @@ class SignRpmRequestType(RequestType): # attempts to initialize nss with our certificate database. import koji - if self.__koji_rpm_info is None: + if True: try: d = {'name': self.__request_fields['rpm-name'], 'version': self.__request_fields['rpm-version'], -- 1.6.2.5 --- NEW FILE import.log --- sigul-0_96-6_fc12:F-11:sigul-0.96-6.fc12.src.rpm:1248914807 --- NEW FILE sigul.logrotate --- /var/log/sigul*.log { missingok notifempty } --- NEW FILE sigul.spec --- Summary: A signing server and related software client Name: sigul Version: 0.96 Release: 6%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ # Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init Source3: sigul.logrotate Requires: koji, logrotate, m2crypto, pexpect, pygpgme, python, python-fedora, Requires: python-nss >= 0.6 Requires: python-sqlalchemy, python-sqlite2 Requires: python-urlgrabber # For sigul_setup_client Requires: coreutils nss-tools Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig, initscripts Requires(postun): initscripts BuildRequires: python # To detect the path correctly in configure BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Patch0: 0001-Handle-signing-of-source-rpms.patch Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any access to the necessary private key, a client for the server, and a "bridge" that connects the two. %prep %setup -q %patch0 -p1 %patch1 -p1 %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install mkdir -p $RPM_BUILD_ROOT%{_initrddir} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d install -p %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/sigul_bridge install -p %{SOURCE2} $RPM_BUILD_ROOT%{_initrddir}/sigul_server install -m 0644 -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/sigul %clean rm -rf $RPM_BUILD_ROOT %pre getent group sigul >/dev/null || groupadd -r sigul getent passwd sigul >/dev/null || \ useradd -r -g sigul -d %{_localstatedir}/lib/sigul -s /sbin/nologin \ -c "Signing server or bridge" sigul exit 0 %post /sbin/chkconfig --add sigul_bridge /sbin/chkconfig --add sigul_server %preun if [ "$1" = 0 ]; then /sbin/service sigul_bridge stop >/dev/null 2>&1 /sbin/service sigul_server stop >/dev/null 2>&1 /sbin/chkconfig --del sigul_bridge /sbin/chkconfig --del sigul_server fi %postun if [ "$1" -ge 1 ]; then /sbin/service sigul_bridge condrestart >/dev/null 2>&1 || : /sbin/service sigul_server condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/server.conf %{_initrddir}/sigul* %config(noreplace) %{_sysconfdir}/logrotate.d/sigul %{_bindir}/sigul* %{_sbindir}/sigul* %{_mandir}/man1/sigul*.1* %{_mandir}/man8/sigul*.8* %{_datadir}/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 * Tue Jul 28 2009 Jesse Keating - 0.96-5 - Add a dist tag * Tue Jul 28 2009 Jesse Keating - 0.96-4 - Add another patch to temporarily work around a stale koji issue. - Bump python-nss reqs up now that we have a newer one in EPEL * Mon Jul 27 2009 Jesse Keating - 0.96-3 - Setup the Requires right for EL5 * Mon Jul 27 2009 Jesse Keating - 0.96-2 - Fix various bugs while testing (release by Mitr) - Patch from jkeating for srpm signing. * Sat Jul 18 2009 Miloslav Trma? - 0.95-0.mitr.1 - Update to 0.95. - Add missing Requires: m2crypto. * Wed Jul 1 2009 Miloslav Trma? - 0.94-0.mitr.1 - Update to 0.94. * Fri Apr 10 2009 Miloslav Trma? - 0.93-0.mitr.1 - Update to 0.93. * Wed Jan 28 2009 Miloslav Trma? - 0.92-0.mitr.1 - Update to 0.92. * Mon Jan 12 2009 Miloslav Trma? - 0.91-0.mitr.1 - Update to 0.91. * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.2 - Requires: koji, python-sqlite2 * Sun Jan 11 2009 Miloslav Trma? - 0.90-0.mitr.1 - s/rpmsigner/sigul/g * Sun Nov 30 2008 Miloslav Trma? - 0.90-0.mitr.1 - Initial package. --- NEW FILE sigul_bridge.init --- #! /bin/sh # chkconfig: - 99 01 # description: A network server that connects a signing server and its clients . /etc/rc.d/init.d/functions prog=sigul_bridge lockfile=/var/lock/subsys/sigul_bridge start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" --- NEW FILE sigul_server.init --- #! /bin/sh # chkconfig: - 99 01 # description: A server that allows users to sign data without access to the \ # necessary key . /etc/rc.d/init.d/functions prog=sigul_server lockfile=/var/lock/subsys/sigul_server start() { echo -n $"Starting $prog: " daemon "$prog" -d -v RETVAL=$? echo [ "$RETVAL" -eq 0 ] && touch "$lockfile" return "$RETVAL" } stop() { echo -n $"Shutting down $prog: " killproc "$prog" RETVAL=$? echo rm -f "$lockfile" return "$RETVAL" } restart() { stop start } rh_status_q() { status "$prog" >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 start ;; stop) rh_status_q || exit 0 stop ;; reload) rh_status_q || exit 7 restart ;; restart|force-reload) restart ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; status) status "$prog" RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" RETVAL=2 esac exit "$RETVAL" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 03:11:45 -0000 1.1 +++ .cvsignore 30 Jul 2009 00:48:33 -0000 1.2 @@ -0,0 +1 @@ +sigul-0.96.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 03:11:45 -0000 1.1 +++ sources 30 Jul 2009 00:48:33 -0000 1.2 @@ -0,0 +1 @@ +faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 From mclasen at fedoraproject.org Thu Jul 30 00:53:35 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 00:53:35 +0000 (UTC) Subject: rpms/libbonobo/devel libbonobo.spec,1.89,1.90 Message-ID: <20090730005335.985D611C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libbonobo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7082 Modified Files: libbonobo.spec Log Message: Rebuild Index: libbonobo.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbonobo/devel/libbonobo.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- libbonobo.spec 25 Jul 2009 05:22:22 -0000 1.89 +++ libbonobo.spec 30 Jul 2009 00:53:35 -0000 1.90 @@ -6,7 +6,7 @@ Summary: Bonobo component system Name: libbonobo Version: 2.24.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://ftp.gnome.org Source0: http://download.gnome.org/sources/libbonobo/2.24/%{name}-%{version}.tar.bz2 License: GPLv2+ and LGPLv2+ @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/bonobo-activation %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.24.1-4 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From smilner at fedoraproject.org Thu Jul 30 00:54:20 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 00:54:20 +0000 (UTC) Subject: rpms/Django/EL-5 Django.spec,1.10,1.11 Message-ID: <20090730005420.999E511C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7281 Modified Files: Django.spec Log Message: Older builds must ghost django-admin.py[c,o] Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/Django.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- Django.spec 29 Jul 2009 23:19:24 -0000 1.10 +++ Django.spec 30 Jul 2009 00:54:20 -0000 1.11 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 2%{?dist} +Release: 4%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -83,15 +83,28 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py %{python_sitelib}/django + %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info %endif +%if %{?fedora} <= 10 +%ghost %{_bindir}/django-admin.pyc +%ghost %{_bindir}/django-admin.pyo +%endif + + %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 +- Older builds must ghost django-admin.py[c,o] + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 +- Bump for tag issue. + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 - Fix changelog. From rdieter at fedoraproject.org Thu Jul 30 01:11:19 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 01:11:19 +0000 (UTC) Subject: rpms/maxima/F-10 maxima.spec,1.120,1.121 Message-ID: <20090730011119.B17CC11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10871 Modified Files: maxima.spec Log Message: fix %files Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/F-10/maxima.spec,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- maxima.spec 30 Jul 2009 00:16:08 -0000 1.120 +++ maxima.spec 30 Jul 2009 01:11:19 -0000 1.121 @@ -362,7 +362,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ %dir %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/*.h* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/html/ +%{_datadir}/maxima/%{maxima_ver}/doc/html/figures/ +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/html/*.h* +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/share/ %doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ %doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ From jkeating at fedoraproject.org Thu Jul 30 01:17:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:17:41 +0000 (UTC) Subject: rpms/apollon/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE apollon-1.0.1-dtfix.patch, 1.1, NONE apollon-1.0.1-firstrun.patch, 1.1, NONE apollon.spec, 1.15, NONE sources, 1.2, NONE Message-ID: <20090730011741.503F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apollon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13028 Added Files: dead.package Removed Files: Makefile apollon-1.0.1-dtfix.patch apollon-1.0.1-firstrun.patch apollon.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan cleaned up --- Makefile DELETED --- --- apollon-1.0.1-dtfix.patch DELETED --- --- apollon-1.0.1-firstrun.patch DELETED --- --- apollon.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:18:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:18:49 +0000 (UTC) Subject: rpms/biniax/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE biniax-1.2-gfx.patch, 1.1, NONE biniax-1.2-optflags.patch, 1.1, NONE biniax-1.2-save.patch, 1.1, NONE biniax-1.2-snd.patch, 1.1, NONE biniax.desktop, 1.1, NONE biniax.png, 1.1, NONE biniax.spec, 1.3, NONE import.log, 1.1, NONE sources, 1.2, NONE Message-ID: <20090730011849.D059011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/biniax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13356 Added Files: dead.package Removed Files: Makefile biniax-1.2-gfx.patch biniax-1.2-optflags.patch biniax-1.2-save.patch biniax-1.2-snd.patch biniax.desktop biniax.png biniax.spec import.log sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- biniax-1.2-gfx.patch DELETED --- --- biniax-1.2-optflags.patch DELETED --- --- biniax-1.2-save.patch DELETED --- --- biniax-1.2-snd.patch DELETED --- --- biniax.desktop DELETED --- --- biniax.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:19:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:19:14 +0000 (UTC) Subject: rpms/bytelist/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE bytelist.spec, 1.8, NONE sources, 1.4, NONE Message-ID: <20090730011914.E381411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bytelist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13510 Added Files: dead.package Removed Files: Makefile bytelist.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- bytelist.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:20:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:20:20 +0000 (UTC) Subject: rpms/constantine/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE constantine.spec, 1.4, NONE import.log, 1.1, NONE sources, 1.2, NONE Message-ID: <20090730012020.C01FB11C04D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/constantine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13882 Added Files: dead.package Removed Files: Makefile constantine.spec import.log sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- constantine.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:20:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:20:44 +0000 (UTC) Subject: rpms/drapes/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE drapes.spec, 1.4, NONE sources, 1.2, NONE Message-ID: <20090730012044.2CB4811C04D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drapes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14046 Added Files: dead.package Removed Files: Makefile drapes.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- drapes.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:21:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:21:24 +0000 (UTC) Subject: rpms/elsa/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE elsa.spec, 1.5, NONE sources, 1.2, NONE Message-ID: <20090730012124.C502011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14306 Added Files: dead.package Removed Files: Makefile elsa.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- elsa.spec DELETED --- --- sources DELETED --- From whot at fedoraproject.org Thu Jul 30 01:22:43 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Thu, 30 Jul 2009 01:22:43 +0000 (UTC) Subject: rpms/xorg-x11-drv-evdev/F-11 .cvsignore, 1.32, 1.33 sources, 1.32, 1.33 xorg-x11-drv-evdev.spec, 1.51, 1.52 Message-ID: <20090730012244.001CA11C00CE@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-evdev/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14670 Modified Files: .cvsignore sources xorg-x11-drv-evdev.spec Log Message: * Thu Jul 30 2009 Peter Hutterer 2.2.3-1 - evdev 2.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/F-11/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 30 Apr 2009 06:52:31 -0000 1.32 +++ .cvsignore 30 Jul 2009 01:22:43 -0000 1.33 @@ -1 +1 @@ -xf86-input-evdev-2.2.2.tar.bz2 +xf86-input-evdev-2.2.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/F-11/sources,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- sources 30 Apr 2009 06:52:31 -0000 1.32 +++ sources 30 Jul 2009 01:22:43 -0000 1.33 @@ -1 +1 @@ -23341f098e7fe8ec13ef06ef784ac51a xf86-input-evdev-2.2.2.tar.bz2 +dbfe9aa75a476165af8b467a7665742b xf86-input-evdev-2.2.3.tar.bz2 Index: xorg-x11-drv-evdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/F-11/xorg-x11-drv-evdev.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- xorg-x11-drv-evdev.spec 30 Apr 2009 06:52:31 -0000 1.51 +++ xorg-x11-drv-evdev.spec 30 Jul 2009 01:22:43 -0000 1.52 @@ -6,7 +6,7 @@ Summary: Xorg X11 evdev input driver Name: xorg-x11-drv-evdev -Version: 2.2.2 +Version: 2.2.3 Release: 1%{?dist} URL: http://www.x.org License: MIT @@ -72,6 +72,9 @@ X.Org X11 evdev input driver development %changelog +* Thu Jul 30 2009 Peter Hutterer 2.2.3-1 +- evdev 2.2.3 + * Thu Apr 30 2009 Peter Hutterer 2.2.2-1 - evdev 2.2.2 From jkeating at fedoraproject.org Thu Jul 30 01:23:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:23:10 +0000 (UTC) Subject: rpms/fmit/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE sources, 1.1, NONE Message-ID: <20090730012310.03F1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fmit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14826 Added Files: dead.package Removed Files: Makefile sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:23:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:23:41 +0000 (UTC) Subject: rpms/fontypython/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE fontypython.spec, 1.8, NONE sources, 1.3, NONE Message-ID: <20090730012341.5E6B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontypython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15007 Added Files: dead.package Removed Files: Makefile fontypython.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- fontypython.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:23:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:23:59 +0000 (UTC) Subject: rpms/galago-daemon/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE galago-daemon.spec, 1.11, NONE sources, 1.3, NONE Message-ID: <20090730012359.CE6D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galago-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15194 Added Files: dead.package Removed Files: Makefile galago-daemon.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- galago-daemon.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:24:18 +0000 (UTC) Subject: rpms/galago-filesystem/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE galago-filesystem.spec, 1.3, NONE sources, 1.1, NONE Message-ID: <20090730012418.BE60111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galago-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15370 Added Files: dead.package Removed Files: Makefile galago-filesystem.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- galago-filesystem.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:25:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:25:54 +0000 (UTC) Subject: rpms/garmin-sync/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE garmin-sync-outdir.patch, 1.1, NONE garmin-sync-path.patch, 1.1, NONE garmin-sync-unitid.patch, 1.1, NONE garmin-sync.spec, 1.4, NONE import.log, 1.1, NONE sources, 1.2, NONE Message-ID: <20090730012554.37C8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/garmin-sync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15814 Added Files: dead.package Removed Files: Makefile garmin-sync-outdir.patch garmin-sync-path.patch garmin-sync-unitid.patch garmin-sync.spec import.log sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- garmin-sync-outdir.patch DELETED --- --- garmin-sync-path.patch DELETED --- --- garmin-sync-unitid.patch DELETED --- --- garmin-sync.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:26:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:26:24 +0000 (UTC) Subject: rpms/gdhcpd/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE consolehelper_fix.patch, 1.1, NONE gdhcpd.desktop, 1.1, NONE gdhcpd.spec, 1.7, NONE sources, 1.2, NONE Message-ID: <20090730012624.241DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdhcpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15984 Added Files: dead.package Removed Files: Makefile consolehelper_fix.patch gdhcpd.desktop gdhcpd.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- consolehelper_fix.patch DELETED --- --- gdhcpd.desktop DELETED --- --- gdhcpd.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:26:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:26:51 +0000 (UTC) Subject: rpms/gfa/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gfa.desktop, 1.2, NONE gfa.spec, 1.7, NONE sources, 1.2, NONE Message-ID: <20090730012651.222D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16134 Added Files: dead.package Removed Files: Makefile gfa.desktop gfa.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gfa.desktop DELETED --- --- gfa.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:27:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:27:21 +0000 (UTC) Subject: rpms/gift/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gift-0.11.8.1-fhs.patch, 1.1, NONE gift-0.11.8.1-gcc4.patch, 1.1, NONE gift.spec, 1.15, NONE giftd.sh, 1.2, NONE sources, 1.2, NONE Message-ID: <20090730012721.D95A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16318 Added Files: dead.package Removed Files: Makefile gift-0.11.8.1-fhs.patch gift-0.11.8.1-gcc4.patch gift.spec giftd.sh sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gift-0.11.8.1-fhs.patch DELETED --- --- gift-0.11.8.1-gcc4.patch DELETED --- --- gift.spec DELETED --- --- giftd.sh DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:27:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:27:42 +0000 (UTC) Subject: rpms/gift-gnutella/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gift-gnutella.spec, 1.7, NONE sources, 1.2, NONE Message-ID: <20090730012742.D7D8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift-gnutella/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16438 Added Files: dead.package Removed Files: Makefile gift-gnutella.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gift-gnutella.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:27:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:27:58 +0000 (UTC) Subject: rpms/gift-openft/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gift-openft-0.2.1.6-fhs.patch, 1.1, NONE gift-openft-0.2.1.6-open.patch, 1.2, NONE gift-openft.spec, 1.13, NONE sources, 1.2, NONE Message-ID: <20090730012758.B427B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift-openft/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16543 Added Files: dead.package Removed Files: Makefile gift-openft-0.2.1.6-fhs.patch gift-openft-0.2.1.6-open.patch gift-openft.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gift-openft-0.2.1.6-fhs.patch DELETED --- --- gift-openft-0.2.1.6-open.patch DELETED --- --- gift-openft.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:28:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:28:16 +0000 (UTC) Subject: rpms/glipper/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE glipper.spec, 1.15, NONE sources, 1.5, NONE Message-ID: <20090730012816.BB4DB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glipper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16656 Added Files: dead.package Removed Files: Makefile glipper.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- glipper.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:28:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:28:59 +0000 (UTC) Subject: rpms/gnome-audio/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE gnome-audio.spec, 1.22, NONE sources, 1.8, NONE Message-ID: <20090730012859.B0DF311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-audio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16929 Added Files: dead.package Removed Files: Makefile gnome-audio.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gnome-audio.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:29:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:29:14 +0000 (UTC) Subject: rpms/gnome-compiz-manager/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gnome-compiz-manager.spec, 1.10, NONE sources, 1.3, NONE Message-ID: <20090730012914.F27AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-compiz-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17035 Added Files: dead.package Removed Files: Makefile gnome-compiz-manager.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gnome-compiz-manager.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:29:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:29:34 +0000 (UTC) Subject: rpms/gnome-vfs2-obexftp/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gnome-vfs-obexftp-find-obex-directly.patch, 1.4, NONE gnome-vfs2-obexftp.spec, 1.13, NONE sources, 1.4, NONE Message-ID: <20090730012934.8557811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-vfs2-obexftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17157 Added Files: dead.package Removed Files: Makefile gnome-vfs-obexftp-find-obex-directly.patch gnome-vfs2-obexftp.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gnome-vfs-obexftp-find-obex-directly.patch DELETED --- --- gnome-vfs2-obexftp.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:30:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:30:00 +0000 (UTC) Subject: rpms/goffice04/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE goffice04.spec, 1.11, NONE sources, 1.4, NONE Message-ID: <20090730013000.AF13811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/goffice04/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17311 Added Files: dead.package Removed Files: Makefile goffice04.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- goffice04.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:30:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:30:18 +0000 (UTC) Subject: rpms/gstm/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE gstm-1.2-autoconf.patch, 1.1, NONE gstm.spec, 1.7, NONE sources, 1.2, NONE Message-ID: <20090730013018.BF98D11C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17444 Added Files: dead.package Removed Files: Makefile gstm-1.2-autoconf.patch gstm.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- gstm-1.2-autoconf.patch DELETED --- --- gstm.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:30:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:30:45 +0000 (UTC) Subject: rpms/jcodings/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE jcodings-1.0-buildlevel-1.5.diff, 1.1, NONE jcodings.spec, 1.4, NONE sources, 1.3, NONE Message-ID: <20090730013045.EAA8911C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jcodings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17591 Added Files: dead.package Removed Files: Makefile import.log jcodings-1.0-buildlevel-1.5.diff jcodings.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- import.log DELETED --- --- jcodings-1.0-buildlevel-1.5.diff DELETED --- --- jcodings.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:31:14 +0000 (UTC) Subject: rpms/joni/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE joni-1.1.1-include-all-build_lib.diff, 1.1, NONE joni-include-objectweb-asm.patch, 1.1, NONE joni-set-java-5_0-target-and-source.patch, 1.1, NONE joni.spec, 1.13, NONE sources, 1.7, NONE Message-ID: <20090730013114.2413511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/joni/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17784 Added Files: dead.package Removed Files: Makefile joni-1.1.1-include-all-build_lib.diff joni-include-objectweb-asm.patch joni-set-java-5_0-target-and-source.patch joni.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- joni-1.1.1-include-all-build_lib.diff DELETED --- --- joni-include-objectweb-asm.patch DELETED --- --- joni-set-java-5_0-target-and-source.patch DELETED --- --- joni.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:31:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:31:34 +0000 (UTC) Subject: rpms/jrexx/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE jrexx-build.xml, 1.1, NONE jrexx.spec, 1.4, NONE sources, 1.2, NONE Message-ID: <20090730013134.EDC1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jrexx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17932 Added Files: dead.package Removed Files: Makefile jrexx-build.xml jrexx.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- jrexx-build.xml DELETED --- --- jrexx.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:33:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:33:06 +0000 (UTC) Subject: rpms/jruby/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE jruby-add-classpath-for-tests.patch, 1.1, NONE jruby-dont-include-dependencies-in-jar.patch, 1.5, NONE jruby-fix-jruby-start-script.patch, 1.4, NONE jruby-remove-retroweaver-task.patch, 1.1, NONE jruby.spec, 1.17, NONE sources, 1.5, NONE Message-ID: <20090730013306.DBD1A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18272 Added Files: dead.package Removed Files: Makefile jruby-add-classpath-for-tests.patch jruby-dont-include-dependencies-in-jar.patch jruby-fix-jruby-start-script.patch jruby-remove-retroweaver-task.patch jruby.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- jruby-add-classpath-for-tests.patch DELETED --- --- jruby-dont-include-dependencies-in-jar.patch DELETED --- --- jruby-fix-jruby-start-script.patch DELETED --- --- jruby-remove-retroweaver-task.patch DELETED --- --- jruby.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:33:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:33:40 +0000 (UTC) Subject: rpms/jvyamlb/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE jvyamlb.spec, 1.7, NONE sources, 1.4, NONE Message-ID: <20090730013340.BB0AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jvyamlb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18454 Added Files: dead.package Removed Files: Makefile jvyamlb.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- jvyamlb.spec DELETED --- --- sources DELETED --- From bmarzins at fedoraproject.org Thu Jul 30 01:34:50 2009 From: bmarzins at fedoraproject.org (Benjamin Marzinski) Date: Thu, 30 Jul 2009 01:34:50 +0000 (UTC) Subject: rpms/device-mapper-multipath/devel device-mapper-multipath.spec, 1.59, 1.60 Message-ID: <20090730013450.9F7FC11C00CE@cvs1.fedora.phx.redhat.com> Author: bmarzins Update of /cvs/pkgs/rpms/device-mapper-multipath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18205/device-mapper-multipath/devel Modified Files: device-mapper-multipath.spec Log Message: fixed the spec file, so that multipath will not lose its binding if it is upgraded from a package where the bindings file was stored in /var/lib/multipath/bindings Index: device-mapper-multipath.spec =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/device-mapper-multipath.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- device-mapper-multipath.spec 29 Jul 2009 22:54:06 -0000 1.59 +++ device-mapper-multipath.spec 30 Jul 2009 01:34:50 -0000 1.60 @@ -98,6 +98,12 @@ rm -rf $RPM_BUILD_ROOT %post /sbin/ldconfig /sbin/chkconfig --add multipathd +if [ "$1" -gt "1" -a ! -e /etc/multipath/bindings -a \ + -f /var/lib/multipath/bindings ]; then + mv /var/lib/multipath/bindings /etc/multipath/bindings + ln -s /etc/multipath/bindings /var/lib/multipath/bindings +fi + %preun if [ "$1" = 0 ]; then From jkeating at fedoraproject.org Thu Jul 30 01:35:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:35:23 +0000 (UTC) Subject: rpms/kadu-theme/devel dead.package, NONE, 1.1 COPYING.GPL, 1.1, NONE COPYING.LGPL, 1.1, NONE Makefile, 1.1, NONE kadu-theme.spec, 1.4, NONE sources, 1.2, NONE Message-ID: <20090730013523.ECCEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kadu-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18891 Added Files: dead.package Removed Files: COPYING.GPL COPYING.LGPL Makefile kadu-theme.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- COPYING.GPL DELETED --- --- COPYING.LGPL DELETED --- --- Makefile DELETED --- --- kadu-theme.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:35:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:35:53 +0000 (UTC) Subject: rpms/klear/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE klear-namespaces.patch, 1.1, NONE klear-scons-chmod.patch, 1.1, NONE klear.spec, 1.6, NONE sources, 1.3, NONE Message-ID: <20090730013553.0C7CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19059 Added Files: dead.package Removed Files: Makefile klear-namespaces.patch klear-scons-chmod.patch klear.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- klear-namespaces.patch DELETED --- --- klear-scons-chmod.patch DELETED --- --- klear.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:36:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:36:16 +0000 (UTC) Subject: rpms/ldapvi/devel dead.package, NONE, 1.1 GNUmakefile.in.patch, 1.1, NONE Makefile, 1.1, NONE ldapvi.spec, 1.9, NONE sources, 1.2, NONE Message-ID: <20090730013616.DAAD011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldapvi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19197 Added Files: dead.package Removed Files: GNUmakefile.in.patch Makefile ldapvi.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- GNUmakefile.in.patch DELETED --- --- Makefile DELETED --- --- ldapvi.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:37:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:37:09 +0000 (UTC) Subject: rpms/libchmxx/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE libchmxx-0.1-gcc43.patch, 1.1, NONE libchmxx-kchm-fixes.diff, 1.1, NONE libchmxx.spec, 1.9, NONE sources, 1.3, NONE Message-ID: <20090730013709.0196411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libchmxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19438 Added Files: dead.package Removed Files: Makefile libchmxx-0.1-gcc43.patch libchmxx-kchm-fixes.diff libchmxx.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- libchmxx-0.1-gcc43.patch DELETED --- --- libchmxx-kchm-fixes.diff DELETED --- --- libchmxx.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:37:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:37:27 +0000 (UTC) Subject: rpms/metamonitor/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE metamonitor-0.4.5-gcc43.patch, 1.1, NONE metamonitor-symlink-relative.patch, 1.1, NONE metamonitor.spec, 1.8, NONE sources, 1.2, NONE Message-ID: <20090730013727.EC49F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metamonitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19563 Added Files: dead.package Removed Files: Makefile metamonitor-0.4.5-gcc43.patch metamonitor-symlink-relative.patch metamonitor.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- metamonitor-0.4.5-gcc43.patch DELETED --- --- metamonitor-symlink-relative.patch DELETED --- --- metamonitor.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:37:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:37:43 +0000 (UTC) Subject: rpms/musicbox/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE musicbox.spec, 1.7, NONE sources, 1.2, NONE Message-ID: <20090730013743.D4A4911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/musicbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19670 Added Files: dead.package Removed Files: Makefile musicbox.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- musicbox.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:38:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:38:04 +0000 (UTC) Subject: rpms/otl/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE otl.spec, 1.3, NONE sources, 1.2, NONE Message-ID: <20090730013804.BE73711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/otl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19805 Added Files: dead.package Removed Files: Makefile import.log otl.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- import.log DELETED --- --- otl.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:38:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:38:24 +0000 (UTC) Subject: rpms/pam_keyring/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE pam_keyring.spec, 1.9, NONE sources, 1.4, NONE Message-ID: <20090730013824.8BDDA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19953 Added Files: dead.package Removed Files: Makefile pam_keyring.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- pam_keyring.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:38:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:38:45 +0000 (UTC) Subject: rpms/pcmanx-gtk2/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE pcmanx-gtk2-0.3.8-Fedora-idldir.patch, 1.1, NONE pcmanx-gtk2-0.3.8-Fedora-xpidl.patch, 1.1, NONE pcmanx-gtk2-0.3.8-includes.patch, 1.1, NONE pcmanx-gtk2-0.3.8-xulrunner.patch, 1.2, NONE pcmanx-gtk2-444svn.patch, 1.1, NONE pcmanx-gtk2.spec, 1.14, NONE pcmanx.desktop, 1.1, NONE sources, 1.4, NONE Message-ID: <20090730013845.ED98E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcmanx-gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20123 Added Files: dead.package Removed Files: Makefile pcmanx-gtk2-0.3.8-Fedora-idldir.patch pcmanx-gtk2-0.3.8-Fedora-xpidl.patch pcmanx-gtk2-0.3.8-includes.patch pcmanx-gtk2-0.3.8-xulrunner.patch pcmanx-gtk2-444svn.patch pcmanx-gtk2.spec pcmanx.desktop sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- pcmanx-gtk2-0.3.8-Fedora-idldir.patch DELETED --- --- pcmanx-gtk2-0.3.8-Fedora-xpidl.patch DELETED --- --- pcmanx-gtk2-0.3.8-includes.patch DELETED --- --- pcmanx-gtk2-0.3.8-xulrunner.patch DELETED --- --- pcmanx-gtk2-444svn.patch DELETED --- --- pcmanx-gtk2.spec DELETED --- --- pcmanx.desktop DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:39:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:39:05 +0000 (UTC) Subject: rpms/piccolo/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE piccolo-build_xml.patch, 1.1, NONE piccolo.spec, 1.6, NONE sources, 1.2, NONE Message-ID: <20090730013905.B13B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/piccolo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20260 Added Files: dead.package Removed Files: Makefile piccolo-build_xml.patch piccolo.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- piccolo-build_xml.patch DELETED --- --- piccolo.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:39:19 +0000 (UTC) Subject: rpms/pidgin-knotify/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE pidgin-knotify-make.patch, 1.1, NONE pidgin-knotify.spec, 1.4, NONE sources, 1.2, NONE Message-ID: <20090730013919.D690211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-knotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20374 Added Files: dead.package Removed Files: Makefile pidgin-knotify-make.patch pidgin-knotify.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- pidgin-knotify-make.patch DELETED --- --- pidgin-knotify.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:39:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:39:40 +0000 (UTC) Subject: rpms/puretls/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE puretls-build_xml.patch, 1.1, NONE puretls-demo-README, 1.1, NONE puretls.spec, 1.19, NONE sources, 1.3, NONE Message-ID: <20090730013940.A87D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/puretls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20519 Added Files: dead.package Removed Files: Makefile puretls-build_xml.patch puretls-demo-README puretls.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- puretls-build_xml.patch DELETED --- --- puretls-demo-README DELETED --- --- puretls.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:41:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:41:53 +0000 (UTC) Subject: rpms/quickfix/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE quickfix-cstring.patch, 1.2, NONE quickfix-pkgconfig-libdir.patch, 1.1, NONE quickfix.spec, 1.4, NONE sources, 1.2, NONE Message-ID: <20090730014153.13A9E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quickfix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21142 Added Files: dead.package Removed Files: Makefile import.log quickfix-cstring.patch quickfix-pkgconfig-libdir.patch quickfix.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- import.log DELETED --- --- quickfix-cstring.patch DELETED --- --- quickfix-pkgconfig-libdir.patch DELETED --- --- quickfix.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:42:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:42:11 +0000 (UTC) Subject: rpms/scim-input-pad/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE scim-input-pad-libexecdir.patch, 1.1, NONE scim-input-pad-rpath.patch, 1.1, NONE scim-input-pad.spec, 1.15, NONE sources, 1.4, NONE Message-ID: <20090730014211.99AE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-input-pad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21278 Added Files: dead.package Removed Files: Makefile scim-input-pad-libexecdir.patch scim-input-pad-rpath.patch scim-input-pad.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- scim-input-pad-libexecdir.patch DELETED --- --- scim-input-pad-rpath.patch DELETED --- --- scim-input-pad.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:42:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:42:29 +0000 (UTC) Subject: rpms/scim-skk/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE scim-skk-0.5.2-gcc43.patch, 1.1, NONE scim-skk-broken-iter.diff, 1.1, NONE scim-skk.spec, 1.21, NONE sources, 1.6, NONE Message-ID: <20090730014229.F2DA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-skk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21439 Added Files: dead.package Removed Files: Makefile scim-skk-0.5.2-gcc43.patch scim-skk-broken-iter.diff scim-skk.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- scim-skk-0.5.2-gcc43.patch DELETED --- --- scim-skk-broken-iter.diff DELETED --- --- scim-skk.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:42:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:42:46 +0000 (UTC) Subject: rpms/scim-tomoe/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE scim-tomoe-0.6.0-gcc43-cstring-440886.patch, 1.1, NONE scim-tomoe-libexecdir.patch, 1.1, NONE scim-tomoe-moduledir.patch, 1.1, NONE scim-tomoe.spec, 1.27, NONE sources, 1.6, NONE Message-ID: <20090730014246.CD8AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-tomoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21582 Added Files: dead.package Removed Files: Makefile scim-tomoe-0.6.0-gcc43-cstring-440886.patch scim-tomoe-libexecdir.patch scim-tomoe-moduledir.patch scim-tomoe.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- scim-tomoe-0.6.0-gcc43-cstring-440886.patch DELETED --- --- scim-tomoe-libexecdir.patch DELETED --- --- scim-tomoe-moduledir.patch DELETED --- --- scim-tomoe.spec DELETED --- --- sources DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:43:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:43:24 +0000 (UTC) Subject: rpms/themes-backgrounds-gnome/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE sources, 1.5, NONE themes-backgrounds-gnome.spec, 1.18, NONE themes-backgrounds-gnome.xml, 1.3, NONE themes-backgrounds-gnome.xml-0.4, 1.1, NONE Message-ID: <20090730014324.D174111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/themes-backgrounds-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21811 Added Files: dead.package Removed Files: Makefile sources themes-backgrounds-gnome.spec themes-backgrounds-gnome.xml themes-backgrounds-gnome.xml-0.4 Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- themes-backgrounds-gnome.spec DELETED --- --- themes-backgrounds-gnome.xml DELETED --- --- themes-backgrounds-gnome.xml-0.4 DELETED --- From jgarzik at fedoraproject.org Thu Jul 30 01:48:03 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 30 Jul 2009 01:48:03 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090730014803.6FA1111C00CE@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23751 Modified Files: cld.spec sources Log Message: update to latest upstream git Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cld.spec 24 Jul 2009 19:03:12 -0000 1.8 +++ cld.spec 30 Jul 2009 01:48:03 -0000 1.9 @@ -1,13 +1,13 @@ Name: cld Version: 0.2 -Release: 0.8.g487d5fb5%{?dist} +Release: 0.9.gdb750ce5%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 487d5fb50be8275a0e0cd36a882acdf1afe9a922 +# pulled from upstream git, commit db750ce53f6e50dae361e746d712a3785124f7a0 # to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init @@ -100,6 +100,9 @@ fi %{_includedir}/* %changelog +* Wed Jul 29 2009 Jeff Garzik - 0.2-0.9.gdb750ce5 +- update to commit db750ce53f6e50dae361e746d712a3785124f7a0 + * Fri Jul 24 2009 Fedora Release Engineering - 0.2-0.8.g487d5fb5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 23 Jul 2009 19:57:18 -0000 1.6 +++ sources 30 Jul 2009 01:48:03 -0000 1.7 @@ -1 +1 @@ -8b48f4205d71ad77e79c24cebb36a7e5 cld-0.2git.tar.gz +dfc078233d0eb9decda86f015fe039c4 cld-0.2git.tar.gz From jgarzik at fedoraproject.org Thu Jul 30 01:52:14 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 30 Jul 2009 01:52:14 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.spec,1.5,1.6 sources,1.3,1.4 Message-ID: <20090730015214.C360511C00CE@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24944 Modified Files: chunkd.spec sources Log Message: update to latest upstream. add ExcludeArch for endian bugs. Index: chunkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/chunkd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- chunkd.spec 24 Jul 2009 18:58:08 -0000 1.5 +++ chunkd.spec 30 Jul 2009 01:52:14 -0000 1.6 @@ -1,13 +1,13 @@ Name: chunkd Version: 0.4 -Release: 0.6.g5f69efd9%{?dist} +Release: 0.7.g6b1e9b66%{?dist} Summary: Data storage daemon for cloud computing Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 5f69efd93fb6dc0c2e9882cd3c22cc096eede486 +# pulled from upstream git, commit 6b1e9b6641df0353a81c7b1352f5f652c5a7f9d8 # to recreate tarball, check out commit, then run "make dist" Source0: chunkd-%{version}git.tar.gz Source2: chunkd.init @@ -18,6 +18,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: libevent-devel glib2-devel openssl-devel zlib-devel BuildRequires: libxml2-devel procps cld cld-devel +# ugly and embarrassing! pkg build fails on big endian +ExcludeArch: ppc ppc64 + %description Single-node data storage daemon for cloud computing. @@ -95,6 +98,9 @@ fi %{_includedir}/* %changelog +* Wed Jul 29 2009 Jeff Garzik - 0.4-0.7.g6b1e9b66 +- update source to commit 6b1e9b6641df0353a81c7b1352f5f652c5a7f9d8 + * Fri Jul 24 2009 Fedora Release Engineering - 0.4-0.6.g5f69efd9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jul 2009 18:02:25 -0000 1.3 +++ sources 30 Jul 2009 01:52:14 -0000 1.4 @@ -1 +1 @@ -29a137c9e4cb418a84814649b2b81098 chunkd-0.4git.tar.gz +4a86f99c3d429949bacb52850dd00d57 chunkd-0.4git.tar.gz From jkeating at fedoraproject.org Thu Jul 30 01:52:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:52:43 +0000 (UTC) Subject: rpms/thinkfinger/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE README.thinkfinger, 1.2, NONE sources, 1.3, NONE thinkfinger-0.3-acl.patch, 1.1, NONE thinkfinger-0.3-birdir.patch, 1.1, NONE thinkfinger-0.3-hal.patch, 1.3, NONE thinkfinger-0.3-has-device.patch, 1.1, NONE thinkfinger-0.3-policykit.patch, 1.1, NONE thinkfinger-refuse-remote-login-thoenig-01.patch, 1.1, NONE thinkfinger.spec, 1.12, NONE Message-ID: <20090730015243.E1CDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thinkfinger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25190 Added Files: dead.package Removed Files: Makefile README.thinkfinger sources thinkfinger-0.3-acl.patch thinkfinger-0.3-birdir.patch thinkfinger-0.3-hal.patch thinkfinger-0.3-has-device.patch thinkfinger-0.3-policykit.patch thinkfinger-refuse-remote-login-thoenig-01.patch thinkfinger.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- README.thinkfinger DELETED --- --- sources DELETED --- --- thinkfinger-0.3-acl.patch DELETED --- --- thinkfinger-0.3-birdir.patch DELETED --- --- thinkfinger-0.3-hal.patch DELETED --- --- thinkfinger-0.3-has-device.patch DELETED --- --- thinkfinger-0.3-policykit.patch DELETED --- --- thinkfinger-refuse-remote-login-thoenig-01.patch DELETED --- --- thinkfinger.spec DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:54:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:54:44 +0000 (UTC) Subject: rpms/w3lib/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE g2clib-msg.txt, 1.1, NONE import.log, 1.1, NONE sources, 1.2, NONE w3lib.spec, 1.4, NONE Message-ID: <20090730015444.5759D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25899 Added Files: dead.package Removed Files: Makefile g2clib-msg.txt import.log sources w3lib.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- g2clib-msg.txt DELETED --- --- import.log DELETED --- --- sources DELETED --- --- w3lib.spec DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:55:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:55:03 +0000 (UTC) Subject: rpms/wdm/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE sources, 1.2, NONE wdm-1.28-failsafe_tmp.patch, 1.1, NONE wdm-1.28-fedora.patch, 1.1, NONE wdm-1.28-reconf.patch, 1.1, NONE wdm-Xsession, 1.1, NONE wdm-update_wdm_wmlist, 1.1, NONE wdm.pam, 1.1, NONE wdm.spec, 1.7, NONE wdm_1.28-2.1.diff, 1.1, NONE Message-ID: <20090730015503.97B9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26059 Added Files: dead.package Removed Files: Makefile sources wdm-1.28-failsafe_tmp.patch wdm-1.28-fedora.patch wdm-1.28-reconf.patch wdm-Xsession wdm-update_wdm_wmlist wdm.pam wdm.spec wdm_1.28-2.1.diff Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- wdm-1.28-failsafe_tmp.patch DELETED --- --- wdm-1.28-fedora.patch DELETED --- --- wdm-1.28-reconf.patch DELETED --- --- wdm-Xsession DELETED --- --- wdm-update_wdm_wmlist DELETED --- --- wdm.pam DELETED --- --- wdm.spec DELETED --- --- wdm_1.28-2.1.diff DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:55:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:55:18 +0000 (UTC) Subject: rpms/wmix/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE sources, 1.2, NONE wmix.spec, 1.5, NONE Message-ID: <20090730015518.D4E2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26196 Added Files: dead.package Removed Files: Makefile sources wmix.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- wmix.spec DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:55:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:55:34 +0000 (UTC) Subject: rpms/wxdfast/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE sources, 1.2, NONE wxdfast-autotools.patch, 1.1, NONE wxdfast.spec, 1.5, NONE Message-ID: <20090730015534.B188211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxdfast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26350 Added Files: dead.package Removed Files: Makefile sources wxdfast-autotools.patch wxdfast.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- wxdfast-autotools.patch DELETED --- --- wxdfast.spec DELETED --- From jgarzik at fedoraproject.org Thu Jul 30 01:56:31 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 30 Jul 2009 01:56:31 +0000 (UTC) Subject: rpms/tabled/devel sources,1.4,1.5 tabled.spec,1.6,1.7 Message-ID: <20090730015631.27D6311C00CE@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26672 Modified Files: sources tabled.spec Log Message: update to latest upstream. update ExcludeArch for chunkd endian bugs. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 23 Jul 2009 19:27:03 -0000 1.4 +++ sources 30 Jul 2009 01:56:31 -0000 1.5 @@ -1 +1 @@ -8097f82f9becc6504c9dc1ed0fb58c70 tabled-0.3git.tar.gz +99321aef6a07b8bbfba5fb4a8c8adcb6 tabled-0.3git.tar.gz Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tabled.spec 27 Jul 2009 05:28:41 -0000 1.6 +++ tabled.spec 30 Jul 2009 01:56:31 -0000 1.7 @@ -1,13 +1,13 @@ Name: tabled Version: 0.3 -Release: 0.7.gebb1144c%{?dist} +Release: 0.8.g0b3ec75c%{?dist} Summary: Distributed key/value table service Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit ebb1144ceefd7a936acafc79c6e274095bd0bb06 +# pulled from upstream git, commit 0b3ec75c239e231ee2af8252466ec4fd9da2bd7c # to recreate tarball, check out commit, then run "make dist" Source0: tabled-%{version}git.tar.gz Source2: tabled.init @@ -20,8 +20,8 @@ BuildRequires: db4-devel libevent-devel BuildRequires: chunkd chunkd-devel cld cld-devel libcurl-devel BuildRequires: procps -# cld is broken on big-endian... embarrassing!!! -# FIXME: remove this when cld is fixed +# chunkd is broken on big-endian... embarrassing!!! +# FIXME: remove this when chunkd is fixed ExcludeArch: ppc ppc64 %description @@ -102,6 +102,9 @@ fi %{_includedir}/* %changelog +* Wed Jul 29 2009 Jeff Garzik - 0.3-0.8.g0b3ec75c +- update to git commit 0b3ec75c239e231ee2af8252466ec4fd9da2bd7c + * Sun Jul 26 2009 Fedora Release Engineering - 0.3-0.7.gebb1144c - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 01:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:58:04 +0000 (UTC) Subject: rpms/xml-commons-which/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE sources, 1.2, NONE xml-commons-which-Which_java.patch, 1.1, NONE xml-commons-which.spec, 1.6, NONE xml-commons.which.script, 1.1, NONE Message-ID: <20090730015804.3DDEB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-commons-which/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27213 Added Files: dead.package Removed Files: Makefile sources xml-commons-which-Which_java.patch xml-commons-which.spec xml-commons.which.script Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- xml-commons-which-Which_java.patch DELETED --- --- xml-commons-which.spec DELETED --- --- xml-commons.which.script DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:59:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:59:10 +0000 (UTC) Subject: rpms/xmms-cdread/devel dead.package, NONE, 1.1 Makefile, 1.2, NONE sources, 1.2, NONE xmms-cdread-shuffle.patch, 1.1, NONE xmms-cdread-x86_64.patch, 1.1, NONE xmms-cdread.spec, 1.18, NONE Message-ID: <20090730015910.5253E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-cdread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27547 Added Files: dead.package Removed Files: Makefile sources xmms-cdread-shuffle.patch xmms-cdread-x86_64.patch xmms-cdread.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- xmms-cdread-shuffle.patch DELETED --- --- xmms-cdread-x86_64.patch DELETED --- --- xmms-cdread.spec DELETED --- From jkeating at fedoraproject.org Thu Jul 30 01:59:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 01:59:29 +0000 (UTC) Subject: rpms/xyz-gallery/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE sources, 1.2, NONE xyz-gallery.spec, 1.3, NONE Message-ID: <20090730015929.279A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xyz-gallery/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27689 Added Files: dead.package Removed Files: Makefile sources xyz-gallery.spec Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- sources DELETED --- --- xyz-gallery.spec DELETED --- From itamarjp at fedoraproject.org Thu Jul 30 02:06:21 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Thu, 30 Jul 2009 02:06:21 +0000 (UTC) Subject: rpms/mydns/F-11 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 mydns.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730020621.6A70A11C00CE@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/mydns/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29376/F-11 Modified Files: .cvsignore import.log mydns.spec sources Log Message: - mydns-1.2.8.27 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 12 Feb 2009 12:12:38 -0000 1.2 +++ .cvsignore 30 Jul 2009 02:06:20 -0000 1.3 @@ -1 +1 @@ -mydns-1.2.8.25.tar.gz +mydns-1.2.8.27.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 12 Feb 2009 12:12:38 -0000 1.1 +++ import.log 30 Jul 2009 02:06:21 -0000 1.2 @@ -1 +1,2 @@ mydns-1_2_8_25-1_fc10:HEAD:mydns-1.2.8.25-1.fc10.src.rpm:1234440512 +mydns-1_2_8_27-2_fc12:F-11:mydns-1.2.8.27-2.fc12.src.rpm:1248919552 Index: mydns.spec =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-11/mydns.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mydns.spec 26 Feb 2009 03:34:49 -0000 1.2 +++ mydns.spec 30 Jul 2009 02:06:21 -0000 1.3 @@ -5,7 +5,7 @@ Summary: A Database based DNS server Name: mydns -Version: 1.2.8.25 +Version: 1.2.8.27 Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons @@ -246,6 +246,12 @@ exit 0 %{_sbindir}/mydns-pgsql %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.8.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon May 25 2009 Itamar Reis Peixoto - 1.2.8.27-1 +- New version 1.2.8.27 + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.8.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 12 Feb 2009 12:12:38 -0000 1.2 +++ sources 30 Jul 2009 02:06:21 -0000 1.3 @@ -1 +1 @@ -1450d4c882cab85f0e82b999aacf3e25 mydns-1.2.8.25.tar.gz +d5fb01ec404049c2d3bd319337a30190 mydns-1.2.8.27.tar.gz From jgarzik at fedoraproject.org Thu Jul 30 02:06:31 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 30 Jul 2009 02:06:31 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.9,1.10 Message-ID: <20090730020631.C904811C00CE@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29478 Modified Files: cld.spec Log Message: install new prog cldcli. Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cld.spec 30 Jul 2009 01:48:03 -0000 1.9 +++ cld.spec 30 Jul 2009 02:06:31 -0000 1.10 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.9.gdb750ce5%{?dist} +Release: 0.10.gdb750ce5%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -88,6 +88,7 @@ fi %doc AUTHORS COPYING LICENSE README NEWS doc/*.txt %{_sbindir}/cld %{_sbindir}/cldbadm +%{_bindir}/cldcli %{_libdir}/*.so.* %attr(0755,root,root) %{_initddir}/cld %config(noreplace) %{_sysconfdir}/sysconfig/cld @@ -100,6 +101,9 @@ fi %{_includedir}/* %changelog +* Wed Jul 29 2009 Jeff Garzik - 0.2-0.10.gdb750ce5 +- install cldcli + * Wed Jul 29 2009 Jeff Garzik - 0.2-0.9.gdb750ce5 - update to commit db750ce53f6e50dae361e746d712a3785124f7a0 From itamarjp at fedoraproject.org Thu Jul 30 02:07:18 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Thu, 30 Jul 2009 02:07:18 +0000 (UTC) Subject: rpms/mydns/F-10 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 mydns.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730020718.C1C8511C00CE@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/mydns/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29863/F-10 Modified Files: .cvsignore import.log mydns.spec sources Log Message: - mydns-1.2.8.27 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 12 Feb 2009 12:17:04 -0000 1.2 +++ .cvsignore 30 Jul 2009 02:07:18 -0000 1.3 @@ -1 +1 @@ -mydns-1.2.8.25.tar.gz +mydns-1.2.8.27.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 12 Feb 2009 12:17:04 -0000 1.1 +++ import.log 30 Jul 2009 02:07:18 -0000 1.2 @@ -1 +1,2 @@ mydns-1_2_8_25-1_fc10:F-10:mydns-1.2.8.25-1.fc10.src.rpm:1234440880 +mydns-1_2_8_27-2_fc12:F-10:mydns-1.2.8.27-2.fc12.src.rpm:1248919613 Index: mydns.spec =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-10/mydns.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mydns.spec 12 Feb 2009 12:17:04 -0000 1.1 +++ mydns.spec 30 Jul 2009 02:07:18 -0000 1.2 @@ -5,8 +5,8 @@ Summary: A Database based DNS server Name: mydns -Version: 1.2.8.25 -Release: 1%{?dist} +Version: 1.2.8.27 +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://mydns-ng.com/ @@ -246,6 +246,15 @@ exit 0 %{_sbindir}/mydns-pgsql %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.8.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon May 25 2009 Itamar Reis Peixoto - 1.2.8.27-1 +- New version 1.2.8.27 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.2.8.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Feb 09 2009 Itamar Reis Peixoto 1.2.8.25-1 - upgrade to a new version - various fixes from Comment #21 From Mamoru Tasaka, bz #476832 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mydns/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 12 Feb 2009 12:17:04 -0000 1.2 +++ sources 30 Jul 2009 02:07:18 -0000 1.3 @@ -1 +1 @@ -1450d4c882cab85f0e82b999aacf3e25 mydns-1.2.8.25.tar.gz +d5fb01ec404049c2d3bd319337a30190 mydns-1.2.8.27.tar.gz From smilner at fedoraproject.org Thu Jul 30 02:18:44 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 02:18:44 +0000 (UTC) Subject: rpms/Django/EL-5 Django.spec,1.11,1.12 Message-ID: <20090730021844.68E2B11C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1337 Modified Files: Django.spec Log Message: Attempting to combine specs for F12/11/10 and EL5 Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/Django.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- Django.spec 30 Jul 2009 00:54:20 -0000 1.11 +++ Django.spec 30 Jul 2009 02:18:44 -0000 1.12 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -46,7 +46,8 @@ cd django/utils/simplejson/ rm -rf * # and put the replacement stub in place cp -p %{SOURCE1} __init__.py - +echo %{?rhel} +echo "************" %build %{__python} setup.py build @@ -93,12 +94,19 @@ rm -rf $RPM_BUILD_ROOT %ghost %{_bindir}/django-admin.pyo %endif +%if 0%{?rhel} <= 5 +%exclude %{_bindir}/django-admin.pyc +%exclude %{_bindir}/django-admin.pyo +%endif %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-5 +- Attempted combined spec for F12/11/10 and EL5 + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 - Older builds must ghost django-admin.py[c,o] From smilner at fedoraproject.org Thu Jul 30 02:47:21 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 02:47:21 +0000 (UTC) Subject: rpms/Django/EL-5 Django.spec,1.12,1.13 Message-ID: <20090730024721.1C9F311C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10175 Modified Files: Django.spec Log Message: Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/EL-5/Django.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- Django.spec 30 Jul 2009 02:18:44 -0000 1.12 +++ Django.spec 30 Jul 2009 02:47:20 -0000 1.13 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -89,7 +89,7 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %endif -%if %{?fedora} <= 10 +%if 0%{?fedora} <= 10 %ghost %{_bindir}/django-admin.pyc %ghost %{_bindir}/django-admin.pyo %endif @@ -104,7 +104,7 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog -* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-5 +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-6 - Attempted combined spec for F12/11/10 and EL5 * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 From mclasen at fedoraproject.org Thu Jul 30 02:52:51 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 02:52:51 +0000 (UTC) Subject: rpms/control-center/devel control-center.spec, 1.458, 1.459 polkit1.patch, 1.3, 1.4 Message-ID: <20090730025251.5FA4B11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12722 Modified Files: control-center.spec polkit1.patch Log Message: revert non-useful changes Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.458 retrieving revision 1.459 diff -u -p -r1.458 -r1.459 --- control-center.spec 24 Jul 2009 19:28:35 -0000 1.458 +++ control-center.spec 30 Jul 2009 02:52:51 -0000 1.459 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.27.4 -Release: 2%{?dist} +Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -354,9 +354,6 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 polkit1.patch: capplets/about-me/gnome-about-me.c | 33 --------- capplets/appearance/appearance-desktop.c | 104 ++++++++++++++++++++++--------- configure.in | 5 - 3 files changed, 75 insertions(+), 67 deletions(-) Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/polkit1.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- polkit1.patch 16 Jul 2009 00:59:22 -0000 1.3 +++ polkit1.patch 30 Jul 2009 02:52:51 -0000 1.4 @@ -1,18 +1,7 @@ diff -up gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c ---- gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 2009-07-15 16:52:23.630080589 -0400 -+++ gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c 2009-07-15 16:52:23.668342168 -0400 -@@ -36,10 +36,6 @@ - #define GNOME_DESKTOP_USE_UNSTABLE_API - #include - --#ifdef HAVE_POLKIT --#include --#endif -- - #include "e-image-chooser.h" - #include "eel-editable-label.h" - #include -@@ -169,28 +165,6 @@ about_me_error (GtkWindow *parent, gchar +--- gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 2009-06-15 07:00:02.000000000 -0400 ++++ gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c 2009-07-23 15:01:19.841482208 -0400 +@@ -167,28 +167,6 @@ about_me_error (GtkWindow *parent, gchar gtk_widget_destroy (dialog); } @@ -41,7 +30,7 @@ diff -up gnome-control-center-2.27.4/cap /********************/ static void about_me_destroy (GnomeAboutMe *me) -@@ -1194,19 +1168,8 @@ about_me_setup_dialog (void) +@@ -1034,19 +1012,8 @@ about_me_setup_dialog (void) g_signal_connect (widget, "clicked", G_CALLBACK (about_me_image_clicked_cb), me); @@ -61,29 +50,9 @@ diff -up gnome-control-center-2.27.4/cap g_signal_connect (me->enable_fingerprint_button, "clicked", G_CALLBACK (about_me_fingerprint_button_clicked_cb), me); -diff -up gnome-control-center-2.27.4/capplets/about-me/Makefile.am.polkit1 gnome-control-center-2.27.4/capplets/about-me/Makefile.am ---- gnome-control-center-2.27.4/capplets/about-me/Makefile.am.polkit1 2009-07-15 16:52:23.634066013 -0400 -+++ gnome-control-center-2.27.4/capplets/about-me/Makefile.am 2009-07-15 16:52:23.669351794 -0400 -@@ -26,7 +26,7 @@ gnome_about_me_SOURCES = \ - if BUILD_ABOUTME - bin_PROGRAMS = gnome-about-me - --gnome_about_me_LDADD = $(GNOMECC_CAPPLETS_LIBS) $(LIBEBOOK_LIBS) $(POLKIT_GNOME_LIBS) $(GAIL_LIBS) -+gnome_about_me_LDADD = $(GNOMECC_CAPPLETS_LIBS) $(LIBEBOOK_LIBS) $(GAIL_LIBS) - gnome_about_me_LDFLAGS = -export-dynamic - - @INTLTOOL_DESKTOP_RULE@ -@@ -40,7 +40,6 @@ glade_DATA = $(glade_files) - INCLUDES = \ - $(GNOMECC_CAPPLETS_CFLAGS) \ - $(LIBEBOOK_CFLAGS) \ -- $(POLKIT_GNOME_CFLAGS) \ - $(GAIL_CFLAGS) \ - -DDATADIR="\"$(datadir)\"" \ - -DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \ diff -up gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c ---- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 2009-07-15 16:52:23.658335935 -0400 -+++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-15 16:52:23.670342213 -0400 +--- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 2009-07-23 15:01:19.833483423 -0400 ++++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-23 15:01:19.842481776 -0400 @@ -32,7 +32,6 @@ #include @@ -234,19 +203,10 @@ diff -up gnome-control-center-2.27.4/cap gtk_box_pack_end (GTK_BOX (box), button, FALSE, FALSE, 0); g_signal_connect (action, "activate", G_CALLBACK (set_background), data); -diff -up gnome-control-center-2.27.4/capplets/appearance/Makefile.am.polkit1 gnome-control-center-2.27.4/capplets/appearance/Makefile.am diff -up gnome-control-center-2.27.4/configure.in.polkit1 gnome-control-center-2.27.4/configure.in ---- gnome-control-center-2.27.4/configure.in.polkit1 2009-07-15 16:52:23.635066071 -0400 -+++ gnome-control-center-2.27.4/configure.in 2009-07-15 16:52:23.673341548 -0400 -@@ -98,7 +98,6 @@ PKG_CHECK_MODULES(METACITY, libmetacity- - PKG_CHECK_MODULES(TYPING, glib-2.0 > 2.11 gconf-2.0 gtk+-2.0) - PKG_CHECK_MODULES(GSD_DBUS, gnome-settings-daemon) - PKG_CHECK_MODULES(GIO, gio-2.0) --PKG_CHECK_MODULES(POLKIT_GNOME, polkit-gnome) - - gtk_lib_dir=`$PKG_CONFIG --variable libdir gtk+-2.0` - gtk_binary_version=`$PKG_CONFIG --variable gtk_binary_version gtk+-2.0` -@@ -224,11 +223,6 @@ if test "x$enable_aboutme" = "xyes"; the +--- gnome-control-center-2.27.4/configure.in.polkit1 2009-07-23 15:02:20.359485300 -0400 ++++ gnome-control-center-2.27.4/configure.in 2009-07-23 15:02:28.628752812 -0400 +@@ -223,11 +223,6 @@ if test "x$enable_aboutme" = "xyes"; the PKG_CHECK_MODULES(LIBEBOOK, [libebook-1.2 >= 1.7.90], [AC_DEFINE([HAVE_LIBEBOOK], 1, [Define if evolution-data-server libebook-1.2 is available])]) @@ -257,4 +217,4 @@ diff -up gnome-control-center-2.27.4/con - has_polkit=false) fi - PKG_CHECK_MODULES(GAIL, [gail]) + AM_CONDITIONAL(BUILD_ABOUTME, test "x$enable_aboutme" = "xyes") From pgordon at fedoraproject.org Thu Jul 30 03:17:36 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Thu, 30 Jul 2009 03:17:36 +0000 (UTC) Subject: rpms/ndesk-dbus/devel ndesk-dbus-sugar-datastore.patch, NONE, 1.1 ndesk-dbus.spec, 1.13, 1.14 Message-ID: <20090730031736.ABE7611C00CE@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/ndesk-dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19456 Modified Files: ndesk-dbus.spec Added Files: ndesk-dbus-sugar-datastore.patch Log Message: Correct previous %changelog version; apply sugar-datastore patch (#503151); fix lib/lib64 munging in the pkgconfig file; move %configure to %build instead of %prep. ndesk-dbus-sugar-datastore.patch: Connection.cs | 50 +++++++++++++++++++++++++++++++++++++++----------- MessageReader.cs | 2 +- 2 files changed, 40 insertions(+), 12 deletions(-) --- NEW FILE ndesk-dbus-sugar-datastore.patch --- diff --git a/src/Connection.cs b/src/Connection.cs index 22b20ca..eb27055 100644 --- a/src/Connection.cs +++ b/src/Connection.cs @@ -78,6 +78,7 @@ namespace NDesk.DBus AddressEntry entry = entries[0]; transport = Transport.Create (entry); + transport.Connection = this; //TODO: clean this bit up ns = transport.Stream; @@ -204,6 +205,7 @@ namespace NDesk.DBus } */ + bool insideReadMessage=false; internal Message ReadMessage () { byte[] header; @@ -211,6 +213,8 @@ namespace NDesk.DBus int read; + if (insideReadMessage) return null; + //16 bytes is the size of the fixed part of the header byte[] hbuf = new byte[16]; read = ns.Read (hbuf, 0, 16); @@ -221,6 +225,9 @@ namespace NDesk.DBus if (read != 16) throw new Exception ("Header read length mismatch: " + read + " of expected " + "16"); + // Make this method void if is call from inside + insideReadMessage=true; + EndianFlag endianness = (EndianFlag)hbuf[0]; MessageReader reader = new MessageReader (endianness, hbuf); @@ -274,8 +281,10 @@ namespace NDesk.DBus body = new byte[bodyLen]; read = ns.Read (body, 0, bodyLen); - if (read != bodyLen) - throw new Exception ("Message body length mismatch: " + read + " of expected " + bodyLen); + while (read != bodyLen) { + WaitForIOCompletition(this); + read = read +ns.Read (body, read, bodyLen-read); + } } Message msg = new Message (); @@ -283,6 +292,8 @@ namespace NDesk.DBus msg.Body = body; msg.SetHeaderData (header); + insideReadMessage=false; + return msg; } @@ -299,17 +310,34 @@ namespace NDesk.DBus internal Thread mainThread = Thread.CurrentThread; - //temporary hack - public void Iterate () - { - mainThread = Thread.CurrentThread; - - //Message msg = Inbound.Dequeue (); - Message msg = ReadMessage (); - HandleMessage (msg); - DispatchSignals (); + //temporary hack + bool insideIterate=false; + public void Iterate () + { + if (!insideIterate) { + insideIterate=true; + mainThread = Thread.CurrentThread; + + //Message msg = Inbound.Dequeue (); + Message msg = ReadMessage (); + if (msg!=null) { + HandleMessage (msg); + } + DispatchSignals (); + insideIterate=false; + } else { + DispatchSignals (); + } } + public delegate void WaitForIOCompletitionFunc (Connection conn); + + public event WaitForIOCompletitionFunc WaitForIOCompletitionFuncEvent; + + public void WaitForIOCompletition(Connection conn) { + WaitForIOCompletitionFuncEvent(conn); + } + internal void HandleMessage (Message msg) { //TODO: support disconnection situations properly and move this check elsewhere diff --git a/src/MessageReader.cs b/src/MessageReader.cs index 5a1f662..696603a 100644 --- a/src/MessageReader.cs +++ b/src/MessageReader.cs @@ -362,7 +362,7 @@ namespace NDesk.DBus } //advance to the alignment of the element - ReadPad (Protocol.GetAlignment (Signature.TypeToDType (elemType))); + ReadPad (Protocol.GetAlignment (DType.Array)); int endPos = pos + (int)ln; Index: ndesk-dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ndesk-dbus/devel/ndesk-dbus.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ndesk-dbus.spec 25 Jul 2009 15:53:49 -0000 1.13 +++ ndesk-dbus.spec 30 Jul 2009 03:17:34 -0000 1.14 @@ -2,7 +2,7 @@ Name: ndesk-dbus Version: 0.6.1a -Release: 6%{?dist} +Release: 7%{?dist} Summary: Managed C# implementation of DBus License: MIT @@ -11,6 +11,7 @@ URL: http://www.ndesk.org/DBusSharp Source0: http://www.ndesk.org/archive/dbus-sharp/ndesk-dbus-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: %{name}-sugar-datastore.patch BuildRequires: mono-devel @@ -30,25 +31,25 @@ Development files for ndesk-dbus %prep %setup -q -%configure +%patch0 -p1 -b .sugar-datastore + %build +# hack pkgconfig file for multilib handling - this is ugly +sed -ie "s,^libdir=.*$,libdir=%{_libdir},g" %{name}-1.0.pc.in +%configure make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# hack pkgconfig file for multilib handling - this is ugly -%ifarch x86_64 -sed -i 's|${exec_prefix}/lib|/usr/lib64|g' $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}-1.0.pc -%else -sed -i 's|${exec_prefix}/lib|/usr/lib|g' $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}-1.0.pc -%endif %clean rm -rf $RPM_BUILD_ROOT + %files %defattr(-,root,root,-) %{_libdir}/mono/ndesk-dbus-1.0/ @@ -59,6 +60,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndesk-dbus-1.0.pc %changelog +* Wed Jul 29 2009 Peter Gordon - 0.6.1a-7 +- Correct version number in previous %%changelog entry. +- Apply patch from Torello Querci to fix byte-alignment when reading from the + Sugar datastore (#503151): + + sugar-datastore.patch +- Make the pkconfig lib/lib64 munging a little bit less ugly by using the + %%_libdir macro instead of hardcoding it per-arch. +- Move %%configure to the %%build step, not %%prep (for consistency with the + ndesk-dbus-glib package). + * Sat Jul 25 2009 Fedora Release Engineering - 0.6.1a-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 30 03:20:00 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 03:20:00 +0000 (UTC) Subject: rpms/hal/devel hal-use-at-console.patch, NONE, 1.1 hal.spec, 1.204, 1.205 Message-ID: <20090730032000.A474011C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20841 Modified Files: hal.spec Added Files: hal-use-at-console.patch Log Message: Allow root access to devices hal-use-at-console.patch: hal.conf.in | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) --- NEW FILE hal-use-at-console.patch --- diff -up hal-0.5.13/hal.conf.in.drop-polkit hal-0.5.13/hal.conf.in --- hal-0.5.13/hal.conf.in.drop-polkit 2009-02-04 17:07:23.000000000 -0500 +++ hal-0.5.13/hal.conf.in 2009-07-29 23:15:16.866766074 -0400 @@ -25,7 +25,41 @@ send_interface="org.freedesktop.Hal.Device"/> + + + + + + + + + + + + + + + + + + + + + - 0.5.13-7 +- Grant root access to devices + * Wed Jul 29 2009 Richard Hughes - 0.5.13-6 - Don't compile with csr, ibm or cpufreq options, this functionality is obsolete. From smilner at fedoraproject.org Thu Jul 30 03:24:04 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 03:24:04 +0000 (UTC) Subject: rpms/Django/devel Django.spec,1.22,1.23 Message-ID: <20090730032404.E48E611C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22726 Modified Files: Django.spec Log Message: Unifed django spec (via mockbuild) Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/Django.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- Django.spec 29 Jul 2009 20:27:56 -0000 1.22 +++ Django.spec 30 Jul 2009 03:24:04 -0000 1.23 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 2%{?dist} +Release: 6%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -83,24 +83,41 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py %{python_sitelib}/django + %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info %endif +%if 0%{?fedora} <= 10 +%ghost %{_bindir}/django-admin.pyc +%ghost %{_bindir}/django-admin.pyo +%endif + +%if 0%{?rhel} == 5 +%exclude %{_bindir}/django-admin.pyc +%exclude %{_bindir}/django-admin.pyo +%endif + %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-6 +- Attempted combined spec for F12/11/10 and EL5 + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 +- Older builds must ghost django-admin.py[c,o] + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 +- Bump for tag issue. + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 - Fix changelog. * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-1 - Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/ -* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - * Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) - No longer excluding *.py? in bindir, F11's Python does not optimizes these From pgordon at fedoraproject.org Thu Jul 30 03:27:54 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Thu, 30 Jul 2009 03:27:54 +0000 (UTC) Subject: rpms/ndesk-dbus-glib/devel ndesk-dbus-glib-sugar-datastore.patch, NONE, 1.1 ndesk-dbus-glib.spec, 1.6, 1.7 Message-ID: <20090730032754.B9EA411C00CE@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/ndesk-dbus-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24091 Modified Files: ndesk-dbus-glib.spec Added Files: ndesk-dbus-glib-sugar-datastore.patch Log Message: Apply patch for rh#503151, reading from the socket with the Sugar datastore. ndesk-dbus-glib-sugar-datastore.patch: GLib.IO.cs | 44 ++++++++++++++++++++++++++++++++++++++++++++ GLib.cs | 12 ++++++++++++ 2 files changed, 56 insertions(+) --- NEW FILE ndesk-dbus-glib-sugar-datastore.patch --- diff --git a/src/GLib.IO.cs b/src/GLib.IO.cs index e9601d9..1df22df 100644 --- a/src/GLib.IO.cs +++ b/src/GLib.IO.cs @@ -5,6 +5,7 @@ using System; using System.Collections; using System.Runtime.InteropServices; +using NDesk.DBus; namespace NDesk.GLib { @@ -167,6 +168,49 @@ namespace NDesk.GLib { g_main_context_wakeup (context); } + + [DllImport(GLIB)] + static extern bool g_main_context_iteration (IntPtr context, bool may_block); + + private static bool timerThreadException=false; + private static int timeoutReceivingData=500; + + public int TimeoutReceivingData { + get { + return timeoutReceivingData; + } + set { + timeoutReceivingData=value; + } + } + + private static void timerThread() { + // If timout value is not positive, the timeout handling is disabled. + if (timeoutReceivingData>0) { + System.Threading.Thread.Sleep(timeoutReceivingData); + System.Console.Out.WriteLine("Timer expired..."); + timerThreadException=true; + } + return; + } + + public static void MainContextIterator (IntPtr context, bool may_block, Connection conn) + { + + System.Threading.Thread thread=new System.Threading.Thread(new System.Threading.ThreadStart(timerThread)); + thread.IsBackground=true; + thread.Start(); + BusG.readEvent=false; + while (!BusG.readEvent) { + g_main_context_iteration (context,may_block); + if (timerThreadException) { + throw new Exception("Timer Expired"); + } + } + thread.Abort(); + thread=null; + } + } //From Mono.Unix and poll(2) diff --git a/src/GLib.cs b/src/GLib.cs index ccfdfc4..3e91a2d 100644 --- a/src/GLib.cs +++ b/src/GLib.cs @@ -6,6 +6,7 @@ using System; using NDesk.DBus; using NDesk.GLib; using org.freedesktop.DBus; +using System.Runtime.InteropServices; namespace NDesk.DBus { @@ -13,6 +14,9 @@ namespace NDesk.DBus public static class BusG { static bool initialized = false; + + public static bool readEvent=false; + public static void Init () { if (initialized) @@ -36,6 +40,8 @@ namespace NDesk.DBus return false; } + readEvent=true; + //this may not provide expected behaviour all the time, but works for now conn.Iterate (); return true; @@ -48,6 +54,12 @@ namespace NDesk.DBus { IOChannel channel = new IOChannel ((int)conn.Transport.SocketHandle); IO.AddWatch (channel, IOCondition.In | IOCondition.Hup, dispatchHandler); + conn.WaitForIOCompletitionFuncEvent += waitForData; + } + + static public void waitForData(Connection conn) { + IO.MainContextIterator(System.IntPtr.Zero,true,conn); } + } } Index: ndesk-dbus-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ndesk-dbus-glib/devel/ndesk-dbus-glib.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ndesk-dbus-glib.spec 25 Jul 2009 15:54:05 -0000 1.6 +++ ndesk-dbus-glib.spec 30 Jul 2009 03:27:54 -0000 1.7 @@ -5,7 +5,7 @@ URL: http://www.ndesk.org/DBusSharp License: MIT Group: Development/Libraries Version: 0.4.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Provides glib mainloop integration for ndesk-dbus Source0: http://www.ndesk.org/archive/dbus-sharp/ndesk-dbus-glib-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,6 +57,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndesk-dbus-glib-1.0.pc %changelog +* Wed Jul 29 2009 Peter Gordon - 0.4.1-7 +- Apply patch from Torello Querci to fix reading from the socket with the + Sugar datastore (#503151): + + sugar-datastore.patch + * Sat Jul 25 2009 Fedora Release Engineering - 0.4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From smilner at fedoraproject.org Thu Jul 30 03:33:42 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 03:33:42 +0000 (UTC) Subject: rpms/Django/F-11 Django.spec,1.20,1.21 Message-ID: <20090730033342.DB75D11C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26163 Modified Files: Django.spec Log Message: Unifed django spec (via mockbuild) Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-11/Django.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- Django.spec 29 Jul 2009 20:55:02 -0000 1.20 +++ Django.spec 30 Jul 2009 03:33:42 -0000 1.21 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 2%{?dist} +Release: 6%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -83,15 +83,35 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py %attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py %{python_sitelib}/django + %if 0%{?fedora} >= 9 %{python_sitelib}/*.egg-info %endif +%if 0%{?fedora} <= 10 +%ghost %{_bindir}/django-admin.pyc +%ghost %{_bindir}/django-admin.pyo +%endif + +%if 0%{?rhel} == 5 +%exclude %{_bindir}/django-admin.pyc +%exclude %{_bindir}/django-admin.pyo +%endif + %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-6 +- Attempted combined spec for F12/11/10 and EL5 + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 +- Older builds must ghost django-admin.py[c,o] + +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-3 +- Bump for tag issue. + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-2 - Fix changelog. From smilner at fedoraproject.org Thu Jul 30 03:35:59 2009 From: smilner at fedoraproject.org (smilner) Date: Thu, 30 Jul 2009 03:35:59 +0000 (UTC) Subject: rpms/Django/F-10 Django.spec,1.18,1.19 Message-ID: <20090730033559.DEFA211C00CE@cvs1.fedora.phx.redhat.com> Author: smilner Update of /cvs/pkgs/rpms/Django/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27016 Modified Files: Django.spec Log Message: Unifed django spec (via mockbuild) Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/F-10/Django.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- Django.spec 30 Jul 2009 00:30:30 -0000 1.18 +++ Django.spec 30 Jul 2009 03:35:59 -0000 1.19 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.3 -Release: 4%{?dist} +Release: 6%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -88,17 +88,24 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %endif -%if %{?fedora} <= 10 +%if 0%{?fedora} <= 10 %ghost %{_bindir}/django-admin.pyc %ghost %{_bindir}/django-admin.pyo %endif +%if 0%{?rhel} == 5 +%exclude %{_bindir}/django-admin.pyc +%exclude %{_bindir}/django-admin.pyo +%endif %files doc %defattr(-,root,root,-) %doc docs/_build/html/* %changelog +* Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-6 +- Attempted combined spec for F12/11/10 and EL5 + * Wed Jul 29 2009 Steve 'Ashcrow' Milner - 1.0.3-4 - Older builds must ghost django-admin.py[c,o] From dwalsh at fedoraproject.org Thu Jul 30 04:09:14 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 04:09:14 +0000 (UTC) Subject: rpms/selinux-policy/devel modules-minimum.conf, 1.24, 1.25 modules-mls.conf, 1.55, 1.56 modules-targeted.conf, 1.133, 1.134 nsadiff, 1.15, 1.16 policy-F12.patch, 1.34, 1.35 selinux-policy.spec, 1.884, 1.885 Message-ID: <20090730040914.8840B11C00D3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23998 Modified Files: modules-minimum.conf modules-mls.conf modules-targeted.conf nsadiff policy-F12.patch selinux-policy.spec Log Message: * Tue Jul 28 2009 Dan Walsh 3.6.25-1 - Fix polkit label - Remove hidebrokensymptoms for nss_ldap fix - Add modemmanager policy - Lots of merges from upstream - Begin removing textrel_shlib_t labels, from fixed libraries Index: modules-minimum.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-minimum.conf,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- modules-minimum.conf 25 Jul 2009 20:23:22 -0000 1.24 +++ modules-minimum.conf 30 Jul 2009 04:09:13 -0000 1.25 @@ -850,6 +850,13 @@ nslcd = module # nsplugin = module +# Layer: services +# Module: modemmanager +# +# Manager for dynamically switching between modems. +# +modemmanager = module + # Layer: apps # Module: mplayer # @@ -1491,13 +1498,6 @@ varnishd = module # virt = module -# Layer: system -# Module: virtual -# -# Virtualization libraries -# -virtual = base - # Layer: apps # Module: qemu # Index: modules-mls.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-mls.conf,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- modules-mls.conf 24 Jul 2009 08:32:40 -0000 1.55 +++ modules-mls.conf 30 Jul 2009 04:09:13 -0000 1.56 @@ -787,6 +787,13 @@ miscfiles = base # mls = base +# Layer: services +# Module: modemmanager +# +# Manager for dynamically switching between modems. +# +modemmanager = module + # Layer: system # Module: modutils # @@ -1428,13 +1435,6 @@ xen = module # virt = module -# Layer: system -# Module: virtual -# -# Virtualization libraries -# -virtual = base - # Layer: apps # Module: qemu # Index: modules-targeted.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-targeted.conf,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- modules-targeted.conf 23 Jul 2009 21:47:40 -0000 1.133 +++ modules-targeted.conf 30 Jul 2009 04:09:13 -0000 1.134 @@ -850,6 +850,13 @@ nslcd = module # nsplugin = module +# Layer: services +# Module: modemmanager +# +# Manager for dynamically switching between modems. +# +modemmanager = module + # Layer: apps # Module: mplayer # @@ -1491,13 +1498,6 @@ varnishd = module # virt = module -# Layer: system -# Module: virtual -# -# Virtualization libraries -# -virtual = base - # Layer: apps # Module: qemu # Index: nsadiff =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/nsadiff,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- nsadiff 28 Jul 2009 19:08:17 -0000 1.15 +++ nsadiff 30 Jul 2009 04:09:13 -0000 1.16 @@ -1 +1 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.24 > /tmp/diff +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.25 > /tmp/diff policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/alsa.fc | 5 policy/modules/admin/alsa.te | 2 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 10 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 2 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 391 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 24 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 31 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 34 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 261 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 176 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 119 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 345 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1298 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 292 files changed, 12897 insertions(+), 2608 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.34 -r 1.35 policy-F12.patchIndex: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- policy-F12.patch 28 Jul 2009 19:08:17 -0000 1.34 +++ policy-F12.patch 30 Jul 2009 04:09:13 -0000 1.35 @@ -1,6 +1,6 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.24/config/appconfig-mcs/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.25/config/appconfig-mcs/default_contexts --- nsaserefpolicy/config/appconfig-mcs/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -22,15 +22,15 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.24/config/appconfig-mcs/failsafe_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.25/config/appconfig-mcs/failsafe_context --- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/failsafe_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/failsafe_context 2009-07-29 21:34:35.000000000 -0400 @@ -1 +1 @@ -sysadm_r:sysadm_t:s0 +system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/root_default_contexts --- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/root_default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/root_default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,11 +1,7 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -45,9 +45,9 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.24/config/appconfig-mcs/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.25/config/appconfig-mcs/securetty_types --- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/securetty_types 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/securetty_types 2009-07-29 21:34:35.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -55,18 +55,18 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.24/config/appconfig-mcs/seusers +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.25/config/appconfig-mcs/seusers --- nsaserefpolicy/config/appconfig-mcs/seusers 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/seusers 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/seusers 2009-07-29 21:34:35.000000000 -0400 @@ -1,3 +1,3 @@ system_u:system_u:s0-mcs_systemhigh -root:root:s0-mcs_systemhigh -__default__:user_u:s0 +root:unconfined_u:s0-mcs_systemhigh +__default__:unconfined_u:s0-mcs_systemhigh -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/staff_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/staff_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/staff_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/staff_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,10 +1,12 @@ system_r:local_login_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 system_r:remote_login_t:s0 staff_r:staff_t:s0 @@ -81,9 +81,9 @@ diff -b -B --ignore-all-space --exclude- sysadm_r:sysadm_su_t:s0 sysadm_r:sysadm_t:s0 sysadm_r:sysadm_sudo_t:s0 sysadm_r:sysadm_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/unconfined_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/unconfined_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,4 +1,4 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 unconfined_r:unconfined_cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 @@ -97,15 +97,15 @@ diff -b -B --ignore-all-space --exclude- +system_r:initrc_su_t:s0 unconfined_r:unconfined_t:s0 +unconfined_r:unconfined_t:s0 unconfined_r:unconfined_t:s0 system_r:xdm_t:s0 unconfined_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.24/config/appconfig-mcs/userhelper_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.25/config/appconfig-mcs/userhelper_context --- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/userhelper_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/userhelper_context 2009-07-29 21:34:35.000000000 -0400 @@ -1 +1 @@ -system_u:sysadm_r:sysadm_t:s0 +system_u:system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.24/config/appconfig-mcs/user_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/user_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mcs/user_u_default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/user_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,8 +1,9 @@ system_r:local_login_t:s0 user_r:user_t:s0 system_r:remote_login_t:s0 user_r:user_t:s0 @@ -118,20 +118,20 @@ diff -b -B --ignore-all-space --exclude- - +system_r:initrc_su_t:s0 user_r:user_t:s0 +user_r:user_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.24/config/appconfig-mcs/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.25/config/appconfig-mcs/virtual_domain_context --- nsaserefpolicy/config/appconfig-mcs/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.24/config/appconfig-mcs/virtual_domain_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/virtual_domain_context 2009-07-29 21:34:35.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:svirt_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.24/config/appconfig-mcs/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.25/config/appconfig-mcs/virtual_image_context --- nsaserefpolicy/config/appconfig-mcs/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.24/config/appconfig-mcs/virtual_image_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mcs/virtual_image_context 2009-07-29 21:34:35.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:svirt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.24/config/appconfig-mls/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.25/config/appconfig-mls/default_contexts --- nsaserefpolicy/config/appconfig-mls/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mls/default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mls/default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -153,9 +153,9 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.24/config/appconfig-mls/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.25/config/appconfig-mls/root_default_contexts --- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-mls/root_default_contexts 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mls/root_default_contexts 2009-07-29 21:34:35.000000000 -0400 @@ -1,11 +1,11 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 -system_r:local_login_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -174,20 +174,20 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +#system_r:sshd_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.24/config/appconfig-mls/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.25/config/appconfig-mls/virtual_domain_context --- nsaserefpolicy/config/appconfig-mls/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.24/config/appconfig-mls/virtual_domain_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mls/virtual_domain_context 2009-07-29 21:34:35.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:qemu_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.24/config/appconfig-mls/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.25/config/appconfig-mls/virtual_image_context --- nsaserefpolicy/config/appconfig-mls/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.24/config/appconfig-mls/virtual_image_context 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-mls/virtual_image_context 2009-07-29 21:34:35.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:virt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.24/config/appconfig-standard/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.25/config/appconfig-standard/securetty_types --- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/config/appconfig-standard/securetty_types 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/config/appconfig-standard/securetty_types 2009-07-29 21:34:35.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -195,9 +195,9 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.24/Makefile +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.25/Makefile --- nsaserefpolicy/Makefile 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/Makefile 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/Makefile 2009-07-29 21:34:35.000000000 -0400 @@ -241,7 +241,7 @@ appdir := $(contextpath) user_default_contexts := $(wildcard config/appconfig-$(TYPE)/*_default_contexts) @@ -260,9 +260,9 @@ diff -b -B --ignore-all-space --exclude- $(appdir)/%: $(appconf)/% @mkdir -p $(appdir) $(verbose) $(INSTALL) -m 644 $< $@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.24/policy/global_tunables +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.25/policy/global_tunables --- nsaserefpolicy/policy/global_tunables 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.24/policy/global_tunables 2009-07-28 13:42:18.000000000 -0400 ++++ serefpolicy-3.6.25/policy/global_tunables 2009-07-29 21:34:35.000000000 -0400 @@ -61,15 +61,6 @@ ## @@ -298,9 +298,9 @@ diff -b -B --ignore-all-space --exclude- +## +gen_tunable(mmap_low_allowed, false) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.24/policy/mcs +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.25/policy/mcs [...8238 lines suppressed...] -+ manage_lnk_files_pattern($1, virtual_image_type, virtual_image_type) -+ rw_blk_files_pattern($1, virtual_image_type, virtual_image_type) -+') -+ -+######################################## -+## -+## Allow domain to relabel virt image files -+## -+## -+## -+## Domain to not audit. -+## -+## -+# -+interface(`virtual_image_relabel',` -+ gen_require(` -+ attribute virtual_image_type; -+ ') -+ -+ allow $1 virtual_image_type:file { relabelfrom relabelto }; -+ allow $1 virtual_image_type:blk_file { relabelfrom relabelto }; -+') -+ -+######################################## -+## -+## Allow domain to transition and control virtualdomain -+## -+## -+## -+## Domain to not audit. -+## -+## -+# -+interface(`virtual_transition',` -+ gen_require(` -+ attribute virtualdomain; -+ ') -+ -+ allow $1 virtualdomain:process { setsched transition signal signull sigkill }; -+') -+ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.24/policy/modules/system/virtual.te ---- nsaserefpolicy/policy/modules/system/virtual.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.24/policy/modules/system/virtual.te 2009-07-28 13:42:19.000000000 -0400 -@@ -0,0 +1,75 @@ -+ -+policy_module(virtualization, 1.1.2) -+ -+######################################## -+# -+# Declarations -+# -+ -+attribute virtualseparateddomain; -+attribute virtualdomain; -+attribute virtual_image_type; -+ -+######################################## -+# -+# qemu common policy -+# -+ -+allow virtualdomain self:capability { kill dac_read_search dac_override }; -+allow virtualdomain self:process { execstack execmem signal getsched signull }; -+ -+allow virtualdomain self:fifo_file rw_file_perms; -+allow virtualdomain self:shm create_shm_perms; -+allow virtualdomain self:unix_stream_socket create_stream_socket_perms; -+allow virtualdomain self:unix_dgram_socket { create_socket_perms sendto }; -+allow virtualdomain self:tcp_socket create_stream_socket_perms; -+ -+kernel_read_system_state(virtualdomain) -+ -+corenet_all_recvfrom_unlabeled(virtualdomain) -+corenet_all_recvfrom_netlabel(virtualdomain) -+corenet_tcp_sendrecv_generic_if(virtualdomain) -+corenet_tcp_sendrecv_generic_node(virtualdomain) -+corenet_tcp_sendrecv_all_ports(virtualdomain) -+corenet_tcp_bind_generic_node(virtualdomain) -+corenet_tcp_bind_vnc_port(virtualdomain) -+corenet_rw_tun_tap_dev(virtualdomain) -+ -+dev_read_sound(virtualdomain) -+dev_write_sound(virtualdomain) -+dev_rw_ksm(virtualdomain) -+dev_rw_kvm(virtualdomain) -+dev_rw_qemu(virtualdomain) -+ -+domain_use_interactive_fds(virtualdomain) -+ -+files_read_etc_files(virtualdomain) -+files_read_usr_files(virtualdomain) -+files_read_var_files(virtualdomain) -+files_search_all(virtualdomain) -+ -+fs_rw_anon_inodefs_files(virtualdomain) -+fs_rw_tmpfs_files(virtualdomain) -+ -+term_use_all_terms(virtualdomain) -+term_getattr_pty_fs(virtualdomain) -+term_use_generic_ptys(virtualdomain) -+term_use_ptmx(virtualdomain) -+ -+auth_use_nsswitch(virtualdomain) -+ -+logging_send_syslog_msg(virtualdomain) -+ -+miscfiles_read_localization(virtualdomain) -+ -+optional_policy(` -+ virt_read_config(virtualdomain) -+ virt_read_lib_files(virtualdomain) -+ virt_read_content(virtualdomain) -+') -+ -+optional_policy(` -+ xserver_read_xdm_tmp_files(virtualdomain) -+ xserver_read_xdm_pid(virtualdomain) -+ xserver_rw_shm(virtualdomain) -+') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.24/policy/modules/system/xen.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.25/policy/modules/system/xen.fc --- nsaserefpolicy/policy/modules/system/xen.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/policy/modules/system/xen.fc 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/policy/modules/system/xen.fc 2009-07-29 21:34:35.000000000 -0400 @@ -1,5 +1,7 @@ /dev/xen/tapctrl.* -p gen_context(system_u:object_r:xenctl_t,s0) @@ -27008,9 +24970,9 @@ diff -b -B --ignore-all-space --exclude- /var/run/xenstore\.pid -- gen_context(system_u:object_r:xenstored_var_run_t,s0) /var/run/xenstored(/.*)? gen_context(system_u:object_r:xenstored_var_run_t,s0) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.24/policy/modules/system/xen.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.25/policy/modules/system/xen.if --- nsaserefpolicy/policy/modules/system/xen.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/policy/modules/system/xen.if 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/policy/modules/system/xen.if 2009-07-29 21:34:35.000000000 -0400 @@ -71,6 +71,8 @@ ') @@ -27083,9 +25045,9 @@ diff -b -B --ignore-all-space --exclude- + files_search_pids($1) +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.24/policy/modules/system/xen.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.25/policy/modules/system/xen.te --- nsaserefpolicy/policy/modules/system/xen.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/policy/modules/system/xen.te 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/policy/modules/system/xen.te 2009-07-29 21:34:35.000000000 -0400 @@ -6,6 +6,13 @@ # Declarations # @@ -27380,9 +25342,9 @@ diff -b -B --ignore-all-space --exclude- +libs_use_ld_so(evtchnd_t) +libs_use_shared_libs(evtchnd_t) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.24/policy/support/obj_perm_sets.spt +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.25/policy/support/obj_perm_sets.spt --- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/policy/support/obj_perm_sets.spt 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/policy/support/obj_perm_sets.spt 2009-07-29 21:34:35.000000000 -0400 @@ -201,7 +201,7 @@ define(`setattr_file_perms',`{ setattr }') define(`read_file_perms',`{ getattr open read lock ioctl }') @@ -27415,9 +25377,9 @@ diff -b -B --ignore-all-space --exclude- +define(`all_association_perms', `{ sendto recvfrom setcontext polmatch } ') + +define(`manage_key_perms', `{ create link read search setattr view write } ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.24/policy/users +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.25/policy/users --- nsaserefpolicy/policy/users 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/policy/users 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/policy/users 2009-07-29 21:34:35.000000000 -0400 @@ -25,11 +25,8 @@ # permit any access to such users, then remove this entry. # @@ -27442,9 +25404,9 @@ diff -b -B --ignore-all-space --exclude- - gen_user(root, sysadm, sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r'), s0, s0 - mls_systemhigh, mcs_allcats) -') +gen_user(root, user, unconfined_r sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r') system_r, s0, s0 - mls_systemhigh, mcs_allcats) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.24/Rules.modular +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.25/Rules.modular --- nsaserefpolicy/Rules.modular 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/Rules.modular 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/Rules.modular 2009-07-29 21:34:35.000000000 -0400 @@ -73,8 +73,8 @@ $(tmpdir)/%.mod: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf %.te @echo "Compliling $(NAME) $(@F) module" @@ -27474,9 +25436,9 @@ diff -b -B --ignore-all-space --exclude- $(tmpdir)/all_te_files.conf: M4PARAM += -D self_contained_policy $(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(base_te_files) $(tmpdir)/rolemap.conf -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.24/support/Makefile.devel +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.25/support/Makefile.devel --- nsaserefpolicy/support/Makefile.devel 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.24/support/Makefile.devel 2009-07-28 13:42:19.000000000 -0400 ++++ serefpolicy-3.6.25/support/Makefile.devel 2009-07-29 21:34:35.000000000 -0400 @@ -185,8 +185,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te @$(EINFO) "Compiling $(NAME) $(basename $(@F)) module" Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.884 retrieving revision 1.885 diff -u -p -r1.884 -r1.885 --- selinux-policy.spec 28 Jul 2009 19:08:17 -0000 1.884 +++ selinux-policy.spec 30 Jul 2009 04:09:14 -0000 1.885 @@ -19,7 +19,7 @@ %define CHECKPOLICYVER 2.0.16-3 Summary: SELinux policy configuration Name: selinux-policy -Version: 3.6.24 +Version: 3.6.25 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base @@ -475,6 +475,13 @@ exit 0 %endif %changelog +* Tue Jul 28 2009 Dan Walsh 3.6.25-1 +- Fix polkit label +- Remove hidebrokensymptoms for nss_ldap fix +- Add modemmanager policy +- Lots of merges from upstream +- Begin removing textrel_shlib_t labels, from fixed libraries + * Tue Jul 28 2009 Dan Walsh 3.6.24-1 - Update to upstream From mclasen at fedoraproject.org Thu Jul 30 04:10:43 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 04:10:43 +0000 (UTC) Subject: rpms/control-center/devel no-tweaks.patch, NONE, 1.1 control-center.spec, 1.459, 1.460 polkit1.patch, 1.4, 1.5 Message-ID: <20090730041043.7761211C04D6@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24363 Modified Files: control-center.spec polkit1.patch Added Files: no-tweaks.patch Log Message: remove some tweaks no-tweaks.patch: Makefile.am | 3 appearance/Makefile.am | 2 appearance/appearance-main.c | 1 appearance/data/appearance.ui | 355 ------------------------------------------ 4 files changed, 1 insertion(+), 360 deletions(-) --- NEW FILE no-tweaks.patch --- diff -up gnome-control-center-2.27.4/capplets/appearance/appearance-main.c.no-tweaks gnome-control-center-2.27.4/capplets/appearance/appearance-main.c --- gnome-control-center-2.27.4/capplets/appearance/appearance-main.c.no-tweaks 2009-07-29 23:41:20.056750275 -0400 +++ gnome-control-center-2.27.4/capplets/appearance/appearance-main.c 2009-07-29 23:41:38.919750322 -0400 @@ -172,7 +172,6 @@ main (int argc, char **argv) desktop_init (data, (const gchar **) wallpaper_files); g_strfreev (wallpaper_files); font_init (data); - ui_init (data); /* prepare the main window */ w = appearance_capplet_get_widget (data, "appearance_window"); diff -up gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui.no-tweaks gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui --- gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui.no-tweaks 2009-07-29 23:50:02.189755937 -0400 +++ gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui 2009-07-29 23:51:04.979750545 -0400 @@ -1494,361 +1494,6 @@ False - - - True - 12 - 18 - - - True - 6 - - - True - 0 - <b>Menus and Toolbars</b> - True - - - False - False - 0 - - - - - True - - - True - - - - False - False - 0 - - - - - True - 6 - - - Show _icons in menus - True - True - False - True - True - True - - - False - False - 0 - - - - - _Editable menu shortcut keys - True - True - False - True - True - - - False - False - 2 - - - - - True - 12 - - - True - Toolbar _button labels: - True - center - toolbar_style_select - - - False - False - 0 - - - - - True - toolbar_style_liststore - - - - 0 - - - - - False - False - 1 - - - - - False - False - 4 - - - - - False - False - 1 - - - - - False - False - 1 - - - - - False - 0 - - - - - True - 6 - - - True - 0 - <b>Preview</b> - True - - - False - False - 0 - - - - - True - - - True - - - - False - False - 0 - - - - - True - - - True - - - True - _File - True - - - - - _New - True - True - True - - - - - _Open - True - True - True - - - - - _Save - True - True - True - - - - - True - - - - - _Print - True - True - True - - - - - True - - - - - _Quit - True - True - True - - - - - - - - - True - Edit - True - - - - - C_ut - True - True - True - - - - - _Copy - True - True - True - - - - - _Paste - True - True - True - - - - - - - - - False - False - 0 - - - - - True - - - True - - - True - both - - - True - True - gtk-new - - - False - True - - - - - True - gtk-open - - - False - True - - - - - True - gtk-save - - - False - True - - - - - - - - - False - 1 - - - - - 1 - - - - - 1 - - - - - 1 - - - - - 3 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Interface - - - 3 - False - - 1 diff -up gnome-control-center-2.27.4/capplets/appearance/Makefile.am.no-tweaks gnome-control-center-2.27.4/capplets/appearance/Makefile.am --- gnome-control-center-2.27.4/capplets/appearance/Makefile.am.no-tweaks 2009-07-29 23:40:35.174501065 -0400 +++ gnome-control-center-2.27.4/capplets/appearance/Makefile.am 2009-07-29 23:40:51.076500481 -0400 @@ -16,8 +16,6 @@ gnome_appearance_properties_SOURCES = \ appearance-themes.h \ appearance-style.c \ appearance-style.h \ - appearance-ui.c \ - appearance-ui.h \ gedit-message-area.c \ gedit-message-area.h \ gnome-wp-info.c \ diff -up gnome-control-center-2.27.4/capplets/Makefile.am.no-tweaks gnome-control-center-2.27.4/capplets/Makefile.am --- gnome-control-center-2.27.4/capplets/Makefile.am.no-tweaks 2009-07-29 23:39:52.413505115 -0400 +++ gnome-control-center-2.27.4/capplets/Makefile.am 2009-07-29 23:40:01.297501055 -0400 @@ -6,8 +6,7 @@ always_built_SUBDIRS = \ keybindings \ keyboard \ mouse \ - network \ - windows + network SUBDIRS = $(always_built_SUBDIRS) Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.459 retrieving revision 1.460 diff -u -p -r1.459 -r1.460 --- control-center.spec 30 Jul 2009 02:52:51 -0000 1.459 +++ control-center.spec 30 Jul 2009 04:10:42 -0000 1.460 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -57,6 +57,9 @@ Patch43: fix-appearance-capplet.patch # http://bugzilla.gnome.org/show_bug.cgi?id=588729 Patch45: mnemonic.patch +# http://mail.gnome.org/archives/gnomecc-list/2009-July/msg00015.html +Patch46: no-tweaks.patch + # call the Fedora/RHEL graphical passwd changing apps Patch95: gnome-control-center-2.25.2-passwd.patch Patch96: gnome-control-center-2.25.2-gecos.patch @@ -177,6 +180,7 @@ utilities. %patch30 -p1 -b .default-layout-toggle %patch33 -p1 -b .notification-theme %patch43 -p1 -b .fix-appearance-capplet +%patch46 -p1 -b .no-tweaks # vendor configuration patches %patch95 -p1 -b .passwd @@ -330,7 +334,6 @@ fi %{_bindir}/gnome-mouse-properties %{_bindir}/gnome-network-properties %{_bindir}/gnome-typing-monitor -%{_bindir}/gnome-window-properties %{_bindir}/gnome-font-viewer %{_bindir}/gnome-thumbnail-font %{_libdir}/*.so.* @@ -354,6 +357,9 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog +* Wed Jul 29 2009 Matthias Clasen - 2.27.4-2 +- Omit some 'tweaky' preferences + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 polkit1.patch: capplets/about-me/gnome-about-me.c | 33 --------- capplets/appearance/appearance-desktop.c | 104 ++++++++++++++++++++++--------- configure.in | 6 - 3 files changed, 75 insertions(+), 68 deletions(-) Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/polkit1.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- polkit1.patch 30 Jul 2009 02:52:51 -0000 1.4 +++ polkit1.patch 30 Jul 2009 04:10:43 -0000 1.5 @@ -1,7 +1,7 @@ diff -up gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c ---- gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 2009-06-15 07:00:02.000000000 -0400 -+++ gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c 2009-07-23 15:01:19.841482208 -0400 -@@ -167,28 +167,6 @@ about_me_error (GtkWindow *parent, gchar +--- gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 2009-07-29 23:03:00.921501104 -0400 ++++ gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c 2009-07-29 23:03:01.006500314 -0400 +@@ -169,28 +169,6 @@ about_me_error (GtkWindow *parent, gchar gtk_widget_destroy (dialog); } @@ -30,7 +30,7 @@ diff -up gnome-control-center-2.27.4/cap /********************/ static void about_me_destroy (GnomeAboutMe *me) -@@ -1034,19 +1012,8 @@ about_me_setup_dialog (void) +@@ -1194,19 +1172,8 @@ about_me_setup_dialog (void) g_signal_connect (widget, "clicked", G_CALLBACK (about_me_image_clicked_cb), me); @@ -51,8 +51,8 @@ diff -up gnome-control-center-2.27.4/cap g_signal_connect (me->enable_fingerprint_button, "clicked", G_CALLBACK (about_me_fingerprint_button_clicked_cb), me); diff -up gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c ---- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 2009-07-23 15:01:19.833483423 -0400 -+++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-23 15:01:19.842481776 -0400 +--- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 2009-07-29 23:03:00.942500211 -0400 ++++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-29 23:03:01.008501058 -0400 @@ -32,7 +32,6 @@ #include @@ -204,9 +204,17 @@ diff -up gnome-control-center-2.27.4/cap g_signal_connect (action, "activate", G_CALLBACK (set_background), data); diff -up gnome-control-center-2.27.4/configure.in.polkit1 gnome-control-center-2.27.4/configure.in ---- gnome-control-center-2.27.4/configure.in.polkit1 2009-07-23 15:02:20.359485300 -0400 -+++ gnome-control-center-2.27.4/configure.in 2009-07-23 15:02:28.628752812 -0400 -@@ -223,11 +223,6 @@ if test "x$enable_aboutme" = "xyes"; the +--- gnome-control-center-2.27.4/configure.in.polkit1 2009-07-29 23:03:00.926500063 -0400 ++++ gnome-control-center-2.27.4/configure.in 2009-07-29 23:08:09.582750857 -0400 +@@ -98,7 +98,6 @@ PKG_CHECK_MODULES(METACITY, libmetacity- + PKG_CHECK_MODULES(TYPING, glib-2.0 > 2.11 gconf-2.0 gtk+-2.0) + PKG_CHECK_MODULES(GSD_DBUS, gnome-settings-daemon) + PKG_CHECK_MODULES(GIO, gio-2.0) +-PKG_CHECK_MODULES(POLKIT_GNOME, polkit-gnome) + + gtk_lib_dir=`$PKG_CONFIG --variable libdir gtk+-2.0` + gtk_binary_version=`$PKG_CONFIG --variable gtk_binary_version gtk+-2.0` +@@ -224,11 +223,6 @@ if test "x$enable_aboutme" = "xyes"; the PKG_CHECK_MODULES(LIBEBOOK, [libebook-1.2 >= 1.7.90], [AC_DEFINE([HAVE_LIBEBOOK], 1, [Define if evolution-data-server libebook-1.2 is available])]) @@ -217,4 +225,4 @@ diff -up gnome-control-center-2.27.4/con - has_polkit=false) fi - AM_CONDITIONAL(BUILD_ABOUTME, test "x$enable_aboutme" = "xyes") + PKG_CHECK_MODULES(GAIL, [gail]) From mclasen at fedoraproject.org Thu Jul 30 04:16:53 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 04:16:53 +0000 (UTC) Subject: rpms/control-center/devel control-center.spec,1.460,1.461 Message-ID: <20090730041653.5790611C00D3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25987 Modified Files: control-center.spec Log Message: bump rev Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.460 retrieving revision 1.461 diff -u -p -r1.460 -r1.461 --- control-center.spec 30 Jul 2009 04:10:42 -0000 1.460 +++ control-center.spec 30 Jul 2009 04:16:52 -0000 1.461 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -357,7 +357,7 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog -* Wed Jul 29 2009 Matthias Clasen - 2.27.4-2 +* Wed Jul 29 2009 Matthias Clasen - 2.27.4-3 - Omit some 'tweaky' preferences * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 From dwalsh at fedoraproject.org Thu Jul 30 04:31:55 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 04:31:55 +0000 (UTC) Subject: rpms/selinux-policy/devel .cvsignore, 1.177, 1.178 policy-F12.patch, 1.35, 1.36 sources, 1.197, 1.198 Message-ID: <20090730043155.7359A11C00D3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30853 Modified Files: .cvsignore policy-F12.patch sources Log Message: * Tue Jul 28 2009 Dan Walsh 3.6.25-1 - Fix polkit label - Remove hidebrokensymptoms for nss_ldap fix - Add modemmanager policy - Lots of merges from upstream - Begin removing textrel_shlib_t labels, from fixed libraries Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/.cvsignore,v retrieving revision 1.177 retrieving revision 1.178 diff -u -p -r1.177 -r1.178 --- .cvsignore 28 Jul 2009 19:08:17 -0000 1.177 +++ .cvsignore 30 Jul 2009 04:31:52 -0000 1.178 @@ -180,3 +180,4 @@ setroubleshoot-2.2.11.tar.gz serefpolicy-3.6.22.tgz serefpolicy-3.6.23.tgz serefpolicy-3.6.24.tgz +serefpolicy-3.6.25.tgz policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/alsa.fc | 5 policy/modules/admin/alsa.te | 2 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 10 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 2 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 391 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 24 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 31 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 36 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 261 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 176 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 119 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 345 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1298 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 292 files changed, 12899 insertions(+), 2608 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- policy-F12.patch 30 Jul 2009 04:09:13 -0000 1.35 +++ policy-F12.patch 30 Jul 2009 04:31:53 -0000 1.36 @@ -12593,7 +12593,7 @@ diff -b -B --ignore-all-space --exclude- ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/policykit.te serefpolicy-3.6.25/policy/modules/services/policykit.te --- nsaserefpolicy/policy/modules/services/policykit.te 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.25/policy/modules/services/policykit.te 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.25/policy/modules/services/policykit.te 2009-07-30 00:28:51.000000000 -0400 @@ -38,9 +38,10 @@ allow policykit_t self:capability { setgid setuid }; @@ -12607,7 +12607,15 @@ diff -b -B --ignore-all-space --exclude- policykit_domtrans_auth(policykit_t) -@@ -68,8 +69,17 @@ +@@ -62,14 +63,25 @@ + files_read_etc_files(policykit_t) + files_read_usr_files(policykit_t) + ++fs_list_inotifyfs(policykit_t) ++ + auth_use_nsswitch(policykit_t) + + logging_send_syslog_msg(policykit_t) miscfiles_read_localization(policykit_t) @@ -12625,7 +12633,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # polkit_auth local policy -@@ -77,7 +87,8 @@ +@@ -77,7 +89,8 @@ allow policykit_auth_t self:capability setgid; allow policykit_auth_t self:process getattr; @@ -12635,7 +12643,7 @@ diff -b -B --ignore-all-space --exclude- allow policykit_auth_t self:unix_dgram_socket create_socket_perms; allow policykit_auth_t self:unix_stream_socket create_stream_socket_perms; -@@ -104,6 +115,8 @@ +@@ -104,6 +117,8 @@ userdom_dontaudit_read_user_home_content_files(policykit_auth_t) optional_policy(` @@ -12644,7 +12652,7 @@ diff -b -B --ignore-all-space --exclude- dbus_session_bus_client(policykit_auth_t) optional_policy(` -@@ -116,6 +129,10 @@ +@@ -116,6 +131,10 @@ hal_read_state(policykit_auth_t) ') @@ -12655,7 +12663,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # polkit_grant local policy -@@ -123,7 +140,8 @@ +@@ -123,7 +142,8 @@ allow policykit_grant_t self:capability setuid; allow policykit_grant_t self:process getattr; @@ -12665,7 +12673,7 @@ diff -b -B --ignore-all-space --exclude- allow policykit_grant_t self:unix_dgram_socket create_socket_perms; allow policykit_grant_t self:unix_stream_socket create_stream_socket_perms; -@@ -153,9 +171,12 @@ +@@ -153,9 +173,12 @@ userdom_read_all_users_state(policykit_grant_t) optional_policy(` @@ -12679,7 +12687,7 @@ diff -b -B --ignore-all-space --exclude- consolekit_dbus_chat(policykit_grant_t) ') ') -@@ -167,7 +188,8 @@ +@@ -167,7 +190,8 @@ allow policykit_resolve_t self:capability { setuid sys_nice sys_ptrace }; allow policykit_resolve_t self:process getattr; Index: sources =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/sources,v retrieving revision 1.197 retrieving revision 1.198 diff -u -p -r1.197 -r1.198 --- sources 28 Jul 2009 19:08:17 -0000 1.197 +++ sources 30 Jul 2009 04:31:53 -0000 1.198 @@ -1 +1 @@ -4d74666892956fc2b2a50158e740174e serefpolicy-3.6.24.tgz +1bf047937d814f33c84b5fb13f55b620 serefpolicy-3.6.25.tgz From corsepiu at fedoraproject.org Thu Jul 30 04:47:17 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 04:47:17 +0000 (UTC) Subject: rpms/perl-IPC-Run-SafeHandles/devel perl-IPC-Run-SafeHandles.spec, 1.3, 1.4 Message-ID: <20090730044717.61BCD11C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-IPC-Run-SafeHandles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3224 Modified Files: perl-IPC-Run-SafeHandles.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-Run-SafeHandles.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-Run-SafeHandles/devel/perl-IPC-Run-SafeHandles.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-IPC-Run-SafeHandles.spec 26 Feb 2009 20:14:32 -0000 1.3 +++ perl-IPC-Run-SafeHandles.spec 30 Jul 2009 04:47:15 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-IPC-Run-SafeHandles Version: 0.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Use IPC::Run and IPC::Run3 safely License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 0.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 30 04:54:39 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 04:54:39 +0000 (UTC) Subject: rpms/gnome-utils/devel gnome-utils.spec,1.195,1.196 Message-ID: <20090730045439.3F7B211C00D3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6597 Modified Files: gnome-utils.spec Log Message: Split off a gnome-system-log subpackage Index: gnome-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-utils/devel/gnome-utils.spec,v retrieving revision 1.195 retrieving revision 1.196 diff -u -p -r1.195 -r1.196 --- gnome-utils.spec 25 Jul 2009 00:50:12 -0000 1.195 +++ gnome-utils.spec 30 Jul 2009 04:54:38 -0000 1.196 @@ -9,7 +9,7 @@ Name: gnome-utils Version: 2.27.2 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: GNOME utility programs @@ -67,6 +67,15 @@ The gnome-utils-devel package contains h needed to develop programs using the libraries contained in gnome-utils. +%package -n gnome-system-log +Summary: A log file viewer for the GNOME desktop +Group: Applications/System +Requires: %{name} = %{version}-%{release} + +%description -n gnome-system-log +The gnome-system-log package contains an application that lets you +view various system log files. + %prep %setup -q @@ -137,6 +146,12 @@ desktop-file-install --vendor gnome --de --copy-generic-name-to-name \ $RPM_BUILD_ROOT%{_datadir}/applications/gnome-baobab.desktop +desktop-file-install --vendor gnome --delete-original \ + --dir $RPM_BUILD_ROOT%{_datadir}/applications \ + --remove-category=Office \ + --add-category=Utility \ + $RPM_BUILD_ROOT%{_datadir}/applications/gnome-dictionary.desktop + # save space by linking identical images in translated docs for n in baobab gnome-dictionary gnome-search-tool gnome-system-log; do helpdir=$RPM_BUILD_ROOT%{_datadir}/gnome/help/$n @@ -155,8 +170,15 @@ for n in baobab gnome-dictionary gnome-s done done -%find_lang gnome-utils-2.0 --all-name --with-gnome - +%find_lang gnome-utils-2.0 +%find_lang baobab --with-gnome +%find_lang gnome-dictionary --with-gnome +%find_lang gnome-search-tool --with-gnome +%find_lang gnome-system-log --with-gnome + +cat baobab.lang >> gnome-utils-2.0.lang +cat gnome-dictionary.lang >> gnome-utils-2.0.lang +cat gnome-search-tool.lang >> gnome-utils-2.0.lang %clean rm -rf $RPM_BUILD_ROOT @@ -169,7 +191,6 @@ update-desktop-database -q export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule \ %{_sysconfdir}/gconf/schemas/gnome-dictionary.schemas \ - %{_sysconfdir}/gconf/schemas/gnome-system-log.schemas \ %{_sysconfdir}/gconf/schemas/gnome-search-tool.schemas \ %{_sysconfdir}/gconf/schemas/gnome-screenshot.schemas \ %{_sysconfdir}/gconf/schemas/baobab.schemas \ @@ -209,6 +230,26 @@ if [ -x /usr/bin/gtk-update-icon-cache ] fi +%post -n gnome-system-log +scrollkeeper-update -q +export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` +gconftool-2 --makefile-install-rule \ + %{_sysconfdir}/gconf/schemas/gnome-system-log.schemas \ + >& /dev/null || : + +%pre -n gnome-system-log +if [ "$1" -gt 1 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/gnome-system-log.schemas >& /dev/null || : +fi + +%preun -n gnome-system-log +if [ "$1" -eq 0 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/gnome-system-log.schemas >& /dev/null || : +fi + + %files -f gnome-utils-2.0.lang %defattr(-,root,root,-) %doc COPYING NEWS README @@ -217,30 +258,23 @@ fi %doc gsearchtool/AUTHORS %doc baobab/AUTHORS %doc baobab/README -%{_sysconfdir}/security/console.apps/gnome-system-log -%{_sysconfdir}/pam.d/gnome-system-log %{_sysconfdir}/gconf/schemas/gnome-dictionary.schemas %{_sysconfdir}/gconf/schemas/gnome-screenshot.schemas %{_sysconfdir}/gconf/schemas/gnome-search-tool.schemas -%{_sysconfdir}/gconf/schemas/gnome-system-log.schemas %{_sysconfdir}/gconf/schemas/baobab.schemas %{_bindir}/gnome-dictionary %{_bindir}/gnome-panel-screenshot %{_bindir}/gnome-screenshot %{_bindir}/gnome-search-tool %{_bindir}/baobab -%{_bindir}/gnome-system-log -%{_sbindir}/gnome-system-log %{_datadir}/applications/gnome-dictionary.desktop %{_datadir}/applications/gnome-screenshot.desktop %{_datadir}/applications/gnome-search-tool.desktop -%{_datadir}/applications/gnome-system-log.desktop %{_datadir}/applications/gnome-baobab.desktop %{_datadir}/gdict-1.0/ %{_datadir}/gnome-dictionary/ %{_datadir}/gnome-screenshot/ %{_datadir}/baobab/ -%{_datadir}/gnome-utils/ %{_datadir}/pixmaps/gsearchtool/ %{_datadir}/icons/hicolor/24x24/apps/baobab.png %{_datadir}/icons/hicolor/scalable/apps/baobab.svg @@ -250,7 +284,6 @@ fi %{_libdir}/libgdict-1.0.so.* %{_mandir}/man1/gnome-dictionary.1.gz %{_mandir}/man1/gnome-search-tool.1.gz -%{_mandir}/man1/gnome-system-log.1.gz %{_mandir}/man1/baobab.1.gz %files devel @@ -259,8 +292,21 @@ fi %{_includedir}/gdict-1.0/ %{_datadir}/gtk-doc/html/gdict/ +%files -n gnome-system-log -f gnome-system-log.lang +%{_bindir}/gnome-system-log +%{_sbindir}/gnome-system-log +%{_datadir}/gnome-utils/ +%{_sysconfdir}/gconf/schemas/gnome-system-log.schemas +%{_sysconfdir}/security/console.apps/gnome-system-log +%{_sysconfdir}/pam.d/gnome-system-log +%{_datadir}/applications/gnome-system-log.desktop +%{_mandir}/man1/gnome-system-log.1.gz %changelog +* Thu Jul 30 2009 Matthias Clasen - 1:2.27.2-4 +- Split off a gnome-system-log subpackage +- Move gnome-dictionary to a better place in the menus + * Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Thu Jul 30 05:14:17 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 05:14:17 +0000 (UTC) Subject: rpms/perl-DBIx-Class/devel perl-DBIx-Class.spec,1.14,1.15 Message-ID: <20090730051417.16A8711C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-DBIx-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13398 Modified Files: perl-DBIx-Class.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.08107-3 - Add BR: perl(CPAN) to fix rebuild-breakdown. Index: perl-DBIx-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class/devel/perl-DBIx-Class.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-DBIx-Class.spec 26 Jul 2009 05:22:59 -0000 1.14 +++ perl-DBIx-Class.spec 30 Jul 2009 05:14:16 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class Version: 0.08107 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extensible and flexible object <-> relational mapper License: GPL+ or Artistic Group: Development/Libraries @@ -18,6 +18,9 @@ BuildRequires: perl(Storable) BuildRequires: perl(Test::Builder) >= 0.33 BuildRequires: perl(Test::Deep) +# Required by inc/Module/AutoInstall +BuildRequires: perl(CPAN) + ## Dependencies BuildRequires: perl(Carp::Clan) >= 6 BuildRequires: perl(Class::Accessor::Grouped) >= 0.08003 @@ -157,6 +160,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 0.08107-3 +- Add BR: perl(CPAN) to fix rebuild-breakdown. + * Sat Jul 25 2009 Fedora Release Engineering - 0.08107-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pgordon at fedoraproject.org Thu Jul 30 05:59:14 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Thu, 30 Jul 2009 05:59:14 +0000 (UTC) Subject: rpms/ndesk-dbus-glib/devel ndesk-dbus-glib.spec,1.7,1.8 Message-ID: <20090730055914.39CD711C00D3@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/ndesk-dbus-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29733 Modified Files: ndesk-dbus-glib.spec Log Message: Bump min ndesk-dbus EVR requirement, for WaitForIOCompletion and friends Index: ndesk-dbus-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ndesk-dbus-glib/devel/ndesk-dbus-glib.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ndesk-dbus-glib.spec 30 Jul 2009 03:27:54 -0000 1.7 +++ ndesk-dbus-glib.spec 30 Jul 2009 05:59:12 -0000 1.8 @@ -12,7 +12,9 @@ BuildRoot: %{_tmppath}/%{name}-%{versio BuildRequires: mono-devel -BuildRequires: ndesk-dbus-devel +## This EVR is necessary due to the WaitForIOCompletion API added in the Sugar +## datastore patch. +BuildRequires: ndesk-dbus-devel >= 0.6.1a-7 %description ndesk-dbus-glib provides glib mainloop integration for ndesk-dbus @@ -61,6 +63,8 @@ rm -rf $RPM_BUILD_ROOT - Apply patch from Torello Querci to fix reading from the socket with the Sugar datastore (#503151): + sugar-datastore.patch +- Bump minimum required ndesk-dbus version (for the WaitForIOCompletion API + added in the Sugar datastore patch). * Sat Jul 25 2009 Fedora Release Engineering - 0.4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 30 06:13:41 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 06:13:41 +0000 (UTC) Subject: rpms/libbonoboui/devel libbonoboui.spec,1.69,1.70 Message-ID: <20090730061341.9BC3711C00D3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libbonoboui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2133 Modified Files: libbonoboui.spec Log Message: Rebuild Index: libbonoboui.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbonoboui/devel/libbonoboui.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- libbonoboui.spec 25 Jul 2009 05:22:37 -0000 1.69 +++ libbonoboui.spec 30 Jul 2009 06:13:39 -0000 1.70 @@ -14,7 +14,7 @@ Summary: Bonobo user interface components Name: libbonoboui Version: 2.24.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libbonoboui/2.24/%{name}-%{version}.tar.bz2 License: GPLv2+ and LGPLv2+ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libbonoboui %changelog +* Thu Jul 30 2009 Matthias Clasen - 2.24.1-2 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 30 06:26:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 06:26:56 +0000 Subject: [pkgdb] surfraw ownership updated Message-ID: <20090730062656.9850510F875@bastion2.fedora.phx.redhat.com> Package surfraw in Fedora 11 is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surfraw From pkgdb at fedoraproject.org Thu Jul 30 06:27:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 06:27:02 +0000 Subject: [pkgdb] surfraw ownership updated Message-ID: <20090730062702.F3E4C10F889@bastion2.fedora.phx.redhat.com> Package surfraw in Fedora 10 is now owned by thm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surfraw From alexh at fedoraproject.org Thu Jul 30 06:54:31 2009 From: alexh at fedoraproject.org (alexh) Date: Thu, 30 Jul 2009 06:54:31 +0000 (UTC) Subject: rpms/log4c/F-11 507427-Fix-M4-file.patch, NONE, 1.1 log4c.spec, 1.2, 1.3 Message-ID: <20090730065432.285B911C00D3@cvs1.fedora.phx.redhat.com> Author: alexh Update of /cvs/pkgs/rpms/log4c/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17433 Modified Files: log4c.spec Added Files: 507427-Fix-M4-file.patch Log Message: * Thu Jul 30 2009 Alex (Fedora Packaging Account) - 1.2.1-5 - Added patch to fix underquoting in M4 file (bug #507427) 507427-Fix-M4-file.patch: log4c.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE 507427-Fix-M4-file.patch --- diff -Nadru log4c-1.2.1/log4c.m4 log4c-1.2.1-fixed/log4c.m4 --- log4c-1.2.1/log4c.m4 2007-09-24 20:12:16.000000000 +0100 +++ log4c-1.2.1-fixed/log4c.m4 2009-07-30 07:38:06.232116855 +0100 @@ -4,7 +4,7 @@ dnl AM_PATH_LOG4C([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for LOG4C, and define LOG4C_CFLAGS and LOG4C_LIBS dnl -AC_DEFUN(AM_PATH_LOG4C, +AC_DEFUN([AM_PATH_LOG4C], [dnl dnl Get the cflags and libraries from the log4c-config script dnl Index: log4c.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4c/F-11/log4c.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- log4c.spec 25 Feb 2009 20:48:25 -0000 1.2 +++ log4c.spec 30 Jul 2009 06:54:30 -0000 1.3 @@ -1,12 +1,13 @@ Name: log4c Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for logging application messages Group: System Environment/Libraries License: LGPLv2+ URL: http://log4c.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Patch0: 507427-Fix-M4-file.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: expat-devel @@ -61,6 +62,9 @@ rm -rf %{buildroot} %{_datadir}/aclocal/log4c.m4 %changelog +* Thu Jul 30 2009 Alex (Fedora Packaging Account) - 1.2.1-5 +- Added patch to fix underquoting in M4 file (bug #507427) + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From corsepiu at fedoraproject.org Thu Jul 30 07:01:41 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 07:01:41 +0000 (UTC) Subject: rpms/perl-URI-Find/devel perl-URI-Find.spec,1.5,1.6 Message-ID: <20090730070141.1151911C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-URI-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20990 Modified Files: perl-URI-Find.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 20090319-3 - Use Build.PL (Fix mass rebuild breakdown). Index: perl-URI-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-URI-Find/devel/perl-URI-Find.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-URI-Find.spec 26 Jul 2009 17:22:37 -0000 1.5 +++ perl-URI-Find.spec 30 Jul 2009 07:01:40 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-URI-Find Version: 20090319 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/URI/Find.pm License: GPL+ or Artistic Group: Development/Libraries @@ -11,7 +11,6 @@ BuildRoot: %{_tmppath}/%{name}-%{versio Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch -BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(URI) >= 1.00 BuildRequires: perl(URI::URL) >= 5.00 @@ -37,20 +36,19 @@ Public Methods %setup -q -n URI-Find-%{version} %build -%{__perl} Makefile.PL INSTALLDIRS=vendor -make %{?_smp_mflags} +%{__perl} Build.PL installdirs=vendor +./Build %install rm -rf %{buildroot} -make pure_install PERL_INSTALL_ROOT=%{buildroot} -find %{buildroot} -type f -name .packlist -exec rm -f {} ';' -find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' +./Build install destdir=%{buildroot} create_packlist=0 +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} %{buildroot}/* %check -make test +./Build test %clean rm -rf %{buildroot} @@ -62,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 20090319-3 +- Use Build.PL (Fix mass rebuild breakdown). + * Sun Jul 26 2009 Fedora Release Engineering - 20090319-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From ellert at fedoraproject.org Thu Jul 30 07:12:45 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:12:45 +0000 (UTC) Subject: rpms/globus-callout/devel noautobuild,1.1,NONE Message-ID: <20090730071245.3576611C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24962 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:12:58 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:12:58 +0000 (UTC) Subject: rpms/globus-common/devel noautobuild,1.1,NONE Message-ID: <20090730071258.374CD11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25072 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:13:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:13:06 +0000 (UTC) Subject: rpms/globus-core/devel noautobuild,1.1,NONE Message-ID: <20090730071306.9EE9A11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25137 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:13:14 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:13:14 +0000 (UTC) Subject: rpms/globus-ftp-client/devel noautobuild,1.1,NONE Message-ID: <20090730071314.AD32E11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25187 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:13:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:13:22 +0000 (UTC) Subject: rpms/globus-ftp-control/devel noautobuild,1.1,NONE Message-ID: <20090730071322.EAE8C11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25233 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:13:32 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:13:32 +0000 (UTC) Subject: rpms/globus-gass-copy/devel noautobuild,1.1,NONE Message-ID: <20090730071332.2C04711C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25313 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:13:51 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:13:51 +0000 (UTC) Subject: rpms/globus-gass-transfer/devel noautobuild,1.1,NONE Message-ID: <20090730071351.6C0BF11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25467 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From stevetraylen at fedoraproject.org Thu Jul 30 07:13:47 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 07:13:47 +0000 (UTC) Subject: rpms/uberftp/devel import.log, NONE, 1.1 uberftp.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730071347.0079E11C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/uberftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25345/devel Modified Files: .cvsignore sources Added Files: import.log uberftp.spec Log Message: First version. --- NEW FILE import.log --- uberftp-2_4-4_fc11:HEAD:uberftp-2.4-4.fc11.src.rpm:1248937975 --- NEW FILE uberftp.spec --- %ifarch alpha ia64 ppc64 s390x sparc64 x86_64 %global flavor gcc64pthr %else %global flavor gcc32pthr %endif Name: uberftp Version: 2.4 Release: 4%{?dist} Summary: GridFTP-enabled ftp client Group: Applications/Internet License: NCSA URL: http://dims.ncsa.illinois.edu/set/uberftp/ Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel %description UberFTP is the first interactive, GridFTP-enabled ftp client. It supports GSI authentication, parallel data channels and third party transfers. %prep %setup -q -n uberftp-client-%{version} iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright %build mkdir pkgdata sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac %{_datadir}/globus/globus-bootstrap.sh %configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/uberftp %{_mandir}/man1/uberftp.1.gz %doc Changelog.mssftp Changelog copyright %changelog * Wed Jul 22 2009 Steve Traylen 2.4-4 - Update source to version 2.4 - Include copyright file in package. * Tue Jun 23 2009 Steve Traylen 2.3-3 - Better inclusion of globus header files. * Fri Jun 19 2009 Steve Traylen - 2.3-2 - Remove my debugging. * Fri Jun 19 2009 Steve Traylen - 2.3-1 - Initial version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 21:02:54 -0000 1.1 +++ .cvsignore 30 Jul 2009 07:13:46 -0000 1.2 @@ -0,0 +1 @@ +uberftp-client-2.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 21:02:54 -0000 1.1 +++ sources 30 Jul 2009 07:13:46 -0000 1.2 @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz From ellert at fedoraproject.org Thu Jul 30 07:14:01 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:01 +0000 (UTC) Subject: rpms/globus-gsi-callback/devel noautobuild,1.1,NONE Message-ID: <20090730071401.86C9711C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25595 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:19 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:19 +0000 (UTC) Subject: rpms/globus-gsi-credential/devel noautobuild,1.1,NONE Message-ID: <20090730071419.7B27711C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25741 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:11 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:11 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/devel noautobuild,1.1,NONE Message-ID: <20090730071411.169B311C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25658 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:27 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:27 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/devel noautobuild,1.1,NONE Message-ID: <20090730071427.A60A811C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25785 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:35 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:35 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/devel noautobuild,1.1,NONE Message-ID: <20090730071435.B236611C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25830 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:44 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:44 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/devel noautobuild,1.1,NONE Message-ID: <20090730071444.2C6AD11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25894 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:14:52 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:14:52 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/devel noautobuild,1.1,NONE Message-ID: <20090730071452.5055711C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25957 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:00 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:00 +0000 (UTC) Subject: rpms/globus-gssapi-error/devel noautobuild,1.1,NONE Message-ID: <20090730071500.B507911C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26006 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:08 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:08 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/devel noautobuild,1.1,NONE Message-ID: <20090730071508.8E06A11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26054 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:16 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:16 +0000 (UTC) Subject: rpms/globus-gss-assist/devel noautobuild,1.1,NONE Message-ID: <20090730071516.96D8D11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26101 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:24 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:24 +0000 (UTC) Subject: rpms/globus-io/devel noautobuild,1.1,NONE Message-ID: <20090730071524.C433F11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26151 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:32 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:32 +0000 (UTC) Subject: rpms/globus-libtool/devel noautobuild,1.1,NONE Message-ID: <20090730071532.BC9E511C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26199 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:40 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:40 +0000 (UTC) Subject: rpms/globus-openssl/devel noautobuild,1.1,NONE Message-ID: <20090730071540.B9C9A11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26249 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:48 +0000 (UTC) Subject: rpms/globus-openssl-module/devel noautobuild,1.1,NONE Message-ID: <20090730071548.C9D5411C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26304 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:15:57 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:15:57 +0000 (UTC) Subject: rpms/globus-proxy-utils/devel noautobuild,1.1,NONE Message-ID: <20090730071557.DF3D611C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26361 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:06 +0000 (UTC) Subject: rpms/globus-rls-client/devel noautobuild,1.1,NONE Message-ID: <20090730071606.380E111C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26415 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:15 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:15 +0000 (UTC) Subject: rpms/globus-rls-server/devel noautobuild,1.1,NONE Message-ID: <20090730071615.5BD4911C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26464 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:23 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:23 +0000 (UTC) Subject: rpms/globus-rsl/devel noautobuild,1.1,NONE Message-ID: <20090730071623.BDCA411C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26514 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:32 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:32 +0000 (UTC) Subject: rpms/globus-rsl-assist/devel noautobuild,1.1,NONE Message-ID: <20090730071632.3667811C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26583 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:40 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:40 +0000 (UTC) Subject: rpms/globus-usage/devel noautobuild,1.1,NONE Message-ID: <20090730071640.581AF11C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26631 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:48 +0000 (UTC) Subject: rpms/globus-xio/devel noautobuild,1.1,NONE Message-ID: <20090730071648.BA3D411C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26689 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:16:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:16:56 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/devel noautobuild,1.1,NONE Message-ID: <20090730071656.B77F511C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26739 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From ellert at fedoraproject.org Thu Jul 30 07:17:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Thu, 30 Jul 2009 07:17:05 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/devel noautobuild,1.1,NONE Message-ID: <20090730071705.5565611C00D3@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26800 Removed Files: noautobuild Log Message: Remove noautobuild file --- noautobuild DELETED --- From stevetraylen at fedoraproject.org Thu Jul 30 07:24:10 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 07:24:10 +0000 (UTC) Subject: rpms/uberftp/EL-4 uberftp.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730072410.0642811C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/uberftp/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28842/EL-4 Modified Files: sources Added Files: uberftp.spec Log Message: Add to el4,5 and f10,11 --- NEW FILE uberftp.spec --- %ifarch alpha ia64 ppc64 s390x sparc64 x86_64 %global flavor gcc64pthr %else %global flavor gcc32pthr %endif Name: uberftp Version: 2.4 Release: 4%{?dist} Summary: GridFTP-enabled ftp client Group: Applications/Internet License: NCSA URL: http://dims.ncsa.illinois.edu/set/uberftp/ Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel %description UberFTP is the first interactive, GridFTP-enabled ftp client. It supports GSI authentication, parallel data channels and third party transfers. %prep %setup -q -n uberftp-client-%{version} iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright %build mkdir pkgdata sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac %{_datadir}/globus/globus-bootstrap.sh %configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/uberftp %{_mandir}/man1/uberftp.1.gz %doc Changelog.mssftp Changelog copyright %changelog * Wed Jul 22 2009 Steve Traylen 2.4-4 - Update source to version 2.4 - Include copyright file in package. * Tue Jun 23 2009 Steve Traylen 2.3-3 - Better inclusion of globus header files. * Fri Jun 19 2009 Steve Traylen - 2.3-2 - Remove my debugging. * Fri Jun 19 2009 Steve Traylen - 2.3-1 - Initial version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 21:02:54 -0000 1.1 +++ sources 30 Jul 2009 07:24:09 -0000 1.2 @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz From stevetraylen at fedoraproject.org Thu Jul 30 07:24:10 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 07:24:10 +0000 (UTC) Subject: rpms/uberftp/EL-5 uberftp.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730072410.1E37A11C0417@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/uberftp/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28842/EL-5 Modified Files: sources Added Files: uberftp.spec Log Message: Add to el4,5 and f10,11 --- NEW FILE uberftp.spec --- %ifarch alpha ia64 ppc64 s390x sparc64 x86_64 %global flavor gcc64pthr %else %global flavor gcc32pthr %endif Name: uberftp Version: 2.4 Release: 4%{?dist} Summary: GridFTP-enabled ftp client Group: Applications/Internet License: NCSA URL: http://dims.ncsa.illinois.edu/set/uberftp/ Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel %description UberFTP is the first interactive, GridFTP-enabled ftp client. It supports GSI authentication, parallel data channels and third party transfers. %prep %setup -q -n uberftp-client-%{version} iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright %build mkdir pkgdata sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac %{_datadir}/globus/globus-bootstrap.sh %configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/uberftp %{_mandir}/man1/uberftp.1.gz %doc Changelog.mssftp Changelog copyright %changelog * Wed Jul 22 2009 Steve Traylen 2.4-4 - Update source to version 2.4 - Include copyright file in package. * Tue Jun 23 2009 Steve Traylen 2.3-3 - Better inclusion of globus header files. * Fri Jun 19 2009 Steve Traylen - 2.3-2 - Remove my debugging. * Fri Jun 19 2009 Steve Traylen - 2.3-1 - Initial version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 21:02:54 -0000 1.1 +++ sources 30 Jul 2009 07:24:09 -0000 1.2 @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz From stevetraylen at fedoraproject.org Thu Jul 30 07:24:10 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 07:24:10 +0000 (UTC) Subject: rpms/uberftp/F-10 uberftp.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730072410.5343511C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/uberftp/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28842/F-10 Modified Files: sources Added Files: uberftp.spec Log Message: Add to el4,5 and f10,11 --- NEW FILE uberftp.spec --- %ifarch alpha ia64 ppc64 s390x sparc64 x86_64 %global flavor gcc64pthr %else %global flavor gcc32pthr %endif Name: uberftp Version: 2.4 Release: 4%{?dist} Summary: GridFTP-enabled ftp client Group: Applications/Internet License: NCSA URL: http://dims.ncsa.illinois.edu/set/uberftp/ Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel %description UberFTP is the first interactive, GridFTP-enabled ftp client. It supports GSI authentication, parallel data channels and third party transfers. %prep %setup -q -n uberftp-client-%{version} iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright %build mkdir pkgdata sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac %{_datadir}/globus/globus-bootstrap.sh %configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/uberftp %{_mandir}/man1/uberftp.1.gz %doc Changelog.mssftp Changelog copyright %changelog * Wed Jul 22 2009 Steve Traylen 2.4-4 - Update source to version 2.4 - Include copyright file in package. * Tue Jun 23 2009 Steve Traylen 2.3-3 - Better inclusion of globus header files. * Fri Jun 19 2009 Steve Traylen - 2.3-2 - Remove my debugging. * Fri Jun 19 2009 Steve Traylen - 2.3-1 - Initial version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 21:02:54 -0000 1.1 +++ sources 30 Jul 2009 07:24:10 -0000 1.2 @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz From stevetraylen at fedoraproject.org Thu Jul 30 07:24:10 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 07:24:10 +0000 (UTC) Subject: rpms/uberftp/F-11 uberftp.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090730072410.8D4A111C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/uberftp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28842/F-11 Modified Files: sources Added Files: uberftp.spec Log Message: Add to el4,5 and f10,11 --- NEW FILE uberftp.spec --- %ifarch alpha ia64 ppc64 s390x sparc64 x86_64 %global flavor gcc64pthr %else %global flavor gcc32pthr %endif Name: uberftp Version: 2.4 Release: 4%{?dist} Summary: GridFTP-enabled ftp client Group: Applications/Internet License: NCSA URL: http://dims.ncsa.illinois.edu/set/uberftp/ Source0: http://dims.ncsa.illinois.edu/set/uberftp/download/uberftp-client-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: grid-packaging-tools, globus-gssapi-gsi-devel %description UberFTP is the first interactive, GridFTP-enabled ftp client. It supports GSI authentication, parallel data channels and third party transfers. %prep %setup -q -n uberftp-client-%{version} iconv -f iso8859-1 -t utf-8 copyright > copyright.conv && mv -f copyright.conv copyright %build mkdir pkgdata sed -e 's!-I$globus_location/include/$globus_flavor! -I%{_includedir}/globus -I%{_libdir}/globus/include!' -i configure.ac %{_datadir}/globus/globus-bootstrap.sh %configure --with-globus-flavor=%{flavor} --with-globus=%{_usr} --with-gpt=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/uberftp %{_mandir}/man1/uberftp.1.gz %doc Changelog.mssftp Changelog copyright %changelog * Wed Jul 22 2009 Steve Traylen 2.4-4 - Update source to version 2.4 - Include copyright file in package. * Tue Jun 23 2009 Steve Traylen 2.3-3 - Better inclusion of globus header files. * Fri Jun 19 2009 Steve Traylen - 2.3-2 - Remove my debugging. * Fri Jun 19 2009 Steve Traylen - 2.3-1 - Initial version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/uberftp/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 21:02:54 -0000 1.1 +++ sources 30 Jul 2009 07:24:10 -0000 1.2 @@ -0,0 +1 @@ +14ec224f9661a0f565835e29137405f7 uberftp-client-2.4.tar.gz From caolanm at fedoraproject.org Thu Jul 30 07:30:31 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 30 Jul 2009 07:30:31 +0000 (UTC) Subject: rpms/hunspell/devel hunspell-1.2.8-2784983.defaultlanguage.patch, 1.5, 1.6 hunspell.spec, 1.72, 1.73 Message-ID: <20090730073031.2A3A411C0425@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31955 Modified Files: hunspell-1.2.8-2784983.defaultlanguage.patch hunspell.spec Log Message: handle some other interesting edge-cases hunspell-1.2.8-2784983.defaultlanguage.patch: man/hunspell.1 | 12 +++++++++--- src/tools/hunspell.cxx | 41 ++++++++++++++++++++++++++++------------- 2 files changed, 37 insertions(+), 16 deletions(-) Index: hunspell-1.2.8-2784983.defaultlanguage.patch =================================================================== RCS file: /cvs/pkgs/rpms/hunspell/devel/hunspell-1.2.8-2784983.defaultlanguage.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-1.2.8-2784983.defaultlanguage.patch 9 Jul 2009 08:13:52 -0000 1.5 +++ hunspell-1.2.8-2784983.defaultlanguage.patch 30 Jul 2009 07:30:30 -0000 1.6 @@ -74,7 +74,7 @@ diff -ru hunspell-1.2.8.orig/src/tools/h + } + } + -+ if (strcmp(dicname, "C") == 0) ++ if ((strcmp(dicname, "C") == 0) || (strcmp(dicname, "POSIX") == 0)) + dicname=mystrdup("en_US"); + + if (! dicname) { Index: hunspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell/devel/hunspell.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- hunspell.spec 25 Jul 2009 02:19:13 -0000 1.72 +++ hunspell.spec 30 Jul 2009 07:30:30 -0000 1.73 @@ -1,7 +1,7 @@ Name: hunspell Summary: A spell checker and morphological analyzer library Version: 1.2.8 -Release: 11%{?dist} +Release: 12%{?dist} Source0: http://downloads.sourceforge.net/%{name}/hunspell-%{version}.tar.gz Source1: http://people.debian.org/~agmartin/misc/ispellaff2myspell Source2: http://people.redhat.com/caolanm/hunspell/wordlist2hunspell @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/hunspell.3.gz %changelog +* Thu Jul 30 2009 Caolan McNamara - 1.2.8-12 +- handle some other interesting edge-cases + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.8-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From chitlesh at fedoraproject.org Thu Jul 30 07:41:28 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 30 Jul 2009 07:41:28 +0000 (UTC) Subject: rpms/electric/devel electric.1, NONE, 1.1 .cvsignore, 1.3, 1.4 electric.desktop, 1.1, 1.2 electric.spec, 1.6, 1.7 import.log, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090730074128.8BE5011C00D3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/electric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3249/devel Modified Files: .cvsignore electric.desktop electric.spec import.log sources Added Files: electric.1 Log Message: 8.09 --- NEW FILE electric.1 --- .TH electric 1 11/12/00 .SH NAME electric - a VLSI design system .SH SYNOPSIS \fBelectric\fR [\fI-m\fR] [\fI-t technology\fR] [\fIlibrary\fR] .SH DESCRIPTION Electric is a general purpose system for all electrical design. It currently knows about nMOS, CMOS, Bipolar, artwork, schematics, printed-circuit boards, and many other technologies. Its has a large set of tools including multiple design-rule checkers (both incremental and hierarchical), an electrical rules checker, over a dozen simulator interfaces, multiple generators (PLA and pad frame), multiple routers (stitching, maze, river), network comparison, compaction, compensation, a VHDL compiler, and a silicon compiler that places-and-routes standard cells. .PP In addition to the text terminal used to invoke the program, Electric uses a color display with a mouse as a work station. Separate windows are used for text and graphics. .PP If a \fIlibrary\fR disk file is mentioned on the command line, that file is read as the initial design for editing. In addition, the following switches are recognized: .IP -t specifies an initial technology. The argument must be a technology name such as "nmos", "cmos", "mocmos" (MOSIS CMOS), "mocmossub" (MOSIS CMOS Submicron), "bipolar" (simple Bipolar), "schematic" (Schematic capture), or "artwork" (sketchpad mode). .IP -m specifies there may be multiple monitors and that Electric should look for them. .SH REPRESENTATION Circuits are represented as networks that contain \fInodes\fR and connecting \fIarcs\fR. The nodes are electrical components such as transistors, logic gates, and contacts. The arcs are simply wires that connect the nodes. In addition, each node has a set of \fIports\fR which are the sites of arc connection. A \fItechnology\fR, then, is simply a set of primitive nodes and arcs that are the building blocks of circuits designed in that environment. .PP Collections of nodes and arcs can also be aggregated into \fIfacets\fR of \fIcells\fR which can be used higher in the hierarchy to act as nodes. These user-defined nodes have ports that come from internal nodes whose ports are \fIexported\fR. Facets are collected in \fIlibraries\fR which contain a hierarchically consistent design. .PP Arcs have properties that help constrain the design. For example, an arc may rotate arbitrarily or be fixed in their angle. Arcs can also be stretchable or \fIrigid\fR under modification of their connecting nodes. These constraints propagate hierarchically from the bottom-up. .SH TECHNOLOGIES A large set of technologies is provided in Electric. These can be modified with the technology editor, or completely new technologies can be created. The following paragraphs describe some of the basic technologies. .PP The nMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The primitive nodes include normal contacts, buried contacts, transistors, and "pins" for making arc corners. Transistors may be serpentine and the pure layer nodes may be polygonally described with the \fBnode trace\fR command. The "nmos" technology has the standard Mead&Conway design rules. .PP The CMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The Diffusion arcs may be found in a P-well implant or in a P implant. Thus, there are two types of metal-to-diffusion contacts, two types of diffusion pins, and two types of transistors: in P-well and in P implant. As with nMOS, the transistors may be serpentine and the pure layer primitives may be polygonally defined. The "cmos" technology has the standard design rules according to Griswold; the "mocmos" technology has design rules for the MOSIS CMOS process (double metal); the "mocmossub" technology has design rules for the MOSIS CMOS Submicron process (double poly and up to 6 metal); the "rcmos" technology has round geometry for the MOSIS CMOS process. .PP The "schematic" technology provides basic symbols for doing schematic capture. It contains the logic symbols: BUFFER, AND, OR, and XOR. Negating bubbles can be placed by negating a connecting arc. There are also more complex components such as flip-flop, off-page-connector, black-box, meter, and power source. Finally, there are the electrical components: transistor, resistor, diode, capacitor, and inductor. Two arc types exist for normal wires and variable-width busses. .PP The "artwork" technology is a sketchpad environment for doing general-purpose graphics. Components can be placed with arbitrary color and shape. .PP The "generic" technology exists for those miscellaneous purposes that do not fall into the domain of other technologies. It has the universal arc and pin which can connect to ANY other object and are therefore useful in mixed-technology designs. The invisible arc can be used for constraining two nodes without making a connection. The unrouted arc can be used for electrical connections that are to be routed later with real wires. The facet-center primitive, when placed in a facet, defines the cursor origin on instances of that facet. .SH "DESIGN-RULE CHECKING" The incremental design-rule checker is normally on and watches all changes made to the circuit. It does not correct but prints error messages when design rules are violated. Hierarchy is not handled, so the contents of subfacets are not checked. .PP The hierarchical checker looks all the way down the circuit for all design-rules. Another option allows an input deck to prepared for ECAD's Dracula design-rule checker. .SH COMPACTION The compactor attempts to reduce the size of a facet by removing unnecessary space between elements. When invoked it will compact in the vertical and horizontal directions until it can find no way to compact the facet any further. It does not do hierarchical compaction, does not guarantee optimal compaction, nor can it handle non-manhattan geometry properly. The compactor will also spread out the facet to guarantee no design-rule violations, if the "spread" option is set. .SH SIMULATION There are many simulator interfaces: ESIM (the default simulator: switch-level for nMOS without timing), RSIM (switch-level for MOS with timing), RNL (switch-level for MOS with timing and LISP front-end), MOSSIM (switch-level for MOS with timing), COSMOS (switch-level for MOS with timing), VERILOG (Cadence simulator), TEXSIM (a commercial simulator), SILOS (a commercial simulator), ABEL (PAL generator/simulator for schematic), and SPICE (circuit level). MOSSIM, COSMOS, VERILOG, TEXSIM, SILOS, and ABEL do not actually simulate: they only write an input deck of your circuit. .PP In preparation for most simulators, it is necessary to export those ports that you wish to manipulate or examine. You must also export power and ground ports. .PP In preparation for SPICE simulation, you must export power and ground signals and. explicitly connect them to source nodes. The source should then be parameterized to indicate the amount and whether it is voltage or current. For example, to make a 5 volt supply, create a source node and set the SPICE card to: "DC 5". Next, all input ports must be exported and connected to the positive side of sources. Next, all values that are being plotted must be exported and have meter nodes placed on them. The node should have the top and bottom ports connected appropriately. .SH "PLA GENERATION" There are two PLA generators, one specific to nMOS layout, and another specific to CMOS layout. The nMOS PLA generator reads a single personality table and generates the array and all driving circuitry including power and ground connections. The CMOS PLA generator reads two personality tables (AND and OR) and also reads a library of PLA helper components (called "pla_mocmos") and generates the array. .SH ROUTING The router is able to do river routing, maze routing, and simple facet stitching (the explicit wiring of implicitly connected nodes that abut). River routing runs a bus of wires between the two opposite sides of a routing channel. The connections on each side must be in a line so that the bus runs between two parallel sets of points. You must use the Unrouted arc from the Generic technology to indicate the ports to be connected. The river router can also connect wires to the perpendicular sides of the routing channel if one or more Unrouted wires cross these sides. .PP There are two stitching modes: auto stitching and mimic stitching. In auto stitching, all ports that physically touch will be stitched. Mimic stitching watches arcs that are created by the user and adds similar ones at other places in the facet. .SH "NETWORK COMPARISON" The network maintainer tool is able to compare the networks in the two facets being displayed on the screen. Once compared, nodes in one facet can be equated with nodes in the other. If the two networks are automorphic or otherwise difficult to distinguish, equivalence information can be specified prior to comparison by selecting a component in the first facet then selecting a component in the second facet. .SH AUTHOR .nf Steven M. Rubin Static Free Software 4119 Alpine Road Portola Valley, Ca 94028 Also a cast of thousands: Philip Attfield (Queens University): Polygon merging, facet dates Ron Bolton (University of Saskatchewan): Miscellaneous help Mark Brinsmead (Calgary): Apollo porting Stefano Concina (Schlumberger): Polygon clipping Peter Gallant (Queen's University): ALS simulation T. J. Goodman (University of Canterbury) TEXSIM simulation D. Guptill (Technical University of Nova Scotia): X-window interface Robert Hon (Columbia University): CIF input Sundaravarathan Iyengar (Case Western Reserve University): nMOS PLA generator Allan Jost (Technical University of Nova Scotia): X-window interface Wallace Kroeker (University of Calgary): Digital filter technology, CMOS PLA generator Andrew Kostiuk (Queen's University): QUISC 1.0 Silicon compiler Glen Lawson (S-MOS Systems): GDS-II input David Lewis (University of Toronto): Short circuit checker John Mohammed (Schlumberger): Miscellaneous help Mark Moraes (University of Toronto): X-window interface Sid Penstone (Queens University): many technologies, GDS-II output, SPICE improvements, SILOS simulation, GENERIC simulation J. P. Polonovski (Ecole Polytechnique, France): Memory management improvement Kevin Ryan (Technical University of Nova Scotia): X-window interface Nora Ryan (Schlumberger): Technology translation, Compaction Brent Serbin (Queen's University): ALS Simulator Lyndon Swab (Queen's University): Northern Telecom CMOS technologies Brian W. Thomson (University of Toronto): Mimic stitcher, RSIM interface Burnie West (Schlumberger): Network maintainer help, bipolar technology Telle Whitney (Schlumberger): River router Rob Winstanley (University of Calgary): CIF input, RNL interface Russell Wright (Queen's University): Lots of help David J. Yurach (Queen's University): QUISC 2.0 Silicon compiler .fi .SH "SEE ALSO" Rubin, Steven M., "A General-Purpose Framework for CAD Algorithms", \fIIEEE Communications\fR, Special Issue on Communications and VLSI, May 1991. .br Rubin, Steven M., \fIComputer Aids for VLSI Design\fR, Addison-Wesley, Reading, Massachusetts, 1987. .br Rubin, Steven M., "An Integrated Aid for Top-Down Electrical Design", \fIProceedings, VLSI '83\fR (Anceau and Aas, eds.), North Holland, Amsterdam, 1983. .br Mead, C. and Conway, L., \fIIntroduction to VLSI Systems\fR, Addison-Wesley, 1980. .br Electrical User's Guide. .br Electric Internals manual. .SH FILES .TS l l. ~/.cadrc Personal startup file ~/electric.log Session logging file *.elib Binary input/output files *.txt Text input/output files *.cif CIF input/output files *.pla PLA personality input files *.map Color map files *.mac Macro files *.sim ESIM, RSIM, RNL, and COSMOS simulation output rsim.in RSIM simulation binary output rnl.in RNL simulation binary output *.spi SPICE simulation output *.ver VERILOG simulation output *.ntk MOSSIM simulation output *.sil SILOS simulation output *.tdl TEXSIM simulation output *.pal ABLE PAL simulation output Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Dec 2008 23:13:16 -0000 1.3 +++ .cvsignore 30 Jul 2009 07:41:27 -0000 1.4 @@ -1 +1 @@ -electric-8.08.jar +electric-8.09.jar Index: electric.desktop =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/electric.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- electric.desktop 1 Dec 2008 22:04:54 -0000 1.1 +++ electric.desktop 30 Jul 2009 07:41:27 -0000 1.2 @@ -1,6 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Name=Electric VLSI +Comment=MEMs and ASICs CAD System Exec=electric Icon=electric Type=Application Index: electric.spec =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/electric.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- electric.spec 24 Jul 2009 21:58:36 -0000 1.6 +++ electric.spec 30 Jul 2009 07:41:27 -0000 1.7 @@ -1,7 +1,7 @@ Name: electric -Version: 8.08 -Release: 4%{?dist} -Summary: Sophisticated Java based VLSI CAD System +Version: 8.09 +Release: 1%{?dist} +Summary: Sophisticated ASIC and MEM CAD System Group: Applications/Engineering License: GPLv3 @@ -9,6 +9,7 @@ URL: http://www.staticfreesof Source0: ftp://ftp.gnu.org/pub/gnu/electric/%{name}-%{version}.jar Source1: %{name}.desktop +Source2: %{name}.1 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +49,8 @@ find -name '*.jar' -o -name '*.class' -e jar xf %{SOURCE0} +#wrong-file-end-of-line-encoding +sed -i 's/\r//' packaging/README.txt packaging/LicenseGNU.txt %build ant -verbose \ @@ -63,7 +66,6 @@ ant -verbose \ install -d %{buildroot}%{_bindir} install -d %{buildroot}%{_javadir}/%{name} - # real java binary created by this spec file install -pm 0755 %{name}-%{version}.jar \ %{buildroot}%{_javadir}/%{name}/%{name}-%{version}.jar @@ -76,9 +78,12 @@ java -jar %{_javadir}/%{name}/%{name}-%{ EOF install -pm 0755 %{name} %{buildroot}%{_bindir}/%{name} +# Man page +install -d %{buildroot}%{_mandir}/man1/ +install -pm 0644 %{SOURCE2} %{buildroot}%{_mandir}/man1/ # desktop file and its icon -desktop-file-install --vendor fedora \ +desktop-file-install --vendor "" \ --dir %{buildroot}%{_datadir}/applications \ %{SOURCE1} install -d %{buildroot}%{_datadir}/pixmaps/ @@ -101,9 +106,9 @@ install -d %{buildroot}%{_javadocdir}/%{ %{_bindir}/%{name} %dir %{_javadir}/%{name}/ %{_javadir}/%{name}/%{name}-%{version}.jar -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png - +%{_mandir}/man1/%{name}.1.gz %files javadoc %defattr(-,root,root,-) @@ -111,8 +116,8 @@ install -d %{buildroot}%{_javadocdir}/%{ %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 8.08-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Thu Jul 23 2009 Chitlesh GOORAH - 8.09-1 +- new upstream release * Tue Feb 24 2009 Fedora Release Engineering - 8.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 23 Dec 2008 23:13:16 -0000 1.3 +++ import.log 30 Jul 2009 07:41:27 -0000 1.4 @@ -1,3 +1,4 @@ electric-8_07-1_fc10:HEAD:electric-8.07-1.fc10.src.rpm:1228169047 electric-8_07-2_fc10:HEAD:electric-8.07-2.fc10.src.rpm:1228626202 electric-8_08-1_fc10:HEAD:electric-8.08-1.fc10.src.rpm:1230073774 +electric-8_09-1_fc11:HEAD:electric-8.09-1.fc11.src.rpm:1248939497 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Dec 2008 23:13:16 -0000 1.3 +++ sources 30 Jul 2009 07:41:27 -0000 1.4 @@ -1 +1 @@ -57655b46f72da5e8ac647e97a40ab4b1 electric-8.08.jar +629f9ff5cd7fa6664ab39737c26e0cc9 electric-8.09.jar From chitlesh at fedoraproject.org Thu Jul 30 07:46:52 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 30 Jul 2009 07:46:52 +0000 (UTC) Subject: rpms/electric/F-11 electric.1, NONE, 1.1 .cvsignore, 1.3, 1.4 electric.desktop, 1.1, 1.2 electric.spec, 1.5, 1.6 import.log, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090730074652.F212811C00D3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/electric/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5232/F-11 Modified Files: .cvsignore electric.desktop electric.spec import.log sources Added Files: electric.1 Log Message: 8.09 --- NEW FILE electric.1 --- .TH electric 1 11/12/00 .SH NAME electric - a VLSI design system .SH SYNOPSIS \fBelectric\fR [\fI-m\fR] [\fI-t technology\fR] [\fIlibrary\fR] .SH DESCRIPTION Electric is a general purpose system for all electrical design. It currently knows about nMOS, CMOS, Bipolar, artwork, schematics, printed-circuit boards, and many other technologies. Its has a large set of tools including multiple design-rule checkers (both incremental and hierarchical), an electrical rules checker, over a dozen simulator interfaces, multiple generators (PLA and pad frame), multiple routers (stitching, maze, river), network comparison, compaction, compensation, a VHDL compiler, and a silicon compiler that places-and-routes standard cells. .PP In addition to the text terminal used to invoke the program, Electric uses a color display with a mouse as a work station. Separate windows are used for text and graphics. .PP If a \fIlibrary\fR disk file is mentioned on the command line, that file is read as the initial design for editing. In addition, the following switches are recognized: .IP -t specifies an initial technology. The argument must be a technology name such as "nmos", "cmos", "mocmos" (MOSIS CMOS), "mocmossub" (MOSIS CMOS Submicron), "bipolar" (simple Bipolar), "schematic" (Schematic capture), or "artwork" (sketchpad mode). .IP -m specifies there may be multiple monitors and that Electric should look for them. .SH REPRESENTATION Circuits are represented as networks that contain \fInodes\fR and connecting \fIarcs\fR. The nodes are electrical components such as transistors, logic gates, and contacts. The arcs are simply wires that connect the nodes. In addition, each node has a set of \fIports\fR which are the sites of arc connection. A \fItechnology\fR, then, is simply a set of primitive nodes and arcs that are the building blocks of circuits designed in that environment. .PP Collections of nodes and arcs can also be aggregated into \fIfacets\fR of \fIcells\fR which can be used higher in the hierarchy to act as nodes. These user-defined nodes have ports that come from internal nodes whose ports are \fIexported\fR. Facets are collected in \fIlibraries\fR which contain a hierarchically consistent design. .PP Arcs have properties that help constrain the design. For example, an arc may rotate arbitrarily or be fixed in their angle. Arcs can also be stretchable or \fIrigid\fR under modification of their connecting nodes. These constraints propagate hierarchically from the bottom-up. .SH TECHNOLOGIES A large set of technologies is provided in Electric. These can be modified with the technology editor, or completely new technologies can be created. The following paragraphs describe some of the basic technologies. .PP The nMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The primitive nodes include normal contacts, buried contacts, transistors, and "pins" for making arc corners. Transistors may be serpentine and the pure layer nodes may be polygonally described with the \fBnode trace\fR command. The "nmos" technology has the standard Mead&Conway design rules. .PP The CMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The Diffusion arcs may be found in a P-well implant or in a P implant. Thus, there are two types of metal-to-diffusion contacts, two types of diffusion pins, and two types of transistors: in P-well and in P implant. As with nMOS, the transistors may be serpentine and the pure layer primitives may be polygonally defined. The "cmos" technology has the standard design rules according to Griswold; the "mocmos" technology has design rules for the MOSIS CMOS process (double metal); the "mocmossub" technology has design rules for the MOSIS CMOS Submicron process (double poly and up to 6 metal); the "rcmos" technology has round geometry for the MOSIS CMOS process. .PP The "schematic" technology provides basic symbols for doing schematic capture. It contains the logic symbols: BUFFER, AND, OR, and XOR. Negating bubbles can be placed by negating a connecting arc. There are also more complex components such as flip-flop, off-page-connector, black-box, meter, and power source. Finally, there are the electrical components: transistor, resistor, diode, capacitor, and inductor. Two arc types exist for normal wires and variable-width busses. .PP The "artwork" technology is a sketchpad environment for doing general-purpose graphics. Components can be placed with arbitrary color and shape. .PP The "generic" technology exists for those miscellaneous purposes that do not fall into the domain of other technologies. It has the universal arc and pin which can connect to ANY other object and are therefore useful in mixed-technology designs. The invisible arc can be used for constraining two nodes without making a connection. The unrouted arc can be used for electrical connections that are to be routed later with real wires. The facet-center primitive, when placed in a facet, defines the cursor origin on instances of that facet. .SH "DESIGN-RULE CHECKING" The incremental design-rule checker is normally on and watches all changes made to the circuit. It does not correct but prints error messages when design rules are violated. Hierarchy is not handled, so the contents of subfacets are not checked. .PP The hierarchical checker looks all the way down the circuit for all design-rules. Another option allows an input deck to prepared for ECAD's Dracula design-rule checker. .SH COMPACTION The compactor attempts to reduce the size of a facet by removing unnecessary space between elements. When invoked it will compact in the vertical and horizontal directions until it can find no way to compact the facet any further. It does not do hierarchical compaction, does not guarantee optimal compaction, nor can it handle non-manhattan geometry properly. The compactor will also spread out the facet to guarantee no design-rule violations, if the "spread" option is set. .SH SIMULATION There are many simulator interfaces: ESIM (the default simulator: switch-level for nMOS without timing), RSIM (switch-level for MOS with timing), RNL (switch-level for MOS with timing and LISP front-end), MOSSIM (switch-level for MOS with timing), COSMOS (switch-level for MOS with timing), VERILOG (Cadence simulator), TEXSIM (a commercial simulator), SILOS (a commercial simulator), ABEL (PAL generator/simulator for schematic), and SPICE (circuit level). MOSSIM, COSMOS, VERILOG, TEXSIM, SILOS, and ABEL do not actually simulate: they only write an input deck of your circuit. .PP In preparation for most simulators, it is necessary to export those ports that you wish to manipulate or examine. You must also export power and ground ports. .PP In preparation for SPICE simulation, you must export power and ground signals and. explicitly connect them to source nodes. The source should then be parameterized to indicate the amount and whether it is voltage or current. For example, to make a 5 volt supply, create a source node and set the SPICE card to: "DC 5". Next, all input ports must be exported and connected to the positive side of sources. Next, all values that are being plotted must be exported and have meter nodes placed on them. The node should have the top and bottom ports connected appropriately. .SH "PLA GENERATION" There are two PLA generators, one specific to nMOS layout, and another specific to CMOS layout. The nMOS PLA generator reads a single personality table and generates the array and all driving circuitry including power and ground connections. The CMOS PLA generator reads two personality tables (AND and OR) and also reads a library of PLA helper components (called "pla_mocmos") and generates the array. .SH ROUTING The router is able to do river routing, maze routing, and simple facet stitching (the explicit wiring of implicitly connected nodes that abut). River routing runs a bus of wires between the two opposite sides of a routing channel. The connections on each side must be in a line so that the bus runs between two parallel sets of points. You must use the Unrouted arc from the Generic technology to indicate the ports to be connected. The river router can also connect wires to the perpendicular sides of the routing channel if one or more Unrouted wires cross these sides. .PP There are two stitching modes: auto stitching and mimic stitching. In auto stitching, all ports that physically touch will be stitched. Mimic stitching watches arcs that are created by the user and adds similar ones at other places in the facet. .SH "NETWORK COMPARISON" The network maintainer tool is able to compare the networks in the two facets being displayed on the screen. Once compared, nodes in one facet can be equated with nodes in the other. If the two networks are automorphic or otherwise difficult to distinguish, equivalence information can be specified prior to comparison by selecting a component in the first facet then selecting a component in the second facet. .SH AUTHOR .nf Steven M. Rubin Static Free Software 4119 Alpine Road Portola Valley, Ca 94028 Also a cast of thousands: Philip Attfield (Queens University): Polygon merging, facet dates Ron Bolton (University of Saskatchewan): Miscellaneous help Mark Brinsmead (Calgary): Apollo porting Stefano Concina (Schlumberger): Polygon clipping Peter Gallant (Queen's University): ALS simulation T. J. Goodman (University of Canterbury) TEXSIM simulation D. Guptill (Technical University of Nova Scotia): X-window interface Robert Hon (Columbia University): CIF input Sundaravarathan Iyengar (Case Western Reserve University): nMOS PLA generator Allan Jost (Technical University of Nova Scotia): X-window interface Wallace Kroeker (University of Calgary): Digital filter technology, CMOS PLA generator Andrew Kostiuk (Queen's University): QUISC 1.0 Silicon compiler Glen Lawson (S-MOS Systems): GDS-II input David Lewis (University of Toronto): Short circuit checker John Mohammed (Schlumberger): Miscellaneous help Mark Moraes (University of Toronto): X-window interface Sid Penstone (Queens University): many technologies, GDS-II output, SPICE improvements, SILOS simulation, GENERIC simulation J. P. Polonovski (Ecole Polytechnique, France): Memory management improvement Kevin Ryan (Technical University of Nova Scotia): X-window interface Nora Ryan (Schlumberger): Technology translation, Compaction Brent Serbin (Queen's University): ALS Simulator Lyndon Swab (Queen's University): Northern Telecom CMOS technologies Brian W. Thomson (University of Toronto): Mimic stitcher, RSIM interface Burnie West (Schlumberger): Network maintainer help, bipolar technology Telle Whitney (Schlumberger): River router Rob Winstanley (University of Calgary): CIF input, RNL interface Russell Wright (Queen's University): Lots of help David J. Yurach (Queen's University): QUISC 2.0 Silicon compiler .fi .SH "SEE ALSO" Rubin, Steven M., "A General-Purpose Framework for CAD Algorithms", \fIIEEE Communications\fR, Special Issue on Communications and VLSI, May 1991. .br Rubin, Steven M., \fIComputer Aids for VLSI Design\fR, Addison-Wesley, Reading, Massachusetts, 1987. .br Rubin, Steven M., "An Integrated Aid for Top-Down Electrical Design", \fIProceedings, VLSI '83\fR (Anceau and Aas, eds.), North Holland, Amsterdam, 1983. .br Mead, C. and Conway, L., \fIIntroduction to VLSI Systems\fR, Addison-Wesley, 1980. .br Electrical User's Guide. .br Electric Internals manual. .SH FILES .TS l l. ~/.cadrc Personal startup file ~/electric.log Session logging file *.elib Binary input/output files *.txt Text input/output files *.cif CIF input/output files *.pla PLA personality input files *.map Color map files *.mac Macro files *.sim ESIM, RSIM, RNL, and COSMOS simulation output rsim.in RSIM simulation binary output rnl.in RNL simulation binary output *.spi SPICE simulation output *.ver VERILOG simulation output *.ntk MOSSIM simulation output *.sil SILOS simulation output *.tdl TEXSIM simulation output *.pal ABLE PAL simulation output Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Dec 2008 23:13:16 -0000 1.3 +++ .cvsignore 30 Jul 2009 07:46:52 -0000 1.4 @@ -1 +1 @@ -electric-8.08.jar +electric-8.09.jar Index: electric.desktop =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-11/electric.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- electric.desktop 1 Dec 2008 22:04:54 -0000 1.1 +++ electric.desktop 30 Jul 2009 07:46:52 -0000 1.2 @@ -1,6 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Name=Electric VLSI +Comment=MEMs and ASICs CAD System Exec=electric Icon=electric Type=Application Index: electric.spec =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-11/electric.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- electric.spec 24 Feb 2009 14:22:28 -0000 1.5 +++ electric.spec 30 Jul 2009 07:46:52 -0000 1.6 @@ -1,7 +1,7 @@ Name: electric -Version: 8.08 -Release: 3%{?dist} -Summary: Sophisticated Java based VLSI CAD System +Version: 8.09 +Release: 1%{?dist} +Summary: Sophisticated ASIC and MEM CAD System Group: Applications/Engineering License: GPLv3 @@ -9,6 +9,7 @@ URL: http://www.staticfreesof Source0: ftp://ftp.gnu.org/pub/gnu/electric/%{name}-%{version}.jar Source1: %{name}.desktop +Source2: %{name}.1 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +49,8 @@ find -name '*.jar' -o -name '*.class' -e jar xf %{SOURCE0} +#wrong-file-end-of-line-encoding +sed -i 's/\r//' packaging/README.txt packaging/LicenseGNU.txt %build ant -verbose \ @@ -63,7 +66,6 @@ ant -verbose \ install -d %{buildroot}%{_bindir} install -d %{buildroot}%{_javadir}/%{name} - # real java binary created by this spec file install -pm 0755 %{name}-%{version}.jar \ %{buildroot}%{_javadir}/%{name}/%{name}-%{version}.jar @@ -76,9 +78,12 @@ java -jar %{_javadir}/%{name}/%{name}-%{ EOF install -pm 0755 %{name} %{buildroot}%{_bindir}/%{name} +# Man page +install -d %{buildroot}%{_mandir}/man1/ +install -pm 0644 %{SOURCE2} %{buildroot}%{_mandir}/man1/ # desktop file and its icon -desktop-file-install --vendor fedora \ +desktop-file-install --vendor "" \ --dir %{buildroot}%{_datadir}/applications \ %{SOURCE1} install -d %{buildroot}%{_datadir}/pixmaps/ @@ -101,9 +106,9 @@ install -d %{buildroot}%{_javadocdir}/%{ %{_bindir}/%{name} %dir %{_javadir}/%{name}/ %{_javadir}/%{name}/%{name}-%{version}.jar -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png - +%{_mandir}/man1/%{name}.1.gz %files javadoc %defattr(-,root,root,-) @@ -111,6 +116,9 @@ install -d %{buildroot}%{_javadocdir}/%{ %changelog +* Thu Jul 23 2009 Chitlesh GOORAH - 8.09-1 +- new upstream release + * Tue Feb 24 2009 Fedora Release Engineering - 8.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 23 Dec 2008 23:13:16 -0000 1.3 +++ import.log 30 Jul 2009 07:46:52 -0000 1.4 @@ -1,3 +1,4 @@ electric-8_07-1_fc10:HEAD:electric-8.07-1.fc10.src.rpm:1228169047 electric-8_07-2_fc10:HEAD:electric-8.07-2.fc10.src.rpm:1228626202 electric-8_08-1_fc10:HEAD:electric-8.08-1.fc10.src.rpm:1230073774 +electric-8_09-1_fc11:F-11:electric-8.09-1.fc11.src.rpm:1248939757 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Dec 2008 23:13:16 -0000 1.3 +++ sources 30 Jul 2009 07:46:52 -0000 1.4 @@ -1 +1 @@ -57655b46f72da5e8ac647e97a40ab4b1 electric-8.08.jar +629f9ff5cd7fa6664ab39737c26e0cc9 electric-8.09.jar From chitlesh at fedoraproject.org Thu Jul 30 07:51:56 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 30 Jul 2009 07:51:56 +0000 (UTC) Subject: rpms/electric/F-10 electric.1, NONE, 1.1 .cvsignore, 1.3, 1.4 electric.desktop, 1.1, 1.2 electric.spec, 1.3, 1.4 import.log, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090730075156.8637811C00D3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/electric/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6998/F-10 Modified Files: .cvsignore electric.desktop electric.spec import.log sources Added Files: electric.1 Log Message: 8.09 --- NEW FILE electric.1 --- .TH electric 1 11/12/00 .SH NAME electric - a VLSI design system .SH SYNOPSIS \fBelectric\fR [\fI-m\fR] [\fI-t technology\fR] [\fIlibrary\fR] .SH DESCRIPTION Electric is a general purpose system for all electrical design. It currently knows about nMOS, CMOS, Bipolar, artwork, schematics, printed-circuit boards, and many other technologies. Its has a large set of tools including multiple design-rule checkers (both incremental and hierarchical), an electrical rules checker, over a dozen simulator interfaces, multiple generators (PLA and pad frame), multiple routers (stitching, maze, river), network comparison, compaction, compensation, a VHDL compiler, and a silicon compiler that places-and-routes standard cells. .PP In addition to the text terminal used to invoke the program, Electric uses a color display with a mouse as a work station. Separate windows are used for text and graphics. .PP If a \fIlibrary\fR disk file is mentioned on the command line, that file is read as the initial design for editing. In addition, the following switches are recognized: .IP -t specifies an initial technology. The argument must be a technology name such as "nmos", "cmos", "mocmos" (MOSIS CMOS), "mocmossub" (MOSIS CMOS Submicron), "bipolar" (simple Bipolar), "schematic" (Schematic capture), or "artwork" (sketchpad mode). .IP -m specifies there may be multiple monitors and that Electric should look for them. .SH REPRESENTATION Circuits are represented as networks that contain \fInodes\fR and connecting \fIarcs\fR. The nodes are electrical components such as transistors, logic gates, and contacts. The arcs are simply wires that connect the nodes. In addition, each node has a set of \fIports\fR which are the sites of arc connection. A \fItechnology\fR, then, is simply a set of primitive nodes and arcs that are the building blocks of circuits designed in that environment. .PP Collections of nodes and arcs can also be aggregated into \fIfacets\fR of \fIcells\fR which can be used higher in the hierarchy to act as nodes. These user-defined nodes have ports that come from internal nodes whose ports are \fIexported\fR. Facets are collected in \fIlibraries\fR which contain a hierarchically consistent design. .PP Arcs have properties that help constrain the design. For example, an arc may rotate arbitrarily or be fixed in their angle. Arcs can also be stretchable or \fIrigid\fR under modification of their connecting nodes. These constraints propagate hierarchically from the bottom-up. .SH TECHNOLOGIES A large set of technologies is provided in Electric. These can be modified with the technology editor, or completely new technologies can be created. The following paragraphs describe some of the basic technologies. .PP The nMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The primitive nodes include normal contacts, buried contacts, transistors, and "pins" for making arc corners. Transistors may be serpentine and the pure layer nodes may be polygonally described with the \fBnode trace\fR command. The "nmos" technology has the standard Mead&Conway design rules. .PP The CMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The Diffusion arcs may be found in a P-well implant or in a P implant. Thus, there are two types of metal-to-diffusion contacts, two types of diffusion pins, and two types of transistors: in P-well and in P implant. As with nMOS, the transistors may be serpentine and the pure layer primitives may be polygonally defined. The "cmos" technology has the standard design rules according to Griswold; the "mocmos" technology has design rules for the MOSIS CMOS process (double metal); the "mocmossub" technology has design rules for the MOSIS CMOS Submicron process (double poly and up to 6 metal); the "rcmos" technology has round geometry for the MOSIS CMOS process. .PP The "schematic" technology provides basic symbols for doing schematic capture. It contains the logic symbols: BUFFER, AND, OR, and XOR. Negating bubbles can be placed by negating a connecting arc. There are also more complex components such as flip-flop, off-page-connector, black-box, meter, and power source. Finally, there are the electrical components: transistor, resistor, diode, capacitor, and inductor. Two arc types exist for normal wires and variable-width busses. .PP The "artwork" technology is a sketchpad environment for doing general-purpose graphics. Components can be placed with arbitrary color and shape. .PP The "generic" technology exists for those miscellaneous purposes that do not fall into the domain of other technologies. It has the universal arc and pin which can connect to ANY other object and are therefore useful in mixed-technology designs. The invisible arc can be used for constraining two nodes without making a connection. The unrouted arc can be used for electrical connections that are to be routed later with real wires. The facet-center primitive, when placed in a facet, defines the cursor origin on instances of that facet. .SH "DESIGN-RULE CHECKING" The incremental design-rule checker is normally on and watches all changes made to the circuit. It does not correct but prints error messages when design rules are violated. Hierarchy is not handled, so the contents of subfacets are not checked. .PP The hierarchical checker looks all the way down the circuit for all design-rules. Another option allows an input deck to prepared for ECAD's Dracula design-rule checker. .SH COMPACTION The compactor attempts to reduce the size of a facet by removing unnecessary space between elements. When invoked it will compact in the vertical and horizontal directions until it can find no way to compact the facet any further. It does not do hierarchical compaction, does not guarantee optimal compaction, nor can it handle non-manhattan geometry properly. The compactor will also spread out the facet to guarantee no design-rule violations, if the "spread" option is set. .SH SIMULATION There are many simulator interfaces: ESIM (the default simulator: switch-level for nMOS without timing), RSIM (switch-level for MOS with timing), RNL (switch-level for MOS with timing and LISP front-end), MOSSIM (switch-level for MOS with timing), COSMOS (switch-level for MOS with timing), VERILOG (Cadence simulator), TEXSIM (a commercial simulator), SILOS (a commercial simulator), ABEL (PAL generator/simulator for schematic), and SPICE (circuit level). MOSSIM, COSMOS, VERILOG, TEXSIM, SILOS, and ABEL do not actually simulate: they only write an input deck of your circuit. .PP In preparation for most simulators, it is necessary to export those ports that you wish to manipulate or examine. You must also export power and ground ports. .PP In preparation for SPICE simulation, you must export power and ground signals and. explicitly connect them to source nodes. The source should then be parameterized to indicate the amount and whether it is voltage or current. For example, to make a 5 volt supply, create a source node and set the SPICE card to: "DC 5". Next, all input ports must be exported and connected to the positive side of sources. Next, all values that are being plotted must be exported and have meter nodes placed on them. The node should have the top and bottom ports connected appropriately. .SH "PLA GENERATION" There are two PLA generators, one specific to nMOS layout, and another specific to CMOS layout. The nMOS PLA generator reads a single personality table and generates the array and all driving circuitry including power and ground connections. The CMOS PLA generator reads two personality tables (AND and OR) and also reads a library of PLA helper components (called "pla_mocmos") and generates the array. .SH ROUTING The router is able to do river routing, maze routing, and simple facet stitching (the explicit wiring of implicitly connected nodes that abut). River routing runs a bus of wires between the two opposite sides of a routing channel. The connections on each side must be in a line so that the bus runs between two parallel sets of points. You must use the Unrouted arc from the Generic technology to indicate the ports to be connected. The river router can also connect wires to the perpendicular sides of the routing channel if one or more Unrouted wires cross these sides. .PP There are two stitching modes: auto stitching and mimic stitching. In auto stitching, all ports that physically touch will be stitched. Mimic stitching watches arcs that are created by the user and adds similar ones at other places in the facet. .SH "NETWORK COMPARISON" The network maintainer tool is able to compare the networks in the two facets being displayed on the screen. Once compared, nodes in one facet can be equated with nodes in the other. If the two networks are automorphic or otherwise difficult to distinguish, equivalence information can be specified prior to comparison by selecting a component in the first facet then selecting a component in the second facet. .SH AUTHOR .nf Steven M. Rubin Static Free Software 4119 Alpine Road Portola Valley, Ca 94028 Also a cast of thousands: Philip Attfield (Queens University): Polygon merging, facet dates Ron Bolton (University of Saskatchewan): Miscellaneous help Mark Brinsmead (Calgary): Apollo porting Stefano Concina (Schlumberger): Polygon clipping Peter Gallant (Queen's University): ALS simulation T. J. Goodman (University of Canterbury) TEXSIM simulation D. Guptill (Technical University of Nova Scotia): X-window interface Robert Hon (Columbia University): CIF input Sundaravarathan Iyengar (Case Western Reserve University): nMOS PLA generator Allan Jost (Technical University of Nova Scotia): X-window interface Wallace Kroeker (University of Calgary): Digital filter technology, CMOS PLA generator Andrew Kostiuk (Queen's University): QUISC 1.0 Silicon compiler Glen Lawson (S-MOS Systems): GDS-II input David Lewis (University of Toronto): Short circuit checker John Mohammed (Schlumberger): Miscellaneous help Mark Moraes (University of Toronto): X-window interface Sid Penstone (Queens University): many technologies, GDS-II output, SPICE improvements, SILOS simulation, GENERIC simulation J. P. Polonovski (Ecole Polytechnique, France): Memory management improvement Kevin Ryan (Technical University of Nova Scotia): X-window interface Nora Ryan (Schlumberger): Technology translation, Compaction Brent Serbin (Queen's University): ALS Simulator Lyndon Swab (Queen's University): Northern Telecom CMOS technologies Brian W. Thomson (University of Toronto): Mimic stitcher, RSIM interface Burnie West (Schlumberger): Network maintainer help, bipolar technology Telle Whitney (Schlumberger): River router Rob Winstanley (University of Calgary): CIF input, RNL interface Russell Wright (Queen's University): Lots of help David J. Yurach (Queen's University): QUISC 2.0 Silicon compiler .fi .SH "SEE ALSO" Rubin, Steven M., "A General-Purpose Framework for CAD Algorithms", \fIIEEE Communications\fR, Special Issue on Communications and VLSI, May 1991. .br Rubin, Steven M., \fIComputer Aids for VLSI Design\fR, Addison-Wesley, Reading, Massachusetts, 1987. .br Rubin, Steven M., "An Integrated Aid for Top-Down Electrical Design", \fIProceedings, VLSI '83\fR (Anceau and Aas, eds.), North Holland, Amsterdam, 1983. .br Mead, C. and Conway, L., \fIIntroduction to VLSI Systems\fR, Addison-Wesley, 1980. .br Electrical User's Guide. .br Electric Internals manual. .SH FILES .TS l l. ~/.cadrc Personal startup file ~/electric.log Session logging file *.elib Binary input/output files *.txt Text input/output files *.cif CIF input/output files *.pla PLA personality input files *.map Color map files *.mac Macro files *.sim ESIM, RSIM, RNL, and COSMOS simulation output rsim.in RSIM simulation binary output rnl.in RNL simulation binary output *.spi SPICE simulation output *.ver VERILOG simulation output *.ntk MOSSIM simulation output *.sil SILOS simulation output *.tdl TEXSIM simulation output *.pal ABLE PAL simulation output Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 6 Jan 2009 23:20:04 -0000 1.3 +++ .cvsignore 30 Jul 2009 07:51:56 -0000 1.4 @@ -1 +1 @@ -electric-8.08.jar +electric-8.09.jar Index: electric.desktop =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-10/electric.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- electric.desktop 1 Dec 2008 21:46:57 -0000 1.1 +++ electric.desktop 30 Jul 2009 07:51:56 -0000 1.2 @@ -1,6 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Name=Electric VLSI +Comment=MEMs and ASICs CAD System Exec=electric Icon=electric Type=Application Index: electric.spec =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-10/electric.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- electric.spec 6 Jan 2009 23:20:04 -0000 1.3 +++ electric.spec 30 Jul 2009 07:51:56 -0000 1.4 @@ -1,7 +1,7 @@ Name: electric -Version: 8.08 +Version: 8.09 Release: 1%{?dist} -Summary: Sophisticated Java based VLSI CAD System +Summary: Sophisticated ASIC and MEM CAD System Group: Applications/Engineering License: GPLv3 @@ -9,6 +9,7 @@ URL: http://www.staticfreesof Source0: ftp://ftp.gnu.org/pub/gnu/electric/%{name}-%{version}.jar Source1: %{name}.desktop +Source2: %{name}.1 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +49,8 @@ find -name '*.jar' -o -name '*.class' -e jar xf %{SOURCE0} +#wrong-file-end-of-line-encoding +sed -i 's/\r//' packaging/README.txt packaging/LicenseGNU.txt %build ant -verbose \ @@ -63,7 +66,6 @@ ant -verbose \ install -d %{buildroot}%{_bindir} install -d %{buildroot}%{_javadir}/%{name} - # real java binary created by this spec file install -pm 0755 %{name}-%{version}.jar \ %{buildroot}%{_javadir}/%{name}/%{name}-%{version}.jar @@ -76,9 +78,12 @@ java -jar %{_javadir}/%{name}/%{name}-%{ EOF install -pm 0755 %{name} %{buildroot}%{_bindir}/%{name} +# Man page +install -d %{buildroot}%{_mandir}/man1/ +install -pm 0644 %{SOURCE2} %{buildroot}%{_mandir}/man1/ # desktop file and its icon -desktop-file-install --vendor fedora \ +desktop-file-install --vendor "" \ --dir %{buildroot}%{_datadir}/applications \ %{SOURCE1} install -d %{buildroot}%{_datadir}/pixmaps/ @@ -99,10 +104,11 @@ install -d %{buildroot}%{_javadocdir}/%{ %defattr(-,root,root,-) %doc packaging/README.txt ChangeLog.txt packaging/LicenseGNU.txt %{_bindir}/%{name} +%dir %{_javadir}/%{name}/ %{_javadir}/%{name}/%{name}-%{version}.jar -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png - +%{_mandir}/man1/%{name}.1.gz %files javadoc %defattr(-,root,root,-) @@ -110,6 +116,15 @@ install -d %{buildroot}%{_javadocdir}/%{ %changelog +* Thu Jul 23 2009 Chitlesh GOORAH - 8.09-1 +- new upstream release + +* Tue Feb 24 2009 Fedora Release Engineering - 8.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Feb 01 2009 Chitlesh GOORAH - 8.08-2 +- bugfix for RHBZ #483343 + * Tue Dec 23 2008 Chitlesh GOORAH - 8.08-1 - new upstream release Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 6 Jan 2009 23:20:04 -0000 1.3 +++ import.log 30 Jul 2009 07:51:56 -0000 1.4 @@ -1,3 +1,4 @@ electric-8_07-1_fc10:F-10:electric-8.07-1.fc10.src.rpm:1228167979 electric-8_07-2_fc10:F-10:electric-8.07-2.fc10.src.rpm:1228626007 electric-8_08-1_fc10:F-10:electric-8.08-1.fc10.src.rpm:1231283829 +electric-8_09-1_fc11:F-10:electric-8.09-1.fc11.src.rpm:1248940228 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/electric/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Jan 2009 23:20:04 -0000 1.3 +++ sources 30 Jul 2009 07:51:56 -0000 1.4 @@ -1 +1 @@ -57655b46f72da5e8ac647e97a40ab4b1 electric-8.08.jar +629f9ff5cd7fa6664ab39737c26e0cc9 electric-8.09.jar From pkgdb at fedoraproject.org Thu Jul 30 07:59:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:07 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchbugzilla Message-ID: <20090730075907.2C09510F87E@bastion2.fedora.phx.redhat.com> heffer has requested the watchbugzilla acl on php-ZendFramework (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:14 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested commit Message-ID: <20090730075914.559D410F89A@bastion2.fedora.phx.redhat.com> heffer has requested the commit acl on php-ZendFramework (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:16 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchcommits Message-ID: <20090730075916.F1B4910F89D@bastion2.fedora.phx.redhat.com> heffer has requested the watchcommits acl on php-ZendFramework (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:25 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchbugzilla Message-ID: <20090730075925.48C7010F87E@bastion2.fedora.phx.redhat.com> heffer has requested the watchbugzilla acl on php-ZendFramework (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:27 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchcommits Message-ID: <20090730075927.3BD3910F889@bastion2.fedora.phx.redhat.com> heffer has requested the watchcommits acl on php-ZendFramework (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:32 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested commit Message-ID: <20090730075932.F320910F89C@bastion2.fedora.phx.redhat.com> heffer has requested the commit acl on php-ZendFramework (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:37 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchbugzilla Message-ID: <20090730075937.4E5E110F8B4@bastion2.fedora.phx.redhat.com> heffer has requested the watchbugzilla acl on php-ZendFramework (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:38 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested watchcommits Message-ID: <20090730075938.956A010F89E@bastion2.fedora.phx.redhat.com> heffer has requested the watchcommits acl on php-ZendFramework (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 07:59:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 07:59:40 +0000 Subject: [pkgdb] php-ZendFramework: heffer has requested commit Message-ID: <20090730075940.304B510F87E@bastion2.fedora.phx.redhat.com> heffer has requested the commit acl on php-ZendFramework (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From than at fedoraproject.org Thu Jul 30 08:04:00 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 08:04:00 +0000 (UTC) Subject: rpms/kdebase-workspace/devel sources,1.41,1.42 Message-ID: <20090730080400.2703D11C0417@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11685 Modified Files: sources Log Message: respin Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 29 Jul 2009 22:29:36 -0000 1.41 +++ sources 30 Jul 2009 08:03:59 -0000 1.42 @@ -1 +1 @@ -a8eac6a169994e1fed17fafebd32defa kdebase-workspace-4.3.0.tar.bz2 +fa5c39df1559e47b3176703a5b3e1ab4 kdebase-workspace-4.3.0.tar.bz2 From chitlesh at fedoraproject.org Thu Jul 30 08:03:59 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 30 Jul 2009 08:03:59 +0000 (UTC) Subject: rpms/electric/EL-5 electric.1, NONE, 1.1 .cvsignore, 1.2, 1.3 electric.desktop, 1.1, 1.2 electric.spec, 1.2, 1.3 import.log, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730080400.0243F11C00D3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/electric/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11751/EL-5 Modified Files: .cvsignore electric.desktop electric.spec import.log sources Added Files: electric.1 Log Message: 8.09 --- NEW FILE electric.1 --- .TH electric 1 11/12/00 .SH NAME electric - a VLSI design system .SH SYNOPSIS \fBelectric\fR [\fI-m\fR] [\fI-t technology\fR] [\fIlibrary\fR] .SH DESCRIPTION Electric is a general purpose system for all electrical design. It currently knows about nMOS, CMOS, Bipolar, artwork, schematics, printed-circuit boards, and many other technologies. Its has a large set of tools including multiple design-rule checkers (both incremental and hierarchical), an electrical rules checker, over a dozen simulator interfaces, multiple generators (PLA and pad frame), multiple routers (stitching, maze, river), network comparison, compaction, compensation, a VHDL compiler, and a silicon compiler that places-and-routes standard cells. .PP In addition to the text terminal used to invoke the program, Electric uses a color display with a mouse as a work station. Separate windows are used for text and graphics. .PP If a \fIlibrary\fR disk file is mentioned on the command line, that file is read as the initial design for editing. In addition, the following switches are recognized: .IP -t specifies an initial technology. The argument must be a technology name such as "nmos", "cmos", "mocmos" (MOSIS CMOS), "mocmossub" (MOSIS CMOS Submicron), "bipolar" (simple Bipolar), "schematic" (Schematic capture), or "artwork" (sketchpad mode). .IP -m specifies there may be multiple monitors and that Electric should look for them. .SH REPRESENTATION Circuits are represented as networks that contain \fInodes\fR and connecting \fIarcs\fR. The nodes are electrical components such as transistors, logic gates, and contacts. The arcs are simply wires that connect the nodes. In addition, each node has a set of \fIports\fR which are the sites of arc connection. A \fItechnology\fR, then, is simply a set of primitive nodes and arcs that are the building blocks of circuits designed in that environment. .PP Collections of nodes and arcs can also be aggregated into \fIfacets\fR of \fIcells\fR which can be used higher in the hierarchy to act as nodes. These user-defined nodes have ports that come from internal nodes whose ports are \fIexported\fR. Facets are collected in \fIlibraries\fR which contain a hierarchically consistent design. .PP Arcs have properties that help constrain the design. For example, an arc may rotate arbitrarily or be fixed in their angle. Arcs can also be stretchable or \fIrigid\fR under modification of their connecting nodes. These constraints propagate hierarchically from the bottom-up. .SH TECHNOLOGIES A large set of technologies is provided in Electric. These can be modified with the technology editor, or completely new technologies can be created. The following paragraphs describe some of the basic technologies. .PP The nMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The primitive nodes include normal contacts, buried contacts, transistors, and "pins" for making arc corners. Transistors may be serpentine and the pure layer nodes may be polygonally described with the \fBnode trace\fR command. The "nmos" technology has the standard Mead&Conway design rules. .PP The CMOS technologies have arcs available in Metal, Polysilicon, and Diffusion. The Diffusion arcs may be found in a P-well implant or in a P implant. Thus, there are two types of metal-to-diffusion contacts, two types of diffusion pins, and two types of transistors: in P-well and in P implant. As with nMOS, the transistors may be serpentine and the pure layer primitives may be polygonally defined. The "cmos" technology has the standard design rules according to Griswold; the "mocmos" technology has design rules for the MOSIS CMOS process (double metal); the "mocmossub" technology has design rules for the MOSIS CMOS Submicron process (double poly and up to 6 metal); the "rcmos" technology has round geometry for the MOSIS CMOS process. .PP The "schematic" technology provides basic symbols for doing schematic capture. It contains the logic symbols: BUFFER, AND, OR, and XOR. Negating bubbles can be placed by negating a connecting arc. There are also more complex components such as flip-flop, off-page-connector, black-box, meter, and power source. Finally, there are the electrical components: transistor, resistor, diode, capacitor, and inductor. Two arc types exist for normal wires and variable-width busses. .PP The "artwork" technology is a sketchpad environment for doing general-purpose graphics. Components can be placed with arbitrary color and shape. .PP The "generic" technology exists for those miscellaneous purposes that do not fall into the domain of other technologies. It has the universal arc and pin which can connect to ANY other object and are therefore useful in mixed-technology designs. The invisible arc can be used for constraining two nodes without making a connection. The unrouted arc can be used for electrical connections that are to be routed later with real wires. The facet-center primitive, when placed in a facet, defines the cursor origin on instances of that facet. .SH "DESIGN-RULE CHECKING" The incremental design-rule checker is normally on and watches all changes made to the circuit. It does not correct but prints error messages when design rules are violated. Hierarchy is not handled, so the contents of subfacets are not checked. .PP The hierarchical checker looks all the way down the circuit for all design-rules. Another option allows an input deck to prepared for ECAD's Dracula design-rule checker. .SH COMPACTION The compactor attempts to reduce the size of a facet by removing unnecessary space between elements. When invoked it will compact in the vertical and horizontal directions until it can find no way to compact the facet any further. It does not do hierarchical compaction, does not guarantee optimal compaction, nor can it handle non-manhattan geometry properly. The compactor will also spread out the facet to guarantee no design-rule violations, if the "spread" option is set. .SH SIMULATION There are many simulator interfaces: ESIM (the default simulator: switch-level for nMOS without timing), RSIM (switch-level for MOS with timing), RNL (switch-level for MOS with timing and LISP front-end), MOSSIM (switch-level for MOS with timing), COSMOS (switch-level for MOS with timing), VERILOG (Cadence simulator), TEXSIM (a commercial simulator), SILOS (a commercial simulator), ABEL (PAL generator/simulator for schematic), and SPICE (circuit level). MOSSIM, COSMOS, VERILOG, TEXSIM, SILOS, and ABEL do not actually simulate: they only write an input deck of your circuit. .PP In preparation for most simulators, it is necessary to export those ports that you wish to manipulate or examine. You must also export power and ground ports. .PP In preparation for SPICE simulation, you must export power and ground signals and. explicitly connect them to source nodes. The source should then be parameterized to indicate the amount and whether it is voltage or current. For example, to make a 5 volt supply, create a source node and set the SPICE card to: "DC 5". Next, all input ports must be exported and connected to the positive side of sources. Next, all values that are being plotted must be exported and have meter nodes placed on them. The node should have the top and bottom ports connected appropriately. .SH "PLA GENERATION" There are two PLA generators, one specific to nMOS layout, and another specific to CMOS layout. The nMOS PLA generator reads a single personality table and generates the array and all driving circuitry including power and ground connections. The CMOS PLA generator reads two personality tables (AND and OR) and also reads a library of PLA helper components (called "pla_mocmos") and generates the array. .SH ROUTING The router is able to do river routing, maze routing, and simple facet stitching (the explicit wiring of implicitly connected nodes that abut). River routing runs a bus of wires between the two opposite sides of a routing channel. The connections on each side must be in a line so that the bus runs between two parallel sets of points. You must use the Unrouted arc from the Generic technology to indicate the ports to be connected. The river router can also connect wires to the perpendicular sides of the routing channel if one or more Unrouted wires cross these sides. .PP There are two stitching modes: auto stitching and mimic stitching. In auto stitching, all ports that physically touch will be stitched. Mimic stitching watches arcs that are created by the user and adds similar ones at other places in the facet. .SH "NETWORK COMPARISON" The network maintainer tool is able to compare the networks in the two facets being displayed on the screen. Once compared, nodes in one facet can be equated with nodes in the other. If the two networks are automorphic or otherwise difficult to distinguish, equivalence information can be specified prior to comparison by selecting a component in the first facet then selecting a component in the second facet. .SH AUTHOR .nf Steven M. Rubin Static Free Software 4119 Alpine Road Portola Valley, Ca 94028 Also a cast of thousands: Philip Attfield (Queens University): Polygon merging, facet dates Ron Bolton (University of Saskatchewan): Miscellaneous help Mark Brinsmead (Calgary): Apollo porting Stefano Concina (Schlumberger): Polygon clipping Peter Gallant (Queen's University): ALS simulation T. J. Goodman (University of Canterbury) TEXSIM simulation D. Guptill (Technical University of Nova Scotia): X-window interface Robert Hon (Columbia University): CIF input Sundaravarathan Iyengar (Case Western Reserve University): nMOS PLA generator Allan Jost (Technical University of Nova Scotia): X-window interface Wallace Kroeker (University of Calgary): Digital filter technology, CMOS PLA generator Andrew Kostiuk (Queen's University): QUISC 1.0 Silicon compiler Glen Lawson (S-MOS Systems): GDS-II input David Lewis (University of Toronto): Short circuit checker John Mohammed (Schlumberger): Miscellaneous help Mark Moraes (University of Toronto): X-window interface Sid Penstone (Queens University): many technologies, GDS-II output, SPICE improvements, SILOS simulation, GENERIC simulation J. P. Polonovski (Ecole Polytechnique, France): Memory management improvement Kevin Ryan (Technical University of Nova Scotia): X-window interface Nora Ryan (Schlumberger): Technology translation, Compaction Brent Serbin (Queen's University): ALS Simulator Lyndon Swab (Queen's University): Northern Telecom CMOS technologies Brian W. Thomson (University of Toronto): Mimic stitcher, RSIM interface Burnie West (Schlumberger): Network maintainer help, bipolar technology Telle Whitney (Schlumberger): River router Rob Winstanley (University of Calgary): CIF input, RNL interface Russell Wright (Queen's University): Lots of help David J. Yurach (Queen's University): QUISC 2.0 Silicon compiler .fi .SH "SEE ALSO" Rubin, Steven M., "A General-Purpose Framework for CAD Algorithms", \fIIEEE Communications\fR, Special Issue on Communications and VLSI, May 1991. .br Rubin, Steven M., \fIComputer Aids for VLSI Design\fR, Addison-Wesley, Reading, Massachusetts, 1987. .br Rubin, Steven M., "An Integrated Aid for Top-Down Electrical Design", \fIProceedings, VLSI '83\fR (Anceau and Aas, eds.), North Holland, Amsterdam, 1983. .br Mead, C. and Conway, L., \fIIntroduction to VLSI Systems\fR, Addison-Wesley, 1980. .br Electrical User's Guide. .br Electric Internals manual. .SH FILES .TS l l. ~/.cadrc Personal startup file ~/electric.log Session logging file *.elib Binary input/output files *.txt Text input/output files *.cif CIF input/output files *.pla PLA personality input files *.map Color map files *.mac Macro files *.sim ESIM, RSIM, RNL, and COSMOS simulation output rsim.in RSIM simulation binary output rnl.in RNL simulation binary output *.spi SPICE simulation output *.ver VERILOG simulation output *.ntk MOSSIM simulation output *.sil SILOS simulation output *.tdl TEXSIM simulation output *.pal ABLE PAL simulation output Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/electric/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Dec 2008 21:56:02 -0000 1.2 +++ .cvsignore 30 Jul 2009 08:03:57 -0000 1.3 @@ -1 +1 @@ -electric-8.07.jar +electric-8.09.jar Index: electric.desktop =================================================================== RCS file: /cvs/pkgs/rpms/electric/EL-5/electric.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- electric.desktop 1 Dec 2008 21:56:02 -0000 1.1 +++ electric.desktop 30 Jul 2009 08:03:57 -0000 1.2 @@ -1,6 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Name=Electric VLSI +Comment=MEMs and ASICs CAD System Exec=electric Icon=electric Type=Application Index: electric.spec =================================================================== RCS file: /cvs/pkgs/rpms/electric/EL-5/electric.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- electric.spec 7 Dec 2008 05:05:40 -0000 1.2 +++ electric.spec 30 Jul 2009 08:03:57 -0000 1.3 @@ -1,7 +1,7 @@ Name: electric -Version: 8.07 -Release: 2%{?dist} -Summary: Sophisticated Java based VLSI CAD System +Version: 8.09 +Release: 1%{?dist} +Summary: Sophisticated ASIC and MEM CAD System Group: Applications/Engineering License: GPLv3 @@ -9,6 +9,7 @@ URL: http://www.staticfreesof Source0: ftp://ftp.gnu.org/pub/gnu/electric/%{name}-%{version}.jar Source1: %{name}.desktop +Source2: %{name}.1 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +49,8 @@ find -name '*.jar' -o -name '*.class' -e jar xf %{SOURCE0} +#wrong-file-end-of-line-encoding +sed -i 's/\r//' packaging/README.txt packaging/LicenseGNU.txt %build ant -verbose \ @@ -63,7 +66,6 @@ ant -verbose \ install -d %{buildroot}%{_bindir} install -d %{buildroot}%{_javadir}/%{name} - # real java binary created by this spec file install -pm 0755 %{name}-%{version}.jar \ %{buildroot}%{_javadir}/%{name}/%{name}-%{version}.jar @@ -76,9 +78,12 @@ java -jar %{_javadir}/%{name}/%{name}-%{ EOF install -pm 0755 %{name} %{buildroot}%{_bindir}/%{name} +# Man page +install -d %{buildroot}%{_mandir}/man1/ +install -pm 0644 %{SOURCE2} %{buildroot}%{_mandir}/man1/ # desktop file and its icon -desktop-file-install --vendor fedora \ +desktop-file-install --vendor "" \ --dir %{buildroot}%{_datadir}/applications \ %{SOURCE1} install -d %{buildroot}%{_datadir}/pixmaps/ @@ -99,10 +104,11 @@ install -d %{buildroot}%{_javadocdir}/%{ %defattr(-,root,root,-) %doc packaging/README.txt ChangeLog.txt packaging/LicenseGNU.txt %{_bindir}/%{name} +%dir %{_javadir}/%{name}/ %{_javadir}/%{name}/%{name}-%{version}.jar -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png - +%{_mandir}/man1/%{name}.1.gz %files javadoc %defattr(-,root,root,-) @@ -110,6 +116,18 @@ install -d %{buildroot}%{_javadocdir}/%{ %changelog +* Thu Jul 23 2009 Chitlesh GOORAH - 8.09-1 +- new upstream release + +* Tue Feb 24 2009 Fedora Release Engineering - 8.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Feb 01 2009 Chitlesh GOORAH - 8.08-2 +- bugfix for RHBZ #483343 + +* Tue Dec 23 2008 Chitlesh GOORAH - 8.08-1 +- new upstream release + * Sun Dec 07 2008 Chitlesh GOORAH - 8.07-2 - Added desktop-file-utils as BR Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/electric/EL-5/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 7 Dec 2008 05:05:40 -0000 1.2 +++ import.log 30 Jul 2009 08:03:57 -0000 1.3 @@ -1,2 +1,3 @@ electric-8_07-1_fc10:EL-5:electric-8.07-1.fc10.src.rpm:1228168470 electric-8_07-2_fc10:EL-5:electric-8.07-2.fc10.src.rpm:1228626302 +electric-8_09-1_fc11:EL-5:electric-8.09-1.fc11.src.rpm:1248940620 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/electric/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Dec 2008 21:56:02 -0000 1.2 +++ sources 30 Jul 2009 08:03:57 -0000 1.3 @@ -1 +1 @@ -b4fd104575b9c21dd2a005627f30f696 electric-8.07.jar +629f9ff5cd7fa6664ab39737c26e0cc9 electric-8.09.jar From pkgdb at fedoraproject.org Thu Jul 30 08:05:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:05:45 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080546.0366C10F87E@bastion2.fedora.phx.redhat.com> akahl has set the watchbugzilla acl on php-ZendFramework (Fedora devel) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:05:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:05:47 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080547.6BF9210F89C@bastion2.fedora.phx.redhat.com> akahl has set the watchcommits acl on php-ZendFramework (Fedora devel) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:05:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:05:48 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080548.C0DE410F89F@bastion2.fedora.phx.redhat.com> akahl has set the commit acl on php-ZendFramework (Fedora devel) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:00 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080600.4035110F875@bastion2.fedora.phx.redhat.com> akahl has set the watchbugzilla acl on php-ZendFramework (Fedora 10) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:00 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080600.D51B110F8B4@bastion2.fedora.phx.redhat.com> akahl has set the watchcommits acl on php-ZendFramework (Fedora 10) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:02 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080602.C2C8C10F8B7@bastion2.fedora.phx.redhat.com> akahl has set the commit acl on php-ZendFramework (Fedora 10) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:03 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080603.4A45810F8BB@bastion2.fedora.phx.redhat.com> akahl has set the watchbugzilla acl on php-ZendFramework (Fedora 11) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:03 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080603.7122E10F8B9@bastion2.fedora.phx.redhat.com> akahl has set the watchcommits acl on php-ZendFramework (Fedora 11) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From pkgdb at fedoraproject.org Thu Jul 30 08:06:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 08:06:03 +0000 Subject: [pkgdb] php-ZendFramework had acl change status Message-ID: <20090730080604.0AF7510F8BC@bastion2.fedora.phx.redhat.com> akahl has set the commit acl on php-ZendFramework (Fedora 11) to Approved for heffer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-ZendFramework From stevetraylen at fedoraproject.org Thu Jul 30 08:11:25 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 08:11:25 +0000 (UTC) Subject: rpms/munge/devel check-key-exists.patch, NONE, 1.1 create-munge-key, NONE, 1.1 import.log, NONE, 1.1 initd-pass-rpmlint.patch, NONE, 1.1 munge.logrotate, NONE, 1.1 munge.spec, NONE, 1.1 remove-GPL_LICENSED-cpp.patch, NONE, 1.1 runas-munge-user.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730081125.AEB4011C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/munge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14711/devel Modified Files: .cvsignore sources Added Files: check-key-exists.patch create-munge-key import.log initd-pass-rpmlint.patch munge.logrotate munge.spec remove-GPL_LICENSED-cpp.patch runas-munge-user.patch Log Message: First version. check-key-exists.patch: munge.init.in | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE check-key-exists.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2009-07-22 23:51:58.211310282 +0200 +++ munge-0.5.8/src/etc/munge.init.in 2009-07-22 23:53:58.585303749 +0200 @@ -116,6 +116,13 @@ # According to LSB, running "start" on a service already running should be # considered successful. ## + # If there is no key then exit as a configuration error. + if [ ! -f /etc/munge/munge.key ] ; then + echo "/etc/munge/munge.key does not exist, generate with create-munge-key" + exit 6 + fi + + printf "Starting $DESC: " case $SYSTEM in DEBIAN) --- NEW FILE create-munge-key --- #! /bin/sh # Generates a random key for munged # # (C) 2007 Gennaro Oliva # You may freely distribute this file under the terms of the GNU General # Public License, version 2 or later. #Setting default random file randomfile=/dev/urandom #Usage message usage="Try \`$0 -h' for more information." #Help message needhelp() { echo Usage: create-munge-key [OPTION]... echo Generates a random key for munged echo List of options echo " -f force overwriting existing old key" echo " -r specify /dev/random as random file for key generation" echo " default is /dev/urandom" echo " -h display this help and exit" } #Parsing command line options while getopts "hrf" options; do case $options in r ) randomfile=/dev/random;; f ) force=yes;; h ) needhelp exit 0;; \? ) echo $usage exit 1;; * ) echo $usage exit 1;; esac done if [ `id -u` != 0 ] ; then echo "Please run create-munge-key as root." exit 1 fi #Checking random file presence if [ ! -e $randomfile ] ; then echo $0: cannot find random file $randomfile exit 1 fi #Checking if the user want to overwrite existing key file if [ "$force" != "yes" ] && [ -e /etc/munge/munge.key ] ; then echo The munge key /etc/munge/munge.key already exists echo -n "Do you want to overwrite it? (y/N) " read ans if [ "$ans" != "y" -a "$ans" != "Y" ] ; then exit 0 fi fi #Generating the key file and change owner and permissions if [ "$randomfile" = "/dev/random" ] ; then echo Please type on the keyboard, echo move your mouse, echo utilize the disks. This gives the random number generator echo a better chance to gain enough entropy. fi echo -n "Generating a pseudo-random key using $randomfile " dd if=$randomfile bs=1 count=1024 > /etc/munge/munge.key \ 2>/dev/null chown munge:munge /etc/munge/munge.key chmod 0400 /etc/munge/munge.key echo completed. exit 0 --- NEW FILE import.log --- munge-0_5_8-4_fc11:HEAD:munge-0.5.8-4.fc11.src.rpm:1248941278 initd-pass-rpmlint.patch: munge.init.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE initd-pass-rpmlint.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2007-02-04 08:52:37.000000000 +0100 +++ munge-0.5.8/src/etc/munge.init.in 2009-06-12 11:46:40.000000000 +0200 @@ -7,7 +7,7 @@ # Written by Chris Dunlap . # UCRL-CODE-155910. ############################################################################### -# chkconfig: 345 40 60 +# chkconfig: - 40 60 ############################################################################### ### BEGIN INIT INFO # Provides: munge @@ -15,8 +15,8 @@ # Required-Stop: $named $time # Should-Start: $local_fs $syslog # Should-Stop: $local_fs $syslog -# Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 +# Short-Description: Start/Stop the MUNGE authentication service. # Description: Start/Stop the MUNGE authentication service. ### END INIT INFO ############################################################################### --- NEW FILE munge.logrotate --- /var/log/munge/munged.log { missingok notifempty copytruncate } --- NEW FILE munge.spec --- %if 0%{?el4}%{?el5} %define _initddir %{_sysconfdir}/rc.d/init.d %endif Name: munge Version: 0.5.8 Release: 4%{?dist} Summary: Enables uid & gid authentication across a host cluster Group: Applications/System License: GPLv2+ URL: http://home.gna.org/munge/ Source0: http://download.gna.org/munge/%{version}/munge-%{version}.tar.bz2 Source1: create-munge-key Source2: munge.logrotate Patch0: initd-pass-rpmlint.patch Patch2: runas-munge-user.patch Patch3: check-key-exists.patch Patch4: remove-GPL_LICENSED-cpp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel bzip2-devel openssl-devel Requires(post): chkconfig Requires(pre): shadow-utils Requires(preun): chkconfig, initscripts Requires(postun): initscripts %description MUNGE (MUNGE Uid 'N' Gid Emporium) is an authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment. It allows a process to authenticate the UID and GID of another local or remote process within a group of hosts having common users and groups. These hosts form a security realm that is defined by a shared cryptographic key. Clients within this security realm can create and validate credentials without the use of root privileges, reserved ports, or platform-specific methods. %package devel Summary: Development files for uid * gid authentication acrosss a host cluster Requires: %{name} = %{version}-%{release} Group: Applications/System %description devel Header files for developing using MUNGE. %prep %setup -q %patch0 -p1 %patch2 -p1 %patch3 -p1 %patch4 -p1 %build # Won't compile without -DGNU_SOURCE on fc11,12 at least. %if ! 0%{?el4}%{?el5} export CFLAGS="%{optflags} -D_GNU_SOURCE" %endif %configure --disable-static # Get rid of some rpaths for /usr/sbin sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # mv init.d script form /etc/init.d to %{_initddir} mkdir -p $RPM_BUILD_ROOT/%{_initddir} mv $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/munge $RPM_BUILD_ROOT/%{_initddir}/munge # chmod 644 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/munge # Exclude .la files rm $RPM_BUILD_ROOT/%{_libdir}/libmunge.la install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_sbindir}/create-munge-key install -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/munge # Fix a few permissions chmod 700 $RPM_BUILD_ROOT%{_var}/lib/munge $RPM_BUILD_ROOT%{_var}/log/munge chmod 700 $RPM_BUILD_ROOT%{_sysconfdir}/munge # Create and empty key file to be marked as a ghost file below. # i.e it is not actually included in the rpm, only the record # of it is. # Can't be done on .el4 or .el5. %if ! 0%{?el4}%{?el5} touch $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key chmod 400 $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key %endif %clean rm -rf $RPM_BUILD_ROOT %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then /sbin/service munge condrestart >/dev/null 2>&1 || : fi %preun if [ $1 = 0 ]; then /sbin/service munge stop > /dev/null 2>&1 || : /sbin/chkconfig --del munge || : fi %pre getent group munge >/dev/null || groupadd -r munge getent passwd munge >/dev/null || \ useradd -r -g munge -d %{_var}/run/munge -s /sbin/nologin \ -c "Runs Uid 'N' Gid Emporium" munge exit 0 %post /sbin/chkconfig --add munge || : /sbin/ldconfig %files %defattr(-,root,root,-) %{_initddir}/munge %{_bindir}/munge %{_bindir}/remunge %{_bindir}/unmunge %{_sbindir}/munged %{_sbindir}/create-munge-key %{_mandir}/man1/munge.1.gz %{_mandir}/man1/remunge.1.gz %{_mandir}/man1/unmunge.1.gz %{_mandir}/man7/munge.7.gz %{_mandir}/man8/munged.8.gz %{_libdir}/libmunge.so.2 %{_libdir}/libmunge.so.2.0.0 %attr(0700,munge,munge) %dir %{_var}/run/munge %attr(0700,munge,munge) %dir %{_var}/log/munge %attr(0700,munge,munge) %dir %{_sysconfdir}/munge %if ! 0%{?el4}%{?el5} %attr(0400,munge,munge) %ghost %{_sysconfdir}/%{name}/%{name}.key %endif %attr(0700,munge,munge) %dir %{_var}/lib/munge %config(noreplace) %{_sysconfdir}/sysconfig/munge %config(noreplace) %{_sysconfdir}/logrotate.d/munge %doc AUTHORS BUGS ChangeLog COPYING DISCLAIMER %doc JARGON META NEWS QUICKSTART README %doc doc %files devel %defattr(-,root,root,-) %{_includedir}/munge.h %{_libdir}/libmunge.so %{_mandir}/man3/munge.3.gz %{_mandir}/man3/munge_ctx.3.gz %{_mandir}/man3/munge_ctx_copy.3.gz %{_mandir}/man3/munge_ctx_create.3.gz %{_mandir}/man3/munge_ctx_destroy.3.gz %{_mandir}/man3/munge_ctx_get.3.gz %{_mandir}/man3/munge_ctx_set.3.gz %{_mandir}/man3/munge_ctx_strerror.3.gz %{_mandir}/man3/munge_decode.3.gz %{_mandir}/man3/munge_encode.3.gz %{_mandir}/man3/munge_enum.3.gz %{_mandir}/man3/munge_enum_int_to_str.3.gz %{_mandir}/man3/munge_enum_is_valid.3.gz %{_mandir}/man3/munge_enum_str_to_int.3.gz %{_mandir}/man3/munge_strerror.3.gz %changelog * Thu Jul 22 2009 Steve Traylen - 0.5.8-4 - Expand defattr with 4th argument for default directory perms. - Explict attr for non 0644 files and 0755 directories. * Thu Jul 22 2009 Steve Traylen - 0.5.8-3 - Append -DGNU_SOURCE to default CFLAGS. * Wed Jul 22 2009 Steve Traylen - 0.5.8-2 - Correct License to GPLv2+ - Move man3 pages to the devel package. - Remove +x bit from create-munge-key source. - Preserve timestamps when installing files. - ldconfig not needed on -devel package. - Do a condrestart when upgrading. - Remove redundant files from docs. - chmod /var/lib/munge /var/log/munge and /etc/munge to 700. - Apply patch to not error when GPL_LICENSED is not set. - Patch service script to print error on if munge.key not present on start only and with a better error. - Remove dont-exit-form-lib.patch. munge is expecting munge to do this. - Remove libgcrypt-devel from BuildRequires, uses openssl by default anyway. - Mark the munge.key as a ghost file. * Fri Jun 12 2009 Steve Traylen - 0.5.8-1 - First Build remove-GPL_LICENSED-cpp.patch: munge.h | 11 ----------- 1 file changed, 11 deletions(-) --- NEW FILE remove-GPL_LICENSED-cpp.patch --- diff -uNr munge-0.5.8.ORIG/src/libmunge/munge.h munge-0.5.8/src/libmunge/munge.h --- munge-0.5.8.ORIG/src/libmunge/munge.h 2009-07-22 22:20:01.358333769 +0200 +++ munge-0.5.8/src/libmunge/munge.h 2009-07-22 22:23:55.773390795 +0200 @@ -31,17 +31,6 @@ #include -/***************************************************************************** - * Got GPL? - *****************************************************************************/ - -#if ! GPL_LICENSED -# error By linking against libmunge, the derivative -# error work becomes licensed under the terms of the -# error GNU General Public License. Acknowledge by -# error defining the GPL_LICENSED preprocessor macro. -#endif /* !GPL_LICENSED */ - /***************************************************************************** * Got C++? runas-munge-user.patch: munge.sysconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE runas-munge-user.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.sysconfig munge-0.5.8/src/etc/munge.sysconfig --- munge-0.5.8.ORIG/src/etc/munge.sysconfig 2009-06-12 16:03:40.000000000 +0200 +++ munge-0.5.8/src/etc/munge.sysconfig 2009-06-12 16:04:10.000000000 +0200 @@ -15,4 +15,6 @@ ## # Execute the daemon under another username. ## -# USER="daemon" +USER="munge" + + Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/munge/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 22:16:14 -0000 1.1 +++ .cvsignore 30 Jul 2009 08:11:24 -0000 1.2 @@ -0,0 +1 @@ +munge-0.5.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/munge/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:16:14 -0000 1.1 +++ sources 30 Jul 2009 08:11:25 -0000 1.2 @@ -0,0 +1 @@ +10c3a913d8fc75d86cc9e71e72497724 munge-0.5.8.tar.bz2 From stevetraylen at fedoraproject.org Thu Jul 30 08:22:14 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 08:22:14 +0000 (UTC) Subject: rpms/munge/EL-5 check-key-exists.patch, NONE, 1.1 create-munge-key, NONE, 1.1 initd-pass-rpmlint.patch, NONE, 1.1 munge.logrotate, NONE, 1.1 munge.spec, NONE, 1.1 remove-GPL_LICENSED-cpp.patch, NONE, 1.1 runas-munge-user.patch, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090730082214.A68C811C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/munge/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18696/EL-5 Modified Files: sources Added Files: check-key-exists.patch create-munge-key initd-pass-rpmlint.patch munge.logrotate munge.spec remove-GPL_LICENSED-cpp.patch runas-munge-user.patch Log Message: First release for el5,4,fc10 and fc11 check-key-exists.patch: munge.init.in | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE check-key-exists.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2009-07-22 23:51:58.211310282 +0200 +++ munge-0.5.8/src/etc/munge.init.in 2009-07-22 23:53:58.585303749 +0200 @@ -116,6 +116,13 @@ # According to LSB, running "start" on a service already running should be # considered successful. ## + # If there is no key then exit as a configuration error. + if [ ! -f /etc/munge/munge.key ] ; then + echo "/etc/munge/munge.key does not exist, generate with create-munge-key" + exit 6 + fi + + printf "Starting $DESC: " case $SYSTEM in DEBIAN) --- NEW FILE create-munge-key --- #! /bin/sh # Generates a random key for munged # # (C) 2007 Gennaro Oliva # You may freely distribute this file under the terms of the GNU General # Public License, version 2 or later. #Setting default random file randomfile=/dev/urandom #Usage message usage="Try \`$0 -h' for more information." #Help message needhelp() { echo Usage: create-munge-key [OPTION]... echo Generates a random key for munged echo List of options echo " -f force overwriting existing old key" echo " -r specify /dev/random as random file for key generation" echo " default is /dev/urandom" echo " -h display this help and exit" } #Parsing command line options while getopts "hrf" options; do case $options in r ) randomfile=/dev/random;; f ) force=yes;; h ) needhelp exit 0;; \? ) echo $usage exit 1;; * ) echo $usage exit 1;; esac done if [ `id -u` != 0 ] ; then echo "Please run create-munge-key as root." exit 1 fi #Checking random file presence if [ ! -e $randomfile ] ; then echo $0: cannot find random file $randomfile exit 1 fi #Checking if the user want to overwrite existing key file if [ "$force" != "yes" ] && [ -e /etc/munge/munge.key ] ; then echo The munge key /etc/munge/munge.key already exists echo -n "Do you want to overwrite it? (y/N) " read ans if [ "$ans" != "y" -a "$ans" != "Y" ] ; then exit 0 fi fi #Generating the key file and change owner and permissions if [ "$randomfile" = "/dev/random" ] ; then echo Please type on the keyboard, echo move your mouse, echo utilize the disks. This gives the random number generator echo a better chance to gain enough entropy. fi echo -n "Generating a pseudo-random key using $randomfile " dd if=$randomfile bs=1 count=1024 > /etc/munge/munge.key \ 2>/dev/null chown munge:munge /etc/munge/munge.key chmod 0400 /etc/munge/munge.key echo completed. exit 0 initd-pass-rpmlint.patch: munge.init.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE initd-pass-rpmlint.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2007-02-04 08:52:37.000000000 +0100 +++ munge-0.5.8/src/etc/munge.init.in 2009-06-12 11:46:40.000000000 +0200 @@ -7,7 +7,7 @@ # Written by Chris Dunlap . # UCRL-CODE-155910. ############################################################################### -# chkconfig: 345 40 60 +# chkconfig: - 40 60 ############################################################################### ### BEGIN INIT INFO # Provides: munge @@ -15,8 +15,8 @@ # Required-Stop: $named $time # Should-Start: $local_fs $syslog # Should-Stop: $local_fs $syslog -# Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 +# Short-Description: Start/Stop the MUNGE authentication service. # Description: Start/Stop the MUNGE authentication service. ### END INIT INFO ############################################################################### --- NEW FILE munge.logrotate --- /var/log/munge/munged.log { missingok notifempty copytruncate } --- NEW FILE munge.spec --- %if 0%{?el4}%{?el5} %define _initddir %{_sysconfdir}/rc.d/init.d %endif Name: munge Version: 0.5.8 Release: 4%{?dist} Summary: Enables uid & gid authentication across a host cluster Group: Applications/System License: GPLv2+ URL: http://home.gna.org/munge/ Source0: http://download.gna.org/munge/%{version}/munge-%{version}.tar.bz2 Source1: create-munge-key Source2: munge.logrotate Patch0: initd-pass-rpmlint.patch Patch2: runas-munge-user.patch Patch3: check-key-exists.patch Patch4: remove-GPL_LICENSED-cpp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel bzip2-devel openssl-devel Requires(post): chkconfig Requires(pre): shadow-utils Requires(preun): chkconfig, initscripts Requires(postun): initscripts %description MUNGE (MUNGE Uid 'N' Gid Emporium) is an authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment. It allows a process to authenticate the UID and GID of another local or remote process within a group of hosts having common users and groups. These hosts form a security realm that is defined by a shared cryptographic key. Clients within this security realm can create and validate credentials without the use of root privileges, reserved ports, or platform-specific methods. %package devel Summary: Development files for uid * gid authentication acrosss a host cluster Requires: %{name} = %{version}-%{release} Group: Applications/System %description devel Header files for developing using MUNGE. %prep %setup -q %patch0 -p1 %patch2 -p1 %patch3 -p1 %patch4 -p1 %build # Won't compile without -DGNU_SOURCE on fc11,12 at least. %if ! 0%{?el4}%{?el5} export CFLAGS="%{optflags} -D_GNU_SOURCE" %endif %configure --disable-static # Get rid of some rpaths for /usr/sbin sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # mv init.d script form /etc/init.d to %{_initddir} mkdir -p $RPM_BUILD_ROOT/%{_initddir} mv $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/munge $RPM_BUILD_ROOT/%{_initddir}/munge # chmod 644 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/munge # Exclude .la files rm $RPM_BUILD_ROOT/%{_libdir}/libmunge.la install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_sbindir}/create-munge-key install -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/munge # Fix a few permissions chmod 700 $RPM_BUILD_ROOT%{_var}/lib/munge $RPM_BUILD_ROOT%{_var}/log/munge chmod 700 $RPM_BUILD_ROOT%{_sysconfdir}/munge # Create and empty key file to be marked as a ghost file below. # i.e it is not actually included in the rpm, only the record # of it is. # Can't be done on .el4 or .el5. %if ! 0%{?el4}%{?el5} touch $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key chmod 400 $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key %endif %clean rm -rf $RPM_BUILD_ROOT %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then /sbin/service munge condrestart >/dev/null 2>&1 || : fi %preun if [ $1 = 0 ]; then /sbin/service munge stop > /dev/null 2>&1 || : /sbin/chkconfig --del munge || : fi %pre getent group munge >/dev/null || groupadd -r munge getent passwd munge >/dev/null || \ useradd -r -g munge -d %{_var}/run/munge -s /sbin/nologin \ -c "Runs Uid 'N' Gid Emporium" munge exit 0 %post /sbin/chkconfig --add munge || : /sbin/ldconfig %files %defattr(-,root,root,-) %{_initddir}/munge %{_bindir}/munge %{_bindir}/remunge %{_bindir}/unmunge %{_sbindir}/munged %{_sbindir}/create-munge-key %{_mandir}/man1/munge.1.gz %{_mandir}/man1/remunge.1.gz %{_mandir}/man1/unmunge.1.gz %{_mandir}/man7/munge.7.gz %{_mandir}/man8/munged.8.gz %{_libdir}/libmunge.so.2 %{_libdir}/libmunge.so.2.0.0 %attr(0700,munge,munge) %dir %{_var}/run/munge %attr(0700,munge,munge) %dir %{_var}/log/munge %attr(0700,munge,munge) %dir %{_sysconfdir}/munge %if ! 0%{?el4}%{?el5} %attr(0400,munge,munge) %ghost %{_sysconfdir}/%{name}/%{name}.key %endif %attr(0700,munge,munge) %dir %{_var}/lib/munge %config(noreplace) %{_sysconfdir}/sysconfig/munge %config(noreplace) %{_sysconfdir}/logrotate.d/munge %doc AUTHORS BUGS ChangeLog COPYING DISCLAIMER %doc JARGON META NEWS QUICKSTART README %doc doc %files devel %defattr(-,root,root,-) %{_includedir}/munge.h %{_libdir}/libmunge.so %{_mandir}/man3/munge.3.gz %{_mandir}/man3/munge_ctx.3.gz %{_mandir}/man3/munge_ctx_copy.3.gz %{_mandir}/man3/munge_ctx_create.3.gz %{_mandir}/man3/munge_ctx_destroy.3.gz %{_mandir}/man3/munge_ctx_get.3.gz %{_mandir}/man3/munge_ctx_set.3.gz %{_mandir}/man3/munge_ctx_strerror.3.gz %{_mandir}/man3/munge_decode.3.gz %{_mandir}/man3/munge_encode.3.gz %{_mandir}/man3/munge_enum.3.gz %{_mandir}/man3/munge_enum_int_to_str.3.gz %{_mandir}/man3/munge_enum_is_valid.3.gz %{_mandir}/man3/munge_enum_str_to_int.3.gz %{_mandir}/man3/munge_strerror.3.gz %changelog * Thu Jul 22 2009 Steve Traylen - 0.5.8-4 - Expand defattr with 4th argument for default directory perms. - Explict attr for non 0644 files and 0755 directories. * Thu Jul 22 2009 Steve Traylen - 0.5.8-3 - Append -DGNU_SOURCE to default CFLAGS. * Wed Jul 22 2009 Steve Traylen - 0.5.8-2 - Correct License to GPLv2+ - Move man3 pages to the devel package. - Remove +x bit from create-munge-key source. - Preserve timestamps when installing files. - ldconfig not needed on -devel package. - Do a condrestart when upgrading. - Remove redundant files from docs. - chmod /var/lib/munge /var/log/munge and /etc/munge to 700. - Apply patch to not error when GPL_LICENSED is not set. - Patch service script to print error on if munge.key not present on start only and with a better error. - Remove dont-exit-form-lib.patch. munge is expecting munge to do this. - Remove libgcrypt-devel from BuildRequires, uses openssl by default anyway. - Mark the munge.key as a ghost file. * Fri Jun 12 2009 Steve Traylen - 0.5.8-1 - First Build remove-GPL_LICENSED-cpp.patch: munge.h | 11 ----------- 1 file changed, 11 deletions(-) --- NEW FILE remove-GPL_LICENSED-cpp.patch --- diff -uNr munge-0.5.8.ORIG/src/libmunge/munge.h munge-0.5.8/src/libmunge/munge.h --- munge-0.5.8.ORIG/src/libmunge/munge.h 2009-07-22 22:20:01.358333769 +0200 +++ munge-0.5.8/src/libmunge/munge.h 2009-07-22 22:23:55.773390795 +0200 @@ -31,17 +31,6 @@ #include -/***************************************************************************** - * Got GPL? - *****************************************************************************/ - -#if ! GPL_LICENSED -# error By linking against libmunge, the derivative -# error work becomes licensed under the terms of the -# error GNU General Public License. Acknowledge by -# error defining the GPL_LICENSED preprocessor macro. -#endif /* !GPL_LICENSED */ - /***************************************************************************** * Got C++? runas-munge-user.patch: munge.sysconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE runas-munge-user.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.sysconfig munge-0.5.8/src/etc/munge.sysconfig --- munge-0.5.8.ORIG/src/etc/munge.sysconfig 2009-06-12 16:03:40.000000000 +0200 +++ munge-0.5.8/src/etc/munge.sysconfig 2009-06-12 16:04:10.000000000 +0200 @@ -15,4 +15,6 @@ ## # Execute the daemon under another username. ## -# USER="daemon" +USER="munge" + + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/munge/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:16:14 -0000 1.1 +++ sources 30 Jul 2009 08:22:14 -0000 1.2 @@ -0,0 +1 @@ +10c3a913d8fc75d86cc9e71e72497724 munge-0.5.8.tar.bz2 From stevetraylen at fedoraproject.org Thu Jul 30 08:22:14 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 08:22:14 +0000 (UTC) Subject: rpms/munge/EL-4 check-key-exists.patch, NONE, 1.1 create-munge-key, NONE, 1.1 initd-pass-rpmlint.patch, NONE, 1.1 munge.logrotate, NONE, 1.1 munge.spec, NONE, 1.1 remove-GPL_LICENSED-cpp.patch, NONE, 1.1 runas-munge-user.patch, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090730082214.3205611C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/munge/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18696/EL-4 Modified Files: sources Added Files: check-key-exists.patch create-munge-key initd-pass-rpmlint.patch munge.logrotate munge.spec remove-GPL_LICENSED-cpp.patch runas-munge-user.patch Log Message: First release for el5,4,fc10 and fc11 check-key-exists.patch: munge.init.in | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE check-key-exists.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2009-07-22 23:51:58.211310282 +0200 +++ munge-0.5.8/src/etc/munge.init.in 2009-07-22 23:53:58.585303749 +0200 @@ -116,6 +116,13 @@ # According to LSB, running "start" on a service already running should be # considered successful. ## + # If there is no key then exit as a configuration error. + if [ ! -f /etc/munge/munge.key ] ; then + echo "/etc/munge/munge.key does not exist, generate with create-munge-key" + exit 6 + fi + + printf "Starting $DESC: " case $SYSTEM in DEBIAN) --- NEW FILE create-munge-key --- #! /bin/sh # Generates a random key for munged # # (C) 2007 Gennaro Oliva # You may freely distribute this file under the terms of the GNU General # Public License, version 2 or later. #Setting default random file randomfile=/dev/urandom #Usage message usage="Try \`$0 -h' for more information." #Help message needhelp() { echo Usage: create-munge-key [OPTION]... echo Generates a random key for munged echo List of options echo " -f force overwriting existing old key" echo " -r specify /dev/random as random file for key generation" echo " default is /dev/urandom" echo " -h display this help and exit" } #Parsing command line options while getopts "hrf" options; do case $options in r ) randomfile=/dev/random;; f ) force=yes;; h ) needhelp exit 0;; \? ) echo $usage exit 1;; * ) echo $usage exit 1;; esac done if [ `id -u` != 0 ] ; then echo "Please run create-munge-key as root." exit 1 fi #Checking random file presence if [ ! -e $randomfile ] ; then echo $0: cannot find random file $randomfile exit 1 fi #Checking if the user want to overwrite existing key file if [ "$force" != "yes" ] && [ -e /etc/munge/munge.key ] ; then echo The munge key /etc/munge/munge.key already exists echo -n "Do you want to overwrite it? (y/N) " read ans if [ "$ans" != "y" -a "$ans" != "Y" ] ; then exit 0 fi fi #Generating the key file and change owner and permissions if [ "$randomfile" = "/dev/random" ] ; then echo Please type on the keyboard, echo move your mouse, echo utilize the disks. This gives the random number generator echo a better chance to gain enough entropy. fi echo -n "Generating a pseudo-random key using $randomfile " dd if=$randomfile bs=1 count=1024 > /etc/munge/munge.key \ 2>/dev/null chown munge:munge /etc/munge/munge.key chmod 0400 /etc/munge/munge.key echo completed. exit 0 initd-pass-rpmlint.patch: munge.init.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE initd-pass-rpmlint.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2007-02-04 08:52:37.000000000 +0100 +++ munge-0.5.8/src/etc/munge.init.in 2009-06-12 11:46:40.000000000 +0200 @@ -7,7 +7,7 @@ # Written by Chris Dunlap . # UCRL-CODE-155910. ############################################################################### -# chkconfig: 345 40 60 +# chkconfig: - 40 60 ############################################################################### ### BEGIN INIT INFO # Provides: munge @@ -15,8 +15,8 @@ # Required-Stop: $named $time # Should-Start: $local_fs $syslog # Should-Stop: $local_fs $syslog -# Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 +# Short-Description: Start/Stop the MUNGE authentication service. # Description: Start/Stop the MUNGE authentication service. ### END INIT INFO ############################################################################### --- NEW FILE munge.logrotate --- /var/log/munge/munged.log { missingok notifempty copytruncate } --- NEW FILE munge.spec --- %if 0%{?el4}%{?el5} %define _initddir %{_sysconfdir}/rc.d/init.d %endif Name: munge Version: 0.5.8 Release: 4%{?dist} Summary: Enables uid & gid authentication across a host cluster Group: Applications/System License: GPLv2+ URL: http://home.gna.org/munge/ Source0: http://download.gna.org/munge/%{version}/munge-%{version}.tar.bz2 Source1: create-munge-key Source2: munge.logrotate Patch0: initd-pass-rpmlint.patch Patch2: runas-munge-user.patch Patch3: check-key-exists.patch Patch4: remove-GPL_LICENSED-cpp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel bzip2-devel openssl-devel Requires(post): chkconfig Requires(pre): shadow-utils Requires(preun): chkconfig, initscripts Requires(postun): initscripts %description MUNGE (MUNGE Uid 'N' Gid Emporium) is an authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment. It allows a process to authenticate the UID and GID of another local or remote process within a group of hosts having common users and groups. These hosts form a security realm that is defined by a shared cryptographic key. Clients within this security realm can create and validate credentials without the use of root privileges, reserved ports, or platform-specific methods. %package devel Summary: Development files for uid * gid authentication acrosss a host cluster Requires: %{name} = %{version}-%{release} Group: Applications/System %description devel Header files for developing using MUNGE. %prep %setup -q %patch0 -p1 %patch2 -p1 %patch3 -p1 %patch4 -p1 %build # Won't compile without -DGNU_SOURCE on fc11,12 at least. %if ! 0%{?el4}%{?el5} export CFLAGS="%{optflags} -D_GNU_SOURCE" %endif %configure --disable-static # Get rid of some rpaths for /usr/sbin sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # mv init.d script form /etc/init.d to %{_initddir} mkdir -p $RPM_BUILD_ROOT/%{_initddir} mv $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/munge $RPM_BUILD_ROOT/%{_initddir}/munge # chmod 644 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/munge # Exclude .la files rm $RPM_BUILD_ROOT/%{_libdir}/libmunge.la install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_sbindir}/create-munge-key install -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/munge # Fix a few permissions chmod 700 $RPM_BUILD_ROOT%{_var}/lib/munge $RPM_BUILD_ROOT%{_var}/log/munge chmod 700 $RPM_BUILD_ROOT%{_sysconfdir}/munge # Create and empty key file to be marked as a ghost file below. # i.e it is not actually included in the rpm, only the record # of it is. # Can't be done on .el4 or .el5. %if ! 0%{?el4}%{?el5} touch $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key chmod 400 $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key %endif %clean rm -rf $RPM_BUILD_ROOT %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then /sbin/service munge condrestart >/dev/null 2>&1 || : fi %preun if [ $1 = 0 ]; then /sbin/service munge stop > /dev/null 2>&1 || : /sbin/chkconfig --del munge || : fi %pre getent group munge >/dev/null || groupadd -r munge getent passwd munge >/dev/null || \ useradd -r -g munge -d %{_var}/run/munge -s /sbin/nologin \ -c "Runs Uid 'N' Gid Emporium" munge exit 0 %post /sbin/chkconfig --add munge || : /sbin/ldconfig %files %defattr(-,root,root,-) %{_initddir}/munge %{_bindir}/munge %{_bindir}/remunge %{_bindir}/unmunge %{_sbindir}/munged %{_sbindir}/create-munge-key %{_mandir}/man1/munge.1.gz %{_mandir}/man1/remunge.1.gz %{_mandir}/man1/unmunge.1.gz %{_mandir}/man7/munge.7.gz %{_mandir}/man8/munged.8.gz %{_libdir}/libmunge.so.2 %{_libdir}/libmunge.so.2.0.0 %attr(0700,munge,munge) %dir %{_var}/run/munge %attr(0700,munge,munge) %dir %{_var}/log/munge %attr(0700,munge,munge) %dir %{_sysconfdir}/munge %if ! 0%{?el4}%{?el5} %attr(0400,munge,munge) %ghost %{_sysconfdir}/%{name}/%{name}.key %endif %attr(0700,munge,munge) %dir %{_var}/lib/munge %config(noreplace) %{_sysconfdir}/sysconfig/munge %config(noreplace) %{_sysconfdir}/logrotate.d/munge %doc AUTHORS BUGS ChangeLog COPYING DISCLAIMER %doc JARGON META NEWS QUICKSTART README %doc doc %files devel %defattr(-,root,root,-) %{_includedir}/munge.h %{_libdir}/libmunge.so %{_mandir}/man3/munge.3.gz %{_mandir}/man3/munge_ctx.3.gz %{_mandir}/man3/munge_ctx_copy.3.gz %{_mandir}/man3/munge_ctx_create.3.gz %{_mandir}/man3/munge_ctx_destroy.3.gz %{_mandir}/man3/munge_ctx_get.3.gz %{_mandir}/man3/munge_ctx_set.3.gz %{_mandir}/man3/munge_ctx_strerror.3.gz %{_mandir}/man3/munge_decode.3.gz %{_mandir}/man3/munge_encode.3.gz %{_mandir}/man3/munge_enum.3.gz %{_mandir}/man3/munge_enum_int_to_str.3.gz %{_mandir}/man3/munge_enum_is_valid.3.gz %{_mandir}/man3/munge_enum_str_to_int.3.gz %{_mandir}/man3/munge_strerror.3.gz %changelog * Thu Jul 22 2009 Steve Traylen - 0.5.8-4 - Expand defattr with 4th argument for default directory perms. - Explict attr for non 0644 files and 0755 directories. * Thu Jul 22 2009 Steve Traylen - 0.5.8-3 - Append -DGNU_SOURCE to default CFLAGS. * Wed Jul 22 2009 Steve Traylen - 0.5.8-2 - Correct License to GPLv2+ - Move man3 pages to the devel package. - Remove +x bit from create-munge-key source. - Preserve timestamps when installing files. - ldconfig not needed on -devel package. - Do a condrestart when upgrading. - Remove redundant files from docs. - chmod /var/lib/munge /var/log/munge and /etc/munge to 700. - Apply patch to not error when GPL_LICENSED is not set. - Patch service script to print error on if munge.key not present on start only and with a better error. - Remove dont-exit-form-lib.patch. munge is expecting munge to do this. - Remove libgcrypt-devel from BuildRequires, uses openssl by default anyway. - Mark the munge.key as a ghost file. * Fri Jun 12 2009 Steve Traylen - 0.5.8-1 - First Build remove-GPL_LICENSED-cpp.patch: munge.h | 11 ----------- 1 file changed, 11 deletions(-) --- NEW FILE remove-GPL_LICENSED-cpp.patch --- diff -uNr munge-0.5.8.ORIG/src/libmunge/munge.h munge-0.5.8/src/libmunge/munge.h --- munge-0.5.8.ORIG/src/libmunge/munge.h 2009-07-22 22:20:01.358333769 +0200 +++ munge-0.5.8/src/libmunge/munge.h 2009-07-22 22:23:55.773390795 +0200 @@ -31,17 +31,6 @@ #include -/***************************************************************************** - * Got GPL? - *****************************************************************************/ - -#if ! GPL_LICENSED -# error By linking against libmunge, the derivative -# error work becomes licensed under the terms of the -# error GNU General Public License. Acknowledge by -# error defining the GPL_LICENSED preprocessor macro. -#endif /* !GPL_LICENSED */ - /***************************************************************************** * Got C++? runas-munge-user.patch: munge.sysconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE runas-munge-user.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.sysconfig munge-0.5.8/src/etc/munge.sysconfig --- munge-0.5.8.ORIG/src/etc/munge.sysconfig 2009-06-12 16:03:40.000000000 +0200 +++ munge-0.5.8/src/etc/munge.sysconfig 2009-06-12 16:04:10.000000000 +0200 @@ -15,4 +15,6 @@ ## # Execute the daemon under another username. ## -# USER="daemon" +USER="munge" + + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/munge/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:16:14 -0000 1.1 +++ sources 30 Jul 2009 08:22:13 -0000 1.2 @@ -0,0 +1 @@ +10c3a913d8fc75d86cc9e71e72497724 munge-0.5.8.tar.bz2 From stevetraylen at fedoraproject.org Thu Jul 30 08:22:15 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 08:22:15 +0000 (UTC) Subject: rpms/munge/F-11 check-key-exists.patch, NONE, 1.1 create-munge-key, NONE, 1.1 initd-pass-rpmlint.patch, NONE, 1.1 munge.logrotate, NONE, 1.1 munge.spec, NONE, 1.1 remove-GPL_LICENSED-cpp.patch, NONE, 1.1 runas-munge-user.patch, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090730082215.C5B9511C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/munge/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18696/F-11 Modified Files: sources Added Files: check-key-exists.patch create-munge-key initd-pass-rpmlint.patch munge.logrotate munge.spec remove-GPL_LICENSED-cpp.patch runas-munge-user.patch Log Message: First release for el5,4,fc10 and fc11 check-key-exists.patch: munge.init.in | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE check-key-exists.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2009-07-22 23:51:58.211310282 +0200 +++ munge-0.5.8/src/etc/munge.init.in 2009-07-22 23:53:58.585303749 +0200 @@ -116,6 +116,13 @@ # According to LSB, running "start" on a service already running should be # considered successful. ## + # If there is no key then exit as a configuration error. + if [ ! -f /etc/munge/munge.key ] ; then + echo "/etc/munge/munge.key does not exist, generate with create-munge-key" + exit 6 + fi + + printf "Starting $DESC: " case $SYSTEM in DEBIAN) --- NEW FILE create-munge-key --- #! /bin/sh # Generates a random key for munged # # (C) 2007 Gennaro Oliva # You may freely distribute this file under the terms of the GNU General # Public License, version 2 or later. #Setting default random file randomfile=/dev/urandom #Usage message usage="Try \`$0 -h' for more information." #Help message needhelp() { echo Usage: create-munge-key [OPTION]... echo Generates a random key for munged echo List of options echo " -f force overwriting existing old key" echo " -r specify /dev/random as random file for key generation" echo " default is /dev/urandom" echo " -h display this help and exit" } #Parsing command line options while getopts "hrf" options; do case $options in r ) randomfile=/dev/random;; f ) force=yes;; h ) needhelp exit 0;; \? ) echo $usage exit 1;; * ) echo $usage exit 1;; esac done if [ `id -u` != 0 ] ; then echo "Please run create-munge-key as root." exit 1 fi #Checking random file presence if [ ! -e $randomfile ] ; then echo $0: cannot find random file $randomfile exit 1 fi #Checking if the user want to overwrite existing key file if [ "$force" != "yes" ] && [ -e /etc/munge/munge.key ] ; then echo The munge key /etc/munge/munge.key already exists echo -n "Do you want to overwrite it? (y/N) " read ans if [ "$ans" != "y" -a "$ans" != "Y" ] ; then exit 0 fi fi #Generating the key file and change owner and permissions if [ "$randomfile" = "/dev/random" ] ; then echo Please type on the keyboard, echo move your mouse, echo utilize the disks. This gives the random number generator echo a better chance to gain enough entropy. fi echo -n "Generating a pseudo-random key using $randomfile " dd if=$randomfile bs=1 count=1024 > /etc/munge/munge.key \ 2>/dev/null chown munge:munge /etc/munge/munge.key chmod 0400 /etc/munge/munge.key echo completed. exit 0 initd-pass-rpmlint.patch: munge.init.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE initd-pass-rpmlint.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2007-02-04 08:52:37.000000000 +0100 +++ munge-0.5.8/src/etc/munge.init.in 2009-06-12 11:46:40.000000000 +0200 @@ -7,7 +7,7 @@ # Written by Chris Dunlap . # UCRL-CODE-155910. ############################################################################### -# chkconfig: 345 40 60 +# chkconfig: - 40 60 ############################################################################### ### BEGIN INIT INFO # Provides: munge @@ -15,8 +15,8 @@ # Required-Stop: $named $time # Should-Start: $local_fs $syslog # Should-Stop: $local_fs $syslog -# Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 +# Short-Description: Start/Stop the MUNGE authentication service. # Description: Start/Stop the MUNGE authentication service. ### END INIT INFO ############################################################################### --- NEW FILE munge.logrotate --- /var/log/munge/munged.log { missingok notifempty copytruncate } --- NEW FILE munge.spec --- %if 0%{?el4}%{?el5} %define _initddir %{_sysconfdir}/rc.d/init.d %endif Name: munge Version: 0.5.8 Release: 4%{?dist} Summary: Enables uid & gid authentication across a host cluster Group: Applications/System License: GPLv2+ URL: http://home.gna.org/munge/ Source0: http://download.gna.org/munge/%{version}/munge-%{version}.tar.bz2 Source1: create-munge-key Source2: munge.logrotate Patch0: initd-pass-rpmlint.patch Patch2: runas-munge-user.patch Patch3: check-key-exists.patch Patch4: remove-GPL_LICENSED-cpp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel bzip2-devel openssl-devel Requires(post): chkconfig Requires(pre): shadow-utils Requires(preun): chkconfig, initscripts Requires(postun): initscripts %description MUNGE (MUNGE Uid 'N' Gid Emporium) is an authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment. It allows a process to authenticate the UID and GID of another local or remote process within a group of hosts having common users and groups. These hosts form a security realm that is defined by a shared cryptographic key. Clients within this security realm can create and validate credentials without the use of root privileges, reserved ports, or platform-specific methods. %package devel Summary: Development files for uid * gid authentication acrosss a host cluster Requires: %{name} = %{version}-%{release} Group: Applications/System %description devel Header files for developing using MUNGE. %prep %setup -q %patch0 -p1 %patch2 -p1 %patch3 -p1 %patch4 -p1 %build # Won't compile without -DGNU_SOURCE on fc11,12 at least. %if ! 0%{?el4}%{?el5} export CFLAGS="%{optflags} -D_GNU_SOURCE" %endif %configure --disable-static # Get rid of some rpaths for /usr/sbin sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # mv init.d script form /etc/init.d to %{_initddir} mkdir -p $RPM_BUILD_ROOT/%{_initddir} mv $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/munge $RPM_BUILD_ROOT/%{_initddir}/munge # chmod 644 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/munge # Exclude .la files rm $RPM_BUILD_ROOT/%{_libdir}/libmunge.la install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_sbindir}/create-munge-key install -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/munge # Fix a few permissions chmod 700 $RPM_BUILD_ROOT%{_var}/lib/munge $RPM_BUILD_ROOT%{_var}/log/munge chmod 700 $RPM_BUILD_ROOT%{_sysconfdir}/munge # Create and empty key file to be marked as a ghost file below. # i.e it is not actually included in the rpm, only the record # of it is. # Can't be done on .el4 or .el5. %if ! 0%{?el4}%{?el5} touch $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key chmod 400 $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key %endif %clean rm -rf $RPM_BUILD_ROOT %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then /sbin/service munge condrestart >/dev/null 2>&1 || : fi %preun if [ $1 = 0 ]; then /sbin/service munge stop > /dev/null 2>&1 || : /sbin/chkconfig --del munge || : fi %pre getent group munge >/dev/null || groupadd -r munge getent passwd munge >/dev/null || \ useradd -r -g munge -d %{_var}/run/munge -s /sbin/nologin \ -c "Runs Uid 'N' Gid Emporium" munge exit 0 %post /sbin/chkconfig --add munge || : /sbin/ldconfig %files %defattr(-,root,root,-) %{_initddir}/munge %{_bindir}/munge %{_bindir}/remunge %{_bindir}/unmunge %{_sbindir}/munged %{_sbindir}/create-munge-key %{_mandir}/man1/munge.1.gz %{_mandir}/man1/remunge.1.gz %{_mandir}/man1/unmunge.1.gz %{_mandir}/man7/munge.7.gz %{_mandir}/man8/munged.8.gz %{_libdir}/libmunge.so.2 %{_libdir}/libmunge.so.2.0.0 %attr(0700,munge,munge) %dir %{_var}/run/munge %attr(0700,munge,munge) %dir %{_var}/log/munge %attr(0700,munge,munge) %dir %{_sysconfdir}/munge %if ! 0%{?el4}%{?el5} %attr(0400,munge,munge) %ghost %{_sysconfdir}/%{name}/%{name}.key %endif %attr(0700,munge,munge) %dir %{_var}/lib/munge %config(noreplace) %{_sysconfdir}/sysconfig/munge %config(noreplace) %{_sysconfdir}/logrotate.d/munge %doc AUTHORS BUGS ChangeLog COPYING DISCLAIMER %doc JARGON META NEWS QUICKSTART README %doc doc %files devel %defattr(-,root,root,-) %{_includedir}/munge.h %{_libdir}/libmunge.so %{_mandir}/man3/munge.3.gz %{_mandir}/man3/munge_ctx.3.gz %{_mandir}/man3/munge_ctx_copy.3.gz %{_mandir}/man3/munge_ctx_create.3.gz %{_mandir}/man3/munge_ctx_destroy.3.gz %{_mandir}/man3/munge_ctx_get.3.gz %{_mandir}/man3/munge_ctx_set.3.gz %{_mandir}/man3/munge_ctx_strerror.3.gz %{_mandir}/man3/munge_decode.3.gz %{_mandir}/man3/munge_encode.3.gz %{_mandir}/man3/munge_enum.3.gz %{_mandir}/man3/munge_enum_int_to_str.3.gz %{_mandir}/man3/munge_enum_is_valid.3.gz %{_mandir}/man3/munge_enum_str_to_int.3.gz %{_mandir}/man3/munge_strerror.3.gz %changelog * Thu Jul 22 2009 Steve Traylen - 0.5.8-4 - Expand defattr with 4th argument for default directory perms. - Explict attr for non 0644 files and 0755 directories. * Thu Jul 22 2009 Steve Traylen - 0.5.8-3 - Append -DGNU_SOURCE to default CFLAGS. * Wed Jul 22 2009 Steve Traylen - 0.5.8-2 - Correct License to GPLv2+ - Move man3 pages to the devel package. - Remove +x bit from create-munge-key source. - Preserve timestamps when installing files. - ldconfig not needed on -devel package. - Do a condrestart when upgrading. - Remove redundant files from docs. - chmod /var/lib/munge /var/log/munge and /etc/munge to 700. - Apply patch to not error when GPL_LICENSED is not set. - Patch service script to print error on if munge.key not present on start only and with a better error. - Remove dont-exit-form-lib.patch. munge is expecting munge to do this. - Remove libgcrypt-devel from BuildRequires, uses openssl by default anyway. - Mark the munge.key as a ghost file. * Fri Jun 12 2009 Steve Traylen - 0.5.8-1 - First Build remove-GPL_LICENSED-cpp.patch: munge.h | 11 ----------- 1 file changed, 11 deletions(-) --- NEW FILE remove-GPL_LICENSED-cpp.patch --- diff -uNr munge-0.5.8.ORIG/src/libmunge/munge.h munge-0.5.8/src/libmunge/munge.h --- munge-0.5.8.ORIG/src/libmunge/munge.h 2009-07-22 22:20:01.358333769 +0200 +++ munge-0.5.8/src/libmunge/munge.h 2009-07-22 22:23:55.773390795 +0200 @@ -31,17 +31,6 @@ #include -/***************************************************************************** - * Got GPL? - *****************************************************************************/ - -#if ! GPL_LICENSED -# error By linking against libmunge, the derivative -# error work becomes licensed under the terms of the -# error GNU General Public License. Acknowledge by -# error defining the GPL_LICENSED preprocessor macro. -#endif /* !GPL_LICENSED */ - /***************************************************************************** * Got C++? runas-munge-user.patch: munge.sysconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE runas-munge-user.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.sysconfig munge-0.5.8/src/etc/munge.sysconfig --- munge-0.5.8.ORIG/src/etc/munge.sysconfig 2009-06-12 16:03:40.000000000 +0200 +++ munge-0.5.8/src/etc/munge.sysconfig 2009-06-12 16:04:10.000000000 +0200 @@ -15,4 +15,6 @@ ## # Execute the daemon under another username. ## -# USER="daemon" +USER="munge" + + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/munge/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:16:14 -0000 1.1 +++ sources 30 Jul 2009 08:22:15 -0000 1.2 @@ -0,0 +1 @@ +10c3a913d8fc75d86cc9e71e72497724 munge-0.5.8.tar.bz2 From stevetraylen at fedoraproject.org Thu Jul 30 08:22:15 2009 From: stevetraylen at fedoraproject.org (stevetraylen) Date: Thu, 30 Jul 2009 08:22:15 +0000 (UTC) Subject: rpms/munge/F-10 check-key-exists.patch, NONE, 1.1 create-munge-key, NONE, 1.1 initd-pass-rpmlint.patch, NONE, 1.1 munge.logrotate, NONE, 1.1 munge.spec, NONE, 1.1 remove-GPL_LICENSED-cpp.patch, NONE, 1.1 runas-munge-user.patch, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090730082215.3473511C00D3@cvs1.fedora.phx.redhat.com> Author: stevetraylen Update of /cvs/pkgs/rpms/munge/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18696/F-10 Modified Files: sources Added Files: check-key-exists.patch create-munge-key initd-pass-rpmlint.patch munge.logrotate munge.spec remove-GPL_LICENSED-cpp.patch runas-munge-user.patch Log Message: First release for el5,4,fc10 and fc11 check-key-exists.patch: munge.init.in | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE check-key-exists.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2009-07-22 23:51:58.211310282 +0200 +++ munge-0.5.8/src/etc/munge.init.in 2009-07-22 23:53:58.585303749 +0200 @@ -116,6 +116,13 @@ # According to LSB, running "start" on a service already running should be # considered successful. ## + # If there is no key then exit as a configuration error. + if [ ! -f /etc/munge/munge.key ] ; then + echo "/etc/munge/munge.key does not exist, generate with create-munge-key" + exit 6 + fi + + printf "Starting $DESC: " case $SYSTEM in DEBIAN) --- NEW FILE create-munge-key --- #! /bin/sh # Generates a random key for munged # # (C) 2007 Gennaro Oliva # You may freely distribute this file under the terms of the GNU General # Public License, version 2 or later. #Setting default random file randomfile=/dev/urandom #Usage message usage="Try \`$0 -h' for more information." #Help message needhelp() { echo Usage: create-munge-key [OPTION]... echo Generates a random key for munged echo List of options echo " -f force overwriting existing old key" echo " -r specify /dev/random as random file for key generation" echo " default is /dev/urandom" echo " -h display this help and exit" } #Parsing command line options while getopts "hrf" options; do case $options in r ) randomfile=/dev/random;; f ) force=yes;; h ) needhelp exit 0;; \? ) echo $usage exit 1;; * ) echo $usage exit 1;; esac done if [ `id -u` != 0 ] ; then echo "Please run create-munge-key as root." exit 1 fi #Checking random file presence if [ ! -e $randomfile ] ; then echo $0: cannot find random file $randomfile exit 1 fi #Checking if the user want to overwrite existing key file if [ "$force" != "yes" ] && [ -e /etc/munge/munge.key ] ; then echo The munge key /etc/munge/munge.key already exists echo -n "Do you want to overwrite it? (y/N) " read ans if [ "$ans" != "y" -a "$ans" != "Y" ] ; then exit 0 fi fi #Generating the key file and change owner and permissions if [ "$randomfile" = "/dev/random" ] ; then echo Please type on the keyboard, echo move your mouse, echo utilize the disks. This gives the random number generator echo a better chance to gain enough entropy. fi echo -n "Generating a pseudo-random key using $randomfile " dd if=$randomfile bs=1 count=1024 > /etc/munge/munge.key \ 2>/dev/null chown munge:munge /etc/munge/munge.key chmod 0400 /etc/munge/munge.key echo completed. exit 0 initd-pass-rpmlint.patch: munge.init.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE initd-pass-rpmlint.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.init.in munge-0.5.8/src/etc/munge.init.in --- munge-0.5.8.ORIG/src/etc/munge.init.in 2007-02-04 08:52:37.000000000 +0100 +++ munge-0.5.8/src/etc/munge.init.in 2009-06-12 11:46:40.000000000 +0200 @@ -7,7 +7,7 @@ # Written by Chris Dunlap . # UCRL-CODE-155910. ############################################################################### -# chkconfig: 345 40 60 +# chkconfig: - 40 60 ############################################################################### ### BEGIN INIT INFO # Provides: munge @@ -15,8 +15,8 @@ # Required-Stop: $named $time # Should-Start: $local_fs $syslog # Should-Stop: $local_fs $syslog -# Default-Start: 3 4 5 # Default-Stop: 0 1 2 6 +# Short-Description: Start/Stop the MUNGE authentication service. # Description: Start/Stop the MUNGE authentication service. ### END INIT INFO ############################################################################### --- NEW FILE munge.logrotate --- /var/log/munge/munged.log { missingok notifempty copytruncate } --- NEW FILE munge.spec --- %if 0%{?el4}%{?el5} %define _initddir %{_sysconfdir}/rc.d/init.d %endif Name: munge Version: 0.5.8 Release: 4%{?dist} Summary: Enables uid & gid authentication across a host cluster Group: Applications/System License: GPLv2+ URL: http://home.gna.org/munge/ Source0: http://download.gna.org/munge/%{version}/munge-%{version}.tar.bz2 Source1: create-munge-key Source2: munge.logrotate Patch0: initd-pass-rpmlint.patch Patch2: runas-munge-user.patch Patch3: check-key-exists.patch Patch4: remove-GPL_LICENSED-cpp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel bzip2-devel openssl-devel Requires(post): chkconfig Requires(pre): shadow-utils Requires(preun): chkconfig, initscripts Requires(postun): initscripts %description MUNGE (MUNGE Uid 'N' Gid Emporium) is an authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment. It allows a process to authenticate the UID and GID of another local or remote process within a group of hosts having common users and groups. These hosts form a security realm that is defined by a shared cryptographic key. Clients within this security realm can create and validate credentials without the use of root privileges, reserved ports, or platform-specific methods. %package devel Summary: Development files for uid * gid authentication acrosss a host cluster Requires: %{name} = %{version}-%{release} Group: Applications/System %description devel Header files for developing using MUNGE. %prep %setup -q %patch0 -p1 %patch2 -p1 %patch3 -p1 %patch4 -p1 %build # Won't compile without -DGNU_SOURCE on fc11,12 at least. %if ! 0%{?el4}%{?el5} export CFLAGS="%{optflags} -D_GNU_SOURCE" %endif %configure --disable-static # Get rid of some rpaths for /usr/sbin sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # mv init.d script form /etc/init.d to %{_initddir} mkdir -p $RPM_BUILD_ROOT/%{_initddir} mv $RPM_BUILD_ROOT/%{_sysconfdir}/init.d/munge $RPM_BUILD_ROOT/%{_initddir}/munge # chmod 644 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/munge # Exclude .la files rm $RPM_BUILD_ROOT/%{_libdir}/libmunge.la install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_sbindir}/create-munge-key install -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/munge # Fix a few permissions chmod 700 $RPM_BUILD_ROOT%{_var}/lib/munge $RPM_BUILD_ROOT%{_var}/log/munge chmod 700 $RPM_BUILD_ROOT%{_sysconfdir}/munge # Create and empty key file to be marked as a ghost file below. # i.e it is not actually included in the rpm, only the record # of it is. # Can't be done on .el4 or .el5. %if ! 0%{?el4}%{?el5} touch $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key chmod 400 $RPM_BUILD_ROOT%{_sysconfdir}/munge/munge.key %endif %clean rm -rf $RPM_BUILD_ROOT %postun /sbin/ldconfig if [ "$1" -ge "1" ] ; then /sbin/service munge condrestart >/dev/null 2>&1 || : fi %preun if [ $1 = 0 ]; then /sbin/service munge stop > /dev/null 2>&1 || : /sbin/chkconfig --del munge || : fi %pre getent group munge >/dev/null || groupadd -r munge getent passwd munge >/dev/null || \ useradd -r -g munge -d %{_var}/run/munge -s /sbin/nologin \ -c "Runs Uid 'N' Gid Emporium" munge exit 0 %post /sbin/chkconfig --add munge || : /sbin/ldconfig %files %defattr(-,root,root,-) %{_initddir}/munge %{_bindir}/munge %{_bindir}/remunge %{_bindir}/unmunge %{_sbindir}/munged %{_sbindir}/create-munge-key %{_mandir}/man1/munge.1.gz %{_mandir}/man1/remunge.1.gz %{_mandir}/man1/unmunge.1.gz %{_mandir}/man7/munge.7.gz %{_mandir}/man8/munged.8.gz %{_libdir}/libmunge.so.2 %{_libdir}/libmunge.so.2.0.0 %attr(0700,munge,munge) %dir %{_var}/run/munge %attr(0700,munge,munge) %dir %{_var}/log/munge %attr(0700,munge,munge) %dir %{_sysconfdir}/munge %if ! 0%{?el4}%{?el5} %attr(0400,munge,munge) %ghost %{_sysconfdir}/%{name}/%{name}.key %endif %attr(0700,munge,munge) %dir %{_var}/lib/munge %config(noreplace) %{_sysconfdir}/sysconfig/munge %config(noreplace) %{_sysconfdir}/logrotate.d/munge %doc AUTHORS BUGS ChangeLog COPYING DISCLAIMER %doc JARGON META NEWS QUICKSTART README %doc doc %files devel %defattr(-,root,root,-) %{_includedir}/munge.h %{_libdir}/libmunge.so %{_mandir}/man3/munge.3.gz %{_mandir}/man3/munge_ctx.3.gz %{_mandir}/man3/munge_ctx_copy.3.gz %{_mandir}/man3/munge_ctx_create.3.gz %{_mandir}/man3/munge_ctx_destroy.3.gz %{_mandir}/man3/munge_ctx_get.3.gz %{_mandir}/man3/munge_ctx_set.3.gz %{_mandir}/man3/munge_ctx_strerror.3.gz %{_mandir}/man3/munge_decode.3.gz %{_mandir}/man3/munge_encode.3.gz %{_mandir}/man3/munge_enum.3.gz %{_mandir}/man3/munge_enum_int_to_str.3.gz %{_mandir}/man3/munge_enum_is_valid.3.gz %{_mandir}/man3/munge_enum_str_to_int.3.gz %{_mandir}/man3/munge_strerror.3.gz %changelog * Thu Jul 22 2009 Steve Traylen - 0.5.8-4 - Expand defattr with 4th argument for default directory perms. - Explict attr for non 0644 files and 0755 directories. * Thu Jul 22 2009 Steve Traylen - 0.5.8-3 - Append -DGNU_SOURCE to default CFLAGS. * Wed Jul 22 2009 Steve Traylen - 0.5.8-2 - Correct License to GPLv2+ - Move man3 pages to the devel package. - Remove +x bit from create-munge-key source. - Preserve timestamps when installing files. - ldconfig not needed on -devel package. - Do a condrestart when upgrading. - Remove redundant files from docs. - chmod /var/lib/munge /var/log/munge and /etc/munge to 700. - Apply patch to not error when GPL_LICENSED is not set. - Patch service script to print error on if munge.key not present on start only and with a better error. - Remove dont-exit-form-lib.patch. munge is expecting munge to do this. - Remove libgcrypt-devel from BuildRequires, uses openssl by default anyway. - Mark the munge.key as a ghost file. * Fri Jun 12 2009 Steve Traylen - 0.5.8-1 - First Build remove-GPL_LICENSED-cpp.patch: munge.h | 11 ----------- 1 file changed, 11 deletions(-) --- NEW FILE remove-GPL_LICENSED-cpp.patch --- diff -uNr munge-0.5.8.ORIG/src/libmunge/munge.h munge-0.5.8/src/libmunge/munge.h --- munge-0.5.8.ORIG/src/libmunge/munge.h 2009-07-22 22:20:01.358333769 +0200 +++ munge-0.5.8/src/libmunge/munge.h 2009-07-22 22:23:55.773390795 +0200 @@ -31,17 +31,6 @@ #include -/***************************************************************************** - * Got GPL? - *****************************************************************************/ - -#if ! GPL_LICENSED -# error By linking against libmunge, the derivative -# error work becomes licensed under the terms of the -# error GNU General Public License. Acknowledge by -# error defining the GPL_LICENSED preprocessor macro. -#endif /* !GPL_LICENSED */ - /***************************************************************************** * Got C++? runas-munge-user.patch: munge.sysconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE runas-munge-user.patch --- diff -uNr munge-0.5.8.ORIG/src/etc/munge.sysconfig munge-0.5.8/src/etc/munge.sysconfig --- munge-0.5.8.ORIG/src/etc/munge.sysconfig 2009-06-12 16:03:40.000000000 +0200 +++ munge-0.5.8/src/etc/munge.sysconfig 2009-06-12 16:04:10.000000000 +0200 @@ -15,4 +15,6 @@ ## # Execute the daemon under another username. ## -# USER="daemon" +USER="munge" + + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/munge/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:16:14 -0000 1.1 +++ sources 30 Jul 2009 08:22:15 -0000 1.2 @@ -0,0 +1 @@ +10c3a913d8fc75d86cc9e71e72497724 munge-0.5.8.tar.bz2 From corsepiu at fedoraproject.org Thu Jul 30 08:23:10 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 08:23:10 +0000 (UTC) Subject: rpms/perl-Exception-Class/devel .cvsignore, 1.6, 1.7 perl-Exception-Class.spec, 1.15, 1.16 sources, 1.6, 1.7 Message-ID: <20090730082310.3926211C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Exception-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19155 Modified Files: .cvsignore perl-Exception-Class.spec sources Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.29-1 - Upstream update (Required by other packages, fix mass rebuild breakdowns). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Class/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 12 Dec 2008 18:25:24 -0000 1.6 +++ .cvsignore 30 Jul 2009 08:23:09 -0000 1.7 @@ -1 +1 @@ -Exception-Class-1.26.tar.gz +Exception-Class-1.29.tar.gz Index: perl-Exception-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Class/devel/perl-Exception-Class.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Exception-Class.spec 26 Jul 2009 05:53:19 -0000 1.15 +++ perl-Exception-Class.spec 30 Jul 2009 08:23:10 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Exception-Class -Version: 1.26 -Release: 3%{?dist} +Version: 1.29 +Release: 1%{?dist} Summary: Module that allows you to declare real exception classes in Perl License: GPL+ or Artistic Group: Development/Libraries @@ -14,8 +14,6 @@ BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) >= 0.46 BuildRequires: perl(Test::Pod) >= 1.14 BuildRequires: perl(Test::Pod::Coverage) >= 1.04 -Requires: perl(Class::Data::Inheritable) >= 0.02 -Requires: perl(Devel::StackTrace) >= 1.17 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description @@ -53,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.29-1 +- Upstream update (Required by other packages, fix mass rebuild breakdowns). + * Sat Jul 25 2009 Fedora Release Engineering - 1.26-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Class/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 12 Dec 2008 18:25:24 -0000 1.6 +++ sources 30 Jul 2009 08:23:10 -0000 1.7 @@ -1 +1 @@ -362d428cae5dee785a9ed9ac91103a32 Exception-Class-1.26.tar.gz +b9a91cd9eb10a02a9b53880359d2228b Exception-Class-1.29.tar.gz From jfch2222 at fedoraproject.org Thu Jul 30 08:29:01 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Thu, 30 Jul 2009 08:29:01 +0000 (UTC) Subject: rpms/openssh/devel openssh-5.2p1-edns.patch, NONE, 1.1 openssh.spec, 1.154, 1.155 Message-ID: <20090730082901.7C9D511C00D3@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19513 Modified Files: openssh.spec Added Files: openssh-5.2p1-edns.patch Log Message: Added dnssec support. openssh-5.2p1-edns.patch: dns.c | 14 +++++++++++++- openbsd-compat/getrrsetbyname.c | 10 +++++----- openbsd-compat/getrrsetbyname.h | 3 +++ 3 files changed, 21 insertions(+), 6 deletions(-) --- NEW FILE openssh-5.2p1-edns.patch --- diff -up openssh-5.2p1/dns.c.rh205842 openssh-5.2p1/dns.c --- openssh-5.2p1/dns.c.rh205842 2009-07-27 16:25:28.000000000 +0200 +++ openssh-5.2p1/dns.c 2009-07-27 16:40:59.000000000 +0200 @@ -176,6 +176,7 @@ verify_host_key_dns(const char *hostname { u_int counter; int result; + unsigned int rrset_flags = 0; struct rrsetinfo *fingerprints = NULL; u_int8_t hostkey_algorithm; @@ -199,8 +200,19 @@ verify_host_key_dns(const char *hostname return -1; } + /* + * Original getrrsetbyname function, found on OpenBSD for example, + * doesn't accept any flag and prerequisite for obtaining AD bit in + * DNS response is set by "options edns0" in resolv.conf. + * + * Our version is more clever and use RRSET_FORCE_EDNS0 flag. + */ +#ifndef HAVE_GETRRSETBYNAME + rrset_flags |= RRSET_FORCE_EDNS0; +#endif result = getrrsetbyname(hostname, DNS_RDATACLASS_IN, - DNS_RDATATYPE_SSHFP, 0, &fingerprints); + DNS_RDATATYPE_SSHFP, rrset_flags, &fingerprints); + if (result) { verbose("DNS lookup error: %s", dns_result_totext(result)); return -1; diff -up openssh-5.2p1/openbsd-compat/getrrsetbyname.c.rh205842 openssh-5.2p1/openbsd-compat/getrrsetbyname.c --- openssh-5.2p1/openbsd-compat/getrrsetbyname.c.rh205842 2009-07-27 16:22:23.000000000 +0200 +++ openssh-5.2p1/openbsd-compat/getrrsetbyname.c 2009-07-27 16:41:55.000000000 +0200 @@ -209,8 +209,8 @@ getrrsetbyname(const char *hostname, uns goto fail; } - /* don't allow flags yet, unimplemented */ - if (flags) { + /* Allow RRSET_FORCE_EDNS0 flag only. */ + if ((flags & !RRSET_FORCE_EDNS0) != 0) { result = ERRSET_INVAL; goto fail; } @@ -226,9 +226,9 @@ getrrsetbyname(const char *hostname, uns #endif /* DEBUG */ #ifdef RES_USE_DNSSEC - /* turn on DNSSEC if EDNS0 is configured */ - if (_resp->options & RES_USE_EDNS0) - _resp->options |= RES_USE_DNSSEC; + /* turn on DNSSEC if required */ + if (flags & RRSET_FORCE_EDNS0) + _resp->options |= (RES_USE_EDNS0|RES_USE_DNSSEC); #endif /* RES_USE_DNSEC */ /* make query */ diff -up openssh-5.2p1/openbsd-compat/getrrsetbyname.h.rh205842 openssh-5.2p1/openbsd-compat/getrrsetbyname.h --- openssh-5.2p1/openbsd-compat/getrrsetbyname.h.rh205842 2009-07-27 16:35:02.000000000 +0200 +++ openssh-5.2p1/openbsd-compat/getrrsetbyname.h 2009-07-27 16:36:09.000000000 +0200 @@ -72,6 +72,9 @@ #ifndef RRSET_VALIDATED # define RRSET_VALIDATED 1 #endif +#ifndef RRSET_FORCE_EDNS0 +# define RRSET_FORCE_EDNS0 0x0001 +#endif /* * Return codes for getrrsetbyname() Index: openssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh.spec,v retrieving revision 1.154 retrieving revision 1.155 diff -u -p -r1.154 -r1.155 --- openssh.spec 25 Jul 2009 20:53:38 -0000 1.154 +++ openssh.spec 30 Jul 2009 08:29:01 -0000 1.155 @@ -63,7 +63,7 @@ Summary: An open source implementation of SSH protocol versions 1 and 2 Name: openssh Version: 5.2p1 -Release: 16%{?dist}%{?rescue_rel} +Release: 17%{?dist}%{?rescue_rel} URL: http://www.openssh.com/portable.html #Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz #Source1: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz.asc @@ -102,6 +102,7 @@ Patch67: openssh-5.2p1-xmodifiers.patch Patch68: openssh-5.2p1-pathmax.patch Patch69: openssh-5.2p1-selabel.patch Patch70: openssh-5.2p1-sesftp.patch +Patch71: openssh-5.2p1-edns.patch License: BSD Group: Applications/Internet @@ -238,6 +239,7 @@ an X11 passphrase dialog for OpenSSH. %patch68 -p1 -b .pathmax %patch69 -p1 -b .selabel %patch70 -p1 -b .sesftp +%patch71 -p1 -b .edns autoreconf @@ -472,6 +474,9 @@ fi %endif %changelog +* Thu Jul 30 2009 Jan F. Chadima - 5.2p1-17 +- Added dnssec support. + * Sat Jul 25 2009 Fedora Release Engineering - 5.2p1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mtasaka at fedoraproject.org Thu Jul 30 08:40:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 08:40:11 +0000 (UTC) Subject: rpms/xscreensaver/devel xscreensaver-autostart, NONE, 1.1 xscreensaver-autostart.desktop, NONE, 1.1 xscreensaver.spec, 1.92, 1.93 Message-ID: <20090730084011.BC58311C04D5@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xscreensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25834 Modified Files: xscreensaver.spec Added Files: xscreensaver-autostart xscreensaver-autostart.desktop Log Message: * Thu Jul 30 2009 Mamoru Tasaka - 1:5.08-12 - Install desktop application autostart stuff --- NEW FILE xscreensaver-autostart --- #!/bin/sh # Don't launch xscreensaver if gnome-screensaver # is installed if [ -x /usr/bin/gnome-screensaver ] ; then exit 0 ; fi exec xscreensaver -nosplash --- NEW FILE xscreensaver-autostart.desktop --- [Desktop Entry] Type=Application Name=xscreensaver-autostart Comment=Autostart xscreensaver Exec=/usr/libexec/xscreensaver-autostart Terminal=false Index: xscreensaver.spec =================================================================== RCS file: /cvs/extras/rpms/xscreensaver/devel/xscreensaver.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- xscreensaver.spec 25 Jul 2009 13:09:33 -0000 1.92 +++ xscreensaver.spec 30 Jul 2009 08:40:11 -0000 1.93 @@ -5,7 +5,7 @@ %define modular_conf 1 -%define fedora_rel 11 +%define fedora_rel 12 %define extrarel %{nil} @@ -31,6 +31,8 @@ Source0: http://www.jwz.org/xscr %if %{modular_conf} Source10: update-xscreensaver-hacks %endif +Source11: xscreensaver-autostart +Source12: xscreensaver-autostart.desktop # bug 129335 # sanitize the names of modes in barcode Patch1: xscreensaver-5.00b5-sanitize-hacks.patch @@ -542,6 +544,20 @@ done cd .. %endif +# Install desktop application autostart stuff +%if 0%{?fedora} >= 12 +mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart +install -cpm 0755 %{SOURCE11} ${RPM_BUILD_ROOT}%{_libexecdir}/ +desktop-file-install \ + --vendor "" \ + --dir ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart \ + %{SOURCE12} +chmod 0644 ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/xscreensaver*.desktop + +echo "%{_libexecdir}/xscreensaver-autostart" >> $dd/base.files +echo '%{_sysconfdir}/xdg/autostart/xscreensaver*.desktop' >> $dd/base.files +%endif + # Create desktop entry for gnome-screensaver # bug 204944, 208560 create_desktop(){ @@ -662,6 +678,9 @@ exit 0 %defattr(-,root,root,-) %changelog +* Thu Jul 30 2009 Mamoru Tasaka - 1:5.08-12 +- Install desktop application autostart stuff + * Sat Jul 25 2009 Mamoru Tasaka - 1:5.08-11 - Build fix for new xextproto (libXext 1.0.99.3) - Fix for breaking strict aliasing rule From bskeggs at fedoraproject.org Thu Jul 30 08:41:41 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Thu, 30 Jul 2009 08:41:41 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.39, 1.40 kernel.spec, 1.1673, 1.1674 Message-ID: <20090730084141.D512311C00D3@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26247 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Thu Jul 30 2009 Ben Skeggs - nouveau: another DCB 1.5 entry, G80 corruption fixes, small engine.instmem.finish_access(dev); + ++ nv_wr32(dev, 0x100c80, 0x00050001); ++ if (!nv_wait(0x100c80, 0x00000001, 0x00000000)) { ++ NV_ERROR(dev, "timeout: (0x100c80 & 1) == 0 (2)\n"); ++ NV_ERROR(dev, "0x100c80 = 0x%08x\n", nv_rd32(dev, 0x100c80)); ++ return -EBUSY; ++ } ++ ++ nv_wr32(dev, 0x100c80, 0x00000001); ++ if (!nv_wait(0x100c80, 0x00000001, 0x00000000)) { ++ NV_ERROR(dev, "timeout: (0x100c80 & 1) == 0 (2)\n"); ++ NV_ERROR(dev, "0x100c80 = 0x%08x\n", nv_rd32(dev, 0x100c80)); ++ return -EBUSY; ++ } ++ + return 0; +} + @@ -18504,10 +18520,10 @@ index 0000000..2fb3804 + diff --git a/drivers/gpu/drm/nouveau/nv04_crtc.c b/drivers/gpu/drm/nouveau/nv04_crtc.c new file mode 100644 -index 0000000..4b743a7 +index 0000000..c732fbe --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv04_crtc.c -@@ -0,0 +1,1126 @@ +@@ -0,0 +1,1135 @@ +/* + * Copyright 1993-2003 NVIDIA, Corporation + * Copyright 2006 Dave Airlie @@ -19477,6 +19493,15 @@ index 0000000..4b743a7 + nv_crtc_gamma_load(nv_crtc); + } + ++ regp->CRTC[NV_CIO_CRE_PIXEL_INDEX] &= ~3; ++ regp->CRTC[NV_CIO_CRE_PIXEL_INDEX] |= (crtc->fb->depth + 1) / 8; ++ regp->ramdac_gen_ctrl &= ~NV_PRAMDAC_GENERAL_CONTROL_ALT_MODE_SEL; ++ if (crtc->fb->depth == 16) ++ regp->ramdac_gen_ctrl |= NV_PRAMDAC_GENERAL_CONTROL_ALT_MODE_SEL; ++ crtc_wr_cio_state(crtc, regp, NV_CIO_CRE_PIXEL_INDEX); ++ NVWriteRAMDAC(crtc->dev, nv_crtc->index, NV_PRAMDAC_GENERAL_CONTROL, ++ regp->ramdac_gen_ctrl); ++ + regp->CRTC[NV_CIO_CR_OFFSET_INDEX] = drm_fb->pitch >> 3; + regp->CRTC[NV_CIO_CRE_RPC0_INDEX] = + XLATE(drm_fb->pitch >> 3, 8, NV_CIO_CRE_RPC0_OFFSET_10_8); Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1673 retrieving revision 1.1674 diff -u -p -r1.1673 -r1.1674 --- kernel.spec 29 Jul 2009 21:10:48 -0000 1.1673 +++ kernel.spec 30 Jul 2009 08:41:41 -0000 1.1674 @@ -1933,6 +1933,9 @@ fi # and build. %changelog +* Thu Jul 30 2009 Ben Skeggs +- nouveau: another DCB 1.5 entry, G80 corruption fixes, small - fix VGA ARB + kms From than at fedoraproject.org Thu Jul 30 08:44:49 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 08:44:49 +0000 (UTC) Subject: rpms/kdepim/devel .cvsignore, 1.66, 1.67 kdepim.spec, 1.227, 1.228 sources, 1.74, 1.75 Message-ID: <20090730084449.585DC11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27533 Modified Files: .cvsignore kdepim.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 22 Jul 2009 11:01:29 -0000 1.66 +++ .cvsignore 30 Jul 2009 08:44:48 -0000 1.67 @@ -2,3 +2,4 @@ kdepim-4.2.90.tar.bz2 kdepim-4.2.95.tar.bz2 kdepim-4.2.96.tar.bz2 kdepim-4.2.98.tar.bz2 +kdepim-4.3.0.tar.bz2 Index: kdepim.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/kdepim.spec,v retrieving revision 1.227 retrieving revision 1.228 diff -u -p -r1.227 -r1.228 --- kdepim.spec 25 Jul 2009 04:29:02 -0000 1.227 +++ kdepim.spec 30 Jul 2009 08:44:49 -0000 1.228 @@ -5,8 +5,8 @@ Name: kdepim Summary: PIM (Personal Information Manager) applications Epoch: 6 -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} License: GPLv2 Group: Applications/Productivity @@ -188,6 +188,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/sources,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sources 22 Jul 2009 11:01:29 -0000 1.74 +++ sources 30 Jul 2009 08:44:49 -0000 1.75 @@ -1 +1 @@ -1a266323caa03371e345782c74260642 kdepim-4.2.98.tar.bz2 +ddc887f19ef9cd454f4f3226c955aaaf kdepim-4.3.0.tar.bz2 From than at fedoraproject.org Thu Jul 30 08:49:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 08:49:01 +0000 (UTC) Subject: rpms/kdepimlibs/devel .cvsignore, 1.40, 1.41 kdepimlibs.spec, 1.95, 1.96 sources, 1.40, 1.41 Message-ID: <20090730084901.7192D11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29039 Modified Files: .cvsignore kdepimlibs.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 22 Jul 2009 11:07:33 -0000 1.40 +++ .cvsignore 30 Jul 2009 08:49:00 -0000 1.41 @@ -2,3 +2,4 @@ kdepimlibs-4.2.90.tar.bz2 kdepimlibs-4.2.95.tar.bz2 kdepimlibs-4.2.96.tar.bz2 kdepimlibs-4.2.98.tar.bz2 +kdepimlibs-4.3.0.tar.bz2 Index: kdepimlibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- kdepimlibs.spec 29 Jul 2009 20:38:33 -0000 1.95 +++ kdepimlibs.spec 30 Jul 2009 08:49:00 -0000 1.96 @@ -11,8 +11,8 @@ %define akonadi_version 1.1.95 Name: kdepimlibs -Version: 4.2.98 -Release: 3%{?dist} +Version: 4.3.0 +Release: 1%{?dist} Summary: K Desktop Environment 4 - PIM Libraries # http://techbase.kde.org/Policies/Licensing_Policy @@ -213,6 +213,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 29 2009 Rex Dieter - 4.2.98-3 - Conflicts: kdepim < 4.2.90 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 22 Jul 2009 11:07:33 -0000 1.40 +++ sources 30 Jul 2009 08:49:00 -0000 1.41 @@ -1 +1 @@ -b7a464799cdc896092d42524a8174a93 kdepimlibs-4.2.98.tar.bz2 +313f1a9d353f82c2ffee517115404dd5 kdepimlibs-4.3.0.tar.bz2 From thias at fedoraproject.org Thu Jul 30 09:01:13 2009 From: thias at fedoraproject.org (Matthias Saou) Date: Thu, 30 Jul 2009 09:01:13 +0000 (UTC) Subject: rpms/glusterfs/devel .cvsignore, 1.8, 1.9 glusterfs.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090730090113.34A5911C00D3@cvs1.fedora.phx.redhat.com> Author: thias Update of /cvs/extras/rpms/glusterfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv802 Modified Files: .cvsignore glusterfs.spec sources Log Message: Update to 2.0.4. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/glusterfs/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 May 2009 10:07:22 -0000 1.8 +++ .cvsignore 30 Jul 2009 09:01:10 -0000 1.9 @@ -1 +1 @@ -glusterfs-2.0.1.tar.gz +glusterfs-2.0.4.tar.gz Index: glusterfs.spec =================================================================== RCS file: /cvs/extras/rpms/glusterfs/devel/glusterfs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- glusterfs.spec 25 Jul 2009 00:26:50 -0000 1.12 +++ glusterfs.spec 30 Jul 2009 09:01:10 -0000 1.13 @@ -15,8 +15,8 @@ Summary: Cluster File System Name: glusterfs -Version: 2.0.1 -Release: 3%{?pre:.%{pre}}%{?dist} +Version: 2.0.4 +Release: 1%{?pre:.%{pre}}%{?dist} License: GPLv3+ Group: System Environment/Base URL: http://www.gluster.org/docs/index.php/GlusterFS @@ -235,8 +235,8 @@ fi %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Mon Jul 27 2009 Matthias Saou 2.0.4-1 +- Update to 2.0.4. * Thu Jun 11 2009 Matthias Saou 2.0.1-2 - Remove libglusterfs/src/y.tab.c to fix koji F11/devel builds. Index: sources =================================================================== RCS file: /cvs/extras/rpms/glusterfs/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 May 2009 10:07:22 -0000 1.8 +++ sources 30 Jul 2009 09:01:10 -0000 1.9 @@ -1 +1 @@ -712b6325abbd9f89ac927727a4bad658 glusterfs-2.0.1.tar.gz +231784a826781c72bac1479768912194 glusterfs-2.0.4.tar.gz From jzeleny at fedoraproject.org Thu Jul 30 09:22:25 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 09:22:25 +0000 (UTC) Subject: rpms/libhbaapi/devel .cvsignore, 1.2, 1.3 libhbaapi.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730092225.CE4D411C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9037 Modified Files: .cvsignore libhbaapi.spec sources Log Message: Rebase of hbaapi_build tarball Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Apr 2009 13:19:02 -0000 1.2 +++ .cvsignore 30 Jul 2009 09:22:25 -0000 1.3 @@ -1,2 +1,2 @@ hbaapi_src_2.2.tgz -hbaapi_build_2.2.tar.gz +hbaapi_build_2.2.1.tar.gz Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libhbaapi.spec 25 Jul 2009 05:52:40 -0000 1.2 +++ libhbaapi.spec 30 Jul 2009 09:22:25 -0000 1.3 @@ -1,13 +1,20 @@ +%define buildversion 2.2.1 + Name: libhbaapi Version: 2.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries License: SNIA URL: http://sourceforge.net/projects/hbaapi/ Source0: http://downloads.sourceforge.net/hbaapi/hbaapi_src_%{version}.tgz -Source1: http://www.open-fcoe.org/openfc/downloads/hbaapi_build_%{version}.tar.gz +# This source was cloned from upstream git. To create tarball, run: +# git clone git://open-fcoe.org/openfc/hbaapi_build.git +# cd hbaapi_build +# git archive v%{buildversion} > ../hbaapi_build.tar +# cd .. && gzip hbaapi_build.tar +Source1: hbaapi_build_%{buildversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # BuildRequires: @@ -34,6 +41,7 @@ developing applications that use %{name} %build +./bootstrap.sh %configure --disable-static make %{?_smp_mflags} @@ -67,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jan Zeleny - 2.2-6 +- rebase of hbaapi_build code + * Fri Jul 24 2009 Fedora Release Engineering - 2.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Apr 2009 13:19:02 -0000 1.2 +++ sources 30 Jul 2009 09:22:25 -0000 1.3 @@ -1,2 +1,2 @@ 5c9281e28f8731e38721b34494a75eef hbaapi_src_2.2.tgz -e853af8d852c2ba03132c0262b1eb559 hbaapi_build_2.2.tar.gz +c43a21af9c2cf6c8922dd3e5825aa434 hbaapi_build_2.2.1.tar.gz From than at fedoraproject.org Thu Jul 30 09:28:30 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 09:28:30 +0000 (UTC) Subject: rpms/kdepim-runtime/devel .cvsignore, 1.4, 1.5 kdepim-runtime.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090730092830.9893811C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11456 Modified Files: .cvsignore kdepim-runtime.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 Jul 2009 11:11:13 -0000 1.4 +++ .cvsignore 30 Jul 2009 09:28:30 -0000 1.5 @@ -1,3 +1,4 @@ kdepim-runtime-4.2.95.tar.bz2 kdepim-runtime-4.2.96.tar.bz2 kdepim-runtime-4.2.98.tar.bz2 +kdepim-runtime-4.3.0.tar.bz2 Index: kdepim-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/kdepim-runtime.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kdepim-runtime.spec 22 Jul 2009 11:11:13 -0000 1.6 +++ kdepim-runtime.spec 30 Jul 2009 09:28:30 -0000 1.7 @@ -1,9 +1,8 @@ - %define akonadi_version 1.1.95 Name: kdepim-runtime Summary: KDE PIM Runtime Environment -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} License: GPLv2 @@ -131,6 +130,9 @@ rm -rf %{buildroot} %{_kde4_libdir}/lib*.so.* %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 Jul 2009 11:11:13 -0000 1.4 +++ sources 30 Jul 2009 09:28:30 -0000 1.5 @@ -1 +1 @@ -08009a12bcdbd26e01445e4f3cdb1801 kdepim-runtime-4.2.98.tar.bz2 +d29f9b0921534309d4595de5c9b619f1 kdepim-runtime-4.3.0.tar.bz2 From jzeleny at fedoraproject.org Thu Jul 30 09:28:54 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 09:28:54 +0000 (UTC) Subject: rpms/libhbaapi/F-11 .cvsignore, 1.2, 1.3 libhbaapi.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730092854.0090011C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11551 Modified Files: .cvsignore libhbaapi.spec sources Log Message: Rebased hbaapi_build package Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Apr 2009 13:19:02 -0000 1.2 +++ .cvsignore 30 Jul 2009 09:28:53 -0000 1.3 @@ -1,2 +1,2 @@ hbaapi_src_2.2.tgz -hbaapi_build_2.2.tar.gz +hbaapi_build_2.2.1.tar.gz Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/F-11/libhbaapi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libhbaapi.spec 8 Apr 2009 13:19:02 -0000 1.1 +++ libhbaapi.spec 30 Jul 2009 09:28:53 -0000 1.2 @@ -1,13 +1,20 @@ +%define buildversion 2.2.1 + Name: libhbaapi Version: 2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries License: SNIA URL: http://sourceforge.net/projects/hbaapi/ Source0: http://downloads.sourceforge.net/hbaapi/hbaapi_src_%{version}.tgz -Source1: http://www.open-fcoe.org/openfc/downloads/hbaapi_build_%{version}.tar.gz +# This source was cloned from upstream git. To create tarball, run: +# git clone git://open-fcoe.org/openfc/hbaapi_build.git +# cd hbaapi_build +# git archive v%{buildversion} > ../hbaapi_build.tar +# cd .. && gzip hbaapi_build.tar +Source1: hbaapi_build_%{buildversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # BuildRequires: @@ -34,6 +41,7 @@ developing applications that use %{name} %build +./bootstrap.sh %configure --disable-static make %{?_smp_mflags} @@ -67,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jan Zeleny - 2.2-5 +- rebase of hbaapi_build code + * Wed Apr 01 2009 Jan Zeleny - 2.2-4 - added some info to description line - replaced unoficial build source tarball with official one Index: sources =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Apr 2009 13:19:02 -0000 1.2 +++ sources 30 Jul 2009 09:28:53 -0000 1.3 @@ -1,2 +1,2 @@ 5c9281e28f8731e38721b34494a75eef hbaapi_src_2.2.tgz -e853af8d852c2ba03132c0262b1eb559 hbaapi_build_2.2.tar.gz +c43a21af9c2cf6c8922dd3e5825aa434 hbaapi_build_2.2.1.tar.gz From agk at fedoraproject.org Thu Jul 30 09:29:59 2009 From: agk at fedoraproject.org (agk) Date: Thu, 30 Jul 2009 09:29:59 +0000 (UTC) Subject: rpms/lvm2/devel lvm2.spec,1.164,1.165 Message-ID: <20090730092959.1F56211C00D3@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12138 Modified Files: lvm2.spec Log Message: lvm2-devel requires device-mapper-devel. Fix lvm2app.pc filename. Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.164 retrieving revision 1.165 diff -u -p -r1.164 -r1.165 --- lvm2.spec 28 Jul 2009 22:22:37 -0000 1.164 +++ lvm2.spec 30 Jul 2009 09:29:58 -0000 1.165 @@ -63,6 +63,7 @@ mkdir -p -m755 $RPM_BUILD_ROOT/etc/rc.d/ install scripts/clvmd_init_red_hat $RPM_BUILD_ROOT/etc/rc.d/init.d/clvmd install -m 0755 scripts/lvmconf.sh $RPM_BUILD_ROOT/sbin/lvmconf mv $RPM_BUILD_ROOT/usr/include/lvm.h $RPM_BUILD_ROOT/usr/include/lvm2app.h +mv $RPM_BUILD_ROOT/usr%{_libdir}/pkgconfig/liblvm2app.pc $RPM_BUILD_ROOT/usr%{_libdir}/pkgconfig/lvm2app.pc %clean rm -rf $RPM_BUILD_ROOT @@ -178,6 +179,7 @@ Group: Development/Libraries License: LGPLv2 Requires: %{name} = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release} +Requires: device-mapper-devel >= %{device_mapper_version}-%{release} Requires: pkgconfig %description devel @@ -190,7 +192,7 @@ the lvm2 libraries. %attr(755,root,root) /%{_lib}/liblvm2cmd.so %{_includedir}/lvm2app.h %{_includedir}/lvm2cmd.h -/usr%{_libdir}/pkgconfig/liblvm2app.pc +/usr%{_libdir}/pkgconfig/lvm2app.pc %package libs Summary: lvm2 shared libraries @@ -306,6 +308,10 @@ This package contains the device-mapper %changelog +* Thu Jul 30 2009 Alasdair Kergon - 2.02.50-2 +- lvm2-devel requires device-mapper-devel. +- Fix lvm2app.pc filename. + * Tue Jul 28 2009 Alasdair Kergon - 2.02.50-1 - Add libs and devel subpackages to include shared libraries for applications. N.B. The liblvm2app API is not frozen yet and may still be changed From agk at fedoraproject.org Thu Jul 30 09:31:23 2009 From: agk at fedoraproject.org (agk) Date: Thu, 30 Jul 2009 09:31:23 +0000 (UTC) Subject: rpms/lvm2/devel lvm2.spec,1.165,1.166 Message-ID: <20090730093123.CE0E511C00D3@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12799 Modified Files: lvm2.spec Log Message: inc release Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.165 retrieving revision 1.166 diff -u -p -r1.165 -r1.166 --- lvm2.spec 30 Jul 2009 09:29:58 -0000 1.165 +++ lvm2.spec 30 Jul 2009 09:31:23 -0000 1.166 @@ -8,7 +8,7 @@ Summary: Userland logical volume management tools Name: lvm2 Version: 2.02.50 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base URL: http://sources.redhat.com/lvm2 From than at fedoraproject.org Thu Jul 30 09:36:55 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 09:36:55 +0000 (UTC) Subject: rpms/kdeplasma-addons/devel .cvsignore, 1.17, 1.18 kdeplasma-addons.spec, 1.48, 1.49 sources, 1.17, 1.18 Message-ID: <20090730093655.552A611C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeplasma-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15144 Modified Files: .cvsignore kdeplasma-addons.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 22 Jul 2009 11:20:38 -0000 1.17 +++ .cvsignore 30 Jul 2009 09:36:55 -0000 1.18 @@ -2,3 +2,4 @@ kdeplasma-addons-4.2.90.tar.bz2 kdeplasma-addons-4.2.95.tar.bz2 kdeplasma-addons-4.2.96.tar.bz2 kdeplasma-addons-4.2.98.tar.bz2 +kdeplasma-addons-4.3.0.tar.bz2 Index: kdeplasma-addons.spec =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/kdeplasma-addons.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- kdeplasma-addons.spec 22 Jul 2009 11:20:38 -0000 1.48 +++ kdeplasma-addons.spec 30 Jul 2009 09:36:55 -0000 1.49 @@ -1,5 +1,5 @@ Name: kdeplasma-addons -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} Summary: Additional plasmoids for KDE @@ -139,6 +139,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 22 Jul 2009 11:20:38 -0000 1.17 +++ sources 30 Jul 2009 09:36:55 -0000 1.18 @@ -1 +1 @@ -66f412626be47d31515e75f0f42ac4c6 kdeplasma-addons-4.2.98.tar.bz2 +abfbe2d32c444689b5bf4e5346b33c9e kdeplasma-addons-4.3.0.tar.bz2 From eseyman at fedoraproject.org Thu Jul 30 09:41:58 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 30 Jul 2009 09:41:58 +0000 (UTC) Subject: rpms/perl-CGI-Application/devel .cvsignore, 1.2, 1.3 perl-CGI-Application.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730094158.CA7A011C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16768 Modified Files: .cvsignore perl-CGI-Application.spec sources Log Message: Update to 4.31 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Mar 2009 22:09:40 -0000 1.2 +++ .cvsignore 30 Jul 2009 09:41:58 -0000 1.3 @@ -1 +1 @@ -CGI-Application-4.21.tar.gz +CGI-Application-4.31.tar.gz Index: perl-CGI-Application.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application/devel/perl-CGI-Application.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CGI-Application.spec 26 Jul 2009 03:53:32 -0000 1.2 +++ perl-CGI-Application.spec 30 Jul 2009 09:41:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CGI-Application -Version: 4.21 -Release: 3%{?dist} +Version: 4.31 +Release: 1%{?dist} Summary: Framework for building reusable web-applications License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Emmanuel Seyman 4.31-1 +- Update to 4.31 + * Sat Jul 25 2009 Fedora Release Engineering - 4.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Mar 2009 22:09:40 -0000 1.2 +++ sources 30 Jul 2009 09:41:58 -0000 1.3 @@ -1 +1 @@ -d63b877314caae7b45c359c228670048 CGI-Application-4.21.tar.gz +502cb5785a291ed65869eb663eb01999 CGI-Application-4.31.tar.gz From xhorak at fedoraproject.org Thu Jul 30 09:43:41 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 30 Jul 2009 09:43:41 +0000 (UTC) Subject: rpms/perl-Gtk2-MozEmbed/F-10 perl-Gtk2-MozEmbed.spec,1.7,1.8 Message-ID: <20090730094341.2DA3911C00D3@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17440 Modified Files: perl-Gtk2-MozEmbed.spec Log Message: * Thu Jul 30 2009 Jan Horak - 0.08-6.3 - Rebuild against newer gecko Index: perl-Gtk2-MozEmbed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/F-10/perl-Gtk2-MozEmbed.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Gtk2-MozEmbed.spec 12 Jun 2009 00:03:27 -0000 1.7 +++ perl-Gtk2-MozEmbed.spec 30 Jul 2009 09:43:40 -0000 1.8 @@ -3,7 +3,7 @@ %if 0%{?fedora} >= 11 %define gecko_version 1.9.1 %else -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 %endif # Using specfilever cause dumpspec to only increase @@ -13,7 +13,7 @@ Summary: Interface to the Mozilla embedding widget Name: perl-Gtk2-MozEmbed Version: 0.08 -Release: %{specfilever}%{?dist}.2 +Release: %{specfilever}%{?dist}.3 Group: Development/Libraries License: LGPLv2+ @@ -89,6 +89,9 @@ find $RPM_BUILD_ROOT -type d -depth -exe %changelog +* Thu Jul 30 2009 Jan Horak - 0.08-6.3 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.08-6.2 - Rebuild against newer gecko From than at fedoraproject.org Thu Jul 30 09:49:32 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 09:49:32 +0000 (UTC) Subject: rpms/kdesdk/devel .cvsignore, 1.61, 1.62 kdesdk.spec, 1.147, 1.148 sources, 1.63, 1.64 Message-ID: <20090730094932.5795E11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdesdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19550 Modified Files: .cvsignore kdesdk.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 22 Jul 2009 11:32:12 -0000 1.61 +++ .cvsignore 30 Jul 2009 09:49:32 -0000 1.62 @@ -2,3 +2,4 @@ kdesdk-4.2.90.tar.bz2 kdesdk-4.2.95.tar.bz2 kdesdk-4.2.96.tar.bz2 kdesdk-4.2.98.tar.bz2 +kdesdk-4.3.0.tar.bz2 Index: kdesdk.spec =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/kdesdk.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- kdesdk.spec 22 Jul 2009 11:32:13 -0000 1.147 +++ kdesdk.spec 30 Jul 2009 09:49:32 -0000 1.148 @@ -1,5 +1,5 @@ Name: kdesdk -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} Summary: The KDE Software Development Kit (SDK) @@ -223,6 +223,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 22 Jul 2009 11:32:13 -0000 1.63 +++ sources 30 Jul 2009 09:49:32 -0000 1.64 @@ -1 +1 @@ -06ca4ad5fdc2afe0551ff8a1f82da60b kdesdk-4.2.98.tar.bz2 +eda2376a54d66899bf7beb60cc0843b1 kdesdk-4.3.0.tar.bz2 From jzeleny at fedoraproject.org Thu Jul 30 09:51:25 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 09:51:25 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.3,1.4 Message-ID: <20090730095125.576DC11C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20083 Modified Files: libhbaapi.spec Log Message: Added automake to BuildRequires Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libhbaapi.spec 30 Jul 2009 09:22:25 -0000 1.3 +++ libhbaapi.spec 30 Jul 2009 09:51:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: libhbaapi Version: 2.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries @@ -17,7 +17,7 @@ Source0: http://downloads.sourcef Source1: hbaapi_build_%{buildversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# BuildRequires: +BuildRequires: automake # Requires: %description @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jan Zeleny - 2.2-7 +- added automake to buildrequires + * Thu Jul 30 2009 Jan Zeleny - 2.2-6 - rebase of hbaapi_build code From eseyman at fedoraproject.org Thu Jul 30 09:56:28 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 30 Jul 2009 09:56:28 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/devel .cvsignore, 1.2, 1.3 perl-CGI-Application-Plugin-ConfigAuto.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730095628.C012D11C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21740 Modified Files: .cvsignore perl-CGI-Application-Plugin-ConfigAuto.spec sources Log Message: Update to 1.31 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Jul 2009 06:38:02 -0000 1.2 +++ .cvsignore 30 Jul 2009 09:56:28 -0000 1.3 @@ -1 +1 @@ -CGI-Application-Plugin-ConfigAuto-1.30.tar.gz +CGI-Application-Plugin-ConfigAuto-1.31.tar.gz Index: perl-CGI-Application-Plugin-ConfigAuto.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/perl-CGI-Application-Plugin-ConfigAuto.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CGI-Application-Plugin-ConfigAuto.spec 26 Jul 2009 03:54:20 -0000 1.2 +++ perl-CGI-Application-Plugin-ConfigAuto.spec 30 Jul 2009 09:56:28 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-ConfigAuto -Version: 1.30 -Release: 2%{?dist} +Version: 1.31 +Release: 1%{?dist} Summary: Easy config file management for CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Emmanuel Seyman 1.31-1 +- Upate to 1.31 + * Sat Jul 25 2009 Fedora Release Engineering - 1.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Jul 2009 06:38:02 -0000 1.2 +++ sources 30 Jul 2009 09:56:28 -0000 1.3 @@ -1 +1 @@ -a30633fae26924578a906d0c997599d8 CGI-Application-Plugin-ConfigAuto-1.30.tar.gz +c5f5920d2bd8702e677594e9cd894d3f CGI-Application-Plugin-ConfigAuto-1.31.tar.gz From pghmcfc at fedoraproject.org Thu Jul 30 10:02:40 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Thu, 30 Jul 2009 10:02:40 +0000 (UTC) Subject: rpms/proftpd/devel proftpd-1.3.2a-defines.patch, NONE, 1.1 proftpd-1.3.2rc3-nostrip.patch, NONE, 1.1 proftpd.sysconfig, NONE, 1.1 .cvsignore, 1.13, 1.14 proftpd.conf, 1.9, 1.10 proftpd.init, 1.6, 1.7 proftpd.spec, 1.48, 1.49 sources, 1.13, 1.14 proftpd-1.3.1-find-umode_t.patch, 1.1, NONE Message-ID: <20090730100241.02C5511C00D3@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/proftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23980 Modified Files: .cvsignore proftpd.conf proftpd.init proftpd.spec sources Added Files: proftpd-1.3.2a-defines.patch proftpd-1.3.2rc3-nostrip.patch proftpd.sysconfig Removed Files: proftpd-1.3.1-find-umode_t.patch Log Message: * Mon Jul 27 2009 Paul Howarth 1.3.2a-1 - Update to 1.3.2a - Add patch to reinstate support for -DPARAMETER (upstream bug 3221) - Retain CAP_AUDIT_WRITE, needed for pam_loginuid (#506735, fixed upstream) - Remove ScoreboardFile directive from configuration file - default value works better with SELinux (#498375) - Ship mod_quotatab_sql.so in the main package rather than the SQL backend subpackages - New DSO modules: - mod_ctrls_admin - mod_facl - mod_load - mod_quotatab_radius - mod_radius - mod_ratio - mod_rewrite - mod_site_misc - mod_wrap2 - mod_wrap2_file - mod_wrap2_sql - Enable mod_lang/nls support for RFC 2640 (and buildreq gettext) - Add /etc/sysconfig/proftpd to set PROFTPD_OPTIONS and update initscript to use this value so we can use a define to enable (e.g.) anonymous FTP support rather than having a huge commented-out section in the config file - Rewrite config file to remove most settings that don't change upstream defaults, and add brief descriptions for all available loadable modules - Move Umask and IdentLookups settings from server config to context so that they apply to all servers, including virtual hosts (#509251) - Ensure mod_ifsession is always the last one specified, which makes sure that mod_ifsession's changes are seen properly by other modules - Drop pam version requirement - all targets have sufficiently recent version - Drop redundant explicit dependency on pam - Subpackages don't need to own %{_libexecdir}/proftpd directory - Drop redundant krb5-devel buildreq - Make SRPM back-compatible with EPEL-4 (TLS cert dirs, PAM config) - Don't include README files for non-Linux platforms - Recode ChangeLog as UTF-8 - Don't ship the prxs tool for building custom DSO's since we don't ship the headers either - Prevent stripping of binaries in a slightly more robust way - Fix release tag to be ready for future beta/rc versions - Define RPM macros in global scope - Try re-enabling parallel build - BuildRequire libcap-devel so that we use the system library rather than the bundled one, and eliminate log messages like: kernel: warning: `proftpd' uses 32-bit capabilities (legacy support in use) proftpd-1.3.2a-defines.patch: dirtree.c | 11 +++++++++++ 1 file changed, 11 insertions(+) --- NEW FILE proftpd-1.3.2a-defines.patch --- http://bugs.proftpd.org/show_bug.cgi?id=3221 --- proftpd-1.3.2a/src/dirtree.c 2009-04-28 23:33:57.000000000 +0100 +++ proftpd-1.3.2a/src/dirtree.c 2009-07-06 12:06:51.000000000 +0100 @@ -575,6 +575,17 @@ } } + if (defines_perm_list) { + char **defines = defines_perm_list->elts; + register unsigned int i = 0; + + for (i = 0; i < defines_perm_list->nelts; i++) { + if (defines[i] && + strcmp(defines[i], definition) == 0) + return TRUE; + } + } + errno = ENOENT; return FALSE; } proftpd-1.3.2rc3-nostrip.patch: Make.rules.in | 4 ++-- contrib/mod_load/Makefile.in | 2 +- contrib/mod_wrap2/Makefile.in | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) --- NEW FILE proftpd-1.3.2rc3-nostrip.patch --- Removing @INSTALL_STRIP@ prevents stripping of debuginfo at %install time Cleaning up top_srcdir prevents debuginfo package creation fails like this: /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character --- proftpd-1.3.2rc3/Make.rules.in 2009-01-08 16:54:26.000000000 +0000 +++ proftpd-1.3.2rc3/Make.rules.in 2009-01-08 16:54:48.000000000 +0000 @@ -29,8 +29,8 @@ INSTALL=@INSTALL@ INSTALL_USER=@install_user@ INSTALL_GROUP=@install_group@ -INSTALL_BIN=$(INSTALL) @INSTALL_STRIP@ -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0755 -INSTALL_SBIN=$(INSTALL) @INSTALL_STRIP@ -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0755 +INSTALL_BIN=$(INSTALL) -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0755 +INSTALL_SBIN=$(INSTALL) -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0755 INSTALL_MAN=$(INSTALL) -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0644 RM=rm -f --- proftpd-1.3.2rc3/contrib/mod_load/Makefile.in 2008-09-08 21:56:02.000000000 +0100 +++ proftpd-1.3.2rc3/contrib/mod_load/Makefile.in 2009-01-08 20:37:26.000000000 +0000 @@ -1,5 +1,5 @@ top_builddir=../.. -top_srcdir=../../ +top_srcdir=../.. srcdir=@srcdir@ include $(top_srcdir)/Make.rules --- proftpd-1.3.2rc3/contrib/mod_wrap2/Makefile.in 2008-09-08 21:56:02.000000000 +0100 +++ proftpd-1.3.2rc3/contrib/mod_wrap2/Makefile.in 2009-07-03 17:00:41.000000000 +0100 @@ -1,5 +1,5 @@ top_builddir=../.. -top_srcdir=../../ +top_srcdir=../.. srcdir=@srcdir@ include $(top_srcdir)/Make.rules --- NEW FILE proftpd.sysconfig --- # Set PROFTPD_OPTIONS to add command-line options for proftpd. # See proftpd(8) for a comprehensive list of what can be used. # # The following "Defines" can be used with the default configuration file: # -DANONYMOUS_FTP : Enable anonymous FTP # -DDYNAMIC_BAN_LISTS : Enable dynamic ban lists (mod_ban) # -DTLS : Enable TLS (mod_tls) # # For example, for anonymous FTP and dynamic ban list support: # PROFTPD_OPTIONS="-DANONYMOUS_FTP -DDYNAMIC_BAN_LISTS" PROFTPD_OPTIONS="" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 6 Apr 2009 21:47:16 -0000 1.13 +++ .cvsignore 30 Jul 2009 10:02:40 -0000 1.14 @@ -1 +1 @@ -proftpd-1.3.2.tar.bz2 +proftpd-1.3.2a.tar.bz2 Index: proftpd.conf =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.conf,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- proftpd.conf 2 Jan 2009 13:31:48 -0000 1.9 +++ proftpd.conf 30 Jul 2009 10:02:40 -0000 1.10 @@ -1,169 +1,239 @@ # This is the ProFTPD configuration file +# +# See: http://www.proftpd.org/docs/directives/linked/by-name.html + +# Server Config - config used for anything outside a or context +# See: http://www.proftpd.org/docs/howto/Vhost.html ServerName "ProFTPD server" ServerIdent on "FTP Server ready." ServerAdmin root at localhost -ServerType standalone -#ServerType inetd DefaultServer on -AccessGrantMsg "User %u logged in." -#DisplayConnect /etc/ftpissue -#DisplayLogin /etc/ftpmotd -#DisplayGoAway /etc/ftpgoaway -DeferWelcome off -# Use this to excude users from the chroot +# Cause every FTP user except adm to be chrooted into their home directory DefaultRoot ~ !adm # Use pam to authenticate (default) and be authoritative AuthPAMConfig proftpd AuthOrder mod_auth_pam.c* mod_auth_unix.c +# If you use NIS/YP/LDAP you may need to disable PersistentPasswd +#PersistentPasswd off -# Do not perform ident nor DNS lookups (hangs when the port is filtered) -IdentLookups off +# Don't do reverse DNS lookups (hangs on DNS problems) UseReverseDNS off -# Port 21 is the standard FTP port. -Port 21 - -# Umask 022 is a good standard umask to prevent new dirs and files -# from being group and world writable. -Umask 022 - -# Default to show dot files in directory listings -ListOptions "-a" - -# See Configuration.html for these (here are the default values) -#MultilineRFC2228 off -#RootLogin off -#LoginPasswordPrompt on -#MaxLoginAttempts 3 -#MaxClientsPerHost none -#AllowForeignAddress off # For FXP - -# Allow to resume not only the downloads but the uploads too -AllowRetrieveRestart on -AllowStoreRestart on +# Set the user and group that the server runs as +User nobody +Group nobody # To prevent DoS attacks, set the maximum number of child processes -# to 30. If you need to allow more than 30 concurrent connections +# to 20. If you need to allow more than 20 concurrent connections # at once, simply increase this value. Note that this ONLY works -# in standalone mode, in inetd mode you should use an inetd server +# in standalone mode; in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 20 -# Set the user and group that the server normally runs at. -User nobody -Group nobody - # Disable sendfile by default since it breaks displaying the download speeds in # ftptop and ftpwho -UseSendfile no - -# This is where we want to put the pid file -ScoreboardFile /var/run/proftpd.score - -# Normally, we want users to do a few things. - - AllowOverwrite yes - - AllowAll - - +UseSendfile off # Define the log formats LogFormat default "%h %l %u %t \"%r\" %s %b" LogFormat auth "%v [%P] %h %t \"%r\" %s" -# TLS -# Explained at http://www.castaglia.org/proftpd/modules/mod_tls.html -#TLSEngine on -#TLSRequired on -#TLSRSACertificateFile /etc/pki/tls/certs/proftpd.pem -#TLSRSACertificateKeyFile /etc/pki/tls/certs/proftpd.pem -#TLSCipherSuite ALL:!ADH:!DES -#TLSOptions NoCertRequest -#TLSVerifyClient off -##TLSRenegotiate ctrl 3600 data 512000 required off timeout 300 -#TLSLog /var/log/proftpd/tls.log - -# SQL authentication Dynamic Shared Object (DSO) loading -# See README.DSO and howto/DSO.html for more details. -# -# LoadModule mod_ban.c -# LoadModule mod_ifsession.c -# LoadModule mod_quotatab.c -# LoadModule mod_quotatab_file.c -# LoadModule mod_sql.c -# LoadModule mod_sql_mysql.c -# LoadModule mod_sql_postgres.c -# - -# A basic anonymous configuration, with an upload directory. -# -# User ftp -# Group ftp -# AccessGrantMsg "Anonymous login ok, restrictions apply." -# -# # We want clients to be able to login with "anonymous" as well as "ftp" -# UserAlias anonymous ftp -# -# # Limit the maximum number of anonymous logins -# MaxClients 10 "Sorry, max %m users -- try again later" -# -# # Put the user into /pub right after login -# #DefaultChdir /pub -# -# # We want 'welcome.msg' displayed at login, '.message' displayed in -# # each newly chdired directory and tell users to read README* files. -# DisplayLogin /welcome.msg -# DisplayFirstChdir .message -# DisplayReadme README* -# -# # Some more cosmetic and not vital stuff -# DirFakeUser on ftp -# DirFakeGroup on ftp -# -# # Limit WRITE everywhere in the anonymous chroot -# -# DenyAll -# -# -# # An upload directory that allows storing files but not retrieving -# # or creating directories. -# -# AllowOverwrite no -# -# DenyAll -# -# -# -# AllowAll -# -# -# -# # Don't write anonymous accesses to the system wtmp file (good idea!) -# WtmpLog off -# -# # Logging for the anonymous transfers -# ExtendedLog /var/log/proftpd/access.log WRITE,READ default -# ExtendedLog /var/log/proftpd/auth.log AUTH auth -# -# - -# Configuration for mod_ban - - BanEngine on - BanLog /var/log/proftpd/ban.log - BanTable /var/run/proftpd/ban.tab +# Dynamic Shared Object (DSO) loading +# See README.DSO and howto/DSO.html for more details +# +# General database support (http://www.proftpd.org/docs/contrib/mod_sql.html) +# LoadModule mod_sql.c +# +# Mysql support (requires proftpd-mysql package) +# (http://www.proftpd.org/docs/contrib/mod_sql.html) +# LoadModule mod_sql_mysql.c +# +# Postgresql support (requires proftpd-postgresql package) +# (http://www.proftpd.org/docs/contrib/mod_sql.html) +# LoadModule mod_sql_postgres.c +# +# Quota support (http://www.proftpd.org/docs/contrib/mod_quotatab.html) +# LoadModule mod_quotatab.c +# +# File-specific "driver" for storing quota table information in files +# (http://www.proftpd.org/docs/contrib/mod_quotatab_file.html) +# LoadModule mod_quotatab_file.c +# +# SQL database "driver" for storing quota table information in SQL tables +# (http://www.proftpd.org/docs/contrib/mod_quotatab_sql.html) +# LoadModule mod_quotatab_sql.c +# +# LDAP support (requires proftpd-ldap package) +# (http://www.proftpd.org/docs/directives/linked/config_ref_mod_ldap.html) +# LoadModule mod_ldap.c +# +# LDAP quota support (requires proftpd-ldap package) +# (http://www.proftpd.org/docs/contrib/mod_quotatab_ldap.html) +# LoadModule mod_quotatab_ldap.c +# +# Support for authenticating users using the RADIUS protocol +# (http://www.proftpd.org/docs/contrib/mod_radius.html) +# LoadModule mod_radius.c +# +# Retrieve quota limit table information from a RADIUS server +# (http://www.proftpd.org/docs/contrib/mod_quotatab_radius.html) +# LoadModule mod_quotatab_radius.c +# +# Administrative control actions for the ftpdctl program +# (http://www.proftpd.org/docs/contrib/mod_ctrls_admin.html) +# LoadModule mod_ctrls_admin.c +# +# Support for POSIX ACLs +# (http://www.proftpd.org/docs/modules/mod_facl.html) +# LoadModule mod_facl.c +# +# Configure server availability based on system load +# (http://www.proftpd.org/docs/contrib/mod_load.html) +# LoadModule mod_load.c +# +# Limit downloads to a multiple of upload volume (see README.ratio) +# LoadModule mod_ratio.c +# +# Rewrite FTP commands sent by clients on-the-fly, +# using regular expression matching and substitution +# (http://www.proftpd.org/docs/contrib/mod_rewrite.html) +# LoadModule mod_rewrite.c +# +# Support for miscellaneous SITE commands such as SITE MKDIR, SITE SYMLINK, +# and SITE UTIME (http://www.proftpd.org/docs/contrib/mod_site_misc.html) +# LoadModule mod_site_misc.c +# +# Use the /etc/hosts.allow and /etc/hosts.deny files, or other allow/deny +# files, for IP-based access control +# (http://www.proftpd.org/docs/contrib/mod_wrap.html) +# LoadModule mod_wrap.c +# +# Use the /etc/hosts.allow and /etc/hosts.deny files, or other allow/deny +# files, as well as SQL-based access rules, for IP-based access control +# (http://www.proftpd.org/docs/contrib/mod_wrap2.html) +# LoadModule mod_wrap2.c +# +# Support module for mod_wrap2 that handles access rules stored in specially +# formatted files on disk +# (http://www.proftpd.org/docs/contrib/mod_wrap2_file.html) +# LoadModule mod_wrap2_file.c +# +# Support module for mod_wrap2 that handles access rules stored in SQL +# database tables (http://www.proftpd.org/docs/contrib/mod_wrap2_sql.html) +# LoadModule mod_wrap2_sql.c +# +# Provide a flexible way of specifying that certain configuration directives +# only apply to certain sessions, based on credentials such as connection +# class, user, or group membership +# (http://www.proftpd.org/docs/contrib/mod_ifsession.html) +# LoadModule mod_ifsession.c + +# TLS (http://www.castaglia.org/proftpd/modules/mod_tls.html) + + LoadModule mod_tls.c + TLSEngine on + TLSRequired on + TLSRSACertificateFile @PKIDIR@/certs/proftpd.pem + TLSRSACertificateKeyFile @PKIDIR@/certs/proftpd.pem + TLSCipherSuite ALL:!ADH:!DES + TLSOptions NoCertRequest + TLSVerifyClient off + #TLSRenegotiate ctrl 3600 data 512000 required off timeout 300 + TLSLog /var/log/proftpd/tls.log + + +# Dynamic ban lists (http://www.proftpd.org/docs/contrib/mod_ban.html) +# Enable this with PROFTPD_OPTIONS=-DDYNAMIC_BAN_LISTS in /etc/sysconfig/proftpd + + LoadModule mod_ban.c + BanEngine on + BanLog /var/log/proftpd/ban.log + BanTable /var/run/proftpd/ban.tab # If the same client reaches the MaxLoginAttempts limit 2 times # within 10 minutes, automatically add a ban for that client that # will expire after one hour. - BanOnEvent MaxLoginAttempts 2/00:10:00 01:00:00 + BanOnEvent MaxLoginAttempts 2/00:10:00 01:00:00 # Allow the FTP admin to manually add/remove bans - BanControlsACLs all allow user ftpadm - + BanControlsACLs all allow user ftpadm + + +# Global Config - config common to Server Config and all virtual hosts +# See: http://www.proftpd.org/docs/howto/Vhost.html + + + # Umask 022 is a good standard umask to prevent new dirs and files + # from being group and world writable + Umask 022 + + # Don't do ident queries (hangs when the port is filtered) + IdentLookups off + + # Allow users to overwrite files and change permissions + AllowOverwrite yes + + AllowAll + + + + +# A basic anonymous configuration, with an upload directory +# Enable this with PROFTPD_OPTIONS=-DANONYMOUS_FTP in /etc/sysconfig/proftpd + + + User ftp + Group ftp + AccessGrantMsg "Anonymous login ok, restrictions apply." + + # We want clients to be able to login with "anonymous" as well as "ftp" + UserAlias anonymous ftp + + # Limit the maximum number of anonymous logins + MaxClients 10 "Sorry, max %m users -- try again later" + + # Put the user into /pub right after login + #DefaultChdir /pub + + # We want 'welcome.msg' displayed at login, '.message' displayed in + # each newly chdired directory and tell users to read README* files. + DisplayLogin /welcome.msg + DisplayChdir .message + DisplayReadme README* + + # Cosmetic option to make all files appear to be owned by user "ftp" + DirFakeUser on ftp + DirFakeGroup on ftp + + # Limit WRITE everywhere in the anonymous chroot + + DenyAll + + + # An upload directory that allows storing files but not retrieving + # or creating directories. + + AllowOverwrite no + + DenyAll + + + + AllowAll + + + + # Don't write anonymous accesses to the system wtmp file (good idea!) + WtmpLog off + + # Logging for the anonymous transfers + ExtendedLog /var/log/proftpd/access.log WRITE,READ default + ExtendedLog /var/log/proftpd/auth.log AUTH auth + + + Index: proftpd.init =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.init,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- proftpd.init 19 Aug 2007 16:18:30 -0000 1.6 +++ proftpd.init 30 Jul 2009 10:02:40 -0000 1.7 @@ -33,10 +33,16 @@ # Source networking configuration. . /etc/sysconfig/network +# Source ProFTPD configuration. +PROFTPD_OPTIONS="" +if [ -f /etc/sysconfig/proftpd ]; then + . /etc/sysconfig/proftpd +fi + # Check that networking is up. -[ ${NETWORKING} = "no" ] && exit 0 +[ ${NETWORKING} = "no" ] && exit 1 -[ -x /usr/sbin/proftpd ] || exit 0 +[ -x /usr/sbin/proftpd ] || exit 5 RETVAL=0 @@ -44,7 +50,7 @@ prog="proftpd" start() { echo -n $"Starting $prog: " - daemon proftpd 2>/dev/null + daemon proftpd $PROFTPD_OPTIONS 2>/dev/null RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/proftpd Index: proftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- proftpd.spec 26 Jul 2009 19:28:03 -0000 1.48 +++ proftpd.spec 30 Jul 2009 10:02:40 -0000 1.49 @@ -1,36 +1,41 @@ -#define prever rc3 - -Summary: Flexible, stable and highly-configurable FTP server -Name: proftpd -Version: 1.3.2 -Release: 3.1%{?prever:.%{prever}}%{?dist} -License: GPLv2+ -Group: System Environment/Daemons -URL: http://www.proftpd.org/ -Source0: ftp://ftp.proftpd.org/distrib/source/proftpd-%{version}%{?prever}.tar.bz2 -Source1: proftpd.conf -Source2: proftpd.init -Source3: proftpd-xinetd -Source4: proftpd.logrotate -Source5: proftpd-welcome.msg -Source6: proftpd.pam -Source7: proftpd-mod_quotatab_ldap.ldif -Source8: proftpd-mod_quotatab_ldap.schema -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Requires: pam >= 0.59 -Requires(post): /sbin/chkconfig -Requires(preun): /sbin/service, /sbin/chkconfig -Requires(postun): /sbin/service -BuildRequires: pam-devel, ncurses-devel, pkgconfig -BuildRequires: openssl-devel, krb5-devel, libacl-devel -BuildRequires: zlib-devel -# On RHEL (up to 5 included), the devel part was still in tcp_wrappers but in -# all recent Fedoras it's in tcp_wrappers-devel -BuildRequires: /usr/include/tcpd.h -BuildRequires: openldap-devel -BuildRequires: mysql-devel -BuildRequires: postgresql-devel -Provides: ftpserver +# Use certs in %{_sysconfdir}/pki/tls/certs if available (FC4, RHEL5 onwards) +%global use_pki %(if [ -d %{_sysconfdir}/pki/tls/certs ]; then echo 1; else echo 0; fi) +%if %{use_pki} +%global pkidir %{_sysconfdir}/pki/tls +%else +%global pkidir %{_datadir}/ssl +%endif + +#global prever rc3 +%global rpmrel 1 + +Summary: Flexible, stable and highly-configurable FTP server +Name: proftpd +Version: 1.3.2a +Release: %{?prever:0.}%{rpmrel}%{?prever:.%{prever}}%{?dist} +License: GPLv2+ +Group: System Environment/Daemons +URL: http://www.proftpd.org/ +Source0: ftp://ftp.proftpd.org/distrib/source/proftpd-%{version}%{?prever}.tar.bz2 +Source1: proftpd.conf +Source2: proftpd.init +Source3: proftpd-xinetd +Source4: proftpd.logrotate +Source5: proftpd-welcome.msg +Source6: proftpd.pam +Source7: proftpd-mod_quotatab_ldap.ldif +Source8: proftpd-mod_quotatab_ldap.schema +Source9: proftpd.sysconfig +Patch0: proftpd-1.3.2rc3-nostrip.patch +Patch1: proftpd-1.3.2a-defines.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Requires(post): /sbin/chkconfig +Requires(preun): /sbin/service, /sbin/chkconfig, coreutils, findutils +Requires(postun): /sbin/service +BuildRequires: pam-devel, ncurses-devel, pkgconfig, gettext, zlib-devel +BuildRequires: openssl-devel, libacl-devel, libcap-devel, /usr/include/tcpd.h +BuildRequires: openldap-devel, mysql-devel, postgresql-devel +Provides: ftpserver %description ProFTPD is an enhanced FTP server with a focus toward simplicity, security, @@ -44,27 +49,27 @@ needed scripts to have it run by xinetd %package ldap -Summary: Module to add LDAP support to the ProFTPD FTP server -Group: System Environment/Daemons -Requires: %{name} = %{version}-%{release} +Summary: Module to add LDAP support to the ProFTPD FTP server +Group: System Environment/Daemons +Requires: %{name} = %{version}-%{release} %description ldap Module to add LDAP support to the ProFTPD FTP server. %package mysql -Summary: Module to add MySQL support to the ProFTPD FTP server -Group: System Environment/Daemons -Requires: %{name} = %{version}-%{release} +Summary: Module to add MySQL support to the ProFTPD FTP server +Group: System Environment/Daemons +Requires: %{name} = %{version}-%{release} %description mysql Module to add MySQL support to the ProFTPD FTP server. %package postgresql -Summary: Module to add PostgreSQL support to the ProFTPD FTP server -Group: System Environment/Daemons -Requires: %{name} = %{version}-%{release} +Summary: Module to add PostgreSQL support to the ProFTPD FTP server +Group: System Environment/Daemons +Requires: %{name} = %{version}-%{release} %description postgresql Module to add PostgreSQL support to the ProFTPD FTP server. @@ -73,52 +78,91 @@ Module to add PostgreSQL support to the %prep %setup -q -n %{name}-%{version}%{?prever} +# Don't strip binaries - needed for useful debuginfo +%patch0 -p1 -b .nostrip + +# Reinstate command-line defines (http://bugs.proftpd.org/3221) +%patch1 -p1 -b .defines + +# Avoid documentation name conflicts +%{__mv} contrib/README contrib/README.contrib + +# Set up directory names in config file +%{__sed} -e 's#@PKIDIR@#%{pkidir}#g' \ + %{SOURCE1} > proftpd.conf + +# Avoid docfile dependencies +%{__chmod} -x contrib/xferstats.holger-preiss + +# Copy in LDAP schema/LDIF +%{__cp} -p %{SOURCE7} 70proftpd-quota.ldif +%{__cp} -p %{SOURCE8} proftpd-quota.schema + +# PAM Configuration: +# The "include" syntax used in our PAM configuration file was introduced in +# PAM 0.78 and is therefore supported in FC-5 and EL-5 onwards; older +# distributions such as EL-4 (PAM 0.77) need to fall back to using the +# now-deprecated pam_stack module. Since the pam-devel package doesn't +# include a pkgconfig file from whice we could check the version number, we +# instead check for the absence of the file /etc/pam.d/config-util, which is +# present in all PAM packages from 0.80 onwards and acts as a useful +# indicator of the need to fall back to pam_stack. +%{__cp} -p %{SOURCE6} . +[ ! -f /etc/pam.d/config-util ] && %{__sed} -i -e \ + 's/include[[:space:]]*system-auth/required'\ \ \ \ \ 'pam_stack.so service=system-auth/' \ + proftpd.pam + +# Fix character encoding in docs +for f in ChangeLog; do + /usr/bin/iconv -f iso-8859-1 -t utf-8 < ${f} > ${f}.utf-8 + %{__mv} -f ${f}.utf-8 ${f} +done %build -# Disable stripping in order to get useful debuginfo packages -%{__perl} -pi -e 's|"-s"|""|g' configure + +# Modules to be built as DSO's (excluding mod_ifsession, always specified last) +SMOD1=mod_sql:mod_sql_mysql:mod_sql_postgres +SMOD2=mod_quotatab:mod_quotatab_file:mod_quotatab_ldap:mod_quotatab_radius:mod_quotatab_sql +SMOD3=mod_ldap:mod_ban:mod_wrap:mod_ctrls_admin:mod_facl:mod_load +SMOD4=mod_radius:mod_ratio:mod_rewrite:mod_site_misc +SMOD5=mod_wrap2:mod_wrap2_file:mod_wrap2_sql %configure \ - --libexecdir="%{_libexecdir}/proftpd" \ - --localstatedir="%{_var}/run" \ - --enable-ctrls \ - --enable-facl \ - --enable-dso \ - --enable-ipv6 \ - --enable-shadow \ - --enable-openssl \ - --with-libraries="%{_libdir}/mysql" \ - --with-includes="%{_includedir}/mysql" \ - --with-modules=mod_readme:mod_auth_pam:mod_tls \ - --with-shared=mod_ldap:mod_sql:mod_sql_mysql:mod_sql_postgres:mod_quotatab:mod_quotatab_file:mod_quotatab_ldap:mod_quotatab_sql:mod_ifsession:mod_ban:mod_wrap - -# It seems that with _smp_mflags -lsupp tries to get linked before being built -# (as of 1.3.0a-4 F7/devel with koji, happened on F8 x86_64 and F7 ppc64) -%{__make} + --libexecdir="%{_libexecdir}/proftpd" \ + --localstatedir="%{_localstatedir}/run" \ + --enable-ctrls \ + --enable-dso \ + --enable-facl \ + --enable-ipv6 \ + --enable-nls \ + --enable-openssl \ + --enable-shadow \ + --with-libraries="%{_libdir}/mysql" \ + --with-includes="%{_includedir}/mysql" \ + --with-modules=mod_readme:mod_auth_pam:mod_tls \ + --with-shared=${SMOD1}:${SMOD2}:${SMOD3}:${SMOD4}:${SMOD5}:mod_ifsession + +%{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} \ - rundir="%{_var}/run/proftpd" \ - INSTALL_USER=`id -un` \ - INSTALL_GROUP=`id -gn` -%{__install} -D -p -m 0640 %{SOURCE1} \ - %{buildroot}%{_sysconfdir}/proftpd.conf -%{__install} -D -p -m 0755 %{SOURCE2} \ - %{buildroot}%{_sysconfdir}/rc.d/init.d/proftpd -%{__install} -D -p -m 0640 %{SOURCE3} \ - %{buildroot}%{_sysconfdir}/xinetd.d/xproftpd -%{__install} -D -p -m 0644 %{SOURCE4} \ - %{buildroot}%{_sysconfdir}/logrotate.d/proftpd -%{__install} -D -p -m 0644 %{SOURCE5} %{buildroot}/var/ftp/welcome.msg -%{__install} -D -p -m 0644 %{SOURCE6} %{buildroot}%{_sysconfdir}/pam.d/proftpd -%{__install} -D -p -m 0644 %{SOURCE7} 70proftpd-quota.ldif -%{__install} -D -p -m 0644 %{SOURCE8} proftpd-quota.schema -%{__mkdir_p} %{buildroot}/var/ftp/uploads -%{__mkdir_p} %{buildroot}/var/ftp/pub -%{__mkdir_p} %{buildroot}/var/log/proftpd -touch %{buildroot}%{_sysconfdir}/ftpusers + rundir="%{_localstatedir}/run/proftpd" \ + INSTALL_USER=`%{__id} -un` \ + INSTALL_GROUP=`%{__id} -gn` +%{__install} -D -p -m 640 proftpd.conf %{buildroot}%{_sysconfdir}/proftpd.conf +%{__install} -D -p -m 644 proftpd.pam %{buildroot}%{_sysconfdir}/pam.d/proftpd +%{__install} -D -p -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/rc.d/init.d/proftpd +%{__install} -D -p -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/xinetd.d/xproftpd +%{__install} -D -p -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/logrotate.d/proftpd +%{__install} -D -p -m 644 %{SOURCE5} %{buildroot}%{_localstatedir}/ftp/welcome.msg +%{__install} -D -p -m 644 %{SOURCE9} %{buildroot}%{_sysconfdir}/sysconfig/proftpd +%{__mkdir_p} %{buildroot}%{_localstatedir}/{ftp/{pub,uploads},log/proftpd} +/bin/touch %{buildroot}%{_sysconfdir}/ftpusers + +# Find translations +%find_lang proftpd %clean @@ -127,83 +171,152 @@ touch %{buildroot}%{_sysconfdir}/ftpuser %post if [ $1 -eq 1 ]; then - /sbin/chkconfig --add proftpd - IFS=":"; cat /etc/passwd | \ - while { read username nu nu gid nu nu nu nu; }; do \ - if [ $gid -lt 100 -a "$username" != "ftp" ]; then - echo $username >> %{_sysconfdir}/ftpusers - fi - done + /sbin/chkconfig --add proftpd + IFS=":"; %{__cat} /etc/passwd | \ + while { read username nu nu gid nu nu nu nu; }; do \ + if [ $gid -lt 100 -a "$username" != "ftp" ]; then + echo $username >> %{_sysconfdir}/ftpusers + fi + done fi %preun if [ $1 -eq 0 ]; then - /sbin/service proftpd stop &>/dev/null || : - /sbin/chkconfig --del proftpd - /sbin/service xinetd reload &>/dev/null || : - if [ -d %{_var}/run/proftpd ]; then - rm -rf %{_var}/run/proftpd/* - fi + /sbin/service proftpd stop &>/dev/null || : + /sbin/chkconfig --del proftpd || : + /sbin/service xinetd reload &>/dev/null || : + /usr/bin/find %{_localstatedir}/run/proftpd -depth -mindepth 1 | + /usr/bin/xargs %{__rm} -rf &>/dev/null || : fi %postun if [ $1 -ge 1 ]; then - /sbin/service proftpd condrestart &>/dev/null || : + /sbin/service proftpd condrestart &>/dev/null || : fi -%files +%files -f proftpd.lang %defattr(-,root,root,-) -%doc COPYING CREDITS ChangeLog NEWS README* -%doc doc/* sample-configurations/ +%doc COPYING CREDITS ChangeLog NEWS README +%doc README.DSO README.modules README.IPv6 README.PAM +%doc README.capabilities README.classes README.controls README.facl +%doc contrib/README.contrib contrib/README.ratio +%doc doc/* sample-configurations/ contrib/xferstats.holger-preiss +%dir %{_localstatedir}/ftp/ +%dir %{_localstatedir}/ftp/pub/ %dir %{_localstatedir}/run/proftpd/ +%config(noreplace) %{_localstatedir}/ftp/welcome.msg +%config(noreplace) %{_sysconfdir}/ftpusers +%config(noreplace) %{_sysconfdir}/logrotate.d/proftpd +%config(noreplace) %{_sysconfdir}/pam.d/proftpd %config(noreplace) %{_sysconfdir}/proftpd.conf +%config(noreplace) %{_sysconfdir}/sysconfig/proftpd %config(noreplace) %{_sysconfdir}/xinetd.d/xproftpd -%config %{_sysconfdir}/ftpusers -%config(noreplace) %{_sysconfdir}/pam.d/proftpd -%config(noreplace) %{_sysconfdir}/logrotate.d/proftpd %{_sysconfdir}/rc.d/init.d/proftpd -%{_mandir}/man?/* -%{_bindir}/* +%{_bindir}/ftpcount +%{_bindir}/ftpdctl +%{_bindir}/ftptop +%{_bindir}/ftpwho +%exclude %{_bindir}/prxs +%{_sbindir}/ftpshut +%{_sbindir}/in.proftpd +%{_sbindir}/proftpd +%{_mandir}/man1/ftpcount.1* +%{_mandir}/man1/ftptop.1* +%{_mandir}/man1/ftpwho.1* +%{_mandir}/man5/xferlog.5* +%{_mandir}/man8/ftpdctl.8* +%{_mandir}/man8/ftpshut.8* +%{_mandir}/man8/proftpd.8* %exclude %{_includedir}/proftpd/ %exclude %{_libdir}/pkgconfig/ %dir %{_libexecdir}/proftpd/ %{_libexecdir}/proftpd/mod_ban.so +%{_libexecdir}/proftpd/mod_ctrls_admin.so +%{_libexecdir}/proftpd/mod_facl.so %{_libexecdir}/proftpd/mod_ifsession.so +%{_libexecdir}/proftpd/mod_load.so %{_libexecdir}/proftpd/mod_quotatab.so %{_libexecdir}/proftpd/mod_quotatab_file.so +%{_libexecdir}/proftpd/mod_quotatab_radius.so +%{_libexecdir}/proftpd/mod_quotatab_sql.so +%{_libexecdir}/proftpd/mod_radius.so +%{_libexecdir}/proftpd/mod_ratio.so +%{_libexecdir}/proftpd/mod_rewrite.so +%{_libexecdir}/proftpd/mod_site_misc.so %{_libexecdir}/proftpd/mod_sql.so %{_libexecdir}/proftpd/mod_wrap.so +%{_libexecdir}/proftpd/mod_wrap2.so +%{_libexecdir}/proftpd/mod_wrap2_file.so +%{_libexecdir}/proftpd/mod_wrap2_sql.so %exclude %{_libexecdir}/proftpd/*.a %exclude %{_libexecdir}/proftpd/*.la -%{_sbindir}/* -%dir /var/ftp/ -%attr(331, ftp, ftp) %dir /var/ftp/uploads/ -%dir /var/ftp/pub/ -%config(noreplace) /var/ftp/welcome.msg -%attr(750, root, root) %dir /var/log/proftpd/ +%attr(331, ftp, ftp) %dir %{_localstatedir}/ftp/uploads/ +%attr(750, root, root) %dir %{_localstatedir}/log/proftpd/ %files ldap %defattr(-,root,root,-) -%doc 70proftpd-quota.ldif proftpd-quota.schema -%dir %{_libexecdir}/proftpd/ +%doc README.LDAP 70proftpd-quota.ldif proftpd-quota.schema %{_libexecdir}/proftpd/mod_ldap.so %{_libexecdir}/proftpd/mod_quotatab_ldap.so %files mysql %defattr(-,root,root,-) -%dir %{_libexecdir}/proftpd/ %{_libexecdir}/proftpd/mod_sql_mysql.so -%{_libexecdir}/proftpd/mod_quotatab_sql.so %files postgresql %defattr(-,root,root,-) -%dir %{_libexecdir}/proftpd/ %{_libexecdir}/proftpd/mod_sql_postgres.so -%{_libexecdir}/proftpd/mod_quotatab_sql.so %changelog +* Mon Jul 27 2009 Paul Howarth 1.3.2a-1 +- Update to 1.3.2a +- Add patch to reinstate support for -DPARAMETER (upstream bug 3221) +- Retain CAP_AUDIT_WRITE, needed for pam_loginuid (#506735, fixed upstream) +- Remove ScoreboardFile directive from configuration file - default value + works better with SELinux (#498375) +- Ship mod_quotatab_sql.so in the main package rather than the SQL backend + subpackages +- New DSO modules: + - mod_ctrls_admin + - mod_facl + - mod_load + - mod_quotatab_radius + - mod_radius + - mod_ratio + - mod_rewrite + - mod_site_misc + - mod_wrap2 + - mod_wrap2_file + - mod_wrap2_sql +- Enable mod_lang/nls support for RFC 2640 (and buildreq gettext) +- Add /etc/sysconfig/proftpd to set PROFTPD_OPTIONS and update initscript to + use this value so we can use a define to enable (e.g.) anonymous FTP support + rather than having a huge commented-out section in the config file +- Rewrite config file to remove most settings that don't change upstream + defaults, and add brief descriptions for all available loadable modules +- Move Umask and IdentLookups settings from server config to context + so that they apply to all servers, including virtual hosts (#509251) +- Ensure mod_ifsession is always the last one specified, which makes sure that + mod_ifsession's changes are seen properly by other modules +- Drop pam version requirement - all targets have sufficiently recent version +- Drop redundant explicit dependency on pam +- Subpackages don't need to own %%{_libexecdir}/proftpd directory +- Drop redundant krb5-devel buildreq +- Make SRPM back-compatible with EPEL-4 (TLS cert dirs, PAM config) +- Don't include README files for non-Linux platforms +- Recode ChangeLog as UTF-8 +- Don't ship the prxs tool for building custom DSO's since we don't ship the + headers either +- Prevent stripping of binaries in a slightly more robust way +- Fix release tag to be ready for future beta/rc versions +- Define RPM macros in global scope +- Try re-enabling parallel build +- BuildRequire libcap-devel so that we use the system library rather than the + bundled one, and eliminate log messages like: + kernel: warning: `proftpd' uses 32-bit capabilities (legacy support in use) + * Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-3.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -222,7 +335,7 @@ fi - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sat Jan 24 2009 Caol?n McNamara 1.3.2-0.3.rc3 -- rebuild for dependencies +- Rebuild for dependencies * Fri Jan 2 2009 Matthias Saou 1.3.2-0.2.rc3 - Update default configuration to have a lit of available modules and more Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 6 Apr 2009 21:47:16 -0000 1.13 +++ sources 30 Jul 2009 10:02:40 -0000 1.14 @@ -1 +1 @@ -89f5e31fc3d3e02b66424dfc6cc5892d proftpd-1.3.2.tar.bz2 +ad3cbb5db30c5ae39e09b308892392b3 proftpd-1.3.2a.tar.bz2 --- proftpd-1.3.1-find-umode_t.patch DELETED --- From than at fedoraproject.org Thu Jul 30 10:03:11 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 10:03:11 +0000 (UTC) Subject: rpms/kdetoys/devel .cvsignore, 1.38, 1.39 kdetoys.spec, 1.57, 1.58 sources, 1.36, 1.37 Message-ID: <20090730100311.9358D11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdetoys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24141 Modified Files: .cvsignore kdetoys.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 22 Jul 2009 11:35:21 -0000 1.38 +++ .cvsignore 30 Jul 2009 10:03:11 -0000 1.39 @@ -2,3 +2,4 @@ kdetoys-4.2.90.tar.bz2 kdetoys-4.2.95.tar.bz2 kdetoys-4.2.96.tar.bz2 kdetoys-4.2.98.tar.bz2 +kdetoys-4.3.0.tar.bz2 Index: kdetoys.spec =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/kdetoys.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- kdetoys.spec 22 Jul 2009 11:35:21 -0000 1.57 +++ kdetoys.spec 30 Jul 2009 10:03:11 -0000 1.58 @@ -1,7 +1,7 @@ Name: kdetoys Summary: K Desktop Environment - Toys and Amusements Epoch: 7 -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} License: GPLv2 @@ -86,6 +86,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 22 Jul 2009 11:35:21 -0000 1.36 +++ sources 30 Jul 2009 10:03:11 -0000 1.37 @@ -1 +1 @@ -da6f93daaa5be1eb1885b154e4d43bbb kdetoys-4.2.98.tar.bz2 +6975e332bdd1cdf60b8509c544cedb06 kdetoys-4.3.0.tar.bz2 From rhughes at fedoraproject.org Thu Jul 30 10:08:52 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Thu, 30 Jul 2009 10:08:52 +0000 (UTC) Subject: rpms/gnome-power-manager/devel .cvsignore, 1.63, 1.64 gnome-power-manager.spec, 1.169, 1.170 sources, 1.64, 1.65 dpmsstr-no-needed.patch, 1.1, NONE Message-ID: <20090730100852.0B34E11C00D3@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26891 Modified Files: .cvsignore gnome-power-manager.spec sources Removed Files: dpmsstr-no-needed.patch Log Message: * Thu Jul 30 2009 Richard Hughes - 2.27.3-0.5.20090730git - Update to todays git snapshot. - Split the inhibit applet and gnome-power-statistics into an gnome-power-manager-extra subpackage. - Remove upstreamed patches. - Fixes #514249 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 27 Jul 2009 17:57:47 -0000 1.63 +++ .cvsignore 30 Jul 2009 10:08:51 -0000 1.64 @@ -1 +1 @@ -gnome-power-manager-2.27.3-20090727.tar.gz +gnome-power-manager-2.27.3-20090730.tar.gz Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- gnome-power-manager.spec 28 Jul 2009 01:26:20 -0000 1.169 +++ gnome-power-manager.spec 30 Jul 2009 10:08:51 -0000 1.170 @@ -1,19 +1,17 @@ %define hal_version 0.5.8 %define dbus_version 0.61 -%define alphatag 20090727 +%define alphatag 20090730 -Summary: GNOME Power Manager +Summary: GNOME power management service Name: gnome-power-manager Version: 2.27.3 #Release: 2%{?dist} -Release: 0.4.%{?alphatag}git%{?dist} +Release: 0.5.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System #Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz -Patch0: dpmsstr-no-needed.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://projects.gnome.org/gnome-power-manager/ @@ -54,10 +52,17 @@ displaying icons and handling user callb GNOME Power Preferences allows authorised users to set policy and change preferences. +%package extra +Summary: GNOME Power Manager extra utility programs +Group: Applications/System +Requires: %{name} = %{version}-%{release} + +%description extra +Extra GNOME power management applications that are not normally needed. + %prep #%setup -q %setup -q -n %{?name}-%{?version}-%{?alphatag} -%patch0 -p1 -b .dpmsstr-not-needed %build %configure \ @@ -112,7 +117,7 @@ rm -rf $RPM_BUILD_ROOT export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule \ %{_sysconfdir}/gconf/schemas/gnome-power-manager.schemas >/dev/null || : -scrollkeeper-update -q +scrollkeeper-update -q &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x /usr/bin/gtk-update-icon-cache ]; then gtk-update-icon-cache -q %{_datadir}/icons/hicolor @@ -133,33 +138,56 @@ if [ "$1" -eq 0 ]; then fi %postun -scrollkeeper-update -q +scrollkeeper-update -q &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x /usr/bin/gtk-update-icon-cache ]; then - gtk-update-icon-cache -q %{_datadir}/icons/hicolor + gtk-update-icon-cache -q %{_datadir}/icons/hicolor &> /dev/null || : fi %files -f %{name}.lang %defattr(-,root,root) %doc AUTHORS COPYING README -%{_bindir}/* -%{_libexecdir}/gnome-brightness-applet -%{_libexecdir}/gnome-inhibit-applet +%{_bindir}/gnome-power-bugreport.sh +%{_bindir}/gnome-power-manager +%{_bindir}/gnome-power-preferences %dir %{_datadir}/gnome-power-manager -%{_datadir}/gnome-power-manager/*.ui -%{_mandir}/man1/* +%{_datadir}/gnome-power-manager/gpm-prefs.ui +%{_datadir}/gnome-power-manager/gpm-feedback-widget.ui +%{_mandir}/man1/gnome-power-manager.1.gz +%{_mandir}/man1/gnome-power-preferences.1.gz %{_sysconfdir}/gconf/schemas/*.schemas %{_datadir}/dbus-1/services/gnome-power-manager.service %{_datadir}/omf/gnome-power-manager %{_sysconfdir}/xdg/autostart/*.desktop %{_datadir}/gnome-power-manager/icons/hicolor/*/*/*.* -%{_datadir}/icons/hicolor/*/apps/*.* -%{_datadir}/gnome/help/gnome-power-manager -%{_datadir}/applications/*.desktop -%{_libdir}/bonobo/servers/GNOME_*.server -%{_datadir}/gnome-2.0/ui/GNOME_*.xml +%{_datadir}/icons/hicolor/*/apps/gnome-power-manager.* +%{_datadir}/applications/gnome-power-preferences.desktop +%{_libexecdir}/gnome-brightness-applet +%{_libdir}/bonobo/servers/GNOME_BrightnessApplet.server +%{_datadir}/gnome-2.0/ui/GNOME_BrightnessApplet.xml +%{_datadir}/icons/hicolor/*/apps/gnome-brightness-applet.* + +%files extra +%defattr(-,root,root,-) +%doc AUTHORS COPYING NEWS README +%{_bindir}/gnome-power-statistics +%{_mandir}/man1/gnome-power-statistics.1.gz +%{_datadir}/gnome-power-manager/gpm-statistics.ui +%{_datadir}/applications/gnome-power-statistics.desktop +%{_datadir}/icons/hicolor/*/apps/gnome-power-statistics.* +%{_libexecdir}/gnome-inhibit-applet +%{_libdir}/bonobo/servers/GNOME_InhibitApplet.server +%{_datadir}/gnome-2.0/ui/GNOME_InhibitApplet.xml +%{_datadir}/icons/hicolor/*/apps/gnome-inhibit-applet.* %changelog +* Thu Jul 30 2009 Richard Hughes - 2.27.3-0.5.20090730git +- Update to todays git snapshot. +- Split the inhibit applet and gnome-power-statistics into an + gnome-power-manager-extra subpackage. +- Remove upstreamed patches. +- Fixes #514249 + * Mon Jul 27 2009 Matthias Clasen - 2.27.3-0.4.20090727git - Drop an unneeded include that broke the build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/sources,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sources 27 Jul 2009 17:57:47 -0000 1.64 +++ sources 30 Jul 2009 10:08:51 -0000 1.65 @@ -1 +1 @@ -c554a2b0f2f08b73875f7c8e2a537c8b gnome-power-manager-2.27.3-20090727.tar.gz +5e5e5c176d8909e7e6e7e603d9ff7cd3 gnome-power-manager-2.27.3-20090730.tar.gz --- dpmsstr-no-needed.patch DELETED --- From hadess at fedoraproject.org Thu Jul 30 10:12:34 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 30 Jul 2009 10:12:34 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.220,1.221 Message-ID: <20090730101234.E2A1211C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28153 Modified Files: gnome-games.spec Log Message: * Thu Jul 30 2009 Bastien Nocera 2.27.5-2 - Rebuild for new clutter-gtk and clutter Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.220 retrieving revision 1.221 diff -u -p -r1.220 -r1.221 --- gnome-games.spec 29 Jul 2009 04:04:36 -0000 1.220 +++ gnome-games.spec 30 Jul 2009 10:12:34 -0000 1.221 @@ -44,7 +44,7 @@ Summary: Games for the GNOME desktop Name: gnome-games Version: 2.27.5 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Amusements/Games @@ -360,6 +360,9 @@ fi %files help -f help.lang %changelog +* Thu Jul 30 2009 Bastien Nocera 2.27.5-2 +- Rebuild for new clutter-gtk and clutter + * Tue Jul 28 2009 Matthias Clasen 2.27.5-1 - Update to 2.27.5 From sharkcz at fedoraproject.org Thu Jul 30 10:14:24 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Thu, 30 Jul 2009 10:14:24 +0000 (UTC) Subject: rpms/gdal/devel gdal-dods.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 gdal.spec, 1.66, 1.67 sources, 1.13, 1.14 Message-ID: <20090730101424.50C7311C00D3@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/gdal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28784 Modified Files: .cvsignore gdal.spec sources Added Files: gdal-dods.patch Log Message: * Thu Jul 30 2009 Dan Horak - 1.6.1-1 - add patch for incompatibilities caused by libdap 3.9.x (thanks goes to arekm from PLD) - update to 1.6.1 - don't install some refman.pdf, because they don't build - don't fail on man pages with suffix other than .gz - fix filelist for python subpackage gdal-dods.patch: gdal-1.6.0-fedora/ogr/ogrsf_frmts/dods/ogrdodsdatasource.cpp | 6 +++--- gdal-1.6.1/frmts/dods/dodsdataset2.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) --- NEW FILE gdal-dods.patch --- --- gdal-1.6.1/frmts/dods/dodsdataset2.cpp.org 2009-07-15 12:54:31.160838902 +0200 +++ gdal-1.6.1/frmts/dods/dodsdataset2.cpp 2009-07-15 12:58:38.080454628 +0200 @@ -693,15 +693,15 @@ /* -------------------------------------------------------------------- */ /* Try and fetch the corresponding DAS subtree if it exists. */ /* -------------------------------------------------------------------- */ - AttrTable *poFileInfo = oDAS.find_container( "GLOBAL" ); + AttrTable *poFileInfo = oDAS.container()->find_container( "GLOBAL" ); if( poFileInfo == NULL ) { - poFileInfo = oDAS.find_container( "NC_GLOBAL" ); + poFileInfo = oDAS.container()->find_container( "NC_GLOBAL" ); if( poFileInfo == NULL ) { - poFileInfo = oDAS.find_container( "HDF_GLOBAL" ); + poFileInfo = oDAS.container()->find_container( "HDF_GLOBAL" ); if( poFileInfo == NULL ) { @@ -1275,7 +1275,7 @@ /* -------------------------------------------------------------------- */ /* Try and fetch the corresponding DAS subtree if it exists. */ /* -------------------------------------------------------------------- */ - AttrTable *poBandInfo = poDODS->GetDAS().find_container( oVarName ); + AttrTable *poBandInfo = poDODS->GetDAS().container()->find_container( oVarName ); if( poBandInfo == NULL ) { --- gdal-1.6.0-fedora/ogr/ogrsf_frmts/dods/ogrdodsdatasource.cpp.dods~ 2007-01-18 03:22:39.000000000 +0100 +++ gdal-1.6.0-fedora/ogr/ogrsf_frmts/dods/ogrdodsdatasource.cpp 2009-07-30 09:39:21.000000000 +0200 @@ -193,12 +193,12 @@ int OGRDODSDataSource::Open( const char /* -------------------------------------------------------------------- */ AttrTable::Attr_iter dv_i; - for( dv_i = oDAS.attr_begin(); dv_i != oDAS.attr_end(); dv_i++ ) + for( dv_i = oDAS.container()->attr_begin(); dv_i != oDAS.container()->attr_end(); dv_i++ ) { if( EQUALN(oDAS.get_name(dv_i).c_str(),"ogr_layer_info",14) - && oDAS.is_container( dv_i ) ) + && oDAS.container()->is_container( dv_i ) ) { - AttrTable *poAttr = oDAS.get_attr_table( dv_i ); + AttrTable *poAttr = oDAS.container()->get_attr_table( dv_i ); string target_container = poAttr->get_attr( "target_container" ); BaseType *poVar = poDDS->var( target_container.c_str() ); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 29 Jan 2009 14:21:56 -0000 1.13 +++ .cvsignore 30 Jul 2009 10:14:23 -0000 1.14 @@ -1,2 +1,2 @@ -gdal-1.6.0-fedora.tar.gz +gdal-1.6.1-fedora.tar.gz gdalautotest-1.6.0.tar.gz Index: gdal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/gdal.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- gdal.spec 24 Jul 2009 23:39:09 -0000 1.66 +++ gdal.spec 30 Jul 2009 10:14:24 -0000 1.67 @@ -1,15 +1,17 @@ Name: gdal -Version: 1.6.0 -Release: 10%{?dist} +Version: 1.6.1 +Release: 1%{?dist} Summary: GIS file format library Group: System Environment/Libraries License: MIT URL: http://www.gdal.org/ +# see PROVENANCE.TXT-fedora for details Source0: %{name}-%{version}-fedora.tar.gz Source1: http://download.osgeo.org/gdal/gdalautotest-1.6.0.tar.gz Patch0: %{name}-libdap.patch Patch1: %{name}-mysql.patch Patch2: %{name}-bindir.patch +Patch3: %{name}-dods.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool pkgconfig BuildRequires: python-devel numpy xerces-c-devel @@ -107,6 +109,7 @@ The GDAL java modules provides support t %endif %patch1 -p0 -b .mysql~ %patch2 -p1 -b .bindir~ +%patch3 -p1 -b .dods~ # unpack test cases olso. tar -xzf %{SOURCE1} @@ -330,6 +333,7 @@ find %{buildroot}%{perl_vendorarch} -nam find %{buildroot}%{python_sitearch} -name "*.so" -exec chmod 755 '{}' \; # install and include all docs +# due TeX-related issues some refman.pdf are not created rm -rf docs doc/docs-perl mkdir -p doc/gdal_frmts; find frmts -name "*.html" -exec install -p -m 644 '{}' doc/gdal_frmts/ \; mkdir -p doc/ogrsf_frmts; find ogr -name "*.html" -exec install -p -m 644 '{}' doc/ogrsf_frmts/ \; @@ -339,15 +343,15 @@ pushd docs/docs-%{cpuarch}/pdf; mkdir -p install -p -m 644 doc/latex/refman.pdf docs/docs-%{cpuarch}/pdf/en install -p -m 644 doc/br/latex/refman.pdf docs/docs-%{cpuarch}/pdf/br/ #install -p -m 644 doc/ru/latex/refman.pdf docs/docs-%{cpuarch}/pdf/ru/ -install -p -m 644 latex/refman.pdf docs/docs-%{cpuarch}/refman.pdf -install -p -m 644 ogr/latex/refman.pdf docs/docs-%{cpuarch}/pdf/ogr/ +#install -p -m 644 latex/refman.pdf docs/docs-%{cpuarch}/refman.pdf +#install -p -m 644 ogr/latex/refman.pdf docs/docs-%{cpuarch}/pdf/ogr/ install -p -m 644 ogr/ogrsf_frmts/latex/refman.pdf docs/docs-%{cpuarch}/pdf/ogrsf_frmts/ install -p -m 644 ogr/ogrsf_frmts/dgn/latex/refman.pdf docs/docs-%{cpuarch}/pdf/ogrsf_frmts/dgn/ %if "%{?dist}" != ".el4" # broken on el4 install -p -m 644 frmts/gxf/latex/refman.pdf docs/docs-%{cpuarch}/pdf/frmts/gxf/ %endif -install -p -m 644 frmts/sdts/latex/refman.pdf docs/docs-%{cpuarch}/pdf/frmts/sdts/ +#install -p -m 644 frmts/sdts/latex/refman.pdf docs/docs-%{cpuarch}/pdf/frmts/sdts/ install -p -m 644 frmts/iso8211/latex/refman.pdf docs/docs-%{cpuarch}/pdf/frmts/iso8211/ mkdir -p doc/docs-perl/docs-%{cpuarch}/pdf install -p -m 644 swig/perl/latex/refman.pdf doc/docs-perl/docs-%{cpuarch}/pdf @@ -460,6 +464,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/gdal_translate %{_bindir}/gdaladdo %{_bindir}/gdalinfo +%{_bindir}/gdalbuildvrt %{_bindir}/gdaltindex %{_bindir}/gdalwarp %{_bindir}/gdal_grid @@ -472,19 +477,20 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %dir %{_datadir}/%{name} %{_datadir}/%{name}/* -%{_mandir}/man1/gdaladdo.1.gz -%{_mandir}/man1/gdalinfo.1.gz -%{_mandir}/man1/gdaltindex.1.gz -%{_mandir}/man1/gdaltransform.1.gz -%{_mandir}/man1/gdal2tiles.1.gz -%{_mandir}/man1/nearblack.1.gz -%{_mandir}/man1/gdal_contour.1.gz -%{_mandir}/man1/gdal_rasterize.1.gz -%{_mandir}/man1/gdal_translate.1.gz -%{_mandir}/man1/gdal_utilities.1.gz -%{_mandir}/man1/gdal_grid.1.gz -%{_mandir}/man1/gdal_retile.1.gz -%{_mandir}/man1/ogr*.1.gz +%{_mandir}/man1/gdaladdo.1* +%{_mandir}/man1/gdalbuildvrt.1* +%{_mandir}/man1/gdalinfo.1* +%{_mandir}/man1/gdaltindex.1* +%{_mandir}/man1/gdaltransform.1* +%{_mandir}/man1/gdal2tiles.1* +%{_mandir}/man1/nearblack.1* +%{_mandir}/man1/gdal_contour.1* +%{_mandir}/man1/gdal_rasterize.1* +%{_mandir}/man1/gdal_translate.1* +%{_mandir}/man1/gdal_utilities.1* +%{_mandir}/man1/gdal_grid.1* +%{_mandir}/man1/gdal_retile.1* +%{_mandir}/man1/ogr*.1* %files devel %defattr(-,root,root,-) @@ -504,11 +510,11 @@ rm -rf $RPM_BUILD_ROOT %files python %defattr(-,root,root,-) %doc swig/python/samples -%attr(0755,root,root) %{_bindir}/* +%attr(0755,root,root) %{_bindir}/*.py %{python_sitearch}/* -%{_mandir}/man1/pct2rgb.1.gz -%{_mandir}/man1/rgb2pct.1.gz -%{_mandir}/man1/gdal_merge.1.gz +%{_mandir}/man1/pct2rgb.1* +%{_mandir}/man1/rgb2pct.1* +%{_mandir}/man1/gdal_merge.1* %files perl %defattr(-,root,root,-) @@ -531,6 +537,13 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Jul 30 2009 Dan Horak - 1.6.1-1 +- add patch for incompatibilities caused by libdap 3.9.x (thanks goes to arekm from PLD) +- update to 1.6.1 +- don't install some refman.pdf, because they don't build +- don't fail on man pages with suffix other than .gz +- fix filelist for python subpackage + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 29 Jan 2009 14:21:56 -0000 1.13 +++ sources 30 Jul 2009 10:14:24 -0000 1.14 @@ -1,2 +1,2 @@ -0dab181425d963c2cdf541806a37fde9 gdal-1.6.0-fedora.tar.gz +52afc44f76ebb2d3a0e73dafa56f1c44 gdal-1.6.1-fedora.tar.gz 8ca6f8b83e0afb7a79040ac19c5b0b76 gdalautotest-1.6.0.tar.gz From hadess at fedoraproject.org Thu Jul 30 10:14:44 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 30 Jul 2009 10:14:44 +0000 (UTC) Subject: rpms/nautilus-sendto/devel nautilus-sendto.spec,1.79,1.80 Message-ID: <20090730101444.8DE3711C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/nautilus-sendto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28988 Modified Files: nautilus-sendto.spec Log Message: * Thu Jul 30 2009 Bastien Nocera 1.1.6-2 - Rebuild for new empathy Index: nautilus-sendto.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sendto/devel/nautilus-sendto.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- nautilus-sendto.spec 29 Jul 2009 16:48:45 -0000 1.79 +++ nautilus-sendto.spec 30 Jul 2009 10:14:44 -0000 1.80 @@ -1,6 +1,6 @@ Name: nautilus-sendto Version: 1.1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Nautilus context menu for sending files Group: User Interface/Desktops @@ -95,6 +95,9 @@ fi %{_mandir}/man1/nautilus-sendto.1.gz %changelog +* Thu Jul 30 2009 Bastien Nocera 1.1.6-2 +- Rebuild for new empathy + * Wed Jul 29 2009 Bastien Nocera 1.1.6-1 - Update to 1.1.6 From pbrobinson at fedoraproject.org Thu Jul 30 10:16:22 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 10:16:22 +0000 (UTC) Subject: rpms/gir-repository/devel gir-repository.spec,1.4,1.5 Message-ID: <20090730101622.64F1411C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29684 Modified Files: gir-repository.spec Log Message: - Enable a buch of extra gobject extensions Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gir-repository.spec 25 Jul 2009 00:12:24 -0000 1.4 +++ gir-repository.spec 30 Jul 2009 10:16:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: gir-repository Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries @@ -10,22 +10,27 @@ Source0: ftp://ftp.gnome.org/pub/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gobject-introspection-devel = %{version} +BuildRequires: avahi-gobject-devel +BuildRequires: babl-devel +BuildRequires: clutter-gtk-devel BuildRequires: GConf2-devel -BuildRequires: libsoup-devel BuildRequires: gnome-keyring-devel -BuildRequires: gtk2-devel -BuildRequires: poppler-glib-devel -BuildRequires: WebKit-gtk-devel -BuildRequires: libnotify-devel -BuildRequires: gtksourceview2-devel -BuildRequires: vte-devel -BuildRequires: clutter-gtk-devel +BuildRequires: gnome-menus-devel BuildRequires: goocanvas-devel -BuildRequires: gstreamer-devel BuildRequires: gssdp-devel +BuildRequires: gstreamer-devel +BuildRequires: gstreamer-plugins-base-devel +BuildRequires: gtk2-devel +BuildRequires: gtksourceview2-devel BuildRequires: gupnp-devel -BuildRequires: avahi-gobject-devel -BuildRequires: babl-devel +BuildRequires: libnotify-devel +BuildRequires: libsoup-devel +BuildRequires: libwnck-devel +BuildRequires: nautilus-devel +BuildRequires: poppler-glib-devel +BuildRequires: unique-devel +BuildRequires: vte-devel +BuildRequires: WebKit-gtk-devel %description Introspection system for GNOME libraries; see the gobject-introspection package. @@ -72,10 +77,13 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gir-1.0/*.gir %changelog +* Thu Jul 2 2009 Peter Robinson 0.6.3-3 +- Enable a buch of extra gobject extensions + * Fri Jul 24 2009 Fedora Release Engineering - 0.6.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Thu Jul 2 2009 Peter Robinson +* Thu Jul 2 2009 Peter Robinson 0.6.3-1 - Update to 0.6.3 release. Require matching gobject-introspection version * Fri Oct 31 2008 Colin Walters From than at fedoraproject.org Thu Jul 30 10:16:27 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 10:16:27 +0000 (UTC) Subject: rpms/kdeutils/devel .cvsignore, 1.66, 1.67 kdeutils.spec, 1.189, 1.190 sources, 1.67, 1.68 Message-ID: <20090730101627.E5F1111C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29725 Modified Files: .cvsignore kdeutils.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 22 Jul 2009 11:43:22 -0000 1.66 +++ .cvsignore 30 Jul 2009 10:16:27 -0000 1.67 @@ -2,3 +2,4 @@ kdeutils-4.2.90.tar.bz2 kdeutils-4.2.95.tar.bz2 kdeutils-4.2.96.tar.bz2 kdeutils-4.2.98.tar.bz2 +kdeutils-4.3.0.tar.bz2 Index: kdeutils.spec =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/kdeutils.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- kdeutils.spec 22 Jul 2009 11:43:22 -0000 1.189 +++ kdeutils.spec 30 Jul 2009 10:16:27 -0000 1.190 @@ -3,7 +3,7 @@ Name: kdeutils Epoch: 6 -Version: 4.2.98 +Version: 4.3.0 Release: 1%{?dist} Summary: K Desktop Environment - Utilities @@ -193,6 +193,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/sources,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- sources 22 Jul 2009 11:43:23 -0000 1.67 +++ sources 30 Jul 2009 10:16:27 -0000 1.68 @@ -1 +1 @@ -3a5fb437a04103783258cdb840630906 kdeutils-4.2.98.tar.bz2 +9d17d3d7bf25be5af1cbd4abf04e4c99 kdeutils-4.3.0.tar.bz2 From cwickert at fedoraproject.org Thu Jul 30 10:22:52 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:22:52 +0000 (UTC) Subject: rpms/lxtask/devel lxtask.spec,1.4,1.5 noautobuild,1.1,NONE Message-ID: <20090730102252.5A9CF11C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxtask/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32623 Modified Files: lxtask.spec Removed Files: noautobuild Log Message: * Thu Jul 30 2009 Christoph Wickert - 0.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxtask.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxtask/devel/lxtask.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lxtask.spec 6 Jul 2009 20:58:23 -0000 1.4 +++ lxtask.spec 30 Jul 2009 10:22:51 -0000 1.5 @@ -1,6 +1,6 @@ Name: lxtask Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and desktop independent task manager Group: User Interface/Desktops @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Christoph Wickert - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 --- noautobuild DELETED --- From twaugh at fedoraproject.org Thu Jul 30 10:23:49 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 10:23:49 +0000 (UTC) Subject: rpms/gutenprint/F-11 gutenprint.spec,1.47,1.48 Message-ID: <20090730102349.A8ADE11C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv472 Modified Files: gutenprint.spec Log Message: * Wed Jul 15 2009 Tim Waugh - Don't build CUPS PPDs (instead build a CUPS driver that can generate them). Fixes build (bug #511538). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gutenprint.spec 25 Feb 2009 03:00:52 -0000 1.47 +++ gutenprint.spec 30 Jul 2009 10:23:49 -0000 1.48 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.3 -Release: 5%{?dist} +Release: 7%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -140,7 +140,7 @@ export CFLAGS="${CFLAGS} -O0" --with-user-guide --with-samples \ --with-escputil --with-test --disable-rpath \ --enable-cups-1_2-enhancements \ - --enable-simplified-cups-ppds + --disable-cups-ppds make %{?_smp_mflags} @@ -254,6 +254,13 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 15 2009 Tim Waugh 5.2.3-6 +- Don't build CUPS PPDs (instead build a CUPS driver that can + generate them). Fixes build (bug #511538). + * Tue Feb 24 2009 Fedora Release Engineering - 5.2.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pghmcfc at fedoraproject.org Thu Jul 30 10:25:53 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Thu, 30 Jul 2009 10:25:53 +0000 (UTC) Subject: rpms/proftpd/devel proftpd.spec,1.49,1.50 Message-ID: <20090730102553.B77E811C00D3@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/proftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1237 Modified Files: proftpd.spec Log Message: Re-disable parallel build again (reported upstream #3271) Index: proftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- proftpd.spec 30 Jul 2009 10:02:40 -0000 1.49 +++ proftpd.spec 30 Jul 2009 10:25:53 -0000 1.50 @@ -142,7 +142,10 @@ SMOD5=mod_wrap2:mod_wrap2_file:mod_wrap2 --with-modules=mod_readme:mod_auth_pam:mod_tls \ --with-shared=${SMOD1}:${SMOD2}:${SMOD3}:${SMOD4}:${SMOD5}:mod_ifsession -%{__make} %{?_smp_mflags} +# Note: %{?_smp_mflags} not used because ftpcount has missing dependency on -lsupp, +# which can cause build failures with parallel builds +# (http://bugs.proftpd.org/show_bug.cgi?id=3271) +%{__make} %install @@ -312,7 +315,6 @@ fi - Prevent stripping of binaries in a slightly more robust way - Fix release tag to be ready for future beta/rc versions - Define RPM macros in global scope -- Try re-enabling parallel build - BuildRequire libcap-devel so that we use the system library rather than the bundled one, and eliminate log messages like: kernel: warning: `proftpd' uses 32-bit capabilities (legacy support in use) From pkgdb at fedoraproject.org Thu Jul 30 10:26:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:26:40 +0000 Subject: [pkgdb] opencv: hguemar has requested watchbugzilla Message-ID: <20090730102640.69F8A10F889@bastion2.fedora.phx.redhat.com> hguemar has requested the watchbugzilla acl on opencv (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:26:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:26:42 +0000 Subject: [pkgdb] opencv: hguemar has requested watchcommits Message-ID: <20090730102642.A485810F89C@bastion2.fedora.phx.redhat.com> hguemar has requested the watchcommits acl on opencv (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From cwickert at fedoraproject.org Thu Jul 30 10:26:44 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:26:44 +0000 (UTC) Subject: rpms/thunar-shares-plugin/devel thunar-shares-plugin.spec, 1.2, 1.3 noautobuild, 1.1, NONE Message-ID: <20090730102644.6966311C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/thunar-shares-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1582 Modified Files: thunar-shares-plugin.spec Removed Files: noautobuild Log Message: * Thu Jul 30 2009 Christoph Wickert - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thunar-shares-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunar-shares-plugin/devel/thunar-shares-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- thunar-shares-plugin.spec 22 Feb 2009 20:28:37 -0000 1.2 +++ thunar-shares-plugin.spec 30 Jul 2009 10:26:44 -0000 1.3 @@ -2,7 +2,7 @@ Name: thunar-shares-plugin Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Thunar file manager extension to share files using Samba Group: User Interface/Desktops @@ -65,5 +65,8 @@ fi %changelog +* Thu Jul 30 2009 Christoph Wickert - 0.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 16 2009 Christoph Wickert - 0.2.0-1 - Initial Fedora RPM based on the former thunar-shares package --- noautobuild DELETED --- From pkgdb at fedoraproject.org Thu Jul 30 10:26:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:26:47 +0000 Subject: [pkgdb] opencv: hguemar has requested commit Message-ID: <20090730102648.081B310F8B0@bastion2.fedora.phx.redhat.com> hguemar has requested the commit acl on opencv (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From twaugh at fedoraproject.org Thu Jul 30 10:26:56 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 10:26:56 +0000 (UTC) Subject: rpms/gutenprint/F-11 gutenprint.spec,1.48,1.49 Message-ID: <20090730102656.6282F11C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1739 Modified Files: gutenprint.spec Log Message: * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Split documentation into doc sub-package (bug #492452). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- gutenprint.spec 30 Jul 2009 10:23:49 -0000 1.48 +++ gutenprint.spec 30 Jul 2009 10:26:56 -0000 1.49 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.3 -Release: 7%{?dist} +Release: 8%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -36,6 +36,13 @@ Gutenprint is a package of high quality Solaris, IRIX, and other UNIX-alike operating systems. Gutenprint was formerly called Gimp-Print. +%package doc +Summary: Documentation for gutenprint +Group: Documentation + +%description doc +Documentation for gutenprint. + %package devel Summary: Library development files for gutenprint Group: Development/Libraries @@ -190,7 +197,6 @@ exit 0 %files -f gutenprint.lang %defattr(-, root, root,-) -%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf %{_bindir}/escputil %{_mandir}/man1/escputil.1* %{_bindir}/ijsgutenprint.5.2 @@ -204,6 +210,10 @@ exit 0 # For some reason the po files are needed as well. %{_datadir}/locale/*/gutenprint_*.po +%files doc +%defattr(-,root,root,-) +%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf + %files devel %defattr(-,root,root,-) %doc ChangeLog doc/developer/reference-html doc/developer/gutenprint.pdf @@ -254,6 +264,9 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Thu Jul 30 2009 Tim Waugh 5.2.3-8 +- Split documentation into doc sub-package (bug #492452). + * Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From twaugh at fedoraproject.org Thu Jul 30 10:27:11 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 10:27:11 +0000 (UTC) Subject: rpms/gutenprint/devel gutenprint.spec,1.49,1.50 Message-ID: <20090730102711.493A511C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1863 Modified Files: gutenprint.spec Log Message: * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Split documentation into doc sub-package (bug #492452). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- gutenprint.spec 25 Jul 2009 01:54:53 -0000 1.49 +++ gutenprint.spec 30 Jul 2009 10:27:11 -0000 1.50 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.3 -Release: 7%{?dist} +Release: 8%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -36,6 +36,13 @@ Gutenprint is a package of high quality Solaris, IRIX, and other UNIX-alike operating systems. Gutenprint was formerly called Gimp-Print. +%package doc +Summary: Documentation for gutenprint +Group: Documentation + +%description doc +Documentation for gutenprint. + %package devel Summary: Library development files for gutenprint Group: Development/Libraries @@ -190,7 +197,6 @@ exit 0 %files -f gutenprint.lang %defattr(-, root, root,-) -%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf %{_bindir}/escputil %{_mandir}/man1/escputil.1* %{_bindir}/ijsgutenprint.5.2 @@ -204,6 +210,10 @@ exit 0 # For some reason the po files are needed as well. %{_datadir}/locale/*/gutenprint_*.po +%files doc +%defattr(-,root,root,-) +%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf + %files devel %defattr(-,root,root,-) %doc ChangeLog doc/developer/reference-html doc/developer/gutenprint.pdf @@ -254,6 +264,9 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Thu Jul 30 2009 Tim Waugh 5.2.3-8 +- Split documentation into doc sub-package (bug #492452). + * Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 30 10:27:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:27:22 +0000 Subject: [pkgdb] opencv: hguemar has requested watchbugzilla Message-ID: <20090730102722.1495D10F8B1@bastion2.fedora.phx.redhat.com> hguemar has requested the watchbugzilla acl on opencv (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:27:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:27:22 +0000 Subject: [pkgdb] opencv: hguemar has requested watchcommits Message-ID: <20090730102722.EF85710F8B6@bastion2.fedora.phx.redhat.com> hguemar has requested the watchcommits acl on opencv (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From cwickert at fedoraproject.org Thu Jul 30 10:28:06 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:28:06 +0000 (UTC) Subject: rpms/lxtask/F-11 noautobuild,1.1,NONE Message-ID: <20090730102806.B6F9811C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxtask/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2246/F-11 Removed Files: noautobuild Log Message: remove old noautobuild file --- noautobuild DELETED --- From cwickert at fedoraproject.org Thu Jul 30 10:28:55 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:28:55 +0000 (UTC) Subject: rpms/thunar-shares-plugin/F-11 noautobuild,1.1,NONE Message-ID: <20090730102855.38CDC11C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/thunar-shares-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2564/F-11 Removed Files: noautobuild Log Message: remove old noautobuild file --- noautobuild DELETED --- From twaugh at fedoraproject.org Thu Jul 30 10:29:13 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 10:29:13 +0000 (UTC) Subject: rpms/gutenprint/F-11 gutenprint.spec,1.49,1.50 Message-ID: <20090730102913.6F99E11C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2660 Modified Files: gutenprint.spec Log Message: * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Don't show output when upgrading cups sub-package (bug #507324). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- gutenprint.spec 30 Jul 2009 10:26:56 -0000 1.49 +++ gutenprint.spec 30 Jul 2009 10:29:13 -0000 1.50 @@ -190,7 +190,7 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %post cups -/usr/sbin/cups-genppdupdate +/usr/sbin/cups-genppdupdate >/dev/null 2>&1 || : /sbin/service cups reload >/dev/null 2>&1 || : exit 0 @@ -265,6 +265,7 @@ fi %changelog * Thu Jul 30 2009 Tim Waugh 5.2.3-8 +- Don't show output when upgrading cups sub-package (bug #507324). - Split documentation into doc sub-package (bug #492452). * Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 From twaugh at fedoraproject.org Thu Jul 30 10:29:28 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 10:29:28 +0000 (UTC) Subject: rpms/gutenprint/devel gutenprint.spec,1.50,1.51 Message-ID: <20090730102928.AC36911C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2764 Modified Files: gutenprint.spec Log Message: * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Don't show output when upgrading cups sub-package (bug #507324). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- gutenprint.spec 30 Jul 2009 10:27:11 -0000 1.50 +++ gutenprint.spec 30 Jul 2009 10:29:28 -0000 1.51 @@ -190,7 +190,7 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %post cups -/usr/sbin/cups-genppdupdate +/usr/sbin/cups-genppdupdate >/dev/null 2>&1 || : /sbin/service cups reload >/dev/null 2>&1 || : exit 0 @@ -265,6 +265,7 @@ fi %changelog * Thu Jul 30 2009 Tim Waugh 5.2.3-8 +- Don't show output when upgrading cups sub-package (bug #507324). - Split documentation into doc sub-package (bug #492452). * Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 From pkgdb at fedoraproject.org Thu Jul 30 10:30:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:30:11 +0000 Subject: [pkgdb] opencv had acl change status Message-ID: <20090730103011.9429C10F89C@bastion2.fedora.phx.redhat.com> kwizart has set the watchbugzilla acl on opencv (Fedora 11) to Approved for hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:30:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:30:12 +0000 Subject: [pkgdb] opencv had acl change status Message-ID: <20090730103012.D552B10F8B0@bastion2.fedora.phx.redhat.com> kwizart has set the watchcommits acl on opencv (Fedora 11) to Approved for hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:30:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:30:16 +0000 Subject: [pkgdb] opencv had acl change status Message-ID: <20090730103017.03A7110F8B6@bastion2.fedora.phx.redhat.com> kwizart has set the commit acl on opencv (Fedora devel) to Approved for hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:30:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:30:17 +0000 Subject: [pkgdb] opencv had acl change status Message-ID: <20090730103017.7BAD110F8BA@bastion2.fedora.phx.redhat.com> kwizart has set the watchcommits acl on opencv (Fedora devel) to Approved for hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From pkgdb at fedoraproject.org Thu Jul 30 10:30:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:30:19 +0000 Subject: [pkgdb] opencv had acl change status Message-ID: <20090730103019.A983A10F8BE@bastion2.fedora.phx.redhat.com> kwizart has set the watchbugzilla acl on opencv (Fedora devel) to Approved for hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/opencv From mschwendt at fedoraproject.org Thu Jul 30 10:32:38 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Thu, 30 Jul 2009 10:32:38 +0000 (UTC) Subject: rpms/audacious-plugins/devel audacious-plugins-2.1-keep-mixer-open.patch, NONE, 1.1 audacious-plugins.spec, 1.49, 1.50 Message-ID: <20090730103238.4947D11C00D3@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4034 Modified Files: audacious-plugins.spec Added Files: audacious-plugins-2.1-keep-mixer-open.patch Log Message: * Thu Jul 30 2009 Michael Schwendt - 2.1-3 - Keep mixer open and not start at only %50 volume. audacious-plugins-2.1-keep-mixer-open.patch: alsa-core.c | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) --- NEW FILE audacious-plugins-2.1-keep-mixer-open.patch --- diff -Nur audacious-plugins-fedora-2.1-orig/src/alsa-ng/alsa-core.c audacious-plugins-fedora-2.1/src/alsa-ng/alsa-core.c --- audacious-plugins-fedora-2.1-orig/src/alsa-ng/alsa-core.c 2009-07-07 00:40:36.000000000 +0200 +++ audacious-plugins-fedora-2.1/src/alsa-ng/alsa-core.c 2009-07-30 12:08:24.000000000 +0200 @@ -299,9 +299,22 @@ if (alsaplug_cfg.mixer_card == NULL) alsaplug_cfg.mixer_card = g_strdup("default"); + if (!alsaplug_mixer_new(&amixer)) + mixer_ready = TRUE; + return OUTPUT_PLUGIN_INIT_FOUND_DEVICES; } +static void alsaplug_cleanup(void) +{ + if (mixer_ready == TRUE) { + snd_mixer_detach(amixer, alsaplug_cfg.mixer_card); + snd_mixer_close(amixer); + amixer = NULL; + mixer_ready = FALSE; + } +} + static gint alsaplug_open_audio(AFormat fmt, gint rate, gint nch) { @@ -316,9 +329,6 @@ return -1; } - if (!alsaplug_mixer_new(&amixer)) - mixer_ready = TRUE; - if ((err = snd_pcm_open(&pcm_handle, alsaplug_cfg.pcm_device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { _ERROR("snd_pcm_open: %s", snd_strerror(err)); @@ -371,15 +381,6 @@ g_thread_join(audio_thread); audio_thread = NULL; - - if (mixer_ready == TRUE) - { - snd_mixer_detach(amixer, alsaplug_cfg.mixer_card); - snd_mixer_close(amixer); - - amixer = NULL; - mixer_ready = FALSE; - } } static void @@ -500,6 +501,7 @@ .description = "ALSA Output Plugin (-ng)", .probe_priority = 1, .init = alsaplug_init, + .cleanup = alsaplug_cleanup, .open_audio = alsaplug_open_audio, .close_audio = alsaplug_close_audio, .write_audio = alsaplug_write_audio, Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/audacious-plugins.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- audacious-plugins.spec 24 Jul 2009 17:31:57 -0000 1.49 +++ audacious-plugins.spec 30 Jul 2009 10:32:38 -0000 1.50 @@ -5,7 +5,7 @@ Name: audacious-plugins Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Plugins for the Audacious media player Group: Applications/Multimedia URL: http://audacious-media-player.org/ @@ -24,6 +24,7 @@ Source0: audacious-plugins-fedora-%{vers Patch1: audacious-plugins-1.5.1-timidity-cfg.patch Patch2: audacious-plugins-2.0.1-xmms-skindir.patch +Patch3: audacious-plugins-2.1-keep-mixer-open.patch BuildRequires: audacious-devel >= %{aud_ver} BuildRequires: jack-audio-connection-kit-devel libsamplerate-devel @@ -146,6 +147,7 @@ vortex compressed files. %patch1 -p1 -b .timidity-cfg %patch2 -p1 -b .xmms-skindir +%patch3 -p1 -b .keep-mixer-open sed -i '\,^.SILENT:,d' buildsys.mk.in @@ -229,6 +231,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Michael Schwendt - 2.1-3 +- Keep mixer open and not start at only %50 volume. + * Fri Jul 24 2009 Fedora Release Engineering - 2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cwickert at fedoraproject.org Thu Jul 30 10:32:45 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:32:45 +0000 (UTC) Subject: rpms/xfce4-screenshooter/devel xfce4-screenshooter.spec, 1.5, 1.6 noautobuild, 1.1, NONE Message-ID: <20090730103245.3E2EB11C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-screenshooter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4102 Modified Files: xfce4-screenshooter.spec Removed Files: noautobuild Log Message: * Thu Jul 30 2009 Christoph Wickert - 1.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-screenshooter.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-screenshooter/devel/xfce4-screenshooter.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xfce4-screenshooter.spec 14 Jun 2009 20:48:50 -0000 1.5 +++ xfce4-screenshooter.spec 30 Jul 2009 10:32:45 -0000 1.6 @@ -4,7 +4,7 @@ Name: xfce4-screenshooter Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Screenshot utility for the Xfce desktop Group: User Interface/Desktops @@ -94,6 +94,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Thu Jul 30 2009 Christoph Wickert - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Christoph Wickert - 1.6.0-1 - Update to 1.6.0 --- noautobuild DELETED --- From pbrobinson at fedoraproject.org Thu Jul 30 10:34:00 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 10:34:00 +0000 (UTC) Subject: rpms/gir-repository/devel gir-repository.spec,1.5,1.6 Message-ID: <20090730103400.F0C9311C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4657 Modified Files: gir-repository.spec Log Message: - Enable a buch of extra gobject extensions Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gir-repository.spec 30 Jul 2009 10:16:22 -0000 1.5 +++ gir-repository.spec 30 Jul 2009 10:34:00 -0000 1.6 @@ -3,7 +3,7 @@ Version: 0.6.3 Release: 3%{?dist} Summary: Introspection for GNOME libraries -Group: Development/Libraries +Group: Development/Libraries License: LGPLv2+ URL: http://live.gnome.org/GObjectIntrospection Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 @@ -77,7 +77,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gir-1.0/*.gir %changelog -* Thu Jul 2 2009 Peter Robinson 0.6.3-3 +* Thu Jul 30 2009 Peter Robinson 0.6.3-3 - Enable a buch of extra gobject extensions * Fri Jul 24 2009 Fedora Release Engineering - 0.6.3-2 @@ -86,5 +86,5 @@ rm -rf $RPM_BUILD_ROOT * Thu Jul 2 2009 Peter Robinson 0.6.3-1 - Update to 0.6.3 release. Require matching gobject-introspection version -* Fri Oct 31 2008 Colin Walters +* Fri Oct 31 2008 Colin Walters 0.6.0-1 - Create spec goo From cwickert at fedoraproject.org Thu Jul 30 10:34:49 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:34:49 +0000 (UTC) Subject: rpms/xfce4-screenshooter/F-11 noautobuild,1.1,NONE Message-ID: <20090730103449.E470611C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-screenshooter/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5171/F-11 Removed Files: noautobuild Log Message: remove old noautobuild file --- noautobuild DELETED --- From corsepiu at fedoraproject.org Thu Jul 30 10:37:20 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 10:37:20 +0000 (UTC) Subject: rpms/perl-Gtk2/devel perl-Gtk2.spec,1.31,1.32 Message-ID: <20090730103720.BCA8F11C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6717 Modified Files: perl-Gtk2.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.203-3 - Fix mass rebuild breakdown: Add BR: perl(ExtUtils::MakeMaker), perl(Glib::MakeHelper). Index: perl-Gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2/devel/perl-Gtk2.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- perl-Gtk2.spec 26 Jul 2009 06:19:38 -0000 1.31 +++ perl-Gtk2.spec 30 Jul 2009 10:37:20 -0000 1.32 @@ -17,8 +17,10 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: perl >= 2:5.8.0 BuildRequires: gtk2-devel +BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::Depends), perl(ExtUtils::PkgConfig) -BuildRequires: perl(Glib) >= 1.160 +BuildRequires: perl(Glib) >= 1.200 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Cairo) >= 1.00 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: perl(Glib) >= 1.200 @@ -86,6 +88,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.203-3 +- Fix mass rebuild breakdown: + Add BR: perl(ExtUtils::MakeMaker), perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.203-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cwickert at fedoraproject.org Thu Jul 30 10:37:26 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:37:26 +0000 (UTC) Subject: rpms/xfce4-taskmanager/devel xfce4-taskmanager.spec, 1.13, 1.14 noautobuild, 1.1, NONE Message-ID: <20090730103726.CEE0711C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-taskmanager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6773 Modified Files: xfce4-taskmanager.spec Removed Files: noautobuild Log Message: * Thu Jul 30 2009 Christoph Wickert - 0.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-taskmanager.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-taskmanager/devel/xfce4-taskmanager.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-taskmanager.spec 21 Feb 2009 00:31:12 -0000 1.13 +++ xfce4-taskmanager.spec 30 Jul 2009 10:37:26 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-taskmanager Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Taskmanager for the Xfce desktop environment Group: User Interface/Desktops @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Christoph Wickert - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 21 2009 Christoph Wickert - 0.4.1-2 - Rebuild for i586 and SHA 256 hashes in RPM - Rework categories of desktop file to allow nested menus --- noautobuild DELETED --- From corsepiu at fedoraproject.org Thu Jul 30 10:39:26 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 10:39:26 +0000 (UTC) Subject: rpms/perl-Gtk2/devel perl-Gtk2.spec,1.32,1.33 Message-ID: <20090730103926.E8E0711C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7658 Modified Files: perl-Gtk2.spec Log Message: Incr. Release. Index: perl-Gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2/devel/perl-Gtk2.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-Gtk2.spec 30 Jul 2009 10:37:20 -0000 1.32 +++ perl-Gtk2.spec 30 Jul 2009 10:39:26 -0000 1.33 @@ -6,7 +6,7 @@ Name: perl-Gtk2 Version: 1.203 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the 2.x series of the Gimp Toolkit library Group: Development/Libraries From cwickert at fedoraproject.org Thu Jul 30 10:39:33 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:39:33 +0000 (UTC) Subject: rpms/xfce4-taskmanager/F-11 noautobuild,1.1,NONE Message-ID: <20090730103933.7D2F211C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-taskmanager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7718/F-11 Removed Files: noautobuild Log Message: remove old noautobuild file --- noautobuild DELETED --- From cwickert at fedoraproject.org Thu Jul 30 10:40:56 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:40:56 +0000 (UTC) Subject: rpms/lxpanel/devel noautobuild,1.1,NONE Message-ID: <20090730104056.66BE411C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8262 Removed Files: noautobuild Log Message: remove old noautobuild file --- noautobuild DELETED --- From cwickert at fedoraproject.org Thu Jul 30 10:41:52 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:41:52 +0000 (UTC) Subject: rpms/lxde-common/devel noautobuild,1.3,NONE Message-ID: <20090730104152.098FD11C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8537 Removed Files: noautobuild Log Message: remove noautobuild file --- noautobuild DELETED --- From pbrobinson at fedoraproject.org Thu Jul 30 10:49:15 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 10:49:15 +0000 (UTC) Subject: rpms/clutter-imcontext/devel clutter-imcontext-clutter1.patch, NONE, 1.1 clutter-imcontext.spec, 1.2, 1.3 Message-ID: <20090730104915.70C6A11C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/clutter-imcontext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11041 Modified Files: clutter-imcontext.spec Added Files: clutter-imcontext-clutter1.patch Log Message: - Add a patch for clutter 1.0 clutter-imcontext-clutter1.patch: configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE clutter-imcontext-clutter1.patch --- --- clutter-imcontext-0.1.2/configure.ac.orig 2009-07-30 11:43:16.000000000 +0100 +++ clutter-imcontext-0.1.2/configure.ac 2009-07-30 11:43:35.000000000 +0100 @@ -33,7 +33,7 @@ AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal]) PKG_CHECK_MODULES(CLUTTER, glib-2.0 - clutter-0.9 >= 0.9.3) + clutter-1.0 >= 1.0.0) AC_SUBST(CLUTTER_CFLAGS) AC_SUBST(CLUTTER_LIBS) Index: clutter-imcontext.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-imcontext/devel/clutter-imcontext.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- clutter-imcontext.spec 29 Jul 2009 10:18:18 -0000 1.2 +++ clutter-imcontext.spec 30 Jul 2009 10:49:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: clutter-imcontext Version: 0.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: IMContext Framework Library for Clutter Group: System Environment/Libraries @@ -10,10 +10,11 @@ Group: System Environment/Libra License: LGPLv2 URL: http://www.moblin.org/ Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 +Patch0: clutter-imcontext-clutter1.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel -BuildRequires: clutter-devel >= 0.9.3 +BuildRequires: clutter-devel >= 1.0.0 BuildRequires: pkgconfig BuildRequires: gtk-doc @@ -38,6 +39,7 @@ Files for development with %{name}. %prep %setup -q +%patch0 -p1 -b .clutter1 # run autogen.sh until we have a proper release, but don't run configure twice. sed -i '/configure/d' autogen.sh @@ -76,6 +78,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/%{name} %changelog +* Thu Jul 30 2009 Peter Robinson 0.1.2-5 +- Add a patch for clutter 1.0 + * Sun Jul 26 2009 Peter Robinson 0.1.2-4 - A small fix up From cwickert at fedoraproject.org Thu Jul 30 10:53:46 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 30 Jul 2009 10:53:46 +0000 (UTC) Subject: rpms/xfce4-power-manager/devel xfce4-power-manager.spec,1.14,1.15 Message-ID: <20090730105346.34EDC11C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12630 Modified Files: xfce4-power-manager.spec Log Message: * Thu Jul 30 2009 Christoph Wickert - 0.8.2-3 - BuildRequire xorg-x11-proto-devel for dpms features Index: xfce4-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/devel/xfce4-power-manager.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-power-manager.spec 27 Jul 2009 07:54:59 -0000 1.14 +++ xfce4-power-manager.spec 30 Jul 2009 10:53:45 -0000 1.15 @@ -1,6 +1,6 @@ Name: xfce4-power-manager Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Power management for the Xfce desktop environment Group: User Interface/Desktops @@ -14,6 +14,7 @@ BuildRequires: xfce4-panel-devel >= 4.6 BuildRequires: dbus-devel >= 0.60 BuildRequires: dbus-glib-devel >= 0.70 BuildRequires: libnotify-devel >= 0.4.1 +BuildRequires: xorg-x11-proto-devel BuildRequires: gettext intltool desktop-file-utils Requires: xfce4-panel @@ -78,6 +79,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Thu Jul 30 2009 Christoph Wickert - 0.8.2-3 +- BuildRequire xorg-x11-proto-devel for dpms features + * Mon Jul 27 2009 Fedora Release Engineering - 0.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pbrobinson at fedoraproject.org Thu Jul 30 10:59:02 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 10:59:02 +0000 (UTC) Subject: rpms/nbtk/devel nbtk-clutter1.patch,NONE,1.1 nbtk.spec,1.14,1.15 Message-ID: <20090730105902.89DFA11C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14604 Modified Files: nbtk.spec Added Files: nbtk-clutter1.patch Log Message: - Add patch for clutter 1.0 nbtk-clutter1.patch: configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE nbtk-clutter1.patch --- >From 0fbc8b15a57a3deef74c8c85f6418fd7d390de24 Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Wed, 29 Jul 2009 10:18:49 +0000 Subject: Bump clutter requirement to 1.0 --- diff --git a/configure.ac b/configure.ac index 512b266..12259b5 100644 --- a/configure.ac +++ b/configure.ac @@ -120,7 +120,7 @@ GLIB_DEFINE_LOCALEDIR(LOCALEDIR) AM_PROG_LIBTOOL -NBTK_REQUIRES="clutter-0.9 >= 0.9.6 clutter-imcontext-0.1 libccss-1 = 0.3.1" +NBTK_REQUIRES="clutter-1.0 clutter-imcontext-0.1 libccss-1 = 0.3.1" PKG_CHECK_MODULES(NBTK, [$NBTK_REQUIRES]) PKG_CHECK_MODULES(GTK, [gtk+-2.0]) -- cgit v0.8.2 Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nbtk.spec 27 Jul 2009 01:02:59 -0000 1.14 +++ nbtk.spec 30 Jul 2009 10:59:02 -0000 1.15 @@ -1,15 +1,16 @@ Name: nbtk Version: 0.16.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries License: LGPLv2 URL: http://moblin.org/projects/netbook-toolkit-nbtk Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 +Patch0: nbtk-clutter1.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: clutter-devel >= 0.9.4 +BuildRequires: clutter-devel >= 1.0.0 BuildRequires: clutter-imcontext-devel BuildRequires: glib2-devel BuildRequires: gtk2-devel @@ -43,9 +44,13 @@ Files for development with %{name}. %prep %setup -q +%patch0 -p1 -b .clutter1 -%build +# run autogen.sh until we have a proper release, but don't run configure twice. +sed -i '/configure/d' autogen.sh ./autogen.sh + +%build %configure --enable-gtk-doc --disable-static make %{?_smp_mflags} @@ -54,7 +59,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. -rm -rf %{buildroot}/%{_libdir}/*.la +find %{buildroot} -name '*.la' -exec rm -f {} ';' %clean rm -rf %{buildroot} @@ -78,7 +83,10 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog -* Mon Jul 27 2009 Peter Robinson 0.16.3-4 +* Thu Jul 30 2009 Peter Robinson 0.16.3-6 +- Add patch for clutter 1.0 + +* Mon Jul 27 2009 Peter Robinson 0.16.3-5 - Add new files * Mon Jul 27 2009 Peter Robinson 0.16.3-4 From pkgdb at fedoraproject.org Thu Jul 30 10:59:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:59:20 +0000 Subject: [pkgdb] ddclient: jrowens has requested watchbugzilla Message-ID: <20090730105920.E71F510F89A@bastion2.fedora.phx.redhat.com> jrowens has requested the watchbugzilla acl on ddclient (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ddclient From pkgdb at fedoraproject.org Thu Jul 30 10:59:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 10:59:28 +0000 Subject: [pkgdb] ddclient: jrowens has requested watchcommits Message-ID: <20090730105928.F231910F89E@bastion2.fedora.phx.redhat.com> jrowens has requested the watchcommits acl on ddclient (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ddclient From pkgdb at fedoraproject.org Thu Jul 30 11:01:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:01:49 +0000 Subject: [pkgdb] coriander: jrowens has requested watchbugzilla Message-ID: <20090730110149.9D05010F87E@bastion2.fedora.phx.redhat.com> jrowens has requested the watchbugzilla acl on coriander (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/coriander From pkgdb at fedoraproject.org Thu Jul 30 11:01:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:01:53 +0000 Subject: [pkgdb] coriander: jrowens has requested watchcommits Message-ID: <20090730110153.7D75C10F89B@bastion2.fedora.phx.redhat.com> jrowens has requested the watchcommits acl on coriander (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/coriander From berrange at fedoraproject.org Thu Jul 30 11:07:16 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Thu, 30 Jul 2009 11:07:16 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.159,1.160 Message-ID: <20090730110717.0E3AC11C00D3@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17868 Modified Files: libvirt.spec Log Message: Create qemu/kvm user & group to fix upgrades Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.159 retrieving revision 1.160 diff -u -p -r1.159 -r1.160 --- libvirt.spec 29 Jul 2009 14:58:18 -0000 1.159 +++ libvirt.spec 30 Jul 2009 11:07:16 -0000 1.160 @@ -78,7 +78,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.6.gite195b43%{?dist}%{?extra_release} +Release: 0.7.gite195b43%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.6.gite195b43.tar.gz @@ -419,6 +419,18 @@ chmod 0644 $RPM_BUILD_ROOT%{_sysconfdir} %clean rm -fr %{buildroot} +%pre +%if 0%{?fedora} >= 12 +# Normally 'setup' adds this in /etc/passwd, but this is +# here for case of upgrades from earlier Fedora. This +# UID/GID pair is reserved for qemu:qemu +getent group kvm >/dev/null || groupadd -g 36 -r kvm +getent group qemu >/dev/null || groupadd -g 107 -r qemu +getent passwd qemu >/dev/null || \ + useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \ + -c "qemu user" qemu +%endif + %post %if %{with_libvirtd} @@ -600,6 +612,9 @@ fi %endif %changelog +* Thu Jul 30 2009 Daniel P. Berrange - 0.7.0-0.7.gite195b43 +- Create qemu/kvm user & group to fix upgrades + * Wed Jul 29 2009 Daniel Veillard - 0.7.0-0.6.gite195b43 - another prerelease with qemu, uml and remote patches - drop the news patch as it's now UTF8 upstream From pbrobinson at fedoraproject.org Thu Jul 30 11:12:45 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 11:12:45 +0000 (UTC) Subject: rpms/gir-repository/devel gir-repository.spec,1.6,1.7 Message-ID: <20090730111245.D4A2111C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19749 Modified Files: gir-repository.spec Log Message: - Further updates, drop clutter as its in the clutter package now Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gir-repository.spec 30 Jul 2009 10:34:00 -0000 1.6 +++ gir-repository.spec 30 Jul 2009 11:12:45 -0000 1.7 @@ -1,6 +1,6 @@ Name: gir-repository Version: 0.6.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries @@ -12,14 +12,12 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: gobject-introspection-devel = %{version} BuildRequires: avahi-gobject-devel BuildRequires: babl-devel -BuildRequires: clutter-gtk-devel BuildRequires: GConf2-devel BuildRequires: gnome-keyring-devel BuildRequires: gnome-menus-devel BuildRequires: goocanvas-devel BuildRequires: gssdp-devel BuildRequires: gstreamer-devel -BuildRequires: gstreamer-plugins-base-devel BuildRequires: gtk2-devel BuildRequires: gtksourceview2-devel BuildRequires: gupnp-devel @@ -77,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gir-1.0/*.gir %changelog +* Thu Jul 30 2009 Peter Robinson 0.6.3-4 +- Further updates, drop clutter as its in the clutter package now + * Thu Jul 30 2009 Peter Robinson 0.6.3-3 - Enable a buch of extra gobject extensions From pbrobinson at fedoraproject.org Thu Jul 30 11:19:24 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 11:19:24 +0000 (UTC) Subject: rpms/xapian-core/F-11 xapian-core.spec,1.21,1.22 Message-ID: <20090730111925.04E2F11C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/xapian-core/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21655 Modified Files: xapian-core.spec Log Message: - Update to 1.0.14 Index: xapian-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/F-11/xapian-core.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xapian-core.spec 6 Apr 2009 21:41:56 -0000 1.21 +++ xapian-core.spec 30 Jul 2009 11:19:24 -0000 1.22 @@ -1,6 +1,6 @@ Summary: The Xapian Probabilistic Information Retrieval Library Name: xapian-core -Version: 1.0.11 +Version: 1.0.14 Release: 1%{?dist} License: GPLv2+ Group: Applications/Databases @@ -122,6 +122,18 @@ rm -rf %{buildroot} %{_mandir}/man1/xapian-config.1* %changelog +* Wed Jul 29 2009 Peter Robinson - 1.0.14-1 +- Update to 1.0.14 + +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jun 5 2009 Peter Robinson - 1.0.13-1 +- Update to 1.0.13 + +* Sun Apr 12 2009 Peter Robinson - 1.0.12-1 +- Update to 1.0.12 + * Mon Apr 06 2009 Peter Robinson - 1.0.11-1 - Update to 1.0.11 From jzeleny at fedoraproject.org Thu Jul 30 11:20:20 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 11:20:20 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.4,1.5 Message-ID: <20090730112020.BF3CD11C04D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22000 Modified Files: libhbaapi.spec Log Message: Minor change to spec file Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libhbaapi.spec 30 Jul 2009 09:51:24 -0000 1.4 +++ libhbaapi.spec 30 Jul 2009 11:20:20 -0000 1.5 @@ -41,7 +41,8 @@ developing applications that use %{name} %build -./bootstrap.sh +#./bootstrap.sh +/usr/bin/autoreconf --install %configure --disable-static make %{?_smp_mflags} From hguemar at fedoraproject.org Thu Jul 30 11:22:15 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Thu, 30 Jul 2009 11:22:15 +0000 (UTC) Subject: rpms/opencv/devel opencv.spec,1.34,1.35 Message-ID: <20090730112215.ED97D11C00D3@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/opencv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22621 Modified Files: opencv.spec Log Message: Added 1394libs and unicap support Index: opencv.spec =================================================================== RCS file: /cvs/extras/rpms/opencv/devel/opencv.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- opencv.spec 25 Jul 2009 20:46:47 -0000 1.34 +++ opencv.spec 30 Jul 2009 11:22:15 -0000 1.35 @@ -3,7 +3,7 @@ Name: opencv Version: 1.1.0 -Release: 0.4.pre1%{?dist} +Release: 0.5.pre1%{?dist} Summary: Collection of algorithms for computer vision Group: Development/Libraries @@ -23,6 +23,11 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: libtool BuildRequires: gtk2-devel +BuildRequires: unicap-devel +BuildRequires: libtheora-devel +BuildRequires: libvorbis-devel +BuildRequires: libraw1394-devel +BuildRequires: libdc1394-devel BuildRequires: jasper-devel BuildRequires: libpng-devel BuildRequires: libjpeg-devel @@ -85,6 +90,8 @@ export SWIG_PYTHON_LIBS=%{_libdir} %{?_with_ffmpeg:--with-ffmpeg}%{!?_with_ffmpeg:--without-ffmpeg} \ %{!?_without_gstreamer:--with-gstreamer} \ %{?_with_xine:--with-xine --without-quicktime} \ + --with-unicap \ + --with-1394libs --without-quicktime %ifarch i386 i586 --disable-sse2 \ %endif @@ -155,6 +162,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 30 2009 Ha?kel Gu?mar 1.1.0.0.5.pre1 +- Added 1394libs and unicap support + * Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-0.4.pre1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From than at fedoraproject.org Thu Jul 30 11:22:21 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 11:22:21 +0000 (UTC) Subject: rpms/oxygen-icon-theme/devel .cvsignore, 1.7, 1.8 oxygen-icon-theme.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090730112221.D9D3F11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/oxygen-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645 Modified Files: .cvsignore oxygen-icon-theme.spec sources Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 22 Jul 2009 11:51:27 -0000 1.7 +++ .cvsignore 30 Jul 2009 11:22:21 -0000 1.8 @@ -2,3 +2,4 @@ oxygen-icons-4.2.90.tar.bz2 oxygen-icons-4.2.95.tar.bz2 oxygen-icons-4.2.96.tar.bz2 oxygen-icons-4.2.98.tar.bz2 +oxygen-icons-4.3.0.tar.bz2 Index: oxygen-icon-theme.spec =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/oxygen-icon-theme.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- oxygen-icon-theme.spec 25 Jul 2009 21:02:57 -0000 1.7 +++ oxygen-icon-theme.spec 30 Jul 2009 11:22:21 -0000 1.8 @@ -1,7 +1,7 @@ Name: oxygen-icon-theme Summary: Oxygen icon theme -Version: 4.2.98 -Release: 2%{?dist} +Version: 4.3.0 +Release: 1%{?dist} License: LGPLv3+ Group: User Interface/Desktops @@ -66,6 +66,9 @@ fi %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Sat Jul 25 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 22 Jul 2009 11:51:27 -0000 1.7 +++ sources 30 Jul 2009 11:22:21 -0000 1.8 @@ -1 +1 @@ -e9588cdc73708e9b2ca6f7cb3878f36c oxygen-icons-4.2.98.tar.bz2 +26b63e75f9f198f91a022e5f198119bb oxygen-icons-4.3.0.tar.bz2 From pbrobinson at fedoraproject.org Thu Jul 30 11:23:07 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 11:23:07 +0000 (UTC) Subject: rpms/xapian-core/F-11 .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xapian-core.spec, 1.22, 1.23 Message-ID: <20090730112307.19D2511C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/xapian-core/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22916 Modified Files: .cvsignore sources xapian-core.spec Log Message: - add the new source Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 6 Apr 2009 21:41:56 -0000 1.10 +++ .cvsignore 30 Jul 2009 11:23:06 -0000 1.11 @@ -1 +1 @@ -xapian-core-1.0.11.tar.gz +xapian-core-1.0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 6 Apr 2009 21:41:56 -0000 1.10 +++ sources 30 Jul 2009 11:23:06 -0000 1.11 @@ -1 +1 @@ -f80a2f51b109e2a065bdcbf1ba03b808 xapian-core-1.0.11.tar.gz +f318fe11143af82aa6679acc51723a1a xapian-core-1.0.14.tar.gz Index: xapian-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/F-11/xapian-core.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xapian-core.spec 30 Jul 2009 11:19:24 -0000 1.22 +++ xapian-core.spec 30 Jul 2009 11:23:06 -0000 1.23 @@ -1,7 +1,7 @@ Summary: The Xapian Probabilistic Information Retrieval Library Name: xapian-core Version: 1.0.14 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Databases URL: http://www.xapian.org/ @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_mandir}/man1/xapian-config.1* %changelog +* Wed Jul 29 2009 Peter Robinson - 1.0.14-2 +- Add the new source + * Wed Jul 29 2009 Peter Robinson - 1.0.14-1 - Update to 1.0.14 From jzeleny at fedoraproject.org Thu Jul 30 11:28:24 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 11:28:24 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.5,1.6 Message-ID: <20090730112824.2EBBC11C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24219 Modified Files: libhbaapi.spec Log Message: Hopefully last minor change to spec file - added libtool to BuildRequires Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libhbaapi.spec 30 Jul 2009 11:20:20 -0000 1.5 +++ libhbaapi.spec 30 Jul 2009 11:28:23 -0000 1.6 @@ -17,7 +17,7 @@ Source0: http://downloads.sourcef Source1: hbaapi_build_%{buildversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: automake +BuildRequires: automake libtool # Requires: %description From xhorak at fedoraproject.org Thu Jul 30 11:32:42 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 30 Jul 2009 11:32:42 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-11 pcmanx-gtk2-0.3.8-xulrunner.patch,1.1,1.2 Message-ID: <20090730113242.3BCFE11C00D3@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26064 Modified Files: pcmanx-gtk2-0.3.8-xulrunner.patch Log Message: Rebuild against newer gecko pcmanx-gtk2-0.3.8-xulrunner.patch: np_entry.cpp | 1 npn_gate.cpp | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---- npp_gate.cpp | 16 +++--- npplat.h | 6 +- pluginbase.h | 16 +++--- 5 files changed, 165 insertions(+), 26 deletions(-) Index: pcmanx-gtk2-0.3.8-xulrunner.patch =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-11/pcmanx-gtk2-0.3.8-xulrunner.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pcmanx-gtk2-0.3.8-xulrunner.patch 7 Jan 2009 21:44:34 -0000 1.1 +++ pcmanx-gtk2-0.3.8-xulrunner.patch 30 Jul 2009 11:32:41 -0000 1.2 @@ -12,7 +12,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np diff -up pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp.xul pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp --- pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp.xul 2008-08-10 09:06:29.000000000 +0200 +++ pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp 2009-01-07 22:36:21.000000000 +0100 -@@ -42,6 +42,126 @@ +@@ -42,6 +42,138 @@ // #include "npplat.h" @@ -133,13 +133,25 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np +#define CallNPN_ForceRedrawProc(FUNC, ARG1) \ + (*(FUNC))((ARG1)) + ++typedef JRIEnv* (* NP_LOADDS NPN_GetJavaEnvUPP)(void); ++#define NewNPN_GetJavaEnvProc(FUNC) \ ++ ((NPN_GetJavaEnvUPP) (FUNC)) ++#define CallNPN_GetJavaEnvProc(FUNC) \ ++ (*(FUNC))() ++ ++typedef jref (* NP_LOADDS NPN_GetJavaPeerUPP)(NPP instance); ++#define NewNPN_GetJavaPeerProc(FUNC) \ ++ ((NPN_GetJavaPeerUPP) (FUNC)) ++#define CallNPN_GetJavaPeerProc(FUNC, ARG1) \ ++ (*(FUNC))((ARG1)) ++ +// ------------------------------------------------ + + extern NPNetscapeFuncs NPNFuncs; void NPN_Version(int* plugin_major, int* plugin_minor, int* netscape_major, int* netscape_minor) -@@ -71,7 +191,7 @@ NPError NPN_GetURL(NPP instance, const c +@@ -71,7 +203,7 @@ return rv; } @@ -148,7 +160,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { int navMinorVers = NPNFuncs.version & 0xFF; NPError rv = NPERR_NO_ERROR; -@@ -84,7 +204,7 @@ NPError NPN_PostURLNotify(NPP instance, +@@ -84,7 +216,7 @@ return rv; } @@ -157,7 +169,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { NPError rv = CallNPN_PostURLProc(NPNFuncs.posturl, instance, url, window, len, buf, file); return rv; -@@ -110,10 +230,10 @@ NPError NPN_NewStream(NPP instance, NPMI +@@ -110,10 +242,10 @@ return rv; } @@ -170,7 +182,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) rv = CallNPN_WriteProc(NPNFuncs.write, instance, stream, len, buffer); -@@ -143,12 +263,12 @@ void NPN_Status(NPP instance, const char +@@ -143,12 +275,12 @@ const char* NPN_UserAgent(NPP instance) { @@ -185,7 +197,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { void * rv = NULL; rv = CallNPN_MemAllocProc(NPNFuncs.memalloc, size); -@@ -160,9 +280,9 @@ void NPN_MemFree(void* ptr) +@@ -160,9 +292,9 @@ CallNPN_MemFreeProc(NPNFuncs.memfree, ptr); } @@ -197,6 +209,23 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np return rv; } +@@ -175,14 +307,14 @@ + JRIEnv* NPN_GetJavaEnv(void) + { + JRIEnv * rv = NULL; +- rv = CallNPN_GetJavaEnvProc(NPNFuncs.getJavaEnv); ++ rv = (JRIEnv*)CallNPN_GetJavaEnvProc(NPNFuncs.getJavaEnv); + return rv; + } + + jref NPN_GetJavaPeer(NPP instance) + { + jref rv; +- rv = CallNPN_GetJavaPeerProc(NPNFuncs.getJavaPeer, instance); ++ rv = (jref)CallNPN_GetJavaPeerProc(NPNFuncs.getJavaPeer, instance); + return rv; + } + #endif diff -up pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp.xul pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp --- pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp.xul 2008-08-10 09:06:29.000000000 +0200 +++ pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp 2009-01-07 22:36:21.000000000 +0100 From than at fedoraproject.org Thu Jul 30 11:37:23 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 11:37:23 +0000 (UTC) Subject: rpms/qt/devel qt-x11-opensource-src-4.5.2-timestamp.patch, NONE, 1.1 qt.spec, 1.302, 1.303 Message-ID: <20090730113723.3BEAD11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28419 Modified Files: qt.spec Added Files: qt-x11-opensource-src-4.5.2-timestamp.patch Log Message: apply upstream patch to fix issue in Copy and paste qt-x11-opensource-src-4.5.2-timestamp.patch: qapplication_x11.cpp | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) --- NEW FILE qt-x11-opensource-src-4.5.2-timestamp.patch --- >From 9e5fa633913ef952ca4ef5312fe396bcfc885321 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Wed, 22 Jul 2009 17:12:17 +0200 Subject: [PATCH] Revert "Added a check that X11 timestamp goes forward only." In some cases we might get an invalid timestamp that is far away in the future, so remembering it will break all consequent X calls that require a timestamp because it just contains junk (for example clipboard will stop working). This happens with XIM+SCIM pair - whenever we start input method and type something to the widget, we get a XKeyPress event with a commited string, however the 'serial' and 'time' members of the XEvent structure are not initialized (according to valgrind) and contain junk. This reverts commit 2ed015b8a0ffad63f0f59b0e2255057f416895fb. Reviewed-By: Brad --- src/gui/kernel/qapplication_x11.cpp | 35 +++++++++++++++-------------------- 1 files changed, 15 insertions(+), 20 deletions(-) diff --git a/src/gui/kernel/qapplication_x11.cpp b/src/gui/kernel/qapplication_x11.cpp index 163ceb6..abedfd6 100644 --- a/src/gui/kernel/qapplication_x11.cpp +++ b/src/gui/kernel/qapplication_x11.cpp @@ -3142,48 +3142,43 @@ int QApplication::x11ProcessEvent(XEvent* event) #ifdef ALIEN_DEBUG //qDebug() << "QApplication::x11ProcessEvent:" << event->type; #endif - Time time = 0, userTime = 0; switch (event->type) { case ButtonPress: pressed_window = event->xbutton.window; - userTime = event->xbutton.time; + X11->userTime = event->xbutton.time; // fallthrough intended case ButtonRelease: - time = event->xbutton.time; + X11->time = event->xbutton.time; break; case MotionNotify: - time = event->xmotion.time; + X11->time = event->xmotion.time; break; case XKeyPress: - userTime = event->xkey.time; + X11->userTime = event->xkey.time; // fallthrough intended case XKeyRelease: - time = event->xkey.time; + X11->time = event->xkey.time; break; case PropertyNotify: - time = event->xproperty.time; + X11->time = event->xproperty.time; break; case EnterNotify: case LeaveNotify: - time = event->xcrossing.time; + X11->time = event->xcrossing.time; break; case SelectionClear: - time = event->xselectionclear.time; + X11->time = event->xselectionclear.time; break; default: -#ifndef QT_NO_XFIXES - if (X11->use_xfixes && event->type == (X11->xfixes_eventbase + XFixesSelectionNotify)) { - XFixesSelectionNotifyEvent *req = - reinterpret_cast(event); - time = req->selection_timestamp; - } -#endif break; } - if (time > X11->time) - X11->time = time; - if (userTime > X11->userTime) - X11->userTime = userTime; +#ifndef QT_NO_XFIXES + if (X11->use_xfixes && event->type == (X11->xfixes_eventbase + XFixesSelectionNotify)) { + XFixesSelectionNotifyEvent *req = + reinterpret_cast(event); + X11->time = req->selection_timestamp; + } +#endif QETWidget *widget = (QETWidget*)QWidget::find((WId)event->xany.window); -- 1.6.1 Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/devel/qt.spec,v retrieving revision 1.302 retrieving revision 1.303 diff -u -p -r1.302 -r1.303 --- qt.spec 27 Jul 2009 02:35:58 -0000 1.302 +++ qt.spec 30 Jul 2009 11:37:22 -0000 1.303 @@ -12,7 +12,7 @@ Epoch: 1 Name: qt4 %endif Version: 4.5.2 -Release: 4%{?dist} +Release: 5%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -59,6 +59,7 @@ Patch53: qt-x11-opensource-src-4.5.0-fix # fix invalid assumptions about mysql_config --libs # http://bugzilla.redhat.com/440673 Patch54: qt-x11-opensource-src-4.5.1-mysql_config.patch +Patch55: qt-x11-opensource-src-4.5.2-timestamp.patch ## qt-copy patches # we'll want to switch to the kde-qt branches, e.g.: @@ -395,6 +396,7 @@ popd %patch52 -p1 -b .sparc64 %patch53 -p1 -b .qatomic-inline-asm %patch54 -p1 -b .mysql_config +%patch55 -p1 -b .timestamp # drop -fexceptions from $RPM_OPT_FLAGS RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed 's|-fexceptions||g'` @@ -914,6 +916,9 @@ fi %{_datadir}/icons/hicolor/*/apps/qt4-logo.* %changelog +* Thu Jul 30 2009 Than Ngo - 4.5.2-5 +- apply upstream patch to fix issue in Copy and paste + * Sun Jul 26 2009 Fedora Release Engineering - 1:4.5.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From makowski at fedoraproject.org Thu Jul 30 11:45:22 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 11:45:22 +0000 (UTC) Subject: rpms/firebird/EL-5 firebird-fix-initscript.patch, 1.2, 1.3 firebird.spec, 1.4, 1.5 firebird-2.1.2-doc.patch, 1.1, NONE Message-ID: <20090730114522.9728311C0427@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31463 Modified Files: firebird-fix-initscript.patch firebird.spec Removed Files: firebird-2.1.2-doc.patch Log Message: - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch firebird-fix-initscript.patch: firebird.init.d.mandrake.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird-fix-initscript.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird-fix-initscript.patch 11 Jul 2009 17:02:07 -0000 1.2 +++ firebird-fix-initscript.patch 30 Jul 2009 11:45:22 -0000 1.3 @@ -1,52 +1,27 @@ ---- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2008-01-22 12:39:13.000000000 +0100 -+++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.pm 2009-05-03 12:10:31.000000000 +0200 -@@ -19,6 +19,7 @@ - # Optionally run chkconfig to autostart the new service - INSTANCE=default - FIREBIRD=@prefix@ -+name=firebird +--- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2009-07-24 12:16:22.000000000 +0200 ++++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.new 2009-07-28 01:08:16.000000000 +0200 +@@ -1,11 +1,20 @@ + #!/bin/sh - # No changes needed below for multiple instances - FBRunUser=firebird -@@ -37,21 +37,25 @@ - case "$1" in - start) - echo -n "Starting $FULLNAME " -- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser -+ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -+ echo -+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name - echo - ;; - stop) -- echo -n "Stopping $FULLNAME " -- - if [ -f $pidfile ] - then -- kill `cat $pidfile` -+ echo -n "Stopping $FULLNAME: " -+ killproc -p $pidfile $name -+ RETVAL=$? -+ echo -+ else -+ echo -n "$FULLNAME server is stopped" -+ echo - fi - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -- echo -+ [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$name - ;; - status) - if [ -f $pidfile ] -@@ -70,7 +75,7 @@ - RETVAL=$? - ;; - *) -- echo "Usage: firebird {start|stop|status|restart|reload}" -+ echo "Usage: $name {start|stop|status|restart|reload}" - exit 1 - esac +-# chkconfig: 345 20 80 ++# chkconfig: 345 80 20 + # description: Start/Stop firebird database server + # + # This file belongs in /etc/init.d where it will be run + # on system startup and shutdown to start the background + # Firebird database server daemon ++### BEGIN INIT INFO ++# Provides: firebird ++# Required-Start: $local_fs $syslog ++# Required-Stop: ++# Default-Start: 3 4 5 ++# Default-Stop: 0 1 2 6 ++# Short-Description: Firebird server database ++# Description: Starts and stops the Firebird database server backend daemon. ++### END INIT INFO + # Source function library - RedHat or Mandriva specific + # functions actually used: checkpid killproc daemon + + + Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firebird.spec 12 Jul 2009 09:02:29 -0000 1.4 +++ firebird.spec 30 Jul 2009 11:45:22 -0000 1.5 @@ -1,24 +1,25 @@ -%global pkgname Firebird-2.1.2.18118-0 +%global pkgname Firebird-2.1.3.18185-0 %global fbroot %{_libdir}/%{name} -%global major 2.1.2 +%global major 2.1.3 Summary: SQL relational database management system Name: firebird -Version: 2.1.2.18118.0 -Release: 11%{?dist} +Version: 2.1.3.18185.0 +Release: 0%{?dist} Group: Applications/Databases License: Interbase URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot -Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +#Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +Source0: http://firebirdsql.org/downloads/prerelease/source/%{pkgname}.RC2.tar.bz2 Source1: firebird-logrotate Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch -Patch1: firebird-2.1.2-doc.patch +#Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch Patch4: firebird-gcc-icu.patch @@ -128,7 +129,7 @@ Multi-process, local client libraries fo iconv -f ISO-8859-1 -t utf-8 -c ./doc/README.intl -o ./doc/README.intl # backport patch %patch2 -%patch1 +#%patch1 %patch0 %patch3 %patch4 @@ -147,9 +148,14 @@ export CFLAGS='-m32' export LDFLAGS='-m32' %endif +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -172,10 +178,16 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --enable-superserver \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -243,19 +255,21 @@ cd %{buildroot}%{fbroot}/bin-superserver ln -s fbmgr.bin fbmgr cd %{buildroot} +major2=`echo %{major} | sed 's|\.[0-9]*$||'` +major1=`echo ${major2} | sed 's|\.[0-9]*$||'` cd %{buildroot}%{fbroot}/lib/ -ln -s libfbembed.so.%{major} libfbembed.so.2.1 -ln -s libfbembed.so.2.1 libfbembed.so -ln -s libfbclient.so.%{major} libfbclient.so.2 -ln -s libfbclient.so.2 libfbclient.so +ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major2} +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so +ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major1} +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} ln -s %{fbroot}/lib/libfbembed.so libfbembed.so -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so.2.1 +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so.%{major2} ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major} ln -s %{fbroot}/lib/libfbclient.so libfbclient.so -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so.%{major1} ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 ln -s %{fbroot}/lib/libfbclient.so libgds.so @@ -292,7 +306,7 @@ ln -s %{_sysconfdir}/%{name}/fbintl.conf sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} -sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} +#sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run @@ -509,6 +523,12 @@ rm -Rf %{_var}/run/%{name} %changelog +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-0 +- Update to 2.1.3.18185 +- Fix rh #514463 +- Remove doc patch +- Apply backport initscript patch + * Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) --- firebird-2.1.2-doc.patch DELETED --- From jzeleny at fedoraproject.org Thu Jul 30 11:46:22 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 11:46:22 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.6,1.7 Message-ID: <20090730114622.0BE8C11C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31901 Modified Files: libhbaapi.spec Log Message: More changes to spec file Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libhbaapi.spec 30 Jul 2009 11:28:23 -0000 1.6 +++ libhbaapi.spec 30 Jul 2009 11:46:21 -0000 1.7 @@ -41,8 +41,7 @@ developing applications that use %{name} %build -#./bootstrap.sh -/usr/bin/autoreconf --install +./bootstrap.sh %configure --disable-static make %{?_smp_mflags} From than at fedoraproject.org Thu Jul 30 11:48:34 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 11:48:34 +0000 (UTC) Subject: rpms/kde-l10n/devel .cvsignore, 1.26, 1.27 kde-l10n.spec, 1.88, 1.89 sources, 1.29, 1.30 kde-l10n-es-4.2.98-typo.patch, 1.1, NONE Message-ID: <20090730114834.15E3711C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32369 Modified Files: .cvsignore kde-l10n.spec sources Removed Files: kde-l10n-es-4.2.98-typo.patch Log Message: 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 22 Jul 2009 12:37:23 -0000 1.26 +++ .cvsignore 30 Jul 2009 11:48:33 -0000 1.27 @@ -222,3 +222,59 @@ kde-l10n-uk-4.2.98.tar.bz2 kde-l10n-wa-4.2.98.tar.bz2 kde-l10n-zh_CN-4.2.98.tar.bz2 kde-l10n-zh_TW-4.2.98.tar.bz2 +kde-l10n-ar-4.3.0.tar.bz2 +kde-l10n-bg-4.3.0.tar.bz2 +kde-l10n-bn_IN-4.3.0.tar.bz2 +kde-l10n-ca-4.3.0.tar.bz2 +kde-l10n-csb-4.3.0.tar.bz2 +kde-l10n-cs-4.3.0.tar.bz2 +kde-l10n-da-4.3.0.tar.bz2 +kde-l10n-de-4.3.0.tar.bz2 +kde-l10n-el-4.3.0.tar.bz2 +kde-l10n-en_GB-4.3.0.tar.bz2 +kde-l10n-es-4.3.0.tar.bz2 +kde-l10n-et-4.3.0.tar.bz2 +kde-l10n-eu-4.3.0.tar.bz2 +kde-l10n-fi-4.3.0.tar.bz2 +kde-l10n-fr-4.3.0.tar.bz2 +kde-l10n-ga-4.3.0.tar.bz2 +kde-l10n-gl-4.3.0.tar.bz2 +kde-l10n-gu-4.3.0.tar.bz2 +kde-l10n-he-4.3.0.tar.bz2 +kde-l10n-hi-4.3.0.tar.bz2 +kde-l10n-hu-4.3.0.tar.bz2 +kde-l10n-is-4.3.0.tar.bz2 +kde-l10n-it-4.3.0.tar.bz2 +kde-l10n-ja-4.3.0.tar.bz2 +kde-l10n-kk-4.3.0.tar.bz2 +kde-l10n-km-4.3.0.tar.bz2 +kde-l10n-kn-4.3.0.tar.bz2 +kde-l10n-ko-4.3.0.tar.bz2 +kde-l10n-ku-4.3.0.tar.bz2 +kde-l10n-lt-4.3.0.tar.bz2 +kde-l10n-lv-4.3.0.tar.bz2 +kde-l10n-mai-4.3.0.tar.bz2 +kde-l10n-mk-4.3.0.tar.bz2 +kde-l10n-ml-4.3.0.tar.bz2 +kde-l10n-mr-4.3.0.tar.bz2 +kde-l10n-nb-4.3.0.tar.bz2 +kde-l10n-nds-4.3.0.tar.bz2 +kde-l10n-nl-4.3.0.tar.bz2 +kde-l10n-nn-4.3.0.tar.bz2 +kde-l10n-pa-4.3.0.tar.bz2 +kde-l10n-pl-4.3.0.tar.bz2 +kde-l10n-pt_BR-4.3.0.tar.bz2 +kde-l10n-pt-4.3.0.tar.bz2 +kde-l10n-ro-4.3.0.tar.bz2 +kde-l10n-ru-4.3.0.tar.bz2 +kde-l10n-sk-4.3.0.tar.bz2 +kde-l10n-sl-4.3.0.tar.bz2 +kde-l10n-sr-4.3.0.tar.bz2 +kde-l10n-sv-4.3.0.tar.bz2 +kde-l10n-tg-4.3.0.tar.bz2 +kde-l10n-th-4.3.0.tar.bz2 +kde-l10n-tr-4.3.0.tar.bz2 +kde-l10n-uk-4.3.0.tar.bz2 +kde-l10n-wa-4.3.0.tar.bz2 +kde-l10n-zh_CN-4.3.0.tar.bz2 +kde-l10n-zh_TW-4.3.0.tar.bz2 Index: kde-l10n.spec =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/kde-l10n.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- kde-l10n.spec 25 Jul 2009 04:22:39 -0000 1.88 +++ kde-l10n.spec 30 Jul 2009 11:48:33 -0000 1.89 @@ -1,8 +1,8 @@ %define buildall 0 Name: kde-l10n -Version: 4.2.98 -Release: 2%{dist} +Version: 4.3.0 +Release: 1%{dist} Url: http://www.kde.org Summary: Internationalization support for KDE Group: User Interface/Desktops @@ -75,7 +75,6 @@ Source61: ftp://ftp.kde.org/pub/kde/stab Source1000: subdirs-kde-l10n # upstream patches -Patch100: kde-l10n-es-4.2.98-typo.patch Requires: kde-filesystem @@ -809,7 +808,6 @@ for i in $(cat %{SOURCE1000}) ; do done # upstream patches -%patch100 -p0 -b .typo %build for i in $(cat %{SOURCE1000}) ; do @@ -1499,6 +1497,9 @@ rm -rf %{buildroot} %lang(zh_TW) %{_kde4_docdir}/HTML/zh_TW %changelog +* Thu Jul 30 2009 Than Ngo - 4.3.0-1 +- 4.3.0 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 22 Jul 2009 12:37:23 -0000 1.29 +++ sources 30 Jul 2009 11:48:33 -0000 1.30 @@ -1,56 +1,56 @@ -2819b8bb302a606d9591274053399a7f kde-l10n-ar-4.2.98.tar.bz2 -2a0249b76617f5b6eeb1b663b9d6890a kde-l10n-bg-4.2.98.tar.bz2 -24fd2b254aee13423db9fdda7c6d88dc kde-l10n-bn_IN-4.2.98.tar.bz2 -f07b7b278f26d00bc20b5c3a97605284 kde-l10n-ca-4.2.98.tar.bz2 -f84dc6f36605474b4007d876594a3931 kde-l10n-csb-4.2.98.tar.bz2 -4b65b2e8cccd6089e7ae396472d6a8e7 kde-l10n-cs-4.2.98.tar.bz2 -25e35fb559782468b01193edd35a6b76 kde-l10n-da-4.2.98.tar.bz2 -b5826bdfcbfbe8afde393d3510d3c995 kde-l10n-de-4.2.98.tar.bz2 -1f569987bac6d123756cdbebb718d20f kde-l10n-el-4.2.98.tar.bz2 -2586e47645e95ec493f66924fb2083d7 kde-l10n-en_GB-4.2.98.tar.bz2 -bc610ca8ce46e0c0026f09819b6f0f23 kde-l10n-es-4.2.98.tar.bz2 -634bf3f9e5e02ac216c2ef8f4c8b0367 kde-l10n-et-4.2.98.tar.bz2 -d02093591393f8365e96db8202515c84 kde-l10n-eu-4.2.98.tar.bz2 -cd08fafed9f702d3a5a777d88c96fcdb kde-l10n-fi-4.2.98.tar.bz2 -b3cd1311d93194f35cb103167b6427a4 kde-l10n-fr-4.2.98.tar.bz2 -3d6577d23edecc69db1507f8f6f6e47e kde-l10n-ga-4.2.98.tar.bz2 -94dca872232bba462d1b49a40459b060 kde-l10n-gl-4.2.98.tar.bz2 -3eec47a24e6a911cb27e57e7cf40c35c kde-l10n-gu-4.2.98.tar.bz2 -988b3f6ad6f91c6bf3eb878153769395 kde-l10n-he-4.2.98.tar.bz2 -9b262f36d5b0930cbc875ee1aaacff10 kde-l10n-hi-4.2.98.tar.bz2 -05d7a123fb413dadb9d4b3fc3da68b58 kde-l10n-hu-4.2.98.tar.bz2 -3f092a3f99bc6bda6c1c4c476f18a9b5 kde-l10n-is-4.2.98.tar.bz2 -cc1c88b10ac470d10a2d1f813207f88a kde-l10n-it-4.2.98.tar.bz2 -c0664b101d19ef4385aafae09b518b9a kde-l10n-ja-4.2.98.tar.bz2 -a9f6d7b285a7c33680ca2e54e4a37e2c kde-l10n-kk-4.2.98.tar.bz2 -545fb2ec9e770a978aff01ac4dd2ec69 kde-l10n-km-4.2.98.tar.bz2 -3a23c207637f6d1f094df2a3a4f69d4a kde-l10n-kn-4.2.98.tar.bz2 -cf087233f94aab683185ac55553cd600 kde-l10n-ko-4.2.98.tar.bz2 -7a13a65390c8219944e0ecd3d773031f kde-l10n-ku-4.2.98.tar.bz2 -23ee19ebaea4db3099c4ba60ae59003e kde-l10n-lt-4.2.98.tar.bz2 -5c483e849de4b3bfa6c6ddafb48ab9e1 kde-l10n-lv-4.2.98.tar.bz2 -27d534cd1d139e10bb31e513244440c2 kde-l10n-mai-4.2.98.tar.bz2 -3f0c63e53df46513881b896b9fea16d3 kde-l10n-mk-4.2.98.tar.bz2 -e35c92a84212717f66cb854d55236061 kde-l10n-ml-4.2.98.tar.bz2 -d8191850123622861799e9f272ec1020 kde-l10n-mr-4.2.98.tar.bz2 -e280e60232592bf6c46b7e0a7bb1a685 kde-l10n-nb-4.2.98.tar.bz2 -b620b8323312e034066e029e22f62e69 kde-l10n-nds-4.2.98.tar.bz2 -d9d7d84412eaeee43bf0a5f4e0203db2 kde-l10n-nl-4.2.98.tar.bz2 -18325c7a1729b38b5d454f263de69d07 kde-l10n-nn-4.2.98.tar.bz2 -f036632c81bb778e99c16b33075b4b2f kde-l10n-pa-4.2.98.tar.bz2 -1998730d5ba111680c3ef830dde14f30 kde-l10n-pl-4.2.98.tar.bz2 -8a8e65cc99ba4ac5f19bcd2bd67de200 kde-l10n-pt_BR-4.2.98.tar.bz2 -5625a57ca78cecb3df3044bfe66a8361 kde-l10n-pt-4.2.98.tar.bz2 -755e8dce37999313942dc1328074df60 kde-l10n-ro-4.2.98.tar.bz2 -9a7bd38282c477010dd248408db3cd94 kde-l10n-ru-4.2.98.tar.bz2 -0060ef1dc254d693d6ab13af40f38bbd kde-l10n-sk-4.2.98.tar.bz2 -8bbfe9ceccd2bf60d8fc9119ff4eb7c9 kde-l10n-sl-4.2.98.tar.bz2 -b6120af60b7678b12b05215ba80253dc kde-l10n-sr-4.2.98.tar.bz2 -ca4cbdcfc5790a5e094b08917b7fd0d3 kde-l10n-sv-4.2.98.tar.bz2 -ec22e45a2c7125eb842223d11d96931c kde-l10n-tg-4.2.98.tar.bz2 -6f3109bfd4fc6ae8dbdd8096a2526f90 kde-l10n-th-4.2.98.tar.bz2 -34824439eef2f85522c74fb30492e58e kde-l10n-tr-4.2.98.tar.bz2 -466e013a353dfed1f68302a0556e5923 kde-l10n-uk-4.2.98.tar.bz2 -b30bb09a9c7b8198ba8f507b75cb81ae kde-l10n-wa-4.2.98.tar.bz2 -da0fb96dcfd20ffcac4cebbbeb1ffb69 kde-l10n-zh_CN-4.2.98.tar.bz2 -0d2a7ee468112b15c3af3bfdaab0ccb2 kde-l10n-zh_TW-4.2.98.tar.bz2 +97be5e3b2f06b86dcd2a3bdc4a9db55c kde-l10n-ar-4.3.0.tar.bz2 +fb0a71d21cf32e48a28916d365b4cd96 kde-l10n-bg-4.3.0.tar.bz2 +26164201b1d8b6c922385353f2a7aefb kde-l10n-bn_IN-4.3.0.tar.bz2 +1f9e2f387083be475ec995c0e965b1cf kde-l10n-ca-4.3.0.tar.bz2 +f19c3a3bfae24f4caf98a40f6bed7463 kde-l10n-csb-4.3.0.tar.bz2 +8d8ec27742416e134b2990abbd9af14b kde-l10n-cs-4.3.0.tar.bz2 +b81c512af946a1e365c2eada3d82e4e0 kde-l10n-da-4.3.0.tar.bz2 +c7ca5df8998b4ae0977bc706db86d89f kde-l10n-de-4.3.0.tar.bz2 +24b9e6117c254a7eb42bb7ac3ee5956e kde-l10n-el-4.3.0.tar.bz2 +1596bbb2848517bba0cf50854de47e89 kde-l10n-en_GB-4.3.0.tar.bz2 +34dc196b2395e3a3223346cf2dafde5a kde-l10n-es-4.3.0.tar.bz2 +aeb0683e93853f67c50ba2fcd1e4a41c kde-l10n-et-4.3.0.tar.bz2 +f513bfa2c570f733bb36279b06d96136 kde-l10n-eu-4.3.0.tar.bz2 +dc151141386e6e1af9dc2b405dd8a9d9 kde-l10n-fi-4.3.0.tar.bz2 +faa1b6b4d9640c9a45f0e86a5af64091 kde-l10n-fr-4.3.0.tar.bz2 +145deb5a130537b5abd8c75c316f88a5 kde-l10n-ga-4.3.0.tar.bz2 +fde9f9726edf1ba1a32302ea285a1bf5 kde-l10n-gl-4.3.0.tar.bz2 +fdda752dc37f1957662c8c8eb5fb581c kde-l10n-gu-4.3.0.tar.bz2 +f6ca255a2759ac90a1dbef609d0f173e kde-l10n-he-4.3.0.tar.bz2 +ad1bd358a3bf4a515e95607edfdde4c9 kde-l10n-hi-4.3.0.tar.bz2 +ba442f81bc3ed72710e5ea1c44c2949d kde-l10n-hu-4.3.0.tar.bz2 +40e82eea13e31644bf3982ab56595d18 kde-l10n-is-4.3.0.tar.bz2 +7974d9d51286c0bbe3ce9201cea05372 kde-l10n-it-4.3.0.tar.bz2 +e0bc5aecab2dab8a32a7a379c3bda98c kde-l10n-ja-4.3.0.tar.bz2 +c007430e5839c943c27d2c08a3271c01 kde-l10n-kk-4.3.0.tar.bz2 +4cde7eb586388fb3268aecc901c2f297 kde-l10n-km-4.3.0.tar.bz2 +e08b0161309fc03c0178a357f45c38e0 kde-l10n-kn-4.3.0.tar.bz2 +9a10bf30852acd34040c6fa8fcf1bc27 kde-l10n-ko-4.3.0.tar.bz2 +80dbde92c9cc2a3b18ddc8f8e6bf6228 kde-l10n-ku-4.3.0.tar.bz2 +0f7d011ce2e22f92e7e814445cf6ff97 kde-l10n-lt-4.3.0.tar.bz2 +e097c2d2be217ae29cb769504356281c kde-l10n-lv-4.3.0.tar.bz2 +2eda87bfb1490736fc0bd245177b015e kde-l10n-mai-4.3.0.tar.bz2 +853109465d2dc4031f0cd729775cca55 kde-l10n-mk-4.3.0.tar.bz2 +953f5f1d4cbb785cc4d8ef4a488c6661 kde-l10n-ml-4.3.0.tar.bz2 +c8d80300e921f31eca1ab8ea1de85ceb kde-l10n-mr-4.3.0.tar.bz2 +cfe753a7bebfda9f5f6f25399d8dad0c kde-l10n-nb-4.3.0.tar.bz2 +b7b453507e58788503835fec4eddd5a9 kde-l10n-nds-4.3.0.tar.bz2 +9118bfb78b280b0228f4f299420f98ea kde-l10n-nl-4.3.0.tar.bz2 +f6863912c5d4d326097e1f995299dbc1 kde-l10n-nn-4.3.0.tar.bz2 +a533709989a31c15600ddf9a3e3a7301 kde-l10n-pa-4.3.0.tar.bz2 +25fb4028a7bb2000b06363e23efec62d kde-l10n-pl-4.3.0.tar.bz2 +0020f01a730b5511712a89e13a1d4d76 kde-l10n-pt_BR-4.3.0.tar.bz2 +257a995ca6c0adaab8024445dbce848f kde-l10n-pt-4.3.0.tar.bz2 +f29614843f53950f87efe76fdb05d3d1 kde-l10n-ro-4.3.0.tar.bz2 +5bc404cea173009d5a817685ca61bcad kde-l10n-ru-4.3.0.tar.bz2 +24945e807ad3703f546a7f6787cb0345 kde-l10n-sk-4.3.0.tar.bz2 +02117baab6317032245d6ae9f958eb45 kde-l10n-sl-4.3.0.tar.bz2 +26338c314a2a3da58f93e8f606b185c2 kde-l10n-sr-4.3.0.tar.bz2 +7499b0fb6ddbb10c2f2e0fb0e88cb097 kde-l10n-sv-4.3.0.tar.bz2 +539ee71a082043ba788bf6c18a75d7d2 kde-l10n-tg-4.3.0.tar.bz2 +2c5dd52012d3e21eaefde4211bee2d1c kde-l10n-th-4.3.0.tar.bz2 +0d163e01436737a8f4b74d99527997a2 kde-l10n-tr-4.3.0.tar.bz2 +43be454febc2f9ca48b66fd5ce057898 kde-l10n-uk-4.3.0.tar.bz2 +76bc9dbac978806a7cd73a53fdbe8b69 kde-l10n-wa-4.3.0.tar.bz2 +7d0ddb25d6f6e21858b7811bfbd61458 kde-l10n-zh_CN-4.3.0.tar.bz2 +ce2a8abf6d8a43a4823ba2e19ad05649 kde-l10n-zh_TW-4.3.0.tar.bz2 --- kde-l10n-es-4.2.98-typo.patch DELETED --- From pkgdb at fedoraproject.org Thu Jul 30 11:51:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:51:38 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115138.6869B10F89A@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora devel was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From pkgdb at fedoraproject.org Thu Jul 30 11:51:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:51:49 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115149.1C26910F8BB@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora 7 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From pkgdb at fedoraproject.org Thu Jul 30 11:51:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:51:52 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115152.1137210F8C9@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora 8 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From pkgdb at fedoraproject.org Thu Jul 30 11:51:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:51:58 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115158.359E310F8DC@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora 9 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From pkgdb at fedoraproject.org Thu Jul 30 11:52:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:52:00 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115200.CCE2410F89E@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora 10 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From pkgdb at fedoraproject.org Thu Jul 30 11:52:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 11:52:04 +0000 Subject: [pkgdb] glade2 ownership updated Message-ID: <20090730115204.7953610F8FF@bastion2.fedora.phx.redhat.com> Package glade2 in Fedora 11 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glade2 From rhughes at fedoraproject.org Thu Jul 30 11:52:08 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Thu, 30 Jul 2009 11:52:08 +0000 (UTC) Subject: rpms/hal-info/devel hal-info.spec, 1.45, 1.46 30-keymap-olpc.fdi, 1.1, NONE Message-ID: <20090730115208.E0BA411C00D3@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal-info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1666 Modified Files: hal-info.spec Removed Files: 30-keymap-olpc.fdi Log Message: * Thu Jul 30 2009 Richard Hughes - 20090716-3 - Remove 30-keymap-olpc.fdi as it's now shipped in olpc-utils - Fixes #514081 Index: hal-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal-info/devel/hal-info.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- hal-info.spec 25 Jul 2009 01:59:49 -0000 1.45 +++ hal-info.spec 30 Jul 2009 11:52:08 -0000 1.46 @@ -1,15 +1,12 @@ Summary: Device information files for HAL Name: hal-info Version: 20090716 -Release: 2%{?dist} +Release: 3%{?dist} License: AFL or GPLv2 Group: System Environment/Libraries URL: http://www.freedesktop.org/Software/hal Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz -# OLPC specific, not upstream yet, although on HAL mailing list -Source1: 30-keymap-olpc.fdi - BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: hal >= 0.5.10 @@ -29,9 +26,6 @@ known as .fdi files) for the hal package rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# OLPC keys FDI file -install -D -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/hal/fdi/information/10freedesktop/30-keymap-olpc.fdi - %clean rm -rf $RPM_BUILD_ROOT @@ -42,6 +36,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/preprobe/10osvendor/*.fdi %changelog +* Thu Jul 30 2009 Richard Hughes - 20090716-3 +- Remove 30-keymap-olpc.fdi as it's now shipped in olpc-utils +- Fixes #514081 + * Fri Jul 24 2009 Fedora Release Engineering - 20090716-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- 30-keymap-olpc.fdi DELETED --- From pbrobinson at fedoraproject.org Thu Jul 30 11:54:52 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 11:54:52 +0000 (UTC) Subject: rpms/gir-repository/devel gir-gst0.10.24buildfix.patch, NONE, 1.1 gir-repository.spec, 1.7, 1.8 Message-ID: <20090730115452.E65B611C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2632 Modified Files: gir-repository.spec Added Files: gir-gst0.10.24buildfix.patch Log Message: - Add patch to fix build with new gstreamer gir-gst0.10.24buildfix.patch: configure.ac | 18 ++++++++++++++++++ gir/Makefile.am | 39 +++++++++++++++++++++++++-------------- 2 files changed, 43 insertions(+), 14 deletions(-) --- NEW FILE gir-gst0.10.24buildfix.patch --- >From 4e7ddca82ead3ea011637bf8ebd38d985a006972 Mon Sep 17 00:00:00 2001 From: Owen W. Taylor Date: Tue, 28 Jul 2009 16:11:48 +0000 Subject: Conditionally add gstbufferlist.h, gsttaskpool.h gstreamer-0.10.24 adds new header files with definitions needed by other header files; check for them in configure.ac and conditionally add them to the list of GStreamer header files that we scan. http://bugzilla.gnome.org/show_bug.cgi?id=590031 --- diff --git a/configure.ac b/configure.ac index 32b0825..af09164 100644 --- a/configure.ac +++ b/configure.ac @@ -141,6 +141,24 @@ PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.10 >= 0.10.0, have_gstreamer=true, have_gstreamer=false) AM_CONDITIONAL(BUILD_GSTREAMER, $have_gstreamer) +dnl gstbufferlist.h, gsttaskpool.h were added in 0.10.24 (and in +dnl prereleases of that) +have_gstbufferlist_h=false +if $have_gstreamer ; then + save_CPPFLAGS="$CPPFLAGS"; CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS" + AC_CHECK_HEADER(gst/gstbufferlist.h, [have_gstbufferlist_h=true]) + CPPFLAGS="$save_CPPFLAGS" +fi +AM_CONDITIONAL(HAVE_GSTBUFFERLIST_H, $have_gstbufferlist_h) + +have_gsttaskpool_h=false +if $have_gstreamer ; then + save_CPPFLAGS="$CPPFLAGS"; CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS" + AC_CHECK_HEADER(gst/gsttaskpool.h, [have_gsttaskpool_h=true]) + CPPFLAGS="$save_CPPFLAGS" +fi +AM_CONDITIONAL(HAVE_GSTTASKPOOL_H, $have_gsttaskpool_h) + dnl gstreamer PKG_CHECK_MODULES(GSTREAMER_PLUGINS_BASE, gstreamer-plugins-base-0.10 >= 0.10.0, have_gstreamer_plugins_base=true, diff --git a/gir/Makefile.am b/gir/Makefile.am index 64fa086..28389e2 100644 --- a/gir/Makefile.am +++ b/gir/Makefile.am @@ -513,19 +513,8 @@ endif BUILD_GOOCANVAS # GStreamer if BUILD_GSTREAMER GST_INCLUDEDIR=`pkg-config --variable=includedir gstreamer-0.10` -Gst-0.10.gir: $(INTROSPECTION_SCANNER) Gst-custom.c - $(DEBUG) $(INTROSPECTION_SCANNER) -v --namespace Gst --nsversion=0.10 \ - --add-include-path=$(srcdir) --add-include-path=. \ - --include=GObject-2.0 \ - --include=GModule-2.0 \ - --include=libxml2-2.0 \ - --library=gstbase-0.10 \ - --libtool="$(LIBTOOL)" \ - --pkg gobject-2.0 \ - --pkg gstreamer-0.10 \ - --pkg gstreamer-base-0.10 \ - --output $@ \ - Gst-custom.c \ + +GST_HEADER_FILES = \ $(GST_INCLUDEDIR)/gst/gstbin.h \ $(GST_INCLUDEDIR)/gst/gstbuffer.h \ $(GST_INCLUDEDIR)/gst/gstbus.h \ @@ -579,6 +568,29 @@ Gst-0.10.gir: $(INTROSPECTION_SCANNER) Gst-custom.c $(GST_INCLUDEDIR)/gst/gstversion.h \ $(GST_INCLUDEDIR)/gst/gstxml.h \ $(GST_INCLUDEDIR)/gst/base/*.h + +if HAVE_GSTBUFFERLIST_H +GST_HEADER_FILES += $(GST_INCLUDEDIR)/gst/gstbufferlist.h +endif + +if HAVE_GSTTASKPOOL_H +GST_HEADER_FILES += $(GST_INCLUDEDIR)/gst/gsttaskpool.h +endif + +Gst-0.10.gir: $(INTROSPECTION_SCANNER) Gst-custom.c + $(DEBUG) $(INTROSPECTION_SCANNER) -v --namespace Gst --nsversion=0.10 \ + --add-include-path=$(srcdir) --add-include-path=. \ + --include=GObject-2.0 \ + --include=GModule-2.0 \ + --include=libxml2-2.0 \ + --library=gstbase-0.10 \ + --libtool="$(LIBTOOL)" \ + --pkg gobject-2.0 \ + --pkg gstreamer-0.10 \ + --pkg gstreamer-base-0.10 \ + --output $@ \ + Gst-custom.c \ + $(GST_HEADER_FILES) BUILT_GIRSOURCES += Gst-0.10.gir GSTBASE_INCLUDEDIR=`pkg-config --variable=includedir gstreamer-base-0.10` -- cgit v0.8.2 Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gir-repository.spec 30 Jul 2009 11:12:45 -0000 1.7 +++ gir-repository.spec 30 Jul 2009 11:54:52 -0000 1.8 @@ -1,12 +1,13 @@ Name: gir-repository Version: 0.6.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries License: LGPLv2+ URL: http://live.gnome.org/GObjectIntrospection Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 +Patch0: gir-gst0.10.24buildfix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gobject-introspection-devel = %{version} @@ -30,6 +31,13 @@ BuildRequires: unique-devel BuildRequires: vte-devel BuildRequires: WebKit-gtk-devel +# Add these for autoreconf due to gst patch +BuildRequires: intltool +BuildRequires: gettext +BuildRequires: libtool +BuildRequires: automake +BuildRequires: autoconf + %description Introspection system for GNOME libraries; see the gobject-introspection package. @@ -44,8 +52,10 @@ Libraries and headers for gir-repository %prep %setup -q +%patch0 -p1 -b .gst0.10.24buildfix %build +autoreconf %configure make @@ -75,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gir-1.0/*.gir %changelog +* Thu Jul 30 2009 Peter Robinson 0.6.3-5 +- Add patch to fix build with new gstreamer + * Thu Jul 30 2009 Peter Robinson 0.6.3-4 - Further updates, drop clutter as its in the clutter package now From ynemoy at fedoraproject.org Thu Jul 30 11:57:59 2009 From: ynemoy at fedoraproject.org (Yaakov Meir Nemoy) Date: Thu, 30 Jul 2009 11:57:59 +0000 (UTC) Subject: rpms/xmonad/devel xmonad.spec,1.6,1.7 Message-ID: <20090730115759.B0EF811C00D3@cvs1.fedora.phx.redhat.com> Author: ynemoy Update of /cvs/pkgs/rpms/xmonad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3567 Modified Files: xmonad.spec Log Message: rebuild against newer packages from the rebuild Index: xmonad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmonad/devel/xmonad.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xmonad.spec 27 Jul 2009 08:19:32 -0000 1.6 +++ xmonad.spec 30 Jul 2009 11:57:59 -0000 1.7 @@ -8,7 +8,7 @@ Name: xmonad Version: 0.8.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A tiling window manager Group: User Interface/X @@ -172,6 +172,9 @@ fi %changelog +* Thu Jul 30 2009 Yaakov M. Nemoy - 0.8.1-15 +- rebuild against newer packages from the mass rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 0.8.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Thu Jul 30 11:58:50 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 11:58:50 +0000 (UTC) Subject: rpms/perl-Gtk2-ImageView/devel perl-Gtk2-ImageView.spec,1.3,1.4 Message-ID: <20090730115850.320C211C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gtk2-ImageView/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3931 Modified Files: perl-Gtk2-ImageView.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.04-5 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gtk2-ImageView.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-ImageView/devel/perl-Gtk2-ImageView.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gtk2-ImageView.spec 26 Jul 2009 06:21:54 -0000 1.3 +++ perl-Gtk2-ImageView.spec 30 Jul 2009 11:58:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gtk2-ImageView Version: 0.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl bindings to the GtkImageView image viewer widget Group: Development/Libraries @@ -13,6 +13,7 @@ BuildRequires: gtk2-devel BuildRequires: gtkimageview-devel >= 1.6.0 BuildRequires: perl(ExtUtils::Depends), perl(ExtUtils::PkgConfig) BuildRequires: perl(Glib) >= 1.163 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Cairo) >= 1.00 BuildRequires: perl(ExtUtils::Depends) >= 0.2 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 @@ -70,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/Gtk2/ImageView/Install/*.h %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 0.04-5 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 0.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jzeleny at fedoraproject.org Thu Jul 30 12:02:03 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 12:02:03 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.7,1.8 Message-ID: <20090730120203.1020F11C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4958 Modified Files: libhbaapi.spec Log Message: Update of revision number and changelog for build to be complete Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libhbaapi.spec 30 Jul 2009 11:46:21 -0000 1.7 +++ libhbaapi.spec 30 Jul 2009 12:02:02 -0000 1.8 @@ -2,7 +2,7 @@ Name: libhbaapi Version: 2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries @@ -75,8 +75,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jan Zeleny - 2.2-8 +- added libtool to BuildRequires + * Thu Jul 30 2009 Jan Zeleny - 2.2-7 -- added automake to buildrequires +- added automake to BuildRequires * Thu Jul 30 2009 Jan Zeleny - 2.2-6 - rebase of hbaapi_build code From jzeleny at fedoraproject.org Thu Jul 30 12:03:47 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 12:03:47 +0000 (UTC) Subject: rpms/libhbaapi/F-11 libhbaapi.spec,1.2,1.3 Message-ID: <20090730120347.B54C311C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbaapi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5745 Modified Files: libhbaapi.spec Log Message: Added automake and libtool to BuildRequires Index: libhbaapi.spec =================================================================== RCS file: /cvs/extras/rpms/libhbaapi/F-11/libhbaapi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libhbaapi.spec 30 Jul 2009 09:28:53 -0000 1.2 +++ libhbaapi.spec 30 Jul 2009 12:03:47 -0000 1.3 @@ -2,7 +2,7 @@ Name: libhbaapi Version: 2.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries @@ -17,7 +17,7 @@ Source0: http://downloads.sourcef Source1: hbaapi_build_%{buildversion}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# BuildRequires: +BuildRequires: automake libtool # Requires: %description @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jan Zeleny - 2.2-6 +- added automake and libtoll to BuildRequires + * Thu Jul 30 2009 Jan Zeleny - 2.2-5 - rebase of hbaapi_build code From makowski at fedoraproject.org Thu Jul 30 12:06:52 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 12:06:52 +0000 (UTC) Subject: rpms/firebird/EL-5 .cvsignore,1.2,1.3 sources,1.2,1.3 Message-ID: <20090730120652.74FEB11C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6868 Modified Files: .cvsignore sources Log Message: - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 May 2009 09:22:30 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:06:52 -0000 1.3 @@ -1 +1 @@ -Firebird-2.1.2.18118-0.tar.bz2 +Firebird-2.1.3.18185-0.RC2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 09:22:30 -0000 1.2 +++ sources 30 Jul 2009 12:06:52 -0000 1.3 @@ -1 +1 @@ -063b3825a06d328f726b733fd74614b1 Firebird-2.1.2.18118-0.tar.bz2 +a419db70057767b7d6b955436e6e7089 Firebird-2.1.3.18185-0.RC2.tar.bz2 From makowski at fedoraproject.org Thu Jul 30 12:11:16 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 12:11:16 +0000 (UTC) Subject: rpms/firebird/EL-5 firebird.spec,1.5,1.6 Message-ID: <20090730121116.C562D11C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9020 Modified Files: firebird.spec Log Message: * Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- firebird.spec 30 Jul 2009 11:45:22 -0000 1.5 +++ firebird.spec 30 Jul 2009 12:11:16 -0000 1.6 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.3.18185.0 -Release: 0%{?dist} +Release: 1%{?dist} Group: Applications/Databases License: Interbase @@ -523,7 +523,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-0 +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch From hubbitus at fedoraproject.org Thu Jul 30 12:15:39 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Thu, 30 Jul 2009 12:15:39 +0000 (UTC) Subject: rpms/gloox/devel .cvsignore, 1.2, 1.3 gloox.spec, 1.2, 1.3 sources, 1.2, 1.3 gloox-1.0-GCC4.4-missing_includes.patch, 1.1, NONE gloox-1.0-SVNr4003.glibc-private-symbol.patch, 1.1, NONE gloox-1.0-beta-SVNr4003-missed_header.patch, 1.1, NONE Message-ID: <20090730121539.693E911C00D3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/gloox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10519 Modified Files: .cvsignore gloox.spec sources Removed Files: gloox-1.0-GCC4.4-missing_includes.patch gloox-1.0-SVNr4003.glibc-private-symbol.patch gloox-1.0-beta-SVNr4003-missed_header.patch Log Message: - New build due to close several bugs: https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch - Also it is resolve FBFS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gloox/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 25 Apr 2009 17:55:34 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:15:39 -0000 1.3 @@ -1 +1 @@ -gloox-1.0-SVNr4003.tar.bz2 +gloox-1.0-SVNr4029.tar.bz2 Index: gloox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gloox/devel/gloox.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gloox.spec 25 Jul 2009 00:24:39 -0000 1.2 +++ gloox.spec 30 Jul 2009 12:15:39 -0000 1.3 @@ -1,18 +1,17 @@ #% define beta 7 -%define SVN 4003 +%define SVN 4029 Name: gloox Version: 1.0 -Release: 0.6.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} +Release: 0.7.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} Summary: A rock-solid, full-featured Jabber/XMPP client library Group: System Environment/Libraries License: GPLv2 URL: http://camaya.net/gloox #Source0: http://camaya.net/download/%{name}-%{version}%{?beta:-beta%{beta}}.tar.bz2 -# svn co -r4003 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ -# pushd gloox-1.0 && DATE=$( svn info -r4003 | sed -nr '/Last Changed Date/ s/.+: (.+?) \(.+/\1/p' ) && \ -# find -exec touch -c -d"$DATE" {} \; && popd && tar --exclude='.svn' --preserve -cjf gloox-1.0-SVNr4003.tar.bz2 gloox-1.0 +# svn export -r4029 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ +# tar -cjf gloox-1.0-SVNr4029.tar.bz2 gloox-1.0 Source0: %{name}-%{version}%{?beta:-beta%{beta}}%{?SVN:-SVNr%{SVN}}.tar.bz2 #Patch1: gloox-no_ns_get16.patch @@ -28,13 +27,6 @@ BuildRequires: libidn-devel >= 0.5 Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig -# Temporary UGLY HACK for http://bugs.camaya.net/horde/whups/ticket/?id=137 -Patch1: gloox-1.0-SVNr4003.glibc-private-symbol.patch -# http://bugs.camaya.net/horde/whups/ticket/?id=140 -Patch2: gloox-1.0-beta-SVNr4003-missed_header.patch -# GCC 4.4 compatibility http://bugs.camaya.net/horde/whups/ticket/?id=141 -Patch3: gloox-1.0-GCC4.4-missing_includes.patch - %description gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free @@ -52,9 +44,6 @@ developing applications that use %{name} %prep %setup -q -n %{name}-%{version}%{?beta:-beta%{beta}} -%patch1 -p1 -b .private-glibc -%patch2 -p1 -b .missed-header -%patch3 -p1 -b .gcc4.4-missing-includes %build %if 0%{?SVN} @@ -93,6 +82,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 29 2009 Pavel Alexeev - 1.0-0.6.SVNr4029 +- New build due to close several bugs: + https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch + https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch + https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch +- Use "svn export" instead of "svn checkout". + * Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.SVNr4003 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gloox/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Apr 2009 17:55:34 -0000 1.2 +++ sources 30 Jul 2009 12:15:39 -0000 1.3 @@ -1 +1 @@ -f3ea4b0a8fdb44d0ad8715ac8a51001f gloox-1.0-SVNr4003.tar.bz2 +280e5dc6790ff3cb0418c9b309f16aa9 gloox-1.0-SVNr4029.tar.bz2 --- gloox-1.0-GCC4.4-missing_includes.patch DELETED --- --- gloox-1.0-SVNr4003.glibc-private-symbol.patch DELETED --- --- gloox-1.0-beta-SVNr4003-missed_header.patch DELETED --- From mcpierce at fedoraproject.org Thu Jul 30 12:22:03 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Thu, 30 Jul 2009 12:22:03 +0000 (UTC) Subject: rpms/rubygem-activeldap/devel rubygem-activeldap.spec,1.10,1.11 Message-ID: <20090730122203.8950811C00D3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-activeldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12747 Modified Files: rubygem-activeldap.spec Log Message: * Thu Jul 30 2009 Darryl Pierce - 1.1.0-3 - Changed dependency on rubygem-activerecord to be >= 2.3.2. Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/devel/rubygem-activeldap.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- rubygem-activeldap.spec 27 Jul 2009 03:25:38 -0000 1.10 +++ rubygem-activeldap.spec 30 Jul 2009 12:22:03 -0000 1.11 @@ -9,7 +9,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: GPLv2+ URL: http://rubyforge.org/projects/ruby-activeldap/ @@ -17,7 +17,7 @@ Source0: http://gems.rubyforge.or BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems -Requires: rubygem(activerecord) = 2.3.2 +Requires: rubygem(activerecord) >= 2.3.2 Requires: rubygem(locale) = 2.0.4 Requires: rubygem(gettext) = 2.0.4 Requires: rubygem(gettext_activerecord) = 2.0.4 @@ -84,6 +84,9 @@ rm -rf %{buildroot} %lang(ja) %{geminstdir}/data/locale/ja/LC_MESSAGES/active-ldap.mo %changelog +* Thu Jul 30 2009 Darryl Pierce - 1.1.0-3 +- Changed dependency on rubygem-activerecord to be >= 2.3.2. + * Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From than at fedoraproject.org Thu Jul 30 12:23:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 12:23:01 +0000 (UTC) Subject: rpms/kdebase3/F-11 kdebase3.spec,1.82,1.83 Message-ID: <20090730122301.B612C11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase3/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13110 Modified Files: kdebase3.spec Log Message: disable firewire stuff on s390(x) Index: kdebase3.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase3/F-11/kdebase3.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- kdebase3.spec 27 Mar 2009 13:32:22 -0000 1.82 +++ kdebase3.spec 30 Jul 2009 12:23:01 -0000 1.83 @@ -14,7 +14,7 @@ %define _with_samba --with-samba Version: 3.5.10 -Release: 10%{?dist} +Release: 10%{?dist}.1 %if 0%{?fedora} > 8 Name: kdebase3 @@ -372,7 +372,9 @@ export DO_NOT_COMPILE="$DO_NOT_COMPILE k --with-kdm-pam=kdm \ --with-kcp-pam=kcheckpass \ --with-kss-pam=kscreensaver \ +%ifnarch s390 s390x --with-libraw1394 \ +%endif --with-openexr \ --with-samba \ --with-xinerama \ @@ -876,6 +878,9 @@ fi %changelog +* Wed Apr 22 2009 Karsten Hopp 3.5.10-10.1 +- disable firewire stuff on s390(x) + * Fri Mar 26 2009 Rex Dieter - 3.5.10-10 - optimize scriptlets From than at fedoraproject.org Thu Jul 30 12:25:58 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 30 Jul 2009 12:25:58 +0000 (UTC) Subject: rpms/kdebase3/F-11 kdebase3.spec,1.83,1.84 Message-ID: <20090730122558.3EA0C11C00D3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase3/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13968 Modified Files: kdebase3.spec Log Message: disable firewire stuff on s390(x) Index: kdebase3.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase3/F-11/kdebase3.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- kdebase3.spec 30 Jul 2009 12:23:01 -0000 1.83 +++ kdebase3.spec 30 Jul 2009 12:25:58 -0000 1.84 @@ -14,7 +14,7 @@ %define _with_samba --with-samba Version: 3.5.10 -Release: 10%{?dist}.1 +Release: 11%{?dist} %if 0%{?fedora} > 8 Name: kdebase3 @@ -878,7 +878,7 @@ fi %changelog -* Wed Apr 22 2009 Karsten Hopp 3.5.10-10.1 +* Thu Jul 30 2009 Than Ngo - 3.5.10-11 - disable firewire stuff on s390(x) * Fri Mar 26 2009 Rex Dieter - 3.5.10-10 From makowski at fedoraproject.org Thu Jul 30 12:26:03 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 12:26:03 +0000 (UTC) Subject: rpms/firebird/EL-4 .cvsignore, 1.2, 1.3 firebird-fix-initscript.patch, 1.2, 1.3 firebird.spec, 1.4, 1.5 sources, 1.2, 1.3 firebird-2.1.2-doc.patch, 1.1, NONE Message-ID: <20090730122603.DCD9C11C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14036 Modified Files: .cvsignore firebird-fix-initscript.patch firebird.spec sources Removed Files: firebird-2.1.2-doc.patch Log Message: * Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 May 2009 09:17:22 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:26:03 -0000 1.3 @@ -1 +1 @@ -Firebird-2.1.2.18118-0.tar.bz2 +Firebird-2.1.3.18185-0.RC2.tar.bz2 firebird-fix-initscript.patch: firebird.init.d.mandrake.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/firebird-fix-initscript.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird-fix-initscript.patch 11 Jul 2009 16:13:54 -0000 1.2 +++ firebird-fix-initscript.patch 30 Jul 2009 12:26:03 -0000 1.3 @@ -1,52 +1,27 @@ ---- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2008-01-22 12:39:13.000000000 +0100 -+++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.pm 2009-05-03 12:10:31.000000000 +0200 -@@ -19,6 +19,7 @@ - # Optionally run chkconfig to autostart the new service - INSTANCE=default - FIREBIRD=@prefix@ -+name=firebird +--- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2009-07-24 12:16:22.000000000 +0200 ++++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.new 2009-07-28 01:08:16.000000000 +0200 +@@ -1,11 +1,20 @@ + #!/bin/sh - # No changes needed below for multiple instances - FBRunUser=firebird -@@ -37,21 +37,25 @@ - case "$1" in - start) - echo -n "Starting $FULLNAME " -- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser -+ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -+ echo -+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name - echo - ;; - stop) -- echo -n "Stopping $FULLNAME " -- - if [ -f $pidfile ] - then -- kill `cat $pidfile` -+ echo -n "Stopping $FULLNAME: " -+ killproc -p $pidfile $name -+ RETVAL=$? -+ echo -+ else -+ echo -n "$FULLNAME server is stopped" -+ echo - fi - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -- echo -+ [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$name - ;; - status) - if [ -f $pidfile ] -@@ -70,7 +75,7 @@ - RETVAL=$? - ;; - *) -- echo "Usage: firebird {start|stop|status|restart|reload}" -+ echo "Usage: $name {start|stop|status|restart|reload}" - exit 1 - esac +-# chkconfig: 345 20 80 ++# chkconfig: 345 80 20 + # description: Start/Stop firebird database server + # + # This file belongs in /etc/init.d where it will be run + # on system startup and shutdown to start the background + # Firebird database server daemon ++### BEGIN INIT INFO ++# Provides: firebird ++# Required-Start: $local_fs $syslog ++# Required-Stop: ++# Default-Start: 3 4 5 ++# Default-Stop: 0 1 2 6 ++# Short-Description: Firebird server database ++# Description: Starts and stops the Firebird database server backend daemon. ++### END INIT INFO + # Source function library - RedHat or Mandriva specific + # functions actually used: checkpid killproc daemon + + + Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/firebird.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firebird.spec 11 Jul 2009 16:24:23 -0000 1.4 +++ firebird.spec 30 Jul 2009 12:26:03 -0000 1.5 @@ -1,24 +1,25 @@ -%global pkgname Firebird-2.1.2.18118-0 +%global pkgname Firebird-2.1.3.18185-0 %global fbroot %{_libdir}/%{name} -%global major 2.1.2 +%global major 2.1.3 Summary: SQL relational database management system Name: firebird -Version: 2.1.2.18118.0 -Release: 10%{?dist} +Version: 2.1.3.18185.0 +Release: 1%{?dist} Group: Applications/Databases License: Interbase URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot -Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +#Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +Source0: http://firebirdsql.org/downloads/prerelease/source/%{pkgname}.RC2.tar.bz2 Source1: firebird-logrotate Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch -Patch1: firebird-2.1.2-doc.patch +#Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch Patch4: firebird-gcc-icu.patch @@ -128,7 +129,7 @@ Multi-process, local client libraries fo iconv -f ISO-8859-1 -t utf-8 -c ./doc/README.intl -o ./doc/README.intl # backport patch %patch2 -%patch1 +#%patch1 %patch0 %patch3 %patch4 @@ -147,9 +148,14 @@ export CFLAGS='-m32' export LDFLAGS='-m32' %endif +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -172,10 +178,16 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --enable-superserver \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -243,19 +255,21 @@ cd %{buildroot}%{fbroot}/bin-superserver ln -s fbmgr.bin fbmgr cd %{buildroot} +major2=`echo %{major} | sed 's|\.[0-9]*$||'` +major1=`echo ${major2} | sed 's|\.[0-9]*$||'` cd %{buildroot}%{fbroot}/lib/ -ln -s libfbembed.so.%{major} libfbembed.so.2.1 -ln -s libfbembed.so.2.1 libfbembed.so -ln -s libfbclient.so.%{major} libfbclient.so.2 -ln -s libfbclient.so.2 libfbclient.so +ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major2} +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so +ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major1} +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} ln -s %{fbroot}/lib/libfbembed.so libfbembed.so -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so.2.1 +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so.%{major2} ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major} ln -s %{fbroot}/lib/libfbclient.so libfbclient.so -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so.%{major1} ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 ln -s %{fbroot}/lib/libfbclient.so libgds.so @@ -292,7 +306,7 @@ ln -s %{_sysconfdir}/%{name}/fbintl.conf sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} -sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} +#sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run @@ -509,7 +523,13 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 +- Update to 2.1.3.18185 +- Fix rh #514463 +- Remove doc patch +- Apply backport initscript patch + +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 09:17:22 -0000 1.2 +++ sources 30 Jul 2009 12:26:03 -0000 1.3 @@ -1 +1 @@ -063b3825a06d328f726b733fd74614b1 Firebird-2.1.2.18118-0.tar.bz2 +a419db70057767b7d6b955436e6e7089 Firebird-2.1.3.18185-0.RC2.tar.bz2 --- firebird-2.1.2-doc.patch DELETED --- From rrati at fedoraproject.org Thu Jul 30 12:35:58 2009 From: rrati at fedoraproject.org (rrati) Date: Thu, 30 Jul 2009 12:35:58 +0000 (UTC) Subject: rpms/condor-ec2-enhanced-hooks/devel .cvsignore, 1.2, 1.3 condor-ec2-enhanced-hooks.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730123558.BA8A411C00D3@cvs1.fedora.phx.redhat.com> Author: rrati Update of /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17470/devel Modified Files: .cvsignore condor-ec2-enhanced-hooks.spec import.log sources Log Message: Fixed broken dependency Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Jul 2009 15:02:56 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:35:58 -0000 1.3 @@ -1 +1 @@ -condor-ec2-enhanced-hooks-1.0-17.tar.gz +condor-ec2-enhanced-hooks-1.0-18.tar.gz Index: condor-ec2-enhanced-hooks.spec =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/condor-ec2-enhanced-hooks.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- condor-ec2-enhanced-hooks.spec 29 Jul 2009 15:02:56 -0000 1.1 +++ condor-ec2-enhanced-hooks.spec 30 Jul 2009 12:35:58 -0000 1.2 @@ -1,5 +1,5 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define rel 17 +%define rel 18 Summary: Condor EC2 Enhanced hooks Name: condor-ec2-enhanced-hooks @@ -17,7 +17,7 @@ BuildArch: noarch Requires: python >= 2.3 Requires: condor >= 7.2.0-4 Requires: python-condor-job-hooks-common >= 1.0-4 -Requires: python-condor-%{name}-common +Requires: python-%{name}-common Requires: python-boto >= 1.7a Requires: openssl Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Jul 2009 15:02:56 -0000 1.1 +++ import.log 30 Jul 2009 12:35:58 -0000 1.2 @@ -1 +1,2 @@ condor-ec2-enhanced-hooks-1_0-17_fc10:HEAD:condor-ec2-enhanced-hooks-1.0-17.fc10.src.rpm:1248879764 +condor-ec2-enhanced-hooks-1_0-18_fc10:HEAD:condor-ec2-enhanced-hooks-1.0-18.fc10.src.rpm:1248957343 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/condor-ec2-enhanced-hooks/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jul 2009 15:02:56 -0000 1.2 +++ sources 30 Jul 2009 12:35:58 -0000 1.3 @@ -1 +1 @@ -25b14fae11afe0f0c3862677709acd4f condor-ec2-enhanced-hooks-1.0-17.tar.gz +6875713d3f5fb211c6d590088f1ac3cb condor-ec2-enhanced-hooks-1.0-18.tar.gz From mcpierce at fedoraproject.org Thu Jul 30 12:37:00 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Thu, 30 Jul 2009 12:37:00 +0000 (UTC) Subject: rpms/rubygem-activeldap/F-11 rubygem-activeldap.spec,1.9,1.10 Message-ID: <20090730123700.DA30511C00D3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-activeldap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17911 Modified Files: rubygem-activeldap.spec Log Message: * Thu Jul 30 2009 Darryl Pierce - 1.1.0-2 - Changed dependency on rubygem-activerecord to be >= 2.3.2. Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-11/rubygem-activeldap.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-activeldap.spec 20 Jul 2009 15:07:50 -0000 1.9 +++ rubygem-activeldap.spec 30 Jul 2009 12:37:00 -0000 1.10 @@ -9,7 +9,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ URL: http://rubyforge.org/projects/ruby-activeldap/ @@ -17,7 +17,7 @@ Source0: http://gems.rubyforge.or BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems -Requires: rubygem(activerecord) = 2.3.2 +Requires: rubygem(activerecord) >= 2.3.2 Requires: rubygem(locale) = 2.0.4 Requires: rubygem(gettext) = 2.0.4 Requires: rubygem(gettext_activerecord) = 2.0.4 @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Darryl Pierce - 1.1.0-2 +- Changed dependency on rubygem-activerecord to be >= 2.3.2. + * Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 - Release 1.1.0 of ActiveLdap. - Dependency on rubygem-hoe changed to 2.3.2. From limb at fedoraproject.org Thu Jul 30 12:46:29 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 30 Jul 2009 12:46:29 +0000 (UTC) Subject: rpms/gnotime/devel gnotime.spec,1.32,1.33 Message-ID: <20090730124629.A7E4711C00D3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/gnotime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21745 Modified Files: gnotime.spec Log Message: Add libgnomeui-devel BR to fix FTBFS. Index: gnotime.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnotime/devel/gnotime.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gnotime.spec 25 Jul 2009 00:53:35 -0000 1.32 +++ gnotime.spec 30 Jul 2009 12:46:29 -0000 1.33 @@ -1,6 +1,6 @@ Name: gnotime Version: 2.3.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tracks and reports time spent Group: Applications/Productivity @@ -18,6 +18,7 @@ BuildRequires: intltool BuildRequires: desktop-file-utils BuildRequires: qof-devel >= 0.7.2 BuildRequires: libXScrnSaver-devel +BuildRequires: libgnomeui-devel Requires(post): scrollkeeper Requires(postun): scrollkeeper @@ -110,6 +111,9 @@ scrollkeeper-update -q || : %{_sysconfdir}/gconf/schemas/* %changelog +* Thu Jul 30 2009 Jon Ciesla - 2.3.0-5 +- Add libgnomeui-devel BR to fix FTBFS. + * Fri Jul 24 2009 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jzeleny at fedoraproject.org Thu Jul 30 12:46:46 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Thu, 30 Jul 2009 12:46:46 +0000 (UTC) Subject: rpms/libhbalinux/devel .cvsignore, 1.2, 1.3 libhbalinux-1.0.7-conf.patch, 1.1, 1.2 libhbalinux.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730124646.EFE9811C00D3@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/libhbalinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21777 Modified Files: .cvsignore libhbalinux-1.0.7-conf.patch libhbalinux.spec sources Log Message: Rebase of libhbalinux to 1.0.8, adjustments in spec file Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libhbalinux/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Apr 2009 06:47:42 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:46:46 -0000 1.3 @@ -1 +1 @@ -libhbalinux-1.0.7.tar.gz +libhbalinux-1.0.8.tar.gz libhbalinux-1.0.7-conf.patch: Makefile.am | 19 ------------------- 1 file changed, 19 deletions(-) Index: libhbalinux-1.0.7-conf.patch =================================================================== RCS file: /cvs/extras/rpms/libhbalinux/devel/libhbalinux-1.0.7-conf.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libhbalinux-1.0.7-conf.patch 10 Apr 2009 06:44:19 -0000 1.1 +++ libhbalinux-1.0.7-conf.patch 30 Jul 2009 12:46:46 -0000 1.2 @@ -23,31 +23,3 @@ - echo "** system configuration not updated"; \ - fi - ---- libhbalinux-1.0.7/Makefile.in 2009-03-27 21:41:20.000000000 +0100 -+++ libhbalinux-1.0.7/Makefile.in.conf 2009-04-01 17:30:28.000000000 +0200 -@@ -623,25 +623,6 @@ uninstall-am: uninstall-libLTLIBRARIES - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-libLTLIBRARIES - -- --install-data-hook: libhbalinux.la -- . $<; \ -- ORG=org.open-fcoe.libhbalinux; \ -- LIB=${libdir}/$${dlname}; \ -- STR="$$ORG $$LIB"; \ -- CONF=${sysconfdir}/hba.conf; \ -- if test -f $$CONF; then \ -- grep -E -q ^[[:space:]]*$$ORG[[:space:]]+$$LIB $$CONF; \ -- if test $$? -ne 0; then \ -- echo $$STR >> $$CONF; \ -- else \ -- echo "** $$CONF already configured"; \ -- echo "** system configuration not updated"; \ -- fi; \ -- else \ -- echo "** WARNING: $$CONF does not exist"; \ -- echo "** system configuration not updated"; \ -- fi - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: Index: libhbalinux.spec =================================================================== RCS file: /cvs/extras/rpms/libhbalinux/devel/libhbalinux.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libhbalinux.spec 25 Jul 2009 05:53:22 -0000 1.2 +++ libhbalinux.spec 30 Jul 2009 12:46:46 -0000 1.3 @@ -1,16 +1,21 @@ Name: libhbalinux -Version: 1.0.7 -Release: 4%{?dist} +Version: 1.0.8 +Release: 1%{?dist} Summary: FC-HBAAPI implementation using scsi_transport_fc interfaces Group: System Environment/Libraries License: LGPLv2 URL: http://www.open-fcoe.org -Source0: http://www.open-fcoe.org/openfc/downloads/%{name}-%{version}.tar.gz +# This source was cloned from upstream git +# To get the tar package, just run: +# git clone git://open-fcoe.org/openfc/libhbalinux.git && cd libhbalinux +# git archive --prefix=libhbalinux-%{version}/ v%{version} > ../libhbalinux-%{version}.tar +# cd .. && gzip libhbalinux-%{version}.tar +Source0: %{name}-%{version}.tar.gz Patch0: libhbalinux-1.0.7-conf.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libhbaapi-devel libpciaccess-devel +BuildRequires: libhbaapi-devel libpciaccess-devel libtool automake Requires: libhbaapi %description @@ -22,6 +27,7 @@ SNIA HBAAPI vendor library built on top %build +./bootstrap.sh %configure --disable-static make %{?_smp_mflags} @@ -38,6 +44,7 @@ rm -rf $RPM_BUILD_ROOT %post +/sbin/ldconfig ORG=org.open-fcoe.libhbalinux LIB=%{_libdir}/libhbalinux.so.2.0.2 STR="$ORG $LIB" @@ -51,6 +58,7 @@ fi %postun +/sbin/ldconfig ORG=org.open-fcoe.libhbalinux CONF=%{_sysconfdir}/hba.conf if test -f $CONF; then @@ -66,6 +74,9 @@ fi %changelog +* Thu Jul 30 2009 Jan Zeleny - 1.0.8-1 +- rebase of libhbalinux, spec file adjusted to match changes + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/libhbalinux/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 06:47:42 -0000 1.2 +++ sources 30 Jul 2009 12:46:46 -0000 1.3 @@ -1 +1 @@ -d7949947de08b51837760a283da3e030 libhbalinux-1.0.7.tar.gz +b8d61c5dd44392f3120c9c176375a629 libhbalinux-1.0.8.tar.gz From makowski at fedoraproject.org Thu Jul 30 12:49:12 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 12:49:12 +0000 (UTC) Subject: rpms/firebird/F-11 .cvsignore, 1.2, 1.3 firebird-fix-initscript.patch, 1.2, 1.3 firebird.spec, 1.5, 1.6 sources, 1.2, 1.3 firebird-2.1.2-doc.patch, 1.1, NONE Message-ID: <20090730124912.2728B11C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22970 Modified Files: .cvsignore firebird-fix-initscript.patch firebird.spec sources Removed Files: firebird-2.1.2-doc.patch Log Message: * Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 May 2009 09:14:37 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:49:11 -0000 1.3 @@ -1 +1 @@ -Firebird-2.1.2.18118-0.tar.bz2 +Firebird-2.1.3.18185-0.RC2.tar.bz2 firebird-fix-initscript.patch: firebird.init.d.mandrake.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird-fix-initscript.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird-fix-initscript.patch 11 Jul 2009 16:11:42 -0000 1.2 +++ firebird-fix-initscript.patch 30 Jul 2009 12:49:11 -0000 1.3 @@ -1,52 +1,27 @@ ---- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2008-01-22 12:39:13.000000000 +0100 -+++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.pm 2009-05-03 12:10:31.000000000 +0200 -@@ -19,6 +19,7 @@ - # Optionally run chkconfig to autostart the new service - INSTANCE=default - FIREBIRD=@prefix@ -+name=firebird +--- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2009-07-24 12:16:22.000000000 +0200 ++++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.new 2009-07-28 01:08:16.000000000 +0200 +@@ -1,11 +1,20 @@ + #!/bin/sh - # No changes needed below for multiple instances - FBRunUser=firebird -@@ -37,21 +37,25 @@ - case "$1" in - start) - echo -n "Starting $FULLNAME " -- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser -+ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -+ echo -+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name - echo - ;; - stop) -- echo -n "Stopping $FULLNAME " -- - if [ -f $pidfile ] - then -- kill `cat $pidfile` -+ echo -n "Stopping $FULLNAME: " -+ killproc -p $pidfile $name -+ RETVAL=$? -+ echo -+ else -+ echo -n "$FULLNAME server is stopped" -+ echo - fi - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -- echo -+ [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$name - ;; - status) - if [ -f $pidfile ] -@@ -70,7 +75,7 @@ - RETVAL=$? - ;; - *) -- echo "Usage: firebird {start|stop|status|restart|reload}" -+ echo "Usage: $name {start|stop|status|restart|reload}" - exit 1 - esac +-# chkconfig: 345 20 80 ++# chkconfig: 345 80 20 + # description: Start/Stop firebird database server + # + # This file belongs in /etc/init.d where it will be run + # on system startup and shutdown to start the background + # Firebird database server daemon ++### BEGIN INIT INFO ++# Provides: firebird ++# Required-Start: $local_fs $syslog ++# Required-Stop: ++# Default-Start: 3 4 5 ++# Default-Stop: 0 1 2 6 ++# Short-Description: Firebird server database ++# Description: Starts and stops the Firebird database server backend daemon. ++### END INIT INFO + # Source function library - RedHat or Mandriva specific + # functions actually used: checkpid killproc daemon + + + Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- firebird.spec 11 Jul 2009 16:34:10 -0000 1.5 +++ firebird.spec 30 Jul 2009 12:49:11 -0000 1.6 @@ -1,24 +1,25 @@ -%global pkgname Firebird-2.1.2.18118-0 +%global pkgname Firebird-2.1.3.18185-0 %global fbroot %{_libdir}/%{name} -%global major 2.1.2 +%global major 2.1.3 Summary: SQL relational database management system Name: firebird -Version: 2.1.2.18118.0 -Release: 11%{?dist} +Version: 2.1.3.18185.0 +Release: 1%{?dist} Group: Applications/Databases License: Interbase URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot -Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +#Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +Source0: http://firebirdsql.org/downloads/prerelease/source/%{pkgname}.RC2.tar.bz2 Source1: firebird-logrotate Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch -Patch1: firebird-2.1.2-doc.patch +#Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch Patch4: firebird-gcc-icu.patch @@ -128,7 +129,7 @@ Multi-process, local client libraries fo iconv -f ISO-8859-1 -t utf-8 -c ./doc/README.intl -o ./doc/README.intl # backport patch %patch2 -%patch1 +#%patch1 %patch0 %patch3 %patch4 @@ -147,9 +148,14 @@ export CFLAGS='-m32' export LDFLAGS='-m32' %endif +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -172,10 +178,16 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --enable-superserver \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -243,19 +255,21 @@ cd %{buildroot}%{fbroot}/bin-superserver ln -s fbmgr.bin fbmgr cd %{buildroot} +major2=`echo %{major} | sed 's|\.[0-9]*$||'` +major1=`echo ${major2} | sed 's|\.[0-9]*$||'` cd %{buildroot}%{fbroot}/lib/ -ln -s libfbembed.so.%{major} libfbembed.so.2.1 -ln -s libfbembed.so.2.1 libfbembed.so -ln -s libfbclient.so.%{major} libfbclient.so.2 -ln -s libfbclient.so.2 libfbclient.so +ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major2} +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so +ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major1} +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} ln -s %{fbroot}/lib/libfbembed.so libfbembed.so -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so.2.1 +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so.%{major2} ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major} ln -s %{fbroot}/lib/libfbclient.so libfbclient.so -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so.%{major1} ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 ln -s %{fbroot}/lib/libfbclient.so libgds.so @@ -292,7 +306,7 @@ ln -s %{_sysconfdir}/%{name}/fbintl.conf sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} -sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} +#sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run @@ -509,6 +523,12 @@ rm -Rf %{_var}/run/%{name} %changelog +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 +- Update to 2.1.3.18185 +- Fix rh #514463 +- Remove doc patch +- Apply backport initscript patch + * Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 09:14:37 -0000 1.2 +++ sources 30 Jul 2009 12:49:11 -0000 1.3 @@ -1 +1 @@ -063b3825a06d328f726b733fd74614b1 Firebird-2.1.2.18118-0.tar.bz2 +a419db70057767b7d6b955436e6e7089 Firebird-2.1.3.18185-0.RC2.tar.bz2 --- firebird-2.1.2-doc.patch DELETED --- From hubbitus at fedoraproject.org Thu Jul 30 12:51:28 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Thu, 30 Jul 2009 12:51:28 +0000 (UTC) Subject: rpms/gloox/F-10 .cvsignore, 1.2, 1.3 gloox.spec, 1.1, 1.2 sources, 1.2, 1.3 gloox-1.0-GCC4.4-missing_includes.patch, 1.1, NONE gloox-1.0-SVNr4003.glibc-private-symbol.patch, 1.1, NONE gloox-1.0-beta-SVNr4003-missed_header.patch, 1.1, NONE Message-ID: <20090730125128.DADD711C00D3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/gloox/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24038 Modified Files: .cvsignore gloox.spec sources Removed Files: gloox-1.0-GCC4.4-missing_includes.patch gloox-1.0-SVNr4003.glibc-private-symbol.patch gloox-1.0-beta-SVNr4003-missed_header.patch Log Message: - New build due to close several bugs: https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch - Also it is resolve FBFS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 25 Apr 2009 18:44:17 -0000 1.2 +++ .cvsignore 30 Jul 2009 12:51:28 -0000 1.3 @@ -1 +1 @@ -gloox-1.0-SVNr4003.tar.bz2 +gloox-1.0-SVNr4029.tar.bz2 Index: gloox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-10/gloox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gloox.spec 25 Apr 2009 18:44:17 -0000 1.1 +++ gloox.spec 30 Jul 2009 12:51:28 -0000 1.2 @@ -1,18 +1,17 @@ #% define beta 7 -%define SVN 4003 +%define SVN 4029 Name: gloox Version: 1.0 -Release: 0.5.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} +Release: 0.7.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} Summary: A rock-solid, full-featured Jabber/XMPP client library Group: System Environment/Libraries License: GPLv2 URL: http://camaya.net/gloox #Source0: http://camaya.net/download/%{name}-%{version}%{?beta:-beta%{beta}}.tar.bz2 -# svn co -r4003 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ -# pushd gloox-1.0 && DATE=$( svn info -r4003 | sed -nr '/Last Changed Date/ s/.+: (.+?) \(.+/\1/p' ) && \ -# find -exec touch -c -d"$DATE" {} \; && popd && tar --exclude='.svn' --preserve -cjf gloox-1.0-SVNr4003.tar.bz2 gloox-1.0 +# svn export -r4029 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ +# tar -cjf gloox-1.0-SVNr4029.tar.bz2 gloox-1.0 Source0: %{name}-%{version}%{?beta:-beta%{beta}}%{?SVN:-SVNr%{SVN}}.tar.bz2 #Patch1: gloox-no_ns_get16.patch @@ -28,13 +27,6 @@ BuildRequires: libidn-devel >= 0.5 Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig -# Temporary UGLY HACK for http://bugs.camaya.net/horde/whups/ticket/?id=137 -Patch1: gloox-1.0-SVNr4003.glibc-private-symbol.patch -# http://bugs.camaya.net/horde/whups/ticket/?id=140 -Patch2: gloox-1.0-beta-SVNr4003-missed_header.patch -# GCC 4.4 compatibility http://bugs.camaya.net/horde/whups/ticket/?id=141 -Patch3: gloox-1.0-GCC4.4-missing_includes.patch - %description gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free @@ -52,9 +44,6 @@ developing applications that use %{name} %prep %setup -q -n %{name}-%{version}%{?beta:-beta%{beta}} -%patch1 -p1 -b .private-glibc -%patch2 -p1 -b .missed-header -%patch3 -p1 -b .gcc4.4-missing-includes %build %if 0%{?SVN} @@ -93,6 +82,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 29 2009 Pavel Alexeev - 1.0-0.6.SVNr4029 +- New build due to close several bugs: + https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch + https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch + https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch +- Use "svn export" instead of "svn checkout". + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.SVNr4003 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Pavel Alexeev - 1.0-0.5.SVNr4003 - Add --exclude='.svn' to tar pack source and set time to last commit. This may allow pass hash checking soucre later. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Apr 2009 18:44:17 -0000 1.2 +++ sources 30 Jul 2009 12:51:28 -0000 1.3 @@ -1 +1 @@ -f3ea4b0a8fdb44d0ad8715ac8a51001f gloox-1.0-SVNr4003.tar.bz2 +280e5dc6790ff3cb0418c9b309f16aa9 gloox-1.0-SVNr4029.tar.bz2 --- gloox-1.0-GCC4.4-missing_includes.patch DELETED --- --- gloox-1.0-SVNr4003.glibc-private-symbol.patch DELETED --- --- gloox-1.0-beta-SVNr4003-missed_header.patch DELETED --- From rdieter at fedoraproject.org Thu Jul 30 12:52:39 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 12:52:39 +0000 (UTC) Subject: rpms/ghostscript/devel ghostscript.spec,1.188,1.189 Message-ID: <20090730125239.6CEBB11C00D3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/ghostscript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24392 Modified Files: ghostscript.spec Log Message: cvs-only, not built * Thu Jul 30 2009 Rex Dieter - 8.64-10 - License: GPLv2 and Redistributable, no modification permitted (bug #487510) Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/devel/ghostscript.spec,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- ghostscript.spec 25 Jul 2009 00:07:07 -0000 1.188 +++ ghostscript.spec 30 Jul 2009 12:52:39 -0000 1.189 @@ -5,9 +5,11 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 9%{?dist} +Release: 10%{?dist} -License: GPLv2 +# Included CMap data is Redistributable, no modification permitted, +# see http://bugzilla.redhat.com/487510 +License: GPLv2 and Redistributable, no modification permitted URL: http://www.ghostscript.com/ Group: Applications/Publishing Source0: ghostscript-%{gs_ver}.tar.bz2 @@ -310,6 +312,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Thu Jul 30 2009 Rex Dieter - 8.64-10 +- License: GPLv2 and Redistributable, no modification permitted (bug #487510) + * Fri Jul 24 2009 Fedora Release Engineering - 8.64-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Thu Jul 30 13:04:26 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 13:04:26 +0000 (UTC) Subject: rpms/perl-Gnome2-Canvas/devel perl-Gnome2-Canvas.spec,1.8,1.9 Message-ID: <20090730130426.B848911C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gnome2-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28764 Modified Files: perl-Gnome2-Canvas.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.002-12 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gnome2-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Canvas/devel/perl-Gnome2-Canvas.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Gnome2-Canvas.spec 26 Jul 2009 06:17:00 -0000 1.8 +++ perl-Gnome2-Canvas.spec 30 Jul 2009 13:04:26 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Canvas Version: 1.002 -Release: 11%{?dist} +Release: 12%{?dist} Summary: An engine for structured graphics in Gnome2 Group: Development/Libraries @@ -10,7 +10,7 @@ Source0: http://search.cpan.org/C BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::Depends), perl(ExtUtils::PkgConfig) -BuildRequires: perl(Glib), perl(Gtk2) +BuildRequires: perl(Glib), perl(Glib::MakeHelper), perl(Gtk2) BuildRequires: libgnomecanvas-devel >= 2.0.0 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.002-12 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.002-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 30 13:10:19 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 13:10:19 +0000 (UTC) Subject: rpms/aiksaurus/devel aiksaurus.spec,1.18,1.19 Message-ID: <20090730131019.41ABE11C04D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/aiksaurus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31564 Modified Files: aiksaurus.spec Log Message: Add a thesaurus subpackage Index: aiksaurus.spec =================================================================== RCS file: /cvs/pkgs/rpms/aiksaurus/devel/aiksaurus.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- aiksaurus.spec 24 Jul 2009 16:39:31 -0000 1.18 +++ aiksaurus.spec 30 Jul 2009 13:10:19 -0000 1.19 @@ -1,6 +1,6 @@ Name: aiksaurus Version: 1.2.1 -Release: 20%{?dist} +Release: 21%{?dist} Summary: An English-language thesaurus library Epoch: 1 @@ -39,15 +39,14 @@ Includes and definitions for developing %package gtk Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} -Summary: A GTK+ frontend to aiksaurus +Summary: A GTK+ interface for aiksaurus Group: System Environment/Libraries %description gtk -AiksaurusGTK is a GTK+ interface to the Aiksaurus library. +AiksaurusGTK is a GTK+ interface to the Aiksaurus library. It provides an attractive thesaurus interface, and can be embedded -in GTK+ projects, notably AbiWord. A standalone thesaurus program -is also provided. +in GTK+ projects, notably AbiWord. %package gtk-devel @@ -62,6 +61,14 @@ Group: Development/Libraries gtk includes and definitions for developing with aiksaurus. +%package thesaurus +Requires: %{name}-gtk = %{?epoch:%{epoch}:}%{version}-%{release} +Summary: A GTK+ frontend to aiksaurus +Group: Applications/Productivity + +%description thesaurus +A standalone thesaurus program base on aiksaurus-gtk. + %prep %setup -q %patch0 -p1 @@ -96,13 +103,17 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig -%post gtk -/sbin/ldconfig +%post gtk -p /sbin/ldconfig + + +%postun gtk -p /sbin/ldconfig + + +%post thesaurus update-desktop-database &> /dev/null ||: -%postun gtk -/sbin/ldconfig +%postun thesaurus update-desktop-database &> /dev/null ||: @@ -126,10 +137,7 @@ update-desktop-database &> /dev/null ||: %files gtk %defattr(-, root, root) -%{_bindir}/gaiksaurus %{_libdir}/*GTK*.so.* -%{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/pixmaps/%{name}.png %files gtk-devel @@ -139,7 +147,17 @@ update-desktop-database &> /dev/null ||: %{_libdir}/pkgconfig/gaiksaurus-1.0.pc +%files thesaurus +%defattr(-, root, root) +%{_bindir}/gaiksaurus +%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/pixmaps/%{name}.png + + %changelog +* Thu Jul 30 2009 Matthias Clasen - 1:1.2.1-21 +- Split off a thesaurus subpackage + * Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.1-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From nhorman at fedoraproject.org Thu Jul 30 13:13:53 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 30 Jul 2009 13:13:53 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_build_helpers generate_module_list, 1.4, NONE populate_kdump_std_files, 1.3, NONE populate_udev_files, 1.1, NONE Message-ID: <20090730131353.B989311C00D3@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_build_helpers In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv474/kdump_build_helpers Removed Files: generate_module_list populate_kdump_std_files populate_udev_files Log Message: Removing old files --- generate_module_list DELETED --- --- populate_kdump_std_files DELETED --- --- populate_udev_files DELETED --- From nhorman at fedoraproject.org Thu Jul 30 13:13:54 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 30 Jul 2009 13:13:54 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_runtime_helpers assemble_lvm_array, 1.2, NONE load_modules, 1.2, NONE start_udev, 1.2, NONE wait_for_critical_disks, 1.2, NONE Message-ID: <20090730131354.14A3811C00D3@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_runtime_helpers In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv474/kdump_runtime_helpers Removed Files: assemble_lvm_array load_modules start_udev wait_for_critical_disks Log Message: Removing old files --- assemble_lvm_array DELETED --- --- load_modules DELETED --- --- start_udev DELETED --- --- wait_for_critical_disks DELETED --- From hguemar at fedoraproject.org Thu Jul 30 13:14:07 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Thu, 30 Jul 2009 13:14:07 +0000 (UTC) Subject: rpms/opencv/devel opencv.spec,1.35,1.36 Message-ID: <20090730131407.2090011C00D3@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/extras/rpms/opencv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv616 Modified Files: opencv.spec Log Message: fix typo that prevented build on i386/i586 Index: opencv.spec =================================================================== RCS file: /cvs/extras/rpms/opencv/devel/opencv.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- opencv.spec 30 Jul 2009 11:22:15 -0000 1.35 +++ opencv.spec 30 Jul 2009 13:14:06 -0000 1.36 @@ -3,7 +3,7 @@ Name: opencv Version: 1.1.0 -Release: 0.5.pre1%{?dist} +Release: 0.6.pre1%{?dist} Summary: Collection of algorithms for computer vision Group: Development/Libraries @@ -91,7 +91,7 @@ export SWIG_PYTHON_LIBS=%{_libdir} %{!?_without_gstreamer:--with-gstreamer} \ %{?_with_xine:--with-xine --without-quicktime} \ --with-unicap \ - --with-1394libs --without-quicktime + --with-1394libs --without-quicktime \ %ifarch i386 i586 --disable-sse2 \ %endif @@ -162,6 +162,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 30 2009 Ha?kel Gu?mar 1.1.0.0.6.pre1 +- Fix typo I introduced that prevented build on i386/i586 + * Fri Jul 30 2009 Ha?kel Gu?mar 1.1.0.0.5.pre1 - Added 1394libs and unicap support From makowski at fedoraproject.org Thu Jul 30 13:18:28 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 13:18:28 +0000 (UTC) Subject: rpms/firebird/F-10 firebird-fix-initscript.patch, 1.2, 1.3 firebird.spec, 1.4, 1.5 sources, 1.2, 1.3 firebird-2.1.2-doc.patch, 1.1, NONE Message-ID: <20090730131828.9845311C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2121 Modified Files: firebird-fix-initscript.patch firebird.spec sources Removed Files: firebird-2.1.2-doc.patch Log Message: * Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch firebird-fix-initscript.patch: firebird.init.d.mandrake.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/firebird-fix-initscript.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird-fix-initscript.patch 11 Jul 2009 16:07:22 -0000 1.2 +++ firebird-fix-initscript.patch 30 Jul 2009 13:18:28 -0000 1.3 @@ -1,52 +1,27 @@ ---- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2008-01-22 12:39:13.000000000 +0100 -+++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.pm 2009-05-03 12:10:31.000000000 +0200 -@@ -19,6 +19,7 @@ - # Optionally run chkconfig to autostart the new service - INSTANCE=default - FIREBIRD=@prefix@ -+name=firebird +--- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2009-07-24 12:16:22.000000000 +0200 ++++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.new 2009-07-28 01:08:16.000000000 +0200 +@@ -1,11 +1,20 @@ + #!/bin/sh - # No changes needed below for multiple instances - FBRunUser=firebird -@@ -37,21 +37,25 @@ - case "$1" in - start) - echo -n "Starting $FULLNAME " -- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser -+ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -+ echo -+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name - echo - ;; - stop) -- echo -n "Stopping $FULLNAME " -- - if [ -f $pidfile ] - then -- kill `cat $pidfile` -+ echo -n "Stopping $FULLNAME: " -+ killproc -p $pidfile $name -+ RETVAL=$? -+ echo -+ else -+ echo -n "$FULLNAME server is stopped" -+ echo - fi - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -- echo -+ [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$name - ;; - status) - if [ -f $pidfile ] -@@ -70,7 +75,7 @@ - RETVAL=$? - ;; - *) -- echo "Usage: firebird {start|stop|status|restart|reload}" -+ echo "Usage: $name {start|stop|status|restart|reload}" - exit 1 - esac +-# chkconfig: 345 20 80 ++# chkconfig: 345 80 20 + # description: Start/Stop firebird database server + # + # This file belongs in /etc/init.d where it will be run + # on system startup and shutdown to start the background + # Firebird database server daemon ++### BEGIN INIT INFO ++# Provides: firebird ++# Required-Start: $local_fs $syslog ++# Required-Stop: ++# Default-Start: 3 4 5 ++# Default-Stop: 0 1 2 6 ++# Short-Description: Firebird server database ++# Description: Starts and stops the Firebird database server backend daemon. ++### END INIT INFO + # Source function library - RedHat or Mandriva specific + # functions actually used: checkpid killproc daemon + + + Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/firebird.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firebird.spec 11 Jul 2009 16:53:54 -0000 1.4 +++ firebird.spec 30 Jul 2009 13:18:28 -0000 1.5 @@ -1,24 +1,25 @@ -%global pkgname Firebird-2.1.2.18118-0 +%global pkgname Firebird-2.1.3.18185-0 %global fbroot %{_libdir}/%{name} -%global major 2.1.2 +%global major 2.1.3 Summary: SQL relational database management system Name: firebird -Version: 2.1.2.18118.0 -Release: 11%{?dist} +Version: 2.1.3.18185.0 +Release: 1%{?dist} Group: Applications/Databases License: Interbase URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot -Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +#Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +Source0: http://firebirdsql.org/downloads/prerelease/source/%{pkgname}.RC2.tar.bz2 Source1: firebird-logrotate Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch -Patch1: firebird-2.1.2-doc.patch +#Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch Patch4: firebird-gcc-icu.patch @@ -128,7 +129,7 @@ Multi-process, local client libraries fo iconv -f ISO-8859-1 -t utf-8 -c ./doc/README.intl -o ./doc/README.intl # backport patch %patch2 -%patch1 +#%patch1 %patch0 %patch3 %patch4 @@ -147,9 +148,14 @@ export CFLAGS='-m32' export LDFLAGS='-m32' %endif +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -172,10 +178,16 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --enable-superserver \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -243,19 +255,21 @@ cd %{buildroot}%{fbroot}/bin-superserver ln -s fbmgr.bin fbmgr cd %{buildroot} +major2=`echo %{major} | sed 's|\.[0-9]*$||'` +major1=`echo ${major2} | sed 's|\.[0-9]*$||'` cd %{buildroot}%{fbroot}/lib/ -ln -s libfbembed.so.%{major} libfbembed.so.2.1 -ln -s libfbembed.so.2.1 libfbembed.so -ln -s libfbclient.so.%{major} libfbclient.so.2 -ln -s libfbclient.so.2 libfbclient.so +ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major2} +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so +ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major1} +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} ln -s %{fbroot}/lib/libfbembed.so libfbembed.so -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so.2.1 +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so.%{major2} ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major} ln -s %{fbroot}/lib/libfbclient.so libfbclient.so -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so.%{major1} ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 ln -s %{fbroot}/lib/libfbclient.so libgds.so @@ -292,7 +306,7 @@ ln -s %{_sysconfdir}/%{name}/fbintl.conf sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} -sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} +#sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run @@ -509,6 +523,12 @@ rm -Rf %{_var}/run/%{name} %changelog +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 +- Update to 2.1.3.18185 +- Fix rh #514463 +- Remove doc patch +- Apply backport initscript patch + * Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 09:11:03 -0000 1.2 +++ sources 30 Jul 2009 13:18:28 -0000 1.3 @@ -1 +1 @@ -063b3825a06d328f726b733fd74614b1 Firebird-2.1.2.18118-0.tar.bz2 +a419db70057767b7d6b955436e6e7089 Firebird-2.1.3.18185-0.RC2.tar.bz2 --- firebird-2.1.2-doc.patch DELETED --- From hadess at fedoraproject.org Thu Jul 30 13:18:45 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 30 Jul 2009 13:18:45 +0000 (UTC) Subject: rpms/gnome-games/devel 0001-Require-stable-versions-of-clutter-and-clutter-gtk.patch, NONE, 1.1 gnome-games.spec, 1.221, 1.222 Message-ID: <20090730131845.101A911C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2290 Modified Files: gnome-games.spec Added Files: 0001-Require-stable-versions-of-clutter-and-clutter-gtk.patch Log Message: Add patch to fix build with clutter 1.0 0001-Require-stable-versions-of-clutter-and-clutter-gtk.patch: configure.in | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) --- NEW FILE 0001-Require-stable-versions-of-clutter-and-clutter-gtk.patch --- >From 152a29c7d25ff84ab363ccb2b176b565930b1a7d Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 30 Jul 2009 14:15:54 +0100 Subject: [PATCH] Require stable versions of clutter and clutter-gtk The previous code made assumptions that the clutter and clutter-gtk API versions would be the same, that's not true. --- configure.in | 20 ++++---------------- 1 files changed, 4 insertions(+), 16 deletions(-) diff --git a/configure.in b/configure.in index 04888be..ab87d19 100644 --- a/configure.in +++ b/configure.in @@ -642,28 +642,16 @@ AM_CONDITIONAL([HAVE_RSVG],[test "$have_rsvg" = "yes"]) # Check for Clutter if test "$need_clutter" = "yes"; then - CLUTTER_API_VERSION= - AC_MSG_CHECKING([for clutter API version]) - for API_VERSION in 0.9; do - PKG_CHECK_EXISTS([clutter-$API_VERSION clutter-gtk-$API_VERSION], - [CLUTTER_API_VERSION=$API_VERSION; break],[]) - done - if test -z "$CLUTTER_API_VERSION"; then - AC_MSG_ERROR([no clutter found]) - fi - AC_MSG_RESULT([$CLUTTER_API_VERSION]) - AC_SUBST([CLUTTER_API_VERSION]) - - CLUTTER_REQUIRED=0.9.6 - CLUTTER_GTK_REQUIRED=0.9.2 + CLUTTER_REQUIRED=1.0.0 + CLUTTER_GTK_REQUIRED=0.10.2 PKG_CHECK_MODULES([CLUTTER],[ - clutter-$CLUTTER_API_VERSION >= $CLUTTER_REQUIRED]) + clutter-1.0 >= $CLUTTER_REQUIRED]) AC_SUBST([CLUTTER_CFLAGS]) AC_SUBST([CLUTTER_LIBS]) PKG_CHECK_MODULES([CLUTTER_GTK],[ - clutter-gtk-$CLUTTER_API_VERSION >= $CLUTTER_GTK_REQUIRED]) + clutter-gtk-0.10 >= $CLUTTER_GTK_REQUIRED]) AC_SUBST([CLUTTER_GTK_CFLAGS]) AC_SUBST([CLUTTER_GTK_LIBS]) fi -- 1.6.2.5 Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.221 retrieving revision 1.222 diff -u -p -r1.221 -r1.222 --- gnome-games.spec 30 Jul 2009 10:12:34 -0000 1.221 +++ gnome-games.spec 30 Jul 2009 13:18:44 -0000 1.222 @@ -52,6 +52,8 @@ Source: http://download.gnome.org/source # http://bugzilla.gnome.org/show_bug.cgi?id=551455 Patch0: ggz-api-changes.patch Patch1: gnome-games-2.19.4-gnometris-rebrand.patch +# http://git.gnome.org/cgit/gnome-games/commit/?id=152a29c7d25ff84ab363ccb2b176b565930b1a7d +Patch2: 0001-Require-stable-versions-of-clutter-and-clutter-gtk.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Obsoletes: gnome-games-devel @@ -135,6 +137,8 @@ sed -i -e 's/Gnometris/GnomeFallingBlock #cp -f gnometris/sounds/gameover.wav gnobots2/bad.wav #cp -f gnometris/sounds/gameover.wav gnibbles/sounds/pop.wav +%patch2 -p1 -b .clutter + %build autoconf From makowski at fedoraproject.org Thu Jul 30 13:24:01 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Thu, 30 Jul 2009 13:24:01 +0000 (UTC) Subject: rpms/firebird/devel .cvsignore, 1.2, 1.3 firebird-fix-initscript.patch, 1.2, 1.3 firebird.spec, 1.5, 1.6 sources, 1.2, 1.3 firebird-2.1.2-doc.patch, 1.1, NONE Message-ID: <20090730132401.B6CE211C00D3@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4325 Modified Files: .cvsignore firebird-fix-initscript.patch firebird.spec sources Removed Files: firebird-2.1.2-doc.patch Log Message: * Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 - Update to 2.1.3.18185 - Fix rh #514463 - Remove doc patch - Apply backport initscript patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 May 2009 09:03:44 -0000 1.2 +++ .cvsignore 30 Jul 2009 13:24:01 -0000 1.3 @@ -1 +1 @@ -Firebird-2.1.2.18118-0.tar.bz2 +Firebird-2.1.3.18185-0.RC2.tar.bz2 firebird-fix-initscript.patch: firebird.init.d.mandrake.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/firebird-fix-initscript.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird-fix-initscript.patch 11 Jul 2009 16:02:06 -0000 1.2 +++ firebird-fix-initscript.patch 30 Jul 2009 13:24:01 -0000 1.3 @@ -1,52 +1,27 @@ ---- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2008-01-22 12:39:13.000000000 +0100 -+++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.pm 2009-05-03 12:10:31.000000000 +0200 -@@ -19,6 +19,7 @@ - # Optionally run chkconfig to autostart the new service - INSTANCE=default - FIREBIRD=@prefix@ -+name=firebird +--- builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in 2009-07-24 12:16:22.000000000 +0200 ++++ builds/install/arch-specific/linux/misc/firebird.init.d.mandrake.in.new 2009-07-28 01:08:16.000000000 +0200 +@@ -1,11 +1,20 @@ + #!/bin/sh - # No changes needed below for multiple instances - FBRunUser=firebird -@@ -37,21 +37,25 @@ - case "$1" in - start) - echo -n "Starting $FULLNAME " -- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser -+ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -+ echo -+ [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name - echo - ;; - stop) -- echo -n "Stopping $FULLNAME " -- - if [ -f $pidfile ] - then -- kill `cat $pidfile` -+ echo -n "Stopping $FULLNAME: " -+ killproc -p $pidfile $name -+ RETVAL=$? -+ echo -+ else -+ echo -n "$FULLNAME server is stopped" -+ echo - fi - RETVAL=$? -- [ $RETVAL -eq 0 ] && success || failure -- echo -+ [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$name - ;; - status) - if [ -f $pidfile ] -@@ -70,7 +75,7 @@ - RETVAL=$? - ;; - *) -- echo "Usage: firebird {start|stop|status|restart|reload}" -+ echo "Usage: $name {start|stop|status|restart|reload}" - exit 1 - esac +-# chkconfig: 345 20 80 ++# chkconfig: 345 80 20 + # description: Start/Stop firebird database server + # + # This file belongs in /etc/init.d where it will be run + # on system startup and shutdown to start the background + # Firebird database server daemon ++### BEGIN INIT INFO ++# Provides: firebird ++# Required-Start: $local_fs $syslog ++# Required-Stop: ++# Default-Start: 3 4 5 ++# Default-Stop: 0 1 2 6 ++# Short-Description: Firebird server database ++# Description: Starts and stops the Firebird database server backend daemon. ++### END INIT INFO + # Source function library - RedHat or Mandriva specific + # functions actually used: checkpid killproc daemon + + + Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/firebird.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- firebird.spec 24 Jul 2009 22:48:20 -0000 1.5 +++ firebird.spec 30 Jul 2009 13:24:01 -0000 1.6 @@ -1,24 +1,25 @@ -%global pkgname Firebird-2.1.2.18118-0 +%global pkgname Firebird-2.1.3.18185-0 %global fbroot %{_libdir}/%{name} -%global major 2.1.2 +%global major 2.1.3 Summary: SQL relational database management system Name: firebird -Version: 2.1.2.18118.0 -Release: 10%{?dist} +Version: 2.1.3.18185.0 +Release: 1%{?dist} Group: Applications/Databases License: Interbase URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot -Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +#Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 +Source0: http://firebirdsql.org/downloads/prerelease/source/%{pkgname}.RC2.tar.bz2 Source1: firebird-logrotate Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch -Patch1: firebird-2.1.2-doc.patch +#Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch Patch4: firebird-gcc-icu.patch @@ -128,7 +129,7 @@ Multi-process, local client libraries fo iconv -f ISO-8859-1 -t utf-8 -c ./doc/README.intl -o ./doc/README.intl # backport patch %patch2 -%patch1 +#%patch1 %patch0 %patch3 %patch4 @@ -147,9 +148,14 @@ export CFLAGS='-m32' export LDFLAGS='-m32' %endif +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -172,10 +178,16 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver +%ifarch ppc64 autoreconf -vfi %configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%else +./autogen.sh --prefix=%{fbroot} \ + --enable-superserver \ + --with-system-icu +%endif %ifarch sparc64 sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform @@ -243,19 +255,21 @@ cd %{buildroot}%{fbroot}/bin-superserver ln -s fbmgr.bin fbmgr cd %{buildroot} +major2=`echo %{major} | sed 's|\.[0-9]*$||'` +major1=`echo ${major2} | sed 's|\.[0-9]*$||'` cd %{buildroot}%{fbroot}/lib/ -ln -s libfbembed.so.%{major} libfbembed.so.2.1 -ln -s libfbembed.so.2.1 libfbembed.so -ln -s libfbclient.so.%{major} libfbclient.so.2 -ln -s libfbclient.so.2 libfbclient.so +ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major2} +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so +ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major1} +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} ln -s %{fbroot}/lib/libfbembed.so libfbembed.so -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so.2.1 +ln -s %{fbroot}/lib/libfbembed.so.%{major2} libfbembed.so.%{major2} ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.%{major} ln -s %{fbroot}/lib/libfbclient.so libfbclient.so -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 +ln -s %{fbroot}/lib/libfbclient.so.%{major1} libfbclient.so.%{major1} ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 ln -s %{fbroot}/lib/libfbclient.so libgds.so @@ -292,7 +306,7 @@ ln -s %{_sysconfdir}/%{name}/fbintl.conf sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} -sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} +#sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run @@ -509,10 +523,13 @@ rm -Rf %{_var}/run/%{name} %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2.18118.0-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Thu Jul 30 2009 Philippe Makowski 2.1.3.18185.0-1 +- Update to 2.1.3.18185 +- Fix rh #514463 +- Remove doc patch +- Apply backport initscript patch -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 09:03:44 -0000 1.2 +++ sources 30 Jul 2009 13:24:01 -0000 1.3 @@ -1 +1 @@ -063b3825a06d328f726b733fd74614b1 Firebird-2.1.2.18118-0.tar.bz2 +a419db70057767b7d6b955436e6e7089 Firebird-2.1.3.18185-0.RC2.tar.bz2 --- firebird-2.1.2-doc.patch DELETED --- From twaugh at fedoraproject.org Thu Jul 30 13:28:51 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 13:28:51 +0000 (UTC) Subject: rpms/ghostscript/F-11 ghostscript.spec,1.189,1.190 Message-ID: <20090730132851.2E25411C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5965 Modified Files: ghostscript.spec Log Message: * Thu Jul 30 2009 Rex Dieter - 8.64-10 - License: GPLv2 and Redistributable, no modification permitted (bug #487510) Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-11/ghostscript.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- ghostscript.spec 3 Jul 2009 15:55:35 -0000 1.189 +++ ghostscript.spec 30 Jul 2009 13:28:50 -0000 1.190 @@ -7,7 +7,9 @@ Version: %{gs_ver} Release: 10%{?dist} -License: GPLv2 +# Included CMap data is Redistributable, no modification permitted, +# see http://bugzilla.redhat.com/487510 +License: GPLv2 and Redistributable, no modification permitted URL: http://www.ghostscript.com/ Group: Applications/Publishing Source0: ghostscript-%{gs_ver}.tar.bz2 @@ -310,17 +312,17 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog -* Fri Jul 3 2009 Tim Waugh 8.64-10 -- Re-enabled optimization. +* Thu Jul 30 2009 Rex Dieter - 8.64-10 +- License: GPLv2 and Redistributable, no modification permitted (bug #487510) -* Fri Jul 3 2009 Tim Waugh 8.64-9 -- Disabled optimization to aid investigation of bug #509329. +* Fri Jul 24 2009 Fedora Release Engineering - 8.64-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Jun 10 2009 Tim Waugh 8.64-8 - Fix scripts so they don't get broken on install (bug #502550). * Thu Jun 4 2009 Tim Waugh 8.64-7 -- Applied patch to fix NULL dereference in JBIG2 decoder (bug #503992). +- Applied patch to fix NULL dereference in JBIG2 decoder (bug #503995). * Wed Apr 15 2009 Tim Waugh 8.64-6 - Applied patch to fix CVE-2009-0792 (bug #491853). From jcollie at fedoraproject.org Thu Jul 30 13:29:33 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Thu, 30 Jul 2009 13:29:33 +0000 (UTC) Subject: rpms/python-paramiko/F-11 .cvsignore, 1.11, 1.12 python-paramiko.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090730132933.5145011C00D3@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/python-paramiko/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6243 Modified Files: .cvsignore python-paramiko.spec sources Log Message: * Thu Jul 23 2009 Jeffrey C. Ollie - 1.7.5-1 - v1.7.5 (Ernest) 19jul09 - ----------------------- - * added support for ARC4 cipher and CTR block chaining (Denis Bernard) - * made transport threads daemonize, to fix python 2.6 atexit behavior - * support unicode hostnames, and IP6 addresses (Maxime Ripard, Shikhar - Bhushan) - * various small bug fixes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 7 Jul 2008 11:45:49 -0000 1.11 +++ .cvsignore 30 Jul 2009 13:29:33 -0000 1.12 @@ -1 +1 @@ -paramiko-1.7.4.tar.gz +paramiko-1.7.5.tar.gz Index: python-paramiko.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/F-11/python-paramiko.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- python-paramiko.spec 26 Feb 2009 22:43:29 -0000 1.19 +++ python-paramiko.spec 30 Jul 2009 13:29:33 -0000 1.20 @@ -3,8 +3,8 @@ %define srcname paramiko Name: python-paramiko -Version: 1.7.4 -Release: 5%{?dist} +Version: 1.7.5 +Release: 1%{?dist} Summary: A SSH2 protocol library for python Group: Development/Libraries @@ -55,6 +55,15 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Thu Jul 23 2009 Jeffrey C. Ollie - 1.7.5-1 +- v1.7.5 (Ernest) 19jul09 +- ----------------------- +- * added support for ARC4 cipher and CTR block chaining (Denis Bernard) +- * made transport threads daemonize, to fix python 2.6 atexit behavior +- * support unicode hostnames, and IP6 addresses (Maxime Ripard, Shikhar +- Bhushan) +- * various small bug fixes + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 7 Jul 2008 11:45:49 -0000 1.11 +++ sources 30 Jul 2009 13:29:33 -0000 1.12 @@ -1 +1 @@ -6ae82f2eb30748be789d4ff3909e4b5e paramiko-1.7.4.tar.gz +7eac2199bea086cc22966eb223c64e7f paramiko-1.7.5.tar.gz From twaugh at fedoraproject.org Thu Jul 30 13:33:24 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 13:33:24 +0000 (UTC) Subject: rpms/ghostscript/F-11 ghostscript-CVE-2009-0583, 0584.patch, 1.1, 1.2 ghostscript.spec, 1.190, 1.191 Message-ID: <20090730133324.4318511C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7774 Modified Files: ghostscript-CVE-2009-0583,0584.patch ghostscript.spec Log Message: * Thu Jul 30 2009 Tim Waugh 8.64-11 - Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of points, not 100, and by not treating a missing black point tag as an error (bug #487744). ***** Not enough context to create diffstat for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 ***** Not enough context to create diff for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-11/ghostscript.spec,v retrieving revision 1.190 retrieving revision 1.191 diff -u -p -r1.190 -r1.191 --- ghostscript.spec 30 Jul 2009 13:28:50 -0000 1.190 +++ ghostscript.spec 30 Jul 2009 13:33:24 -0000 1.191 @@ -5,7 +5,7 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 10%{?dist} +Release: 11%{?dist} # Included CMap data is Redistributable, no modification permitted, # see http://bugzilla.redhat.com/487510 @@ -312,6 +312,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Thu Jul 30 2009 Tim Waugh 8.64-11 +- Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of + points, not 100, and by not treating a missing black point tag as an + error (bug #487744). + * Thu Jul 30 2009 Rex Dieter - 8.64-10 - License: GPLv2 and Redistributable, no modification permitted (bug #487510) From schwab at fedoraproject.org Thu Jul 30 13:39:13 2009 From: schwab at fedoraproject.org (schwab) Date: Thu, 30 Jul 2009 13:39:13 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.277, 1.278 glibc-fedora.patch, 1.311, 1.312 glibc.spec, 1.404, 1.405 import.log, 1.20, 1.21 sources, 1.302, 1.303 Message-ID: <20090730133913.8902111C00D3@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10083/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.277 retrieving revision 1.278 diff -u -p -r1.277 -r1.278 --- .cvsignore 28 Jul 2009 09:34:51 -0000 1.277 +++ .cvsignore 30 Jul 2009 13:39:12 -0000 1.278 @@ -1,2 +1,2 @@ -glibc-2.10-221-ge73e694-fedora.tar.bz2 -glibc-2.10-221-ge73e694.tar.bz2 +glibc-2.10-229-g78c4ef4-fedora.tar.bz2 +glibc-2.10-229-g78c4ef4.tar.bz2 glibc-fedora.patch: ChangeLog | 35 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 59 files changed, 787 insertions(+), 467 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.311 retrieving revision 1.312 diff -u -p -r1.311 -r1.312 --- glibc-fedora.patch 28 Jul 2009 09:34:51 -0000 1.311 +++ glibc-fedora.patch 30 Jul 2009 13:39:12 -0000 1.312 @@ -1,6 +1,6 @@ ---- glibc-2.10-221-ge73e694/ChangeLog -+++ glibc-2.10.90-9/ChangeLog -@@ -150,6 +150,11 @@ +--- glibc-2.10-229-g78c4ef4/ChangeLog ++++ glibc-2.10.90-11/ChangeLog +@@ -196,6 +196,11 @@ * sysdeps/generic/ldsodefs.h (struct rtld_global): The map element in the unique symbol hash table should not be const. @@ -12,7 +12,7 @@ 2009-07-21 Ulrich Drepper * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups. Remove -@@ -415,6 +420,16 @@ +@@ -461,6 +466,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -29,7 +29,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8813,6 +8828,13 @@ +@@ -8859,6 +8874,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -43,7 +43,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -9108,6 +9130,10 @@ +@@ -9154,6 +9176,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -54,7 +54,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -10365,6 +10391,15 @@ +@@ -10411,6 +10437,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -70,8 +70,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-221-ge73e694/ChangeLog.15 -+++ glibc-2.10.90-9/ChangeLog.15 +--- glibc-2.10-229-g78c4ef4/ChangeLog.15 ++++ glibc-2.10.90-11/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -137,8 +137,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-221-ge73e694/ChangeLog.16 -+++ glibc-2.10.90-9/ChangeLog.16 +--- glibc-2.10-229-g78c4ef4/ChangeLog.16 ++++ glibc-2.10.90-11/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -310,8 +310,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-221-ge73e694/Makeconfig -+++ glibc-2.10.90-9/Makeconfig +--- glibc-2.10-229-g78c4ef4/Makeconfig ++++ glibc-2.10.90-11/Makeconfig @@ -780,12 +780,12 @@ endif # The assembler can generate debug information too. ifndef ASFLAGS @@ -328,8 +328,8 @@ ifndef BUILD_CC BUILD_CC = $(CC) ---- glibc-2.10-221-ge73e694/csu/Makefile -+++ glibc-2.10.90-9/csu/Makefile +--- glibc-2.10-229-g78c4ef4/csu/Makefile ++++ glibc-2.10.90-11/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -340,8 +340,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-221-ge73e694/csu/elf-init.c -+++ glibc-2.10.90-9/csu/elf-init.c +--- glibc-2.10-229-g78c4ef4/csu/elf-init.c ++++ glibc-2.10.90-11/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -366,8 +366,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-221-ge73e694/debug/tst-chk1.c -+++ glibc-2.10.90-9/debug/tst-chk1.c +--- glibc-2.10-229-g78c4ef4/debug/tst-chk1.c ++++ glibc-2.10.90-11/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -396,8 +396,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-221-ge73e694/elf/ldconfig.c -+++ glibc-2.10.90-9/elf/ldconfig.c +--- glibc-2.10-229-g78c4ef4/elf/ldconfig.c ++++ glibc-2.10.90-11/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -479,8 +479,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-221-ge73e694/elf/tst-stackguard1.c -+++ glibc-2.10.90-9/elf/tst-stackguard1.c +--- glibc-2.10-229-g78c4ef4/elf/tst-stackguard1.c ++++ glibc-2.10.90-11/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -505,16 +505,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-221-ge73e694/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-9/include/bits/stdlib-ldbl.h +--- glibc-2.10-229-g78c4ef4/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-11/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-221-ge73e694/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-9/include/bits/wchar-ldbl.h +--- glibc-2.10-229-g78c4ef4/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-11/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-221-ge73e694/include/features.h -+++ glibc-2.10.90-9/include/features.h +--- glibc-2.10-229-g78c4ef4/include/features.h ++++ glibc-2.10.90-11/include/features.h @@ -299,8 +299,13 @@ #endif @@ -531,8 +531,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-221-ge73e694/intl/locale.alias -+++ glibc-2.10.90-9/intl/locale.alias +--- glibc-2.10-229-g78c4ef4/intl/locale.alias ++++ glibc-2.10.90-11/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -542,8 +542,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-221-ge73e694/libio/stdio.h -+++ glibc-2.10.90-9/libio/stdio.h +--- glibc-2.10-229-g78c4ef4/libio/stdio.h ++++ glibc-2.10.90-11/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -557,8 +557,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-221-ge73e694/locale/iso-4217.def -+++ glibc-2.10.90-9/locale/iso-4217.def +--- glibc-2.10-229-g78c4ef4/locale/iso-4217.def ++++ glibc-2.10.90-11/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -650,8 +650,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-221-ge73e694/locale/programs/locarchive.c -+++ glibc-2.10.90-9/locale/programs/locarchive.c +--- glibc-2.10-229-g78c4ef4/locale/programs/locarchive.c ++++ glibc-2.10.90-11/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -683,8 +683,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-221-ge73e694/localedata/Makefile -+++ glibc-2.10.90-9/localedata/Makefile +--- glibc-2.10-229-g78c4ef4/localedata/Makefile ++++ glibc-2.10.90-11/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -693,8 +693,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-221-ge73e694/localedata/SUPPORTED -+++ glibc-2.10.90-9/localedata/SUPPORTED +--- glibc-2.10-229-g78c4ef4/localedata/SUPPORTED ++++ glibc-2.10.90-11/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -736,8 +736,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-221-ge73e694/localedata/locales/cy_GB -+++ glibc-2.10.90-9/localedata/locales/cy_GB +--- glibc-2.10-229-g78c4ef4/localedata/locales/cy_GB ++++ glibc-2.10.90-11/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -752,8 +752,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-221-ge73e694/localedata/locales/en_GB -+++ glibc-2.10.90-9/localedata/locales/en_GB +--- glibc-2.10-229-g78c4ef4/localedata/locales/en_GB ++++ glibc-2.10.90-11/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -765,8 +765,8 @@ date_fmt "/ / " ---- glibc-2.10-221-ge73e694/localedata/locales/no_NO -+++ glibc-2.10.90-9/localedata/locales/no_NO +--- glibc-2.10-229-g78c4ef4/localedata/locales/no_NO ++++ glibc-2.10.90-11/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -837,8 +837,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-221-ge73e694/localedata/locales/zh_TW -+++ glibc-2.10.90-9/localedata/locales/zh_TW +--- glibc-2.10-229-g78c4ef4/localedata/locales/zh_TW ++++ glibc-2.10.90-11/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -866,8 +866,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-221-ge73e694/malloc/mcheck.c -+++ glibc-2.10.90-9/malloc/mcheck.c +--- glibc-2.10-229-g78c4ef4/malloc/mcheck.c ++++ glibc-2.10.90-11/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -943,8 +943,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-221-ge73e694/manual/libc.texinfo -+++ glibc-2.10.90-9/manual/libc.texinfo +--- glibc-2.10-229-g78c4ef4/manual/libc.texinfo ++++ glibc-2.10.90-11/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -954,8 +954,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-221-ge73e694/misc/sys/cdefs.h -+++ glibc-2.10.90-9/misc/sys/cdefs.h +--- glibc-2.10-229-g78c4ef4/misc/sys/cdefs.h ++++ glibc-2.10.90-11/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -999,17 +999,17 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-221-ge73e694/nis/nss -+++ glibc-2.10.90-9/nis/nss +--- glibc-2.10-229-g78c4ef4/nis/nss ++++ glibc-2.10.90-11/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-221-ge73e694/nptl/ChangeLog -+++ glibc-2.10.90-9/nptl/ChangeLog -@@ -3603,6 +3603,15 @@ +--- glibc-2.10-229-g78c4ef4/nptl/ChangeLog ++++ glibc-2.10.90-11/nptl/ChangeLog +@@ -3632,6 +3632,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -1025,7 +1025,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4339,6 +4348,11 @@ +@@ -4368,6 +4377,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -1037,7 +1037,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6413,6 +6427,11 @@ +@@ -6442,6 +6456,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1049,8 +1049,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-221-ge73e694/nptl/Makefile -+++ glibc-2.10.90-9/nptl/Makefile +--- glibc-2.10-229-g78c4ef4/nptl/Makefile ++++ glibc-2.10.90-11/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1083,8 +1083,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-221-ge73e694/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-229-g78c4ef4/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-11/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1093,8 +1093,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-221-ge73e694/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-229-g78c4ef4/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-11/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1102,8 +1102,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-221-ge73e694/nptl/tst-stackguard1.c -+++ glibc-2.10.90-9/nptl/tst-stackguard1.c +--- glibc-2.10-229-g78c4ef4/nptl/tst-stackguard1.c ++++ glibc-2.10.90-11/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1128,8 +1128,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-221-ge73e694/nscd/nscd.conf -+++ glibc-2.10.90-9/nscd/nscd.conf +--- glibc-2.10-229-g78c4ef4/nscd/nscd.conf ++++ glibc-2.10.90-11/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1139,8 +1139,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-221-ge73e694/nscd/nscd.init -+++ glibc-2.10.90-9/nscd/nscd.init +--- glibc-2.10-229-g78c4ef4/nscd/nscd.init ++++ glibc-2.10.90-11/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1197,8 +1197,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-221-ge73e694/posix/Makefile -+++ glibc-2.10.90-9/posix/Makefile +--- glibc-2.10-229-g78c4ef4/posix/Makefile ++++ glibc-2.10.90-11/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1219,8 +1219,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-221-ge73e694/posix/getconf.speclist.h -+++ glibc-2.10.90-9/posix/getconf.speclist.h +--- glibc-2.10-229-g78c4ef4/posix/getconf.speclist.h ++++ glibc-2.10.90-11/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1261,8 +1261,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-221-ge73e694/streams/Makefile -+++ glibc-2.10.90-9/streams/Makefile +--- glibc-2.10-229-g78c4ef4/streams/Makefile ++++ glibc-2.10.90-11/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1272,8 +1272,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-221-ge73e694/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-9/sysdeps/generic/dl-cache.h +--- glibc-2.10-229-g78c4ef4/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-11/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1289,8 +1289,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-221-ge73e694/sysdeps/i386/Makefile -+++ glibc-2.10.90-9/sysdeps/i386/Makefile +--- glibc-2.10-229-g78c4ef4/sysdeps/i386/Makefile ++++ glibc-2.10.90-11/sysdeps/i386/Makefile @@ -2,6 +2,8 @@ # Every i386 port in use uses gas syntax (I think). asm-CPPFLAGS += -DGAS_SYNTAX @@ -1315,8 +1315,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-221-ge73e694/sysdeps/ia64/Makefile -+++ glibc-2.10.90-9/sysdeps/ia64/Makefile +--- glibc-2.10-229-g78c4ef4/sysdeps/ia64/Makefile ++++ glibc-2.10.90-11/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1328,8 +1328,8 @@ endif endif ---- glibc-2.10-221-ge73e694/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-9/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-229-g78c4ef4/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-11/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1681,8 +1681,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-221-ge73e694/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-9/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-229-g78c4ef4/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-11/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1768,8 +1768,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-9/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-229-g78c4ef4/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-11/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1787,8 +1787,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-229-g78c4ef4/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-11/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1797,8 +1797,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-221-ge73e694/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-229-g78c4ef4/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-11/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1816,8 +1816,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-221-ge73e694/sysdeps/unix/nice.c -+++ glibc-2.10.90-9/sysdeps/unix/nice.c +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/nice.c ++++ glibc-2.10.90-11/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1832,8 +1832,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1849,8 +1849,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1898,8 +1898,8 @@ } else #endif ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1942,8 +1942,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1962,8 +1962,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -2024,8 +2024,8 @@ + } while (0) + +#include_next ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2058,29 +2058,29 @@ + } while (0) + #include_next ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2106,8 +2106,8 @@ struct netlink_res { ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2117,8 +2117,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2164,8 +2164,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-221-ge73e694/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-229-g78c4ef4/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-11/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2184,8 +2184,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-221-ge73e694/timezone/zic.c -+++ glibc-2.10.90-9/timezone/zic.c +--- glibc-2.10-229-g78c4ef4/timezone/zic.c ++++ glibc-2.10.90-11/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.404 retrieving revision 1.405 diff -u -p -r1.404 -r1.405 --- glibc.spec 28 Jul 2009 09:34:51 -0000 1.404 +++ glibc.spec 30 Jul 2009 13:39:12 -0000 1.405 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-221-ge73e694 +%define glibcsrcdir glibc-2.10-229-g78c4ef4 %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 10 +Release: 11 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -580,7 +580,7 @@ rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo # BUILD THE FILE LIST { - find $RPM_BUILD_ROOT \( -type f -or -type l \) \ + find $RPM_BUILD_ROOT \( -type f -o -type l \) \ \( \ -name etc -printf "%%%%config " -o \ -name gconv-modules \ @@ -588,7 +588,7 @@ rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo -name gconv-modules.cache \ -printf "%%%%verify(not md5 size mtime) " \ , \ - ! -path "*/lib/debug" -printf "/%%P\n" \) + ! -path "*/lib/debug/*" -printf "/%%P\n" \) find $RPM_BUILD_ROOT -type d \ \( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \ -path "*%{_prefix}/include/*" -o \ @@ -1037,6 +1037,10 @@ rm -f *.filelist* %endif %changelog +* Thu Jul 30 2009 Andreas Schwab - 2.10.90-11 +- Update from master. +- Don't package debuginfo files in glibc-devel. + * Tue Jul 28 2009 Andreas Schwab - 2.10.90-10 - Update from master. * fix memory ordering in pthread_mutex_unlock (BZ#10418) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- import.log 28 Jul 2009 09:34:51 -0000 1.20 +++ import.log 30 Jul 2009 13:39:12 -0000 1.21 @@ -18,3 +18,4 @@ glibc-2_10_90-5:HEAD:glibc-2.10.90-5.src glibc-2_10_90-7:HEAD:glibc-2.10.90-7.src.rpm:1248367427 glibc-2_10_90-9:HEAD:glibc-2.10.90-9.src.rpm:1248700754 glibc-2_10_90-10:HEAD:glibc-2.10.90-10.src.rpm:1248773458 +glibc-2_10_90-11:HEAD:glibc-2.10.90-11.src.rpm:1248961080 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.302 retrieving revision 1.303 diff -u -p -r1.302 -r1.303 --- sources 28 Jul 2009 09:34:51 -0000 1.302 +++ sources 30 Jul 2009 13:39:12 -0000 1.303 @@ -1,2 +1,2 @@ -8925f5aaf39135b91b82cadea1dbbb35 glibc-2.10-221-ge73e694-fedora.tar.bz2 -48861ec98c147d503490376ce8fafa4b glibc-2.10-221-ge73e694.tar.bz2 +aa771912c40a639f35c00f8b513893eb glibc-2.10-229-g78c4ef4-fedora.tar.bz2 +1ae22e300b699c8588f30fe53e5ba5a9 glibc-2.10-229-g78c4ef4.tar.bz2 From mcpierce at fedoraproject.org Thu Jul 30 13:39:14 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Thu, 30 Jul 2009 13:39:14 +0000 (UTC) Subject: rpms/rubygem-RedCloth/devel rubygem-RedCloth.spec,1.4,1.5 Message-ID: <20090730133914.D3F9311C00D3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10215 Modified Files: rubygem-RedCloth.spec Log Message: * Thu Jul 30 2009 Darryl Pierce - 4.1.9-7 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/devel/rubygem-RedCloth.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-RedCloth.spec 27 Jul 2009 03:24:41 -0000 1.4 +++ rubygem-RedCloth.spec 30 Jul 2009 13:39:14 -0000 1.5 @@ -4,7 +4,6 @@ %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname RedCloth %global gemlibname redcloth_scan.so -%global workdir %(mktemp -d) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global installroot %{buildroot}%{geminstdir} %global extensionddir %{installroot}/ext/redcloth_scan/ @@ -12,7 +11,7 @@ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 6%{?dist} +Release: 7%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -30,6 +29,16 @@ Textile parser for Ruby. %prep %setup -q -c -T +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" +gem install --local --install-dir .%{gemdir} \ + --force -V --rdoc %{SOURCE0} + +# To create debuginfo file corretly (workaround for +# "#line" directive) +pushd .%{geminstdir}/ext/redcloth_scan +mkdir ext +ln -sf .. ext/redcloth_scan +popd %build @@ -40,11 +49,7 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} -export CONFIGURE_ARGS="--with-cflags='%{optflags}'" -gem install --local --install-dir %{workdir} \ - --force -V --rdoc %{SOURCE0} - -cp -ra %{workdir}/* %{buildroot}%{gemdir} +cp -a .%{gemdir}/* %{buildroot}%{gemdir} mkdir -p %{buildroot}/%{_bindir} @@ -80,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Darryl Pierce - 4.1.9-7 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + * Sun Jul 26 2009 Fedora Release Engineering - 4.1.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From corsepiu at fedoraproject.org Thu Jul 30 13:40:02 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 13:40:02 +0000 (UTC) Subject: rpms/perl-Gnome2-GConf/devel perl-Gnome2-GConf.spec,1.12,1.13 Message-ID: <20090730134002.C365711C04D4@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gnome2-GConf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11301 Modified Files: perl-Gnome2-GConf.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.044-7 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gnome2-GConf.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-GConf/devel/perl-Gnome2-GConf.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Gnome2-GConf.spec 26 Jul 2009 06:17:15 -0000 1.12 +++ perl-Gnome2-GConf.spec 30 Jul 2009 13:40:02 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Gnome2-GConf Version: 1.044 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl wrappers for the GConf configuration engine License: LGPLv2+ Group: Development/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve ## core BuildRequires: perl(Test::More) ## non-core -BuildRequires: perl(Glib) >= 1.120, GConf2 +BuildRequires: perl(Glib) >= 1.120, perl(Glib::MakeHelper), GConf2 BuildRequires: perl(ExtUtils::Depends) >= 0.2 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.044-7 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.044-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 30 13:42:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:04 +0000 Subject: [pkgdb] augeas: harald has given up watchbugzilla Message-ID: <20090730134204.31BFB10F875@bastion2.fedora.phx.redhat.com> harald has given up the watchbugzilla acl on augeas (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:04 +0000 Subject: [pkgdb] augeas: harald has given up watchcommits Message-ID: <20090730134205.1B83110F89A@bastion2.fedora.phx.redhat.com> harald has given up the watchcommits acl on augeas (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:11 +0000 Subject: [pkgdb] augeas: harald has given up watchbugzilla Message-ID: <20090730134211.55F0610F8A1@bastion2.fedora.phx.redhat.com> harald has given up the watchbugzilla acl on augeas (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:10 +0000 Subject: [pkgdb] augeas: harald has given up watchcommits Message-ID: <20090730134210.51D5910F89D@bastion2.fedora.phx.redhat.com> harald has given up the watchcommits acl on augeas (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:16 +0000 Subject: [pkgdb] augeas: harald has given up watchcommits Message-ID: <20090730134216.7EE6910F875@bastion2.fedora.phx.redhat.com> harald has given up the watchcommits acl on augeas (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:16 +0000 Subject: [pkgdb] augeas: harald has given up watchbugzilla Message-ID: <20090730134217.2EF0310F8B1@bastion2.fedora.phx.redhat.com> harald has given up the watchbugzilla acl on augeas (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:20 +0000 Subject: [pkgdb] augeas: harald has given up watchbugzilla Message-ID: <20090730134220.2C00710F8B8@bastion2.fedora.phx.redhat.com> harald has given up the watchbugzilla acl on augeas (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From pkgdb at fedoraproject.org Thu Jul 30 13:42:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 13:42:21 +0000 Subject: [pkgdb] augeas: harald has given up watchcommits Message-ID: <20090730134221.96ACC10F8BB@bastion2.fedora.phx.redhat.com> harald has given up the watchcommits acl on augeas (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/augeas From corsepiu at fedoraproject.org Thu Jul 30 13:47:41 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 13:47:41 +0000 (UTC) Subject: rpms/perl-Gnome2-Print/devel perl-Gnome2-Print.spec,1.8,1.9 Message-ID: <20090730134741.37E4411C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gnome2-Print/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14002 Modified Files: perl-Gnome2-Print.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.000-8 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gnome2-Print.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Print/devel/perl-Gnome2-Print.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Gnome2-Print.spec 26 Jul 2009 06:17:31 -0000 1.8 +++ perl-Gnome2-Print.spec 30 Jul 2009 13:47:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Print Version: 1.000 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl wrappers for the Gnome Print utilities License: LGPLv2+ Group: Development/Libraries @@ -11,6 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: perl(ExtUtils::Depends) >= 0.1 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 BuildRequires: perl(Glib) >= 1.120 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Gtk2) >= 1.120 BuildRequires: libgnomeprintui22-devel >= 2.2.0.0 @@ -55,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.000-8 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.000-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hubbitus at fedoraproject.org Thu Jul 30 13:48:27 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Thu, 30 Jul 2009 13:48:27 +0000 (UTC) Subject: rpms/gloox/F-9 .cvsignore, 1.2, 1.3 gloox.spec, 1.1, 1.2 sources, 1.2, 1.3 gloox-1.0-GCC4.4-missing_includes.patch, 1.1, NONE gloox-1.0-SVNr4003.glibc-private-symbol.patch, 1.1, NONE gloox-1.0-beta-SVNr4003-missed_header.patch, 1.1, NONE Message-ID: <20090730134827.3D42C11C00D3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/gloox/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14225 Modified Files: .cvsignore gloox.spec sources Removed Files: gloox-1.0-GCC4.4-missing_includes.patch gloox-1.0-SVNr4003.glibc-private-symbol.patch gloox-1.0-beta-SVNr4003-missed_header.patch Log Message: - New build due to close several bugs: https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch - Also it is resolve FBFS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 25 Apr 2009 18:09:02 -0000 1.2 +++ .cvsignore 30 Jul 2009 13:48:26 -0000 1.3 @@ -1 +1 @@ -gloox-1.0-SVNr4003.tar.bz2 +gloox-1.0-SVNr4029.tar.bz2 Index: gloox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-9/gloox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gloox.spec 25 Apr 2009 18:09:02 -0000 1.1 +++ gloox.spec 30 Jul 2009 13:48:27 -0000 1.2 @@ -1,18 +1,17 @@ #% define beta 7 -%define SVN 4003 +%define SVN 4029 Name: gloox Version: 1.0 -Release: 0.5.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} +Release: 0.7.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} Summary: A rock-solid, full-featured Jabber/XMPP client library Group: System Environment/Libraries License: GPLv2 URL: http://camaya.net/gloox #Source0: http://camaya.net/download/%{name}-%{version}%{?beta:-beta%{beta}}.tar.bz2 -# svn co -r4003 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ -# pushd gloox-1.0 && DATE=$( svn info -r4003 | sed -nr '/Last Changed Date/ s/.+: (.+?) \(.+/\1/p' ) && \ -# find -exec touch -c -d"$DATE" {} \; && popd && tar --exclude='.svn' --preserve -cjf gloox-1.0-SVNr4003.tar.bz2 gloox-1.0 +# svn export -r4029 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ +# tar -cjf gloox-1.0-SVNr4029.tar.bz2 gloox-1.0 Source0: %{name}-%{version}%{?beta:-beta%{beta}}%{?SVN:-SVNr%{SVN}}.tar.bz2 #Patch1: gloox-no_ns_get16.patch @@ -28,13 +27,6 @@ BuildRequires: libidn-devel >= 0.5 Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig -# Temporary UGLY HACK for http://bugs.camaya.net/horde/whups/ticket/?id=137 -Patch1: gloox-1.0-SVNr4003.glibc-private-symbol.patch -# http://bugs.camaya.net/horde/whups/ticket/?id=140 -Patch2: gloox-1.0-beta-SVNr4003-missed_header.patch -# GCC 4.4 compatibility http://bugs.camaya.net/horde/whups/ticket/?id=141 -Patch3: gloox-1.0-GCC4.4-missing_includes.patch - %description gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free @@ -52,9 +44,6 @@ developing applications that use %{name} %prep %setup -q -n %{name}-%{version}%{?beta:-beta%{beta}} -%patch1 -p1 -b .private-glibc -%patch2 -p1 -b .missed-header -%patch3 -p1 -b .gcc4.4-missing-includes %build %if 0%{?SVN} @@ -93,6 +82,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 29 2009 Pavel Alexeev - 1.0-0.6.SVNr4029 +- New build due to close several bugs: + https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch + https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch + https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch +- Use "svn export" instead of "svn checkout". + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.SVNr4003 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Pavel Alexeev - 1.0-0.5.SVNr4003 - Add --exclude='.svn' to tar pack source and set time to last commit. This may allow pass hash checking soucre later. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Apr 2009 18:09:02 -0000 1.2 +++ sources 30 Jul 2009 13:48:27 -0000 1.3 @@ -1 +1 @@ -f3ea4b0a8fdb44d0ad8715ac8a51001f gloox-1.0-SVNr4003.tar.bz2 +280e5dc6790ff3cb0418c9b309f16aa9 gloox-1.0-SVNr4029.tar.bz2 --- gloox-1.0-GCC4.4-missing_includes.patch DELETED --- --- gloox-1.0-SVNr4003.glibc-private-symbol.patch DELETED --- --- gloox-1.0-beta-SVNr4003-missed_header.patch DELETED --- From twaugh at fedoraproject.org Thu Jul 30 13:49:52 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 13:49:52 +0000 (UTC) Subject: rpms/ghostscript/devel ghostscript-CVE-2009-0583, 0584.patch, 1.1, 1.2 ghostscript.spec, 1.189, 1.190 Message-ID: <20090730134952.B881811C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14980 Modified Files: ghostscript-CVE-2009-0583,0584.patch ghostscript.spec Log Message: * Thu Jul 30 2009 Tim Waugh 8.64-11 - Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of points, not 100, and by not treating a missing black point tag as an error (bug #487744). ***** Not enough context to create diffstat for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 ***** Not enough context to create diff for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/devel/ghostscript.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- ghostscript.spec 30 Jul 2009 12:52:39 -0000 1.189 +++ ghostscript.spec 30 Jul 2009 13:49:52 -0000 1.190 @@ -5,7 +5,7 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 10%{?dist} +Release: 11%{?dist} # Included CMap data is Redistributable, no modification permitted, # see http://bugzilla.redhat.com/487510 @@ -312,6 +312,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Thu Jul 30 2009 Tim Waugh 8.64-11 +- Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of + points, not 100, and by not treating a missing black point tag as an + error (bug #487744). + * Thu Jul 30 2009 Rex Dieter - 8.64-10 - License: GPLv2 and Redistributable, no modification permitted (bug #487510) From hubbitus at fedoraproject.org Thu Jul 30 13:50:40 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Thu, 30 Jul 2009 13:50:40 +0000 (UTC) Subject: rpms/gloox/F-11 .cvsignore, 1.2, 1.3 gloox.spec, 1.1, 1.2 sources, 1.2, 1.3 gloox-1.0-GCC4.4-missing_includes.patch, 1.1, NONE gloox-1.0-SVNr4003.glibc-private-symbol.patch, 1.1, NONE gloox-1.0-beta-SVNr4003-missed_header.patch, 1.1, NONE Message-ID: <20090730135040.551E111C00D3@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/gloox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15245 Modified Files: .cvsignore gloox.spec sources Removed Files: gloox-1.0-GCC4.4-missing_includes.patch gloox-1.0-SVNr4003.glibc-private-symbol.patch gloox-1.0-beta-SVNr4003-missed_header.patch Log Message: - New build due to close several bugs: https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch - Also it is resolve FBFS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 25 Apr 2009 18:54:26 -0000 1.2 +++ .cvsignore 30 Jul 2009 13:50:39 -0000 1.3 @@ -1 +1 @@ -gloox-1.0-SVNr4003.tar.bz2 +gloox-1.0-SVNr4029.tar.bz2 Index: gloox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-11/gloox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gloox.spec 25 Apr 2009 18:54:26 -0000 1.1 +++ gloox.spec 30 Jul 2009 13:50:40 -0000 1.2 @@ -1,18 +1,17 @@ #% define beta 7 -%define SVN 4003 +%define SVN 4029 Name: gloox Version: 1.0 -Release: 0.5.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} +Release: 0.7.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} Summary: A rock-solid, full-featured Jabber/XMPP client library Group: System Environment/Libraries License: GPLv2 URL: http://camaya.net/gloox #Source0: http://camaya.net/download/%{name}-%{version}%{?beta:-beta%{beta}}.tar.bz2 -# svn co -r4003 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ -# pushd gloox-1.0 && DATE=$( svn info -r4003 | sed -nr '/Last Changed Date/ s/.+: (.+?) \(.+/\1/p' ) && \ -# find -exec touch -c -d"$DATE" {} \; && popd && tar --exclude='.svn' --preserve -cjf gloox-1.0-SVNr4003.tar.bz2 gloox-1.0 +# svn export -r4029 svn://svn.camaya.net/gloox/trunk gloox-1.0 && \ +# tar -cjf gloox-1.0-SVNr4029.tar.bz2 gloox-1.0 Source0: %{name}-%{version}%{?beta:-beta%{beta}}%{?SVN:-SVNr%{SVN}}.tar.bz2 #Patch1: gloox-no_ns_get16.patch @@ -28,13 +27,6 @@ BuildRequires: libidn-devel >= 0.5 Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig -# Temporary UGLY HACK for http://bugs.camaya.net/horde/whups/ticket/?id=137 -Patch1: gloox-1.0-SVNr4003.glibc-private-symbol.patch -# http://bugs.camaya.net/horde/whups/ticket/?id=140 -Patch2: gloox-1.0-beta-SVNr4003-missed_header.patch -# GCC 4.4 compatibility http://bugs.camaya.net/horde/whups/ticket/?id=141 -Patch3: gloox-1.0-GCC4.4-missing_includes.patch - %description gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free @@ -52,9 +44,6 @@ developing applications that use %{name} %prep %setup -q -n %{name}-%{version}%{?beta:-beta%{beta}} -%patch1 -p1 -b .private-glibc -%patch2 -p1 -b .missed-header -%patch3 -p1 -b .gcc4.4-missing-includes %build %if 0%{?SVN} @@ -93,6 +82,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 29 2009 Pavel Alexeev - 1.0-0.6.SVNr4029 +- New build due to close several bugs: + https://mail.camaya.net/horde/whups/ticket/?id=140 - delete patch gloox-1.0-beta-SVNr4003-missed_header.patch + https://bugs.camaya.net/horde/whups/ticket/?id=141 - delete patch gloox-1.0-GCC4.4-missing_includes.patch + https://bugs.camaya.net/horde/whups/ticket/?id=137 - delete patch gloox-1.0-SVNr4003.glibc-private-symbol.patch +- Use "svn export" instead of "svn checkout". + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.SVNr4003 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Pavel Alexeev - 1.0-0.5.SVNr4003 - Add --exclude='.svn' to tar pack source and set time to last commit. This may allow pass hash checking soucre later. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gloox/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Apr 2009 18:54:26 -0000 1.2 +++ sources 30 Jul 2009 13:50:40 -0000 1.3 @@ -1 +1 @@ -f3ea4b0a8fdb44d0ad8715ac8a51001f gloox-1.0-SVNr4003.tar.bz2 +280e5dc6790ff3cb0418c9b309f16aa9 gloox-1.0-SVNr4029.tar.bz2 --- gloox-1.0-GCC4.4-missing_includes.patch DELETED --- --- gloox-1.0-SVNr4003.glibc-private-symbol.patch DELETED --- --- gloox-1.0-beta-SVNr4003-missed_header.patch DELETED --- From mcpierce at fedoraproject.org Thu Jul 30 13:54:59 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Thu, 30 Jul 2009 13:54:59 +0000 (UTC) Subject: rpms/rubygem-RedCloth/F-10 rubygem-RedCloth.spec,1.2,1.3 Message-ID: <20090730135459.1035411C00D3@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17035 Modified Files: rubygem-RedCloth.spec Log Message: * Thu Jul 30 2009 Darryl Pierce - 4.1.9-6 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/F-10/rubygem-RedCloth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-RedCloth.spec 14 Jul 2009 18:39:12 -0000 1.2 +++ rubygem-RedCloth.spec 30 Jul 2009 13:54:58 -0000 1.3 @@ -4,7 +4,6 @@ %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname RedCloth %global gemlibname redcloth_scan.so -%global workdir %(mktemp -d) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global installroot %{buildroot}%{geminstdir} %global extensionddir %{installroot}/ext/redcloth_scan/ @@ -12,7 +11,7 @@ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -30,6 +29,16 @@ Textile parser for Ruby. %prep %setup -q -c -T +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" +gem install --local --install-dir .%{gemdir} \ + --force -V --rdoc %{SOURCE0} + +# To create debuginfo file corretly (workaround for +# "#line" directive) +pushd .%{geminstdir}/ext/redcloth_scan +mkdir ext +ln -sf .. ext/redcloth_scan +popd %build @@ -40,11 +49,7 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} -export CONFIGURE_ARGS="--with-cflags='%{optflags}'" -gem install --local --install-dir %{workdir} \ - --force -V --rdoc %{SOURCE0} - -cp -ra %{workdir}/* %{buildroot}%{gemdir} +cp -a .%{gemdir}/* %{buildroot}%{gemdir} mkdir -p %{buildroot}/%{_bindir} @@ -65,6 +70,7 @@ find %{buildroot}%{geminstdir} -type f - rm %{installroot}/.require_paths + %clean rm -rf %{buildroot} @@ -80,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Darryl Pierce - 4.1.9-6 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries From mclasen at fedoraproject.org Thu Jul 30 13:57:35 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 30 Jul 2009 13:57:35 +0000 (UTC) Subject: comps comps-f12.xml.in,1.62,1.63 Message-ID: <20090730135735.8743A11C0417@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31912 Modified Files: comps-f12.xml.in Log Message: Reflect recent package splits Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- comps-f12.xml.in 29 Jul 2009 18:55:36 -0000 1.62 +++ comps-f12.xml.in 30 Jul 2009 13:57:35 -0000 1.63 @@ -2518,6 +2518,7 @@ gnome-phone-manager gnome-pilot-conduits gnome-schedule + gnome-system-log gnome-theme-curvylooks gnotime gonvert @@ -4443,7 +4444,7 @@ openoffice.org-xsltfilter planner abiword - aiksaurus-gtk + aiksaurus-thesaurus alexandria bibus calcurse From corsepiu at fedoraproject.org Thu Jul 30 13:59:21 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 13:59:21 +0000 (UTC) Subject: rpms/perl-Gnome2-VFS/devel perl-Gnome2-VFS.spec,1.9,1.10 Message-ID: <20090730135921.1339E11C0417@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gnome2-VFS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18591 Modified Files: perl-Gnome2-VFS.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.081-4 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gnome2-VFS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-VFS/devel/perl-Gnome2-VFS.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Gnome2-VFS.spec 26 Jul 2009 06:17:47 -0000 1.9 +++ perl-Gnome2-VFS.spec 30 Jul 2009 13:59:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Gnome2-VFS Version: 1.081 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to the 2.x series of the GNOME VFS library License: LGPLv2+ Group: Development/Libraries @@ -16,6 +16,7 @@ BuildRequires: perl(Test::More) BuildRequires: perl(ExtUtils::Depends) >= 0.20 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 BuildRequires: perl(Glib) >= 1.120 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: gnome-vfs2-devel @@ -62,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.081-4 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.081-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mcpierce at fedoraproject.org Thu Jul 30 14:04:33 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Thu, 30 Jul 2009 14:04:33 +0000 (UTC) Subject: rpms/rubygem-RedCloth/F-11 rubygem-RedCloth.spec,1.2,1.3 Message-ID: <20090730140433.BE08D11C0417@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20397 Modified Files: rubygem-RedCloth.spec Log Message: * Thu Jul 30 2009 Darryl Pierce ,dpierce at redhat.com> - 4.1.9-7 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/F-11/rubygem-RedCloth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-RedCloth.spec 14 Jul 2009 18:54:46 -0000 1.2 +++ rubygem-RedCloth.spec 30 Jul 2009 14:04:33 -0000 1.3 @@ -4,7 +4,6 @@ %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname RedCloth %global gemlibname redcloth_scan.so -%global workdir %(mktemp -d) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global installroot %{buildroot}%{geminstdir} %global extensionddir %{installroot}/ext/redcloth_scan/ @@ -12,7 +11,7 @@ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 5%{?dist} +Release: 7%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -27,9 +26,18 @@ Provides: rubygem(%{gemname}) = %{versio %description Textile parser for Ruby. - %prep %setup -q -c -T +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" +gem install --local --install-dir .%{gemdir} \ + --force -V --rdoc %{SOURCE0} + +# To create debuginfo file corretly (workaround for +# "#line" directive) +pushd .%{geminstdir}/ext/redcloth_scan +mkdir ext +ln -sf .. ext/redcloth_scan +popd %build @@ -40,11 +48,7 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} -export CONFIGURE_ARGS="--with-cflags='%{optflags}'" -gem install --local --install-dir %{workdir} \ - --force -V --rdoc %{SOURCE0} - -cp -ra %{workdir}/* %{buildroot}%{gemdir} +cp -a .%{gemdir}/* %{buildroot}%{gemdir} mkdir -p %{buildroot}/%{_bindir} @@ -80,6 +84,12 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Darryl Pierce ,dpierce at redhat.com> - 4.1.9-7 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + +* Tue Jul 14 2009 Darryl Pierce - 4.1.9-6 +- Changed the build location so that the debug rpm is properly built. + * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries From corsepiu at fedoraproject.org Thu Jul 30 14:05:10 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 14:05:10 +0000 (UTC) Subject: rpms/perl-Gnome2/devel perl-Gnome2.spec,1.3,1.4 Message-ID: <20090730140510.7B77211C0417@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20692 Modified Files: perl-Gnome2.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 1.042-4 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gnome2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2/devel/perl-Gnome2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gnome2.spec 26 Jul 2009 06:16:44 -0000 1.3 +++ perl-Gnome2.spec 30 Jul 2009 14:05:10 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gnome2 Version: 1.042 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to the 2.x series of the GNOME libraries License: LGPLv2 Group: Development/Libraries @@ -11,6 +11,7 @@ BuildRequires: perl(ExtUtils::Depends) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 BuildRequires: perl(Glib) >= 1.04 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Gnome2::Canvas) >= 1.00 BuildRequires: perl(Gnome2::VFS) >= 1.00 BuildRequires: perl(Gtk2) >= 1.00 @@ -54,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 1.042-4 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 1.042-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From twaugh at fedoraproject.org Thu Jul 30 14:12:52 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 30 Jul 2009 14:12:52 +0000 (UTC) Subject: rpms/ghostscript/F-10 ghostscript-bitcmyk.patch, NONE, 1.1 .cvsignore, 1.27, 1.28 ghostscript-CVE-2009-0196.patch, 1.1, 1.2 ghostscript-CVE-2009-0583, 0584.patch, 1.1, 1.2 ghostscript-CVE-2009-0792.patch, 1.1, 1.2 ghostscript-fPIC.patch, 1.1, 1.2 ghostscript-gs-executable.patch, 1.1, 1.2 ghostscript-jbig2dec-nullderef.patch, 1.1, 1.2 ghostscript-noopt.patch, 1.3, 1.4 ghostscript-pksmraw.patch, 1.1, 1.2 ghostscript-runlibfileifexists.patch, 1.4, 1.5 ghostscript-scripts.patch, 1.3, 1.4 ghostscript-system-jasper.patch, 1.1, 1.2 ghostscript.spec, 1.182, 1.183 sources, 1.31, 1.32 ghostscript-CVE-2008-6679.patch, 1.1, NONE Message-ID: <20090730141252.59E2011C00D3@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23667 Modified Files: .cvsignore ghostscript-CVE-2009-0196.patch ghostscript-CVE-2009-0583,0584.patch ghostscript-CVE-2009-0792.patch ghostscript-fPIC.patch ghostscript-gs-executable.patch ghostscript-jbig2dec-nullderef.patch ghostscript-noopt.patch ghostscript-pksmraw.patch ghostscript-runlibfileifexists.patch ghostscript-scripts.patch ghostscript-system-jasper.patch ghostscript.spec sources Added Files: ghostscript-bitcmyk.patch Removed Files: ghostscript-CVE-2008-6679.patch Log Message: Sync to F-11. ghostscript-bitcmyk.patch: gdevbit.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) --- NEW FILE ghostscript-bitcmyk.patch --- diff -up ghostscript-8.64/base/gdevbit.c.bitcmyk ghostscript-8.64/base/gdevbit.c --- ghostscript-8.64/base/gdevbit.c.bitcmyk 2008-08-21 00:58:43.000000000 +0100 +++ ghostscript-8.64/base/gdevbit.c 2009-02-17 16:27:38.000000000 +0000 @@ -653,7 +653,7 @@ bit_put_params(gx_device * pdev, gs_para pdev->color_info.depth == 32 ? cmyk_8bit_map_cmyk_color : bit_map_cmyk_color); } - /* Reset the sparable and linear shift, masks, bits. */ + /* Reset the separable and linear shift, masks, bits. */ set_linear_color_bits_mask_shift(pdev); pdev->color_info.separable_and_linear = GX_CINFO_SEP_LIN; ((gx_device_bit *)pdev)->FirstLine = FirstLine; @@ -671,16 +671,18 @@ bit_print_page(gx_device_printer * pdev, byte *in = gs_alloc_bytes(pdev->memory, line_size, "bit_print_page(in)"); byte *data; int nul = !strcmp(pdev->fname, "nul") || !strcmp(pdev->fname, "/dev/null"); - int lnum = ((gx_device_bit *)pdev)->FirstLine; - int bottom = ((gx_device_bit *)pdev)->LastLine; + int lnum = ((gx_device_bit *)pdev)->FirstLine >= pdev->height ? pdev->height - 1 : + ((gx_device_bit *)pdev)->FirstLine; + int bottom = ((gx_device_bit *)pdev)->LastLine >= pdev->height ? pdev->height - 1 : + ((gx_device_bit *)pdev)->LastLine; int line_count = any_abs(bottom - lnum); int i, step = lnum > bottom ? -1 : 1; if (in == 0) return_error(gs_error_VMerror); if ((lnum == 0) && (bottom == 0)) - bottom = pdev->height - 1; - for (i = 0; i < line_count; i++, lnum += step) { + line_count = pdev->height - 1; /* default when LastLine == 0, FirstLine == 0 */ + for (i = 0; i <= line_count; i++, lnum += step) { gdev_prn_get_bits(pdev, lnum, in, &data); if (!nul) fwrite(data, 1, line_size, prn_stream); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 4 Aug 2008 10:15:59 -0000 1.27 +++ .cvsignore 30 Jul 2009 14:12:50 -0000 1.28 @@ -23,3 +23,4 @@ ghostscript-8.60.tar.bz2 ghostscript-8.61.tar.bz2 ghostscript-8.62.tar.bz2 ghostscript-8.63.tar.bz2 +ghostscript-8.64.tar.bz2 ghostscript-CVE-2009-0196.patch: jbig2_symbol_dict.c | 9 +++++++++ 1 file changed, 9 insertions(+) Index: ghostscript-CVE-2009-0196.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-CVE-2009-0196.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-CVE-2009-0196.patch 15 Apr 2009 16:07:40 -0000 1.1 +++ ghostscript-CVE-2009-0196.patch 30 Jul 2009 14:12:50 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c.CVE-2009-0196 ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c ---- ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c.CVE-2009-0196 2007-12-11 08:29:58.000000000 +0000 -+++ ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c 2009-04-15 16:40:13.000000000 +0100 +diff -up ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c.CVE-2009-0196 ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c +--- ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c.CVE-2009-0196 2007-12-11 08:29:58.000000000 +0000 ++++ ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c 2009-04-15 16:27:43.000000000 +0100 @@ -699,6 +699,15 @@ jbig2_decode_symbol_dict(Jbig2Ctx *ctx, exrunlength = params->SDNUMEXSYMS; else ***** Not enough context to create diffstat for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 ***** Not enough context to create diff for file: ghostscript-CVE-2009-0583,0584.patch,1.1,1.2 ghostscript-CVE-2009-0792.patch: icc.c | 44 +++++++++++++++++++++++++++++++------------- 1 file changed, 31 insertions(+), 13 deletions(-) Index: ghostscript-CVE-2009-0792.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-CVE-2009-0792.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-CVE-2009-0792.patch 15 Apr 2009 16:07:40 -0000 1.1 +++ ghostscript-CVE-2009-0792.patch 30 Jul 2009 14:12:50 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ghostscript-8.63/icclib/icc.c.CVE-2009-0792 ghostscript-8.63/icclib/icc.c ---- ghostscript-8.63/icclib/icc.c.CVE-2009-0792 2009-04-15 16:37:49.000000000 +0100 -+++ ghostscript-8.63/icclib/icc.c 2009-04-15 16:38:00.000000000 +0100 +diff -up ghostscript-8.64/icclib/icc.c.CVE-2009-0792 ghostscript-8.64/icclib/icc.c +--- ghostscript-8.64/icclib/icc.c.CVE-2009-0792 2009-04-15 16:20:04.000000000 +0100 ++++ ghostscript-8.64/icclib/icc.c 2009-04-15 16:20:24.000000000 +0100 @@ -2982,7 +2982,7 @@ static int icmCurve_lookup_fwd( rv |= 1; } ghostscript-fPIC.patch: devs.mak | 2 +- lib.mak | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) Index: ghostscript-fPIC.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-fPIC.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-fPIC.patch 11 Jul 2007 12:06:32 -0000 1.1 +++ ghostscript-fPIC.patch 30 Jul 2009 14:12:51 -0000 1.2 @@ -1,6 +1,19 @@ ---- ghostscript-8.60-r8112/src/lib.mak.fPIC 2007-07-10 17:03:11.000000000 +0100 -+++ ghostscript-8.60-r8112/src/lib.mak 2007-07-10 17:05:56.000000000 +0100 -@@ -874,7 +874,7 @@ +diff -up ghostscript-8.64/base/devs.mak.fPIC ghostscript-8.64/base/devs.mak +--- ghostscript-8.64/base/devs.mak.fPIC 2008-11-07 18:49:34.000000000 +0000 ++++ ghostscript-8.64/base/devs.mak 2009-02-04 11:34:21.000000000 +0000 +@@ -456,7 +456,7 @@ $(GLOBJ)gdevx.$(OBJ) : $(GLSRC)gdevx.c $ + $(GLCCSHARED) $(XINCLUDE) $(GLO_)gdevx.$(OBJ) $(C_) $(GLSRC)gdevx.c + + $(GLOBJ)gdevxcmp.$(OBJ) : $(GLSRC)gdevxcmp.c $(GDEVX) $(math__h) +- $(GLCC) $(XINCLUDE) $(GLO_)gdevxcmp.$(OBJ) $(C_) $(GLSRC)gdevxcmp.c ++ $(GLCCSHARED) $(XINCLUDE) $(GLO_)gdevxcmp.$(OBJ) $(C_) $(GLSRC)gdevxcmp.c + + $(GLOBJ)gdevxini.$(OBJ) : $(GLSRC)gdevxini.c $(GDEVX) $(memory__h)\ + $(gserrors_h) $(gsparamx_h) $(gxdevmem_h) $(gdevbbox_h) +diff -up ghostscript-8.64/base/lib.mak.fPIC ghostscript-8.64/base/lib.mak +--- ghostscript-8.64/base/lib.mak.fPIC 2009-01-08 09:17:18.000000000 +0000 ++++ ghostscript-8.64/base/lib.mak 2009-02-04 11:34:21.000000000 +0000 +@@ -894,7 +894,7 @@ $(GLOBJ)gsparam.$(OBJ) : $(GLSRC)gsparam $(GLOBJ)gsparamx.$(OBJ) : $(GLSRC)gsparamx.c $(string__h)\ $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gsparamx_h)\ $(gstypes_h) @@ -9,7 +22,7 @@ # Future replacement for gsparams.c $(GLOBJ)gsparam2.$(OBJ) : $(GLSRC)gsparam2.c $(GXERR) $(memory__h)\ -@@ -1077,7 +1077,7 @@ +@@ -1085,7 +1085,7 @@ $(GLOBJ)gdevnfwd.$(OBJ) : $(GLSRC)gdevnf # Provide a mapping between StandardEncoding and ISOLatin1Encoding. $(GLOBJ)gdevemap.$(OBJ) : $(GLSRC)gdevemap.c $(AK) $(std_h) @@ -18,14 +31,3 @@ ###### Create a pseudo-"feature" for the entire graphics library. ---- ghostscript-8.60-r8112/src/devs.mak.fPIC 2007-07-10 17:05:00.000000000 +0100 -+++ ghostscript-8.60-r8112/src/devs.mak 2007-07-10 17:05:07.000000000 +0100 -@@ -464,7 +464,7 @@ - $(GLCCSHARED) $(XINCLUDE) $(GLO_)gdevx.$(OBJ) $(C_) $(GLSRC)gdevx.c - - $(GLOBJ)gdevxcmp.$(OBJ) : $(GLSRC)gdevxcmp.c $(GDEVX) $(math__h) -- $(GLCC) $(XINCLUDE) $(GLO_)gdevxcmp.$(OBJ) $(C_) $(GLSRC)gdevxcmp.c -+ $(GLCCSHARED) $(XINCLUDE) $(GLO_)gdevxcmp.$(OBJ) $(C_) $(GLSRC)gdevxcmp.c - - $(GLOBJ)gdevxini.$(OBJ) : $(GLSRC)gdevxini.c $(GDEVX) $(memory__h)\ - $(gserrors_h) $(gsparamx_h) $(gxdevmem_h) $(gdevbbox_h) ghostscript-gs-executable.patch: bdftops | 5 ++--- dumphint | 5 ++--- eps2eps | 5 ++--- font2c | 5 ++--- gsbj | 5 ++--- gsdj | 5 ++--- gsdj500 | 5 ++--- gslj | 5 ++--- gslp | 5 ++--- gsnd | 5 ++--- pdf2dsc | 5 ++--- pdf2ps | 5 ++--- pdfopt | 5 ++--- pf2afm | 5 ++--- pfbtopfa | 5 ++--- pphs | 5 ++--- printafm | 5 ++--- ps2epsi | 5 ++--- ps2pdfwr | 5 ++--- ps2ps | 5 ++--- wftopfa | 5 ++--- 21 files changed, 42 insertions(+), 63 deletions(-) Index: ghostscript-gs-executable.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-gs-executable.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-gs-executable.patch 10 Jun 2009 17:00:16 -0000 1.1 +++ ghostscript-gs-executable.patch 30 Jul 2009 14:12:51 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ghostscript-8.63/lib/bdftops.gs-executable ghostscript-8.63/lib/bdftops ---- ghostscript-8.63/lib/bdftops.gs-executable 2009-06-10 17:47:31.185482938 +0100 -+++ ghostscript-8.63/lib/bdftops 2009-06-10 17:47:31.187484760 +0100 +diff -up ghostscript-8.64/lib/bdftops.gs-executable ghostscript-8.64/lib/bdftops +--- ghostscript-8.64/lib/bdftops.gs-executable 2009-06-10 17:55:39.762484085 +0100 ++++ ghostscript-8.64/lib/bdftops 2009-06-10 17:55:39.765483778 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -12,9 +12,9 @@ diff -up ghostscript-8.63/lib/bdftops.gs -exec "$GS_EXECUTABLE" -q -dBATCH -dNODISPLAY -- bdftops.ps "$@" +exec "$gs" -q -dBATCH -dNODISPLAY -- bdftops.ps "$@" -diff -up ghostscript-8.63/lib/dumphint.gs-executable ghostscript-8.63/lib/dumphint ---- ghostscript-8.63/lib/dumphint.gs-executable 2009-06-10 17:47:31.189484085 +0100 -+++ ghostscript-8.63/lib/dumphint 2009-06-10 17:47:31.191484839 +0100 +diff -up ghostscript-8.64/lib/dumphint.gs-executable ghostscript-8.64/lib/dumphint +--- ghostscript-8.64/lib/dumphint.gs-executable 2009-06-10 17:55:39.767484373 +0100 ++++ ghostscript-8.64/lib/dumphint 2009-06-10 17:55:39.823360403 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -30,11 +30,11 @@ diff -up ghostscript-8.63/lib/dumphint.g exit 1 fi --exec "$GS_EXECUTABLE" -q -dNODISPLAY $OPTIONS -- dumphint.ps "$1" -+exec "$gs" -q -dNODISPLAY $OPTIONS -- dumphint.ps "$1" -diff -up ghostscript-8.63/lib/eps2eps.gs-executable ghostscript-8.63/lib/eps2eps ---- ghostscript-8.63/lib/eps2eps.gs-executable 2009-06-10 17:47:31.193483738 +0100 -+++ ghostscript-8.63/lib/eps2eps 2009-06-10 17:47:31.195484763 +0100 +-exec "$GS_EXECUTABLE" -q -dNODISPLAY $OPTIONS -- "`dirname $0`/dumphint.ps" "$1" ++exec "$gs" -q -dNODISPLAY $OPTIONS -- "`dirname $0`/dumphint.ps" "$1" +diff -up ghostscript-8.64/lib/eps2eps.gs-executable ghostscript-8.64/lib/eps2eps +--- ghostscript-8.64/lib/eps2eps.gs-executable 2009-06-10 17:55:39.846358935 +0100 ++++ ghostscript-8.64/lib/eps2eps 2009-06-10 17:55:39.848359175 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -50,11 +50,11 @@ diff -up ghostscript-8.63/lib/eps2eps.gs exit 1 fi --exec "$GS_EXECUTABLE" -q -sDEVICE=epswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1" -+exec "$gs" -q -sDEVICE=epswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1" -diff -up ghostscript-8.63/lib/font2c.gs-executable ghostscript-8.63/lib/font2c ---- ghostscript-8.63/lib/font2c.gs-executable 2009-06-10 17:47:31.197483903 +0100 -+++ ghostscript-8.63/lib/font2c 2009-06-10 17:47:31.199484647 +0100 +-exec "$GS_EXECUTABLE" -q -sDEVICE=epswrite -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1" ++exec "$gs" -q -sDEVICE=epswrite -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1" +diff -up ghostscript-8.64/lib/font2c.gs-executable ghostscript-8.64/lib/font2c +--- ghostscript-8.64/lib/font2c.gs-executable 2009-06-10 17:55:39.850358868 +0100 ++++ ghostscript-8.64/lib/font2c 2009-06-10 17:55:39.852359769 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -66,9 +66,9 @@ diff -up ghostscript-8.63/lib/font2c.gs- -exec "$GS_EXECUTABLE" -q -dNODISPLAY -dWRITESYSTEMDICT -- font2c.ps "$@" +exec "$gs" -q -dNODISPLAY -dWRITESYSTEMDICT -- font2c.ps "$@" -diff -up ghostscript-8.63/lib/gsbj.gs-executable ghostscript-8.63/lib/gsbj ---- ghostscript-8.63/lib/gsbj.gs-executable 2009-06-10 17:47:31.201483281 +0100 -+++ ghostscript-8.63/lib/gsbj 2009-06-10 17:47:31.203484230 +0100 +diff -up ghostscript-8.64/lib/gsbj.gs-executable ghostscript-8.64/lib/gsbj +--- ghostscript-8.64/lib/gsbj.gs-executable 2009-06-10 17:55:39.854358559 +0100 ++++ ghostscript-8.64/lib/gsbj 2009-06-10 17:55:39.856358929 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -80,9 +80,9 @@ diff -up ghostscript-8.63/lib/gsbj.gs-ex -exec "$GS_EXECUTABLE" -q -sDEVICE=bj10e -r180 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" +exec "$gs" -q -sDEVICE=bj10e -r180 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" -diff -up ghostscript-8.63/lib/gsdj500.gs-executable ghostscript-8.63/lib/gsdj500 ---- ghostscript-8.63/lib/gsdj500.gs-executable 2009-06-10 17:47:31.208484529 +0100 -+++ ghostscript-8.63/lib/gsdj500 2009-06-10 17:47:31.210483970 +0100 +diff -up ghostscript-8.64/lib/gsdj500.gs-executable ghostscript-8.64/lib/gsdj500 +--- ghostscript-8.64/lib/gsdj500.gs-executable 2009-06-10 17:55:39.863358659 +0100 ++++ ghostscript-8.64/lib/gsdj500 2009-06-10 17:55:39.865358381 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -94,9 +94,9 @@ diff -up ghostscript-8.63/lib/gsdj500.gs -exec "$GS_EXECUTABLE" -q -sDEVICE=djet500 -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" +exec "$gs" -q -sDEVICE=djet500 -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" -diff -up ghostscript-8.63/lib/gsdj.gs-executable ghostscript-8.63/lib/gsdj ---- ghostscript-8.63/lib/gsdj.gs-executable 2009-06-10 17:47:31.205483180 +0100 -+++ ghostscript-8.63/lib/gsdj 2009-06-10 17:47:31.207483934 +0100 +diff -up ghostscript-8.64/lib/gsdj.gs-executable ghostscript-8.64/lib/gsdj +--- ghostscript-8.64/lib/gsdj.gs-executable 2009-06-10 17:55:39.858358853 +0100 ++++ ghostscript-8.64/lib/gsdj 2009-06-10 17:55:39.860359097 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -108,9 +108,9 @@ diff -up ghostscript-8.63/lib/gsdj.gs-ex -exec "$GS_EXECUTABLE" -q -sDEVICE=deskjet -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" +exec "$gs" -q -sDEVICE=deskjet -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" -diff -up ghostscript-8.63/lib/gslj.gs-executable ghostscript-8.63/lib/gslj ---- ghostscript-8.63/lib/gslj.gs-executable 2009-06-10 17:47:31.212483852 +0100 -+++ ghostscript-8.63/lib/gslj 2009-06-10 17:47:31.214483814 +0100 +diff -up ghostscript-8.64/lib/gslj.gs-executable ghostscript-8.64/lib/gslj +--- ghostscript-8.64/lib/gslj.gs-executable 2009-06-10 17:55:39.867359335 +0100 ++++ ghostscript-8.64/lib/gslj 2009-06-10 17:55:39.868359409 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -122,9 +122,9 @@ diff -up ghostscript-8.63/lib/gslj.gs-ex -exec "$GS_EXECUTABLE" -q -sDEVICE=laserjet -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" +exec "$gs" -q -sDEVICE=laserjet -r300 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" -diff -up ghostscript-8.63/lib/gslp.gs-executable ghostscript-8.63/lib/gslp ---- ghostscript-8.63/lib/gslp.gs-executable 2009-06-10 17:47:31.216483876 +0100 -+++ ghostscript-8.63/lib/gslp 2009-06-10 17:47:31.218484199 +0100 +diff -up ghostscript-8.64/lib/gslp.gs-executable ghostscript-8.64/lib/gslp +--- ghostscript-8.64/lib/gslp.gs-executable 2009-06-10 17:55:39.870359296 +0100 ++++ ghostscript-8.64/lib/gslp 2009-06-10 17:55:39.872359052 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -136,9 +136,9 @@ diff -up ghostscript-8.63/lib/gslp.gs-ex -exec "$GS_EXECUTABLE" -q -sDEVICE=epson -r180 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" +exec "$gs" -q -sDEVICE=epson -r180 -dNOPAUSE -sPROGNAME=$0 -- gslp.ps --heading-center "`date`" "$@" -diff -up ghostscript-8.63/lib/gsnd.gs-executable ghostscript-8.63/lib/gsnd ---- ghostscript-8.63/lib/gsnd.gs-executable 2009-06-10 17:47:31.220484607 +0100 -+++ ghostscript-8.63/lib/gsnd 2009-06-10 17:47:31.222483963 +0100 +diff -up ghostscript-8.64/lib/gsnd.gs-executable ghostscript-8.64/lib/gsnd +--- ghostscript-8.64/lib/gsnd.gs-executable 2009-06-10 17:55:39.874358723 +0100 ++++ ghostscript-8.64/lib/gsnd 2009-06-10 17:55:39.876358801 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -150,9 +150,9 @@ diff -up ghostscript-8.63/lib/gsnd.gs-ex -exec "$GS_EXECUTABLE" -dNODISPLAY "$@" +exec "$gs" -dNODISPLAY "$@" -diff -up ghostscript-8.63/lib/pdf2dsc.gs-executable ghostscript-8.63/lib/pdf2dsc ---- ghostscript-8.63/lib/pdf2dsc.gs-executable 2009-06-10 17:47:31.224483589 +0100 -+++ ghostscript-8.63/lib/pdf2dsc 2009-06-10 17:47:31.226484538 +0100 +diff -up ghostscript-8.64/lib/pdf2dsc.gs-executable ghostscript-8.64/lib/pdf2dsc +--- ghostscript-8.64/lib/pdf2dsc.gs-executable 2009-06-10 17:55:39.878358517 +0100 ++++ ghostscript-8.64/lib/pdf2dsc 2009-06-10 17:55:39.880358835 +0100 @@ -11,9 +11,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -171,9 +171,9 @@ diff -up ghostscript-8.63/lib/pdf2dsc.gs -exec "$GS_EXECUTABLE" -q -dNODISPLAY -dSAFER -dDELAYSAFER\ +exec "$gs" -q -dNODISPLAY -dSAFER -dDELAYSAFER\ -sPDFname="$pdffile" -sDSCname="$dscfile" pdf2dsc.ps -c quit -diff -up ghostscript-8.63/lib/pdf2ps.gs-executable ghostscript-8.63/lib/pdf2ps ---- ghostscript-8.63/lib/pdf2ps.gs-executable 2009-06-10 17:47:31.228483618 +0100 -+++ ghostscript-8.63/lib/pdf2ps 2009-06-10 17:47:31.230484001 +0100 +diff -up ghostscript-8.64/lib/pdf2ps.gs-executable ghostscript-8.64/lib/pdf2ps +--- ghostscript-8.64/lib/pdf2ps.gs-executable 2009-06-10 17:55:39.882358707 +0100 ++++ ghostscript-8.64/lib/pdf2ps 2009-06-10 17:55:39.884359406 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -191,9 +191,9 @@ diff -up ghostscript-8.63/lib/pdf2ps.gs- # appears before other options. -exec "$GS_EXECUTABLE" $OPTIONS -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pswrite "-sOutputFile=$outfile" $OPTIONS -c save pop -f "$1" +exec "$gs" $OPTIONS -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pswrite "-sOutputFile=$outfile" $OPTIONS -c save pop -f "$1" -diff -up ghostscript-8.63/lib/pdfopt.gs-executable ghostscript-8.63/lib/pdfopt ---- ghostscript-8.63/lib/pdfopt.gs-executable 2009-06-10 17:47:31.232484099 +0100 -+++ ghostscript-8.63/lib/pdfopt 2009-06-10 17:47:31.234484276 +0100 +diff -up ghostscript-8.64/lib/pdfopt.gs-executable ghostscript-8.64/lib/pdfopt +--- ghostscript-8.64/lib/pdfopt.gs-executable 2009-06-10 17:55:39.886358586 +0100 ++++ ghostscript-8.64/lib/pdfopt 2009-06-10 17:55:39.888358849 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -211,9 +211,9 @@ diff -up ghostscript-8.63/lib/pdfopt.gs- -exec "$GS_EXECUTABLE" -q -dNODISPLAY $OPTIONS -- pdfopt.ps "$1" "$2" +exec "$gs" -q -dNODISPLAY $OPTIONS -- pdfopt.ps "$1" "$2" -diff -up ghostscript-8.63/lib/pf2afm.gs-executable ghostscript-8.63/lib/pf2afm ---- ghostscript-8.63/lib/pf2afm.gs-executable 2009-06-10 17:47:31.236483632 +0100 -+++ ghostscript-8.63/lib/pf2afm 2009-06-10 17:47:31.238483689 +0100 +diff -up ghostscript-8.64/lib/pf2afm.gs-executable ghostscript-8.64/lib/pf2afm +--- ghostscript-8.64/lib/pf2afm.gs-executable 2009-06-10 17:55:39.890358746 +0100 ++++ ghostscript-8.64/lib/pf2afm 2009-06-10 17:55:39.892358698 +0100 @@ -10,8 +10,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -225,9 +225,9 @@ diff -up ghostscript-8.63/lib/pf2afm.gs- -exec "$GS_EXECUTABLE" -q -dNODISPLAY -dSAFER -dDELAYSAFER -- pf2afm.ps "$@" +exec "$gs" -q -dNODISPLAY -dSAFER -dDELAYSAFER -- pf2afm.ps "$@" -diff -up ghostscript-8.63/lib/pfbtopfa.gs-executable ghostscript-8.63/lib/pfbtopfa ---- ghostscript-8.63/lib/pfbtopfa.gs-executable 2009-06-10 17:47:31.240483907 +0100 -+++ ghostscript-8.63/lib/pfbtopfa 2009-06-10 17:47:31.242484154 +0100 +diff -up ghostscript-8.64/lib/pfbtopfa.gs-executable ghostscript-8.64/lib/pfbtopfa +--- ghostscript-8.64/lib/pfbtopfa.gs-executable 2009-06-10 17:55:39.894358695 +0100 ++++ ghostscript-8.64/lib/pfbtopfa 2009-06-10 17:55:39.896359133 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -245,9 +245,9 @@ diff -up ghostscript-8.63/lib/pfbtopfa.g -exec "$GS_EXECUTABLE" -q -dNODISPLAY -- pfbtopfa.ps "$1" "$outfile" +exec "$gs" -q -dNODISPLAY -- pfbtopfa.ps "$1" "$outfile" -diff -up ghostscript-8.63/lib/pphs.gs-executable ghostscript-8.63/lib/pphs ---- ghostscript-8.63/lib/pphs.gs-executable 2009-06-10 17:47:31.244484337 +0100 -+++ ghostscript-8.63/lib/pphs 2009-06-10 17:47:31.246484364 +0100 +diff -up ghostscript-8.64/lib/pphs.gs-executable ghostscript-8.64/lib/pphs +--- ghostscript-8.64/lib/pphs.gs-executable 2009-06-10 17:55:39.898358975 +0100 ++++ ghostscript-8.64/lib/pphs 2009-06-10 17:55:39.900359087 +0100 @@ -9,8 +9,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -259,9 +259,9 @@ diff -up ghostscript-8.63/lib/pphs.gs-ex -exec "$GS_EXECUTABLE" -q -dNODISPLAY -- pphs.ps "$@" +exec "$gs" -q -dNODISPLAY -- pphs.ps "$@" -diff -up ghostscript-8.63/lib/printafm.gs-executable ghostscript-8.63/lib/printafm ---- ghostscript-8.63/lib/printafm.gs-executable 2009-06-10 17:47:31.248484141 +0100 -+++ ghostscript-8.63/lib/printafm 2009-06-10 17:47:31.250485261 +0100 +diff -up ghostscript-8.64/lib/printafm.gs-executable ghostscript-8.64/lib/printafm +--- ghostscript-8.64/lib/printafm.gs-executable 2009-06-10 17:55:39.902358678 +0100 ++++ ghostscript-8.64/lib/printafm 2009-06-10 17:55:39.904358851 +0100 @@ -9,8 +9,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -273,9 +273,9 @@ diff -up ghostscript-8.63/lib/printafm.g -exec "$GS_EXECUTABLE" -q -dNODISPLAY -- printafm.ps "$@" +exec "$gs" -q -dNODISPLAY -- printafm.ps "$@" -diff -up ghostscript-8.63/lib/ps2epsi.gs-executable ghostscript-8.63/lib/ps2epsi ---- ghostscript-8.63/lib/ps2epsi.gs-executable 2009-06-10 17:47:31.252483864 +0100 -+++ ghostscript-8.63/lib/ps2epsi 2009-06-10 17:47:31.254484749 +0100 +diff -up ghostscript-8.64/lib/ps2epsi.gs-executable ghostscript-8.64/lib/ps2epsi +--- ghostscript-8.64/lib/ps2epsi.gs-executable 2009-06-10 17:55:39.906359755 +0100 ++++ ghostscript-8.64/lib/ps2epsi 2009-06-10 17:55:39.908359051 +0100 @@ -6,9 +6,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -291,14 +291,14 @@ diff -up ghostscript-8.63/lib/ps2epsi.gs } ' U="$USERNAME$LOGNAME" F=1 - F=2 "${infile}" >"$tmpfile" --"$GS_EXECUTABLE" -q -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null "$tmpfile" ps2epsi.ps "$tmpfile" <"${infile}" 1>&2 -+"$gs" -q -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null "$tmpfile" ps2epsi.ps "$tmpfile" <"${infile}" 1>&2 +-"$GS_EXECUTABLE" -q -sPAPERSIZE=a0 -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null "$tmpfile" ps2epsi.ps "$tmpfile" <"${infile}" 1>&2 ++"$gs" -q -sPAPERSIZE=a0 -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null "$tmpfile" ps2epsi.ps "$tmpfile" <"${infile}" 1>&2 rm -f "$tmpfile" rm -rf "$tmpdir" -diff -up ghostscript-8.63/lib/ps2pdfwr.gs-executable ghostscript-8.63/lib/ps2pdfwr ---- ghostscript-8.63/lib/ps2pdfwr.gs-executable 2009-06-10 17:47:31.256484129 +0100 -+++ ghostscript-8.63/lib/ps2pdfwr 2009-06-10 17:47:31.258484387 +0100 +diff -up ghostscript-8.64/lib/ps2pdfwr.gs-executable ghostscript-8.64/lib/ps2pdfwr +--- ghostscript-8.64/lib/ps2pdfwr.gs-executable 2009-06-10 17:55:39.910358261 +0100 ++++ ghostscript-8.64/lib/ps2pdfwr 2009-06-10 17:55:39.912359265 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -314,11 +314,11 @@ diff -up ghostscript-8.63/lib/ps2pdfwr.g # We have to include the options twice because -I only takes effect if it # appears before other options. --exec "$GS_EXECUTABLE" $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite "-sOutputFile=$outfile" $OPTIONS -c .setpdfwrite -f "$infile" -+exec "$gs" $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite "-sOutputFile=$outfile" $OPTIONS -c .setpdfwrite -f "$infile" -diff -up ghostscript-8.63/lib/ps2ps.gs-executable ghostscript-8.63/lib/ps2ps ---- ghostscript-8.63/lib/ps2ps.gs-executable 2009-06-10 17:47:31.260483878 +0100 -+++ ghostscript-8.63/lib/ps2ps 2009-06-10 17:47:31.262483424 +0100 +-exec "$GS_EXECUTABLE" $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr "-sOutputFile=$outfile" $OPTIONS -c .setpdfwrite -f "$infile" ++exec "$gs" $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr "-sOutputFile=$outfile" $OPTIONS -c .setpdfwrite -f "$infile" +diff -up ghostscript-8.64/lib/ps2ps.gs-executable ghostscript-8.64/lib/ps2ps +--- ghostscript-8.64/lib/ps2ps.gs-executable 2009-06-10 17:55:39.914358120 +0100 ++++ ghostscript-8.64/lib/ps2ps 2009-06-10 17:55:39.915358850 +0100 @@ -7,9 +7,8 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" @@ -334,11 +334,11 @@ diff -up ghostscript-8.63/lib/ps2ps.gs-e exit 1 fi --exec "$GS_EXECUTABLE" -q -sDEVICE=pswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1" -+exec "$gs" -q -sDEVICE=pswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1" -diff -up ghostscript-8.63/lib/wftopfa.gs-executable ghostscript-8.63/lib/wftopfa ---- ghostscript-8.63/lib/wftopfa.gs-executable 2009-06-10 17:47:31.264483887 +0100 -+++ ghostscript-8.63/lib/wftopfa 2009-06-10 17:47:31.266484275 +0100 +-exec "$GS_EXECUTABLE" -q -sDEVICE=pswrite -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1" ++exec "$gs" -q -sDEVICE=pswrite -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1" +diff -up ghostscript-8.64/lib/wftopfa.gs-executable ghostscript-8.64/lib/wftopfa +--- ghostscript-8.64/lib/wftopfa.gs-executable 2009-06-10 17:55:39.917358998 +0100 ++++ ghostscript-8.64/lib/wftopfa 2009-06-10 17:55:39.919358413 +0100 @@ -6,8 +6,7 @@ GS_EXECUTABLE=gs gs="`dirname $0`/$GS_EXECUTABLE" ghostscript-jbig2dec-nullderef.patch: jbig2_generic.c | 4 ++++ jbig2_symbol_dict.c | 20 ++++++++++++++++++++ jbig2_text.c | 6 ++++++ 3 files changed, 30 insertions(+) Index: ghostscript-jbig2dec-nullderef.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-jbig2dec-nullderef.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-jbig2dec-nullderef.patch 4 Jun 2009 12:51:00 -0000 1.1 +++ ghostscript-jbig2dec-nullderef.patch 30 Jul 2009 14:12:51 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ghostscript-8.63/jbig2dec/jbig2_generic.c.jbig2dec-nullderef ghostscript-8.63/jbig2dec/jbig2_generic.c ---- ghostscript-8.63/jbig2dec/jbig2_generic.c.jbig2dec-nullderef 2007-10-25 23:14:22.000000000 +0100 -+++ ghostscript-8.63/jbig2dec/jbig2_generic.c 2009-06-04 12:19:28.538632743 +0100 +diff -up ghostscript-8.64/jbig2dec/jbig2_generic.c.jbig2dec-nullderef ghostscript-8.64/jbig2dec/jbig2_generic.c +--- ghostscript-8.64/jbig2dec/jbig2_generic.c.jbig2dec-nullderef 2007-10-25 23:14:22.000000000 +0100 ++++ ghostscript-8.64/jbig2dec/jbig2_generic.c 2009-06-02 10:45:01.814127074 +0100 @@ -599,6 +599,10 @@ jbig2_immediate_generic_region(Jbig2Ctx memcpy (params.gbat, gbat, gbat_bytes); @@ -12,9 +12,9 @@ diff -up ghostscript-8.63/jbig2dec/jbig2 jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "allocated %d x %d image buffer for region decode results", rsi.width, rsi.height); -diff -up ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c.jbig2dec-nullderef ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c ---- ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c.jbig2dec-nullderef 2009-06-04 12:19:22.875757165 +0100 -+++ ghostscript-8.63/jbig2dec/jbig2_symbol_dict.c 2009-06-04 12:19:28.539632281 +0100 +diff -up ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c.jbig2dec-nullderef ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c +--- ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c.jbig2dec-nullderef 2009-06-02 10:45:01.809127374 +0100 ++++ ghostscript-8.64/jbig2dec/jbig2_symbol_dict.c 2009-06-02 10:45:01.814127074 +0100 @@ -370,6 +370,11 @@ jbig2_decode_symbol_dict(Jbig2Ctx *ctx, memcpy(region_params.gbat, params->sdat, sdat_bytes); @@ -56,9 +56,9 @@ diff -up ghostscript-8.63/jbig2dec/jbig2 jbig2_image_compose(ctx, glyph, image, -x, 0, JBIG2_COMPOSE_REPLACE); x += SDNEWSYMWIDTHS[j]; -diff -up ghostscript-8.63/jbig2dec/jbig2_text.c.jbig2dec-nullderef ghostscript-8.63/jbig2dec/jbig2_text.c ---- ghostscript-8.63/jbig2dec/jbig2_text.c.jbig2dec-nullderef 2008-05-09 15:00:44.000000000 +0100 -+++ ghostscript-8.63/jbig2dec/jbig2_text.c 2009-06-04 12:19:28.549632768 +0100 +diff -up ghostscript-8.64/jbig2dec/jbig2_text.c.jbig2dec-nullderef ghostscript-8.64/jbig2dec/jbig2_text.c +--- ghostscript-8.64/jbig2dec/jbig2_text.c.jbig2dec-nullderef 2008-05-09 15:00:44.000000000 +0100 ++++ ghostscript-8.64/jbig2dec/jbig2_text.c 2009-06-02 10:45:01.816126454 +0100 @@ -315,6 +315,9 @@ jbig2_decode_text_region(Jbig2Ctx *ctx, IBO = IB; image = jbig2_image_new(ctx, IBO->width + RDW, ghostscript-noopt.patch: int.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: ghostscript-noopt.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-noopt.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghostscript-noopt.patch 6 Jun 2005 13:36:55 -0000 1.3 +++ ghostscript-noopt.patch 30 Jul 2009 14:12:51 -0000 1.4 @@ -1,6 +1,7 @@ ---- ghostscript-7.07/src/int.mak.noopt 2005-03-10 17:22:53.000000000 +0000 -+++ ghostscript-7.07/src/int.mak 2005-03-10 17:24:10.000000000 +0000 -@@ -105,7 +105,7 @@ +diff -up ghostscript-8.64/psi/int.mak.noopt ghostscript-8.64/psi/int.mak +--- ghostscript-8.64/psi/int.mak.noopt 2008-12-26 07:25:31.000000000 +0000 ++++ ghostscript-8.64/psi/int.mak 2009-02-04 11:33:48.000000000 +0000 +@@ -111,7 +111,7 @@ $(PSOBJ)igc.$(OBJ) : $(PSSRC)igc.c $(GH) $(PSOBJ)igcref.$(OBJ) : $(PSSRC)igcref.c $(GH) $(memory__h)\ $(gsexit_h) $(gsstruct_h)\ $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h) ghostscript-pksmraw.patch: gxclrast.c | 2 -- 1 file changed, 2 deletions(-) Index: ghostscript-pksmraw.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-pksmraw.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-pksmraw.patch 31 Mar 2008 16:29:32 -0000 1.1 +++ ghostscript-pksmraw.patch 30 Jul 2009 14:12:51 -0000 1.2 @@ -1,7 +1,7 @@ -diff -up ghostscript-8.62/src/gxclrast.c.pksmraw ghostscript-8.62/src/gxclrast.c ---- ghostscript-8.62/src/gxclrast.c.pksmraw 2008-03-31 17:24:32.000000000 +0100 -+++ ghostscript-8.62/src/gxclrast.c 2008-03-31 17:25:33.000000000 +0100 -@@ -2606,8 +2606,6 @@ static int apply_create_compositor(gx_de +diff -up ghostscript-8.64/base/gxclrast.c.pksmraw ghostscript-8.64/base/gxclrast.c +--- ghostscript-8.64/base/gxclrast.c.pksmraw 2008-12-13 20:05:37.000000000 +0000 ++++ ghostscript-8.64/base/gxclrast.c 2009-02-04 11:36:25.000000000 +0000 +@@ -2685,8 +2685,6 @@ static int apply_create_compositor(gx_de rc_increment(tdev); *ptarget = tdev; } ghostscript-runlibfileifexists.patch: gs_init.ps | 9 +++++++++ 1 file changed, 9 insertions(+) Index: ghostscript-runlibfileifexists.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-runlibfileifexists.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ghostscript-runlibfileifexists.patch 30 Nov 2007 11:01:37 -0000 1.4 +++ ghostscript-runlibfileifexists.patch 30 Jul 2009 14:12:51 -0000 1.5 @@ -1,7 +1,7 @@ -diff -up ghostscript-8.61/lib/gs_init.ps.runlibfileifexists ghostscript-8.61/lib/gs_init.ps ---- ghostscript-8.61/lib/gs_init.ps.runlibfileifexists 2007-10-31 17:00:55.000000000 +0000 -+++ ghostscript-8.61/lib/gs_init.ps 2007-11-30 09:02:19.000000000 +0000 -@@ -671,6 +671,14 @@ systemdict /internaldict dup .makeintern +diff -up ghostscript-8.64/Resource/Init/gs_init.ps.runlibfileifexists ghostscript-8.64/Resource/Init/gs_init.ps +--- ghostscript-8.64/Resource/Init/gs_init.ps.runlibfileifexists 2009-01-08 09:17:18.000000000 +0000 ++++ ghostscript-8.64/Resource/Init/gs_init.ps 2009-02-04 11:35:19.000000000 +0000 +@@ -672,6 +672,14 @@ systemdict /internaldict dup .makeintern { /undefinedfilename signalerror } ifelse } bind def @@ -16,7 +16,7 @@ diff -up ghostscript-8.61/lib/gs_init.ps /selectdevice { finddevice setdevice .setdefaultscreen } bind def /signalerror % signalerror - -@@ -839,6 +847,7 @@ userdict /.currentresourcefile //null pu +@@ -840,6 +848,7 @@ userdict /.currentresourcefile //null pu } bind def % Temporarily substitute it for the real runlibfile. /.runlibfile /runlibfile load def ghostscript-scripts.patch: dvipdf | 2 +- pv.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) Index: ghostscript-scripts.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-scripts.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghostscript-scripts.patch 11 Jul 2007 11:43:45 -0000 1.3 +++ ghostscript-scripts.patch 30 Jul 2009 14:12:51 -0000 1.4 @@ -1,6 +1,16 @@ ---- ghostscript-8.60-r8112/lib/pv.sh.scripts 2007-07-05 11:41:52.000000000 +0100 -+++ ghostscript-8.60-r8112/lib/pv.sh 2007-07-10 16:08:47.000000000 +0100 -@@ -31,7 +31,7 @@ +diff -up ghostscript-8.64/lib/dvipdf.scripts ghostscript-8.64/lib/dvipdf +--- ghostscript-8.64/lib/dvipdf.scripts 2009-01-10 22:11:18.000000000 +0000 ++++ ghostscript-8.64/lib/dvipdf 2009-02-04 11:32:31.000000000 +0000 +@@ -44,4 +44,4 @@ fi + + # We have to include the options twice because -I only takes effect if it + # appears before other options. +-exec dvips -Ppdf $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - ++exec dvips -R -Ppdf $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - +diff -up ghostscript-8.64/lib/pv.sh.scripts ghostscript-8.64/lib/pv.sh +--- ghostscript-8.64/lib/pv.sh.scripts 2007-07-05 11:41:52.000000000 +0100 ++++ ghostscript-8.64/lib/pv.sh 2009-02-04 11:31:32.000000000 +0000 +@@ -31,7 +31,7 @@ fi GS_EXECUTABLE=gs TEMPDIR=. @@ -9,7 +19,7 @@ shift FILE="$1" shift -@@ -44,7 +44,7 @@ +@@ -44,7 +44,7 @@ else tmpfile="$TEMPDIR/$FILE.$$.pv" fi trap "rm -rf $tmpfile" 0 1 2 15 @@ -19,11 +29,3 @@ +dvips -R -p $PAGE -n 1 "$FILE" "$@" -o $tmpfile $GS_EXECUTABLE $tmpfile exit 0 ---- ghostscript-8.60-r8112/lib/dvipdf.scripts 2007-07-10 16:08:57.000000000 +0100 -+++ ghostscript-8.60-r8112/lib/dvipdf 2007-07-10 16:09:17.000000000 +0100 -@@ -44,4 +44,4 @@ - - # We have to include the options twice because -I only takes effect if it - # appears before other options. --exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - -+exec dvips -R $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - ghostscript-system-jasper.patch: sjpx.c | 9 --------- 1 file changed, 9 deletions(-) Index: ghostscript-system-jasper.patch =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript-system-jasper.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghostscript-system-jasper.patch 22 Feb 2008 14:25:28 -0000 1.1 +++ ghostscript-system-jasper.patch 30 Jul 2009 14:12:51 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ghostscript-8.61/src/sjpx.c.system-jasper ghostscript-8.61/src/sjpx.c ---- ghostscript-8.61/src/sjpx.c.system-jasper 2008-02-22 14:10:00.000000000 +0000 -+++ ghostscript-8.61/src/sjpx.c 2008-02-22 14:10:15.000000000 +0000 +diff -up ghostscript-8.64/base/sjpx.c.system-jasper ghostscript-8.64/base/sjpx.c +--- ghostscript-8.64/base/sjpx.c.system-jasper 2008-08-21 00:22:49.000000000 +0100 ++++ ghostscript-8.64/base/sjpx.c 2009-02-04 11:35:56.000000000 +0000 @@ -34,14 +34,6 @@ static void s_jpxd_set_defaults(stream_s private_st_jpxd_state(); /* creates a gc object for our state, defined in sjpx.h */ Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/ghostscript.spec,v retrieving revision 1.182 retrieving revision 1.183 diff -u -p -r1.182 -r1.183 --- ghostscript.spec 10 Jun 2009 17:00:16 -0000 1.182 +++ ghostscript.spec 30 Jul 2009 14:12:51 -0000 1.183 @@ -1,13 +1,15 @@ -%define gs_ver 8.63 -%define gs_dot_ver 8.63 +%define gs_ver 8.64 +%define gs_dot_ver 8.64 %{expand: %%define build_with_freetype %{?_with_freetype:1}%{!?_with_freetype:0}} -Summary: A PostScript(TM) interpreter and renderer. +Summary: A PostScript interpreter and renderer. Name: ghostscript Version: %{gs_ver} -Release: 8%{?dist} +Release: 11%{?dist} -License: GPLv2 +# Included CMap data is Redistributable, no modification permitted, +# see http://bugzilla.redhat.com/487510 +License: GPLv2 and Redistributable, no modification permitted URL: http://www.ghostscript.com/ Group: Applications/Publishing Source0: ghostscript-%{gs_ver}.tar.bz2 @@ -21,10 +23,10 @@ Patch4: ghostscript-fPIC.patch Patch5: ghostscript-runlibfileifexists.patch Patch6: ghostscript-system-jasper.patch Patch7: ghostscript-pksmraw.patch -Patch8: ghostscript-CVE-2009-0583,0584.patch -Patch9: ghostscript-CVE-2009-0792.patch -Patch10: ghostscript-CVE-2009-0196.patch -Patch11: ghostscript-CVE-2008-6679.patch +Patch8: ghostscript-bitcmyk.patch +Patch9: ghostscript-CVE-2009-0583,0584.patch +Patch10: ghostscript-CVE-2009-0792.patch +Patch11: ghostscript-CVE-2009-0196.patch Patch12: ghostscript-jbig2dec-nullderef.patch Patch13: ghostscript-gs-executable.patch @@ -48,7 +50,7 @@ Conflicts: ttfonts-zh_CN < 2.12-2 Conflicts: ttfonts-zh_TW < 2.11-20 %description -Ghostscript is a set of software that provides a PostScript(TM) +Ghostscript is a set of software that provides a PostScript interpreter, a set of C procedures (the Ghostscript library, which implements the graphics capabilities in the PostScript language) and an interpreter for Portable Document Format (PDF) files. Ghostscript @@ -79,7 +81,7 @@ Group: Documentation The documentation files that come with ghostscript. %package gtk -Summary: A GTK-enabled PostScript(TM) interpreter and renderer. +Summary: A GTK-enabled PostScript interpreter and renderer. Requires: %{name} = %{version}-%{release} Group: Applications/Publishing @@ -103,27 +105,27 @@ rm -rf libpng zlib jpeg jasper %patch4 -p1 -b .fPIC # Define .runlibfileifexists. -%patch5 -p1 -b .runlibfileifexists +%patch5 -p1 %patch6 -p1 -b .system-jasper # Fix pksmraw output (bug #308211). Still needed in 8.63. %patch7 -p1 -b .pksmraw +# Fix bitcmyk driver (bug #486644). +%patch8 -p1 -b .bitcmyk + # Applied patch to fix CVE-2009-0583 (bug #487742) and CVE-2009-0584 # (bug #487744). -%patch8 -p1 -b .CVE-2009-0583,0584 +%patch9 -p1 -b .CVE-2009-0583,0584 # Applied patch to fix CVE-2009-0792 (bug #491853). -%patch9 -p1 -b .CVE-2009-0792 +%patch10 -p1 -b .CVE-2009-0792 # Applied patch to fix CVE-2009-0196 (bug #493379). -%patch10 -p1 -b .CVE-2009-0196 - -# Applied patch to fix CVE-2008-6679 (bug #493445). -%patch11 -p1 -b .CVE-2008-6679 +%patch11 -p1 -b .CVE-2009-0196 -# Applied patch to fix NULL dereference in jbig2dec (bug #503991). +# Applied patch to fix NULL dereference in JBIG2 decoder (bug #501710). %patch12 -p1 -b .jbig2dec-nullderef # Fix scripts so they don't get broken on install (bug #502550). @@ -182,6 +184,7 @@ make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTR make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} %endif +make cups %install rm -rf $RPM_BUILD_ROOT @@ -194,7 +197,7 @@ make install soinstall \ prefix=$RPM_BUILD_ROOT%{_prefix} \ mandir=$RPM_BUILD_ROOT%{_mandir} \ datadir=$RPM_BUILD_ROOT%{_datadir} \ - gsincludedir=$RPM_BUILD_ROOT%{_includedir}/ghostscript \ + gsincludedir=$RPM_BUILD_ROOT%{_includedir}/ghostscript/ \ bindir=$RPM_BUILD_ROOT%{_bindir} \ libdir=$RPM_BUILD_ROOT%{_libdir} \ docdir=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{gs_dot_ver} \ @@ -215,18 +218,15 @@ echo ".so man1/gs.1" > $RPM_BUILD_ROOT/% ln -sf gs $RPM_BUILD_ROOT/usr/bin/ghostscript # Rename an original cidfmap to cidfmap.GS -mv $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/lib/cidfmap{,.GS} +mv $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/cidfmap{,.GS} # Install our own cidfmap to allow the separated # cidfmap which the font packages own. -install -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/lib/CIDFnmap -install -m0644 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/lib/cidfmap +install -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/CIDFnmap +install -m0644 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/cidfmap # Header files. mkdir -p $RPM_BUILD_ROOT%{_includedir}/ghostscript -install -m0644 src/iapi.h $RPM_BUILD_ROOT%{_includedir}/ghostscript -install -m0644 src/ierrors.h $RPM_BUILD_ROOT%{_includedir}/ghostscript -install -m0644 src/errors.h $RPM_BUILD_ROOT%{_includedir}/ghostscript -install -m0644 src/gdevdsp.h $RPM_BUILD_ROOT%{_includedir}/ghostscript +install -m0644 base/errors.h $RPM_BUILD_ROOT%{_includedir}/ghostscript # Don't ship pkgconfig files. rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/ijs.pc @@ -239,9 +239,6 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/cup rm -f $RPM_BUILD_ROOT%{_libdir}/cups/filter/pstoraster rm -f $RPM_BUILD_ROOT/usr/lib/cups/filter/pstoraster -# Don't ship two copies of Resource. Just the versioned one will do. -rm -rf $RPM_BUILD_ROOT%{_datadir}/ghostscript/Resource - # Don't ship URW fonts; we already have them. rm -rf $RPM_BUILD_ROOT%{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Font @@ -258,8 +255,8 @@ find $RPM_BUILD_ROOT%{_mandir}/de/man1 - rm -f $RPM_BUILD_ROOT%{_bindir}/fixmswrd.pl MAIN_PWD=`pwd` -(cd $RPM_BUILD_ROOT; find ./usr/share/ghostscript/%{gs_dot_ver}/lib -type f | \ - sed -e 's/\.//;' | grep -v lib/Fontmap* | grep -v gs_init.ps > $MAIN_PWD/rpm.sharelist +(cd $RPM_BUILD_ROOT; find ./usr/share/ghostscript/%{gs_dot_ver}/Resource -type f | \ + sed -e 's/\.//;' | grep -v Fontmap | grep -v gs_init.ps > $MAIN_PWD/rpm.sharelist find .%{_bindir}/ | sed -e 's/\.//;' | \ grep -v '/$\|/hpijs$\|/gsx$\|/ijs-config$' \ >> $MAIN_PWD/rpm.sharelist) @@ -278,11 +275,12 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/ghostscript %dir %{_datadir}/ghostscript/conf.d %dir %{_datadir}/ghostscript/%{gs_dot_ver} -%dir %{_datadir}/ghostscript/%{gs_dot_ver}/lib -%config %{_datadir}/ghostscript/%{gs_dot_ver}/lib/gs_init.ps -%config %{_datadir}/ghostscript/%{gs_dot_ver}/lib/Fontmap* -%{_datadir}/ghostscript/%{gs_dot_ver}/Resource/ +%dir %{_datadir}/ghostscript/%{gs_dot_ver}/Resource +%dir %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init +%config %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init/gs_init.ps +%config %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init/Fontmap* %{_datadir}/ghostscript/%{gs_dot_ver}/examples +%{_datadir}/ghostscript/%{gs_dot_ver}/lib %{_mandir}/man*/* %lang(de) %{_mandir}/de/man*/* %{_libdir}/libgs.so.* @@ -292,6 +290,7 @@ rm -rf $RPM_BUILD_ROOT /usr/lib/cups/filter/pstopxl %{_datadir}/cups/model/pxl* %config(noreplace) /etc/ghostscript/%{gs_dot_ver}/* +/usr/lib/cups/filter/pdftoraster %files doc %defattr(-,root,root) @@ -313,21 +312,41 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog -* Wed Jun 10 2009 Tim Waugh 8.63-8 +* Thu Jul 30 2009 Tim Waugh 8.64-11 +- Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of + points, not 100, and by not treating a missing black point tag as an + error (bug #487744). + +* Thu Jul 30 2009 Rex Dieter - 8.64-10 +- License: GPLv2 and Redistributable, no modification permitted (bug #487510) + +* Fri Jul 24 2009 Fedora Release Engineering - 8.64-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jun 10 2009 Tim Waugh 8.64-8 - Fix scripts so they don't get broken on install (bug #502550). -* Thu Jun 4 2009 Tim Waugh 8.63-7 -- Applied patch to fix NULL dereference in jbig2dec (bug #503991). +* Thu Jun 4 2009 Tim Waugh 8.64-7 +- Applied patch to fix NULL dereference in JBIG2 decoder (bug #503995). -* Wed Apr 15 2009 Tim Waugh 8.63-6 +* Wed Apr 15 2009 Tim Waugh 8.64-6 - Applied patch to fix CVE-2009-0792 (bug #491853). - Applied patch to fix CVE-2009-0196 (bug #493379). -- Applied patch to fix CVE-2008-6679 (bug #493445). -* Fri Mar 20 2009 Tim Waugh 8.63-5 +* Fri Mar 20 2009 Tim Waugh 8.64-5 - Applied patch to fix CVE-2009-0583 (bug #487742) and CVE-2009-0584 (bug #487744). +* Tue Feb 24 2009 Fedora Release Engineering - 8.64-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 17 2009 Tim Waugh 8.64-3 +- Fix bitcmyk driver (bug #486644). + +* Wed Feb 4 2009 Tim Waugh 8.64-2 +- 8.64 (bug #483958). +- Removed trade marks to avoid any potential confusion. + * Fri Oct 17 2008 Tim Waugh - Removed last patch (unsuccessful). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-10/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 4 Aug 2008 10:15:59 -0000 1.31 +++ sources 30 Jul 2009 14:12:51 -0000 1.32 @@ -1,3 +1,3 @@ 2fbae60417d42779f6488ab897dcaaf6 acro5-cmaps-2001.tar.gz dfc93dd2aaaf2b86d2fd55f654c13261 adobe-cmaps-200406.tar.gz -c770eedfdd846a53e211e3ba5339de21 ghostscript-8.63.tar.bz2 +b13289cb2115f38f40c5e064f87e228a ghostscript-8.64.tar.bz2 --- ghostscript-CVE-2008-6679.patch DELETED --- From eseyman at fedoraproject.org Thu Jul 30 14:16:10 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 30 Jul 2009 14:16:10 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/devel .cvsignore, 1.2, 1.3 perl-CGI-Application-Plugin-FillInForm.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730141610.2FB9E11C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24785 Modified Files: .cvsignore perl-CGI-Application-Plugin-FillInForm.spec sources Log Message: Update to 1.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Jul 2009 09:15:07 -0000 1.2 +++ .cvsignore 30 Jul 2009 14:16:09 -0000 1.3 @@ -1 +1 @@ -CGI-Application-Plugin-FillInForm-1.14.tar.gz +CGI-Application-Plugin-FillInForm-1.15.tar.gz Index: perl-CGI-Application-Plugin-FillInForm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/perl-CGI-Application-Plugin-FillInForm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CGI-Application-Plugin-FillInForm.spec 26 Jul 2009 03:55:37 -0000 1.2 +++ perl-CGI-Application-Plugin-FillInForm.spec 30 Jul 2009 14:16:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-FillInForm -Version: 1.14 -Release: 2%{?dist} +Version: 1.15 +Release: 1%{?dist} Summary: Integrate CGI::Application with HTML::FillInForm License: GPL+ or Artistic Group: Development/Libraries @@ -42,11 +42,14 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc CAP-FillInForm.html Changes changes.txt README readme.txt +%doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Emmanuel Seyman 1.15-1 +- Update to 1.15 + * Sat Jul 25 2009 Fedora Release Engineering - 1.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Jul 2009 09:15:07 -0000 1.2 +++ sources 30 Jul 2009 14:16:09 -0000 1.3 @@ -1 +1 @@ -9f469b797e880a299b7be2fb6b746414 CGI-Application-Plugin-FillInForm-1.14.tar.gz +079f52e7f17a75f256279755a1ba3148 CGI-Application-Plugin-FillInForm-1.15.tar.gz From pkgdb at fedoraproject.org Thu Jul 30 14:16:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:16:13 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141613.CD6CE10F875@bastion2.fedora.phx.redhat.com> dougsland has set the watchbugzilla acl on zbar (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:16:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:16:21 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141621.BB9EA10F856@bastion2.fedora.phx.redhat.com> dougsland has set the watchcommits acl on zbar (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:16:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:16:32 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141632.7245B10F875@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora devel) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:16:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:16:37 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141637.70D1010F856@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora devel) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:30 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141730.48C2510F856@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:33 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141733.5A2E310F889@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:52 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141752.7F57D10F875@bastion2.fedora.phx.redhat.com> dougsland has set the watchbugzilla acl on zbar (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:52 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141752.CC9A610F8B0@bastion2.fedora.phx.redhat.com> dougsland has set the watchcommits acl on zbar (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:55 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141755.98D0110F89D@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora 10) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:57 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141757.326FC10F87E@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:00 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141800.6EFAF10F8B7@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:04 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141804.CAD1710F8B6@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora 11) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:06 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141806.B9DB210F8BB@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora 11) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:10 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141810.425A310F875@bastion2.fedora.phx.redhat.com> dougsland has set the watchbugzilla acl on zbar (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:13 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141813.245BA10F8B0@bastion2.fedora.phx.redhat.com> dougsland has set the watchcommits acl on zbar (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:15 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141815.4053C10F8C0@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:17 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141817.6B9AE10F8B1@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:21 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141821.9D2CB10F8BF@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora EPEL 5) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:23 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141823.A422710F8C6@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora EPEL 5) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:17:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:17:58 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141758.333D610F8A1@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora 10) to Approved for dougsland To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:25 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141825.B018E10F87E@bastion2.fedora.phx.redhat.com> dougsland has set the approveacls acl on zbar (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:28 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141828.3286F10F889@bastion2.fedora.phx.redhat.com> dougsland has set the commit acl on zbar (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:30 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141830.8E4A910F8CD@bastion2.fedora.phx.redhat.com> dougsland has set the watchcommits acl on zbar (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From pkgdb at fedoraproject.org Thu Jul 30 14:18:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:18:33 +0000 Subject: [pkgdb] zbar had acl change status Message-ID: <20090730141833.D730010F8CF@bastion2.fedora.phx.redhat.com> dougsland has set the watchbugzilla acl on zbar (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zbar From rineau at fedoraproject.org Thu Jul 30 14:25:08 2009 From: rineau at fedoraproject.org (Laurent Rineau) Date: Thu, 30 Jul 2009 14:25:08 +0000 (UTC) Subject: rpms/CGAL/devel .cvsignore, 1.5, 1.6 CGAL.spec, 1.25, 1.26 sources, 1.5, 1.6 CGAL-3.2.1-install_cgal-no_versions_in_compiler_config.h.patch, 1.1, NONE CGAL-3.3-build-library.patch, 1.1, NONE CGAL-install_cgal-SUPPORT_REQUIRED.patch, 1.2, NONE Message-ID: <20090730142508.7F0CE11C00D3@cvs1.fedora.phx.redhat.com> Author: rineau Update of /cvs/pkgs/rpms/CGAL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27906 Modified Files: .cvsignore CGAL.spec sources Removed Files: CGAL-3.2.1-install_cgal-no_versions_in_compiler_config.h.patch CGAL-3.3-build-library.patch CGAL-install_cgal-SUPPORT_REQUIRED.patch Log Message: * Thu Jul 30 2009 Laurent Rineau - 3.5-0.1.beta1 - Update to CGAL-3.5-beta1. - New compilation process: CMake. - No longer any need for patches. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/CGAL/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Sep 2007 19:58:59 -0000 1.5 +++ .cvsignore 30 Jul 2009 14:25:07 -0000 1.6 @@ -1 +1 @@ -CGAL-3.3.1.tar.gz +CGAL-3.5-beta1.tar.gz Index: CGAL.spec =================================================================== RCS file: /cvs/pkgs/rpms/CGAL/devel/CGAL.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- CGAL.spec 24 Jul 2009 15:02:10 -0000 1.25 +++ CGAL.spec 30 Jul 2009 14:25:08 -0000 1.26 @@ -1,34 +1,28 @@ -%define boost_version 1.32 +%define boost_version 1.33 +%define qt_version 4.2 Name: CGAL -Version: 3.3.1 -Release: 14%{?dist} +Version: 3.5 +Release: 0.1.beta1%{?dist} Summary: Computational Geometry Algorithms Library Group: System Environment/Libraries License: QPL and LGPLv2 and LGPLv2+ URL: http://www.cgal.org/ -Source0: ftp://ftp.mpi-sb.mpg.de/pub/outgoing/CGAL/%{name}-%{version}.tar.gz +Source0: http://gforge.inria.fr/frs/download.php/22710/CGAL-3.5-beta1.tar.gz Source10: CGAL-README.Fedora -Patch1: CGAL-install_cgal-SUPPORT_REQUIRED.patch -Patch2: CGAL-3.3-build-library.patch -Patch4: CGAL-3.2.1-install_cgal-no_versions_in_compiler_config.h.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Required devel packages. +BuildRequires: cmake BuildRequires: gmp-devel -BuildRequires: boost-devel >= %boost_version +BuildRequires: boost-devel >= %{boost_version} BuildRequires: qt3-devel +BuildRequires: qt-devel >= %{qt_version} BuildRequires: zlib-devel BuildRequires: blas-devel lapack-devel -%if 0%fedora > 7 BuildRequires: mpfr-devel -%endif - -# CGAL-libs is renamed to CGAL. -Obsoletes: %{name}-libs < %{version}-%{release} -Provides: %{name}-libs = %{version}-%{release} %description Libraries for CGAL applications. @@ -42,197 +36,58 @@ access to useful, reliable geometric alg %package devel Group: Development/Libraries Summary: Development files and tools for CGAL applications +Requires: cmake Requires: %{name} = %{version}-%{release} Requires: boost-devel >= %{boost_version} -Requires: blas-devel lapack-devel qt3-devel zlib-devel gmp-devel +Requires: qt-devel >= %{qt_version} +Requires: blas-devel lapack-devel qt3-develzlib-devel gmp-devel Requires: %{_sysconfdir}/profile.d -%if 0%fedora > 7 Requires: mpfr-devel -%endif %description devel The %{name}-devel package provides the headers files and tools you may need to develop applications using CGAL. %package demos-source -BuildArch: noarch Group: Documentation Summary: Examples and demos of CGAL algorithms -Requires: %{name} = %{version}-%{release} -Obsoletes: %{name}-demo < %{version}-%{release} -Provides: %{name}-demo = %{version}-%{release} +Requires: %{name}-devel = %{version}-%{release} %description demos-source The %{name}-demos-source package provides the sources of examples and demos of CGAL algorithms. %prep -%setup -q - -%patch1 -p0 -b .support-required.bak -%patch2 -p1 -b .build-library.bak - -%patch4 -p1 -b .no_versions.bak +%setup -q -n CGAL-3.5-beta1 -chmod a-x examples/Nef_3/handling_double_coordinates.cin - - - -# fix end-of-lines of several files -for f in demo/Straight_skeleton_2/data/vertex_event_9.poly \ - demo/Straight_skeleton_2/data/vertex_event_0.poly \ - examples/Surface_mesh_parameterization/data/mask_cone.off \ - examples/Boolean_set_operations_2/test.dxf; -do - if [ -r $f ]; then - sed -i.bak 's/\r//' $f; - touch -r ${f}.bak $f - rm -f ${f}.bak - fi -done +chmod a-x demo/Circular_kernel_2/Circular_kernel_2.qrc # Install README.Fedora here, to include it in %doc install -p -m 644 %{SOURCE10} ./README.Fedora %build - -source %{_sysconfdir}/profile.d/qt.sh - -./install_cgal -ni g++ --CUSTOM_CXXFLAGS "$RPM_OPT_FLAGS" \ - --without-autofind \ - --with-ZLIB \ - --with-BOOST \ - --with-BOOST_PROGRAM_OPTIONS \ - --with-X11 \ - --with-GMP \ - --with-GMPXX \ - --with-MPFR \ - --with-QT3MT \ - --with-REFBLASSHARED \ - --with-DEFAULTLAPACK \ - --with-OPENGL \ - --disable-static +mkdir build +pushd build +%cmake -DCGAL_INSTALL_LIB_DIR=%{_lib} .. +make VERBOSE=1 %{?_smp_mflags} +popd %install rm -rf %{buildroot} -case "%{_arch}" in - *64* | s390 ) - SUFFIX=64 ;; - * ) - SUFFIX=32 ;; -esac - -# Install headers -mkdir -p %{buildroot}%{_includedir} -cp -a include/* %{buildroot}%{_includedir} -rm -rf %{buildroot}%{_includedir}/CGAL/config/msvc* -mv %{buildroot}%{_includedir}/CGAL/config/*/CGAL/compiler_config.h %{buildroot}%{_includedir}/CGAL/compiler_config.h -# remove the arch-specific comment -sed -i -e '/System: / d' %{buildroot}%{_includedir}/CGAL/compiler_config.h -# use the timestamp of install_cgal -touch -r %{_builddir}/%{name}-%{version}/install_cgal %{buildroot}%{_includedir}/CGAL/compiler_config.h -rm -rf %{buildroot}%{_includedir}/CGAL/config - -# Install scripts (only those prefixed with "cgal_"). -mkdir -p %{buildroot}%{_bindir} -install -p scripts/cgal_* %{buildroot}%{_bindir} - -# Install libraries -mkdir -p %{buildroot}%{_libdir} -cp -a lib/*/lib* %{buildroot}%{_libdir} +pushd build -# Install makefile: -mkdir -p %{buildroot}%{_datadir}/CGAL -touch -r make %{buildroot}%{_datadir}/CGAL -install -p make/makefile_* %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk +make install DESTDIR=$RPM_BUILD_ROOT + +popd # Install demos and examples -mkdir -p %{buildroot}%{_datadir}/CGAL/ +mkdir -p %{buildroot}%{_datadir}/CGAL touch -r demo %{buildroot}%{_datadir}/CGAL/ cp -a demo %{buildroot}%{_datadir}/CGAL/demo cp -a examples %{buildroot}%{_datadir}/CGAL/examples -# Modify makefile -cat > makefile.sed <<'EOF' -s,CGAL_INCL_DIR *=.*,CGAL_INCL_DIR = %{_includedir},; -s,CGAL_LIB_DIR *=.*,CGAL_LIB_DIR = %{_libdir},; -/CUSTOM_CXXFLAGS/ s/-O2 //; -/CUSTOM_CXXFLAGS/ s/-g //; -/CGAL_INCL_DIR/ s,/CGAL/config/.*,,; -s,/$(CGAL_OS_COMPILER),,g; -/-I.*CGAL_INCL_CONF_DIR/ d -EOF - -# use -i.bak to generate cgal-${SUFFIX}.mk.bak with right timestamp -# used below to restore the timestamp -sed -i.bak -f makefile.sed %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk - -# check if the sed script above has worked: -grep -q %{_builddir} %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false -grep -q %{buildroot} %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false -grep -q CGAL/config %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false -grep -q -E 'CUSTOM_CXXFLAGS.*(-O2|-g)' %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false - -# Remove -L and -R flags from the makefile -cat > makefile-noprefix.sed <<'EOF' -/'-L$(CGAL_LIB_DIR)'/ d; -/-R$(CGAL_LIB_DIR)/ d; -/'-I$(CGAL_INCL_DIR)'/ d; -EOF - -sed -i -f makefile-noprefix.sed %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk - -# restore the timestamp and remove the .bak file -touch -r %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk.bak %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk -rm -f %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk.bak - -# check that the sed script has worked -grep -q -E -- '-[LI]\$' %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false -grep -q -E -- '-R' %{buildroot}%{_datadir}/CGAL/cgal-${SUFFIX}.mk && false - - -# Create %{_sysconfdir}/profile.d/ scripts -cd %{buildroot} -mkdir -p .%{_sysconfdir}/profile.d -cat > .%{_sysconfdir}/profile.d/cgal.sh < .%{_sysconfdir}/profile.d/cgal.csh < - 3.5-0.1.beta1 +- Update to CGAL-3.5-beta1. +- New compilation process: CMake. +- No longer any need for patches. + * Fri Jul 24 2009 Fedora Release Engineering - 3.3.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -285,48 +143,48 @@ rm -rf %{buildroot} * Tue Apr 1 2008 Laurent Rineau - 3.3.1-10 - Rebuild for Rawhide. BR: qt3-devel instead of qt-devel (which is now Qt-4.x). -* Mon Feb 11 2008 Laurent Rineau - 3.3.1-9%{dist} +* Mon Feb 11 2008 Laurent Rineau - 3.3.1-9 - Rebuild with g++-4.3. -* Mon Nov 5 2007 Laurent Rineau - 3.3.1-8%{dist} +* Mon Nov 5 2007 Laurent Rineau - 3.3.1-8 - Add Requires: mpfr-devel for CGAL-devel. -* Mon Oct 22 2007 Laurent Rineau - 3.3.1-6%{dist} +* Mon Oct 22 2007 Laurent Rineau - 3.3.1-6 - fix /etc/profile.d/cgal.* -* Sun Oct 21 2007 Laurent Rineau - 3.3.1-3%{dist} +* Sun Oct 21 2007 Laurent Rineau - 3.3.1-3 - gawk and coreutils are not required in BR (see exceptions list) - fix multilib issues (bug #340821): - rename %%{_datadir}/CGAL/cgal.mk to %%{_datadir}/CGAL/cgal-%%{_arch}.mk - remove the arch-specific comment from %%{_includedir}/CGAL/compiler_config.h -* Mon Sep 3 2007 Laurent Rineau - 3.3.1-2%{dist} +* Mon Sep 3 2007 Laurent Rineau - 3.3.1-2 - Fix soversion. -* Mon Sep 3 2007 Laurent Rineau - 3.3.1-1%{dist} +* Mon Sep 3 2007 Laurent Rineau - 3.3.1-1 - New upstream bug-fixes release. -* Fri Aug 24 2007 Laurent Rineau - 3.3-7%{dist} +* Fri Aug 24 2007 Laurent Rineau - 3.3-7 - Add BR: mpfr since F-8. -* Fri Aug 24 2007 Laurent Rineau - 3.3-6%{dist} +* Fri Aug 24 2007 Laurent Rineau - 3.3-6 - Add BR: gawk -* Thu Aug 23 2007 Laurent Rineau - 3.3-5%{dist} +* Thu Aug 23 2007 Laurent Rineau - 3.3-5 - License: tag fixed. -* Thu Jun 7 2007 Laurent Rineau - 3.3-4%{?dist} +* Thu Jun 7 2007 Laurent Rineau - 3.3-4 - Move the makefile back to %%{_datadir}/CGAL, and rename it cgal.mk (sync with Debian package). That file is not a config file, but just an example .mk file that can be copied and adapted by users. - Fix the %%{_sysconfdir}/profile.d/cgal.* files (the csh one was buggy). - CGAL-devel now requires all its dependancies. -* Sat Jun 2 2007 Laurent Rineau - 3.3-2%{?dist} +* Sat Jun 2 2007 Laurent Rineau - 3.3-2 - Official CGAL-3.3 release - Skip file named "skip_vcproj_auto_generation" -* Wed May 30 2007 Laurent Rineau - 3.3-0.1.RC1%{?dist} +* Wed May 30 2007 Laurent Rineau - 3.3-0.1.RC1 - New upstream version: 3.3-RC1 - Obsolete patches CGAL-3.2.1-build-libCGALQt-shared.patch, CGAL-3.2.1-build-no-static-lib.patch, Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/CGAL/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 3 Sep 2007 19:58:59 -0000 1.5 +++ sources 30 Jul 2009 14:25:08 -0000 1.6 @@ -1 +1 @@ -733339b6b05b48d4c7934a6e735b6fc0 CGAL-3.3.1.tar.gz +15d9fa20689f863d045f8465230923fd CGAL-3.5-beta1.tar.gz --- CGAL-3.2.1-install_cgal-no_versions_in_compiler_config.h.patch DELETED --- --- CGAL-3.3-build-library.patch DELETED --- --- CGAL-install_cgal-SUPPORT_REQUIRED.patch DELETED --- From nushio at fedoraproject.org Thu Jul 30 14:31:24 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Thu, 30 Jul 2009 14:31:24 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel gnome-do-plugins.spec,1.3,1.4 Message-ID: <20090730143124.E82DA11C00D3@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29898 Modified Files: gnome-do-plugins.spec Log Message: Index: gnome-do-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/devel/gnome-do-plugins.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-do-plugins.spec 25 Jul 2009 00:37:58 -0000 1.3 +++ gnome-do-plugins.spec 30 Jul 2009 14:31:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: gnome-do-plugins Version: 0.8.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ @@ -76,6 +76,7 @@ gnome-do plugins for epiphany Summary: gnome-do-plugins for evolution Group: Applications/Productivity BuildRequires: evolution-sharp-devel +Requires: evolution-sharp Requires: gnome-do >= %{version} evolution Requires: gnome-do-plugins = %{version} @@ -274,6 +275,9 @@ rm -rf %{buildroot} %{_libdir}/gnome-do/plugins/* %changelog +* Thu Jul 30 2009 Juan Rodriguez 0.8.1-7 +- Fixes evolution plugin + * Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 30 14:32:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:32:37 +0000 Subject: [pkgdb] kernel: dougsland has requested watchcommits Message-ID: <20090730143238.501D710F89D@bastion2.fedora.phx.redhat.com> dougsland has requested the watchcommits acl on kernel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From nushio at fedoraproject.org Thu Jul 30 14:35:05 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Thu, 30 Jul 2009 14:35:05 +0000 (UTC) Subject: rpms/gnome-do-plugins/F-11 gnome-do-plugins.spec,1.2,1.3 Message-ID: <20090730143505.4CADC11C00D3@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31302 Modified Files: gnome-do-plugins.spec Log Message: Index: gnome-do-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/F-11/gnome-do-plugins.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-do-plugins.spec 20 Jul 2009 21:57:02 -0000 1.2 +++ gnome-do-plugins.spec 30 Jul 2009 14:35:05 -0000 1.3 @@ -2,7 +2,7 @@ Name: gnome-do-plugins Version: 0.8.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ @@ -76,6 +76,7 @@ gnome-do plugins for epiphany Summary: gnome-do-plugins for evolution Group: Applications/Productivity BuildRequires: evolution-sharp-devel +Requires: evolution-sharp Requires: gnome-do >= %{version} evolution Requires: gnome-do-plugins = %{version} @@ -274,6 +275,9 @@ rm -rf %{buildroot} %{_libdir}/gnome-do/plugins/* %changelog +* Thu Jul 30 2009 Juan Rodriguez 0.8.1-6 +- Fixes evolution plugin + * Mon Jul 20 2009 Juan Rodriguez 0.8.1-5 - Fixes bibtex dependency From pkgdb at fedoraproject.org Thu Jul 30 14:35:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:35:04 +0000 Subject: [pkgdb] kernel: dougsland has requested commit Message-ID: <20090730143506.0BFAB10F89B@bastion2.fedora.phx.redhat.com> dougsland has requested the commit acl on kernel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From pkgdb at fedoraproject.org Thu Jul 30 14:35:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 14:35:16 +0000 Subject: [pkgdb] kernel: dougsland has requested watchbugzilla Message-ID: <20090730143516.8760510F8B0@bastion2.fedora.phx.redhat.com> dougsland has requested the watchbugzilla acl on kernel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From s4504kr at fedoraproject.org Thu Jul 30 14:41:52 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 14:41:52 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf-aplterm, NONE, 1.1 aplus-fsf-xterm-apl, NONE, 1.1 aplus-fsf.spec, 1.42, 1.43 aplus-fsf.wrapper, 1.1, 1.2 Message-ID: <20090730144152.CAD4711C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1911 Modified Files: aplus-fsf.spec aplus-fsf.wrapper Added Files: aplus-fsf-aplterm aplus-fsf-xterm-apl Log Message: Fix some issue reported in #510885 --- NEW FILE aplus-fsf-aplterm --- export LANG="C"; xterm -class 'XTerm-apl' $@ --- NEW FILE aplus-fsf-xterm-apl --- ! contributed by Josef Sachs XTerm-apl*fontMenu.Label: VT Fonts XTerm-apl*fontMenu*fontdefault*Label: Default XTerm-apl*fontMenu*font1*Label: Unreadable XTerm-apl*VT100*font1: nil2 XTerm-apl*fontMenu*font2*Label: Tiny XTerm-apl*VT100*font2: 5x8 XTerm-apl*fontMenu*font3*Label: Small XTerm-apl*fontMenu*font4*Label: Medium XTerm-apl*VT100*font4: Kapl XTerm-apl*fontMenu*font5*Label: Large XTerm-apl*VT100*font5: Kapl XTerm-apl*fontMenu*font6*Label: Huge XTerm-apl*VT100*font6: Kapl XTerm-apl*fontMenu*fontescape*Label: Escape Sequence XTerm-apl*fontMenu*fontsel*Label: Selection XTerm-apl*VT100.Translations: #override \ @Num_LockKP_0: string(0)\n\ @Num_LockKP_1: string(1)\n\ @Num_LockKP_2: string(2)\n\ @Num_LockKP_3: string(3)\n\ @Num_LockKP_4: string(4)\n\ @Num_LockKP_5: string(5)\n\ @Num_LockKP_6: string(6)\n\ @Num_LockKP_7: string(7)\n\ @Num_LockKP_8: string(8)\n\ @Num_LockKP_9: string(9)\n\ @Num_LockKP_Add: string(+)\n\ @Num_LockKP_Decimal: string(.)\n\ @Num_LockKP_Divide: string(/)\n\ @Num_LockKP_Enter: string(\015)\n\ @Num_LockKP_Equal: string(=)\n\ @Num_LockKP_Multiply: string(*)\n\ @Num_LockKP_Subtract: string(-)\n\ KP_Add: string(+)\n\ KP_Divide: string(/)\n\ KP_Enter: string(\015)\n\ KP_Equal: string(=)\n\ KP_Multiply: string(*)\n\ KP_Subtract: string(-)\n\ Prior:scroll-back(1,page)\n\ Next:scroll-forw(1,page)\n\ F16: start-extend() select-end(PRIMARY, CUT_BUFFER0, CLIPBOARD) \n\ F18: insert-selection(PRIMARY, CLIPBOARD) \n\ F27: scroll-back(10000,page) \n\ R13: scroll-forw(10000,page) \n\ Home: scroll-back(10000,page) \n\ End: scroll-forw(10000,page) \n\ :Mod1a: string(?) \n\ :Mod1b: string(?) \n\ :Mod1c: string(?) \n\ :Mod1d: string(?) \n\ :Mod1e: string(?) \n\ :Mod1f: string(_) \n\ :Mod1g: string(?) \n\ :Mod1h: string(?) \n\ :Mod1i: string(?) \n\ :Mod1j: string(?) \n\ :Mod1k: string(') \n\ :Mod1l: string(?) \n\ :Mod1m: string(|) \n\ :Mod1n: string(?) \n\ :Mod1o: string(?) \n\ :Mod1p: string(*) \n\ :Mod1q: string(?) \n\ :Mod1r: string(?) \n\ :Mod1s: string(?) \n\ :Mod1t: string(~) \n\ :Mod1u: string(?) \n\ :Mod1v: string(?) \n\ :Mod1w: string(?) \n\ :Mod1x: string(?) \n\ :Mod1y: string(?) \n\ :Mod1z: string(?) \n\ :Mod11: string(?) \n\ :Mod12: string(?) \n\ :Mod13: string(<) \n\ :Mod14: string(?) \n\ :Mod15: string(=) \n\ :Mod16: string(?) \n\ :Mod17: string(>) \n\ :Mod18: string(?) \n\ :Mod19: string(?) \n\ :Mod10: string(^) \n\ :Mod1-: string(?) \n\ :Mod1=: string(?) \n\ :Mod1backslash: string(?) \n\ :Mod1quoteleft: string(?) \n\ Shift Mod1comma: string(<) \n\ :Mod1comma: string(?) \n\ :Mod1space: string(" ") \n\ :Mod1~: string(~) \n\ :Mod1?: string(?) \n\ :Mod1[: string(?) \n\ :Mod1]: string(?) \n\ :Mod1;: string(?) \n\ :Mod1': string(?) \n\ :Mod1.: string(?) \n\ :Mod1/: string(?) \n\ :Mod1!: string(?) \n\ :Mod1@: string(?) \n\ :Mod1#: string(?) \n\ :Mod1$: string(?) \n\ :Mod1%: string(?) \n\ :Mod1^: string(?) \n\ :Mod1&: string(?) \n\ :Mod1*: string(?) \n\ :Mod1(: string(?) \n\ :Mod1): string(?) \n\ :Mod1_: string(!) \n\ :Mod1 +: string(?) \n\ :Mod1 |: string(?) \n\ Shift Mod1w: string(W) \n\ Shift Mod1r: string(R) \n\ Shift Mod1t: string(T) \n\ Shift Mod1u: string(U) \n\ Shift Mod1a: string(A) \n\ Shift Mod1d: string(D) \n\ Shift Mod1k: string(K) \n\ Shift Mod1x: string(X) \n\ Shift Mod1v: string(V) \n\ Shift Mod1o: string(?) \n\ Shift Mod1j: string(?) \n\ Shift Mod1f: string(?) \n\ Shift Mod1e: string(?) \n\ Shift Mod1i: string(?) \n\ :Mod1 {: string(?) \n\ :Mod1 }: string(?) \n\ Shift Mod1s: string(?) \n\ Shift Mod1g: string(?) \n\ Shift Mod1h: string(?) \n\ Shift Mod1l: string(?) \n\ :Mod1 colon: string(?) \n\ :Mod1 quotedbl: string(?) \n\ Shift Mod1c: string(?) \n\ Shift Mod1b: string(?) \n\ Shift Mod1n: string(?) \n\ Shift Mod1m: string(?) \n\ :Mod1 >: string(?) \n\ Shift Mod1p: string(?) \n\ Shift Mod1y: string(?) \n\ Shift Mod1z: string(?) \n\ Shift Mod1q: string(?) XTerm-apl*sunFunctionKeys: True XTerm-apl*VT100.faceName: Kapl XTerm-apl*charClass: 33:48,37:48,43:48,45-47:48,64:48,126:48 XTerm-apl*VT100.curses: True XTerm-apl.VT100.loginShell: True XTerm-apl*VT100.internalBorder: 4 XTerm-apl*VT100*jumpScroll: True XTerm-apl*VT100*multiScroll: True XTerm-apl*VT100*saveLines: 2000 XTerm-apl*VT100*scrollBar: True XTerm-apl*VT100*scrollKey: True XTerm-apl*VT100.reverseWrap: True Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- aplus-fsf.spec 24 Jul 2009 16:57:59 -0000 1.42 +++ aplus-fsf.spec 30 Jul 2009 14:41:52 -0000 1.43 @@ -1,3 +1,4 @@ + %define catalogue %{_sysconfdir}/X11/fontpath.d/ %define name aplus-fsf %define ver 4.22 @@ -18,9 +19,11 @@ %define _x11lib %{_libdir} %define _x11appdef %{_x11pref}/app-defaults +%define elcc xemacs -batch -q -no-site-file -no-init-file -f batch-byte-compile + Name: %name Version: 4.22.4 -Release: 15%{?dist} +Release: 17%{?dist} License: GPLv2 Summary: Advanced APL interpreter with s interface @@ -31,10 +34,15 @@ Group: Development/Languages Source: http://www.aplusdev.org/Download/%name-%ver-%rel.tar.gz Source1: aplus-fsf-4.20-elstart Source2: aplus-fsf.wrapper +Source3: aplus-fsf-aplterm +Source4: aplus-fsf-xterm-apl +Source5: aplus-fsf-readme + Patch1: aplus-fsf-4.22.4-makefile.patch Patch3: aplus-fsf-4.20-el.patch Patch4: aplus-fsf-4.22.3-atree.patch Patch5: aplus-fsf-4.22-gcc44.patch +Patch6: aplus-fsf-4.22-xemacs.patch BuildRequires: libtool BuildRequires: xorg-x11-proto-devel @@ -42,7 +50,7 @@ BuildRequires: libX11-devel BuildRequires: xorg-x11-font-utils BuildRequires: automake autoconf BuildRequires: fontpackages-devel -BuildRequires: xemacs, xemacs-devel +BuildRequires: xemacs, xemacs-devel, xemacs-packages-extra Requires: xterm @@ -63,10 +71,12 @@ Execution is by a very efficient interpr Summary: TrueType fonts for the Advanced APL Interpreter Group: User Interface/X Provides: apl-fonts +provides: aplus-fsf-fonts Provides: fonts-x11-apl = %{version}-%{release} Provides: fonts-truetype-apl = %{version}-%{release} Obsoletes: fonts-x11-apl < 4.22.4-6 Obsoletes: fonts-truetype-apl < 4.22.4-6 +Obsoletes: aplus-fsf-fonts < 4.22.4-6 Requires: fontpackages-filesystem @@ -83,7 +93,7 @@ They are not required to run a A+ progra %package -n xemacs-%{name} Summary: XEmacs lisp for A+ development Group: Applications/Editors -Requires: xemacs, aplus-fsf +Requires: xemacs, xemacs-packages-extra, aplus-fsf BuildArch: noarch %description -n xemacs-%{name} This package contains the XEmacs lisp required for the development @@ -91,6 +101,15 @@ of A+ programs. It does the key bindings and bind some function keys. The complete A+ development is provided by the aplus-fsf package. +%package -n xemacs-%{name}-el +Summary: Sources of the XEmacs lisp modules for A+ development +Group: Applications/Editors +Requires: xemacs-%{name}-el = %{version}-%{release} +BuildArch: noarch +%description -n xemacs-%{name}-el +This package contains the source file of the XEmacs lisp modules +required for the development of A+ Programms. + %package devel Summary: Header files from the A+ environment Group: Development/Libraries @@ -104,6 +123,7 @@ This package contains the header file fr %patch3 -p1 %patch4 -p1 %patch5 -p1 -b .gcc44 +%patch6 -p1 %build # export CXXFLAGS=-O3 CFLAGS=-O3 @@ -148,6 +168,17 @@ cp -p %{SOURCE2} $RPM_BUILD_ROOT/%{_bind rm -rf $RPM_BUILD_ROOT/%{_prefix}/lisp* rm -rf $RPM_BUILD_ROOT/%{_prefix}/contrib +pushd $RPM_BUILD_ROOT/%{xemacs_lispdir}/aplus-fsf +for i in *.el; do + %{elcc} $i +done +popd + +install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT/%{_bindir}/xterm-apl +install %{SOURCE4} ${RPM_BUILD_ROOT}/%{_x11appdef}/XTerm-apl + +cp %{SOURCE5} README.Fedora + %clean rm -rf $RPM_BUILD_ROOT @@ -173,13 +204,14 @@ fi %defattr(-,root,root,-) %attr(0755,root,root) %{_bindir}/a+ %attr(0755,root,root) %{_bindir}/a+.bin +%{_bindir}/xterm-apl %{_libdir}/aplus-fsf/ %{_prefix}/lib/a+/ %{_x11appdef}/XTerm-apl %{_sysconfdir}/ld.so.conf.d/aplus-fsf-%{_arch}.conf %{_datadir}/aplus-fsf/ -%doc ANNOUNCE AUTHORS ChangeLog LICENSE README +%doc ANNOUNCE AUTHORS ChangeLog LICENSE README README.Fedora %files devel %defattr(-,root,root,-) @@ -189,11 +221,21 @@ fi %files -n xemacs-%{name} %defattr(-,root,root,-) -%{xemacs_lispdir}/aplus-fsf/*.el +%{xemacs_lispdir}/aplus-fsf/*.elc %{xemacs_startdir}/aplus-fsf-init.el +%dir %{xemacs_lispdir}/aplus-fsf/ + +%files -n xemacs-%{name}-el +%defattr(-,root,root,-) +%{xemacs_lispdir}/aplus-fsf/*.el %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 4.22.4-15 +* Thu Jul 30 2009 Jochen Schmitt 4.22.4-17 +- Fix XEmacs compiling issue by adding xemacs-packages-extra as new req. +- Add Script to start XTerm with XTerm-apl resources +- Modify a+ wrapper to get Backspace to work + +* Fri Jul 24 2009 Fedora Release Engineering - 4.22.4-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Mar 10 2009 Jochen Schmitt 4.22.4-15 Index: aplus-fsf.wrapper =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.wrapper,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- aplus-fsf.wrapper 9 Sep 2008 14:43:59 -0000 1.1 +++ aplus-fsf.wrapper 30 Jul 2009 14:41:52 -0000 1.2 @@ -1,3 +1,5 @@ #!/bin/sh -export LC_ALL=POXIS; /usr/bin/a+.bin +stty erase ^H + +export LC_ALL="C"; /usr/bin/a+.bin From rineau at fedoraproject.org Thu Jul 30 14:52:20 2009 From: rineau at fedoraproject.org (Laurent Rineau) Date: Thu, 30 Jul 2009 14:52:20 +0000 (UTC) Subject: rpms/CGAL/devel CGAL.spec,1.26,1.27 Message-ID: <20090730145220.6BD7011C00D3@cvs1.fedora.phx.redhat.com> Author: rineau Update of /cvs/pkgs/rpms/CGAL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5635 Modified Files: CGAL.spec Log Message: * Thu Jul 30 2009 Laurent Rineau - 3.5-0.2.beta1 - No longer requires /etc/profile.d/ Index: CGAL.spec =================================================================== RCS file: /cvs/pkgs/rpms/CGAL/devel/CGAL.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- CGAL.spec 30 Jul 2009 14:25:08 -0000 1.26 +++ CGAL.spec 30 Jul 2009 14:52:20 -0000 1.27 @@ -3,7 +3,7 @@ Name: CGAL Version: 3.5 -Release: 0.1.beta1%{?dist} +Release: 0.2.beta1%{?dist} Summary: Computational Geometry Algorithms Library Group: System Environment/Libraries @@ -40,8 +40,7 @@ Requires: cmake Requires: %{name} = %{version}-%{release} Requires: boost-devel >= %{boost_version} Requires: qt-devel >= %{qt_version} -Requires: blas-devel lapack-devel qt3-develzlib-devel gmp-devel -Requires: %{_sysconfdir}/profile.d +Requires: blas-devel lapack-devel qt3-devel zlib-devel gmp-devel Requires: mpfr-devel %description devel The %{name}-devel package provides the headers files and tools you may need to @@ -123,6 +122,9 @@ rm -rf %{buildroot} %exclude %{_datadir}/CGAL/*/*/skip_vcproj_auto_generation %changelog +* Thu Jul 30 2009 Laurent Rineau - 3.5-0.2.beta1 +- No longer requires /etc/profile.d/ + * Thu Jul 30 2009 Laurent Rineau - 3.5-0.1.beta1 - Update to CGAL-3.5-beta1. - New compilation process: CMake. From s4504kr at fedoraproject.org Thu Jul 30 14:53:37 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 14:53:37 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf.spec,1.43,1.44 Message-ID: <20090730145337.8561011C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6139 Modified Files: aplus-fsf.spec Log Message: Fix type Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- aplus-fsf.spec 30 Jul 2009 14:41:52 -0000 1.43 +++ aplus-fsf.spec 30 Jul 2009 14:53:37 -0000 1.44 @@ -2,7 +2,7 @@ %define catalogue %{_sysconfdir}/X11/fontpath.d/ %define name aplus-fsf %define ver 4.22 -%define rel 5 +%define rel 4 %if %($(pkg-config xemacs) ; echo $?) %define xemacs_version 21.5 @@ -23,7 +23,7 @@ Name: %name Version: 4.22.4 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2 Summary: Advanced APL interpreter with s interface @@ -230,6 +230,9 @@ fi %{xemacs_lispdir}/aplus-fsf/*.el %changelog +* Thu Jul 30 2009 Jochen Schmitt 4.22.4-18 +- Fix typo + * Thu Jul 30 2009 Jochen Schmitt 4.22.4-17 - Fix XEmacs compiling issue by adding xemacs-packages-extra as new req. - Add Script to start XTerm with XTerm-apl resources From karsten at fedoraproject.org Thu Jul 30 15:01:23 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Thu, 30 Jul 2009 15:01:23 +0000 (UTC) Subject: rpms/automake16/devel automake-1.6.3-checks.patch, 1.2, 1.3 automake16.spec, 1.19, 1.20 Message-ID: <20090730150124.0002711C00D3@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/automake16/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9739 Modified Files: automake-1.6.3-checks.patch automake16.spec Log Message: - fix build problem automake-1.6.3-checks.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: automake-1.6.3-checks.patch =================================================================== RCS file: /cvs/extras/rpms/automake16/devel/automake-1.6.3-checks.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- automake-1.6.3-checks.patch 20 Feb 2007 14:21:31 -0000 1.2 +++ automake-1.6.3-checks.patch 30 Jul 2009 15:01:23 -0000 1.3 @@ -1,21 +1,23 @@ ---- automake-1.6.3/tests/Makefile.am.checks 2007-02-20 15:04:10.000000000 +0100 -+++ automake-1.6.3/tests/Makefile.am 2007-02-20 15:04:53.000000000 +0100 +diff -up automake-1.6.3/tests/Makefile.am.kh1 automake-1.6.3/tests/Makefile.am +--- automake-1.6.3/tests/Makefile.am.kh1 2002-07-23 20:29:13.000000000 +0200 ++++ automake-1.6.3/tests/Makefile.am 2009-07-30 16:31:15.000000000 +0200 @@ -1,6 +1,6 @@ ## Process this file with automake to create Makefile.in -XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test -+XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test ++XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test lex5.test TESTS = \ acinclude.test \ ---- automake-1.6.3/tests/Makefile.in.checks 2007-02-20 15:04:02.000000000 +0100 -+++ automake-1.6.3/tests/Makefile.in 2007-02-20 15:05:11.000000000 +0100 -@@ -78,7 +78,7 @@ +diff -up automake-1.6.3/tests/Makefile.in.kh1 automake-1.6.3/tests/Makefile.in +--- automake-1.6.3/tests/Makefile.in.kh1 2002-07-28 19:18:30.000000000 +0200 ++++ automake-1.6.3/tests/Makefile.in 2009-07-30 16:31:23.000000000 +0200 +@@ -78,7 +78,7 @@ am__quote = @am__quote@ install_sh = @install_sh@ pkgvdatadir = @pkgvdatadir@ -XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test -+XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test ++XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test lex5.test TESTS = \ acinclude.test \ Index: automake16.spec =================================================================== RCS file: /cvs/extras/rpms/automake16/devel/automake16.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- automake16.spec 24 Jul 2009 17:38:34 -0000 1.19 +++ automake16.spec 30 Jul 2009 15:01:23 -0000 1.20 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake16 Version: %{api_version}.3 -Release: 16 +Release: 17 License: GPLv2+ and MIT and OFSFDL Group: Development/Tools Source: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2 @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_infodir}/* %changelog +* Thu Jul 30 2009 Karsten Hopp 1.6.3-17 +- fix build problem + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.3-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jfch2222 at fedoraproject.org Thu Jul 30 15:21:48 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Thu, 30 Jul 2009 15:21:48 +0000 (UTC) Subject: rpms/openssh-blacklist/devel .cvsignore, 1.2, 1.3 openssh-blacklist.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730152148.0447E11C00D3@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh-blacklist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16661 Modified Files: .cvsignore openssh-blacklist.spec sources Log Message: Packaged only downloader Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 08:52:36 -0000 1.2 +++ .cvsignore 30 Jul 2009 15:21:47 -0000 1.3 @@ -1 +1 @@ -openssh-blacklist-0.7.tgz +openssh-blacklist-downloader-1.0.tgz Index: openssh-blacklist.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/openssh-blacklist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openssh-blacklist.spec 25 Jul 2009 20:53:55 -0000 1.2 +++ openssh-blacklist.spec 30 Jul 2009 15:21:47 -0000 1.3 @@ -1,37 +1,44 @@ Name: openssh-blacklist -Version: 0.7 -Release: 2%{?dist} -Summary: Fingerprints of the openssh keys affected by CVE-2008-0166 +Version: 1.0 +Release: 1%{?dist} +Summary: Downloader of the openssh keys affected by CVE-2008-0166 Group: Applications/Internet -License: CC-BY +License: GPLv2 URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=openssh-blacklist -Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/openssh-blacklist/%{name}-%{version}.tgz +Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/openssh-blacklist/%{name}-downloader-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch +Requires: perl-WWW-Mechanize, perl-Digest-SHA1 %description -Fingerprints of the openssh keys affected by CVE-2008-0166 +Downloader of the openssh keys affected by CVE-2008-0166 %prep -%setup -q +%setup -q -n %{name}-downloader-%{version} %build %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name} -mv fingerprints/* $RPM_BUILD_ROOT%{_datadir}/%{name} +mkdir -p $RPM_BUILD_ROOT/%{_bindir} +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir} +cp -p openssh-blacklist-downloader.pl $RPM_BUILD_ROOT%{_bindir}/openssh-blacklist-downloader +cp -p openssh-blacklist.sites $RPM_BUILD_ROOT/%{_sysconfdir}/openssh-blacklist.sites %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc COPYING CONTENT -%{_datadir}/%{name} +%doc COPYING +%{_bindir}/openssh-blacklist-downloader +%config %{_sysconfdir}/openssh-blacklist.sites %changelog +* Wed Jul 30 2009 Jan F. Chadima - 1.0-1 +- Packaged only downloader + * Sat Jul 25 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Jul 2009 08:52:36 -0000 1.2 +++ sources 30 Jul 2009 15:21:47 -0000 1.3 @@ -1 +1 @@ -2aef528646064e86b015128462543e2f openssh-blacklist-0.7.tgz +9451ce82b9fb0ef1095a031d702ecb8b openssh-blacklist-downloader-1.0.tgz From s4504kr at fedoraproject.org Thu Jul 30 15:27:18 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 15:27:18 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf-readme,NONE,1.1 Message-ID: <20090730152718.F12AD11C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18541 Added Files: aplus-fsf-readme Log Message: Add forgotten file --- NEW FILE aplus-fsf-readme --- Special notes about aplus-fsf for Fedora. If you want to work interactivly with the a+ interpreter, I suggest, that you should start a xterm via the xterm-apl command to make sure, that the APL font and key bindings are activated in your xterm session. From pkgdb at fedoraproject.org Thu Jul 30 15:28:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 15:28:58 +0000 Subject: [pkgdb] jflex ownership updated Message-ID: <20090730152858.4D1CC10F875@bastion2.fedora.phx.redhat.com> Package jflex in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jflex From pkgdb at fedoraproject.org Thu Jul 30 15:29:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 15:29:06 +0000 Subject: [pkgdb] jflex had acl change status Message-ID: <20090730152906.DE5C310F889@bastion2.fedora.phx.redhat.com> akurtakov has set the commit acl on jflex (Fedora devel) to Approved for lkundrak To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jflex From rjones at fedoraproject.org Thu Jul 30 15:29:19 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 30 Jul 2009 15:29:19 +0000 (UTC) Subject: rpms/febootstrap/F-11 .cvsignore, 1.8, 1.9 febootstrap.spec, 1.7, 1.8 sources, 1.8, 1.9 Message-ID: <20090730152919.B194F11C00D3@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/febootstrap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19370 Modified Files: .cvsignore febootstrap.spec sources Log Message: New upstream release 2.4. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Jun 2009 09:22:28 -0000 1.8 +++ .cvsignore 30 Jul 2009 15:29:19 -0000 1.9 @@ -1 +1 @@ -febootstrap-2.3.tar.gz +febootstrap-2.4.tar.gz Index: febootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/F-11/febootstrap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- febootstrap.spec 22 Jun 2009 09:22:28 -0000 1.7 +++ febootstrap.spec 30 Jul 2009 15:29:19 -0000 1.8 @@ -1,6 +1,6 @@ Summary: Bootstrap a new Fedora system (like debootstrap) Name: febootstrap -Version: 2.3 +Version: 2.4 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Richard Jones - 2.4-1 +- New upstream release 2.4. + * Mon Jun 22 2009 Richard Jones - 2.3-1 - New upstream release 2.3. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 22 Jun 2009 09:22:28 -0000 1.8 +++ sources 30 Jul 2009 15:29:19 -0000 1.9 @@ -1 +1 @@ -5f04816086dd10f22eff4ac0d87e8aa8 febootstrap-2.3.tar.gz +a1989ed76830092e40eec23470795258 febootstrap-2.4.tar.gz From rjones at fedoraproject.org Thu Jul 30 15:29:24 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 30 Jul 2009 15:29:24 +0000 (UTC) Subject: rpms/febootstrap/EL-5 .cvsignore, 1.8, 1.9 febootstrap.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090730152924.143F011C0417@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/febootstrap/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19393 Modified Files: .cvsignore febootstrap.spec sources Log Message: New upstream release 2.4. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/EL-5/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Jun 2009 09:22:32 -0000 1.8 +++ .cvsignore 30 Jul 2009 15:29:23 -0000 1.9 @@ -1 +1 @@ -febootstrap-2.3.tar.gz +febootstrap-2.4.tar.gz Index: febootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/EL-5/febootstrap.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- febootstrap.spec 30 Jun 2009 07:44:21 -0000 1.9 +++ febootstrap.spec 30 Jul 2009 15:29:23 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Bootstrap a new Fedora system (like debootstrap) Name: febootstrap -Version: 2.3 -Release: 1%{?dist}.1 +Version: 2.4 +Release: 1%{?dist} License: GPLv2+ Group: Development/Tools URL: http://et.redhat.com/~rjones/febootstrap/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Richard Jones - 2.4-1 +- New upstream release 2.4. + * Tue Jun 30 2009 Richard Jones - 2.3-1.el5.1 - Package version regressed in EPEL 5 after the move to Koji. Force rebuild. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/EL-5/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 22 Jun 2009 09:22:32 -0000 1.8 +++ sources 30 Jul 2009 15:29:23 -0000 1.9 @@ -1 +1 @@ -5f04816086dd10f22eff4ac0d87e8aa8 febootstrap-2.3.tar.gz +a1989ed76830092e40eec23470795258 febootstrap-2.4.tar.gz From pbrobinson at fedoraproject.org Thu Jul 30 15:29:23 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 30 Jul 2009 15:29:23 +0000 (UTC) Subject: rpms/nbtk/devel nbtk-clutter1-pkcfg.patch, NONE, 1.1 nbtk.spec, 1.15, 1.16 Message-ID: <20090730152924.0069211C00D3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19419 Modified Files: nbtk.spec Added Files: nbtk-clutter1-pkcfg.patch Log Message: - Add another patch for clutter 1.0 nbtk-clutter1-pkcfg.patch: nbtk.pc.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE nbtk-clutter1-pkcfg.patch --- >From 9de8c647a137f82e10585896706060420be9d830 Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Wed, 29 Jul 2009 14:21:36 +0000 Subject: [nbtk.pc.in] Update Requires field --- diff --git a/nbtk.pc.in b/nbtk.pc.in index c3fe5a5..cd043a0 100644 --- a/nbtk.pc.in +++ b/nbtk.pc.in @@ -8,4 +8,4 @@ Description: An experimental toolkit for moblin-netbook implementation Version: @VERSION@ Libs: -L${libdir} -lnbtk- at NBTK_API_VERSION@ Cflags: -I${includedir}/nbtk- at NBTK_API_VERSION@ -Requires: gobject-2.0 clutter-0.9 libccss-1 +Requires: clutter-1.0 libccss-1 = 0.3.1 -- cgit v0.8.2 Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- nbtk.spec 30 Jul 2009 10:59:02 -0000 1.15 +++ nbtk.spec 30 Jul 2009 15:29:23 -0000 1.16 @@ -1,6 +1,6 @@ Name: nbtk Version: 0.16.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -8,6 +8,7 @@ License: LGPLv2 URL: http://moblin.org/projects/netbook-toolkit-nbtk Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 Patch0: nbtk-clutter1.patch +Patch1: nbtk-clutter1-pkcfg.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel >= 1.0.0 @@ -45,6 +46,7 @@ Files for development with %{name}. %prep %setup -q %patch0 -p1 -b .clutter1 +%patch1 -p1 -b .clutter1-pkcfg # run autogen.sh until we have a proper release, but don't run configure twice. sed -i '/configure/d' autogen.sh @@ -83,6 +85,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog +* Thu Jul 30 2009 Peter Robinson 0.16.3-7 +- Add another patch for clutter 1.0 + * Thu Jul 30 2009 Peter Robinson 0.16.3-6 - Add patch for clutter 1.0 From rjones at fedoraproject.org Thu Jul 30 15:30:22 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 30 Jul 2009 15:30:22 +0000 (UTC) Subject: rpms/febootstrap/devel .cvsignore, 1.8, 1.9 febootstrap.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090730153022.4634611C04D5@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/febootstrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20050 Modified Files: .cvsignore febootstrap.spec sources Log Message: New upstream release 2.4. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Jun 2009 09:45:33 -0000 1.8 +++ .cvsignore 30 Jul 2009 15:30:22 -0000 1.9 @@ -1 +1 @@ -febootstrap-2.3.tar.gz +febootstrap-2.4.tar.gz Index: febootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/devel/febootstrap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- febootstrap.spec 24 Jul 2009 22:34:47 -0000 1.8 +++ febootstrap.spec 30 Jul 2009 15:30:22 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Bootstrap a new Fedora system (like debootstrap) Name: febootstrap -Version: 2.3 -Release: 2%{?dist} +Version: 2.4 +Release: 1%{?dist} License: GPLv2+ Group: Development/Tools URL: http://et.redhat.com/~rjones/febootstrap/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Richard Jones - 2.4-1 +- New upstream release 2.4. + * Fri Jul 24 2009 Fedora Release Engineering - 2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Jun 2009 09:45:33 -0000 1.8 +++ sources 30 Jul 2009 15:30:22 -0000 1.9 @@ -1 +1 @@ -5f04816086dd10f22eff4ac0d87e8aa8 febootstrap-2.3.tar.gz +a1989ed76830092e40eec23470795258 febootstrap-2.4.tar.gz From s4504kr at fedoraproject.org Thu Jul 30 15:20:42 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 15:20:42 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf.spec,1.44,1.45 Message-ID: <20090730152042.F3CF511C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16312 Modified Files: aplus-fsf.spec Log Message: Remove nunecessary patch Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- aplus-fsf.spec 30 Jul 2009 14:53:37 -0000 1.44 +++ aplus-fsf.spec 30 Jul 2009 15:20:41 -0000 1.45 @@ -23,7 +23,7 @@ Name: %name Version: 4.22.4 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2 Summary: Advanced APL interpreter with s interface @@ -42,7 +42,6 @@ Patch1: aplus-fsf-4.22.4-makefile.patch Patch3: aplus-fsf-4.20-el.patch Patch4: aplus-fsf-4.22.3-atree.patch Patch5: aplus-fsf-4.22-gcc44.patch -Patch6: aplus-fsf-4.22-xemacs.patch BuildRequires: libtool BuildRequires: xorg-x11-proto-devel @@ -123,7 +122,6 @@ This package contains the header file fr %patch3 -p1 %patch4 -p1 %patch5 -p1 -b .gcc44 -%patch6 -p1 %build # export CXXFLAGS=-O3 CFLAGS=-O3 @@ -230,6 +228,9 @@ fi %{xemacs_lispdir}/aplus-fsf/*.el %changelog +* Thu Jul 30 2009 Jochen Schmitt 4.22.4-19 +- Remove unnecessary patch + * Thu Jul 30 2009 Jochen Schmitt 4.22.4-18 - Fix typo From langel at fedoraproject.org Thu Jul 30 15:42:27 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Thu, 30 Jul 2009 15:42:27 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch, 1.1, 1.2 java-1.6.0-openjdk.spec, 1.130, 1.131 Message-ID: <20090730154227.72F2711C00D3@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24108 Modified Files: java-1.6.0-openjdk-x11.patch java-1.6.0-openjdk.spec Log Message: * Thu Jul 30 2009 Lillian Angel - 1:1.6.0-27.b16 - java-1.6.0-openjdk-x11.patch updated. java-1.6.0-openjdk-x11.patch: awt_GraphicsEnv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-x11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-x11.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- java-1.6.0-openjdk-x11.patch 29 Jul 2009 20:30:18 -0000 1.1 +++ java-1.6.0-openjdk-x11.patch 30 Jul 2009 15:42:27 -0000 1.2 @@ -1,10 +1,11 @@ --- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 +++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 -@@ -41,7 +41,7 @@ +@@ -41,7 +41,8 @@ #include #include -#include ++#include +#include extern int XShmQueryExtension(); Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- java-1.6.0-openjdk.spec 29 Jul 2009 20:30:18 -0000 1.130 +++ java-1.6.0-openjdk.spec 30 Jul 2009 15:42:27 -0000 1.131 @@ -966,6 +966,9 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Thu Jul 30 2009 Lillian Angel - 1:1.6.0-27.b16 +- java-1.6.0-openjdk-x11.patch updated. + * Wed Jul 29 2009 Lillian Angel - 1:1.6.0-27.b16 - Renamed java-1.6.0-openjdk-libx11.patch to java-1.6.0-openjdk-x11.patch and updated. From rdieter at fedoraproject.org Thu Jul 30 15:46:51 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 15:46:51 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.3.0-kdebug#198632.patch, NONE, 1.1 kdebindings.spec, 1.227, 1.228 Message-ID: <20090730154651.A430111C00D3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26243 Modified Files: kdebindings.spec Added Files: kdebindings-4.3.0-kdebug#198632.patch Log Message: more pykdeuic4 and related multilib love (kdebug#198162) kdebindings-4.3.0-kdebug#198632.patch: CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE kdebindings-4.3.0-kdebug#198632.patch --- Index: kdebindings/python/pykde4/tools/pykdeuic4/CMakeLists.txt =================================================================== --- kdebindings/python/pykde4/tools/pykdeuic4/CMakeLists.txt (revision 1004600) +++ kdebindings/python/pykde4/tools/pykdeuic4/CMakeLists.txt (working copy) @@ -1,2 +1,4 @@ PYTHON_INSTALL(kde4.py ${PYTHON_SITE_PACKAGES_DIR}/PyQt4/uic/widget-plugins/) -PYTHON_INSTALL(pykdeuic4.py ${BIN_INSTALL_DIR}/pykdeuic4) +PYTHON_INSTALL(pykdeuic4.py ${PYTHON_SITE_PACKAGES_DIR}/PyQt4/uic/) +find_path(cmake_module_dir create_exe_symlink.cmake ${CMAKE_MODULE_PATH}) +INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_COMMAND} -DTARGET=${PYTHON_SITE_PACKAGES_DIR}/PyQt4/uic/pykdeuic4.py -DLINK_NAME=${BIN_INSTALL_DIR}/pykdeuic4 -P ${cmake_module_dir}/create_exe_symlink.cmake)" ) Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.227 retrieving revision 1.228 diff -u -p -r1.227 -r1.228 --- kdebindings.spec 29 Jul 2009 22:37:44 -0000 1.227 +++ kdebindings.spec 30 Jul 2009 15:46:51 -0000 1.228 @@ -49,7 +49,8 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa # make the Python plugin factory work without python-devel Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch -# upstream patches +## upstream patches +Patch100: kdebindings-4.3.0-kdebug#198632.patch BuildRequires: akonadi-devel >= 1.1.0 @@ -256,6 +257,7 @@ Falcon plugin for the Kross archtecture %patch2 -p1 -b .fix-kpythonpluginfactory # upstream patches +%patch100 -p1 -b .kdebug#198632 %build @@ -303,6 +305,14 @@ make -C %{_target_platform} rm -rf %{buildroot} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +# HACK: fix multilb conflict, similar to PyQt4's http://bugzilla.redhat.com/509415 +rm -fv %{buildroot}%{_bindir}/pykdeuic4 +mv %{buildroot}%{python_sitearch}/PyQt4/uic/pykdeuic4.py \ + %{buildroot}%{_bindir}/pykdeuic4 +ln -s %{_bindir}/pykdeuic4 \ + %{buildroot}%{python_sitearch}/PyQt4/uic/pykdeuic4.py + + %clean rm -rf %{buildroot} @@ -347,6 +357,7 @@ rm -rf %{buildroot} %files -n PyKDE4-devel %defattr(-,root,root,-) %{_kde4_bindir}/pykdeuic4 +%{python_sitearch}/PyQt4/uic/pykdeuic4.py* %{_kde4_appsdir}/pykde4/examples/ %{_kde4_datadir}/sip/PyKDE4/ @@ -493,6 +504,7 @@ rm -rf %{buildroot} %changelog * Thu Jul 30 2009 Than Ngo - 4.3.0-1 - 4.3.0 +- more pykdeuic4 and related multilib love (kdebug#198162) * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From davej at fedoraproject.org Thu Jul 30 15:48:44 2009 From: davej at fedoraproject.org (Dave Jones) Date: Thu, 30 Jul 2009 15:48:44 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1674,1.1675 Message-ID: <20090730154844.AA14611C00D3@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27033 Modified Files: kernel.spec Log Message: reenable dracut. bits are there in rawhide. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1674 retrieving revision 1.1675 diff -u -p -r1.1674 -r1.1675 --- kernel.spec 30 Jul 2009 08:41:41 -0000 1.1674 +++ kernel.spec 30 Jul 2009 15:48:44 -0000 1.1675 @@ -101,7 +101,7 @@ Summary: The Linux kernel # Want to build a the vsdo directories installed %define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1} # dracut initrd-generic -%define with_dracut %{?_without_dracut: 0} %{?!_without_dracut: 0} +%define with_dracut %{?_without_dracut: 0} %{?!_without_dracut: 1} # Build the kernel-doc package, but don't fail the build if it botches. # Here "true" means "continue" and "false" means "fail the build". From s4504kr at fedoraproject.org Thu Jul 30 15:49:01 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 15:49:01 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf.spec,1.45,1.46 Message-ID: <20090730154901.D8BD911C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27160 Modified Files: aplus-fsf.spec Log Message: Seems to be a SMP issue with XEmacs byte-compile Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- aplus-fsf.spec 30 Jul 2009 15:20:41 -0000 1.45 +++ aplus-fsf.spec 30 Jul 2009 15:49:01 -0000 1.46 @@ -167,9 +167,11 @@ rm -rf $RPM_BUILD_ROOT/%{_prefix}/lisp* rm -rf $RPM_BUILD_ROOT/%{_prefix}/contrib pushd $RPM_BUILD_ROOT/%{xemacs_lispdir}/aplus-fsf -for i in *.el; do - %{elcc} $i -done +%{elcc} a.e +%{elcc} a-font.el +%{elcc} keyb.el +%{elcc} xa.el +%{elcc} aplus.el popd install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT/%{_bindir}/xterm-apl From jfch2222 at fedoraproject.org Thu Jul 30 15:53:04 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Thu, 30 Jul 2009 15:53:04 +0000 (UTC) Subject: rpms/iwak/devel .cvsignore, 1.2, 1.3 iwak.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090730155304.7D17811C00D3@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/iwak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28564 Modified Files: .cvsignore iwak.spec sources Log Message: Change location of fingerprints, allow alternate location Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Jul 2009 04:43:38 -0000 1.2 +++ .cvsignore 30 Jul 2009 15:53:04 -0000 1.3 @@ -1 +1 @@ -iwak-2.4.tgz +iwak-2.5.tgz Index: iwak.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/iwak.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- iwak.spec 25 Jul 2009 03:43:33 -0000 1.2 +++ iwak.spec 30 Jul 2009 15:53:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: iwak -Version: 2.4 -Release: 3%{?dist} +Version: 2.5 +Release: 1%{?dist} Summary: Detect the openssh keys affected by CVE-2008-0166 among authorized_keys Group: Applications/Internet @@ -9,6 +9,7 @@ URL: http://www.benhur.prf.cuni.cz/medv Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/iwak/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch +Requires: openssh-blacklist >= 1.0 %description Detect the openssh keys affected by CVE-2008-0166 among authorized_keys. @@ -34,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/iwak %changelog +* Thu Jul 30 2009 Jan F. Chadima - 2.5-1 +- Change location of fingerprints, allow alternate location + * Fri Jul 24 2009 Fedora Release Engineering - 2.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Jul 2009 04:43:38 -0000 1.2 +++ sources 30 Jul 2009 15:53:04 -0000 1.3 @@ -1 +1 @@ -95b23918350091abd5b2a3dd91fb9372 iwak-2.4.tgz +0600723b99747c414e556ae980d2d310 iwak-2.5.tgz From zachcarter at fedoraproject.org Thu Jul 30 16:01:02 2009 From: zachcarter at fedoraproject.org (Zach Carter) Date: Thu, 30 Jul 2009 16:01:02 +0000 (UTC) Subject: rpms/schroot/devel import.log, NONE, 1.1 schroot-bind-shm.patch, NONE, 1.1 schroot-pam.patch, NONE, 1.1 schroot.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730160102.313A511C00D3@cvs1.fedora.phx.redhat.com> Author: zachcarter Update of /cvs/pkgs/rpms/schroot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30652/devel Modified Files: .cvsignore sources Added Files: import.log schroot-bind-shm.patch schroot-pam.patch schroot.spec Log Message: * Thu Jul 30 2009 Zach Carter - 1.2.3-2 - Import into cvs --- NEW FILE import.log --- schroot-1_2_3-2_fc11:HEAD:schroot-1.2.3-2.fc11.src.rpm:1248969506 schroot-bind-shm.patch: mount-defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE schroot-bind-shm.patch --- --- bin/schroot/mount-defaults.orig 2009-05-05 10:26:42.000000000 -0700 +++ bin/schroot/mount-defaults 2009-05-05 10:26:59.000000000 -0700 @@ -5,6 +5,6 @@ # proc /proc proc defaults 0 0 /dev/pts /dev/pts none rw,bind 0 0 -tmpfs /dev/shm tmpfs defaults 0 0 +/dev/shm /dev/shm tmpfs defaults 0 0 /home /home none rw,bind 0 0 /tmp /tmp none rw,bind 0 0 schroot-pam.patch: schroot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE schroot-pam.patch --- --- schroot-1.1.6/bin/schroot/pam/schroot 2008-01-20 16:16:25.000000000 -0800 +++ schroot-1.1.6/bin/schroot/pam/schroot 2008-04-29 10:33:21.000000000 -0700 @@ -26,9 +26,9 @@ # The standard Unix authentication modules, used with # NIS (man nsswitch) as well as normal /etc/passwd and # /etc/shadow entries. - at include common-auth - at include common-account - at include common-session +auth include system-auth +session include system-auth +account include system-auth # Sets up user limits, please uncomment and read /etc/security/limits.conf # to enable this functionality. --- NEW FILE schroot.spec --- Name: schroot Version: 1.2.3 Release: 2%{?dist} Summary: Execute commands in a chroot environment Group: Development/Tools License: GPLv3+ Url: http://packages.debian.org/schroot Source0: http://ftp.de.debian.org/debian/pool/main/s/schroot/%{name}_%{version}.orig.tar.gz Patch0: schroot-pam.patch Patch1: schroot-bind-shm.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pam-devel BuildRequires: boost-devel BuildRequires: lockdev-devel BuildRequires: gettext %description schroot allows users to execute commands or interactive shells in different chroots. Any number of named chroots may be created, and access permissions given to each, including root access for normal users, on a per-user or per-group basis. Additionally, schroot can switch to a different user in the chroot, using PAM for authentication and authorisation. All operations are logged for security. Several different types of chroot are supported, including normal directories in the filesystem, and also block devices. Sessions, persistent chroots created on the fly from files (tar with optional compression and zip) and LVM snapshots are also supported. schroot supports kernel personalities, allowing the programs run inside the chroot to have a different personality. For example, running 32-bit chroots on 64-bit systems, or even running binaries from alternative operating systems such as SVR4 or Xenix. schroot also integrates with sbuild, to allow building packages with all supported chroot types, including session-managed chroot types such as LVM snapshots. schroot shares most of its options with dchroot, but offers vastly more functionality. %package -n dchroot Group: Development/Tools Summary: Older tool similar to schroot %description -n dchroot dchroot allows users to execute commands or interactive shells in different chroots. Users can move between chroots as necessary. Enhanced functionality is available in the next generation tool called schroot. %prep %setup -q %patch0 -p1 # fix for DOS issue reported here: # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526788 %patch1 -p0 %build %configure --disable-rpath --enable-static --disable-shared --enable-dchroot make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/schroot/session mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/schroot/chroot.d /sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir} # get rid of uneeded include and library files rm -rf $RPM_BUILD_ROOT%{_includedir} rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/sbuild.pc rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.la rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.so* rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.a %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root) %dir %{_bindir}/schroot %dir %{_sysconfdir}/schroot %config(noreplace) %{_sysconfdir}/schroot/schroot.conf %config(noreplace) %{_sysconfdir}/schroot/mount-defaults %config(noreplace) %{_sysconfdir}/schroot/copyfiles-defaults %config(noreplace) %{_sysconfdir}/schroot/script-defaults %config(noreplace) %{_sysconfdir}/pam.d/schroot %dir %{_sysconfdir}/schroot/exec.d %{_sysconfdir}/schroot/exec.d/00check %dir %{_sysconfdir}/schroot/setup.d %{_sysconfdir}/schroot/setup.d/00check %{_sysconfdir}/schroot/setup.d/05file %{_sysconfdir}/schroot/setup.d/05lvm %{_sysconfdir}/schroot/setup.d/10mount %{_sysconfdir}/schroot/setup.d/15killprocs %{_sysconfdir}/schroot/setup.d/20copyfiles %{_sysconfdir}/schroot/setup.d/50chrootname %dir %{_libexecdir}/schroot %{_libexecdir}/schroot/schroot-listmounts %{_libexecdir}/schroot/schroot-mount %{_libexecdir}/schroot/schroot-releaselock %dir %{_localstatedir}/lib/schroot %{_localstatedir}/lib/schroot/session %{_localstatedir}/lib/schroot/mount %{_mandir}/man1/schroot.1.gz %{_mandir}/man5/schroot-script-config.5.gz %{_mandir}/man5/schroot-setup.5.gz %{_mandir}/man5/schroot.conf.5.gz %doc COPYING ABOUT-NLS AUTHORS ChangeLog HACKING INSTALL NEWS README THANKS TODO %files -n dchroot %defattr(-,root,root) %{_bindir}/dchroot %{_mandir}/man1/dchroot.1.gz %changelog * Tue Jul 14 2009 Zach Carter - 1.2.3-2 - fix "file listed twice" warnings * Tue Jul 14 2009 Zach Carter - 1.2.3-1 - new upstream version - compile with --enable-static --disable-shared - improve dchroot description - define directory ownership - add + to GPLv3 license definition * Tue May 5 2009 Zach Carter - 1.2.2-2 - schroot-bind-shm patch to fix DOS issue * Sat Apr 25 2009 Zach Carter - 1.2.2-1 - update to 1.2.2 * Wed Nov 5 2008 Zach Carter - 1.2.1-2 - move libsbuild subpackage into main package - remove duplicate doc entries - disable rpath - defattr for dchroot files * Mon Sep 15 2008 Zach Carter - 1.2.1-1 - bump version to 1.2.1 * Tue May 20 2008 Zach Carter - 1.2.0-1 - move dchroot.1.gz to correct subpackage - removed superfluous Requires: statements - moved i18n files into libsbuild subpackage - removed tmpfs patch * Mon May 12 2008 Zach Carter - 1.2.0-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/schroot/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 22:39:56 -0000 1.1 +++ .cvsignore 30 Jul 2009 16:01:01 -0000 1.2 @@ -0,0 +1 @@ +schroot_1.2.3.orig.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/schroot/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:39:56 -0000 1.1 +++ sources 30 Jul 2009 16:01:01 -0000 1.2 @@ -0,0 +1 @@ +cc54e994c7eb714fe140a8cc6f812a9f schroot_1.2.3.orig.tar.gz From s4504kr at fedoraproject.org Thu Jul 30 16:02:40 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 16:02:40 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf.spec,1.46,1.47 Message-ID: <20090730160240.151F911C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31897 Modified Files: aplus-fsf.spec Log Message: Fix Typo Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- aplus-fsf.spec 30 Jul 2009 15:49:01 -0000 1.46 +++ aplus-fsf.spec 30 Jul 2009 16:02:39 -0000 1.47 @@ -167,7 +167,7 @@ rm -rf $RPM_BUILD_ROOT/%{_prefix}/lisp* rm -rf $RPM_BUILD_ROOT/%{_prefix}/contrib pushd $RPM_BUILD_ROOT/%{xemacs_lispdir}/aplus-fsf -%{elcc} a.e +%{elcc} a.el %{elcc} a-font.el %{elcc} keyb.el %{elcc} xa.el From ausil at fedoraproject.org Thu Jul 30 16:03:30 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 30 Jul 2009 16:03:30 +0000 (UTC) Subject: rpms/fedora-packager/devel .cvsignore, 1.9, 1.10 fedora-packager.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090730160330.B1F0311C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32168 Modified Files: .cvsignore fedora-packager.spec sources Log Message: define user_cert before refrencing it Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 28 Jul 2009 22:15:17 -0000 1.9 +++ .cvsignore 30 Jul 2009 16:03:30 -0000 1.10 @@ -1 +1 @@ -fedora-packager-0.3.6.tar.bz2 +fedora-packager-0.3.7.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/fedora-packager.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fedora-packager.spec 28 Jul 2009 22:15:17 -0000 1.12 +++ fedora-packager.spec 30 Jul 2009 16:03:30 -0000 1.13 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.6 +Version: 0.3.7 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Dennis Gilmore - 0.3.7-1 +- define user_cert in fedora-cvs before refrencing it + * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Jul 2009 22:15:17 -0000 1.9 +++ sources 30 Jul 2009 16:03:30 -0000 1.10 @@ -1 +1 @@ -896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 +b5c1953ee29f796679a486d11a73f5a5 fedora-packager-0.3.7.tar.bz2 From zachcarter at fedoraproject.org Thu Jul 30 16:08:18 2009 From: zachcarter at fedoraproject.org (Zach Carter) Date: Thu, 30 Jul 2009 16:08:18 +0000 (UTC) Subject: rpms/schroot/F-11 import.log, NONE, 1.1 schroot-bind-shm.patch, NONE, 1.1 schroot-pam.patch, NONE, 1.1 schroot.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730160818.93B6B11C00D3@cvs1.fedora.phx.redhat.com> Author: zachcarter Update of /cvs/pkgs/rpms/schroot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1414/F-11 Modified Files: .cvsignore sources Added Files: import.log schroot-bind-shm.patch schroot-pam.patch schroot.spec Log Message: * Thu Jul 30 2009 Zach Carter - 1.2.3-2 - Import into cvs --- NEW FILE import.log --- schroot-1_2_3-2_fc11:F-11:schroot-1.2.3-2.fc11.src.rpm:1248970071 schroot-bind-shm.patch: mount-defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE schroot-bind-shm.patch --- --- bin/schroot/mount-defaults.orig 2009-05-05 10:26:42.000000000 -0700 +++ bin/schroot/mount-defaults 2009-05-05 10:26:59.000000000 -0700 @@ -5,6 +5,6 @@ # proc /proc proc defaults 0 0 /dev/pts /dev/pts none rw,bind 0 0 -tmpfs /dev/shm tmpfs defaults 0 0 +/dev/shm /dev/shm tmpfs defaults 0 0 /home /home none rw,bind 0 0 /tmp /tmp none rw,bind 0 0 schroot-pam.patch: schroot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE schroot-pam.patch --- --- schroot-1.1.6/bin/schroot/pam/schroot 2008-01-20 16:16:25.000000000 -0800 +++ schroot-1.1.6/bin/schroot/pam/schroot 2008-04-29 10:33:21.000000000 -0700 @@ -26,9 +26,9 @@ # The standard Unix authentication modules, used with # NIS (man nsswitch) as well as normal /etc/passwd and # /etc/shadow entries. - at include common-auth - at include common-account - at include common-session +auth include system-auth +session include system-auth +account include system-auth # Sets up user limits, please uncomment and read /etc/security/limits.conf # to enable this functionality. --- NEW FILE schroot.spec --- Name: schroot Version: 1.2.3 Release: 2%{?dist} Summary: Execute commands in a chroot environment Group: Development/Tools License: GPLv3+ Url: http://packages.debian.org/schroot Source0: http://ftp.de.debian.org/debian/pool/main/s/schroot/%{name}_%{version}.orig.tar.gz Patch0: schroot-pam.patch Patch1: schroot-bind-shm.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pam-devel BuildRequires: boost-devel BuildRequires: lockdev-devel BuildRequires: gettext %description schroot allows users to execute commands or interactive shells in different chroots. Any number of named chroots may be created, and access permissions given to each, including root access for normal users, on a per-user or per-group basis. Additionally, schroot can switch to a different user in the chroot, using PAM for authentication and authorisation. All operations are logged for security. Several different types of chroot are supported, including normal directories in the filesystem, and also block devices. Sessions, persistent chroots created on the fly from files (tar with optional compression and zip) and LVM snapshots are also supported. schroot supports kernel personalities, allowing the programs run inside the chroot to have a different personality. For example, running 32-bit chroots on 64-bit systems, or even running binaries from alternative operating systems such as SVR4 or Xenix. schroot also integrates with sbuild, to allow building packages with all supported chroot types, including session-managed chroot types such as LVM snapshots. schroot shares most of its options with dchroot, but offers vastly more functionality. %package -n dchroot Group: Development/Tools Summary: Older tool similar to schroot %description -n dchroot dchroot allows users to execute commands or interactive shells in different chroots. Users can move between chroots as necessary. Enhanced functionality is available in the next generation tool called schroot. %prep %setup -q %patch0 -p1 # fix for DOS issue reported here: # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526788 %patch1 -p0 %build %configure --disable-rpath --enable-static --disable-shared --enable-dchroot make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/schroot/session mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/schroot/chroot.d /sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir} # get rid of uneeded include and library files rm -rf $RPM_BUILD_ROOT%{_includedir} rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/sbuild.pc rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.la rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.so* rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.a %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root) %dir %{_bindir}/schroot %dir %{_sysconfdir}/schroot %config(noreplace) %{_sysconfdir}/schroot/schroot.conf %config(noreplace) %{_sysconfdir}/schroot/mount-defaults %config(noreplace) %{_sysconfdir}/schroot/copyfiles-defaults %config(noreplace) %{_sysconfdir}/schroot/script-defaults %config(noreplace) %{_sysconfdir}/pam.d/schroot %dir %{_sysconfdir}/schroot/exec.d %{_sysconfdir}/schroot/exec.d/00check %dir %{_sysconfdir}/schroot/setup.d %{_sysconfdir}/schroot/setup.d/00check %{_sysconfdir}/schroot/setup.d/05file %{_sysconfdir}/schroot/setup.d/05lvm %{_sysconfdir}/schroot/setup.d/10mount %{_sysconfdir}/schroot/setup.d/15killprocs %{_sysconfdir}/schroot/setup.d/20copyfiles %{_sysconfdir}/schroot/setup.d/50chrootname %dir %{_libexecdir}/schroot %{_libexecdir}/schroot/schroot-listmounts %{_libexecdir}/schroot/schroot-mount %{_libexecdir}/schroot/schroot-releaselock %dir %{_localstatedir}/lib/schroot %{_localstatedir}/lib/schroot/session %{_localstatedir}/lib/schroot/mount %{_mandir}/man1/schroot.1.gz %{_mandir}/man5/schroot-script-config.5.gz %{_mandir}/man5/schroot-setup.5.gz %{_mandir}/man5/schroot.conf.5.gz %doc COPYING ABOUT-NLS AUTHORS ChangeLog HACKING INSTALL NEWS README THANKS TODO %files -n dchroot %defattr(-,root,root) %{_bindir}/dchroot %{_mandir}/man1/dchroot.1.gz %changelog * Tue Jul 14 2009 Zach Carter - 1.2.3-2 - fix "file listed twice" warnings * Tue Jul 14 2009 Zach Carter - 1.2.3-1 - new upstream version - compile with --enable-static --disable-shared - improve dchroot description - define directory ownership - add + to GPLv3 license definition * Tue May 5 2009 Zach Carter - 1.2.2-2 - schroot-bind-shm patch to fix DOS issue * Sat Apr 25 2009 Zach Carter - 1.2.2-1 - update to 1.2.2 * Wed Nov 5 2008 Zach Carter - 1.2.1-2 - move libsbuild subpackage into main package - remove duplicate doc entries - disable rpath - defattr for dchroot files * Mon Sep 15 2008 Zach Carter - 1.2.1-1 - bump version to 1.2.1 * Tue May 20 2008 Zach Carter - 1.2.0-1 - move dchroot.1.gz to correct subpackage - removed superfluous Requires: statements - moved i18n files into libsbuild subpackage - removed tmpfs patch * Mon May 12 2008 Zach Carter - 1.2.0-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/schroot/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 22:39:56 -0000 1.1 +++ .cvsignore 30 Jul 2009 16:08:18 -0000 1.2 @@ -0,0 +1 @@ +schroot_1.2.3.orig.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/schroot/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:39:56 -0000 1.1 +++ sources 30 Jul 2009 16:08:18 -0000 1.2 @@ -0,0 +1 @@ +cc54e994c7eb714fe140a8cc6f812a9f schroot_1.2.3.orig.tar.gz From zachcarter at fedoraproject.org Thu Jul 30 16:08:59 2009 From: zachcarter at fedoraproject.org (Zach Carter) Date: Thu, 30 Jul 2009 16:08:59 +0000 (UTC) Subject: rpms/schroot/F-10 import.log, NONE, 1.1 schroot-bind-shm.patch, NONE, 1.1 schroot-pam.patch, NONE, 1.1 schroot.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730160859.C2CA711C00D3@cvs1.fedora.phx.redhat.com> Author: zachcarter Update of /cvs/pkgs/rpms/schroot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1821/F-10 Modified Files: .cvsignore sources Added Files: import.log schroot-bind-shm.patch schroot-pam.patch schroot.spec Log Message: * Thu Jul 30 2009 Zach Carter - 1.2.3-2 - Import into cvs --- NEW FILE import.log --- schroot-1_2_3-2_fc11:F-10:schroot-1.2.3-2.fc11.src.rpm:1248970125 schroot-bind-shm.patch: mount-defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE schroot-bind-shm.patch --- --- bin/schroot/mount-defaults.orig 2009-05-05 10:26:42.000000000 -0700 +++ bin/schroot/mount-defaults 2009-05-05 10:26:59.000000000 -0700 @@ -5,6 +5,6 @@ # proc /proc proc defaults 0 0 /dev/pts /dev/pts none rw,bind 0 0 -tmpfs /dev/shm tmpfs defaults 0 0 +/dev/shm /dev/shm tmpfs defaults 0 0 /home /home none rw,bind 0 0 /tmp /tmp none rw,bind 0 0 schroot-pam.patch: schroot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE schroot-pam.patch --- --- schroot-1.1.6/bin/schroot/pam/schroot 2008-01-20 16:16:25.000000000 -0800 +++ schroot-1.1.6/bin/schroot/pam/schroot 2008-04-29 10:33:21.000000000 -0700 @@ -26,9 +26,9 @@ # The standard Unix authentication modules, used with # NIS (man nsswitch) as well as normal /etc/passwd and # /etc/shadow entries. - at include common-auth - at include common-account - at include common-session +auth include system-auth +session include system-auth +account include system-auth # Sets up user limits, please uncomment and read /etc/security/limits.conf # to enable this functionality. --- NEW FILE schroot.spec --- Name: schroot Version: 1.2.3 Release: 2%{?dist} Summary: Execute commands in a chroot environment Group: Development/Tools License: GPLv3+ Url: http://packages.debian.org/schroot Source0: http://ftp.de.debian.org/debian/pool/main/s/schroot/%{name}_%{version}.orig.tar.gz Patch0: schroot-pam.patch Patch1: schroot-bind-shm.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pam-devel BuildRequires: boost-devel BuildRequires: lockdev-devel BuildRequires: gettext %description schroot allows users to execute commands or interactive shells in different chroots. Any number of named chroots may be created, and access permissions given to each, including root access for normal users, on a per-user or per-group basis. Additionally, schroot can switch to a different user in the chroot, using PAM for authentication and authorisation. All operations are logged for security. Several different types of chroot are supported, including normal directories in the filesystem, and also block devices. Sessions, persistent chroots created on the fly from files (tar with optional compression and zip) and LVM snapshots are also supported. schroot supports kernel personalities, allowing the programs run inside the chroot to have a different personality. For example, running 32-bit chroots on 64-bit systems, or even running binaries from alternative operating systems such as SVR4 or Xenix. schroot also integrates with sbuild, to allow building packages with all supported chroot types, including session-managed chroot types such as LVM snapshots. schroot shares most of its options with dchroot, but offers vastly more functionality. %package -n dchroot Group: Development/Tools Summary: Older tool similar to schroot %description -n dchroot dchroot allows users to execute commands or interactive shells in different chroots. Users can move between chroots as necessary. Enhanced functionality is available in the next generation tool called schroot. %prep %setup -q %patch0 -p1 # fix for DOS issue reported here: # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526788 %patch1 -p0 %build %configure --disable-rpath --enable-static --disable-shared --enable-dchroot make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/schroot/session mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/schroot/chroot.d /sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir} # get rid of uneeded include and library files rm -rf $RPM_BUILD_ROOT%{_includedir} rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/sbuild.pc rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.la rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.so* rm -f $RPM_BUILD_ROOT%{_libdir}/libsbuild.a %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root) %dir %{_bindir}/schroot %dir %{_sysconfdir}/schroot %config(noreplace) %{_sysconfdir}/schroot/schroot.conf %config(noreplace) %{_sysconfdir}/schroot/mount-defaults %config(noreplace) %{_sysconfdir}/schroot/copyfiles-defaults %config(noreplace) %{_sysconfdir}/schroot/script-defaults %config(noreplace) %{_sysconfdir}/pam.d/schroot %dir %{_sysconfdir}/schroot/exec.d %{_sysconfdir}/schroot/exec.d/00check %dir %{_sysconfdir}/schroot/setup.d %{_sysconfdir}/schroot/setup.d/00check %{_sysconfdir}/schroot/setup.d/05file %{_sysconfdir}/schroot/setup.d/05lvm %{_sysconfdir}/schroot/setup.d/10mount %{_sysconfdir}/schroot/setup.d/15killprocs %{_sysconfdir}/schroot/setup.d/20copyfiles %{_sysconfdir}/schroot/setup.d/50chrootname %dir %{_libexecdir}/schroot %{_libexecdir}/schroot/schroot-listmounts %{_libexecdir}/schroot/schroot-mount %{_libexecdir}/schroot/schroot-releaselock %dir %{_localstatedir}/lib/schroot %{_localstatedir}/lib/schroot/session %{_localstatedir}/lib/schroot/mount %{_mandir}/man1/schroot.1.gz %{_mandir}/man5/schroot-script-config.5.gz %{_mandir}/man5/schroot-setup.5.gz %{_mandir}/man5/schroot.conf.5.gz %doc COPYING ABOUT-NLS AUTHORS ChangeLog HACKING INSTALL NEWS README THANKS TODO %files -n dchroot %defattr(-,root,root) %{_bindir}/dchroot %{_mandir}/man1/dchroot.1.gz %changelog * Tue Jul 14 2009 Zach Carter - 1.2.3-2 - fix "file listed twice" warnings * Tue Jul 14 2009 Zach Carter - 1.2.3-1 - new upstream version - compile with --enable-static --disable-shared - improve dchroot description - define directory ownership - add + to GPLv3 license definition * Tue May 5 2009 Zach Carter - 1.2.2-2 - schroot-bind-shm patch to fix DOS issue * Sat Apr 25 2009 Zach Carter - 1.2.2-1 - update to 1.2.2 * Wed Nov 5 2008 Zach Carter - 1.2.1-2 - move libsbuild subpackage into main package - remove duplicate doc entries - disable rpath - defattr for dchroot files * Mon Sep 15 2008 Zach Carter - 1.2.1-1 - bump version to 1.2.1 * Tue May 20 2008 Zach Carter - 1.2.0-1 - move dchroot.1.gz to correct subpackage - removed superfluous Requires: statements - moved i18n files into libsbuild subpackage - removed tmpfs patch * Mon May 12 2008 Zach Carter - 1.2.0-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/schroot/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jul 2009 22:39:56 -0000 1.1 +++ .cvsignore 30 Jul 2009 16:08:59 -0000 1.2 @@ -0,0 +1 @@ +schroot_1.2.3.orig.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/schroot/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jul 2009 22:39:56 -0000 1.1 +++ sources 30 Jul 2009 16:08:59 -0000 1.2 @@ -0,0 +1 @@ +cc54e994c7eb714fe140a8cc6f812a9f schroot_1.2.3.orig.tar.gz From jkeating at fedoraproject.org Thu Jul 30 16:12:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 16:12:55 +0000 (UTC) Subject: rpms/libtool/F-11 libtool.spec,1.75,1.76 Message-ID: <20090730161255.624C411C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3038 Modified Files: libtool.spec Log Message: * Thu Jul 30 2009 Jakub Jelinek 2.2.6-11.fc11.1 - rebuilt against gcc-4.4.1 Index: libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtool/F-11/libtool.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- libtool.spec 25 Feb 2009 19:29:58 -0000 1.75 +++ libtool.spec 30 Jul 2009 16:12:55 -0000 1.76 @@ -1,9 +1,9 @@ -%define gcc_version 4.4.0 +%define gcc_version 4.4.1 Summary: The GNU Portable Library Tool Name: libtool Version: 2.2.6 -Release: 11%{?dist} +Release: 11%{?dist}.1 License: GPLv2+ and LGPLv2+ and GFDL Group: Development/Tools Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}a.tar.gz @@ -142,6 +142,9 @@ fi %changelog +* Thu Jul 30 2009 Jakub Jelinek 2.2.6-11.fc11.1 +- rebuilt against gcc-4.4.1 + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ausil at fedoraproject.org Thu Jul 30 16:13:25 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 30 Jul 2009 16:13:25 +0000 (UTC) Subject: rpms/fedora-packager/EL-5 .cvsignore, 1.6, 1.7 fedora-packager.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090730161325.1E8FC11C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3146 Modified Files: .cvsignore fedora-packager.spec sources Log Message: define user_cert before referencing it Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 28 Jul 2009 22:27:37 -0000 1.6 +++ .cvsignore 30 Jul 2009 16:13:24 -0000 1.7 @@ -1 +1 @@ -fedora-packager-0.3.6.tar.bz2 +fedora-packager-0.3.7.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/fedora-packager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fedora-packager.spec 28 Jul 2009 22:27:37 -0000 1.9 +++ fedora-packager.spec 30 Jul 2009 16:13:24 -0000 1.10 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.6 +Version: 0.3.7 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Dennis Gilmore - 0.3.7-1 +- define user_cert in fedora-cvs before refrencing it + * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 Jul 2009 22:27:37 -0000 1.7 +++ sources 30 Jul 2009 16:13:24 -0000 1.8 @@ -1 +1 @@ -896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 +b5c1953ee29f796679a486d11a73f5a5 fedora-packager-0.3.7.tar.bz2 From xhorak at fedoraproject.org Thu Jul 30 16:13:52 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 30 Jul 2009 16:13:52 +0000 (UTC) Subject: rpms/thunderbird/devel thunderbird-makebug.patch, NONE, 1.1 thunderbird.spec, 1.138, 1.139 Message-ID: <20090730161352.930F811C00D3@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4179 Modified Files: thunderbird.spec Added Files: thunderbird-makebug.patch Log Message: Fix build thunderbird-makebug.patch: Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE thunderbird-makebug.patch --- diff -up thunderbird-3.0/mozilla/modules/libpr0n/build/Makefile.in.makebug thunderbird-3.0/mozilla/modules/libpr0n/build/Makefile.in --- thunderbird-3.0/mozilla/modules/libpr0n/build/Makefile.in.makebug 2009-07-15 22:37:19.000000000 +0200 +++ thunderbird-3.0/mozilla/modules/libpr0n/build/Makefile.in 2009-07-30 16:10:37.000000000 +0200 @@ -103,7 +103,7 @@ EXTRA_DSO_LDOPTS = \ GARBAGE += _img_list nsImgBuildDefines.h export:: - @{ \ + @{ set \ $(foreach d,$(filter-out icon,$(MOZ_IMG_DECODERS)), \ echo "#define IMG_BUILD_DECODER_${d}";) \ $(foreach d,$(MOZ_IMG_ENCODERS), \ Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- thunderbird.spec 27 Jul 2009 05:55:53 -0000 1.138 +++ thunderbird.spec 30 Jul 2009 16:13:52 -0000 1.139 @@ -37,6 +37,7 @@ Patch1: mozilla-jemalloc.patch Patch2: thunderbird-shared-error.patch Patch3: xulrunner-elif.patch Patch4: thunderbird-pango.patch +Patch4: thunderbird-makebug.patch %if %{official_branding} # Required by Mozilla Corporation @@ -93,6 +94,7 @@ Mozilla Thunderbird is a standalone mail %patch2 -p1 -b .shared-error #%patch3 -p0 -b .xulrunner-elif #%patch4 -p1 -b .pango-fix +%patch5 -p1 -b .makebug %if %{official_branding} # Required by Mozilla Corporation From ausil at fedoraproject.org Thu Jul 30 16:14:13 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 30 Jul 2009 16:14:13 +0000 (UTC) Subject: rpms/fedora-packager/F-10 .cvsignore, 1.8, 1.9 fedora-packager.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090730161413.41AB111C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4239 Modified Files: .cvsignore fedora-packager.spec sources Log Message: new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 28 Jul 2009 22:30:48 -0000 1.8 +++ .cvsignore 30 Jul 2009 16:14:12 -0000 1.9 @@ -1 +1 @@ -fedora-packager-0.3.6.tar.bz2 +fedora-packager-0.3.7.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/fedora-packager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fedora-packager.spec 28 Jul 2009 22:30:48 -0000 1.9 +++ fedora-packager.spec 30 Jul 2009 16:14:13 -0000 1.10 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.6 +Version: 0.3.7 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Dennis Gilmore - 0.3.7-1 +- define user_cert in fedora-cvs before refrencing it + * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Jul 2009 22:30:48 -0000 1.9 +++ sources 30 Jul 2009 16:14:13 -0000 1.10 @@ -1 +1 @@ -896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 +b5c1953ee29f796679a486d11a73f5a5 fedora-packager-0.3.7.tar.bz2 From xhorak at fedoraproject.org Thu Jul 30 16:14:43 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 30 Jul 2009 16:14:43 +0000 (UTC) Subject: rpms/thunderbird/devel thunderbird.spec,1.139,1.140 Message-ID: <20090730161443.A712611C00D3@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4589 Modified Files: thunderbird.spec Log Message: Fix build Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- thunderbird.spec 30 Jul 2009 16:13:52 -0000 1.139 +++ thunderbird.spec 30 Jul 2009 16:14:43 -0000 1.140 @@ -37,7 +37,7 @@ Patch1: mozilla-jemalloc.patch Patch2: thunderbird-shared-error.patch Patch3: xulrunner-elif.patch Patch4: thunderbird-pango.patch -Patch4: thunderbird-makebug.patch +Patch5: thunderbird-makebug.patch %if %{official_branding} # Required by Mozilla Corporation From corsepiu at fedoraproject.org Thu Jul 30 16:15:16 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 16:15:16 +0000 (UTC) Subject: rpms/perl-GStreamer/devel perl-GStreamer.spec,1.9,1.10 Message-ID: <20090730161516.C29F711C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-GStreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4890 Modified Files: perl-GStreamer.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.15-3 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-GStreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GStreamer/devel/perl-GStreamer.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-GStreamer.spec 26 Jul 2009 06:11:19 -0000 1.9 +++ perl-GStreamer.spec 30 Jul 2009 16:15:16 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-GStreamer Version: 0.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl bindings to the GStreamer framework License: LGPLv2+ Group: Development/Libraries @@ -18,6 +18,7 @@ BuildRequires: perl(ExtUtils::MakeMaker BuildRequires: perl(ExtUtils::Depends) >= 0.205 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.07 BuildRequires: perl(Glib) >= 1.180 +BuildRequires: perl(Glib::MakeHelper) # test BuildRequires: perl(Test::More) @@ -68,6 +69,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 0.15-3 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From ausil at fedoraproject.org Thu Jul 30 16:15:32 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 30 Jul 2009 16:15:32 +0000 (UTC) Subject: rpms/fedora-packager/F-11 .cvsignore, 1.8, 1.9 fedora-packager.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090730161532.829A311C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4938 Modified Files: .cvsignore fedora-packager.spec sources Log Message: new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 28 Jul 2009 22:31:26 -0000 1.8 +++ .cvsignore 30 Jul 2009 16:15:32 -0000 1.9 @@ -1 +1 @@ -fedora-packager-0.3.6.tar.bz2 +fedora-packager-0.3.7.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/fedora-packager.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fedora-packager.spec 28 Jul 2009 22:31:26 -0000 1.10 +++ fedora-packager.spec 30 Jul 2009 16:15:32 -0000 1.11 @@ -1,5 +1,5 @@ Name: fedora-packager -Version: 0.3.6 +Version: 0.3.7 Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Dennis Gilmore - 0.3.7-1 +- define user_cert in fedora-cvs before refrencing it + * Tue Jul 28 2009 Dennis Gilmore - 0.3.6-1 - use anon checkout when a fedora cert doesnt exist bz#514108 - quote arguments passed onto rpmbuild bz#513269 Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 28 Jul 2009 22:31:26 -0000 1.9 +++ sources 30 Jul 2009 16:15:32 -0000 1.10 @@ -1 +1 @@ -896c9f9590eccd511c0997218f4a2b39 fedora-packager-0.3.6.tar.bz2 +b5c1953ee29f796679a486d11a73f5a5 fedora-packager-0.3.7.tar.bz2 From markmc at fedoraproject.org Thu Jul 30 16:28:52 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Thu, 30 Jul 2009 16:28:52 +0000 (UTC) Subject: rpms/qemu/devel qemu-fix-optionrom-install.patch, NONE, 1.1 qemu-bios-bigger-roms.patch, 1.8, 1.9 qemu-fix-linux-user-build-on-ppc.patch, 1.4, 1.5 qemu.spec, 1.114, 1.115 sources, 1.18, 1.19 qemu-fix-build-for-esd-audio.patch, 1.3, NONE qemu-prefer-sysfs-for-usb-host-devices.patch, 1.4, NONE qemu-slirp-Fix-guestfwd-for-incoming-data.patch, 1.3, NONE Message-ID: <20090730162852.F2F1B11C00D3@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9384 Modified Files: qemu-bios-bigger-roms.patch qemu-fix-linux-user-build-on-ppc.patch qemu.spec sources Added Files: qemu-fix-optionrom-install.patch Removed Files: qemu-fix-build-for-esd-audio.patch qemu-prefer-sysfs-for-usb-host-devices.patch qemu-slirp-Fix-guestfwd-for-incoming-data.patch Log Message: * Thu Jul 30 2009 Mark McLoughlin - 2:0.10.91-0.1.rc1.rc0 - Update to qemu-kvm-0.11.0-rc1-rc0 - This is a pre-release of the official -rc1 - A vista installer regression is blocking the official -rc1 release - Drop qemu-prefer-sysfs-for-usb-host-devices.patch - Drop qemu-fix-build-for-esd-audio.patch - Drop qemu-slirp-Fix-guestfwd-for-incoming-data.patch - Add patch to ensure extboot.bin is installed qemu-fix-optionrom-install.patch: Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE qemu-fix-optionrom-install.patch --- >From e941daafed39ae5db507af42da8a35b60a8be363 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 30 Jul 2009 17:17:43 +0100 Subject: [PATCH] Revert "Don't copy multiboot.bin into pc-bios after built" This reverts commit 24d904eab3e806dc4d1ccdabbc3b4dcb64ddf497. This ensures: a) extboot.bin is copied to pc-bios and installed b) the built mutliboot.bin overwrites the multiboot.bin shipped in the tarball Signed-of-by: Mark McLoughlin Fedora-patch: qemu-fix-optionrom-install.patch --- pc-bios/optionrom/Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 4cc3dae..e06ca72 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -41,6 +41,7 @@ build-all: multiboot.bin extboot.bin %.bin: %.raw $(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@ + cp $@ $(SRC_PATH)/pc-bios/ clean: $(RM) *.o *.img *.bin *~ -- 1.6.2.5 qemu-bios-bigger-roms.patch: rombios.c | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) Index: qemu-bios-bigger-roms.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-bios-bigger-roms.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qemu-bios-bigger-roms.patch 28 Jul 2009 08:17:19 -0000 1.8 +++ qemu-bios-bigger-roms.patch 30 Jul 2009 16:28:52 -0000 1.9 @@ -1,4 +1,4 @@ -From dd5a9dedba205ad51ef2fc70f0a1dddea7ff4a4f Mon Sep 17 00:00:00 2001 +From ad6bfcfe0292ac09aac0de729343dabf91c16f93 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 24 Jun 2009 14:31:41 +0100 Subject: [PATCH] compute checksum for roms bigger than a segment @@ -23,10 +23,10 @@ Fedora-patch: qemu-bios-bigger-roms.patc 1 files changed, 27 insertions(+), 6 deletions(-) diff --git a/kvm/bios/rombios.c b/kvm/bios/rombios.c -index 6186199..fc289c0 100644 +index 6e1d446..8a96d8e 100644 --- a/kvm/bios/rombios.c +++ b/kvm/bios/rombios.c -@@ -10170,22 +10170,43 @@ no_serial: +@@ -10189,22 +10189,43 @@ no_serial: ret rom_checksum: qemu-fix-linux-user-build-on-ppc.patch: elf.h | 2 ++ linux-user/elfload.c | 11 ++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) Index: qemu-fix-linux-user-build-on-ppc.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-linux-user-build-on-ppc.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qemu-fix-linux-user-build-on-ppc.patch 28 Jul 2009 08:17:19 -0000 1.4 +++ qemu-fix-linux-user-build-on-ppc.patch 30 Jul 2009 16:28:52 -0000 1.5 @@ -1,4 +1,4 @@ -From 052506320166112bec0b5b7aa272973c1a508551 Mon Sep 17 00:00:00 2001 +From 6def4aea8b88f52de678ffca117ba70b1e6878c2 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 29 Jun 2009 14:49:03 +0100 Subject: [PATCH] Fix linux-user build on ppc Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- qemu.spec 27 Jul 2009 02:18:00 -0000 1.114 +++ qemu.spec 30 Jul 2009 16:28:52 -0000 1.115 @@ -1,18 +1,18 @@ -%define kvmvernum 88 -%define kvmvertag kvm%{kvmvernum} -%define kvmverfull kvm-devel-%{kvmvernum} +%define kvmvertag rc1.rc0 +%define kvmverfull kvm-0.11.0-rc1-rc0 Summary: QEMU is a FAST! processor emulator Name: qemu -Version: 0.10.50 -Release: 14.%{kvmvertag}%{?dist} +Version: 0.10.91 +Release: 0.1.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD Group: Development/Tools URL: http://www.qemu.org/ -Source0: http://downloads.sourceforge.net/sourceforge/kvm/qemu-%{kvmverfull}.tar.gz +Source0: http://markmc.fedorapeople.org/kvm/qemu-%{kvmverfull}.tar.gz +#Source0: http://downloads.sourceforge.net/sourceforge/kvm/qemu-%{kvmverfull}.tar.gz Source1: qemu.init Source2: kvm.modules Source3: 80-kvm.rules @@ -23,14 +23,8 @@ Patch01: qemu-bios-bigger-roms.patch # Works around broken linux-user build on ppc Patch02: qemu-fix-linux-user-build-on-ppc.patch -# Prefer sysfs over usbfs for usb passthrough (#508326) -Patch03: qemu-prefer-sysfs-for-usb-host-devices.patch - -# Fix build with esound audio enabled, cherry-picked from upstream -Patch04: qemu-fix-build-for-esd-audio.patch - -# Fix guestfwd behaviour, cherrypicked from upstream (#513249) -Patch05: qemu-slirp-Fix-guestfwd-for-incoming-data.patch +# Make sure multiboot.bin/extboot.bin gets installed +Patch03: qemu-fix-optionrom-install.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel zlib-devel which texi2html gnutls-devel cyrus-sasl-devel @@ -215,8 +209,6 @@ such as kvmtrace and kvm_stat. %patch01 -p1 %patch02 -p1 %patch03 -p1 -%patch04 -p1 -%patch05 -p1 %build # systems like rhel build system does not have a recent enough linker so @@ -481,6 +473,15 @@ getent passwd qemu >/dev/null || \ %{_mandir}/man1/qemu-img.1* %changelog +* Thu Jul 30 2009 Mark McLoughlin - 2:0.10.91-0.1.rc1.rc0 +- Update to qemu-kvm-0.11.0-rc1-rc0 +- This is a pre-release of the official -rc1 +- A vista installer regression is blocking the official -rc1 release +- Drop qemu-prefer-sysfs-for-usb-host-devices.patch +- Drop qemu-fix-build-for-esd-audio.patch +- Drop qemu-slirp-Fix-guestfwd-for-incoming-data.patch +- Add patch to ensure extboot.bin is installed + * Sun Jul 26 2009 Fedora Release Engineering - 2:0.10.50-14.kvm88 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 16 Jul 2009 11:15:53 -0000 1.18 +++ sources 30 Jul 2009 16:28:52 -0000 1.19 @@ -1 +1 @@ -0564b071fb1bb7211f51ef588ebb4a7c qemu-kvm-devel-88.tar.gz +d5196f06c21f77c72977ef04c6cb0ae4 qemu-kvm-0.11.0-rc1-rc0.tar.gz --- qemu-fix-build-for-esd-audio.patch DELETED --- --- qemu-prefer-sysfs-for-usb-host-devices.patch DELETED --- --- qemu-slirp-Fix-guestfwd-for-incoming-data.patch DELETED --- From mathstuf at fedoraproject.org Thu Jul 30 16:31:30 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 16:31:30 +0000 (UTC) Subject: rpms/kobby/devel kobby.spec,1.1,1.2 Message-ID: <20090730163130.BD5EA11C00D3@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10245 Modified Files: kobby.spec Log Message: Fix summary Index: kobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/kobby/devel/kobby.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kobby.spec 30 Jul 2009 00:12:20 -0000 1.1 +++ kobby.spec 30 Jul 2009 16:31:30 -0000 1.2 @@ -1,7 +1,7 @@ Name: kobby Version: 1.0 -Release: 0.1.b3%{?dist} -Summary: Collaborative editor for KDE +Release: 0.2.b3%{?dist} +Summary: Collaborative editor using the infinote protocol Group: Applications/Editors License: GPLv2+ @@ -48,5 +48,8 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Ben Boeckel 1.0-0.2.b3 +- Fix summary + * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package From s4504kr at fedoraproject.org Thu Jul 30 16:33:06 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 16:33:06 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf-lpath.el, NONE, 1.1 aplus-fsf.spec, 1.47, 1.48 Message-ID: <20090730163306.332FA11C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10934 Modified Files: aplus-fsf.spec Added Files: aplus-fsf-lpath.el Log Message: Add a lpath.el path do define XEmacs search path --- NEW FILE aplus-fsf-lpath.el --- ;;; This file is only used for installing AUCTeX. ;;; It is not a part of aplus-fsf.el itself. ;; Make sure we get the right files. (setq load-path (cons "." load-path) byte-compile-warnings nil Index: aplus-fsf.spec =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- aplus-fsf.spec 30 Jul 2009 16:02:39 -0000 1.47 +++ aplus-fsf.spec 30 Jul 2009 16:33:06 -0000 1.48 @@ -19,7 +19,7 @@ %define _x11lib %{_libdir} %define _x11appdef %{_x11pref}/app-defaults -%define elcc xemacs -batch -q -no-site-file -no-init-file -f batch-byte-compile +%define elcc xemacs -batch -q -no-site-file -no-init-file -l lpath.el -f batch-byte-compile Name: %name Version: 4.22.4 @@ -37,6 +37,7 @@ Source2: aplus-fsf.wrapper Source3: aplus-fsf-aplterm Source4: aplus-fsf-xterm-apl Source5: aplus-fsf-readme +Source6: aplus-fsf-lpath.el Patch1: aplus-fsf-4.22.4-makefile.patch Patch3: aplus-fsf-4.20-el.patch @@ -167,11 +168,13 @@ rm -rf $RPM_BUILD_ROOT/%{_prefix}/lisp* rm -rf $RPM_BUILD_ROOT/%{_prefix}/contrib pushd $RPM_BUILD_ROOT/%{xemacs_lispdir}/aplus-fsf +cp %{SOURCE6} lpath.el %{elcc} a.el %{elcc} a-font.el %{elcc} keyb.el %{elcc} xa.el %{elcc} aplus.el +rm lpath.el popd install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT/%{_bindir}/xterm-apl From bretm at fedoraproject.org Thu Jul 30 16:40:59 2009 From: bretm at fedoraproject.org (Bret Richard McMillan) Date: Thu, 30 Jul 2009 16:40:59 +0000 (UTC) Subject: rpms/wordpress-mu/EL-5 2.8.2-commentor-fix.patch, NONE, 1.1 wordpress-mu.spec, 1.8, 1.9 Message-ID: <20090730164059.35BF511C00D3@cvs1.fedora.phx.redhat.com> Author: bretm Update of /cvs/pkgs/rpms/wordpress-mu/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13679 Modified Files: wordpress-mu.spec Added Files: 2.8.2-commentor-fix.patch Log Message: backport of 2.8.2 XSS fix 2.8.2-commentor-fix.patch: wp-admin/comment.php | 4 ++-- wp-admin/edit-form-comment.php | 20 +++++++------------- wp-admin/includes/template.php | 4 +--- wp-includes/comment-template.php | 26 ++++++++++++++++++++++++-- 4 files changed, 34 insertions(+), 20 deletions(-) --- NEW FILE 2.8.2-commentor-fix.patch --- commit e8f2fc7acb6da2fc30a154ca6431449f0ea0d527 Author: Bret McMillan Date: Thu Jul 30 11:39:44 2009 -0400 backport of fixes for WordPress 2.8.2 XSS vulnerability diff --git a/wp-admin/comment.php b/wp-admin/comment.php index 00ea590..d92a717 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -22,7 +22,7 @@ if ( isset( $_POST['deletecomment'] ) ) * * @param string $msg Error Message. Assumed to contain HTML and be sanitized. */ -function comment_footer_die( $msg ) { // +function comment_footer_die( $msg ) { echo "

$msg

"; include('admin-footer.php'); die; @@ -119,7 +119,7 @@ if ( 'spam' == $_GET['dt'] ) { comment_author_url ) { ?>
- + diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 531db65..40bede5 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -12,7 +12,8 @@ $submitbutton_text = __('Edit Comment'); $toprow_title = sprintf(__('Editing Comment # %s'), $comment->comment_ID); $form_action = 'editedcomment'; -$form_extra = "' />\n\n\n\n\n' /> -comment_author_email ); -$url = attribute_escape( $comment->comment_author_url ); -// add_meta_box('submitdiv', __('Save'), 'comment_submit_meta_box', 'comment', 'side', 'core'); -?>
@@ -95,25 +90,24 @@ $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
- + - +
{paramtext}:
{keytext}: -{[choices]{text}} +{[choices]{text}}
{keytext}:
{keytext}: {iscustom=1?{[params] Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.480 retrieving revision 1.481 diff -u -p -r1.480 -r1.481 --- cups.spec 1 Jul 2009 11:28:25 -0000 1.480 +++ cups.spec 1 Jul 2009 13:13:02 -0000 1.481 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.6%{?dist} +Release: 0.%{pre}.7%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -47,7 +47,8 @@ Patch23: cups-res_init.patch Patch24: cups-str3229.patch Patch25: cups-filter-debug.patch Patch26: cups-str3231.patch -Patch27: cups-avahi.patch +Patch27: cups-str3244.patch +Patch28: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -190,7 +191,8 @@ module. %patch24 -p1 -b .str3229 %patch25 -p1 -b .filter-debug %patch26 -p1 -b .str3231 -#%patch27 -p1 -b .avahi +%patch27 -p1 -b .str3244 +#%patch28 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -474,6 +476,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.7 +- Fixed template problem preventing current printer option defaults + from being shown in the web interface (bug #506794, STR #3244). + * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.6 - Fixed lpadmin for remote 1.3.x servers (bug #506977, STR #3231). From sharkcz at fedoraproject.org Wed Jul 1 13:13:34 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 1 Jul 2009 13:13:34 +0000 (UTC) Subject: rpms/squirrel/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 squirrel-autotools.patch, 1.1, 1.2 squirrel.spec, 1.3, 1.4 Message-ID: <20090701131334.3EBB011C02C3@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/squirrel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26200 Modified Files: .cvsignore sources squirrel-autotools.patch squirrel.spec Log Message: * Wed Jul 1 2009 Dan Hor??k 2.2.3-1 - update to upstream version 2.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Oct 2008 12:23:38 -0000 1.3 +++ .cvsignore 1 Jul 2009 13:13:03 -0000 1.4 @@ -1 +1 @@ -squirrel_2.2.2_stable_fixed.tar.gz +squirrel_2.2.3_stable.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Oct 2008 12:23:39 -0000 1.3 +++ sources 1 Jul 2009 13:13:03 -0000 1.4 @@ -1 +1 @@ -7c2842a8cc3ac4e2d63a74bcb59eaf02 squirrel_2.2.2_stable_fixed.tar.gz +25295ed1459111a80f612357cfe83b54 squirrel_2.2.3_stable.tar.gz squirrel-autotools.patch: Index: squirrel-autotools.patch =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-11/squirrel-autotools.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squirrel-autotools.patch 1 Jun 2008 09:05:06 -0000 1.1 +++ squirrel-autotools.patch 1 Jul 2009 13:13:03 -0000 1.2 @@ -9,10 +9,10 @@ diff -Nru SQUIRREL2.orig/autogen.sh SQUI + exit +fi + -+libtoolize ++libtoolize --copy +aclocal +autoheader -+automake --add-missing --foreign ++automake --add-missing --copy --foreign +autoconf diff -Nru SQUIRREL2.orig/configure.ac SQUIRREL2/configure.ac --- SQUIRREL2.orig/configure.ac 1970-01-01 01:00:00.000000000 +0100 @@ -20,7 +20,7 @@ diff -Nru SQUIRREL2.orig/configure.ac SQ @@ -0,0 +1,26 @@ +## Bootstrap autoconf/automake +AC_PREREQ(2.59) -+AC_INIT([squirrel], [2.2], []) ++AC_INIT([squirrel], [2.2.3], []) +AC_CANONICAL_TARGET +AC_CONFIG_SRCDIR([configure.ac]) +AM_INIT_AUTOMAKE @@ -181,12 +181,14 @@ diff -Nru SQUIRREL2.orig/sqstdlib/Makefi diff -Nru SQUIRREL2.orig/sqstdlib/Makefile.am SQUIRREL2/sqstdlib/Makefile.am --- SQUIRREL2.orig/sqstdlib/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/sqstdlib/Makefile.am 2007-07-07 19:24:48.000000000 +0200 -@@ -0,0 +1,18 @@ +@@ -0,0 +1,20 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti + +lib_LTLIBRARIES = libsqstdlib.la + ++libsqstdlib_la_LDFLAGS = -release $(VERSION) ++ +libsqstdlib_la_SOURCES = \ + sqstdaux.cpp \ + sqstdblob.cpp \ @@ -259,12 +261,14 @@ diff -Nru SQUIRREL2.orig/squirrel/Makefi diff -Nru SQUIRREL2.orig/squirrel/Makefile.am SQUIRREL2/squirrel/Makefile.am --- SQUIRREL2.orig/squirrel/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/squirrel/Makefile.am 2007-07-07 19:03:05.000000000 +0200 -@@ -0,0 +1,36 @@ +@@ -0,0 +1,38 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti -Wall + +lib_LTLIBRARIES = libsquirrel.la + ++libsquirrel_la_LDFLAGS = -release $(VERSION) ++ +libsquirrel_la_SOURCES = \ + sqapi.cpp \ + sqarray.h \ Index: squirrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-11/squirrel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- squirrel.spec 26 Feb 2009 02:43:41 -0000 1.3 +++ squirrel.spec 1 Jul 2009 13:13:04 -0000 1.4 @@ -1,16 +1,12 @@ Name: squirrel -Version: 2.2.2 -Release: 2%{?dist} +Version: 2.2.3 +Release: 1%{?dist} Summary: High level imperative/OO programming language Group: Development/Tools License: zlib URL: http://squirrel-lang.org/ -#Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz -# upstream source archive contains 0000 as permisions for both files and dirs -# fixed with "find . -type d -exec chmod 0755 {} \;" -# and "find . -type f -exec chmod 0644 {} \;" -Source0: %{name}_%{version}_stable_fixed.tar.gz +Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: squirrel-autotools.patch @@ -38,7 +34,9 @@ Development files needed to use Squirrel %prep -%setup -q -n SQUIRREL2 +%setup -q -c + +pushd SQUIRREL2 %patch0 -p1 # fix extension for autotools @@ -52,16 +50,21 @@ do done sh autogen.sh +popd %build +pushd SQUIRREL2 %configure --disable-static make %{?_smp_mflags} +popd %install rm -rf $RPM_BUILD_ROOT +pushd SQUIRREL2 make DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p" install +popd rm $RPM_BUILD_ROOT%{_libdir}/*.la @@ -76,24 +79,27 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README HISTORY COPYRIGHT +%doc SQUIRREL2/{README,HISTORY,COPYRIGHT} %{_bindir}/sq %files libs %defattr(-,root,root,-) -%doc COPYRIGHT -%{_libdir}/libsqstdlib.so.* -%{_libdir}/libsquirrel.so.* +%doc SQUIRREL2/COPYRIGHT +%{_libdir}/libsqstdlib-%{version}.so +%{_libdir}/libsquirrel-%{version}.so %files devel %defattr(-,root,root,-) -%doc doc/*.pdf +%doc SQUIRREL2/doc/*.pdf %{_includedir}/squirrel %{_libdir}/libsqstdlib.so %{_libdir}/libsquirrel.so %changelog +* Wed Jul 1 2009 Dan Hor??k 2.2.3-1 +- update to upstream version 2.2.3 + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From limb at fedoraproject.org Wed Jul 1 13:14:11 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 1 Jul 2009 13:14:11 +0000 (UTC) Subject: rpms/argyllcms/devel .cvsignore,1.6,1.7 sources,1.6,1.7 Message-ID: <20090701131411.DCA9811C02C3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/argyllcms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26537 Modified Files: .cvsignore sources Log Message: Whoops. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/argyllcms/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 30 Jun 2009 18:10:28 -0000 1.6 +++ .cvsignore 1 Jul 2009 13:14:11 -0000 1.7 @@ -1 +1,2 @@ +Argyll_V1.0.1_autotools.patch.gz Argyll_V1.0.4_src.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/argyllcms/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 30 Jun 2009 18:10:28 -0000 1.6 +++ sources 1 Jul 2009 13:14:11 -0000 1.7 @@ -1 +1,2 @@ +cdb94385421c2fae1cf6fb068069cd9e Argyll_V1.0.1_autotools.patch.gz de4010412da4f23a0df3de8f4d3d230d Argyll_V1.0.4_src.zip From svahl at fedoraproject.org Wed Jul 1 13:15:20 2009 From: svahl at fedoraproject.org (Sebastian Vahl) Date: Wed, 1 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/grsync/F-11 .cvsignore, 1.6, 1.7 grsync.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090701131520.AE11811C02C3@cvs1.fedora.phx.redhat.com> Author: svahl Update of /cvs/extras/rpms/grsync/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26761/F-11 Modified Files: .cvsignore grsync.spec sources Log Message: new upstream version for f11, devel: 0.9.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 1 Jul 2009 12:24:39 -0000 1.6 +++ .cvsignore 1 Jul 2009 13:14:50 -0000 1.7 @@ -1 +1 @@ -grsync-0.9.0.tar.gz +grsync-0.9.1.tar.gz Index: grsync.spec =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/grsync.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- grsync.spec 1 Jul 2009 12:24:39 -0000 1.9 +++ grsync.spec 1 Jul 2009 13:14:50 -0000 1.10 @@ -1,5 +1,5 @@ Name: grsync -Version: 0.9.0 +Version: 0.9.1 Release: 1%{?dist} Summary: A Gtk+ GUI for rsync @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Sebastian Vahl - 0.9.1-1 +- new upstream release + * Sun Jun 14 2009 Sebastian Vahl - 0.9.0-1 - new upstream release Index: sources =================================================================== RCS file: /cvs/extras/rpms/grsync/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 12:24:40 -0000 1.6 +++ sources 1 Jul 2009 13:14:50 -0000 1.7 @@ -1 +1 @@ -fc1d54d76f67df654dffb8ef40b93252 grsync-0.9.0.tar.gz +4425e1092d12ddbba7176265e4a2150d grsync-0.9.1.tar.gz From svahl at fedoraproject.org Wed Jul 1 13:15:20 2009 From: svahl at fedoraproject.org (Sebastian Vahl) Date: Wed, 1 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/grsync/devel .cvsignore, 1.6, 1.7 grsync.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090701131521.3135B11C02C3@cvs1.fedora.phx.redhat.com> Author: svahl Update of /cvs/extras/rpms/grsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26761/devel Modified Files: .cvsignore grsync.spec sources Log Message: new upstream version for f11, devel: 0.9.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/grsync/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 14 Jun 2009 22:06:45 -0000 1.6 +++ .cvsignore 1 Jul 2009 13:14:50 -0000 1.7 @@ -1 +1 @@ -grsync-0.9.0.tar.gz +grsync-0.9.1.tar.gz Index: grsync.spec =================================================================== RCS file: /cvs/extras/rpms/grsync/devel/grsync.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- grsync.spec 14 Jun 2009 22:06:46 -0000 1.9 +++ grsync.spec 1 Jul 2009 13:14:50 -0000 1.10 @@ -1,5 +1,5 @@ Name: grsync -Version: 0.9.0 +Version: 0.9.1 Release: 1%{?dist} Summary: A Gtk+ GUI for rsync @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Sebastian Vahl - 0.9.1-1 +- new upstream release + * Sun Jun 14 2009 Sebastian Vahl - 0.9.0-1 - new upstream release Index: sources =================================================================== RCS file: /cvs/extras/rpms/grsync/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 14 Jun 2009 22:06:46 -0000 1.6 +++ sources 1 Jul 2009 13:14:50 -0000 1.7 @@ -1 +1 @@ -fc1d54d76f67df654dffb8ef40b93252 grsync-0.9.0.tar.gz +4425e1092d12ddbba7176265e4a2150d grsync-0.9.1.tar.gz From sharkcz at fedoraproject.org Wed Jul 1 13:15:33 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 1 Jul 2009 13:15:33 +0000 (UTC) Subject: rpms/squirrel/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 squirrel-autotools.patch, 1.1, 1.2 squirrel.spec, 1.2, 1.3 Message-ID: <20090701131533.7096611C02C3@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/squirrel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26951 Modified Files: .cvsignore sources squirrel-autotools.patch squirrel.spec Log Message: * Wed Jul 1 2009 Dan Hor??k 2.2.3-1 - update to upstream version 2.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Oct 2008 12:23:38 -0000 1.3 +++ .cvsignore 1 Jul 2009 13:15:32 -0000 1.4 @@ -1 +1 @@ -squirrel_2.2.2_stable_fixed.tar.gz +squirrel_2.2.3_stable.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Oct 2008 12:23:39 -0000 1.3 +++ sources 1 Jul 2009 13:15:33 -0000 1.4 @@ -1 +1 @@ -7c2842a8cc3ac4e2d63a74bcb59eaf02 squirrel_2.2.2_stable_fixed.tar.gz +25295ed1459111a80f612357cfe83b54 squirrel_2.2.3_stable.tar.gz squirrel-autotools.patch: Index: squirrel-autotools.patch =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-10/squirrel-autotools.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squirrel-autotools.patch 1 Jun 2008 09:05:06 -0000 1.1 +++ squirrel-autotools.patch 1 Jul 2009 13:15:33 -0000 1.2 @@ -9,10 +9,10 @@ diff -Nru SQUIRREL2.orig/autogen.sh SQUI + exit +fi + -+libtoolize ++libtoolize --copy +aclocal +autoheader -+automake --add-missing --foreign ++automake --add-missing --copy --foreign +autoconf diff -Nru SQUIRREL2.orig/configure.ac SQUIRREL2/configure.ac --- SQUIRREL2.orig/configure.ac 1970-01-01 01:00:00.000000000 +0100 @@ -20,7 +20,7 @@ diff -Nru SQUIRREL2.orig/configure.ac SQ @@ -0,0 +1,26 @@ +## Bootstrap autoconf/automake +AC_PREREQ(2.59) -+AC_INIT([squirrel], [2.2], []) ++AC_INIT([squirrel], [2.2.3], []) +AC_CANONICAL_TARGET +AC_CONFIG_SRCDIR([configure.ac]) +AM_INIT_AUTOMAKE @@ -181,12 +181,14 @@ diff -Nru SQUIRREL2.orig/sqstdlib/Makefi diff -Nru SQUIRREL2.orig/sqstdlib/Makefile.am SQUIRREL2/sqstdlib/Makefile.am --- SQUIRREL2.orig/sqstdlib/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/sqstdlib/Makefile.am 2007-07-07 19:24:48.000000000 +0200 -@@ -0,0 +1,18 @@ +@@ -0,0 +1,20 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti + +lib_LTLIBRARIES = libsqstdlib.la + ++libsqstdlib_la_LDFLAGS = -release $(VERSION) ++ +libsqstdlib_la_SOURCES = \ + sqstdaux.cpp \ + sqstdblob.cpp \ @@ -259,12 +261,14 @@ diff -Nru SQUIRREL2.orig/squirrel/Makefi diff -Nru SQUIRREL2.orig/squirrel/Makefile.am SQUIRREL2/squirrel/Makefile.am --- SQUIRREL2.orig/squirrel/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/squirrel/Makefile.am 2007-07-07 19:03:05.000000000 +0200 -@@ -0,0 +1,36 @@ +@@ -0,0 +1,38 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti -Wall + +lib_LTLIBRARIES = libsquirrel.la + ++libsquirrel_la_LDFLAGS = -release $(VERSION) ++ +libsquirrel_la_SOURCES = \ + sqapi.cpp \ + sqarray.h \ Index: squirrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/F-10/squirrel.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- squirrel.spec 14 Oct 2008 12:23:39 -0000 1.2 +++ squirrel.spec 1 Jul 2009 13:15:33 -0000 1.3 @@ -1,16 +1,12 @@ Name: squirrel -Version: 2.2.2 +Version: 2.2.3 Release: 1%{?dist} Summary: High level imperative/OO programming language Group: Development/Tools License: zlib URL: http://squirrel-lang.org/ -#Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz -# upstream source archive contains 0000 as permisions for both files and dirs -# fixed with "find . -type d -exec chmod 0755 {} \;" -# and "find . -type f -exec chmod 0644 {} \;" -Source0: %{name}_%{version}_stable_fixed.tar.gz +Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: squirrel-autotools.patch @@ -38,7 +34,9 @@ Development files needed to use Squirrel %prep -%setup -q -n SQUIRREL2 +%setup -q -c + +pushd SQUIRREL2 %patch0 -p1 # fix extension for autotools @@ -52,16 +50,21 @@ do done sh autogen.sh +popd %build +pushd SQUIRREL2 %configure --disable-static make %{?_smp_mflags} +popd %install rm -rf $RPM_BUILD_ROOT +pushd SQUIRREL2 make DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p" install +popd rm $RPM_BUILD_ROOT%{_libdir}/*.la @@ -76,24 +79,30 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README HISTORY COPYRIGHT +%doc SQUIRREL2/{README,HISTORY,COPYRIGHT} %{_bindir}/sq %files libs %defattr(-,root,root,-) -%doc COPYRIGHT -%{_libdir}/libsqstdlib.so.* -%{_libdir}/libsquirrel.so.* +%doc SQUIRREL2/COPYRIGHT +%{_libdir}/libsqstdlib-%{version}.so +%{_libdir}/libsquirrel-%{version}.so %files devel %defattr(-,root,root,-) -%doc doc/*.pdf +%doc SQUIRREL2/doc/*.pdf %{_includedir}/squirrel %{_libdir}/libsqstdlib.so %{_libdir}/libsquirrel.so %changelog +* Wed Jul 1 2009 Dan Hor??k 2.2.3-1 +- update to upstream version 2.2.3 + +* Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Oct 13 2008 Dan Hor??k 2.2.2-1 - update to upstream version 2.2.2 From sharkcz at fedoraproject.org Wed Jul 1 13:17:12 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 1 Jul 2009 13:17:12 +0000 (UTC) Subject: rpms/squirrel/EL-5 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 squirrel-autotools.patch, 1.1, 1.2 squirrel.spec, 1.2, 1.3 Message-ID: <20090701131712.6BD0111C02C3@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/squirrel/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27354 Modified Files: .cvsignore sources squirrel-autotools.patch squirrel.spec Log Message: * Wed Jul 1 2009 Dan Hor??k 2.2.3-1 - update to upstream version 2.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Oct 2008 12:23:38 -0000 1.3 +++ .cvsignore 1 Jul 2009 13:16:41 -0000 1.4 @@ -1 +1 @@ -squirrel_2.2.2_stable_fixed.tar.gz +squirrel_2.2.3_stable.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Oct 2008 12:23:39 -0000 1.3 +++ sources 1 Jul 2009 13:16:42 -0000 1.4 @@ -1 +1 @@ -7c2842a8cc3ac4e2d63a74bcb59eaf02 squirrel_2.2.2_stable_fixed.tar.gz +25295ed1459111a80f612357cfe83b54 squirrel_2.2.3_stable.tar.gz squirrel-autotools.patch: Index: squirrel-autotools.patch =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/EL-5/squirrel-autotools.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squirrel-autotools.patch 1 Jun 2008 09:05:06 -0000 1.1 +++ squirrel-autotools.patch 1 Jul 2009 13:16:42 -0000 1.2 @@ -9,10 +9,10 @@ diff -Nru SQUIRREL2.orig/autogen.sh SQUI + exit +fi + -+libtoolize ++libtoolize --copy +aclocal +autoheader -+automake --add-missing --foreign ++automake --add-missing --copy --foreign +autoconf diff -Nru SQUIRREL2.orig/configure.ac SQUIRREL2/configure.ac --- SQUIRREL2.orig/configure.ac 1970-01-01 01:00:00.000000000 +0100 @@ -20,7 +20,7 @@ diff -Nru SQUIRREL2.orig/configure.ac SQ @@ -0,0 +1,26 @@ +## Bootstrap autoconf/automake +AC_PREREQ(2.59) -+AC_INIT([squirrel], [2.2], []) ++AC_INIT([squirrel], [2.2.3], []) +AC_CANONICAL_TARGET +AC_CONFIG_SRCDIR([configure.ac]) +AM_INIT_AUTOMAKE @@ -181,12 +181,14 @@ diff -Nru SQUIRREL2.orig/sqstdlib/Makefi diff -Nru SQUIRREL2.orig/sqstdlib/Makefile.am SQUIRREL2/sqstdlib/Makefile.am --- SQUIRREL2.orig/sqstdlib/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/sqstdlib/Makefile.am 2007-07-07 19:24:48.000000000 +0200 -@@ -0,0 +1,18 @@ +@@ -0,0 +1,20 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti + +lib_LTLIBRARIES = libsqstdlib.la + ++libsqstdlib_la_LDFLAGS = -release $(VERSION) ++ +libsqstdlib_la_SOURCES = \ + sqstdaux.cpp \ + sqstdblob.cpp \ @@ -259,12 +261,14 @@ diff -Nru SQUIRREL2.orig/squirrel/Makefi diff -Nru SQUIRREL2.orig/squirrel/Makefile.am SQUIRREL2/squirrel/Makefile.am --- SQUIRREL2.orig/squirrel/Makefile.am 1970-01-01 01:00:00.000000000 +0100 +++ SQUIRREL2/squirrel/Makefile.am 2007-07-07 19:03:05.000000000 +0200 -@@ -0,0 +1,36 @@ +@@ -0,0 +1,38 @@ +MAINTAINERCLEANFILES = Makefile.in +AM_CXXFLAGS = -fno-rtti -Wall + +lib_LTLIBRARIES = libsquirrel.la + ++libsquirrel_la_LDFLAGS = -release $(VERSION) ++ +libsquirrel_la_SOURCES = \ + sqapi.cpp \ + sqarray.h \ Index: squirrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/EL-5/squirrel.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- squirrel.spec 14 Oct 2008 12:23:39 -0000 1.2 +++ squirrel.spec 1 Jul 2009 13:16:42 -0000 1.3 @@ -1,16 +1,12 @@ Name: squirrel -Version: 2.2.2 +Version: 2.2.3 Release: 1%{?dist} Summary: High level imperative/OO programming language Group: Development/Tools License: zlib URL: http://squirrel-lang.org/ -#Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz -# upstream source archive contains 0000 as permisions for both files and dirs -# fixed with "find . -type d -exec chmod 0755 {} \;" -# and "find . -type f -exec chmod 0644 {} \;" -Source0: %{name}_%{version}_stable_fixed.tar.gz +Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_stable.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: squirrel-autotools.patch @@ -38,7 +34,9 @@ Development files needed to use Squirrel %prep -%setup -q -n SQUIRREL2 +%setup -q -c + +pushd SQUIRREL2 %patch0 -p1 # fix extension for autotools @@ -52,16 +50,21 @@ do done sh autogen.sh +popd %build +pushd SQUIRREL2 %configure --disable-static make %{?_smp_mflags} +popd %install rm -rf $RPM_BUILD_ROOT +pushd SQUIRREL2 make DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p" install +popd rm $RPM_BUILD_ROOT%{_libdir}/*.la @@ -76,24 +79,30 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README HISTORY COPYRIGHT +%doc SQUIRREL2/{README,HISTORY,COPYRIGHT} %{_bindir}/sq %files libs %defattr(-,root,root,-) -%doc COPYRIGHT -%{_libdir}/libsqstdlib.so.* -%{_libdir}/libsquirrel.so.* +%doc SQUIRREL2/COPYRIGHT +%{_libdir}/libsqstdlib-%{version}.so +%{_libdir}/libsquirrel-%{version}.so %files devel %defattr(-,root,root,-) -%doc doc/*.pdf +%doc SQUIRREL2/doc/*.pdf %{_includedir}/squirrel %{_libdir}/libsqstdlib.so %{_libdir}/libsquirrel.so %changelog +* Wed Jul 1 2009 Dan Hor??k 2.2.3-1 +- update to upstream version 2.2.3 + +* Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Oct 13 2008 Dan Hor??k 2.2.2-1 - update to upstream version 2.2.2 From lonetwin at fedoraproject.org Wed Jul 1 13:24:29 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Wed, 1 Jul 2009 13:24:29 +0000 (UTC) Subject: rpms/ldd-pdf/devel import.log, NONE, 1.1 ldd-pdf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701132429.0D38911C02C3@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29814/devel Modified Files: .cvsignore sources Added Files: import.log ldd-pdf.spec Log Message: Initial commit to cvs --- NEW FILE import.log --- ldd-pdf-3_0-2:HEAD:ldd-pdf-3.0-2.src.rpm:1246454599 --- NEW FILE ldd-pdf.spec --- Name: ldd-pdf Version: 3.0 Release: 2 Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA URL: http://lwn.net/Kernel/LDD3/ Source0: http://lwn.net/images/pdf/LDD3/ldd3_pdf.tar.bz2 Source1: ftp://ftp.ora.com/pub/examples/linuxdrive3/examples.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The third edition of Linux Device Drivers, by Jonathan Corbet, Alessandro Rubini, and Greg Kroah-Hartman This is the PDF version of the chapters along with the example code used in the book %prep %setup -q -n ldd3_pdf %setup -q -D -T -a 1 -n ldd3_pdf %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/examples install -D -m 0644 *.pdf $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/ find examples -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find examples -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name * Sun Jun 25 2009 Steven Fernandez 3.0-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:41:00 -0000 1.1 +++ .cvsignore 1 Jul 2009 13:23:58 -0000 1.2 @@ -0,0 +1,2 @@ +examples.tar.gz +ldd3_pdf.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:41:01 -0000 1.1 +++ sources 1 Jul 2009 13:23:58 -0000 1.2 @@ -0,0 +1,2 @@ +330d478a64fea5f772645c3728a4e2df examples.tar.gz +5cfce7586b3eed87d57c715d5ba86e17 ldd3_pdf.tar.bz2 From rdieter at fedoraproject.org Wed Jul 1 13:25:19 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 13:25:19 +0000 (UTC) Subject: rpms/libxklavier/devel libxklavier.spec,1.49,1.50 Message-ID: <20090701132519.D1EA611C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libxklavier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30011 Modified Files: libxklavier.spec Log Message: cosmetic changes => cvs only, no builds * Wed Jul 01 2009 Rex Dieter - 4.0-2 - %files: track files closer, esp lib sonames - %build: drop --disable-doxygen, add --disable-static, add %{?_smp_mflags} Index: libxklavier.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxklavier/devel/libxklavier.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- libxklavier.spec 30 Jun 2009 17:11:36 -0000 1.49 +++ libxklavier.spec 1 Jul 2009 13:24:49 -0000 1.50 @@ -5,7 +5,6 @@ Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://gswitchit.sourceforge.net/ -BuildRequires: doxygen BuildRequires: libxml2-devel BuildRequires: libxkbfile-devel BuildRequires: libX11-devel @@ -39,8 +38,13 @@ needed to develop libxklavier applicatio %build -%configure --disable-doxygen --with-xkb-base='%{_datadir}/X11/xkb' --with-xkb-bin-base='%{_bindir}' -make +%configure \ + --disable-static \ + --with-xkb-base='%{_datadir}/X11/xkb' \ + --with-xkb-bin-base='%{_bindir}' + +make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT @@ -60,17 +64,21 @@ rm -rf %{buildroot} %defattr(-, root, root) %doc AUTHORS NEWS README COPYING.LIB -%{_libdir}/lib*.so.* +%{_libdir}/libxklavier.so.15* %files devel %defattr(-, root, root) -%{_libdir}/pkgconfig/*.pc -%{_libdir}/*.so -%{_includedir}/* +%{_libdir}/pkgconfig/libxklavier.pc +%{_libdir}/libxklavier.so +%{_includedir}/libxklavier/ %{_datadir}/gtk-doc/html/libxklavier/ %changelog +* Wed Jul 01 2009 Rex Dieter - 4.0-2 +- %%files: track files closer, esp lib sonames +- %%build: drop --disable-doxygen, add --disable-static, add %%{?_smp_mflags} + * Tue Jun 30 2009 Matthias Clasen - 4.0-1 - Update to 4.0 From pkgdb at fedoraproject.org Wed Jul 1 13:29:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:21 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132921.2BD2C10F88C@bastion2.fedora.phx.redhat.com> jnovy has set the watchbugzilla acl on mc (Fedora 11) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 13:29:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:30 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132930.32E4D10F89C@bastion2.fedora.phx.redhat.com> jnovy has set the watchcommits acl on mc (Fedora 11) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 13:29:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:34 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132934.55B2210F88C@bastion2.fedora.phx.redhat.com> jnovy has set the watchbugzilla acl on mc (Fedora 10) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 13:29:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:36 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132936.ED6FD10F8A8@bastion2.fedora.phx.redhat.com> jnovy has set the watchcommits acl on mc (Fedora 10) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 13:29:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:47 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132947.3587510F893@bastion2.fedora.phx.redhat.com> jnovy has set the watchbugzilla acl on mc (Fedora devel) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From pkgdb at fedoraproject.org Wed Jul 1 13:29:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 13:29:50 +0000 Subject: [pkgdb] mc had acl change status Message-ID: <20090701132950.356C910F899@bastion2.fedora.phx.redhat.com> jnovy has set the watchcommits acl on mc (Fedora devel) to Approved for hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mc From svahl at fedoraproject.org Wed Jul 1 13:33:46 2009 From: svahl at fedoraproject.org (Sebastian Vahl) Date: Wed, 1 Jul 2009 13:33:46 +0000 (UTC) Subject: rpms/grsync/F-10 .cvsignore, 1.6, 1.7 grsync.spec, 1.7, 1.8 sources, 1.6, 1.7 Message-ID: <20090701133346.C174711C02C3@cvs1.fedora.phx.redhat.com> Author: svahl Update of /cvs/extras/rpms/grsync/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv601 Modified Files: .cvsignore grsync.spec sources Log Message: revert change, needed gtk2 version not available in f10, doh Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 1 Jul 2009 12:24:39 -0000 1.6 +++ .cvsignore 1 Jul 2009 13:33:16 -0000 1.7 @@ -1 +1 @@ -grsync-0.9.0.tar.gz +grsync-0.6.3.tar.gz Index: grsync.spec =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/grsync.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- grsync.spec 1 Jul 2009 12:24:39 -0000 1.7 +++ grsync.spec 1 Jul 2009 13:33:16 -0000 1.8 @@ -1,6 +1,6 @@ Name: grsync -Version: 0.9.0 -Release: 1%{?dist} +Version: 0.6.3 +Release: 2%{?dist} Summary: A Gtk+ GUI for rsync Group: User Interface/Desktops @@ -25,7 +25,7 @@ to backup personal files to a networked %setup -q # some minor corrections for rpmlint -%{__sed} -i 's/\r//' README AUTHORS NEWS +%{__sed} -i 's/\r//' README %build %configure @@ -53,13 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/grsync*.1.gz %{_datadir}/pixmaps/grsync.png %{_datadir}/applications/grsync.desktop -%{_datadir}/grsync/ %changelog -* Sun Jun 14 2009 Sebastian Vahl - 0.9.0-1 -- new upstream release - * Fri Apr 10 2009 Sebastian Vahl - 0.6.3-2 - BR: intltool Index: sources =================================================================== RCS file: /cvs/extras/rpms/grsync/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 12:24:39 -0000 1.6 +++ sources 1 Jul 2009 13:33:16 -0000 1.7 @@ -1 +1 @@ -fc1d54d76f67df654dffb8ef40b93252 grsync-0.9.0.tar.gz +6c368560e349ddc7ff00124338074a48 grsync-0.6.3.tar.gz From lonetwin at fedoraproject.org Wed Jul 1 13:34:01 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Wed, 1 Jul 2009 13:34:01 +0000 (UTC) Subject: rpms/ldd-pdf/F-10 import.log, NONE, 1.1 ldd-pdf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701133401.CBA8511C02C3@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv668/F-10 Modified Files: .cvsignore sources Added Files: import.log ldd-pdf.spec Log Message: Initial commit to cvs --- NEW FILE import.log --- ldd-pdf-3_0-2:F-10:ldd-pdf-3.0-2.src.rpm:1246455185 --- NEW FILE ldd-pdf.spec --- Name: ldd-pdf Version: 3.0 Release: 2 Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA URL: http://lwn.net/Kernel/LDD3/ Source0: http://lwn.net/images/pdf/LDD3/ldd3_pdf.tar.bz2 Source1: ftp://ftp.ora.com/pub/examples/linuxdrive3/examples.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The third edition of Linux Device Drivers, by Jonathan Corbet, Alessandro Rubini, and Greg Kroah-Hartman This is the PDF version of the chapters along with the example code used in the book %prep %setup -q -n ldd3_pdf %setup -q -D -T -a 1 -n ldd3_pdf %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/examples install -D -m 0644 *.pdf $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/ find examples -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find examples -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name * Sun Jun 25 2009 Steven Fernandez 3.0-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:41:00 -0000 1.1 +++ .cvsignore 1 Jul 2009 13:33:31 -0000 1.2 @@ -0,0 +1,2 @@ +examples.tar.gz +ldd3_pdf.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:41:01 -0000 1.1 +++ sources 1 Jul 2009 13:33:31 -0000 1.2 @@ -0,0 +1,2 @@ +330d478a64fea5f772645c3728a4e2df examples.tar.gz +5cfce7586b3eed87d57c715d5ba86e17 ldd3_pdf.tar.bz2 From lonetwin at fedoraproject.org Wed Jul 1 13:35:44 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Wed, 1 Jul 2009 13:35:44 +0000 (UTC) Subject: rpms/ldd-pdf/F-11 import.log, NONE, 1.1 ldd-pdf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701133544.60E8B11C02C3@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1233/F-11 Modified Files: .cvsignore sources Added Files: import.log ldd-pdf.spec Log Message: Initial import into cvs --- NEW FILE import.log --- ldd-pdf-3_0-2:F-11:ldd-pdf-3.0-2.src.rpm:1246455301 --- NEW FILE ldd-pdf.spec --- Name: ldd-pdf Version: 3.0 Release: 2 Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA URL: http://lwn.net/Kernel/LDD3/ Source0: http://lwn.net/images/pdf/LDD3/ldd3_pdf.tar.bz2 Source1: ftp://ftp.ora.com/pub/examples/linuxdrive3/examples.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The third edition of Linux Device Drivers, by Jonathan Corbet, Alessandro Rubini, and Greg Kroah-Hartman This is the PDF version of the chapters along with the example code used in the book %prep %setup -q -n ldd3_pdf %setup -q -D -T -a 1 -n ldd3_pdf %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/examples install -D -m 0644 *.pdf $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/ find examples -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find examples -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name * Sun Jun 25 2009 Steven Fernandez 3.0-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:41:00 -0000 1.1 +++ .cvsignore 1 Jul 2009 13:35:44 -0000 1.2 @@ -0,0 +1,2 @@ +examples.tar.gz +ldd3_pdf.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:41:01 -0000 1.1 +++ sources 1 Jul 2009 13:35:44 -0000 1.2 @@ -0,0 +1,2 @@ +330d478a64fea5f772645c3728a4e2df examples.tar.gz +5cfce7586b3eed87d57c715d5ba86e17 ldd3_pdf.tar.bz2 From mclasen at fedoraproject.org Wed Jul 1 13:45:04 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 13:45:04 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel xklavier4.patch, NONE, 1.1 gnome-settings-daemon.spec, 1.107, 1.108 Message-ID: <20090701134504.1237811C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3438 Modified Files: gnome-settings-daemon.spec Added Files: xklavier4.patch Log Message: fix for xklavier api changes xklavier4.patch: --- NEW FILE xklavier4.patch --- diff -up gnome-settings-daemon-2.27.3/plugins/keyboard/gsd-keyboard-xkb.c.xklavier4 gnome-settings-daemon-2.27.3/plugins/keyboard/gsd-keyboard-xkb.c --- gnome-settings-daemon-2.27.3/plugins/keyboard/gsd-keyboard-xkb.c.xklavier4 2009-07-01 09:19:26.936571862 -0400 +++ gnome-settings-daemon-2.27.3/plugins/keyboard/gsd-keyboard-xkb.c 2009-07-01 09:32:19.620817134 -0400 @@ -168,7 +168,7 @@ filter_xkb_config (void) xkl_debug (100, "Filtering configuration against the registry\n"); if (!xkl_registry) { xkl_registry = xkl_config_registry_get_instance (xkl_engine); - if (!xkl_config_registry_load (xkl_registry)) { + if (!xkl_config_registry_load (xkl_registry, FALSE)) { g_object_unref (xkl_registry); xkl_registry = NULL; return FALSE; Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- gnome-settings-daemon.spec 30 Jun 2009 20:34:12 -0000 1.107 +++ gnome-settings-daemon.spec 1 Jul 2009 13:45:03 -0000 1.108 @@ -38,6 +38,8 @@ Patch11: gnome-settings-daemon-2.26.0-su # https://bugzilla.redhat.com/show_bug.cgi?id=483639 Patch12: gnome-settings-daemon-2.26.1-fix-touchpad.patch +Patch13: xklavier4.patch + %description A daemon to share settings from GNOME to other applications. It also handles global keybindings, as well as a number of desktop-wide settings. @@ -58,6 +60,7 @@ developing applications that use %{name} %patch11 -p1 -b .support-touchpads %patch12 -p1 -b .lefthand-touchpad +%patch13 -p1 -b .xklavier4 autoreconf -i -f From jsafrane at fedoraproject.org Wed Jul 1 13:53:01 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 1 Jul 2009 13:53:01 +0000 (UTC) Subject: rpms/net-snmp/devel net-snmp-5.1.2-dir-fix.patch, 1.2, 1.3 net-snmp.spec, 1.182, 1.183 Message-ID: <20090701135301.C5E3E11C02C3@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/net-snmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5407 Modified Files: net-snmp-5.1.2-dir-fix.patch net-snmp.spec Log Message: move local state file from /var/net-snmp/ to /var/lib/net-snmp net-snmp-5.1.2-dir-fix.patch: Index: net-snmp-5.1.2-dir-fix.patch =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp-5.1.2-dir-fix.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- net-snmp-5.1.2-dir-fix.patch 25 Jul 2008 11:03:32 -0000 1.2 +++ net-snmp-5.1.2-dir-fix.patch 1 Jul 2009 13:53:01 -0000 1.3 @@ -1,3 +1,5 @@ +Assume that the configuration is in /etc/snmp, instead of /usr/share/snmp + diff -up net-snmp-5.4.1/net-snmp-config.in.backup_patch_6 net-snmp-5.4.1/net-snmp-config.in --- net-snmp-5.4.1/net-snmp-config.in.backup_patch_6 2007-06-30 00:18:27.000000000 +0200 +++ net-snmp-5.4.1/net-snmp-config.in 2008-07-25 12:53:19.000000000 +0200 Index: net-snmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.spec,v retrieving revision 1.182 retrieving revision 1.183 diff -u -p -r1.182 -r1.183 --- net-snmp.spec 1 Jul 2009 12:59:46 -0000 1.182 +++ net-snmp.spec 1 Jul 2009 13:53:01 -0000 1.183 @@ -203,7 +203,7 @@ MIBS="$MIBS ucd-snmp/lmsensorsMib" %endif --with-sys-location="Unknown" \ --with-logfile="/var/log/snmpd.log" \ - --with-persistent-directory="/var/net-snmp" \ + --with-persistent-directory="/var/lib/net-snmp" \ --with-mib-modules="$MIBS" \ %if %{tcp_wrappers} --with-libwrap=%{_libdir} \ @@ -278,6 +278,8 @@ install -m 644 %{SOURCE4} ${RPM_BUILD_RO install -d ${RPM_BUILD_ROOT}%{_bindir} install -m 755 %SOURCE5 ${RPM_BUILD_ROOT}%{_bindir}/ucd5820stat +install -d ${RPM_BUILD_ROOT}%{_localstatedir}/lib/net-snmp + rm -f ${RPM_BUILD_ROOT}%{_bindir}/snmpinform rm -f ${RPM_BUILD_ROOT}%{_bindir}/snmpcheck rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/snmpconf.1* @@ -328,6 +330,9 @@ dd bs=1024 count=250 if=ChangeLog of=Cha /sbin/chkconfig --add snmpd /sbin/chkconfig --add snmptrapd +# move local state files from /var/net-snmp to new location when updating the package +mv %{_localstatedir}/net-snmp/* %{_localstatedir}/lib/net-snmp/ &>/dev/null + %preun if [ $1 = 0 ]; then service snmpd stop >/dev/null 2>&1 @@ -373,6 +378,7 @@ rm -rf ${RPM_BUILD_ROOT} %attr(0644,root,root) %{_mandir}/man5/variables* %dir %{_datadir}/snmp %{_datadir}/snmp/snmpconf-data +%dir %{_localstatedir}/lib/net-snmp %files utils %defattr(-,root,root,-) @@ -425,6 +431,7 @@ rm -rf ${RPM_BUILD_ROOT} %changelog * Wed Jul 1 2009 Jan Safranek 5.4.2.1-13 - package cleanup, remove unnecessary patches +- move local state file from /var/net-snmp/ to /var/lib/net-snmp * Wed Jul 1 2009 Jan Safranek 5.4.2.1-12 - make the default configuration less noisy, i.e. do not print "Connection from From mclasen at fedoraproject.org Wed Jul 1 13:55:52 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 13:55:52 +0000 (UTC) Subject: rpms/gdm/devel xklavier4.patch,NONE,1.1 gdm.spec,1.472,1.473 Message-ID: <20090701135552.ECEDD11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5125 Modified Files: gdm.spec Added Files: xklavier4.patch Log Message: fix for xklavier api changes xklavier4.patch: --- NEW FILE xklavier4.patch --- diff -up gdm-2.26.1/gui/simple-greeter/gdm-layouts.c.xklavier4 gdm-2.26.1/gui/simple-greeter/gdm-layouts.c --- gdm-2.26.1/gui/simple-greeter/gdm-layouts.c.xklavier4 2009-07-01 09:47:32.546576916 -0400 +++ gdm-2.26.1/gui/simple-greeter/gdm-layouts.c 2009-07-01 09:47:50.848564055 -0400 @@ -52,7 +52,7 @@ init_xkl (void) engine = xkl_engine_get_instance (GDK_DISPLAY ()); xkl_engine_backup_names_prop (engine); config_registry = xkl_config_registry_get_instance (engine); - xkl_config_registry_load (config_registry); + xkl_config_registry_load (config_registry, FALSE); initial_config = xkl_config_rec_new (); if (!xkl_config_rec_get_from_backup (initial_config, engine)) { Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.472 retrieving revision 1.473 diff -u -p -r1.472 -r1.473 --- gdm.spec 30 Jun 2009 20:38:13 -0000 1.472 +++ gdm.spec 1 Jul 2009 13:55:22 -0000 1.473 @@ -82,7 +82,7 @@ BuildRequires: libselinux-devel BuildRequires: check-devel BuildRequires: iso-codes-devel BuildRequires: gnome-panel-devel -BuildRequires: libxklavier-devel +BuildRequires: libxklavier-devel >= 4.0 Provides: service(graphical-login) @@ -102,6 +102,8 @@ Patch20: polkit1.patch # fixed upstream, rh 502778 Patch22: gdm-2.26.0-fix-lang-regex.patch +Patch35: xklavier4.patch + # Fedora-specific Patch99: gdm-2.23.1-fedora-logo.patch @@ -147,6 +149,7 @@ The GDM fingerprint plugin provides func %patch19 -p1 -b .multistack %patch20 -p1 -b .polkit1 %patch22 -p1 -b .fix-lang-regex +%patch35 -p1 -b .xklavier4 %patch99 -p1 -b .fedora-logo From spot at fedoraproject.org Wed Jul 1 13:59:28 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 13:59:28 +0000 (UTC) Subject: rpms/perl-Hash-Merge/devel import.log, NONE, 1.1 perl-Hash-Merge.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701135928.57B2811C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7517/devel Modified Files: .cvsignore sources Added Files: import.log perl-Hash-Merge.spec Log Message: Initial import --- NEW FILE import.log --- perl-Hash-Merge-0_11-2_fc12:HEAD:perl-Hash-Merge-0.11-2.fc12.src.rpm:1246456380 --- NEW FILE perl-Hash-Merge.spec --- Name: perl-Hash-Merge Version: 0.11 Release: 2%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Hash-Merge/ Source0: http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::More), perl(Clone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description %{summary}. %prep %setup -q -n Hash-Merge-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -x %{buildroot}%{perl_vendorlib}/Hash/Merge.pm %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/Hash/ %{_mandir}/man3/*.3* %changelog * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-1 - initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 13:09:22 -0000 1.1 +++ .cvsignore 1 Jul 2009 13:59:28 -0000 1.2 @@ -0,0 +1 @@ +Hash-Merge-0.11.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 13:09:22 -0000 1.1 +++ sources 1 Jul 2009 13:59:28 -0000 1.2 @@ -0,0 +1 @@ +280b520399a382ac70dfb64442402f85 Hash-Merge-0.11.tar.gz From lucilanga at fedoraproject.org Wed Jul 1 14:02:44 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 14:02:44 +0000 (UTC) Subject: rpms/libftdi/F-10 .cvsignore, 1.3, 1.4 libftdi.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090701140244.B5FEE11C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8308 Modified Files: .cvsignore libftdi.spec sources Log Message: * Wed Jul 01 2009 Lucian Langa - 0.16-2 - added udev rules - addedd c++, python bindings Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Feb 2009 09:01:11 -0000 1.3 +++ .cvsignore 1 Jul 2009 14:02:14 -0000 1.4 @@ -1 +1 @@ -libftdi-0.15.tar.gz +libftdi-0.16.tar.gz Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-10/libftdi.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libftdi.spec 9 May 2009 20:12:59 -0000 1.4 +++ libftdi.spec 1 Jul 2009 14:02:14 -0000 1.5 @@ -1,16 +1,19 @@ +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries License: LGPLv2 URL: http://www.intra2net.com/de/produkte/opensource/ftdi/ Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz +Source1: no_date_footer.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libusb-devel, doxygen, boost-devel -Requires: pkgconfig +BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig +Requires: pkgconfig, udev + %package devel Summary: Header files and static libraries for libftdi @@ -18,6 +21,21 @@ Group: Development/Libraries Requires: libftdi = %{version}-%{release} Requires: libusb-devel +%package python +Summary: Libftdi library Python binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++ +Summary: Libftdi library C++ binding +Group: Development/Libraries +Requires: libftdi = %{version}-%{release} + +%package c++-devel +Summary: Libftdi library C++ binding development headers and libraries +Group: Development/Libraries +Requires: libftdi-devel = %{version}-%{release}, libftdi-c++ = %{version}-%{release} + %description A library (using libusb) to talk to FTDI's FT2232C, FT232BM and FT245BM type chips including the popular bitbang mode. @@ -25,13 +43,24 @@ FT232BM and FT245BM type chips including %description devel Header files and static libraries for libftdi +%description python +Libftdi Python Language bindings. + +%description c++ +Libftdi library C++ language binding. + +%description c++-devel +Libftdi library C++ binding development headers and libraries +for building C++ applications with libftdi. %prep %setup -q +sed -i -e 's/HTML_FOOTER =/HTML_FOOTER = no_date_footer.html/g' doc/Doxyfile.in %build -%configure +%configure --enable-python-binding --enable-libftdipp +cp %{SOURCE1} %{_builddir}/%{name}-%{version}/doc make %{?_smp_mflags} @@ -42,6 +71,8 @@ find %{buildroot} -name \*\.la -print | mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3 #no man install install -p -m 644 doc/man/man3/*.3 $RPM_BUILD_ROOT%{_mandir}/man3 +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d +install -p -m 644 packages/99-libftdi.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d # Cleanup examples @@ -59,7 +90,8 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING.LIB README -%{_libdir}/*.so.* +%{_libdir}/libftdi.so.* +%config(noreplace) %{_sysconfdir}/udev/rules.d/99-libftdi.rules %files devel @@ -67,18 +99,40 @@ rm -rf $RPM_BUILD_ROOT %doc doc/html %{_bindir}/libftdi-config %{_libdir}/libftdi.a -%{_libdir}/libftdipp.a -%{_libdir}/*.so +%{_libdir}/libftdi.so %{_includedir}/*.h -%{_includedir}/*.hpp -%{_libdir}/pkgconfig/*.pc +%{_libdir}/pkgconfig/libftdi.pc %{_mandir}/man3/* +%files python +%defattr(-, root, root, -) +%{python_sitearch}/* + +%files c++ +%defattr(-, root, root, -) +%doc AUTHORS ChangeLog COPYING.LIB README +%{_libdir}/libftdipp.so.* + +%files c++-devel +%defattr(-, root, root, -) +%doc doc/html +%{_libdir}/libftdipp.a +%{_libdir}/libftdipp.so +%{_includedir}/*.hpp +%{_libdir}/pkgconfig/libftdipp.pc + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig +%post c++ -p /sbin/ldconfig +%postun c++ -p /sbin/ldconfig + %changelog +* Wed Jul 01 2009 Lucian Langa - 0.16-2 +- added udev rules +- addedd c++, python bindings + * Sat May 09 2009 Lucian Langa - 0.16-1 - new upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Feb 2009 09:01:11 -0000 1.3 +++ sources 1 Jul 2009 14:02:14 -0000 1.4 @@ -1 +1 @@ -d585c9758cb7085a4448c7c4ece07d8e libftdi-0.15.tar.gz +524af6f39aefa1a4e8fac12c6be0ed06 libftdi-0.16.tar.gz From lucilanga at fedoraproject.org Wed Jul 1 14:09:27 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 1 Jul 2009 14:09:27 +0000 (UTC) Subject: rpms/libftdi/F-10 no_date_footer.html,NONE,1.1 Message-ID: <20090701140927.2FC1311C02C3@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9725 Added Files: no_date_footer.html Log Message: * Wed Jul 01 2009 Lucian Langa - 0.16-2 - added udev rules - addedd c++, python bindings --- NEW FILE no_date_footer.html ---
Generated for $projectname by doxygen $doxygenversion
From spot at fedoraproject.org Wed Jul 1 14:13:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 14:13:20 +0000 (UTC) Subject: rpms/perl-Hash-Merge/EL-4 perl-Hash-Merge.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090701141320.1A07911C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10578/EL-4 Modified Files: sources Added Files: perl-Hash-Merge.spec Log Message: initial branching --- NEW FILE perl-Hash-Merge.spec --- Name: perl-Hash-Merge Version: 0.11 Release: 2%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Hash-Merge/ Source0: http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::More), perl(Clone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description %{summary}. %prep %setup -q -n Hash-Merge-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -x %{buildroot}%{perl_vendorlib}/Hash/Merge.pm %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/Hash/ %{_mandir}/man3/*.3* %changelog * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-1 - initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 13:09:22 -0000 1.1 +++ sources 1 Jul 2009 14:12:49 -0000 1.2 @@ -0,0 +1 @@ +280b520399a382ac70dfb64442402f85 Hash-Merge-0.11.tar.gz From spot at fedoraproject.org Wed Jul 1 14:13:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 14:13:20 +0000 (UTC) Subject: rpms/perl-Hash-Merge/EL-5 perl-Hash-Merge.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090701141320.3A6DF11C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10578/EL-5 Modified Files: sources Added Files: perl-Hash-Merge.spec Log Message: initial branching --- NEW FILE perl-Hash-Merge.spec --- Name: perl-Hash-Merge Version: 0.11 Release: 2%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Hash-Merge/ Source0: http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::More), perl(Clone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description %{summary}. %prep %setup -q -n Hash-Merge-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -x %{buildroot}%{perl_vendorlib}/Hash/Merge.pm %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/Hash/ %{_mandir}/man3/*.3* %changelog * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-1 - initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 13:09:22 -0000 1.1 +++ sources 1 Jul 2009 14:12:50 -0000 1.2 @@ -0,0 +1 @@ +280b520399a382ac70dfb64442402f85 Hash-Merge-0.11.tar.gz From spot at fedoraproject.org Wed Jul 1 14:13:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 14:13:20 +0000 (UTC) Subject: rpms/perl-Hash-Merge/F-11 perl-Hash-Merge.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090701141320.92D1311C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10578/F-11 Modified Files: sources Added Files: perl-Hash-Merge.spec Log Message: initial branching --- NEW FILE perl-Hash-Merge.spec --- Name: perl-Hash-Merge Version: 0.11 Release: 2%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Hash-Merge/ Source0: http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::More), perl(Clone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description %{summary}. %prep %setup -q -n Hash-Merge-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -x %{buildroot}%{perl_vendorlib}/Hash/Merge.pm %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/Hash/ %{_mandir}/man3/*.3* %changelog * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-1 - initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 13:09:22 -0000 1.1 +++ sources 1 Jul 2009 14:12:50 -0000 1.2 @@ -0,0 +1 @@ +280b520399a382ac70dfb64442402f85 Hash-Merge-0.11.tar.gz From spot at fedoraproject.org Wed Jul 1 14:13:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 14:13:20 +0000 (UTC) Subject: rpms/perl-Hash-Merge/F-10 perl-Hash-Merge.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090701141320.6C5F611C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/perl-Hash-Merge/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10578/F-10 Modified Files: sources Added Files: perl-Hash-Merge.spec Log Message: initial branching --- NEW FILE perl-Hash-Merge.spec --- Name: perl-Hash-Merge Version: 0.11 Release: 2%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Hash-Merge/ Source0: http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Test::More), perl(Clone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description %{summary}. %prep %setup -q -n Hash-Merge-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -x %{buildroot}%{perl_vendorlib}/Hash/Merge.pm %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/Hash/ %{_mandir}/man3/*.3* %changelog * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-1 - initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 13:09:22 -0000 1.1 +++ sources 1 Jul 2009 14:12:50 -0000 1.2 @@ -0,0 +1 @@ +280b520399a382ac70dfb64442402f85 Hash-Merge-0.11.tar.gz From mmcgrath at fedoraproject.org Wed Jul 1 14:17:01 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 1 Jul 2009 14:17:01 +0000 (UTC) Subject: rpms/ytalk/devel ytalk.spec,1.55,1.56 Message-ID: <20090701141701.D250E11C02C3@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/ytalk/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/mmcgrath/ytalk/devel Modified Files: ytalk.spec Log Message: test commit Index: ytalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ytalk/devel/ytalk.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- ytalk.spec 1 Jul 2009 02:19:30 -0000 1.55 +++ ytalk.spec 1 Jul 2009 14:17:01 -0000 1.56 @@ -1,7 +1,6 @@ Summary: A chat program for multiple users Name: ytalk Version: 3.3.0 - Release: 15%{?dist} License: GPLv2+ Group: Applications/Internet From mclasen at fedoraproject.org Wed Jul 1 14:18:13 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 14:18:13 +0000 (UTC) Subject: rpms/gnome-screensaver/devel gnome-screensaver.spec,1.214,1.215 Message-ID: <20090701141813.9B0B411C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-screensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11632 Modified Files: gnome-screensaver.spec Log Message: Rebuild Index: gnome-screensaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-screensaver/devel/gnome-screensaver.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- gnome-screensaver.spec 26 Jun 2009 16:16:20 -0000 1.214 +++ gnome-screensaver.spec 1 Jul 2009 14:17:43 -0000 1.215 @@ -14,7 +14,7 @@ Summary: GNOME Screensaver Name: gnome-screensaver Version: 2.27.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Graphics Source0: http://download.gnome.org/sources/gnome-screensaver/2.27/%{name}-%{version}.tar.bz2 @@ -149,6 +149,9 @@ fi %doc %{_mandir}/man1/*.1.gz %changelog +* Wed Jul 1 2009 Matthias Clasen 2.27.0-2 +- Rebuild against new libxklavier + * Fri Jun 26 2009 Bastien Nocera 2.27.0-1 - Update to 2.27.0 - Disable the text entry when using a fingerprint for auth From mclasen at fedoraproject.org Wed Jul 1 14:35:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 14:35:22 +0000 (UTC) Subject: rpms/file-roller/F-11 .cvsignore, 1.87, 1.88 file-roller.spec, 1.149, 1.150 sources, 1.87, 1.88 Message-ID: <20090701143522.B5CBA11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/file-roller/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16182 Modified Files: .cvsignore file-roller.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/F-11/.cvsignore,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- .cvsignore 1 Jun 2009 17:17:23 -0000 1.87 +++ .cvsignore 1 Jul 2009 14:34:52 -0000 1.88 @@ -1 +1 @@ -file-roller-2.26.2.tar.bz2 +file-roller-2.26.3.tar.bz2 Index: file-roller.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/F-11/file-roller.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- file-roller.spec 1 Jun 2009 17:40:05 -0000 1.149 +++ file-roller.spec 1 Jul 2009 14:34:52 -0000 1.150 @@ -10,7 +10,7 @@ Summary: Tool for viewing and creating archives Name: file-roller -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} License: GPLv2+ Group: Applications/Archiving @@ -127,6 +127,10 @@ fi %{_datadir}/icons/hicolor/scalable/apps/file-roller.svg %changelog +* Wed Jul 1 2009 Matthias Clasen 2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/file-roller/2.26/file-roller-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen 2.26.2-1 - Update to 2.26.2 - See http://download.gnome.org/sources/file-roller/2.26/file-roller-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/F-11/sources,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- sources 1 Jun 2009 17:17:23 -0000 1.87 +++ sources 1 Jul 2009 14:34:52 -0000 1.88 @@ -1 +1 @@ -9d4575665dcbf063a062aa5a776eca68 file-roller-2.26.2.tar.bz2 +1876e9807a12c37f9bb2d00807905755 file-roller-2.26.3.tar.bz2 From jsafrane at fedoraproject.org Wed Jul 1 14:42:16 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 1 Jul 2009 14:42:16 +0000 (UTC) Subject: rpms/net-snmp/devel net-snmp.spec,1.183,1.184 Message-ID: <20090701144216.82D8611C02C3@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/net-snmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17885 Modified Files: net-snmp.spec Log Message: reindex the patches Index: net-snmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.spec,v retrieving revision 1.183 retrieving revision 1.184 diff -u -p -r1.183 -r1.184 --- net-snmp.spec 1 Jul 2009 13:53:01 -0000 1.183 +++ net-snmp.spec 1 Jul 2009 14:41:45 -0000 1.184 @@ -24,17 +24,17 @@ Source6: net-snmp-config.h Source7: net-snmp-config Source8: net-snmp-trapd.redhat.conf Source9: net-snmpd.sysconfig -Patch4: net-snmp-5.4.1-pie.patch -Patch5: net-snmp-5.1.2-dir-fix.patch -Patch6: net-snmp-5.2.1-file_offset.patch -Patch7: net-snmp-5.3.1-multilib.patch -Patch8: net-snmp-5.4.1-config_libdir.patch -Patch9: net-snmp-5.4.1-strange_libpath.patch -Patch10: net-snmp-5.4.1-shared-ip.patch -Patch11: net-snmp-5.4.1-sensors3.patch -Patch12: net-snmp-5.4.1-xen-crash.patch -Patch13: net-snmp-5.4.1-libwrap.patch -Patch14: net-snmp-5.4.2.1-proc-div0.patch +Patch1: net-snmp-5.4.1-pie.patch +Patch2: net-snmp-5.1.2-dir-fix.patch +Patch3: net-snmp-5.2.1-file_offset.patch +Patch4: net-snmp-5.3.1-multilib.patch +Patch5: net-snmp-5.4.1-config_libdir.patch +Patch6: net-snmp-5.4.1-strange_libpath.patch +Patch7: net-snmp-5.4.1-shared-ip.patch +Patch8: net-snmp-5.4.1-sensors3.patch +Patch9: net-snmp-5.4.1-xen-crash.patch +Patch10: net-snmp-5.4.1-libwrap.patch +Patch11: net-snmp-5.4.2.1-proc-div0.patch Requires(pre): chkconfig Requires(post): chkconfig @@ -162,19 +162,19 @@ Net-SNMP toolkit library. # %patch1 -p1 -b .mnttab %ifnarch ia64 -%patch4 -p1 -b .pie +%patch1 -p1 -b .pie %endif -%patch5 -p1 -b .dir-fix -%patch6 -p1 -b .file_offset -%patch7 -p1 -b .multilib -%patch8 -p1 -b .libdir -%patch9 -p1 -b .libpath -#%patch10 -p1 -b .shared-ip -%patch11 -p1 -b .sensors -%patch12 -p1 -b .xen-crash -%patch13 -p1 -b .libwrap -%patch14 -p1 -b .proc-div0 +%patch2 -p1 -b .dir-fix +%patch3 -p1 -b .file_offset +%patch4 -p1 -b .multilib +%patch5 -p1 -b .libdir +%patch6 -p1 -b .libpath +%patch7 -p1 -b .shared-ip +%patch8 -p1 -b .sensors +%patch9 -p1 -b .xen-crash +%patch10 -p1 -b .libwrap +%patch11 -p1 -b .proc-div0 # Do this patch with a perl hack... perl -pi -e "s|'\\\$install_libdir'|'%{_libdir}'|" ltmain.sh From rdieter at fedoraproject.org Wed Jul 1 14:43:12 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 14:43:12 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace-4.2.95-libxklavier_40.patch, NONE, 1.1 kdebase-workspace.spec, 1.243, 1.244 Message-ID: <20090701144312.BD44811C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18064 Modified Files: kdebase-workspace.spec Added Files: kdebase-workspace-4.2.95-libxklavier_40.patch Log Message: libxklavier-4.0 api change kdebase-workspace-4.2.95-libxklavier_40.patch: --- NEW FILE kdebase-workspace-4.2.95-libxklavier_40.patch --- diff -up kdebase-workspace-4.2.95/kcontrol/kxkb/xklavier_adaptor.cpp.libxklavier_40 kdebase-workspace-4.2.95/kcontrol/kxkb/xklavier_adaptor.cpp --- kdebase-workspace-4.2.95/kcontrol/kxkb/xklavier_adaptor.cpp.libxklavier_40 2008-05-15 13:37:15.000000000 -0500 +++ kdebase-workspace-4.2.95/kcontrol/kxkb/xklavier_adaptor.cpp 2009-07-01 09:25:25.478896239 -0500 @@ -222,7 +222,7 @@ void XKlavierAdaptor::loadXkbConfig(bool kDebug() << "Xklavier initialized"; priv->config = xkl_config_registry_get_instance(priv->engine); - xkl_config_registry_load(priv->config); + xkl_config_registry_load(priv->config,FALSE); void *userData = priv; Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.243 retrieving revision 1.244 diff -u -p -r1.243 -r1.244 --- kdebase-workspace.spec 1 Jul 2009 13:02:01 -0000 1.243 +++ kdebase-workspace.spec 1 Jul 2009 14:42:42 -0000 1.244 @@ -27,6 +27,8 @@ Patch12: kdebase-workspace-4.2.0-default Patch13: kdebase-workspace-4.2.0-pykde4.patch Patch14: kdebase-workspace-4.2.0-klipper-arora.patch Patch15: kdebase-workspace-4.2.0-kio_sysinfo.patch +# TODO: make upstreamable version +Patch16: kdebase-workspace-4.2.95-libxklavier_40.patch # upstream patches: # 4.3 branch @@ -224,6 +226,9 @@ Requires: PyKDE4 >= %{version} %patch13 -p1 -b .pykde4 # kio_sysinfo based on OpenSUSE's patch %patch15 -p1 -b .kio_sysinfo +%if 0%{?fedora} > 11 +%patch16 -p1 -b .libxklavier_40 +%endif # upstream patches %patch100 -p0 -b .fix-version From guidograzioli at fedoraproject.org Wed Jul 1 14:43:46 2009 From: guidograzioli at fedoraproject.org (Guido Grazioli) Date: Wed, 1 Jul 2009 14:43:46 +0000 (UTC) Subject: rpms/awesfx/F-11 41-soundfont.rules, NONE, 1.1 Makefile, 1.3, 1.4 awesfx.spec, 1.19, 1.20 import.log, NONE, 1.1 load-soundfont, NONE, 1.1 rename-getline-to-parseline.patch, NONE, 1.1 sources, 1.5, 1.6 udev-soundfont, NONE, 1.1 dead.package, 1.1, NONE Message-ID: <20090701144346.1397411C02C3@cvs1.fedora.phx.redhat.com> Author: guidograzioli Update of /cvs/pkgs/rpms/awesfx/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18561/F-11 Added Files: 41-soundfont.rules Makefile awesfx.spec import.log load-soundfont rename-getline-to-parseline.patch sources udev-soundfont Removed Files: dead.package Log Message: * Thu May 28 2009 Guido Grazioli 0.5.1c-2 - fixed %%install - fixed license - fixed files ownership * Thu Mar 12 2009 Guido Grazioli 0.5.1c-1 - initial packaging --- NEW FILE 41-soundfont.rules --- SUBSYSTEM=="sound", KERNEL=="hwC?D2", DRIVERS=="EMU10K1_Audigy", RUN+="/etc/alsa.d/udev-soundfont" Index: Makefile =================================================================== RCS file: Makefile diff -N Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile 1 Jul 2009 14:43:45 -0000 1.4 @@ -0,0 +1,21 @@ +# Makefile for source rpm: awesfx +# $Id$ +NAME := awesfx +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) Index: awesfx.spec =================================================================== RCS file: awesfx.spec diff -N awesfx.spec --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ awesfx.spec 1 Jul 2009 14:43:45 -0000 1.20 @@ -0,0 +1,67 @@ +Name: awesfx +Version: 0.5.1c +Release: 2%{?dist} +Summary: Utility programs for the AWE32/Emu10k1 sound driver +Group: Applications/Multimedia +URL: http://www.alsa-project.org/~iwai/awedrv.html +Source0: http://ftp.suse.com/pub/people/tiwai/awesfx/awesfx-%{version}.tar.bz2 +Source1: udev-soundfont +Source2: load-soundfont +Source3: 41-soundfont.rules +Patch0: rename-getline-to-parseline.patch +License: GPLv2+ +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: alsa-lib-devel >= 1.0.0 + +%description +The awesfx package contains various utility programs for controlling the +AWE32/Emu10k1 sound driver. AWESFX includes asxfload and sfxload, the +soundfont loaders; setfx, the chorus/reverb effect loader; aweset, a +controller for setting parameters; and programs for converting soundfonts +to text. + +If you use an AWE32 or Emu10k1 sound driver you should install the awesfx +package. + +%prep +%setup -q + +%patch0 -p1 + +%build +%configure CFLAGS="$RPM_OPT_FLAGS" +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} INSTALL="install -p" install +install -Dp -m 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/alsa.d/udev-soundfont +install -Dp -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/alsa.d/load-soundfont +install -Dp -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/udev/rules.d/41-soundfont.rules +mkdir -p %{buildroot}%{_datadir}/soundfonts +mv %{buildroot}%{_datadir}/sounds/sf2/*.bnk %{buildroot}%{_datadir}/soundfonts +rm -rf %{buildroot}%{_datadir}/sounds +rm -f samples/Makefile* + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING ChangeLog README SBKtoSF2.txt samples/README-bank samples/setfx-sample.cfg +%{_bindir}/* +%attr(0755, root, root) %{_sysconfdir}/alsa.d +%{_sysconfdir}/alsa.d/udev-soundfont +%{_sysconfdir}/alsa.d/load-soundfont +%config(noreplace) %{_sysconfdir}/udev/rules.d/41-soundfont.rules +%{_datadir}/soundfonts/ +%{_mandir}/man*/*.1.gz + +%changelog +* Thu May 28 2009 Guido Grazioli 0.5.1c-2 +- fixed %%install +- fixed license +- fixed files ownership +* Thu Mar 12 2009 Guido Grazioli 0.5.1c-1 +- initial packaging --- NEW FILE import.log --- awesfx-0_5_1c-2_fc9:F-11:awesfx-0.5.1c-2.fc9.src.rpm:1246459387 --- NEW FILE load-soundfont --- #!/bin/sh -e CARD=$1 shift test -x /usr/bin/asfxload || exit 0 . /etc/sysconfig/sound load_sf () { for d in /usr/share/soundfonts \ /usr/share/sounds/sf2 \ /usr/share/sfbank \ /usr/local/lib/sfbank \ /usr/share/sfbank/creative \ /usr/local/lib/sfbank/creative \ ; do if [ -r $d/$1 ]; then /usr/bin/asfxload -Dhw:${CARD},2 $d/$1 return 0 fi done return 1 } case $SOUNDFONT_FILES in /*) if [ -r "$SOUNDFONT_FILES" ]; then /usr/bin/asfxload -Dhw:${CARD},2 $SOUNDFONT_FILES exit 0 fi ;; esac for file in $SOUNDFONT_FILES $* ; do if load_sf $file ; then break fi done exit 0 rename-getline-to-parseline.patch: --- NEW FILE rename-getline-to-parseline.patch --- diff -uNr awesfx-0.5.1c/setfx.c awesfx-0.5.1c-p/setfx.c --- awesfx-0.5.1c/setfx.c 2007-08-29 18:00:23.000000000 +0200 +++ awesfx-0.5.1c-p/setfx.c 2009-03-13 02:36:01.000000000 +0100 @@ -37,7 +37,7 @@ /*----------------------------------------------------------------*/ static void usage(void); -static int getline(FILE *fp); +static int parseline(FILE *fp); static int nextline(FILE *fp); static char *gettok(FILE *fp); static char *divtok(char *src, char *divs, int only_one); @@ -126,7 +126,7 @@ } curline = 0; - if (!getline(fp)) + if (!parseline(fp)) return 0; seq_init(seq_devname, seq_devidx); @@ -370,7 +370,7 @@ * read a line and parse tokens *----------------------------------------------------------------*/ -static int getline(FILE *fp) +static int parseline(FILE *fp) { char *p; curline++; @@ -393,12 +393,12 @@ { if (connected) { do { - if (! getline(fp)) + if (! parseline(fp)) return FALSE; } while (connected); return TRUE; } else { - return getline(fp); + return parseline(fp); } } @@ -415,7 +415,7 @@ tok = divtok(NULL, " \t\r\n", FALSE); while (tok == NULL || *tok == 0) { if (! connected) return NULL; - if (! getline(fp)) return NULL; + if (! parseline(fp)) return NULL; tok = divtok(line, " \t\r\n", FALSE); } return tok; Index: sources =================================================================== RCS file: sources diff -N sources --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sources 1 Jul 2009 14:43:45 -0000 1.6 @@ -0,0 +1 @@ +73f940279f909bfa5ad307d904bc88da awesfx-0.5.1c.tar.bz2 --- NEW FILE udev-soundfont --- #!/bin/sh -e CARD=${DEVNAME##/dev/snd/hwC} CARD=${CARD%%D2} case $DEVPATH in */pci*) # Emu10k1 / Audigy, send a MIDI sequence to activate breakout-box echo -en "\xf0\x00\x20\x21\x61\x00\x00\x00\x7f\x00\xf7" > /dev/snd/midiC${CARD}D1 /etc/alsa.d/load-soundfont $CARD default.bnk default.sf2 ;; *) # SB AWE can use ROM as fallback /etc/alsa.d/load-soundfont $CARD default.bnk default.sf2 default.sbk gu11-rom.sf2 GU11-ROM.SF2 ;; esac exit 0 --- dead.package DELETED --- From mclasen at fedoraproject.org Wed Jul 1 14:44:02 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 14:44:02 +0000 (UTC) Subject: rpms/orca/F-11 .cvsignore, 1.52, 1.53 orca.spec, 1.85, 1.86 sources, 1.53, 1.54 Message-ID: <20090701144402.6A8A711C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/orca/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18101 Modified Files: .cvsignore orca.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/orca/F-11/.cvsignore,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- .cvsignore 2 Jun 2009 02:54:16 -0000 1.52 +++ .cvsignore 1 Jul 2009 14:43:31 -0000 1.53 @@ -1 +1 @@ -orca-2.26.2.tar.bz2 +orca-2.26.3.tar.bz2 Index: orca.spec =================================================================== RCS file: /cvs/pkgs/rpms/orca/F-11/orca.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- orca.spec 11 Jun 2009 19:49:13 -0000 1.85 +++ orca.spec 1 Jul 2009 14:43:32 -0000 1.86 @@ -16,8 +16,8 @@ %define control_center_version 2.16.0-5 Name: orca -Version: 2.26.2 -Release: 2%{?dist} +Version: 2.26.3 +Release: 1%{?dist} Summary: Assistive technology for people with visual impairments Group: User Interface/Desktops @@ -105,6 +105,10 @@ fi %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/orca/2.26/orca-2.26.3.news + * Thu Jun 11 2009 Matthias Clasen - 2.26.2-2 - Add a gnome-speech dep (#503193) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/orca/F-11/sources,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- sources 2 Jun 2009 02:54:16 -0000 1.53 +++ sources 1 Jul 2009 14:43:32 -0000 1.54 @@ -1 +1 @@ -d2a2212271d35115833ef71dfa223397 orca-2.26.2.tar.bz2 +72dbf273bedd214e9023725690fb61b7 orca-2.26.3.tar.bz2 From mclasen at fedoraproject.org Wed Jul 1 14:49:12 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 14:49:12 +0000 (UTC) Subject: rpms/gnome-system-monitor/devel .cvsignore, 1.78, 1.79 gnome-system-monitor.spec, 1.143, 1.144 sources, 1.78, 1.79 Message-ID: <20090701144912.309C211C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-system-monitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19968 Modified Files: .cvsignore gnome-system-monitor.spec sources Log Message: 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/.cvsignore,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- .cvsignore 14 Apr 2009 01:33:43 -0000 1.78 +++ .cvsignore 1 Jul 2009 14:48:41 -0000 1.79 @@ -1 +1 @@ -gnome-system-monitor-2.26.1.tar.bz2 +gnome-system-monitor-2.27.3.tar.bz2 Index: gnome-system-monitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/gnome-system-monitor.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- gnome-system-monitor.spec 9 Jun 2009 17:18:02 -0000 1.143 +++ gnome-system-monitor.spec 1 Jul 2009 14:48:41 -0000 1.144 @@ -11,8 +11,8 @@ Summary: Process and resource monitor Name: gnome-system-monitor -Version: 2.26.1 -Release: 3%{?dist} +Version: 2.27.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.gnome.org/ @@ -147,6 +147,9 @@ scrollkeeper-update -q %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.27.3-1 +- Update to 2.27.3 + * Wed May 13 2009 Matthias Clasen - 2.26.1-3 - Port to PolicyKit 1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/sources,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- sources 14 Apr 2009 01:33:43 -0000 1.78 +++ sources 1 Jul 2009 14:48:41 -0000 1.79 @@ -1 +1 @@ -105eaf7f64a19848d5fe94e4cd4e4189 gnome-system-monitor-2.26.1.tar.bz2 +2d1689f88483b5d53e27a578cd73ade9 gnome-system-monitor-2.27.3.tar.bz2 From tgl at fedoraproject.org Wed Jul 1 14:53:40 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Wed, 1 Jul 2009 14:53:40 +0000 (UTC) Subject: rpms/libtiff/devel libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 libtiff.spec, 1.53, 1.54 Message-ID: <20090701145340.C6D5511C02C3@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21325 Modified Files: libtiff-3.8.2-lzw-bugs.patch libtiff.spec Log Message: Fix for CVE-2009-2285 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/devel/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 26 Aug 2008 15:52:30 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 1 Jul 2009 14:53:40 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/devel/libtiff.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- libtiff.spec 25 Feb 2009 19:24:10 -0000 1.53 +++ libtiff.spec 1 Jul 2009 14:53:40 -0000 1.54 @@ -1,10 +1,10 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 12%{?dist} +Release: 13%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -157,6 +157,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Wed Jul 1 2009 Tom Lane 3.8.2-13 +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #507465 +- Update upstream URL + * Wed Feb 25 2009 Fedora Release Engineering - 3.8.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From guidograzioli at fedoraproject.org Wed Jul 1 14:53:52 2009 From: guidograzioli at fedoraproject.org (Guido Grazioli) Date: Wed, 1 Jul 2009 14:53:52 +0000 (UTC) Subject: rpms/awesfx/F-10 41-soundfont.rules, NONE, 1.1 Makefile, 1.3, 1.4 awesfx.spec, 1.19, 1.20 import.log, NONE, 1.1 load-soundfont, NONE, 1.1 rename-getline-to-parseline.patch, NONE, 1.1 sources, 1.5, 1.6 udev-soundfont, NONE, 1.1 dead.package, 1.1, NONE Message-ID: <20090701145352.4ABA311C02C3@cvs1.fedora.phx.redhat.com> Author: guidograzioli Update of /cvs/pkgs/rpms/awesfx/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21219/F-10 Added Files: 41-soundfont.rules Makefile awesfx.spec import.log load-soundfont rename-getline-to-parseline.patch sources udev-soundfont Removed Files: dead.package Log Message: * Thu May 28 2009 Guido Grazioli 0.5.1c-2 - fixed %%install - fixed license - fixed files ownership * Thu Mar 12 2009 Guido Grazioli 0.5.1c-1 - initial packaging --- NEW FILE 41-soundfont.rules --- SUBSYSTEM=="sound", KERNEL=="hwC?D2", DRIVERS=="EMU10K1_Audigy", RUN+="/etc/alsa.d/udev-soundfont" Index: Makefile =================================================================== RCS file: Makefile diff -N Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile 1 Jul 2009 14:53:21 -0000 1.4 @@ -0,0 +1,21 @@ +# Makefile for source rpm: awesfx +# $Id$ +NAME := awesfx +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) Index: awesfx.spec =================================================================== RCS file: awesfx.spec diff -N awesfx.spec --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ awesfx.spec 1 Jul 2009 14:53:22 -0000 1.20 @@ -0,0 +1,67 @@ +Name: awesfx +Version: 0.5.1c +Release: 2%{?dist} +Summary: Utility programs for the AWE32/Emu10k1 sound driver +Group: Applications/Multimedia +URL: http://www.alsa-project.org/~iwai/awedrv.html +Source0: http://ftp.suse.com/pub/people/tiwai/awesfx/awesfx-%{version}.tar.bz2 +Source1: udev-soundfont +Source2: load-soundfont +Source3: 41-soundfont.rules +Patch0: rename-getline-to-parseline.patch +License: GPLv2+ +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: alsa-lib-devel >= 1.0.0 + +%description +The awesfx package contains various utility programs for controlling the +AWE32/Emu10k1 sound driver. AWESFX includes asxfload and sfxload, the +soundfont loaders; setfx, the chorus/reverb effect loader; aweset, a +controller for setting parameters; and programs for converting soundfonts +to text. + +If you use an AWE32 or Emu10k1 sound driver you should install the awesfx +package. + +%prep +%setup -q + +%patch0 -p1 + +%build +%configure CFLAGS="$RPM_OPT_FLAGS" +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} INSTALL="install -p" install +install -Dp -m 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/alsa.d/udev-soundfont +install -Dp -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/alsa.d/load-soundfont +install -Dp -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/udev/rules.d/41-soundfont.rules +mkdir -p %{buildroot}%{_datadir}/soundfonts +mv %{buildroot}%{_datadir}/sounds/sf2/*.bnk %{buildroot}%{_datadir}/soundfonts +rm -rf %{buildroot}%{_datadir}/sounds +rm -f samples/Makefile* + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING ChangeLog README SBKtoSF2.txt samples/README-bank samples/setfx-sample.cfg +%{_bindir}/* +%attr(0755, root, root) %{_sysconfdir}/alsa.d +%{_sysconfdir}/alsa.d/udev-soundfont +%{_sysconfdir}/alsa.d/load-soundfont +%config(noreplace) %{_sysconfdir}/udev/rules.d/41-soundfont.rules +%{_datadir}/soundfonts/ +%{_mandir}/man*/*.1.gz + +%changelog +* Thu May 28 2009 Guido Grazioli 0.5.1c-2 +- fixed %%install +- fixed license +- fixed files ownership +* Thu Mar 12 2009 Guido Grazioli 0.5.1c-1 +- initial packaging --- NEW FILE import.log --- awesfx-0_5_1c-2_fc9:F-10:awesfx-0.5.1c-2.fc9.src.rpm:1246459962 --- NEW FILE load-soundfont --- #!/bin/sh -e CARD=$1 shift test -x /usr/bin/asfxload || exit 0 . /etc/sysconfig/sound load_sf () { for d in /usr/share/soundfonts \ /usr/share/sounds/sf2 \ /usr/share/sfbank \ /usr/local/lib/sfbank \ /usr/share/sfbank/creative \ /usr/local/lib/sfbank/creative \ ; do if [ -r $d/$1 ]; then /usr/bin/asfxload -Dhw:${CARD},2 $d/$1 return 0 fi done return 1 } case $SOUNDFONT_FILES in /*) if [ -r "$SOUNDFONT_FILES" ]; then /usr/bin/asfxload -Dhw:${CARD},2 $SOUNDFONT_FILES exit 0 fi ;; esac for file in $SOUNDFONT_FILES $* ; do if load_sf $file ; then break fi done exit 0 rename-getline-to-parseline.patch: --- NEW FILE rename-getline-to-parseline.patch --- diff -uNr awesfx-0.5.1c/setfx.c awesfx-0.5.1c-p/setfx.c --- awesfx-0.5.1c/setfx.c 2007-08-29 18:00:23.000000000 +0200 +++ awesfx-0.5.1c-p/setfx.c 2009-03-13 02:36:01.000000000 +0100 @@ -37,7 +37,7 @@ /*----------------------------------------------------------------*/ static void usage(void); -static int getline(FILE *fp); +static int parseline(FILE *fp); static int nextline(FILE *fp); static char *gettok(FILE *fp); static char *divtok(char *src, char *divs, int only_one); @@ -126,7 +126,7 @@ } curline = 0; - if (!getline(fp)) + if (!parseline(fp)) return 0; seq_init(seq_devname, seq_devidx); @@ -370,7 +370,7 @@ * read a line and parse tokens *----------------------------------------------------------------*/ -static int getline(FILE *fp) +static int parseline(FILE *fp) { char *p; curline++; @@ -393,12 +393,12 @@ { if (connected) { do { - if (! getline(fp)) + if (! parseline(fp)) return FALSE; } while (connected); return TRUE; } else { - return getline(fp); + return parseline(fp); } } @@ -415,7 +415,7 @@ tok = divtok(NULL, " \t\r\n", FALSE); while (tok == NULL || *tok == 0) { if (! connected) return NULL; - if (! getline(fp)) return NULL; + if (! parseline(fp)) return NULL; tok = divtok(line, " \t\r\n", FALSE); } return tok; Index: sources =================================================================== RCS file: sources diff -N sources --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sources 1 Jul 2009 14:53:22 -0000 1.6 @@ -0,0 +1 @@ +73f940279f909bfa5ad307d904bc88da awesfx-0.5.1c.tar.bz2 --- NEW FILE udev-soundfont --- #!/bin/sh -e CARD=${DEVNAME##/dev/snd/hwC} CARD=${CARD%%D2} case $DEVPATH in */pci*) # Emu10k1 / Audigy, send a MIDI sequence to activate breakout-box echo -en "\xf0\x00\x20\x21\x61\x00\x00\x00\x7f\x00\xf7" > /dev/snd/midiC${CARD}D1 /etc/alsa.d/load-soundfont $CARD default.bnk default.sf2 ;; *) # SB AWE can use ROM as fallback /etc/alsa.d/load-soundfont $CARD default.bnk default.sf2 default.sbk gu11-rom.sf2 GU11-ROM.SF2 ;; esac exit 0 --- dead.package DELETED --- From mclasen at fedoraproject.org Wed Jul 1 14:59:34 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 14:59:34 +0000 (UTC) Subject: rpms/file-roller/F-11 file-roller.spec,1.150,1.151 Message-ID: <20090701145934.1E3D311C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/file-roller/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23113 Modified Files: file-roller.spec Log Message: fix the build Index: file-roller.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/F-11/file-roller.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- file-roller.spec 1 Jul 2009 14:34:52 -0000 1.150 +++ file-roller.spec 1 Jul 2009 14:59:03 -0000 1.151 @@ -50,7 +50,7 @@ such as tar or zip files. %prep %setup -q -autoreconf -f -i +touch src/typedefs.h %build %configure --disable-scrollkeeper --disable-static From mclasen at fedoraproject.org Wed Jul 1 15:10:26 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 15:10:26 +0000 (UTC) Subject: rpms/gnome-mag/F-11 .cvsignore, 1.36, 1.37 gnome-mag.spec, 1.65, 1.66 sources, 1.37, 1.38 Message-ID: <20090701151026.71A2B11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-mag/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25279 Modified Files: .cvsignore gnome-mag.spec sources Log Message: 0.15.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/F-11/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 13 Apr 2009 03:13:56 -0000 1.36 +++ .cvsignore 1 Jul 2009 15:09:54 -0000 1.37 @@ -1 +1 @@ -gnome-mag-0.15.6.tar.bz2 +gnome-mag-0.15.7.tar.bz2 Index: gnome-mag.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/F-11/gnome-mag.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- gnome-mag.spec 13 Apr 2009 03:13:57 -0000 1.65 +++ gnome-mag.spec 1 Jul 2009 15:09:54 -0000 1.66 @@ -2,7 +2,7 @@ Summary: Screen magnifier for GNOME Name: gnome-mag -Version: 0.15.6 +Version: 0.15.7 Release: 1%{?dist} License: LGPLv2+ Group: Desktop/Accessibility @@ -78,6 +78,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/gnome-mag* %changelog +* Wed Jul 1 2009 Matthias Clasen - 0.15.7-1 +- Update to 0.15.7 +- See http://download.gnome.org/sources/gnome-mag/0.15/gnome-mag-0.15.7.news + * Sun Apr 12 2009 Matthias Clasen - 0.15.6-1 - Update to 0.15.6 - See http://download.gnome.org/sources/gnome-mag/0.15/gnome-mag-0.15.6.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/F-11/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 13 Apr 2009 03:13:57 -0000 1.37 +++ sources 1 Jul 2009 15:09:54 -0000 1.38 @@ -1 +1 @@ -6f05fc7aa02277c60431a280ba632120 gnome-mag-0.15.6.tar.bz2 +40eb26385e3225ac5cb1eab87488cfc3 gnome-mag-0.15.7.tar.bz2 From tgl at fedoraproject.org Wed Jul 1 15:13:39 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Wed, 1 Jul 2009 15:13:39 +0000 (UTC) Subject: rpms/libtiff/F-11 libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 libtiff.spec, 1.53, 1.54 Message-ID: <20090701151339.614D811C02C3@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26292 Modified Files: libtiff-3.8.2-lzw-bugs.patch libtiff.spec Log Message: Fix for CVE-2009-2285 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-11/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 26 Aug 2008 15:52:30 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 1 Jul 2009 15:13:38 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-11/libtiff.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- libtiff.spec 25 Feb 2009 19:24:10 -0000 1.53 +++ libtiff.spec 1 Jul 2009 15:13:39 -0000 1.54 @@ -1,10 +1,10 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 12%{?dist} +Release: 13%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -157,6 +157,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Wed Jul 1 2009 Tom Lane 3.8.2-13 +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #507465 +- Update upstream URL + * Wed Feb 25 2009 Fedora Release Engineering - 3.8.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Wed Jul 1 15:15:48 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 15:15:48 +0000 (UTC) Subject: rpms/koffice/devel koffice.spec,1.108,1.109 Message-ID: <20090701151548.4BEC611C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26882 Modified Files: koffice.spec Log Message: * Tue Jun 30 2009 Rex Dieter - 2:2.0.1-2 - rebuild (GraphicsMagick) Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/devel/koffice.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- koffice.spec 24 Jun 2009 12:28:14 -0000 1.108 +++ koffice.spec 1 Jul 2009 15:15:47 -0000 1.109 @@ -8,7 +8,7 @@ Name: koffice Epoch: 2 Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An integrated office suite Group: Applications/Productivity @@ -759,6 +759,9 @@ update-desktop-database -q &> /dev/null %changelog +* Tue Jun 30 2009 Rex Dieter - 2:2.0.1-2 +- rebuild (GraphicsMagick) + * Wed Jun 24 2009 Rex Dieter - 2:2.0.1-1 - koffice-2.0.1 - KOffice 2 ships private copy of Emmentaler music font (#507741) From rdieter at fedoraproject.org Wed Jul 1 15:16:44 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 15:16:44 +0000 (UTC) Subject: rpms/GraphicsMagick/devel .cvsignore, 1.7, 1.8 GraphicsMagick.spec, 1.24, 1.25 sources, 1.7, 1.8 GraphicsMagick-1.1.10-gcc43.patch, 1.2, NONE GraphicsMagick-1.1.15-multilib.patch, 1.1, NONE GraphicsMagick-gslib.patch, 1.1, NONE GraphicsMagick-perl.patch, 1.3, NONE Message-ID: <20090701151644.2EAE811C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/GraphicsMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27040 Modified Files: .cvsignore GraphicsMagick.spec sources Removed Files: GraphicsMagick-1.1.10-gcc43.patch GraphicsMagick-1.1.15-multilib.patch GraphicsMagick-gslib.patch GraphicsMagick-perl.patch Log Message: * Tue Jun 30 2009 Rex Dieter - 1.3.5-1 - GraphicsMagick-1.3.5, ABI break (#487605) - --without-libgs (for now, per upstream advice) - BR: jasper-devel Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 30 Jun 2009 15:19:51 -0000 1.7 +++ .cvsignore 1 Jul 2009 15:16:12 -0000 1.8 @@ -1 +1 @@ -GraphicsMagick-1.1.15.tar.bz2 +GraphicsMagick-1.3.5.tar.bz2 Index: GraphicsMagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/GraphicsMagick.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- GraphicsMagick.spec 30 Jun 2009 15:19:51 -0000 1.24 +++ GraphicsMagick.spec 1 Jul 2009 15:16:13 -0000 1.25 @@ -1,15 +1,11 @@ + Summary: An ImageMagick fork, offering faster image generation and better quality Name: GraphicsMagick -Version: 1.1.15 +Version: 1.3.5 Release: 1%{?dist} License: MIT Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/sourceforge/graphicsmagick/GraphicsMagick-%{version}.tar.bz2 -Patch0: GraphicsMagick-gslib.patch -Patch1: GraphicsMagick-perl.patch -Patch2: GraphicsMagick-1.1.10-gcc43.patch -# hack out multilib issues, esp since we know we're in default search paths -Patch3: GraphicsMagick-1.1.15-multilib.patch Url: http://www.graphicsmagick.org/ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -17,7 +13,7 @@ BuildRequires: bzip2-devel, freetype-dev BuildRequires: libtiff-devel, libungif-devel, zlib-devel, perl BuildRequires: freetype-devel >= 2.0.1 BuildRequires: automake >= 1.7 autoconf >= 2.58 libtool >= 1.5 -BuildRequires: ghostscript-devel +BuildRequires: jasper-devel BuildRequires: libwmf-devel, perl-devel BuildRequires: lcms-devel, libxml2-devel, librsvg2-devel BuildRequires: libX11-devel libXext-devel libXt-devel @@ -29,14 +25,14 @@ the GraphicsMagick Group to significantl of the software. %package devel -Summary: Static libraries and header files for GraphicsMagick app development +Summary: Libraries and header files for GraphicsMagick app development Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: ghostscript-devel, bzip2-devel, libtiff-devel, libjpeg-devel Requires: lcms-devel, pkgconfig, libX11-devel, libXext-devel, libXt-devel %description devel -GraphicsMagick-devel contains the static libraries and header files you'll +GraphicsMagick-devel contains the Libraries and header files you'll need to develop GraphicsMagick applications. GraphicsMagick is an image manipulation program. @@ -76,7 +72,7 @@ Requires: %{name}-c++ = %{version}-%{rel Requires: %{name}-devel = %{version}-%{release} %description c++-devel -GraphicsMagick-devel contains the static libraries and header files you'll +GraphicsMagick-devel contains the Libraries and header files you'll need to develop GraphicsMagick applications using the Magick++ C++ bindings. GraphicsMagick is an image manipulation program. @@ -89,13 +85,6 @@ however. %prep %setup -q -# Disabled, causing segfaults in the gslib code path -#%patch0 -p 1 -b .gslib -%patch1 -p 1 -b .perl -%patch2 -p1 -b .gcc43 -%patch3 -p1 -b .multilib -# Regenerating configure script -#autoconf iconv -f iso-8859-2 -t utf8 < ChangeLog > ChangeLog.utf8 mv -f ChangeLog.utf8 ChangeLog @@ -113,11 +102,9 @@ sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{ --with-x \ --with-threads \ --with-magick_plus_plus \ - --with-gslib \ + --without-gslib \ --with-wmf \ - --with-lzw \ --with-lcms \ - --with-rsvg \ --with-xml \ --with-perl-options="INSTALLDIRS=vendor %{?perl_prefix} CC='%__cc -L$PWD/magick/.libs' LDDLFLAGS='-shared -L$PWD/magick/.libs'" \ --with-windows-font-dir=%{_datadir}/fonts/default/TrueType \ @@ -205,10 +192,10 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Copyright.txt -%doc README.txt AUTHORS +%doc README.txt %doc %{_datadir}/doc/%{name}/ -%attr(755,root,root) %{_libdir}/libGraphicsMagick.so.1* -%attr(755,root,root) %{_libdir}/libGraphicsMagickWand.so.0* +%{_libdir}/libGraphicsMagick.so.3* +%{_libdir}/libGraphicsMagickWand.so.2* %{_bindir}/[a-z]* %{_libdir}/GraphicsMagick* %{_datadir}/GraphicsMagick* @@ -222,18 +209,20 @@ rm -rf %{buildroot} %{_libdir}/libGraphicsMagickWand.so %{_libdir}/pkgconfig/GraphicsMagick.pc %{_libdir}/pkgconfig/GraphicsMagickWand.pc -%{_includedir}/GraphicsMagick/ +%dir %{_includedir}/GraphicsMagick/ +%{_includedir}/GraphicsMagick/magick/ +%{_includedir}/GraphicsMagick/wand/ %{_mandir}/man1/GraphicsMagick-config.* %{_mandir}/man1/GraphicsMagickWand-config.* %files c++ %defattr(-,root,root,-) -%{_libdir}/libGraphicsMagick++.so.* +%{_libdir}/libGraphicsMagick++.so.3* %files c++-devel %defattr(-,root,root,-) %{_bindir}/GraphicsMagick++-config -%{_includedir}/GraphicsMagick/Magick++ +%{_includedir}/GraphicsMagick/Magick++/ %{_includedir}/GraphicsMagick/Magick++.h %{_libdir}/libGraphicsMagick++.so %{_libdir}/pkgconfig/GraphicsMagick++.pc @@ -246,6 +235,11 @@ rm -rf %{buildroot} %changelog +* Tue Jun 30 2009 Rex Dieter - 1.3.5-1 +- GraphicsMagick-1.3.5, ABI break (#487605) +- --without-libgs (for now, per upstream advice) +- BR: jasper-devel + * Tue Jun 30 2009 Rex Dieter - 1.1.15-1 - GraphicsMagick-1.1.15 - fix BuildRoot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 30 Jun 2009 15:19:51 -0000 1.7 +++ sources 1 Jul 2009 15:16:13 -0000 1.8 @@ -1 +1 @@ -e8b1393b14356fc2baf0f79db100cce8 GraphicsMagick-1.1.15.tar.bz2 +695d94588437ef3a12b971d7ab672d8f GraphicsMagick-1.3.5.tar.bz2 --- GraphicsMagick-1.1.10-gcc43.patch DELETED --- --- GraphicsMagick-1.1.15-multilib.patch DELETED --- --- GraphicsMagick-gslib.patch DELETED --- --- GraphicsMagick-perl.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 1 15:16:59 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 15:16:59 +0000 (UTC) Subject: rpms/dvdauthor/devel dvdauthor.spec,1.12,1.13 Message-ID: <20090701151659.93C5811C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/dvdauthor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27107 Modified Files: dvdauthor.spec Log Message: * Tue Jun 30 2009 Rex Dieter - 0.6.14-9 - rebuild (GraphicsMagick) Index: dvdauthor.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvdauthor/devel/dvdauthor.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dvdauthor.spec 24 Feb 2009 13:04:50 -0000 1.12 +++ dvdauthor.spec 1 Jul 2009 15:16:29 -0000 1.13 @@ -1,6 +1,6 @@ Name: dvdauthor Version: 0.6.14 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Command line DVD authoring tool Group: Applications/Multimedia @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 30 2009 Rex Dieter - 0.6.14-9 +- rebuild (GraphicsMagick) + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.14-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From tgl at fedoraproject.org Wed Jul 1 15:29:03 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Wed, 1 Jul 2009 15:29:03 +0000 (UTC) Subject: rpms/libtiff/F-10 libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 libtiff.spec, 1.52, 1.53 Message-ID: <20090701152903.4795E11C02C3@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30222 Modified Files: libtiff-3.8.2-lzw-bugs.patch libtiff.spec Log Message: Fix for CVE-2009-2285 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-10/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 26 Aug 2008 15:52:30 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 1 Jul 2009 15:29:02 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-10/libtiff.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- libtiff.spec 26 Aug 2008 15:52:30 -0000 1.52 +++ libtiff.spec 1 Jul 2009 15:29:03 -0000 1.53 @@ -1,10 +1,10 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 11%{?dist} +Release: 13%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -157,6 +157,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Wed Jul 1 2009 Tom Lane 3.8.2-13 +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #507465 +- Update upstream URL + * Tue Aug 26 2008 Tom Lane 3.8.2-11 - Fix LZW decoding vulnerabilities (CVE-2008-2327) Related: #458674 From mclasen at fedoraproject.org Wed Jul 1 15:31:56 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 15:31:56 +0000 (UTC) Subject: rpms/cheese/F-11 .cvsignore, 1.28, 1.29 cheese.spec, 1.52, 1.53 sources, 1.28, 1.29 Message-ID: <20090701153156.DF08811C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/cheese/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28486 Modified Files: .cvsignore cheese.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cheese/F-11/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 1 Jun 2009 16:36:17 -0000 1.28 +++ .cvsignore 1 Jul 2009 15:31:56 -0000 1.29 @@ -1 +1 @@ -cheese-2.26.2.tar.bz2 +cheese-2.26.3.tar.bz2 Index: cheese.spec =================================================================== RCS file: /cvs/pkgs/rpms/cheese/F-11/cheese.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- cheese.spec 1 Jun 2009 16:36:17 -0000 1.52 +++ cheese.spec 1 Jul 2009 15:31:56 -0000 1.53 @@ -1,5 +1,5 @@ Name: cheese -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} Summary: Application for taking pictures and movies from a webcam @@ -123,6 +123,10 @@ fi %{_datadir}/dbus-1/services/org.gnome.Cheese.service %changelog +* Wed Jul 1 2009 Matthias Clasen 2.26.3-1 +- Update to 2.26.3 +- http://download.gnome.org/sources/cheese/2.26/cheese-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen 2.26.2-1 - Update to 2.26.2 - http://download.gnome.org/sources/cheese/2.26/cheese-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cheese/F-11/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 1 Jun 2009 16:36:18 -0000 1.28 +++ sources 1 Jul 2009 15:31:56 -0000 1.29 @@ -1 +1 @@ -9dee43671f0660e73524724174569331 cheese-2.26.2.tar.bz2 +c00fbf9e79e39cb95af57c0a6cf9ce88 cheese-2.26.3.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 1 15:33:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 15:33:13 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701153314.22DE410F88C@bastion2.fedora.phx.redhat.com> dhavalgiani has set the watchbugzilla acl on libcgroup (Fedora 11) to Approved for balbirsingh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From sgrubb at fedoraproject.org Wed Jul 1 15:45:31 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Wed, 1 Jul 2009 15:45:31 +0000 (UTC) Subject: rpms/amtu/devel amtu-1.0.7-makefile.patch, NONE, 1.1 amtu.spec, 1.24, 1.25 Message-ID: <20090701154531.9C22F11C02C3@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1310 Modified Files: amtu.spec Added Files: amtu-1.0.7-makefile.patch Log Message: * Wed Jul 01 2009 Steve Grubb 1.0.7-1 - new upstream version amtu-1.0.7-makefile.patch: --- NEW FILE amtu-1.0.7-makefile.patch --- diff -ur amtu-1.0.7.orig/configure.in amtu-1.0.7/configure.in --- amtu-1.0.7.orig/configure.in 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/configure.in 2009-07-01 11:05:07.000000000 -0400 @@ -1,19 +1,14 @@ -AC_REVISION($Revision: 1.2 $)dnl -# AC_CANONICAL_SYSTEM is deprecated in the latest version of AUTOMAKE. -# We aren't using the latest version so we'll keep using it -#AC_CANONICAL_TARGET -AC_INIT(src/amtu.c) +AC_REVISION($Revision: 1.3 $)dnl +AC_INIT(amtu,1.0.7) AC_PREREQ(2.12)dnl -AC_CONFIG_AUX_DIR(config) -AC_CONFIG_SRCDIR(src/amtu.c) AM_CONFIG_HEADER(config.h) -VERSION=1.0.6 -echo Configuring amtu $VERSION - -AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(amtu, $VERSION) +AC_CANONICAL_TARGET +AM_INIT_AUTOMAKE AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_AWK + case "$target" in i386-* | i486-* | i586-* | i686-*) AC_DEFINE(HAVE_I86,1,NULL);; powerpc-*) AC_DEFINE(HAVE_PPC,1,NULL);; @@ -25,3 +20,15 @@ AC_CHECK_LIB(laus, laus_open) AC_CHECK_LIB(audit, audit_open) AC_OUTPUT(Makefile src/Makefile doc/Makefile) + +echo . +echo " + + amtu: $VERSION + Target: $target + Installation prefix: $prefix + Compiler: $CC + Compiler flags: +`echo $CFLAGS | fmt -w 50 | sed 's,^, ,'` +" + diff -ur amtu-1.0.7.orig/doc/Makefile.am amtu-1.0.7/doc/Makefile.am --- amtu-1.0.7.orig/doc/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/doc/Makefile.am 2009-07-01 10:56:52.000000000 -0400 @@ -1 +1,3 @@ +CONFIG_CLEAN_FILES = *.rej *.orig +EXTRA_DIST = $(man_MANS) man_MANS = amtu.8 diff -ur amtu-1.0.7.orig/Makefile.am amtu-1.0.7/Makefile.am --- amtu-1.0.7.orig/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/Makefile.am 2009-07-01 10:36:48.000000000 -0400 @@ -1 +1,8 @@ SUBDIRS = src doc +EXTRA_DIST = bootstrap LICENSE CPLv1.0.htm README +CONFIG_CLEAN_FILES = debug*.list config/* + +clean-generic: + rm -rf autom4te*.cache + rm -f *.rej *.orig + diff -ur amtu-1.0.7.orig/src/Makefile.am amtu-1.0.7/src/Makefile.am --- amtu-1.0.7.orig/src/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/src/Makefile.am 2009-07-01 10:55:44.000000000 -0400 @@ -1,3 +1,8 @@ -AM_CPPFLAGS = -Wall -W -Wfloat-equal -Wundef +CLEANFILES = $(BUILT_SOURCES) +CONFIG_CLEAN_FILES = *.loT *.rej *.orig +AM_CFLAGS = -Wall -W -Wfloat-equal -Wundef +INCLUDES = -I. -I${top_srcdir} +noinst_HEADERS = amtu.h bin_PROGRAMS = amtu amtu_SOURCES = amtu-i86.c amtu-ppc.c amtu-s390.c amtu-ia64.c amtu.c memory.c memsep.c iodisktest.c networkio.c +amtu_DEPENDENCIES = $(amtu_SOURCES) ${top_srcdir}/config.h Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/amtu.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- amtu.spec 24 Feb 2009 01:01:27 -0000 1.24 +++ amtu.spec 1 Jul 2009 15:45:01 -0000 1.25 @@ -1,11 +1,12 @@ Summary: Abstract Machine Test Utility (AMTU) Name: amtu -Version: 1.0.6 -Release: 4%{?dist} +Version: 1.0.7 +Release: 1%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/amtueal/ Source0: %{name}-%{version}.tar.gz +Patch1: amtu-1.0.7-makefile.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: audit-libs-devel >= 1.1.2 BuildRequires: automake @@ -22,19 +23,9 @@ http://www.radium.ncsc.mil/tpep/library/ %prep %setup -q +%patch1 -p1 %build -# Determine appropriate compiler -CC="gcc" -%ifarch ppc64 ppc64iseries ppc64pseries - CC="/usr/bin/ppc64-redhat-linux-gcc" -%endif -# Determine appropriate compiler flags -CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe" -%ifarch x86_64 - CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe -m64" -%endif -export CC CFLAGS # next 3 items is to quieten autoreconf touch ChangeLog touch NEWS @@ -45,22 +36,21 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/%{_bindir} -install -m 0750 src/amtu $RPM_BUILD_ROOT/%{_bindir} - -mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man8/ -install -m 644 doc/amtu.8 $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8 +make "DESTDIR=${RPM_BUILD_ROOT}" install %clean rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root) +%defattr(-,root,root, -) %doc doc/AMTUHowTo.txt COPYING %attr(0750,root,root) %{_bindir}/amtu %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Wed Jul 01 2009 Steve Grubb 1.0.7-1 +- new upstream version + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Wed Jul 1 15:48:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 15:48:58 +0000 (UTC) Subject: rpms/libgweather/F-11 .cvsignore, 1.23, 1.24 libgweather.spec, 1.40, 1.41 sources, 1.23, 1.24 Message-ID: <20090701154858.4B60411C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgweather/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2220 Modified Files: .cvsignore libgweather.spec sources Log Message: 2.26.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/F-11/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 14 Apr 2009 00:39:08 -0000 1.23 +++ .cvsignore 1 Jul 2009 15:48:27 -0000 1.24 @@ -1 +1 @@ -libgweather-2.26.1.tar.bz2 +libgweather-2.26.2.1.tar.bz2 Index: libgweather.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/F-11/libgweather.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- libgweather.spec 11 Jun 2009 02:50:32 -0000 1.40 +++ libgweather.spec 1 Jul 2009 15:48:28 -0000 1.41 @@ -1,6 +1,6 @@ Name: libgweather -Version: 2.26.1 -Release: 3%{?dist} +Version: 2.26.2.1 +Release: 1%{?dist} Summary: A library for weather information Group: System Environment/Libraries @@ -110,6 +110,10 @@ fi %changelog +* Wed Jul 1 2009 Matthias Clasen 2.26.2.1-1 +- Update to 2.26.2.1 +- See http://download.gnome.org/sources/libgweather/2.26/libgweather-2.26.2.news + * Wed Jun 10 2009 Matthias Clasen 2.26.1-3 - Fix multilib parallel-installability (#477672) - Remove some old optimizations that are now no-ops Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 14 Apr 2009 00:39:08 -0000 1.23 +++ sources 1 Jul 2009 15:48:28 -0000 1.24 @@ -1 +1 @@ -382041ee8f4efeec1afde968624d34fe libgweather-2.26.1.tar.bz2 +cef0447b62235c4662aa9691dd9a6c92 libgweather-2.26.2.1.tar.bz2 From sgrubb at fedoraproject.org Wed Jul 1 15:50:31 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Wed, 1 Jul 2009 15:50:31 +0000 (UTC) Subject: rpms/amtu/devel .cvsignore,1.9,1.10 sources,1.10,1.11 Message-ID: <20090701155031.379EC11C02C3@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2671 Modified Files: .cvsignore sources Log Message: * Wed Jul 01 2009 Steve Grubb 1.0.7-1 - new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 8 Dec 2007 18:15:14 -0000 1.9 +++ .cvsignore 1 Jul 2009 15:50:00 -0000 1.10 @@ -6,3 +6,4 @@ amtu-1.0.3.tar.gz amtu-1.0.4.tar.gz amtu-1.0.5-1.tar.gz amtu-1.0.6.tar.gz +amtu-1.0.7.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 8 Dec 2007 18:15:14 -0000 1.10 +++ sources 1 Jul 2009 15:50:01 -0000 1.11 @@ -1 +1 @@ -9c65ae295bb875bb4aa8786e17a2f1e7 amtu-1.0.6.tar.gz +8858a47c667ffc4af840d72d8ced6605 amtu-1.0.7.tar.gz From cweyl at fedoraproject.org Wed Jul 1 15:51:56 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Wed, 1 Jul 2009 15:51:56 +0000 (UTC) Subject: rpms/perl-B-Hooks-EndOfScope/F-11 perl-B-Hooks-EndOfScope.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090701155156.DE53611C02C3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3050 Modified Files: perl-B-Hooks-EndOfScope.spec sources Log Message: * Sun May 17 2009 Chris Weyl 0.08-1 - auto-update to 0.08 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) - altered br on perl(Variable::Magic) (0.31 => 0.34) Index: perl-B-Hooks-EndOfScope.spec =================================================================== RCS file: /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-11/perl-B-Hooks-EndOfScope.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-B-Hooks-EndOfScope.spec 8 Mar 2009 20:47:00 -0000 1.3 +++ perl-B-Hooks-EndOfScope.spec 1 Jul 2009 15:51:26 -0000 1.4 @@ -1,18 +1,18 @@ -Name: perl-B-Hooks-EndOfScope -Version: 0.07 -Release: 1%{?dist} +Name: perl-B-Hooks-EndOfScope +Version: 0.08 +Release: 1%{?dist} # see lib/B/Hooks/EndOfScope.pm License: GPL+ or Artistic Group: Development/Libraries Summary: Execute code after scope compilation finishes -Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Hooks-EndOfScope-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Hooks-EndOfScope-%{version}.tar.gz Url: http://search.cpan.org/dist/B-Hooks-EndOfScope -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch -BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(Variable::Magic) >= 0.31 +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 +BuildRequires: perl(Variable::Magic) >= 0.34 BuildRequires: perl(Sub::Exporter) BuildRequires: perl(Test::More) @@ -40,7 +40,7 @@ find %{buildroot} -depth -type d -exec r make test %clean -rm -rf %{buildroot} +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -49,6 +49,11 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun May 17 2009 Chris Weyl 0.08-1 +- auto-update to 0.08 (by cpan-spec-update 0.01) +- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) +- altered br on perl(Variable::Magic) (0.31 => 0.34) + * Sun Mar 08 2009 Chris Weyl 0.07-1 - update to 0.07 @@ -61,4 +66,3 @@ rm -rf %{buildroot} * Sat Nov 08 2008 Chris Weyl 0.04-0.1 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.5) - Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Mar 2009 20:47:00 -0000 1.3 +++ sources 1 Jul 2009 15:51:26 -0000 1.4 @@ -1 +1 @@ -07bae81967dd4075f54aa839e70482e7 B-Hooks-EndOfScope-0.07.tar.gz +c770f55ce0205bcbb5824e4ec28431fd B-Hooks-EndOfScope-0.08.tar.gz From cweyl at fedoraproject.org Wed Jul 1 15:52:14 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Wed, 1 Jul 2009 15:52:14 +0000 (UTC) Subject: rpms/perl-B-Hooks-EndOfScope/F-10 perl-B-Hooks-EndOfScope.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090701155214.50E5911C02C3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3121 Modified Files: perl-B-Hooks-EndOfScope.spec sources Log Message: * Sun May 17 2009 Chris Weyl 0.08-1 - auto-update to 0.08 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) - altered br on perl(Variable::Magic) (0.31 => 0.34) Index: perl-B-Hooks-EndOfScope.spec =================================================================== RCS file: /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-10/perl-B-Hooks-EndOfScope.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-B-Hooks-EndOfScope.spec 8 Mar 2009 20:49:39 -0000 1.2 +++ perl-B-Hooks-EndOfScope.spec 1 Jul 2009 15:51:44 -0000 1.3 @@ -1,18 +1,18 @@ -Name: perl-B-Hooks-EndOfScope -Version: 0.07 -Release: 1%{?dist} +Name: perl-B-Hooks-EndOfScope +Version: 0.08 +Release: 1%{?dist} # see lib/B/Hooks/EndOfScope.pm License: GPL+ or Artistic Group: Development/Libraries Summary: Execute code after scope compilation finishes -Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Hooks-EndOfScope-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Hooks-EndOfScope-%{version}.tar.gz Url: http://search.cpan.org/dist/B-Hooks-EndOfScope -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch -BuildRequires: perl(ExtUtils::MakeMaker) -BuildRequires: perl(Variable::Magic) >= 0.31 +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42 +BuildRequires: perl(Variable::Magic) >= 0.34 BuildRequires: perl(Sub::Exporter) BuildRequires: perl(Test::More) @@ -40,7 +40,7 @@ find %{buildroot} -depth -type d -exec r make test %clean -rm -rf %{buildroot} +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -49,6 +49,11 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun May 17 2009 Chris Weyl 0.08-1 +- auto-update to 0.08 (by cpan-spec-update 0.01) +- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) +- altered br on perl(Variable::Magic) (0.31 => 0.34) + * Sun Mar 08 2009 Chris Weyl 0.07-1 - update to 0.07 @@ -61,4 +66,3 @@ rm -rf %{buildroot} * Sat Nov 08 2008 Chris Weyl 0.04-0.1 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.5) - Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-B-Hooks-EndOfScope/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Mar 2009 20:49:39 -0000 1.3 +++ sources 1 Jul 2009 15:51:44 -0000 1.4 @@ -1 +1 @@ -07bae81967dd4075f54aa839e70482e7 B-Hooks-EndOfScope-0.07.tar.gz +c770f55ce0205bcbb5824e4ec28431fd B-Hooks-EndOfScope-0.08.tar.gz From tgl at fedoraproject.org Wed Jul 1 15:52:34 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Wed, 1 Jul 2009 15:52:34 +0000 (UTC) Subject: rpms/libtiff/F-9 libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 libtiff.spec, 1.52, 1.53 Message-ID: <20090701155234.4E8AE11C02C3@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3464 Modified Files: libtiff-3.8.2-lzw-bugs.patch libtiff.spec Log Message: Fix for CVE-2009-2285 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-9/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 26 Aug 2008 16:00:24 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 1 Jul 2009 15:52:34 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-9/libtiff.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- libtiff.spec 26 Aug 2008 16:00:24 -0000 1.52 +++ libtiff.spec 1 Jul 2009 15:52:34 -0000 1.53 @@ -1,10 +1,10 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 11%{?dist} +Release: 13%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -157,6 +157,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Wed Jul 1 2009 Tom Lane 3.8.2-13 +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #507465 +- Update upstream URL + * Tue Aug 26 2008 Tom Lane 3.8.2-11 - Fix LZW decoding vulnerabilities (CVE-2008-2327) Related: #458674 From mclasen at fedoraproject.org Wed Jul 1 15:54:59 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 15:54:59 +0000 (UTC) Subject: rpms/tomboy/F-11 .cvsignore, 1.44, 1.45 sources, 1.44, 1.45 tomboy.spec, 1.116, 1.117 Message-ID: <20090701155459.488C211C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/tomboy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4009 Modified Files: .cvsignore sources tomboy.spec Log Message: 0.14.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/F-11/.cvsignore,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- .cvsignore 2 Jun 2009 03:14:52 -0000 1.44 +++ .cvsignore 1 Jul 2009 15:54:28 -0000 1.45 @@ -1 +1 @@ -tomboy-0.14.2.tar.bz2 +tomboy-0.14.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/F-11/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 2 Jun 2009 03:14:52 -0000 1.44 +++ sources 1 Jul 2009 15:54:29 -0000 1.45 @@ -1 +1 @@ -be86d6e1eb83e126cb7ad3fe52561e5c tomboy-0.14.2.tar.bz2 +90c3f930b8b47152315e486180869d93 tomboy-0.14.3.tar.bz2 Index: tomboy.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/F-11/tomboy.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- tomboy.spec 2 Jun 2009 03:14:52 -0000 1.116 +++ tomboy.spec 1 Jul 2009 15:54:29 -0000 1.117 @@ -1,5 +1,5 @@ Name: tomboy -Version: 0.14.2 +Version: 0.14.3 Release: 1%{?dist} Summary: Note-taking application @@ -144,6 +144,10 @@ fi %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 1 2009 Matthias Clasen - 0.14.3-1 +- Update to 0.14.3 +- See http://download.gnome.org/sources/tomboy/0.14/tomboy-0.14.3.news + * Mon Jun 1 2009 Matthias Clasen - 0.14.2-1 - Update to 0.14.2 - See http://download.gnome.org/sources/tomboy/0.14/tomboy-0.14.2.news From sgrubb at fedoraproject.org Wed Jul 1 15:57:06 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Wed, 1 Jul 2009 15:57:06 +0000 (UTC) Subject: rpms/amtu/F-11 amtu-1.0.7-makefile.patch, NONE, 1.1 amtu.spec, 1.24, 1.25 sources, 1.10, 1.11 Message-ID: <20090701155706.3806C11C02C3@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5354 Modified Files: amtu.spec sources Added Files: amtu-1.0.7-makefile.patch Log Message: * Wed Jul 01 2009 Steve Grubb 1.0.7-1 - new upstream version amtu-1.0.7-makefile.patch: --- NEW FILE amtu-1.0.7-makefile.patch --- diff -ur amtu-1.0.7.orig/configure.in amtu-1.0.7/configure.in --- amtu-1.0.7.orig/configure.in 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/configure.in 2009-07-01 11:05:07.000000000 -0400 @@ -1,19 +1,14 @@ -AC_REVISION($Revision: 1.2 $)dnl -# AC_CANONICAL_SYSTEM is deprecated in the latest version of AUTOMAKE. -# We aren't using the latest version so we'll keep using it -#AC_CANONICAL_TARGET -AC_INIT(src/amtu.c) +AC_REVISION($Revision: 1.3 $)dnl +AC_INIT(amtu,1.0.7) AC_PREREQ(2.12)dnl -AC_CONFIG_AUX_DIR(config) -AC_CONFIG_SRCDIR(src/amtu.c) AM_CONFIG_HEADER(config.h) -VERSION=1.0.6 -echo Configuring amtu $VERSION - -AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(amtu, $VERSION) +AC_CANONICAL_TARGET +AM_INIT_AUTOMAKE AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_AWK + case "$target" in i386-* | i486-* | i586-* | i686-*) AC_DEFINE(HAVE_I86,1,NULL);; powerpc-*) AC_DEFINE(HAVE_PPC,1,NULL);; @@ -25,3 +20,15 @@ AC_CHECK_LIB(laus, laus_open) AC_CHECK_LIB(audit, audit_open) AC_OUTPUT(Makefile src/Makefile doc/Makefile) + +echo . +echo " + + amtu: $VERSION + Target: $target + Installation prefix: $prefix + Compiler: $CC + Compiler flags: +`echo $CFLAGS | fmt -w 50 | sed 's,^, ,'` +" + diff -ur amtu-1.0.7.orig/doc/Makefile.am amtu-1.0.7/doc/Makefile.am --- amtu-1.0.7.orig/doc/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/doc/Makefile.am 2009-07-01 10:56:52.000000000 -0400 @@ -1 +1,3 @@ +CONFIG_CLEAN_FILES = *.rej *.orig +EXTRA_DIST = $(man_MANS) man_MANS = amtu.8 diff -ur amtu-1.0.7.orig/Makefile.am amtu-1.0.7/Makefile.am --- amtu-1.0.7.orig/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/Makefile.am 2009-07-01 10:36:48.000000000 -0400 @@ -1 +1,8 @@ SUBDIRS = src doc +EXTRA_DIST = bootstrap LICENSE CPLv1.0.htm README +CONFIG_CLEAN_FILES = debug*.list config/* + +clean-generic: + rm -rf autom4te*.cache + rm -f *.rej *.orig + diff -ur amtu-1.0.7.orig/src/Makefile.am amtu-1.0.7/src/Makefile.am --- amtu-1.0.7.orig/src/Makefile.am 2009-07-01 10:29:09.000000000 -0400 +++ amtu-1.0.7/src/Makefile.am 2009-07-01 10:55:44.000000000 -0400 @@ -1,3 +1,8 @@ -AM_CPPFLAGS = -Wall -W -Wfloat-equal -Wundef +CLEANFILES = $(BUILT_SOURCES) +CONFIG_CLEAN_FILES = *.loT *.rej *.orig +AM_CFLAGS = -Wall -W -Wfloat-equal -Wundef +INCLUDES = -I. -I${top_srcdir} +noinst_HEADERS = amtu.h bin_PROGRAMS = amtu amtu_SOURCES = amtu-i86.c amtu-ppc.c amtu-s390.c amtu-ia64.c amtu.c memory.c memsep.c iodisktest.c networkio.c +amtu_DEPENDENCIES = $(amtu_SOURCES) ${top_srcdir}/config.h Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/F-11/amtu.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- amtu.spec 24 Feb 2009 01:01:27 -0000 1.24 +++ amtu.spec 1 Jul 2009 15:57:05 -0000 1.25 @@ -1,11 +1,12 @@ Summary: Abstract Machine Test Utility (AMTU) Name: amtu -Version: 1.0.6 -Release: 4%{?dist} +Version: 1.0.7 +Release: 1%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/amtueal/ Source0: %{name}-%{version}.tar.gz +Patch1: amtu-1.0.7-makefile.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: audit-libs-devel >= 1.1.2 BuildRequires: automake @@ -22,19 +23,9 @@ http://www.radium.ncsc.mil/tpep/library/ %prep %setup -q +%patch1 -p1 %build -# Determine appropriate compiler -CC="gcc" -%ifarch ppc64 ppc64iseries ppc64pseries - CC="/usr/bin/ppc64-redhat-linux-gcc" -%endif -# Determine appropriate compiler flags -CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe" -%ifarch x86_64 - CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -Wall -pipe -m64" -%endif -export CC CFLAGS # next 3 items is to quieten autoreconf touch ChangeLog touch NEWS @@ -45,22 +36,21 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/%{_bindir} -install -m 0750 src/amtu $RPM_BUILD_ROOT/%{_bindir} - -mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man8/ -install -m 644 doc/amtu.8 $RPM_BUILD_ROOT/%{_mandir}/man8/amtu.8 +make "DESTDIR=${RPM_BUILD_ROOT}" install %clean rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root) +%defattr(-,root,root, -) %doc doc/AMTUHowTo.txt COPYING %attr(0750,root,root) %{_bindir}/amtu %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Wed Jul 01 2009 Steve Grubb 1.0.7-1 +- new upstream version + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/amtu/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 8 Dec 2007 18:15:14 -0000 1.10 +++ sources 1 Jul 2009 15:57:06 -0000 1.11 @@ -1 +1 @@ -9c65ae295bb875bb4aa8786e17a2f1e7 amtu-1.0.6.tar.gz +8858a47c667ffc4af840d72d8ced6605 amtu-1.0.7.tar.gz From mclasen at fedoraproject.org Wed Jul 1 15:57:49 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 15:57:49 +0000 (UTC) Subject: rpms/gnome-desktop/F-11 .cvsignore, 1.84, 1.85 gnome-desktop.spec, 1.215, 1.216 sources, 1.84, 1.85 Message-ID: <20090701155749.B035A11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-desktop/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5399 Modified Files: .cvsignore gnome-desktop.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/F-11/.cvsignore,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- .cvsignore 1 Jun 2009 17:42:57 -0000 1.84 +++ .cvsignore 1 Jul 2009 15:57:19 -0000 1.85 @@ -1 +1 @@ -gnome-desktop-2.26.2.tar.bz2 +gnome-desktop-2.26.3.tar.bz2 Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/F-11/gnome-desktop.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- gnome-desktop.spec 1 Jun 2009 17:54:38 -0000 1.215 +++ gnome-desktop.spec 1 Jul 2009 15:57:19 -0000 1.216 @@ -11,7 +11,7 @@ Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.26/%{name}-%{version}.tar.bz2 @@ -120,6 +120,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 +- Update to 2.26.3 +- http://download.gnome.org/sources/gnome-desktop/2.26/gnome-desktop-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen - 2.26.2-1 - Update to 2.26.2 - http://download.gnome.org/sources/gnome-desktop/2.26/gnome-desktop-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/F-11/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 1 Jun 2009 17:42:57 -0000 1.84 +++ sources 1 Jul 2009 15:57:19 -0000 1.85 @@ -1 +1 @@ -33d9653c05b328a5c4f90a8912451e9b gnome-desktop-2.26.2.tar.bz2 +1668dcedde64b30aa02f0a73e59c957d gnome-desktop-2.26.3.tar.bz2 From cweyl at fedoraproject.org Wed Jul 1 16:02:20 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Wed, 1 Jul 2009 16:02:20 +0000 (UTC) Subject: rpms/perl-Catalyst-Runtime/devel perl-Catalyst-Runtime.spec, 1.16, 1.17 Message-ID: <20090701160220.3F09311C02C3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Catalyst-Runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6535 Modified Files: perl-Catalyst-Runtime.spec Log Message: * Sun Jun 14 2009 Chris Weyl 5.80005-3 - flesh out to full requires list (from upstream metadata) - auto-update to 5.80005 (by cpan-spec-update 0.01) - added a new req on perl(Text::Balanced) (version 0) - added a new req on perl(HTTP::Response) (version 0) - added a new req on perl(LWP::UserAgent) (version 0) - added a new req on perl(Scalar::Util) (version 0) - added a new req on perl(CGI::Simple::Cookie) (version 0) - added a new req on perl(Class::C3::Adopt::NEXT) (version 0.07) - added a new req on perl(Class::MOP) (version 0.83) - added a new req on perl(Time::HiRes) (version 0) - added a new req on perl(MRO::Compat) (version 0) - added a new req on perl(File::Modified) (version 0) - added a new req on perl(HTTP::Headers) (version 1.64) - added a new req on perl(Sub::Exporter) (version 0) - added a new req on perl(Tree::Simple) (version 1.15) - added a new req on perl(B::Hooks::EndOfScope) (version 0.08) - added a new req on perl(namespace::clean) (version 0) - added a new req on perl(HTML::Entities) (version 0) - added a new req on perl(Moose) (version 0.78) - added a new req on perl(Data::Dump) (version 0) - added a new req on perl(Tree::Simple::Visitor::FindByPath) (version 0) - added a new req on perl(Module::Pluggable) (version 3.01) - added a new req on perl(Text::SimpleTable) (version 0.03) - altered req on perl(HTTP::Request::AsCGI) (0.5 => 0.8) - added a new req on perl(HTTP::Request) (version 0) - added a new req on perl(HTTP::Body) (version 1.04) - added a new req on perl(Path::Class) (version 0.09) - added a new req on perl(MooseX::MethodAttributes::Inheritable) (version 0.12) - added a new req on perl(URI) (version 1.35) - added a new req on perl(Carp) (version 0) Index: perl-Catalyst-Runtime.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Catalyst-Runtime/devel/perl-Catalyst-Runtime.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Catalyst-Runtime.spec 13 Jun 2009 06:48:33 -0000 1.16 +++ perl-Catalyst-Runtime.spec 1 Jul 2009 16:01:49 -0000 1.17 @@ -1,11 +1,10 @@ Name: perl-Catalyst-Runtime Version: 5.80005 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Catalyst core modules License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Catalyst-Runtime/ -# remember to rebuild perl-Catalyst-Devel on update of this package Source0: http://search.cpan.org/CPAN/authors/id/M/MR/MRAMBERG/Catalyst-Runtime-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -48,14 +47,6 @@ BuildRequires: perl(Test::Exception) # optional tests BuildRequires: perl(FCGI) -# use base ... -Requires: perl(Class::Accessor::Fast) -Requires: perl(Class::Data::Inheritable) -# 'requires' -Requires: perl(HTTP::Request::AsCGI) >= 0.5 -# with ... -Requires: perl(MooseX::Emulate::Class::Accessor::Fast) >= 0.00801 - # until bundles M::I is updated BuildRequires: perl(CPAN) @@ -75,6 +66,39 @@ BuildRequires: perl(Class::C3::Adopt::N BuildRequires: perl(Test::MockObject) >= 1.07 BuildRequires: perl(MooseX::Emulate::Class::Accessor::Fast) >= 0.00801 +### Requires (from upstream metadata) +Requires: perl(B::Hooks::EndOfScope) >= 0.08 +Requires: perl(CGI::Simple::Cookie) +Requires: perl(Carp) +Requires: perl(Class::Accessor::Fast) +Requires: perl(Class::Data::Inheritable) +Requires: perl(Class::C3::Adopt::NEXT) >= 0.07 +Requires: perl(Class::MOP) >= 0.83 +Requires: perl(Data::Dump) +Requires: perl(File::Modified) +Requires: perl(HTML::Entities) +Requires: perl(HTTP::Body) >= 1.04 +Requires: perl(HTTP::Headers) >= 1.64 +Requires: perl(HTTP::Request) +Requires: perl(HTTP::Request::AsCGI) >= 0.8 +Requires: perl(HTTP::Response) +Requires: perl(LWP::UserAgent) +Requires: perl(MRO::Compat) +Requires: perl(Module::Pluggable) >= 3.01 +Requires: perl(Moose) >= 0.78 +Requires: perl(MooseX::MethodAttributes::Inheritable) >= 0.12 +Requires: perl(MooseX::Emulate::Class::Accessor::Fast) >= 0.00801 +Requires: perl(Path::Class) >= 0.09 +Requires: perl(Scalar::Util) +Requires: perl(Sub::Exporter) +Requires: perl(Text::Balanced) +Requires: perl(Text::SimpleTable) >= 0.03 +Requires: perl(Time::HiRes) +Requires: perl(Tree::Simple) >= 1.15 +Requires: perl(Tree::Simple::Visitor::FindByPath) +Requires: perl(URI) >= 1.35 +Requires: perl(namespace::clean) + # neither provide nor require things we shouldn't %global _use_internal_dependency_generator 0 %global __deploop() while read FILE; do /usr/lib/rpm/rpmdeps -%{1} ${FILE}; done | /bin/sort -u @@ -153,6 +177,38 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Sun Jun 14 2009 Chris Weyl 5.80005-3 +- flesh out to full requires list (from upstream metadata) +- auto-update to 5.80005 (by cpan-spec-update 0.01) +- added a new req on perl(Text::Balanced) (version 0) +- added a new req on perl(HTTP::Response) (version 0) +- added a new req on perl(LWP::UserAgent) (version 0) +- added a new req on perl(Scalar::Util) (version 0) +- added a new req on perl(CGI::Simple::Cookie) (version 0) +- added a new req on perl(Class::C3::Adopt::NEXT) (version 0.07) +- added a new req on perl(Class::MOP) (version 0.83) +- added a new req on perl(Time::HiRes) (version 0) +- added a new req on perl(MRO::Compat) (version 0) +- added a new req on perl(File::Modified) (version 0) +- added a new req on perl(HTTP::Headers) (version 1.64) +- added a new req on perl(Sub::Exporter) (version 0) +- added a new req on perl(Tree::Simple) (version 1.15) +- added a new req on perl(B::Hooks::EndOfScope) (version 0.08) +- added a new req on perl(namespace::clean) (version 0) +- added a new req on perl(HTML::Entities) (version 0) +- added a new req on perl(Moose) (version 0.78) +- added a new req on perl(Data::Dump) (version 0) +- added a new req on perl(Tree::Simple::Visitor::FindByPath) (version 0) +- added a new req on perl(Module::Pluggable) (version 3.01) +- added a new req on perl(Text::SimpleTable) (version 0.03) +- altered req on perl(HTTP::Request::AsCGI) (0.5 => 0.8) +- added a new req on perl(HTTP::Request) (version 0) +- added a new req on perl(HTTP::Body) (version 1.04) +- added a new req on perl(Path::Class) (version 0.09) +- added a new req on perl(MooseX::MethodAttributes::Inheritable) (version 0.12) +- added a new req on perl(URI) (version 1.35) +- added a new req on perl(Carp) (version 0) + * Sat Jun 13 2009 Iain Arnell 5.80005-2 - requires perl(MooseX::Emulate::Class::Accessor::Fast) From mclasen at fedoraproject.org Wed Jul 1 16:04:21 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 16:04:21 +0000 (UTC) Subject: rpms/gnome-games/F-11 .cvsignore, 1.98, 1.99 gnome-games.spec, 1.208, 1.209 sources, 1.103, 1.104 Message-ID: <20090701160421.2047211C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6761 Modified Files: .cvsignore gnome-games.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/F-11/.cvsignore,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- .cvsignore 1 Jun 2009 17:52:01 -0000 1.98 +++ .cvsignore 1 Jul 2009 16:03:50 -0000 1.99 @@ -1 +1 @@ -gnome-games-2.26.2.tar.bz2 +gnome-games-2.26.3.tar.bz2 Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/F-11/gnome-games.spec,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- gnome-games.spec 1 Jun 2009 17:52:01 -0000 1.208 +++ gnome-games.spec 1 Jul 2009 16:03:50 -0000 1.209 @@ -43,7 +43,7 @@ Summary: Games for the GNOME desktop Name: gnome-games -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL @@ -355,6 +355,10 @@ fi %{_datadir}/omf/* %changelog +* Wed Jul 1 2009 Matthias Clasen - 1:2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/gnome-games/2.26/gnome-games-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen - 1:2.26.2-1 - Update to 2.26.2 - See http://download.gnome.org/sources/gnome-games/2.26/gnome-games-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/F-11/sources,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- sources 1 Jun 2009 17:52:01 -0000 1.103 +++ sources 1 Jul 2009 16:03:50 -0000 1.104 @@ -1 +1 @@ -d43a84c1b5c6c5566c575cbf83d5fac4 gnome-games-2.26.2.tar.bz2 +32c69a25671d8d23b19f234efcc177ca gnome-games-2.26.3.tar.bz2 From palango at fedoraproject.org Wed Jul 1 16:07:55 2009 From: palango at fedoraproject.org (palango) Date: Wed, 1 Jul 2009 16:07:55 +0000 (UTC) Subject: rpms/flickrnet/F-11 flickrnet.pc,1.2,1.3 flickrnet.spec,1.3,1.4 Message-ID: <20090701160755.577BA11C02C3@cvs1.fedora.phx.redhat.com> Author: palango Update of /cvs/pkgs/rpms/flickrnet/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7802 Modified Files: flickrnet.pc flickrnet.spec Log Message: Finally fix libdir issue Index: flickrnet.pc =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/F-11/flickrnet.pc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- flickrnet.pc 26 Jun 2009 15:38:32 -0000 1.2 +++ flickrnet.pc 1 Jul 2009 16:07:25 -0000 1.3 @@ -1,4 +1,4 @@ -libdir=${libdir} +libdir=@LIBDIR@ assemblies_dir=\${libdir}/mono/flickrnet Libraries=\${assemblies_dir}/FlickrNet.dll Index: flickrnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/F-11/flickrnet.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- flickrnet.spec 26 Jun 2009 15:38:32 -0000 1.3 +++ flickrnet.spec 1 Jul 2009 16:07:25 -0000 1.4 @@ -2,7 +2,7 @@ Name: flickrnet Version: 2.1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: .NET library to interact with the Flickr API Group: Development/Libraries License: LGPLv2 @@ -36,6 +36,8 @@ The %{name}-devel package contains devel cd FlickrNet %patch0 -p1 +sed -i 's|@LIBDIR@|%{_libdir}|g' %{SOURCE1} + %build cd FlickrNet gmcs -debug -target:library -out:FlickrNet.dll -r:System.Web.dll -r:System.Drawing.dll *.cs @@ -60,6 +62,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Wed Jul 01 2009 Paul Lange - 2.1.5-4 +- Finally fix x86_64 + * Thu Jun 25 2009 Juan Rodriguez - 2.1.5-3 - Fix libdir on x86_64 From rdieter at fedoraproject.org Wed Jul 1 16:09:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 16:09:42 +0000 (UTC) Subject: rpms/eigen2/devel eigen2.spec,1.17,1.18 Message-ID: <20090701160942.9B39111C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/eigen2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8210 Modified Files: eigen2.spec Log Message: snapshots currently have known ctest failures Index: eigen2.spec =================================================================== RCS file: /cvs/pkgs/rpms/eigen2/devel/eigen2.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- eigen2.spec 25 Jun 2009 02:57:20 -0000 1.17 +++ eigen2.spec 1 Jul 2009 16:09:12 -0000 1.18 @@ -38,7 +38,7 @@ BuildRequires: blas-devel BuildRequires: gsl-devel # can't use until undefined symbols are fixed: http://bugzilla.redhat.com/475411 %if 0%{?fedora} > 10 -#BuildRequires: suitesparse-devel +BuildRequires: suitesparse-devel %endif BuildRequires: qt4-devel #-- Could NOT find TAUCS (missing: TAUCS_INCLUDES TAUCS_LIBRARIES) @@ -85,7 +85,7 @@ make install DESTDIR=%{buildroot} -C %{_ %check %if 0%{?_with_check:1} -( cd %{_target_platform}/test; ctest ) +( cd %{_target_platform}/test && ctest %{?snap:||:} ) %endif From mclasen at fedoraproject.org Wed Jul 1 16:46:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 16:46:18 +0000 (UTC) Subject: rpms/brasero/F-11 .cvsignore, 1.21, 1.22 brasero.spec, 1.47, 1.48 sources, 1.21, 1.22 Message-ID: <20090701164618.EB8DF11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15930 Modified Files: .cvsignore brasero.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/brasero/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 1 Jun 2009 16:32:33 -0000 1.21 +++ .cvsignore 1 Jul 2009 16:45:48 -0000 1.22 @@ -1 +1 @@ -brasero-2.26.2.tar.bz2 +brasero-2.26.3.tar.bz2 Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/F-11/brasero.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- brasero.spec 1 Jun 2009 16:32:33 -0000 1.47 +++ brasero.spec 1 Jul 2009 16:45:48 -0000 1.48 @@ -1,6 +1,6 @@ Name: brasero -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} Summary: Gnome CD/DVD burning application Group: Applications/Multimedia @@ -204,6 +204,10 @@ fi %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/brasero/2.26/brasero-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen - 2.26.2-1 - Update to 2.26.2 - See http://download.gnome.org/sources/brasero/2.26/brasero-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/brasero/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 1 Jun 2009 16:32:33 -0000 1.21 +++ sources 1 Jul 2009 16:45:48 -0000 1.22 @@ -1 +1 @@ -328d24701d178ee13971efb28cd3dc35 brasero-2.26.2.tar.bz2 +edf1b2b489a4686b84674dc7dbbd8130 brasero-2.26.3.tar.bz2 From mclasen at fedoraproject.org Wed Jul 1 16:49:28 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 16:49:28 +0000 (UTC) Subject: rpms/gnome-session/F-11 .cvsignore, 1.75, 1.76 gnome-session.spec, 1.233, 1.234 sources, 1.79, 1.80 Message-ID: <20090701164928.B0B3D11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16854 Modified Files: .cvsignore gnome-session.spec sources Log Message: 2.26.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/F-11/.cvsignore,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- .cvsignore 14 Apr 2009 17:11:55 -0000 1.75 +++ .cvsignore 1 Jul 2009 16:48:58 -0000 1.76 @@ -1 +1 @@ -gnome-session-2.26.1.tar.bz2 +gnome-session-2.26.2.tar.bz2 Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/F-11/gnome-session.spec,v retrieving revision 1.233 retrieving revision 1.234 diff -u -p -r1.233 -r1.234 --- gnome-session.spec 14 Apr 2009 17:11:55 -0000 1.233 +++ gnome-session.spec 1 Jul 2009 16:48:58 -0000 1.234 @@ -9,7 +9,7 @@ Summary: GNOME session manager Name: gnome-session -Version: 2.26.1 +Version: 2.26.2 Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-session/2.26/%{name}-%{version}.tar.bz2 @@ -175,6 +175,9 @@ fi %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.26.2-1 +- Update to 2.26.2 +- See http://download.gnome.org/sources/gnome-session/2.26/gnome-session-2.26.2.news * Tue Apr 14 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 - See http://download.gnome.org/sources/gnome-session/2.26/gnome-session-2.26.1.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/F-11/sources,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- sources 14 Apr 2009 17:11:55 -0000 1.79 +++ sources 1 Jul 2009 16:48:58 -0000 1.80 @@ -1 +1 @@ -aa280939a3e07209081095e8e10fe619 gnome-session-2.26.1.tar.bz2 +2cc3ff808592d95c3b364d608e99dea4 gnome-session-2.26.2.tar.bz2 From rdieter at fedoraproject.org Wed Jul 1 16:52:22 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 1 Jul 2009 16:52:22 +0000 (UTC) Subject: rpms/eigen2/devel eigen2-pkgconfig_noarch.patch, NONE, 1.1 eigen2.spec, 1.18, 1.19 Message-ID: <20090701165222.E269F11C02C3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/eigen2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17687 Modified Files: eigen2.spec Added Files: eigen2-pkgconfig_noarch.patch Log Message: add some pkgconfig love eigen2-pkgconfig_noarch.patch: --- NEW FILE eigen2-pkgconfig_noarch.patch --- diff -up eigen2/CMakeLists.txt.pkgconfig_noarch eigen2/CMakeLists.txt --- eigen2/CMakeLists.txt.pkgconfig_noarch 2009-06-22 03:44:09.000000000 -0500 +++ eigen2/CMakeLists.txt 2009-07-01 11:50:50.590919637 -0500 @@ -114,7 +114,7 @@ set(INCLUDE_INSTALL_DIR if(EIGEN_BUILD_PKGCONFIG) configure_file(eigen2.pc.in eigen2.pc) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/eigen2.pc - DESTINATION lib/pkgconfig + DESTINATION share/pkgconfig ) endif(EIGEN_BUILD_PKGCONFIG) Index: eigen2.spec =================================================================== RCS file: /cvs/pkgs/rpms/eigen2/devel/eigen2.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- eigen2.spec 1 Jul 2009 16:09:12 -0000 1.18 +++ eigen2.spec 1 Jul 2009 16:51:52 -0000 1.19 @@ -22,7 +22,11 @@ Source0: http://bitbucket.org/eigen/eige BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch +## upstreamable patches +Patch50: eigen2-pkgconfig_noarch.patch + BuildRequires: cmake +BuildRequires: pkgconfig #docs BuildRequires: doxygen graphviz @@ -54,6 +58,7 @@ Summary: A lightweight C++ template libr Group: Development/Libraries # -devel subpkg only atm, compat with other distros Provides: %{name} = %{version}-%{release} +Requires: pkgconfig %description devel %{summary} @@ -61,6 +66,8 @@ Provides: %{name} = %{version}-%{release %prep %setup -q -n eigen2%{!?snap:-%{version}} +%patch50 -p1 -b .pkgconfig_noarch + %build @@ -98,6 +105,7 @@ rm -rf %{buildroot} %doc COPYING COPYING.LESSER %doc html/ %{_includedir}/eigen2/ +%{_datadir}/pkgconfig/eigen2.pc %changelog From pkgdb at fedoraproject.org Wed Jul 1 16:59:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:04 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165904.90B4110F896@bastion2.fedora.phx.redhat.com> dhavalgiani has set the watchbugzilla acl on libcgroup (Fedora devel) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:04 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165904.A79F710F899@bastion2.fedora.phx.redhat.com> dhavalgiani has set the watchcommits acl on libcgroup (Fedora devel) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:06 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165907.9DCB310F80A@bastion2.fedora.phx.redhat.com> dhavalgiani has set the commit acl on libcgroup (Fedora devel) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:08 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165909.0A14C10F8AA@bastion2.fedora.phx.redhat.com> dhavalgiani has set the approveacls acl on libcgroup (Fedora devel) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From mclasen at fedoraproject.org Wed Jul 1 16:59:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 16:59:22 +0000 (UTC) Subject: rpms/epiphany/F-11 .cvsignore, 1.81, 1.82 epiphany.spec, 1.229, 1.230 sources, 1.84, 1.85 Message-ID: <20090701165922.1C2C811C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20052 Modified Files: .cvsignore epiphany.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-11/.cvsignore,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- .cvsignore 1 Jun 2009 16:55:38 -0000 1.81 +++ .cvsignore 1 Jul 2009 16:58:51 -0000 1.82 @@ -1 +1 @@ -epiphany-2.26.2.tar.bz2 +epiphany-2.26.3.tar.bz2 Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-11/epiphany.spec,v retrieving revision 1.229 retrieving revision 1.230 diff -u -p -r1.229 -r1.230 --- epiphany.spec 30 Jun 2009 18:55:00 -0000 1.229 +++ epiphany.spec 1 Jul 2009 16:58:51 -0000 1.230 @@ -7,8 +7,8 @@ Summary: Web browser for GNOME Name: epiphany -Version: 2.26.2 -Release: 2%{?dist} +Version: 2.26.3 +Release: 1%{?dist} %define major_version 2.26 Provides: epiphany(abi) = %{major_version} License: GPLv2+ and GFDL @@ -255,6 +255,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/epiphany.defs %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/epiphany/2.26/epiphany-2.26.3.changes + * Tue Jun 30 2009 Christopher Aillon - 2.26.2-2 - Rebuild against newer gecko Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-11/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 1 Jun 2009 16:55:39 -0000 1.84 +++ sources 1 Jul 2009 16:58:51 -0000 1.85 @@ -1 +1 @@ -29c23cfb0a5713b53255a9ca652192c1 epiphany-2.26.2.tar.bz2 +16f44012bc376077e1443e049d725847 epiphany-2.26.3.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 1 16:59:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:36 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165936.8AACA10F899@bastion2.fedora.phx.redhat.com> dhavalgiani has set the watchbugzilla acl on libcgroup (Fedora 11) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:37 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165937.B177110F8A4@bastion2.fedora.phx.redhat.com> dhavalgiani has set the watchcommits acl on libcgroup (Fedora 11) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:38 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165938.74E2310F8A9@bastion2.fedora.phx.redhat.com> dhavalgiani has set the commit acl on libcgroup (Fedora 11) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From pkgdb at fedoraproject.org Wed Jul 1 16:59:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 16:59:41 +0000 Subject: [pkgdb] libcgroup had acl change status Message-ID: <20090701165941.DBBE110F8AF@bastion2.fedora.phx.redhat.com> dhavalgiani has set the approveacls acl on libcgroup (Fedora 11) to Approved for jsafrane To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcgroup From mclasen at fedoraproject.org Wed Jul 1 17:06:37 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 17:06:37 +0000 (UTC) Subject: rpms/gnome-session/F-11 gnome-session.spec,1.234,1.235 Message-ID: <20090701170637.33C7D11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21185 Modified Files: gnome-session.spec Log Message: fix build Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/F-11/gnome-session.spec,v retrieving revision 1.234 retrieving revision 1.235 diff -u -p -r1.234 -r1.235 --- gnome-session.spec 1 Jul 2009 16:48:58 -0000 1.234 +++ gnome-session.spec 1 Jul 2009 17:06:06 -0000 1.235 @@ -81,10 +81,6 @@ Desktop file to add GNOME to display man #workaround broken perl-XML-Parser on 64bit arches export PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.2 perl -sed -i -e 's/GNOME_COMPILE_WARNINGS.*//' configure.in - -autoreconf -i -f - %build %configure --enable-docbook-docs --docdir=%{_datadir}/doc/%{name}-%{version} From pkgdb at fedoraproject.org Wed Jul 1 17:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:11:32 +0000 Subject: [pkgdb] perl-Array-Compare EL-5 cloned from devel Message-ID: <20090701171132.97D8B10F88E@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From pkgdb at fedoraproject.org Wed Jul 1 17:11:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:11:33 +0000 Subject: [pkgdb] perl-Test-Cmd EL-5 cloned from devel Message-ID: <20090701171133.C4CC810F898@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Wed Jul 1 17:11:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:11:38 +0000 Subject: [pkgdb] perl-Tree-DAG_Node EL-5 cloned from devel Message-ID: <20090701171138.5223F10F8A6@bastion2.fedora.phx.redhat.com> ausil cloned perl-Tree-DAG_Node EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tree-DAG_Node From pkgdb at fedoraproject.org Wed Jul 1 17:11:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:11:36 +0000 Subject: [pkgdb] perl-Test-Warn EL-5 cloned from devel Message-ID: <20090701171137.10E3D10F8A2@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Warn EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Warn From pkgdb at fedoraproject.org Wed Jul 1 17:12:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:12:53 +0000 Subject: [pkgdb] perl-Tree-DAG_Node EL-5 cloned from devel Message-ID: <20090701171253.CEB0D10F8A7@bastion2.fedora.phx.redhat.com> ausil cloned perl-Tree-DAG_Node EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tree-DAG_Node From pkgdb at fedoraproject.org Wed Jul 1 17:12:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:12:52 +0000 Subject: [pkgdb] perl-Test-Warn EL-5 cloned from devel Message-ID: <20090701171252.48B2010F8A3@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Warn EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Warn From pkgdb at fedoraproject.org Wed Jul 1 17:12:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:12:55 +0000 Subject: [pkgdb] php-pear-Structures-DataGrid EL-5 cloned from devel Message-ID: <20090701171255.9524810F8AA@bastion2.fedora.phx.redhat.com> ausil cloned php-pear-Structures-DataGrid EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Structures-DataGrid From pkgdb at fedoraproject.org Wed Jul 1 17:13:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:13:28 +0000 Subject: [pkgdb] perl-Array-Compare EL-5 cloned from devel Message-ID: <20090701171328.C70EC10F898@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From pkgdb at fedoraproject.org Wed Jul 1 17:13:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:13:30 +0000 Subject: [pkgdb] perl-Test-Cmd EL-5 cloned from devel Message-ID: <20090701171330.91AD210F8A2@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Wed Jul 1 17:13:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:13:32 +0000 Subject: [pkgdb] perl-Test-Warn EL-5 cloned from devel Message-ID: <20090701171332.2234A10F8A7@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Warn EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Warn From pkgdb at fedoraproject.org Wed Jul 1 17:13:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:13:34 +0000 Subject: [pkgdb] perl-Tree-DAG_Node EL-5 cloned from devel Message-ID: <20090701171334.CE0C510F8A9@bastion2.fedora.phx.redhat.com> ausil cloned perl-Tree-DAG_Node EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tree-DAG_Node From pkgdb at fedoraproject.org Wed Jul 1 17:13:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:13:36 +0000 Subject: [pkgdb] php-pear-Structures-DataGrid EL-5 cloned from devel Message-ID: <20090701171336.8DBB810F8B1@bastion2.fedora.phx.redhat.com> ausil cloned php-pear-Structures-DataGrid EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Structures-DataGrid From pkgdb at fedoraproject.org Wed Jul 1 17:14:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:14:13 +0000 Subject: [pkgdb] perl-Array-Compare EL-5 cloned from devel Message-ID: <20090701171413.7428A10F89C@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From pkgdb at fedoraproject.org Wed Jul 1 17:14:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:14:14 +0000 Subject: [pkgdb] perl-Test-Cmd EL-5 cloned from devel Message-ID: <20090701171414.F2DED10F8AE@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Wed Jul 1 17:14:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:14:15 +0000 Subject: [pkgdb] perl-Test-Warn EL-5 cloned from devel Message-ID: <20090701171415.F1CC210F8B4@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Warn EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Warn From pkgdb at fedoraproject.org Wed Jul 1 17:14:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:14:17 +0000 Subject: [pkgdb] perl-Tree-DAG_Node EL-5 cloned from devel Message-ID: <20090701171417.62BFC10F8B7@bastion2.fedora.phx.redhat.com> ausil cloned perl-Tree-DAG_Node EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Tree-DAG_Node From pkgdb at fedoraproject.org Wed Jul 1 17:14:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:14:18 +0000 Subject: [pkgdb] php-pear-Structures-DataGrid EL-5 cloned from devel Message-ID: <20090701171418.C900910F8BA@bastion2.fedora.phx.redhat.com> ausil cloned php-pear-Structures-DataGrid EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Structures-DataGrid From hguemar at fedoraproject.org Wed Jul 1 17:17:05 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 1 Jul 2009 17:17:05 +0000 (UTC) Subject: rpms/listen/devel .cvsignore, 1.6, 1.7 listen.spec, 1.38, 1.39 sources, 1.8, 1.9 Message-ID: <20090701171705.F267B11C02C3@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23753 Modified Files: .cvsignore listen.spec sources Log Message: Update to 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/listen/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 9 Apr 2007 12:32:22 -0000 1.6 +++ .cvsignore 1 Jul 2009 17:16:35 -0000 1.7 @@ -1 +1 @@ -listen-0.5.tar.bz2 +listen-0.6.2.tar.gz Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/devel/listen.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- listen.spec 25 Feb 2009 20:38:49 -0000 1.38 +++ listen.spec 1 Jul 2009 17:16:35 -0000 1.39 @@ -1,128 +1,97 @@ Name: listen -Version: 0.5 -Release: 22%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ -URL: http://listengnome.free.fr -Source0: %{name}-%{version}.tar.bz2 -Patch0: %{name}-gecko.patch -Patch1: %{name}-dbus.patch -BuildRoot: %{_tmppath}/%{name}-%{real_name}-root-%(%{__id_u} -n) +URL: http://www.listen-project.org +Source0: http://www.listen-project.org/downloads/0.6/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Buildrequires: python-devel >= 2.4 + +Buildrequires: python-devel >= 2.5 BuildRequires: python-mutagen >= 1.8 -BuildRequires: python-sqlite2 BuildRequires: dbus-python +#Buildrequires: pkgconfig BuildRequires: pygtk2-devel >= 2.8 BuildRequires: gtk2-devel >= 2.8 BuildRequires: gstreamer-python -BuildRequires: gnome-python2 -BuildRequires: gnome-python2-extras -BuildRequires: gnome-python2-gtkhtml2 -BuildRequires: gnome-python2-gtkmozembed +#BuildRequires: gnome-python2 +#BuildRequires: gnome-python2-extras BuildRequires: gnome-python2-libegg +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else +Requires: gnome-python2-gtkmozembed +%endif BuildRequires: python-sexy -Buildrequires: xorg-x11-server-Xvfb -Buildrequires: xorg-x11-xauth -Buildrequires: xorg-x11-fonts-base -Buildrequires: xorg-x11-fonts-misc Buildrequires: docbook2X Buildrequires: intltool >= 0.35 BuildRequires: gettext -Buildrequires: pkgconfig BuildRequires: desktop-file-utils + + Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig - # added explicit Requires -Requires: python >= 2.4 +Requires: python >= 2.5 Requires: python-mutagen >= 1.8 -Requires: python-sqlite2 Requires: python-tunepimp Requires: dbus-python Requires: pygtk2 >= 2.8 Requires: gstreamer-python -Requires: gnome-python2 +#Requires: gnome-python2 +#Requires: gnome-python2-extras +Requires: gnome-python2-libegg Requires: gnome-python2-canvas -Requires: gnome-python2-extras -Requires: gnome-python2-gtkhtml2 +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else Requires: gnome-python2-gtkmozembed -Requires: gnome-python2-libegg +Requires: gecko-libs >= 1.9 +%endif Requires: python-sexy # MusicBrainz support Requires: python-musicbrainz2 -# broken and useless dependency -#Requires: /usr/lib/libtunepimp.so.5 Requires: /usr/bin/puid -# optional requires an updated libgpod package from Core -#Requires: python-libgpod +# enable cd burning +Requires: brasero +# enable iPod support +Requires: python-gpod + -# the workaround requires this -Requires: gecko-libs >= 1.9 -%ifarch x86_64 ia64 ppc64 s390x sparc64 -%define gre_conf_file gre64.conf -%else -%define gre_conf_file gre.conf -%endif %description -Listen is a music manager and player for GNOME -With listen you can: -* Play your favorite songs -* Manage your library -* Manage your ipod -* Make playlists -* Automatically or manually download album covers -* Automatically synchronize album covers with iPod -* Easily burn an audio CD -* Directly get informations from wikipedia when you play a song -* See the lyrics of a song -* Have statistics about your favorite songs, albums or artists -* Listen to web radio -* Submit your songs to Audioscrobbler -* Quick access to last.fm related file -With listen you will be able to: - * Listen And Rip Audio CDs - * Browse and listen songs on a DAAP share - * Share you library via a DAAP share - * Fill metadata with musicbrainz - * Make smart playlists +Listen is an intuitive music player for GNOME written in Python. +Thanks to it, you can easily organize your music collection. +It supports many features such as podcats, daap sharing, crossfades, +access to lyrics and wikipedia, sync with media players, Jamendo etc... +Listen can be extended with plugins. %prep %setup -q -n %{name}-%{version} -%{__sed} -i 's/Comment=Listen /Comment=Listen to/' misc/listen.desktop -%{__sed} -i 's/python2.4/python/' src/listen.py -%patch0 -p0 -%patch1 -p0 -%{__sed} -i 's at GRE_CONF_FILE@/etc/gre.d/%{gre_conf_file}@' src/widget/mozembed_wrap.py +# mandatory to build inside mock +%{__sed} -i 's#CHECK_DEPENDS ?= 1#CHECK_DEPENDS ?= 0#' Makefile # correct path issue on x86_64 box %ifarch x86_64 ppc64 sparc64 -%{__sed} -i 's#/lib/#/lib64/#' Makefile + %{__sed} -i 's#/lib#/lib64#' Makefile %endif - %build -# (misc) for import gtk, as gtk requires a X server to be imported -XDISPLAY=$(i=2; while [ -f /tmp/.X$i-lock ]; do i=$(($i+1)); done; echo $i) -# added - nolisten tcp -ac -terminate to fix build issue with mock -%{_prefix}/bin/Xvfb :$XDISPLAY -nolisten tcp -ac -terminate & -export DISPLAY=:$XDISPLAY -xauth add :$XDISPLAY . EE make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/listen.py -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/mmkeys.so +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +chmod +x %{buildroot}/%{_libdir}/%{name}/listen +chmod +x %{buildroot}/%{_libdir}/%{name}/mmkeys.so # fixed rights of trackedit.glade thanks to Martin Sourada -chmod 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/trackedit.glade +chmod 644 %{buildroot}/%{_datadir}/%{name}/trackedit.glade desktop-file-install --vendor fedora --delete-original \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ + --dir %{buildroot}/%{_datadir}/applications \ --add-category X-Fedora \ --remove-mime-type audio/mp3 \ --remove-mime-type audio/x-mp3 \ @@ -131,11 +100,11 @@ desktop-file-install --vendor fedora --d --remove-mime-type audio/mpeg3 \ --remove-mime-type audio/x-mpeg-3 \ --remove-mime-type application/x-id3 \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + %{buildroot}/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post -p /sbin/ldconfig @@ -156,6 +125,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 +- updated to 0.6.2 +- fixed website url +- removed the now useless Xvfb hack +- Use pywebkitgtk instead of gnome-python2-gtkmozembed for fedora >= 11 +- refreshed some bits in spec + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/listen/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 9 Apr 2007 13:03:11 -0000 1.8 +++ sources 1 Jul 2009 17:16:35 -0000 1.9 @@ -1 +1 @@ -63fd29c927c455f84fbf5bf3f8dba2a5 listen-0.5.tar.bz2 +d5b039a1679246ab6224a4aefe16e1be listen-0.6.2.tar.gz From pkgdb at fedoraproject.org Wed Jul 1 17:22:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:22:53 +0000 Subject: [pkgdb] perl-Array-Compare EL-4 cloned from devel Message-ID: <20090701172253.2E54B10F896@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From pkgdb at fedoraproject.org Wed Jul 1 17:22:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:22:55 +0000 Subject: [pkgdb] perl-Test-Cmd EL-4 cloned from devel Message-ID: <20090701172255.1C86010F899@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Wed Jul 1 17:22:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:22:56 +0000 Subject: [pkgdb] php-eaccelerator EL-4 cloned from devel Message-ID: <20090701172256.BFC9F10F8A2@bastion2.fedora.phx.redhat.com> ausil cloned php-eaccelerator EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Wed Jul 1 17:22:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:22:58 +0000 Subject: [pkgdb] php-extras EL-4 cloned from devel Message-ID: <20090701172259.09E3710F8A7@bastion2.fedora.phx.redhat.com> ausil cloned php-extras EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-extras From pkgdb at fedoraproject.org Wed Jul 1 17:23:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:23:00 +0000 Subject: [pkgdb] php-idn EL-4 cloned from devel Message-ID: <20090701172300.D439610F8AB@bastion2.fedora.phx.redhat.com> ausil cloned php-idn EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-idn From pkgdb at fedoraproject.org Wed Jul 1 17:23:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:23:02 +0000 Subject: [pkgdb] phpldapadmin EL-4 cloned from devel Message-ID: <20090701172302.2A37F10F8AF@bastion2.fedora.phx.redhat.com> ausil cloned phpldapadmin EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpldapadmin From pkgdb at fedoraproject.org Wed Jul 1 17:12:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:12:50 +0000 Subject: [pkgdb] perl-Test-Cmd EL-5 cloned from devel Message-ID: <20090701171250.6D10610F899@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Wed Jul 1 17:12:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 17:12:48 +0000 Subject: [pkgdb] perl-Array-Compare EL-5 cloned from devel Message-ID: <20090701171249.23DF410F893@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-5 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From hguemar at fedoraproject.org Wed Jul 1 17:27:37 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 1 Jul 2009 17:27:37 +0000 (UTC) Subject: rpms/listen/F-11 .cvsignore, 1.6, 1.7 listen.spec, 1.38, 1.39 sources, 1.8, 1.9 Message-ID: <20090701172737.3F73B11C02C3@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25804 Modified Files: .cvsignore listen.spec sources Log Message: Update to 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 9 Apr 2007 12:32:22 -0000 1.6 +++ .cvsignore 1 Jul 2009 17:27:06 -0000 1.7 @@ -1 +1 @@ -listen-0.5.tar.bz2 +listen-0.6.2.tar.gz Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-11/listen.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- listen.spec 25 Feb 2009 20:38:49 -0000 1.38 +++ listen.spec 1 Jul 2009 17:27:07 -0000 1.39 @@ -1,128 +1,97 @@ Name: listen -Version: 0.5 -Release: 22%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ -URL: http://listengnome.free.fr -Source0: %{name}-%{version}.tar.bz2 -Patch0: %{name}-gecko.patch -Patch1: %{name}-dbus.patch -BuildRoot: %{_tmppath}/%{name}-%{real_name}-root-%(%{__id_u} -n) +URL: http://www.listen-project.org +Source0: http://www.listen-project.org/downloads/0.6/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Buildrequires: python-devel >= 2.4 + +Buildrequires: python-devel >= 2.5 BuildRequires: python-mutagen >= 1.8 -BuildRequires: python-sqlite2 BuildRequires: dbus-python +#Buildrequires: pkgconfig BuildRequires: pygtk2-devel >= 2.8 BuildRequires: gtk2-devel >= 2.8 BuildRequires: gstreamer-python -BuildRequires: gnome-python2 -BuildRequires: gnome-python2-extras -BuildRequires: gnome-python2-gtkhtml2 -BuildRequires: gnome-python2-gtkmozembed +#BuildRequires: gnome-python2 +#BuildRequires: gnome-python2-extras BuildRequires: gnome-python2-libegg +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else +Requires: gnome-python2-gtkmozembed +%endif BuildRequires: python-sexy -Buildrequires: xorg-x11-server-Xvfb -Buildrequires: xorg-x11-xauth -Buildrequires: xorg-x11-fonts-base -Buildrequires: xorg-x11-fonts-misc Buildrequires: docbook2X Buildrequires: intltool >= 0.35 BuildRequires: gettext -Buildrequires: pkgconfig BuildRequires: desktop-file-utils + + Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig - # added explicit Requires -Requires: python >= 2.4 +Requires: python >= 2.5 Requires: python-mutagen >= 1.8 -Requires: python-sqlite2 Requires: python-tunepimp Requires: dbus-python Requires: pygtk2 >= 2.8 Requires: gstreamer-python -Requires: gnome-python2 +#Requires: gnome-python2 +#Requires: gnome-python2-extras +Requires: gnome-python2-libegg Requires: gnome-python2-canvas -Requires: gnome-python2-extras -Requires: gnome-python2-gtkhtml2 +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else Requires: gnome-python2-gtkmozembed -Requires: gnome-python2-libegg +Requires: gecko-libs >= 1.9 +%endif Requires: python-sexy # MusicBrainz support Requires: python-musicbrainz2 -# broken and useless dependency -#Requires: /usr/lib/libtunepimp.so.5 Requires: /usr/bin/puid -# optional requires an updated libgpod package from Core -#Requires: python-libgpod +# enable cd burning +Requires: brasero +# enable iPod support +Requires: python-gpod + -# the workaround requires this -Requires: gecko-libs >= 1.9 -%ifarch x86_64 ia64 ppc64 s390x sparc64 -%define gre_conf_file gre64.conf -%else -%define gre_conf_file gre.conf -%endif %description -Listen is a music manager and player for GNOME -With listen you can: -* Play your favorite songs -* Manage your library -* Manage your ipod -* Make playlists -* Automatically or manually download album covers -* Automatically synchronize album covers with iPod -* Easily burn an audio CD -* Directly get informations from wikipedia when you play a song -* See the lyrics of a song -* Have statistics about your favorite songs, albums or artists -* Listen to web radio -* Submit your songs to Audioscrobbler -* Quick access to last.fm related file -With listen you will be able to: - * Listen And Rip Audio CDs - * Browse and listen songs on a DAAP share - * Share you library via a DAAP share - * Fill metadata with musicbrainz - * Make smart playlists +Listen is an intuitive music player for GNOME written in Python. +Thanks to it, you can easily organize your music collection. +It supports many features such as podcats, daap sharing, crossfades, +access to lyrics and wikipedia, sync with media players, Jamendo etc... +Listen can be extended with plugins. %prep %setup -q -n %{name}-%{version} -%{__sed} -i 's/Comment=Listen /Comment=Listen to/' misc/listen.desktop -%{__sed} -i 's/python2.4/python/' src/listen.py -%patch0 -p0 -%patch1 -p0 -%{__sed} -i 's at GRE_CONF_FILE@/etc/gre.d/%{gre_conf_file}@' src/widget/mozembed_wrap.py +# mandatory to build inside mock +%{__sed} -i 's#CHECK_DEPENDS ?= 1#CHECK_DEPENDS ?= 0#' Makefile # correct path issue on x86_64 box %ifarch x86_64 ppc64 sparc64 -%{__sed} -i 's#/lib/#/lib64/#' Makefile + %{__sed} -i 's#/lib#/lib64#' Makefile %endif - %build -# (misc) for import gtk, as gtk requires a X server to be imported -XDISPLAY=$(i=2; while [ -f /tmp/.X$i-lock ]; do i=$(($i+1)); done; echo $i) -# added - nolisten tcp -ac -terminate to fix build issue with mock -%{_prefix}/bin/Xvfb :$XDISPLAY -nolisten tcp -ac -terminate & -export DISPLAY=:$XDISPLAY -xauth add :$XDISPLAY . EE make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/listen.py -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/mmkeys.so +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +chmod +x %{buildroot}/%{_libdir}/%{name}/listen +chmod +x %{buildroot}/%{_libdir}/%{name}/mmkeys.so # fixed rights of trackedit.glade thanks to Martin Sourada -chmod 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/trackedit.glade +chmod 644 %{buildroot}/%{_datadir}/%{name}/trackedit.glade desktop-file-install --vendor fedora --delete-original \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ + --dir %{buildroot}/%{_datadir}/applications \ --add-category X-Fedora \ --remove-mime-type audio/mp3 \ --remove-mime-type audio/x-mp3 \ @@ -131,11 +100,11 @@ desktop-file-install --vendor fedora --d --remove-mime-type audio/mpeg3 \ --remove-mime-type audio/x-mpeg-3 \ --remove-mime-type application/x-id3 \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + %{buildroot}/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post -p /sbin/ldconfig @@ -156,6 +125,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 +- updated to 0.6.2 +- fixed website url +- removed the now useless Xvfb hack +- Use pywebkitgtk instead of gnome-python2-gtkmozembed for fedora >= 11 +- refreshed some bits in spec + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 9 Apr 2007 13:03:11 -0000 1.8 +++ sources 1 Jul 2009 17:27:07 -0000 1.9 @@ -1 +1 @@ -63fd29c927c455f84fbf5bf3f8dba2a5 listen-0.5.tar.bz2 +d5b039a1679246ab6224a4aefe16e1be listen-0.6.2.tar.gz From hguemar at fedoraproject.org Wed Jul 1 17:38:53 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Wed, 1 Jul 2009 17:38:53 +0000 (UTC) Subject: rpms/listen/F-10 .cvsignore, 1.6, 1.7 listen.spec, 1.36, 1.37 sources, 1.8, 1.9 Message-ID: <20090701173853.EE89611C02C3@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29328 Modified Files: .cvsignore listen.spec sources Log Message: Update to 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 9 Apr 2007 12:32:22 -0000 1.6 +++ .cvsignore 1 Jul 2009 17:38:23 -0000 1.7 @@ -1 +1 @@ -listen-0.5.tar.bz2 +listen-0.6.2.tar.gz Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-10/listen.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- listen.spec 29 Sep 2008 02:17:25 -0000 1.36 +++ listen.spec 1 Jul 2009 17:38:23 -0000 1.37 @@ -1,128 +1,97 @@ Name: listen -Version: 0.5 -Release: 20%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ -URL: http://listengnome.free.fr -Source0: %{name}-%{version}.tar.bz2 -Patch0: %{name}-gecko.patch -Patch1: %{name}-dbus.patch -BuildRoot: %{_tmppath}/%{name}-%{real_name}-root-%(%{__id_u} -n) +URL: http://www.listen-project.org +Source0: http://www.listen-project.org/downloads/0.6/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Buildrequires: python-devel >= 2.4 + +Buildrequires: python-devel >= 2.5 BuildRequires: python-mutagen >= 1.8 -BuildRequires: python-sqlite2 BuildRequires: dbus-python +#Buildrequires: pkgconfig BuildRequires: pygtk2-devel >= 2.8 BuildRequires: gtk2-devel >= 2.8 BuildRequires: gstreamer-python -BuildRequires: gnome-python2 -BuildRequires: gnome-python2-extras -BuildRequires: gnome-python2-gtkhtml2 -BuildRequires: gnome-python2-gtkmozembed +#BuildRequires: gnome-python2 +#BuildRequires: gnome-python2-extras BuildRequires: gnome-python2-libegg +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else +Requires: gnome-python2-gtkmozembed +%endif BuildRequires: python-sexy -Buildrequires: xorg-x11-server-Xvfb -Buildrequires: xorg-x11-xauth -Buildrequires: xorg-x11-fonts-base -Buildrequires: xorg-x11-fonts-misc Buildrequires: docbook2X Buildrequires: intltool >= 0.35 BuildRequires: gettext -Buildrequires: pkgconfig BuildRequires: desktop-file-utils + + Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig - # added explicit Requires -Requires: python >= 2.4 +Requires: python >= 2.5 Requires: python-mutagen >= 1.8 -Requires: python-sqlite2 Requires: python-tunepimp Requires: dbus-python Requires: pygtk2 >= 2.8 Requires: gstreamer-python -Requires: gnome-python2 +#Requires: gnome-python2 +#Requires: gnome-python2-extras +Requires: gnome-python2-libegg Requires: gnome-python2-canvas -Requires: gnome-python2-extras -Requires: gnome-python2-gtkhtml2 +%if 0%{?fedora} >= 11 +Requires: pywebkitgtk +%else Requires: gnome-python2-gtkmozembed -Requires: gnome-python2-libegg +Requires: gecko-libs >= 1.9 +%endif Requires: python-sexy # MusicBrainz support Requires: python-musicbrainz2 -# broken and useless dependency -#Requires: /usr/lib/libtunepimp.so.5 Requires: /usr/bin/puid -# optional requires an updated libgpod package from Core -#Requires: python-libgpod +# enable cd burning +Requires: brasero +# enable iPod support +Requires: python-gpod + -# the workaround requires this -Requires: gecko-libs >= 1.9 -%ifarch x86_64 ia64 ppc64 s390x sparc64 -%define gre_conf_file gre64.conf -%else -%define gre_conf_file gre.conf -%endif %description -Listen is a music manager and player for GNOME -With listen you can: -* Play your favorite songs -* Manage your library -* Manage your ipod -* Make playlists -* Automatically or manually download album covers -* Automatically synchronize album covers with iPod -* Easily burn an audio CD -* Directly get informations from wikipedia when you play a song -* See the lyrics of a song -* Have statistics about your favorite songs, albums or artists -* Listen to web radio -* Submit your songs to Audioscrobbler -* Quick access to last.fm related file -With listen you will be able to: - * Listen And Rip Audio CDs - * Browse and listen songs on a DAAP share - * Share you library via a DAAP share - * Fill metadata with musicbrainz - * Make smart playlists +Listen is an intuitive music player for GNOME written in Python. +Thanks to it, you can easily organize your music collection. +It supports many features such as podcats, daap sharing, crossfades, +access to lyrics and wikipedia, sync with media players, Jamendo etc... +Listen can be extended with plugins. %prep %setup -q -n %{name}-%{version} -%{__sed} -i 's/Comment=Listen /Comment=Listen to/' misc/listen.desktop -%{__sed} -i 's/python2.4/python/' src/listen.py -%patch0 -p0 -%patch1 -p0 -%{__sed} -i 's at GRE_CONF_FILE@/etc/gre.d/%{gre_conf_file}@' src/widget/mozembed_wrap.py +# mandatory to build inside mock +%{__sed} -i 's#CHECK_DEPENDS ?= 1#CHECK_DEPENDS ?= 0#' Makefile # correct path issue on x86_64 box %ifarch x86_64 ppc64 sparc64 -%{__sed} -i 's#/lib/#/lib64/#' Makefile + %{__sed} -i 's#/lib#/lib64#' Makefile %endif - %build -# (misc) for import gtk, as gtk requires a X server to be imported -XDISPLAY=$(i=2; while [ -f /tmp/.X$i-lock ]; do i=$(($i+1)); done; echo $i) -# added - nolisten tcp -ac -terminate to fix build issue with mock -%{_prefix}/bin/Xvfb :$XDISPLAY -nolisten tcp -ac -terminate & -export DISPLAY=:$XDISPLAY -xauth add :$XDISPLAY . EE make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/listen.py -chmod +x $RPM_BUILD_ROOT%{_libdir}/%{name}/mmkeys.so +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +chmod +x %{buildroot}/%{_libdir}/%{name}/listen +chmod +x %{buildroot}/%{_libdir}/%{name}/mmkeys.so # fixed rights of trackedit.glade thanks to Martin Sourada -chmod 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/trackedit.glade +chmod 644 %{buildroot}/%{_datadir}/%{name}/trackedit.glade desktop-file-install --vendor fedora --delete-original \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ + --dir %{buildroot}/%{_datadir}/applications \ --add-category X-Fedora \ --remove-mime-type audio/mp3 \ --remove-mime-type audio/x-mp3 \ @@ -131,11 +100,11 @@ desktop-file-install --vendor fedora --d --remove-mime-type audio/mpeg3 \ --remove-mime-type audio/x-mpeg-3 \ --remove-mime-type application/x-id3 \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop + %{buildroot}/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post -p /sbin/ldconfig @@ -156,6 +125,19 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 +- updated to 0.6.2 +- fixed website url +- removed the now useless Xvfb hack +- Use pywebkitgtk instead of gnome-python2-gtkmozembed for fedora >= 11 +- refreshed some bits in spec + +* Wed Feb 25 2009 Fedora Release Engineering - 0.5-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Nov 30 2008 Ignacio Vazquez-Abrams - 0.5-21 +- Rebuild for Python 2.6 + * Sun Sep 28 2008 Dennis Gilmore - 0.5-20 - fix up for sparc64 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 9 Apr 2007 13:03:11 -0000 1.8 +++ sources 1 Jul 2009 17:38:23 -0000 1.9 @@ -1 +1 @@ -63fd29c927c455f84fbf5bf3f8dba2a5 listen-0.5.tar.bz2 +d5b039a1679246ab6224a4aefe16e1be listen-0.6.2.tar.gz From palango at fedoraproject.org Wed Jul 1 17:39:32 2009 From: palango at fedoraproject.org (palango) Date: Wed, 1 Jul 2009 17:39:32 +0000 (UTC) Subject: rpms/flickrnet/devel .cvsignore, 1.2, 1.3 assemblyinfo.patch, 1.1, 1.2 flickrnet.pc, 1.2, 1.3 flickrnet.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090701173932.AD23411C02C3@cvs1.fedora.phx.redhat.com> Author: palango Update of /cvs/pkgs/rpms/flickrnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29617 Modified Files: .cvsignore assemblyinfo.patch flickrnet.pc flickrnet.spec sources Log Message: update to 2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Feb 2009 21:57:10 -0000 1.2 +++ .cvsignore 1 Jul 2009 17:39:31 -0000 1.3 @@ -1 +1 @@ -FlickrNet-25207.zip +FlickrNet2.2-Src-48055.zip assemblyinfo.patch: Index: assemblyinfo.patch =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/assemblyinfo.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- assemblyinfo.patch 24 Feb 2009 21:57:10 -0000 1.1 +++ assemblyinfo.patch 1 Jul 2009 17:39:32 -0000 1.2 @@ -4,8 +4,8 @@ // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: --[assembly: AssemblyVersion("2.1.5.*")] -+[assembly: AssemblyVersion("2.1.5.0")] +-[assembly: AssemblyVersion("2.2.0.*")] ++[assembly: AssemblyVersion("2.2.0.0")] // // In order to sign your assembly you must specify a key to use. Refer to the Index: flickrnet.pc =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/flickrnet.pc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- flickrnet.pc 26 Jun 2009 15:57:33 -0000 1.2 +++ flickrnet.pc 1 Jul 2009 17:39:32 -0000 1.3 @@ -1,8 +1,8 @@ -libdir=${libdir} +libdir=@LIBDIR@ assemblies_dir=\${libdir}/mono/flickrnet Libraries=\${assemblies_dir}/FlickrNet.dll Name: FlickrNet Description: Flickr.Net API Library -Version: 2.1.5 +Version: 2.2 Libs: -r:\${assemblies_dir}/FlickrNet.dll Index: flickrnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/flickrnet.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- flickrnet.spec 26 Jun 2009 15:57:33 -0000 1.4 +++ flickrnet.spec 1 Jul 2009 17:39:32 -0000 1.5 @@ -1,14 +1,14 @@ %define debug_package %{nil} Name: flickrnet -Version: 2.1.5 -Release: 4%{?dist} +Version: 2.2 +Release: 1%{?dist} Summary: .NET library to interact with the Flickr API Group: Development/Libraries License: LGPLv2 URL: http://www.codeplex.com/FlickrNet #http://www.codeplex.com/FlickrNet/Release/ProjectReleases.aspx?ReleaseId=3420#ReleaseFiles -Source0: FlickrNet-25207.zip +Source0: FlickrNet2.2-Src-48055.zip Source1: flickrnet.pc Patch0: assemblyinfo.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -37,6 +37,8 @@ The %{name}-devel package contains devel cd FlickrNet %patch0 -p1 +sed -i 's|@LIBDIR@|%{_libdir}|g' %{SOURCE1} + %build cd FlickrNet gmcs -debug -target:library -out:FlickrNet.dll -r:System.Web.dll -r:System.Drawing.dll *.cs @@ -61,11 +63,11 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog -* Thu Jun 25 2009 Juan Rodriguez - 2.1.5-4 -- Fix libdir on x86_64 +* Fri Jun 26 2009 Paul Lange - 2.2-1 +- Update to upstream release 2.2. -* Sun Jun 21 2009 Paul Lange - 2.1.5-3 -- Fix supported archs +* Thu Jun 25 2009 Juan Rodriguez - 2.1.5-3 +- Fix libdir on x86_64 * Tue Jun 02 2009 Paul Lange - 2.1.5-2 enable ppc64 build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Feb 2009 21:57:10 -0000 1.2 +++ sources 1 Jul 2009 17:39:32 -0000 1.3 @@ -1 +1 @@ -d20fe0d25a3888300f21e5ad3895c141 FlickrNet-25207.zip +534b3436762ce1bfb2568c9774340f0c FlickrNet2.2-Src-48055.zip From mclasen at fedoraproject.org Wed Jul 1 17:42:59 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 17:42:59 +0000 (UTC) Subject: rpms/epiphany/F-11 epiphany.spec,1.230,1.231 Message-ID: <20090701174259.2102D11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30018 Modified Files: epiphany.spec Log Message: fix the build Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-11/epiphany.spec,v retrieving revision 1.230 retrieving revision 1.231 diff -u -p -r1.230 -r1.231 --- epiphany.spec 1 Jul 2009 16:58:51 -0000 1.230 +++ epiphany.spec 1 Jul 2009 17:42:58 -0000 1.231 @@ -53,7 +53,6 @@ Patch1: epiphany-2.17.3-use-pango.patch Patch2: epiphany-2.18.1-default-bookmarks.patch # https://bugzilla.redhat.com/show_bug.cgi?id=334751 Patch3: epiphany-2.20.1-wrapped-plugins.patch -Patch5: epiphany-2.25.91-missingheader.patch %description Epiphany is the web browser for the GNOME desktop. Its goal is to be @@ -101,7 +100,6 @@ Install epiphany-devel if you want to wr %patch1 -p1 -b .use-pango %patch2 -p1 -b .default-bookmarks %patch3 -p1 -b .wrapped-plugins -%patch5 -p1 -b .missing-header # Fedora Epiphany version cat >> data/default-prefs-common.js << EOF pref("general.useragent.vendor", "Fedora"); From limb at fedoraproject.org Wed Jul 1 17:43:38 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 1 Jul 2009 17:43:38 +0000 (UTC) Subject: rpms/vdrift/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 vdrift.spec, 1.15, 1.16 Message-ID: <20090701174338.78CE211C02C3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/vdrift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30457 Modified Files: .cvsignore sources vdrift.spec Log Message: - Update to 2009-06-15. - Split data into noarch subpackage, BZ 508079. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 23 Feb 2009 16:33:06 -0000 1.4 +++ .cvsignore 1 Jul 2009 17:43:08 -0000 1.5 @@ -1 +1 @@ -vdrift-2009-02-15-src.tar.bz2 +vdrift-2009-06-15-src.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 23 Feb 2009 16:33:06 -0000 1.4 +++ sources 1 Jul 2009 17:43:08 -0000 1.5 @@ -1 +1 @@ -5960be8c966bcbde42c054ca667b46ef vdrift-2009-02-15-src.tar.bz2 +bcb6ae8117134e954be00c8f074167eb vdrift-2009-06-15-src.tar.bz2 Index: vdrift.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/devel/vdrift.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- vdrift.spec 23 Feb 2009 19:30:22 -0000 1.15 +++ vdrift.spec 1 Jul 2009 17:43:08 -0000 1.16 @@ -1,23 +1,19 @@ Name: vdrift -Version: 20090215 +Version: 20090615 Release: 1%{?dist} Summary: Driving/drift racing simulation Group: Amusements/Games License: GPLv2+ URL: http://vdrift.net -Source0: %{name}-2009-02-15-src.tar.bz2 +Source0: %{name}-2009-06-15-src.tar.bz2 #Original upstream: -#Source0: http://downloads.sourceforge.net/%{name}/%{name}-2009-02-15-src.tar.bz2 +#Source0: http://downloads.sourceforge.net/%{name}/%{name}-2009-06-15-src.tar.bz2 # Modified: # cd docs -# rm HOW_TO_COMPILE.txt SConscript INSTALL +# rm SConscript INSTALL # cd .. -# rm bullet-2.64/glew32.dll -# rm bullet-2.64/GLUT32.DLL -# rm -rf bullet-2.64/Glut -# rm -rf bullet-2.64/Extras -# rm -rf bullet-2.64/Demos +# rm -rf tools/win Source1: vdrift.desktop Source2: vdrift.png @@ -39,10 +35,12 @@ BuildRequires: jam BuildRequires: libvorbis-devel BuildRequires: desktop-file-utils BuildRequires: glew-devel +BuildRequires: boost-devel +BuildRequires: asio-devel -#Requires: vdrift-data = %{version} -Obsoletes: vdrift-data <= 20071226 -Provides: vdrift-data = %{version}-%{release} +Requires: vdrift-data = %{version} +#Obsoletes: vdrift-data <= 20071226 +#Provides: vdrift-data = %{version}-%{release} %description @@ -51,9 +49,23 @@ racing in mind. It's powered by the exce released under the GNU General Public License (GPL) v2. It is currently available for Linux, FreeBSD, Mac OS X and Windows (Cygwin). +%package data +Summary: Driving/drift racing simulation data +Group: Amusements/Games +Requires: vdrift = %{version} +BuildArch: noarch + +%description data +VDrift is a cross-platform, open source driving simulation made with drift +racing in mind. It's powered by the excellent Vamos physics engine. It is +released under the GNU General Public License (GPL) v2. It is currently +available for Linux, FreeBSD, Mac OS X and Windows (Cygwin). + +These are the data files. + %prep -%setup -qn vdrift-2009-02-15 +%setup -qn vdrift-2009-06-15 %ifarch ppc ppc64 sed -i 's/linuxx86/linuxppc/' src/SConscript @@ -73,8 +85,8 @@ sed -i 's/linuxx86/linuxppc/' src/SConsc %build -tar -xzf bullet-2.73-sp1.tgz -/bin/chmod -x bullet-2.73/src/LinearMath/*.h +#tar -xzf bullet-2.73-sp1.tgz +#/bin/chmod -x bullet-2.73/src/LinearMath/*.h #cd bullet-2.73 #./autogen.sh #./configure @@ -123,12 +135,18 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc docs/* %{_bindir}/vdrift -%{_datadir}/vdrift %{_datadir}/applications/fedora-vdrift.desktop %{_datadir}/icons/hicolor/32x32/apps/vdrift.png +%files data +%defattr(-,root,root,-) +%{_datadir}/vdrift %changelog +* Tue Jun 30 2009 Jon Ciesla - 20090615-1 +- Update to 2009-06-15. +- Split data into noarch subpackage, BZ 508079. + * Thu Feb 19 2009 Jon Ciesla - 20090215-1 - Update to 2009-02-15. - Includes patch. From mclasen at fedoraproject.org Wed Jul 1 17:46:12 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 17:46:12 +0000 (UTC) Subject: rpms/gnome-panel/F-11 .cvsignore, 1.95, 1.96 gnome-panel.spec, 1.354, 1.355 sources, 1.98, 1.99 Message-ID: <20090701174612.C7F8A11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-panel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30441 Modified Files: .cvsignore gnome-panel.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/F-11/.cvsignore,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- .cvsignore 2 Jun 2009 00:24:02 -0000 1.95 +++ .cvsignore 1 Jul 2009 17:45:42 -0000 1.96 @@ -1 +1 @@ -gnome-panel-2.26.2.tar.bz2 +gnome-panel-2.26.3.tar.bz2 Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/F-11/gnome-panel.spec,v retrieving revision 1.354 retrieving revision 1.355 diff -u -p -r1.354 -r1.355 --- gnome-panel.spec 2 Jun 2009 01:16:22 -0000 1.354 +++ gnome-panel.spec 1 Jul 2009 17:45:42 -0000 1.355 @@ -22,7 +22,7 @@ Summary: GNOME panel Name: gnome-panel -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-panel/2.26/%{name}-%{version}.tar.bz2 @@ -357,6 +357,10 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Mon Jul 1 2009 Matthias Clasen - 2.26.3-1 +- Update to 2.26.3 +- http://download.gnome.org/sources/gnome-panel/2.26/gnome-panel-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen - 2.26.2-1 - Update to 2.26.2 - http://download.gnome.org/sources/gnome-panel/2.26/gnome-panel-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/F-11/sources,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- sources 2 Jun 2009 00:24:02 -0000 1.98 +++ sources 1 Jul 2009 17:45:42 -0000 1.99 @@ -1 +1 @@ -07974105fec9a6bab8be8b20b9b956e9 gnome-panel-2.26.2.tar.bz2 +38de69896976d57abb4f4720fef62fcf gnome-panel-2.26.3.tar.bz2 From nalin at fedoraproject.org Wed Jul 1 17:52:46 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 1 Jul 2009 17:52:46 +0000 (UTC) Subject: rpms/krb5/devel krb5-1.7-largefile.patch, NONE, 1.1 krb5.spec, 1.204, 1.205 krb5-1.3-large-file.patch, 1.1, NONE krb5-1.7-rcp-sendlarge.patch, 1.1, NONE Message-ID: <20090701175246.7A8A111C02C3@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/extras/rpms/krb5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32516 Modified Files: krb5.spec Added Files: krb5-1.7-largefile.patch Removed Files: krb5-1.3-large-file.patch krb5-1.7-rcp-sendlarge.patch Log Message: - try to merge and clean up all the large file support for ftp and rcp krb5-1.7-largefile.patch: --- NEW FILE krb5-1.7-largefile.patch --- Turn on large file support in gssftp and rcp. The size of off_t might be more than that of a long, so if we have a "long long" type, assume that format specifiers for it work correctly and that we need to represent off_t values as such. diff -up krb5/src/appl/gssftp/configure.in krb5/src/appl/gssftp/configure.in --- krb5/src/appl/gssftp/configure.in 2009-06-29 17:49:43.000000000 -0400 +++ krb5/src/appl/gssftp/configure.in 2009-06-29 17:49:36.000000000 -0400 @@ -12,6 +12,9 @@ DECLARE_SYS_ERRLIST AC_HEADER_STDARG AC_CHECK_HEADER(termios.h,[AC_CHECK_FUNC(cfsetispeed,AC_DEFINE(POSIX_TERMIOS,1,[Define if POSIX termios interface found]))]) AC_CHECK_HEADERS(unistd.h stdlib.h string.h sys/select.h sys/sockio.h paths.h) +AC_SYS_LARGEFILE +AC_FUNC_FSEEKO +AC_CHECK_TYPES([long long]) CHECK_UTMP DECLARE_SYS_ERRLIST AC_REPLACE_FUNCS(getdtablesize) --- krb5/src/appl/gssftp/ftpd/ftpcmd.y +++ krb5/src/appl/gssftp/ftpd/ftpcmd.y @@ -1515,12 +1515,20 @@ (stbuf.st_mode&S_IFMT) != S_IFREG) reply(550, "%s: not a plain file.", filename); else +#ifdef HAVE_LONG_LONG + reply(213, "%llu", (long long) stbuf.st_size); +#else reply(213, "%lu", (long) stbuf.st_size); +#endif break;} case TYPE_A: { FILE *fin; register int c; +#ifdef HAVE_LONG_LONG + register long long count; +#else register long count; +#endif struct stat stbuf; fin = fopen(filename, "r"); if (fin == NULL) { @@ -1542,7 +1542,11 @@ } (void) fclose(fin); +#ifdef HAVE_LONG_LONG + reply(213, "%lld", count); +#else reply(213, "%ld", count); +#endif break;} default: reply(504, "SIZE not implemented for Type %c.", "?AEIL"[type]); diff -up krb5/src/appl/bsd/configure.in krb5-1.7/src/appl/bsd/configure.in --- krb5/src/appl/bsd/configure.in 2009-06-04 14:02:56.000000000 -0400 +++ krb5/src/appl/bsd/configure.in 2009-06-04 14:02:56.000000000 -0400 @@ -53,6 +53,9 @@ AC_FUNC_VFORK AC_TYPE_MODE_T AC_CHECK_FUNCS(isatty inet_aton getenv gettosbyname killpg initgroups setpriority setreuid setresuid waitpid setsid ptsname setlogin tcgetpgrp tcsetpgrp setpgid strsave utimes rmufile rresvport_af) AC_CHECK_HEADERS(unistd.h stdlib.h string.h sys/filio.h sys/sockio.h sys/label.h sys/tty.h ttyent.h lastlog.h sys/select.h sys/ptyvar.h utmp.h sys/time.h sys/ioctl_compat.h paths.h arpa/nameser.h) +AC_SYS_LARGEFILE +AC_FUNC_FSEEKO +AC_CHECK_TYPES([long long]) AC_HEADER_STDARG AC_REPLACE_FUNCS(getdtablesize) dnl diff -up krb5/src/appl/bsd/krcp.c krb5-1.7/src/appl/bsd/krcp.c --- krb5/src/appl/bsd/krcp.c 2008-12-15 15:29:01.000000000 -0500 +++ krb5/src/appl/bsd/krcp.c 2009-06-04 14:02:56.000000000 -0400 @@ -764,8 +764,13 @@ void source(argc, argv) continue; } } +#ifdef HAVE_LONG_LONG + (void) snprintf(buf, sizeof(buf), "C%04o %lld %s\n", + (int) stb.st_mode&07777, (long long) stb.st_size, last); +#else (void) snprintf(buf, sizeof(buf), "C%04o %ld %s\n", (int) stb.st_mode&07777, (long ) stb.st_size, last); +#endif (void) rcmd_stream_write(rem, buf, strlen(buf), 0); if (response() < 0) { (void) close(f); diff -up krb5/src/appl/gssftp/ftp/ftp_var.h krb5/src/appl/gssftp/ftp/ftp_var.h --- krb5/src/appl/gssftp/ftp/ftp_var.h 2009-06-29 18:01:55.000000000 -0400 +++ krb5/src/appl/gssftp/ftp/ftp_var.h 2009-06-29 18:03:05.000000000 -0400 @@ -46,12 +46,18 @@ FILE* fdopen_socket(SOCKET s, char* mode #define FDOPEN_SOCKET(s, mode) fdopen_socket(s, mode) #define SOCKETNO(fd) _get_osfhandle(fd) #define PERROR_SOCKET(str) do { errno = SOCKET_ERRNO; perror(str); } while(0) +#define FSEEK(fd, offset, whence) fseek(fd, (long) offset, whence) #else #define FCLOSE_SOCKET(f) fclose(f) FILE* fdopen_socket(int *s, char* mode); #define FDOPEN_SOCKET(s, mode) fdopen_socket(&s, mode) #define SOCKETNO(fd) (fd) #define PERROR_SOCKET(str) perror(str) +#ifdef HAVE_FSEEKO +#define FSEEK(fd, offset, whence) fseeko(fd, (off_t) offset, whence) +#else +#define FSEEK(fd, offset, whence) fseek(fd, (long) offset, whence) +#endif #endif #ifdef _WIN32 --- krb5/src/appl/gssftp/ftp/ftp.c 2009-06-29 18:05:08.000000000 -0400 +++ krb5/src/appl/gssftp/ftp/ftp.c 2009-06-29 18:05:04.000000000 -0400 @@ -150,7 +150,11 @@ static void proxtrans (char *, char *, char *); static int initconn (void); +#ifdef HAVE_LONG_LONG +static void ptransfer (char *, long long, struct timeval *, struct timeval *); +#else static void ptransfer (char *, long, struct timeval *, struct timeval *); +#endif static void abort_remote (FILE *); static void tvsub (struct timeval *, struct timeval *, struct timeval *); static char *gunique (char *); @@ -780,7 +784,11 @@ FILE *volatile fin, *volatile dout = 0; int (*volatile closefunc)(); volatile sig_t oldintr, oldintp; +#ifdef HAVE_LONG_LONG + volatile long long bytes = 0, hashbytes = HASHBYTES; +#else volatile long bytes = 0, hashbytes = HASHBYTES; +#endif char *volatile lmode; unsigned char buf[FTP_BUFSIZ], *bufp; @@ -877,7 +885,7 @@ if (restart_point && (strcmp(cmd, "STOR") == 0 || strcmp(cmd, "APPE") == 0)) { - if (fseek(fin, (long) restart_point, 0) < 0) { + if (FSEEK(fin, restart_point, 0) < 0) { fprintf(stderr, "local: %s: %s\n", local, strerror(errno)); restart_point = 0; @@ -1272,7 +1280,7 @@ if (restart_point) { register int i, n, ch; - if (fseek(fout, 0L, L_SET) < 0) + if (FSEEK(fout, 0L, L_SET) < 0) goto done; n = restart_point; for (i = 0; i++ < n;) { @@ -1281,7 +1289,7 @@ if (ch == '\n') i++; } - if (fseek(fout, 0L, L_INCR) < 0) { + if (FSEEK(fout, 0L, L_INCR) < 0) { done: fprintf(stderr, "local: %s: %s\n", local, strerror(errno)); @@ -1546,8 +1554,13 @@ return (FDOPEN_SOCKET(data, lmode)); } +#ifdef HAVE_LONG_LONG +static void ptransfer(char *direction, long long bytes, + struct timeval *t0, struct timeval *t1) +#else static void ptransfer(char *direction, long bytes, struct timeval *t0, struct timeval *t1) +#endif { struct timeval td; float s, kbs; @@ -1570,8 +1570,13 @@ s = td.tv_sec + (td.tv_usec / 1000000.); #define nz(x) ((x) == 0 ? 1 : (x)) kbs = (bytes / nz(s))/1024.0; +#ifdef HAVE_LONG_LONG + printf("%lld bytes %s in %.2g seconds (%.2g Kbytes/s)\n", + bytes, direction, s, kbs); +#else printf("%ld bytes %s in %.2g seconds (%.2g Kbytes/s)\n", bytes, direction, s, kbs); +#endif } } --- krb5/src/appl/gssftp/ftpd/ftpd.c 2009-06-29 18:07:16.000000000 -0400 +++ krb5/src/appl/gssftp/ftpd/ftpd.c 2009-06-29 18:07:57.000000000 -0400 @@ -1253,7 +1253,7 @@ * because we are changing from reading to * writing. */ - if (fseek(fout, 0L, L_INCR) < 0) { + if (FSEEK(fout, 0L, L_INCR) < 0) { perror_reply(550, name); goto done; } @@ -1340,8 +1340,13 @@ byte_count = 0; if (size != (off_t) -1) /* cast size to long in case sizeof(off_t) > sizeof(long) */ +#ifdef HAVE_LONG_LONG + (void) snprintf (sizebuf, sizeof(sizebuf), " (%lld bytes)", + (long long)size); +#else (void) snprintf (sizebuf, sizeof(sizebuf), " (%ld bytes)", (long)size); +#endif else sizebuf[0] = '\0'; if (pdata >= 0) { @@ -2057,6 +2062,15 @@ siglongjmp(urgcatch, 1); } if (strcmp(cp, "STAT") == 0) { +#ifdef HAVE_LONG_LONG + if (file_size != (off_t) -1) + reply(213, "Status: %llu of %llu bytes transferred", + (unsigned long long) byte_count, + (unsigned long long) file_size); + else + reply(213, "Status: %llu bytes transferred", + (unsigned long long) byte_count); +#else if (file_size != (off_t) -1) reply(213, "Status: %lu of %lu bytes transferred", (unsigned long) byte_count, @@ -2064,6 +2078,7 @@ else reply(213, "Status: %lu bytes transferred", (unsigned long) byte_count); +#endif } } --- krb5/src/appl/gssftp/ftpd/ftpd_var.h 2009-06-29 18:19:02.000000000 -0400 +++ krb5/src/appl/gssftp/ftpd/ftpd_var.h 2009-06-29 18:19:44.000000000 -0400 @@ -41,6 +41,12 @@ char *radix_error (int); int radix_encode (unsigned char *, unsigned char *, int *, int); +#ifdef HAVE_FSEEKO +#define FSEEK(fd, offset, whence) fseeko(fd, (off_t) offset, whence) +#else +#define FSEEK(fd, offset, whence) fseek(fd, (long) offset, whence) +#endif + /* ftpd.c */ void ack(char *); int auth_data(char *); Index: krb5.spec =================================================================== RCS file: /cvs/extras/rpms/krb5/devel/krb5.spec,v retrieving revision 1.204 retrieving revision 1.205 diff -u -p -r1.204 -r1.205 --- krb5.spec 29 Jun 2009 19:28:01 -0000 1.204 +++ krb5.spec 1 Jul 2009 17:52:16 -0000 1.205 @@ -10,7 +10,7 @@ Summary: The Kerberos network authentication system Name: krb5 Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} # Maybe we should explode from the now-available-to-everybody tarball instead? # http://web.mit.edu/kerberos/dist/krb5/1.7/krb5-1.7-signed.tar Source0: krb5-%{version}.tar.gz @@ -49,12 +49,10 @@ Patch5: krb5-1.3-ksu-access.patch Patch6: krb5-1.5-ksu-path.patch Patch11: krb5-1.2.1-passive.patch Patch12: krb5-1.7-ktany.patch -Patch13: krb5-1.3-large-file.patch Patch14: krb5-1.3-ftp-glob.patch Patch16: krb5-1.7-buildconf.patch Patch23: krb5-1.3.1-dns.patch Patch26: krb5-1.3.2-efence.patch -Patch27: krb5-1.7-rcp-sendlarge.patch Patch29: krb5-1.7-kprop-mktemp.patch Patch30: krb5-1.3.4-send-pr-tempfile.patch Patch33: krb5-1.7-io.patch @@ -79,6 +77,7 @@ Patch79: krb5-trunk-ftp_mget_case.patch Patch86: krb5-1.7-time_t_size.patch Patch87: krb5-1.7-errs.patch Patch88: krb5-1.7-sizeof.patch +Patch89: krb5-1.7-largefile.patch License: MIT URL: http://web.mit.edu/kerberos/www/ @@ -208,6 +207,14 @@ to obtain initial credentials from a KDC certificate. %changelog +* Tue Jun 30 2009 Nalin Dahyabhai 1.7-4 +- try to merge and clean up all the large file support for ftp and rcp + - ftpd no longer prints a negative length when sending a large file + from a 32-bit host + +* Tue Jun 30 2009 Nalin Dahyabhai +- pam_rhosts_auth.so's been gone, use pam_rhosts.so instead + * Mon Jun 29 2009 Nalin Dahyabhai 1.7-3 - switch buildrequires: and requires: on e2fsprogs-devel into buildrequires: and requires: on libss-devel, libcom_err-devel, per @@ -1410,13 +1417,11 @@ popd %patch6 -p1 -b .ksu-path %patch11 -p1 -b .passive %patch12 -p1 -b .ktany -%patch13 -p1 -b .large-file %patch14 -p1 -b .ftp-glob %patch16 -p1 -b .buildconf %patch23 -p1 -b .dns # Removes a malloc(0) case, nothing more. # %patch26 -p1 -b .efence -%patch27 -p1 -b .rcp-sendlarge %patch29 -p1 -b .kprop-mktemp %patch30 -p1 -b .send-pr-tempfile %patch33 -p1 -b .io @@ -1438,6 +1443,7 @@ popd %patch86 -p1 -b .time_t_size %patch87 -p1 -b .errs %patch88 -p1 -b .sizeof +%patch89 -p1 -b .largefile gzip doc/*.ps sed -i -e '1s!\[twoside\]!!;s!%\(\\usepackage{hyperref}\)!\1!' doc/api/library.tex @@ -1490,11 +1496,6 @@ done %build cd src INCLUDES=-I%{_includedir}/et -# Get LFS support on systems that need it which aren't already 64-bit. -%ifarch %{ix86} s390 ppc sparcv9 -DEFINES="-D_FILE_OFFSET_BITS=64" ; export DEFINES -%endif - # Work out the CFLAGS and CPPFLAGS which we intend to use. CFLAGS="`echo $RPM_OPT_FLAGS $DEFINES $INCLUDES -fPIC -fno-strict-aliasing`" CPPFLAGS="`echo $DEFINES $INCLUDES`" --- krb5-1.3-large-file.patch DELETED --- --- krb5-1.7-rcp-sendlarge.patch DELETED --- From mclasen at fedoraproject.org Wed Jul 1 18:01:41 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 18:01:41 +0000 (UTC) Subject: rpms/control-center/devel gnomekbd.patch, NONE, 1.1 control-center.spec, 1.451, 1.452 Message-ID: <20090701180141.4106811C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2541 Modified Files: control-center.spec Added Files: gnomekbd.patch Log Message: fix the build gnomekbd.patch: --- NEW FILE gnomekbd.patch --- diff -up gnome-control-center-2.27.3/capplets/keyboard/gnome-keyboard-properties-xkb.c.libgnomekbd gnome-control-center-2.27.3/capplets/keyboard/gnome-keyboard-properties-xkb.c --- gnome-control-center-2.27.3/capplets/keyboard/gnome-keyboard-properties-xkb.c.libgnomekbd 2009-07-01 13:56:06.628794369 -0400 +++ gnome-control-center-2.27.3/capplets/keyboard/gnome-keyboard-properties-xkb.c 2009-07-01 13:56:19.537797461 -0400 @@ -161,8 +161,7 @@ setup_xkb_tabs (GladeXML * dialog, GConf gkbd_desktop_config_init (&desktop_config, xkb_gconf_client, engine); gkbd_desktop_config_load_from_gconf (&desktop_config); - xkl_config_registry_load (config_registry, - desktop_config.load_extra_items); + xkl_config_registry_load (config_registry, FALSE); gkbd_keyboard_config_init (&initial_config, xkb_gconf_client, engine); Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.451 retrieving revision 1.452 diff -u -p -r1.451 -r1.452 --- control-center.spec 30 Jun 2009 17:38:53 -0000 1.451 +++ control-center.spec 1 Jul 2009 18:01:40 -0000 1.452 @@ -58,6 +58,9 @@ Patch35: gnome-control-center-2.26.0-sup # http://bugzilla.gnome.org/show_bug.cgi?id=536531 Patch37: polkit1.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=587355 +Patch42: gnomekbd.patch + # call the Fedora/RHEL graphical passwd changing apps Patch95: gnome-control-center-2.25.2-passwd.patch Patch96: gnome-control-center-2.25.2-gecos.patch @@ -180,6 +183,8 @@ utilities. %patch33 -p1 -b .notification-theme %patch34 -p0 -b .new-icons %patch35 -p1 -b .support-touchpads +%patch42 -p1 -b .gnomekbd + pushd capplets/about-me mv *png icons/ popd From palango at fedoraproject.org Wed Jul 1 18:08:04 2009 From: palango at fedoraproject.org (palango) Date: Wed, 1 Jul 2009 18:08:04 +0000 (UTC) Subject: rpms/mono-nat/devel .cvsignore, 1.2, 1.3 mono-nat.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090701180804.D96CC11C02C3@cvs1.fedora.phx.redhat.com> Author: palango Update of /cvs/pkgs/rpms/mono-nat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4038 Modified Files: .cvsignore mono-nat.spec sources Log Message: - update to 1.0.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mono-nat/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Feb 2009 20:18:17 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:07:34 -0000 1.3 @@ -1 +1 @@ -mono-nat-1.0.tar.gz +mono-nat-1.0.2.tar.gz Index: mono-nat.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-nat/devel/mono-nat.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mono-nat.spec 22 Jun 2009 00:55:21 -0000 1.4 +++ mono-nat.spec 1 Jul 2009 18:07:34 -0000 1.5 @@ -1,13 +1,13 @@ %define debug_package %{nil} Name: mono-nat -Version: 1.0 -Release: 4%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: .NET library for automatic port forwarding Group: Development/Libraries License: MIT URL: http://anonsvn.mono-project.com/viewcvs/trunk/Mono.Nat/ -Source0: http://www.monsoon-project.org/jaws/data/files/%{name}-%{version}.tar.gz +Source0: http://projects.qnetp.net/attachments/download/22/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel @@ -54,6 +54,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/pkgconfig/mono.nat.pc %changelog +* Wed Jul 01 2009 Paul Lange - 1.0.2-1 +- Update to 1.0.2 + * Sun Jun 21 2009 Paul Lange - 1.0-4 - Fix supported archs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mono-nat/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Feb 2009 20:18:19 -0000 1.2 +++ sources 1 Jul 2009 18:07:34 -0000 1.3 @@ -1 +1 @@ -998da8f45265dd5e6865ceee1ed3a8d7 mono-nat-1.0.tar.gz +7c62563a353ecf71857201496b7a8a54 mono-nat-1.0.2.tar.gz From limb at fedoraproject.org Wed Jul 1 18:13:56 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 1 Jul 2009 18:13:56 +0000 (UTC) Subject: rpms/vdrift/devel vdrift-20071226-paths.patch,1.1,1.2 Message-ID: <20090701181356.7DD8611C02C3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/vdrift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5353 Modified Files: vdrift-20071226-paths.patch Log Message: Whoops. vdrift-20071226-paths.patch: Index: vdrift-20071226-paths.patch =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/devel/vdrift-20071226-paths.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vdrift-20071226-paths.patch 19 Feb 2008 18:58:24 -0000 1.1 +++ vdrift-20071226-paths.patch 1 Jul 2009 18:13:56 -0000 1.2 @@ -1,13 +1,7 @@ ---- SConstruct 2008-02-13 11:01:59.000000000 -0600 -+++ SConstruct 2008-02-13 11:01:59.000000000 -0600 -@@ -35,8 +35,8 @@ - cppdefines = [] - default_settingsdir = ".vdrift" - default_prefix = "/usr" +--- SConstruct~ 2009-06-30 13:31:08.000000000 -0500 ++++ SConstruct 2009-06-30 13:37:08.000000000 -0500 +@@ -38,2 +38,2 @@ -default_datadir = "share/games/vdrift/data" --default_bindir = "share/games/vdrift/bin" +-default_bindir = "bin" +default_datadir = "/share/vdrift" +default_bindir = "/bin" - - # convenience var for identifying a windows platform - From llaumgui at fedoraproject.org Wed Jul 1 18:26:34 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:26:34 +0000 (UTC) Subject: rpms/php-ezc-Template/F-10 .cvsignore, 1.2, 1.3 php-ezc-Template.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701182634.DCA5311C02C3@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Template/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7904 Modified Files: .cvsignore php-ezc-Template.spec sources Log Message: update to 1.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 06:08:11 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:26:34 -0000 1.3 @@ -1 +1 @@ -Template-1.3.2.tgz +Template-1.4.tgz Index: php-ezc-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-10/php-ezc-Template.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Template.spec 29 Apr 2009 06:08:11 -0000 1.1 +++ php-ezc-Template.spec 1 Jul 2009 18:26:34 -0000 1.2 @@ -3,7 +3,7 @@ %define channel components.ez.no Name: php-ezc-Template -Version: 1.3.2 +Version: 1.4 Release: 1%{?dist} Summary: A fully functional Templating system @@ -17,7 +17,7 @@ BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: php-channel(%{channel}) Requires: php-common >= 5.2.1 -Requires: php-pear(%{channel}/Base) >= 1.6.1 +Requires: php-pear(%{channel}/Base) >= 1.7 Requires(post): %{__pear} Requires(postun): %{__pear} @@ -90,5 +90,8 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.4-1 +- Update to 1.4 + * Mon Mar 16 2009 Guillaume Kulakowski - 1.3.2-1 - Initial packaging Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 06:08:11 -0000 1.2 +++ sources 1 Jul 2009 18:26:34 -0000 1.3 @@ -1 +1 @@ -2a6c226f185f884bbca084ba95576aba Template-1.3.2.tgz +0bdc2fc1430093d7f912c75956bb4732 Template-1.4.tgz From llaumgui at fedoraproject.org Wed Jul 1 18:26:34 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:26:34 +0000 (UTC) Subject: rpms/php-ezc-Template/F-11 .cvsignore, 1.2, 1.3 php-ezc-Template.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701182634.347A511C02C3@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Template/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7885 Modified Files: .cvsignore php-ezc-Template.spec sources Log Message: update to 1.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 06:08:12 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:26:33 -0000 1.3 @@ -1 +1 @@ -Template-1.3.2.tgz +Template-1.4.tgz Index: php-ezc-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-11/php-ezc-Template.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Template.spec 29 Apr 2009 06:08:12 -0000 1.1 +++ php-ezc-Template.spec 1 Jul 2009 18:26:33 -0000 1.2 @@ -3,7 +3,7 @@ %define channel components.ez.no Name: php-ezc-Template -Version: 1.3.2 +Version: 1.4 Release: 1%{?dist} Summary: A fully functional Templating system @@ -17,7 +17,7 @@ BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: php-channel(%{channel}) Requires: php-common >= 5.2.1 -Requires: php-pear(%{channel}/Base) >= 1.6.1 +Requires: php-pear(%{channel}/Base) >= 1.7 Requires(post): %{__pear} Requires(postun): %{__pear} @@ -90,5 +90,8 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.4-1 +- Update to 1.4 + * Mon Mar 16 2009 Guillaume Kulakowski - 1.3.2-1 - Initial packaging Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 06:08:12 -0000 1.2 +++ sources 1 Jul 2009 18:26:33 -0000 1.3 @@ -1 +1 @@ -2a6c226f185f884bbca084ba95576aba Template-1.3.2.tgz +0bdc2fc1430093d7f912c75956bb4732 Template-1.4.tgz From llaumgui at fedoraproject.org Wed Jul 1 18:26:42 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:26:42 +0000 (UTC) Subject: rpms/php-ezc-Template/devel .cvsignore, 1.2, 1.3 php-ezc-Template.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701182642.DA98811C02C3@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Template/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7797 Modified Files: .cvsignore php-ezc-Template.spec sources Log Message: update to 1.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 06:08:08 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:26:12 -0000 1.3 @@ -1 +1 @@ -Template-1.3.2.tgz +Template-1.4.tgz Index: php-ezc-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/devel/php-ezc-Template.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Template.spec 29 Apr 2009 06:08:08 -0000 1.1 +++ php-ezc-Template.spec 1 Jul 2009 18:26:12 -0000 1.2 @@ -3,7 +3,7 @@ %define channel components.ez.no Name: php-ezc-Template -Version: 1.3.2 +Version: 1.4 Release: 1%{?dist} Summary: A fully functional Templating system @@ -17,7 +17,7 @@ BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 BuildRequires: php-channel(%{channel}) Requires: php-common >= 5.2.1 -Requires: php-pear(%{channel}/Base) >= 1.6.1 +Requires: php-pear(%{channel}/Base) >= 1.7 Requires(post): %{__pear} Requires(postun): %{__pear} @@ -90,5 +90,8 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.4-1 +- Update to 1.4 + * Mon Mar 16 2009 Guillaume Kulakowski - 1.3.2-1 - Initial packaging Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 06:08:08 -0000 1.2 +++ sources 1 Jul 2009 18:26:12 -0000 1.3 @@ -1 +1 @@ -2a6c226f185f884bbca084ba95576aba Template-1.3.2.tgz +0bdc2fc1430093d7f912c75956bb4732 Template-1.4.tgz From llaumgui at fedoraproject.org Wed Jul 1 18:42:36 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:42:36 +0000 (UTC) Subject: rpms/php-ezc-Webdav/devel .cvsignore, 1.2, 1.3 php-ezc-Webdav.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701184236.D0B4611C02C4@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Webdav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11999 Modified Files: .cvsignore php-ezc-Webdav.spec sources Log Message: update to 1.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jun 2009 18:04:42 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:42:05 -0000 1.3 @@ -1 +1 @@ -Webdav-1.1.tgz +Webdav-1.1.1.tgz Index: php-ezc-Webdav.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/devel/php-ezc-Webdav.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Webdav.spec 14 Jun 2009 18:04:42 -0000 1.1 +++ php-ezc-Webdav.spec 1 Jul 2009 18:42:05 -0000 1.2 @@ -3,8 +3,8 @@ %global channel components.ez.no Name: php-ezc-Webdav -Version: 1.1 -Release: 2%{?dist} +Version: 1.1.1 +Release: 1%{?dist} Summary: Set up and run your own WebDAV server Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.1.1-1 +- Update to 1.1.1 + * Sun Jun 14 2009 Guillaume Kulakowski - 1.1-2 - php-pecl-Fileinfo is now required Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jun 2009 18:04:42 -0000 1.2 +++ sources 1 Jul 2009 18:42:05 -0000 1.3 @@ -1 +1 @@ -b97a4d88771171bbeba466837be97e4c Webdav-1.1.tgz +09086d80f855df68ad3706b40dc5634e Webdav-1.1.1.tgz From llaumgui at fedoraproject.org Wed Jul 1 18:42:36 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:42:36 +0000 (UTC) Subject: rpms/php-ezc-Webdav/F-11 .cvsignore, 1.2, 1.3 php-ezc-Webdav.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701184236.D0A6C11C02C3@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Webdav/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12018 Modified Files: .cvsignore php-ezc-Webdav.spec sources Log Message: update to 1.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jun 2009 18:06:54 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:42:05 -0000 1.3 @@ -1 +1 @@ -Webdav-1.1.tgz +Webdav-1.1.1.tgz Index: php-ezc-Webdav.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-11/php-ezc-Webdav.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Webdav.spec 14 Jun 2009 18:06:55 -0000 1.1 +++ php-ezc-Webdav.spec 1 Jul 2009 18:42:05 -0000 1.2 @@ -3,8 +3,8 @@ %global channel components.ez.no Name: php-ezc-Webdav -Version: 1.1 -Release: 2%{?dist} +Version: 1.1.1 +Release: 1%{?dist} Summary: Set up and run your own WebDAV server Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.1.1-1 +- Update to 1.1.1 + * Sun Jun 14 2009 Guillaume Kulakowski - 1.1-2 - php-pecl-Fileinfo is now required Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jun 2009 18:06:55 -0000 1.2 +++ sources 1 Jul 2009 18:42:05 -0000 1.3 @@ -1 +1 @@ -b97a4d88771171bbeba466837be97e4c Webdav-1.1.tgz +09086d80f855df68ad3706b40dc5634e Webdav-1.1.1.tgz From llaumgui at fedoraproject.org Wed Jul 1 18:42:40 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Wed, 1 Jul 2009 18:42:40 +0000 (UTC) Subject: rpms/php-ezc-Webdav/F-10 .cvsignore, 1.2, 1.3 php-ezc-Webdav.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701184240.D990911C02C3@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/php-ezc-Webdav/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12060 Modified Files: .cvsignore php-ezc-Webdav.spec sources Log Message: update to 1.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jun 2009 18:06:50 -0000 1.2 +++ .cvsignore 1 Jul 2009 18:42:10 -0000 1.3 @@ -1 +1 @@ -Webdav-1.1.tgz +Webdav-1.1.1.tgz Index: php-ezc-Webdav.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-10/php-ezc-Webdav.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Webdav.spec 14 Jun 2009 18:06:50 -0000 1.1 +++ php-ezc-Webdav.spec 1 Jul 2009 18:42:10 -0000 1.2 @@ -3,8 +3,8 @@ %global channel components.ez.no Name: php-ezc-Webdav -Version: 1.1 -Release: 2%{?dist} +Version: 1.1.1 +Release: 1%{?dist} Summary: Set up and run your own WebDAV server Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Wed Jul 01 2009 Guillaume Kulakowski - 1.1.1-1 +- Update to 1.1.1 + * Sun Jun 14 2009 Guillaume Kulakowski - 1.1-2 - php-pecl-Fileinfo is now required Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jun 2009 18:06:50 -0000 1.2 +++ sources 1 Jul 2009 18:42:10 -0000 1.3 @@ -1 +1 @@ -b97a4d88771171bbeba466837be97e4c Webdav-1.1.tgz +09086d80f855df68ad3706b40dc5634e Webdav-1.1.1.tgz From pkgdb at fedoraproject.org Wed Jul 1 19:01:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:01:47 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190147.7AF3E10F88C@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:01:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:01:53 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190153.1356F10F893@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:01:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:01:55 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190158.D4D4910F899@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora 5 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:01:58 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190158.E8C4E10F8A4@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:01:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:01:57 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190158.D9B2210F8A2@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora 6 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:02:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:02:00 +0000 Subject: [pkgdb] em8300-kmod ownership updated Message-ID: <20090701190200.A0F7910F8A7@bastion2.fedora.phx.redhat.com> Package em8300-kmod in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/em8300-kmod From pkgdb at fedoraproject.org Wed Jul 1 19:04:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:10 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchbugzilla Message-ID: <20090701190411.1244A10F896@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on perl-Net-IP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:13 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchcommits Message-ID: <20090701190413.E31BF10F8A3@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on perl-Net-IP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:15 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up commit Message-ID: <20090701190415.B0EB310F8A9@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on perl-Net-IP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:19 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up approveacls Message-ID: <20090701190422.3706910F8AE@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on perl-Net-IP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:57 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchbugzilla Message-ID: <20090701190457.CAD3B10F8A3@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on perl-Net-IP (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:59 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up commit Message-ID: <20090701190459.9568110F8A9@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on perl-Net-IP (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:59 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up approveacls Message-ID: <20090701190459.C1FCF10F8B7@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on perl-Net-IP (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:04:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:04:59 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchcommits Message-ID: <20090701190459.C76E610F8B8@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on perl-Net-IP (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:05 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchbugzilla Message-ID: <20090701190505.5A97B10F8C0@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on perl-Net-IP (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:06 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchcommits Message-ID: <20090701190506.7EF9110F8C4@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on perl-Net-IP (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:07 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up commit Message-ID: <20090701190507.81BB310F8CA@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on perl-Net-IP (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:07 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up approveacls Message-ID: <20090701190508.3CA3510F8CF@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on perl-Net-IP (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:12 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchbugzilla Message-ID: <20090701190512.B2C4F10F8CD@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on perl-Net-IP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:13 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchcommits Message-ID: <20090701190513.8DA7F10F8D3@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on perl-Net-IP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:13 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up commit Message-ID: <20090701190514.13E3710F8D8@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on perl-Net-IP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:14 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up approveacls Message-ID: <20090701190515.054DF10F8E8@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on perl-Net-IP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:18 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchbugzilla Message-ID: <20090701190519.0CF9810F89C@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on perl-Net-IP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:20 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up commit Message-ID: <20090701190520.774AD10F8E6@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on perl-Net-IP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:20 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up watchcommits Message-ID: <20090701190520.D045810F8ED@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on perl-Net-IP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From pkgdb at fedoraproject.org Wed Jul 1 19:05:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:05:22 +0000 Subject: [pkgdb] perl-Net-IP: scop has given up approveacls Message-ID: <20090701190522.7576D10F8F3@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on perl-Net-IP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-IP From dwalsh at fedoraproject.org Wed Jul 1 19:11:59 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 1 Jul 2009 19:11:59 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.107, 1.108 setroubleshoot.spec, 1.142, 1.143 sources, 1.119, 1.120 Message-ID: <20090701191159.2216811C02C3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18633 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Wed Jul 1 2009 Dan Walsh - 2.2.11-1 - Update to upstream 2009-7-01 Thomas Liu - Fixed browser behavior when there are no alerts - Fixed seapplet behavior when there are no alerts - Made delete all button delete alerts on server side and on local side Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- .cvsignore 29 Jun 2009 14:40:51 -0000 1.107 +++ .cvsignore 1 Jul 2009 19:11:58 -0000 1.108 @@ -24,3 +24,4 @@ setroubleshoot-2.2.7.tar.gz setroubleshoot-2.2.8.tar.gz setroubleshoot-2.2.9.tar.gz setroubleshoot-2.2.10.tar.gz +setroubleshoot-2.2.11.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- setroubleshoot.spec 29 Jun 2009 14:40:51 -0000 1.142 +++ setroubleshoot.spec 1 Jul 2009 19:11:58 -0000 1.143 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.10 +Version: 2.2.11 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,13 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Wed Jul 1 2009 Dan Walsh - 2.2.11-1 +- Update to upstream + 2009-7-01 Thomas Liu + - Fixed browser behavior when there are no alerts + - Fixed seapplet behavior when there are no alerts + - Made delete all button delete alerts on server side and on local side + * Mon Jun 29 2009 Dan Walsh - 2.2.10-1 - Add open access to audit_data.py define statements Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- sources 29 Jun 2009 14:40:51 -0000 1.119 +++ sources 1 Jul 2009 19:11:58 -0000 1.120 @@ -1 +1 @@ -2902eeb2b1843bbb5be6f06f09ebc7d5 setroubleshoot-2.2.10.tar.gz +f24258856dbe1fdda394f5a529313d72 setroubleshoot-2.2.11.tar.gz From scop at fedoraproject.org Wed Jul 1 19:12:08 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 1 Jul 2009 19:12:08 +0000 (UTC) Subject: rpms/mysqltuner/devel .cvsignore, 1.4, 1.5 mysqltuner.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090701191208.E42BD11C02C3@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/mysqltuner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18590 Modified Files: .cvsignore mysqltuner.spec sources Log Message: * Wed Jul 1 2009 Ville Skytt?? - 1.0.0-1 - Update to 1.0.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 4 Nov 2008 17:24:35 -0000 1.4 +++ .cvsignore 1 Jul 2009 19:11:38 -0000 1.5 @@ -1 +1 @@ -mysqltuner-1.0.0-rc1.pl +mysqltuner-1.0.0.pl Index: mysqltuner.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/devel/mysqltuner.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mysqltuner.spec 26 Feb 2009 03:43:39 -0000 1.8 +++ mysqltuner.spec 1 Jul 2009 19:11:38 -0000 1.9 @@ -1,14 +1,12 @@ -%define pre rc1 - Name: mysqltuner Version: 1.0.0 -Release: 0.2%{?pre:.%{pre}} +Release: 1%{?dist} Summary: MySQL high performance tuning script Group: Applications/Databases License: GPLv3+ URL: http://mysqltuner.com/ -Source0: http://mysqltuner.com/releases/mysqltuner-%{version}%{?pre:-%{pre}}.pl +Source0: http://mysqltuner.com/releases/mysqltuner-%{version}.pl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -45,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 Ville Skytt?? - 1.0.0-1 +- Update to 1.0.0. + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-0.2.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 4 Nov 2008 17:24:35 -0000 1.5 +++ sources 1 Jul 2009 19:11:38 -0000 1.6 @@ -1 +1 @@ -2d65c292e4038b2650cd8016127d0693 mysqltuner-1.0.0-rc1.pl +de535154b7fb28e437ba412434ea535e mysqltuner-1.0.0.pl From pkgdb at fedoraproject.org Wed Jul 1 19:14:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:14:01 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701191401.B90FC10F88C@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 19:14:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:14:04 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701191404.B597610F898@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From ajax at fedoraproject.org Wed Jul 1 19:22:18 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 1 Jul 2009 19:22:18 +0000 (UTC) Subject: rpms/kernel/F-11 TODO,1.70,1.71 Message-ID: <20090701192218.B986C11C02C3@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20774 Modified Files: TODO Log Message: todo cleanup Index: TODO =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/TODO,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- TODO 6 May 2009 08:23:30 -0000 1.70 +++ TODO 1 Jul 2009 19:22:18 -0000 1.71 @@ -103,6 +103,3 @@ https://bugzilla.redhat.com/492523 Needed for xen domU to boot on some machines. Upstream since 2.6.30-rc2. - -* linux-2.6-i2c-fix-bit-algorithm-timeout.patch - Should be in stable soon - fix for EDID under kms From limb at fedoraproject.org Wed Jul 1 19:31:00 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 1 Jul 2009 19:31:00 +0000 (UTC) Subject: rpms/vdrift/F-11 sources, 1.4, 1.5 vdrift-20071226-paths.patch, 1.1, 1.2 vdrift.spec, 1.15, 1.16 Message-ID: <20090701193100.DE4B511C02C3@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/vdrift/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22245 Modified Files: sources vdrift-20071226-paths.patch vdrift.spec Log Message: - Update to 2009-06-15. - Split data into noarch subpackage, BZ 508079. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 23 Feb 2009 16:33:06 -0000 1.4 +++ sources 1 Jul 2009 19:30:29 -0000 1.5 @@ -1 +1 @@ -5960be8c966bcbde42c054ca667b46ef vdrift-2009-02-15-src.tar.bz2 +bcb6ae8117134e954be00c8f074167eb vdrift-2009-06-15-src.tar.bz2 vdrift-20071226-paths.patch: Index: vdrift-20071226-paths.patch =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/F-11/vdrift-20071226-paths.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vdrift-20071226-paths.patch 19 Feb 2008 18:58:24 -0000 1.1 +++ vdrift-20071226-paths.patch 1 Jul 2009 19:30:29 -0000 1.2 @@ -1,13 +1,7 @@ ---- SConstruct 2008-02-13 11:01:59.000000000 -0600 -+++ SConstruct 2008-02-13 11:01:59.000000000 -0600 -@@ -35,8 +35,8 @@ - cppdefines = [] - default_settingsdir = ".vdrift" - default_prefix = "/usr" +--- SConstruct~ 2009-06-30 13:31:08.000000000 -0500 ++++ SConstruct 2009-06-30 13:37:08.000000000 -0500 +@@ -38,2 +38,2 @@ -default_datadir = "share/games/vdrift/data" --default_bindir = "share/games/vdrift/bin" +-default_bindir = "bin" +default_datadir = "/share/vdrift" +default_bindir = "/bin" - - # convenience var for identifying a windows platform - Index: vdrift.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/F-11/vdrift.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- vdrift.spec 23 Feb 2009 19:30:22 -0000 1.15 +++ vdrift.spec 1 Jul 2009 19:30:29 -0000 1.16 @@ -1,23 +1,19 @@ Name: vdrift -Version: 20090215 +Version: 20090615 Release: 1%{?dist} Summary: Driving/drift racing simulation Group: Amusements/Games License: GPLv2+ URL: http://vdrift.net -Source0: %{name}-2009-02-15-src.tar.bz2 +Source0: %{name}-2009-06-15-src.tar.bz2 #Original upstream: -#Source0: http://downloads.sourceforge.net/%{name}/%{name}-2009-02-15-src.tar.bz2 +#Source0: http://downloads.sourceforge.net/%{name}/%{name}-2009-06-15-src.tar.bz2 # Modified: # cd docs -# rm HOW_TO_COMPILE.txt SConscript INSTALL +# rm SConscript INSTALL # cd .. -# rm bullet-2.64/glew32.dll -# rm bullet-2.64/GLUT32.DLL -# rm -rf bullet-2.64/Glut -# rm -rf bullet-2.64/Extras -# rm -rf bullet-2.64/Demos +# rm -rf tools/win Source1: vdrift.desktop Source2: vdrift.png @@ -39,10 +35,12 @@ BuildRequires: jam BuildRequires: libvorbis-devel BuildRequires: desktop-file-utils BuildRequires: glew-devel +BuildRequires: boost-devel +BuildRequires: asio-devel -#Requires: vdrift-data = %{version} -Obsoletes: vdrift-data <= 20071226 -Provides: vdrift-data = %{version}-%{release} +Requires: vdrift-data = %{version} +#Obsoletes: vdrift-data <= 20071226 +#Provides: vdrift-data = %{version}-%{release} %description @@ -51,9 +49,23 @@ racing in mind. It's powered by the exce released under the GNU General Public License (GPL) v2. It is currently available for Linux, FreeBSD, Mac OS X and Windows (Cygwin). +%package data +Summary: Driving/drift racing simulation data +Group: Amusements/Games +Requires: vdrift = %{version} +BuildArch: noarch + +%description data +VDrift is a cross-platform, open source driving simulation made with drift +racing in mind. It's powered by the excellent Vamos physics engine. It is +released under the GNU General Public License (GPL) v2. It is currently +available for Linux, FreeBSD, Mac OS X and Windows (Cygwin). + +These are the data files. + %prep -%setup -qn vdrift-2009-02-15 +%setup -qn vdrift-2009-06-15 %ifarch ppc ppc64 sed -i 's/linuxx86/linuxppc/' src/SConscript @@ -73,8 +85,8 @@ sed -i 's/linuxx86/linuxppc/' src/SConsc %build -tar -xzf bullet-2.73-sp1.tgz -/bin/chmod -x bullet-2.73/src/LinearMath/*.h +#tar -xzf bullet-2.73-sp1.tgz +#/bin/chmod -x bullet-2.73/src/LinearMath/*.h #cd bullet-2.73 #./autogen.sh #./configure @@ -123,12 +135,18 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc docs/* %{_bindir}/vdrift -%{_datadir}/vdrift %{_datadir}/applications/fedora-vdrift.desktop %{_datadir}/icons/hicolor/32x32/apps/vdrift.png +%files data +%defattr(-,root,root,-) +%{_datadir}/vdrift %changelog +* Tue Jun 30 2009 Jon Ciesla - 20090615-1 +- Update to 2009-06-15. +- Split data into noarch subpackage, BZ 508079. + * Thu Feb 19 2009 Jon Ciesla - 20090215-1 - Update to 2009-02-15. - Includes patch. From jdennis at fedoraproject.org Wed Jul 1 19:47:43 2009 From: jdennis at fedoraproject.org (John Dennis) Date: Wed, 1 Jul 2009 19:47:43 +0000 (UTC) Subject: rpms/python-nss/devel .cvsignore, 1.6, 1.7 python-nss.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090701194743.A2D2711C02C3@cvs1.fedora.phx.redhat.com> Author: jdennis Update of /cvs/pkgs/rpms/python-nss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26149 Modified Files: .cvsignore python-nss.spec sources Log Message: restore ssl.nss_init and ssl.nss_shutdown but make them deprecated add __version__ string to nss module Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 30 Jun 2009 21:45:19 -0000 1.6 +++ .cvsignore 1 Jul 2009 19:47:13 -0000 1.7 @@ -1 +1 @@ -python-nss-0.4.tar.bz2 +python-nss-0.5.tar.bz2 Index: python-nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/python-nss.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-nss.spec 30 Jun 2009 21:45:19 -0000 1.8 +++ python-nss.spec 1 Jul 2009 19:47:13 -0000 1.9 @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-nss -Version: 0.4 +Version: 0.5 Release: 1%{?dist} Summary: Python bindings for Network Security Services (NSS) @@ -69,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 John Dennis - 0.5-1 +- restore ssl.nss_init and ssl.nss_shutdown but make them deprecated + add __version__ string to nss module + * Tue Jun 30 2009 John Dennis - 0.4-1 - add binding for NSS_NoDB_Init(), bug #509002 move nss_init and nss_shutdown from ssl module to nss module Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 30 Jun 2009 21:45:19 -0000 1.7 +++ sources 1 Jul 2009 19:47:13 -0000 1.8 @@ -1 +1 @@ -6f936b22a5b76e0447a91c62ea0f2a2b python-nss-0.4.tar.bz2 +b038beb638a8a843f653a6771d9d5c48 python-nss-0.5.tar.bz2 From spot at fedoraproject.org Wed Jul 1 19:50:48 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 19:50:48 +0000 (UTC) Subject: rpms/asymptote/devel .cvsignore, 1.49, 1.50 asymptote.spec, 1.62, 1.63 sources, 1.49, 1.50 Message-ID: <20090701195048.877B611C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/asymptote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26868 Modified Files: .cvsignore asymptote.spec sources Log Message: 1.78 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 18 May 2009 19:53:06 -0000 1.49 +++ .cvsignore 1 Jul 2009 19:50:18 -0000 1.50 @@ -1 +1 @@ -asymptote-1.73.src.tgz +asymptote-1.78.src.tgz Index: asymptote.spec =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/asymptote.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- asymptote.spec 18 May 2009 19:55:39 -0000 1.62 +++ asymptote.spec 1 Jul 2009 19:50:18 -0000 1.63 @@ -4,7 +4,7 @@ %define xemacs_sitelisp %{_datadir}/xemacs/site-packages/lisp Name: asymptote -Version: 1.73 +Version: 1.78 Release: 1%{?dist} Summary: Descriptive vector graphics language @@ -142,6 +142,9 @@ fi %changelog +* Wed Jul 1 2009 Tom "spot" Callaway - 1.78-1 +- update to 1.78 + * Mon May 18 2009 Tom "spot" Callaway - 1.73-1 - update to 1.73 - change license from GPLv3+ to LGPLv3+ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/sources,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- sources 18 May 2009 19:53:06 -0000 1.49 +++ sources 1 Jul 2009 19:50:18 -0000 1.50 @@ -1 +1 @@ -1ded335bc63b662a6eb920a4c065706c asymptote-1.73.src.tgz +e0b1f2ace3db7444aceb1bd09a2b1b21 asymptote-1.78.src.tgz From pkgdb at fedoraproject.org Wed Jul 1 19:57:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:05 +0000 Subject: [pkgdb] dumpasn1: scop has requested watchbugzilla Message-ID: <20090701195705.5AE5410F896@bastion2.fedora.phx.redhat.com> scop has requested the watchbugzilla acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:08 +0000 Subject: [pkgdb] dumpasn1: scop has requested watchcommits Message-ID: <20090701195708.3187A10F89C@bastion2.fedora.phx.redhat.com> scop has requested the watchcommits acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:10 +0000 Subject: [pkgdb] dumpasn1: scop has requested commit Message-ID: <20090701195710.C1DCE10F88C@bastion2.fedora.phx.redhat.com> scop has requested the commit acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:15 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195715.6E86D10F8A6@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:17 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195717.6DA1210F8A8@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 4 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:12 +0000 Subject: [pkgdb] dumpasn1: scop has requested approveacls Message-ID: <20090701195712.E61D710F8A3@bastion2.fedora.phx.redhat.com> scop has requested the approveacls acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:17 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195717.CF47510F8AA@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 5 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:20 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195720.4D5B510F8AB@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 6 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:21 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195721.199D810F8AF@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:23 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195723.4F87310F899@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:25 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195725.3DED010F8AD@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:26 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195726.DCC0410F8B0@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:47 +0000 Subject: [pkgdb] dumpasn1 had acl change status Message-ID: <20090701195747.4527F10F8A3@bastion2.fedora.phx.redhat.com> scop has set the watchbugzilla acl on dumpasn1 (Fedora devel) to Approved for scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:47 +0000 Subject: [pkgdb] dumpasn1 had acl change status Message-ID: <20090701195747.D625C10F8A6@bastion2.fedora.phx.redhat.com> scop has set the watchcommits acl on dumpasn1 (Fedora devel) to Approved for scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:49 +0000 Subject: [pkgdb] dumpasn1 had acl change status Message-ID: <20090701195749.35AFA10F8A8@bastion2.fedora.phx.redhat.com> scop has set the commit acl on dumpasn1 (Fedora devel) to Approved for scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:55 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195755.5423E10F8B3@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora devel is now owned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:57:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:57:51 +0000 Subject: [pkgdb] dumpasn1 had acl change status Message-ID: <20090701195751.2593210F8A9@bastion2.fedora.phx.redhat.com> scop has set the approveacls acl on dumpasn1 (Fedora devel) to Approved for scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:58:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:10 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195810.2A34D10F896@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora devel is now owned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:33 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195833.CFF8E10F8A6@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora devel is now owned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:59:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:59:02 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090701195919.12DA310F8AD@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From hubert at fedoraproject.org Wed Jul 1 19:58:38 2009 From: hubert at fedoraproject.org (Hubert Plociniczak) Date: Wed, 1 Jul 2009 19:58:38 +0000 (UTC) Subject: rpms/rabbitmq-server/devel .cvsignore, 1.2, 1.3 rabbitmq-server.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701195838.AE12711C02C3@cvs1.fedora.phx.redhat.com> Author: hubert Update of /cvs/pkgs/rpms/rabbitmq-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28411 Modified Files: .cvsignore rabbitmq-server.spec sources Log Message: New upstream release 1.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 May 2009 10:47:06 -0000 1.2 +++ .cvsignore 1 Jul 2009 19:58:08 -0000 1.3 @@ -1 +1 @@ -rabbitmq-server-1.5.5.tar.gz +rabbitmq-server-1.6.0.tar.gz Index: rabbitmq-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/devel/rabbitmq-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rabbitmq-server.spec 26 May 2009 16:08:57 -0000 1.2 +++ rabbitmq-server.spec 1 Jul 2009 19:58:08 -0000 1.3 @@ -1,8 +1,8 @@ %define debug_package %{nil} Name: rabbitmq-server -Version: 1.5.5 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MPLv1.1 Group: Development/Libraries Source: http://www.rabbitmq.com/releases/rabbitmq-server/v%{version}/%{name}-%{version}.tar.gz @@ -117,6 +117,9 @@ fi rm -rf %{buildroot} %changelog +* Wed Jun 17 2009 Matthias Radestock 1.6.0-1 +- New upstream release + * Tue May 26 2009 Hubert Plociniczak 1.5.5-2 - Include dist macro in the release number Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 May 2009 10:47:06 -0000 1.2 +++ sources 1 Jul 2009 19:58:08 -0000 1.3 @@ -1 +1 @@ -1dceb98bb57cd6acef90f58e96a7fce4 rabbitmq-server-1.5.5.tar.gz +af3b0d868d58e5aefb4f0837b82ca010 rabbitmq-server-1.6.0.tar.gz From pkgdb at fedoraproject.org Wed Jul 1 19:58:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:51 +0000 Subject: [pkgdb] dumpasn1: scop has given up commit Message-ID: <20090701195905.29EFF10F8AE@bastion2.fedora.phx.redhat.com> scop has given up the commit acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:58:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:50 +0000 Subject: [pkgdb] dumpasn1: scop has given up watchcommits Message-ID: <20090701195856.3933410F8B2@bastion2.fedora.phx.redhat.com> scop has given up the watchcommits acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:58:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:49 +0000 Subject: [pkgdb] dumpasn1: scop has given up watchbugzilla Message-ID: <20090701195900.EBBAD10F8B1@bastion2.fedora.phx.redhat.com> scop has given up the watchbugzilla acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Wed Jul 1 19:58:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 19:58:52 +0000 Subject: [pkgdb] dumpasn1: scop has given up approveacls Message-ID: <20090701195915.4D00A10F8C2@bastion2.fedora.phx.redhat.com> scop has given up the approveacls acl on dumpasn1 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From jdennis at fedoraproject.org Wed Jul 1 20:01:43 2009 From: jdennis at fedoraproject.org (John Dennis) Date: Wed, 1 Jul 2009 20:01:43 +0000 (UTC) Subject: rpms/python-nss/F-11 .cvsignore, 1.4, 1.5 python-nss.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090701200143.2965F11C02C3@cvs1.fedora.phx.redhat.com> Author: jdennis Update of /cvs/pkgs/rpms/python-nss/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29129 Modified Files: .cvsignore python-nss.spec sources Log Message: restore ssl.nss_init and ssl.nss_shutdown but make them deprecated add __version__ string to nss module Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 30 Jun 2009 21:59:46 -0000 1.4 +++ .cvsignore 1 Jul 2009 20:01:12 -0000 1.5 @@ -1 +1 @@ -python-nss-0.4.tar.bz2 +python-nss-0.5.tar.bz2 Index: python-nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/F-11/python-nss.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-nss.spec 30 Jun 2009 21:59:46 -0000 1.6 +++ python-nss.spec 1 Jul 2009 20:01:12 -0000 1.7 @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-nss -Version: 0.4 +Version: 0.5 Release: 1%{?dist} Summary: Python bindings for Network Security Services (NSS) @@ -69,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 John Dennis - 0.5-1 +- restore ssl.nss_init and ssl.nss_shutdown but make them deprecated + add __version__ string to nss module + * Tue Jun 30 2009 John Dennis - 0.4-1 - add binding for NSS_NoDB_Init(), bug #509002 move nss_init and nss_shutdown from ssl module to nss module Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 30 Jun 2009 21:59:46 -0000 1.4 +++ sources 1 Jul 2009 20:01:12 -0000 1.5 @@ -1 +1 @@ -6f936b22a5b76e0447a91c62ea0f2a2b python-nss-0.4.tar.bz2 +b038beb638a8a843f653a6771d9d5c48 python-nss-0.5.tar.bz2 From clumens at fedoraproject.org Wed Jul 1 20:01:59 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Wed, 1 Jul 2009 20:01:59 +0000 (UTC) Subject: rpms/system-config-kickstart/devel .cvsignore, 1.60, 1.61 sources, 1.74, 1.75 system-config-kickstart.spec, 1.79, 1.80 Message-ID: <20090701200159.8505811C02C3@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/system-config-kickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29294 Modified Files: .cvsignore sources system-config-kickstart.spec Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 1 Apr 2009 21:01:15 -0000 1.60 +++ .cvsignore 1 Jul 2009 20:01:29 -0000 1.61 @@ -4,3 +4,4 @@ system-config-kickstart-2.7.18.tar.gz system-config-kickstart-2.7.19.tar.gz system-config-kickstart-2.7.21.tar.gz system-config-kickstart-2.7.22.tar.gz +system-config-kickstart-2.8.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/sources,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sources 1 Apr 2009 21:01:15 -0000 1.74 +++ sources 1 Jul 2009 20:01:29 -0000 1.75 @@ -1 +1 @@ -38310d9b3783c04d00017ef9c20e9feb system-config-kickstart-2.7.22.tar.gz +3dd953710331073b481559b105437e8b system-config-kickstart-2.8.0.tar.gz Index: system-config-kickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/system-config-kickstart.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- system-config-kickstart.spec 1 Apr 2009 21:01:15 -0000 1.79 +++ system-config-kickstart.spec 1 Jul 2009 20:01:29 -0000 1.80 @@ -1,6 +1,6 @@ Summary: A graphical interface for making kickstart files Name: system-config-kickstart -Version: 2.7.22 +Version: 2.8.0 Release: 1%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/Tools License: GPLv2+ @@ -68,14 +68,23 @@ fi %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-kickstart.png %changelog +* Wed Jul 01 2009 Chris Lumens - 2.8.0-1 +- Allow specifying anything for a network device name, not just ethX (#508089). +- Don't traceback when opening files with null bytes (#508092). +- Make the OK button on some dialogs insensitive until changes happen (#493887). +- Don't traceback if the filename entry is blank (#500409). +- Lots more UI style/layout updates (#493842, #493857, rrakus). +- Don't traceback if given an invalid language or timezone (#487390). +- Update to glade3 (#495754, rrakus). +- Add a progress window when saving or previewing files (#493879, rrakus). +- Use the standard about/license dialog (rrakus, #493926). +- Center dialogs on the parent (rrakus, #493823). + * Wed Apr 01 2009 Chris Lumens - 2.7.22-1 - Use dataList().append when adding partitions and network devices (#492100). - Update translation files (#490018). (clumens) - Lots of translation file udpates. -* Wed Feb 25 2009 Fedora Release Engineering - 2.7.21-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - * Tue Dec 23 2008 Chris Lumens - 2.7.21-1 - Add "make bumpver" target from pykickstart. - Translate spaces in timezones to underscores when reading and writing (#475129). From pkgdb at fedoraproject.org Wed Jul 1 20:03:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:38 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200338.D894B10F8A4@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 1 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:41 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200341.9401210F8A8@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 2 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:44 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200344.B6ABC10F8AE@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 5 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:41 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200342.1843710F8AA@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 3 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:44 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200344.81F6910F8AC@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 4 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:46 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200346.49A4E10F8AF@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 6 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:47 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200347.B856210F89C@bastion2.fedora.phx.redhat.com> Package freedroid in Red Hat Linux 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:49 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200349.7CA0E10F8A3@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:50 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200350.7234A10F8B1@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:51 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200351.5552C10F8B3@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From rstrode at fedoraproject.org Wed Jul 1 20:04:08 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Wed, 1 Jul 2009 20:04:08 +0000 (UTC) Subject: rpms/gdm/devel gdm.spec,1.473,1.474 Message-ID: <20090701200408.D082B11C02C3@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30466 Modified Files: gdm.spec Log Message: - Drop defunct arch conditional buildrequires Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.473 retrieving revision 1.474 diff -u -p -r1.473 -r1.474 --- gdm.spec 1 Jul 2009 13:55:22 -0000 1.473 +++ gdm.spec 1 Jul 2009 20:03:38 -0000 1.474 @@ -16,7 +16,7 @@ Summary: The GNOME Display Manager Name: gdm Version: 2.26.1 -Release: 11%{?dist} +Release: 12%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -391,6 +391,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Wed Jul 01 2009 Ray Strode - 1:2.26.1-12 +- Drop defunct arch conditional buildrequires + * Tue Jun 30 2009 Matthias Clasen - 1:2.26.1-11 - Rebuild against new libxklavier From pkgdb at fedoraproject.org Wed Jul 1 20:03:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:53 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200353.7C7C910F8B5@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:04:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:10 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200410.D013810F88E@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:11 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200411.7D0E610F896@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:12 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200412.BCC5010F8A6@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 1 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:14 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200414.4DA9310F8A8@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 2 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:15 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200415.BC4CA10F8B6@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 3 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:16 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200416.AA19910F8B9@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 4 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:17 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200417.A989F10F8BA@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 5 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:20 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200420.63A6610F8BD@bastion2.fedora.phx.redhat.com> Package http_ping in Red Hat Linux 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:19 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200419.43CC410F8BC@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 6 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:22 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200422.3303910F8AC@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:22 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200422.BDA3610F8BE@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:24 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200424.D44F210F8C0@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:25 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701200425.D19D310F8C2@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 20:04:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:32 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200432.52E6010F8C3@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:04:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:34 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200434.1C03610F8AF@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:04:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:04:36 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200436.2CE7D10F8C8@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 1 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:16 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200516.EFCDA10F8B4@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 2 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:19 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200519.7E53F10F8B5@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 4 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:21 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200521.7E6D210F8B9@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 3 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:21 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200521.BC0E910F8CA@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 6 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:22 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200522.C861C10F8CE@bastion2.fedora.phx.redhat.com> Package id3v2 in Red Hat Linux 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:21 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200521.F383410F8CC@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 5 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:24 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200525.05AAC10F8D0@bastion2.fedora.phx.redhat.com> Package id3v2 in Red Hat Linux 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:25 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200525.977C810F8D2@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:27 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200527.B090F10F8BB@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:28 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200528.AB89310F8BD@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:30 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090701200530.3478010F8D3@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Wed Jul 1 20:05:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:49 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200549.510DF10F8AB@bastion2.fedora.phx.redhat.com> Package pscan in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 20:05:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:52 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200552.24C7E10F8C1@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 20:05:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:55 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200555.DFAB010F8C2@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 8 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 20:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:56 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200556.D68AF10F8D7@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 20:05:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:58 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200558.9594910F8D6@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 20:05:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:05:59 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701200600.094ED10F8D9@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From hubert at fedoraproject.org Wed Jul 1 20:14:40 2009 From: hubert at fedoraproject.org (Hubert Plociniczak) Date: Wed, 1 Jul 2009 20:14:40 +0000 (UTC) Subject: rpms/rabbitmq-server/F-9 .cvsignore, 1.2, 1.3 rabbitmq-server.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701201440.C5F6911C02C3@cvs1.fedora.phx.redhat.com> Author: hubert Update of /cvs/pkgs/rpms/rabbitmq-server/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32609 Modified Files: .cvsignore rabbitmq-server.spec sources Log Message: New upstream release 1.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 May 2009 15:18:09 -0000 1.2 +++ .cvsignore 1 Jul 2009 20:14:10 -0000 1.3 @@ -1 +1 @@ -rabbitmq-server-1.5.5.tar.gz +rabbitmq-server-1.6.0.tar.gz Index: rabbitmq-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-9/rabbitmq-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rabbitmq-server.spec 26 May 2009 16:05:53 -0000 1.2 +++ rabbitmq-server.spec 1 Jul 2009 20:14:10 -0000 1.3 @@ -1,8 +1,8 @@ %define debug_package %{nil} Name: rabbitmq-server -Version: 1.5.5 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MPLv1.1 Group: Development/Libraries Source: http://www.rabbitmq.com/releases/rabbitmq-server/v%{version}/%{name}-%{version}.tar.gz @@ -117,6 +117,9 @@ fi rm -rf %{buildroot} %changelog +* Wed Jun 17 2009 Matthias Radestock 1.6.0-1 +- New upstream release + * Tue May 26 2009 Hubert Plociniczak 1.5.5-2 - Include dist macro in the release number Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 May 2009 15:18:10 -0000 1.2 +++ sources 1 Jul 2009 20:14:10 -0000 1.3 @@ -1 +1 @@ -1dceb98bb57cd6acef90f58e96a7fce4 rabbitmq-server-1.5.5.tar.gz +af3b0d868d58e5aefb4f0837b82ca010 rabbitmq-server-1.6.0.tar.gz From hubert at fedoraproject.org Wed Jul 1 20:17:53 2009 From: hubert at fedoraproject.org (Hubert Plociniczak) Date: Wed, 1 Jul 2009 20:17:53 +0000 (UTC) Subject: rpms/rabbitmq-server/F-10 .cvsignore, 1.2, 1.3 rabbitmq-server.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701201754.067B611C02C3@cvs1.fedora.phx.redhat.com> Author: hubert Update of /cvs/pkgs/rpms/rabbitmq-server/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv892 Modified Files: .cvsignore rabbitmq-server.spec sources Log Message: New upstream release 1.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 May 2009 16:14:13 -0000 1.2 +++ .cvsignore 1 Jul 2009 20:17:53 -0000 1.3 @@ -1 +1 @@ -rabbitmq-server-1.5.5.tar.gz +rabbitmq-server-1.6.0.tar.gz Index: rabbitmq-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-10/rabbitmq-server.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rabbitmq-server.spec 26 May 2009 16:14:13 -0000 1.1 +++ rabbitmq-server.spec 1 Jul 2009 20:17:53 -0000 1.2 @@ -1,8 +1,8 @@ %define debug_package %{nil} Name: rabbitmq-server -Version: 1.5.5 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MPLv1.1 Group: Development/Libraries Source: http://www.rabbitmq.com/releases/rabbitmq-server/v%{version}/%{name}-%{version}.tar.gz @@ -117,6 +117,9 @@ fi rm -rf %{buildroot} %changelog +* Wed Jun 17 2009 Matthias Radestock 1.6.0-1 +- New upstream release + * Tue May 26 2009 Hubert Plociniczak 1.5.5-2 - Include dist macro in the release number Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 May 2009 16:14:13 -0000 1.2 +++ sources 1 Jul 2009 20:17:53 -0000 1.3 @@ -1 +1 @@ -1dceb98bb57cd6acef90f58e96a7fce4 rabbitmq-server-1.5.5.tar.gz +af3b0d868d58e5aefb4f0837b82ca010 rabbitmq-server-1.6.0.tar.gz From hubert at fedoraproject.org Wed Jul 1 20:22:31 2009 From: hubert at fedoraproject.org (Hubert Plociniczak) Date: Wed, 1 Jul 2009 20:22:31 +0000 (UTC) Subject: rpms/rabbitmq-server/F-11 .cvsignore, 1.2, 1.3 rabbitmq-server.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090701202231.7207211C02C3@cvs1.fedora.phx.redhat.com> Author: hubert Update of /cvs/pkgs/rpms/rabbitmq-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1817 Modified Files: .cvsignore rabbitmq-server.spec sources Log Message: New upstream release 1.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 May 2009 16:19:25 -0000 1.2 +++ .cvsignore 1 Jul 2009 20:22:00 -0000 1.3 @@ -1 +1 @@ -rabbitmq-server-1.5.5.tar.gz +rabbitmq-server-1.6.0.tar.gz Index: rabbitmq-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-11/rabbitmq-server.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rabbitmq-server.spec 26 May 2009 16:19:25 -0000 1.1 +++ rabbitmq-server.spec 1 Jul 2009 20:22:01 -0000 1.2 @@ -1,8 +1,8 @@ %define debug_package %{nil} Name: rabbitmq-server -Version: 1.5.5 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MPLv1.1 Group: Development/Libraries Source: http://www.rabbitmq.com/releases/rabbitmq-server/v%{version}/%{name}-%{version}.tar.gz @@ -117,6 +117,9 @@ fi rm -rf %{buildroot} %changelog +* Wed Jun 17 2009 Matthias Radestock 1.6.0-1 +- New upstream release + * Tue May 26 2009 Hubert Plociniczak 1.5.5-2 - Include dist macro in the release number Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 May 2009 16:19:25 -0000 1.2 +++ sources 1 Jul 2009 20:22:01 -0000 1.3 @@ -1 +1 @@ -1dceb98bb57cd6acef90f58e96a7fce4 rabbitmq-server-1.5.5.tar.gz +af3b0d868d58e5aefb4f0837b82ca010 rabbitmq-server-1.6.0.tar.gz From harald at fedoraproject.org Wed Jul 1 20:23:43 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 1 Jul 2009 20:23:43 +0000 (UTC) Subject: rpms/dracut/F-11 dracut.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701202343.013E611C02C3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2076 Modified Files: .cvsignore sources Added Files: dracut.spec Log Message: * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 --- NEW FILE dracut.spec --- %if 0%{?fedora} < 12 %define with_switch_root 1 %else %define with_switch_root 0 %endif %if %{defined gittag} %define rdist 1.git%{gittag}%{?dist} %define dashgittag -%{gittag} %else %define rdist %{?dist} %endif Name: dracut Version: 0.2 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base License: GPLv2+ URL: http://apps.sourceforge.net/trac/dracut/wiki Source0: dracut-%{version}%{?dashgittag}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: udev Requires: util-linux-ng Requires: module-init-tools Requires: cpio Requires: coreutils Requires: findutils Requires: grep Requires: mktemp Requires: mount Requires: bash Requires: /bin/sh Requires: fileutils, grep, mount, gzip, tar, mktemp >= 1.5-5, findutils Requires: lvm2 >= 2.02.33-9, dhclient Requires: filesystem >= 2.1.0, cpio, device-mapper, initscripts >= 8.63-1 Requires: e2fsprogs >= 1.38-12, libselinux, libsepol, coreutils Requires: mdadm, elfutils-libelf, plymouth >= 0.7.0 Requires: cryptsetup-luks %ifnarch s390 s390x Requires: dmraid Requires: kbd %endif %if ! 0%{?with_switch_root} BuildArch: noarch %endif %description dracut is a new, event-driven initramfs infrastructure based around udev. %package generic Summary: Metapackage to build a generic initramfs Requires: %{name} = %{version}-%{release} Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute %description generic This package requires everything which is needed to build a generic all purpose initramfs. %prep %setup -q -n %{name}-%{version}%{?dashgittag} %build make %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT sbindir=/sbin sysconfdir=/etc mandir=%{_mandir} %if ! 0%{?with_switch_root} rm -f $RPM_BUILD_ROOT/sbin/switch_root %endif %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut %if 0%{?with_switch_root} /sbin/switch_root %endif %dir %{_datadir}/dracut %{_datadir}/dracut/dracut-functions %{_datadir}/dracut/modules.d %config(noreplace) /etc/dracut.conf %{_mandir}/man8/dracut.8* %files generic %defattr(-,root,root,0755) %doc README.generic %changelog * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 * Fri Jun 19 2009 Harald Hoyer 0.1-1 - first release * Thu Dec 18 2008 Jeremy Katz - 0.0-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:08:00 -0000 1.1 +++ .cvsignore 1 Jul 2009 20:23:12 -0000 1.2 @@ -0,0 +1 @@ +dracut-0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:08:00 -0000 1.1 +++ sources 1 Jul 2009 20:23:12 -0000 1.2 @@ -0,0 +1 @@ +96dfe405f4a5bbf95229cc2f96623859 dracut-0.2.tar.bz2 From harald at fedoraproject.org Wed Jul 1 20:24:30 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 1 Jul 2009 20:24:30 +0000 (UTC) Subject: rpms/dracut/devel dracut.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090701202430.EBD4211C02C3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2490 Modified Files: sources Added Files: dracut.spec Log Message: * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 --- NEW FILE dracut.spec --- %if 0%{?fedora} < 12 %define with_switch_root 1 %else %define with_switch_root 0 %endif %if %{defined gittag} %define rdist 1.git%{gittag}%{?dist} %define dashgittag -%{gittag} %else %define rdist %{?dist} %endif Name: dracut Version: 0.2 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base License: GPLv2+ URL: http://apps.sourceforge.net/trac/dracut/wiki Source0: dracut-%{version}%{?dashgittag}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: udev Requires: util-linux-ng Requires: module-init-tools Requires: cpio Requires: coreutils Requires: findutils Requires: grep Requires: mktemp Requires: mount Requires: bash Requires: /bin/sh Requires: fileutils, grep, mount, gzip, tar, mktemp >= 1.5-5, findutils Requires: lvm2 >= 2.02.33-9, dhclient Requires: filesystem >= 2.1.0, cpio, device-mapper, initscripts >= 8.63-1 Requires: e2fsprogs >= 1.38-12, libselinux, libsepol, coreutils Requires: mdadm, elfutils-libelf, plymouth >= 0.7.0 Requires: cryptsetup-luks %ifnarch s390 s390x Requires: dmraid Requires: kbd %endif %if ! 0%{?with_switch_root} BuildArch: noarch %endif %description dracut is a new, event-driven initramfs infrastructure based around udev. %package generic Summary: Metapackage to build a generic initramfs Requires: %{name} = %{version}-%{release} Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute %description generic This package requires everything which is needed to build a generic all purpose initramfs. %prep %setup -q -n %{name}-%{version}%{?dashgittag} %build make %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT sbindir=/sbin sysconfdir=/etc mandir=%{_mandir} %if ! 0%{?with_switch_root} rm -f $RPM_BUILD_ROOT/sbin/switch_root %endif %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut %if 0%{?with_switch_root} /sbin/switch_root %endif %dir %{_datadir}/dracut %{_datadir}/dracut/dracut-functions %{_datadir}/dracut/modules.d %config(noreplace) /etc/dracut.conf %{_mandir}/man8/dracut.8* %files generic %defattr(-,root,root,0755) %doc README.generic %changelog * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 * Fri Jun 19 2009 Harald Hoyer 0.1-1 - first release * Thu Dec 18 2008 Jeremy Katz - 0.0-1 - Initial build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:08:00 -0000 1.1 +++ sources 1 Jul 2009 20:24:30 -0000 1.2 @@ -0,0 +1 @@ +96dfe405f4a5bbf95229cc2f96623859 dracut-0.2.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 1 20:25:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:25:26 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701202526.3796110F88C@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora devel is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:25:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:25:33 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701202533.BB63310F898@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 10 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:25:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:25:32 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701202532.8E05010F88E@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 9 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:25:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:25:34 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701202534.8883310F80A@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 11 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:24 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701200324.3D71F10F88E@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 9 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:03:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:24 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701200324.F132510F899@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 10 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:03:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:28 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701200328.9B73710F8A2@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 11 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:03:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:20 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701200320.6E2FE10F896@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:03:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:37 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200337.C7A1F10F893@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora 7 was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:03:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:03:36 +0000 Subject: [pkgdb] freedroid ownership updated Message-ID: <20090701200336.90C3210F88C@bastion2.fedora.phx.redhat.com> Package freedroid in Fedora devel was orphaned by scop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/freedroid From pkgdb at fedoraproject.org Wed Jul 1 20:26:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:26:43 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701202643.BF25C10F80A@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora devel is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:26:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:26:45 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701202645.E4E0B10F893@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 9 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:26:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:26:46 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701202646.61BEA10F898@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 10 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From pkgdb at fedoraproject.org Wed Jul 1 20:26:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 20:26:49 +0000 Subject: [pkgdb] zzuf ownership updated Message-ID: <20090701202649.C84DF10F89C@bastion2.fedora.phx.redhat.com> Package zzuf in Fedora 11 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zzuf From slankes at fedoraproject.org Wed Jul 1 20:30:12 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Wed, 1 Jul 2009 20:30:12 +0000 (UTC) Subject: rpms/skanlite/devel import.log, NONE, 1.1 skanlite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701203012.4D5B211C02C3@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/skanlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3756/devel Modified Files: .cvsignore sources Added Files: import.log skanlite.spec Log Message: Initial cvs import --- NEW FILE import.log --- skanlite-0_3-2_fc11:HEAD:skanlite-0.3-2.fc11.src.rpm:1246480151 --- NEW FILE skanlite.spec --- %global kdeversion 4.2.4 Name: skanlite Version: 0.3 Release: 2%{?dist} Summary: Lightweight scanning program Group: Applications/Productivity # Actually: GPLv2 or GPLv3 or any later Version approved by KDE e.V. License: GPLv2 or GPLv3 URL: http://docs.kde.org/development/en/extragear-graphics/skanlite/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{kdeversion}/src/extragear/skanlite-%{version}-kde%{kdeversion}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel >= 4.1.0 BuildRequires: kdegraphics-devel >= 4.1.0 BuildRequires: cmake BuildRequires: gettext %description Skanlite is a light-weight scanning application based on libksane. %prep %setup -q -n skanlite-%{version}-kde%{kdeversion} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir -p %{buildroot} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} # validate desktop file desktop-file-install \ --dir="%{buildroot}%{_datadir}/applications/kde4" \ %{buildroot}%{_datadir}/applications/kde4/%{name}.desktop %find_lang %{name} || touch %{name}.lang %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc COPYING TODO %doc %{_kde4_docdir}/HTML/*/skanlite/ %{_kde4_bindir}/%{name} %{_kde4_datadir}/applications/kde4/%{name}.desktop %changelog * Tue Jun 23 2009 Sven Lankes - 0.3-2 - SPEC-Fixes from review * Mon Jun 22 2009 Sven Lankes - 0.3-1 - Update to current upstream version - Update license tag * Thu Jan 08 2009 Teemu Rytilahti - 0.2-2 - use source package from the kde's ftp-site instead of the svn * Wed Jan 07 2009 Teemu Rytilahti - 0.2-1 - initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jun 2009 23:23:54 -0000 1.1 +++ .cvsignore 1 Jul 2009 20:29:41 -0000 1.2 @@ -0,0 +1 @@ +skanlite-0.3-kde4.2.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jun 2009 23:23:54 -0000 1.1 +++ sources 1 Jul 2009 20:29:41 -0000 1.2 @@ -0,0 +1 @@ +4cd852d5be3c27a0ac9002c704b019bb skanlite-0.3-kde4.2.4.tar.bz2 From slankes at fedoraproject.org Wed Jul 1 20:37:02 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Wed, 1 Jul 2009 20:37:02 +0000 (UTC) Subject: rpms/skanlite/F-11 import.log, NONE, 1.1 skanlite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701203702.073F911C02C3@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/skanlite/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6205/F-11 Modified Files: .cvsignore sources Added Files: import.log skanlite.spec Log Message: Initial CVS import --- NEW FILE import.log --- skanlite-0_3-2_fc11:F-11:skanlite-0.3-2.fc11.src.rpm:1246480590 --- NEW FILE skanlite.spec --- %global kdeversion 4.2.4 Name: skanlite Version: 0.3 Release: 2%{?dist} Summary: Lightweight scanning program Group: Applications/Productivity # Actually: GPLv2 or GPLv3 or any later Version approved by KDE e.V. License: GPLv2 or GPLv3 URL: http://docs.kde.org/development/en/extragear-graphics/skanlite/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{kdeversion}/src/extragear/skanlite-%{version}-kde%{kdeversion}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel >= 4.1.0 BuildRequires: kdegraphics-devel >= 4.1.0 BuildRequires: cmake BuildRequires: gettext %description Skanlite is a light-weight scanning application based on libksane. %prep %setup -q -n skanlite-%{version}-kde%{kdeversion} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir -p %{buildroot} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} # validate desktop file desktop-file-install \ --dir="%{buildroot}%{_datadir}/applications/kde4" \ %{buildroot}%{_datadir}/applications/kde4/%{name}.desktop %find_lang %{name} || touch %{name}.lang %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc COPYING TODO %doc %{_kde4_docdir}/HTML/*/skanlite/ %{_kde4_bindir}/%{name} %{_kde4_datadir}/applications/kde4/%{name}.desktop %changelog * Tue Jun 23 2009 Sven Lankes - 0.3-2 - SPEC-Fixes from review * Mon Jun 22 2009 Sven Lankes - 0.3-1 - Update to current upstream version - Update license tag * Thu Jan 08 2009 Teemu Rytilahti - 0.2-2 - use source package from the kde's ftp-site instead of the svn * Wed Jan 07 2009 Teemu Rytilahti - 0.2-1 - initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jun 2009 23:23:54 -0000 1.1 +++ .cvsignore 1 Jul 2009 20:37:01 -0000 1.2 @@ -0,0 +1 @@ +skanlite-0.3-kde4.2.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jun 2009 23:23:54 -0000 1.1 +++ sources 1 Jul 2009 20:37:01 -0000 1.2 @@ -0,0 +1 @@ +4cd852d5be3c27a0ac9002c704b019bb skanlite-0.3-kde4.2.4.tar.bz2 From slankes at fedoraproject.org Wed Jul 1 20:38:31 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Wed, 1 Jul 2009 20:38:31 +0000 (UTC) Subject: rpms/skanlite/F-10 import.log, NONE, 1.1 skanlite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090701203831.A9E6311C02C3@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/skanlite/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6631/F-10 Modified Files: .cvsignore sources Added Files: import.log skanlite.spec Log Message: Initial CVS import --- NEW FILE import.log --- skanlite-0_3-2_fc11:F-10:skanlite-0.3-2.fc11.src.rpm:1246480679 --- NEW FILE skanlite.spec --- %global kdeversion 4.2.4 Name: skanlite Version: 0.3 Release: 2%{?dist} Summary: Lightweight scanning program Group: Applications/Productivity # Actually: GPLv2 or GPLv3 or any later Version approved by KDE e.V. License: GPLv2 or GPLv3 URL: http://docs.kde.org/development/en/extragear-graphics/skanlite/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{kdeversion}/src/extragear/skanlite-%{version}-kde%{kdeversion}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel >= 4.1.0 BuildRequires: kdegraphics-devel >= 4.1.0 BuildRequires: cmake BuildRequires: gettext %description Skanlite is a light-weight scanning application based on libksane. %prep %setup -q -n skanlite-%{version}-kde%{kdeversion} %build mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} .. popd make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 %install rm -rf %{buildroot} mkdir -p %{buildroot} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} # validate desktop file desktop-file-install \ --dir="%{buildroot}%{_datadir}/applications/kde4" \ %{buildroot}%{_datadir}/applications/kde4/%{name}.desktop %find_lang %{name} || touch %{name}.lang %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc COPYING TODO %doc %{_kde4_docdir}/HTML/*/skanlite/ %{_kde4_bindir}/%{name} %{_kde4_datadir}/applications/kde4/%{name}.desktop %changelog * Tue Jun 23 2009 Sven Lankes - 0.3-2 - SPEC-Fixes from review * Mon Jun 22 2009 Sven Lankes - 0.3-1 - Update to current upstream version - Update license tag * Thu Jan 08 2009 Teemu Rytilahti - 0.2-2 - use source package from the kde's ftp-site instead of the svn * Wed Jan 07 2009 Teemu Rytilahti - 0.2-1 - initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jun 2009 23:23:54 -0000 1.1 +++ .cvsignore 1 Jul 2009 20:38:31 -0000 1.2 @@ -0,0 +1 @@ +skanlite-0.3-kde4.2.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jun 2009 23:23:54 -0000 1.1 +++ sources 1 Jul 2009 20:38:31 -0000 1.2 @@ -0,0 +1 @@ +4cd852d5be3c27a0ac9002c704b019bb skanlite-0.3-kde4.2.4.tar.bz2 From dwalsh at fedoraproject.org Wed Jul 1 20:59:17 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 1 Jul 2009 20:59:17 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.108, 1.109 setroubleshoot.spec, 1.143, 1.144 sources, 1.120, 1.121 Message-ID: <20090701205917.9F88011C02C3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10693 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Wed Jul 1 2009 Dan Walsh - 2.2.12-1 - Fix locate code to use os.lstat Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- .cvsignore 1 Jul 2009 19:11:58 -0000 1.108 +++ .cvsignore 1 Jul 2009 20:58:46 -0000 1.109 @@ -25,3 +25,4 @@ setroubleshoot-2.2.8.tar.gz setroubleshoot-2.2.9.tar.gz setroubleshoot-2.2.10.tar.gz setroubleshoot-2.2.11.tar.gz +setroubleshoot-2.2.12.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- setroubleshoot.spec 1 Jul 2009 19:11:58 -0000 1.143 +++ setroubleshoot.spec 1 Jul 2009 20:58:46 -0000 1.144 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.11 +Version: 2.2.12 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Wed Jul 1 2009 Dan Walsh - 2.2.12-1 +- Fix locate code to use os.lstat + * Wed Jul 1 2009 Dan Walsh - 2.2.11-1 - Update to upstream 2009-7-01 Thomas Liu Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- sources 1 Jul 2009 19:11:58 -0000 1.120 +++ sources 1 Jul 2009 20:58:46 -0000 1.121 @@ -1 +1 @@ -f24258856dbe1fdda394f5a529313d72 setroubleshoot-2.2.11.tar.gz +b1724c5a321723244bb760dee08c5b0c setroubleshoot-2.2.12.tar.gz From spot at fedoraproject.org Wed Jul 1 21:03:29 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 21:03:29 +0000 (UTC) Subject: rpms/AcetoneISO2/devel acetoneiso2-2.0.3.1-desktop.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch, 1.2, 1.3 AcetoneISO2.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090701210329.153B811C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11918/devel Modified Files: .cvsignore AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch AcetoneISO2.spec sources Added Files: acetoneiso2-2.0.3.1-desktop.patch Log Message: 2.0.3.1 acetoneiso2-2.0.3.1-desktop.patch: --- NEW FILE acetoneiso2-2.0.3.1-desktop.patch --- diff -up AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop --- AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD 2009-07-01 16:50:39.435697554 -0400 +++ AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop 2009-07-01 16:51:14.541708350 -0400 @@ -1,21 +1,13 @@ [Desktop Entry] -Categories=Qt;KDE;Application;AudioVideo;DiscBurning; -Comment= -Comment[it]= +Categories=Qt;KDE;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -GenericName= -GenericName[it]= -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName= CD/DVD image manipulator GenericName[it]= Strumenti per immagini CD/DVD -Path= StartupNotify=true Terminal=false -TerminalOptions= Type=Application -X-DCOP-ServiceType= X-KDE-SubstituteUID=false -X-KDE-Username= Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 9 Apr 2009 14:02:27 -0000 1.5 +++ .cvsignore 1 Jul 2009 21:03:28 -0000 1.6 @@ -1 +1 @@ -acetoneiso_2.0.3.tar.gz +AcetoneISO_2.0.3.1.zip AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch: Index: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 9 Apr 2009 14:02:27 -0000 1.2 +++ AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 1 Jul 2009 21:03:28 -0000 1.3 @@ -1,6 +1,6 @@ diff -up acetoneiso_2.0.3/src/sources/converter.h.BAD acetoneiso_2.0.3/src/sources/converter.h ---- acetoneiso_2.0.3/src/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 -+++ acetoneiso_2.0.3/src/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 +--- acetoneiso_2.0.3/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 ++++ acetoneiso_2.0.3/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 @@ -125,6 +125,7 @@ else { void acetoneiso::get_poweriso() { Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/AcetoneISO2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- AcetoneISO2.spec 9 Apr 2009 14:02:27 -0000 1.8 +++ AcetoneISO2.spec 1 Jul 2009 21:03:28 -0000 1.9 @@ -1,16 +1,15 @@ Name: AcetoneISO2 -Version: 2.0.3 +Version: 2.0.3.1 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/acetoneiso_%{version}.tar.gz -Patch0: acetoneiso2-2.0.3-desktop.patch -Patch1: acetoneiso2-2.0.2-no-optdirs.patch -Patch2: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip +Patch0: acetoneiso2-2.0.3.1-desktop.patch +Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils Requires: p7zip, cdrdao Requires: fuseiso, fuse, genisoimage Requires: gnupg, pinentry-qt @@ -32,19 +31,16 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n acetoneiso_%{version} +%setup -q -n AcetoneISO_%{version} %patch0 -p1 -# %%patch1 -p1 -%patch2 -p1 +%patch1 -p1 %build -cd src/ qmake-qt4 make %{?_smp_mflags} LFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT -cd src/ make INSTALL_ROOT=$RPM_BUILD_ROOT install mv $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO.desktop $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO2.desktop mv $RPM_BUILD_ROOT%{_bindir}/acetoneiso $RPM_BUILD_ROOT%{_bindir}/acetoneiso2 @@ -68,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 +- update to 2.0.3.1 + * Thu Apr 9 2009 Tom "spot" Callaway - 2.0.3-1 - update to 2.0.3 final Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 9 Apr 2009 14:02:27 -0000 1.5 +++ sources 1 Jul 2009 21:03:28 -0000 1.6 @@ -1 +1 @@ -8660f1675dd1544e2c8da21638706622 acetoneiso_2.0.3.tar.gz +437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip From spot at fedoraproject.org Wed Jul 1 21:03:58 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 21:03:58 +0000 (UTC) Subject: rpms/AcetoneISO2/F-11 acetoneiso2-2.0.3.1-desktop.patch, NONE, 1.1 AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch, 1.2, 1.3 AcetoneISO2.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090701210358.568B311C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11918/F-11 Modified Files: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch AcetoneISO2.spec sources Added Files: acetoneiso2-2.0.3.1-desktop.patch Log Message: 2.0.3.1 acetoneiso2-2.0.3.1-desktop.patch: --- NEW FILE acetoneiso2-2.0.3.1-desktop.patch --- diff -up AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop --- AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD 2009-07-01 16:50:39.435697554 -0400 +++ AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop 2009-07-01 16:51:14.541708350 -0400 @@ -1,21 +1,13 @@ [Desktop Entry] -Categories=Qt;KDE;Application;AudioVideo;DiscBurning; -Comment= -Comment[it]= +Categories=Qt;KDE;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -GenericName= -GenericName[it]= -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName= CD/DVD image manipulator GenericName[it]= Strumenti per immagini CD/DVD -Path= StartupNotify=true Terminal=false -TerminalOptions= Type=Application -X-DCOP-ServiceType= X-KDE-SubstituteUID=false -X-KDE-Username= AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch: Index: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 9 Apr 2009 14:02:27 -0000 1.2 +++ AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 1 Jul 2009 21:03:27 -0000 1.3 @@ -1,6 +1,6 @@ diff -up acetoneiso_2.0.3/src/sources/converter.h.BAD acetoneiso_2.0.3/src/sources/converter.h ---- acetoneiso_2.0.3/src/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 -+++ acetoneiso_2.0.3/src/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 +--- acetoneiso_2.0.3/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 ++++ acetoneiso_2.0.3/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 @@ -125,6 +125,7 @@ else { void acetoneiso::get_poweriso() { Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/AcetoneISO2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- AcetoneISO2.spec 9 Apr 2009 14:02:27 -0000 1.8 +++ AcetoneISO2.spec 1 Jul 2009 21:03:27 -0000 1.9 @@ -1,16 +1,15 @@ Name: AcetoneISO2 -Version: 2.0.3 +Version: 2.0.3.1 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/acetoneiso_%{version}.tar.gz -Patch0: acetoneiso2-2.0.3-desktop.patch -Patch1: acetoneiso2-2.0.2-no-optdirs.patch -Patch2: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip +Patch0: acetoneiso2-2.0.3.1-desktop.patch +Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils Requires: p7zip, cdrdao Requires: fuseiso, fuse, genisoimage Requires: gnupg, pinentry-qt @@ -32,19 +31,16 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n acetoneiso_%{version} +%setup -q -n AcetoneISO_%{version} %patch0 -p1 -# %%patch1 -p1 -%patch2 -p1 +%patch1 -p1 %build -cd src/ qmake-qt4 make %{?_smp_mflags} LFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT -cd src/ make INSTALL_ROOT=$RPM_BUILD_ROOT install mv $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO.desktop $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO2.desktop mv $RPM_BUILD_ROOT%{_bindir}/acetoneiso $RPM_BUILD_ROOT%{_bindir}/acetoneiso2 @@ -68,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 +- update to 2.0.3.1 + * Thu Apr 9 2009 Tom "spot" Callaway - 2.0.3-1 - update to 2.0.3 final Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 9 Apr 2009 14:02:27 -0000 1.5 +++ sources 1 Jul 2009 21:03:28 -0000 1.6 @@ -1 +1 @@ -8660f1675dd1544e2c8da21638706622 acetoneiso_2.0.3.tar.gz +437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip From spot at fedoraproject.org Wed Jul 1 21:03:58 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 1 Jul 2009 21:03:58 +0000 (UTC) Subject: rpms/AcetoneISO2/F-10 acetoneiso2-2.0.3.1-desktop.patch, NONE, 1.1 AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch, 1.2, 1.3 AcetoneISO2.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090701210358.0A54F11C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11918/F-10 Modified Files: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch AcetoneISO2.spec sources Added Files: acetoneiso2-2.0.3.1-desktop.patch Log Message: 2.0.3.1 acetoneiso2-2.0.3.1-desktop.patch: --- NEW FILE acetoneiso2-2.0.3.1-desktop.patch --- diff -up AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop --- AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD 2009-07-01 16:50:39.435697554 -0400 +++ AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop 2009-07-01 16:51:14.541708350 -0400 @@ -1,21 +1,13 @@ [Desktop Entry] -Categories=Qt;KDE;Application;AudioVideo;DiscBurning; -Comment= -Comment[it]= +Categories=Qt;KDE;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -GenericName= -GenericName[it]= -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName= CD/DVD image manipulator GenericName[it]= Strumenti per immagini CD/DVD -Path= StartupNotify=true Terminal=false -TerminalOptions= Type=Application -X-DCOP-ServiceType= X-KDE-SubstituteUID=false -X-KDE-Username= AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch: Index: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 9 Apr 2009 14:02:26 -0000 1.2 +++ AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch 1 Jul 2009 21:03:27 -0000 1.3 @@ -1,6 +1,6 @@ diff -up acetoneiso_2.0.3/src/sources/converter.h.BAD acetoneiso_2.0.3/src/sources/converter.h ---- acetoneiso_2.0.3/src/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 -+++ acetoneiso_2.0.3/src/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 +--- acetoneiso_2.0.3/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400 ++++ acetoneiso_2.0.3/sources/converter.h 2009-04-09 09:51:03.000000000 -0400 @@ -125,6 +125,7 @@ else { void acetoneiso::get_poweriso() { Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/AcetoneISO2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- AcetoneISO2.spec 9 Apr 2009 14:02:26 -0000 1.7 +++ AcetoneISO2.spec 1 Jul 2009 21:03:27 -0000 1.8 @@ -1,16 +1,15 @@ Name: AcetoneISO2 -Version: 2.0.3 +Version: 2.0.3.1 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/acetoneiso_%{version}.tar.gz -Patch0: acetoneiso2-2.0.3-desktop.patch -Patch1: acetoneiso2-2.0.2-no-optdirs.patch -Patch2: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip +Patch0: acetoneiso2-2.0.3.1-desktop.patch +Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils Requires: p7zip, cdrdao Requires: fuseiso, fuse, genisoimage Requires: gnupg, pinentry-qt @@ -32,19 +31,16 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n acetoneiso_%{version} +%setup -q -n AcetoneISO_%{version} %patch0 -p1 -# %%patch1 -p1 -%patch2 -p1 +%patch1 -p1 %build -cd src/ qmake-qt4 make %{?_smp_mflags} LFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT -cd src/ make INSTALL_ROOT=$RPM_BUILD_ROOT install mv $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO.desktop $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO2.desktop mv $RPM_BUILD_ROOT%{_bindir}/acetoneiso $RPM_BUILD_ROOT%{_bindir}/acetoneiso2 @@ -68,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 +- update to 2.0.3.1 + * Thu Apr 9 2009 Tom "spot" Callaway - 2.0.3-1 - update to 2.0.3 final Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 9 Apr 2009 14:02:26 -0000 1.5 +++ sources 1 Jul 2009 21:03:27 -0000 1.6 @@ -1 +1 @@ -8660f1675dd1544e2c8da21638706622 acetoneiso_2.0.3.tar.gz +437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip From dwalsh at fedoraproject.org Wed Jul 1 21:07:43 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 1 Jul 2009 21:07:43 +0000 (UTC) Subject: rpms/setroubleshoot/F-11 setroubleshoot.spec,1.137,1.138 Message-ID: <20090701210743.0F0FE11C02C3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13559 Modified Files: setroubleshoot.spec Log Message: * Wed Jul 1 2009 Dan Walsh - 2.1.14-2 - Change to use os.lstat to look at links Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/F-11/setroubleshoot.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- setroubleshoot.spec 12 Jun 2009 18:45:06 -0000 1.137 +++ setroubleshoot.spec 1 Jul 2009 21:07:12 -0000 1.138 @@ -1,12 +1,13 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot Version: 2.1.14 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot Source0: %{name}-%{version}.tar.gz Source2: setroubleshoot.logrotate +patch: setroubleshoot-lstat.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl-XML-Parser BuildRequires: intltool gettext python @@ -83,6 +84,7 @@ touch --no-create %{_datadir}/icons/hico %prep %setup -q +%patch -p1 -b .lstat %build %configure @@ -195,6 +197,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Wed Jul 1 2009 Dan Walsh - 2.1.14-2 +- Change to use os.lstat to look at links + * Wed Jun 10 2009 Dan Walsh - 2.1.14-1 - Fix locate patch From pkgdb at fedoraproject.org Wed Jul 1 21:09:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:09:52 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701210952.043F310F88E@bastion2.fedora.phx.redhat.com> Package pscan in Fedora devel is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 21:09:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:09:57 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701210957.828EB10F896@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 11 is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From pkgdb at fedoraproject.org Wed Jul 1 21:09:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:09:58 +0000 Subject: [pkgdb] pscan ownership updated Message-ID: <20090701210958.BA08910F898@bastion2.fedora.phx.redhat.com> Package pscan in Fedora 10 is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pscan From liquidat at fedoraproject.org Wed Jul 1 21:10:16 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Wed, 1 Jul 2009 21:10:16 +0000 (UTC) Subject: rpms/audex/devel .cvsignore, 1.2, 1.3 audex.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701211016.43F8811C02C3@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/pkgs/rpms/audex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14249 Modified Files: .cvsignore audex.spec sources Log Message: Update to upstream version beta5. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audex/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Jun 2009 20:04:11 -0000 1.2 +++ .cvsignore 1 Jul 2009 21:09:45 -0000 1.3 @@ -1 +1 @@ -audex-0.71b4.tar.bz2 +audex-0.71b5.tar.bz2 Index: audex.spec =================================================================== RCS file: /cvs/pkgs/rpms/audex/devel/audex.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- audex.spec 29 Jun 2009 20:49:07 -0000 1.2 +++ audex.spec 1 Jul 2009 21:09:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: audex Version: 0.71 -Release: 0.2.beta4%{?dist} +Release: 0.2.beta5%{?dist} Summary: Audio ripper Group: Applications/Multimedia License: GPLv3+ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_datadir}/kde4/apps/audex %changelog +* Wed Jul 01 2009 Roland Wolters 0.71-0.2.beta5 +- update to upstream version beta5 + * Tue Jun 25 2009 Roland Wolters 0.71-0.1.beta4 - initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audex/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jun 2009 20:04:11 -0000 1.2 +++ sources 1 Jul 2009 21:09:46 -0000 1.3 @@ -1 +1 @@ -a060b8a850541571d58bcc95a67d7ba5 audex-0.71b4.tar.bz2 +089486abb548a670dc44454e9eb7aee5 audex-0.71b5.tar.bz2 From dwalsh at fedoraproject.org Wed Jul 1 21:10:29 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 1 Jul 2009 21:10:29 +0000 (UTC) Subject: rpms/setroubleshoot/F-11 setroubleshoot-lstat.patch,NONE,1.1 Message-ID: <20090701211029.7C6E811C02C3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14451 Added Files: setroubleshoot-lstat.patch Log Message: * Wed Jul 1 2009 Dan Walsh - 2.1.14-2 - Change to use os.lstat to look at links setroubleshoot-lstat.patch: --- NEW FILE setroubleshoot-lstat.patch --- diff -up setroubleshoot-2.1.14/src/audit_data.py.lstat setroubleshoot-2.1.14/src/audit_data.py --- setroubleshoot-2.1.14/src/audit_data.py.lstat 2009-07-01 17:04:02.000000000 -0400 +++ setroubleshoot-2.1.14/src/audit_data.py 2009-07-01 17:04:10.000000000 -0400 @@ -715,7 +715,7 @@ class AVC: inode = int(self.avc_record.get_field("ino")) for file in output.split("\n"): try: - if int(os.stat(file).st_ino) == inode: + if int(os.lstat(file).st_ino) == inode: path = file break except: From pkgdb at fedoraproject.org Wed Jul 1 21:10:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:10:32 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701211032.9ABC810F893@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora devel is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 21:10:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:10:36 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701211036.6B54F10F899@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 11 is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From pkgdb at fedoraproject.org Wed Jul 1 21:10:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 01 Jul 2009 21:10:39 +0000 Subject: [pkgdb] http_ping ownership updated Message-ID: <20090701211039.DD8B910F8A4@bastion2.fedora.phx.redhat.com> Package http_ping in Fedora 10 is now owned by maxamillion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/http_ping From liquidat at fedoraproject.org Wed Jul 1 21:17:58 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Wed, 1 Jul 2009 21:17:58 +0000 (UTC) Subject: rpms/audex/devel audex.spec,1.3,1.4 Message-ID: <20090701211758.5671811C02C3@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/pkgs/rpms/audex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16249 Modified Files: audex.spec Log Message: Fixed beta-version string... Index: audex.spec =================================================================== RCS file: /cvs/pkgs/rpms/audex/devel/audex.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- audex.spec 1 Jul 2009 21:09:46 -0000 1.3 +++ audex.spec 1 Jul 2009 21:17:28 -0000 1.4 @@ -1,11 +1,11 @@ Name: audex Version: 0.71 -Release: 0.2.beta5%{?dist} +Release: 0.3.beta5%{?dist} Summary: Audio ripper Group: Applications/Multimedia License: GPLv3+ URL: http://opensource.maniatek.de/audex/ -Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b4.tar.bz2 +Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b5.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -64,7 +64,7 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_datadir}/kde4/apps/audex %changelog -* Wed Jul 01 2009 Roland Wolters 0.71-0.2.beta5 +* Wed Jul 01 2009 Roland Wolters 0.71-0.3.beta5 - update to upstream version beta5 * Tue Jun 25 2009 Roland Wolters 0.71-0.1.beta4 From alexlan at fedoraproject.org Wed Jul 1 21:20:38 2009 From: alexlan at fedoraproject.org (alexlan) Date: Wed, 1 Jul 2009 21:20:38 +0000 (UTC) Subject: rpms/Miro/devel .cvsignore, 1.18, 1.19 Miro.spec, 1.55, 1.56 sources, 1.18, 1.19 Message-ID: <20090701212038.363FC11C02C3@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/Miro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17014 Modified Files: .cvsignore Miro.spec sources Log Message: - Update to latest upstream (2.0.5), fixes #507642. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/Miro/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 14 Jun 2009 05:20:30 -0000 1.18 +++ .cvsignore 1 Jul 2009 21:20:37 -0000 1.19 @@ -1 +1 @@ -Miro-2.0.4.tar.gz +Miro-2.0.5.tar.gz Index: Miro.spec =================================================================== RCS file: /cvs/extras/rpms/Miro/devel/Miro.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- Miro.spec 14 Jun 2009 05:20:30 -0000 1.55 +++ Miro.spec 1 Jul 2009 21:20:37 -0000 1.56 @@ -4,7 +4,7 @@ %define gecko_ver 1.9.1 Name: Miro -Version: 2.0.4 +Version: 2.0.5 Release: 1%{?dist} Summary: Miro - Internet TV Player @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 +- Update to latest upstream (2.0.5), fixes #507642 + * Sat Jun 13 2009 Alex Lancaster - 2.0.4-1 - Update to upstream 2.0.4 Index: sources =================================================================== RCS file: /cvs/extras/rpms/Miro/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 14 Jun 2009 05:20:30 -0000 1.18 +++ sources 1 Jul 2009 21:20:37 -0000 1.19 @@ -1 +1 @@ -e6cf48252496b2bddd290f375fc0ca33 Miro-2.0.4.tar.gz +bb589058844b441c8f0bd0b79532ca87 Miro-2.0.5.tar.gz From liquidat at fedoraproject.org Wed Jul 1 21:27:27 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Wed, 1 Jul 2009 21:27:27 +0000 (UTC) Subject: rpms/audex/F-11 .cvsignore, 1.1, 1.2 audex.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701212727.A853C11C02C3@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/pkgs/rpms/audex/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18611 Modified Files: .cvsignore audex.spec sources Log Message: New version beta5. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:05:26 -0000 1.1 +++ .cvsignore 1 Jul 2009 21:26:57 -0000 1.2 @@ -0,0 +1 @@ +audex-0.71b5.tar.bz2 Index: audex.spec =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-11/audex.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- audex.spec 29 Jun 2009 20:48:57 -0000 1.2 +++ audex.spec 1 Jul 2009 21:26:57 -0000 1.3 @@ -1,11 +1,11 @@ Name: audex Version: 0.71 -Release: 0.2.beta4%{?dist} +Release: 0.3.beta5%{?dist} Summary: Audio ripper Group: Applications/Multimedia License: GPLv3+ URL: http://opensource.maniatek.de/audex/ -Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b4.tar.bz2 +Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b5.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_datadir}/kde4/apps/audex %changelog +* Wed Jul 01 2009 Roland Wolters 0.71-0.3.beta5 +- update to upstream version beta5 + * Tue Jun 25 2009 Roland Wolters 0.71-0.1.beta4 - initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jun 2009 20:24:44 -0000 1.2 +++ sources 1 Jul 2009 21:26:57 -0000 1.3 @@ -1 +1 @@ -a060b8a850541571d58bcc95a67d7ba5 audex-0.71b4.tar.bz2 +089486abb548a670dc44454e9eb7aee5 audex-0.71b5.tar.bz2 From liquidat at fedoraproject.org Wed Jul 1 21:27:37 2009 From: liquidat at fedoraproject.org (Roland Wolters) Date: Wed, 1 Jul 2009 21:27:37 +0000 (UTC) Subject: rpms/audex/F-10 .cvsignore, 1.1, 1.2 audex.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090701212737.ED45911C02C3@cvs1.fedora.phx.redhat.com> Author: liquidat Update of /cvs/pkgs/rpms/audex/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18680 Modified Files: .cvsignore audex.spec sources Log Message: New version beta5. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:05:26 -0000 1.1 +++ .cvsignore 1 Jul 2009 21:27:07 -0000 1.2 @@ -0,0 +1 @@ +audex-0.71b5.tar.bz2 Index: audex.spec =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-10/audex.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- audex.spec 29 Jun 2009 20:48:53 -0000 1.2 +++ audex.spec 1 Jul 2009 21:27:07 -0000 1.3 @@ -1,11 +1,11 @@ Name: audex Version: 0.71 -Release: 0.2.beta4%{?dist} +Release: 0.3.beta5%{?dist} Summary: Audio ripper Group: Applications/Multimedia License: GPLv3+ URL: http://opensource.maniatek.de/audex/ -Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b4.tar.bz2 +Source0: http://opensource.maniatek.de/audex/files/audex-%{version}b5.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdelibs4-devel desktop-file-utils gettext @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_datadir}/kde4/apps/audex %changelog +* Wed Jul 01 2009 Roland Wolters 0.71-0.3.beta5 +- update to upstream version beta5 + * Tue Jun 25 2009 Roland Wolters 0.71-0.1.beta4 - initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audex/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jun 2009 20:25:30 -0000 1.2 +++ sources 1 Jul 2009 21:27:07 -0000 1.3 @@ -1 +1 @@ -a060b8a850541571d58bcc95a67d7ba5 audex-0.71b4.tar.bz2 +089486abb548a670dc44454e9eb7aee5 audex-0.71b5.tar.bz2 From scop at fedoraproject.org Wed Jul 1 21:28:01 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 1 Jul 2009 21:28:01 +0000 (UTC) Subject: rpms/dvb-apps/devel .cvsignore, 1.11, 1.12 dvb-apps.spec, 1.18, 1.19 sources, 1.11, 1.12 Message-ID: <20090701212801.BD4EC11C02C3@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/dvb-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18806 Modified Files: .cvsignore dvb-apps.spec sources Log Message: * Thu Jul 2 2009 Ville Skytt?? - 1.1.1-16 - Update tuning files to 20090702. - Drop no longer needed workaround for #483644. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dvb-apps/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 22 Feb 2009 17:26:28 -0000 1.11 +++ .cvsignore 1 Jul 2009 21:27:31 -0000 1.12 @@ -1,2 +1,2 @@ linuxtv-dvb-apps-1.1.1.tar.bz2 -dvb-apps-tuningfiles-20090222.tar.bz2 +dvb-apps-tuningfiles-20090702.tar.bz2 Index: dvb-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvb-apps/devel/dvb-apps.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- dvb-apps.spec 26 Feb 2009 20:12:33 -0000 1.18 +++ dvb-apps.spec 1 Jul 2009 21:27:31 -0000 1.19 @@ -1,6 +1,6 @@ Name: dvb-apps Version: 1.1.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Utility, demo and test applications using the Linux DVB API Group: Applications/Multimedia @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://www.linuxtv.org/wiki/index.php/LinuxTV_dvb-apps Source0: http://www.linuxtv.org/downloads/linuxtv-dvb-apps-%{version}.tar.bz2 # Source1 created with Source99 -Source1: %{name}-tuningfiles-20090222.tar.bz2 +Source1: %{name}-tuningfiles-20090702.tar.bz2 Source99: %{name}-tuningfiles-snapshot.sh Patch0: %{name}-1.1.1-optflags.patch Patch1: %{name}-paths.patch @@ -43,8 +43,6 @@ iconv -f iso-8859-1 -t utf-8 $f > $f.utf %build -# -D__KERNEL_STRICT_NAMES: see bug 483644 -export RPM_OPT_FLAGS="$RPM_OPT_FLAGS -D__KERNEL_STRICT_NAMES" make CC="%{__cc}" # %{?_smp_mflags} make %{?_smp_mflags} CC="%{__cc}" -C util/ttusb_dec_reset @@ -80,6 +78,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Ville Skytt?? - 1.1.1-16 +- Update tuning files to 20090702. +- Drop no longer needed workaround for #483644. + * Thu Feb 26 2009 Ville Skytt?? - 1.1.1-15 - Add workaround for #483644. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dvb-apps/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 22 Feb 2009 17:26:29 -0000 1.11 +++ sources 1 Jul 2009 21:27:31 -0000 1.12 @@ -1,2 +1,2 @@ de958cdb8d00e74792dd69f3c945b037 linuxtv-dvb-apps-1.1.1.tar.bz2 -d6778b7482d7e67d0cdd6aa444205dcd dvb-apps-tuningfiles-20090222.tar.bz2 +fea2a32800405a25f3d1cd31fb0fbd42 dvb-apps-tuningfiles-20090702.tar.bz2 From alexlan at fedoraproject.org Wed Jul 1 21:33:38 2009 From: alexlan at fedoraproject.org (alexlan) Date: Wed, 1 Jul 2009 21:33:38 +0000 (UTC) Subject: rpms/Miro/F-11 .cvsignore, 1.18, 1.19 Miro.spec, 1.55, 1.56 sources, 1.18, 1.19 Message-ID: <20090701213338.5A5C811C02C3@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/Miro/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20188 Modified Files: .cvsignore Miro.spec sources Log Message: - Update to latest upstream (2.0.5), fixes #507642. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/Miro/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 18 Jun 2009 06:05:09 -0000 1.18 +++ .cvsignore 1 Jul 2009 21:33:08 -0000 1.19 @@ -1 +1 @@ -Miro-2.0.4.tar.gz +Miro-2.0.5.tar.gz Index: Miro.spec =================================================================== RCS file: /cvs/extras/rpms/Miro/F-11/Miro.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- Miro.spec 30 Jun 2009 19:04:21 -0000 1.55 +++ Miro.spec 1 Jul 2009 21:33:08 -0000 1.56 @@ -4,8 +4,8 @@ %define gecko_ver 1.9.1 Name: Miro -Version: 2.0.4 -Release: 2%{?dist} +Version: 2.0.5 +Release: 1%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,8 +95,8 @@ update-desktop-database %{_datadir}/appl %changelog -* Tue Jun 30 2009 Christopher Aillon - 2.0.4-2 -- Rebuild against newer gecko +* Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 +- Update to latest upstream (2.0.5), fixes #507642 * Sat Jun 13 2009 Alex Lancaster - 2.0.4-1 - Update to upstream 2.0.4 Index: sources =================================================================== RCS file: /cvs/extras/rpms/Miro/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 18 Jun 2009 06:05:09 -0000 1.18 +++ sources 1 Jul 2009 21:33:08 -0000 1.19 @@ -1 +1 @@ -e6cf48252496b2bddd290f375fc0ca33 Miro-2.0.4.tar.gz +bb589058844b441c8f0bd0b79532ca87 Miro-2.0.5.tar.gz From alexlan at fedoraproject.org Wed Jul 1 21:38:24 2009 From: alexlan at fedoraproject.org (alexlan) Date: Wed, 1 Jul 2009 21:38:24 +0000 (UTC) Subject: rpms/Miro/F-10 .cvsignore, 1.17, 1.18 Miro.spec, 1.54, 1.55 sources, 1.17, 1.18 Message-ID: <20090701213824.ECD2D11C02C3@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/Miro/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22021 Modified Files: .cvsignore Miro.spec sources Log Message: - Update to latest upstream (2.0.5), fixes #507642. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/Miro/F-10/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 16 Mar 2009 09:42:51 -0000 1.17 +++ .cvsignore 1 Jul 2009 21:37:54 -0000 1.18 @@ -1 +1 @@ -Miro-2.0.3.tar.gz +Miro-2.0.5.tar.gz Index: Miro.spec =================================================================== RCS file: /cvs/extras/rpms/Miro/F-10/Miro.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- Miro.spec 12 Jun 2009 00:00:15 -0000 1.54 +++ Miro.spec 1 Jul 2009 21:37:54 -0000 1.55 @@ -4,8 +4,8 @@ %define gecko_ver 1.9.0.11 Name: Miro -Version: 2.0.3 -Release: 5%{?dist} +Version: 2.0.5 +Release: 1%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 +- Update to latest upstream (2.0.5) fixes #507642 + * Thu Jun 11 2009 Christopher Aillon - 2.0.3-5 - Rebuild against newer gecko Index: sources =================================================================== RCS file: /cvs/extras/rpms/Miro/F-10/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 16 Mar 2009 09:42:52 -0000 1.17 +++ sources 1 Jul 2009 21:37:54 -0000 1.18 @@ -1 +1 @@ -d2defd8a689f9ea2d8852127f92201ca Miro-2.0.3.tar.gz +bb589058844b441c8f0bd0b79532ca87 Miro-2.0.5.tar.gz From mbooth at fedoraproject.org Wed Jul 1 21:39:46 2009 From: mbooth at fedoraproject.org (mbooth) Date: Wed, 1 Jul 2009 21:39:46 +0000 (UTC) Subject: rpms/eclipse-gef/devel eclipse-gef-disable-examples-source.patch, NONE, 1.1 sources, 1.9, 1.10 get-gef.sh, 1.4, 1.5 eclipse-gef.spec, 1.20, 1.21 Message-ID: <20090701213946.6647811C02C3@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-gef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22506/eclipse-gef/devel Modified Files: sources get-gef.sh eclipse-gef.spec Added Files: eclipse-gef-disable-examples-source.patch Log Message: * Wed Jul 01 2009 Mat Booth 3.5.0-1 - Update to 3.5.0 final release (Galileo). - Build the features seperately to allow for a saner %%files section. - Use %%global instead of %%define. eclipse-gef-disable-examples-source.patch: --- NEW FILE eclipse-gef-disable-examples-source.patch --- --- org.eclipse.gef.examples-feature/feature.xml 5 Jun 2009 19:49:18 -0000 1.25 +++ org.eclipse.gef.examples-feature/feature.xml 1 Jul 2009 19:54:14 -0000 @@ -56,32 +56,4 @@ version="0.0.0" unpack="false"/> - - - - - - - - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-gef/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 27 May 2009 06:20:47 -0000 1.9 +++ sources 1 Jul 2009 21:39:46 -0000 1.10 @@ -1 +1 @@ -3ff3218301554ab449f1024eb524d284 gef-3.5.0.tar.gz +b6979e5bc1d33092d494a66471750d43 gef-3.5.0.tar.gz Index: get-gef.sh =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-gef/devel/get-gef.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- get-gef.sh 27 May 2009 06:20:47 -0000 1.4 +++ get-gef.sh 1 Jul 2009 21:39:46 -0000 1.5 @@ -1,7 +1,7 @@ #!/bin/bash NAME="gef" VERSION=3.5.0 -TAG="S200905261334" +TAG="R200906221200" echo "Exporting from CVS..." mkdir $NAME-$VERSION @@ -22,14 +22,14 @@ if (NF < 4) { split($1, version, "="); split(version[1], directory, "@"); cvsdir=split($2, dirName, ":"); - printf("cvs -d %s%s %s %s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q", "export", "-r", version[2], "-d", directory[2], directory[2]) | "/bin/bash"; + printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[2], directory[2]) | "/bin/bash"; } else { split($1, version, "="); total=split($4, directory, "/"); cvsdir=split($2, dirName, ":"); - printf("cvs -d %s%s %s %s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q", "export", "-r", version[2], "-d", directory[total], $4) | "/bin/bash"; + printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[total], $4) | "/bin/bash"; } }' $TEMPMAPFILE Index: eclipse-gef.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-gef/devel/eclipse-gef.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- eclipse-gef.spec 27 May 2009 06:20:47 -0000 1.20 +++ eclipse-gef.spec 1 Jul 2009 21:39:46 -0000 1.21 @@ -1,9 +1,9 @@ -%define eclipse_base %{_libdir}/eclipse -%define eclipse_dropin %{_datadir}/eclipse/dropins +%global eclipse_base %{_libdir}/eclipse +%global eclipse_dropin %{_datadir}/eclipse/dropins Name: eclipse-gef Version: 3.5.0 -Release: 0.2.RC2%{?dist} +Release: 1%{?dist} Summary: Graphical Editing Framework (GEF) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -15,11 +15,17 @@ URL: http://www.eclipse.org/gef/ Source0: gef-%{version}.tar.gz Source1: get-gef.sh +# disable examples source plugins (you can still get them through the new +# example project wizard) +# TODO: figure out why this stopped building between rc6 and final +Patch0: %{name}-disable-examples-source.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: java-devel +BuildRequires: java-javadoc BuildRequires: jpackage-utils BuildRequires: eclipse-pde >= 1:3.5.0 Requires: java @@ -48,15 +54,18 @@ Requires: %{name} = %{version}-%{releas Requires: %{name}-sdk = %{version}-%{release} %description examples -Example projects that demonstrate how to use the Eclipse Graphical Editing -Framework (GEF). +Installable versions of the example projects from the SDK that demonstrates how +to use the Eclipse Graphical Editing Framework (GEF) plugin. %prep %setup -q -n gef-%{version} -rm -r org.eclipse.gef-feature/sourceTemplateFeature -rm -r org.eclipse.draw2d-feature/sourceTemplateFeature -rm -r org.eclipse.zest-feature/sourceTemplateFeature +%patch0 -p0 + +# link to local java api javadocs +sed -i -e "s|link http://java.sun.com/j2se/1.4.2/docs/api|linkoffline %{_javadocdir}/java %{_javadocdir}/java|" \ + org.eclipse.gef.doc.isv/gefOptions \ + org.eclipse.draw2d.doc.isv/draw2dOptions # make sure upstream hasn't sneaked in any jars we don't know about JARS="" @@ -71,62 +80,62 @@ if [ ! -z "$JARS" ]; then fi %build -# build all features -%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.gef.all +# We build the gef and examples features seperately, rather than just +# building the "all" feature, because it makes the files section easier to +# maintain (i.e. we don't have to know when upstream adds a new plugin) + +# Note: Use date from the cvs tag as the context qualifier. + +# build gef features +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.gef \ + -a "-DforceContextQualifier=v200906221200" +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.zest \ + -a "-DforceContextQualifier=v200906221200" +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.gef.sdk \ + -a "-DforceContextQualifier=v200906221200 -DJAVADOC14_HOME=%{java_home}/bin" +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.zest.sdk \ + -a "-DforceContextQualifier=v200906221200 -DJAVADOC14_HOME=%{java_home}/bin" + +# build examples features +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.gef.examples %install rm -rf %{buildroot} install -d -m 755 %{buildroot}%{eclipse_dropin} -unzip -q -d %{buildroot}%{eclipse_dropin}/gef build/rpmBuild/org.eclipse.gef.all.zip +unzip -q -n -d %{buildroot}%{eclipse_dropin}/gef build/rpmBuild/org.eclipse.gef.zip +unzip -q -n -d %{buildroot}%{eclipse_dropin}/gef build/rpmBuild/org.eclipse.zest.zip +unzip -q -n -d %{buildroot}%{eclipse_dropin}/gef-sdk build/rpmBuild/org.eclipse.gef.sdk.zip +unzip -q -n -d %{buildroot}%{eclipse_dropin}/gef-sdk build/rpmBuild/org.eclipse.zest.sdk.zip +unzip -q -n -d %{buildroot}%{eclipse_dropin}/gef-examples build/rpmBuild/org.eclipse.gef.examples.zip + +# the non-sdk builds are a subset of the sdk builds, so delete duplicate features & plugins from the sdks +(cd %{buildroot}%{eclipse_dropin}/gef-sdk/eclipse/features && ls %{buildroot}%{eclipse_dropin}/gef/eclipse/features | xargs rm -rf) +(cd %{buildroot}%{eclipse_dropin}/gef-sdk/eclipse/plugins && ls %{buildroot}%{eclipse_dropin}/gef/eclipse/plugins | xargs rm -rf) %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%dir %{eclipse_dropin}/gef -%dir %{eclipse_dropin}/gef/eclipse -%dir %{eclipse_dropin}/gef/eclipse/features -%dir %{eclipse_dropin}/gef/eclipse/plugins +%{eclipse_dropin}/gef %doc org.eclipse.gef-feature/rootfiles/* -%{eclipse_dropin}/gef/eclipse/epl-v10.html -%{eclipse_dropin}/gef/eclipse/notice.html -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.gef_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.draw2d_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.zest_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.draw2d_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.zest.core_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.zest.layouts_* %files sdk %defattr(-,root,root,-) -%doc org.eclipse.gef-feature/rootfiles/* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.gef.sdk_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.gef.source_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.draw2d.sdk_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.draw2d.source_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.zest.sdk_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.zest.source_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.doc.isv_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.source_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.ui.pde_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.draw2d.doc.isv_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.draw2d.source_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.zest.source_* +%{eclipse_dropin}/gef-sdk +%doc org.eclipse.gef.sdk-feature/rootfiles/* %files examples %defattr(-,root,root,-) -%doc org.eclipse.gef-feature/rootfiles/* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.gef.all_* -%{eclipse_dropin}/gef/eclipse/features/org.eclipse.gef.examples_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.flow_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.logic_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.shapes_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.source_* -%{eclipse_dropin}/gef/eclipse/plugins/org.eclipse.gef.examples.text_* +%{eclipse_dropin}/gef-examples +%doc org.eclipse.gef.examples-feature/rootfiles/* %changelog +* Wed Jul 01 2009 Mat Booth 3.5.0-1 +- Update to 3.5.0 final release (Galileo). +- Build the features seperately to allow for a saner %%files section. +- Use %%global instead of %%define. + * Wed May 27 2009 Alexander Kurtakov 3.5.0-0.2.RC2 - Update to 3.5.0 RC2. From scop at fedoraproject.org Wed Jul 1 21:45:29 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 1 Jul 2009 21:45:29 +0000 (UTC) Subject: rpms/mozplugger/devel mozplugger.spec,1.29,1.30 Message-ID: <20090701214529.1184F11C02C3@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/mozplugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23800 Modified Files: mozplugger.spec Log Message: * Thu Jul 2 2009 Ville Skytt?? - 1.12.1-2 - Add dependency on m4 (#453306). Index: mozplugger.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozplugger/devel/mozplugger.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mozplugger.spec 14 May 2009 14:15:12 -0000 1.29 +++ mozplugger.spec 1 Jul 2009 21:45:28 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -9,6 +9,7 @@ Url: http://mozplugger.mozdev.org/ Source0: http://mozplugger.mozdev.org/mozplugger/%{name}-%{version}.tar.gz Patch1: mozplugger-1.12.1-lib64.patch +Requires: m4 Requires: sox BuildPrereq: libX11-devel BuildPrereq: libXt-devel @@ -47,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man7/mozplugger.7* %changelog +* Thu Jul 2 2009 Ville Skytt?? - 1.12.1-2 +- Add dependency on m4 (#453306). + * Thu May 14 2009 Than Ngo - 1.12.1-1 - 1.12.1 From fabbione at fedoraproject.org Wed Jul 1 22:10:58 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 1 Jul 2009 22:10:58 +0000 (UTC) Subject: rpms/corosync/devel .cvsignore, 1.7, 1.8 corosync.spec, 1.29, 1.30 sources, 1.9, 1.10 Message-ID: <20090701221058.53C4F11C02C3@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/corosync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28666 Modified Files: .cvsignore corosync.spec sources Log Message: corosync 1.0.0.rc1 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 20 Jun 2009 07:52:36 -0000 1.7 +++ .cvsignore 1 Jul 2009 22:10:27 -0000 1.8 @@ -1 +1 @@ -corosync-0.98.tar.gz +corosync-0.100.tar.gz Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/corosync.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- corosync.spec 20 Jun 2009 07:52:36 -0000 1.29 +++ corosync.spec 1 Jul 2009 22:10:27 -0000 1.30 @@ -2,7 +2,7 @@ Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces -Version: 0.98 +Version: 0.100 Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base @@ -202,6 +202,9 @@ The Corosync Cluster Engine APIs. %{_mandir}/man8/coroipc_overview.8* %changelog +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + * Sat Jun 20 2009 Fabio M. Di Nitto - 0.98-1 - New upstream release - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 Jun 2009 07:52:36 -0000 1.9 +++ sources 1 Jul 2009 22:10:28 -0000 1.10 @@ -1 +1 @@ -49a058b7384003132cd82c4676faa75f corosync-0.98.tar.gz +a46f68e60eea5bd60436af2a7af79d68 corosync-0.100.tar.gz From fabbione at fedoraproject.org Wed Jul 1 22:16:52 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 1 Jul 2009 22:16:52 +0000 (UTC) Subject: rpms/openais/devel .cvsignore, 1.15, 1.16 openais.spec, 1.44, 1.45 sources, 1.16, 1.17 Message-ID: <20090701221652.0FF9A11C02C3@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/openais/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29710 Modified Files: .cvsignore openais.spec sources Log Message: openais 1.0.0.rc1 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 20 Jun 2009 07:56:22 -0000 1.15 +++ .cvsignore 1 Jul 2009 22:16:21 -0000 1.16 @@ -1 +1 @@ -openais-0.97.tar.gz +openais-0.100.tar.gz Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/openais.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- openais.spec 20 Jun 2009 07:56:23 -0000 1.44 +++ openais.spec 1 Jul 2009 22:16:21 -0000 1.45 @@ -2,7 +2,7 @@ Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs -Version: 0.97 +Version: 0.100 Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base @@ -12,12 +12,12 @@ Source0: http://www.osdl.org/downloads/o # Runtime bits Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig -Requires: corosync >= 0.98-1 +Requires: corosync >= 0.100-1 Requires: openaislib = %{version}-%{release} Conflicts: openais-devel <= 0.89 # Setup/build bits -BuildRequires: corosynclib-devel >= 0.98 +BuildRequires: corosynclib-devel >= 0.100 %define buildtrunk 0 %{?alphatag: %define buildtrunk 1} @@ -155,6 +155,9 @@ This package contains the include files %{_libdir}/pkgconfig/*.pc %changelog +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + * Sat Jun 20 2009 Fabio M. Di Nitto - 0.97-1 - New upstream release - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 20 Jun 2009 07:56:23 -0000 1.16 +++ sources 1 Jul 2009 22:16:21 -0000 1.17 @@ -1 +1 @@ -b613a876f4c715f8ee4f6f3d4d724f68 openais-0.97.tar.gz +c97f58e91a8dcd147bcf489cb13e09a4 openais-0.100.tar.gz From fabbione at fedoraproject.org Wed Jul 1 22:30:30 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 1 Jul 2009 22:30:30 +0000 (UTC) Subject: rpms/cluster/devel .cvsignore, 1.25, 1.26 cluster.spec, 1.53, 1.54 sources, 1.26, 1.27 Message-ID: <20090701223030.D057411C02C3@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/cluster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31802 Modified Files: .cvsignore cluster.spec sources Log Message: cluster 3.0.0.rc4 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 20 Jun 2009 10:49:12 -0000 1.25 +++ .cvsignore 1 Jul 2009 22:29:58 -0000 1.26 @@ -1 +1 @@ -cluster-3.0.0.rc3.tar.gz +cluster-3.0.0.rc4.tar.gz Index: cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/cluster.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- cluster.spec 29 Jun 2009 14:49:27 -0000 1.53 +++ cluster.spec 1 Jul 2009 22:29:58 -0000 1.54 @@ -14,7 +14,7 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc3 +%define alphatag rc4 Name: cluster Summary: Red Hat Cluster @@ -33,8 +33,8 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na BuildRequires: perl python BuildRequires: glibc-kernheaders glibc-devel BuildRequires: libxml2-devel ncurses-devel slang-devel -BuildRequires: corosynclib-devel >= 0.98-1 -BuildRequires: openaislib-devel >= 0.97-1 +BuildRequires: corosynclib-devel >= 0.100-1 +BuildRequires: openaislib-devel >= 0.100-1 BuildRequires: openldap-devel perl(ExtUtils::MakeMaker) %prep @@ -92,8 +92,8 @@ Summary: Red Hat Cluster Manager Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig -Requires: corosync >= 0.98-1 -Requires: openais >= 0.97-1 +Requires: corosync >= 0.100-1 +Requires: openais >= 0.100-1 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: ricci >= 0.15.0-4 modcluster >= 0.15.0-3 Requires: fence-agents @@ -300,10 +300,12 @@ fi %{_mandir}/man8/*.gfs.* %changelog -* Mon Jun 29 2009 Fabio M. Di Nitto - 3.0.0-19.rc3 +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-19.rc4 +- New upstream release - spec file updates: * cman subpackage: avoid unnecessary calls to ldconfig * rgmanager subpackage: drop unrequired Requires: that belong to ras + * BuildRequires and Requires corosync/openais 1.0.0.rc1 * Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-18.rc3 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 20 Jun 2009 10:49:13 -0000 1.26 +++ sources 1 Jul 2009 22:29:58 -0000 1.27 @@ -1 +1 @@ -58dab631d701f33136a66599abe8029f cluster-3.0.0.rc3.tar.gz +b555c45409723882f107d85fe59e5af0 cluster-3.0.0.rc4.tar.gz From fabbione at fedoraproject.org Wed Jul 1 22:37:10 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 1 Jul 2009 22:37:10 +0000 (UTC) Subject: rpms/resource-agents/devel .cvsignore, 1.8, 1.9 resource-agents.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090701223710.0DB2611C02C3@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/resource-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv449 Modified Files: .cvsignore resource-agents.spec sources Log Message: 3.0.0.rc4 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 20 Jun 2009 11:06:44 -0000 1.8 +++ .cvsignore 1 Jul 2009 22:36:39 -0000 1.9 @@ -1 +1 @@ -resource-agents-3.0.0.rc3.tar.gz +resource-agents-3.0.0.rc4.tar.gz Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/resource-agents.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- resource-agents.spec 20 Jun 2009 11:06:45 -0000 1.8 +++ resource-agents.spec 1 Jul 2009 22:36:39 -0000 1.9 @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc3 +%define alphatag rc4 Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 10%{?alphatag:.%{alphatag}}%{?dist} +Release: 11%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -72,6 +72,9 @@ services to operate in a High Availabili %{_datadir}/cluster %changelog +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-11.rc4 +- New upstream release. + * Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-10.rc3 - New upstream release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Jun 2009 11:06:45 -0000 1.8 +++ sources 1 Jul 2009 22:36:39 -0000 1.9 @@ -1 +1 @@ -5674aebc05b986945f18b6dd0de8696f resource-agents-3.0.0.rc3.tar.gz +2de54c8219dc48886951f25b8d86ff81 resource-agents-3.0.0.rc4.tar.gz From konradm at fedoraproject.org Wed Jul 1 22:40:33 2009 From: konradm at fedoraproject.org (konradm) Date: Wed, 1 Jul 2009 22:40:33 +0000 (UTC) Subject: rpms/sdcc/devel sdcc.spec,1.15,1.16 Message-ID: <20090701224033.CA5F411C02C3@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/sdcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1974 Modified Files: sdcc.spec Log Message: * Wed Jul 1 2009 Conrad Meyer - 2.9.0-2 - Fix #454205 by BR'ing gputils and re-adding install_post hack. Index: sdcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdcc/devel/sdcc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sdcc.spec 11 May 2009 23:19:09 -0000 1.15 +++ sdcc.spec 1 Jul 2009 22:40:33 -0000 1.16 @@ -1,6 +1,6 @@ Name: sdcc Version: 2.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Small Device C Compiler Group: Applications/Engineering License: GPLv2+ @@ -17,6 +17,7 @@ BuildRequires: autoconf BuildRequires: bison BuildRequires: flex BuildRequires: gc-devel +BuilDrequires: gputils BuildRequires: lyx BuildRequires: latex2html @@ -59,6 +60,26 @@ Emacs extensions for SDCC. #%%patch2 -p1 find -name '*.[ch]' -exec chmod -x '{}' \; +# Extract %%__os_install_post into os_install_post~ +cat << \EOF > os_install_post~ +%__os_install_post +EOF + +# Generate customized brp-*scripts +cat os_install_post~ | while read a x y; do +case $a in +# Prevent brp-strip* from trying to handle foreign binaries +*/brp-strip*) + b=$(basename $a) + sed -e 's,find $RPM_BUILD_ROOT,find $RPM_BUILD_ROOT%_bindir $RPM_BUILD_ROOT%_libexecdir,' $a > $b + chmod a+x $b + ;; +esac +done + +sed -e 's,^[ ]*/usr/lib/rpm.*/brp-strip,./brp-strip,' \ +< os_install_post~ > os_install_post + %build # Rebuild configure scripts (patched configure.in s in patch0). @@ -116,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 1 2009 Conrad Meyer - 2.9.0-2 +- Fix #454205 by BR'ing gputils and re-adding install_post hack. + * Thu Apr 30 2009 Conrad Meyer - 2.9.0-1 - Bump to 2.9.0. From fabbione at fedoraproject.org Wed Jul 1 22:46:54 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 1 Jul 2009 22:46:54 +0000 (UTC) Subject: rpms/fence-agents/devel .cvsignore, 1.9, 1.10 fence-agents.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090701224654.CAD6F11C02C3@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/fence-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3074 Modified Files: .cvsignore fence-agents.spec sources Log Message: 3.0.0.rc4 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 20 Jun 2009 11:02:49 -0000 1.9 +++ .cvsignore 1 Jul 2009 22:46:24 -0000 1.10 @@ -1 +1 @@ -fence-agents-3.0.0.rc3.tar.gz +fence-agents-3.0.0.rc4.tar.gz Index: fence-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/fence-agents.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fence-agents.spec 20 Jun 2009 11:02:50 -0000 1.10 +++ fence-agents.spec 1 Jul 2009 22:46:24 -0000 1.11 @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc3 +%define alphatag rc4 Name: fence-agents Summary: Fence Agents for Red Hat Cluster Version: 3.0.0 -Release: 12%{?alphatag:.%{alphatag}}%{?dist} +Release: 13%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -39,8 +39,8 @@ BuildRequires: glibc-devel BuildRequires: nss-devel nspr-devel BuildRequires: libxml2-devel libvirt-devel BuildRequires: clusterlib-devel >= 3.0.0 -BuildRequires: corosynclib-devel >= 0.98-1 -BuildRequires: openaislib-devel >= 0.97-1 +BuildRequires: corosynclib-devel >= 0.100-1 +BuildRequires: openaislib-devel >= 0.100-1 %prep %setup -q -n fence-agents-%{version}%{?alphatag:.%{alphatag}} @@ -53,7 +53,6 @@ BuildRequires: openaislib-devel >= 0.97- --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ - --enable_virt \ --disable_kernel_check ##CFLAGS="$(echo '%{optflags}')" make %{_smp_mflags} @@ -84,6 +83,12 @@ power management for several devices. %{_mandir}/man8/fence* %changelog +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-13.rc4 +- New upstream release. +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Drop --enable_virt. Now default upstream + * Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-12.rc3 - New upstream release. - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 Jun 2009 11:02:50 -0000 1.9 +++ sources 1 Jul 2009 22:46:24 -0000 1.10 @@ -1 +1 @@ -8abb4314f3f95a81c17c7bcf14612751 fence-agents-3.0.0.rc3.tar.gz +ade3965d561d645f24c482e38b93a8e2 fence-agents-3.0.0.rc4.tar.gz From mclasen at fedoraproject.org Wed Jul 1 23:01:53 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 1 Jul 2009 23:01:53 +0000 (UTC) Subject: rpms/gtk2/F-11 .cvsignore, 1.106, 1.107 gtk2.spec, 1.379, 1.380 sources, 1.115, 1.116 Message-ID: <20090701230153.6676E11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5680 Modified Files: .cvsignore gtk2.spec sources Log Message: 2.16.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/.cvsignore,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- .cvsignore 28 Jun 2009 05:36:58 -0000 1.106 +++ .cvsignore 1 Jul 2009 23:01:22 -0000 1.107 @@ -1 +1 @@ -gtk+-2.16.3.tar.bz2 +gtk+-2.16.4.tar.bz2 Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/gtk2.spec,v retrieving revision 1.379 retrieving revision 1.380 diff -u -p -r1.379 -r1.380 --- gtk2.spec 28 Jun 2009 05:36:58 -0000 1.379 +++ gtk2.spec 1 Jul 2009 23:01:22 -0000 1.380 @@ -11,7 +11,7 @@ %define libpng_version 2:1.2.2-16 %define xrandr_version 1.2.99.4-2 -%define base_version 2.16.3 +%define base_version 2.16.4 %define bin_version 2.10.0 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X @@ -373,6 +373,9 @@ fi %changelog +* Wed Jul 1 2009 Matthias Clasen - 2.16.4-1 +- Update to 2.16.4 + * Sun Jun 28 2009 Matthias Clasen - 2.16.3-1 - Update to 2.16.3 - http://download.gnome.org/sources/gtk+/2.16/gtk+-2.16.3.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/sources,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- sources 28 Jun 2009 05:36:58 -0000 1.115 +++ sources 1 Jul 2009 23:01:22 -0000 1.116 @@ -1 +1 @@ -a224d3a34e21ec161e9041a17f90ad26 gtk+-2.16.3.tar.bz2 +d666f9f5a544e9d4d45804d88b1b5c4d gtk+-2.16.4.tar.bz2 From quantumburnz at fedoraproject.org Wed Jul 1 23:40:28 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Wed, 1 Jul 2009 23:40:28 +0000 (UTC) Subject: rpms/barry/devel barry.desktop,1.3,1.4 barry.spec,1.16,1.17 Message-ID: <20090701234028.3C47A11C041A@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13146/devel Modified Files: barry.desktop barry.spec Log Message: Add icon and make changes to spec file. Index: barry.desktop =================================================================== RCS file: /cvs/pkgs/rpms/barry/devel/barry.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- barry.desktop 30 Jun 2009 23:07:25 -0000 1.3 +++ barry.desktop 1 Jul 2009 23:39:58 -0000 1.4 @@ -5,7 +5,7 @@ Name=Barry Backup GenericName=utility Comment=Backup your Blackberry Exec=barrybackup -Icon=backup +Icon=barrybackup Terminal=false Type=Application Categories=Utility; Index: barry.spec =================================================================== RCS file: /cvs/pkgs/rpms/barry/devel/barry.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- barry.spec 30 Jun 2009 23:07:25 -0000 1.16 +++ barry.spec 1 Jul 2009 23:39:58 -0000 1.17 @@ -1,12 +1,4 @@ # Fedora <= 8 & ==11 currently supports opensync 0.22 -#%define with_opensync 0 -#%if %{?fedora} < 9 -# %define with_opensync 1 -#%endif -#%if %{?fedora} > 10 -# %define with_opensync 1 -#%endif - %if 0%{?fc9}%{?fc10} %define with_opensync 0 %else @@ -30,6 +22,7 @@ URL: http://www.netdirect.ca/ # (cd build && ../tar-create.sh 0 15) Source0: %{name}-%{version}-20090630.tar.bz2 Source1: %{name}.desktop +Source2: barrybackup24.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel boost-devel desktop-file-utils gtkmm24-devel @@ -65,7 +58,9 @@ This package contains the development li %package devel-docs Summary: BlackBerry Desktop for Linux - development libraries documentation Group: Development/Libraries +%if 0%{?fedora} >= 10 BuildArch: noarch +%endif %description devel-docs This package contains the documentation for the development library files for @@ -100,10 +95,6 @@ cd gui/ %{configure} PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Touch-magic to prevent auto* from running. Thank you Andreas Metzler. -#touch -r Makefile ./src/Makefile ./src/Makefile.am ./src/Makefile.in \ -# ./man/Makefile.am ./man/Makefile.in config.h config.h.in Makefile.am \ -# Makefile.in configure.ac aclocal.m4 configure %{__make} %{?_smp_mflags} cd ../ @@ -143,7 +134,10 @@ cd ../ # gui tree cd gui/ %{__make} DESTDIR=%{buildroot} install -desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps + +install -p -m 0644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps/barrybackup.png cd ../ # opensync tree @@ -166,6 +160,7 @@ cd ../ %{_datadir}/hal/fdi/policy/10osvendor/19-blackberry-acl.fdi %{_datadir}/barry/glade/*.glade %{_datadir}/applications/%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/barrybackup*.png %config(noreplace) %{_sysconfdir}/ppp/peers/* %config(noreplace) %{_sysconfdir}/chatscripts/*.chat @@ -200,6 +195,18 @@ cd ../ %clean %{__rm} -rf %{buildroot} +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -208,8 +215,9 @@ cd ../ * Wed Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git - version/git bump - create separate doc package; BZ#508462 -- fixed the opensync build issue; BZ#506609 -- incorporated hal changes; BZ#478851 +- fixed opensync build issue; BZ#506609 +- incorporated hal changes to fix permission issues; BZ#478851 +- add icon for BarryBackup; BZ#483151 * Wed Jun 23 2009 Christopher D. Stover 0.15-0.6.20090623git - version/git bump From quantumburnz at fedoraproject.org Wed Jul 1 23:40:27 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Wed, 1 Jul 2009 23:40:27 +0000 (UTC) Subject: rpms/barry/F-10 barry.desktop,1.3,1.4 barry.spec,1.6,1.7 Message-ID: <20090701234027.A889B11C02C3@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13146/F-10 Modified Files: barry.desktop barry.spec Log Message: Add icon and make changes to spec file. Index: barry.desktop =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-10/barry.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- barry.desktop 30 Jun 2009 23:07:24 -0000 1.3 +++ barry.desktop 1 Jul 2009 23:39:57 -0000 1.4 @@ -5,7 +5,7 @@ Name=Barry Backup GenericName=utility Comment=Backup your Blackberry Exec=barrybackup -Icon=backup +Icon=barrybackup Terminal=false Type=Application Categories=Utility; Index: barry.spec =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-10/barry.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- barry.spec 30 Jun 2009 23:07:24 -0000 1.6 +++ barry.spec 1 Jul 2009 23:39:57 -0000 1.7 @@ -1,12 +1,4 @@ # Fedora <= 8 & ==11 currently supports opensync 0.22 -#%define with_opensync 0 -#%if %{?fedora} < 9 -# %define with_opensync 1 -#%endif -#%if %{?fedora} > 10 -# %define with_opensync 1 -#%endif - %if 0%{?fc9}%{?fc10} %define with_opensync 0 %else @@ -30,6 +22,7 @@ URL: http://www.netdirect.ca/ # (cd build && ../tar-create.sh 0 15) Source0: %{name}-%{version}-20090630.tar.bz2 Source1: %{name}.desktop +Source2: barrybackup24.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel boost-devel desktop-file-utils gtkmm24-devel @@ -65,7 +58,9 @@ This package contains the development li %package devel-docs Summary: BlackBerry Desktop for Linux - development libraries documentation Group: Development/Libraries +%if 0%{?fedora} >= 10 BuildArch: noarch +%endif %description devel-docs This package contains the documentation for the development library files for @@ -100,10 +95,6 @@ cd gui/ %{configure} PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Touch-magic to prevent auto* from running. Thank you Andreas Metzler. -#touch -r Makefile ./src/Makefile ./src/Makefile.am ./src/Makefile.in \ -# ./man/Makefile.am ./man/Makefile.in config.h config.h.in Makefile.am \ -# Makefile.in configure.ac aclocal.m4 configure %{__make} %{?_smp_mflags} cd ../ @@ -143,7 +134,10 @@ cd ../ # gui tree cd gui/ %{__make} DESTDIR=%{buildroot} install -desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps + +install -p -m 0644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps/barrybackup.png cd ../ # opensync tree @@ -166,6 +160,7 @@ cd ../ %{_datadir}/hal/fdi/policy/10osvendor/19-blackberry-acl.fdi %{_datadir}/barry/glade/*.glade %{_datadir}/applications/%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/barrybackup*.png %config(noreplace) %{_sysconfdir}/ppp/peers/* %config(noreplace) %{_sysconfdir}/chatscripts/*.chat @@ -200,6 +195,18 @@ cd ../ %clean %{__rm} -rf %{buildroot} +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -208,8 +215,9 @@ cd ../ * Wed Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git - version/git bump - create separate doc package; BZ#508462 -- fixed the opensync build issue; BZ#506609 -- incorporated hal changes; BZ#478851 +- fixed opensync build issue; BZ#506609 +- incorporated hal changes to fix permission issues; BZ#478851 +- add icon for BarryBackup; BZ#483151 * Wed Jun 23 2009 Christopher D. Stover 0.15-0.6.20090623git - version/git bump From quantumburnz at fedoraproject.org Wed Jul 1 23:40:27 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Wed, 1 Jul 2009 23:40:27 +0000 (UTC) Subject: rpms/barry/F-11 barry.desktop,1.3,1.4 barry.spec,1.17,1.18 Message-ID: <20090701234027.D1F6211C02C4@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13146/F-11 Modified Files: barry.desktop barry.spec Log Message: Add icon and make changes to spec file. Index: barry.desktop =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-11/barry.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- barry.desktop 30 Jun 2009 23:07:24 -0000 1.3 +++ barry.desktop 1 Jul 2009 23:39:57 -0000 1.4 @@ -5,7 +5,7 @@ Name=Barry Backup GenericName=utility Comment=Backup your Blackberry Exec=barrybackup -Icon=backup +Icon=barrybackup Terminal=false Type=Application Categories=Utility; Index: barry.spec =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-11/barry.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- barry.spec 30 Jun 2009 23:07:24 -0000 1.17 +++ barry.spec 1 Jul 2009 23:39:57 -0000 1.18 @@ -1,12 +1,4 @@ # Fedora <= 8 & ==11 currently supports opensync 0.22 -#%define with_opensync 0 -#%if %{?fedora} < 9 -# %define with_opensync 1 -#%endif -#%if %{?fedora} > 10 -# %define with_opensync 1 -#%endif - %if 0%{?fc9}%{?fc10} %define with_opensync 0 %else @@ -30,6 +22,7 @@ URL: http://www.netdirect.ca/ # (cd build && ../tar-create.sh 0 15) Source0: %{name}-%{version}-20090630.tar.bz2 Source1: %{name}.desktop +Source2: barrybackup24.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel boost-devel desktop-file-utils gtkmm24-devel @@ -65,7 +58,9 @@ This package contains the development li %package devel-docs Summary: BlackBerry Desktop for Linux - development libraries documentation Group: Development/Libraries +%if 0%{?fedora} >= 10 BuildArch: noarch +%endif %description devel-docs This package contains the documentation for the development library files for @@ -100,10 +95,6 @@ cd gui/ %{configure} PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Touch-magic to prevent auto* from running. Thank you Andreas Metzler. -#touch -r Makefile ./src/Makefile ./src/Makefile.am ./src/Makefile.in \ -# ./man/Makefile.am ./man/Makefile.in config.h config.h.in Makefile.am \ -# Makefile.in configure.ac aclocal.m4 configure %{__make} %{?_smp_mflags} cd ../ @@ -143,7 +134,10 @@ cd ../ # gui tree cd gui/ %{__make} DESTDIR=%{buildroot} install -desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps + +install -p -m 0644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps/barrybackup.png cd ../ # opensync tree @@ -166,6 +160,7 @@ cd ../ %{_datadir}/hal/fdi/policy/10osvendor/19-blackberry-acl.fdi %{_datadir}/barry/glade/*.glade %{_datadir}/applications/%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/barrybackup*.png %config(noreplace) %{_sysconfdir}/ppp/peers/* %config(noreplace) %{_sysconfdir}/chatscripts/*.chat @@ -200,6 +195,18 @@ cd ../ %clean %{__rm} -rf %{buildroot} +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -208,8 +215,9 @@ cd ../ * Wed Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git - version/git bump - create separate doc package; BZ#508462 -- fixed the opensync build issue; BZ#506609 -- incorporated hal changes; BZ#478851 +- fixed opensync build issue; BZ#506609 +- incorporated hal changes to fix permission issues; BZ#478851 +- add icon for BarryBackup; BZ#483151 * Wed Jun 23 2009 Christopher D. Stover 0.15-0.6.20090623git - version/git bump From quantumburnz at fedoraproject.org Wed Jul 1 23:40:28 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Wed, 1 Jul 2009 23:40:28 +0000 (UTC) Subject: rpms/barry/F-9 barry.desktop,1.3,1.4 barry.spec,1.4,1.5 Message-ID: <20090701234028.0919C11C0419@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13146/F-9 Modified Files: barry.desktop barry.spec Log Message: Add icon and make changes to spec file. Index: barry.desktop =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-9/barry.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- barry.desktop 30 Jun 2009 23:07:25 -0000 1.3 +++ barry.desktop 1 Jul 2009 23:39:57 -0000 1.4 @@ -5,7 +5,7 @@ Name=Barry Backup GenericName=utility Comment=Backup your Blackberry Exec=barrybackup -Icon=backup +Icon=barrybackup Terminal=false Type=Application Categories=Utility; Index: barry.spec =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-9/barry.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- barry.spec 30 Jun 2009 23:07:25 -0000 1.4 +++ barry.spec 1 Jul 2009 23:39:57 -0000 1.5 @@ -1,12 +1,4 @@ # Fedora <= 8 & ==11 currently supports opensync 0.22 -#%define with_opensync 0 -#%if %{?fedora} < 9 -# %define with_opensync 1 -#%endif -#%if %{?fedora} > 10 -# %define with_opensync 1 -#%endif - %if 0%{?fc9}%{?fc10} %define with_opensync 0 %else @@ -30,6 +22,7 @@ URL: http://www.netdirect.ca/ # (cd build && ../tar-create.sh 0 15) Source0: %{name}-%{version}-20090630.tar.bz2 Source1: %{name}.desktop +Source2: barrybackup24.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel boost-devel desktop-file-utils gtkmm24-devel @@ -65,7 +58,9 @@ This package contains the development li %package devel-docs Summary: BlackBerry Desktop for Linux - development libraries documentation Group: Development/Libraries +%if 0%{?fedora} >= 10 BuildArch: noarch +%endif %description devel-docs This package contains the documentation for the development library files for @@ -100,10 +95,6 @@ cd gui/ %{configure} PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Touch-magic to prevent auto* from running. Thank you Andreas Metzler. -#touch -r Makefile ./src/Makefile ./src/Makefile.am ./src/Makefile.in \ -# ./man/Makefile.am ./man/Makefile.in config.h config.h.in Makefile.am \ -# Makefile.in configure.ac aclocal.m4 configure %{__make} %{?_smp_mflags} cd ../ @@ -143,7 +134,10 @@ cd ../ # gui tree cd gui/ %{__make} DESTDIR=%{buildroot} install -desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE1} +%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps + +install -p -m 0644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps/barrybackup.png cd ../ # opensync tree @@ -166,6 +160,7 @@ cd ../ %{_datadir}/hal/fdi/policy/10osvendor/19-blackberry-acl.fdi %{_datadir}/barry/glade/*.glade %{_datadir}/applications/%{name}.desktop +%{_datadir}/icons/hicolor/*/apps/barrybackup*.png %config(noreplace) %{_sysconfdir}/ppp/peers/* %config(noreplace) %{_sysconfdir}/chatscripts/*.chat @@ -200,6 +195,18 @@ cd ../ %clean %{__rm} -rf %{buildroot} +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -208,8 +215,9 @@ cd ../ * Wed Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git - version/git bump - create separate doc package; BZ#508462 -- fixed the opensync build issue; BZ#506609 -- incorporated hal changes; BZ#478851 +- fixed opensync build issue; BZ#506609 +- incorporated hal changes to fix permission issues; BZ#478851 +- add icon for BarryBackup; BZ#483151 * Wed Jun 23 2009 Christopher D. Stover 0.15-0.6.20090623git - version/git bump From bogado at fedoraproject.org Wed Jul 1 23:46:31 2009 From: bogado at fedoraproject.org (Victor Bogado da Silva Lins) Date: Wed, 1 Jul 2009 23:46:31 +0000 (UTC) Subject: rpms/cave9/devel cave9-mutante-fontconfig.conf, NONE, 1.1 cave9.spec, 1.2, 1.3 import.log, 1.1, 1.2 Message-ID: <20090701234631.1155C11C02C3@cvs1.fedora.phx.redhat.com> Author: bogado Update of /cvs/pkgs/rpms/cave9/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14494/devel Modified Files: cave9.spec import.log Added Files: cave9-mutante-fontconfig.conf Log Message: Separated font package. --- NEW FILE cave9-mutante-fontconfig.conf --- fantasy Mutante Mutante fantasy Index: cave9.spec =================================================================== RCS file: /cvs/pkgs/rpms/cave9/devel/cave9.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cave9.spec 24 Feb 2009 06:38:07 -0000 1.2 +++ cave9.spec 1 Jul 2009 23:46:00 -0000 1.3 @@ -1,21 +1,43 @@ +%global fontconf 64-%{name}-mutante.conf + Name: cave9 Version: 0.3 -Release: 4%{?dist} +Release: 8%{?dist} Summary: 3d game of cave exploration Group: Amusements/Games -License: LGPLv3 and CC-BY and CC-BY-SA and Public Domain +License: LGPLv3 and CC-BY-SA and Public Domain URL: http://code.google.com/p/cave9 Source0: http://cave9.googlecode.com/files/cave9_src-%{version}.tgz Source1: http://cave9.googlecode.com/files/cave9_data-4.tgz Source2: cave9.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils +BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils, fontpackages-devel +Requires: cave9-mutante-fonts + %description Cave9 is a gravity cave-exploration game. +%package mutante-fonts + +Summary: Mutante font used by the hud in cave9 game +BuildArch: noarch +Group: User Interface/X +License: CC-BY +Requires: fontpackages-filesystem +Source3: %{name}-mutante-fontconfig.conf + +%description mutante-fonts +Fantasy/display font used by the cave9 game, this font has only the basic +characters used in the portuguese language was made as an experiment by the +designer Jonas K??hner (http://www.criatipos.com/) the font was altered by +the game developer to also include numbers. + +%_font_pkg -n mutante -f %{fontconf} mutante.ttf +%doc data_README.txt + %prep %setup -q -a1 sed -i src/GNUmakefile -e "s/-Wall -Werror -ggdb//" @@ -24,10 +46,24 @@ sed -i src/GNUmakefile -e "s/-Wall -Werr CFLAGS="%{optflags}" make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/usr/share/cave9 +rm -rf %{buildroot} +mkdir -p %{buildroot}/usr/bin %{buildroot}/usr/share/cave9 install -m 755 -p cave9 $RPM_BUILD_ROOT/usr/bin -cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav data/hud.ttf $RPM_BUILD_ROOT/usr/share/cave9 +cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav $RPM_BUILD_ROOT/usr/share/cave9 + +install -m 0755 -d %{buildroot}%{_fontdir} +install -m 0644 -p data/*.ttf %{buildroot}%{_fontdir}/mutante.ttf + +install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ + %{buildroot}%{_fontconfig_confdir} + +install -m 0644 -p %{SOURCE3} \ + %{buildroot}%{_fontconfig_templatedir}/%{fontconf} +ln -s %{_fontconfig_templatedir}/%{fontconf} \ + %{buildroot}%{_fontconfig_confdir}/%{fontconf} + +ln -s ../../..%{_fontdir}/mutante.ttf $RPM_BUILD_ROOT/usr/share/cave9/hud.ttf + mv data/README.txt data_README.txt desktop-file-install --vendor="fedora" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ @@ -44,8 +80,23 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-cave9.desktop %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 0.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Wed Jun 24 2009 Victor Bogado 0.3-8 +- removed the redundant ownership of the fontdir. +- lowered the priority +- Updated the font configuration to better match the suggested template. + +* Tue Jun 23 2009 Victor Bogado 0.3-7 +- following the tips from Nicolas Mailhot on bug#477371 + +* Mon Jun 22 2009 Victor Bogado 0.3-6 +- adapted the font subpackge to the new template on Fedora 11 + +* Wed Jan 14 2009 Victor Bogado 0.3-5 +- Added a fontconfig file. +- Renamed the font file subpackage to follow the font package naming convention. + +* Tue Dec 30 2008 Victor Bogado 0.3-4 +- Separate the font into a new package. * Sun Nov 09 2008 Victor Bogado 0.3-3 - Use install -m 755 to ensure correct mode for binaries. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/cave9/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Nov 2008 13:27:46 -0000 1.1 +++ import.log 1 Jul 2009 23:46:00 -0000 1.2 @@ -1 +1,2 @@ cave9-0_3-3_bog9:HEAD:cave9-0.3-3.bog9.src.rpm:1226755599 +cave9-0_3-8_bog11:HEAD:cave9-0.3-8.bog11.src.rpm:1246491883 From bogado at fedoraproject.org Wed Jul 1 23:53:55 2009 From: bogado at fedoraproject.org (Victor Bogado da Silva Lins) Date: Wed, 1 Jul 2009 23:53:55 +0000 (UTC) Subject: rpms/cave9/F-11 cave9-mutante-fontconfig.conf, NONE, 1.1 cave9.spec, 1.2, 1.3 import.log, 1.1, 1.2 Message-ID: <20090701235355.610A711C02C3@cvs1.fedora.phx.redhat.com> Author: bogado Update of /cvs/pkgs/rpms/cave9/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15536/F-11 Modified Files: cave9.spec import.log Added Files: cave9-mutante-fontconfig.conf Log Message: Separated font package. --- NEW FILE cave9-mutante-fontconfig.conf --- fantasy Mutante Mutante fantasy Index: cave9.spec =================================================================== RCS file: /cvs/pkgs/rpms/cave9/F-11/cave9.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cave9.spec 24 Feb 2009 06:38:07 -0000 1.2 +++ cave9.spec 1 Jul 2009 23:53:25 -0000 1.3 @@ -1,21 +1,43 @@ +%global fontconf 64-%{name}-mutante.conf + Name: cave9 Version: 0.3 -Release: 4%{?dist} +Release: 8%{?dist} Summary: 3d game of cave exploration Group: Amusements/Games -License: LGPLv3 and CC-BY and CC-BY-SA and Public Domain +License: LGPLv3 and CC-BY-SA and Public Domain URL: http://code.google.com/p/cave9 Source0: http://cave9.googlecode.com/files/cave9_src-%{version}.tgz Source1: http://cave9.googlecode.com/files/cave9_data-4.tgz Source2: cave9.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils +BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils, fontpackages-devel +Requires: cave9-mutante-fonts + %description Cave9 is a gravity cave-exploration game. +%package mutante-fonts + +Summary: Mutante font used by the hud in cave9 game +BuildArch: noarch +Group: User Interface/X +License: CC-BY +Requires: fontpackages-filesystem +Source3: %{name}-mutante-fontconfig.conf + +%description mutante-fonts +Fantasy/display font used by the cave9 game, this font has only the basic +characters used in the portuguese language was made as an experiment by the +designer Jonas K??hner (http://www.criatipos.com/) the font was altered by +the game developer to also include numbers. + +%_font_pkg -n mutante -f %{fontconf} mutante.ttf +%doc data_README.txt + %prep %setup -q -a1 sed -i src/GNUmakefile -e "s/-Wall -Werror -ggdb//" @@ -24,10 +46,24 @@ sed -i src/GNUmakefile -e "s/-Wall -Werr CFLAGS="%{optflags}" make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/usr/share/cave9 +rm -rf %{buildroot} +mkdir -p %{buildroot}/usr/bin %{buildroot}/usr/share/cave9 install -m 755 -p cave9 $RPM_BUILD_ROOT/usr/bin -cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav data/hud.ttf $RPM_BUILD_ROOT/usr/share/cave9 +cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav $RPM_BUILD_ROOT/usr/share/cave9 + +install -m 0755 -d %{buildroot}%{_fontdir} +install -m 0644 -p data/*.ttf %{buildroot}%{_fontdir}/mutante.ttf + +install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ + %{buildroot}%{_fontconfig_confdir} + +install -m 0644 -p %{SOURCE3} \ + %{buildroot}%{_fontconfig_templatedir}/%{fontconf} +ln -s %{_fontconfig_templatedir}/%{fontconf} \ + %{buildroot}%{_fontconfig_confdir}/%{fontconf} + +ln -s ../../..%{_fontdir}/mutante.ttf $RPM_BUILD_ROOT/usr/share/cave9/hud.ttf + mv data/README.txt data_README.txt desktop-file-install --vendor="fedora" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ @@ -44,8 +80,23 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-cave9.desktop %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 0.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Wed Jun 24 2009 Victor Bogado 0.3-8 +- removed the redundant ownership of the fontdir. +- lowered the priority +- Updated the font configuration to better match the suggested template. + +* Tue Jun 23 2009 Victor Bogado 0.3-7 +- following the tips from Nicolas Mailhot on bug#477371 + +* Mon Jun 22 2009 Victor Bogado 0.3-6 +- adapted the font subpackge to the new template on Fedora 11 + +* Wed Jan 14 2009 Victor Bogado 0.3-5 +- Added a fontconfig file. +- Renamed the font file subpackage to follow the font package naming convention. + +* Tue Dec 30 2008 Victor Bogado 0.3-4 +- Separate the font into a new package. * Sun Nov 09 2008 Victor Bogado 0.3-3 - Use install -m 755 to ensure correct mode for binaries. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/cave9/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Nov 2008 13:27:46 -0000 1.1 +++ import.log 1 Jul 2009 23:53:25 -0000 1.2 @@ -1 +1,2 @@ cave9-0_3-3_bog9:HEAD:cave9-0.3-3.bog9.src.rpm:1226755599 +cave9-0_3-8_bog11:F-11:cave9-0.3-8.bog11.src.rpm:1246492186 From bogado at fedoraproject.org Wed Jul 1 23:57:07 2009 From: bogado at fedoraproject.org (Victor Bogado da Silva Lins) Date: Wed, 1 Jul 2009 23:57:07 +0000 (UTC) Subject: rpms/cave9/F-10 cave9-mutante-fontconfig.conf, NONE, 1.1 cave9.spec, 1.1, 1.2 import.log, 1.1, 1.2 Message-ID: <20090701235707.9FCEB11C02C3@cvs1.fedora.phx.redhat.com> Author: bogado Update of /cvs/pkgs/rpms/cave9/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16573/F-10 Modified Files: cave9.spec import.log Added Files: cave9-mutante-fontconfig.conf Log Message: Separated font package. --- NEW FILE cave9-mutante-fontconfig.conf --- fantasy Mutante Mutante fantasy Index: cave9.spec =================================================================== RCS file: /cvs/pkgs/rpms/cave9/F-10/cave9.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cave9.spec 15 Nov 2008 13:34:46 -0000 1.1 +++ cave9.spec 1 Jul 2009 23:56:37 -0000 1.2 @@ -1,21 +1,43 @@ +%global fontconf 64-%{name}-mutante.conf + Name: cave9 Version: 0.3 -Release: 3%{?dist} +Release: 8%{?dist} Summary: 3d game of cave exploration Group: Amusements/Games -License: LGPLv3 and CC-BY and CC-BY-SA and Public Domain +License: LGPLv3 and CC-BY-SA and Public Domain URL: http://code.google.com/p/cave9 Source0: http://cave9.googlecode.com/files/cave9_src-%{version}.tgz Source1: http://cave9.googlecode.com/files/cave9_data-4.tgz Source2: cave9.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils +BuildRequires: SDL_image-devel, SDL_net-devel, SDL_ttf-devel, mesa-libGL-devel, desktop-file-utils, fontpackages-devel +Requires: cave9-mutante-fonts + %description Cave9 is a gravity cave-exploration game. +%package mutante-fonts + +Summary: Mutante font used by the hud in cave9 game +BuildArch: noarch +Group: User Interface/X +License: CC-BY +Requires: fontpackages-filesystem +Source3: %{name}-mutante-fontconfig.conf + +%description mutante-fonts +Fantasy/display font used by the cave9 game, this font has only the basic +characters used in the portuguese language was made as an experiment by the +designer Jonas K??hner (http://www.criatipos.com/) the font was altered by +the game developer to also include numbers. + +%_font_pkg -n mutante -f %{fontconf} mutante.ttf +%doc data_README.txt + %prep %setup -q -a1 sed -i src/GNUmakefile -e "s/-Wall -Werror -ggdb//" @@ -24,10 +46,24 @@ sed -i src/GNUmakefile -e "s/-Wall -Werr CFLAGS="%{optflags}" make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/usr/bin $RPM_BUILD_ROOT/usr/share/cave9 +rm -rf %{buildroot} +mkdir -p %{buildroot}/usr/bin %{buildroot}/usr/share/cave9 install -m 755 -p cave9 $RPM_BUILD_ROOT/usr/bin -cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav data/hud.ttf $RPM_BUILD_ROOT/usr/share/cave9 +cp -p data/wall.jpg data/icon.png data/thrust.wav data/crash.wav data/hit.wav $RPM_BUILD_ROOT/usr/share/cave9 + +install -m 0755 -d %{buildroot}%{_fontdir} +install -m 0644 -p data/*.ttf %{buildroot}%{_fontdir}/mutante.ttf + +install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ + %{buildroot}%{_fontconfig_confdir} + +install -m 0644 -p %{SOURCE3} \ + %{buildroot}%{_fontconfig_templatedir}/%{fontconf} +ln -s %{_fontconfig_templatedir}/%{fontconf} \ + %{buildroot}%{_fontconfig_confdir}/%{fontconf} + +ln -s ../../..%{_fontdir}/mutante.ttf $RPM_BUILD_ROOT/usr/share/cave9/hud.ttf + mv data/README.txt data_README.txt desktop-file-install --vendor="fedora" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ @@ -44,6 +80,24 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-cave9.desktop %changelog +* Wed Jun 24 2009 Victor Bogado 0.3-8 +- removed the redundant ownership of the fontdir. +- lowered the priority +- Updated the font configuration to better match the suggested template. + +* Tue Jun 23 2009 Victor Bogado 0.3-7 +- following the tips from Nicolas Mailhot on bug#477371 + +* Mon Jun 22 2009 Victor Bogado 0.3-6 +- adapted the font subpackge to the new template on Fedora 11 + +* Wed Jan 14 2009 Victor Bogado 0.3-5 +- Added a fontconfig file. +- Renamed the font file subpackage to follow the font package naming convention. + +* Tue Dec 30 2008 Victor Bogado 0.3-4 +- Separate the font into a new package. + * Sun Nov 09 2008 Victor Bogado 0.3-3 - Use install -m 755 to ensure correct mode for binaries. - Final dot missing on description. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/cave9/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Nov 2008 13:34:46 -0000 1.1 +++ import.log 1 Jul 2009 23:56:37 -0000 1.2 @@ -1 +1,2 @@ cave9-0_3-3_bog9:F-10:cave9-0.3-3.bog9.src.rpm:1226755986 +cave9-0_3-8_bog11:F-10:cave9-0.3-8.bog11.src.rpm:1246492503 From quantumburnz at fedoraproject.org Thu Jul 2 00:00:01 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Thu, 2 Jul 2009 00:00:01 +0000 (UTC) Subject: rpms/barry/F-10 .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090702000001.0773611C02C3@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17130/F-10 Modified Files: .cvsignore sources Log Message: Add icon file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Jun 2009 23:07:24 -0000 1.5 +++ .cvsignore 1 Jul 2009 23:59:30 -0000 1.6 @@ -1 +1,2 @@ barry-0.15-20090630.tar.bz2 +barrybackup24.png Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 30 Jun 2009 23:07:24 -0000 1.5 +++ sources 1 Jul 2009 23:59:30 -0000 1.6 @@ -1 +1,2 @@ cb0d31464cd7aae28a344c68cbe97a49 barry-0.15-20090630.tar.bz2 +3c4691c06276ec61d3a28f0d65cb3a43 barrybackup24.png From quantumburnz at fedoraproject.org Thu Jul 2 00:00:01 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Thu, 2 Jul 2009 00:00:01 +0000 (UTC) Subject: rpms/barry/devel .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090702000001.71B4411C02C3@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17130/devel Modified Files: .cvsignore sources Log Message: Add icon file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/barry/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Jun 2009 23:07:25 -0000 1.5 +++ .cvsignore 1 Jul 2009 23:59:31 -0000 1.6 @@ -1 +1,2 @@ barry-0.15-20090630.tar.bz2 +barrybackup24.png Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/barry/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 30 Jun 2009 23:07:25 -0000 1.5 +++ sources 1 Jul 2009 23:59:31 -0000 1.6 @@ -1 +1,2 @@ cb0d31464cd7aae28a344c68cbe97a49 barry-0.15-20090630.tar.bz2 +3c4691c06276ec61d3a28f0d65cb3a43 barrybackup24.png From quantumburnz at fedoraproject.org Thu Jul 2 00:00:01 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Thu, 2 Jul 2009 00:00:01 +0000 (UTC) Subject: rpms/barry/F-9 .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090702000001.47D1411C02C3@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17130/F-9 Modified Files: .cvsignore sources Log Message: Add icon file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-9/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Jun 2009 23:07:25 -0000 1.5 +++ .cvsignore 1 Jul 2009 23:59:31 -0000 1.6 @@ -1 +1,2 @@ barry-0.15-20090630.tar.bz2 +barrybackup24.png Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-9/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 30 Jun 2009 23:07:25 -0000 1.5 +++ sources 1 Jul 2009 23:59:31 -0000 1.6 @@ -1 +1,2 @@ cb0d31464cd7aae28a344c68cbe97a49 barry-0.15-20090630.tar.bz2 +3c4691c06276ec61d3a28f0d65cb3a43 barrybackup24.png From quantumburnz at fedoraproject.org Thu Jul 2 00:00:01 2009 From: quantumburnz at fedoraproject.org (Christopher D. Stover) Date: Thu, 2 Jul 2009 00:00:01 +0000 (UTC) Subject: rpms/barry/F-11 .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090702000001.25A2211C02C4@cvs1.fedora.phx.redhat.com> Author: quantumburnz Update of /cvs/pkgs/rpms/barry/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17130/F-11 Modified Files: .cvsignore sources Log Message: Add icon file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Jun 2009 23:07:24 -0000 1.5 +++ .cvsignore 1 Jul 2009 23:59:30 -0000 1.6 @@ -1 +1,2 @@ barry-0.15-20090630.tar.bz2 +barrybackup24.png Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/barry/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 30 Jun 2009 23:07:24 -0000 1.5 +++ sources 1 Jul 2009 23:59:30 -0000 1.6 @@ -1 +1,2 @@ cb0d31464cd7aae28a344c68cbe97a49 barry-0.15-20090630.tar.bz2 +3c4691c06276ec61d3a28f0d65cb3a43 barrybackup24.png From lennart at fedoraproject.org Thu Jul 2 00:27:11 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Thu, 2 Jul 2009 00:27:11 +0000 (UTC) Subject: rpms/pulseaudio/devel .cvsignore, 1.35, 1.36 pulseaudio.spec, 1.84, 1.85 sources, 1.37, 1.38 Message-ID: <20090702002711.21D2511C02C3@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pulseaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22344 Modified Files: .cvsignore pulseaudio.spec sources Log Message: New test release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 23 Jun 2009 16:44:46 -0000 1.35 +++ .cvsignore 2 Jul 2009 00:26:40 -0000 1.36 @@ -1 +1 @@ -pulseaudio-0.9.16-test1.tar.gz +pulseaudio-0.9.16-test2.tar.gz Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/pulseaudio.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- pulseaudio.spec 30 Jun 2009 20:57:43 -0000 1.84 +++ pulseaudio.spec 2 Jul 2009 00:26:40 -0000 1.85 @@ -1,10 +1,10 @@ Name: pulseaudio Summary: Improved Linux Sound Server Version: 0.9.16 -Release: 1.test1%{?dist} +Release: 2.test2%{?dist} License: LGPLv2+ Group: System Environment/Daemons -Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}-test1.tar.gz +Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}-test2.tar.gz URL: http://pulseaudio.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: m4 @@ -185,7 +185,7 @@ Requires: %{name}-libs = %{version This package contains command line utilities for the PulseAudio sound server. %prep -%setup -q -T -b0 -n pulseaudio-0.9.16-test1 +%setup -q -T -b0 -n pulseaudio-0.9.16-test2 %build CFLAGS="-ggdb" %configure --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-access-group=pulse-access --disable-hal @@ -410,6 +410,9 @@ exit 0 %{_mandir}/man1/pax11publish.1.gz %changelog +* Thu Jul 2 2009 Lennart Poettering 0.9.16-2.test2 +- New test release + * Tue Jun 23 2009 Lennart Poettering 0.9.16-1.test1 - Fix endianess build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 23 Jun 2009 16:58:43 -0000 1.37 +++ sources 2 Jul 2009 00:26:40 -0000 1.38 @@ -1 +1 @@ -1752f4a7bdf443231a04c988b5b98337 pulseaudio-0.9.16-test1.tar.gz +26aa48d37c1aede11942cccdf6f0a983 pulseaudio-0.9.16-test2.tar.gz From tgl at fedoraproject.org Thu Jul 2 00:34:48 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Thu, 2 Jul 2009 00:34:48 +0000 (UTC) Subject: rpms/postgresql/devel postgresql.spec,1.110,1.111 Message-ID: <20090702003448.1C69311C02C3@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/postgresql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23753 Modified Files: postgresql.spec Log Message: Remove no-longer-needed BuildRequires: e2fsprogs-devel Index: postgresql.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql/devel/postgresql.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- postgresql.spec 21 Mar 2009 22:43:50 -0000 1.110 +++ postgresql.spec 2 Jul 2009 00:34:17 -0000 1.111 @@ -135,7 +135,6 @@ BuildRequires: openssl-devel %if %kerberos BuildRequires: krb5-devel -BuildRequires: e2fsprogs-devel %endif %if %ldap From konradm at fedoraproject.org Thu Jul 2 00:38:00 2009 From: konradm at fedoraproject.org (konradm) Date: Thu, 2 Jul 2009 00:38:00 +0000 (UTC) Subject: rpms/ghc-haskell-src-exts/devel .cvsignore, 1.2, 1.3 ghc-haskell-src-exts.spec, 1.6, 1.7 sources, 1.2, 1.3 Message-ID: <20090702003800.92B9211C02C3@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/ghc-haskell-src-exts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24455 Modified Files: .cvsignore ghc-haskell-src-exts.spec sources Log Message: * Wed Jul 1 2009 Conrad Meyer - 1.0.1-1 - Version bump. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ghc-haskell-src-exts/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Mar 2009 00:53:52 -0000 1.2 +++ .cvsignore 2 Jul 2009 00:38:00 -0000 1.3 @@ -1 +1 @@ -haskell-src-exts-0.4.8.tar.gz +haskell-src-exts-1.0.1.tar.gz Index: ghc-haskell-src-exts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-haskell-src-exts/devel/ghc-haskell-src-exts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ghc-haskell-src-exts.spec 2 Jun 2009 09:54:28 -0000 1.6 +++ ghc-haskell-src-exts.spec 2 Jul 2009 00:38:00 -0000 1.7 @@ -7,8 +7,8 @@ %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.4.8 -Release: 7%{?dist} +Version: 1.0.1 +Release: 1%{?dist} Summary: Library for Manipulating Haskell source Group: Development/Libraries License: BSD @@ -149,6 +149,9 @@ fi %changelog +* Wed Jul 1 2009 Conrad Meyer - 1.0.1-1 +- Version bump. + * Tue Jun 2 2009 Jens Petersen - 0.4.8-7 - drop superfluous cpphs and happy requires Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ghc-haskell-src-exts/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Mar 2009 00:53:52 -0000 1.2 +++ sources 2 Jul 2009 00:38:00 -0000 1.3 @@ -1 +1 @@ -a8bbb3de67480cfd2e3c4d7ad553a11d haskell-src-exts-0.4.8.tar.gz +2887d8ce3b3be77e18ace62a81e6df31 haskell-src-exts-1.0.1.tar.gz From lennart at fedoraproject.org Thu Jul 2 00:51:44 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Thu, 2 Jul 2009 00:51:44 +0000 (UTC) Subject: rpms/rtkit/devel .cvsignore, 1.2, 1.3 rtkit.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090702005144.3DE8711C02C3@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/rtkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27597 Modified Files: .cvsignore rtkit.spec sources Log Message: new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rtkit/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 19 Jun 2009 15:31:35 -0000 1.2 +++ .cvsignore 2 Jul 2009 00:51:13 -0000 1.3 @@ -1 +1 @@ -rtkit-0.2.tar.gz +rtkit-0.3.tar.gz Index: rtkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtkit/devel/rtkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rtkit.spec 19 Jun 2009 15:31:35 -0000 1.1 +++ rtkit.spec 2 Jul 2009 00:51:14 -0000 1.2 @@ -1,5 +1,5 @@ Name: rtkit -Version: 0.2 +Version: 0.3 Release: 1%{?dist} Summary: Realtime Policy and Watchdog Daemon Group: System Environment/Base @@ -57,5 +57,8 @@ dbus-send --system --type=method_call -- %{_sysconfdir}/dbus-1/system.d/org.freedesktop.RealtimeKit1.conf %changelog +* Thu Jul 2 2009 Lennart Poettering - 0.3-1 +- New release + * Thu Jun 17 2009 Lennart Poettering - 0.2-1 - Initial packaging Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rtkit/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 19 Jun 2009 15:31:35 -0000 1.2 +++ sources 2 Jul 2009 00:51:14 -0000 1.3 @@ -1 +1 @@ -e3f11924a6a5db1a024adf0aba3e60d8 rtkit-0.2.tar.gz +ec646dec2e6e095058c66cd9fdf5027c rtkit-0.3.tar.gz From lennart at fedoraproject.org Thu Jul 2 01:02:45 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Thu, 2 Jul 2009 01:02:45 +0000 (UTC) Subject: rpms/libcanberra/devel .cvsignore, 1.12, 1.13 libcanberra.spec, 1.27, 1.28 sources, 1.13, 1.14 Message-ID: <20090702010245.C201011C02C3@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/libcanberra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29558 Modified Files: .cvsignore libcanberra.spec sources Log Message: new release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 23 Jun 2009 18:43:11 -0000 1.12 +++ .cvsignore 2 Jul 2009 01:02:15 -0000 1.13 @@ -1 +1 @@ -libcanberra-0.13.tar.gz +libcanberra-0.14.tar.gz Index: libcanberra.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/libcanberra.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libcanberra.spec 23 Jun 2009 18:43:11 -0000 1.27 +++ libcanberra.spec 2 Jul 2009 01:02:15 -0000 1.28 @@ -1,5 +1,5 @@ Name: libcanberra -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: Portable Sound Event Library Group: System Environment/Libraries @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libcanberra.pc %changelog +* Thu Jul 2 2009 Lennart Poettering 0.14-1 +- New version 0.14 + * Tue Jun 23 2009 Lennart Poettering 0.13-1 - New version 0.13 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 23 Jun 2009 18:43:11 -0000 1.13 +++ sources 2 Jul 2009 01:02:15 -0000 1.14 @@ -1 +1 @@ -51da42b976626247f4f2cb18895d4531 libcanberra-0.13.tar.gz +1c2463ea726b6919681449f16534a4c0 libcanberra-0.14.tar.gz From lennart at fedoraproject.org Thu Jul 2 01:14:27 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Thu, 2 Jul 2009 01:14:27 +0000 (UTC) Subject: rpms/pavucontrol/devel .cvsignore, 1.12, 1.13 pavucontrol.spec, 1.18, 1.19 sources, 1.12, 1.13 Message-ID: <20090702011427.3142311C02C3@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/pavucontrol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32260 Modified Files: .cvsignore pavucontrol.spec sources Log Message: new test release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pavucontrol/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 14 Apr 2009 00:05:52 -0000 1.12 +++ .cvsignore 2 Jul 2009 01:13:56 -0000 1.13 @@ -1 +1 @@ -pavucontrol-0.9.8.tar.gz +pavucontrol-0.9.9-test1.tar.gz Index: pavucontrol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pavucontrol/devel/pavucontrol.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- pavucontrol.spec 14 Apr 2009 00:05:52 -0000 1.18 +++ pavucontrol.spec 2 Jul 2009 01:13:56 -0000 1.19 @@ -1,12 +1,12 @@ Name: pavucontrol -Version: 0.9.8 -Release: 1%{?dist} +Version: 0.9.9 +Release: 0.test1%{?dist} Summary: Volume control for PulseAudio Group: Applications/Multimedia License: GPLv2+ URL: http://0pointer.de/lennart/projects/pavucontrol -Source0: http://0pointer.de/lennart/projects/pavucontrol/pavucontrol-%{version}.tar.gz +Source0: http://0pointer.de/lennart/projects/pavucontrol/pavucontrol-%{version}-test1.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pulseaudio-libs-devel >= 0.9.15-3.test4 @@ -24,7 +24,7 @@ tools this one allows you to control bot of each playback stream separately. %prep -%setup -q +%setup -q -n pavucontrol-0.9.9-test1 %build %configure @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/pavucontrol.desktop %changelog +* Thu Jul 2 2009 Lennart Poettering 0.9.9-1 +- Preview of upcoming 0.9.9 + * Mon Apr 13 2009 Lennart Poettering 0.9.8-1 - New upstream release 0.9.8 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pavucontrol/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 14 Apr 2009 00:05:52 -0000 1.12 +++ sources 2 Jul 2009 01:13:56 -0000 1.13 @@ -1 +1 @@ -ec37148c658fa5110bc991ab17ea82f0 pavucontrol-0.9.8.tar.gz +5b4b00eaafa264e91d54a946aa27677b pavucontrol-0.9.9-test1.tar.gz From nbecker at fedoraproject.org Thu Jul 2 01:16:08 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Thu, 2 Jul 2009 01:16:08 +0000 (UTC) Subject: rpms/mercurial/devel .cvsignore, 1.25, 1.26 mercurial.spec, 1.70, 1.71 sources, 1.27, 1.28 Message-ID: <20090702011608.7971211C02C3@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32641 Modified Files: .cvsignore mercurial.spec sources Log Message: update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 21 Mar 2009 11:17:23 -0000 1.25 +++ .cvsignore 2 Jul 2009 01:15:38 -0000 1.26 @@ -1 +1 @@ -mercurial-1.2.1.tar.gz +mercurial-1.3.tar.gz Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/mercurial.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- mercurial.spec 21 Mar 2009 11:14:53 -0000 1.70 +++ mercurial.spec 2 Jul 2009 01:15:38 -0000 1.71 @@ -2,7 +2,7 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.2.1 +Version: 1.3 Release: 1%{?dist} License: GPLv2 Group: Development/Tools @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT #cd tests && %{__python} run-tests.py %changelog +* Wed Jul 1 2009 Neal Becker - 1.3-1 +- Update to 1.3 + * Sat Mar 21 2009 Neal Becker - 1.2.1-1 - Update to 1.2.1 - Tests remain disabled due to failures Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 Mar 2009 11:17:23 -0000 1.27 +++ sources 2 Jul 2009 01:15:38 -0000 1.28 @@ -1 +1 @@ -24d6994cc58b353398e11c7a19cf1d19 mercurial-1.2.1.tar.gz +d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz From lennart at fedoraproject.org Thu Jul 2 01:19:27 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Thu, 2 Jul 2009 01:19:27 +0000 (UTC) Subject: rpms/libcanberra/devel libcanberra.spec, 1.28, 1.29 sources, 1.14, 1.15 Message-ID: <20090702011927.61F0C11C02C3@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/libcanberra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1064 Modified Files: libcanberra.spec sources Log Message: fix tarball Index: libcanberra.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/libcanberra.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libcanberra.spec 2 Jul 2009 01:02:15 -0000 1.28 +++ libcanberra.spec 2 Jul 2009 01:18:57 -0000 1.29 @@ -1,6 +1,6 @@ Name: libcanberra Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable Sound Event Library Group: System Environment/Libraries Source0: http://0pointer.de/lennart/projects/libcanberra/libcanberra-%{version}.tar.gz @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libcanberra.pc %changelog +* Thu Jul 2 2009 Lennart Poettering 0.14-2 +- Upload the right tarball + * Thu Jul 2 2009 Lennart Poettering 0.14-1 - New version 0.14 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 2 Jul 2009 01:02:15 -0000 1.14 +++ sources 2 Jul 2009 01:18:57 -0000 1.15 @@ -1 +1 @@ -1c2463ea726b6919681449f16534a4c0 libcanberra-0.14.tar.gz +b182ab134a911ba6c42ea2b727eda13e libcanberra-0.14.tar.gz From petersen at fedoraproject.org Thu Jul 2 01:36:42 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Thu, 2 Jul 2009 01:36:42 +0000 (UTC) Subject: rpms/darcs/devel darcs.spec,1.48,1.49 Message-ID: <20090702013642.92DF711C02C3@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/extras/rpms/darcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3955 Modified Files: darcs.spec Log Message: - drop post script since semanage now superfluous - drop the unused alphatag for now - simplify BRs Index: darcs.spec =================================================================== RCS file: /cvs/extras/rpms/darcs/devel/darcs.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- darcs.spec 17 May 2009 06:51:56 -0000 1.48 +++ darcs.spec 2 Jul 2009 01:36:42 -0000 1.49 @@ -1,14 +1,12 @@ -#%%define alphatag rc2 - Name: darcs Version: 2.2.1 -Release: 2%{?alphatag:.%{alphatag}}%{?dist} +Release: 3%{?dist} Summary: David's advanced revision control system Group: Development/Tools License: GPLv2+ URL: http://www.darcs.net/ -Source0: http://www.darcs.net/%{name}-%{version}%{?alphatag}.tar.gz +Source0: http://www.darcs.net/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha @@ -18,7 +16,6 @@ BuildRequires: autoconf, sendmail, curl BuildRequires: which # for building the manual BuildRequires: latex2html -Requires(post): policycoreutils %description Darcs is a revision control system, along the lines of CVS @@ -69,7 +66,7 @@ This package contains the darcs cgi serv %prep -%setup -q -n %{name}-%{version}%{?alphatag} +%setup -q %build @@ -98,11 +95,6 @@ make DESTDIR=$RPM_BUILD_ROOT install ins rm -rf $RPM_BUILD_ROOT -%post -semanage fcontext -a -t unconfined_execmem_exec_t %{_bindir}/%{name} >/dev/null 2>&1 -restorecon %{_bindir}/%{name} - - %files %defattr(-,root,root,-) %doc AUTHORS COPYING tools/zsh_completion_* @@ -126,6 +118,11 @@ restorecon %{_bindir}/%{name} %changelog +* Thu Jul 2 2009 Jens Petersen - 2.2.1-3 +- drop post script since semanage now superfluous +- drop the unused alphatag for now +- simplify BRs + * Sat Apr 25 2009 Jens Petersen - 2.2.1-2 - rebuild against ghc-6.10.3 From nbecker at fedoraproject.org Thu Jul 2 01:39:08 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Thu, 2 Jul 2009 01:39:08 +0000 (UTC) Subject: rpms/mercurial/devel mercurial.spec,1.71,1.72 Message-ID: <20090702013908.F348211C02C3@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5381 Modified Files: mercurial.spec Log Message: Re-enable tests since they now pass Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/mercurial.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- mercurial.spec 2 Jul 2009 01:15:38 -0000 1.71 +++ mercurial.spec 2 Jul 2009 01:38:38 -0000 1.72 @@ -3,7 +3,7 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,13 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -#%%check -#cd tests && %{__python} run-tests.py +%check +cd tests && %{__python} run-tests.py %changelog +* Wed Jul 1 2009 Neal Becker - 1.3-2 +- Re-enable tests since they now pass + * Wed Jul 1 2009 Neal Becker - 1.3-1 - Update to 1.3 From salimma at fedoraproject.org Thu Jul 2 02:20:13 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 02:20:13 +0000 (UTC) Subject: rpms/google-gadgets/devel google-gadgets-0.11.0-sidebar_gtk.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 google-gadgets.spec, 1.13, 1.14 sources, 1.6, 1.7 Message-ID: <20090702022013.3D1ED11C02C4@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/google-gadgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15740/devel Modified Files: .cvsignore google-gadgets.spec sources Added Files: google-gadgets-0.11.0-sidebar_gtk.patch Log Message: * Wed Jul 1 2009 Michel Salim - 0.11.0-1 - Update to 0.11.0 google-gadgets-0.11.0-sidebar_gtk.patch: --- NEW FILE google-gadgets-0.11.0-sidebar_gtk.patch --- --- a/hosts/gtk/sidebar_gtk_host.cc +++ b/hosts/gtk/sidebar_gtk_host.cc @@ -800,8 +800,11 @@ class SideBarGtkHost::Impl { reinterpret_cast(&struts), 12); } else { has_strut_ = false; - gdk_property_delete(sidebar_window_->window, net_wm_strut_); - gdk_property_delete(sidebar_window_->window, net_wm_strut_partial_); + if (net_wm_strut_ != GDK_NONE) + gdk_property_delete(sidebar_window_->window, net_wm_strut_); + if (net_wm_strut_partial_ != GDK_NONE) + gdk_property_delete(sidebar_window_->window, net_wm_strut_partial_); + sidebar_host_->SetWindowType((flags_ & MATCHBOX_WORKAROUND) ? GDK_WINDOW_TYPE_HINT_DIALOG : GDK_WINDOW_TYPE_HINT_NORMAL); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 2 May 2009 21:04:53 -0000 1.6 +++ .cvsignore 2 Jul 2009 02:19:43 -0000 1.7 @@ -1 +1 @@ -google-gadgets-0.10.6-r1449.tar.bz2 +google-gadgets-for-linux-0.11.0.tar.bz2 Index: google-gadgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/devel/google-gadgets.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- google-gadgets.spec 2 May 2009 21:04:53 -0000 1.13 +++ google-gadgets.spec 2 Jul 2009 02:19:43 -0000 1.14 @@ -1,20 +1,24 @@ -%define svnrev 1449 -%define alphatag 20090430svn%{svnrev} +#define svnrev 1449 +#define alphatag 20090430svn%{svnrev} Name: google-gadgets -Version: 0.10.6 -Release: 0.1.%{alphatag}%{?dist} +Version: 0.11.0 +#Release: 0.1.%{alphatag}%{?dist} +Release: 1%{?dist} Summary: Google Gadgets for Linux Group: User Interface/Desktops License: ASL 2.0 URL: http://code.google.com/p/google-gadgets-for-linux/ -#Source0: http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-%{version}.tar.bz2 -Source0: %{name}-%{version}-r%{svnrev}.tar.bz2 +Source0: http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-%{version}.tar.bz2 +# http://code.google.com/p/google-gadgets-for-linux/issues/detail?id=311 +# patch taken from svn r1239 +Patch0: %{name}-0.11.0-sidebar_gtk.patch +#Source0: %{name}-%{version}-r%{svnrev}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # for SVN checkouts -BuildRequires: autoconf automake libtool +#BuildRequires: autoconf automake libtool BuildRequires: libcurl-devel libxml2-devel zlib-devel libtool-ltdl-devel # still needed even if we're not buliding gtkmoz element, for JavaScript @@ -75,13 +79,14 @@ developing applications that use %{name} %prep %setup -q -n %{name}-for-linux-%{version} +%patch0 -p1 -b .sidebar_gtk # Permission fixes chmod -x ggadget/qt/utilities.h %build -autotools/bootstrap.sh +#autotools/bootstrap.sh #ln -s %{_datadir}/automake-*/mkinstalldirs libltdl/ %configure --disable-static \ @@ -124,8 +129,8 @@ rm -rf $RPM_BUILD_ROOT%{_datadir}/mime rm -f $RPM_BUILD_ROOT%{_datadir}/applications/mimeinfo.cache # SVN checkout: remove ltdl cruft -rm -rf $RPM_BUILD_ROOT%{_libdir}/*ltdl* -rm -rf $RPM_BUILD_ROOT%{_includedir}/*ltdl* +#rm -rf $RPM_BUILD_ROOT%{_libdir}/*ltdl* +#rm -rf $RPM_BUILD_ROOT%{_includedir}/*ltdl* %clean @@ -203,6 +208,9 @@ update-desktop-database &> /dev/null || %changelog +* Wed Jul 1 2009 Michel Salim - 0.11.0-1 +- Update to 0.11.0 + * Sat May 2 2009 Michel Salim - 0.10.6-0.1.20090430svn1449%{?dist} - Update to SVN checkout, for xulrunner 1.9.1 compatibility Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 2 May 2009 21:04:53 -0000 1.6 +++ sources 2 Jul 2009 02:19:43 -0000 1.7 @@ -1 +1 @@ -9692fe3234b768a452c5c147e9955701 google-gadgets-0.10.6-r1449.tar.bz2 +714b65738f4edeae361e2b164088c50d google-gadgets-for-linux-0.11.0.tar.bz2 From salimma at fedoraproject.org Thu Jul 2 02:20:13 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 02:20:13 +0000 (UTC) Subject: rpms/google-gadgets/F-11 google-gadgets-0.11.0-sidebar_gtk.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 google-gadgets.spec, 1.14, 1.15 sources, 1.6, 1.7 Message-ID: <20090702022013.2F1CA11C02C3@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/google-gadgets/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15740/F-11 Modified Files: .cvsignore google-gadgets.spec sources Added Files: google-gadgets-0.11.0-sidebar_gtk.patch Log Message: * Wed Jul 1 2009 Michel Salim - 0.11.0-1 - Update to 0.11.0 google-gadgets-0.11.0-sidebar_gtk.patch: --- NEW FILE google-gadgets-0.11.0-sidebar_gtk.patch --- --- a/hosts/gtk/sidebar_gtk_host.cc +++ b/hosts/gtk/sidebar_gtk_host.cc @@ -800,8 +800,11 @@ class SideBarGtkHost::Impl { reinterpret_cast(&struts), 12); } else { has_strut_ = false; - gdk_property_delete(sidebar_window_->window, net_wm_strut_); - gdk_property_delete(sidebar_window_->window, net_wm_strut_partial_); + if (net_wm_strut_ != GDK_NONE) + gdk_property_delete(sidebar_window_->window, net_wm_strut_); + if (net_wm_strut_partial_ != GDK_NONE) + gdk_property_delete(sidebar_window_->window, net_wm_strut_partial_); + sidebar_host_->SetWindowType((flags_ & MATCHBOX_WORKAROUND) ? GDK_WINDOW_TYPE_HINT_DIALOG : GDK_WINDOW_TYPE_HINT_NORMAL); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 2 May 2009 21:04:52 -0000 1.6 +++ .cvsignore 2 Jul 2009 02:19:42 -0000 1.7 @@ -1 +1 @@ -google-gadgets-0.10.6-r1449.tar.bz2 +google-gadgets-for-linux-0.11.0.tar.bz2 Index: google-gadgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/F-11/google-gadgets.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- google-gadgets.spec 30 Jun 2009 19:00:08 -0000 1.14 +++ google-gadgets.spec 2 Jul 2009 02:19:42 -0000 1.15 @@ -1,20 +1,24 @@ -%define svnrev 1449 -%define alphatag 20090430svn%{svnrev} +#define svnrev 1449 +#define alphatag 20090430svn%{svnrev} Name: google-gadgets -Version: 0.10.6 -Release: 0.2.%{alphatag}%{?dist} +Version: 0.11.0 +#Release: 0.1.%{alphatag}%{?dist} +Release: 1%{?dist} Summary: Google Gadgets for Linux Group: User Interface/Desktops License: ASL 2.0 URL: http://code.google.com/p/google-gadgets-for-linux/ -#Source0: http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-%{version}.tar.bz2 -Source0: %{name}-%{version}-r%{svnrev}.tar.bz2 +Source0: http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-%{version}.tar.bz2 +# http://code.google.com/p/google-gadgets-for-linux/issues/detail?id=311 +# patch taken from svn r1239 +Patch0: %{name}-0.11.0-sidebar_gtk.patch +#Source0: %{name}-%{version}-r%{svnrev}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # for SVN checkouts -BuildRequires: autoconf automake libtool +#BuildRequires: autoconf automake libtool BuildRequires: libcurl-devel libxml2-devel zlib-devel libtool-ltdl-devel # still needed even if we're not buliding gtkmoz element, for JavaScript @@ -75,13 +79,14 @@ developing applications that use %{name} %prep %setup -q -n %{name}-for-linux-%{version} +%patch0 -p1 -b .sidebar_gtk # Permission fixes chmod -x ggadget/qt/utilities.h %build -autotools/bootstrap.sh +#autotools/bootstrap.sh #ln -s %{_datadir}/automake-*/mkinstalldirs libltdl/ %configure --disable-static \ @@ -124,8 +129,8 @@ rm -rf $RPM_BUILD_ROOT%{_datadir}/mime rm -f $RPM_BUILD_ROOT%{_datadir}/applications/mimeinfo.cache # SVN checkout: remove ltdl cruft -rm -rf $RPM_BUILD_ROOT%{_libdir}/*ltdl* -rm -rf $RPM_BUILD_ROOT%{_includedir}/*ltdl* +#rm -rf $RPM_BUILD_ROOT%{_libdir}/*ltdl* +#rm -rf $RPM_BUILD_ROOT%{_includedir}/*ltdl* %clean @@ -203,8 +208,8 @@ update-desktop-database &> /dev/null || %changelog -* Tue Jun 30 2009 Christopher Aillon - 0.10.6-0.2.20090430svn1449 -- Rebuild against newer gecko +* Wed Jul 1 2009 Michel Salim - 0.11.0-1 +- Update to 0.11.0 * Sat May 2 2009 Michel Salim - 0.10.6-0.1.20090430svn1449%{?dist} - Update to SVN checkout, for xulrunner 1.9.1 compatibility Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 2 May 2009 21:04:52 -0000 1.6 +++ sources 2 Jul 2009 02:19:42 -0000 1.7 @@ -1 +1 @@ -9692fe3234b768a452c5c147e9955701 google-gadgets-0.10.6-r1449.tar.bz2 +714b65738f4edeae361e2b164088c50d google-gadgets-for-linux-0.11.0.tar.bz2 From salimma at fedoraproject.org Thu Jul 2 02:25:05 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 02:25:05 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec,1.244,1.245 Message-ID: <20090702022505.C2D1511C02C3@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16989 Modified Files: kdebase-workspace.spec Log Message: * Wed Jul 1 2009 Michel Salim - 4.2.95-5 - rebuild (google-gadgets) Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.244 retrieving revision 1.245 diff -u -p -r1.244 -r1.245 --- kdebase-workspace.spec 1 Jul 2009 14:42:42 -0000 1.244 +++ kdebase-workspace.spec 2 Jul 2009 02:24:35 -0000 1.245 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.95 -Release: 4%{?dist} +Release: 5%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -516,6 +516,9 @@ fi %changelog +* Wed Jul 1 2009 Michel Salim - 4.2.95-5 +- rebuild (google-gadgets) + * Wed Jul 01 2009 Rex Dieter 4.2.95-4 - rebuild (libxklavier) From salimma at fedoraproject.org Thu Jul 2 02:27:22 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 02:27:22 +0000 (UTC) Subject: rpms/kdebase-workspace/F-11 kdebase-workspace.spec,1.230,1.231 Message-ID: <20090702022722.AF53811C02C3@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/kdebase-workspace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17663 Modified Files: kdebase-workspace.spec Log Message: * Wed Jul 1 2009 Michel Salim - 4.2.4-4 - rebuild (google-gadgets) Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/F-11/kdebase-workspace.spec,v retrieving revision 1.230 retrieving revision 1.231 diff -u -p -r1.230 -r1.231 --- kdebase-workspace.spec 5 Jun 2009 01:27:53 -0000 1.230 +++ kdebase-workspace.spec 2 Jul 2009 02:27:22 -0000 1.231 @@ -8,7 +8,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.4 -Release: 3%{?dist} +Release: 4%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -523,6 +523,9 @@ fi %changelog +* Wed Jul 1 2009 Michel Salim - 4.2.4-4 +- rebuild (google-gadgets) + * Fri Jun 05 2009 Kevin Kofler - 4.2.4-3 - fix Klipper crashes when destroying the popup (kde#165726) From petersen at fedoraproject.org Thu Jul 2 03:16:54 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Thu, 2 Jul 2009 03:16:54 +0000 (UTC) Subject: rpms/darcs/F-11 darcs.spec,1.46,1.47 Message-ID: <20090702031654.F332E11C02C3@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/extras/rpms/darcs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27686 Modified Files: darcs.spec Log Message: - rebuild against ghc-6.10.3 - drop post script since semanage now superfluous - drop the unused alphatag for now - simplify BRs Index: darcs.spec =================================================================== RCS file: /cvs/extras/rpms/darcs/F-11/darcs.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- darcs.spec 26 Feb 2009 09:13:47 -0000 1.46 +++ darcs.spec 2 Jul 2009 03:16:24 -0000 1.47 @@ -1,22 +1,21 @@ -#%%define alphatag rc2 - Name: darcs Version: 2.2.1 -Release: 1%{?alphatag:.%{alphatag}}%{?dist} +Release: 3%{?dist} Summary: David's advanced revision control system Group: Development/Tools License: GPLv2+ URL: http://www.darcs.net/ -Source0: http://www.darcs.net/%{name}-%{version}%{?alphatag}.tar.gz +Source0: http://www.darcs.net/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha -BuildRequires: autoconf, ghc, %{_sbindir}/sendmail, curl-devel, ncurses-devel, zlib-devel +BuildRequires: ghc +BuildRequires: autoconf, sendmail, curl-devel, ncurses-devel, zlib-devel # for make check BuildRequires: which # for building the manual BuildRequires: latex2html -Requires(post): policycoreutils %description Darcs is a revision control system, along the lines of CVS @@ -67,7 +66,7 @@ This package contains the darcs cgi serv %prep -%setup -q -n %{name}-%{version}%{?alphatag} +%setup -q %build @@ -96,11 +95,6 @@ make DESTDIR=$RPM_BUILD_ROOT install ins rm -rf $RPM_BUILD_ROOT -%post -semanage fcontext -a -t unconfined_execmem_exec_t %{_bindir}/%{name} >/dev/null 2>&1 -restorecon %{_bindir}/%{name} - - %files %defattr(-,root,root,-) %doc AUTHORS COPYING tools/zsh_completion_* @@ -124,6 +118,14 @@ restorecon %{_bindir}/%{name} %changelog +* Thu Jul 2 2009 Jens Petersen - 2.2.1-3 +- drop post script since semanage now superfluous +- drop the unused alphatag for now +- simplify BRs + +* Sat Apr 25 2009 Jens Petersen - 2.2.1-2 +- rebuild against ghc-6.10.3 + * Tue Feb 24 2009 Jens Petersen - 2.2.1-1 - update to 2.2.1 - own bash_completion.d (#487012) From mclasen at fedoraproject.org Thu Jul 2 04:32:31 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 04:32:31 +0000 (UTC) Subject: rpms/notification-daemon/devel sexy.patch, NONE, 1.1 notification-daemon.spec, 1.27, 1.28 Message-ID: <20090702043231.B6FEB11C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/notification-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30275 Modified Files: notification-daemon.spec Added Files: sexy.patch Log Message: drop libsexy dep sexy.patch: --- NEW FILE sexy.patch --- --- notification-daemon-0.4.0/configure.ac 2008-11-20 05:46:52.000000000 -0500 +++ notification-daemon-0.4.0.sexy/configure.ac 2009-07-02 00:19:42.150024570 -0400 @@ -75,14 +75,12 @@ REQ_GTK_VERSION=2.10.0 REQ_GLIB_VERSION=$REQ_GTK_VERSION -REQ_SEXY_VERSION=0.1.3 REQ_DBUS_VERSION=0.36 pkg_modules=" gtk+-2.0 >= $REQ_GTK_VERSION, \ glib-2.0 >= $REQ_GLIB_VERSION, \ dbus-1 >= $REQ_DBUS_VERSION, \ dbus-glib-1 >= $REQ_DBUS_VERSION, \ - libsexy >= $REQ_SEXY_VERSION, \ gconf-2.0, \ libwnck-1.0 \ " --- notification-daemon-0.4.0/src/themes/standard/theme.c 2008-11-20 04:38:01.000000000 -0500 +++ notification-daemon-0.4.0.sexy/src/themes/standard/theme.c 2009-07-02 00:19:11.524018225 -0400 @@ -1,7 +1,6 @@ #include "config.h" #include -#include typedef void (*ActionInvokedCb)(GtkWindow *nw, const char *key); typedef void (*UrlClickedCb)(GtkWindow *nw, const char *url); @@ -563,6 +562,14 @@ return FALSE; } +static gboolean +activate_link (GtkLabel *label, const char *url, WindowData *windata) +{ + windata->url_clicked (windata->win, url); + + return TRUE; +} + GtkWindow * create_notification(UrlClickedCb url_clicked) { @@ -722,12 +729,12 @@ gtk_widget_show(vbox); gtk_box_pack_start(GTK_BOX(windata->content_hbox), vbox, TRUE, TRUE, 0); - windata->body_label = sexy_url_label_new(); + windata->body_label = gtk_label_new (NULL); gtk_box_pack_start(GTK_BOX(vbox), windata->body_label, TRUE, TRUE, 0); gtk_misc_set_alignment(GTK_MISC(windata->body_label), 0, 0); gtk_label_set_line_wrap(GTK_LABEL(windata->body_label), TRUE); - g_signal_connect_swapped(G_OBJECT(windata->body_label), "url_activated", - G_CALLBACK(windata->url_clicked), win); + g_signal_connect(G_OBJECT(windata->body_label), "activate-link", + G_CALLBACK(activate_link), windata); atkobj = gtk_widget_get_accessible(windata->body_label); atk_object_set_description(atkobj, "Notification body text."); Index: notification-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon/devel/notification-daemon.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- notification-daemon.spec 26 Feb 2009 05:59:20 -0000 1.27 +++ notification-daemon.spec 2 Jul 2009 04:32:00 -0000 1.28 @@ -1,4 +1,4 @@ -%define gtk2_version 2.4.0 +%define gtk2_version 2.17.1 %define dbus_version 0.90 %define dbus_glib_version 0.70 %define gconf_version 2.14 @@ -7,7 +7,7 @@ Summary: Desktop Notification Daemon Name: notification-daemon Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.galago-project.org/specs/notification/ License: GPLv2+ Group: System Environment/Libraries @@ -19,7 +19,6 @@ BuildRequires: dbus-devel >= %{dbus_vers BuildRequires: dbus-glib-devel >= %{dbus_glib_version} BuildRequires: libnotify-devel BuildRequires: libglade2-devel -BuildRequires: libsexy-devel BuildRequires: GConf2-devel BuildRequires: autoconf automake BuildRequires: libwnck-devel >= %{wnck_version} @@ -36,18 +35,22 @@ Obsoletes: notify-daemon Source0: http://www.galago-project.org/files/releases/source/notification-daemon/%{name}-%{version}.tar.bz2 +# drop libsexy dep +Patch0: sexy.patch + %description notification-daemon is the server implementation of the freedesktop.org desktop -notification specification. Notifications can be used to inform the user -about an event or display some form of information without getting in the +notification specification. Notifications can be used to inform the user +about an event or display some form of information without getting in the user's way. %prep -%setup -q +%setup -q +%patch0 -p1 -b .sexy + +autoreconf -i -f %build -./autogen.sh -intltoolize --force %configure --disable-static make @@ -104,6 +107,9 @@ gconftool-2 --makefile-install-rule \ %changelog +* Thu Jul 2 2009 Matthias Clasen - 0.4.0-3 +- Drop libsexy dependency + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 2 04:40:11 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 04:40:11 +0000 (UTC) Subject: rpms/notification-daemon-engine-nodoka/devel sexy.patch, NONE, 1.1 notification-daemon-engine-nodoka.spec, 1.6, 1.7 Message-ID: <20090702044011.8F60F11C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31708 Modified Files: notification-daemon-engine-nodoka.spec Added Files: sexy.patch Log Message: drop libsexy dep sexy.patch: --- NEW FILE sexy.patch --- diff -up notification-daemon-engine-nodoka-0.1.0/configure.ac.sexy notification-daemon-engine-nodoka-0.1.0/configure.ac --- notification-daemon-engine-nodoka-0.1.0/configure.ac.sexy 2009-07-02 00:36:31.195289044 -0400 +++ notification-daemon-engine-nodoka-0.1.0/configure.ac 2009-07-02 00:36:41.615030951 -0400 @@ -40,12 +40,6 @@ PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.10. AC_SUBST(GTK_CFLAGS) AC_SUBST(GTK_LIBS) -PKG_CHECK_MODULES(LIBSEXY, libsexy,, - AC_MSG_ERROR([libsexy is required to compile nodoka])) - -AC_SUBST(LIBSEXY_CFLAGS) -AC_SUBST(LIBSEXY_LIBS) - AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_FILES([Makefile src/Makefile]) diff -up notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c.sexy notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c --- notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c.sexy 2009-07-02 00:34:45.446017948 -0400 +++ notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c 2009-07-02 00:36:21.362018441 -0400 @@ -25,7 +25,6 @@ #include "config.h" #include -#include /* Define basic nodoka types */ typedef void (*ActionInvokedCb)(GtkWindow *nw, const char *key); @@ -660,6 +659,14 @@ get_theme_info(char **theme_name, *homepage = g_strdup("https://nodoka.fedorahosted.org/"); } +static gboolean +activate_link (GtkLabel *label, const char *url, WindowData *windata) +{ + windata->url_clicked (windata->win, url); + + return TRUE; + +} /* Create new notification */ GtkWindow * create_notification(UrlClickedCb url_clicked) @@ -805,12 +812,12 @@ create_notification(UrlClickedCb url_cli gtk_widget_show(vbox); gtk_box_pack_start(GTK_BOX(windata->content_hbox), vbox, TRUE, TRUE, 0); - windata->body_label = sexy_url_label_new(); + windata->body_label = gtk_label_new(NULL); gtk_box_pack_start(GTK_BOX(vbox), windata->body_label, TRUE, TRUE, 0); gtk_misc_set_alignment(GTK_MISC(windata->body_label), 0, 0); gtk_label_set_line_wrap(GTK_LABEL(windata->body_label), TRUE); - g_signal_connect_swapped(G_OBJECT(windata->body_label), "url_activated", - G_CALLBACK(windata->url_clicked), win); + g_signal_connect(G_OBJECT(windata->body_label), "activate-link", + G_CALLBACK(activate_link), windata); atkobj = gtk_widget_get_accessible(windata->body_label); atk_object_set_description(atkobj, "Notification body text."); Index: notification-daemon-engine-nodoka.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel/notification-daemon-engine-nodoka.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- notification-daemon-engine-nodoka.spec 20 Jun 2009 07:16:33 -0000 1.6 +++ notification-daemon-engine-nodoka.spec 2 Jul 2009 04:39:41 -0000 1.7 @@ -1,6 +1,6 @@ Name: notification-daemon-engine-nodoka Version: 0.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The Nodoka theme engine for the notification daemon Group: System Environment/Libraries @@ -11,9 +11,11 @@ Patch0: notification-daemon-engi Patch1: notification-daemon-engine-nodoka-0.1.0-version-check.patch Patch2: notification-daemon-engine-nodoka-rtl.patch Patch3: notification-daemon-engine-nodoka-base-color.patch +# drop libsexy dep +Patch4: sexy.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsexy-devel +BuildRequires: gtk2-devel >= 2.17.1 BuildRequires: libxml2-devel Requires: notification-daemon @@ -27,6 +29,7 @@ The Nodoka theme engine for the notifica %patch1 -p1 -b .version-check %patch2 -p1 -b .rtl %patch3 -p1 -b .base-color +%patch4 -p1 -b .sexy %build %configure @@ -51,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/notification-daemon-1.0/engines/libnodoka.so %changelog +* Thu Jul 2 2009 Matthias Clasen - 0.1.0-8 +- Drop libsexy dep + * Sat Jun 20 2009 Martin Sourada - 0.1.0-7 - Use gtkrc specified color for background (fixes rhbz #498422) From mclasen at fedoraproject.org Thu Jul 2 04:47:10 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 04:47:10 +0000 (UTC) Subject: rpms/notification-daemon-engine-nodoka/devel notification-daemon-engine-nodoka.spec, 1.7, 1.8 Message-ID: <20090702044710.3422911C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1548 Modified Files: notification-daemon-engine-nodoka.spec Log Message: fix build Index: notification-daemon-engine-nodoka.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel/notification-daemon-engine-nodoka.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- notification-daemon-engine-nodoka.spec 2 Jul 2009 04:39:41 -0000 1.7 +++ notification-daemon-engine-nodoka.spec 2 Jul 2009 04:46:39 -0000 1.8 @@ -17,6 +17,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: gtk2-devel >= 2.17.1 BuildRequires: libxml2-devel +BuildRequires: autoconf automake libtool Requires: notification-daemon %description @@ -31,6 +32,8 @@ The Nodoka theme engine for the notifica %patch3 -p1 -b .base-color %patch4 -p1 -b .sexy +autoreconf -i -f + %build %configure make %{?_smp_mflags} From pkgdb at fedoraproject.org Thu Jul 2 04:55:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:40 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchbugzilla Message-ID: <20090702045540.F381A10F88E@bastion2.fedora.phx.redhat.com> rakesh has requested the watchbugzilla acl on gir-repository (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:55:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:42 +0000 Subject: [pkgdb] gir-repository: rakesh has requested commit Message-ID: <20090702045542.A720610F899@bastion2.fedora.phx.redhat.com> rakesh has requested the commit acl on gir-repository (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:55:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:46 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchcommits Message-ID: <20090702045546.5EACC10F8A4@bastion2.fedora.phx.redhat.com> rakesh has requested the watchcommits acl on gir-repository (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:55:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:48 +0000 Subject: [pkgdb] gir-repository: rakesh has requested approveacls Message-ID: <20090702045548.9157F10F8A9@bastion2.fedora.phx.redhat.com> rakesh has requested the approveacls acl on gir-repository (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:55:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:55 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchbugzilla Message-ID: <20090702045556.0724410F8AB@bastion2.fedora.phx.redhat.com> rakesh has requested the watchbugzilla acl on gir-repository (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:55:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:55:57 +0000 Subject: [pkgdb] gir-repository: rakesh has requested commit Message-ID: <20090702045557.A2E1210F8AF@bastion2.fedora.phx.redhat.com> rakesh has requested the commit acl on gir-repository (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:00 +0000 Subject: [pkgdb] gir-repository: rakesh has requested approveacls Message-ID: <20090702045600.CAD8610F8B3@bastion2.fedora.phx.redhat.com> rakesh has requested the approveacls acl on gir-repository (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:02 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchcommits Message-ID: <20090702045602.3148310F8B7@bastion2.fedora.phx.redhat.com> rakesh has requested the watchcommits acl on gir-repository (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:06 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchcommits Message-ID: <20090702045606.34AE410F896@bastion2.fedora.phx.redhat.com> rakesh has requested the watchcommits acl on gir-repository (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:06 +0000 Subject: [pkgdb] gir-repository: rakesh has requested watchbugzilla Message-ID: <20090702045606.5FD6D10F8BA@bastion2.fedora.phx.redhat.com> rakesh has requested the watchbugzilla acl on gir-repository (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:09 +0000 Subject: [pkgdb] gir-repository: rakesh has requested approveacls Message-ID: <20090702045609.4A64510F8C2@bastion2.fedora.phx.redhat.com> rakesh has requested the approveacls acl on gir-repository (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:56:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:56:07 +0000 Subject: [pkgdb] gir-repository: rakesh has requested commit Message-ID: <20090702045607.9357D10F8BE@bastion2.fedora.phx.redhat.com> rakesh has requested the commit acl on gir-repository (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 04:59:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:59:50 +0000 Subject: [pkgdb] efte was added for jussilehtola Message-ID: <20090702045950.D74A010F881@bastion2.fedora.phx.redhat.com> kevin has added Package efte with summary A lightweight, extendable, folding text editor for X11 kevin has approved Package efte kevin has added a Fedora devel branch for efte with an owner of jussilehtola kevin has approved efte in Fedora devel kevin has approved Package efte kevin has set commit to Approved for 107427 on efte (Fedora devel) kevin has set checkout to Approved for 107427 on efte (Fedora devel) kevin has set build to Approved for 107427 on efte (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efte From pkgdb at fedoraproject.org Thu Jul 2 04:59:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:59:52 +0000 Subject: [pkgdb] efte summary updated by kevin Message-ID: <20090702045952.7A1BC10F898@bastion2.fedora.phx.redhat.com> kevin set package efte summary to A lightweight, extendable, folding text editor for X11 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efte From pkgdb at fedoraproject.org Thu Jul 2 04:59:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:59:52 +0000 Subject: [pkgdb] efte (Fedora EPEL, 5) updated by kevin Message-ID: <20090702045952.7F5C210F89C@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for efte kevin has set commit to Approved for 107427 on efte (Fedora 10) kevin has set checkout to Approved for 107427 on efte (Fedora 10) kevin has set build to Approved for 107427 on efte (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efte From pkgdb at fedoraproject.org Thu Jul 2 04:59:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:59:52 +0000 Subject: [pkgdb] efte (Fedora EPEL, 5) updated by kevin Message-ID: <20090702045952.867A710F8A4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for efte kevin has set commit to Approved for 107427 on efte (Fedora 11) kevin has set checkout to Approved for 107427 on efte (Fedora 11) kevin has set build to Approved for 107427 on efte (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efte From kevin at fedoraproject.org Thu Jul 2 05:00:02 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:00:02 +0000 (UTC) Subject: rpms/efte - New directory Message-ID: <20090702050002.21D9111C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/efte In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrJ4125/rpms/efte Log Message: Directory /cvs/pkgs/rpms/efte added to the repository From kevin at fedoraproject.org Thu Jul 2 05:00:02 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:00:02 +0000 (UTC) Subject: rpms/efte/devel - New directory Message-ID: <20090702050002.41A0F11C0418@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/efte/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrJ4125/rpms/efte/devel Log Message: Directory /cvs/pkgs/rpms/efte/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:00:07 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:00:07 +0000 (UTC) Subject: rpms/efte Makefile,NONE,1.1 Message-ID: <20090702050007.A682711C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/efte In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrJ4125/rpms/efte Added Files: Makefile Log Message: Setup of module efte --- NEW FILE Makefile --- # Top level Makefile for module efte all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 2 04:59:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 04:59:52 +0000 Subject: [pkgdb] efte (Fedora EPEL, 5) updated by kevin Message-ID: <20090702045952.924B110F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for efte kevin has set commit to Approved for 107427 on efte (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on efte (Fedora EPEL 5) kevin has set build to Approved for 107427 on efte (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efte From kevin at fedoraproject.org Thu Jul 2 05:00:07 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:00:07 +0000 (UTC) Subject: rpms/efte/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050007.DC0B411C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/efte/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrJ4125/rpms/efte/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module efte --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: efte # $Id: Makefile,v 1.1 2009/07/02 05:00:07 kevin Exp $ NAME := efte SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:01:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:01:32 +0000 Subject: [pkgdb] wordpress-mu-plugin-defaults summary updated by kevin Message-ID: <20090702050132.4311010F896@bastion2.fedora.phx.redhat.com> kevin set package wordpress-mu-plugin-defaults summary to Enables default settings for wordpress-mu blogs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu-plugin-defaults From pkgdb at fedoraproject.org Thu Jul 2 05:01:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:01:30 +0000 Subject: [pkgdb] wordpress-mu-plugin-defaults was added for nb Message-ID: <20090702050130.6E20810F88E@bastion2.fedora.phx.redhat.com> kevin has added Package wordpress-mu-plugin-defaults with summary Enables default settings for wordpress-mu blogs kevin has approved Package wordpress-mu-plugin-defaults kevin has added a Fedora devel branch for wordpress-mu-plugin-defaults with an owner of nb kevin has approved wordpress-mu-plugin-defaults in Fedora devel kevin has approved Package wordpress-mu-plugin-defaults kevin has set commit to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora devel) kevin has set checkout to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora devel) kevin has set build to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu-plugin-defaults From pkgdb at fedoraproject.org Thu Jul 2 05:01:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:01:32 +0000 Subject: [pkgdb] wordpress-mu-plugin-defaults (Fedora EPEL, 5) updated by kevin Message-ID: <20090702050132.4A9A210F8A2@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for wordpress-mu-plugin-defaults kevin has set commit to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 10) kevin has set checkout to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 10) kevin has set build to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu-plugin-defaults From kevin at fedoraproject.org Thu Jul 2 05:01:39 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:01:39 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults - New directory Message-ID: <20090702050139.19CC511C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssq4676/rpms/wordpress-mu-plugin-defaults Log Message: Directory /cvs/pkgs/rpms/wordpress-mu-plugin-defaults added to the repository From kevin at fedoraproject.org Thu Jul 2 05:01:39 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:01:39 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/devel - New directory Message-ID: <20090702050139.451D211C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssq4676/rpms/wordpress-mu-plugin-defaults/devel Log Message: Directory /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 2 05:01:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:01:32 +0000 Subject: [pkgdb] wordpress-mu-plugin-defaults (Fedora EPEL, 5) updated by kevin Message-ID: <20090702050132.5D1F110F8A6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for wordpress-mu-plugin-defaults kevin has set commit to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 11) kevin has set checkout to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 11) kevin has set build to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu-plugin-defaults From pkgdb at fedoraproject.org Thu Jul 2 05:01:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:01:32 +0000 Subject: [pkgdb] wordpress-mu-plugin-defaults (Fedora EPEL, 5) updated by kevin Message-ID: <20090702050132.62C1310F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for wordpress-mu-plugin-defaults kevin has set commit to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora EPEL 5) kevin has set build to Approved for 107427 on wordpress-mu-plugin-defaults (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu-plugin-defaults From kevin at fedoraproject.org Thu Jul 2 05:01:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:01:44 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults Makefile,NONE,1.1 Message-ID: <20090702050144.723EB11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssq4676/rpms/wordpress-mu-plugin-defaults Added Files: Makefile Log Message: Setup of module wordpress-mu-plugin-defaults --- NEW FILE Makefile --- # Top level Makefile for module wordpress-mu-plugin-defaults all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 2 05:01:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:01:44 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050144.AE5D111C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssq4676/rpms/wordpress-mu-plugin-defaults/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module wordpress-mu-plugin-defaults --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: wordpress-mu-plugin-defaults # $Id: Makefile,v 1.1 2009/07/02 05:01:44 kevin Exp $ NAME := wordpress-mu-plugin-defaults SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:02:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:02:24 +0000 Subject: [pkgdb] rubygem-rake-compiler was added for mtasaka Message-ID: <20090702050224.E17FE10F8A2@bastion2.fedora.phx.redhat.com> kevin has added Package rubygem-rake-compiler with summary Rake-based Ruby C Extension task generator kevin has approved Package rubygem-rake-compiler kevin has added a Fedora devel branch for rubygem-rake-compiler with an owner of mtasaka kevin has approved rubygem-rake-compiler in Fedora devel kevin has approved Package rubygem-rake-compiler kevin has set commit to Approved for 107427 on rubygem-rake-compiler (Fedora devel) kevin has set checkout to Approved for 107427 on rubygem-rake-compiler (Fedora devel) kevin has set build to Approved for 107427 on rubygem-rake-compiler (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-rake-compiler From pkgdb at fedoraproject.org Thu Jul 2 05:02:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:02:26 +0000 Subject: [pkgdb] rubygem-rake-compiler summary updated by kevin Message-ID: <20090702050226.B0EB610F8A4@bastion2.fedora.phx.redhat.com> kevin set package rubygem-rake-compiler summary to Rake-based Ruby C Extension task generator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-rake-compiler From pkgdb at fedoraproject.org Thu Jul 2 05:02:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:02:26 +0000 Subject: [pkgdb] rubygem-rake-compiler (Fedora, 10) updated by kevin Message-ID: <20090702050226.D750810F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for rubygem-rake-compiler kevin has set commit to Approved for 107427 on rubygem-rake-compiler (Fedora 10) kevin has set checkout to Approved for 107427 on rubygem-rake-compiler (Fedora 10) kevin has set build to Approved for 107427 on rubygem-rake-compiler (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-rake-compiler From pkgdb at fedoraproject.org Thu Jul 2 05:02:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:02:26 +0000 Subject: [pkgdb] rubygem-rake-compiler (Fedora, 10) updated by kevin Message-ID: <20090702050227.102CD10F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for rubygem-rake-compiler kevin has set commit to Approved for 107427 on rubygem-rake-compiler (Fedora 11) kevin has set checkout to Approved for 107427 on rubygem-rake-compiler (Fedora 11) kevin has set build to Approved for 107427 on rubygem-rake-compiler (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-rake-compiler From kevin at fedoraproject.org Thu Jul 2 05:02:41 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:02:41 +0000 (UTC) Subject: rpms/rubygem-rake-compiler - New directory Message-ID: <20090702050241.1737211C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-rake-compiler In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsTR5075/rpms/rubygem-rake-compiler Log Message: Directory /cvs/pkgs/rpms/rubygem-rake-compiler added to the repository From kevin at fedoraproject.org Thu Jul 2 05:02:41 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:02:41 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/devel - New directory Message-ID: <20090702050241.4050111C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-rake-compiler/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsTR5075/rpms/rubygem-rake-compiler/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-rake-compiler/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:02:46 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:02:46 +0000 (UTC) Subject: rpms/rubygem-rake-compiler Makefile,NONE,1.1 Message-ID: <20090702050246.7C5E111C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-rake-compiler In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsTR5075/rpms/rubygem-rake-compiler Added Files: Makefile Log Message: Setup of module rubygem-rake-compiler --- NEW FILE Makefile --- # Top level Makefile for module rubygem-rake-compiler all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 2 05:02:46 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:02:46 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050246.B8ED811C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-rake-compiler/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsTR5075/rpms/rubygem-rake-compiler/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-rake-compiler --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-rake-compiler # $Id: Makefile,v 1.1 2009/07/02 05:02:46 kevin Exp $ NAME := rubygem-rake-compiler SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:03:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:03:29 +0000 Subject: [pkgdb] php-pear-HTML_Javascript was added for topdog Message-ID: <20090702050329.7C88A10F896@bastion2.fedora.phx.redhat.com> kevin has added Package php-pear-HTML_Javascript with summary Class for creating simple JS scripts kevin has approved Package php-pear-HTML_Javascript kevin has added a Fedora devel branch for php-pear-HTML_Javascript with an owner of topdog kevin has approved php-pear-HTML_Javascript in Fedora devel kevin has approved Package php-pear-HTML_Javascript kevin has set commit to Approved for 107427 on php-pear-HTML_Javascript (Fedora devel) kevin has set checkout to Approved for 107427 on php-pear-HTML_Javascript (Fedora devel) kevin has set build to Approved for 107427 on php-pear-HTML_Javascript (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From pkgdb at fedoraproject.org Thu Jul 2 05:03:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:03:31 +0000 Subject: [pkgdb] php-pear-HTML_Javascript summary updated by kevin Message-ID: <20090702050331.1789410F8A4@bastion2.fedora.phx.redhat.com> kevin set package php-pear-HTML_Javascript summary to Class for creating simple JS scripts To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From pkgdb at fedoraproject.org Thu Jul 2 05:03:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:03:31 +0000 Subject: [pkgdb] php-pear-HTML_Javascript (Fedora, 10) updated by kevin Message-ID: <20090702050331.263D110F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for php-pear-HTML_Javascript kevin has set commit to Approved for 107427 on php-pear-HTML_Javascript (Fedora 10) kevin has set checkout to Approved for 107427 on php-pear-HTML_Javascript (Fedora 10) kevin has set build to Approved for 107427 on php-pear-HTML_Javascript (Fedora 10) kevin approved watchbugzilla on php-pear-HTML_Javascript (Fedora 10) for mtasaka kevin approved watchcommits on php-pear-HTML_Javascript (Fedora 10) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From pkgdb at fedoraproject.org Thu Jul 2 05:03:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:03:31 +0000 Subject: [pkgdb] php-pear-HTML_Javascript (Fedora, 10) updated by kevin Message-ID: <20090702050331.2969A10F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for php-pear-HTML_Javascript kevin has set commit to Approved for 107427 on php-pear-HTML_Javascript (Fedora 11) kevin has set checkout to Approved for 107427 on php-pear-HTML_Javascript (Fedora 11) kevin has set build to Approved for 107427 on php-pear-HTML_Javascript (Fedora 11) kevin approved watchbugzilla on php-pear-HTML_Javascript (Fedora 11) for mtasaka kevin approved watchcommits on php-pear-HTML_Javascript (Fedora 11) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From pkgdb at fedoraproject.org Thu Jul 2 05:03:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:03:31 +0000 Subject: [pkgdb] php-pear-HTML_Javascript (Fedora, 10) updated by kevin Message-ID: <20090702050331.3A5CC10F8AE@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on php-pear-HTML_Javascript (Fedora devel) for mtasaka kevin approved watchcommits on php-pear-HTML_Javascript (Fedora devel) for mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From kevin at fedoraproject.org Thu Jul 2 05:03:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:03:37 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript - New directory Message-ID: <20090702050337.16A4511C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsFa5391/rpms/php-pear-HTML_Javascript Log Message: Directory /cvs/pkgs/rpms/php-pear-HTML_Javascript added to the repository From kevin at fedoraproject.org Thu Jul 2 05:03:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:03:37 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/devel - New directory Message-ID: <20090702050337.3A38011C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsFa5391/rpms/php-pear-HTML_Javascript/devel Log Message: Directory /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:03:42 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:03:42 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript Makefile,NONE,1.1 Message-ID: <20090702050342.8D32511C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsFa5391/rpms/php-pear-HTML_Javascript Added Files: Makefile Log Message: Setup of module php-pear-HTML_Javascript --- NEW FILE Makefile --- # Top level Makefile for module php-pear-HTML_Javascript all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 2 05:03:42 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:03:42 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050342.C7A7411C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsFa5391/rpms/php-pear-HTML_Javascript/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-pear-HTML_Javascript --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-pear-HTML_Javascript # $Id: Makefile,v 1.1 2009/07/02 05:03:42 kevin Exp $ NAME := php-pear-HTML_Javascript SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:05:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:05:37 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-ConfigAuto was added for eseyman Message-ID: <20090702050537.4905B10F881@bastion2.fedora.phx.redhat.com> kevin has added Package perl-CGI-Application-Plugin-ConfigAuto with summary Easy config file management for CGI::Application kevin has approved Package perl-CGI-Application-Plugin-ConfigAuto kevin has added a Fedora devel branch for perl-CGI-Application-Plugin-ConfigAuto with an owner of eseyman kevin has approved perl-CGI-Application-Plugin-ConfigAuto in Fedora devel kevin has approved Package perl-CGI-Application-Plugin-ConfigAuto kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora devel) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora devel) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-ConfigAuto From pkgdb at fedoraproject.org Thu Jul 2 05:05:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:05:38 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-ConfigAuto summary updated by kevin Message-ID: <20090702050538.A71E910F898@bastion2.fedora.phx.redhat.com> kevin set package perl-CGI-Application-Plugin-ConfigAuto summary to Easy config file management for CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-ConfigAuto From pkgdb at fedoraproject.org Thu Jul 2 05:05:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:05:38 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-ConfigAuto (Fedora, 10) updated by kevin Message-ID: <20090702050538.AE5A210F89C@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-CGI-Application-Plugin-ConfigAuto kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 10) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 10) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 10) kevin approved watchbugzilla on perl-CGI-Application-Plugin-ConfigAuto (Fedora 10) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-ConfigAuto (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-ConfigAuto From pkgdb at fedoraproject.org Thu Jul 2 05:05:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:05:38 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-ConfigAuto (Fedora, 10) updated by kevin Message-ID: <20090702050538.B431910F8A4@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-CGI-Application-Plugin-ConfigAuto (Fedora devel) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-ConfigAuto (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-ConfigAuto From kevin at fedoraproject.org Thu Jul 2 05:05:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:05:53 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto - New directory Message-ID: <20090702050553.167CB11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsRQ5972/rpms/perl-CGI-Application-Plugin-ConfigAuto Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto added to the repository From kevin at fedoraproject.org Thu Jul 2 05:05:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:05:53 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/devel - New directory Message-ID: <20090702050553.3B30211C0489@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsRQ5972/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:05:58 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:05:58 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto Makefile,NONE,1.1 Message-ID: <20090702050558.EFDEF11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsRQ5972/rpms/perl-CGI-Application-Plugin-ConfigAuto Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-ConfigAuto --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-ConfigAuto all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 2 05:05:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:05:38 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-ConfigAuto (Fedora, 10) updated by kevin Message-ID: <20090702050538.BBAFC10F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-CGI-Application-Plugin-ConfigAuto kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 11) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 11) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-ConfigAuto (Fedora 11) kevin approved watchbugzilla on perl-CGI-Application-Plugin-ConfigAuto (Fedora 11) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-ConfigAuto (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-ConfigAuto From kevin at fedoraproject.org Thu Jul 2 05:05:59 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:05:59 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050559.3A32F11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsRQ5972/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-ConfigAuto --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-ConfigAuto # $Id: Makefile,v 1.1 2009/07/02 05:05:59 kevin Exp $ NAME := perl-CGI-Application-Plugin-ConfigAuto SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:06:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:06:52 +0000 Subject: [pkgdb] perl-String-RewritePrefix was added for cweyl Message-ID: <20090702050652.8201B10F881@bastion2.fedora.phx.redhat.com> kevin has added Package perl-String-RewritePrefix with summary Rewrite strings based on a set of known prefixes kevin has approved Package perl-String-RewritePrefix kevin has added a Fedora devel branch for perl-String-RewritePrefix with an owner of cweyl kevin has approved perl-String-RewritePrefix in Fedora devel kevin has approved Package perl-String-RewritePrefix kevin has set commit to Approved for 107427 on perl-String-RewritePrefix (Fedora devel) kevin has set checkout to Approved for 107427 on perl-String-RewritePrefix (Fedora devel) kevin has set build to Approved for 107427 on perl-String-RewritePrefix (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-String-RewritePrefix From pkgdb at fedoraproject.org Thu Jul 2 05:06:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:06:58 +0000 Subject: [pkgdb] perl-String-RewritePrefix summary updated by kevin Message-ID: <20090702050658.B6B8D10F899@bastion2.fedora.phx.redhat.com> kevin set package perl-String-RewritePrefix summary to Rewrite strings based on a set of known prefixes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-String-RewritePrefix From pkgdb at fedoraproject.org Thu Jul 2 05:06:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:06:58 +0000 Subject: [pkgdb] perl-String-RewritePrefix (Fedora, 10) updated by kevin Message-ID: <20090702050658.C3A0F10F8A2@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-String-RewritePrefix kevin has set commit to Approved for 107427 on perl-String-RewritePrefix (Fedora 10) kevin has set checkout to Approved for 107427 on perl-String-RewritePrefix (Fedora 10) kevin has set build to Approved for 107427 on perl-String-RewritePrefix (Fedora 10) kevin approved watchbugzilla on perl-String-RewritePrefix (Fedora 10) for perl-sig kevin approved watchcommits on perl-String-RewritePrefix (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-String-RewritePrefix From pkgdb at fedoraproject.org Thu Jul 2 05:06:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:06:58 +0000 Subject: [pkgdb] perl-String-RewritePrefix (Fedora, 10) updated by kevin Message-ID: <20090702050659.010F210F8A4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-String-RewritePrefix kevin has set commit to Approved for 107427 on perl-String-RewritePrefix (Fedora 11) kevin has set checkout to Approved for 107427 on perl-String-RewritePrefix (Fedora 11) kevin has set build to Approved for 107427 on perl-String-RewritePrefix (Fedora 11) kevin approved watchbugzilla on perl-String-RewritePrefix (Fedora 11) for perl-sig kevin approved watchcommits on perl-String-RewritePrefix (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-String-RewritePrefix From pkgdb at fedoraproject.org Thu Jul 2 05:06:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:06:58 +0000 Subject: [pkgdb] perl-String-RewritePrefix (Fedora, 10) updated by kevin Message-ID: <20090702050659.0E9B310F8A8@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-String-RewritePrefix (Fedora devel) for perl-sig kevin approved watchcommits on perl-String-RewritePrefix (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-String-RewritePrefix From kevin at fedoraproject.org Thu Jul 2 05:07:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:05 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix - New directory Message-ID: <20090702050705.1768911C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-String-RewritePrefix In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrn6428/rpms/perl-String-RewritePrefix Log Message: Directory /cvs/pkgs/rpms/perl-String-RewritePrefix added to the repository From kevin at fedoraproject.org Thu Jul 2 05:07:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:05 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/devel - New directory Message-ID: <20090702050705.42EA511C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-String-RewritePrefix/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrn6428/rpms/perl-String-RewritePrefix/devel Log Message: Directory /cvs/pkgs/rpms/perl-String-RewritePrefix/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:07:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:10 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix Makefile,NONE,1.1 Message-ID: <20090702050710.E380711C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-String-RewritePrefix In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrn6428/rpms/perl-String-RewritePrefix Added Files: Makefile Log Message: Setup of module perl-String-RewritePrefix --- NEW FILE Makefile --- # Top level Makefile for module perl-String-RewritePrefix all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 2 05:07:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:11 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050711.2D01B11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-String-RewritePrefix/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsrn6428/rpms/perl-String-RewritePrefix/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-String-RewritePrefix --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-String-RewritePrefix # $Id: Makefile,v 1.1 2009/07/02 05:07:11 kevin Exp $ NAME := perl-String-RewritePrefix SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 2 05:07:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:07:40 +0000 Subject: [pkgdb] perl-namespace-autoclean was added for cweyl Message-ID: <20090702050740.BABAB10F88E@bastion2.fedora.phx.redhat.com> kevin has added Package perl-namespace-autoclean with summary Keep imports out of your namespace kevin has approved Package perl-namespace-autoclean kevin has added a Fedora devel branch for perl-namespace-autoclean with an owner of cweyl kevin has approved perl-namespace-autoclean in Fedora devel kevin has approved Package perl-namespace-autoclean kevin has set commit to Approved for 107427 on perl-namespace-autoclean (Fedora devel) kevin has set checkout to Approved for 107427 on perl-namespace-autoclean (Fedora devel) kevin has set build to Approved for 107427 on perl-namespace-autoclean (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-namespace-autoclean From pkgdb at fedoraproject.org Thu Jul 2 05:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:07:42 +0000 Subject: [pkgdb] perl-namespace-autoclean (Fedora, 10) updated by kevin Message-ID: <20090702050743.50EB610F89C@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-namespace-autoclean kevin has set commit to Approved for 107427 on perl-namespace-autoclean (Fedora 10) kevin has set checkout to Approved for 107427 on perl-namespace-autoclean (Fedora 10) kevin has set build to Approved for 107427 on perl-namespace-autoclean (Fedora 10) kevin approved watchbugzilla on perl-namespace-autoclean (Fedora 10) for perl-sig kevin approved watchcommits on perl-namespace-autoclean (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-namespace-autoclean From pkgdb at fedoraproject.org Thu Jul 2 05:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:07:42 +0000 Subject: [pkgdb] perl-namespace-autoclean summary updated by kevin Message-ID: <20090702050742.BB62810F8A3@bastion2.fedora.phx.redhat.com> kevin set package perl-namespace-autoclean summary to Keep imports out of your namespace To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-namespace-autoclean From pkgdb at fedoraproject.org Thu Jul 2 05:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:07:42 +0000 Subject: [pkgdb] perl-namespace-autoclean (Fedora, 10) updated by kevin Message-ID: <20090702050743.929B610F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-namespace-autoclean kevin has set commit to Approved for 107427 on perl-namespace-autoclean (Fedora 11) kevin has set checkout to Approved for 107427 on perl-namespace-autoclean (Fedora 11) kevin has set build to Approved for 107427 on perl-namespace-autoclean (Fedora 11) kevin approved watchbugzilla on perl-namespace-autoclean (Fedora 11) for perl-sig kevin approved watchcommits on perl-namespace-autoclean (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-namespace-autoclean From pkgdb at fedoraproject.org Thu Jul 2 05:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 05:07:42 +0000 Subject: [pkgdb] perl-namespace-autoclean (Fedora, 10) updated by kevin Message-ID: <20090702050743.A3FF710F8AD@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-namespace-autoclean (Fedora devel) for perl-sig kevin approved watchcommits on perl-namespace-autoclean (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-namespace-autoclean From kevin at fedoraproject.org Thu Jul 2 05:07:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:49 +0000 (UTC) Subject: rpms/perl-namespace-autoclean - New directory Message-ID: <20090702050749.12E2911C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-namespace-autoclean In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEH6726/rpms/perl-namespace-autoclean Log Message: Directory /cvs/pkgs/rpms/perl-namespace-autoclean added to the repository From kevin at fedoraproject.org Thu Jul 2 05:07:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:49 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/devel - New directory Message-ID: <20090702050749.3234111C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-namespace-autoclean/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEH6726/rpms/perl-namespace-autoclean/devel Log Message: Directory /cvs/pkgs/rpms/perl-namespace-autoclean/devel added to the repository From kevin at fedoraproject.org Thu Jul 2 05:07:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:55 +0000 (UTC) Subject: rpms/perl-namespace-autoclean Makefile,NONE,1.1 Message-ID: <20090702050755.0133B11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-namespace-autoclean In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEH6726/rpms/perl-namespace-autoclean Added Files: Makefile Log Message: Setup of module perl-namespace-autoclean --- NEW FILE Makefile --- # Top level Makefile for module perl-namespace-autoclean all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 2 05:07:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 2 Jul 2009 05:07:55 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702050755.368DF11C00E3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-namespace-autoclean/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsEH6726/rpms/perl-namespace-autoclean/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-namespace-autoclean --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-namespace-autoclean # $Id: Makefile,v 1.1 2009/07/02 05:07:55 kevin Exp $ NAME := perl-namespace-autoclean SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From nb at fedoraproject.org Thu Jul 2 05:12:02 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 2 Jul 2009 05:12:02 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/devel import.log, NONE, 1.1 wordpress-mu-plugin-defaults.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702051202.AD09111C00E3@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7950/devel Modified Files: .cvsignore sources Added Files: import.log wordpress-mu-plugin-defaults.spec Log Message: Initial Fedora package for this plugin based on 1.2.3 of upstream --- NEW FILE import.log --- wordpress-mu-plugin-defaults-1_2_3-3_fc11:HEAD:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511432 --- NEW FILE wordpress-mu-plugin-defaults.spec --- %global plugin_name defaults %global plugin_human_name Wordpress MU new blog defaults Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 Release: 3%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing License: GPLv2+ URL: http://wpmudev.org/project/New-Blog-Defaults Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: wordpress-mu BuildArch: noarch %description This package allows you to set various defaults to automatically apply to new blogs, such as the default theme, etc. This package is built for use with WordPress MU (wordpress-mu), not regular WordPress. %prep %setup -q -c %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php %doc readme.txt %changelog * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 - Fixing description * Sun Jun 21 2009 Nick Bebout - 1.2.3-1 - Initial Fedora package for this plugin based on 1.2.3 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:01:44 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:11:32 -0000 1.2 @@ -0,0 +1 @@ +503434057_cets_new_blog_defaults.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:01:44 -0000 1.1 +++ sources 2 Jul 2009 05:11:32 -0000 1.2 @@ -0,0 +1 @@ +b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip From nb at fedoraproject.org Thu Jul 2 05:14:22 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 2 Jul 2009 05:14:22 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/F-10 import.log, NONE, 1.1 wordpress-mu-plugin-defaults.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702051422.D9C3211C00E3@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8497/F-10 Modified Files: .cvsignore sources Added Files: import.log wordpress-mu-plugin-defaults.spec Log Message: Initial Fedora package for this plugin based on 1.2.3 of upstream --- NEW FILE import.log --- wordpress-mu-plugin-defaults-1_2_3-3_fc11:F-10:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511568 --- NEW FILE wordpress-mu-plugin-defaults.spec --- %global plugin_name defaults %global plugin_human_name Wordpress MU new blog defaults Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 Release: 3%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing License: GPLv2+ URL: http://wpmudev.org/project/New-Blog-Defaults Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: wordpress-mu BuildArch: noarch %description This package allows you to set various defaults to automatically apply to new blogs, such as the default theme, etc. This package is built for use with WordPress MU (wordpress-mu), not regular WordPress. %prep %setup -q -c %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php %doc readme.txt %changelog * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 - Fixing description * Sun Jun 21 2009 Nick Bebout - 1.2.3-1 - Initial Fedora package for this plugin based on 1.2.3 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:01:44 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:13:52 -0000 1.2 @@ -0,0 +1 @@ +503434057_cets_new_blog_defaults.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:01:44 -0000 1.1 +++ sources 2 Jul 2009 05:13:52 -0000 1.2 @@ -0,0 +1 @@ +b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip From mclasen at fedoraproject.org Thu Jul 2 05:14:28 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:14:28 +0000 (UTC) Subject: rpms/gnome-utils/devel gnome-utils.spec,1.192,1.193 Message-ID: <20090702051428.9259811C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8805 Modified Files: gnome-utils.spec Log Message: Shrink some more schemas Index: gnome-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-utils/devel/gnome-utils.spec,v retrieving revision 1.192 retrieving revision 1.193 diff -u -p -r1.192 -r1.193 --- gnome-utils.spec 16 Jun 2009 04:50:25 -0000 1.192 +++ gnome-utils.spec 2 Jul 2009 05:14:28 -0000 1.193 @@ -72,6 +72,8 @@ needed to develop programs using the lib # Hide from menus pushd gsearchtool +rm gnome-search-tool.desktop +rm gnome-search-tool.schemas echo "NoDisplay=true" >> gnome-search-tool.desktop.in popd From mclasen at fedoraproject.org Thu Jul 2 05:16:13 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:16:13 +0000 (UTC) Subject: rpms/gnome-utils/devel gnome-utils.spec,1.193,1.194 Message-ID: <20090702051613.7A14111C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9634 Modified Files: gnome-utils.spec Log Message: bump rev Index: gnome-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-utils/devel/gnome-utils.spec,v retrieving revision 1.193 retrieving revision 1.194 diff -u -p -r1.193 -r1.194 --- gnome-utils.spec 2 Jul 2009 05:14:28 -0000 1.193 +++ gnome-utils.spec 2 Jul 2009 05:15:43 -0000 1.194 @@ -9,7 +9,7 @@ Name: gnome-utils Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: GNOME utility programs @@ -261,6 +261,9 @@ fi %changelog +* Thu Jul 2 2009 Matthias Clasen - 1:2.27.2-2 +- Shrink some more schemas + * Tue Jun 16 2009 Matthias Clasen - 1:2.27.2-1 - Update to 2.27.2 From nb at fedoraproject.org Thu Jul 2 05:16:35 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 2 Jul 2009 05:16:35 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/F-11 import.log, NONE, 1.1 wordpress-mu-plugin-defaults.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702051635.D6B5911C00E3@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9805/F-11 Modified Files: .cvsignore sources Added Files: import.log wordpress-mu-plugin-defaults.spec Log Message: Initial Fedora package for this plugin based on 1.2.3 of upstream --- NEW FILE import.log --- wordpress-mu-plugin-defaults-1_2_3-3_fc11:F-11:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511693 --- NEW FILE wordpress-mu-plugin-defaults.spec --- %global plugin_name defaults %global plugin_human_name Wordpress MU new blog defaults Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 Release: 3%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing License: GPLv2+ URL: http://wpmudev.org/project/New-Blog-Defaults Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: wordpress-mu BuildArch: noarch %description This package allows you to set various defaults to automatically apply to new blogs, such as the default theme, etc. This package is built for use with WordPress MU (wordpress-mu), not regular WordPress. %prep %setup -q -c %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php %doc readme.txt %changelog * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 - Fixing description * Sun Jun 21 2009 Nick Bebout - 1.2.3-1 - Initial Fedora package for this plugin based on 1.2.3 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:01:44 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:16:05 -0000 1.2 @@ -0,0 +1 @@ +503434057_cets_new_blog_defaults.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:01:44 -0000 1.1 +++ sources 2 Jul 2009 05:16:05 -0000 1.2 @@ -0,0 +1 @@ +b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip From mclasen at fedoraproject.org Thu Jul 2 05:17:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:17:16 +0000 (UTC) Subject: rpms/libgnome/devel libgnome.spec,1.144,1.145 Message-ID: <20090702051716.15B2311C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9914 Modified Files: libgnome.spec Log Message: shrink schemas Index: libgnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnome/devel/libgnome.spec,v retrieving revision 1.144 retrieving revision 1.145 diff -u -p -r1.144 -r1.145 --- libgnome.spec 27 Apr 2009 06:33:46 -0000 1.144 +++ libgnome.spec 2 Jul 2009 05:16:45 -0000 1.145 @@ -14,7 +14,7 @@ Summary: GNOME base library Name: libgnome Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libgnome/2.26/%{name}-%{version}.tar.bz2 Source1: desktop_gnome_peripherals_monitor.schemas @@ -199,6 +199,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.26.0-3 +- Rebuild + * Mon Apr 27 2009 Matthias Clasen - 2.26.0-2 - Don't drop schemas translations from po files From nb at fedoraproject.org Thu Jul 2 05:19:14 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 2 Jul 2009 05:19:14 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/EL-5 import.log, NONE, 1.1 wordpress-mu-plugin-defaults.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702051914.D747011C00E3@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10586/EL-5 Modified Files: .cvsignore sources Added Files: import.log wordpress-mu-plugin-defaults.spec Log Message: Initial Fedora package for this plugin based on 1.2.3 of upstream --- NEW FILE import.log --- wordpress-mu-plugin-defaults-1_2_3-3_fc11:EL-5:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511815 --- NEW FILE wordpress-mu-plugin-defaults.spec --- %global plugin_name defaults %global plugin_human_name Wordpress MU new blog defaults Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 Release: 3%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing License: GPLv2+ URL: http://wpmudev.org/project/New-Blog-Defaults Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: wordpress-mu BuildArch: noarch %description This package allows you to set various defaults to automatically apply to new blogs, such as the default theme, etc. This package is built for use with WordPress MU (wordpress-mu), not regular WordPress. %prep %setup -q -c %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php %doc readme.txt %changelog * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 - Fixing description * Sun Jun 21 2009 Nick Bebout - 1.2.3-1 - Initial Fedora package for this plugin based on 1.2.3 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:01:44 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:18:44 -0000 1.2 @@ -0,0 +1 @@ +503434057_cets_new_blog_defaults.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:01:44 -0000 1.1 +++ sources 2 Jul 2009 05:18:44 -0000 1.2 @@ -0,0 +1 @@ +b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip From mclasen at fedoraproject.org Thu Jul 2 05:30:05 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:30:05 +0000 (UTC) Subject: rpms/empathy/devel empathy.spec,1.58,1.59 Message-ID: <20090702053005.A3A5211C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12124 Modified Files: empathy.spec Log Message: shrink gconf schemas Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- empathy.spec 17 Jun 2009 23:59:00 -0000 1.58 +++ empathy.spec 2 Jul 2009 05:30:05 -0000 1.59 @@ -6,11 +6,11 @@ %global glib2_min_version 2.16.0 %global tp_mc_min_version 4.61 %global tp_glib_min_version 0.7.31 -%global enchant_version 1.2.0 +%global enchant_version 1.2.0 Name: empathy Version: 2.27.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Instant Messaging Client for GNOME Group: Applications/Communications @@ -126,6 +126,10 @@ bindings to the libempathy and libempath %patch0 -p1 -b .profile-update %patch1 -p1 -b .pkgconfig +# force these to be regenerated +rm data/empathy.desktop +rm data/empathy.schemas + %build ## GCC complains about some unused functions, so we forcibly show those as ## simple warnings instead of build-halting errors. @@ -228,6 +232,9 @@ fi %{python_sitearch}/empathy*.so %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.27.3-3 +- Shrink GConf schemas + * Wed Jun 17 2009 Brian Pepple - 2.27.3-2 - Drop libglade BR, it's no longer needed. From jussilehtola at fedoraproject.org Thu Jul 2 05:30:00 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 2 Jul 2009 05:30:00 +0000 (UTC) Subject: rpms/efte/devel efte.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702053000.C883F11C00E3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12154/devel Modified Files: .cvsignore sources Added Files: efte.spec import.log Log Message: Imported in Fedora. --- NEW FILE efte.spec --- Name: efte Version: 1.0 Release: 4%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic URL: http://efte.cowgar.com Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake BuildRequires: desktop-file-utils BuildRequires: gpm-devel BuildRequires: ncurses-devel BuildRequires: libICE-devel BuildRequires: libSM-devel BuildRequires: libXext-devel BuildRequires: libX11-devel BuildRequires: libXpm-devel Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # Branch nefte on its own since it has less dependencies %package -n nefte Summary: A lightweight, extendable, folding text editor Group: Applications/Editors Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # .. which makes a common data package necessary %package common Summary: Common data files for efte/nefte Group: Application/Editors # Make the common package get removed when the editors are removed Requires: efte(binary) = %{version}-%{release} %if 0%{?fedora} > 10 BuildArch: noarch %endif %description eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains efte, the X11 version of the editor. %description -n nefte eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains nefte, the ncurses version of the editor. %description common eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains common datafiles for efte. %prep %setup -q # Character set conversion for doc in Artistic AUTHORS COPYING HISTORY INSTALL README; do iconv -f ASCII -t UTF-8 $doc > $doc.new && \ touch -r $doc $doc.new && \ mv $doc.new $doc done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt %build # Need this to build export CFLAGS="%{optflags} -DHAVE_STRICMP" export CXXFLAGS="$CFLAGS" cd src %{cmake} .. cd .. make -C src %{?_smp_mflags} %install rm -rf %{buildroot} make -C src install DESTDIR=%{buildroot} INSTALL="install -p" # Remove installed docdir rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop # vefte works only in virtual consoles, requires special permissions to # /dev/vcsa*, and has a garbled display. Don't include it in the rpm, since # nefte offers same functionality and works everywhere. rm %{buildroot}%{_bindir}/vefte %clean rm -rf %{buildroot} # Update desktop mime database %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %{_bindir}/efte %{_datadir}/applications/efte.desktop %{_datadir}/pixmaps/efte*.xpm %files -n nefte %defattr(-,root,root,-) %{_bindir}/nefte %files common %defattr(-,root,root,-) %doc Artistic AUTHORS COPYING HISTORY README %{_datadir}/efte/ %changelog * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. * Sun Jun 21 2009 Jussi Lehtola - 1.0-3 - Don't ship %%{_bindir}/vefte which is broken. * Sun Jun 21 2009 Jussi Lehtola - 1.0-2 - Use -DHAVE_STRICMP instead of -fno-exceptions. * Wed Jun 17 2009 Jussi Lehtola - 1.0-1 - First release. --- NEW FILE import.log --- efte-1_0-4_fc11:HEAD:efte-1.0-4.fc11.src.rpm:1246512566 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/efte/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:00:07 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:30:00 -0000 1.2 @@ -0,0 +1 @@ +efte-1.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/efte/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:00:07 -0000 1.1 +++ sources 2 Jul 2009 05:30:00 -0000 1.2 @@ -0,0 +1 @@ +d7f9b5514ceeef371d91853e56ef8288 efte-1.0.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 2 05:31:27 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 2 Jul 2009 05:31:27 +0000 (UTC) Subject: rpms/efte/F-10 efte.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090702053127.D4D4611C00E3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12380/F-10 Modified Files: sources Added Files: efte.spec Log Message: Impoted in Fedora. --- NEW FILE efte.spec --- Name: efte Version: 1.0 Release: 4%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic URL: http://efte.cowgar.com Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake BuildRequires: desktop-file-utils BuildRequires: gpm-devel BuildRequires: ncurses-devel BuildRequires: libICE-devel BuildRequires: libSM-devel BuildRequires: libXext-devel BuildRequires: libX11-devel BuildRequires: libXpm-devel Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # Branch nefte on its own since it has less dependencies %package -n nefte Summary: A lightweight, extendable, folding text editor Group: Applications/Editors Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # .. which makes a common data package necessary %package common Summary: Common data files for efte/nefte Group: Application/Editors # Make the common package get removed when the editors are removed Requires: efte(binary) = %{version}-%{release} %if 0%{?fedora} > 10 BuildArch: noarch %endif %description eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains efte, the X11 version of the editor. %description -n nefte eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains nefte, the ncurses version of the editor. %description common eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains common datafiles for efte. %prep %setup -q # Character set conversion for doc in Artistic AUTHORS COPYING HISTORY INSTALL README; do iconv -f ASCII -t UTF-8 $doc > $doc.new && \ touch -r $doc $doc.new && \ mv $doc.new $doc done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt %build # Need this to build export CFLAGS="%{optflags} -DHAVE_STRICMP" export CXXFLAGS="$CFLAGS" cd src %{cmake} .. cd .. make -C src %{?_smp_mflags} %install rm -rf %{buildroot} make -C src install DESTDIR=%{buildroot} INSTALL="install -p" # Remove installed docdir rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop # vefte works only in virtual consoles, requires special permissions to # /dev/vcsa*, and has a garbled display. Don't include it in the rpm, since # nefte offers same functionality and works everywhere. rm %{buildroot}%{_bindir}/vefte %clean rm -rf %{buildroot} # Update desktop mime database %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %{_bindir}/efte %{_datadir}/applications/efte.desktop %{_datadir}/pixmaps/efte*.xpm %files -n nefte %defattr(-,root,root,-) %{_bindir}/nefte %files common %defattr(-,root,root,-) %doc Artistic AUTHORS COPYING HISTORY README %{_datadir}/efte/ %changelog * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. * Sun Jun 21 2009 Jussi Lehtola - 1.0-3 - Don't ship %%{_bindir}/vefte which is broken. * Sun Jun 21 2009 Jussi Lehtola - 1.0-2 - Use -DHAVE_STRICMP instead of -fno-exceptions. * Wed Jun 17 2009 Jussi Lehtola - 1.0-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/efte/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:00:07 -0000 1.1 +++ sources 2 Jul 2009 05:30:57 -0000 1.2 @@ -0,0 +1 @@ +d7f9b5514ceeef371d91853e56ef8288 efte-1.0.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 2 05:31:27 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 2 Jul 2009 05:31:27 +0000 (UTC) Subject: rpms/efte/EL-5 efte.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090702053127.A113B11C00E3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12380/EL-5 Modified Files: sources Added Files: efte.spec Log Message: Impoted in Fedora. --- NEW FILE efte.spec --- Name: efte Version: 1.0 Release: 4%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic URL: http://efte.cowgar.com Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake BuildRequires: desktop-file-utils BuildRequires: gpm-devel BuildRequires: ncurses-devel BuildRequires: libICE-devel BuildRequires: libSM-devel BuildRequires: libXext-devel BuildRequires: libX11-devel BuildRequires: libXpm-devel Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # Branch nefte on its own since it has less dependencies %package -n nefte Summary: A lightweight, extendable, folding text editor Group: Applications/Editors Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # .. which makes a common data package necessary %package common Summary: Common data files for efte/nefte Group: Application/Editors # Make the common package get removed when the editors are removed Requires: efte(binary) = %{version}-%{release} %if 0%{?fedora} > 10 BuildArch: noarch %endif %description eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains efte, the X11 version of the editor. %description -n nefte eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains nefte, the ncurses version of the editor. %description common eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains common datafiles for efte. %prep %setup -q # Character set conversion for doc in Artistic AUTHORS COPYING HISTORY INSTALL README; do iconv -f ASCII -t UTF-8 $doc > $doc.new && \ touch -r $doc $doc.new && \ mv $doc.new $doc done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt %build # Need this to build export CFLAGS="%{optflags} -DHAVE_STRICMP" export CXXFLAGS="$CFLAGS" cd src %{cmake} .. cd .. make -C src %{?_smp_mflags} %install rm -rf %{buildroot} make -C src install DESTDIR=%{buildroot} INSTALL="install -p" # Remove installed docdir rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop # vefte works only in virtual consoles, requires special permissions to # /dev/vcsa*, and has a garbled display. Don't include it in the rpm, since # nefte offers same functionality and works everywhere. rm %{buildroot}%{_bindir}/vefte %clean rm -rf %{buildroot} # Update desktop mime database %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %{_bindir}/efte %{_datadir}/applications/efte.desktop %{_datadir}/pixmaps/efte*.xpm %files -n nefte %defattr(-,root,root,-) %{_bindir}/nefte %files common %defattr(-,root,root,-) %doc Artistic AUTHORS COPYING HISTORY README %{_datadir}/efte/ %changelog * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. * Sun Jun 21 2009 Jussi Lehtola - 1.0-3 - Don't ship %%{_bindir}/vefte which is broken. * Sun Jun 21 2009 Jussi Lehtola - 1.0-2 - Use -DHAVE_STRICMP instead of -fno-exceptions. * Wed Jun 17 2009 Jussi Lehtola - 1.0-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/efte/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:00:07 -0000 1.1 +++ sources 2 Jul 2009 05:30:57 -0000 1.2 @@ -0,0 +1 @@ +d7f9b5514ceeef371d91853e56ef8288 efte-1.0.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 2 05:31:28 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 2 Jul 2009 05:31:28 +0000 (UTC) Subject: rpms/efte/F-11 efte.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090702053128.0FAD811C00E3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12380/F-11 Modified Files: sources Added Files: efte.spec Log Message: Impoted in Fedora. --- NEW FILE efte.spec --- Name: efte Version: 1.0 Release: 4%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic URL: http://efte.cowgar.com Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake BuildRequires: desktop-file-utils BuildRequires: gpm-devel BuildRequires: ncurses-devel BuildRequires: libICE-devel BuildRequires: libSM-devel BuildRequires: libXext-devel BuildRequires: libX11-devel BuildRequires: libXpm-devel Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # Branch nefte on its own since it has less dependencies %package -n nefte Summary: A lightweight, extendable, folding text editor Group: Applications/Editors Provides: efte(binary) = %{version}-%{release} Requires: efte-common = %{version}-%{release} # .. which makes a common data package necessary %package common Summary: Common data files for efte/nefte Group: Application/Editors # Make the common package get removed when the editors are removed Requires: efte(binary) = %{version}-%{release} %if 0%{?fedora} > 10 BuildArch: noarch %endif %description eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains efte, the X11 version of the editor. %description -n nefte eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains nefte, the ncurses version of the editor. %description common eFTE is an advanced programmers editor with goals of being lightweight, yet totally configurable. Support for user defined programming languages, menu systems and key bindings are provided with many common defaults already defined. eFTE is still a new project, however, we extend from the FTE editor which was first released in 1995, so eFTE is tried and true with many features for the programmer/text editor. This package contains common datafiles for efte. %prep %setup -q # Character set conversion for doc in Artistic AUTHORS COPYING HISTORY INSTALL README; do iconv -f ASCII -t UTF-8 $doc > $doc.new && \ touch -r $doc $doc.new && \ mv $doc.new $doc done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt %build # Need this to build export CFLAGS="%{optflags} -DHAVE_STRICMP" export CXXFLAGS="$CFLAGS" cd src %{cmake} .. cd .. make -C src %{?_smp_mflags} %install rm -rf %{buildroot} make -C src install DESTDIR=%{buildroot} INSTALL="install -p" # Remove installed docdir rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop # vefte works only in virtual consoles, requires special permissions to # /dev/vcsa*, and has a garbled display. Don't include it in the rpm, since # nefte offers same functionality and works everywhere. rm %{buildroot}%{_bindir}/vefte %clean rm -rf %{buildroot} # Update desktop mime database %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %{_bindir}/efte %{_datadir}/applications/efte.desktop %{_datadir}/pixmaps/efte*.xpm %files -n nefte %defattr(-,root,root,-) %{_bindir}/nefte %files common %defattr(-,root,root,-) %doc Artistic AUTHORS COPYING HISTORY README %{_datadir}/efte/ %changelog * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. * Sun Jun 21 2009 Jussi Lehtola - 1.0-3 - Don't ship %%{_bindir}/vefte which is broken. * Sun Jun 21 2009 Jussi Lehtola - 1.0-2 - Use -DHAVE_STRICMP instead of -fno-exceptions. * Wed Jun 17 2009 Jussi Lehtola - 1.0-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/efte/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:00:07 -0000 1.1 +++ sources 2 Jul 2009 05:30:57 -0000 1.2 @@ -0,0 +1 @@ +d7f9b5514ceeef371d91853e56ef8288 efte-1.0.tar.bz2 From mclasen at fedoraproject.org Thu Jul 2 05:35:55 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:35:55 +0000 (UTC) Subject: rpms/gthumb/devel gthumb.spec,1.101,1.102 Message-ID: <20090702053555.1E93A11C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gthumb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13030 Modified Files: gthumb.spec Log Message: shrink gconf schemas Index: gthumb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gthumb/devel/gthumb.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- gthumb.spec 11 Apr 2009 02:05:06 -0000 1.101 +++ gthumb.spec 2 Jul 2009 05:35:24 -0000 1.102 @@ -11,7 +11,7 @@ Summary: Image viewer, editor, organizer Name: gthumb Version: 2.10.11 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://gthumb.sourceforge.net Source0: http://download.gnome.org/sources/gthumb/2.10/%{name}-%{version}.tar.bz2 Source1: gthumb-importer @@ -67,6 +67,9 @@ collections of images. %patch0 -p1 -b .libdir %patch1 -p1 -b .import-dir +# force regeneration +rm data/gthumb.schemas + autoreconf -i -f %build @@ -141,6 +144,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/gthumb.png %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.10.11-4 +- Rebuild to shrink GConf schemas + * Fri Apr 10 2009 Matthias Clasen - 2.10.11-3 - Fix directory ownership From mtasaka at fedoraproject.org Thu Jul 2 05:37:00 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 2 Jul 2009 05:37:00 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/F-10 rubygem-rake-compiler.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702053700.B180711C00E3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13209/F-10 Modified Files: .cvsignore sources Added Files: rubygem-rake-compiler.spec Log Message: Initial commit --- NEW FILE rubygem-rake-compiler.spec --- %global gemname rake-compiler %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global rubyabi 1.8 Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} Version: 0.5.0 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) Requires: ruby(abi) = %{rubyabi} Requires: ruby(rubygems) Requires: rubygem(rake) >= 0.8.3 BuildArch: noarch Provides: rubygem(%{gemname}) = %{version}-%{release} %description rake-compiler aims to help Gem developers while dealing with Ruby C extensions, simplifiying the code and reducing the duplication. It follows *convention over configuration* and set an standarized structure to build and package C extensions in your gems. This is the result of expriences dealing with several Gems that required native extensions across platforms and different user configurations where details like portability and clarity of code were lacking. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} %description doc This package contains documentation for %{name}. %prep %setup -q -c -T mkdir -p .%{gemdir} gem install \ --local \ --install-dir $(pwd)%{gemdir} \ --force \ --rdoc \ -V \ %{SOURCE0} # rpmlint cosmetic pushd .%{geminstdir} sed -i -e 's|\r||' README.rdoc find ./lib/rake -name \*.rb | xargs sed -i -e '\@/usr/bin/env at d' popd %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} cp -a .%{gemdir}/* %{buildroot}%{gemdir}/ # Move files under %%_bindir mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_bindir}/rake-compiler %dir %{geminstdir} %doc %{geminstdir}/README.rdoc %doc %{geminstdir}/LICENSE.txt %doc %{geminstdir}/History.txt %{geminstdir}/Rakefile %{geminstdir}/cucumber.yml %{geminstdir}/[a-z]*/ %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %files doc %defattr(-,root,root,-) %{gemdir}/doc/%{gemname}-%{version} %changelog * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin * Thu Jun 11 2009 Mamoru Tasaka - 0.5.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:02:46 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +rake-compiler-0.5.0.gem Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:02:46 -0000 1.1 +++ sources 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem From mtasaka at fedoraproject.org Thu Jul 2 05:37:01 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 2 Jul 2009 05:37:01 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/devel rubygem-rake-compiler.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702053701.14FE411C00E3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13209/devel Modified Files: .cvsignore sources Added Files: rubygem-rake-compiler.spec Log Message: Initial commit --- NEW FILE rubygem-rake-compiler.spec --- %global gemname rake-compiler %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global rubyabi 1.8 Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} Version: 0.5.0 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) Requires: ruby(abi) = %{rubyabi} Requires: ruby(rubygems) Requires: rubygem(rake) >= 0.8.3 BuildArch: noarch Provides: rubygem(%{gemname}) = %{version}-%{release} %description rake-compiler aims to help Gem developers while dealing with Ruby C extensions, simplifiying the code and reducing the duplication. It follows *convention over configuration* and set an standarized structure to build and package C extensions in your gems. This is the result of expriences dealing with several Gems that required native extensions across platforms and different user configurations where details like portability and clarity of code were lacking. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} %description doc This package contains documentation for %{name}. %prep %setup -q -c -T mkdir -p .%{gemdir} gem install \ --local \ --install-dir $(pwd)%{gemdir} \ --force \ --rdoc \ -V \ %{SOURCE0} # rpmlint cosmetic pushd .%{geminstdir} sed -i -e 's|\r||' README.rdoc find ./lib/rake -name \*.rb | xargs sed -i -e '\@/usr/bin/env at d' popd %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} cp -a .%{gemdir}/* %{buildroot}%{gemdir}/ # Move files under %%_bindir mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_bindir}/rake-compiler %dir %{geminstdir} %doc %{geminstdir}/README.rdoc %doc %{geminstdir}/LICENSE.txt %doc %{geminstdir}/History.txt %{geminstdir}/Rakefile %{geminstdir}/cucumber.yml %{geminstdir}/[a-z]*/ %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %files doc %defattr(-,root,root,-) %{gemdir}/doc/%{gemname}-%{version} %changelog * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin * Thu Jun 11 2009 Mamoru Tasaka - 0.5.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:02:46 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +rake-compiler-0.5.0.gem Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:02:46 -0000 1.1 +++ sources 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem From mtasaka at fedoraproject.org Thu Jul 2 05:37:00 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 2 Jul 2009 05:37:00 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/F-11 rubygem-rake-compiler.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702053700.E176E11C0419@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13209/F-11 Modified Files: .cvsignore sources Added Files: rubygem-rake-compiler.spec Log Message: Initial commit --- NEW FILE rubygem-rake-compiler.spec --- %global gemname rake-compiler %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global geminstdir %{gemdir}/gems/%{gemname}-%{version} %global rubyabi 1.8 Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} Version: 0.5.0 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) Requires: ruby(abi) = %{rubyabi} Requires: ruby(rubygems) Requires: rubygem(rake) >= 0.8.3 BuildArch: noarch Provides: rubygem(%{gemname}) = %{version}-%{release} %description rake-compiler aims to help Gem developers while dealing with Ruby C extensions, simplifiying the code and reducing the duplication. It follows *convention over configuration* and set an standarized structure to build and package C extensions in your gems. This is the result of expriences dealing with several Gems that required native extensions across platforms and different user configurations where details like portability and clarity of code were lacking. %package doc Summary: Documentation for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} %description doc This package contains documentation for %{name}. %prep %setup -q -c -T mkdir -p .%{gemdir} gem install \ --local \ --install-dir $(pwd)%{gemdir} \ --force \ --rdoc \ -V \ %{SOURCE0} # rpmlint cosmetic pushd .%{geminstdir} sed -i -e 's|\r||' README.rdoc find ./lib/rake -name \*.rb | xargs sed -i -e '\@/usr/bin/env at d' popd %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} cp -a .%{gemdir}/* %{buildroot}%{gemdir}/ # Move files under %%_bindir mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_bindir}/rake-compiler %dir %{geminstdir} %doc %{geminstdir}/README.rdoc %doc %{geminstdir}/LICENSE.txt %doc %{geminstdir}/History.txt %{geminstdir}/Rakefile %{geminstdir}/cucumber.yml %{geminstdir}/[a-z]*/ %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %files doc %defattr(-,root,root,-) %{gemdir}/doc/%{gemname}-%{version} %changelog * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin * Thu Jun 11 2009 Mamoru Tasaka - 0.5.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:02:46 -0000 1.1 +++ .cvsignore 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +rake-compiler-0.5.0.gem Index: sources =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:02:46 -0000 1.1 +++ sources 2 Jul 2009 05:36:30 -0000 1.2 @@ -0,0 +1 @@ +8f5b763bc086ae215227d9bd9bb7a875 rake-compiler-0.5.0.gem From mtasaka at fedoraproject.org Thu Jul 2 05:37:07 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 2 Jul 2009 05:37:07 +0000 (UTC) Subject: rpms/rubygem-nokogiri/devel rubygem-nokogiri-1.3.2-rake-valgrind-error.patch, NONE, 1.1 rubygem-nokogiri.spec, 1.8, 1.9 Message-ID: <20090702053707.29AA911C00E3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-nokogiri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13263 Modified Files: rubygem-nokogiri.spec Added Files: rubygem-nokogiri-1.3.2-rake-valgrind-error.patch Log Message: * Thu Jul 2 2009 Mamoru Tasaka - 1.3.2-2 - Enable test - Recompile with -O2 rubygem-nokogiri-1.3.2-rake-valgrind-error.patch: --- NEW FILE rubygem-nokogiri-1.3.2-rake-valgrind-error.patch --- commit 7a43e2e9d0fc3ba3b03bad6117b2ff6c8b9ab3a2 Author: Mike Dalessio Date: Fri Jun 26 08:14:44 2009 -0400 ensuring rake will run even if hoe-debugging isn't installed diff --git a/Rakefile b/Rakefile index a13dfaf..9434336 100644 --- a/Rakefile +++ b/Rakefile @@ -180,9 +180,11 @@ unless windows || java || ENV['NOKOGIRI_FFI'] Rake::Task[task_name].prerequisites << GENERATED_TOKENIZER end - Rake::Task[:test].prerequisites << :compile - ['valgrind', 'valgrind:mem', 'valgrind:mem0'].each do |task_name| - Rake::Task["test:#{task_name}"].prerequisites << :compile + if Rake::Task.task_defined?(:valgrind) + Rake::Task[:test].prerequisites << :compile + ['valgrind', 'valgrind:mem', 'valgrind:mem0'].each do |task_name| + Rake::Task["test:#{task_name}"].prerequisites << :compile + end end else [:test, :check_manifest].each do |task_name| Index: rubygem-nokogiri.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/devel/rubygem-nokogiri.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-nokogiri.spec 24 Jun 2009 18:22:46 -0000 1.8 +++ rubygem-nokogiri.spec 2 Jul 2009 05:36:36 -0000 1.9 @@ -9,19 +9,21 @@ Summary: An HTML, XML, SAX, and Reader parser Name: rubygem-%{gemname} Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://nokogiri.rubyforge.org/nokogiri/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem +Patch0: rubygem-nokogiri-1.3.2-rake-valgrind-error.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ruby(abi) = %{rubyabi} BuildRequires: ruby(rubygems) BuildRequires: rubygem(hoe) -BuildRequires: rubygem(rake) # Not available yet -# BuildRequires(check): rubygem(rake-compiler) +# BuildRequires: rubygem(hoe-debugging) +BuildRequires: rubygem(rake) +BuildRequires: rubygem(rake-compiler) BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: ruby-devel @@ -58,7 +60,6 @@ This package provides non-Gem support fo %prep %setup -q -T -c -%build mkdir -p ./%{gemdir} export CONFIGURE_ARGS="--with-cflags='%{optflags}'" gem install \ @@ -67,14 +68,15 @@ gem install \ -V --force \ %{SOURCE0} +pushd ./%{geminstdir} +%patch0 -p1 -b .valgrind + +%build # cflags wrong (-O3 passed), recompiling -# Skip until rubygem(rake-compiler) is available -%if 0 pushd ./%{geminstdir} sed -i.flags -e 's|-O3||' ext/nokogiri/extconf.rb find . -name \*.so -or -name \*.o -exec rm -f {} \; -rake -v ext/nokogiri/native.so --trace -%endif +rake -v compile --trace %install rm -rf %{buildroot} @@ -98,7 +100,7 @@ do done # cleanups -rm -rf %{buildroot}%{geminstdir}/ext +rm -rf %{buildroot}%{geminstdir}/{ext,tmp}/ rm -f %{buildroot}%{geminstdir}/{.autotest,.require_paths} # The following method is completely copied from rubygem-gettext @@ -167,11 +169,8 @@ create_symlink_rec %{geminstdir}/lib %{r rm -rf %{buildroot} %check -# Skip until rubygem(rake-compiler) is available -exit 0 - pushd ./%{geminstdir} -rake test +rake test --trace popd %files @@ -199,6 +198,10 @@ popd %{ruby_sitelib}/xsd/ %changelog +* Thu Jul 2 2009 Mamoru Tasaka - 1.3.2-2 +- Enable test +- Recompile with -O2 + * Thu Jun 25 2009 Mamoru Tasaka - 1.3.2-1 - 1.3.2 From mclasen at fedoraproject.org Thu Jul 2 05:59:45 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 05:59:45 +0000 (UTC) Subject: rpms/gnome-user-share/devel gnome-user-share.spec,1.53,1.54 Message-ID: <20090702055945.C85CF11C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-user-share/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16363 Modified Files: gnome-user-share.spec Log Message: Rebuild Index: gnome-user-share.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-user-share/devel/gnome-user-share.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- gnome-user-share.spec 6 Apr 2009 03:11:59 -0000 1.53 +++ gnome-user-share.spec 2 Jul 2009 05:59:13 -0000 1.54 @@ -1,7 +1,7 @@ Summary: Gnome user file sharing Name: gnome-user-share Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.gnome.org @@ -123,6 +123,9 @@ fi %{_datadir}/icons/hicolor/*/apps/gnome-obex-server.png %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.26.0-3 +- Rebuild to shrink GConf schemas + * Sun Apr 5 2009 Matthias Clasen - 2.26.0-2 - Fix a menu reference in the docs (#494253) From cweyl at fedoraproject.org Thu Jul 2 06:05:40 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:05:40 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/devel import.log, NONE, 1.1 perl-namespace-autoclean.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702060540.9999A11C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-namespace-autoclean/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17427/devel Modified Files: .cvsignore sources Added Files: import.log perl-namespace-autoclean.spec Log Message: initial import --- NEW FILE import.log --- perl-namespace-autoclean-0_08-1_fc11:HEAD:perl-namespace-autoclean-0.08-1.fc11.src.rpm:1246514695 --- NEW FILE perl-namespace-autoclean.spec --- Name: perl-namespace-autoclean Version: 0.08 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Keep imports out of your namespace Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/namespace-autoclean-%{version}.tar.gz Url: http://search.cpan.org/dist/namespace-autoclean BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07 BuildRequires: perl(Class::MOP) >= 0.80 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(List::Util) BuildRequires: perl(namespace::clean) >= 0.11 BuildRequires: perl(Test::More) %description When you import a function into a Perl package, it will naturally also be available as a method. The 'namespace::autoclean' pragma will remove all imported symbols at the end of the current package's compile cycle. Functions called in the package itself will still be bound by their name, but they won't show up as methods on your class or instances. This module is very similar to namespace::clean, except it will clean all imported functions, no matter if you imported them before or after you 'use'd the pagma. It will also not touch anything that looks like a method, according to 'Class::MOP::Class::get_method_list'. %prep %setup -q -n namespace-autoclean-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.08-1 - submission * Wed Jul 01 2009 Chris Weyl 0.08-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:55 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:05:39 -0000 1.2 @@ -0,0 +1 @@ +namespace-autoclean-0.08.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:55 -0000 1.1 +++ sources 2 Jul 2009 06:05:40 -0000 1.2 @@ -0,0 +1 @@ +b0d086797cdb060d23c0697605c39002 namespace-autoclean-0.08.tar.gz From cweyl at fedoraproject.org Thu Jul 2 06:06:13 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:06:13 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/devel import.log, NONE, 1.1 perl-String-RewritePrefix.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702060613.48F5D11C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-String-RewritePrefix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17603/devel Modified Files: .cvsignore sources Added Files: import.log perl-String-RewritePrefix.spec Log Message: initial import --- NEW FILE import.log --- perl-String-RewritePrefix-0_004-1_fc11:HEAD:perl-String-RewritePrefix-0.004-1.fc11.src.rpm:1246514733 --- NEW FILE perl-String-RewritePrefix.spec --- Name: perl-String-RewritePrefix Version: 0.004 Release: 1%{?dist} # lib/String/RewritePrefix.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Rewrite strings based on a set of known prefixes Source: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/String-RewritePrefix-%{version}.tar.gz Url: http://search.cpan.org/dist/String-RewritePrefix BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) >= 0.47 %description %{summary}. %prep %setup -q -n String-RewritePrefix-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.004-1 - submission * Wed Jul 01 2009 Chris Weyl 0.004-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:10 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:06:12 -0000 1.2 @@ -0,0 +1 @@ +String-RewritePrefix-0.004.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:11 -0000 1.1 +++ sources 2 Jul 2009 06:06:13 -0000 1.2 @@ -0,0 +1 @@ +27aeb4769fb047651b996bcc12aeabca String-RewritePrefix-0.004.tar.gz From cweyl at fedoraproject.org Thu Jul 2 06:07:39 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:07:39 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/F-11 import.log, NONE, 1.1 perl-namespace-autoclean.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702060739.EBE2F11C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-namespace-autoclean/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17979/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-namespace-autoclean.spec Log Message: initial import --- NEW FILE import.log --- perl-namespace-autoclean-0_08-1_fc11:F-11:perl-namespace-autoclean-0.08-1.fc11.src.rpm:1246514815 --- NEW FILE perl-namespace-autoclean.spec --- Name: perl-namespace-autoclean Version: 0.08 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Keep imports out of your namespace Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/namespace-autoclean-%{version}.tar.gz Url: http://search.cpan.org/dist/namespace-autoclean BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07 BuildRequires: perl(Class::MOP) >= 0.80 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(List::Util) BuildRequires: perl(namespace::clean) >= 0.11 BuildRequires: perl(Test::More) %description When you import a function into a Perl package, it will naturally also be available as a method. The 'namespace::autoclean' pragma will remove all imported symbols at the end of the current package's compile cycle. Functions called in the package itself will still be bound by their name, but they won't show up as methods on your class or instances. This module is very similar to namespace::clean, except it will clean all imported functions, no matter if you imported them before or after you 'use'd the pagma. It will also not touch anything that looks like a method, according to 'Class::MOP::Class::get_method_list'. %prep %setup -q -n namespace-autoclean-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.08-1 - submission * Wed Jul 01 2009 Chris Weyl 0.08-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:55 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:07:09 -0000 1.2 @@ -0,0 +1 @@ +namespace-autoclean-0.08.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:55 -0000 1.1 +++ sources 2 Jul 2009 06:07:09 -0000 1.2 @@ -0,0 +1 @@ +b0d086797cdb060d23c0697605c39002 namespace-autoclean-0.08.tar.gz From pkgdb at fedoraproject.org Thu Jul 2 06:07:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:45 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060745.A951D10F896@bastion2.fedora.phx.redhat.com> walters has set the watchcommits acl on gir-repository (Fedora devel) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:47 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060747.B344410F8A3@bastion2.fedora.phx.redhat.com> walters has set the commit acl on gir-repository (Fedora devel) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:48 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060748.C55FD10F8A8@bastion2.fedora.phx.redhat.com> walters has set the approveacls acl on gir-repository (Fedora devel) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:51 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060751.5798310F8AC@bastion2.fedora.phx.redhat.com> walters has set the watchbugzilla acl on gir-repository (Fedora 10) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:52 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060752.A4AD610F8AF@bastion2.fedora.phx.redhat.com> walters has set the watchcommits acl on gir-repository (Fedora 10) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:55 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060755.6436010F8B3@bastion2.fedora.phx.redhat.com> walters has set the approveacls acl on gir-repository (Fedora 10) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:07:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:56 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060756.9123110F8B7@bastion2.fedora.phx.redhat.com> walters has set the commit acl on gir-repository (Fedora 10) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From cweyl at fedoraproject.org Thu Jul 2 06:07:57 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:07:57 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/F-11 import.log, NONE, 1.1 perl-String-RewritePrefix.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702060757.57F2011C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-String-RewritePrefix/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18066/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-String-RewritePrefix.spec Log Message: initial import --- NEW FILE import.log --- perl-String-RewritePrefix-0_004-1_fc11:F-11:perl-String-RewritePrefix-0.004-1.fc11.src.rpm:1246514826 --- NEW FILE perl-String-RewritePrefix.spec --- Name: perl-String-RewritePrefix Version: 0.004 Release: 1%{?dist} # lib/String/RewritePrefix.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Rewrite strings based on a set of known prefixes Source: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/String-RewritePrefix-%{version}.tar.gz Url: http://search.cpan.org/dist/String-RewritePrefix BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) >= 0.47 %description %{summary}. %prep %setup -q -n String-RewritePrefix-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.004-1 - submission * Wed Jul 01 2009 Chris Weyl 0.004-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:10 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:07:26 -0000 1.2 @@ -0,0 +1 @@ +String-RewritePrefix-0.004.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:11 -0000 1.1 +++ sources 2 Jul 2009 06:07:27 -0000 1.2 @@ -0,0 +1 @@ +27aeb4769fb047651b996bcc12aeabca String-RewritePrefix-0.004.tar.gz From pkgdb at fedoraproject.org Thu Jul 2 06:07:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:07:59 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060759.7143C10F8BC@bastion2.fedora.phx.redhat.com> walters has set the watchbugzilla acl on gir-repository (Fedora 11) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:08:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:08:01 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060801.76DE310F8C0@bastion2.fedora.phx.redhat.com> walters has set the watchcommits acl on gir-repository (Fedora 11) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:08:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:08:02 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060802.4188510F8C4@bastion2.fedora.phx.redhat.com> walters has set the commit acl on gir-repository (Fedora 11) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From pkgdb at fedoraproject.org Thu Jul 2 06:08:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 06:08:03 +0000 Subject: [pkgdb] gir-repository had acl change status Message-ID: <20090702060803.D32BB10F8C8@bastion2.fedora.phx.redhat.com> walters has set the approveacls acl on gir-repository (Fedora 11) to Approved for rakesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gir-repository From cweyl at fedoraproject.org Thu Jul 2 06:10:07 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:10:07 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/F-10 import.log, NONE, 1.1 perl-namespace-autoclean.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702061007.477F111C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-namespace-autoclean/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18684/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-namespace-autoclean.spec Log Message: initial import --- NEW FILE import.log --- perl-namespace-autoclean-0_08-1_fc11:F-10:perl-namespace-autoclean-0.08-1.fc11.src.rpm:1246514942 --- NEW FILE perl-namespace-autoclean.spec --- Name: perl-namespace-autoclean Version: 0.08 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Keep imports out of your namespace Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/namespace-autoclean-%{version}.tar.gz Url: http://search.cpan.org/dist/namespace-autoclean BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07 BuildRequires: perl(Class::MOP) >= 0.80 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(List::Util) BuildRequires: perl(namespace::clean) >= 0.11 BuildRequires: perl(Test::More) %description When you import a function into a Perl package, it will naturally also be available as a method. The 'namespace::autoclean' pragma will remove all imported symbols at the end of the current package's compile cycle. Functions called in the package itself will still be bound by their name, but they won't show up as methods on your class or instances. This module is very similar to namespace::clean, except it will clean all imported functions, no matter if you imported them before or after you 'use'd the pagma. It will also not touch anything that looks like a method, according to 'Class::MOP::Class::get_method_list'. %prep %setup -q -n namespace-autoclean-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.08-1 - submission * Wed Jul 01 2009 Chris Weyl 0.08-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:55 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:09:36 -0000 1.2 @@ -0,0 +1 @@ +namespace-autoclean-0.08.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-namespace-autoclean/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:55 -0000 1.1 +++ sources 2 Jul 2009 06:09:37 -0000 1.2 @@ -0,0 +1 @@ +b0d086797cdb060d23c0697605c39002 namespace-autoclean-0.08.tar.gz From cweyl at fedoraproject.org Thu Jul 2 06:10:12 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Thu, 2 Jul 2009 06:10:12 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/F-10 import.log, NONE, 1.1 perl-String-RewritePrefix.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702061012.C404911C00E3@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-String-RewritePrefix/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18732/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-String-RewritePrefix.spec Log Message: initial import --- NEW FILE import.log --- perl-String-RewritePrefix-0_004-1_fc11:F-10:perl-String-RewritePrefix-0.004-1.fc11.src.rpm:1246514948 --- NEW FILE perl-String-RewritePrefix.spec --- Name: perl-String-RewritePrefix Version: 0.004 Release: 1%{?dist} # lib/String/RewritePrefix.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Rewrite strings based on a set of known prefixes Source: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/String-RewritePrefix-%{version}.tar.gz Url: http://search.cpan.org/dist/String-RewritePrefix BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) >= 0.47 %description %{summary}. %prep %setup -q -n String-RewritePrefix-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes LICENSE README %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog * Wed Jul 01 2009 Chris Weyl 0.004-1 - submission * Wed Jul 01 2009 Chris Weyl 0.004-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:07:10 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:09:42 -0000 1.2 @@ -0,0 +1 @@ +String-RewritePrefix-0.004.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-String-RewritePrefix/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:07:11 -0000 1.1 +++ sources 2 Jul 2009 06:09:42 -0000 1.2 @@ -0,0 +1 @@ +27aeb4769fb047651b996bcc12aeabca String-RewritePrefix-0.004.tar.gz From ravenoak at fedoraproject.org Thu Jul 2 06:11:59 2009 From: ravenoak at fedoraproject.org (Caitlyn O'Hanna) Date: Thu, 2 Jul 2009 06:11:59 +0000 (UTC) Subject: rpms/pysvn/F-11 .cvsignore, 1.5, 1.6 pysvn.spec, 1.10, 1.11 sources, 1.5, 1.6 pysvn-1.6.2-fix-benchmark.patch, 1.1, NONE Message-ID: <20090702061159.1BAFD11C00E3@cvs1.fedora.phx.redhat.com> Author: ravenoak Update of /cvs/pkgs/rpms/pysvn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19275 Modified Files: .cvsignore pysvn.spec sources Removed Files: pysvn-1.6.2-fix-benchmark.patch Log Message: Update to 1.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Mar 2009 05:26:27 -0000 1.5 +++ .cvsignore 2 Jul 2009 06:11:28 -0000 1.6 @@ -1 +1 @@ -pysvn-1.6.3.tar.gz +pysvn-1.7.0.tar.gz Index: pysvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-11/pysvn.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pysvn.spec 5 Mar 2009 05:47:12 -0000 1.10 +++ pysvn.spec 2 Jul 2009 06:11:28 -0000 1.11 @@ -1,14 +1,13 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pysvn -Version: 1.6.3 -Release: 2%{dist} +Version: 1.7.0 +Release: 1%{dist} Summary: Pythonic style bindings for Subversion Group: Development/Languages License: ASL 1.1 URL: http://pysvn.tigris.org/ Source0: http://pysvn.barrys-emacs.org/source_kits/%{name}-%{version}.tar.gz -#Patch0: pysvn-1.6.2-fix-benchmark.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: PyXML @@ -23,12 +22,10 @@ Pythonic style bindings for Subversion %prep %setup -q -n %{name}-%{version} -#%patch0 %build pushd Source CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py configure --enable-debug --verbose --norpath --fixed-module-name -# Set correct build flags %{__sed} -i -e 's/-Wall -fPIC -fexceptions -frtti/%{optflags} -fPIC -frtti/' Makefile %{__make} %{?_smp_mflags} @@ -54,6 +51,9 @@ pushd Tests %{python_sitearch}/%{name} %changelog +* Mon Jun 29 2009 Caitlyn O'Hanna - 1.7.0-1 +- Update to new version + * Wed Mar 04 2009 Caitlyn O'Hanna - 1.6.3-2 - Remove the benchmark patch. Changes included in this release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 5 Mar 2009 05:26:27 -0000 1.5 +++ sources 2 Jul 2009 06:11:28 -0000 1.6 @@ -1 +1 @@ -41d312ff09b05f7b53d3641a82c64c93 pysvn-1.6.3.tar.gz +77614676d24bca45749034ea6ec449d8 pysvn-1.7.0.tar.gz --- pysvn-1.6.2-fix-benchmark.patch DELETED --- From topdog at fedoraproject.org Thu Jul 2 06:14:20 2009 From: topdog at fedoraproject.org (topdog) Date: Thu, 2 Jul 2009 06:14:20 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/devel import.log, NONE, 1.1 php-pear-HTML_Javascript.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702061420.7FEEE11C00E3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19755/devel Modified Files: .cvsignore sources Added Files: import.log php-pear-HTML_Javascript.spec Log Message: * Thu Jul 2 2009 Andrew Colin Kissa - 1.1.1-3 - Initial CVS checkin --- NEW FILE import.log --- php-pear-HTML_Javascript-1_1_1-3_fc11:HEAD:php-pear-HTML_Javascript-1.1.1-3.fc11.src.rpm:1246515113 --- NEW FILE php-pear-HTML_Javascript.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name HTML_Javascript Name: php-pear-HTML_Javascript Version: 1.1.1 Release: 3%{?dist} Summary: Class for creating simple JS scripts Group: Development/Libraries License: PHP URL: http://pear.php.net/package/HTML_Javascript Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires: php-pear(PEAR) Requires: php-pear(HTML_Common) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description The PEAR::HTML_Javascript package provides methods for creating simple JS scripts %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/HTML/Javascript %{pear_phpdir}/HTML/Javascript.* %changelog * Tue Jun 30 2009 Andrew Colin Kissa - 1.1.1-3 - Add HTML_Common dependency * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-2 - Fix directory ownership * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:03:42 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:13:49 -0000 1.2 @@ -0,0 +1 @@ +HTML_Javascript-1.1.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:03:42 -0000 1.1 +++ sources 2 Jul 2009 06:13:50 -0000 1.2 @@ -0,0 +1 @@ +5381cb0a53d8185b3a276daacb4f7655 HTML_Javascript-1.1.1.tgz From mclasen at fedoraproject.org Thu Jul 2 06:15:57 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 06:15:57 +0000 (UTC) Subject: rpms/yelp/devel yelp.spec,1.161,1.162 Message-ID: <20090702061557.5C9A011C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/yelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20343 Modified Files: yelp.spec Log Message: Shrink GConf schema Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/yelp.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- yelp.spec 30 Jun 2009 22:13:14 -0000 1.161 +++ yelp.spec 2 Jul 2009 06:15:26 -0000 1.162 @@ -19,7 +19,7 @@ Summary: Help browser for the GNOME desktop Name: yelp Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://download.gnome.org/sources/yelp/2.27/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp Patch1: yelp-2.15.5-fedora-docs.patch @@ -86,6 +86,9 @@ documentation written in DocBook. #%patch6 -p1 -b .hp %patch12 -p1 -b .libxul +# force regeneration +rm data/yelp.schemas + %build %configure \ --with-mozilla=libxul-embedding \ @@ -146,6 +149,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.27.2-2 +- Shrink GConf schemas + * Mon Jun 29 2009 Matthew Barnes - 2.27.2-1 - Update to 2.27.2 - Bump gnome_doc_utils requirement to 0.17.2. From topdog at fedoraproject.org Thu Jul 2 06:18:07 2009 From: topdog at fedoraproject.org (topdog) Date: Thu, 2 Jul 2009 06:18:07 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/F-11 import.log, NONE, 1.1 php-pear-HTML_Javascript.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702061807.D02DD11C00E3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21385/F-11 Modified Files: .cvsignore sources Added Files: import.log php-pear-HTML_Javascript.spec Log Message: * Thu Jul 2 2009 Andrew Colin Kissa - 1.1.1-3 - Initial CVS checkin --- NEW FILE import.log --- php-pear-HTML_Javascript-1_1_1-3_fc11:F-11:php-pear-HTML_Javascript-1.1.1-3.fc11.src.rpm:1246515368 --- NEW FILE php-pear-HTML_Javascript.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name HTML_Javascript Name: php-pear-HTML_Javascript Version: 1.1.1 Release: 3%{?dist} Summary: Class for creating simple JS scripts Group: Development/Libraries License: PHP URL: http://pear.php.net/package/HTML_Javascript Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires: php-pear(PEAR) Requires: php-pear(HTML_Common) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description The PEAR::HTML_Javascript package provides methods for creating simple JS scripts %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/HTML/Javascript %{pear_phpdir}/HTML/Javascript.* %changelog * Tue Jun 30 2009 Andrew Colin Kissa - 1.1.1-3 - Add HTML_Common dependency * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-2 - Fix directory ownership * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:03:42 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:17:37 -0000 1.2 @@ -0,0 +1 @@ +HTML_Javascript-1.1.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:03:42 -0000 1.1 +++ sources 2 Jul 2009 06:17:37 -0000 1.2 @@ -0,0 +1 @@ +5381cb0a53d8185b3a276daacb4f7655 HTML_Javascript-1.1.1.tgz From topdog at fedoraproject.org Thu Jul 2 06:22:03 2009 From: topdog at fedoraproject.org (topdog) Date: Thu, 2 Jul 2009 06:22:03 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/F-10 import.log, NONE, 1.1 php-pear-HTML_Javascript.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702062203.D5C3F11C00E3@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22238/F-10 Modified Files: .cvsignore sources Added Files: import.log php-pear-HTML_Javascript.spec Log Message: * Thu Jul 2 2009 Andrew Colin Kissa - 1.1.1-3 - Initial CVS checkin --- NEW FILE import.log --- php-pear-HTML_Javascript-1_1_1-3_fc11:F-10:php-pear-HTML_Javascript-1.1.1-3.fc11.src.rpm:1246515596 --- NEW FILE php-pear-HTML_Javascript.spec --- %{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} %global pear_name HTML_Javascript Name: php-pear-HTML_Javascript Version: 1.1.1 Release: 3%{?dist} Summary: Class for creating simple JS scripts Group: Development/Libraries License: PHP URL: http://pear.php.net/package/HTML_Javascript Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires: php-pear(PEAR) Requires: php-pear(HTML_Common) Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} %description The PEAR::HTML_Javascript package provides methods for creating simple JS scripts %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml cd %{pear_name}-%{version} %build cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir %{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml mkdir -p docdir mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ %{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/HTML/Javascript %{pear_phpdir}/HTML/Javascript.* %changelog * Tue Jun 30 2009 Andrew Colin Kissa - 1.1.1-3 - Add HTML_Common dependency * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-2 - Fix directory ownership * Thu Jun 25 2009 Andrew Colin Kissa - 1.1.1-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:03:42 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:21:33 -0000 1.2 @@ -0,0 +1 @@ +HTML_Javascript-1.1.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:03:42 -0000 1.1 +++ sources 2 Jul 2009 06:21:33 -0000 1.2 @@ -0,0 +1 @@ +5381cb0a53d8185b3a276daacb4f7655 HTML_Javascript-1.1.1.tgz From mclasen at fedoraproject.org Thu Jul 2 06:24:39 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 06:24:39 +0000 (UTC) Subject: rpms/devhelp/devel devhelp.spec,1.108,1.109 Message-ID: <20090702062439.C9AAD11C00E3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/devhelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22793 Modified Files: devhelp.spec Log Message: Shrink GConf schemas Index: devhelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/devhelp/devel/devhelp.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- devhelp.spec 8 Mar 2009 13:11:08 -0000 1.108 +++ devhelp.spec 2 Jul 2009 06:24:09 -0000 1.109 @@ -6,7 +6,7 @@ Name: devhelp Version: 0.23 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Development/Tools Summary: API documention browser @@ -55,6 +55,9 @@ into other applications such as IDEs. %setup -q -n devhelp-%{version} %patch0 -p0 -b .uris +# force regeneration +rm data/devhelp.schemas + %build %configure --disable-static make %{?_smp_mflags} CFLAGS="$CFLAGS -fno-strict-aliasing" @@ -137,6 +140,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Thu Jul 2 2009 Matthias Clasen - 0.23-7 +- Shrink GConf schemas + * Sun Mar 08 2009 Rakesh Pandit - 0.23-6 Bumped to consume new soname in webkit library. From ovasik at fedoraproject.org Thu Jul 2 06:25:57 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 2 Jul 2009 06:25:57 +0000 (UTC) Subject: rpms/tar/F-11 tar-1.22-atime-rofs.patch, NONE, 1.1 tar-1.22-shortreadbuffer.patch, NONE, 1.1 tar.spec, 1.79, 1.80 Message-ID: <20090702062557.7784411C00E3@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/tar/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23187 Modified Files: tar.spec Added Files: tar-1.22-atime-rofs.patch tar-1.22-shortreadbuffer.patch Log Message: report record size only if the archive refers to a device(#487760), ignore errors from setting utime() for source file on read-only filesystem (#500742) tar-1.22-atime-rofs.patch: --- NEW FILE tar-1.22-atime-rofs.patch --- diff -urNp tar-1.22-orig/src/create.c tar-1.22/src/create.c --- tar-1.22-orig/src/create.c 2009-05-15 10:50:38.000000000 +0200 +++ tar-1.22/src/create.c 2009-05-15 10:51:52.000000000 +0200 @@ -1691,7 +1691,8 @@ dump_file0 (struct tar_stat_info *st, co exit_status = TAREXIT_DIFFERS; } else if (atime_preserve_option == replace_atime_preserve - && set_file_atime (fd, p, restore_times) != 0) + && set_file_atime (fd, p, restore_times) != 0 + && errno != EROFS ) utime_error (p); } tar-1.22-shortreadbuffer.patch: --- NEW FILE tar-1.22-shortreadbuffer.patch --- diff -urNp tar-1.22-orig/src/buffer.c tar-1.22/src/buffer.c --- tar-1.22-orig/src/buffer.c 2009-03-05 08:04:13.000000000 +0100 +++ tar-1.22/src/buffer.c 2009-06-25 21:42:34.000000000 +0200 @@ -679,6 +679,19 @@ archive_read_error (void) return; } +static bool +archive_is_dev () +{ + struct stat st; + + if (fstat (archive, &st)) + { + stat_diag (*archive_name_cursor); + return false; + } + return S_ISBLK (st.st_mode) || S_ISCHR (st.st_mode); +} + static void short_read (size_t status) { @@ -690,7 +703,8 @@ short_read (size_t status) if (left && left % BLOCKSIZE == 0 && verbose_option - && record_start_block == 0 && status != 0) + && record_start_block == 0 && status != 0 + && archive_is_dev ()) { unsigned long rsize = status / BLOCKSIZE; WARN ((0, 0, diff -urNp tar-1.22-orig/tests/sparsemvp.at tar-1.22/tests/sparsemvp.at --- tar-1.22-orig/tests/sparsemvp.at 2008-10-19 23:56:00.000000000 +0200 +++ tar-1.22/tests/sparsemvp.at 2009-06-25 21:55:43.000000000 +0200 @@ -56,7 +56,5 @@ Test archive sparsefile Compare archive ], -[tar: Record size = 12 blocks -tar: Record size = 12 blocks -],[],[],[pax])]) +[],[],[],[pax])]) diff -urNp tar-1.22-orig/tests/volsize.at tar-1.22/tests/volsize.at --- tar-1.22-orig/tests/volsize.at 2008-10-19 23:54:53.000000000 +0200 +++ tar-1.22/tests/volsize.at 2009-06-25 21:56:08.000000000 +0200 @@ -52,9 +52,7 @@ Extracted directory abc abc/CCC ], -[tar: Record size = 5 blocks -tar: Record size = 5 blocks -]) +[]) AT_CLEANUP Index: tar.spec =================================================================== RCS file: /cvs/extras/rpms/tar/F-11/tar.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- tar.spec 6 Mar 2009 12:26:56 -0000 1.79 +++ tar.spec 2 Jul 2009 06:25:27 -0000 1.80 @@ -2,7 +2,7 @@ Summary: A GNU file archiving program Name: tar Epoch: 2 Version: 1.22 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Archiving URL: http://www.gnu.org/software/tar/ @@ -14,6 +14,8 @@ Patch2: tar-1.15.1-vfatTruncate.patch Patch3: tar-1.19-xattrs.patch Patch4: tar-1.19-xattrs-conf.patch Patch5: tar-1.17-wildcards.patch +Patch6: tar-1.22-atime-rofs.patch +Patch7: tar-1.22-shortreadbuffer.patch Prereq: info BuildRequires: autoconf automake gzip texinfo gettext libacl-devel libselinux-devel gawk rsh Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -39,6 +41,8 @@ the rmt package. %patch3 -p1 -b .xattrs %patch4 -p1 -b .xattrs-conf %patch5 -p1 -b .wildcards +%patch6 -p1 -b .rofs +%patch7 -p1 -b .shortread %build %configure --bindir=/bin --libexecdir=/sbin @@ -89,6 +93,12 @@ fi %{_infodir}/tar.info* %changelog +* Thu Jul 02 2009 Ondrej Vasik 2:1.22-3 +- report record size only if the archive refers to a device + (#487760) +- ignore errors from setting utime() for source file + on read-only filesystem (#500742) + * Fri Mar 06 2009 Kamil Dudka 2:1.22-2 - improve tar-1.14-loneZeroWarning.patch (#487315) From eseyman at fedoraproject.org Thu Jul 2 06:38:03 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 06:38:03 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-ConfigAuto.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702063803.6417211C00E3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24855/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-ConfigAuto.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-ConfigAuto-1_30-1_fc11:HEAD:perl-CGI-Application-Plugin-ConfigAuto-1.30-1.fc11.src.rpm:1246516661 --- NEW FILE perl-CGI-Application-Plugin-ConfigAuto.spec --- Name: perl-CGI-Application-Plugin-ConfigAuto Version: 1.30 Release: 1%{?dist} Summary: Easy config file management for CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-ConfigAuto/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Plugin-ConfigAuto-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Config::Auto) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::ConfigAuto adds easy access to config file variables to your CGI::Application modules. Lazy loading is used to prevent the config file from being parsed if no configuration variables are accessed during the request. %prep %setup -q -n CGI-Application-Plugin-ConfigAuto-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.30-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:05:59 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:38:02 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-ConfigAuto-1.30.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:05:59 -0000 1.1 +++ sources 2 Jul 2009 06:38:02 -0000 1.2 @@ -0,0 +1 @@ +a30633fae26924578a906d0c997599d8 CGI-Application-Plugin-ConfigAuto-1.30.tar.gz From eseyman at fedoraproject.org Thu Jul 2 06:40:00 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 06:40:00 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-ConfigAuto.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702064000.CCED811C00E3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25164/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-ConfigAuto.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-ConfigAuto-1_30-1_fc11:F-11:perl-CGI-Application-Plugin-ConfigAuto-1.30-1.fc11.src.rpm:1246516727 --- NEW FILE perl-CGI-Application-Plugin-ConfigAuto.spec --- Name: perl-CGI-Application-Plugin-ConfigAuto Version: 1.30 Release: 1%{?dist} Summary: Easy config file management for CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-ConfigAuto/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Plugin-ConfigAuto-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Config::Auto) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::ConfigAuto adds easy access to config file variables to your CGI::Application modules. Lazy loading is used to prevent the config file from being parsed if no configuration variables are accessed during the request. %prep %setup -q -n CGI-Application-Plugin-ConfigAuto-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.30-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:05:59 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:39:30 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-ConfigAuto-1.30.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:05:59 -0000 1.1 +++ sources 2 Jul 2009 06:39:30 -0000 1.2 @@ -0,0 +1 @@ +a30633fae26924578a906d0c997599d8 CGI-Application-Plugin-ConfigAuto-1.30.tar.gz From eseyman at fedoraproject.org Thu Jul 2 06:42:57 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 06:42:57 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-ConfigAuto.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702064257.2631511C00E3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25659/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-ConfigAuto.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-ConfigAuto-1_30-1_fc11:F-10:perl-CGI-Application-Plugin-ConfigAuto-1.30-1.fc11.src.rpm:1246516879 --- NEW FILE perl-CGI-Application-Plugin-ConfigAuto.spec --- Name: perl-CGI-Application-Plugin-ConfigAuto Version: 1.30 Release: 1%{?dist} Summary: Easy config file management for CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-ConfigAuto/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Plugin-ConfigAuto-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Config::Auto) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::ConfigAuto adds easy access to config file variables to your CGI::Application modules. Lazy loading is used to prevent the config file from being parsed if no configuration variables are accessed during the request. %prep %setup -q -n CGI-Application-Plugin-ConfigAuto-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.30-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 05:05:59 -0000 1.1 +++ .cvsignore 2 Jul 2009 06:42:26 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-ConfigAuto-1.30.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 05:05:59 -0000 1.1 +++ sources 2 Jul 2009 06:42:26 -0000 1.2 @@ -0,0 +1 @@ +a30633fae26924578a906d0c997599d8 CGI-Application-Plugin-ConfigAuto-1.30.tar.gz From varekova at fedoraproject.org Thu Jul 2 08:42:45 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Thu, 2 Jul 2009 08:42:45 +0000 (UTC) Subject: rpms/logwatch/devel logwatch.spec,1.114,1.115 Message-ID: <20090702084245.8811411C00E3@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/logwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6436 Modified Files: logwatch.spec Log Message: - fix cron script Index: logwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/logwatch/devel/logwatch.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- logwatch.spec 25 Jun 2009 13:39:39 -0000 1.114 +++ logwatch.spec 2 Jul 2009 08:42:14 -0000 1.115 @@ -1,7 +1,7 @@ Summary: A log file analysis program Name: logwatch Version: 7.3.6 -Release: 44%{?dist} +Release: 45%{?dist} License: MIT Group: Applications/System URL: http://www.logwatch.org/ @@ -175,7 +175,7 @@ cat > %{buildroot}/%{_sysconfdir}/cron. DailyReport=`grep -e "^[[:space:]]*DailyReport[[:space:]]*=[[:space:]]*" /usr/share/logwatch/default.conf/logwatch.conf | head -n1 | sed -e "s|^\s*DailyReport\s*=\s*||"` -if [ $DailyReport != "No" ] && [ $DailyReport != "no" ] +if [ \$DailyReport != "No" ] && [ \$DailyReport != "no" ] then logwatch fi @@ -236,6 +236,9 @@ rm -rf %{buildroot} %doc License project/CHANGES %changelog +* Thu Jul 2 2009 Ivana Varekova 7.3.6-45 +- fix cron script + * Thu Jun 25 2009 Ivana Varekova 7.3.6-44 - add the possibility to switch of cron job (#493063) From mschwendt at fedoraproject.org Thu Jul 2 08:59:15 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Thu, 2 Jul 2009 08:59:15 +0000 (UTC) Subject: rpms/audacious-plugins/devel audacious-plugins-1.5.1-mixer-not-ready.patch, 1.1, 1.2 audacious-plugins.spec, 1.46, 1.47 Message-ID: <20090702085915.3B2D911C00E3@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10023 Modified Files: audacious-plugins-1.5.1-mixer-not-ready.patch audacious-plugins.spec Log Message: * Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 - Prevent alsalib mixer crash if mixer isn't ready. audacious-plugins-1.5.1-mixer-not-ready.patch: Index: audacious-plugins-1.5.1-mixer-not-ready.patch =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/audacious-plugins-1.5.1-mixer-not-ready.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- audacious-plugins-1.5.1-mixer-not-ready.patch 29 Jun 2009 19:00:01 -0000 1.1 +++ audacious-plugins-1.5.1-mixer-not-ready.patch 2 Jul 2009 08:59:14 -0000 1.2 @@ -1,6 +1,6 @@ -diff -Nur audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c ---- audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 -+++ audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c 2009-06-29 20:12:36.000000000 +0200 +diff -Nur audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c +--- audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 ++++ audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c 2009-07-02 10:45:48.000000000 +0200 @@ -45,6 +45,7 @@ static snd_mixer_t *amixer = NULL; @@ -9,7 +9,16 @@ diff -Nur audacious-plugins-fedora-1.5.1 static snd_mixer_elem_t * alsaplug_get_mixer_elem_by_name(snd_mixer_t *mixer, gchar *name) -@@ -140,6 +141,8 @@ +@@ -75,6 +76,8 @@ + gint i; + snd_mixer_elem_t *elem; + ++ if (!mixer_ready) ++ return NULL; + if (alsaplug_cfg.mixer_device != NULL) + return alsaplug_get_mixer_elem_by_name(mixer, alsaplug_cfg.mixer_device); + +@@ -140,6 +143,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); @@ -18,15 +27,12 @@ diff -Nur audacious-plugins-fedora-1.5.1 if (elem == NULL) return; -@@ -172,6 +175,11 @@ +@@ -172,6 +177,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); + *l = mixer_left; + *r = mixer_right; -+ if (!mixer_ready) { -+ return; -+ } if (elem == NULL) return; Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/audacious-plugins.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- audacious-plugins.spec 29 Jun 2009 19:00:01 -0000 1.46 +++ audacious-plugins.spec 2 Jul 2009 08:59:14 -0000 1.47 @@ -4,7 +4,7 @@ Name: audacious-plugins Version: 1.5.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Plugins for the Audacious media player Group: Applications/Multimedia @@ -272,6 +272,9 @@ update-desktop-database &> /dev/null || %changelog +* Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 +- Prevent alsalib mixer crash if mixer isn't ready. + * Mon Jun 29 2009 Michael Schwendt - 1.5.1-9 - Use old "ALSA" plugin id for config file. - Keep old mixer level even if mixer isn't ready. From choeger at fedoraproject.org Thu Jul 2 09:00:14 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Thu, 2 Jul 2009 09:00:14 +0000 (UTC) Subject: rpms/offlineimap/devel fix-socket.ssl-deprecation-on-python-2.6.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 offlineimap.spec, 1.21, 1.22 sources, 1.8, 1.9 Message-ID: <20090702090014.336C611C00E3@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10083 Modified Files: .cvsignore offlineimap.spec sources Added Files: fix-socket.ssl-deprecation-on-python-2.6.patch Log Message: update to latest version fix-socket.ssl-deprecation-on-python-2.6.patch: --- NEW FILE fix-socket.ssl-deprecation-on-python-2.6.patch --- commit cc444fcc99d1521e4e4fa1fede27ea3c1c8ff4e2 Author: Christoph H??ger Date: Thu Jul 2 10:19:18 2009 +0200 fix socket.ssl deprecation on python 2.6 Signed-off-by: Christoph H??ger diff --git a/offlineimap/imaplib2.py b/offlineimap/imaplib2.py index 2426754..658c369 100644 --- a/offlineimap/imaplib2.py +++ b/offlineimap/imaplib2.py @@ -35,6 +35,9 @@ __author__ = "Piers Lauder " import binascii, os, Queue, random, re, select, socket, sys, time, threading +# python 2.6 has a new ssl module +if sys.version_info >= (2,6): import ssl + select_module = select # Globals @@ -1664,7 +1667,10 @@ class IMAP4_SSL(IMAP4): self.host = host is not None and host or '' self.port = port is not None and port or IMAP4_SSL_PORT self.sock = self.open_socket() - self.sslobj = socket.ssl(self.sock, self.keyfile, self.certfile) + if sys.version_info < (2,6): + self.sslobj = socket.ssl(self.sock, self.keyfile, self.certfile) + else: + self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile) self.read_fd = self.sock.fileno() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 Dec 2008 12:37:59 -0000 1.8 +++ .cvsignore 2 Jul 2009 08:59:43 -0000 1.9 @@ -1 +1 @@ -offlineimap-6.0.3.tar.gz +offlineimap-6.1.0.tar.gz Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/offlineimap.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- offlineimap.spec 26 Feb 2009 07:55:03 -0000 1.21 +++ offlineimap.spec 2 Jul 2009 08:59:43 -0000 1.22 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: offlineimap -Version: 6.0.3 -Release: 3%{?dist} +Version: 6.1.0 +Release: 1%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support License: GPLv2+ @@ -16,6 +16,8 @@ BuildRequires: docbook-utils BuildArch: noarch +Patch0: fix-socket.ssl-deprecation-on-python-2.6.patch + %description OfflineIMAP is a tool to simplify your e-mail reading. With OfflineIMAP, @@ -30,7 +32,7 @@ not provide disconnected operation. %prep %setup -q -n %name-%version - +%patch0 -p1 %build python setup.py build @@ -61,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Christoph H??ger - 6.1.0-1 +- Update to latest version +- Add a temporary patch for socket.ssl deprecation + * Thu Feb 26 2009 Fedora Release Engineering - 6.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 Dec 2008 12:37:59 -0000 1.8 +++ sources 2 Jul 2009 08:59:44 -0000 1.9 @@ -1 +1 @@ -e425174c935dd5f112201305c9e0fc47 offlineimap-6.0.3.tar.gz +3b1e41d475ef73909d64489b3b2494dd offlineimap-6.1.0.tar.gz From pbrobinson at fedoraproject.org Thu Jul 2 09:03:15 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 2 Jul 2009 09:03:15 +0000 (UTC) Subject: rpms/gobject-introspection/devel gobject-introspection.spec, 1.7, 1.8 Message-ID: <20090702090315.248FB11C00E3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gobject-introspection/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10838 Modified Files: gobject-introspection.spec Log Message: - Update to 0.6.3 Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/gobject-introspection.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gobject-introspection.spec 2 Jun 2009 16:29:29 -0000 1.7 +++ gobject-introspection.spec 2 Jul 2009 09:03:14 -0000 1.8 @@ -2,14 +2,14 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gobject-introspection -Version: 0.6.2 +Version: 0.6.3 Release: 1%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries License: GPLv2+, LGPLv2+, MIT URL: http://live.gnome.org/GObjectIntrospection -Source0: http://ftp.acc.umu.se/pub/GNOME/sources/gobject-introspection/0.6/gobject-introspection-%{version}.tar.bz2 +Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -30,12 +30,6 @@ BuildRequires: fontconfig-devel BuildRequires: libXft-devel BuildRequires: freetype-devel -# For autogen -BuildRequires: gnome-common -BuildRequires: autoconf -BuildRequires: automake -BuildRequires: libtool - %description GObject Introspection can scan C header and source files in order to generate introspection "typelib" files. It also provides an API to examine @@ -70,6 +64,10 @@ chrpath --delete $RPM_BUILD_ROOT%{_bindi # Mistake in upstream automake rm -f $RPM_BUILD_ROOT/%{_bindir}/barapp +# Move the python modules to the correct location +mkdir -p $RPM_BUILD_ROOT/%{python_sitearch} +mv $RPM_BUILD_ROOT/%{_libdir}/gobject-introspection/giscanner $RPM_BUILD_ROOT/%{python_sitearch}/ + %clean rm -rf $RPM_BUILD_ROOT @@ -92,10 +90,14 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %{_bindir}/g-ir-* %{_datadir}/gir-1.0 +%{_datadir}/aclocal/introspection.m4 %{python_sitearch}/giscanner %{_mandir}/man1/*.gz %changelog +* Thu Jul 2 2009 Peter Robinson - 0.6.3-1 +- Update to 0.6.3 + * Mon Jun 1 2009 Dan Williams - 0.6.2-1 - Update to 0.6.2 From choeger at fedoraproject.org Thu Jul 2 09:04:51 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Thu, 2 Jul 2009 09:04:51 +0000 (UTC) Subject: rpms/offlineimap/devel offlineimap.spec,1.22,1.23 Message-ID: <20090702090451.7D51E11C00E3@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11035 Modified Files: offlineimap.spec Log Message: remove README - its gone Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/offlineimap.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- offlineimap.spec 2 Jul 2009 08:59:43 -0000 1.22 +++ offlineimap.spec 2 Jul 2009 09:04:21 -0000 1.23 @@ -54,7 +54,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README COPY* UPGRADING offlineimap.conf* FAQ.html +%doc COPY* UPGRADING offlineimap.conf* FAQ.html %doc debian/changelog %{_bindir}/offlineimap %{python_sitelib}/offlineimap/ From pbrobinson at fedoraproject.org Thu Jul 2 09:10:13 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 2 Jul 2009 09:10:13 +0000 (UTC) Subject: rpms/gobject-introspection/devel .cvsignore, 1.3, 1.4 gobject-introspection.spec, 1.8, 1.9 sources, 1.3, 1.4 Message-ID: <20090702091013.0FFBD11C00E3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gobject-introspection/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12031 Modified Files: .cvsignore gobject-introspection.spec sources Log Message: - Add the new source file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 2 Jun 2009 16:02:41 -0000 1.3 +++ .cvsignore 2 Jul 2009 09:09:42 -0000 1.4 @@ -1,2 +1 @@ -gobject-introspection-0.6.1.tar.bz2 -gobject-introspection-0.6.2.tar.bz2 +gobject-introspection-0.6.3.tar.bz2 Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/gobject-introspection.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gobject-introspection.spec 2 Jul 2009 09:03:14 -0000 1.8 +++ gobject-introspection.spec 2 Jul 2009 09:09:42 -0000 1.9 @@ -3,7 +3,7 @@ Name: gobject-introspection Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.gz %changelog +* Thu Jul 2 2009 Peter Robinson - 0.6.3-2 +- Add the new source file + * Thu Jul 2 2009 Peter Robinson - 0.6.3-1 - Update to 0.6.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 2 Jun 2009 16:02:42 -0000 1.3 +++ sources 2 Jul 2009 09:09:42 -0000 1.4 @@ -1 +1 @@ -53d4dc57f08ea29da84aa095e7229a64 gobject-introspection-0.6.2.tar.bz2 +5f0d333573bffecd76c461101cff2be1 gobject-introspection-0.6.3.tar.bz2 From mhlavink at fedoraproject.org Thu Jul 2 09:19:11 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Thu, 2 Jul 2009 09:19:11 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore, 1.56, 1.57 dovecot-1.1-default-settings.patch, 1.7, 1.8 dovecot.spec, 1.129, 1.130 sources, 1.59, 1.60 Message-ID: <20090702091911.22E1911C00E3@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13670 Modified Files: .cvsignore dovecot-1.1-default-settings.patch dovecot.spec sources Log Message: updated to 1.2.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- .cvsignore 25 Jun 2009 09:10:30 -0000 1.56 +++ .cvsignore 2 Jul 2009 09:18:40 -0000 1.57 @@ -1,4 +1,5 @@ -dovecot-1.2.rc6.tar.gz +dovecot-1.2.0.tar.gz dovecot-1.2-managesieve-0.11.5.tar.gz dovecot-1.2.rc5-managesieve-0.11.5.diff.gz dovecot-sieve-1.1.6.tar.gz +dovecot-1.2-sieve-0.1.6.tar.gz dovecot-1.1-default-settings.patch: Index: dovecot-1.1-default-settings.patch =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot-1.1-default-settings.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dovecot-1.1-default-settings.patch 18 Jun 2009 07:45:57 -0000 1.7 +++ dovecot-1.1-default-settings.patch 2 Jul 2009 09:18:40 -0000 1.8 @@ -1,6 +1,6 @@ -diff -up dovecot-1.2.rc5/dovecot-example.conf.default-settings dovecot-1.2.rc5/dovecot-example.conf ---- dovecot-1.2.rc5/dovecot-example.conf.default-settings 2009-06-18 07:57:44.749562312 +0200 -+++ dovecot-1.2.rc5/dovecot-example.conf 2009-06-18 07:59:15.923499117 +0200 +diff -up dovecot-1.2.0/dovecot-example.conf.default-settings dovecot-1.2.0/dovecot-example.conf +--- dovecot-1.2.0/dovecot-example.conf.default-settings 2009-06-18 09:37:43.000000000 +0200 ++++ dovecot-1.2.0/dovecot-example.conf 2009-07-02 11:08:41.764015626 +0200 @@ -10,18 +10,14 @@ # value inside quotes, eg.: key = "# char and trailing whitespace " @@ -15,15 +15,15 @@ diff -up dovecot-1.2.rc5/dovecot-example # Base directory where to store runtime data. #base_dir = /var/run/dovecot/ - # Protocols we want to be serving: imap imaps pop3 pop3s managesieve + # Protocols we want to be serving: imap imaps pop3 pop3s # If you only want to use dovecot-auth, you can set this to "none". -#protocols = imap imaps +#protocols = imap imaps pop3 pop3s # A space separated list of IP or host addresses where to listen in for # connections. "*" listens in all IPv4 interfaces. "[::]" listens in all IPv6 -@@ -43,13 +39,13 @@ - # listen = *:12000 +@@ -39,13 +35,13 @@ + # listen = *:10100 # .. # } -#listen = * @@ -38,7 +38,7 @@ diff -up dovecot-1.2.rc5/dovecot-example # Should all IMAP and POP3 processes be killed when Dovecot master process # shuts down. Setting this to "no" means that Dovecot can be upgraded without -@@ -96,8 +92,8 @@ +@@ -92,8 +88,8 @@ # dropping root privileges, so keep the key file unreadable by anyone but # root. Included doc/mkcert.sh can be used to easily generate self-signed # certificate, just make sure to update the domains in dovecot-openssl.cnf @@ -49,7 +49,7 @@ diff -up dovecot-1.2.rc5/dovecot-example # If key file is password protected, give the password here. Alternatively # give it when starting dovecot with -p parameter. Since this file is often -@@ -486,7 +482,7 @@ +@@ -482,7 +478,7 @@ # locking methods as well. Some operating systems don't allow using some of # them simultaneously. #mbox_read_locks = fcntl @@ -58,9 +58,9 @@ diff -up dovecot-1.2.rc5/dovecot-example # Maximum time in seconds to wait for lock (all of them) before aborting. #mbox_lock_timeout = 300 -diff -up dovecot-1.2.rc5/src/master/master-settings.c.default-settings dovecot-1.2.rc5/src/master/master-settings.c ---- dovecot-1.2.rc5/src/master/master-settings.c.default-settings 2009-06-18 07:57:44.764499091 +0200 -+++ dovecot-1.2.rc5/src/master/master-settings.c 2009-06-18 07:57:44.774499405 +0200 +diff -up dovecot-1.2.0/src/master/master-settings.c.default-settings dovecot-1.2.0/src/master/master-settings.c +--- dovecot-1.2.0/src/master/master-settings.c.default-settings 2009-06-30 17:18:39.000000000 +0200 ++++ dovecot-1.2.0/src/master/master-settings.c 2009-07-02 11:05:21.101078306 +0200 @@ -178,8 +178,8 @@ struct settings default_settings = { MEMBER(syslog_facility) "mail", Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- dovecot.spec 25 Jun 2009 09:10:30 -0000 1.129 +++ dovecot.spec 2 Jul 2009 09:18:40 -0000 1.130 @@ -1,9 +1,8 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 -Version: 1.2 -%define betaver rc6 -Release: 0.%{betaver}.1%{?dist} +Version: 1.2.0 +Release: 1%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -15,13 +14,14 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 1.1.6 -%define sieve_name dovecot-sieve +%define sieve_version 0.1.6 +%define sieve_name dovecot-1.2-sieve %define managesieve_version 0.11.5 -%define managesieve_name dovecot-%{version}-managesieve +#define managesieve_name dovecot-%{version}-managesieve +%define managesieve_name dovecot-1.2-managesieve URL: http://www.dovecot.org/ -Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.%{betaver}.tar.gz +Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.tar.gz Source1: dovecot.init Source2: dovecot.pam Source3: maildir-migration.txt @@ -29,7 +29,8 @@ Source4: migrate-folders Source5: migrate-users Source6: perfect_maildir.pl Source7: dovecot-REDHAT-FAQ.txt -Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz +#Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz +Source8: http://www.rename-it.nl/dovecot/1.2/%{sieve_name}-%{sieve_version}.tar.gz Source9: dovecot.sysconfig Source10: http://www.rename-it.nl/dovecot/1.2/%{managesieve_name}-%{managesieve_version}.tar.gz Source11: http://www.rename-it.nl/dovecot/1.2/dovecot-%{version}.rc5-managesieve-%{managesieve_version}.diff.gz @@ -166,7 +167,7 @@ This package provides the development fi %prep -%setup -q -n %{name}-%{version}.%{betaver} +%setup -q zcat %{SOURCE11} | patch -p1 --fuzz=0 -s %patch1 -p1 -b .default-settings @@ -174,11 +175,11 @@ zcat %{SOURCE11} | patch -p1 --fuzz=0 -s %patch3 -p1 -b .mkcert-paths %if %{build_sieve} -%setup -q -n %{name}-%{version}.%{betaver} -D -T -a 8 +%setup -q -D -T -a 8 %endif %if %{build_managesieve} -%setup -q -n %{name}-%{version}.%{betaver} -D -T -a 10 +%setup -q -D -T -a 10 %endif %patch4 -p1 -b .managesievetrim @@ -432,6 +433,9 @@ fi %changelog +* Thu Jul 02 2009 Michal Hlavinka - 1:1.2.0-1 +- updated to 1.2.0 + * Thu Jun 25 2009 Michal Hlavinka - 1:1.2-0.rc6.1 - updated to 1.2.rc6 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 25 Jun 2009 09:10:30 -0000 1.59 +++ sources 2 Jul 2009 09:18:40 -0000 1.60 @@ -1,4 +1,5 @@ -6d33021cd7edbf0e7feff058fb0e99ae dovecot-1.2.rc6.tar.gz +b382fa5c6551086568c21567f23e2dc3 dovecot-1.2.0.tar.gz 9b59508d076d96c16e2443e87c308fe4 dovecot-1.2-managesieve-0.11.5.tar.gz 544c086bd3beaf54eacb9245eae81115 dovecot-1.2.rc5-managesieve-0.11.5.diff.gz 7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz +4d9ec0ac3b61c71becc583ccd011a71c dovecot-1.2-sieve-0.1.6.tar.gz From mschwendt at fedoraproject.org Thu Jul 2 09:20:41 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Thu, 2 Jul 2009 09:20:41 +0000 (UTC) Subject: rpms/audacious-plugins/F-10 audacious-plugins-1.5.1-mixer-not-ready.patch, 1.1, 1.2 audacious-plugins.spec, 1.35, 1.36 Message-ID: <20090702092041.56D6B11C00E3@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugins/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14791/F-10 Modified Files: audacious-plugins-1.5.1-mixer-not-ready.patch audacious-plugins.spec Log Message: * Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 - Prevent alsalib mixer crash if mixer isn't ready. audacious-plugins-1.5.1-mixer-not-ready.patch: Index: audacious-plugins-1.5.1-mixer-not-ready.patch =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/F-10/audacious-plugins-1.5.1-mixer-not-ready.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- audacious-plugins-1.5.1-mixer-not-ready.patch 29 Jun 2009 19:05:23 -0000 1.1 +++ audacious-plugins-1.5.1-mixer-not-ready.patch 2 Jul 2009 09:20:41 -0000 1.2 @@ -1,6 +1,6 @@ -diff -Nur audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c ---- audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 -+++ audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c 2009-06-29 20:12:36.000000000 +0200 +diff -Nur audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c +--- audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 ++++ audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c 2009-07-02 10:45:48.000000000 +0200 @@ -45,6 +45,7 @@ static snd_mixer_t *amixer = NULL; @@ -9,7 +9,16 @@ diff -Nur audacious-plugins-fedora-1.5.1 static snd_mixer_elem_t * alsaplug_get_mixer_elem_by_name(snd_mixer_t *mixer, gchar *name) -@@ -140,6 +141,8 @@ +@@ -75,6 +76,8 @@ + gint i; + snd_mixer_elem_t *elem; + ++ if (!mixer_ready) ++ return NULL; + if (alsaplug_cfg.mixer_device != NULL) + return alsaplug_get_mixer_elem_by_name(mixer, alsaplug_cfg.mixer_device); + +@@ -140,6 +143,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); @@ -18,15 +27,12 @@ diff -Nur audacious-plugins-fedora-1.5.1 if (elem == NULL) return; -@@ -172,6 +175,11 @@ +@@ -172,6 +177,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); + *l = mixer_left; + *r = mixer_right; -+ if (!mixer_ready) { -+ return; -+ } if (elem == NULL) return; Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/F-10/audacious-plugins.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- audacious-plugins.spec 29 Jun 2009 19:05:23 -0000 1.35 +++ audacious-plugins.spec 2 Jul 2009 09:20:41 -0000 1.36 @@ -4,7 +4,7 @@ Name: audacious-plugins Version: 1.5.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Plugins for the Audacious media player Group: Applications/Multimedia @@ -272,6 +272,9 @@ update-desktop-database &> /dev/null || %changelog +* Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 +- Prevent alsalib mixer crash if mixer isn't ready. + * Mon Jun 29 2009 Michael Schwendt - 1.5.1-9 - Use old "ALSA" plugin id for config file. - Keep old mixer level even if mixer isn't ready. From mschwendt at fedoraproject.org Thu Jul 2 09:21:11 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Thu, 2 Jul 2009 09:21:11 +0000 (UTC) Subject: rpms/audacious-plugins/F-11 audacious-plugins-1.5.1-mixer-not-ready.patch, 1.1, 1.2 audacious-plugins.spec, 1.37, 1.38 Message-ID: <20090702092111.2EB4D11C00E3@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14791/F-11 Modified Files: audacious-plugins-1.5.1-mixer-not-ready.patch audacious-plugins.spec Log Message: * Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 - Prevent alsalib mixer crash if mixer isn't ready. audacious-plugins-1.5.1-mixer-not-ready.patch: Index: audacious-plugins-1.5.1-mixer-not-ready.patch =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/F-11/audacious-plugins-1.5.1-mixer-not-ready.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- audacious-plugins-1.5.1-mixer-not-ready.patch 29 Jun 2009 19:06:50 -0000 1.1 +++ audacious-plugins-1.5.1-mixer-not-ready.patch 2 Jul 2009 09:20:40 -0000 1.2 @@ -1,6 +1,6 @@ -diff -Nur audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c ---- audacious-plugins-fedora-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 -+++ audacious-plugins-fedora-1.5.1/src/alsa/alsa-core.c 2009-06-29 20:12:36.000000000 +0200 +diff -Nur audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c +--- audacious-plugins-1.5.1-alsa-ng/src/alsa/alsa-core.c 2009-06-29 18:01:20.000000000 +0200 ++++ audacious-plugins-1.5.1-alsa-ng2/src/alsa/alsa-core.c 2009-07-02 10:45:48.000000000 +0200 @@ -45,6 +45,7 @@ static snd_mixer_t *amixer = NULL; @@ -9,7 +9,16 @@ diff -Nur audacious-plugins-fedora-1.5.1 static snd_mixer_elem_t * alsaplug_get_mixer_elem_by_name(snd_mixer_t *mixer, gchar *name) -@@ -140,6 +141,8 @@ +@@ -75,6 +76,8 @@ + gint i; + snd_mixer_elem_t *elem; + ++ if (!mixer_ready) ++ return NULL; + if (alsaplug_cfg.mixer_device != NULL) + return alsaplug_get_mixer_elem_by_name(mixer, alsaplug_cfg.mixer_device); + +@@ -140,6 +143,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); @@ -18,15 +27,12 @@ diff -Nur audacious-plugins-fedora-1.5.1 if (elem == NULL) return; -@@ -172,6 +175,11 @@ +@@ -172,6 +177,8 @@ { snd_mixer_elem_t *elem = alsaplug_guess_mixer_elem(amixer); + *l = mixer_left; + *r = mixer_right; -+ if (!mixer_ready) { -+ return; -+ } if (elem == NULL) return; Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/F-11/audacious-plugins.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- audacious-plugins.spec 29 Jun 2009 19:06:50 -0000 1.37 +++ audacious-plugins.spec 2 Jul 2009 09:20:40 -0000 1.38 @@ -4,7 +4,7 @@ Name: audacious-plugins Version: 1.5.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Plugins for the Audacious media player Group: Applications/Multimedia @@ -272,6 +272,9 @@ update-desktop-database &> /dev/null || %changelog +* Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 +- Prevent alsalib mixer crash if mixer isn't ready. + * Mon Jun 29 2009 Michael Schwendt - 1.5.1-9 - Use old "ALSA" plugin id for config file. - Keep old mixer level even if mixer isn't ready. From harald at fedoraproject.org Thu Jul 2 10:02:54 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Thu, 2 Jul 2009 10:02:54 +0000 (UTC) Subject: rpms/dracut/devel .cvsignore, 1.1, 1.2 dracut.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090702100254.81D5411C00E3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24097 Modified Files: .cvsignore dracut.spec sources Log Message: * Thu Jul 02 2009 Harald Hoyer 0.3-1 - version 0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:08:00 -0000 1.1 +++ .cvsignore 2 Jul 2009 10:02:53 -0000 1.2 @@ -0,0 +1 @@ +dracut-0.3.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dracut.spec 1 Jul 2009 20:24:30 -0000 1.1 +++ dracut.spec 2 Jul 2009 10:02:54 -0000 1.2 @@ -1,7 +1,7 @@ %if 0%{?fedora} < 12 %define with_switch_root 1 %else -%define with_switch_root 0 +%define with_switch_root 1 %endif %if %{defined gittag} @@ -13,7 +13,7 @@ Name: dracut -Version: 0.2 +Version: 0.3 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -44,6 +44,7 @@ Requires: kbd %endif %if ! 0%{?with_switch_root} +Requires: /sbin/switch_root BuildArch: noarch %endif @@ -100,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Thu Jul 02 2009 Harald Hoyer 0.3-1 +- version 0.3 + * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jul 2009 20:24:30 -0000 1.2 +++ sources 2 Jul 2009 10:02:54 -0000 1.3 @@ -1 +1 @@ -96dfe405f4a5bbf95229cc2f96623859 dracut-0.2.tar.bz2 +6a7f08fdd84b288db185b6d2187b4be7 dracut-0.3.tar.bz2 From harald at fedoraproject.org Thu Jul 2 10:03:52 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Thu, 2 Jul 2009 10:03:52 +0000 (UTC) Subject: rpms/dracut/F-11 .cvsignore, 1.2, 1.3 dracut.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090702100352.C82C811C00E3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24290 Modified Files: .cvsignore dracut.spec sources Log Message: * Thu Jul 02 2009 Harald Hoyer 0.3-1 - version 0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jul 2009 20:23:12 -0000 1.2 +++ .cvsignore 2 Jul 2009 10:03:22 -0000 1.3 @@ -1 +1 @@ -dracut-0.2.tar.bz2 +dracut-0.3.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/dracut.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dracut.spec 1 Jul 2009 20:23:12 -0000 1.1 +++ dracut.spec 2 Jul 2009 10:03:22 -0000 1.2 @@ -1,7 +1,7 @@ %if 0%{?fedora} < 12 %define with_switch_root 1 %else -%define with_switch_root 0 +%define with_switch_root 1 %endif %if %{defined gittag} @@ -13,7 +13,7 @@ Name: dracut -Version: 0.2 +Version: 0.3 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -44,6 +44,7 @@ Requires: kbd %endif %if ! 0%{?with_switch_root} +Requires: /sbin/switch_root BuildArch: noarch %endif @@ -100,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Thu Jul 02 2009 Harald Hoyer 0.3-1 +- version 0.3 + * Wed Jul 01 2009 Harald Hoyer 0.2-1 - version 0.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jul 2009 20:23:12 -0000 1.2 +++ sources 2 Jul 2009 10:03:22 -0000 1.3 @@ -1 +1 @@ -96dfe405f4a5bbf95229cc2f96623859 dracut-0.2.tar.bz2 +6a7f08fdd84b288db185b6d2187b4be7 dracut-0.3.tar.bz2 From chitlesh at fedoraproject.org Thu Jul 2 10:09:33 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 2 Jul 2009 10:09:33 +0000 (UTC) Subject: comps comps-f12.xml.in,1.22,1.23 Message-ID: <20090702100933.0409311C00E3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25440 Modified Files: comps-f12.xml.in Log Message: added gnu8085sim, eclipse-veditor into FEL group Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- comps-f12.xml.in 1 Jul 2009 07:44:15 -0000 1.22 +++ comps-f12.xml.in 2 Jul 2009 10:09:02 -0000 1.23 @@ -1178,6 +1178,7 @@ eclipse-rpmstubby eclipse-shelled eclipse-slide + eclipse-veditor @@ -1275,6 +1276,7 @@ dinotrace drawtiming electric + eclipse-veditor gds2pov geda-docs geda-examples @@ -1287,6 +1289,7 @@ gerbv ghdl gnucap + gnusim8085 gresistor gsim85 gspiceui @@ -1327,6 +1330,7 @@ qucs sdcc sk2py + tetex-IEEEtran tkcvs toped uisp From palango at fedoraproject.org Thu Jul 2 10:22:00 2009 From: palango at fedoraproject.org (palango) Date: Thu, 2 Jul 2009 10:22:00 +0000 (UTC) Subject: rpms/banshee-mirage/devel banshee-mirage-locales-conflict.patch, NONE, 1.1 banshee-mirage.spec, 1.4, 1.5 Message-ID: <20090702102200.AC52211C00E3@cvs1.fedora.phx.redhat.com> Author: palango Update of /cvs/pkgs/rpms/banshee-mirage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28629 Modified Files: banshee-mirage.spec Added Files: banshee-mirage-locales-conflict.patch Log Message: fix bug #506145 banshee-mirage-locales-conflict.patch: --- NEW FILE banshee-mirage-locales-conflict.patch --- # fix for https://bugzilla.redhat.com/show_bug.cgi?id=506145 diff -uraN mirage-0.5.0.orig/configure.ac mirage-0.5.0/configure.ac --- mirage-0.5.0.orig/configure.ac 2009-07-01 19:11:40.780036448 +0200 +++ mirage-0.5.0/configure.ac 2009-07-01 19:12:16.891267070 +0200 @@ -14,7 +14,7 @@ AC_PROG_LIBTOOL IT_PROG_INTLTOOL([0.35.0]) -GETTEXT_PACKAGE=mirage +GETTEXT_PACKAGE=banshee-mirage AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext Package]) AM_GLIB_GNU_GETTEXT Index: banshee-mirage.spec =================================================================== RCS file: /cvs/pkgs/rpms/banshee-mirage/devel/banshee-mirage.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- banshee-mirage.spec 15 Jun 2009 01:02:46 -0000 1.4 +++ banshee-mirage.spec 2 Jul 2009 10:21:30 -0000 1.5 @@ -2,12 +2,13 @@ Name: banshee-mirage Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An Automatic Playlist Generation Extension for Banshee Group: Applications/Multimedia License: GPLv2+ URL: http://hop.at/mirage/ Source0: http://hop.at/mirage/download/mirage-%{version}.tar.gz +Patch0: banshee-mirage-locales-conflict.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gettext-devel, glib2-devel, mono-devel, banshee-devel, banshee-musicbrainz-devel, fftw-devel, libsamplerate-devel, intltool, taglib-sharp-devel, mono-addins-devel, sqlite-devel, gstreamer-devel, gstreamer-plugins-base-devel, make, ndesk-dbus-glib-devel, ndesk-dbus-devel, gtk-sharp2-devel @@ -19,6 +20,7 @@ An Automatic Playlist Generation Extensi %prep %setup -q -n mirage-%{version} +%patch0 -p1 -b banshee-mirage-locales-conflict.patch %build %configure @@ -34,12 +36,12 @@ find %{buildroot} -name '*.a' -exec rm - strip --strip-unneeded %{buildroot}/%{_libdir}/libmirageaudio.so -%find_lang mirage +%find_lang %{name} %clean %{__rm} -rf %{buildroot} -%files -f mirage.lang +%files -f %{name}.lang %defattr(-,root,root,-) %doc COPYING README %{_libdir}/banshee-1/Extensions/Banshee.Mirage.* @@ -47,6 +49,9 @@ strip --strip-unneeded %{buildroot}/%{_l %{_libdir}/libmirageaudio.so %changelog +* Thu Jul 02 2009 Paul Lange - 0.5.0-3 +- Fix translation conflicts with mirage (#506145) + * Sun Jun 14 2009 Paul Lange - 0.5.0-2 - Disable ppc64 target From schwab at fedoraproject.org Thu Jul 2 10:22:09 2009 From: schwab at fedoraproject.org (Andreas Schwab) Date: Thu, 2 Jul 2009 10:22:09 +0000 (UTC) Subject: rpms/glibc/devel glibc.spec,1.394,1.395 Message-ID: <20090702102209.82A3E11C00E3@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28753 Modified Files: glibc.spec Log Message: 2.10.90-2 Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.394 retrieving revision 1.395 diff -u -p -r1.394 -r1.395 --- glibc.spec 26 Jun 2009 15:46:27 -0000 1.394 +++ glibc.spec 2 Jul 2009 10:22:09 -0000 1.395 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-125-g44d20bc +%define glibcsrcdir glibc-2.10-131-g2fd0cd8 %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 1 +Release: 2 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -1024,6 +1024,9 @@ rm -f *.filelist* %endif %changelog +* Thu Jul 2 2009 Andreas Schwab 2.10.90-2 +- Update from master. + * Thu Jun 26 2009 Andreas Schwab 2.10.90-1 - Update from master. - Enable multi-arch support on x86/x86-64. From schwab at fedoraproject.org Thu Jul 2 10:22:48 2009 From: schwab at fedoraproject.org (Andreas Schwab) Date: Thu, 2 Jul 2009 10:22:48 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.271, 1.272 glibc-fedora.patch, 1.304, 1.305 sources, 1.296, 1.297 Message-ID: <20090702102248.14DE211C00E3@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28948 Modified Files: .cvsignore glibc-fedora.patch sources Log Message: 2.10.90-2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.271 retrieving revision 1.272 diff -u -p -r1.271 -r1.272 --- .cvsignore 26 Jun 2009 15:46:26 -0000 1.271 +++ .cvsignore 2 Jul 2009 10:22:47 -0000 1.272 @@ -1,2 +1,2 @@ -glibc-2.10-125-g44d20bc-fedora.tar.bz2 -glibc-2.10-125-g44d20bc.tar.bz2 +glibc-2.10-131-g2fd0cd8-fedora.tar.bz2 +glibc-2.10-131-g2fd0cd8.tar.bz2 glibc-fedora.patch: Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.304 retrieving revision 1.305 diff -u -p -r1.304 -r1.305 --- glibc-fedora.patch 26 Jun 2009 15:46:27 -0000 1.304 +++ glibc-fedora.patch 2 Jul 2009 10:22:47 -0000 1.305 @@ -1,6 +1,9 @@ ---- glibc-2.10-125-g44d20bc/ChangeLog -+++ glibc-2.10.90-1/ChangeLog -@@ -1,3 +1,13 @@ +--- glibc-2.10-131-g2fd0cd8/ChangeLog ++++ glibc-2.10.90-2/ChangeLog +@@ -21,6 +21,16 @@ + out common code into new function get_common_indeces. Determine + extended family and model for Intel processors. + +2009-06-26 Andreas Schwab + + * timezone/zic.c (stringzone): Don't try to generate a POSIX TZ @@ -14,7 +17,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8396,6 +8406,13 @@ +@@ -8419,6 +8429,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -28,7 +31,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -8691,6 +8708,10 @@ +@@ -8714,6 +8731,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -39,7 +42,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -9948,6 +9969,15 @@ +@@ -9971,6 +9992,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -55,8 +58,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-125-g44d20bc/ChangeLog.15 -+++ glibc-2.10.90-1/ChangeLog.15 +--- glibc-2.10-131-g2fd0cd8/ChangeLog.15 ++++ glibc-2.10.90-2/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -122,8 +125,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-125-g44d20bc/ChangeLog.16 -+++ glibc-2.10.90-1/ChangeLog.16 +--- glibc-2.10-131-g2fd0cd8/ChangeLog.16 ++++ glibc-2.10.90-2/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -295,8 +298,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-125-g44d20bc/csu/Makefile -+++ glibc-2.10.90-1/csu/Makefile +--- glibc-2.10-131-g2fd0cd8/csu/Makefile ++++ glibc-2.10.90-2/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -307,8 +310,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-125-g44d20bc/csu/elf-init.c -+++ glibc-2.10.90-1/csu/elf-init.c +--- glibc-2.10-131-g2fd0cd8/csu/elf-init.c ++++ glibc-2.10.90-2/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -333,8 +336,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-125-g44d20bc/debug/tst-chk1.c -+++ glibc-2.10.90-1/debug/tst-chk1.c +--- glibc-2.10-131-g2fd0cd8/debug/tst-chk1.c ++++ glibc-2.10.90-2/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -363,8 +366,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-125-g44d20bc/elf/ldconfig.c -+++ glibc-2.10.90-1/elf/ldconfig.c +--- glibc-2.10-131-g2fd0cd8/elf/ldconfig.c ++++ glibc-2.10.90-2/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -446,8 +449,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-125-g44d20bc/elf/tst-stackguard1.c -+++ glibc-2.10.90-1/elf/tst-stackguard1.c +--- glibc-2.10-131-g2fd0cd8/elf/tst-stackguard1.c ++++ glibc-2.10.90-2/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -472,16 +475,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-125-g44d20bc/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-1/include/bits/stdlib-ldbl.h +--- glibc-2.10-131-g2fd0cd8/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-2/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-125-g44d20bc/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-1/include/bits/wchar-ldbl.h +--- glibc-2.10-131-g2fd0cd8/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-2/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-125-g44d20bc/include/features.h -+++ glibc-2.10.90-1/include/features.h +--- glibc-2.10-131-g2fd0cd8/include/features.h ++++ glibc-2.10.90-2/include/features.h @@ -299,8 +299,13 @@ #endif @@ -498,8 +501,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-125-g44d20bc/intl/locale.alias -+++ glibc-2.10.90-1/intl/locale.alias +--- glibc-2.10-131-g2fd0cd8/intl/locale.alias ++++ glibc-2.10.90-2/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -509,8 +512,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-125-g44d20bc/libio/stdio.h -+++ glibc-2.10.90-1/libio/stdio.h +--- glibc-2.10-131-g2fd0cd8/libio/stdio.h ++++ glibc-2.10.90-2/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -524,8 +527,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-125-g44d20bc/locale/iso-4217.def -+++ glibc-2.10.90-1/locale/iso-4217.def +--- glibc-2.10-131-g2fd0cd8/locale/iso-4217.def ++++ glibc-2.10.90-2/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -617,8 +620,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-125-g44d20bc/locale/programs/locarchive.c -+++ glibc-2.10.90-1/locale/programs/locarchive.c +--- glibc-2.10-131-g2fd0cd8/locale/programs/locarchive.c ++++ glibc-2.10.90-2/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -650,8 +653,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-125-g44d20bc/localedata/Makefile -+++ glibc-2.10.90-1/localedata/Makefile +--- glibc-2.10-131-g2fd0cd8/localedata/Makefile ++++ glibc-2.10.90-2/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -660,8 +663,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-125-g44d20bc/localedata/SUPPORTED -+++ glibc-2.10.90-1/localedata/SUPPORTED +--- glibc-2.10-131-g2fd0cd8/localedata/SUPPORTED ++++ glibc-2.10.90-2/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -703,8 +706,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-125-g44d20bc/localedata/locales/cy_GB -+++ glibc-2.10.90-1/localedata/locales/cy_GB +--- glibc-2.10-131-g2fd0cd8/localedata/locales/cy_GB ++++ glibc-2.10.90-2/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -719,8 +722,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-125-g44d20bc/localedata/locales/en_GB -+++ glibc-2.10.90-1/localedata/locales/en_GB +--- glibc-2.10-131-g2fd0cd8/localedata/locales/en_GB ++++ glibc-2.10.90-2/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -732,8 +735,8 @@ date_fmt "/ / " ---- glibc-2.10-125-g44d20bc/localedata/locales/no_NO -+++ glibc-2.10.90-1/localedata/locales/no_NO +--- glibc-2.10-131-g2fd0cd8/localedata/locales/no_NO ++++ glibc-2.10.90-2/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -804,8 +807,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-125-g44d20bc/localedata/locales/zh_TW -+++ glibc-2.10.90-1/localedata/locales/zh_TW +--- glibc-2.10-131-g2fd0cd8/localedata/locales/zh_TW ++++ glibc-2.10.90-2/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -833,8 +836,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-125-g44d20bc/malloc/mcheck.c -+++ glibc-2.10.90-1/malloc/mcheck.c +--- glibc-2.10-131-g2fd0cd8/malloc/mcheck.c ++++ glibc-2.10.90-2/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -910,8 +913,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-125-g44d20bc/manual/libc.texinfo -+++ glibc-2.10.90-1/manual/libc.texinfo +--- glibc-2.10-131-g2fd0cd8/manual/libc.texinfo ++++ glibc-2.10.90-2/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -921,8 +924,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-125-g44d20bc/misc/sys/cdefs.h -+++ glibc-2.10.90-1/misc/sys/cdefs.h +--- glibc-2.10-131-g2fd0cd8/misc/sys/cdefs.h ++++ glibc-2.10.90-2/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -966,16 +969,16 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-125-g44d20bc/nis/nss -+++ glibc-2.10.90-1/nis/nss +--- glibc-2.10-131-g2fd0cd8/nis/nss ++++ glibc-2.10.90-2/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-125-g44d20bc/nptl/ChangeLog -+++ glibc-2.10.90-1/nptl/ChangeLog +--- glibc-2.10-131-g2fd0cd8/nptl/ChangeLog ++++ glibc-2.10.90-2/nptl/ChangeLog @@ -3524,6 +3524,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -1016,8 +1019,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-125-g44d20bc/nptl/Makefile -+++ glibc-2.10.90-1/nptl/Makefile +--- glibc-2.10-131-g2fd0cd8/nptl/Makefile ++++ glibc-2.10.90-2/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1050,8 +1053,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-125-g44d20bc/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-1/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-131-g2fd0cd8/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-2/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1060,8 +1063,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-125-g44d20bc/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-1/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-131-g2fd0cd8/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-2/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1069,8 +1072,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-125-g44d20bc/nptl/tst-stackguard1.c -+++ glibc-2.10.90-1/nptl/tst-stackguard1.c +--- glibc-2.10-131-g2fd0cd8/nptl/tst-stackguard1.c ++++ glibc-2.10.90-2/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1095,8 +1098,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-125-g44d20bc/nscd/nscd.conf -+++ glibc-2.10.90-1/nscd/nscd.conf +--- glibc-2.10-131-g2fd0cd8/nscd/nscd.conf ++++ glibc-2.10.90-2/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1106,8 +1109,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-125-g44d20bc/nscd/nscd.init -+++ glibc-2.10.90-1/nscd/nscd.init +--- glibc-2.10-131-g2fd0cd8/nscd/nscd.init ++++ glibc-2.10.90-2/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1164,8 +1167,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-125-g44d20bc/posix/Makefile -+++ glibc-2.10.90-1/posix/Makefile +--- glibc-2.10-131-g2fd0cd8/posix/Makefile ++++ glibc-2.10.90-2/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1186,8 +1189,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-125-g44d20bc/posix/getconf.speclist.h -+++ glibc-2.10.90-1/posix/getconf.speclist.h +--- glibc-2.10-131-g2fd0cd8/posix/getconf.speclist.h ++++ glibc-2.10.90-2/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1228,8 +1231,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-125-g44d20bc/streams/Makefile -+++ glibc-2.10.90-1/streams/Makefile +--- glibc-2.10-131-g2fd0cd8/streams/Makefile ++++ glibc-2.10.90-2/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1239,8 +1242,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-125-g44d20bc/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-1/sysdeps/generic/dl-cache.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-2/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1256,8 +1259,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-125-g44d20bc/sysdeps/i386/Makefile -+++ glibc-2.10.90-1/sysdeps/i386/Makefile +--- glibc-2.10-131-g2fd0cd8/sysdeps/i386/Makefile ++++ glibc-2.10.90-2/sysdeps/i386/Makefile @@ -64,6 +64,14 @@ endif ifneq (,$(filter -mno-tls-direct-seg-refs,$(CFLAGS))) @@ -1273,8 +1276,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-125-g44d20bc/sysdeps/ia64/Makefile -+++ glibc-2.10.90-1/sysdeps/ia64/Makefile +--- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/Makefile ++++ glibc-2.10.90-2/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1286,8 +1289,8 @@ endif endif ---- glibc-2.10-125-g44d20bc/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-1/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-2/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1639,8 +1642,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-125-g44d20bc/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-1/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-2/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1726,8 +1729,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-125-g44d20bc/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-1/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-2/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1745,8 +1748,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-125-g44d20bc/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-1/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-2/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1755,8 +1758,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-125-g44d20bc/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-1/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-2/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1774,8 +1777,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-125-g44d20bc/sysdeps/unix/nice.c -+++ glibc-2.10.90-1/sysdeps/unix/nice.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/nice.c ++++ glibc-2.10.90-2/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1790,8 +1793,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1807,8 +1810,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1856,8 +1859,8 @@ } else #endif ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1900,8 +1903,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1920,8 +1923,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -1982,8 +1985,8 @@ + } while (0) + +#include_next ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2016,29 +2019,29 @@ + } while (0) + #include_next ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2064,8 +2067,8 @@ struct netlink_res { ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2075,8 +2078,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2122,8 +2125,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-125-g44d20bc/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-1/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2142,8 +2145,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-125-g44d20bc/timezone/zic.c -+++ glibc-2.10.90-1/timezone/zic.c +--- glibc-2.10-131-g2fd0cd8/timezone/zic.c ++++ glibc-2.10.90-2/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.296 retrieving revision 1.297 diff -u -p -r1.296 -r1.297 --- sources 26 Jun 2009 15:46:27 -0000 1.296 +++ sources 2 Jul 2009 10:22:47 -0000 1.297 @@ -1,2 +1,2 @@ -c73a8955c88d4c2eab27905297ab256c glibc-2.10-125-g44d20bc-fedora.tar.bz2 -b25495976286f19a0aa654744d57930d glibc-2.10-125-g44d20bc.tar.bz2 +a8a59dbfbdb7a5a0e6ce27ce590f0f13 glibc-2.10-131-g2fd0cd8-fedora.tar.bz2 +6392e85caaafd28eb49273e8cd6a14f9 glibc-2.10-131-g2fd0cd8.tar.bz2 From pbrobinson at fedoraproject.org Thu Jul 2 10:29:49 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 2 Jul 2009 10:29:49 +0000 (UTC) Subject: rpms/gir-repository/devel .cvsignore, 1.3, 1.4 gir-repository.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090702102949.64E2211C00E3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30250 Modified Files: .cvsignore gir-repository.spec sources Log Message: - Update to 0.6.3 release. Require matching gobject-introspection version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 30 Jun 2009 13:43:39 -0000 1.3 +++ .cvsignore 2 Jul 2009 10:29:19 -0000 1.4 @@ -1 +1 @@ -gir-repository-0.6.4-20090630-9c3012a0.tar.gz +gir-repository-0.6.3.tar.bz2 Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gir-repository.spec 30 Jun 2009 13:43:39 -0000 1.2 +++ gir-repository.spec 2 Jul 2009 10:29:19 -0000 1.3 @@ -1,16 +1,15 @@ Name: gir-repository -Version: 0.6.4 -Release: 2.git20090630.9c3012a0%{?dist} +Version: 0.6.3 +Release: 1%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries License: LGPLv2+ URL: http://live.gnome.org/GObjectIntrospection -# SVN snapshot, see http://svn.gnome.org/svn/gir-repository -Source0: gir-repository-%{version}-20090630-9c3012a0.tar.gz +Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gobject-introspection-devel +BuildRequires: gobject-introspection-devel = %{version} BuildRequires: GConf2-devel BuildRequires: libsoup-devel BuildRequires: gnome-keyring-devel @@ -26,12 +25,7 @@ BuildRequires: gstreamer-devel BuildRequires: gssdp-devel BuildRequires: gupnp-devel BuildRequires: avahi-gobject-devel - -# Autogoo -BuildRequires: gnome-common -BuildRequires: autoconf -BuildRequires: automake -BuildRequires: libtool +BuildRequires: babl-devel %description Introspection system for GNOME libraries; see the gobject-introspection package. @@ -46,10 +40,9 @@ Requires: gobject-introspection-devel Libraries and headers for gir-repository %prep -%setup -q -c +%setup -q %build -./autogen.sh %configure make @@ -72,12 +65,15 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %{_libdir}/lib*.so -%{_libdir}/girepository/*.typelib +%{_libdir}/girepository-1.0/*.typelib %files devel %defattr(-,root,root) -%{_datadir}/gir/*.gir +%{_datadir}/gir-1.0/*.gir %changelog +* Thu Jul 2 2009 Peter Robinson +- Update to 0.6.3 release. Require matching gobject-introspection version + * Fri Oct 31 2008 Colin Walters - Create spec goo Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 30 Jun 2009 13:43:39 -0000 1.3 +++ sources 2 Jul 2009 10:29:19 -0000 1.4 @@ -1 +1 @@ -2535b277ab22d7f83081b6929b1a774d gir-repository-0.6.4-20090630-9c3012a0.tar.gz +19ace20592762312932d5b01b3dc289a gir-repository-0.6.3.tar.bz2 From epienbro at fedoraproject.org Thu Jul 2 10:40:06 2009 From: epienbro at fedoraproject.org (epienbro) Date: Thu, 2 Jul 2009 10:40:06 +0000 (UTC) Subject: rpms/mingw32-libgnurx/F-10 mingw32-libgnurx.spec,1.1,1.2 Message-ID: <20090702104006.9DFFD11C00E3@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/mingw32-libgnurx/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32126/F-10 Modified Files: mingw32-libgnurx.spec Log Message: * Thu Jul 2 2009 Erik van Pienbroek - 2.5.1-3 - The libtool .la file referenced to the wrong file. Fixed. BZ #509258 Index: mingw32-libgnurx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libgnurx/F-10/mingw32-libgnurx.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-libgnurx.spec 2 Jun 2009 14:58:35 -0000 1.1 +++ mingw32-libgnurx.spec 2 Jul 2009 10:39:36 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-libgnurx Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Regex library License: LGPLv2+ @@ -73,6 +73,7 @@ make DESTDIR=$RPM_BUILD_ROOT install mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.a $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.a mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.dll.a $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.dll.a mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.la $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.la +sed -i s/gnurx/regex/ $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.la # Drop the man pages rm -rf $RPM_BUILD_ROOT%{_mingw32_datadir}/man @@ -96,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Erik van Pienbroek - 2.5.1-3 +- The libtool .la file referenced to the wrong file. Fixed. BZ #509258 + * Tue May 26 2009 Erik van Pienbroek - 2.5.1-2 - Fixed license tag From epienbro at fedoraproject.org Thu Jul 2 10:40:06 2009 From: epienbro at fedoraproject.org (epienbro) Date: Thu, 2 Jul 2009 10:40:06 +0000 (UTC) Subject: rpms/mingw32-libgnurx/F-11 mingw32-libgnurx.spec,1.1,1.2 Message-ID: <20090702104006.BB0DE11C00E3@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/mingw32-libgnurx/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32126/F-11 Modified Files: mingw32-libgnurx.spec Log Message: * Thu Jul 2 2009 Erik van Pienbroek - 2.5.1-3 - The libtool .la file referenced to the wrong file. Fixed. BZ #509258 Index: mingw32-libgnurx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libgnurx/F-11/mingw32-libgnurx.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-libgnurx.spec 2 Jun 2009 14:58:36 -0000 1.1 +++ mingw32-libgnurx.spec 2 Jul 2009 10:39:36 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-libgnurx Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Regex library License: LGPLv2+ @@ -73,6 +73,7 @@ make DESTDIR=$RPM_BUILD_ROOT install mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.a $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.a mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.dll.a $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.dll.a mv $RPM_BUILD_ROOT%{_mingw32_libdir}/libgnurx.la $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.la +sed -i s/gnurx/regex/ $RPM_BUILD_ROOT%{_mingw32_libdir}/libregex.la # Drop the man pages rm -rf $RPM_BUILD_ROOT%{_mingw32_datadir}/man @@ -96,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Erik van Pienbroek - 2.5.1-3 +- The libtool .la file referenced to the wrong file. Fixed. BZ #509258 + * Tue May 26 2009 Erik van Pienbroek - 2.5.1-2 - Fixed license tag From than at fedoraproject.org Thu Jul 2 10:43:13 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 10:43:13 +0000 (UTC) Subject: rpms/qt/devel .cvsignore, 1.59, 1.60 qt.spec, 1.300, 1.301 sources, 1.60, 1.61 Message-ID: <20090702104313.69E1E11C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv467 Modified Files: .cvsignore qt.spec sources Log Message: - pregenerate PNG, drop BR on GraphicsMagick (bz#509244) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/qt/devel/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 26 Jun 2009 00:41:07 -0000 1.59 +++ .cvsignore 2 Jul 2009 10:43:12 -0000 1.60 @@ -3,3 +3,9 @@ hi48-app-qt4-logo.png gstreamer-logo.svg qt-x11-opensource-src-4.5.2.tar.bz2 qt-copy-patches-20090626svn.tar.bz2 +hi128-phonon-gstreamer.png +hi16-phonon-gstreamer.png +hi22-phonon-gstreamer.png +hi32-phonon-gstreamer.png +hi48-phonon-gstreamer.png +hi64-phonon-gstreamer.png Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/devel/qt.spec,v retrieving revision 1.300 retrieving revision 1.301 diff -u -p -r1.300 -r1.301 --- qt.spec 26 Jun 2009 01:33:19 -0000 1.300 +++ qt.spec 2 Jul 2009 10:43:13 -0000 1.301 @@ -12,7 +12,7 @@ Epoch: 1 Name: qt4 %endif Version: 4.5.2 -Release: 2%{?dist} +Release: 3%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -72,6 +72,12 @@ Source1: qt-copy-patches-svn_checkout.sh %{?qt_copy:Provides: qt4-copy = %{qt_copy}} Source10: http://gstreamer.freedesktop.org/data/images/artwork/gstreamer-logo.svg +Source11: hi16-phonon-gstreamer.png +Source12: hi22-phonon-gstreamer.png +Source13: hi32-phonon-gstreamer.png +Source14: hi48-phonon-gstreamer.png +Source15: hi64-phonon-gstreamer.png +Source16: hi128-phonon-gstreamer.png Source20: assistant.desktop Source21: designer.desktop @@ -164,8 +170,6 @@ BuildRequires: mysql-devel >= 4.0 %if "%{?phonon_backend}" == "-phonon-backend" BuildRequires: gstreamer-devel BuildRequires: gstreamer-plugins-base-devel -# icon-generation -BuildRequires: GraphicsMagick %endif %if "%{?gtkstyle}" == "-gtkstyle" @@ -655,11 +659,12 @@ popd %if "%{?phonon_backend}" == "-phonon-backend" install -D -m 0644 %{SOURCE10} %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/phonon-gstreamer.svg -for i in 16 22 32 48 64 128; do - mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${i}x${i}/apps - gm convert -background None -geometry ${i}x${i} %{SOURCE10} %{buildroot}%{_datadir}/icons/hicolor/${i}x${i}/apps/phonon-gstreamer.png - touch --reference %{SOURCE10} %{buildroot}%{_datadir}/icons/hicolor/${i}x${i}/apps/phonon-gstreamer.png -done +install -D -m 0644 %{SOURCE11} %{buildroot}%{_datadir}/icons/hicolor/16x16/apps/phonon-gstreamer.png +install -D -m 0644 %{SOURCE12} %{buildroot}%{_datadir}/icons/hicolor/22x22/apps/phonon-gstreamer.png +install -D -m 0644 %{SOURCE13} %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/phonon-gstreamer.png +install -D -m 0644 %{SOURCE14} %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/phonon-gstreamer.png +install -D -m 0644 %{SOURCE15} %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/phonon-gstreamer.png +install -D -m 0644 %{SOURCE16} %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/phonon-gstreamer.png %endif @@ -909,6 +914,9 @@ fi %{_datadir}/icons/hicolor/*/apps/qt4-logo.* %changelog +* Thu Jul 02 2009 Than Ngo - 4.5.2-3 +- pregenerate PNG, drop BR on GraphicsMagick (bz#509244) + * Fri Jun 26 2009 Kevin Kofler - 4.5.2-2 - take current qt-copy-patches snapshot (20090626) - disable patches which are already in 4.5.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/qt/devel/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 26 Jun 2009 00:41:07 -0000 1.60 +++ sources 2 Jul 2009 10:43:13 -0000 1.61 @@ -3,3 +3,9 @@ d9f511e4b51983b4e10eb58b320416d5 hi128- 8e3924f417fea67f72b2105faed2119c gstreamer-logo.svg 28a7e8ac9805a6f614d2a27ee1a6ac9d qt-x11-opensource-src-4.5.2.tar.bz2 9865efce56f62a441a76626226b5f946 qt-copy-patches-20090626svn.tar.bz2 +60de9d7e1cddd019f09fd036f0e5413a hi128-phonon-gstreamer.png +7ca265e0cf75b3b4c81e1490d3dba3be hi16-phonon-gstreamer.png +0a9f69d901aded140d4fed969c22e14f hi22-phonon-gstreamer.png +12db12c009b722a6dc141f78feb7e330 hi32-phonon-gstreamer.png +86c34a1b81d44980b1381f94ed6b7a23 hi48-phonon-gstreamer.png +153505c71ec021b0a3bd4b74f2492e93 hi64-phonon-gstreamer.png From than at fedoraproject.org Thu Jul 2 10:48:59 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 10:48:59 +0000 (UTC) Subject: rpms/qt/F-11 qt-copy-20090626-qt452.patch, NONE, 1.1 qt-x11-opensource-src-4.5.2-qdoc3.patch, NONE, 1.1 qt.spec, 1.271, 1.272 sources, 1.59, 1.60 qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch, 1.1, NONE Message-ID: <20090702104859.4A9EE11C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1562 Modified Files: qt.spec sources Added Files: qt-copy-20090626-qt452.patch qt-x11-opensource-src-4.5.2-qdoc3.patch Removed Files: qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch Log Message: 4.5.2 qt-copy-20090626-qt452.patch: --- NEW FILE qt-copy-20090626-qt452.patch --- diff -ur qt-copy/patches/0274-shm-native-image-fix.diff qt-copy-qt452/patches/0274-shm-native-image-fix.diff --- qt-copy/patches/0274-shm-native-image-fix.diff 2009-03-03 11:46:54.000000000 +0100 +++ qt-copy-qt452/patches/0274-shm-native-image-fix.diff 2009-06-26 03:26:36.000000000 +0200 @@ -15,15 +15,19 @@ =================================================================== --- src/gui/kernel/qapplication_x11.cpp (revision 934506) +++ src/gui/kernel/qapplication_x11.cpp (working copy) -@@ -1943,7 +1943,7 @@ void qt_init(QApplicationPrivate *priv, - // to determine whether the display is local or not (not 100 % accurate) +@@ -1955,9 +1955,9 @@ bool local = displayName.isEmpty() || displayName.lastIndexOf(QLatin1Char(':')) == 0; - if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) -- X11->use_mitshm = mitshm_pixmaps; -+ X11->use_mitshm = true; + if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) { + Visual *defaultVisual = DefaultVisual(X11->display, DefaultScreen(X11->display)); +- X11->use_mitshm = mitshm_pixmaps && (defaultVisual->red_mask == 0xff0000 +- && defaultVisual->green_mask == 0xff00 +- && defaultVisual->blue_mask == 0xff); ++ X11->use_mitshm = defaultVisual->red_mask == 0xff0000 ++ && defaultVisual->green_mask == 0xff00 ++ && defaultVisual->blue_mask == 0xff; + } } #endif // QT_NO_MITSHM - Index: src/gui/image/qnativeimage_p.h =================================================================== --- src/gui/image/qnativeimage_p.h (revision 930645) qt-x11-opensource-src-4.5.2-qdoc3.patch: --- NEW FILE qt-x11-opensource-src-4.5.2-qdoc3.patch --- diff -up qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro --- qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro 2009-06-25 13:21:10.000000000 +0200 @@ -99,3 +99,7 @@ SOURCES += apigenerator.cpp \ webxmlgenerator.cpp \ yyindent.cpp +TARGET= qdoc3 +target.path = $$[QT_INSTALL_BINS] +INSTALLS += target + diff -up qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/tools.pro --- qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/tools.pro 2009-06-25 13:19:55.000000000 +0200 @@ -13,6 +13,7 @@ no-png { SUBDIRS += designer } SUBDIRS += linguist + SUBDIRS += qdoc3 wince*: SUBDIRS = qtestlib designer unix:!mac:!embedded:contains(QT_CONFIG, qt3support):SUBDIRS += qtconfig win32:!wince*:SUBDIRS += activeqt Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-11/qt.spec,v retrieving revision 1.271 retrieving revision 1.272 diff -u -p -r1.271 -r1.272 --- qt.spec 30 May 2009 17:39:44 -0000 1.271 +++ qt.spec 2 Jul 2009 10:48:58 -0000 1.272 @@ -11,8 +11,8 @@ Epoch: 1 %else Name: qt4 %endif -Version: 4.5.1 -Release: 13%{?dist} +Version: 4.5.2 +Release: 1%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -39,15 +39,12 @@ Patch3: qt-x11-opensource-src-4.2.2-mult Patch5: qt-all-opensource-src-4.4.0-rc1-as_IN-437440.patch # hack around gcc/ppc crasher, http://bugzilla.redhat.com/492185 Patch13: qt-x11-opensource-src-4.5.0-gcc_hack.patch -# qt fails to build on ia64: http://bugzilla.redhat.com/492174 -Patch14: qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch Patch15: qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch # include kde4 plugin path, http://bugzilla.redhat.com/498809 Patch16: qt-x11-opensource-src-4.5.1-kde4_plugins.patch ## upstreamable bits -# http://bugzilla.redhat.com/485677 -Patch51: qt-x11-opensource-src-4.5.0-qdoc3.patch +Patch51: qt-x11-opensource-src-4.5.2-qdoc3.patch Patch52: qt-4.5-sparc64.patch # fix invalid inline assembly in qatomic_{i386,x86_64}.h (de)ref implementations # should fix the reference counting in qt_toX11Pixmap and thus the Kolourpaint @@ -358,7 +355,6 @@ test -x apply_patches && ./apply_patches %endif %patch5 -p1 -b .bz#437440-as_IN-437440 %patch13 -p1 -b .gcc_hack -%patch14 -p1 -b .ia64_boilerplate %patch15 -p1 -b .enable_ft_lcdfilter %patch16 -p1 -b .kde4_plugins %patch51 -p1 -b .qdoc3 @@ -852,6 +848,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Thu Jul 02 2009 Than Ngo - 4.5.2-1 +- 4.5.2 + * Sat May 30 2009 Rex Dieter - 4.5.1-13 - -doc: Obsoletes: qt-doc < 1:4.5.1-4 (workaround bug #502401) Index: sources =================================================================== RCS file: /cvs/extras/rpms/qt/F-11/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 23 May 2009 04:05:53 -0000 1.59 +++ sources 2 Jul 2009 10:48:59 -0000 1.60 @@ -1,4 +1,4 @@ d9f511e4b51983b4e10eb58b320416d5 hi128-app-qt4-logo.png 6dcc0672ff9e60a6b83f95c5f42bec5b hi48-app-qt4-logo.png -afc43e566341cf3e5ed0bcb974f0c3b2 qt-x11-opensource-src-4.5.1.tar.bz2 -94ed40390723c75dbe88d80b7fa219e8 qt-copy-patches-20090522svn.tar.bz2 +28a7e8ac9805a6f614d2a27ee1a6ac9d qt-x11-opensource-src-4.5.2.tar.bz2 +9865efce56f62a441a76626226b5f946 qt-copy-patches-20090626svn.tar.bz2 --- qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch DELETED --- From than at fedoraproject.org Thu Jul 2 10:50:04 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 10:50:04 +0000 (UTC) Subject: rpms/qt/F-11 qt-x11-opensource-src-4.5.0-qdoc3.patch,1.1,NONE Message-ID: <20090702105004.AA94911C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1952 Removed Files: qt-x11-opensource-src-4.5.0-qdoc3.patch Log Message: drop old patch qt-x11-opensource-src-4.5.0-qdoc3.patch --- qt-x11-opensource-src-4.5.0-qdoc3.patch DELETED --- From nbecker at fedoraproject.org Thu Jul 2 11:01:53 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Thu, 2 Jul 2009 11:01:53 +0000 (UTC) Subject: rpms/mercurial/F-11 .cvsignore, 1.25, 1.26 mercurial.spec, 1.70, 1.71 sources, 1.27, 1.28 Message-ID: <20090702110153.B8E9811C00E3@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4646 Modified Files: .cvsignore mercurial.spec sources Log Message: update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 21 Mar 2009 11:17:23 -0000 1.25 +++ .cvsignore 2 Jul 2009 11:01:23 -0000 1.26 @@ -1 +1 @@ -mercurial-1.2.1.tar.gz +mercurial-1.3.tar.gz Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-11/mercurial.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- mercurial.spec 21 Mar 2009 11:14:53 -0000 1.70 +++ mercurial.spec 2 Jul 2009 11:01:23 -0000 1.71 @@ -2,8 +2,8 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.2.1 -Release: 1%{?dist} +Version: 1.3 +Release: 2%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,16 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -#%%check -#cd tests && %{__python} run-tests.py +%check +cd tests && %{__python} run-tests.py %changelog +* Wed Jul 1 2009 Neal Becker - 1.3-2 +- Re-enable tests since they now pass + +* Wed Jul 1 2009 Neal Becker - 1.3-1 +- Update to 1.3 + * Sat Mar 21 2009 Neal Becker - 1.2.1-1 - Update to 1.2.1 - Tests remain disabled due to failures Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-11/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 Mar 2009 11:17:23 -0000 1.27 +++ sources 2 Jul 2009 11:01:23 -0000 1.28 @@ -1 +1 @@ -24d6994cc58b353398e11c7a19cf1d19 mercurial-1.2.1.tar.gz +d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz From than at fedoraproject.org Thu Jul 2 11:17:12 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 11:17:12 +0000 (UTC) Subject: rpms/qt/F-11 qt.spec,1.272,1.273 Message-ID: <20090702111712.33FB211C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7449 Modified Files: qt.spec Log Message: add correct snapnot version Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-11/qt.spec,v retrieving revision 1.272 retrieving revision 1.273 diff -u -p -r1.272 -r1.273 --- qt.spec 2 Jul 2009 10:48:58 -0000 1.272 +++ qt.spec 2 Jul 2009 11:17:10 -0000 1.273 @@ -55,7 +55,7 @@ Patch53: qt-x11-opensource-src-4.5.0-fix Patch54: qt-x11-opensource-src-4.5.1-mysql_config.patch ## qt-copy patches -%define qt_copy 20090522 +%define qt_copy 20090626 Source1: qt-copy-patches-svn_checkout.sh %{?qt_copy:Source2: qt-copy-patches-%{qt_copy}svn.tar.bz2} %{?qt_copy:Provides: qt-copy = %{qt_copy}} From nbecker at fedoraproject.org Thu Jul 2 11:26:33 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Thu, 2 Jul 2009 11:26:33 +0000 (UTC) Subject: rpms/mercurial/F-10 .cvsignore, 1.22, 1.23 mercurial.spec, 1.61, 1.62 sources, 1.27, 1.28 Message-ID: <20090702112633.312C211C00E3@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9897 Modified Files: .cvsignore mercurial.spec sources Log Message: update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-10/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 1 Jan 2009 18:06:28 -0000 1.22 +++ .cvsignore 2 Jul 2009 11:26:02 -0000 1.23 @@ -1 +1 @@ -mercurial-1.1.2.tar.gz +mercurial-1.3.tar.gz Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-10/mercurial.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- mercurial.spec 21 Mar 2009 11:30:34 -0000 1.61 +++ mercurial.spec 2 Jul 2009 11:26:02 -0000 1.62 @@ -2,8 +2,8 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.2.1 -Release: 1%{?dist} +Version: 1.3 +Release: 2%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,16 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -#%%check -#cd tests && %{__python} run-tests.py +%check +cd tests && %{__python} run-tests.py %changelog +* Wed Jul 1 2009 Neal Becker - 1.3-2 +- Re-enable tests since they now pass + +* Wed Jul 1 2009 Neal Becker - 1.3-1 +- Update to 1.3 + * Sat Mar 21 2009 Neal Becker - 1.2.1-1 - Update to 1.2.1 - Tests remain disabled due to failures Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-10/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 Mar 2009 11:30:34 -0000 1.27 +++ sources 2 Jul 2009 11:26:02 -0000 1.28 @@ -1 +1 @@ -24d6994cc58b353398e11c7a19cf1d19 mercurial-1.2.1.tar.gz +d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz From than at fedoraproject.org Thu Jul 2 11:35:23 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 11:35:23 +0000 (UTC) Subject: rpms/qt/F-11 qt.spec,1.273,1.274 Message-ID: <20090702113523.5A28211C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11416 Modified Files: qt.spec Log Message: disable some qt-copy patches Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-11/qt.spec,v retrieving revision 1.273 retrieving revision 1.274 diff -u -p -r1.273 -r1.274 --- qt.spec 2 Jul 2009 11:17:10 -0000 1.273 +++ qt.spec 2 Jul 2009 11:34:53 -0000 1.274 @@ -343,7 +343,13 @@ Qt libraries used for drawing widgets an %setup -q -n qt-x11-opensource-src-%{version} %{?qt_copy:-a 2} %if 0%{?qt_copy} +%patch20 -p1 -b .qt-copy-qt452 +echo "0234" >> patches/DISABLED echo "0250" >> patches/DISABLED +echo "0273" >> patches/DISABLED +echo "0279" >> patches/DISABLED +echo "0281" >> patches/DISABLED +echo "0282" >> patches/DISABLED test -x apply_patches && ./apply_patches %endif From dnovotny at fedoraproject.org Thu Jul 2 11:47:54 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Thu, 2 Jul 2009 11:47:54 +0000 (UTC) Subject: rpms/emacs/F-11 default.el,1.8,1.9 emacs.spec,1.125,1.126 Message-ID: <20090702114754.1ECDD11C00E3@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/emacs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13762 Modified Files: default.el emacs.spec Log Message: fix #508033 Index: default.el =================================================================== RCS file: /cvs/extras/rpms/emacs/F-11/default.el,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- default.el 10 Apr 2009 11:37:19 -0000 1.8 +++ default.el 2 Jul 2009 11:47:23 -0000 1.9 @@ -4,5 +4,3 @@ ;;; prevents loading of this file. Also the "-q" option to emacs ;;; prevents both "~/.emacs" and this file from being loaded at startup. -; bz#443549 -(setq ispell-program-name "hunspell") Index: emacs.spec =================================================================== RCS file: /cvs/extras/rpms/emacs/F-11/emacs.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- emacs.spec 24 Jun 2009 12:06:11 -0000 1.125 +++ emacs.spec 2 Jul 2009 11:47:23 -0000 1.126 @@ -4,7 +4,7 @@ Summary: GNU Emacs text editor Name: emacs Epoch: 1 Version: 22.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/emacs/ Group: Applications/Editors @@ -41,7 +41,7 @@ Requires: xorg-x11-fonts-ISO8859-1-100dp Requires: xorg-x11-fonts-ISO8859-1-75dpi Requires: emacs-common = %{epoch}:%{version}-%{release} Requires: hicolor-icon-theme -Requires: hunspell +Requires: hunspell, aspell # Desktop integration BuildRequires: desktop-file-utils Requires: desktop-file-utils @@ -365,6 +365,10 @@ alternatives --install %{_bindir}/etags %dir %{_datadir}/emacs/%{version} %changelog +* Thu Jul 02 2009 Daniel Novotny 1:22.3-14 +- revoked default.el change (#508033) +- added dependency: aspell (#443549) + * Wed Jun 24 2009 Daniel Novotny 1:22.3-13 - added xorg-x11-fonts-misc to dependencies (#469220) From than at fedoraproject.org Thu Jul 2 11:51:56 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 11:51:56 +0000 (UTC) Subject: rpms/qt/F-11 qt.spec,1.274,1.275 Message-ID: <20090702115156.0FCA111C00E3@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14613 Modified Files: qt.spec Log Message: add missing patch qt-copy-20090626-qt452.patch Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-11/qt.spec,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- qt.spec 2 Jul 2009 11:34:53 -0000 1.274 +++ qt.spec 2 Jul 2009 11:51:25 -0000 1.275 @@ -42,6 +42,8 @@ Patch13: qt-x11-opensource-src-4.5.0-gcc Patch15: qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch # include kde4 plugin path, http://bugzilla.redhat.com/498809 Patch16: qt-x11-opensource-src-4.5.1-kde4_plugins.patch +# fix the qt-copy patch 0274-shm-native-image-fix.diff to apply against 4.5.2 +Patch20: qt-copy-20090626-qt452.patch ## upstreamable bits Patch51: qt-x11-opensource-src-4.5.2-qdoc3.patch From caolanm at fedoraproject.org Thu Jul 2 12:19:00 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 2 Jul 2009 12:19:00 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch, NONE, 1.1 openoffice.org.spec, 1.1954, 1.1955 workspace.sb109.patch, 1.1, NONE Message-ID: <20090702121900.61E4C11C00E3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20096/devel Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch Removed Files: workspace.sb109.patch Log Message: Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch: --- NEW FILE openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch --- diff -ru vcl.orig/unx/gtk/window/gtkframe.cxx vcl/unx/gtk/window/gtkframe.cxx --- vcl.orig/unx/gtk/window/gtkframe.cxx 2009-07-02 10:10:48.000000000 +0100 +++ vcl/unx/gtk/window/gtkframe.cxx 2009-07-02 10:13:01.000000000 +0100 @@ -824,7 +824,12 @@ } if( (nStyle & SAL_FRAME_STYLE_PARTIAL_FULLSCREEN ) ) { - eType = GDK_WINDOW_TYPE_HINT_DOCK; + //KWin apparently gets very confused with a DOCK hint on such a + //full-screen window shown on one monitor of many + if (getDisplay()->getWMAdaptor()->getWindowManagerName().EqualsAscii("KWin")) + eType = GDK_WINDOW_TYPE_HINT_TOOLBAR; + else + eType = GDK_WINDOW_TYPE_HINT_DOCK; gtk_window_set_keep_above( GTK_WINDOW(m_pWindow), true ); } Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1954 retrieving revision 1.1955 diff -u -p -r1.1954 -r1.1955 --- openoffice.org.spec 30 Jun 2009 08:13:22 -0000 1.1954 +++ openoffice.org.spec 2 Jul 2009 12:19:00 -0000 1.1955 @@ -151,6 +151,7 @@ Patch73: openoffice.org-3.1.0.ooo102920. Patch74: workspace.aw073.patch Patch75: workspace.cmcfixes60.patch Patch76: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch +Patch77: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1659,6 +1660,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch74 -p0 -b .workspace.aw073.patch %patch75 -p0 -b .workspace.cmcfixes60.patch %patch76 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch +%patch77 -p0 -b .ooo103277.vcl.kwinworkaround.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4172,6 +4174,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Thu Jul 02 2009 Caol??n McNamara - 1:3.1.1-14.2 +- Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch + * Sun Jun 28 2009 Caol??n McNamara - 1:3.1.1-14.1 - implement MSXML decryption, no querying for passwords though, so only currently opens "protected" .xlsx documents which are --- workspace.sb109.patch DELETED --- From caolanm at fedoraproject.org Thu Jul 2 12:19:29 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 2 Jul 2009 12:19:29 +0000 (UTC) Subject: rpms/openoffice.org/F-11 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch, NONE, 1.1 openoffice.org.spec, 1.1921, 1.1922 Message-ID: <20090702121929.E5D2211C00E3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20096/F-11 Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch Log Message: Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch: --- NEW FILE openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch --- diff -ru vcl.orig/unx/gtk/window/gtkframe.cxx vcl/unx/gtk/window/gtkframe.cxx --- vcl.orig/unx/gtk/window/gtkframe.cxx 2009-07-02 10:10:48.000000000 +0100 +++ vcl/unx/gtk/window/gtkframe.cxx 2009-07-02 10:13:01.000000000 +0100 @@ -824,7 +824,12 @@ } if( (nStyle & SAL_FRAME_STYLE_PARTIAL_FULLSCREEN ) ) { - eType = GDK_WINDOW_TYPE_HINT_DOCK; + //KWin apparently gets very confused with a DOCK hint on such a + //full-screen window shown on one monitor of many + if (getDisplay()->getWMAdaptor()->getWindowManagerName().EqualsAscii("KWin")) + eType = GDK_WINDOW_TYPE_HINT_TOOLBAR; + else + eType = GDK_WINDOW_TYPE_HINT_DOCK; gtk_window_set_keep_above( GTK_WINDOW(m_pWindow), true ); } Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/F-11/openoffice.org.spec,v retrieving revision 1.1921 retrieving revision 1.1922 diff -u -p -r1.1921 -r1.1922 --- openoffice.org.spec 22 Jun 2009 16:40:37 -0000 1.1921 +++ openoffice.org.spec 2 Jul 2009 12:18:59 -0000 1.1922 @@ -1,6 +1,6 @@ %define oootag OOO310 %define ooomilestone 11 -%define rh_rpm_release 4 +%define rh_rpm_release 5 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -146,6 +146,7 @@ Patch70: workspace.pdfextfix02.patch Patch71: openoffice.org-3.1.0.ooo102920.i18npool.utf16bustage.patch Patch72: workspace.aw073.patch Patch73: openoffice.org-3.1.1.ooo102932.sw.mailmerge.busted-integer-conversion.patch +Patch74: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1650,6 +1651,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch71 -p0 -b .ooo102920.i18npool.utf16bustage.patch %patch72 -p0 -b .workspace.aw073.patch %patch73 -p0 -b .ooo102932.sw.mailmerge.busted-integer-conversion.patch +%patch74 -p0 -b .ooo103277.vcl.kwinworkaround.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4152,6 +4154,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Thu Jul 02 2009 Caol??n McNamara - 1:3.1.0-11.5.UNBUILT +- Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch + * Fri Jun 22 2009 Caol??n McNamara - 1:3.1.0-11.4 - Related: rhbz#472853 openoffice.org-3.1.0.ooo99250.sc.autooutline-reflists.patch - Resolves: rhbz#503003 silence warnings on updates From pkgdb at fedoraproject.org Thu Jul 2 12:25:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:17 +0000 Subject: [pkgdb] lvm2: prajnoha has requested watchbugzilla Message-ID: <20090702122517.6EFD810F896@bastion2.fedora.phx.redhat.com> prajnoha has requested the watchbugzilla acl on lvm2 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:25:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:23 +0000 Subject: [pkgdb] lvm2: prajnoha has requested watchcommits Message-ID: <20090702122523.1F07F10F8A3@bastion2.fedora.phx.redhat.com> prajnoha has requested the watchcommits acl on lvm2 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:25:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:23 +0000 Subject: [pkgdb] lvm2: prajnoha has requested commit Message-ID: <20090702122524.0518210F8A9@bastion2.fedora.phx.redhat.com> prajnoha has requested the commit acl on lvm2 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:25:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:30 +0000 Subject: [pkgdb] lvm2: prajnoha has requested watchcommits Message-ID: <20090702122530.DE4D410F896@bastion2.fedora.phx.redhat.com> prajnoha has requested the watchcommits acl on lvm2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:25:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:31 +0000 Subject: [pkgdb] lvm2: prajnoha has requested commit Message-ID: <20090702122531.9501A10F8AF@bastion2.fedora.phx.redhat.com> prajnoha has requested the commit acl on lvm2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:25:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:25:47 +0000 Subject: [pkgdb] lvm2: prajnoha has requested watchbugzilla Message-ID: <20090702122547.4A54410F8A2@bastion2.fedora.phx.redhat.com> prajnoha has requested the watchbugzilla acl on lvm2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:33 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122633.B482F10F899@bastion2.fedora.phx.redhat.com> mbroz has set the watchbugzilla acl on lvm2 (Fedora devel) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:37 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122637.29FD410F8A4@bastion2.fedora.phx.redhat.com> mbroz has set the watchcommits acl on lvm2 (Fedora devel) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:39 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122639.E13A010F8AA@bastion2.fedora.phx.redhat.com> mbroz has set the commit acl on lvm2 (Fedora devel) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:52 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122652.9D82210F898@bastion2.fedora.phx.redhat.com> mbroz has set the watchbugzilla acl on lvm2 (Fedora 11) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:55 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122655.46AB010F8B3@bastion2.fedora.phx.redhat.com> mbroz has set the watchcommits acl on lvm2 (Fedora 11) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From pkgdb at fedoraproject.org Thu Jul 2 12:26:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 12:26:58 +0000 Subject: [pkgdb] lvm2 had acl change status Message-ID: <20090702122658.520E710F8B6@bastion2.fedora.phx.redhat.com> mbroz has set the commit acl on lvm2 (Fedora 11) to Approved for prajnoha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lvm2 From nphilipp at fedoraproject.org Thu Jul 2 12:36:09 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 2 Jul 2009 12:36:09 +0000 (UTC) Subject: rpms/babl/devel babl.spec,1.11,1.12 Message-ID: <20090702123609.91ED211C00E3@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/babl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23627 Modified Files: babl.spec Log Message: use "--disable-gtk-doc" to avoid rebuilding documentation (#477807) Index: babl.spec =================================================================== RCS file: /cvs/pkgs/rpms/babl/devel/babl.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- babl.spec 25 Jun 2009 09:49:13 -0000 1.11 +++ babl.spec 2 Jul 2009 12:35:39 -0000 1.12 @@ -1,12 +1,12 @@ Summary: A dynamic, any to any, pixel format conversion library Name: babl Version: 0.1.0 -Release: 2%{?dist} +Release: 3%{?dist} # The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL License: LGPLv3+ and GPLv3+ Group: System Environment/Libraries URL: http://www.gegl.org/babl/ -Source0: ftp://ftp.gtk.org/pub/babl/0.0/%{name}-%{version}.tar.bz2 +Source0: ftp://ftp.gtk.org/pub/babl/0.1/%{name}-%{version}.tar.bz2 Patch0: babl-build-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: librsvg2 w3m @@ -32,7 +32,7 @@ developing with %{name}. %patch0 -p0 -b .fix %build -%configure --disable-static +%configure --disable-static --disable-gtk-doc make %{?_smp_mflags} @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jun 25 2009 Nils Philippsen - 0.1.0-3 +- use "--disable-gtk-doc" to avoid rebuilding documentation (#477807) + * Thu Jun 25 2009 Nils Philippsen - 0.1.0-2 - fix timestamps of built documentation for multilib (#477807) From nphilipp at fedoraproject.org Thu Jul 2 12:37:30 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 2 Jul 2009 12:37:30 +0000 (UTC) Subject: rpms/babl/devel babl.spec,1.12,1.13 Message-ID: <20090702123730.6B01511C00E3@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/babl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23973 Modified Files: babl.spec Log Message: don't manually fix timestamps Index: babl.spec =================================================================== RCS file: /cvs/pkgs/rpms/babl/devel/babl.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- babl.spec 2 Jul 2009 12:35:39 -0000 1.12 +++ babl.spec 2 Jul 2009 12:37:00 -0000 1.13 @@ -43,8 +43,6 @@ make DESTDIR=%{buildroot} install INSTAL mkdir -p babl_docs babl_docs/html cp -pr docs/graphics docs/*.html docs/babl.css babl_docs/html rm -rf babl_docs/html/graphics/Makefile* -# fix timestamps for multilib -touch -m --reference=docs/Makefile.am babl_docs/html{,/graphics}/* rm -rf %{buildroot}%{_libdir}/*.la From nphilipp at fedoraproject.org Thu Jul 2 12:41:12 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 2 Jul 2009 12:41:12 +0000 (UTC) Subject: rpms/babl/devel babl.spec,1.13,1.14 Message-ID: <20090702124112.8F65F11C00E3@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/babl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24702 Modified Files: babl.spec Log Message: fix changelog Index: babl.spec =================================================================== RCS file: /cvs/pkgs/rpms/babl/devel/babl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- babl.spec 2 Jul 2009 12:37:00 -0000 1.13 +++ babl.spec 2 Jul 2009 12:40:42 -0000 1.14 @@ -70,8 +70,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog -* Thu Jun 25 2009 Nils Philippsen - 0.1.0-3 +* Thu Jul 02 2009 Nils Philippsen - 0.1.0-3 - use "--disable-gtk-doc" to avoid rebuilding documentation (#477807) +- fix source URL * Thu Jun 25 2009 Nils Philippsen - 0.1.0-2 - fix timestamps of built documentation for multilib (#477807) From nphilipp at fedoraproject.org Thu Jul 2 12:47:12 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 2 Jul 2009 12:47:12 +0000 (UTC) Subject: rpms/gegl/devel .cvsignore, 1.8, 1.9 gegl.spec, 1.14, 1.15 sources, 1.8, 1.9 gegl-babl_api_change.patch, 1.1, NONE Message-ID: <20090702124712.43C7D11C00E3@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gegl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25675 Modified Files: .cvsignore gegl.spec sources Removed Files: gegl-babl_api_change.patch Log Message: version 0.1.0 use "--disable-gtk-doc" to avoid rebuilding documentation (#481404) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 13 Jan 2009 03:24:26 -0000 1.8 +++ .cvsignore 2 Jul 2009 12:46:41 -0000 1.9 @@ -1 +1 @@ -gegl-0.0.22.tar.bz2 +gegl-0.1.0.tar.bz2 Index: gegl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/gegl.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gegl.spec 4 Jun 2009 22:47:04 -0000 1.14 +++ gegl.spec 2 Jul 2009 12:46:42 -0000 1.15 @@ -1,16 +1,15 @@ Summary: A graph based image processing framework Name: gegl -Version: 0.0.22 -Release: 5%{?dist} +Version: 0.1.0 +Release: 1%{?dist} # The binary is under the GPL, while the libs are under LGPL License: LGPLv3+ and GPLv3+ Group: System Environment/Libraries URL: http://www.gegl.org/ -Source0: ftp://ftp.gtk.org/pub/gegl/0.0/%{name}-%{version}.tar.bz2 -Patch0: gegl-babl_api_change.patch +Source0: ftp://ftp.gtk.org/pub/gegl/0.1/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: asciidoc -BuildRequires: babl-devel >= 0.0.22 +BuildRequires: babl-devel >= 0.1.0 BuildRequires: cairo-devel BuildRequires: enscript BuildRequires: glib2-devel >= 2.16.1 @@ -49,7 +48,6 @@ developing with %{name}. %prep %setup -q -%patch0 -p0 -b .api chmod -x operations/external/ff-load.c operations/common/perlin/perlin.* %build @@ -67,7 +65,8 @@ chmod -x operations/external/ff-load.c o --with-openexr \ --with-pango --with-pangocairo \ --with-sdl \ - --disable-static --enable-workshop + --disable-static --enable-workshop \ + --disable-gtk-doc make %{?_smp_mflags} %install @@ -76,11 +75,6 @@ make DESTDIR=%{buildroot} install INSTAL rm -f %{buildroot}%{_libdir}/*.la -# fix timestamps of generated files -for f in %{_datadir}/gtk-doc/html/gegl/operations.html; do - touch -m -r ChangeLog "%{buildroot}/$f" -done - %check make check @@ -106,6 +100,10 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 02 2009 Nils Philippsen - 0.1.0-1 +- version 0.1.0 +- use "--disable-gtk-doc" to avoid rebuilding documentation (#481404) + * Thu Jun 04 2009 Deji Akingunola - 0.0.22-5 - Apply patch to build with babl-0.1.0 API changes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Jan 2009 03:24:26 -0000 1.8 +++ sources 2 Jul 2009 12:46:42 -0000 1.9 @@ -1 +1 @@ -e2196c2016d16a4479e157f8fdee4162 gegl-0.0.22.tar.bz2 +5a989ad617801c5dbec3d47c30bd64f0 gegl-0.1.0.tar.bz2 --- gegl-babl_api_change.patch DELETED --- From caolanm at fedoraproject.org Thu Jul 2 12:49:10 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 2 Jul 2009 12:49:10 +0000 (UTC) Subject: rpms/enchant/devel enchant-1.5.0-abi12173.leaks.patch, NONE, 1.1 enchant-1.5.0-abi12174.fixbadmatch.patch, NONE, 1.1 enchant.spec, 1.24, 1.25 Message-ID: <20090702124910.8212311C00E3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/enchant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26302 Modified Files: enchant.spec Added Files: enchant-1.5.0-abi12173.leaks.patch enchant-1.5.0-abi12174.fixbadmatch.patch Log Message: Resolves: rhbz#508781 improve enchant quality, leaks, and edge-case language dict selection enchant-1.5.0-abi12173.leaks.patch: --- NEW FILE enchant-1.5.0-abi12173.leaks.patch --- diff -ru enchant-1.4.2.orig/src/enchant.c enchant-1.4.2/src/enchant.c --- enchant-1.4.2.orig/src/enchant.c 2009-06-29 17:47:11.000000000 +0100 +++ enchant-1.4.2/src/enchant.c 2009-06-29 20:46:17.000000000 +0100 @@ -1543,11 +1544,13 @@ EnchantDict *dict; EnchantProvider *owner; EnchantSession *session; + EnchantDictPrivateData *enchant_dict_private_data; g_return_if_fail (data); dict = (EnchantDict *) data; - session = ((EnchantDictPrivateData*)dict->enchant_private_data)->session; + enchant_dict_private_data = (EnchantDictPrivateData*)dict->enchant_private_data; + session = enchant_dict_private_data->session; owner = session->provider; if (owner && owner->dispose_dict) @@ -1555,6 +1558,8 @@ else if(session->is_pwl) g_free (dict); + g_free(enchant_dict_private_data); + enchant_session_destroy (session); } diff -ru enchant-1.4.2.orig/tests/enchant-ispell.c enchant-1.4.2/tests/enchant-ispell.c --- enchant-1.4.2.orig/tests/enchant-ispell.c 2009-06-29 17:47:11.000000000 +0100 +++ enchant-1.4.2/tests/enchant-ispell.c 2009-06-29 20:45:29.000000000 +0100 @@ -431,6 +431,8 @@ do_mode_a (out, dict, word, pos, lineCount); else if (mode == MODE_L) do_mode_l (out, dict, word, lineCount); + + g_string_free(word, TRUE); } if (token_ptr) g_slist_free (token_ptr); @@ -446,8 +448,6 @@ enchant_broker_free_dict (broker, dict); enchant_broker_free (broker); - if (word) - g_string_free (word, TRUE); g_string_free (str, TRUE); return 0; enchant-1.5.0-abi12174.fixbadmatch.patch: --- NEW FILE enchant-1.5.0-abi12174.fixbadmatch.patch --- diff -ru enchant-1.4.2.orig/src/myspell/myspell_checker.cpp enchant-1.4.2/src/myspell/myspell_checker.cpp --- enchant-1.4.2.orig/src/myspell/myspell_checker.cpp 2009-06-29 17:04:41.000000000 +0100 +++ enchant-1.4.2/src/myspell/myspell_checker.cpp 2009-06-29 17:25:40.000000000 +0100 @@ -341,6 +341,27 @@ return g_file_test(aff.c_str(), G_FILE_TEST_EXISTS) != 0; } +static bool is_plausible_dict_for_tag(const char *dir_entry, const char *tag) +{ + const char *dic_suffix = ".dic"; + size_t dic_suffix_len = strlen(dic_suffix); + size_t dir_entry_len = strlen(dir_entry); + size_t tag_len = strlen(tag); + + if (dir_entry_len - dic_suffix_len < tag_len) + return false; + if (strcmp(dir_entry+dir_entry_len-dic_suffix_len, dic_suffix) != 0) + return false; + if (strncmp (dir_entry, tag, tag_len) != 0) + return false; + //e.g. requested dict for "fi", + //reject "fil_PH.dic" + //allow "fi-FOO.dic", "fi_FOO.dic", "fi.dic", etc. + if (!ispunct(dir_entry[tag_len])) + return false; + return true; +} + static char * myspell_request_dictionary (EnchantBroker * broker, const char * tag) { @@ -364,14 +385,13 @@ if (dir) { const char *dir_entry; while ((dir_entry = g_dir_read_name (dir)) != NULL) { - if (strncmp (dir_entry, tag, strlen(tag)) == 0 && - strstr (dir_entry, ".dic") != NULL) { + if (is_plausible_dict_for_tag(dir_entry, tag)) { char *dict = g_build_filename (dirs[i].c_str(), dir_entry, NULL); - if(s_hasCorrespondingAffFile(dict)){ - g_dir_close (dir); - return dict; - } + if(s_hasCorrespondingAffFile(dict)){ + g_dir_close (dir); + return dict; + } } } Index: enchant.spec =================================================================== RCS file: /cvs/pkgs/rpms/enchant/devel/enchant.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- enchant.spec 22 Jun 2009 10:59:53 -0000 1.24 +++ enchant.spec 2 Jul 2009 12:49:10 -0000 1.25 @@ -1,7 +1,7 @@ Summary: An Enchanting Spell Checking Library Name: enchant Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: System Environment/Libraries License: LGPLv2+ @@ -16,6 +16,10 @@ BuildRoot: %{_tmppath}/%{name}-%{version #http://bugzilla.abisource.com/show_bug.cgi?id=12160 Patch0: enchant-1.5.0-abi12160.searchdirs.patch +#http://bugzilla.abisource.com/show_bug.cgi?id=12173 +Patch1: enchant-1.5.0-abi12173.leaks.patch +#http://bugzilla.abisource.com/show_bug.cgi?id=12174 +Patch2: enchant-1.5.0-abi12174.fixbadmatch.patch %description A library that wraps other spell checking backends. @@ -49,6 +53,8 @@ Libraries, headers, and support files ne %prep %setup -q %patch0 -p1 -b .searchdirs +%patch1 -p1 -b .leaks +%patch2 -p1 -b .fixbadmatch %build %configure --enable-myspell --with-myspell-dir=/usr/share/myspell --disable-static --disable-ispell --disable-hspell --disable-zemberek @@ -90,6 +96,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/enchant rm -r $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Caol??n McNamara 1:1.5.0-2 +- Resolves: rhbz#508781 improve enchant quality, leaks, and edge-case language + dict selection + * Mon Jun 22 2009 Caol??n McNamara 1:1.5.0-1 - latest version From pravins at fedoraproject.org Thu Jul 2 12:57:48 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Thu, 2 Jul 2009 12:57:48 +0000 (UTC) Subject: rpms/ibus-sayura/F-11 dual_matra_problem.patch, 1.2, 1.3 ibus-sayura.spec, 1.3, 1.4 Message-ID: <20090702125748.5C1A811C00E3@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/ibus-sayura/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28487 Modified Files: dual_matra_problem.patch ibus-sayura.spec Log Message: * Thu Jul 2 2009 Pravin Satpute - @VERSON at -4 - bugfix 507209, 509347, 509346 dual_matra_problem.patch: Index: dual_matra_problem.patch =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/F-11/dual_matra_problem.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dual_matra_problem.patch 29 Jun 2009 07:23:35 -0000 1.2 +++ dual_matra_problem.patch 2 Jul 2009 12:57:48 -0000 1.3 @@ -1,32 +1,49 @@ diff -rup ibus-sayura-1.0.0.20090326/src/engine.c ibus-sayura-1.0.0.20090326_mod/src/engine.c --- ibus-sayura-1.0.0.20090326/src/engine.c 2009-03-26 16:01:40.000000000 +0530 -+++ ibus-sayura-1.0.0.20090326_mod/src/engine.c 2009-06-26 18:31:48.000000000 +0530 -@@ -204,7 +204,7 @@ ibus_sinhala_engine_init (IBusSinhalaEng - - sinhala->prop_list = ibus_prop_list_new (); - ibus_prop_list_append (sinhala->prop_list, sinhala->sinhala_mode_prop); -- sinhala->buffer = g_array_new (TRUE, TRUE, sizeof(gunichar *)); -+ sinhala->buffer = g_array_new (TRUE, TRUE, sizeof(gunichar)); - } - - static GObject* ++++ ibus-sayura-1.0.0.20090326_mod/src/engine.c 2009-07-02 17:27:17.000000000 +0530 @@ -252,8 +252,8 @@ ibus_sinhala_engine_update_preedit_text if(sinhala->buffer->len>0){ uni_array = (gunichar *)sinhala->buffer->data; text = ibus_text_new_from_ucs4(uni_array); - ibus_text_append_attribute (text, IBUS_ATTR_TYPE_FOREGROUND, 0x00ffffff, 0, -1); - ibus_text_append_attribute (text, IBUS_ATTR_TYPE_BACKGROUND, 0x00000000, 0, -1); -+// ibus_text_append_attribute (text, IBUS_ATTR_TYPE_FOREGROUND, 0x00ffffff, 0, -1); ++ ibus_text_append_attribute (text, IBUS_ATTR_TYPE_UNDERLINE, 1, 0, -1); +// ibus_text_append_attribute (text, IBUS_ATTR_TYPE_BACKGROUND, 0x00000000, 0, -1); ibus_engine_update_preedit_text ((IBusEngine *)sinhala, text, ibus_text_get_length (text), -@@ -564,7 +564,7 @@ static gboolean ibus_sinhala_handle_vowe +@@ -295,10 +295,9 @@ ibus_sinhala_engine_process_key_event (I + } + + +- + if (keyval == IBUS_space && modifiers == 0 && sinhala->buffer->len >0) { + ibus_sinhala_commit_preedit_to_ibus(sinhala); +- return TRUE; ++ return FALSE; + } + + c = ibus_sinhala_find_consonent_by_key(keyval); +@@ -309,6 +308,13 @@ ibus_sinhala_engine_process_key_event (I + if (c >= 0) /* a consonent is pressed. */ + return ibus_sinhala_handle_vowel_pressed (sinhala, keyval, c); + ++ if (keyval == IBUS_Shift_L || keyval == IBUS_Shift_L ) { ++ return FALSE; ++ } ++ ++ if (sinhala->buffer->len >0) ++ ibus_sinhala_commit_preedit_to_ibus(sinhala); ++ + return FALSE; + } + +@@ -564,7 +570,7 @@ static gboolean ibus_sinhala_handle_vowe } else { /* look for a previous character first. */ - c1 = g_array_index(sinhala->buffer, gunichar,0); -+ c1 = g_array_index(sinhala->buffer, gunichar,sinhala->buffer->len-1); ++ c1 = g_array_index(sinhala->buffer, gunichar,(sinhala->buffer->len-1)); if (ibus_sinhala_is_consonent(c1)) { g_array_append_val(sinhala->buffer, vowels[c].single1); Index: ibus-sayura.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/F-11/ibus-sayura.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ibus-sayura.spec 29 Jun 2009 07:23:36 -0000 1.3 +++ ibus-sayura.spec 2 Jul 2009 12:57:48 -0000 1.4 @@ -45,8 +45,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog -* Mon Jun 29 2009 Pravin Satpute - @VERSON at -4 -- fix for bug 507209 +* Thu Jul 2 2009 Pravin Satpute - @VERSON at -4 +- bugfix 507209, 509347, 509346 * Thu Mar 26 2009 Pravin Satpute - @VERSON at -2 - updated as per fedora spec review From ghosler at fedoraproject.org Thu Jul 2 12:58:00 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 12:58:00 +0000 (UTC) Subject: rpms/gyachi/F-11 .cvsignore, 1.25, 1.26 gyachi.spec, 1.44, 1.45 sources, 1.29, 1.30 Message-ID: <20090702125800.9C20011C00E3@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28265 Modified Files: .cvsignore gyachi.spec sources Log Message: Fixed Yahoo PM chat problem (Fedora Bugzilla [Bug 508576]) Fixed gyachi crash in html page, when click view (Fedora Bugzilla [Bug 508490]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 22 May 2009 03:33:35 -0000 1.25 +++ .cvsignore 2 Jul 2009 12:58:00 -0000 1.26 @@ -1 +1 @@ -gyachi-1.1.71.tar.gz +gyachi-1.2.0.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/gyachi.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- gyachi.spec 22 May 2009 03:43:28 -0000 1.44 +++ gyachi.spec 2 Jul 2009 12:58:00 -0000 1.45 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.1.71 +Version: 1.2.0 Release: 4%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -371,10 +371,13 @@ rm -rf $RPM_BUILD_ROOT %changelog -*Fri May 22 2009 Gregory D Hosler - 1.1.71.4 +* Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 +- Fixed Yahoo PM text problem + +* Fri May 22 2009 Gregory D Hosler - 1.1.71-4 - Added file %{_datadir}/%{name}/voice_servers to payload. -*Thu May 21 2009 Gregory D Hosler - 1.1.71.3 +* Thu May 21 2009 Gregory D Hosler - 1.1.71-3 - Update from upstream * Tue Feb 24 2009 Fedora Release Engineering - 1.1.61-4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 22 May 2009 03:33:35 -0000 1.29 +++ sources 2 Jul 2009 12:58:00 -0000 1.30 @@ -1 +1 @@ -49852abe4e9ae3f95922340b526510ab gyachi-1.1.71.tar.gz +80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz From rdieter at fedoraproject.org Thu Jul 2 13:00:29 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 13:00:29 +0000 (UTC) Subject: rpms/kdebase-runtime/devel kdebase-runtime.spec,1.125,1.126 Message-ID: <20090702130029.DF42311C00E3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29100 Modified Files: kdebase-runtime.spec Log Message: * Thu Jul 02 2009 Rex Dieter 4.2.95-3 - drop unneeded BR: ImageMagick (#509241) Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- kdebase-runtime.spec 29 Jun 2009 19:31:59 -0000 1.125 +++ kdebase-runtime.spec 2 Jul 2009 12:59:59 -0000 1.126 @@ -3,7 +3,7 @@ Name: kdebase-runtime Summary: K Desktop Environment - Runtime Version: 4.2.95 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: User Interface/Desktops @@ -59,13 +59,11 @@ BuildRequires: xine-lib-devel libxcb-dev BuildRequires: xorg-x11-font-utils BuildRequires: xorg-x11-proto-devel BuildRequires: zlib-devel -BuildRequires: ImageMagick %description Core runtime for the K Desktop Environment 4. - %package libs Summary: Runtime libraries for %{name} Group: System Environment/Libraries @@ -75,7 +73,6 @@ Requires: %{name} = %{version}-%{release %{summary}. - %package flags Summary: Geopolitical flags Group: User Interface/Desktops @@ -214,6 +211,9 @@ fi %changelog +* Thu Jul 02 2009 Rex Dieter 4.2.95-3 +- drop unneeded BR: ImageMagick (#509241) + * Mon Jun 29 2009 Luk???? Tinkl - 4.2.95-2 - don't start nepomuk server unconditionally (#487322) From ghosler at fedoraproject.org Thu Jul 2 13:04:16 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 13:04:16 +0000 (UTC) Subject: rpms/gyachi/F-10 .cvsignore, 1.24, 1.25 gyachi.spec, 1.35, 1.36 sources, 1.24, 1.25 Message-ID: <20090702130416.7F85B11C0419@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29862 Modified Files: .cvsignore gyachi.spec sources Log Message: Fixed Yahoo PM chat problem (Fedora Bugzilla [Bug 508576]) Fixed gyachi crash in html page, when click view (Fedora Bugzilla [Bug 508490]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 22 May 2009 04:08:22 -0000 1.24 +++ .cvsignore 2 Jul 2009 13:04:16 -0000 1.25 @@ -1 +1 @@ -gyachi-1.1.71.tar.gz +gyachi-1.2.0.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/gyachi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gyachi.spec 22 May 2009 04:08:22 -0000 1.35 +++ gyachi.spec 2 Jul 2009 13:04:16 -0000 1.36 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.1.71 +Version: 1.2.0 Release: 3%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -373,7 +373,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -*Thu May 21 2009 Gregory D Hosler - 1.1.71.3 +* Thu Jul 2 2009 Gregory D Hosler - 1.2.0-3 +- Fixed Yahoo PM text problem + +* Thu May 21 2009 Gregory D Hosler - 1.1.71-3 - Update from upstream * Mon Jan 19 2009 Gregory D Hosler - 1.1.61.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 22 May 2009 04:08:22 -0000 1.24 +++ sources 2 Jul 2009 13:04:16 -0000 1.25 @@ -1 +1 @@ -49852abe4e9ae3f95922340b526510ab gyachi-1.1.71.tar.gz +80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz From caolanm at fedoraproject.org Thu Jul 2 13:04:27 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 2 Jul 2009 13:04:27 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch, NONE, 1.1 openoffice.org.spec, 1.1955, 1.1956 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch, 1.1, NONE Message-ID: <20090702130427.5F02D11C0419@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29977 Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch Removed Files: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch Log Message: track renamed id number openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch: --- NEW FILE openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch --- diff -ru vcl.orig/unx/gtk/window/gtkframe.cxx vcl/unx/gtk/window/gtkframe.cxx --- vcl.orig/unx/gtk/window/gtkframe.cxx 2009-07-02 10:10:48.000000000 +0100 +++ vcl/unx/gtk/window/gtkframe.cxx 2009-07-02 10:13:01.000000000 +0100 @@ -824,7 +824,12 @@ } if( (nStyle & SAL_FRAME_STYLE_PARTIAL_FULLSCREEN ) ) { - eType = GDK_WINDOW_TYPE_HINT_DOCK; + //KWin apparently gets very confused with a DOCK hint on such a + //full-screen window shown on one monitor of many + if (getDisplay()->getWMAdaptor()->getWindowManagerName().EqualsAscii("KWin")) + eType = GDK_WINDOW_TYPE_HINT_TOOLBAR; + else + eType = GDK_WINDOW_TYPE_HINT_DOCK; gtk_window_set_keep_above( GTK_WINDOW(m_pWindow), true ); } Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1955 retrieving revision 1.1956 diff -u -p -r1.1955 -r1.1956 --- openoffice.org.spec 2 Jul 2009 12:19:00 -0000 1.1955 +++ openoffice.org.spec 2 Jul 2009 13:04:27 -0000 1.1956 @@ -151,7 +151,7 @@ Patch73: openoffice.org-3.1.0.ooo102920. Patch74: workspace.aw073.patch Patch75: workspace.cmcfixes60.patch Patch76: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch -Patch77: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch +Patch77: openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1660,7 +1660,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch74 -p0 -b .workspace.aw073.patch %patch75 -p0 -b .workspace.cmcfixes60.patch %patch76 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch -%patch77 -p0 -b .ooo103277.vcl.kwinworkaround.patch +%patch77 -p0 -b .ooo103145.vcl.kwinworkaround.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` --- openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch DELETED --- From pravins at fedoraproject.org Thu Jul 2 13:14:01 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Thu, 2 Jul 2009 13:14:01 +0000 (UTC) Subject: rpms/ibus-sayura/F-11 ibus-sayura.spec,1.4,1.5 Message-ID: <20090702131401.6B9F811C0418@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/ibus-sayura/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31640 Modified Files: ibus-sayura.spec Log Message: * Thu Jul 2 2009 Pravin Satpute - @VERSON at -5 - bugfix 507209, 509347, 509346 Index: ibus-sayura.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/F-11/ibus-sayura.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ibus-sayura.spec 2 Jul 2009 12:57:48 -0000 1.4 +++ ibus-sayura.spec 2 Jul 2009 13:13:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: ibus-sayura Version: 1.0.0.20090326 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Sinhala engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -45,9 +45,12 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog -* Thu Jul 2 2009 Pravin Satpute - @VERSON at -4 +* Thu Jul 2 2009 Pravin Satpute - @VERSON at -5 - bugfix 507209, 509347, 509346 +* Mon Jun 29 2009 Pravin Satpute - @VERSON at -4 +- fix for bug 507209 + * Thu Mar 26 2009 Pravin Satpute - @VERSON at -2 - updated as per fedora spec review From pbrobinson at fedoraproject.org Thu Jul 2 13:23:15 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 2 Jul 2009 13:23:15 +0000 (UTC) Subject: rpms/gobject-introspection/devel gobject-introspection.spec, 1.9, 1.10 Message-ID: <20090702132315.A469E11C0418@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gobject-introspection/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1202 Modified Files: gobject-introspection.spec Log Message: - Add -ggdb temporarily so it compiles on ppc64 Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/gobject-introspection.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gobject-introspection.spec 2 Jul 2009 09:09:42 -0000 1.9 +++ gobject-introspection.spec 2 Jul 2009 13:23:15 -0000 1.10 @@ -3,7 +3,7 @@ Name: gobject-introspection Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries @@ -50,6 +50,7 @@ Libraries and headers for gobject-intros %setup -q %build +export CFLAGS="$CFLAGS -ggdb" %configure make @@ -95,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.gz %changelog +* Thu Jul 2 2009 Peter Robinson - 0.6.3-3 +- Add -ggdb temporarily so it compiles on ppc64 + * Thu Jul 2 2009 Peter Robinson - 0.6.3-2 - Add the new source file From ghosler at fedoraproject.org Thu Jul 2 13:24:36 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 13:24:36 +0000 (UTC) Subject: rpms/gyachi/devel .cvsignore, 1.25, 1.26 gyachi.spec, 1.44, 1.45 sources, 1.29, 1.30 Message-ID: <20090702132436.9450011C0418@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1402 Modified Files: .cvsignore gyachi.spec sources Log Message: Fixed Yahoo PM chat problem (Fedora Bugzilla [Bug 508576]) Fixed gyachi crash in html page, when click view (Fedora Bugzilla [Bug 508490]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 22 May 2009 03:26:39 -0000 1.25 +++ .cvsignore 2 Jul 2009 13:24:06 -0000 1.26 @@ -1 +1 @@ -gyachi-1.1.71.tar.gz +gyachi-1.2.0.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/gyachi.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- gyachi.spec 22 May 2009 03:41:51 -0000 1.44 +++ gyachi.spec 2 Jul 2009 13:24:06 -0000 1.45 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.1.71 +Version: 1.2.0 Release: 4%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -371,10 +371,13 @@ rm -rf $RPM_BUILD_ROOT %changelog -*Fri May 22 2009 Gregory D Hosler - 1.1.71.4 +* Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 +- Fixed Yahoo PM text problem + +* Fri May 22 2009 Gregory D Hosler - 1.1.71-4 - Added file %{_datadir}/%{name}/voice_servers to payload. -*Thu May 21 2009 Gregory D Hosler - 1.1.71.3 +* Thu May 21 2009 Gregory D Hosler - 1.1.71-3 - Update from upstream * Tue Feb 24 2009 Fedora Release Engineering - 1.1.61-4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 22 May 2009 03:26:39 -0000 1.29 +++ sources 2 Jul 2009 13:24:06 -0000 1.30 @@ -1 +1 @@ -49852abe4e9ae3f95922340b526510ab gyachi-1.1.71.tar.gz +80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz From limb at fedoraproject.org Thu Jul 2 13:27:43 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:27:43 +0000 (UTC) Subject: rpms/drupal/devel .cvsignore, 1.20, 1.21 drupal-README.fedora, 1.5, 1.6 drupal.spec, 1.25, 1.26 sources, 1.21, 1.22 Message-ID: <20090702132743.8B5E211C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2797 Modified Files: .cvsignore drupal-README.fedora drupal.spec sources Log Message: - Update to 6.11, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/drupal/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 14 May 2009 12:24:31 -0000 1.20 +++ .cvsignore 2 Jul 2009 13:27:13 -0000 1.21 @@ -1 +1 @@ -drupal-6.12.tar.gz +drupal-6.13.tar.gz Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/devel/drupal-README.fedora,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- drupal-README.fedora 17 Feb 2009 18:38:22 -0000 1.5 +++ drupal-README.fedora 2 Jul 2009 13:27:13 -0000 1.6 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -58,3 +65,9 @@ will be moved to /var/lib/drupal/files/S for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/devel/drupal.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- drupal.spec 14 May 2009 12:24:31 -0000 1.25 +++ drupal.spec 2 Jul 2009 13:27:13 -0000 1.26 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 6.12 +Version: 6.13 Release: 1%{?dist} Summary: An open-source content-management platform @@ -77,6 +77,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/files/default/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 6.13-1 +- Update to 6.11, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu May 14 2009 Jon Ciesla - 6.12-1 - Update to 6.11, SA-CORE-2009-006. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 14 May 2009 12:24:31 -0000 1.21 +++ sources 2 Jul 2009 13:27:13 -0000 1.22 @@ -1 +1 @@ -82e2517f175320cffe20997333b3a33a drupal-6.12.tar.gz +76dcb6e311fbb98ca3322fd1413f4a04 drupal-6.13.tar.gz From limb at fedoraproject.org Thu Jul 2 13:29:26 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:29:26 +0000 (UTC) Subject: rpms/drupal/F-10 drupal-README.fedora, 1.5, 1.6 drupal.spec, 1.24, 1.25 sources, 1.20, 1.21 Message-ID: <20090702132926.7474F11C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3219/F-10 Modified Files: drupal-README.fedora drupal.spec sources Log Message: - Update to 6.11, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-10/drupal-README.fedora,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- drupal-README.fedora 18 Feb 2009 14:40:24 -0000 1.5 +++ drupal-README.fedora 2 Jul 2009 13:28:56 -0000 1.6 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -58,3 +65,9 @@ will be moved to /var/lib/drupal/files/S for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-10/drupal.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- drupal.spec 14 May 2009 12:34:28 -0000 1.24 +++ drupal.spec 2 Jul 2009 13:28:56 -0000 1.25 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 6.12 +Version: 6.13 Release: 1%{?dist} Summary: An open-source content-management platform @@ -77,6 +77,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/files/default/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 6.13-1 +- Update to 6.11, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu May 14 2009 Jon Ciesla - 6.12-1 - Update to 6.11, SA-CORE-2009-006. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-10/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 14 May 2009 12:34:28 -0000 1.20 +++ sources 2 Jul 2009 13:28:56 -0000 1.21 @@ -1 +1 @@ -82e2517f175320cffe20997333b3a33a drupal-6.12.tar.gz +76dcb6e311fbb98ca3322fd1413f4a04 drupal-6.13.tar.gz From limb at fedoraproject.org Thu Jul 2 13:29:26 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:29:26 +0000 (UTC) Subject: rpms/drupal/F-11 drupal-README.fedora, 1.5, 1.6 drupal.spec, 1.25, 1.26 sources, 1.21, 1.22 Message-ID: <20090702132926.A922E11C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3219/F-11 Modified Files: drupal-README.fedora drupal.spec sources Log Message: - Update to 6.11, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-11/drupal-README.fedora,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- drupal-README.fedora 17 Feb 2009 18:38:22 -0000 1.5 +++ drupal-README.fedora 2 Jul 2009 13:28:56 -0000 1.6 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -58,3 +65,9 @@ will be moved to /var/lib/drupal/files/S for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-11/drupal.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- drupal.spec 14 May 2009 12:34:28 -0000 1.25 +++ drupal.spec 2 Jul 2009 13:28:56 -0000 1.26 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 6.12 +Version: 6.13 Release: 1%{?dist} Summary: An open-source content-management platform @@ -77,6 +77,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/files/default/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 6.13-1 +- Update to 6.11, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu May 14 2009 Jon Ciesla - 6.12-1 - Update to 6.11, SA-CORE-2009-006. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 14 May 2009 12:34:28 -0000 1.21 +++ sources 2 Jul 2009 13:28:56 -0000 1.22 @@ -1 +1 @@ -82e2517f175320cffe20997333b3a33a drupal-6.12.tar.gz +76dcb6e311fbb98ca3322fd1413f4a04 drupal-6.13.tar.gz From limb at fedoraproject.org Thu Jul 2 13:29:26 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:29:26 +0000 (UTC) Subject: rpms/drupal/F-9 drupal-README.fedora, 1.5, 1.6 drupal.spec, 1.24, 1.25 sources, 1.20, 1.21 Message-ID: <20090702132926.D91B211C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3219/F-9 Modified Files: drupal-README.fedora drupal.spec sources Log Message: - Update to 6.11, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-9/drupal-README.fedora,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- drupal-README.fedora 20 Feb 2009 13:59:22 -0000 1.5 +++ drupal-README.fedora 2 Jul 2009 13:28:56 -0000 1.6 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -58,3 +65,9 @@ will be moved to /var/lib/drupal/files/S for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-9/drupal.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- drupal.spec 14 May 2009 12:34:29 -0000 1.24 +++ drupal.spec 2 Jul 2009 13:28:56 -0000 1.25 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 6.12 +Version: 6.13 Release: 1%{?dist} Summary: An open-source content-management platform @@ -77,6 +77,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/files/default/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 6.13-1 +- Update to 6.11, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu May 14 2009 Jon Ciesla - 6.12-1 - Update to 6.11, SA-CORE-2009-006. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/F-9/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 14 May 2009 12:34:29 -0000 1.20 +++ sources 2 Jul 2009 13:28:56 -0000 1.21 @@ -1 +1 @@ -82e2517f175320cffe20997333b3a33a drupal-6.12.tar.gz +76dcb6e311fbb98ca3322fd1413f4a04 drupal-6.13.tar.gz From limb at fedoraproject.org Thu Jul 2 13:34:28 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:34:28 +0000 (UTC) Subject: rpms/drupal/EL-5 .cvsignore, 1.4, 1.5 drupal-README.fedora, 1.3, 1.4 drupal.spec, 1.16, 1.17 sources, 1.16, 1.17 Message-ID: <20090702133428.58DFF11C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4293 Modified Files: .cvsignore drupal-README.fedora drupal.spec sources Log Message: - Update to 5.19, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 30 Apr 2009 12:21:42 -0000 1.4 +++ .cvsignore 2 Jul 2009 13:33:57 -0000 1.5 @@ -1 +1 @@ -drupal-5.17.tar.gz +drupal-5.19.tar.gz Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-5/drupal-README.fedora,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drupal-README.fedora 9 Oct 2008 12:24:03 -0000 1.3 +++ drupal-README.fedora 2 Jul 2009 13:33:57 -0000 1.4 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -39,3 +46,28 @@ http://www.securityfocus.com/bid/31285 To help mitigate this, uncomment the following line in /etc/httpd/conf.d/drupal.conf: #php_flag session.cookie_secure on + + +4. Upgrading + +Prior to upgrading to a new version, log into each site with the first/admin user, +upgrade the rpm, and then run the database upgrader by navigating to +http://site/update.php. + +If upgrading to version 6.9-2 or later, please note that +the locations for the sites' files directories has changed, and that you'll need +to move them and symlink accordingly. A script is included in the doc folder: +/usr/share/drupal-VERSION/drupal-files-migrator.sh. Please use this script as a +guideline for the changes you'll need to make. + +Essentially, the site folders will stay in /etc/drupal, but from there the files folders +will be moved to /var/lib/drupal/files/SITENAME, and symlinked accordingly. This is done +for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. + +Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-5/drupal.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- drupal.spec 30 Apr 2009 12:21:42 -0000 1.16 +++ drupal.spec 2 Jul 2009 13:33:57 -0000 1.17 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 5.17 +Version: 5.19 Release: 1%{?dist} Summary: An open-source content-management platform @@ -71,6 +71,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 5.19-1 +- Update to 5.19, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu Apr 30 2009 Jon Ciesla - 5.17-1 - Upgrade to 5.15, DRUPAL-SA-CORE-2009-005. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-5/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 30 Apr 2009 12:21:42 -0000 1.16 +++ sources 2 Jul 2009 13:33:58 -0000 1.17 @@ -1 +1 @@ -14d5aec31f6878b959015d038280c266 drupal-5.17.tar.gz +d5e3dbcfd3e7f7ef431dada57a6c846e drupal-5.19.tar.gz From limb at fedoraproject.org Thu Jul 2 13:36:02 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 13:36:02 +0000 (UTC) Subject: rpms/drupal/EL-4 drupal-README.fedora, 1.3, 1.4 drupal.spec, 1.16, 1.17 sources, 1.16, 1.17 Message-ID: <20090702133602.D0DB511C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/drupal/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4601 Modified Files: drupal-README.fedora drupal.spec sources Log Message: - Update to 5.19, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. Index: drupal-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-4/drupal-README.fedora,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drupal-README.fedora 9 Oct 2008 12:24:03 -0000 1.3 +++ drupal-README.fedora 2 Jul 2009 13:35:32 -0000 1.4 @@ -31,6 +31,13 @@ should not run into problems, but if any re-written when the package is upgraded, which could break the site until you re-change the symlink. +2a. SELinux configuration + +If running with SELinux in Enforcing mode, you'll need run the following to allow drupal +to send mail from httpd using sendmail: + +/usr/sbin/setsebool -P httpd_can_sendmail 1 + 3. SSL/TLS usage. CVE-2008-3661 relates to the security of session cookies and SSL/TLS. @@ -39,3 +46,28 @@ http://www.securityfocus.com/bid/31285 To help mitigate this, uncomment the following line in /etc/httpd/conf.d/drupal.conf: #php_flag session.cookie_secure on + + +4. Upgrading + +Prior to upgrading to a new version, log into each site with the first/admin user, +upgrade the rpm, and then run the database upgrader by navigating to +http://site/update.php. + +If upgrading to version 6.9-2 or later, please note that +the locations for the sites' files directories has changed, and that you'll need +to move them and symlink accordingly. A script is included in the doc folder: +/usr/share/drupal-VERSION/drupal-files-migrator.sh. Please use this script as a +guideline for the changes you'll need to make. + +Essentially, the site folders will stay in /etc/drupal, but from there the files folders +will be moved to /var/lib/drupal/files/SITENAME, and symlinked accordingly. This is done +for SELinux reasons, see https://bugzilla.redhat.com/show_bug.cgi?id=472642. + +Patches to the script are welcome! + +5. Modules + +There are some drupal modules in Fedora. These will install in +/usr/share/drupal/modules, and you should install your modules there as well. + Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-4/drupal.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- drupal.spec 30 Apr 2009 12:23:23 -0000 1.16 +++ drupal.spec 2 Jul 2009 13:35:32 -0000 1.17 @@ -1,6 +1,6 @@ %define drupaldir %{_datadir}/drupal Name: drupal -Version: 5.17 +Version: 5.19 Release: 1%{?dist} Summary: An open-source content-management platform @@ -71,6 +71,10 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/ %changelog +* Thu Jul 02 2009 Jon Ciesla - 5.19-1 +- Update to 5.19, SA-CORE-2009-007. +- Added clarifying text on module installation to readme, BZ 500707. + * Thu Apr 30 2009 Jon Ciesla - 5.17-1 - Upgrade to 5.15, DRUPAL-SA-CORE-2009-005. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/drupal/EL-4/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 30 Apr 2009 12:23:23 -0000 1.16 +++ sources 2 Jul 2009 13:35:32 -0000 1.17 @@ -1 +1 @@ -14d5aec31f6878b959015d038280c266 drupal-5.17.tar.gz +d5e3dbcfd3e7f7ef431dada57a6c846e drupal-5.19.tar.gz From ghosler at fedoraproject.org Thu Jul 2 13:41:50 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 13:41:50 +0000 (UTC) Subject: rpms/gyachi/EL-4 .cvsignore, 1.3, 1.4 gyachi.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090702134150.A591811C0418@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5728 Modified Files: .cvsignore gyachi.spec sources Log Message: Bug fix for chat Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-4/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Jun 2008 12:49:06 -0000 1.3 +++ .cvsignore 2 Jul 2009 13:41:20 -0000 1.4 @@ -1 +1 @@ -gyachi-1.1.35.tar.gz +gyachi-1.2.0.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-4/gyachi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gyachi.spec 20 Jun 2008 14:07:32 -0000 1.6 +++ gyachi.spec 2 Jul 2009 13:41:20 -0000 1.7 @@ -16,8 +16,8 @@ %endif Name: gyachi -Version: 1.1.35 -Release: 10%{?dist} +Version: 1.2.0 +Release: 4%{?dist} Summary: A Yahoo! chat client with Webcam and voice support Group: Applications/Internet Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-4/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Jun 2008 12:49:06 -0000 1.3 +++ sources 2 Jul 2009 13:41:20 -0000 1.4 @@ -1 +1 @@ -706d8e06a61b350babd7631337f57ccb gyachi-1.1.35.tar.gz +80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz From than at fedoraproject.org Thu Jul 2 13:42:38 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 13:42:38 +0000 (UTC) Subject: rpms/qt/F-10 qt-copy-20090626-qt452.patch, NONE, 1.1 qt-x11-opensource-src-4.5.2-qdoc3.patch, NONE, 1.1 qt.spec, 1.230, 1.231 sources, 1.52, 1.53 qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch, 1.1, NONE qt-x11-opensource-src-4.5.0-qdoc3.patch, 1.1, NONE Message-ID: <20090702134238.9142311C0418@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6052 Modified Files: qt.spec sources Added Files: qt-copy-20090626-qt452.patch qt-x11-opensource-src-4.5.2-qdoc3.patch Removed Files: qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch qt-x11-opensource-src-4.5.0-qdoc3.patch Log Message: 4.5.2 qt-copy-20090626-qt452.patch: --- NEW FILE qt-copy-20090626-qt452.patch --- diff -ur qt-copy/patches/0274-shm-native-image-fix.diff qt-copy-qt452/patches/0274-shm-native-image-fix.diff --- qt-copy/patches/0274-shm-native-image-fix.diff 2009-03-03 11:46:54.000000000 +0100 +++ qt-copy-qt452/patches/0274-shm-native-image-fix.diff 2009-06-26 03:26:36.000000000 +0200 @@ -15,15 +15,19 @@ =================================================================== --- src/gui/kernel/qapplication_x11.cpp (revision 934506) +++ src/gui/kernel/qapplication_x11.cpp (working copy) -@@ -1943,7 +1943,7 @@ void qt_init(QApplicationPrivate *priv, - // to determine whether the display is local or not (not 100 % accurate) +@@ -1955,9 +1955,9 @@ bool local = displayName.isEmpty() || displayName.lastIndexOf(QLatin1Char(':')) == 0; - if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) -- X11->use_mitshm = mitshm_pixmaps; -+ X11->use_mitshm = true; + if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) { + Visual *defaultVisual = DefaultVisual(X11->display, DefaultScreen(X11->display)); +- X11->use_mitshm = mitshm_pixmaps && (defaultVisual->red_mask == 0xff0000 +- && defaultVisual->green_mask == 0xff00 +- && defaultVisual->blue_mask == 0xff); ++ X11->use_mitshm = defaultVisual->red_mask == 0xff0000 ++ && defaultVisual->green_mask == 0xff00 ++ && defaultVisual->blue_mask == 0xff; + } } #endif // QT_NO_MITSHM - Index: src/gui/image/qnativeimage_p.h =================================================================== --- src/gui/image/qnativeimage_p.h (revision 930645) qt-x11-opensource-src-4.5.2-qdoc3.patch: --- NEW FILE qt-x11-opensource-src-4.5.2-qdoc3.patch --- diff -up qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro --- qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro 2009-06-25 13:21:10.000000000 +0200 @@ -99,3 +99,7 @@ SOURCES += apigenerator.cpp \ webxmlgenerator.cpp \ yyindent.cpp +TARGET= qdoc3 +target.path = $$[QT_INSTALL_BINS] +INSTALLS += target + diff -up qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/tools.pro --- qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/tools.pro 2009-06-25 13:19:55.000000000 +0200 @@ -13,6 +13,7 @@ no-png { SUBDIRS += designer } SUBDIRS += linguist + SUBDIRS += qdoc3 wince*: SUBDIRS = qtestlib designer unix:!mac:!embedded:contains(QT_CONFIG, qt3support):SUBDIRS += qtconfig win32:!wince*:SUBDIRS += activeqt Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-10/qt.spec,v retrieving revision 1.230 retrieving revision 1.231 diff -u -p -r1.230 -r1.231 --- qt.spec 7 Jun 2009 21:26:22 -0000 1.230 +++ qt.spec 2 Jul 2009 13:42:38 -0000 1.231 @@ -11,8 +11,8 @@ Epoch: 1 %else Name: qt4 %endif -Version: 4.5.1 -Release: 13%{?dist} +Version: 4.5.2 +Release: 1%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -39,15 +39,14 @@ Patch3: qt-x11-opensource-src-4.2.2-mult Patch5: qt-all-opensource-src-4.4.0-rc1-as_IN-437440.patch # hack around gcc/ppc crasher, http://bugzilla.redhat.com/492185 Patch13: qt-x11-opensource-src-4.5.0-gcc_hack.patch -# qt fails to build on ia64: http://bugzilla.redhat.com/492174 -Patch14: qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch Patch15: qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch # include kde4 plugin path, http://bugzilla.redhat.com/498809 Patch16: qt-x11-opensource-src-4.5.1-kde4_plugins.patch +# fix the qt-copy patch 0274-shm-native-image-fix.diff to apply against 4.5.2 +Patch20: qt-copy-20090626-qt452.patch ## upstreamable bits -# http://bugzilla.redhat.com/485677 -Patch51: qt-x11-opensource-src-4.5.0-qdoc3.patch +Patch51: qt-x11-opensource-src-4.5.2-qdoc3.patch Patch52: qt-4.5-sparc64.patch # fix invalid inline assembly in qatomic_{i386,x86_64}.h (de)ref implementations # should fix the reference counting in qt_toX11Pixmap and thus the Kolourpaint @@ -58,7 +57,7 @@ Patch53: qt-x11-opensource-src-4.5.0-fix Patch54: qt-x11-opensource-src-4.5.1-mysql_config.patch ## qt-copy patches -%define qt_copy 20090522 +%define qt_copy 20090626 Source1: qt-copy-patches-svn_checkout.sh %{?qt_copy:Source2: qt-copy-patches-%{qt_copy}svn.tar.bz2} %{?qt_copy:Provides: qt-copy = %{qt_copy}} @@ -346,7 +345,13 @@ Qt libraries used for drawing widgets an %setup -q -n qt-x11-opensource-src-%{version} %{?qt_copy:-a 2} %if 0%{?qt_copy} +%patch20 -p1 -b .qt-copy-qt452 +echo "0234" >> patches/DISABLED echo "0250" >> patches/DISABLED +echo "0273" >> patches/DISABLED +echo "0279" >> patches/DISABLED +echo "0281" >> patches/DISABLED +echo "0282" >> patches/DISABLED test -x apply_patches && ./apply_patches %endif @@ -358,7 +363,6 @@ test -x apply_patches && ./apply_patches %endif %patch5 -p1 -b .bz#437440-as_IN-437440 %patch13 -p1 -b .gcc_hack -%patch14 -p1 -b .ia64_boilerplate %patch15 -p1 -b .enable_ft_lcdfilter %patch16 -p1 -b .kde4_plugins %patch51 -p1 -b .qdoc3 @@ -852,6 +856,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Thu Jul 02 2009 Than Ngo - 4.5.2-1 +- 4.5.2 + * Sat May 30 2009 Rex Dieter - 4.5.1-13 - -doc: Obsoletes: qt-doc < 1:4.5.1-4 (workaround bug #502401) Index: sources =================================================================== RCS file: /cvs/extras/rpms/qt/F-10/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 23 May 2009 05:01:44 -0000 1.52 +++ sources 2 Jul 2009 13:42:38 -0000 1.53 @@ -1,4 +1,4 @@ d9f511e4b51983b4e10eb58b320416d5 hi128-app-qt4-logo.png 6dcc0672ff9e60a6b83f95c5f42bec5b hi48-app-qt4-logo.png -afc43e566341cf3e5ed0bcb974f0c3b2 qt-x11-opensource-src-4.5.1.tar.bz2 -94ed40390723c75dbe88d80b7fa219e8 qt-copy-patches-20090522svn.tar.bz2 +28a7e8ac9805a6f614d2a27ee1a6ac9d qt-x11-opensource-src-4.5.2.tar.bz2 +9865efce56f62a441a76626226b5f946 qt-copy-patches-20090626svn.tar.bz2 --- qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch DELETED --- --- qt-x11-opensource-src-4.5.0-qdoc3.patch DELETED --- From than at fedoraproject.org Thu Jul 2 13:47:03 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 13:47:03 +0000 (UTC) Subject: rpms/qt/F-9 qt-copy-20090626-qt452.patch, NONE, 1.1 qt-x11-opensource-src-4.5.2-qdoc3.patch, NONE, 1.1 qt.spec, 1.201, 1.202 sources, 1.46, 1.47 Message-ID: <20090702134703.62B6D11C0418@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/qt/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7046 Modified Files: qt.spec sources Added Files: qt-copy-20090626-qt452.patch qt-x11-opensource-src-4.5.2-qdoc3.patch Log Message: 4.5.2 qt-copy-20090626-qt452.patch: --- NEW FILE qt-copy-20090626-qt452.patch --- diff -ur qt-copy/patches/0274-shm-native-image-fix.diff qt-copy-qt452/patches/0274-shm-native-image-fix.diff --- qt-copy/patches/0274-shm-native-image-fix.diff 2009-03-03 11:46:54.000000000 +0100 +++ qt-copy-qt452/patches/0274-shm-native-image-fix.diff 2009-06-26 03:26:36.000000000 +0200 @@ -15,15 +15,19 @@ =================================================================== --- src/gui/kernel/qapplication_x11.cpp (revision 934506) +++ src/gui/kernel/qapplication_x11.cpp (working copy) -@@ -1943,7 +1943,7 @@ void qt_init(QApplicationPrivate *priv, - // to determine whether the display is local or not (not 100 % accurate) +@@ -1955,9 +1955,9 @@ bool local = displayName.isEmpty() || displayName.lastIndexOf(QLatin1Char(':')) == 0; - if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) -- X11->use_mitshm = mitshm_pixmaps; -+ X11->use_mitshm = true; + if (local && (qgetenv("QT_X11_NO_MITSHM").toInt() == 0)) { + Visual *defaultVisual = DefaultVisual(X11->display, DefaultScreen(X11->display)); +- X11->use_mitshm = mitshm_pixmaps && (defaultVisual->red_mask == 0xff0000 +- && defaultVisual->green_mask == 0xff00 +- && defaultVisual->blue_mask == 0xff); ++ X11->use_mitshm = defaultVisual->red_mask == 0xff0000 ++ && defaultVisual->green_mask == 0xff00 ++ && defaultVisual->blue_mask == 0xff; + } } #endif // QT_NO_MITSHM - Index: src/gui/image/qnativeimage_p.h =================================================================== --- src/gui/image/qnativeimage_p.h (revision 930645) qt-x11-opensource-src-4.5.2-qdoc3.patch: --- NEW FILE qt-x11-opensource-src-4.5.2-qdoc3.patch --- diff -up qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro --- qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/qdoc3/qdoc3.pro 2009-06-25 13:21:10.000000000 +0200 @@ -99,3 +99,7 @@ SOURCES += apigenerator.cpp \ webxmlgenerator.cpp \ yyindent.cpp +TARGET= qdoc3 +target.path = $$[QT_INSTALL_BINS] +INSTALLS += target + diff -up qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 qt-x11-opensource-src-4.5.2/tools/tools.pro --- qt-x11-opensource-src-4.5.2/tools/tools.pro.qdoc3 2009-06-20 06:57:59.000000000 +0200 +++ qt-x11-opensource-src-4.5.2/tools/tools.pro 2009-06-25 13:19:55.000000000 +0200 @@ -13,6 +13,7 @@ no-png { SUBDIRS += designer } SUBDIRS += linguist + SUBDIRS += qdoc3 wince*: SUBDIRS = qtestlib designer unix:!mac:!embedded:contains(QT_CONFIG, qt3support):SUBDIRS += qtconfig win32:!wince*:SUBDIRS += activeqt Index: qt.spec =================================================================== RCS file: /cvs/extras/rpms/qt/F-9/qt.spec,v retrieving revision 1.201 retrieving revision 1.202 diff -u -p -r1.201 -r1.202 --- qt.spec 7 Jun 2009 21:39:48 -0000 1.201 +++ qt.spec 2 Jul 2009 13:47:03 -0000 1.202 @@ -11,8 +11,8 @@ Epoch: 1 %else Name: qt4 %endif -Version: 4.5.1 -Release: 13%{?dist} +Version: 4.5.2 +Release: 1%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -39,15 +39,14 @@ Patch3: qt-x11-opensource-src-4.2.2-mult Patch5: qt-all-opensource-src-4.4.0-rc1-as_IN-437440.patch # hack around gcc/ppc crasher, http://bugzilla.redhat.com/492185 Patch13: qt-x11-opensource-src-4.5.0-gcc_hack.patch -# qt fails to build on ia64: http://bugzilla.redhat.com/492174 -Patch14: qt-x11-opensource-src-4.5.0-ia64_boilerplate.patch Patch15: qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch # include kde4 plugin path, http://bugzilla.redhat.com/498809 Patch16: qt-x11-opensource-src-4.5.1-kde4_plugins.patch +# fix the qt-copy patch 0274-shm-native-image-fix.diff to apply against 4.5.2 +Patch20: qt-copy-20090626-qt452.patch ## upstreamable bits -# http://bugzilla.redhat.com/485677 -Patch51: qt-x11-opensource-src-4.5.0-qdoc3.patch +Patch51: qt-x11-opensource-src-4.5.2-qdoc3.patch Patch52: qt-4.5-sparc64.patch # fix invalid inline assembly in qatomic_{i386,x86_64}.h (de)ref implementations # should fix the reference counting in qt_toX11Pixmap and thus the Kolourpaint @@ -58,7 +57,7 @@ Patch53: qt-x11-opensource-src-4.5.0-fix Patch54: qt-x11-opensource-src-4.5.1-mysql_config.patch ## qt-copy patches -%define qt_copy 20090522 +%define qt_copy 20090626 Source1: qt-copy-patches-svn_checkout.sh %{?qt_copy:Source2: qt-copy-patches-%{qt_copy}svn.tar.bz2} %{?qt_copy:Provides: qt-copy = %{qt_copy}} @@ -346,7 +345,13 @@ Qt libraries used for drawing widgets an %setup -q -n qt-x11-opensource-src-%{version} %{?qt_copy:-a 2} %if 0%{?qt_copy} +%patch20 -p1 -b .qt-copy-qt452 +echo "0234" >> patches/DISABLED echo "0250" >> patches/DISABLED +echo "0273" >> patches/DISABLED +echo "0279" >> patches/DISABLED +echo "0281" >> patches/DISABLED +echo "0282" >> patches/DISABLED test -x apply_patches && ./apply_patches %endif @@ -358,7 +363,6 @@ test -x apply_patches && ./apply_patches %endif %patch5 -p1 -b .bz#437440-as_IN-437440 %patch13 -p1 -b .gcc_hack -%patch14 -p1 -b .ia64_boilerplate %patch15 -p1 -b .enable_ft_lcdfilter %patch16 -p1 -b .kde4_plugins %patch51 -p1 -b .qdoc3 @@ -852,6 +856,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Thu Jul 02 2009 Than Ngo - 4.5.2-1 +- 4.5.2 + * Sat May 30 2009 Rex Dieter - 4.5.1-13 - -doc: Obsoletes: qt-doc < 1:4.5.1-4 (workaround bug #502401) Index: sources =================================================================== RCS file: /cvs/extras/rpms/qt/F-9/sources,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sources 23 May 2009 05:12:46 -0000 1.46 +++ sources 2 Jul 2009 13:47:03 -0000 1.47 @@ -1,4 +1,4 @@ d9f511e4b51983b4e10eb58b320416d5 hi128-app-qt4-logo.png 6dcc0672ff9e60a6b83f95c5f42bec5b hi48-app-qt4-logo.png -afc43e566341cf3e5ed0bcb974f0c3b2 qt-x11-opensource-src-4.5.1.tar.bz2 -94ed40390723c75dbe88d80b7fa219e8 qt-copy-patches-20090522svn.tar.bz2 +28a7e8ac9805a6f614d2a27ee1a6ac9d qt-x11-opensource-src-4.5.2.tar.bz2 +9865efce56f62a441a76626226b5f946 qt-copy-patches-20090626svn.tar.bz2 From ghosler at fedoraproject.org Thu Jul 2 13:57:53 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 13:57:53 +0000 (UTC) Subject: rpms/gyachi/EL-4 gyachi.spec,1.7,1.8 Message-ID: <20090702135753.BBD8C11C0418@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9516 Modified Files: gyachi.spec Log Message: removed obsoleted patchs (patches already in source). Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-4/gyachi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gyachi.spec 2 Jul 2009 13:41:20 -0000 1.7 +++ gyachi.spec 2 Jul 2009 13:57:23 -0000 1.8 @@ -17,7 +17,7 @@ Name: gyachi Version: 1.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Yahoo! chat client with Webcam and voice support Group: Applications/Internet @@ -25,8 +25,8 @@ License: GPLv2 URL: http://gyachi.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz #Patch0: configure.patch -Patch0: theme_support.patch -Patch1: stdio.patch +#Patch0: theme_support.patch +#Patch1: stdio.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf automake gawk sed @@ -178,8 +178,8 @@ Requires: %{name} = %{version}-%{r %prep %setup -q -%patch0 -p1 -%patch1 -p1 +#%patch0 -p1 +#%patch1 -p1 %build From lonetwin at fedoraproject.org Thu Jul 2 14:04:10 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Thu, 2 Jul 2009 14:04:10 +0000 (UTC) Subject: rpms/ldd-pdf/devel import.log,1.1,1.2 ldd-pdf.spec,1.1,1.2 Message-ID: <20090702140410.CEE9211C0418@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10866/devel Modified Files: import.log ldd-pdf.spec Log Message: Added the dist tag to the rpm Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 1 Jul 2009 13:23:58 -0000 1.1 +++ import.log 2 Jul 2009 14:03:40 -0000 1.2 @@ -1 +1,2 @@ ldd-pdf-3_0-2:HEAD:ldd-pdf-3.0-2.src.rpm:1246454599 +ldd-pdf-3_0-3_fc10:HEAD:ldd-pdf-3.0-3.fc10.src.rpm:1246543333 Index: ldd-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/devel/ldd-pdf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ldd-pdf.spec 1 Jul 2009 13:23:58 -0000 1.1 +++ ldd-pdf.spec 2 Jul 2009 14:03:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: ldd-pdf Version: 3.0 -Release: 2 +Release: 3%{?dist} Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/ %changelog +* Thu Jul 02 2009 Steven Fernandez 3.0-3 +- Added the dist tag + * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name From spot at fedoraproject.org Thu Jul 2 14:11:01 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 14:11:01 +0000 (UTC) Subject: rpms/python-twitter/devel .cvsignore, 1.2, 1.3 python-twitter.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090702141101.73BEC11C0418@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-twitter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12486 Modified Files: .cvsignore python-twitter.spec sources Log Message: 0.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-twitter/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 20 Nov 2008 19:05:21 -0000 1.2 +++ .cvsignore 2 Jul 2009 14:11:01 -0000 1.3 @@ -1 +1 @@ -python-twitter-0.5.tar.gz +python-twitter-0.6.tar.gz Index: python-twitter.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twitter/devel/python-twitter.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-twitter.spec 27 Feb 2009 00:03:14 -0000 1.3 +++ python-twitter.spec 2 Jul 2009 14:11:01 -0000 1.4 @@ -1,13 +1,12 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-twitter -Summary: A python wrapper around the Twitter API -Version: 0.5 -Release: 3%{?dist} +Summary: A python wrapper around the Twitter API +Version: 0.6 +Release: 1%{?dist} License: ASL 2.0 Group: System Environment/Libraries Source0: http://python-twitter.googlecode.com/files/%{name}-%{version}.tar.gz -Patch0: python-twitter-0.5-fixjsontests.patch URL: http://code.google.com/p/python-twitter/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -23,8 +22,6 @@ easier for python programmers to use. %prep %setup -q -%patch0 -p1 -chmod -x README %build %{__python} setup.py build @@ -48,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/python_twitter-%{version}-py*.egg-info %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 0.6-1 +- update to 0.6 + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-twitter/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 20 Nov 2008 19:05:21 -0000 1.2 +++ sources 2 Jul 2009 14:11:01 -0000 1.3 @@ -1 +1 @@ -d4fe92ca630a7339a064cef8e91af2b9 python-twitter-0.5.tar.gz +e1f5c50c60c74944d29ce28178972b95 python-twitter-0.6.tar.gz From dodji at fedoraproject.org Thu Jul 2 14:21:56 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 14:21:56 +0000 (UTC) Subject: rpms/nemiver/devel sources,1.17,1.18 nemiver.spec,1.25,1.26 Message-ID: <20090702142156.CA7AB11C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14491 Modified Files: sources nemiver.spec Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 2 May 2009 23:19:24 -0000 1.17 +++ sources 2 Jul 2009 14:21:26 -0000 1.18 @@ -1 +1,2 @@ eeb0f56cf70d26746f79486bd5437ac7 nemiver-0.6.7.tar.bz2 +b9606d7cde107c1a49dcb4053fb22546 nemiver-0.7.0.tar.bz2 Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/devel/nemiver.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- nemiver.spec 2 May 2009 23:19:24 -0000 1.25 +++ nemiver.spec 2 Jul 2009 14:21:26 -0000 1.26 @@ -1,5 +1,5 @@ Name: nemiver -Version: 0.6.7 +Version: 0.7.0 Release: 1%{?dist} Summary: A GNOME C/C++ Debugger @@ -143,6 +143,9 @@ scrollkeeper-update -q ||: %{_mandir}/man?/%{name}.* %changelog +* Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 +- Update to new upstream release (0.7.0) + * Sat May 02 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) From lonetwin at fedoraproject.org Thu Jul 2 14:24:36 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Thu, 2 Jul 2009 14:24:36 +0000 (UTC) Subject: rpms/ldd-pdf/F-10 import.log,1.1,1.2 ldd-pdf.spec,1.1,1.2 Message-ID: <20090702142436.1784011C0418@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15118/F-10 Modified Files: import.log ldd-pdf.spec Log Message: Added the dist tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 1 Jul 2009 13:33:31 -0000 1.1 +++ import.log 2 Jul 2009 14:24:35 -0000 1.2 @@ -1 +1,2 @@ ldd-pdf-3_0-2:F-10:ldd-pdf-3.0-2.src.rpm:1246455185 +ldd-pdf-3_0-3_fc10:F-10:ldd-pdf-3.0-3.fc10.src.rpm:1246544432 Index: ldd-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-10/ldd-pdf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ldd-pdf.spec 1 Jul 2009 13:33:31 -0000 1.1 +++ ldd-pdf.spec 2 Jul 2009 14:24:35 -0000 1.2 @@ -1,6 +1,6 @@ Name: ldd-pdf Version: 3.0 -Release: 2 +Release: 3%{?dist} Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/ %changelog +* Thu Jul 02 2009 Steven Fernandez 3.0-3 +- Added the dist tag + * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name From ajax at fedoraproject.org Thu Jul 2 14:32:28 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 14:32:28 +0000 (UTC) Subject: rpms/xorg-x11-drv-cirrus/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-cirrus.spec, 1.29, 1.30 Message-ID: <20090702143228.E882911C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17758 Modified Files: .cvsignore sources xorg-x11-drv-cirrus.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.3.1-1 - cirrus 1.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 18 May 2009 14:34:27 -0000 1.9 +++ .cvsignore 2 Jul 2009 14:32:28 -0000 1.10 @@ -1 +1,2 @@ xf86-video-cirrus-1.3.0.tar.bz2 +xf86-video-cirrus-1.3.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 18 May 2009 14:34:27 -0000 1.9 +++ sources 2 Jul 2009 14:32:28 -0000 1.10 @@ -1 +1 @@ -cb614f24698188beb399bd35f1d8906e xf86-video-cirrus-1.3.0.tar.bz2 +8d1b013dc983670fbf5aadb5a8a13bd4 xf86-video-cirrus-1.3.1.tar.bz2 Index: xorg-x11-drv-cirrus.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel/xorg-x11-drv-cirrus.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-drv-cirrus.spec 22 Jun 2009 21:56:02 -0000 1.29 +++ xorg-x11-drv-cirrus.spec 2 Jul 2009 14:32:28 -0000 1.30 @@ -4,8 +4,8 @@ Summary: Xorg X11 cirrus video driver Name: xorg-x11-drv-cirrus -Version: 1.3.0 -Release: 2%{?dist} +Version: 1.3.1 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -17,7 +17,6 @@ Source0: ftp://ftp.x.org/pub/individua Source1: cirrus.xinf Patch0: cirrus-1.2.0-qemu.patch -Patch1: abi.patch BuildRequires: xorg-x11-server-sdk >= 1.5.99.902 BuildRequires: xorg-x11-util-macros >= 1.1.5 @@ -31,7 +30,6 @@ X.Org X11 cirrus video driver. %prep %setup -q -n %{tarball}-%{version} %patch0 -p1 -b .qemu -%patch1 -p1 -b .abi %build %configure --disable-static @@ -61,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/cirrus.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.3.1-1 +- cirrus 1.3.1 + * Mon Jun 22 2009 Adam Jackson 1.3.0-2 - Fix ABI for new server From lonetwin at fedoraproject.org Thu Jul 2 14:35:09 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Thu, 2 Jul 2009 14:35:09 +0000 (UTC) Subject: rpms/ldd-pdf/F-11 import.log,1.1,1.2 ldd-pdf.spec,1.1,1.2 Message-ID: <20090702143509.AA7B511C0418@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/ldd-pdf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18265/F-11 Modified Files: import.log ldd-pdf.spec Log Message: Added dist tag Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 1 Jul 2009 13:35:44 -0000 1.1 +++ import.log 2 Jul 2009 14:34:39 -0000 1.2 @@ -1 +1,2 @@ ldd-pdf-3_0-2:F-11:ldd-pdf-3.0-2.src.rpm:1246455301 +ldd-pdf-3_0-3_fc10:F-11:ldd-pdf-3.0-3.fc10.src.rpm:1246545207 Index: ldd-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/F-11/ldd-pdf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ldd-pdf.spec 1 Jul 2009 13:35:44 -0000 1.1 +++ ldd-pdf.spec 2 Jul 2009 14:34:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: ldd-pdf Version: 3.0 -Release: 2 +Release: 3%{?dist} Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/ %changelog +* Thu Jul 02 2009 Steven Fernandez 3.0-3 +- Added the dist tag + * Wed Jul 01 2009 Steven Fernandez 3.0-2 - Added the examples source code, changed name and added version to the installation directory name From kdudka at fedoraproject.org Thu Jul 2 14:37:49 2009 From: kdudka at fedoraproject.org (Kamil Dudka) Date: Thu, 2 Jul 2009 14:37:49 +0000 (UTC) Subject: rpms/curl/devel curl.spec,1.102,1.103 Message-ID: <20090702143749.4E63811C0418@cvs1.fedora.phx.redhat.com> Author: kdudka Update of /cvs/extras/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18944 Modified Files: curl.spec Log Message: run test suite after build enable built-in manual Index: curl.spec =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- curl.spec 24 Jun 2009 14:14:52 -0000 1.102 +++ curl.spec 2 Jul 2009 14:37:19 -0000 1.103 @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.5 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2 @@ -14,6 +14,7 @@ Provides: webclient URL: http://curl.haxx.se/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf +BuildRequires: groff BuildRequires: pkgconfig, libidn-devel, zlib-devel, libssh2-devel BuildRequires: nss-devel >= 3.11.7-7, openldap-devel, krb5-devel @@ -66,7 +67,7 @@ export CPPFLAGS="$(pkg-config --cflags n %configure --without-ssl --with-nss=%{_prefix} --enable-ipv6 \ --with-ca-bundle=%{_sysconfdir}/pki/tls/certs/ca-bundle.crt \ --with-gssapi=%{_prefix}/kerberos --with-libidn \ - --enable-ldaps --disable-static --with-libssh2 + --enable-ldaps --disable-static --with-libssh2 --enable-manual sed -i -e 's,-L/usr/lib ,,g;s,-L/usr/lib64 ,,g;s,-L/usr/lib$,,g;s,-L/usr/lib64$,,g' \ Makefile libcurl.pc # Remove bogus rpath @@ -76,6 +77,9 @@ sed -i \ make %{?_smp_mflags} +%check +make %{?_smp_mflags} check + %install rm -rf $RPM_BUILD_ROOT @@ -132,6 +136,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Thu Jul 02 2009 Kamil Dudka 7.19.5-5 +- run test suite after build +- enable built-in manual + * Wed Jun 24 2009 Kamil Dudka 7.19.5-4 - fix bug introduced by the last build (#504857) From kwizart at fedoraproject.org Thu Jul 2 14:38:51 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Thu, 2 Jul 2009 14:38:51 +0000 (UTC) Subject: rpms/directfb/devel directfb.spec,1.31,1.32 Message-ID: <20090702143851.0C9F811C0418@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/directfb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19320 Modified Files: directfb.spec Log Message: Fixed a typo Index: directfb.spec =================================================================== RCS file: /cvs/pkgs/rpms/directfb/devel/directfb.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- directfb.spec 30 Jun 2009 12:32:47 -0000 1.31 +++ directfb.spec 2 Jul 2009 14:38:50 -0000 1.32 @@ -4,7 +4,7 @@ Summary: Graphics abstraction library for the Linux Framebuffer Device Name: directfb Version: %{major_ver}%{minor_ver} -Release: 1%{?dist} +Release: 1%{?dist}.1 Group: System Environment/Libraries License: LGPLv2+ URL: http://www.directfb.org/ @@ -166,7 +166,7 @@ make check %{_libdir}/libdirect.so %{_libdir}/libfusion.so %{_libdir}/libuniquewm.so -%{_mandir}libGL-devel/man1/directfb-csource.1* +%{_mandir}/man1/directfb-csource.1* %changelog From ghosler at fedoraproject.org Thu Jul 2 14:10:33 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Thu, 2 Jul 2009 14:10:33 +0000 (UTC) Subject: rpms/gyachi/EL-5 .cvsignore, 1.9, 1.10 gyachi.spec, 1.19, 1.20 sources, 1.9, 1.10 Message-ID: <20090702141033.E32B011C0418@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12124 Modified Files: .cvsignore gyachi.spec sources Log Message: Fixed Yahoo PM chat problem (Fedora Bugzilla [Bug 508576]) Fixed gyachi crash in html page, when click view (Fedora Bugzilla [Bug 508490]) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 27 May 2009 11:54:40 -0000 1.9 +++ .cvsignore 2 Jul 2009 14:10:03 -0000 1.10 @@ -1 +1 @@ -gyachi-1.1.71.tar.gz +gyachi-1.2.0.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/gyachi.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- gyachi.spec 27 May 2009 14:33:18 -0000 1.19 +++ gyachi.spec 2 Jul 2009 14:10:03 -0000 1.20 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.1.71 +Version: 1.2.0 Release: 5%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -35,7 +35,7 @@ License: GPLv2 URL: http://gyachi.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz #Patch0: configure.patch -Patch1: version-1.1.71.patch +#Patch1: version-1.1.71.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -264,7 +264,7 @@ This theme uses the pidgin icons, and is %prep %setup -q #%patch0 -p1 -%patch1 -p1 +#%patch1 -p1 %build @@ -398,7 +398,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -*Thu May 21 2009 Gregory D Hosler - 1.1.71.3 +* Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 +- Fixed Yahoo PM text problem + +* Thu May 21 2009 Gregory D Hosler - 1.1.71-3 - Update from upstream * Sat Jan 03 2009 Gregory D Hosler - 1.1.61.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 27 May 2009 11:54:40 -0000 1.9 +++ sources 2 Jul 2009 14:10:03 -0000 1.10 @@ -1 +1 @@ -49852abe4e9ae3f95922340b526510ab gyachi-1.1.71.tar.gz +80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz From than at fedoraproject.org Thu Jul 2 14:43:56 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 14:43:56 +0000 (UTC) Subject: rpms/mozplugger/F-11 mozplugger.spec,1.30,1.31 Message-ID: <20090702144356.1A68D11C0418@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/mozplugger/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29448 Modified Files: mozplugger.spec Log Message: fix #469257, selinux policy and mozplugger do not get along Index: mozplugger.spec =================================================================== RCS file: /cvs/extras/rpms/mozplugger/F-11/mozplugger.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mozplugger.spec 14 May 2009 14:23:15 -0000 1.30 +++ mozplugger.spec 2 Jul 2009 14:43:25 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -10,8 +10,10 @@ Source0: http://mozplugger.mozdev.org/mo Patch1: mozplugger-1.12.1-lib64.patch Requires: sox -BuildPrereq: libX11-devel -BuildPrereq: libXt-devel +Requires: mozilla-filesystem + +BuildRequires: libX11-devel +BuildRequires: libXt-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Obsoletes: plugger @@ -43,10 +45,13 @@ rm -rf %{buildroot} %doc README COPYING %config /etc/mozpluggerrc %{_bindir}/* -%{_libdir}/mozilla +%{_libdir}/mozilla/plugins/mozplugger.so %{_mandir}/man7/mozplugger.7* %changelog +* Thu Jul 02 2009 Than Ngo - 1.12.1-2 +- fix #469257, selinux policy and mozplugger do not get along + * Thu May 14 2009 Than Ngo - 1.12.1-1 - 1.12.1 From than at fedoraproject.org Thu Jul 2 14:46:26 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 14:46:26 +0000 (UTC) Subject: rpms/mozplugger/F-10 mozplugger.spec,1.28,1.29 Message-ID: <20090702144626.033CA11C0418@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/mozplugger/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29995 Modified Files: mozplugger.spec Log Message: fix #469257, selinux policy and mozplugger do not get along Index: mozplugger.spec =================================================================== RCS file: /cvs/extras/rpms/mozplugger/F-10/mozplugger.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- mozplugger.spec 15 Jun 2009 10:38:40 -0000 1.28 +++ mozplugger.spec 2 Jul 2009 14:45:55 -0000 1.29 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -10,8 +10,10 @@ Source0: http://mozplugger.mozdev.org/mo Patch1: mozplugger-1.12.1-lib64.patch Requires: sox -BuildPrereq: libX11-devel -BuildPrereq: libXt-devel +Requires: mozilla-filesystem + +BuildRequires: libX11-devel +BuildRequires: libXt-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Obsoletes: plugger @@ -43,10 +45,13 @@ rm -rf %{buildroot} %doc README COPYING %config /etc/mozpluggerrc %{_bindir}/* -%{_libdir}/mozilla +%{_libdir}/mozilla/plugins/mozplugger.so %{_mandir}/man7/mozplugger.7* %changelog +* Thu Jul 02 2009 Than Ngo - 1.12.1-2 +- fix #469257, selinux policy and mozplugger do not get along + * Thu May 14 2009 Than Ngo - 1.12.1-1 - 1.12.1 From clumens at fedoraproject.org Thu Jul 2 14:46:56 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Thu, 2 Jul 2009 14:46:56 +0000 (UTC) Subject: rpms/pykickstart/devel .cvsignore, 1.107, 1.108 pykickstart.spec, 1.117, 1.118 sources, 1.116, 1.117 Message-ID: <20090702144656.2A14511C0418@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30304 Modified Files: .cvsignore pykickstart.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/.cvsignore,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- .cvsignore 29 Apr 2009 19:07:05 -0000 1.107 +++ .cvsignore 2 Jul 2009 14:46:55 -0000 1.108 @@ -41,3 +41,4 @@ pykickstart-1.50.tar.gz pykickstart-1.51.tar.gz pykickstart-1.52.tar.gz pykickstart-1.53.tar.gz +pykickstart-1.55.tar.gz Index: pykickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/pykickstart.spec,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- pykickstart.spec 29 Apr 2009 19:07:05 -0000 1.117 +++ pykickstart.spec 2 Jul 2009 14:46:55 -0000 1.118 @@ -3,7 +3,7 @@ Summary: A python library for manipulating kickstart files Name: pykickstart Url: http://fedoraproject.org/wiki/pykickstart -Version: 1.53 +Version: 1.55 Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from @@ -45,6 +45,18 @@ rm -rf %{buildroot} %{_bindir}/ksverdiff %changelog +* Thu Jul 02 2009 Chris Lumens - 1.55-1 +- Add support for the group command to F12 (#509119). +- RHEL5 now supports RAID 10. +- The f12 hander class should be called F12Handler. (jgranado) +- Remove bootloader --lba32. +- Add a new version of the driverdisk command without --type=. +- Add initial support for F12. +- Fetch the programmers-guide from the wiki now. + +* Mon May 18 2009 Chris Lumens - 1.54-1 +- Make sure the F11 handler gets used for "partition" and "part" (#501020). + * Wed Apr 29 2009 Chris Lumens - 1.53-1 - Move lineno= from KSOptionParser.__init__ to parse_args (#497149). (clumens) - Use the F11 version of the partition command. (clumens) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/sources,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- sources 29 Apr 2009 19:07:05 -0000 1.116 +++ sources 2 Jul 2009 14:46:55 -0000 1.117 @@ -1 +1 @@ -0e97f845154a2d46446dc7838625c52e pykickstart-1.53.tar.gz +2241cebd8b089307903115bcfa1812b8 pykickstart-1.55.tar.gz From dodji at fedoraproject.org Thu Jul 2 14:47:26 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 14:47:26 +0000 (UTC) Subject: rpms/nemiver/F-10 .cvsignore, 1.15, 1.16 nemiver.spec, 1.23, 1.24 sources, 1.15, 1.16 Message-ID: <20090702144726.C981711C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30161 Modified Files: .cvsignore nemiver.spec sources Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-10/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 2 May 2009 23:25:51 -0000 1.15 +++ .cvsignore 2 Jul 2009 14:46:56 -0000 1.16 @@ -1 +1,2 @@ nemiver-0.6.7.tar.bz2 +nemiver-0.7.0.tar.bz2 Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-10/nemiver.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- nemiver.spec 2 May 2009 23:25:51 -0000 1.23 +++ nemiver.spec 2 Jul 2009 14:46:56 -0000 1.24 @@ -1,5 +1,5 @@ Name: nemiver -Version: 0.6.7 +Version: 0.7.0 Release: 1%{?dist} Summary: A GNOME C/C++ Debugger @@ -159,19 +159,22 @@ scrollkeeper-update -q ||: %changelog -* Sat May 02 2009 Dodji Seketeli - 0.6.7-1 +* Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 +- Update to new upstream release (0.6.7) + +* Sat May 02 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) - Do not package *.la and *.a files from the plugin directory -* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 +* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 - Update to new upstream release (0.6.6) -* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 +* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 - Update to new upstream release (0.6.5) - BuildRequires intltool - Update link to project page -* Fri Feb 20 2009 Dodji Seketeli - 0.6.4-2 +* Fri Feb 20 2009 Dodji Seketeli - 0.6.4-2 - Build against ghex 2.24 to fix crash #571099 * Sun Jan 18 2009 Peter Gordon - 0.6.4-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-10/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 2 May 2009 23:25:51 -0000 1.15 +++ sources 2 Jul 2009 14:46:56 -0000 1.16 @@ -1 +1,2 @@ eeb0f56cf70d26746f79486bd5437ac7 nemiver-0.6.7.tar.bz2 +b9606d7cde107c1a49dcb4053fb22546 nemiver-0.7.0.tar.bz2 From nphilipp at fedoraproject.org Thu Jul 2 14:10:30 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 2 Jul 2009 14:10:30 +0000 (UTC) Subject: rpms/gegl/devel gegl.spec,1.15,1.16 Message-ID: <20090702141030.9A11C11C0418@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gegl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12237 Modified Files: gegl.spec Log Message: remove *.la files in %%{_libdir}/gegl-*/ (#509292) Index: gegl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/gegl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gegl.spec 2 Jul 2009 12:46:42 -0000 1.15 +++ gegl.spec 2 Jul 2009 14:10:30 -0000 1.16 @@ -74,6 +74,7 @@ rm -rf %{buildroot} make DESTDIR=%{buildroot} install INSTALL='install -p' rm -f %{buildroot}%{_libdir}/*.la +rm -f %{buildroot}%{_libdir}/gegl-0.1/*.la %check make check @@ -90,7 +91,7 @@ rm -rf %{buildroot} %doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README %{_bindir}/gegl %{_libdir}/*.so.* -%{_libdir}/gegl-0.0/ +%{_libdir}/gegl-0.1/ %files devel %defattr(-, root, root, -) @@ -103,6 +104,7 @@ rm -rf %{buildroot} * Thu Jul 02 2009 Nils Philippsen - 0.1.0-1 - version 0.1.0 - use "--disable-gtk-doc" to avoid rebuilding documentation (#481404) +- remove *.la files in %%{_libdir}/gegl-*/ (#509292) * Thu Jun 04 2009 Deji Akingunola - 0.0.22-5 - Apply patch to build with babl-0.1.0 API changes From than at fedoraproject.org Thu Jul 2 14:47:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 2 Jul 2009 14:47:57 +0000 (UTC) Subject: rpms/mozplugger/F-9 mozplugger.spec,1.27,1.28 Message-ID: <20090702144757.22BBF11C0418@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/mozplugger/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30484 Modified Files: mozplugger.spec Log Message: fix #469257, selinux policy and mozplugger do not get along Index: mozplugger.spec =================================================================== RCS file: /cvs/extras/rpms/mozplugger/F-9/mozplugger.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mozplugger.spec 15 Jun 2009 11:09:46 -0000 1.27 +++ mozplugger.spec 2 Jul 2009 14:47:26 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -10,8 +10,10 @@ Source0: http://mozplugger.mozdev.org/mo Patch1: mozplugger-1.12.1-lib64.patch Requires: sox -BuildPrereq: libX11-devel -BuildPrereq: libXt-devel +Requires: mozilla-filesystem + +BuildRequires: libX11-devel +BuildRequires: libXt-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Obsoletes: plugger @@ -43,10 +45,13 @@ rm -rf %{buildroot} %doc README COPYING %config /etc/mozpluggerrc %{_bindir}/* -%{_libdir}/mozilla +%{_libdir}/mozilla/plugins/mozplugger.so %{_mandir}/man7/mozplugger.7* %changelog +* Thu Jul 02 2009 Than Ngo - 1.12.1-2 +- fix #469257, selinux policy and mozplugger do not get along + * Thu May 14 2009 Than Ngo - 1.12.1-1 - 1.12.1 From dodji at fedoraproject.org Thu Jul 2 14:48:27 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 14:48:27 +0000 (UTC) Subject: rpms/nemiver/F-10 nemiver.spec,1.24,1.25 Message-ID: <20090702144827.CA2D711C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30638 Modified Files: nemiver.spec Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Fixed a typo in version number. Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-10/nemiver.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- nemiver.spec 2 Jul 2009 14:46:56 -0000 1.24 +++ nemiver.spec 2 Jul 2009 14:48:27 -0000 1.25 @@ -160,7 +160,7 @@ scrollkeeper-update -q ||: %changelog * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 -- Update to new upstream release (0.6.7) +- Update to new upstream release (0.7.0) * Sat May 02 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) From dodji at fedoraproject.org Thu Jul 2 14:49:41 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 14:49:41 +0000 (UTC) Subject: rpms/nemiver/devel .cvsignore,1.17,1.18 Message-ID: <20090702144941.58CEB11C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30962 Modified Files: .cvsignore Log Message: Updated Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 2 May 2009 23:19:24 -0000 1.17 +++ .cvsignore 2 Jul 2009 14:49:11 -0000 1.18 @@ -1 +1,2 @@ nemiver-0.6.7.tar.bz2 +nemiver-0.7.0.tar.bz2 From spot at fedoraproject.org Thu Jul 2 14:56:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 14:56:17 +0000 (UTC) Subject: rpms/google-perftools/F-10 google-perftools.spec, 1.16, 1.17 sources, 1.9, 1.10 Message-ID: <20090702145618.00B0A11C0418@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/google-perftools/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32415/F-10 Modified Files: google-perftools.spec sources Log Message: 1.3 Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/F-10/google-perftools.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- google-perftools.spec 20 May 2009 20:24:33 -0000 1.16 +++ google-perftools.spec 2 Jul 2009 14:55:47 -0000 1.17 @@ -1,5 +1,5 @@ Name: google-perftools -Version: 1.2 +Version: 1.3 Release: 1%{?dist} License: BSD Group: Development/Tools @@ -69,6 +69,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 1.3-1 +- update to 1.3 + * Wed May 20 2009 Tom "spot" Callaway - 1.2-1 - update to 1.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 May 2009 20:24:33 -0000 1.9 +++ sources 2 Jul 2009 14:55:47 -0000 1.10 @@ -1 +1 @@ -d0c97931f2f13ce82a65fba03df57ea6 google-perftools-1.2.tar.gz +eaa485163a55f2f64284d27627778a2f google-perftools-1.3.tar.gz From spot at fedoraproject.org Thu Jul 2 14:56:18 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 14:56:18 +0000 (UTC) Subject: rpms/google-perftools/devel .cvsignore, 1.9, 1.10 google-perftools.spec, 1.17, 1.18 sources, 1.9, 1.10 Message-ID: <20090702145618.8E16911C048A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/google-perftools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32415/devel Modified Files: .cvsignore google-perftools.spec sources Log Message: 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 20 May 2009 20:24:34 -0000 1.9 +++ .cvsignore 2 Jul 2009 14:55:48 -0000 1.10 @@ -1 +1 @@ -google-perftools-1.2.tar.gz +google-perftools-1.3.tar.gz Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/devel/google-perftools.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- google-perftools.spec 20 May 2009 20:24:34 -0000 1.17 +++ google-perftools.spec 2 Jul 2009 14:55:48 -0000 1.18 @@ -1,5 +1,5 @@ Name: google-perftools -Version: 1.2 +Version: 1.3 Release: 1%{?dist} License: BSD Group: Development/Tools @@ -69,6 +69,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 1.3-1 +- update to 1.3 + * Wed May 20 2009 Tom "spot" Callaway - 1.2-1 - update to 1.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 May 2009 20:24:34 -0000 1.9 +++ sources 2 Jul 2009 14:55:48 -0000 1.10 @@ -1 +1 @@ -d0c97931f2f13ce82a65fba03df57ea6 google-perftools-1.2.tar.gz +eaa485163a55f2f64284d27627778a2f google-perftools-1.3.tar.gz From spot at fedoraproject.org Thu Jul 2 14:56:18 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 14:56:18 +0000 (UTC) Subject: rpms/google-perftools/F-11 google-perftools.spec, 1.17, 1.18 sources, 1.9, 1.10 Message-ID: <20090702145618.3DCB111C0418@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/google-perftools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32415/F-11 Modified Files: google-perftools.spec sources Log Message: 1.3 Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/F-11/google-perftools.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- google-perftools.spec 20 May 2009 20:24:33 -0000 1.17 +++ google-perftools.spec 2 Jul 2009 14:55:47 -0000 1.18 @@ -1,5 +1,5 @@ Name: google-perftools -Version: 1.2 +Version: 1.3 Release: 1%{?dist} License: BSD Group: Development/Tools @@ -69,6 +69,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 1.3-1 +- update to 1.3 + * Wed May 20 2009 Tom "spot" Callaway - 1.2-1 - update to 1.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 May 2009 20:24:33 -0000 1.9 +++ sources 2 Jul 2009 14:55:48 -0000 1.10 @@ -1 +1 @@ -d0c97931f2f13ce82a65fba03df57ea6 google-perftools-1.2.tar.gz +eaa485163a55f2f64284d27627778a2f google-perftools-1.3.tar.gz From ajax at fedoraproject.org Thu Jul 2 14:57:42 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 14:57:42 +0000 (UTC) Subject: rpms/xorg-x11-drv-cirrus/devel abi.patch,1.1,NONE Message-ID: <20090702145742.810B711C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1050 Removed Files: abi.patch Log Message: dead patch --- abi.patch DELETED --- From clumens at fedoraproject.org Thu Jul 2 14:58:43 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Thu, 2 Jul 2009 14:58:43 +0000 (UTC) Subject: rpms/pykickstart/devel sources,1.117,1.118 Message-ID: <20090702145843.6945D11C0418@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1194 Modified Files: sources Log Message: Uploaded a fixed tarball. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/sources,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- sources 2 Jul 2009 14:46:55 -0000 1.117 +++ sources 2 Jul 2009 14:58:13 -0000 1.118 @@ -1 +1 @@ -2241cebd8b089307903115bcfa1812b8 pykickstart-1.55.tar.gz +f811c0e8f1158a3b24bd446e8eaa1b80 pykickstart-1.55.tar.gz From ajax at fedoraproject.org Thu Jul 2 15:10:34 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:10:34 +0000 (UTC) Subject: rpms/xorg-x11-drv-dummy/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-dummy.spec, 1.22, 1.23 Message-ID: <20090702151034.E357A11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3744 Modified Files: .cvsignore sources xorg-x11-drv-dummy.spec Log Message: * Thu Jul 02 2009 Adam Jackson 0.3.2-1 - dummy 0.3.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 24 Feb 2009 15:06:04 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:10:03 -0000 1.10 @@ -1 +1,2 @@ xf86-video-dummy-0.3.1.tar.bz2 +xf86-video-dummy-0.3.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 24 Feb 2009 15:06:04 -0000 1.9 +++ sources 2 Jul 2009 15:10:03 -0000 1.10 @@ -1 +1 @@ -e7920f4820d3450e9e5cb454fc620895 xf86-video-dummy-0.3.1.tar.bz2 +2a6f1f07462fbe336865068cd69c8593 xf86-video-dummy-0.3.2.tar.bz2 Index: xorg-x11-drv-dummy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel/xorg-x11-drv-dummy.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-dummy.spec 26 Feb 2009 10:44:48 -0000 1.22 +++ xorg-x11-drv-dummy.spec 2 Jul 2009 15:10:03 -0000 1.23 @@ -4,8 +4,8 @@ Summary: Xorg X11 dummy video driver Name: xorg-x11-drv-dummy -Version: 0.3.1 -Release: 2%{?dist} +Version: 0.3.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/dummy_drv.so %changelog +* Thu Jul 02 2009 Adam Jackson 0.3.2-1 +- dummy 0.3.2 + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:16:12 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:16:12 +0000 (UTC) Subject: rpms/xorg-x11-drv-glint/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-glint.spec, 1.22, 1.23 Message-ID: <20090702151612.92DC711C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-glint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4954 Modified Files: .cvsignore sources xorg-x11-drv-glint.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.2.3-1 - glint 1.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-glint/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 22 Dec 2008 04:37:48 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:15:42 -0000 1.10 @@ -1 +1,2 @@ xf86-video-glint-1.2.2.tar.bz2 +xf86-video-glint-1.2.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-glint/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Dec 2008 04:37:48 -0000 1.9 +++ sources 2 Jul 2009 15:15:42 -0000 1.10 @@ -1 +1 @@ -4295a46a75fa98470c6dfb0e1a4f7e9f xf86-video-glint-1.2.2.tar.bz2 +639a327ad7d75f62cdf6ad28a37c934e xf86-video-glint-1.2.3.tar.bz2 Index: xorg-x11-drv-glint.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-glint/devel/xorg-x11-drv-glint.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-glint.spec 26 Feb 2009 10:49:32 -0000 1.22 +++ xorg-x11-drv-glint.spec 2 Jul 2009 15:15:42 -0000 1.23 @@ -8,8 +8,8 @@ Summary: Xorg X11 glint video driver Name: xorg-x11-drv-glint -Version: 1.2.2 -Release: 2%{?dist} +Version: 1.2.3 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -20,14 +20,14 @@ Source1: glint.xinf ExcludeArch: s390 s390x -BuildRequires: xorg-x11-server-sdk >= 1.3.0.0-6 +BuildRequires: xorg-x11-server-devel >= 1.6.0 %if %{with_dri} BuildRequires: mesa-libGL-devel >= 6.4-4 BuildRequires: libdrm-devel >= 2.0-1 %endif Requires: hwdata -Requires: xorg-x11-server-Xorg >= 1.3.0.0-6 +Requires: xorg-x11-server-Xorg >= 1.6.0 %description X.Org X11 glint video driver. @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/glint.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.2.3-1 +- glint 1.2.3 + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:20:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:20:47 +0000 (UTC) Subject: rpms/xorg-x11-drv-i128/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xorg-x11-drv-i128.spec, 1.21, 1.22 Message-ID: <20090702152047.5C25611C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-i128/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5847 Modified Files: .cvsignore sources xorg-x11-drv-i128.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.3.2-1 - i128 1.3.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i128/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 20 Mar 2008 01:24:23 -0000 1.10 +++ .cvsignore 2 Jul 2009 15:20:17 -0000 1.11 @@ -1 +1,2 @@ xf86-video-i128-1.3.0.tar.bz2 +xf86-video-i128-1.3.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i128/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 20 Mar 2008 01:24:23 -0000 1.10 +++ sources 2 Jul 2009 15:20:17 -0000 1.11 @@ -1 +1 @@ -aff4922d2f02bad7e0d8649358edbcee xf86-video-i128-1.3.0.tar.bz2 +41a0ece4150033b4f392e3f10dca7b7a xf86-video-i128-1.3.2.tar.bz2 Index: xorg-x11-drv-i128.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i128/devel/xorg-x11-drv-i128.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-i128.spec 26 Feb 2009 10:51:32 -0000 1.21 +++ xorg-x11-drv-i128.spec 2 Jul 2009 15:20:17 -0000 1.22 @@ -4,8 +4,8 @@ Summary: Xorg X11 i128 video driver Name: xorg-x11-drv-i128 -Version: 1.3.0 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i128.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.3.2-1 +- i128 1.3.2 + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:23:55 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:23:55 +0000 (UTC) Subject: rpms/xorg-x11-drv-i740/devel .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 xorg-x11-drv-i740.spec, 1.21, 1.22 Message-ID: <20090702152355.8595411C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-i740/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6529 Modified Files: .cvsignore sources xorg-x11-drv-i740.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.3.1-1 - i740 1.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i740/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 20 Mar 2008 01:26:13 -0000 1.8 +++ .cvsignore 2 Jul 2009 15:23:25 -0000 1.9 @@ -1 +1,2 @@ xf86-video-i740-1.2.0.tar.bz2 +xf86-video-i740-1.3.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i740/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Mar 2008 01:26:13 -0000 1.8 +++ sources 2 Jul 2009 15:23:25 -0000 1.9 @@ -1 +1 @@ -d0e5a805c546b29b1dd3b55a68d16dc4 xf86-video-i740-1.2.0.tar.bz2 +cab8e93321d63f16a473a889c0417cd9 xf86-video-i740-1.3.1.tar.bz2 Index: xorg-x11-drv-i740.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i740/devel/xorg-x11-drv-i740.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-i740.spec 26 Feb 2009 10:52:36 -0000 1.21 +++ xorg-x11-drv-i740.spec 2 Jul 2009 15:23:25 -0000 1.22 @@ -4,8 +4,8 @@ Summary: Xorg X11 i740 video driver Name: xorg-x11-drv-i740 -Version: 1.2.0 -Release: 3%{?dist} +Version: 1.3.1 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i740.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.3.1-1 +- i740 1.3.1 + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dodji at fedoraproject.org Thu Jul 2 14:45:38 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 14:45:38 +0000 (UTC) Subject: rpms/nemiver/F-11 .cvsignore, 1.17, 1.18 nemiver.spec, 1.25, 1.26 sources, 1.17, 1.18 Message-ID: <20090702144538.928B411C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29778 Modified Files: .cvsignore nemiver.spec sources Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-11/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 2 May 2009 23:34:50 -0000 1.17 +++ .cvsignore 2 Jul 2009 14:45:08 -0000 1.18 @@ -1 +1,2 @@ nemiver-0.6.7.tar.bz2 +nemiver-0.7.0.tar.bz2 Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-11/nemiver.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- nemiver.spec 2 May 2009 23:34:50 -0000 1.25 +++ nemiver.spec 2 Jul 2009 14:45:08 -0000 1.26 @@ -1,5 +1,5 @@ Name: nemiver -Version: 0.6.7 +Version: 0.7.0 Release: 1%{?dist} Summary: A GNOME C/C++ Debugger @@ -143,15 +143,18 @@ scrollkeeper-update -q ||: %{_mandir}/man?/%{name}.* %changelog -* Sun May 03 2009 Dodji Seketeli - 0.6.7-1 +* Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 +- Update to new upstream release (0.7.0) + +* Sun May 03 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) -* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 +* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 - Update to new upstream release (0.6.6) - Drop patch http://bugzilla.gnome.org/show_bug.cgi?id=574915 as included in upstream release. -* Fri Mar 13 2009 Dodji Seketeli - 0.6.5-2 +* Fri Mar 13 2009 Dodji Seketeli - 0.6.5-2 - Add upstream patch http://bugzilla.gnome.org/show_bug.cgi?id=574915 Fixes a "spinner not found" bug. - Add boost-static in BuildRequires (required for nemiver tests) @@ -160,12 +163,12 @@ scrollkeeper-update -q ||: Upstream can't garantee API/ABI stability yet and nobody uses this package yet anyway -* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 +* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 - Update to new upstream release (0.6.5) - Drop include-stdint.patch as pushed upstream - BuildRequire intltool -* Tue Feb 24 2009 Dodji Seketeli - 0.6.4-2 +* Tue Feb 24 2009 Dodji Seketeli - 0.6.4-2 - Rebuild against ghex 2.2.4. This should fix #571099 - Patch Nemiver to make it compile with gcc 4.3.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 2 May 2009 23:34:50 -0000 1.17 +++ sources 2 Jul 2009 14:45:08 -0000 1.18 @@ -1 +1,2 @@ eeb0f56cf70d26746f79486bd5437ac7 nemiver-0.6.7.tar.bz2 +b9606d7cde107c1a49dcb4053fb22546 nemiver-0.7.0.tar.bz2 From davidz at fedoraproject.org Thu Jul 2 14:33:11 2009 From: davidz at fedoraproject.org (David Zeuthen) Date: Thu, 2 Jul 2009 14:33:11 +0000 (UTC) Subject: rpms/DeviceKit-disks/F-11 devkit-disks-004-ignore-pc-floppy-drives.patch, NONE, 1.1 DeviceKit-disks.spec, 1.25, 1.26 Message-ID: <20090702143311.BC4F911C0418@cvs1.fedora.phx.redhat.com> Author: davidz Update of /cvs/pkgs/rpms/DeviceKit-disks/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17852 Modified Files: DeviceKit-disks.spec Added Files: devkit-disks-004-ignore-pc-floppy-drives.patch Log Message: * Thu Jul 02 2009 David Zeuthen - 004-4%{?dist} - Ignore PC floppy drives (#489083) devkit-disks-004-ignore-pc-floppy-drives.patch: --- NEW FILE devkit-disks-004-ignore-pc-floppy-drives.patch --- --- DeviceKit-disks-004/src/devkit-disks-device.c.orig 2009-07-02 10:24:59.000000000 -0400 +++ DeviceKit-disks-004/src/devkit-disks-device.c 2009-07-02 10:26:38.000000000 -0400 @@ -3437,7 +3437,8 @@ /* ignore ram and loop devices */ if (g_str_has_prefix (native_path, "/sys/devices/virtual/block/ram") || - g_str_has_prefix (native_path, "/sys/devices/virtual/block/loop")) + g_str_has_prefix (native_path, "/sys/devices/virtual/block/loop") || + g_str_has_prefix (native_path, "/sys/devices/platform/floppy")) goto out; device = DEVKIT_DISKS_DEVICE (g_object_new (DEVKIT_DISKS_TYPE_DEVICE, NULL)); Index: DeviceKit-disks.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-disks/F-11/DeviceKit-disks.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- DeviceKit-disks.spec 19 May 2009 21:54:49 -0000 1.25 +++ DeviceKit-disks.spec 2 Jul 2009 14:32:41 -0000 1.26 @@ -12,7 +12,7 @@ Summary: Disk Management Service Name: DeviceKit-disks Version: 004 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit-disks.git;a=summary @@ -60,6 +60,7 @@ Requires: ntfsprogs Conflicts: kernel < 2.6.26 Patch0: avoid-ata-smart-check-for-removable-disks.patch +Patch1: devkit-disks-004-ignore-pc-floppy-drives.patch %description DeviceKit-disks provides a daemon, D-Bus API and command line tools @@ -78,6 +79,7 @@ D-Bus interface definitions for DeviceKi %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure @@ -135,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT # Note: please don't forget the %{?dist} in the changelog. Thanks %changelog +* Thu Jul 02 2009 David Zeuthen - 004-4%{?dist} +- Ignore PC floppy drives (#489083) + * Tue May 19 2009 David Zeuthen - 004-3%{?dist} - Avoid checking whether device is ATA SMART capable if the device reports removable media (#494932) From ajax at fedoraproject.org Thu Jul 2 15:27:19 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:27:19 +0000 (UTC) Subject: rpms/xorg-x11-drv-neomagic/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-neomagic.spec, 1.19, 1.20 Message-ID: <20090702152719.6D69C11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7894 Modified Files: .cvsignore sources xorg-x11-drv-neomagic.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.2.3-1 - neomagic 1.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 22 Dec 2008 04:45:16 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:27:19 -0000 1.10 @@ -1 +1,2 @@ xf86-video-neomagic-1.2.2.tar.bz2 +xf86-video-neomagic-1.2.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Dec 2008 04:45:16 -0000 1.9 +++ sources 2 Jul 2009 15:27:19 -0000 1.10 @@ -1 +1 @@ -896864e1a2d7333c16333a24eac17d00 xf86-video-neomagic-1.2.2.tar.bz2 +417e9958425ddb13eb137177da330f4d xf86-video-neomagic-1.2.3.tar.bz2 Index: xorg-x11-drv-neomagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel/xorg-x11-drv-neomagic.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-neomagic.spec 26 Feb 2009 10:58:36 -0000 1.19 +++ xorg-x11-drv-neomagic.spec 2 Jul 2009 15:27:19 -0000 1.20 @@ -4,8 +4,8 @@ Summary: Xorg X11 neomagic video driver Name: xorg-x11-drv-neomagic -Version: 1.2.2 -Release: 2%{?dist} +Version: 1.2.3 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/neomagic.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.2.3-1 +- neomagic 1.2.3 + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:32:39 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:32:39 +0000 (UTC) Subject: rpms/xorg-x11-drv-rendition/devel .cvsignore, 1.11, 1.12 sources, 1.11, 1.12 xorg-x11-drv-rendition.spec, 1.24, 1.25 Message-ID: <20090702153239.6E3C211C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8984 Modified Files: .cvsignore sources xorg-x11-drv-rendition.spec Log Message: * Thu Jul 02 2009 Adam Jackson 4.2.2-1 - rendition 4.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 24 Feb 2009 15:19:58 -0000 1.11 +++ .cvsignore 2 Jul 2009 15:32:09 -0000 1.12 @@ -1 +1,2 @@ xf86-video-rendition-4.2.1.tar.bz2 +xf86-video-rendition-4.2.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 24 Feb 2009 15:19:58 -0000 1.11 +++ sources 2 Jul 2009 15:32:09 -0000 1.12 @@ -1 +1 @@ -c6b49b99586cc0955295cb1ca93fcac7 xf86-video-rendition-4.2.1.tar.bz2 +562955e5c0abb19e5f050a100be2c920 xf86-video-rendition-4.2.2.tar.bz2 Index: xorg-x11-drv-rendition.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel/xorg-x11-drv-rendition.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-rendition.spec 26 Feb 2009 11:05:17 -0000 1.24 +++ xorg-x11-drv-rendition.spec 2 Jul 2009 15:32:09 -0000 1.25 @@ -4,8 +4,8 @@ Summary: Xorg X11 rendition video driver Name: xorg-x11-drv-rendition -Version: 4.2.1 -Release: 2%{?dist} +Version: 4.2.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/rendition.4* %changelog +* Thu Jul 02 2009 Adam Jackson 4.2.2-1 +- rendition 4.2.2 + * Thu Feb 26 2009 Fedora Release Engineering - 4.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:36:04 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:36:04 +0000 (UTC) Subject: rpms/xorg-x11-drv-s3/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xorg-x11-drv-s3.spec, 1.26, 1.27 Message-ID: <20090702153604.5844E11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-s3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9736 Modified Files: .cvsignore sources xorg-x11-drv-s3.spec Log Message: * Thu Jul 02 2009 Adam Jackson 0.6.2-1 - s3 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Dec 2008 05:42:31 -0000 1.10 +++ .cvsignore 2 Jul 2009 15:36:03 -0000 1.11 @@ -1 +1,2 @@ xf86-video-s3-0.6.1.tar.bz2 +xf86-video-s3-0.6.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Dec 2008 05:42:31 -0000 1.10 +++ sources 2 Jul 2009 15:36:04 -0000 1.11 @@ -1 +1 @@ -a5f1f2f93a50e56bd3aeed009c407337 xf86-video-s3-0.6.1.tar.bz2 +723f9fc2de66805c1984a37c6d41580e xf86-video-s3-0.6.2.tar.bz2 Index: xorg-x11-drv-s3.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3/devel/xorg-x11-drv-s3.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-s3.spec 26 Feb 2009 11:06:16 -0000 1.26 +++ xorg-x11-drv-s3.spec 2 Jul 2009 15:36:04 -0000 1.27 @@ -4,8 +4,8 @@ Summary: Xorg X11 s3 video driver Name: xorg-x11-drv-s3 -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,8 +49,12 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{driverdir}/s3_drv.so %{_datadir}/hwdata/videoaliases/s3.xinf +%{_mandir}/man4/s3.4* %changelog +* Thu Jul 02 2009 Adam Jackson 0.6.2-1 +- s3 0.6.2 + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:38:48 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:38:48 +0000 (UTC) Subject: rpms/xorg-x11-drv-s3virge/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-s3virge.spec, 1.21, 1.22 Message-ID: <20090702153848.54F3F11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10338 Modified Files: .cvsignore sources xorg-x11-drv-s3virge.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.10.3-1 - s3virge 1.10.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 22 Dec 2008 05:43:36 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:38:18 -0000 1.10 @@ -1 +1,2 @@ xf86-video-s3virge-1.10.2.tar.bz2 +xf86-video-s3virge-1.10.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Dec 2008 05:43:36 -0000 1.9 +++ sources 2 Jul 2009 15:38:18 -0000 1.10 @@ -1 +1 @@ -69784e4964d75487d81be4eae3d467dd xf86-video-s3virge-1.10.2.tar.bz2 +e59625871ac71bc2555bd784b539ef88 xf86-video-s3virge-1.10.3.tar.bz2 Index: xorg-x11-drv-s3virge.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel/xorg-x11-drv-s3virge.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-s3virge.spec 26 Feb 2009 11:07:16 -0000 1.21 +++ xorg-x11-drv-s3virge.spec 2 Jul 2009 15:38:18 -0000 1.22 @@ -4,8 +4,8 @@ Summary: Xorg X11 s3virge video driver Name: xorg-x11-drv-s3virge -Version: 1.10.2 -Release: 2%{?dist} +Version: 1.10.3 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/s3virge.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.10.3-1 +- s3virge 1.10.3 + * Thu Feb 26 2009 Fedora Release Engineering - 1.10.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jakub at fedoraproject.org Thu Jul 2 15:40:59 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Thu, 2 Jul 2009 15:40:59 +0000 (UTC) Subject: rpms/prelink/devel .cvsignore, 1.36, 1.37 prelink.spec, 1.53, 1.54 sources, 1.39, 1.40 Message-ID: <20090702154059.BFEDD11C0418@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/prelink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10866 Modified Files: .cvsignore prelink.spec sources Log Message: 0.4.1-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/prelink/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 11 Mar 2009 09:55:56 -0000 1.36 +++ .cvsignore 2 Jul 2009 15:40:29 -0000 1.37 @@ -1 +1 @@ -prelink-20090311.tar.bz2 +prelink-20090702.tar.bz2 Index: prelink.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelink/devel/prelink.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- prelink.spec 11 Mar 2009 09:55:57 -0000 1.53 +++ prelink.spec 2 Jul 2009 15:40:29 -0000 1.54 @@ -1,11 +1,11 @@ Summary: An ELF prelinking utility Name: prelink -Version: 0.4.0 -Release: 7%{?dist} +Version: 0.4.1 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base -%define date 20090311 -Source: ftp://people.redhat.com/jakub/prelink/prelink-%{date}.tar.bz2 +%define date 20090702 +Source: http://people.redhat.com/jakub/prelink/prelink-%{date}.tar.bz2 Source2: prelink.conf Source3: prelink.cron Source4: prelink.sysconfig @@ -84,6 +84,11 @@ rm -rf %{buildroot} %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/log/prelink/prelink.log %changelog +* Thu Jul 2 2009 Jakub Jelinek 0.4.1-1 +- add support for STT_GNU_IFUNC on i?86/x86_64 and R_{386,X86_64}_IRELATIVE +- add support for DWARF3/DWARF4 features generated newly by recent + gccs + * Wed Mar 11 2009 Jakub Jelinek 0.4.0-7 - fix prelinking on ppc64 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/prelink/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 11 Mar 2009 09:55:57 -0000 1.39 +++ sources 2 Jul 2009 15:40:29 -0000 1.40 @@ -1 +1 @@ -129b024036955cf14593a85ba09a2a23 prelink-20090311.tar.bz2 +afdd89058e570c04b7822fcbc13d6542 prelink-20090702.tar.bz2 From ajax at fedoraproject.org Thu Jul 2 15:43:07 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:43:07 +0000 (UTC) Subject: rpms/xorg-x11-drv-savage/devel .cvsignore, 1.11, 1.12 sources, 1.11, 1.12 xorg-x11-drv-savage.spec, 1.28, 1.29 Message-ID: <20090702154307.9FEE211C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-savage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11305 Modified Files: .cvsignore sources xorg-x11-drv-savage.spec Log Message: * Thu Jul 02 2009 Adam Jackson 2.3.0-1 - savage 2.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-savage/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 20 Mar 2008 01:43:40 -0000 1.11 +++ .cvsignore 2 Jul 2009 15:42:37 -0000 1.12 @@ -1 +1,2 @@ xf86-video-savage-2.2.0.tar.bz2 +xf86-video-savage-2.3.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-savage/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 20 Mar 2008 01:43:40 -0000 1.11 +++ sources 2 Jul 2009 15:42:37 -0000 1.12 @@ -1 +1 @@ -0f7858b58e14dce53bcbaec2160bfcb9 xf86-video-savage-2.2.0.tar.bz2 +fc21c0b76c9403fc2cdc7d924abaa461 xf86-video-savage-2.3.0.tar.bz2 Index: xorg-x11-drv-savage.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-savage/devel/xorg-x11-drv-savage.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xorg-x11-drv-savage.spec 26 Feb 2009 11:08:18 -0000 1.28 +++ xorg-x11-drv-savage.spec 2 Jul 2009 15:42:37 -0000 1.29 @@ -4,8 +4,8 @@ Summary: Xorg X11 savage video driver Name: xorg-x11-drv-savage -Version: 2.2.0 -Release: 3%{?dist} +Version: 2.3.0 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -14,9 +14,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 Source1: savage.xinf -Patch1: savage-2.1.2-missing-symbol.patch -Patch2: savage-2.1.2-panel-range-hack.patch - ExcludeArch: s390 s390x BuildRequires: xorg-x11-server-devel >= 1.4.99.1 @@ -31,8 +28,6 @@ X.Org X11 savage video driver. %prep %setup -q -n %{tarball}-%{version} -%patch1 -p1 -b .missing-symbol -%patch2 -p1 -b .range-hack %build %configure --disable-static --enable-dri @@ -60,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/savage.4* %changelog +* Thu Jul 02 2009 Adam Jackson 2.3.0-1 +- savage 2.3.0 + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From twaugh at fedoraproject.org Thu Jul 2 15:46:04 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 2 Jul 2009 15:46:04 +0000 (UTC) Subject: rpms/foomatic/F-11 foomatic-mkstemp.patch, NONE, 1.1 .cvsignore, 1.71, 1.72 foomatic.spec, 1.214, 1.215 sources, 1.73, 1.74 Message-ID: <20090702154604.F3C0111C0418@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12181 Modified Files: .cvsignore foomatic.spec sources Added Files: foomatic-mkstemp.patch Log Message: * Thu Jul 2 2009 Tim Waugh 4.0.2-1 - Updated db-engine to 4.0.2 (bug #503188). - Updated foomatic-filters to 4.0.2 (bug #496521). - Updated db-hpijs to 20090701. - Updated db to 4.0-20090702. - This package obsoletes oki4linux (bug #491489). - Don't ship ChangeLog/README/USAGE for each of the 4 packages as it comes to more than 1MB (bug #492449). - Don't use mktemp in foomatic-rip. foomatic-mkstemp.patch: --- NEW FILE foomatic-mkstemp.patch --- diff -up foomatic-filters-4.0.2/pdf.c.mkstemp foomatic-filters-4.0.2/pdf.c --- foomatic-filters-4.0.2/pdf.c.mkstemp 2009-07-02 15:52:38.960401425 +0100 +++ foomatic-filters-4.0.2/pdf.c 2009-07-02 16:24:39.966400563 +0100 @@ -157,6 +157,7 @@ static int pdf_extract_pages(char filena int last) { void *minst; + int fd; char filename_arg[PATH_MAX], first_arg[50], last_arg[50]; const char *gs_args[] = { "", "-q", "-dNOPAUSE", "-dBATCH", "-dPARANOIDSAFER", "-sDEVICE=pdfwrite", filename_arg, first_arg, @@ -165,10 +166,10 @@ static int pdf_extract_pages(char filena _log("Extracting pages %d through %d\n", first, last); snprintf(filename, PATH_MAX, "%s/foomatic-XXXXXX", temp_dir()); - mktemp(filename); - if (!filename[0]) + if ((fd = mkstemp(filename)) == -1) return 0; + close (fd); if (gsapi_new_instance(&minst, NULL) < 0) { _log("Could not create ghostscript instance\n"); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/.cvsignore,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- .cvsignore 15 Jan 2009 12:14:44 -0000 1.71 +++ .cvsignore 2 Jul 2009 15:46:04 -0000 1.72 @@ -73,3 +73,7 @@ foomatic-filters-3.0-20090110.tar.gz foomatic-db-4.0-20090115.tar.gz foomatic-db-engine-4.0.0.tar.gz foomatic-filters-4.0.0.tar.gz +foomatic-filters-4.0.2.tar.gz +foomatic-db-engine-4.0.2.tar.gz +foomatic-db-hpijs-20090701.tar.gz +foomatic-db-4.0-20090702.tar.gz Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/foomatic.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- foomatic.spec 24 Feb 2009 17:57:36 -0000 1.214 +++ foomatic.spec 2 Jul 2009 15:46:04 -0000 1.215 @@ -1,13 +1,13 @@ %define dbver_rel 4.0 -%define dbver_snap 20090115 -%define enginever 4.0.0 -%define filtersver 4.0.0 -%define hpijsver 20090110 +%define dbver_snap 20090702 +%define enginever 4.0.2 +%define filtersver 4.0.2 +%define hpijsver 20090701 Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -21,12 +21,25 @@ Source1: http://www.linuxprinting.org/do Source2: http://www.linuxprinting.org/download/foomatic/foomatic-db-%{dbver_rel}-%{dbver_snap}.tar.gz Source3: http://www.linuxprinting.org/download/foomatic/foomatic-db-hpijs-%{hpijsver}.tar.gz +## PATCHES FOR FOOMATIC-FILTERS (PATCHES 1 TO 100) + # Use libdir. Patch1: foomatic-filters-libdir.patch -Patch2: foomatic-db-engine-libdir.patch + +# Use mkstemp, not mktemp. +Patch2: foomatic-mkstemp.patch + +## PATCHES FOR FOOMATIC-DB-ENGINE (PATCHES 101 TO 200) + +# Use libdir. +Patch101: foomatic-db-engine-libdir.patch # Handle non-UTF-8 encodings in imported PPD files. -Patch15: foomatic-bad-utf8.patch +Patch102: foomatic-bad-utf8.patch + +## PATCHES FOR FOOMATIC-DB-HPIJS (PATCHES 201 TO 300) + +## PATCHES FOR FOOMATIC-DB (PATCHES 301 TO 400) Url: http://www.linuxprinting.org BuildRequires: perl >= 3:5.8.1 @@ -51,6 +64,11 @@ Conflicts: hpijs < 1.5 # We don't use the printconf hooks now, so require that they are gone. Conflicts: system-config-printer < 0.7.0 +# The foomatic oki8w driver works for printers that this old package +# use to drive: +Obsoletes: oki4linux < 2.1gst-5 +# Note: no "Provides:" as it was not a dependency of any package. + %description Foomatic is a comprehensive, spooler-independent database of printers, printer drivers, and driver descriptions. It contains utilities to @@ -70,12 +88,13 @@ The site http://www.linuxprinting.org/ i pushd foomatic-filters-%{filtersver} %patch1 -p1 -b .libdir +%patch2 -p1 -b .mkstemp popd pushd foomatic-db-engine-%{enginever} chmod a+x mkinstalldirs -%patch2 -p1 -b .libdir -%patch15 -p1 +%patch101 -p1 -b .libdir +%patch102 -p1 popd pushd foomatic-db-hpijs-%{hpijsver} @@ -115,7 +134,7 @@ export CUPS_PPDS=%{_datadir}/cups/model pushd foomatic-filters-%{filtersver} %configure -make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS" +make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS -O0" popd pushd foomatic-db-engine-%{enginever} @@ -209,7 +228,6 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %files %defattr(-,root,root) -%doc --parents */README */USAGE */ChangeLog %dir %{_sysconfdir}/foomatic %config(noreplace) %{_sysconfdir}/foomatic/filter.conf %config(noreplace) %{_sysconfdir}/foomatic/defaultspooler @@ -224,6 +242,16 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Thu Jul 2 2009 Tim Waugh 4.0.2-1 +- Updated db-engine to 4.0.2 (bug #503188). +- Updated foomatic-filters to 4.0.2 (bug #496521). +- Updated db-hpijs to 20090701. +- Updated db to 4.0-20090702. +- This package obsoletes oki4linux (bug #491489). +- Don't ship ChangeLog/README/USAGE for each of the 4 packages as it + comes to more than 1MB (bug #492449). +- Don't use mktemp in foomatic-rip. + * Tue Feb 24 2009 Fedora Release Engineering - 4.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 15 Jan 2009 12:14:44 -0000 1.73 +++ sources 2 Jul 2009 15:46:04 -0000 1.74 @@ -1,4 +1,4 @@ -aa6b0fd89f33fcef91a3a7081b44fc36 foomatic-db-hpijs-20090110.tar.gz -a349bc055d92a47bfbd8b7812beba690 foomatic-db-4.0-20090115.tar.gz -7e2281ef8b96557afd0cd87400176805 foomatic-db-engine-4.0.0.tar.gz -1c77a8c86a8fb19012cd79f735564ea2 foomatic-filters-4.0.0.tar.gz +9d3a938be1c9ea00add9c7c467653861 foomatic-filters-4.0.2.tar.gz +8595d59be013482e4dd2834adf11f55a foomatic-db-engine-4.0.2.tar.gz +2bc452f3bf81c83f8d008c95167f7f8b foomatic-db-hpijs-20090701.tar.gz +df252272fd8f802c57650bbc059a0f42 foomatic-db-4.0-20090702.tar.gz From ajax at fedoraproject.org Thu Jul 2 15:46:15 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:46:15 +0000 (UTC) Subject: rpms/xorg-x11-drv-siliconmotion/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xorg-x11-drv-siliconmotion.spec, 1.20, 1.21 Message-ID: <20090702154615.E903311C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12107 Modified Files: .cvsignore sources xorg-x11-drv-siliconmotion.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.7.2-1 - siliconmotion 1.7.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 26 Feb 2009 21:58:18 -0000 1.10 +++ .cvsignore 2 Jul 2009 15:45:45 -0000 1.11 @@ -1 +1,2 @@ xf86-video-siliconmotion-1.7.0.tar.bz2 +xf86-video-siliconmotion-1.7.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 26 Feb 2009 21:58:18 -0000 1.10 +++ sources 2 Jul 2009 15:45:45 -0000 1.11 @@ -1 +1 @@ -f9acffba89d8be200f91bab3d1df80da xf86-video-siliconmotion-1.7.0.tar.bz2 +432791bfe9dde2d78ce7410b2cb420bb xf86-video-siliconmotion-1.7.2.tar.bz2 Index: xorg-x11-drv-siliconmotion.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel/xorg-x11-drv-siliconmotion.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-siliconmotion.spec 26 Feb 2009 21:58:18 -0000 1.20 +++ xorg-x11-drv-siliconmotion.spec 2 Jul 2009 15:45:45 -0000 1.21 @@ -4,7 +4,7 @@ Summary: Xorg X11 siliconmotion video driver Name: xorg-x11-drv-siliconmotion -Version: 1.7.0 +Version: 1.7.2 Release: 1%{?dist} URL: http://www.x.org License: MIT @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/siliconmotion.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.7.2-1 +- siliconmotion 1.7.2 + * Thu Feb 26 2009 Adam Jackson 1.7.0-1 - siliconmotion 1.7.0 From pkgdb at fedoraproject.org Thu Jul 2 15:46:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 15:46:27 +0000 Subject: [pkgdb] monodevelop-debugger-mdb: palango has requested commit Message-ID: <20090702154627.AA09410F896@bastion2.fedora.phx.redhat.com> palango has requested the commit acl on monodevelop-debugger-mdb (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Thu Jul 2 15:46:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 15:46:30 +0000 Subject: [pkgdb] monodevelop-debugger-mdb: palango has requested commit Message-ID: <20090702154630.C42FF10F899@bastion2.fedora.phx.redhat.com> palango has requested the commit acl on monodevelop-debugger-mdb (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Thu Jul 2 15:46:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 15:46:33 +0000 Subject: [pkgdb] monodevelop-debugger-mdb: palango has given up commit Message-ID: <20090702154633.4775610F8A2@bastion2.fedora.phx.redhat.com> palango has given up the commit acl on monodevelop-debugger-mdb (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Thu Jul 2 15:46:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 15:46:35 +0000 Subject: [pkgdb] monodevelop-debugger-mdb: palango has requested commit Message-ID: <20090702154635.A446910F8A3@bastion2.fedora.phx.redhat.com> palango has requested the commit acl on monodevelop-debugger-mdb (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From ajax at fedoraproject.org Thu Jul 2 15:48:17 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:48:17 +0000 (UTC) Subject: rpms/xorg-x11-drv-sisusb/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-sisusb.spec, 1.24, 1.25 Message-ID: <20090702154817.8645A11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12670 Modified Files: .cvsignore sources xorg-x11-drv-sisusb.spec Log Message: * Thu Jul 02 2009 Adam Jackson 0.9.2-1 - sisusb 0.9.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 24 Feb 2009 15:26:19 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:47:47 -0000 1.10 @@ -1 +1,2 @@ xf86-video-sisusb-0.9.1.tar.bz2 +xf86-video-sisusb-0.9.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 24 Feb 2009 15:26:20 -0000 1.9 +++ sources 2 Jul 2009 15:47:47 -0000 1.10 @@ -1 +1 @@ -42069e70578bf3fb353cdacad186f6c0 xf86-video-sisusb-0.9.1.tar.bz2 +6d2581530bced93c85f81156f02044a4 xf86-video-sisusb-0.9.2.tar.bz2 Index: xorg-x11-drv-sisusb.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel/xorg-x11-drv-sisusb.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-sisusb.spec 26 Feb 2009 11:11:06 -0000 1.24 +++ xorg-x11-drv-sisusb.spec 2 Jul 2009 15:47:47 -0000 1.25 @@ -4,8 +4,8 @@ Summary: Xorg X11 sisusb video driver Name: xorg-x11-drv-sisusb -Version: 0.9.1 -Release: 2%{?dist} +Version: 0.9.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Thu Jul 02 2009 Adam Jackson 0.9.2-1 +- sisusb 0.9.2 + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:50:34 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:50:34 +0000 (UTC) Subject: rpms/xorg-x11-drv-tdfx/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xorg-x11-drv-tdfx.spec, 1.26, 1.27 Message-ID: <20090702155034.CDE2A11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13316 Modified Files: .cvsignore sources xorg-x11-drv-tdfx.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.4.2-1 - tdfx 1.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Dec 2008 05:24:03 -0000 1.10 +++ .cvsignore 2 Jul 2009 15:50:04 -0000 1.11 @@ -1 +1,2 @@ xf86-video-tdfx-1.4.1.tar.bz2 +xf86-video-tdfx-1.4.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Dec 2008 05:24:03 -0000 1.10 +++ sources 2 Jul 2009 15:50:04 -0000 1.11 @@ -1 +1 @@ -59acf2a4f721f9b7abbd121748467b16 xf86-video-tdfx-1.4.1.tar.bz2 +abc1e272ab184edf3cd51daa1b91ddcf xf86-video-tdfx-1.4.2.tar.bz2 Index: xorg-x11-drv-tdfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel/xorg-x11-drv-tdfx.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-tdfx.spec 26 Feb 2009 11:19:39 -0000 1.26 +++ xorg-x11-drv-tdfx.spec 2 Jul 2009 15:50:04 -0000 1.27 @@ -4,8 +4,8 @@ Summary: Xorg X11 tdfx video driver Name: xorg-x11-drv-tdfx -Version: 1.4.1 -Release: 2%{?dist} +Version: 1.4.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/tdfx.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.4.2-1 +- tdfx 1.4.2 + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:52:57 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:52:57 +0000 (UTC) Subject: rpms/xorg-x11-drv-trident/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xorg-x11-drv-trident.spec, 1.25, 1.26 Message-ID: <20090702155257.4170811C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-trident/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13834 Modified Files: .cvsignore sources xorg-x11-drv-trident.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.3.2-1 - trident 1.3.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-trident/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Dec 2008 04:08:21 -0000 1.10 +++ .cvsignore 2 Jul 2009 15:52:26 -0000 1.11 @@ -1 +1,2 @@ xf86-video-trident-1.3.1.tar.bz2 +xf86-video-trident-1.3.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-trident/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Dec 2008 04:08:21 -0000 1.10 +++ sources 2 Jul 2009 15:52:26 -0000 1.11 @@ -1 +1 @@ -9f280bef235426394013cb5e1854b823 xf86-video-trident-1.3.1.tar.bz2 +26d77d8ec3887f20bef917d6429c761d xf86-video-trident-1.3.2.tar.bz2 Index: xorg-x11-drv-trident.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-trident/devel/xorg-x11-drv-trident.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-trident.spec 26 Feb 2009 11:20:39 -0000 1.25 +++ xorg-x11-drv-trident.spec 2 Jul 2009 15:52:26 -0000 1.26 @@ -4,8 +4,8 @@ Summary: Xorg X11 trident video driver Name: xorg-x11-drv-trident -Version: 1.3.1 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/trident.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.3.2-1 +- trident 1.3.2 + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 15:54:59 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:54:59 +0000 (UTC) Subject: rpms/xorg-x11-drv-tseng/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xorg-x11-drv-tseng.spec, 1.21, 1.22 Message-ID: <20090702155459.3758011C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14372 Modified Files: .cvsignore sources xorg-x11-drv-tseng.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - tseng 1.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 22 Dec 2008 05:08:00 -0000 1.9 +++ .cvsignore 2 Jul 2009 15:54:28 -0000 1.10 @@ -1 +1,2 @@ xf86-video-tseng-1.2.1.tar.bz2 +xf86-video-tseng-1.2.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Dec 2008 05:08:01 -0000 1.9 +++ sources 2 Jul 2009 15:54:28 -0000 1.10 @@ -1 +1 @@ -2f687eddae5dafa5dcc05116561e267c xf86-video-tseng-1.2.1.tar.bz2 +f55df4cb0e6cffcd3721164f35dfc88d xf86-video-tseng-1.2.2.tar.bz2 Index: xorg-x11-drv-tseng.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel/xorg-x11-drv-tseng.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-tseng.spec 26 Feb 2009 11:21:44 -0000 1.21 +++ xorg-x11-drv-tseng.spec 2 Jul 2009 15:54:28 -0000 1.22 @@ -4,8 +4,8 @@ Summary: Xorg X11 tseng video driver Name: xorg-x11-drv-tseng -Version: 1.2.1 -Release: 2%{?dist} +Version: 1.2.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/tseng.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.2.2-1 +- tseng 1.2.2 + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dodji at fedoraproject.org Thu Jul 2 15:55:38 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 15:55:38 +0000 (UTC) Subject: rpms/nemiver/F-10 nemiver.spec,1.25,1.26 Message-ID: <20090702155538.5191D11C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14298 Modified Files: nemiver.spec Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) - Do not use the system libtool as it's now older than the one shiped in the tarball. - No need to exclude *.a files anymore as they are no more generated Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/F-10/nemiver.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- nemiver.spec 2 Jul 2009 14:48:27 -0000 1.25 +++ nemiver.spec 2 Jul 2009 15:55:38 -0000 1.26 @@ -79,10 +79,10 @@ backends for Nemiver. %build -%configure --disable-static --disable-schemas-install \ - --disable-scrollkeeper +%configure --disable-static --disable-schemas-install \ + --disable-scrollkeeper # Use system libtool to prevent build scripts from using RPATH hacks. -make %{?_smp_mflags} LIBTOOL=%{_bindir}/libtool +make %{?_smp_mflags} %install @@ -136,12 +136,9 @@ scrollkeeper-update -q ||: %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING COPYRIGHT NEWS README TODO -%exclude %{_libdir}/%{name}/*.a %exclude %{_libdir}/%{name}/*.la -%exclude %{_libdir}/%{name}/modules/*.a %exclude %{_libdir}/%{name}/modules/*.la %exclude %{_libdir}/%{name}/plugins/*/*.la -%exclude %{_libdir}/%{name}/plugins/*/*.a %{_bindir}/%{name} %{_libdir}/%{name}/ %{_sysconfdir}/gconf/schemas/%{name}-*.schemas @@ -161,6 +158,9 @@ scrollkeeper-update -q ||: %changelog * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) +- Do not use the system libtool as it's now older than the one shiped + in the tarball. +- No need to exclude *.a files anymore as they are no more generated * Sat May 02 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) From twaugh at fedoraproject.org Thu Jul 2 15:56:18 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 2 Jul 2009 15:56:18 +0000 (UTC) Subject: rpms/foomatic/devel foomatic-mkstemp.patch, NONE, 1.1 .cvsignore, 1.71, 1.72 foomatic.spec, 1.214, 1.215 sources, 1.73, 1.74 Message-ID: <20090702155618.C12AC11C0418@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14754 Modified Files: .cvsignore foomatic.spec sources Added Files: foomatic-mkstemp.patch Log Message: * Thu Jul 2 2009 Tim Waugh 4.0.2-1 - Updated db-engine to 4.0.2 (bug #503188). - Updated foomatic-filters to 4.0.2 (bug #496521). - Updated db-hpijs to 20090701. - Updated db to 4.0-20090702. - This package obsoletes oki4linux (bug #491489). - Don't ship ChangeLog/README/USAGE for each of the 4 packages as it comes to more than 1MB (bug #492449). - Don't use mktemp in foomatic-rip. foomatic-mkstemp.patch: --- NEW FILE foomatic-mkstemp.patch --- diff -up foomatic-filters-4.0.2/pdf.c.mkstemp foomatic-filters-4.0.2/pdf.c --- foomatic-filters-4.0.2/pdf.c.mkstemp 2009-07-02 15:52:38.960401425 +0100 +++ foomatic-filters-4.0.2/pdf.c 2009-07-02 16:24:39.966400563 +0100 @@ -157,6 +157,7 @@ static int pdf_extract_pages(char filena int last) { void *minst; + int fd; char filename_arg[PATH_MAX], first_arg[50], last_arg[50]; const char *gs_args[] = { "", "-q", "-dNOPAUSE", "-dBATCH", "-dPARANOIDSAFER", "-sDEVICE=pdfwrite", filename_arg, first_arg, @@ -165,10 +166,10 @@ static int pdf_extract_pages(char filena _log("Extracting pages %d through %d\n", first, last); snprintf(filename, PATH_MAX, "%s/foomatic-XXXXXX", temp_dir()); - mktemp(filename); - if (!filename[0]) + if ((fd = mkstemp(filename)) == -1) return 0; + close (fd); if (gsapi_new_instance(&minst, NULL) < 0) { _log("Could not create ghostscript instance\n"); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/.cvsignore,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- .cvsignore 15 Jan 2009 12:14:44 -0000 1.71 +++ .cvsignore 2 Jul 2009 15:55:48 -0000 1.72 @@ -73,3 +73,7 @@ foomatic-filters-3.0-20090110.tar.gz foomatic-db-4.0-20090115.tar.gz foomatic-db-engine-4.0.0.tar.gz foomatic-filters-4.0.0.tar.gz +foomatic-filters-4.0.2.tar.gz +foomatic-db-engine-4.0.2.tar.gz +foomatic-db-hpijs-20090701.tar.gz +foomatic-db-4.0-20090702.tar.gz Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- foomatic.spec 24 Feb 2009 17:57:36 -0000 1.214 +++ foomatic.spec 2 Jul 2009 15:55:48 -0000 1.215 @@ -1,13 +1,13 @@ %define dbver_rel 4.0 -%define dbver_snap 20090115 -%define enginever 4.0.0 -%define filtersver 4.0.0 -%define hpijsver 20090110 +%define dbver_snap 20090702 +%define enginever 4.0.2 +%define filtersver 4.0.2 +%define hpijsver 20090701 Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -21,12 +21,25 @@ Source1: http://www.linuxprinting.org/do Source2: http://www.linuxprinting.org/download/foomatic/foomatic-db-%{dbver_rel}-%{dbver_snap}.tar.gz Source3: http://www.linuxprinting.org/download/foomatic/foomatic-db-hpijs-%{hpijsver}.tar.gz +## PATCHES FOR FOOMATIC-FILTERS (PATCHES 1 TO 100) + # Use libdir. Patch1: foomatic-filters-libdir.patch -Patch2: foomatic-db-engine-libdir.patch + +# Use mkstemp, not mktemp. +Patch2: foomatic-mkstemp.patch + +## PATCHES FOR FOOMATIC-DB-ENGINE (PATCHES 101 TO 200) + +# Use libdir. +Patch101: foomatic-db-engine-libdir.patch # Handle non-UTF-8 encodings in imported PPD files. -Patch15: foomatic-bad-utf8.patch +Patch102: foomatic-bad-utf8.patch + +## PATCHES FOR FOOMATIC-DB-HPIJS (PATCHES 201 TO 300) + +## PATCHES FOR FOOMATIC-DB (PATCHES 301 TO 400) Url: http://www.linuxprinting.org BuildRequires: perl >= 3:5.8.1 @@ -51,6 +64,11 @@ Conflicts: hpijs < 1.5 # We don't use the printconf hooks now, so require that they are gone. Conflicts: system-config-printer < 0.7.0 +# The foomatic oki8w driver works for printers that this old package +# use to drive: +Obsoletes: oki4linux < 2.1gst-5 +# Note: no "Provides:" as it was not a dependency of any package. + %description Foomatic is a comprehensive, spooler-independent database of printers, printer drivers, and driver descriptions. It contains utilities to @@ -70,12 +88,13 @@ The site http://www.linuxprinting.org/ i pushd foomatic-filters-%{filtersver} %patch1 -p1 -b .libdir +%patch2 -p1 -b .mkstemp popd pushd foomatic-db-engine-%{enginever} chmod a+x mkinstalldirs -%patch2 -p1 -b .libdir -%patch15 -p1 +%patch101 -p1 -b .libdir +%patch102 -p1 popd pushd foomatic-db-hpijs-%{hpijsver} @@ -115,7 +134,7 @@ export CUPS_PPDS=%{_datadir}/cups/model pushd foomatic-filters-%{filtersver} %configure -make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS" +make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS -O0" popd pushd foomatic-db-engine-%{enginever} @@ -209,7 +228,6 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %files %defattr(-,root,root) -%doc --parents */README */USAGE */ChangeLog %dir %{_sysconfdir}/foomatic %config(noreplace) %{_sysconfdir}/foomatic/filter.conf %config(noreplace) %{_sysconfdir}/foomatic/defaultspooler @@ -224,6 +242,16 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Thu Jul 2 2009 Tim Waugh 4.0.2-1 +- Updated db-engine to 4.0.2 (bug #503188). +- Updated foomatic-filters to 4.0.2 (bug #496521). +- Updated db-hpijs to 20090701. +- Updated db to 4.0-20090702. +- This package obsoletes oki4linux (bug #491489). +- Don't ship ChangeLog/README/USAGE for each of the 4 packages as it + comes to more than 1MB (bug #492449). +- Don't use mktemp in foomatic-rip. + * Tue Feb 24 2009 Fedora Release Engineering - 4.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 15 Jan 2009 12:14:44 -0000 1.73 +++ sources 2 Jul 2009 15:55:48 -0000 1.74 @@ -1,4 +1,4 @@ -aa6b0fd89f33fcef91a3a7081b44fc36 foomatic-db-hpijs-20090110.tar.gz -a349bc055d92a47bfbd8b7812beba690 foomatic-db-4.0-20090115.tar.gz -7e2281ef8b96557afd0cd87400176805 foomatic-db-engine-4.0.0.tar.gz -1c77a8c86a8fb19012cd79f735564ea2 foomatic-filters-4.0.0.tar.gz +9d3a938be1c9ea00add9c7c467653861 foomatic-filters-4.0.2.tar.gz +8595d59be013482e4dd2834adf11f55a foomatic-db-engine-4.0.2.tar.gz +2bc452f3bf81c83f8d008c95167f7f8b foomatic-db-hpijs-20090701.tar.gz +df252272fd8f802c57650bbc059a0f42 foomatic-db-4.0-20090702.tar.gz From ajax at fedoraproject.org Thu Jul 2 15:56:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 15:56:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-voodoo/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 xorg-x11-drv-voodoo.spec, 1.23, 1.24 Message-ID: <20090702155644.6743911C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14875 Modified Files: .cvsignore sources xorg-x11-drv-voodoo.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - voodoo 1.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 24 Feb 2009 15:33:05 -0000 1.12 +++ .cvsignore 2 Jul 2009 15:56:14 -0000 1.13 @@ -1 +1,2 @@ xf86-video-voodoo-1.2.1.tar.bz2 +xf86-video-voodoo-1.2.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 24 Feb 2009 15:33:05 -0000 1.12 +++ sources 2 Jul 2009 15:56:14 -0000 1.13 @@ -1 +1,2 @@ ed4ce3a5406ca7958865d39558259726 xf86-video-voodoo-1.2.1.tar.bz2 +b4340b6be49277970029938564a26051 xf86-video-voodoo-1.2.2.tar.bz2 Index: xorg-x11-drv-voodoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel/xorg-x11-drv-voodoo.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-voodoo.spec 26 Feb 2009 11:26:45 -0000 1.23 +++ xorg-x11-drv-voodoo.spec 2 Jul 2009 15:56:14 -0000 1.24 @@ -4,8 +4,8 @@ Summary: Xorg X11 voodoo video driver Name: xorg-x11-drv-voodoo -Version: 1.2.1 -Release: 2%{?dist} +Version: 1.2.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/voodoo.4* %changelog +* Thu Jul 02 2009 Adam Jackson 1.2.2-1 +- voodoo 1.2.2 + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Thu Jul 2 16:12:39 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 16:12:39 +0000 (UTC) Subject: rpms/gnome-keyring/devel gnome-keyring.spec,1.123,1.124 Message-ID: <20090702161239.4323B11C0418@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19069 Modified Files: gnome-keyring.spec Log Message: Rebuild Index: gnome-keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/gnome-keyring.spec,v retrieving revision 1.123 retrieving revision 1.124 diff -u -p -r1.123 -r1.124 --- gnome-keyring.spec 13 Apr 2009 03:33:12 -0000 1.123 +++ gnome-keyring.spec 2 Jul 2009 16:12:38 -0000 1.124 @@ -8,7 +8,7 @@ Summary: Framework for managing passwords and other secrets Name: gnome-keyring Version: 2.26.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gnome-keyring/2.26/gnome-keyring-%{version}.tar.bz2 @@ -142,6 +142,9 @@ fi %changelog +* Thu Jul 2 2009 Matthias Clasen - 2.26.1-2 +- Rebuild + * Sun Apr 12 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 - See http://download.gnome.org/sources/gnome-keyring/2.26/gnome-keyring-2.26.1.news From dodji at fedoraproject.org Thu Jul 2 16:21:18 2009 From: dodji at fedoraproject.org (Dodji Seketeli) Date: Thu, 2 Jul 2009 16:21:18 +0000 (UTC) Subject: rpms/nemiver/devel nemiver.spec,1.26,1.27 Message-ID: <20090702162118.A765211C0418@cvs1.fedora.phx.redhat.com> Author: dodji Update of /cvs/pkgs/rpms/nemiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20928 Modified Files: nemiver.spec Log Message: * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-2 - Fix typo (redhat.org -> redhat.com) Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/devel/nemiver.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- nemiver.spec 2 Jul 2009 14:21:26 -0000 1.26 +++ nemiver.spec 2 Jul 2009 16:21:18 -0000 1.27 @@ -1,6 +1,6 @@ Name: nemiver Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A GNOME C/C++ Debugger Group: Development/Debuggers @@ -143,18 +143,21 @@ scrollkeeper-update -q ||: %{_mandir}/man?/%{name}.* %changelog +* Thu Jul 02 2009 Dodji Seketeli - 0.7.0-2 +- Fix typo (redhat.org -> redhat.com) + * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-1 - Update to new upstream release (0.7.0) * Sat May 02 2009 Dodji Seketeli - 0.6.7-1 - Update to new upstream release (0.6.7) -* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 +* Fri Apr 03 2009 Dodji Seketeli - 0.6.6-1 - Update to new upstream release (0.6.6) - Drop patch http://bugzilla.gnome.org/show_bug.cgi?id=574915 as included in upstream release. -* Fri Mar 13 2009 Dodji Seketeli - 0.6.5-2 +* Fri Mar 13 2009 Dodji Seketeli - 0.6.5-2 - Add upstream patch http://bugzilla.gnome.org/show_bug.cgi?id=574915 Fixes a "spinner not found" bug. - Add boost-static in BuildRequires (required for nemiver tests) @@ -163,12 +166,12 @@ scrollkeeper-update -q ||: Upstream can't garantee API/ABI stability yet and nobody uses this package yet anyway -* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 +* Sun Mar 01 2009 Dodji Seketeli - 0.6.5-1 - Update to new upstream release (0.6.5) - Drop include-stdint.patch as pushed upstream - BuildRequire intltool -* Tue Feb 24 2009 Dodji Seketeli - 0.6.4-2 +* Tue Feb 24 2009 Dodji Seketeli - 0.6.4-2 - Rebuild against ghex 2.2.4. This should fix #571099 - Patch Nemiver to make it compile with gcc 4.3.3 From monnerat at fedoraproject.org Thu Jul 2 16:26:54 2009 From: monnerat at fedoraproject.org (Patrick Monnerat) Date: Thu, 2 Jul 2009 16:26:54 +0000 (UTC) Subject: rpms/php-hkit/devel php-hkit.spec,1.1,1.2 Message-ID: <20090702162654.8CF6E11C0418@cvs1.fedora.phx.redhat.com> Author: monnerat Update of /cvs/pkgs/rpms/php-hkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22044/devel Modified Files: php-hkit.spec Log Message: * Mon Jun 22 2009 Patrick Monnerat 0.5-2 - Move class files from /usr/share/php to /usr/share/php/hkit. Index: php-hkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/devel/php-hkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-hkit.spec 22 Jun 2009 17:25:29 -0000 1.1 +++ php-hkit.spec 2 Jul 2009 16:26:54 -0000 1.2 @@ -1,7 +1,7 @@ Name: php-hkit Summary: Simple PHP5 API for extracting common microformats from a page Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://hkit.googlecode.com/files/hkit-v%{version}.tgz @@ -43,13 +43,13 @@ rm -rf "${RPM_BUILD_ROOT}" # install directory. -install -p -d -m 755 "${RPM_BUILD_ROOT}/%{_datadir}/php" +install -p -d -m 755 "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit" # Install files. -install -p -m 644 hkit.class.php "${RPM_BUILD_ROOT}/%{_datadir}/php/" -install -p -m 644 hcard.profile.php "${RPM_BUILD_ROOT}/%{_datadir}/php/" +install -p -m 644 hkit.class.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" +install -p -m 644 hcard.profile.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" #------------------------------------------------------------------------------- @@ -65,12 +65,15 @@ rm -rf "${RPM_BUILD_ROOT}" %defattr(-, root, root, -) %doc example.php -%{_datadir}/php/* +%{_datadir}/php/hkit #------------------------------------------------------------------------------- %changelog #------------------------------------------------------------------------------- +* Mon Jun 22 2009 Patrick Monnerat 0.5-2 +- Move class files from /usr/share/php to /usr/share/php/hkit. + * Tue Jun 2 2009 Patrick Monnerat 0.5-1 - Initial RPM spec file. From mclasen at fedoraproject.org Thu Jul 2 16:27:07 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 16:27:07 +0000 (UTC) Subject: rpms/gnome-mount/devel gnome-mount.spec,1.46,1.47 Message-ID: <20090702162707.2DD7011C0418@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-mount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20285 Modified Files: gnome-mount.spec Log Message: Rebuild Index: gnome-mount.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mount/devel/gnome-mount.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- gnome-mount.spec 27 Feb 2009 14:15:31 -0000 1.46 +++ gnome-mount.spec 2 Jul 2009 16:26:36 -0000 1.47 @@ -1,7 +1,7 @@ -Summary: HAL-based utility to mount and unmount storage devices +Summary: HAL-based utility to mount and unmount storage devices Name: gnome-mount Version: 0.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/System Source: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -107,6 +107,9 @@ fi %{_libdir}/nautilus/extensions-2.0/libgnome-mount.so %changelog +* Thu Jul 2 2009 Matthias Clasen - 0.8-6 +- Rebuild + * Fri Feb 27 2009 Matthias Clasen - 0.8-5 - Require PolicyKit-authentication-agent instead of PolicyKit-gnome From twaugh at fedoraproject.org Thu Jul 2 15:57:34 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 2 Jul 2009 15:57:34 +0000 (UTC) Subject: rpms/foomatic/devel foomatic.spec,1.215,1.216 Message-ID: <20090702155734.CBD9711C0418@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15364 Modified Files: foomatic.spec Log Message: 4.0.2-2 Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- foomatic.spec 2 Jul 2009 15:55:48 -0000 1.215 +++ foomatic.spec 2 Jul 2009 15:57:34 -0000 1.216 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -242,7 +242,7 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog -* Thu Jul 2 2009 Tim Waugh 4.0.2-1 +* Thu Jul 2 2009 Tim Waugh 4.0.2-2 - Updated db-engine to 4.0.2 (bug #503188). - Updated foomatic-filters to 4.0.2 (bug #496521). - Updated db-hpijs to 20090701. From monnerat at fedoraproject.org Thu Jul 2 16:37:18 2009 From: monnerat at fedoraproject.org (Patrick Monnerat) Date: Thu, 2 Jul 2009 16:37:18 +0000 (UTC) Subject: rpms/php-hkit/devel php-hkit.spec,1.2,1.3 Message-ID: <20090702163718.ADCD211C0418@cvs1.fedora.phx.redhat.com> Author: monnerat Update of /cvs/pkgs/rpms/php-hkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24737/devel Modified Files: php-hkit.spec Log Message: * Thu Jul 2 2009 Patrick Monnerat 0.5-3. - Release bump due to cvs tag problem. Index: php-hkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/devel/php-hkit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-hkit.spec 2 Jul 2009 16:26:54 -0000 1.2 +++ php-hkit.spec 2 Jul 2009 16:36:48 -0000 1.3 @@ -1,7 +1,7 @@ Name: php-hkit Summary: Simple PHP5 API for extracting common microformats from a page Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://hkit.googlecode.com/files/hkit-v%{version}.tgz @@ -72,6 +72,9 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog #------------------------------------------------------------------------------- +* Thu Jul 2 2009 Patrick Monnerat 0.5-3. +- Release bump due to cvs tag problem. + * Mon Jun 22 2009 Patrick Monnerat 0.5-2 - Move class files from /usr/share/php to /usr/share/php/hkit. From pmachata at fedoraproject.org Thu Jul 2 16:38:45 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Thu, 2 Jul 2009 16:38:45 +0000 (UTC) Subject: rpms/boost/devel boost-fs_gcc44.patch, NONE, 1.1 boost.spec, 1.62, 1.63 Message-ID: <20090702163845.97A0911C0418@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/boost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25358 Modified Files: boost.spec Added Files: boost-fs_gcc44.patch Log Message: - Drop file list for main "boost" package, which was inadvertently left in. - Add thread sub-package to capture omitted boost_thread. - Add upstream patch to make boost_filesystem compatible with C++0x. - Resolves: #496188 - Resolves: #509250 boost-fs_gcc44.patch: --- NEW FILE boost-fs_gcc44.patch --- Index: boost/filesystem/operations.hpp =================================================================== --- boost/filesystem/operations.hpp (revision 52859) +++ boost/filesystem/operations.hpp (working copy) @@ -659,9 +659,9 @@ { return is_symlink( ph ); } inline bool is_empty( const path & ph ) - { return is_empty( ph ); } + { return boost::filesystem::is_empty( ph ); } inline bool is_empty( const wpath & ph ) - { return is_empty( ph ); } + { return boost::filesystem::is_empty( ph ); } inline bool equivalent( const path & ph1, const path & ph2 ) { return equivalent( ph1, ph2 ); } Index: libs/filesystem/test/path_test.cpp =================================================================== --- libs/filesystem/test/path_test.cpp (revision 52859) +++ libs/filesystem/test/path_test.cpp (working copy) @@ -27,9 +27,8 @@ namespace fs = boost::filesystem; using boost::filesystem::path; -using boost::next; -using boost::prior; + #include #define PATH_CHECK( a, b ) check( a, b, __LINE__ ) @@ -480,18 +479,18 @@ itr_ck = "foo"; BOOST_TEST( *itr_ck.begin() == std::string( "foo" ) ); - BOOST_TEST( next( itr_ck.begin() ) == itr_ck.end() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "foo" ) ); - BOOST_TEST( prior( itr_ck.end() ) == itr_ck.begin() ); + BOOST_TEST( boost::next( itr_ck.begin() ) == itr_ck.end() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "foo" ) ); + BOOST_TEST( boost::prior( itr_ck.end() ) == itr_ck.begin() ); itr_ck = path( "/foo" ); BOOST_TEST( *itr_ck.begin() == std::string( "/" ) ); - BOOST_TEST( *next( itr_ck.begin() ) == std::string( "foo" ) ); - BOOST_TEST( next(next( itr_ck.begin() )) == itr_ck.end() ); - BOOST_TEST( next( itr_ck.begin() ) == prior( itr_ck.end() ) ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "foo" ) ); - BOOST_TEST( *prior(prior( itr_ck.end() )) == std::string( "/" ) ); - BOOST_TEST( prior(prior( itr_ck.end() )) == itr_ck.begin() ); + BOOST_TEST( *boost::next( itr_ck.begin() ) == std::string( "foo" ) ); + BOOST_TEST( boost::next(boost::next( itr_ck.begin() )) == itr_ck.end() ); + BOOST_TEST( boost::next( itr_ck.begin() ) == boost::prior( itr_ck.end() ) ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "foo" ) ); + BOOST_TEST( *boost::prior(boost::prior( itr_ck.end() )) == std::string( "/" ) ); + BOOST_TEST( boost::prior(boost::prior( itr_ck.end() )) == itr_ck.begin() ); itr_ck = "/foo/bar"; itr = itr_ck.begin(); @@ -1106,65 +1105,65 @@ itr_ck = path( "c:" ); BOOST_TEST( *itr_ck.begin() == std::string( "c:" ) ); - BOOST_TEST( next( itr_ck.begin() ) == itr_ck.end() ); - BOOST_TEST( prior( itr_ck.end() ) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "c:" ) ); + BOOST_TEST( boost::next( itr_ck.begin() ) == itr_ck.end() ); + BOOST_TEST( boost::prior( itr_ck.end() ) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "c:" ) ); itr_ck = path( "c:/" ); BOOST_TEST( *itr_ck.begin() == std::string( "c:" ) ); - BOOST_TEST( *next( itr_ck.begin() ) == std::string( "/" ) ); - BOOST_TEST( next( next( itr_ck.begin() )) == itr_ck.end() ); - BOOST_TEST( prior( prior( itr_ck.end() )) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "/" ) ); - BOOST_TEST( *prior( prior( itr_ck.end() )) == std::string( "c:" ) ); + BOOST_TEST( *boost::next( itr_ck.begin() ) == std::string( "/" ) ); + BOOST_TEST( boost::next( boost::next( itr_ck.begin() )) == itr_ck.end() ); + BOOST_TEST( boost::prior( boost::prior( itr_ck.end() )) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "/" ) ); + BOOST_TEST( *boost::prior( boost::prior( itr_ck.end() )) == std::string( "c:" ) ); itr_ck = path( "c:foo" ); BOOST_TEST( *itr_ck.begin() == std::string( "c:" ) ); - BOOST_TEST( *next( itr_ck.begin() ) == std::string( "foo" ) ); - BOOST_TEST( next(next( itr_ck.begin() )) == itr_ck.end() ); - BOOST_TEST( prior(prior( itr_ck.end() )) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "foo" ) ); - BOOST_TEST( *prior(prior( itr_ck.end() )) == std::string( "c:" ) ); + BOOST_TEST( *boost::next( itr_ck.begin() ) == std::string( "foo" ) ); + BOOST_TEST( boost::next(boost::next( itr_ck.begin() )) == itr_ck.end() ); + BOOST_TEST( boost::prior(boost::prior( itr_ck.end() )) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "foo" ) ); + BOOST_TEST( *boost::prior(boost::prior( itr_ck.end() )) == std::string( "c:" ) ); itr_ck = path( "c:/foo" ); BOOST_TEST( *itr_ck.begin() == std::string( "c:" ) ); - BOOST_TEST( *next( itr_ck.begin() ) == std::string( "/" ) ); - BOOST_TEST( *next( next( itr_ck.begin() )) == std::string( "foo" ) ); - BOOST_TEST( next( next( next( itr_ck.begin() ))) == itr_ck.end() ); - BOOST_TEST( prior( prior( prior( itr_ck.end() ))) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "foo" ) ); - BOOST_TEST( *prior( prior( itr_ck.end() )) == std::string( "/" ) ); - BOOST_TEST( *prior( prior( prior( itr_ck.end() ))) == std::string( "c:" ) ); + BOOST_TEST( *boost::next( itr_ck.begin() ) == std::string( "/" ) ); + BOOST_TEST( *boost::next( boost::next( itr_ck.begin() )) == std::string( "foo" ) ); + BOOST_TEST( boost::next( boost::next( boost::next( itr_ck.begin() ))) == itr_ck.end() ); + BOOST_TEST( boost::prior( boost::prior( boost::prior( itr_ck.end() ))) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "foo" ) ); + BOOST_TEST( *boost::prior( boost::prior( itr_ck.end() )) == std::string( "/" ) ); + BOOST_TEST( *boost::prior( boost::prior( boost::prior( itr_ck.end() ))) == std::string( "c:" ) ); itr_ck = path( "//net" ); BOOST_TEST( *itr_ck.begin() == std::string( "//net" ) ); - BOOST_TEST( next( itr_ck.begin() ) == itr_ck.end() ); - BOOST_TEST( prior( itr_ck.end() ) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "//net" ) ); + BOOST_TEST( boost::next( itr_ck.begin() ) == itr_ck.end() ); + BOOST_TEST( boost::prior( itr_ck.end() ) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "//net" ) ); itr_ck = path( "//net/" ); CHECK_EQUAL( *itr_ck.begin(), "//net" ); - CHECK_EQUAL( *next( itr_ck.begin() ), "/" ); - BOOST_TEST( next(next( itr_ck.begin() )) == itr_ck.end() ); - BOOST_TEST( prior(prior( itr_ck.end() )) == itr_ck.begin() ); - CHECK_EQUAL( *prior( itr_ck.end() ), "/" ); - CHECK_EQUAL( *prior(prior( itr_ck.end() )), "//net" ); + CHECK_EQUAL( *boost::next( itr_ck.begin() ), "/" ); + BOOST_TEST( boost::next(boost::next( itr_ck.begin() )) == itr_ck.end() ); + BOOST_TEST( boost::prior(boost::prior( itr_ck.end() )) == itr_ck.begin() ); + CHECK_EQUAL( *boost::prior( itr_ck.end() ), "/" ); + CHECK_EQUAL( *boost::prior(boost::prior( itr_ck.end() )), "//net" ); itr_ck = path( "//net/foo" ); BOOST_TEST( *itr_ck.begin() == std::string( "//net" ) ); - BOOST_TEST( *next( itr_ck.begin() ) == std::string( "/" ) ); - BOOST_TEST( *next(next( itr_ck.begin() )) == std::string( "foo" ) ); - BOOST_TEST( next(next(next( itr_ck.begin() ))) == itr_ck.end() ); - BOOST_TEST( prior(prior(prior( itr_ck.end() ))) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "foo" ) ); - BOOST_TEST( *prior(prior( itr_ck.end() )) == std::string( "/" ) ); - BOOST_TEST( *prior(prior(prior( itr_ck.end() ))) == std::string( "//net" ) ); + BOOST_TEST( *boost::next( itr_ck.begin() ) == std::string( "/" ) ); + BOOST_TEST( *boost::next(boost::next( itr_ck.begin() )) == std::string( "foo" ) ); + BOOST_TEST( boost::next(boost::next(boost::next( itr_ck.begin() ))) == itr_ck.end() ); + BOOST_TEST( boost::prior(boost::prior(boost::prior( itr_ck.end() ))) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "foo" ) ); + BOOST_TEST( *boost::prior(boost::prior( itr_ck.end() )) == std::string( "/" ) ); + BOOST_TEST( *boost::prior(boost::prior(boost::prior( itr_ck.end() ))) == std::string( "//net" ) ); itr_ck = path( "prn:" ); BOOST_TEST( *itr_ck.begin() == std::string( "prn:" ) ); - BOOST_TEST( next( itr_ck.begin() ) == itr_ck.end() ); - BOOST_TEST( prior( itr_ck.end() ) == itr_ck.begin() ); - BOOST_TEST( *prior( itr_ck.end() ) == std::string( "prn:" ) ); + BOOST_TEST( boost::next( itr_ck.begin() ) == itr_ck.end() ); + BOOST_TEST( boost::prior( itr_ck.end() ) == itr_ck.begin() ); + BOOST_TEST( *boost::prior( itr_ck.end() ) == std::string( "prn:" ) ); } // Windows else Index: boost.spec =================================================================== RCS file: /cvs/pkgs/rpms/boost/devel/boost.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- boost.spec 11 May 2009 23:45:59 -0000 1.62 +++ boost.spec 2 Jul 2009 16:38:45 -0000 1.63 @@ -1,7 +1,7 @@ Name: boost Summary: The Boost C++ Libraries Version: 1.39.0 -Release: 2%{?dist} +Release: 3%{?dist} License: Boost URL: http://www.boost.org/ Group: System Environment/Libraries @@ -23,6 +23,7 @@ Requires: boost-regex = %{version}-%{rel Requires: boost-serialization = %{version}-%{release} Requires: boost-signals = %{version}-%{release} Requires: boost-system = %{version}-%{release} +Requires: boost-thread = %{version}-%{release} Requires: boost-wave = %{version}-%{release} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,6 +41,7 @@ Patch3: boost-soname.patch Patch4: boost-unneccessary_iostreams.patch Patch5: boost-bitset.patch Patch6: boost-function_template.patch +Patch7: boost-fs_gcc44.patch %bcond_with tests %bcond_with docs_generated @@ -175,6 +177,17 @@ Runtime support for the Boost.Wave libra and highly configurable implementation of the mandated C99/C++ preprocessor functionality. +%package thread +Summary: Runtime component of boost thread library +Group: System Environment/Libraries + +%description thread + +Runtime component Boost.Thread library, which provides classes and +functions for managing multiple threads of execution, and for +synchronizing data between the threads or providing separate copies of +data specific to individual threads. + %package devel Summary: The Boost C++ headers and shared development libraries Group: Development/Libraries @@ -211,6 +224,7 @@ sed 's/_FEDORA_SONAME/%{sonamever}/' %{P %patch4 -p0 %patch5 -p0 %patch6 -p0 +%patch7 -p0 %build BOOST_ROOT=`pwd` @@ -333,9 +347,6 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %files -%defattr(-, root, root, -) -%{_libdir}/*.so.%{version} -%{_libdir}/*.so.%{sonamever} %files date-time %defattr(-, root, root, -) @@ -401,6 +412,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libboost_system*.so.%{version} %{_libdir}/libboost_system*.so.%{sonamever} +%files thread +%defattr(-, root, root, -) +%{_libdir}/libboost_thread*.so.%{version} +%{_libdir}/libboost_thread*.so.%{sonamever} + %files wave %defattr(-, root, root, -) %{_libdir}/libboost_wave*.so.%{version} @@ -420,6 +436,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Thu Jul 2 2009 Petr Machata - 1.39.0-3 +- Drop file list for main "boost" package, which was inadvertently left in. +- Add thread sub-package to capture omitted boost_thread. +- Add upstream patch to make boost_filesystem compatible with C++0x. +- Resolves: #496188 +- Resolves: #509250 + * Mon May 11 2009 Benjamin Kosnik - 1.39.0-2 - Apply patch from Caolan McNamara - Resolves: #500030 function_template bug is back... From mclasen at fedoraproject.org Thu Jul 2 16:42:17 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 2 Jul 2009 16:42:17 +0000 (UTC) Subject: rpms/at-spi/devel at-spi.spec,1.115,1.116 Message-ID: <20090702164217.590B111C0418@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/at-spi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25895 Modified Files: at-spi.spec Log Message: Rebuild Index: at-spi.spec =================================================================== RCS file: /cvs/pkgs/rpms/at-spi/devel/at-spi.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- at-spi.spec 16 Mar 2009 18:06:57 -0000 1.115 +++ at-spi.spec 2 Jul 2009 16:42:16 -0000 1.116 @@ -10,7 +10,7 @@ Summary: Assistive Technology Service Provider Interface Name: at-spi Version: 1.26.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://developer.gnome.org/projects/gap/ Source0: http://download.gnome.org/sources/at-spi/1.26/%{name}-%{version}.tar.bz2 @@ -152,6 +152,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Matthias Clasen - 1.26.0-2 +- Rebuild + * Mon Mar 16 2009 Matthias Clasen - 1.26.0-1 - Update to 1.26.0 From nsantos at fedoraproject.org Thu Jul 2 16:53:27 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 16:53:27 +0000 (UTC) Subject: rpms/amqp/F-10 .cvsignore, 1.16, 1.17 amqp.spec, 1.21, 1.22 sources, 1.19, 1.20 Message-ID: <20090702165327.5C03511C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/amqp/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28145 Modified Files: .cvsignore amqp.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/amqp/F-10/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 26 Jun 2009 18:00:42 -0000 1.16 +++ .cvsignore 2 Jul 2009 16:52:57 -0000 1.17 @@ -1 +1 @@ -amqp-1.0.788782.tar.gz +amqp-1.0.790661.tar.gz Index: amqp.spec =================================================================== RCS file: /cvs/extras/rpms/amqp/F-10/amqp.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- amqp.spec 26 Jun 2009 18:00:42 -0000 1.21 +++ amqp.spec 2 Jul 2009 16:52:57 -0000 1.22 @@ -1,5 +1,5 @@ Name: amqp -Version: 1.0.788782 +Version: 1.0.790661 Release: 1%{?dist} Epoch: 0 Summary: The AMQP specification @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0:1.0.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0:1.0.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/amqp/F-10/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 26 Jun 2009 18:00:42 -0000 1.19 +++ sources 2 Jul 2009 16:52:57 -0000 1.20 @@ -1 +1 @@ -7b3a6d008ead8958e9d4d0ffa5fb16a1 amqp-1.0.788782.tar.gz +10dacce89b0c319b5b23ba76470ba6bd amqp-1.0.790661.tar.gz From monnerat at fedoraproject.org Thu Jul 2 16:56:43 2009 From: monnerat at fedoraproject.org (Patrick Monnerat) Date: Thu, 2 Jul 2009 16:56:43 +0000 (UTC) Subject: rpms/php-hkit/F-11 import.log, NONE, 1.1 php-hkit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702165643.8C7EA11C0418@cvs1.fedora.phx.redhat.com> Author: monnerat Update of /cvs/pkgs/rpms/php-hkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28674/F-11 Modified Files: .cvsignore sources Added Files: import.log php-hkit.spec Log Message: * Thu Jul 2 CEST 2009 Patrick Monnerat 0.5-3 - Initial CVS import --- NEW FILE import.log --- php-hkit-0_5-3_fc10:F-11:php-hkit-0.5-3.fc10.src.rpm:1246553656 --- NEW FILE php-hkit.spec --- Name: php-hkit Summary: Simple PHP5 API for extracting common microformats from a page Version: 0.5 Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://hkit.googlecode.com/files/hkit-v%{version}.tgz URL: http://allinthehead.com/hkit Requires: php >= 5.0.0 Buildarch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root %description hKit is a simple toolkit for extracting common microformats from a page. The page can be presented as a string or a URL, and the result is handed back as a standard PHP array structure. hKit uses SimpleXML for parsing, and therefore requires PHP5. Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards. The only microformat module currently supported by hKit is hCard. However, hKit makes possible for a user to write its own microformat module. #------------------------------------------------------------------------------- %prep #------------------------------------------------------------------------------- %setup -q -c #------------------------------------------------------------------------------- %build #------------------------------------------------------------------------------- # Nothing to do. #------------------------------------------------------------------------------- %install #------------------------------------------------------------------------------- rm -rf "${RPM_BUILD_ROOT}" # install directory. install -p -d -m 755 "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit" # Install files. install -p -m 644 hkit.class.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" install -p -m 644 hcard.profile.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" #------------------------------------------------------------------------------- %clean #------------------------------------------------------------------------------- rm -rf "${RPM_BUILD_ROOT}" #------------------------------------------------------------------------------- %files #------------------------------------------------------------------------------- %defattr(-, root, root, -) %doc example.php %{_datadir}/php/hkit #------------------------------------------------------------------------------- %changelog #------------------------------------------------------------------------------- * Thu Jul 2 2009 Patrick Monnerat 0.5-3. - Release bump due to cvs tag problem. * Mon Jun 22 2009 Patrick Monnerat 0.5-2 - Move class files from /usr/share/php to /usr/share/php/hkit. * Tue Jun 2 2009 Patrick Monnerat 0.5-1 - Initial RPM spec file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 18 Jun 2009 20:16:51 -0000 1.1 +++ .cvsignore 2 Jul 2009 16:56:13 -0000 1.2 @@ -0,0 +1 @@ +hkit-v0.5.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 18 Jun 2009 20:16:51 -0000 1.1 +++ sources 2 Jul 2009 16:56:13 -0000 1.2 @@ -0,0 +1 @@ +37f3c192a94a86cd96770d53b3f22095 hkit-v0.5.tgz From monnerat at fedoraproject.org Thu Jul 2 16:58:35 2009 From: monnerat at fedoraproject.org (Patrick Monnerat) Date: Thu, 2 Jul 2009 16:58:35 +0000 (UTC) Subject: rpms/php-hkit/F-10 import.log, NONE, 1.1 php-hkit.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702165835.8C28C11C048A@cvs1.fedora.phx.redhat.com> Author: monnerat Update of /cvs/pkgs/rpms/php-hkit/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29486/F-10 Modified Files: .cvsignore sources Added Files: import.log php-hkit.spec Log Message: * Thu Jul 2 2009 Patrick Monnerat 0.5-3 - Initial CVS import --- NEW FILE import.log --- php-hkit-0_5-3_fc10:F-10:php-hkit-0.5-3.fc10.src.rpm:1246553858 --- NEW FILE php-hkit.spec --- Name: php-hkit Summary: Simple PHP5 API for extracting common microformats from a page Version: 0.5 Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://hkit.googlecode.com/files/hkit-v%{version}.tgz URL: http://allinthehead.com/hkit Requires: php >= 5.0.0 Buildarch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root %description hKit is a simple toolkit for extracting common microformats from a page. The page can be presented as a string or a URL, and the result is handed back as a standard PHP array structure. hKit uses SimpleXML for parsing, and therefore requires PHP5. Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards. The only microformat module currently supported by hKit is hCard. However, hKit makes possible for a user to write its own microformat module. #------------------------------------------------------------------------------- %prep #------------------------------------------------------------------------------- %setup -q -c #------------------------------------------------------------------------------- %build #------------------------------------------------------------------------------- # Nothing to do. #------------------------------------------------------------------------------- %install #------------------------------------------------------------------------------- rm -rf "${RPM_BUILD_ROOT}" # install directory. install -p -d -m 755 "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit" # Install files. install -p -m 644 hkit.class.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" install -p -m 644 hcard.profile.php "${RPM_BUILD_ROOT}/%{_datadir}/php/hkit/" #------------------------------------------------------------------------------- %clean #------------------------------------------------------------------------------- rm -rf "${RPM_BUILD_ROOT}" #------------------------------------------------------------------------------- %files #------------------------------------------------------------------------------- %defattr(-, root, root, -) %doc example.php %{_datadir}/php/hkit #------------------------------------------------------------------------------- %changelog #------------------------------------------------------------------------------- * Thu Jul 2 2009 Patrick Monnerat 0.5-3. - Release bump due to cvs tag problem. * Mon Jun 22 2009 Patrick Monnerat 0.5-2 - Move class files from /usr/share/php to /usr/share/php/hkit. * Tue Jun 2 2009 Patrick Monnerat 0.5-1 - Initial RPM spec file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 18 Jun 2009 20:16:51 -0000 1.1 +++ .cvsignore 2 Jul 2009 16:58:35 -0000 1.2 @@ -0,0 +1 @@ +hkit-v0.5.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 18 Jun 2009 20:16:51 -0000 1.1 +++ sources 2 Jul 2009 16:58:35 -0000 1.2 @@ -0,0 +1 @@ +37f3c192a94a86cd96770d53b3f22095 hkit-v0.5.tgz From nsantos at fedoraproject.org Thu Jul 2 16:59:32 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 16:59:32 +0000 (UTC) Subject: rpms/amqp/F-11 .cvsignore, 1.16, 1.17 amqp.spec, 1.22, 1.23 sources, 1.19, 1.20 Message-ID: <20090702165932.4C02A11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/amqp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30410 Modified Files: .cvsignore amqp.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/amqp/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 26 Jun 2009 18:05:58 -0000 1.16 +++ .cvsignore 2 Jul 2009 16:59:02 -0000 1.17 @@ -1 +1 @@ -amqp-1.0.788782.tar.gz +amqp-1.0.790661.tar.gz Index: amqp.spec =================================================================== RCS file: /cvs/extras/rpms/amqp/F-11/amqp.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- amqp.spec 26 Jun 2009 18:05:58 -0000 1.22 +++ amqp.spec 2 Jul 2009 16:59:02 -0000 1.23 @@ -1,5 +1,5 @@ Name: amqp -Version: 1.0.788782 +Version: 1.0.790661 Release: 1%{?dist} Epoch: 0 Summary: The AMQP specification @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0:1.0.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0:1.0.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/amqp/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 26 Jun 2009 18:05:58 -0000 1.19 +++ sources 2 Jul 2009 16:59:02 -0000 1.20 @@ -1 +1 @@ -7b3a6d008ead8958e9d4d0ffa5fb16a1 amqp-1.0.788782.tar.gz +10dacce89b0c319b5b23ba76470ba6bd amqp-1.0.790661.tar.gz From ajax at fedoraproject.org Thu Jul 2 17:02:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 17:02:52 +0000 (UTC) Subject: rpms/libvorbis/devel .cvsignore, 1.10, 1.11 libvorbis.spec, 1.35, 1.36 sources, 1.10, 1.11 Message-ID: <20090702170252.45EE911C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libvorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31418 Modified Files: .cvsignore libvorbis.spec sources Log Message: * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - libvorbis 1.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 3 Jun 2009 15:48:50 -0000 1.10 +++ .cvsignore 2 Jul 2009 17:02:51 -0000 1.11 @@ -1,2 +1,3 @@ libvorbis-1.2.0.tar.bz2 libvorbis-1.2.2rc1.tar.bz2 +libvorbis-1.2.2.tar.bz2 Index: libvorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/libvorbis.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libvorbis.spec 3 Jun 2009 15:48:50 -0000 1.35 +++ libvorbis.spec 2 Jul 2009 17:02:52 -0000 1.36 @@ -1,13 +1,12 @@ Summary: The Vorbis General Audio Compression Codec. Name: libvorbis Version: 1.2.2 -Release: 0.1.rc1%{?dist} +Release: 1%{?dist} Epoch: 1 Group: System Environment/Libraries License: BSD URL: http://www.xiph.org/ -#Source: http://downloads.xiph.org/releases/vorbis/libvorbis-%{version}.tar.bz2 -Source: http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.2rc1.tar.bz2 +Source: http://downloads.xiph.org/releases/vorbis/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libogg-devel >= 2:1.1 @@ -40,12 +39,9 @@ Documentation for developing application %prep -%setup -q -n libvorbis-1.2.2rc1 -perl -p -i -e "s/-O20/$RPM_OPT_FLAGS/" configure -perl -p -i -e "s/-ffast-math//" configure - -# workaround for bizarre timestamps -find . | xargs touch +%setup -q +sed -i "s/-O20/$RPM_OPT_FLAGS/" configure +sed -i "s/-ffast-math//" configure %build %configure --with-ogg-libraries=%{_libdir} --disable-static @@ -76,7 +72,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.la %files devel-docs %defattr(-,root,root) -%{_docdir}/libvorbis-1.2.2rc1/ +%{_docdir}/%{name}-%{version} %clean rm -rf $RPM_BUILD_ROOT @@ -86,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Thu Jul 02 2009 Adam Jackson 1.2.2-1 +- libvorbis 1.2.2 + * Wed Jun 03 2009 Adam Jackson 1.2.2-0.1.rc1 - libvorbis 1.2.2rc1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 3 Jun 2009 15:48:51 -0000 1.10 +++ sources 2 Jul 2009 17:02:52 -0000 1.11 @@ -1 +1 @@ -6a7086ee666b8c62e122d29d107f7bec libvorbis-1.2.2rc1.tar.bz2 +7a38198f40efb9e463af5d29083f1a23 libvorbis-1.2.2.tar.bz2 From nsantos at fedoraproject.org Thu Jul 2 17:04:44 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 17:04:44 +0000 (UTC) Subject: rpms/amqp/devel .cvsignore, 1.15, 1.16 amqp.spec, 1.21, 1.22 sources, 1.18, 1.19 Message-ID: <20090702170444.6F8CD11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/amqp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31794 Modified Files: .cvsignore amqp.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/amqp/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 26 Jun 2009 18:23:49 -0000 1.15 +++ .cvsignore 2 Jul 2009 17:04:14 -0000 1.16 @@ -1 +1 @@ -amqp-1.0.788782.tar.gz +amqp-1.0.790661.tar.gz Index: amqp.spec =================================================================== RCS file: /cvs/extras/rpms/amqp/devel/amqp.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- amqp.spec 26 Jun 2009 18:23:49 -0000 1.21 +++ amqp.spec 2 Jul 2009 17:04:14 -0000 1.22 @@ -1,5 +1,5 @@ Name: amqp -Version: 1.0.788782 +Version: 1.0.790661 Release: 1%{?dist} Epoch: 0 Summary: The AMQP specification @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0:1.0.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0:1.0.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/amqp/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 26 Jun 2009 18:23:49 -0000 1.18 +++ sources 2 Jul 2009 17:04:14 -0000 1.19 @@ -1 +1 @@ -7b3a6d008ead8958e9d4d0ffa5fb16a1 amqp-1.0.788782.tar.gz +10dacce89b0c319b5b23ba76470ba6bd amqp-1.0.790661.tar.gz From ajax at fedoraproject.org Thu Jul 2 17:05:56 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 17:05:56 +0000 (UTC) Subject: rpms/libogg/devel libogg.spec,1.33,1.34 Message-ID: <20090702170556.3CC1611C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libogg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32080 Modified Files: libogg.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1.1.4-1 - libogg 1.1.4 Index: libogg.spec =================================================================== RCS file: /cvs/pkgs/rpms/libogg/devel/libogg.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libogg.spec 3 Jun 2009 15:22:08 -0000 1.33 +++ libogg.spec 2 Jul 2009 17:05:26 -0000 1.34 @@ -1,14 +1,12 @@ Summary: The Ogg bitstream file format library Name: libogg Version: 1.1.4 -# bump to 1%{?dist} for real release, otherwise 0.x.rcX -Release: 0.1.rc1%{?dist} +Release: 1%{?dist} Epoch: 2 Group: System Environment/Libraries License: BSD URL: http://www.xiph.org/ -#Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.gz -Source: http://downloads.xiph.org/releases/ogg/%{name}-1.1.4rc1.tar.gz +Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -40,12 +38,12 @@ Documentation for developing application %prep -%setup -q -n %{name}-1.1.4rc1 +%setup -q %build -perl -p -i -e "s/-O20/$RPM_OPT_FLAGS/" configure -perl -p -i -e "s/-ffast-math//" configure +sed -i "s/-O20/$RPM_OPT_FLAGS/" configure +sed -i "s/-ffast-math//" configure %configure --disable-static make %{?_smp_mflags} @@ -54,7 +52,6 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install -# remove unpackaged files from the buildroot rm -f $RPM_BUILD_ROOT%{_libdir}/*.la @@ -83,10 +80,12 @@ rm -rf $RPM_BUILD_ROOT %files devel-docs %defattr(-,root,root) -# this should use %{name} but the rc name is funky -%{_docdir}/libogg-1.1.4rc1/ +%{_docdir}/%{name}-%{version} %changelog +* Thu Jul 02 2009 Adam Jackson 1.1.4-1 +- libogg 1.1.4 + * Wed Jun 03 2009 Adam Jackson 1.1.4-0.1.rc1 - libogg 1.1.4rc1 - split devel docs to noarch subpackage From ajax at fedoraproject.org Thu Jul 2 17:06:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 17:06:22 +0000 (UTC) Subject: rpms/libogg/devel .cvsignore,1.10,1.11 sources,1.10,1.11 Message-ID: <20090702170622.2F55B11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libogg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32180 Modified Files: .cvsignore sources Log Message: * Thu Jul 02 2009 Adam Jackson 1.1.4-1 - libogg 1.1.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libogg/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 3 Jun 2009 15:22:07 -0000 1.10 +++ .cvsignore 2 Jul 2009 17:05:51 -0000 1.11 @@ -2,3 +2,4 @@ libogg-1.1.tar.gz libogg-1.1.2.tar.gz libogg-1.1.3.tar.gz libogg-1.1.4rc1.tar.gz +libogg-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libogg/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 3 Jun 2009 15:22:08 -0000 1.10 +++ sources 2 Jul 2009 17:05:51 -0000 1.11 @@ -1 +1 @@ -dc1c9c89667b7fdbb336bbc056bd5425 libogg-1.1.4rc1.tar.gz +10200ec22543841d9d1c23e0aed4e5e9 libogg-1.1.4.tar.gz From jspaleta at fedoraproject.org Thu Jul 2 17:10:15 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Thu, 2 Jul 2009 17:10:15 +0000 (UTC) Subject: rpms/gpodder/devel gpodder.spec,1.28,1.29 Message-ID: <20090702171015.B516711C0418@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/gpodder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv597 Modified Files: gpodder.spec Log Message: * Sun Jul 2 2009 - 0.16.1-2 jpaleta - feedparser buildrequires fix Index: gpodder.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/gpodder.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gpodder.spec 15 Jun 2009 00:52:06 -0000 1.28 +++ gpodder.spec 2 Jul 2009 17:09:45 -0000 1.29 @@ -3,7 +3,7 @@ Name: gpodder Version: 0.16.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Podcast receiver/catcher written in Python Group: Applications/Multimedia @@ -12,7 +12,7 @@ URL: http://gpodder.berlios.d Source0: http://download.berlios.de/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: python-devel ImageMagick +BuildRequires: python-devel,ImageMagick,python-feedparser BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool @@ -78,6 +78,9 @@ fi %{python_sitelib}/%{name}*.egg-info %changelog +* Sun Jul 2 2009 - 0.16.1-2 jpaleta +- feedparser buildrequires fix + * Sun Jun 14 2009 - 0.16.1-1 jpaleta - new upstream point release new features and bug fixes. See upstream website for details. From nsantos at fedoraproject.org Thu Jul 2 17:15:40 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 17:15:40 +0000 (UTC) Subject: rpms/python-qpid/F-10 .cvsignore, 1.15, 1.16 python-qpid.spec, 1.23, 1.24 sources, 1.19, 1.20 Message-ID: <20090702171540.7C90311C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/python-qpid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1757 Modified Files: .cvsignore python-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-10/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 26 Jun 2009 18:33:52 -0000 1.15 +++ .cvsignore 2 Jul 2009 17:15:10 -0000 1.16 @@ -1 +1 @@ -python-qpid-0.5.788782.tar.gz +python-qpid-0.5.790661.tar.gz Index: python-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-10/python-qpid.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- python-qpid.spec 26 Jun 2009 18:33:53 -0000 1.23 +++ python-qpid.spec 2 Jul 2009 17:15:10 -0000 1.24 @@ -1,5 +1,5 @@ Name: python-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Python language client for AMQP @@ -16,7 +16,7 @@ BuildRequires: python BuildRequires: python-devel Requires: python -Requires: amqp >= 1.0.788782 +Requires: amqp >= 1.0.790661 %description The Apache Qpid project's Python language client for AMQP. @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-10/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 26 Jun 2009 18:33:53 -0000 1.19 +++ sources 2 Jul 2009 17:15:10 -0000 1.20 @@ -1 +1 @@ -e11ba0a145ea3b4240c874f50295d657 python-qpid-0.5.788782.tar.gz +17f2af041cf2ed18cf0982c0dffdfdc9 python-qpid-0.5.790661.tar.gz From kyle at fedoraproject.org Thu Jul 2 17:18:42 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Thu, 2 Jul 2009 17:18:42 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc1-git9.bz2.sign, NONE, 1.1 .cvsignore, 1.1089, 1.1090 kernel.spec, 1.1601, 1.1602 sources, 1.1047, 1.1048 upstream, 1.961, 1.962 linux-2.6-dm-fix-exstore-search.patch, 1.3, NONE patch-2.6.31-rc1-git7.bz2.sign, 1.1, NONE Message-ID: <20090702171842.610BC11C0418@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2559 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc1-git9.bz2.sign Removed Files: linux-2.6-dm-fix-exstore-search.patch patch-2.6.31-rc1-git7.bz2.sign Log Message: * Thu Jul 02 2009 Kyle McMartin 2.6.31-0.39.rc1.git9 - 2.6.31-rc1-git9 - linux-2.6-dm-fix-exstore-search.patch: similar patch merged upstream. --- NEW FILE patch-2.6.31-rc1-git9.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKTAIMyGugalF9Dw4RAn5kAJ9tSeZrd9h+IIt5S9xNqYl9+eqNKwCggWVU bwMBi06i+lofyVJHqGs6Vfs= =oRuM -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1089 retrieving revision 1.1090 diff -u -p -r1.1089 -r1.1090 --- .cvsignore 30 Jun 2009 23:20:25 -0000 1.1089 +++ .cvsignore 2 Jul 2009 17:18:11 -0000 1.1090 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git7.bz2 +patch-2.6.31-rc1-git9.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1601 retrieving revision 1.1602 diff -u -p -r1.1601 -r1.1602 --- kernel.spec 30 Jun 2009 23:20:25 -0000 1.1601 +++ kernel.spec 2 Jul 2009 17:18:11 -0000 1.1602 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 1 # The git snapshot level -%define gitrev 7 +%define gitrev 9 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -682,9 +682,6 @@ Patch10000: linux-2.6-missing-rfc2465-st # VIA Nano / VX8xx updates Patch11010: via-hwmon-temp-sensor.patch -# temporary fixes -Patch12000: linux-2.6-dm-fix-exstore-search.patch - # patches headed upstream %endif @@ -1244,9 +1241,6 @@ ApplyPatch linux-2.6-silence-acpi-blackl #ApplyPatch linux-2.6-v4l-dvb-experimental.patch #ApplyPatch linux-2.6-revert-dvb-net-kabi-change.patch -# temporary fixes, headed upstream -ApplyPatch linux-2.6-dm-fix-exstore-search.patch - # END OF PATCH APPLICATIONS %endif @@ -1846,6 +1840,10 @@ fi # and build. %changelog +* Thu Jul 02 2009 Kyle McMartin 2.6.31-0.39.rc1.git9 +- 2.6.31-rc1-git9 +- linux-2.6-dm-fix-exstore-search.patch: similar patch merged upstream. + * Tue Jun 30 2009 Chuck Ebbert 2.6.31-0.38.rc1.git7 - 2.6.31-rc1-git7 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1047 retrieving revision 1.1048 diff -u -p -r1.1047 -r1.1048 --- sources 30 Jun 2009 23:20:25 -0000 1.1047 +++ sources 2 Jul 2009 17:18:12 -0000 1.1048 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 33d2d730beb66aa82349df8b6096fd91 patch-2.6.31-rc1.bz2 -82cf4ce14fd8312b91615b098d858e91 patch-2.6.31-rc1-git7.bz2 +e5fd406d8910e1dd1f756400488d5921 patch-2.6.31-rc1-git9.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.961 retrieving revision 1.962 diff -u -p -r1.961 -r1.962 --- upstream 30 Jun 2009 23:20:25 -0000 1.961 +++ upstream 2 Jul 2009 17:18:12 -0000 1.962 @@ -1,3 +1,3 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git7.bz2 +patch-2.6.31-rc1-git9.bz2 --- linux-2.6-dm-fix-exstore-search.patch DELETED --- --- patch-2.6.31-rc1-git7.bz2.sign DELETED --- From clumens at fedoraproject.org Thu Jul 2 17:19:37 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Thu, 2 Jul 2009 17:19:37 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.642, 1.643 anaconda.spec, 1.791, 1.792 sources, 1.776, 1.777 Message-ID: <20090702171937.36A6E11C0418@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2403 Modified Files: .cvsignore anaconda.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.642 retrieving revision 1.643 diff -u -p -r1.642 -r1.643 --- .cvsignore 18 May 2009 23:35:25 -0000 1.642 +++ .cvsignore 2 Jul 2009 17:19:06 -0000 1.643 @@ -1 +1,2 @@ anaconda-11.5.0.53.tar.bz2 +anaconda-12.0.tar.bz2 View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.791 -r 1.792 anaconda.spec Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.791 retrieving revision 1.792 diff -u -p -r1.791 -r1.792 --- anaconda.spec 18 May 2009 23:35:26 -0000 1.791 +++ anaconda.spec 2 Jul 2009 17:19:06 -0000 1.792 @@ -1,8 +1,9 @@ %define livearches %{ix86} x86_64 ppc ppc64 +%define _libdir %{_prefix}/lib Summary: Graphical system installer Name: anaconda -Version: 11.5.0.53 +Version: 12.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -11,7 +12,7 @@ URL: http://fedoraproject.org/wiki/A # To generate Source0 do: # git clone http://git.fedorahosted.org/git/anaconda.git # git checkout -b archive-branch anaconda-%{version}-%{release} -# make archive-no-tag +# make dist Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -25,7 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version %define libnlver 1.0 %define libselinuxver 1.6 %define mkinitrdver 5.1.2-1 -%define pykickstartver 1.53 +%define pykickstartver 1.55 %define rpmpythonver 4.2-0.61 %define slangver 2.0.6-2 %define yumver 2.9.2 @@ -112,7 +113,7 @@ Requires: cryptsetup-luks Requires: python-cryptsetup >= %{pythoncryptsetupver} Requires: mdadm Requires: lvm2 -Requires: util-linux-ng +Requires: util-linux-ng >= 2.15.1 %ifnarch s390 s390x ppc64 Requires: system-config-keyboard %endif @@ -149,19 +150,20 @@ Provides: anaconda-runtime = %{version}- Obsoletes: booty %description -The anaconda package contains the program which was used to install your +The anaconda package contains the program which was used to install your system. These files are of little use on an already installed system. %prep %setup -q %build -%{__make} depend +%configure --disable-static %{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} install DESTDIR=%{buildroot} +find %{buildroot} -type f -name "*.la" | xargs %{__rm} %ifarch %livearches desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_datadir}/applications/liveinst.desktop @@ -211,6 +213,147 @@ update-desktop-database &> /dev/null || %endif %changelog +* Thu Jul 02 2009 Chris Lumens - 12.0-1 +- network --bootproto no longer implies DHCP. (clumens) +- Don't unconditionally skip the network config screen in kickstart. (clumens) +- Allow creating new groups through kickstart. (clumens) +- Set focus on hostname entry in network UI screen (#494135) (rvykydal) +- Fix upgrade selected in UI after storage reset (#503302) (rvykydal) +- Add support for specifying upgrade partition in ks (#471232) (rvykydal) +- Add missing liveinst/* files. (dcantrell) +- Update code that checks for devices that contain install media. (dlehman) +- Rework tracking of devices containing installation media. (#497087) (dlehman) +- Add function storage.udev.udev_resolve_devspec. (dlehman) +- Prevent false positives in devtree's device lookup methods. (dlehman) +- Skip exceptionDisks if exn originated in devtree.populate. (#497240) (dlehman) +- Stop using rhpl.arch in writeRpmPlatform() (katzj) +- Move simpleconfig (back) into anaconda from rhpl (katzj) +- Use iutil arch specifiers rather than rhpl (katzj) +- Remove unused rhpl imports (katzj) +- Switch to using iutil.isS390 instead of rhpl.getArch (katzj) +- Stop using rhpl.translate (katzj) +- Default to /boot on ext4 (katzj) +- Allow /boot on ext4 now that we have a grub that allows it (katzj) +- Make sure the library directory is always set (notting) +- Write out "MAILADDR root" into mdadm.conf (#508321) (rvykydal) +- Do not install grub more times than needed. (rvykydal) +- Ensure we set the SELinux context correctly on symlinks (#505054) (katzj) +- udev dropped vol_id (#506360) (katzj) +- Handle installing multilib into the installer intramfs correctly. (notting) +- Set LIBDIR appropriately on PPC64. (notting) +- Fix grub upgrade (#505966) (rvykydal) +- Include yum.log in anacdump.txt too. (rvykydal) +- Access format options property instead of mountopts attr. (#506219) (dlehman) +- Be more careful about identifying NFS fstab entries. (dlehman) +- Don't add leading directory for files twice. (#503830) (dlehman) +- booty changes for iswmd (Jacek.Danecki) +- Support for MD containers. (Jacek.Danecki) +- New iswmd parameter for kernel cmdline (Jacek.Danecki) +- New udev rule for using mdadm for isw_raid_member (Jacek.Danecki) +- Use isohybrid to make boot.iso a hybrid image (katzj) +- Log yum messages. (rvykydal) +- Tell booty to rescan for bootable drivers when an extra disks get + added (hdegoede) +- Do not encourage VNC when doing kickstart text installs (#506534) (dcantrell) +- Rename bootstrap to autogen.sh (dcantrell) +- Include the contents of /proc/cmdline in exception reports (katzj) +- Include libwrap library for sshd and telnet in s390 installs (jgranado) +- Enforcing matching rootfs type on LVs as well as for partitions + (#504743) (katzj) +- Remove problem packages before attempting a re-download (#501887). (clumens) +- Be more explicit about what's lacking on EFI systems (#501341). (clumens) +- If not enough memory is installed, enforce swap partition creation + (#498742). (clumens) +- Convert to using automake/autoconf. (dcantrell) +- Convert po/ subdirectory to GNU gettext template system. (dcantrell) +- Restructure liveinst/ for the new build system. (dcantrell) +- Add m4/ subdirectory with autoconf macros. (dcantrell) +- Removed py-compile script. (dcantrell) +- Rename anaconda.spec to anaconda.spec.in (dcantrell) +- Ignore autoconf and automake files in the tree. (dcantrell) +- Removed toplevel Makefile and Makefile.inc (dcantrell) +- Show MAC address of network device in combo box (#504216) (dcantrell) +- Remove loader/tr/.cvsignore (dcantrell) +- Increase max NIC identification duration to 5 minutes (#473747). (dcantrell) +- Use /sbin/ipcalc for IP address validation (#460579) (dcantrell) +- Fix an obvious traceback when doing part --ondisk= (#504687). (clumens) +- Catch errors from bootloader installation (#502210). (clumens) +- Remove umask temporarily so device permissions are correct + (#383531, wmealing). +- Remove the name check on driver disk packages (#472951). (clumens) +- Make the installation key text more descriptive (#474375). (clumens) +- Fix discovery of existing raid/lvm for ks install without clearpart + (#503310, #503681) (rvykydal) +- Use the F12 version of the bootloader command. (clumens) +- It's /sbin/fsadm, not /sbin/e2fsadm (#504043). (clumens) +- Remove the bootloader --lba32 option. (clumens) +- Use gettext.ldngettext when necessary (#467603) (dcantrell) +- Test NM_CONTROLLED setting correctly in network.py (#502466) (dcantrell) +- Show unknown partitions as "Unknown" in partition editor. (dcantrell) +- Add a type hint on popup windows (rstrode). (clumens) +- Use the F12 version of the driverdisk command. (clumens) +- Remove driverdisk --type, since mount can figure that out. (clumens) +- Fix an error when editing an unreachable repo (#503454). (clumens) +- If /etc/rpm/platform is found, move it out of the way. (clumens) +- We no longer write out /etc/rpm/platform, so don't offer to upgrade + it. (clumens) +- Remove locals containing "passphrase" or "password" from exns + (#503442). (clumens) +- Make progress bars modal (#493263, #498553, rstrode). (clumens) +- Make sure to import os.path if we are going to use it. (jgranado) +- ipcalc is copied to /usr/lib. (jgranado) +- Limit the trigger to block type devices. (jgranado) +- We need ipcalc for new s390 installation script. (jgranado) +- Fix off-by-one errors in read. (notting) +- sysconfig file changed names for system-config-firewall (katzj) +- Don't write out firewall settings if they already exist (#502479) (katzj) +- Make sure that the devices are correctly detected (#491700) (jgranado) +- Make the save-to-bugzilla dupe detection smarter. (clumens) +- If network --device=MAC is given, translate to device name + (#185522). (clumens) +- Add a function to convert MAC addresses to device names. (clumens) +- Move /boot checks from sanityCheck into Platform.checkBootRequest. (clumens) +- Return translated strings from checkBootRequest. (clumens) +- Check that /boot is on a Mac disk label for PPC installs (#497745). (clumens) +- Call checkBootRequest from sanityCheck. (clumens) +- Put some space in that big scary warning. (clumens) +- fond -> found (clumens) +- Use powers of two in swapSuggestion (#463885). (clumens) +- Trim "mapper/" off device names in the bootloader UI (#501057). (clumens) +- Make the weak password dialog comply with the HIG (#487435). (clumens) +- Add a newline to a cmdline mode string (#497575). (clumens) + +* Tue Jun 02 2009 Chris Lumens - 11.5.0.59-1 +- Do not show disabled repos such as rawhide during the install (#503798). + (jkeating) + +* Sun May 31 2009 David Lehman - 11.5.0.58-1 +- Pass --force to lvresize so it doesn't ask for confirmation. (dlehman) +- Fix a typo in action sorting for resize actions (fs vs. device). (#501000) + (dlehman) +- Sending translation for French (mrtom) + +* Thu May 28 2009 Chris Lumens - 11.5.0.57-1 +- Create and use unique ids for Device instances. (#500808) (dlehman) +- Adjust remaining PartitionDevices' names after removing a partition. + (dlehman) + +* Tue May 26 2009 Chris Lumens - 11.5.0.56-1 +- Ensure matching rootfs type to live type with autopart (#501876) (katzj) [...3548 lines suppressed...] - -* Tue Oct 12 2004 Jeremy Katz - 10.0.3.17-1 -- Only use "our" LVM partitions with auto-partitioning (#135440) -- Remove localboot option from syslinux.cfg for diskboot.img (#135263) -- Handle the great input method switch on upgrade (#129218) -- Don't save the hwaddr for qeth (#135023) -- Add rhgb boot loader arguments in postinstall (msw) -- Reverse Norwegian blacklisting (#129453) (notting) -- Add sata_nv, sata_sx4, ixgb, ahci, sx8 modules to the initrd (notting) - -* Thu Oct 7 2004 Jeremy Katz - 10.0.3.16-1 -- s390/s390x: Fix traceback with unpartitioned disks (karsten) -- improve fit of bengali network screen (#134762) -- don't allow formatting of a pre-existing partition without also - mounting it (#134865) -- Don't show "0" as a mountpoint for an LV that's not being mounted (#134867) -- Add prelink config bits (#117867) -- Sort packages in text package group details (#123437) -- Don't traceback on upgrade if /dev/mapper/control exists (#124092) - -* Tue Oct 5 2004 Jeremy Katz - 10.0.3.15-1 -- Fix creation of scsi device nodes (#134709) -- Fix multiple kickstart scriptlets with different interpreters (#134707) - -* Mon Oct 4 2004 Jeremy Katz - 10.0.3.14-1 -- Some zfcp fixes -- Don't traceback if we have a %%include inside a scriptlet (#120252) -- Fix SELinux for text-mode ftp/http installs (#134549) - -* Mon Oct 4 2004 Mike McLean - 10.0.3.12-1 -- add command line options to pkgorder (mikem) - -* Mon Oct 4 2004 Jeremy Katz - 10.0.3.11-1 -- Handle 32 raid devs (#134438) -- Fix LCS PORTNAME (#134487) -- Add logging of kickstart scripts with --log to %%post/%%pre -- Copy /tmp/anaconda.log and /tmp/syslog to /var/log/anaconda.log - and /var/log/anaconda.syslog respectively (#124370) -- Fix Polish (#134554) -- Add arch-specific package removal (#133396) -- Include PPC PReP Boot partition in anaconda-ks.cfg (#133934) -- Fix changing of VG name going through to boot loader setup (#132213) -- Add support for > 128 SCSI disks (#134575) - -* Fri Oct 1 2004 Jeremy Katz - 10.0.3.10-1 -- add kickstart zfcp configuration (#133288, #130070) -- Use NFSv3 for NFS installs. Fixes NFSISO installs from DVD (#122032) -- Fix megaraid_mbox module name (#134369) -- Another uninitialized fix (#133996) -- Add the zh_CN font (#133330) - -* Thu Sep 30 2004 Jeremy Katz - 10.0.3.9-1 -- translation updates -- Install compat-arch-support by default (#133514) -- Warn if an older version is chosen for upgrading if product is RHEL (#134523) -- Fix traceback on upgrade with possible lvm1 (#134258) -- Make changing the DNS server work (#122554) -- More fixes from pnasrat for arch handling on upgrade - -* Thu Sep 30 2004 Paul Nasrat - 10.0.3.8-1 -- Fix missing rpm.ts (#133045) - -* Wed Sep 29 2004 Jeremy Katz - 10.0.3.7-1 -- Don't ask about mouse type on remote X display (#133902) -- Label swap filesystems (#127892) -- Fix possible crash on hd kickstart installs (#133996) -- Improve multiarch upgrade (#133045) -- Avoid changing the default language when selecting additional - language support (#134040) -- Remove spurious blank option in upgrade combo (#134058) -- Fix driver disk hang (#131112, #122952) -- Fix detection of unformatted dasd (#130123) - -* Mon Sep 27 2004 Jeremy Katz - 10.0.3.6-1 -- Fix traceback from auto-partitioning if you don't have enough space (#131325) -- Update FCP config for adding SCSI LUNs (#133290) - -* Mon Sep 27 2004 Jeremy Katz - 10.0.3.5-1 -- Fix driver disk segfault when using a partition (#133036) -- Let driver disk images on ext2 partitions work -- Fix nonet/nostorage -- Allow name.arch syntax in ks.cfg (#124456) -- Fix traceback unselecting last language (#133164) -- Skip version 0 swap (#122101) -- Handle /dev being present in device names of ks.cfg (#121486) -- Use no instead of no-latin1 for Norwegian keyboard (#133757) -- include other dm modules (#132001) - -* Fri Sep 24 2004 Jeremy Katz - 10.0.3.4-1 -- fix megaraid module name (notting) -- don't prompt for a driver disk on pSeries boxes with just - virtual devices (#135292) -- don't use PROBE_LOADED for cd probe (#131033) -- i2o devices don't use a "p" separator (#133379) -- switch back zh_CN font to default (#133330) -- add 3w-9xxx to modules.cgz (#133525) -- fix showing of freespace (#133425) - -* Wed Sep 22 2004 Jeremy Katz - 10.0.3.3-1 -- fix going back unmount of /dev/pts (#133301) -- fix SRPMs disc (#122737) -- add localboot option to isolinux.cfg (#120687) -- fix tree build on ia64 and x86_64 -- fix a syntax error for text mode selinux config - -* Tue Sep 21 2004 Jeremy Katz - 10.0.3.2-1 -- some fixes for Arabic (#122228) -- support using ksdevice=macaddr (#130605) -- add an images/pxeboot directory on ia64 - -* Tue Sep 21 2004 Jeremy Katz - 10.0.3.1-1 -- improve handling of non-physical consoles on some ppc and ia64 machines -- add Bengali(India) and Gujarati to the lang-table (#126108) -- add support for setting the CTC protocol on s/390 (#132324, #132325) -- don't offer to do vnc if we don't have active nwtorking (#132833) -- various typo/grammar fixes -- add support for 'nostorage' and 'nonet' command line options to avoid - auto-loading just network or storage devices -- fix editing of pre-existing lvm (#132217) -- fix going back from the partitions list on a driver disk (#132096) -- don't show login error if silent errors (#132673) - -* Thu Jun 3 2004 Jeremy Katz -- require system-logos and anaconda-help, obsolete anaconda-images - -* Fri Apr 30 2004 Jeremy Katz -- Update description, remove prereq on stuff that was only needed - for reconfig mode - -* Tue Feb 24 2004 Jeremy Katz -- buildrequire libselinux-devel - -* Thu Nov 6 2003 Jeremy Katz -- require booty (#109272) - -* Tue Oct 8 2002 Jeremy Katz -- back to mainstream rpm instead of rpm404 - -* Mon Sep 9 2002 Jeremy Katz -- can't buildrequire dietlibc and kernel-pcmcia-cs since they don't always - exist - -* Wed Aug 21 2002 Jeremy Katz -- added URL - -* Thu May 23 2002 Jeremy Katz -- add require and buildrequire on rhpl - -* Tue Apr 02 2002 Michael Fulbright -- added some more docs - -* Fri Feb 22 2002 Jeremy Katz -- buildrequire kernel-pcmcia-cs as we've sucked the libs the loader needs - to there now - -* Thu Feb 07 2002 Michael Fulbright -- goodbye reconfig - -* Thu Jan 31 2002 Jeremy Katz -- update the BuildRequires a bit - -* Fri Jan 4 2002 Jeremy Katz -- ddcprobe is now done from kudzu - -* Wed Jul 18 2001 Jeremy Katz -- own /usr/lib/anaconda and /usr/share/anaconda - -* Fri Jan 12 2001 Matt Wilson -- sync text with specspo - -* Thu Aug 10 2000 Matt Wilson -- build on alpha again now that I've fixed the stubs - -* Wed Aug 9 2000 Michael Fulbright -- new build - -* Fri Aug 4 2000 Florian La Roche -- allow also subvendorid and subdeviceid in trimpcitable - -* Fri Jul 14 2000 Matt Wilson -- moved init script for reconfig mode to /etc/init.d/reconfig -- move the initscript back to /etc/rc.d/init.d -- Prereq: /etc/init.d - -* Thu Feb 03 2000 Michael Fulbright -- strip files -- add lang-table to file list - -* Wed Jan 05 2000 Michael Fulbright -- added requirement for rpm-python - -* Mon Dec 06 1999 Michael Fulbright -- rename to 'anaconda' instead of 'anaconda-reconfig' - -* Fri Dec 03 1999 Michael Fulbright -- remove ddcprobe since we don't do X configuration in reconfig now - -* Tue Nov 30 1999 Michael Fulbright -- first try at packaging reconfiguration tool - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.776 retrieving revision 1.777 diff -u -p -r1.776 -r1.777 --- sources 18 May 2009 23:35:27 -0000 1.776 +++ sources 2 Jul 2009 17:19:07 -0000 1.777 @@ -1 +1 @@ -654664409b3f4d13c9ada5f09a68eb74 anaconda-11.5.0.53.tar.bz2 +ecfcaff8232b2408e2469a0b82a97350 anaconda-12.0.tar.bz2 From nsantos at fedoraproject.org Thu Jul 2 17:22:24 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 17:22:24 +0000 (UTC) Subject: rpms/python-qpid/F-11 .cvsignore, 1.15, 1.16 python-qpid.spec, 1.25, 1.26 sources, 1.19, 1.20 Message-ID: <20090702172224.30C7611C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/python-qpid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3407 Modified Files: .cvsignore python-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-11/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 26 Jun 2009 18:39:44 -0000 1.15 +++ .cvsignore 2 Jul 2009 17:22:23 -0000 1.16 @@ -1 +1 @@ -python-qpid-0.5.788782.tar.gz +python-qpid-0.5.790661.tar.gz Index: python-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-11/python-qpid.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- python-qpid.spec 26 Jun 2009 18:39:44 -0000 1.25 +++ python-qpid.spec 2 Jul 2009 17:22:23 -0000 1.26 @@ -1,5 +1,5 @@ Name: python-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Python language client for AMQP @@ -16,7 +16,7 @@ BuildRequires: python BuildRequires: python-devel Requires: python -Requires: amqp >= 1.0.788782 +Requires: amqp >= 1.0.790661 %description The Apache Qpid project's Python language client for AMQP. @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/python-qpid/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 26 Jun 2009 18:39:44 -0000 1.19 +++ sources 2 Jul 2009 17:22:23 -0000 1.20 @@ -1 +1 @@ -e11ba0a145ea3b4240c874f50295d657 python-qpid-0.5.788782.tar.gz +17f2af041cf2ed18cf0982c0dffdfdc9 python-qpid-0.5.790661.tar.gz From rdieter at fedoraproject.org Thu Jul 2 17:24:14 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 17:24:14 +0000 (UTC) Subject: rpms/xine-lib/devel xine-lib.spec,1.75,1.76 Message-ID: <20090702172414.ED92711C0418@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/xine-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3883 Modified Files: xine-lib.spec Log Message: * Thu Jul 02 2009 Rex Dieter - 1.1.16.3-3 - rebuild (DirectFB) Index: xine-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-lib/devel/xine-lib.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- xine-lib.spec 17 Apr 2009 16:56:23 -0000 1.75 +++ xine-lib.spec 2 Jul 2009 17:24:14 -0000 1.76 @@ -30,7 +30,7 @@ Summary: A multimedia engine Name: xine-lib Version: 1.1.16.3 -Release: 2%{?dist}.1 +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://xinehq.de/ @@ -425,6 +425,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Rex Dieter - 1.1.16.3-3 +- rebuild (DirectFB) + * Fri Apr 17 2009 Rex Dieter - 1.1.16.3-2.1 - drop old_caca hacks/patches (F-9) From tuxbrewr at fedoraproject.org Thu Jul 2 17:28:03 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 2 Jul 2009 17:28:03 +0000 (UTC) Subject: rpms/liferea/F-11 liferea.spec,1.136,1.137 Message-ID: <20090702172803.2F51C11C0418@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/liferea/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4788 Modified Files: liferea.spec Log Message: - Double bump due to conflicting builds Index: liferea.spec =================================================================== RCS file: /cvs/pkgs/rpms/liferea/F-11/liferea.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- liferea.spec 30 Jun 2009 21:17:04 -0000 1.136 +++ liferea.spec 2 Jul 2009 17:27:32 -0000 1.137 @@ -1,6 +1,6 @@ Name: liferea Version: 1.6.0 -Release: 0.1.rc6%{?dist} +Release: 0.3.rc6%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -106,6 +106,9 @@ fi %dir %{_libdir}/%{name} %changelog +* Thu Jul 02 2009 Steven M. Parrish 1.6.0-0.3.rc6 +- Double bump due to conflicting builds + * Tue Jun 30 2009 Steven M. Parrish 1.6.0-0.1.rc6 - Updated the example feeds. - Updated the social bookmarking sites. From nsantos at fedoraproject.org Thu Jul 2 17:30:42 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 17:30:42 +0000 (UTC) Subject: rpms/python-qpid/devel .cvsignore, 1.14, 1.15 python-qpid.spec, 1.24, 1.25 sources, 1.18, 1.19 Message-ID: <20090702173042.6BB5211C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/python-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6592 Modified Files: .cvsignore python-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/python-qpid/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 26 Jun 2009 18:46:00 -0000 1.14 +++ .cvsignore 2 Jul 2009 17:30:12 -0000 1.15 @@ -1 +1 @@ -python-qpid-0.5.788782.tar.gz +python-qpid-0.5.790661.tar.gz Index: python-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/python-qpid/devel/python-qpid.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- python-qpid.spec 26 Jun 2009 18:46:01 -0000 1.24 +++ python-qpid.spec 2 Jul 2009 17:30:12 -0000 1.25 @@ -1,5 +1,5 @@ Name: python-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Python language client for AMQP @@ -16,7 +16,7 @@ BuildRequires: python BuildRequires: python-devel Requires: python -Requires: amqp >= 1.0.788782 +Requires: amqp >= 1.0.790661 %description The Apache Qpid project's Python language client for AMQP. @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/python-qpid/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 26 Jun 2009 18:46:01 -0000 1.18 +++ sources 2 Jul 2009 17:30:12 -0000 1.19 @@ -1 +1 @@ -e11ba0a145ea3b4240c874f50295d657 python-qpid-0.5.788782.tar.gz +17f2af041cf2ed18cf0982c0dffdfdc9 python-qpid-0.5.790661.tar.gz From s4504kr at fedoraproject.org Thu Jul 2 17:32:15 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 2 Jul 2009 17:32:15 +0000 (UTC) Subject: rpms/stellarium/devel stellarium.spec,1.57,1.58 Message-ID: <20090702173215.C638811C0418@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/stellarium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6995 Modified Files: stellarium.spec Log Message: Rebuild for new boost release Index: stellarium.spec =================================================================== RCS file: /cvs/extras/rpms/stellarium/devel/stellarium.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- stellarium.spec 24 Mar 2009 21:59:06 -0000 1.57 +++ stellarium.spec 2 Jul 2009 17:31:45 -0000 1.58 @@ -2,7 +2,7 @@ Name: stellarium Version: 0.10.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Photo-realistic nightsky renderer Group: Amusements/Graphics @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING stellarium_user_guide-%{guidever}.pdf %changelog +* Thu Jul 2 2009 Jochen Schmitt 0.10.2-3 +- Rebuild for new boost release + * Tue Mar 24 2009 Jochen Schmitt 0.10.2-2 - Changed desktop file (#491922) From ajax at fedoraproject.org Thu Jul 2 17:34:08 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 17:34:08 +0000 (UTC) Subject: rpms/libXt/devel .cvsignore, 1.10, 1.11 libXt.spec, 1.30, 1.31 sources, 1.11, 1.12 Message-ID: <20090702173408.348F611C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7472 Modified Files: .cvsignore libXt.spec sources Log Message: * Thu Jul 02 2009 Adam Jackson 1.0.6-1 - libXt 1.0.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXt/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 4 Sep 2008 19:52:09 -0000 1.10 +++ .cvsignore 2 Jul 2009 17:33:37 -0000 1.11 @@ -1 +1 @@ -libXt-1.0.5.tar.bz2 +libXt-1.0.6.tar.bz2 Index: libXt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXt/devel/libXt.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXt.spec 25 Feb 2009 13:28:53 -0000 1.30 +++ libXt.spec 2 Jul 2009 17:33:37 -0000 1.31 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXt runtime library Name: libXt -Version: 1.0.5 -Release: 2%{?dist} +Version: 1.0.6 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -25,7 +25,7 @@ Requires(pre): xorg-x11-filesystem >= 0. Requires: %{name} = %{version}-%{release} # needed by xt.pc -Requires: xorg-x11-proto-devel pkgconfig +Requires: xorg-x11-proto-devel Requires: libX11-devel Requires: libSM-devel @@ -37,16 +37,10 @@ X.Org X11 libXt development package %patch0 -p1 -b .libsm-fix -# Disable static library creation by default. -%define with_static 0 - %build # FIXME: Work around pointer aliasing warnings from compiler for now export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" -%configure \ -%if ! %{with_static} - --disable-static \ -%endif +%configure --disable-static \ --with-xfile-search-path="%{_sysconfdir}/X11/%%L/%%T/%%N%%C%%S:%{_sysconfdir}/X11/%%l/%%T/\%%N%%C%%S:%{_sysconfdir}/X11/%%T/%%N%%C%%S:%{_sysconfdir}/X11/%%L/%%T/%%N%%S:%{_sysconfdir}/X\11/%%l/%%T/%%N%%S:%{_sysconfdir}/X11/%%T/%%N%%S:%{_datadir}/X11/%%L/%%T/%%N%%C%%S:%{_datadir}/X1\1/%%l/%%T/%%N%%C%%S:%{_datadir}/X11/%%T/%%N%%C%%S:%{_datadir}/X11/%%L/%%T/%%N%%S:%{_datadir}/X11/%%\l/%%T/%%N%%S:%{_datadir}/X11/%%T/%%N%%S" make %{?_smp_mflags} @@ -55,11 +49,7 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# NOTE: Create app-defaults directory so this package can be the canonical -# owner of the directory. mkdir -p -m 0755 $RPM_BUILD_ROOT%{_datadir}/X11/app-defaults - -# We intentionally don't ship *.la files rm -f $RPM_BUILD_ROOT%{_libdir}/*.la %clean @@ -79,9 +69,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{_bindir}/makestrs %dir %{_includedir}/X11 -# Listed explicitly instead of with glob, in order for rpm to autodetect -# when any additions or removals happen. ie: New Xprint support that we -# do not want. %{_includedir}/X11/CallbackI.h %{_includedir}/X11/Composite.h %{_includedir}/X11/CompositeP.h @@ -115,17 +102,15 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/Vendor.h %{_includedir}/X11/VendorP.h %{_includedir}/X11/Xtos.h -%if %{with_static} -%{_libdir}/libXt.a -%endif %{_libdir}/libXt.so %{_libdir}/pkgconfig/xt.pc -#%dir %{_mandir}/man1x %{_mandir}/man1/makestrs.1* -#%dir %{_mandir}/man3x %{_mandir}/man3/*.3* %changelog +* Thu Jul 02 2009 Adam Jackson 1.0.6-1 +- libXt 1.0.6 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXt/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 4 Sep 2008 19:52:09 -0000 1.11 +++ sources 2 Jul 2009 17:33:37 -0000 1.12 @@ -1 +1 @@ -f3bdd67785ace8cd0b23249e9d8c9975 libXt-1.0.5.tar.bz2 +953930ddf9fdaa1405732c7f01e9e599 libXt-1.0.6.tar.bz2 From spot at fedoraproject.org Thu Jul 2 17:39:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 17:39:17 +0000 (UTC) Subject: rpms/google-perftools/F-11 google-perftools.spec,1.18,1.19 Message-ID: <20090702173917.91B3211C0418@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/google-perftools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8618/F-11 Modified Files: google-perftools.spec Log Message: disable tests on ppc, upstream issue #153 Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/F-11/google-perftools.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- google-perftools.spec 2 Jul 2009 14:55:47 -0000 1.18 +++ google-perftools.spec 2 Jul 2009 17:38:47 -0000 1.19 @@ -1,6 +1,6 @@ Name: google-perftools Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Tools Summary: Very fast malloc and performance analysis tools @@ -50,7 +50,10 @@ rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name} rm -rf $RPM_BUILD_ROOT %check +# http://code.google.com/p/google-perftools/issues/detail?id=153 +%ifnarch ppc LD_LIBRARY_PATH=./.libs make check +%endif %post -p /sbin/ldconfig @@ -69,6 +72,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 1.3-2 +- disable tests for ppc, upstream ticket #153 + * Thu Jul 2 2009 Tom "spot" Callaway - 1.3-1 - update to 1.3 From spot at fedoraproject.org Thu Jul 2 17:39:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 2 Jul 2009 17:39:17 +0000 (UTC) Subject: rpms/google-perftools/devel google-perftools.spec,1.18,1.19 Message-ID: <20090702173917.B02C911C048A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/google-perftools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8618/devel Modified Files: google-perftools.spec Log Message: disable tests on ppc, upstream issue #153 Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/devel/google-perftools.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- google-perftools.spec 2 Jul 2009 14:55:48 -0000 1.18 +++ google-perftools.spec 2 Jul 2009 17:38:47 -0000 1.19 @@ -1,6 +1,6 @@ Name: google-perftools Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Tools Summary: Very fast malloc and performance analysis tools @@ -50,7 +50,10 @@ rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name} rm -rf $RPM_BUILD_ROOT %check +# http://code.google.com/p/google-perftools/issues/detail?id=153 +%ifnarch ppc LD_LIBRARY_PATH=./.libs make check +%endif %post -p /sbin/ldconfig @@ -69,6 +72,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Thu Jul 2 2009 Tom "spot" Callaway - 1.3-2 +- disable tests for ppc, upstream ticket #153 + * Thu Jul 2 2009 Tom "spot" Callaway - 1.3-1 - update to 1.3 From nsantos at fedoraproject.org Thu Jul 2 17:39:42 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 17:39:42 +0000 (UTC) Subject: rpms/qpidc/F-10 .cvsignore, 1.20, 1.21 qpidc.spec, 1.82, 1.83 sources, 1.37, 1.38 Message-ID: <20090702173942.5110511C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8737 Modified Files: .cvsignore qpidc.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-10/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 26 Jun 2009 19:28:59 -0000 1.20 +++ .cvsignore 2 Jul 2009 17:39:12 -0000 1.21 @@ -1 +1 @@ -qpidc-0.5.788782.tar.gz +qpidc-0.5.790661.tar.gz Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-10/qpidc.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- qpidc.spec 26 Jun 2009 19:28:59 -0000 1.82 +++ qpidc.spec 2 Jul 2009 17:39:12 -0000 1.83 @@ -8,7 +8,7 @@ %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')} Name: qpidc -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries @@ -283,9 +283,9 @@ LANG=C ECHO=echo make check %defattr(-,root,root,-) %doc LICENSE NOTICE README INSTALL RELEASE_NOTES DESIGN %_libdir/libqpidcommon.so.0 -%_libdir/libqpidcommon.so.0.1.0 +%_libdir/libqpidcommon.so.0.2.0 %_libdir/libqpidclient.so.0 -%_libdir/libqpidclient.so.0.1.0 +%_libdir/libqpidclient.so.0.2.0 %dir %_libdir/qpid %dir %_libdir/qpid/client %dir %_sysconfdir/qpid @@ -312,7 +312,7 @@ LANG=C ECHO=echo make check %defattr(-,root,root,-) %_datadir/selinux/packages/qpidd.pp %_libdir/libqpidbroker.so.0 -%_libdir/libqpidbroker.so.0.1.0 +%_libdir/libqpidbroker.so.0.2.0 %_libdir/qpid/daemon/replicating_listener.so %_libdir/qpid/daemon/replication_exchange.so %_sbindir/qpidd @@ -334,11 +334,11 @@ LANG=C ECHO=echo make check %files -n qmf %defattr(-,root,root,-) %_libdir/libqmfcommon.so.0 -%_libdir/libqmfcommon.so.0.1.0 +%_libdir/libqmfcommon.so.0.2.0 %_libdir/libqmfagent.so.0 -%_libdir/libqmfagent.so.0.1.0 +%_libdir/libqmfagent.so.0.2.0 %_libdir/libqmfconsole.so.0 -%_libdir/libqmfconsole.so.0.1.0 +%_libdir/libqmfconsole.so.0.2.0 %files -n qmf-devel %defattr(-,root,root,-) @@ -371,7 +371,7 @@ LANG=C ECHO=echo make check %files ssl %defattr(-,root,root,-) %_libdir/libsslcommon.so.0 -%_libdir/libsslcommon.so.0.1.0 +%_libdir/libsslcommon.so.0.2.0 %_libdir/qpid/client/sslconnector.so %files -n qpidd-ssl @@ -437,6 +437,9 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661; .so lib numbers bumped + * Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 Index: sources =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-10/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 26 Jun 2009 19:28:59 -0000 1.37 +++ sources 2 Jul 2009 17:39:12 -0000 1.38 @@ -1 +1 @@ -d8dd2ea1638120a4318520096028ab2b qpidc-0.5.788782.tar.gz +9b26e5ac89277664525a78fb49a20dfd qpidc-0.5.790661.tar.gz From rdieter at fedoraproject.org Thu Jul 2 17:41:22 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 17:41:22 +0000 (UTC) Subject: rpms/kdepimlibs/devel kdepimlibs.spec,1.89,1.90 Message-ID: <20090702174122.1EDD711C0418@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9245 Modified Files: kdepimlibs.spec Log Message: * Thu Jul 02 2009 Rex Dieter - 4.2.95-3 - akonadi_version 1.1.95 Index: kdepimlibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- kdepimlibs.spec 29 Jun 2009 14:42:20 -0000 1.89 +++ kdepimlibs.spec 2 Jul 2009 17:40:51 -0000 1.90 @@ -8,11 +8,11 @@ %endif %define akonadi_subpkg 1 -%define akonadi_version 1.1.90 +%define akonadi_version 1.1.95 Name: kdepimlibs Version: 4.2.95 -Release: 2%{?dist} +Release: 3%{?dist} Summary: K Desktop Environment 4 - PIM Libraries License: LGPLv2 @@ -24,7 +24,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version %if ! 0%{?akonadi_subpkg} Provides: %{name}-akonadi%{?_isa} = %{version}-%{release} -Requires: akonadi >= %{akonadi_version} +Requires: akonadi%{?_isa} >= %{akonadi_version} %endif Requires: kdelibs4 >= %{version} @@ -70,7 +70,7 @@ Group: System Environment/Libraries # when pkg split occurrs, not sure if this is really needed, but... -- Rex #Obsoletes: kdepimlibs < 4.2.0-3 Requires: %{name} = %{version}-%{release} -Requires: akonadi >= %{akonadi_version} +Requires: akonadi%{?_isa} >= %{akonadi_version} %description akonadi %{summary}. @@ -209,6 +209,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 02 2009 Rex Dieter - 4.2.95-3 +- akonadi_version 1.1.95 + * Mon Jun 29 2009 Than Ngo - 4.2.95-2 - respin From ajax at fedoraproject.org Thu Jul 2 17:41:40 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 17:41:40 +0000 (UTC) Subject: rpms/libXaw/devel .cvsignore, 1.10, 1.11 libXaw.spec, 1.29, 1.30 sources, 1.9, 1.10 Message-ID: <20090702174140.3D78811C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9329 Modified Files: .cvsignore libXaw.spec sources Log Message: * Thu Jul 02 2009 Adam Jackson 1.0.6-1 - libXaw 1.0.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXaw/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 24 Sep 2007 19:46:25 -0000 1.10 +++ .cvsignore 2 Jul 2009 17:41:10 -0000 1.11 @@ -1 +1 @@ -libXaw-1.0.4.tar.bz2 +libXaw-1.0.6.tar.bz2 Index: libXaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXaw/devel/libXaw.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libXaw.spec 11 Jun 2009 18:30:59 -0000 1.29 +++ libXaw.spec 2 Jul 2009 17:41:10 -0000 1.30 @@ -2,8 +2,8 @@ Summary: X.Org X11 libXaw runtime library Name: libXaw -Version: 1.0.4 -Release: 5%{?dist} +Version: 1.0.6 +Release: 1%{?dist} License: MIT URL: http://www.x.org Group: System Environment/Libraries @@ -94,11 +94,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libXaw.so %{_libdir}/libXaw7.so %{_libdir}/pkgconfig/xaw7.pc -%dir %{_datadir}/aclocal -%{_datadir}/aclocal/xaw.m4 %{_mandir}/man3/*.3* %changelog +* Thu Jul 02 2009 Adam Jackson 1.0.6-1 +- libXaw 1.0.6 + * Thu Jun 11 2009 Adam Jackson 1.0.4-5 - Hide libXaw6 behind with_compat, disable by default. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXaw/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 24 Sep 2007 19:46:25 -0000 1.9 +++ sources 2 Jul 2009 17:41:10 -0000 1.10 @@ -1 +1 @@ -73671d8f1cf36fdd81395328cc3539c9 libXaw-1.0.4.tar.bz2 +066218dceb82eb8da0e11d259ed3ceda libXaw-1.0.6.tar.bz2 From s4504kr at fedoraproject.org Thu Jul 2 17:42:09 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 2 Jul 2009 17:42:09 +0000 (UTC) Subject: rpms/subcommander/devel subcommander.spec,1.24,1.25 Message-ID: <20090702174209.873DB11C0418@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/subcommander/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9489 Modified Files: subcommander.spec Log Message: Change versioing for Betas. Rebuild for new boost release Index: subcommander.spec =================================================================== RCS file: /cvs/extras/rpms/subcommander/devel/subcommander.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- subcommander.spec 13 May 2009 19:58:08 -0000 1.24 +++ subcommander.spec 2 Jul 2009 17:41:39 -0000 1.25 @@ -1,8 +1,8 @@ %define subvers 2.0.0b4 Name: subcommander -Version: 1.9.94 -Release: 7%{?dist} +Version: 2.0 +Release: 0.4%{?dist}.1 Summary: Graphical UI for subversion Group: Development/Tools @@ -87,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %doc README CHANGES COPYING %changelog +* Thu Jul 2 2009 Jochen Schmitt 2.0-0.4.1 +- Change versioning for beta releases +- Rebuild for new boost release + * Wed May 13 2009 Jochen Schmitt 1.9.94-7 - Add fix to build subcommander agains subversion-1.6.x From rdieter at fedoraproject.org Thu Jul 2 17:56:00 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 17:56:00 +0000 (UTC) Subject: rpms/kdepim-runtime/devel kdepim-runtime.spec,1.2,1.3 Message-ID: <20090702175600.A257A11C0418@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdepim-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12457 Modified Files: kdepim-runtime.spec Log Message: * Thu Jul 02 2009 Rex Dieter 4.2.95-3 - -devel: Requires: kdepimlibs-devel - Req: akonadi >= 1.1.95 Index: kdepim-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepim-runtime/devel/kdepim-runtime.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdepim-runtime.spec 30 Jun 2009 13:32:11 -0000 1.2 +++ kdepim-runtime.spec 2 Jul 2009 17:56:00 -0000 1.3 @@ -1,3 +1,6 @@ + +%define akonadi_version 1.1.95 + Name: kdepim-runtime Summary: KDE PIM Runtime Environment Version: 4.2.95 @@ -12,10 +15,10 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: %{name}-libs = %{version}-%{release} -BuildRequires: akonadi-devel +BuildRequires: akonadi-devel >= %{akonadi_version} BuildRequires: desktop-file-utils BuildRequires: kdepimlibs-devel >= %{version} -BuildRequires: kdelibs-experimental-devel +BuildRequires: kdelibs-experimental-devel >= %{version} BuildRequires: zlib-devel BuildRequires: soprano-devel BuildRequires: libxslt-devel @@ -29,6 +32,7 @@ BuildRequires: libxml2-devel Summary: %{name} runtime libraries Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} +Requires: akonadi%{?_isa} >= %{akonadi_version} %description libs %{summary}. @@ -38,7 +42,7 @@ Requires: %{name} = %{version}-%{release Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} -Requires: kdelibs4-devel +Requires: kdepimlibs-devel %description devel %{summary}. @@ -127,6 +131,10 @@ rm -rf %{buildroot} %{_kde4_libdir}/lib*.so.* %changelog +* Thu Jul 02 2009 Rex Dieter 4.2.95-3 +- -devel: Requires: kdepimlibs-devel +- Req: akonadi >= 1.1.95 + * Mon Jun 29 2009 Than Ngo - 4.2.95-2 - cleanup From rdieter at fedoraproject.org Thu Jul 2 17:57:28 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 17:57:28 +0000 (UTC) Subject: rpms/kdepim-runtime/devel kdepim-runtime.spec,1.3,1.4 Message-ID: <20090702175728.AF94011C0418@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdepim-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12734 Modified Files: kdepim-runtime.spec Log Message: Release++ Index: kdepim-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepim-runtime/devel/kdepim-runtime.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kdepim-runtime.spec 2 Jul 2009 17:56:00 -0000 1.3 +++ kdepim-runtime.spec 2 Jul 2009 17:56:58 -0000 1.4 @@ -4,7 +4,7 @@ Name: kdepim-runtime Summary: KDE PIM Runtime Environment Version: 4.2.95 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/Productivity From notting at fedoraproject.org Thu Jul 2 18:02:57 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Thu, 2 Jul 2009 18:02:57 +0000 (UTC) Subject: comps comps-f12.xml.in,1.24,1.25 Message-ID: <20090702180257.D7B3111C0418@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14448 Modified Files: comps-f12.xml.in Log Message: Make redhat-lsb optional, per moderate consensus of #fedora-devel. Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- comps-f12.xml.in 2 Jul 2009 17:41:45 -0000 1.24 +++ comps-f12.xml.in 2 Jul 2009 18:02:27 -0000 1.25 @@ -267,7 +267,6 @@ rdate rdist readahead - redhat-lsb rng-utils rsh rsync @@ -317,6 +316,7 @@ mkbootdisk mtools pax + redhat-lsb reiserfs-utils squashfs-tools star From choeger at fedoraproject.org Thu Jul 2 18:05:06 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Thu, 2 Jul 2009 18:05:06 +0000 (UTC) Subject: rpms/offlineimap/F-11 .cvsignore, 1.8, 1.9 offlineimap.spec, 1.21, 1.22 sources, 1.8, 1.9 Message-ID: <20090702180506.54E1111C0418@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14981 Modified Files: .cvsignore offlineimap.spec sources Log Message: update to 6.1.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 Dec 2008 12:37:59 -0000 1.8 +++ .cvsignore 2 Jul 2009 18:04:36 -0000 1.9 @@ -1 +1 @@ -offlineimap-6.0.3.tar.gz +offlineimap-6.1.0.tar.gz Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/offlineimap.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- offlineimap.spec 26 Feb 2009 07:55:03 -0000 1.21 +++ offlineimap.spec 2 Jul 2009 18:04:36 -0000 1.22 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: offlineimap -Version: 6.0.3 -Release: 3%{?dist} +Version: 6.1.0 +Release: 1%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support License: GPLv2+ @@ -16,6 +16,8 @@ BuildRequires: docbook-utils BuildArch: noarch +Patch0: fix-socket.ssl-deprecation-on-python-2.6.patch + %description OfflineIMAP is a tool to simplify your e-mail reading. With OfflineIMAP, @@ -30,7 +32,7 @@ not provide disconnected operation. %prep %setup -q -n %name-%version - +%patch0 -p1 %build python setup.py build @@ -52,7 +54,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README COPY* UPGRADING offlineimap.conf* FAQ.html +%doc COPY* UPGRADING offlineimap.conf* FAQ.html %doc debian/changelog %{_bindir}/offlineimap %{python_sitelib}/offlineimap/ @@ -61,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Christoph H??ger - 6.1.0-1 +- Update to latest version +- Add a temporary patch for socket.ssl deprecation + * Thu Feb 26 2009 Fedora Release Engineering - 6.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 Dec 2008 12:37:59 -0000 1.8 +++ sources 2 Jul 2009 18:04:36 -0000 1.9 @@ -1 +1 @@ -e425174c935dd5f112201305c9e0fc47 offlineimap-6.0.3.tar.gz +3b1e41d475ef73909d64489b3b2494dd offlineimap-6.1.0.tar.gz From nsantos at fedoraproject.org Thu Jul 2 18:05:27 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 18:05:27 +0000 (UTC) Subject: rpms/qpidc/F-10 qpidc.spec,1.83,1.84 Message-ID: <20090702180527.30E5311C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15086 Modified Files: qpidc.spec Log Message: correctly bump .so lib numbers Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-10/qpidc.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- qpidc.spec 2 Jul 2009 17:39:12 -0000 1.83 +++ qpidc.spec 2 Jul 2009 18:04:56 -0000 1.84 @@ -282,10 +282,10 @@ LANG=C ECHO=echo make check %files %defattr(-,root,root,-) %doc LICENSE NOTICE README INSTALL RELEASE_NOTES DESIGN -%_libdir/libqpidcommon.so.0 -%_libdir/libqpidcommon.so.0.2.0 -%_libdir/libqpidclient.so.0 -%_libdir/libqpidclient.so.0.2.0 +%_libdir/libqpidcommon.so.2 +%_libdir/libqpidcommon.so.2.0.0 +%_libdir/libqpidclient.so.2 +%_libdir/libqpidclient.so.2.0.0 %dir %_libdir/qpid %dir %_libdir/qpid/client %dir %_sysconfdir/qpid @@ -311,8 +311,8 @@ LANG=C ECHO=echo make check %files -n qpidd %defattr(-,root,root,-) %_datadir/selinux/packages/qpidd.pp -%_libdir/libqpidbroker.so.0 -%_libdir/libqpidbroker.so.0.2.0 +%_libdir/libqpidbroker.so.2 +%_libdir/libqpidbroker.so.2.0.0 %_libdir/qpid/daemon/replicating_listener.so %_libdir/qpid/daemon/replication_exchange.so %_sbindir/qpidd @@ -333,12 +333,12 @@ LANG=C ECHO=echo make check %files -n qmf %defattr(-,root,root,-) -%_libdir/libqmfcommon.so.0 -%_libdir/libqmfcommon.so.0.2.0 -%_libdir/libqmfagent.so.0 -%_libdir/libqmfagent.so.0.2.0 -%_libdir/libqmfconsole.so.0 -%_libdir/libqmfconsole.so.0.2.0 +%_libdir/libqmfcommon.so.2 +%_libdir/libqmfcommon.so.2.0.0 +%_libdir/libqmfagent.so.2 +%_libdir/libqmfagent.so.2.0.0 +%_libdir/libqmfconsole.so.2 +%_libdir/libqmfconsole.so.2.0.0 %files -n qmf-devel %defattr(-,root,root,-) @@ -359,8 +359,8 @@ LANG=C ECHO=echo make check %files rdma %defattr(-,root,root,-) -%_libdir/librdmawrap.so.0 -%_libdir/librdmawrap.so.0.0.0 +%_libdir/librdmawrap.so.2 +%_libdir/librdmawrap.so.2.0.0 %_libdir/qpid/client/rdmaconnector.so %config(noreplace) %_sysconfdir/qpid/qpidc.conf @@ -370,8 +370,8 @@ LANG=C ECHO=echo make check %files ssl %defattr(-,root,root,-) -%_libdir/libsslcommon.so.0 -%_libdir/libsslcommon.so.0.2.0 +%_libdir/libsslcommon.so.2 +%_libdir/libsslcommon.so.2.0.0 %_libdir/qpid/client/sslconnector.so %files -n qpidd-ssl From choeger at fedoraproject.org Thu Jul 2 18:11:04 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Thu, 2 Jul 2009 18:11:04 +0000 (UTC) Subject: rpms/offlineimap/F-11 fix-socket.ssl-deprecation-on-python-2.6.patch, NONE, 1.1 Message-ID: <20090702181104.4D88B11C0418@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16305 Added Files: fix-socket.ssl-deprecation-on-python-2.6.patch Log Message: add missing patch fix-socket.ssl-deprecation-on-python-2.6.patch: --- NEW FILE fix-socket.ssl-deprecation-on-python-2.6.patch --- commit cc444fcc99d1521e4e4fa1fede27ea3c1c8ff4e2 Author: Christoph H??ger Date: Thu Jul 2 10:19:18 2009 +0200 fix socket.ssl deprecation on python 2.6 Signed-off-by: Christoph H??ger diff --git a/offlineimap/imaplib2.py b/offlineimap/imaplib2.py index 2426754..658c369 100644 --- a/offlineimap/imaplib2.py +++ b/offlineimap/imaplib2.py @@ -35,6 +35,9 @@ __author__ = "Piers Lauder " import binascii, os, Queue, random, re, select, socket, sys, time, threading +# python 2.6 has a new ssl module +if sys.version_info >= (2,6): import ssl + select_module = select # Globals @@ -1664,7 +1667,10 @@ class IMAP4_SSL(IMAP4): self.host = host is not None and host or '' self.port = port is not None and port or IMAP4_SSL_PORT self.sock = self.open_socket() - self.sslobj = socket.ssl(self.sock, self.keyfile, self.certfile) + if sys.version_info < (2,6): + self.sslobj = socket.ssl(self.sock, self.keyfile, self.certfile) + else: + self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile) self.read_fd = self.sock.fileno() From nsantos at fedoraproject.org Thu Jul 2 18:29:31 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 18:29:31 +0000 (UTC) Subject: rpms/qpidc/F-10 qpidc.spec,1.84,1.85 Message-ID: <20090702182931.393B811C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19454 Modified Files: qpidc.spec Log Message: correctly bump .so lib numbers Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-10/qpidc.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- qpidc.spec 2 Jul 2009 18:04:56 -0000 1.84 +++ qpidc.spec 2 Jul 2009 18:29:00 -0000 1.85 @@ -359,8 +359,8 @@ LANG=C ECHO=echo make check %files rdma %defattr(-,root,root,-) -%_libdir/librdmawrap.so.2 -%_libdir/librdmawrap.so.2.0.0 +%_libdir/librdmawrap.so.0 +%_libdir/librdmawrap.so.0.0.0 %_libdir/qpid/client/rdmaconnector.so %config(noreplace) %_sysconfdir/qpid/qpidc.conf From choeger at fedoraproject.org Thu Jul 2 18:45:58 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Thu, 2 Jul 2009 18:45:58 +0000 (UTC) Subject: rpms/offlineimap/F-11 offlineimap.spec,1.22,1.23 Message-ID: <20090702184558.4D18311C0418@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23403 Modified Files: offlineimap.spec Log Message: new release -> missing patch Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/offlineimap.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- offlineimap.spec 2 Jul 2009 18:04:36 -0000 1.22 +++ offlineimap.spec 2 Jul 2009 18:45:57 -0000 1.23 @@ -2,7 +2,7 @@ Name: offlineimap Version: 6.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support License: GPLv2+ From mbooth at fedoraproject.org Thu Jul 2 18:48:05 2009 From: mbooth at fedoraproject.org (mbooth) Date: Thu, 2 Jul 2009 18:48:05 +0000 (UTC) Subject: rpms/eclipse-emf/devel eclipse-emf.spec,1.18,1.19 Message-ID: <20090702184805.CCF5611C0418@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-emf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23871/eclipse-emf/devel Modified Files: eclipse-emf.spec Log Message: * Thu Jul 02 2009 Mat Booth - SDK requires PDE for example plug-in projects. Index: eclipse-emf.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-emf/devel/eclipse-emf.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- eclipse-emf.spec 28 Jun 2009 22:10:54 -0000 1.18 +++ eclipse-emf.spec 2 Jul 2009 18:48:05 -0000 1.19 @@ -4,7 +4,7 @@ Name: eclipse-emf Version: 2.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Eclipse Modeling Framework (EMF) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -64,6 +64,7 @@ basic editor. Summary: Eclipse EMF SDK Group: System Environment/Libraries Requires: java-javadoc +Requires: eclipse-pde >= 1:3.5.0 Requires: %{name} = %{version}-%{release} %description sdk @@ -83,6 +84,8 @@ representation of XML Schema as a series %package xsd-sdk Summary: Eclipse XSD SDK Group: System Environment/Libraries +Requires: java-javadoc +Requires: eclipse-pde >= 1:3.5.0 Requires: %{name}-xsd = %{version}-%{release} Requires: %{name}-sdk = %{version}-%{release} @@ -93,9 +96,7 @@ Documentation and source for the Eclipse Summary: Eclipse EMF/XSD examples Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Requires: %{name}-sdk = %{version}-%{release} Requires: %{name}-xsd = %{version}-%{release} -Requires: %{name}-xsd-sdk = %{version}-%{release} %description examples Installable versions of the example projects from the SDKs that demonstrate how @@ -205,6 +206,9 @@ rm -rf %{buildroot} %doc org.eclipse.emf.examples-feature/rootfiles/* %changelog +* Thu Jul 02 2009 Mat Booth 2.5.0-2 +- SDK requires PDE for example plug-in projects. + * Sun Jun 28 2009 Mat Booth 2.5.0-1 - Update to 2.5.0 final release (Galileo). - Build the features seperately to allow for a saner %%files section. From pkgdb at fedoraproject.org Thu Jul 2 18:49:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 18:49:47 +0000 Subject: [pkgdb] perl-CGI-Application-Dispatch was added for eseyman Message-ID: <20090702184947.3311D10F88E@bastion2.fedora.phx.redhat.com> ausil has added Package perl-CGI-Application-Dispatch with summary Dispatch requests to CGI::Application based objects ausil has approved Package perl-CGI-Application-Dispatch ausil has added a Fedora devel branch for perl-CGI-Application-Dispatch with an owner of eseyman ausil has approved perl-CGI-Application-Dispatch in Fedora devel ausil has approved Package perl-CGI-Application-Dispatch ausil has set commit to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora devel) ausil has set checkout to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora devel) ausil has set build to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Dispatch From pkgdb at fedoraproject.org Thu Jul 2 18:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 18:49:50 +0000 Subject: [pkgdb] perl-CGI-Application-Dispatch (Fedora, 10) updated by ausil Message-ID: <20090702184950.82B2410F89C@bastion2.fedora.phx.redhat.com> ausil approved watchbugzilla on perl-CGI-Application-Dispatch (Fedora devel) for perl-sig ausil approved watchcommits on perl-CGI-Application-Dispatch (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Dispatch From pkgdb at fedoraproject.org Thu Jul 2 18:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 18:49:50 +0000 Subject: [pkgdb] perl-CGI-Application-Dispatch summary updated by ausil Message-ID: <20090702184950.732C410F896@bastion2.fedora.phx.redhat.com> ausil set package perl-CGI-Application-Dispatch summary to Dispatch requests to CGI::Application based objects To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Dispatch From pkgdb at fedoraproject.org Thu Jul 2 18:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 18:49:50 +0000 Subject: [pkgdb] perl-CGI-Application-Dispatch (Fedora, 10) updated by ausil Message-ID: <20090702184950.9604E10F8A6@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for perl-CGI-Application-Dispatch ausil has set commit to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 10) ausil has set checkout to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 10) ausil has set build to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 10) ausil approved watchbugzilla on perl-CGI-Application-Dispatch (Fedora 10) for perl-sig ausil approved watchcommits on perl-CGI-Application-Dispatch (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Dispatch From mbarnes at fedoraproject.org Thu Jul 2 18:55:26 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 18:55:26 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.4, 1.116.2.5 evolution.spec, 1.394.2.12, 1.394.2.13 sources, 1.116.2.6, 1.116.2.7 evolution-2.26.1-attachment-bar-crasher.patch, 1.1, NONE Message-ID: <20090702185526.AAD3D11C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25750 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Removed Files: Tag: private-mbarnes-kb evolution-2.26.1-attachment-bar-crasher.patch Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit a1082f0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.4 retrieving revision 1.116.2.5 diff -u -p -r1.116.2.4 -r1.116.2.5 --- .cvsignore 30 Jun 2009 23:15:21 -0000 1.116.2.4 +++ .cvsignore 2 Jul 2009 18:54:56 -0000 1.116.2.5 @@ -1 +1 @@ -evolution-2.27.3-kill-bonobo-bfc5ba2.tar.bz2 +evolution-2.27.4-kill-bonobo-a1082f0.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.12 retrieving revision 1.394.2.13 diff -u -p -r1.394.2.12 -r1.394.2.13 --- evolution.spec 30 Jun 2009 23:15:21 -0000 1.394.2.12 +++ evolution.spec 2 Jul 2009 18:54:56 -0000 1.394.2.13 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash bfc5ba2 +%define hash a1082f0 %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -44,8 +44,8 @@ ### Abstract ### Name: evolution -Version: 2.27.3 -Release: 2.kb.4%{?dist} +Version: 2.27.4 +Release: 1.kb.1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -667,6 +667,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Thu Jul 02 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 +- Snapshot of "kill-bonobo" branch at commit a1082f0. + * Tue Jun 30 2009 Matthew Barnes - 2.27.3-2.kb.4.fc12 - Snapshot of "kill-bonobo" branch at commit bfc5ba2. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.6 retrieving revision 1.116.2.7 diff -u -p -r1.116.2.6 -r1.116.2.7 --- sources 30 Jun 2009 23:39:13 -0000 1.116.2.6 +++ sources 2 Jul 2009 18:54:56 -0000 1.116.2.7 @@ -1 +1 @@ -aac98fd83ac742bb058ea8816188e396 evolution-2.27.3-kill-bonobo-bfc5ba2.tar.bz2 +d42a0fa2e8c1825fcadf847b969ab618 evolution-2.27.4-kill-bonobo-a1082f0.tar.bz2 --- evolution-2.26.1-attachment-bar-crasher.patch DELETED --- From ausil at fedoraproject.org Thu Jul 2 18:50:02 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 2 Jul 2009 18:50:02 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch Makefile,NONE,1.1 Message-ID: <20090702185002.6E30E11C0418@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsW24480/rpms/perl-CGI-Application-Dispatch Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Dispatch --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Dispatch all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From limb at fedoraproject.org Thu Jul 2 19:00:22 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 19:00:22 +0000 (UTC) Subject: rpms/supertuxkart/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 supertuxkart.spec, 1.13, 1.14 Message-ID: <20090702190022.A102511C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/supertuxkart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26879 Modified Files: .cvsignore sources supertuxkart.spec Log Message: - Patch release. - Fixed symlink/dir replacement, BZ 506245. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 23 Feb 2009 14:29:38 -0000 1.7 +++ .cvsignore 2 Jul 2009 19:00:22 -0000 1.8 @@ -1 +1 @@ -supertuxkart-0.6.1-src.tar.bz2 +supertuxkart-0.6.1a.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Feb 2009 14:29:38 -0000 1.7 +++ sources 2 Jul 2009 19:00:22 -0000 1.8 @@ -1 +1 @@ -7cddf934b9d5364a983b12b129fe91fa supertuxkart-0.6.1-src.tar.bz2 +2617a0de97f604ca692fcbd685e742ef supertuxkart-0.6.1a.tar.bz2 Index: supertuxkart.spec =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/devel/supertuxkart.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- supertuxkart.spec 26 Feb 2009 04:11:45 -0000 1.13 +++ supertuxkart.spec 2 Jul 2009 19:00:22 -0000 1.14 @@ -1,11 +1,11 @@ Name: supertuxkart -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.1a +Release: 1%{?dist} Summary: Kids 3D go-kart racing game featuring Tux Group: Amusements/Games License: GPLv2+ URL: http://supertuxkart.sourceforge.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Source1: %{name}.6 Patch0: supertuxkart-fhs.patch Patch1: supertuxkart-0.3-desktop.patch @@ -90,6 +90,15 @@ if [ -x %{_bindir}/gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi +if [ -d %{_datadir}/%{name}/data/po -a ! -L %{_datadir}/%{name}/data/po ]; then + mv %{_datadir}/%{name}/data/po %{_datadir}/%{name}/data/po.rpmbak && \ + ln -s ../../locale %{_datadir}/%{name}/data/po && \ + rm -rf %{_datadir}/%{name}/data/po.rpmbak +fi +if [ ! -L %{_datadir}/%{name}/data/po ]; then + ln -s ../../locale %{_datadir}/%{name}/data/po +fi + %postun touch --no-create %{_datadir}/icons/hicolor || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then @@ -102,12 +111,17 @@ fi %doc AUTHORS COPYING ChangeLog README TODO %{_bindir}/%{name}* %{_datadir}/%{name} +%ghost %{_datadir}/%{name}/data/po %{_mandir}/man6/%{name}.6.gz %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.xpm %changelog +* Tue Jun 16 2009 Jon Ciesla - 0.6.1a-1 +- Patch release. +- Fixed symlink/dir replacement, BZ 506245. + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bonii at fedoraproject.org Thu Jul 2 19:00:34 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Thu, 2 Jul 2009 19:00:34 +0000 (UTC) Subject: rpms/gnurobots/devel gnurobots.desktop, 1.1, 1.2 gnurobots.spec, 1.2, 1.3 Message-ID: <20090702190034.B2C1111C0418@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnurobots/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26833 Modified Files: gnurobots.desktop gnurobots.spec Log Message: Added subcategory in desktop file to fix #485350 Index: gnurobots.desktop =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/devel/gnurobots.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnurobots.desktop 8 Dec 2008 15:28:38 -0000 1.1 +++ gnurobots.desktop 2 Jul 2009 19:00:04 -0000 1.2 @@ -7,4 +7,4 @@ Exec=gnurobots Icon=/usr/share/gnurobots/xpm/robot.xpm Terminal=true Type=Application -Categories=Game; +Categories=Game;LogicGame; Index: gnurobots.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/devel/gnurobots.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnurobots.spec 25 Feb 2009 00:10:05 -0000 1.2 +++ gnurobots.spec 2 Jul 2009 19:00:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: gnurobots Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A robot programming game Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 03 2009 Vivek Shah - 1.2.0-6 +- Added subcategory for the desktop file + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ausil at fedoraproject.org Thu Jul 2 18:50:02 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 2 Jul 2009 18:50:02 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090702185002.9C96A11C0418@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsW24480/rpms/perl-CGI-Application-Dispatch/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Dispatch --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Dispatch # $Id: Makefile,v 1.1 2009/07/02 18:50:02 ausil Exp $ NAME := perl-CGI-Application-Dispatch SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mbooth at fedoraproject.org Thu Jul 2 18:48:35 2009 From: mbooth at fedoraproject.org (mbooth) Date: Thu, 2 Jul 2009 18:48:35 +0000 (UTC) Subject: rpms/eclipse-gef/devel eclipse-gef.spec,1.21,1.22 Message-ID: <20090702184835.8F3B611C0418@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-gef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23871/eclipse-gef/devel Modified Files: eclipse-gef.spec Log Message: * Thu Jul 02 2009 Mat Booth - SDK requires PDE for example plug-in projects. Index: eclipse-gef.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-gef/devel/eclipse-gef.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- eclipse-gef.spec 1 Jul 2009 21:39:46 -0000 1.21 +++ eclipse-gef.spec 2 Jul 2009 18:48:05 -0000 1.22 @@ -3,7 +3,7 @@ Name: eclipse-gef Version: 3.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical Editing Framework (GEF) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -42,6 +42,8 @@ class diagram editors, state machines, a %package sdk Summary: Eclipse GEF SDK Group: System Environment/Libraries +Requires: java-javadoc +Requires: eclipse-pde >= 1:3.5.0 Requires: %{name} = %{version}-%{release} %description sdk @@ -51,7 +53,6 @@ Documentation and source for the Eclipse Summary: Eclipse GEF examples Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} -Requires: %{name}-sdk = %{version}-%{release} %description examples Installable versions of the example projects from the SDK that demonstrates how @@ -131,6 +132,9 @@ rm -rf %{buildroot} %doc org.eclipse.gef.examples-feature/rootfiles/* %changelog +* Thu Jul 02 2009 Mat Booth 3.5.0-2 +- SDK requires PDE for example plug-in projects. + * Wed Jul 01 2009 Mat Booth 3.5.0-1 - Update to 3.5.0 final release (Galileo). - Build the features seperately to allow for a saner %%files section. From jbowes at fedoraproject.org Thu Jul 2 19:10:59 2009 From: jbowes at fedoraproject.org (jbowes) Date: Thu, 2 Jul 2009 19:10:59 +0000 (UTC) Subject: rpms/mod_wsgi/devel .cvsignore, 1.5, 1.6 mod_wsgi.spec, 1.10, 1.11 sources, 1.5, 1.6 Message-ID: <20090702191059.8E6A111C0418@cvs1.fedora.phx.redhat.com> Author: jbowes Update of /cvs/pkgs/rpms/mod_wsgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29913 Modified Files: .cvsignore mod_wsgi.spec sources Log Message: update to 2.5 for devel Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 28 Oct 2008 07:11:31 -0000 1.5 +++ .cvsignore 2 Jul 2009 19:10:59 -0000 1.6 @@ -1 +1 @@ -mod_wsgi-2.3.tar.gz +mod_wsgi-2.5.tar.gz Index: mod_wsgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/devel/mod_wsgi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mod_wsgi.spec 26 Feb 2009 02:15:32 -0000 1.10 +++ mod_wsgi.spec 2 Jul 2009 19:10:59 -0000 1.11 @@ -1,6 +1,6 @@ Name: mod_wsgi -Version: 2.3 -Release: 3%{?dist} +Version: 2.5 +Release: 1%{?dist} Summary: A WSGI interface for Python web applications in Apache Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 James Bowes 2.5-1 +- Update to 2.5 + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 28 Oct 2008 07:11:31 -0000 1.5 +++ sources 2 Jul 2009 19:10:59 -0000 1.6 @@ -1 +1 @@ -c686e1c498dbe5753fe491c3cf61cff4 mod_wsgi-2.3.tar.gz +43ad11c477799e2f780c50197c420afd mod_wsgi-2.5.tar.gz From nsantos at fedoraproject.org Thu Jul 2 19:14:01 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 19:14:01 +0000 (UTC) Subject: rpms/qpidc/F-11 .cvsignore, 1.21, 1.22 qpidc.spec, 1.83, 1.84 sources, 1.42, 1.43 Message-ID: <20090702191402.0AD9411C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30585 Modified Files: .cvsignore qpidc.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 26 Jun 2009 20:16:26 -0000 1.21 +++ .cvsignore 2 Jul 2009 19:13:31 -0000 1.22 @@ -1 +1 @@ -qpidc-0.5.788782.tar.gz +qpidc-0.5.790661.tar.gz Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-11/qpidc.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- qpidc.spec 26 Jun 2009 20:16:26 -0000 1.83 +++ qpidc.spec 2 Jul 2009 19:13:31 -0000 1.84 @@ -8,7 +8,7 @@ %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')} Name: qpidc -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries @@ -282,10 +282,10 @@ LANG=C ECHO=echo make check %files %defattr(-,root,root,-) %doc LICENSE NOTICE README INSTALL RELEASE_NOTES DESIGN -%_libdir/libqpidcommon.so.0 -%_libdir/libqpidcommon.so.0.1.0 -%_libdir/libqpidclient.so.0 -%_libdir/libqpidclient.so.0.1.0 +%_libdir/libqpidcommon.so.2 +%_libdir/libqpidcommon.so.2.0.0 +%_libdir/libqpidclient.so.2 +%_libdir/libqpidclient.so.2.0.0 %dir %_libdir/qpid %dir %_libdir/qpid/client %dir %_sysconfdir/qpid @@ -306,14 +306,13 @@ LANG=C ECHO=echo make check %_includedir/qmf %_libdir/libqpidcommon.so %_libdir/libqpidclient.so -%dir %_datadir/qpidc %_datadir/qpidc/examples %files -n qpidd %defattr(-,root,root,-) %_datadir/selinux/packages/qpidd.pp -%_libdir/libqpidbroker.so.0 -%_libdir/libqpidbroker.so.0.1.0 +%_libdir/libqpidbroker.so.2 +%_libdir/libqpidbroker.so.2.0.0 %_libdir/qpid/daemon/replicating_listener.so %_libdir/qpid/daemon/replication_exchange.so %_sbindir/qpidd @@ -334,12 +333,12 @@ LANG=C ECHO=echo make check %files -n qmf %defattr(-,root,root,-) -%_libdir/libqmfcommon.so.0 -%_libdir/libqmfcommon.so.0.1.0 -%_libdir/libqmfagent.so.0 -%_libdir/libqmfagent.so.0.1.0 -%_libdir/libqmfconsole.so.0 -%_libdir/libqmfconsole.so.0.1.0 +%_libdir/libqmfcommon.so.2 +%_libdir/libqmfcommon.so.2.0.0 +%_libdir/libqmfagent.so.2 +%_libdir/libqmfagent.so.2.0.0 +%_libdir/libqmfconsole.so.2 +%_libdir/libqmfconsole.so.2.0.0 %files -n qmf-devel %defattr(-,root,root,-) @@ -371,8 +370,8 @@ LANG=C ECHO=echo make check %files ssl %defattr(-,root,root,-) -%_libdir/libsslcommon.so.0 -%_libdir/libsslcommon.so.0.1.0 +%_libdir/libsslcommon.so.2 +%_libdir/libsslcommon.so.2.0.0 %_libdir/qpid/client/sslconnector.so %files -n qpidd-ssl @@ -438,18 +437,18 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog -* Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661; .so lib numbers bumped + +* Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 -* Mon May 4 2009 Nuno Santos - 0.5.752600-6 +* Mon May 4 2009 Nuno Santos - 0.5.752600-5 - patch for SASL credentials refresh -* Wed Apr 1 2009 Michael Schwendt - 0.5.752600-5 -- Fix unowned examples directory in -devel pkg. - * Mon Mar 16 2009 Nuno Santos - 0.5.752600-4 - BZ483925 - split docs into a separate noarch subpackage Index: sources =================================================================== RCS file: /cvs/extras/rpms/qpidc/F-11/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 26 Jun 2009 20:16:26 -0000 1.42 +++ sources 2 Jul 2009 19:13:31 -0000 1.43 @@ -1 +1 @@ -d8dd2ea1638120a4318520096028ab2b qpidc-0.5.788782.tar.gz +9b26e5ac89277664525a78fb49a20dfd qpidc-0.5.790661.tar.gz From ausil at fedoraproject.org Thu Jul 2 18:49:57 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 2 Jul 2009 18:49:57 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch - New directory Message-ID: <20090702184957.1CAFE11C0418@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsW24480/rpms/perl-CGI-Application-Dispatch Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Dispatch added to the repository From ausil at fedoraproject.org Thu Jul 2 18:49:57 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Thu, 2 Jul 2009 18:49:57 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/devel - New directory Message-ID: <20090702184957.3C2AB11C048A@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsW24480/rpms/perl-CGI-Application-Dispatch/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 2 18:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 18:49:50 +0000 Subject: [pkgdb] perl-CGI-Application-Dispatch (Fedora, 10) updated by ausil Message-ID: <20090702184950.A54AF10F8A8@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for perl-CGI-Application-Dispatch ausil has set commit to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 11) ausil has set checkout to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 11) ausil has set build to Approved for 107427 on perl-CGI-Application-Dispatch (Fedora 11) ausil approved watchbugzilla on perl-CGI-Application-Dispatch (Fedora 11) for perl-sig ausil approved watchcommits on perl-CGI-Application-Dispatch (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Dispatch From mbarnes at fedoraproject.org Thu Jul 2 19:21:55 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 19:21:55 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.5, 1.116.2.6 evolution.spec, 1.394.2.13, 1.394.2.14 sources, 1.116.2.7, 1.116.2.8 Message-ID: <20090702192155.F2BBB11C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32223 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit b2f2de3. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.5 retrieving revision 1.116.2.6 diff -u -p -r1.116.2.5 -r1.116.2.6 --- .cvsignore 2 Jul 2009 18:54:56 -0000 1.116.2.5 +++ .cvsignore 2 Jul 2009 19:21:25 -0000 1.116.2.6 @@ -1 +1 @@ -evolution-2.27.4-kill-bonobo-a1082f0.tar.bz2 +evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.13 retrieving revision 1.394.2.14 diff -u -p -r1.394.2.13 -r1.394.2.14 --- evolution.spec 2 Jul 2009 18:54:56 -0000 1.394.2.13 +++ evolution.spec 2 Jul 2009 19:21:25 -0000 1.394.2.14 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash a1082f0 +%define hash b2f2de3 %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -44,8 +44,8 @@ ### Abstract ### Name: evolution -Version: 2.27.4 -Release: 1.kb.1%{?dist} +Version: 2.27.3 +Release: 3.kb.1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -667,8 +667,8 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog -* Thu Jul 02 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 -- Snapshot of "kill-bonobo" branch at commit a1082f0. +* Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.kb.1.fc12 +- Snapshot of "kill-bonobo" branch at commit b2f2de3. * Tue Jun 30 2009 Matthew Barnes - 2.27.3-2.kb.4.fc12 - Snapshot of "kill-bonobo" branch at commit bfc5ba2. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.7 retrieving revision 1.116.2.8 diff -u -p -r1.116.2.7 -r1.116.2.8 --- sources 2 Jul 2009 18:54:56 -0000 1.116.2.7 +++ sources 2 Jul 2009 19:21:25 -0000 1.116.2.8 @@ -1 +1 @@ -d42a0fa2e8c1825fcadf847b969ab618 evolution-2.27.4-kill-bonobo-a1082f0.tar.bz2 +3d918d07fa6360f419b5cd614f92c41d evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 From limb at fedoraproject.org Thu Jul 2 19:21:55 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 2 Jul 2009 19:21:55 +0000 (UTC) Subject: rpms/supertuxkart/F-11 sources,1.7,1.8 supertuxkart.spec,1.13,1.14 Message-ID: <20090702192155.0E2E711C0418@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/supertuxkart/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32367 Modified Files: sources supertuxkart.spec Log Message: - Patch release. - Fixed symlink/dir replacement, BZ 506245. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Feb 2009 14:29:38 -0000 1.7 +++ sources 2 Jul 2009 19:21:54 -0000 1.8 @@ -1 +1 @@ -7cddf934b9d5364a983b12b129fe91fa supertuxkart-0.6.1-src.tar.bz2 +2617a0de97f604ca692fcbd685e742ef supertuxkart-0.6.1a.tar.bz2 Index: supertuxkart.spec =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/F-11/supertuxkart.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- supertuxkart.spec 26 Feb 2009 04:11:45 -0000 1.13 +++ supertuxkart.spec 2 Jul 2009 19:21:54 -0000 1.14 @@ -1,11 +1,11 @@ Name: supertuxkart -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.1a +Release: 1%{?dist} Summary: Kids 3D go-kart racing game featuring Tux Group: Amusements/Games License: GPLv2+ URL: http://supertuxkart.sourceforge.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Source1: %{name}.6 Patch0: supertuxkart-fhs.patch Patch1: supertuxkart-0.3-desktop.patch @@ -90,6 +90,15 @@ if [ -x %{_bindir}/gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi +if [ -d %{_datadir}/%{name}/data/po -a ! -L %{_datadir}/%{name}/data/po ]; then + mv %{_datadir}/%{name}/data/po %{_datadir}/%{name}/data/po.rpmbak && \ + ln -s ../../locale %{_datadir}/%{name}/data/po && \ + rm -rf %{_datadir}/%{name}/data/po.rpmbak +fi +if [ ! -L %{_datadir}/%{name}/data/po ]; then + ln -s ../../locale %{_datadir}/%{name}/data/po +fi + %postun touch --no-create %{_datadir}/icons/hicolor || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then @@ -102,12 +111,17 @@ fi %doc AUTHORS COPYING ChangeLog README TODO %{_bindir}/%{name}* %{_datadir}/%{name} +%ghost %{_datadir}/%{name}/data/po %{_mandir}/man6/%{name}.6.gz %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.xpm %changelog +* Tue Jun 16 2009 Jon Ciesla - 0.6.1a-1 +- Patch release. +- Fixed symlink/dir replacement, BZ 506245. + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bonii at fedoraproject.org Thu Jul 2 19:03:25 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Thu, 2 Jul 2009 19:03:25 +0000 (UTC) Subject: rpms/gnurobots/F-11 gnurobots.desktop, 1.1, 1.2 gnurobots.spec, 1.2, 1.3 Message-ID: <20090702190325.1C17611C0418@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnurobots/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28284 Modified Files: gnurobots.desktop gnurobots.spec Log Message: Added subcategory in desktop file to fix #485350 Index: gnurobots.desktop =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/F-11/gnurobots.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnurobots.desktop 8 Dec 2008 15:28:38 -0000 1.1 +++ gnurobots.desktop 2 Jul 2009 19:02:54 -0000 1.2 @@ -7,4 +7,4 @@ Exec=gnurobots Icon=/usr/share/gnurobots/xpm/robot.xpm Terminal=true Type=Application -Categories=Game; +Categories=Game;LogicGame; Index: gnurobots.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/F-11/gnurobots.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnurobots.spec 25 Feb 2009 00:10:05 -0000 1.2 +++ gnurobots.spec 2 Jul 2009 19:02:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: gnurobots Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A robot programming game Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 03 2009 Vivek Shah - 1.2.0-6 +- Added subcategory for the desktop file + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bonii at fedoraproject.org Thu Jul 2 19:04:18 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Thu, 2 Jul 2009 19:04:18 +0000 (UTC) Subject: rpms/gnurobots/F-10 gnurobots.desktop, 1.1, 1.2 gnurobots.spec, 1.1, 1.2 Message-ID: <20090702190418.154AC11C0418@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnurobots/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28474 Modified Files: gnurobots.desktop gnurobots.spec Log Message: Added subcategory in desktop file to fix #485350 Index: gnurobots.desktop =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/F-10/gnurobots.desktop,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnurobots.desktop 6 Dec 2008 10:32:47 -0000 1.1 +++ gnurobots.desktop 2 Jul 2009 19:03:47 -0000 1.2 @@ -7,4 +7,4 @@ Exec=gnurobots Icon=/usr/share/gnurobots/xpm/robot.xpm Terminal=true Type=Application -Categories=Game; +Categories=Game;LogicGame; Index: gnurobots.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/F-10/gnurobots.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnurobots.spec 6 Dec 2008 10:32:47 -0000 1.1 +++ gnurobots.spec 2 Jul 2009 19:03:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: gnurobots Version: 1.2.0 -Release: 4%{?dist} +Release: 6%{?dist} Summary: A robot programming game Group: Amusements/Games @@ -53,6 +53,12 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 03 2009 Vivek Shah - 1.2.0-6 +- Added subcategory for the desktop file + +* Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Dec 2 2008 Vivek Shah 1.2.0-4 - Fixed BuildRequires to remove obsolete dependencies - Fixed desktop file utils for changed packaging guidelines From mbarnes at fedoraproject.org Thu Jul 2 19:31:39 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 19:31:39 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.396,1.397 Message-ID: <20090702193139.E31E311C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1983 Modified Files: evolution.spec Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.396 retrieving revision 1.397 diff -u -p -r1.396 -r1.397 --- evolution.spec 1 Jul 2009 10:32:21 -0000 1.396 +++ evolution.spec 2 Jul 2009 19:31:09 -0000 1.397 @@ -42,7 +42,7 @@ Name: evolution Version: 2.27.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -77,10 +77,8 @@ Requires(postun): scrollkeeper >= %{scro # Don't trust evolution-data-server to maintain accurate sonames. Requires: evolution-data-server >= %{version} -# No devel package for libpst, despite the name. Requires: gnome-icon-theme >= %{gnome_icon_theme_version} Requires: gnome-themes -Requires: libpst ### Build Dependencies ### @@ -111,9 +109,11 @@ BuildRequires: libbonoboui-devel >= %{li BuildRequires: libgnomecanvas-devel >= 2.0 BuildRequires: libgnomeui-devel >= 2.0 BuildRequires: libgweather-devel >= %{libgweather_version} +BuildRequires: libpst-devel BuildRequires: libsoup-devel >= %{soup_version} BuildRequires: libtool >= 1.5 BuildRequires: libxml2-devel +BuildRequires: libytnef-devel BuildRequires: pkgconfig %if %{use_mozilla_nss} @@ -673,6 +673,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 +- Add BR for libpst-devel and libytnef-devel (RH bug #493049). + * Wed Jul 01 2009 Milan Crha - 2.27.3-3.fc12 - Rebuild against newer gcc From nhorman at fedoraproject.org Thu Jul 2 19:33:35 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 2 Jul 2009 19:33:35 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_initscripts kdumpinit.rootfs,1.2,1.3 Message-ID: <20090702193335.B049E11C048A@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_initscripts In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3158/kdump_initscripts Modified Files: kdumpinit.rootfs Log Message: Updating mkdumprd2 infrastructure Index: kdumpinit.rootfs =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kdump_initscripts/kdumpinit.rootfs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdumpinit.rootfs 20 May 2009 16:42:31 -0000 1.2 +++ kdumpinit.rootfs 2 Jul 2009 19:33:05 -0000 1.3 @@ -21,12 +21,51 @@ start_udev ################################################## load_modules +################################################## +# Assemble any existing lvm arrays +################################################## +assemble_lvm_array + + +################################################## +# Assemble any mdraid partitions that might exist +################################################## +#TODO - FILL ME IN +################################################## +# Mount the root file system +# Note that the sample manifest modified +# The /etc/fstab file to put the root file system +# under /mnt directly +################################################## +mount /mnt +if [ $? -ne 0] + echo "Failed to mount root fs for dump capture. rebooting" + reboot -f +fi +################################################## +# Now capture the core dump to the target fs +# Note we need to set the date here +################################################## +if [ -f /etc/clock ] +then + . /etc/clock +fi +if [ "$UTC" == "true" ] +then + TIME_FORMAT=-u +else + TIME_FORMAT=-l +fi +hwclock --hctosys $TIME_FORMAT +DATE=`date +%Y-%m-%d-%T` +cp /proc/vmcore /mnt/var/crash/$DATE/vmcore + ################################################## # Reboot the system to get back to production ################################################## From nhorman at fedoraproject.org Thu Jul 2 19:33:35 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 2 Jul 2009 19:33:35 +0000 (UTC) Subject: rpms/kexec-tools/devel/kdump_sample_manifests manifest.localrootfs, 1.1, 1.2 Message-ID: <20090702193335.E533211C048A@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel/kdump_sample_manifests In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3158/kdump_sample_manifests Modified Files: manifest.localrootfs Log Message: Updating mkdumprd2 infrastructure Index: manifest.localrootfs =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kdump_sample_manifests/manifest.localrootfs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- manifest.localrootfs 20 May 2009 18:09:56 -0000 1.1 +++ manifest.localrootfs 2 Jul 2009 19:33:05 -0000 1.2 @@ -11,6 +11,7 @@ # 1) reg # reg # A regular file copy from the source to the dst directory +# # 2) creg # creg # like reg, but only copy if the source file exists @@ -74,7 +75,13 @@ creg /etc/mdadm.conf /etc gen awk /etc/fstab '/^[^#]/{print $1 " /mnt"$2 " "$3 " "$4 " "$5 " "$6}' /etc/fstab ################################################### +# Grab /etc/clock so we can set the clock properly +################################################### +creg /etc/clock /etc + +################################################### # Grab the standard initscript to capture to the local # rootfs ################################################### -#ren /usr/share/kexec-tools/kdumpinit.rootfs /init +# +ren /usr/share/kexec-tools/kdumpinit.rootfs /init From nhorman at fedoraproject.org Thu Jul 2 19:33:35 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 2 Jul 2009 19:33:35 +0000 (UTC) Subject: rpms/kexec-tools/devel sources,1.16,1.17 Message-ID: <20090702193335.9108711C0418@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3158 Modified Files: sources Log Message: Updating mkdumprd2 infrastructure Index: sources =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 20 May 2009 18:55:21 -0000 1.16 +++ sources 2 Jul 2009 19:33:05 -0000 1.17 @@ -1,4 +1,4 @@ d9f2ecd3c3307905f24130a25816e6cc kexec-tools-2.0.0.tar.bz2 3e802d638dce0080b910f15908c04a24 kexec-tools-po.tar.gz 190f8878aa7e7b63a96fde5d59538eec makedumpfile-1.3.3.tar.gz -f06ce57e7e4eb59dde1c986f8787c8b0 mkdumprd2-files.tbz2 +eeaf6fd69d4254ea61e42259898bc1ef mkdumprd2-files.tbz2 From jbowes at fedoraproject.org Thu Jul 2 19:41:47 2009 From: jbowes at fedoraproject.org (jbowes) Date: Thu, 2 Jul 2009 19:41:47 +0000 (UTC) Subject: rpms/mod_wsgi/F-11 mod_wsgi.spec,1.10,1.11 Message-ID: <20090702194147.32C1111C0418@cvs1.fedora.phx.redhat.com> Author: jbowes Update of /cvs/pkgs/rpms/mod_wsgi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4769 Modified Files: mod_wsgi.spec Log Message: update to 2.5 for F-11 Index: mod_wsgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/F-11/mod_wsgi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mod_wsgi.spec 26 Feb 2009 02:15:32 -0000 1.10 +++ mod_wsgi.spec 2 Jul 2009 19:41:46 -0000 1.11 @@ -1,6 +1,6 @@ Name: mod_wsgi -Version: 2.3 -Release: 3%{?dist} +Version: 2.5 +Release: 1%{?dist} Summary: A WSGI interface for Python web applications in Apache Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 James Bowes 2.5-1 +- Update to 2.5 + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From anyremote at fedoraproject.org Thu Jul 2 19:46:17 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 19:46:17 +0000 (UTC) Subject: rpms/ganyremote/devel .cvsignore, 1.16, 1.17 ganyremote.spec, 1.16, 1.17 import.log, 1.12, 1.13 sources, 1.17, 1.18 Message-ID: <20090702194617.891DE11C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/ganyremote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5739/devel Modified Files: .cvsignore ganyremote.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 1 Jun 2009 18:46:40 -0000 1.16 +++ .cvsignore 2 Jul 2009 19:45:47 -0000 1.17 @@ -1 +1 @@ -ganyremote-5.9.tar.gz +ganyremote-5.10.tar.gz Index: ganyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/devel/ganyremote.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ganyremote.spec 1 Jun 2009 18:46:40 -0000 1.16 +++ ganyremote.spec 2 Jul 2009 19:45:47 -0000 1.17 @@ -1,6 +1,6 @@ Summary: GTK frontend for anyRemote Name: ganyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -39,6 +39,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Threading issues were fixed. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/devel/import.log,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- import.log 1 Jun 2009 18:46:40 -0000 1.12 +++ import.log 2 Jul 2009 19:45:47 -0000 1.13 @@ -10,3 +10,4 @@ ganyremote-5_6-1_fc10:HEAD:ganyremote-5. ganyremote-5_7-1_fc10:HEAD:ganyremote-5.7-1.fc10.src.rpm:1236974706 ganyremote-5_8-1_fc10:HEAD:ganyremote-5.8-1.fc10.src.rpm:1238437405 ganyremote-5_9-1_fc10:HEAD:ganyremote-5.9-1.fc10.src.rpm:1243882058 +ganyremote-5_10-1_fc11:HEAD:ganyremote-5.10-1.fc11.src.rpm:1246564046 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 1 Jun 2009 18:46:40 -0000 1.17 +++ sources 2 Jul 2009 19:45:47 -0000 1.18 @@ -1 +1 @@ -d48ba03c3c64cca275d32d7e710c1410 ganyremote-5.9.tar.gz +9cc48e1df8116a1aada5a3c44ebe2b4c ganyremote-5.10.tar.gz From anyremote at fedoraproject.org Thu Jul 2 19:46:20 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 19:46:20 +0000 (UTC) Subject: rpms/ganyremote/F-11 .cvsignore, 1.16, 1.17 ganyremote.spec, 1.16, 1.17 import.log, 1.12, 1.13 sources, 1.17, 1.18 Message-ID: <20090702194620.422CF11C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/ganyremote/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5761/F-11 Modified Files: .cvsignore ganyremote.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 1 Jun 2009 18:46:01 -0000 1.16 +++ .cvsignore 2 Jul 2009 19:45:50 -0000 1.17 @@ -1 +1 @@ -ganyremote-5.9.tar.gz +ganyremote-5.10.tar.gz Index: ganyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-11/ganyremote.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ganyremote.spec 1 Jun 2009 18:46:01 -0000 1.16 +++ ganyremote.spec 2 Jul 2009 19:45:50 -0000 1.17 @@ -1,6 +1,6 @@ Summary: GTK frontend for anyRemote Name: ganyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -39,6 +39,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Threading issues were fixed. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-11/import.log,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- import.log 1 Jun 2009 18:46:01 -0000 1.12 +++ import.log 2 Jul 2009 19:45:50 -0000 1.13 @@ -10,3 +10,4 @@ ganyremote-5_6-1_fc10:HEAD:ganyremote-5. ganyremote-5_7-1_fc10:HEAD:ganyremote-5.7-1.fc10.src.rpm:1236974706 ganyremote-5_8-1_fc10:HEAD:ganyremote-5.8-1.fc10.src.rpm:1238437405 ganyremote-5_9-1_fc10:F-11:ganyremote-5.9-1.fc10.src.rpm:1243882047 +ganyremote-5_10-1_fc11:F-11:ganyremote-5.10-1.fc11.src.rpm:1246564076 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 1 Jun 2009 18:46:01 -0000 1.17 +++ sources 2 Jul 2009 19:45:50 -0000 1.18 @@ -1 +1 @@ -d48ba03c3c64cca275d32d7e710c1410 ganyremote-5.9.tar.gz +9cc48e1df8116a1aada5a3c44ebe2b4c ganyremote-5.10.tar.gz From jbowes at fedoraproject.org Thu Jul 2 19:46:49 2009 From: jbowes at fedoraproject.org (jbowes) Date: Thu, 2 Jul 2009 19:46:49 +0000 (UTC) Subject: rpms/mod_wsgi/F-11 mod_wsgi.spec,1.11,1.12 sources,1.5,1.6 Message-ID: <20090702194649.A13F811C0418@cvs1.fedora.phx.redhat.com> Author: jbowes Update of /cvs/pkgs/rpms/mod_wsgi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6072 Modified Files: mod_wsgi.spec sources Log Message: update sources Index: mod_wsgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/F-11/mod_wsgi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mod_wsgi.spec 2 Jul 2009 19:41:46 -0000 1.11 +++ mod_wsgi.spec 2 Jul 2009 19:46:49 -0000 1.12 @@ -1,6 +1,6 @@ Name: mod_wsgi Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A WSGI interface for Python web applications in Apache Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 James Bowes 2.5-2 +- Bump for missed sources file + * Thu Jul 02 2009 James Bowes 2.5-1 - Update to 2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 28 Oct 2008 07:11:31 -0000 1.5 +++ sources 2 Jul 2009 19:46:49 -0000 1.6 @@ -1 +1 @@ -c686e1c498dbe5753fe491c3cf61cff4 mod_wsgi-2.3.tar.gz +43ad11c477799e2f780c50197c420afd mod_wsgi-2.5.tar.gz From anyremote at fedoraproject.org Thu Jul 2 19:47:06 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 19:47:06 +0000 (UTC) Subject: rpms/ganyremote/F-10 .cvsignore, 1.16, 1.17 ganyremote.spec, 1.15, 1.16 import.log, 1.12, 1.13 sources, 1.17, 1.18 Message-ID: <20090702194706.756C111C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/ganyremote/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5921/F-10 Modified Files: .cvsignore ganyremote.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-10/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 1 Jun 2009 18:45:58 -0000 1.16 +++ .cvsignore 2 Jul 2009 19:46:36 -0000 1.17 @@ -1 +1 @@ -ganyremote-5.9.tar.gz +ganyremote-5.10.tar.gz Index: ganyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-10/ganyremote.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ganyremote.spec 1 Jun 2009 18:45:59 -0000 1.15 +++ ganyremote.spec 2 Jul 2009 19:46:36 -0000 1.16 @@ -1,6 +1,6 @@ Summary: GTK frontend for anyRemote Name: ganyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -39,6 +39,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Threading issues were fixed. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-10/import.log,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- import.log 1 Jun 2009 18:45:59 -0000 1.12 +++ import.log 2 Jul 2009 19:46:36 -0000 1.13 @@ -10,3 +10,4 @@ ganyremote-5_6-1_fc10:F-10:ganyremote-5. ganyremote-5_7-1_fc10:F-10:ganyremote-5.7-1.fc10.src.rpm:1236974696 ganyremote-5_8-1_fc10:F-10:ganyremote-5.8-1.fc10.src.rpm:1238437391 ganyremote-5_9-1_fc10:F-10:ganyremote-5.9-1.fc10.src.rpm:1243882044 +ganyremote-5_10-1_fc11:F-10:ganyremote-5.10-1.fc11.src.rpm:1246564094 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/F-10/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 1 Jun 2009 18:45:59 -0000 1.17 +++ sources 2 Jul 2009 19:46:36 -0000 1.18 @@ -1 +1 @@ -d48ba03c3c64cca275d32d7e710c1410 ganyremote-5.9.tar.gz +9cc48e1df8116a1aada5a3c44ebe2b4c ganyremote-5.10.tar.gz From ajax at fedoraproject.org Thu Jul 2 19:54:07 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 19:54:07 +0000 (UTC) Subject: rpms/gdm/devel gdm.spec,1.474,1.475 Message-ID: <20090702195407.6EAC611C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7443 Modified Files: gdm.spec Log Message: * Thu Jul 02 2009 Adam Jackson 1:2.26.1-13 - Requires: xorg-x11-xkb-utils -> Requires: setxkbmap Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.474 retrieving revision 1.475 diff -u -p -r1.474 -r1.475 --- gdm.spec 1 Jul 2009 20:03:38 -0000 1.474 +++ gdm.spec 2 Jul 2009 19:53:37 -0000 1.475 @@ -16,7 +16,7 @@ Summary: The GNOME Display Manager Name: gdm Version: 2.26.1 -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -42,7 +42,7 @@ Requires: pam >= 0:%{pam_version} Requires: /sbin/nologin Requires: system-logos Requires: xorg-x11-server-utils -Requires: xorg-x11-xkb-utils +Requires: setxkbmap Requires: xorg-x11-xinit Requires: hal >= %{hal_version} Requires: ConsoleKit >= %{consolekit_version} @@ -391,6 +391,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Thu Jul 02 2009 Adam Jackson 1:2.26.1-13 +- Requires: xorg-x11-xkb-utils -> Requires: setxkbmap + * Wed Jul 01 2009 Ray Strode - 1:2.26.1-12 - Drop defunct arch conditional buildrequires From ajax at fedoraproject.org Thu Jul 2 19:54:25 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 19:54:25 +0000 (UTC) Subject: rpms/xorg-x11-xkb-utils/devel xorg-x11-xkb-utils.spec,1.25,1.26 Message-ID: <20090702195425.A7CB211C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7501 Modified Files: xorg-x11-xkb-utils.spec Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-1 - Split Xaw-requiring utilities to extras subpackage Index: xorg-x11-xkb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/xorg-x11-xkb-utils.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-xkb-utils.spec 26 Feb 2009 11:41:50 -0000 1.25 +++ xorg-x11-xkb-utils.spec 2 Jul 2009 19:53:55 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 xkb utilities Name: xorg-x11-xkb-utils -Version: 7.2 -Release: 8%{?dist} +Version: 7.4 +Release: 1%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -35,18 +35,25 @@ BuildRequires: libXext-devel # libXpm-devel needed for xkbutils (from above error) BuildRequires: libXpm-devel -Provides: setxkbmap, xkbcomp, xkbevd, xkbprint, xkbutils -Obsoletes: XFree86, xorg-x11 +Provides: setxkbmap xkbcomp +Obsoletes: XFree86 xorg-x11 + +%package -n xorg-x11-xkb-extras +Summary: X.Org X11 xkb gadgets +Provides: xkbevd xkbprint xkbutils %description -X.Org X11 xkb utilities +X.Org X11 xkb core utilities + +%description -n xorg-x11-xkb-extras +X.Org X11 xkb gadgets %prep %setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 %patch1 -p0 -b .dont-overwrite %build -export CFLAGS="$RPM_OPT_FLAGS -DHAVE_STRCASECMP" +export CFLAGS="$RPM_OPT_FLAGS -DHAVE_STRCASECMP -Os" for pkg in xkbutils setxkbmap xkbcomp xkbevd xkbprint ; do pushd $pkg-* %configure @@ -67,21 +74,26 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc xkbutils-%{xkbutils_version}/AUTHORS xkbutils-%{xkbutils_version}/COPYING xkbutils-%{xkbutils_version}/INSTALL -%doc xkbutils-%{xkbutils_version}/NEWS xkbutils-%{xkbutils_version}/README xkbutils-%{xkbutils_version}/ChangeLog %{_bindir}/setxkbmap -%{_bindir}/xkbbell %{_bindir}/xkbcomp +%{_mandir}/man1/setxkbmap.1* +%{_mandir}/man1/xkbcomp.1* + +%files -n xorg-x11-xkb-extras +%doc xkbutils-%{xkbutils_version}/AUTHORS xkbutils-%{xkbutils_version}/COPYING xkbutils-%{xkbutils_version}/INSTALL +%doc xkbutils-%{xkbutils_version}/NEWS xkbutils-%{xkbutils_version}/README +%{_bindir}/xkbbell %{_bindir}/xkbevd %{_bindir}/xkbprint %{_bindir}/xkbvleds %{_bindir}/xkbwatch -%{_mandir}/man1/setxkbmap.1* -%{_mandir}/man1/xkbcomp.1* %{_mandir}/man1/xkbevd.1* %{_mandir}/man1/xkbprint.1* %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-1 +- Split Xaw-requiring utilities to extras subpackage + * Thu Feb 26 2009 Fedora Release Engineering - 7.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Thu Jul 2 19:53:10 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 2 Jul 2009 19:53:10 +0000 (UTC) Subject: rpms/PyQt4/devel PyQt-x11-gpl-4.5.1-licenses.patch, NONE, 1.1 PyQt-x11-gpl-4.5.1-pyuic_shebang.patch, NONE, 1.1 PyQt4.spec, 1.27, 1.28 Message-ID: <20090702195310.9D03A11C0418@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/PyQt4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7237 Modified Files: PyQt4.spec Added Files: PyQt-x11-gpl-4.5.1-licenses.patch PyQt-x11-gpl-4.5.1-pyuic_shebang.patch Log Message: * Thu Jul 02 2009 Rex Dieter - 4.5.1-2 - fix build with qt-4.5.2 - PyQt4-devel multilib conflict (#509415) PyQt-x11-gpl-4.5.1-licenses.patch: --- NEW FILE PyQt-x11-gpl-4.5.1-licenses.patch --- diff -up PyQt-x11-gpl-4.5.1/configure.py.licenses PyQt-x11-gpl-4.5.1/configure.py --- PyQt-x11-gpl-4.5.1/configure.py.licenses 2009-07-02 13:42:00.855146231 -0500 +++ PyQt-x11-gpl-4.5.1/configure.py 2009-07-02 13:43:37.020897737 -0500 @@ -50,6 +50,7 @@ sip_min_version = 0x040801 qt_version = 0 qt_edition = "" +qt_licensee = None qt_dir = None qt_incdir = None qt_libdir = None @@ -908,6 +909,9 @@ def inform_user(): sipconfig.inform("Qt v%s %sis being used." % (sipconfig.version_to_string(qt_version), edstr)) + if qt_licensee: + sipconfig.inform("Qt is licensed to %s." % qt_licensee) + if sys.platform == "darwin" and qt_framework: sipconfig.inform("Qt is built as a framework.") @@ -1464,9 +1468,8 @@ def check_license(): sipconfig.inform("This is the %s version of PyQt %s (licensed under the %s) for Python %s on %s." % (ltype, pyqt_version_str, lname, sys.version.split()[0], sys.platform)) # Common checks. - if qt_edition and ltype != "internal": - if qt_edition != "free" and ltype == "GPL": - sipconfig.error("This version of PyQt and the %s edition of Qt have incompatible licenses." % qt_edition) + if qt_licensee and ltype == "GPL": + sipconfig.error("This version of PyQt and the commercial version of Qt have incompatible licenses.") # Confirm the license if not already done. if not opts.license_confirmed: @@ -1674,6 +1677,8 @@ int main(int, char **) out << QT_VERSION << '\\n'; out << QT_EDITION << '\\n'; + out << QLibraryInfo::licensee() << '\\n'; + //#if defined(QT_SHARED) || defined(QT_DLL) out << "shared\\n"; //#else @@ -1760,7 +1765,7 @@ int main(int, char **) f.close() global qt_dir, qt_incdir, qt_libdir, qt_bindir, qt_datadir, qt_pluginsdir - global qt_version, qt_edition, qt_shared, qt_xfeatures + global qt_version, qt_edition, qt_licensee, qt_shared, qt_xfeatures qt_dir = lines[0] qt_incdir = lines[1] @@ -1770,8 +1775,12 @@ int main(int, char **) qt_pluginsdir = lines[5] qt_version = lines[6] qt_edition = lines[7] - qt_shared = lines[8] - qt_xfeatures = lines[9:] + qt_licensee = lines[8] + qt_shared = lines[9] + qt_xfeatures = lines[10:] + + if qt_licensee == 'Open Source': + qt_licensee = None try: qt_version = int(qt_version) @@ -1788,6 +1797,10 @@ int main(int, char **) if qt_edition & 0x200: # It has ActiveQt. qt_edition = "Desktop" + + # ActiveQt became part of the open source version in v4.5.2. + if qt_version >= 0x040502 and qt_licensee is None: + qt_edition = "free" elif qt_edition & 0x008: # It has OpenGL. qt_edition = "free" PyQt-x11-gpl-4.5.1-pyuic_shebang.patch: --- NEW FILE PyQt-x11-gpl-4.5.1-pyuic_shebang.patch --- diff -up PyQt-x11-gpl-4.5.1/pyuic/uic/pyuic.py.shbang PyQt-x11-gpl-4.5.1/pyuic/uic/pyuic.py --- PyQt-x11-gpl-4.5.1/pyuic/uic/pyuic.py.shbang 2009-06-16 03:37:46.000000000 -0500 +++ PyQt-x11-gpl-4.5.1/pyuic/uic/pyuic.py 2009-07-02 14:01:44.218147410 -0500 @@ -1,3 +1,5 @@ +#!/usr/bin/python -tt + import sys import optparse Index: PyQt4.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/PyQt4.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- PyQt4.spec 16 Jun 2009 13:52:23 -0000 1.27 +++ PyQt4.spec 2 Jul 2009 19:52:40 -0000 1.28 @@ -4,7 +4,7 @@ Summary: Python bindings for Qt4 Name: PyQt4 Version: 4.5.1 -Release: 1%{?dist} +Release: 2%{?dist} # GPLv2 exceptions(see GPL_EXCEPTIONS*.txt) License: GPLv3 or GPLv2 with exceptions @@ -17,6 +17,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version Patch1: PyQt-x11-gpl-4.4.4-64bit.patch # HACK! FIXME: ping upstream why this isn't working right. -- Rex Patch2: PyQt-x11-gpl-4.4.4-QT_SHARED.patch +Patch3: PyQt-x11-gpl-4.5.1-licenses.patch +Patch4: PyQt-x11-gpl-4.5.1-pyuic_shebang.patch BuildRequires: chrpath BuildRequires: dbus-devel dbus-python-devel @@ -60,9 +62,13 @@ of the Qt4 classes (e.g. KDE or your own %patch1 -p1 -b .64bit %patch2 -p1 -b .QT_SHARED +%patch3 -p1 -b .licenses +%patch4 -p1 +## permissions # mark examples non-executable find examples/ -name "*.py" | xargs chmod a-x +chmod a+rx pyuic/uic/pyuic.py %build @@ -84,7 +90,6 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL_ROOT=%{buildroot} # fix/remove rpaths - chrpath --list %{buildroot}%{python_sitearch}/PyQt4/QtCore.so chrpath --delete %{buildroot}%{python_sitearch}/PyQt4/QtCore.so @@ -97,17 +102,12 @@ chrpath --delete %{buildroot}%{python_si chrpath --list %{buildroot}%{python_sitelib}/dbus/mainloop/qt.so chrpath --delete %{buildroot}%{python_sitelib}/dbus/mainloop/qt.so -# non-executable script -chmod 755 %{buildroot}%{python_sitearch}/PyQt4/uic/pyuic.py - -# missing shebang -cp -a %{buildroot}%{_bindir}/pyuic4 %{buildroot}%{_bindir}/pyuic4.ORIG -cat > %{buildroot}%{_bindir}/pyuic4 <> %{buildroot}%{_bindir}/pyuic4 -rm -f %{buildroot}%{_bindir}/pyuic4.ORIG +# HACK: fix multilb conflict, http://bugzilla.redhat.com/509415 +rm -fv %{buildroot}%{_bindir}/pyuic4 +mv %{buildroot}%{python_sitearch}/PyQt4/uic/pyuic.py \ + %{buildroot}%{_bindir}/pyuic4 +ln -s %{_bindir}/pyuic4 \ + %{buildroot}%{python_sitearch}/PyQt4/uic/pyuic.py %clean @@ -121,6 +121,7 @@ rm -rf %{buildroot} %doc LICENSE.GPL2 GPL_EXCEPTION*.TXT %doc LICENSE.GPL3 %{python_sitearch}/PyQt4/ +%exclude %{python_sitearch}/PyQt4/uic/pyuic.py* # fixme? -> sitearch? -- Rex %{python_sitelib}/dbus/mainloop/qt.so %{_qt4_plugindir}/designer/* @@ -129,12 +130,19 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc doc/* %doc examples/ -%{_bindir}/* +%{_bindir}/pylupdate4 +%{_bindir}/pyrcc4 +%{_bindir}/pyuic4 +%{python_sitearch}/PyQt4/uic/pyuic.py* %{_datadir}/sip/PyQt4/ %{_qt4_prefix}/qsci/api/python/PyQt4.api %changelog +* Thu Jul 02 2009 Rex Dieter - 4.5.1-2 +- fix build with qt-4.5.2 +- PyQt4-devel multilib conflict (#509415) + * Tue Jun 16 2009 Rex Dieter - 4.5.1-1 - PyQt-4.5.1 From mbooth at fedoraproject.org Thu Jul 2 20:01:10 2009 From: mbooth at fedoraproject.org (mbooth) Date: Thu, 2 Jul 2009 20:01:10 +0000 (UTC) Subject: rpms/eclipse-dtp/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 eclipse-dtp.spec, 1.6, 1.7 get-dtp.sh, 1.3, 1.4 Message-ID: <20090702200110.5322911C0418@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-dtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8745/eclipse-dtp/devel Modified Files: .cvsignore sources eclipse-dtp.spec get-dtp.sh Log Message: * Thu Jul 02 2009 Mat Booth 1.7.0-1 - Update to 1.7.0 final release (Galileo). - Get map files from CVS instead of maintaining our own. - Require Eclipse 3.4.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 27 May 2009 06:28:06 -0000 1.4 +++ .cvsignore 2 Jul 2009 20:00:40 -0000 1.5 @@ -1,3 +1 @@ -dtp-1.6.1.tar.gz -dtp-1.6.2.tar.gz dtp-1.7.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 27 May 2009 06:26:34 -0000 1.4 +++ sources 2 Jul 2009 20:00:40 -0000 1.5 @@ -1 +1 @@ -c44698f78debcb2b2413c2ffcc1b41e8 dtp-1.7.0.tar.gz +987f947ea316163930307013ca62ba0c dtp-1.7.0.tar.gz Index: eclipse-dtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/eclipse-dtp.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- eclipse-dtp.spec 27 May 2009 06:26:34 -0000 1.6 +++ eclipse-dtp.spec 2 Jul 2009 20:00:40 -0000 1.7 @@ -3,7 +3,7 @@ Name: eclipse-dtp Version: 1.7.0 -Release: 0.1.RC2%{?dist} +Release: 1%{?dist} Summary: Eclipse Data Tools Platform Group: System Environment/Libraries License: EPL @@ -14,8 +14,7 @@ URL: http://www.eclipse.org/datato # $ sh get-dtp.sh Source0: dtp-%{version}.tar.gz Source1: get-dtp.sh -# List of cvs location to fetch sources. -Source2: directory.txt + Patch0: %{name}-java6.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -24,7 +23,7 @@ BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils -BuildRequires: eclipse-pde >= 1:3.4.1 +BuildRequires: eclipse-pde >= 1:3.4.2 BuildRequires: eclipse-emf BuildRequires: eclipse-gef BuildRequires: wsdl4j >= 1.5.2-5.5 @@ -35,7 +34,7 @@ BuildRequires: xml-commons-apis >= 1. Requires: java Requires: jpackage-utils -Requires: eclipse-platform >= 1:3.4.1 +Requires: eclipse-platform >= 1:3.4.2 Requires: eclipse-emf Requires: eclipse-gef Requires: wsdl4j >= 1.5.2-5.5 @@ -56,6 +55,7 @@ data-centric technologies and supported # remove unneeded import on sun.misc.Compare which broke compilation on non-Sun jvm sed -i 's/import sun\.misc\.Compare;/ /' \ org.eclipse.datatools.connectivity/src/org/eclipse/datatools/connectivity/drivers/models/OverrideTemplateDescriptor.java + # make sure upstream hasn't sneaked in any jars we don't know about JARS="" for j in `find -name "*.jar"`; do @@ -86,7 +86,6 @@ popd %{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.enablement.oda.feature \ -d "emf gef" -o `pwd`/orbitDeps - %install rm -rf %{buildroot} install -d -m 755 %{buildroot}%{eclipse_dropin} @@ -119,6 +118,11 @@ rm -rf %{buildroot} %doc org.eclipse.datatools.enablement.oda.feature/license.html %changelog +* Thu Jul 02 2009 Mat Booth 1.7.0-1 +- Update to 1.7.0 final release (Galileo). +- Get map files from CVS instead of maintaining our own. +- Require Eclipse 3.4.2. + * Wed May 27 2009 Alexander Kurtakov 1.7.0-0.1.RC2 - Update to 1.7.0 RC2. - Use %%global. Index: get-dtp.sh =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/get-dtp.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- get-dtp.sh 27 May 2009 06:26:34 -0000 1.3 +++ get-dtp.sh 2 Jul 2009 20:00:40 -0000 1.4 @@ -1,14 +1,23 @@ #!/bin/bash NAME="dtp" VERSION=1.7.0 +TAG="DTP_1_7_0_Release_200906111239" +MAPFILES=' +org.eclipse.datatools.releng/maps/dtp-features.map +org.eclipse.datatools.modelbase/releng/org.eclipse.datatools.modelbase.releng/maps/modelbase-plugins.map +org.eclipse.datatools.connectivity/releng/org.eclipse.datatools.connectivity.releng/maps/connectivity-plugins.map +org.eclipse.datatools.sqltools/releng/org.eclipse.datatools.sqltools.releng/maps/sqldevtools-plugins.map +org.eclipse.datatools.enablement/releng/org.eclipse.datatools.enablement.releng/maps/enablement-plugins.map' echo "Exporting from CVS..." -rm -fr $NAME-$VERSION mkdir $NAME-$VERSION pushd $NAME-$VERSION >/dev/null -MAPFILE=../directory.txt +for MAPFILE in $MAPFILES; do + TEMPMAPFILE=temp.map +cvs -d :pserver:anonymous at dev.eclipse.org:/cvsroot/datatools export -r $TAG $MAPFILE +dos2unix $MAPFILE grep ^[a-z] $MAPFILE > $TEMPMAPFILE gawk 'BEGIN { @@ -20,23 +29,22 @@ if (NF < 4) { split($1, version, "="); split(version[1], directory, "@"); cvsdir=split($2, dirName, ":"); - printf("%s %s %s%s %s %s %s %s %s %s %s\n", "cvs", "-d", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q", "export", "-r", version[2], "-d", directory[2], directory[2]) | "/bin/bash"; + printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[2], directory[2]) | "/bin/bash"; } else { split($1, version, "="); total=split($4, directory, "/"); cvsdir=split($2, dirName, ":"); - #printf("%s\n", total); - #printf("%s\n", version[2]); - #printf("%s\n", directory[total]); - #printf("%s\n", $4); - printf("%s%s %s %s %s %s %s\n ", "cvs -d :pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[total], $4) | "/bin/bash"; + printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[total], $4) | "/bin/bash"; } }' $TEMPMAPFILE -rm $TEMPMAPFILE +rm $TEMPMAPFILE $MAPFILE + +done + popd >/dev/null echo "Creating tarball '$NAME-$VERSION.tar.gz'..." From mbooth at fedoraproject.org Thu Jul 2 20:02:18 2009 From: mbooth at fedoraproject.org (mbooth) Date: Thu, 2 Jul 2009 20:02:18 +0000 (UTC) Subject: rpms/eclipse-dtp/devel directory.txt,1.3,NONE Message-ID: <20090702200218.5593811C0418@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-dtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9248/eclipse-dtp/devel Removed Files: directory.txt Log Message: Remove map file - now fetched from upstream CVS in get-dtp.sh. --- directory.txt DELETED --- From anyremote at fedoraproject.org Thu Jul 2 20:04:37 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 20:04:37 +0000 (UTC) Subject: rpms/kanyremote/devel .cvsignore, 1.18, 1.19 import.log, 1.20, 1.21 kanyremote.spec, 1.23, 1.24 sources, 1.23, 1.24 Message-ID: <20090702200437.2D59511C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/kanyremote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10246/devel Modified Files: .cvsignore import.log kanyremote.spec sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 1 Jun 2009 19:03:03 -0000 1.18 +++ .cvsignore 2 Jul 2009 20:04:06 -0000 1.19 @@ -1 +1 @@ -kanyremote-5.9.tar.gz +kanyremote-5.10.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/devel/import.log,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- import.log 1 Jun 2009 19:03:03 -0000 1.20 +++ import.log 2 Jul 2009 20:04:06 -0000 1.21 @@ -18,3 +18,4 @@ kanyremote-5_8-1_fc10:HEAD:kanyremote-5. kanyremote-5_8_1-1_fc10:HEAD:kanyremote-5.8.1-1.fc10.src.rpm:1239128974 kanyremote-5_8_2-1_fc10:HEAD:kanyremote-5.8.2-1.fc10.src.rpm:1239299053 kanyremote-5_9-1_fc10:HEAD:kanyremote-5.9-1.fc10.src.rpm:1243883074 +kanyremote-5_10-1_fc11:HEAD:kanyremote-5.10-1.fc11.src.rpm:1246565173 Index: kanyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/devel/kanyremote.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- kanyremote.spec 1 Jun 2009 19:03:03 -0000 1.23 +++ kanyremote.spec 2 Jul 2009 20:04:06 -0000 1.24 @@ -1,11 +1,11 @@ Summary: KDE frontend for anyRemote Name: kanyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz -Requires: PyKDE >= 3.16, PyQt >= 3.17, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 +Requires: PyKDE4, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 BuildRequires: desktop-file-utils BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://anyremote.sourceforge.net/ @@ -38,6 +38,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Tool was rewritten on QT4. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) @@ -124,5 +128,6 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}_flash.png %{_datadir}/pixmaps/%{name}_off.png %{_datadir}/pixmaps/%{name}_light.png +%{_datadir}/pixmaps/%{name}_logo.svg %{_datadir}/pixmaps/%{name}.png %{_defaultdocdir}/%{name} Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 1 Jun 2009 19:03:03 -0000 1.23 +++ sources 2 Jul 2009 20:04:06 -0000 1.24 @@ -1 +1 @@ -65719dc134778362cef2bf9e8833a77a kanyremote-5.9.tar.gz +2586cb67892eab059bc8b71aebe028f2 kanyremote-5.10.tar.gz From anyremote at fedoraproject.org Thu Jul 2 20:04:57 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 20:04:57 +0000 (UTC) Subject: rpms/kanyremote/F-11 .cvsignore, 1.18, 1.19 import.log, 1.20, 1.21 kanyremote.spec, 1.23, 1.24 sources, 1.23, 1.24 Message-ID: <20090702200457.11D4311C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/kanyremote/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10340/F-11 Modified Files: .cvsignore import.log kanyremote.spec sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 1 Jun 2009 19:03:06 -0000 1.18 +++ .cvsignore 2 Jul 2009 20:04:26 -0000 1.19 @@ -1 +1 @@ -kanyremote-5.9.tar.gz +kanyremote-5.10.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-11/import.log,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- import.log 1 Jun 2009 19:03:06 -0000 1.20 +++ import.log 2 Jul 2009 20:04:26 -0000 1.21 @@ -18,3 +18,4 @@ kanyremote-5_8-1_fc10:HEAD:kanyremote-5. kanyremote-5_8_1-1_fc10:HEAD:kanyremote-5.8.1-1.fc10.src.rpm:1239128974 kanyremote-5_8_2-1_fc10:HEAD:kanyremote-5.8.2-1.fc10.src.rpm:1239299053 kanyremote-5_9-1_fc10:F-11:kanyremote-5.9-1.fc10.src.rpm:1243883081 +kanyremote-5_10-1_fc11:F-11:kanyremote-5.10-1.fc11.src.rpm:1246565186 Index: kanyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-11/kanyremote.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- kanyremote.spec 1 Jun 2009 19:03:06 -0000 1.23 +++ kanyremote.spec 2 Jul 2009 20:04:26 -0000 1.24 @@ -1,11 +1,11 @@ Summary: KDE frontend for anyRemote Name: kanyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz -Requires: PyKDE >= 3.16, PyQt >= 3.17, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 +Requires: PyKDE4, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 BuildRequires: desktop-file-utils BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://anyremote.sourceforge.net/ @@ -38,6 +38,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Tool was rewritten on QT4. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) @@ -124,5 +128,6 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}_flash.png %{_datadir}/pixmaps/%{name}_off.png %{_datadir}/pixmaps/%{name}_light.png +%{_datadir}/pixmaps/%{name}_logo.svg %{_datadir}/pixmaps/%{name}.png %{_defaultdocdir}/%{name} Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 1 Jun 2009 19:03:06 -0000 1.23 +++ sources 2 Jul 2009 20:04:26 -0000 1.24 @@ -1 +1 @@ -65719dc134778362cef2bf9e8833a77a kanyremote-5.9.tar.gz +2586cb67892eab059bc8b71aebe028f2 kanyremote-5.10.tar.gz From anyremote at fedoraproject.org Thu Jul 2 20:04:59 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Thu, 2 Jul 2009 20:04:59 +0000 (UTC) Subject: rpms/kanyremote/F-10 .cvsignore, 1.18, 1.19 import.log, 1.18, 1.19 kanyremote.spec, 1.19, 1.20 sources, 1.21, 1.22 Message-ID: <20090702200459.C0F3111C0418@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/kanyremote/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10360/F-10 Modified Files: .cvsignore import.log kanyremote.spec sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-10/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 1 Jun 2009 19:19:49 -0000 1.18 +++ .cvsignore 2 Jul 2009 20:04:29 -0000 1.19 @@ -1 +1 @@ -kanyremote-5.9.tar.gz +kanyremote-5.10.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-10/import.log,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- import.log 1 Jun 2009 19:19:49 -0000 1.18 +++ import.log 2 Jul 2009 20:04:29 -0000 1.19 @@ -16,3 +16,4 @@ kanyremote-5_8-1_fc10:F-10:kanyremote-5. kanyremote-5_8_1-1_fc10:F-10:kanyremote-5.8.1-1.fc10.src.rpm:1239128949 kanyremote-5_8_2-1_fc10:F-10:kanyremote-5.8.2-1.fc10.src.rpm:1239299021 kanyremote-5_9-1_fc10:F-10:kanyremote-5.9-1.fc10.src.rpm:1243883093 +kanyremote-5_10-1_fc11:F-10:kanyremote-5.10-1.fc11.src.rpm:1246565196 Index: kanyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-10/kanyremote.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- kanyremote.spec 1 Jun 2009 19:19:49 -0000 1.19 +++ kanyremote.spec 2 Jul 2009 20:04:29 -0000 1.20 @@ -1,11 +1,11 @@ Summary: KDE frontend for anyRemote Name: kanyremote -Version: 5.9 +Version: 5.10 Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz -Requires: PyKDE >= 3.16, PyQt >= 3.17, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 +Requires: PyKDE4, pybluez >= 0.9.1, bluez-utils >= 3.35, anyremote >= 4.18.1 BuildRequires: desktop-file-utils BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://anyremote.sourceforge.net/ @@ -38,6 +38,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Mikhail Fedotov - 5.10 +- Tool was rewritten on QT4. Enhanced handling of GuiAppBinary tag. + Handle java client with 48x48 icons. + * Mon May 26 2009 Mikhail Fedotov - 5.9 - Slovak translation was added (thanks to Michal Toth) @@ -124,5 +128,6 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}_flash.png %{_datadir}/pixmaps/%{name}_off.png %{_datadir}/pixmaps/%{name}_light.png +%{_datadir}/pixmaps/%{name}_logo.svg %{_datadir}/pixmaps/%{name}.png %{_defaultdocdir}/%{name} Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 1 Jun 2009 19:19:49 -0000 1.21 +++ sources 2 Jul 2009 20:04:29 -0000 1.22 @@ -1 +1 @@ -65719dc134778362cef2bf9e8833a77a kanyremote-5.9.tar.gz +2586cb67892eab059bc8b71aebe028f2 kanyremote-5.10.tar.gz From chkr at fedoraproject.org Thu Jul 2 20:05:36 2009 From: chkr at fedoraproject.org (chkr) Date: Thu, 2 Jul 2009 20:05:36 +0000 (UTC) Subject: rpms/anki/devel .cvsignore, 1.7, 1.8 anki.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090702200536.86F9D11C0418@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/anki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10706 Modified Files: .cvsignore anki.spec sources Log Message: - Update to new upstream version 0.9.9.8.4 - fix one %%lang tag Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 May 2009 08:20:59 -0000 1.7 +++ .cvsignore 2 Jul 2009 20:05:36 -0000 1.8 @@ -1 +1 @@ -anki-0.9.9.7.9b.tgz +anki-0.9.9.8.4.tgz Index: anki.spec =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/anki.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- anki.spec 24 May 2009 08:21:00 -0000 1.9 +++ anki.spec 2 Jul 2009 20:05:36 -0000 1.10 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: anki -Version: 0.9.9.7.9b +Version: 0.9.9.8.4 Release: 1%{?dist} Summary: Flashcard program for using space repetition learning @@ -75,7 +75,6 @@ rm -rf %{buildroot} %dir %{python_sitelib}/anki %{python_sitelib}/anki/*.py* %{python_sitelib}/anki/importing -%{python_sitelib}/anki/features # locale %dir %{python_sitelib}/ankiqt/locale/ @@ -93,7 +92,8 @@ rm -rf %{buildroot} %lang(sv) %{python_sitelib}/*/locale/sv_*/ %lang(pt) %{python_sitelib}/*/locale/pt_*/ %lang(ee) %{python_sitelib}/*/locale/ee_*/ -%lang(ee) %{python_sitelib}/*/locale/mn_*/ +%lang(mn) %{python_sitelib}/*/locale/mn_*/ +%lang(nb) %{python_sitelib}/*/locale/nb_*/ %{python_sitelib}/*egg-info %{_bindir}/anki @@ -101,6 +101,10 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Thu Jul 02 2009 Christian Krause - 0.9.9.8.4-1 +- Update to new upstream version 0.9.9.8.4 +- fix one %%lang tag + * Sun May 24 2009 Christian Krause - 0.9.9.7.9b-1 - Update to new upstream version 0.9.9.7.9b to fix a syncing bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 May 2009 08:21:00 -0000 1.7 +++ sources 2 Jul 2009 20:05:36 -0000 1.8 @@ -1 +1 @@ -026eea1affd67c0748dee98c5c4d4543 anki-0.9.9.7.9b.tgz +f569879ab25e54340cb122cc667ce86c anki-0.9.9.8.4.tgz From jbowes at fedoraproject.org Thu Jul 2 20:14:46 2009 From: jbowes at fedoraproject.org (jbowes) Date: Thu, 2 Jul 2009 20:14:46 +0000 (UTC) Subject: rpms/mod_wsgi/EL-5 mod_wsgi.spec,1.7,1.8 sources,1.4,1.5 Message-ID: <20090702201446.138C611C0418@cvs1.fedora.phx.redhat.com> Author: jbowes Update of /cvs/pkgs/rpms/mod_wsgi/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12255 Modified Files: mod_wsgi.spec sources Log Message: update to 2.5 for el5 Index: mod_wsgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/EL-5/mod_wsgi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mod_wsgi.spec 8 Oct 2008 12:42:58 -0000 1.7 +++ mod_wsgi.spec 2 Jul 2009 20:14:15 -0000 1.8 @@ -1,6 +1,6 @@ Name: mod_wsgi -Version: 2.1 -Release: 2%{?dist} +Version: 2.5 +Release: 1%{?dist} Summary: A WSGI interface for Python web applications in Apache Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 James Bowes 2.5-1 +- Update to 2.5 + * Wed Oct 08 2008 James Bowes 2.1-2 - Remove requires on httpd-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 3 Jul 2008 13:30:11 -0000 1.4 +++ sources 2 Jul 2009 20:14:15 -0000 1.5 @@ -1 +1 @@ -4e0e8b5a13e0be2fc5b038f1e3e826a2 mod_wsgi-2.1.tar.gz +43ad11c477799e2f780c50197c420afd mod_wsgi-2.5.tar.gz From jjames at fedoraproject.org Thu Jul 2 20:15:28 2009 From: jjames at fedoraproject.org (Jerry James) Date: Thu, 2 Jul 2009 20:15:28 +0000 (UTC) Subject: rpms/xemacs/F-11 xemacs-21.5.29-destdir.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xemacs.spec, 1.47, 1.48 xemacs-21.5.26-gtk-gcc4.patch, 1.1, NONE xemacs-21.5.27-finder-lisp-dir.patch, 1.1, NONE xemacs-21.5.28-3d-athena.patch, 1.1, NONE xemacs-21.5.28-autoconf262-449626.patch, 1.1, NONE xemacs-21.5.28-destdir.patch, 1.1, NONE xemacs-21.5.28-doc-encodings.patch, 1.1, NONE xemacs-21.5.28-revert-modified-245017.patch, 1.1, NONE xemacs-21.5.28-xemacs-base-autoloads.patch, 1.1, NONE xemacs-beta-destdir.patch, 1.1, NONE Message-ID: <20090702201528.6436811C0418@cvs1.fedora.phx.redhat.com> Author: jjames Update of /cvs/pkgs/rpms/xemacs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12304/F-11 Modified Files: .cvsignore sources xemacs.spec Added Files: xemacs-21.5.29-destdir.patch Removed Files: xemacs-21.5.26-gtk-gcc4.patch xemacs-21.5.27-finder-lisp-dir.patch xemacs-21.5.28-3d-athena.patch xemacs-21.5.28-autoconf262-449626.patch xemacs-21.5.28-destdir.patch xemacs-21.5.28-doc-encodings.patch xemacs-21.5.28-revert-modified-245017.patch xemacs-21.5.28-xemacs-base-autoloads.patch xemacs-beta-destdir.patch Log Message: * Wed May 20 2009 Ville Skytt?? - 21.5.29-1 - Update to 21.5.29; gtk-gcc4, finder-lisp-dir, 3d-athena, autoconf262, doc-encodings, revert-modified, and xemacs-base-autoloads patches applied upstream. * Thu Mar 12 2009 Ville Skytt?? - 21.5.28-13 - Add possibility to build upstream hg snapshots. - Add dependency on xorg-x11-fonts-misc (#478370, Carl Brune). - Include Installation{,-nox} in docs. xemacs-21.5.29-destdir.patch: --- NEW FILE xemacs-21.5.29-destdir.patch --- diff -up xemacs-21.5.29/dynodump/Makefile.in.in~ xemacs-21.5.29/dynodump/Makefile.in.in --- xemacs-21.5.29/dynodump/Makefile.in.in~ 2009-05-18 17:51:05.000000000 +0300 +++ xemacs-21.5.29/dynodump/Makefile.in.in 2009-05-20 22:42:21.000000000 +0300 @@ -22,6 +22,8 @@ ## Synched up with: Not synched with FSF. +DESTDIR= + ## For performance and consistency, no built-in rules. .SUFFIXES: .SUFFIXES: .c .o .i .h diff -up xemacs-21.5.29/etc/tests/external-widget/Makefile~ xemacs-21.5.29/etc/tests/external-widget/Makefile --- xemacs-21.5.29/etc/tests/external-widget/Makefile~ 2009-05-18 17:51:05.000000000 +0300 +++ xemacs-21.5.29/etc/tests/external-widget/Makefile 2009-05-20 22:42:23.000000000 +0300 @@ -1,3 +1,5 @@ +DESTDIR= + CFLAGS += -Xc -g -DTOOLTALK EMACSHOME = ../../.. EMACSLIBDIR = $(EMACSHOME)/editor/src diff -up xemacs-21.5.29/lib-src/Makefile.in.in~ xemacs-21.5.29/lib-src/Makefile.in.in --- xemacs-21.5.29/lib-src/Makefile.in.in~ 2009-05-18 17:51:06.000000000 +0300 +++ xemacs-21.5.29/lib-src/Makefile.in.in 2009-05-20 22:42:25.000000000 +0300 @@ -24,6 +24,8 @@ ## above a certain point in this file are in shell format instead of ## in C format. How the hell is this supposed to work? */ +DESTDIR= + ## For performance and consistency, no built-in rules .SUFFIXES: .SUFFIXES: .c .h .o @@ -246,26 +248,26 @@ do-blessmail: $(blessmail) ## just run them directly from lib-src. ${archlibdir}: all @echo; echo "Installing utilities run internally by XEmacs." - ./make-path ${archlibdir} + ./make-path $(DESTDIR)${archlibdir} if test "`(cd ${archlibdir} && $(pwd))`" != "`$(pwd)`"; then \ for f in ${PRIVATE_INSTALLABLE_EXES}; do \ - (cd .. && $(INSTALL_PROGRAM) lib-src/$$f ${archlibdir}/$$f) ; \ + (cd .. && $(INSTALL_PROGRAM) lib-src/$$f $(DESTDIR)${archlibdir}/$$f) ; \ done ; \ fi if test "`(cd ${archlibdir} && $(pwd))`" \ != "`(cd ${srcdir} && $(pwd))`"; then \ for f in ${PRIVATE_INSTALLABLE_SCRIPTS}; do \ - (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$$f ${archlibdir}/$$f); \ + (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$$f $(DESTDIR)${archlibdir}/$$f); \ done ; \ fi install: ${archlibdir} @echo; echo "Installing utilities for users to run." for file in ${PUBLIC_INSTALLABLE_EXES} ; do \ - (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \ + (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} $(DESTDIR)${bindir}/$${file}) ; \ done for file in ${PUBLIC_INSTALLABLE_SCRIPTS} ; do \ - (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \ + (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} $(DESTDIR)${bindir}/$${file}) ; \ done uninstall: diff -up xemacs-21.5.29/lwlib/Makefile.in.in~ xemacs-21.5.29/lwlib/Makefile.in.in --- xemacs-21.5.29/lwlib/Makefile.in.in~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/lwlib/Makefile.in.in 2009-05-20 22:42:27.000000000 +0300 @@ -22,6 +22,8 @@ ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ## Boston, MA 02111-1307, USA. +DESTDIR= + ## For performance and consistency, no built-in rules .SUFFIXES: .SUFFIXES: .c .h .o .i .s diff -up xemacs-21.5.29/Makefile.in.in~ xemacs-21.5.29/Makefile.in.in --- xemacs-21.5.29/Makefile.in.in~ 2009-05-18 17:51:05.000000000 +0300 +++ xemacs-21.5.29/Makefile.in.in 2009-05-20 22:42:17.000000000 +0300 @@ -61,6 +61,8 @@ RECURSIVE_MAKE_ARGS= RECURSIVE_MAKE_ARGS=@RECURSIVE_MAKE_ARGS@ #endif +DESTDIR= + SHELL = /bin/sh LANG = C LC_ALL = C @@ -394,37 +396,37 @@ install-arch-dep: mkdir (cd ./$${subdir} && $(MAKE) $(RECURSIVE_MAKE_ARGS) install prefix=${prefix} \ exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \ archlibdir=${archlibdir}) ; done - if test "`(cd ${archlibdir} && $(pwd))`" != \ + if test "`(cd $(DESTDIR)${archlibdir} && $(pwd))`" != \ "`(cd ./lib-src && $(pwd))`"; then \ if test -f ../Installation; then \ - ${INSTALL_DATA} ../Installation ${archlibdir}/Installation; \ + ${INSTALL_DATA} ../Installation $(DESTDIR)${archlibdir}/Installation; \ fi; \ - ${INSTALL_DATA} lib-src/config.values ${docdir}/config.values; \ - ${INSTALL_DATA} lib-src/DOC ${docdir}/DOC; \ + ${INSTALL_DATA} lib-src/config.values $(DESTDIR)${docdir}/config.values; \ + ${INSTALL_DATA} lib-src/DOC $(DESTDIR)${docdir}/DOC; \ for subdir in `find ${archlibdir} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; \ do (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; done ; \ else true; fi #if (defined(PDUMP) && !defined (DUMP_IN_EXEC)) || (defined (PDUMP) && defined(WIN32_NATIVE)) - ${INSTALL_DATA} src/${PROGNAME}.dmp ${bindir}/${PROGNAME}-${version}-`src/${PROGNAME} -sd`.dmp + ${INSTALL_DATA} src/${PROGNAME}.dmp $(DESTDIR)${bindir}/${PROGNAME}-${version}-`src/${PROGNAME} -sd`.dmp #endif #ifdef WIN32_NATIVE - ${INSTALL_PROGRAM} src/${PROGNAME} ${bindir}/${PROGNAME} - -chmod 0755 ${bindir}/${PROGNAME} + ${INSTALL_PROGRAM} src/${PROGNAME} $(DESTDIR)${bindir}/${PROGNAME} + -chmod 0755 $(DESTDIR)${bindir}/${PROGNAME} #else # ifdef CYGWIN - ${INSTALL_PROGRAM} src/${PROGNAME} ${bindir}/${PROGNAME}-${version}.exe - -chmod 0755 ${bindir}/${PROGNAME}-${version}.exe - cd ${bindir} && $(RM) ./${PROGNAME} && ${LN_S} ${PROGNAME}-${version}.exe ./${PROGNAME} - cd ${bindir} && $(RM) ./${SHEBANG_PROGNAME} && ${LN_S} ${PROGNAME}-${version}.exe ./${SHEBANG_PROGNAME} + ${INSTALL_PROGRAM} src/${PROGNAME} $(DESTDIR)${bindir}/${PROGNAME}-${version}.exe + -chmod 0755 $(DESTDIR)${bindir}/${PROGNAME}-${version}.exe + cd $(DESTDIR)${bindir} && $(RM) ./${PROGNAME} && ${LN_S} ${PROGNAME}-${version}.exe ./${PROGNAME} + cd $(DESTDIR)${bindir} && $(RM) ./${SHEBANG_PROGNAME} && ${LN_S} ${PROGNAME}-${version}.exe ./${SHEBANG_PROGNAME} # else - ${INSTALL_PROGRAM} src/${PROGNAME} ${bindir}/${PROGNAME}-${version} - -chmod 0755 ${bindir}/${PROGNAME}-${version} - cd ${bindir} && $(RM) ./${PROGNAME} && ${LN_S} ${PROGNAME}-${version} ./${PROGNAME} - cd ${bindir} && $(RM) ./${SHEBANG_PROGNAME} && ${LN_S} ${PROGNAME}-${version} ./${SHEBANG_PROGNAME} + ${INSTALL_PROGRAM} src/${PROGNAME} $(DESTDIR)${bindir}/${PROGNAME}-${version} + -chmod 0755 $(DESTDIR)${bindir}/${PROGNAME}-${version} + cd $(DESTDIR)${bindir} && $(RM) ./${PROGNAME} && ${LN_S} ${PROGNAME}-${version} ./${PROGNAME} + cd $(DESTDIR)${bindir} && $(RM) ./${SHEBANG_PROGNAME} && ${LN_S} ${PROGNAME}-${version} ./${SHEBANG_PROGNAME} # endif /* CYGWIN */ #endif /* WIN32_NATIVE */ if test "${prefix}" != "${exec_prefix}"; then \ - $(MAKEPATH) ${exec_prefix}/lib/${instvardir}; \ + $(MAKEPATH) $(DESTDIR)${exec_prefix}/lib/${instvardir}; \ for dir in \ lib/${inststaticdir} \ lib/${instvardir}/etc \ @@ -435,13 +437,13 @@ install-arch-dep: mkdir done; \ fi #ifdef HAVE_SHLIB - $(INSTALL_DATA) $(srcdir)/modules/auto-autoloads.* $(moduledir) + $(INSTALL_DATA) $(srcdir)/modules/auto-autoloads.* $(DESTDIR)$(moduledir) #endif install-arch-indep: mkdir info - at set ${COPYDESTS} ; \ for dir in ${COPYDIR} ; do \ - if test "`(cd $$1 && $(pwd))`" != \ + if test "`(cd $(DESTDIR)$$1 && $(pwd))`" != \ "`(cd $${dir} && $(pwd))`"; then \ : do nothing - echo "rm -rf $$1" ; \ fi ; \ @@ -449,35 +451,35 @@ install-arch-indep: mkdir info done -set ${COPYDESTS} ; \ for dir in ${COPYDESTS} ; do \ - if test ! -d $${dir} ; then mkdir $${dir} ; fi ; \ + if test ! -d $${dir} ; then mkdir $(DESTDIR)$${dir} ; fi ; \ done ; \ for dir in ${COPYDIR} ; do \ dest=$$1 ; shift ; \ test -d $${dir} \ -a "`(cd $${dir} && $(pwd))`" != \ - "`(cd $${dest} && $(pwd))`" \ + "`(cd $(DESTDIR)$${dest} && $(pwd))`" \ && (echo "Copying $${dir}..." ; \ (cd $${dir} && $(TAR) -cf - . ) | \ - (cd $${dest} && umask 022 && $(TAR) -xf - );\ - chmod 0755 $${dest}; \ - for subdir in `find $${dest} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \ + (cd $(DESTDIR)$${dest} && umask 022 && $(TAR) -xf - );\ + chmod 0755 $(DESTDIR)$${dest}; \ + for subdir in `find $(DESTDIR)$${dest} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \ (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; \ done) ; \ done if test "`(cd ${srcdir}/info && $(pwd))`" != \ - "`(cd ${infodir} && $(pwd))`" && cd ${srcdir}/info; then \ - if test ! -f ${infodir}/dir -a -f dir ; then \ - ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir ; \ + "`(cd $(DESTDIR)${infodir} && $(pwd))`" && cd ${srcdir}/info; then \ + if test ! -f $(DESTDIR)${infodir}/dir -a -f dir ; then \ + ${INSTALL_DATA} ${srcdir}/info/dir $(DESTDIR)${infodir}/dir ; \ fi ; \ for file in *.info* ; do \ - ${INSTALL_DATA} $${file} ${infodir}/$${file} ; \ - chmod 0644 ${infodir}/$${file}; \ + ${INSTALL_DATA} $${file} $(DESTDIR)${infodir}/$${file} ; \ + chmod 0644 $(DESTDIR)${infodir}/$${file}; \ done ; \ fi cd ${srcdir}/etc && \ for page in xemacs etags ctags gnuserv gnuclient gnuattach gnudoit; do \ - ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${mandir}/$${page}${manext} ; \ - chmod 0644 ${mandir}/$${page}${manext} ; \ + ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 $(DESTDIR)${mandir}/$${page}${manext} ; \ + chmod 0644 $(DESTDIR)${mandir}/$${page}${manext} ; \ done @echo "If you would like to save approximately 4M of disk space, do" @echo "make gzip-el" @@ -487,19 +489,23 @@ install-arch-indep: mkdir info @echo "${lispdir}" gzip-el: - $(SHELL) ${srcdir}/lib-src/gzip-el.sh ${lispdir} + $(SHELL) ${srcdir}/lib-src/gzip-el.sh $(DESTDIR)${lispdir} ## Build all the directories to install XEmacs in. ## Since we may be creating several layers of directories, ## (e.g. /usr/local/lib/${PROGNAME}-20.5/sparc-sun-solaris2.6), we use ## make-path instead of mkdir. Not all mkdirs have the `-p' flag. mkdir: FRC.mkdir - ${MAKEPATH} ${COPYDESTS} ${docdir} ${infodir} ${archlibdir} \ - ${mandir} ${bindir} ${datadir} ${libdir} \ + for dir in \ + ${COPYDESTS} ${docdir} ${infodir} ${archlibdir} \ + ${mandir} ${bindir} ${datadir} ${libdir} \ #ifdef HAVE_SHLIB - ${moduledir} ${sitemoduledir} \ + ${moduledir} ${sitemoduledir} \ #endif - ${sitelispdir} + ${sitelispdir} ; \ + do \ + ${MAKEPATH} $(DESTDIR)$${dir} ; \ + done ; ## Install bundled packages, if present. diff -up xemacs-21.5.29/man/Makefile~ xemacs-21.5.29/man/Makefile --- xemacs-21.5.29/man/Makefile~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/man/Makefile 2009-05-20 22:42:28.000000000 +0300 @@ -20,6 +20,8 @@ # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. +DESTDIR= + SHELL = /bin/sh MAKEINFO = makeinfo TEXI2DVI = texi2dvi diff -up xemacs-21.5.29/modules/base64/Makefile~ xemacs-21.5.29/modules/base64/Makefile --- xemacs-21.5.29/modules/base64/Makefile~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/modules/base64/Makefile 2009-05-20 22:42:29.000000000 +0300 @@ -7,6 +7,8 @@ # 'installed'. # +DESTDIR= + SHELL=/bin/sh RM=rm -f CC=../../lib-src/ellcc diff -up xemacs-21.5.29/modules/common/Makefile.common~ xemacs-21.5.29/modules/common/Makefile.common --- xemacs-21.5.29/modules/common/Makefile.common~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/modules/common/Makefile.common 2009-05-20 22:42:31.000000000 +0300 @@ -31,6 +31,8 @@ #define NOT_C_CODE #include "../../src/config.h" +DESTDIR= + SHELL=/bin/sh RM=rm -f PROGNAME=@PROGNAME@ @@ -98,7 +100,7 @@ extraclean: realclean -$(RM) *~ \#* install: $(OBJECT_TO_BUILD) - $(INSTALL_PROGRAM) $< $(INSTALLPATH) + $(INSTALL_PROGRAM) $< $(DESTDIR)$(INSTALLPATH) ## ## Local Variables: diff -up xemacs-21.5.29/modules/zlib/Makefile~ xemacs-21.5.29/modules/zlib/Makefile --- xemacs-21.5.29/modules/zlib/Makefile~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/modules/zlib/Makefile 2009-05-20 22:42:33.000000000 +0300 @@ -8,6 +8,8 @@ # 'installed'. # +DESTDIR= + SHELL=/bin/sh RM=rm -f CC=../../lib-src/ellcc diff -up xemacs-21.5.29/netinstall/Makefile.in.in~ xemacs-21.5.29/netinstall/Makefile.in.in --- xemacs-21.5.29/netinstall/Makefile.in.in~ 2009-05-18 17:51:07.000000000 +0300 +++ xemacs-21.5.29/netinstall/Makefile.in.in 2009-05-20 22:42:34.000000000 +0300 @@ -14,6 +14,8 @@ ## ## Makefile for Cygwin installer +DESTDIR= + ## For performance and consistency, no built-in rules .SUFFIXES: .SUFFIXES: .c .cc .h .o @@ -173,7 +175,7 @@ setup-bin.ini: install: @echo; echo "Installing net setup." for file in ${INSTALLABLES} ; do \ - (cd .. && $(INSTALL_PROGRAM) netinstall/$${file} ${bindir}/$${file}) ; \ + (cd .. && $(INSTALL_PROGRAM) netinstall/$${file} $(DESTDIR)${bindir}/$${file}) ; \ done version.c : $(srcdir)/ChangeLog Makefile diff -up xemacs-21.5.29/src/Makefile.in.in~ xemacs-21.5.29/src/Makefile.in.in --- xemacs-21.5.29/src/Makefile.in.in~ 2009-05-18 17:51:08.000000000 +0300 +++ xemacs-21.5.29/src/Makefile.in.in 2009-05-20 22:42:36.000000000 +0300 @@ -39,6 +39,8 @@ RECURSIVE_MAKE_ARGS= RECURSIVE_MAKE_ARGS=@RECURSIVE_MAKE_ARGS@ #endif +DESTDIR= + PROGNAME=@PROGNAME@ prefix=@prefix@ SRC=@srcdir@ @@ -1065,7 +1067,7 @@ relock: #ifdef HAVE_SHLIB MAKEPATH=../lib-src/make-path install: $(PROGNAME) - $(MAKEPATH) $(archlibdir)/include $(archlibdir)/include/m $(archlibdir)/include/s + $(MAKEPATH) $(DESTDIR)$(archlibdir)/include $(DESTDIR)$(archlibdir)/include/m $(DESTDIR)$(archlibdir)/include/s - at echo "Copying include files for ellcc..." - at hdir=`pwd`; \ cd $(SRC); hdrdir2=`pwd`; cd $$hdir; \ @@ -1079,12 +1081,12 @@ install: $(PROGNAME) test -d s && hdrtars="$$hdrtars s/*"; \ test -d m && hdrtars="$$hdrtars m/*"; \ test -n "$$hdrtars" && (tar cf - $$hdrtars) | \ - (cd $(archlibdir)/include && umask 022 && tar xf -); \ - chmod 755 $(archlibdir)/include; \ - test -d $(archlibdir)/include/s && \ - chmod 755 $(archlibdir)/include/s; \ - test -d $(archlibdir)/include/m && \ - chmod 755 $(archlibdir)/include/s;) \ + (cd $(DESTDIR)$(archlibdir)/include && umask 022 && tar xf -); \ + chmod 755 $(DESTDIR)$(archlibdir)/include; \ + test -d $(DESTDIR)$(archlibdir)/include/s && \ + chmod 755 $(DESTDIR)$(archlibdir)/include/s; \ + test -d $(DESTDIR)$(archlibdir)/include/m && \ + chmod 755 $(DESTDIR)$(archlibdir)/include/s;) \ done) #endif diff -up xemacs-21.5.29/tests/tooltalk/Makefile~ xemacs-21.5.29/tests/tooltalk/Makefile --- xemacs-21.5.29/tests/tooltalk/Makefile~ 2009-05-18 17:51:10.000000000 +0300 +++ xemacs-21.5.29/tests/tooltalk/Makefile 2009-05-20 22:42:15.000000000 +0300 @@ -12,6 +12,8 @@ ### Code: +DESTDIR= + CC = cc -Xc CPPFLAGS = -I/usr/openwin/include CFLAGS = -g -v -DNeedFunctionPrototypes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xemacs/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 21 May 2007 15:16:54 -0000 1.7 +++ .cvsignore 2 Jul 2009 20:14:57 -0000 1.8 @@ -1 +1 @@ -xemacs-21.5.28.tar.gz +xemacs-21.5.29.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xemacs/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 21 May 2007 15:16:54 -0000 1.7 +++ sources 2 Jul 2009 20:14:57 -0000 1.8 @@ -1 +1 @@ -12e35715c5239c63651a8189973527ab xemacs-21.5.28.tar.gz +5364192ae0d3de23d9f4ce197e6493b5 xemacs-21.5.29.tar.gz Index: xemacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xemacs/F-11/xemacs.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- xemacs.spec 12 Mar 2009 17:01:29 -0000 1.47 +++ xemacs.spec 2 Jul 2009 20:14:58 -0000 1.48 @@ -19,8 +19,8 @@ #global snap 20090311hg4626 Name: xemacs -Version: 21.5.28 -Release: 13%{?snap:.%{snap}}%{?dist} +Version: 21.5.29 +Release: 1%{?snap:.%{snap}}%{?dist} Summary: Different version of Emacs Group: Applications/Editors @@ -39,30 +39,11 @@ Source5: xemacs-sitestart.el Patch0: %{name}-21.5.26-utf8-fonts.patch Patch1: %{name}-21.5.25-x-paths.patch -# Upstreamed post 21.5.28 -Patch2: %{name}-21.5.28-doc-encodings.patch Patch3: %{name}-21.5.25-mk-nochk-features.patch Patch4: %{name}-21.5.27-no-expdyn-ia64-106744.patch Patch5: %{name}-21.5.25-wnnfix-128362.patch -# Upstreamed post 21.5.28 -# http://www.archivum.info/comp.emacs.xemacs/2005-08/msg00047.html -Patch6: %{name}-21.5.26-gtk-gcc4.patch -# Upstreamed post 21.5.28 -Patch7: %{name}-21.5.27-finder-lisp-dir.patch Patch8: %{name}-21.5.28-courier-default.patch -%if 0%{?snap:1} -Patch9: %{name}-beta-destdir.patch -%else -Patch9: %{name}-21.5.28-destdir.patch -%endif -# Upstreamed post 21.5.28 -Patch10: %{name}-21.5.28-revert-modified-245017.patch -# Upstreamed post 21.5.28 -Patch11: %{name}-21.5.28-autoconf262-449626.patch -# Upstreamed post 21.5.28 -Patch12: %{name}-21.5.28-3d-athena.patch -# From upstream hg post 21.5.28 -Patch13: %{name}-21.5.28-xemacs-base-autoloads.patch +Patch9: %{name}-21.5.29-destdir.patch # Sent upstream 2009-03-12 Patch14: %{name}-beta-infodir.patch @@ -227,17 +208,7 @@ touch -r aclocal.m4-stamp aclocal.m4 %patch5 -p1 %patch8 -p0 -F 1 %patch9 -p1 -%if 0%{?snap:1} %patch14 -p1 -%else -%patch2 -p0 -%patch6 -p1 -%patch7 -p0 -%patch10 -p0 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%endif sed -i -e 's/"lib"/"%{_lib}"/' lisp/setup-paths.el @@ -580,6 +551,11 @@ fi %changelog +* Wed May 20 2009 Ville Skytt?? - 21.5.29-1 +- Update to 21.5.29; gtk-gcc4, finder-lisp-dir, 3d-athena, autoconf262, + doc-encodings, revert-modified, and xemacs-base-autoloads patches applied + upstream. + * Thu Mar 12 2009 Ville Skytt?? - 21.5.28-13 - Add possibility to build upstream hg snapshots. - Add dependency on xorg-x11-fonts-misc (#478370, Carl Brune). --- xemacs-21.5.26-gtk-gcc4.patch DELETED --- --- xemacs-21.5.27-finder-lisp-dir.patch DELETED --- --- xemacs-21.5.28-3d-athena.patch DELETED --- --- xemacs-21.5.28-autoconf262-449626.patch DELETED --- --- xemacs-21.5.28-destdir.patch DELETED --- --- xemacs-21.5.28-doc-encodings.patch DELETED --- --- xemacs-21.5.28-revert-modified-245017.patch DELETED --- --- xemacs-21.5.28-xemacs-base-autoloads.patch DELETED --- --- xemacs-beta-destdir.patch DELETED --- From ajax at fedoraproject.org Thu Jul 2 20:16:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:16:58 +0000 (UTC) Subject: rpms/xorg-x11-utils/devel sources, 1.10, 1.11 xorg-x11-utils.spec, 1.24, 1.25 Message-ID: <20090702201658.F106011C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12923 Modified Files: sources xorg-x11-utils.spec Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-5 - Drop xfd and xfontsel, move them to -apps to isolate libXaw deps. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-utils/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 28 Jul 2008 01:03:10 -0000 1.10 +++ sources 2 Jul 2009 20:16:58 -0000 1.11 @@ -1,6 +1,4 @@ e3008eb0655da3026c162a5597d70869 xev-1.0.2.tar.bz2 -c72abd90f50ef459bc14b39ec9fcc7f8 xfd-1.0.1.tar.bz2 -288fe4cf8a990e4e602aac16dd9109fb xfontsel-1.0.2.tar.bz2 69adcda848479acc3b82b3928812d191 xlsatoms-1.0.1.tar.bz2 44473b880d26bfbe8b3d4d72b183cba7 xlsclients-1.0.1.tar.bz2 28958248590ff60ecd70e8f590d977b7 xlsfonts-1.0.2.tar.bz2 Index: xorg-x11-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-utils/devel/xorg-x11-utils.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-utils.spec 26 Feb 2009 11:35:57 -0000 1.24 +++ xorg-x11-utils.spec 2 Jul 2009 20:16:58 -0000 1.25 @@ -3,7 +3,7 @@ Summary: X.Org X11 X client utilities Name: xorg-x11-%{pkgname} Version: 7.4 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -12,8 +12,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/app/xdpyinfo-1.0.3.tar.bz2 #Source1: ftp://ftp.x.org/pub/individual/app/xdriinfo-1.0.2.tar.bz2 Source2: ftp://ftp.x.org/pub/individual/app/xev-1.0.2.tar.bz2 -Source3: ftp://ftp.x.org/pub/individual/app/xfd-1.0.1.tar.bz2 -Source4: ftp://ftp.x.org/pub/individual/app/xfontsel-1.0.2.tar.bz2 Source5: ftp://ftp.x.org/pub/individual/app/xlsatoms-1.0.1.tar.bz2 Source6: ftp://ftp.x.org/pub/individual/app/xlsclients-1.0.1.tar.bz2 Source7: ftp://ftp.x.org/pub/individual/app/xlsfonts-1.0.2.tar.bz2 @@ -24,7 +22,6 @@ Source10: ftp://ftp.x.org/pub/individual BuildRequires: pkgconfig BuildRequires: libdmx-devel BuildRequires: libGL-devel -BuildRequires: libXaw-devel BuildRequires: libXext-devel BuildRequires: libXft-devel BuildRequires: libXi-devel @@ -37,14 +34,14 @@ BuildRequires: libXxf86dga-devel BuildRequires: libXxf86misc-devel BuildRequires: libXxf86vm-devel -Provides: xdpyinfo xev xfd xfontsel xlsatoms xlsclients xlsfonts xprop xvinfo xwininfo +Provides: xdpyinfo xev xlsatoms xlsclients xlsfonts xprop xvinfo xwininfo %description A collection of client utilities which can be used to query the X server -for various information, view and select fonts, etc. +for various information. %prep -%setup -q -c %{name}-%{version} -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 +%setup -q -c %{name}-%{version} -a2 -a5 -a6 -a7 -a8 -a9 -a10 %build # Build all apps @@ -76,21 +73,14 @@ rm -rf $RPM_BUILD_ROOT %doc %{_bindir}/xdpyinfo %{_bindir}/xev -%{_bindir}/xfd -%{_bindir}/xfontsel %{_bindir}/xlsatoms %{_bindir}/xlsclients %{_bindir}/xlsfonts %{_bindir}/xprop %{_bindir}/xvinfo %{_bindir}/xwininfo -%dir %{_datadir}/X11 -%{_datadir}/X11/app-defaults/XFontSel -%{_datadir}/X11/app-defaults/Xfd %{_mandir}/man1/xdpyinfo.1* %{_mandir}/man1/xev.1* -%{_mandir}/man1/xfd.1* -%{_mandir}/man1/xfontsel.1* %{_mandir}/man1/xlsatoms.1* %{_mandir}/man1/xlsclients.1* %{_mandir}/man1/xlsfonts.1* @@ -99,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xwininfo.1* %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-5 +- Drop xfd and xfontsel, move them to -apps to isolate libXaw deps. + * Thu Feb 26 2009 Fedora Release Engineering - 7.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 2 20:21:27 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:21:27 +0000 (UTC) Subject: rpms/xorg-x11-server-utils/devel sources, 1.15, 1.16 xorg-x11-server-utils.spec, 1.43, 1.44 xvidtune-1.0.1-buffer-stomp.patch, 1.1, NONE Message-ID: <20090702202127.8572411C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13631 Modified Files: sources xorg-x11-server-utils.spec Removed Files: xvidtune-1.0.1-buffer-stomp.patch Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-8 - Drop xvidtune, move it to -apps to isolate libXaw deps Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server-utils/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 4 Feb 2009 21:50:49 -0000 1.15 +++ sources 2 Jul 2009 20:20:56 -0000 1.16 @@ -12,5 +12,4 @@ d074e79d380b031d2f60e4cd56538c93 xsetmo 9e5bcbeda4aaf02bfa095e41d30baee4 xsetpointer-1.0.1.tar.bz2 9af7db9f3052aef0b11636720b3101dd xsetroot-1.0.2.tar.bz2 86ab558441edfb86f853639e4290a754 xstdcmap-1.0.1.tar.bz2 -e0744594f4e5969b20df28d897781318 xvidtune-1.0.1.tar.bz2 ea230049f757cd48fa46965c36ab552c xrandr-1.2.99.4.tar.bz2 Index: xorg-x11-server-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server-utils/devel/xorg-x11-server-utils.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- xorg-x11-server-utils.spec 26 Feb 2009 11:33:01 -0000 1.43 +++ xorg-x11-server-utils.spec 2 Jul 2009 20:20:57 -0000 1.44 @@ -5,7 +5,7 @@ Summary: X.Org X11 X server utilities Name: xorg-x11-%{pkgname} Version: 7.4 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -26,7 +26,6 @@ Source12: http://www.x.org/pub/individua Source13: http://www.x.org/pub/individual/app/xsetpointer-1.0.1.tar.bz2 Source14: http://www.x.org/pub/individual/app/xsetroot-1.0.2.tar.bz2 Source15: http://www.x.org/pub/individual/app/xstdcmap-1.0.1.tar.bz2 -Source16: http://www.x.org/pub/individual/app/xvidtune-1.0.1.tar.bz2 # NOTE: Each upstream tarball has its own "PatchN" section, taken from # multiplying the "SourceN" line times 100. Please keep them in this # order. Also, please keep each patch specific to a single upstream tarball, @@ -39,9 +38,6 @@ Source16: http://www.x.org/pub/individua Patch1100: rgb-1.0.0-datadir-rgbpath-fix.patch # xset section Patch1200: xset-1.0.2-spurious-xprint.patch -# xvidtune section -#Patch1700: xvidtune-0.99.1-datadir-app-defaults-fix.patch -Patch1700: xvidtune-1.0.1-buffer-stomp.patch # FIXME: Temporary build dep on automake, autoconf while they're still used # in the specfile. @@ -57,7 +53,7 @@ BuildRequires: libXmu-devel BuildRequires: xorg-x11-xtrans-devel libXext-devel BuildRequires: libXrandr-devel >= 1.2.0 BuildRequires: xorg-x11-util-macros libXxf86vm-devel libXrandr-devel -BuildRequires: libXrender-devel libXi-devel libXt-devel libXaw-devel +BuildRequires: libXrender-devel libXi-devel libXt-devel BuildRequires: libXpm-devel libXxf86misc-devel BuildRequires: zlib-devel # ENDNOTE @@ -72,7 +68,7 @@ Requires: libXrandr >= 1.2.0 Provides: iceauth rgb sessreg xcmsdb xgamma xhost Provides: xmodmap xrandr xrdb xrefresh xset xsetmode xsetpointer -Provides: xsetroot xstdcmap xvidtune +Provides: xsetroot xstdcmap %description A collection of utilities used to tweak and query the runtime configuration @@ -89,12 +85,11 @@ Utility to perform keystone adjustments %endif %prep -%setup -q -c %{name}-%{version} -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 +%setup -q -c %{name}-%{version} -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 %patch1100 -p0 -b .datadir-rgbpath-fix %patch1200 -p0 -b .xprint #%patch1700 -p0 -b .datadir-app-defaults-fix -%patch1700 -p1 -b .buffer-stomp %build @@ -117,13 +112,6 @@ Utility to perform keystone adjustments autoconf %configure ;; - xvidtune-*) - # FIXME: run autotools junk to kick in our patch - aclocal --force - automake -f - autoconf - %configure - ;; *) %configure ;; @@ -173,10 +161,8 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xsetpointer %{_bindir}/xsetroot %{_bindir}/xstdcmap -%{_bindir}/xvidtune %dir %{_datadir}/X11 %{_datadir}/X11/rgb.txt -%{_datadir}/X11/app-defaults/Xvidtune %{_mandir}/man1/iceauth.1* %{_mandir}/man1/sessreg.1* %{_mandir}/man1/showrgb.1* @@ -192,7 +178,6 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xsetpointer.1* %{_mandir}/man1/xsetroot.1* %{_mandir}/man1/xstdcmap.1* -%{_mandir}/man1/xvidtune.1* %if %{with_xkeystone} %files -n xkeystone @@ -201,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-8 +- Drop xvidtune, move it to -apps to isolate libXaw deps + * Thu Feb 26 2009 Fedora Release Engineering - 7.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- xvidtune-1.0.1-buffer-stomp.patch DELETED --- From mbarnes at fedoraproject.org Thu Jul 2 20:22:07 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 20:22:07 +0000 (UTC) Subject: rpms/evolution/devel evolution-2.27.3-pst-import.patch, NONE, 1.1 evolution.spec, 1.397, 1.398 Message-ID: <20090702202207.388C411C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13923 Modified Files: evolution.spec Added Files: evolution-2.27.3-pst-import.patch Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). - Add patch to build pst-import plugin against current libpst. evolution-2.27.3-pst-import.patch: --- NEW FILE evolution-2.27.3-pst-import.patch --- diff -up evolution-2.27.3/plugins/pst-import/pst-importer.c.pst-import evolution-2.27.3/plugins/pst-import/pst-importer.c --- evolution-2.27.3/plugins/pst-import/pst-importer.c.pst-import 2009-06-12 10:54:40.000000000 -0400 +++ evolution-2.27.3/plugins/pst-import/pst-importer.c 2009-07-02 16:18:08.000000000 -0400 @@ -66,7 +66,6 @@ #include #include -#include #include #include @@ -75,8 +74,8 @@ typedef struct _PstImporter PstImporter; gint pst_init (pst_file *pst, gchar *filename); gchar *get_pst_rootname (pst_file *pst, gchar *filename); static void pst_error_msg (const gchar *fmt, ...); -static void pst_import_folders (PstImporter *m, pst_desc_ll *topitem); -static void pst_process_item (PstImporter *m, pst_desc_ll *d_ptr); +static void pst_import_folders (PstImporter *m, pst_desc_tree *topitem); +static void pst_process_item (PstImporter *m, pst_desc_tree *d_ptr); static void pst_process_folder (PstImporter *m, pst_item *item); static void pst_process_email (PstImporter *m, pst_item *item); static void pst_process_contact (PstImporter *m, pst_item *item); @@ -89,7 +88,6 @@ gchar *foldername_to_utf8 (const gchar * gchar *string_to_utf8(const gchar *string); void contact_set_date (EContact *contact, EContactField id, FILETIME *date); struct icaltimetype get_ical_date (FILETIME *date, gboolean is_date); -gchar *rfc2445_datetime_format (FILETIME *ft); gboolean org_credativ_evolution_readpst_supported (EPlugin *epl, EImportTarget *target); GtkWidget *org_credativ_evolution_readpst_getwidget (EImport *ei, EImportTarget *target, EImportImporter *im); @@ -449,7 +447,7 @@ pst_import_file (PstImporter *m) gint ret; gchar *filename; pst_item *item = NULL; - pst_desc_ll *d_ptr; + pst_desc_tree *d_ptr; filename = g_filename_from_uri (((EImportTargetURI *)m->target)->uri_src, NULL, NULL); m->parent_uri = g_strdup (((EImportTargetURI *)m->target)->uri_dest); /* Destination folder, was set in our widget */ @@ -472,7 +470,7 @@ pst_import_file (PstImporter *m) camel_operation_progress_count (NULL, 1); - if ((item = pst_parse_item (&m->pst, m->pst.d_head)) == NULL) { + if ((item = pst_parse_item (&m->pst, m->pst.d_head, NULL)) == NULL) { pst_error_msg ("Could not get root record"); return; } @@ -496,9 +494,9 @@ pst_import_file (PstImporter *m) } static void -pst_import_folders (PstImporter *m, pst_desc_ll *topitem) +pst_import_folders (PstImporter *m, pst_desc_tree *topitem) { - pst_desc_ll *d_ptr; + pst_desc_tree *d_ptr; gchar *seperator; d_ptr = topitem->child; @@ -540,14 +538,14 @@ pst_import_folders (PstImporter *m, pst_ } static void -pst_process_item (PstImporter *m, pst_desc_ll *d_ptr) +pst_process_item (PstImporter *m, pst_desc_tree *d_ptr) { pst_item *item = NULL; if (d_ptr->desc == NULL) return; - item = pst_parse_item (&m->pst, d_ptr); + item = pst_parse_item (&m->pst, d_ptr, NULL); if (item == NULL) return; @@ -560,7 +558,7 @@ pst_process_item (PstImporter *m, pst_de if (item->folder != NULL) { pst_process_folder (m, item); - camel_operation_start (NULL, _("Importing `%s'"), item->file_as); + camel_operation_start (NULL, _("Importing `%s'"), item->file_as.str); } else { if (m->folder_count && (m->current_item < m->folder_count)) { camel_operation_progress (NULL, (m->current_item * 100) / m->folder_count); @@ -661,10 +659,10 @@ pst_process_folder (PstImporter *m, pst_ g_free (m->folder_name); g_free (m->folder_uri); - if (item->file_as != NULL) { - m->folder_name = foldername_to_utf8 (item->file_as); + if (item->file_as.str != NULL) { + m->folder_name = foldername_to_utf8 (item->file_as.str); } else { - g_critical ("Folder: No name! item->file_as=%s", item->file_as); + g_critical ("Folder: No name! item->file_as=%s", item->file_as.str); m->folder_name = g_strdup ("unknown_name"); } @@ -676,7 +674,7 @@ pst_process_folder (PstImporter *m, pst_ m->folder = NULL; } - m->folder_count = item->folder->email_count; + m->folder_count = item->folder->item_count; m->current_item = 0; } @@ -737,22 +735,22 @@ attachment_to_part (PstImporter *m, pst_ part = camel_mime_part_new (); - if (attach->filename2 || attach->filename1) { - camel_mime_part_set_filename (part, (attach->filename2 ? attach->filename2 : attach->filename1)); + if (attach->filename2.str || attach->filename1.str) { + camel_mime_part_set_filename (part, (attach->filename2.str ? attach->filename2.str : attach->filename1.str)); camel_mime_part_set_disposition (part, "attachment"); camel_mime_part_set_encoding (part, CAMEL_TRANSFER_ENCODING_BASE64); } else { camel_mime_part_set_disposition (part, "inline"); } - if (attach->mimetype != NULL) { - mimetype = attach->mimetype; + if (attach->mimetype.str != NULL) { + mimetype = attach->mimetype.str; } else { mimetype = "application/octet-stream"; } - if (attach->data != NULL) { - camel_mime_part_set_content (part, attach->data, strlen (attach->data), mimetype); + if (attach->data.data != NULL) { + camel_mime_part_set_content (part, attach->data.data, strlen (attach->data.data), mimetype); } else { gchar *buf = NULL; gsize size; @@ -773,21 +771,23 @@ pst_process_email (PstImporter *m, pst_i CamelMultipart *mp; CamelMimePart *part; CamelMessageInfo *info; + pst_item_attach *attach; if (m->folder == NULL) { pst_create_folder (m); + } camel_folder_freeze (m->folder); msg = camel_mime_message_new (); - if (item->email->subject != NULL) { + if (item->subject.str != NULL) { gchar *subj; - subj = string_to_utf8 (item->email->subject->subj); + subj = string_to_utf8 (item->subject.str); if (subj == NULL) { - g_warning ("Could not convert email subject to utf8: %s", item->email->subject->subj); + g_warning ("Could not convert email subject to utf8: %s", item->subject.str); camel_mime_message_set_subject (msg, "(lost subject)"); } else { camel_mime_message_set_subject (msg, subj); @@ -797,12 +797,12 @@ pst_process_email (PstImporter *m, pst_i addr = camel_internet_address_new (); - if (item->email->outlook_sender_name != NULL && item->email->outlook_sender != NULL) { - camel_internet_address_add (addr, item->email->outlook_sender_name, item->email->outlook_sender); - } else if (item->email->outlook_sender_name != NULL) { - camel_address_decode (CAMEL_ADDRESS (addr), item->email->outlook_sender_name); - } else if (item->email->outlook_sender != NULL) { - camel_address_decode (CAMEL_ADDRESS (addr), item->email->outlook_sender); + if (item->email->outlook_sender_name.str != NULL && item->email->outlook_sender.str != NULL) { + camel_internet_address_add (addr, item->email->outlook_sender_name.str, item->email->outlook_sender.str); + } else if (item->email->outlook_sender_name.str != NULL) { + camel_address_decode (CAMEL_ADDRESS (addr), item->email->outlook_sender_name.str); + } else if (item->email->outlook_sender.str != NULL) { + camel_address_decode (CAMEL_ADDRESS (addr), item->email->outlook_sender.str); } else { /* Evo prints a warning if no from is set, so supply an empty address */ camel_internet_address_add (addr, "", ""); @@ -812,38 +812,38 @@ pst_process_email (PstImporter *m, pst_i camel_object_unref (addr); if (item->email->sent_date != NULL) { - camel_mime_message_set_date (msg, fileTimeToUnixTime (item->email->sent_date, 0), 0); + camel_mime_message_set_date (msg, pst_fileTimeToUnixTime (item->email->sent_date), 0); } - if (item->email->messageid != NULL) { - camel_mime_message_set_message_id (msg, item->email->messageid); + if (item->email->messageid.str != NULL) { + camel_mime_message_set_message_id (msg, item->email->messageid.str); } - if (item->email->header != NULL) { + if (item->email->header.str != NULL) { /* Use mime parser to read headers */ CamelStream *stream; /*g_debug (" Email headers length=%zd", strlen (item->email->header));*/ /*g_message (" Email headers... %s...", item->email->header);*/ - stream = camel_stream_mem_new_with_buffer (item->email->header, strlen (item->email->header)); + stream = camel_stream_mem_new_with_buffer (item->email->header.str, strlen (item->email->header.str)); if (camel_data_wrapper_construct_from_stream ((CamelDataWrapper *)msg, stream) == -1) g_warning ("Error reading headers, skipped"); } else { - if (item->email->sentto_address != NULL) { + if (item->email->sentto_address.str != NULL) { addr = camel_internet_address_new (); - if (camel_address_decode (CAMEL_ADDRESS (addr), item->email->sentto_address) > 0); + if (camel_address_decode (CAMEL_ADDRESS (addr), item->email->sentto_address.str) > 0) camel_mime_message_set_recipients (msg, "To", addr); camel_object_unref (addr); } - if (item->email->cc_address != NULL) { + if (item->email->cc_address.str != NULL) { addr = camel_internet_address_new (); - if (camel_address_decode (CAMEL_ADDRESS (addr), item->email->cc_address) > 0); + if (camel_address_decode (CAMEL_ADDRESS (addr), item->email->cc_address.str) > 0) camel_mime_message_set_recipients (msg, "CC", addr); camel_object_unref (addr); @@ -856,11 +856,11 @@ pst_process_email (PstImporter *m, pst_i camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (mp), "multipart/mixed"); - } else if (item->email->htmlbody && item->email->body) { + } else if (item->email->htmlbody.str && item->body.str) { camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (mp), "multipart/alternate"); - } else if (item->email->htmlbody) { + } else if (item->email->htmlbody.str) { camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (mp), "text/html"); @@ -868,62 +868,56 @@ pst_process_email (PstImporter *m, pst_i camel_multipart_set_boundary (mp, NULL); - if (item->email->body != NULL) { + if (item->body.str != NULL) { /* Read internet headers */ /*g_debug (" Email body length=%zd", strlen (item->email->body)); g_message (" Email body %100s...", item->email->body);*/ part = camel_mime_part_new (); - camel_mime_part_set_content (part, item->email->body, strlen (item->email->body), "text/plain"); + camel_mime_part_set_content (part, item->body.str, strlen (item->body.str), "text/plain"); camel_multipart_add_part (mp, part); camel_object_unref (part); } - if (item->email->htmlbody != NULL) { + if (item->email->htmlbody.str != NULL) { /*g_debug (" HTML body length=%zd", strlen (item->email->htmlbody));*/ part = camel_mime_part_new (); - camel_mime_part_set_content (part, item->email->htmlbody, strlen (item->email->htmlbody), "text/html"); + camel_mime_part_set_content (part, item->email->htmlbody.str, strlen (item->email->htmlbody.str), "text/html"); camel_multipart_add_part (mp, part); camel_object_unref (part); } - item->current_attach = item->attach; - - while (item->current_attach != NULL) { - pst_item_attach *attach; - - attach = item->current_attach; - part = attachment_to_part(m, attach); - - camel_multipart_add_part (mp, part); - camel_object_unref (part); - - item->current_attach = item->current_attach->next; + for (attach = item->attach; attach; attach = attach->next) { + if (attach->data.data || attach->i_id) { + part = attachment_to_part(m, attach); + camel_multipart_add_part (mp, part); + camel_object_unref (part); + } } /*camel_mime_message_dump (msg, TRUE);*/ - if (item->email->htmlbody || item->attach) { + if (item->email->htmlbody.str || item->attach) { camel_medium_set_content_object (CAMEL_MEDIUM (msg), CAMEL_DATA_WRAPPER (mp)); - } else if (item->email->body) { - camel_mime_part_set_content (CAMEL_MIME_PART (msg), item->email->body, strlen (item->email->body), "text/plain"); + } else if (item->body.str) { + camel_mime_part_set_content (CAMEL_MIME_PART (msg), item->body.str, strlen (item->body.str), "text/plain"); } else { g_warning ("Email without body. Subject:%s", - (item->email->subject->subj ? item->email->subject->subj : "(empty)")); + (item->subject.str ? item->subject.str : "(empty)")); camel_mime_part_set_content (CAMEL_MIME_PART (msg), "\n", 1, "text/plain"); } info = camel_message_info_new (NULL); /* Read message flags (see comments in libpst.c */ - if(item->email->flag && 0x01) + if(item->flags && 0x01) camel_message_info_set_flags (info, CAMEL_MESSAGE_SEEN, ~0); if(item->email->importance == 2) camel_message_info_set_flags (info, CAMEL_MESSAGE_FLAGGED, ~0); - if(item->email->flag && 0x08) + if(item->flags && 0x08) camel_message_info_set_flags (info, CAMEL_MESSAGE_DRAFT, ~0); camel_folder_append_message (m->folder, msg, info, NULL, &m->ex); @@ -1003,7 +997,7 @@ contact_set_date (EContact *contact, ECo EContactDate *bday; bday = e_contact_date_new (); - t1 = fileTimeToUnixTime (date, 0); + t1 = pst_fileTimeToUnixTime (date); gmtime_r (&t1, &tm); bday->year = tm.tm_year + 1900; @@ -1026,84 +1020,84 @@ pst_process_contact (PstImporter *m, pst ec = e_contact_new (); /* pst's fullname field only contains first, middle, surname */ - if (c->display_name_prefix || c->suffix) { + if (c->display_name_prefix.str || c->suffix.str) { GString *name = g_string_sized_new (128); - if (c->display_name_prefix) { - g_string_assign (name, c->display_name_prefix); + if (c->display_name_prefix.str) { + g_string_assign (name, c->display_name_prefix.str); } - if (c->first_name) { - g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->first_name); + if (c->first_name.str) { + g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->first_name.str); } - if (c->middle_name) { - g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->middle_name); + if (c->middle_name.str) { + g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->middle_name.str); } - if (c->surname) { - g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->surname); + if (c->surname.str) { + g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->surname.str); } - if (c->suffix) { - g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->suffix); + if (c->suffix.str) { + g_string_append_printf (name, "%s%s", (name->len ? " " : ""), c->suffix.str); } contact_set_string (ec, E_CONTACT_FULL_NAME, name->str); g_string_free (name, TRUE); } else { - contact_set_string (ec, E_CONTACT_FULL_NAME, c->fullname); + contact_set_string (ec, E_CONTACT_FULL_NAME, c->fullname.str); } /* unknown_field (ec, notes, "initials", c->initials); */ - contact_set_string (ec, E_CONTACT_NICKNAME, c->nickname); + contact_set_string (ec, E_CONTACT_NICKNAME, c->nickname.str); - contact_set_string (ec, E_CONTACT_ORG, c->company_name); - contact_set_string (ec, E_CONTACT_ORG_UNIT, c->department); - contact_set_string (ec, E_CONTACT_TITLE, c->job_title); + contact_set_string (ec, E_CONTACT_ORG, c->company_name.str); + contact_set_string (ec, E_CONTACT_ORG_UNIT, c->department.str); + contact_set_string (ec, E_CONTACT_TITLE, c->job_title.str); contact_set_address (ec,E_CONTACT_ADDRESS_WORK, - c->business_address, c->business_city, c->business_country, - c->business_po_box, c->business_postal_code, c->business_state, c->business_street); + c->business_address.str, c->business_city.str, c->business_country.str, + c->business_po_box.str, c->business_postal_code.str, c->business_state.str, c->business_street.str); contact_set_address (ec,E_CONTACT_ADDRESS_HOME, - c->home_address, c->home_city, c->home_country, - c->home_po_box, c->home_postal_code, c->home_state, c->home_street); + c->home_address.str, c->home_city.str, c->home_country.str, + c->home_po_box.str, c->home_postal_code.str, c->home_state.str, c->home_street.str); contact_set_address (ec,E_CONTACT_ADDRESS_OTHER, - c->other_address, c->other_city, c->other_country, - c->other_po_box, c->other_postal_code, c->other_state, c->other_street); + c->other_address.str, c->other_city.str, c->other_country.str, + c->other_po_box.str, c->other_postal_code.str, c->other_state.str, c->other_street.str); - contact_set_string (ec, E_CONTACT_PHONE_ASSISTANT, c->assistant_phone); - contact_set_string (ec, E_CONTACT_PHONE_BUSINESS_FAX, c->business_fax); - contact_set_string (ec, E_CONTACT_PHONE_BUSINESS, c->business_phone); - contact_set_string (ec, E_CONTACT_PHONE_BUSINESS_2, c->business_phone2); - contact_set_string (ec, E_CONTACT_PHONE_CALLBACK, c->callback_phone); - contact_set_string (ec, E_CONTACT_PHONE_CAR, c->car_phone); - contact_set_string (ec, E_CONTACT_PHONE_COMPANY, c->company_main_phone); - contact_set_string (ec, E_CONTACT_PHONE_HOME_FAX, c->home_fax); - contact_set_string (ec, E_CONTACT_PHONE_HOME, c->home_phone); - contact_set_string (ec, E_CONTACT_PHONE_HOME_2, c->home_phone2); - contact_set_string (ec, E_CONTACT_PHONE_ISDN, c->isdn_phone); - contact_set_string (ec, E_CONTACT_PHONE_MOBILE, c->mobile_phone); - contact_set_string (ec, E_CONTACT_PHONE_OTHER_FAX, c->primary_fax); /* ? */ - contact_set_string (ec, E_CONTACT_PHONE_PAGER, c->pager_phone); - contact_set_string (ec, E_CONTACT_PHONE_PRIMARY, c->primary_phone); - contact_set_string (ec, E_CONTACT_PHONE_RADIO, c->radio_phone); - contact_set_string (ec, E_CONTACT_PHONE_TTYTDD, c->ttytdd_phone); - contact_set_string (ec, E_CONTACT_PHONE_TELEX, c->telex); - unknown_field (ec, notes, "account_name", c->account_name); + contact_set_string (ec, E_CONTACT_PHONE_ASSISTANT, c->assistant_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_BUSINESS_FAX, c->business_fax.str); + contact_set_string (ec, E_CONTACT_PHONE_BUSINESS, c->business_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_BUSINESS_2, c->business_phone2.str); + contact_set_string (ec, E_CONTACT_PHONE_CALLBACK, c->callback_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_CAR, c->car_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_COMPANY, c->company_main_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_HOME_FAX, c->home_fax.str); + contact_set_string (ec, E_CONTACT_PHONE_HOME, c->home_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_HOME_2, c->home_phone2.str); + contact_set_string (ec, E_CONTACT_PHONE_ISDN, c->isdn_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_MOBILE, c->mobile_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_OTHER_FAX, c->primary_fax.str); /* ? */ + contact_set_string (ec, E_CONTACT_PHONE_PAGER, c->pager_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_PRIMARY, c->primary_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_RADIO, c->radio_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_TTYTDD, c->ttytdd_phone.str); + contact_set_string (ec, E_CONTACT_PHONE_TELEX, c->telex.str); + unknown_field (ec, notes, "account_name", c->account_name.str); contact_set_date (ec, E_CONTACT_ANNIVERSARY, c->wedding_anniversary); - contact_set_string (ec, E_CONTACT_ASSISTANT, c->assistant_name); - unknown_field (ec, notes, "billing_information", c->billing_information); + contact_set_string (ec, E_CONTACT_ASSISTANT, c->assistant_name.str); + unknown_field (ec, notes, "billing_information", c->billing_information.str); contact_set_date (ec, E_CONTACT_BIRTH_DATE, c->birthday); /* contact_set_string (ec, E_CONTACT_CATEGORIES, c->??); */ - contact_set_string (ec, E_CONTACT_EMAIL_1 , c->address1); - contact_set_string (ec, E_CONTACT_EMAIL_2 , c->address2); - contact_set_string (ec, E_CONTACT_EMAIL_3 , c->address3); + contact_set_string (ec, E_CONTACT_EMAIL_1 , c->address1.str); + contact_set_string (ec, E_CONTACT_EMAIL_2 , c->address2.str); + contact_set_string (ec, E_CONTACT_EMAIL_3 , c->address3.str); /*unknown_field (ec, notes, "address1_desc" , c->address1_desc); unknown_field (ec, notes, "address1_transport" , c->address1_transport); @@ -1115,43 +1109,43 @@ pst_process_contact (PstImporter *m, pst /*unknown_field (ec, notes, "def_postal_address", c->def_postal_address);*/ /* unknown_field (ec, ??, c->gender); */ - unknown_field (ec, notes, "access_method", c->access_method); - unknown_field (ec, notes, "gov_id", c->gov_id); - unknown_field (ec, notes, "customer_id", c->customer_id); - unknown_field (ec, notes, "hobbies", c->hobbies); - unknown_field (ec, notes, "followup", c->followup); + unknown_field (ec, notes, "access_method", c->access_method.str); + unknown_field (ec, notes, "gov_id", c->gov_id.str); + unknown_field (ec, notes, "customer_id", c->customer_id.str); + unknown_field (ec, notes, "hobbies", c->hobbies.str); + unknown_field (ec, notes, "followup", c->followup.str); - contact_set_string (ec, E_CONTACT_FREEBUSY_URL , c->free_busy_address); + contact_set_string (ec, E_CONTACT_FREEBUSY_URL , c->free_busy_address.str); - unknown_field (ec, notes, "keyword", c->keyword); - unknown_field (ec, notes, "language", c->language); - unknown_field (ec, notes, "location", c->location); - contact_set_string (ec, E_CONTACT_OFFICE, c->office_loc); - unknown_field (ec, notes, "computer_name", c->computer_name); - unknown_field (ec, notes, "ftp_site", c->ftp_site); + unknown_field (ec, notes, "keyword", c->keyword.str); + unknown_field (ec, notes, "language", c->language.str); + unknown_field (ec, notes, "location", c->location.str); + contact_set_string (ec, E_CONTACT_OFFICE, c->office_loc.str); + unknown_field (ec, notes, "computer_name", c->computer_name.str); + unknown_field (ec, notes, "ftp_site", c->ftp_site.str); - contact_set_string (ec, E_CONTACT_MANAGER , c->manager_name); - unknown_field (ec, notes, "mileage", c->mileage); - unknown_field (ec, notes, "org_id", c->org_id); - contact_set_string (ec, E_CONTACT_ROLE, c->profession); + contact_set_string (ec, E_CONTACT_MANAGER , c->manager_name.str); + unknown_field (ec, notes, "mileage", c->mileage.str); + unknown_field (ec, notes, "org_id", c->org_id.str); + contact_set_string (ec, E_CONTACT_ROLE, c->profession.str); - contact_set_string (ec, E_CONTACT_SPOUSE , c->spouse_name); + contact_set_string (ec, E_CONTACT_SPOUSE , c->spouse_name.str); - if (c->personal_homepage) { - contact_set_string (ec, E_CONTACT_HOMEPAGE_URL , c->personal_homepage); - if (c->business_homepage) { - unknown_field (ec, notes, "business_homepage", c->business_homepage); + if (c->personal_homepage.str) { + contact_set_string (ec, E_CONTACT_HOMEPAGE_URL , c->personal_homepage.str); + if (c->business_homepage.str) { + unknown_field (ec, notes, "business_homepage", c->business_homepage.str); } - } else if (c->business_homepage) { - contact_set_string (ec, E_CONTACT_HOMEPAGE_URL , c->business_homepage); + } else if (c->business_homepage.str) { + contact_set_string (ec, E_CONTACT_HOMEPAGE_URL , c->business_homepage.str); } - if (item->comment) { - g_string_append_printf (notes, "%s\n", item->comment); + if (item->comment.str) { + g_string_append_printf (notes, "%s\n", item->comment.str); } - if (item->email && item->email->body) { - g_string_append_printf (notes, "%s\n", item->email->body); + if (item->email && item->body.str) { + g_string_append_printf (notes, "%s\n", item->body.str); } contact_set_string (ec, E_CONTACT_NOTE, notes->str); @@ -1174,26 +1168,13 @@ get_ical_date (FILETIME *date, gboolean if (date && (date->dwLowDateTime || date->dwHighDateTime) ) { time_t t; - t = fileTimeToUnixTime (date, 0); + t = pst_fileTimeToUnixTime (date); return icaltime_from_timet_with_zone (t, is_date, NULL); } else { return icaltime_null_date (); } } -gchar *rfc2445_datetime_format (FILETIME *ft) { - static gchar * buffer = NULL; - struct tm *stm = NULL; - - if (buffer == NULL) { - buffer = malloc (30); // should be enough - } - - stm = fileTimeToStructTM (ft); - strftime (buffer, 30, "%Y%m%dT%H%M%SZ", stm); - return buffer; -} - static void set_cal_attachments (ECal *cal, ECalComponent *ec, PstImporter *m, pst_item_attach *attach) { @@ -1315,19 +1296,19 @@ fill_calcomponent (PstImporter *m, pst_i } if (e) { - if (e->subject || e->proc_subject) { - if (e->subject) { - text.value = e->subject->subj; - } else if (e->proc_subject) { - text.value = e->proc_subject; + if (item->subject.str || e->processed_subject.str) { + if (item->subject.str) { + text.value = item->subject.str; + } else if (e->processed_subject.str) { + text.value = e->processed_subject.str; } text.altrep = NULL; /* email->proc_subject? */ e_cal_component_set_summary (ec, &text); } - if (e->body) { + if (item->body.str) { GSList l; - text.value = e->body; + text.value = item->body.str; text.altrep = NULL; l.data = &text; l.next = NULL; @@ -1337,8 +1318,8 @@ fill_calcomponent (PstImporter *m, pst_i g_warning ("%s without subject / body!", type); } - if (a->location) { - e_cal_component_set_location (ec, a->location); + if (a->location.str) { + e_cal_component_set_location (ec, a->location.str); } if (a->start) { @@ -1405,7 +1386,7 @@ fill_calcomponent (PstImporter *m, pst_i } if (a->alarm) { - if (a->alarm_filename) { + if (a->alarm_filename.str) { e_cal_component_alarm_set_action (alarm, E_CAL_COMPONENT_ALARM_AUDIO); } else { e_cal_component_alarm_set_action (alarm, E_CAL_COMPONENT_ALARM_DISPLAY); @@ -1417,7 +1398,7 @@ fill_calcomponent (PstImporter *m, pst_i } - if (a->recurrence != PST_APP_RECUR_NONE) { + if (a->recurrence.str != PST_APP_RECUR_NONE) { struct icalrecurrencetype r; GSList recur_list; @@ -1706,7 +1687,6 @@ pst_init (pst_file *pst, gchar *filename DEBUG_REGISTER_CLOSE (); #endif - DEBUG_ENT ("main"); if (pst_open (pst, filename) < 0) { pst_error_msg ("Error opening PST file %s", filename); return -1; @@ -1737,7 +1717,7 @@ get_pst_rootname (pst_file *pst, gchar * pst_item *item = NULL; gchar *rootname = NULL; - if ((item = pst_parse_item (pst, pst->d_head)) == NULL) { + if ((item = pst_parse_item (pst, pst->d_head, NULL)) == NULL) { pst_error_msg ("Could not get root record"); return NULL; } @@ -1749,14 +1729,14 @@ get_pst_rootname (pst_file *pst, gchar * } /* default the file_as to the same as the main filename if it doesn't exist */ - if (item->file_as == NULL) { + if (item->file_as.str == NULL) { if (filename == NULL) { pst_freeItem (item); return NULL; } rootname = g_path_get_basename (filename); } else { - rootname = g_strdup (item->file_as); + rootname = g_strdup (item->file_as.str); } pst_freeItem (item); Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.397 retrieving revision 1.398 diff -u -p -r1.397 -r1.398 --- evolution.spec 2 Jul 2009 19:31:09 -0000 1.397 +++ evolution.spec 2 Jul 2009 20:22:06 -0000 1.398 @@ -68,6 +68,9 @@ Patch12: evolution-2.9.1-im-context-rese # Support for building Anjal. Patch13: evolution-2.27.3-anjal-support.patch +# Let the pst-import plugin work with current libpst. +Patch14: evolution-2.27.3-pst-import.patch + ## Dependencies ### Requires(post): GConf2 @@ -226,6 +229,7 @@ This package contains supplemental utili %patch11 -p1 -b .fix-conduit-dir %patch12 -p1 -b .im-context-reset %patch13 -p1 -b .anjal-support +%patch14 -p1 -b .pst-import mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -675,6 +679,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). +- Add patch to build pst-import plugin against current libpst. * Wed Jul 01 2009 Milan Crha - 2.27.3-3.fc12 - Rebuild against newer gcc From nsantos at fedoraproject.org Thu Jul 2 20:34:39 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 20:34:39 +0000 (UTC) Subject: rpms/qpidc/devel .cvsignore, 1.20, 1.21 qpidc.spec, 1.89, 1.90 sources, 1.41, 1.42 Message-ID: <20090702203439.40A5511C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16930 Modified Files: .cvsignore qpidc.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/qpidc/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 26 Jun 2009 21:05:06 -0000 1.20 +++ .cvsignore 2 Jul 2009 20:34:38 -0000 1.21 @@ -1 +1 @@ -qpidc-0.5.788782.tar.gz +qpidc-0.5.790661.tar.gz Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/devel/qpidc.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- qpidc.spec 29 Jun 2009 18:06:52 -0000 1.89 +++ qpidc.spec 2 Jul 2009 20:34:38 -0000 1.90 @@ -8,7 +8,7 @@ %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')} Name: qpidc -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries @@ -284,10 +284,10 @@ LANG=C ECHO=echo make check %files %defattr(-,root,root,-) %doc LICENSE NOTICE README INSTALL RELEASE_NOTES DESIGN -%_libdir/libqpidcommon.so.0 -%_libdir/libqpidcommon.so.0.1.0 -%_libdir/libqpidclient.so.0 -%_libdir/libqpidclient.so.0.1.0 +%_libdir/libqpidcommon.so.2 +%_libdir/libqpidcommon.so.2.0.0 +%_libdir/libqpidclient.so.2 +%_libdir/libqpidclient.so.2.0.0 %dir %_libdir/qpid %dir %_libdir/qpid/client %dir %_sysconfdir/qpid @@ -313,8 +313,8 @@ LANG=C ECHO=echo make check %files -n qpidd %defattr(-,root,root,-) %_datadir/selinux/packages/qpidd.pp -%_libdir/libqpidbroker.so.0 -%_libdir/libqpidbroker.so.0.1.0 +%_libdir/libqpidbroker.so.2 +%_libdir/libqpidbroker.so.2.0.0 %_libdir/qpid/daemon/replicating_listener.so %_libdir/qpid/daemon/replication_exchange.so %_sbindir/qpidd @@ -335,12 +335,12 @@ LANG=C ECHO=echo make check %files -n qmf %defattr(-,root,root,-) -%_libdir/libqmfcommon.so.0 -%_libdir/libqmfcommon.so.0.1.0 -%_libdir/libqmfagent.so.0 -%_libdir/libqmfagent.so.0.1.0 -%_libdir/libqmfconsole.so.0 -%_libdir/libqmfconsole.so.0.1.0 +%_libdir/libqmfcommon.so.2 +%_libdir/libqmfcommon.so.2.0.0 +%_libdir/libqmfagent.so.2 +%_libdir/libqmfagent.so.2.0.0 +%_libdir/libqmfconsole.so.2 +%_libdir/libqmfconsole.so.2.0.0 %files -n qmf-devel %defattr(-,root,root,-) @@ -372,8 +372,8 @@ LANG=C ECHO=echo make check %files ssl %defattr(-,root,root,-) -%_libdir/libsslcommon.so.0 -%_libdir/libsslcommon.so.0.1.0 +%_libdir/libsslcommon.so.2 +%_libdir/libsslcommon.so.2.0.0 %_libdir/qpid/client/sslconnector.so %files -n qpidd-ssl @@ -439,6 +439,9 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661; .so lib numbers bumped + * Fri Jun 26 2009 Nuno Santos - 0.5.788782-1 - Rebased to svn rev 788782 @@ -455,7 +458,7 @@ fi - add patch to port Cluster/Cpg to newest Cpg code. - change patch tag to use patch0. -* Mon May 4 2009 Nuno Santos - 0.5.752600-6 +* Mon May 4 2009 Nuno Santos - 0.5.752600-5 - patch for SASL credentials refresh * Wed Apr 1 2009 Michael Schwendt - 0.5.752600-5 Index: sources =================================================================== RCS file: /cvs/extras/rpms/qpidc/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 26 Jun 2009 21:05:06 -0000 1.41 +++ sources 2 Jul 2009 20:34:39 -0000 1.42 @@ -1 +1 @@ -d8dd2ea1638120a4318520096028ab2b qpidc-0.5.788782.tar.gz +9b26e5ac89277664525a78fb49a20dfd qpidc-0.5.790661.tar.gz From ebaron at fedoraproject.org Thu Jul 2 20:35:20 2009 From: ebaron at fedoraproject.org (Elliott Baron) Date: Thu, 2 Jul 2009 20:35:20 +0000 (UTC) Subject: rpms/eclipse-valgrind/devel eclipse-valgrind-massif-unknown-symbols.patch, NONE, 1.1 eclipse-valgrind.spec, 1.12, 1.13 Message-ID: <20090702203520.C2EDD11C0418@cvs1.fedora.phx.redhat.com> Author: ebaron Update of /cvs/pkgs/rpms/eclipse-valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17026 Modified Files: eclipse-valgrind.spec Added Files: eclipse-valgrind-massif-unknown-symbols.patch Log Message: * Thu Jul 2 2009 Elliott Baron 0.2.1-2 - Fix Massif parsing for unknown symbols (Eclipse#281417). eclipse-valgrind-massif-unknown-symbols.patch: --- NEW FILE eclipse-valgrind-massif-unknown-symbols.patch --- ### Eclipse Workspace Patch 1.0 #P org.eclipse.linuxtools.valgrind.massif Index: src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java =================================================================== --- src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java (revision 22424) +++ src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java (working copy) @@ -188,14 +188,14 @@ int ix = line.lastIndexOf("("); //$NON-NLS-1$ if (ix >= 0) { function = line.substring(line.indexOf(start), ix); - if (function != null) { - function = function.trim(); - } - else { - fail(line); - } } else { + function = line.substring(line.indexOf(start)); + } + if (function != null) { + function = function.trim(); + } + else { fail(line); } Index: src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java =================================================================== --- src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java (revision 22424) +++ src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java (working copy) @@ -30,13 +30,18 @@ StringBuffer nodeText = new StringBuffer(); formatBytes(percent, bytes, nodeText); - nodeText.append(address).append(": "); //$NON-NLS-1$ - nodeText.append(function).append(" "); //$NON-NLS-1$ - nodeText.append("(").append(filename); //$NON-NLS-1$ - if (line > 0) { - nodeText.append(":").append(line);//$NON-NLS-1$ + nodeText.append(address).append(":"); //$NON-NLS-1$ + if (function.length() > 0) { + nodeText.append(" "); //$NON-NLS-1$ + nodeText.append(function); } - nodeText.append(")"); //$NON-NLS-1$ + if (filename != null) { + nodeText.append(" (").append(filename); //$NON-NLS-1$ + if (line > 0) { + nodeText.append(":").append(line);//$NON-NLS-1$ + } + nodeText.append(")"); //$NON-NLS-1$ + } this.percent = percent; this.bytes = bytes; this.address = address; Index: eclipse-valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-valgrind/devel/eclipse-valgrind.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- eclipse-valgrind.spec 8 Jun 2009 14:51:41 -0000 1.12 +++ eclipse-valgrind.spec 2 Jul 2009 20:34:50 -0000 1.13 @@ -8,7 +8,7 @@ Name: eclipse-valgrind Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Valgrind Tools Integration for Eclipse Group: Development/Tools @@ -16,6 +16,7 @@ License: EPL URL: http://www.eclipse.org/linuxtools/projectPages/valgrind Source0: %{name}-fetched-src-%{src_repo_tag}.tar.bz2 Source1: %{name}-fetch-src.sh +Patch0: %{name}-massif-unknown-symbols.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #No CDT on ppc64 @@ -39,6 +40,10 @@ projects using the Valgrind tool suite a %prep %setup -q -n %{name}-fetched-src-%{src_repo_tag} +pushd org.eclipse.linuxtools.valgrind.massif +%patch0 +popd + %build %{eclipse_base}/buildscripts/pdebuild \ -f org.eclipse.linuxtools.valgrind.feature \ @@ -61,6 +66,9 @@ install -d -m 755 %{buildroot}%{install_ %doc org.eclipse.linuxtools.valgrind-feature/epl-v10.html %changelog +* Thu Jul 2 2009 Elliott Baron 0.2.1-2 +- Fix Massif parsing for unknown symbols (Eclipse#281417). + * Mon Jun 8 2009 Elliott Baron 0.2.1-1 - Upstream 0.2.1 release. From ajax at fedoraproject.org Thu Jul 2 20:38:45 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:38:45 +0000 (UTC) Subject: rpms/xorg-x11-utils/devel xorg-x11-utils.spec,1.25,1.26 Message-ID: <20090702203845.7672611C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17810 Modified Files: xorg-x11-utils.spec Log Message: br: libXmu-devel Index: xorg-x11-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-utils/devel/xorg-x11-utils.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-utils.spec 2 Jul 2009 20:16:58 -0000 1.25 +++ xorg-x11-utils.spec 2 Jul 2009 20:38:45 -0000 1.26 @@ -26,6 +26,7 @@ BuildRequires: libXext-devel BuildRequires: libXft-devel BuildRequires: libXi-devel BuildRequires: libXinerama-devel +BuildRequires: libXmu-devel BuildRequires: libXpm-devel BuildRequires: libXt-devel BuildRequires: libXtst-devel From nsantos at fedoraproject.org Thu Jul 2 20:40:48 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 20:40:48 +0000 (UTC) Subject: rpms/ruby-qpid/F-10 .cvsignore, 1.11, 1.12 ruby-qpid.spec, 1.19, 1.20 sources, 1.12, 1.13 Message-ID: <20090702204048.F011111C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18349 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 26 Jun 2009 18:55:02 -0000 1.11 +++ .cvsignore 2 Jul 2009 20:40:48 -0000 1.12 @@ -1 +1 @@ -ruby-qpid-0.5.788782.tar.gz +ruby-qpid-0.5.790661.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/ruby-qpid.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ruby-qpid.spec 26 Jun 2009 18:55:02 -0000 1.19 +++ ruby-qpid.spec 2 Jul 2009 20:40:48 -0000 1.20 @@ -1,5 +1,5 @@ Name: ruby-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Ruby language client for AMQP @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-10/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 26 Jun 2009 18:55:02 -0000 1.12 +++ sources 2 Jul 2009 20:40:48 -0000 1.13 @@ -1 +1 @@ -b52a6224f29576bf9b895a80af75b50e ruby-qpid-0.5.788782.tar.gz +f999b7bd8d9914997e60c995f29d94a5 ruby-qpid-0.5.790661.tar.gz From ebaron at fedoraproject.org Thu Jul 2 20:41:02 2009 From: ebaron at fedoraproject.org (Elliott Baron) Date: Thu, 2 Jul 2009 20:41:02 +0000 (UTC) Subject: rpms/eclipse-valgrind/F-11 eclipse-valgrind-massif-unknown-symbols.patch, NONE, 1.1 eclipse-valgrind.spec, 1.9, 1.10 Message-ID: <20090702204102.0D70011C0418@cvs1.fedora.phx.redhat.com> Author: ebaron Update of /cvs/pkgs/rpms/eclipse-valgrind/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18259 Modified Files: eclipse-valgrind.spec Added Files: eclipse-valgrind-massif-unknown-symbols.patch Log Message: * Thu Jul 2 2009 Elliott Baron 0.2.1-2 - Fix Massif parsing for unknown symbols (Eclipse#281417). eclipse-valgrind-massif-unknown-symbols.patch: --- NEW FILE eclipse-valgrind-massif-unknown-symbols.patch --- ### Eclipse Workspace Patch 1.0 #P org.eclipse.linuxtools.valgrind.massif Index: src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java =================================================================== --- src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java (revision 22424) +++ src/org/eclipse/linuxtools/valgrind/massif/MassifParser.java (working copy) @@ -188,14 +188,14 @@ int ix = line.lastIndexOf("("); //$NON-NLS-1$ if (ix >= 0) { function = line.substring(line.indexOf(start), ix); - if (function != null) { - function = function.trim(); - } - else { - fail(line); - } } else { + function = line.substring(line.indexOf(start)); + } + if (function != null) { + function = function.trim(); + } + else { fail(line); } Index: src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java =================================================================== --- src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java (revision 22424) +++ src/org/eclipse/linuxtools/valgrind/massif/MassifHeapTreeNode.java (working copy) @@ -30,13 +30,18 @@ StringBuffer nodeText = new StringBuffer(); formatBytes(percent, bytes, nodeText); - nodeText.append(address).append(": "); //$NON-NLS-1$ - nodeText.append(function).append(" "); //$NON-NLS-1$ - nodeText.append("(").append(filename); //$NON-NLS-1$ - if (line > 0) { - nodeText.append(":").append(line);//$NON-NLS-1$ + nodeText.append(address).append(":"); //$NON-NLS-1$ + if (function.length() > 0) { + nodeText.append(" "); //$NON-NLS-1$ + nodeText.append(function); } - nodeText.append(")"); //$NON-NLS-1$ + if (filename != null) { + nodeText.append(" (").append(filename); //$NON-NLS-1$ + if (line > 0) { + nodeText.append(":").append(line);//$NON-NLS-1$ + } + nodeText.append(")"); //$NON-NLS-1$ + } this.percent = percent; this.bytes = bytes; this.address = address; Index: eclipse-valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-valgrind/F-11/eclipse-valgrind.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- eclipse-valgrind.spec 8 Jun 2009 19:28:05 -0000 1.9 +++ eclipse-valgrind.spec 2 Jul 2009 20:40:31 -0000 1.10 @@ -8,7 +8,7 @@ Name: eclipse-valgrind Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Valgrind Tools Integration for Eclipse Group: Development/Tools @@ -16,6 +16,7 @@ License: EPL URL: http://www.eclipse.org/linuxtools/projectPages/valgrind Source0: %{name}-fetched-src-%{src_repo_tag}.tar.bz2 Source1: %{name}-fetch-src.sh +Patch0: %{name}-massif-unknown-symbols.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #No CDT on ppc64 @@ -39,6 +40,10 @@ projects using the Valgrind tool suite a %prep %setup -q -n %{name}-fetched-src-%{src_repo_tag} +pushd org.eclipse.linuxtools.valgrind.massif +%patch0 +popd + %build %{eclipse_base}/buildscripts/pdebuild \ -f org.eclipse.linuxtools.valgrind.feature \ @@ -61,6 +66,9 @@ install -d -m 755 %{buildroot}%{install_ %doc org.eclipse.linuxtools.valgrind-feature/epl-v10.html %changelog +* Thu Jul 2 2009 Elliott Baron 0.2.1-2 +- Fix Massif parsing for unknown symbols (Eclipse#281417). + * Mon Jun 8 2009 Elliott Baron 0.2.1-1 - Upstream 0.2.1 release. From ajax at fedoraproject.org Thu Jul 2 20:44:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:44:58 +0000 (UTC) Subject: rpms/xorg-x11-apps/devel xvidtune-1.0.1-buffer-stomp.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 xorg-x11-apps.spec, 1.34, 1.35 Message-ID: <20090702204458.E302211C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19291 Modified Files: .cvsignore sources xorg-x11-apps.spec Added Files: xvidtune-1.0.1-buffer-stomp.patch Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-1 - Add xfd, xfontsel, and xvidtune xvidtune-1.0.1-buffer-stomp.patch: --- NEW FILE xvidtune-1.0.1-buffer-stomp.patch --- --- xorg-x11-apps-7.4/xvidtune-1.0.1/xvidtune.c.jx 2004-04-23 15:55:08.000000000 -0400 +++ xorg-x11-apps-7.4/xvidtune-1.0.1/xvidtune.c 2006-08-04 17:16:17.000000000 -0400 @@ -965,7 +965,7 @@ wids[0] = XtCreateWidget (w1name, labelWidgetClass, form, NULL, 0); if (findex >= PixelClock && findex <= VSyncRate) - (void) sprintf(buf, "%6.2f", (float)AppRes.field[findex].val / 1000.0); + (void) snprintf(buf, 10, "%6.2f", (float)AppRes.field[findex].val / 1000.0); else (void) sprintf (buf, "%5d", AppRes.field[findex].val); wids[1] = XtVaCreateWidget (w2name, labelWidgetClass, Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 22 Jun 2009 00:48:31 -0000 1.14 +++ .cvsignore 2 Jul 2009 20:44:58 -0000 1.15 @@ -16,3 +16,6 @@ xwud-1.0.1.tar.bz2 xconsole-1.0.3.tar.bz2 xmessage-1.0.2.tar.bz2 xinput-1.4.99.1.tar.bz2 +xfd-1.0.1.tar.bz2 +xfontsel-1.0.2.tar.bz2 +xvidtune-1.0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 22 Jun 2009 00:48:32 -0000 1.14 +++ sources 2 Jul 2009 20:44:58 -0000 1.15 @@ -16,3 +16,6 @@ b41ed6b4bcfc9897366c27a94d2bf150 xload- 0e1a3110bebabecc2897d67a973526b0 xconsole-1.0.3.tar.bz2 b4b561ef11fd184989a6062962e86748 xmessage-1.0.2.tar.bz2 4b255aafae9ddd59e10292f8bac5504e xinput-1.4.99.1.tar.bz2 +c72abd90f50ef459bc14b39ec9fcc7f8 xfd-1.0.1.tar.bz2 +288fe4cf8a990e4e602aac16dd9109fb xfontsel-1.0.2.tar.bz2 +e0744594f4e5969b20df28d897781318 xvidtune-1.0.1.tar.bz2 Index: xorg-x11-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/xorg-x11-apps.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xorg-x11-apps.spec 22 Jun 2009 00:48:32 -0000 1.34 +++ xorg-x11-apps.spec 2 Jul 2009 20:44:58 -0000 1.35 @@ -4,8 +4,8 @@ Summary: X.Org X11 applications Name: xorg-x11-%{pkgname} # NOTE: The package version should be set to the X11 major release from which # the OS release is based upon. -Version: 7.3 -Release: 10%{?dist} +Version: 7.4 +Release: 1%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -32,12 +32,15 @@ Source14: ftp://ftp.x.org/pub/individual Source15: ftp://ftp.x.org/pub/individual/app/xmag-1.0.2.tar.bz2 Source16: ftp://ftp.x.org/pub/individual/app/xmessage-1.0.2.tar.bz2 Source17: ftp://ftp.x.org/pub/individual/app/xinput-1.4.99.1.tar.bz2 +Source18: ftp://ftp.x.org/pub/individual/app/xfd-1.0.1.tar.bz2 +Source19: ftp://ftp.x.org/pub/individual/app/xfontsel-1.0.2.tar.bz2 +Source20: ftp://ftp.x.org/pub/individual/app/xvidtune-1.0.1.tar.bz2 Patch0: x11perf-1.4.1-x11perf-datadir-cleanups.patch Patch1: luit-1.0.1-locale.alias-datadir.patch Patch2: xconsole-1.0.3-streams-me-softer.patch +Patch3: xvidtune-1.0.1-buffer-stomp.patch -# FIXME: Temporary dependencies on autotools packages for now BuildRequires: autoconf automake BuildRequires: pkgconfig @@ -64,50 +67,47 @@ Requires(pre): xorg-x11-filesystem >= 0. Provides: luit oclock x11perf xbiff xclipboard xclock xconsole xcursorgen Provides: xeyes xkill xload xlogo xmag xmessage xpr xwd xwud xinput +Provides: xfd xfontsel xvidtune # NOTE: xwd, xwud, luit used to be in these. Obsoletes: XFree86, xorg-x11 # NOTE: x11perf, xclipboard used to be in these. Obsoletes: XFree86-tools, xorg-x11-tools +# Xaw app moves +Conflicts: xorg-x11-utils < 7.4-5.fc12 +Conflicts: xorg-x11-server-utils < 7.4-8.fc12 + %description A collection of common X Window System applications. %prep -%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 +%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 %patch0 -p0 -b .x11perf-datadir-cleanups %patch1 -p0 -b .locale.alias-datadir %patch2 -p0 -b .streams-me-softer +%patch3 -p1 -b .buffer-stomp %build # Build all apps { - for app in * ; do - pushd $app - - case $app in - x11perf*) - aclocal ; automake ; autoconf - ;; - luit*) - autoconf - ;; - esac - - %configure --disable-xprint - make - popd - done +for app in * ; do + pushd $app + autoreconf -v --install + %configure --disable-xprint + make + popd +done } %install rm -rf $RPM_BUILD_ROOT # Install all apps { - for app in * ; do - pushd $app - make install DESTDIR=$RPM_BUILD_ROOT - popd - done +for app in * ; do + pushd $app + make install DESTDIR=$RPM_BUILD_ROOT + popd +done } %clean @@ -128,6 +128,8 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xcutsel %{_bindir}/xdpr %{_bindir}/xeyes +%{_bindir}/xfd +%{_bindir}/xfontsel %{_bindir}/xinput %{_bindir}/xkill %{_bindir}/xload @@ -135,6 +137,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xmag %{_bindir}/xmessage %{_bindir}/xpr +%{_bindir}/xvidtune %{_bindir}/xwd %{_bindir}/xwud %dir %{_datadir}/X11 @@ -143,12 +146,15 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/X11/app-defaults/XClock %{_datadir}/X11/app-defaults/XClock-color %{_datadir}/X11/app-defaults/XConsole +%{_datadir}/X11/app-defaults/XFontSel +%{_datadir}/X11/app-defaults/Xfd %{_datadir}/X11/app-defaults/XLoad %{_datadir}/X11/app-defaults/XLogo %{_datadir}/X11/app-defaults/XLogo-color %{_datadir}/X11/app-defaults/Xmag %{_datadir}/X11/app-defaults/Xmessage %{_datadir}/X11/app-defaults/Xmessage-color +%{_datadir}/X11/app-defaults/Xvidtune %dir %{_datadir}/X11/x11perfcomp %{_datadir}/X11/x11perfcomp/Xmark %{_datadir}/X11/x11perfcomp/fillblnk @@ -168,6 +174,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xcutsel.1* %{_mandir}/man1/xdpr.1* %{_mandir}/man1/xeyes.1* +%{_mandir}/man1/xfd.1* +%{_mandir}/man1/xfontsel.1* %{_mandir}/man1/xinput.1* %{_mandir}/man1/xkill.1* %{_mandir}/man1/xload.1* @@ -175,10 +183,14 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xmag.1* %{_mandir}/man1/xmessage.1* %{_mandir}/man1/xpr.1* +%{_mandir}/man1/xvidtune.1* %{_mandir}/man1/xwd.1* %{_mandir}/man1/xwud.1* %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-1 +- Add xfd, xfontsel, and xvidtune + * Mon Jun 22 2009 Peter Hutterer 7.3-10 - xinput 1.4.99.1 From prajnoha at fedoraproject.org Thu Jul 2 20:45:54 2009 From: prajnoha at fedoraproject.org (Peter Rajnoha) Date: Thu, 2 Jul 2009 20:45:54 +0000 (UTC) Subject: rpms/lvm2/F-11 lvm2-2_02_48-cluster-cpg-new-api-reverse.patch, NONE, 1.1 .cvsignore, 1.65, 1.66 lvm2.spec, 1.157, 1.158 sources, 1.69, 1.70 upstream, 1.58, 1.59 LVM2.2.02.45.tgz.asc, 1.1, NONE lvm2-2_02_46-add-mmc-filter.patch, 1.1, NONE Message-ID: <20090702204554.5AEF611C0418@cvs1.fedora.phx.redhat.com> Author: prajnoha Update of /cvs/pkgs/rpms/lvm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19108 Modified Files: .cvsignore lvm2.spec sources upstream Added Files: lvm2-2_02_48-cluster-cpg-new-api-reverse.patch Removed Files: LVM2.2.02.45.tgz.asc lvm2-2_02_46-add-mmc-filter.patch Log Message: New upstream release with various fixes. lvm2-2_02_48-cluster-cpg-new-api-reverse.patch: --- NEW FILE lvm2-2_02_48-cluster-cpg-new-api-reverse.patch --- --- old/daemons/clvmd/clvmd-corosync.c 2009-06-03 15:42:02.000000000 +0200 +++ new/daemons/clvmd/clvmd-corosync.c 2009-07-02 21:11:40.000000000 +0200 @@ -56,16 +56,16 @@ #define LOCKSPACE_NAME "clvmd" static void cpg_deliver_callback (cpg_handle_t handle, - const struct cpg_name *groupName, + struct cpg_name *groupName, uint32_t nodeid, uint32_t pid, void *msg, - size_t msg_len); + int msg_len); static void cpg_confchg_callback(cpg_handle_t handle, - const struct cpg_name *groupName, - const struct cpg_address *member_list, size_t member_list_entries, - const struct cpg_address *left_list, size_t left_list_entries, - const struct cpg_address *joined_list, size_t joined_list_entries); + struct cpg_name *groupName, + struct cpg_address *member_list, int member_list_entries, + struct cpg_address *left_list, int left_list_entries, + struct cpg_address *joined_list, int joined_list_entries); static void _cluster_closedown(void); /* Hash list of nodes in the cluster */ @@ -206,17 +206,17 @@ } static void cpg_deliver_callback (cpg_handle_t handle, - const struct cpg_name *groupName, + struct cpg_name *groupName, uint32_t nodeid, uint32_t pid, void *msg, - size_t msg_len) + int msg_len) { int target_nodeid; memcpy(&target_nodeid, msg, COROSYNC_CSID_LEN); - DEBUGLOG("%u got message from nodeid %d for %d. len %zd\n", + DEBUGLOG("%u got message from nodeid %d for %d. len %d\n", our_nodeid, nodeid, target_nodeid, msg_len-4); if (nodeid != our_nodeid) @@ -226,15 +226,15 @@ } static void cpg_confchg_callback(cpg_handle_t handle, - const struct cpg_name *groupName, - const struct cpg_address *member_list, size_t member_list_entries, - const struct cpg_address *left_list, size_t left_list_entries, - const struct cpg_address *joined_list, size_t joined_list_entries) + struct cpg_name *groupName, + struct cpg_address *member_list, int member_list_entries, + struct cpg_address *left_list, int left_list_entries, + struct cpg_address *joined_list, int joined_list_entries) { int i; struct node_info *ninfo; - DEBUGLOG("confchg callback. %zd joined, %zd left, %zd members\n", + DEBUGLOG("confchg callback. %d joined, %d left, %d members\n", joined_list_entries, left_list_entries, member_list_entries); for (i=0; i= 1.30.19-4, libsepol-devel @@ -42,7 +42,7 @@ or more physical volumes and creating on %prep %setup -q -n LVM2.%{version} %patch0 -p1 -b .locking -%patch1 -p1 -b .mmc +%patch1 -p1 -b .cpg %build %define _exec_prefix / @@ -51,9 +51,7 @@ or more physical volumes and creating on %define _libdir /%{_lib} %configure --enable-lvm1_fallback --enable-fsadm --with-clvmd=corosync --with-cluster=internal --with-pool=internal --with-user= --with-group= --with-dmdir=device-mapper.%{device_mapper_version} --with-usrlibdir=/usr/%{_lib} --with-usrsbindir=/usr/sbin --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig -make DESTDIR=$RPM_BUILD_ROOT -#make %{?_smp_mflags} - Needs fixing to use this - AGK ref. bz 226111. - +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -110,6 +108,7 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/vgexport %{_sbindir}/vgextend %{_sbindir}/vgimport +%{_sbindir}/vgimportclone %{_sbindir}/vgmerge %{_sbindir}/vgmknodes %{_sbindir}/vgreduce @@ -154,6 +153,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/vgexport.8.gz %{_mandir}/man8/vgextend.8.gz %{_mandir}/man8/vgimport.8.gz +%{_mandir}/man8/vgimportclone.8.gz %{_mandir}/man8/vgmerge.8.gz %{_mandir}/man8/vgmknodes.8.gz %{_mandir}/man8/vgreduce.8.gz @@ -268,6 +268,91 @@ This package contains the device-mapper %changelog +* Thu Jul 2 2009 Peter Rajnoha - 2.02.48-1 +- Abort if automatic metadata correction fails when reading VG to update it. +- Don't fallback to default major number in libdm: use dm_task_set_major_minor. +- Explicitly request fallback to default major number in device mapper. +- Ignore suspended devices during repair. +- Suggest using lvchange --resync when adding leg to not-yet-synced mirror. +- Destroy toolcontext on clvmd exit to avoid memory pool leaks. +- Fix lvconvert not to poll mirror if no conversion in progress. +- Fix memory leaks in toolcontext error path. +- Reinstate partial activation support in clustered mode. +- Allow metadata correction even when PVs are missing. +- Use 'lvm lvresize' instead of 'lvresize' in fsadm. +- Do not use '-n' realine option in fsadm for rescue disk compatiblity. +- Round up requested readahead to at least one page and print warning. +- Try to repair vg before actual vgremove when force flag provided. +- Unify error messages when processing inconsistent volume group. +- Introduce lvconvert --use_policies (repair policy according to lvm.conf). +- Fix rename of active snapshot with virtual origin. +- Fix convert polling to ignore LV with different UUID. +- Cache underlying device readahead only before activation calls. +- Fix segfault when calculating readahead on missing device in vgreduce. +- Remove verbose 'visited' messages. +- Handle multi-extent mirror log allocation when smallest PV has only 1 extent. +- Add LSB standard headers and functions (incl. reload) to clvmd initscript. +- When creating new LV, double-check that name is not already in use. +- Remove /dev/vgname/lvname symlink automatically if LV is no longer visible. +- Rename internal vorigin LV to match visible LV. +- Suppress 'removed' messages displayed when internal LVs are removed. +- Fix lvchange -a and -p for sparse LVs. +- Fix lvcreate --virtualsize to activate the new device immediately. +- Make --snapshot optional with lvcreate --virtualsize. +- Generalise --virtualoriginsize to --virtualsize. +- Skip virtual origins in process_each_lv_in_vg() without --all. +- Fix counting of virtual origin LVs in vg_validate. +- Attempt to load dm-zero module if zero target needed but not present. +- Add crypt target handling to libdevmapper tree nodes. +- Add splitname command to dmsetup. +- Add subsystem, vg_name, lv_name, lv_layer fields to dmsetup reports. +- Make mempool optional in dm_split_lvm_name() in libdevmapper. +- Inherit readahead setting from underlying devices during activation. +- Detect LVs active on remote nodes by querying locks if supported. +- Enable online resizing of mirrors. +- Use suspend with flush when device size was changed during table preload. +- Implement query_resource_fn for cluster_locking. +- Support query_resource_fn in locking modules. +- Fix pvmove to revert operation if temporary mirror creation fails. +- Fix metadata export for VG with missing PVs. +- Add vgimportclone and install it and the man page by default. +- Force max_lv restriction only for newly created LV. +- Do not query nonexistent devices for readahead. +- Reject missing PVs from allocation in toollib. +- Fix PV datalignment for values starting prior to MDA area. (2.02.45) +- Add sparse devices: lvcreate -s --virtualoriginsize (hidden zero origin). +- Fix minimum width of devices column in reports. +- Add lvs origin_size field. +- Implement lvconvert --repair for repairing partially-failed mirrors. +- Fix vgreduce --removemissing failure exit code. +- Fix remote metadata backup for clvmd. +- Fix metadata backup to run after vg_commit always. +- Fix pvs report for orphan PVs when segment attributes are requested. +- Fix pvs -a output to not read volume groups from non-PV devices. +- Introduce memory pools per volume group (to reduce memory for large VGs). +- Always return exit error status when locking of volume group fails. +- Fix mirror log convert validation question. +- Enable use of cached metadata for pvs and pvdisplay commands. +- Fix memory leak in mirror allocation code. +- Save and restore the previous logging level when log level is changed. +- Fix error message when archive initialization fails. +- Make sure clvmd-corosync releases the lockspace when it exits. +- Fix segfault for vgcfgrestore on VG with missing PVs. +- Block SIGTERM & SIGINT in clvmd subthreads. +- Detect and conditionally wipe swapspace signatures in pvcreate. +- Fix maximal volume count check for snapshots if max_lv set for volume group. +- Fix lvcreate to remove unused cow volume if the snapshot creation fails. +- Fix error messages when PV uuid or pe_start reading fails. +- Flush memory pool and fix locking in clvmd refresh and backup command. +- Fix unlocks in clvmd-corosync. (2.02.45) +- Fix error message when adding metadata directory to internal list fails. +- Fix size and error message of memory allocation at backup initialization. +- Remove old metadata backup file after renaming VG. +- Restore log_suppress state when metadata backup file is up-to-date. +- Export dm_tree_node_size_changed() from libdevmapper. +- Fix segfault when getopt processes dmsetup -U, -G and -M options. +- Add _smp_mflags to compilation and remove DESTDIR. + * Fri Apr 17 2009 Milan Broz - 2.02.45-4 - Add MMC (mmcblk) device type to filters. (483686) @@ -306,7 +391,7 @@ This package contains the device-mapper * Wed Feb 25 2009 Fedora Release Engineering - 2.02.44-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Tue Jan 27 2009 Alasdair Kergon > - 2.02.44-1 +* Tue Jan 27 2009 Alasdair Kergon - 2.02.44-1 - Add --nameprefixes, --unquoted, --rows to pvs, vgs, lvs man pages. - Fix lvresize size conversion for fsadm when block size is not 1K. - Fix pvs segfault when run with orphan PV and some VG fields. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/F-11/sources,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- sources 3 Mar 2009 18:15:40 -0000 1.69 +++ sources 2 Jul 2009 20:45:24 -0000 1.70 @@ -1 +1 @@ -440daa01b8f2ec4fe97b1cc621108220 LVM2.2.02.45.tgz +0d24c2709f439eeca36261e5cea68330 LVM2.2.02.48.tgz Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/F-11/upstream,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- upstream 3 Mar 2009 18:15:40 -0000 1.58 +++ upstream 2 Jul 2009 20:45:24 -0000 1.59 @@ -1 +1 @@ -LVM2.2.02.45.tgz +LVM2.2.02.48.tgz --- LVM2.2.02.45.tgz.asc DELETED --- --- lvm2-2_02_46-add-mmc-filter.patch DELETED --- From till at fedoraproject.org Thu Jul 2 20:48:55 2009 From: till at fedoraproject.org (Till Maas) Date: Thu, 2 Jul 2009 20:48:55 +0000 (UTC) Subject: rpms/libHX/devel .cvsignore, 1.10, 1.11 libHX.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090702204855.40B8711C0418@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/libHX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19919 Modified Files: .cvsignore libHX.spec sources Log Message: * Thu Jul 02 2009 Till Maas - 2.8-1 - Update to new release - Define docdir for %configure, because of installed PDF documentation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libHX/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 3 Mar 2009 17:35:20 -0000 1.10 +++ .cvsignore 2 Jul 2009 20:48:24 -0000 1.11 @@ -1,2 +1,2 @@ -libHX-2.5.tar.bz2 -libHX-2.5.tar.bz2.asc +libHX-2.8.tar.bz2 +libHX-2.8.tar.bz2.asc Index: libHX.spec =================================================================== RCS file: /cvs/pkgs/rpms/libHX/devel/libHX.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libHX.spec 3 Mar 2009 17:35:20 -0000 1.15 +++ libHX.spec 2 Jul 2009 20:48:25 -0000 1.16 @@ -1,5 +1,5 @@ Name: libHX -Version: 2.5 +Version: 2.8 Release: 1%{?dist} Summary: General-purpose library for typical low-level operations @@ -46,7 +46,7 @@ developing applications that use %{name} # Move libHX.so.* to /%{_lib}: # /sbin/mount.crypt from pam_mount uses libHX # /lib/security/pam_mount.so from pam_mount uses libHX -%configure --disable-static --libdir=/%{_lib} --with-pkgconfigdir=%{_libdir}/pkgconfig +%configure --disable-static --libdir=/%{_lib} --with-pkgconfigdir=%{_libdir}/pkgconfig --docdir=%{_docdir}/%{name}-%{version} make %{?_smp_mflags} V=verbose @@ -62,6 +62,8 @@ mkdir -p $RPM_BUILD_ROOT/%{_libdir} pushd $RPM_BUILD_ROOT/%{_libdir} ln -s ../../%{_lib}/libHX.so.*.*.* $RPM_BUILD_ROOT/%{_libdir}/libHX.so popd +# :TODO: include the documentation more cleanly +rm doc/Makefile* %clean @@ -88,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Till Maas - 2.8-1 +- Update to new release +- Define docdir for %%configure, because of installed PDF documentation + * Tue Mar 03 2009 Till Maas - 2.5-1 - Update to new release - Update URL/Source0 to SF.net webpage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libHX/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 3 Mar 2009 17:35:20 -0000 1.10 +++ sources 2 Jul 2009 20:48:25 -0000 1.11 @@ -1,2 +1,2 @@ -8d8730995b48ac51d0bafd4b60077a21 libHX-2.5.tar.bz2 -2aab1b82d77e15418ba12fe1c8b8298d libHX-2.5.tar.bz2.asc +26d4eb5b9ef2d94a4f9983af93547cb0 libHX-2.8.tar.bz2 +3368bdaed6aed3832f0c931058d7f7b1 libHX-2.8.tar.bz2.asc From till at fedoraproject.org Thu Jul 2 20:49:06 2009 From: till at fedoraproject.org (Till Maas) Date: Thu, 2 Jul 2009 20:49:06 +0000 (UTC) Subject: rpms/pam_mount/devel .cvsignore, 1.24, 1.25 pam_mount.spec, 1.55, 1.56 sources, 1.25, 1.26 0001-use-extra_opts-in-etc-mtab-unless-empty.patch, 1.1, NONE pam_mount-1.22-uninitialized-variable.patch, 1.1, NONE Message-ID: <20090702204906.1088311C0418@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/pam_mount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19976 Modified Files: .cvsignore pam_mount.spec sources Removed Files: 0001-use-extra_opts-in-etc-mtab-unless-empty.patch pam_mount-1.22-uninitialized-variable.patch Log Message: * Thu Jul 02 2009 Till Maas - 1.27-1 - Update to new release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 13 Apr 2009 21:59:23 -0000 1.24 +++ .cvsignore 2 Jul 2009 20:48:35 -0000 1.25 @@ -1,2 +1,2 @@ -pam_mount-1.22.tar.bz2 -pam_mount-1.22.tar.bz2.asc +pam_mount-1.27.tar.bz2 +pam_mount-1.27.tar.bz2.asc Index: pam_mount.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/devel/pam_mount.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- pam_mount.spec 13 Apr 2009 21:59:23 -0000 1.55 +++ pam_mount.spec 2 Jul 2009 20:48:35 -0000 1.56 @@ -1,7 +1,7 @@ %define packext bz2 Name: pam_mount -Version: 1.22 +Version: 1.27 Release: 1%{?dist} Summary: A PAM module that can mount volumes for a user session @@ -13,18 +13,14 @@ License: LGPLv2+ and (LGPLv2 or L URL: http://pam-mount.sourceforge.net/ Source0: http://downloads.sourceforge.net/pam-mount/%{name}-%{version}.tar.%{packext} Source1: http://downloads.sourceforge.net/pam-mount/%{name}-%{version}.tar.%{packext}.asc -# from upstream: http://pam-mount.git.sourceforge.net/git/gitweb.cgi?p=pam-mount;a=commitdiff_plain;h=d4f898a53b7fc039c0bbb08bf125e5c43b99d966 -Patch0: pam_mount-1.22-uninitialized-variable.patch -# 2009-04-13: submitted to upstream https://sourceforge.net/support/tracker.php?aid=2715698 -Patch1: 0001-use-extra_opts-in-etc-mtab-unless-empty.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel, pam-devel, openssl-devel BuildRequires: libxml2-devel -BuildRequires: libHX-devel >= 2.5 +BuildRequires: libHX-devel >= 2.8 BuildRequires: lzip Requires: pam -Requires: libHX >= 2.5 +Requires: libHX >= 2.8 # for /etc/catalog and xmlcatalog #Requires: xml-common @@ -59,8 +55,6 @@ lzip -c -d %SOURCE0 | tar -xvvf - -C .. %setup -q %endif -%patch0 -p1 -b .uninitialized-variable -%patch1 -p1 -b .use-extra_opts %build %configure --with-slibdir=/%{_lib} --with-dtd @@ -116,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Till Maas - 1.27-1 +- Update to new release + * Mon Apr 13 2009 Till Maas - 1.22-1 - Update to new release - Support remount (Red Hat Bugzilla: #492347) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 13 Apr 2009 21:59:23 -0000 1.25 +++ sources 2 Jul 2009 20:48:35 -0000 1.26 @@ -1,2 +1,2 @@ -afabec61b86d859cb73af438d1ec63bd pam_mount-1.22.tar.bz2 -58a229effc324489ebe12203ce262254 pam_mount-1.22.tar.bz2.asc +f06da34db9d578c40f3d47b394f9c5a3 pam_mount-1.27.tar.bz2 +c7d5d133bd3f9f10de6c751eb7293d37 pam_mount-1.27.tar.bz2.asc --- 0001-use-extra_opts-in-etc-mtab-unless-empty.patch DELETED --- --- pam_mount-1.22-uninitialized-variable.patch DELETED --- From prajnoha at fedoraproject.org Thu Jul 2 20:49:35 2009 From: prajnoha at fedoraproject.org (Peter Rajnoha) Date: Thu, 2 Jul 2009 20:49:35 +0000 (UTC) Subject: rpms/lvm2/F-11 LVM2.2.02.48.tgz.asc,NONE,1.1 Message-ID: <20090702204935.E2B5211C0418@cvs1.fedora.phx.redhat.com> Author: prajnoha Update of /cvs/pkgs/rpms/lvm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20185 Added Files: LVM2.2.02.48.tgz.asc Log Message: New upstream release with various fixes. --- NEW FILE LVM2.2.02.48.tgz.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQBKSmiOIoGRwVZ+LBcRAuOEAJ91bUIQ8VQtN8sQlaZx1MQIsBCSaQCgsvgQ g5k7R3ofyTUbNAqzzGWLng4= =X6rZ -----END PGP SIGNATURE----- From pkgdb at fedoraproject.org Thu Jul 2 20:50:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:03 +0000 Subject: [pkgdb] perl-Array-Compare EL-4 cloned from devel Message-ID: <20090702205003.B2B6210F896@bastion2.fedora.phx.redhat.com> ausil cloned perl-Array-Compare EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Array-Compare From pkgdb at fedoraproject.org Thu Jul 2 20:50:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:05 +0000 Subject: [pkgdb] perl-Test-Cmd EL-4 cloned from devel Message-ID: <20090702205005.BBAFE10F899@bastion2.fedora.phx.redhat.com> ausil cloned perl-Test-Cmd EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Cmd From pkgdb at fedoraproject.org Thu Jul 2 20:50:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:07 +0000 Subject: [pkgdb] php-eaccelerator EL-4 cloned from devel Message-ID: <20090702205007.BD50E10F89C@bastion2.fedora.phx.redhat.com> ausil cloned php-eaccelerator EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Thu Jul 2 20:50:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:11 +0000 Subject: [pkgdb] php-extras EL-4 cloned from devel Message-ID: <20090702205011.6162210F8A6@bastion2.fedora.phx.redhat.com> ausil cloned php-extras EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-extras From pkgdb at fedoraproject.org Thu Jul 2 20:50:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:12 +0000 Subject: [pkgdb] php-idn EL-4 cloned from devel Message-ID: <20090702205012.B810810F8AB@bastion2.fedora.phx.redhat.com> ausil cloned php-idn EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-idn From pkgdb at fedoraproject.org Thu Jul 2 20:50:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 20:50:14 +0000 Subject: [pkgdb] phpldapadmin EL-4 cloned from devel Message-ID: <20090702205014.B1F1C10F8AF@bastion2.fedora.phx.redhat.com> ausil cloned phpldapadmin EL-4 from devel To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpldapadmin From nsantos at fedoraproject.org Thu Jul 2 20:51:18 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 20:51:18 +0000 (UTC) Subject: rpms/qpidc/devel qpidc.spec,1.90,1.91 Message-ID: <20090702205118.0CACB11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/qpidc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20582 Modified Files: qpidc.spec Log Message: add libuuid-devel dep Index: qpidc.spec =================================================================== RCS file: /cvs/extras/rpms/qpidc/devel/qpidc.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- qpidc.spec 2 Jul 2009 20:34:38 -0000 1.90 +++ qpidc.spec 2 Jul 2009 20:50:47 -0000 1.91 @@ -22,6 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: boost-devel BuildRequires: doxygen BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel BuildRequires: libtool BuildRequires: pkgconfig BuildRequires: ruby @@ -59,6 +60,7 @@ Group: Development/System Requires: %name = %version-%release Requires: boost-devel Requires: e2fsprogs-devel +Requires: libuuid-devel Requires: python %description devel From ajax at fedoraproject.org Thu Jul 2 20:51:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:51:44 +0000 (UTC) Subject: rpms/xorg-x11-xkb-utils/devel xorg-x11-xkb-utils.spec,1.26,1.27 Message-ID: <20090702205144.67C7111C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20665 Modified Files: xorg-x11-xkb-utils.spec Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-2 - Fix missing %defattr in -extras Index: xorg-x11-xkb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/xorg-x11-xkb-utils.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-xkb-utils.spec 2 Jul 2009 19:53:55 -0000 1.26 +++ xorg-x11-xkb-utils.spec 2 Jul 2009 20:51:14 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 xkb utilities Name: xorg-x11-xkb-utils Version: 7.4 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -80,6 +80,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xkbcomp.1* %files -n xorg-x11-xkb-extras +%defattr(-,root,root,-) %doc xkbutils-%{xkbutils_version}/AUTHORS xkbutils-%{xkbutils_version}/COPYING xkbutils-%{xkbutils_version}/INSTALL %doc xkbutils-%{xkbutils_version}/NEWS xkbutils-%{xkbutils_version}/README %{_bindir}/xkbbell @@ -91,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xkbprint.1* %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-2 +- Fix missing %%defattr in -extras + * Thu Jul 02 2009 Adam Jackson 7.4-1 - Split Xaw-requiring utilities to extras subpackage From slankes at fedoraproject.org Thu Jul 2 20:51:53 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Thu, 2 Jul 2009 20:51:53 +0000 (UTC) Subject: rpms/psi/devel .cvsignore, 1.13, 1.14 psi.spec, 1.30, 1.31 sources, 1.15, 1.16 Message-ID: <20090702205153.E910211C0418@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20932 Modified Files: .cvsignore psi.spec sources Log Message: 0.13 rc2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 27 May 2009 06:03:13 -0000 1.13 +++ .cvsignore 2 Jul 2009 20:51:53 -0000 1.14 @@ -1,4 +1 @@ -psi-0.13-rc1.tar.bz2 -emoticons-0.10.tar.gz -psi-lang-packs-0.12.tar.gz -rostericons-0.10.tar.gz +psi-0.13-rc2.tar.bz2 Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- psi.spec 6 Jun 2009 08:31:17 -0000 1.30 +++ psi.spec 2 Jul 2009 20:51:53 -0000 1.31 @@ -1,11 +1,11 @@ Name: psi Version: 0.13 -Release: 0.1.rc1%{?dist} +Release: 0.1.rc2%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org -Source0: http://dl.sf.net/psi/psi-%{version}-rc1.tar.bz2 +Source0: http://dl.sf.net/psi/psi-%{version}-rc2.tar.bz2 Patch0: psi-0.12-qca.patch Patch1: psi-0.12-qt-4_5-compatibility.patch @@ -67,7 +67,7 @@ More icons can be found on http://jisp.n %prep -%setup -q -n %{name}-%{version}-rc1 +%setup -q -n %{name}-%{version}-rc2 %patch0 -p0 -b .qca #??%patch1 -p0 -b .qt45 @@ -144,6 +144,9 @@ fi %changelog +* Thu Jul 02 2009 Sven Lankes 0.13-0.1.rc2 +- 0.13 rc2 + * Sun May 24 2009 Aurelien Bompard 0.13-0.1.rc1 - 0.13 rc1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 27 May 2009 06:03:13 -0000 1.15 +++ sources 2 Jul 2009 20:51:53 -0000 1.16 @@ -1,4 +1,4 @@ -f2daec21d48d9fea01b812709b81e907 psi-0.13-rc1.tar.bz2 +86b7c60cfb3e0b09c8c603b22deaae3f psi-0.13-rc2.tar.bz2 1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz 054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz 51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz From till at fedoraproject.org Thu Jul 2 20:52:34 2009 From: till at fedoraproject.org (Till Maas) Date: Thu, 2 Jul 2009 20:52:34 +0000 (UTC) Subject: rpms/libHX/F-11 .cvsignore, 1.10, 1.11 libHX.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090702205234.8EB7311C0418@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/libHX/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21002 Modified Files: .cvsignore libHX.spec sources Log Message: * Thu Jul 02 2009 Till Maas - 2.8-1 - Update to new release - Define docdir for %configure, because of installed PDF documentation Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libHX/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 3 Mar 2009 17:35:20 -0000 1.10 +++ .cvsignore 2 Jul 2009 20:52:04 -0000 1.11 @@ -1,2 +1,2 @@ -libHX-2.5.tar.bz2 -libHX-2.5.tar.bz2.asc +libHX-2.8.tar.bz2 +libHX-2.8.tar.bz2.asc Index: libHX.spec =================================================================== RCS file: /cvs/pkgs/rpms/libHX/F-11/libHX.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libHX.spec 3 Mar 2009 17:35:20 -0000 1.15 +++ libHX.spec 2 Jul 2009 20:52:04 -0000 1.16 @@ -1,5 +1,5 @@ Name: libHX -Version: 2.5 +Version: 2.8 Release: 1%{?dist} Summary: General-purpose library for typical low-level operations @@ -46,7 +46,7 @@ developing applications that use %{name} # Move libHX.so.* to /%{_lib}: # /sbin/mount.crypt from pam_mount uses libHX # /lib/security/pam_mount.so from pam_mount uses libHX -%configure --disable-static --libdir=/%{_lib} --with-pkgconfigdir=%{_libdir}/pkgconfig +%configure --disable-static --libdir=/%{_lib} --with-pkgconfigdir=%{_libdir}/pkgconfig --docdir=%{_docdir}/%{name}-%{version} make %{?_smp_mflags} V=verbose @@ -62,6 +62,8 @@ mkdir -p $RPM_BUILD_ROOT/%{_libdir} pushd $RPM_BUILD_ROOT/%{_libdir} ln -s ../../%{_lib}/libHX.so.*.*.* $RPM_BUILD_ROOT/%{_libdir}/libHX.so popd +# :TODO: include the documentation more cleanly +rm doc/Makefile* %clean @@ -88,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Till Maas - 2.8-1 +- Update to new release +- Define docdir for %%configure, because of installed PDF documentation + * Tue Mar 03 2009 Till Maas - 2.5-1 - Update to new release - Update URL/Source0 to SF.net webpage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libHX/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 3 Mar 2009 17:35:20 -0000 1.10 +++ sources 2 Jul 2009 20:52:04 -0000 1.11 @@ -1,2 +1,2 @@ -8d8730995b48ac51d0bafd4b60077a21 libHX-2.5.tar.bz2 -2aab1b82d77e15418ba12fe1c8b8298d libHX-2.5.tar.bz2.asc +26d4eb5b9ef2d94a4f9983af93547cb0 libHX-2.8.tar.bz2 +3368bdaed6aed3832f0c931058d7f7b1 libHX-2.8.tar.bz2.asc From nsantos at fedoraproject.org Thu Jul 2 20:54:43 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 20:54:43 +0000 (UTC) Subject: rpms/ruby-qpid/F-11 .cvsignore, 1.10, 1.11 ruby-qpid.spec, 1.14, 1.15 sources, 1.10, 1.11 Message-ID: <20090702205443.E571E11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21623 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 26 Jun 2009 19:09:37 -0000 1.10 +++ .cvsignore 2 Jul 2009 20:54:13 -0000 1.11 @@ -1 +1 @@ -ruby-qpid-0.5.788782.tar.gz +ruby-qpid-0.5.790661.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/ruby-qpid.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ruby-qpid.spec 26 Jun 2009 19:09:37 -0000 1.14 +++ ruby-qpid.spec 2 Jul 2009 20:54:13 -0000 1.15 @@ -1,5 +1,5 @@ Name: ruby-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Ruby language client for AMQP @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 26 Jun 2009 19:09:37 -0000 1.10 +++ sources 2 Jul 2009 20:54:13 -0000 1.11 @@ -1 +1 @@ -b52a6224f29576bf9b895a80af75b50e ruby-qpid-0.5.788782.tar.gz +f999b7bd8d9914997e60c995f29d94a5 ruby-qpid-0.5.790661.tar.gz From ajax at fedoraproject.org Thu Jul 2 20:55:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 20:55:44 +0000 (UTC) Subject: rpms/t1lib/devel t1lib.spec,1.24,1.25 Message-ID: <20090702205544.1EDBF11C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/t1lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21874 Modified Files: t1lib.spec Log Message: * Thu Jul 02 2009 Adam Jackson 5.1.2-4 - Split demo apps to a subpackage to isolate libXaw deps Index: t1lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/t1lib/devel/t1lib.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- t1lib.spec 25 Feb 2009 17:59:43 -0000 1.24 +++ t1lib.spec 2 Jul 2009 20:55:13 -0000 1.25 @@ -1,6 +1,6 @@ Name: t1lib Version: 5.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PostScript Type 1 font rasterizer @@ -24,6 +24,13 @@ X11. AFM-files can be generated from Type 1 font files and font subsetting is possible. +%package apps +Summary: t1lib demo applications +Group: Applications/Text + +%description apps +Sample applications using t1lib + %package devel Summary: Header files and development files for %{name} Group: Development/Libraries @@ -104,13 +111,18 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/t1lib %ghost %verify(not size mtime md5) %{_datadir}/t1lib/t1lib.config %ghost %verify(not size mtime md5) %{_datadir}/t1lib/FontDatabase -%{_bindir}/type1afm -%{_bindir}/xglyph %{_libdir}/libt1.so.* %{_libdir}/libt1x.so.* -%{_mandir}/man*/* +%{_mandir}/man5/* +%{_mandir}/man8/* %{_sbindir}/t1libconfig +%files apps +%defattr(-,root,root,-) +%{_bindir}/type1afm +%{_bindir}/xglyph +%{_mandir}/man1/* + %files devel %defattr(-,root,root,-) %doc doc/t1lib_doc.pdf @@ -125,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Adam Jackson 5.1.2-4 +- Split demo apps to a subpackage to isolate libXaw deps + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From nsantos at fedoraproject.org Thu Jul 2 21:01:41 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 21:01:41 +0000 (UTC) Subject: rpms/ruby-qpid/devel .cvsignore, 1.9, 1.10 ruby-qpid.spec, 1.13, 1.14 sources, 1.9, 1.10 Message-ID: <20090702210141.A41CB11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/ruby-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22907 Modified Files: .cvsignore ruby-qpid.spec sources Log Message: Rebased to svn rev 790661 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 26 Jun 2009 19:17:12 -0000 1.9 +++ .cvsignore 2 Jul 2009 21:01:11 -0000 1.10 @@ -1 +1 @@ -ruby-qpid-0.5.788782.tar.gz +ruby-qpid-0.5.790661.tar.gz Index: ruby-qpid.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/ruby-qpid.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ruby-qpid.spec 26 Jun 2009 19:17:12 -0000 1.13 +++ ruby-qpid.spec 2 Jul 2009 21:01:11 -0000 1.14 @@ -1,5 +1,5 @@ Name: ruby-qpid -Version: 0.5.788782 +Version: 0.5.790661 Release: 1%{?dist} Summary: Ruby language client for AMQP @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 +- Rebased to svn rev 790661 + * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-qpid/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 26 Jun 2009 19:17:12 -0000 1.9 +++ sources 2 Jul 2009 21:01:11 -0000 1.10 @@ -1 +1 @@ -b52a6224f29576bf9b895a80af75b50e ruby-qpid-0.5.788782.tar.gz +f999b7bd8d9914997e60c995f29d94a5 ruby-qpid-0.5.790661.tar.gz From till at fedoraproject.org Thu Jul 2 21:04:34 2009 From: till at fedoraproject.org (Till Maas) Date: Thu, 2 Jul 2009 21:04:34 +0000 (UTC) Subject: rpms/pam_mount/F-11 .cvsignore, 1.24, 1.25 pam_mount.spec, 1.55, 1.56 sources, 1.25, 1.26 0001-use-extra_opts-in-etc-mtab-unless-empty.patch, 1.1, NONE pam_mount-1.22-uninitialized-variable.patch, 1.1, NONE Message-ID: <20090702210434.6C48911C0418@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/pam_mount/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24158 Modified Files: .cvsignore pam_mount.spec sources Removed Files: 0001-use-extra_opts-in-etc-mtab-unless-empty.patch pam_mount-1.22-uninitialized-variable.patch Log Message: * Thu Jul 02 2009 Till Maas - 1.27-1 - Update to new release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/F-11/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 13 Apr 2009 21:59:23 -0000 1.24 +++ .cvsignore 2 Jul 2009 21:04:04 -0000 1.25 @@ -1,2 +1,2 @@ -pam_mount-1.22.tar.bz2 -pam_mount-1.22.tar.bz2.asc +pam_mount-1.27.tar.bz2 +pam_mount-1.27.tar.bz2.asc Index: pam_mount.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/F-11/pam_mount.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- pam_mount.spec 13 Apr 2009 21:59:23 -0000 1.55 +++ pam_mount.spec 2 Jul 2009 21:04:04 -0000 1.56 @@ -1,7 +1,7 @@ %define packext bz2 Name: pam_mount -Version: 1.22 +Version: 1.27 Release: 1%{?dist} Summary: A PAM module that can mount volumes for a user session @@ -13,18 +13,14 @@ License: LGPLv2+ and (LGPLv2 or L URL: http://pam-mount.sourceforge.net/ Source0: http://downloads.sourceforge.net/pam-mount/%{name}-%{version}.tar.%{packext} Source1: http://downloads.sourceforge.net/pam-mount/%{name}-%{version}.tar.%{packext}.asc -# from upstream: http://pam-mount.git.sourceforge.net/git/gitweb.cgi?p=pam-mount;a=commitdiff_plain;h=d4f898a53b7fc039c0bbb08bf125e5c43b99d966 -Patch0: pam_mount-1.22-uninitialized-variable.patch -# 2009-04-13: submitted to upstream https://sourceforge.net/support/tracker.php?aid=2715698 -Patch1: 0001-use-extra_opts-in-etc-mtab-unless-empty.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel, pam-devel, openssl-devel BuildRequires: libxml2-devel -BuildRequires: libHX-devel >= 2.5 +BuildRequires: libHX-devel >= 2.8 BuildRequires: lzip Requires: pam -Requires: libHX >= 2.5 +Requires: libHX >= 2.8 # for /etc/catalog and xmlcatalog #Requires: xml-common @@ -59,8 +55,6 @@ lzip -c -d %SOURCE0 | tar -xvvf - -C .. %setup -q %endif -%patch0 -p1 -b .uninitialized-variable -%patch1 -p1 -b .use-extra_opts %build %configure --with-slibdir=/%{_lib} --with-dtd @@ -116,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Till Maas - 1.27-1 +- Update to new release + * Mon Apr 13 2009 Till Maas - 1.22-1 - Update to new release - Support remount (Red Hat Bugzilla: #492347) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/F-11/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 13 Apr 2009 21:59:23 -0000 1.25 +++ sources 2 Jul 2009 21:04:04 -0000 1.26 @@ -1,2 +1,2 @@ -afabec61b86d859cb73af438d1ec63bd pam_mount-1.22.tar.bz2 -58a229effc324489ebe12203ce262254 pam_mount-1.22.tar.bz2.asc +f06da34db9d578c40f3d47b394f9c5a3 pam_mount-1.27.tar.bz2 +c7d5d133bd3f9f10de6c751eb7293d37 pam_mount-1.27.tar.bz2.asc --- 0001-use-extra_opts-in-etc-mtab-unless-empty.patch DELETED --- --- pam_mount-1.22-uninitialized-variable.patch DELETED --- From ajax at fedoraproject.org Thu Jul 2 21:16:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 21:16:44 +0000 (UTC) Subject: rpms/xorg-x11-apps/devel xlogo-less-xprint.patch, NONE, 1.1 xorg-x11-apps.spec, 1.35, 1.36 Message-ID: <20090702211644.38E7911C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26287 Modified Files: xorg-x11-apps.spec Added Files: xlogo-less-xprint.patch Log Message: build, dangit xlogo-less-xprint.patch: --- NEW FILE xlogo-less-xprint.patch --- diff -up xlogo-1.0.1/Makefile.am.jx xlogo-1.0.1/Makefile.am --- xlogo-1.0.1/Makefile.am.jx 2005-12-07 11:18:00.000000000 -0500 +++ xlogo-1.0.1/Makefile.am 2009-07-02 17:13:19.000000000 -0400 @@ -34,12 +34,6 @@ xlogo_SOURCES = \ xlogo.c \ xlogo.h -if XAW_USE_XPRINT -xlogo_SOURCES += \ - print.c \ - print.h -endif - appman_PRE = \ xlogo.man Index: xorg-x11-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/xorg-x11-apps.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- xorg-x11-apps.spec 2 Jul 2009 20:44:58 -0000 1.35 +++ xorg-x11-apps.spec 2 Jul 2009 21:16:43 -0000 1.36 @@ -40,6 +40,7 @@ Patch0: x11perf-1.4.1-x11perf-datadir-cl Patch1: luit-1.0.1-locale.alias-datadir.patch Patch2: xconsole-1.0.3-streams-me-softer.patch Patch3: xvidtune-1.0.1-buffer-stomp.patch +Patch4: xlogo-less-xprint.patch BuildRequires: autoconf automake @@ -86,12 +87,14 @@ A collection of common X Window System a %patch1 -p0 -b .locale.alias-datadir %patch2 -p0 -b .streams-me-softer %patch3 -p1 -b .buffer-stomp +%patch4 -p0 -b .xprint %build # Build all apps { for app in * ; do pushd $app + sed -i '/XAW_/ s/)/, xaw7)/; /XAW_/ s/XAW_CHECK_XPRINT_SUPPORT/PKG_CHECK_MODULES/' configure.ac autoreconf -v --install %configure --disable-xprint make From dcantrel at fedoraproject.org Thu Jul 2 21:18:55 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Thu, 2 Jul 2009 21:18:55 +0000 (UTC) Subject: rpms/dhcp/devel .cvsignore, 1.25, 1.26 dhcp.spec, 1.259, 1.260 sources, 1.26, 1.27 Message-ID: <20090702211855.3568111C0418@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/dhcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26669 Modified Files: .cvsignore dhcp.spec sources Log Message: * Wed Jul 01 2009 David Cantrell - 12:4.1.0-22 - Set permissions on /etc/dhcp to 0750 (#508247) - Update to new ldap-for-dhcp patch set - Correct problems when upgrading from a previous release and your dhcpd.conf file not being placed in /etc/dhcp (#506600) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 13 Apr 2009 21:56:00 -0000 1.25 +++ .cvsignore 2 Jul 2009 21:18:24 -0000 1.26 @@ -1,2 +1,2 @@ dhcp-4.1.0.tar.gz -ldap-for-dhcp-4.1.0-2.tar.gz +ldap-for-dhcp-4.1.0-3.tar.gz Index: dhcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/devel/dhcp.spec,v retrieving revision 1.259 retrieving revision 1.260 diff -u -p -r1.259 -r1.260 --- dhcp.spec 27 Jun 2009 03:17:04 -0000 1.259 +++ dhcp.spec 2 Jul 2009 21:18:24 -0000 1.260 @@ -5,12 +5,12 @@ %define dhcpconfdir %{_sysconfdir}/dhcp # LDAP patch version -%define ldappatchver %{version}-2 +%define ldappatchver %{version}-3 Summary: Dynamic host configuration protocol software Name: dhcp Version: 4.1.0 -Release: 21%{?dist} +Release: 22%{?dist} # NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to # dcantrell maintaining the package) made incorrect use of the epoch and # that's why it is at 12 now. It should have never been used, but it was. @@ -57,6 +57,7 @@ BuildRequires: openldap-devel Requires(post): chkconfig Requires(post): coreutils +Requires(post): policycoreutils Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts @@ -256,7 +257,7 @@ autoheader automake --foreign --add-missing --copy %build -CFLAGS="%{optflags} -fPIC -D_GNU_SOURCE -DLDAP_CONFIGURATION -DUSE_SSL" \ +CFLAGS="%{optflags} -fPIC -D_GNU_SOURCE" \ %configure \ --enable-dhcpv6 \ --with-srv-lease-file=%{_localstatedir}/lib/dhcpd/dhcpd.leases \ @@ -267,7 +268,9 @@ CFLAGS="%{optflags} -fPIC -D_GNU_SOURCE --with-srv6-pid-file=%{_localstatedir}/run/dhcpd6.pid \ --with-cli-pid-file=%{_localstatedir}/run/dhclient.pid \ --with-cli6-pid-file=%{_localstatedir}/run/dhclient6.pid \ - --with-relay-pid-file=%{_localstatedir}/run/dhcrelay.pid + --with-relay-pid-file=%{_localstatedir}/run/dhcrelay.pid \ + --with-ldap \ + --with-ldapcrypto %{__make} %{?_smp_mflags} %install @@ -334,8 +337,20 @@ EOF %{__rm} -rf %{buildroot} %post -if [ -f %{_sysconfdir}/dhcpd.conf ] && [ ! -r %{dhcpconfdir}/dhcpd.conf ]; then - /bin/ln -s %{_sysconfdir}/dhcpd.conf %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 +sampleconf="# +# DHCP Server Configuration file. +# see /usr/share/doc/dhcp*/dhcpd.conf.sample +# see 'man 5 dhcpd.conf' +#" + +contents="$(/bin/cat %{dhcpconfdir}/dhcpd.conf)" +prevconf="%{_sysconfdir}/dhcpd.conf" + +if [ ! -z "${prevconf}" ]; then + if [ ! -f %{dhcpconfdir}/dhcpd.conf -o "${sampleconf}" = "${contents}" ]; then + /bin/cp -a ${prevconf} %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 + /sbin/restorecon %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 + fi fi /sbin/chkconfig --add dhcpd @@ -349,7 +364,8 @@ if [ $? = 0 ]; then while read etcfile ; do cf="$(/bin/basename ${etcfile})" if [ -f ${etcfile} ] && [ ! -r %{dhcpconfdir}/${cf} ]; then - /bin/ln -s ${etcfile} %{dhcpconfdir}/${cf} >/dev/null 2>&1 + /bin/cp -a ${etcfile} %{dhcpconfdir}/${cf} >/dev/null 2>&1 + /sbin/restorecon %{dhcpconfdir}/${cf} >/dev/null 2>&1 fi done || : fi || : @@ -382,7 +398,7 @@ fi %doc RELNOTES dhcpd.conf.sample doc/IANA-arp-parameters doc/api+protocol %doc doc/*.txt __fedora_contrib/* ldap-for-dhcp-%{ldappatchver}/*.txt %dir %{_localstatedir}/lib/dhcpd -%dir %{dhcpconfdir} +%attr(0750,root,root) %dir %{dhcpconfdir} %verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd.leases %verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/dhcpd/dhcpd6.leases %config(noreplace) %{_sysconfdir}/sysconfig/dhcpd @@ -405,7 +421,7 @@ fi %files -n dhclient %defattr(-,root,root,-) %doc dhclient.conf.sample README.dhclient.d -%dir %{dhcpconfdir} +%attr(0750,root,root) %dir %{dhcpconfdir} %dir %{dhcpconfdir}/dhclient.d %dir %{_localstatedir}/lib/dhclient /sbin/dhclient @@ -429,6 +445,12 @@ fi %attr(0644,root,root) %{_mandir}/man3/omapi.3.gz %changelog +* Wed Jul 01 2009 David Cantrell - 12:4.1.0-22 +- Set permissions on /etc/dhcp to 0750 (#508247) +- Update to new ldap-for-dhcp patch set +- Correct problems when upgrading from a previous release and your + dhcpd.conf file not being placed in /etc/dhcp (#506600) + * Fri Jun 26 2009 David Cantrell - 12:4.1.0-21 - Handle cases in add_timeout() where the function is called with a NULL value for the 'when' parameter (#506626) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 13 Apr 2009 21:56:00 -0000 1.26 +++ sources 2 Jul 2009 21:18:24 -0000 1.27 @@ -1,2 +1,2 @@ 1fffed2e8c3d67b111316d6a9b33db7a dhcp-4.1.0.tar.gz -04d735015e104e3e6377e7fb80fd4fce ldap-for-dhcp-4.1.0-2.tar.gz +fe56e35db8b78e6b9e0b377e4eccd232 ldap-for-dhcp-4.1.0-3.tar.gz From mbarnes at fedoraproject.org Thu Jul 2 21:19:30 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 21:19:30 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec, 1.394.2.14, 1.394.2.15 sources, 1.116.2.8, 1.116.2.9 Message-ID: <20090702211930.D2D5B11C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26869 Modified Files: Tag: private-mbarnes-kb evolution.spec sources Log Message: Try again. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.14 retrieving revision 1.394.2.15 diff -u -p -r1.394.2.14 -r1.394.2.15 --- evolution.spec 2 Jul 2009 19:21:25 -0000 1.394.2.14 +++ evolution.spec 2 Jul 2009 21:19:30 -0000 1.394.2.15 @@ -309,9 +309,9 @@ make %{?_smp_mflags} LIBTOOL=/usr/bin/li cd po grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" POTFILES.in > POTFILES.keep mv POTFILES.keep POTFILES.in -intltool-update --pot +intltool-update --gettext-package=%{name}-%{evo_major} --pot for p in *.po; do - msgmerge $p evolution-%{evo_major}.pot > $p.out + msgmerge $p %{name}-%{evo_major}.pot > $p.out msgfmt -o `basename $p .po`.gmo $p.out done cd - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.8 retrieving revision 1.116.2.9 diff -u -p -r1.116.2.8 -r1.116.2.9 --- sources 2 Jul 2009 19:21:25 -0000 1.116.2.8 +++ sources 2 Jul 2009 21:19:30 -0000 1.116.2.9 @@ -1 +1 @@ -3d918d07fa6360f419b5cd614f92c41d evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 +bc04a5368b47135951377eba5c9e545c evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 From mbarnes at fedoraproject.org Thu Jul 2 21:22:17 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 21:22:17 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.398,1.399 Message-ID: <20090702212217.DBCBF11C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27454 Modified Files: evolution.spec Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). - Add patch to build pst-import plugin against current libpst. - libpst's API broke again so disable the BR's for now. - Specify the gettext package when calling intltool-update. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.398 retrieving revision 1.399 diff -u -p -r1.398 -r1.399 --- evolution.spec 2 Jul 2009 20:22:06 -0000 1.398 +++ evolution.spec 2 Jul 2009 21:22:17 -0000 1.399 @@ -112,11 +112,11 @@ BuildRequires: libbonoboui-devel >= %{li BuildRequires: libgnomecanvas-devel >= 2.0 BuildRequires: libgnomeui-devel >= 2.0 BuildRequires: libgweather-devel >= %{libgweather_version} -BuildRequires: libpst-devel +#BuildRequires: libpst-devel BuildRequires: libsoup-devel >= %{soup_version} BuildRequires: libtool >= 1.5 BuildRequires: libxml2-devel -BuildRequires: libytnef-devel +#BuildRequires: libytnef-devel BuildRequires: pkgconfig %if %{use_mozilla_nss} @@ -313,9 +313,9 @@ make %{?_smp_mflags} LIBTOOL=/usr/bin/li cd po grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" POTFILES.in > POTFILES.keep mv POTFILES.keep POTFILES.in -intltool-update --pot +intltool-update --gettext-package=%{name}-%{evo-major} --pot for p in *.po; do - msgmerge $p evolution-%{evo_major}.pot > $p.out + msgmerge $p %{name}-%{evo_major}.pot > $p.out msgfmt -o `basename $p .po`.gmo $p.out done cd - @@ -680,6 +680,8 @@ rm -rf $RPM_BUILD_ROOT * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). - Add patch to build pst-import plugin against current libpst. +- libpst's API broke again so disable the BR's for now. +- Specify the gettext package when calling intltool-update. * Wed Jul 01 2009 Milan Crha - 2.27.3-3.fc12 - Rebuild against newer gcc From ajax at fedoraproject.org Thu Jul 2 21:30:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 21:30:46 +0000 (UTC) Subject: rpms/xorg-x11-apps/devel xorg-x11-apps.spec,1.36,1.37 Message-ID: <20090702213046.6F85811C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29036 Modified Files: xorg-x11-apps.spec Log Message: no, really Index: xorg-x11-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/xorg-x11-apps.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- xorg-x11-apps.spec 2 Jul 2009 21:16:43 -0000 1.36 +++ xorg-x11-apps.spec 2 Jul 2009 21:30:46 -0000 1.37 @@ -63,6 +63,7 @@ BuildRequires: libXcursor-devel BuildRequires: libpng-devel BuildRequires: libXfixes-devel BuildRequires: libXi-devel >= 1.2 +BuildRequires: libXxf86vm-devel Requires(pre): xorg-x11-filesystem >= 0.99.2-3 From dcantrel at fedoraproject.org Thu Jul 2 21:35:28 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Thu, 2 Jul 2009 21:35:28 +0000 (UTC) Subject: rpms/dhcp/F-11 dhcp.spec,1.257,1.258 Message-ID: <20090702213528.5C81D11C0418@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/dhcp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30503 Modified Files: dhcp.spec Log Message: * Thu Jul 02 2009 David Cantrell - 12:4.1.0-23 - Correct problems when upgrading from a previous release and your dhcpd.conf file not being placed in /etc/dhcp (#506600) Index: dhcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/F-11/dhcp.spec,v retrieving revision 1.257 retrieving revision 1.258 diff -u -p -r1.257 -r1.258 --- dhcp.spec 27 Jun 2009 03:04:47 -0000 1.257 +++ dhcp.spec 2 Jul 2009 21:34:57 -0000 1.258 @@ -10,7 +10,7 @@ Summary: Dynamic host configuration protocol software Name: dhcp Version: 4.1.0 -Release: 22%{?dist} +Release: 23%{?dist} # NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to # dcantrell maintaining the package) made incorrect use of the epoch and # that's why it is at 12 now. It should have never been used, but it was. @@ -57,6 +57,7 @@ BuildRequires: openldap-devel Requires(post): chkconfig Requires(post): coreutils +Requires(post): policycoreutils Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts @@ -79,6 +80,7 @@ Group: System Environment/Base Requires: initscripts >= 6.75 Requires(post): coreutils Requires(post): grep +Requires(post): policycoreutils Obsoletes: dhcpcd <= 1.3.22pl1-7 Obsoletes: libdhcp4client <= 12:4.0.0-34.fc10 Obsoletes: libdhcp <= 1.99.8-1.fc10 @@ -334,8 +336,20 @@ EOF %{__rm} -rf %{buildroot} %post -if [ -f %{_sysconfdir}/dhcpd.conf ] && [ ! -r %{dhcpconfdir}/dhcpd.conf ]; then - /bin/ln -s %{_sysconfdir}/dhcpd.conf %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 +sampleconf="# +# DHCP Server Configuration file. +# see /usr/share/doc/dhcp*/dhcpd.conf.sample +# see 'man 5 dhcpd.conf' +#" + +contents="$(/bin/cat %{dhcpconfdir}/dhcpd.conf)" +prevconf="%{_sysconfdir}/dhcpd.conf" + +if [ ! -z "${prevconf}" ]; then + if [ ! -f %{dhcpconfdir}/dhcpd.conf -o "${sampleconf}" = "${contents}" ]; then + /bin/cp -a ${prevconf} %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 + /sbin/restorecon %{dhcpconfdir}/dhcpd.conf >/dev/null 2>&1 + fi fi /sbin/chkconfig --add dhcpd @@ -349,7 +363,8 @@ if [ $? = 0 ]; then while read etcfile ; do cf="$(/bin/basename ${etcfile})" if [ -f ${etcfile} ] && [ ! -r %{dhcpconfdir}/${cf} ]; then - /bin/ln -s ${etcfile} %{dhcpconfdir}/${cf} >/dev/null 2>&1 + /bin/cp -a ${etcfile} %{dhcpconfdir}/${cf} >/dev/null 2>&1 + /sbin/restorecon %{dhcpconfdir}/${cf} >/dev/null 2>&1 fi done || : fi || : @@ -429,6 +444,10 @@ fi %attr(0644,root,root) %{_mandir}/man3/omapi.3.gz %changelog +* Thu Jul 02 2009 David Cantrell - 12:4.1.0-23 +- Correct problems when upgrading from a previous release and your + dhcpd.conf file not being placed in /etc/dhcp (#506600) + * Fri Jun 26 2009 David Cantrell - 12:4.1.0-22 - Fix SELinux denials in dhclient-script when the script makes backup configuration files and restores them later (#483747) From mbarnes at fedoraproject.org Thu Jul 2 21:40:16 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 21:40:16 +0000 (UTC) Subject: rpms/evolution/devel sources,1.116.2.9,1.116.2.10 Message-ID: <20090702214016.ADA0F11C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31294 Modified Files: Tag: private-mbarnes-kb sources Log Message: Fix sources. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.9 retrieving revision 1.116.2.10 diff -u -p -r1.116.2.9 -r1.116.2.10 --- sources 2 Jul 2009 21:19:30 -0000 1.116.2.9 +++ sources 2 Jul 2009 21:39:46 -0000 1.116.2.10 @@ -1 +1 @@ -bc04a5368b47135951377eba5c9e545c evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 +acab52b736d636bdb65f1160d9c81145 evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 From nsantos at fedoraproject.org Thu Jul 2 21:41:21 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 21:41:21 +0000 (UTC) Subject: rpms/rhm/devel rhm.spec,1.43,1.44 Message-ID: <20090702214121.5222C11C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/rhm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31645 Modified Files: rhm.spec Log Message: add libuuid-devel req, should be in qpidc-devel? Index: rhm.spec =================================================================== RCS file: /cvs/extras/rpms/rhm/devel/rhm.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- rhm.spec 30 Jun 2009 17:55:28 -0000 1.43 +++ rhm.spec 2 Jul 2009 21:41:21 -0000 1.44 @@ -21,11 +21,11 @@ ExclusiveArch: i386 i586 x86_64 BuildRequires: qpidc-devel = 0.5.%{svnrev_qpid} BuildRequires: qpidd-devel = 0.5.%{svnrev_qpid} +BuildRequires: libuuid-devel BuildRequires: db4-devel BuildRequires: libaio-devel BuildRequires: python BuildRequires: libtool -BuildRequires: e2fsprogs-devel Requires: qpidd = 0.5.%{svnrev_qpid} Requires: db4 From rjones at fedoraproject.org Thu Jul 2 21:44:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 2 Jul 2009 21:44:34 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.34, 1.35 libguestfs.spec, 1.65, 1.66 sources, 1.34, 1.35 Message-ID: <20090702214434.76AC311C0418@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32279 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 - New upstream release 1.0.55. - New manual page libguestfs(3). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 29 Jun 2009 16:42:39 -0000 1.34 +++ .cvsignore 2 Jul 2009 21:44:04 -0000 1.35 @@ -1 +1 @@ -libguestfs-1.0.54.tar.gz +libguestfs-1.0.55.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- libguestfs.spec 29 Jun 2009 16:56:21 -0000 1.65 +++ libguestfs.spec 2 Jul 2009 21:44:04 -0000 1.66 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.54 -Release: 2%{?dist} +Version: 1.0.55 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -412,6 +412,7 @@ rm -rf $RPM_BUILD_ROOT %doc src/generator.ml %{_libdir}/libguestfs.so %{_mandir}/man3/guestfs.3* +%{_mandir}/man3/libguestfs.3* %{_includedir}/guestfs.h %{_includedir}/guestfs-actions.h %{_includedir}/guestfs-structs.h @@ -495,6 +496,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 +- New upstream release 1.0.55. +- New manual page libguestfs(3). + * Mon Jun 29 2009 Richard W.M. Jones - 1.0.54-2 - New upstream release 1.0.54. - +BR perl-XML-Writer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 29 Jun 2009 16:42:39 -0000 1.34 +++ sources 2 Jul 2009 21:44:04 -0000 1.35 @@ -1 +1 @@ -7bc5e8d52cc9c259bfd54eeaa0f56dee libguestfs-1.0.54.tar.gz +55a8f8e119064497956d5ed06ef54dee libguestfs-1.0.55.tar.gz From rjones at fedoraproject.org Thu Jul 2 21:44:40 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 2 Jul 2009 21:44:40 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.16, 1.17 libguestfs.spec, 1.32, 1.33 sources, 1.16, 1.17 Message-ID: <20090702214440.85C8511C0418@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32318 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 - New upstream release 1.0.55. - New manual page libguestfs(3). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 29 Jun 2009 16:42:55 -0000 1.16 +++ .cvsignore 2 Jul 2009 21:44:10 -0000 1.17 @@ -1 +1 @@ -libguestfs-1.0.54.tar.gz +libguestfs-1.0.55.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libguestfs.spec 29 Jun 2009 16:56:05 -0000 1.32 +++ libguestfs.spec 2 Jul 2009 21:44:10 -0000 1.33 @@ -8,8 +8,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.54 -Release: 2%{?dist} +Version: 1.0.55 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -404,6 +404,7 @@ rm -rf $RPM_BUILD_ROOT %doc src/generator.ml %{_libdir}/libguestfs.so %{_mandir}/man3/guestfs.3* +%{_mandir}/man3/libguestfs.3* %{_includedir}/guestfs.h %{_includedir}/guestfs-actions.h %{_includedir}/guestfs-structs.h @@ -487,6 +488,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 +- New upstream release 1.0.55. +- New manual page libguestfs(3). + * Mon Jun 29 2009 Richard W.M. Jones - 1.0.54-2 - New upstream release 1.0.54. - +BR perl-XML-Writer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 29 Jun 2009 16:42:55 -0000 1.16 +++ sources 2 Jul 2009 21:44:10 -0000 1.17 @@ -1 +1 @@ -7bc5e8d52cc9c259bfd54eeaa0f56dee libguestfs-1.0.54.tar.gz +55a8f8e119064497956d5ed06ef54dee libguestfs-1.0.55.tar.gz From rjones at fedoraproject.org Thu Jul 2 21:44:48 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 2 Jul 2009 21:44:48 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.22, 1.23 libguestfs.spec, 1.35, 1.36 sources, 1.22, 1.23 Message-ID: <20090702214448.7D80611C0418@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32298 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 - New upstream release 1.0.55. - New manual page libguestfs(3). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 29 Jun 2009 16:42:53 -0000 1.22 +++ .cvsignore 2 Jul 2009 21:44:18 -0000 1.23 @@ -1 +1 @@ -libguestfs-1.0.54.tar.gz +libguestfs-1.0.55.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libguestfs.spec 29 Jun 2009 16:56:19 -0000 1.35 +++ libguestfs.spec 2 Jul 2009 21:44:18 -0000 1.36 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.54 -Release: 2%{?dist} +Version: 1.0.55 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -414,6 +414,7 @@ rm -rf $RPM_BUILD_ROOT %doc src/generator.ml %{_libdir}/libguestfs.so %{_mandir}/man3/guestfs.3* +%{_mandir}/man3/libguestfs.3* %{_includedir}/guestfs.h %{_includedir}/guestfs-actions.h %{_includedir}/guestfs-structs.h @@ -497,6 +498,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 2 2009 Richard W.M. Jones - 1.0.55-1 +- New upstream release 1.0.55. +- New manual page libguestfs(3). + * Mon Jun 29 2009 Richard W.M. Jones - 1.0.54-2 - New upstream release 1.0.54. - +BR perl-XML-Writer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 29 Jun 2009 16:42:53 -0000 1.22 +++ sources 2 Jul 2009 21:44:18 -0000 1.23 @@ -1 +1 @@ -7bc5e8d52cc9c259bfd54eeaa0f56dee libguestfs-1.0.54.tar.gz +55a8f8e119064497956d5ed06ef54dee libguestfs-1.0.55.tar.gz From buhochileno at fedoraproject.org Thu Jul 2 21:46:14 2009 From: buhochileno at fedoraproject.org (Mauricio Henriquez) Date: Thu, 2 Jul 2009 21:46:14 +0000 (UTC) Subject: rpms/monodevelop-debugger-mdb/devel import.log, NONE, 1.1 monodevelop-debugger-mdb.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702214614.6781011C0418@cvs1.fedora.phx.redhat.com> Author: buhochileno Update of /cvs/pkgs/rpms/monodevelop-debugger-mdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv392/devel Modified Files: .cvsignore sources Added Files: import.log monodevelop-debugger-mdb.spec Log Message: --- NEW FILE import.log --- monodevelop-debugger-mdb-2_0-1_fc10:HEAD:monodevelop-debugger-mdb-2.0-1.fc10.src.rpm:1246571076 --- NEW FILE monodevelop-debugger-mdb.spec --- # rpm does not currently pull debuginfo out of mono packages %global debug_package %{nil} Summary: MonoDevelop Debugger Addin Name: monodevelop-debugger-mdb Version: 2.0 Release: 1%{?dist} License: MIT Group: Development/Tools Source: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{version}.tar.bz2 URL: http://www.monodevelop.com BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: monodevelop = %{version} mono-devel mono-debugger-devel monodevelop-devel mono-addins-devel Requires: mono-debugger >= 2.0 ExclusiveArch: %ix86 x86_64 %description Mono Debugger Addin for MonoDevelop. %package devel Summary: Development files for MonoDevelop Debugger Addin Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel Mono Debugger Addin for MonoDevelop. Development package. The %{name}-devel package contains development files for %{name}. %define assembly_path %{_libdir}/monodevelop/AddIns/MonoDevelop.Debugger/ %prep %setup -q sed -i -e 's!@expanded_libdir@/@PACKAGE@/!%{assembly_path}!g' Mono.Debugging.Backend.Mdb/mono.debugging.backend.mdb.pc.in %build ./configure --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --libdir=%{_libdir} make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{assembly_path} if [ %{_libdir} != "/usr/lib" ]; then mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerClient.dll* \ %{buildroot}%{assembly_path} mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerServer.exe* \ %{buildroot}%{assembly_path} rm -r %{buildroot}/usr/lib ; fi ; %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{assembly_path}DebuggerClient.dll* %{assembly_path}DebuggerServer.exe* %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/mono.debugging.backend.mdb.pc %changelog * Thu Jun 04 2009 Mauricio Henriquez - 2.0-1 - Initial packaging with help by Ryan Bair Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:53:49 -0000 1.1 +++ .cvsignore 2 Jul 2009 21:45:44 -0000 1.2 @@ -0,0 +1 @@ +monodevelop-debugger-mdb-2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:53:50 -0000 1.1 +++ sources 2 Jul 2009 21:45:44 -0000 1.2 @@ -0,0 +1 @@ +a63a3f9cf26dcdb1dfc6b6e5f31cb8a4 monodevelop-debugger-mdb-2.0.tar.bz2 From nsantos at fedoraproject.org Thu Jul 2 21:52:46 2009 From: nsantos at fedoraproject.org (Nuno Santos) Date: Thu, 2 Jul 2009 21:52:46 +0000 (UTC) Subject: rpms/rhm/devel rhm.spec,1.44,1.45 Message-ID: <20090702215246.32E9111C0418@cvs1.fedora.phx.redhat.com> Author: nsantos Update of /cvs/extras/rpms/rhm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1865 Modified Files: rhm.spec Log Message: add libuuid-devel req, should be in qpidc-devel? Index: rhm.spec =================================================================== RCS file: /cvs/extras/rpms/rhm/devel/rhm.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- rhm.spec 2 Jul 2009 21:41:21 -0000 1.44 +++ rhm.spec 2 Jul 2009 21:52:45 -0000 1.45 @@ -59,7 +59,7 @@ rm %{buildroot}%_sysconfdir/rhmd.conf rm -rf %{buildroot} %check -make check +#make check %files %defattr(-,root,root,-) From ajax at fedoraproject.org Thu Jul 2 21:56:54 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 2 Jul 2009 21:56:54 +0000 (UTC) Subject: rpms/xorg-x11-server-utils/devel xorg-x11-server-utils.spec, 1.44, 1.45 Message-ID: <20090702215654.58BA411C0418@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2537 Modified Files: xorg-x11-server-utils.spec Log Message: * Thu Jul 02 2009 Adam Jackson 7.4-9 - Requires: mcpp instead of cpp, and switch xrdb to use it. Index: xorg-x11-server-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server-utils/devel/xorg-x11-server-utils.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xorg-x11-server-utils.spec 2 Jul 2009 20:20:57 -0000 1.44 +++ xorg-x11-server-utils.spec 2 Jul 2009 21:56:24 -0000 1.45 @@ -5,7 +5,7 @@ Summary: X.Org X11 X server utilities Name: xorg-x11-%{pkgname} Version: 7.4 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -61,8 +61,8 @@ BuildRequires: zlib-devel # FIXME: check if still needed for X11R7 Requires(pre): filesystem >= 2.3.7-1 -# xrdb requires the C preprocessor to work properly -Requires: cpp +# xrdb, sigh +Requires: mcpp Requires: libXrandr >= 1.2.0 @@ -113,7 +113,7 @@ Utility to perform keystone adjustments %configure ;; *) - %configure + %configure --with-cpp=/usr/bin/mcpp ;; esac @@ -186,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Jul 02 2009 Adam Jackson 7.4-9 +- Requires: mcpp instead of cpp, and switch xrdb to use it. + * Thu Jul 02 2009 Adam Jackson 7.4-8 - Drop xvidtune, move it to -apps to isolate libXaw deps From pkgdb at fedoraproject.org Thu Jul 2 22:11:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:12 +0000 Subject: [pkgdb] pam_mount: steve has requested watchbugzilla Message-ID: <20090702221112.B821D10F7C4@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on pam_mount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:16 +0000 Subject: [pkgdb] pam_mount: steve has requested watchcommits Message-ID: <20090702221116.B50BB10F893@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on pam_mount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:20 +0000 Subject: [pkgdb] pam_mount: steve has requested commit Message-ID: <20090702221120.0E16310F899@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on pam_mount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:37 +0000 Subject: [pkgdb] pam_mount: steve has requested watchbugzilla Message-ID: <20090702221137.907EC10F7C4@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on pam_mount (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:40 +0000 Subject: [pkgdb] pam_mount: steve has requested watchcommits Message-ID: <20090702221140.441F910F893@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on pam_mount (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:42 +0000 Subject: [pkgdb] pam_mount: steve has requested commit Message-ID: <20090702221143.0B77610F8A3@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on pam_mount (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:47 +0000 Subject: [pkgdb] pam_mount: steve has requested watchbugzilla Message-ID: <20090702221147.7E34510F8A8@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on pam_mount (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:49 +0000 Subject: [pkgdb] pam_mount: steve has requested watchcommits Message-ID: <20090702221149.898B910F89C@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on pam_mount (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 22:11:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:11:52 +0000 Subject: [pkgdb] pam_mount: steve has requested commit Message-ID: <20090702221153.0386010F899@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on pam_mount (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From mbarnes at fedoraproject.org Thu Jul 2 22:24:27 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Thu, 2 Jul 2009 22:24:27 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.394.2.15,1.394.2.16 Message-ID: <20090702222427.943F511C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7490 Modified Files: Tag: private-mbarnes-kb evolution.spec Log Message: Update %files. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.15 retrieving revision 1.394.2.16 diff -u -p -r1.394.2.15 -r1.394.2.16 --- evolution.spec 2 Jul 2009 21:19:30 -0000 1.394.2.15 +++ evolution.spec 2 Jul 2009 22:23:56 -0000 1.394.2.16 @@ -378,14 +378,14 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-mail-notification.schemas > /dev/null -#gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas > /dev/null +gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_evolution_addressbook.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-attachment-reminder.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_evolution_calendar.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-external-editor.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_evolution_shell.schemas > /dev/null -#gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-template-placeholders.schemas > /dev/null -#gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_evolution_email_custom_header.schemas > /dev/null +gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps-evolution-template-placeholders.schemas > /dev/null +gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_evolution_email_custom_header.schemas > /dev/null gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/evolution-mail.schemas > /dev/null %post bogofilter @@ -408,13 +408,13 @@ rm -rf $RPM_BUILD_ROOT # GConf schemas: %{_sysconfdir}/gconf/schemas/apps-evolution-attachment-reminder.schemas %{_sysconfdir}/gconf/schemas/apps-evolution-mail-notification.schemas -#%{_sysconfdir}/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas +%{_sysconfdir}/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas %{_sysconfdir}/gconf/schemas/apps_evolution_addressbook.schemas %{_sysconfdir}/gconf/schemas/apps-evolution-external-editor.schemas %{_sysconfdir}/gconf/schemas/apps_evolution_calendar.schemas %{_sysconfdir}/gconf/schemas/apps_evolution_shell.schemas -#%{_sysconfdir}/gconf/schemas/apps-evolution-template-placeholders.schemas -#%{_sysconfdir}/gconf/schemas/apps_evolution_email_custom_header.schemas +%{_sysconfdir}/gconf/schemas/apps-evolution-template-placeholders.schemas +%{_sysconfdir}/gconf/schemas/apps_evolution_email_custom_header.schemas %{_sysconfdir}/gconf/schemas/evolution-mail.schemas # The main executable @@ -462,8 +462,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/evolution/%{evo_major}/libevolution-addressbook-importers.so.* #%{_libdir}/evolution/%{evo_major}/libevolution-calendar-a11y.so.* %{_libdir}/evolution/%{evo_major}/libevolution-calendar-importers.so.* -#%{_libdir}/evolution/%{evo_major}/libevolution-mail-importers.so.* -#%{_libdir}/evolution/%{evo_major}/libevolution-mail-shared.so.* +%{_libdir}/evolution/%{evo_major}/libevolution-mail-importers.so.* +%{_libdir}/evolution/%{evo_major}/libevolution-mail.so.* %{_libdir}/evolution/%{evo_major}/libevolution-smime.so.* #%{_libdir}/evolution/%{evo_major}/libevolution-widgets-a11y.so.* %{_libdir}/evolution/%{evo_major}/libfilter.so.* @@ -513,14 +513,14 @@ rm -rf $RPM_BUILD_ROOT #%{evo_plugin_dir}/org-gnome-calendar-weather.eplug #%{evo_plugin_dir}/liborg-gnome-calendar-weather.so -#%{evo_plugin_dir}/org-gnome-default-mailer.eplug -#%{evo_plugin_dir}/liborg-gnome-default-mailer.so +%{evo_plugin_dir}/org-gnome-default-mailer.eplug +%{evo_plugin_dir}/liborg-gnome-default-mailer.so %{evo_plugin_dir}/org-gnome-default-source.eplug %{evo_plugin_dir}/liborg-gnome-default-source.so -#%{evo_plugin_dir}/org-gnome-email-custom-header.eplug -#%{evo_plugin_dir}/liborg-gnome-email-custom-header.so +%{evo_plugin_dir}/org-gnome-email-custom-header.eplug +%{evo_plugin_dir}/liborg-gnome-email-custom-header.so %{evo_plugin_dir}/org-gnome-evolution-bbdb.eplug %{evo_plugin_dir}/liborg-gnome-evolution-bbdb.so @@ -534,8 +534,8 @@ rm -rf $RPM_BUILD_ROOT %{evo_plugin_dir}/org-gnome-evolution-profiler.eplug %{evo_plugin_dir}/liborg-gnome-evolution-profiler.so -#%{evo_plugin_dir}/org-gnome-evolution-startup-wizard.eplug -#%{evo_plugin_dir}/liborg-gnome-evolution-startup-wizard.so +%{evo_plugin_dir}/org-gnome-evolution-startup-wizard.eplug +%{evo_plugin_dir}/liborg-gnome-evolution-startup-wizard.so #%{evo_plugin_dir}/org-gnome-exchange-operations.eplug #%{evo_plugin_dir}/liborg-gnome-exchange-operations.so @@ -548,6 +548,9 @@ rm -rf $RPM_BUILD_ROOT %{evo_plugin_dir}/org-gnome-external-editor.eplug %{evo_plugin_dir}/liborg-gnome-external-editor.so +%{evo_plugin_dir}/org-gnome-face.eplug +%{evo_plugin_dir}/liborg-gnome-face.so + #%{evo_plugin_dir}/org-gnome-groupwise-features.eplug #%{evo_plugin_dir}/liborg-gnome-groupwise-features.so #%{evo_plugin_dir}/org-gnome-compose-send-options.xml @@ -568,9 +571,8 @@ rm -rf $RPM_BUILD_ROOT %{evo_plugin_dir}/org-gnome-mail-notification.eplug %{evo_plugin_dir}/liborg-gnome-mail-notification.so -#%{evo_plugin_dir}/org-gnome-mail-to-task.eplug -#%{evo_plugin_dir}/liborg-gnome-mail-to-task.so -#%{evo_plugin_dir}/org-gnome-mail-to-task.xml +%{evo_plugin_dir}/org-gnome-mail-to-task.eplug +%{evo_plugin_dir}/liborg-gnome-mail-to-task.so %{evo_plugin_dir}/org-gnome-mark-all-read.eplug %{evo_plugin_dir}/liborg-gnome-mark-all-read.so @@ -578,8 +580,8 @@ rm -rf $RPM_BUILD_ROOT %{evo_plugin_dir}/org-gnome-plugin-manager.eplug %{evo_plugin_dir}/liborg-gnome-plugin-manager.so -#%{evo_plugin_dir}/org-gnome-prefer-plain.eplug -#%{evo_plugin_dir}/liborg-gnome-prefer-plain.so +%{evo_plugin_dir}/org-gnome-prefer-plain.eplug +%{evo_plugin_dir}/liborg-gnome-prefer-plain.so #%{evo_plugin_dir}/org-gnome-publish-calendar.eplug #%{evo_plugin_dir}/liborg-gnome-publish-calendar.so @@ -591,9 +593,9 @@ rm -rf $RPM_BUILD_ROOT %{evo_plugin_dir}/org-gnome-subject-thread.eplug %{evo_plugin_dir}/liborg-gnome-subject-thread.so -#%{evo_plugin_dir}/templates.glade -#%{evo_plugin_dir}/org-gnome-templates.eplug -#%{evo_plugin_dir}/liborg-gnome-templates.so +%{evo_plugin_dir}/templates.glade +%{evo_plugin_dir}/org-gnome-templates.eplug +%{evo_plugin_dir}/liborg-gnome-templates.so %{evo_plugin_dir}/org-gnome-vcard-inline.eplug %{evo_plugin_dir}/liborg-gnome-vcard-inline.so @@ -624,8 +626,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/evolution/%{evo_major}/libevolution-addressbook-importers.so #%{_libdir}/evolution/%{evo_major}/libevolution-calendar-a11y.so %{_libdir}/evolution/%{evo_major}/libevolution-calendar-importers.so -#%{_libdir}/evolution/%{evo_major}/libevolution-mail-importers.so -#%{_libdir}/evolution/%{evo_major}/libevolution-mail-shared.so +%{_libdir}/evolution/%{evo_major}/libevolution-mail-importers.so +%{_libdir}/evolution/%{evo_major}/libevolution-mail.so %{_libdir}/evolution/%{evo_major}/libevolution-smime.so #%{_libdir}/evolution/%{evo_major}/libevolution-widgets-a11y.so %{_libdir}/evolution/%{evo_major}/libfilter.so From twaugh at fedoraproject.org Thu Jul 2 22:31:05 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 2 Jul 2009 22:31:05 +0000 (UTC) Subject: rpms/foomatic/F-11 foomatic.spec,1.215,1.216 Message-ID: <20090702223105.CB89011C0418@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8651 Modified Files: foomatic.spec Log Message: * Thu Jul 2 2009 Tim Waugh 4.0.2-3 - Removed '-O0' compiler option for foomatic-filters, which had been used for debugging purposes. Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/foomatic.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- foomatic.spec 2 Jul 2009 15:46:04 -0000 1.215 +++ foomatic.spec 2 Jul 2009 22:30:35 -0000 1.216 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 1%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -134,7 +134,7 @@ export CUPS_PPDS=%{_datadir}/cups/model pushd foomatic-filters-%{filtersver} %configure -make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS -O0" +make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS" popd pushd foomatic-db-engine-%{enginever} @@ -242,6 +242,10 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Thu Jul 2 2009 Tim Waugh 4.0.2-3 +- Removed '-O0' compiler option for foomatic-filters, which had been + used for debugging purposes. + * Thu Jul 2 2009 Tim Waugh 4.0.2-1 - Updated db-engine to 4.0.2 (bug #503188). - Updated foomatic-filters to 4.0.2 (bug #496521). From twaugh at fedoraproject.org Thu Jul 2 22:41:51 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 2 Jul 2009 22:41:51 +0000 (UTC) Subject: rpms/foomatic/devel foomatic.spec,1.216,1.217 Message-ID: <20090702224151.C7A0611C0418@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11207 Modified Files: foomatic.spec Log Message: * Thu Jul 2 2009 Tim Waugh 4.0.2-3 - Removed '-O0' compiler option for foomatic-filters, which had been used for debugging purposes. Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- foomatic.spec 2 Jul 2009 15:57:34 -0000 1.216 +++ foomatic.spec 2 Jul 2009 22:41:20 -0000 1.217 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -134,7 +134,7 @@ export CUPS_PPDS=%{_datadir}/cups/model pushd foomatic-filters-%{filtersver} %configure -make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS -O0" +make PREFIX=%{_prefix} CFLAGS="$RPM_OPT_FLAGS" popd pushd foomatic-db-engine-%{enginever} @@ -242,7 +242,11 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog -* Thu Jul 2 2009 Tim Waugh 4.0.2-2 +* Thu Jul 2 2009 Tim Waugh 4.0.2-3 +- Removed '-O0' compiler option for foomatic-filters, which had been + used for debugging purposes. + +* Thu Jul 2 2009 Tim Waugh 4.0.2-1 - Updated db-engine to 4.0.2 (bug #503188). - Updated foomatic-filters to 4.0.2 (bug #496521). - Updated db-hpijs to 20090701. From pkgdb at fedoraproject.org Thu Jul 2 22:49:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:00 +0000 Subject: [pkgdb] libHX: steve has requested watchbugzilla Message-ID: <20090702224900.78E3010F881@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on libHX (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:02 +0000 Subject: [pkgdb] libHX: steve has requested watchcommits Message-ID: <20090702224902.838A210F8AE@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on libHX (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:05 +0000 Subject: [pkgdb] libHX: steve has requested commit Message-ID: <20090702224906.06F5910F88E@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on libHX (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:19 +0000 Subject: [pkgdb] libHX: steve has requested watchbugzilla Message-ID: <20090702224919.08A1910F8A2@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on libHX (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:21 +0000 Subject: [pkgdb] libHX: steve has requested watchcommits Message-ID: <20090702224921.821CB10F8A4@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on libHX (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:23 +0000 Subject: [pkgdb] libHX: steve has requested commit Message-ID: <20090702224923.B2BDE10F7C4@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on libHX (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:33 +0000 Subject: [pkgdb] libHX: steve has requested watchbugzilla Message-ID: <20090702224933.8472010F881@bastion2.fedora.phx.redhat.com> steve has requested the watchbugzilla acl on libHX (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:35 +0000 Subject: [pkgdb] libHX: steve has requested watchcommits Message-ID: <20090702224935.BA56110F8AB@bastion2.fedora.phx.redhat.com> steve has requested the watchcommits acl on libHX (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 22:49:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 22:49:37 +0000 Subject: [pkgdb] libHX: steve has requested commit Message-ID: <20090702224937.D9D5E10F8B5@bastion2.fedora.phx.redhat.com> steve has requested the commit acl on libHX (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From eseyman at fedoraproject.org Thu Jul 2 23:01:41 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 23:01:41 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/devel import.log, NONE, 1.1 perl-CGI-Application-Dispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702230141.E701911C0418@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14516/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Dispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Dispatch-2_16-1_fc11:HEAD:perl-CGI-Application-Dispatch-2.16-1.fc11.src.rpm:1246575600 --- NEW FILE perl-CGI-Application-Dispatch.spec --- Name: perl-CGI-Application-Dispatch Version: 2.16 Release: 1%{?dist} Summary: Dispatch requests to CGI::Application based objects License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Dispatch/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Dispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 3.2 BuildRequires: perl(Exception::Class) BuildRequires: perl(Exception::Class::TryCatch) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::LongString) BuildRequires: perl(Test::More) # Apache::Test must be configured before use. # BuildRequires: perl(Apache::Test) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a way (as a mod_perl handler or running under vanilla CGI) to look at the path (as returned by dispatch_path) of the incoming request, parse off the desired module and it's run mode, create an instance of that module and run it. %prep %setup -q -n CGI-Application-Dispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Thu Jun 25 2009 Emmanuel Seyman 2.16-1 - Update to 2.15 - Tests activated * Mon Dec 22 2008 Emmanuel Seyman 2.15-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 18:50:02 -0000 1.1 +++ .cvsignore 2 Jul 2009 23:01:09 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Dispatch-2.16.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 18:50:02 -0000 1.1 +++ sources 2 Jul 2009 23:01:09 -0000 1.2 @@ -0,0 +1 @@ +365b4b887dc8b60703b97dcbe874fa76 CGI-Application-Dispatch-2.16.tar.gz From eseyman at fedoraproject.org Thu Jul 2 23:04:05 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 23:04:05 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/F-11 import.log, NONE, 1.1 perl-CGI-Application-Dispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702230405.6884E11C0418@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15071/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Dispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Dispatch-2_16-1_fc11:F-11:perl-CGI-Application-Dispatch-2.16-1.fc11.src.rpm:1246575780 --- NEW FILE perl-CGI-Application-Dispatch.spec --- Name: perl-CGI-Application-Dispatch Version: 2.16 Release: 1%{?dist} Summary: Dispatch requests to CGI::Application based objects License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Dispatch/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Dispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 3.2 BuildRequires: perl(Exception::Class) BuildRequires: perl(Exception::Class::TryCatch) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::LongString) BuildRequires: perl(Test::More) # Apache::Test must be configured before use. # BuildRequires: perl(Apache::Test) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a way (as a mod_perl handler or running under vanilla CGI) to look at the path (as returned by dispatch_path) of the incoming request, parse off the desired module and it's run mode, create an instance of that module and run it. %prep %setup -q -n CGI-Application-Dispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Thu Jun 25 2009 Emmanuel Seyman 2.16-1 - Update to 2.15 - Tests activated * Mon Dec 22 2008 Emmanuel Seyman 2.15-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 18:50:02 -0000 1.1 +++ .cvsignore 2 Jul 2009 23:03:34 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Dispatch-2.16.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 18:50:02 -0000 1.1 +++ sources 2 Jul 2009 23:03:35 -0000 1.2 @@ -0,0 +1 @@ +365b4b887dc8b60703b97dcbe874fa76 CGI-Application-Dispatch-2.16.tar.gz From kkofler at fedoraproject.org Thu Jul 2 23:11:06 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Thu, 2 Jul 2009 23:11:06 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace-4.2.95-default-applets.patch, NONE, 1.1 kdebase-workspace.spec, 1.245, 1.246 kdebase-workspace-4.2.0-default_applets.patch, 1.2, NONE Message-ID: <20090702231106.569EE11C0418@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17048/devel Modified Files: kdebase-workspace.spec Added Files: kdebase-workspace-4.2.95-default-applets.patch Removed Files: kdebase-workspace-4.2.0-default_applets.patch Log Message: * Thu Jul 02 2009 Kevin Kofler - 4.2.95-6 - add kde-plasma-networkmanagement to the default panel if installed kdebase-workspace-4.2.95-default-applets.patch: --- NEW FILE kdebase-workspace-4.2.95-default-applets.patch --- diff -ur kdebase-workspace-4.2.95/plasma/shells/desktop/desktopcorona.cpp kdebase-workspace-4.2.95-default-applets/plasma/shells/desktop/desktopcorona.cpp --- kdebase-workspace-4.2.95/plasma/shells/desktop/desktopcorona.cpp 2009-06-17 22:07:42.000000000 +0200 +++ kdebase-workspace-4.2.95-default-applets/plasma/shells/desktop/desktopcorona.cpp 2009-07-03 01:07:27.000000000 +0200 @@ -259,15 +259,22 @@ loadDefaultApplet("tasks", panel); loadDefaultApplet("systemtray", panel); - Plasma::DataEngineManager *engines = Plasma::DataEngineManager::self(); - Plasma::DataEngine *power = engines->loadEngine("powermanagement"); - if (power) { - const QStringList &batteries = power->query("Battery")["sources"].toStringList(); - if (!batteries.isEmpty()) { - loadDefaultApplet("battery", panel); - } + if ( (!QFile::exists("/usr/share/autostart/guidance-power-manager.desktop")) && + (!QFile::exists("/usr/share/autostart/kpowersave-autostart.desktop")) ) { + Plasma::DataEngineManager *engines = Plasma::DataEngineManager::self(); + Plasma::DataEngine *power = engines->loadEngine("powermanagement"); + if (power) { + const QStringList &batteries = power->query("Battery")["sources"].toStringList(); + if (!batteries.isEmpty()) { + loadDefaultApplet("battery", panel); + } + } + engines->unloadEngine("powermanagement"); + } + + if (QFile::exists("/usr/share/kde4/services/plasma-applet-networkmanagement.desktop")) { + loadDefaultApplet("networkmanagement", panel); } - engines->unloadEngine("powermanagement"); loadDefaultApplet("digital-clock", panel); emit containmentAdded(panel); Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.245 retrieving revision 1.246 diff -u -p -r1.245 -r1.246 --- kdebase-workspace.spec 2 Jul 2009 02:24:35 -0000 1.245 +++ kdebase-workspace.spec 2 Jul 2009 23:11:06 -0000 1.246 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.95 -Release: 5%{?dist} +Release: 6%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -23,7 +23,7 @@ Patch8: kdebase-workspace-4.2.85-klipper #??434824: KDE4 System Settings - No Method To Enter Administrative Mode Patch9: kdebase-workspace-4.2.95-rootprivs.patch Patch11: kdebase-workspace-4.1.96-font.patch -Patch12: kdebase-workspace-4.2.0-default_applets.patch +Patch12: kdebase-workspace-4.2.95-default_applets.patch Patch13: kdebase-workspace-4.2.0-pykde4.patch Patch14: kdebase-workspace-4.2.0-klipper-arora.patch Patch15: kdebase-workspace-4.2.0-kio_sysinfo.patch @@ -516,7 +516,10 @@ fi %changelog -* Wed Jul 1 2009 Michel Salim - 4.2.95-5 +* Thu Jul 02 2009 Kevin Kofler - 4.2.95-6 +- add kde-plasma-networkmanagement to the default panel if installed + +* Wed Jul 01 2009 Michel Salim - 4.2.95-5 - rebuild (google-gadgets) * Wed Jul 01 2009 Rex Dieter 4.2.95-4 --- kdebase-workspace-4.2.0-default_applets.patch DELETED --- From eseyman at fedoraproject.org Thu Jul 2 23:17:52 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Thu, 2 Jul 2009 23:17:52 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/F-10 import.log, NONE, 1.1 perl-CGI-Application-Dispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090702231752.B4EE311C0418@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18173/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Dispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Dispatch-2_16-1_fc11:F-10:perl-CGI-Application-Dispatch-2.16-1.fc11.src.rpm:1246576621 --- NEW FILE perl-CGI-Application-Dispatch.spec --- Name: perl-CGI-Application-Dispatch Version: 2.16 Release: 1%{?dist} Summary: Dispatch requests to CGI::Application based objects License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Dispatch/ Source0: http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Application-Dispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 3.2 BuildRequires: perl(Exception::Class) BuildRequires: perl(Exception::Class::TryCatch) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::LongString) BuildRequires: perl(Test::More) # Apache::Test must be configured before use. # BuildRequires: perl(Apache::Test) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides a way (as a mod_perl handler or running under vanilla CGI) to look at the path (as returned by dispatch_path) of the incoming request, parse off the desired module and it's run mode, create an instance of that module and run it. %prep %setup -q -n CGI-Application-Dispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Thu Jun 25 2009 Emmanuel Seyman 2.16-1 - Update to 2.15 - Tests activated * Mon Dec 22 2008 Emmanuel Seyman 2.15-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jul 2009 18:50:02 -0000 1.1 +++ .cvsignore 2 Jul 2009 23:17:22 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Dispatch-2.16.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jul 2009 18:50:02 -0000 1.1 +++ sources 2 Jul 2009 23:17:22 -0000 1.2 @@ -0,0 +1 @@ +365b4b887dc8b60703b97dcbe874fa76 CGI-Application-Dispatch-2.16.tar.gz From ianweller at fedoraproject.org Thu Jul 2 23:32:45 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Thu, 2 Jul 2009 23:32:45 +0000 (UTC) Subject: rpms/terminator/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 terminator.spec, 1.3, 1.4 Message-ID: <20090702233245.A864311C0418@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/terminator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20758 Modified Files: .cvsignore sources terminator.spec Log Message: version 0.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/terminator/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jan 2009 03:09:59 -0000 1.3 +++ .cvsignore 2 Jul 2009 23:32:44 -0000 1.4 @@ -1 +1 @@ -terminator_0.12.tar.gz +terminator_0.13.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/terminator/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jan 2009 03:10:00 -0000 1.3 +++ sources 2 Jul 2009 23:32:44 -0000 1.4 @@ -1 +1 @@ -259b2b1f88de822644e4d57abf857cb7 terminator_0.12.tar.gz +808e48d2b69f3366fb6ea14312ea403e terminator_0.13.tar.gz Index: terminator.spec =================================================================== RCS file: /cvs/pkgs/rpms/terminator/devel/terminator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- terminator.spec 25 Feb 2009 19:55:03 -0000 1.3 +++ terminator.spec 2 Jul 2009 23:32:44 -0000 1.4 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: terminator -Version: 0.12 -Release: 2%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Store and run multiple GNOME terminals in one window Group: User Interface/Desktops @@ -24,9 +24,8 @@ arrangements of terminals for different %prep -%setup -q +%setup -qn %{version} sed -i '/#! \?\/usr.*/d' terminatorlib/*.py -sed -i.versionbump -e "s/0.10/0.11/" terminatorlib/version.py %build @@ -68,6 +67,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 2 2009 Ian Weller - 0.13-1 +- New upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ianweller at fedoraproject.org Thu Jul 2 23:39:39 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Thu, 2 Jul 2009 23:39:39 +0000 (UTC) Subject: rpms/terminator/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 terminator.spec, 1.3, 1.4 Message-ID: <20090702233939.A396111C0418@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/terminator/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22625 Modified Files: .cvsignore sources terminator.spec Log Message: version 0.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jan 2009 03:09:59 -0000 1.3 +++ .cvsignore 2 Jul 2009 23:39:09 -0000 1.4 @@ -1 +1 @@ -terminator_0.12.tar.gz +terminator_0.13.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jan 2009 03:10:00 -0000 1.3 +++ sources 2 Jul 2009 23:39:09 -0000 1.4 @@ -1 +1 @@ -259b2b1f88de822644e4d57abf857cb7 terminator_0.12.tar.gz +808e48d2b69f3366fb6ea14312ea403e terminator_0.13.tar.gz Index: terminator.spec =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-11/terminator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- terminator.spec 25 Feb 2009 19:55:03 -0000 1.3 +++ terminator.spec 2 Jul 2009 23:39:09 -0000 1.4 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: terminator -Version: 0.12 -Release: 2%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Store and run multiple GNOME terminals in one window Group: User Interface/Desktops @@ -24,9 +24,8 @@ arrangements of terminals for different %prep -%setup -q +%setup -qn %{version} sed -i '/#! \?\/usr.*/d' terminatorlib/*.py -sed -i.versionbump -e "s/0.10/0.11/" terminatorlib/version.py %build @@ -68,6 +67,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 2 2009 Ian Weller - 0.13-1 +- New upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ianweller at fedoraproject.org Thu Jul 2 23:41:54 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Thu, 2 Jul 2009 23:41:54 +0000 (UTC) Subject: rpms/terminator/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 terminator.spec, 1.2, 1.3 Message-ID: <20090702234154.9A4CD11C0418@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/terminator/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23075 Modified Files: .cvsignore sources terminator.spec Log Message: version 0.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jan 2009 03:11:07 -0000 1.3 +++ .cvsignore 2 Jul 2009 23:41:24 -0000 1.4 @@ -1 +1 @@ -terminator_0.12.tar.gz +terminator_0.13.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jan 2009 03:11:07 -0000 1.3 +++ sources 2 Jul 2009 23:41:24 -0000 1.4 @@ -1 +1 @@ -259b2b1f88de822644e4d57abf857cb7 terminator_0.12.tar.gz +808e48d2b69f3366fb6ea14312ea403e terminator_0.13.tar.gz Index: terminator.spec =================================================================== RCS file: /cvs/pkgs/rpms/terminator/F-10/terminator.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- terminator.spec 21 Jan 2009 03:11:07 -0000 1.2 +++ terminator.spec 2 Jul 2009 23:41:24 -0000 1.3 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: terminator -Version: 0.12 +Version: 0.13 Release: 1%{?dist} Summary: Store and run multiple GNOME terminals in one window @@ -24,9 +24,8 @@ arrangements of terminals for different %prep -%setup -q +%setup -qn %{version} sed -i '/#! \?\/usr.*/d' terminatorlib/*.py -sed -i.versionbump -e "s/0.10/0.11/" terminatorlib/version.py %build @@ -68,6 +67,12 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 2 2009 Ian Weller - 0.13-1 +- New upstream release + +* Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Jan 20 2009 Ian Weller 0.12-1 - New upstream release - Upstream fixed desktop file, removing patch0 From salimma at fedoraproject.org Thu Jul 2 23:43:15 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 23:43:15 +0000 (UTC) Subject: rpms/liblinebreak/F-10 .cvsignore, 1.2, 1.3 liblinebreak.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090702234315.6C26411C0418@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/liblinebreak/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23391/F-10 Modified Files: .cvsignore liblinebreak.spec sources Log Message: * Thu Jul 2 2009 Michel Salim - 1.2-1 - Update to 1.2 - Build as dynamic library, instead of static Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Jul 2008 06:31:48 -0000 1.2 +++ .cvsignore 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -linebreak-0.9.6-20080421.tar.bz2 +linebreak-1.2.tar.bz2 Index: liblinebreak.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-10/liblinebreak.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- liblinebreak.spec 31 Jul 2008 15:07:31 -0000 1.2 +++ liblinebreak.spec 2 Jul 2009 23:42:45 -0000 1.3 @@ -1,12 +1,13 @@ %define shortname linebreak -%define cvs_date 20080421 +#define cvs_date 20080421 # static library, no useful debug information -%define debug_package %{nil} +#define debug_package %{nil} Name: liblinebreak -Version: 0.9.6 -Release: 0.4.%{cvs_date}cvs%{?dist} +Version: 1.2 +Release: 1%{?dist} +#Release: 0.5.%{cvs_date}cvs%{?dist} Summary: A Unicode line-breaking library Group: Development/Libraries @@ -14,13 +15,14 @@ License: zlib URL: http://vimgadgets.cvs.sourceforge.net/vimgadgets/common/tools/linebreak # to check out: # cvs -z3 -d:pserver:anonymous at vimgadgets.cvs.sourceforge.net:/cvsroot/vimgadgets co -D %{cvs_date} common/tools/linebreak -Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 +Source0: %{shortname}-%{version}.tar.bz2 +#Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#BuildRequires: +BuildRequires: autoconf automake libtool #Requires: -Provides: liblinebreak-devel = %{version}-%{release} -Provides: liblinebreak-static = %{version}-%{release} +#Provides: liblinebreak-devel = %{version}-%{release} +#Provides: liblinebreak-static = %{version}-%{release} %description liblinebreak is an implementation of the line breaking algorithm as @@ -31,38 +33,56 @@ This package currently only provides a s should not be a runtime dependency. +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + %prep %setup -q -n %{shortname} +./bootstrap +%configure --disable-static %build -make CFLAGS="$RPM_OPT_FLAGS -fPIC" %{?_smp_mflags} +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_includedir} $RPM_BUILD_ROOT%{_libdir} -cp -p linebreak.h $RPM_BUILD_ROOT%{_includedir} -cp -p DebugDir/liblinebreak.a $RPM_BUILD_ROOT%{_libdir}/ +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT -#%post -p /sbin/ldconfig +%post -p /sbin/ldconfig -#%postun -p /sbin/ldconfig +%postun -p /sbin/ldconfig %files %defattr(-,root,root,-) -%doc ChangeLog LICENCE README +%doc ChangeLog LICENCE NEWS README +%{_libdir}/*.so.* + +%files devel %{_includedir}/* -%{_libdir}/*.a +%{_libdir}/*.so %changelog +* Thu Jul 2 2009 Michel Salim - 1.2-1 +- Update to 1.2 +- Build as dynamic library, instead of static + * Thu Jul 31 2008 Michel Salim - 0.9.6-0.4.20080421cvs%{?dist} - Rename package to liblinebreak, providing -{devel,static} Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Jul 2008 06:31:48 -0000 1.2 +++ sources 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -15d23a4299d9ace9671e1eefd4adc2a0 linebreak-0.9.6-20080421.tar.bz2 +b7eeeebd51cd9943955ad2e7c98bdbee linebreak-1.2.tar.bz2 From salimma at fedoraproject.org Thu Jul 2 23:43:15 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 23:43:15 +0000 (UTC) Subject: rpms/liblinebreak/F-11 .cvsignore, 1.2, 1.3 liblinebreak.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090702234315.9A53911C0418@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/liblinebreak/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23391/F-11 Modified Files: .cvsignore liblinebreak.spec sources Log Message: * Thu Jul 2 2009 Michel Salim - 1.2-1 - Update to 1.2 - Build as dynamic library, instead of static Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Jul 2008 06:31:48 -0000 1.2 +++ .cvsignore 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -linebreak-0.9.6-20080421.tar.bz2 +linebreak-1.2.tar.bz2 Index: liblinebreak.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-11/liblinebreak.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- liblinebreak.spec 25 Feb 2009 16:04:15 -0000 1.3 +++ liblinebreak.spec 2 Jul 2009 23:42:45 -0000 1.4 @@ -1,12 +1,13 @@ %define shortname linebreak -%define cvs_date 20080421 +#define cvs_date 20080421 # static library, no useful debug information -%define debug_package %{nil} +#define debug_package %{nil} Name: liblinebreak -Version: 0.9.6 -Release: 0.5.%{cvs_date}cvs%{?dist} +Version: 1.2 +Release: 1%{?dist} +#Release: 0.5.%{cvs_date}cvs%{?dist} Summary: A Unicode line-breaking library Group: Development/Libraries @@ -14,13 +15,14 @@ License: zlib URL: http://vimgadgets.cvs.sourceforge.net/vimgadgets/common/tools/linebreak # to check out: # cvs -z3 -d:pserver:anonymous at vimgadgets.cvs.sourceforge.net:/cvsroot/vimgadgets co -D %{cvs_date} common/tools/linebreak -Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 +Source0: %{shortname}-%{version}.tar.bz2 +#Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#BuildRequires: +BuildRequires: autoconf automake libtool #Requires: -Provides: liblinebreak-devel = %{version}-%{release} -Provides: liblinebreak-static = %{version}-%{release} +#Provides: liblinebreak-devel = %{version}-%{release} +#Provides: liblinebreak-static = %{version}-%{release} %description liblinebreak is an implementation of the line breaking algorithm as @@ -31,38 +33,56 @@ This package currently only provides a s should not be a runtime dependency. +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + %prep %setup -q -n %{shortname} +./bootstrap +%configure --disable-static %build -make CFLAGS="$RPM_OPT_FLAGS -fPIC" %{?_smp_mflags} +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_includedir} $RPM_BUILD_ROOT%{_libdir} -cp -p linebreak.h $RPM_BUILD_ROOT%{_includedir} -cp -p DebugDir/liblinebreak.a $RPM_BUILD_ROOT%{_libdir}/ +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT -#%post -p /sbin/ldconfig +%post -p /sbin/ldconfig -#%postun -p /sbin/ldconfig +%postun -p /sbin/ldconfig %files %defattr(-,root,root,-) -%doc ChangeLog LICENCE README +%doc ChangeLog LICENCE NEWS README +%{_libdir}/*.so.* + +%files devel %{_includedir}/* -%{_libdir}/*.a +%{_libdir}/*.so %changelog +* Thu Jul 2 2009 Michel Salim - 1.2-1 +- Update to 1.2 +- Build as dynamic library, instead of static + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-0.5.20080421cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Jul 2008 06:31:48 -0000 1.2 +++ sources 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -15d23a4299d9ace9671e1eefd4adc2a0 linebreak-0.9.6-20080421.tar.bz2 +b7eeeebd51cd9943955ad2e7c98bdbee linebreak-1.2.tar.bz2 From salimma at fedoraproject.org Thu Jul 2 23:43:15 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Thu, 2 Jul 2009 23:43:15 +0000 (UTC) Subject: rpms/liblinebreak/devel .cvsignore, 1.2, 1.3 liblinebreak.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090702234315.BFA3C11C0418@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/liblinebreak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23391/devel Modified Files: .cvsignore liblinebreak.spec sources Log Message: * Thu Jul 2 2009 Michel Salim - 1.2-1 - Update to 1.2 - Build as dynamic library, instead of static Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Jul 2008 06:31:48 -0000 1.2 +++ .cvsignore 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -linebreak-0.9.6-20080421.tar.bz2 +linebreak-1.2.tar.bz2 Index: liblinebreak.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/devel/liblinebreak.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- liblinebreak.spec 25 Feb 2009 16:04:15 -0000 1.3 +++ liblinebreak.spec 2 Jul 2009 23:42:45 -0000 1.4 @@ -1,12 +1,13 @@ %define shortname linebreak -%define cvs_date 20080421 +#define cvs_date 20080421 # static library, no useful debug information -%define debug_package %{nil} +#define debug_package %{nil} Name: liblinebreak -Version: 0.9.6 -Release: 0.5.%{cvs_date}cvs%{?dist} +Version: 1.2 +Release: 1%{?dist} +#Release: 0.5.%{cvs_date}cvs%{?dist} Summary: A Unicode line-breaking library Group: Development/Libraries @@ -14,13 +15,14 @@ License: zlib URL: http://vimgadgets.cvs.sourceforge.net/vimgadgets/common/tools/linebreak # to check out: # cvs -z3 -d:pserver:anonymous at vimgadgets.cvs.sourceforge.net:/cvsroot/vimgadgets co -D %{cvs_date} common/tools/linebreak -Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 +Source0: %{shortname}-%{version}.tar.bz2 +#Source0: %{shortname}-%{version}-%{cvs_date}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#BuildRequires: +BuildRequires: autoconf automake libtool #Requires: -Provides: liblinebreak-devel = %{version}-%{release} -Provides: liblinebreak-static = %{version}-%{release} +#Provides: liblinebreak-devel = %{version}-%{release} +#Provides: liblinebreak-static = %{version}-%{release} %description liblinebreak is an implementation of the line breaking algorithm as @@ -31,38 +33,56 @@ This package currently only provides a s should not be a runtime dependency. +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + %prep %setup -q -n %{shortname} +./bootstrap +%configure --disable-static %build -make CFLAGS="$RPM_OPT_FLAGS -fPIC" %{?_smp_mflags} +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_includedir} $RPM_BUILD_ROOT%{_libdir} -cp -p linebreak.h $RPM_BUILD_ROOT%{_includedir} -cp -p DebugDir/liblinebreak.a $RPM_BUILD_ROOT%{_libdir}/ +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT -#%post -p /sbin/ldconfig +%post -p /sbin/ldconfig -#%postun -p /sbin/ldconfig +%postun -p /sbin/ldconfig %files %defattr(-,root,root,-) -%doc ChangeLog LICENCE README +%doc ChangeLog LICENCE NEWS README +%{_libdir}/*.so.* + +%files devel %{_includedir}/* -%{_libdir}/*.a +%{_libdir}/*.so %changelog +* Thu Jul 2 2009 Michel Salim - 1.2-1 +- Update to 1.2 +- Build as dynamic library, instead of static + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-0.5.20080421cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Jul 2008 06:31:48 -0000 1.2 +++ sources 2 Jul 2009 23:42:45 -0000 1.3 @@ -1 +1 @@ -15d23a4299d9ace9671e1eefd4adc2a0 linebreak-0.9.6-20080421.tar.bz2 +b7eeeebd51cd9943955ad2e7c98bdbee linebreak-1.2.tar.bz2 From cchance at fedoraproject.org Thu Jul 2 23:54:30 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Thu, 2 Jul 2009 23:54:30 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.6,1.7 Message-ID: <20090702235430.A01E111C0418@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25366 Modified Files: ibus-table-cangjie.spec Log Message: rebuilt Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ibus-table-cangjie.spec 1 Jul 2009 06:53:03 -0000 1.6 +++ ibus-table-cangjie.spec 2 Jul 2009 23:54:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.1.0.20090309 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -64,6 +64,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/quick5.png %changelog +* Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090309-12.fc12 +- Rebuilt. + * Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090309-11.fc12 - Rebuilt with ibus-table 1.2.0. From pkgdb at fedoraproject.org Thu Jul 2 23:58:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:29 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235829.11AE210F893@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on pam_mount (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:33 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235833.38A5B10F899@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on pam_mount (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:33 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235834.0B84E10F881@bastion2.fedora.phx.redhat.com> till has set the commit acl on pam_mount (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:45 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235845.8951710F893@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on pam_mount (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:45 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235845.EF9C610F8A8@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on pam_mount (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:46 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235847.22BA710F8A2@bastion2.fedora.phx.redhat.com> till has set the commit acl on pam_mount (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:49 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235849.235DD10F8AC@bastion2.fedora.phx.redhat.com> till has set the commit acl on pam_mount (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:50 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235850.C1D4110F8B2@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on pam_mount (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:58:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:58:55 +0000 Subject: [pkgdb] pam_mount had acl change status Message-ID: <20090702235855.2ABD410F8B4@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on pam_mount (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From pkgdb at fedoraproject.org Thu Jul 2 23:59:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:29 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235929.CADB610F8A3@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on libHX (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:28 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235928.56B3610F89C@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on libHX (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:30 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235930.C410E10F8A9@bastion2.fedora.phx.redhat.com> till has set the commit acl on libHX (Fedora devel) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:38 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235938.DC1E610F8AC@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on libHX (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:39 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235939.ED30210F8B3@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on libHX (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:43 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235943.DB86C10F8B5@bastion2.fedora.phx.redhat.com> till has set the commit acl on libHX (Fedora 10) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:46 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235946.ED5C210F8B9@bastion2.fedora.phx.redhat.com> till has set the watchbugzilla acl on libHX (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:48 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235948.59EF810F8BE@bastion2.fedora.phx.redhat.com> till has set the watchcommits acl on libHX (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Thu Jul 2 23:59:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 02 Jul 2009 23:59:50 +0000 Subject: [pkgdb] libHX had acl change status Message-ID: <20090702235950.3E2A310F8C0@bastion2.fedora.phx.redhat.com> till has set the commit acl on libHX (Fedora 11) to Approved for steve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From cchance at fedoraproject.org Fri Jul 3 00:05:05 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 00:05:05 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel ibus-table-wubi.spec,1.6,1.7 Message-ID: <20090703000505.DF98511C0418@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27346 Modified Files: ibus-table-wubi.spec Log Message: rebuilt Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ibus-table-wubi.spec 1 Jul 2009 05:33:34 -0000 1.6 +++ ibus-table-wubi.spec 3 Jul 2009 00:04:35 -0000 1.7 @@ -1,6 +1,6 @@ Name: ibus-table-wubi Version: 1.1.0.20090327 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Wubi input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -10,9 +10,9 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: ibus-table > 1.1.0.20090609, ibus-table >= 1.1.0.20090610 -Requires(post): ibus-table > 1.1.0.20090609, ibus-table >= 1.1.0.20090610 -BuildRequires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +Requires: ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 +Requires(post): ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 +BuildRequires: ibus >= 1.2.0.20090617, ibus-table >= 1.1.0.20090610 BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description @@ -47,6 +47,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/wubi86.svg %changelog +* Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090316-9.fc12 +- Rebuilt. + * Wed Jul 01 2009 Caius 'kaio' Chance - 1.1.0.20090316-8.fc12 - Corrected by change into installed table directory for index creation. - Further specify package dependencies. From mbarnes at fedoraproject.org Fri Jul 3 00:22:01 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 3 Jul 2009 00:22:01 +0000 (UTC) Subject: rpms/evolution-mapi/devel evolution-mapi-0.27.3-fix-pkg-config.patch, NONE, 1.1 evolution-mapi.spec, 1.10, 1.11 Message-ID: <20090703002201.7DC8211C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31185 Modified Files: evolution-mapi.spec Added Files: evolution-mapi-0.27.3-fix-pkg-config.patch Log Message: * Thu Jul 02 2009 Matthew Barnes - 0.27.3-4 - Remove redundant library flag from pkg-config file. evolution-mapi-0.27.3-fix-pkg-config.patch: --- NEW FILE evolution-mapi-0.27.3-fix-pkg-config.patch --- diff -up evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in.fix-pkg-config evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in --- evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in.fix-pkg-config 2009-07-02 20:18:58.000000000 -0400 +++ evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in 2009-07-02 20:19:06.000000000 -0400 @@ -11,5 +11,5 @@ Name: libexchangemapi Description: Client library for accessing Exchange with LibMAPI Version: @VERSION@ Requires: evolution-data-server- at API_VERSION@ >= @EDS_REQUIRED@ evolution-plugin >= @EVO_REQUIRED@ libmapi = @LIBMAPI_REQUIRED@ -Libs: -L${libdir} -lexchangemapi-1.0 -lmapi +Libs: -L${libdir} -lexchangemapi-1.0 Cflags: -I${privincludedir}/mapi Index: evolution-mapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- evolution-mapi.spec 29 Jun 2009 18:26:24 -0000 1.10 +++ evolution-mapi.spec 3 Jul 2009 00:22:01 -0000 1.11 @@ -12,7 +12,7 @@ Name: evolution-mapi Version: 0.27.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Productivity Summary: Evolution extension for MS Exchange 2007 servers License: LGPLv2+ @@ -20,6 +20,11 @@ URL: http://www.gnome.org/projects/evolu Source: http://ftp.gnome.org/pub/gnome/sources/evolution-mapi/0.25/evolution-mapi-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +### Patches ### + +# Remove redundant library flag from pkg-config file. */ +Patch1: evolution-mapi-0.27.3-fix-pkg-config.patch + ### Dependencies ### Requires: evolution >= %{evo_version} @@ -51,6 +56,7 @@ Development files needed for building th %prep %setup -q +%patch1 -p1 -b .fix-pkg-config %build @@ -107,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexchangemapi-1.0.pc %changelog +* Thu Jul 02 2009 Matthew Barnes - 0.27.3-4 +- Remove redundant library flag from pkg-config file. + * Mon Jun 29 2009 Matthew Barnes - 0.27.3-3 - Rebuild against mutated openchange (see RH bug #503783). From mbarnes at fedoraproject.org Fri Jul 3 00:34:54 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 3 Jul 2009 00:34:54 +0000 (UTC) Subject: rpms/evolution-mapi/devel evolution-mapi-0.27.3-fix-pkg-config.patch, 1.1, 1.2 Message-ID: <20090703003454.BAC9611C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1394 Modified Files: evolution-mapi-0.27.3-fix-pkg-config.patch Log Message: Rework patch. evolution-mapi-0.27.3-fix-pkg-config.patch: Index: evolution-mapi-0.27.3-fix-pkg-config.patch =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi-0.27.3-fix-pkg-config.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- evolution-mapi-0.27.3-fix-pkg-config.patch 3 Jul 2009 00:22:01 -0000 1.1 +++ evolution-mapi-0.27.3-fix-pkg-config.patch 3 Jul 2009 00:34:54 -0000 1.2 @@ -1,3 +1,27 @@ +diff -up evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.am.fix-pkg-config evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.am +--- evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.am.fix-pkg-config 2009-07-02 20:33:55.000000000 -0400 ++++ evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.am 2009-07-02 20:34:11.000000000 -0400 +@@ -27,7 +27,7 @@ liborg_gnome_exchange_mapi_la_LIBADD = + $(LIBECAL_LIBS) \ + $(LIBMAPI_LIBS) + +-liborg_gnome_exchange_mapi_la_LDFLAGS = -module -avoid-version -lmapi $(NO_UNDEFINED) ++liborg_gnome_exchange_mapi_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + liborg_gnome_exchange_mapi_la_CFLAGS = -I/usr/local/samba/include/ + + EXTRA_DIST = \ +diff -up evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.in.fix-pkg-config evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.in +--- evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.in.fix-pkg-config 2009-07-02 20:34:02.000000000 -0400 ++++ evolution-mapi-0.27.3/src/account-setup-eplugin/Makefile.in 2009-07-02 20:34:17.000000000 -0400 +@@ -280,7 +280,7 @@ liborg_gnome_exchange_mapi_la_LIBADD = \ + $(LIBECAL_LIBS) \ + $(LIBMAPI_LIBS) + +-liborg_gnome_exchange_mapi_la_LDFLAGS = -module -avoid-version -lmapi $(NO_UNDEFINED) ++liborg_gnome_exchange_mapi_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + liborg_gnome_exchange_mapi_la_CFLAGS = -I/usr/local/samba/include/ + EXTRA_DIST = \ + org-gnome-exchange-mapi.eplug.xml diff -up evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in.fix-pkg-config evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in --- evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in.fix-pkg-config 2009-07-02 20:18:58.000000000 -0400 +++ evolution-mapi-0.27.3/src/libexchangemapi/libexchangemapi.pc.in 2009-07-02 20:19:06.000000000 -0400 From emoret at fedoraproject.org Fri Jul 3 00:50:41 2009 From: emoret at fedoraproject.org (Eric Moret) Date: Fri, 3 Jul 2009 00:50:41 +0000 (UTC) Subject: rpms/alsa-plugins/devel speex.conf, NONE, 1.1 alsa-plugins.spec, 1.22, 1.23 Message-ID: <20090703005041.65B8311C0418@cvs1.fedora.phx.redhat.com> Author: emoret Update of /cvs/pkgs/rpms/alsa-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4482/devel Modified Files: alsa-plugins.spec Added Files: speex.conf Log Message: Adding speex plugin ***** Error reading new file: [Errno 2] No such file or directory: 'speex.conf' Index: alsa-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-plugins/devel/alsa-plugins.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- alsa-plugins.spec 9 May 2009 05:51:46 -0000 1.22 +++ alsa-plugins.spec 3 Jul 2009 00:50:11 -0000 1.23 @@ -1,6 +1,6 @@ Name: alsa-plugins Version: 1.0.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Advanced Linux Sound Architecture (ALSA) Plugins # All packages are LGPLv2+ with the exception of samplerate which is GPLv2+ License: GPLv2+ and LGPLv2+ @@ -9,6 +9,7 @@ URL: http://www.alsa-project. Source0: ftp://ftp.alsa-project.org/pub/plugins/%{name}-%{version}.tar.bz2 Source1: jack.conf Source2: pcm-oss.conf +Source3: speex.conf Source4: samplerate.conf Source5: upmix.conf Source6: vdownmix.conf @@ -34,10 +35,6 @@ License: LGPLv2+ This plugin converts the ALSA API over JACK (Jack Audio Connection Kit, http://jackit.sf.net) API. ALSA native applications can work transparently together with jackd for both playback and capture. - - ALSA apps (playback) -> ALSA-lib -> JACK plugin -> JACK daemon - ALSA apps (capture) <- ALSA-lib <- JACK plugin <- JACK daemon - This plugin provides the PCM type "jack" %package oss @@ -113,12 +110,23 @@ License: LGPLv2+ This plugin exposes the controls for an Arcam AV amplifier (see: http://www.arcam.co.uk/) as an ALSA mixer device. +%package speex +Requires: speex +BuildRequires: speex-devel +Summary: Rate Converter Plugin Using Speex Resampler +Group: System Environment/Libraries +License: LGPLv2+ +%description speex +The rate plugin is an external rate converter using the Speex resampler +(aka Public Parrot Hack) by Jean-Marc Valin. The pcm plugin provides +pre-processing of a mono stream like denoise using libspeex DSP API. + %prep %setup -q -n %{name}-%{version}%{?prever} %build %configure --disable-static \ - --without-speex + --with-speex=lib make %{?_smp_mflags} %install @@ -127,11 +135,12 @@ make install DESTDIR=$RPM_BUILD_ROOT install -d ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa/pcm install -m 644 %SOURCE1 %SOURCE2 \ - %SOURCE4 %SOURCE5 \ - %SOURCE6 %SOURCE8 \ + %SOURCE3 %SOURCE4 \ + %SOURCE5 %SOURCE6 \ + %SOURCE8 \ ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa/pcm install -m 644 %SOURCE7 \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa + ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa find $RPM_BUILD_ROOT -name "*.la" -exec rm {} \; @@ -205,8 +214,21 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/alsa/pcm/arcamav.conf %{_libdir}/alsa-lib/libasound_module_ctl_arcam_av.so +%files speex +%defattr(-,root,root,-) +%doc COPYING COPYING.GPL doc/speexdsp.txt doc/speexrate.txt +%config(noreplace) %{_sysconfdir}/alsa/pcm/speex.conf +%{_libdir}/alsa-lib/libasound_module_pcm_speex.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate_best.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate_medium.so + %changelog +* Wed Jun 24 2009 Eric Moret - 1.0.20-2 +- Added speex subpackage +- Removed ascii-art from jack's plugin description + * Fri May 8 2009 Eric Moret - 1.0.20-1 - Updated to 1.0.20 - Added arcam-av subpackage From emoret at fedoraproject.org Fri Jul 3 00:50:41 2009 From: emoret at fedoraproject.org (Eric Moret) Date: Fri, 3 Jul 2009 00:50:41 +0000 (UTC) Subject: rpms/alsa-plugins/F-11 speex.conf, NONE, 1.1 alsa-plugins.spec, 1.21, 1.22 Message-ID: <20090703005041.1839111C0418@cvs1.fedora.phx.redhat.com> Author: emoret Update of /cvs/pkgs/rpms/alsa-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4482/F-11 Modified Files: alsa-plugins.spec Added Files: speex.conf Log Message: Adding speex plugin ***** Error reading new file: [Errno 2] No such file or directory: 'speex.conf' Index: alsa-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-plugins/F-11/alsa-plugins.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- alsa-plugins.spec 18 Jun 2009 07:18:00 -0000 1.21 +++ alsa-plugins.spec 3 Jul 2009 00:50:10 -0000 1.22 @@ -1,6 +1,6 @@ Name: alsa-plugins Version: 1.0.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Advanced Linux Sound Architecture (ALSA) Plugins # All packages are LGPLv2+ with the exception of samplerate which is GPLv2+ License: GPLv2+ and LGPLv2+ @@ -9,6 +9,7 @@ URL: http://www.alsa-project. Source0: ftp://ftp.alsa-project.org/pub/plugins/%{name}-%{version}.tar.bz2 Source1: jack.conf Source2: pcm-oss.conf +Source3: speex.conf Source4: samplerate.conf Source5: upmix.conf Source6: vdownmix.conf @@ -34,10 +35,6 @@ License: LGPLv2+ This plugin converts the ALSA API over JACK (Jack Audio Connection Kit, http://jackit.sf.net) API. ALSA native applications can work transparently together with jackd for both playback and capture. - - ALSA apps (playback) -> ALSA-lib -> JACK plugin -> JACK daemon - ALSA apps (capture) <- ALSA-lib <- JACK plugin <- JACK daemon - This plugin provides the PCM type "jack" %package oss @@ -113,12 +110,23 @@ License: LGPLv2+ This plugin exposes the controls for an Arcam AV amplifier (see: http://www.arcam.co.uk/) as an ALSA mixer device. +%package speex +Requires: speex +BuildRequires: speex-devel +Summary: Rate Converter Plugin Using Speex Resampler +Group: System Environment/Libraries +License: LGPLv2+ +%description speex +The rate plugin is an external rate converter using the Speex resampler +(aka Public Parrot Hack) by Jean-Marc Valin. The pcm plugin provides +pre-processing of a mono stream like denoise using libspeex DSP API. + %prep %setup -q -n %{name}-%{version}%{?prever} %build %configure --disable-static \ - --without-speex + --with-speex=lib make %{?_smp_mflags} %install @@ -127,11 +135,12 @@ make install DESTDIR=$RPM_BUILD_ROOT install -d ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa/pcm install -m 644 %SOURCE1 %SOURCE2 \ - %SOURCE4 %SOURCE5 \ - %SOURCE6 %SOURCE8 \ + %SOURCE3 %SOURCE4 \ + %SOURCE5 %SOURCE6 \ + %SOURCE8 \ ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa/pcm install -m 644 %SOURCE7 \ - ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa + ${RPM_BUILD_ROOT}%{_sysconfdir}/alsa find $RPM_BUILD_ROOT -name "*.la" -exec rm {} \; @@ -205,8 +214,21 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/alsa/pcm/arcamav.conf %{_libdir}/alsa-lib/libasound_module_ctl_arcam_av.so +%files speex +%defattr(-,root,root,-) +%doc COPYING COPYING.GPL doc/speexdsp.txt doc/speexrate.txt +%config(noreplace) %{_sysconfdir}/alsa/pcm/speex.conf +%{_libdir}/alsa-lib/libasound_module_pcm_speex.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate_best.so +%{_libdir}/alsa-lib/libasound_module_rate_speexrate_medium.so + %changelog +* Wed Jun 24 2009 Eric Moret - 1.0.20-2 +- Added speex subpackage +- Removed ascii-art from jack's plugin description + * Fri May 8 2009 Eric Moret - 1.0.20-1 - Updated to 1.0.20 - Added arcam-av subpackage From pkgdb at fedoraproject.org Fri Jul 3 01:40:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 01:40:31 +0000 Subject: [pkgdb] id3v2: xiashing has requested watchbugzilla Message-ID: <20090703014031.E161D10F893@bastion2.fedora.phx.redhat.com> xiashing has requested the watchbugzilla acl on id3v2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Fri Jul 3 01:40:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 01:40:35 +0000 Subject: [pkgdb] id3v2: xiashing has requested watchcommits Message-ID: <20090703014035.E124B10F898@bastion2.fedora.phx.redhat.com> xiashing has requested the watchcommits acl on id3v2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From janderson at fedoraproject.org Fri Jul 3 01:52:22 2009 From: janderson at fedoraproject.org (John Anderson) Date: Fri, 3 Jul 2009 01:52:22 +0000 (UTC) Subject: rpms/mumbles/F-11 import.log,1.2,1.3 mumbles.spec,1.5,1.6 Message-ID: <20090703015222.0FDA011C0418@cvs1.fedora.phx.redhat.com> Author: janderson Update of /cvs/pkgs/rpms/mumbles/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16373/F-11 Modified Files: import.log mumbles.spec Log Message: Rebuild the plugins at build time (bug #505070) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 4 Jan 2009 21:15:47 -0000 1.2 +++ import.log 3 Jul 2009 01:51:51 -0000 1.3 @@ -1,2 +1,3 @@ mumbles-0_4-7_fc10:HEAD:mumbles-0.4-7.fc10.src.rpm:1231102993 mumbles-0_4-8_fc10:HEAD:mumbles-0.4-8.fc10.src.rpm:1231103707 +mumbles-0_4-11_fc11:F-11:mumbles-0.4-11.fc11.src.rpm:1246585885 Index: mumbles.spec =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/F-11/mumbles.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mumbles.spec 9 Jun 2009 02:31:31 -0000 1.5 +++ mumbles.spec 3 Jul 2009 01:51:51 -0000 1.6 @@ -3,7 +3,7 @@ Name: mumbles Version: 0.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A plugin driven DBus based notification system for the Gnome desktop Group: User Interface/Desktops @@ -39,11 +39,16 @@ sed -i 's!mumbles.png!mumbles!' bin/mumb %build -#rebuild the Firefox plugin to apply the uri patch -pushd . -cd src/plugins/eggs/firefox -python setup.py bdist_egg -cp dist/FirefoxMumbles-0.1-py%{python_version}.egg ../../ +# build the plugins +find -name '*.egg' | xargs rm -f +pushd src/plugins/eggs +for plugin in * +do + pushd "$plugin" + python setup.py bdist_egg + cp dist/*-py%{python_version}.egg ../../ + popd +done popd CFLAGS="%{optflags}" %{__python} setup.py build @@ -100,6 +105,9 @@ fi %changelog +* Wed Jun 10 2009 Tim Waugh 0.4-11 +- Rebuild the plugins at build time (bug #505070). + * Mon Jun 8 2009 John Anderson - 0.4-10 - Fixed path to make mumbles run on x86_64 bug #479158 - Security fix for Firefox plugin bug #479171 From pkgdb at fedoraproject.org Fri Jul 3 01:54:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 01:54:28 +0000 Subject: [pkgdb] dumpasn1: xiashing has requested watchcommits Message-ID: <20090703015428.F1F7110F893@bastion2.fedora.phx.redhat.com> xiashing has requested the watchcommits acl on dumpasn1 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Fri Jul 3 01:54:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 01:54:30 +0000 Subject: [pkgdb] dumpasn1: xiashing has requested watchbugzilla Message-ID: <20090703015431.0091310F898@bastion2.fedora.phx.redhat.com> xiashing has requested the watchbugzilla acl on dumpasn1 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From janderson at fedoraproject.org Fri Jul 3 02:05:55 2009 From: janderson at fedoraproject.org (John Anderson) Date: Fri, 3 Jul 2009 02:05:55 +0000 (UTC) Subject: rpms/mumbles/devel import.log,1.2,1.3 mumbles.spec,1.4,1.5 Message-ID: <20090703020556.00D4611C0418@cvs1.fedora.phx.redhat.com> Author: janderson Update of /cvs/pkgs/rpms/mumbles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18783/devel Modified Files: import.log mumbles.spec Log Message: Rebuild the plugins at build time (bug #505070) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 4 Jan 2009 21:15:47 -0000 1.2 +++ import.log 3 Jul 2009 02:05:25 -0000 1.3 @@ -1,2 +1,3 @@ mumbles-0_4-7_fc10:HEAD:mumbles-0.4-7.fc10.src.rpm:1231102993 mumbles-0_4-8_fc10:HEAD:mumbles-0.4-8.fc10.src.rpm:1231103707 +mumbles-0_4-11_fc11:HEAD:mumbles-0.4-11.fc11.src.rpm:1246586714 Index: mumbles.spec =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/devel/mumbles.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mumbles.spec 9 Jun 2009 02:41:58 -0000 1.4 +++ mumbles.spec 3 Jul 2009 02:05:25 -0000 1.5 @@ -3,7 +3,7 @@ Name: mumbles Version: 0.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A plugin driven DBus based notification system for the Gnome desktop Group: User Interface/Desktops @@ -39,11 +39,16 @@ sed -i 's!mumbles.png!mumbles!' bin/mumb %build -#rebuild the Firefox plugin to apply the uri patch -pushd . -cd src/plugins/eggs/firefox -python setup.py bdist_egg -cp dist/FirefoxMumbles-0.1-py%{python_version}.egg ../../ +# build the plugins +find -name '*.egg' | xargs rm -f +pushd src/plugins/eggs +for plugin in * +do + pushd "$plugin" + python setup.py bdist_egg + cp dist/*-py%{python_version}.egg ../../ + popd +done popd CFLAGS="%{optflags}" %{__python} setup.py build @@ -100,6 +105,9 @@ fi %changelog +* Wed Jun 10 2009 Tim Waugh 0.4-11 +- Rebuild the plugins at build time (bug #505070). + * Mon Jun 8 2009 John Anderson - 0.4-10 - Fixed path to make mumbles run on x86_64 bug #479158 - Security fix for Firefox plugin bug #479171 From janderson at fedoraproject.org Fri Jul 3 02:06:30 2009 From: janderson at fedoraproject.org (John Anderson) Date: Fri, 3 Jul 2009 02:06:30 +0000 (UTC) Subject: rpms/mumbles/F-10 import.log,1.3,1.4 mumbles.spec,1.4,1.5 Message-ID: <20090703020630.5FDCD11C0418@cvs1.fedora.phx.redhat.com> Author: janderson Update of /cvs/pkgs/rpms/mumbles/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19074/F-10 Modified Files: import.log mumbles.spec Log Message: Rebuild the plugins at build time (bug #505070) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 9 Jan 2009 16:30:45 -0000 1.3 +++ import.log 3 Jul 2009 02:06:30 -0000 1.4 @@ -1,3 +1,4 @@ mumbles-0_4-7_fc10:F-10:mumbles-0.4-7.fc10.src.rpm:1231103124 mumbles-0_4-8_fc10:F-10:mumbles-0.4-8.fc10.src.rpm:1231103616 mumbles-0_4-9_fc10:F-10:mumbles-0.4-9.fc10.src.rpm:1231518573 +mumbles-0_4-11_fc11:F-10:mumbles-0.4-11.fc11.src.rpm:1246586777 Index: mumbles.spec =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/F-10/mumbles.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mumbles.spec 9 Jan 2009 16:30:45 -0000 1.4 +++ mumbles.spec 3 Jul 2009 02:06:30 -0000 1.5 @@ -3,7 +3,7 @@ Name: mumbles Version: 0.4 -Release: 9%{?dist} +Release: 11%{?dist} Summary: A plugin driven DBus based notification system for the Gnome desktop Group: User Interface/Desktops @@ -22,7 +22,7 @@ BuildRequires: desktop-file-utils BuildArch: noarch -Requires: pygtk2 dbus dbus-python pycairo pygtk2-libglade +Requires: pygtk2 dbus dbus-python pycairo pygtk2-libglade python-setuptools %description Mumbles is a plugin driven, DBus based notification system written for the @@ -39,11 +39,16 @@ sed -i 's!mumbles.png!mumbles!' bin/mumb %build -#rebuild the Firefox plugin to apply the uri patch -pushd . -cd src/plugins/eggs/firefox -python setup.py bdist_egg -cp dist/FirefoxMumbles-0.1-py%{python_version}.egg ../../ +# build the plugins +find -name '*.egg' | xargs rm -f +pushd src/plugins/eggs +for plugin in * +do + pushd "$plugin" + python setup.py bdist_egg + cp dist/*-py%{python_version}.egg ../../ + popd +done popd CFLAGS="%{optflags}" %{__python} setup.py build @@ -100,9 +105,16 @@ fi %changelog -* Fri Jan 9 2009 John Anderson - 0.4-9 +* Wed Jun 10 2009 Tim Waugh 0.4-11 +- Rebuild the plugins at build time (bug #505070). + +* Mon Jun 8 2009 John Anderson - 0.4-10 - Fixed path to make mumbles run on x86_64 bug #479158 - Security fix for Firefox plugin bug #479171 +- Added buildrequires to fix bug #481188 + +* Wed Feb 25 2009 Fedora Release Engineering - 0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Jan 4 2009 John Anderson - 0.4-8 - Added GNOME and GTK categories to desktop file From mbarnes at fedoraproject.org Fri Jul 3 02:26:46 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 3 Jul 2009 02:26:46 +0000 (UTC) Subject: rpms/evolution-data-server/devel evolution-data-server-2.27.3-category-crash.patch, NONE, 1.1 evolution-data-server.spec, 1.265, 1.266 Message-ID: <20090703022646.3743611C0418@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23520 Modified Files: evolution-data-server.spec Added Files: evolution-data-server-2.27.3-category-crash.patch Log Message: * Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.fc12 - Add patch for RH bug #505661 (crash on startup). evolution-data-server-2.27.3-category-crash.patch: --- NEW FILE evolution-data-server-2.27.3-category-crash.patch --- diff -up evolution-data-server-2.27.3/libedataserver/e-categories.c.category-crash evolution-data-server-2.27.3/libedataserver/e-categories.c --- evolution-data-server-2.27.3/libedataserver/e-categories.c.category-crash 2009-06-12 08:20:13.000000000 -0400 +++ evolution-data-server-2.27.3/libedataserver/e-categories.c 2009-07-02 22:23:01.000000000 -0400 @@ -399,6 +399,7 @@ load_default_categories (void) gettext (cat_info->category), NULL, icon_file, TRUE); g_free (icon_file); + icon_file = NULL; cat_info++; } } Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v retrieving revision 1.265 retrieving revision 1.266 diff -u -p -r1.265 -r1.266 --- evolution-data-server.spec 1 Jul 2009 09:58:14 -0000 1.265 +++ evolution-data-server.spec 3 Jul 2009 02:26:15 -0000 1.266 @@ -28,7 +28,7 @@ Name: evolution-data-server Version: 2.27.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -50,6 +50,9 @@ Patch11: evolution-data-server-1.10.1-ca # RH bug #243296 Patch12: evolution-data-server-1.11.5-fix-64bit-acinclude.patch +# RH bug #505661 / GNOME bug #587165 +Patch13: evolution-data-server-2.27.3-category-crash.patch + ### Build Dependencies ### BuildRequires: GConf2-devel @@ -133,6 +136,7 @@ This package contains developer document %patch10 -p1 -b .fix-ldap-query %patch11 -p1 -b .camel-folder-summary-crash %patch12 -p1 -b .fix-64bit-acinclude +%patch13 -p1 -b .category-crash mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -361,6 +365,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.fc12 +- Add patch for RH bug #505661 (crash on startup). + * Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 - Rebuild against newer gcc From cebbert at fedoraproject.org Fri Jul 3 02:31:34 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 3 Jul 2009 02:31:34 +0000 (UTC) Subject: rpms/kernel/F-11 patch-2.6.29.6.bz2.sign, NONE, 1.1 .cvsignore, 1.1047, 1.1048 kernel.spec, 1.1671, 1.1672 sources, 1.1009, 1.1010 upstream, 1.920, 1.921 patch-2.6.29.5.bz2.sign, 1.1, NONE patch-2.6.29.6-rc1.bz2.sign, 1.1, NONE Message-ID: <20090703023134.B204111C0418@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24588 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.29.6.bz2.sign Removed Files: patch-2.6.29.5.bz2.sign patch-2.6.29.6-rc1.bz2.sign Log Message: Linux 2.6.29.6 --- NEW FILE patch-2.6.29.6.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKTUqyyGugalF9Dw4RAua8AJ4xHeiXiSQ99D7K+D6++q8gLsIdtwCfXS1H ZiEXeq3y+NXWEiz0+wO/Qwc= =qOmM -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/.cvsignore,v retrieving revision 1.1047 retrieving revision 1.1048 diff -u -p -r1.1047 -r1.1048 --- .cvsignore 1 Jul 2009 02:26:10 -0000 1.1047 +++ .cvsignore 3 Jul 2009 02:31:04 -0000 1.1048 @@ -5,5 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.29 linux-2.6.29.tar.bz2 -patch-2.6.29.5.bz2 -patch-2.6.29.6-rc1.bz2 +patch-2.6.29.6.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1671 retrieving revision 1.1672 diff -u -p -r1.1671 -r1.1672 --- kernel.spec 1 Jul 2009 02:26:10 -0000 1.1671 +++ kernel.spec 3 Jul 2009 02:31:04 -0000 1.1672 @@ -39,7 +39,7 @@ Summary: The Linux kernel # Do we have a -stable update to apply? %define stable_update 6 # Is it a -stable RC? -%define stable_rc 1 +%define stable_rc 0 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev .%{stable_update} @@ -2091,6 +2091,9 @@ fi # and build. %changelog +* Thu Jul 02 2009 Chuck Ebbert 2.6.29.6-210 +- Linux 2.6.29.6 + * Wed Jul 01 2009 Chuck Ebbert 2.6.29.6-209.rc1 - Linux 2.6.29.6-rc1 - Enable CONFIG_DEBUG_CREDENTIALS in debug kernels only. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/sources,v retrieving revision 1.1009 retrieving revision 1.1010 diff -u -p -r1.1009 -r1.1010 --- sources 1 Jul 2009 02:26:10 -0000 1.1009 +++ sources 3 Jul 2009 02:31:04 -0000 1.1010 @@ -1,3 +1,2 @@ 64921b5ff5cdadbccfcd3820f03be7d8 linux-2.6.29.tar.bz2 -bd23086872a85c9fd00163e9ab78038a patch-2.6.29.5.bz2 -40677f71b9e485bebe73d95ac4ea70a6 patch-2.6.29.6-rc1.bz2 +0317760b52c9ac7a11de997da19a366e patch-2.6.29.6.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/upstream,v retrieving revision 1.920 retrieving revision 1.921 diff -u -p -r1.920 -r1.921 --- upstream 1 Jul 2009 02:26:10 -0000 1.920 +++ upstream 3 Jul 2009 02:31:04 -0000 1.921 @@ -1,3 +1,2 @@ linux-2.6.29.tar.bz2 -patch-2.6.29.5.bz2 -patch-2.6.29.6-rc1.bz2 +patch-2.6.29.6.bz2 --- patch-2.6.29.5.bz2.sign DELETED --- --- patch-2.6.29.6-rc1.bz2.sign DELETED --- From cebbert at fedoraproject.org Fri Jul 3 02:37:04 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 3 Jul 2009 02:37:04 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-nfsd-cred-refcount-fix.patch, NONE, 1.1 kernel.spec, 1.1672, 1.1673 linux-2.6-debug-selinux-null-creds.patch, 1.5, NONE Message-ID: <20090703023704.0B54711C0418@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25806 Modified Files: kernel.spec Added Files: linux-2.6-nfsd-cred-refcount-fix.patch Removed Files: linux-2.6-debug-selinux-null-creds.patch Log Message: Fix NFSD null credentials bug (#494067) Remove null credentials debugging patch. linux-2.6-nfsd-cred-refcount-fix.patch: --- NEW FILE linux-2.6-nfsd-cred-refcount-fix.patch --- From: David Howells Subject: [PATCH] NFSD: Don't hold unrefcounted creds over call to nfsd_setuser() nfsd_open() gets an unrefcounted pointer to the current process's effective credentials at the top of the function, then calls nfsd_setuser() via fh_verify() - which may replace and destroy the current process's effective credentials - and then passes the unrefcounted pointer to dentry_open() - but the credentials may have been destroyed by this point. Instead, the value from current_cred() should be passed directly to dentry_open() as one of its arguments, rather than being cached in a variable. Possibly fh_verify() should return the creds to use. Signed-off-by: David Howells --- fs/nfsd/vfs.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 4145083..23341c1 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -678,7 +678,6 @@ __be32 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access, struct file **filp) { - const struct cred *cred = current_cred(); struct dentry *dentry; struct inode *inode; int flags = O_RDONLY|O_LARGEFILE; @@ -733,7 +732,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, vfs_dq_init(inode); } *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt), - flags, cred); + flags, current_cred()); if (IS_ERR(*filp)) host_err = PTR_ERR(*filp); else Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1672 retrieving revision 1.1673 diff -u -p -r1.1672 -r1.1673 --- kernel.spec 3 Jul 2009 02:31:04 -0000 1.1672 +++ kernel.spec 3 Jul 2009 02:37:03 -0000 1.1673 @@ -624,7 +624,6 @@ Patch270: linux-2.6-debug-taint-vm.patch Patch280: linux-2.6-debug-spinlock-taint.patch Patch340: linux-2.6-debug-vm-would-have-oomkilled.patch Patch360: linux-2.6-debug-always-inline-kzalloc.patch -Patch370: linux-2.6-debug-selinux-null-creds.patch Patch380: linux-2.6-defaults-pci_no_msi.patch Patch381: linux-2.6-pciehp-update.patch Patch382: linux-2.6-defaults-pciehp.patch @@ -769,6 +768,7 @@ Patch6100: linux-2.6-fs-cifs-fix-port-nu Patch9001: revert-fix-modules_install-via-nfs.patch Patch9010: linux-2.6-nfsd-report-short-writes.patch Patch9020: linux-2.6-nfsd-report-short-writes-fix.patch +Patch9030: linux-2.6-nfsd-cred-refcount-fix.patch Patch9100: cpufreq-add-atom-to-p4-clockmod.patch # VIA processors: enable pstates @@ -1277,7 +1277,6 @@ ApplyPatch linux-2.6-debug-taint-vm.patc ApplyPatch linux-2.6-debug-spinlock-taint.patch ApplyPatch linux-2.6-debug-vm-would-have-oomkilled.patch ApplyPatch linux-2.6-debug-always-inline-kzalloc.patch -ApplyPatch linux-2.6-debug-selinux-null-creds.patch # # PCI @@ -1473,6 +1472,8 @@ ApplyPatch squashfs-broken-when-pagesize ApplyPatch linux-2.6-nfsd-report-short-writes.patch # fix the short write fix (#508174) ApplyPatch linux-2.6-nfsd-report-short-writes-fix.patch +# Fix null credential bug (#494067) +ApplyPatch linux-2.6-nfsd-cred-refcount-fix.patch # fix cifs mount option "port=" (#506574) ApplyPatch linux-2.6-fs-cifs-fix-port-numbers.patch @@ -2091,6 +2092,10 @@ fi # and build. %changelog +* Thu Jul 02 2009 Chuck Ebbert 2.6.29.6-211 +- Fix NFSD null credentials bug (#494067) +- Remove null credentials debugging patch. + * Thu Jul 02 2009 Chuck Ebbert 2.6.29.6-210 - Linux 2.6.29.6 --- linux-2.6-debug-selinux-null-creds.patch DELETED --- From janderson at fedoraproject.org Fri Jul 3 02:47:14 2009 From: janderson at fedoraproject.org (John Anderson) Date: Fri, 3 Jul 2009 02:47:14 +0000 (UTC) Subject: rpms/gnome-rdp/F-11 gnome-rdp-vnc.patch, NONE, 1.1 gnome-rdp.spec, 1.2, 1.3 import.log, 1.1, 1.2 Message-ID: <20090703024714.B140411C0418@cvs1.fedora.phx.redhat.com> Author: janderson Update of /cvs/pkgs/rpms/gnome-rdp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28455/F-11 Modified Files: gnome-rdp.spec import.log Added Files: gnome-rdp-vnc.patch Log Message: Fixing VNC for f11 gnome-rdp-vnc.patch: --- NEW FILE gnome-rdp-vnc.patch --- diff -uNr gnome-rdp-orig/src/Main.cs gnome-rdp-0.2.3/src/Main.cs --- gnome-rdp-orig/src/Main.cs 2008-06-28 01:48:17.000000000 -0500 +++ gnome-rdp-0.2.3/src/Main.cs 2009-07-02 21:28:56.227680012 -0500 @@ -319,7 +319,7 @@ Console.WriteLine(par); prc = new ProcessCaller( - "xtightvncviewer", + "vncviewer", par, "/", false, Index: gnome-rdp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-rdp/F-11/gnome-rdp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-rdp.spec 24 Feb 2009 23:19:55 -0000 1.2 +++ gnome-rdp.spec 3 Jul 2009 02:47:14 -0000 1.3 @@ -2,7 +2,7 @@ Name: gnome-rdp Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Remote Desktop Protocol client for the GNOME desktop environment Group: Applications/Internet @@ -10,6 +10,7 @@ License: GPLv3+ URL: http://sourceforge.net/projects/gnome-rdp Source0: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz Patch0: gnome-keyring-version.patch +Patch1: gnome-rdp-vnc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Various Mono dependencies are not available for ppc64; mostly listed in bug 241850. @@ -38,6 +39,9 @@ BuildRequires: openssh-clients BuildRequires: gnome-terminal Requires: rdesktop >= 1.6.0 +Requires: tigervnc +# for vncpasswd +Requires: tigervnc-server %description gnome-rdp is a Remote Desktop Protocol client for the GNOME desktop @@ -48,6 +52,7 @@ the built in list. %setup -q %patch0 -p1 +%patch1 -p1 %build nant -D:prefix=%{_prefix} -D:libdir=%{_libdir} @@ -78,6 +83,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/gnome-rdp.png %changelog +* Thu Jul 02 2009 John Anderson - 0.2.3-4 +- Fix vnc for bug #508302 + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gnome-rdp/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 Oct 2008 13:31:13 -0000 1.1 +++ import.log 3 Jul 2009 02:47:14 -0000 1.2 @@ -1 +1,2 @@ gnome-rdp-0_2_3-2_fc9:HEAD:gnome-rdp-0.2.3-2.fc10.src.rpm:1225114162 +gnome-rdp-0_2_3-4_fc11:F-11:gnome-rdp-0.2.3-4.fc11.src.rpm:1246589223 From janderson at fedoraproject.org Fri Jul 3 02:48:21 2009 From: janderson at fedoraproject.org (John Anderson) Date: Fri, 3 Jul 2009 02:48:21 +0000 (UTC) Subject: rpms/gnome-rdp/devel gnome-rdp-vnc.patch, NONE, 1.1 gnome-rdp.spec, 1.2, 1.3 import.log, 1.1, 1.2 Message-ID: <20090703024821.8850711C0418@cvs1.fedora.phx.redhat.com> Author: janderson Update of /cvs/pkgs/rpms/gnome-rdp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28708/devel Modified Files: gnome-rdp.spec import.log Added Files: gnome-rdp-vnc.patch Log Message: Fixing VNC for rawhide gnome-rdp-vnc.patch: --- NEW FILE gnome-rdp-vnc.patch --- diff -uNr gnome-rdp-orig/src/Main.cs gnome-rdp-0.2.3/src/Main.cs --- gnome-rdp-orig/src/Main.cs 2008-06-28 01:48:17.000000000 -0500 +++ gnome-rdp-0.2.3/src/Main.cs 2009-07-02 21:28:56.227680012 -0500 @@ -319,7 +319,7 @@ Console.WriteLine(par); prc = new ProcessCaller( - "xtightvncviewer", + "vncviewer", par, "/", false, Index: gnome-rdp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-rdp/devel/gnome-rdp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-rdp.spec 24 Feb 2009 23:19:55 -0000 1.2 +++ gnome-rdp.spec 3 Jul 2009 02:47:51 -0000 1.3 @@ -2,7 +2,7 @@ Name: gnome-rdp Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Remote Desktop Protocol client for the GNOME desktop environment Group: Applications/Internet @@ -10,6 +10,7 @@ License: GPLv3+ URL: http://sourceforge.net/projects/gnome-rdp Source0: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz Patch0: gnome-keyring-version.patch +Patch1: gnome-rdp-vnc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Various Mono dependencies are not available for ppc64; mostly listed in bug 241850. @@ -38,6 +39,9 @@ BuildRequires: openssh-clients BuildRequires: gnome-terminal Requires: rdesktop >= 1.6.0 +Requires: tigervnc +# for vncpasswd +Requires: tigervnc-server %description gnome-rdp is a Remote Desktop Protocol client for the GNOME desktop @@ -48,6 +52,7 @@ the built in list. %setup -q %patch0 -p1 +%patch1 -p1 %build nant -D:prefix=%{_prefix} -D:libdir=%{_libdir} @@ -78,6 +83,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/gnome-rdp.png %changelog +* Thu Jul 02 2009 John Anderson - 0.2.3-4 +- Fix vnc for bug #508302 + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gnome-rdp/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 Oct 2008 13:31:13 -0000 1.1 +++ import.log 3 Jul 2009 02:47:51 -0000 1.2 @@ -1 +1,2 @@ gnome-rdp-0_2_3-2_fc9:HEAD:gnome-rdp-0.2.3-2.fc10.src.rpm:1225114162 +gnome-rdp-0_2_3-4_fc11:HEAD:gnome-rdp-0.2.3-4.fc11.src.rpm:1246589254 From mclasen at fedoraproject.org Fri Jul 3 03:23:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 3 Jul 2009 03:23:22 +0000 (UTC) Subject: rpms/gedit/F-11 .cvsignore, 1.90, 1.91 gedit.spec, 1.192, 1.193 sources, 1.92, 1.93 Message-ID: <20090703032322.2695A11C0097@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gedit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3271 Modified Files: .cvsignore gedit.spec sources Log Message: 2.26.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gedit/F-11/.cvsignore,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- .cvsignore 1 Jun 2009 17:26:04 -0000 1.90 +++ .cvsignore 3 Jul 2009 03:22:51 -0000 1.91 @@ -1 +1 @@ -gedit-2.26.2.tar.bz2 +gedit-2.26.3.tar.bz2 Index: gedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit/F-11/gedit.spec,v retrieving revision 1.192 retrieving revision 1.193 diff -u -p -r1.192 -r1.193 --- gedit.spec 1 Jun 2009 17:26:04 -0000 1.192 +++ gedit.spec 3 Jul 2009 03:22:51 -0000 1.193 @@ -17,7 +17,7 @@ Summary: Text editor for the GNOME desktop Name: gedit -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL @@ -225,6 +225,10 @@ fi %changelog +* Thu Jul 2 2009 Matthias Clasen - 1:2.26.3-1 +- Update to 2.26.3 +- See http://download.gnome.org/sources/gedit/2.26/gedit-2.26.3.news + * Mon Jun 1 2009 Matthias Clasen - 1:2.26.2-1 - Update to 2.26.2 - See http://download.gnome.org/sources/gedit/2.26/gedit-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gedit/F-11/sources,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- sources 1 Jun 2009 17:26:04 -0000 1.92 +++ sources 3 Jul 2009 03:22:51 -0000 1.93 @@ -1 +1 @@ -ef8c98051c03d0caf0c75456e48c25b0 gedit-2.26.2.tar.bz2 +0cdaad6b02af250c9c110010d0a708b2 gedit-2.26.3.tar.bz2 From cebbert at fedoraproject.org Fri Jul 3 04:05:56 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 3 Jul 2009 04:05:56 +0000 (UTC) Subject: rpms/kernel/F-10 patch-2.6.29.6.bz2.sign, NONE, 1.1 .cvsignore, 1.1009, 1.1010 kernel.spec, 1.1389, 1.1390 sources, 1.970, 1.971 upstream, 1.881, 1.882 linux-2.6-input-atkbd-forced-release.patch, 1.1, NONE linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch, 1.1, NONE patch-2.6.29.5.bz2.sign, 1.1, NONE Message-ID: <20090703040556.CA7EB11C048C@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28526 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.29.6.bz2.sign Removed Files: linux-2.6-input-atkbd-forced-release.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch patch-2.6.29.5.bz2.sign Log Message: Linux 2.6.29.6 Dropped patches merged in -stable: linux-2.6-input-atkbd-forced-release.patch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch --- NEW FILE patch-2.6.29.6.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKTUqyyGugalF9Dw4RAua8AJ4xHeiXiSQ99D7K+D6++q8gLsIdtwCfXS1H ZiEXeq3y+NXWEiz0+wO/Qwc= =qOmM -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/.cvsignore,v retrieving revision 1.1009 retrieving revision 1.1010 diff -u -p -r1.1009 -r1.1010 --- .cvsignore 16 Jun 2009 00:22:32 -0000 1.1009 +++ .cvsignore 3 Jul 2009 04:05:55 -0000 1.1010 @@ -5,4 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.29 linux-2.6.29.tar.bz2 -patch-2.6.29.5.bz2 +patch-2.6.29.6.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1389 retrieving revision 1.1390 diff -u -p -r1.1389 -r1.1390 --- kernel.spec 1 Jul 2009 03:38:05 -0000 1.1389 +++ kernel.spec 3 Jul 2009 04:05:56 -0000 1.1390 @@ -36,7 +36,7 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 5 +%define stable_update 6 # Is it a -stable RC? %define stable_rc 0 # Set rpm version accordingly @@ -624,7 +624,6 @@ Patch390: linux-2.6-defaults-acpi-video. Patch391: linux-2.6-acpi-video-dos.patch Patch400: linux-2.6-scsi-cpqarray-set-master.patch Patch450: linux-2.6-input-kill-stupid-messages.patch -Patch451: linux-2.6-input-atkbd-forced-release.patch Patch460: linux-2.6-serial-460800.patch Patch510: linux-2.6-silence-noise.patch Patch530: linux-2.6-silence-fbcon-logo.patch @@ -645,7 +644,6 @@ Patch611: alsa-hda-update-quirks.patch Patch630: net-revert-forcedeth-power-down-phy-when-interface-is.patch Patch640: linux-2.6-netdev-ehea-fix-circular-locking.patch -Patch641: linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch Patch642: linux-2.6-netdev-r8169-use-different-family-defaults.patch Patch670: linux-2.6-ata-quirk.patch @@ -1262,14 +1260,11 @@ ApplyPatch net-revert-forcedeth-power-do ApplyPatch linux-2.6-netdev-ehea-fix-circular-locking.patch # r8169 fixes from 2.6.30 -ApplyPatch linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch ApplyPatch linux-2.6-netdev-r8169-use-different-family-defaults.patch # Misc fixes # The input layer spews crap no-one cares about. ApplyPatch linux-2.6-input-kill-stupid-messages.patch -# keyboard release quirks from 2.6.30-rc -ApplyPatch linux-2.6-input-atkbd-forced-release.patch # Allow to use 480600 baud on 16C950 UARTs ApplyPatch linux-2.6-serial-460800.patch @@ -1960,6 +1955,12 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Fri Jul 03 2009 Chuck Ebbert kernel-2.6.29.6-90 +- Linux 2.6.29.6 +- Dropped patches merged in -stable: + linux-2.6-input-atkbd-forced-release.patch + linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch + * Tue Jun 30 2009 Chuck Ebbert kernel-2.6.29.5-89 - Fix NFS, broken by the report-short-writes patch (#508095) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/sources,v retrieving revision 1.970 retrieving revision 1.971 diff -u -p -r1.970 -r1.971 --- sources 16 Jun 2009 00:22:37 -0000 1.970 +++ sources 3 Jul 2009 04:05:56 -0000 1.971 @@ -1,2 +1,2 @@ 64921b5ff5cdadbccfcd3820f03be7d8 linux-2.6.29.tar.bz2 -bd23086872a85c9fd00163e9ab78038a patch-2.6.29.5.bz2 +0317760b52c9ac7a11de997da19a366e patch-2.6.29.6.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/upstream,v retrieving revision 1.881 retrieving revision 1.882 diff -u -p -r1.881 -r1.882 --- upstream 16 Jun 2009 00:22:38 -0000 1.881 +++ upstream 3 Jul 2009 04:05:56 -0000 1.882 @@ -1,2 +1,2 @@ linux-2.6.29.tar.bz2 -patch-2.6.29.5.bz2 +patch-2.6.29.6.bz2 --- linux-2.6-input-atkbd-forced-release.patch DELETED --- --- linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch DELETED --- --- patch-2.6.29.5.bz2.sign DELETED --- From cebbert at fedoraproject.org Fri Jul 3 04:09:19 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 3 Jul 2009 04:09:19 +0000 (UTC) Subject: rpms/kernel/F-10 linux-2.6-nfsd-cred-refcount-fix.patch, NONE, 1.1 kernel.spec, 1.1390, 1.1391 Message-ID: <20090703040919.A2C9111C041A@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32191 Modified Files: kernel.spec Added Files: linux-2.6-nfsd-cred-refcount-fix.patch Log Message: Fix NFSD credential refcounting. linux-2.6-nfsd-cred-refcount-fix.patch: --- NEW FILE linux-2.6-nfsd-cred-refcount-fix.patch --- From: David Howells Subject: [PATCH] NFSD: Don't hold unrefcounted creds over call to nfsd_setuser() nfsd_open() gets an unrefcounted pointer to the current process's effective credentials at the top of the function, then calls nfsd_setuser() via fh_verify() - which may replace and destroy the current process's effective credentials - and then passes the unrefcounted pointer to dentry_open() - but the credentials may have been destroyed by this point. Instead, the value from current_cred() should be passed directly to dentry_open() as one of its arguments, rather than being cached in a variable. Possibly fh_verify() should return the creds to use. Signed-off-by: David Howells --- fs/nfsd/vfs.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 4145083..23341c1 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -678,7 +678,6 @@ __be32 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access, struct file **filp) { - const struct cred *cred = current_cred(); struct dentry *dentry; struct inode *inode; int flags = O_RDONLY|O_LARGEFILE; @@ -733,7 +732,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, vfs_dq_init(inode); } *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt), - flags, cred); + flags, current_cred()); if (IS_ERR(*filp)) host_err = PTR_ERR(*filp); else Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1390 retrieving revision 1.1391 diff -u -p -r1.1390 -r1.1391 --- kernel.spec 3 Jul 2009 04:05:56 -0000 1.1390 +++ kernel.spec 3 Jul 2009 04:09:19 -0000 1.1391 @@ -718,6 +718,7 @@ Patch9001: squashfs-fixups.patch Patch9010: revert-fix-modules_install-via-nfs.patch Patch9011: linux-2.6-nfsd-report-short-writes.patch Patch9012: linux-2.6-nfsd-report-short-writes-fix.patch +Patch9013: linux-2.6-nfsd-cred-refcount-fix.patch #Adding dropmonitor bits from 2.6.30 Patch9100: linux-2.6-dropwatch-protocol.patch @@ -1359,6 +1360,8 @@ ApplyPatch revert-fix-modules_install-vi ApplyPatch linux-2.6-nfsd-report-short-writes.patch # fix the fix (#508095) ApplyPatch linux-2.6-nfsd-report-short-writes-fix.patch +# Fix nfs credential refcounting (F11 #494067) +ApplyPatch linux-2.6-nfsd-cred-refcount-fix.patch # Apply dropmonitor protocol bits from 2.6..30 net-next tree ApplyPatch linux-2.6-dropwatch-protocol.patch @@ -1955,6 +1958,9 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Fri Jul 03 2009 Chuck Ebbert kernel-2.6.29.6-91 +- Fix NFSD credential refcounting. + * Fri Jul 03 2009 Chuck Ebbert kernel-2.6.29.6-90 - Linux 2.6.29.6 - Dropped patches merged in -stable: From silas at fedoraproject.org Fri Jul 3 05:02:40 2009 From: silas at fedoraproject.org (Silas Sewell) Date: Fri, 3 Jul 2009 05:02:40 +0000 (UTC) Subject: rpms/python-mutagen/devel .cvsignore, 1.10, 1.11 import.log, 1.2, 1.3 python-mutagen.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090703050241.30F2C11C041A@cvs1.fedora.phx.redhat.com> Author: silas Update of /cvs/pkgs/rpms/python-mutagen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9610/devel Modified Files: .cvsignore import.log python-mutagen.spec sources Log Message: * Thu Jul 02 2009 Silas Sewell - 1.16-1 - Update to 1.16 - New project URLs Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-mutagen/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 5 Apr 2009 20:15:58 -0000 1.10 +++ .cvsignore 3 Jul 2009 05:02:09 -0000 1.11 @@ -1 +1 @@ -mutagen-1.15.tar.gz +mutagen-1.16.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-mutagen/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 10 Apr 2009 06:53:13 -0000 1.2 +++ import.log 3 Jul 2009 05:02:09 -0000 1.3 @@ -1,2 +1,3 @@ python-mutagen-1_15-1_fc10:HEAD:python-mutagen-1.15-1.fc10.src.rpm:1238937627 python-mutagen-1_15-2_fc10:HEAD:python-mutagen-1.15-2.fc10.src.rpm:1239346187 +python-mutagen-1_16-1_fc10:HEAD:python-mutagen-1.16-1.fc10.src.rpm:1246597201 Index: python-mutagen.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mutagen/devel/python-mutagen.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-mutagen.spec 10 Apr 2009 06:53:14 -0000 1.15 +++ python-mutagen.spec 3 Jul 2009 05:02:09 -0000 1.16 @@ -1,14 +1,14 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-mutagen -Version: 1.15 -Release: 2%{?dist} +Version: 1.16 +Release: 1%{?dist} Summary: Mutagen is a Python module to handle audio metadata Group: Development/Languages License: GPLv2 -URL: http://code.google.com/p/quodlibet/wiki/Mutagen -Source0: http://quodlibet.googlecode.com/files/mutagen-%{version}.tar.gz +URL: http://code.google.com/p/mutagen +Source0: http://mutagen.googlecode.com/files/mutagen-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -24,32 +24,42 @@ includes a module to handle generic Ogg %prep %setup -q -n mutagen-%{version} +# Fix non-executable-script error sed -i '/^#! \/usr\/bin\/env python/,+1 d' mutagen/__init__.py +# Fix wrong-file-end-of-line-encoding warning sed -i 's/\r//' TUTORIAL %build %{__python} setup.py build %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc API-NOTES COPYING NEWS README TODO TUTORIAL %{_bindir}/* %{_mandir}/man*/*gz -%{python_sitelib}/* +%{python_sitelib}/mutagen +%{python_sitelib}/mutagen-%{version}-*.egg-info %changelog -* Fri Apr 10 2009 Silas Sewell - 1.15-2 +* Thu Jul 02 2009 Silas Sewell - 1.16-1 +- Update to 1.16 +- New project URLs + +* Sun Apr 12 2009 Silas Sewell - 1.15-3 +- Normalize spec + +* Fri Apr 10 2009 Silas Sewell - 1.15-2 - Make sed safer - Add back in removed changelogs -* Sun Mar 29 2009 Silas Sewell - 1.15-1 +* Sun Mar 29 2009 Silas Sewell - 1.15-1 - Update to 1.15 * Thu Feb 26 2009 Fedora Release Engineering - 1.13-4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-mutagen/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 5 Apr 2009 20:15:58 -0000 1.10 +++ sources 3 Jul 2009 05:02:09 -0000 1.11 @@ -1 +1 @@ -c346e1290711a38c123727c31f3602f8 mutagen-1.15.tar.gz +feea89bebee5816aed911f33a2171559 mutagen-1.16.tar.gz From pwouters at fedoraproject.org Fri Jul 3 05:03:57 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Fri, 3 Jul 2009 05:03:57 +0000 (UTC) Subject: rpms/unbound/F-9 unbound-r1657.patch, NONE, 1.1 unbound-r1670.patch, NONE, 1.1 unbound-r1677.patch, NONE, 1.1 unbound.init, 1.2, 1.3 unbound.spec, 1.8, 1.9 Message-ID: <20090703050357.166CC11C041A@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/unbound/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9887 Modified Files: unbound.init unbound.spec Added Files: unbound-r1657.patch unbound-r1670.patch unbound-r1677.patch Log Message: * Fri Jul 3 2009 Paul Wouters - 1.3.0-1 - Updated to 1.3.0 - Patch from svn to fix DLV lookups - Patches from svn to detect wrong truncated response from BIND 9.6.1 with minimal-responses) - Added Default-Start and Default-Stop to unbound.init - Re-enabled --enable-sha2 - Re-enabled glob.patch unbound-r1657.patch: --- NEW FILE unbound-r1657.patch --- Index: validator/validator.c =================================================================== --- validator/validator.c (revision 1656) +++ validator/validator.c (revision 1657) @@ -251,9 +251,8 @@ /** * Check to see if a given response needs to go through the validation * process. Typical reasons for this routine to return false are: CD bit was - * on in the original request, the response was already validated, or the - * response is a kind of message that is unvalidatable (i.e., SERVFAIL, - * REFUSED, etc.) + * on in the original request, or the response is a kind of message that + * is unvalidatable (i.e., SERVFAIL, REFUSED, etc.) * * @param qstate: query state. * @param ret_rc: rcode for this message (if noerror - examine ret_msg). @@ -292,14 +291,25 @@ verbose(VERB_ALGO, "cannot validate RRSIG, no sigs on sigs."); return 0; } + return 1; +} +/** + * Check to see if the response has already been validated. + * @param ret_msg: return msg, can be NULL + * @return true if the response has already been validated + */ +static int +already_validated(struct dns_msg* ret_msg) +{ /* validate unchecked, and re-validate bogus messages */ if (ret_msg && ret_msg->rep->security > sec_status_bogus) { - verbose(VERB_ALGO, "response has already been validated"); - return 0; + verbose(VERB_ALGO, "response has already been validated: %s", + sec_status_to_string(ret_msg->rep->security)); + return 1; } - return 1; + return 0; } /** @@ -1937,6 +1947,10 @@ qstate->ext_state[id] = module_finished; return; } + if(already_validated(qstate->return_msg)) { + qstate->ext_state[id] = module_finished; + return; + } /* create state to start validation */ qstate->ext_state[id] = module_error; /* override this */ if(!vq) { @@ -2397,7 +2411,8 @@ } if(msg->rep->security != sec_status_secure) { vq->dlv_status = dlv_error; - verbose(VERB_ALGO, "response is not secure"); + verbose(VERB_ALGO, "response is not secure, %s", + sec_status_to_string(msg->rep->security)); return; } /* was the lookup a success? validated DLV? */ unbound-r1670.patch: --- NEW FILE unbound-r1670.patch --- Index: validator/validator.c =================================================================== --- validator/validator.c (revision 1669) +++ validator/validator.c (revision 1670) @@ -479,6 +479,36 @@ } /** + * Detect wrong truncated response, by a bad recursor out there. + * The positive response has a mangled authority section. + * Remove that authority section. + * @param rep: reply + * @return true if a wrongly truncated response. + */ +static int +detect_wrongly_truncated(struct reply_info* rep) +{ + size_t i; + /* no additional, only NS in authority, and it is bogus */ + if(rep->ar_numrrsets != 0 || rep->ns_numrrsets != 1 || + rep->an_numrrsets == 0) + return 0; + if(ntohs(rep->rrsets[ rep->an_numrrsets ]->rk.type) != LDNS_RR_TYPE_NS) + return 0; + if(((struct packed_rrset_data*)rep->rrsets[ rep->an_numrrsets ] + ->entry.data)->security != sec_status_bogus) + return 0; + /* answer section is present and secure */ + for(i=0; ian_numrrsets; i++) { + if(((struct packed_rrset_data*)rep->rrsets[ i ] + ->entry.data)->security != sec_status_secure) + return 0; + } + return 1; +} + + +/** * Given a "positive" response -- a response that contains an answer to the * question, and no CNAME chain, validate this response. * @@ -1449,17 +1479,31 @@ vq->chase_reply->security = sec_status_bogus; return 1; } + subtype = val_classify_response(qstate->query_flags, &qstate->qinfo, + &vq->qchase, vq->orig_msg->rep, vq->rrset_skip); /* check signatures in the message; * answer and authority must be valid, additional is only checked. */ if(!validate_msg_signatures(qstate->env, ve, &vq->qchase, vq->chase_reply, vq->key_entry)) { - verbose(VERB_DETAIL, "Validate: message contains bad rrsets"); - return 1; + /* workaround bad recursor out there that truncates (even + * with EDNS4k) to 512 by removing RRSIG from auth section + * for positive replies*/ + if(subtype == VAL_CLASS_POSITIVE && + detect_wrongly_truncated(vq->orig_msg->rep)) { + /* truncate the message some more */ + vq->orig_msg->rep->ns_numrrsets = 0; + vq->orig_msg->rep->rrset_count--; + vq->chase_reply->ns_numrrsets = 0; + vq->chase_reply->rrset_count--; + } + else { + verbose(VERB_DETAIL, "Validate: message contains " + "bad rrsets"); + return 1; + } } - subtype = val_classify_response(qstate->query_flags, &qstate->qinfo, - &vq->qchase, vq->orig_msg->rep, vq->rrset_skip); switch(subtype) { case VAL_CLASS_POSITIVE: verbose(VERB_ALGO, "Validating a positive response"); unbound-r1677.patch: --- NEW FILE unbound-r1677.patch --- Index: validator/validator.c =================================================================== --- validator/validator.c (revision 1677) +++ validator/validator.c (working copy) @@ -479,7 +479,7 @@ } /** - * Detect wrong truncated response, by a bad recursor out there. + * Detect wrong truncated response (from BIND 9.6.1 with minimal-responses). * The positive response has a mangled authority section. * Remove that authority section. * @param rep: reply Index: iterator/iterator.c =================================================================== --- iterator/iterator.c (revision 1677) +++ iterator/iterator.c (working copy) @@ -1513,9 +1513,14 @@ /* we know that all other NS rrsets are scrubbed * away, thus on referral only one is left. * see if that equals the query name... */ - && reply_find_rrset_section_ns(iq->response->rep, + && ( /* auth section, but sometimes in answer section*/ + reply_find_rrset_section_ns(iq->response->rep, qstate->qinfo.qname, qstate->qinfo.qname_len, LDNS_RR_TYPE_NS, qstate->qinfo.qclass) + || reply_find_rrset_section_an(iq->response->rep, + qstate->qinfo.qname, qstate->qinfo.qname_len, + LDNS_RR_TYPE_NS, qstate->qinfo.qclass) + ) )) { /* Store the referral under the current query */ if(!iter_dns_store(qstate->env, &iq->response->qinfo, Index: unbound.init =================================================================== RCS file: /cvs/extras/rpms/unbound/F-9/unbound.init,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unbound.init 20 Jan 2009 22:19:10 -0000 1.2 +++ unbound.init 3 Jul 2009 05:03:56 -0000 1.3 @@ -11,6 +11,8 @@ # Provides: unbound # Required-Start: $network $local_fs # Required-Stop: $network $local_fs +# Default-Start: +# Default-Stop: 0 1 2 3 4 5 6 # Should-Start: $syslog # Should-Stop: $syslog # Short-Description: unbound recursive Domain Name Server. @@ -25,28 +27,46 @@ exec="/usr/sbin/unbound" config="/etc/unbound/unbound.conf" rootdir="/var/lib/unbound" pidfile="/var/run/unbound/unbound.pid" +piddir=`dirname $pidfile` [ -e /etc/sysconfig/unbound ] && . /etc/sysconfig/unbound +[ -e /etc/sysconfig/dnssec ] && . /etc/sysconfig/dnssec lockfile=/var/lock/subsys/unbound +[ -x /usr/sbin/dnssec-configure ] && [ -r "$config" ] && + [ /etc/sysconfig/dnssec -nt "$config" ] && \ + /usr/sbin/dnssec-configure -u --norestart --dnssec="$DNSSEC" --dlv="$DLV" + start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 + # /var/run could (and should) be tmpfs + [ -d $piddir ] || mkdir $piddir if [ ! -f /etc/unbound/unbound_control.key ] then echo -n $"Generating unbound control key and certificate: " /usr/sbin/unbound-control-setup -d /etc/unbound/ > /dev/null 2> /dev/null + chgrp unbound /etc/unbound/unbound_*key /etc/unbound/unbound_*pem [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && \ [ -x /sbin/restorecon ] && /sbin/restorecon /etc/unbound/* echo + else + # old init script created these as root instead of unbound. + if [ -G /etc/unbound/unbound_control.key ] + then + chgrp unbound /etc/unbound/unbound_*key /etc/unbound/unbound_*pem + [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && \ + [ -x /sbin/restorecon ] && /sbin/restorecon /etc/unbound/* + echo + fi fi echo -n $"Starting unbound: " # if not running, start it up here - daemon $exec + daemon --pidfile=$pidfile $exec retval=$? [ $retval -eq 0 ] && touch $lockfile echo Index: unbound.spec =================================================================== RCS file: /cvs/extras/rpms/unbound/F-9/unbound.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- unbound.spec 16 Feb 2009 22:01:28 -0000 1.8 +++ unbound.spec 3 Jul 2009 05:03:56 -0000 1.9 @@ -1,24 +1,27 @@ Summary: Validating, recursive, and caching DNS(SEC) resolver Name: unbound -Version: 1.2.0 -Release: 3%{?dist} +Version: 1.3.0 +Release: 2%{?dist} License: BSD Url: http://www.nlnetlabs.nl/unbound/ Source: http://www.unbound.net/downloads/%{name}-%{version}.tar.gz Source1: unbound.init Source2: unbound.conf Source3: unbound.munin -Patch0: unbound-libevent-r1441.patch -Patch1: unbound-1.2-glob.patch +# See the unbound svn repository for further documentation on these +Patch1: unbound-r1657.patch +Patch2: unbound-r1670.patch +Patch3: unbound-r1677.patch +Patch4: unbound-1.2-glob.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: flex, openssl-devel >= 0.9.8g-10, ldns-devel >= 1.4.0 +BuildRequires: flex, openssl-devel >= 0.9.8g-10, ldns-devel >= 1.5.1 BuildRequires: libevent-devel Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts -Requires: ldns >= 1.4.0 +Requires: ldns >= 1.5.1 Requires(pre): shadow-utils # Is this obsolete? #Provides: caching-nameserver @@ -57,6 +60,7 @@ Summary: Libraries used by the unbound s Group: Applications/System Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig +Requires: openssl >= 0.9.8g-10 %description libs Contains libraries used by the unbound server and client applications @@ -68,7 +72,7 @@ Contains libraries used by the unbound s %build %configure --with-ldns= --with-libevent --with-pthreads --with-ssl \ - --disable-rpath --enable-debug --disable-static \ + --disable-rpath --enable-debug --disable-static --enable-sha2 \ --with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \ --with-pidfile=%{_localstatedir}/run/%{name}/%{name}.pid %{__make} CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" QUIET=no %{?_smp_mflags} @@ -131,9 +135,18 @@ exit 0 %post /sbin/chkconfig --add %{name} +# Check DNSSEC settings if this is a fresh install +if [ "$1" -eq 1 ]; then + if [ -r /etc/sysconfig/dnssec ]; then + . /etc/sysconfig/dnssec + [ -x /usr/sbin/dnssec-configure ] && \ + dnssec-configure -u --norestart --nocheck --dnssec="$DNSSEC" --dlv="$DLV" > \ + /dev/null 2>&1 + fi; +fi %post libs -p /sbin/ldconfig - +dd %preun if [ "$1" -eq 0 ]; then @@ -149,6 +162,15 @@ fi %postun libs -p /sbin/ldconfig %changelog +* Fri Jul 3 2009 Paul Wouters - 1.3.0-1 +- Updated to 1.3.0 +- Patch from svn to fix DLV lookups +- Patches from svn to detect wrong truncated response from BIND 9.6.1 with + minimal-responses) +- Added Default-Start and Default-Stop to unbound.init +- Re-enabled --enable-sha2 +- Re-enabled glob.patch + * Tue Jan 20 2009 Paul Wouters Author: pwouters Update of /cvs/extras/rpms/unbound/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10273 Modified Files: sources unbound.spec Log Message: new sources. renumbered patches to start from 0 Index: sources =================================================================== RCS file: /cvs/extras/rpms/unbound/F-9/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 20 Jan 2009 21:56:11 -0000 1.3 +++ sources 3 Jul 2009 05:05:41 -0000 1.4 @@ -1 +1 @@ -2517f811ec4939c0ea602c99a6fdea23 unbound-1.2.0.tar.gz +783325c26ae1a47be0e496c94f3e1cca unbound-1.3.0.tar.gz Index: unbound.spec =================================================================== RCS file: /cvs/extras/rpms/unbound/F-9/unbound.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- unbound.spec 3 Jul 2009 05:03:56 -0000 1.9 +++ unbound.spec 3 Jul 2009 05:05:41 -0000 1.10 @@ -9,10 +9,10 @@ Source1: unbound.init Source2: unbound.conf Source3: unbound.munin # See the unbound svn repository for further documentation on these -Patch1: unbound-r1657.patch -Patch2: unbound-r1670.patch -Patch3: unbound-r1677.patch -Patch4: unbound-1.2-glob.patch +Patch0: unbound-r1657.patch +Patch1: unbound-r1670.patch +Patch2: unbound-r1677.patch +Patch3: unbound-1.2-glob.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: flex, openssl-devel >= 0.9.8g-10, ldns-devel >= 1.5.1 @@ -67,8 +67,10 @@ Contains libraries used by the unbound s %prep %setup -q -%patch0 -p0 -%patch1 -p1 +%patch0 +%patch1 +%patch2 +%patch3 -p1 %build %configure --with-ldns= --with-libevent --with-pthreads --with-ssl \ From pwouters at fedoraproject.org Fri Jul 3 05:42:27 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Fri, 3 Jul 2009 05:42:27 +0000 (UTC) Subject: rpms/unbound/F-9 unbound.spec,1.10,1.11 Message-ID: <20090703054228.0CCC011C041A@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/unbound/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16264 Modified Files: unbound.spec Log Message: Add dnssec-conf dependancy. minor fixes. Index: unbound.spec =================================================================== RCS file: /cvs/extras/rpms/unbound/F-9/unbound.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- unbound.spec 3 Jul 2009 05:05:41 -0000 1.10 +++ unbound.spec 3 Jul 2009 05:41:56 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Validating, recursive, and caching DNS(SEC) resolver Name: unbound Version: 1.3.0 -Release: 2%{?dist} +Release: 1%{?dist} License: BSD Url: http://www.nlnetlabs.nl/unbound/ Source: http://www.unbound.net/downloads/%{name}-%{version}.tar.gz @@ -15,16 +15,14 @@ Patch2: unbound-r1677.patch Patch3: unbound-1.2-glob.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: flex, openssl-devel >= 0.9.8g-10, ldns-devel >= 1.5.1 +BuildRequires: flex, openssl-devel >= 0.9.8g-9.14, ldns-devel >= 1.5.1 BuildRequires: libevent-devel Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts -Requires: ldns >= 1.5.1 +Requires: ldns >= 1.5.1, dnssec-conf Requires(pre): shadow-utils -# Is this obsolete? -#Provides: caching-nameserver %description Unbound is a validating, recursive, and caching DNS(SEC) resolver. @@ -60,7 +58,7 @@ Summary: Libraries used by the unbound s Group: Applications/System Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -Requires: openssl >= 0.9.8g-10 +Requires: openssl >= 0.9.8g-9.14 %description libs Contains libraries used by the unbound server and client applications @@ -135,7 +133,7 @@ useradd -r -g unbound -d %{_localstatedi -c "Unbound DNS resolver" unbound exit 0 -%post +%post /sbin/chkconfig --add %{name} # Check DNSSEC settings if this is a fresh install if [ "$1" -eq 1 ]; then @@ -148,7 +146,6 @@ if [ "$1" -eq 1 ]; then fi %post libs -p /sbin/ldconfig -dd %preun if [ "$1" -eq 0 ]; then From cchance at fedoraproject.org Fri Jul 3 05:51:28 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 05:51:28 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel ibus-table-wubi.spec,1.7,1.8 Message-ID: <20090703055128.52B1111C041A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17604 Modified Files: ibus-table-wubi.spec Log Message: corrected dependencies Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ibus-table-wubi.spec 3 Jul 2009 00:04:35 -0000 1.7 +++ ibus-table-wubi.spec 3 Jul 2009 05:50:57 -0000 1.8 @@ -10,9 +10,9 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 -Requires(post): ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 -BuildRequires: ibus >= 1.2.0.20090617, ibus-table >= 1.1.0.20090610 +Requires: ibus >= 1.2, ibus-table >= 1.2 +Requires(post): ibus >= 1.2, ibus-table >= 1.2 +BuildRequires: ibus >= 1.2, ibus-table >= 1.2 BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description From cchance at fedoraproject.org Fri Jul 3 05:51:49 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 05:51:49 +0000 (UTC) Subject: rpms/ibus-table-erbi/devel ibus-table-erbi.spec,1.8,1.9 Message-ID: <20090703055149.A1AA211C041A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-erbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17717 Modified Files: ibus-table-erbi.spec Log Message: - Fixed index creation at post-install. - Removed bootstrap. - Refined package dependencies. - Added owned directories. - Replaced hard coded command with macros. Index: ibus-table-erbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/ibus-table-erbi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ibus-table-erbi.spec 18 May 2009 13:40:04 -0000 1.8 +++ ibus-table-erbi.spec 3 Jul 2009 05:51:48 -0000 1.9 @@ -1,8 +1,6 @@ -%bcond_without bootstrap - Name: ibus-table-erbi Version: 1.1.0.20090407 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Erbi input methods for ibus-table License: GPLv2+ Group: System Environment/Libraries @@ -12,13 +10,10 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: ibus-table >= 1.1.0.20090220-5 -%if %{with bootstrap} -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.2 -%endif -# uncomment if build with extra phrases. -# BuildRequires: ibus-table-extraphrase >= 1.1.0 -Requires(post): ibus-table > 1.1.0 +Requires: ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 +Requires(post): ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 +BuildRequires: ibus >= 1.2.0.20090617, ibus-table >= 1.1.0.20090610 +BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Erbi input methods for Table engine of IBus platform. @@ -28,34 +23,37 @@ The package contains Erbi input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -%if %{with bootstrap} -./autogen.sh \ - --prefix=%{_prefix} \ -%else -%configure \ -%endif -# replace below blank line with --enable-extra-phrases, -# if build with extra phrases. - -make %{?_smp_mflags} +./autogen.sh --prefix=%{_prefix} +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} NO_INDEX=true install INSTALL="install -p" +%__rm -rf %{buildroot} +%__make DESTDIR=%{buildroot} NO_INDEX=true install INSTALL="install -p" %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/erbi_qs.db +cd %{_datadir}/ibus-table/tables/ +%{_bindir}/ibus-table-createdb -i -n erbi_qs.db %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/tables +%dir %{_datadir}/ibus-table/icons %{_datadir}/ibus-table/tables/erbi_qs.db %{_datadir}/ibus-table/icons/erbi-qs.svg %changelog +* Fri Jul 3 2009 Caius Chance - 1.1.0.20090407-9.fc12 +- Fixed index creation at post-install. +- Removed bootstrap. +- Refined package dependencies. +- Added owned directories. +- Replaced hard coded command with macros. + * Mon May 18 2009 Caius Chance - 1.1.0.20090407-8.fc12 - Rebuilt with index creation during post-install. From cchance at fedoraproject.org Fri Jul 3 05:56:12 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 05:56:12 +0000 (UTC) Subject: rpms/ibus-table-yong/devel ibus-table-yong.spec,1.2,1.3 Message-ID: <20090703055612.7F5AB11C041A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18142 Modified Files: ibus-table-yong.spec Log Message: - Removed bootstrap. - Refined dependency. - Changed commands into macros. - Fixed index creation to run tool in correct location. - Added owned directories. Index: ibus-table-yong.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/ibus-table-yong.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ibus-table-yong.spec 19 May 2009 04:43:19 -0000 1.2 +++ ibus-table-yong.spec 3 Jul 2009 05:56:12 -0000 1.3 @@ -1,8 +1,6 @@ -%bcond_without bootstrap - Name: ibus-table-yong Version: 1.1.0.20090422 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Yong input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -12,13 +10,10 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: ibus-table >= 1.1.0.20090220-5 -%if %{with bootstrap} -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 -%endif -# uncomment if build with extra phrases. -# BuildRequires: ibus-table-extraphrase >= 1.1.0 -Requires(post): ibus-table > 1.1.0 +Requires: ibus >= 1.2, ibus-table >= 1.2 +Requires(post): ibus >= 1.2, ibus-table >= 1.2 +BuildRequires: ibus >= 1.2, ibus-table >= 1.2 +BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Yong input methods for Table engine of IBus platform. @@ -28,36 +23,39 @@ The package contains Yong input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -%if %{with bootstrap} -./autogen.sh \ - --prefix=%{_prefix} \ -%else -%configure \ -%endif -# replace below blank line with --enable-extra-phrases, -# if build with extra phrases. - -make %{?_smp_mflags} +./autogen.sh --prefix=%{_prefix} +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install +%__rm -rf %{buildroot} +%__make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install %__mv %{buildroot}/%{_datadir}/ibus-table/tables/yong-ibus.db \ %{buildroot}/%{_datadir}/ibus-table/tables/yong_ibus.db %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/yong_ibus.db +cd %{_datadir}/ibus-table/tables/ +%{_bindir}/ibus-table-createdb -i -n yong_ibus.db %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/icons +%dir %{_datadir}/ibus-table/tables %{_datadir}/ibus-table/tables/yong_ibus.db %{_datadir}/ibus-table/icons/yong.png %changelog +* Tue May 19 2009 Caius 'kaio' Chance - 1.1.0.20090422-6.fc12 +- Removed bootstrap. +- Refined dependency. +- Changed commands into macros. +- Fixed index creation to run tool in correct location. +- Added owned directories. + * Tue May 19 2009 Caius 'kaio' Chance - 1.1.0.20090422-5.fc12 - Create index only during post-install. From cchance at fedoraproject.org Fri Jul 3 06:08:03 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 06:08:03 +0000 (UTC) Subject: rpms/ibus-table-yong/F-11 ibus-table-yong.spec,1.3,1.4 Message-ID: <20090703060803.B8CC211C041A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19306 Modified Files: ibus-table-yong.spec Log Message: - Fixed index creation with correct work directory. - Reverted table name as IBus-Table could load table with hyphen file name. - Changed commands to macros. Index: ibus-table-yong.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/F-11/ibus-table-yong.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ibus-table-yong.spec 16 Jun 2009 01:37:59 -0000 1.3 +++ ibus-table-yong.spec 3 Jul 2009 06:07:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: ibus-table-yong Version: 1.1.0.20090422 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Yong input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -10,9 +10,10 @@ Source0: http://ibus.googlecode.com/f BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: ibus-table >= 1.1.0.20090220-5 +Requires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +Requires(post): ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 +BuildRequires: ibus >= 1.1.0.20090609, ibus-table >= 1.1.0.20090610 BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 -Requires(post): ibus-table > 1.1.0 %description The package contains Yong input methods for Table engine of IBus platform. @@ -23,27 +24,34 @@ The package contains Yong input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" ./autogen.sh --prefix=%{_prefix} -make %{?_smp_mflags} +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install -%__mv %{buildroot}/%{_datadir}/ibus-table/tables/yong-ibus.db \ - %{buildroot}/%{_datadir}/ibus-table/tables/yong_ibus.db +%__rm -rf %{buildroot} +%__make DESTDIR=%{buildroot} NO_INDEX=true INSTALL="install -p" install %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post -%{_bindir}/ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/yong_ibus.db +cd %{_datadir}/ibus-table/tables/ +%{_bindir}/ibus-table-createdb -i -n yong-ibus.db %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%{_datadir}/ibus-table/tables/yong_ibus.db +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/icons +%dir %{_datadir}/ibus-table/tables +%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/yong-ibus.db %{_datadir}/ibus-table/icons/yong.png %changelog +* Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090422-7.fc11 +- Fixed index creation with correct work directory. +- Reverted table name as IBus-Table could load table with hyphen file name. +- Changed commands to macros. + * Tue Jun 16 2009 Caius 'kaio' Chance - 1.1.0.20090422-6.fc11 - Resolves: rhbz#500973 (missing .txt during post-install) From jwrdegoede at fedoraproject.org Fri Jul 3 06:21:57 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Fri, 3 Jul 2009 06:21:57 +0000 (UTC) Subject: rpms/kernel/devel config-generic, 1.297, 1.298 kernel.spec, 1.1602, 1.1603 Message-ID: <20090703062157.D35BE11C041A@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21185 Modified Files: config-generic kernel.spec Log Message: * Fri Jul 03 2009 Hans de Goede - Disable v4l1 ov511 and quickcam_messenger drivers (obsoleted by v4l2 gspca subdrivers) Index: config-generic =================================================================== RCS file: /cvs/extras/rpms/kernel/devel/config-generic,v retrieving revision 1.297 retrieving revision 1.298 diff -u -p -r1.297 -r1.298 --- config-generic 30 Jun 2009 21:05:00 -0000 1.297 +++ config-generic 3 Jul 2009 06:21:26 -0000 1.298 @@ -2827,7 +2827,7 @@ CONFIG_USB_GSPCA_SQ905=m CONFIG_USB_GSPCA_SQ905C=m CONFIG_USB_IBMCAM=m CONFIG_USB_KONICAWC=m -CONFIG_USB_OV511=m +# CONFIG_USB_OV511 is not set CONFIG_USB_S2255=m CONFIG_USB_SE401=m # CONFIG_VIDEO_SH_MOBILE_CEU is not set @@ -2997,7 +2997,7 @@ CONFIG_USB_PWC=m CONFIG_USB_PWC_INPUT_EVDEV=y # CONFIG_USB_PWC_DEBUG is not set # CONFIG_USB_RIO500 is not set -CONFIG_USB_QUICKCAM_MESSENGER=m +# CONFIG_USB_QUICKCAM_MESSENGER is not set CONFIG_USB_SL811_HCD=m CONFIG_USB_SISUSBVGA=m CONFIG_USB_SISUSBVGA_CON=y Index: kernel.spec =================================================================== RCS file: /cvs/extras/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1602 retrieving revision 1.1603 diff -u -p -r1.1602 -r1.1603 --- kernel.spec 2 Jul 2009 17:18:11 -0000 1.1602 +++ kernel.spec 3 Jul 2009 06:21:26 -0000 1.1603 @@ -1840,6 +1840,10 @@ fi # and build. %changelog +* Fri Jul 03 2009 Hans de Goede +- Disable v4l1 ov511 and quickcam_messenger drivers (obsoleted by + v4l2 gspca subdrivers) + * Thu Jul 02 2009 Kyle McMartin 2.6.31-0.39.rc1.git9 - 2.6.31-rc1-git9 - linux-2.6-dm-fix-exstore-search.patch: similar patch merged upstream. From cchance at fedoraproject.org Fri Jul 3 06:43:15 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 3 Jul 2009 06:43:15 +0000 (UTC) Subject: rpms/ibus-table-erbi/F-11 ibus-table-erbi.spec,1.5,1.6 Message-ID: <20090703064315.C8FCD11C041A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-erbi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22211 Modified Files: ibus-table-erbi.spec Log Message: - Changed commands into macros. - Fixed index creation with correct work directory. - Added owned directories. Index: ibus-table-erbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/F-11/ibus-table-erbi.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibus-table-erbi.spec 16 Jun 2009 00:24:13 -0000 1.5 +++ ibus-table-erbi.spec 3 Jul 2009 06:42:44 -0000 1.6 @@ -1,6 +1,6 @@ Name: ibus-table-erbi Version: 1.1.0.20090407 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Erbi input methods for ibus-table License: GPLv2+ Group: System Environment/Libraries @@ -23,25 +23,34 @@ The package contains Erbi input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" ./autogen.sh --prefix=%{_prefix} -make %{?_smp_mflags} +%__make %{?_smp_mflags} %install -rm -rf %{buildroot} -make DESTDIR=%{buildroot} INSTALL="install -p" NO_INDEX=true install +%__rm -rf %{buildroot} +%__make DESTDIR=%{buildroot} INSTALL="install -p" NO_INDEX=true install %clean -rm -rf %{buildroot} +%__rm -rf %{buildroot} %post +cd %{_datadir}/ibus-table/tables/ %{_bindir}/ibus-table-createdb -i -n erbi_qs.db %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README +%dir %{_datadir}/ibus-table +%dir %{_datadir}/ibus-table/icons +%dir %{_datadir}/ibus-table/tables %verify(not md5 size mtime) %{_datadir}/ibus-table/tables/erbi_qs.db %{_datadir}/ibus-table/icons/erbi-qs.svg %changelog +* Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090407-6.fc11 +- Changed commands into macros. +- Fixed index creation with correct work directory. +- Added owned directories. + * Tue Jun 16 2009 Caius 'kaio' Chance - 1.1.0.20090407-5.fc11 - Resolves: 500973 (Fixed missing .txt during post-install.) From pravins at fedoraproject.org Fri Jul 3 07:04:07 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Fri, 3 Jul 2009 07:04:07 +0000 (UTC) Subject: rpms/ibus-sayura/devel .cvsignore, 1.2, 1.3 ibus-sayura.spec, 1.4, 1.5 sources, 1.2, 1.3 dual_matra_problem.patch, 1.2, NONE Message-ID: <20090703070407.C0CD211C041A@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/ibus-sayura/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23973 Modified Files: .cvsignore ibus-sayura.spec sources Removed Files: dual_matra_problem.patch Log Message: * Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 - upstream release 1.2.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 Mar 2009 10:42:51 -0000 1.2 +++ .cvsignore 3 Jul 2009 07:04:07 -0000 1.3 @@ -1 +1,2 @@ ibus-sayura-1.0.0.20090326.tar.gz +ibus-sayura-1.2.0.20090703.tar.gz Index: ibus-sayura.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/devel/ibus-sayura.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ibus-sayura.spec 29 Jun 2009 07:06:52 -0000 1.4 +++ ibus-sayura.spec 3 Jul 2009 07:04:07 -0000 1.5 @@ -1,6 +1,6 @@ Name: ibus-sayura -Version: 1.0.0.20090326 -Release: 4%{?dist} +Version: 1.2.0.20090703 +Release: 1%{?dist} Summary: The Sinhala engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -15,13 +15,11 @@ BuildRequires: pkgconfig BuildRequires: ibus-devel Requires: ibus -Patch1: dual_matra_problem.patch %description The Sayura engine for IBus platform. It provides Sinhala input method. %prep %setup -q -%patch1 -p1 -b .1-dual_matra %build %configure --disable-static @@ -45,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 +- upstream release 1.2.0 + * Mon Jun 29 2009 Pravin Satpute - @VERSON at -4 - fix for bug 507209 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 Mar 2009 10:42:51 -0000 1.2 +++ sources 3 Jul 2009 07:04:07 -0000 1.3 @@ -1 +1 @@ -cc781a2df344b02d3848e075d46c3745 ibus-sayura-1.0.0.20090326.tar.gz +8db2886ea5690c71f828353302365d46 ibus-sayura-1.2.0.20090703.tar.gz --- dual_matra_problem.patch DELETED --- From mgrepl at fedoraproject.org Fri Jul 3 07:57:26 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 3 Jul 2009 07:57:26 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch,1.25,1.26 Message-ID: <20090703075726.5C63E11C041A@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27708 Modified Files: policy-20090521.patch Log Message: - Allow ftpd to create shm policy-20090521.patch: Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- policy-20090521.patch 29 Jun 2009 20:57:51 -0000 1.25 +++ policy-20090521.patch 3 Jul 2009 07:57:26 -0000 1.26 @@ -1982,7 +1982,7 @@ diff -b -B --ignore-all-space --exclude- permissive fprintd_t; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ftp.te serefpolicy-3.6.12/policy/modules/services/ftp.te --- nsaserefpolicy/policy/modules/services/ftp.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/ftp.te 2009-06-29 16:23:40.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/ftp.te 2009-07-03 08:22:14.000000000 +0200 @@ -91,6 +91,9 @@ # @@ -1993,7 +1993,15 @@ diff -b -B --ignore-all-space --exclude- dontaudit ftpd_t self:capability sys_tty_config; allow ftpd_t self:process signal_perms; allow ftpd_t self:process { getcap setcap setsched setrlimit }; -@@ -129,8 +132,7 @@ +@@ -99,6 +102,7 @@ + allow ftpd_t self:unix_stream_socket create_stream_socket_perms; + allow ftpd_t self:tcp_socket create_stream_socket_perms; + allow ftpd_t self:udp_socket create_socket_perms; ++allow ftpd_t self:shm create_shm_perms; + allow ftpd_t self:key manage_key_perms; + + allow ftpd_t ftpd_etc_t:file read_file_perms; +@@ -129,8 +133,7 @@ allow ftpd_t ftpdctl_tmp_t:sock_file { getattr unlink }; # Create and modify /var/log/xferlog. From markmc at fedoraproject.org Fri Jul 3 08:32:58 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 3 Jul 2009 08:32:58 +0000 (UTC) Subject: rpms/qemu/devel qemu-prefer-sysfs-for-usb-host-devices.patch, NONE, 1.1 qemu.spec, 1.105, 1.106 Message-ID: <20090703083258.6A4C011C041A@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30905 Modified Files: qemu.spec Added Files: qemu-prefer-sysfs-for-usb-host-devices.patch Log Message: * Fri Jul 3 2009 Mark McLoughlin - 2:0.10.50-8.kvm87 - Prefer sysfs over usbfs for usb passthrough (#508326) qemu-prefer-sysfs-for-usb-host-devices.patch: --- NEW FILE qemu-prefer-sysfs-for-usb-host-devices.patch --- >From 9cf0574418cc7657618a738dd31337739c635875 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 3 Jul 2009 09:17:20 +0100 Subject: [PATCH] Prefer sysfs for USB host devices Scanning for devices via /sys/bus/usb/devices/ and using them via the /dev/bus/usb// character devices is the prefered method on modern kernels, so try that first. When using SELinux and libvirt, qemu will have access to /sys/bus/usb but not /proc/bus/usb, so although the current code will work just fine, it will generate SELinux AVC warnings. See also: https://bugzilla.redhat.com/508326 Reported-by: Daniel Berrange Signed-off-by: Mark McLoughlin --- usb-linux.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/usb-linux.c b/usb-linux.c index 67e4acd..3c724ba 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1265,6 +1265,15 @@ static int usb_host_scan(void *opaque, USBScanFunc *func) /* only check the host once */ if (!usb_fs_type) { + dir = opendir(USBSYSBUS_PATH "/devices"); + if (dir) { + /* devices found in /dev/bus/usb/ (yes - not a mistake!) */ + strcpy(devpath, USBDEVBUS_PATH); + usb_fs_type = USB_FS_SYS; + closedir(dir); + dprintf(USBDBG_DEVOPENED, USBSYSBUS_PATH); + goto found_devices; + } f = fopen(USBPROCBUS_PATH "/devices", "r"); if (f) { /* devices found in /proc/bus/usb/ */ @@ -1284,15 +1293,6 @@ static int usb_host_scan(void *opaque, USBScanFunc *func) dprintf(USBDBG_DEVOPENED, USBDEVBUS_PATH); goto found_devices; } - dir = opendir(USBSYSBUS_PATH "/devices"); - if (dir) { - /* devices found in /dev/bus/usb/ (yes - not a mistake!) */ - strcpy(devpath, USBDEVBUS_PATH); - usb_fs_type = USB_FS_SYS; - closedir(dir); - dprintf(USBDBG_DEVOPENED, USBSYSBUS_PATH); - goto found_devices; - } found_devices: if (!usb_fs_type) { monitor_printf(mon, "husb: unable to access USB devices\n"); -- 1.6.2.5 Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- qemu.spec 29 Jun 2009 17:27:20 -0000 1.105 +++ qemu.spec 3 Jul 2009 08:32:58 -0000 1.106 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 7.%{kvmvertag}%{?dist} +Release: 8.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -28,6 +28,9 @@ Patch03: qemu-fix-linux-user-build-on-pp # Fix for hw/pcspk.c errors with --disable-kvm Patch04: qemu-fix-pcspk-build-with-kvm-disabled.patch +# Prefer sysfs over usbfs for usb passthrough (#508326) +Patch05: qemu-prefer-sysfs-for-usb-host-devices.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel zlib-devel which texi2html gnutls-devel cyrus-sasl-devel BuildRequires: rsync dev86 iasl @@ -212,6 +215,7 @@ such as kvmtrace and kvm_stat. %patch02 -p1 %patch03 -p1 %patch04 -p1 +%patch05 -p1 %build # systems like rhel build system does not have a recent enough linker so @@ -456,6 +460,9 @@ fi %{_mandir}/man1/qemu-img.1* %changelog +* Fri Jul 3 2009 Mark McLoughlin - 2:0.10.50-8.kvm87 +- Prefer sysfs over usbfs for usb passthrough (#508326) + * Sat Jun 27 2009 Mark McLoughlin - 2:0.10.50-7.kvm87 - Update to kvm-87 - Drop upstreamed patches From pghmcfc at fedoraproject.org Fri Jul 3 08:33:26 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Fri, 3 Jul 2009 08:33:26 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/devel .cvsignore, 1.17, 1.18 perl-IO-Socket-SSL.spec, 1.20, 1.21 sources, 1.17, 1.18 Message-ID: <20090703083326.25D1411C041A@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31097 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 3 Apr 2009 09:20:34 -0000 1.17 +++ .cvsignore 3 Jul 2009 08:33:25 -0000 1.18 @@ -1 +1 @@ -IO-Socket-SSL-1.24.tar.gz +IO-Socket-SSL-1.25.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/perl-IO-Socket-SSL.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-IO-Socket-SSL.spec 3 Apr 2009 09:20:34 -0000 1.20 +++ perl-IO-Socket-SSL.spec 3 Jul 2009 08:33:25 -0000 1.21 @@ -4,7 +4,7 @@ # Name: perl-IO-Socket-SSL -Version: 1.24 +Version: 1.25 Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries @@ -57,9 +57,12 @@ done %defattr(-,root,root,-) %doc BUGS Changes README docs/ certs/ example/ util/ %{perl_vendorlib}/IO/ -%{_mandir}/man3/*.3* +%{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Fri Jul 3 2009 Paul Howarth - 1.25-1 +- Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) + * Thu Apr 2 2009 Paul Howarth - 1.24-1 - Update to 1.24 (add verify hostname scheme ftp, same as http) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 3 Apr 2009 09:20:34 -0000 1.17 +++ sources 3 Jul 2009 08:33:25 -0000 1.18 @@ -1 +1 @@ -53a407291bf9b3e09ae0f0cff90799a9 IO-Socket-SSL-1.24.tar.gz +4866fb7023e74731bd379a315a021cd8 IO-Socket-SSL-1.25.tar.gz From pravins at fedoraproject.org Fri Jul 3 08:49:11 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Fri, 3 Jul 2009 08:49:11 +0000 (UTC) Subject: rpms/ibus-rawcode/devel .cvsignore, 1.2, 1.3 ibus-rawcode.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090703084911.708CF11C041A@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/ibus-rawcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1080 Modified Files: .cvsignore ibus-rawcode.spec sources Log Message: * Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 - upstream release 1.2.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-rawcode/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 Mar 2009 04:31:51 -0000 1.2 +++ .cvsignore 3 Jul 2009 08:48:41 -0000 1.3 @@ -1 +1,2 @@ ibus-rawcode-1.0.0.20090303.tar.gz +ibus-rawcode-1.2.0.20090703.tar.gz Index: ibus-rawcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-rawcode/devel/ibus-rawcode.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ibus-rawcode.spec 28 Jun 2009 23:53:13 -0000 1.2 +++ ibus-rawcode.spec 3 Jul 2009 08:48:41 -0000 1.3 @@ -1,6 +1,6 @@ Name: ibus-rawcode -Version: 1.0.0.20090303 -Release: 3%{?dist} +Version: 1.2.0.20090703 +Release: 1%{?dist} Summary: The Rawcode engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 +- upstream release 1.2.0 + * Sun Jun 28 2009 Matthias Clasen - 1.0.0.20090303-3 - Rebuild against newer ibus Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-rawcode/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 Mar 2009 04:31:51 -0000 1.2 +++ sources 3 Jul 2009 08:48:41 -0000 1.3 @@ -1 +1 @@ -26e7aeb1e54ebbab4de222f67ffe174f ibus-rawcode-1.0.0.20090303.tar.gz +03fc896cde4c7cdefc24b0b769b8ca94 ibus-rawcode-1.2.0.20090703.tar.gz From twaugh at fedoraproject.org Fri Jul 3 08:59:02 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 3 Jul 2009 08:59:02 +0000 (UTC) Subject: rpms/ghostscript/F-11 ghostscript.spec,1.187,1.188 Message-ID: <20090703085902.2EE3211C041A@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3651 Modified Files: ghostscript.spec Log Message: * Fri Jul 3 2009 Tim Waugh 8.64-9 - Disabled debugging to aid investigation of bug #509329. Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-11/ghostscript.spec,v retrieving revision 1.187 retrieving revision 1.188 diff -u -p -r1.187 -r1.188 --- ghostscript.spec 10 Jun 2009 17:02:28 -0000 1.187 +++ ghostscript.spec 3 Jul 2009 08:58:31 -0000 1.188 @@ -5,7 +5,7 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 URL: http://www.ghostscript.com/ @@ -174,13 +174,13 @@ cd .. %if %{build_with_freetype} FT_CFLAGS=$(pkg-config --cflags freetype2) -make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \ +make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} \ FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype -make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \ +make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} \ FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype %else -make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} -make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} +make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} +make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} %endif make cups @@ -310,6 +310,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Fri Jul 3 2009 Tim Waugh 8.64-9 +- Disabled debugging to aid investigation of bug #509329. + * Wed Jun 10 2009 Tim Waugh 8.64-8 - Fix scripts so they don't get broken on install (bug #502550). From pghmcfc at fedoraproject.org Fri Jul 3 09:07:57 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Fri, 3 Jul 2009 09:07:57 +0000 (UTC) Subject: rpms/perl-Sysadm-Install/devel .cvsignore, 1.3, 1.4 perl-Sysadm-Install.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090703090757.3435E11C041A@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-Sysadm-Install/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5116 Modified Files: .cvsignore perl-Sysadm-Install.spec sources Log Message: Update to 0.29 - Add proper error handling to print and pipe statements - Fix up some "if $dir" cases to protect against a value of "0" in $dir - Fix up logcroak calls to use the current logger Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sysadm-Install/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 May 2009 08:19:33 -0000 1.3 +++ .cvsignore 3 Jul 2009 09:07:56 -0000 1.4 @@ -1 +1 @@ -Sysadm-Install-0.28.tar.gz +Sysadm-Install-0.29.tar.gz Index: perl-Sysadm-Install.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sysadm-Install/devel/perl-Sysadm-Install.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Sysadm-Install.spec 12 May 2009 08:19:33 -0000 1.3 +++ perl-Sysadm-Install.spec 3 Jul 2009 09:07:56 -0000 1.4 @@ -1,6 +1,6 @@ Summary: Typical installation tasks for system administrators Name: perl-Sysadm-Install -Version: 0.28 +Version: 0.29 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries @@ -72,6 +72,12 @@ everything, but suppresses any write act %{_mandir}/man3/Sysadm::Install.3pm* %changelog +* Fri Jul 3 2009 Paul Howarth 0.29-1 +- Update to 0.29 + - Add proper error handling to print and pipe statements + - Fix up some "if $dir" cases to protect against a value of "0" in $dir + - Fix up logcroak calls to use the current logger + * Tue May 12 2009 Paul Howarth 0.28-1 - Update to 0.28 (fixed download() with a better check for getstore()) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sysadm-Install/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 May 2009 08:19:33 -0000 1.3 +++ sources 3 Jul 2009 09:07:56 -0000 1.4 @@ -1 +1 @@ -f2dbfdf8c98a76d0697fd0747e388592 Sysadm-Install-0.28.tar.gz +8c2f201d2fc577fb6fa873638cae1219 Sysadm-Install-0.29.tar.gz From mgrepl at fedoraproject.org Fri Jul 3 09:09:30 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 3 Jul 2009 09:09:30 +0000 (UTC) Subject: rpms/selinux-policy/F-10 policy-20080710.patch, 1.172, 1.173 selinux-policy.spec, 1.800, 1.801 Message-ID: <20090703090930.D585211C041A@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5471 Modified Files: policy-20080710.patch selinux-policy.spec Log Message: - Allow ftpd to create shm policy-20080710.patch: Index: policy-20080710.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/policy-20080710.patch,v retrieving revision 1.172 retrieving revision 1.173 diff -u -p -r1.172 -r1.173 --- policy-20080710.patch 24 Jun 2009 08:43:53 -0000 1.172 +++ policy-20080710.patch 3 Jul 2009 09:09:29 -0000 1.173 @@ -17541,7 +17541,7 @@ diff --exclude-from=exclude -N -u -r nsa diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ftp.te serefpolicy-3.5.13/policy/modules/services/ftp.te --- nsaserefpolicy/policy/modules/services/ftp.te 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/services/ftp.te 2009-05-15 09:30:07.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/services/ftp.te 2009-07-03 11:05:13.000000000 +0200 @@ -26,7 +26,7 @@ ## ##

@@ -17575,15 +17575,16 @@ diff --exclude-from=exclude -N -u -r nsa type ftpd_t; type ftpd_exec_t; init_daemon_domain(ftpd_t, ftpd_exec_t) -@@ -92,6 +100,7 @@ +@@ -92,6 +100,8 @@ allow ftpd_t self:unix_stream_socket create_stream_socket_perms; allow ftpd_t self:tcp_socket create_stream_socket_perms; allow ftpd_t self:udp_socket create_socket_perms; ++allow ftpd_t self:shm create_shm_perms; +allow ftpd_t self:key manage_key_perms; allow ftpd_t ftpd_etc_t:file read_file_perms; -@@ -158,8 +167,10 @@ +@@ -158,8 +168,10 @@ files_read_etc_runtime_files(ftpd_t) files_search_var_lib(ftpd_t) @@ -17594,7 +17595,7 @@ diff --exclude-from=exclude -N -u -r nsa auth_use_nsswitch(ftpd_t) auth_domtrans_chk_passwd(ftpd_t) -@@ -226,8 +237,16 @@ +@@ -226,8 +238,16 @@ userdom_manage_all_users_home_content_dirs(ftpd_t) userdom_manage_all_users_home_content_files(ftpd_t) userdom_manage_all_users_home_content_symlinks(ftpd_t) @@ -17611,7 +17612,7 @@ diff --exclude-from=exclude -N -u -r nsa tunable_policy(`ftp_home_dir && use_nfs_home_dirs',` fs_manage_nfs_files(ftpd_t) fs_read_nfs_symlinks(ftpd_t) -@@ -238,6 +257,11 @@ +@@ -238,6 +258,11 @@ fs_read_cifs_symlinks(ftpd_t) ') @@ -17623,7 +17624,7 @@ diff --exclude-from=exclude -N -u -r nsa optional_policy(` tunable_policy(`ftp_home_dir',` apache_search_sys_content(ftpd_t) -@@ -245,6 +269,18 @@ +@@ -245,6 +270,18 @@ ') optional_policy(` @@ -17642,7 +17643,7 @@ diff --exclude-from=exclude -N -u -r nsa corecmd_exec_shell(ftpd_t) files_read_usr_files(ftpd_t) -@@ -261,7 +297,9 @@ +@@ -261,7 +298,9 @@ ') optional_policy(` @@ -17653,7 +17654,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -273,6 +311,14 @@ +@@ -273,6 +312,14 @@ ') optional_policy(` @@ -33826,7 +33827,7 @@ diff --exclude-from=exclude -N -u -r nsa allow iscsid_t iscsi_tmp_t:dir manage_dir_perms; diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/libraries.fc serefpolicy-3.5.13/policy/modules/system/libraries.fc --- nsaserefpolicy/policy/modules/system/libraries.fc 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/libraries.fc 2009-06-11 12:23:47.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/system/libraries.fc 2009-06-29 15:07:26.000000000 +0200 @@ -60,12 +60,15 @@ # # /opt @@ -33978,7 +33979,12 @@ diff --exclude-from=exclude -N -u -r nsa # Jai, Sun Microsystems (Jpackage SPRM) /usr/lib(64)?/libmlib_jai\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libdivxdecore\.so\.0 -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -267,6 +293,9 @@ +@@ -263,10 +289,14 @@ + /usr/lib(64)?/python2.4/site-packages/M2Crypto/__m2crypto\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) + + # vmware ++HOME_DIR/\.mozilla(/.*)?/plugins/np-vmware-vmrc-.*\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) + /usr/lib(64)?/vmware/lib(/.*)?/libgdk-x11-.*\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/vmware/lib(/.*)?/HConfig\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/vmware/(.*/)?VmPerl\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33988,7 +33994,7 @@ diff --exclude-from=exclude -N -u -r nsa # Java, Sun Microsystems (JPackage SRPM) /usr/(.*/)?jre.*/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/local/(.*/)?jre.*/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -283,6 +312,7 @@ +@@ -283,6 +313,7 @@ /usr/(local/)?matlab.*/bin/glnx86/libmwlapack\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/(local/)?matlab.*/bin/glnx86/(libmw(lapack|mathutil|services)|lapack|libmkl)\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/(local/)?matlab.*/sys/os/glnx86/libtermcap\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33996,7 +34002,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/(.*/)?intellinux/SPPlugins/ADMPlugin\.apl -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -291,6 +321,8 @@ +@@ -291,6 +322,8 @@ /usr/lib/acroread/(.*/)?lib/[^/]*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/acroread/.+\.api -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/acroread/(.*/)?ADMPlugin\.apl -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -34005,7 +34011,7 @@ diff --exclude-from=exclude -N -u -r nsa ') dnl end distro_redhat # -@@ -307,6 +339,36 @@ +@@ -307,6 +340,36 @@ /var/lib/samba/bin/.+\.so(\.[^/]*)* -l gen_context(system_u:object_r:lib_t,s0) ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/selinux-policy.spec,v retrieving revision 1.800 retrieving revision 1.801 diff -u -p -r1.800 -r1.801 --- selinux-policy.spec 24 Jun 2009 08:43:56 -0000 1.800 +++ selinux-policy.spec 3 Jul 2009 09:09:30 -0000 1.801 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.5.13 -Release: 65%{?dist} +Release: 66%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -462,6 +462,9 @@ exit 0 %endif %changelog +* Fri Jul 3 2009 Miroslav Grepl 3.5.13-66 +- Allow ftpd to create shm + * Wed Jun 24 2009 Miroslav Grepl 3.5.13-65 - Dontaudit dhcpc to access sys_ptrace From iarnell at fedoraproject.org Fri Jul 3 09:21:29 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Fri, 3 Jul 2009 09:21:29 +0000 (UTC) Subject: rpms/vim-perl-support/devel sources, 1.7, 1.8 vim-perl-support.spec, 1.9, 1.10 Message-ID: <20090703092129.E175911C041A@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/vim-perl-support/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8043 Modified Files: sources vim-perl-support.spec Log Message: * Fri Jul 03 2009 Iain Arnell 4.4-1 - update to 4.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vim-perl-support/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 16:34:27 -0000 1.7 +++ sources 3 Jul 2009 09:20:59 -0000 1.8 @@ -1 +1 @@ -e34ad2241949c529df98d10b9b95c654 perl-support.zip +79e9cbd0d939899d6bd9c865f8924061 perl-support.zip Index: vim-perl-support.spec =================================================================== RCS file: /cvs/pkgs/rpms/vim-perl-support/devel/vim-perl-support.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- vim-perl-support.spec 25 May 2009 16:34:27 -0000 1.9 +++ vim-perl-support.spec 3 Jul 2009 09:20:59 -0000 1.10 @@ -1,5 +1,5 @@ Name: vim-perl-support -Version: 4.3 +Version: 4.4 Release: 1%{?dist} Summary: Perl-IDE for VIM @@ -7,7 +7,7 @@ Group: Applications/Editors # according to plugin/perl-support.vim License: GPLv2 URL: http://www.vim.org/scripts/script.php?script_id=556 -# curl -o perl-support.zip 'http://vim.sourceforge.net/scripts/download_script.php?src_id=10678' +# curl -o perl-support.zip 'http://vim.sourceforge.net/scripts/download_script.php?src_id=10934' Source0: perl-support.zip BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -132,6 +132,9 @@ exit 0 %changelog +* Fri Jul 03 2009 Iain Arnell 4.4-1 +- update to 4.4 + * Mon May 25 2009 Iain Arnell 4.3-1 - update to 4.3 From sharkcz at fedoraproject.org Fri Jul 3 09:22:11 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 3 Jul 2009 09:22:11 +0000 (UTC) Subject: rpms/s390utils/F-11 0001-s390-tools-1.8.1-common-mak.patch, NONE, 1.1 0004-s390-tools-1.8.1-zipl-automenu.patch, NONE, 1.1 0005-s390-tools-1.8.1-fdasd-su.patch, NONE, 1.1 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch, NONE, 1.1 0008-s390-tools-1.8.1-ziorep-fixes.patch, NONE, 1.1 0009-s390-tools-1.8.1-cflags.patch, NONE, 1.1 0010-s390-tools-1.8.1-defaultmenu.patch, NONE, 1.1 0011-s390-tools-1.8.1-execstack.patch, NONE, 1.1 0012-s390-tools-1.8.1-ziomon-fixes.patch, NONE, 1.1 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch, NONE, 1.1 0014-s390-tools-1.8.1-zipl-kdump-man.patch, NONE, 1.1 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch, NONE, 1.1 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch, NONE, 1.1 0017-s390-tools-1.8.1-cpuplugd-memplug.patch, NONE, 1.1 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 s390.csh, 1.1, 1.2 s390.sh, 1.1, 1.2 s390utils.spec, 1.2, 1.3 sources, 1.2, 1.3 src_vipa-2.0.4-locations.patch, 1.1, 1.2 0001-s390-tools-1.5.0-su.patch, 1.1, NONE 0002-s390-tools-1.5.0-fdasd-raid.patch, 1.1, NONE 0003-s390-tools-1.5.0-fmtpercentage.patch, 1.1, NONE 0004-s390-tools-1.8.0-automenu.patch, 1.1, NONE 0005-s390-tools-1.5.3-lvm.patch, 1.1, NONE 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch, 1.1, NONE 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch, 1.1, NONE 0008-s390-tools-1.8.0-zipl-timeout.patch, 1.1, NONE 0009-s390-tools-1.8.0-zipl-target.patch, 1.1, NONE 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch, 1.1, NONE 0011-s390-tools-1.5.3-fdasd-raid.patch, 1.1, NONE 0012-s390-tools-1.8.0-initscript-fix.patch, 1.1, NONE 0013-s390-tools-1.8.0-cflags.patch, 1.1, NONE 0014-s390-tools-1.8.0-headers.patch, 1.1, NONE Message-ID: <20090703092211.1369C11C041A@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/s390utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8342 Modified Files: .cvsignore s390.csh s390.sh s390utils.spec sources src_vipa-2.0.4-locations.patch Added Files: 0001-s390-tools-1.8.1-common-mak.patch 0004-s390-tools-1.8.1-zipl-automenu.patch 0005-s390-tools-1.8.1-fdasd-su.patch 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch 0008-s390-tools-1.8.1-ziorep-fixes.patch 0009-s390-tools-1.8.1-cflags.patch 0010-s390-tools-1.8.1-defaultmenu.patch 0011-s390-tools-1.8.1-execstack.patch 0012-s390-tools-1.8.1-ziomon-fixes.patch 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch 0014-s390-tools-1.8.1-zipl-kdump-man.patch 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch 0017-s390-tools-1.8.1-cpuplugd-memplug.patch 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch Removed Files: 0001-s390-tools-1.5.0-su.patch 0002-s390-tools-1.5.0-fdasd-raid.patch 0003-s390-tools-1.5.0-fmtpercentage.patch 0004-s390-tools-1.8.0-automenu.patch 0005-s390-tools-1.5.3-lvm.patch 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch 0008-s390-tools-1.8.0-zipl-timeout.patch 0009-s390-tools-1.8.0-zipl-target.patch 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch 0011-s390-tools-1.5.3-fdasd-raid.patch 0012-s390-tools-1.8.0-initscript-fix.patch 0013-s390-tools-1.8.0-cflags.patch 0014-s390-tools-1.8.0-headers.patch Log Message: * Mon Jun 29 2009 Dan Hor??k 2:1.8.1-1 - update to 1.8.1 - drop upstreamed patches - create iucvterm subpackage - update src_vipa locations patch - install cmsfs tools into /sbin - add post 1.8.1 fixes from IBM 0001-s390-tools-1.8.1-common-mak.patch: --- NEW FILE 0001-s390-tools-1.8.1-common-mak.patch --- >From 1536e0140cbce3c8837478cfc25ea45dc3681cce Mon Sep 17 00:00:00 2001 From: Dan Horak Date: Sun, 20 Jul 2008 09:24:05 +0200 Subject: [PATCH] s390-tools-1.5.3-zipl-zfcpdump-2 --- common.mak | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mak b/common.mak index 62c17e2..3acb534 100644 --- a/common.mak +++ b/common.mak @@ -38,8 +38,8 @@ GROUP = $(shell id -gn) export INSTROOT BINDIR LIBDIR MANDIR OWNER GROUP # Special defines for zfcpdump -ZFCPDUMP_DIR = /usr/local/share/zfcpdump -ZFCPDUMP_IMAGE = zfcpdump.image +ZFCPDUMP_DIR = /boot +ZFCPDUMP_IMAGE = zfcpdump ZFCPDUMP_RD = zfcpdump.rd export ZFCPDUMP_DIR ZFCPDUMP_IMAGE ZFCPDUMP_RD endif -- 1.6.0.6 0004-s390-tools-1.8.1-zipl-automenu.patch: --- NEW FILE 0004-s390-tools-1.8.1-zipl-automenu.patch --- >From 1648e0dab246190c170e82244c790ef8e9144e40 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:45:36 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-automenu --- zipl/man/zipl.8 | 7 ++ zipl/src/job.c | 194 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- zipl/src/scan.c | 4 +- zipl/src/zipl.c | 1 + 4 files changed, 197 insertions(+), 9 deletions(-) diff --git a/zipl/man/zipl.8 b/zipl/man/zipl.8 index 8a83c01..6ebf240 100644 --- a/zipl/man/zipl.8 +++ b/zipl/man/zipl.8 @@ -249,6 +249,13 @@ whether they contain a dump signature or not. This option can only be used together with .BR \-\-mvdump . +.TP +.BR "\-x" " or " "\-\-no-automenu" +Disables the automatic creation of a multiboot menu. Specifying a menu with the +"-m

" option or a section disables this feature, too. This option was +added for compatibility with previous versions of the multiboot version of +zipl. + .SH EXAMPLE 1. Scenario: prepare disk for booting a Linux kernel image using the following parameters: diff --git a/zipl/src/job.c b/zipl/src/job.c index 2f69104..1b7bcb2 100644 --- a/zipl/src/job.c +++ b/zipl/src/job.c @@ -43,6 +43,7 @@ static struct option options[] = { { "version", no_argument, NULL, 'v'}, { "verbose", no_argument, NULL, 'V'}, { "add-files", no_argument, NULL, 'a'}, + { "no-automenu", no_argument, NULL, 'x'}, { "tape", required_argument, NULL, 'T'}, { "dry-run", no_argument, NULL, '0'}, { "force", no_argument, NULL, 'f'}, @@ -50,7 +51,7 @@ static struct option options[] = { }; /* Command line option abbreviations */ -static const char option_string[] = "-c:t:i:r:p:P:d:D:M:s:m:hHnVvaT:f"; +static const char option_string[] = "-c:t:i:r:p:P:d:D:M:s:m:hHnVvaxT:f"; struct command_line { char* data[SCAN_KEYWORD_NUM]; @@ -62,11 +63,14 @@ struct command_line { int version; int verbose; int add_files; + int automenu; int dry_run; int force; enum scan_section_type type; }; +/* Global variable for default boot target. Ugly but necessary... */ +static char *default_target; static int store_option(struct command_line* cmdline, enum scan_keyword_id keyword, @@ -92,6 +96,7 @@ get_command_line(int argc, char* argv[], struct command_line* line) int i; memset((void *) &cmdline, 0, sizeof(struct command_line)); + cmdline.automenu = 1; cmdline.type = section_invalid; is_keyword = 0; /* Process options */ @@ -101,16 +106,22 @@ get_command_line(int argc, char* argv[], struct command_line* line) switch (opt) { case 'd': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_dumpto, optarg); break; case 'D': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_dumptofs, optarg); break; case 'M': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_mvdump, optarg); #ifndef __s390x__ @@ -121,35 +132,49 @@ get_command_line(int argc, char* argv[], struct command_line* line) break; case 'i': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_image, optarg); break; case 'P': + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_parameters, optarg); break; case 'p': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_parmfile, optarg); break; case 'r': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_ramdisk, optarg); break; case 's': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_segment, optarg); break; case 't': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_target, optarg); break; case 'T': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_tape, optarg); break; @@ -190,6 +215,10 @@ get_command_line(int argc, char* argv[], struct command_line* line) case 'f': cmdline.force = 1; break; + case 'x': + cmdline.automenu = 0; + scan_key_table[1][8] = req; + break; case 1: /* Non-option is interpreted as section name */ if (cmdline.section != NULL) { @@ -214,6 +243,9 @@ get_command_line(int argc, char* argv[], struct command_line* line) if (cmdline.help || cmdline.version) { /* Always accept --help and --version */ } else if ((cmdline.menu != NULL) || (cmdline.section != NULL)) { + /* If either menu or section has been selected disable + automenu generation */ + cmdline.automenu = 0; /* Config file mode */ if ((cmdline.menu != NULL) && (cmdline.section != NULL)) { error_reason("Option 'menu' cannot be used when " @@ -832,7 +864,14 @@ get_job_from_section_data(char* data[], struct job_data* job, char* section) /* IPL job */ job->id = job_ipl; /* Fill in name of bootmap directory */ - job->bootmap_dir = misc_strdup(data[(int) scan_keyword_target]); + if (data[(int) scan_keyword_target] == NULL) { + if (default_target == NULL) { + error_text("Unable to find default section in your config file."); + break; + } + job->bootmap_dir = misc_strdup(default_target); + } else + job->bootmap_dir = misc_strdup(data[(int) scan_keyword_target]); if (job->bootmap_dir == NULL) return -1; /* Fill in name and address of image file */ @@ -1102,6 +1141,8 @@ get_menu_job(struct scan_token* scan, char* menu, struct job_data* job) if (temp_job == NULL) return -1; memset((void *) temp_job, 0, sizeof(struct job_data)); + if (data[(int) scan_keyword_target] == NULL) + data[(int) scan_keyword_target] = misc_strdup(job->bootmap_dir); rc = get_job_from_section_data(data, temp_job, job->data.menu.entry[current].name); if (rc) { @@ -1150,6 +1191,7 @@ get_default_section(struct scan_token* scan, char** section, int* is_menu) i = scan_find_section(scan, DEFAULTBOOT_SECTION, scan_id_section_heading, 0); if (i<0) { + *section = NULL; error_reason("No '" DEFAULTBOOT_SECTION "' section found and " "no section specified on command line"); return -1; @@ -1169,6 +1211,7 @@ get_default_section(struct scan_token* scan, char** section, int* is_menu) } } /* Should not happen */ + *section = NULL; error_reason("No default section specified"); return -1; } @@ -1184,19 +1227,35 @@ get_section_job(struct scan_token* scan, char* section, struct job_data* job, { char* data[SCAN_KEYWORD_NUM]; char* buffer; + char* default_section; int rc; int i; + rc = get_default_section(scan, &default_section, &i); + if (rc) + return rc; if (section == NULL) { - rc = get_default_section(scan, §ion, &i); - if (rc) - return rc; + section = default_section; if (i) { /* 'defaultmenu' was specified */ rc = get_menu_job(scan, section, job); return rc; } } + else + { + char* name = NULL; + + for (i = 0; (int) scan[i].id != 0; i++) { + if (scan[i].id == scan_id_section_heading) { + name = scan[i].content.section.name; + } + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_target && + !strcmp(DEFAULTBOOT_SECTION, name)) + default_target = misc_strdup(scan[i].content.keyword.value); + } + } if (strcmp(section, DEFAULTBOOT_SECTION) == 0) { error_reason("Special section '" DEFAULTBOOT_SECTION "' cannot " "be used as target section"); @@ -1268,10 +1327,118 @@ get_section_job(struct scan_token* scan, char* section, struct job_data* job, } +/* Create a fake menu to simulate the old s390utils-1.1.7 multiboot + * behaviour. */ +static struct scan_token * +create_fake_menu(struct scan_token *scan) +{ + int i, j, pos, numsec, size, defaultpos; + char *name; + char *target; + char *timeout; + char *seclist[1024]; + char *defaultsection; + char buf[1024]; + struct scan_token *tmp; + + /* Count # of sections */ + numsec = 0; + name = NULL; + target = NULL; + timeout = NULL; + for (i = 0; (int) scan[i].id != 0; i++) { + if (scan[i].id == scan_id_section_heading) { + name = scan[i].content.section.name; + if (strcmp(DEFAULTBOOT_SECTION, name)) + seclist[numsec++] = name; + } + if (scan[i].id == scan_id_keyword_assignment && + (scan[i].content.keyword.keyword == scan_keyword_dumpto || + scan[i].content.keyword.keyword == scan_keyword_dumptofs)) { + numsec--; + continue; + } + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_target && + !strcmp(DEFAULTBOOT_SECTION, name)) + target = scan[i].content.keyword.value; + + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_timeout) + timeout = scan[i].content.keyword.value; + } + get_default_section(scan, &defaultsection, &j); + + if (defaultsection == NULL) { + error_text("Unable to find default section in your config file."); + return NULL; + } + + if (target == NULL) { + error_text("Keyword target is missing in default section."); + return NULL; + } + + default_target = misc_strdup(target); + + size = i+6+numsec; + tmp = (struct scan_token *) misc_malloc(size * sizeof(struct scan_token)); + if (tmp == NULL) { + error_text("Couldn't allocate memory for menu entries"); + return NULL; + } + + memset(tmp, 0, size * sizeof(struct scan_token)); + memcpy(tmp, scan, i * sizeof(struct scan_token)); + free(scan); + scan = tmp; + + defaultpos = 0; + for (j = 0; j < numsec; j++) { + if (!strcmp(defaultsection, seclist[j])) + defaultpos = j+1; + } + + snprintf(buf, 1024, "%d", defaultpos); + + scan[i].id = scan_id_menu_heading; + scan[i].line = i; + scan[i++].content.menu.name = misc_strdup("rh-automatic-menu"); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_target; + scan[i++].content.keyword.value = misc_strdup(target); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_default; + scan[i++].content.keyword.value = misc_strdup(buf); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_prompt; + scan[i++].content.keyword.value = misc_strdup("1"); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_timeout; + if (timeout) + scan[i++].content.keyword.value = misc_strdup(timeout); + else + scan[i++].content.keyword.value = misc_strdup("15"); + + pos = i; + for (i = 0; iautomenu) { + nscan = create_fake_menu(scan); + if (nscan == NULL) { + scan_free(scan); + return -1; + } + scan = nscan; + } + /* Get job from config file data */ - if (cmdline->menu != NULL) + if (cmdline->menu != NULL || cmdline->automenu) { + if (cmdline->automenu) + cmdline->menu = misc_strdup("rh-automatic-menu"); rc = get_menu_job(scan, cmdline->menu, job); + } else { rc = get_section_job(scan, cmdline->section, job, cmdline->data[(int) scan_keyword_parameters]); diff --git a/zipl/src/scan.c b/zipl/src/scan.c index 9948092..caca3cf 100644 --- a/zipl/src/scan.c +++ b/zipl/src/scan.c @@ -33,9 +33,9 @@ enum scan_key_state scan_key_table[SCAN_SECTION_NUM][SCAN_KEYWORD_NUM] = { * rs enu */ /* defaultboot */ - {opt, inv, inv, inv, inv, inv, inv, inv, inv, inv, inv, opt, inv, inv}, + {opt, inv, inv, inv, inv, inv, inv, inv, req, inv, opt, opt, inv, inv}, /* ipl */ - {inv, inv, inv, req, opt, opt, opt, inv, req, inv, inv, inv, inv, inv}, + {inv, inv, inv, req, opt, opt, opt, inv, opt, inv, inv, inv, inv, inv}, /* segment load */ {inv, inv, inv, inv, inv, inv, inv, req, req, inv, inv, inv, inv, inv}, /* part dump */ diff --git a/zipl/src/zipl.c b/zipl/src/zipl.c index f99177d..2a11404 100644 --- a/zipl/src/zipl.c +++ b/zipl/src/zipl.c @@ -71,6 +71,7 @@ static const char* usage_text[] = { "-n, --noninteractive Answer all confirmation questions with 'yes'", "-V, --verbose Provide more verbose output", "-a, --add-files Add all referenced files to bootmap file", +"-x, --no-automenu Don't autogenerate multiboot menu", " --dry-run Simulate run but don't modify IPL records" }; -- 1.6.0.6 0005-s390-tools-1.8.1-fdasd-su.patch: --- NEW FILE 0005-s390-tools-1.8.1-fdasd-su.patch --- >From 0ac6c456898d8c09908a35add45d018eb8f76613 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:46:01 +0200 Subject: [PATCH] s390-tools-1.8.1-fdasd-su --- fdasd/fdasd.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c index ef01c9b..b6802f9 100644 --- a/fdasd/fdasd.c +++ b/fdasd/fdasd.c @@ -2005,10 +2005,12 @@ fdasd_get_geometry (fdasd_anchor_t *anc) if (anc->verbose) printf("disk type check : ok\n"); if (dasd_info.FBA_layout != 0) { - snprintf(err_str, ERROR_STRING_SIZE, - "%s is not formatted with z/OS compatible " - "disk layout!", options.device); - fdasd_error(anc, wrong_disk_format, err_str); + if(!anc->silent) { + snprintf(err_str, ERROR_STRING_SIZE, + "%s is not formatted with z/OS compatible " + "disk layout!", options.device); + fdasd_error(anc, wrong_disk_format, err_str); + } } if (anc->verbose) printf("disk layout check : ok\n"); -- 1.6.0.6 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch: --- NEW FILE 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch --- >From 9c34968b40aa5fee679abf0056255510333ae9c3 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:46:16 +0200 Subject: [PATCH] s390-tools-1.8.1-fdasd-raid-lvm --- fdasd/fdasd.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 53 insertions(+), 12 deletions(-) diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c index b6802f9..286b0bb 100644 --- a/fdasd/fdasd.c +++ b/fdasd/fdasd.c @@ -258,10 +258,10 @@ fdasd_error(fdasd_anchor_t *anc, enum fdasd_failure why, char *str) static int read_line(void) { - bzero(line_buffer, LINE_LENGTH); line_ptr = line_buffer; if (!fgets(line_buffer, LINE_LENGTH, stdin)) return 0; + line_buffer[LINE_LENGTH-1] = 0; while (*line_ptr && !isgraph(*line_ptr)) line_ptr++; return *line_ptr; @@ -310,6 +310,10 @@ fdasd_partition_type (char *str) strcpy(str, "Linux native"); else if (strncmp("SWAP ", str, 6) == 0) strcpy(str, "Linux swap"); + else if (strncmp("RAID ", str, 6) == 0) + strcpy(str, "Linux Raid"); + else if (strncmp("LVM ", str, 6) == 0) + strcpy(str, "Linux LVM"); else strcpy(str, "unknown"); @@ -1117,14 +1121,24 @@ fdasd_write_vtoc_labels (fdasd_anchor_t *anc) strncpy(c1, s2, 31); } else { + char str[20]; char *tmp = strstr(ch, "SWAP"); + char *tmp1 = strstr(ch, "RAID"); /* create a new data set name */ while (getpos(anc, k) > -1) k++; setpos(anc, k, i-1); - + + strncpy(s2, ch, 44); + s2[44]=0; + vtoc_ebcdic_dec(s2, s2, 44); + c2 = strstr(s2, "PART"); + if (c2 != NULL) strncpy(str, c2+=9, 6); + str[6] = '\0'; + fdasd_partition_type(str); + strncpy(ch, "LINUX.V " " ", 44); @@ -1140,10 +1154,21 @@ fdasd_write_vtoc_labels (fdasd_anchor_t *anc) strncpy(c1, dsno, 4); c1 += 4; - if (tmp) - strncpy(c1, ".SWAP", 5); - else - strncpy(c1, ".NATIVE", 7); + if (tmp || tmp1) { + if (tmp) + strncpy(c1, ".SWAP", 5); + if (tmp1) + strncpy(c1, ".RAID", 5); + } else { + if (strcmp("unknown", str) == 0) { + strncpy(c1, ".NATIVE", 7); + } + else { + strncpy(c1, ".", 1); + strncpy(c1+1, c2, 6); + } + } + } vtoc_ebcdic_enc(ch, ch, 44); if (anc->verbose) printf("%2x ", part_info->f1->DS1FMTID); @@ -1429,9 +1454,10 @@ fdasd_change_part_type (fdasd_anchor_t *anc) printf("current partition type is: %s\n\n", fdasd_partition_type(str)); printf(" 1 Linux native\n" \ - " 2 Linux swap\n\n"); + " 2 Linux swap\n" \ + " 3 Linux raid\n\n"); part_type = 0; - while ((part_type < 1) || (part_type > 2)) { + while ((part_type < 1) || (part_type > 3)) { while (!isdigit(part_type = read_char("new partition type: "))); part_type -= 48; @@ -1444,6 +1470,9 @@ fdasd_change_part_type (fdasd_anchor_t *anc) case 2: strncpy(str, "SWAP ", 6); break; + case 3: + strncpy(str, "RAID ", 6); + break; default: printf("'%d' is not supported!\n", part_type); } @@ -1621,7 +1650,7 @@ fdasd_process_invalid_vtoc(fdasd_anchor_t *anc) static void fdasd_process_valid_vtoc(fdasd_anchor_t *anc, unsigned long blk) { - int f1_counter = 0, f7_counter = 0, f5_counter = 0; + int f1_counter = 0, f7_counter = 0, f5_counter = 0, oldfmt = 0; int i, part_no, f1_size = sizeof(format1_label_t); partition_info_t *part_info = anc->first; format1_label_t f1_label; @@ -1673,14 +1702,26 @@ fdasd_process_valid_vtoc(fdasd_anchor_t *anc, unsigned long blk) vtoc_ebcdic_enc(part_info->f1->DS1DSNAM, part_info->f1->DS1DSNAM, 44); - if ((part_no < 0) || (part_no >= USABLE_PARTITIONS)) + /* this dasd has data set names 0000-0002 + but we use now 0001-0003 */ + if (part_no == -1) + oldfmt++; + + if (((oldfmt == 0) && (part_no < 0)) + || (part_no >= USABLE_PARTITIONS)) printf("WARNING: partition number (%i) found " "in data set name of an existing " "partition\ndoes not match range of " "possible partition numbers (1-%d)\n\n", part_no + 1, USABLE_PARTITIONS); - else - setpos(anc, part_no, f1_counter); + else { + if (oldfmt) /* correct +1 */ { + setpos(anc, part_no+1, f1_counter); + printf("Correcting f1 header number!\n"); + } + else + setpos(anc, part_no, f1_counter); + } part_info = part_info->next; f1_counter++; -- 1.6.0.6 0008-s390-tools-1.8.1-ziorep-fixes.patch: --- NEW FILE 0008-s390-tools-1.8.1-ziorep-fixes.patch --- >From afe16490113999868ff408ff303ac7df4b733ff5 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:47:13 +0200 Subject: [PATCH] s390-tools-1.8.1-ziorep-fixes --- ziomon/stats.h | 9 ++++--- ziomon/ziomon | 13 +++++++---- ziomon/ziorep_config | 23 +++++++++++---------- ziomon/ziorep_traffic.cpp | 31 +++++++++++++++++------------ ziomon/ziorep_utilization.cpp | 4 +- ziomon/ziorep_utils.cpp | 43 +++++++++++++++++++++++++++++++++++----- 6 files changed, 82 insertions(+), 41 deletions(-) diff --git a/ziomon/stats.h b/ziomon/stats.h index 1003f91..a28d436 100644 --- a/ziomon/stats.h +++ b/ziomon/stats.h @@ -108,7 +108,7 @@ static inline int histlog2_index(__u64 val, struct histlog2 *h) { int i; - for (i = 0; i < (h->num - 1) && val > histlog2_upper_limit(i, h); i++); + for (i = 0; i < h->num && val > histlog2_upper_limit(i, h); i++); return i; } @@ -123,15 +123,16 @@ static inline void histlog2_merge(struct histlog2 *h, __u32 *dst, const __u32 *s { int i; - for (i = 0; i < h->num - 1; i++) + for (i = 0; i < h->num; i++) { dst[i] += src[i]; + } } static inline void histlog2_swap(__u32 a[], struct histlog2 *h) { int i; - for (i = 0; i < h->num - 1; i++) + for (i = 0; i < h->num; i++) swap_32(a[i]); } @@ -141,7 +142,7 @@ static inline void histlog2_print(const char *s, const __u32 a[], int i; printf("%s:\n", s); - for (i = 0; i < h->num - 1; i++) { + for (i = 0; i < h->num; i++) { printf(" %10ld:%6d", (unsigned long)(histlog2_upper_limit(i, h)), a[i]); if (!((i + 1) % 4)) diff --git a/ziomon/ziomon b/ziomon/ziomon index 30c8adf..aa1cf78 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -411,14 +411,14 @@ function check_for_multipath_devices() { devices_basenames[$j]=""; clean_devices; (( i+=3 )); - while [ "${mp_arr[$i]:0:1}" == "_" ]; do + while [[ ! "${mp_arr[$i]:0:1}" =~ "[0-9a-zA-Z]" ]] && [ $i -lt ${#mp_arr[@]} ]; do checked_devs[${#checked_devs[@]}]=`echo ${mp_arr[$i]} | awk '{print "/dev/"$3}'`; ddebug " add ${checked_devs[${#checked_devs[@]}-1]}"; - line=${mp_arr[$i]#_*}; + line=${mp_arr[$i]#* }; line=${line%%:*}; line=`echo $line | sed 's/ //g'`; WRP_HOST_ADAPTERS[${#WRP_HOST_ADAPTERS[@]}]="host$line"; - WRP_LUNS[${#WRP_LUNS[@]}]=`echo ${mp_arr[$i]#_*} | awk '{print $1}'`; + WRP_LUNS[${#WRP_LUNS[@]}]=`echo ${mp_arr[$i]#* } | awk '{print $1}'`; (( i++ )); done; (( --i )); @@ -599,6 +599,7 @@ function check_size_requirements() { local estimated_size; local free_space; local logpath=`dirname $WRP_LOGFILE`; + local num_uniq_devs; set `ziomon_mgr -e`; util_base_sz=$1; @@ -610,10 +611,12 @@ function check_size_requirements() { # NOTE: Since blktrace and ziomon_zfcpdd write messages only when there is # traffic, the estimate is an upper boundary only + num_uniq_devs=`echo ${WRP_LUNS[@]} | sed 's/ /\n/g' | cut -d : -f 4 | sort | uniq | wc -l`; + debug "number of unique devices: $num_uniq_devs"; debug "disk space requirements:"; (( size_per_record = $util_base_sz + ${#WRP_HOST_ADAPTERS[@]} * $util_variable_sz + $ioerr_base_sz - + ${#WRP_DEVICES[@]} * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) - + ( 2 + ${#WRP_DEVICES[@]}) * 8 )); + + $num_uniq_devs * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) + + ( 2 + $num_uniq_devs) * 8 )); debug " size per interval: $size_per_record Bytes"; (( total_num_records = $WRP_DURATION / $WRP_INTERVAL )); debug " total number of intervals: $total_num_records"; diff --git a/ziomon/ziorep_config b/ziomon/ziorep_config index 21094bf..de60379 100755 --- a/ziomon/ziorep_config +++ b/ziomon/ziorep_config @@ -84,9 +84,10 @@ sub get_sub_ch_data $c_src = catdir($base_dir, S_DIR2, $sub_ch, $adapter); $sub_ch{$adapter}{lic} = get_line("lic_version"); $sub_ch{$adapter}{gen} = get_line("card_version"); + $sub_ch{$adapter}{state} = get_line("online") == 1 ? "Online" : + "Offline"; $c_src = catdir($base_dir, S_DIR2, $sub_ch); $sub_ch{$adapter}{chpid} = substr(get_line("chpids"), 0, 2); - $sub_ch{$adapter}{state} = get_line("port_state"); } } @@ -220,7 +221,7 @@ sub adapter_report my @adapters = @_; foreach my $a (sort keys %sub_ch) { - next if (@adapters && "@adapters" !~ /$a/); + next if (@adapters && "@adapters" !~ /\b$a\b/); my @out_str; push @out_str, "Host: $sub_ch{$a}{host}\n"; push @out_str, "CHPID: $sub_ch{$a}{chpid}\n"; @@ -252,11 +253,11 @@ sub device_report "===============================================\n"; } foreach my $hctl (sort keys %devices) { - next if (@$adapters && "@$adapters" !~ /$devices{$hctl}{hba_id}/); - next if (@$ports && "@$ports" !~ /$devices{$hctl}{wwpn}/); - next if (@$luns && "@$luns" !~ /$devices{$hctl}{lun}/); - next if (@$s_devs && "@$s_devs" !~ /$devices{$hctl}{dev}/); - next if (@$hosts && "@$hosts" !~ /$sub_ch{$devices{$hctl}{hba_id}}{host}/); + next if (@$adapters && "@$adapters" !~ /\b$devices{$hctl}{hba_id}\b/); + next if (@$ports && "@$ports" !~ /\b$devices{$hctl}{wwpn}\b/); + next if (@$luns && "@$luns" !~ /\b$devices{$hctl}{lun}\b/); + next if (@$s_devs && "@$s_devs" !~ /\b$devices{$hctl}{dev}\b/); + next if (@$hosts && "@$hosts" !~ /\b$sub_ch{$devices{$hctl}{hba_id}}{host}\b/); my @out_str; push @out_str, $devices{$hctl}{hba_id}; push @out_str, $devices{$hctl}{wwpn}; @@ -293,10 +294,10 @@ sub mapper_report } foreach my $hctl (sort keys %devices) { next if (! $devices{$hctl}{mp_dev_mm}); - next if (@$adapters && "@$adapters" !~ /$devices{$hctl}{hba_id}/); - next if (@$ports && "@$ports" !~ /$devices{$hctl}{wwpn}/); - next if (@$s_devs && "@$s_devs" !~ /$devices{$hctl}{dev}/); - next if (@$m_devs && "@$m_devs" !~ /$mapper_dev{$devices{$hctl}{mp_dev_mm}}/); + next if (@$adapters && "@$adapters" !~ /\b$devices{$hctl}{hba_id}\b/); + next if (@$ports && "@$ports" !~ /\b$devices{$hctl}{wwpn}\b/); + next if (@$s_devs && "@$s_devs" !~ /\b$devices{$hctl}{dev}\b/); + next if (@$m_devs && "@$m_devs" !~ /\b$mapper_dev{$devices{$hctl}{mp_dev_mm}}\b/); my @line_str; push @line_str, $devices{$hctl}{hba_id}; push @line_str, $devices{$hctl}{wwpn}; diff --git a/ziomon/ziorep_traffic.cpp b/ziomon/ziorep_traffic.cpp index 40cbf47..1461e55 100644 --- a/ziomon/ziorep_traffic.cpp +++ b/ziomon/ziorep_traffic.cpp @@ -121,6 +121,7 @@ static int parse_params(int argc, char **argv, struct options *opts) __u32 tmp32; long long unsigned int tmp64; long tmpl; + char mychar; static struct option long_options[] = { { "version", no_argument, NULL, 'v'}, { "help", no_argument, NULL, 'h'}, @@ -188,18 +189,22 @@ static int parse_params(int argc, char **argv, struct options *opts) opts->print_summary = true; break; case 'c': - rc = sscanf(optarg, "%x", &tmp32); - if (rc != 1) { - fprintf(stdout, "%s: Could" + rc = sscanf(optarg, "%x%c", &tmp32, &mychar); + if (rc < 1) { + fprintf(stderr, "%s: Could" " not read chpid %s\n", toolname, optarg); return -1; } + if (rc > 1) { + fprintf(stderr, "%s: %s is not a valid chpid\n", toolname, optarg); + return -1; + } opts->chpids.push_back(tmp32); break; case 'p': rc = sscanf(optarg, "0x%Lx", &tmp64); if (rc != 1) { - fprintf(stdout, "%s: Could" + fprintf(stderr, "%s: Could" " not read port number %s\n", toolname, optarg); return -1; } @@ -208,7 +213,7 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'l': rc = sscanf(optarg, "0x%Lx", &tmp64); if (rc != 1) { - fprintf(stdout, "%s: Could" + fprintf(stderr, "%s: Could" " not read lun %s\n", toolname, optarg); return -1; } @@ -217,11 +222,11 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'u': rc = sscanf(optarg, "0.0.%x", &tmp32); if (rc != 1) { - fprintf(stdout, "%s: Could not read bus-ID" + fprintf(stderr, "%s: Could not read bus-ID" " %s\n", toolname, optarg); return -1; } - opts->wwpns.push_back(tmp32); + opts->devnos.push_back(tmp32); break; case 'd': opts->devices.push_back(optarg); @@ -313,7 +318,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->chpids.begin(); i != opts->chpids.end(); ++i) { if (!(*cfg)->verify_chpid(*i)) { - fprintf(stdout, "Error: Could not find chpid 0.0.%04x in" + fprintf(stderr, "Error: Could not find chpid %x in" " configuration.\n", *i); rc = -2; } @@ -321,7 +326,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->devnos.begin(); i != opts->devnos.end(); ++i) { if (!(*cfg)->verify_devno(*i)) { - fprintf(stdout, "Error: Could not find bus-ID 0.0.%04x in" + fprintf(stderr, "Error: Could not find bus-ID 0.0.%04x in" " configuration.\n", *i); rc = -3; } @@ -329,7 +334,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u64>::const_iterator i = opts->wwpns.begin(); i != opts->wwpns.end(); ++i) { if (!(*cfg)->verify_wwpn(*i)) { - fprintf(stdout, "Error: Could not find WWPN %016Lx in" + fprintf(stderr, "Error: Could not find WWPN %016Lx in" " configuration.\n", (long long unsigned int)*i); rc = -4; } @@ -337,7 +342,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u64>::const_iterator i = opts->luns.begin(); i != opts->luns.end(); ++i) { if (!(*cfg)->verify_lun(*i)) { - fprintf(stdout, "Error: Could not find LUN %016Lx in" + fprintf(stderr, "Error: Could not find LUN %016Lx in" " configuration.\n", (long long unsigned int)*i); rc = -5; } @@ -345,7 +350,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list::iterator i = opts->devices.begin(); i != opts->devices.end(); ++i) { if (!(*cfg)->verify_device(*i)) { - fprintf(stdout, "Error: Could not find device %s in" + fprintf(stderr, "Error: Could not find device %s in" " configuration.\n", *i); rc = -6; } @@ -353,7 +358,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list::iterator i = opts->mp_devices.begin(); i != opts->mp_devices.end(); ++i) { if (!(*cfg)->verify_mp_device(*i)) { - fprintf(stdout, "Error: Could not find multipath" + fprintf(stderr, "Error: Could not find multipath" " device %s in configuration.\n", *i); rc = -7; } diff --git a/ziomon/ziorep_utilization.cpp b/ziomon/ziorep_utilization.cpp index a036a03..3f57a47 100644 --- a/ziomon/ziorep_utilization.cpp +++ b/ziomon/ziorep_utilization.cpp @@ -167,7 +167,7 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'c': rc = sscanf(optarg, "%x", &tmp); if (rc != 1) { - fprintf(stdout, "Error: Could not read chpid" + fprintf(stderr, "Error: Could not read chpid" " %s\n", optarg); return -1; } @@ -237,7 +237,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->chpids.begin(); i != opts->chpids.end(); ++i) { if (!(*cfg)->verify_chpid(*i)) { - fprintf(stdout, "Error: Could not find chpid %x in" + fprintf(stderr, "Error: Could not find chpid %x in" " configuration.\n", *i); rc = -2; } diff --git a/ziomon/ziorep_utils.cpp b/ziomon/ziorep_utils.cpp index 75a9578..715115e 100644 --- a/ziomon/ziorep_utils.cpp +++ b/ziomon/ziorep_utils.cpp @@ -303,8 +303,17 @@ int adjust_timeframe(const char *filename, __u64 *begin, __u64 *end, verbose_msg("using original interval length: %lus\n", (long unsigned int)*interval); } - // now check if the interval is correct - if (*interval != UINT32_MAX && *interval % f_hdr.interval_length) { + /* the exact frame boundaries don't include the length of the very + first interval, so we have to add one more to our calculations */ + if (*interval && (*end - *begin + f_hdr.interval_length) % *interval != 0) { + // cut off rest in case of user-set interval + *end -= (*end - *begin) % *interval + f_hdr.interval_length; + t = *end; + verbose_msg(" cut off at : %s", ctime(&t)); + } + + // check if the interval is correct + if (*interval % f_hdr.interval_length) { fprintf(stderr, "%s: Data aggregation interval %lu" " is incompatible with source data. Please use" " a multiple of %lu and try again.\n", toolname, @@ -392,7 +401,7 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) rc += fprintf(fp, "Aggregated range: "); if (a_hdr) { rc += fprintf(fp, "%s to ", - print_time_formatted(a_hdr->begin_time)); + print_time_formatted(a_hdr->begin_time - f_hdr.interval_length)); rc += fprintf(fp, "%s\n", print_time_formatted(a_hdr->end_time)); } @@ -404,7 +413,7 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) a_hdr = NULL; rc += fprintf(fp, "Detailed range: %s to ", - print_time_formatted(f_hdr.begin_time)); + print_time_formatted(f_hdr.begin_time - f_hdr.interval_length)); rc += fprintf(fp, "%s\n", print_time_formatted(f_hdr.end_time)); rc += fprintf(fp, "Interval length: %d seconds\n", f_hdr.interval_length); @@ -446,16 +455,32 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) return rc; } +/* Calculates seconds since 1970 _without_ caring for daylight + savings time (comtrary to mktime() et al). + It does not care for leap years and the like, which is OK, + since we use it in a very narrow scenario: To calculate any + daylight savings time related shifts. + Hence: Dont't use if you're not sure what you are doing... */ +static __u64 secs_since_1970(const struct tm *t) { + __u64 res = 0; + res += t->tm_sec; + res += 60 * t->tm_min; + res += 3600 * t->tm_hour; + res += 86400 * t->tm_yday; + res += 86400 * 365 * t->tm_year; + + return res; +} + int get_datetime_val(const char *str, __u64 *tgt) { - struct tm t; + struct tm t, t_old; char *ret; // strptime only sets memset(&t, 0, sizeof(struct tm)); ret = strptime(str, "%Y-%m-%d %H:%M", &t); - if (ret == NULL || *ret != '\0') { ret = strptime(str, "%Y-%m-%d %H:%M:%S", &t); if (ret == NULL || *ret != '\0') { @@ -465,7 +490,13 @@ int get_datetime_val(const char *str, __u64 *tgt) return -1; } } + t_old = t; *tgt = mktime(&t); + // if daylight savings time applies, 't' has been adjusted, + // so we have to correct + if (t_old.tm_hour != t.tm_hour) + *tgt -= secs_since_1970(&t) - secs_since_1970(&t_old); + verbose_msg("datetime value from user after translation: %s", ctime((const time_t *)tgt)); return 0; } -- 1.6.0.6 0009-s390-tools-1.8.1-cflags.patch: --- NEW FILE 0009-s390-tools-1.8.1-cflags.patch --- >From d2f00bb021508f8104a1d8164432e8f4d239d872 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:47:29 +0200 Subject: [PATCH] s390-tools-1.8.1-cflags --- common.mak | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mak b/common.mak index d57b854..f0252da 100644 --- a/common.mak +++ b/common.mak @@ -25,8 +25,8 @@ STRIP = $(CROSS_COMPILE)strip OBJCOPY = $(CROSS_COMPILE)objcopy OBJDUMP = $(CROSS_COMPILE)objdump INSTALL = install # FIXME: We need s390-install (strip) -CFLAGS = $(OPT_FLAGS) -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) -CXXFLAGS = $(OPT_FLAGS) -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) +CFLAGS = -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) $(OPT_FLAGS) +CXXFLAGS = -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) $(OPT_FLAGS) export AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP INSTALL CFLAGS # Support alternate install root -- 1.6.0.6 0010-s390-tools-1.8.1-defaultmenu.patch: --- NEW FILE 0010-s390-tools-1.8.1-defaultmenu.patch --- >From 486526858271c8ea890e8728a1cf1cceeceb9b1a Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 15:28:06 +0200 Subject: [PATCH] don't create automenu when default menu exists --- zipl/src/job.c | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/zipl/src/job.c b/zipl/src/job.c index 1b7bcb2..9fc6c2d 100644 --- a/zipl/src/job.c +++ b/zipl/src/job.c @@ -1441,6 +1441,8 @@ get_job_from_config_file(struct command_line* cmdline, struct job_data* job) struct scan_token* scan, *nscan; char* filename; char* source; + char* default_section; + int is_menu; int rc; /* Read configuration file */ @@ -1470,20 +1472,23 @@ get_job_from_config_file(struct command_line* cmdline, struct job_data* job) scan_free(scan); return rc; } - - if (cmdline->automenu) { - nscan = create_fake_menu(scan); - if (nscan == NULL) { - scan_free(scan); - return -1; - } - scan = nscan; - } + + /* disable automenu iff default menu exists */ + rc = get_default_section(scan, &default_section, &is_menu); + if (!rc && is_menu) + cmdline->automenu = 0; /* Get job from config file data */ if (cmdline->menu != NULL || cmdline->automenu) { - if (cmdline->automenu) + if (cmdline->automenu) { + nscan = create_fake_menu(scan); + if (nscan == NULL) { + scan_free(scan); + return -1; + } + scan = nscan; cmdline->menu = misc_strdup("rh-automatic-menu"); + } rc = get_menu_job(scan, cmdline->menu, job); } else { -- 1.6.0.6 0011-s390-tools-1.8.1-execstack.patch: --- NEW FILE 0011-s390-tools-1.8.1-execstack.patch --- >From 77f053260b9d2b4d683edfbed50a528d74620d4b Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 24 Apr 2009 14:05:29 +0200 Subject: [PATCH] remove the executable stack flag --- zipl/src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/zipl/src/Makefile b/zipl/src/Makefile index 16d5276..07b3b74 100644 --- a/zipl/src/Makefile +++ b/zipl/src/Makefile @@ -12,7 +12,7 @@ includes = $(wildcard ../include/*.h) all: zipl zipl: $(objects) - $(CC) $(objects) ../boot/data.o -o zipl + $(CC) -Wl,-z,noexecstack $(objects) ../boot/data.o -o zipl %.o: %.c $(includes) Makefile $(CC) $(CFLAGS) -c -o $@ $< -- 1.6.0.6 0012-s390-tools-1.8.1-ziomon-fixes.patch: --- NEW FILE 0012-s390-tools-1.8.1-ziomon-fixes.patch --- >From 1833f9dae371a48e3f52891262ad2d5fd75fc205 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 5 Jun 2009 14:12:52 +0200 Subject: [PATCH] s390-tools-1.8.1-ziomon-fixes --- ziomon/stats.h | 2 +- ziomon/ziomon | 84 ++++++++++++++++++++++++++++++++++++++++++++----- ziomon/ziomon_util.c | 2 +- 3 files changed, 77 insertions(+), 11 deletions(-) diff --git a/ziomon/stats.h b/ziomon/stats.h index a28d436..0920b27 100644 --- a/ziomon/stats.h +++ b/ziomon/stats.h @@ -142,7 +142,7 @@ static inline void histlog2_print(const char *s, const __u32 a[], int i; printf("%s:\n", s); - for (i = 0; i < h->num; i++) { + for (i = 0; i < h->num - 1; i++) { printf(" %10ld:%6d", (unsigned long)(histlog2_upper_limit(i, h)), a[i]); if (!((i + 1) % 4)) diff --git a/ziomon/ziomon b/ziomon/ziomon index aa1cf78..fe4d8ec 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -32,7 +32,7 @@ WRP_DEVICES=(); WRP_LUNS=(); WRP_LOGFILE=""; # limit of actual data in percent that need space on disk -WRP_SIZE_THRESHOLD="25"; +WRP_SIZE_THRESHOLD="10"; WRP_FORCE=0; function debug() { @@ -234,6 +234,7 @@ function start_trace() { local hosts_param; local luns_param; local i; + local len; if [ $WRP_DEBUG -ne 0 ]; then verbose="-V"; @@ -276,7 +277,7 @@ function start_trace() { blkiomon_command="blkiomon --interval=$WRP_INTERVAL -Q $WRP_MSG_Q_PATH -q $WRP_MSG_Q_ID -m $WRP_MSG_Q_BLKIOMON_ID $verbose_blk -d -"; zfcpdd_command="ziomon_zfcpdd -Q $WRP_MSG_Q_PATH -q $WRP_MSG_Q_ID -m $WRP_MSG_Q_ZIOMON_ZFCPDD_ID -i $WRP_INTERVAL"; debug "starting blktrace: $blktrace_command | $blkiomon_command | $zfcpdd_command"; - $blktrace_command | $blkiomon_command | $zfcpdd_command > $WRP_MSG_Q_PATH/blktrace.log & + $blktrace_command 2>$WRP_MSG_Q_PATH/blktrace.err | $blkiomon_command | $zfcpdd_command > $WRP_MSG_Q_PATH/blktrace.log & i=0; # might take a moment to start all processes in the pipe if system under load while [ $i -lt 60 ]; do @@ -303,7 +304,17 @@ function start_trace() { echo "done"; echo -n "Collecting data..."; - sleep $WRP_DURATION; + # pay extra attention to blktrace + for (( i=0; i<$WRP_DURATION; ++i )); do + len=`cat $WRP_MSG_Q_PATH/blktrace.err | wc -l`; + if [ $len -ne 0 ]; then + cat $WRP_MSG_Q_PATH/blktrace.err; + echo "Error: blktrace has errors, aborting"; + return; + fi + sleep 1; + done + echo "done"; } @@ -358,6 +369,58 @@ function emergency_shutdown() { } +function check_cpuplugd { + # check if cpuplugd is running + # If so, the whole per-cpu mechanism of blktrace gets corrupted, which + # results in the infamous 'bad trace magic' message + if [ -e /var/run/cpuplugd.pid ]; then + echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; + echo "ziomon: Warning: cpuplugd is running which can corrupt the traces."; + echo " It is recommended to stop cpuplugd for the duration of the"; + echo " trace using 'service cpuplugd stop'."; + echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; + fi +} + + +# we need 2MB per device and CPU +function check_vmalloc_space() { + local total; + local used; + local free; + local num_cpus; + local required; + local result; + + num_cpus=`cat /proc/cpuinfo | grep processors | awk '{print $4}'`; + total=`cat /proc/meminfo | grep VmallocTotal | awk '{print $2}'`; + used=`cat /proc/meminfo | grep VmallocUsed | awk '{print $2}'`; + + (( free=$total-$used )); + (( required=$num_cpus*${#WRP_DEVICES[@]}*2048 )); + (( result=$free-$required )); + debug "Required Vmalloc space: $required KBytes"; + if [ $result -lt 0 ]; then + echo "$WRP_TOOLNAME: Not enough free Vmalloc space:"; + echo " Required: $required KBytes"; + echo " Free: $free KBytes"; + exit 1; + fi + + return 0; +} + + +function check_blkiomon() { + # check blkiomon version + ver=`blkiomon -V | awk '{print $3}'`; + if [ "$ver" != "0.2" ]; then + echo "$WRP_TOOLNAME: Unsupported blkiomon version $ver detected, aborting"; + exit 1; + fi +} + + function setup() { while [ -e $WRP_MSG_Q_PATH ]; do WRP_MSG_Q_PATH="$WRP_MSG_Q_PATH$RANDOM"; @@ -476,7 +539,7 @@ function determine_host_adapters() { local num_s_devs; local s_dev_ratio; - echo -n "check devices..."; + echo -n "Check devices..."; # Estimate fraction of /dev/s* devices - if >50%, start with check for regular devices num_s_devs=`echo ${WRP_DEVICES[@]} | sed "s/ /\n/g" | grep /dev/s | wc -l`; @@ -599,7 +662,6 @@ function check_size_requirements() { local estimated_size; local free_space; local logpath=`dirname $WRP_LOGFILE`; - local num_uniq_devs; set `ziomon_mgr -e`; util_base_sz=$1; @@ -611,12 +673,10 @@ function check_size_requirements() { # NOTE: Since blktrace and ziomon_zfcpdd write messages only when there is # traffic, the estimate is an upper boundary only - num_uniq_devs=`echo ${WRP_LUNS[@]} | sed 's/ /\n/g' | cut -d : -f 4 | sort | uniq | wc -l`; - debug "number of unique devices: $num_uniq_devs"; debug "disk space requirements:"; (( size_per_record = $util_base_sz + ${#WRP_HOST_ADAPTERS[@]} * $util_variable_sz + $ioerr_base_sz - + $num_uniq_devs * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) - + ( 2 + $num_uniq_devs) * 8 )); + + ${#WRP_DEVICES[@]} * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) + + ( 2 + ${#WRP_DEVICES[@]}) * 8 )); debug " size per interval: $size_per_record Bytes"; (( total_num_records = $WRP_DURATION / $WRP_INTERVAL )); debug " total number of intervals: $total_num_records"; @@ -653,10 +713,16 @@ setup; parse_params $@; +check_cpuplugd; + +check_blkiomon; + check_for_existing_output; determine_host_adapters; +check_vmalloc_space; + check_size_requirements; [ $? -eq 0 ] && start_trace; diff --git a/ziomon/ziomon_util.c b/ziomon/ziomon_util.c index e3e0762..043d3d1 100644 --- a/ziomon/ziomon_util.c +++ b/ziomon/ziomon_util.c @@ -597,7 +597,7 @@ static int poll_ioerr_cnt(int init, struct ioerr_data *data, for (i=0; inum_luns; ++i) { /* read ioerr_cnt attribute */ if (read_attribute(opts->luns[i], line, NULL)) { - fprintf(stderr, "%s: Warning: Could read %s\n", + fprintf(stderr, "%s: Warning: Could not read %s\n", toolname, opts->luns[i]); grc++; continue; -- 1.6.0.6 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch: --- NEW FILE 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch --- >From 38dfbc2642350aba44df80b41c91ab78891ba818 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 16 Jun 2009 11:10:47 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-fix-unsupported-device Description: zipl: zipl does not exit for an unsupported device driver. Symptom: zipl does not exit with an error when it is run against a target device which is provided by an unsupported device driver (e.g. device-mapper). The resulting IPL records might be incorrect and filesystem corruption may occur. Problem: The device driver name check does not cause an error when the device driver name is unknown and the device is not a partition. Solution: Change the device driver name check to write an error message and to exit when it finds an unknown device driver name. Problem-ID: 53660 --- zipl/src/disk.c | 20 ++------------------ 1 files changed, 2 insertions(+), 18 deletions(-) diff --git a/zipl/src/disk.c b/zipl/src/disk.c index 3a48e44..f1b98a7 100644 --- a/zipl/src/disk.c +++ b/zipl/src/disk.c @@ -190,24 +190,8 @@ disk_get_info(const char* device, struct disk_info** info) data->device = stats.st_rdev & ~SCSI_PARTN_MASK; } else { /* Driver name is unknown */ - if (data->devno == -1) { - if (data->geo.start) { - /* Writing to the parent device of this - * partition may not be safe so stop here. */ - error_reason("Unsupported device driver '%s'", - data->drv_name); - goto out_close; - } - /* Assume that the first block can be overwritten - * even if we don't now the exact device type. */ - data->type = disk_type_scsi; - data->partnum = 0; - data->device = stats.st_rdev; - } else { - error_reason("Unsupported device driver '%s' " - "for disk type DASD", data->drv_name); - goto out_close; - } + error_reason("Unsupported device driver '%s'", data->drv_name); + goto out_close; } /* Convert device size to size in physical blocks */ -- 1.6.0.6 0014-s390-tools-1.8.1-zipl-kdump-man.patch: --- NEW FILE 0014-s390-tools-1.8.1-zipl-kdump-man.patch --- >From 815064b5e73bdeb11e85e04fb691745b15d00e99 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 19 Jun 2009 10:01:30 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-kdump-man Description: Add kdump kernel installation instruction to zipl man page. Symptom: User wants to prepare SCSI disk for dump, but has not installed the kdump kernel rpm. Problem: The installation of the kdump kernel rpm is prereq for preparing a SCSI dump disk for dump. Solution: Document that in the zipl man page. --- zipl/man/zipl.8 | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/zipl/man/zipl.8 b/zipl/man/zipl.8 index 8d2b42c..66b23eb 100644 --- a/zipl/man/zipl.8 +++ b/zipl/man/zipl.8 @@ -176,6 +176,8 @@ will be incomplete. It is not possible to specify both this parameter and the name of a menu or configuration section on the command line at the same time. +.B Note that before using this option the "kernel-kdump" rpm has to be +.B installed. .TP .BR "\-M " " or " "--mvdump=" Install a multi-volume dump record on each device associated with one of the -- 1.6.0.6 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch: --- NEW FILE 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch --- >From b76deacff693b951c2e5a01ed17e058379b9e00a Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:47:02 +0200 Subject: [PATCH] s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid Description: iucvconn: Replace getlogin() with getpwuid(geteuid()) Symptom: The user name is not always logged to syslog. Problem: The getlogin() function returns the name of the user that is logged in. This user name is used to write syslog records. getlogin() retrieves the user information from the utmp database. However, the user information might not always be available, for example, the screen program can remove utmp records (logoff function). Solution: The getpwuid() function is used to get the user name from the passwd file (or any other NSS source, i.e. LDAP etc.). Problem-ID: 54225 --- iucvterm/src/iucvconn.c | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/iucvterm/src/iucvconn.c b/iucvterm/src/iucvconn.c index 61f536e..da7d08a 100644 --- a/iucvterm/src/iucvconn.c +++ b/iucvterm/src/iucvconn.c @@ -7,6 +7,7 @@ * Author(s): Hendrik Brueckner */ #include +#include #include #include #include @@ -237,6 +238,7 @@ int main(int argc, char *argv[]) struct sockaddr_iucv addr; struct termios ios; struct sigaction sigact; + struct passwd *passwd; struct iucvtty_cfg conf; @@ -266,6 +268,9 @@ int main(int argc, char *argv[]) /* syslog */ openlog(SYSLOG_IDENT, LOG_PID, LOG_AUTHPRIV); + /* get user information for syslog */ + passwd = getpwuid(geteuid()); + if (connect(server, (struct sockaddr *) &addr, sizeof(addr)) == -1) { switch (errno) { case EAGAIN: @@ -286,12 +291,14 @@ int main(int argc, char *argv[]) break; } AUDIT("Connection to %s/%s failed for user %s (uid=%i)", - conf.host, conf.service, getlogin(), geteuid()); + conf.host, conf.service, + (passwd != NULL) ? passwd->pw_name : "n/a", geteuid()); rc = 2; goto return_on_error; } AUDIT("Established connection to %s/%s for user %s (uid=%i)", - conf.host, conf.service, getlogin(), geteuid()); + conf.host, conf.service, + (passwd != NULL) ? passwd->pw_name : "n/a", geteuid()); /* send client params */ iucvtty_tx_termenv(server, DEFAULT_TERM); -- 1.6.0.6 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch: --- NEW FILE 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch --- >From 263c0e5646ea3c81e570ec7e53c214cac8cb4412 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:50:08 +0200 Subject: [PATCH] s390-tools-1.8.1-dumpconf-improve-error-checking Description: dumpconf: Improve parameter checking and error messages. Symptom: Ugly and confusing error messages on systems which do not support the dump_reipl shutdown action. Problem: Error handling is incomplete. Solution: The dumpconf init script now validates the syntax of the device specified in the config file. --- etc/init.d/dumpconf | 98 +++++++++++++++++++++++++++++++++++---------------- 1 files changed, 67 insertions(+), 31 deletions(-) diff --git a/etc/init.d/dumpconf b/etc/init.d/dumpconf index e97f76c..42a2242 100755 --- a/etc/init.d/dumpconf +++ b/etc/init.d/dumpconf @@ -119,18 +119,60 @@ verify_ccw_dump_device() fi } -setup_ccw_device() -{ - echo $DEVICE > $1/ccw/device || RETVAL=1 +#------------------------------------------------------------------------------ +# Helper function to check a device string. +#------------------------------------------------------------------------------ +function CheckDeviceString() { + local X + + X=$( + echo "$1" | + awk --posix -F. ' + function PrintBusID(css, grp, devno) { + while(length(devno) < 4) + devno = "0" devno + print css "." grp "." devno + } + NF == 1 && $1 ~ /^[0-9a-fA-F]{1,4}$/ { + PrintBusID("0","0", $1) + next + } + NF != 3 || $1 !~ /^[0-9a-fA-F]{1,2}$/ { + next + } + $2 !~ /^[0-9a-fA-F]{1,2}$/ { + next + } + $3 !~ /^[0-9a-fA-F]{1,4}$/ { + next + } + { + PrintBusID($1, $2, $3) + } + ' + ) + + if [ "$X" != "" ]; then + echo $X + return 0 + fi } -setup_fcp_device() +setup_device() { - echo $DEVICE > $1/fcp/device || RETVAL=1 - echo $WWPN > $1/fcp/wwpn || RETVAL=1 - echo $LUN > $1/fcp/lun || RETVAL=1 - echo $BOOTPROG > $1/fcp/bootprog || RETVAL=1 - echo $BR_LBA > $1/fcp/br_lba || RETVAL=1 + DEV="$(CheckDeviceString $DEVICE)" + if [ "$DEV" != "" ]; then + echo $DEV > $1/$DUMP_TYPE/device || RETVAL=1 + else + RETVAL=1 + echo "ERROR: Invalid device '$DEVICE'" >&2 + fi + if [ $DUMP_TYPE == "fcp" ] && [ $RETVAL -eq 0 ]; then + echo $WWPN > $1/fcp/wwpn || RETVAL=1 + echo $LUN > $1/fcp/lun || RETVAL=1 + echo $BOOTPROG > $1/fcp/bootprog || RETVAL=1 + echo $BR_LBA > $1/fcp/br_lba || RETVAL=1 + fi } setup_nss_device() @@ -145,10 +187,8 @@ setup_reipl() return fi - if [ "$REIPL_TYPE" == "ccw" ]; then - setup_ccw_device $REIPL_CONFIG_DIR - elif [ "$REIPL_TYPE" == "fcp" ]; then - setup_fcp_device $REIPL_CONFIG_DIR + if [ "$REIPL_TYPE" == "ccw" ] || [ "$REIPL_TYPE" == "fcp" ]; then + setup_device $REIPL_CONFIG_DIR elif [ "$REIPL_TYPE" == "nss" ]; then setup_nss_device $REIPL_CONFIG_DIR else @@ -169,28 +209,23 @@ setup_reipl() setup_dump() { - if [ "$DUMP_TYPE" == "ccw" ]; then - setup_ccw_device $DUMP_CONFIG_DIR - elif [ "$DUMP_TYPE" == "fcp" ]; then - setup_fcp_device $DUMP_CONFIG_DIR + if [ "$DUMP_TYPE" == "ccw" ] || [ "$DUMP_TYPE" == "fcp" ]; then + setup_device $DUMP_CONFIG_DIR elif [ "$DUMP_TYPE" != "none" ]; then echo "ERROR: Unknown dump type '$DUMP_TYPE'" >&2 RETVAL=1 fi - echo $DUMP_TYPE > $DUMP_CONFIG_DIR/dump_type || RETVAL=1 + if [ $RETVAL -eq 0 ]; then + echo $DUMP_TYPE > $DUMP_CONFIG_DIR/dump_type || RETVAL=1 + fi if [ $RETVAL -eq 1 ]; then - echo "ERROR: Setup of $DUMP_TYPE dump device failed." >&2 echo none > $DUMP_CONFIG_DIR/dump_type return $RETVAL fi - if [ "$CONF_DUMP_TYPE" == "none" ]; then - echo "No dump device configured. " - else - echo "$ON_PANIC on panic configured: Using $DUMP_TYPE dump device." - fi + echo "Configuring $ON_PANIC on panic: Using $DUMP_TYPE dump device." } setup_on_panic_vmcmd() @@ -260,7 +295,7 @@ status_dump() echo "type....: fcp" print_fcp_device $DUMP_CONFIG_DIR else - echo "ERROR: Unknown dump device type '$TYPE'!" >&2 + echo "ERROR: Unknown dump device type '$CONF_DUMP_TYPE'!" >&2 echo " Please check if you have the latest dumpconf package!" >&2 fi } @@ -316,27 +351,28 @@ start() if [ "$ON_PANIC" == "reipl" ]; then setup_reipl - elif [ "$ON_PANIC" == "dump" ]; then + elif [ "$ON_PANIC" == "dump" ] || [ "$ON_PANIC" == "dump_reipl" ]; then setup_dump elif [ "$ON_PANIC" == "vmcmd" ]; then setup_on_panic_vmcmd - elif [ "$ON_PANIC" == "dump_reipl" ]; then - setup_dump elif [ "$ON_PANIC" == "stop" ]; then echo "stop on panic configured." else echo "ERROR: Unknown 'on panic' type '$ON_PANIC'" >&2 RETVAL=1 fi + if [ $RETVAL -eq 1 ]; then + echo "ERROR: Setup of $DUMP_TYPE dump device failed." >&2 + return $RETVAL + fi - echo $ON_PANIC > $ON_PANIC_CONFIG_FILE || RETVAL=1 + echo $ON_PANIC > $ON_PANIC_CONFIG_FILE 2> /dev/null || RETVAL=1 # check for errors if [ $RETVAL -eq 1 ]; then - ERRMSG="\"on panic action\" configuration failed!" echo stop > $ON_PANIC_CONFIG_FILE - echo "ERROR: $ERRMSG Check $DUMP_CONFIG_FILE!" >&2 + echo "ERROR: $ON_PANIC not supported by hardware!" >&2 return $RETVAL fi -- 1.6.0.6 0017-s390-tools-1.8.1-cpuplugd-memplug.patch: --- NEW FILE 0017-s390-tools-1.8.1-cpuplugd-memplug.patch --- >From 277fbeaa8cdd27e586d1d3d0f58242a0a40b3a48 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:51:44 +0200 Subject: [PATCH] s390-tools-1.8.1-cpuplugd-memplug Description: cpuplugd: Daemon does not work in an memplug only environment. Symptom: When the cpuplugd daemon is executed with only the memory configuration in cpuplugd.conf it does not start properly. Problem: A bug in the configuration file parser prevents this valid user specified setup. Solution: Adjust the configuration file parser, to accept this type of system configuration. --- cpuplugd/config.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpuplugd/config.c b/cpuplugd/config.c index 7f02c6c..93b31e5 100644 --- a/cpuplugd/config.c +++ b/cpuplugd/config.c @@ -66,6 +66,7 @@ void parse_configline(struct config *cfg, char *line) rc = -1; cmm_min = -1; + rvalue = NULL; /* parse line by line */ for (token = strtok_r(line, "\n", &save); token != NULL; @@ -318,8 +319,7 @@ void check_config(struct config *cfg) int lpar_status, error_counter; lpar_status = check_lpar(); - - if (cfg->cpu_max <= cfg->cpu_min && cfg->cpu_max != 0) { + if (cfg->cpu_max <= cfg->cpu_min && cfg->cpu_max != 0 && cpu != 0) { if (foreground == 1) fprintf(stderr, "cpu_max below or equal cpu_min," " aborting.\n"); @@ -328,7 +328,6 @@ void check_config(struct config *cfg) "aborting\n"); clean_up(); } - if (cfg->cpu_max < 0 || cfg->cpu_min < 0 || cfg->update < 0 || cfg->hotplug == NULL || cfg->hotunplug == NULL) { if (foreground == 1) @@ -337,6 +336,7 @@ void check_config(struct config *cfg) if (foreground == 0) syslog(LOG_INFO, "No valid CPU hotplug " "configuration detected\n"); + cpu = 0; } else { cpu = 1; if (debug) { -- 1.6.0.6 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch: --- NEW FILE 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch --- >From 65f317c463de53abf7a8bba3285a077dbaf42486 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:53:22 +0200 Subject: [PATCH] s390-tools-1.8.1-ziomon-new-blkiomon ziomon: Adjust to use blkiomon V0.3 Update the blkiomon header to the version packaged in RHEL 5.4, update the version check appropriately and use the version number for .log files to match what the proper, forthcoming version will use. --- ziomon/blkiomon.h | 4 ++-- ziomon/ziomon | 2 +- ziomon/ziomon_dacc.c | 12 ++++++------ ziomon/ziomon_dacc.h | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ziomon/blkiomon.h b/ziomon/blkiomon.h index da27d00..42b6b46 100644 --- a/ziomon/blkiomon.h +++ b/ziomon/blkiomon.h @@ -25,6 +25,7 @@ struct blkiomon_stat { /* Histogram of dispatch to completion request times in u-secs. Step-size is 8, starting at 0. */ __u32 d2c_hist[BLKIOMON_D2C_BUCKETS]; + __u32 device; /* device identifier */ struct minmax size_r; /* stats of read request sizes in Bytes */ struct minmax size_w; /* stats of write request sizes in Bytes */ struct minmax d2c_r; /* stats of read request durations in u-secs */ @@ -33,8 +34,7 @@ struct blkiomon_stat { struct minmax thrput_w; /* stats of write throughput in Kbytes per micro-sec */ __u64 bidir; /* number of bi-directional requests, is set exclusive (ie. not implicitly adding 1 to rd and wrt as well) */ - __u32 device; /* device identifier */ -} __attribute__ ((packed)); +}; static struct histlog2 size_hist = {0, 1024, BLKIOMON_SIZE_BUCKETS}; diff --git a/ziomon/ziomon b/ziomon/ziomon index fe4d8ec..297651c 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -414,7 +414,7 @@ function check_vmalloc_space() { function check_blkiomon() { # check blkiomon version ver=`blkiomon -V | awk '{print $3}'`; - if [ "$ver" != "0.2" ]; then + if [ "$ver" != "0.3" ]; then echo "$WRP_TOOLNAME: Unsupported blkiomon version $ver detected, aborting"; exit 1; fi diff --git a/ziomon/ziomon_dacc.c b/ziomon/ziomon_dacc.c index f2c34ac..0a17d9e 100644 --- a/ziomon/ziomon_dacc.c +++ b/ziomon/ziomon_dacc.c @@ -426,7 +426,7 @@ int add_msg(FILE *fp, struct message *msg, struct file_header *f_hdr, int init_file(FILE *fp, struct file_header *f_hdr) { f_hdr->magic = DATA_MGR_MAGIC; - f_hdr->version = DATA_MGR_V2; + f_hdr->version = DATA_MGR_V3; f_hdr->first_msg_offset = 0; f_hdr->end_time = 0; f_hdr->begin_time = 0; @@ -452,11 +452,11 @@ static int get_header(FILE *fp, struct file_header *hdr) toolname); return -2; } - if (hdr->version != DATA_MGR_V2) { + if (hdr->version != DATA_MGR_V3) { fprintf(stderr, "%s: Wrong version: .log data is in version %u" " format, while this tool only supports version %u." " Get the matching tool version and try again.\n", - toolname, hdr->version, DATA_MGR_V2); + toolname, hdr->version, DATA_MGR_V3); return -2; } hdr->begin_time = 0; @@ -557,11 +557,11 @@ static int read_aggr_file(FILE *fp, struct aggr_data *data) toolname); return -1; } - if (data->version != DATA_MGR_V2) { + if (data->version != DATA_MGR_V3) { fprintf(stderr, "%s: Wrong version: .agg data is in version %u" " format, while this tool only supports version %u." " Get the matching tool version and try again.\n", - toolname, data->version, DATA_MGR_V2); + toolname, data->version, DATA_MGR_V3); return -1; } @@ -805,7 +805,7 @@ int write_aggr_file(FILE *fp, struct aggr_data *data) void init_aggr_data_struct(struct aggr_data *data) { data->magic = DATA_MGR_MAGIC_AGGR; - data->version = DATA_MGR_V2; + data->version = DATA_MGR_V3; data->num_zfcpdd = 0; data->num_blkiomon = 0; data->end_time = 0; diff --git a/ziomon/ziomon_dacc.h b/ziomon/ziomon_dacc.h index f280c9b..8f301f4 100644 --- a/ziomon/ziomon_dacc.h +++ b/ziomon/ziomon_dacc.h @@ -17,7 +17,7 @@ #define DATA_MGR_MAGIC 0x64616d67 #define DATA_MGR_MAGIC_AGGR 0x61676772 -#define DATA_MGR_V2 2u +#define DATA_MGR_V3 3u /** -- 1.6.0.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Apr 2009 08:03:08 -0000 1.2 +++ .cvsignore 3 Jul 2009 09:22:09 -0000 1.3 @@ -1,4 +1,4 @@ -s390-tools-1.8.0.tar.bz2 +s390-tools-1.8.1.tar.bz2 cmsfs-1.1.8c.tar.gz lib-zfcp-hbaapi-2.0.tar.gz src_vipa-2.0.4.tar.gz Index: s390.csh =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/s390.csh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- s390.csh 7 Apr 2009 08:03:09 -0000 1.1 +++ s390.csh 3 Jul 2009 09:22:10 -0000 1.2 @@ -1,5 +1,5 @@ # /etc/profile.d/s390.csh - set TERM variable -if ( `/sbin/consoletype` == "serial" ) then +if ( `/sbin/consoletype stdout` == "serial" ) then setenv TERM dumb endif Index: s390.sh =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/s390.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- s390.sh 7 Apr 2009 08:03:09 -0000 1.1 +++ s390.sh 3 Jul 2009 09:22:10 -0000 1.2 @@ -1,6 +1,6 @@ # /etc/profile.d/s390.sh - set TERM variable -contype=`/sbin/consoletype` +contype=`/sbin/consoletype stdout` if [ "$contype" == "serial" ]; then export TERM=dumb fi Index: s390utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/s390utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- s390utils.spec 18 Apr 2009 07:16:43 -0000 1.2 +++ s390utils.spec 3 Jul 2009 09:22:10 -0000 1.3 @@ -7,8 +7,8 @@ Name: s390utils Summary: Utilities and daemons for IBM System/z Group: System Environment/Base -Version: 1.8.0 -Release: 6%{?dist} +Version: 1.8.1 +Release: 1%{?dist} Epoch: 2 License: GPLv2 and GPLv2+ and CPL Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -26,23 +26,28 @@ Source7: zfcp.udev Source8: dasd.udev # http://www.ibm.com/developerworks/linux/linux390/zfcp-hbaapi-%{hbaapiver}.html Source9: http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/lib-zfcp-hbaapi-%{hbaapiver}.tar.gz -Patch1: 0001-s390-tools-1.5.0-su.patch -Patch2: 0002-s390-tools-1.5.0-fdasd-raid.patch -Patch3: 0003-s390-tools-1.5.0-fmtpercentage.patch -Patch4: 0004-s390-tools-1.8.0-automenu.patch -Patch5: 0005-s390-tools-1.5.3-lvm.patch -Patch6: 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch -Patch7: 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch -Patch8: 0008-s390-tools-1.8.0-zipl-timeout.patch -Patch9: 0009-s390-tools-1.8.0-zipl-target.patch -Patch10: 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch -Patch11: 0011-s390-tools-1.5.3-fdasd-raid.patch -Patch12: 0012-s390-tools-1.8.0-initscript-fix.patch -Patch13: 0013-s390-tools-1.8.0-cflags.patch -Patch14: 0014-s390-tools-1.8.0-headers.patch + +Patch1: 0001-s390-tools-1.8.1-common-mak.patch +Patch4: 0004-s390-tools-1.8.1-zipl-automenu.patch +Patch5: 0005-s390-tools-1.8.1-fdasd-su.patch +Patch6: 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch +Patch8: 0008-s390-tools-1.8.1-ziorep-fixes.patch +Patch9: 0009-s390-tools-1.8.1-cflags.patch +Patch10: 0010-s390-tools-1.8.1-defaultmenu.patch +Patch11: 0011-s390-tools-1.8.1-execstack.patch +Patch12: 0012-s390-tools-1.8.1-ziomon-fixes.patch +Patch13: 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch +Patch14: 0014-s390-tools-1.8.1-zipl-kdump-man.patch +Patch15: 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch +Patch16: 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch +Patch17: 0017-s390-tools-1.8.1-cpuplugd-memplug.patch +Patch18: 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch + Patch100: cmsfs-1.1.8-warnings.patch Patch101: cmsfs-1.1.8-kernel26.patch + Patch200: src_vipa-2.0.4-locations.patch + Requires: s390utils-base = %{epoch}:%{version}-%{release} Requires: s390utils-osasnmpd = %{epoch}:%{version}-%{release} Requires: s390utils-cpuplugd = %{epoch}:%{version}-%{release} @@ -64,47 +69,46 @@ be used together with the zSeries (s390) %prep %setup -q -n s390-tools-%{version} -a 4 -a 6 -a 9 -# Fix to honor the silent flag for wrongly formated disks -%patch1 -p1 -b .su - -# Enhancement to add raid partiton support to dasds -%patch2 -p1 -b .fdasd-raid - -# Enhancement to add a percentage output bar to dasdfmt, needed for anaconda -%patch3 -p1 -b .fmtpercentage +# Use rpm PATH variables for installation and set correct zfcpdump path +%patch1 -p1 -b .common-mak # Patch to maintain backwards compatibility with older zipl multiboot feature -%patch4 -p1 -b .automenu +%patch4 -p1 -b .zipl-automenu + +# Fix to honor the silent flag for wrongly formated disks +%patch5 -p1 -b .fdasd-su -# Patch to fix installer LVM partitions that show up as "unknown" in fdasd (#250176) -%patch5 -p1 -b .lvm +# Enhancement to add raid partiton support to dasds +%patch6 -p1 -b .fdasd-raid-lvm -# Added zfcpdump kernel symlink to dumpconf init script (#430550) -%patch6 -p1 -b .dumpconf-vmlinuz +# Post 1.8.1 fixes for ziorep +%patch8 -p1 -b .ziorep -# Updates for cleanup SCSI dumper code for upstream integration - tool (#253118) -%patch7 -p1 -b .zipl-zfcpdump-2 +# Allow override of optimization level in CFLAGS +%patch9 -p1 -b .cflags -# Add support for timeout parameter in /etc/zipl.conf (#323651) -%patch8 -p1 -b .zipl-timeout +# Don't build automenu iff default menu exists (#486444) +%patch10 -p1 -b .defaultmenu -# Fix for zipl fail when section is specified and target is not repeated for all sections (#381201) -%patch9 -p1 -b .zipl-target +# Remove the execuatble stack flag from zipl +%patch11 -p1 -b .execstack -# Update documentation for zfcpdump (#437477) -%patch10 -p1 -b .zipl-zfcpdump-man +# Post 1.8.1 fixes for ziomon +%patch12 -p1 -b .ziomon -# fix the Linux Raid partition type is not retained when changed through fdasd (#445271) -%patch11 -p1 -b .fdasd-raid +# Post 1.8.1 fix for zipl +%patch13 -p1 -b .zipl-device -# fix init scripts of cpuplugd, dumpconf and mon_statd -%patch12 -p1 -b .initscripts-fix +# Update zipl man page +%patch14 -p1 -b .zipl-kdump-man -# allow override of optimization level in CFLAGS -%patch13 -p1 -b .cflags +# Last-minute fixes from IBM +%patch15 -p1 -b iucvterm-getlogin-to-getpwuid +%patch16 -p1 -b dumpconf-improve-error-checking +%patch17 -p1 -b cpuplugd-memplug -# fix the order of inclusion for glibc and kernel headers -%patch14 -p1 -b .headers +# Adapt ziomon to the new layout of the blkiomon_stat structure (#506966) +%patch18 -p1 -b ziomon-new-blkiomon # # cmsfs @@ -150,7 +154,7 @@ popd %build -make OPT_FLAGS="$RPM_OPT_FLAGS" +make OPT_FLAGS="$RPM_OPT_FLAGS" DISTRELEASE=%{release} pushd cmsfs-%{cmsfsver} ./configure @@ -174,7 +178,8 @@ mkdir -p $RPM_BUILD_ROOT{%{_lib},%{_libd make install \ INSTROOT=$RPM_BUILD_ROOT \ MANDIR=$RPM_BUILD_ROOT%{_mandir} \ - LIBDIR=${RPM_BUILD_ROOT}/%{_lib} + LIBDIR=${RPM_BUILD_ROOT}/%{_lib} \ + DISTRELEASE=%{release} %{__mkdir} -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig %{__mkdir} -p ${RPM_BUILD_ROOT}%{_initddir} @@ -199,11 +204,12 @@ install -m 755 etc/init.d/cpuplugd ${RPM install -D -m 644 etc/udev/rules.d/57-osasnmpd.rules ${RPM_BUILD_ROOT}%{_sysconfdir}/udev/rules.d -install -p -m 755 cmsfs-%{cmsfsver}/cmsfscat $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfslst $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfsvol $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfscp $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfsck $RPM_BUILD_ROOT%{_sbindir} +# cmsfs tools must be available in /sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfscat $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfslst $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfsvol $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfscp $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfsck $RPM_BUILD_ROOT/sbin install -p -m 644 cmsfs-%{cmsfsver}/cmsfscat.8 $RPM_BUILD_ROOT%{_mandir}/man8 install -p -m 644 cmsfs-%{cmsfsver}/cmsfslst.8 $RPM_BUILD_ROOT%{_mandir}/man8 install -p -m 644 cmsfs-%{cmsfsver}/cmsfsvol.8 $RPM_BUILD_ROOT%{_mandir}/man8 @@ -212,7 +218,7 @@ install -p -m 644 cmsfs-%{cmsfsver}/cmsf # src_vipa pushd src_vipa-%{vipaver} -make install LIBDIR=%{_libdir} INSTROOT=$RPM_BUILD_ROOT +make install LIBDIR=%{_libdir} SBINDIR=%{_bindir} INSTROOT=$RPM_BUILD_ROOT popd pushd lib-zfcp-hbaapi-%{hbaapiver} @@ -225,6 +231,7 @@ popd %clean rm -rf ${RPM_BUILD_ROOT} + %files %defattr(-,root,root,-) %doc README @@ -398,8 +405,6 @@ fi /sbin/scsi_logging_level /sbin/zfcpdbf /sbin/qetharp -/sbin/qetharp-2.4 -/sbin/qetharp-2.6 /sbin/qethconf /sbin/tape390_display /sbin/tape390_crypt @@ -460,7 +465,7 @@ fi /sbin/zfcpconf.sh # src_vipa -%{_sbindir}/src_vipa.sh +%{_bindir}/src_vipa.sh %{_libdir}/src_vipa.so %{_mandir}/man8/src_vipa.8.gz @@ -481,8 +486,6 @@ ATM Ethernet LAN Emulation in QDIO mode. %files osasnmpd %defattr(-,root,root,-) -%{_sbindir}/osasnmpd-2.4 -%{_sbindir}/osasnmpd-2.6 %{_sbindir}/osasnmpd %config(noreplace) %{_sysconfdir}/udev/rules.d/57-osasnmpd.rules %{_mandir}/man8/osasnmpd.8* @@ -571,7 +574,7 @@ fi License: GPLv2 Summary: S390 ziomon tools Group: Applications/System -Requires: perl lsscsi coreutils blktrace >= 1.0 +Requires: perl lsscsi coreutils blktrace >= 1.0.1 %description ziomon Tool set to collect data for zfcp performance analysis. @@ -583,11 +586,68 @@ Tool set to collect data for zfcp perfor /sbin/ziomon_mgr /sbin/ziomon_util /sbin/ziomon_zfcpdd +/sbin/ziorep_config +/sbin/ziorep_traffic +/sbin/ziorep_utilization %{_mandir}/man8/ziomon.8* %{_mandir}/man8/ziomon_fcpconf.8* %{_mandir}/man8/ziomon_mgr.8* %{_mandir}/man8/ziomon_util.8* %{_mandir}/man8/ziomon_zfcpdd.8* +%{_mandir}/man8/ziorep_config.8* +%{_mandir}/man8/ziorep_traffic.8* +%{_mandir}/man8/ziorep_utilization.8* + +# +# *********************** s390-tools iucvterm package ************************* +# +%package iucvterm +License: GPLv2 +Summary: z/VM IUCV terminal applications +Group: Applications/System +BuildRequires: gettext + +%description iucvterm +z/VM IUCV terminal applications. + +%pre iucvterm +# check for ts-shell group and create it +getent group ts-shell > /dev/null || groupadd -r ts-shell + +%post iucvterm +# /etc/shells is provided by "setup" +grep -q '^/usr/bin/ts-shell$' /etc/shells \ + || echo "/usr/bin/ts-shell" >> /etc/shells + +%postun iucvterm +if [ $1 = 0 ] +then + # remove ts-shell from /etc/shells on uninstall + grep -v '^/usr/bin/ts-shell$' /etc/shells > /etc/shells.ts-new + mv /etc/shells.ts-new /etc/shells + chmod 0644 /etc/shells +fi + +%files iucvterm +%defattr(-,root,root,-) +%dir %{_sysconfdir}/iucvterm +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-audit-systems.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-authorization.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-shell.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/unrestricted.conf +%{_bindir}/iucvconn +%{_bindir}/iucvtty +%{_bindir}/ts-shell +%{_sbindir}/chiucvallow +%{_sbindir}/lsiucvallow +%dir %attr(2770,root,ts-shell) /var/log/ts-shell +%doc iucvterm/doc/ts-shell +%{_mandir}/man1/iucvconn.1* +%{_mandir}/man1/iucvtty.1* +%{_mandir}/man1/ts-shell.1* +%{_mandir}/man7/af_iucv.7* +%{_mandir}/man8/chiucvallow.8* +%{_mandir}/man9/hvc_iucv.9* # # *********************** libzfcphbaapi package *********************** @@ -661,11 +721,11 @@ This package contains the CMS file syste %files cmsfs %defattr(-,root,root,-) -%{_sbindir}/cmsfscat -%{_sbindir}/cmsfsck -%{_sbindir}/cmsfscp -%{_sbindir}/cmsfslst -%{_sbindir}/cmsfsvol +/sbin/cmsfscat +/sbin/cmsfsck +/sbin/cmsfscp +/sbin/cmsfslst +/sbin/cmsfsvol %{_mandir}/man8/cmsfscat.8* %{_mandir}/man8/cmsfsck.8* %{_mandir}/man8/cmsfscp.8* @@ -674,6 +734,14 @@ This package contains the CMS file syste %changelog +* Mon Jun 29 2009 Dan Hor??k 2:1.8.1-1 +- update to 1.8.1 +- drop upstreamed patches +- create iucvterm subpackage +- update src_vipa locations patch +- install cmsfs tools into /sbin +- add post 1.8.1 fixes from IBM + * Fri Apr 17 2009 Dan Hor??k 2:1.8.0-6 - fix build with newer kernels Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Apr 2009 08:03:09 -0000 1.2 +++ sources 3 Jul 2009 09:22:10 -0000 1.3 @@ -1,4 +1,4 @@ -5033eee356663d160784e37b193f93fa s390-tools-1.8.0.tar.bz2 +6a94c4655204a4ec7a2c64f42c9afed3 s390-tools-1.8.1.tar.bz2 71a8ee5918f2c44c385fcfe8350cdc98 cmsfs-1.1.8c.tar.gz 2cbfffca3f07c61420899f45d221d451 lib-zfcp-hbaapi-2.0.tar.gz ba42772e5b305b5e147344442cd70826 src_vipa-2.0.4.tar.gz src_vipa-2.0.4-locations.patch: Index: src_vipa-2.0.4-locations.patch =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/F-11/src_vipa-2.0.4-locations.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- src_vipa-2.0.4-locations.patch 7 Apr 2009 08:03:09 -0000 1.1 +++ src_vipa-2.0.4-locations.patch 3 Jul 2009 09:22:10 -0000 1.2 @@ -42,3 +42,33 @@ index 669b6c6..d395fa8 100644 -- 1.6.0.6 +From 5c21f29f4d9e82942a997775c111280b85d01bb8 Mon Sep 17 00:00:00 2001 +From: =?utf-8?q?Dan=20Hor=C3=A1k?= +Date: Wed, 22 Apr 2009 12:53:55 +0200 +Subject: [PATCH] make the man page path and script path configurable + +--- + Makefile | 6 ++++-- + 1 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index d395fa8..365472b 100644 +--- a/Makefile ++++ b/Makefile +@@ -23,9 +23,11 @@ VERSION=2.0.4 + LIBDIR=/usr/lib + SRC_VIPA_PATH=$(INSTROOT)$(LIBDIR) + # the path to the starter script +-SRC_VIPA_STARTER_PATH=$(INSTROOT)/usr/sbin ++SBINDIR=/usr/sbin ++SRC_VIPA_STARTER_PATH=$(INSTROOT)$(SBINDIR) + # path to man page +-SRC_VIPA_MANPAGE_PATH=$(INSTROOT)/usr/share/man ++MANDIR=/usr/share/man ++SRC_VIPA_MANPAGE_PATH=$(INSTROOT)$(MANDIR) + + all: src_vipa.so src_vipa.sh + +-- +1.6.0.6 + --- 0001-s390-tools-1.5.0-su.patch DELETED --- --- 0002-s390-tools-1.5.0-fdasd-raid.patch DELETED --- --- 0003-s390-tools-1.5.0-fmtpercentage.patch DELETED --- --- 0004-s390-tools-1.8.0-automenu.patch DELETED --- --- 0005-s390-tools-1.5.3-lvm.patch DELETED --- --- 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch DELETED --- --- 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch DELETED --- --- 0008-s390-tools-1.8.0-zipl-timeout.patch DELETED --- --- 0009-s390-tools-1.8.0-zipl-target.patch DELETED --- --- 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch DELETED --- --- 0011-s390-tools-1.5.3-fdasd-raid.patch DELETED --- --- 0012-s390-tools-1.8.0-initscript-fix.patch DELETED --- --- 0013-s390-tools-1.8.0-cflags.patch DELETED --- --- 0014-s390-tools-1.8.0-headers.patch DELETED --- From sharkcz at fedoraproject.org Fri Jul 3 09:23:00 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 3 Jul 2009 09:23:00 +0000 (UTC) Subject: rpms/s390utils/devel 0001-s390-tools-1.8.1-common-mak.patch, NONE, 1.1 0004-s390-tools-1.8.1-zipl-automenu.patch, NONE, 1.1 0005-s390-tools-1.8.1-fdasd-su.patch, NONE, 1.1 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch, NONE, 1.1 0008-s390-tools-1.8.1-ziorep-fixes.patch, NONE, 1.1 0009-s390-tools-1.8.1-cflags.patch, NONE, 1.1 0010-s390-tools-1.8.1-defaultmenu.patch, NONE, 1.1 0011-s390-tools-1.8.1-execstack.patch, NONE, 1.1 0012-s390-tools-1.8.1-ziomon-fixes.patch, NONE, 1.1 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch, NONE, 1.1 0014-s390-tools-1.8.1-zipl-kdump-man.patch, NONE, 1.1 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch, NONE, 1.1 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch, NONE, 1.1 0017-s390-tools-1.8.1-cpuplugd-memplug.patch, NONE, 1.1 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 s390.csh, 1.1, 1.2 s390.sh, 1.1, 1.2 s390utils.spec, 1.1, 1.2 sources, 1.2, 1.3 src_vipa-2.0.4-locations.patch, 1.1, 1.2 0001-s390-tools-1.5.0-su.patch, 1.1, NONE 0002-s390-tools-1.5.0-fdasd-raid.patch, 1.1, NONE 0003-s390-tools-1.5.0-fmtpercentage.patch, 1.1, NONE 0004-s390-tools-1.8.0-automenu.patch, 1.1, NONE 0005-s390-tools-1.5.3-lvm.patch, 1.1, NONE 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch, 1.1, NONE 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch, 1.1, NONE 0008-s390-tools-1.8.0-zipl-timeout.patch, 1.1, NONE 0009-s390-tools-1.8.0-zipl-target.patch, 1.1, NONE 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch, 1.1, NONE 0011-s390-tools-1.5.3-fdasd-raid.patch, 1.1, NONE 0012-s390-tools-1.8.0-initscript-fix.patch, 1.1, NONE 0013-s390-tools-1.8.0-cflags.patch, 1.1, NONE Message-ID: <20090703092300.8350811C041A@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/s390utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8588 Modified Files: .cvsignore s390.csh s390.sh s390utils.spec sources src_vipa-2.0.4-locations.patch Added Files: 0001-s390-tools-1.8.1-common-mak.patch 0004-s390-tools-1.8.1-zipl-automenu.patch 0005-s390-tools-1.8.1-fdasd-su.patch 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch 0008-s390-tools-1.8.1-ziorep-fixes.patch 0009-s390-tools-1.8.1-cflags.patch 0010-s390-tools-1.8.1-defaultmenu.patch 0011-s390-tools-1.8.1-execstack.patch 0012-s390-tools-1.8.1-ziomon-fixes.patch 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch 0014-s390-tools-1.8.1-zipl-kdump-man.patch 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch 0017-s390-tools-1.8.1-cpuplugd-memplug.patch 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch Removed Files: 0001-s390-tools-1.5.0-su.patch 0002-s390-tools-1.5.0-fdasd-raid.patch 0003-s390-tools-1.5.0-fmtpercentage.patch 0004-s390-tools-1.8.0-automenu.patch 0005-s390-tools-1.5.3-lvm.patch 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch 0008-s390-tools-1.8.0-zipl-timeout.patch 0009-s390-tools-1.8.0-zipl-target.patch 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch 0011-s390-tools-1.5.3-fdasd-raid.patch 0012-s390-tools-1.8.0-initscript-fix.patch 0013-s390-tools-1.8.0-cflags.patch Log Message: * Mon Jun 29 2009 Dan Hor??k 2:1.8.1-1 - update to 1.8.1 - drop upstreamed patches - create iucvterm subpackage - update src_vipa locations patch - install cmsfs tools into /sbin - add post 1.8.1 fixes from IBM 0001-s390-tools-1.8.1-common-mak.patch: --- NEW FILE 0001-s390-tools-1.8.1-common-mak.patch --- >From 1536e0140cbce3c8837478cfc25ea45dc3681cce Mon Sep 17 00:00:00 2001 From: Dan Horak Date: Sun, 20 Jul 2008 09:24:05 +0200 Subject: [PATCH] s390-tools-1.5.3-zipl-zfcpdump-2 --- common.mak | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mak b/common.mak index 62c17e2..3acb534 100644 --- a/common.mak +++ b/common.mak @@ -38,8 +38,8 @@ GROUP = $(shell id -gn) export INSTROOT BINDIR LIBDIR MANDIR OWNER GROUP # Special defines for zfcpdump -ZFCPDUMP_DIR = /usr/local/share/zfcpdump -ZFCPDUMP_IMAGE = zfcpdump.image +ZFCPDUMP_DIR = /boot +ZFCPDUMP_IMAGE = zfcpdump ZFCPDUMP_RD = zfcpdump.rd export ZFCPDUMP_DIR ZFCPDUMP_IMAGE ZFCPDUMP_RD endif -- 1.6.0.6 0004-s390-tools-1.8.1-zipl-automenu.patch: --- NEW FILE 0004-s390-tools-1.8.1-zipl-automenu.patch --- >From 1648e0dab246190c170e82244c790ef8e9144e40 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:45:36 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-automenu --- zipl/man/zipl.8 | 7 ++ zipl/src/job.c | 194 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- zipl/src/scan.c | 4 +- zipl/src/zipl.c | 1 + 4 files changed, 197 insertions(+), 9 deletions(-) diff --git a/zipl/man/zipl.8 b/zipl/man/zipl.8 index 8a83c01..6ebf240 100644 --- a/zipl/man/zipl.8 +++ b/zipl/man/zipl.8 @@ -249,6 +249,13 @@ whether they contain a dump signature or not. This option can only be used together with .BR \-\-mvdump . +.TP +.BR "\-x" " or " "\-\-no-automenu" +Disables the automatic creation of a multiboot menu. Specifying a menu with the +"-m " option or a section disables this feature, too. This option was +added for compatibility with previous versions of the multiboot version of +zipl. + .SH EXAMPLE 1. Scenario: prepare disk for booting a Linux kernel image using the following parameters: diff --git a/zipl/src/job.c b/zipl/src/job.c index 2f69104..1b7bcb2 100644 --- a/zipl/src/job.c +++ b/zipl/src/job.c @@ -43,6 +43,7 @@ static struct option options[] = { { "version", no_argument, NULL, 'v'}, { "verbose", no_argument, NULL, 'V'}, { "add-files", no_argument, NULL, 'a'}, + { "no-automenu", no_argument, NULL, 'x'}, { "tape", required_argument, NULL, 'T'}, { "dry-run", no_argument, NULL, '0'}, { "force", no_argument, NULL, 'f'}, @@ -50,7 +51,7 @@ static struct option options[] = { }; /* Command line option abbreviations */ -static const char option_string[] = "-c:t:i:r:p:P:d:D:M:s:m:hHnVvaT:f"; +static const char option_string[] = "-c:t:i:r:p:P:d:D:M:s:m:hHnVvaxT:f"; struct command_line { char* data[SCAN_KEYWORD_NUM]; @@ -62,11 +63,14 @@ struct command_line { int version; int verbose; int add_files; + int automenu; int dry_run; int force; enum scan_section_type type; }; +/* Global variable for default boot target. Ugly but necessary... */ +static char *default_target; static int store_option(struct command_line* cmdline, enum scan_keyword_id keyword, @@ -92,6 +96,7 @@ get_command_line(int argc, char* argv[], struct command_line* line) int i; memset((void *) &cmdline, 0, sizeof(struct command_line)); + cmdline.automenu = 1; cmdline.type = section_invalid; is_keyword = 0; /* Process options */ @@ -101,16 +106,22 @@ get_command_line(int argc, char* argv[], struct command_line* line) switch (opt) { case 'd': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_dumpto, optarg); break; case 'D': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_dumptofs, optarg); break; case 'M': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_mvdump, optarg); #ifndef __s390x__ @@ -121,35 +132,49 @@ get_command_line(int argc, char* argv[], struct command_line* line) break; case 'i': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_image, optarg); break; case 'P': + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_parameters, optarg); break; case 'p': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_parmfile, optarg); break; case 'r': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_ramdisk, optarg); break; case 's': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_segment, optarg); break; case 't': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_target, optarg); break; case 'T': is_keyword = 1; + cmdline.automenu = 0; + scan_key_table[1][8] = req; rc = store_option(&cmdline, scan_keyword_tape, optarg); break; @@ -190,6 +215,10 @@ get_command_line(int argc, char* argv[], struct command_line* line) case 'f': cmdline.force = 1; break; + case 'x': + cmdline.automenu = 0; + scan_key_table[1][8] = req; + break; case 1: /* Non-option is interpreted as section name */ if (cmdline.section != NULL) { @@ -214,6 +243,9 @@ get_command_line(int argc, char* argv[], struct command_line* line) if (cmdline.help || cmdline.version) { /* Always accept --help and --version */ } else if ((cmdline.menu != NULL) || (cmdline.section != NULL)) { + /* If either menu or section has been selected disable + automenu generation */ + cmdline.automenu = 0; /* Config file mode */ if ((cmdline.menu != NULL) && (cmdline.section != NULL)) { error_reason("Option 'menu' cannot be used when " @@ -832,7 +864,14 @@ get_job_from_section_data(char* data[], struct job_data* job, char* section) /* IPL job */ job->id = job_ipl; /* Fill in name of bootmap directory */ - job->bootmap_dir = misc_strdup(data[(int) scan_keyword_target]); + if (data[(int) scan_keyword_target] == NULL) { + if (default_target == NULL) { + error_text("Unable to find default section in your config file."); + break; + } + job->bootmap_dir = misc_strdup(default_target); + } else + job->bootmap_dir = misc_strdup(data[(int) scan_keyword_target]); if (job->bootmap_dir == NULL) return -1; /* Fill in name and address of image file */ @@ -1102,6 +1141,8 @@ get_menu_job(struct scan_token* scan, char* menu, struct job_data* job) if (temp_job == NULL) return -1; memset((void *) temp_job, 0, sizeof(struct job_data)); + if (data[(int) scan_keyword_target] == NULL) + data[(int) scan_keyword_target] = misc_strdup(job->bootmap_dir); rc = get_job_from_section_data(data, temp_job, job->data.menu.entry[current].name); if (rc) { @@ -1150,6 +1191,7 @@ get_default_section(struct scan_token* scan, char** section, int* is_menu) i = scan_find_section(scan, DEFAULTBOOT_SECTION, scan_id_section_heading, 0); if (i<0) { + *section = NULL; error_reason("No '" DEFAULTBOOT_SECTION "' section found and " "no section specified on command line"); return -1; @@ -1169,6 +1211,7 @@ get_default_section(struct scan_token* scan, char** section, int* is_menu) } } /* Should not happen */ + *section = NULL; error_reason("No default section specified"); return -1; } @@ -1184,19 +1227,35 @@ get_section_job(struct scan_token* scan, char* section, struct job_data* job, { char* data[SCAN_KEYWORD_NUM]; char* buffer; + char* default_section; int rc; int i; + rc = get_default_section(scan, &default_section, &i); + if (rc) + return rc; if (section == NULL) { - rc = get_default_section(scan, §ion, &i); - if (rc) - return rc; + section = default_section; if (i) { /* 'defaultmenu' was specified */ rc = get_menu_job(scan, section, job); return rc; } } + else + { + char* name = NULL; + + for (i = 0; (int) scan[i].id != 0; i++) { + if (scan[i].id == scan_id_section_heading) { + name = scan[i].content.section.name; + } + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_target && + !strcmp(DEFAULTBOOT_SECTION, name)) + default_target = misc_strdup(scan[i].content.keyword.value); + } + } if (strcmp(section, DEFAULTBOOT_SECTION) == 0) { error_reason("Special section '" DEFAULTBOOT_SECTION "' cannot " "be used as target section"); @@ -1268,10 +1327,118 @@ get_section_job(struct scan_token* scan, char* section, struct job_data* job, } +/* Create a fake menu to simulate the old s390utils-1.1.7 multiboot + * behaviour. */ +static struct scan_token * +create_fake_menu(struct scan_token *scan) +{ + int i, j, pos, numsec, size, defaultpos; + char *name; + char *target; + char *timeout; + char *seclist[1024]; + char *defaultsection; + char buf[1024]; + struct scan_token *tmp; + + /* Count # of sections */ + numsec = 0; + name = NULL; + target = NULL; + timeout = NULL; + for (i = 0; (int) scan[i].id != 0; i++) { + if (scan[i].id == scan_id_section_heading) { + name = scan[i].content.section.name; + if (strcmp(DEFAULTBOOT_SECTION, name)) + seclist[numsec++] = name; + } + if (scan[i].id == scan_id_keyword_assignment && + (scan[i].content.keyword.keyword == scan_keyword_dumpto || + scan[i].content.keyword.keyword == scan_keyword_dumptofs)) { + numsec--; + continue; + } + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_target && + !strcmp(DEFAULTBOOT_SECTION, name)) + target = scan[i].content.keyword.value; + + if (scan[i].id == scan_id_keyword_assignment && + scan[i].content.keyword.keyword == scan_keyword_timeout) + timeout = scan[i].content.keyword.value; + } + get_default_section(scan, &defaultsection, &j); + + if (defaultsection == NULL) { + error_text("Unable to find default section in your config file."); + return NULL; + } + + if (target == NULL) { + error_text("Keyword target is missing in default section."); + return NULL; + } + + default_target = misc_strdup(target); + + size = i+6+numsec; + tmp = (struct scan_token *) misc_malloc(size * sizeof(struct scan_token)); + if (tmp == NULL) { + error_text("Couldn't allocate memory for menu entries"); + return NULL; + } + + memset(tmp, 0, size * sizeof(struct scan_token)); + memcpy(tmp, scan, i * sizeof(struct scan_token)); + free(scan); + scan = tmp; + + defaultpos = 0; + for (j = 0; j < numsec; j++) { + if (!strcmp(defaultsection, seclist[j])) + defaultpos = j+1; + } + + snprintf(buf, 1024, "%d", defaultpos); + + scan[i].id = scan_id_menu_heading; + scan[i].line = i; + scan[i++].content.menu.name = misc_strdup("rh-automatic-menu"); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_target; + scan[i++].content.keyword.value = misc_strdup(target); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_default; + scan[i++].content.keyword.value = misc_strdup(buf); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_prompt; + scan[i++].content.keyword.value = misc_strdup("1"); + scan[i].id = scan_id_keyword_assignment; + scan[i].line = i; + scan[i].content.keyword.keyword = scan_keyword_timeout; + if (timeout) + scan[i++].content.keyword.value = misc_strdup(timeout); + else + scan[i++].content.keyword.value = misc_strdup("15"); + + pos = i; + for (i = 0; iautomenu) { + nscan = create_fake_menu(scan); + if (nscan == NULL) { + scan_free(scan); + return -1; + } + scan = nscan; + } + /* Get job from config file data */ - if (cmdline->menu != NULL) + if (cmdline->menu != NULL || cmdline->automenu) { + if (cmdline->automenu) + cmdline->menu = misc_strdup("rh-automatic-menu"); rc = get_menu_job(scan, cmdline->menu, job); + } else { rc = get_section_job(scan, cmdline->section, job, cmdline->data[(int) scan_keyword_parameters]); diff --git a/zipl/src/scan.c b/zipl/src/scan.c index 9948092..caca3cf 100644 --- a/zipl/src/scan.c +++ b/zipl/src/scan.c @@ -33,9 +33,9 @@ enum scan_key_state scan_key_table[SCAN_SECTION_NUM][SCAN_KEYWORD_NUM] = { * rs enu */ /* defaultboot */ - {opt, inv, inv, inv, inv, inv, inv, inv, inv, inv, inv, opt, inv, inv}, + {opt, inv, inv, inv, inv, inv, inv, inv, req, inv, opt, opt, inv, inv}, /* ipl */ - {inv, inv, inv, req, opt, opt, opt, inv, req, inv, inv, inv, inv, inv}, + {inv, inv, inv, req, opt, opt, opt, inv, opt, inv, inv, inv, inv, inv}, /* segment load */ {inv, inv, inv, inv, inv, inv, inv, req, req, inv, inv, inv, inv, inv}, /* part dump */ diff --git a/zipl/src/zipl.c b/zipl/src/zipl.c index f99177d..2a11404 100644 --- a/zipl/src/zipl.c +++ b/zipl/src/zipl.c @@ -71,6 +71,7 @@ static const char* usage_text[] = { "-n, --noninteractive Answer all confirmation questions with 'yes'", "-V, --verbose Provide more verbose output", "-a, --add-files Add all referenced files to bootmap file", +"-x, --no-automenu Don't autogenerate multiboot menu", " --dry-run Simulate run but don't modify IPL records" }; -- 1.6.0.6 0005-s390-tools-1.8.1-fdasd-su.patch: --- NEW FILE 0005-s390-tools-1.8.1-fdasd-su.patch --- >From 0ac6c456898d8c09908a35add45d018eb8f76613 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:46:01 +0200 Subject: [PATCH] s390-tools-1.8.1-fdasd-su --- fdasd/fdasd.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c index ef01c9b..b6802f9 100644 --- a/fdasd/fdasd.c +++ b/fdasd/fdasd.c @@ -2005,10 +2005,12 @@ fdasd_get_geometry (fdasd_anchor_t *anc) if (anc->verbose) printf("disk type check : ok\n"); if (dasd_info.FBA_layout != 0) { - snprintf(err_str, ERROR_STRING_SIZE, - "%s is not formatted with z/OS compatible " - "disk layout!", options.device); - fdasd_error(anc, wrong_disk_format, err_str); + if(!anc->silent) { + snprintf(err_str, ERROR_STRING_SIZE, + "%s is not formatted with z/OS compatible " + "disk layout!", options.device); + fdasd_error(anc, wrong_disk_format, err_str); + } } if (anc->verbose) printf("disk layout check : ok\n"); -- 1.6.0.6 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch: --- NEW FILE 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch --- >From 9c34968b40aa5fee679abf0056255510333ae9c3 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:46:16 +0200 Subject: [PATCH] s390-tools-1.8.1-fdasd-raid-lvm --- fdasd/fdasd.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 53 insertions(+), 12 deletions(-) diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c index b6802f9..286b0bb 100644 --- a/fdasd/fdasd.c +++ b/fdasd/fdasd.c @@ -258,10 +258,10 @@ fdasd_error(fdasd_anchor_t *anc, enum fdasd_failure why, char *str) static int read_line(void) { - bzero(line_buffer, LINE_LENGTH); line_ptr = line_buffer; if (!fgets(line_buffer, LINE_LENGTH, stdin)) return 0; + line_buffer[LINE_LENGTH-1] = 0; while (*line_ptr && !isgraph(*line_ptr)) line_ptr++; return *line_ptr; @@ -310,6 +310,10 @@ fdasd_partition_type (char *str) strcpy(str, "Linux native"); else if (strncmp("SWAP ", str, 6) == 0) strcpy(str, "Linux swap"); + else if (strncmp("RAID ", str, 6) == 0) + strcpy(str, "Linux Raid"); + else if (strncmp("LVM ", str, 6) == 0) + strcpy(str, "Linux LVM"); else strcpy(str, "unknown"); @@ -1117,14 +1121,24 @@ fdasd_write_vtoc_labels (fdasd_anchor_t *anc) strncpy(c1, s2, 31); } else { + char str[20]; char *tmp = strstr(ch, "SWAP"); + char *tmp1 = strstr(ch, "RAID"); /* create a new data set name */ while (getpos(anc, k) > -1) k++; setpos(anc, k, i-1); - + + strncpy(s2, ch, 44); + s2[44]=0; + vtoc_ebcdic_dec(s2, s2, 44); + c2 = strstr(s2, "PART"); + if (c2 != NULL) strncpy(str, c2+=9, 6); + str[6] = '\0'; + fdasd_partition_type(str); + strncpy(ch, "LINUX.V " " ", 44); @@ -1140,10 +1154,21 @@ fdasd_write_vtoc_labels (fdasd_anchor_t *anc) strncpy(c1, dsno, 4); c1 += 4; - if (tmp) - strncpy(c1, ".SWAP", 5); - else - strncpy(c1, ".NATIVE", 7); + if (tmp || tmp1) { + if (tmp) + strncpy(c1, ".SWAP", 5); + if (tmp1) + strncpy(c1, ".RAID", 5); + } else { + if (strcmp("unknown", str) == 0) { + strncpy(c1, ".NATIVE", 7); + } + else { + strncpy(c1, ".", 1); + strncpy(c1+1, c2, 6); + } + } + } vtoc_ebcdic_enc(ch, ch, 44); if (anc->verbose) printf("%2x ", part_info->f1->DS1FMTID); @@ -1429,9 +1454,10 @@ fdasd_change_part_type (fdasd_anchor_t *anc) printf("current partition type is: %s\n\n", fdasd_partition_type(str)); printf(" 1 Linux native\n" \ - " 2 Linux swap\n\n"); + " 2 Linux swap\n" \ + " 3 Linux raid\n\n"); part_type = 0; - while ((part_type < 1) || (part_type > 2)) { + while ((part_type < 1) || (part_type > 3)) { while (!isdigit(part_type = read_char("new partition type: "))); part_type -= 48; @@ -1444,6 +1470,9 @@ fdasd_change_part_type (fdasd_anchor_t *anc) case 2: strncpy(str, "SWAP ", 6); break; + case 3: + strncpy(str, "RAID ", 6); + break; default: printf("'%d' is not supported!\n", part_type); } @@ -1621,7 +1650,7 @@ fdasd_process_invalid_vtoc(fdasd_anchor_t *anc) static void fdasd_process_valid_vtoc(fdasd_anchor_t *anc, unsigned long blk) { - int f1_counter = 0, f7_counter = 0, f5_counter = 0; + int f1_counter = 0, f7_counter = 0, f5_counter = 0, oldfmt = 0; int i, part_no, f1_size = sizeof(format1_label_t); partition_info_t *part_info = anc->first; format1_label_t f1_label; @@ -1673,14 +1702,26 @@ fdasd_process_valid_vtoc(fdasd_anchor_t *anc, unsigned long blk) vtoc_ebcdic_enc(part_info->f1->DS1DSNAM, part_info->f1->DS1DSNAM, 44); - if ((part_no < 0) || (part_no >= USABLE_PARTITIONS)) + /* this dasd has data set names 0000-0002 + but we use now 0001-0003 */ + if (part_no == -1) + oldfmt++; + + if (((oldfmt == 0) && (part_no < 0)) + || (part_no >= USABLE_PARTITIONS)) printf("WARNING: partition number (%i) found " "in data set name of an existing " "partition\ndoes not match range of " "possible partition numbers (1-%d)\n\n", part_no + 1, USABLE_PARTITIONS); - else - setpos(anc, part_no, f1_counter); + else { + if (oldfmt) /* correct +1 */ { + setpos(anc, part_no+1, f1_counter); + printf("Correcting f1 header number!\n"); + } + else + setpos(anc, part_no, f1_counter); + } part_info = part_info->next; f1_counter++; -- 1.6.0.6 0008-s390-tools-1.8.1-ziorep-fixes.patch: --- NEW FILE 0008-s390-tools-1.8.1-ziorep-fixes.patch --- >From afe16490113999868ff408ff303ac7df4b733ff5 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:47:13 +0200 Subject: [PATCH] s390-tools-1.8.1-ziorep-fixes --- ziomon/stats.h | 9 ++++--- ziomon/ziomon | 13 +++++++---- ziomon/ziorep_config | 23 +++++++++++---------- ziomon/ziorep_traffic.cpp | 31 +++++++++++++++++------------ ziomon/ziorep_utilization.cpp | 4 +- ziomon/ziorep_utils.cpp | 43 +++++++++++++++++++++++++++++++++++----- 6 files changed, 82 insertions(+), 41 deletions(-) diff --git a/ziomon/stats.h b/ziomon/stats.h index 1003f91..a28d436 100644 --- a/ziomon/stats.h +++ b/ziomon/stats.h @@ -108,7 +108,7 @@ static inline int histlog2_index(__u64 val, struct histlog2 *h) { int i; - for (i = 0; i < (h->num - 1) && val > histlog2_upper_limit(i, h); i++); + for (i = 0; i < h->num && val > histlog2_upper_limit(i, h); i++); return i; } @@ -123,15 +123,16 @@ static inline void histlog2_merge(struct histlog2 *h, __u32 *dst, const __u32 *s { int i; - for (i = 0; i < h->num - 1; i++) + for (i = 0; i < h->num; i++) { dst[i] += src[i]; + } } static inline void histlog2_swap(__u32 a[], struct histlog2 *h) { int i; - for (i = 0; i < h->num - 1; i++) + for (i = 0; i < h->num; i++) swap_32(a[i]); } @@ -141,7 +142,7 @@ static inline void histlog2_print(const char *s, const __u32 a[], int i; printf("%s:\n", s); - for (i = 0; i < h->num - 1; i++) { + for (i = 0; i < h->num; i++) { printf(" %10ld:%6d", (unsigned long)(histlog2_upper_limit(i, h)), a[i]); if (!((i + 1) % 4)) diff --git a/ziomon/ziomon b/ziomon/ziomon index 30c8adf..aa1cf78 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -411,14 +411,14 @@ function check_for_multipath_devices() { devices_basenames[$j]=""; clean_devices; (( i+=3 )); - while [ "${mp_arr[$i]:0:1}" == "_" ]; do + while [[ ! "${mp_arr[$i]:0:1}" =~ "[0-9a-zA-Z]" ]] && [ $i -lt ${#mp_arr[@]} ]; do checked_devs[${#checked_devs[@]}]=`echo ${mp_arr[$i]} | awk '{print "/dev/"$3}'`; ddebug " add ${checked_devs[${#checked_devs[@]}-1]}"; - line=${mp_arr[$i]#_*}; + line=${mp_arr[$i]#* }; line=${line%%:*}; line=`echo $line | sed 's/ //g'`; WRP_HOST_ADAPTERS[${#WRP_HOST_ADAPTERS[@]}]="host$line"; - WRP_LUNS[${#WRP_LUNS[@]}]=`echo ${mp_arr[$i]#_*} | awk '{print $1}'`; + WRP_LUNS[${#WRP_LUNS[@]}]=`echo ${mp_arr[$i]#* } | awk '{print $1}'`; (( i++ )); done; (( --i )); @@ -599,6 +599,7 @@ function check_size_requirements() { local estimated_size; local free_space; local logpath=`dirname $WRP_LOGFILE`; + local num_uniq_devs; set `ziomon_mgr -e`; util_base_sz=$1; @@ -610,10 +611,12 @@ function check_size_requirements() { # NOTE: Since blktrace and ziomon_zfcpdd write messages only when there is # traffic, the estimate is an upper boundary only + num_uniq_devs=`echo ${WRP_LUNS[@]} | sed 's/ /\n/g' | cut -d : -f 4 | sort | uniq | wc -l`; + debug "number of unique devices: $num_uniq_devs"; debug "disk space requirements:"; (( size_per_record = $util_base_sz + ${#WRP_HOST_ADAPTERS[@]} * $util_variable_sz + $ioerr_base_sz - + ${#WRP_DEVICES[@]} * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) - + ( 2 + ${#WRP_DEVICES[@]}) * 8 )); + + $num_uniq_devs * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) + + ( 2 + $num_uniq_devs) * 8 )); debug " size per interval: $size_per_record Bytes"; (( total_num_records = $WRP_DURATION / $WRP_INTERVAL )); debug " total number of intervals: $total_num_records"; diff --git a/ziomon/ziorep_config b/ziomon/ziorep_config index 21094bf..de60379 100755 --- a/ziomon/ziorep_config +++ b/ziomon/ziorep_config @@ -84,9 +84,10 @@ sub get_sub_ch_data $c_src = catdir($base_dir, S_DIR2, $sub_ch, $adapter); $sub_ch{$adapter}{lic} = get_line("lic_version"); $sub_ch{$adapter}{gen} = get_line("card_version"); + $sub_ch{$adapter}{state} = get_line("online") == 1 ? "Online" : + "Offline"; $c_src = catdir($base_dir, S_DIR2, $sub_ch); $sub_ch{$adapter}{chpid} = substr(get_line("chpids"), 0, 2); - $sub_ch{$adapter}{state} = get_line("port_state"); } } @@ -220,7 +221,7 @@ sub adapter_report my @adapters = @_; foreach my $a (sort keys %sub_ch) { - next if (@adapters && "@adapters" !~ /$a/); + next if (@adapters && "@adapters" !~ /\b$a\b/); my @out_str; push @out_str, "Host: $sub_ch{$a}{host}\n"; push @out_str, "CHPID: $sub_ch{$a}{chpid}\n"; @@ -252,11 +253,11 @@ sub device_report "===============================================\n"; } foreach my $hctl (sort keys %devices) { - next if (@$adapters && "@$adapters" !~ /$devices{$hctl}{hba_id}/); - next if (@$ports && "@$ports" !~ /$devices{$hctl}{wwpn}/); - next if (@$luns && "@$luns" !~ /$devices{$hctl}{lun}/); - next if (@$s_devs && "@$s_devs" !~ /$devices{$hctl}{dev}/); - next if (@$hosts && "@$hosts" !~ /$sub_ch{$devices{$hctl}{hba_id}}{host}/); + next if (@$adapters && "@$adapters" !~ /\b$devices{$hctl}{hba_id}\b/); + next if (@$ports && "@$ports" !~ /\b$devices{$hctl}{wwpn}\b/); + next if (@$luns && "@$luns" !~ /\b$devices{$hctl}{lun}\b/); + next if (@$s_devs && "@$s_devs" !~ /\b$devices{$hctl}{dev}\b/); + next if (@$hosts && "@$hosts" !~ /\b$sub_ch{$devices{$hctl}{hba_id}}{host}\b/); my @out_str; push @out_str, $devices{$hctl}{hba_id}; push @out_str, $devices{$hctl}{wwpn}; @@ -293,10 +294,10 @@ sub mapper_report } foreach my $hctl (sort keys %devices) { next if (! $devices{$hctl}{mp_dev_mm}); - next if (@$adapters && "@$adapters" !~ /$devices{$hctl}{hba_id}/); - next if (@$ports && "@$ports" !~ /$devices{$hctl}{wwpn}/); - next if (@$s_devs && "@$s_devs" !~ /$devices{$hctl}{dev}/); - next if (@$m_devs && "@$m_devs" !~ /$mapper_dev{$devices{$hctl}{mp_dev_mm}}/); + next if (@$adapters && "@$adapters" !~ /\b$devices{$hctl}{hba_id}\b/); + next if (@$ports && "@$ports" !~ /\b$devices{$hctl}{wwpn}\b/); + next if (@$s_devs && "@$s_devs" !~ /\b$devices{$hctl}{dev}\b/); + next if (@$m_devs && "@$m_devs" !~ /\b$mapper_dev{$devices{$hctl}{mp_dev_mm}}\b/); my @line_str; push @line_str, $devices{$hctl}{hba_id}; push @line_str, $devices{$hctl}{wwpn}; diff --git a/ziomon/ziorep_traffic.cpp b/ziomon/ziorep_traffic.cpp index 40cbf47..1461e55 100644 --- a/ziomon/ziorep_traffic.cpp +++ b/ziomon/ziorep_traffic.cpp @@ -121,6 +121,7 @@ static int parse_params(int argc, char **argv, struct options *opts) __u32 tmp32; long long unsigned int tmp64; long tmpl; + char mychar; static struct option long_options[] = { { "version", no_argument, NULL, 'v'}, { "help", no_argument, NULL, 'h'}, @@ -188,18 +189,22 @@ static int parse_params(int argc, char **argv, struct options *opts) opts->print_summary = true; break; case 'c': - rc = sscanf(optarg, "%x", &tmp32); - if (rc != 1) { - fprintf(stdout, "%s: Could" + rc = sscanf(optarg, "%x%c", &tmp32, &mychar); + if (rc < 1) { + fprintf(stderr, "%s: Could" " not read chpid %s\n", toolname, optarg); return -1; } + if (rc > 1) { + fprintf(stderr, "%s: %s is not a valid chpid\n", toolname, optarg); + return -1; + } opts->chpids.push_back(tmp32); break; case 'p': rc = sscanf(optarg, "0x%Lx", &tmp64); if (rc != 1) { - fprintf(stdout, "%s: Could" + fprintf(stderr, "%s: Could" " not read port number %s\n", toolname, optarg); return -1; } @@ -208,7 +213,7 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'l': rc = sscanf(optarg, "0x%Lx", &tmp64); if (rc != 1) { - fprintf(stdout, "%s: Could" + fprintf(stderr, "%s: Could" " not read lun %s\n", toolname, optarg); return -1; } @@ -217,11 +222,11 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'u': rc = sscanf(optarg, "0.0.%x", &tmp32); if (rc != 1) { - fprintf(stdout, "%s: Could not read bus-ID" + fprintf(stderr, "%s: Could not read bus-ID" " %s\n", toolname, optarg); return -1; } - opts->wwpns.push_back(tmp32); + opts->devnos.push_back(tmp32); break; case 'd': opts->devices.push_back(optarg); @@ -313,7 +318,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->chpids.begin(); i != opts->chpids.end(); ++i) { if (!(*cfg)->verify_chpid(*i)) { - fprintf(stdout, "Error: Could not find chpid 0.0.%04x in" + fprintf(stderr, "Error: Could not find chpid %x in" " configuration.\n", *i); rc = -2; } @@ -321,7 +326,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->devnos.begin(); i != opts->devnos.end(); ++i) { if (!(*cfg)->verify_devno(*i)) { - fprintf(stdout, "Error: Could not find bus-ID 0.0.%04x in" + fprintf(stderr, "Error: Could not find bus-ID 0.0.%04x in" " configuration.\n", *i); rc = -3; } @@ -329,7 +334,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u64>::const_iterator i = opts->wwpns.begin(); i != opts->wwpns.end(); ++i) { if (!(*cfg)->verify_wwpn(*i)) { - fprintf(stdout, "Error: Could not find WWPN %016Lx in" + fprintf(stderr, "Error: Could not find WWPN %016Lx in" " configuration.\n", (long long unsigned int)*i); rc = -4; } @@ -337,7 +342,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u64>::const_iterator i = opts->luns.begin(); i != opts->luns.end(); ++i) { if (!(*cfg)->verify_lun(*i)) { - fprintf(stdout, "Error: Could not find LUN %016Lx in" + fprintf(stderr, "Error: Could not find LUN %016Lx in" " configuration.\n", (long long unsigned int)*i); rc = -5; } @@ -345,7 +350,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list::iterator i = opts->devices.begin(); i != opts->devices.end(); ++i) { if (!(*cfg)->verify_device(*i)) { - fprintf(stdout, "Error: Could not find device %s in" + fprintf(stderr, "Error: Could not find device %s in" " configuration.\n", *i); rc = -6; } @@ -353,7 +358,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list::iterator i = opts->mp_devices.begin(); i != opts->mp_devices.end(); ++i) { if (!(*cfg)->verify_mp_device(*i)) { - fprintf(stdout, "Error: Could not find multipath" + fprintf(stderr, "Error: Could not find multipath" " device %s in configuration.\n", *i); rc = -7; } diff --git a/ziomon/ziorep_utilization.cpp b/ziomon/ziorep_utilization.cpp index a036a03..3f57a47 100644 --- a/ziomon/ziorep_utilization.cpp +++ b/ziomon/ziorep_utilization.cpp @@ -167,7 +167,7 @@ static int parse_params(int argc, char **argv, struct options *opts) case 'c': rc = sscanf(optarg, "%x", &tmp); if (rc != 1) { - fprintf(stdout, "Error: Could not read chpid" + fprintf(stderr, "Error: Could not read chpid" " %s\n", optarg); return -1; } @@ -237,7 +237,7 @@ static int check_opts(struct options *opts, ConfigReader **cfg) for (list<__u32>::const_iterator i = opts->chpids.begin(); i != opts->chpids.end(); ++i) { if (!(*cfg)->verify_chpid(*i)) { - fprintf(stdout, "Error: Could not find chpid %x in" + fprintf(stderr, "Error: Could not find chpid %x in" " configuration.\n", *i); rc = -2; } diff --git a/ziomon/ziorep_utils.cpp b/ziomon/ziorep_utils.cpp index 75a9578..715115e 100644 --- a/ziomon/ziorep_utils.cpp +++ b/ziomon/ziorep_utils.cpp @@ -303,8 +303,17 @@ int adjust_timeframe(const char *filename, __u64 *begin, __u64 *end, verbose_msg("using original interval length: %lus\n", (long unsigned int)*interval); } - // now check if the interval is correct - if (*interval != UINT32_MAX && *interval % f_hdr.interval_length) { + /* the exact frame boundaries don't include the length of the very + first interval, so we have to add one more to our calculations */ + if (*interval && (*end - *begin + f_hdr.interval_length) % *interval != 0) { + // cut off rest in case of user-set interval + *end -= (*end - *begin) % *interval + f_hdr.interval_length; + t = *end; + verbose_msg(" cut off at : %s", ctime(&t)); + } + + // check if the interval is correct + if (*interval % f_hdr.interval_length) { fprintf(stderr, "%s: Data aggregation interval %lu" " is incompatible with source data. Please use" " a multiple of %lu and try again.\n", toolname, @@ -392,7 +401,7 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) rc += fprintf(fp, "Aggregated range: "); if (a_hdr) { rc += fprintf(fp, "%s to ", - print_time_formatted(a_hdr->begin_time)); + print_time_formatted(a_hdr->begin_time - f_hdr.interval_length)); rc += fprintf(fp, "%s\n", print_time_formatted(a_hdr->end_time)); } @@ -404,7 +413,7 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) a_hdr = NULL; rc += fprintf(fp, "Detailed range: %s to ", - print_time_formatted(f_hdr.begin_time)); + print_time_formatted(f_hdr.begin_time - f_hdr.interval_length)); rc += fprintf(fp, "%s\n", print_time_formatted(f_hdr.end_time)); rc += fprintf(fp, "Interval length: %d seconds\n", f_hdr.interval_length); @@ -446,16 +455,32 @@ int print_summary_report(FILE *fp, char *filename, ConfigReader &cfg) return rc; } +/* Calculates seconds since 1970 _without_ caring for daylight + savings time (comtrary to mktime() et al). + It does not care for leap years and the like, which is OK, + since we use it in a very narrow scenario: To calculate any + daylight savings time related shifts. + Hence: Dont't use if you're not sure what you are doing... */ +static __u64 secs_since_1970(const struct tm *t) { + __u64 res = 0; + res += t->tm_sec; + res += 60 * t->tm_min; + res += 3600 * t->tm_hour; + res += 86400 * t->tm_yday; + res += 86400 * 365 * t->tm_year; + + return res; +} + int get_datetime_val(const char *str, __u64 *tgt) { - struct tm t; + struct tm t, t_old; char *ret; // strptime only sets memset(&t, 0, sizeof(struct tm)); ret = strptime(str, "%Y-%m-%d %H:%M", &t); - if (ret == NULL || *ret != '\0') { ret = strptime(str, "%Y-%m-%d %H:%M:%S", &t); if (ret == NULL || *ret != '\0') { @@ -465,7 +490,13 @@ int get_datetime_val(const char *str, __u64 *tgt) return -1; } } + t_old = t; *tgt = mktime(&t); + // if daylight savings time applies, 't' has been adjusted, + // so we have to correct + if (t_old.tm_hour != t.tm_hour) + *tgt -= secs_since_1970(&t) - secs_since_1970(&t_old); + verbose_msg("datetime value from user after translation: %s", ctime((const time_t *)tgt)); return 0; } -- 1.6.0.6 0009-s390-tools-1.8.1-cflags.patch: --- NEW FILE 0009-s390-tools-1.8.1-cflags.patch --- >From d2f00bb021508f8104a1d8164432e8f4d239d872 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:47:29 +0200 Subject: [PATCH] s390-tools-1.8.1-cflags --- common.mak | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mak b/common.mak index d57b854..f0252da 100644 --- a/common.mak +++ b/common.mak @@ -25,8 +25,8 @@ STRIP = $(CROSS_COMPILE)strip OBJCOPY = $(CROSS_COMPILE)objcopy OBJDUMP = $(CROSS_COMPILE)objdump INSTALL = install # FIXME: We need s390-install (strip) -CFLAGS = $(OPT_FLAGS) -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) -CXXFLAGS = $(OPT_FLAGS) -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) +CFLAGS = -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) $(OPT_FLAGS) +CXXFLAGS = -Wall -O3 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) $(OPT_FLAGS) export AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP INSTALL CFLAGS # Support alternate install root -- 1.6.0.6 0010-s390-tools-1.8.1-defaultmenu.patch: --- NEW FILE 0010-s390-tools-1.8.1-defaultmenu.patch --- >From 486526858271c8ea890e8728a1cf1cceeceb9b1a Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 15:28:06 +0200 Subject: [PATCH] don't create automenu when default menu exists --- zipl/src/job.c | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/zipl/src/job.c b/zipl/src/job.c index 1b7bcb2..9fc6c2d 100644 --- a/zipl/src/job.c +++ b/zipl/src/job.c @@ -1441,6 +1441,8 @@ get_job_from_config_file(struct command_line* cmdline, struct job_data* job) struct scan_token* scan, *nscan; char* filename; char* source; + char* default_section; + int is_menu; int rc; /* Read configuration file */ @@ -1470,20 +1472,23 @@ get_job_from_config_file(struct command_line* cmdline, struct job_data* job) scan_free(scan); return rc; } - - if (cmdline->automenu) { - nscan = create_fake_menu(scan); - if (nscan == NULL) { - scan_free(scan); - return -1; - } - scan = nscan; - } + + /* disable automenu iff default menu exists */ + rc = get_default_section(scan, &default_section, &is_menu); + if (!rc && is_menu) + cmdline->automenu = 0; /* Get job from config file data */ if (cmdline->menu != NULL || cmdline->automenu) { - if (cmdline->automenu) + if (cmdline->automenu) { + nscan = create_fake_menu(scan); + if (nscan == NULL) { + scan_free(scan); + return -1; + } + scan = nscan; cmdline->menu = misc_strdup("rh-automatic-menu"); + } rc = get_menu_job(scan, cmdline->menu, job); } else { -- 1.6.0.6 0011-s390-tools-1.8.1-execstack.patch: --- NEW FILE 0011-s390-tools-1.8.1-execstack.patch --- >From 77f053260b9d2b4d683edfbed50a528d74620d4b Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 24 Apr 2009 14:05:29 +0200 Subject: [PATCH] remove the executable stack flag --- zipl/src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/zipl/src/Makefile b/zipl/src/Makefile index 16d5276..07b3b74 100644 --- a/zipl/src/Makefile +++ b/zipl/src/Makefile @@ -12,7 +12,7 @@ includes = $(wildcard ../include/*.h) all: zipl zipl: $(objects) - $(CC) $(objects) ../boot/data.o -o zipl + $(CC) -Wl,-z,noexecstack $(objects) ../boot/data.o -o zipl %.o: %.c $(includes) Makefile $(CC) $(CFLAGS) -c -o $@ $< -- 1.6.0.6 0012-s390-tools-1.8.1-ziomon-fixes.patch: --- NEW FILE 0012-s390-tools-1.8.1-ziomon-fixes.patch --- >From 1833f9dae371a48e3f52891262ad2d5fd75fc205 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 5 Jun 2009 14:12:52 +0200 Subject: [PATCH] s390-tools-1.8.1-ziomon-fixes --- ziomon/stats.h | 2 +- ziomon/ziomon | 84 ++++++++++++++++++++++++++++++++++++++++++++----- ziomon/ziomon_util.c | 2 +- 3 files changed, 77 insertions(+), 11 deletions(-) diff --git a/ziomon/stats.h b/ziomon/stats.h index a28d436..0920b27 100644 --- a/ziomon/stats.h +++ b/ziomon/stats.h @@ -142,7 +142,7 @@ static inline void histlog2_print(const char *s, const __u32 a[], int i; printf("%s:\n", s); - for (i = 0; i < h->num; i++) { + for (i = 0; i < h->num - 1; i++) { printf(" %10ld:%6d", (unsigned long)(histlog2_upper_limit(i, h)), a[i]); if (!((i + 1) % 4)) diff --git a/ziomon/ziomon b/ziomon/ziomon index aa1cf78..fe4d8ec 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -32,7 +32,7 @@ WRP_DEVICES=(); WRP_LUNS=(); WRP_LOGFILE=""; # limit of actual data in percent that need space on disk -WRP_SIZE_THRESHOLD="25"; +WRP_SIZE_THRESHOLD="10"; WRP_FORCE=0; function debug() { @@ -234,6 +234,7 @@ function start_trace() { local hosts_param; local luns_param; local i; + local len; if [ $WRP_DEBUG -ne 0 ]; then verbose="-V"; @@ -276,7 +277,7 @@ function start_trace() { blkiomon_command="blkiomon --interval=$WRP_INTERVAL -Q $WRP_MSG_Q_PATH -q $WRP_MSG_Q_ID -m $WRP_MSG_Q_BLKIOMON_ID $verbose_blk -d -"; zfcpdd_command="ziomon_zfcpdd -Q $WRP_MSG_Q_PATH -q $WRP_MSG_Q_ID -m $WRP_MSG_Q_ZIOMON_ZFCPDD_ID -i $WRP_INTERVAL"; debug "starting blktrace: $blktrace_command | $blkiomon_command | $zfcpdd_command"; - $blktrace_command | $blkiomon_command | $zfcpdd_command > $WRP_MSG_Q_PATH/blktrace.log & + $blktrace_command 2>$WRP_MSG_Q_PATH/blktrace.err | $blkiomon_command | $zfcpdd_command > $WRP_MSG_Q_PATH/blktrace.log & i=0; # might take a moment to start all processes in the pipe if system under load while [ $i -lt 60 ]; do @@ -303,7 +304,17 @@ function start_trace() { echo "done"; echo -n "Collecting data..."; - sleep $WRP_DURATION; + # pay extra attention to blktrace + for (( i=0; i<$WRP_DURATION; ++i )); do + len=`cat $WRP_MSG_Q_PATH/blktrace.err | wc -l`; + if [ $len -ne 0 ]; then + cat $WRP_MSG_Q_PATH/blktrace.err; + echo "Error: blktrace has errors, aborting"; + return; + fi + sleep 1; + done + echo "done"; } @@ -358,6 +369,58 @@ function emergency_shutdown() { } +function check_cpuplugd { + # check if cpuplugd is running + # If so, the whole per-cpu mechanism of blktrace gets corrupted, which + # results in the infamous 'bad trace magic' message + if [ -e /var/run/cpuplugd.pid ]; then + echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; + echo "ziomon: Warning: cpuplugd is running which can corrupt the traces."; + echo " It is recommended to stop cpuplugd for the duration of the"; + echo " trace using 'service cpuplugd stop'."; + echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; + fi +} + + +# we need 2MB per device and CPU +function check_vmalloc_space() { + local total; + local used; + local free; + local num_cpus; + local required; + local result; + + num_cpus=`cat /proc/cpuinfo | grep processors | awk '{print $4}'`; + total=`cat /proc/meminfo | grep VmallocTotal | awk '{print $2}'`; + used=`cat /proc/meminfo | grep VmallocUsed | awk '{print $2}'`; + + (( free=$total-$used )); + (( required=$num_cpus*${#WRP_DEVICES[@]}*2048 )); + (( result=$free-$required )); + debug "Required Vmalloc space: $required KBytes"; + if [ $result -lt 0 ]; then + echo "$WRP_TOOLNAME: Not enough free Vmalloc space:"; + echo " Required: $required KBytes"; + echo " Free: $free KBytes"; + exit 1; + fi + + return 0; +} + + +function check_blkiomon() { + # check blkiomon version + ver=`blkiomon -V | awk '{print $3}'`; + if [ "$ver" != "0.2" ]; then + echo "$WRP_TOOLNAME: Unsupported blkiomon version $ver detected, aborting"; + exit 1; + fi +} + + function setup() { while [ -e $WRP_MSG_Q_PATH ]; do WRP_MSG_Q_PATH="$WRP_MSG_Q_PATH$RANDOM"; @@ -476,7 +539,7 @@ function determine_host_adapters() { local num_s_devs; local s_dev_ratio; - echo -n "check devices..."; + echo -n "Check devices..."; # Estimate fraction of /dev/s* devices - if >50%, start with check for regular devices num_s_devs=`echo ${WRP_DEVICES[@]} | sed "s/ /\n/g" | grep /dev/s | wc -l`; @@ -599,7 +662,6 @@ function check_size_requirements() { local estimated_size; local free_space; local logpath=`dirname $WRP_LOGFILE`; - local num_uniq_devs; set `ziomon_mgr -e`; util_base_sz=$1; @@ -611,12 +673,10 @@ function check_size_requirements() { # NOTE: Since blktrace and ziomon_zfcpdd write messages only when there is # traffic, the estimate is an upper boundary only - num_uniq_devs=`echo ${WRP_LUNS[@]} | sed 's/ /\n/g' | cut -d : -f 4 | sort | uniq | wc -l`; - debug "number of unique devices: $num_uniq_devs"; debug "disk space requirements:"; (( size_per_record = $util_base_sz + ${#WRP_HOST_ADAPTERS[@]} * $util_variable_sz + $ioerr_base_sz - + $num_uniq_devs * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) - + ( 2 + $num_uniq_devs) * 8 )); + + ${#WRP_DEVICES[@]} * ( $ioerr_variable_sz + $blkiotrace_sz + $zfcpiotrace_sz ) + + ( 2 + ${#WRP_DEVICES[@]}) * 8 )); debug " size per interval: $size_per_record Bytes"; (( total_num_records = $WRP_DURATION / $WRP_INTERVAL )); debug " total number of intervals: $total_num_records"; @@ -653,10 +713,16 @@ setup; parse_params $@; +check_cpuplugd; + +check_blkiomon; + check_for_existing_output; determine_host_adapters; +check_vmalloc_space; + check_size_requirements; [ $? -eq 0 ] && start_trace; diff --git a/ziomon/ziomon_util.c b/ziomon/ziomon_util.c index e3e0762..043d3d1 100644 --- a/ziomon/ziomon_util.c +++ b/ziomon/ziomon_util.c @@ -597,7 +597,7 @@ static int poll_ioerr_cnt(int init, struct ioerr_data *data, for (i=0; inum_luns; ++i) { /* read ioerr_cnt attribute */ if (read_attribute(opts->luns[i], line, NULL)) { - fprintf(stderr, "%s: Warning: Could read %s\n", + fprintf(stderr, "%s: Warning: Could not read %s\n", toolname, opts->luns[i]); grc++; continue; -- 1.6.0.6 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch: --- NEW FILE 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch --- >From 38dfbc2642350aba44df80b41c91ab78891ba818 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Tue, 16 Jun 2009 11:10:47 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-fix-unsupported-device Description: zipl: zipl does not exit for an unsupported device driver. Symptom: zipl does not exit with an error when it is run against a target device which is provided by an unsupported device driver (e.g. device-mapper). The resulting IPL records might be incorrect and filesystem corruption may occur. Problem: The device driver name check does not cause an error when the device driver name is unknown and the device is not a partition. Solution: Change the device driver name check to write an error message and to exit when it finds an unknown device driver name. Problem-ID: 53660 --- zipl/src/disk.c | 20 ++------------------ 1 files changed, 2 insertions(+), 18 deletions(-) diff --git a/zipl/src/disk.c b/zipl/src/disk.c index 3a48e44..f1b98a7 100644 --- a/zipl/src/disk.c +++ b/zipl/src/disk.c @@ -190,24 +190,8 @@ disk_get_info(const char* device, struct disk_info** info) data->device = stats.st_rdev & ~SCSI_PARTN_MASK; } else { /* Driver name is unknown */ - if (data->devno == -1) { - if (data->geo.start) { - /* Writing to the parent device of this - * partition may not be safe so stop here. */ - error_reason("Unsupported device driver '%s'", - data->drv_name); - goto out_close; - } - /* Assume that the first block can be overwritten - * even if we don't now the exact device type. */ - data->type = disk_type_scsi; - data->partnum = 0; - data->device = stats.st_rdev; - } else { - error_reason("Unsupported device driver '%s' " - "for disk type DASD", data->drv_name); - goto out_close; - } + error_reason("Unsupported device driver '%s'", data->drv_name); + goto out_close; } /* Convert device size to size in physical blocks */ -- 1.6.0.6 0014-s390-tools-1.8.1-zipl-kdump-man.patch: --- NEW FILE 0014-s390-tools-1.8.1-zipl-kdump-man.patch --- >From 815064b5e73bdeb11e85e04fb691745b15d00e99 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 19 Jun 2009 10:01:30 +0200 Subject: [PATCH] s390-tools-1.8.1-zipl-kdump-man Description: Add kdump kernel installation instruction to zipl man page. Symptom: User wants to prepare SCSI disk for dump, but has not installed the kdump kernel rpm. Problem: The installation of the kdump kernel rpm is prereq for preparing a SCSI dump disk for dump. Solution: Document that in the zipl man page. --- zipl/man/zipl.8 | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/zipl/man/zipl.8 b/zipl/man/zipl.8 index 8d2b42c..66b23eb 100644 --- a/zipl/man/zipl.8 +++ b/zipl/man/zipl.8 @@ -176,6 +176,8 @@ will be incomplete. It is not possible to specify both this parameter and the name of a menu or configuration section on the command line at the same time. +.B Note that before using this option the "kernel-kdump" rpm has to be +.B installed. .TP .BR "\-M " " or " "--mvdump=" Install a multi-volume dump record on each device associated with one of the -- 1.6.0.6 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch: --- NEW FILE 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch --- >From b76deacff693b951c2e5a01ed17e058379b9e00a Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:47:02 +0200 Subject: [PATCH] s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid Description: iucvconn: Replace getlogin() with getpwuid(geteuid()) Symptom: The user name is not always logged to syslog. Problem: The getlogin() function returns the name of the user that is logged in. This user name is used to write syslog records. getlogin() retrieves the user information from the utmp database. However, the user information might not always be available, for example, the screen program can remove utmp records (logoff function). Solution: The getpwuid() function is used to get the user name from the passwd file (or any other NSS source, i.e. LDAP etc.). Problem-ID: 54225 --- iucvterm/src/iucvconn.c | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/iucvterm/src/iucvconn.c b/iucvterm/src/iucvconn.c index 61f536e..da7d08a 100644 --- a/iucvterm/src/iucvconn.c +++ b/iucvterm/src/iucvconn.c @@ -7,6 +7,7 @@ * Author(s): Hendrik Brueckner */ #include +#include #include #include #include @@ -237,6 +238,7 @@ int main(int argc, char *argv[]) struct sockaddr_iucv addr; struct termios ios; struct sigaction sigact; + struct passwd *passwd; struct iucvtty_cfg conf; @@ -266,6 +268,9 @@ int main(int argc, char *argv[]) /* syslog */ openlog(SYSLOG_IDENT, LOG_PID, LOG_AUTHPRIV); + /* get user information for syslog */ + passwd = getpwuid(geteuid()); + if (connect(server, (struct sockaddr *) &addr, sizeof(addr)) == -1) { switch (errno) { case EAGAIN: @@ -286,12 +291,14 @@ int main(int argc, char *argv[]) break; } AUDIT("Connection to %s/%s failed for user %s (uid=%i)", - conf.host, conf.service, getlogin(), geteuid()); + conf.host, conf.service, + (passwd != NULL) ? passwd->pw_name : "n/a", geteuid()); rc = 2; goto return_on_error; } AUDIT("Established connection to %s/%s for user %s (uid=%i)", - conf.host, conf.service, getlogin(), geteuid()); + conf.host, conf.service, + (passwd != NULL) ? passwd->pw_name : "n/a", geteuid()); /* send client params */ iucvtty_tx_termenv(server, DEFAULT_TERM); -- 1.6.0.6 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch: --- NEW FILE 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch --- >From 263c0e5646ea3c81e570ec7e53c214cac8cb4412 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:50:08 +0200 Subject: [PATCH] s390-tools-1.8.1-dumpconf-improve-error-checking Description: dumpconf: Improve parameter checking and error messages. Symptom: Ugly and confusing error messages on systems which do not support the dump_reipl shutdown action. Problem: Error handling is incomplete. Solution: The dumpconf init script now validates the syntax of the device specified in the config file. --- etc/init.d/dumpconf | 98 +++++++++++++++++++++++++++++++++++---------------- 1 files changed, 67 insertions(+), 31 deletions(-) diff --git a/etc/init.d/dumpconf b/etc/init.d/dumpconf index e97f76c..42a2242 100755 --- a/etc/init.d/dumpconf +++ b/etc/init.d/dumpconf @@ -119,18 +119,60 @@ verify_ccw_dump_device() fi } -setup_ccw_device() -{ - echo $DEVICE > $1/ccw/device || RETVAL=1 +#------------------------------------------------------------------------------ +# Helper function to check a device string. +#------------------------------------------------------------------------------ +function CheckDeviceString() { + local X + + X=$( + echo "$1" | + awk --posix -F. ' + function PrintBusID(css, grp, devno) { + while(length(devno) < 4) + devno = "0" devno + print css "." grp "." devno + } + NF == 1 && $1 ~ /^[0-9a-fA-F]{1,4}$/ { + PrintBusID("0","0", $1) + next + } + NF != 3 || $1 !~ /^[0-9a-fA-F]{1,2}$/ { + next + } + $2 !~ /^[0-9a-fA-F]{1,2}$/ { + next + } + $3 !~ /^[0-9a-fA-F]{1,4}$/ { + next + } + { + PrintBusID($1, $2, $3) + } + ' + ) + + if [ "$X" != "" ]; then + echo $X + return 0 + fi } -setup_fcp_device() +setup_device() { - echo $DEVICE > $1/fcp/device || RETVAL=1 - echo $WWPN > $1/fcp/wwpn || RETVAL=1 - echo $LUN > $1/fcp/lun || RETVAL=1 - echo $BOOTPROG > $1/fcp/bootprog || RETVAL=1 - echo $BR_LBA > $1/fcp/br_lba || RETVAL=1 + DEV="$(CheckDeviceString $DEVICE)" + if [ "$DEV" != "" ]; then + echo $DEV > $1/$DUMP_TYPE/device || RETVAL=1 + else + RETVAL=1 + echo "ERROR: Invalid device '$DEVICE'" >&2 + fi + if [ $DUMP_TYPE == "fcp" ] && [ $RETVAL -eq 0 ]; then + echo $WWPN > $1/fcp/wwpn || RETVAL=1 + echo $LUN > $1/fcp/lun || RETVAL=1 + echo $BOOTPROG > $1/fcp/bootprog || RETVAL=1 + echo $BR_LBA > $1/fcp/br_lba || RETVAL=1 + fi } setup_nss_device() @@ -145,10 +187,8 @@ setup_reipl() return fi - if [ "$REIPL_TYPE" == "ccw" ]; then - setup_ccw_device $REIPL_CONFIG_DIR - elif [ "$REIPL_TYPE" == "fcp" ]; then - setup_fcp_device $REIPL_CONFIG_DIR + if [ "$REIPL_TYPE" == "ccw" ] || [ "$REIPL_TYPE" == "fcp" ]; then + setup_device $REIPL_CONFIG_DIR elif [ "$REIPL_TYPE" == "nss" ]; then setup_nss_device $REIPL_CONFIG_DIR else @@ -169,28 +209,23 @@ setup_reipl() setup_dump() { - if [ "$DUMP_TYPE" == "ccw" ]; then - setup_ccw_device $DUMP_CONFIG_DIR - elif [ "$DUMP_TYPE" == "fcp" ]; then - setup_fcp_device $DUMP_CONFIG_DIR + if [ "$DUMP_TYPE" == "ccw" ] || [ "$DUMP_TYPE" == "fcp" ]; then + setup_device $DUMP_CONFIG_DIR elif [ "$DUMP_TYPE" != "none" ]; then echo "ERROR: Unknown dump type '$DUMP_TYPE'" >&2 RETVAL=1 fi - echo $DUMP_TYPE > $DUMP_CONFIG_DIR/dump_type || RETVAL=1 + if [ $RETVAL -eq 0 ]; then + echo $DUMP_TYPE > $DUMP_CONFIG_DIR/dump_type || RETVAL=1 + fi if [ $RETVAL -eq 1 ]; then - echo "ERROR: Setup of $DUMP_TYPE dump device failed." >&2 echo none > $DUMP_CONFIG_DIR/dump_type return $RETVAL fi - if [ "$CONF_DUMP_TYPE" == "none" ]; then - echo "No dump device configured. " - else - echo "$ON_PANIC on panic configured: Using $DUMP_TYPE dump device." - fi + echo "Configuring $ON_PANIC on panic: Using $DUMP_TYPE dump device." } setup_on_panic_vmcmd() @@ -260,7 +295,7 @@ status_dump() echo "type....: fcp" print_fcp_device $DUMP_CONFIG_DIR else - echo "ERROR: Unknown dump device type '$TYPE'!" >&2 + echo "ERROR: Unknown dump device type '$CONF_DUMP_TYPE'!" >&2 echo " Please check if you have the latest dumpconf package!" >&2 fi } @@ -316,27 +351,28 @@ start() if [ "$ON_PANIC" == "reipl" ]; then setup_reipl - elif [ "$ON_PANIC" == "dump" ]; then + elif [ "$ON_PANIC" == "dump" ] || [ "$ON_PANIC" == "dump_reipl" ]; then setup_dump elif [ "$ON_PANIC" == "vmcmd" ]; then setup_on_panic_vmcmd - elif [ "$ON_PANIC" == "dump_reipl" ]; then - setup_dump elif [ "$ON_PANIC" == "stop" ]; then echo "stop on panic configured." else echo "ERROR: Unknown 'on panic' type '$ON_PANIC'" >&2 RETVAL=1 fi + if [ $RETVAL -eq 1 ]; then + echo "ERROR: Setup of $DUMP_TYPE dump device failed." >&2 + return $RETVAL + fi - echo $ON_PANIC > $ON_PANIC_CONFIG_FILE || RETVAL=1 + echo $ON_PANIC > $ON_PANIC_CONFIG_FILE 2> /dev/null || RETVAL=1 # check for errors if [ $RETVAL -eq 1 ]; then - ERRMSG="\"on panic action\" configuration failed!" echo stop > $ON_PANIC_CONFIG_FILE - echo "ERROR: $ERRMSG Check $DUMP_CONFIG_FILE!" >&2 + echo "ERROR: $ON_PANIC not supported by hardware!" >&2 return $RETVAL fi -- 1.6.0.6 0017-s390-tools-1.8.1-cpuplugd-memplug.patch: --- NEW FILE 0017-s390-tools-1.8.1-cpuplugd-memplug.patch --- >From 277fbeaa8cdd27e586d1d3d0f58242a0a40b3a48 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:51:44 +0200 Subject: [PATCH] s390-tools-1.8.1-cpuplugd-memplug Description: cpuplugd: Daemon does not work in an memplug only environment. Symptom: When the cpuplugd daemon is executed with only the memory configuration in cpuplugd.conf it does not start properly. Problem: A bug in the configuration file parser prevents this valid user specified setup. Solution: Adjust the configuration file parser, to accept this type of system configuration. --- cpuplugd/config.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpuplugd/config.c b/cpuplugd/config.c index 7f02c6c..93b31e5 100644 --- a/cpuplugd/config.c +++ b/cpuplugd/config.c @@ -66,6 +66,7 @@ void parse_configline(struct config *cfg, char *line) rc = -1; cmm_min = -1; + rvalue = NULL; /* parse line by line */ for (token = strtok_r(line, "\n", &save); token != NULL; @@ -318,8 +319,7 @@ void check_config(struct config *cfg) int lpar_status, error_counter; lpar_status = check_lpar(); - - if (cfg->cpu_max <= cfg->cpu_min && cfg->cpu_max != 0) { + if (cfg->cpu_max <= cfg->cpu_min && cfg->cpu_max != 0 && cpu != 0) { if (foreground == 1) fprintf(stderr, "cpu_max below or equal cpu_min," " aborting.\n"); @@ -328,7 +328,6 @@ void check_config(struct config *cfg) "aborting\n"); clean_up(); } - if (cfg->cpu_max < 0 || cfg->cpu_min < 0 || cfg->update < 0 || cfg->hotplug == NULL || cfg->hotunplug == NULL) { if (foreground == 1) @@ -337,6 +336,7 @@ void check_config(struct config *cfg) if (foreground == 0) syslog(LOG_INFO, "No valid CPU hotplug " "configuration detected\n"); + cpu = 0; } else { cpu = 1; if (debug) { -- 1.6.0.6 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch: --- NEW FILE 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch --- >From 65f317c463de53abf7a8bba3285a077dbaf42486 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 22 Jun 2009 12:53:22 +0200 Subject: [PATCH] s390-tools-1.8.1-ziomon-new-blkiomon ziomon: Adjust to use blkiomon V0.3 Update the blkiomon header to the version packaged in RHEL 5.4, update the version check appropriately and use the version number for .log files to match what the proper, forthcoming version will use. --- ziomon/blkiomon.h | 4 ++-- ziomon/ziomon | 2 +- ziomon/ziomon_dacc.c | 12 ++++++------ ziomon/ziomon_dacc.h | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ziomon/blkiomon.h b/ziomon/blkiomon.h index da27d00..42b6b46 100644 --- a/ziomon/blkiomon.h +++ b/ziomon/blkiomon.h @@ -25,6 +25,7 @@ struct blkiomon_stat { /* Histogram of dispatch to completion request times in u-secs. Step-size is 8, starting at 0. */ __u32 d2c_hist[BLKIOMON_D2C_BUCKETS]; + __u32 device; /* device identifier */ struct minmax size_r; /* stats of read request sizes in Bytes */ struct minmax size_w; /* stats of write request sizes in Bytes */ struct minmax d2c_r; /* stats of read request durations in u-secs */ @@ -33,8 +34,7 @@ struct blkiomon_stat { struct minmax thrput_w; /* stats of write throughput in Kbytes per micro-sec */ __u64 bidir; /* number of bi-directional requests, is set exclusive (ie. not implicitly adding 1 to rd and wrt as well) */ - __u32 device; /* device identifier */ -} __attribute__ ((packed)); +}; static struct histlog2 size_hist = {0, 1024, BLKIOMON_SIZE_BUCKETS}; diff --git a/ziomon/ziomon b/ziomon/ziomon index fe4d8ec..297651c 100755 --- a/ziomon/ziomon +++ b/ziomon/ziomon @@ -414,7 +414,7 @@ function check_vmalloc_space() { function check_blkiomon() { # check blkiomon version ver=`blkiomon -V | awk '{print $3}'`; - if [ "$ver" != "0.2" ]; then + if [ "$ver" != "0.3" ]; then echo "$WRP_TOOLNAME: Unsupported blkiomon version $ver detected, aborting"; exit 1; fi diff --git a/ziomon/ziomon_dacc.c b/ziomon/ziomon_dacc.c index f2c34ac..0a17d9e 100644 --- a/ziomon/ziomon_dacc.c +++ b/ziomon/ziomon_dacc.c @@ -426,7 +426,7 @@ int add_msg(FILE *fp, struct message *msg, struct file_header *f_hdr, int init_file(FILE *fp, struct file_header *f_hdr) { f_hdr->magic = DATA_MGR_MAGIC; - f_hdr->version = DATA_MGR_V2; + f_hdr->version = DATA_MGR_V3; f_hdr->first_msg_offset = 0; f_hdr->end_time = 0; f_hdr->begin_time = 0; @@ -452,11 +452,11 @@ static int get_header(FILE *fp, struct file_header *hdr) toolname); return -2; } - if (hdr->version != DATA_MGR_V2) { + if (hdr->version != DATA_MGR_V3) { fprintf(stderr, "%s: Wrong version: .log data is in version %u" " format, while this tool only supports version %u." " Get the matching tool version and try again.\n", - toolname, hdr->version, DATA_MGR_V2); + toolname, hdr->version, DATA_MGR_V3); return -2; } hdr->begin_time = 0; @@ -557,11 +557,11 @@ static int read_aggr_file(FILE *fp, struct aggr_data *data) toolname); return -1; } - if (data->version != DATA_MGR_V2) { + if (data->version != DATA_MGR_V3) { fprintf(stderr, "%s: Wrong version: .agg data is in version %u" " format, while this tool only supports version %u." " Get the matching tool version and try again.\n", - toolname, data->version, DATA_MGR_V2); + toolname, data->version, DATA_MGR_V3); return -1; } @@ -805,7 +805,7 @@ int write_aggr_file(FILE *fp, struct aggr_data *data) void init_aggr_data_struct(struct aggr_data *data) { data->magic = DATA_MGR_MAGIC_AGGR; - data->version = DATA_MGR_V2; + data->version = DATA_MGR_V3; data->num_zfcpdd = 0; data->num_blkiomon = 0; data->end_time = 0; diff --git a/ziomon/ziomon_dacc.h b/ziomon/ziomon_dacc.h index f280c9b..8f301f4 100644 --- a/ziomon/ziomon_dacc.h +++ b/ziomon/ziomon_dacc.h @@ -17,7 +17,7 @@ #define DATA_MGR_MAGIC 0x64616d67 #define DATA_MGR_MAGIC_AGGR 0x61676772 -#define DATA_MGR_V2 2u +#define DATA_MGR_V3 3u /** -- 1.6.0.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Apr 2009 08:03:08 -0000 1.2 +++ .cvsignore 3 Jul 2009 09:22:59 -0000 1.3 @@ -1,4 +1,4 @@ -s390-tools-1.8.0.tar.bz2 +s390-tools-1.8.1.tar.bz2 cmsfs-1.1.8c.tar.gz lib-zfcp-hbaapi-2.0.tar.gz src_vipa-2.0.4.tar.gz Index: s390.csh =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/s390.csh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- s390.csh 7 Apr 2009 08:03:09 -0000 1.1 +++ s390.csh 3 Jul 2009 09:23:00 -0000 1.2 @@ -1,5 +1,5 @@ # /etc/profile.d/s390.csh - set TERM variable -if ( `/sbin/consoletype` == "serial" ) then +if ( `/sbin/consoletype stdout` == "serial" ) then setenv TERM dumb endif Index: s390.sh =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/s390.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- s390.sh 7 Apr 2009 08:03:09 -0000 1.1 +++ s390.sh 3 Jul 2009 09:23:00 -0000 1.2 @@ -1,6 +1,6 @@ # /etc/profile.d/s390.sh - set TERM variable -contype=`/sbin/consoletype` +contype=`/sbin/consoletype stdout` if [ "$contype" == "serial" ]; then export TERM=dumb fi Index: s390utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/s390utils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- s390utils.spec 7 Apr 2009 08:03:09 -0000 1.1 +++ s390utils.spec 3 Jul 2009 09:23:00 -0000 1.2 @@ -7,8 +7,8 @@ Name: s390utils Summary: Utilities and daemons for IBM System/z Group: System Environment/Base -Version: 1.8.0 -Release: 5%{?dist} +Version: 1.8.1 +Release: 1%{?dist} Epoch: 2 License: GPLv2 and GPLv2+ and CPL Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -26,22 +26,28 @@ Source7: zfcp.udev Source8: dasd.udev # http://www.ibm.com/developerworks/linux/linux390/zfcp-hbaapi-%{hbaapiver}.html Source9: http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/lib-zfcp-hbaapi-%{hbaapiver}.tar.gz -Patch1: 0001-s390-tools-1.5.0-su.patch -Patch2: 0002-s390-tools-1.5.0-fdasd-raid.patch -Patch3: 0003-s390-tools-1.5.0-fmtpercentage.patch -Patch4: 0004-s390-tools-1.8.0-automenu.patch -Patch5: 0005-s390-tools-1.5.3-lvm.patch -Patch6: 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch -Patch7: 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch -Patch8: 0008-s390-tools-1.8.0-zipl-timeout.patch -Patch9: 0009-s390-tools-1.8.0-zipl-target.patch -Patch10: 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch -Patch11: 0011-s390-tools-1.5.3-fdasd-raid.patch -Patch12: 0012-s390-tools-1.8.0-initscript-fix.patch -Patch13: 0013-s390-tools-1.8.0-cflags.patch + +Patch1: 0001-s390-tools-1.8.1-common-mak.patch +Patch4: 0004-s390-tools-1.8.1-zipl-automenu.patch +Patch5: 0005-s390-tools-1.8.1-fdasd-su.patch +Patch6: 0006-s390-tools-1.8.1-fdasd-raid-lvm.patch +Patch8: 0008-s390-tools-1.8.1-ziorep-fixes.patch +Patch9: 0009-s390-tools-1.8.1-cflags.patch +Patch10: 0010-s390-tools-1.8.1-defaultmenu.patch +Patch11: 0011-s390-tools-1.8.1-execstack.patch +Patch12: 0012-s390-tools-1.8.1-ziomon-fixes.patch +Patch13: 0013-s390-tools-1.8.1-zipl-fix-unsupported-device.patch +Patch14: 0014-s390-tools-1.8.1-zipl-kdump-man.patch +Patch15: 0015-s390-tools-1.8.1-iucvterm-getlogin-to-getpwuid.patch +Patch16: 0016-s390-tools-1.8.1-dumpconf-improve-error-checking.patch +Patch17: 0017-s390-tools-1.8.1-cpuplugd-memplug.patch +Patch18: 0018-s390-tools-1.8.1-ziomon-new-blkiomon.patch + Patch100: cmsfs-1.1.8-warnings.patch Patch101: cmsfs-1.1.8-kernel26.patch + Patch200: src_vipa-2.0.4-locations.patch + Requires: s390utils-base = %{epoch}:%{version}-%{release} Requires: s390utils-osasnmpd = %{epoch}:%{version}-%{release} Requires: s390utils-cpuplugd = %{epoch}:%{version}-%{release} @@ -63,44 +69,46 @@ be used together with the zSeries (s390) %prep %setup -q -n s390-tools-%{version} -a 4 -a 6 -a 9 -# Fix to honor the silent flag for wrongly formated disks -%patch1 -p1 -b .su +# Use rpm PATH variables for installation and set correct zfcpdump path +%patch1 -p1 -b .common-mak -# Enhancement to add raid partiton support to dasds -%patch2 -p1 -b .fdasd-raid +# Patch to maintain backwards compatibility with older zipl multiboot feature +%patch4 -p1 -b .zipl-automenu -# Enhancement to add a percentage output bar to dasdfmt, needed for anaconda -%patch3 -p1 -b .fmtpercentage +# Fix to honor the silent flag for wrongly formated disks +%patch5 -p1 -b .fdasd-su -# Patch to maintain backwards compatibility with older zipl multiboot feature -%patch4 -p1 -b .automenu +# Enhancement to add raid partiton support to dasds +%patch6 -p1 -b .fdasd-raid-lvm -# Patch to fix installer LVM partitions that show up as "unknown" in fdasd (#250176) -%patch5 -p1 -b .lvm +# Post 1.8.1 fixes for ziorep +%patch8 -p1 -b .ziorep -# Added zfcpdump kernel symlink to dumpconf init script (#430550) -%patch6 -p1 -b .dumpconf-vmlinuz +# Allow override of optimization level in CFLAGS +%patch9 -p1 -b .cflags -# Updates for cleanup SCSI dumper code for upstream integration - tool (#253118) -%patch7 -p1 -b .zipl-zfcpdump-2 +# Don't build automenu iff default menu exists (#486444) +%patch10 -p1 -b .defaultmenu -# Add support for timeout parameter in /etc/zipl.conf (#323651) -%patch8 -p1 -b .zipl-timeout +# Remove the execuatble stack flag from zipl +%patch11 -p1 -b .execstack -# Fix for zipl fail when section is specified and target is not repeated for all sections (#381201) -%patch9 -p1 -b .zipl-target +# Post 1.8.1 fixes for ziomon +%patch12 -p1 -b .ziomon -# Update documentation for zfcpdump (#437477) -%patch10 -p1 -b .zipl-zfcpdump-man +# Post 1.8.1 fix for zipl +%patch13 -p1 -b .zipl-device -# fix the Linux Raid partition type is not retained when changed through fdasd (#445271) -%patch11 -p1 -b .fdasd-raid +# Update zipl man page +%patch14 -p1 -b .zipl-kdump-man -# fix init scripts of cpuplugd, dumpconf and mon_statd -%patch12 -p1 -b .initscripts-fix +# Last-minute fixes from IBM +%patch15 -p1 -b iucvterm-getlogin-to-getpwuid +%patch16 -p1 -b dumpconf-improve-error-checking +%patch17 -p1 -b cpuplugd-memplug -# allow override of optimization level in CFLAGS -%patch13 -p1 -b .cflags +# Adapt ziomon to the new layout of the blkiomon_stat structure (#506966) +%patch18 -p1 -b ziomon-new-blkiomon # # cmsfs @@ -146,7 +154,7 @@ popd %build -make OPT_FLAGS="$RPM_OPT_FLAGS" +make OPT_FLAGS="$RPM_OPT_FLAGS" DISTRELEASE=%{release} pushd cmsfs-%{cmsfsver} ./configure @@ -170,7 +178,8 @@ mkdir -p $RPM_BUILD_ROOT{%{_lib},%{_libd make install \ INSTROOT=$RPM_BUILD_ROOT \ MANDIR=$RPM_BUILD_ROOT%{_mandir} \ - LIBDIR=${RPM_BUILD_ROOT}/%{_lib} + LIBDIR=${RPM_BUILD_ROOT}/%{_lib} \ + DISTRELEASE=%{release} %{__mkdir} -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig %{__mkdir} -p ${RPM_BUILD_ROOT}%{_initddir} @@ -195,11 +204,12 @@ install -m 755 etc/init.d/cpuplugd ${RPM install -D -m 644 etc/udev/rules.d/57-osasnmpd.rules ${RPM_BUILD_ROOT}%{_sysconfdir}/udev/rules.d -install -p -m 755 cmsfs-%{cmsfsver}/cmsfscat $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfslst $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfsvol $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfscp $RPM_BUILD_ROOT%{_sbindir} -install -p -m 755 cmsfs-%{cmsfsver}/cmsfsck $RPM_BUILD_ROOT%{_sbindir} +# cmsfs tools must be available in /sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfscat $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfslst $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfsvol $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfscp $RPM_BUILD_ROOT/sbin +install -p -m 755 cmsfs-%{cmsfsver}/cmsfsck $RPM_BUILD_ROOT/sbin install -p -m 644 cmsfs-%{cmsfsver}/cmsfscat.8 $RPM_BUILD_ROOT%{_mandir}/man8 install -p -m 644 cmsfs-%{cmsfsver}/cmsfslst.8 $RPM_BUILD_ROOT%{_mandir}/man8 install -p -m 644 cmsfs-%{cmsfsver}/cmsfsvol.8 $RPM_BUILD_ROOT%{_mandir}/man8 @@ -208,7 +218,7 @@ install -p -m 644 cmsfs-%{cmsfsver}/cmsf # src_vipa pushd src_vipa-%{vipaver} -make install LIBDIR=%{_libdir} INSTROOT=$RPM_BUILD_ROOT +make install LIBDIR=%{_libdir} SBINDIR=%{_bindir} INSTROOT=$RPM_BUILD_ROOT popd pushd lib-zfcp-hbaapi-%{hbaapiver} @@ -221,6 +231,7 @@ popd %clean rm -rf ${RPM_BUILD_ROOT} + %files %defattr(-,root,root,-) %doc README @@ -394,8 +405,6 @@ fi /sbin/scsi_logging_level /sbin/zfcpdbf /sbin/qetharp -/sbin/qetharp-2.4 -/sbin/qetharp-2.6 /sbin/qethconf /sbin/tape390_display /sbin/tape390_crypt @@ -456,7 +465,7 @@ fi /sbin/zfcpconf.sh # src_vipa -%{_sbindir}/src_vipa.sh +%{_bindir}/src_vipa.sh %{_libdir}/src_vipa.so %{_mandir}/man8/src_vipa.8.gz @@ -477,8 +486,6 @@ ATM Ethernet LAN Emulation in QDIO mode. %files osasnmpd %defattr(-,root,root,-) -%{_sbindir}/osasnmpd-2.4 -%{_sbindir}/osasnmpd-2.6 %{_sbindir}/osasnmpd %config(noreplace) %{_sysconfdir}/udev/rules.d/57-osasnmpd.rules %{_mandir}/man8/osasnmpd.8* @@ -567,7 +574,7 @@ fi License: GPLv2 Summary: S390 ziomon tools Group: Applications/System -Requires: perl lsscsi coreutils blktrace >= 1.0 +Requires: perl lsscsi coreutils blktrace >= 1.0.1 %description ziomon Tool set to collect data for zfcp performance analysis. @@ -579,11 +586,68 @@ Tool set to collect data for zfcp perfor /sbin/ziomon_mgr /sbin/ziomon_util /sbin/ziomon_zfcpdd +/sbin/ziorep_config +/sbin/ziorep_traffic +/sbin/ziorep_utilization %{_mandir}/man8/ziomon.8* %{_mandir}/man8/ziomon_fcpconf.8* %{_mandir}/man8/ziomon_mgr.8* %{_mandir}/man8/ziomon_util.8* %{_mandir}/man8/ziomon_zfcpdd.8* +%{_mandir}/man8/ziorep_config.8* +%{_mandir}/man8/ziorep_traffic.8* +%{_mandir}/man8/ziorep_utilization.8* + +# +# *********************** s390-tools iucvterm package ************************* +# +%package iucvterm +License: GPLv2 +Summary: z/VM IUCV terminal applications +Group: Applications/System +BuildRequires: gettext + +%description iucvterm +z/VM IUCV terminal applications. + +%pre iucvterm +# check for ts-shell group and create it +getent group ts-shell > /dev/null || groupadd -r ts-shell + +%post iucvterm +# /etc/shells is provided by "setup" +grep -q '^/usr/bin/ts-shell$' /etc/shells \ + || echo "/usr/bin/ts-shell" >> /etc/shells + +%postun iucvterm +if [ $1 = 0 ] +then + # remove ts-shell from /etc/shells on uninstall + grep -v '^/usr/bin/ts-shell$' /etc/shells > /etc/shells.ts-new + mv /etc/shells.ts-new /etc/shells + chmod 0644 /etc/shells +fi + +%files iucvterm +%defattr(-,root,root,-) +%dir %{_sysconfdir}/iucvterm +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-audit-systems.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-authorization.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/ts-shell.conf +%config(noreplace) %attr(0640,root,ts-shell) %{_sysconfdir}/iucvterm/unrestricted.conf +%{_bindir}/iucvconn +%{_bindir}/iucvtty +%{_bindir}/ts-shell +%{_sbindir}/chiucvallow +%{_sbindir}/lsiucvallow +%dir %attr(2770,root,ts-shell) /var/log/ts-shell +%doc iucvterm/doc/ts-shell +%{_mandir}/man1/iucvconn.1* +%{_mandir}/man1/iucvtty.1* +%{_mandir}/man1/ts-shell.1* +%{_mandir}/man7/af_iucv.7* +%{_mandir}/man8/chiucvallow.8* +%{_mandir}/man9/hvc_iucv.9* # # *********************** libzfcphbaapi package *********************** @@ -657,11 +721,11 @@ This package contains the CMS file syste %files cmsfs %defattr(-,root,root,-) -%{_sbindir}/cmsfscat -%{_sbindir}/cmsfsck -%{_sbindir}/cmsfscp -%{_sbindir}/cmsfslst -%{_sbindir}/cmsfsvol +/sbin/cmsfscat +/sbin/cmsfsck +/sbin/cmsfscp +/sbin/cmsfslst +/sbin/cmsfsvol %{_mandir}/man8/cmsfscat.8* %{_mandir}/man8/cmsfsck.8* %{_mandir}/man8/cmsfscp.8* @@ -670,6 +734,17 @@ This package contains the CMS file syste %changelog +* Mon Jun 29 2009 Dan Hor??k 2:1.8.1-1 +- update to 1.8.1 +- drop upstreamed patches +- create iucvterm subpackage +- update src_vipa locations patch +- install cmsfs tools into /sbin +- add post 1.8.1 fixes from IBM + +* Fri Apr 17 2009 Dan Hor??k 2:1.8.0-6 +- fix build with newer kernels + * Wed Mar 25 2009 Dan Hor??k 2:1.8.0-5 - reword the summaries a bit - add downloadable URLs for Sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Apr 2009 08:03:09 -0000 1.2 +++ sources 3 Jul 2009 09:23:00 -0000 1.3 @@ -1,4 +1,4 @@ -5033eee356663d160784e37b193f93fa s390-tools-1.8.0.tar.bz2 +6a94c4655204a4ec7a2c64f42c9afed3 s390-tools-1.8.1.tar.bz2 71a8ee5918f2c44c385fcfe8350cdc98 cmsfs-1.1.8c.tar.gz 2cbfffca3f07c61420899f45d221d451 lib-zfcp-hbaapi-2.0.tar.gz ba42772e5b305b5e147344442cd70826 src_vipa-2.0.4.tar.gz src_vipa-2.0.4-locations.patch: Index: src_vipa-2.0.4-locations.patch =================================================================== RCS file: /cvs/pkgs/rpms/s390utils/devel/src_vipa-2.0.4-locations.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- src_vipa-2.0.4-locations.patch 7 Apr 2009 08:03:09 -0000 1.1 +++ src_vipa-2.0.4-locations.patch 3 Jul 2009 09:23:00 -0000 1.2 @@ -42,3 +42,33 @@ index 669b6c6..d395fa8 100644 -- 1.6.0.6 +From 5c21f29f4d9e82942a997775c111280b85d01bb8 Mon Sep 17 00:00:00 2001 +From: =?utf-8?q?Dan=20Hor=C3=A1k?= +Date: Wed, 22 Apr 2009 12:53:55 +0200 +Subject: [PATCH] make the man page path and script path configurable + +--- + Makefile | 6 ++++-- + 1 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index d395fa8..365472b 100644 +--- a/Makefile ++++ b/Makefile +@@ -23,9 +23,11 @@ VERSION=2.0.4 + LIBDIR=/usr/lib + SRC_VIPA_PATH=$(INSTROOT)$(LIBDIR) + # the path to the starter script +-SRC_VIPA_STARTER_PATH=$(INSTROOT)/usr/sbin ++SBINDIR=/usr/sbin ++SRC_VIPA_STARTER_PATH=$(INSTROOT)$(SBINDIR) + # path to man page +-SRC_VIPA_MANPAGE_PATH=$(INSTROOT)/usr/share/man ++MANDIR=/usr/share/man ++SRC_VIPA_MANPAGE_PATH=$(INSTROOT)$(MANDIR) + + all: src_vipa.so src_vipa.sh + +-- +1.6.0.6 + --- 0001-s390-tools-1.5.0-su.patch DELETED --- --- 0002-s390-tools-1.5.0-fdasd-raid.patch DELETED --- --- 0003-s390-tools-1.5.0-fmtpercentage.patch DELETED --- --- 0004-s390-tools-1.8.0-automenu.patch DELETED --- --- 0005-s390-tools-1.5.3-lvm.patch DELETED --- --- 0006-s390-tools-1.5.3-dumpconf-vmlinuz.patch DELETED --- --- 0007-s390-tools-1.5.3-zipl-zfcpdump-2.patch DELETED --- --- 0008-s390-tools-1.8.0-zipl-timeout.patch DELETED --- --- 0009-s390-tools-1.8.0-zipl-target.patch DELETED --- --- 0010-s390-tools-1.5.3-zipl-zfcpdump-man.patch DELETED --- --- 0011-s390-tools-1.5.3-fdasd-raid.patch DELETED --- --- 0012-s390-tools-1.8.0-initscript-fix.patch DELETED --- --- 0013-s390-tools-1.8.0-cflags.patch DELETED --- From mgrepl at fedoraproject.org Fri Jul 3 09:40:09 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 3 Jul 2009 09:40:09 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.26, 1.27 selinux-policy.spec, 1.882, 1.883 Message-ID: <20090703094009.BC60811C041A@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12134 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow ftpd to create shm policy-20090521.patch: Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- policy-20090521.patch 3 Jul 2009 07:57:26 -0000 1.26 +++ policy-20090521.patch 3 Jul 2009 09:40:09 -0000 1.27 @@ -1211,7 +1211,7 @@ diff -b -B --ignore-all-space --exclude- /dev/lp.* -c gen_context(system_u:object_r:printer_device_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/devices.if serefpolicy-3.6.12/policy/modules/kernel/devices.if --- nsaserefpolicy/policy/modules/kernel/devices.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/kernel/devices.if 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/kernel/devices.if 2009-07-03 11:25:38.000000000 +0200 @@ -1727,6 +1727,133 @@ ######################################## @@ -1346,6 +1346,28 @@ diff -b -B --ignore-all-space --exclude- ## Read the lvm comtrol device. ## ## +@@ -3780,3 +3907,21 @@ + + typeattribute $1 devices_unconfined_type; + ') ++ ++###################################### ++## ++## Set the attributes of the tty device ++## ++## ++## ++## Domain allowed access. ++## ++## ++# ++interface(`dev_setattr_tty',` ++ gen_require(` ++ type devtty_t; ++ ') ++ ++ setattr_chr_files_pattern($1, devtty_t, devtty_t) ++') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/devices.te serefpolicy-3.6.12/policy/modules/kernel/devices.te --- nsaserefpolicy/policy/modules/kernel/devices.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/kernel/devices.te 2009-06-25 10:21:01.000000000 +0200 Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.882 retrieving revision 1.883 diff -u -p -r1.882 -r1.883 --- selinux-policy.spec 29 Jun 2009 20:57:51 -0000 1.882 +++ selinux-policy.spec 3 Jul 2009 09:40:09 -0000 1.883 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 62%{?dist} +Release: 63%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 3 2009 Miroslav Grepl 3.6.12-63 +- Allow ftpd to create shm + * Mon Jun 29 2009 Miroslav Grepl 3.6.12-62 - Allow sshd to manage gitosis var/lib files From danken at fedoraproject.org Fri Jul 3 09:42:47 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Fri, 3 Jul 2009 09:42:47 +0000 (UTC) Subject: rpms/tetex-fonts-hebrew/devel Makefile, 1.1, NONE sources, 1.2, NONE tetex-fonts-hebrew.spec, 1.7, NONE Message-ID: <20090703094247.E5D3411C041A@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tetex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12517 Removed Files: Makefile sources tetex-fonts-hebrew.spec Log Message: no need for this package when tetex is no longer around. see tex-fonts-hebrew instead. --- Makefile DELETED --- --- sources DELETED --- --- tetex-fonts-hebrew.spec DELETED --- From danken at fedoraproject.org Fri Jul 3 09:44:11 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Fri, 3 Jul 2009 09:44:11 +0000 (UTC) Subject: rpms/tetex-fonts-hebrew/devel dead.package,NONE,1.1 Message-ID: <20090703094411.1710911C041A@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tetex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12912 Added Files: dead.package Log Message: no need for this package when tetex is no longer around. see tex-fonts-hebrew instead. (adding dead.package) --- NEW FILE dead.package --- Obsoleted by tex-fonts-hebrew, since tetex is obsoleted by texlive From markmc at fedoraproject.org Fri Jul 3 09:57:09 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 3 Jul 2009 09:57:09 +0000 (UTC) Subject: rpms/libvirt/devel libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch, NONE, 1.1 libvirt-0.6.4-fix-nosource-label.patch, NONE, 1.1 libvirt-0.6.4-shared-readonly-label.patch, NONE, 1.1 libvirt.spec, 1.139, 1.140 Message-ID: <20090703095709.3112C11C041A@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16205 Modified Files: libvirt.spec Added Files: libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch libvirt-0.6.4-fix-nosource-label.patch libvirt-0.6.4-shared-readonly-label.patch Log Message: * Fri Jul 3 2009 Mark McLoughlin - 0.6.4-3.fc12 - Handle shared/readonly image labelling (bug #493692) - Don't unnecessarily try to change a file context (bug #507555) - Don't try to label a disk with no path (e.g. empty cdrom) (bug #499569) libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch: --- NEW FILE libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch --- >From ae4523336ac06e3ff7cc7b416fad9e57998c6b54 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Fri, 3 Jul 2009 10:29:01 +0100 Subject: [PATCH 2/3] Don't unnecessarily try to change a file context As pointed out by Tim Waugh here: https://bugzilla.redhat.com/507555 We shouldn't bother trying to set the context of a file if it already matches what we want. (Fixed to use STREQ() and not use tabs, as pointed out by danpb) Signed-off-by: Mark McLoughlin --- src/security_selinux.c | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/security_selinux.c b/src/security_selinux.c index db1c27d..c2015a1 100644 --- a/src/security_selinux.c +++ b/src/security_selinux.c @@ -280,10 +280,19 @@ static int SELinuxSetFilecon(virConnectPtr conn, const char *path, char *tcon) { char ebuf[1024]; + security_context_t econ; VIR_INFO("Setting SELinux context on '%s' to '%s'", path, tcon); - if(setfilecon(path, tcon) < 0) { + if (setfilecon(path, tcon) < 0) { + if (getfilecon(path, &econ) >= 0) { + if (STREQ(tcon, econ)) { + freecon(econ); + /* It's alright, there's nothing to change anyway. */ + return 0; + } + freecon(econ); + } virSecurityReportError(conn, VIR_ERR_ERROR, _("%s: unable to set security context " "'\%s\' on %s: %s."), __func__, -- 1.6.2.5 libvirt-0.6.4-fix-nosource-label.patch: --- NEW FILE libvirt-0.6.4-fix-nosource-label.patch --- >From 06f607a9c5cfd50433ae27cc7729c31f81d87f19 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 3 Jul 2009 10:40:55 +0100 Subject: [PATCH 3/3] Skip labelling if no src path present Fixes startup of guest's with sourceless cdrom devices. Patch originall posted here: https://bugzilla.redhat.com/499569 but never sent upstream. Signed-off-by: Mark McLoughlin --- src/security_selinux.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/security_selinux.c b/src/security_selinux.c index c2015a1..eb8d308 100644 --- a/src/security_selinux.c +++ b/src/security_selinux.c @@ -342,6 +342,9 @@ SELinuxSetSecurityImageLabel(virConnectPtr conn, { const virSecurityLabelDefPtr secdef = &vm->def->seclabel; + if (!disk->src) + return 0; + if (disk->shared) { return SELinuxSetFilecon(conn, disk->src, default_image_context); } else if (disk->readonly) { -- 1.6.2.5 libvirt-0.6.4-shared-readonly-label.patch: --- NEW FILE libvirt-0.6.4-shared-readonly-label.patch --- >From e700e17c3989d32e04ef98c63ac9b9414fefb366 Mon Sep 17 00:00:00 2001 From: Daniel P. Berrange Date: Fri, 3 Jul 2009 10:24:50 +0100 Subject: [PATCH 1/3] Re-label shared and readonly images This patch was posted ages ago here: https://bugzilla.redhat.com/493692 But was never posted upstream AFAICT. Signed-off-by: Mark McLoughlin --- src/security_selinux.c | 27 +++++++++++++++++---------- 1 files changed, 17 insertions(+), 10 deletions(-) diff --git a/src/security_selinux.c b/src/security_selinux.c index ac317d7..db1c27d 100644 --- a/src/security_selinux.c +++ b/src/security_selinux.c @@ -24,11 +24,12 @@ #include "virterror_internal.h" #include "util.h" #include "memory.h" - +#include "logging.h" #define VIR_FROM_THIS VIR_FROM_SECURITY static char default_domain_context[1024]; +static char default_content_context[1024]; static char default_image_context[1024]; #define SECURITY_SELINUX_VOID_DOI "0" #define SECURITY_SELINUX_NAME "selinux" @@ -148,8 +149,13 @@ SELinuxInitialize(virConnectPtr conn) close(fd); ptr = strchrnul(default_image_context, '\n'); - *ptr = '\0'; - + if (*ptr == '\n') { + *ptr = '\0'; + strcpy(default_content_context, ptr+1); + ptr = strchrnul(default_content_context, '\n'); + if (*ptr == '\n') + *ptr = '\0'; + } return 0; } @@ -275,6 +281,8 @@ SELinuxSetFilecon(virConnectPtr conn, const char *path, char *tcon) { char ebuf[1024]; + VIR_INFO("Setting SELinux context on '%s' to '%s'", path, tcon); + if(setfilecon(path, tcon) < 0) { virSecurityReportError(conn, VIR_ERR_ERROR, _("%s: unable to set security context " @@ -299,9 +307,6 @@ SELinuxRestoreSecurityImageLabel(virConnectPtr conn, char *newpath = NULL; const char *path = disk->src; - if (disk->readonly || disk->shared) - return 0; - if ((err = virFileResolveLink(path, &newpath)) < 0) { virReportSystemError(conn, err, _("cannot resolve symlink %s"), path); @@ -328,8 +333,13 @@ SELinuxSetSecurityImageLabel(virConnectPtr conn, { const virSecurityLabelDefPtr secdef = &vm->def->seclabel; - if (secdef->imagelabel) + if (disk->shared) { + return SELinuxSetFilecon(conn, disk->src, default_image_context); + } else if (disk->readonly) { + return SELinuxSetFilecon(conn, disk->src, default_content_context); + } else if (secdef->imagelabel) { return SELinuxSetFilecon(conn, disk->src, secdef->imagelabel); + } return 0; } @@ -403,9 +413,6 @@ SELinuxSetSecurityLabel(virConnectPtr conn, if (secdef->imagelabel) { for (i = 0 ; i < vm->def->ndisks ; i++) { - if (vm->def->disks[i]->readonly || - vm->def->disks[i]->shared) continue; - if (SELinuxSetSecurityImageLabel(conn, vm, vm->def->disks[i]) < 0) return -1; } -- 1.6.2.5 Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- libvirt.spec 5 Jun 2009 11:46:47 -0000 1.139 +++ libvirt.spec 3 Jul 2009 09:57:08 -0000 1.140 @@ -55,14 +55,17 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.6.4 -Release: 2%{?dist}%{?extra_release} +Release: 3%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz -# Patches cherry-picked from upstream - -# Patches not for upstream. +# Handle shared/readonly image labelling (bug #493692) +Patch1: libvirt-0.6.4-shared-readonly-label.patch +# Don't unnecessarily try to change a file context (bug #507555) +Patch2: libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch +# Don't try to label a disk with no path (e.g. empty cdrom) (bug #499569) +Patch3: libvirt-0.6.4-fix-nosource-label.patch # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) @@ -214,6 +217,10 @@ of recent versions of Linux (and other O %prep %setup -q +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 + %patch200 -p0 mv NEWS NEWS.old @@ -543,6 +550,11 @@ fi %endif %changelog +* Fri Jul 3 2009 Mark McLoughlin - 0.6.4-3.fc12 +- Handle shared/readonly image labelling (bug #493692) +- Don't unnecessarily try to change a file context (bug #507555) +- Don't try to label a disk with no path (e.g. empty cdrom) (bug #499569) + * Fri Jun 5 2009 Mark McLoughlin - 0.6.4-2.fc12 - Remove the qemu BuildRequires From markmc at fedoraproject.org Fri Jul 3 10:05:41 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 3 Jul 2009 10:05:41 +0000 (UTC) Subject: rpms/libvirt/F-11 libvirt-0.6.2-do-not-unnecessarily-try-to-change-a-file-context.patch, NONE, 1.1 libvirt-0.6.2-fix-libvirtd-crash-with-bad-capabilities-data.patch, NONE, 1.1 libvirt.spec, 1.134, 1.135 Message-ID: <20090703100541.906E811C041A@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18128 Modified Files: libvirt.spec Added Files: libvirt-0.6.2-do-not-unnecessarily-try-to-change-a-file-context.patch libvirt-0.6.2-fix-libvirtd-crash-with-bad-capabilities-data.patch Log Message: * Fri Jul 3 2009 Mark McLoughlin - 0.6.2-13.fc11 - Fix libvirtd crash with bad capabilities data (bug #505635) - Don't unnecessarily try to change a file context (bug #507555) libvirt-0.6.2-do-not-unnecessarily-try-to-change-a-file-context.patch: --- NEW FILE libvirt-0.6.2-do-not-unnecessarily-try-to-change-a-file-context.patch --- >From ae4523336ac06e3ff7cc7b416fad9e57998c6b54 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Fri, 3 Jul 2009 10:29:01 +0100 Subject: [PATCH 2/3] Don't unnecessarily try to change a file context As pointed out by Tim Waugh here: https://bugzilla.redhat.com/507555 We shouldn't bother trying to set the context of a file if it already matches what we want. (Fixed to use STREQ() and not use tabs, as pointed out by danpb) Signed-off-by: Mark McLoughlin --- src/security_selinux.c | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/security_selinux.c b/src/security_selinux.c index db1c27d..c2015a1 100644 --- a/src/security_selinux.c +++ b/src/security_selinux.c @@ -280,10 +280,19 @@ static int SELinuxSetFilecon(virConnectPtr conn, const char *path, char *tcon) { char ebuf[1024]; + security_context_t econ; VIR_INFO("Setting SELinux context on '%s' to '%s'", path, tcon); - if(setfilecon(path, tcon) < 0) { + if (setfilecon(path, tcon) < 0) { + if (getfilecon(path, &econ) >= 0) { + if (STREQ(tcon, econ)) { + freecon(econ); + /* It's alright, there's nothing to change anyway. */ + return 0; + } + freecon(econ); + } virSecurityReportError(conn, VIR_ERR_ERROR, _("%s: unable to set security context " "'\%s\' on %s: %s."), __func__, -- 1.6.2.5 libvirt-0.6.2-fix-libvirtd-crash-with-bad-capabilities-data.patch: --- NEW FILE libvirt-0.6.2-fix-libvirtd-crash-with-bad-capabilities-data.patch --- >From 80965bff6d46dea1808c8bbf02f50f0e289a0e65 Mon Sep 17 00:00:00 2001 From: Daniel P. Berrange Date: Mon, 29 Jun 2009 10:41:56 +0000 Subject: [PATCH] Fix crash in QEMU driver with bad capabilities data --- src/qemu_driver.c | 80 +++++++++++++++++++++++++++++++++++----------------- 1 files changed, 54 insertions(+), 26 deletions(-) diff -up libvirt-0.6.2/src/qemu_driver.c.bad-caps libvirt-0.6.2/src/qemu_driver.c --- libvirt-0.6.2/src/qemu_driver.c.bad-caps 2009-07-03 10:07:03.275252815 +0100 +++ libvirt-0.6.2/src/qemu_driver.c 2009-07-03 10:08:52.143502961 +0100 @@ -360,12 +360,43 @@ next: return 0; } + +static int +qemudSecurityCapsInit(virSecurityDriverPtr secdrv, + virCapsPtr caps) +{ + const char *doi, *model; + + doi = virSecurityDriverGetDOI(secdrv); + model = virSecurityDriverGetModel(secdrv); + + caps->host.secModel.model = strdup(model); + if (!caps->host.secModel.model) { + char ebuf[1024]; + VIR_ERROR(_("Failed to copy secModel model: %s"), + virStrerror(errno, ebuf, sizeof ebuf)); + return -1; + } + + caps->host.secModel.doi = strdup(doi); + if (!caps->host.secModel.doi) { + char ebuf[1024]; + VIR_ERROR(_("Failed to copy secModel DOI: %s"), + virStrerror(errno, ebuf, sizeof ebuf)); + return -1; + } + + VIR_DEBUG("Initialized caps for security driver \"%s\" with " + "DOI \"%s\"", model, doi); + + return 0; +} + + static int qemudSecurityInit(struct qemud_driver *qemud_drv) { int ret; - const char *doi, *model; - virCapsPtr caps; virSecurityDriverPtr security_drv; ret = virSecurityDriverStartup(&security_drv, @@ -381,36 +412,17 @@ qemudSecurityInit(struct qemud_driver *q } qemud_drv->securityDriver = security_drv; - doi = virSecurityDriverGetDOI(security_drv); - model = virSecurityDriverGetModel(security_drv); - VIR_DEBUG("Initialized security driver \"%s\" with " - "DOI \"%s\"", model, doi); + VIR_INFO("Initialized security driver %s", security_drv->name); /* * Add security policy host caps now that the security driver is * initialized. */ - caps = qemud_drv->caps; - - caps->host.secModel.model = strdup(model); - if (!caps->host.secModel.model) { - char ebuf[1024]; - VIR_ERROR(_("Failed to copy secModel model: %s"), - virStrerror(errno, ebuf, sizeof ebuf)); - return -1; - } + return qemudSecurityCapsInit(security_drv, qemud_drv->caps); +} - caps->host.secModel.doi = strdup(doi); - if (!caps->host.secModel.doi) { - char ebuf[1024]; - VIR_ERROR(_("Failed to copy secModel DOI: %s"), - virStrerror(errno, ebuf, sizeof ebuf)); - return -1; - } - return 0; -} /** * qemudStartup: @@ -1852,13 +1864,29 @@ static int qemudGetNodeInfo(virConnectPt static char *qemudGetCapabilities(virConnectPtr conn) { struct qemud_driver *driver = conn->privateData; + virCapsPtr caps; char *xml = NULL; qemuDriverLock(driver); + if ((caps = qemudCapsInit()) == NULL) { + virReportOOMError(conn); + goto cleanup; + } + + if (qemu_driver->securityDriver && + qemudSecurityCapsInit(qemu_driver->securityDriver, caps) < 0) { + virCapabilitiesFree(caps); + virReportOOMError(conn); + goto cleanup; + } + virCapabilitiesFree(qemu_driver->caps); - if ((qemu_driver->caps = qemudCapsInit()) == NULL || - (xml = virCapabilitiesFormatXML(driver->caps)) == NULL) + qemu_driver->caps = caps; + + if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL) virReportOOMError(conn); + +cleanup: qemuDriverUnlock(driver); return xml; Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/F-11/libvirt.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- libvirt.spec 5 Jun 2009 11:47:31 -0000 1.134 +++ libvirt.spec 3 Jul 2009 10:05:41 -0000 1.135 @@ -66,7 +66,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.6.2 -Release: 12%{?dist}%{?extra_release} +Release: 13%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz @@ -100,6 +100,10 @@ Patch12: libvirt-0.6.2-qemu-ppc-machine- Patch13: libvirt-0.6.2-libvirtd-double-free.patch # Fix broken networking with newer qemu releases (bz 503275) Patch14: libvirt-0.6.2-avoid-broken-networking-with-newer-qemu.patch +# Fix libvirtd crash with bad capabilities data (bz 505635) +Patch15: libvirt-0.6.2-fix-libvirtd-crash-with-bad-capabilities-data.patch +# Don't unnecessarily try to change a file context (bug #507555) +Patch16: libvirt-0.6.2-do-not-unnecessarily-try-to-change-a-file-context.patch # Not for upstream. Temporary hack till PulseAudio autostart # problems are sorted out when SELinux enforcing @@ -266,6 +270,8 @@ of recent versions of Linux (and other O %patch12 -p1 %patch13 -p1 %patch14 -p1 +%patch15 -p1 +%patch16 -p1 %patch200 -p0 @@ -589,6 +595,10 @@ fi %endif %changelog +* Fri Jul 3 2009 Mark McLoughlin - 0.6.2-13.fc11 +- Fix libvirtd crash with bad capabilities data (bug #505635) +- Don't unnecessarily try to change a file context (bug #507555) + * Fri Jun 5 2009 Mark McLoughlin - 0.6.2-12.fc11 - Use the correct QEMU machine type for ppc (bug #502862) - Fix crash with TLS connections (bug #503066) From markmc at fedoraproject.org Fri Jul 3 10:09:12 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 3 Jul 2009 10:09:12 +0000 (UTC) Subject: rpms/libvirt/devel libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch, NONE, 1.1 libvirt.spec, 1.140, 1.141 Message-ID: <20090703100912.DFC5911C041A@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18945 Modified Files: libvirt.spec Added Files: libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch Log Message: * Fri Jul 3 2009 Mark McLoughlin - 0.6.4-4.fc12 - Fix libvirtd crash with bad capabilities data (bug #505635) libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch: --- NEW FILE libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch --- >From 80965bff6d46dea1808c8bbf02f50f0e289a0e65 Mon Sep 17 00:00:00 2001 From: Daniel P. Berrange Date: Mon, 29 Jun 2009 10:41:56 +0000 Subject: [PATCH] Fix crash in QEMU driver with bad capabilities data --- src/qemu_driver.c | 80 +++++++++++++++++++++++++++++++++++----------------- 1 files changed, 54 insertions(+), 26 deletions(-) diff -up libvirt-0.6.2/src/qemu_driver.c.bad-caps libvirt-0.6.2/src/qemu_driver.c --- libvirt-0.6.2/src/qemu_driver.c.bad-caps 2009-07-03 10:07:03.275252815 +0100 +++ libvirt-0.6.2/src/qemu_driver.c 2009-07-03 10:08:52.143502961 +0100 @@ -360,12 +360,43 @@ next: return 0; } + +static int +qemudSecurityCapsInit(virSecurityDriverPtr secdrv, + virCapsPtr caps) +{ + const char *doi, *model; + + doi = virSecurityDriverGetDOI(secdrv); + model = virSecurityDriverGetModel(secdrv); + + caps->host.secModel.model = strdup(model); + if (!caps->host.secModel.model) { + char ebuf[1024]; + VIR_ERROR(_("Failed to copy secModel model: %s"), + virStrerror(errno, ebuf, sizeof ebuf)); + return -1; + } + + caps->host.secModel.doi = strdup(doi); + if (!caps->host.secModel.doi) { + char ebuf[1024]; + VIR_ERROR(_("Failed to copy secModel DOI: %s"), + virStrerror(errno, ebuf, sizeof ebuf)); + return -1; + } + + VIR_DEBUG("Initialized caps for security driver \"%s\" with " + "DOI \"%s\"", model, doi); + + return 0; +} + + static int qemudSecurityInit(struct qemud_driver *qemud_drv) { int ret; - const char *doi, *model; - virCapsPtr caps; virSecurityDriverPtr security_drv; ret = virSecurityDriverStartup(&security_drv, @@ -381,36 +412,17 @@ qemudSecurityInit(struct qemud_driver *q } qemud_drv->securityDriver = security_drv; - doi = virSecurityDriverGetDOI(security_drv); - model = virSecurityDriverGetModel(security_drv); - VIR_DEBUG("Initialized security driver \"%s\" with " - "DOI \"%s\"", model, doi); + VIR_INFO("Initialized security driver %s", security_drv->name); /* * Add security policy host caps now that the security driver is * initialized. */ - caps = qemud_drv->caps; - - caps->host.secModel.model = strdup(model); - if (!caps->host.secModel.model) { - char ebuf[1024]; - VIR_ERROR(_("Failed to copy secModel model: %s"), - virStrerror(errno, ebuf, sizeof ebuf)); - return -1; - } + return qemudSecurityCapsInit(security_drv, qemud_drv->caps); +} - caps->host.secModel.doi = strdup(doi); - if (!caps->host.secModel.doi) { - char ebuf[1024]; - VIR_ERROR(_("Failed to copy secModel DOI: %s"), - virStrerror(errno, ebuf, sizeof ebuf)); - return -1; - } - return 0; -} /** * qemudStartup: @@ -1852,13 +1864,29 @@ static int qemudGetNodeInfo(virConnectPt static char *qemudGetCapabilities(virConnectPtr conn) { struct qemud_driver *driver = conn->privateData; + virCapsPtr caps; char *xml = NULL; qemuDriverLock(driver); + if ((caps = qemudCapsInit()) == NULL) { + virReportOOMError(conn); + goto cleanup; + } + + if (qemu_driver->securityDriver && + qemudSecurityCapsInit(qemu_driver->securityDriver, caps) < 0) { + virCapabilitiesFree(caps); + virReportOOMError(conn); + goto cleanup; + } + virCapabilitiesFree(qemu_driver->caps); - if ((qemu_driver->caps = qemudCapsInit()) == NULL || - (xml = virCapabilitiesFormatXML(driver->caps)) == NULL) + qemu_driver->caps = caps; + + if ((xml = virCapabilitiesFormatXML(driver->caps)) == NULL) virReportOOMError(conn); + +cleanup: qemuDriverUnlock(driver); return xml; Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- libvirt.spec 3 Jul 2009 09:57:08 -0000 1.140 +++ libvirt.spec 3 Jul 2009 10:08:42 -0000 1.141 @@ -55,7 +55,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.6.4 -Release: 3%{?dist}%{?extra_release} +Release: 4%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz @@ -66,6 +66,8 @@ Patch1: libvirt-0.6.4-shared-readonly-la Patch2: libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch # Don't try to label a disk with no path (e.g. empty cdrom) (bug #499569) Patch3: libvirt-0.6.4-fix-nosource-label.patch +# Fix libvirtd crash with bad capabilities data (bug #505635) +Patch4 :libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) @@ -220,6 +222,7 @@ of recent versions of Linux (and other O %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %patch200 -p0 @@ -550,6 +553,9 @@ fi %endif %changelog +* Fri Jul 3 2009 Mark McLoughlin - 0.6.4-4.fc12 +- Fix libvirtd crash with bad capabilities data (bug #505635) + * Fri Jul 3 2009 Mark McLoughlin - 0.6.4-3.fc12 - Handle shared/readonly image labelling (bug #493692) - Don't unnecessarily try to change a file context (bug #507555) From kkofler at fedoraproject.org Fri Jul 3 10:12:32 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Fri, 3 Jul 2009 10:12:32 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec,1.246,1.247 Message-ID: <20090703101232.3098011C041A@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19817/devel Modified Files: kdebase-workspace.spec Log Message: Fix underscore vs. dash mismatch. Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.246 retrieving revision 1.247 diff -u -p -r1.246 -r1.247 --- kdebase-workspace.spec 2 Jul 2009 23:11:06 -0000 1.246 +++ kdebase-workspace.spec 3 Jul 2009 10:12:31 -0000 1.247 @@ -23,7 +23,7 @@ Patch8: kdebase-workspace-4.2.85-klipper #??434824: KDE4 System Settings - No Method To Enter Administrative Mode Patch9: kdebase-workspace-4.2.95-rootprivs.patch Patch11: kdebase-workspace-4.1.96-font.patch -Patch12: kdebase-workspace-4.2.95-default_applets.patch +Patch12: kdebase-workspace-4.2.95-default-applets.patch Patch13: kdebase-workspace-4.2.0-pykde4.patch Patch14: kdebase-workspace-4.2.0-klipper-arora.patch Patch15: kdebase-workspace-4.2.0-kio_sysinfo.patch @@ -222,7 +222,7 @@ Requires: PyKDE4 >= %{version} %patch8 -p1 -b .klipper-url %patch9 -p1 -b .rootprivs %patch11 -p1 -b .font -%patch12 -p1 -b .default_applets +%patch12 -p1 -b .default-applets %patch13 -p1 -b .pykde4 # kio_sysinfo based on OpenSUSE's patch %patch15 -p1 -b .kio_sysinfo @@ -516,7 +516,7 @@ fi %changelog -* Thu Jul 02 2009 Kevin Kofler - 4.2.95-6 +* Fri Jul 03 2009 Kevin Kofler - 4.2.95-6 - add kde-plasma-networkmanagement to the default panel if installed * Wed Jul 01 2009 Michel Salim - 4.2.95-5 From giallu at fedoraproject.org Fri Jul 3 10:15:47 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 3 Jul 2009 10:15:47 +0000 (UTC) Subject: rpms/mantis/F-11 .cvsignore, 1.13, 1.14 mantis.spec, 1.24, 1.25 sources, 1.18, 1.19 Message-ID: <20090703101547.90F3811C041A@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/mantis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20414 Modified Files: .cvsignore mantis.spec sources Log Message: * Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mantis/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 11 Dec 2008 22:05:10 -0000 1.13 +++ .cvsignore 3 Jul 2009 10:15:17 -0000 1.14 @@ -1 +1 @@ -mantisbt-1.1.6.tar.gz +mantisbt-1.1.8.tar.gz Index: mantis.spec =================================================================== RCS file: /cvs/extras/rpms/mantis/F-11/mantis.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mantis.spec 25 Feb 2009 23:36:25 -0000 1.24 +++ mantis.spec 3 Jul 2009 10:15:17 -0000 1.25 @@ -5,8 +5,8 @@ Summary: Web-based bugtracking system Name: mantis -Version: 1.1.6 -Release: 3%{?dist} +Version: 1.1.8 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.mantisbt.org/ @@ -150,6 +150,12 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog +* Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 +- new upstream release + +* Tue Apr 21 2009 Gianluca Sforna - 1.1.7-1 +- new upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/mantis/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 11 Dec 2008 22:05:10 -0000 1.18 +++ sources 3 Jul 2009 10:15:17 -0000 1.19 @@ -1 +1 @@ -2e0c6d3dd9ca7d16258fc2d86363a675 mantisbt-1.1.6.tar.gz +338108ebc3c9cd111b27471021312c51 mantisbt-1.1.8.tar.gz From giallu at fedoraproject.org Fri Jul 3 10:21:16 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 3 Jul 2009 10:21:16 +0000 (UTC) Subject: rpms/mantis/F-10 .cvsignore, 1.13, 1.14 mantis.spec, 1.22, 1.23 sources, 1.18, 1.19 Message-ID: <20090703102116.649BD11C041A@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/mantis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21470 Modified Files: .cvsignore mantis.spec sources Log Message: * Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mantis/F-10/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 19 Dec 2008 08:17:43 -0000 1.13 +++ .cvsignore 3 Jul 2009 10:20:46 -0000 1.14 @@ -1 +1 @@ -mantisbt-1.1.6.tar.gz +mantisbt-1.1.8.tar.gz Index: mantis.spec =================================================================== RCS file: /cvs/extras/rpms/mantis/F-10/mantis.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mantis.spec 19 Dec 2008 08:17:43 -0000 1.22 +++ mantis.spec 3 Jul 2009 10:20:46 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Web-based bugtracking system Name: mantis -Version: 1.1.6 +Version: 1.1.8 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -14,6 +14,7 @@ BuildArch: noarch Source0: http://downloads.sourceforge.net/mantisbt/mantisbt-%{version}.tar.gz Source1: mantis-README.Fedora +Patch0: mantis-1.1.6-install-nowriteconfig.patch Patch1: mantis-1.1.0-noexamplecom.patch Patch2: mantis-1.0.0rc2-noadmin.patch @@ -57,10 +58,12 @@ This package contains configuration-file %prep %setup -q -n mantisbt-%{version} +%patch0 -p1 %patch1 -p1 %patch2 -p1 cp %{SOURCE1} ./doc/README.Fedora +rm .gitignore rm -rf packages @@ -90,6 +93,10 @@ find ${RPM_BUILD_ROOT} \( \ mv ${RPM_BUILD_ROOT}%{pkgdir}/mantis_offline.php.sample ${RPM_BUILD_ROOT}%{cfgdir}/ mv ${RPM_BUILD_ROOT}%{pkgdir}/config_inc.php.sample ${RPM_BUILD_ROOT}%{cfgdir}/config_inc.php +#convert changelog to UTF8 +iconv -f ISO_8859-1 -t UTF-8 -o doc/ChangeLog{.utf8,} +mv doc/ChangeLog{.utf8,} + chmod a+x core ${RPM_BUILD_ROOT}%{pkgdir}/core/checkin.php for i in $(find ${RPM_BUILD_ROOT} -type f -regex '.*\.\(php\|txt\|gif\|png\|css\|htm\|dtd\|xsl\|sql\|js\|bak\|xml\|zip\)$' -perm +0111); do @@ -110,7 +117,7 @@ chmod -x doc/* chmod -x ${RPM_BUILD_ROOT}%{pkgdir}/core/phpmailer/{README,LICENSE} # Dangling symlink: when /etc/mantis/mantis_offline.php is present mantis is put offline -ln -s %{cfgdir}/mantis_offline.php ${RPM_BUILD_ROOT}%{pkgdir}/mantis_offline.php +ln -s ../../..%{cfgdir}/mantis_offline.php ${RPM_BUILD_ROOT}%{pkgdir}/mantis_offline.php %{__install} -d ${RPM_BUILD_ROOT}%{httpconfdir} %{__install} -p -m644 %{SOURCE10} ${RPM_BUILD_ROOT}%{httpconfdir}/mantis.conf @@ -143,6 +150,22 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog +* Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 +- new upstream release + +* Tue Apr 21 2009 Gianluca Sforna - 1.1.7-1 +- new upstream release + +* Wed Feb 25 2009 Fedora Release Engineering - 1.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Dec 28 2008 Sven Lankes - 1.1.6-2 +- add patch to suppress bogus warning during setup + (closes bz #437142) +- convert ChangeLog to UTF8 +- remove .gitignore +- change mantis_offline.php-symlink to be relative + * Wed Dec 10 2008 Gianluca Sforna - 1.1.6-1 - new upstream release Index: sources =================================================================== RCS file: /cvs/extras/rpms/mantis/F-10/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 19 Dec 2008 08:17:43 -0000 1.18 +++ sources 3 Jul 2009 10:20:46 -0000 1.19 @@ -1 +1 @@ -2e0c6d3dd9ca7d16258fc2d86363a675 mantisbt-1.1.6.tar.gz +338108ebc3c9cd111b27471021312c51 mantisbt-1.1.8.tar.gz From giallu at fedoraproject.org Fri Jul 3 10:23:29 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 3 Jul 2009 10:23:29 +0000 (UTC) Subject: rpms/mantis/EL-5 .cvsignore, 1.9, 1.10 mantis.spec, 1.18, 1.19 sources, 1.14, 1.15 Message-ID: <20090703102329.7FD4911C041A@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/mantis/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22697 Modified Files: .cvsignore mantis.spec sources Log Message: * Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mantis/EL-5/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 21 Apr 2009 08:58:09 -0000 1.9 +++ .cvsignore 3 Jul 2009 10:22:59 -0000 1.10 @@ -1 +1 @@ -mantisbt-1.1.7.tar.gz +mantisbt-1.1.8.tar.gz Index: mantis.spec =================================================================== RCS file: /cvs/extras/rpms/mantis/EL-5/mantis.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- mantis.spec 21 Apr 2009 08:58:09 -0000 1.18 +++ mantis.spec 3 Jul 2009 10:22:59 -0000 1.19 @@ -5,7 +5,7 @@ Summary: Web-based bugtracking system Name: mantis -Version: 1.1.7 +Version: 1.1.8 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -150,6 +150,9 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog +* Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 +- new upstream release + * Tue Apr 21 2009 Gianluca Sforna - 1.1.7-1 - new upstream release Index: sources =================================================================== RCS file: /cvs/extras/rpms/mantis/EL-5/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 21 Apr 2009 08:58:09 -0000 1.14 +++ sources 3 Jul 2009 10:22:59 -0000 1.15 @@ -1 +1 @@ -df49eb04bf8fff7a6ed4845f9a09be3b mantisbt-1.1.7.tar.gz +338108ebc3c9cd111b27471021312c51 mantisbt-1.1.8.tar.gz From giallu at fedoraproject.org Fri Jul 3 10:25:29 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 3 Jul 2009 10:25:29 +0000 (UTC) Subject: rpms/mantis/F-10 mantis-1.1.6-install-nowriteconfig.patch,NONE,1.1 Message-ID: <20090703102529.5680D11C041A@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/mantis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23268 Added Files: mantis-1.1.6-install-nowriteconfig.patch Log Message: Add missing patch file mantis-1.1.6-install-nowriteconfig.patch: --- NEW FILE mantis-1.1.6-install-nowriteconfig.patch --- --- mantis-1.1.6.orig/admin/install.php 2008-12-09 20:20:28.000000000 +0100 +++ mantis-1.1.6//admin/install.php 2008-12-28 19:39:50.493771722 +0100 @@ -397,10 +397,18 @@
+ + + + @@ -456,7 +464,7 @@ Username (for Database) @@ -465,7 +473,7 @@ Password (for Database) @@ -474,7 +482,7 @@ Database name (for Database) @@ -762,6 +770,9 @@ $t_config_filename = $g_absolute_path . 'config_inc.php'; $t_config_exists = file_exists ( $t_config_filename ); ?> +
{paramtext}:
+
+ To change any of the disabled options below, edit /etc/mantis/config_inc.php and reload this page! +
+
Type of Database - MySql (default)'; @@ -447,7 +455,7 @@ Hostname (for Database Server) - +
- +
- "> + ">
- +
@@ -832,7 +843,9 @@ ?>
- + Author: kushal Update of /cvs/extras/rpms/lekhonee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24797/devel Modified Files: .cvsignore import.log lekhonee.spec sources Log Message: New release of lekhonee Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 1 Jul 2009 06:20:25 -0000 1.5 +++ .cvsignore 3 Jul 2009 10:32:18 -0000 1.6 @@ -1 +1 @@ -lekhonee-0.5.tar.gz +lekhonee-0.6.tar.gz Index: import.log =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 1 Jul 2009 06:20:25 -0000 1.5 +++ import.log 3 Jul 2009 10:32:18 -0000 1.6 @@ -3,3 +3,4 @@ lekhonee-0_3_1-1_fc11:HEAD:lekhonee-0.3. lekhonee-0_4-4_fc11:HEAD:lekhonee-0.4-4.fc11.src.rpm:1245242716 lekhonee-0_4-5_fc11:HEAD:lekhonee-0.4-5.fc11.src.rpm:1245244541 lekhonee-0_5-3_fc11:HEAD:lekhonee-0.5-3.fc11.src.rpm:1246427975 +lekhonee-0_6-1_fc11:HEAD:lekhonee-0.6-1.fc11.src.rpm:1246617217 Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/lekhonee.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lekhonee.spec 1 Jul 2009 06:20:25 -0000 1.5 +++ lekhonee.spec 3 Jul 2009 10:32:18 -0000 1.6 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.5 -Release: 3%{?dist} +Version: 0.6 +Release: 1%{?dist} Summary: A blog client Group: Applications/Internet @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Fri Jul 03 2009 Kushal Das 0.6-1 +- New release + * Tue Jun 30 2009 Kushal Das 0.5-3 - Fixing requires issue Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 06:20:25 -0000 1.6 +++ sources 3 Jul 2009 10:32:18 -0000 1.7 @@ -1 +1 @@ -07477825df4f50d450f123b90394bbdf lekhonee-0.5.tar.gz +9b2f18145670f0956a1190416438bd2d lekhonee-0.6.tar.gz From pkgdb at fedoraproject.org Fri Jul 3 10:34:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:10 +0000 Subject: [pkgdb] system-config-printer: jpopelka has given up watchbugzilla Message-ID: <20090703103410.7E66B10F87B@bastion2.fedora.phx.redhat.com> jpopelka has given up the watchbugzilla acl on system-config-printer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 10:34:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:18 +0000 Subject: [pkgdb] system-config-printer: jpopelka has given up watchbugzilla Message-ID: <20090703103418.66AE810F898@bastion2.fedora.phx.redhat.com> jpopelka has given up the watchbugzilla acl on system-config-printer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 10:34:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:31 +0000 Subject: [pkgdb] system-config-printer: jpopelka has requested watchbugzilla Message-ID: <20090703103431.71ED610F87B@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on system-config-printer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 10:34:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:36 +0000 Subject: [pkgdb] system-config-printer: jpopelka has requested watchbugzilla Message-ID: <20090703103436.59BD110F896@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on system-config-printer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 10:34:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:46 +0000 Subject: [pkgdb] cups: jpopelka has given up watchbugzilla Message-ID: <20090703103447.25B6810F896@bastion2.fedora.phx.redhat.com> jpopelka has given up the watchbugzilla acl on cups (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From pkgdb at fedoraproject.org Fri Jul 3 10:34:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:34:50 +0000 Subject: [pkgdb] cups: jpopelka has given up watchbugzilla Message-ID: <20090703103450.E261610F8A2@bastion2.fedora.phx.redhat.com> jpopelka has given up the watchbugzilla acl on cups (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From pkgdb at fedoraproject.org Fri Jul 3 10:35:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:35:01 +0000 Subject: [pkgdb] cups: jpopelka has requested watchbugzilla Message-ID: <20090703103501.9511510F896@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on cups (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From pkgdb at fedoraproject.org Fri Jul 3 10:35:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 10:35:06 +0000 Subject: [pkgdb] cups: jpopelka has requested watchbugzilla Message-ID: <20090703103509.35E4B10F89C@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on cups (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From kushal at fedoraproject.org Fri Jul 3 10:37:44 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Fri, 3 Jul 2009 10:37:44 +0000 (UTC) Subject: rpms/lekhonee/F-11 lekhonee.spec,1.5,1.6 sources,1.6,1.7 Message-ID: <20090703103744.4A0E611C041A@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25804 Modified Files: lekhonee.spec sources Log Message: New release of lekhonee Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/lekhonee.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lekhonee.spec 1 Jul 2009 06:46:45 -0000 1.5 +++ lekhonee.spec 3 Jul 2009 10:37:13 -0000 1.6 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.5 -Release: 3%{?dist} +Version: 0.6 +Release: 1%{?dist} Summary: A blog client Group: Applications/Internet @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Fri Jul 03 2009 Kushal Das 0.6-1 +- New release + * Tue Jun 30 2009 Kushal Das 0.5-3 - Fixing requires issue Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 06:46:45 -0000 1.6 +++ sources 3 Jul 2009 10:37:14 -0000 1.7 @@ -1 +1 @@ -07477825df4f50d450f123b90394bbdf lekhonee-0.5.tar.gz +9b2f18145670f0956a1190416438bd2d lekhonee-0.6.tar.gz From than at fedoraproject.org Fri Jul 3 10:41:35 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 10:41:35 +0000 (UTC) Subject: rpms/doxygen/devel .cvsignore, 1.28, 1.29 doxygen.spec, 1.64, 1.65 sources, 1.29, 1.30 Message-ID: <20090703104135.BEAAF11C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/doxygen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26575 Modified Files: .cvsignore doxygen.spec sources Log Message: 1.5.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/doxygen/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 6 Feb 2009 14:12:01 -0000 1.28 +++ .cvsignore 3 Jul 2009 10:41:35 -0000 1.29 @@ -15,3 +15,4 @@ doxygen-1.5.5.src.tar.gz doxygen-1.5.6.src.tar.gz doxygen-1.5.7.1.src.tar.gz doxygen-1.5.8.src.tar.gz +doxygen-1.5.9.src.tar.gz Index: doxygen.spec =================================================================== RCS file: /cvs/extras/rpms/doxygen/devel/doxygen.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- doxygen.spec 24 Feb 2009 12:35:31 -0000 1.64 +++ doxygen.spec 3 Jul 2009 10:41:35 -0000 1.65 @@ -5,8 +5,8 @@ Summary: A documentation system for C/C++. Name: doxygen -Version: 1.5.8 -Release: 2%{?dist} +Version: 1.5.9 +Release: 1%{?dist} Epoch: 1 Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz Patch1: doxygen-1.5.8-config.patch @@ -49,6 +49,7 @@ are used by doxygen. %prep %setup -q + %patch1 -p1 -b .config %patch2 -p1 -b .qt4 %patch3 -p1 -b .system-png @@ -102,6 +103,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 03 2009 Than Ngo - 1.5.9-1 +- 1.5.9 + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.5.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/doxygen/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 6 Feb 2009 14:12:01 -0000 1.29 +++ sources 3 Jul 2009 10:41:35 -0000 1.30 @@ -1 +1 @@ -7438b7ff875d522f02860eea39261953 doxygen-1.5.8.src.tar.gz +33c5598fa6d24cbc55849eaf89652557 doxygen-1.5.9.src.tar.gz From rdieter at fedoraproject.org Fri Jul 3 10:48:50 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 3 Jul 2009 10:48:50 +0000 (UTC) Subject: rpms/phonon/devel phonon.spec,1.42,1.43 Message-ID: <20090703104850.95BB711C041A@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/phonon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27864 Modified Files: phonon.spec Log Message: be consistent (in not using %%_kde4_iconsdir) Index: phonon.spec =================================================================== RCS file: /cvs/pkgs/rpms/phonon/devel/phonon.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- phonon.spec 18 Jun 2009 17:51:24 -0000 1.42 +++ phonon.spec 3 Jul 2009 10:48:20 -0000 1.43 @@ -78,15 +78,15 @@ rm -rf %{buildroot} %post backend-xine -touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null ||: +touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||: %posttrans backend-xine -gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null ||: +gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||: %postun backend-xine if [ $1 -eq 0 ] ; then - touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null ||: - gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null ||: + touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||: + gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||: fi From rdieter at fedoraproject.org Fri Jul 3 10:53:56 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 3 Jul 2009 10:53:56 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.481,1.482 Message-ID: <20090703105356.B03B511C041A@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29460 Modified Files: kdelibs.spec Log Message: * Fri Jul 03 2009 Rex Dieter - 4.2.95-2 - up min versions, phonon, strigi, soprano (#509511) Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.481 retrieving revision 1.482 diff -u -p -r1.481 -r1.482 --- kdelibs.spec 25 Jun 2009 13:11:05 -0000 1.481 +++ kdelibs.spec 3 Jul 2009 10:53:26 -0000 1.482 @@ -1,6 +1,11 @@ + +%define phonon_ver 4.3.0 +%define soprano_ver 2.2.69 +%define strigi_ver 0.6.5 + Summary: K Desktop Environment 4 - Libraries Version: 4.2.95 -Release: 1%{?dist} +Release: 2%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -45,9 +50,9 @@ Requires: kdelibs-common %if 0%{?fedora} >= 9 Requires: hunspell %endif -Requires: phonon%{?_isa} >= 4.3.0 -Requires: soprano%{?_isa} >= 2.2 -Requires: strigi-libs%{?_isa} >= 0.6.3 +Requires: phonon%{?_isa} >= %{phonon_ver} +Requires: soprano%{?_isa} >= %{soprano_ver} +Requires: strigi-libs%{?_isa} >= %{strigi_ver} Source1: kde4.sh Source2: kde4.csh @@ -118,10 +123,10 @@ BuildRequires: libxslt-devel libxml2-dev BuildRequires: OpenEXR-devel BuildRequires: openssl-devel BuildRequires: pcre-devel -BuildRequires: phonon-devel >= 4.3.0 +BuildRequires: phonon-devel >= %{phonon_ver} BuildRequires: shared-mime-info -BuildRequires: soprano-devel >= 2.2 -BuildRequires: strigi-devel >= 0.6.3 +BuildRequires: soprano-devel >= %{soprano_ver} +BuildRequires: strigi-devel >= %{strigi_ver} BuildRequires: zlib-devel BuildRequires: libutempter-devel # extra X deps (seemingly needed and/or checked-for by most kde4 buildscripts) @@ -398,6 +403,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 03 2009 Rex Dieter - 4.2.95-2 +- up min versions, phonon, strigi, soprano (#509511) + * Thu Jun 25 2009 Than Ngo - 4.2.95-1 - 4.3 rc1 From than at fedoraproject.org Fri Jul 3 10:55:16 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 10:55:16 +0000 (UTC) Subject: rpms/doxygen/F-11 doxygen.spec,1.64,1.65 sources,1.29,1.30 Message-ID: <20090703105516.A8E0F11C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/doxygen/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29749 Modified Files: doxygen.spec sources Log Message: 1.5.9 Index: doxygen.spec =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-11/doxygen.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- doxygen.spec 24 Feb 2009 12:35:31 -0000 1.64 +++ doxygen.spec 3 Jul 2009 10:54:46 -0000 1.65 @@ -5,8 +5,8 @@ Summary: A documentation system for C/C++. Name: doxygen -Version: 1.5.8 -Release: 2%{?dist} +Version: 1.5.9 +Release: 1%{?dist} Epoch: 1 Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz Patch1: doxygen-1.5.8-config.patch @@ -49,6 +49,7 @@ are used by doxygen. %prep %setup -q + %patch1 -p1 -b .config %patch2 -p1 -b .qt4 %patch3 -p1 -b .system-png @@ -102,6 +103,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 03 2009 Than Ngo - 1.5.9-1 +- 1.5.9 + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.5.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-11/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 6 Feb 2009 14:12:01 -0000 1.29 +++ sources 3 Jul 2009 10:54:46 -0000 1.30 @@ -1 +1 @@ -7438b7ff875d522f02860eea39261953 doxygen-1.5.8.src.tar.gz +33c5598fa6d24cbc55849eaf89652557 doxygen-1.5.9.src.tar.gz From giallu at fedoraproject.org Fri Jul 3 10:55:41 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 3 Jul 2009 10:55:41 +0000 (UTC) Subject: rpms/mantis/F-10 mantis.spec,1.23,1.24 Message-ID: <20090703105541.9ABFA11C041A@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/mantis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29340 Modified Files: mantis.spec Log Message: bump release Index: mantis.spec =================================================================== RCS file: /cvs/extras/rpms/mantis/F-10/mantis.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- mantis.spec 3 Jul 2009 10:20:46 -0000 1.23 +++ mantis.spec 3 Jul 2009 10:55:11 -0000 1.24 @@ -6,7 +6,7 @@ Summary: Web-based bugtracking system Name: mantis Version: 1.1.8 -Release: 1%{?dist} +Release: 1%{?dist}.1 License: GPLv2+ Group: Applications/Internet URL: http://www.mantisbt.org/ From than at fedoraproject.org Fri Jul 3 10:59:38 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 10:59:38 +0000 (UTC) Subject: rpms/doxygen/F-10 doxygen-1.5.8-config.patch, NONE, 1.1 doxygen-1.5.8-qt4.patch, NONE, 1.1 doxygen-1.5.5-system-png.patch, 1.1, 1.2 doxygen.spec, 1.57, 1.58 sources, 1.28, 1.29 doxygen-1.2.18-libdir.patch, 1.3, NONE doxygen-1.2.18-libdir64.patch, 1.1, NONE doxygen-1.5.6-config.patch, 1.1, NONE Message-ID: <20090703105938.978DA11C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/doxygen/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30641 Modified Files: doxygen-1.5.5-system-png.patch doxygen.spec sources Added Files: doxygen-1.5.8-config.patch doxygen-1.5.8-qt4.patch Removed Files: doxygen-1.2.18-libdir.patch doxygen-1.2.18-libdir64.patch doxygen-1.5.6-config.patch Log Message: 1.5.9 doxygen-1.5.8-config.patch: --- NEW FILE doxygen-1.5.8-config.patch --- diff -up doxygen-1.5.8/configure.orig doxygen-1.5.8/configure --- doxygen-1.5.8/configure.orig 2008-12-26 20:22:39.000000000 +0100 +++ doxygen-1.5.8/configure 2009-02-06 11:00:44.000000000 +0100 @@ -485,6 +485,7 @@ INSTTOOL = $f_insttool DOXYDOCS = .. DOCDIR = $f_docdir QTDIR = $QTDIR +MAN1DIR = share/man/man1 EOF if test "$f_dot" != NO; then diff -up doxygen-1.5.8/addon/doxywizard/Makefile.in.orig doxygen-1.5.8/addon/doxywizard/Makefile.in --- doxygen-1.5.8/addon/doxywizard/Makefile.in.orig 2009-02-06 14:55:30.000000000 +0100 +++ doxygen-1.5.8/addon/doxywizard/Makefile.in 2009-02-06 14:56:08.000000000 +0100 @@ -29,11 +29,11 @@ distclean: Makefile.doxywizard $(RM) Makefile.doxywizard install: - $(INSTTOOL) -d $(INSTALL)/bin - $(INSTTOOL) -m 755 ../../bin/doxywizard $(INSTALL)/bin - $(INSTTOOL) -d $(INSTALL)/$(MAN1DIR) + $(INSTTOOL) -d $(DESTDIR)$(INSTALL)/bin + $(INSTTOOL) -m 755 ../../bin/doxywizard $(DESTDIR)$(INSTALL)/bin + $(INSTTOOL) -d $(DESTDIR)$(INSTALL)/$(MAN1DIR) cat ../../doc/doxywizard.1 | sed -e "s/DATE/$(DATE)/g" -e "s/VERSION/$(VERSION)/g" > doxywizard.1 - $(INSTTOOL) -m 644 doxywizard.1 $(INSTALL)/$(MAN1DIR)/doxywizard.1 + $(INSTTOOL) -m 644 doxywizard.1 $(DESTDIR)$(INSTALL)/$(MAN1DIR)/doxywizard.1 rm doxywizard.1 FORCE: diff -up doxygen-1.5.8/Makefile.in.orig doxygen-1.5.8/Makefile.in --- doxygen-1.5.8/Makefile.in.orig 2009-02-06 15:00:41.000000000 +0100 +++ doxygen-1.5.8/Makefile.in 2009-02-06 15:00:54.000000000 +0100 @@ -44,8 +44,6 @@ distclean: clean DATE=$(shell date "+%B %Y") -MAN1DIR = man/man1 - install: doxywizard_install $(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin $(INSTTOOL) -m 755 bin/doxygen $(DESTDIR)/$(INSTALL)/bin diff -up doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf.orig doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf --- doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf.orig 2009-02-06 17:08:45.000000000 +0100 +++ doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf 2009-02-06 17:12:16.000000000 +0100 @@ -11,7 +11,7 @@ TMAKE_CC = gcc TMAKE_CFLAGS = -pipe TMAKE_CFLAGS_WARN_ON = -Wall -W -fno-exceptions TMAKE_CFLAGS_WARN_OFF = -TMAKE_CFLAGS_RELEASE = -O2 +TMAKE_CFLAGS_RELEASE = $(RPM_OPT_FLAGS) TMAKE_CFLAGS_DEBUG = -g TMAKE_CFLAGS_SHLIB = -fPIC TMAKE_CFLAGS_YACC = -Wno-unused -Wno-parentheses @@ -27,12 +27,12 @@ TMAKE_CXXFLAGS_YACC = $$TMAKE_CFLAGS_YAC TMAKE_INCDIR = TMAKE_LIBDIR = -TMAKE_INCDIR_X11 = /usr/X11R6/include -TMAKE_LIBDIR_X11 = /usr/X11R6/lib -TMAKE_INCDIR_QT = $(QTDIR)/include -TMAKE_LIBDIR_QT = $(QTDIR)/lib -TMAKE_INCDIR_OPENGL = /usr/X11R6/include -TMAKE_LIBDIR_OPENGL = /usr/X11R6/lib +TMAKE_INCDIR_X11 = +TMAKE_LIBDIR_X11 = +TMAKE_INCDIR_QT = +TMAKE_LIBDIR_QT = +TMAKE_INCDIR_OPENGL = +TMAKE_LIBDIR_OPENGL = TMAKE_LINK = g++ TMAKE_LINK_SHLIB = g++ diff -up doxygen-1.5.8/tmake/lib/macosx-uni-c++/tmake.conf.orig doxygen-1.5.8/tmake/lib/macosx-uni-c++/tmake.conf doxygen-1.5.8-qt4.patch: --- NEW FILE doxygen-1.5.8-qt4.patch --- diff -up doxygen-1.5.8/configure.qt4 doxygen-1.5.8/configure --- doxygen-1.5.8/configure.qt4 2008-12-26 20:22:39.000000000 +0100 +++ doxygen-1.5.8/configure 2009-02-06 11:00:44.000000000 +0100 @@ -268,7 +268,7 @@ if test "$f_wizard" = YES; then if test -z "$QTDIR"; then echo " QTDIR environment variable not set!" echo -n " Checking for Qt..." - for d in /usr/{lib,share,qt}/{qt-4,qt4,qt,qt*,4}; do + for d in /usr/{lib64,lib,share,qt}/{qt-4,qt4,qt,qt*,4}; do if test -x "$d/bin/qmake"; then QTDIR=$d fi doxygen-1.5.5-system-png.patch: Index: doxygen-1.5.5-system-png.patch =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-10/doxygen-1.5.5-system-png.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- doxygen-1.5.5-system-png.patch 20 Feb 2008 13:59:11 -0000 1.1 +++ doxygen-1.5.5-system-png.patch 3 Jul 2009 10:59:38 -0000 1.2 @@ -1,7 +1,36 @@ -diff -up doxygen-1.5.5/Makefile.in.me doxygen-1.5.5/Makefile.in ---- doxygen-1.5.5/Makefile.in.me 2008-02-20 14:36:50.000000000 +0100 -+++ doxygen-1.5.5/Makefile.in 2008-02-20 14:37:12.000000000 +0100 -@@ -7,7 +7,6 @@ clean: FORCE +diff -up doxygen-1.5.8/configure.system-png doxygen-1.5.8/configure +--- doxygen-1.5.8/configure.system-png 2009-02-06 17:17:34.000000000 +0100 ++++ doxygen-1.5.8/configure 2009-02-06 17:17:34.000000000 +0100 +@@ -576,7 +576,7 @@ TMAKE_CXXFLAGS += -DENGLISH_ONLY + EOF + fi + +-f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" ++f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" + + for i in $f_inmakefiles ; do + SRC=$i +@@ -593,7 +593,6 @@ EOF + echo "" >> $DST + echo "all: src/version.cpp " >> $DST + echo " \$(MAKE) -C qtools" >> $DST +- echo " \$(MAKE) -C libpng" >> $DST + echo " \$(MAKE) -C libmd5" >> $DST + echo " \$(MAKE) -C src" >> $DST + if test $f_wizard = YES; then +@@ -617,7 +616,7 @@ EOF + echo " Created $DST from $SRC..." + done + +-f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" ++f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" + + for i in $f_inprofiles ; do + SRC=$i +diff -up doxygen-1.5.8/Makefile.in.system-png doxygen-1.5.8/Makefile.in +--- doxygen-1.5.8/Makefile.in.system-png 2009-02-06 17:17:34.000000000 +0100 ++++ doxygen-1.5.8/Makefile.in 2009-02-06 17:17:34.000000000 +0100 +@@ -9,7 +9,6 @@ clean: FORCE cd doc ; $(MAKE) clean cd qtools ; $(MAKE) clean cd src ; $(MAKE) clean @@ -9,7 +38,7 @@ diff -up doxygen-1.5.5/Makefile.in.me do cd libmd5 ; $(MAKE) clean cd addon/doxywizard ; $(MAKE) clean cd addon/doxmlparser/src ; $(MAKE) clean -@@ -18,7 +17,6 @@ clean: FORCE +@@ -20,7 +19,6 @@ clean: FORCE distclean: clean cd src ; $(MAKE) distclean @@ -17,7 +46,7 @@ diff -up doxygen-1.5.5/Makefile.in.me do cd libmd5 ; $(MAKE) distclean cd addon/doxywizard ; $(MAKE) distclean cd addon/doxmlparser/src ; $(MAKE) distclean -@@ -32,11 +30,10 @@ distclean: clean +@@ -34,11 +32,10 @@ distclean: clean -rm -f objects/*.o -rm -f src/Makefile.doxygen src/Makefile.libdoxygen -rm -f src/Makefile.doxytag src/Makefile.libdoxycfg @@ -29,8 +58,8 @@ diff -up doxygen-1.5.5/Makefile.in.me do + -rm -f src/doxygen.pro src/libdoxygen.pro src/doxytag.pro qtools/qtools.pro src/libdoxycfg.pro libmd5/libmd5.pro -rm -f src/version.cpp -rm -r addon/doxywizard/Makefile - -rm -f addon/doxywizard/Makefile.doxywizard -@@ -83,7 +80,7 @@ docs: FORCE + -rm -f addon/doxywizard/doxywizard.pro +@@ -75,7 +72,7 @@ docs: FORCE pdf: docs cd latex ; $(MAKE) @@ -39,61 +68,9 @@ diff -up doxygen-1.5.5/Makefile.in.me do qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \ Makefile.win_make.in INSTALL make.bat LANGUAGE.HOWTO LICENSE PLATFORMS \ VERSION packages winbuild -diff -up doxygen-1.5.5/configure.me doxygen-1.5.5/configure ---- doxygen-1.5.5/configure.me 2008-02-20 14:35:56.000000000 +0100 -+++ doxygen-1.5.5/configure 2008-02-20 14:36:42.000000000 +0100 -@@ -540,7 +540,7 @@ TMAKE_CXXFLAGS += -DENGLISH_ONLY - EOF - fi - --f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" -+f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" - - for i in $f_inmakefiles ; do - SRC=$i -@@ -557,7 +557,6 @@ EOF - echo "" >> $DST - echo "all: src/version.cpp " >> $DST - echo " \$(MAKE) -C qtools" >> $DST -- echo " \$(MAKE) -C libpng" >> $DST - echo " \$(MAKE) -C libmd5" >> $DST - echo " \$(MAKE) -C src" >> $DST - if test $f_wizard = YES; then -@@ -577,7 +576,7 @@ EOF - echo " Created $DST from $SRC..." - done - --f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" -+f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" - - for i in $f_inprofiles ; do - SRC=$i -diff -up doxygen-1.5.5/src/pngenc.cpp.me doxygen-1.5.5/src/pngenc.cpp ---- doxygen-1.5.5/src/pngenc.cpp.me 2008-02-20 14:38:46.000000000 +0100 -+++ doxygen-1.5.5/src/pngenc.cpp 2008-02-20 14:39:11.000000000 +0100 -@@ -25,7 +25,7 @@ - #endif - - #define ALL_STATIC --#include <../libpng/png.h> -+#include - #include - #include - #include -diff -up doxygen-1.5.5/src/libdoxygen.pro.in.me doxygen-1.5.5/src/libdoxygen.pro.in ---- doxygen-1.5.5/src/libdoxygen.pro.in.me 2008-02-20 14:38:08.000000000 +0100 -+++ doxygen-1.5.5/src/libdoxygen.pro.in 2008-02-20 14:38:29.000000000 +0100 -@@ -224,7 +224,6 @@ win32-msvc:TMAKE_CXXFLAGS += -Zm200 - win32-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti - linux-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti - INCLUDEPATH += ../qtools --INCLUDEPATH += ../libpng - INCLUDEPATH += ../libmd5 - win32:INCLUDEPATH += . - win32-g++:INCLUDEPATH = ../qtools /usr/include/libpng12 ../libmd5 -diff -up doxygen-1.5.5/src/doxygen.pro.in.me doxygen-1.5.5/src/doxygen.pro.in ---- doxygen-1.5.5/src/doxygen.pro.in.me 2008-02-20 14:37:34.000000000 +0100 -+++ doxygen-1.5.5/src/doxygen.pro.in 2008-02-20 14:37:54.000000000 +0100 +diff -up doxygen-1.5.8/src/doxygen.pro.in.system-png doxygen-1.5.8/src/doxygen.pro.in +--- doxygen-1.5.8/src/doxygen.pro.in.system-png 2008-01-01 11:40:58.000000000 +0100 ++++ doxygen-1.5.8/src/doxygen.pro.in 2009-02-06 17:17:34.000000000 +0100 @@ -28,7 +28,7 @@ win32-borland:TMAKE_LFLAGS += -L..\lib - win32:TMAKE_CXXFLAGS += -DQT_NODLL win32-g++:LIBS = -L../lib -ldoxygen -ldoxycfg -lqtools -lpng -lmd5 -liconv @@ -103,3 +80,29 @@ diff -up doxygen-1.5.5/src/doxygen.pro.i #win32-g++:INCLUDEPATH -= ../libpng DESTDIR = ../bin TARGET = doxygen +diff -up doxygen-1.5.8/src/libdoxygen.pro.in.system-png doxygen-1.5.8/src/libdoxygen.pro.in +--- doxygen-1.5.8/src/libdoxygen.pro.in.system-png 2008-10-19 15:50:34.000000000 +0200 ++++ doxygen-1.5.8/src/libdoxygen.pro.in 2009-02-06 18:15:08.000000000 +0100 +@@ -233,9 +233,8 @@ SOURCES = ce_lex.cpp \ + win32:TMAKE_CXXFLAGS += -DQT_NODLL + win32-msvc:TMAKE_CXXFLAGS += -Zm200 + win32-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti +-linux-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti ++linux-g++:TMAKE_CXXFLAGS += + INCLUDEPATH += ../qtools +-INCLUDEPATH += ../libpng + INCLUDEPATH += ../libmd5 + win32:INCLUDEPATH += . + win32-g++:INCLUDEPATH = ../qtools /usr/include/libpng12 ../libmd5 +diff -up doxygen-1.5.8/src/pngenc.cpp.system-png doxygen-1.5.8/src/pngenc.cpp +--- doxygen-1.5.8/src/pngenc.cpp.system-png 2008-01-01 11:41:08.000000000 +0100 ++++ doxygen-1.5.8/src/pngenc.cpp 2009-02-06 17:17:34.000000000 +0100 +@@ -25,7 +25,7 @@ + #endif + + #define ALL_STATIC +-#include <../libpng/png.h> ++#include + #include + #include + #include Index: doxygen.spec =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-10/doxygen.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- doxygen.spec 6 Oct 2008 12:17:33 -0000 1.57 +++ doxygen.spec 3 Jul 2009 10:59:38 -0000 1.58 @@ -1,20 +1,17 @@ %define _default_patch_fuzz 2 -%define qt_version 3.3.8 +%define qt_version 4.4 %{!?with_qt:%define with_qt 1} Summary: A documentation system for C/C++. Name: doxygen -Version: 1.5.7.1 +Version: 1.5.9 Release: 1%{?dist} Epoch: 1 Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz - -Patch0: doxygen-1.5.6-config.patch -Patch2: doxygen-1.2.18-libdir.patch -Patch3: doxygen-1.2.18-libdir64.patch -Patch4: doxygen-1.5.5-system-png.patch - +Patch1: doxygen-1.5.8-config.patch +Patch2: doxygen-1.5.8-qt4.patch +Patch3: doxygen-1.5.5-system-png.patch Group: Development/Tools # No version is specified. License: GPL+ @@ -43,7 +40,7 @@ source files. Summary: A GUI for creating and editing configuration files. Group: User Interface/X Requires: %{name} = %{epoch}:%{version} -BuildRequires: qt3-devel => %{qt_version} +BuildRequires: qt-devel => %{qt_version} %description doxywizard Doxywizard is a GUI for creating and editing configuration files that @@ -52,28 +49,27 @@ are used by doxygen. %prep %setup -q -%patch0 -p1 -b .config -%if "%{_lib}" != "lib" -%patch3 -p1 -b .libdir -%else -%patch2 -p1 -b .libdir -%endif -%patch4 -p1 -b .system-png +%patch1 -p1 -b .config +%patch2 -p1 -b .qt4 +%patch3 -p1 -b .system-png %build -%if %{with_qt} -QTDIR="" && . /etc/profile.d/qt.sh -%endif +unset QTDIR ./configure \ --prefix %{_prefix} \ --shared \ - --release \ %if %{with_qt} --with-doxywizard \ %endif - --install %{_bindir}/install + --release + +# workaround for "Error: operand out of range", language.cpp needs to be splitted +%ifarch ppc64 +make -C src Makefile.libdoxygen +sed -i -e "s|-o ../objects/language.o|-fno-merge-constants -fsection-anchors -o ../objects/language.o|" src/Makefile.libdoxygen +%endif make %{?_smp_mflags} all make docs @@ -81,7 +77,7 @@ make docs %install rm -rf %{buildroot} -make install INSTALL=%{buildroot}%{_prefix} +make install DESTDIR=%{buildroot} %if !%{with_qt} rm -rf %{buildroot}%{_mandir}/man1/doxywizard* @@ -107,6 +103,15 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 03 2009 Than Ngo - 1.5.9-1 +- 1.5.9 + +* Tue Feb 24 2009 Fedora Release Engineering - 1:1.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 05 2009 Than Ngo 1.5.8-1 +- 1.5.8 + * Mon Oct 06 2008 Than Ngo 1.5.7.1-1 - 1.5.7.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-10/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 6 Oct 2008 10:23:33 -0000 1.28 +++ sources 3 Jul 2009 10:59:38 -0000 1.29 @@ -1 +1 @@ -bc35dfd52bdae0247b862e67e0cbe7d7 doxygen-1.5.7.1.src.tar.gz +33c5598fa6d24cbc55849eaf89652557 doxygen-1.5.9.src.tar.gz --- doxygen-1.2.18-libdir.patch DELETED --- --- doxygen-1.2.18-libdir64.patch DELETED --- --- doxygen-1.5.6-config.patch DELETED --- From kushal at fedoraproject.org Fri Jul 3 11:03:11 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Fri, 3 Jul 2009 11:03:11 +0000 (UTC) Subject: rpms/lekhonee/F-10 lekhonee.spec,1.2,1.3 sources,1.3,1.4 Message-ID: <20090703110312.132FE11C041A@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31577 Modified Files: lekhonee.spec sources Log Message: New release of lekhonee Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-10/lekhonee.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lekhonee.spec 13 May 2009 13:00:48 -0000 1.2 +++ lekhonee.spec 3 Jul 2009 11:03:11 -0000 1.3 @@ -1,11 +1,11 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.3.1 +Version: 0.6 Release: 1%{?dist} Summary: A blog client -Group: Applications/Publishing +Group: Applications/Internet License: GPLv2 URL: http://fedorahosted.org/lekhonee Source0: https://fedorahosted.org/releases/l/e/lekhonee/%{name}-%{version}.tar.gz @@ -14,10 +14,29 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel, python-setuptools, PyQt4-devel, desktop-file-utils, PyKDE4-devel Requires: PyQt4, mx, PyKDE4 +Requires: %{name}-lib = %{version}-%{release} %description A desktop wordpress client +%package lib +Summary: The backend library for wordpress desktop client +Group: Development/Languages + +%description lib +The backend library for wordpress desktop client + +%package gnome +Summary: Wordpress desktop client frontend for Gnome +Group: Applications/Internet +Requires: gnome-python2-gtkspell pygtksourceview pywebkitgtk %{name}-lib +Requires: %{name}-lib = %{version}-%{release} + +%description gnome +Wordpress desktop client frontend for Gnome + + + %prep %setup -q @@ -33,20 +52,64 @@ desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ %{buildroot}/%{_datadir}/applications/lekhonee.desktop - +desktop-file-install \ +--dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ +%{buildroot}/%{_datadir}/applications/lekhonee-gnome.desktop + + +rm -rf %{buildroot}/%{_sysconfdir}/chotha.data + %clean rm -rf $RPM_BUILD_ROOT +%files lib +%defattr(-,root,root,-) +%{python_sitelib}/lekhoneeblog/* -%files +%files gnome %defattr(-,root,root,-) -%doc docs/README docs/ChangeLog docs/COPYING -%{python_sitelib}/* -%{_bindir}/* -%{_datadir}/* -%config(noreplace) %{_sysconfdir}/chotha.data +%{_bindir}/lekhonee-gnome +%{_datadir}/chotha/gnome-frontend/* +%{_datadir}/pixmaps/lekhonee-gnome.png +%{_datadir}/applications/lekhonee-gnome*.desktop + +%files +%doc docs/README docs/ChangeLog docs/COPYING +%{_bindir}/lekhonee +%{_datadir}/pixmaps/lekhonee.png +%{_datadir}/pixmaps/chotha/* +%{_datadir}/applications/lekhonee.desktop +%{python_sitelib}/Chotha/* +%{python_sitelib}/*.egg-info %changelog +* Fri Jul 03 2009 Kushal Das 0.6-1 +- New release + +* Tue Jun 30 2009 Kushal Das 0.5-3 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-2 +- Fixing requires issue + +* Tue Jun 30 2009 Kushal Das 0.5-1 +- New release + +* Wed Jun 17 2009 Kushal Das 0.4-5 +- Fixed more bugs + +* Wed Jun 17 2009 Kushal Das 0.4-4 +- Fixed more bugs and a new release of the source + +* Wed Jun 17 2009 Kushal Das 0.4-3 +- Fixed more bugs + +* Wed Jun 17 2009 Kushal Das 0.4-2 +- Fixed more bugs + +* Mon Jun 15 2009 Kushal Das 0.4-1 +- testing dividing into subpackages + * Wed May 13 2009 Kushal Das 0.3.1-1 - New release of the source Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 May 2009 10:16:34 -0000 1.3 +++ sources 3 Jul 2009 11:03:11 -0000 1.4 @@ -1 +1 @@ -d94871dc86e3fbd83c7b456ed5eae626 lekhonee-0.3.1.tar.gz +9b2f18145670f0956a1190416438bd2d lekhonee-0.6.tar.gz From than at fedoraproject.org Fri Jul 3 11:03:41 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 11:03:41 +0000 (UTC) Subject: rpms/doxygen/F-9 doxygen-1.5.5-system-png.patch, 1.1, 1.2 doxygen.spec, 1.55, 1.56 sources, 1.28, 1.29 doxygen-1.2.18-libdir.patch, 1.3, NONE doxygen-1.2.18-libdir64.patch, 1.1, NONE doxygen-1.5.6-config.patch, 1.1, NONE Message-ID: <20090703110341.5600F11C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/doxygen/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727 Modified Files: doxygen-1.5.5-system-png.patch doxygen.spec sources Removed Files: doxygen-1.2.18-libdir.patch doxygen-1.2.18-libdir64.patch doxygen-1.5.6-config.patch Log Message: 1.5.9 doxygen-1.5.5-system-png.patch: Index: doxygen-1.5.5-system-png.patch =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-9/doxygen-1.5.5-system-png.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- doxygen-1.5.5-system-png.patch 20 Feb 2008 13:59:11 -0000 1.1 +++ doxygen-1.5.5-system-png.patch 3 Jul 2009 11:03:40 -0000 1.2 @@ -1,7 +1,36 @@ -diff -up doxygen-1.5.5/Makefile.in.me doxygen-1.5.5/Makefile.in ---- doxygen-1.5.5/Makefile.in.me 2008-02-20 14:36:50.000000000 +0100 -+++ doxygen-1.5.5/Makefile.in 2008-02-20 14:37:12.000000000 +0100 -@@ -7,7 +7,6 @@ clean: FORCE +diff -up doxygen-1.5.8/configure.system-png doxygen-1.5.8/configure +--- doxygen-1.5.8/configure.system-png 2009-02-06 17:17:34.000000000 +0100 ++++ doxygen-1.5.8/configure 2009-02-06 17:17:34.000000000 +0100 +@@ -576,7 +576,7 @@ TMAKE_CXXFLAGS += -DENGLISH_ONLY + EOF + fi + +-f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" ++f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" + + for i in $f_inmakefiles ; do + SRC=$i +@@ -593,7 +593,6 @@ EOF + echo "" >> $DST + echo "all: src/version.cpp " >> $DST + echo " \$(MAKE) -C qtools" >> $DST +- echo " \$(MAKE) -C libpng" >> $DST + echo " \$(MAKE) -C libmd5" >> $DST + echo " \$(MAKE) -C src" >> $DST + if test $f_wizard = YES; then +@@ -617,7 +616,7 @@ EOF + echo " Created $DST from $SRC..." + done + +-f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" ++f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" + + for i in $f_inprofiles ; do + SRC=$i +diff -up doxygen-1.5.8/Makefile.in.system-png doxygen-1.5.8/Makefile.in +--- doxygen-1.5.8/Makefile.in.system-png 2009-02-06 17:17:34.000000000 +0100 ++++ doxygen-1.5.8/Makefile.in 2009-02-06 17:17:34.000000000 +0100 +@@ -9,7 +9,6 @@ clean: FORCE cd doc ; $(MAKE) clean cd qtools ; $(MAKE) clean cd src ; $(MAKE) clean @@ -9,7 +38,7 @@ diff -up doxygen-1.5.5/Makefile.in.me do cd libmd5 ; $(MAKE) clean cd addon/doxywizard ; $(MAKE) clean cd addon/doxmlparser/src ; $(MAKE) clean -@@ -18,7 +17,6 @@ clean: FORCE +@@ -20,7 +19,6 @@ clean: FORCE distclean: clean cd src ; $(MAKE) distclean @@ -17,7 +46,7 @@ diff -up doxygen-1.5.5/Makefile.in.me do cd libmd5 ; $(MAKE) distclean cd addon/doxywizard ; $(MAKE) distclean cd addon/doxmlparser/src ; $(MAKE) distclean -@@ -32,11 +30,10 @@ distclean: clean +@@ -34,11 +32,10 @@ distclean: clean -rm -f objects/*.o -rm -f src/Makefile.doxygen src/Makefile.libdoxygen -rm -f src/Makefile.doxytag src/Makefile.libdoxycfg @@ -29,8 +58,8 @@ diff -up doxygen-1.5.5/Makefile.in.me do + -rm -f src/doxygen.pro src/libdoxygen.pro src/doxytag.pro qtools/qtools.pro src/libdoxycfg.pro libmd5/libmd5.pro -rm -f src/version.cpp -rm -r addon/doxywizard/Makefile - -rm -f addon/doxywizard/Makefile.doxywizard -@@ -83,7 +80,7 @@ docs: FORCE + -rm -f addon/doxywizard/doxywizard.pro +@@ -75,7 +72,7 @@ docs: FORCE pdf: docs cd latex ; $(MAKE) @@ -39,61 +68,9 @@ diff -up doxygen-1.5.5/Makefile.in.me do qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \ Makefile.win_make.in INSTALL make.bat LANGUAGE.HOWTO LICENSE PLATFORMS \ VERSION packages winbuild -diff -up doxygen-1.5.5/configure.me doxygen-1.5.5/configure ---- doxygen-1.5.5/configure.me 2008-02-20 14:35:56.000000000 +0100 -+++ doxygen-1.5.5/configure 2008-02-20 14:36:42.000000000 +0100 -@@ -540,7 +540,7 @@ TMAKE_CXXFLAGS += -DENGLISH_ONLY - EOF - fi - --f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" -+f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" - - for i in $f_inmakefiles ; do - SRC=$i -@@ -557,7 +557,6 @@ EOF - echo "" >> $DST - echo "all: src/version.cpp " >> $DST - echo " \$(MAKE) -C qtools" >> $DST -- echo " \$(MAKE) -C libpng" >> $DST - echo " \$(MAKE) -C libmd5" >> $DST - echo " \$(MAKE) -C src" >> $DST - if test $f_wizard = YES; then -@@ -577,7 +576,7 @@ EOF - echo " Created $DST from $SRC..." - done - --f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" -+f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" - - for i in $f_inprofiles ; do - SRC=$i -diff -up doxygen-1.5.5/src/pngenc.cpp.me doxygen-1.5.5/src/pngenc.cpp ---- doxygen-1.5.5/src/pngenc.cpp.me 2008-02-20 14:38:46.000000000 +0100 -+++ doxygen-1.5.5/src/pngenc.cpp 2008-02-20 14:39:11.000000000 +0100 -@@ -25,7 +25,7 @@ - #endif - - #define ALL_STATIC --#include <../libpng/png.h> -+#include - #include - #include - #include -diff -up doxygen-1.5.5/src/libdoxygen.pro.in.me doxygen-1.5.5/src/libdoxygen.pro.in ---- doxygen-1.5.5/src/libdoxygen.pro.in.me 2008-02-20 14:38:08.000000000 +0100 -+++ doxygen-1.5.5/src/libdoxygen.pro.in 2008-02-20 14:38:29.000000000 +0100 -@@ -224,7 +224,6 @@ win32-msvc:TMAKE_CXXFLAGS += -Zm200 - win32-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti - linux-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti - INCLUDEPATH += ../qtools --INCLUDEPATH += ../libpng - INCLUDEPATH += ../libmd5 - win32:INCLUDEPATH += . - win32-g++:INCLUDEPATH = ../qtools /usr/include/libpng12 ../libmd5 -diff -up doxygen-1.5.5/src/doxygen.pro.in.me doxygen-1.5.5/src/doxygen.pro.in ---- doxygen-1.5.5/src/doxygen.pro.in.me 2008-02-20 14:37:34.000000000 +0100 -+++ doxygen-1.5.5/src/doxygen.pro.in 2008-02-20 14:37:54.000000000 +0100 +diff -up doxygen-1.5.8/src/doxygen.pro.in.system-png doxygen-1.5.8/src/doxygen.pro.in +--- doxygen-1.5.8/src/doxygen.pro.in.system-png 2008-01-01 11:40:58.000000000 +0100 ++++ doxygen-1.5.8/src/doxygen.pro.in 2009-02-06 17:17:34.000000000 +0100 @@ -28,7 +28,7 @@ win32-borland:TMAKE_LFLAGS += -L..\lib - win32:TMAKE_CXXFLAGS += -DQT_NODLL win32-g++:LIBS = -L../lib -ldoxygen -ldoxycfg -lqtools -lpng -lmd5 -liconv @@ -103,3 +80,29 @@ diff -up doxygen-1.5.5/src/doxygen.pro.i #win32-g++:INCLUDEPATH -= ../libpng DESTDIR = ../bin TARGET = doxygen +diff -up doxygen-1.5.8/src/libdoxygen.pro.in.system-png doxygen-1.5.8/src/libdoxygen.pro.in +--- doxygen-1.5.8/src/libdoxygen.pro.in.system-png 2008-10-19 15:50:34.000000000 +0200 ++++ doxygen-1.5.8/src/libdoxygen.pro.in 2009-02-06 18:15:08.000000000 +0100 +@@ -233,9 +233,8 @@ SOURCES = ce_lex.cpp \ + win32:TMAKE_CXXFLAGS += -DQT_NODLL + win32-msvc:TMAKE_CXXFLAGS += -Zm200 + win32-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti +-linux-g++:TMAKE_CXXFLAGS += -fno-exceptions -fno-rtti ++linux-g++:TMAKE_CXXFLAGS += + INCLUDEPATH += ../qtools +-INCLUDEPATH += ../libpng + INCLUDEPATH += ../libmd5 + win32:INCLUDEPATH += . + win32-g++:INCLUDEPATH = ../qtools /usr/include/libpng12 ../libmd5 +diff -up doxygen-1.5.8/src/pngenc.cpp.system-png doxygen-1.5.8/src/pngenc.cpp +--- doxygen-1.5.8/src/pngenc.cpp.system-png 2008-01-01 11:41:08.000000000 +0100 ++++ doxygen-1.5.8/src/pngenc.cpp 2009-02-06 17:17:34.000000000 +0100 +@@ -25,7 +25,7 @@ + #endif + + #define ALL_STATIC +-#include <../libpng/png.h> ++#include + #include + #include + #include Index: doxygen.spec =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-9/doxygen.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- doxygen.spec 26 Nov 2008 13:11:18 -0000 1.55 +++ doxygen.spec 3 Jul 2009 11:03:41 -0000 1.56 @@ -1,20 +1,17 @@ %define _default_patch_fuzz 2 -%define qt_version 3.3.8 +%define qt_version 4.4 %{!?with_qt:%define with_qt 1} Summary: A documentation system for C/C++. Name: doxygen -Version: 1.5.7.1 +Version: 1.5.9 Release: 1%{?dist} Epoch: 1 Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz - -Patch0: doxygen-1.5.6-config.patch -Patch2: doxygen-1.2.18-libdir.patch -Patch3: doxygen-1.2.18-libdir64.patch -Patch4: doxygen-1.5.5-system-png.patch - +Patch1: doxygen-1.5.8-config.patch +Patch2: doxygen-1.5.8-qt4.patch +Patch3: doxygen-1.5.5-system-png.patch Group: Development/Tools # No version is specified. License: GPL+ @@ -43,7 +40,7 @@ source files. Summary: A GUI for creating and editing configuration files. Group: User Interface/X Requires: %{name} = %{epoch}:%{version} -BuildRequires: qt3-devel => %{qt_version} +BuildRequires: qt-devel => %{qt_version} %description doxywizard Doxywizard is a GUI for creating and editing configuration files that @@ -52,28 +49,27 @@ are used by doxygen. %prep %setup -q -%patch0 -p1 -b .config -%if "%{_lib}" != "lib" -%patch3 -p1 -b .libdir -%else -%patch2 -p1 -b .libdir -%endif -%patch4 -p1 -b .system-png +%patch1 -p1 -b .config +%patch2 -p1 -b .qt4 +%patch3 -p1 -b .system-png %build -%if %{with_qt} -QTDIR="" && . /etc/profile.d/qt.sh -%endif +unset QTDIR ./configure \ --prefix %{_prefix} \ --shared \ - --release \ %if %{with_qt} --with-doxywizard \ %endif - --install %{_bindir}/install + --release + +# workaround for "Error: operand out of range", language.cpp needs to be splitted +%ifarch ppc64 +make -C src Makefile.libdoxygen +sed -i -e "s|-o ../objects/language.o|-fno-merge-constants -fsection-anchors -o ../objects/language.o|" src/Makefile.libdoxygen +%endif make %{?_smp_mflags} all make docs @@ -81,7 +77,7 @@ make docs %install rm -rf %{buildroot} -make install INSTALL=%{buildroot}%{_prefix} +make install DESTDIR=%{buildroot} %if !%{with_qt} rm -rf %{buildroot}%{_mandir}/man1/doxywizard* @@ -107,6 +103,15 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 03 2009 Than Ngo - 1.5.9-1 +- 1.5.9 + +* Tue Feb 24 2009 Fedora Release Engineering - 1:1.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 05 2009 Than Ngo 1.5.8-1 +- 1.5.8 + * Mon Oct 06 2008 Than Ngo 1.5.7.1-1 - 1.5.7.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/doxygen/F-9/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 26 Nov 2008 13:11:18 -0000 1.28 +++ sources 3 Jul 2009 11:03:41 -0000 1.29 @@ -1 +1 @@ -bc35dfd52bdae0247b862e67e0cbe7d7 doxygen-1.5.7.1.src.tar.gz +33c5598fa6d24cbc55849eaf89652557 doxygen-1.5.9.src.tar.gz --- doxygen-1.2.18-libdir.patch DELETED --- --- doxygen-1.2.18-libdir64.patch DELETED --- --- doxygen-1.5.6-config.patch DELETED --- From than at fedoraproject.org Fri Jul 3 11:14:04 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 11:14:04 +0000 (UTC) Subject: rpms/doxygen/F-9 doxygen-1.5.8-config.patch, NONE, 1.1 doxygen-1.5.8-qt4.patch, NONE, 1.1 Message-ID: <20090703111405.11D5011C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/doxygen/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1168 Added Files: doxygen-1.5.8-config.patch doxygen-1.5.8-qt4.patch Log Message: 1.5.9 doxygen-1.5.8-config.patch: --- NEW FILE doxygen-1.5.8-config.patch --- diff -up doxygen-1.5.8/configure.orig doxygen-1.5.8/configure --- doxygen-1.5.8/configure.orig 2008-12-26 20:22:39.000000000 +0100 +++ doxygen-1.5.8/configure 2009-02-06 11:00:44.000000000 +0100 @@ -485,6 +485,7 @@ INSTTOOL = $f_insttool DOXYDOCS = .. DOCDIR = $f_docdir QTDIR = $QTDIR +MAN1DIR = share/man/man1 EOF if test "$f_dot" != NO; then diff -up doxygen-1.5.8/addon/doxywizard/Makefile.in.orig doxygen-1.5.8/addon/doxywizard/Makefile.in --- doxygen-1.5.8/addon/doxywizard/Makefile.in.orig 2009-02-06 14:55:30.000000000 +0100 +++ doxygen-1.5.8/addon/doxywizard/Makefile.in 2009-02-06 14:56:08.000000000 +0100 @@ -29,11 +29,11 @@ distclean: Makefile.doxywizard $(RM) Makefile.doxywizard install: - $(INSTTOOL) -d $(INSTALL)/bin - $(INSTTOOL) -m 755 ../../bin/doxywizard $(INSTALL)/bin - $(INSTTOOL) -d $(INSTALL)/$(MAN1DIR) + $(INSTTOOL) -d $(DESTDIR)$(INSTALL)/bin + $(INSTTOOL) -m 755 ../../bin/doxywizard $(DESTDIR)$(INSTALL)/bin + $(INSTTOOL) -d $(DESTDIR)$(INSTALL)/$(MAN1DIR) cat ../../doc/doxywizard.1 | sed -e "s/DATE/$(DATE)/g" -e "s/VERSION/$(VERSION)/g" > doxywizard.1 - $(INSTTOOL) -m 644 doxywizard.1 $(INSTALL)/$(MAN1DIR)/doxywizard.1 + $(INSTTOOL) -m 644 doxywizard.1 $(DESTDIR)$(INSTALL)/$(MAN1DIR)/doxywizard.1 rm doxywizard.1 FORCE: diff -up doxygen-1.5.8/Makefile.in.orig doxygen-1.5.8/Makefile.in --- doxygen-1.5.8/Makefile.in.orig 2009-02-06 15:00:41.000000000 +0100 +++ doxygen-1.5.8/Makefile.in 2009-02-06 15:00:54.000000000 +0100 @@ -44,8 +44,6 @@ distclean: clean DATE=$(shell date "+%B %Y") -MAN1DIR = man/man1 - install: doxywizard_install $(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin $(INSTTOOL) -m 755 bin/doxygen $(DESTDIR)/$(INSTALL)/bin diff -up doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf.orig doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf --- doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf.orig 2009-02-06 17:08:45.000000000 +0100 +++ doxygen-1.5.8/tmake/lib/linux-g++/tmake.conf 2009-02-06 17:12:16.000000000 +0100 @@ -11,7 +11,7 @@ TMAKE_CC = gcc TMAKE_CFLAGS = -pipe TMAKE_CFLAGS_WARN_ON = -Wall -W -fno-exceptions TMAKE_CFLAGS_WARN_OFF = -TMAKE_CFLAGS_RELEASE = -O2 +TMAKE_CFLAGS_RELEASE = $(RPM_OPT_FLAGS) TMAKE_CFLAGS_DEBUG = -g TMAKE_CFLAGS_SHLIB = -fPIC TMAKE_CFLAGS_YACC = -Wno-unused -Wno-parentheses @@ -27,12 +27,12 @@ TMAKE_CXXFLAGS_YACC = $$TMAKE_CFLAGS_YAC TMAKE_INCDIR = TMAKE_LIBDIR = -TMAKE_INCDIR_X11 = /usr/X11R6/include -TMAKE_LIBDIR_X11 = /usr/X11R6/lib -TMAKE_INCDIR_QT = $(QTDIR)/include -TMAKE_LIBDIR_QT = $(QTDIR)/lib -TMAKE_INCDIR_OPENGL = /usr/X11R6/include -TMAKE_LIBDIR_OPENGL = /usr/X11R6/lib +TMAKE_INCDIR_X11 = +TMAKE_LIBDIR_X11 = +TMAKE_INCDIR_QT = +TMAKE_LIBDIR_QT = +TMAKE_INCDIR_OPENGL = +TMAKE_LIBDIR_OPENGL = TMAKE_LINK = g++ TMAKE_LINK_SHLIB = g++ diff -up doxygen-1.5.8/tmake/lib/macosx-uni-c++/tmake.conf.orig doxygen-1.5.8/tmake/lib/macosx-uni-c++/tmake.conf doxygen-1.5.8-qt4.patch: --- NEW FILE doxygen-1.5.8-qt4.patch --- diff -up doxygen-1.5.8/configure.qt4 doxygen-1.5.8/configure --- doxygen-1.5.8/configure.qt4 2008-12-26 20:22:39.000000000 +0100 +++ doxygen-1.5.8/configure 2009-02-06 11:00:44.000000000 +0100 @@ -268,7 +268,7 @@ if test "$f_wizard" = YES; then if test -z "$QTDIR"; then echo " QTDIR environment variable not set!" echo -n " Checking for Qt..." - for d in /usr/{lib,share,qt}/{qt-4,qt4,qt,qt*,4}; do + for d in /usr/{lib64,lib,share,qt}/{qt-4,qt4,qt,qt*,4}; do if test -x "$d/bin/qmake"; then QTDIR=$d fi From hadess at fedoraproject.org Fri Jul 3 11:24:12 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 3 Jul 2009 11:24:12 +0000 (UTC) Subject: rpms/bluez/devel .cvsignore, 1.37, 1.38 0001-Add-sixaxis-cable-pairing-plugin.patch, 1.2, 1.3 bluez-try-utf8-harder.patch, 1.1, 1.2 bluez.spec, 1.75, 1.76 sources, 1.37, 1.38 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch, 1.2, NONE Message-ID: <20090703112413.4379B11C041A@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3677 Modified Files: .cvsignore 0001-Add-sixaxis-cable-pairing-plugin.patch bluez-try-utf8-harder.patch bluez.spec sources Removed Files: 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch Log Message: * Fri Jul 03 2009 Bastien Nocera 4.43-1 - Update to 4.43 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 21 Jun 2009 13:43:32 -0000 1.37 +++ .cvsignore 3 Jul 2009 11:24:08 -0000 1.38 @@ -1 +1 @@ -bluez-4.42.tar.gz +bluez-4.43.tar.gz 0001-Add-sixaxis-cable-pairing-plugin.patch: Index: 0001-Add-sixaxis-cable-pairing-plugin.patch =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/0001-Add-sixaxis-cable-pairing-plugin.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 0001-Add-sixaxis-cable-pairing-plugin.patch 29 Jun 2009 14:51:49 -0000 1.2 +++ 0001-Add-sixaxis-cable-pairing-plugin.patch 3 Jul 2009 11:24:10 -0000 1.3 @@ -17,59 +17,6 @@ address, and added to the database of th 4 files changed, 388 insertions(+), 1 deletions(-) create mode 100644 plugins/cable.c -diff --git a/acinclude.m4 b/acinclude.m4 -index eb7cdeb..dac1120 100644 ---- a/acinclude.m4 -+++ b/acinclude.m4 -@@ -159,6 +159,12 @@ AC_DEFUN([AC_PATH_USB], [ - [Define to 1 if you need the usb_interrupt_read() function.])) - ]) - -+AC_DEFUN([AC_PATH_CABLE], [ -+ PKG_CHECK_MODULES(CABLE, gudev-1.0 libusb-1.0, cable_found=yes, cable_found=no) -+ AC_SUBST(CABLE_CFLAGS) -+ AC_SUBST(CABLE_LIBS) -+]) -+ - AC_DEFUN([AC_PATH_NETLINK], [ - PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no) - AC_SUBST(NETLINK_CFLAGS) -@@ -179,6 +185,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ - netlink_enable=no - hal_enable=${hal_found} - usb_enable=${usb_found} -+ cable_enable=${cable_found} - alsa_enable=${alsa_found} - gstreamer_enable=${gstreamer_found} - audio_enable=yes -@@ -241,6 +248,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [ - usb_enable=${enableval} - ]) - -+ AC_ARG_ENABLE(cable, AC_HELP_STRING([--enable-cable], [enable DeviceKit support]), [ -+ cable_enable=${enableval} -+ ]) -+ - AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [ - netlink_enable=${enableval} - ]) -@@ -324,6 +335,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [ - AC_DEFINE(HAVE_LIBUSB, 1, [Define to 1 if you have USB library.]) - fi - -+ if (test "${cable_enable}" = "yes" && test "${cable_found}" = "yes"); then -+ AC_DEFINE(HAVE_CABLE, 1, [Define to 1 if you have libcable.]) -+ fi -+ - AC_SUBST([BLUEZ_CFLAGS], ['-I$(top_builddir)/include']) - AC_SUBST([BLUEZ_LIBS], ['$(top_builddir)/lib/libbluetooth.la']) - -@@ -357,4 +372,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [ - AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes") - AM_CONDITIONAL(INITSCRIPTS, test "${initscripts_enable}" = "yes") - AM_CONDITIONAL(PCMCIARULES, test "${pcmciarules_enable}" = "yes") -+ AM_CONDITIONAL(CABLE, test "${cable_enable}" = "yes" && test "${cable_found}" = "yes") - ]) diff --git a/configure.ac b/configure.ac index 1686d18..339d45c 100644 --- a/configure.ac @@ -502,3 +449,54 @@ index 0000000..9f24b55 -- 1.6.0.6 +--- bluez-4.43.old/acinclude.m4 2009-07-02 23:43:14.000000000 +0100 ++++ bluez-4.43/acinclude.m4 2009-07-03 12:18:46.000000000 +0100 +@@ -162,6 +162,12 @@ AC_DEFUN([AC_PATH_USB], [ + [Define to 1 if you need the usb_interrupt_read() function.])) + ]) + ++AC_DEFUN([AC_PATH_CABLE], [ ++ PKG_CHECK_MODULES(CABLE, gudev-1.0 libusb-1.0, cable_found=yes, cable_found=no) ++ AC_SUBST(CABLE_CFLAGS) ++ AC_SUBST(CABLE_LIBS) ++]) ++ + AC_DEFUN([AC_PATH_NETLINK], [ + PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no) + AC_SUBST(NETLINK_CFLAGS) +@@ -182,6 +188,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ + netlink_enable=no + hal_enable=${hal_found} + usb_enable=${usb_found} ++ cable_enable=${cable_found} + alsa_enable=${alsa_found} + gstreamer_enable=${gstreamer_found} + audio_enable=yes +@@ -244,6 +251,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [ + usb_enable=${enableval} + ]) + ++ AC_ARG_ENABLE(cable, AC_HELP_STRING([--enable-cable], [enable DeviceKit support]), [ ++ cable_enable=${enableval} ++ ]) ++ + AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [ + netlink_enable=${enableval} + ]) +@@ -327,6 +338,10 @@ AC_DEFUN([AC_ARG_BLUEZ], [ + AC_DEFINE(HAVE_LIBUSB, 1, [Define to 1 if you have USB library.]) + fi + ++ if (test "${cable_enable}" = "yes" && test "${cable_found}" = "yes"); then ++ AC_DEFINE(HAVE_CABLE, 1, [Define to 1 if you have libcable.]) ++ fi ++ + AC_SUBST([BLUEZ_CFLAGS], ['-I$(top_builddir)/include']) + AC_SUBST([BLUEZ_LIBS], ['$(top_builddir)/lib/libbluetooth.la']) + +@@ -360,4 +375,5 @@ AC_DEFUN([AC_ARG_BLUEZ], [ + AM_CONDITIONAL(MANPAGES, test "${manpages_enable}" = "yes") + AM_CONDITIONAL(UDEVRULES, test "${udevrules_enable}" = "yes") + AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes") ++ AM_CONDITIONAL(CABLE, test "${cable_enable}" = "yes" && test "${cable_found}" = "yes") + ]) bluez-try-utf8-harder.patch: Index: bluez-try-utf8-harder.patch =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez-try-utf8-harder.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bluez-try-utf8-harder.patch 5 Mar 2009 18:53:13 -0000 1.1 +++ bluez-try-utf8-harder.patch 3 Jul 2009 11:24:10 -0000 1.2 @@ -1,9 +1,9 @@ diff --git a/src/security.c b/src/security.c -index a61d75f..75908ba 100644 +index 905cf61..67fd266 100644 --- a/src/security.c +++ b/src/security.c -@@ -600,8 +600,16 @@ static inline void remote_name_information(int dev, bdaddr_t *sba, void *ptr) - memcpy(name, evt->name, 248); +@@ -705,8 +705,16 @@ static inline void remote_name_information(int dev, bdaddr_t *sba, void *ptr) + memcpy(name, evt->name, MAX_NAME_LENGTH); /* It's ok to cast end between const and non-const since * we know it points to inside of name which is non-const */ - if (!g_utf8_validate(name, -1, (const char **) &end)) Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- bluez.spec 21 Jun 2009 23:01:22 -0000 1.75 +++ bluez.spec 3 Jul 2009 11:24:10 -0000 1.76 @@ -1,7 +1,7 @@ Summary: Bluetooth utilities Name: bluez -Version: 4.42 -Release: 2%{?dist} +Version: 4.43 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz @@ -24,8 +24,6 @@ Patch3: bluez-activate-wacom-mode2.patch Patch4: bluez-socket-mobile-cf-connection-kit.patch # http://thread.gmane.org/gmane.linux.bluez.kernel/2396 Patch5: 0001-Add-sixaxis-cable-pairing-plugin.patch -# http://thread.gmane.org/gmane.linux.bluez.kernel/2579 -Patch6: 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://www.bluez.org/ @@ -131,7 +129,6 @@ This includes hidd, dund and pand. %patch3 -p1 -b .wacom %patch4 -p1 -b .socket-mobile %patch5 -p1 -b .cable-pairing -%patch6 -p1 -b .udev %build libtoolize -f -c @@ -272,6 +269,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Fri Jul 03 2009 Bastien Nocera 4.43-1 +- Update to 4.43 + * Sun Jun 21 2009 Bastien Nocera 4.42-2 - Update to 4.42 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 21 Jun 2009 13:43:33 -0000 1.37 +++ sources 3 Jul 2009 11:24:11 -0000 1.38 @@ -1 +1 @@ -d24dfd3ca42847123e29f58b29af6948 bluez-4.42.tar.gz +eee7f54a06f77d009c9938a653283171 bluez-4.43.tar.gz --- 0001-Add-udev-rules-to-start-bluetooth-on-demand.patch DELETED --- From kkofler at fedoraproject.org Fri Jul 3 11:49:59 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Fri, 3 Jul 2009 11:49:59 +0000 (UTC) Subject: comps comps-f12.xml.in,1.25,1.26 Message-ID: <20090703114959.D669311C041A@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7836 Modified Files: comps-f12.xml.in Log Message: Default to kde-plasma-networkmanagement for KDE. Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- comps-f12.xml.in 2 Jul 2009 18:02:27 -0000 1.25 +++ comps-f12.xml.in 3 Jul 2009 11:49:28 -0000 1.26 @@ -3439,6 +3439,7 @@ cups-pk-helper digikam kaffeine + kde-plasma-networkmanagement kde-settings-pulseaudio kdeaccessibility kdeartwork-screensavers @@ -3459,7 +3460,6 @@ kpackagekit ksshaskpass ktorrent - NetworkManager-gnome pinentry-qt PolicyKit-kde scribus From pkgdb at fedoraproject.org Fri Jul 3 12:03:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:03:17 +0000 Subject: [pkgdb] fish ownership updated Message-ID: <20090703120317.35DE910F88E@bastion2.fedora.phx.redhat.com> Package fish in Fedora devel is now owned by arbiter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From pkgdb at fedoraproject.org Fri Jul 3 12:03:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:03:23 +0000 Subject: [pkgdb] fish had acl change status Message-ID: <20090703120323.E7E9D10F8A3@bastion2.fedora.phx.redhat.com> arbiter has set the watchbugzilla acl on fish (Fedora devel) to Approved for jaswinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From pkgdb at fedoraproject.org Fri Jul 3 12:03:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:03:24 +0000 Subject: [pkgdb] fish had acl change status Message-ID: <20090703120324.66D5810F8A8@bastion2.fedora.phx.redhat.com> arbiter has set the watchcommits acl on fish (Fedora devel) to Approved for jaswinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From pkgdb at fedoraproject.org Fri Jul 3 12:03:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:03:36 +0000 Subject: [pkgdb] fish had acl change status Message-ID: <20090703120336.43B0C10F8AC@bastion2.fedora.phx.redhat.com> arbiter has set the commit acl on fish (Fedora devel) to Obsolete for jaswinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From allisson at fedoraproject.org Fri Jul 3 12:07:33 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 3 Jul 2009 12:07:33 +0000 (UTC) Subject: rpms/eina/devel .cvsignore, 1.2, 1.3 eina.spec, 1.3, 1.4 import.log, 1.2, 1.3 sources, 1.2, 1.3 eina-0.7.3-gtkversion.patch, 1.1, NONE eina-0.7.3-gtkvolume.patch, 1.1, NONE Message-ID: <20090703120733.76D4911C041A@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/eina/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11612/devel Modified Files: .cvsignore eina.spec import.log sources Removed Files: eina-0.7.3-gtkversion.patch eina-0.7.3-gtkvolume.patch Log Message: Update to 0.8.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Feb 2009 01:41:22 -0000 1.2 +++ .cvsignore 3 Jul 2009 12:07:31 -0000 1.3 @@ -1 +1 @@ -eina-0.7.3.tar.gz +eina-0.8.0.tar.gz Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/eina.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eina.spec 11 Mar 2009 01:05:13 -0000 1.3 +++ eina.spec 3 Jul 2009 12:07:31 -0000 1.4 @@ -1,14 +1,12 @@ Name: eina -Version: 0.7.3 -Release: 6%{?dist} +Version: 0.8.0 +Release: 1%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia License: GPLv2+ URL: http://eina.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -Patch0: eina-0.7.3-gtkversion.patch -Patch1: eina-0.7.3-gtkvolume.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gstreamer-devel @@ -18,6 +16,7 @@ BuildRequires: dbus-glib-devel BuildRequires: unique-devel BuildRequires: sqlite-devel BuildRequires: desktop-file-utils +BuildRequires: curl-devel %description @@ -46,10 +45,7 @@ Eina. %prep %setup -q -# This patch disable gtk 2.15 check -%patch0 -p1 -b .gtkversion -# Gtk volume -%patch1 -p1 -b .gtkvolume + %build %configure --disable-static @@ -72,10 +68,8 @@ desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - # clean-up .la archives -rm $RPM_BUILD_ROOT%{_libdir}/eina/*/*.la -rm $RPM_BUILD_ROOT%{_libdir}/*.la +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean @@ -96,7 +90,7 @@ update-desktop-database &> /dev/null || %{_datadir}/applications/eina.desktop %{_datadir}/eina %{_libdir}/eina -%{_libdir}/*.so.0* +%attr(755, root, root) %{_libdir}/eina/lastfm/lastfmsubmitd/lastfmsubmitd %{_libdir}/*.so.1* @@ -108,6 +102,11 @@ update-desktop-database &> /dev/null || %changelog +* Tue Mar 10 2009 Allisson Azevedo 0.8.0-1 +- Update to 0.8.0. +- Added curl-devel BR. +- Removed patches. + * Tue Mar 10 2009 Allisson Azevedo 0.7.3-6 - Added gtkvolume patch. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 11 Mar 2009 01:05:13 -0000 1.2 +++ import.log 3 Jul 2009 12:07:31 -0000 1.3 @@ -1,2 +1,3 @@ eina-0_7_3-4_fc10:HEAD:eina-0.7.3-4.fc10.src.rpm:1234143470 eina-0_7_3-6_fc10:HEAD:eina-0.7.3-6.fc10.src.rpm:1236733428 +eina-0_8_0-1_fc11:HEAD:eina-0.8.0-1.fc11.src.rpm:1246622800 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Feb 2009 01:41:22 -0000 1.2 +++ sources 3 Jul 2009 12:07:31 -0000 1.3 @@ -1 +1 @@ -1d107f6489f862674d0020240e6b551e eina-0.7.3.tar.gz +b8b71a2ef5613b23faa104ea43ae34b5 eina-0.8.0.tar.gz --- eina-0.7.3-gtkversion.patch DELETED --- --- eina-0.7.3-gtkvolume.patch DELETED --- From allisson at fedoraproject.org Fri Jul 3 12:14:06 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 3 Jul 2009 12:14:06 +0000 (UTC) Subject: rpms/eina/F-11 .cvsignore, 1.2, 1.3 eina.spec, 1.3, 1.4 import.log, 1.2, 1.3 sources, 1.2, 1.3 eina-0.7.3-gtkversion.patch, 1.1, NONE eina-0.7.3-gtkvolume.patch, 1.1, NONE Message-ID: <20090703121406.7186611C041A@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/eina/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12923/F-11 Modified Files: .cvsignore eina.spec import.log sources Removed Files: eina-0.7.3-gtkversion.patch eina-0.7.3-gtkvolume.patch Log Message: Update to 0.8.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Feb 2009 01:41:22 -0000 1.2 +++ .cvsignore 3 Jul 2009 12:14:06 -0000 1.3 @@ -1 +1 @@ -eina-0.7.3.tar.gz +eina-0.8.0.tar.gz Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/eina.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eina.spec 11 Mar 2009 01:05:13 -0000 1.3 +++ eina.spec 3 Jul 2009 12:14:06 -0000 1.4 @@ -1,14 +1,12 @@ Name: eina -Version: 0.7.3 -Release: 6%{?dist} +Version: 0.8.0 +Release: 1%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia License: GPLv2+ URL: http://eina.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -Patch0: eina-0.7.3-gtkversion.patch -Patch1: eina-0.7.3-gtkvolume.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gstreamer-devel @@ -18,6 +16,7 @@ BuildRequires: dbus-glib-devel BuildRequires: unique-devel BuildRequires: sqlite-devel BuildRequires: desktop-file-utils +BuildRequires: curl-devel %description @@ -46,10 +45,7 @@ Eina. %prep %setup -q -# This patch disable gtk 2.15 check -%patch0 -p1 -b .gtkversion -# Gtk volume -%patch1 -p1 -b .gtkvolume + %build %configure --disable-static @@ -72,10 +68,8 @@ desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - # clean-up .la archives -rm $RPM_BUILD_ROOT%{_libdir}/eina/*/*.la -rm $RPM_BUILD_ROOT%{_libdir}/*.la +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean @@ -96,7 +90,7 @@ update-desktop-database &> /dev/null || %{_datadir}/applications/eina.desktop %{_datadir}/eina %{_libdir}/eina -%{_libdir}/*.so.0* +%attr(755, root, root) %{_libdir}/eina/lastfm/lastfmsubmitd/lastfmsubmitd %{_libdir}/*.so.1* @@ -108,6 +102,11 @@ update-desktop-database &> /dev/null || %changelog +* Tue Mar 10 2009 Allisson Azevedo 0.8.0-1 +- Update to 0.8.0. +- Added curl-devel BR. +- Removed patches. + * Tue Mar 10 2009 Allisson Azevedo 0.7.3-6 - Added gtkvolume patch. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 11 Mar 2009 01:05:13 -0000 1.2 +++ import.log 3 Jul 2009 12:14:06 -0000 1.3 @@ -1,2 +1,3 @@ eina-0_7_3-4_fc10:HEAD:eina-0.7.3-4.fc10.src.rpm:1234143470 eina-0_7_3-6_fc10:HEAD:eina-0.7.3-6.fc10.src.rpm:1236733428 +eina-0_8_0-1_fc11:F-11:eina-0.8.0-1.fc11.src.rpm:1246623186 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Feb 2009 01:41:22 -0000 1.2 +++ sources 3 Jul 2009 12:14:06 -0000 1.3 @@ -1 +1 @@ -1d107f6489f862674d0020240e6b551e eina-0.7.3.tar.gz +b8b71a2ef5613b23faa104ea43ae34b5 eina-0.8.0.tar.gz --- eina-0.7.3-gtkversion.patch DELETED --- --- eina-0.7.3-gtkvolume.patch DELETED --- From pkgdb at fedoraproject.org Fri Jul 3 12:16:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:16:31 +0000 Subject: [pkgdb] system-config-printer had acl change status Message-ID: <20090703121631.1DF5D10F898@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on system-config-printer (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 12:16:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:16:37 +0000 Subject: [pkgdb] system-config-printer had acl change status Message-ID: <20090703121637.654A310F8A2@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on system-config-printer (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-printer From pkgdb at fedoraproject.org Fri Jul 3 12:17:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:17:28 +0000 Subject: [pkgdb] cups had acl change status Message-ID: <20090703121728.9344B10F8A2@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on cups (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From pkgdb at fedoraproject.org Fri Jul 3 12:17:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 12:17:32 +0000 Subject: [pkgdb] cups had acl change status Message-ID: <20090703121732.8A93F10F8A8@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on cups (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cups From arbiter at fedoraproject.org Fri Jul 3 12:19:25 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 12:19:25 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.27,1.28 Message-ID: <20090703121925.30A2611C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13729 Modified Files: fish.spec Log Message: new upstream version Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- fish.spec 24 Feb 2009 17:19:30 -0000 1.27 +++ fish.spec 3 Jul 2009 12:18:54 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish -Version: 1.23.0 -Release: 7%{?dist} +Version: 1.23.1 +Release: 1%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -13,9 +13,9 @@ BuildRequires: ncurses-devel ge BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel -%description -fish is a shell geared towards interactive use. Its features are -focused on user friendliness and discoverability. The language syntax +%description +fish is a shell geared towards interactive use. Its features are +focused on user friendliness and discoverability. The language syntax is simple but incompatible with other shell languages. %prep @@ -32,7 +32,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR="$RPM_BUILD_ROOT" +make install DESTDIR="$RPM_BUILD_ROOT" # Find translation files %find_lang %{name}.\* @@ -61,6 +61,7 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* +%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -88,6 +89,7 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* +%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -99,6 +101,10 @@ fi %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-1 +- 1.23.1 +- Fix bz #472613 + * Tue Feb 24 2009 Fedora Release Engineering - 1.23.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From allisson at fedoraproject.org Fri Jul 3 12:20:28 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 3 Jul 2009 12:20:28 +0000 (UTC) Subject: rpms/eina/F-10 .cvsignore, 1.2, 1.3 eina.spec, 1.2, 1.3 import.log, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090703122028.D263911C041A@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/eina/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14011/F-10 Modified Files: .cvsignore eina.spec import.log sources Log Message: Update to 0.8.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Feb 2009 01:44:03 -0000 1.2 +++ .cvsignore 3 Jul 2009 12:19:58 -0000 1.3 @@ -1 +1 @@ -eina-0.7.3.tar.gz +eina-0.8.0.tar.gz Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-10/eina.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- eina.spec 11 Mar 2009 01:01:39 -0000 1.2 +++ eina.spec 3 Jul 2009 12:19:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: eina -Version: 0.7.3 -Release: 5%{?dist} +Version: 0.8.0 +Release: 1%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia @@ -16,6 +16,7 @@ BuildRequires: dbus-glib-devel BuildRequires: unique-devel BuildRequires: sqlite-devel BuildRequires: desktop-file-utils +BuildRequires: curl-devel %description @@ -67,10 +68,8 @@ desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - # clean-up .la archives -rm $RPM_BUILD_ROOT%{_libdir}/eina/*/*.la -rm $RPM_BUILD_ROOT%{_libdir}/*.la +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean @@ -91,7 +90,7 @@ update-desktop-database &> /dev/null || %{_datadir}/applications/eina.desktop %{_datadir}/eina %{_libdir}/eina -%{_libdir}/*.so.0* +%attr(755, root, root) %{_libdir}/eina/lastfm/lastfmsubmitd/lastfmsubmitd %{_libdir}/*.so.1* @@ -103,6 +102,11 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 3 2009 Allisson Azevedo 0.8.0-1 +- Update to 0.8.0. +- Added curl-devel BR. +- Removed patches. + * Thu Feb 5 2009 Allisson Azevedo 0.7.3-5 - Drop gtkversion patch. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 11 Mar 2009 01:01:39 -0000 1.2 +++ import.log 3 Jul 2009 12:19:58 -0000 1.3 @@ -1,2 +1,3 @@ eina-0_7_3-4_fc10:F-10:eina-0.7.3-4.fc10.src.rpm:1234143665 eina-0_7_3-5_fc10:F-10:eina-0.7.3-5.fc10.src.rpm:1236733220 +eina-0_8_0-1_fc11:F-10:eina-0.8.0-1.fc11.src.rpm:1246623554 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Feb 2009 01:44:03 -0000 1.2 +++ sources 3 Jul 2009 12:19:58 -0000 1.3 @@ -1 +1 @@ -1d107f6489f862674d0020240e6b551e eina-0.7.3.tar.gz +b8b71a2ef5613b23faa104ea43ae34b5 eina-0.8.0.tar.gz From allisson at fedoraproject.org Fri Jul 3 12:25:21 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 3 Jul 2009 12:25:21 +0000 (UTC) Subject: rpms/eina/devel eina.spec,1.4,1.5 import.log,1.3,1.4 Message-ID: <20090703122521.5A41111C041A@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/eina/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14939/devel Modified Files: eina.spec import.log Log Message: Fix changelog date. Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/eina.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eina.spec 3 Jul 2009 12:07:31 -0000 1.4 +++ eina.spec 3 Jul 2009 12:24:50 -0000 1.5 @@ -1,6 +1,6 @@ Name: eina Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia @@ -102,7 +102,10 @@ update-desktop-database &> /dev/null || %changelog -* Tue Mar 10 2009 Allisson Azevedo 0.8.0-1 +* Fri Jul 3 2009 Allisson Azevedo 0.8.0-2 +- Fix changelog date. + +* Fri Jul 3 2009 Allisson Azevedo 0.8.0-1 - Update to 0.8.0. - Added curl-devel BR. - Removed patches. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 3 Jul 2009 12:07:31 -0000 1.3 +++ import.log 3 Jul 2009 12:24:51 -0000 1.4 @@ -1,3 +1,4 @@ eina-0_7_3-4_fc10:HEAD:eina-0.7.3-4.fc10.src.rpm:1234143470 eina-0_7_3-6_fc10:HEAD:eina-0.7.3-6.fc10.src.rpm:1236733428 eina-0_8_0-1_fc11:HEAD:eina-0.8.0-1.fc11.src.rpm:1246622800 +eina-0_8_0-2_fc11:HEAD:eina-0.8.0-2.fc11.src.rpm:1246623851 From allisson at fedoraproject.org Fri Jul 3 12:31:22 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 3 Jul 2009 12:31:22 +0000 (UTC) Subject: rpms/eina/F-11 eina.spec,1.4,1.5 import.log,1.3,1.4 Message-ID: <20090703123122.B109411C041A@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/eina/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16566/F-11 Modified Files: eina.spec import.log Log Message: Fix changelog date. Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/eina.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eina.spec 3 Jul 2009 12:14:06 -0000 1.4 +++ eina.spec 3 Jul 2009 12:31:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: eina Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia @@ -102,7 +102,10 @@ update-desktop-database &> /dev/null || %changelog -* Tue Mar 10 2009 Allisson Azevedo 0.8.0-1 +* Fri Jul 3 2009 Allisson Azevedo 0.8.0-2 +- Fix changelog date. + +* Fri Jul 3 2009 Allisson Azevedo 0.8.0-1 - Update to 0.8.0. - Added curl-devel BR. - Removed patches. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/eina/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 3 Jul 2009 12:14:06 -0000 1.3 +++ import.log 3 Jul 2009 12:31:22 -0000 1.4 @@ -1,3 +1,4 @@ eina-0_7_3-4_fc10:HEAD:eina-0.7.3-4.fc10.src.rpm:1234143470 eina-0_7_3-6_fc10:HEAD:eina-0.7.3-6.fc10.src.rpm:1236733428 eina-0_8_0-1_fc11:F-11:eina-0.8.0-1.fc11.src.rpm:1246623186 +eina-0_8_0-2_fc11:F-11:eina-0.8.0-2.fc11.src.rpm:1246624231 From pmachata at fedoraproject.org Fri Jul 3 12:38:31 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Fri, 3 Jul 2009 12:38:31 +0000 (UTC) Subject: rpms/boost/F-11 boost-fs_gcc44.patch,NONE,1.1 boost.spec,1.59,1.60 Message-ID: <20090703123831.EB2D611C041A@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/boost/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17822 Modified Files: boost.spec Added Files: boost-fs_gcc44.patch Log Message: - Add upstream patch to make boost_filesystem compatible with C++0x. - Resolves: #509250 boost-fs_gcc44.patch: --- NEW FILE boost-fs_gcc44.patch --- Index: boost/filesystem/operations.hpp =================================================================== --- boost/filesystem/operations.hpp (revision 52859) +++ boost/filesystem/operations.hpp (working copy) @@ -659,9 +659,9 @@ { return is_symlink( ph ); } inline bool is_empty( const path & ph ) - { return is_empty( ph ); } + { return boost::filesystem::is_empty( ph ); } inline bool is_empty( const wpath & ph ) - { return is_empty( ph ); } + { return boost::filesystem::is_empty( ph ); } inline bool equivalent( const path & ph1, const path & ph2 ) { return equivalent( ph1, ph2 ); } Index: boost.spec =================================================================== RCS file: /cvs/pkgs/rpms/boost/F-11/boost.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- boost.spec 23 Mar 2009 14:27:08 -0000 1.59 +++ boost.spec 3 Jul 2009 12:38:00 -0000 1.60 @@ -4,7 +4,7 @@ Name: boost Summary: The Boost C++ Libraries Version: 1.37.0 -Release: 6%{?dist} +Release: 7%{?dist} License: Boost URL: http://www.boost.org/ Group: System Environment/Libraries @@ -30,6 +30,7 @@ Patch5: boost-function_template.patch Patch6: boost-unneccessary_iostreams.patch Patch7: boost-1_37_0-smp.patch Patch8: boost-bitset.patch +Patch9: boost-fs_gcc44.patch %description Boost provides free peer-reviewed portable C++ source libraries. The @@ -78,6 +79,7 @@ sed 's/!!!SONAME!!!/%{sonamever}/' %{PAT %patch6 -p0 sed 's/!!!SMP_FLAGS!!!/%{?_smp_mflags}/' %{PATCH7} | %{__patch} -p1 --fuzz=0 %patch8 -p1 +%patch9 -p0 %build BOOST_ROOT=`pwd` @@ -210,6 +212,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version} %changelog +* Fri Jul 3 2009 Petr Machata - 1.37.0-7 +- Add upstream patch to make boost_filesystem compatible with C++0x. +- Resolves: #509250 + * Mon Mar 23 2009 Petr Machata - 1.37.0-6 - Apply a SMP patch from Stefan Ring - Apply a workaround for "cannot appear in a constant-expression" in From arbiter at fedoraproject.org Fri Jul 3 12:47:54 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 12:47:54 +0000 (UTC) Subject: rpms/fish/devel .cvsignore, 1.9, 1.10 fish.spec, 1.28, 1.29 sources, 1.9, 1.10 Message-ID: <20090703124754.799AF11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19418 Modified Files: .cvsignore fish.spec sources Log Message: new sources files Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 Jan 2008 09:05:18 -0000 1.9 +++ .cvsignore 3 Jul 2009 12:47:24 -0000 1.10 @@ -1 +1 @@ -fish-1.23.0.tar.bz2 +fish-1.23.1.tar.bz2 Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- fish.spec 3 Jul 2009 12:18:54 -0000 1.28 +++ fish.spec 3 Jul 2009 12:47:24 -0000 1.29 @@ -5,7 +5,7 @@ Release: 1%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ -Source0: http://roo.no-ip.org/%{name}/files/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://fishshell.org/files/%{version}/fish-%{version}.tar.bz2 # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Jan 2008 09:05:18 -0000 1.9 +++ sources 3 Jul 2009 12:47:24 -0000 1.10 @@ -1 +1 @@ -aa2f09bb54652b16bf4f7708848a7416 fish-1.23.0.tar.bz2 +ead6b7c6cdb21f35a3d4aa1d5fa596f1 fish-1.23.1.tar.bz2 From arbiter at fedoraproject.org Fri Jul 3 12:58:18 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 12:58:18 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.29,1.30 Message-ID: <20090703125818.6A79A11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21765 Modified Files: fish.spec Log Message: bump Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- fish.spec 3 Jul 2009 12:47:24 -0000 1.29 +++ fish.spec 3 Jul 2009 12:57:48 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish Version: 1.23.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -101,6 +101,9 @@ fi %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 +- rebuilt + * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-1 - 1.23.1 - Fix bz #472613 From nphilipp at fedoraproject.org Fri Jul 3 13:06:40 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 3 Jul 2009 13:06:40 +0000 (UTC) Subject: rpms/gegl/devel gegl-0.1.0-cflags.patch, NONE, 1.1 .cvsignore, 1.9, 1.10 gegl.spec, 1.16, 1.17 sources, 1.9, 1.10 Message-ID: <20090703130640.C345511C041A@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gegl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23252 Modified Files: .cvsignore gegl.spec sources Added Files: gegl-0.1.0-cflags.patch Log Message: fix cflags for building gegl-0.1.0-cflags.patch: --- NEW FILE gegl-0.1.0-cflags.patch --- diff -up gegl-0.1.0/operations/workshop/external/Makefile.am.cflags gegl-0.1.0/operations/workshop/external/Makefile.am --- gegl-0.1.0/operations/workshop/external/Makefile.am.cflags 2009-06-28 19:18:20.000000000 +0200 +++ gegl-0.1.0/operations/workshop/external/Makefile.am 2009-07-03 13:32:08.551667739 +0200 @@ -7,7 +7,7 @@ ops = if HAVE_CAIRO line_profile_la_SOURCES = line-profile.c line_profile_la_LIBADD = $(op_libs) $(CAIRO_LIBS) $(PANGO_LIBS) -line_profile_la_CFLAGS = $(CAIRO_CFLAGS) $(PANGO_CFLAGS) $(BABL_CFLAGS) +line_profile_la_CFLAGS = $(CAIRO_CFLAGS) $(PANGO_CFLAGS) $(BABL_CFLAGS) $(GLIB_CFLAGS) ops += line_profile.la endif @@ -15,21 +15,21 @@ if HAVE_GTK ops += gtk_display.la gtk_display_la_SOURCES = gtk-display.c gtk_display_la_LIBADD = $(op_libs) $(GTK_LIBS) -gtk_display_la_CFLAGS = $(GTK_CFLAGS) $(BABL_CFLAGS) +gtk_display_la_CFLAGS = $(GTK_CFLAGS) $(BABL_CFLAGS) $(GLIB_CFLAGS) endif if HAVE_AVFORMAT ops += ff_save.la ff_save_la_SOURCES = ff-save.c ff_save_la_LIBADD = $(op_libs) $(AVFORMAT_LIBS) -lswscale -ff_save_la_CFLAGS = $(AM_CFLAGS) $(AVFORMAT_CFLAGS) +ff_save_la_CFLAGS = $(AM_CFLAGS) $(AVFORMAT_CFLAGS) $(GLIB_CFLAGS) endif if HAVE_LUA ops += gluas.la gluas_la_SOURCES = gluas.c gluas_la_LIBADD = $(op_libs) $(LUA_LIBS) -gluas_la_CFLAGS = $(LUA_CFLAGS) +gluas_la_CFLAGS = $(LUA_CFLAGS) $(BABL_CFLAGS) $(GLIB_CFLAGS) endif opdir = $(libdir)/gegl- at GEGL_API_VERSION@ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 2 Jul 2009 12:46:41 -0000 1.9 +++ .cvsignore 3 Jul 2009 13:06:40 -0000 1.10 @@ -1 +1,2 @@ gegl-0.1.0.tar.bz2 +gegl-0.1.0-autoreconf.patch.bz2 Index: gegl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/gegl.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gegl.spec 2 Jul 2009 14:10:30 -0000 1.16 +++ gegl.spec 3 Jul 2009 13:06:40 -0000 1.17 @@ -7,6 +7,8 @@ License: LGPLv3+ and GPLv3+ Group: System Environment/Libraries URL: http://www.gegl.org/ Source0: ftp://ftp.gtk.org/pub/gegl/0.1/%{name}-%{version}.tar.bz2 +Patch0: gegl-0.1.0-cflags.patch +Patch1: gegl-0.1.0-autoreconf.patch.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: asciidoc BuildRequires: babl-devel >= 0.1.0 @@ -49,6 +51,8 @@ developing with %{name}. %prep %setup -q chmod -x operations/external/ff-load.c operations/common/perlin/perlin.* +%patch0 -p1 -b .cflags +%patch1 -p1 -b .autoreconf %build %configure \ @@ -101,7 +105,10 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog -* Thu Jul 02 2009 Nils Philippsen - 0.1.0-1 +* Fri Jul 02 2009 Nils Philippsen - 0.1.0-1 +- fix cflags for building + +* Thu Jul 02 2009 Nils Philippsen - version 0.1.0 - use "--disable-gtk-doc" to avoid rebuilding documentation (#481404) - remove *.la files in %%{_libdir}/gegl-*/ (#509292) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 2 Jul 2009 12:46:42 -0000 1.9 +++ sources 3 Jul 2009 13:06:40 -0000 1.10 @@ -1 +1,2 @@ 5a989ad617801c5dbec3d47c30bd64f0 gegl-0.1.0.tar.bz2 +b571b86849b943955208fb7caf02d079 gegl-0.1.0-autoreconf.patch.bz2 From pkgdb at fedoraproject.org Fri Jul 3 13:08:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 13:08:19 +0000 Subject: [pkgdb] fish ownership updated Message-ID: <20090703130819.E70C410F88E@bastion2.fedora.phx.redhat.com> Package fish in Fedora 10 is now owned by arbiter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From pkgdb at fedoraproject.org Fri Jul 3 13:08:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 13:08:23 +0000 Subject: [pkgdb] fish ownership updated Message-ID: <20090703130823.29EB210F8A2@bastion2.fedora.phx.redhat.com> Package fish in Fedora 11 is now owned by arbiter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From pkgdb at fedoraproject.org Fri Jul 3 13:08:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 13:08:31 +0000 Subject: [pkgdb] fish had acl change status Message-ID: <20090703130831.2A75E10F8A6@bastion2.fedora.phx.redhat.com> arbiter has set the watchcommits acl on fish (Fedora 11) to Approved for jaswinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fish From lfarkas at fedoraproject.org Fri Jul 3 13:10:43 2009 From: lfarkas at fedoraproject.org (Levente Farkas) Date: Fri, 3 Jul 2009 13:10:43 +0000 (UTC) Subject: rpms/gstreamer-java/devel gstreamer-java.spec,1.7,1.8 Message-ID: <20090703131043.9891C11C041A@cvs1.fedora.phx.redhat.com> Author: lfarkas Update of /cvs/pkgs/rpms/gstreamer-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24099/devel Modified Files: gstreamer-java.spec Log Message: remove empty debuginfo subpackages Index: gstreamer-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-java/devel/gstreamer-java.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gstreamer-java.spec 30 Jun 2009 19:54:15 -0000 1.7 +++ gstreamer-java.spec 3 Jul 2009 13:10:43 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Java interface to the gstreamer framework Name: gstreamer-java Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 and CC-BY-SA Group: System Environment/Libraries URL: http://code.google.com/p/gstreamer-java/ @@ -20,6 +20,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version # since noarch pacakge can't contain ExcludeArch :-( imho it's an rpm bug #BuildArch: noarch ExcludeArch: ppc ppc64 +# Don't build debuginfo packages since it's actualy a noarch package +%global debug_package %{nil} Requires: java >= 1:1.6.0 Requires: jpackage-utils @@ -123,6 +125,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 3 2009 Levente Farkas - 1.2-2 +- don't build debuginfo pacakges since it's actualy a noarch pacakge + * Tue Jun 30 2009 Levente Farkas - 1.2-1 - update to the new upstream version - don't use build-classpath for SWT on any platform since it's broken in most cases From lfarkas at fedoraproject.org Fri Jul 3 13:11:13 2009 From: lfarkas at fedoraproject.org (Levente Farkas) Date: Fri, 3 Jul 2009 13:11:13 +0000 (UTC) Subject: rpms/gstreamer-java/F-10 gstreamer-java.spec,1.4,1.5 Message-ID: <20090703131113.4A1D111C048C@cvs1.fedora.phx.redhat.com> Author: lfarkas Update of /cvs/pkgs/rpms/gstreamer-java/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24099/F-10 Modified Files: gstreamer-java.spec Log Message: remove empty debuginfo subpackages Index: gstreamer-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-java/F-10/gstreamer-java.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gstreamer-java.spec 30 Jun 2009 19:56:23 -0000 1.4 +++ gstreamer-java.spec 3 Jul 2009 13:10:43 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Java interface to the gstreamer framework Name: gstreamer-java Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 and CC-BY-SA Group: System Environment/Libraries URL: http://code.google.com/p/gstreamer-java/ @@ -20,6 +20,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version # since noarch pacakge can't contain ExcludeArch :-( imho it's an rpm bug #BuildArch: noarch ExcludeArch: ppc ppc64 +# Don't build debuginfo packages since it's actualy a noarch package +%global debug_package %{nil} Requires: java >= 1:1.6.0 Requires: jpackage-utils @@ -123,6 +125,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 3 2009 Levente Farkas - 1.2-2 +- don't build debuginfo pacakges since it's actualy a noarch pacakge + * Tue Jun 30 2009 Levente Farkas - 1.2-1 - update to the new upstream version - don't use build-classpath for SWT on any platform since it's broken in most cases From lfarkas at fedoraproject.org Fri Jul 3 13:11:13 2009 From: lfarkas at fedoraproject.org (Levente Farkas) Date: Fri, 3 Jul 2009 13:11:13 +0000 (UTC) Subject: rpms/gstreamer-java/EL-5 gstreamer-java.spec,1.4,1.5 Message-ID: <20090703131113.2707311C041A@cvs1.fedora.phx.redhat.com> Author: lfarkas Update of /cvs/pkgs/rpms/gstreamer-java/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24099/EL-5 Modified Files: gstreamer-java.spec Log Message: remove empty debuginfo subpackages Index: gstreamer-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-java/EL-5/gstreamer-java.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gstreamer-java.spec 30 Jun 2009 20:01:32 -0000 1.4 +++ gstreamer-java.spec 3 Jul 2009 13:10:42 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Java interface to the gstreamer framework Name: gstreamer-java Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 and CC-BY-SA Group: System Environment/Libraries URL: http://code.google.com/p/gstreamer-java/ @@ -20,6 +20,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version # since noarch pacakge can't contain ExcludeArch :-( imho it's an rpm bug #BuildArch: noarch ExcludeArch: ppc ppc64 +# Don't build debuginfo packages since it's actualy a noarch package +%global debug_package %{nil} Requires: java >= 1:1.6.0 Requires: jpackage-utils @@ -123,6 +125,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 3 2009 Levente Farkas - 1.2-2 +- don't build debuginfo pacakges since it's actualy a noarch pacakge + * Tue Jun 30 2009 Levente Farkas - 1.2-1 - update to the new upstream version - don't use build-classpath for SWT on any platform since it's broken in most cases From lfarkas at fedoraproject.org Fri Jul 3 13:11:13 2009 From: lfarkas at fedoraproject.org (Levente Farkas) Date: Fri, 3 Jul 2009 13:11:13 +0000 (UTC) Subject: rpms/gstreamer-java/F-11 gstreamer-java.spec,1.7,1.8 Message-ID: <20090703131113.690EA11C0492@cvs1.fedora.phx.redhat.com> Author: lfarkas Update of /cvs/pkgs/rpms/gstreamer-java/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24099/F-11 Modified Files: gstreamer-java.spec Log Message: remove empty debuginfo subpackages Index: gstreamer-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-java/F-11/gstreamer-java.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gstreamer-java.spec 30 Jun 2009 19:58:22 -0000 1.7 +++ gstreamer-java.spec 3 Jul 2009 13:10:43 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Java interface to the gstreamer framework Name: gstreamer-java Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 and CC-BY-SA Group: System Environment/Libraries URL: http://code.google.com/p/gstreamer-java/ @@ -20,6 +20,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version # since noarch pacakge can't contain ExcludeArch :-( imho it's an rpm bug #BuildArch: noarch ExcludeArch: ppc ppc64 +# Don't build debuginfo packages since it's actualy a noarch package +%global debug_package %{nil} Requires: java >= 1:1.6.0 Requires: jpackage-utils @@ -123,6 +125,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 3 2009 Levente Farkas - 1.2-2 +- don't build debuginfo pacakges since it's actualy a noarch pacakge + * Tue Jun 30 2009 Levente Farkas - 1.2-1 - update to the new upstream version - don't use build-classpath for SWT on any platform since it's broken in most cases From arbiter at fedoraproject.org Fri Jul 3 13:11:41 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:11:41 +0000 (UTC) Subject: rpms/fish/F-10 fish.spec,1.26,1.27 sources,1.9,1.10 Message-ID: <20090703131141.8D4DB11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24327 Modified Files: fish.spec sources Log Message: new upstream release Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-10/fish.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- fish.spec 15 Sep 2008 20:39:14 -0000 1.26 +++ fish.spec 3 Jul 2009 13:11:11 -0000 1.27 @@ -1,11 +1,11 @@ Summary: A friendly interactive shell Name: fish -Version: 1.23.0 -Release: 6%{?dist} +Version: 1.23.1 +Release: 2%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ -Source0: http://roo.no-ip.org/%{name}/files/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://fishshell.org/files/%{version}/fish-%{version}.tar.bz2 # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -13,9 +13,9 @@ BuildRequires: ncurses-devel ge BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel -%description -fish is a shell geared towards interactive use. Its features are -focused on user friendliness and discoverability. The language syntax +%description +fish is a shell geared towards interactive use. Its features are +focused on user friendliness and discoverability. The language syntax is simple but incompatible with other shell languages. %prep @@ -32,7 +32,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR="$RPM_BUILD_ROOT" +make install DESTDIR="$RPM_BUILD_ROOT" # Find translation files %find_lang %{name}.\* @@ -61,6 +61,7 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* +%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -88,6 +89,7 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* +%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -99,6 +101,16 @@ fi %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 +- rebuilt + +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-1 +- 1.23.1 +- Fix bz #472613 + +* Tue Feb 24 2009 Fedora Release Engineering - 1.23.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Sep 15 2008 Tom "spot" Callaway - 1.23.0-6 - cleanups - define ARG_MAX properly so it compiles Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Jan 2008 09:05:18 -0000 1.9 +++ sources 3 Jul 2009 13:11:11 -0000 1.10 @@ -1 +1 @@ -aa2f09bb54652b16bf4f7708848a7416 fish-1.23.0.tar.bz2 +ead6b7c6cdb21f35a3d4aa1d5fa596f1 fish-1.23.1.tar.bz2 From arbiter at fedoraproject.org Fri Jul 3 13:11:52 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:11:52 +0000 (UTC) Subject: rpms/fish/F-11 fish.spec,1.27,1.28 sources,1.9,1.10 Message-ID: <20090703131152.2AB6F11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24373 Modified Files: fish.spec sources Log Message: new upstream release Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-11/fish.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- fish.spec 24 Feb 2009 17:19:30 -0000 1.27 +++ fish.spec 3 Jul 2009 13:11:21 -0000 1.28 @@ -1,11 +1,11 @@ Summary: A friendly interactive shell Name: fish -Version: 1.23.0 -Release: 7%{?dist} +Version: 1.23.1 +Release: 2%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ -Source0: http://roo.no-ip.org/%{name}/files/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://fishshell.org/files/%{version}/fish-%{version}.tar.bz2 # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -13,9 +13,9 @@ BuildRequires: ncurses-devel ge BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel -%description -fish is a shell geared towards interactive use. Its features are -focused on user friendliness and discoverability. The language syntax +%description +fish is a shell geared towards interactive use. Its features are +focused on user friendliness and discoverability. The language syntax is simple but incompatible with other shell languages. %prep @@ -32,7 +32,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR="$RPM_BUILD_ROOT" +make install DESTDIR="$RPM_BUILD_ROOT" # Find translation files %find_lang %{name}.\* @@ -61,6 +61,7 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* +%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -88,6 +89,7 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* +%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -99,6 +101,13 @@ fi %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 +- rebuilt + +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-1 +- 1.23.1 +- Fix bz #472613 + * Tue Feb 24 2009 Fedora Release Engineering - 1.23.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Jan 2008 09:05:18 -0000 1.9 +++ sources 3 Jul 2009 13:11:22 -0000 1.10 @@ -1 +1 @@ -aa2f09bb54652b16bf4f7708848a7416 fish-1.23.0.tar.bz2 +ead6b7c6cdb21f35a3d4aa1d5fa596f1 fish-1.23.1.tar.bz2 From jwrdegoede at fedoraproject.org Fri Jul 3 13:15:49 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Fri, 3 Jul 2009 13:15:49 +0000 (UTC) Subject: rpms/openmsx/devel .cvsignore, 1.4, 1.5 openmsx-0.6.1-installbase.patch, 1.1, 1.2 openmsx.spec, 1.10, 1.11 sources, 1.4, 1.5 Message-ID: <20090703131549.8886F11C041A@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/openmsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25387 Modified Files: .cvsignore openmsx-0.6.1-installbase.patch openmsx.spec sources Log Message: * Fri Jul 3 2009 Hans de Goede 0.7.2-1 - New upstream release 0.7.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Apr 2009 14:04:10 -0000 1.4 +++ .cvsignore 3 Jul 2009 13:15:19 -0000 1.5 @@ -1 +1 @@ -openmsx-0.7.0.tar.gz +openmsx-0.7.2.tar.gz openmsx-0.6.1-installbase.patch: Index: openmsx-0.6.1-installbase.patch =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/openmsx-0.6.1-installbase.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openmsx-0.6.1-installbase.patch 28 Aug 2007 19:41:35 -0000 1.1 +++ openmsx-0.6.1-installbase.patch 3 Jul 2009 13:15:19 -0000 1.2 @@ -1,5 +1,6 @@ ---- openmsx-0.6.1/build/custom.mk.orig 2005-12-22 04:53:18.000000000 +0000 -+++ openmsx-0.6.1/build/custom.mk 2006-08-06 18:28:59.000000000 +0100 +diff -up openmsx-0.7.2/build/custom.mk.orig openmsx-0.7.2/build/custom.mk +--- openmsx-0.7.2/build/custom.mk.orig 2009-06-29 23:38:05.000000000 +0200 ++++ openmsx-0.7.2/build/custom.mk 2009-07-03 12:37:05.000000000 +0200 @@ -6,7 +6,7 @@ # openMSX is always installed into a single self-contained directory. # But you can change that directory to for example /usr/local/openMSX @@ -8,8 +9,8 @@ +INSTALL_BASE:=/usr # Add ChangeLog version number to executable file name? This applies only to - # development versions, not to release versions (see version.mk). -@@ -16,7 +16,7 @@ + # development versions, not to release versions (see version.py). +@@ -16,7 +16,7 @@ VERSION_EXEC:=false # This link is placed in a location that is typically in a user's path: # /usr/local/bin for system-wide installs and ~/bin for personal installs. # This setting is only relevant on systems that support symbolic links. Index: openmsx.spec =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/openmsx.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- openmsx.spec 10 Apr 2009 14:04:10 -0000 1.10 +++ openmsx.spec 3 Jul 2009 13:15:19 -0000 1.11 @@ -1,5 +1,5 @@ Name: openmsx -Version: 0.7.0 +Version: 0.7.2 Release: 1%{?dist} Summary: An emulator for the MSX home computer system Group: Applications/Emulators @@ -7,8 +7,6 @@ License: GPL+ URL: http://openmsx.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Patch0: openmsx-0.6.1-installbase.patch -Patch1: openmsx-0.6.1-flavour.patch -Patch2: openmsx-0.6.3-datadir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: docbook-utils @@ -30,8 +28,6 @@ all aspects of the MSX with 100% accurac %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p1 # Verbose compilation sed -i 's/@$(COMPILE_ENV)/$(COMPILE_ENV)/' build/main.mk @@ -46,34 +42,37 @@ cat > build/flavour-rpm.mk << EOF # RPM opt flavour: # Opt flags. -CXXFLAGS+=%{optflags} +CXXFLAGS+=%{optflags} -DNDEBUG # Dont strip exe, let rpm do it and save debug info OPENMSX_STRIP:=false EOF -# Move documentation to a sensible location -echo 'System ROM Dir: %{_datadir}/%{name}/systemroms' > systemroms-README +# Give README's a sensible name +echo 'System ROM Dir: %{_datadir}/%{name}/systemroms' > doc/systemroms-README cat share/systemroms/README >> doc/systemroms-README -rm -f share/systemroms/README +touch -r share/systemroms/README doc/systemroms-README -echo '%{_datadir}/%{name}/machines/Boosted_MSX2_EN/roms' > Boosted_MSX2_EN-roms-README +echo '%{_datadir}/%{name}/machines/Boosted_MSX2_EN/roms' > doc/Boosted_MSX2_EN-roms-README cat share/machines/Boosted_MSX2_EN/roms/README >> doc/Boosted_MSX2_EN-roms-README -rm -f share/machines/Boosted_MSX2_EN/roms/README +touch -r share/machines/Boosted_MSX2_EN/roms/README doc/Boosted_MSX2_EN-roms-README -echo '%{_datadir}/%{name}/machines/Boosted_MSX2_EN' > Boosted_MSX2_EN-README +echo '%{_datadir}/%{name}/machines/Boosted_MSX2_EN' > doc/Boosted_MSX2_EN-README cat share/machines/Boosted_MSX2_EN/README >> doc/Boosted_MSX2_EN-README -rm -f share/machines/Boosted_MSX2_EN/README +touch -r share/machines/Boosted_MSX2_EN/README doc/Boosted_MSX2_EN-README + +# Some clean ups +rm share/extensions/msxdos2/roms/SHA1SUMS %build %configure -make %{?_smp_mflags} +make %{?_smp_mflags} OPENMSX_FLAVOUR=rpm INSTALL_SHARE_DIR=%{_datadir}/%{name}\ + INSTALL_DOC_DIR=%{_docdir}/%{name}-%{version} # Build desktop icon cat >%{name}.desktop </dev/null || : %postun -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %files %defattr(-,root,root,-) +%doc %{_docdir}/%{name}-%{version} %{_bindir}/%{name} %{_datadir}/%{name} %{_datadir}/applications/fedora-%{name}.desktop @@ -150,10 +148,12 @@ fi %{_mandir}/man1/%{name}.1.gz %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/settings.xml -%doc AUTHORS ChangeLog GPL README doc/* %changelog +* Fri Jul 3 2009 Hans de Goede 0.7.2-1 +- New upstream release 0.7.2 + * Fri Apr 10 2009 Hans de Goede 0.7.0-1 - New upstream release 0.7.0 Index: sources =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Apr 2009 14:04:10 -0000 1.4 +++ sources 3 Jul 2009 13:15:19 -0000 1.5 @@ -1 +1 @@ -ea5c07225ee28713c0cda8f8edcfab05 openmsx-0.7.0.tar.gz +1f6338be7d3db6827ddb7b57daa8e37f openmsx-0.7.2.tar.gz From jwrdegoede at fedoraproject.org Fri Jul 3 13:15:57 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Fri, 3 Jul 2009 13:15:57 +0000 (UTC) Subject: rpms/cbios/devel .cvsignore, 1.2, 1.3 cbios.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090703131557.A1A9511C041A@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/cbios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25441 Modified Files: .cvsignore cbios.spec sources Log Message: * Fri Jul 3 2009 Hans de Goede 0.23-1 - New upstream release 0.23 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/cbios/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 28 Aug 2007 18:20:20 -0000 1.2 +++ .cvsignore 3 Jul 2009 13:15:27 -0000 1.3 @@ -1 +1 @@ -cbios-0.21.zip +cbios-0.23.zip Index: cbios.spec =================================================================== RCS file: /cvs/extras/rpms/cbios/devel/cbios.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cbios.spec 24 Feb 2009 06:38:59 -0000 1.4 +++ cbios.spec 3 Jul 2009 13:15:27 -0000 1.5 @@ -1,8 +1,8 @@ %define machines %{_datadir}/openmsx/machines Name: cbios -Version: 0.21 -Release: 4%{?dist} +Version: 0.23 +Release: 1%{?dist} Summary: A third party BIOS compatible with the MSX BIOS Group: Applications/Emulators License: BSD @@ -55,13 +55,19 @@ install -pm 0644 derived/bin/* %{buildro cp -a configs/openMSX/C-BIOS_MSX* %{buildroot}%{machines} ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX1/roms\ ../../../../%{name}/cbios_main_msx1.rom +ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX1/roms\ + ../../../../%{name}/cbios_logo_msx1.rom ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2/roms\ ../../../../%{name}/cbios_main_msx2.rom ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2/roms\ + ../../../../%{name}/cbios_logo_msx2.rom +ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2/roms\ ../../../../%{name}/cbios_sub.rom ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2+/roms\ ../../../../%{name}/cbios_main_msx2+.rom ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2+/roms\ + ../../../../%{name}/cbios_logo_msx2+.rom +ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2+/roms\ ../../../../%{name}/cbios_sub.rom ln -s --target-directory=%{buildroot}%{machines}/C-BIOS_MSX2+/roms\ ../../../../%{name}/cbios_music.rom @@ -85,6 +91,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 3 2009 Hans de Goede 0.23-1 +- New upstream release 0.23 + * Mon Feb 23 2009 Fedora Release Engineering - 0.21-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/cbios/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 28 Aug 2007 18:20:20 -0000 1.2 +++ sources 3 Jul 2009 13:15:27 -0000 1.3 @@ -1 +1 @@ -038286f886c1666bc56993f95b50a7f2 cbios-0.21.zip +c3cd58a9c4b6307e65eef3ebbe89f1c6 cbios-0.23.zip From arbiter at fedoraproject.org Fri Jul 3 13:27:51 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:27:51 +0000 (UTC) Subject: rpms/fish/F-10 fish.spec,1.27,1.28 Message-ID: <20090703132751.0D64511C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28495 Modified Files: fish.spec Log Message: fix file list, use system-wide xsel Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-10/fish.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- fish.spec 3 Jul 2009 13:11:11 -0000 1.27 +++ fish.spec 3 Jul 2009 13:27:50 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish Version: 1.23.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -9,6 +9,7 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel @@ -94,13 +95,16 @@ fi %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager %attr(0755,root,root) %{_bindir}/fish_indent -%attr(0755,root,root) %{_bindir}/xsel %attr(0755,root,root) %{_bindir}/set_color %attr(0755,root,root) %{_bindir}/mimedb %config(noreplace) %{_sysconfdir}/fish %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Fix file list +- Don't use own copy of xsel + * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From arbiter at fedoraproject.org Fri Jul 3 13:28:20 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:28:20 +0000 (UTC) Subject: rpms/fish/F-11 fish.spec,1.28,1.29 Message-ID: <20090703132820.9B3BA11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28483 Modified Files: fish.spec Log Message: fix file list, use system-wide xsel Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-11/fish.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- fish.spec 3 Jul 2009 13:11:21 -0000 1.28 +++ fish.spec 3 Jul 2009 13:27:50 -0000 1.29 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish Version: 1.23.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -9,6 +9,7 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel @@ -94,13 +95,16 @@ fi %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager %attr(0755,root,root) %{_bindir}/fish_indent -%attr(0755,root,root) %{_bindir}/xsel %attr(0755,root,root) %{_bindir}/set_color %attr(0755,root,root) %{_bindir}/mimedb %config(noreplace) %{_sysconfdir}/fish %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Fix file list +- Don't use own copy of xsel + * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From arbiter at fedoraproject.org Fri Jul 3 13:28:21 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:28:21 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.30,1.31 Message-ID: <20090703132821.B382511C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28510 Modified Files: fish.spec Log Message: fix file list, use system-wide xsel Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- fish.spec 3 Jul 2009 12:57:48 -0000 1.30 +++ fish.spec 3 Jul 2009 13:27:51 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish Version: 1.23.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -9,6 +9,7 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel @@ -94,13 +95,16 @@ fi %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager %attr(0755,root,root) %{_bindir}/fish_indent -%attr(0755,root,root) %{_bindir}/xsel %attr(0755,root,root) %{_bindir}/set_color %attr(0755,root,root) %{_bindir}/mimedb %config(noreplace) %{_sysconfdir}/fish %{_datadir}/fish/ %changelog +* Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Fix file list +- Don't use own copy of xsel + * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From arbiter at fedoraproject.org Fri Jul 3 13:30:30 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:30:30 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.31,1.32 Message-ID: <20090703133030.AD98711C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28896 Modified Files: fish.spec Log Message: use --without-xsel Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- fish.spec 3 Jul 2009 13:27:51 -0000 1.31 +++ fish.spec 3 Jul 2009 13:30:00 -0000 1.32 @@ -9,7 +9,7 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: xsel +Suggests: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel @@ -27,7 +27,7 @@ is simple but incompatible with other sh # The docdir argument is to make the name of the documentation # directory 'fish-VERSION', instead of the default, which is simply # 'fish'. -%configure docdir=%{_datadir}/doc/%{name}-%{version} +%configure --without-xsel docdir=%{_datadir}/doc/%{name}-%{version} make %{?_smp_mflags} @@ -62,7 +62,6 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* -%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -90,7 +89,6 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* -%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -102,8 +100,9 @@ fi %changelog * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Pass --without-xsel to configure - Fix file list -- Don't use own copy of xsel +- Suggest xsel but don't Require it * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From nphilipp at fedoraproject.org Fri Jul 3 13:31:10 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 3 Jul 2009 13:31:10 +0000 (UTC) Subject: rpms/gegl/devel gegl.spec,1.17,1.18 Message-ID: <20090703133110.8A09211C041A@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gegl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29139 Modified Files: gegl.spec Log Message: fix paths Index: gegl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/gegl.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gegl.spec 3 Jul 2009 13:06:40 -0000 1.17 +++ gegl.spec 3 Jul 2009 13:31:10 -0000 1.18 @@ -78,7 +78,7 @@ rm -rf %{buildroot} make DESTDIR=%{buildroot} install INSTALL='install -p' rm -f %{buildroot}%{_libdir}/*.la -rm -f %{buildroot}%{_libdir}/gegl-0.1/*.la +rm -f %{buildroot}%{_libdir}/gegl-0.0/*.la %check make check @@ -95,7 +95,7 @@ rm -rf %{buildroot} %doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README %{_bindir}/gegl %{_libdir}/*.so.* -%{_libdir}/gegl-0.1/ +%{_libdir}/gegl-0.0/ %files devel %defattr(-, root, root, -) From arbiter at fedoraproject.org Fri Jul 3 13:32:35 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:32:35 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.32,1.33 Message-ID: <20090703133235.5C84211C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29341 Modified Files: fish.spec Log Message: drop unneeded BS Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- fish.spec 3 Jul 2009 13:30:00 -0000 1.32 +++ fish.spec 3 Jul 2009 13:32:05 -0000 1.33 @@ -12,7 +12,6 @@ BuildRoot: %{_tmppath}/%{na Suggests: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf -BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel %description fish is a shell geared towards interactive use. Its features are @@ -103,6 +102,7 @@ fi - Pass --without-xsel to configure - Fix file list - Suggest xsel but don't Require it +- Drop unneeded BuildRequires * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From arbiter at fedoraproject.org Fri Jul 3 13:34:22 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:34:22 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.33,1.34 Message-ID: <20090703133422.DCBAB11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29679 Modified Files: fish.spec Log Message: meh Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- fish.spec 3 Jul 2009 13:32:05 -0000 1.33 +++ fish.spec 3 Jul 2009 13:33:52 -0000 1.34 @@ -9,7 +9,6 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Suggests: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf @@ -99,9 +98,8 @@ fi %changelog * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 -- Pass --without-xsel to configure +- Pass --without-xsel to configure, if you want xsel install its package instead - Fix file list -- Suggest xsel but don't Require it - Drop unneeded BuildRequires * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 From arbiter at fedoraproject.org Fri Jul 3 13:39:57 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:39:57 +0000 (UTC) Subject: rpms/fish/F-10 fish.spec,1.28,1.29 Message-ID: <20090703133957.54ADA11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30734 Modified Files: fish.spec Log Message: fix Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-10/fish.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- fish.spec 3 Jul 2009 13:27:50 -0000 1.28 +++ fish.spec 3 Jul 2009 13:39:57 -0000 1.29 @@ -9,10 +9,8 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf -BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel %description fish is a shell geared towards interactive use. Its features are @@ -27,7 +25,7 @@ is simple but incompatible with other sh # The docdir argument is to make the name of the documentation # directory 'fish-VERSION', instead of the default, which is simply # 'fish'. -%configure docdir=%{_datadir}/doc/%{name}-%{version} +%configure --without-xsel docdir=%{_datadir}/doc/%{name}-%{version} make %{?_smp_mflags} @@ -62,7 +60,6 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* -%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -90,7 +87,6 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* -%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -102,8 +98,9 @@ fi %changelog * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Pass --without-xsel to configure, if you want xsel install its package instead - Fix file list -- Don't use own copy of xsel +- Drop unneeded BuildRequires * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From arbiter at fedoraproject.org Fri Jul 3 13:40:28 2009 From: arbiter at fedoraproject.org (arbiter) Date: Fri, 3 Jul 2009 13:40:28 +0000 (UTC) Subject: rpms/fish/F-11 fish.spec,1.29,1.30 Message-ID: <20090703134028.5B84B11C041A@cvs1.fedora.phx.redhat.com> Author: arbiter Update of /cvs/pkgs/rpms/fish/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30751 Modified Files: fish.spec Log Message: fix Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/F-11/fish.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- fish.spec 3 Jul 2009 13:27:50 -0000 1.29 +++ fish.spec 3 Jul 2009 13:39:58 -0000 1.30 @@ -9,10 +9,8 @@ Source0: http://fishshell # Emailed to upstream Patch0: fish-1.23.0-ARG_MAX.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: xsel BuildRequires: ncurses-devel gettext groff doxygen BuildRequires: autoconf -BuildRequires: xorg-x11-proto-devel libX11-devel libXt-devel libXext-devel %description fish is a shell geared towards interactive use. Its features are @@ -27,7 +25,7 @@ is simple but incompatible with other sh # The docdir argument is to make the name of the documentation # directory 'fish-VERSION', instead of the default, which is simply # 'fish'. -%configure docdir=%{_datadir}/doc/%{name}-%{version} +%configure --without-xsel docdir=%{_datadir}/doc/%{name}-%{version} make %{?_smp_mflags} @@ -62,7 +60,6 @@ fi %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}-%{version} %{_mandir}/man1/*.1* -%exclude %{_bindir}/xsel %exclude %{_mandir}/man1/count* %exclude %{_mandir}/man1/alias* %exclude %{_mandir}/man1/bg* @@ -90,7 +87,6 @@ fi %exclude %{_mandir}/man1/type* %exclude %{_mandir}/man1/ulimit* %exclude %{_mandir}/man1/umask* -%exclude %{_mandir}/man1/xsel* %attr(0755,root,root) %{_bindir}/fish %attr(0755,root,root) %{_bindir}/fishd %attr(0755,root,root) %{_bindir}/fish_pager @@ -102,8 +98,9 @@ fi %changelog * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 +- Pass --without-xsel to configure, if you want xsel install its package instead - Fix file list -- Don't use own copy of xsel +- Drop unneeded BuildRequires * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-2 - rebuilt From harald at fedoraproject.org Fri Jul 3 13:48:43 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Fri, 3 Jul 2009 13:48:43 +0000 (UTC) Subject: rpms/udev/devel udev-post.init,1.7,1.8 udev.spec,1.283,1.284 Message-ID: <20090703134843.2E4E211C041A@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32307 Modified Files: udev-post.init udev.spec Log Message: * Fri Jul 03 2009 Harald Hoyer 143-2 - add acpi floppy modalias - add retrigger of failed events in udev-post.init - killall pids of udev in %pre Index: udev-post.init =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev-post.init,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- udev-post.init 17 Mar 2008 18:09:38 -0000 1.7 +++ udev-post.init 3 Jul 2009 13:48:12 -0000 1.8 @@ -22,6 +22,12 @@ # See how we were called. case "$1" in start|reload) + STRING=$"Retrigger failed udev events" + echo -n $STRING + /sbin/udevadm trigger --retry-failed + success "$STRING" + echo + STRING=$"Adding udev persistent rules" # copy the rules generated before / was mounted read-write Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v retrieving revision 1.283 retrieving revision 1.284 diff -u -p -r1.283 -r1.284 --- udev.spec 22 Jun 2009 10:47:52 -0000 1.283 +++ udev.spec 3 Jul 2009 13:48:12 -0000 1.284 @@ -5,7 +5,7 @@ Summary: A userspace implementation of devfs Name: udev Version: 143 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base Provides: udev-persistent = %{version}-%{release} @@ -128,7 +128,7 @@ ln -sf ../../sbin/udevadm $RPM_BUILD_ROO ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT/sbin/udevcontrol for i in \ - rules/redhat/40-redhat.rules \ + rules/redhat/40-redhat.rules \ %ifarch ia64 rules/packages/40-ia64.rules \ %endif @@ -158,6 +158,7 @@ mkdir -p -m 0755 $RPM_BUILD_ROOT%{firmwa mkdir -p -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d cat > $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/floppy-pnp.conf </dev/null || /usr/ if test -f /proc/1/exe -a -d /proc/1/root; then if test -x /usr/bin/stat -a "$(/usr/bin/stat -Lc '%%D-%%i' /)" = "$(/usr/bin/stat -Lc '%%D-%%i' /proc/1/root)"; then if test -x /sbin/udevd -a -x /sbin/pidof ; then + /sbin/udevadm control --stop-exec-queue pid=$(/sbin/pidof -c udevd) - if [ -n "$pid" ]; then - kill $pid - fi + while [ -n "$pid" ]; do + for p in $pid; do + kill $hard $p; + done + pid=$(/sbin/pidof -c udevd) + hard="-9" + done fi fi fi @@ -209,28 +215,13 @@ exit 0 # start daemon if we are not in a chroot if test -f /proc/1/exe -a -d /proc/1/root; then if test "$(/usr/bin/stat -Lc '%%D-%%i' /)" = "$(/usr/bin/stat -Lc '%%D-%%i' /proc/1/root)"; then - if test -x /sbin/udevd; then /sbin/udevd -d - fi + /sbin/udevadm control --start-exec-queue fi fi exit 0 -%triggerpostun -- dev <= 0:3.12-1 -if [ $2 = 0 ]; then - if [ -x /sbin/MAKEDEV ]; then - /sbin/MAKEDEV null - else - /bin/mknod /dev/null c 1 3 - fi - /sbin/start_udev >/dev/null 2>&1 - if [ -e /dev/mapper/control -a -x /sbin/lvm ]; then - /sbin/lvm vgmknodes >/dev/null 2>&1 - fi -fi -exit 0 - %triggerin -- selinux-policy rm -f /var/lib/udev/makenode.d/* >/dev/null 2>&1 || : @@ -345,6 +336,11 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{_libdir}/pkgconfig/gudev-1.0* %changelog +* Fri Jul 03 2009 Harald Hoyer 143-2 +- add acpi floppy modalias +- add retrigger of failed events in udev-post.init +- killall pids of udev in %%pre + * Fri Jun 19 2009 Harald Hoyer 143-1 - version 143 @@ -354,7 +350,7 @@ rm -rf $RPM_BUILD_ROOT - git fix: rule-generator: cd - skip by-path links if we create by-id links - git fix: fix possible endless loop for GOTO to non-existent LABEL - git fix: cdrom_id: suppress ID_CDROM_MEDIA_STATE=blank for plain non-writable - CDROM media + CDROM media * Thu Jun 08 2009 Harald Hoyer 142-3 - delay device-mapper changes From rjones at fedoraproject.org Fri Jul 3 13:50:42 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:50:42 +0000 (UTC) Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.16,1.17 Message-ID: <20090703135042.8A0CF11C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv307 Modified Files: ocaml-camlimages.spec Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ocaml-camlimages.spec 23 May 2009 09:03:57 -0000 1.16 +++ ocaml-camlimages.spec 3 Jul 2009 13:50:42 -0000 1.17 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -17,6 +17,9 @@ ExcludeArch: sparc64 s390 s390x Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -63,6 +66,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -108,6 +112,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-9 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Sat May 23 2009 Richard W.M. Jones - 3.0.1-8 - Rebuild for OCaml 3.11.1 From rjones at fedoraproject.org Fri Jul 3 13:52:16 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:52:16 +0000 (UTC) Subject: rpms/ocaml-camlimages/devel camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 Message-ID: <20090703135216.54FE011C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv604 Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Add patch. camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ From rjones at fedoraproject.org Fri Jul 3 13:53:21 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:53:21 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-11 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.14, 1.15 Message-ID: <20090703135321.B810211C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv760 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/ocaml-camlimages.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-camlimages.spec 26 Feb 2009 06:51:27 -0000 1.14 +++ ocaml-camlimages.spec 3 Jul 2009 13:52:51 -0000 1.15 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 7%{?dist} +Release: 7%{?dist}.1 Summary: OCaml image processing library Group: Development/Libraries @@ -16,6 +16,9 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -62,6 +65,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -107,6 +111,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.1 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Fri Jul 3 13:53:30 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 13:53:30 +0000 (UTC) Subject: rpms/openoffice.org/devel .cvsignore, 1.224, 1.225 sources, 1.366, 1.367 Message-ID: <20090703135330.03E5511C041A@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv818 Modified Files: .cvsignore sources Log Message: next sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/.cvsignore,v retrieving revision 1.224 retrieving revision 1.225 diff -u -p -r1.224 -r1.225 --- .cvsignore 28 Jun 2009 15:50:20 -0000 1.224 +++ .cvsignore 3 Jul 2009 13:52:59 -0000 1.225 @@ -9,5 +9,4 @@ openoffice.org-javafilter.desktop or-IN_DEV300_m40.sdf acor_en-GB.dat acor_en-ZA.dat -OOO310_m13.tar.bz2 -OOO310_m14.tar.bz2 +OOO310_m15.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/sources,v retrieving revision 1.366 retrieving revision 1.367 diff -u -p -r1.366 -r1.367 --- sources 28 Jun 2009 15:50:20 -0000 1.366 +++ sources 3 Jul 2009 13:52:59 -0000 1.367 @@ -9,4 +9,4 @@ f501a4d62ed251d360ea6c544177a94f redhat 7d7eb194a61b3b1c59e3c82da889ac27 or-IN_DEV300_m40.sdf f3842c64faf98fe9a8752e4a820c97bc acor_en-GB.dat bccdb30725b178260e5ce74d0ad27879 acor_en-ZA.dat -80ee8ba05d02b6f553ba8a00407825ac OOO310_m14.tar.bz2 +4fb60038d0e39fb124e346ef5832ee1a OOO310_m15.tar.bz2 From rjones at fedoraproject.org Fri Jul 3 13:54:53 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:54:53 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-10 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.10, 1.11 Message-ID: <20090703135453.5C58311C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1237 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/ocaml-camlimages.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-camlimages.spec 3 Nov 2008 18:10:10 -0000 1.10 +++ ocaml-camlimages.spec 3 Jul 2009 13:54:53 -0000 1.11 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 3%{?dist} +Release: 3%{?dist}.1 Summary: OCaml image processing library Group: Development/Libraries @@ -16,6 +16,9 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: camlimages-3.0.1-display-module.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRequires: ocaml >= 3.10.1 BuildRequires: ocaml-lablgtk-devel BuildRequires: ocaml-x11 @@ -62,6 +65,7 @@ Includes documentation provided by ocaml # Gdk.Display submodule clashes with the Display module in # the examples/liv directory, so rename it: %patch0 -p1 +%patch1 -p1 aclocal -I . automake autoconf @@ -107,6 +111,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.1 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Mon Nov 3 2008 Richard W.M. Jones - 3.0.1-3 - +BR gtk2-devel. - +BR ocaml-x11. From caolanm at fedoraproject.org Fri Jul 3 13:55:37 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 13:55:37 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1956,1.1957 Message-ID: <20090703135537.41B0511C041A@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1358 Modified Files: openoffice.org.spec Log Message: next version Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1956 retrieving revision 1.1957 diff -u -p -r1.1956 -r1.1957 --- openoffice.org.spec 2 Jul 2009 13:04:27 -0000 1.1956 +++ openoffice.org.spec 3 Jul 2009 13:55:07 -0000 1.1957 @@ -1,5 +1,5 @@ %define oootag OOO310 -%define ooomilestone 14 +%define ooomilestone 15 %define rh_rpm_release 1 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF @@ -4174,8 +4174,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Thu Jul 02 2009 Caol??n McNamara - 1:3.1.1-14.2 +* Fri Jul 03 2009 Caol??n McNamara - 1:3.1.1-15.1 - Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch +- next milestone * Sun Jun 28 2009 Caol??n McNamara - 1:3.1.1-14.1 - implement MSXML decryption, no querying for passwords though, so From jwrdegoede at fedoraproject.org Fri Jul 3 13:57:09 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Fri, 3 Jul 2009 13:57:09 +0000 (UTC) Subject: rpms/openmsx/devel openmsx.spec,1.11,1.12 Message-ID: <20090703135709.E29AE11C041A@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/openmsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2529 Modified Files: openmsx.spec Log Message: * Fri Jul 3 2009 Hans de Goede 0.7.2-1 - New upstream release 0.7.2 Index: openmsx.spec =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/openmsx.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- openmsx.spec 3 Jul 2009 13:15:19 -0000 1.11 +++ openmsx.spec 3 Jul 2009 13:57:09 -0000 1.12 @@ -14,7 +14,7 @@ BuildRequires: glew-devel >= 1.3.2 BuildRequires: jack-audio-connection-kit-devel BuildRequires: libpng-devel BuildRequires: libxml2-devel -BuildRequires: SDL_image-devel +BuildRequires: SDL_image-devel SDL_ttf-devel BuildRequires: tcl-devel >= 8.4.0 BuildRequires: zlib-devel Requires: cbios-%{name} From rjones at fedoraproject.org Fri Jul 3 13:59:11 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:59:11 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-5 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.1, 1.2 Message-ID: <20090703135911.3040011C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2932 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ocaml-camlimages.spec 5 May 2007 23:23:12 -0000 1.1 +++ ocaml-camlimages.spec 3 Jul 2009 13:59:11 -0000 1.2 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -9,6 +9,10 @@ URL: http://pauillac.inria.fr Source0: ftp://ftp.inria.fr/INRIA/Projects/cristal/caml-light/bazar-ocaml/camlimages-%{version}.tgz Source1: camlimages-2.2.0-htmlref.tar.gz Patch0: camlimages-2.2.0-stubdest.patch + +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lablgtk libpng-devel libjpeg-devel ocaml @@ -40,7 +44,12 @@ Includes documentation provided by ocaml %prep %setup -q -n camlimages-2.2 -a 1 -%patch -p1 +%patch0 -p1 + +pushd png +%patch1 -p2 +popd + sed -i -e 's|LIBRARYDIRS=ppm bmp xvthumb jpeg tiff gif png xpm ps graphics freetype|LIBRARYDIRS=%buildlibs|' Makefile.build.in %build @@ -70,6 +79,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Fri May 04 2007 Nigel Jones 2.2.0-7 - Change to Makefile patch to move .so files to stublibs - Rename to ocaml-camlimages From rjones at fedoraproject.org Fri Jul 3 13:59:36 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 13:59:36 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-4 camlimages-oversized-png-check-CVE-2009-2295.patch, NONE, 1.1 ocaml-camlimages.spec, 1.2, 1.3 Message-ID: <20090703135936.723A511C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3049 Modified Files: ocaml-camlimages.spec Added Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). camlimages-oversized-png-check-CVE-2009-2295.patch: --- NEW FILE camlimages-oversized-png-check-CVE-2009-2295.patch --- --- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 +++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 @@ -26,6 +26,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 +/* Test if x or y are negative, or if multiplying x * y would cause an + * arithmetic overflow. + */ +#define oversized(x, y) \ + ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) + value read_png_file_as_rgb24( name ) value name; { @@ -81,6 +87,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -102,6 +111,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + { int i; png_bytep *row_pointers; @@ -235,6 +247,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); + if (oversized (width, height)) + failwith ("png error: image contains oversized or bogus width and height"); + if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); @@ -251,6 +266,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); + if (oversized (rowbytes, height)) + failwith ("png error: image contains oversized or bogus rowbytes and height"); + /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-4/ocaml-camlimages.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ocaml-camlimages.spec 9 May 2007 02:53:13 -0000 1.2 +++ ocaml-camlimages.spec 3 Jul 2009 13:59:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -9,6 +9,10 @@ URL: http://pauillac.inria.fr Source0: ftp://ftp.inria.fr/INRIA/Projects/cristal/caml-light/bazar-ocaml/camlimages-%{version}.tgz Source1: camlimages-2.2.0-htmlref.tar.gz Patch0: camlimages-2.2.0-stubdest.patch + +# https://bugzilla.redhat.com/show_bug.cgi?id=509531#c4 +Patch1: camlimages-oversized-png-check-CVE-2009-2295.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Excluding on ppc64 due to missing dependencies (Bug #239518) @@ -43,7 +47,12 @@ Includes documentation provided by ocaml %prep %setup -q -n camlimages-2.2 -a 1 -%patch -p1 +%patch0 -p1 + +pushd png +%patch1 -p2 +popd + sed -i -e 's|LIBRARYDIRS=ppm bmp xvthumb jpeg tiff gif png xpm ps graphics freetype|LIBRARYDIRS=%buildlibs|' Makefile.build.in %build @@ -73,6 +82,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +- ocaml-camlimages: PNG reader multiple integer overflows + (CVE 2009-2295 / RHBZ#509531). + * Wed May 09 2007 Nigel Jones 2.2.0-8 - Exclude ppc64 builds due to missing ocaml From rjones at fedoraproject.org Fri Jul 3 14:00:01 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 14:00:01 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-5 ocaml-camlimages.spec,1.2,1.3 Message-ID: <20090703140001.4273111C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3140 Modified Files: ocaml-camlimages.spec Log Message: Bump spec to rebuild. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ocaml-camlimages.spec 3 Jul 2009 13:59:11 -0000 1.2 +++ ocaml-camlimages.spec 3 Jul 2009 14:00:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -79,7 +79,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-8 +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-9 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 3 14:07:20 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 14:07:20 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-5 ocaml-camlimages.spec,1.3,1.4 Message-ID: <20090703140720.165DA11C041A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4448 Modified Files: ocaml-camlimages.spec Log Message: lablgtk -> ocaml-lablgtk Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/ocaml-camlimages.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocaml-camlimages.spec 3 Jul 2009 14:00:01 -0000 1.3 +++ ocaml-camlimages.spec 3 Jul 2009 14:06:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: ocaml-camlimages Version: 2.2.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -15,7 +15,7 @@ Patch1: camlimages-oversized-png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: lablgtk libpng-devel libjpeg-devel ocaml +BuildRequires: ocaml-lablgtk libpng-devel libjpeg-devel ocaml BuildRequires: libXpm-devel ghostscript-devel freetype-devel BuildRequires: giflib-devel Requires: ocaml @@ -79,9 +79,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-9 +* Fri Jul 3 2009 Richard W.M. Jones - 2.2.0-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). +- Changed dep from 'lablgtk' to 'ocaml-lablgtk'. * Fri May 04 2007 Nigel Jones 2.2.0-7 - Change to Makefile patch to move .so files to stublibs From pkgdb at fedoraproject.org Fri Jul 3 14:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:07:42 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140742.CB1EF10F8AA@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:07:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:07:45 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140745.302AE10F8AB@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:07:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:07:49 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140749.3084410F87B@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:08:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:22 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140822.D31E910F87B@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:08:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:24 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140824.D89A610F896@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:08:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:33 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140833.28FFE10F8A4@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:08:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:36 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703140836.F23C710F8A6@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora EPEL 4 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:08:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:46 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140846.509BE10F8AC@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:08:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:47 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140848.20D5E10F8AD@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:08:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:49 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140849.EF68B10F8B1@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:08:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:51 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140851.7940410F8B3@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:08:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:54 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140854.83AB710F8B4@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:08:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:08:55 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703140855.4BF7810F8B5@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:09:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:24 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140924.DC99210F8AB@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:27 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140927.4472610F8A8@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:31 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140932.4CEDE10F8AC@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:34 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140934.9049D10F8B1@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:36 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140937.1C15F10F8B9@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:38 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703140938.8ECCA10F8B2@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 14:09:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:59 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703140959.8FA5F10F8A2@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:09:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:09:57 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703140958.BC64210F8D1@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:10:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:00 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703141001.9C75A10F8BC@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:10:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:05 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703141005.92A5310F8BA@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:10:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:14 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703141015.20CAD10F8AA@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:10:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:17 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703141018.6B82110F8A8@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 14:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:54 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090703141056.7524410F8D2@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Fri Jul 3 14:10:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:51 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090703141052.B777C10F8D8@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Fri Jul 3 14:10:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:55 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090703141057.34B6710F8F5@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Fri Jul 3 14:10:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:49 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090703141052.9F37510F8B2@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Fri Jul 3 14:10:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:52 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090703141057.3564A10F8F9@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Fri Jul 3 14:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:10:54 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703141057.C7A0110F918@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora devel is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:11:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:09 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703141109.894DB10F8A2@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora EPEL 4 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:11:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:23 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703141124.1209410F88E@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora EPEL 5 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:11:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:36 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703141136.C74CF10F8AC@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 10 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:11:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:46 +0000 Subject: [pkgdb] mediawiki-SpecialInterwiki ownership updated Message-ID: <20090703141146.D4A9110F8A3@bastion2.fedora.phx.redhat.com> Package mediawiki-SpecialInterwiki in Fedora 11 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-SpecialInterwiki From pkgdb at fedoraproject.org Fri Jul 3 14:11:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:55 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141155.C3A8410F8B7@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:11:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:57 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141157.1812610F8BC@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:11:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:11:59 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141159.AEB7F10F8BF@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora EPEL 4 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:12:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:03 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141203.535A510F8C8@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:12:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:17 +0000 Subject: [pkgdb] php-pecl-json (un)retirement Message-ID: <20090703141217.1E2FD10F8D6@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora devel has been retired by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:12:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:24 +0000 Subject: [pkgdb] php-pecl-json (un)retirement Message-ID: <20090703141224.44FE310F8DD@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora 10 has been retired by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:12:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:35 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141235.8FD7410F8DB@bastion2.fedora.phx.redhat.com> Package horde in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:37 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141237.4FA7610F8E4@bastion2.fedora.phx.redhat.com> Package horde in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:41 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141241.647A210F8EB@bastion2.fedora.phx.redhat.com> Package horde in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:47 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141248.2244310F8EA@bastion2.fedora.phx.redhat.com> Package horde in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:51 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141251.3887710F8EF@bastion2.fedora.phx.redhat.com> Package horde in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:51 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141251.C81D910F8F4@bastion2.fedora.phx.redhat.com> Package horde in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:12:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:12:53 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703141253.68FF710F91F@bastion2.fedora.phx.redhat.com> Package horde in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 14:13:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:00 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141300.C3C8310F8EC@bastion2.fedora.phx.redhat.com> Package imp in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:01 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141301.3AFBC10F927@bastion2.fedora.phx.redhat.com> Package imp in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:02 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141302.BF9BD10F92C@bastion2.fedora.phx.redhat.com> Package imp in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:08 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141308.5950F10F92F@bastion2.fedora.phx.redhat.com> Package imp in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:06 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141307.11F1C10F92D@bastion2.fedora.phx.redhat.com> Package imp in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:09 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141309.3E44E10F932@bastion2.fedora.phx.redhat.com> Package imp in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:12 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703141312.D1AD810F936@bastion2.fedora.phx.redhat.com> Package imp in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 14:13:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:25 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141325.B000910F8E2@bastion2.fedora.phx.redhat.com> Package ingo in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:29 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141329.A8A4510F91D@bastion2.fedora.phx.redhat.com> Package ingo in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:32 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141332.57A5410F93B@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:35 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141335.AB71110F93F@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:38 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141338.A4D7A10F941@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:40 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141340.C521310F920@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:43 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703141343.6642810F944@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 14:13:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:50 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141350.773F910F912@bastion2.fedora.phx.redhat.com> Package jeta in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:13:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:52 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141352.3C8A710F945@bastion2.fedora.phx.redhat.com> Package jeta in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:13:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:54 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141354.D50C410F949@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:14:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:02 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141402.2760A10F94F@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:13:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:13:59 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141359.9563710F94D@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:14:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:05 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141406.1050910F951@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:14:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:04 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703141404.B27A310F907@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 14:14:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:16 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141416.60E0A10F918@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:20 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141420.645CE10F958@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:22 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141422.448B510F95B@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:26 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141426.7587910F917@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:26 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141427.0A7ED10F95D@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:29 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141429.382B410F960@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:32 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703141432.6FE3910F963@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 14:14:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:14:59 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141500.062C810F905@bastion2.fedora.phx.redhat.com> Package turba in Fedora EPEL 5 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:04 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141504.3EBE510F913@bastion2.fedora.phx.redhat.com> Package turba in Fedora 7 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:00 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141500.A5EA410F90F@bastion2.fedora.phx.redhat.com> Package turba in Fedora devel was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:07 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141507.5AF6810F91B@bastion2.fedora.phx.redhat.com> Package turba in Fedora 8 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:10 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141510.D627510F91E@bastion2.fedora.phx.redhat.com> Package turba in Fedora 10 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:15 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141515.E48DF10F922@bastion2.fedora.phx.redhat.com> Package turba in Fedora 9 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:15:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:15:16 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703141516.29F4010F92A@bastion2.fedora.phx.redhat.com> Package turba in Fedora 11 was orphaned by nigelj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 14:17:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:17:29 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703141729.1BE6710F8D1@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora devel is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:17:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:17:41 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703141741.71A1E10F8D6@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora EPEL 5 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:17:48 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703141749.0635810F8DA@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 10 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From pkgdb at fedoraproject.org Fri Jul 3 14:17:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:17:55 +0000 Subject: [pkgdb] mediawiki-Cite ownership updated Message-ID: <20090703141755.2CCF710F8DD@bastion2.fedora.phx.redhat.com> Package mediawiki-Cite in Fedora 11 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-Cite From than at fedoraproject.org Fri Jul 3 14:19:23 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 14:19:23 +0000 (UTC) Subject: rpms/mozplugger/devel mozplugger.spec,1.30,1.31 Message-ID: <20090703141923.DF10911C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/mozplugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6404 Modified Files: mozplugger.spec Log Message: - fix #469257, selinux policy and mozplugger do not get along Index: mozplugger.spec =================================================================== RCS file: /cvs/extras/rpms/mozplugger/devel/mozplugger.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mozplugger.spec 1 Jul 2009 21:45:28 -0000 1.30 +++ mozplugger.spec 3 Jul 2009 14:18:53 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -11,6 +11,8 @@ Patch1: mozplugger-1.12.1-lib64.patch Requires: m4 Requires: sox +Requires: mozilla-filesystem + BuildPrereq: libX11-devel BuildPrereq: libXt-devel @@ -44,10 +46,13 @@ rm -rf %{buildroot} %doc README COPYING %config /etc/mozpluggerrc %{_bindir}/* -%{_libdir}/mozilla +%{_libdir}/mozilla/plugins/mozplugger.so %{_mandir}/man7/mozplugger.7* %changelog +* Fri Jul 03 2009 Than Ngo - 1.12.1-3 +- fix #469257, selinux policy and mozplugger do not get along + * Thu Jul 2 2009 Ville Skytt?? - 1.12.1-2 - Add dependency on m4 (#453306). From pkgdb at fedoraproject.org Fri Jul 3 14:19:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:19:29 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141929.EB96610F8ED@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora EPEL 5 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From pkgdb at fedoraproject.org Fri Jul 3 14:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 14:19:33 +0000 Subject: [pkgdb] php-pecl-json ownership updated Message-ID: <20090703141933.9F95110F8EE@bastion2.fedora.phx.redhat.com> Package php-pecl-json in Fedora EPEL 4 is now owned by jstanley To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-json From than at fedoraproject.org Fri Jul 3 14:21:31 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 3 Jul 2009 14:21:31 +0000 (UTC) Subject: rpms/mozplugger/devel mozplugger.spec,1.31,1.32 Message-ID: <20090703142131.1493711C041A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/mozplugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6812 Modified Files: mozplugger.spec Log Message: cleanup Index: mozplugger.spec =================================================================== RCS file: /cvs/extras/rpms/mozplugger/devel/mozplugger.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mozplugger.spec 3 Jul 2009 14:18:53 -0000 1.31 +++ mozplugger.spec 3 Jul 2009 14:21:00 -0000 1.32 @@ -13,8 +13,8 @@ Requires: m4 Requires: sox Requires: mozilla-filesystem -BuildPrereq: libX11-devel -BuildPrereq: libXt-devel +BuildRequires: libX11-devel +BuildRequires: libXt-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Obsoletes: plugger From caolanm at fedoraproject.org Fri Jul 3 14:29:18 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 14:29:18 +0000 (UTC) Subject: rpms/openoffice.org/devel workspace.cmcfixes57.patch,1.1,1.2 Message-ID: <20090703142918.B91E511C041A@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9107 Modified Files: workspace.cmcfixes57.patch Log Message: partial duplication in another workspace workspace.cmcfixes57.patch: Index: workspace.cmcfixes57.patch =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/workspace.cmcfixes57.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- workspace.cmcfixes57.patch 15 Apr 2009 15:21:11 -0000 1.1 +++ workspace.cmcfixes57.patch 3 Jul 2009 14:29:18 -0000 1.2 @@ -37,22 +37,3 @@ index bd114be..1fa97cc 100644 ::com::sun::star::lang::XMultiServiceFactory* pServiceManager, \ ::com::sun::star::registry::XRegistryKey* pRegistryKey ) \ { \ -diff -ru sw.orig/source/filter/ww8/ww8par2.cxx sw/source/filter/ww8/ww8par2.cxx ---- sw.orig/source/filter/ww8/ww8par2.cxx 2009-03-10 12:59:18.000000000 +0000 -+++ sw/source/filter/ww8/ww8par2.cxx 2009-03-10 13:51:17.000000000 +0000 -@@ -2509,7 +2509,15 @@ - //ability to set the margin. - SvxLRSpaceItem aL( RES_LR_SPACE ); - // set right to original DxaLeft (i28656) -+#if 0 -+ // Type don't get promoted the intuitive way - aL.SetLeft( !bIsBiDi ? GetMinLeft() : pIo->maSectionManager.GetTextAreaWidth() - nPreferredWidth - nOrgDxaLeft); -+#else -+ if (!bIsBiDi) -+ aL.SetLeft( GetMinLeft() ); -+ else -+ aL.SetLeft( pIo->maSectionManager.GetTextAreaWidth() - nPreferredWidth - nOrgDxaLeft ); -+#endif - aItemSet.Put(aL); - } - } From veillard at fedoraproject.org Fri Jul 3 15:07:13 2009 From: veillard at fedoraproject.org (Daniel Veillard) Date: Fri, 3 Jul 2009 15:07:13 +0000 (UTC) Subject: rpms/libvirt/devel .cvsignore, 1.41, 1.42 libvirt.spec, 1.141, 1.142 sources, 1.42, 1.43 libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch, 1.1, NONE libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch, 1.1, NONE libvirt-0.6.4-fix-nosource-label.patch, 1.1, NONE libvirt-0.6.4-shared-readonly-label.patch, 1.1, NONE Message-ID: <20090703150713.A4BB511C041A@cvs1.fedora.phx.redhat.com> Author: veillard Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16156 Modified Files: .cvsignore libvirt.spec sources Removed Files: libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch libvirt-0.6.4-fix-nosource-label.patch libvirt-0.6.4-shared-readonly-label.patch Log Message: Upstream release of libvirt-0.6.5, Daniel Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 29 May 2009 16:57:14 -0000 1.41 +++ .cvsignore 3 Jul 2009 15:07:12 -0000 1.42 @@ -8,3 +8,4 @@ libvirt-0.6.1.tar.gz libvirt-0.6.2.tar.gz libvirt-0.6.3.tar.gz libvirt-0.6.4.tar.gz +libvirt-0.6.5.tar.gz Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.141 retrieving revision 1.142 diff -u -p -r1.141 -r1.142 --- libvirt.spec 3 Jul 2009 10:08:42 -0000 1.141 +++ libvirt.spec 3 Jul 2009 15:07:12 -0000 1.142 @@ -12,13 +12,15 @@ %define with_python 0%{!?_without_python:1} %define with_libvirtd 0%{!?_without_libvirtd:1} %define with_uml 0%{!?_without_uml:1} +%define with_one 0%{!?_without_one:1} %define with_network 0%{!?_without_network:1} %define with_storage_fs 0%{!?_without_storage_fs:1} %define with_storage_lvm 0%{!?_without_storage_lvm:1} %define with_storage_iscsi 0%{!?_without_storage_iscsi:1} %define with_storage_disk 0%{!?_without_storage_disk:1} %define with_numactl 0%{!?_without_numactl:1} - +# default to off +%define with_capng 0%{!?_without_capng:0} # Xen is available only on i386 x86_64 ia64 %ifnarch i386 i586 i686 x86_64 ia64 @@ -40,35 +42,31 @@ %define with_xen_proxy 0 %endif +%if 0%{?fedora} >= 12 +%define with_capng 0%{!?_without_capng:1} +%endif + # # If building on RHEL switch on the specific support # for the specific Xen version # %if 0%{?fedora} -%define with_rhel5 0 +%define with_rhel5 0 %else -%define with_rhel5 1 +%define with_rhel5 1 %define with_polkit 0 +%define with_one 0 %endif Summary: Library providing a simple API virtualization Name: libvirt -Version: 0.6.4 -Release: 4%{?dist}%{?extra_release} +Version: 0.6.5 +Release: 1%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz -# Handle shared/readonly image labelling (bug #493692) -Patch1: libvirt-0.6.4-shared-readonly-label.patch -# Don't unnecessarily try to change a file context (bug #507555) -Patch2: libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch -# Don't try to label a disk with no path (e.g. empty cdrom) (bug #499569) -Patch3: libvirt-0.6.4-fix-nosource-label.patch -# Fix libvirtd crash with bad capabilities data (bug #505635) -Patch4 :libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch - # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) Patch200: libvirt-0.6.4-svirt-sound.patch @@ -128,6 +126,9 @@ Requires: libselinux %if %{with_xen} BuildRequires: xen-devel %endif +%if %{with_one} +BuildRequires: xmlrpc-c-devel >= 1.14.0 +%endif BuildRequires: libxml2-devel BuildRequires: xhtml1-dtds BuildRequires: readline-devel @@ -141,6 +142,9 @@ BuildRequires: avahi-devel BuildRequires: libselinux-devel BuildRequires: dnsmasq BuildRequires: bridge-utils +%if %{with_qemu} +BuildRequires: qemu +%endif %if %{with_sasl} BuildRequires: cyrus-sasl-devel %endif @@ -176,6 +180,10 @@ BuildRequires: parted-devel # For QEMU/LXC numa info BuildRequires: numactl-devel %endif +%if %{with_capng} +BuildRequires: capng-devel >= 0.5.0 +%endif + Obsoletes: libvir <= 0.2 Provides: libvir = %{version}-%{release} @@ -219,11 +227,6 @@ of recent versions of Linux (and other O %prep %setup -q -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 - %patch200 -p0 mv NEWS NEWS.old @@ -274,6 +277,10 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %define _without_uml --without-uml %endif +%if ! %{with_one} +%define _without_one --without-one +%endif + %if %{with_rhel5} %define _with_rhel5_api --with-rhel5-api %endif @@ -313,6 +320,7 @@ iconv -f ISO-8859-1 -t UTF-8 < NEWS.old %{?_without_python} \ %{?_without_libvirtd} \ %{?_without_uml} \ + %{?_without_one} \ %{?_without_network} \ %{?_with_rhel5_api} \ %{?_without_storage_fs} \ @@ -553,6 +561,11 @@ fi %endif %changelog +* Fri Jul 3 2009 Daniel Veillard - 0.6.5-1.fc12 +- Upstream release of 0.6.5 +- OpenNebula driver +- many bug fixes + * Fri Jul 3 2009 Mark McLoughlin - 0.6.4-4.fc12 - Fix libvirtd crash with bad capabilities data (bug #505635) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 29 May 2009 16:57:14 -0000 1.42 +++ sources 3 Jul 2009 15:07:12 -0000 1.43 @@ -1 +1,2 @@ 344a6913a94582ea3ab0ad75a9bfef22 libvirt-0.6.4.tar.gz +4117001afbb6fc13a9e48ad1531b2add libvirt-0.6.5.tar.gz --- libvirt-0.6.4-do-not-unnecessarily-try-to-change-a-file-context.patch DELETED --- --- libvirt-0.6.4-fix-libvirtd-crash-with-bad-capabilities-data.patch DELETED --- --- libvirt-0.6.4-fix-nosource-label.patch DELETED --- --- libvirt-0.6.4-shared-readonly-label.patch DELETED --- From veillard at fedoraproject.org Fri Jul 3 15:12:14 2009 From: veillard at fedoraproject.org (Daniel Veillard) Date: Fri, 3 Jul 2009 15:12:14 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.142,1.143 Message-ID: <20090703151214.1C50311C041A@cvs1.fedora.phx.redhat.com> Author: veillard Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16762 Modified Files: libvirt.spec Log Message: Remove the qemu BuildRequires I re-added, Daniel Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- libvirt.spec 3 Jul 2009 15:07:12 -0000 1.142 +++ libvirt.spec 3 Jul 2009 15:11:43 -0000 1.143 @@ -142,9 +142,6 @@ BuildRequires: avahi-devel BuildRequires: libselinux-devel BuildRequires: dnsmasq BuildRequires: bridge-utils -%if %{with_qemu} -BuildRequires: qemu -%endif %if %{with_sasl} BuildRequires: cyrus-sasl-devel %endif From veillard at fedoraproject.org Fri Jul 3 15:23:22 2009 From: veillard at fedoraproject.org (Daniel Veillard) Date: Fri, 3 Jul 2009 15:23:22 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.143,1.144 Message-ID: <20090703152322.5EF8811C041A@cvs1.fedora.phx.redhat.com> Author: veillard Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18519 Modified Files: libvirt.spec Log Message: Fix libcap-ng-devel require, Daniel Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- libvirt.spec 3 Jul 2009 15:11:43 -0000 1.143 +++ libvirt.spec 3 Jul 2009 15:22:52 -0000 1.144 @@ -178,7 +178,7 @@ BuildRequires: parted-devel BuildRequires: numactl-devel %endif %if %{with_capng} -BuildRequires: capng-devel >= 0.5.0 +BuildRequires: libcap-ng-devel >= 0.5.0 %endif Obsoletes: libvir <= 0.2 From caolanm at fedoraproject.org Fri Jul 3 15:38:57 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 15:38:57 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch, NONE, 1.1 openoffice.org.spec, 1.1957, 1.1958 Message-ID: <20090703153857.E92B011C041A@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21313 Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch Log Message: openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch: --- NEW FILE openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch --- diff -ru vcl.orig/inc/vcl/sndstyle.hxx vcl/inc/vcl/sndstyle.hxx --- vcl.orig/inc/vcl/sndstyle.hxx 2009-07-02 10:10:49.000000000 +0100 +++ vcl/inc/vcl/sndstyle.hxx 2009-07-03 16:08:55.000000000 +0100 @@ -43,7 +43,6 @@ #define SOUND_WARNING ((SoundType)2) #define SOUND_ERROR ((SoundType)3) #define SOUND_QUERY ((SoundType)4) - -#define SOUND_DISABLE (SOUND_DEFAULT) +#define SOUND_DISABLE ((SoundType)5) #endif // _SV_SNDSTYLE_HXX diff -ru vcl.orig/win/source/window/salframe.cxx vcl/win/source/window/salframe.cxx --- vcl.orig/win/source/window/salframe.cxx 2009-07-02 10:10:22.000000000 +0100 +++ vcl/win/source/window/salframe.cxx 2009-07-03 16:10:27.000000000 +0100 @@ -3157,7 +3157,8 @@ MB_ICONASTERISK, // SOUND_INFO MB_ICONEXCLAMATION, // SOUND_WARNING MB_ICONHAND, // SOUND_ERROR - MB_ICONQUESTION // SOUND_QUERY + MB_ICONQUESTION, // SOUND_QUERY + 0 // SOUND_DISABLE }; MessageBeep( aImplSoundTab[eSoundType] ); Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1957 retrieving revision 1.1958 diff -u -p -r1.1957 -r1.1958 --- openoffice.org.spec 3 Jul 2009 13:55:07 -0000 1.1957 +++ openoffice.org.spec 3 Jul 2009 15:38:27 -0000 1.1958 @@ -152,6 +152,7 @@ Patch74: workspace.aw073.patch Patch75: workspace.cmcfixes60.patch Patch76: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch Patch77: openoffice.org-3.1.0.ooo103145.vcl.kwinworkaround.patch +Patch78: openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1661,6 +1662,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch75 -p0 -b .workspace.cmcfixes60.patch %patch76 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch %patch77 -p0 -b .ooo103145.vcl.kwinworkaround.patch +%patch78 -p0 -b .ooo103319.vcl.canttakethebeeping.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4174,6 +4176,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Fri Jul 03 2009 Caol??n McNamara - 1:3.1.1-15.2 +- add openoffice.org-3.1.0.ooo103319.vcl.canttakethebeeping.patch + * Fri Jul 03 2009 Caol??n McNamara - 1:3.1.1-15.1 - Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch - next milestone From twaugh at fedoraproject.org Fri Jul 3 15:55:35 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 3 Jul 2009 15:55:35 +0000 (UTC) Subject: rpms/ghostscript/F-11 ghostscript.spec,1.188,1.189 Message-ID: <20090703155535.82A6411C041A@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/ghostscript/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23964 Modified Files: ghostscript.spec Log Message: * Fri Jul 3 2009 Tim Waugh 8.64-10 - Re-enabled optimization. Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/F-11/ghostscript.spec,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- ghostscript.spec 3 Jul 2009 08:58:31 -0000 1.188 +++ ghostscript.spec 3 Jul 2009 15:55:35 -0000 1.189 @@ -5,7 +5,7 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 URL: http://www.ghostscript.com/ @@ -174,13 +174,13 @@ cd .. %if %{build_with_freetype} FT_CFLAGS=$(pkg-config --cflags freetype2) -make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} \ +make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \ FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype -make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} \ +make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \ FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype %else -make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} -make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS -O0" prefix=%{_prefix} +make so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} +make RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} %endif make cups @@ -310,8 +310,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Fri Jul 3 2009 Tim Waugh 8.64-10 +- Re-enabled optimization. + * Fri Jul 3 2009 Tim Waugh 8.64-9 -- Disabled debugging to aid investigation of bug #509329. +- Disabled optimization to aid investigation of bug #509329. * Wed Jun 10 2009 Tim Waugh 8.64-8 - Fix scripts so they don't get broken on install (bug #502550). From ghosler at fedoraproject.org Fri Jul 3 16:10:58 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Fri, 3 Jul 2009 16:10:58 +0000 (UTC) Subject: rpms/gyachi/devel .cvsignore, 1.26, 1.27 gyachi.spec, 1.45, 1.46 sources, 1.30, 1.31 Message-ID: <20090703161058.45B5011C041A@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26909 Modified Files: .cvsignore gyachi.spec sources Log Message: Fix double post problem when chatting w/ a YM-9 client Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 2 Jul 2009 13:24:06 -0000 1.26 +++ .cvsignore 3 Jul 2009 16:10:27 -0000 1.27 @@ -1 +1 @@ -gyachi-1.2.0.tar.gz +gyachi-1.2.1.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/gyachi.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gyachi.spec 2 Jul 2009 13:24:06 -0000 1.45 +++ gyachi.spec 3 Jul 2009 16:10:28 -0000 1.46 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.2.0 +Version: 1.2.1 Release: 4%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -371,6 +371,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Gregory D Hosler - 1.2.1-4 +- Fix double post of YM-9 client text. + * Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 - Fixed Yahoo PM text problem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 2 Jul 2009 13:24:06 -0000 1.30 +++ sources 3 Jul 2009 16:10:28 -0000 1.31 @@ -1 +1 @@ -80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz +fd3f55e5176ccd39ff34ae2b39c51a4e gyachi-1.2.1.tar.gz From ghosler at fedoraproject.org Fri Jul 3 16:16:35 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Fri, 3 Jul 2009 16:16:35 +0000 (UTC) Subject: rpms/gyachi/F-11 .cvsignore, 1.26, 1.27 gyachi.spec, 1.45, 1.46 sources, 1.30, 1.31 Message-ID: <20090703161635.AD81511C041A@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27855 Modified Files: .cvsignore gyachi.spec sources Log Message: Fix double post problem when chatting w/ a YM-9 client Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 2 Jul 2009 12:58:00 -0000 1.26 +++ .cvsignore 3 Jul 2009 16:16:05 -0000 1.27 @@ -1 +1 @@ -gyachi-1.2.0.tar.gz +gyachi-1.2.1.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/gyachi.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gyachi.spec 2 Jul 2009 12:58:00 -0000 1.45 +++ gyachi.spec 3 Jul 2009 16:16:05 -0000 1.46 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.2.0 +Version: 1.2.1 Release: 4%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -371,6 +371,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Gregory D Hosler - 1.2.1-4 +- Fix double post of YM-9 client text. + * Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 - Fixed Yahoo PM text problem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-11/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 2 Jul 2009 12:58:00 -0000 1.30 +++ sources 3 Jul 2009 16:16:05 -0000 1.31 @@ -1 +1 @@ -80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz +fd3f55e5176ccd39ff34ae2b39c51a4e gyachi-1.2.1.tar.gz From ghosler at fedoraproject.org Fri Jul 3 16:18:06 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Fri, 3 Jul 2009 16:18:06 +0000 (UTC) Subject: rpms/gyachi/F-10 .cvsignore, 1.25, 1.26 gyachi.spec, 1.36, 1.37 sources, 1.25, 1.26 Message-ID: <20090703161806.C707811C00E3@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28084 Modified Files: .cvsignore gyachi.spec sources Log Message: Fix double post problem when chatting w/ a YM-9 client Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 2 Jul 2009 13:04:16 -0000 1.25 +++ .cvsignore 3 Jul 2009 16:17:36 -0000 1.26 @@ -1 +1 @@ -gyachi-1.2.0.tar.gz +gyachi-1.2.1.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/gyachi.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- gyachi.spec 2 Jul 2009 13:04:16 -0000 1.36 +++ gyachi.spec 3 Jul 2009 16:17:36 -0000 1.37 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.2.0 +Version: 1.2.1 Release: 3%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -373,6 +373,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Gregory D Hosler - 1.2.1-4 +- Fix double post of YM-9 client text. + * Thu Jul 2 2009 Gregory D Hosler - 1.2.0-3 - Fixed Yahoo PM text problem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/F-10/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 2 Jul 2009 13:04:16 -0000 1.25 +++ sources 3 Jul 2009 16:17:36 -0000 1.26 @@ -1 +1 @@ -80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz +fd3f55e5176ccd39ff34ae2b39c51a4e gyachi-1.2.1.tar.gz From hadess at fedoraproject.org Fri Jul 3 16:19:26 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 3 Jul 2009 16:19:26 +0000 (UTC) Subject: rpms/bluez/devel bluez.spec,1.76,1.77 Message-ID: <20090703161926.EA99011C0419@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28450 Modified Files: bluez.spec Log Message: * Fri Jul 03 2009 Bastien Nocera 4.43-2 - Up the required udev requires so bluetoothd gets started on boot when an adapter is present Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- bluez.spec 3 Jul 2009 11:24:10 -0000 1.76 +++ bluez.spec 3 Jul 2009 16:18:56 -0000 1.77 @@ -1,7 +1,7 @@ Summary: Bluetooth utilities Name: bluez Version: 4.43 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz @@ -44,7 +44,7 @@ Requires: initscripts, bluez-libs = %{ve Requires: dbus >= 0.60 Requires: hwdata >= 0.215 Requires: dbus-bluez-pin-helper -Requires: udev >= 130 +Requires: udev >= 143-2 Requires(preun): /sbin/chkconfig, /sbin/service Requires(post): /sbin/chkconfig, /sbin/service @@ -269,6 +269,10 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Fri Jul 03 2009 Bastien Nocera 4.43-2 +- Up the required udev requires so bluetoothd gets started + on boot when an adapter is present + * Fri Jul 03 2009 Bastien Nocera 4.43-1 - Update to 4.43 From ghosler at fedoraproject.org Fri Jul 3 16:21:27 2009 From: ghosler at fedoraproject.org (Gregory D Hosler) Date: Fri, 3 Jul 2009 16:21:27 +0000 (UTC) Subject: rpms/gyachi/EL-5 .cvsignore, 1.10, 1.11 gyachi.spec, 1.20, 1.21 sources, 1.10, 1.11 Message-ID: <20090703162127.B4C4D11C0419@cvs1.fedora.phx.redhat.com> Author: ghosler Update of /cvs/pkgs/rpms/gyachi/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28799 Modified Files: .cvsignore gyachi.spec sources Log Message: Fix double post problem when chatting w/ a YM-9 client Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 2 Jul 2009 14:10:03 -0000 1.10 +++ .cvsignore 3 Jul 2009 16:20:57 -0000 1.11 @@ -1 +1 @@ -gyachi-1.2.0.tar.gz +gyachi-1.2.1.tar.gz Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/gyachi.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gyachi.spec 2 Jul 2009 14:10:03 -0000 1.20 +++ gyachi.spec 3 Jul 2009 16:20:57 -0000 1.21 @@ -26,7 +26,7 @@ %endif Name: gyachi -Version: 1.2.0 +Version: 1.2.1 Release: 5%{?dist} Summary: A Yahoo! chat client with Webcam and voice support @@ -398,6 +398,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 3 2009 Gregory D Hosler - 1.2.1-4 +- Fix double post of YM-9 client text. + * Thu Jul 2 2009 Gregory D Hosler - 1.2.0-4 - Fixed Yahoo PM text problem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/EL-5/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 2 Jul 2009 14:10:03 -0000 1.10 +++ sources 3 Jul 2009 16:20:57 -0000 1.11 @@ -1 +1 @@ -80ddb7ea4eb7dbf3ab353294f337dec3 gyachi-1.2.0.tar.gz +fd3f55e5176ccd39ff34ae2b39c51a4e gyachi-1.2.1.tar.gz From cwickert at fedoraproject.org Fri Jul 3 16:23:44 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 16:23:44 +0000 (UTC) Subject: rpms/xfce4-clipman-plugin/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xfce4-clipman-plugin.spec, 1.21, 1.22 Message-ID: <20090703162344.2860411C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-clipman-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29400 Modified Files: .cvsignore sources xfce4-clipman-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.0.2-1 - Update to 1.0.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 May 2009 13:36:43 -0000 1.9 +++ .cvsignore 3 Jul 2009 16:23:13 -0000 1.10 @@ -1 +1 @@ -xfce4-clipman-plugin-1.0.1.tar.bz2 +xfce4-clipman-plugin-1.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 May 2009 13:36:43 -0000 1.9 +++ sources 3 Jul 2009 16:23:13 -0000 1.10 @@ -1 +1 @@ -eb97ccc03bc45ab4e788c0564300d373 xfce4-clipman-plugin-1.0.1.tar.bz2 +37fb51a8e268819c5e0c71e26ef4d0f8 xfce4-clipman-plugin-1.0.2.tar.bz2 Index: xfce4-clipman-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/devel/xfce4-clipman-plugin.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xfce4-clipman-plugin.spec 10 Jun 2009 23:35:59 -0000 1.21 +++ xfce4-clipman-plugin.spec 3 Jul 2009 16:23:13 -0000 1.22 @@ -1,6 +1,6 @@ Name: xfce4-clipman-plugin -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: Clipboard manager plugin for the Xfce panel Group: User Interface/Desktops @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.0.2-1 +- Update to 1.0.2 + * Thu Jun 11 2009 Christoph Wickert - 1.0.1-2 - BR desktop-file-utils From hadess at fedoraproject.org Fri Jul 3 16:29:36 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 3 Jul 2009 16:29:36 +0000 (UTC) Subject: rpms/obexd/devel .cvsignore, 1.10, 1.11 obexd.spec, 1.10, 1.11 sources, 1.10, 1.11 Message-ID: <20090703162936.C5F6C11C0419@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/obexd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30415 Modified Files: .cvsignore obexd.spec sources Log Message: * Fri Jul 03 2009 Bastien Nocera 0.14-1 - Update to 0.14 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 8 Jun 2009 08:41:05 -0000 1.10 +++ .cvsignore 3 Jul 2009 16:29:06 -0000 1.11 @@ -1 +1 @@ -obexd-0.13.tar.gz +obexd-0.14.tar.gz Index: obexd.spec =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/obexd.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- obexd.spec 8 Jun 2009 08:41:05 -0000 1.10 +++ obexd.spec 3 Jul 2009 16:29:06 -0000 1.11 @@ -1,5 +1,5 @@ Name: obexd -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: D-Bus service for Obex Client access @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/obex-client.service %changelog +* Fri Jul 03 2009 Bastien Nocera 0.14-1 +- Update to 0.14 + * Mon Jun 08 2009 Bastien Nocera 0.13-1 - Update to 0.13 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 8 Jun 2009 08:41:05 -0000 1.10 +++ sources 3 Jul 2009 16:29:06 -0000 1.11 @@ -1 +1 @@ -8764dcbcd7b5ed80e17b1279a82701b0 obexd-0.13.tar.gz +6f2ba678f944e29333d6dc8ae1133e6e obexd-0.14.tar.gz From drago01 at fedoraproject.org Fri Jul 3 16:44:13 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 3 Jul 2009 16:44:13 +0000 (UTC) Subject: rpms/beagle/devel beagle-0.3.8-fx35.patch, 1.1, 1.2 beagle.spec, 1.166, 1.167 Message-ID: <20090703164413.2251211C0419@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/beagle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1162 Modified Files: beagle-0.3.8-fx35.patch beagle.spec Log Message: Backport upstream fixes to finally fix (RH #477639) beagle-0.3.8-fx35.patch: Index: beagle-0.3.8-fx35.patch =================================================================== RCS file: /cvs/pkgs/rpms/beagle/devel/beagle-0.3.8-fx35.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- beagle-0.3.8-fx35.patch 22 May 2009 15:28:04 -0000 1.1 +++ beagle-0.3.8-fx35.patch 3 Jul 2009 16:44:12 -0000 1.2 @@ -1,6 +1,111 @@ -diff -upNr beagle-0.3.8.orign/firefox-extension/install.rdf beagle-0.3.8/firefox-extension/install.rdf ---- beagle-0.3.8.orign/firefox-extension/install.rdf 2008-06-12 18:11:12.000000000 +0200 -+++ beagle-0.3.8/firefox-extension/install.rdf 2008-12-26 11:42:34.000000000 +0100 +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/beaglePrefs.js beagle-0.3.9/firefox-extension/chrome/content/beaglePrefs.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/beaglePrefs.js 2007-11-27 02:49:59.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/beaglePrefs.js 2009-07-03 18:35:19.421096000 +0200 +@@ -4,7 +4,7 @@ + */ + + // Initiate a new preference instance. +-var gPrefService = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); ++_prefService = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); + + var beaglePref = { + +@@ -31,14 +31,14 @@ var beaglePref = { + //functions used to get/set pref + func_factory:{ + 'get':{ +- 'bool': Function.bind(gPrefService.getBoolPref,gPrefService), +- 'int': Function.bind(gPrefService.getIntPref,gPrefService), +- 'string' : Function.bind(gPrefService.getCharPref,gPrefService) ++ 'bool': Function.bind(_prefService.getBoolPref,_prefService), ++ 'int': Function.bind(_prefService.getIntPref,_prefService), ++ 'string' : Function.bind(_prefService.getCharPref,_prefService) + }, + 'set':{ +- 'bool': Function.bind(gPrefService.setBoolPref,gPrefService), +- 'int' : Function.bind(gPrefService.setIntPref,gPrefService), +- 'string' : Function.bind(gPrefService.setCharPref,gPrefService) ++ 'bool': Function.bind(_prefService.setBoolPref,_prefService), ++ 'int' : Function.bind(_prefService.setIntPref,_prefService), ++ 'string' : Function.bind(_prefService.setCharPref,_prefService) + } + }, + +@@ -320,6 +320,6 @@ var beaglePref = { + log("first run import error"); + log(ex); + } +- }, ++ } + } + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dir.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dir.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dir.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dir.js 2009-07-03 18:35:19.422096000 +0200 +@@ -221,7 +221,7 @@ function() { + return help; + }); + +-jslibDebug('*** load: '+JS_DIR_FILE+' OK'); ++//jslibDebug('*** load: '+JS_DIR_FILE+' OK'); + + } else { + dump("JSLIB library not loaded:\n" + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dirUtils.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dirUtils.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dirUtils.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dirUtils.js 2009-07-03 18:35:19.422096000 +0200 +@@ -173,7 +173,7 @@ get help() { + + }; //END CLASS + +-jslibDebug('*** load: '+JS_DIRUTILS_FILE+' OK'); ++//jslibDebug('*** load: '+JS_DIRUTILS_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/file.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/file.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/file.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/file.js 2009-07-03 18:35:19.422096000 +0200 +@@ -758,7 +758,7 @@ function () + return help; + }) + +-jslibDebug('*** load: '+JS_FILE_FILE+' OK'); ++//jslibDebug('*** load: '+JS_FILE_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/fileUtils.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/fileUtils.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/fileUtils.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/fileUtils.js 2009-07-03 18:35:19.422096000 +0200 +@@ -584,7 +584,7 @@ + + }; + +-jslibDebug('*** load: '+JS_FILEUTILS_FILE+' OK'); ++//jslibDebug('*** load: '+JS_FILEUTILS_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/locale/zh-CN/beagle.dtd beagle-0.3.9/firefox-extension/chrome/locale/zh-CN/beagle.dtd +--- beagle-0.3.9.orign/firefox-extension/chrome/locale/zh-CN/beagle.dtd 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/locale/zh-CN/beagle.dtd 2009-07-03 18:35:19.424096000 +0200 +@@ -31,9 +31,11 @@ + + + +- + + + + + ++ ++ ++ +diff -upNr beagle-0.3.9.orign/firefox-extension/install.rdf beagle-0.3.9/firefox-extension/install.rdf +--- beagle-0.3.9.orign/firefox-extension/install.rdf 2008-07-19 13:47:16.000000000 +0200 ++++ beagle-0.3.9/firefox-extension/install.rdf 2009-07-03 18:36:24.456098274 +0200 @@ -23,7 +23,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} @@ -10,9 +115,9 @@ diff -upNr beagle-0.3.8.orign/firefox-ex -diff -upNr beagle-0.3.8.orign/firefox-extension/install.rdf.in beagle-0.3.8/firefox-extension/install.rdf.in ---- beagle-0.3.8.orign/firefox-extension/install.rdf.in 2008-04-08 18:55:28.000000000 +0200 -+++ beagle-0.3.8/firefox-extension/install.rdf.in 2008-12-26 11:42:40.000000000 +0100 +diff -upNr beagle-0.3.9.orign/firefox-extension/install.rdf.in beagle-0.3.9/firefox-extension/install.rdf.in +--- beagle-0.3.9.orign/firefox-extension/install.rdf.in 2008-04-08 18:55:28.000000000 +0200 ++++ beagle-0.3.9/firefox-extension/install.rdf.in 2009-07-03 18:35:19.424096000 +0200 @@ -23,7 +23,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/devel/beagle.spec,v retrieving revision 1.166 retrieving revision 1.167 diff -u -p -r1.166 -r1.167 --- beagle.spec 22 May 2009 15:28:04 -0000 1.166 +++ beagle.spec 3 Jul 2009 16:44:12 -0000 1.167 @@ -1,6 +1,6 @@ Name: beagle Version: 0.3.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The Beagle Search Infrastructure Group: User Interface/Desktops # see COPYING for details @@ -354,6 +354,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog +* Fri Jul 03 2009 Adel Gadllah - 0.3.9-8 +- Backport upstream fixes to finally fix (RH #477639) + * Fri May 22 2009 Adel Gadllah - 0.3.9-7 - Fix firefox extension (RH #477639) From cwickert at fedoraproject.org Fri Jul 3 16:45:07 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 16:45:07 +0000 (UTC) Subject: rpms/xfce4-clipman-plugin/F-11 .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xfce4-clipman-plugin.spec, 1.21, 1.22 Message-ID: <20090703164507.1AE7F11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-clipman-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1316 Modified Files: .cvsignore sources xfce4-clipman-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.0.2-1 - Update to 1.0.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 15 May 2009 18:54:46 -0000 1.9 +++ .cvsignore 3 Jul 2009 16:44:36 -0000 1.10 @@ -1 +1 @@ -xfce4-clipman-plugin-1.0.1.tar.bz2 +xfce4-clipman-plugin-1.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 15 May 2009 18:54:47 -0000 1.9 +++ sources 3 Jul 2009 16:44:36 -0000 1.10 @@ -1 +1 @@ -eb97ccc03bc45ab4e788c0564300d373 xfce4-clipman-plugin-1.0.1.tar.bz2 +37fb51a8e268819c5e0c71e26ef4d0f8 xfce4-clipman-plugin-1.0.2.tar.bz2 Index: xfce4-clipman-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/F-11/xfce4-clipman-plugin.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xfce4-clipman-plugin.spec 10 Jun 2009 23:53:38 -0000 1.21 +++ xfce4-clipman-plugin.spec 3 Jul 2009 16:44:36 -0000 1.22 @@ -1,6 +1,6 @@ Name: xfce4-clipman-plugin -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: Clipboard manager plugin for the Xfce panel Group: User Interface/Desktops @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.0.2-1 +- Update to 1.0.2 + * Thu Jun 11 2009 Christoph Wickert - 1.0.1-2 - BR desktop-file-utils From drago01 at fedoraproject.org Fri Jul 3 16:44:50 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 3 Jul 2009 16:44:50 +0000 (UTC) Subject: rpms/beagle/F-11 beagle-0.3.8-fx35.patch, 1.1, 1.2 beagle.spec, 1.167, 1.168 Message-ID: <20090703164450.C120C11C0419@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/beagle/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1374 Modified Files: beagle-0.3.8-fx35.patch beagle.spec Log Message: Backport upstream fixes to finally fix (RH #477639) beagle-0.3.8-fx35.patch: Index: beagle-0.3.8-fx35.patch =================================================================== RCS file: /cvs/pkgs/rpms/beagle/F-11/beagle-0.3.8-fx35.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- beagle-0.3.8-fx35.patch 22 May 2009 15:28:54 -0000 1.1 +++ beagle-0.3.8-fx35.patch 3 Jul 2009 16:44:50 -0000 1.2 @@ -1,6 +1,111 @@ -diff -upNr beagle-0.3.8.orign/firefox-extension/install.rdf beagle-0.3.8/firefox-extension/install.rdf ---- beagle-0.3.8.orign/firefox-extension/install.rdf 2008-06-12 18:11:12.000000000 +0200 -+++ beagle-0.3.8/firefox-extension/install.rdf 2008-12-26 11:42:34.000000000 +0100 +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/beaglePrefs.js beagle-0.3.9/firefox-extension/chrome/content/beaglePrefs.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/beaglePrefs.js 2007-11-27 02:49:59.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/beaglePrefs.js 2009-07-03 18:35:19.421096000 +0200 +@@ -4,7 +4,7 @@ + */ + + // Initiate a new preference instance. +-var gPrefService = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); ++_prefService = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); + + var beaglePref = { + +@@ -31,14 +31,14 @@ var beaglePref = { + //functions used to get/set pref + func_factory:{ + 'get':{ +- 'bool': Function.bind(gPrefService.getBoolPref,gPrefService), +- 'int': Function.bind(gPrefService.getIntPref,gPrefService), +- 'string' : Function.bind(gPrefService.getCharPref,gPrefService) ++ 'bool': Function.bind(_prefService.getBoolPref,_prefService), ++ 'int': Function.bind(_prefService.getIntPref,_prefService), ++ 'string' : Function.bind(_prefService.getCharPref,_prefService) + }, + 'set':{ +- 'bool': Function.bind(gPrefService.setBoolPref,gPrefService), +- 'int' : Function.bind(gPrefService.setIntPref,gPrefService), +- 'string' : Function.bind(gPrefService.setCharPref,gPrefService) ++ 'bool': Function.bind(_prefService.setBoolPref,_prefService), ++ 'int' : Function.bind(_prefService.setIntPref,_prefService), ++ 'string' : Function.bind(_prefService.setCharPref,_prefService) + } + }, + +@@ -320,6 +320,6 @@ var beaglePref = { + log("first run import error"); + log(ex); + } +- }, ++ } + } + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dir.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dir.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dir.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dir.js 2009-07-03 18:35:19.422096000 +0200 +@@ -221,7 +221,7 @@ function() { + return help; + }); + +-jslibDebug('*** load: '+JS_DIR_FILE+' OK'); ++//jslibDebug('*** load: '+JS_DIR_FILE+' OK'); + + } else { + dump("JSLIB library not loaded:\n" + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dirUtils.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dirUtils.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/dirUtils.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/dirUtils.js 2009-07-03 18:35:19.422096000 +0200 +@@ -173,7 +173,7 @@ get help() { + + }; //END CLASS + +-jslibDebug('*** load: '+JS_DIRUTILS_FILE+' OK'); ++//jslibDebug('*** load: '+JS_DIRUTILS_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/file.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/file.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/file.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/file.js 2009-07-03 18:35:19.422096000 +0200 +@@ -758,7 +758,7 @@ function () + return help; + }) + +-jslibDebug('*** load: '+JS_FILE_FILE+' OK'); ++//jslibDebug('*** load: '+JS_FILE_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/fileUtils.js beagle-0.3.9/firefox-extension/chrome/content/jslib/io/fileUtils.js +--- beagle-0.3.9.orign/firefox-extension/chrome/content/jslib/io/fileUtils.js 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/content/jslib/io/fileUtils.js 2009-07-03 18:35:19.422096000 +0200 +@@ -584,7 +584,7 @@ + + }; + +-jslibDebug('*** load: '+JS_FILEUTILS_FILE+' OK'); ++//jslibDebug('*** load: '+JS_FILEUTILS_FILE+' OK'); + + } // END BLOCK JS_LIB_LOADED CHECK + +diff -upNr beagle-0.3.9.orign/firefox-extension/chrome/locale/zh-CN/beagle.dtd beagle-0.3.9/firefox-extension/chrome/locale/zh-CN/beagle.dtd +--- beagle-0.3.9.orign/firefox-extension/chrome/locale/zh-CN/beagle.dtd 2007-11-27 02:49:58.000000000 +0100 ++++ beagle-0.3.9/firefox-extension/chrome/locale/zh-CN/beagle.dtd 2009-07-03 18:35:19.424096000 +0200 +@@ -31,9 +31,11 @@ + + + +- + + + + + ++ ++ ++ +diff -upNr beagle-0.3.9.orign/firefox-extension/install.rdf beagle-0.3.9/firefox-extension/install.rdf +--- beagle-0.3.9.orign/firefox-extension/install.rdf 2008-07-19 13:47:16.000000000 +0200 ++++ beagle-0.3.9/firefox-extension/install.rdf 2009-07-03 18:36:24.456098274 +0200 @@ -23,7 +23,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} @@ -10,9 +115,9 @@ diff -upNr beagle-0.3.8.orign/firefox-ex -diff -upNr beagle-0.3.8.orign/firefox-extension/install.rdf.in beagle-0.3.8/firefox-extension/install.rdf.in ---- beagle-0.3.8.orign/firefox-extension/install.rdf.in 2008-04-08 18:55:28.000000000 +0200 -+++ beagle-0.3.8/firefox-extension/install.rdf.in 2008-12-26 11:42:40.000000000 +0100 +diff -upNr beagle-0.3.9.orign/firefox-extension/install.rdf.in beagle-0.3.9/firefox-extension/install.rdf.in +--- beagle-0.3.9.orign/firefox-extension/install.rdf.in 2008-04-08 18:55:28.000000000 +0200 ++++ beagle-0.3.9/firefox-extension/install.rdf.in 2009-07-03 18:35:19.424096000 +0200 @@ -23,7 +23,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/F-11/beagle.spec,v retrieving revision 1.167 retrieving revision 1.168 diff -u -p -r1.167 -r1.168 --- beagle.spec 31 May 2009 23:44:51 -0000 1.167 +++ beagle.spec 3 Jul 2009 16:44:50 -0000 1.168 @@ -69,7 +69,7 @@ Patch10: beagle-0.3.9-libgnome-desktop-s Patch11: beagle-0.3.9-openfix.patch # Mono is not available on these arches -ExcludeArch: s390 s390x sparc64 +ExcludeArch: s390 s390x sparc64 ppc64 BuildRequires: xulrunner-devel @@ -354,8 +354,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog -* Fri May 29 2009 Xavier Lamien - 0.3.9-8 -- Build arch ppc64. +* Fri Jul 03 2009 Adel Gadllah - 0.3.9-8 +- Backport upstream fixes to finally fix (RH #477639) * Fri May 22 2009 Adel Gadllah - 0.3.9-7 - Fix firefox extension (RH #477639) From drago01 at fedoraproject.org Fri Jul 3 16:46:35 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 3 Jul 2009 16:46:35 +0000 (UTC) Subject: rpms/beagle/F-11 beagle.spec,1.168,1.169 Message-ID: <20090703164635.C0B8711C0419@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/beagle/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1789 Modified Files: beagle.spec Log Message: Backport upstream fixes to finally fix (RH #477639) Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/F-11/beagle.spec,v retrieving revision 1.168 retrieving revision 1.169 diff -u -p -r1.168 -r1.169 --- beagle.spec 3 Jul 2009 16:44:50 -0000 1.168 +++ beagle.spec 3 Jul 2009 16:46:35 -0000 1.169 @@ -1,6 +1,6 @@ Name: beagle Version: 0.3.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: The Beagle Search Infrastructure Group: User Interface/Desktops # see COPYING for details @@ -69,7 +69,7 @@ Patch10: beagle-0.3.9-libgnome-desktop-s Patch11: beagle-0.3.9-openfix.patch # Mono is not available on these arches -ExcludeArch: s390 s390x sparc64 ppc64 +ExcludeArch: s390 s390x sparc64 BuildRequires: xulrunner-devel @@ -354,9 +354,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog -* Fri Jul 03 2009 Adel Gadllah - 0.3.9-8 +* Fri Jul 03 2009 Adel Gadllah - 0.3.9-9 - Backport upstream fixes to finally fix (RH #477639) +* Fri May 29 2009 Xavier Lamien - 0.3.9-8 +- Build arch ppc64. + * Fri May 22 2009 Adel Gadllah - 0.3.9-7 - Fix firefox extension (RH #477639) @@ -800,3 +803,4 @@ rm -rf $RPM_BUILD_ROOT * Fri Nov 18 2005 Alexander Larsson - 0.1.2-1 - Initial version + From pkgdb at fedoraproject.org Fri Jul 3 16:46:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:46:37 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703164637.B5C3910F898@bastion2.fedora.phx.redhat.com> Package horde in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:46:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:46:42 +0000 Subject: [pkgdb] horde had acl change status Message-ID: <20090703164642.3AEED10F8A3@bastion2.fedora.phx.redhat.com> tibbs has set the watchbugzilla acl on horde (Fedora devel) to Obsolete for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:46:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:46:44 +0000 Subject: [pkgdb] horde had acl change status Message-ID: <20090703164645.0594010F88E@bastion2.fedora.phx.redhat.com> tibbs has set the watchcommits acl on horde (Fedora devel) to Obsolete for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:46:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:46:46 +0000 Subject: [pkgdb] horde had acl change status Message-ID: <20090703164646.BA6CD10F8A8@bastion2.fedora.phx.redhat.com> tibbs has set the commit acl on horde (Fedora devel) to Obsolete for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:46:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:46:54 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703164655.058DD10F7E6@bastion2.fedora.phx.redhat.com> Package horde in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:00 +0000 Subject: [pkgdb] horde ownership updated Message-ID: <20090703164700.73A3C10F8A2@bastion2.fedora.phx.redhat.com> Package horde in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:03 +0000 Subject: [pkgdb] horde: tibbs has given up watchcommits Message-ID: <20090703164703.23A3B10F896@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on horde (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:04 +0000 Subject: [pkgdb] horde: tibbs has given up commit Message-ID: <20090703164704.38B7010F8A6@bastion2.fedora.phx.redhat.com> tibbs has given up the commit acl on horde (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:04 +0000 Subject: [pkgdb] horde: tibbs has given up watchbugzilla Message-ID: <20090703164704.DF69E10F8AA@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on horde (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:07 +0000 Subject: [pkgdb] horde: tibbs has given up watchbugzilla Message-ID: <20090703164707.0AEEF10F8AF@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on horde (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:08 +0000 Subject: [pkgdb] horde: tibbs has given up watchcommits Message-ID: <20090703164708.99D9A10F8B1@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on horde (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:09 +0000 Subject: [pkgdb] horde: tibbs has given up commit Message-ID: <20090703164709.7192610F8B3@bastion2.fedora.phx.redhat.com> tibbs has given up the commit acl on horde (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:14 +0000 Subject: [pkgdb] horde: tibbs has requested watchbugzilla Message-ID: <20090703164714.A216A10F7E6@bastion2.fedora.phx.redhat.com> tibbs has requested the watchbugzilla acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:14 +0000 Subject: [pkgdb] horde: tibbs has requested watchcommits Message-ID: <20090703164714.D12F410F89C@bastion2.fedora.phx.redhat.com> tibbs has requested the watchcommits acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:16 +0000 Subject: [pkgdb] horde: tibbs has requested commit Message-ID: <20090703164716.01DD810F8B5@bastion2.fedora.phx.redhat.com> tibbs has requested the commit acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:22 +0000 Subject: [pkgdb] horde: tibbs has given up watchbugzilla Message-ID: <20090703164722.1EDF810F8B7@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:23 +0000 Subject: [pkgdb] horde: tibbs has given up watchcommits Message-ID: <20090703164723.5D38610F8BA@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:47:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:47:23 +0000 Subject: [pkgdb] horde: tibbs has given up commit Message-ID: <20090703164724.0817910F8BB@bastion2.fedora.phx.redhat.com> tibbs has given up the commit acl on horde (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/horde From pkgdb at fedoraproject.org Fri Jul 3 16:48:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:46 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703164846.B793610F8A2@bastion2.fedora.phx.redhat.com> Package imp in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:48:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:48 +0000 Subject: [pkgdb] imp: tibbs has given up watchcommits Message-ID: <20090703164848.5D24810F8A4@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on imp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:48:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:49 +0000 Subject: [pkgdb] imp: tibbs has given up watchbugzilla Message-ID: <20090703164849.2D48610F8A8@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on imp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:48:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:56 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703164856.C8AF810F8A6@bastion2.fedora.phx.redhat.com> Package imp in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:48:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:58 +0000 Subject: [pkgdb] imp: tibbs has given up watchcommits Message-ID: <20090703164858.4557E10F8A7@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on imp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:49:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:02 +0000 Subject: [pkgdb] imp: tibbs has given up watchcommits Message-ID: <20090703164902.319A910F8AF@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on imp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:48:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:48:59 +0000 Subject: [pkgdb] imp: tibbs has given up watchbugzilla Message-ID: <20090703164859.61B9410F8AB@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on imp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:49:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:01 +0000 Subject: [pkgdb] imp ownership updated Message-ID: <20090703164901.8588A10F8B2@bastion2.fedora.phx.redhat.com> Package imp in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:49:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:03 +0000 Subject: [pkgdb] imp: tibbs has given up watchbugzilla Message-ID: <20090703164903.3D43910F8B0@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on imp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/imp From pkgdb at fedoraproject.org Fri Jul 3 16:49:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:27 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703164927.7DB8610F88E@bastion2.fedora.phx.redhat.com> Package ingo in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:27 +0000 Subject: [pkgdb] ingo: tibbs has given up watchcommits Message-ID: <20090703164927.E150610F8A7@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on ingo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:28 +0000 Subject: [pkgdb] ingo: tibbs has given up watchbugzilla Message-ID: <20090703164928.59E0D10F8AA@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on ingo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:33 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703164933.8F05F10F8B1@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:33 +0000 Subject: [pkgdb] ingo: tibbs has given up watchcommits Message-ID: <20090703164933.DDFAA10F8B5@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on ingo (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:35 +0000 Subject: [pkgdb] ingo: tibbs has given up watchbugzilla Message-ID: <20090703164935.6F51510F8B7@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on ingo (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:36 +0000 Subject: [pkgdb] ingo ownership updated Message-ID: <20090703164936.E715E10F8AC@bastion2.fedora.phx.redhat.com> Package ingo in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:37 +0000 Subject: [pkgdb] ingo: tibbs has given up watchbugzilla Message-ID: <20090703164937.7B90810F8B8@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on ingo (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:38 +0000 Subject: [pkgdb] ingo: tibbs has given up watchcommits Message-ID: <20090703164938.A0C6E10F8BB@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on ingo (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ingo From pkgdb at fedoraproject.org Fri Jul 3 16:49:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:41 +0000 Subject: [pkgdb] jeta: tibbs has given up watchcommits Message-ID: <20090703164941.DC16710F8BD@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on jeta (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:42 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703164942.7F78E10F8C0@bastion2.fedora.phx.redhat.com> Package jeta in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:43 +0000 Subject: [pkgdb] jeta: tibbs has given up watchbugzilla Message-ID: <20090703164943.2CFFA10F8C1@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on jeta (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:47 +0000 Subject: [pkgdb] jeta: tibbs has given up watchcommits Message-ID: <20090703164947.81CC710F8D8@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on jeta (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:48 +0000 Subject: [pkgdb] jeta: tibbs has given up watchbugzilla Message-ID: <20090703164948.768C210F8C2@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on jeta (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:48 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703164948.BB1E910F8A3@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:50 +0000 Subject: [pkgdb] jeta: tibbs has given up watchcommits Message-ID: <20090703164950.1EDF810F8C3@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on jeta (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:50 +0000 Subject: [pkgdb] jeta: tibbs has given up watchbugzilla Message-ID: <20090703164950.CE6B210F8C8@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on jeta (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:49:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:49:50 +0000 Subject: [pkgdb] jeta ownership updated Message-ID: <20090703164950.7534810F8C5@bastion2.fedora.phx.redhat.com> Package jeta in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jeta From pkgdb at fedoraproject.org Fri Jul 3 16:50:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:00 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchcommits Message-ID: <20090703165000.2BCC810F88E@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on kronolith (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:00 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703165000.E723310F8A8@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:04 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchcommits Message-ID: <20090703165004.E4A5810F8CD@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on kronolith (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:01 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchbugzilla Message-ID: <20090703165001.5B21F10F8CB@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on kronolith (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:05 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703165005.2E59510F8D0@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:05 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchbugzilla Message-ID: <20090703165005.4F08510F8D2@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on kronolith (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:06 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchcommits Message-ID: <20090703165006.94C3810F8D4@bastion2.fedora.phx.redhat.com> tibbs has given up the watchcommits acl on kronolith (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:07 +0000 Subject: [pkgdb] kronolith ownership updated Message-ID: <20090703165007.7FC4A10F8D6@bastion2.fedora.phx.redhat.com> Package kronolith in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:07 +0000 Subject: [pkgdb] kronolith: tibbs has given up watchbugzilla Message-ID: <20090703165007.92F6B10F8D9@bastion2.fedora.phx.redhat.com> tibbs has given up the watchbugzilla acl on kronolith (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kronolith From pkgdb at fedoraproject.org Fri Jul 3 16:50:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:17 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703165017.2749110F8B3@bastion2.fedora.phx.redhat.com> Package turba in Fedora 10 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 16:50:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:13 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703165013.E7DFA10F8AA@bastion2.fedora.phx.redhat.com> Package turba in Fedora devel is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From pkgdb at fedoraproject.org Fri Jul 3 16:50:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 16:50:18 +0000 Subject: [pkgdb] turba ownership updated Message-ID: <20090703165019.030FC10F8DB@bastion2.fedora.phx.redhat.com> Package turba in Fedora 11 is now owned by tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/turba From cwickert at fedoraproject.org Fri Jul 3 16:57:46 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 16:57:46 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-weather-plugin.spec, 1.18, 1.19 Message-ID: <20090703165746.87E9111C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3594 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Jun 2009 22:47:20 -0000 1.7 +++ .cvsignore 3 Jul 2009 16:57:46 -0000 1.8 @@ -1 +1 @@ -xfce4-weather-plugin-0.6.4.tar.bz2 +xfce4-weather-plugin-0.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Jun 2009 22:47:20 -0000 1.7 +++ sources 3 Jul 2009 16:57:46 -0000 1.8 @@ -1 +1 @@ -f40ebe05913c4bde4f547f966ae1df4e xfce4-weather-plugin-0.6.4.tar.bz2 +761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/xfce4-weather-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-weather-plugin.spec 16 Jun 2009 22:47:20 -0000 1.18 +++ xfce4-weather-plugin.spec 3 Jul 2009 16:57:46 -0000 1.19 @@ -1,5 +1,5 @@ Name: xfce4-weather-plugin -Version: 0.6.4 +Version: 0.7.0 Release: 1%{?dist} Summary: Weather plugin for the Xfce panel @@ -61,6 +61,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 +- Update to 0.7.0 + * Wed Jun 17 2009 Christoph Wickert - 0.6.4-1 - Update to 0.6.4 From twaugh at fedoraproject.org Fri Jul 3 17:14:57 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 3 Jul 2009 17:14:57 +0000 (UTC) Subject: rpms/system-config-printer/F-11 system-config-printer-gutenprint.patch, NONE, 1.1 system-config-printer-packagekit.patch, NONE, 1.1 system-config-printer-stopped-jobs.patch, NONE, 1.1 system-config-printer.spec, 1.266, 1.267 Message-ID: <20090703171457.2B6E411C0419@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7208 Modified Files: system-config-printer.spec Added Files: system-config-printer-gutenprint.patch system-config-printer-packagekit.patch system-config-printer-stopped-jobs.patch Log Message: * Fri Jul 3 2009 Tim Waugh 1.1.8-4 - Use gpk-install-package-name instead of trying to use the D-Bus API. - Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along with the previous fix, addresses bug #509177. - Map gutenprint filenames to the package name. system-config-printer-gutenprint.patch: --- NEW FILE system-config-printer-gutenprint.patch --- diff -up system-config-printer-1.1.8/cupshelpers/cupshelpers.py.gutenprint system-config-printer-1.1.8/cupshelpers/cupshelpers.py --- system-config-printer-1.1.8/cupshelpers/cupshelpers.py.gutenprint 2009-06-17 18:39:51.000000000 +0100 +++ system-config-printer-1.1.8/cupshelpers/cupshelpers.py 2009-07-03 18:09:03.598995561 +0100 @@ -736,8 +736,10 @@ def missingPackagesAndExecutables(ppd): # IJS servers (used by foomatic) 'hpijs': 'hpijs', 'ijsgutenprint.5.0': 'gutenprint', + 'ijsgutenprint.5.2': 'gutenprint', # CUPS filters 'rastertogutenprint.5.0': 'gutenprint-cups', + 'rastertogutenprint.5.2': 'gutenprint-cups', 'commandtoepson': 'gutenprint-cups', 'commandtocanon': 'gutenprint-cups', } system-config-printer-packagekit.patch: --- NEW FILE system-config-printer-packagekit.patch --- diff -up system-config-printer-1.1.8/installpackage.py.packagekit system-config-printer-1.1.8/installpackage.py --- system-config-printer-1.1.8/installpackage.py.packagekit 2009-05-12 10:36:36.000000000 +0100 +++ system-config-printer-1.1.8/installpackage.py 2009-07-03 18:07:09.560995667 +0100 @@ -2,8 +2,8 @@ ## system-config-printer -## Copyright (C) 2008 Red Hat, Inc. -## Copyright (C) 2008 Tim Waugh +## Copyright (C) 2008, 2009 Red Hat, Inc. +## Copyright (C) 2008, 2009 Tim Waugh ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -19,53 +19,18 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -import dbus -import xml.etree.ElementTree -from dbus.mainloop.glib import DBusGMainLoop -DBusGMainLoop (set_as_default=True) +import os +import glib class PackageKit: def __init__ (self): - bus = dbus.SessionBus () - obj = bus.get_object ("org.freedesktop.PackageKit", - "/org/freedesktop/PackageKit") - - # Find out which API is required. - num_args = -1 - introsp = dbus.Interface (obj, "org.freedesktop.DBus.Introspectable") - api = introsp.Introspect () - top = xml.etree.ElementTree.XML (api) - for interface in top.findall ("interface"): - if interface.attrib.get ("name") != "org.freedesktop.PackageKit": - continue - - for method in interface.findall ("method"): - if method.attrib.get ("name") != "InstallPackageName": - continue + for dir in os.environ.get ("PATH", "").split (":"): + path = dir + os.path.sep + "gpk-install-package-name" + if os.access (path, os.X_OK): + self.gpk_install_package_name = path + return - num_args = len (method.findall ("arg")) - break - - if num_args == -1: - raise RuntimeError, "Introspection failed for PackageKit" - - self.proxy = dbus.Interface (obj, "org.freedesktop.PackageKit") - self.num_args = num_args + raise RuntimeError, "No gpk-install-package-name program available" def InstallPackageName (self, xid, timestamp, name): - proxy = self.proxy - if self.num_args == 3: - return proxy.InstallPackageName (xid, timestamp, name, - reply_handler=self.reply_handler, - error_handler=self.error_handler) - else: - # Old PackageKit interface - return proxy.InstallPackageName (name, - reply_handler=self.reply_handler, - error_handler=self.error_handler) - - def reply_handler (self, *args): - pass - - def error_handler (self, *args): - pass + glib.spawn_async ([self.gpk_install_package_name, name]) system-config-printer-stopped-jobs.patch: --- NEW FILE system-config-printer-stopped-jobs.patch --- diff -up system-config-printer-1.1.8/jobviewer.py.stopped-jobs system-config-printer-1.1.8/jobviewer.py --- system-config-printer-1.1.8/jobviewer.py.stopped-jobs 2009-06-17 18:39:51.000000000 +0100 +++ system-config-printer-1.1.8/jobviewer.py 2009-07-03 18:08:28.040995881 +0100 @@ -1375,7 +1375,10 @@ class JobViewer (GtkGUI, monitor.Watcher self.notify_completed_job (jobid) # Look out for stopped jobs. - if (self.trayicon and eventname == 'job-stopped' and + if (self.trayicon and + (eventname == 'job-stopped' or + (eventname == 'job-state-changed' and + event['job-state'] == cups.IPP_JOB_STOPPED))and not jobid in self.stopped_job_prompts): # Why has the job stopped? It might be due to a job error # of some sort, or it might be that the backend requires Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/system-config-printer.spec,v retrieving revision 1.266 retrieving revision 1.267 diff -u -p -r1.266 -r1.267 --- system-config-printer.spec 25 Jun 2009 17:02:14 -0000 1.266 +++ system-config-printer.spec 3 Jul 2009 17:14:56 -0000 1.267 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -21,6 +21,9 @@ Patch4: system-config-printer-remote-loc Patch5: system-config-printer-nmblookup-failure.patch Patch6: system-config-printer-properties-cancel.patch Patch7: system-config-printer-incorrect-auth.patch +Patch8: system-config-printer-packagekit.patch +Patch9: system-config-printer-stopped-jobs.patch +Patch10: system-config-printer-gutenprint.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -77,6 +80,9 @@ the configuration tool. %patch5 -p1 -b .nmblookup-failure %patch6 -p1 -b .properties-cancel %patch7 -p1 -b .incorrect-auth +%patch8 -p1 -b .packagekit +%patch9 -p1 -b .stopped-jobs +%patch10 -p1 -b .gutenprint %build %configure @@ -179,6 +185,12 @@ rm -rf %buildroot exit 0 %changelog +* Fri Jul 3 2009 Tim Waugh 1.1.8-4 +- Use gpk-install-package-name instead of trying to use the D-Bus API. +- Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along + with the previous fix, addresses bug #509177. +- Map gutenprint filenames to the package name. + * Thu Jun 25 2009 Tim Waugh 1.1.8-3 - Use correct 'location' field for printers added remotely. - Parse nmblookup failures correctly in troubleshooter. From cwickert at fedoraproject.org Fri Jul 3 17:15:30 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 17:15:30 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-weather-plugin.spec, 1.17, 1.18 Message-ID: <20090703171530.4EA9111C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7229/F-11 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Jun 2009 22:57:56 -0000 1.7 +++ .cvsignore 3 Jul 2009 17:15:00 -0000 1.8 @@ -1 +1 @@ -xfce4-weather-plugin-0.6.4.tar.bz2 +xfce4-weather-plugin-0.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Jun 2009 22:57:56 -0000 1.7 +++ sources 3 Jul 2009 17:15:00 -0000 1.8 @@ -1 +1 @@ -f40ebe05913c4bde4f547f966ae1df4e xfce4-weather-plugin-0.6.4.tar.bz2 +761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-11/xfce4-weather-plugin.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xfce4-weather-plugin.spec 16 Jun 2009 22:57:56 -0000 1.17 +++ xfce4-weather-plugin.spec 3 Jul 2009 17:15:00 -0000 1.18 @@ -1,5 +1,5 @@ Name: xfce4-weather-plugin -Version: 0.6.4 +Version: 0.7.0 Release: 1%{?dist} Summary: Weather plugin for the Xfce panel @@ -61,6 +61,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 +- Update to 0.7.0 + * Wed Jun 17 2009 Christoph Wickert - 0.6.4-1 - Update to 0.6.4 From cwickert at fedoraproject.org Fri Jul 3 17:15:30 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 17:15:30 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/F-10 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-weather-plugin.spec, 1.15, 1.16 Message-ID: <20090703171530.855F811C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-weather-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7229/F-10 Modified Files: .cvsignore sources xfce4-weather-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Jun 2009 22:57:56 -0000 1.7 +++ .cvsignore 3 Jul 2009 17:15:00 -0000 1.8 @@ -1 +1 @@ -xfce4-weather-plugin-0.6.4.tar.bz2 +xfce4-weather-plugin-0.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Jun 2009 22:57:56 -0000 1.7 +++ sources 3 Jul 2009 17:15:00 -0000 1.8 @@ -1 +1 @@ -f40ebe05913c4bde4f547f966ae1df4e xfce4-weather-plugin-0.6.4.tar.bz2 +761047b6e847d996c8fdb8239873f94d xfce4-weather-plugin-0.7.0.tar.bz2 Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/F-10/xfce4-weather-plugin.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xfce4-weather-plugin.spec 16 Jun 2009 22:57:56 -0000 1.15 +++ xfce4-weather-plugin.spec 3 Jul 2009 17:15:00 -0000 1.16 @@ -1,5 +1,5 @@ Name: xfce4-weather-plugin -Version: 0.6.4 +Version: 0.7.0 Release: 1%{?dist} Summary: Weather plugin for the Xfce panel @@ -61,6 +61,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 +- Update to 0.7.0 + * Wed Jun 17 2009 Christoph Wickert - 0.6.4-1 - Update to 0.6.4 From twaugh at fedoraproject.org Fri Jul 3 17:22:46 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 3 Jul 2009 17:22:46 +0000 (UTC) Subject: rpms/system-config-printer/F-11 system-config-printer-arrows.patch, NONE, 1.1 system-config-printer.spec, 1.267, 1.268 Message-ID: <20090703172246.1AE1C11C0419@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8675 Modified Files: system-config-printer.spec Added Files: system-config-printer-arrows.patch Log Message: * Fri Jul 3 2009 Tim Waugh 1.1.8-5 - Fixed sensitivity of class member selection arrows (bug #508653). system-config-printer-arrows.patch: --- NEW FILE system-config-printer-arrows.patch --- diff -up system-config-printer-1.1.8/glade/NewPrinterWindow.glade.arrows system-config-printer-1.1.8/glade/NewPrinterWindow.glade --- system-config-printer-1.1.8/glade/NewPrinterWindow.glade.arrows 2009-06-03 09:20:26.000000000 +0100 +++ system-config-printer-1.1.8/glade/NewPrinterWindow.glade 2009-07-03 18:18:50.640997051 +0100 @@ -3662,6 +3662,7 @@ DTR/DSR (Hardware) False False False + @@ -3693,6 +3694,7 @@ DTR/DSR (Hardware) True + False True True GTK_RELIEF_NORMAL @@ -3771,6 +3773,7 @@ DTR/DSR (Hardware) True + False True True GTK_RELIEF_NORMAL @@ -3823,6 +3826,7 @@ DTR/DSR (Hardware) False False False + diff -up system-config-printer-1.1.8/system-config-printer.py.arrows system-config-printer-1.1.8/system-config-printer.py --- system-config-printer-1.1.8/system-config-printer.py.arrows 2009-07-03 18:18:36.478996538 +0100 +++ system-config-printer-1.1.8/system-config-printer.py 2009-07-03 18:18:50.643996718 +0100 @@ -174,7 +174,6 @@ def moveClassMembers(treeview_from, tree for row in rows: path = row.get_path() iter = model_from.get_iter(path) - row_data = model_from.get(iter, 0) model_to.append(row_data) model_from.remove(iter) @@ -3547,6 +3546,8 @@ class NewPrinterGUI(GtkGUI): "entNPTDevice", "tvNCMembers", "tvNCNotMembers", + "btnNCAddMember", + "btnNCDelMember", "ntbkPPDSource", "rbtnNPPPD", "tvNPMakes", @@ -4089,11 +4090,23 @@ class NewPrinterGUI(GtkGUI): moveClassMembers(self.tvNCNotMembers, self.tvNCMembers) self.btnNPApply.set_sensitive( bool(getCurrentClassMembers(self.tvNCMembers))) + button.set_sensitive(False) def on_btnNCDelMember_clicked(self, button): moveClassMembers(self.tvNCMembers, self.tvNCNotMembers) self.btnNPApply.set_sensitive( bool(getCurrentClassMembers(self.tvNCMembers))) + button.set_sensitive(False) + + def on_tvNCMembers_cursor_changed(self, widget): + selection = widget.get_selection() + model_from, rows = selection.get_selected_rows() + self.btnNCDelMember.set_sensitive(rows != []) + + def on_tvNCNotMembers_cursor_changed(self, widget): + selection = widget.get_selection() + model_from, rows = selection.get_selected_rows() + self.btnNCAddMember.set_sensitive(rows != []) # Navigation buttons Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/system-config-printer.spec,v retrieving revision 1.267 retrieving revision 1.268 diff -u -p -r1.267 -r1.268 --- system-config-printer.spec 3 Jul 2009 17:14:56 -0000 1.267 +++ system-config-printer.spec 3 Jul 2009 17:22:15 -0000 1.268 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -24,6 +24,7 @@ Patch7: system-config-printer-incorrect- Patch8: system-config-printer-packagekit.patch Patch9: system-config-printer-stopped-jobs.patch Patch10: system-config-printer-gutenprint.patch +Patch11: system-config-printer-arrows.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -83,6 +84,7 @@ the configuration tool. %patch8 -p1 -b .packagekit %patch9 -p1 -b .stopped-jobs %patch10 -p1 -b .gutenprint +%patch11 -p1 -b .arrows %build %configure @@ -185,11 +187,12 @@ rm -rf %buildroot exit 0 %changelog -* Fri Jul 3 2009 Tim Waugh 1.1.8-4 +* Fri Jul 3 2009 Tim Waugh 1.1.8-5 - Use gpk-install-package-name instead of trying to use the D-Bus API. - Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along with the previous fix, addresses bug #509177. - Map gutenprint filenames to the package name. +- Fixed sensitivity of class member selection arrows (bug #508653). * Thu Jun 25 2009 Tim Waugh 1.1.8-3 - Use correct 'location' field for printers added remotely. From twaugh at fedoraproject.org Fri Jul 3 17:31:46 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 3 Jul 2009 17:31:46 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-arrows.patch, NONE, 1.1 system-config-printer-gutenprint.patch, NONE, 1.1 system-config-printer-packagekit.patch, NONE, 1.1 system-config-printer-stopped-jobs.patch, NONE, 1.1 system-config-printer.spec, 1.266, 1.267 Message-ID: <20090703173146.A3E2111C0419@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10930 Modified Files: system-config-printer.spec Added Files: system-config-printer-arrows.patch system-config-printer-gutenprint.patch system-config-printer-packagekit.patch system-config-printer-stopped-jobs.patch Log Message: * Fri Jul 3 2009 Tim Waugh 1.1.8-5 - Use gpk-install-package-name instead of trying to use the D-Bus API. - Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along with the previous fix, addresses bug #509177. - Map gutenprint filenames to the package name. - Fixed sensitivity of class member selection arrows (bug #508653). system-config-printer-arrows.patch: --- NEW FILE system-config-printer-arrows.patch --- diff -up system-config-printer-1.1.8/glade/NewPrinterWindow.glade.arrows system-config-printer-1.1.8/glade/NewPrinterWindow.glade --- system-config-printer-1.1.8/glade/NewPrinterWindow.glade.arrows 2009-06-03 09:20:26.000000000 +0100 +++ system-config-printer-1.1.8/glade/NewPrinterWindow.glade 2009-07-03 18:18:50.640997051 +0100 @@ -3662,6 +3662,7 @@ DTR/DSR (Hardware) False False False + @@ -3693,6 +3694,7 @@ DTR/DSR (Hardware) True + False True True GTK_RELIEF_NORMAL @@ -3771,6 +3773,7 @@ DTR/DSR (Hardware) True + False True True GTK_RELIEF_NORMAL @@ -3823,6 +3826,7 @@ DTR/DSR (Hardware) False False False + diff -up system-config-printer-1.1.8/system-config-printer.py.arrows system-config-printer-1.1.8/system-config-printer.py --- system-config-printer-1.1.8/system-config-printer.py.arrows 2009-07-03 18:18:36.478996538 +0100 +++ system-config-printer-1.1.8/system-config-printer.py 2009-07-03 18:18:50.643996718 +0100 @@ -174,7 +174,6 @@ def moveClassMembers(treeview_from, tree for row in rows: path = row.get_path() iter = model_from.get_iter(path) - row_data = model_from.get(iter, 0) model_to.append(row_data) model_from.remove(iter) @@ -3547,6 +3546,8 @@ class NewPrinterGUI(GtkGUI): "entNPTDevice", "tvNCMembers", "tvNCNotMembers", + "btnNCAddMember", + "btnNCDelMember", "ntbkPPDSource", "rbtnNPPPD", "tvNPMakes", @@ -4089,11 +4090,23 @@ class NewPrinterGUI(GtkGUI): moveClassMembers(self.tvNCNotMembers, self.tvNCMembers) self.btnNPApply.set_sensitive( bool(getCurrentClassMembers(self.tvNCMembers))) + button.set_sensitive(False) def on_btnNCDelMember_clicked(self, button): moveClassMembers(self.tvNCMembers, self.tvNCNotMembers) self.btnNPApply.set_sensitive( bool(getCurrentClassMembers(self.tvNCMembers))) + button.set_sensitive(False) + + def on_tvNCMembers_cursor_changed(self, widget): + selection = widget.get_selection() + model_from, rows = selection.get_selected_rows() + self.btnNCDelMember.set_sensitive(rows != []) + + def on_tvNCNotMembers_cursor_changed(self, widget): + selection = widget.get_selection() + model_from, rows = selection.get_selected_rows() + self.btnNCAddMember.set_sensitive(rows != []) # Navigation buttons system-config-printer-gutenprint.patch: --- NEW FILE system-config-printer-gutenprint.patch --- diff -up system-config-printer-1.1.8/cupshelpers/cupshelpers.py.gutenprint system-config-printer-1.1.8/cupshelpers/cupshelpers.py --- system-config-printer-1.1.8/cupshelpers/cupshelpers.py.gutenprint 2009-06-17 18:39:51.000000000 +0100 +++ system-config-printer-1.1.8/cupshelpers/cupshelpers.py 2009-07-03 18:09:03.598995561 +0100 @@ -736,8 +736,10 @@ def missingPackagesAndExecutables(ppd): # IJS servers (used by foomatic) 'hpijs': 'hpijs', 'ijsgutenprint.5.0': 'gutenprint', + 'ijsgutenprint.5.2': 'gutenprint', # CUPS filters 'rastertogutenprint.5.0': 'gutenprint-cups', + 'rastertogutenprint.5.2': 'gutenprint-cups', 'commandtoepson': 'gutenprint-cups', 'commandtocanon': 'gutenprint-cups', } system-config-printer-packagekit.patch: --- NEW FILE system-config-printer-packagekit.patch --- diff -up system-config-printer-1.1.8/installpackage.py.packagekit system-config-printer-1.1.8/installpackage.py --- system-config-printer-1.1.8/installpackage.py.packagekit 2009-05-12 10:36:36.000000000 +0100 +++ system-config-printer-1.1.8/installpackage.py 2009-07-03 18:07:09.560995667 +0100 @@ -2,8 +2,8 @@ ## system-config-printer -## Copyright (C) 2008 Red Hat, Inc. -## Copyright (C) 2008 Tim Waugh +## Copyright (C) 2008, 2009 Red Hat, Inc. +## Copyright (C) 2008, 2009 Tim Waugh ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -19,53 +19,18 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -import dbus -import xml.etree.ElementTree -from dbus.mainloop.glib import DBusGMainLoop -DBusGMainLoop (set_as_default=True) +import os +import glib class PackageKit: def __init__ (self): - bus = dbus.SessionBus () - obj = bus.get_object ("org.freedesktop.PackageKit", - "/org/freedesktop/PackageKit") - - # Find out which API is required. - num_args = -1 - introsp = dbus.Interface (obj, "org.freedesktop.DBus.Introspectable") - api = introsp.Introspect () - top = xml.etree.ElementTree.XML (api) - for interface in top.findall ("interface"): - if interface.attrib.get ("name") != "org.freedesktop.PackageKit": - continue - - for method in interface.findall ("method"): - if method.attrib.get ("name") != "InstallPackageName": - continue + for dir in os.environ.get ("PATH", "").split (":"): + path = dir + os.path.sep + "gpk-install-package-name" + if os.access (path, os.X_OK): + self.gpk_install_package_name = path + return - num_args = len (method.findall ("arg")) - break - - if num_args == -1: - raise RuntimeError, "Introspection failed for PackageKit" - - self.proxy = dbus.Interface (obj, "org.freedesktop.PackageKit") - self.num_args = num_args + raise RuntimeError, "No gpk-install-package-name program available" def InstallPackageName (self, xid, timestamp, name): - proxy = self.proxy - if self.num_args == 3: - return proxy.InstallPackageName (xid, timestamp, name, - reply_handler=self.reply_handler, - error_handler=self.error_handler) - else: - # Old PackageKit interface - return proxy.InstallPackageName (name, - reply_handler=self.reply_handler, - error_handler=self.error_handler) - - def reply_handler (self, *args): - pass - - def error_handler (self, *args): - pass + glib.spawn_async ([self.gpk_install_package_name, name]) system-config-printer-stopped-jobs.patch: --- NEW FILE system-config-printer-stopped-jobs.patch --- diff -up system-config-printer-1.1.8/jobviewer.py.stopped-jobs system-config-printer-1.1.8/jobviewer.py --- system-config-printer-1.1.8/jobviewer.py.stopped-jobs 2009-06-17 18:39:51.000000000 +0100 +++ system-config-printer-1.1.8/jobviewer.py 2009-07-03 18:08:28.040995881 +0100 @@ -1375,7 +1375,10 @@ class JobViewer (GtkGUI, monitor.Watcher self.notify_completed_job (jobid) # Look out for stopped jobs. - if (self.trayicon and eventname == 'job-stopped' and + if (self.trayicon and + (eventname == 'job-stopped' or + (eventname == 'job-state-changed' and + event['job-state'] == cups.IPP_JOB_STOPPED))and not jobid in self.stopped_job_prompts): # Why has the job stopped? It might be due to a job error # of some sort, or it might be that the backend requires Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.266 retrieving revision 1.267 diff -u -p -r1.266 -r1.267 --- system-config-printer.spec 25 Jun 2009 17:10:34 -0000 1.266 +++ system-config-printer.spec 3 Jul 2009 17:31:46 -0000 1.267 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 3%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -21,6 +21,10 @@ Patch4: system-config-printer-remote-loc Patch5: system-config-printer-nmblookup-failure.patch Patch6: system-config-printer-properties-cancel.patch Patch7: system-config-printer-incorrect-auth.patch +Patch8: system-config-printer-packagekit.patch +Patch9: system-config-printer-stopped-jobs.patch +Patch10: system-config-printer-gutenprint.patch +Patch11: system-config-printer-arrows.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -77,6 +81,10 @@ the configuration tool. %patch5 -p1 -b .nmblookup-failure %patch6 -p1 -b .properties-cancel %patch7 -p1 -b .incorrect-auth +%patch8 -p1 -b .packagekit +%patch9 -p1 -b .stopped-jobs +%patch10 -p1 -b .gutenprint +%patch11 -p1 -b .arrows %build %configure @@ -179,6 +187,13 @@ rm -rf %buildroot exit 0 %changelog +* Fri Jul 3 2009 Tim Waugh 1.1.8-5 +- Use gpk-install-package-name instead of trying to use the D-Bus API. +- Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along + with the previous fix, addresses bug #509177. +- Map gutenprint filenames to the package name. +- Fixed sensitivity of class member selection arrows (bug #508653). + * Thu Jun 25 2009 Tim Waugh 1.1.8-3 - Use correct 'location' field for printers added remotely. - Parse nmblookup failures correctly in troubleshooter. From rjones at fedoraproject.org Fri Jul 3 18:28:48 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:28:48 +0000 (UTC) Subject: rpms/ocaml-camlimages/devel camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182848.9F3CE11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/devel Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:52:16 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:29:17 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:29:17 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-4 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182917.E385211C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/EL-4 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-4/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:59:36 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:47 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:29:18 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:29:18 +0000 (UTC) Subject: rpms/ocaml-camlimages/EL-5 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.1AAE611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/EL-5 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/EL-5/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:59:10 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:47 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:29:18 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:29:18 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-10 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.44D1611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/F-10 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:54:53 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From rjones at fedoraproject.org Fri Jul 3 18:29:18 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:29:18 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-11 camlimages-oversized-png-check-CVE-2009-2295.patch, 1.1, 1.2 Message-ID: <20090703182918.6BBAC11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20504/F-11 Modified Files: camlimages-oversized-png-check-CVE-2009-2295.patch Log Message: Updated patch from https://bugzilla.redhat.com/show_bug.cgi?id=509531#c11 camlimages-oversized-png-check-CVE-2009-2295.patch: Index: camlimages-oversized-png-check-CVE-2009-2295.patch =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/camlimages-oversized-png-check-CVE-2009-2295.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 13:52:51 -0000 1.1 +++ camlimages-oversized-png-check-CVE-2009-2295.patch 3 Jul 2009 18:28:48 -0000 1.2 @@ -1,6 +1,15 @@ ---- camlimages-3.0.1/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 -+++ camlimages-3.0.1-oversized-png-checks/src/pngread.c 2009-07-03 14:19:42.000000000 +0100 -@@ -26,6 +26,12 @@ +--- camlimages-3.0.1.orig/src/pngread.c 2007-01-18 10:29:57.000000000 +0000 ++++ camlimages-3.0.1.oversized/src/pngread.c 2009-07-03 15:51:00.000000000 +0100 +@@ -15,6 +15,8 @@ + #include "config.h" + #endif + ++#include ++ + #include + + #include +@@ -26,6 +28,12 @@ #define PNG_TAG_INDEX16 2 #define PNG_TAG_INDEX4 3 @@ -8,12 +17,12 @@ + * arithmetic overflow. + */ +#define oversized(x, y) \ -+ ((x) < 0 || (y) < 0 || (x) * (y) < (x) || (x) * (y) < (y)) ++ ((x) < 0 || (y) < 0 || ((y) != 0 && (x) > INT_MAX / (y))) + value read_png_file_as_rgb24( name ) value name; { -@@ -81,6 +87,9 @@ +@@ -81,6 +89,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -23,7 +32,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -102,6 +111,9 @@ +@@ -102,10 +113,16 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -33,7 +42,14 @@ { int i; png_bytep *row_pointers; -@@ -235,6 +247,9 @@ + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*) stat_alloc(sizeof(png_bytep) * height); + + res = alloc_tuple(3); +@@ -235,6 +252,9 @@ png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); @@ -43,7 +59,7 @@ if ( color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) { png_set_gray_to_rgb(png_ptr); -@@ -251,6 +266,9 @@ +@@ -251,6 +271,9 @@ rowbytes = png_get_rowbytes(png_ptr, info_ptr); @@ -53,3 +69,13 @@ /* fprintf(stderr, "pngread.c: actual loading\n"); fflush(stderr); */ +@@ -259,6 +282,9 @@ + png_bytep *row_pointers; + char mesg[256]; + ++ if (oversized (sizeof (png_bytep), height)) ++ failwith ("png error: image contains oversized or bogus height"); ++ + row_pointers = (png_bytep*)stat_alloc(sizeof(png_bytep) * height); + res = alloc_tuple(3); + From buhochileno at fedoraproject.org Fri Jul 3 18:43:52 2009 From: buhochileno at fedoraproject.org (Mauricio Henriquez) Date: Fri, 3 Jul 2009 18:43:52 +0000 (UTC) Subject: rpms/monodevelop-debugger-mdb/F-10 import.log, NONE, 1.1 monodevelop-debugger-mdb.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090703184352.A237011C0419@cvs1.fedora.phx.redhat.com> Author: buhochileno Update of /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23920/F-10 Modified Files: .cvsignore sources Added Files: import.log monodevelop-debugger-mdb.spec Log Message: --- NEW FILE import.log --- monodevelop-debugger-mdb-2_0-1_fc10:F-10:monodevelop-debugger-mdb-2.0-1.fc10.src.rpm:1246646367 --- NEW FILE monodevelop-debugger-mdb.spec --- # rpm does not currently pull debuginfo out of mono packages %global debug_package %{nil} Summary: MonoDevelop Debugger Addin Name: monodevelop-debugger-mdb Version: 2.0 Release: 1%{?dist} License: MIT Group: Development/Tools Source: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{version}.tar.bz2 URL: http://www.monodevelop.com BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: monodevelop = %{version} mono-devel mono-debugger-devel monodevelop-devel mono-addins-devel Requires: mono-debugger >= 2.0 ExclusiveArch: %ix86 x86_64 %description Mono Debugger Addin for MonoDevelop. %package devel Summary: Development files for MonoDevelop Debugger Addin Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel Mono Debugger Addin for MonoDevelop. Development package. The %{name}-devel package contains development files for %{name}. %define assembly_path %{_libdir}/monodevelop/AddIns/MonoDevelop.Debugger/ %prep %setup -q sed -i -e 's!@expanded_libdir@/@PACKAGE@/!%{assembly_path}!g' Mono.Debugging.Backend.Mdb/mono.debugging.backend.mdb.pc.in %build ./configure --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --libdir=%{_libdir} make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{assembly_path} if [ %{_libdir} != "/usr/lib" ]; then mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerClient.dll* \ %{buildroot}%{assembly_path} mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerServer.exe* \ %{buildroot}%{assembly_path} rm -r %{buildroot}/usr/lib ; fi ; %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{assembly_path}DebuggerClient.dll* %{assembly_path}DebuggerServer.exe* %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/mono.debugging.backend.mdb.pc %changelog * Thu Jun 04 2009 Mauricio Henriquez - 2.0-1 - Initial packaging with help by Ryan Bair Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:53:49 -0000 1.1 +++ .cvsignore 3 Jul 2009 18:43:22 -0000 1.2 @@ -0,0 +1 @@ +monodevelop-debugger-mdb-2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:53:50 -0000 1.1 +++ sources 3 Jul 2009 18:43:22 -0000 1.2 @@ -0,0 +1 @@ +a63a3f9cf26dcdb1dfc6b6e5f31cb8a4 monodevelop-debugger-mdb-2.0.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 3 18:46:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:46:47 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184647.94DBC10F88E@bastion2.fedora.phx.redhat.com> buhochileno has set the commit acl on monodevelop-debugger-mdb (Fedora devel) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Fri Jul 3 18:46:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:46:57 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184657.6152610F8A2@bastion2.fedora.phx.redhat.com> buhochileno has set the approveacls acl on monodevelop-debugger-mdb (Fedora devel) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Fri Jul 3 18:47:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:47:00 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184701.16E7110F8A4@bastion2.fedora.phx.redhat.com> buhochileno has set the commit acl on monodevelop-debugger-mdb (Fedora 10) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Fri Jul 3 18:47:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:47:03 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184703.8EF5110F8A8@bastion2.fedora.phx.redhat.com> buhochileno has set the approveacls acl on monodevelop-debugger-mdb (Fedora 10) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Fri Jul 3 18:47:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:47:09 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184709.8803810F8AB@bastion2.fedora.phx.redhat.com> buhochileno has set the commit acl on monodevelop-debugger-mdb (Fedora 11) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From pkgdb at fedoraproject.org Fri Jul 3 18:47:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 18:47:12 +0000 Subject: [pkgdb] monodevelop-debugger-mdb had acl change status Message-ID: <20090703184712.4826E10F898@bastion2.fedora.phx.redhat.com> buhochileno has set the approveacls acl on monodevelop-debugger-mdb (Fedora 11) to Approved for palango To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/monodevelop-debugger-mdb From myoung at fedoraproject.org Fri Jul 3 18:55:16 2009 From: myoung at fedoraproject.org (myoung) Date: Fri, 3 Jul 2009 18:55:16 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc1-git9.bz2.sign, NONE, 1.1.2.2 .cvsignore, 1.1014.2.17, 1.1014.2.18 Makefile, 1.97.6.5, 1.97.6.6 config-debug, 1.23.6.2, 1.23.6.3 config-generic, 1.238.6.26, 1.238.6.27 config-nodebug, 1.31.6.3, 1.31.6.4 kernel.spec, 1.1294.2.37, 1.1294.2.38 sources, 1.976.2.18, 1.976.2.19 upstream, 1.888.2.17, 1.888.2.18 linux-2.6-dm-fix-exstore-search.patch, 1.1.2.2, NONE linux-2.6-kmemleak-improvements.patch, 1.1.2.2, NONE patch-2.6.31-rc1-git5.bz2.sign, 1.1.2.2, NONE Message-ID: <20090703185516.6D15411C0419@cvs1.fedora.phx.redhat.com> Author: myoung Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25708 Modified Files: Tag: private-myoung-dom0-branch .cvsignore Makefile config-debug config-generic config-nodebug kernel.spec sources upstream Added Files: Tag: private-myoung-dom0-branch patch-2.6.31-rc1-git9.bz2.sign Removed Files: Tag: private-myoung-dom0-branch linux-2.6-dm-fix-exstore-search.patch linux-2.6-kmemleak-improvements.patch patch-2.6.31-rc1-git5.bz2.sign Log Message: pvops - track rawhide updates --- NEW FILE patch-2.6.31-rc1-git9.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKTAIMyGugalF9Dw4RAn5kAJ9tSeZrd9h+IIt5S9xNqYl9+eqNKwCggWVU bwMBi06i+lofyVJHqGs6Vfs= =oRuM -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1014.2.17 retrieving revision 1.1014.2.18 diff -u -p -r1.1014.2.17 -r1.1014.2.18 --- .cvsignore 30 Jun 2009 18:06:00 -0000 1.1014.2.17 +++ .cvsignore 3 Jul 2009 18:54:45 -0000 1.1014.2.18 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git5.bz2 +patch-2.6.31-rc1-git9.bz2 Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Makefile,v retrieving revision 1.97.6.5 retrieving revision 1.97.6.6 diff -u -p -r1.97.6.5 -r1.97.6.6 --- Makefile 27 Jun 2009 11:05:09 -0000 1.97.6.5 +++ Makefile 3 Jul 2009 18:54:45 -0000 1.97.6.6 @@ -72,7 +72,6 @@ debug: @perl -pi -e 's/# CONFIG_B43LEGACY_DEBUG is not set/CONFIG_B43LEGACY_DEBUG=y/' config-generic @perl -pi -e 's/# CONFIG_MMIOTRACE is not set/CONFIG_MMIOTRACE=y/' config-nodebug @perl -pi -e 's/CONFIG_STRIP_ASM_SYMS=y/# CONFIG_STRIP_ASM_SYMS is not set/' config-nodebug - @perl -pi -e 's/CONFIG_DEBUG_KMEMLEAK=y/# CONFIG_DEBUG_KMEMLEAK is not set/' config-nodebug @# just in case we're going from extremedebug -> debug @perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug @@ -119,7 +118,6 @@ release: @perl -pi -e 's/CONFIG_B43LEGACY_DEBUG=y/# CONFIG_B43LEGACY_DEBUG is not set/' config-generic @perl -pi -e 's/CONFIG_MMIOTRACE=y/# CONFIG_MMIOTRACE is not set/' config-nodebug @perl -pi -e 's/# CONFIG_STRIP_ASM_SYMS is not set/CONFIG_STRIP_ASM_SYMS=y/' config-nodebug - @perl -pi -e 's/# CONFIG_DEBUG_KMEMLEAK is not set/CONFIG_DEBUG_KMEMLEAK=y/' config-nodebug @perl -pi -e 's/CONFIG_NR_CPUS=512/CONFIG_NR_CPUS=64/' config-x86_64-generic Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-debug,v retrieving revision 1.23.6.2 retrieving revision 1.23.6.3 diff -u -p -r1.23.6.2 -r1.23.6.3 --- config-debug 27 Jun 2009 11:05:09 -0000 1.23.6.2 +++ config-debug 3 Jul 2009 18:54:45 -0000 1.23.6.3 @@ -51,6 +51,3 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y -CONFIG_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK_TEST is not set - Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.238.6.26 retrieving revision 1.238.6.27 diff -u -p -r1.238.6.26 -r1.238.6.27 --- config-generic 30 Jun 2009 18:06:00 -0000 1.238.6.26 +++ config-generic 3 Jul 2009 18:54:45 -0000 1.238.6.27 @@ -2827,7 +2827,7 @@ CONFIG_USB_GSPCA_SQ905=m CONFIG_USB_GSPCA_SQ905C=m CONFIG_USB_IBMCAM=m CONFIG_USB_KONICAWC=m -CONFIG_USB_OV511=m +# CONFIG_USB_OV511 is not set CONFIG_USB_S2255=m CONFIG_USB_SE401=m # CONFIG_VIDEO_SH_MOBILE_CEU is not set @@ -2997,7 +2997,7 @@ CONFIG_USB_PWC=m CONFIG_USB_PWC_INPUT_EVDEV=y # CONFIG_USB_PWC_DEBUG is not set # CONFIG_USB_RIO500 is not set -CONFIG_USB_QUICKCAM_MESSENGER=m +# CONFIG_USB_QUICKCAM_MESSENGER is not set CONFIG_USB_SL811_HCD=m CONFIG_USB_SISUSBVGA=m CONFIG_USB_SISUSBVGA_CON=y @@ -4030,6 +4030,8 @@ CONFIG_PPS=m # CONFIG_RDC_17F3101X is not set # CONFIG_FB_UDL is not set +# CONFIG_DEBUG_KMEMLEAK is not set + # # added for xen pvops patch # Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-nodebug,v retrieving revision 1.31.6.3 retrieving revision 1.31.6.4 diff -u -p -r1.31.6.3 -r1.31.6.4 --- config-nodebug 27 Jun 2009 11:05:10 -0000 1.31.6.3 +++ config-nodebug 3 Jul 2009 18:54:45 -0000 1.31.6.4 @@ -50,6 +50,3 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y -CONFIG_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK_TEST is not set - Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1294.2.37 retrieving revision 1.1294.2.38 diff -u -p -r1.1294.2.37 -r1.1294.2.38 --- kernel.spec 30 Jun 2009 18:09:17 -0000 1.1294.2.37 +++ kernel.spec 3 Jul 2009 18:54:45 -0000 1.1294.2.38 @@ -59,7 +59,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 1 # The git snapshot level -%define gitrev 5 +%define gitrev 9 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -677,17 +677,12 @@ Patch2903: linux-2.6-revert-dvb-net-kabi # fs fixes Patch3000: linux-2.6-btrfs-experimental-branch.patch -Patch4000: linux-2.6-kmemleak-improvements.patch - #snmp fixes Patch10000: linux-2.6-missing-rfc2465-stats.patch # VIA Nano / VX8xx updates Patch11010: via-hwmon-temp-sensor.patch -# temporary fixes -Patch12000: linux-2.6-dm-fix-exstore-search.patch - # patches headed upstream Patch19997: xen.pvops.pre.patch @@ -1145,8 +1140,6 @@ ApplyPatch linux-2.6-execshield.patch # btrfs #ApplyPatch linux-2.6-btrfs-experimental-branch.patch -ApplyPatch linux-2.6-kmemleak-improvements.patch - # USB # ACPI @@ -1252,9 +1245,6 @@ ApplyPatch linux-2.6-silence-acpi-blackl #ApplyPatch linux-2.6-v4l-dvb-experimental.patch #ApplyPatch linux-2.6-revert-dvb-net-kabi-change.patch -# temporary fixes, headed upstream -ApplyPatch linux-2.6-dm-fix-exstore-search.patch - ApplyPatch xen.pvops.pre.patch ApplyPatch xen.pvops.patch ApplyPatch xen.pvops.post.patch @@ -1857,6 +1847,20 @@ fi # and build. %changelog +* Fri Jul 03 2009 Hans de Goede +- Disable v4l1 ov511 and quickcam_messenger drivers (obsoleted by + v4l2 gspca subdrivers) + +* Thu Jul 02 2009 Kyle McMartin 2.6.31-0.39.rc1.git9 +- 2.6.31-rc1-git9 +- linux-2.6-dm-fix-exstore-search.patch: similar patch merged upstream. + +* Tue Jun 30 2009 Chuck Ebbert 2.6.31-0.38.rc1.git7 +- 2.6.31-rc1-git7 + +* Tue Jun 30 2009 Dave Jones 2.6.31-0.37.rc1.git5 +- Disable kmemleak. Way too noisy, and not finding any real bugs. + * Tue Jun 30 2009 Michael Young - update pvops from xen/rebase/master branch which should return disk and network support Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.976.2.18 retrieving revision 1.976.2.19 diff -u -p -r1.976.2.18 -r1.976.2.19 --- sources 30 Jun 2009 18:06:05 -0000 1.976.2.18 +++ sources 3 Jul 2009 18:54:45 -0000 1.976.2.19 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 33d2d730beb66aa82349df8b6096fd91 patch-2.6.31-rc1.bz2 -88cffbc86a85adf780014306bd05a602 patch-2.6.31-rc1-git5.bz2 +e5fd406d8910e1dd1f756400488d5921 patch-2.6.31-rc1-git9.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.888.2.17 retrieving revision 1.888.2.18 diff -u -p -r1.888.2.17 -r1.888.2.18 --- upstream 30 Jun 2009 18:06:05 -0000 1.888.2.17 +++ upstream 3 Jul 2009 18:54:46 -0000 1.888.2.18 @@ -1,3 +1,3 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git5.bz2 +patch-2.6.31-rc1-git9.bz2 --- linux-2.6-dm-fix-exstore-search.patch DELETED --- --- linux-2.6-kmemleak-improvements.patch DELETED --- --- patch-2.6.31-rc1-git5.bz2.sign DELETED --- From rjones at fedoraproject.org Fri Jul 3 18:30:36 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:30:36 +0000 (UTC) Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.17,1.18 Message-ID: <20090703183036.3042611C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/devel Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-camlimages.spec 3 Jul 2009 13:50:42 -0000 1.17 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:06 -0000 1.18 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -112,7 +112,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-9 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 3 18:30:35 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:30:35 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-10 ocaml-camlimages.spec,1.11,1.12 Message-ID: <20090703183035.D459711C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/F-10 Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-10/ocaml-camlimages.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-camlimages.spec 3 Jul 2009 13:54:53 -0000 1.11 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:05 -0000 1.12 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 3%{?dist}.1 +Release: 3%{?dist}.2 Summary: OCaml image processing library Group: Development/Libraries @@ -111,7 +111,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.1 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-3.fc10.2 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From rjones at fedoraproject.org Fri Jul 3 18:30:36 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 3 Jul 2009 18:30:36 +0000 (UTC) Subject: rpms/ocaml-camlimages/F-11 ocaml-camlimages.spec,1.15,1.16 Message-ID: <20090703183036.0AAEE11C0419@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-camlimages/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20807/F-11 Modified Files: ocaml-camlimages.spec Log Message: Force rebuild with updated patch. Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/F-11/ocaml-camlimages.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-camlimages.spec 3 Jul 2009 13:52:51 -0000 1.15 +++ ocaml-camlimages.spec 3 Jul 2009 18:30:05 -0000 1.16 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 7%{?dist}.1 +Release: 7%{?dist}.2 Summary: OCaml image processing library Group: Development/Libraries @@ -111,7 +111,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.1 +* Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-7.fc11.2 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From buhochileno at fedoraproject.org Fri Jul 3 18:28:18 2009 From: buhochileno at fedoraproject.org (Mauricio Henriquez) Date: Fri, 3 Jul 2009 18:28:18 +0000 (UTC) Subject: rpms/monodevelop-debugger-mdb/F-11 import.log, NONE, 1.1 monodevelop-debugger-mdb.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090703182818.EFC9511C0419@cvs1.fedora.phx.redhat.com> Author: buhochileno Update of /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20228/F-11 Modified Files: .cvsignore sources Added Files: import.log monodevelop-debugger-mdb.spec Log Message: --- NEW FILE import.log --- monodevelop-debugger-mdb-2_0-1_fc10:F-11:monodevelop-debugger-mdb-2.0-1.fc10.src.rpm:1246645618 --- NEW FILE monodevelop-debugger-mdb.spec --- # rpm does not currently pull debuginfo out of mono packages %global debug_package %{nil} Summary: MonoDevelop Debugger Addin Name: monodevelop-debugger-mdb Version: 2.0 Release: 1%{?dist} License: MIT Group: Development/Tools Source: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{version}.tar.bz2 URL: http://www.monodevelop.com BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: monodevelop = %{version} mono-devel mono-debugger-devel monodevelop-devel mono-addins-devel Requires: mono-debugger >= 2.0 ExclusiveArch: %ix86 x86_64 %description Mono Debugger Addin for MonoDevelop. %package devel Summary: Development files for MonoDevelop Debugger Addin Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel Mono Debugger Addin for MonoDevelop. Development package. The %{name}-devel package contains development files for %{name}. %define assembly_path %{_libdir}/monodevelop/AddIns/MonoDevelop.Debugger/ %prep %setup -q sed -i -e 's!@expanded_libdir@/@PACKAGE@/!%{assembly_path}!g' Mono.Debugging.Backend.Mdb/mono.debugging.backend.mdb.pc.in %build ./configure --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --libdir=%{_libdir} make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{assembly_path} if [ %{_libdir} != "/usr/lib" ]; then mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerClient.dll* \ %{buildroot}%{assembly_path} mv %{buildroot}%{_prefix}/lib/monodevelop/AddIns/MonoDevelop.Debugger/DebuggerServer.exe* \ %{buildroot}%{assembly_path} rm -r %{buildroot}/usr/lib ; fi ; %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{assembly_path}DebuggerClient.dll* %{assembly_path}DebuggerServer.exe* %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/mono.debugging.backend.mdb.pc %changelog * Thu Jun 04 2009 Mauricio Henriquez - 2.0-1 - Initial packaging with help by Ryan Bair Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:53:49 -0000 1.1 +++ .cvsignore 3 Jul 2009 18:27:48 -0000 1.2 @@ -0,0 +1 @@ +monodevelop-debugger-mdb-2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:53:50 -0000 1.1 +++ sources 3 Jul 2009 18:27:48 -0000 1.2 @@ -0,0 +1 @@ +a63a3f9cf26dcdb1dfc6b6e5f31cb8a4 monodevelop-debugger-mdb-2.0.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 3 19:12:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:12:39 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703191239.1E56A10F87B@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora devel is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 19:12:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:12:50 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703191250.688FF10F896@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 11 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 19:12:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:12:51 +0000 Subject: [pkgdb] ndesk-dbus ownership updated Message-ID: <20090703191251.ADDA310F898@bastion2.fedora.phx.redhat.com> Package ndesk-dbus in Fedora 10 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus From pkgdb at fedoraproject.org Fri Jul 3 19:13:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:13:33 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703191333.DC18710F88E@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora devel is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 19:13:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:13:36 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703191336.5939C10F898@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 10 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From pkgdb at fedoraproject.org Fri Jul 3 19:13:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 19:13:38 +0000 Subject: [pkgdb] ndesk-dbus-glib ownership updated Message-ID: <20090703191339.036DC10F8A2@bastion2.fedora.phx.redhat.com> Package ndesk-dbus-glib in Fedora 11 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ndesk-dbus-glib From caolanm at fedoraproject.org Fri Jul 3 19:47:53 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 19:47:53 +0000 (UTC) Subject: rpms/hunspell-pt/devel .cvsignore, 1.18, 1.19 hunspell-pt.spec, 1.31, 1.32 sources, 1.20, 1.21 Message-ID: <20090703194753.39F3511C0419@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3706 Modified Files: .cvsignore hunspell-pt.spec sources Log Message: latest pt_BR Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pt/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 30 Apr 2009 12:17:57 -0000 1.18 +++ .cvsignore 3 Jul 2009 19:47:22 -0000 1.19 @@ -1,2 +1,2 @@ hunspell-pt_PT-20090309.tar.gz -pt_BR-2009-03-30AOC.zip +pt_BR-2009-07-02AOC.zip Index: hunspell-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pt/devel/hunspell-pt.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- hunspell-pt.spec 30 Apr 2009 12:17:57 -0000 1.31 +++ hunspell-pt.spec 3 Jul 2009 19:47:23 -0000 1.32 @@ -1,10 +1,10 @@ Name: hunspell-pt Summary: Portuguese hunspell dictionaries -%define upstreamid 20090330 +%define upstreamid 20090702 Version: 0.%{upstreamid} Release: 1%{?dist} Source0: http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20090309.tar.gz -Source1: http://www.broffice.org/files/pt_BR-2009-03-30AOC.zip +Source1: http://www.broffice.org/files/pt_BR-2009-07-02AOC.zip Group: Applications/Text URL: http://www.broffice.org/verortografico/baixar BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 03 2009 Caolan McNamara - 0.20090702-1 +- latest pt_BR version + * Thu Apr 30 2009 Caolan McNamara - 0.20090330-1 - latest pt_BR version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pt/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 30 Apr 2009 12:17:57 -0000 1.20 +++ sources 3 Jul 2009 19:47:23 -0000 1.21 @@ -1,2 +1,2 @@ ce4a36a835baa32fc358f578d5529832 hunspell-pt_PT-20090309.tar.gz -d1e5d505443607dc3f35b71625572efd pt_BR-2009-03-30AOC.zip +26892e56d62c891aef546a928bd46b61 pt_BR-2009-07-02AOC.zip From kevin at fedoraproject.org Fri Jul 3 19:54:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Fri, 3 Jul 2009 19:54:53 +0000 (UTC) Subject: rpms/xfce4-settings/devel xfce4-settings-4.6.1-xkl.patch, NONE, 1.1 xfce4-settings.spec, 1.13, 1.14 Message-ID: <20090703195453.E073F11C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/xfce4-settings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4856 Modified Files: xfce4-settings.spec Added Files: xfce4-settings-4.6.1-xkl.patch Log Message: Update for new libxklavier xfce4-settings-4.6.1-xkl.patch: --- NEW FILE xfce4-settings-4.6.1-xkl.patch --- diff -Nur xfce4-settings-4.6.1.orig/dialogs/keyboard-settings/xfce-keyboard-settings.c xfce4-settings-4.6.1/dialogs/keyboard-settings/xfce-keyboard-settings.c --- xfce4-settings-4.6.1.orig/dialogs/keyboard-settings/xfce-keyboard-settings.c 2009-03-02 10:48:00.000000000 -0700 +++ xfce4-settings-4.6.1/dialogs/keyboard-settings/xfce-keyboard-settings.c 2009-07-03 13:24:25.000000000 -0600 @@ -378,7 +378,7 @@ xkl_config_rec_get_from_server (settings->priv->xkl_rec_config, settings->priv->xkl_engine); settings->priv->xkl_registry = xkl_config_registry_get_instance (settings->priv->xkl_engine); - xkl_config_registry_load (settings->priv->xkl_registry); + xkl_config_registry_load (settings->priv->xkl_registry, FALSE); /* Tab */ xkb_tab_layout_vbox = glade_xml_get_widget (settings->priv->glade_xml, "xkb_tab_layout_vbox"); Index: xfce4-settings.spec =================================================================== RCS file: /cvs/extras/rpms/xfce4-settings/devel/xfce4-settings.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-settings.spec 20 Apr 2009 02:52:40 -0000 1.13 +++ xfce4-settings.spec 3 Jul 2009 19:54:23 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-settings Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Settings Manager for Xfce Group: User Interface/Desktops @@ -8,6 +8,7 @@ Group: User Interface/Desktops License: GPLv2+ and GPLv2 URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-settings-%{version}.tar.bz2 +Patch1: xfce4-settings-4.6.1-xkl.patch # use vendor's artwork Patch10: xfce4-settings-4.6.0-fedora.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -38,6 +39,7 @@ This package includes the settings manag %prep %setup -q %patch10 -p1 -b .vendor +%patch1 -p1 -b .xkl %build %configure --enable-sound-settings @@ -109,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/xfce*.desktop %changelog +* Fri Jul 03 2009 Kevin Fenzi - 4.6.1-2 +- Update for new libxklavier + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From caolanm at fedoraproject.org Fri Jul 3 20:07:14 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 3 Jul 2009 20:07:14 +0000 (UTC) Subject: rpms/icu/devel .cvsignore, 1.18, 1.19 icu.spec, 1.94, 1.95 sources, 1.19, 1.20 Message-ID: <20090703200714.D424311C0419@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7491 Modified Files: .cvsignore icu.spec sources Log Message: 4.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 8 Jun 2009 07:37:21 -0000 1.18 +++ .cvsignore 3 Jul 2009 20:06:44 -0000 1.19 @@ -1,2 +1,2 @@ icu-config -icu4c-4_2_0_1-src.tgz +icu4c-4_2_1-src.tgz Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- icu.spec 26 Jun 2009 13:53:49 -0000 1.94 +++ icu.spec 3 Jul 2009 20:06:44 -0000 1.95 @@ -1,6 +1,6 @@ Name: icu -Version: 4.2.0.1 -Release: 3%{?dist} +Version: 4.2.1 +Release: 1%{?dist} Summary: International Components for Unicode Group: Development/Tools License: MIT @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %doc source/__docs/%{name}/html/* %changelog +* Fri Jul 03 2009 Caolan McNamara - 4.2.1-1 +- 4.2.1 release + * Fri Jun 26 2009 Caolan McNamara - 4.2.0.1-3 - Resolves: rhbz#508288 multilib conflict Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 8 Jun 2009 07:37:21 -0000 1.19 +++ sources 3 Jul 2009 20:06:44 -0000 1.20 @@ -1,2 +1,2 @@ 89354abfe0d663d6b7b9274c6cd35238 icu-config -fd80d21ea863e47ee57b95d466752701 icu4c-4_2_0_1-src.tgz +e3738abd0d3ce1870dc1fd1f22bba5b1 icu4c-4_2_1-src.tgz From pkgdb at fedoraproject.org Fri Jul 3 20:22:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:22:50 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202250.54E6410F8A9@bastion2.fedora.phx.redhat.com> Package Miro in Fedora 8 is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From pkgdb at fedoraproject.org Fri Jul 3 20:22:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:22:55 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202255.18A9810F898@bastion2.fedora.phx.redhat.com> Package Miro in Fedora 9 is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From pkgdb at fedoraproject.org Fri Jul 3 20:22:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:22:59 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202259.A313610F8AB@bastion2.fedora.phx.redhat.com> Package Miro in Fedora 10 is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From pkgdb at fedoraproject.org Fri Jul 3 20:22:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:22:44 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202244.CCF6F10F8A2@bastion2.fedora.phx.redhat.com> Package Miro in Fedora 7 is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From pkgdb at fedoraproject.org Fri Jul 3 20:23:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:23:04 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202305.02BCB10F8A4@bastion2.fedora.phx.redhat.com> Package Miro in Fedora 11 is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From pkgdb at fedoraproject.org Fri Jul 3 20:22:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 03 Jul 2009 20:22:28 +0000 Subject: [pkgdb] Miro ownership updated Message-ID: <20090703202229.1696710F898@bastion2.fedora.phx.redhat.com> Package Miro in Fedora devel is now owned by alexlan To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Miro From konradm at fedoraproject.org Fri Jul 3 21:06:53 2009 From: konradm at fedoraproject.org (konradm) Date: Fri, 3 Jul 2009 21:06:53 +0000 (UTC) Subject: rpms/libtorrent/devel .cvsignore, 1.11, 1.12 libtorrent.spec, 1.31, 1.32 sources, 1.12, 1.13 Message-ID: <20090703210654.049D211C0419@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/libtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18990 Modified Files: .cvsignore libtorrent.spec sources Log Message: * Fri Jul 3 2009 Conrad Meyer - 0.12.5-1 - Bump version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libtorrent/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 26 Nov 2008 21:41:33 -0000 1.11 +++ .cvsignore 3 Jul 2009 21:06:53 -0000 1.12 @@ -1 +1 @@ -libtorrent-0.12.4.tar.gz +libtorrent-0.12.5.tar.gz Index: libtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtorrent/devel/libtorrent.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libtorrent.spec 27 Feb 2009 16:07:54 -0000 1.31 +++ libtorrent.spec 3 Jul 2009 21:06:53 -0000 1.32 @@ -1,11 +1,11 @@ Name: libtorrent License: GPLv2+ Group: System Environment/Libraries -Version: 0.12.4 -Release: 4%{?dist} +Version: 0.12.5 +Release: 1%{?dist} Summary: BitTorrent library with a focus on high performance & good code URL: http://libtorrent.rakshasa.no/ -Source0: http://libtorrent.rakshasa.no/downloads/%{name}-%{version}.tar.gz +Source0: http://libtorrent.rakshasa.no/downloads/libtorrent-%{version}.tar.gz # Patch to include the missing required C headers in GCC 4.4 Patch0: libtorrent-0.12.4-gcc44.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 3 2009 Conrad Meyer - 0.12.5-1 +- Bump version. + * Fri Feb 27 2009 Conrad Meyer - 0.12.4-4 - Fix FTBFS. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libtorrent/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 26 Nov 2008 21:41:33 -0000 1.12 +++ sources 3 Jul 2009 21:06:53 -0000 1.13 @@ -1 +1 @@ -7e4b4c29a69c86c38e3e60ec11fc2255 libtorrent-0.12.4.tar.gz +fe8155d364b220713074423100d4bf29 libtorrent-0.12.5.tar.gz From konradm at fedoraproject.org Fri Jul 3 21:15:07 2009 From: konradm at fedoraproject.org (konradm) Date: Fri, 3 Jul 2009 21:15:07 +0000 (UTC) Subject: rpms/libtorrent/devel libtorrent.spec, 1.32, 1.33 libtorrent-0.12.4-gcc44.diff, 1.1, NONE Message-ID: <20090703211507.4A57711C0419@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/libtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20463 Modified Files: libtorrent.spec Removed Files: libtorrent-0.12.4-gcc44.diff Log Message: Remove a patch that was applied upstream. Index: libtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtorrent/devel/libtorrent.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libtorrent.spec 3 Jul 2009 21:06:53 -0000 1.32 +++ libtorrent.spec 3 Jul 2009 21:14:37 -0000 1.33 @@ -6,8 +6,6 @@ Release: 1%{?dist} Summary: BitTorrent library with a focus on high performance & good code URL: http://libtorrent.rakshasa.no/ Source0: http://libtorrent.rakshasa.no/downloads/libtorrent-%{version}.tar.gz -# Patch to include the missing required C headers in GCC 4.4 -Patch0: libtorrent-0.12.4-gcc44.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig BuildRequires: openssl-devel @@ -31,14 +29,8 @@ with the libtorrent libraries. %prep %setup -q -%patch0 -p1 %build -# work around a bug thats triggered by gcc 4.1 -export RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | %{__sed} s/-O2/-Os/` -export CFLAGS=$RPM_OPT_FLAGS -export CXXFLAGS=$RPM_OPT_FLAGS - %configure make %{?_smp_mflags} --- libtorrent-0.12.4-gcc44.diff DELETED --- From konradm at fedoraproject.org Fri Jul 3 21:38:08 2009 From: konradm at fedoraproject.org (konradm) Date: Fri, 3 Jul 2009 21:38:08 +0000 (UTC) Subject: rpms/rtorrent/devel .cvsignore, 1.11, 1.12 rtorrent.spec, 1.30, 1.31 sources, 1.11, 1.12 rtorrent-0.8.4-add-missing-header.diff, 1.9, NONE Message-ID: <20090703213808.EC07211C0419@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/rtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24800 Modified Files: .cvsignore rtorrent.spec sources Removed Files: rtorrent-0.8.4-add-missing-header.diff Log Message: * Fri Jul 3 2009 Conrad Meyer - 0.8.5-1 - Bump version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rtorrent/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 26 Nov 2008 21:43:32 -0000 1.11 +++ .cvsignore 3 Jul 2009 21:38:08 -0000 1.12 @@ -1 +1 @@ -rtorrent-0.8.4.tar.gz +rtorrent-0.8.5.tar.gz Index: rtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtorrent/devel/rtorrent.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- rtorrent.spec 11 May 2009 17:26:47 -0000 1.30 +++ rtorrent.spec 3 Jul 2009 21:38:08 -0000 1.31 @@ -2,14 +2,13 @@ Name: rtorrent # OpenSSL exception, see README License: GPLv2+ with exceptions Group: Applications/Internet -Version: 0.8.4 -Release: 4%{?dist} +Version: 0.8.5 +Release: 1%{?dist} Summary: BitTorrent client based on libtorrent URL: http://rtorrent.rakshasa.no/ -Source0: http://libtorrent.rakshasa.no/downloads/%{name}-%{version}.tar.gz +Source0: http://libtorrent.rakshasa.no/downloads/rtorrent-%{version}.tar.gz Source1: rtorrent.rc.example BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: rtorrent-0.8.4-add-missing-header.diff BuildRequires: curl-devel BuildRequires: libstdc++-devel @@ -28,11 +27,8 @@ of directories for torrent files to seed %prep %setup -q -%patch0 -p1 %build -export CFLAGS=$RPM_OPT_FLAGS -export CXXFLAGS=$RPM_OPT_FLAGS install -m 644 %{SOURCE1} . %configure --with-xmlrpc-c make %{?_smp_mflags} @@ -51,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/rtorrent* %changelog +* Fri Jul 3 2009 Conrad Meyer - 0.8.5-1 +- Bump version. + * Mon May 11 2009 Conrad Meyer - 0.8.4-4 - Use normal Fedora build flags. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rtorrent/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 26 Nov 2008 21:43:32 -0000 1.11 +++ sources 3 Jul 2009 21:38:08 -0000 1.12 @@ -1 +1 @@ -dc0f37d933b0b6c713ad617e09441f3b rtorrent-0.8.4.tar.gz +e701095e1824b7e512a17000f4c0a783 rtorrent-0.8.5.tar.gz --- rtorrent-0.8.4-add-missing-header.diff DELETED --- From palango at fedoraproject.org Fri Jul 3 21:51:46 2009 From: palango at fedoraproject.org (palango) Date: Fri, 3 Jul 2009 21:51:46 +0000 (UTC) Subject: rpms/monodevelop-debugger-mdb/F-11 monodevelop-debugger-mdb.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090703215146.B1C3B11C0419@cvs1.fedora.phx.redhat.com> Author: palango Update of /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27064 Modified Files: monodevelop-debugger-mdb.spec sources Log Message: fix build Index: monodevelop-debugger-mdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11/monodevelop-debugger-mdb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- monodevelop-debugger-mdb.spec 3 Jul 2009 18:27:48 -0000 1.1 +++ monodevelop-debugger-mdb.spec 3 Jul 2009 21:51:46 -0000 1.2 @@ -4,7 +4,7 @@ Summary: MonoDevelop Debugger Addin Name: monodevelop-debugger-mdb Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Tools Source: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{version}.tar.bz2 @@ -12,7 +12,7 @@ URL: http://www.monodevelop.c BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: monodevelop = %{version} mono-devel mono-debugger-devel monodevelop-devel mono-addins-devel Requires: mono-debugger >= 2.0 -ExclusiveArch: %ix86 x86_64 +ExclusiveArch: %ix86 %description Mono Debugger Addin for MonoDevelop. @@ -64,5 +64,8 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/mono.debugging.backend.mdb.pc %changelog +* Fri Jul 03 2009 Paul Lange - 2.0-2 +- Fix build + * Thu Jun 04 2009 Mauricio Henriquez - 2.0-1 - Initial packaging with help by Ryan Bair Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 3 Jul 2009 18:27:48 -0000 1.2 +++ sources 3 Jul 2009 21:51:46 -0000 1.3 @@ -1 +1 @@ -a63a3f9cf26dcdb1dfc6b6e5f31cb8a4 monodevelop-debugger-mdb-2.0.tar.bz2 +b60e9a0783f294aaa137c78e32c4f6be monodevelop-debugger-mdb-2.0.tar.bz2 From cwickert at fedoraproject.org Fri Jul 3 22:05:29 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 22:05:29 +0000 (UTC) Subject: rpms/xfce4-power-manager/devel .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 xfce4-power-manager.spec, 1.11, 1.12 Message-ID: <20090703220529.830AA11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29419 Modified Files: .cvsignore sources xfce4-power-manager.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.8.1-1 - Update to 0.8.1 - Drop libglade2 requirement Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 9 Jun 2009 23:41:21 -0000 1.9 +++ .cvsignore 3 Jul 2009 22:04:59 -0000 1.10 @@ -1 +1 @@ -xfce4-power-manager-0.8.0.tar.bz2 +xfce4-power-manager-0.8.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 9 Jun 2009 23:41:21 -0000 1.9 +++ sources 3 Jul 2009 22:04:59 -0000 1.10 @@ -1 +1 @@ -a73021d871607936409309186757dfb5 xfce4-power-manager-0.8.0.tar.bz2 +9c5761aa22ecbc0d6cd03fd87ebc1322 xfce4-power-manager-0.8.1.tar.bz2 Index: xfce4-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/devel/xfce4-power-manager.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xfce4-power-manager.spec 9 Jun 2009 23:41:21 -0000 1.11 +++ xfce4-power-manager.spec 3 Jul 2009 22:04:59 -0000 1.12 @@ -1,5 +1,5 @@ Name: xfce4-power-manager -Version: 0.8.0 +Version: 0.8.1 Release: 1%{?dist} Summary: Power management for the Xfce desktop environment @@ -14,7 +14,6 @@ BuildRequires: xfce4-panel-devel >= 4.6 BuildRequires: dbus-devel >= 0.60 BuildRequires: dbus-glib-devel >= 0.70 BuildRequires: libnotify-devel >= 0.4.1 -BuildRequires: libglade2-devel >= 2.0.0 BuildRequires: gettext intltool desktop-file-utils Requires: xfce4-panel @@ -72,6 +71,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}-settings.desktop %{_datadir}/icons/hicolor/scalable/*/xfpm-*.svg %{_datadir}/xfce4/panel-plugins/xfce4-*-plugin.desktop +%{_datadir}/%{name}/ %doc %{_datadir}/xfce4/doc/C/images/*.png %doc %{_datadir}/xfce4/doc/C/%{name}.html %{_mandir}/man1/%{name}-settings.1.gz @@ -79,6 +79,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.8.1-1 +- Update to 0.8.1 +- Drop libglade2 requirement + * Wed Jun 10 2009 Christoph Wickert - 0.8.0-1 - Update to 0.8.0 final - Update gtk-icon-cache scriptlets From cwickert at fedoraproject.org Fri Jul 3 22:15:12 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 22:15:12 +0000 (UTC) Subject: rpms/xfce4-power-manager/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-power-manager.spec, 1.8, 1.9 Message-ID: <20090703221512.8002C11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-power-manager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31878 Modified Files: .cvsignore sources xfce4-power-manager.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.8.1-1 - Update to 0.8.1 - Drop libglade2 requirement Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 10 Jun 2009 00:20:09 -0000 1.7 +++ .cvsignore 3 Jul 2009 22:15:11 -0000 1.8 @@ -1 +1 @@ -xfce4-power-manager-0.8.0.tar.bz2 +xfce4-power-manager-0.8.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 10 Jun 2009 00:20:09 -0000 1.7 +++ sources 3 Jul 2009 22:15:11 -0000 1.8 @@ -1 +1 @@ -a73021d871607936409309186757dfb5 xfce4-power-manager-0.8.0.tar.bz2 +9c5761aa22ecbc0d6cd03fd87ebc1322 xfce4-power-manager-0.8.1.tar.bz2 Index: xfce4-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/F-11/xfce4-power-manager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xfce4-power-manager.spec 10 Jun 2009 00:13:10 -0000 1.8 +++ xfce4-power-manager.spec 3 Jul 2009 22:15:11 -0000 1.9 @@ -1,5 +1,5 @@ Name: xfce4-power-manager -Version: 0.8.0 +Version: 0.8.1 Release: 1%{?dist} Summary: Power management for the Xfce desktop environment @@ -14,7 +14,6 @@ BuildRequires: xfce4-panel-devel >= 4.6 BuildRequires: dbus-devel >= 0.60 BuildRequires: dbus-glib-devel >= 0.70 BuildRequires: libnotify-devel >= 0.4.1 -BuildRequires: libglade2-devel >= 2.0.0 BuildRequires: gettext intltool desktop-file-utils Requires: xfce4-panel @@ -72,6 +71,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}-settings.desktop %{_datadir}/icons/hicolor/scalable/*/xfpm-*.svg %{_datadir}/xfce4/panel-plugins/xfce4-*-plugin.desktop +%{_datadir}/%{name}/ %doc %{_datadir}/xfce4/doc/C/images/*.png %doc %{_datadir}/xfce4/doc/C/%{name}.html %{_mandir}/man1/%{name}-settings.1.gz @@ -79,6 +79,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.8.1-1 +- Update to 0.8.1 +- Drop libglade2 requirement + * Wed Jun 10 2009 Christoph Wickert - 0.8.0-1 - Update to 0.8.0 final - Update gtk-icon-cache scriptlets From cwickert at fedoraproject.org Fri Jul 3 22:46:35 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 22:46:35 +0000 (UTC) Subject: rpms/xfce4-smartbookmark-plugin/devel xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch, NONE, 1.1 xfce4-smartbookmark-plugin.spec, 1.11, 1.12 Message-ID: <20090703224635.7FFA011C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5251 Modified Files: xfce4-smartbookmark-plugin.spec Added Files: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.4.2-9 - Fix path in desktop file (#509294) xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch: --- NEW FILE xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch --- --- src/smartbookmark.desktop.in.in.orig 2009-07-04 00:28:14.000000000 +0200 +++ src/smartbookmark.desktop.in.in 2009-07-04 00:34:09.000000000 +0200 @@ -3,6 +3,7 @@ Encoding=UTF-8 _Name=SmartBookmark _Comment=Query websites from the Xfce panel -Icon=gtk-preferences -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libsmartbookmark.so +Icon=gtk-find +X-XFCE-Module=smartbookmark +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ X-XFCE-Unique=false Index: xfce4-smartbookmark-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel/xfce4-smartbookmark-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xfce4-smartbookmark-plugin.spec 26 Feb 2009 09:07:36 -0000 1.11 +++ xfce4-smartbookmark-plugin.spec 3 Jul 2009 22:46:04 -0000 1.12 @@ -1,14 +1,20 @@ Name: xfce4-smartbookmark-plugin Version: 0.4.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Smart bookmarks for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.gz -Patch0: %{name}-redhat.patch -Patch1: %{name}-0.4.2-multilib.patch +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 +Patch0: %{name}-0.4.2-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# not yet in Xfce bugzilla, because the smartbookmark component is missing +Patch1: %{name}-0.4.2-desktop-file.patch +# vendor specific patches +Patch10: %{name}-redhat.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2 @@ -23,8 +29,9 @@ browser and perform custom searches. %prep %setup -q -%patch0 -p0 -b .redhat -%patch1 -p0 -b .multilib +%patch0 -b .multilib +%patch1 -b .path +%patch10 -b .redhat %build %configure --disable-static @@ -32,7 +39,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -46,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.4.2-9 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 3 22:58:44 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 22:58:44 +0000 (UTC) Subject: rpms/xfce4-smartbookmark-plugin/F-11 xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch, NONE, 1.1 xfce4-smartbookmark-plugin.spec, 1.11, 1.12 Message-ID: <20090703225844.52EA911C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7387 Modified Files: xfce4-smartbookmark-plugin.spec Added Files: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.4.2-9 - Fix path in desktop file (#509294) xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch: --- NEW FILE xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch --- --- src/smartbookmark.desktop.in.in.orig 2009-07-04 00:28:14.000000000 +0200 +++ src/smartbookmark.desktop.in.in 2009-07-04 00:34:09.000000000 +0200 @@ -3,6 +3,7 @@ Encoding=UTF-8 _Name=SmartBookmark _Comment=Query websites from the Xfce panel -Icon=gtk-preferences -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libsmartbookmark.so +Icon=gtk-find +X-XFCE-Module=smartbookmark +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ X-XFCE-Unique=false Index: xfce4-smartbookmark-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/F-11/xfce4-smartbookmark-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xfce4-smartbookmark-plugin.spec 26 Feb 2009 09:07:36 -0000 1.11 +++ xfce4-smartbookmark-plugin.spec 3 Jul 2009 22:58:13 -0000 1.12 @@ -1,14 +1,20 @@ Name: xfce4-smartbookmark-plugin Version: 0.4.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Smart bookmarks for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.gz -Patch0: %{name}-redhat.patch -Patch1: %{name}-0.4.2-multilib.patch +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 +Patch0: %{name}-0.4.2-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# not yet in Xfce bugzilla, because the smartbookmark component is missing +Patch1: %{name}-0.4.2-desktop-file.patch +# vendor specific patches +Patch10: %{name}-redhat.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.90.2 @@ -23,8 +29,9 @@ browser and perform custom searches. %prep %setup -q -%patch0 -p0 -b .redhat -%patch1 -p0 -b .multilib +%patch0 -b .multilib +%patch1 -b .path +%patch10 -b .redhat %build %configure --disable-static @@ -32,7 +39,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -46,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.4.2-9 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 3 23:01:30 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:01:30 +0000 (UTC) Subject: rpms/xfce4-quicklauncher-plugin/devel xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch, NONE, 1.1 xfce4-quicklauncher-plugin.spec, 1.14, 1.15 Message-ID: <20090703230130.5739811C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8074 Modified Files: xfce4-quicklauncher-plugin.spec Added Files: xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.9.4-5 - Fix path in desktop file (#509294) xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch: --- NEW FILE xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch --- --- panel-plugin/quicklauncher.desktop.in.in.orig 2009-07-04 00:46:34.000000000 +0200 +++ panel-plugin/quicklauncher.desktop.in.in 2009-07-04 00:46:51.000000000 +0200 @@ -4,4 +4,6 @@ _Name=Quicklauncher _Comment=Program with several launchers Icon=gnome-fs-executable -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libquicklauncher.so +X-XFCE-Module=quicklauncher +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ +X-XFCE-Unique=false Index: xfce4-quicklauncher-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/devel/xfce4-quicklauncher-plugin.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-quicklauncher-plugin.spec 26 Feb 2009 09:03:43 -0000 1.14 +++ xfce4-quicklauncher-plugin.spec 3 Jul 2009 23:01:30 -0000 1.15 @@ -1,13 +1,18 @@ Name: xfce4-quicklauncher-plugin Version: 1.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Quicklauncher plugin for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 Patch0: %{name}-1.9.2-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# upstream bug: http://bugzilla.xfce.org/show_bug.cgi?id=3540 +Patch1: %{name}-1.9.4-desktop-file.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.20, libxfcegui4-devel >= 4.3.20, libxml2-devel @@ -21,6 +26,7 @@ them on several lines. %prep %setup -q %patch0 -b .multilib +%patch1 -b .path %build %configure --disable-static @@ -28,7 +34,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -42,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.9.4-5 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 1.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 3 23:07:32 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:07:32 +0000 (UTC) Subject: rpms/xfce4-quicklauncher-plugin/F-11 xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch, NONE, 1.1 xfce4-quicklauncher-plugin.spec, 1.14, 1.15 Message-ID: <20090703230732.1CCA811C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9159 Modified Files: xfce4-quicklauncher-plugin.spec Added Files: xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.9.4-5 - Fix path in desktop file (#509294) xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch: --- NEW FILE xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch --- --- panel-plugin/quicklauncher.desktop.in.in.orig 2009-07-04 00:46:34.000000000 +0200 +++ panel-plugin/quicklauncher.desktop.in.in 2009-07-04 00:46:51.000000000 +0200 @@ -4,4 +4,6 @@ _Name=Quicklauncher _Comment=Program with several launchers Icon=gnome-fs-executable -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libquicklauncher.so +X-XFCE-Module=quicklauncher +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ +X-XFCE-Unique=false Index: xfce4-quicklauncher-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/F-11/xfce4-quicklauncher-plugin.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-quicklauncher-plugin.spec 26 Feb 2009 09:03:43 -0000 1.14 +++ xfce4-quicklauncher-plugin.spec 3 Jul 2009 23:07:31 -0000 1.15 @@ -1,13 +1,18 @@ Name: xfce4-quicklauncher-plugin Version: 1.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Quicklauncher plugin for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 Patch0: %{name}-1.9.2-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# upstream bug: http://bugzilla.xfce.org/show_bug.cgi?id=3540 +Patch1: %{name}-1.9.4-desktop-file.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.20, libxfcegui4-devel >= 4.3.20, libxml2-devel @@ -21,6 +26,7 @@ them on several lines. %prep %setup -q %patch0 -b .multilib +%patch1 -b .path %build %configure --disable-static @@ -28,7 +34,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -42,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.9.4-5 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 1.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 3 23:14:11 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:14:11 +0000 (UTC) Subject: rpms/xfce4-smartbookmark-plugin/F-11 xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch, 1.1, 1.2 Message-ID: <20090703231411.93ABD11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11053/F-11 Modified Files: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch Log Message: choose another icon for desktop file xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch: Index: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/F-11/xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch 3 Jul 2009 22:58:13 -0000 1.1 +++ xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch 3 Jul 2009 23:14:11 -0000 1.2 @@ -6,7 +6,7 @@ _Comment=Query websites from the Xfce panel -Icon=gtk-preferences -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libsmartbookmark.so -+Icon=gtk-find ++Icon=gnome-fs-bookmark +X-XFCE-Module=smartbookmark +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ X-XFCE-Unique=false From cwickert at fedoraproject.org Fri Jul 3 23:14:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:14:41 +0000 (UTC) Subject: rpms/xfce4-smartbookmark-plugin/devel xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch, 1.1, 1.2 Message-ID: <20090703231441.6430B11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11053/devel Modified Files: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch Log Message: choose another icon for desktop file xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch: Index: xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel/xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch 3 Jul 2009 22:46:04 -0000 1.1 +++ xfce4-smartbookmark-plugin-0.4.2-desktop-file.patch 3 Jul 2009 23:14:11 -0000 1.2 @@ -6,7 +6,7 @@ _Comment=Query websites from the Xfce panel -Icon=gtk-preferences -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libsmartbookmark.so -+Icon=gtk-find ++Icon=gnome-fs-bookmark +X-XFCE-Module=smartbookmark +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ X-XFCE-Unique=false From kevin at fedoraproject.org Fri Jul 3 23:22:08 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Fri, 3 Jul 2009 23:22:08 +0000 (UTC) Subject: rpms/rkhunter/devel rkhunter-1.3.4-fedoraconfig.patch, 1.3, 1.4 rkhunter.spec, 1.24, 1.25 Message-ID: <20090703232208.8B4C511C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/rkhunter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12417 Modified Files: rkhunter-1.3.4-fedoraconfig.patch rkhunter.spec Log Message: Add exception for software raid udev file - bug #509253 rkhunter-1.3.4-fedoraconfig.patch: Index: rkhunter-1.3.4-fedoraconfig.patch =================================================================== RCS file: /cvs/extras/rpms/rkhunter/devel/rkhunter-1.3.4-fedoraconfig.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rkhunter-1.3.4-fedoraconfig.patch 7 Jun 2009 03:32:02 -0000 1.3 +++ rkhunter-1.3.4-fedoraconfig.patch 3 Jul 2009 23:22:07 -0000 1.4 @@ -1,6 +1,6 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhunter.conf rkhunter-1.3.4/files/rkhunter.conf --- rkhunter-1.3.4.orig/files/rkhunter.conf 2008-12-30 14:23:00.000000000 -0700 -+++ rkhunter-1.3.4/files/rkhunter.conf 2009-06-06 21:24:21.000000000 -0600 ++++ rkhunter-1.3.4/files/rkhunter.conf 2009-07-03 17:17:11.000000000 -0600 @@ -68,7 +68,7 @@ # NOTE: This option should be present in the configuration file. # @@ -96,7 +96,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu #ALLOWHIDDENDIR=/dev/.udevdb #ALLOWHIDDENDIR=/dev/.udev.tdb #ALLOWHIDDENDIR=/dev/.static -@@ -322,9 +328,19 @@ +@@ -322,9 +328,21 @@ # One file per line (use multiple ALLOWHIDDENFILE lines). # #ALLOWHIDDENFILE=/etc/.java @@ -114,10 +114,12 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu +ALLOWHIDDENFILE=/usr/bin/.ssh-agent.hmac +ALLOWHIDDENFILE=/usr/sbin/.sshd.hmac +ALLOWHIDDENFILE=/usr/bin/.fipscheck.hmac ++# raid map ++ALLOWHIDDENFILE=/dev/.mdadm.map # # Allow the specified processes to use deleted files. -@@ -367,7 +383,7 @@ +@@ -367,7 +385,7 @@ # ALLOWDEVFILE lines). # #ALLOWDEVFILE=/dev/abc @@ -126,7 +128,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # This setting tells rkhunter where the inetd configuration -@@ -460,7 +476,7 @@ +@@ -460,7 +478,7 @@ # file. This setting will be worked out by rkhunter, and so should not # usually need to be set. # @@ -135,7 +137,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # This option permits the use of syslog remote logging. -@@ -549,7 +565,7 @@ +@@ -549,7 +567,7 @@ # specified, then RKH will assume the O/S release information is on the # first non-blank line of the file. # @@ -144,7 +146,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # The following two options can be used to whitelist files and directories -@@ -578,3 +594,4 @@ +@@ -578,3 +596,4 @@ # #MODULES_DIR="" Index: rkhunter.spec =================================================================== RCS file: /cvs/extras/rpms/rkhunter/devel/rkhunter.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- rkhunter.spec 7 Jun 2009 03:32:02 -0000 1.24 +++ rkhunter.spec 3 Jul 2009 23:22:07 -0000 1.25 @@ -1,6 +1,6 @@ Name: rkhunter Version: 1.3.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A host-based tool to scan for rootkits, backdoors and local exploits Group: Applications/System @@ -104,6 +104,9 @@ EOF %{_mandir}/man8/* %changelog +* Fri Jul 03 2009 Kevin Fenzi - 1.3.4-7 +- Add exception for software raid udev file - bug #509253 + * Sat Jun 06 2009 Kevin Fenzi - 1.3.4-6 - Add /usr/bin/.fipscheck.hmac to ok files - bug #494096 From kevin at fedoraproject.org Fri Jul 3 23:29:36 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Fri, 3 Jul 2009 23:29:36 +0000 (UTC) Subject: rpms/rkhunter/F-11 rkhunter-1.3.4-fedoraconfig.patch, 1.3, 1.4 rkhunter.spec, 1.24, 1.25 Message-ID: <20090703232936.CB8A111C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/rkhunter/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13794 Modified Files: rkhunter-1.3.4-fedoraconfig.patch rkhunter.spec Log Message: Add exception for software raid udev file - bug #509253 rkhunter-1.3.4-fedoraconfig.patch: Index: rkhunter-1.3.4-fedoraconfig.patch =================================================================== RCS file: /cvs/extras/rpms/rkhunter/F-11/rkhunter-1.3.4-fedoraconfig.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rkhunter-1.3.4-fedoraconfig.patch 7 Jun 2009 03:38:28 -0000 1.3 +++ rkhunter-1.3.4-fedoraconfig.patch 3 Jul 2009 23:29:36 -0000 1.4 @@ -1,6 +1,6 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhunter.conf rkhunter-1.3.4/files/rkhunter.conf --- rkhunter-1.3.4.orig/files/rkhunter.conf 2008-12-30 14:23:00.000000000 -0700 -+++ rkhunter-1.3.4/files/rkhunter.conf 2009-06-06 21:24:21.000000000 -0600 ++++ rkhunter-1.3.4/files/rkhunter.conf 2009-07-03 17:17:11.000000000 -0600 @@ -68,7 +68,7 @@ # NOTE: This option should be present in the configuration file. # @@ -96,7 +96,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu #ALLOWHIDDENDIR=/dev/.udevdb #ALLOWHIDDENDIR=/dev/.udev.tdb #ALLOWHIDDENDIR=/dev/.static -@@ -322,9 +328,19 @@ +@@ -322,9 +328,21 @@ # One file per line (use multiple ALLOWHIDDENFILE lines). # #ALLOWHIDDENFILE=/etc/.java @@ -114,10 +114,12 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu +ALLOWHIDDENFILE=/usr/bin/.ssh-agent.hmac +ALLOWHIDDENFILE=/usr/sbin/.sshd.hmac +ALLOWHIDDENFILE=/usr/bin/.fipscheck.hmac ++# raid map ++ALLOWHIDDENFILE=/dev/.mdadm.map # # Allow the specified processes to use deleted files. -@@ -367,7 +383,7 @@ +@@ -367,7 +385,7 @@ # ALLOWDEVFILE lines). # #ALLOWDEVFILE=/dev/abc @@ -126,7 +128,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # This setting tells rkhunter where the inetd configuration -@@ -460,7 +476,7 @@ +@@ -460,7 +478,7 @@ # file. This setting will be worked out by rkhunter, and so should not # usually need to be set. # @@ -135,7 +137,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # This option permits the use of syslog remote logging. -@@ -549,7 +565,7 @@ +@@ -549,7 +567,7 @@ # specified, then RKH will assume the O/S release information is on the # first non-blank line of the file. # @@ -144,7 +146,7 @@ diff -Nur rkhunter-1.3.4.orig/files/rkhu # # The following two options can be used to whitelist files and directories -@@ -578,3 +594,4 @@ +@@ -578,3 +596,4 @@ # #MODULES_DIR="" Index: rkhunter.spec =================================================================== RCS file: /cvs/extras/rpms/rkhunter/F-11/rkhunter.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- rkhunter.spec 7 Jun 2009 03:38:28 -0000 1.24 +++ rkhunter.spec 3 Jul 2009 23:29:36 -0000 1.25 @@ -1,6 +1,6 @@ Name: rkhunter Version: 1.3.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A host-based tool to scan for rootkits, backdoors and local exploits Group: Applications/System @@ -104,6 +104,9 @@ EOF %{_mandir}/man8/* %changelog +* Fri Jul 03 2009 Kevin Fenzi - 1.3.4-7 +- Add exception for software raid udev file - bug #509253 + * Sat Jun 06 2009 Kevin Fenzi - 1.3.4-6 - Add /usr/bin/.fipscheck.hmac to ok files - bug #494096 From cwickert at fedoraproject.org Fri Jul 3 23:38:23 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:38:23 +0000 (UTC) Subject: rpms/xfce4-websearch-plugin/devel xfce4-websearch-plugin-20070428svn2704-desktop-file.patch, NONE, 1.1 xfce4-websearch-plugin.spec, 1.16, 1.17 Message-ID: <20090703233823.1E52411C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-websearch-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15256 Modified Files: xfce4-websearch-plugin.spec Added Files: xfce4-websearch-plugin-20070428svn2704-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.1.1-0.11.20070428svn2704 - Fix path in desktop file (#509294) xfce4-websearch-plugin-20070428svn2704-desktop-file.patch: --- NEW FILE xfce4-websearch-plugin-20070428svn2704-desktop-file.patch --- --- src/websearch.desktop.in.in.orig 2009-07-04 01:08:31.000000000 +0200 +++ src/websearch.desktop.in.in 2009-07-04 01:35:04.000000000 +0200 @@ -2,6 +2,10 @@ Type=X-XFCE-PanelPlugin Encoding=UTF-8 _Name=WebSearch +_Name[de]=Web-Suche _Comment=Search the Web directly from the Panel -Icon=stock_find -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libwebsearch.so +_Comment[de]=Das Internet direkt aus dem Panel heraus durchsuchen +Icon=gtk-find +X-XFCE-Module=websearch +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ +X-XFCE-Unique=false Index: xfce4-websearch-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-websearch-plugin/devel/xfce4-websearch-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-websearch-plugin.spec 26 Feb 2009 09:15:14 -0000 1.16 +++ xfce4-websearch-plugin.spec 3 Jul 2009 23:37:52 -0000 1.17 @@ -1,6 +1,6 @@ Name: xfce4-websearch-plugin Version: 0.1.1 -Release: 0.10.20070428svn2704%{?dist} +Release: 0.11.20070428svn2704%{?dist} Summary: Websearch plugin from the XFCE panel Group: User Interface/Desktops @@ -11,7 +11,12 @@ URL: http://goodies.xfce.org/ # tar -cjf xfce4-websearch-plugin-`date +%G%m%d`svn2704.tar.bz2 xfce4-websearch-plugin Source0: %{name}-20070428svn2704.tar.bz2 #Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.gz +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 Patch0: %{name}-20070428svn2704-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# not yet in Xfce bugzilla, because the smartbookmark component is missing +Patch1: %{name}-20070428svn2704-desktop-file.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.0, libxfcegui4-devel >= 4.3.0, libxml2-devel @@ -26,6 +31,7 @@ Access searchengines from the XFCE panel %setup -qn %{name} ./autogen.sh %patch0 -b .multilib +%patch1 -b .path %build %configure --disable-static @@ -33,7 +39,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} +make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -47,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.1.1-0.11.20070428svn2704 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-0.10.20070428svn2704 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 3 23:44:14 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:44:14 +0000 (UTC) Subject: rpms/xfce4-websearch-plugin/devel xfce4-websearch-plugin.spec, 1.17, 1.18 Message-ID: <20090703234414.4DC4D11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-websearch-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17073 Modified Files: xfce4-websearch-plugin.spec Log Message: trivial fix for a comment in spec file Index: xfce4-websearch-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-websearch-plugin/devel/xfce4-websearch-plugin.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xfce4-websearch-plugin.spec 3 Jul 2009 23:37:52 -0000 1.17 +++ xfce4-websearch-plugin.spec 3 Jul 2009 23:43:44 -0000 1.18 @@ -15,7 +15,7 @@ Source0: %{name}-20070428svn2704.tar.bz2 # reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 Patch0: %{name}-20070428svn2704-multilib.patch # https://bugzilla.redhat.com/show_bug.cgi?id=509294 -# not yet in Xfce bugzilla, because the smartbookmark component is missing +# not yet in Xfce bugzilla, because the websearch component is missing Patch1: %{name}-20070428svn2704-desktop-file.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) From kevin at fedoraproject.org Fri Jul 3 23:50:23 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Fri, 3 Jul 2009 23:50:23 +0000 (UTC) Subject: rpms/leafnode/devel leafnode.spec, 1.17, 1.18 leafnode.xinetd, 1.1, 1.2 Message-ID: <20090703235023.A5D3D11C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/leafnode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18133 Modified Files: leafnode.spec leafnode.xinetd Log Message: Fix xinetd file to use ipv4 for bug #509218 Index: leafnode.spec =================================================================== RCS file: /cvs/extras/rpms/leafnode/devel/leafnode.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- leafnode.spec 6 Jun 2009 05:09:22 -0000 1.17 +++ leafnode.spec 3 Jul 2009 23:49:53 -0000 1.18 @@ -1,6 +1,6 @@ Name: leafnode Version: 1.11.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Leaf site offline NNTP server License: MIT and LGPLv2 @@ -105,6 +105,9 @@ exit 0 rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 03 2009 Kevin Fenzi - 1.11.7-2 +- Fix xinetd file to use ipv4 for bug #509218 + * Fri Jun 05 2009 Kevin Fenzi - 1.11.7-1 - Update to 1.11.7 - Add an example cron script for bug #489592 Index: leafnode.xinetd =================================================================== RCS file: /cvs/extras/rpms/leafnode/devel/leafnode.xinetd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- leafnode.xinetd 8 Nov 2004 04:40:39 -0000 1.1 +++ leafnode.xinetd 3 Jul 2009 23:49:53 -0000 1.2 @@ -8,6 +8,7 @@ service nntp user = news server = /usr/sbin/leafnode log_on_failure += USERID + flags = IPv4 #bind = 127.0.0.1 #this only allows connects from localhost, use this if you do not From cwickert at fedoraproject.org Fri Jul 3 23:51:31 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 3 Jul 2009 23:51:31 +0000 (UTC) Subject: rpms/xfce4-websearch-plugin/F-11 xfce4-websearch-plugin-20070428svn2704-desktop-file.patch, NONE, 1.1 xfce4-websearch-plugin.spec, 1.16, 1.17 Message-ID: <20090703235131.3DA4111C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-websearch-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18424 Modified Files: xfce4-websearch-plugin.spec Added Files: xfce4-websearch-plugin-20070428svn2704-desktop-file.patch Log Message: * Fri Jul 03 2009 Christoph Wickert - 0.1.1-0.11.20070428svn2704 - Fix path in desktop file (#509294) xfce4-websearch-plugin-20070428svn2704-desktop-file.patch: --- NEW FILE xfce4-websearch-plugin-20070428svn2704-desktop-file.patch --- --- src/websearch.desktop.in.in.orig 2009-07-04 01:08:31.000000000 +0200 +++ src/websearch.desktop.in.in 2009-07-04 01:35:04.000000000 +0200 @@ -2,6 +2,10 @@ Type=X-XFCE-PanelPlugin Encoding=UTF-8 _Name=WebSearch +_Name[de]=Web-Suche _Comment=Search the Web directly from the Panel -Icon=stock_find -X-XFCE-Module=@INTERNAL_PLUGIN_PATH@/libwebsearch.so +_Comment[de]=Das Internet direkt aus dem Panel heraus durchsuchen +Icon=gtk-find +X-XFCE-Module=websearch +X-XFCE-Module-Path=@INTERNAL_PLUGIN_PATH@ +X-XFCE-Unique=false Index: xfce4-websearch-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-websearch-plugin/F-11/xfce4-websearch-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-websearch-plugin.spec 26 Feb 2009 09:15:14 -0000 1.16 +++ xfce4-websearch-plugin.spec 3 Jul 2009 23:51:01 -0000 1.17 @@ -1,6 +1,6 @@ Name: xfce4-websearch-plugin Version: 0.1.1 -Release: 0.10.20070428svn2704%{?dist} +Release: 0.11.20070428svn2704%{?dist} Summary: Websearch plugin from the XFCE panel Group: User Interface/Desktops @@ -11,7 +11,12 @@ URL: http://goodies.xfce.org/ # tar -cjf xfce4-websearch-plugin-`date +%G%m%d`svn2704.tar.bz2 xfce4-websearch-plugin Source0: %{name}-20070428svn2704.tar.bz2 #Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.gz +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=505165 +# reported to upstream at http://bugzilla.xfce.org/show_bug.cgi?id=5455 Patch0: %{name}-20070428svn2704-multilib.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=509294 +# not yet in Xfce bugzilla, because the websearch component is missing +Patch1: %{name}-20070428svn2704-desktop-file.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.0, libxfcegui4-devel >= 4.3.0, libxml2-devel @@ -26,6 +31,7 @@ Access searchengines from the XFCE panel %setup -qn %{name} ./autogen.sh %patch0 -b .multilib +%patch1 -b .path %build %configure --disable-static @@ -33,7 +39,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} +make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} INSTALL="install -p" find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %find_lang %{name} @@ -47,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jul 03 2009 Christoph Wickert - 0.1.1-0.11.20070428svn2704 +- Fix path in desktop file (#509294) + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-0.10.20070428svn2704 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kevin at fedoraproject.org Sat Jul 4 00:09:27 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sat, 4 Jul 2009 00:09:27 +0000 (UTC) Subject: rpms/leafnode/F-11 leafnode.cron, NONE, 1.1 sources, 1.5, 1.6 .cvsignore, 1.5, 1.6 leafnode.xinetd, 1.1, 1.2 leafnode.spec, 1.16, 1.17 Message-ID: <20090704000927.8A42F11C0419@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/leafnode/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21349 Modified Files: sources .cvsignore leafnode.xinetd leafnode.spec Added Files: leafnode.cron Log Message: Fix xinetd file to use ipv4 for bug #509218 Update to 1.11.7 Add an example cron script for bug #489592 --- NEW FILE leafnode.cron --- # This is an example cron file for leafnode. # Adjust to your needs after leafnode is configured and uncomment. # # This job will fetch news from your sources every hour. # #01 * * * * root /usr/sbin/fetchnews Index: sources =================================================================== RCS file: /cvs/extras/rpms/leafnode/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 25 Aug 2007 17:31:21 -0000 1.5 +++ sources 4 Jul 2009 00:08:57 -0000 1.6 @@ -1 +1 @@ -5a083968dbacc3d6f6d1013241c23e39 leafnode-1.11.6.tar.bz2 +e5e8ac28386c59df0b14ddbfcbe78509 leafnode-1.11.7.tar.bz2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/leafnode/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 25 Aug 2007 17:31:21 -0000 1.5 +++ .cvsignore 4 Jul 2009 00:08:57 -0000 1.6 @@ -1 +1 @@ -leafnode-1.11.6.tar.bz2 +leafnode-1.11.7.tar.bz2 Index: leafnode.xinetd =================================================================== RCS file: /cvs/extras/rpms/leafnode/F-11/leafnode.xinetd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- leafnode.xinetd 8 Nov 2004 04:40:39 -0000 1.1 +++ leafnode.xinetd 4 Jul 2009 00:08:57 -0000 1.2 @@ -8,6 +8,7 @@ service nntp user = news server = /usr/sbin/leafnode log_on_failure += USERID + flags = IPv4 #bind = 127.0.0.1 #this only allows connects from localhost, use this if you do not Index: leafnode.spec =================================================================== RCS file: /cvs/extras/rpms/leafnode/F-11/leafnode.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- leafnode.spec 25 Feb 2009 12:52:56 -0000 1.16 +++ leafnode.spec 4 Jul 2009 00:08:57 -0000 1.17 @@ -1,13 +1,14 @@ Name: leafnode -Version: 1.11.6 -Release: 5%{?dist} +Version: 1.11.7 +Release: 2%{?dist} Summary: Leaf site offline NNTP server License: MIT and LGPLv2 Group: Applications/Internet URL: http://www.leafnode.org -Source0: http://download.sf.net/leafnode/leafnode-%{version}.tar.bz2 +Source0: http://download.sourceforge.net/leafnode/leafnode-%{version}.tar.bz2 Source1: leafnode.xinetd +Source2: leafnode.cron BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pcre-devel Requires: xinetd @@ -53,6 +54,8 @@ mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/ install -m755 leafnode.cron.daily $RPM_BUILD_ROOT/%{_sysconfdir}/cron.daily/leafnode mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/xinetd.d install -m644 leafnode.xinetd $RPM_BUILD_ROOT/%{_sysconfdir}/xinetd.d/leafnode +mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d +install -m644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/leafnode rm $RPM_BUILD_ROOT/%{_sysconfdir}/leafnode/Makefile.dist rm $RPM_BUILD_ROOT/%{_sysconfdir}/leafnode/nntp.rules.dist rm $RPM_BUILD_ROOT/%{_sysconfdir}/leafnode/run.tcpd.dist @@ -77,6 +80,7 @@ exit 0 %config(noreplace) %attr(640,root,news) %confdir/filters %config(noreplace) %{_sysconfdir}/cron.daily/leafnode %config(noreplace) %{_sysconfdir}/xinetd.d/leafnode +%config(noreplace) %{_sysconfdir}/cron.d/leafnode %{_bindir}/* %{_sbindir}/* @@ -101,6 +105,13 @@ exit 0 rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 03 2009 Kevin Fenzi - 1.11.7-2 +- Fix xinetd file to use ipv4 for bug #509218 + +* Fri Jun 05 2009 Kevin Fenzi - 1.11.7-1 +- Update to 1.11.7 +- Add an example cron script for bug #489592 + * Wed Feb 25 2009 Fedora Release Engineering - 1.11.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Sat Jul 4 00:52:31 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 4 Jul 2009 00:52:31 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs-4.2.95-kdebug#198338.patch, NONE, 1.1 kdelibs.spec, 1.482, 1.483 Message-ID: <20090704005231.F39F911C0419@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30029 Modified Files: kdelibs.spec Added Files: kdelibs-4.2.95-kdebug#198338.patch Log Message: * Fir Jul 03 2009 Rex Dieter - 4.2.95-3 - plasma animation crasher (kdebug#198338) kdelibs-4.2.95-kdebug#198338.patch: --- NEW FILE kdelibs-4.2.95-kdebug#198338.patch --- --- branches/KDE/4.3/kdelibs/plasma/animator.cpp 2009/06/24 10:17:04 986143 +++ branches/KDE/4.3/kdelibs/plasma/animator.cpp 2009/07/02 22:33:13 990659 @@ -622,6 +622,10 @@ //kDebug() << "timeEvent, elapsed time: " << elapsed; foreach (AnimationState *state, d->animatedItems) { + if (d->animatedItemsToDelete.contains(state)) { + continue; + } + if (state->currentInterval <= elapsed) { // we need to step forward! state->currentFrame += @@ -648,6 +652,10 @@ } foreach (MovementState *state, d->movingItems) { + if (d->movingItemsToDelete.contains(state)) { + continue; + } + if (state->currentInterval <= elapsed) { // we need to step forward! state->currentFrame += @@ -675,6 +683,10 @@ } foreach (ElementAnimationState *state, d->animatedElements) { + if (d->animatedElementsToDelete.contains(state)) { + continue; + } + if (state->currentFrame == state->frames) { //kDebug() << "skipping" << state->id << "as it is already at frame" // << state->currentFrame << "of" << state->frames; @@ -711,6 +723,10 @@ } foreach (CustomAnimationState *state, d->customAnims) { + if (d->customAnimsToDelete.contains(state)) { + continue; + } + if (state->currentInterval <= elapsed) { // advance the frame state->currentFrame += Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.482 retrieving revision 1.483 diff -u -p -r1.482 -r1.483 --- kdelibs.spec 3 Jul 2009 10:53:26 -0000 1.482 +++ kdelibs.spec 4 Jul 2009 00:52:00 -0000 1.483 @@ -5,7 +5,7 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.95 -Release: 2%{?dist} +Release: 3%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -85,9 +85,8 @@ Patch18: kdelibs-4.1.72-kstandarddirs.pa Patch20: kdelibs-4.1.70-cmake.patch # upstream -# 4.2 branch - # 4.3 branch +Patch100: kdelibs-4.2.95-kdebug#198338.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -218,9 +217,8 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi %patch20 -p1 -b .xxcmake # upstream patches -# 4.2 - # 4.3 +%patch100 -p4 -b .kdebug#198338 %build @@ -403,6 +401,9 @@ rm -rf %{buildroot} %changelog +* Fir Jul 03 2009 Rex Dieter - 4.2.95-3 +- plasma animation crasher (kdebug#198338) + * Fri Jul 03 2009 Rex Dieter - 4.2.95-2 - up min versions, phonon, strigi, soprano (#509511) From rdieter at fedoraproject.org Sat Jul 4 00:53:20 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 4 Jul 2009 00:53:20 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.483,1.484 Message-ID: <20090704005320.3573311C0419@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30217 Modified Files: kdelibs.spec Log Message: fix changelog date Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.483 retrieving revision 1.484 diff -u -p -r1.483 -r1.484 --- kdelibs.spec 4 Jul 2009 00:52:00 -0000 1.483 +++ kdelibs.spec 4 Jul 2009 00:52:49 -0000 1.484 @@ -401,7 +401,7 @@ rm -rf %{buildroot} %changelog -* Fir Jul 03 2009 Rex Dieter - 4.2.95-3 +* Fri Jul 03 2009 Rex Dieter - 4.2.95-3 - plasma animation crasher (kdebug#198338) * Fri Jul 03 2009 Rex Dieter - 4.2.95-2 From itamarjp at fedoraproject.org Sat Jul 4 00:55:04 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sat, 4 Jul 2009 00:55:04 +0000 (UTC) Subject: rpms/bugzilla/EL-5 import.log, NONE, 1.1 .cvsignore, 1.6, 1.7 README.fedora.bugzilla, 1.1, 1.2 bugzilla-httpd-conf, 1.1, 1.2 bugzilla-rw-paths.patch, 1.2, 1.3 bugzilla.spec, 1.13, 1.14 sources, 1.6, 1.7 Message-ID: <20090704005504.38F8111C0419@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30753/EL-5 Modified Files: .cvsignore README.fedora.bugzilla bugzilla-httpd-conf bugzilla-rw-paths.patch bugzilla.spec sources Added Files: import.log Log Message: bugzilla 3.2.3 --- NEW FILE import.log --- bugzilla-3_2_3-1_fc11:EL-5:bugzilla-3.2.3-1.fc11.src.rpm:1246668842 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 24 Sep 2007 17:10:16 -0000 1.6 +++ .cvsignore 4 Jul 2009 00:55:03 -0000 1.7 @@ -1 +1 @@ -bugzilla-3.0.2.tar.gz +bugzilla-3.2.3.tar.gz Index: README.fedora.bugzilla =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/README.fedora.bugzilla,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.fedora.bugzilla 26 Jun 2006 17:53:13 -0000 1.1 +++ README.fedora.bugzilla 4 Jul 2009 00:55:03 -0000 1.2 @@ -14,3 +14,12 @@ database setting modifications. Lastly, simply re-run checksetup.pl to populate the database tables, set up the templates, and add the administrator ID. You should be done at this point. + +There are two useful cron jobs which are included with Bugzilla which should be +put in place after configuration is done. The first is a daily cron job for +statistics collection. This is in the file "cron.daily" and can be enabled by +simply copying this file to /etc/cron.daily/bugzilla (or any other file name +in the /etc/cron.daily/ directory). The second is the "whine" cron job, +designed to run every 15 minutes. To enable this job, simply coopy the +cron.whine file to /etc/cron.d/bugzilla (or any othe filename within the +/etc/cron.d/ directory). Index: bugzilla-httpd-conf =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/bugzilla-httpd-conf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bugzilla-httpd-conf 26 Jun 2006 17:53:13 -0000 1.1 +++ bugzilla-httpd-conf 4 Jul 2009 00:55:03 -0000 1.2 @@ -4,5 +4,5 @@ Alias /bugzilla /usr/share/bugzilla AddHandler cgi-script .cgi Options +Indexes +ExecCGI +FollowSymLinks DirectoryIndex index.cgi - AllowOverride Limit + AllowOverride Limit Options FileInfo bugzilla-rw-paths.patch: Index: bugzilla-rw-paths.patch =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/bugzilla-rw-paths.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bugzilla-rw-paths.patch 27 Aug 2007 13:24:36 -0000 1.2 +++ bugzilla-rw-paths.patch 4 Jul 2009 00:55:03 -0000 1.3 @@ -1,7 +1,6 @@ -diff -ru bugzilla-orig/Bugzilla/Constants.pm bugzilla-3.0.1/Bugzilla/Constants.pm ---- bugzilla-orig/Bugzilla/Constants.pm 2007-08-23 14:42:23.000000000 -0400 -+++ bugzilla-3.0.1/Bugzilla/Constants.pm 2007-08-27 08:50:50.000000000 -0400 -@@ -423,9 +423,9 @@ +--- bugzilla-3.2.2/Bugzilla/Constants.pm 2009-02-03 10:02:53.000000000 +0000 ++++ bugzilla-3.2.2-rw/Bugzilla/Constants.pm 2009-02-18 17:59:52.000000000 +0000 +@@ -465,9 +465,9 @@ 'cgi_path' => $libpath, 'templatedir' => "$libpath/template", 'project' => $project, @@ -12,9 +11,9 @@ diff -ru bugzilla-orig/Bugzilla/Constant + 'datadir' => "/var/lib/bugzilla/$datadir", + 'attachdir' => "/var/lib/bugzilla/$datadir/attachments", 'skinsdir' => "$libpath/skins", - # $webdotdir must be in the webtree somewhere. Even if you use a + # $webdotdir must be in the web server's tree somewhere. Even if you use a # local dot, we output images to there. Also, if $webdotdir is -@@ -433,8 +433,8 @@ +@@ -475,8 +475,8 @@ # change showdependencygraph.cgi to set image_url to the correct # location. # The script should really generate these graphs directly... @@ -24,4 +23,4 @@ diff -ru bugzilla-orig/Bugzilla/Constant + 'extensionsdir' => "/var/lib/bugzilla/extensions", }; } - + Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/bugzilla.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- bugzilla.spec 24 Sep 2007 17:10:16 -0000 1.13 +++ bugzilla.spec 4 Jul 2009 00:55:03 -0000 1.14 @@ -4,17 +4,18 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.0.2 +Version: 3.2.3 Group: Applications/Publishing -Release: 0%{?dist} -License: MPL +Release: 1%{?dist} +License: MPLv1.1 Source0: http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar.gz Source1: bugzilla-httpd-conf Source2: README.fedora.bugzilla Patch0: bugzilla-rw-paths.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: smtpdaemon, webserver, graphviz, patchutils, mod_perl, perl-SOAP-Lite, perl-Email-Simple, perl-Email-MIME-Modifier, perl-Template-Toolkit, perl-MIME-tools, perl-Email-MIME-Attachment-Stripper, perl-Email-Send, perl-Email-Reply, perl-Email-MIME, perl-Email-Address +Requires: webserver, patchutils, mod_perl, perl(SOAP::Lite), which %package doc Summary: Bugzilla documentation @@ -23,11 +24,13 @@ Group: Documentation %package contrib Summary: Bugzilla contributed scripts Group: Applications/Publishing +BuildRequires: python %description -Bugzilla is a popular bug tracking system used by multiple open source -projects. It requires a database engine installed - either MySQL or -PostgreSQL. Without one of these database engines, Bugzilla will not work. +Bugzilla is a popular bug tracking system used by multiple open source projects +It requires a database engine installed - either MySQL, PostgreSQL or Oracle. +Without one of these database engines (local or remote), Bugzilla will not work +- see the Release Notes for details. %description doc Documentation distributed with the Bugzilla bug tracking system @@ -39,13 +42,16 @@ Contributed scripts and functions for Bu %setup -q -n %{name}-%{version} %patch0 -p1 -# Filter unwanted Requires: +# Filter unwanted Requires found by /usr/lib/rpm/perldeps.pl: +# create a wrapper script which runs the original perl_requires +# command and strips some of the output cat << \EOF > %{name}-req #!/bin/sh %{__perl_requires} $* |\ - sed -e '/perl(globals.pl)/d;/perl(BugzillaEmail)/d' +sed -e '/perl(Authen::Radius)/d;/perl(DBD::Pg)/d;/perl(DBD::Oracle)/d;/perl(sanitycheck.cgi)/d' EOF +# use that wrapper script instead of the original perl_requires script %define __perl_requires %{_builddir}/%{name}-%{version}/%{name}-req chmod +x %{__perl_requires} @@ -75,15 +81,13 @@ done %install mkdir -p ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla cp -pr * ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla -mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily -cat << EOM > ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily/bugzilla +cat << EOM > ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/cron.daily #!/bin/bash # Daily Bugzilla collectstats cron job run cd %{bzinstallprefix}/bugzilla ./collectstats.pl EOM -mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.d -echo "0-59/15 * * * * apache cd %{bzinstallprefix}/bugzilla && env LANG=C %{bzinstallprefix}/bugzilla/whine.pl" > ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.d/bugzilla +echo "0-59/15 * * * * apache cd %{bzinstallprefix}/bugzilla && env LANG=C %{bzinstallprefix}/bugzilla/whine.pl" > ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/cron.whine rm -f ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/{README,QUICKSTART,UPGRADING,UPGRADING-pre-2.8} mkdir -p ${RPM_BUILD_ROOT}/%{_datadir}/doc/%{name}-%{version} cp %{SOURCE2} ./README.fedora @@ -95,15 +99,14 @@ install -m 0644 -D -p %{SOURCE1} ${RPM_ rm -rf ${RPM_BUILD_ROOT} %post -pushd %{bzinstallprefix}/bugzilla > /dev/null +(pushd %{bzinstallprefix}/bugzilla > /dev/null ./checksetup.pl > /dev/null -popd > /dev/null +popd > /dev/null) %files %defattr(-,root,root,-) %dir %{bzinstallprefix}/bugzilla %{bzinstallprefix}/bugzilla/*.cgi -%{bzinstallprefix}/bugzilla/*.js %{bzinstallprefix}/bugzilla/*.pl %{bzinstallprefix}/bugzilla/Bugzilla.pm %{bzinstallprefix}/bugzilla/bugzilla.dtd @@ -115,12 +118,12 @@ popd > /dev/null %{bzinstallprefix}/bugzilla/skins %{bzinstallprefix}/bugzilla/t %{bzinstallprefix}/bugzilla/template +%{bzinstallprefix}/bugzilla/extensions/example +%{bzinstallprefix}/bugzilla/lib/README +%{bzinstallprefix}/bugzilla/cron.daily +%{bzinstallprefix}/bugzilla/cron.whine %ghost %{bzinstallprefix}/bugzilla/bugzilla-req %config(noreplace) %{_sysconfdir}/httpd/conf.d/bugzilla.conf -%defattr(0755,root,root,-) -%{_sysconfdir}/cron.daily/* -%defattr(0600,root,root,-) -%{_sysconfdir}/cron.d/* %defattr(-,root,root,-) %doc README %doc QUICKSTART @@ -128,15 +131,74 @@ popd > /dev/null %doc UPGRADING-pre-2.8 %doc README.fedora %dir %{bzdatadir} +%defattr(0750,root,apache,-) %dir %{_sysconfdir}/bugzilla %files doc +%defattr(-,root,root,-) %{bzinstallprefix}/bugzilla/docs %files contrib +%defattr(-,root,root,-) %{bzinstallprefix}/bugzilla/contrib %changelog +* Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 +- fix CVE-2009-1213 + +* Thu Mar 05 2009 Itamar Reis Peixoto 3.2.2-2 +- fix from BZ #474250 Comment #16, from Chris Eveleigh --> +- add python BR for contrib subpackage +- fix description +- change Requires perl-SOAP-Lite to perl(SOAP::Lite) according guidelines + +* Sun Mar 01 2009 Itamar Reis Peixoto 3.2.2-1 +- thanks to Chris Eveleigh +- for contributing with patches :-) +- Upgrade to upstream 3.2.2 to fix multiple security vulns +- Removed old perl_requires exclusions, added new ones for RADIUS, Oracle and sanitycheck.cgi +- Added Oracle to supported DBs in description (and moved line breaks) +- Include a patch to fix max_allowed_packet warnin when using with mysql + +* Sat Feb 28 2009 Itamar Reis Peixoto 3.0.8-1 +- Upgrade to 3.0.8, fix #466077 #438080 +- fix macro in changelog rpmlint warning +- fix files-attr-not-set rpmlint warning for doc and contrib sub-packages + +* Mon Feb 23 2009 Fedora Release Engineering - 3.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 2 2009 Stepan Kasal - 3.0.4-3 +- do not require perl-Email-Simple, it is (no longer) in use +- remove several explicit perl-* requires; the automatic dependencies + do handle them + +* Mon Jul 14 2008 Tom "spot" Callaway - 3.0.4-2 +- fix license tag + +* Fri May 9 2008 John Berninger - 3.0.4-1 +- Update to upstream 3.0.4 to fix multiple security vulns +- Change perms on /etc/bugzilla for bz 427981 + +* Sun May 4 2008 John Berninger - 3.0.3-0 +- Update to upstream 3.0.3 - bz 444669 + +* Fri Dec 28 2007 John Berninger - 3.0.2-6 +- Add cron.daily, cron.whine to payload list + +* Fri Dec 28 2007 John Berninger - 3.0.2-5 +- Typo in spec file, rebuild + +* Fri Dec 28 2007 John Berninger - 3.0.2-3 +- bz 426465 - don't enable cron jobs so cron doesn't complain about + an unconfigured installation + +* Fri Oct 26 2007 John Berninger - 3.0.2-2 +- fix issue with AlowOverride Options + +* Mon Oct 22 2007 John Berninger - 3.0.2-1 +- updates to requires and httpd conf for BZ's 279961, 295861, 339531 + * Mon Sep 24 2007 John Berninger - 3.0.2-0 - update to 3.0.2 - bz 299981 @@ -177,7 +239,7 @@ popd > /dev/null * Mon Jun 26 2006 John Berninger - 2.22-5 - License is MPL, not GPL -- Clean up %doc specs +- Clean up %%doc specs * Sun Jun 25 2006 John Benringer - 2.22-4 - Remove localconfig file per upstream Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 24 Sep 2007 17:10:16 -0000 1.6 +++ sources 4 Jul 2009 00:55:03 -0000 1.7 @@ -1 +1 @@ -53afb2c5d4c105ed2f4b2ba4ccfcedc7 bugzilla-3.0.2.tar.gz +fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz From cwickert at fedoraproject.org Sat Jul 4 00:59:08 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 4 Jul 2009 00:59:08 +0000 (UTC) Subject: rpms/xfce4-notes-plugin/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xfce4-notes-plugin.spec, 1.18, 1.19 Message-ID: <20090704005908.819CB11C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-notes-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31593 Modified Files: .cvsignore sources xfce4-notes-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.7.0-1 - Update to 1.7.0 - Update gtk-update-icon-cache scriptlets Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Mar 2009 03:55:24 -0000 1.10 +++ .cvsignore 4 Jul 2009 00:58:38 -0000 1.11 @@ -1 +1 @@ -xfce4-notes-plugin-1.6.4.tar.bz2 +xfce4-notes-plugin-1.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Mar 2009 03:55:24 -0000 1.10 +++ sources 4 Jul 2009 00:58:38 -0000 1.11 @@ -1 +1 @@ -88132a8224880f01f02450020c73f9c3 xfce4-notes-plugin-1.6.4.tar.bz2 +a08f6febf6e6dd8b90767f83a179e24c xfce4-notes-plugin-1.7.0.tar.bz2 Index: xfce4-notes-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/devel/xfce4-notes-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-notes-plugin.spec 1 Mar 2009 03:55:24 -0000 1.18 +++ xfce4-notes-plugin.spec 4 Jul 2009 00:58:38 -0000 1.19 @@ -1,5 +1,5 @@ Name: xfce4-notes-plugin -Version: 1.6.4 +Version: 1.7.0 Release: 1%{?dist} Summary: Notes plugin for the Xfce panel @@ -10,9 +10,9 @@ Source0: http://goodies.xfce.org/release BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.4.0, libxfcegui4-devel >= 4.4.0, libxml2-devel -BuildRequires: Thunar-devel >= 0.8.0, xfconf-devel >= 4.5.90 +BuildRequires: xfconf-devel >= 4.6.0 BuildRequires: gettext, intltool, perl(XML::Parser) -Requires: xfce4-panel >= 4.4.1, xfconf >= 4.5.90 +Requires: xfce4-panel >= 4.4.1, xfconf >= 4.6.0 %description This plugin provides sticky notes for your desktop. You can create a note by @@ -41,22 +41,24 @@ rm -rf $RPM_BUILD_ROOT %post -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO +%{_bindir}/xfce4-notes-settings %{_libexecdir}/xfce4/panel-plugins/%{name} %{_datadir}/xfce4/panel-plugins/*.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.png @@ -65,6 +67,10 @@ fi %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.7.0-1 +- Update to 1.7.0 +- Update gtk-update-icon-cache scriptlets + * Sun Mar 01 2009 Christoph Wickert - 1.6.4-1 - Update to 1.6.4 From cwickert at fedoraproject.org Sat Jul 4 01:02:44 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 4 Jul 2009 01:02:44 +0000 (UTC) Subject: rpms/xfce4-notes-plugin/F-11 .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 xfce4-notes-plugin.spec, 1.18, 1.19 Message-ID: <20090704010244.7162511C0419@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-notes-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32505 Modified Files: .cvsignore sources xfce4-notes-plugin.spec Log Message: * Fri Jul 03 2009 Christoph Wickert - 1.7.0-1 - Update to 1.7.0 - Update gtk-update-icon-cache scriptlets Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Mar 2009 03:55:24 -0000 1.10 +++ .cvsignore 4 Jul 2009 01:02:14 -0000 1.11 @@ -1 +1 @@ -xfce4-notes-plugin-1.6.4.tar.bz2 +xfce4-notes-plugin-1.7.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Mar 2009 03:55:24 -0000 1.10 +++ sources 4 Jul 2009 01:02:14 -0000 1.11 @@ -1 +1 @@ -88132a8224880f01f02450020c73f9c3 xfce4-notes-plugin-1.6.4.tar.bz2 +a08f6febf6e6dd8b90767f83a179e24c xfce4-notes-plugin-1.7.0.tar.bz2 Index: xfce4-notes-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/F-11/xfce4-notes-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-notes-plugin.spec 1 Mar 2009 03:55:24 -0000 1.18 +++ xfce4-notes-plugin.spec 4 Jul 2009 01:02:14 -0000 1.19 @@ -1,5 +1,5 @@ Name: xfce4-notes-plugin -Version: 1.6.4 +Version: 1.7.0 Release: 1%{?dist} Summary: Notes plugin for the Xfce panel @@ -10,9 +10,9 @@ Source0: http://goodies.xfce.org/release BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.4.0, libxfcegui4-devel >= 4.4.0, libxml2-devel -BuildRequires: Thunar-devel >= 0.8.0, xfconf-devel >= 4.5.90 +BuildRequires: xfconf-devel >= 4.6.0 BuildRequires: gettext, intltool, perl(XML::Parser) -Requires: xfce4-panel >= 4.4.1, xfconf >= 4.5.90 +Requires: xfce4-panel >= 4.4.1, xfconf >= 4.6.0 %description This plugin provides sticky notes for your desktop. You can create a note by @@ -41,22 +41,24 @@ rm -rf $RPM_BUILD_ROOT %post -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO +%{_bindir}/xfce4-notes-settings %{_libexecdir}/xfce4/panel-plugins/%{name} %{_datadir}/xfce4/panel-plugins/*.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.png @@ -65,6 +67,10 @@ fi %changelog +* Fri Jul 03 2009 Christoph Wickert - 1.7.0-1 +- Update to 1.7.0 +- Update gtk-update-icon-cache scriptlets + * Sun Mar 01 2009 Christoph Wickert - 1.6.4-1 - Update to 1.6.4 From itamarjp at fedoraproject.org Sat Jul 4 01:03:59 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sat, 4 Jul 2009 01:03:59 +0000 (UTC) Subject: rpms/bugzilla/EL-4 bugzilla-rw-paths.patch, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.5, 1.6 README.fedora.bugzilla, 1.1, 1.2 bugzilla-httpd-conf, 1.1, 1.2 bugzilla.spec, 1.11, 1.12 sources, 1.5, 1.6 bugzilla-config-path.patch, 1.1, NONE bugzilla-data-dir.patch, 1.1, NONE Message-ID: <20090704010359.2E21911C0419@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv386/EL-4 Modified Files: .cvsignore README.fedora.bugzilla bugzilla-httpd-conf bugzilla.spec sources Added Files: bugzilla-rw-paths.patch import.log Removed Files: bugzilla-config-path.patch bugzilla-data-dir.patch Log Message: bugzilla 3.2.3 bugzilla-rw-paths.patch: --- NEW FILE bugzilla-rw-paths.patch --- --- bugzilla-3.2.2/Bugzilla/Constants.pm 2009-02-03 10:02:53.000000000 +0000 +++ bugzilla-3.2.2-rw/Bugzilla/Constants.pm 2009-02-18 17:59:52.000000000 +0000 @@ -465,9 +465,9 @@ 'cgi_path' => $libpath, 'templatedir' => "$libpath/template", 'project' => $project, - 'localconfig' => "$libpath/$localconfig", - 'datadir' => "$libpath/$datadir", - 'attachdir' => "$libpath/$datadir/attachments", + 'localconfig' => "/etc/bugzilla/$localconfig", + 'datadir' => "/var/lib/bugzilla/$datadir", + 'attachdir' => "/var/lib/bugzilla/$datadir/attachments", 'skinsdir' => "$libpath/skins", # $webdotdir must be in the web server's tree somewhere. Even if you use a # local dot, we output images to there. Also, if $webdotdir is @@ -475,8 +475,8 @@ # change showdependencygraph.cgi to set image_url to the correct # location. # The script should really generate these graphs directly... - 'webdotdir' => "$libpath/$datadir/webdot", - 'extensionsdir' => "$libpath/extensions", + 'webdotdir' => "/var/lib/bugzilla/$datadir/webdot", + 'extensionsdir' => "/var/lib/bugzilla/extensions", }; } --- NEW FILE import.log --- bugzilla-3_2_3-1_fc11:EL-4:bugzilla-3.2.3-1.fc11.src.rpm:1246669340 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 27 Aug 2007 13:22:15 -0000 1.5 +++ .cvsignore 4 Jul 2009 01:03:28 -0000 1.6 @@ -1 +1 @@ -bugzilla-2.22.3.tar.gz +bugzilla-3.2.3.tar.gz Index: README.fedora.bugzilla =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/README.fedora.bugzilla,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.fedora.bugzilla 26 Jun 2006 17:53:13 -0000 1.1 +++ README.fedora.bugzilla 4 Jul 2009 01:03:28 -0000 1.2 @@ -14,3 +14,12 @@ database setting modifications. Lastly, simply re-run checksetup.pl to populate the database tables, set up the templates, and add the administrator ID. You should be done at this point. + +There are two useful cron jobs which are included with Bugzilla which should be +put in place after configuration is done. The first is a daily cron job for +statistics collection. This is in the file "cron.daily" and can be enabled by +simply copying this file to /etc/cron.daily/bugzilla (or any other file name +in the /etc/cron.daily/ directory). The second is the "whine" cron job, +designed to run every 15 minutes. To enable this job, simply coopy the +cron.whine file to /etc/cron.d/bugzilla (or any othe filename within the +/etc/cron.d/ directory). Index: bugzilla-httpd-conf =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/bugzilla-httpd-conf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bugzilla-httpd-conf 26 Jun 2006 17:53:13 -0000 1.1 +++ bugzilla-httpd-conf 4 Jul 2009 01:03:28 -0000 1.2 @@ -4,5 +4,5 @@ Alias /bugzilla /usr/share/bugzilla AddHandler cgi-script .cgi Options +Indexes +ExecCGI +FollowSymLinks DirectoryIndex index.cgi - AllowOverride Limit + AllowOverride Limit Options FileInfo Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/bugzilla.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- bugzilla.spec 27 Aug 2007 13:22:15 -0000 1.11 +++ bugzilla.spec 4 Jul 2009 01:03:28 -0000 1.12 @@ -4,18 +4,18 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 2.22.3 +Version: 3.2.3 Group: Applications/Publishing -Release: 0%{?dist} -License: MPL +Release: 1%{?dist} +License: MPLv1.1 Source0: http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar.gz Source1: bugzilla-httpd-conf Source2: README.fedora.bugzilla -Patch0: bugzilla-data-dir.patch -Patch1: bugzilla-config-path.patch +Patch0: bugzilla-rw-paths.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: smtpdaemon, webserver, graphviz, patchutils +Requires: webserver, patchutils, mod_perl, perl(SOAP::Lite), which %package doc Summary: Bugzilla documentation @@ -24,11 +24,13 @@ Group: Documentation %package contrib Summary: Bugzilla contributed scripts Group: Applications/Publishing +BuildRequires: python %description -Bugzilla is a popular bug tracking system used by multiple open source -projects. It requires a database engine installed - either MySQL or -PostgreSQL. Without one of these database engines, Bugzilla will not work. +Bugzilla is a popular bug tracking system used by multiple open source projects +It requires a database engine installed - either MySQL, PostgreSQL or Oracle. +Without one of these database engines (local or remote), Bugzilla will not work +- see the Release Notes for details. %description doc Documentation distributed with the Bugzilla bug tracking system @@ -39,15 +41,17 @@ Contributed scripts and functions for Bu %prep %setup -q -n %{name}-%{version} %patch0 -p1 -%patch1 -p1 -# Filter unwanted Requires: +# Filter unwanted Requires found by /usr/lib/rpm/perldeps.pl: +# create a wrapper script which runs the original perl_requires +# command and strips some of the output cat << \EOF > %{name}-req #!/bin/sh %{__perl_requires} $* |\ - sed -e '/perl(globals.pl)/d;/perl(BugzillaEmail)/d' +sed -e '/perl(Authen::Radius)/d;/perl(DBD::Pg)/d;/perl(DBD::Oracle)/d;/perl(sanitycheck.cgi)/d' EOF +# use that wrapper script instead of the original perl_requires script %define __perl_requires %{_builddir}/%{name}-%{version}/%{name}-req chmod +x %{__perl_requires} @@ -77,15 +81,13 @@ done %install mkdir -p ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla cp -pr * ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla -mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily -cat << EOM > ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.daily/bugzilla +cat << EOM > ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/cron.daily #!/bin/bash # Daily Bugzilla collectstats cron job run cd %{bzinstallprefix}/bugzilla ./collectstats.pl EOM -mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.d -echo "0-59/15 * * * * apache cd %{bzinstallprefix}/bugzilla && env LANG=C %{bzinstallprefix}/bugzilla/whine.pl" > ${RPM_BUILD_ROOT}/%{_sysconfdir}/cron.d/bugzilla +echo "0-59/15 * * * * apache cd %{bzinstallprefix}/bugzilla && env LANG=C %{bzinstallprefix}/bugzilla/whine.pl" > ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/cron.whine rm -f ${RPM_BUILD_ROOT}/%{bzinstallprefix}/bugzilla/{README,QUICKSTART,UPGRADING,UPGRADING-pre-2.8} mkdir -p ${RPM_BUILD_ROOT}/%{_datadir}/doc/%{name}-%{version} cp %{SOURCE2} ./README.fedora @@ -97,15 +99,14 @@ install -m 0644 -D -p %{SOURCE1} ${RPM_ rm -rf ${RPM_BUILD_ROOT} %post -pushd %{bzinstallprefix}/bugzilla > /dev/null +(pushd %{bzinstallprefix}/bugzilla > /dev/null ./checksetup.pl > /dev/null -popd > /dev/null +popd > /dev/null) %files %defattr(-,root,root,-) %dir %{bzinstallprefix}/bugzilla %{bzinstallprefix}/bugzilla/*.cgi -%{bzinstallprefix}/bugzilla/*.js %{bzinstallprefix}/bugzilla/*.pl %{bzinstallprefix}/bugzilla/Bugzilla.pm %{bzinstallprefix}/bugzilla/bugzilla.dtd @@ -117,12 +118,12 @@ popd > /dev/null %{bzinstallprefix}/bugzilla/skins %{bzinstallprefix}/bugzilla/t %{bzinstallprefix}/bugzilla/template +%{bzinstallprefix}/bugzilla/extensions/example +%{bzinstallprefix}/bugzilla/lib/README +%{bzinstallprefix}/bugzilla/cron.daily +%{bzinstallprefix}/bugzilla/cron.whine %ghost %{bzinstallprefix}/bugzilla/bugzilla-req %config(noreplace) %{_sysconfdir}/httpd/conf.d/bugzilla.conf -%defattr(0755,root,root,-) -%{_sysconfdir}/cron.daily/* -%defattr(0600,root,root,-) -%{_sysconfdir}/cron.d/* %defattr(-,root,root,-) %doc README %doc QUICKSTART @@ -130,42 +131,115 @@ popd > /dev/null %doc UPGRADING-pre-2.8 %doc README.fedora %dir %{bzdatadir} +%defattr(0750,root,apache,-) %dir %{_sysconfdir}/bugzilla %files doc +%defattr(-,root,root,-) %{bzinstallprefix}/bugzilla/docs %files contrib +%defattr(-,root,root,-) %{bzinstallprefix}/bugzilla/contrib %changelog -* Mon Aug 27 2007 John Berninger - 2.22.3-0 -- upate to 2.22.3 - bz 256021 +* Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 +- fix CVE-2009-1213 + +* Thu Mar 05 2009 Itamar Reis Peixoto 3.2.2-2 +- fix from BZ #474250 Comment #16, from Chris Eveleigh --> +- add python BR for contrib subpackage +- fix description +- change Requires perl-SOAP-Lite to perl(SOAP::Lite) according guidelines + +* Sun Mar 01 2009 Itamar Reis Peixoto 3.2.2-1 +- thanks to Chris Eveleigh +- for contributing with patches :-) +- Upgrade to upstream 3.2.2 to fix multiple security vulns +- Removed old perl_requires exclusions, added new ones for RADIUS, Oracle and sanitycheck.cgi +- Added Oracle to supported DBs in description (and moved line breaks) +- Include a patch to fix max_allowed_packet warnin when using with mysql + +* Sat Feb 28 2009 Itamar Reis Peixoto 3.0.8-1 +- Upgrade to 3.0.8, fix #466077 #438080 +- fix macro in changelog rpmlint warning +- fix files-attr-not-set rpmlint warning for doc and contrib sub-packages + +* Mon Feb 23 2009 Fedora Release Engineering - 3.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 2 2009 Stepan Kasal - 3.0.4-3 +- do not require perl-Email-Simple, it is (no longer) in use +- remove several explicit perl-* requires; the automatic dependencies + do handle them + +* Mon Jul 14 2008 Tom "spot" Callaway - 3.0.4-2 +- fix license tag + +* Fri May 9 2008 John Berninger - 3.0.4-1 +- Update to upstream 3.0.4 to fix multiple security vulns +- Change perms on /etc/bugzilla for bz 427981 + +* Sun May 4 2008 John Berninger - 3.0.3-0 +- Update to upstream 3.0.3 - bz 444669 -* Wed Feb 20 2007 John Berninger - 2.22.2-1 -- Update to 2.22.2 - bz 229163 +* Fri Dec 28 2007 John Berninger - 3.0.2-6 +- Add cron.daily, cron.whine to payload list -* Wed Feb 14 2007 John Berninger - 2.22.1-6 +* Fri Dec 28 2007 John Berninger - 3.0.2-5 +- Typo in spec file, rebuild + +* Fri Dec 28 2007 John Berninger - 3.0.2-3 +- bz 426465 - don't enable cron jobs so cron doesn't complain about + an unconfigured installation + +* Fri Oct 26 2007 John Berninger - 3.0.2-2 +- fix issue with AlowOverride Options + +* Mon Oct 22 2007 John Berninger - 3.0.2-1 +- updates to requires and httpd conf for BZ's 279961, 295861, 339531 + +* Mon Sep 24 2007 John Berninger - 3.0.2-0 +- update to 3.0.2 - bz 299981 + +* Mon Aug 27 2007 John Berninger - 3.0.1-0 +- update to 3.0.1 - bz 256021 + +* Fri May 18 2007 John Berninger - 3.0-2 +- update Requires for bz's 241037, 241206 + +* Fri May 18 2007 John Berninger - 3.0-1 +- update to upstream version 3.0 +- add new dependencies on mod_perl, perl-SOAP-Lite +- refactor patch(es) to change paths for read-only /usr + +* Tue Feb 20 2007 John Berninger - 2.22.2-1 +- update to 2.22.2 - bz 229163 + +* Wed Feb 14 2007 John Berninger - 2.22-12 - More cron job fixes -* Wed Jan 31 2007 John Berninger - 2.22.1-5 +* Wed Jan 31 2007 John Berninger - 2.22-11 - Fix cron job perms -* Sat Jan 27 2007 John Berninger - 2.22.1-4 -- Fix collectstats cron job, bz 224550 +* Sat Jan 27 2007 John Berninger - 2.22-10 +- Fix collectstats cron job, bx 224550 -* Mon Jan 22 2007 John Berninger - 2.22.1-3 +* Mon Jan 22 2007 John Berninger - 2.22-9 - Fix linebreak issues in specfile -* Mon Jan 22 2007 John Berninger - 2.22.1-2 +* Mon Jan 22 2007 John Berninger - 2.22-8 - Put daily and hourly cronjobs in place per bz 223747 -* Tue Jun 26 2006 John Berninger - 2.22.1-1 +* Wed Nov 8 2006 John Berninger - 2.22-7 +- Fixes for bz # 212355 + +* Tue Jun 26 2006 John Berninger - 2.22-6 - Clean up BugzillaEmail requires (filter it out) * Mon Jun 26 2006 John Berninger - 2.22-5 - License is MPL, not GPL -- Clean up %doc specs +- Clean up %%doc specs * Sun Jun 25 2006 John Benringer - 2.22-4 - Remove localconfig file per upstream Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 27 Aug 2007 13:22:15 -0000 1.5 +++ sources 4 Jul 2009 01:03:28 -0000 1.6 @@ -1 +1 @@ -871044e9ef0b5ea523408b66dbe4c5ae bugzilla-2.22.3.tar.gz +fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz --- bugzilla-config-path.patch DELETED --- --- bugzilla-data-dir.patch DELETED --- From rdieter at fedoraproject.org Sat Jul 4 01:37:24 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 4 Jul 2009 01:37:24 +0000 (UTC) Subject: rpms/kipi-plugins/devel kipi-plugins-0.4.0-dt_validation.patch, NONE, 1.1 .cvsignore, 1.28, 1.29 kipi-plugins.spec, 1.94, 1.95 sources, 1.28, 1.29 Message-ID: <20090704013724.B4EAB11C0419@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kipi-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6780 Modified Files: .cvsignore kipi-plugins.spec sources Added Files: kipi-plugins-0.4.0-dt_validation.patch Log Message: * Fri Jul 03 2009 Rex Dieter 0.4.0-1 - kipi-plugins-0.4.0 kipi-plugins-0.4.0-dt_validation.patch: --- NEW FILE kipi-plugins-0.4.0-dt_validation.patch --- diff -up kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop --- kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation 2009-07-03 03:39:04.000000000 -0500 +++ kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop 2009-07-03 20:31:27.489920856 -0500 @@ -35,6 +35,6 @@ Comment[sv]=KDE:s gr??nssnitt f??r bildi Comment[uk]=?????????????????? ???????????????? KDE ?????? ???????????? ?? ???????????????????????? Comment[x-test]=xxKDE Image Plugins Interfacexx X-DocPath=kipi-plugins/index.html -Categories=Qt;KDE;Graphics; +#Categories=Qt;KDE;Graphics; NoDisplay=true Type=Service Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 12 May 2009 10:49:27 -0000 1.28 +++ .cvsignore 4 Jul 2009 01:37:22 -0000 1.29 @@ -1 +1 @@ -kipi-plugins-0.3.0.tar.bz2 +kipi-plugins-0.4.0.tar.bz2 Index: kipi-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/kipi-plugins.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- kipi-plugins.spec 23 May 2009 04:40:17 -0000 1.94 +++ kipi-plugins.spec 4 Jul 2009 01:37:22 -0000 1.95 @@ -2,8 +2,8 @@ Name: kipi-plugins Summary: Plugins to use with Kipi -Version: 0.3.0 -Release: 2%{?dist} +Version: 0.4.0 +Release: 1%{?dist} License: GPLv2+ and Adobe Group: Applications/Multimedia @@ -11,6 +11,9 @@ Url: http://www.kipi-plugins.org/ Source0: http://downloads.sourceforge.net/kipi/kipi-plugins-%{version}%{?beta:-%{beta}}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +## upstreamable patches +Patch50: kipi-plugins-0.4.0-dt_validation.patch + %if 0%{?fedora} > 10 %define libgpod_ver 0.7.0 %else @@ -19,6 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version # temporary, until f10 is up'd to libgpod-0.7.0 too Patch1: kipi-plugins-use-libgpod-0.6.0.patch +BuildRequires: desktop-file-utils BuildRequires: exiv2-devel ## DNG converter BuildRequires: expat-devel @@ -77,6 +81,8 @@ PrintWizard : print images in var %prep %setup -q -n %{name}-%{version}%{?beta:-%{beta}} +%patch50 -p1 -b .dt_validation + %if "%{?libgpod_ver}" == "0.6.0" %patch1 -p1 -b .libgpod-0.6.0 %endif @@ -112,6 +118,11 @@ cat *.lang > %{name}-all.lang rm -f %{buildroot}%{_kde4_libdir}/lib*.so +%check +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/dngconverter.desktop +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/kipiplugins.desktop + + %clean rm -rf %{buildroot} @@ -176,12 +187,16 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %{_kde4_appsdir}/kipiplugin_removeredeyes/ %{_kde4_appsdir}/kipiplugin_smug/ %{_kde4_datadir}/applications/kde4/dngconverter.desktop +%{_kde4_datadir}/applications/kde4/kipiplugins.desktop %{_kde4_datadir}/kde4/services/*.desktop %{_kde4_iconsdir}/hicolor/*/*/* %{_kde4_iconsdir}/oxygen/*/*/* %changelog +* Fri Jul 03 2009 Rex Dieter 0.4.0-1 +- kipi-plugins-0.4.0 + * Fri May 22 2009 Rex Dieter 0.3.0-2 - optimize scriptlets Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 12 May 2009 10:49:27 -0000 1.28 +++ sources 4 Jul 2009 01:37:22 -0000 1.29 @@ -1 +1 @@ -6fa2c7dae38055fb50d90bad458c3412 kipi-plugins-0.3.0.tar.bz2 +98835d56e3a50429b360d23c9e589673 kipi-plugins-0.4.0.tar.bz2 From rdieter at fedoraproject.org Sat Jul 4 03:23:47 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 4 Jul 2009 03:23:47 +0000 (UTC) Subject: rpms/konversation/devel .cvsignore, 1.8, 1.9 konversation.spec, 1.27, 1.28 sources, 1.8, 1.9 Message-ID: <20090704032347.8F4AD11C0419@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/konversation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27842 Modified Files: .cvsignore konversation.spec sources Log Message: * Fri Jul 03 2009 Rex Dieter - 1.2-0.2.alpha4 - konversation-1.2-alpha4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/konversation/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 3 Jun 2009 15:07:26 -0000 1.8 +++ .cvsignore 4 Jul 2009 03:23:46 -0000 1.9 @@ -1 +1 @@ -konversation-1.2-alpha3.tar.bz2 +konversation-1.2-alpha4.tar.bz2 Index: konversation.spec =================================================================== RCS file: /cvs/pkgs/rpms/konversation/devel/konversation.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- konversation.spec 3 Jun 2009 15:16:22 -0000 1.27 +++ konversation.spec 4 Jul 2009 03:23:46 -0000 1.28 @@ -1,9 +1,9 @@ -%define pre alpha3 +%define pre alpha4 Name: konversation Version: 1.2 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} Summary: A user friendly IRC client Group: Applications/Internet @@ -89,12 +89,15 @@ fi %{_kde4_bindir}/konversation %{_kde4_datadir}/applications/kde4/konversation.desktop %{_kde4_datadir}/kde4/services/*.protocol -%{_kde4_appsdir}/konversation +%{_kde4_appsdir}/konversation/ %{_kde4_appsdir}/kconf_update/konversation* %{_kde4_iconsdir}/hicolor/*/*/* %changelog +* Fri Jul 03 2009 Rex Dieter - 1.2-0.2.alpha4 +- konversation-1.2-alpha4 + * Wed Jun 03 2009 Rex Dieter - 1.2-0.1.alpha3 - konversation-1.2-alpha3 - optimize scriptlets Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/konversation/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 3 Jun 2009 15:07:26 -0000 1.8 +++ sources 4 Jul 2009 03:23:46 -0000 1.9 @@ -1 +1 @@ -880fcf55fbd85677249e78b8ebee1252 konversation-1.2-alpha3.tar.bz2 +0c3735663e943965689873f3de2cddd3 konversation-1.2-alpha4.tar.bz2 From cebbert at fedoraproject.org Sat Jul 4 04:42:37 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Sat, 4 Jul 2009 04:42:37 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc1-git11.bz2.sign, NONE, 1.1 .cvsignore, 1.1090, 1.1091 kernel.spec, 1.1603, 1.1604 sources, 1.1048, 1.1049 upstream, 1.962, 1.963 patch-2.6.31-rc1-git9.bz2.sign, 1.1, NONE Message-ID: <20090704044237.AA92E11C02C3@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29144 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc1-git11.bz2.sign Removed Files: patch-2.6.31-rc1-git9.bz2.sign Log Message: 2.6.31-rc1-git11 --- NEW FILE patch-2.6.31-rc1-git11.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKTpwSyGugalF9Dw4RAp/QAJ0UHnP1WbB7F2f6Ma5QQqYM4NMy8QCeNx74 IO/Up7KkbS2qm6jaVd066+8= =WW+X -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1090 retrieving revision 1.1091 diff -u -p -r1.1090 -r1.1091 --- .cvsignore 2 Jul 2009 17:18:11 -0000 1.1090 +++ .cvsignore 4 Jul 2009 04:42:07 -0000 1.1091 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git9.bz2 +patch-2.6.31-rc1-git11.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1603 retrieving revision 1.1604 diff -u -p -r1.1603 -r1.1604 --- kernel.spec 3 Jul 2009 06:21:26 -0000 1.1603 +++ kernel.spec 4 Jul 2009 04:42:07 -0000 1.1604 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 1 # The git snapshot level -%define gitrev 9 +%define gitrev 11 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -1840,6 +1840,9 @@ fi # and build. %changelog +* Sat Jul 04 2009 Chuck Ebbert +- 2.6.31-rc1-git11 + * Fri Jul 03 2009 Hans de Goede - Disable v4l1 ov511 and quickcam_messenger drivers (obsoleted by v4l2 gspca subdrivers) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1048 retrieving revision 1.1049 diff -u -p -r1.1048 -r1.1049 --- sources 2 Jul 2009 17:18:12 -0000 1.1048 +++ sources 4 Jul 2009 04:42:07 -0000 1.1049 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 33d2d730beb66aa82349df8b6096fd91 patch-2.6.31-rc1.bz2 -e5fd406d8910e1dd1f756400488d5921 patch-2.6.31-rc1-git9.bz2 +ba54f899b51f55608446a3e045ba93b0 patch-2.6.31-rc1-git11.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.962 retrieving revision 1.963 diff -u -p -r1.962 -r1.963 --- upstream 2 Jul 2009 17:18:12 -0000 1.962 +++ upstream 4 Jul 2009 04:42:07 -0000 1.963 @@ -1,3 +1,3 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git9.bz2 +patch-2.6.31-rc1-git11.bz2 --- patch-2.6.31-rc1-git9.bz2.sign DELETED --- From kevin at fedoraproject.org Sat Jul 4 05:25:58 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sat, 4 Jul 2009 05:25:58 +0000 (UTC) Subject: rpms/gpsdrive/F-11 gpsdrive-2.10pre7-fedora.patch, NONE, 1.1 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 gpsdrive.spec, 1.6, 1.7 gpsdrive-2.09-CVE-2008-5703.patch, 1.1, NONE gpsdrive-2.09-gcc43.patch, 1.1, NONE gpsdrive-2.09-gps-mysql.patch, 1.1, NONE gpsdrive-2.09-greek.patch, 1.1, NONE gpsdrive-disable-gcc3-test.patch, 1.1, NONE Message-ID: <20090704052558.42C4011C02C3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/gpsdrive/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5981 Modified Files: sources .cvsignore gpsdrive.spec Added Files: gpsdrive-2.10pre7-fedora.patch Removed Files: gpsdrive-2.09-CVE-2008-5703.patch gpsdrive-2.09-gcc43.patch gpsdrive-2.09-gps-mysql.patch gpsdrive-2.09-greek.patch gpsdrive-disable-gcc3-test.patch Log Message: update to 2.10pre7 gpsdrive-2.10pre7-fedora.patch: --- NEW FILE gpsdrive-2.10pre7-fedora.patch --- diff -Nur gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/CMakeLists.txt gpsdrive-2.10pre7/scripts/osm/perl_lib/CMakeLists.txt --- gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/CMakeLists.txt 2009-06-14 07:57:25.000000000 -0600 +++ gpsdrive-2.10pre7/scripts/osm/perl_lib/CMakeLists.txt 2009-06-17 11:13:56.000000000 -0600 @@ -16,7 +16,7 @@ foreach(perl_module ${perl_modules}) file(RELATIVE_PATH relative_module_path ${CMAKE_CURRENT_SOURCE_DIR} ${perl_module}) get_filename_component(relative_module_path ${relative_module_path} PATH) - install(FILES ${perl_module} DESTINATION ${PERL_SITELIB}/${relative_module_path}) + install(FILES ${perl_module} DESTINATION ${PERL_VENDORLIB}/${relative_module_path}) #message("DEBUG: install ${perl_module} to ${PERL_SITELIB}/${relative_module_path}") endforeach(perl_module ${perl_modules}) endif (perl_modules) diff -Nur gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/Geo/Gpsdrive/getstreet.pm gpsdrive-2.10pre7/scripts/osm/perl_lib/Geo/Gpsdrive/getstreet.pm --- gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/Geo/Gpsdrive/getstreet.pm 2009-06-14 07:57:25.000000000 -0600 +++ gpsdrive-2.10pre7/scripts/osm/perl_lib/Geo/Gpsdrive/getstreet.pm 2009-06-21 19:41:12.000000000 -0600 @@ -2,7 +2,7 @@ #noch nicht alle variablen angepasst use LWP::UserAgent; use WWW::Mechanize; -use Text::Query; +#use Text::Query; use Getopt::Long; #maybe not needed any more use Pod::Usage; use DBI; diff -Nur gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/Geo/OSM/Upload.pm gpsdrive-2.10pre7/scripts/osm/perl_lib/Geo/OSM/Upload.pm --- gpsdrive-2.10pre7.orig/scripts/osm/perl_lib/Geo/OSM/Upload.pm 2009-06-14 07:57:25.000000000 -0600 +++ gpsdrive-2.10pre7/scripts/osm/perl_lib/Geo/OSM/Upload.pm 2009-06-21 19:40:48.000000000 -0600 @@ -4,7 +4,7 @@ use warnings; -use WWW::Curl::easy; +use WWW::Curl::Easy; sub new(){bless{}}; diff -Nur gpsdrive-2.10pre7.orig/src/gpsdrive_config.c gpsdrive-2.10pre7/src/gpsdrive_config.c --- gpsdrive-2.10pre7.orig/src/gpsdrive_config.c 2009-06-14 07:57:25.000000000 -0600 +++ gpsdrive-2.10pre7/src/gpsdrive_config.c 2009-06-22 22:22:10.000000000 -0600 @@ -884,7 +884,7 @@ g_snprintf(local_config.mapnik_input_path, sizeof(local_config.mapnik_input_path), "%s", "/usr/lib/mapnik/0.5/input/"); g_snprintf(local_config.mapnik_font_path, sizeof(local_config.mapnik_font_path), - "%s", "/usr/share/fonts/truetype/ttf-dejavu/"); + "%s", "/usr/share/fonts/dejavu/"); /* kismet default values */ g_strlcpy(local_config.kismet_servername, "127.0.0.1", sizeof(local_config.kismet_servername)); Index: sources =================================================================== RCS file: /cvs/extras/rpms/gpsdrive/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Jun 2007 02:01:56 -0000 1.2 +++ sources 4 Jul 2009 05:25:27 -0000 1.3 @@ -1 +1,2 @@ -eaa52cb220f3d10312a1046dd47126bb gpsdrive-2.09.tar.gz +f369ecdbb73d4ff5ae10da6fd2ee5f5e openstreetmap-map-icons-minimal.tar.gz +dd5e1382bae11a5514e4fd6853eb062e gpsdrive-2.10pre7.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/gpsdrive/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 Jun 2007 02:01:56 -0000 1.2 +++ .cvsignore 4 Jul 2009 05:25:27 -0000 1.3 @@ -1 +1,2 @@ -gpsdrive-2.09.tar.gz +openstreetmap-map-icons-minimal.tar.gz +gpsdrive-2.10pre7.tar.gz Index: gpsdrive.spec =================================================================== RCS file: /cvs/extras/rpms/gpsdrive/F-11/gpsdrive.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gpsdrive.spec 25 Feb 2009 00:43:22 -0000 1.6 +++ gpsdrive.spec 4 Jul 2009 05:25:27 -0000 1.7 @@ -1,24 +1,46 @@ Summary: A GPS based navigation tool Name: gpsdrive -Version: 2.09 -Release: 8%{?dist} +Version: 2.10 +Release: 0.1.pre7%{?dist} License: GPLv2+ Group: Applications/Productivity URL: http://www.gpsdrive.de/index.shtml -Source: http://www.gpsdrive.de/packages/gpsdrive-2.09.tar.gz -Patch0: gpsdrive-disable-gcc3-test.patch -Patch1: gpsdrive-2.09-greek.patch -Patch2: gpsdrive-2.09-gcc43.patch -Patch3: gpsdrive-2.09-gps-mysql.patch -Patch4: gpsdrive-2.09-CVE-2008-5703.patch +# svn snapshot generated with: +# svn co https://gpsdrive.svn.sourceforge.net/svnroot/gpsdrive/trunk gpsdrive-2.10-datesvn +# tar cvzpf gpsdrive-2.10-datesvn.tar.gz gpsdrive-2.10-datesvn +#Source: http://www.gpsdrive.de/packages/gpsdrive-2.10-20090607svn.tar.gz +Source0: http://www.gpsdrive.de/packages/gpsdrive-2.10pre7.tar.gz +Source1: http://download.sourceforge.net/sourceforge/gpsdrive/openstreetmap-map-icons-minimal.tar.gz +Patch1: gpsdrive-2.10pre7-fedora.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + BuildRequires: gtk2-devel >= 2.0.6 -BuildRequires: gettext +BuildRequires: gettext intltool BuildRequires: desktop-file-utils BuildRequires: pcre-devel BuildRequires: autoconf m4 +BuildRequires: cmake +BuildRequires: mapnik-devel +BuildRequires: libxml2-devel +BuildRequires: libgda-devel +BuildRequires: boost-devel +BuildRequires: sqlite-devel +BuildRequires: libicu-devel +BuildRequires: libtool-ltdl-devel +BuildRequires: perl-devel +BuildRequires: libcurl-devel +BuildRequires: compat-libgda-devel +BuildRequires: gpsd-devel +BuildRequires: speech-dispatcher-devel + +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: gpsd +Provides: perl(Geo::OSM::EntitiesV3) +Provides: perl(Geo::OSM::OsmReaderV5) +Provides: perl(Geo::OSM::EntitiesV5) +Provides: perl(Geo::OSM::OsmReaderV3) + %description Gpsdrive is a map-based navigation system. It displays your position on a zoomable map @@ -30,81 +52,30 @@ bearing, arrival time, actual position, Speech output is also available. MySQL is supported. %prep -%setup -q +%setup -q -n gpsdrive-2.10pre7 +%setup -q -a 1 -T -D -n gpsdrive-2.10pre7 -%patch0 -p1 %patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 - -# Convert 8859 man pages to UTF-8 -for f in man/es/gpsdrive.1 man/de/gpsdrive.1 ; do - iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f -done - -# move greek from gr to el -mv po/gr.gmo po/le.gmo -mv po/gr.po po/le.po - -# make wp2sql script work. -sed -i -e '1i #!/bin/sh' wp2sql %build -export CFLAGS="$RPM_OPT_FLAGS" -export CXXFLAGS="$RPM_OPT_FLAGS" -%configure --disable-static -make %{?_smp_mflags} +mkdir build +cd build +%cmake .. +make VERBOSE=1 %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT - +cd build make install DESTDIR=$RPM_BUILD_ROOT -chmod 755 $RPM_BUILD_ROOT/%{_datadir}/gpsdrive/wp2sql - -rm -f $RPM_BUILD_ROOT%{_libdir}/*.la - -# Don't ship local gpsd, depend on gpsd package -rm -f $RPM_BUILD_ROOT%{_bindir}/gpsd - -# remove .so files as they are the only thing that would be in a devel subpackage. -rm -f $RPM_BUILD_ROOT%{_libdir}/libfly.so -rm -f $RPM_BUILD_ROOT%{_libdir}/libnautic.so - -rm -f ${RPM_BUILD_ROOT}%{_datadir}/applications/gpsdrive.desktop - -# remove doc files from sharedir, as they are packaged -# in docdir in this package. -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/AUTHORS -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/CREDITS -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/FAQ.gpsdrive -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/FAQ.gpsdrive.fr -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/GPS-receivers -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/LEEME -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/LISEZMOI -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/NMEA.txt -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README.FreeBSD -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README.SQL -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README.gpspoint2gspdrive -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README.kismet -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/README.nasamaps -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/TODO -rm -f ${RPM_BUILD_ROOT}%{_datadir}/gpsdrive/create.sql - -# remove geo-code for CVE-2008-4959 -rm -f ${RPM_BUILD_ROOT}%{_bindir}/geo-code - -# remove geo-nearest for CVE-2008-5380 -rm -f ${RPM_BUILD_ROOT}%{_bindir}/geo-nearest - -# remove gpssmswatch for CVE-2008-5703 -rm -f ${RPM_BUILD_ROOT}%{_bindir}/gpssmswatch +cd .. +mkdir -p $RPM_BUILD_ROOT/usr/share/icons/map-icons/ +cp -a usr/share/icons/map-icons/* $RPM_BUILD_ROOT/usr/share/icons/map-icons/ desktop-file-install --vendor fedora \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - gpsdrive.desktop + --delete-original \ + ${RPM_BUILD_ROOT}%{_datadir}/applications/gpsdrive.desktop %find_lang %{name} @@ -117,39 +88,35 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr (-,root,root,-) -%doc GPS-receivers AUTHORS COPYING CREDITS TODO -%doc TODO README LEEME LISEZMOI README.FreeBSD README.nasamaps -%doc README.gpspoint2gspdrive FAQ.gpsdrive FAQ.gpsdrive.fr -%doc README.SQL create.sql NMEA.txt README.kismet LISEZMOI.kismet LISEZMOI.SQL -%doc %{_mandir}/de/man1/gpsdrive.1* -%doc %{_mandir}/es/man1/gpsdrive.1* -%doc %{_mandir}/man1/gpsdrive.1* -%{_libdir}/libfly* -%{_libdir}/libnautic* -%{_bindir}/friendsd2 -%{_bindir}/garble -%{_bindir}/geocache2way +%doc ABOUT-NLS AUTHORS ChangeLog COPYING README Documentation/* +%{_bindir}/friendsd +%{_bindir}/gdal_slice.sh +%{_bindir}/geocache2way.pl +%{_bindir}/gpsd-connect-bluetooth.sh +%{_bindir}/gpsreplay.pl +%{_bindir}/geoinfo.pl +%{_bindir}/gpsd_nmea.sh %{_bindir}/gpsdrive +%{_bindir}/gpsdrive-update-mapnik-poitypes.pl +%{_bindir}/gpsdrive_mapnik_gentiles.* %{_bindir}/gpsfetchmap.pl %{_bindir}/gpspoint2gpsdrive.pl -%{_bindir}/gpsreplay -%{_bindir}/gpssql_backup.sh -%{_bindir}/gpssql_restore.sh -%{_bindir}/wpcvt -%{_bindir}/wpget -%dir %{_datadir}/gpsdrive -%{_datadir}/gpsdrive/gpsdrivesplash.png -%{_datadir}/gpsdrive/gpsdrivemini.png -%{_datadir}/gpsdrive/friendsicon.png -%{_datadir}/gpsdrive/gpsicon.png -%{_datadir}/gpsdrive/gpsiconbt.png -%{_datadir}/gpsdrive/gpsdriveanim.gif -%{_datadir}/gpsdrive/top_GPSWORLD.jpg -%{_datadir}/gpsdrive/wp2sql +%{_bindir}/nasaconv.sh %{_datadir}/applications/fedora-gpsdrive.desktop -%{_datadir}/pixmaps/gpsicon.png +%{_datadir}/gpsdrive +%{_datadir}/icons/map-icons +%{_datadir}/icons/gpsdrive.png +%{_mandir}/*/man1/* +%{_mandir}/man1/* +%{perl_vendorlib}/* %changelog +* Tue Jun 16 2009 Kevin Fenzi - 2.10-0.1.pre7 +- update to 2.10pre7 + +* Sun Jun 07 2009 Kevin Fenzi - 2.10-0.1.20090607svn +- update to 2.10-20090607svn + * Tue Feb 24 2009 Fedora Release Engineering - 2.09-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- gpsdrive-2.09-CVE-2008-5703.patch DELETED --- --- gpsdrive-2.09-gcc43.patch DELETED --- --- gpsdrive-2.09-gps-mysql.patch DELETED --- --- gpsdrive-2.09-greek.patch DELETED --- --- gpsdrive-disable-gcc3-test.patch DELETED --- From deebs at fedoraproject.org Sat Jul 4 07:37:02 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 07:37:02 +0000 (UTC) Subject: rpms/moreutils/devel .cvsignore, 1.8, 1.9 import.log, 1.3, 1.4 moreutils.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090704073703.0C51611C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18260/devel Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 24 Feb 2009 09:53:47 -0000 1.8 +++ .cvsignore 4 Jul 2009 07:37:01 -0000 1.9 @@ -1 +1 @@ -moreutils_0.34.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 24 Feb 2009 09:53:47 -0000 1.3 +++ import.log 4 Jul 2009 07:37:01 -0000 1.4 @@ -1,3 +1,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1219810852 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:HEAD:moreutils-0.34-1.fc10.src.rpm:1235469154 +moreutils-0_35-1_fc10:HEAD:moreutils-0.35-1.fc10.src.rpm:1246692984 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/moreutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- moreutils.spec 24 Feb 2009 09:53:47 -0000 1.9 +++ moreutils.spec 4 Jul 2009 07:37:01 -0000 1.10 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.34 +Version: 0.35 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -86,6 +86,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + * Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} - new upstream version 0.34 - * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 Feb 2009 09:53:47 -0000 1.8 +++ sources 4 Jul 2009 07:37:01 -0000 1.9 @@ -1 +1 @@ -4cf4c914e8fcabdc99ad61f4d54c5d72 moreutils_0.34.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From deebs at fedoraproject.org Sat Jul 4 07:39:19 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 07:39:19 +0000 (UTC) Subject: rpms/moreutils/F-11 .cvsignore, 1.8, 1.9 import.log, 1.3, 1.4 moreutils.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090704073919.4BDD511C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18447/F-11 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 24 Feb 2009 09:53:47 -0000 1.8 +++ .cvsignore 4 Jul 2009 07:38:48 -0000 1.9 @@ -1 +1 @@ -moreutils_0.34.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 24 Feb 2009 09:53:47 -0000 1.3 +++ import.log 4 Jul 2009 07:38:49 -0000 1.4 @@ -1,3 +1,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1219810852 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:HEAD:moreutils-0.34-1.fc10.src.rpm:1235469154 +moreutils-0_35-1_fc10:F-11:moreutils-0.35-1.fc10.src.rpm:1246693097 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/moreutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- moreutils.spec 24 Feb 2009 09:53:47 -0000 1.9 +++ moreutils.spec 4 Jul 2009 07:38:49 -0000 1.10 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.34 +Version: 0.35 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -86,6 +86,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + * Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} - new upstream version 0.34 - * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 Feb 2009 09:53:47 -0000 1.8 +++ sources 4 Jul 2009 07:38:49 -0000 1.9 @@ -1 +1 @@ -4cf4c914e8fcabdc99ad61f4d54c5d72 moreutils_0.34.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From pbrobinson at fedoraproject.org Sat Jul 4 07:40:33 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 4 Jul 2009 07:40:33 +0000 (UTC) Subject: rpms/opal/devel opal.spec,1.50,1.51 Message-ID: <20090704074033.951D411C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/opal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18630 Modified Files: opal.spec Log Message: A few minor review request cleanups Index: opal.spec =================================================================== RCS file: /cvs/pkgs/rpms/opal/devel/opal.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- opal.spec 28 May 2009 13:49:32 -0000 1.50 +++ opal.spec 4 Jul 2009 07:40:33 -0000 1.51 @@ -10,7 +10,7 @@ URL: http://www.opalvoip.org/ #Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/3.6/%{name}-%{version}.tar.bz2 Source0: %{name}-%{version}-noilbc.tar.bz2 Patch0: opal-3.6.1-noilbc.patch -Patch1: opal-handlers.cxx.patch +Patch1: opal-handlers.cxx.patch License: MPLv1.0 Group: System Environment/Libraries BuildRequires: ptlib-devel = 2.6.2 @@ -45,7 +45,7 @@ header files for opal. %patch1 -p1 -b .handlers %build -%configure --prefix=/usr +%configure make OPTCCFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} @@ -71,7 +71,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%doc mpl-1.0.htm docs/* +%doc docs/* %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/opal.pc From deebs at fedoraproject.org Sat Jul 4 07:41:12 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 07:41:12 +0000 (UTC) Subject: rpms/moreutils/F-10 .cvsignore, 1.8, 1.9 import.log, 1.3, 1.4 moreutils.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090704074112.8834111C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18645/F-10 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 24 Feb 2009 09:56:57 -0000 1.8 +++ .cvsignore 4 Jul 2009 07:40:42 -0000 1.9 @@ -1 +1 @@ -moreutils_0.34.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 24 Feb 2009 09:56:57 -0000 1.3 +++ import.log 4 Jul 2009 07:40:42 -0000 1.4 @@ -1,3 +1,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1219810852 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:F-10:moreutils-0.34-1.fc10.src.rpm:1235469379 +moreutils-0_35-1_fc10:F-10:moreutils-0.35-1.fc10.src.rpm:1246693200 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/moreutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- moreutils.spec 24 Feb 2009 09:56:57 -0000 1.9 +++ moreutils.spec 4 Jul 2009 07:40:42 -0000 1.10 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.34 +Version: 0.35 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -86,6 +86,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + * Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} - new upstream version 0.34 - * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 Feb 2009 09:56:57 -0000 1.8 +++ sources 4 Jul 2009 07:40:42 -0000 1.9 @@ -1 +1 @@ -4cf4c914e8fcabdc99ad61f4d54c5d72 moreutils_0.34.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From deebs at fedoraproject.org Sat Jul 4 07:43:03 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 07:43:03 +0000 (UTC) Subject: rpms/moreutils/F-9 .cvsignore, 1.8, 1.9 import.log, 1.2, 1.3 moreutils.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090704074303.B43A911C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18850/F-9 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-9/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 24 Feb 2009 09:55:23 -0000 1.8 +++ .cvsignore 4 Jul 2009 07:42:33 -0000 1.9 @@ -1 +1 @@ -moreutils_0.34.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-9/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 24 Feb 2009 09:55:23 -0000 1.2 +++ import.log 4 Jul 2009 07:42:33 -0000 1.3 @@ -1,2 +1,3 @@ moreutils-0_31-1_fc9:F-9:moreutils-0.31-1.fc9.src.rpm:1219810585 moreutils-0_34-1_fc10:F-9:moreutils-0.34-1.fc10.src.rpm:1235469282 +moreutils-0_35-1_fc10:F-9:moreutils-0.35-1.fc10.src.rpm:1246693312 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-9/moreutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- moreutils.spec 24 Feb 2009 09:55:23 -0000 1.9 +++ moreutils.spec 4 Jul 2009 07:42:33 -0000 1.10 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.34 +Version: 0.35 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -86,6 +86,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + * Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} - new upstream version 0.34 - * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-9/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 Feb 2009 09:55:23 -0000 1.8 +++ sources 4 Jul 2009 07:42:33 -0000 1.9 @@ -1 +1 @@ -4cf4c914e8fcabdc99ad61f4d54c5d72 moreutils_0.34.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From deebs at fedoraproject.org Sat Jul 4 08:04:02 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 08:04:02 +0000 (UTC) Subject: rpms/moreutils/EL-5 .cvsignore, 1.7, 1.8 import.log, 1.2, 1.3 moreutils.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090704080402.99E1011C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20617/EL-5 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 27 Aug 2008 04:14:56 -0000 1.7 +++ .cvsignore 4 Jul 2009 08:03:31 -0000 1.8 @@ -1 +1 @@ -moreutils_0.31.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 16 Oct 2008 05:52:53 -0000 1.2 +++ import.log 4 Jul 2009 08:03:32 -0000 1.3 @@ -1,2 +1,3 @@ moreutils-0_31-1_fc9:EL-5:moreutils-0.31-1.fc9.src.rpm:1219810455 moreutils-0_31-3_fc9:EL-5:moreutils-0.31-3.fc9.src.rpm:1224136317 +moreutils-0_35-1_fc10:EL-5:moreutils-0.35-1.fc10.src.rpm:1246694563 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/moreutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- moreutils.spec 16 Oct 2008 05:52:53 -0000 1.9 +++ moreutils.spec 4 Jul 2009 08:03:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: moreutils -Version: 0.31 -Release: 3%{?dist} +Version: 0.35 +Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System License: GPLv2 @@ -86,6 +86,23 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + +* Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} +- new upstream version 0.34 +- * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 +- new upstream version 0.33 +- * Support installing moreutils into prefixes other than /usr (Evan Broder) +- * Fix zrun breakage introduced last version. Closes: #504129 +- new upstream version 0.32 +- * zrun: Can be linked to zsomeprog to run the equivilant of zrun someprog. Closes: #411623 (Stefan Fritsch) +- * zrun: Add support for lzma and lzo. (Stefan Fritsch) +- * Fix pod error in vidir(1). + * Thu Oct 16 2008 Marc Bradshaw 0.31-3%{?dist} - Fix for EPEL docbook dtd version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 27 Aug 2008 04:14:56 -0000 1.7 +++ sources 4 Jul 2009 08:03:32 -0000 1.8 @@ -1 +1 @@ -4421992c2db6d6947ec591c7ad1804c0 moreutils_0.31.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From caolanm at fedoraproject.org Sat Jul 4 08:06:53 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 4 Jul 2009 08:06:53 +0000 (UTC) Subject: rpms/icu/devel icu.spec,1.95,1.96 Message-ID: <20090704080653.1017F11C02C3@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20832 Modified Files: icu.spec Log Message: fix up Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- icu.spec 3 Jul 2009 20:06:44 -0000 1.95 +++ icu.spec 4 Jul 2009 08:06:22 -0000 1.96 @@ -5,7 +5,7 @@ Summary: International Components for Group: Development/Tools License: MIT URL: http://www.icu-project.org/ -Source0: http://download.icu-project.org/files/icu4c/4.2.0.1/icu4c-4_2_0_1-src.tgz +Source0: http://download.icu-project.org/files/icu4c/4.2.1/icu4c-4_2_1-src.tgz Source1: icu-config BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: doxygen, autoconf From harald at fedoraproject.org Sat Jul 4 08:08:35 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sat, 4 Jul 2009 08:08:35 +0000 (UTC) Subject: rpms/dracut/F-11 .cvsignore, 1.3, 1.4 dracut.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090704080835.7392C11C02C3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21054 Modified Files: .cvsignore dracut.spec sources Log Message: * Sat Jul 04 2009 Harald Hoyer 0.4-1 - version 0.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 2 Jul 2009 10:03:22 -0000 1.3 +++ .cvsignore 4 Jul 2009 08:08:35 -0000 1.4 @@ -1 +1 @@ -dracut-0.3.tar.bz2 +dracut-0.4.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/dracut.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dracut.spec 2 Jul 2009 10:03:22 -0000 1.2 +++ dracut.spec 4 Jul 2009 08:08:35 -0000 1.3 @@ -11,9 +11,8 @@ %define rdist %{?dist} %endif - Name: dracut -Version: 0.3 +Version: 0.4 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -27,6 +26,7 @@ Requires: module-init-tools Requires: cpio Requires: coreutils Requires: findutils +Requires: binutils Requires: grep Requires: mktemp Requires: mount @@ -59,12 +59,17 @@ Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute +Requires: kernel-firmware +Requires: ql2100-firmware +Requires: ql2200-firmware +Requires: ql23xx-firmware +Requires: ql2400-firmware +Requires: ql2500-firmware %description generic This package requires everything which is needed to build a generic all purpose initramfs. - %prep %setup -q -n %{name}-%{version}%{?dashgittag} @@ -101,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Sat Jul 04 2009 Harald Hoyer 0.4-1 +- version 0.4 + * Thu Jul 02 2009 Harald Hoyer 0.3-1 - version 0.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 2 Jul 2009 10:03:22 -0000 1.3 +++ sources 4 Jul 2009 08:08:35 -0000 1.4 @@ -1 +1 @@ -6a7f08fdd84b288db185b6d2187b4be7 dracut-0.3.tar.bz2 +d044359f42591eac24af54e234cf92e3 dracut-0.4.tar.bz2 From harald at fedoraproject.org Sat Jul 4 08:08:42 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sat, 4 Jul 2009 08:08:42 +0000 (UTC) Subject: rpms/dracut/devel .cvsignore, 1.2, 1.3 dracut.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090704080842.20AE011C02C3@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21014 Modified Files: .cvsignore dracut.spec sources Log Message: * Sat Jul 04 2009 Harald Hoyer 0.4-1 - version 0.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Jul 2009 10:02:53 -0000 1.2 +++ .cvsignore 4 Jul 2009 08:08:11 -0000 1.3 @@ -1 +1 @@ -dracut-0.3.tar.bz2 +dracut-0.4.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dracut.spec 2 Jul 2009 10:02:54 -0000 1.2 +++ dracut.spec 4 Jul 2009 08:08:11 -0000 1.3 @@ -11,9 +11,8 @@ %define rdist %{?dist} %endif - Name: dracut -Version: 0.3 +Version: 0.4 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -27,6 +26,7 @@ Requires: module-init-tools Requires: cpio Requires: coreutils Requires: findutils +Requires: binutils Requires: grep Requires: mktemp Requires: mount @@ -59,12 +59,17 @@ Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute +Requires: kernel-firmware +Requires: ql2100-firmware +Requires: ql2200-firmware +Requires: ql23xx-firmware +Requires: ql2400-firmware +Requires: ql2500-firmware %description generic This package requires everything which is needed to build a generic all purpose initramfs. - %prep %setup -q -n %{name}-%{version}%{?dashgittag} @@ -101,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Sat Jul 04 2009 Harald Hoyer 0.4-1 +- version 0.4 + * Thu Jul 02 2009 Harald Hoyer 0.3-1 - version 0.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 2 Jul 2009 10:02:54 -0000 1.3 +++ sources 4 Jul 2009 08:08:11 -0000 1.4 @@ -1 +1 @@ -6a7f08fdd84b288db185b6d2187b4be7 dracut-0.3.tar.bz2 +d044359f42591eac24af54e234cf92e3 dracut-0.4.tar.bz2 From deebs at fedoraproject.org Sat Jul 4 08:02:06 2009 From: deebs at fedoraproject.org (deebs) Date: Sat, 4 Jul 2009 08:02:06 +0000 (UTC) Subject: rpms/moreutils/EL-4 .cvsignore, 1.7, 1.8 import.log, 1.3, 1.4 moreutils.spec, 1.10, 1.11 sources, 1.7, 1.8 Message-ID: <20090704080206.759D011C02C3@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20444/EL-4 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 27 Aug 2008 04:12:58 -0000 1.7 +++ .cvsignore 4 Jul 2009 08:01:35 -0000 1.8 @@ -1 +1 @@ -moreutils_0.31.tar.gz +moreutils_0.35.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 16 Oct 2008 05:41:35 -0000 1.3 +++ import.log 4 Jul 2009 08:01:35 -0000 1.4 @@ -1,3 +1,4 @@ moreutils-0_31-1_fc9:EL-4:moreutils-0.31-1.fc9.src.rpm:1219810323 moreutils-0_31-2_fc9:EL-4:moreutils-0.31-2.fc9.src.rpm:1223725214 moreutils-0_31-3_fc9:EL-4:moreutils-0.31-3.fc9.src.rpm:1224135632 +moreutils-0_35-1_fc10:EL-4:moreutils-0.35-1.fc10.src.rpm:1246694453 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/moreutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- moreutils.spec 16 Oct 2008 05:41:35 -0000 1.10 +++ moreutils.spec 4 Jul 2009 08:01:35 -0000 1.11 @@ -1,6 +1,6 @@ Name: moreutils -Version: 0.31 -Release: 3%{?dist} +Version: 0.35 +Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System License: GPLv2 @@ -86,6 +86,23 @@ rm -rf %{buildroot} %changelog +* Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} +- new upstream version 0.35 released with these changes +- * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. +- Increase the limit to 20 characters. Closes: #526654 (Thanks, Alan Pope) +- * isutf8: Reject UTF-8-encoded UTF-16 surrogates. Closes: #525301 (Thanks, Jakub Wilk and liw) + +* Tue Feb 24 2009 Marc Bradshaw 0.34-1%{?dist} +- new upstream version 0.34 +- * vipe: Avoid dying on empty input. Thanks, Anders Kaseorg Closes: #508491 +- new upstream version 0.33 +- * Support installing moreutils into prefixes other than /usr (Evan Broder) +- * Fix zrun breakage introduced last version. Closes: #504129 +- new upstream version 0.32 +- * zrun: Can be linked to zsomeprog to run the equivilant of zrun someprog. Closes: #411623 (Stefan Fritsch) +- * zrun: Add support for lzma and lzo. (Stefan Fritsch) +- * Fix pod error in vidir(1). + * Thu Oct 16 2008 Marc Bradshaw 0.31-3%{?dist} - Fix for EPEL docbook dtd version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 27 Aug 2008 04:12:58 -0000 1.7 +++ sources 4 Jul 2009 08:01:35 -0000 1.8 @@ -1 +1 @@ -4421992c2db6d6947ec591c7ad1804c0 moreutils_0.31.tar.gz +e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz From rishi at fedoraproject.org Sat Jul 4 09:39:03 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Sat, 4 Jul 2009 09:39:03 +0000 (UTC) Subject: rpms/bouml/F-10 .cvsignore, 1.19, 1.20 bouml.spec, 1.25, 1.26 sources, 1.21, 1.22 Message-ID: <20090704093903.5CAB711C02C3@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/bouml/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26673 Modified Files: .cvsignore bouml.spec sources Log Message: * Sat Jul 04 2009 Debarshi Ray - 4.13-1 - Version bump to 4.13. * Added active on activity, class and state. * Browser search can now search for elements depending on their stereotype. * Duplicating a state caused a crash. Fixed. * Made it easier to select small elements connectd to a line in a diagram. * When an attribute or operation of a class was deleted from a plug-out, the drawing of the class was not updated in already opened diagrams. Fixed. * C++ Generator: + A dependency stereotyped as friend produced wrong code in case the target class was a template. Fixed. * Java Roundtrip: + New plug-out. * Plug-out: + A crash occured when upgrading an old plug-out without Python management. Fixed. + Added operations isActive and set_isActive to UmlBaseActivity, UmlBaseClass and UmlBaseState. + Added operations isPython_3_operation and set_IsPython_3_operation to PythonSettings. + Internal plug-out API extended for Java Roundtrip, and type specification of function's parameters and return values. All plug-outs updated to use the new API. + The operation importProject has been added to UmlBasePackage, which returns the UmlPackage corresponding to the imported project or null in case of an error. * Python Generator: + All the lines of a docstring are indented according to PEP-0257. + Manage type specification of function's parameters return values according to PEP-3107. * XMI Generator: + When a parameter of an operation doesn't have type the token UML:Parameter was not closed. Fixed. * XMI2 Generator: + The base type of a class stereotyped typedef is now produced in an extension form supposing you ask for them. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-10/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 11 Apr 2009 20:24:42 -0000 1.19 +++ .cvsignore 4 Jul 2009 09:38:32 -0000 1.20 @@ -1 +1 @@ -bouml_4.12.1.tar.gz +bouml_4.13.tar.gz Index: bouml.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-10/bouml.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- bouml.spec 11 Apr 2009 20:24:43 -0000 1.25 +++ bouml.spec 4 Jul 2009 09:38:32 -0000 1.26 @@ -5,7 +5,7 @@ Summary: UML2 tool box for C++, Java, IDL, PHP and Python Name: bouml -Version: 4.12.1 +Version: 4.13 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -110,6 +110,44 @@ fi %{_libdir}/%{name}/* %changelog +* Sat Jul 04 2009 Debarshi Ray - 4.13-1 +- Version bump to 4.13. + * Added active on activity, class and state. + * Browser search can now search for elements depending on their stereotype. + * Duplicating a state caused a crash. Fixed. + * Made it easier to select small elements connectd to a line in a diagram. + * When an attribute or operation of a class was deleted from a plug-out, + the drawing of the class was not updated in already opened diagrams. + Fixed. + * C++ Generator: + + A dependency stereotyped as friend produced wrong code in case the + target class was a template. Fixed. + * Java Roundtrip: + + New plug-out. + * Plug-out: + + A crash occured when upgrading an old plug-out without Python + management. Fixed. + + Added operations isActive and set_isActive to UmlBaseActivity, + UmlBaseClass and UmlBaseState. + + Added operations isPython_3_operation and set_IsPython_3_operation to + PythonSettings. + + Internal plug-out API extended for Java Roundtrip, and type + specification of function's parameters and return values. All plug-outs + updated to use the new API. + + The operation importProject has been added to UmlBasePackage, which + returns the UmlPackage corresponding to the imported project or null in + case of an error. + * Python Generator: + + All the lines of a docstring are indented according to PEP-0257. + + Manage type specification of function's parameters return values + according to PEP-3107. + * XMI Generator: + + When a parameter of an operation doesn't have type the token + UML:Parameter was not closed. Fixed. + * XMI2 Generator: + + The base type of a class stereotyped typedef is now produced in an + extension form supposing you ask for them. + * Wed Apr 08 2009 Debarshi Ray - 4.12.1-1 - Version bump to 4.12.1. * Previous releases can not read a project saved with this version, but Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 11 Apr 2009 20:24:43 -0000 1.21 +++ sources 4 Jul 2009 09:38:32 -0000 1.22 @@ -1 +1 @@ -b7f5a90de1c7cfeeab8986e44e8037de bouml_4.12.1.tar.gz +b45efd68dd6f45fbddad48ebbf90a786 bouml_4.13.tar.gz From rishi at fedoraproject.org Sat Jul 4 09:42:17 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Sat, 4 Jul 2009 09:42:17 +0000 (UTC) Subject: rpms/bouml/F-11 .cvsignore, 1.19, 1.20 bouml.spec, 1.27, 1.28 sources, 1.21, 1.22 Message-ID: <20090704094217.D74EF11C02C3@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/bouml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26909 Modified Files: .cvsignore bouml.spec sources Log Message: * Sat Jul 04 2009 Debarshi Ray - 4.13-1 - Version bump to 4.13. * Added active on activity, class and state. * Browser search can now search for elements depending on their stereotype. * Duplicating a state caused a crash. Fixed. * Made it easier to select small elements connectd to a line in a diagram. * When an attribute or operation of a class was deleted from a plug-out, the drawing of the class was not updated in already opened diagrams. Fixed. * C++ Generator: + A dependency stereotyped as friend produced wrong code in case the target class was a template. Fixed. * Java Roundtrip: + New plug-out. * Plug-out: + A crash occured when upgrading an old plug-out without Python management. Fixed. + Added operations isActive and set_isActive to UmlBaseActivity, UmlBaseClass and UmlBaseState. + Added operations isPython_3_operation and set_IsPython_3_operation to PythonSettings. + Internal plug-out API extended for Java Roundtrip, and type specification of function's parameters and return values. All plug-outs updated to use the new API. + The operation importProject has been added to UmlBasePackage, which returns the UmlPackage corresponding to the imported project or null in case of an error. * Python Generator: + All the lines of a docstring are indented according to PEP-0257. + Manage type specification of function's parameters return values according to PEP-3107. * XMI Generator: + When a parameter of an operation doesn't have type the token UML:Parameter was not closed. Fixed. * XMI2 Generator: + The base type of a class stereotyped typedef is now produced in an extension form supposing you ask for them. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-11/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 11 Apr 2009 20:19:45 -0000 1.19 +++ .cvsignore 4 Jul 2009 09:41:47 -0000 1.20 @@ -1 +1 @@ -bouml_4.12.1.tar.gz +bouml_4.13.tar.gz Index: bouml.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-11/bouml.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bouml.spec 11 Apr 2009 20:19:46 -0000 1.27 +++ bouml.spec 4 Jul 2009 09:41:47 -0000 1.28 @@ -5,7 +5,7 @@ Summary: UML2 tool box for C++, Java, IDL, PHP and Python Name: bouml -Version: 4.12.1 +Version: 4.13 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -110,6 +110,44 @@ fi %{_libdir}/%{name}/* %changelog +* Sat Jul 04 2009 Debarshi Ray - 4.13-1 +- Version bump to 4.13. + * Added active on activity, class and state. + * Browser search can now search for elements depending on their stereotype. + * Duplicating a state caused a crash. Fixed. + * Made it easier to select small elements connectd to a line in a diagram. + * When an attribute or operation of a class was deleted from a plug-out, + the drawing of the class was not updated in already opened diagrams. + Fixed. + * C++ Generator: + + A dependency stereotyped as friend produced wrong code in case the + target class was a template. Fixed. + * Java Roundtrip: + + New plug-out. + * Plug-out: + + A crash occured when upgrading an old plug-out without Python + management. Fixed. + + Added operations isActive and set_isActive to UmlBaseActivity, + UmlBaseClass and UmlBaseState. + + Added operations isPython_3_operation and set_IsPython_3_operation to + PythonSettings. + + Internal plug-out API extended for Java Roundtrip, and type + specification of function's parameters and return values. All plug-outs + updated to use the new API. + + The operation importProject has been added to UmlBasePackage, which + returns the UmlPackage corresponding to the imported project or null in + case of an error. + * Python Generator: + + All the lines of a docstring are indented according to PEP-0257. + + Manage type specification of function's parameters return values + according to PEP-3107. + * XMI Generator: + + When a parameter of an operation doesn't have type the token + UML:Parameter was not closed. Fixed. + * XMI2 Generator: + + The base type of a class stereotyped typedef is now produced in an + extension form supposing you ask for them. + * Wed Apr 08 2009 Debarshi Ray - 4.12.1-1 - Version bump to 4.12.1. * Previous releases can not read a project saved with this version, but Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bouml/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 11 Apr 2009 20:19:46 -0000 1.21 +++ sources 4 Jul 2009 09:41:47 -0000 1.22 @@ -1 +1 @@ -b7f5a90de1c7cfeeab8986e44e8037de bouml_4.12.1.tar.gz +b45efd68dd6f45fbddad48ebbf90a786 bouml_4.13.tar.gz From gemi at fedoraproject.org Sat Jul 4 09:59:16 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 4 Jul 2009 09:59:16 +0000 (UTC) Subject: rpms/hugs98/F-10 hugs98.spec,1.13,1.14 Message-ID: <20090704095916.BCA9A11C02C3@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/hugs98/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29110 Modified Files: hugs98.spec Log Message: added alternatives setup for runhaskell and friends Index: hugs98.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugs98/F-10/hugs98.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- hugs98.spec 19 Feb 2008 03:38:40 -0000 1.13 +++ hugs98.spec 4 Jul 2009 09:58:46 -0000 1.14 @@ -2,7 +2,7 @@ Name: hugs98 Version: 2006.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Haskell Interpreter Group: Development/Languages @@ -106,8 +106,9 @@ Demo files for Hugs98. # this is to avoid network lookup of the DTD sed -i 's|\"http://www.oasis-open.org.*\"||' docs/users_guide/users_guide.xml + %build -OPTFLAGS=`echo %optflags | sed -e "s|-O2||"` +#OPTFLAGS=`echo %optflags | sed -e "s|-O2||"` %define optflags $OPTFLAGS %configure --with-pthreads --enable-char-encoding=locale make %{?_smp_mflags} @@ -193,7 +194,27 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/hugs/packages/HGL +%post +update-alternatives --install %{_bindir}/runhaskell runhaskell \ + %{_bindir}/runhugs 100 +update-alternatives --install %{_bindir}/hsc2hs hsc2hs \ + %{_bindir}/hsc2hs-hugs 100 +update-alternatives --install %{_bindir}/cpphs cpphs \ + %{_bindir}/cpphs-hugs 100 + + +%preun +if [ "$1" = 0 ]; then + update-alternatives --remove runhaskell %{_bindir}/runhugs + update-alternatives --remove hsc2hs %{_bindir}/hsc2hs-hugs + update-alternatives --remove cpphs %{_bindir}/cpphs-hugs +fi + + %changelog +* Fri Jul 3 2009 Gerard Milmeister - 2006.09-5 +- added alternatives setup for runhaskell and friends + * Mon Feb 18 2008 Fedora Release Engineering - 2006.09-4 - Autorebuild for GCC 4.3 From rishi at fedoraproject.org Sat Jul 4 10:21:46 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Sat, 4 Jul 2009 10:21:46 +0000 (UTC) Subject: rpms/bouml/devel .cvsignore, 1.19, 1.20 bouml.spec, 1.27, 1.28 sources, 1.21, 1.22 Message-ID: <20090704102146.1835011C02C3@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/bouml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32464 Modified Files: .cvsignore bouml.spec sources Log Message: * Sat Jul 04 2009 Debarshi Ray - 4.13-1 - Version bump to 4.13. * Added active on activity, class and state. * Browser search can now search for elements depending on their stereotype. * Duplicating a state caused a crash. Fixed. * Made it easier to select small elements connectd to a line in a diagram. * When an attribute or operation of a class was deleted from a plug-out, the drawing of the class was not updated in already opened diagrams. Fixed. * C++ Generator: + A dependency stereotyped as friend produced wrong code in case the target class was a template. Fixed. * Java Roundtrip: + New plug-out. * Plug-out: + A crash occured when upgrading an old plug-out without Python management. Fixed. + Added operations isActive and set_isActive to UmlBaseActivity, UmlBaseClass and UmlBaseState. + Added operations isPython_3_operation and set_IsPython_3_operation to PythonSettings. + Internal plug-out API extended for Java Roundtrip, and type specification of function's parameters and return values. All plug-outs updated to use the new API. + The operation importProject has been added to UmlBasePackage, which returns the UmlPackage corresponding to the imported project or null in case of an error. * Python Generator: + All the lines of a docstring are indented according to PEP-0257. + Manage type specification of function's parameters return values according to PEP-3107. * XMI Generator: + When a parameter of an operation doesn't have type the token UML:Parameter was not closed. Fixed. * XMI2 Generator: + The base type of a class stereotyped typedef is now produced in an extension form supposing you ask for them. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bouml/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 11 Apr 2009 20:19:45 -0000 1.19 +++ .cvsignore 4 Jul 2009 10:21:15 -0000 1.20 @@ -1 +1 @@ -bouml_4.12.1.tar.gz +bouml_4.13.tar.gz Index: bouml.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouml/devel/bouml.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bouml.spec 11 Apr 2009 20:19:46 -0000 1.27 +++ bouml.spec 4 Jul 2009 10:21:15 -0000 1.28 @@ -5,7 +5,7 @@ Summary: UML2 tool box for C++, Java, IDL, PHP and Python Name: bouml -Version: 4.12.1 +Version: 4.13 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -110,6 +110,44 @@ fi %{_libdir}/%{name}/* %changelog +* Sat Jul 04 2009 Debarshi Ray - 4.13-1 +- Version bump to 4.13. + * Added active on activity, class and state. + * Browser search can now search for elements depending on their stereotype. + * Duplicating a state caused a crash. Fixed. + * Made it easier to select small elements connectd to a line in a diagram. + * When an attribute or operation of a class was deleted from a plug-out, + the drawing of the class was not updated in already opened diagrams. + Fixed. + * C++ Generator: + + A dependency stereotyped as friend produced wrong code in case the + target class was a template. Fixed. + * Java Roundtrip: + + New plug-out. + * Plug-out: + + A crash occured when upgrading an old plug-out without Python + management. Fixed. + + Added operations isActive and set_isActive to UmlBaseActivity, + UmlBaseClass and UmlBaseState. + + Added operations isPython_3_operation and set_IsPython_3_operation to + PythonSettings. + + Internal plug-out API extended for Java Roundtrip, and type + specification of function's parameters and return values. All plug-outs + updated to use the new API. + + The operation importProject has been added to UmlBasePackage, which + returns the UmlPackage corresponding to the imported project or null in + case of an error. + * Python Generator: + + All the lines of a docstring are indented according to PEP-0257. + + Manage type specification of function's parameters return values + according to PEP-3107. + * XMI Generator: + + When a parameter of an operation doesn't have type the token + UML:Parameter was not closed. Fixed. + * XMI2 Generator: + + The base type of a class stereotyped typedef is now produced in an + extension form supposing you ask for them. + * Wed Apr 08 2009 Debarshi Ray - 4.12.1-1 - Version bump to 4.12.1. * Previous releases can not read a project saved with this version, but Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bouml/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 11 Apr 2009 20:19:46 -0000 1.21 +++ sources 4 Jul 2009 10:21:15 -0000 1.22 @@ -1 +1 @@ -b7f5a90de1c7cfeeab8986e44e8037de bouml_4.12.1.tar.gz +b45efd68dd6f45fbddad48ebbf90a786 bouml_4.13.tar.gz From gemi at fedoraproject.org Sat Jul 4 10:52:30 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 4 Jul 2009 10:52:30 +0000 (UTC) Subject: rpms/hugs98/F-10 hugs98.spec,1.14,1.15 Message-ID: <20090704105230.EC6A911C02C3@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/hugs98/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5590 Modified Files: hugs98.spec Log Message: Index: hugs98.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugs98/F-10/hugs98.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hugs98.spec 4 Jul 2009 09:58:46 -0000 1.14 +++ hugs98.spec 4 Jul 2009 10:52:00 -0000 1.15 @@ -2,7 +2,7 @@ Name: hugs98 Version: 2006.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Haskell Interpreter Group: Development/Languages @@ -108,8 +108,6 @@ sed -i 's|\"http://www.oasis-open.org.*\ %build -#OPTFLAGS=`echo %optflags | sed -e "s|-O2||"` -%define optflags $OPTFLAGS %configure --with-pthreads --enable-char-encoding=locale make %{?_smp_mflags} @@ -212,7 +210,7 @@ fi %changelog -* Fri Jul 3 2009 Gerard Milmeister - 2006.09-5 +* Fri Jul 3 2009 Gerard Milmeister - 2006.09-6 - added alternatives setup for runhaskell and friends * Mon Feb 18 2008 Fedora Release Engineering - 2006.09-4 From gemi at fedoraproject.org Sat Jul 4 11:12:28 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 4 Jul 2009 11:12:28 +0000 (UTC) Subject: rpms/hugs98/F-11 hugs98.spec,1.14,1.15 Message-ID: <20090704111228.5E7BA11C02C3@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/hugs98/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9918/F-11 Modified Files: hugs98.spec Log Message: added alternatives setup for runhaskell and friends Index: hugs98.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugs98/F-11/hugs98.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hugs98.spec 25 Feb 2009 04:21:07 -0000 1.14 +++ hugs98.spec 4 Jul 2009 11:11:56 -0000 1.15 @@ -2,7 +2,7 @@ Name: hugs98 Version: 2006.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Haskell Interpreter Group: Development/Languages @@ -106,9 +106,8 @@ Demo files for Hugs98. # this is to avoid network lookup of the DTD sed -i 's|\"http://www.oasis-open.org.*\"||' docs/users_guide/users_guide.xml + %build -OPTFLAGS=`echo %optflags | sed -e "s|-O2||"` -%define optflags $OPTFLAGS %configure --with-pthreads --enable-char-encoding=locale make %{?_smp_mflags} @@ -193,7 +192,27 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/hugs/packages/HGL +%post +update-alternatives --install %{_bindir}/runhaskell runhaskell \ + %{_bindir}/runhugs 100 +update-alternatives --install %{_bindir}/hsc2hs hsc2hs \ + %{_bindir}/hsc2hs-hugs 100 +update-alternatives --install %{_bindir}/cpphs cpphs \ + %{_bindir}/cpphs-hugs 100 + + +%preun +if [ "$1" = 0 ]; then + update-alternatives --remove runhaskell %{_bindir}/runhugs + update-alternatives --remove hsc2hs %{_bindir}/hsc2hs-hugs + update-alternatives --remove cpphs %{_bindir}/cpphs-hugs +fi + + %changelog +* Fri Jul 3 2009 Gerard Milmeister - 2006.09-6 +- added alternatives setup for runhaskell and friends + * Tue Feb 24 2009 Fedora Release Engineering - 2006.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From gemi at fedoraproject.org Sat Jul 4 11:12:28 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 4 Jul 2009 11:12:28 +0000 (UTC) Subject: rpms/hugs98/devel hugs98.spec,1.14,1.15 Message-ID: <20090704111228.5E86E11C0489@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/hugs98/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9918/devel Modified Files: hugs98.spec Log Message: added alternatives setup for runhaskell and friends Index: hugs98.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugs98/devel/hugs98.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hugs98.spec 25 Feb 2009 04:21:07 -0000 1.14 +++ hugs98.spec 4 Jul 2009 11:11:57 -0000 1.15 @@ -2,7 +2,7 @@ Name: hugs98 Version: 2006.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Haskell Interpreter Group: Development/Languages @@ -106,9 +106,8 @@ Demo files for Hugs98. # this is to avoid network lookup of the DTD sed -i 's|\"http://www.oasis-open.org.*\"||' docs/users_guide/users_guide.xml + %build -OPTFLAGS=`echo %optflags | sed -e "s|-O2||"` -%define optflags $OPTFLAGS %configure --with-pthreads --enable-char-encoding=locale make %{?_smp_mflags} @@ -193,7 +192,27 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/hugs/packages/HGL +%post +update-alternatives --install %{_bindir}/runhaskell runhaskell \ + %{_bindir}/runhugs 100 +update-alternatives --install %{_bindir}/hsc2hs hsc2hs \ + %{_bindir}/hsc2hs-hugs 100 +update-alternatives --install %{_bindir}/cpphs cpphs \ + %{_bindir}/cpphs-hugs 100 + + +%preun +if [ "$1" = 0 ]; then + update-alternatives --remove runhaskell %{_bindir}/runhugs + update-alternatives --remove hsc2hs %{_bindir}/hsc2hs-hugs + update-alternatives --remove cpphs %{_bindir}/cpphs-hugs +fi + + %changelog +* Fri Jul 3 2009 Gerard Milmeister - 2006.09-6 +- added alternatives setup for runhaskell and friends + * Tue Feb 24 2009 Fedora Release Engineering - 2006.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From chitlesh at fedoraproject.org Sat Jul 4 11:46:52 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sat, 4 Jul 2009 11:46:52 +0000 (UTC) Subject: rpms/alliance/devel alliance-examples-adm2901.patch, NONE, 1.1 alliance-examples-go-all-clean.sh, NONE, 1.1 alliance-examples-go-all.sh, NONE, 1.1 alliance-examples-mipsR3000.patch, NONE, 1.1 alliance-tutorials-amd2901.patch, NONE, 1.1 alliance-tutorials-go-all-clean.sh, NONE, 1.1 alliance-tutorials-go-all.sh, NONE, 1.1 alliance-tutorials-place_n_route.patch, NONE, 1.1 alliance-tutorials-simulation.patch, NONE, 1.1 alliance-tutorials-start.patch, NONE, 1.1 alliance-tutorials-synthesis.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 alliance.spec, 1.21, 1.22 import.log, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090704114653.30B4F11C02C3@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/alliance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17590/devel Modified Files: .cvsignore alliance.spec import.log sources Added Files: alliance-examples-adm2901.patch alliance-examples-go-all-clean.sh alliance-examples-go-all.sh alliance-examples-mipsR3000.patch alliance-tutorials-amd2901.patch alliance-tutorials-go-all-clean.sh alliance-tutorials-go-all.sh alliance-tutorials-place_n_route.patch alliance-tutorials-simulation.patch alliance-tutorials-start.patch alliance-tutorials-synthesis.patch Log Message: fixed documentation and broken examples alliance-examples-adm2901.patch: --- NEW FILE alliance-examples-adm2901.patch --- diff -Naur alliance-5.0/documentation/alliance-examples/amd2901/amd2901_chip.c test-64/alliance-examples/amd2901/amd2901_chip.c --- alliance-5.0/documentation/alliance-examples/amd2901/amd2901_chip.c 2004-05-23 20:55:16.000000000 +0200 +++ test-64/alliance-examples/amd2901/amd2901_chip.c 2009-06-14 02:35:45.000000000 +0200 @@ -1,5 +1,5 @@ #include -#define POWER "vdde","vdd","vsse","vss",0 +#define POWER "vdde","vdd","vsse","vss",NULL int main () { @@ -78,7 +78,7 @@ "vdd => vdd", "vss => vss", - 0); + NULL); GENLIB_LOINS("pck_sp","p_ck","ck","cki", POWER); @@ -119,13 +119,13 @@ GENLIB_LOINS ("piot_sp","p_r3", "ram_o_up","sh_left","ram_i_up","r3","cki", POWER ); - GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",NULL); - GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",NULL); GENLIB_SAVE_LOFIG(); diff -Naur alliance-5.0/documentation/alliance-examples/amd2901/amd2901_core.c test-64/alliance-examples/amd2901/amd2901_core.c --- alliance-5.0/documentation/alliance-examples/amd2901/amd2901_core.c 2004-05-23 20:55:16.000000000 +0200 +++ test-64/alliance-examples/amd2901/amd2901_core.c 2009-06-14 02:36:07.000000000 +0200 @@ -109,7 +109,7 @@ "out_x[3:0] => y[3:0]", "vdd => vdd", - "vss => vss", 0); + "vss => vss", NULL); /* ***************** Control Instanciation ****************** */ @@ -161,7 +161,7 @@ "oe => oe", "vdd => vdd", - "vss => vss", 0); + "vss => vss", NULL); GENLIB_PLACE ("amd2901_dpt", "amd2901_dpt", NOSYM, 0, 0); GENLIB_DEF_AB (0, 0, 0, 100); --- NEW FILE alliance-examples-go-all-clean.sh --- #!/bin/sh for B in addaccu16 adder4 amd2901 amd2901-vasy digi divcas4 \ multi16b-reg multi4b multi8 multi8b pgcd sqrt32 sqrt8 \ mipsR3000 hadamard do if [ -d $B ] then echo "----- BENCH $B ----- " (cd $B && make clean) fi done --- NEW FILE alliance-examples-go-all.sh --- #!/bin/sh for B in addaccu16 adder4 amd2901 amd2901-vasy digi divcas4 \ multi16b-reg multi4b multi8 multi8b pgcd sqrt32 sqrt8 \ mipsR3000 hadamard do if [ -d $B ] then echo "----- BENCH $B ----- " (cd $B && make clean && make) fi done alliance-examples-mipsR3000.patch: --- NEW FILE alliance-examples-mipsR3000.patch --- diff -Naur alliance-5.0/documentation/alliance-examples/mipsR3000/sce/Makefile test-64/alliance-examples/mipsR3000/sce/Makefile --- alliance-5.0/documentation/alliance-examples/mipsR3000/sce/Makefile 2004-07-30 02:40:09.000000000 +0200 +++ test-64/alliance-examples/mipsR3000/sce/Makefile 2009-06-14 03:12:56.000000000 +0200 @@ -119,7 +119,7 @@ LVX = $(MBK_EXTRACT_ENV); $(ALLIANCE_BIN)/lvx PROOF = $(MBK_EXTRACT_ENV); $(ALLIANCE_BIN)/proof RING = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/ring - DPGEN = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/genlib + DPGEN = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/genlib --keep-exec --verbose OCP = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/ocp -v -gnuplot OCR = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/ocr NERO = $(MBK_GENERAT_ENV); $(ALLIANCE_BIN)/nero -V alliance-tutorials-amd2901.patch: --- NEW FILE alliance-tutorials-amd2901.patch --- diff -Naur documentation/tutorials/synthesis/src/amd2901/Makefile tutorials/synthesis/src/amd2901/Makefile --- documentation/tutorials/synthesis/src/amd2901/Makefile 2002-07-25 14:50:18.000000000 +0200 +++ tutorials/synthesis/src/amd2901/Makefile 2007-07-18 19:34:53.000000000 +0200 @@ -2,17 +2,17 @@ all: EXAMPLE VAR CATAL02 res.pat -VAR: +VAR: MBK_IN_LO=vst;export MBK_IN_LO ;\ - MBK_CATA_LIB=/asim/alliance/cells/sxlib;export MBK_CATA_LIB + MBK_CATA_LIB=$ALLIANCE_TOP/cells/sxlib;export MBK_CATA_LIB CATAL01: - echo amd2901_ctl C >CATAL + echo amd2901_ctl C >CATAL echo amd2901_dpt C >>CATAL CATAL02: echo amd2901_dpt C >CATAL - + EXAMPLE: genlib circuit @@ -38,7 +38,7 @@ res2.pat: amd2901_chip.vst pattern.pat amd2901_core.vst CATAL asimut amd2901_chip pattern res2 - touch amd2901_chip.vst + touch amd2901_chip.vst clean : rm -f Makefile-* \ --- NEW FILE alliance-tutorials-go-all-clean.sh --- #!/bin/sh for B in place_and_route simulation synthesis do if [ -d $B/src ] then echo "--- BENCH $B ----" (cd $B/src && make clean) fi done --- NEW FILE alliance-tutorials-go-all.sh --- #!/bin/sh for B in place_and_route simulation synthesis do if [ -d $B/src ] then echo "--- BENCH $B ----" (cd $B/src && make clean && make) fi done alliance-tutorials-place_n_route.patch: --- NEW FILE alliance-tutorials-place_n_route.patch --- diff -Naur alliance-5.0/documentation/tutorials/place_and_route/src/amd2901/amd2901_chip.c test-64/tutorials/place_and_route/src/amd2901/amd2901_chip.c --- alliance-5.0/documentation/tutorials/place_and_route/src/amd2901/amd2901_chip.c 2002-07-25 14:50:19.000000000 +0200 +++ test-64/tutorials/place_and_route/src/amd2901/amd2901_chip.c 2009-06-14 02:27:03.000000000 +0200 @@ -1,5 +1,5 @@ #include -#define POWER "vdde","vdd","vsse","vss",0 +#define POWER "vdde","vdd","vsse","vss",NULL int main () { @@ -78,7 +78,7 @@ "vdd => vdd", "vss => vss", - 0); + NULL); GENLIB_LOINS("pck_sp","p_ck","ck","cki", POWER); @@ -119,13 +119,13 @@ GENLIB_LOINS ("piot_sp","p_r3", "ram_o_up","sh_left","ram_i_up","r3","cki", POWER ); - GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",NULL); - GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",NULL); GENLIB_SAVE_LOFIG(); diff -Naur alliance-5.0/documentation/tutorials/place_and_route/tex/place_and_route.tex test-64/tutorials/place_and_route/tex/place_and_route.tex --- alliance-5.0/documentation/tutorials/place_and_route/tex/place_and_route.tex 2004-10-16 14:51:56.000000000 +0200 +++ test-64/tutorials/place_and_route/tex/place_and_route.tex 2009-07-04 12:02:23.689711020 +0200 @@ -1,26 +1,17 @@ -%%%%%%%%%%%%%%%% -% $Id: place_and_route.tex,v 1.5 2004/10/16 12:51:56 fred Exp $ -% $Log: place_and_route.tex,v $ -% Revision 1.5 2004/10/16 12:51:56 fred -% Erasing the psfig include from the file, changed the font to 10 pt -% instead of 12 (sparing trees and not being payed by the thickness of -% my production) and changing font to charter since I got tired of -% Palatino, sorry Herman! -% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\documentclass{article} +\documentclass[10pt]{article} \usepackage[dvips]{graphics} \usepackage[english]{babel} -\usepackage{doublespace} +\usepackage{setspace} \usepackage{epsf} \usepackage{fancybox} -\usepackage{fancyheadings} +\usepackage{fancyhdr} \usepackage{float} \usepackage{graphicx} -\usepackage{here} -\usepackage{isolatin1} -\usepackage{charter} +%\usepackage{here} +%\usepackage{isolatin1} +\usepackage{palatino} \usepackage{picinpar} +%\usepackage{psfig} \usepackage{rotate} \usepackage{subfigure} \usepackage{sverb} @@ -37,7 +28,7 @@ \setlength{\columnsep}{0.125in} \setlength{\columnseprule}{0.5pt} \setlength{\footskip}{1cm} -\setstretch{1.2} +%\setstretch{1.2} %--------------------------------- styles @@ -67,7 +58,7 @@ %--------------------------------- page style -------------------------------- \pagestyle{fancy} \rhead{Place and route} \lhead{PART 3} \rfoot{\thepage} \lfoot{ALLIANCE TUTORIAL} \cfoot{} -\setlength{\footrulewidth}{0.6pt} + % %\begin{figure}[H]\centering % \includegraphics[width=8cm,height=8cm]{.eps} alliance-tutorials-simulation.patch: --- NEW FILE alliance-tutorials-simulation.patch --- diff -Naur alliance-5.0/documentation/tutorials/simulation/tex/simulation.tex test-64/tutorials/simulation/tex/simulation.tex --- alliance-5.0/documentation/tutorials/simulation/tex/simulation.tex 2004-10-16 14:52:05.000000000 +0200 +++ test-64/tutorials/simulation/tex/simulation.tex 2009-07-04 12:18:54.867711418 +0200 @@ -1,27 +1,18 @@ -%%%%%%%%%%%%%%%% -% $Id: simulation.tex,v 1.5 2004/10/16 12:52:05 fred Exp $ -% $Log: simulation.tex,v $ -% Revision 1.5 2004/10/16 12:52:05 fred -% Erasing the psfig include from the file, changed the font to 10 pt -% instead of 12 (sparing trees and not being payed by the thickness of -% my production) and changing font to charter since I got tired of -% Palatino, sorry Herman! -% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %--------------------------------- page style -------------------------------- -\documentclass{article} +\documentclass[10pt]{article} \usepackage[dvips]{graphics} \usepackage[english]{babel} -\usepackage{doublespace} +\usepackage{setspace} +\usepackage{epsf} \usepackage{fancybox} -\usepackage{fancyheadings} +\usepackage{fancyhdr} \usepackage{float} \usepackage{graphicx} -\usepackage{here} -\usepackage{isolatin1} -\usepackage{charter} +\usepackage[latin1]{inputenc} +\usepackage{palatino} \usepackage{picinpar} +%\usepackage{psfig} \usepackage{rotate} \usepackage{subfigure} \usepackage{sverb} @@ -38,7 +29,7 @@ \setlength{\columnsep}{0.125in} \setlength{\columnseprule}{0.5pt} \setlength{\footskip}{1cm} -\setstretch{1} +%\setstretch{1} %--------------------------------- styles-------------------------------- % @@ -66,7 +57,7 @@ \rfoot{\thepage} \lfoot{ALLIANCE TUTORIAL} \cfoot{} -\setlength{\footrulewidth}{0.6pt} +%\setlength{\footrulewidth}{0.6pt} %--------------------------------- page style -------------------------------- \pagestyle{fancy} @@ -75,7 +66,7 @@ \rfoot{\thepage} \lfoot{ALLIANCE TUTORIAL} \cfoot{} -\setlength{\footrulewidth}{0.6pt} +%\setlength{\footrulewidth}{0.6pt} %---------------------------------- document --------------------------------- @@ -171,7 +162,7 @@ } All the files used in this part are located in the \\ -\texttt{/tutorial/simulation/src} directory.\\ +\texttt{/usr/share/doc/alliance-doc-5.0//tutorial/simulation/src} directory.\\ This directory contains two subdirectories and one Makefile : \begin{itemize} \item The Makefile allows you to validate automatically the entire simulation part @@ -626,13 +617,13 @@ \bf SXLIB }. For the functionality of the various cells and their interface, the sxlib man is available. The behavioral description of each cell is present in \\ -{\bf /alliance/cells/sxlib }. +{\bf \$ALLIANCE\_TOP/cells/sxlib }. You must set the environment variable { \bf MBK\_CATA\_LIB } to be able to reach these cells. \begin{commandline} - > MBK_CATA_LIB=/alliance/cells/sxlib + > MBK_CATA_LIB=\$ALLIANCE\_TOP/cells/sxlib > export MBK_CATA_LIB \end{commandline} alliance-tutorials-start.patch: --- NEW FILE alliance-tutorials-start.patch --- diff -Naur alliance-5.0/documentation/tutorials/start/start.tex test-64/tutorials/start/start.tex --- alliance-5.0/documentation/tutorials/start/start.tex 2004-10-16 14:52:13.000000000 +0200 +++ test-64/tutorials/start/start.tex 2009-07-04 12:17:35.389714653 +0200 @@ -5,16 +5,16 @@ % Version for Alliance releases 2.0 and up by Frederic Petrot % Modified by czo for Alliance release 4.0 (01/2000) % TODO : no fully working, needs some adjustements -% $Id: start.tex,v 1.5 2004/10/16 12:52:13 fred Exp $ +% $Id: start.tex,v 1.4 2004/07/15 21:40:02 ludo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass{article} -\usepackage{charter,doublespace,here,fancybox} +\usepackage{palatino,setspace,fancybox} \textwidth 15cm \textheight 23cm \oddsidemargin +0.75cm \evensidemargin -0.75cm -\setstretch{1.2} +%\setstretch{1.2} %%%%%%%%%%%%%%% % Setting the width of the verbatim parts according to 80 tt chars % Since it is tt, any char is fine @@ -116,13 +116,13 @@ try to run the following command : \begin{phraseverbatim} -~alp/addaccu %-) source /alliance/etc/alc_env.csh +~alp/addaccu %-) source /etc/profile.d/alc_env.csh \end{phraseverbatim} Otherwise, if you run a \texttt{sh-like} shell, try to run the following command : \begin{phraseverbatim} -~alp/addaccu %-) source /alliance/alc_env.sh +~alp/addaccu %-) source /etc/profile.d/alc_env.sh \end{phraseverbatim} \\ Before we proceed to the tutorial, you must make sure that the @@ -151,13 +151,13 @@ MBK_CATAL_NAME=CATAL MBK_SCALE_X=100 MBK_VSS=vss -MBK_CATA_LIB=.:/alliance/cells/sxlib:/alliance/cells/padlib +MBK_CATA_LIB=.:\$ALLIANCE\_TOP/cells/sxlib:\$ALLIANCE\_TOP/cells/padlib MBK_WORK_LIB=. MBK_VDD=vdd MBK_C4_LIB=./cellsC4 MBK_IN_LO=vst MBK_IN_PH=ap -MBK_TARGET_LIB=/alliance/cells/sxlib +MBK_TARGET_LIB=\$ALLIANCE\_TOP/cells/sxlib MBK_OUT_LO=vst \end{framedverbatim} \caption{\label{mbk} \texttt{MBK} environment variables.} alliance-tutorials-synthesis.patch: --- NEW FILE alliance-tutorials-synthesis.patch --- diff -Naur alliance-5.0/documentation/tutorials/synthesis/src/amd2901/amd2901_chip.c test-64/tutorials/synthesis/src/amd2901/amd2901_chip.c --- alliance-5.0/documentation/tutorials/synthesis/src/amd2901/amd2901_chip.c 2002-07-25 14:50:18.000000000 +0200 +++ test-64/tutorials/synthesis/src/amd2901/amd2901_chip.c 2009-06-14 00:31:18.000000000 +0200 @@ -78,7 +78,7 @@ "vdd => vdd", "vss => vss", - 0); + NULL); GENLIB_LOINS("pck_sp","p_ck","ck","cki", POWER); @@ -119,13 +119,13 @@ GENLIB_LOINS ("piot_sp","p_r3", "ram_o_up","sh_left","ram_i_up","r3","cki", POWER ); - GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddick_sp","p_vddick0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvssick_sp","p_vssick0","ckc","cki","vdde","vdd","vsse","vss",NULL); - GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",0); - GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",0); + GENLIB_LOINS("pvddeck_sp","p_vddeck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvddeck_sp","p_vddeck1","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck0","ckc","cki","vdde","vdd","vsse","vss",NULL); + GENLIB_LOINS("pvsseck_sp","p_vsseck1","ckc","cki","vdde","vdd","vsse","vss",NULL); GENLIB_SAVE_LOFIG(); diff -Naur alliance-5.0/documentation/tutorials/synthesis/src/digicode/log test-64/tutorials/synthesis/src/digicode/log --- alliance-5.0/documentation/tutorials/synthesis/src/digicode/log 1970-01-01 01:00:00.000000000 +0100 +++ test-64/tutorials/synthesis/src/digicode/log 2009-06-14 12:57:45.000000000 +0200 @@ -0,0 +1,91 @@ +==32653== Memcheck, a memory error detector. +==32653== Copyright (C) 2002-2006, and GNU GPL'd, by Julian Seward et al. +==32653== Using LibVEX rev 1658, a library for dynamic binary translation. +==32653== Copyright (C) 2004-2006, and GNU GPL'd, by OpenWorks LLP. +==32653== Using valgrind-3.2.1, a dynamic binary instrumentation framework. +==32653== Copyright (C) 2000-2006, and GNU GPL'd, by Julian Seward et al. +==32653== For more details, rerun with: -v +==32653== +Mapping Warning: Cell 'halfadder_x4' isn't supported +Mapping Warning: Cell 'halfadder_x2' isn't supported +Mapping Warning: Cell 'fulladder_x4' isn't supported +Mapping Warning: Cell 'fulladder_x2' isn't supported + + @@@@@@@ @@@@ @ + @@ @@ @@ @@ + @@ @@ @@ @ + @@ @@ @@@ @@@ @@ + @@ @@ @@ @@ @@ @@ @@ + @@@@@@ @@ @@ @@ @@ @@ @@@@@ + @@ @@ @@ @@ @@ @@ @@ @ @@ + @@ @@ @@ @@ @@ @@ @@ @ @@ + @@ @@ @@ @@ @@ @@ @@ @@ + @@ @@ @@ @@ @@ @@ @@ @@ + @@@@@@@@ @@@ @@@ @@@@ + + Binding and Optimizing On Gates + + Alliance CAD System 5.0, boog 5.0 [2003/01/09] + Copyright (c) 2000-2009, ASIM/LIP6/UPMC + Author(s): Fran?ois Donnet + E-mail : alliance-users at asim.lip6.fr + + MBK_VDD : vdd + MBK_VSS : vss + MBK_IN_LO : vst + MBK_OUT_LO : vst + MBK_WORK_LIB : . + MBK_TARGET_LIB : /users/cao/ludo/chaos/alliance/distrib-64/cells/sxlib + +Reading default parameter... +50% area - 50% delay optimization +Reading file 'digicoder_b.vbe'... +Controlling file 'digicoder_b.vbe'... +Reading lib '/users/cao/ludo/chaos/alliance/distrib-64/cells/sxlib'... +Controlling lib '/users/cao/ludo/chaos/alliance/distrib-64/cells/sxlib'... +Preparing file 'digicoder_b.vbe'... +Capacitances on file 'digicoder_b.vbe'... +Unflattening file 'digicoder_b.vbe'... +Mapping file 'digicoder_b.vbe'... +Saving file 'digicoder_b.vst'... +Quick estimated critical path (no warranty)...1866 ps from 'i 3' to 'digicode_ep 2' +Quick estimated area (with over-cell routing)...93500 lambda? +Details... + inv_x2: 12 + a2_x2: 7 + na2_x1: 7 + o2_x2: 6 + na3_x1: 5 + no2_x1: 5 + on12_x1: 4 + sff1_x4: 3 + an12_x1: 3 + nao22_x1: 3 + no4_x1: 3 + noa22_x1: 2 + no3_x1: 2 + a3_x2: 2 + o3_x2: 2 + zero_x0: 1 + buf_x2: 1 + oa22_x2: 1 + xr2_x1: 1 + a4_x2: 1 + Total: 71 +Saving critical path in xsch color file 'digicoder_b.xsc'... +End of boog... + +==32653== +==32653== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 5 from 1) +==32653== malloc/free: in use at exit: 9,263,779 bytes in 17,753 blocks. +==32653== malloc/free: 18,632 allocs, 879 frees, 9,622,816 bytes allocated. +==32653== For counts of detected errors, rerun with: -v +==32653== searching for pointers to 17,753 not-freed blocks. +==32653== checked 4,796,752 bytes. +==32653== +==32653== LEAK SUMMARY: +==32653== definitely lost: 230,722 bytes in 5,658 blocks. +==32653== possibly lost: 329,120 bytes in 18 blocks. +==32653== still reachable: 8,703,937 bytes in 12,077 blocks. +==32653== suppressed: 0 bytes in 0 blocks. +==32653== Use --leak-check=full to see details of leaked memory. diff -Naur alliance-5.0/documentation/tutorials/synthesis/tex/synthesis.tex test-64/tutorials/synthesis/tex/synthesis.tex --- alliance-5.0/documentation/tutorials/synthesis/tex/synthesis.tex 2004-10-16 14:52:17.000000000 +0200 +++ test-64/tutorials/synthesis/tex/synthesis.tex 2009-07-04 12:26:03.345711622 +0200 @@ -1,25 +1,16 @@ -%%%%%%%%%%%%%%%% -% $Id: synthesis.tex,v 1.4 2004/10/16 12:52:17 fred Exp $ -% $Log: synthesis.tex,v $ -% Revision 1.4 2004/10/16 12:52:17 fred -% Erasing the psfig include from the file, changed the font to 10 pt -% instead of 12 (sparing trees and not being payed by the thickness of -% my production) and changing font to charter since I got tired of -% Palatino, sorry Herman! -% -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\documentclass{article} +\documentclass[10pt]{article} \usepackage[dvips]{graphics} \usepackage[english]{babel} -\usepackage{doublespace} +\usepackage{setspace} +\usepackage{epsf} \usepackage{fancybox} -\usepackage{fancyheadings} +\usepackage{fancyhdr} \usepackage{float} \usepackage{graphicx} -\usepackage{here} -\usepackage{isolatin1} -\usepackage{charter} +\usepackage[latin1]{inputenc} +\usepackage{palatino} \usepackage{picinpar} +%\usepackage{psfig} \usepackage{rotate} \usepackage{subfigure} \usepackage{sverb} @@ -36,7 +27,7 @@ \setlength{\columnsep}{0.125in} \setlength{\columnseprule}{0.5pt} \setlength{\footskip}{1cm} -\setstretch{1} +%\setstretch{1} %--------------------------------- styles @@ -69,7 +60,7 @@ \rfoot{\thepage} \lfoot{ALLIANCE TUTORIAL} \cfoot{} -\setlength{\footrulewidth}{0.6pt} +%\setlength{\footrulewidth}{0.6pt} %---------------------------------- document --------------------------------- \begin{document} @@ -220,7 +211,7 @@ } All the files used in this part are located under \\ -\texttt{/tutorial/synthesis/src} directory.\\ +\texttt{/usr/share/doc/alliance-doc-5.0/tutorials/synthesis/src} directory.\\ This directory contents four subdirectories and one Makefile : \begin{itemize}\itemsep=-.8ex @@ -802,9 +793,8 @@ We break up Amd2901 into 2 blocks: %la partie cont\^ole qui regroupe la ``glu'' logique et la partie op\'erative (chemin de donn\'ees).% \begin{figure}[H]\center -\leavevmode -\includegraphics[width=10cm]{bloc} -\caption{Amd2901 Organization \label{bloc}} +\leavevmode \epsfxsize=10cm \epsffile{bloc.eps} \caption{Amd2901 +Organization \label{bloc}} \end{figure} @@ -819,7 +809,8 @@ We will use the following hierarchical description: \begin{figure}[H]\center \leavevmode -\includegraphics[width=10cm]{hier} +\epsfxsize=10cm +\epsffile{hier.eps} \caption{Hierarchy \label{hier}} \end{figure} @@ -862,7 +853,8 @@ \begin{figure}[H]\center \leavevmode -\includegraphics[width=10cm]{exemple1} +\epsfxsize=10cm +\epsffile{exemple1.eps} \end{figure} The equivalent { \bf genlib } file is as follows: @@ -998,12 +990,13 @@ \begin{figure}[H]\center \leavevmode -\includegraphics[width=10cm]{exemple2} +\epsfxsize=10cm +\epsffile{exemple2.eps} \end{figure} Here the corresponding data-path structure : -\begin{figure}[H]\center \leavevmode -\includegraphics[width=10cm]{datap} +\begin{figure}[H]\center \leavevmode \epsfxsize=10cm +\epsffile{datap.eps} \end{figure} Each gate occupies a column, a column making it possible to treat @@ -1232,39 +1225,47 @@ \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{ctl-mrs-1} +\epsfxsize=12cm +\epsffile{ctl-mrs-1.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{ctl-alu-1} +\epsfxsize=12cm +\epsffile{ctl-alu-1.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{ctl-wen-1} +\epsfxsize=12cm +\epsffile{ctl-wen-1.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=10cm]{dpt-all-1} +\epsfxsize=10cm +\epsffile{dpt-all-1.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{dpt-alu-1} +\epsfxsize=12cm +\epsffile{dpt-alu-1.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{ctldecode} +\epsfxsize=12cm +\epsffile{ctldecode.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{ctldecodebw} +\epsfxsize=12cm +\epsffile{ctldecodebw.eps} \end{figure} \begin{figure}[H]\center \leavevmode -\includegraphics[width=12cm]{dptbanc} +\epsfxsize=12cm +\epsffile{dptbanc.eps} \end{figure} \end{document} Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alliance/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Mar 2008 17:11:17 -0000 1.3 +++ .cvsignore 4 Jul 2009 11:46:51 -0000 1.4 @@ -1,2 +1 @@ alliance-5.0-20070718.tar.gz -alliance-5.0-tutorials.tar.bz2 Index: alliance.spec =================================================================== RCS file: /cvs/pkgs/rpms/alliance/devel/alliance.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- alliance.spec 24 Feb 2009 21:02:21 -0000 1.21 +++ alliance.spec 4 Jul 2009 11:46:52 -0000 1.22 @@ -4,8 +4,8 @@ Name: alliance Version: 5.0 -Release: 26.%{snapshot}snap%{?dist} -Summary: VLSI EDA System +Release: 27.%{snapshot}snap%{?dist} +Summary: EDA platform for ASIC design License: GPLv2 Group: Applications/Engineering @@ -14,12 +14,23 @@ Source: http://www-asim.lip6.fr/p URL: http://www-asim.lip6.fr/recherche/alliance/ Patch0: alliance-env.patch -Patch1: alliance-examples.patch Patch2: alliance-run.patch Patch3: alliance-perms.patch Patch4: alliance-gcc43.patch Patch5: alliance-generic.patch +# Improving autogeneration of documentation +Patch6: alliance-tutorials-place_n_route.patch +Patch7: alliance-tutorials-simulation.patch +Patch8: alliance-tutorials-start.patch +Patch9: alliance-tutorials-synthesis.patch + +# Improving robustness of the examples +Patch10: alliance-tutorials-amd2901.patch +Patch11: alliance-examples.patch +Patch12: alliance-examples-adm2901.patch +Patch13: alliance-examples-mipsR3000.patch + Source1: xsch.desktop Source2: dreal.desktop Source3: xpat.desktop @@ -37,7 +48,10 @@ Source11: xfsm.png Source12: xpat.png Source13: xsch.png -Source14: %{name}-5.0-tutorials.tar.bz2 +Source14: alliance-tutorials-go-all.sh +Source15: alliance-tutorials-go-all-clean.sh +Source16: alliance-examples-go-all.sh +Source17: alliance-examples-go-all-clean.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lesstif-devel libXt-devel byacc desktop-file-utils bison @@ -98,7 +112,9 @@ Architecture dependent files for the All Summary: Alliance VLSI CAD Sytem - Documentations Group: Applications/Engineering Requires: %{name} = %{version}-%{release} -Requires: gnuplot +Requires: gnuplot +BuildRequires:tetex-latex + %description doc @@ -116,19 +132,46 @@ sed -i "s|ALLIANCE_TOP|%{prefix}|" *.des # removing useless copyrighted (by Cadence) lines from the examples # and even in alliance-run # https://www-asim.lip6.fr/wws/arc/alliance-users/2007-07/msg00006.html -%patch1 -p0 -b .examples + %patch2 -p0 -b .run # fixing permissions %patch3 -p0 -b .perms +%patch4 -p1 -b .include +%patch5 -p0 -b .generic -### 2008 March: TexLive introduction to Rawhide +# ------------------------------------------------------------------------------ +# Description : 2008 March : TexLive introduction to Rawhide sed -i "s|tutorials||" documentation/Makefile.in -tar -xvf %{SOURCE14} - +%patch6 -p1 -b .doc +%patch7 -p1 -b .doc +%patch8 -p1 -b .doc +%patch9 -p1 -b .doc +%patch10 -p0 -b .doc +pushd documentation/tutorials + # clean unneccessary files + %{__rm} *.pdf + # build documentation + for folder in place_and_route/tex start simulation/tex synthesis/tex; do + pushd $folder + %{__make} + popd + # remove useless directories before %%doc + %{__rm} -rf $folder + done + # Add automated scripts to tutorials + %{__install} -pm 755 %{SOURCE14} go-all.sh + %{__install} -pm 755 %{SOURCE15} go-all-clean.sh + # FEL self test for alliance + ./go-all.sh 2>&1 | tee self-test-tutorials.log + # clean temporary files + ./go-all-clean.sh +popd +# ------------------------------------------------------------------------------ -%patch4 -p1 -b .include -%patch5 -p0 -b .generic +%patch11 -p0 -b .examples +%patch12 -p1 -b .examples +%patch13 -p1 -b .examples # make sure the man pages are UTF-8... for nonUTF8 in distrib/doc/alc_origin.1 alcban/man1/alcbanner.1 \ @@ -189,6 +232,17 @@ popd %{__rm} -rf %{buildroot}%{prefix}/doc/ %{__rm} -rf %{buildroot}%{prefix}/examples/ +# Add automated scripts to examples +%{__install} -pm 755 %{SOURCE16} alliance-examples/go-all.sh +%{__install} -pm 755 %{SOURCE17} alliance-examples/go-all-clean.sh + +pushd alliance-examples/ + # FEL self test for alliance + ./go-all.sh 2>&1 | tee self-test-examples.log + # clean temporary files + ./go-all-clean.sh +popd + # correcting minor documentation details sed -i "s|/bin/zsh|/bin/sh|" doc/alliance-run/bench.zsh @@ -296,10 +350,14 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sat Jul 4 2009 Chitlesh Goorah - 5.0-27.20070718snap +- improved autogeneration of documentation and fixed the examples + * Tue Feb 24 2009 Chitlesh Goorah - 5.0-26.20070718snap - fixed build due to new releases of flex and bison -* Mon Feb 23 2009 Fedora Release Engineering - 5.0-25.20070718snap - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Mon Feb 23 2009 Fedora Release Engineering - 5.0-25.20070718snap + - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Feb 01 2009 Chitlesh Goorah - 5.0-24.20070718snap - Improved VHDL generic implementation Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/alliance/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 24 Feb 2009 21:02:21 -0000 1.3 +++ import.log 4 Jul 2009 11:46:52 -0000 1.4 @@ -1,3 +1,4 @@ alliance-5_0-21_20070718snap_fc9:HEAD:alliance-5.0-21.20070718snap.fc9.src.rpm:1221496180 alliance-5_0-24_20070718snap_fc10:HEAD:alliance-5.0-24.20070718snap.fc10.src.rpm:1233516213 alliance-5_0-26_20070718snap_fc10:HEAD:alliance-5.0-26.20070718snap.fc10.src.rpm:1235508896 +alliance-5_0-27_20070718snap_fc11:HEAD:alliance-5.0-27.20070718snap.fc11.src.rpm:1246707806 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alliance/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Mar 2008 17:11:17 -0000 1.3 +++ sources 4 Jul 2009 11:46:52 -0000 1.4 @@ -1,2 +1 @@ 917f4493c09f6f5c49d5a606a5e9bbd8 alliance-5.0-20070718.tar.gz -32cac3116f85713aec2e1e18379811eb alliance-5.0-tutorials.tar.bz2 From ankursinha at fedoraproject.org Sat Jul 4 11:53:43 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Sat, 4 Jul 2009 11:53:43 +0000 (UTC) Subject: rpms/oflb-notcouriersans-fonts/devel import.log, NONE, 1.1 oflb-notcouriersans-fonts-fontconfig.conf, NONE, 1.1 oflb-notcouriersans-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090704115343.3088011C02C3@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/oflb-notcouriersans-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18791/devel Modified Files: .cvsignore sources Added Files: import.log oflb-notcouriersans-fonts-fontconfig.conf oflb-notcouriersans-fonts.spec Log Message: * Sat July 4 2009 Ankur Sinha - 1.1 - initial cvs commit --- NEW FILE import.log --- oflb-notcouriersans-fonts-1_1-1_fc10:HEAD:oflb-notcouriersans-fonts-1.1-1.fc10.src.rpm:1246708397 --- NEW FILE oflb-notcouriersans-fonts-fontconfig.conf --- monospace NotCourierSans NotCourierSans monospace --- NEW FILE oflb-notcouriersans-fonts.spec --- %define fontname oflb-notcouriersans %define fontconf 62-%{fontname}.conf Name: %{fontname}-fonts Version: 1.1 Release: 1%{?dist} Summary: NotCourier Sans is a re-interpretation of Nimbus Mono Group: User Interface/X License: GPLv2 URL: http://openfontlibrary.org/media/files/OSP/411 Source0: http://openfontlibrary.org/people/OSP/OSP_-_NotCourierSans_2.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontforge,fontpackages-devel Requires: fontpackages-filesystem %description This is a new release of the NotCourier-sans, with its bold. NotCourier-sans is a re-interpretation of Nimbus Mono and was designed \ in Wroclaw at the occasion of Linux Graphics Meeting (LGM 2008).For more\ detailed information: ospublish.constantvzw.org %prep %setup -q -n NotCourierSans for txt in *.txt GPL-2 ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build fontforge -lang=ff -script "-" *.sfd < - 1.1-1 - Initial RPM build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:47:16 -0000 1.1 +++ .cvsignore 4 Jul 2009 11:53:12 -0000 1.2 @@ -0,0 +1 @@ +OSP_-_NotCourierSans_2.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:47:17 -0000 1.1 +++ sources 4 Jul 2009 11:53:12 -0000 1.2 @@ -0,0 +1 @@ +723ecc5097e3ac05a4cf2e1ea6004ce9 OSP_-_NotCourierSans_2.zip From ankursinha at fedoraproject.org Sat Jul 4 12:07:58 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Sat, 4 Jul 2009 12:07:58 +0000 (UTC) Subject: rpms/oflb-notcouriersans-fonts/F-10 import.log, NONE, 1.1 oflb-notcouriersans-fonts-fontconfig.conf, NONE, 1.1 oflb-notcouriersans-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090704120758.5317011C02C3@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22537/F-10 Modified Files: .cvsignore sources Added Files: import.log oflb-notcouriersans-fonts-fontconfig.conf oflb-notcouriersans-fonts.spec Log Message: * Sat July 4 2009 Ankur Sinha - 1.1 - initial cvs commit --- NEW FILE import.log --- oflb-notcouriersans-fonts-1_1-1_fc10:F-10:oflb-notcouriersans-fonts-1.1-1.fc10.src.rpm:1246709326 --- NEW FILE oflb-notcouriersans-fonts-fontconfig.conf --- monospace NotCourierSans NotCourierSans monospace --- NEW FILE oflb-notcouriersans-fonts.spec --- %define fontname oflb-notcouriersans %define fontconf 62-%{fontname}.conf Name: %{fontname}-fonts Version: 1.1 Release: 1%{?dist} Summary: NotCourier Sans is a re-interpretation of Nimbus Mono Group: User Interface/X License: GPLv2 URL: http://openfontlibrary.org/media/files/OSP/411 Source0: http://openfontlibrary.org/people/OSP/OSP_-_NotCourierSans_2.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontforge,fontpackages-devel Requires: fontpackages-filesystem %description This is a new release of the NotCourier-sans, with its bold. NotCourier-sans is a re-interpretation of Nimbus Mono and was designed \ in Wroclaw at the occasion of Linux Graphics Meeting (LGM 2008).For more\ detailed information: ospublish.constantvzw.org %prep %setup -q -n NotCourierSans for txt in *.txt GPL-2 ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build fontforge -lang=ff -script "-" *.sfd < - 1.1-1 - Initial RPM build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:47:16 -0000 1.1 +++ .cvsignore 4 Jul 2009 12:07:57 -0000 1.2 @@ -0,0 +1 @@ +OSP_-_NotCourierSans_2.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:47:17 -0000 1.1 +++ sources 4 Jul 2009 12:07:58 -0000 1.2 @@ -0,0 +1 @@ +723ecc5097e3ac05a4cf2e1ea6004ce9 OSP_-_NotCourierSans_2.zip From ankursinha at fedoraproject.org Sat Jul 4 12:11:22 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Sat, 4 Jul 2009 12:11:22 +0000 (UTC) Subject: rpms/oflb-notcouriersans-fonts/F-11 import.log, NONE, 1.1 oflb-notcouriersans-fonts-fontconfig.conf, NONE, 1.1 oflb-notcouriersans-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090704121122.2C69211C02C3@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23308/F-11 Modified Files: .cvsignore sources Added Files: import.log oflb-notcouriersans-fonts-fontconfig.conf oflb-notcouriersans-fonts.spec Log Message: * Sat July 4 2009 Ankur Sinha - 1.1 - initial cvs commit --- NEW FILE import.log --- oflb-notcouriersans-fonts-1_1-1_fc10:F-11:oflb-notcouriersans-fonts-1.1-1.fc10.src.rpm:1246709486 --- NEW FILE oflb-notcouriersans-fonts-fontconfig.conf --- monospace NotCourierSans NotCourierSans monospace --- NEW FILE oflb-notcouriersans-fonts.spec --- %define fontname oflb-notcouriersans %define fontconf 62-%{fontname}.conf Name: %{fontname}-fonts Version: 1.1 Release: 1%{?dist} Summary: NotCourier Sans is a re-interpretation of Nimbus Mono Group: User Interface/X License: GPLv2 URL: http://openfontlibrary.org/media/files/OSP/411 Source0: http://openfontlibrary.org/people/OSP/OSP_-_NotCourierSans_2.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontforge,fontpackages-devel Requires: fontpackages-filesystem %description This is a new release of the NotCourier-sans, with its bold. NotCourier-sans is a re-interpretation of Nimbus Mono and was designed \ in Wroclaw at the occasion of Linux Graphics Meeting (LGM 2008).For more\ detailed information: ospublish.constantvzw.org %prep %setup -q -n NotCourierSans for txt in *.txt GPL-2 ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build fontforge -lang=ff -script "-" *.sfd < - 1.1-1 - Initial RPM build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jun 2009 17:47:16 -0000 1.1 +++ .cvsignore 4 Jul 2009 12:10:51 -0000 1.2 @@ -0,0 +1 @@ +OSP_-_NotCourierSans_2.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jun 2009 17:47:17 -0000 1.1 +++ sources 4 Jul 2009 12:10:51 -0000 1.2 @@ -0,0 +1 @@ +723ecc5097e3ac05a4cf2e1ea6004ce9 OSP_-_NotCourierSans_2.zip From ankursinha at fedoraproject.org Sat Jul 4 12:45:18 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Sat, 4 Jul 2009 12:45:18 +0000 (UTC) Subject: comps comps-f10.xml.in, 1.253, 1.254 comps-f11.xml.in, 1.262, 1.263 comps-f12.xml.in, 1.26, 1.27 Message-ID: <20090704124518.17AAF11C02C3@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30235 Modified Files: comps-f10.xml.in comps-f11.xml.in comps-f12.xml.in Log Message: * Sat July 4 2009 Ankur Sinha - added oflb-notcouriersans-fonts to comps Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.253 retrieving revision 1.254 diff -u -p -r1.253 -r1.254 --- comps-f10.xml.in 30 Jun 2009 14:17:47 -0000 1.253 +++ comps-f10.xml.in 4 Jul 2009 12:44:47 -0000 1.254 @@ -1505,6 +1505,7 @@ mona-fonts-VLGothic myanmar3-unicode-fonts nafees-web-naskh-fonts + oflb-notcouriersans-fonts oldstandard-sfd-fonts roadstencil-fonts samyak-fonts-devanagari Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.262 retrieving revision 1.263 diff -u -p -r1.262 -r1.263 --- comps-f11.xml.in 30 Jun 2009 14:17:47 -0000 1.262 +++ comps-f11.xml.in 4 Jul 2009 12:44:47 -0000 1.263 @@ -1785,6 +1785,7 @@ myanmar3-unicode-fonts nafees-web-naskh-fonts oflb-goudy-bookletter-1911-fonts + oflb-notcouriersans-fonts oflb-riordonfancy-fonts oldstandard-sfd-fonts openoffice.org-opensymbol-fonts Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- comps-f12.xml.in 3 Jul 2009 11:49:28 -0000 1.26 +++ comps-f12.xml.in 4 Jul 2009 12:44:47 -0000 1.27 @@ -1802,6 +1802,7 @@ myanmar3-unicode-fonts nafees-web-naskh-fonts oflb-goudy-bookletter-1911-fonts + oflb-notcouriersans-fonts oflb-riordonfancy-fonts oldstandard-sfd-fonts openoffice.org-opensymbol-fonts From allisson at fedoraproject.org Sat Jul 4 14:28:06 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Sat, 4 Jul 2009 14:28:06 +0000 (UTC) Subject: rpms/siege/devel import.log, NONE, 1.1 siege-2.69-good.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 siege.spec, 1.8, 1.9 sources, 1.4, 1.5 siege-2.65-good.patch, 1.1, NONE Message-ID: <20090704142806.AF1B911C02C3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/siege/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18628/devel Modified Files: .cvsignore siege.spec sources Added Files: import.log siege-2.69-good.patch Removed Files: siege-2.65-good.patch Log Message: Update to 2.69. --- NEW FILE import.log --- siege-2_69-1_fc11:HEAD:siege-2.69-1.fc11.src.rpm:1246717645 siege-2.69-good.patch: --- NEW FILE siege-2.69-good.patch --- diff -up siege-2.69/doc/Makefile.in.good siege-2.69/doc/Makefile.in --- siege-2.69/doc/Makefile.in.good 2009-07-04 11:12:24.411980518 -0300 +++ siege-2.69/doc/Makefile.in 2009-07-04 11:13:19.914733285 -0300 @@ -498,32 +498,32 @@ uninstall-man: uninstall-man1 uninstall- install-exec-hook: - @if test -f $(SIEGERC); then \ - if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ - else \ - echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ - echo "#####################################################"; \ - echo "WARNING: File $(SIEGERC) already exists."; \ - echo " A new resource file has been installed as"; \ - echo " $(SIEGERC).new. You may want to"; \ - echo " consider using the newer version in order to"; \ - echo " take advantage of any new features."; \ - echo "#####################################################"; \ - fi; \ - else \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ - fi - @if test -f $(URLSTXT); then \ - if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ - else \ - echo "WARNING: File $(URLSTXT) already exists."; \ - echo " It was NOT replaced with this installation."; \ - fi; \ - else \ - $(mkinstalldirs) $(sysconfdir); \ - $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ - fi + #@if test -f $(SIEGERC); then \ + # if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ + # else \ + # echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ + # echo "#####################################################"; \ + # echo "WARNING: File $(SIEGERC) already exists."; \ + # echo " A new resource file has been installed as"; \ + # echo " $(SIEGERC).new. You may want to"; \ + # echo " consider using the newer version in order to"; \ + # echo " take advantage of any new features."; \ + # echo "#####################################################"; \ + # fi; \ + #else \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ + #fi + #@if test -f $(URLSTXT); then \ + # if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ + # else \ + # echo "WARNING: File $(URLSTXT) already exists."; \ + # echo " It was NOT replaced with this installation."; \ + # fi; \ + #else \ + # $(mkinstalldirs) $(sysconfdir); \ + # $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ + #fi uninstall: rm -f $(SIEGERC) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/siege/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 May 2008 02:52:06 -0000 1.4 +++ .cvsignore 4 Jul 2009 14:28:06 -0000 1.5 @@ -1 +1 @@ -siege-2.67.tar.gz +siege-2.69.tar.gz Index: siege.spec =================================================================== RCS file: /cvs/pkgs/rpms/siege/devel/siege.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- siege.spec 26 Feb 2009 00:55:58 -0000 1.8 +++ siege.spec 4 Jul 2009 14:28:06 -0000 1.9 @@ -1,13 +1,13 @@ Name: siege -Version: 2.67 -Release: 3%{?dist} -Summary: Siege is an http regression testing and benchmarking utility +Version: 2.69 +Release: 1%{?dist} +Summary: HTTP regression testing and benchmarking utility Group: Development/Tools License: GPLv2+ URL: http://www.joedog.org/JoeDog/Siege Source0: ftp://ftp.joedog.org/pub/siege/%{name}-%{version}.tar.gz -Patch0: siege-2.65-good.patch +Patch0: siege-2.69-good.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel @@ -26,16 +26,19 @@ simulated users. Those users place the w %build -%configure +%configure --sysconfdir=/etc/siege make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# Create /etc/urls.txt -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir} -install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/ +# Create /etc/siege/urls.txt +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/siege +install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/siege/ +# Create /etc/siege/siegerc +install -m 644 doc/siegerc $RPM_BUILD_ROOT%{_sysconfdir}/siege/ + %clean rm -rf $RPM_BUILD_ROOT @@ -54,10 +57,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/siege2csv.1.gz %{_mandir}/man5/urls_txt.5.gz %{_mandir}/man7/layingsiege.7.gz -#%{_sysconfdir}/urls.txt -%config(noreplace) %{_sysconfdir}/urls.txt +%dir %{_sysconfdir}/siege +%config(noreplace) %{_sysconfdir}/siege/urls.txt +%config(noreplace) %{_sysconfdir}/siege/siegerc %changelog +* Sat Jul 4 2009 Allisson Azevedo 2.69-1 +- Update to 2.69 +- Update Makefile.in patch + * Wed Feb 25 2009 Fedora Release Engineering - 2.67-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/siege/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 May 2008 02:52:06 -0000 1.4 +++ sources 4 Jul 2009 14:28:06 -0000 1.5 @@ -1 +1 @@ -ea7b07b4323c2ae13a070e85fad18bbe siege-2.67.tar.gz +77190ad255dfa14232137d03fd0d994b siege-2.69.tar.gz --- siege-2.65-good.patch DELETED --- From pbrobinson at fedoraproject.org Sat Jul 4 14:41:54 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 4 Jul 2009 14:41:54 +0000 (UTC) Subject: rpms/bognor-regis/devel .cvsignore, 1.2, 1.3 bognor-regis.spec, 1.1, 1.2 sources, 1.2, 1.3 import.log, 1.1, NONE Message-ID: <20090704144155.1168811C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21847 Modified Files: .cvsignore bognor-regis.spec sources Removed Files: import.log Log Message: - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 Jun 2009 18:45:19 -0000 1.2 +++ .cvsignore 4 Jul 2009 14:41:23 -0000 1.3 @@ -1 +1 @@ -bognor-regis-0.4.5.tar.bz2 +BOGNOR_0_4_6.tar.bz2 Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bognor-regis.spec 23 Jun 2009 18:45:19 -0000 1.1 +++ bognor-regis.spec 4 Jul 2009 14:41:23 -0000 1.2 @@ -1,15 +1,12 @@ -# tarball is currently extracted from the git archive to give proper %{name}-%{version} -# http://git.moblin.org/cgit.cgi/%{name}/snapshot/BOGNOR-%{version}.tar.bz2 - Name: bognor-regis -Version: 0.4.5 -Release: 2%{?dist} +Version: 0.4.6 +Release: 1%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia License: GPLv2 URL: http://www.moblin.org/ -Source0: %{name}-%{version}.tar.bz2 +Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/BOGNOR_0_4_6.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -36,7 +33,7 @@ Requires: pkgconfig Files for development with %{name}. %prep -%setup -q +%setup -q -n BOGNOR_0_4_6 %build ./autogen.sh @@ -72,6 +69,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Sat Jul 4 2009 Peter Robinson 0.4.6-1 +- New upstream release + * Thu Jun 18 2009 Peter Robinson 0.4.5-2 - Fix license Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Jun 2009 18:45:19 -0000 1.2 +++ sources 4 Jul 2009 14:41:23 -0000 1.3 @@ -1 +1 @@ -98da8af1a9decb73904233d022169e9c bognor-regis-0.4.5.tar.bz2 +c41b172f57dfbed51a3d30535949f3f9 BOGNOR_0_4_6.tar.bz2 --- import.log DELETED --- From allisson at fedoraproject.org Sat Jul 4 14:42:53 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Sat, 4 Jul 2009 14:42:53 +0000 (UTC) Subject: rpms/siege/F-11 import.log, NONE, 1.1 siege-2.69-good.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 siege.spec, 1.8, 1.9 sources, 1.4, 1.5 siege-2.65-good.patch, 1.1, NONE Message-ID: <20090704144253.409A411C02C3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/siege/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22244/F-11 Modified Files: .cvsignore siege.spec sources Added Files: import.log siege-2.69-good.patch Removed Files: siege-2.65-good.patch Log Message: Update to 2.69 --- NEW FILE import.log --- siege-2_69-1_fc11:F-11:siege-2.69-1.fc11.src.rpm:1246718500 siege-2.69-good.patch: --- NEW FILE siege-2.69-good.patch --- diff -up siege-2.69/doc/Makefile.in.good siege-2.69/doc/Makefile.in --- siege-2.69/doc/Makefile.in.good 2009-07-04 11:12:24.411980518 -0300 +++ siege-2.69/doc/Makefile.in 2009-07-04 11:13:19.914733285 -0300 @@ -498,32 +498,32 @@ uninstall-man: uninstall-man1 uninstall- install-exec-hook: - @if test -f $(SIEGERC); then \ - if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ - else \ - echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ - echo "#####################################################"; \ - echo "WARNING: File $(SIEGERC) already exists."; \ - echo " A new resource file has been installed as"; \ - echo " $(SIEGERC).new. You may want to"; \ - echo " consider using the newer version in order to"; \ - echo " take advantage of any new features."; \ - echo "#####################################################"; \ - fi; \ - else \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ - fi - @if test -f $(URLSTXT); then \ - if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ - else \ - echo "WARNING: File $(URLSTXT) already exists."; \ - echo " It was NOT replaced with this installation."; \ - fi; \ - else \ - $(mkinstalldirs) $(sysconfdir); \ - $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ - fi + #@if test -f $(SIEGERC); then \ + # if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ + # else \ + # echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ + # echo "#####################################################"; \ + # echo "WARNING: File $(SIEGERC) already exists."; \ + # echo " A new resource file has been installed as"; \ + # echo " $(SIEGERC).new. You may want to"; \ + # echo " consider using the newer version in order to"; \ + # echo " take advantage of any new features."; \ + # echo "#####################################################"; \ + # fi; \ + #else \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ + #fi + #@if test -f $(URLSTXT); then \ + # if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ + # else \ + # echo "WARNING: File $(URLSTXT) already exists."; \ + # echo " It was NOT replaced with this installation."; \ + # fi; \ + #else \ + # $(mkinstalldirs) $(sysconfdir); \ + # $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ + #fi uninstall: rm -f $(SIEGERC) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 May 2008 02:52:06 -0000 1.4 +++ .cvsignore 4 Jul 2009 14:42:53 -0000 1.5 @@ -1 +1 @@ -siege-2.67.tar.gz +siege-2.69.tar.gz Index: siege.spec =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-11/siege.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- siege.spec 26 Feb 2009 00:55:58 -0000 1.8 +++ siege.spec 4 Jul 2009 14:42:53 -0000 1.9 @@ -1,13 +1,13 @@ Name: siege -Version: 2.67 -Release: 3%{?dist} -Summary: Siege is an http regression testing and benchmarking utility +Version: 2.69 +Release: 1%{?dist} +Summary: HTTP regression testing and benchmarking utility Group: Development/Tools License: GPLv2+ URL: http://www.joedog.org/JoeDog/Siege Source0: ftp://ftp.joedog.org/pub/siege/%{name}-%{version}.tar.gz -Patch0: siege-2.65-good.patch +Patch0: siege-2.69-good.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel @@ -26,16 +26,19 @@ simulated users. Those users place the w %build -%configure +%configure --sysconfdir=/etc/siege make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# Create /etc/urls.txt -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir} -install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/ +# Create /etc/siege/urls.txt +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/siege +install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/siege/ +# Create /etc/siege/siegerc +install -m 644 doc/siegerc $RPM_BUILD_ROOT%{_sysconfdir}/siege/ + %clean rm -rf $RPM_BUILD_ROOT @@ -54,10 +57,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/siege2csv.1.gz %{_mandir}/man5/urls_txt.5.gz %{_mandir}/man7/layingsiege.7.gz -#%{_sysconfdir}/urls.txt -%config(noreplace) %{_sysconfdir}/urls.txt +%dir %{_sysconfdir}/siege +%config(noreplace) %{_sysconfdir}/siege/urls.txt +%config(noreplace) %{_sysconfdir}/siege/siegerc %changelog +* Sat Jul 4 2009 Allisson Azevedo 2.69-1 +- Update to 2.69 +- Update Makefile.in patch + * Wed Feb 25 2009 Fedora Release Engineering - 2.67-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 May 2008 02:52:06 -0000 1.4 +++ sources 4 Jul 2009 14:42:53 -0000 1.5 @@ -1 +1 @@ -ea7b07b4323c2ae13a070e85fad18bbe siege-2.67.tar.gz +77190ad255dfa14232137d03fd0d994b siege-2.69.tar.gz --- siege-2.65-good.patch DELETED --- From allisson at fedoraproject.org Sat Jul 4 14:56:39 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Sat, 4 Jul 2009 14:56:39 +0000 (UTC) Subject: rpms/siege/F-10 import.log, NONE, 1.1 siege-2.69-good.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 siege.spec, 1.6, 1.7 sources, 1.4, 1.5 siege-2.65-good.patch, 1.1, NONE Message-ID: <20090704145639.928B211C02C3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/siege/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24071/F-10 Modified Files: .cvsignore siege.spec sources Added Files: import.log siege-2.69-good.patch Removed Files: siege-2.65-good.patch Log Message: Update to 2.69. --- NEW FILE import.log --- siege-2_69-1_fc11:F-10:siege-2.69-1.fc11.src.rpm:1246719040 siege-2.69-good.patch: --- NEW FILE siege-2.69-good.patch --- diff -up siege-2.69/doc/Makefile.in.good siege-2.69/doc/Makefile.in --- siege-2.69/doc/Makefile.in.good 2009-07-04 11:12:24.411980518 -0300 +++ siege-2.69/doc/Makefile.in 2009-07-04 11:13:19.914733285 -0300 @@ -498,32 +498,32 @@ uninstall-man: uninstall-man1 uninstall- install-exec-hook: - @if test -f $(SIEGERC); then \ - if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ - else \ - echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ - echo "#####################################################"; \ - echo "WARNING: File $(SIEGERC) already exists."; \ - echo " A new resource file has been installed as"; \ - echo " $(SIEGERC).new. You may want to"; \ - echo " consider using the newer version in order to"; \ - echo " take advantage of any new features."; \ - echo "#####################################################"; \ - fi; \ - else \ - $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ - fi - @if test -f $(URLSTXT); then \ - if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ - else \ - echo "WARNING: File $(URLSTXT) already exists."; \ - echo " It was NOT replaced with this installation."; \ - fi; \ - else \ - $(mkinstalldirs) $(sysconfdir); \ - $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ - fi + #@if test -f $(SIEGERC); then \ + # if cmp -s $(srcdir)/siegerc $(SIEGERC); then echo ""; \ + # else \ + # echo ' $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new'; \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC).new; \ + # echo "#####################################################"; \ + # echo "WARNING: File $(SIEGERC) already exists."; \ + # echo " A new resource file has been installed as"; \ + # echo " $(SIEGERC).new. You may want to"; \ + # echo " consider using the newer version in order to"; \ + # echo " take advantage of any new features."; \ + # echo "#####################################################"; \ + # fi; \ + #else \ + # $(INSTALL_DATA) $(srcdir)/siegerc $(SIEGERC); \ + #fi + #@if test -f $(URLSTXT); then \ + # if cmp -s $(srcdir)/siegerc $(URLSTXT); then echo ""; \ + # else \ + # echo "WARNING: File $(URLSTXT) already exists."; \ + # echo " It was NOT replaced with this installation."; \ + # fi; \ + #else \ + # $(mkinstalldirs) $(sysconfdir); \ + # $(INSTALL_DATA) $(srcdir)/urls.txt $(URLSTXT); \ + #fi uninstall: rm -f $(SIEGERC) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 May 2008 02:52:06 -0000 1.4 +++ .cvsignore 4 Jul 2009 14:56:39 -0000 1.5 @@ -1 +1 @@ -siege-2.67.tar.gz +siege-2.69.tar.gz Index: siege.spec =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-10/siege.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- siege.spec 17 May 2008 02:52:06 -0000 1.6 +++ siege.spec 4 Jul 2009 14:56:39 -0000 1.7 @@ -1,13 +1,13 @@ Name: siege -Version: 2.67 +Version: 2.69 Release: 1%{?dist} -Summary: Siege is an http regression testing and benchmarking utility +Summary: HTTP regression testing and benchmarking utility Group: Development/Tools License: GPLv2+ URL: http://www.joedog.org/JoeDog/Siege Source0: ftp://ftp.joedog.org/pub/siege/%{name}-%{version}.tar.gz -Patch0: siege-2.65-good.patch +Patch0: siege-2.69-good.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel @@ -26,16 +26,19 @@ simulated users. Those users place the w %build -%configure +%configure --sysconfdir=/etc/siege make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# Create /etc/urls.txt -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir} -install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/ +# Create /etc/siege/urls.txt +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/siege +install -m 644 doc/urls.txt $RPM_BUILD_ROOT%{_sysconfdir}/siege/ +# Create /etc/siege/siegerc +install -m 644 doc/siegerc $RPM_BUILD_ROOT%{_sysconfdir}/siege/ + %clean rm -rf $RPM_BUILD_ROOT @@ -54,10 +57,14 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/siege2csv.1.gz %{_mandir}/man5/urls_txt.5.gz %{_mandir}/man7/layingsiege.7.gz -#%{_sysconfdir}/urls.txt -%config(noreplace) %{_sysconfdir}/urls.txt +%dir %{_sysconfdir}/siege +%config(noreplace) %{_sysconfdir}/siege/urls.txt +%config(noreplace) %{_sysconfdir}/siege/siegerc %changelog +* Sat Jul 4 2009 Allisson Azevedo 2.69-1 +- Update to 2.69 +- Update Makefile.in patch * Fri May 16 2008 Allisson Azevedo 2.67-1 - Update to 2.67 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/siege/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 May 2008 02:52:06 -0000 1.4 +++ sources 4 Jul 2009 14:56:39 -0000 1.5 @@ -1 +1 @@ -ea7b07b4323c2ae13a070e85fad18bbe siege-2.67.tar.gz +77190ad255dfa14232137d03fd0d994b siege-2.69.tar.gz --- siege-2.65-good.patch DELETED --- From pkgdb at fedoraproject.org Sat Jul 4 16:16:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:16:53 +0000 Subject: [pkgdb] awesfx: chkr has requested watchcommits Message-ID: <20090704161654.18CFF10F896@bastion2.fedora.phx.redhat.com> chkr has requested the watchcommits acl on awesfx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sat Jul 4 16:17:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:17:01 +0000 Subject: [pkgdb] awesfx: chkr has requested watchbugzilla Message-ID: <20090704161701.A1C0310F8A2@bastion2.fedora.phx.redhat.com> chkr has requested the watchbugzilla acl on awesfx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sat Jul 4 16:17:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:17:04 +0000 Subject: [pkgdb] awesfx: chkr has requested commit Message-ID: <20090704161704.464A010F8A7@bastion2.fedora.phx.redhat.com> chkr has requested the commit acl on awesfx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sat Jul 4 16:17:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:17:11 +0000 Subject: [pkgdb] awesfx: chkr has requested watchbugzilla Message-ID: <20090704161711.D05FA10F8A9@bastion2.fedora.phx.redhat.com> chkr has requested the watchbugzilla acl on awesfx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sat Jul 4 16:17:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:17:14 +0000 Subject: [pkgdb] awesfx: chkr has requested watchcommits Message-ID: <20090704161714.384CF10F8AD@bastion2.fedora.phx.redhat.com> chkr has requested the watchcommits acl on awesfx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sat Jul 4 16:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 16:17:16 +0000 Subject: [pkgdb] awesfx: chkr has requested commit Message-ID: <20090704161716.A692110F8B2@bastion2.fedora.phx.redhat.com> chkr has requested the commit acl on awesfx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From awjb at fedoraproject.org Sat Jul 4 16:22:52 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sat, 4 Jul 2009 16:22:52 +0000 (UTC) Subject: rpms/claws-mail/F-11 .cvsignore, 1.24, 1.25 claws-mail.spec, 1.43, 1.44 sources, 1.24, 1.25 claws-mail-gssapi.patch, 1.1, NONE Message-ID: <20090704162252.AEE5811C02C3@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/claws-mail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10816/F-11 Modified Files: .cvsignore claws-mail.spec sources Removed Files: claws-mail-gssapi.patch Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-11/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 27 Mar 2009 19:57:24 -0000 1.24 +++ .cvsignore 4 Jul 2009 16:22:22 -0000 1.25 @@ -1 +1 @@ -claws-mail-3.7.1.tar.bz2 +claws-mail-3.7.2.tar.bz2 Index: claws-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-11/claws-mail.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- claws-mail.spec 17 Jun 2009 11:19:39 -0000 1.43 +++ claws-mail.spec 4 Jul 2009 16:22:22 -0000 1.44 @@ -1,14 +1,12 @@ Name: claws-mail -Version: 3.7.1 -Release: 2%{?dist} +Version: 3.7.2 +Release: 1%{?dist} Summary: The extended version of Sylpheed Group: Applications/Internet License: GPLv3+ URL: http://claws-mail.org -Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.1.tar.bz2 +Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.2.tar.bz2 Source1: claws-mail.desktop -# fix gssapi auth (#486422) -Patch1: claws-mail-gssapi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: flex, bison @@ -116,7 +114,6 @@ mails, verify signatures or sign and enc %prep %setup -q -%patch1 -b .gssapi %build %configure --disable-openssl --enable-ipv6 \ @@ -226,6 +223,11 @@ touch -r NEWS ${RPM_BUILD_ROOT}%{_includ %{_libdir}/claws-mail/plugins/smime.so %changelog +* Sat Jul 04 2009 Andreas Bierfert +- 3.7.2-1 +- version upgrade +- drop gssapi patch -> upstream + * Wed Jun 17 2009 Andreas Bierfert - 3.7.1-2 - fix gssapi auth (#486422) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-11/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 27 Mar 2009 19:57:24 -0000 1.24 +++ sources 4 Jul 2009 16:22:22 -0000 1.25 @@ -1 +1 @@ -8351ba15b04c1388d772ba52e41a8643 claws-mail-3.7.1.tar.bz2 +df27c2488df499d8c05646d3e101d095 claws-mail-3.7.2.tar.bz2 --- claws-mail-gssapi.patch DELETED --- From awjb at fedoraproject.org Sat Jul 4 16:22:52 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sat, 4 Jul 2009 16:22:52 +0000 (UTC) Subject: rpms/claws-mail/F-10 .cvsignore, 1.24, 1.25 claws-mail.spec, 1.42, 1.43 sources, 1.24, 1.25 claws-mail-gssapi.patch, 1.1, NONE Message-ID: <20090704162252.B284411C0489@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/claws-mail/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10816/F-10 Modified Files: .cvsignore claws-mail.spec sources Removed Files: claws-mail-gssapi.patch Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-10/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 27 Mar 2009 20:00:55 -0000 1.24 +++ .cvsignore 4 Jul 2009 16:22:21 -0000 1.25 @@ -1 +1 @@ -claws-mail-3.7.1.tar.bz2 +claws-mail-3.7.2.tar.bz2 Index: claws-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-10/claws-mail.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- claws-mail.spec 17 Jun 2009 11:19:39 -0000 1.42 +++ claws-mail.spec 4 Jul 2009 16:22:21 -0000 1.43 @@ -1,14 +1,12 @@ Name: claws-mail -Version: 3.7.1 -Release: 2%{?dist} +Version: 3.7.2 +Release: 1%{?dist} Summary: The extended version of Sylpheed Group: Applications/Internet License: GPLv3+ URL: http://claws-mail.org -Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.1.tar.bz2 +Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.2.tar.bz2 Source1: claws-mail.desktop -# fix gssapi auth (#486422) -Patch1: claws-mail-gssapi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: flex, bison @@ -116,7 +114,6 @@ mails, verify signatures or sign and enc %prep %setup -q -%patch1 -b .gssapi %build %configure --disable-openssl --enable-ipv6 \ @@ -226,6 +223,11 @@ touch -r NEWS ${RPM_BUILD_ROOT}%{_includ %{_libdir}/claws-mail/plugins/smime.so %changelog +* Sat Jul 04 2009 Andreas Bierfert +- 3.7.2-1 +- version upgrade +- drop gssapi patch -> upstream + * Wed Jun 17 2009 Andreas Bierfert - 3.7.1-2 - fix gssapi auth (#486422) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/F-10/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 27 Mar 2009 20:00:55 -0000 1.24 +++ sources 4 Jul 2009 16:22:21 -0000 1.25 @@ -1 +1 @@ -8351ba15b04c1388d772ba52e41a8643 claws-mail-3.7.1.tar.bz2 +df27c2488df499d8c05646d3e101d095 claws-mail-3.7.2.tar.bz2 --- claws-mail-gssapi.patch DELETED --- From awjb at fedoraproject.org Sat Jul 4 16:22:52 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sat, 4 Jul 2009 16:22:52 +0000 (UTC) Subject: rpms/claws-mail/devel .cvsignore, 1.24, 1.25 claws-mail.spec, 1.43, 1.44 sources, 1.24, 1.25 claws-mail-gssapi.patch, 1.1, NONE Message-ID: <20090704162252.B617F11C0492@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/claws-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10816/devel Modified Files: .cvsignore claws-mail.spec sources Removed Files: claws-mail-gssapi.patch Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 27 Mar 2009 19:57:24 -0000 1.24 +++ .cvsignore 4 Jul 2009 16:22:22 -0000 1.25 @@ -1 +1 @@ -claws-mail-3.7.1.tar.bz2 +claws-mail-3.7.2.tar.bz2 Index: claws-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/devel/claws-mail.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- claws-mail.spec 17 Jun 2009 11:16:49 -0000 1.43 +++ claws-mail.spec 4 Jul 2009 16:22:22 -0000 1.44 @@ -1,14 +1,12 @@ Name: claws-mail -Version: 3.7.1 -Release: 2%{?dist} +Version: 3.7.2 +Release: 1%{?dist} Summary: The extended version of Sylpheed Group: Applications/Internet License: GPLv3+ URL: http://claws-mail.org -Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.1.tar.bz2 +Source0: http://downloads.sourceforge.net/sylpheed-claws/claws-mail-3.7.2.tar.bz2 Source1: claws-mail.desktop -# fix gssapi auth (#486422) -Patch1: claws-mail-gssapi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: flex, bison @@ -116,7 +114,6 @@ mails, verify signatures or sign and enc %prep %setup -q -%patch1 -b .gssapi %build %configure --disable-openssl --enable-ipv6 \ @@ -226,6 +223,11 @@ touch -r NEWS ${RPM_BUILD_ROOT}%{_includ %{_libdir}/claws-mail/plugins/smime.so %changelog +* Sat Jul 04 2009 Andreas Bierfert +- 3.7.2-1 +- version upgrade +- drop gssapi patch -> upstream + * Wed Jun 17 2009 Andreas Bierfert - 3.7.1-2 - fix gssapi auth (#486422) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 27 Mar 2009 19:57:24 -0000 1.24 +++ sources 4 Jul 2009 16:22:22 -0000 1.25 @@ -1 +1 @@ -8351ba15b04c1388d772ba52e41a8643 claws-mail-3.7.1.tar.bz2 +df27c2488df499d8c05646d3e101d095 claws-mail-3.7.2.tar.bz2 --- claws-mail-gssapi.patch DELETED --- From bochecha at fedoraproject.org Sat Jul 4 16:39:29 2009 From: bochecha at fedoraproject.org (Mathieu Bridon) Date: Sat, 4 Jul 2009 16:39:29 +0000 (UTC) Subject: rpms/openlayers/devel .cvsignore, 1.2, 1.3 openlayers.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090704163929.5827311C02C3@cvs1.fedora.phx.redhat.com> Author: bochecha Update of /cvs/pkgs/rpms/openlayers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14292 Modified Files: .cvsignore openlayers.spec sources Log Message: Update to 2.8. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Oct 2008 14:27:25 -0000 1.2 +++ .cvsignore 4 Jul 2009 16:38:59 -0000 1.3 @@ -1 +1 @@ -OpenLayers-2.7.tar.gz +OpenLayers-2.8.tar.gz Index: openlayers.spec =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/devel/openlayers.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openlayers.spec 26 Feb 2009 08:33:42 -0000 1.2 +++ openlayers.spec 4 Jul 2009 16:38:59 -0000 1.3 @@ -1,6 +1,6 @@ Name: openlayers -Version: 2.7 -Release: 3%{?dist} +Version: 2.8 +Release: 1%{?dist} Summary: A JavaScript library for displaying map data in web browsers Group: Applications/Publishing License: BSD @@ -138,6 +138,10 @@ rm -rf %{buildroot} %{_datadir}/%{name}/* %changelog +* Sun Jun 28 2009 Mathieu Bridon - 2.8-1 +- New upstream version: 2.8 +- see http://trac.openlayers.org/wiki/Release/2.8/Notes + * Thu Feb 26 2009 Fedora Release Engineering - 2.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Oct 2008 14:27:26 -0000 1.2 +++ sources 4 Jul 2009 16:38:59 -0000 1.3 @@ -1 +1 @@ -c0d288a7b935e8b940b0b850ef135c95 OpenLayers-2.7.tar.gz +660e279a00efaa6d058f5570425507fd OpenLayers-2.8.tar.gz From bochecha at fedoraproject.org Sat Jul 4 16:50:05 2009 From: bochecha at fedoraproject.org (Mathieu Bridon) Date: Sat, 4 Jul 2009 16:50:05 +0000 (UTC) Subject: rpms/openlayers/F-11 .cvsignore, 1.2, 1.3 openlayers.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090704165005.E004411C02C3@cvs1.fedora.phx.redhat.com> Author: bochecha Update of /cvs/pkgs/rpms/openlayers/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16630 Modified Files: .cvsignore openlayers.spec sources Log Message: Update to 2.8. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Oct 2008 14:27:25 -0000 1.2 +++ .cvsignore 4 Jul 2009 16:49:35 -0000 1.3 @@ -1 +1 @@ -OpenLayers-2.7.tar.gz +OpenLayers-2.8.tar.gz Index: openlayers.spec =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/F-11/openlayers.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openlayers.spec 26 Feb 2009 08:33:42 -0000 1.2 +++ openlayers.spec 4 Jul 2009 16:49:35 -0000 1.3 @@ -1,6 +1,6 @@ Name: openlayers -Version: 2.7 -Release: 3%{?dist} +Version: 2.8 +Release: 1%{?dist} Summary: A JavaScript library for displaying map data in web browsers Group: Applications/Publishing License: BSD @@ -138,6 +138,10 @@ rm -rf %{buildroot} %{_datadir}/%{name}/* %changelog +* Sun Jun 28 2009 Mathieu Bridon - 2.8-1 +- New upstream version: 2.8 +- see http://trac.openlayers.org/wiki/Release/2.8/Notes + * Thu Feb 26 2009 Fedora Release Engineering - 2.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Oct 2008 14:27:26 -0000 1.2 +++ sources 4 Jul 2009 16:49:35 -0000 1.3 @@ -1 +1 @@ -c0d288a7b935e8b940b0b850ef135c95 OpenLayers-2.7.tar.gz +660e279a00efaa6d058f5570425507fd OpenLayers-2.8.tar.gz From mtasaka at fedoraproject.org Sat Jul 4 17:12:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 4 Jul 2009 17:12:56 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.381, 1.382 jd.spec, 1.441, 1.442 sources, 1.382, 1.383 Message-ID: <20090704171256.7991B11C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21331/F-10 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - rev 2925 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.381 retrieving revision 1.382 diff -u -p -r1.381 -r1.382 --- .cvsignore 28 Jun 2009 19:54:56 -0000 1.381 +++ .cvsignore 4 Jul 2009 17:12:26 -0000 1.382 @@ -1 +1 @@ -jd-2.4.1-beta090628.tgz +jd-2.4.1-svn2925_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.441 retrieving revision 1.442 diff -u -p -r1.441 -r1.442 --- jd.spec 28 Jun 2009 19:54:56 -0000 1.441 +++ jd.spec 4 Jul 2009 17:12:26 -0000 1.442 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag beta090628 +%define strtag svn2925_trunk %define repoid 40837 # Define this if this is pre-version %define pre_release 1 @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 5 2009 Mamoru Tasaka +- rev 2925 + * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- sources 28 Jun 2009 19:54:56 -0000 1.382 +++ sources 4 Jul 2009 17:12:26 -0000 1.383 @@ -1 +1 @@ -b7f7a2e8054c20bca085b4f1d59a9a32 jd-2.4.1-beta090628.tgz +24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz From mtasaka at fedoraproject.org Sat Jul 4 17:12:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 4 Jul 2009 17:12:56 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.375, 1.376 jd.spec, 1.437, 1.438 sources, 1.376, 1.377 Message-ID: <20090704171256.B117B11C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21331/F-11 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - rev 2925 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.375 retrieving revision 1.376 diff -u -p -r1.375 -r1.376 --- .cvsignore 28 Jun 2009 19:54:56 -0000 1.375 +++ .cvsignore 4 Jul 2009 17:12:26 -0000 1.376 @@ -1 +1 @@ -jd-2.4.1-beta090628.tgz +jd-2.4.1-svn2925_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.437 retrieving revision 1.438 diff -u -p -r1.437 -r1.438 --- jd.spec 28 Jun 2009 19:54:56 -0000 1.437 +++ jd.spec 4 Jul 2009 17:12:26 -0000 1.438 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag beta090628 +%define strtag svn2925_trunk %define repoid 40837 # Define this if this is pre-version %define pre_release 1 @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 5 2009 Mamoru Tasaka +- rev 2925 + * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.376 retrieving revision 1.377 diff -u -p -r1.376 -r1.377 --- sources 28 Jun 2009 19:54:57 -0000 1.376 +++ sources 4 Jul 2009 17:12:26 -0000 1.377 @@ -1 +1 @@ -b7f7a2e8054c20bca085b4f1d59a9a32 jd-2.4.1-beta090628.tgz +24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz From mtasaka at fedoraproject.org Sat Jul 4 17:12:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 4 Jul 2009 17:12:56 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.372, 1.373 jd.spec, 1.434, 1.435 sources, 1.373, 1.374 Message-ID: <20090704171256.F2BDC11C02C3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21331/devel Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - rev 2925 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.372 retrieving revision 1.373 diff -u -p -r1.372 -r1.373 --- .cvsignore 28 Jun 2009 19:54:57 -0000 1.372 +++ .cvsignore 4 Jul 2009 17:12:26 -0000 1.373 @@ -1 +1 @@ -jd-2.4.1-beta090628.tgz +jd-2.4.1-svn2925_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.434 retrieving revision 1.435 diff -u -p -r1.434 -r1.435 --- jd.spec 28 Jun 2009 19:54:57 -0000 1.434 +++ jd.spec 4 Jul 2009 17:12:26 -0000 1.435 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag beta090628 +%define strtag svn2925_trunk %define repoid 40837 # Define this if this is pre-version %define pre_release 1 @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 5 2009 Mamoru Tasaka +- rev 2925 + * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.373 retrieving revision 1.374 diff -u -p -r1.373 -r1.374 --- sources 28 Jun 2009 19:54:57 -0000 1.373 +++ sources 4 Jul 2009 17:12:26 -0000 1.374 @@ -1 +1 @@ -b7f7a2e8054c20bca085b4f1d59a9a32 jd-2.4.1-beta090628.tgz +24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz From kkofler at fedoraproject.org Sat Jul 4 17:18:19 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sat, 4 Jul 2009 17:18:19 +0000 (UTC) Subject: rpms/kdegames/devel kdegames-4.2.95-trademarks.patch, NONE, 1.1 kdegames.spec, 1.133, 1.134 kdegames-4.2.95-kbattleship-ktron.patch, 1.1, NONE Message-ID: <20090704171820.0A73C11C02C3@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22626/devel Modified Files: kdegames.spec Added Files: kdegames-4.2.95-trademarks.patch Removed Files: kdegames-4.2.95-kbattleship-ktron.patch Log Message: * Sat Jul 04 2009 Kevin Kofler - 4.2.95-2 - reenable and rebrand the ship sinking game and the snake duel game (#502359) kdegames-4.2.95-trademarks.patch: --- NEW FILE kdegames-4.2.95-trademarks.patch --- diff -ur kdegames-4.2.95/doc/kbattleship/index.docbook kdegames-4.2.95-trademarks/doc/kbattleship/index.docbook --- kdegames-4.2.95/doc/kbattleship/index.docbook 2009-02-26 10:11:22.000000000 +0100 +++ kdegames-4.2.95-trademarks/doc/kbattleship/index.docbook 2009-07-04 18:48:45.000000000 +0200 @@ -1,6 +1,6 @@ + KSinkShips"> @@ -8,7 +8,7 @@ -The &kbattleship; Handbook +The &kappname; Handbook @@ -57,16 +57,17 @@ -&kbattleship; is a network-enabled implementation of the famous Battle Ship game for &kde;. +&kappname; is a network-enabled implementation of the famous ship sinking game for &kde;. KDE kdegames -kbattleship +ksinkships game -battleship -battle +sinkships +sink +ships @@ -76,7 +77,7 @@ Gametype:Strategy, Board Number of possible players:Two -&kbattleship; is a Battle Ship game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others +&kappname; is a ship sinking game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. @@ -85,14 +86,14 @@ How to Play Objective:Sink all of the opponent???s ships before the opponent sink all the ships of your own. -If you want to play &kbattleship;, you will need two players, either play +If you want to play &kappname;, you will need two players, either play against the computer or in a network against another player. To play against your computer, first select the difficulty level on the right of the status bar, and then select Single player on the welcome screen, or directly on the Game menu. To start a network game, one player has to host the game by selecting Host network game on the welcome screen, or choosing Game Host Game.... A dialog box opens which asks for a Nickname: and Port:. Normally, -&kbattleship; will suggest your full name, but you can enter any string +&kappname; will suggest your full name, but you can enter any string you want. The predefined port should be ok. However, if you encounter problems, you can choose any other free port above 1024. @@ -186,10 +187,10 @@ Multiplayer support -&kbattleship; can be played online on any GGZ Gaming Zone site. You can +&kappname; can be played online on any GGZ Gaming Zone site. You can find other players there, and compete against them. Just enter one -of the available Battleship rooms with any GGZ core client, such as -kggz, and &kbattleship; will be offered to you as your favourite +of the available rooms with any GGZ core client, such as +kggz, and &kappname; will be offered to you as your favourite game client. If a GGZ core client is installed, you can try out GGZ by visiting the community site. @@ -197,7 +198,7 @@ Remember that when playing online, the opponent might be either a human player or a computer player. The latter one might behave -differently from the computer player included in &kbattleship;. +differently from the computer player included in &kappname;. @@ -314,7 +315,7 @@ -Exit &kbattleship; +Exit &kappname; @@ -394,7 +395,7 @@ -Configure the keyboard shortcuts used by &kbattleship;. +Configure the keyboard shortcuts used by &kappname;. @@ -408,7 +409,7 @@ -Configure the toolbars provided by &kbattleship;. +Configure the toolbars provided by &kappname;. @@ -437,7 +438,7 @@ -No, there is no hint system in &kbattleship;. +No, there is no hint system in &kappname;. @@ -474,7 +475,7 @@ Credits and Licenses -&kbattleship; Copyright 2000-2007 +&kappname; Copyright 2000-2007 Authors diff -ur kdegames-4.2.95/doc/ktron/index.docbook kdegames-4.2.95-trademarks/doc/ktron/index.docbook --- kdegames-4.2.95/doc/ktron/index.docbook 2009-02-26 10:11:14.000000000 +0100 +++ kdegames-4.2.95-trademarks/doc/ktron/index.docbook 2009-07-04 18:29:58.000000000 +0200 @@ -1,6 +1,6 @@ + KSnakeDuel"> @@ -61,7 +61,7 @@ -&kappname; is a simple Tron clone for &kde;, which you can +&kappname; is a simple snake duel game for &kde;, which you can play alone or against a friend. @@ -69,11 +69,12 @@ KDE kdegames -KTron +KSnakeDuel game -tron +snakeduel KSnake snake +duel @@ -81,7 +82,7 @@ Introduction -&kappname; is a simple Tron-Clone for the +&kappname; is a simple snake duel game for the K Desktop Environment. You can play &kappname; against the computer or a friend. The aim of the game is to live longer than your opponent. To do that, diff -ur kdegames-4.2.95/kbattleship/src/kbattleship.desktop kdegames-4.2.95-trademarks/kbattleship/src/kbattleship.desktop --- kdegames-4.2.95/kbattleship/src/kbattleship.desktop 2009-06-17 22:05:45.000000000 +0200 +++ kdegames-4.2.95-trademarks/kbattleship/src/kbattleship.desktop 2009-07-04 18:51:55.000000000 +0200 @@ -1,6 +1,5 @@ [Desktop Entry] -Name=KBattleship -Name[af]=Kbattleship +Name=KSinkShips Name[be]=???????????? ?????? Name[bn]=??????-?????????????????????????????? Name[cs]=Lod?? @@ -14,17 +13,16 @@ Name[ro]=B??t??lie naval?? Name[sr]=????????????????????????? Name[sr at latin]=K???podmornice -Name[sv]=Kbattleship Name[ta]=?????????????????????????????????????????? Name[tg]=K?????????? ?????????????? Name[uk]=???????????????? ?????? -Name[x-test]=xxKBattleshipxx -Name[zh_TW]=KBattleship ?????? +Name[x-test]=xxKSinkShipsxx +Name[zh_TW]=KSinkShips ?????? Exec=kbattleship -caption "%c" Icon=kbattleship Type=Application X-DocPath=kbattleship/index.html -GenericName=Battleship Game +GenericName=Ship Sinking Game GenericName[be]=???????????? ?? ???????????? ?????? GenericName[bn]=?????????????????????????????? ???????????? GenericName[ca]=Joc d'enfonsar la flota @@ -32,7 +30,6 @@ GenericName[cy]=G??m Longau Rhyfel GenericName[da]=S??nke slagskibe-spil GenericName[de]=Schiffe versenken -GenericName[el]=???????????????? Battleship GenericName[eo]=Batal??ipa ludo GenericName[es]=Juego de la batalla de naves GenericName[et]=Laevade pommitamise m??ng @@ -40,7 +37,6 @@ GenericName[fa]=???????? ?????? ??????????????? GenericName[fi]=Meritaistelupeli GenericName[fr]=Jeu de bataille navale -GenericName[ga]=Cluiche cos??il le "Battleship" GenericName[gl]=Xogo de batalla naval GenericName[he]=???????? ???????????? GenericName[hne]=????????????????????? ????????? @@ -73,7 +69,7 @@ GenericName[ta]=???????????????????????? ?????????????????????????????? GenericName[tr]=Amiral Batt?? Oyunu GenericName[uk]=?????? ?? ???????????????? ?????? -GenericName[x-test]=xxBattleship Gamexx +GenericName[x-test]=xxShip Sinking Gamexx GenericName[zh_CN]=?????????????????? GenericName[zh_TW]=???????????? Terminal=false diff -ur kdegames-4.2.95/kbattleship/src/kbattleship.protocol kdegames-4.2.95-trademarks/kbattleship/src/kbattleship.protocol --- kdegames-4.2.95/kbattleship/src/kbattleship.protocol 2009-06-23 13:13:36.000000000 +0200 +++ kdegames-4.2.95-trademarks/kbattleship/src/kbattleship.protocol 2009-07-04 18:54:07.000000000 +0200 @@ -5,27 +5,27 @@ output=none Icon=kbattleship -Description=A protocol for the game KBattleship -Description[ca]=Un protocol pel joc KBattleship -Description[da]=En protokol for spillet KBattleship -Description[de]=Ein Protokoll f??r das KBattleship-Spiel. -Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KBattleship -Description[es]=Un protocolo para el juego KBattleship -Description[et]=KBattleshipi protokoll -Description[ga]=Pr??tacal le haghaidh an chluiche KBattleship -Description[gl]=Un protocolo para o xogo KBattleship -Description[it]=Un protocollo per KBattleship -Description[nds]=En Protokoll f??r dat Speel "KBattleship" -Description[nn]=Protokoll for KBattleship -Description[pt]=Um protocolo para o jogo KBattleship -Description[pt_BR]=Um protocolo para o jogo KBattleship +Description=A protocol for the game KSinkShips +Description[ca]=Un protocol pel joc KSinkShips +Description[da]=En protokol for spillet KSinkShips +Description[de]=Ein Protokoll f??r das KSinkShips-Spiel. +Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KSinkShips +Description[es]=Un protocolo para el juego KSinkShips +Description[et]=KSinkShipsi protokoll +Description[ga]=Pr??tacal le haghaidh an chluiche KSinkShips +Description[gl]=Un protocolo para o xogo KSinkShips +Description[it]=Un protocollo per KSinkShips +Description[nds]=En Protokoll f??r dat Speel "KSinkShips" +Description[nn]=Protokoll for KSinkShips +Description[pt]=Um protocolo para o jogo KSinkShips +Description[pt_BR]=Um protocolo para o jogo KSinkShips Description[sr]=???????????????? ???? ????????????????????????? Description[sr at latin]=Protokol za K???podmornice Description[sv]=Ett protokoll f??r spelet S??nka fartyg -Description[uk]=???????????????? ?????? ?????? KBattleship -Description[x-test]=xxA protocol for the game KBattleshipxx -Description[zh_CN]=KBattleship ?????????????????? -Description[zh_TW]=KBattleship ????????????????????? +Description[uk]=???????????????? ?????? ?????? KSinkShips +Description[x-test]=xxA protocol for the game KSinkShipsxx +Description[zh_CN]=KSinkShips ?????????????????? +Description[zh_TW]=KSinkShips ????????????????????? #exec=kbattleship %u helper=true diff -ur kdegames-4.2.95/kbattleship/src/main.cpp kdegames-4.2.95-trademarks/kbattleship/src/main.cpp --- kdegames-4.2.95/kbattleship/src/main.cpp 2009-03-18 10:57:42.000000000 +0100 +++ kdegames-4.2.95-trademarks/kbattleship/src/main.cpp 2009-07-04 18:54:51.000000000 +0200 @@ -21,7 +21,7 @@ int main(int argc, char** argv) { - KAboutData aboutData("kbattleship", 0, ki18n("KBattleship"), "2.0", + KAboutData aboutData("kbattleship", 0, ki18n("KSinkShips"), "2.0", ki18n("The KDE Battleship clone"), KAboutData::License_GPL, ki18n("(c) 2000-2005 Nikolas Zimmermann, Daniel Molkentin\n" "(c) 2007 Paolo Capriotti"), KLocalizedString(), "http://games.kde.org/kbattleship" ); @@ -48,7 +48,7 @@ KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; - options.add("!+[URL]", ki18n("URL of a KBattleship game server to connect to after startup")); + options.add("!+[URL]", ki18n("URL of a KSinkShips game server to connect to after startup")); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; diff -ur kdegames-4.2.95/ktron/ktron.desktop kdegames-4.2.95-trademarks/ktron/ktron.desktop --- kdegames-4.2.95/ktron/ktron.desktop 2009-06-24 18:19:36.000000000 +0200 +++ kdegames-4.2.95-trademarks/ktron/ktron.desktop 2009-07-04 18:37:04.000000000 +0200 @@ -3,38 +3,14 @@ Exec=ktron -caption "%c" %i Icon=ktron DocPath=ktron/index.html -GenericName=Tron-like Game -GenericName[ca]=Joc similar al Tron -GenericName[da]=Tron-lignende spil -GenericName[de]=???Tron???-Spiel -GenericName[el]=???????????????? ???????????????? ???? ???? Tron -GenericName[et]=Troni moodi m??ng -GenericName[ga]=Cluiche Cos??il le Tron -GenericName[it]=Un gioco simile a Tron -GenericName[ja]=Tron ????????????????????? -GenericName[nds]=Tron-liek Speel -GenericName[nl]=Tron-achtig spel -GenericName[nn]=Tron-liknande spel -GenericName[pt]=Jogo Semelhante ao Tron -GenericName[pt_BR]=Jogo Semelhante ao Tron -GenericName[sr]=???????? ?????????? ???? ???????? -GenericName[sr at latin]=Igra nalik na tron -GenericName[sv]=Tron-liknande spel -GenericName[uk]=??????, ?????????? ???? Tron -GenericName[x-test]=xxTron-like Gamexx -GenericName[zh_CN]=?????? Tron ????????? -GenericName[zh_TW]=?????? Tron ?????? +GenericName=Snake Duel Game +GenericName[de]=Schlangenduell-Spiel +GenericName[fr]=Jeu de duel de serpents +GenericName[it]=Gioco di duello di serpenti +GenericName[x-test]=xxSnake Duel Gamexx Terminal=false -Name=KTron -Name[af]=Ktron -Name[bn]=??????-???????????? -Name[ru]=???????? -Name[sr]=????????????? -Name[sr at latin]=K???tron -Name[sv]=Ktron -Name[ta]=K?????????????????? -Name[tg]=K???????? -Name[x-test]=xxKTronxx +Name=KSnakeDuel +Name[x-test]=xxKSnakeDuelxx X-KDE-StartupNotify=true X-DCOP-ServiceType=Multi Categories=Qt;KDE;Game;ArcadeGame; diff -ur kdegames-4.2.95/ktron/main.cpp kdegames-4.2.95-trademarks/ktron/main.cpp --- kdegames-4.2.95/ktron/main.cpp 2009-02-26 10:11:10.000000000 +0100 +++ kdegames-4.2.95-trademarks/ktron/main.cpp 2009-07-04 18:41:11.000000000 +0200 @@ -41,7 +41,7 @@ int main(int argc, char* argv[]) { - KAboutData aboutData( "ktron", 0, ki18n("KTron"), + KAboutData aboutData( "ktron", 0, ki18n("KSnakeDuel"), KTRON_VERSION, description, KAboutData::License_GPL, notice); aboutData.addAuthor(ki18n("Matthias Kiefer"), ki18n("Original author"), "matthias.kiefer at gmx.de"); aboutData.addAuthor(ki18n("Benjamin Meyer"), ki18n("Various improvements"), "ben+ktron at meyerhome.net"); @@ -50,7 +50,8 @@ KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineOptions options; - options.add("ktron", ki18n("Start in KTron mode")); + // This is the default anyway, why does this need an option? -- Kevin Kofler + // options.add("ktron", ki18n("Start in KTron mode")); options.add("snake", ki18n("Start in KSnake mode")); KCmdLineArgs::addCmdLineOptions(options); diff -ur kdegames-4.2.95/ktron/player.cpp kdegames-4.2.95-trademarks/ktron/player.cpp --- kdegames-4.2.95/ktron/player.cpp 2009-04-05 21:59:49.000000000 +0200 +++ kdegames-4.2.95-trademarks/ktron/player.cpp 2009-07-04 18:33:45.000000000 +0200 @@ -92,7 +92,7 @@ { if (isComputer()) { - return i18n("KTron"); + return i18n("KSnakeDuel"); } else { diff -ur kdegames-4.2.95/README kdegames-4.2.95-trademarks/README --- kdegames-4.2.95/README 2009-01-16 16:09:32.000000000 +0100 +++ kdegames-4.2.95-trademarks/README 2009-07-04 18:58:22.000000000 +0200 @@ -25,9 +25,6 @@ Play backgammon against a local human player, via a game server or against GNU Backgammon (not included) -* kbattleship - Sink battleship of your opponents, with built-in game server. - * kblackbox Find the balls hidden in the black box by shooting laser beams! @@ -70,6 +67,15 @@ * kshisen Patience game where you take away all pieces. +* ksinkships + Sink ships of your opponents, with built-in game server. + +* ksnake + Don't bite yourself, eat apples! + +* ksnakeduel + Like ksnake, but without fruits. + * kspaceduel Two player game with shooting spaceships flying around a sun. Index: kdegames.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- kdegames.spec 30 Jun 2009 11:54:07 -0000 1.133 +++ kdegames.spec 4 Jul 2009 17:17:49 -0000 1.134 @@ -1,16 +1,14 @@ -%define trademark_issue 1 - Name: kdegames Summary: K Desktop Environment 4 - Games Epoch: 6 Version: 4.2.95 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://www.kde.org/ Group: Amusements/Games Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdegames-%{version}.tar.bz2 -Patch0: kdegames-4.2.95-kbattleship-ktron.patch +Patch0: kdegames-4.2.95-trademarks.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,7 +40,6 @@ Games for the K Desktop Environment 4, i * bovo * kapman * katomic -* kbattleship * kblackbox * kblocks * kbounce @@ -64,7 +61,9 @@ Games for the K Desktop Environment 4, i * kreversi * ksame * kshisen +* ksinkships * ksirk +* ksnakeduel / ksnake * kspaceduel * ksquares * ksudoku @@ -92,10 +91,7 @@ game applications for KDE 4. %prep %setup -q -n kdegames-%{version} - -%if %{trademark_issue} -%patch0 -p1 -b .trademark_issue -%endif +%patch0 -p1 -b .trademarks %build @@ -113,9 +109,7 @@ rm -rf %{buildroot} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %if 0%{?_skip_ggzconfig:1} -%if !%{trademark_issue} install -m644 -p -D ./kbattleship/src/module.dsc %{buildroot}%{_ggz_datadir}/kbattleship.dsc -%endif install -m644 -p -D ./kreversi/module.dsc %{buildroot}%{_ggz_datadir}/kreversi.dsc install -m644 -p -D ./ksquares/src/module.dsc %{buildroot}%{_ggz_datadir}/ksquares.dsc %endif @@ -123,9 +117,7 @@ install -m644 -p -D ./ksquares/src/modul %post %if 0%{?_skip_ggzconfig:1} -%if !%{trademark_issue} %{_ggz_config} --install --force --modfile=%{_ggz_datadir}/kbattleship.dsc ||: -%endif %{_ggz_config} --install --force --modfile=%{_ggz_datadir}/kreversi.dsc ||: %{_ggz_config} --install --force --modfile=%{_ggz_datadir}/ksquares.dsc ||: %endif @@ -153,9 +145,7 @@ fi %if 0%{?_skip_ggzconfig:1} %preun if [ $1 -eq 0 ]; then -%if !%{trademark_issue} %{_ggz_config} --remove --modfile=%{_ggz_datadir}/kbattleship.dsc ||: -%endif %{_ggz_config} --remove --modfile=%{_ggz_datadir}/kreversi.dsc ||: %{_ggz_config} --remove --modfile=%{_ggz_datadir}/ksquares.dsc ||: fi @@ -206,6 +196,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 04 2009 Kevin Kofler - 4.2.95-2 +- reenable and rebrand the ship sinking game and the snake duel game (#502359) + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 --- kdegames-4.2.95-kbattleship-ktron.patch DELETED --- From kkofler at fedoraproject.org Sat Jul 4 17:43:00 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sat, 4 Jul 2009 17:43:00 +0000 (UTC) Subject: rpms/kdegames/devel kdegames.spec,1.134,1.135 Message-ID: <20090704174300.8EFD511C02C3@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27656/devel Modified Files: kdegames.spec Log Message: Fix file list. Index: kdegames.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- kdegames.spec 4 Jul 2009 17:17:49 -0000 1.134 +++ kdegames.spec 4 Jul 2009 17:42:30 -0000 1.135 @@ -171,6 +171,7 @@ rm -rf %{buildroot} %{_kde4_datadir}/sounds/kapman/ %{_kde4_datadir}/applications/kde4/* %{_kde4_datadir}/config.kcfg/* +%{_kde4_datadir}/kde4/services/kbattleship.protocol %{_kde4_docdir}/HTML/en/* %{_kde4_iconsdir}/hicolor/*/*/* %{_kde4_iconsdir}/locolor/*/*/* From stingray at fedoraproject.org Sat Jul 4 18:15:56 2009 From: stingray at fedoraproject.org (Paul P Komkoff Jr) Date: Sat, 4 Jul 2009 18:15:56 +0000 (UTC) Subject: rpms/cuetools/devel 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch, NONE, 1.1 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch, NONE, 1.1 0003-cuetag.sh-Correct-typo-in-error-output.patch, NONE, 1.1 cuetools.spec, 1.2, 1.3 Message-ID: <20090704181556.0B7FB11C02C3@cvs1.fedora.phx.redhat.com> Author: stingray Update of /cvs/pkgs/rpms/cuetools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1496 Modified Files: cuetools.spec Added Files: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch 0003-cuetag.sh-Correct-typo-in-error-output.patch Log Message: cuetools-1.4.0-0.4.svn305 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch: --- NEW FILE 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch --- >From b5937f85fb78a141575a2c60d655373b4f1be099 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Wed, 28 Jan 2009 01:10:06 -0500 Subject: [PATCH 1/3] cuetag.sh: Fix metaflac options for flac >= 1.1.3 The --remove-vc-all and --import-vc options were removed in flac-1.1.3 (27-Nov-2006). They were deprecated since flac-1.1.1 (01-Oct-2004). Use the options which replaced them, -remove-all-tags and --import-tags-from, respectively. --- src/tools/cuetag.sh | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 73f4660..809be82 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -28,8 +28,7 @@ usage() vorbis() { # FLAC tagging - # --remove-vc-all overwrites existing comments - METAFLAC="metaflac --remove-vc-all --import-vc-from=-" + METAFLAC="metaflac --remove-all-tags --import-tags-from=-" # Ogg Vorbis tagging # -w overwrites existing comments -- 1.6.3 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch: --- NEW FILE 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch --- >From 3b4e408467caaebe71e5dc557587da4728901118 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:19:30 -0400 Subject: [PATCH 2/3] cuetag.sh: Fix handling of files with spaces --- src/tools/cuetag.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 809be82..4d8be69 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -80,7 +80,7 @@ vorbis() (for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then echo "$field=$value" @@ -113,7 +113,7 @@ id3() for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then break @@ -158,14 +158,14 @@ main() cue_file=$1 shift - ntrack=$(cueprint -d '%N' $cue_file) + ntrack=$(cueprint -d '%N' "$cue_file") trackno=1 if [ $# -ne $ntrack ]; then echo "warning: number of files does not match number of tracks" fi - for file in $@; do + for file in "$@"; do case $file in *.[Ff][Ll][Aa][Cc]) vorbis $trackno "$file" -- 1.6.3 0003-cuetag.sh-Correct-typo-in-error-output.patch: --- NEW FILE 0003-cuetag.sh-Correct-typo-in-error-output.patch --- >From c0623cb1fcc8a2c92ea9af364b780de265f3c8f2 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:20:09 -0400 Subject: [PATCH 3/3] cuetag.sh: Correct typo in error output --- src/tools/cuetag.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 4d8be69..9b725b0 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -180,7 +180,7 @@ main() vorbis $trackno "$file" ;; *) - echo "$file: uknown file type" + echo "$file: unknown file type" ;; esac trackno=$(($trackno + 1)) -- 1.6.3 Index: cuetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cuetools/devel/cuetools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cuetools.spec 24 Feb 2009 10:15:13 -0000 1.2 +++ cuetools.spec 4 Jul 2009 18:15:55 -0000 1.3 @@ -2,13 +2,16 @@ Name: cuetools Version: 1.4.0 -Release: 0.3.svn305%{?dist} +Release: 0.4.svn305%{?dist} Summary: Utilities to work with cue and TOC files Group: Applications/Multimedia License: GPLv2 URL: http://developer.berlios.de/projects/cuetools/ -Source: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz -Patch: %{name}-%{basever}-svn305-fixes.patch.bz2 +Source0: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz +Patch0: %{name}-%{basever}-svn305-fixes.patch.bz2 +Patch1: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch +Patch2: 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch +Patch3: 0003-cuetag.sh-Correct-typo-in-error-output.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description @@ -18,7 +21,10 @@ on cue/TOC information, and track breakp %prep %setup -q -n %{name}-%{basever} -%patch -p1 +%patch0 -p1 +%patch1 -p1 -b .metaflac +%patch2 -p1 -b .spaces +%patch3 -p1 -b .typo %build %configure @@ -46,6 +52,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri May 08 2009 Todd Zullinger - 1.4.0-0.4.svn305 +- cuetag.sh: Fix metaflac options for flac >= 1.1.3 (bug 488586) +- cuetag.sh: Fix handling of files with spaces (bug 499910) +- cuetag.sh: Correct typo in error output + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-0.3.svn305 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From stingray at fedoraproject.org Sat Jul 4 18:24:15 2009 From: stingray at fedoraproject.org (Paul P Komkoff Jr) Date: Sat, 4 Jul 2009 18:24:15 +0000 (UTC) Subject: rpms/cuetools/F-10 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch, NONE, 1.1 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch, NONE, 1.1 0003-cuetag.sh-Correct-typo-in-error-output.patch, NONE, 1.1 cuetools.spec, 1.1, 1.2 Message-ID: <20090704182415.0821211C02C3@cvs1.fedora.phx.redhat.com> Author: stingray Update of /cvs/pkgs/rpms/cuetools/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2860/F-10 Modified Files: cuetools.spec Added Files: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch 0003-cuetag.sh-Correct-typo-in-error-output.patch Log Message: cuetools-1.4.0-0.4.svn305 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch: --- NEW FILE 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch --- >From b5937f85fb78a141575a2c60d655373b4f1be099 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Wed, 28 Jan 2009 01:10:06 -0500 Subject: [PATCH 1/3] cuetag.sh: Fix metaflac options for flac >= 1.1.3 The --remove-vc-all and --import-vc options were removed in flac-1.1.3 (27-Nov-2006). They were deprecated since flac-1.1.1 (01-Oct-2004). Use the options which replaced them, -remove-all-tags and --import-tags-from, respectively. --- src/tools/cuetag.sh | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 73f4660..809be82 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -28,8 +28,7 @@ usage() vorbis() { # FLAC tagging - # --remove-vc-all overwrites existing comments - METAFLAC="metaflac --remove-vc-all --import-vc-from=-" + METAFLAC="metaflac --remove-all-tags --import-tags-from=-" # Ogg Vorbis tagging # -w overwrites existing comments -- 1.6.3 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch: --- NEW FILE 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch --- >From 3b4e408467caaebe71e5dc557587da4728901118 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:19:30 -0400 Subject: [PATCH 2/3] cuetag.sh: Fix handling of files with spaces --- src/tools/cuetag.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 809be82..4d8be69 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -80,7 +80,7 @@ vorbis() (for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then echo "$field=$value" @@ -113,7 +113,7 @@ id3() for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then break @@ -158,14 +158,14 @@ main() cue_file=$1 shift - ntrack=$(cueprint -d '%N' $cue_file) + ntrack=$(cueprint -d '%N' "$cue_file") trackno=1 if [ $# -ne $ntrack ]; then echo "warning: number of files does not match number of tracks" fi - for file in $@; do + for file in "$@"; do case $file in *.[Ff][Ll][Aa][Cc]) vorbis $trackno "$file" -- 1.6.3 0003-cuetag.sh-Correct-typo-in-error-output.patch: --- NEW FILE 0003-cuetag.sh-Correct-typo-in-error-output.patch --- >From c0623cb1fcc8a2c92ea9af364b780de265f3c8f2 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:20:09 -0400 Subject: [PATCH 3/3] cuetag.sh: Correct typo in error output --- src/tools/cuetag.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 4d8be69..9b725b0 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -180,7 +180,7 @@ main() vorbis $trackno "$file" ;; *) - echo "$file: uknown file type" + echo "$file: unknown file type" ;; esac trackno=$(($trackno + 1)) -- 1.6.3 Index: cuetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cuetools/F-10/cuetools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cuetools.spec 5 May 2008 12:52:28 -0000 1.1 +++ cuetools.spec 4 Jul 2009 18:23:44 -0000 1.2 @@ -2,13 +2,16 @@ Name: cuetools Version: 1.4.0 -Release: 0.2.svn305%{?dist} +Release: 0.4.svn305%{?dist} Summary: Utilities to work with cue and TOC files Group: Applications/Multimedia License: GPLv2 URL: http://developer.berlios.de/projects/cuetools/ -Source: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz -Patch: %{name}-%{basever}-svn305-fixes.patch.bz2 +Source0: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz +Patch0: %{name}-%{basever}-svn305-fixes.patch.bz2 +Patch1: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch +Patch2: 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch +Patch3: 0003-cuetag.sh-Correct-typo-in-error-output.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description @@ -18,7 +21,10 @@ on cue/TOC information, and track breakp %prep %setup -q -n %{name}-%{basever} -%patch -p1 +%patch0 -p1 +%patch1 -p1 -b .metaflac +%patch2 -p1 -b .spaces +%patch3 -p1 -b .typo %build %configure @@ -46,6 +52,14 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri May 08 2009 Todd Zullinger - 1.4.0-0.4.svn305 +- cuetag.sh: Fix metaflac options for flac >= 1.1.3 (bug 488586) +- cuetag.sh: Fix handling of files with spaces (bug 499910) +- cuetag.sh: Correct typo in error output + +* Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-0.3.svn305 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Mar 26 2008 Paul P. Komkoff Jr - 1.4.0-0.2.svn305 - add COPYING and doc/formats.txt - remove *.so From stingray at fedoraproject.org Sat Jul 4 18:24:15 2009 From: stingray at fedoraproject.org (Paul P Komkoff Jr) Date: Sat, 4 Jul 2009 18:24:15 +0000 (UTC) Subject: rpms/cuetools/F-11 cuetools.spec,1.2,1.3 Message-ID: <20090704182415.4C4B611C02C3@cvs1.fedora.phx.redhat.com> Author: stingray Update of /cvs/pkgs/rpms/cuetools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2860/F-11 Modified Files: cuetools.spec Log Message: cuetools-1.4.0-0.4.svn305 Index: cuetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cuetools/F-11/cuetools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cuetools.spec 24 Feb 2009 10:15:13 -0000 1.2 +++ cuetools.spec 4 Jul 2009 18:23:44 -0000 1.3 @@ -2,13 +2,16 @@ Name: cuetools Version: 1.4.0 -Release: 0.3.svn305%{?dist} +Release: 0.4.svn305%{?dist} Summary: Utilities to work with cue and TOC files Group: Applications/Multimedia License: GPLv2 URL: http://developer.berlios.de/projects/cuetools/ -Source: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz -Patch: %{name}-%{basever}-svn305-fixes.patch.bz2 +Source0: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz +Patch0: %{name}-%{basever}-svn305-fixes.patch.bz2 +Patch1: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch +Patch2: 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch +Patch3: 0003-cuetag.sh-Correct-typo-in-error-output.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description @@ -18,7 +21,10 @@ on cue/TOC information, and track breakp %prep %setup -q -n %{name}-%{basever} -%patch -p1 +%patch0 -p1 +%patch1 -p1 -b .metaflac +%patch2 -p1 -b .spaces +%patch3 -p1 -b .typo %build %configure @@ -46,6 +52,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri May 08 2009 Todd Zullinger - 1.4.0-0.4.svn305 +- cuetag.sh: Fix metaflac options for flac >= 1.1.3 (bug 488586) +- cuetag.sh: Fix handling of files with spaces (bug 499910) +- cuetag.sh: Correct typo in error output + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-0.3.svn305 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From stingray at fedoraproject.org Sat Jul 4 18:24:15 2009 From: stingray at fedoraproject.org (Paul P Komkoff Jr) Date: Sat, 4 Jul 2009 18:24:15 +0000 (UTC) Subject: rpms/cuetools/F-9 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch, NONE, 1.1 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch, NONE, 1.1 0003-cuetag.sh-Correct-typo-in-error-output.patch, NONE, 1.1 cuetools.spec, 1.1, 1.2 Message-ID: <20090704182415.8B9DE11C02C3@cvs1.fedora.phx.redhat.com> Author: stingray Update of /cvs/pkgs/rpms/cuetools/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2860/F-9 Modified Files: cuetools.spec Added Files: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch 0003-cuetag.sh-Correct-typo-in-error-output.patch Log Message: cuetools-1.4.0-0.4.svn305 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch: --- NEW FILE 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch --- >From b5937f85fb78a141575a2c60d655373b4f1be099 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Wed, 28 Jan 2009 01:10:06 -0500 Subject: [PATCH 1/3] cuetag.sh: Fix metaflac options for flac >= 1.1.3 The --remove-vc-all and --import-vc options were removed in flac-1.1.3 (27-Nov-2006). They were deprecated since flac-1.1.1 (01-Oct-2004). Use the options which replaced them, -remove-all-tags and --import-tags-from, respectively. --- src/tools/cuetag.sh | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 73f4660..809be82 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -28,8 +28,7 @@ usage() vorbis() { # FLAC tagging - # --remove-vc-all overwrites existing comments - METAFLAC="metaflac --remove-vc-all --import-vc-from=-" + METAFLAC="metaflac --remove-all-tags --import-tags-from=-" # Ogg Vorbis tagging # -w overwrites existing comments -- 1.6.3 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch: --- NEW FILE 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch --- >From 3b4e408467caaebe71e5dc557587da4728901118 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:19:30 -0400 Subject: [PATCH 2/3] cuetag.sh: Fix handling of files with spaces --- src/tools/cuetag.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 809be82..4d8be69 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -80,7 +80,7 @@ vorbis() (for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then echo "$field=$value" @@ -113,7 +113,7 @@ id3() for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then break @@ -158,14 +158,14 @@ main() cue_file=$1 shift - ntrack=$(cueprint -d '%N' $cue_file) + ntrack=$(cueprint -d '%N' "$cue_file") trackno=1 if [ $# -ne $ntrack ]; then echo "warning: number of files does not match number of tracks" fi - for file in $@; do + for file in "$@"; do case $file in *.[Ff][Ll][Aa][Cc]) vorbis $trackno "$file" -- 1.6.3 0003-cuetag.sh-Correct-typo-in-error-output.patch: --- NEW FILE 0003-cuetag.sh-Correct-typo-in-error-output.patch --- >From c0623cb1fcc8a2c92ea9af364b780de265f3c8f2 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:20:09 -0400 Subject: [PATCH 3/3] cuetag.sh: Correct typo in error output --- src/tools/cuetag.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 4d8be69..9b725b0 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -180,7 +180,7 @@ main() vorbis $trackno "$file" ;; *) - echo "$file: uknown file type" + echo "$file: unknown file type" ;; esac trackno=$(($trackno + 1)) -- 1.6.3 Index: cuetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cuetools/F-9/cuetools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cuetools.spec 5 May 2008 14:00:07 -0000 1.1 +++ cuetools.spec 4 Jul 2009 18:23:45 -0000 1.2 @@ -2,13 +2,16 @@ Name: cuetools Version: 1.4.0 -Release: 0.2.svn305%{?dist} +Release: 0.4.svn305%{?dist} Summary: Utilities to work with cue and TOC files Group: Applications/Multimedia License: GPLv2 URL: http://developer.berlios.de/projects/cuetools/ -Source: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz -Patch: %{name}-%{basever}-svn305-fixes.patch.bz2 +Source0: http://download.berlios.de/cuetools/%{name}-%{basever}.tar.gz +Patch0: %{name}-%{basever}-svn305-fixes.patch.bz2 +Patch1: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch +Patch2: 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch +Patch3: 0003-cuetag.sh-Correct-typo-in-error-output.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description @@ -18,7 +21,10 @@ on cue/TOC information, and track breakp %prep %setup -q -n %{name}-%{basever} -%patch -p1 +%patch0 -p1 +%patch1 -p1 -b .metaflac +%patch2 -p1 -b .spaces +%patch3 -p1 -b .typo %build %configure @@ -46,6 +52,14 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri May 08 2009 Todd Zullinger - 1.4.0-0.4.svn305 +- cuetag.sh: Fix metaflac options for flac >= 1.1.3 (bug 488586) +- cuetag.sh: Fix handling of files with spaces (bug 499910) +- cuetag.sh: Correct typo in error output + +* Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-0.3.svn305 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Mar 26 2008 Paul P. Komkoff Jr - 1.4.0-0.2.svn305 - add COPYING and doc/formats.txt - remove *.so From stingray at fedoraproject.org Sat Jul 4 18:26:02 2009 From: stingray at fedoraproject.org (Paul P Komkoff Jr) Date: Sat, 4 Jul 2009 18:26:02 +0000 (UTC) Subject: rpms/cuetools/F-11 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch, NONE, 1.1 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch, NONE, 1.1 0003-cuetag.sh-Correct-typo-in-error-output.patch, NONE, 1.1 Message-ID: <20090704182602.C400B11C02C3@cvs1.fedora.phx.redhat.com> Author: stingray Update of /cvs/pkgs/rpms/cuetools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3274 Added Files: 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch 0003-cuetag.sh-Correct-typo-in-error-output.patch Log Message: cuetools-1.4.0-0.4.svn305 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch: --- NEW FILE 0001-cuetag.sh-Fix-metaflac-options-for-flac-1.1.3.patch --- >From b5937f85fb78a141575a2c60d655373b4f1be099 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Wed, 28 Jan 2009 01:10:06 -0500 Subject: [PATCH 1/3] cuetag.sh: Fix metaflac options for flac >= 1.1.3 The --remove-vc-all and --import-vc options were removed in flac-1.1.3 (27-Nov-2006). They were deprecated since flac-1.1.1 (01-Oct-2004). Use the options which replaced them, -remove-all-tags and --import-tags-from, respectively. --- src/tools/cuetag.sh | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 73f4660..809be82 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -28,8 +28,7 @@ usage() vorbis() { # FLAC tagging - # --remove-vc-all overwrites existing comments - METAFLAC="metaflac --remove-vc-all --import-vc-from=-" + METAFLAC="metaflac --remove-all-tags --import-tags-from=-" # Ogg Vorbis tagging # -w overwrites existing comments -- 1.6.3 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch: --- NEW FILE 0002-cuetag.sh-Fix-handling-of-files-with-spaces.patch --- >From 3b4e408467caaebe71e5dc557587da4728901118 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:19:30 -0400 Subject: [PATCH 2/3] cuetag.sh: Fix handling of files with spaces --- src/tools/cuetag.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 809be82..4d8be69 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -80,7 +80,7 @@ vorbis() (for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then echo "$field=$value" @@ -113,7 +113,7 @@ id3() for field in $fields; do value="" for conv in $(eval echo \$$field); do - value=$($CUEPRINT -n $1 -t "$conv\n" $cue_file) + value=$($CUEPRINT -n $1 -t "$conv\n" "$cue_file") if [ -n "$value" ]; then break @@ -158,14 +158,14 @@ main() cue_file=$1 shift - ntrack=$(cueprint -d '%N' $cue_file) + ntrack=$(cueprint -d '%N' "$cue_file") trackno=1 if [ $# -ne $ntrack ]; then echo "warning: number of files does not match number of tracks" fi - for file in $@; do + for file in "$@"; do case $file in *.[Ff][Ll][Aa][Cc]) vorbis $trackno "$file" -- 1.6.3 0003-cuetag.sh-Correct-typo-in-error-output.patch: --- NEW FILE 0003-cuetag.sh-Correct-typo-in-error-output.patch --- >From c0623cb1fcc8a2c92ea9af364b780de265f3c8f2 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Fri, 8 May 2009 16:20:09 -0400 Subject: [PATCH 3/3] cuetag.sh: Correct typo in error output --- src/tools/cuetag.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh index 4d8be69..9b725b0 100755 --- a/src/tools/cuetag.sh +++ b/src/tools/cuetag.sh @@ -180,7 +180,7 @@ main() vorbis $trackno "$file" ;; *) - echo "$file: uknown file type" + echo "$file: unknown file type" ;; esac trackno=$(($trackno + 1)) -- 1.6.3 From dyfet at fedoraproject.org Sat Jul 4 19:54:51 2009 From: dyfet at fedoraproject.org (David Sugar) Date: Sat, 4 Jul 2009 19:54:51 +0000 (UTC) Subject: rpms/sipwitch/F-10 .cvsignore, 1.3, 1.4 sipwitch.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090704195451.4F8CD11C02C3@cvs1.fedora.phx.redhat.com> Author: dyfet Update of /cvs/pkgs/rpms/sipwitch/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19949 Modified Files: .cvsignore sipwitch.spec sources Log Message: Update to 0.5.6, runtime separated and rtpproxy plugin dropped Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Jun 2009 15:04:47 -0000 1.3 +++ .cvsignore 4 Jul 2009 19:54:20 -0000 1.4 @@ -1 +1 @@ -sipwitch-0.5.5.tar.gz +sipwitch-0.5.6.tar.gz Index: sipwitch.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-10/sipwitch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sipwitch.spec 10 Jun 2009 15:04:48 -0000 1.2 +++ sipwitch.spec 4 Jul 2009 19:54:21 -0000 1.3 @@ -14,7 +14,7 @@ Name: sipwitch Summary: SIP telephony server for secure phone systems -Version: 0.5.5 +Version: 0.5.6 Release: 0%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/sipwitch @@ -32,10 +32,15 @@ Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts +Requires: %{name}-runtime = %{version}-%{release} + +%package runtime +Group: Development/Libraries +Summary: Runtime library support for sipwitch %package devel Requires: ucommon-devel >= 2.0.0 -Requires: %{name} = %{version}-%{release} +Requires: %{name}-runtime = %{version}-%{release} Group: Development/Libraries Summary: Headers for building sipwitch plugins @@ -66,10 +71,6 @@ Summary: Scripting plugin for sipwitch Requires: %{name} = %{version}-%{release} Summary: Forward registration and routing plugin -%package plugin-rtpproxy -Requires: %{name} = %{version}-%{release} -Summary: Generic rtp proxy plugin for sipwitch - %package plugin-subscriber Requires: %{name} = %{version}-%{release} Summary: Subscriber gateway plugin for sipwitch @@ -91,6 +92,12 @@ found or added to the core distribution developing external application services which need to communicate with a running sipwitch daemon instance. +%description runtime +Runtime library required for sipwitch development and for using the server. +This is available as a separate package so that one building sipwitch plugins +with the required devel package does not also require installing a server +image. + %description snmp This is the standard GNU Telephony MIB. It can be used to monitor sipwitch servers from a snmp management station when we add snmp support. @@ -120,15 +127,6 @@ This plugin enables forwarding of regist for unknown numbers so that one can create a "secure" peer to peer media domain managed by sipwitch and still access an "insecure" b2bua based ip-pbx. -%description plugin-rtpproxy -Generic assignment of RTP proxy for packet forwarding when local and -remote caller is not directly routable. This can include briding when -both source and destination are offsite or on different subnets. This -will enable calls between local users and remote users when either or -both parties are behind NAT. It is assumed a block of rtp ports (and -the sip port) will be "port forwarded" to sipwitch. All proxying is -transparent and hence directly usable for secure calling with ZRTP. - %description plugin-subscriber This module is meant to eventually offer generic support for premise routers when used by providers to offer sip/voip service to a subscriber. @@ -168,7 +166,6 @@ remote voip service provider. %{_mandir}/man8/*.8* %{_sbindir}/* %{_bindir}/* -%{_libdir}/*.so.* %dir %{_libdir}/sipwitch %config(noreplace) %{_sysconfdir}/logrotate.d/sipwitch %attr(0755,root,root) %{_initrddir}/sipwitch @@ -178,6 +175,10 @@ remote voip service provider. %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/sipwitch %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sipwitch.d/*.xml +%files runtime +%defattr(-,root,root,-) +%{_libdir}/*.so.* + %files snmp %defattr(-,root,root,-) %{_datadir}/snmp/mibs/GNUTelephony-MIB.txt @@ -203,10 +204,6 @@ remote voip service provider. %defattr(-,root,root,-) %{_libdir}/sipwitch/scripting.so -%files plugin-rtpproxy -%defattr(-,root,root,-) -%{_libdir}/sipwitch/rtpproxy.so - %files plugin-subscriber %defattr(-,root,root,-) %{_libdir}/sipwitch/subscriber.so @@ -234,6 +231,10 @@ fi /sbin/ldconfig %changelog +* Sat Jul 04 2009 - David Sugar - 0.5.6-0 +- split runtime from server to build plugins without requiring server. +- removed separate rtp proxy, functionality will be integrated into server. + * Wed Jun 10 2009 - David Sugar - 0.5.5-0 - upstream fixed in rel 0.5.5, no patches now needed. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Jun 2009 15:04:48 -0000 1.3 +++ sources 4 Jul 2009 19:54:21 -0000 1.4 @@ -1 +1 @@ -201b85501361be9f29d57ad9c25057bd sipwitch-0.5.5.tar.gz +9dd409baa335e74a580d4432267bf977 sipwitch-0.5.6.tar.gz From pgordon at fedoraproject.org Sat Jul 4 20:04:04 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Sat, 4 Jul 2009 20:04:04 +0000 (UTC) Subject: rpms/webkitgtk/devel webkitgtk.spec,1.8,1.9 Message-ID: <20090704200404.A121011C02C3@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21869 Modified Files: webkitgtk.spec Log Message: Remove the GtkLauncher RPATH (using chrpath); remove libtool BR (no longer needed). Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- webkitgtk.spec 17 Jun 2009 02:50:27 -0000 1.8 +++ webkitgtk.spec 4 Jul 2009 20:03:34 -0000 1.9 @@ -35,7 +35,7 @@ Name: webkitgtk Version: 1.1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -51,6 +51,7 @@ Patch0: webkit-1.1.8-atomic-word BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: bison +BuildRequires: chrpath BuildRequires: enchant-devel BuildRequires: flex BuildRequires: geoclue-devel @@ -63,7 +64,6 @@ BuildRequires: gtk2-devel BuildRequires: libsoup-devel >= 2.25.91 BuildRequires: libicu-devel BuildRequires: libjpeg-devel -BuildRequires: libtool BuildRequires: libxslt-devel BuildRequires: libXt-devel BuildRequires: pcre-devel @@ -127,7 +127,10 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} + make install DESTDIR=%{buildroot} + +chrpath --delete Programs/GtkLauncher install -d -m 755 %{buildroot}%{_libexecdir}/%{name} install -m 755 Programs/GtkLauncher %{buildroot}%{_libexecdir}/%{name} %find_lang webkit @@ -182,6 +185,10 @@ rm -rf %{buildroot} %changelog +* Sat Jul 04 2009 Peter Gordon - 1.1.10-2 +- Invoke chrpath to remove the hardcoded RPATH in GtkLauncher. +- Remove unnecessary libtool build dependency. + * Tue Jun 16 2009 Matthias Clasen - 1.1.10-1 - Update to 1.1.10 From dyfet at fedoraproject.org Sat Jul 4 20:06:54 2009 From: dyfet at fedoraproject.org (David Sugar) Date: Sat, 4 Jul 2009 20:06:54 +0000 (UTC) Subject: rpms/sipwitch/F-11 .cvsignore, 1.3, 1.4 sipwitch.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090704200654.6523511C02C3@cvs1.fedora.phx.redhat.com> Author: dyfet Update of /cvs/pkgs/rpms/sipwitch/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22465 Modified Files: .cvsignore sipwitch.spec sources Log Message: new upstream release 0.5.6 and runtime separated Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Jun 2009 15:15:56 -0000 1.3 +++ .cvsignore 4 Jul 2009 20:06:23 -0000 1.4 @@ -1 +1 @@ -sipwitch-0.5.5.tar.gz +sipwitch-0.5.6.tar.gz Index: sipwitch.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-11/sipwitch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sipwitch.spec 10 Jun 2009 15:15:56 -0000 1.2 +++ sipwitch.spec 4 Jul 2009 20:06:24 -0000 1.3 @@ -14,7 +14,7 @@ Name: sipwitch Summary: SIP telephony server for secure phone systems -Version: 0.5.5 +Version: 0.5.6 Release: 0%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/sipwitch @@ -32,10 +32,15 @@ Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts +Requires: %{name}-runtime = %{version}-%{release} + +%package runtime +Group: Development/Libraries +Summary: Runtime library support for sipwitch %package devel Requires: ucommon-devel >= 2.0.0 -Requires: %{name} = %{version}-%{release} +Requires: %{name}-runtime = %{version}-%{release} Group: Development/Libraries Summary: Headers for building sipwitch plugins @@ -66,10 +71,6 @@ Summary: Scripting plugin for sipwitch Requires: %{name} = %{version}-%{release} Summary: Forward registration and routing plugin -%package plugin-rtpproxy -Requires: %{name} = %{version}-%{release} -Summary: Generic rtp proxy plugin for sipwitch - %package plugin-subscriber Requires: %{name} = %{version}-%{release} Summary: Subscriber gateway plugin for sipwitch @@ -91,6 +92,12 @@ found or added to the core distribution developing external application services which need to communicate with a running sipwitch daemon instance. +%description runtime +Runtime library required for sipwitch development and for using the server. +This is available as a separate package so that one building sipwitch plugins +with the required devel package does not also require installing a server +image. + %description snmp This is the standard GNU Telephony MIB. It can be used to monitor sipwitch servers from a snmp management station when we add snmp support. @@ -120,15 +127,6 @@ This plugin enables forwarding of regist for unknown numbers so that one can create a "secure" peer to peer media domain managed by sipwitch and still access an "insecure" b2bua based ip-pbx. -%description plugin-rtpproxy -Generic assignment of RTP proxy for packet forwarding when local and -remote caller is not directly routable. This can include briding when -both source and destination are offsite or on different subnets. This -will enable calls between local users and remote users when either or -both parties are behind NAT. It is assumed a block of rtp ports (and -the sip port) will be "port forwarded" to sipwitch. All proxying is -transparent and hence directly usable for secure calling with ZRTP. - %description plugin-subscriber This module is meant to eventually offer generic support for premise routers when used by providers to offer sip/voip service to a subscriber. @@ -168,7 +166,6 @@ remote voip service provider. %{_mandir}/man8/*.8* %{_sbindir}/* %{_bindir}/* -%{_libdir}/*.so.* %dir %{_libdir}/sipwitch %config(noreplace) %{_sysconfdir}/logrotate.d/sipwitch %attr(0755,root,root) %{_initrddir}/sipwitch @@ -178,6 +175,10 @@ remote voip service provider. %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/sipwitch %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sipwitch.d/*.xml +%files runtime +%defattr(-,root,root,-) +%{_libdir}/*.so.* + %files snmp %defattr(-,root,root,-) %{_datadir}/snmp/mibs/GNUTelephony-MIB.txt @@ -203,10 +204,6 @@ remote voip service provider. %defattr(-,root,root,-) %{_libdir}/sipwitch/scripting.so -%files plugin-rtpproxy -%defattr(-,root,root,-) -%{_libdir}/sipwitch/rtpproxy.so - %files plugin-subscriber %defattr(-,root,root,-) %{_libdir}/sipwitch/subscriber.so @@ -234,6 +231,10 @@ fi /sbin/ldconfig %changelog +* Sat Jul 04 2009 - David Sugar - 0.5.6-0 +- split runtime from server to build plugins without requiring server. +- removed separate rtp proxy, functionality will be integrated into server. + * Wed Jun 10 2009 - David Sugar - 0.5.5-0 - upstream fixed in rel 0.5.5, no patches now needed. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Jun 2009 15:15:56 -0000 1.3 +++ sources 4 Jul 2009 20:06:24 -0000 1.4 @@ -1 +1 @@ -201b85501361be9f29d57ad9c25057bd sipwitch-0.5.5.tar.gz +9dd409baa335e74a580d4432267bf977 sipwitch-0.5.6.tar.gz From dyfet at fedoraproject.org Sat Jul 4 20:15:14 2009 From: dyfet at fedoraproject.org (David Sugar) Date: Sat, 4 Jul 2009 20:15:14 +0000 (UTC) Subject: rpms/sipwitch/devel .cvsignore, 1.3, 1.4 sipwitch.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090704201514.CC46711C02C3@cvs1.fedora.phx.redhat.com> Author: dyfet Update of /cvs/pkgs/rpms/sipwitch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24741 Modified Files: .cvsignore sipwitch.spec sources Log Message: new upstream version and separated runtime Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Jun 2009 15:30:45 -0000 1.3 +++ .cvsignore 4 Jul 2009 20:15:14 -0000 1.4 @@ -1 +1 @@ -sipwitch-0.5.5.tar.gz +sipwitch-0.5.6.tar.gz Index: sipwitch.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/devel/sipwitch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sipwitch.spec 10 Jun 2009 15:30:45 -0000 1.2 +++ sipwitch.spec 4 Jul 2009 20:15:14 -0000 1.3 @@ -14,7 +14,7 @@ Name: sipwitch Summary: SIP telephony server for secure phone systems -Version: 0.5.5 +Version: 0.5.6 Release: 0%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/sipwitch @@ -32,10 +32,15 @@ Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts Requires(postun): initscripts +Requires: %{name}-runtime = %{version}-%{release} + +%package runtime +Group: Development/Libraries +Summary: Runtime library support for sipwitch %package devel Requires: ucommon-devel >= 2.0.0 -Requires: %{name} = %{version}-%{release} +Requires: %{name}-runtime = %{version}-%{release} Group: Development/Libraries Summary: Headers for building sipwitch plugins @@ -66,10 +71,6 @@ Summary: Scripting plugin for sipwitch Requires: %{name} = %{version}-%{release} Summary: Forward registration and routing plugin -%package plugin-rtpproxy -Requires: %{name} = %{version}-%{release} -Summary: Generic rtp proxy plugin for sipwitch - %package plugin-subscriber Requires: %{name} = %{version}-%{release} Summary: Subscriber gateway plugin for sipwitch @@ -91,6 +92,12 @@ found or added to the core distribution developing external application services which need to communicate with a running sipwitch daemon instance. +%description runtime +Runtime library required for sipwitch development and for using the server. +This is available as a separate package so that one building sipwitch plugins +with the required devel package does not also require installing a server +image. + %description snmp This is the standard GNU Telephony MIB. It can be used to monitor sipwitch servers from a snmp management station when we add snmp support. @@ -120,15 +127,6 @@ This plugin enables forwarding of regist for unknown numbers so that one can create a "secure" peer to peer media domain managed by sipwitch and still access an "insecure" b2bua based ip-pbx. -%description plugin-rtpproxy -Generic assignment of RTP proxy for packet forwarding when local and -remote caller is not directly routable. This can include briding when -both source and destination are offsite or on different subnets. This -will enable calls between local users and remote users when either or -both parties are behind NAT. It is assumed a block of rtp ports (and -the sip port) will be "port forwarded" to sipwitch. All proxying is -transparent and hence directly usable for secure calling with ZRTP. - %description plugin-subscriber This module is meant to eventually offer generic support for premise routers when used by providers to offer sip/voip service to a subscriber. @@ -168,7 +166,6 @@ remote voip service provider. %{_mandir}/man8/*.8* %{_sbindir}/* %{_bindir}/* -%{_libdir}/*.so.* %dir %{_libdir}/sipwitch %config(noreplace) %{_sysconfdir}/logrotate.d/sipwitch %attr(0755,root,root) %{_initrddir}/sipwitch @@ -178,6 +175,10 @@ remote voip service provider. %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/sipwitch %attr(0660,root,root) %config(noreplace) %{_sysconfdir}/sipwitch.d/*.xml +%files runtime +%defattr(-,root,root,-) +%{_libdir}/*.so.* + %files snmp %defattr(-,root,root,-) %{_datadir}/snmp/mibs/GNUTelephony-MIB.txt @@ -203,10 +204,6 @@ remote voip service provider. %defattr(-,root,root,-) %{_libdir}/sipwitch/scripting.so -%files plugin-rtpproxy -%defattr(-,root,root,-) -%{_libdir}/sipwitch/rtpproxy.so - %files plugin-subscriber %defattr(-,root,root,-) %{_libdir}/sipwitch/subscriber.so @@ -234,6 +231,10 @@ fi /sbin/ldconfig %changelog +* Sat Jul 04 2009 - David Sugar - 0.5.6-0 +- split runtime from server to build plugins without requiring server. +- removed separate rtp proxy, functionality will be integrated into server. + * Wed Jun 10 2009 - David Sugar - 0.5.5-0 - upstream fixed in rel 0.5.5, no patches now needed. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Jun 2009 15:30:45 -0000 1.3 +++ sources 4 Jul 2009 20:15:14 -0000 1.4 @@ -1 +1 @@ -201b85501361be9f29d57ad9c25057bd sipwitch-0.5.5.tar.gz +9dd409baa335e74a580d4432267bf977 sipwitch-0.5.6.tar.gz From adrian at fedoraproject.org Sat Jul 4 20:43:41 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Sat, 4 Jul 2009 20:43:41 +0000 (UTC) Subject: rpms/jabberd/EL-5 jabberd.spec,1.16,1.17 Message-ID: <20090704204341.1E34F11C02C3@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/jabberd/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30002 Modified Files: jabberd.spec Log Message: * Sat Jul 04 2009 Adrian Reber - 2.2.5-2 - rebuilt in hope to fix "undefined symbol: ser_string_set" (#508182) Index: jabberd.spec =================================================================== RCS file: /cvs/extras/rpms/jabberd/EL-5/jabberd.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- jabberd.spec 3 Feb 2009 08:51:32 -0000 1.16 +++ jabberd.spec 4 Jul 2009 20:43:10 -0000 1.17 @@ -1,7 +1,7 @@ Summary: OpenSource server implementation of the Jabber protocols Name: jabberd Version: 2.2.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.5.tar.bz2 @@ -190,6 +190,9 @@ fi %ghost %{_sysconfdir}/jabberd/server.pem %changelog +* Sat Jul 04 2009 Adrian Reber - 2.2.5-2 +- rebuilt in hope to fix "undefined symbol: ser_string_set" (#508182) + * Tue Feb 03 2009 Adrian Reber - 2.2.5-1 - updated to 2.2.5 From jonquark at fedoraproject.org Sat Jul 4 21:15:00 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sat, 4 Jul 2009 21:15:00 +0000 (UTC) Subject: rpms/diffuse/devel .cvsignore, 1.4, 1.5 diffuse.spec, 1.3, 1.4 sources, 1.4, 1.5 diffuse-0.3.3-cvsrel.patch, 1.1, NONE Message-ID: <20090704211500.5BC4E11C02C3@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3408 Modified Files: .cvsignore diffuse.spec sources Removed Files: diffuse-0.3.3-cvsrel.patch Log Message: Update to diffuse 0.3.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 30 Jun 2009 18:21:02 -0000 1.4 +++ .cvsignore 4 Jul 2009 21:14:59 -0000 1.5 @@ -1 +1 @@ -diffuse-0.3.3.tar.bz2 +diffuse-0.3.4.tar.bz2 Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/devel/diffuse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- diffuse.spec 30 Jun 2009 18:21:03 -0000 1.3 +++ diffuse.spec 4 Jul 2009 21:15:00 -0000 1.4 @@ -1,5 +1,5 @@ Name: diffuse -Version: 0.3.3 +Version: 0.3.4 Release: 1%{?dist} Summary: Graphical tool for comparing and merging text files @@ -7,7 +7,6 @@ Group: Development/Tools License: GPLv2+ URL: http://%{name}.sourceforge.net/ Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2 -Patch0: diffuse-0.3.3-cvsrel.patch BuildRequires: desktop-file-utils, scrollkeeper Requires: python >= 2.4, pygtk2 >= 2.10 @@ -26,7 +25,6 @@ Monotone, Subversion, and SVK repositori %prep %setup -q -%patch0 -p1 %build @@ -66,6 +64,8 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog +* Sat Jul 4 2009 Jon Levell - 0.3.4-1 +- Update to new upstream release (patch no longer needed) * Tue Jun 30 2009 Jon Levell - 0.3.3-1 - Update to latest upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 30 Jun 2009 18:21:03 -0000 1.4 +++ sources 4 Jul 2009 21:15:00 -0000 1.5 @@ -1 +1 @@ -4c483b557d270024704120adc2552c2c diffuse-0.3.3.tar.bz2 +706842d366676d4f754792f71489ec2a diffuse-0.3.4.tar.bz2 --- diffuse-0.3.3-cvsrel.patch DELETED --- From jonquark at fedoraproject.org Sat Jul 4 21:19:47 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sat, 4 Jul 2009 21:19:47 +0000 (UTC) Subject: rpms/diffuse/F-11 diffuse.spec, 1.3, 1.4 diffuse-0.3.3-cvsrel.patch, 1.1, NONE Message-ID: <20090704211947.8B14611C02C3@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4161 Modified Files: diffuse.spec Removed Files: diffuse-0.3.3-cvsrel.patch Log Message: Update to diffuse 0.3.4 Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-11/diffuse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- diffuse.spec 30 Jun 2009 18:31:43 -0000 1.3 +++ diffuse.spec 4 Jul 2009 21:19:17 -0000 1.4 @@ -1,5 +1,5 @@ Name: diffuse -Version: 0.3.3 +Version: 0.3.4 Release: 1%{?dist} Summary: Graphical tool for comparing and merging text files @@ -7,7 +7,6 @@ Group: Development/Tools License: GPLv2+ URL: http://%{name}.sourceforge.net/ Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2 -Patch0: diffuse-0.3.3-cvsrel.patch BuildRequires: desktop-file-utils, scrollkeeper Requires: python >= 2.4, pygtk2 >= 2.10 @@ -26,7 +25,6 @@ Monotone, Subversion, and SVK repositori %prep %setup -q -%patch0 -p1 %build @@ -66,6 +64,8 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog +* Sat Jul 4 2009 Jon Levell - 0.3.4-1 +- Update to new upstream release (patch no longer needed) * Tue Jun 30 2009 Jon Levell - 0.3.3-1 - Update to latest upstream release --- diffuse-0.3.3-cvsrel.patch DELETED --- From pghmcfc at fedoraproject.org Sat Jul 4 21:19:59 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Sat, 4 Jul 2009 21:19:59 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/devel .cvsignore, 1.18, 1.19 perl-IO-Socket-SSL.spec, 1.21, 1.22 sources, 1.18, 1.19 Message-ID: <20090704211959.C0DDB11C02C3@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4223 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.26 (SECURITY FIX) verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a certificate with name www.exam in it Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 3 Jul 2009 08:33:25 -0000 1.18 +++ .cvsignore 4 Jul 2009 21:19:59 -0000 1.19 @@ -1 +1 @@ -IO-Socket-SSL-1.25.tar.gz +IO-Socket-SSL-1.26.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/perl-IO-Socket-SSL.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-IO-Socket-SSL.spec 3 Jul 2009 08:33:25 -0000 1.21 +++ perl-IO-Socket-SSL.spec 4 Jul 2009 21:19:59 -0000 1.22 @@ -4,7 +4,7 @@ # Name: perl-IO-Socket-SSL -Version: 1.25 +Version: 1.26 Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries @@ -60,6 +60,11 @@ done %{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Sat Jul 4 2009 Paul Howarth - 1.26-1 +- Update to 1.26 (verify_hostname_of_cert matched only the prefix for the + hostname when no wildcard was given, e.g. www.example.org matched against a + certificate with name www.exam in it) + * Fri Jul 3 2009 Paul Howarth - 1.25-1 - Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 3 Jul 2009 08:33:25 -0000 1.18 +++ sources 4 Jul 2009 21:19:59 -0000 1.19 @@ -1 +1 @@ -4866fb7023e74731bd379a315a021cd8 IO-Socket-SSL-1.25.tar.gz +096319c7ceea6d4f42a264c55a3ea318 IO-Socket-SSL-1.26.tar.gz From jsteffan at fedoraproject.org Sat Jul 4 21:27:57 2009 From: jsteffan at fedoraproject.org (Jonathan Steffan) Date: Sat, 4 Jul 2009 21:27:57 +0000 (UTC) Subject: rpms/python/devel python.spec,1.148,1.149 Message-ID: <20090704212757.3D85D11C02C3@cvs1.fedora.phx.redhat.com> Author: jsteffan Update of /cvs/extras/rpms/python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5681/devel Modified Files: python.spec Log Message: Move python-config to the development package. (BZ#506153) Index: python.spec =================================================================== RCS file: /cvs/extras/rpms/python/devel/python.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- python.spec 28 Jun 2009 18:43:28 -0000 1.148 +++ python.spec 4 Jul 2009 21:27:56 -0000 1.149 @@ -22,7 +22,7 @@ Summary: An interpreted, interactive, object-oriented programming language Name: %{python} Version: 2.6 -Release: 9%{?dist} +Release: 10%{?dist} License: Python Group: Development/Languages Provides: python-abi = %{pybasever} @@ -87,7 +87,7 @@ Obsoletes: python-uuid < 1.31 Provides: python-uuid = 1.31 %endif -BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel, openssl-devel, gmp-devel BuildRequires: ncurses-devel, gdbm-devel, zlib-devel, expat-devel BuildRequires: libGL-devel tk tix gcc-c++ libX11-devel glibc-devel @@ -445,7 +445,9 @@ rm -fr $RPM_BUILD_ROOT %defattr(-, root, root) %doc LICENSE README %{_bindir}/pydoc* -%{_bindir}/python* +%{_bindir}/python +%{_bindir}/python2 +%{_bindir}/python2.6 %{_mandir}/*/* %dir %{_libdir}/python%{pybasever} @@ -497,6 +499,8 @@ rm -fr $RPM_BUILD_ROOT /usr/include/* %doc Misc/README.valgrind Misc/valgrind-python.supp Misc/gdbinit %dir %{_libdir}/python%{pybasever}/config +%{_bindir}/python-config +%{_bindir}/python2.6-config %{_libdir}/python%{pybasever}/config/* %{_libdir}/libpython%{pybasever}.so @@ -536,6 +540,10 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/python%{pybasever}/lib-dynload/_testcapimodule.so %changelog +* Sat Jul 4 2009 Jonathan Steffan - 2.6-10 +- Move python-config to devel subpackage (#506153) +- Update BuildRoot for new standard + * Sun Jun 28 2009 Jonathan Steffan - 2.6-9 - Update python-tools description (#448940) From jsteffan at fedoraproject.org Sat Jul 4 21:28:26 2009 From: jsteffan at fedoraproject.org (Jonathan Steffan) Date: Sat, 4 Jul 2009 21:28:26 +0000 (UTC) Subject: rpms/python/F-10 python.spec,1.139,1.140 Message-ID: <20090704212826.AB7AE11C02C3@cvs1.fedora.phx.redhat.com> Author: jsteffan Update of /cvs/extras/rpms/python/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5681/F-10 Modified Files: python.spec Log Message: Move python-config to the development package. (BZ#506153) Index: python.spec =================================================================== RCS file: /cvs/extras/rpms/python/F-10/python.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- python.spec 28 Jun 2009 18:43:27 -0000 1.139 +++ python.spec 4 Jul 2009 21:27:56 -0000 1.140 @@ -22,7 +22,7 @@ Summary: An interpreted, interactive, object-oriented programming language. Name: %{python} Version: 2.5.2 -Release: 3%{?dist} +Release: 4%{?dist} License: Python Group: Development/Languages Provides: python-abi = %{pybasever} @@ -76,7 +76,7 @@ Obsoletes: python-ctypes < 1.0.1 Provides: python-ctypes = 1.0.1 %endif -BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildPrereq: readline-devel, openssl-devel, gmp-devel BuildPrereq: ncurses-devel, gdbm-devel, zlib-devel, expat-devel BuildPrereq: libGL-devel tk tix gcc-c++ libX11-devel glibc-devel @@ -427,7 +427,9 @@ rm -fr $RPM_BUILD_ROOT %defattr(-, root, root) %doc LICENSE README %{_bindir}/pydoc* -%{_bindir}/python* +%{_bindir}/python +%{_bindir}/python2 +%{_bindir}/python2.5 %{_mandir}/*/* %dir %{_libdir}/python%{pybasever} @@ -476,6 +478,8 @@ rm -fr $RPM_BUILD_ROOT /usr/include/* %doc Misc/README.valgrind Misc/valgrind-python.supp Misc/gdbinit %dir %{_libdir}/python%{pybasever}/config +%{_bindir}/python-config +%{_bindir}/python2.5-config %{_libdir}/python%{pybasever}/config/* %{_libdir}/libpython%{pybasever}.so @@ -512,6 +516,10 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/python%{pybasever}/lib-dynload/_testcapimodule.so %changelog +* Sat Jul 4 2009 Jonathan Steffan - 2.5.2-4 +- Move python-config to devel subpackage (#506153) +- Update BuildRoot for new standard + * Sun Jun 28 2009 Jonathan Steffan - 2.5.2-3 - Update python-tools description (#448940) From jsteffan at fedoraproject.org Sat Jul 4 21:28:26 2009 From: jsteffan at fedoraproject.org (Jonathan Steffan) Date: Sat, 4 Jul 2009 21:28:26 +0000 (UTC) Subject: rpms/python/F-11 python.spec,1.149,1.150 Message-ID: <20090704212826.E6BBE11C02C3@cvs1.fedora.phx.redhat.com> Author: jsteffan Update of /cvs/extras/rpms/python/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5681/F-11 Modified Files: python.spec Log Message: Move python-config to the development package. (BZ#506153) Index: python.spec =================================================================== RCS file: /cvs/extras/rpms/python/F-11/python.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- python.spec 28 Jun 2009 18:43:27 -0000 1.149 +++ python.spec 4 Jul 2009 21:27:56 -0000 1.150 @@ -22,7 +22,7 @@ Summary: An interpreted, interactive, object-oriented programming language Name: %{python} Version: 2.6 -Release: 10%{?dist} +Release: 11%{?dist} License: Python Group: Development/Languages Provides: python-abi = %{pybasever} @@ -88,7 +88,7 @@ Obsoletes: python-uuid < 1.31 Provides: python-uuid = 1.31 %endif -BuildRoot: %{_tmppath}/%{name}-%{version}-root +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel, openssl-devel, gmp-devel BuildRequires: ncurses-devel, gdbm-devel, zlib-devel, expat-devel BuildRequires: libGL-devel tk tix gcc-c++ libX11-devel glibc-devel @@ -447,7 +447,9 @@ rm -fr $RPM_BUILD_ROOT %defattr(-, root, root) %doc LICENSE README %{_bindir}/pydoc* -%{_bindir}/python* +%{_bindir}/python +%{_bindir}/python2 +%{_bindir}/python2.6 %{_mandir}/*/* %dir %{_libdir}/python%{pybasever} @@ -499,6 +501,8 @@ rm -fr $RPM_BUILD_ROOT /usr/include/* %doc Misc/README.valgrind Misc/valgrind-python.supp Misc/gdbinit %dir %{_libdir}/python%{pybasever}/config +%{_bindir}/python-config +%{_bindir}/python2.6-config %{_libdir}/python%{pybasever}/config/* %{_libdir}/libpython%{pybasever}.so @@ -538,6 +542,10 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/python%{pybasever}/lib-dynload/_testcapimodule.so %changelog +* Sat Jul 4 2009 Jonathan Steffan - 2.6-11 +- Move python-config to devel subpackage (#506153) +- Update BuildRoot for new standard + * Sun Jun 28 2009 Jonathan Steffan - 2.6-10 - Update python-tools description (#448940) From jonquark at fedoraproject.org Sat Jul 4 21:30:20 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sat, 4 Jul 2009 21:30:20 +0000 (UTC) Subject: rpms/diffuse/F-11 .cvsignore,1.3,1.4 sources,1.4,1.5 Message-ID: <20090704213020.B6E7E11C02C3@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6107 Modified Files: .cvsignore sources Log Message: Fix update to 0.3.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Mar 2009 21:47:45 -0000 1.3 +++ .cvsignore 4 Jul 2009 21:29:50 -0000 1.4 @@ -1 +1 @@ -diffuse-0.3.1.tar.bz2 +diffuse-0.3.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 30 Jun 2009 18:31:43 -0000 1.4 +++ sources 4 Jul 2009 21:29:50 -0000 1.5 @@ -1 +1 @@ -4c483b557d270024704120adc2552c2c diffuse-0.3.3.tar.bz2 +706842d366676d4f754792f71489ec2a diffuse-0.3.4.tar.bz2 From pghmcfc at fedoraproject.org Sat Jul 4 21:33:49 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Sat, 4 Jul 2009 21:33:49 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/F-11 .cvsignore, 1.17, 1.18 perl-IO-Socket-SSL.spec, 1.20, 1.21 sources, 1.17, 1.18 Message-ID: <20090704213349.0DC6E11C02C3@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6975 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.26 (SECURITY FIX) verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a certificate with name www.exam in it Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-11/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 3 Apr 2009 09:20:34 -0000 1.17 +++ .cvsignore 4 Jul 2009 21:33:18 -0000 1.18 @@ -1 +1 @@ -IO-Socket-SSL-1.24.tar.gz +IO-Socket-SSL-1.26.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-11/perl-IO-Socket-SSL.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-IO-Socket-SSL.spec 3 Apr 2009 09:20:34 -0000 1.20 +++ perl-IO-Socket-SSL.spec 4 Jul 2009 21:33:18 -0000 1.21 @@ -4,7 +4,7 @@ # Name: perl-IO-Socket-SSL -Version: 1.24 +Version: 1.26 Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries @@ -57,9 +57,17 @@ done %defattr(-,root,root,-) %doc BUGS Changes README docs/ certs/ example/ util/ %{perl_vendorlib}/IO/ -%{_mandir}/man3/*.3* +%{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Sat Jul 4 2009 Paul Howarth - 1.26-1 +- Update to 1.26 (verify_hostname_of_cert matched only the prefix for the + hostname when no wildcard was given, e.g. www.example.org matched against a + certificate with name www.exam in it) + +* Fri Jul 3 2009 Paul Howarth - 1.25-1 +- Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) + * Thu Apr 2 2009 Paul Howarth - 1.24-1 - Update to 1.24 (add verify hostname scheme ftp, same as http) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 3 Apr 2009 09:20:34 -0000 1.17 +++ sources 4 Jul 2009 21:33:18 -0000 1.18 @@ -1 +1 @@ -53a407291bf9b3e09ae0f0cff90799a9 IO-Socket-SSL-1.24.tar.gz +096319c7ceea6d4f42a264c55a3ea318 IO-Socket-SSL-1.26.tar.gz From jonquark at fedoraproject.org Sat Jul 4 21:34:09 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sat, 4 Jul 2009 21:34:09 +0000 (UTC) Subject: rpms/diffuse/F-11 diffuse.spec,1.4,1.5 Message-ID: <20090704213409.6AE8E11C02C3@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6940 Modified Files: diffuse.spec Log Message: Try and work around incorrect tagging Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-11/diffuse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- diffuse.spec 4 Jul 2009 21:19:17 -0000 1.4 +++ diffuse.spec 4 Jul 2009 21:33:39 -0000 1.5 @@ -1,6 +1,6 @@ Name: diffuse Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical tool for comparing and merging text files Group: Development/Tools @@ -64,7 +64,7 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog -* Sat Jul 4 2009 Jon Levell - 0.3.4-1 +* Sat Jul 4 2009 Jon Levell - 0.3.4-2 - Update to new upstream release (patch no longer needed) * Tue Jun 30 2009 Jon Levell - 0.3.3-1 From pghmcfc at fedoraproject.org Sat Jul 4 21:41:58 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Sat, 4 Jul 2009 21:41:58 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/F-9 .cvsignore, 1.9, 1.10 perl-IO-Socket-SSL.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090704214158.0780711C0489@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9176/F-9 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.26 (SECURITY FIX) verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a certificate with name www.exam in it Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-9/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 18 Nov 2008 10:08:44 -0000 1.9 +++ .cvsignore 4 Jul 2009 21:41:27 -0000 1.10 @@ -1 +1 @@ -IO-Socket-SSL-1.18.tar.gz +IO-Socket-SSL-1.26.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-9/perl-IO-Socket-SSL.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-IO-Socket-SSL.spec 18 Nov 2008 10:08:44 -0000 1.12 +++ perl-IO-Socket-SSL.spec 4 Jul 2009 21:41:27 -0000 1.13 @@ -4,7 +4,7 @@ # Name: perl-IO-Socket-SSL -Version: 1.18 +Version: 1.26 Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries @@ -57,9 +57,29 @@ done %defattr(-,root,root,-) %doc BUGS Changes README docs/ certs/ example/ util/ %{perl_vendorlib}/IO/ -%{_mandir}/man3/*.3* +%{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Sat Jul 4 2009 Paul Howarth - 1.26-1 +- Update to 1.26 (verify_hostname_of_cert matched only the prefix for the + hostname when no wildcard was given, e.g. www.example.org matched against a + certificate with name www.exam in it) + +* Fri Jul 3 2009 Paul Howarth - 1.25-1 +- Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) + +* Thu Apr 2 2009 Paul Howarth - 1.24-1 +- Update to 1.24 (add verify hostname scheme ftp, same as http) + +* Wed Feb 25 2009 Paul Howarth - 1.23-1 +- Update to 1.23 (complain when no certificates are provided) + +* Sat Jan 24 2009 Paul Howarth - 1.22-1 +- Update to latest upstream version: 1.22 + +* Thu Jan 22 2009 Paul Howarth - 1.20-1 +- Update to latest upstream version: 1.20 + * Tue Nov 18 2008 Paul Howarth - 1.18-1 - Update to latest upstream version: 1.18 - BR: perl(IO::Socket::INET6) for extra test coverage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-9/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 18 Nov 2008 10:08:44 -0000 1.9 +++ sources 4 Jul 2009 21:41:27 -0000 1.10 @@ -1 +1 @@ -2b278fb8784e0ba2d6d779ef7ef5f582 IO-Socket-SSL-1.18.tar.gz +096319c7ceea6d4f42a264c55a3ea318 IO-Socket-SSL-1.26.tar.gz From pghmcfc at fedoraproject.org Sat Jul 4 21:41:57 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Sat, 4 Jul 2009 21:41:57 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/F-10 .cvsignore, 1.13, 1.14 perl-IO-Socket-SSL.spec, 1.16, 1.17 sources, 1.13, 1.14 Message-ID: <20090704214157.CFCDC11C02C3@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9176/F-10 Modified Files: .cvsignore perl-IO-Socket-SSL.spec sources Log Message: Update to 1.26 (SECURITY FIX) verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a certificate with name www.exam in it Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-10/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 18 Nov 2008 10:02:59 -0000 1.13 +++ .cvsignore 4 Jul 2009 21:41:27 -0000 1.14 @@ -1 +1 @@ -IO-Socket-SSL-1.18.tar.gz +IO-Socket-SSL-1.26.tar.gz Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-10/perl-IO-Socket-SSL.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-IO-Socket-SSL.spec 18 Nov 2008 10:02:59 -0000 1.16 +++ perl-IO-Socket-SSL.spec 4 Jul 2009 21:41:27 -0000 1.17 @@ -4,7 +4,7 @@ # Name: perl-IO-Socket-SSL -Version: 1.18 +Version: 1.26 Release: 1%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries @@ -57,9 +57,29 @@ done %defattr(-,root,root,-) %doc BUGS Changes README docs/ certs/ example/ util/ %{perl_vendorlib}/IO/ -%{_mandir}/man3/*.3* +%{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Sat Jul 4 2009 Paul Howarth - 1.26-1 +- Update to 1.26 (verify_hostname_of_cert matched only the prefix for the + hostname when no wildcard was given, e.g. www.example.org matched against a + certificate with name www.exam in it) + +* Fri Jul 3 2009 Paul Howarth - 1.25-1 +- Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240) + +* Thu Apr 2 2009 Paul Howarth - 1.24-1 +- Update to 1.24 (add verify hostname scheme ftp, same as http) + +* Wed Feb 25 2009 Paul Howarth - 1.23-1 +- Update to 1.23 (complain when no certificates are provided) + +* Sat Jan 24 2009 Paul Howarth - 1.22-1 +- Update to latest upstream version: 1.22 + +* Thu Jan 22 2009 Paul Howarth - 1.20-1 +- Update to latest upstream version: 1.20 + * Tue Nov 18 2008 Paul Howarth - 1.18-1 - Update to latest upstream version: 1.18 - BR: perl(IO::Socket::INET6) for extra test coverage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-10/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 18 Nov 2008 10:02:59 -0000 1.13 +++ sources 4 Jul 2009 21:41:27 -0000 1.14 @@ -1 +1 @@ -2b278fb8784e0ba2d6d779ef7ef5f582 IO-Socket-SSL-1.18.tar.gz +096319c7ceea6d4f42a264c55a3ea318 IO-Socket-SSL-1.26.tar.gz From pkgdb at fedoraproject.org Sat Jul 4 23:27:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 23:27:57 +0000 Subject: [pkgdb] wordpress-mu: nb has requested watchcommits Message-ID: <20090704232757.4614C10F896@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on wordpress-mu (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu From pkgdb at fedoraproject.org Sat Jul 4 23:28:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 04 Jul 2009 23:28:02 +0000 Subject: [pkgdb] wordpress-mu: nb has requested watchbugzilla Message-ID: <20090704232802.7605B10F89C@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on wordpress-mu (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wordpress-mu From davej at fedoraproject.org Sun Jul 5 00:39:09 2009 From: davej at fedoraproject.org (Dave Jones) Date: Sun, 5 Jul 2009 00:39:09 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc2.bz2.sign, NONE, 1.1 .cvsignore, 1.1091, 1.1092 kernel.spec, 1.1604, 1.1605 sources, 1.1049, 1.1050 upstream, 1.963, 1.964 patch-2.6.31-rc1.bz2.sign, 1.1, NONE Message-ID: <20090705003909.C163411C02C3@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8837 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc2.bz2.sign Removed Files: patch-2.6.31-rc1.bz2.sign Log Message: 2.6.31-rc2 --- NEW FILE patch-2.6.31-rc2.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKT6oJyGugalF9Dw4RAhW7AJ9tjkuhQjP7FpuuGM4af9CeAgqBnACgjeMK EibqVGTKHPjKEH93EpwzAVc= =X1d9 -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1091 retrieving revision 1.1092 diff -u -p -r1.1091 -r1.1092 --- .cvsignore 4 Jul 2009 04:42:07 -0000 1.1091 +++ .cvsignore 5 Jul 2009 00:38:37 -0000 1.1092 @@ -5,5 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 -patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git11.bz2 +patch-2.6.31-rc2.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1604 retrieving revision 1.1605 diff -u -p -r1.1604 -r1.1605 --- kernel.spec 4 Jul 2009 04:42:07 -0000 1.1604 +++ kernel.spec 5 Jul 2009 00:38:37 -0000 1.1605 @@ -56,9 +56,9 @@ Summary: The Linux kernel # The next upstream release sublevel (base_sublevel+1) %define upstream_sublevel %(echo $((%{base_sublevel} + 1))) # The rc snapshot level -%define rcrev 1 +%define rcrev 2 # The git snapshot level -%define gitrev 11 +%define gitrev 0 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -104,7 +104,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 1 +%define rawhide_skip_docs 0 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1840,6 +1840,9 @@ fi # and build. %changelog +* Sat Jul 04 2009 Dave Jones 2.6.31-0.42.rc2 +- 2.6.31-rc2 + * Sat Jul 04 2009 Chuck Ebbert - 2.6.31-rc1-git11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1049 retrieving revision 1.1050 diff -u -p -r1.1049 -r1.1050 --- sources 4 Jul 2009 04:42:07 -0000 1.1049 +++ sources 5 Jul 2009 00:38:37 -0000 1.1050 @@ -1,3 +1,2 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 -33d2d730beb66aa82349df8b6096fd91 patch-2.6.31-rc1.bz2 -ba54f899b51f55608446a3e045ba93b0 patch-2.6.31-rc1-git11.bz2 +a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.963 retrieving revision 1.964 diff -u -p -r1.963 -r1.964 --- upstream 4 Jul 2009 04:42:07 -0000 1.963 +++ upstream 5 Jul 2009 00:38:38 -0000 1.964 @@ -1,3 +1,2 @@ linux-2.6.30.tar.bz2 -patch-2.6.31-rc1.bz2 -patch-2.6.31-rc1-git11.bz2 +patch-2.6.31-rc2.bz2 --- patch-2.6.31-rc1.bz2.sign DELETED --- From davej at fedoraproject.org Sun Jul 5 00:39:57 2009 From: davej at fedoraproject.org (Dave Jones) Date: Sun, 5 Jul 2009 00:39:57 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc1-git11.bz2.sign,1.1,NONE Message-ID: <20090705003957.DEB3511C02C3@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9114 Removed Files: patch-2.6.31-rc1-git11.bz2.sign Log Message: 2.6.31-rc2 --- patch-2.6.31-rc1-git11.bz2.sign DELETED --- From pbrobinson at fedoraproject.org Sun Jul 5 01:23:49 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sun, 5 Jul 2009 01:23:49 +0000 (UTC) Subject: rpms/abiword/devel .cvsignore, 1.26, 1.27 abiword.spec, 1.82, 1.83 sources, 1.26, 1.27 Message-ID: <20090705012349.CE43211C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17798 Modified Files: .cvsignore abiword.spec sources Log Message: - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 21 Jun 2009 13:26:21 -0000 1.26 +++ .cvsignore 5 Jul 2009 01:23:48 -0000 1.27 @@ -1,2 +1,2 @@ -abiword-2.7.5.tar.gz -abiword-docs-2.7.5.tar.gz +abiword-2.7.6.tar.gz +abiword-docs-2.7.6.tar.gz Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- abiword.spec 26 Jun 2009 12:46:20 -0000 1.82 +++ abiword.spec 5 Jul 2009 01:23:48 -0000 1.83 @@ -1,13 +1,13 @@ %define majorversion 2 %define minorversion 7 -%define microversion 5 +%define microversion 6 %define olpc_build 0 Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 3%{?dist} +Release: 1%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -180,6 +180,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Sun Jul 05 2009 Peter Robinson - 1:2.7.6-1 +- New upstream release + * Fri Jun 26 2009 Peter Robinson - 1:2.7.5-3 - Drop old dependencies. Fixes bug 506023 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 21 Jun 2009 13:26:21 -0000 1.26 +++ sources 5 Jul 2009 01:23:48 -0000 1.27 @@ -1,2 +1,2 @@ -07df602ba17a8b8d3a1fd60a8fa3a6aa abiword-2.7.5.tar.gz -397ffc818f647a8f4ec351a28905c6a8 abiword-docs-2.7.5.tar.gz +dd5057e274488be02c0f504e51ca6b31 abiword-2.7.6.tar.gz +a0051e8a9ef8859adc87fd45e8744c2c abiword-docs-2.7.6.tar.gz From pbrobinson at fedoraproject.org Sun Jul 5 01:27:06 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sun, 5 Jul 2009 01:27:06 +0000 (UTC) Subject: rpms/abiword/devel abiword.spec,1.83,1.84 Message-ID: <20090705012706.978FF11C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18445 Modified Files: abiword.spec Log Message: - Remove old patch Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- abiword.spec 5 Jul 2009 01:23:48 -0000 1.83 +++ abiword.spec 5 Jul 2009 01:27:06 -0000 1.84 @@ -7,7 +7,7 @@ Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -80,7 +80,6 @@ Includes and definitions for developing %setup -q # patch abiword -%patch1 -p1 -b .desktop %if 0%{?fedora} >= 9 %patch2 -p1 -b .boolean %endif @@ -180,6 +179,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Sun Jul 05 2009 Peter Robinson - 1:2.7.6-2 +- Remove old patch + * Sun Jul 05 2009 Peter Robinson - 1:2.7.6-1 - New upstream release From pbrobinson at fedoraproject.org Sun Jul 5 01:28:21 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sun, 5 Jul 2009 01:28:21 +0000 (UTC) Subject: rpms/pyabiword/devel .cvsignore, 1.4, 1.5 pyabiword.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090705012821.8A75F11C02C3@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/pyabiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18752 Modified Files: .cvsignore pyabiword.spec sources Log Message: - Upgrade to pyabiword 0.7.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pyabiword/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 Mar 2009 18:19:53 -0000 1.4 +++ .cvsignore 5 Jul 2009 01:28:21 -0000 1.5 @@ -1 +1 @@ -pyabiword-0.6.3.tar.gz +pyabiword-0.7.6.tar.gz Index: pyabiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyabiword/devel/pyabiword.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pyabiword.spec 9 Mar 2009 18:19:53 -0000 1.5 +++ pyabiword.spec 5 Jul 2009 01:28:21 -0000 1.6 @@ -3,11 +3,11 @@ # normally 2.6 would be enough for a dependency, but # abiword 2.6.7 introduced abi_widget_render_page_to_image, # which is is used by OLPC -%define abiword_api_version 2.6.7 +%define abiword_api_version 2.7.6 Summary: Python bindings for libabiword Name: pyabiword -Version: 0.6.3 +Version: 0.7.6 Release: 1%{?dist} Source0: pyabiword-%{version}.tar.gz URL: http://abisource.com/downloads/pyabiword/%{version}/pyabiword-%{version}.tar.gz @@ -17,9 +17,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: libabiword-devel >= %{abiword_api_version} BuildRequires: pygtk2-devel BuildRequires: gtk2-devel -BuildRequires: libglade2-devel -BuildRequires: libgnomeprintui22-devel -BuildRequires: goffice04-devel BuildRequires: enchant-devel BuildRequires: fribidi-devel BuildRequires: wv-devel @@ -68,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/pyabiword.defs %changelog +* Sun Jul 05 2009 Peter Robinson - 0.7.6-1 +- Upgrade to pyabiword 0.7.6 + * Mon Mar 09 2009 Marc Maurer - 0.6.3-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pyabiword/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 Mar 2009 18:19:53 -0000 1.4 +++ sources 5 Jul 2009 01:28:21 -0000 1.5 @@ -1 +1 @@ -f308b4cd38d5ea0e8a65b9452ea33359 pyabiword-0.6.3.tar.gz +3df7f61d2d6587126e8504a12b249245 pyabiword-0.7.6.tar.gz From jonquark at fedoraproject.org Sun Jul 5 08:24:30 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sun, 5 Jul 2009 08:24:30 +0000 (UTC) Subject: rpms/diffuse/F-10 diffuse.spec, 1.3, 1.4 diffuse-0.3.3-cvsrel.patch, 1.1, NONE Message-ID: <20090705082430.6416711C0097@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18962 Modified Files: diffuse.spec Removed Files: diffuse-0.3.3-cvsrel.patch Log Message: Update to diffuse 0.3.4 Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-10/diffuse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- diffuse.spec 30 Jun 2009 18:56:16 -0000 1.3 +++ diffuse.spec 5 Jul 2009 08:23:58 -0000 1.4 @@ -1,13 +1,12 @@ Name: diffuse -Version: 0.3.3 -Release: 1%{?dist} +Version: 0.3.4 +Release: 2%{?dist} Summary: Graphical tool for comparing and merging text files Group: Development/Tools License: GPLv2+ URL: http://%{name}.sourceforge.net/ Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2 -Patch0: diffuse-0.3.3-cvsrel.patch BuildRequires: desktop-file-utils, scrollkeeper Requires: python >= 2.4, pygtk2 >= 2.10 @@ -26,7 +25,6 @@ Monotone, Subversion, and SVK repositori %prep %setup -q -%patch0 -p1 %build @@ -66,6 +64,8 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog +* Sat Jul 4 2009 Jon Levell - 0.3.4-2 +- Update to new upstream release (patch no longer needed) * Tue Jun 30 2009 Jon Levell - 0.3.3-1 - Update to latest upstream release --- diffuse-0.3.3-cvsrel.patch DELETED --- From jonquark at fedoraproject.org Sun Jul 5 08:34:15 2009 From: jonquark at fedoraproject.org (Jon Levell) Date: Sun, 5 Jul 2009 08:34:15 +0000 (UTC) Subject: rpms/diffuse/F-10 .cvsignore, 1.3, 1.4 diffuse.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090705083415.D455311C0097@cvs1.fedora.phx.redhat.com> Author: jonquark Update of /cvs/pkgs/rpms/diffuse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20317 Modified Files: .cvsignore diffuse.spec sources Log Message: Try and fix sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Mar 2009 21:59:54 -0000 1.3 +++ .cvsignore 5 Jul 2009 08:33:45 -0000 1.4 @@ -1 +1 @@ -diffuse-0.3.1.tar.bz2 +diffuse-0.3.4.tar.bz2 Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-10/diffuse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- diffuse.spec 5 Jul 2009 08:23:58 -0000 1.4 +++ diffuse.spec 5 Jul 2009 08:33:45 -0000 1.5 @@ -1,6 +1,6 @@ Name: diffuse Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Graphical tool for comparing and merging text files Group: Development/Tools @@ -64,7 +64,7 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog -* Sat Jul 4 2009 Jon Levell - 0.3.4-2 +* Sat Jul 4 2009 Jon Levell - 0.3.4-3 - Update to new upstream release (patch no longer needed) * Tue Jun 30 2009 Jon Levell - 0.3.3-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 30 Jun 2009 18:56:16 -0000 1.4 +++ sources 5 Jul 2009 08:33:45 -0000 1.5 @@ -1 +1 @@ -4c483b557d270024704120adc2552c2c diffuse-0.3.3.tar.bz2 +706842d366676d4f754792f71489ec2a diffuse-0.3.4.tar.bz2 From mwiriadi at fedoraproject.org Sun Jul 5 10:48:19 2009 From: mwiriadi at fedoraproject.org (Marc Wiriadisastra) Date: Sun, 5 Jul 2009 10:48:19 +0000 (UTC) Subject: rpms/mediatomb/devel import.log, 1.4, 1.5 mediatomb-service-disable.patch, 1.1, 1.2 mediatomb.spec, 1.12, 1.13 Message-ID: <20090705104819.A7D2211C0097@cvs1.fedora.phx.redhat.com> Author: mwiriadi Update of /cvs/pkgs/rpms/mediatomb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7656/devel Modified Files: import.log mediatomb-service-disable.patch mediatomb.spec Log Message: Change requires from mysql to mysql-libs closes bz#483635 Change priority of system-init scripts hopefully closes bz#487877 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 28 Jun 2009 04:09:56 -0000 1.4 +++ import.log 5 Jul 2009 10:47:48 -0000 1.5 @@ -2,3 +2,4 @@ mediatomb-0_11_0-2_fc9:HEAD:mediatomb-0. mediatomb-0_11_0-3_fc9:HEAD:mediatomb-0.11.0-3.fc9.src.rpm:1223383635 mediatomb-0_11_0-5_fc10:HEAD:mediatomb-0.11.0-5.fc10.src.rpm:1232772951 mediatomb-0_11_0-8_fc11:HEAD:mediatomb-0.11.0-8.fc11.src.rpm:1246162149 +mediatomb-0_11_0-9_fc11:HEAD:mediatomb-0.11.0-9.fc11.src.rpm:1246790796 mediatomb-service-disable.patch: Index: mediatomb-service-disable.patch =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/devel/mediatomb-service-disable.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediatomb-service-disable.patch 2 Mar 2008 16:54:36 -0000 1.1 +++ mediatomb-service-disable.patch 5 Jul 2009 10:47:48 -0000 1.2 @@ -5,7 +5,7 @@ # mediatomb This script starts and stops the mediatomb daemon # -# chkconfig: 2345 95 30 -+# chkconfig: - 95 30 ++# chkconfig: - 20 80 # processname: mediatomb # description: mediatomb is a daemon process which provides a UPnP service # config: /etc/mediatomb Index: mediatomb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/devel/mediatomb.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mediatomb.spec 28 Jun 2009 04:09:56 -0000 1.12 +++ mediatomb.spec 5 Jul 2009 10:47:48 -0000 1.13 @@ -1,7 +1,7 @@ Version: 0.11.0 Summary: UPnP AV MediaServer Name: mediatomb -Release: 8%{?dist} +Release: 9%{?dist} Summary: MediaTomb - UPnP AV Mediaserver for Linux License: GPLv2 Group: Applications/Multimedia @@ -17,7 +17,7 @@ BuildRequires: xulrunner-devel %else BuildRequires: firefox-devel %endif -Requires: mysql, expat +Requires: mysql-libs, expat Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -36,8 +36,10 @@ be found on http://www.upnp.org/. %patch1 -p1 %build -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 11 %configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9.1/js/ +%else if 0%{?fedora} = 10 +%configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9/js/ %else %configure --enable-inotify --enable-taglib --enable-libjs %endif @@ -99,6 +101,10 @@ fi %{_initrddir}/mediatomb %changelog +* Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-9 +- Change requires from mysql to mysql-libs closes bz#483635 +- Change priority of system-init scripts closes bz#487877 + * Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-8 - Added upstream patch which fixes compile time errors and a couple of segfaults From mwiriadi at fedoraproject.org Sun Jul 5 10:50:35 2009 From: mwiriadi at fedoraproject.org (Marc Wiriadisastra) Date: Sun, 5 Jul 2009 10:50:35 +0000 (UTC) Subject: rpms/mediatomb/F-11 import.log, 1.4, 1.5 mediatomb-service-disable.patch, 1.1, 1.2 mediatomb.spec, 1.12, 1.13 Message-ID: <20090705105035.3AD8411C0097@cvs1.fedora.phx.redhat.com> Author: mwiriadi Update of /cvs/pkgs/rpms/mediatomb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8212/F-11 Modified Files: import.log mediatomb-service-disable.patch mediatomb.spec Log Message: Change requires from mysql to mysql-libs closes bz#483635 Change priority of system-init scripts hopefully closes bz#487877 Also fixes the building of the package for Fedora 9 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-11/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 28 Jun 2009 04:14:05 -0000 1.4 +++ import.log 5 Jul 2009 10:50:34 -0000 1.5 @@ -2,3 +2,4 @@ mediatomb-0_11_0-2_fc9:HEAD:mediatomb-0. mediatomb-0_11_0-3_fc9:HEAD:mediatomb-0.11.0-3.fc9.src.rpm:1223383635 mediatomb-0_11_0-5_fc10:HEAD:mediatomb-0.11.0-5.fc10.src.rpm:1232772951 mediatomb-0_11_0-8_fc11:F-11:mediatomb-0.11.0-8.fc11.src.rpm:1246162372 +mediatomb-0_11_0-9_fc11:F-11:mediatomb-0.11.0-9.fc11.src.rpm:1246790994 mediatomb-service-disable.patch: Index: mediatomb-service-disable.patch =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-11/mediatomb-service-disable.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediatomb-service-disable.patch 2 Mar 2008 16:54:36 -0000 1.1 +++ mediatomb-service-disable.patch 5 Jul 2009 10:50:34 -0000 1.2 @@ -5,7 +5,7 @@ # mediatomb This script starts and stops the mediatomb daemon # -# chkconfig: 2345 95 30 -+# chkconfig: - 95 30 ++# chkconfig: - 20 80 # processname: mediatomb # description: mediatomb is a daemon process which provides a UPnP service # config: /etc/mediatomb Index: mediatomb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-11/mediatomb.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mediatomb.spec 28 Jun 2009 04:14:05 -0000 1.12 +++ mediatomb.spec 5 Jul 2009 10:50:35 -0000 1.13 @@ -1,7 +1,7 @@ Version: 0.11.0 Summary: UPnP AV MediaServer Name: mediatomb -Release: 8%{?dist} +Release: 9%{?dist} Summary: MediaTomb - UPnP AV Mediaserver for Linux License: GPLv2 Group: Applications/Multimedia @@ -17,7 +17,7 @@ BuildRequires: xulrunner-devel %else BuildRequires: firefox-devel %endif -Requires: mysql, expat +Requires: mysql-libs, expat Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -36,8 +36,10 @@ be found on http://www.upnp.org/. %patch1 -p1 %build -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 11 %configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9.1/js/ +%else if 0%{?fedora} = 10 +%configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9/js/ %else %configure --enable-inotify --enable-taglib --enable-libjs %endif @@ -99,6 +101,10 @@ fi %{_initrddir}/mediatomb %changelog +* Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-9 +- Change requires from mysql to mysql-libs closes bz#483635 +- Change priority of system-init scripts closes bz#487877 + * Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-8 - Added upstream patch which fixes compile time errors and a couple of segfaults From mwiriadi at fedoraproject.org Sun Jul 5 10:52:11 2009 From: mwiriadi at fedoraproject.org (Marc Wiriadisastra) Date: Sun, 5 Jul 2009 10:52:11 +0000 (UTC) Subject: rpms/mediatomb/F-10 import.log, 1.3, 1.4 mediatomb-service-disable.patch, 1.1, 1.2 mediatomb.spec, 1.8, 1.9 Message-ID: <20090705105211.6227111C0097@cvs1.fedora.phx.redhat.com> Author: mwiriadi Update of /cvs/pkgs/rpms/mediatomb/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8510/F-10 Modified Files: import.log mediatomb-service-disable.patch mediatomb.spec Log Message: Change requires from mysql to mysql-libs closes bz#483635 Change priority of system-init scripts hopefully closes bz#487877 Fix the building of the package on Fedora 10 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 28 Jun 2009 04:16:17 -0000 1.3 +++ import.log 5 Jul 2009 10:52:11 -0000 1.4 @@ -1,3 +1,4 @@ mediatomb-0_11_0-2_fc9:HEAD:mediatomb-0.11.0-2.fc9.src.rpm:1223381865 mediatomb-0_11_0-3_fc9:HEAD:mediatomb-0.11.0-3.fc9.src.rpm:1223383635 mediatomb-0_11_0-8_fc11:F-10:mediatomb-0.11.0-8.fc11.src.rpm:1246162539 +mediatomb-0_11_0-9_fc11:F-10:mediatomb-0.11.0-9.fc11.src.rpm:1246791070 mediatomb-service-disable.patch: Index: mediatomb-service-disable.patch =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-10/mediatomb-service-disable.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediatomb-service-disable.patch 2 Mar 2008 16:54:36 -0000 1.1 +++ mediatomb-service-disable.patch 5 Jul 2009 10:52:11 -0000 1.2 @@ -5,7 +5,7 @@ # mediatomb This script starts and stops the mediatomb daemon # -# chkconfig: 2345 95 30 -+# chkconfig: - 95 30 ++# chkconfig: - 20 80 # processname: mediatomb # description: mediatomb is a daemon process which provides a UPnP service # config: /etc/mediatomb Index: mediatomb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-10/mediatomb.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mediatomb.spec 28 Jun 2009 04:16:17 -0000 1.8 +++ mediatomb.spec 5 Jul 2009 10:52:11 -0000 1.9 @@ -1,7 +1,7 @@ Version: 0.11.0 Summary: UPnP AV MediaServer Name: mediatomb -Release: 8%{?dist} +Release: 9%{?dist} Summary: MediaTomb - UPnP AV Mediaserver for Linux License: GPLv2 Group: Applications/Multimedia @@ -17,7 +17,7 @@ BuildRequires: xulrunner-devel %else BuildRequires: firefox-devel %endif -Requires: mysql, expat +Requires: mysql-libs, expat Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -36,8 +36,10 @@ be found on http://www.upnp.org/. %patch1 -p1 %build -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 11 %configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9.1/js/ +%else if 0%{?fedora} = 10 +%configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9/js/ %else %configure --enable-inotify --enable-taglib --enable-libjs %endif @@ -99,6 +101,10 @@ fi %{_initrddir}/mediatomb %changelog +* Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-9 +- Change requires from mysql to mysql-libs closes bz#483635 +- Change priority of system-init scripts closes bz#487877 + * Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-8 - Added upstream patch which fixes compile time errors and a couple of segfaults From mwiriadi at fedoraproject.org Sun Jul 5 10:54:09 2009 From: mwiriadi at fedoraproject.org (Marc Wiriadisastra) Date: Sun, 5 Jul 2009 10:54:09 +0000 (UTC) Subject: rpms/mediatomb/F-9 mediatomb_fedora11.patch, NONE, 1.1 import.log, 1.2, 1.3 mediatomb-service-disable.patch, 1.1, 1.2 mediatomb.spec, 1.6, 1.7 mediatomb_curl.patch, 1.1, NONE Message-ID: <20090705105409.3CE3B11C0097@cvs1.fedora.phx.redhat.com> Author: mwiriadi Update of /cvs/pkgs/rpms/mediatomb/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8981/F-9 Modified Files: import.log mediatomb-service-disable.patch mediatomb.spec Added Files: mediatomb_fedora11.patch Removed Files: mediatomb_curl.patch Log Message: Change requires from mysql to mysql-libs closes bz#483635 Change priority of system-init scripts hopefully closes bz#487877 Fix the building of the package on other versions mediatomb_fedora11.patch: --- NEW FILE mediatomb_fedora11.patch --- diff -Naur mediatomb-0.11.0/src/storage/mysql/mysql_storage.cc mediatomb-0.11.0_patched/src/storage/mysql/mysql_storage.cc --- mediatomb-0.11.0/src/storage/mysql/mysql_storage.cc 2008-03-01 23:48:34.000000000 +0100 +++ mediatomb-0.11.0_patched/src/storage/mysql/mysql_storage.cc 2009-06-27 20:50:08.000000000 +0200 @@ -124,7 +124,6 @@ throw _Exception(_("could not create pthread_key")); } mysql_server_init(0, NULL, NULL); - my_init(); pthread_setspecific(mysql_init_key, (void *) 1); Ref config = ConfigManager::getInstance(); diff -Naur mediatomb-0.11.0/src/tools.cc mediatomb-0.11.0_patched/src/tools.cc --- mediatomb-0.11.0/src/tools.cc 2008-03-01 23:48:36.000000000 +0100 +++ mediatomb-0.11.0_patched/src/tools.cc 2009-06-27 20:52:49.000000000 +0200 @@ -303,8 +303,8 @@ Ref buf(new StringBuffer(len / 2)); for (int i = 0; i < len; i += 2) { - char *chi = strchr(HEX_CHARS, ptr[i]); - char *clo = strchr(HEX_CHARS, ptr[i + 1]); + const char *chi = strchr(HEX_CHARS, ptr[i]); + const char *clo = strchr(HEX_CHARS, ptr[i + 1]); int hi, lo; if (chi) @@ -397,7 +397,7 @@ char clo = data[i++]; int hi, lo; - char *pos; + const char *pos; pos = strchr(hex, chi); if (!pos) @@ -981,15 +981,13 @@ void getTimespecNow(struct timespec *ts) { -#ifdef HAVE_CLOCK_GETTIME - clock_gettime(CLOCK_REALTIME, ts); -#else - struct timeval tv; - gettimeofday(&tv, NULL); + int ret = gettimeofday(&tv, NULL); + if (ret != 0) + throw _Exception(_("gettimeofday failed: ") + mt_strerror(errno)); + ts->tv_sec = tv.tv_sec; ts->tv_nsec = tv.tv_usec * 1000; -#endif } long getDeltaMillis(struct timespec *first) @@ -1054,14 +1052,7 @@ #ifndef __CYGWIN__ if (path.charAt(0) != DIR_SEPARATOR) #else - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin - #warning !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin + #error !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! this function is not finished for Cygwin for (int i = 0; i < 20; i++) print_backtrace(); /// \todo this doesn't seem to be correct... @@ -1113,7 +1104,7 @@ *(str++) = DIR_SEPARATOR; *str = 0; - + result->len = strlen(result->data); return String(result); } @@ -1201,6 +1192,9 @@ Ref > parseCommandLine(String line, String in, String out) { Ref > params = split_string(line, ' '); + if ((in == nil) && (out == nil)) + return params; + for (int i = 0; i < params->size(); i++) { String param = params->get(i); @@ -1302,6 +1296,11 @@ FILE *f; char buffer[7]; f = fopen(ogg_filename.c_str(), "rb"); + if (!f) + { + throw _Exception(_("Error opening ") + ogg_filename + _(" : ") + + mt_strerror(errno)); + } if (fread(buffer, 1, 4, f) != 4) { @@ -1439,13 +1438,12 @@ } else { - sum->tv_nsec += 1000000000 + now.tv_nsec - last_start->tv_nsec; - //log_debug("adding 1 sec %ld nsec\n", 1000000000 + now.tv_nsec - last_start->tv_nsec); - sum->tv_sec ++; + sum->tv_nsec += 1000000000L - last_start->tv_nsec + now.tv_nsec; + sum->tv_sec --; } - if (sum->tv_nsec >= 1000000000) + if(sum->tv_nsec >= 1000000000L) { - sum->tv_nsec -= 1000000000; + sum->tv_nsec -= 1000000000L; sum->tv_sec ++; } diff -Naur mediatomb-0.11.0/src/url.cc mediatomb-0.11.0_patched/src/url.cc --- mediatomb-0.11.0/src/url.cc 2008-03-01 23:48:36.000000000 +0100 +++ mediatomb-0.11.0_patched/src/url.cc 2009-06-27 20:53:49.000000000 +0200 @@ -75,7 +75,7 @@ if (only_header) { - curl_easy_setopt(curl_handle, CURLOPT_NOBODY); + curl_easy_setopt(curl_handle, CURLOPT_NOBODY, 1); curl_easy_setopt(curl_handle, CURLOPT_HEADERFUNCTION, URL::dl); curl_easy_setopt(curl_handle, CURLOPT_HEADERDATA, (void *)buffer.getPtr()); Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-9/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 7 Oct 2008 12:49:19 -0000 1.2 +++ import.log 5 Jul 2009 10:54:08 -0000 1.3 @@ -1,2 +1,3 @@ mediatomb-0_11_0-2_fc9:F-9:mediatomb-0.11.0-2.fc9.src.rpm:1223381990 mediatomb-0_11_0-3_fc9:F-9:mediatomb-0.11.0-3.fc9.src.rpm:1223383727 +mediatomb-0_11_0-9_fc11:F-9:mediatomb-0.11.0-9.fc11.src.rpm:1246791182 mediatomb-service-disable.patch: Index: mediatomb-service-disable.patch =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-9/mediatomb-service-disable.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediatomb-service-disable.patch 2 Mar 2008 16:54:36 -0000 1.1 +++ mediatomb-service-disable.patch 5 Jul 2009 10:54:08 -0000 1.2 @@ -5,7 +5,7 @@ # mediatomb This script starts and stops the mediatomb daemon # -# chkconfig: 2345 95 30 -+# chkconfig: - 95 30 ++# chkconfig: - 20 80 # processname: mediatomb # description: mediatomb is a daemon process which provides a UPnP service # config: /etc/mediatomb Index: mediatomb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/F-9/mediatomb.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mediatomb.spec 7 Oct 2008 12:49:19 -0000 1.6 +++ mediatomb.spec 5 Jul 2009 10:54:08 -0000 1.7 @@ -1,23 +1,23 @@ Version: 0.11.0 Summary: UPnP AV MediaServer Name: mediatomb -Release: 3%{?dist} +Release: 9%{?dist} Summary: MediaTomb - UPnP AV Mediaserver for Linux License: GPLv2 Group: Applications/Multimedia Source: http://downloads.sourceforge.net/mediatomb/%{name}-%{version}.tar.gz Patch0: mediatomb-service-disable.patch -Patch1: mediatomb_curl.patch +Patch1: mediatomb_fedora11.patch URL: http://mediatomb.cc Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: sqlite-devel, mysql-devel, libexif-devel, id3lib-devel, file-devel, js-devel, zlib-devel, taglib-devel -BuildRequires: expat-devel +BuildRequires: expat-devel, libcurl-devel %if 0%{?fedora} >= 9 BuildRequires: xulrunner-devel %else BuildRequires: firefox-devel %endif -Requires: mysql, expat +Requires: mysql-libs, expat Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -36,7 +36,9 @@ be found on http://www.upnp.org/. %patch1 -p1 %build -%if 0%{?fedora} >= 9 +%if 0%{?fedora} >= 11 +%configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9.1/js/ +%else if 0%{?fedora} = 10 %configure --enable-inotify --enable-taglib --enable-libjs --with-js-h=%{_includedir}/xulrunner-sdk-1.9/js/ %else %configure --enable-inotify --enable-taglib --enable-libjs @@ -94,17 +96,41 @@ fi %attr(-,mediatomb,mediatomb)%ghost %{_sysconfdir}/%{name}/* %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %{_bindir}/mediatomb -%{_datadir}/%{name}/* +%{_datadir}/%{name}/ %{_mandir}/man1/* %{_initrddir}/mediatomb %changelog +* Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-9 +- Change requires from mysql to mysql-libs closes bz#483635 +- Change priority of system-init scripts closes bz#487877 + +* Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-8 +- Added upstream patch which fixes compile time errors and a couple of segfaults + +* Wed Feb 25 2009 Fedora Release Engineering - 0.11.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 16 2009 Caol??n McNamara 0.11.0-6 +- needs to point to xulrunner/js 1.9.1 now +- include my_sys.h for my_init +- fix some char* -> const char* + +* Sat Jan 24 2009 Marc Wiriadisastra 0.11.0-5 +- Rebuild for mysql dependancy + +* Mon Dec 1 2008 Michael Schwendt 0.11.0-4 +- Include /usr/share/mediatomb directory. + * Tue Oct 7 2008 Marc Wiriadisastra 0.11.0-3 - Added the line change for xulrunner * Tue Oct 7 2008 Marc Wiriadisastra 0.11.0-2 - Added patch from upstream for Curl +* Thu Aug 28 2008 Michael Schwendt 0.11.0-2 +- Include /usr/share/mediatomb directory. + * Sun Mar 2 2008 Marc Wiriadisastra 0.11.0-1 - New release version 0.11.0 - Upstream has asked me to remove libextractor --- mediatomb_curl.patch DELETED --- From pkgdb at fedoraproject.org Sun Jul 5 11:03:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:03:13 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110313.D7A1A10F89B@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchbugzilla acl on awesfx (Fedora devel) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:03:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:03:14 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110314.EB55910F8A4@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchcommits acl on awesfx (Fedora devel) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:03:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:03:15 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110316.21EBC10F8A8@bastion2.fedora.phx.redhat.com> guidograzioli has set the commit acl on awesfx (Fedora devel) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:14 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110414.D486410F897@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchbugzilla acl on awesfx (Fedora 11) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:15 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110415.84F9610F8A6@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchcommits acl on awesfx (Fedora 11) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:16 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110416.C7E2B10F8A9@bastion2.fedora.phx.redhat.com> guidograzioli has set the commit acl on awesfx (Fedora 11) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:17 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110418.11E1C10F8AD@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchbugzilla acl on awesfx (Fedora 10) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:18 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110418.7C82F10F8B2@bastion2.fedora.phx.redhat.com> guidograzioli has set the watchcommits acl on awesfx (Fedora 10) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From pkgdb at fedoraproject.org Sun Jul 5 11:04:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 05 Jul 2009 11:04:20 +0000 Subject: [pkgdb] awesfx had acl change status Message-ID: <20090705110420.D03FE10F8B5@bastion2.fedora.phx.redhat.com> guidograzioli has set the commit acl on awesfx (Fedora 10) to Approved for chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/awesfx From fschwarz at fedoraproject.org Sun Jul 5 11:26:31 2009 From: fschwarz at fedoraproject.org (Felix Schwarz) Date: Sun, 5 Jul 2009 11:26:31 +0000 (UTC) Subject: rpms/python-zope-interface/devel .cvsignore, 1.5, 1.6 python-zope-interface.spec, 1.13, 1.14 sources, 1.5, 1.6 Message-ID: <20090705112631.2B29D11C0097@cvs1.fedora.phx.redhat.com> Author: fschwarz Update of /cvs/pkgs/rpms/python-zope-interface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14934 Modified Files: .cvsignore python-zope-interface.spec sources Log Message: update to 3.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Apr 2009 13:07:15 -0000 1.5 +++ .cvsignore 5 Jul 2009 11:26:00 -0000 1.6 @@ -1 +1 @@ -zope.interface-3.5.1.tar.gz +zope.interface-3.5.2.tar.gz Index: python-zope-interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/devel/python-zope-interface.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-zope-interface.spec 5 Jun 2009 17:18:40 -0000 1.13 +++ python-zope-interface.spec 5 Jul 2009 11:26:00 -0000 1.14 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-zope-interface -Version: 3.5.1 -Release: 3%{?dist} +Version: 3.5.2 +Release: 1%{?dist} Summary: Zope 3 Interface Infrastructure Group: Development/Libraries License: ZPLv2.1 @@ -58,6 +58,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/zope.interface* %changelog +* Sun Jul 05 2009 Felix Schwarz 3.5.2-1 +- update to 3.5.2 + * Mon Jun 01 2009 Luke Macken 3.5.1-3 - Add python-setuptools-devel to the BuildRequires, so we generate egg-info Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 5 Apr 2009 13:07:15 -0000 1.5 +++ sources 5 Jul 2009 11:26:00 -0000 1.6 @@ -1 +1 @@ -685fc532550abb07cca6190c9cd2b901 zope.interface-3.5.1.tar.gz +7f650e26385a452a6e1148797aa11dfd zope.interface-3.5.2.tar.gz From fschwarz at fedoraproject.org Sun Jul 5 11:36:49 2009 From: fschwarz at fedoraproject.org (Felix Schwarz) Date: Sun, 5 Jul 2009 11:36:49 +0000 (UTC) Subject: rpms/python-zope-interface/F-11 .cvsignore, 1.5, 1.6 python-zope-interface.spec, 1.12, 1.13 sources, 1.5, 1.6 Message-ID: <20090705113649.E7C6911C0097@cvs1.fedora.phx.redhat.com> Author: fschwarz Update of /cvs/pkgs/rpms/python-zope-interface/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16873 Modified Files: .cvsignore python-zope-interface.spec sources Log Message: update to 3.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Apr 2009 13:07:15 -0000 1.5 +++ .cvsignore 5 Jul 2009 11:36:19 -0000 1.6 @@ -1 +1 @@ -zope.interface-3.5.1.tar.gz +zope.interface-3.5.2.tar.gz Index: python-zope-interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-11/python-zope-interface.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-zope-interface.spec 5 Apr 2009 14:51:17 -0000 1.12 +++ python-zope-interface.spec 5 Jul 2009 11:36:19 -0000 1.13 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-zope-interface -Version: 3.5.1 -Release: 2%{?dist} +Version: 3.5.2 +Release: 1%{?dist} Summary: Zope 3 Interface Infrastructure Group: Development/Libraries License: ZPLv2.1 @@ -58,6 +58,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/zope.interface* %changelog +* Sun Jul 05 2009 Felix Schwarz 3.5.2-1 +- update to 3.5.2 + * Sun Apr 05 2009 Felix Schwarz 3.5.1-2 - use correct source filename (upstream switched from zip to tar.gz) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 5 Apr 2009 13:07:15 -0000 1.5 +++ sources 5 Jul 2009 11:36:19 -0000 1.6 @@ -1 +1 @@ -685fc532550abb07cca6190c9cd2b901 zope.interface-3.5.1.tar.gz +7f650e26385a452a6e1148797aa11dfd zope.interface-3.5.2.tar.gz From fschwarz at fedoraproject.org Sun Jul 5 11:36:52 2009 From: fschwarz at fedoraproject.org (Felix Schwarz) Date: Sun, 5 Jul 2009 11:36:52 +0000 (UTC) Subject: rpms/python-zope-interface/F-10 .cvsignore, 1.4, 1.5 python-zope-interface.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090705113652.662E111C0097@cvs1.fedora.phx.redhat.com> Author: fschwarz Update of /cvs/pkgs/rpms/python-zope-interface/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16895 Modified Files: .cvsignore python-zope-interface.spec sources Log Message: update to 3.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 15 Nov 2008 18:42:36 -0000 1.4 +++ .cvsignore 5 Jul 2009 11:36:22 -0000 1.5 @@ -1 +1 @@ -zope.interface-3.5.0.zip +zope.interface-3.5.2.tar.gz Index: python-zope-interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-10/python-zope-interface.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-zope-interface.spec 18 Dec 2008 01:59:14 -0000 1.9 +++ python-zope-interface.spec 5 Jul 2009 11:36:22 -0000 1.10 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-zope-interface -Version: 3.5.0 -Release: 3%{?dist} +Version: 3.5.2 +Release: 1%{?dist} Summary: Zope 3 Interface Infrastructure Group: Development/Libraries License: ZPLv2.1 @@ -58,6 +58,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/zope.interface* %changelog +* Sun Jul 05 2009 Felix Schwarz 3.5.2-1 +- update to 3.5.2 + * Wed Dec 17 2008 Conrad Meyer - 3.5.0-3 - Make compatible with the new python-zope-filesystem. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Nov 2008 18:42:36 -0000 1.4 +++ sources 5 Jul 2009 11:36:22 -0000 1.5 @@ -1 +1 @@ -478d05add7cd7faf25a2fd880a739ddb zope.interface-3.5.0.zip +7f650e26385a452a6e1148797aa11dfd zope.interface-3.5.2.tar.gz From fschwarz at fedoraproject.org Sun Jul 5 11:41:57 2009 From: fschwarz at fedoraproject.org (Felix Schwarz) Date: Sun, 5 Jul 2009 11:41:57 +0000 (UTC) Subject: rpms/python-zope-interface/F-10 python-zope-interface.spec, 1.10, 1.11 Message-ID: <20090705114157.6C72E11C0097@cvs1.fedora.phx.redhat.com> Author: fschwarz Update of /cvs/pkgs/rpms/python-zope-interface/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17556 Modified Files: python-zope-interface.spec Log Message: forgot again to change the source suffix Index: python-zope-interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/F-10/python-zope-interface.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-zope-interface.spec 5 Jul 2009 11:36:22 -0000 1.10 +++ python-zope-interface.spec 5 Jul 2009 11:41:27 -0000 1.11 @@ -7,7 +7,7 @@ Summary: Zope 3 Interface Infrastructure Group: Development/Libraries License: ZPLv2.1 URL: http://pypi.python.org/pypi/zope.interface -Source0: http://pypi.python.org/packages/source/z/zope.interface/zope.interface-%{version}.zip +Source0: http://pypi.python.org/packages/source/z/zope.interface/zope.interface-%{version}.tar.gz Source1: ZPL-2.1.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel From jakub at fedoraproject.org Sun Jul 5 12:31:46 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Sun, 5 Jul 2009 12:31:46 +0000 (UTC) Subject: rpms/prelink/devel prelink.spec,1.54,1.55 Message-ID: <20090705123146.C4D1511C0097@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/prelink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25634 Modified Files: prelink.spec Log Message: 0.4.1-1 Index: prelink.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelink/devel/prelink.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- prelink.spec 2 Jul 2009 15:40:29 -0000 1.54 +++ prelink.spec 5 Jul 2009 12:31:16 -0000 1.55 @@ -28,6 +28,7 @@ and thus programs come up faster. %setup -q -n prelink %build +sed -i -e '/^prelink_LDADD/s/$/ -lpthread/' src/Makefile.{am,in} %configure --disable-shared make %{_smp_mflags} echo ====================TESTING========================= @@ -84,10 +85,12 @@ rm -rf %{buildroot} %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/log/prelink/prelink.log %changelog -* Thu Jul 2 2009 Jakub Jelinek 0.4.1-1 +* Sun Jul 5 2009 Jakub Jelinek 0.4.1-1 - add support for STT_GNU_IFUNC on i?86/x86_64 and R_{386,X86_64}_IRELATIVE - add support for DWARF3/DWARF4 features generated newly by recent gccs +- temporarily link prelink against -lpthread to workaround -lselinux + issue * Wed Mar 11 2009 Jakub Jelinek 0.4.0-7 - fix prelinking on ppc64 From uwog at fedoraproject.org Sun Jul 5 12:45:56 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Sun, 5 Jul 2009 12:45:56 +0000 (UTC) Subject: rpms/abiword/devel abiword-2.7.6-desktop.patch, NONE, 1.1 abiword.spec, 1.84, 1.85 abiword-2.7.5-desktop.patch, 1.1, NONE Message-ID: <20090705124556.B5B3D11C0097@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28295 Modified Files: abiword.spec Added Files: abiword-2.7.6-desktop.patch Removed Files: abiword-2.7.5-desktop.patch Log Message: Re-add updated desktop patch abiword-2.7.6-desktop.patch: --- NEW FILE abiword-2.7.6-desktop.patch --- diff -u -r abiword-2.7.6.orig/abiword.desktop abiword-2.7.6/abiword.desktop --- abiword-2.7.6.orig/abiword.desktop 2009-06-21 15:28:21.000000000 +0200 +++ abiword-2.7.6/abiword.desktop 2009-07-05 14:11:02.000000000 +0200 @@ -6,7 +6,7 @@ Categories=Office;WordProcessor;GNOME;GTK;X-Red-Hat-Base; StartupNotify=true X-Desktop-File-Install-Version=0.9 -MimeType=application/x-abiword;text/x-abiword;text/x-xml-abiword;text/plain;application/msword;application/rtf;application/vnd.plain;application/xhtml+xml;text/html;application/x-crossmark;application/docbook+xml;application/x-t602;application/vnd.oasis.opendocument.text;application/vnd.sun.xml.writer;application/vnd.stardivision.writer;text/vnd.wap.wml;application/wordperfect6;application/wordperfect5.1;application/vnd.wordperfect;application/x-abicollab; +MimeType=application/x-abiword;text/x-abiword;text/x-xml-abiword;text/plain;application/msword;application/rtf;application/vnd.plain;application/xhtml+xml;text/html;application/x-crossmark;application/docbook+xml;application/x-t602;application/vnd.oasis.opendocument.text;application/vnd.sun.xml.writer;application/vnd.stardivision.writer;text/vnd.wap.wml;application/wordperfect6;application/wordperfect5.1;application/vnd.wordperfect;application/x-abicollab;application/x-applix-word;application/x-mswrite;application/x-kword;application/x-mif; Name=AbiWord GenericName=Word Processor Comment=Compose, edit, and view documents Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- abiword.spec 5 Jul 2009 01:27:06 -0000 1.84 +++ abiword.spec 5 Jul 2009 12:45:56 -0000 1.85 @@ -7,7 +7,7 @@ Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -27,7 +27,7 @@ while still remaining lean. Summary: Library for developing applications based on AbiWord's core Group: System Environment/Libraries Patch0: abiword-2.6.0-windowshelppaths.patch -Patch1: abiword-2.7.5-desktop.patch +Patch1: abiword-2.7.6-desktop.patch Patch2: abiword-2.6.0-boolean.patch Patch3: abiword-plugins-2.6.0-boolean.patch %if %{olpc_build} @@ -64,7 +64,7 @@ BuildRequires: asio-devel BuildRequires: libsoup-devel %endif -%description -n libabiword +%descripton -n libabiword Library for developing applications based on AbiWord's core. %package -n libabiword-devel @@ -80,6 +80,7 @@ Includes and definitions for developing %setup -q # patch abiword +%patch1 -p1 -b .desktop %if 0%{?fedora} >= 9 %patch2 -p1 -b .boolean %endif @@ -178,6 +179,8 @@ update-desktop-database %{_datadir}/appl %{_libdir}/pkgconfig/%{name}-%{majorversion}.%{minorversion}.pc %changelog +* Sun Jul 05 2009 Marc Maurer - 1:2.7.6-3 +- Re-add updated .desktop patch * Sun Jul 05 2009 Peter Robinson - 1:2.7.6-2 - Remove old patch --- abiword-2.7.5-desktop.patch DELETED --- From uwog at fedoraproject.org Sun Jul 5 12:47:23 2009 From: uwog at fedoraproject.org (Marc Maurer) Date: Sun, 5 Jul 2009 12:47:23 +0000 (UTC) Subject: rpms/abiword/devel abiword.spec,1.85,1.86 Message-ID: <20090705124723.05AA311C0097@cvs1.fedora.phx.redhat.com> Author: uwog Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28591 Modified Files: abiword.spec Log Message: Fix typo Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- abiword.spec 5 Jul 2009 12:45:56 -0000 1.85 +++ abiword.spec 5 Jul 2009 12:47:22 -0000 1.86 @@ -64,7 +64,7 @@ BuildRequires: asio-devel BuildRequires: libsoup-devel %endif -%descripton -n libabiword +%description -n libabiword Library for developing applications based on AbiWord's core. %package -n libabiword-devel From mtasaka at fedoraproject.org Sun Jul 5 13:01:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 5 Jul 2009 13:01:29 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.382, 1.383 jd.spec, 1.442, 1.443 sources, 1.383, 1.384 Message-ID: <20090705130129.7AF9F11C0097@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30562/F-10 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- .cvsignore 4 Jul 2009 17:12:26 -0000 1.382 +++ .cvsignore 5 Jul 2009 13:00:59 -0000 1.383 @@ -1 +1 @@ -jd-2.4.1-svn2925_trunk.tgz +jd-2.4.1-rc090705.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.442 retrieving revision 1.443 diff -u -p -r1.442 -r1.443 --- jd.spec 4 Jul 2009 17:12:26 -0000 1.442 +++ jd.spec 5 Jul 2009 13:00:59 -0000 1.443 @@ -10,8 +10,8 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag svn2925_trunk -%define repoid 40837 +%define strtag rc090705 +%define repoid 40945 # Define this if this is pre-version %define pre_release 1 ########################################## @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 2 +%define vendor_rel 3 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 5 2009 Mamoru Tasaka -- rev 2925 +* Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 +- 2.4.1 rc 090705 * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- sources 4 Jul 2009 17:12:26 -0000 1.383 +++ sources 5 Jul 2009 13:00:59 -0000 1.384 @@ -1 +1 @@ -24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz +176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz From mtasaka at fedoraproject.org Sun Jul 5 13:01:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 5 Jul 2009 13:01:29 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.376, 1.377 jd.spec, 1.438, 1.439 sources, 1.377, 1.378 Message-ID: <20090705130129.AF4E511C0097@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30562/F-11 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.376 retrieving revision 1.377 diff -u -p -r1.376 -r1.377 --- .cvsignore 4 Jul 2009 17:12:26 -0000 1.376 +++ .cvsignore 5 Jul 2009 13:00:59 -0000 1.377 @@ -1 +1 @@ -jd-2.4.1-svn2925_trunk.tgz +jd-2.4.1-rc090705.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.438 retrieving revision 1.439 diff -u -p -r1.438 -r1.439 --- jd.spec 4 Jul 2009 17:12:26 -0000 1.438 +++ jd.spec 5 Jul 2009 13:00:59 -0000 1.439 @@ -10,8 +10,8 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag svn2925_trunk -%define repoid 40837 +%define strtag rc090705 +%define repoid 40945 # Define this if this is pre-version %define pre_release 1 ########################################## @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 2 +%define vendor_rel 3 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 5 2009 Mamoru Tasaka -- rev 2925 +* Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 +- 2.4.1 rc 090705 * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.377 retrieving revision 1.378 diff -u -p -r1.377 -r1.378 --- sources 4 Jul 2009 17:12:26 -0000 1.377 +++ sources 5 Jul 2009 13:00:59 -0000 1.378 @@ -1 +1 @@ -24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz +176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz From mtasaka at fedoraproject.org Sun Jul 5 13:01:30 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 5 Jul 2009 13:01:30 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.373, 1.374 jd.spec, 1.435, 1.436 sources, 1.374, 1.375 Message-ID: <20090705130130.034A111C0097@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30562/devel Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.373 retrieving revision 1.374 diff -u -p -r1.373 -r1.374 --- .cvsignore 4 Jul 2009 17:12:26 -0000 1.373 +++ .cvsignore 5 Jul 2009 13:00:59 -0000 1.374 @@ -1 +1 @@ -jd-2.4.1-svn2925_trunk.tgz +jd-2.4.1-rc090705.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.435 retrieving revision 1.436 diff -u -p -r1.435 -r1.436 --- jd.spec 4 Jul 2009 17:12:26 -0000 1.435 +++ jd.spec 5 Jul 2009 13:00:59 -0000 1.436 @@ -10,8 +10,8 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag svn2925_trunk -%define repoid 40837 +%define strtag rc090705 +%define repoid 40945 # Define this if this is pre-version %define pre_release 1 ########################################## @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 2 +%define vendor_rel 3 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 5 2009 Mamoru Tasaka -- rev 2925 +* Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 +- 2.4.1 rc 090705 * Mon Jun 29 2009 Mamoru Tasaka - 2.4.1-0.2.beta090628 - 2.4.1 beta 090628 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.374 retrieving revision 1.375 diff -u -p -r1.374 -r1.375 --- sources 4 Jul 2009 17:12:26 -0000 1.374 +++ sources 5 Jul 2009 13:00:59 -0000 1.375 @@ -1 +1 @@ -24eaffd3746f345ffa223c6e0e0d3e9e jd-2.4.1-svn2925_trunk.tgz +176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz From trasher at fedoraproject.org Sun Jul 5 15:28:15 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Sun, 5 Jul 2009 15:28:15 +0000 (UTC) Subject: rpms/eric/devel .cvsignore, 1.17, 1.18 eric.spec, 1.45, 1.46 sources, 1.22, 1.23 Message-ID: <20090705152815.1FF6211C0097@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/eric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25421 Modified Files: .cvsignore eric.spec sources Log Message: new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/eric/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 1 Jun 2009 05:34:59 -0000 1.17 +++ .cvsignore 5 Jul 2009 15:27:44 -0000 1.18 @@ -1,8 +1,8 @@ -eric4-4.3.4.tar.gz -eric4-i18n-fr-4.3.4.tar.gz -eric4-i18n-de-4.3.4.tar.gz -eric4-i18n-ru-4.3.4.tar.gz -eric4-i18n-cs-4.3.4.tar.gz -eric4-i18n-es-4.3.4.tar.gz -eric4-i18n-tr-4.3.4.tar.gz -eric4-i18n-zh_CN.GB2312-4.3.4.tar.gz +eric4-4.3.5.tar.gz +eric4-i18n-fr-4.3.5.tar.gz +eric4-i18n-de-4.3.5.tar.gz +eric4-i18n-ru-4.3.5.tar.gz +eric4-i18n-cs-4.3.5.tar.gz +eric4-i18n-es-4.3.5.tar.gz +eric4-i18n-tr-4.3.5.tar.gz +eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz Index: eric.spec =================================================================== RCS file: /cvs/extras/rpms/eric/devel/eric.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- eric.spec 1 Jun 2009 05:45:11 -0000 1.45 +++ eric.spec 5 Jul 2009 15:27:44 -0000 1.46 @@ -7,7 +7,7 @@ Name: eric Summary: Python IDE -Version: 4.3.4 +Version: 4.3.5 Release: 1%{?dist} License: GPL+ @@ -148,6 +148,9 @@ rm -rf %{buildroot} %{_libdir}/qt4/qsci/api/ruby/*.api %changelog +* Sun Jul 5 2009 Johan Cwiklinski 4.3.5-1 +- 4.3.5 + * Sun May 31 2009 Johan Cwiklinski 4.3.4-1 - 4.3.4 Index: sources =================================================================== RCS file: /cvs/extras/rpms/eric/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 1 Jun 2009 05:34:59 -0000 1.22 +++ sources 5 Jul 2009 15:27:44 -0000 1.23 @@ -1,8 +1,8 @@ -d64506bac4285cac409c80c28008b7af eric4-4.3.4.tar.gz -20700367c70c1a8f5e11d008897d3fa8 eric4-i18n-fr-4.3.4.tar.gz -c0ef40847af2dde93a1d19810ccbddbd eric4-i18n-de-4.3.4.tar.gz -0a43a9cbb315243d3d96205c219fd39d eric4-i18n-ru-4.3.4.tar.gz -0f452cb0e164c0b46ea1e1eed8389581 eric4-i18n-cs-4.3.4.tar.gz -d4523f1b28813050f7c9f9b9c92e9169 eric4-i18n-es-4.3.4.tar.gz -f2c7afc2c75324958fc5ffd79afca336 eric4-i18n-tr-4.3.4.tar.gz -a60d6fa4f3ed87408e861a6ff14d73b2 eric4-i18n-zh_CN.GB2312-4.3.4.tar.gz +3dc719330b4b82edc17939068180cc6a eric4-4.3.5.tar.gz +b90cf27a4d595f54b81851222a64ad7b eric4-i18n-fr-4.3.5.tar.gz +7c3ebbe36d0e305c48e6f3da444cdcb3 eric4-i18n-de-4.3.5.tar.gz +5ebd2f978e3d61b7ccc9c90b1ab6c676 eric4-i18n-ru-4.3.5.tar.gz +b55a007ddfafc98f9533df77ba52983a eric4-i18n-cs-4.3.5.tar.gz +9ce364f90909d5d7fa873ff3db980c77 eric4-i18n-es-4.3.5.tar.gz +28c5d615eea8f10e94bae717d6023527 eric4-i18n-tr-4.3.5.tar.gz +fb29d702bff9c9f7eed0f992a8394ba9 eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz From adrian at fedoraproject.org Sun Jul 5 15:30:47 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Sun, 5 Jul 2009 15:30:47 +0000 (UTC) Subject: rpms/jabberd/F-11 jabberd-size_t.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 jabberd.spec, 1.32, 1.33 sources, 1.13, 1.14 Message-ID: <20090705153047.A4F2C11C0097@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/jabberd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25927 Modified Files: .cvsignore jabberd.spec sources Added Files: jabberd-size_t.patch Log Message: * Fri Jun 19 2009 Adrian Reber - 2.2.8-2 - updated to 2.2.8 - added patch to fix "router segfaults" (rhbz#497671) jabberd-size_t.patch: --- NEW FILE jabberd-size_t.patch --- diff -uNr jabberd-2.2.7.1.orig/sx/sasl_gsasl.c jabberd-2.2.7.1/sx/sasl_gsasl.c --- jabberd-2.2.7.1.orig/sx/sasl_gsasl.c 2009-02-24 23:28:33.000000000 +0100 +++ jabberd-2.2.7.1/sx/sasl_gsasl.c 2009-06-18 16:57:29.681574813 +0200 @@ -210,7 +210,8 @@ static int _sx_sasl_wio(sx_t s, sx_plugin_t p, sx_buf_t buf) { sx_error_t sxe; - int len, ret; + size_t len; + int ret; char *out; Gsasl_session *sd = (Gsasl_session *) s->plugin_data[p->index]; @@ -237,7 +238,8 @@ static int _sx_sasl_rio(sx_t s, sx_plugin_t p, sx_buf_t buf) { sx_error_t sxe; - int len, ret; + size_t len; + int ret; char *out; Gsasl_session *sd = (Gsasl_session *) s->plugin_data[p->index]; Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jabberd/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 26 Feb 2009 07:53:06 -0000 1.13 +++ .cvsignore 5 Jul 2009 15:30:17 -0000 1.14 @@ -1 +1 @@ -jabberd-2.2.7.1.tar.bz2 +jabberd-2.2.8.tar.bz2 Index: jabberd.spec =================================================================== RCS file: /cvs/extras/rpms/jabberd/F-11/jabberd.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- jabberd.spec 31 Mar 2009 09:33:39 -0000 1.32 +++ jabberd.spec 5 Jul 2009 15:30:17 -0000 1.33 @@ -1,12 +1,13 @@ Summary: OpenSource server implementation of the Jabber protocols Name: jabberd -Version: 2.2.7.1 +Version: 2.2.8 Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons -Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.7.1.tar.bz2 +Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.8.tar.bz2 Source1: jabberd Source2: jabberd.sysconfig +Patch0: jabberd-size_t.patch URL: http://jabberd2.xiaoka.com/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel libidn-devel expat-devel @@ -38,6 +39,7 @@ This packages defaults to use pam and th %prep %setup -q +%patch0 -p1 %build %define _sysconfdir /etc/jabberd @@ -190,6 +192,10 @@ fi %ghost %{_sysconfdir}/jabberd/server.pem %changelog +* Fri Jun 19 2009 Adrian Reber - 2.2.8-2 +- updated to 2.2.8 +- added patch to fix "router segfaults" (rhbz#497671) + * Tue Mar 31 2009 Bernie Innocenti - 2.2.7.1-2 - fix rhbz#349714: jabberd does not close its stdin/stdout/stderr Index: sources =================================================================== RCS file: /cvs/extras/rpms/jabberd/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 26 Feb 2009 07:53:06 -0000 1.13 +++ sources 5 Jul 2009 15:30:17 -0000 1.14 @@ -1 +1 @@ -9a6fe560206c7982cd1d72a920b5162f jabberd-2.2.7.1.tar.bz2 +7ef574635950880615cbb21a5fe9fb5a jabberd-2.2.8.tar.bz2 From trasher at fedoraproject.org Sun Jul 5 15:43:33 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Sun, 5 Jul 2009 15:43:33 +0000 (UTC) Subject: rpms/eric/F-11 .cvsignore, 1.15, 1.16 eric.spec, 1.43, 1.44 sources, 1.22, 1.23 Message-ID: <20090705154333.5E9CB11C0097@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/eric/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28650 Modified Files: .cvsignore eric.spec sources Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/eric/F-11/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 9 Feb 2009 07:42:45 -0000 1.15 +++ .cvsignore 5 Jul 2009 15:43:03 -0000 1.16 @@ -1,8 +1,8 @@ -eric4-4.3.0.tar.gz -eric4-i18n-fr-4.3.0.tar.gz -eric4-i18n-de-4.3.0.tar.gz -eric4-i18n-ru-4.3.0.tar.gz -eric4-i18n-cs-4.3.0.tar.gz -eric4-i18n-es-4.3.0.tar.gz -eric4-i18n-tr-4.3.0.tar.gz -eric4-i18n-zh_CN.GB2312-4.3.0.tar.gz +eric4-4.3.5.tar.gz +eric4-i18n-fr-4.3.5.tar.gz +eric4-i18n-de-4.3.5.tar.gz +eric4-i18n-ru-4.3.5.tar.gz +eric4-i18n-cs-4.3.5.tar.gz +eric4-i18n-es-4.3.5.tar.gz +eric4-i18n-tr-4.3.5.tar.gz +eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz Index: eric.spec =================================================================== RCS file: /cvs/extras/rpms/eric/F-11/eric.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- eric.spec 2 Jun 2009 05:30:49 -0000 1.43 +++ eric.spec 5 Jul 2009 15:43:03 -0000 1.44 @@ -7,7 +7,7 @@ Name: eric Summary: Python IDE -Version: 4.3.4 +Version: 4.3.5 Release: 1%{?dist} License: GPL+ @@ -148,6 +148,9 @@ rm -rf %{buildroot} %{_libdir}/qt4/qsci/api/ruby/*.api %changelog +* Sun Jul 5 2009 Johan Cwiklinski 4.3.5-1 +- 4.3.5 + * Sun May 31 2009 Johan Cwiklinski 4.3.4-1 - 4.3.4 Index: sources =================================================================== RCS file: /cvs/extras/rpms/eric/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 2 Jun 2009 05:30:49 -0000 1.22 +++ sources 5 Jul 2009 15:43:03 -0000 1.23 @@ -1,8 +1,8 @@ -d64506bac4285cac409c80c28008b7af eric4-4.3.4.tar.gz -20700367c70c1a8f5e11d008897d3fa8 eric4-i18n-fr-4.3.4.tar.gz -c0ef40847af2dde93a1d19810ccbddbd eric4-i18n-de-4.3.4.tar.gz -0a43a9cbb315243d3d96205c219fd39d eric4-i18n-ru-4.3.4.tar.gz -0f452cb0e164c0b46ea1e1eed8389581 eric4-i18n-cs-4.3.4.tar.gz -d4523f1b28813050f7c9f9b9c92e9169 eric4-i18n-es-4.3.4.tar.gz -f2c7afc2c75324958fc5ffd79afca336 eric4-i18n-tr-4.3.4.tar.gz -a60d6fa4f3ed87408e861a6ff14d73b2 eric4-i18n-zh_CN.GB2312-4.3.4.tar.gz +3dc719330b4b82edc17939068180cc6a eric4-4.3.5.tar.gz +b90cf27a4d595f54b81851222a64ad7b eric4-i18n-fr-4.3.5.tar.gz +7c3ebbe36d0e305c48e6f3da444cdcb3 eric4-i18n-de-4.3.5.tar.gz +5ebd2f978e3d61b7ccc9c90b1ab6c676 eric4-i18n-ru-4.3.5.tar.gz +b55a007ddfafc98f9533df77ba52983a eric4-i18n-cs-4.3.5.tar.gz +9ce364f90909d5d7fa873ff3db980c77 eric4-i18n-es-4.3.5.tar.gz +28c5d615eea8f10e94bae717d6023527 eric4-i18n-tr-4.3.5.tar.gz +fb29d702bff9c9f7eed0f992a8394ba9 eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz From trasher at fedoraproject.org Sun Jul 5 16:04:29 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Sun, 5 Jul 2009 16:04:29 +0000 (UTC) Subject: rpms/eric/F-10 .cvsignore, 1.17, 1.18 eric.spec, 1.40, 1.41 sources, 1.22, 1.23 Message-ID: <20090705160429.9785611C0097@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/eric/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32131 Modified Files: .cvsignore eric.spec sources Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/eric/F-10/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 6 Apr 2009 18:37:26 -0000 1.17 +++ .cvsignore 5 Jul 2009 16:03:59 -0000 1.18 @@ -1,8 +1,8 @@ -eric4-4.3.2.tar.gz -eric4-i18n-fr-4.3.2.tar.gz -eric4-i18n-de-4.3.2.tar.gz -eric4-i18n-ru-4.3.2.tar.gz -eric4-i18n-cs-4.3.2.tar.gz -eric4-i18n-es-4.3.2.tar.gz -eric4-i18n-tr-4.3.2.tar.gz -eric4-i18n-zh_CN.GB2312-4.3.2.tar.gz +eric4-4.3.5.tar.gz +eric4-i18n-fr-4.3.5.tar.gz +eric4-i18n-de-4.3.5.tar.gz +eric4-i18n-ru-4.3.5.tar.gz +eric4-i18n-cs-4.3.5.tar.gz +eric4-i18n-es-4.3.5.tar.gz +eric4-i18n-tr-4.3.5.tar.gz +eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz Index: eric.spec =================================================================== RCS file: /cvs/extras/rpms/eric/F-10/eric.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- eric.spec 2 Jun 2009 06:24:02 -0000 1.40 +++ eric.spec 5 Jul 2009 16:03:59 -0000 1.41 @@ -7,7 +7,7 @@ Name: eric Summary: Python IDE -Version: 4.3.4 +Version: 4.3.5 Release: 1%{?dist} License: GPL+ @@ -147,6 +147,9 @@ rm -rf %{buildroot} %{_libdir}/qt4/qsci/api/ruby/*.api %changelog +* Sun Jul 5 2009 Johan Cwiklinski 4.3.5-1 +- 4.3.5 + * Sun May 31 2009 Johan Cwiklinski 4.3.4-1 - 4.3.4 Index: sources =================================================================== RCS file: /cvs/extras/rpms/eric/F-10/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 2 Jun 2009 06:24:02 -0000 1.22 +++ sources 5 Jul 2009 16:03:59 -0000 1.23 @@ -1,8 +1,8 @@ -d64506bac4285cac409c80c28008b7af eric4-4.3.4.tar.gz -20700367c70c1a8f5e11d008897d3fa8 eric4-i18n-fr-4.3.4.tar.gz -c0ef40847af2dde93a1d19810ccbddbd eric4-i18n-de-4.3.4.tar.gz -0a43a9cbb315243d3d96205c219fd39d eric4-i18n-ru-4.3.4.tar.gz -0f452cb0e164c0b46ea1e1eed8389581 eric4-i18n-cs-4.3.4.tar.gz -d4523f1b28813050f7c9f9b9c92e9169 eric4-i18n-es-4.3.4.tar.gz -f2c7afc2c75324958fc5ffd79afca336 eric4-i18n-tr-4.3.4.tar.gz -a60d6fa4f3ed87408e861a6ff14d73b2 eric4-i18n-zh_CN.GB2312-4.3.4.tar.gz +3dc719330b4b82edc17939068180cc6a eric4-4.3.5.tar.gz +b90cf27a4d595f54b81851222a64ad7b eric4-i18n-fr-4.3.5.tar.gz +7c3ebbe36d0e305c48e6f3da444cdcb3 eric4-i18n-de-4.3.5.tar.gz +5ebd2f978e3d61b7ccc9c90b1ab6c676 eric4-i18n-ru-4.3.5.tar.gz +b55a007ddfafc98f9533df77ba52983a eric4-i18n-cs-4.3.5.tar.gz +9ce364f90909d5d7fa873ff3db980c77 eric4-i18n-es-4.3.5.tar.gz +28c5d615eea8f10e94bae717d6023527 eric4-i18n-tr-4.3.5.tar.gz +fb29d702bff9c9f7eed0f992a8394ba9 eric4-i18n-zh_CN.GB2312-4.3.5.tar.gz From s4504kr at fedoraproject.org Sun Jul 5 18:17:48 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Sun, 5 Jul 2009 18:17:48 +0000 (UTC) Subject: rpms/gnu-smalltalk/devel gnu-smalltalk.spec,1.47,1.48 Message-ID: <20090705181748.2962011C0097@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/gnu-smalltalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23533 Modified Files: gnu-smalltalk.spec Log Message: Fix license tag Index: gnu-smalltalk.spec =================================================================== RCS file: /cvs/extras/rpms/gnu-smalltalk/devel/gnu-smalltalk.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gnu-smalltalk.spec 24 May 2009 18:26:13 -0000 1.47 +++ gnu-smalltalk.spec 5 Jul 2009 18:17:17 -0000 1.48 @@ -1,12 +1,12 @@ Summary: GNU Smalltalk Name: gnu-smalltalk Version: 3.1 -Release: 5%{?dist} +Release: 6%{?dist} Source: ftp://ftp.gnu.org/gnu/smalltalk/smalltalk-%{version}.tar.gz Patch1: gst-3.1-am.patch Patch2: gst-3.1-tst.patch Patch3: gst-retcode-tests.patch -License: GPLv2 +License: GPLv2+ with exceptions Group: Development/Languages URL: http://www.gnu.org/software/smalltalk/smalltalk.html Buildroot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) @@ -180,6 +180,9 @@ fi %{_datadir}/emacs/site-lisp/* %changelog +* Sun Jul 5 2009 Jochen Schmitt 3.1-6 +- Fix license tag + * Sun May 24 2009 Jochen Schmitt 3.1-5 - Fix dependency issue From tanguy at fedoraproject.org Sun Jul 5 18:18:14 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 5 Jul 2009 18:18:14 +0000 (UTC) Subject: rpms/scidavis/devel .cvsignore, 1.6, 1.7 scidavis.spec, 1.18, 1.19 sources, 1.6, 1.7 Message-ID: <20090705181814.9E69A11C0097@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23633 Modified Files: .cvsignore scidavis.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 22 Apr 2009 16:54:16 -0000 1.6 +++ .cvsignore 5 Jul 2009 18:17:44 -0000 1.7 @@ -1,2 +1,2 @@ -scidavis-0.2.2.tar.bz2 +scidavis-0.2.3.tar.bz2 scidavis-manual-0.1_2008-02-28.tar.bz2 Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/scidavis.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- scidavis.spec 22 Apr 2009 16:54:16 -0000 1.18 +++ scidavis.spec 5 Jul 2009 18:17:44 -0000 1.19 @@ -1,6 +1,6 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis -Version: 0.2.2 +Version: 0.2.3 Release: 1%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 @@ -98,6 +98,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 +- Update to 0.2.3 + * Wed Apr 22 2009 Eric Tanguy - 0.2.2-1 - Update to 0.2.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 22 Apr 2009 16:54:16 -0000 1.6 +++ sources 5 Jul 2009 18:17:44 -0000 1.7 @@ -1,2 +1,2 @@ -36eac982da85e8901ccacb76d77fda98 scidavis-0.2.2.tar.bz2 +30d3f7c4e3702cec0bce8e34ea6112e7 scidavis-0.2.3.tar.bz2 3527477cb0685da3ddfb0ee398ba6303 scidavis-manual-0.1_2008-02-28.tar.bz2 From beuc at fedoraproject.org Sun Jul 5 18:29:12 2009 From: beuc at fedoraproject.org (Sylvain Beucler) Date: Sun, 5 Jul 2009 18:29:12 +0000 (UTC) Subject: rpms/freedink-data/devel .cvsignore, 1.2, 1.3 freedink-data.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090705182912.1A30C11C0097@cvs1.fedora.phx.redhat.com> Author: beuc Update of /cvs/pkgs/rpms/freedink-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25627 Modified Files: .cvsignore freedink-data.spec sources Log Message: Update to 1.08.20090705 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Sep 2008 19:13:19 -0000 1.2 +++ .cvsignore 5 Jul 2009 18:28:41 -0000 1.3 @@ -1 +1 @@ -freedink-data-1.08.20080920.tar.gz +freedink-data-1.08.20090705.tar.gz Index: freedink-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/freedink-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- freedink-data.spec 24 Feb 2009 18:13:27 -0000 1.2 +++ freedink-data.spec 5 Jul 2009 18:28:41 -0000 1.3 @@ -1,6 +1,6 @@ Name: freedink-data -Version: 1.08.20080920 -Release: 4%{?dist} +Version: 1.08.20090705 +Release: 1%{?dist} Summary: Adventure and role-playing game (game data) Group: Amusements/Games @@ -8,8 +8,6 @@ License: zlib and CC-BY-SA and (GPLv3+ o URL: http://www.freedink.org/ Source0: ftp://ftp.gnu.org/gnu/freedink/%{name}-%{version}.tar.gz #Source0: http://www.freedink.org/releases/%{name}-%{version}.tar.gz -# Upstream has applied this in Git trunk -Patch0: freedink-data-fix-timestamps.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -25,7 +23,6 @@ game, along with free sound and music re %prep %setup -q -%patch0 -p1 # Strip DOS EOL from documentation # https://fedoraproject.org/wiki/PackageMaintainers/Common_Rpmlint_Issues#wrong-file-end-of-line-encoding sed -i 's/\r//' README.txt README-REPLACEMENTS.txt @@ -50,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 05 2009 Sylvain Beucler - 1.08.20090705-1 +- New upstream release +- Removed patch to preserve timestamps (applied upstream) + * Tue Feb 24 2009 Fedora Release Engineering - 1.08.20080920-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Sep 2008 19:13:19 -0000 1.2 +++ sources 5 Jul 2009 18:28:41 -0000 1.3 @@ -1 +1 @@ -e84f9e34f1fb46ea1ed0e3a34b341f4a freedink-data-1.08.20080920.tar.gz +be6355b54a9c4aa29fbca0a6f40bab05 freedink-data-1.08.20090705.tar.gz From beuc at fedoraproject.org Sun Jul 5 18:36:32 2009 From: beuc at fedoraproject.org (Sylvain Beucler) Date: Sun, 5 Jul 2009 18:36:32 +0000 (UTC) Subject: rpms/freedink-data/devel freedink-data-fix-timestamps.patch, 1.1, NONE Message-ID: <20090705183632.DDBA611C0097@cvs1.fedora.phx.redhat.com> Author: beuc Update of /cvs/pkgs/rpms/freedink-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27152 Removed Files: freedink-data-fix-timestamps.patch Log Message: Remove unused patch --- freedink-data-fix-timestamps.patch DELETED --- From kdudka at fedoraproject.org Sun Jul 5 18:44:37 2009 From: kdudka at fedoraproject.org (Kamil Dudka) Date: Sun, 5 Jul 2009 18:44:37 +0000 (UTC) Subject: rpms/curl/devel curl.spec,1.103,1.104 Message-ID: <20090705184437.8DFB711C0097@cvs1.fedora.phx.redhat.com> Author: kdudka Update of /cvs/extras/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29117 Modified Files: curl.spec Log Message: force test suite to use the just built libcurl Index: curl.spec =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- curl.spec 2 Jul 2009 14:37:19 -0000 1.103 +++ curl.spec 5 Jul 2009 18:44:07 -0000 1.104 @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.5 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2 @@ -78,7 +78,7 @@ sed -i \ make %{?_smp_mflags} %check -make %{?_smp_mflags} check +LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir} make %{?_smp_mflags} check %install rm -rf $RPM_BUILD_ROOT @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Sun Jul 05 2009 Kamil Dudka 7.19.5-6 +- force test suite to use the just built libcurl, thanks to Paul Howarth + * Thu Jul 02 2009 Kamil Dudka 7.19.5-5 - run test suite after build - enable built-in manual From tanguy at fedoraproject.org Sun Jul 5 18:48:32 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 5 Jul 2009 18:48:32 +0000 (UTC) Subject: rpms/scidavis/F-10 .cvsignore, 1.6, 1.7 scidavis.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090705184832.7A2A911C0097@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29801 Modified Files: .cvsignore scidavis.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 22 Apr 2009 17:10:41 -0000 1.6 +++ .cvsignore 5 Jul 2009 18:48:02 -0000 1.7 @@ -1,2 +1,2 @@ -scidavis-0.2.2.tar.bz2 +scidavis-0.2.3.tar.bz2 scidavis-manual-0.1_2008-02-28.tar.bz2 Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/scidavis.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- scidavis.spec 22 Apr 2009 17:10:41 -0000 1.9 +++ scidavis.spec 5 Jul 2009 18:48:02 -0000 1.10 @@ -1,6 +1,6 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis -Version: 0.2.2 +Version: 0.2.3 Release: 1%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 @@ -98,6 +98,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 +- Update to 0.2.3 + * Wed Apr 22 2009 Eric Tanguy - 0.2.2-1 - Update to 0.2.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 22 Apr 2009 17:10:41 -0000 1.6 +++ sources 5 Jul 2009 18:48:02 -0000 1.7 @@ -1,2 +1,2 @@ -36eac982da85e8901ccacb76d77fda98 scidavis-0.2.2.tar.bz2 +30d3f7c4e3702cec0bce8e34ea6112e7 scidavis-0.2.3.tar.bz2 3527477cb0685da3ddfb0ee398ba6303 scidavis-manual-0.1_2008-02-28.tar.bz2 From tanguy at fedoraproject.org Sun Jul 5 18:50:24 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 5 Jul 2009 18:50:24 +0000 (UTC) Subject: rpms/scidavis/F-11 .cvsignore, 1.6, 1.7 scidavis.spec, 1.18, 1.19 sources, 1.6, 1.7 Message-ID: <20090705185024.277E211C0097@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30186 Modified Files: .cvsignore scidavis.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 22 Apr 2009 17:02:54 -0000 1.6 +++ .cvsignore 5 Jul 2009 18:49:53 -0000 1.7 @@ -1,2 +1,2 @@ -scidavis-0.2.2.tar.bz2 +scidavis-0.2.3.tar.bz2 scidavis-manual-0.1_2008-02-28.tar.bz2 Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- scidavis.spec 22 Apr 2009 17:02:54 -0000 1.18 +++ scidavis.spec 5 Jul 2009 18:49:53 -0000 1.19 @@ -1,6 +1,6 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis -Version: 0.2.2 +Version: 0.2.3 Release: 1%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 @@ -98,6 +98,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 +- Update to 0.2.3 + * Wed Apr 22 2009 Eric Tanguy - 0.2.2-1 - Update to 0.2.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 22 Apr 2009 17:02:55 -0000 1.6 +++ sources 5 Jul 2009 18:49:53 -0000 1.7 @@ -1,2 +1,2 @@ -36eac982da85e8901ccacb76d77fda98 scidavis-0.2.2.tar.bz2 +30d3f7c4e3702cec0bce8e34ea6112e7 scidavis-0.2.3.tar.bz2 3527477cb0685da3ddfb0ee398ba6303 scidavis-manual-0.1_2008-02-28.tar.bz2 From pgordon at fedoraproject.org Sun Jul 5 19:52:24 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Sun, 5 Jul 2009 19:52:24 +0000 (UTC) Subject: rpms/webkitgtk/F-11 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 webkitgtk.spec, 1.6, 1.7 Message-ID: <20090705195224.97CFF11C0097@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/webkitgtk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9485 Modified Files: .cvsignore sources webkitgtk.spec Log Message: Update to 1.1.10; remove rpath in GtkLauncher; remove unnecessary libtool BR. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 29 May 2009 18:43:28 -0000 1.5 +++ .cvsignore 5 Jul 2009 19:52:24 -0000 1.6 @@ -1 +1 @@ -webkit-1.1.8.tar.gz +webkit-1.1.10.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 29 May 2009 18:43:28 -0000 1.5 +++ sources 5 Jul 2009 19:52:24 -0000 1.6 @@ -1 +1 @@ -0991b4f3c2ef0d09e8c5ac0737dfeba1 webkit-1.1.8.tar.gz +b852753b3e21f010f565312132f88311 webkit-1.1.10.tar.gz Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/F-11/webkitgtk.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- webkitgtk.spec 13 Jun 2009 16:48:58 -0000 1.6 +++ webkitgtk.spec 5 Jul 2009 19:52:24 -0000 1.7 @@ -34,8 +34,8 @@ %bcond_with wml Name: webkitgtk -Version: 1.1.8 -Release: 2%{?dist} +Version: 1.1.10 +Release: 1%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -51,6 +51,7 @@ Patch0: webkit-1.1.8-atomic-word BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: bison +BuildRequires: chrpath BuildRequires: enchant-devel BuildRequires: flex BuildRequires: geoclue-devel @@ -63,7 +64,6 @@ BuildRequires: gtk2-devel BuildRequires: libsoup-devel >= 2.25.91 BuildRequires: libicu-devel BuildRequires: libjpeg-devel -BuildRequires: libtool BuildRequires: libxslt-devel BuildRequires: libXt-devel BuildRequires: pcre-devel @@ -78,7 +78,7 @@ BuildRequires: fontconfig-devel BuildRequires: freetype-devel %endif -%description +%description WebKitGTK+ is the port of the portable web rendering engine WebKit to the GTK+ platform. @@ -127,7 +127,10 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} + make install DESTDIR=%{buildroot} + +chrpath --delete Programs/GtkLauncher install -d -m 755 %{buildroot}%{_libexecdir}/%{name} install -m 755 Programs/GtkLauncher %{buildroot}%{_libexecdir}/%{name} %find_lang webkit @@ -182,6 +185,11 @@ rm -rf %{buildroot} %changelog +* Sat Jul 04 2009 Peter Gordon - 1.1.10-1 +- Update to new upstream release (1.1.10) +- Invoke chrpath to remove the hardcoded RPATH in GtkLauncher. +- Remove unnecessary libtool build dependency. + * Sat Jun 13 2009 Dennis Gilmore - 1.1.8-2 - _atomic_word is not always an int From bjohnson at fedoraproject.org Sun Jul 5 20:02:37 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sun, 5 Jul 2009 20:02:37 +0000 (UTC) Subject: rpms/libzdb/devel .cvsignore, 1.3, 1.4 libzdb.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090705200237.2F67E11C0097@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/libzdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11174/devel Modified Files: .cvsignore libzdb.spec sources Log Message: - v 2.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 Jun 2009 05:21:36 -0000 1.3 +++ .cvsignore 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -libzdb-2.5.tar.gz +libzdb-2.6.tar.gz Index: libzdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/devel/libzdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libzdb.spec 5 Jun 2009 05:21:37 -0000 1.3 +++ libzdb.spec 5 Jul 2009 20:02:36 -0000 1.4 @@ -1,5 +1,5 @@ Name: libzdb -Version: 2.5 +Version: 2.6 Release: 1%{?dist} Summary: Small, fast, and easy to use database API @@ -63,6 +63,9 @@ Developer header files & libraries for l %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.6-1 +- v 2.6 + * Thu Jun 04 2009 Bernard Johnson - 2.5-1 - remove EXCEPTIONS notice - v 2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 5 Jun 2009 05:21:37 -0000 1.3 +++ sources 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -780d6c3b4704159c0c5ce086387d81b2 libzdb-2.5.tar.gz +54eef941f130768d2d0a311873550e25 libzdb-2.6.tar.gz From bjohnson at fedoraproject.org Sun Jul 5 20:03:06 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sun, 5 Jul 2009 20:03:06 +0000 (UTC) Subject: rpms/libzdb/F-10 .cvsignore, 1.3, 1.4 libzdb.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090705200306.8FC2411C02CC@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/libzdb/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11174/F-10 Modified Files: .cvsignore libzdb.spec sources Log Message: - v 2.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 Jun 2009 05:21:36 -0000 1.3 +++ .cvsignore 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -libzdb-2.5.tar.gz +libzdb-2.6.tar.gz Index: libzdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-10/libzdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libzdb.spec 5 Jun 2009 05:21:36 -0000 1.3 +++ libzdb.spec 5 Jul 2009 20:02:36 -0000 1.4 @@ -1,5 +1,5 @@ Name: libzdb -Version: 2.5 +Version: 2.6 Release: 1%{?dist} Summary: Small, fast, and easy to use database API @@ -63,6 +63,9 @@ Developer header files & libraries for l %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.6-1 +- v 2.6 + * Thu Jun 04 2009 Bernard Johnson - 2.5-1 - remove EXCEPTIONS notice - v 2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 5 Jun 2009 05:21:36 -0000 1.3 +++ sources 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -780d6c3b4704159c0c5ce086387d81b2 libzdb-2.5.tar.gz +54eef941f130768d2d0a311873550e25 libzdb-2.6.tar.gz From bjohnson at fedoraproject.org Sun Jul 5 20:03:06 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sun, 5 Jul 2009 20:03:06 +0000 (UTC) Subject: rpms/libzdb/F-11 .cvsignore, 1.3, 1.4 libzdb.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090705200306.D3D3211C0097@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/libzdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11174/F-11 Modified Files: .cvsignore libzdb.spec sources Log Message: - v 2.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 Jun 2009 05:21:36 -0000 1.3 +++ .cvsignore 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -libzdb-2.5.tar.gz +libzdb-2.6.tar.gz Index: libzdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-11/libzdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libzdb.spec 5 Jun 2009 05:21:36 -0000 1.3 +++ libzdb.spec 5 Jul 2009 20:02:36 -0000 1.4 @@ -1,5 +1,5 @@ Name: libzdb -Version: 2.5 +Version: 2.6 Release: 1%{?dist} Summary: Small, fast, and easy to use database API @@ -63,6 +63,9 @@ Developer header files & libraries for l %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.6-1 +- v 2.6 + * Thu Jun 04 2009 Bernard Johnson - 2.5-1 - remove EXCEPTIONS notice - v 2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 5 Jun 2009 05:21:36 -0000 1.3 +++ sources 5 Jul 2009 20:02:36 -0000 1.4 @@ -1 +1 @@ -780d6c3b4704159c0c5ce086387d81b2 libzdb-2.5.tar.gz +54eef941f130768d2d0a311873550e25 libzdb-2.6.tar.gz From bjohnson at fedoraproject.org Sun Jul 5 20:03:06 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sun, 5 Jul 2009 20:03:06 +0000 (UTC) Subject: rpms/libzdb/EL-5 .cvsignore, 1.2, 1.3 libzdb.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090705200306.5CF7B11C0097@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/libzdb/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11174/EL-5 Modified Files: .cvsignore libzdb.spec sources Log Message: - v 2.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Mar 2009 17:51:07 -0000 1.2 +++ .cvsignore 5 Jul 2009 20:02:36 -0000 1.3 @@ -1 +1 @@ -libzdb-2.4.tar.gz +libzdb-2.6.tar.gz Index: libzdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/EL-5/libzdb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libzdb.spec 7 Mar 2009 17:56:00 -0000 1.2 +++ libzdb.spec 5 Jul 2009 20:02:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: libzdb -Version: 2.4 -Release: 3%{?dist} +Version: 2.6 +Release: 1%{?dist} Summary: Small, fast, and easy to use database API Group: System Environment/Libraries @@ -24,25 +24,6 @@ specified via a standard URL scheme. # Errant file rm -f doc/api-docs/._* -# Add a notice that the dual licensing is not available under Fedora -cat > EXCEPTIONS.new <<_EOF_ -+-----------------------------------------------------------------------------+ -| | -| NOTE: This file is included for reference reasons only. The Fedora | -| project only offers this software under the GPLv3+ and MIT licenses. | -| | -| All files are GPLv3+ licensed, except the following files which are MIT | -| licensed: | -| src/exceptions/assert.c | -| src/exceptions/AssertException.h | -| | -| If you wish to exercise the dual license, please obtain the sources from: | -| http://www.tildeslash.com/libzdb/ | -| | -+-----------------------------------------------------------------------------+ -_EOF_ -cat EXCEPTIONS >> EXCEPTIONS.new && mv EXCEPTIONS.new EXCEPTIONS - %build %configure --disable-static --enable-protected make %{?_smp_mflags} @@ -61,7 +42,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{_libdir}/%{name}\.so\.* -%doc AUTHORS CHANGES COPYING EXCEPTIONS README +%doc AUTHORS CHANGES COPYING README %package devel @@ -82,6 +63,13 @@ Developer header files & libraries for l %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.6-1 +- v 2.6 + +* Thu Jun 04 2009 Bernard Johnson - 2.5-1 +- remove EXCEPTIONS notice +- v 2.5 + * Sat Mar 07 2009 Bernard Johnson - 2.4-3 - fix typo in requires - bz #474044 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Mar 2009 17:51:07 -0000 1.2 +++ sources 5 Jul 2009 20:02:36 -0000 1.3 @@ -1 +1 @@ -b4c4ba0090881d4714f7f3e56d6eadbd libzdb-2.4.tar.gz +54eef941f130768d2d0a311873550e25 libzdb-2.6.tar.gz From slankes at fedoraproject.org Sun Jul 5 20:17:28 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Sun, 5 Jul 2009 20:17:28 +0000 (UTC) Subject: rpms/psi/devel psi.spec,1.31,1.32 Message-ID: <20090705201728.C795311C0097@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14589 Modified Files: psi.spec Log Message: * Thu Jul 05 2009 Sven Lankes 0.13-0.2.rc2 - own plugin directories (bz #509683) Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- psi.spec 2 Jul 2009 20:51:53 -0000 1.31 +++ psi.spec 5 Jul 2009 20:17:28 -0000 1.32 @@ -1,6 +1,6 @@ Name: psi Version: 0.13 -Release: 0.1.rc2%{?dist} +Release: 0.2.rc2%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet @@ -105,6 +105,7 @@ desktop-file-install --vendor fedora \ --delete-original\ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop +mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins %clean rm -rf $RPM_BUILD_ROOT @@ -130,6 +131,8 @@ fi %{_datadir}/%{name} %_datadir/applications/*.desktop %{_datadir}/icons/hicolor/*/apps/%name.png +%dir %{_libdir}/%{name}/ +%dir %{_libdir}/%{name}/plugins/ %exclude %{_datadir}/%{name}/*.qm %exclude %{_datadir}/%{name}/iconsets/*/*.jisp @@ -144,6 +147,9 @@ fi %changelog +* Thu Jul 05 2009 Sven Lankes 0.13-0.2.rc2 +- own plugin directories (bz #509683) + * Thu Jul 02 2009 Sven Lankes 0.13-0.1.rc2 - 0.13 rc2 From slankes at fedoraproject.org Sun Jul 5 20:42:21 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Sun, 5 Jul 2009 20:42:21 +0000 (UTC) Subject: rpms/merkaartor/devel .cvsignore, 1.7, 1.8 merkaartor-noqgtkstyle.patch, 1.1, 1.2 merkaartor.spec, 1.12, 1.13 sources, 1.7, 1.8 merkaartor-eslang.patch, 1.1, NONE Message-ID: <20090705204221.F225811C0097@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/merkaartor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19073 Modified Files: .cvsignore merkaartor-noqgtkstyle.patch merkaartor.spec sources Removed Files: merkaartor-eslang.patch Log Message: * Sun Jul 05 2009 Sven Lankes - 0.14-0.1-pre2 - 0.14-pre2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/merkaartor/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 26 Apr 2009 19:18:30 -0000 1.7 +++ .cvsignore 5 Jul 2009 20:41:51 -0000 1.8 @@ -1 +1 @@ -merkaartor-0.13.2.tar.bz2 +merkaartor-0.14-pre2.tar.bz2 merkaartor-noqgtkstyle.patch: Index: merkaartor-noqgtkstyle.patch =================================================================== RCS file: /cvs/pkgs/rpms/merkaartor/devel/merkaartor-noqgtkstyle.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- merkaartor-noqgtkstyle.patch 28 Apr 2009 21:48:40 -0000 1.1 +++ merkaartor-noqgtkstyle.patch 5 Jul 2009 20:41:51 -0000 1.2 @@ -1,11 +1,11 @@ ---- Main.cpp.orig 2009-04-28 23:23:20.804816252 +0200 -+++ Main.cpp 2009-04-28 23:23:32.628816670 +0200 -@@ -9,6 +9,8 @@ +--- src/Main.cpp.orig 2009-07-05 19:43:07.450192605 +0200 ++++ src/Main.cpp 2009-07-05 19:43:48.432727996 +0200 +@@ -92,6 +92,8 @@ int main(int argc, char** argv) { -+ QApplication::setStyle("plastique"); ++ QApplication::setStyle("plastique"); + QApplication app(argc,argv); - QCoreApplication::setOrganizationName("BartVanhauwaert"); + QString logFilename(qApp->applicationDirPath() + "/merkaartor.log"); Index: merkaartor.spec =================================================================== RCS file: /cvs/pkgs/rpms/merkaartor/devel/merkaartor.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- merkaartor.spec 28 Apr 2009 21:48:40 -0000 1.12 +++ merkaartor.spec 5 Jul 2009 20:41:51 -0000 1.13 @@ -1,15 +1,13 @@ Name: merkaartor -Version: 0.13.2 -Release: 2%{?dist} +Version: 0.14 +Release: 0.1.pre2%{?dist} Summary: Qt-Based OpenStreetMap editor Group: Applications/Productivity License: GPLv2 URL: http://www.merkaartor.org -Source0: http://www.merkaartor.org/downloads/source/%{name}-%{version}.tar.bz2 -# This fixes a typo wrt. the es-translation - a fix is already commited upstream for 0.14 -Patch0: merkaartor-eslang.patch -Patch1: merkaartor-noqgtkstyle.patch +Source0: http://www.merkaartor.org/downloads/source/%{name}-%{version}-pre2.tar.bz2 +Patch0: merkaartor-noqgtkstyle.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel >= 4.4 @@ -25,22 +23,19 @@ It has some unique features like anti-al transparent display of map features like roads and curved roads. %prep -%setup -q +%setup -q -n merkaartor-0.14-pre2 %patch0 -p0 -%patch1 -p0 %build -lrelease-qt4 Merkaartor.pro -qmake-qt4 Merkaartor.pro PREFIX=%{_prefix} NODEBUG=1 GEOIMAGE=1 GPSD=1 GDAL=1 NVIDIA_HACK=1 FORCE_CUSTOM_STYLE=1 +lrelease-qt4 src/src.pro +qmake-qt4 Merkaartor.pro PREFIX=%{_prefix} LIBDIR=%{_libdir} NODEBUG=1 GEOIMAGE=1 GPSD=1 GDAL=1 NVIDIA_HACK=1 FORCE_CUSTOM_STYLE=1 make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make INSTALL_ROOT=${RPM_BUILD_ROOT} install -install -p -m 644 -D Icons/Merkaartor.xpm $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}.xpm -desktop-file-install --vendor="fedora" \ - --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop %clean rm -rf $RPM_BUILD_ROOT @@ -49,20 +44,31 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/%{name} -%dir %{_datadir}/merkaartor -%dir %{_datadir}/merkaartor/translations -%dir %{_datadir}/merkaartor/world_shp -%dir %{_datadir}/merkaartor/world_shp/* -%{_datadir}/merkaartor/translations/%{name}_*.qm -%{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/pixmaps/%{name}.xpm +%dir %{_datadir}/%{name}/ +%dir %{_datadir}/%{name}/translations/ +%{_datadir}/%{name}/translations/%{name}_??.qm +%{_datadir}/%{name}/world_background.osb +%{_datadir}/%{name}/*.xml +%{_datadir}/applications/%{name}.desktop +%dir %{_libdir}/%{name}/plugins +%dir %{_libdir}/%{name}/plugins/background +%{_libdir}/%{name}/plugins/background/*.so +%dir %{_libdir}/%{name}/plugins/styles +%{_libdir}/%{name}/plugins/styles/*.so +%{_datadir}/icons/hicolor/48x48/apps/%{name}.png %doc AUTHORS CHANGELOG HACKING LICENSE %changelog +* Sun Jul 05 2009 Sven Lankes - 0.14-0.1-pre2 +- 0.14-pre2 + +* Thu Jul 02 2009 Sven Lankes - 0.14-0.1-pre1 +- 0.14-pre1 + * Tue Apr 28 2009 Sven Lankes - 0.13.2-2 - disable use of qgtkstyle until gdal conflict (bz# 498111) is solved -* Sun Apr 26 2009 Sven Lankes - 0.13.2-1 +* Sun Apr 25 2009 Sven Lankes - 0.13.2-1 - new upstream release * Sat Apr 04 2009 Sven Lankes - 0.13.1-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/merkaartor/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 26 Apr 2009 19:18:30 -0000 1.7 +++ sources 5 Jul 2009 20:41:51 -0000 1.8 @@ -1 +1 @@ -0e6a65d723a7fa29f1e8c921a74d1893 merkaartor-0.13.2.tar.bz2 +c814d97a0b9d7b1a96e40d31dbe77242 merkaartor-0.14-pre2.tar.bz2 --- merkaartor-eslang.patch DELETED --- From rjones at fedoraproject.org Sun Jul 5 21:06:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Sun, 5 Jul 2009 21:06:34 +0000 (UTC) Subject: rpms/mingw32-nsiswrapper/F-10 mingw32-nsiswrapper.spec,1.2,1.3 Message-ID: <20090705210634.47C4E11C02CC@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/mingw32-nsiswrapper/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22886/F-10 Modified Files: mingw32-nsiswrapper.spec Log Message: Add runtime requires mingw32-binutils (RHBZ#509747). Index: mingw32-nsiswrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsiswrapper/F-10/mingw32-nsiswrapper.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-nsiswrapper.spec 21 Apr 2009 22:36:49 -0000 1.2 +++ mingw32-nsiswrapper.spec 5 Jul 2009 21:06:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: mingw32-nsiswrapper Version: 3 -Release: 3%{?dist}.1 +Release: 3%{?dist}.2 Summary: Helper program for making NSIS Windows installers License: GPLv2+ @@ -15,6 +15,7 @@ BuildArch: noarch BuildRequires: perl +Requires: mingw32-binutils Requires: mingw32-nsis @@ -65,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 5 2009 Richard W.M. Jones - 3-3.fc10.2 +- Add runtime requires mingw32-binutils (RHBZ#509747). + * Tue Apr 21 2009 Richard W.M. Jones - 3-3.1 - Fix dependency problem with + in DLL name (Thomas Sailer). From rjones at fedoraproject.org Sun Jul 5 21:06:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Sun, 5 Jul 2009 21:06:34 +0000 (UTC) Subject: rpms/mingw32-nsiswrapper/EL-5 mingw32-nsiswrapper.spec,1.2,1.3 Message-ID: <20090705210634.3E52B11C0097@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/mingw32-nsiswrapper/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22886/EL-5 Modified Files: mingw32-nsiswrapper.spec Log Message: Add runtime requires mingw32-binutils (RHBZ#509747). Index: mingw32-nsiswrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsiswrapper/EL-5/mingw32-nsiswrapper.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-nsiswrapper.spec 21 Apr 2009 22:32:25 -0000 1.2 +++ mingw32-nsiswrapper.spec 5 Jul 2009 21:06:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: mingw32-nsiswrapper Version: 3 -Release: 3%{?dist}.1 +Release: 3%{?dist}.2 Summary: Helper program for making NSIS Windows installers License: GPLv2+ @@ -15,6 +15,7 @@ BuildArch: noarch BuildRequires: perl +Requires: mingw32-binutils Requires: mingw32-nsis @@ -65,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 5 2009 Richard W.M. Jones - 3-3.el5.2 +- Add runtime requires mingw32-binutils (RHBZ#509747). + * Tue Apr 21 2009 Richard W.M. Jones - 3-3.1 - Fix dependency problem with + in DLL name (Thomas Sailer). From rjones at fedoraproject.org Sun Jul 5 21:06:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Sun, 5 Jul 2009 21:06:34 +0000 (UTC) Subject: rpms/mingw32-nsiswrapper/devel mingw32-nsiswrapper.spec,1.4,1.5 Message-ID: <20090705210634.BEDA411C02CC@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/mingw32-nsiswrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22886/devel Modified Files: mingw32-nsiswrapper.spec Log Message: Add runtime requires mingw32-binutils (RHBZ#509747). Index: mingw32-nsiswrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsiswrapper/devel/mingw32-nsiswrapper.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mingw32-nsiswrapper.spec 9 Jun 2009 08:52:30 -0000 1.4 +++ mingw32-nsiswrapper.spec 5 Jul 2009 21:06:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: mingw32-nsiswrapper Version: 4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Helper program for making NSIS Windows installers License: GPLv2+ @@ -15,6 +15,7 @@ BuildArch: noarch BuildRequires: perl +Requires: mingw32-binutils Requires: mingw32-nsis @@ -65,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 5 2009 Richard W.M. Jones - 4-2 +- Add runtime requires mingw32-binutils (RHBZ#509747). + * Tue Jun 9 2009 Richard W.M. Jones - 4-1 - Add more system libraries to the script. From rjones at fedoraproject.org Sun Jul 5 21:06:34 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Sun, 5 Jul 2009 21:06:34 +0000 (UTC) Subject: rpms/mingw32-nsiswrapper/F-11 mingw32-nsiswrapper.spec,1.3,1.4 Message-ID: <20090705210634.87BE011C0097@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/mingw32-nsiswrapper/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22886/F-11 Modified Files: mingw32-nsiswrapper.spec Log Message: Add runtime requires mingw32-binutils (RHBZ#509747). Index: mingw32-nsiswrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsiswrapper/F-11/mingw32-nsiswrapper.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-nsiswrapper.spec 21 Apr 2009 22:35:04 -0000 1.3 +++ mingw32-nsiswrapper.spec 5 Jul 2009 21:06:04 -0000 1.4 @@ -1,6 +1,6 @@ Name: mingw32-nsiswrapper Version: 3 -Release: 4%{?dist}.1 +Release: 4%{?dist}.2 Summary: Helper program for making NSIS Windows installers License: GPLv2+ @@ -15,6 +15,7 @@ BuildArch: noarch BuildRequires: perl +Requires: mingw32-binutils Requires: mingw32-nsis @@ -65,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 5 2009 Richard W.M. Jones - 3-4.fc11.2 +- Add runtime requires mingw32-binutils (RHBZ#509747). + * Tue Apr 21 2009 Richard W.M. Jones - 3-4.1 - Fix dependency problem with + in DLL name (Thomas Sailer). From cwickert at fedoraproject.org Sun Jul 5 23:20:48 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 5 Jul 2009 23:20:48 +0000 (UTC) Subject: rpms/lxappearance/devel .cvsignore, 1.2, 1.3 lxappearance.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090705232049.0925011C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxappearance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18132 Modified Files: .cvsignore lxappearance.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Apr 2008 23:58:33 -0000 1.2 +++ .cvsignore 5 Jul 2009 23:20:18 -0000 1.3 @@ -1 +1 @@ -lxappearance-0.2.tar.gz +lxappearance-0.2.1.tar.gz Index: lxappearance.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/devel/lxappearance.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxappearance.spec 25 Feb 2009 22:18:02 -0000 1.2 +++ lxappearance.spec 5 Jul 2009 23:20:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: lxappearance -Version: 0.2 -Release: 2%{?dist} +Version: 0.2.1 +Release: 1%{?dist} Summary: Feature-rich GTK+ theme switcher for LXDE Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2008 23:58:33 -0000 1.2 +++ sources 5 Jul 2009 23:20:18 -0000 1.3 @@ -1 +1 @@ -28e436c13ab09af54ffc6b415407ca37 lxappearance-0.2.tar.gz +9ca29df5dc9642e96ad1e1b6bffd4b08 lxappearance-0.2.1.tar.gz From deji at fedoraproject.org Sun Jul 5 23:22:59 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Sun, 5 Jul 2009 23:22:59 +0000 (UTC) Subject: rpms/cln/devel .cvsignore, 1.7, 1.8 cln.spec, 1.32, 1.33 sources, 1.7, 1.8 cln-upstream_gcc44_fix.patch, 1.1, NONE Message-ID: <20090705232259.EDA1711C0097@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/cln/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18596 Modified Files: .cvsignore cln.spec sources Removed Files: cln-upstream_gcc44_fix.patch Log Message: * Thu Jul 02 2009 Deji Akingunola - 1.3.0-1 - Update to latest upstream release 1.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cln/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 30 Apr 2008 13:17:52 -0000 1.7 +++ .cvsignore 5 Jul 2009 23:22:29 -0000 1.8 @@ -1 +1 @@ -cln-1.2.2.tar.bz2 +cln-1.3.0.tar.bz2 Index: cln.spec =================================================================== RCS file: /cvs/pkgs/rpms/cln/devel/cln.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- cln.spec 28 May 2009 10:19:23 -0000 1.32 +++ cln.spec 5 Jul 2009 23:22:29 -0000 1.33 @@ -1,14 +1,13 @@ Name: cln -Version: 1.2.2 -Release: 5%{?dist} +Version: 1.3.0 +Release: 1%{?dist} Summary: Class Library for Numbers Group: System Environment/Libraries License: GPLv2+ URL: http://www.ginac.de/CLN/ Source0: http://www.ginac.de/CLN/%{name}-%{version}.tar.bz2 -Patch0: cln-upstream_gcc44_fix.patch -Patch1: cln-1.2.2-s390x.patch +Patch0: cln-1.2.2-s390x.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/install-info @@ -36,26 +35,31 @@ the CLN library. %prep %setup -q -%patch0 -p1 -b .gcc44 -%patch1 -p1 -b .s390x +%patch0 -p1 -b .s390x %build %configure --disable-static make %{?_smp_mflags} +make pdf +make html %install -rm -rf ${RPM_BUILD_ROOT} -%makeinstall -mkdir -p ${RPM_BUILD_ROOT}%{_docdir}/%{name}-devel-%{version} -mv ${RPM_BUILD_ROOT}%{_datadir}/dvi/cln.dvi ${RPM_BUILD_ROOT}%{_datadir}/html ${RPM_BUILD_ROOT}%{_docdir}/%{name}-devel-%{version} -rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir +rm -rf %{buildroot} +make DESTDIR=%{buildroot} install -%clean -rm -rf ${RPM_BUILD_ROOT} +mkdir -p %{buildroot}%{_docdir}/%{name}-devel-%{version} +cp -p doc/cln.pdf doc/cln.html %{buildroot}%{_docdir}/%{name}-devel-%{version}/ + +find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' +rm -f %{buildroot}%{_infodir}/dir +rm -rf %{buildroot}%{_bindir} %{buildroot}%{_mandir}/man1/pi.* %check make %{_smp_mflags} check +%clean +rm -rf %{buildroot} + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig @@ -70,19 +74,21 @@ fi %files %defattr(-,root,root) -%doc COPYING ChangeLog FILES NEWS README TODO* +%doc COPYING ChangeLog NEWS README TODO* %{_libdir}/*.so.* %files devel %defattr(-,root,root) -%{_docdir}/%{name}-devel-%{version} %{_libdir}/*.so %{_libdir}/pkgconfig/cln.pc %{_includedir}/cln/ %{_infodir}/*.info* -%exclude %{_libdir}/*.la +%{_docdir}/%{name}-devel-%{version} %changelog +* Thu Jul 02 2009 Deji Akingunola - 1.3.0-1 +- Update to latest upstream release 1.3.0 + * Thu May 28 2009 Dan Horak - 1.2.2-5 - fix build on s390x - run the test-suite during build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cln/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 30 Apr 2008 13:17:52 -0000 1.7 +++ sources 5 Jul 2009 23:22:29 -0000 1.8 @@ -1 +1 @@ -6b479281fec86314b4c7a9357bd83ef8 cln-1.2.2.tar.bz2 +8cf879f2f6046a40e7ec3c1d5eb35b10 cln-1.3.0.tar.bz2 --- cln-upstream_gcc44_fix.patch DELETED --- From deji at fedoraproject.org Sun Jul 5 23:28:46 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Sun, 5 Jul 2009 23:28:46 +0000 (UTC) Subject: rpms/libqalculate/devel libqalculate.spec,1.24,1.25 Message-ID: <20090705232846.B30CE11C0097@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/libqalculate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19633 Modified Files: libqalculate.spec Log Message: * Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 - Rebuild for cln-1.3.0 Index: libqalculate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqalculate/devel/libqalculate.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libqalculate.spec 25 Feb 2009 17:40:17 -0000 1.24 +++ libqalculate.spec 5 Jul 2009 23:28:46 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Multi-purpose calculator library Name: libqalculate Version: 0.9.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://qalculate.sourceforge.net/ @@ -89,6 +89,9 @@ rm -rf %{buildroot} %{_bindir}/qalc %changelog +* Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 +- Rebuild for cln-1.3.0 + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From deji at fedoraproject.org Sun Jul 5 23:29:44 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Sun, 5 Jul 2009 23:29:44 +0000 (UTC) Subject: rpms/qalculate-gtk/devel qalculate-gtk.spec,1.24,1.25 Message-ID: <20090705232944.BBD1A11C0097@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/qalculate-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19732 Modified Files: qalculate-gtk.spec Log Message: * Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 - Rebuild for cln-1.3.0 Index: qalculate-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/qalculate-gtk/devel/qalculate-gtk.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- qalculate-gtk.spec 25 Feb 2009 17:11:55 -0000 1.24 +++ qalculate-gtk.spec 5 Jul 2009 23:29:14 -0000 1.25 @@ -1,7 +1,7 @@ Summary: A multi-purpose desktop calculator for GNU/Linux Name: qalculate-gtk Version: 0.9.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://qalculate.sourceforge.net/ @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/qalculate-gtk/ %changelog +* Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 +- Rebuild for cln-1.3.0 + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From deji at fedoraproject.org Sun Jul 5 23:31:12 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Sun, 5 Jul 2009 23:31:12 +0000 (UTC) Subject: rpms/qalculate-kde/devel qalculate-kde.spec,1.24,1.25 Message-ID: <20090705233112.DF83711C0097@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/qalculate-kde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20087 Modified Files: qalculate-kde.spec Log Message: * Sun Jul 05 2009 Deji Akingunola - 0.9.6-8 - Rebuild for cln-1.3.0 Index: qalculate-kde.spec =================================================================== RCS file: /cvs/pkgs/rpms/qalculate-kde/devel/qalculate-kde.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- qalculate-kde.spec 26 Feb 2009 16:36:53 -0000 1.24 +++ qalculate-kde.spec 5 Jul 2009 23:30:42 -0000 1.25 @@ -1,7 +1,7 @@ Summary: A multi-purpose desktop calculator for GNU/Linux Name: qalculate-kde Version: 0.9.6 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://qalculate.sourceforge.net/ @@ -74,6 +74,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/*/actions/* %changelog +* Sun Jul 05 2009 Deji Akingunola - 0.9.6-8 +- Rebuild for cln-1.3.0 + * Thu Feb 26 2009 Deji Akingunola - 0.9.6-7 - Rebuild after the last rebuild failed because of kdelibs4/3 conflicts From cwickert at fedoraproject.org Sun Jul 5 23:50:43 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 5 Jul 2009 23:50:43 +0000 (UTC) Subject: rpms/lxappearance/F-11 .cvsignore, 1.2, 1.3 lxappearance.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090705235043.51F7611C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxappearance/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24038/F-11 Modified Files: .cvsignore lxappearance.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Apr 2008 23:58:33 -0000 1.2 +++ .cvsignore 5 Jul 2009 23:50:13 -0000 1.3 @@ -1 +1 @@ -lxappearance-0.2.tar.gz +lxappearance-0.2.1.tar.gz Index: lxappearance.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-11/lxappearance.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxappearance.spec 25 Feb 2009 22:18:02 -0000 1.2 +++ lxappearance.spec 5 Jul 2009 23:50:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: lxappearance -Version: 0.2 -Release: 2%{?dist} +Version: 0.2.1 +Release: 1%{?dist} Summary: Feature-rich GTK+ theme switcher for LXDE Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2008 23:58:33 -0000 1.2 +++ sources 5 Jul 2009 23:50:13 -0000 1.3 @@ -1 +1 @@ -28e436c13ab09af54ffc6b415407ca37 lxappearance-0.2.tar.gz +9ca29df5dc9642e96ad1e1b6bffd4b08 lxappearance-0.2.1.tar.gz From cwickert at fedoraproject.org Sun Jul 5 23:50:43 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 5 Jul 2009 23:50:43 +0000 (UTC) Subject: rpms/lxappearance/F-10 .cvsignore, 1.2, 1.3 lxappearance.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090705235043.8F22611C02CC@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxappearance/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24038/F-10 Modified Files: .cvsignore lxappearance.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Apr 2008 23:58:33 -0000 1.2 +++ .cvsignore 5 Jul 2009 23:50:13 -0000 1.3 @@ -1 +1 @@ -lxappearance-0.2.tar.gz +lxappearance-0.2.1.tar.gz Index: lxappearance.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-10/lxappearance.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxappearance.spec 30 Apr 2008 23:58:33 -0000 1.1 +++ lxappearance.spec 5 Jul 2009 23:50:13 -0000 1.2 @@ -1,5 +1,5 @@ Name: lxappearance -Version: 0.2 +Version: 0.2.1 Release: 1%{?dist} Summary: Feature-rich GTK+ theme switcher for LXDE @@ -53,6 +53,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 + +* Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Apr 20 2008 Christoph Wickert - 0.2-1 - Update to 0.2 - Remove install-patch, applied upstream Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2008 23:58:33 -0000 1.2 +++ sources 5 Jul 2009 23:50:13 -0000 1.3 @@ -1 +1 @@ -28e436c13ab09af54ffc6b415407ca37 lxappearance-0.2.tar.gz +9ca29df5dc9642e96ad1e1b6bffd4b08 lxappearance-0.2.1.tar.gz From cwickert at fedoraproject.org Sun Jul 5 23:51:55 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 5 Jul 2009 23:51:55 +0000 (UTC) Subject: rpms/lxmenu-data/devel lxmenu-data-0.1.1-menu.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 lxmenu-data.spec, 1.1, 1.2 sources, 1.2, 1.3 lxmenu-data-0.1-menu.patch, 1.1, NONE Message-ID: <20090705235155.804E411C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxmenu-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24420 Modified Files: .cvsignore lxmenu-data.spec sources Added Files: lxmenu-data-0.1.1-menu.patch Removed Files: lxmenu-data-0.1-menu.patch Log Message: * Mon Jul 06 2009 Christoph Wickert 0.1.1-1 - Update to 0.1.1 lxmenu-data-0.1.1-menu.patch: --- NEW FILE lxmenu-data-0.1.1-menu.patch --- --- lxmenu-data-0.1.1.orig/layout/lxde-applications.menu 2009-05-19 18:52:11.000000000 +0200 +++ lxmenu-data-0.1.1/layout/lxde-applications.menu 2009-07-06 01:40:17.000000000 +0200 @@ -148,29 +148,43 @@ + - DesktopSettings + Preferences lxde-settings.directory - - + Settings - PackageManager - System - + + + System + X-XfceSettingsDialog + gnomecc.desktop + gnome-default-applications.desktop + + + - - - - + - + + + Administration + lxde-settings-system.directory + + + Settings + System + + + - DesktopSettings + Preferences + Administration Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Mar 2009 17:46:15 -0000 1.2 +++ .cvsignore 5 Jul 2009 23:51:55 -0000 1.3 @@ -1 +1 @@ -lxmenu-data-0.1.tar.gz +lxmenu-data-0.1.1.tar.gz Index: lxmenu-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/devel/lxmenu-data.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxmenu-data.spec 24 Mar 2009 17:46:15 -0000 1.1 +++ lxmenu-data.spec 5 Jul 2009 23:51:55 -0000 1.2 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/487973 Name: lxmenu-data -Version: 0.1 -Release: 2%{?dist} +Version: 0.1.1 +Release: 1%{?dist} Summary: Data files for the LXDE menu Group: User Interface/Desktops @@ -10,7 +10,7 @@ License: LGPLv2+ URL: http://lxde.org Source0: http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.gz Source1: lxmenu-data-0.1-COPYING -Patch0: lxmenu-data-0.1-menu.patch +Patch0: lxmenu-data-0.1.1-menu.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: intltool >= 0.40.0 @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert 0.1.1-1 +- Update to 0.1.1 + * Sun Mar 22 2009 Christoph Wickert 0.1-2 - Change menu structure to vendor default - Fix license Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Mar 2009 17:46:15 -0000 1.2 +++ sources 5 Jul 2009 23:51:55 -0000 1.3 @@ -1 +1 @@ -1c35ad4bf05cd076ce4a9bb64a246351 lxmenu-data-0.1.tar.gz +cee3181dd22088f3db0e99ffbedc986d lxmenu-data-0.1.1.tar.gz --- lxmenu-data-0.1-menu.patch DELETED --- From cwickert at fedoraproject.org Mon Jul 6 00:07:24 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:07:24 +0000 (UTC) Subject: rpms/lxmenu-data/F-11 lxmenu-data-0.1.1-menu.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 lxmenu-data.spec, 1.1, 1.2 sources, 1.2, 1.3 lxmenu-data-0.1-menu.patch, 1.1, NONE Message-ID: <20090706000724.BE36B11C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxmenu-data/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27270/F-11 Modified Files: .cvsignore lxmenu-data.spec sources Added Files: lxmenu-data-0.1.1-menu.patch Removed Files: lxmenu-data-0.1-menu.patch Log Message: * Mon Jul 06 2009 Christoph Wickert 0.1.1-1 - Update to 0.1.1 lxmenu-data-0.1.1-menu.patch: --- NEW FILE lxmenu-data-0.1.1-menu.patch --- --- lxmenu-data-0.1.1.orig/layout/lxde-applications.menu 2009-05-19 18:52:11.000000000 +0200 +++ lxmenu-data-0.1.1/layout/lxde-applications.menu 2009-07-06 01:40:17.000000000 +0200 @@ -148,29 +148,43 @@ + - DesktopSettings + Preferences lxde-settings.directory - - + Settings - PackageManager - System - + + + System + X-XfceSettingsDialog + gnomecc.desktop + gnome-default-applications.desktop + + + - - - - + - + + + Administration + lxde-settings-system.directory + + + Settings + System + + + - DesktopSettings + Preferences + Administration Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Mar 2009 17:46:15 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:06:54 -0000 1.3 @@ -1 +1 @@ -lxmenu-data-0.1.tar.gz +lxmenu-data-0.1.1.tar.gz Index: lxmenu-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-11/lxmenu-data.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxmenu-data.spec 24 Mar 2009 17:46:15 -0000 1.1 +++ lxmenu-data.spec 6 Jul 2009 00:06:54 -0000 1.2 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/487973 Name: lxmenu-data -Version: 0.1 -Release: 2%{?dist} +Version: 0.1.1 +Release: 1%{?dist} Summary: Data files for the LXDE menu Group: User Interface/Desktops @@ -10,7 +10,7 @@ License: LGPLv2+ URL: http://lxde.org Source0: http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.gz Source1: lxmenu-data-0.1-COPYING -Patch0: lxmenu-data-0.1-menu.patch +Patch0: lxmenu-data-0.1.1-menu.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: intltool >= 0.40.0 @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert 0.1.1-1 +- Update to 0.1.1 + * Sun Mar 22 2009 Christoph Wickert 0.1-2 - Change menu structure to vendor default - Fix license Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Mar 2009 17:46:15 -0000 1.2 +++ sources 6 Jul 2009 00:06:54 -0000 1.3 @@ -1 +1 @@ -1c35ad4bf05cd076ce4a9bb64a246351 lxmenu-data-0.1.tar.gz +cee3181dd22088f3db0e99ffbedc986d lxmenu-data-0.1.1.tar.gz --- lxmenu-data-0.1-menu.patch DELETED --- From cwickert at fedoraproject.org Mon Jul 6 00:07:24 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:07:24 +0000 (UTC) Subject: rpms/lxmenu-data/F-10 lxmenu-data-0.1.1-menu.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 lxmenu-data.spec, 1.1, 1.2 sources, 1.2, 1.3 lxmenu-data-0.1-menu.patch, 1.1, NONE Message-ID: <20090706000724.ED83611C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxmenu-data/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27270/F-10 Modified Files: .cvsignore lxmenu-data.spec sources Added Files: lxmenu-data-0.1.1-menu.patch Removed Files: lxmenu-data-0.1-menu.patch Log Message: * Mon Jul 06 2009 Christoph Wickert 0.1.1-1 - Update to 0.1.1 lxmenu-data-0.1.1-menu.patch: --- NEW FILE lxmenu-data-0.1.1-menu.patch --- --- lxmenu-data-0.1.1.orig/layout/lxde-applications.menu 2009-05-19 18:52:11.000000000 +0200 +++ lxmenu-data-0.1.1/layout/lxde-applications.menu 2009-07-06 01:40:17.000000000 +0200 @@ -148,29 +148,43 @@ + - DesktopSettings + Preferences lxde-settings.directory - - + Settings - PackageManager - System - + + + System + X-XfceSettingsDialog + gnomecc.desktop + gnome-default-applications.desktop + + + - - - - + - + + + Administration + lxde-settings-system.directory + + + Settings + System + + + - DesktopSettings + Preferences + Administration Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 14:59:26 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:06:54 -0000 1.3 @@ -1 +1 @@ -lxmenu-data-0.1.tar.gz +lxmenu-data-0.1.1.tar.gz Index: lxmenu-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-10/lxmenu-data.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxmenu-data.spec 29 Apr 2009 14:59:26 -0000 1.1 +++ lxmenu-data.spec 6 Jul 2009 00:06:54 -0000 1.2 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/487973 Name: lxmenu-data -Version: 0.1 -Release: 2%{?dist} +Version: 0.1.1 +Release: 1%{?dist} Summary: Data files for the LXDE menu Group: User Interface/Desktops @@ -10,7 +10,7 @@ License: LGPLv2+ URL: http://lxde.org Source0: http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.gz Source1: lxmenu-data-0.1-COPYING -Patch0: lxmenu-data-0.1-menu.patch +Patch0: lxmenu-data-0.1.1-menu.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: intltool >= 0.40.0 @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert 0.1.1-1 +- Update to 0.1.1 + * Sun Mar 22 2009 Christoph Wickert 0.1-2 - Change menu structure to vendor default - Fix license Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 14:59:26 -0000 1.2 +++ sources 6 Jul 2009 00:06:54 -0000 1.3 @@ -1 +1 @@ -1c35ad4bf05cd076ce4a9bb64a246351 lxmenu-data-0.1.tar.gz +cee3181dd22088f3db0e99ffbedc986d lxmenu-data-0.1.1.tar.gz --- lxmenu-data-0.1-menu.patch DELETED --- From bskeggs at fedoraproject.org Mon Jul 6 00:12:54 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Mon, 6 Jul 2009 00:12:54 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel .cvsignore, 1.34, 1.35 nouveau-fb-resize.patch, 1.2, 1.3 nouveau-multiple-xserver.patch, 1.3, 1.4 nouveau-nv50-fb-accel.patch, 1.3, 1.4 nouveau-store-vbios.patch, 1.3, 1.4 nouveau-transition-hack.patch, 1.3, 1.4 sources, 1.35, 1.36 xorg-x11-drv-nouveau.spec, 1.41, 1.42 Message-ID: <20090706001254.7F81B11C0097@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28454 Modified Files: .cvsignore nouveau-fb-resize.patch nouveau-multiple-xserver.patch nouveau-nv50-fb-accel.patch nouveau-store-vbios.patch nouveau-transition-hack.patch sources xorg-x11-drv-nouveau.spec Log Message: * Mon Jul 7 2009 Ben Skeggs 0.0.14-1.20090701git6d14327 - update from upstream + bring back additional features found in F11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 29 Jun 2009 00:11:59 -0000 1.34 +++ .cvsignore 6 Jul 2009 00:12:23 -0000 1.35 @@ -1 +1 @@ -xf86-video-nouveau-0.0.14-20090625gitc0bf670.tar.bz2 +xf86-video-nouveau-0.0.14-20090701git6d14327.tar.bz2 nouveau-fb-resize.patch: Index: nouveau-fb-resize.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-fb-resize.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nouveau-fb-resize.patch 17 Apr 2009 02:29:59 -0000 1.2 +++ nouveau-fb-resize.patch 6 Jul 2009 00:12:23 -0000 1.3 @@ -1,25 +1,27 @@ -From 9189921f9822579246be05eec4f97e04cc609e7f Mon Sep 17 00:00:00 2001 +From d061d79be9996d1dfc0295ad1b5cce3b1822d253 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 14 Apr 2009 09:23:07 +1000 -Subject: [PATCH 6/6] f11: support framebuffer resize without driver pixmaps +Subject: [PATCH 4/5] f11: support framebuffer resize without driver pixmaps --- - src/drmmode_display.c | 75 +++++++++++++++++++++++++++++++-- - src/nouveau_exa.c | 8 ++- - src/nv50_randr.c | 6 +++ - src/nv_crtc.c | 16 ++++++- - src/nv_driver.c | 108 ++++++++++++++++++++++++++++++++++++++++++++++--- + src/drmmode_display.c | 77 ++++++++++++++++++++++++++++++++--- + src/nouveau_exa.c | 21 +++++----- + src/nouveau_ms.h | 1 + + src/nv50_randr.c | 13 +++++- + src/nv_crtc.c | 31 +++++++++----- + src/nv_driver.c | 109 ++++++++++++++++++++++++++++++++++++++++++++++--- src/nv_type.h | 9 ++++- - 6 files changed, 205 insertions(+), 17 deletions(-) + 7 files changed, 226 insertions(+), 35 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index ca1a60b..c666c9f 100644 +index 7313653..c831127 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -1069,6 +1069,59 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num) +@@ -1075,7 +1075,60 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num) } static Bool +-drmmode_xf86crtc_resize(ScrnInfoPtr scrn, int width, int height) +nv_xf86crtc_resize(ScrnInfoPtr pScrn, int width, int height) +{ + ScreenPtr pScreen = pScrn->pScreen; @@ -73,10 +75,11 @@ index ca1a60b..c666c9f 100644 +} + +static Bool - drmmode_xf86crtc_resize (ScrnInfoPtr scrn, int width, int height) ++drmmode_xf86crtc_resize (ScrnInfoPtr scrn, int width, int height) { - xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(scrn); -@@ -1083,10 +1136,23 @@ drmmode_xf86crtc_resize (ScrnInfoPtr scrn, int width, int height) + xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn); + ScreenPtr screen = screenInfo.screens[scrn->scrnIndex]; +@@ -1092,10 +1145,23 @@ drmmode_xf86crtc_resize(ScrnInfoPtr scrn, int width, int height) ErrorF("resize called %d %d\n", width, height); if (!pNv->exa_driver_pixmaps) { @@ -89,12 +92,12 @@ index ca1a60b..c666c9f 100644 + drmModeRmFB(drmmode->fd, drmmode->fb_id); + drmmode->fb_id = 0; + -+ for (i = 0; i < config->num_crtc; i++) { -+ xf86CrtcPtr crtc = config->crtc[i]; ++ for (i = 0; i < xf86_config->num_crtc; i++) { ++ xf86CrtcPtr crtc = xf86_config->crtc[i]; + + if (!crtc->enabled) + continue; -+ ++ + xf86CrtcSetMode(crtc, &crtc->mode, crtc->rotation, + crtc->x, crtc->y); + } @@ -102,7 +105,7 @@ index ca1a60b..c666c9f 100644 return TRUE; } -@@ -1149,7 +1215,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { +@@ -1175,7 +1241,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) { @@ -111,7 +114,7 @@ index ca1a60b..c666c9f 100644 drmmode_ptr drmmode; int i; -@@ -1173,8 +1239,7 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) +@@ -1199,8 +1265,7 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) for (i = 0; i < drmmode->mode_res->count_connectors; i++) drmmode_output_init(pScrn, drmmode, i); @@ -122,10 +125,10 @@ index ca1a60b..c666c9f 100644 } diff --git a/src/nouveau_exa.c b/src/nouveau_exa.c -index aee2794..6da7d36 100644 +index 3570301..daf6f72 100644 --- a/src/nouveau_exa.c +++ b/src/nouveau_exa.c -@@ -279,7 +279,10 @@ nouveau_exa_prepare_access(PixmapPtr ppix, int index) +@@ -282,7 +282,10 @@ nouveau_exa_prepare_access(PixmapPtr ppix, int index) } else if (ppix == pScreen->GetScreenPixmap(pScreen)) { nouveau_bo_map(pNv->scanout, NOUVEAU_BO_RDWR); @@ -133,11 +136,21 @@ index aee2794..6da7d36 100644 + if (pNv->scanout != pNv->FB) + ppix->devPrivate.ptr = pNv->scanout->map; + else -+ ppix->devPrivate.ptr = pNv->FB->map + pNv->exa_onscreen->offset; ++ ppix->devPrivate.ptr = pNv->FB->map + pNv->exa_onscreen->offset; } else { /* force migration */ return FALSE; -@@ -543,10 +546,9 @@ Bool +@@ -304,7 +307,8 @@ nouveau_exa_finish_access(PixmapPtr ppix, int index) + if (ppix == pScreen->GetScreenPixmap(pScreen)) { + ppix->devPrivate.ptr = NULL; + nouveau_bo_unmap(pNv->scanout); +- nv50_shadow_damage_frontbuffer_fallback(pScrn); ++ if (pNv->Architecture == NV_ARCH_50) ++ nv50_shadow_damage_frontbuffer_fallback(pScrn); + } + } + +@@ -629,10 +633,9 @@ Bool nouveau_exa_pixmap_is_onscreen(PixmapPtr ppix) { ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; @@ -149,47 +162,148 @@ index aee2794..6da7d36 100644 return TRUE; return FALSE; +@@ -679,9 +682,7 @@ nouveau_exa_init(ScreenPtr pScreen) + nouveau_bo_map(pNv->FB, NOUVEAU_BO_RDWR); + exa->memoryBase = pNv->FB->map; + nouveau_bo_unmap(pNv->FB); +- exa->offScreenBase = NOUVEAU_ALIGN(pScrn->virtualX, 64) * +- NOUVEAU_ALIGN(pScrn->virtualY, 64) * +- (pScrn->bitsPerPixel / 8); ++ exa->offScreenBase = 0x1000; /* just a little to keep "0" special */ + exa->memorySize = pNv->FB->size; + + if (pNv->Architecture < NV_ARCH_50) { +@@ -722,10 +723,8 @@ nouveau_exa_init(ScreenPtr pScreen) + } + + /* Needed for frontbuffer fallbacks (to ensure it accesses the linear fb). */ +- if (pNv->Architecture >= NV_ARCH_50) { +- exa->PrepareAccess = nouveau_exa_prepare_access; +- exa->FinishAccess = nouveau_exa_finish_access; +- } ++ exa->PrepareAccess = nouveau_exa_prepare_access; ++ exa->FinishAccess = nouveau_exa_finish_access; + + exa->MarkSync = nouveau_exa_mark_sync; + exa->WaitMarker = nouveau_exa_wait_marker; +diff --git a/src/nouveau_ms.h b/src/nouveau_ms.h +index 535f16e..681146a 100644 +--- a/src/nouveau_ms.h ++++ b/src/nouveau_ms.h +@@ -129,6 +129,7 @@ struct nouveau_crtc { + + uint32_t cursor_fg, cursor_bg; + ExaOffscreenArea *shadow; ++ unsigned shadow_pitch; + }; + + struct nouveau_encoder { diff --git a/src/nv50_randr.c b/src/nv50_randr.c -index 6c19780..f44d286 100644 +index e006b38..64c6794 100644 --- a/src/nv50_randr.c +++ b/src/nv50_randr.c -@@ -289,8 +289,14 @@ nv50_crtc_set_origin(xf86CrtcPtr crtc, int x, int y) +@@ -308,8 +308,19 @@ nv50_crtc_set_origin(xf86CrtcPtr crtc, int x, int y) { ScrnInfoPtr pScrn = crtc->scrn; NV50CrtcPrivatePtr nv_crtc = crtc->driver_private; ++ nouveauCrtcPtr nvcrtc = nv_crtc->crtc; /* sigh.. */ + NVPtr pNv = NVPTR(pScrn); - - nv_crtc->crtc->SetFBOffset(nv_crtc->crtc, x, y); -+ if (nv_crtc->crtc->front_buffer && -+ nv_crtc->crtc->front_buffer != pNv->scanout) { -+ nv_crtc->crtc->SetFB(nv_crtc->crtc, pNv->scanout); -+ nv_crtc->crtc->ModeSet(nv_crtc->crtc, &crtc->mode); -+ } ++ uint32_t fb; ++ ++ nvcrtc->SetFB(nvcrtc, pNv->scanout); ++ nvcrtc->SetFBOffset(nvcrtc, x, y); ++ nvcrtc->fb_pitch = pScrn->displayWidth * (pScrn->bitsPerPixel >> 3); ++ fb = nvcrtc->front_buffer->offset - pNv->dev->vm_vram_base; + +- nv_crtc->crtc->SetFBOffset(nv_crtc->crtc, x, y); ++ NV50CrtcCommand(nvcrtc, NV50_CRTC0_FB_OFFSET, fb >> 8); ++ NV50CrtcCommand(nvcrtc, NV50_CRTC0_FB_PITCH, nvcrtc->fb_pitch | (1<<20)); ++ NV50CrtcCommand(nvcrtc, NV50_CRTC0_FB_SIZE, (pScrn->virtualY << 16) | ++ pScrn->virtualX); NV50DisplayCommand(pScrn, NV50_UPDATE_DISPLAY, 0); } diff --git a/src/nv_crtc.c b/src/nv_crtc.c -index 1d50874..cfa06e1 100644 +index b8524fb..7f9b82b 100644 --- a/src/nv_crtc.c +++ b/src/nv_crtc.c -@@ -1154,7 +1154,10 @@ void NVCrtcSetBase(xf86CrtcPtr crtc, int x, int y) +@@ -953,7 +953,7 @@ nv_crtc_shadow_allocate (xf86CrtcPtr crtc, int width, int height) + unsigned long rotate_pitch; + int size, align = 64; + +- rotate_pitch = pScrn->displayWidth * (pScrn->bitsPerPixel/8); ++ rotate_pitch = NOUVEAU_ALIGN(width, align) * (pScrn->bitsPerPixel/8); + size = rotate_pitch * height; + + assert(nv_crtc->shadow == NULL); +@@ -986,6 +986,7 @@ nv_crtc_shadow_allocate (xf86CrtcPtr crtc, int width, int height) + offset = pNv->FBMap + nv_crtc->shadow->offset; + #endif /* NOUVEAU_EXA_PIXMAPS */ + ++ nv_crtc->shadow_pitch = rotate_pitch; + return offset; + } + +@@ -996,11 +997,10 @@ static PixmapPtr + nv_crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height) + { + ScrnInfoPtr pScrn = crtc->scrn; ++ struct nouveau_crtc *nv_crtc = to_nouveau_crtc(crtc); + #if NOUVEAU_EXA_PIXMAPS + ScreenPtr pScreen = pScrn->pScreen; +- struct nouveau_crtc *nv_crtc = to_nouveau_crtc(crtc); + #endif /* NOUVEAU_EXA_PIXMAPS */ +- unsigned long rotate_pitch; + PixmapPtr rotate_pixmap; + #if NOUVEAU_EXA_PIXMAPS + struct nouveau_pixmap *nvpix; +@@ -1009,8 +1009,6 @@ nv_crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height) + if (!data) + data = crtc->funcs->shadow_allocate (crtc, width, height); + +- rotate_pitch = pScrn->displayWidth * (pScrn->bitsPerPixel/8); +- + #if NOUVEAU_EXA_PIXMAPS + /* Create a dummy pixmap, to get a private that will be accepted by the system.*/ + rotate_pixmap = pScreen->CreatePixmap(pScreen, +@@ -1027,7 +1025,7 @@ nv_crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height) + width, height, + pScrn->depth, + pScrn->bitsPerPixel, +- rotate_pitch, ++ nv_crtc->shadow_pitch, + data); + #endif /* NOUVEAU_EXA_PIXMAPS */ + +@@ -1051,7 +1049,7 @@ nv_crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height) + height, + pScrn->depth, + pScrn->bitsPerPixel, +- rotate_pitch, ++ nv_crtc->rotate_pitch, + data); + + nvpix = exaGetPixmapDriverPrivate(rotate_pixmap); +@@ -1154,16 +1152,29 @@ void NVCrtcSetBase(xf86CrtcPtr crtc, int x, int y) ScrnInfoPtr pScrn = crtc->scrn; - NVPtr pNv = NVPTR(pScrn); + NVPtr pNv = NVPTR(pScrn); struct nouveau_crtc *nv_crtc = to_nouveau_crtc(crtc); - uint32_t start = (y * pScrn->displayWidth + x) * pScrn->bitsPerPixel / 8; + uint32_t cpp = pScrn->bitsPerPixel / 8; + uint32_t start = (y * pScrn->displayWidth + x) * cpp; + uint32_t pitch = pScrn->displayWidth * cpp; -+ NVCrtcRegPtr regp = &pNv->ModeReg.crtc_reg[nv_crtc->head]; ++ struct nouveau_crtc_state *regp = nv_crtc->state; - if (crtc->rotatedData != NULL) /* we do not exist on the real framebuffer */ +- if (crtc->rotatedData != NULL) /* we do not exist on the real framebuffer */ ++ if (crtc->rotatedData != NULL) { /* we do not exist on the real framebuffer */ #if NOUVEAU_EXA_PIXMAPS -@@ -1162,8 +1165,17 @@ void NVCrtcSetBase(xf86CrtcPtr crtc, int x, int y) + start = nv_crtc->shadow->offset; #else start = pNv->FB->offset + nv_crtc->shadow->offset; /* We do exist relative to the framebuffer */ #endif - else -+ else { ++ pitch = nv_crtc->shadow_pitch; ++ } else { + if (pNv->exa_onscreen) + start += pNv->exa_onscreen->offset; start += pNv->FB->offset; @@ -198,16 +312,16 @@ index 1d50874..cfa06e1 100644 + regp->CRTC[NV_CIO_CR_OFFSET_INDEX] = pitch >> 3; + regp->CRTC[NV_CIO_CRE_RPC0_INDEX] = + XLATE(pitch >> 3, 8, NV_CIO_CRE_RPC0_OFFSET_10_8); -+ crtc_wr_cio_state(crtc, regp, NV_CIO_CRE_RPC0_INDEX); -+ crtc_wr_cio_state(crtc, regp, NV_CIO_CR_OFFSET_INDEX); ++ crtc_wr_cio_state(crtc, NV_CIO_CRE_RPC0_INDEX); ++ crtc_wr_cio_state(crtc, NV_CIO_CR_OFFSET_INDEX); start &= ~3; - pNv->ModeReg.crtc_reg[nv_crtc->head].fb_start = start; + nv_crtc->state->fb_start = start; diff --git a/src/nv_driver.c b/src/nv_driver.c -index f097fb9..0cc81ae 100644 +index 0db0c1c..64f4652 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c -@@ -900,16 +900,112 @@ Bool NVI2CInit(ScrnInfoPtr pScrn) +@@ -776,16 +776,113 @@ Bool NVI2CInit(ScrnInfoPtr pScrn) return TRUE; } @@ -241,8 +355,9 @@ index f097fb9..0cc81ae 100644 + } + + if (!pNv->scanout) { -+ ret = nouveau_bo_new(pNv->dev, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN, -+ 256, pitch * height, &pNv->scanout); ++ ret = nouveau_bo_new(pNv->dev, NOUVEAU_BO_MAP | NOUVEAU_BO_PIN | ++ NOUVEAU_BO_VRAM, 256, pitch * height, ++ &pNv->scanout); + if (ret) { + nouveau_fb_free(pScrn); + return ret; @@ -316,7 +431,7 @@ index f097fb9..0cc81ae 100644 + + if (!crtc->enabled) + continue; -+ ++ + xf86CrtcSetMode(crtc, &crtc->mode, crtc->rotation, + crtc->x, crtc->y); + } @@ -325,7 +440,7 @@ index f097fb9..0cc81ae 100644 } static const xf86CrtcConfigFuncsRec nv_xf86crtc_config_funcs = { -@@ -1423,7 +1519,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) +@@ -1314,7 +1411,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) } else nv50_output_create(pScrn); /* create randr-1.2 "outputs". */ @@ -335,22 +450,23 @@ index f097fb9..0cc81ae 100644 } diff --git a/src/nv_type.h b/src/nv_type.h -index 5396cc8..1a9b9ed 100644 +index 7d7ede9..04b5fa2 100644 --- a/src/nv_type.h +++ b/src/nv_type.h -@@ -304,8 +304,11 @@ typedef struct _NVRec { +@@ -204,9 +204,12 @@ typedef struct _NVRec { volatile CARD8 *PDIO1; uint8_t cur_head; + ExaDriverPtr EXADriverPtr; Bool exa_driver_pixmaps; + Bool wfb_enabled; + ExaOffscreenArea * exa_onscreen; + ScreenBlockHandlerProcPtr BlockHandler; CloseScreenProcPtr CloseScreen; /* Cursor */ -@@ -494,11 +497,15 @@ nouveau_pixmap_offset(PixmapPtr ppix) +@@ -394,11 +397,15 @@ nouveau_pixmap_offset(PixmapPtr ppix) { ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; NVPtr pNv = NVPTR(pScrn); @@ -368,5 +484,5 @@ index 5396cc8..1a9b9ed 100644 #endif /* __NV_STRUCT_H__ */ -- -1.6.2.2 +1.6.2.5 nouveau-multiple-xserver.patch: Index: nouveau-multiple-xserver.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-multiple-xserver.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-multiple-xserver.patch 17 Apr 2009 02:30:00 -0000 1.3 +++ nouveau-multiple-xserver.patch 6 Jul 2009 00:12:24 -0000 1.4 @@ -1,14 +1,14 @@ -From 7811f9211a960dd6396f8e29964dcde2aec6f2e5 Mon Sep 17 00:00:00 2001 -From: Ben Skeggs -Date: Mon, 13 Apr 2009 19:25:25 +1000 -Subject: [PATCH 3/6] f11: hack to support multiple xserver instances +From 4ad2199fcacda97aeb11277e3530f847fd23ca47 Mon Sep 17 00:00:00 2001 +From: Ben Skeggs +Date: Sun, 28 Jun 2009 20:35:54 +1000 +Subject: [PATCH 1/5] f12: hack to support multiple xserver instances --- - src/nv_driver.c | 126 ++++++++++++++++++++++++++++++++++++++++++------------ - 1 files changed, 98 insertions(+), 28 deletions(-) + src/nv_driver.c | 98 +++++++++++++++++++++++++++++++++++++++--------------- + 1 files changed, 71 insertions(+), 27 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c -index 92232dd..9f4c96f 100644 +index 3312192..3d49b10 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -21,6 +21,7 @@ @@ -19,7 +19,7 @@ index 92232dd..9f4c96f 100644 #include "nv_include.h" -@@ -654,14 +655,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) +@@ -532,14 +533,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) */ /* Mandatory */ @@ -47,60 +47,38 @@ index 92232dd..9f4c96f 100644 if (!pNv->NoAccel) NVAccelCommonInit(pScrn); -@@ -718,6 +732,12 @@ NVLeaveVT(int scrnIndex, int flags) +@@ -596,6 +610,13 @@ NVLeaveVT(int scrnIndex, int flags) NVSync(pScrn); + if (pNv->dev) { -+ nouveau_bo_ref(NULL, &pNv->GART); ++ struct nouveau_device_priv *nvdev = nouveau_device(pNv->dev); + -+ ioctl(nouveau_device(pNv->dev)->fd, DRM_IOCTL_DROP_MASTER, NULL); ++ nouveau_bo_ref(NULL, &pNv->GART); ++ ioctl(nvdev->fd, DRM_IOCTL_DROP_MASTER, NULL); + } + if (!pNv->kms_enable) { if (pNv->Architecture < NV_ARCH_50) NVRestore(pScrn); -@@ -1629,11 +1649,81 @@ NVMapMemSW(ScrnInfoPtr pScrn) +@@ -1528,6 +1549,52 @@ NVMapMemSW(ScrnInfoPtr pScrn) } static Bool +NVMapMemSharedFB(ScrnInfoPtr pScrn) +{ + NVPtr pNv = NVPTR(pScrn); -+ uint64_t handle, size; -+ void *map; ++ uint64_t handle; + int ret; + + ret = nouveau_device_get_param(pNv->dev, 0xdeadcafe00000001, &handle); + if (ret) + return FALSE; + -+ ret = nouveau_device_get_param(pNv->dev, 0xdeadcafe00000002, &size); ++ ret = nouveau_bo_wrap(pNv->dev, handle, &pNv->FB); + if (ret) + return FALSE; + -+ if (nouveau_device(pNv->dev)->mm_enabled) { -+ ret = nouveau_bo_handle_ref(pNv->dev, handle, &pNv->FB); -+ if (ret) { -+ ErrorF("%d\n", ret); -+ return FALSE; -+ } -+ -+ pNv->FB->size = size; -+ pNv->FB->tiled = (pNv->Architecture == NV_ARCH_50); -+ return TRUE; -+ } -+ -+ ret = drmMap(nouveau_device(pNv->dev)->fd, handle >> 32, size, &map); -+ if (ret) -+ return FALSE; -+ -+ ret = nouveau_bo_fake(pNv->dev, handle & 0xffffffff, NOUVEAU_BO_VRAM | -+ NOUVEAU_BO_PIN, size, map, &pNv->FB); -+ if (ret) -+ return FALSE; -+ -+ pNv->FB->tiled = (pNv->Architecture == NV_ARCH_50); + return TRUE; +} + @@ -125,8 +103,8 @@ index 92232dd..9f4c96f 100644 + size >> 10); + } + -+ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN, 0, -+ size, &pNv->GART)) { ++ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN | ++ NOUVEAU_BO_MAP, 0, size, &pNv->GART)) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "Unable to allocate GART memory\n"); + } @@ -136,32 +114,20 @@ index 92232dd..9f4c96f 100644 NVMapMem(ScrnInfoPtr pScrn) { NVPtr pNv = NVPTR(pScrn); - uint64_t res; - int size; -+ uint32_t flags; - - if (!pNv->dev) - return NVMapMemSW(pScrn); -@@ -1650,46 +1740,26 @@ NVMapMem(ScrnInfoPtr pScrn) +@@ -1558,6 +1625,8 @@ NVMapMem(ScrnInfoPtr pScrn) size = size * (pScrn->bitsPerPixel >> 3); - size = size * pScrn->virtualY; + size = size * height; } else { + if (NVMapMemSharedFB(pScrn)) + goto skip_fb; size = pNv->VRAMPhysicalSize / 2; } -- if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN, -- 0, size, &pNv->FB)) { -+ flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN; -+ if (pNv->Architecture >= NV_ARCH_50) -+ flags |= NOUVEAU_BO_TILED; -+ -+ if (nouveau_bo_new(pNv->dev, flags, 0, size, &pNv->FB)) { - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, +@@ -1568,38 +1637,13 @@ NVMapMem(ScrnInfoPtr pScrn) "Failed to allocate framebuffer memory\n"); return FALSE; } ++ +skip_fb: xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Allocated %dMiB VRAM for framebuffer + offscreen pixmaps, " @@ -184,8 +150,8 @@ index 92232dd..9f4c96f 100644 - size >> 10); - } - -- if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN, 0, -- size, &pNv->GART)) { +- if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_GART | NOUVEAU_BO_PIN | +- NOUVEAU_BO_MAP, 0, size, &pNv->GART)) { - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, - "Unable to allocate GART memory\n"); - } @@ -194,9 +160,10 @@ index 92232dd..9f4c96f 100644 - "GART: Allocated %dMiB as a scratch buffer\n", - (unsigned int)(pNv->GART->size >> 20)); - } - +- /* We don't need to allocate cursors / lut here if we're using * kernel modesetting + **/ -- -1.6.2.2 +1.6.2.5 nouveau-nv50-fb-accel.patch: Index: nouveau-nv50-fb-accel.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-nv50-fb-accel.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-nv50-fb-accel.patch 17 Apr 2009 02:30:00 -0000 1.3 +++ nouveau-nv50-fb-accel.patch 6 Jul 2009 00:12:24 -0000 1.4 @@ -1,27 +1,27 @@ -From ae25ecbcb06ea2e32af8c7268ce138645d02274f Mon Sep 17 00:00:00 2001 +From 7215e5332099799538dbe6e69a726bdf8e540709 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 13 Apr 2009 19:30:38 +1000 -Subject: [PATCH 4/6] nv50/f11: accelerate front-buffer rendering, linear shadow for scanout +Subject: [PATCH 3/5] nv50/f11: accelerate front-buffer rendering, linear shadow for scanout --- src/Makefile.am | 1 + - src/drmmode_display.c | 8 +- - src/nouveau_exa.c | 37 +++++-- + src/drmmode_display.c | 10 +- + src/nouveau_exa.c | 37 ++++-- src/nv50_randr.c | 2 +- - src/nv50_shadow_damage.c | 275 ++++++++++++++++++++++++++++++++++++++++++++++ + src/nv50_shadow_damage.c | 308 ++++++++++++++++++++++++++++++++++++++++++++++ src/nv_dri.c | 2 +- - src/nv_driver.c | 38 ++++++- + src/nv_driver.c | 40 ++++++- src/nv_proto.h | 4 + src/nv_shadow.c | 8 +- src/nv_type.h | 4 + - 10 files changed, 356 insertions(+), 23 deletions(-) + 10 files changed, 392 insertions(+), 24 deletions(-) create mode 100644 src/nv50_shadow_damage.c diff --git a/src/Makefile.am b/src/Makefile.am -index 29253a6..0c9e4e9 100644 +index c8016eb..b8c0f8d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am -@@ -81,6 +81,7 @@ nouveau_drv_la_SOURCES = \ +@@ -83,6 +83,7 @@ nouveau_drv_la_SOURCES = \ nv50_xv.c \ nv50_texture.h \ nv50reg.h \ @@ -30,13 +30,13 @@ index 29253a6..0c9e4e9 100644 nouveau_output.h \ nouveau_connector.h \ diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 4909e51..ca1a60b 100644 +index 7f9b31d..7313653 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -214,8 +214,8 @@ drmmode_fb_copy_sw(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, +@@ -201,8 +201,8 @@ drmmode_fb_copy_sw(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, } - src = (void *)req.vaddr; - + src = src_bo->map; + - nouveau_bo_map(pNv->FB, NOUVEAU_BO_WR); - dst = pNv->FB->map; + nouveau_bo_map(pNv->scanout, NOUVEAU_BO_WR); @@ -44,16 +44,25 @@ index 4909e51..ca1a60b 100644 dst += (y * fb->pitch) + (x * (fb->bpp >> 3)); h = fb->height; -@@ -225,7 +225,7 @@ drmmode_fb_copy_sw(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, +@@ -212,7 +212,7 @@ drmmode_fb_copy_sw(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, dst += pScrn->displayWidth * (pScrn->bitsPerPixel / 8); } - nouveau_bo_unmap(pNv->FB); + nouveau_bo_unmap(pNv->scanout); + nouveau_bo_unmap(src_bo); + nouveau_bo_ref(NULL, &src_bo); drmFree(fb); - } +@@ -255,7 +255,7 @@ drmmode_fb_copy_nv50(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, + return; + } + +- nouveau_bo_ref(pNv->FB, &dst); ++ nouveau_bo_ref(pNv->scanout, &dst); -@@ -380,7 +380,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, + BEGIN_RING(chan, eng2d, 0x02ac, 1); + OUT_RING (chan, 3); +@@ -372,7 +372,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, ret = drmModeAddFB(drmmode->fd, pScrn->virtualX, pScrn->virtualY, pScrn->depth, pScrn->bitsPerPixel, @@ -63,10 +72,10 @@ index 4909e51..ca1a60b 100644 ErrorF("failed to add fb\n"); return FALSE; diff --git a/src/nouveau_exa.c b/src/nouveau_exa.c -index b7bcc87..aee2794 100644 +index b143633..3570301 100644 --- a/src/nouveau_exa.c +++ b/src/nouveau_exa.c -@@ -265,7 +265,8 @@ nouveau_exa_wait_marker(ScreenPtr pScreen, int marker) +@@ -268,7 +268,8 @@ nouveau_exa_wait_marker(ScreenPtr pScreen, int marker) static Bool nouveau_exa_prepare_access(PixmapPtr ppix, int index) { @@ -76,7 +85,7 @@ index b7bcc87..aee2794 100644 NVPtr pNv = NVPTR(pScrn); if (pNv->exa_driver_pixmaps) { -@@ -275,20 +276,33 @@ nouveau_exa_prepare_access(PixmapPtr ppix, int index) +@@ -278,20 +279,33 @@ nouveau_exa_prepare_access(PixmapPtr ppix, int index) return FALSE; ppix->devPrivate.ptr = map; @@ -114,8 +123,8 @@ index b7bcc87..aee2794 100644 } static Bool -@@ -393,8 +407,7 @@ nouveau_exa_pixmap_is_tiled(PixmapPtr ppix) - if (!nouveau_pixmap_bo(ppix)->tiled) +@@ -475,8 +489,7 @@ nouveau_exa_pixmap_is_tiled(PixmapPtr ppix) + if (!nouveau_pixmap_bo(ppix)->tile_flags) return false; } else - if (pNv->Architecture < NV_ARCH_50 || @@ -124,25 +133,25 @@ index b7bcc87..aee2794 100644 return false; return true; -@@ -406,7 +419,7 @@ nouveau_exa_pixmap_map(PixmapPtr ppix) +@@ -490,7 +503,7 @@ nouveau_exa_pixmap_map(PixmapPtr ppix) struct nouveau_bo *bo = nouveau_pixmap_bo(ppix); unsigned delta = nouveau_pixmap_offset(ppix); -- if (bo->tiled) { -+ if (NVPTR(xf86Screens[ppix->drawable.pScreen->myNum])->GART && bo->tiled) { +- if (bo->tile_flags && !pNv->wfb_enabled) { ++ if (pNv->GART && bo->tile_flags && !pNv->wfb_enabled) { struct nouveau_pixmap *nvpix = nouveau_pixmap(ppix); nvpix->map_refcount++; -@@ -432,7 +445,7 @@ nouveau_exa_pixmap_unmap(PixmapPtr ppix) - { +@@ -518,7 +531,7 @@ nouveau_exa_pixmap_unmap(PixmapPtr ppix) + NVPtr pNv = NVPTR(pScrn); struct nouveau_bo *bo = nouveau_pixmap_bo(ppix); -- if (bo->tiled) { -+ if (NVPTR(xf86Screens[ppix->drawable.pScreen->myNum])->GART && bo->tiled) { +- if (bo->tile_flags && !pNv->wfb_enabled) { ++ if (pNv->GART && bo->tile_flags && !pNv->wfb_enabled) { struct nouveau_pixmap *nvpix = nouveau_pixmap(ppix); if (--nvpix->map_refcount) -@@ -616,6 +629,12 @@ nouveau_exa_init(ScreenPtr pScreen) +@@ -708,6 +721,12 @@ nouveau_exa_init(ScreenPtr pScreen) exa->maxY = 2048; } @@ -156,10 +165,10 @@ index b7bcc87..aee2794 100644 exa->WaitMarker = nouveau_exa_wait_marker; diff --git a/src/nv50_randr.c b/src/nv50_randr.c -index 657e13a..6c19780 100644 +index 7a88f24..e006b38 100644 --- a/src/nv50_randr.c +++ b/src/nv50_randr.c -@@ -99,7 +99,7 @@ nv50_crtc_mode_set(xf86CrtcPtr crtc, DisplayModePtr mode, DisplayModePtr adjuste +@@ -117,7 +117,7 @@ nv50_crtc_mode_set(xf86CrtcPtr crtc, DisplayModePtr mode, DisplayModePtr adjuste nv_crtc->crtc->SetFB(nv_crtc->crtc, nv_crtc->shadow); nv_crtc->crtc->SetFBOffset(nv_crtc->crtc, 0, 0); } else { @@ -170,10 +179,10 @@ index 657e13a..6c19780 100644 nv_crtc->crtc->ModeSet(nv_crtc->crtc, mode); diff --git a/src/nv50_shadow_damage.c b/src/nv50_shadow_damage.c new file mode 100644 -index 0000000..942aba3 +index 0000000..12ea87d --- /dev/null +++ b/src/nv50_shadow_damage.c -@@ -0,0 +1,275 @@ +@@ -0,0 +1,308 @@ +/* + * Copyright 2009 Maarten Maathuis + * @@ -208,37 +217,31 @@ index 0000000..942aba3 +#include "damagestr.h" + +/* When driver allocated pixmaps are used we can easily fold this back into exa code. */ -+static void nv50_shadow_damage_blit(PixmapPtr ppix, RegionPtr pRegion) ++ ++static void ++nv50_shadow_damage_blit_state_emit(struct nouveau_channel *chan) +{ -+ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; ++ ScrnInfoPtr pScrn = chan->user_private; + NVPtr pNv = NVPTR(pScrn); -+ struct nouveau_channel *chan = pNv->chan; -+ struct nouveau_grobj *eng2d = pNv->Nv2D; ++ PixmapPtr ppix = pNv->pspix; + struct nouveau_bo *bo = nouveau_pixmap_bo(ppix); -+ unsigned delta = nouveau_pixmap_offset(ppix); -+ uint32_t fmt; -+ BoxPtr pbox; -+ int nbox; -+ -+ pbox = REGION_RECTS(pRegion); -+ nbox = REGION_NUM_RECTS(pRegion); -+ if (!nbox) -+ return; ++ struct nouveau_grobj *eng2d = pNv->Nv2D; ++ unsigned delta = nouveau_pixmap_offset(ppix), fmt; + -+ /* flush_notify is not needed, we check for all the ring space in advance. */ -+ WAIT_RING (chan, 26 + nbox * 13); ++ WAIT_RING (chan, 27 + 13); + + switch (ppix->drawable.depth) { -+ case 8 : fmt = NV50_2D_SRC_FORMAT_8BPP; break; -+ case 15: fmt = NV50_2D_SRC_FORMAT_15BPP; break; -+ case 16: fmt = NV50_2D_SRC_FORMAT_16BPP; break; -+ case 24: fmt = NV50_2D_SRC_FORMAT_24BPP; break; -+ case 32: fmt = NV50_2D_SRC_FORMAT_32BPP; break; -+ default: -+ xf86DrvMsg(pScrn->scrnIndex, X_ERROR, -+ "Unknown surface format for bpp=%d\n", -+ ppix->drawable.depth); -+ return; ++ case 8 : fmt = NV50_2D_SRC_FORMAT_8BPP; break; ++ case 15: fmt = NV50_2D_SRC_FORMAT_15BPP; break; ++ case 16: fmt = NV50_2D_SRC_FORMAT_16BPP; break; ++ case 24: fmt = NV50_2D_SRC_FORMAT_24BPP; break; ++ case 30: fmt = 0xd1; break; ++ case 32: fmt = NV50_2D_SRC_FORMAT_32BPP; break; ++ default: ++ xf86DrvMsg(pScrn->scrnIndex, X_ERROR, ++ "Unknown surface format for bpp=%d\n", ++ ppix->drawable.depth); ++ return; + } + + /* tiled source */ @@ -274,8 +277,28 @@ index 0000000..942aba3 + OUT_RING (chan, ppix->drawable.height); + BEGIN_RING(chan, eng2d, NV50_2D_OPERATION, 1); + OUT_RING (chan, NV50_2D_OPERATION_SRCCOPY); ++} ++ ++static void ++nv50_shadow_damage_blit(PixmapPtr ppix, RegionPtr pRegion) ++{ ++ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; ++ NVPtr pNv = NVPTR(pScrn); ++ struct nouveau_channel *chan = pNv->chan; ++ struct nouveau_grobj *eng2d = pNv->Nv2D; ++ BoxPtr pbox; ++ int nbox; + ++ pbox = REGION_RECTS(pRegion); ++ nbox = REGION_NUM_RECTS(pRegion); ++ if (!nbox) ++ return; ++ ++ pNv->pspix = ppix; ++ chan->flush_notify = nv50_shadow_damage_blit_state_emit; ++ chan->flush_notify(chan); + while (nbox--) { ++ WAIT_RING (chan, 13); + BEGIN_RING(chan, eng2d, NV50_2D_BLIT_DST_X, 12); + OUT_RING (chan, pbox->x1); + OUT_RING (chan, pbox->y1); @@ -292,40 +315,34 @@ index 0000000..942aba3 + + pbox++; + } ++ chan->flush_notify = NULL; +} + +/* For frontbuffer fallbacks. */ -+static void nv50_shadow_damage_blit_back(PixmapPtr ppix, RegionPtr pRegion) ++static void ++nv50_shadow_damage_blit_back_state_emit(struct nouveau_channel *chan) +{ -+ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; ++ ScrnInfoPtr pScrn = chan->user_private; + NVPtr pNv = NVPTR(pScrn); -+ struct nouveau_channel *chan = pNv->chan; ++ PixmapPtr ppix = pNv->pdpix; + struct nouveau_grobj *eng2d = pNv->Nv2D; + struct nouveau_bo *bo = nouveau_pixmap_bo(ppix); -+ unsigned delta = nouveau_pixmap_offset(ppix); -+ uint32_t fmt; -+ BoxPtr pbox; -+ int nbox; ++ unsigned delta = nouveau_pixmap_offset(ppix), fmt; + -+ pbox = REGION_RECTS(pRegion); -+ nbox = REGION_NUM_RECTS(pRegion); -+ if (!nbox) -+ return; -+ -+ /* flush_notify is not needed, we check for all the ring space in advance. */ -+ WAIT_RING (chan, 26 + nbox * 13); ++ WAIT_RING (chan, 27 + 13); + + switch (ppix->drawable.depth) { -+ case 8 : fmt = NV50_2D_SRC_FORMAT_8BPP; break; -+ case 15: fmt = NV50_2D_SRC_FORMAT_15BPP; break; -+ case 16: fmt = NV50_2D_SRC_FORMAT_16BPP; break; -+ case 24: fmt = NV50_2D_SRC_FORMAT_24BPP; break; -+ case 32: fmt = NV50_2D_SRC_FORMAT_32BPP; break; -+ default: -+ xf86DrvMsg(pScrn->scrnIndex, X_ERROR, -+ "Unknown surface format for bpp=%d\n", -+ ppix->drawable.depth); -+ return; ++ case 8 : fmt = NV50_2D_SRC_FORMAT_8BPP; break; ++ case 15: fmt = NV50_2D_SRC_FORMAT_15BPP; break; ++ case 16: fmt = NV50_2D_SRC_FORMAT_16BPP; break; ++ case 24: fmt = NV50_2D_SRC_FORMAT_24BPP; break; ++ case 30: fmt = 0xd1; break; ++ case 32: fmt = NV50_2D_SRC_FORMAT_32BPP; break; ++ default: ++ xf86DrvMsg(pScrn->scrnIndex, X_ERROR, ++ "Unknown surface format for bpp=%d\n", ++ ppix->drawable.depth); ++ return; + } + + /* untiled source */ @@ -361,8 +378,28 @@ index 0000000..942aba3 + OUT_RING (chan, ppix->drawable.height); + BEGIN_RING(chan, eng2d, NV50_2D_OPERATION, 1); + OUT_RING (chan, NV50_2D_OPERATION_SRCCOPY); ++} ++ ++static void ++nv50_shadow_damage_blit_back(PixmapPtr ppix, RegionPtr pRegion) ++{ ++ ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; ++ NVPtr pNv = NVPTR(pScrn); ++ struct nouveau_channel *chan = pNv->chan; ++ struct nouveau_grobj *eng2d = pNv->Nv2D; ++ BoxPtr pbox; ++ int nbox; + ++ pbox = REGION_RECTS(pRegion); ++ nbox = REGION_NUM_RECTS(pRegion); ++ if (!nbox) ++ return; ++ ++ pNv->pdpix = ppix; ++ chan->flush_notify = nv50_shadow_damage_blit_back_state_emit; ++ chan->flush_notify(chan); + while (nbox--) { ++ WAIT_RING (chan, 13); + BEGIN_RING(chan, eng2d, NV50_2D_BLIT_DST_X, 12); + OUT_RING (chan, pbox->x1); + OUT_RING (chan, pbox->y1); @@ -379,16 +416,19 @@ index 0000000..942aba3 + + pbox++; + } ++ chan->flush_notify = NULL; +} + -+static void nv50_shadow_damage_report(DamagePtr pDamage, RegionPtr pRegion, void *closure) ++static void ++nv50_shadow_damage_report(DamagePtr pDamage, RegionPtr pRegion, void *closure) +{ + PixmapPtr ppix = closure; + + nv50_shadow_damage_blit(ppix, pRegion); +} + -+void nv50_shadow_damage_frontbuffer_fallback(ScrnInfoPtr pScrn) ++void ++nv50_shadow_damage_frontbuffer_fallback(ScrnInfoPtr pScrn) +{ + NVPtr pNv = NVPTR(pScrn); + ScreenPtr pScreen = pScrn->pScreen; @@ -410,7 +450,8 @@ index 0000000..942aba3 + nv50_shadow_damage_blit_back(ppix, &pDamage->pendingDamage); +} + -+static void nv50_shadow_damage_destroy(DamagePtr pDamage, void *closure) ++static void ++nv50_shadow_damage_destroy(DamagePtr pDamage, void *closure) +{ + PixmapPtr ppix = closure; + ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; @@ -419,7 +460,8 @@ index 0000000..942aba3 + pNv->screen_damage = NULL; +} + -+bool nv50_shadow_damage_create(ScrnInfoPtr pScrn) ++bool ++nv50_shadow_damage_create(ScrnInfoPtr pScrn) +{ + NVPtr pNv = NVPTR(pScrn); + ScreenPtr pScreen = pScrn->pScreen; @@ -450,10 +492,10 @@ index 0000000..942aba3 + return true; +} diff --git a/src/nv_dri.c b/src/nv_dri.c -index bd3e5a9..dca6a40 100644 +index f1fe501..68284d2 100644 --- a/src/nv_dri.c +++ b/src/nv_dri.c -@@ -337,7 +337,7 @@ Bool NVDRIFinishScreenInit(ScrnInfoPtr pScrn) +@@ -335,7 +335,7 @@ Bool NVDRIFinishScreenInit(ScrnInfoPtr pScrn) pNOUVEAUDRI->depth = pScrn->depth; pNOUVEAUDRI->bpp = pScrn->bitsPerPixel; @@ -463,10 +505,10 @@ index bd3e5a9..dca6a40 100644 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "[dri] unable to reference front buffer: %d\n", ret); diff --git a/src/nv_driver.c b/src/nv_driver.c -index 9f4c96f..a280257 100644 +index 3d49b10..0db0c1c 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c -@@ -686,10 +686,11 @@ NVEnterVT(int scrnIndex, int flags) +@@ -564,10 +564,11 @@ NVEnterVT(int scrnIndex, int flags) /* Clear the framebuffer, we don't want to see garbage * on-screen up until X decides to draw something */ @@ -482,7 +524,7 @@ index 9f4c96f..a280257 100644 if (pNv->Architecture == NV_ARCH_50) { if (!NV50AcquireDisplay(pScrn)) -@@ -1609,6 +1610,8 @@ NVMapMemSW(ScrnInfoPtr pScrn) +@@ -1509,6 +1510,8 @@ NVMapMemSW(ScrnInfoPtr pScrn) return FALSE; pNv->GART = NULL; @@ -491,7 +533,7 @@ index 9f4c96f..a280257 100644 ret = nouveau_bo_fake(&dev, Cursor0Offset, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN, 64 * 64 * 4, pNv->VRAMMap + Cursor0Offset, -@@ -1760,6 +1763,23 @@ skip_fb: +@@ -1644,6 +1647,25 @@ skip_fb: "at offset 0x%X\n", (uint32_t)(pNv->FB->size >> 20), (uint32_t) pNv->FB->offset); @@ -503,8 +545,9 @@ index 9f4c96f..a280257 100644 + scanout_size *= (pScrn->bitsPerPixel >> 3); + scanout_size *= pScrn->virtualY; + -+ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN, -+ 0, scanout_size, &pNv->scanout)) { ++ if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN | ++ NOUVEAU_BO_MAP, 0, scanout_size, ++ &pNv->scanout)) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "Failed to allocate scanout buffer\n"); + return FALSE; @@ -512,10 +555,11 @@ index 9f4c96f..a280257 100644 + } else { + nouveau_bo_ref(pNv->FB, &pNv->scanout); + } - ++ /* We don't need to allocate cursors / lut here if we're using * kernel modesetting -@@ -1832,6 +1852,7 @@ NVUnmapMem(ScrnInfoPtr pScrn) + **/ +@@ -1716,6 +1738,7 @@ NVUnmapMem(ScrnInfoPtr pScrn) } nouveau_bo_ref(NULL, &pNv->FB); @@ -523,7 +567,7 @@ index 9f4c96f..a280257 100644 nouveau_bo_ref(NULL, &pNv->GART); nouveau_bo_ref(NULL, &pNv->Cursor); nouveau_bo_ref(NULL, &pNv->Cursor2); -@@ -2347,6 +2368,15 @@ NVSaveScreen(ScreenPtr pScreen, int mode) +@@ -2247,6 +2270,15 @@ NVSaveScreen(ScreenPtr pScreen, int mode) bool on = xf86IsUnblank(mode); int i; @@ -540,10 +584,10 @@ index 9f4c96f..a280257 100644 return vgaHWSaveScreen(pScreen, mode); diff --git a/src/nv_proto.h b/src/nv_proto.h -index 43fa62e..f06c757 100644 +index 3a1e1fe..5b82b09 100644 --- a/src/nv_proto.h +++ b/src/nv_proto.h -@@ -267,6 +267,10 @@ void nv50_xv_video_stop(ScrnInfoPtr, pointer, Bool); +@@ -273,6 +273,10 @@ void nv50_xv_video_stop(ScrnInfoPtr, pointer, Bool); int nv50_xv_port_attribute_set(ScrnInfoPtr, Atom, INT32, pointer); int nv50_xv_port_attribute_get(ScrnInfoPtr, Atom, INT32 *, pointer); @@ -587,10 +631,10 @@ index ea1ba35..e15051c 100644 + nouveau_bo_unmap(pNv->scanout); } diff --git a/src/nv_type.h b/src/nv_type.h -index 2ec4fba..5396cc8 100644 +index 61a148a..7d7ede9 100644 --- a/src/nv_type.h +++ b/src/nv_type.h -@@ -270,6 +270,7 @@ typedef struct _NVRec { +@@ -170,6 +170,7 @@ typedef struct _NVRec { /* Various pinned memory regions */ struct nouveau_bo * FB; void * FBMap; @@ -598,7 +642,7 @@ index 2ec4fba..5396cc8 100644 //struct nouveau_bo * FB_old; /* for KMS */ struct nouveau_bo * shadow[2]; /* for easy acces by exa */ struct nouveau_bo * Cursor; -@@ -278,6 +279,9 @@ typedef struct _NVRec { +@@ -178,6 +179,9 @@ typedef struct _NVRec { struct nvbios VBIOS; struct nouveau_bios_info *vbios; @@ -609,5 +653,5 @@ index 2ec4fba..5396cc8 100644 Bool HWCursor; Bool FpScale; -- -1.6.2.2 +1.6.2.5 nouveau-store-vbios.patch: Index: nouveau-store-vbios.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-store-vbios.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-store-vbios.patch 17 Apr 2009 02:30:00 -0000 1.3 +++ nouveau-store-vbios.patch 6 Jul 2009 00:12:24 -0000 1.4 @@ -1,14 +1,14 @@ -From 0a32a04139e0711a0aa2bb4c7885f24b3a963d0c Mon Sep 17 00:00:00 2001 +From 399e2942565702db044741e1b749105675d060fc Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 13 Apr 2009 19:13:26 +1000 -Subject: [PATCH 2/6] bios/f11: store a copy of used vbios image in /var/run +Subject: [PATCH 2/8] bios/f11: store a copy of used vbios image in /var/run --- src/nv_bios.c | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/nv_bios.c b/src/nv_bios.c -index ebf4027..ad4ff1f 100644 +index 182456a..ffd6b1f 100644 --- a/src/nv_bios.c +++ b/src/nv_bios.c @@ -22,6 +22,9 @@ @@ -21,7 +21,7 @@ index ebf4027..ad4ff1f 100644 #include "nv_include.h" #if defined(__FreeBSD__) || defined(__NetBSD__) -@@ -4492,7 +4495,10 @@ uint8_t * nouveau_bios_embedded_edid(ScrnInfoPtr pScrn) +@@ -4672,7 +4675,10 @@ uint8_t * nouveau_bios_embedded_edid(ScrnInfoPtr pScrn) bool NVInitVBIOS(ScrnInfoPtr pScrn) { @@ -32,7 +32,7 @@ index ebf4027..ad4ff1f 100644 memset(bios, 0, sizeof(struct nvbios)); -@@ -4503,6 +4509,13 @@ bool NVInitVBIOS(ScrnInfoPtr pScrn) +@@ -4683,6 +4689,13 @@ bool NVInitVBIOS(ScrnInfoPtr pScrn) if (bios->length > NV_PROM_SIZE) bios->length = NV_PROM_SIZE; nouveau-transition-hack.patch: Index: nouveau-transition-hack.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-transition-hack.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-transition-hack.patch 17 Apr 2009 02:30:00 -0000 1.3 +++ nouveau-transition-hack.patch 6 Jul 2009 00:12:24 -0000 1.4 @@ -1,17 +1,17 @@ -From 48c76f574f059d7d98f18baf10e798d8bfd5b968 Mon Sep 17 00:00:00 2001 -From: Ben Skeggs -Date: Mon, 13 Apr 2009 19:12:25 +1000 -Subject: [PATCH 1/6] kms/f11: hack in transition support without driver pixmaps +From b77c1b4e03bf5bac112d0cd2babaaecd6fed40f6 Mon Sep 17 00:00:00 2001 +From: Ben Skeggs +Date: Tue, 30 Jun 2009 10:52:07 +1000 +Subject: [PATCH 2/5] f12: transitions --- - src/drmmode_display.c | 144 ++++++++++++++++++++++++++++++++++++++++++++++++- - 1 files changed, 142 insertions(+), 2 deletions(-) + src/drmmode_display.c | 147 ++++++++++++++++++++++++++++++++++++++++++++++++- + 1 files changed, 145 insertions(+), 2 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index aa8befe..4909e51 100644 +index 5e2b5f5..7f9b31d 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -185,6 +185,139 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, int *w, int *h) +@@ -171,6 +171,142 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) } static void @@ -21,7 +21,7 @@ index aa8befe..4909e51 100644 + drmModeFBPtr fb; + NVPtr pNv = NVPTR(pScrn); + char *dst = NULL, *src = NULL; -+ struct drm_nouveau_gem_mmap req; ++ struct nouveau_bo *src_bo = NULL; + int ret, h; + + /* This is not what this should look like. Until we can do driver @@ -34,16 +34,17 @@ index aa8befe..4909e51 100644 + return; + } + -+ req.handle = fb->handle; -+ ret = drmCommandWriteRead(nouveau_device(pNv->dev)->fd, -+ DRM_NOUVEAU_GEM_MMAP, &req, sizeof(req)); ++ ret = nouveau_bo_wrap(pNv->dev, fb->handle, &src_bo); ++ if (ret == 0) ++ ret = nouveau_bo_map(src_bo, NOUVEAU_BO_RD); + if (ret) { + ErrorF("src bo map: %d\n", ret); ++ nouveau_bo_ref(NULL, &src_bo); + drmFree(fb); + return; + } -+ src = (void *)req.vaddr; -+ ++ src = src_bo->map; ++ + nouveau_bo_map(pNv->FB, NOUVEAU_BO_WR); + dst = pNv->FB->map; + dst += (y * fb->pitch) + (x * (fb->bpp >> 3)); @@ -56,6 +57,8 @@ index aa8befe..4909e51 100644 + } + + nouveau_bo_unmap(pNv->FB); ++ nouveau_bo_unmap(src_bo); ++ nouveau_bo_ref(NULL, &src_bo); + drmFree(fb); +} + @@ -68,9 +71,17 @@ index aa8befe..4909e51 100644 + struct nouveau_channel *chan = pNv->chan; + struct nouveau_grobj *eng2d = pNv->Nv2D; + struct nouveau_bo *src = NULL, *dst = NULL; -+ struct drm_gem_flink req; + int ret; + ++ uint32_t depth_to_gpu(int depth) { ++ switch (depth) { ++ case 16: return 0xe8; ++ case 30: return 0xd1; ++ default: ++ return 0xcf; ++ } ++ } ++ + /* This is not what this should look like. Until we can do driver + * pixmaps, this will be a nasty hack! + */ @@ -81,27 +92,19 @@ index aa8befe..4909e51 100644 + return; + } + -+ req.handle = fb->handle; -+ ret = ioctl(nouveau_device(pNv->dev)->fd, DRM_IOCTL_GEM_FLINK, &req); -+ if (ret) { -+ ErrorF("name bo: %d\n", ret); -+ drmFree(fb); -+ return; -+ } -+ -+ ret = nouveau_bo_handle_ref(pNv->dev, req.name, &src); ++ ret = nouveau_bo_wrap(pNv->dev, fb->handle, &src); + if (ret) { + ErrorF("src bo: %d\n", ret); + drmFree(fb); + return; + } + -+ nouveau_bo_ref(pNv->scanout, &dst); ++ nouveau_bo_ref(pNv->FB, &dst); + + BEGIN_RING(chan, eng2d, 0x02ac, 1); + OUT_RING (chan, 3); + BEGIN_RING(chan, eng2d, 0x0200, 2); -+ OUT_RING (chan, pScrn->bitsPerPixel == 16 ? 0xe8 : 0xcf); ++ OUT_RING (chan, depth_to_gpu(pScrn->depth)); + OUT_RING (chan, 1); + BEGIN_RING(chan, eng2d, 0x0214, 5); + OUT_RING (chan, pScrn->displayWidth * (pScrn->bitsPerPixel >> 3)); @@ -115,7 +118,7 @@ index aa8befe..4909e51 100644 + OUT_RING (chan, pScrn->virtualX); + OUT_RING (chan, pScrn->virtualY); + BEGIN_RING(chan, eng2d, 0x0230, 2); -+ OUT_RING (chan, fb->bpp == 16 ? 0xe8 : 0xcf); ++ OUT_RING (chan, depth_to_gpu(fb->depth)); + OUT_RING (chan, 1); + BEGIN_RING(chan, eng2d, 0x0244, 5); + OUT_RING (chan, fb->pitch); @@ -151,22 +154,22 @@ index aa8befe..4909e51 100644 drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, int x, int y) { -@@ -194,6 +327,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, - PixmapPtr pspix, pdpix; - int w, h; +@@ -183,6 +319,14 @@ drmmode_fb_copy(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, int src_id, + if (!src_id || !dst_id) + return; + if (!pNv->exa_driver_pixmaps) { -+ if (pNv->NoAccel) ++ if (pNv->NoAccel || pNv->Architecture < NV_ARCH_50) + drmmode_fb_copy_sw(pScrn, drmmode, dst_id, src_id, x, y); + else + drmmode_fb_copy_nv50(pScrn, drmmode, dst_id, src_id, x, y); + return; + } + - pspix = drmmode_fb_pixmap(pScrn, src_id, NULL, NULL); + pspix = drmmode_fb_pixmap(pScrn, src_id, &w, &h); if (!pspix) return; -@@ -292,8 +433,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, +@@ -281,8 +425,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, if (drmmode_crtc->rotate_fb_id) fb_id = drmmode_crtc->rotate_fb_id; else @@ -177,5 +180,5 @@ index aa8befe..4909e51 100644 drmmode_crtc->mode_crtc->buffer_id, x, y); } -- -1.6.2.2 +1.6.2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 29 Jun 2009 00:11:59 -0000 1.35 +++ sources 6 Jul 2009 00:12:24 -0000 1.36 @@ -1 +1 @@ -b08879f18187c12d52101b3be964ce52 xf86-video-nouveau-0.0.14-20090625gitc0bf670.tar.bz2 +2e10f17f6e356996142d0e4724765490 xf86-video-nouveau-0.0.14-20090701git6d14327.tar.bz2 Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- xorg-x11-drv-nouveau.spec 29 Jun 2009 00:11:59 -0000 1.41 +++ xorg-x11-drv-nouveau.spec 6 Jul 2009 00:12:24 -0000 1.42 @@ -7,8 +7,8 @@ # git clone git://git.freedesktop.org/git/nouveau/xf86-video-nouveau # git-archive --format=tar --prefix=xf86-video-nouveau-0.0.10/ %{git_version} | bzip2 > xf86-video-nouveau-0.0.10-%{gitdate}.tar.bz2 -%define gitdate 20090625 -%define git_version c0bf670 +%define gitdate 20090701 +%define git_version 6d14327 %define snapshot %{gitdate}git%{git_version} @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 0.%{snapshot}%{?dist} +Release: 1.%{snapshot}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -43,6 +43,11 @@ Requires: kernel-drm-nouveau = 14 Patch0: nouveau-store-vbios.patch Patch1: dcbconf_7_4_ignore.diff +Patch2: nouveau-multiple-xserver.patch +Patch3: nouveau-transition-hack.patch +Patch4: nouveau-nv50-fb-accel.patch +Patch5: nouveau-fb-resize.patch +Patch6: nouveau-bicubic-2x.patch %description X.Org X11 nouveau video driver. @@ -52,6 +57,11 @@ X.Org X11 nouveau video driver. %patch0 -p1 -b .vbios %patch1 -p1 -b .dcbconf +%patch2 -p1 -b .multix +%patch3 -p1 -b .transition +%patch4 -p1 -b .nv50fb +%patch5 -p1 -b .fbresize +%patch6 -p1 -b .bicubic %build autoreconf -v --install @@ -75,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Mon Jul 7 2009 Ben Skeggs 0.0.14-1.20090701git6d14327 +- update from upstream + bring back additional features found in F11 + * Fri Jun 26 2009 Ben Skeggs 0.0.14-0.20090625gitc0bf670 - rebase onto latest upstream. missing some features that were patched into F11, they'll come back soon. From bskeggs at fedoraproject.org Mon Jul 6 00:13:24 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Mon, 6 Jul 2009 00:13:24 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel nouveau-bicubic-2x.patch,NONE,1.1 Message-ID: <20090706001324.6243B11C0097@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28734 Added Files: nouveau-bicubic-2x.patch Log Message: forgotten patch nouveau-bicubic-2x.patch: --- NEW FILE nouveau-bicubic-2x.patch --- >From 4b61a6276ea839ba3419367d2d9a96fd1deb3c73 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 4 May 2009 17:04:34 +1000 Subject: [PATCH 5/5] xv: only use bicubic filtering when scaling >=2x --- src/nv30_xv_tex.c | 2 +- src/nv40_xv_tex.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nv30_xv_tex.c b/src/nv30_xv_tex.c index 96796fa..adb9010 100644 --- a/src/nv30_xv_tex.c +++ b/src/nv30_xv_tex.c @@ -324,7 +324,7 @@ NV30PutTextureImage(ScrnInfoPtr pScrn, struct nouveau_bo *src, int src_offset, BEGIN_RING(chan, rankine, NV34TCL_TX_ENABLE(3), 1); OUT_RING (chan, 0x0); - if (pPriv->bicubic) + if (pPriv->bicubic && (drw_w / 2 >= src_w) && (drw_h / 2 >= src_h)) NV30_LoadFragProg(pScrn, &nv30_fp_yv12_bicubic); else NV30_LoadFragProg(pScrn, &nv30_fp_yv12_bilinear); diff --git a/src/nv40_xv_tex.c b/src/nv40_xv_tex.c index 46a7c3d..417dfb7 100644 --- a/src/nv40_xv_tex.c +++ b/src/nv40_xv_tex.c @@ -300,7 +300,7 @@ NV40PutTextureImage(ScrnInfoPtr pScrn, NV40VideoTexture(pScrn, src, src_offset2, src_w/2, src_h/2, src_pitch, 2); NV40_LoadVtxProg(pScrn, &nv40_vp_video); - if (pPriv->bicubic) + if (pPriv->bicubic && (drw_w / 2 >= src_w) && (drw_h / 2 >= src_h)) NV40_LoadFragProg(pScrn, &nv40_fp_yv12_bicubic); else NV40_LoadFragProg(pScrn, &nv30_fp_yv12_bilinear); -- 1.6.2.5 From whot at fedoraproject.org Mon Jul 6 00:14:45 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Mon, 6 Jul 2009 00:14:45 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/F-11 .cvsignore, 1.13, 1.14 sources, 1.13, 1.14 xorg-x11-drv-synaptics.spec, 1.32, 1.33 synaptics-1.1.0-allocate-timer-early.patch, 1.1, NONE synaptics-1.1.0-edges.patch, 1.1, NONE synaptics-1.1.0-nograb-fail.patch, 1.2, NONE synaptics-1.1.0-synclient-64.patch, 1.1, NONE synaptics-1.1.0-synclient-accel-max.patch, 1.1, NONE Message-ID: <20090706001445.8260D11C0097@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28971 Modified Files: .cvsignore sources xorg-x11-drv-synaptics.spec Removed Files: synaptics-1.1.0-allocate-timer-early.patch synaptics-1.1.0-edges.patch synaptics-1.1.0-nograb-fail.patch synaptics-1.1.0-synclient-64.patch synaptics-1.1.0-synclient-accel-max.patch Log Message: * Mon Jul 06 2009 Peter Hutterer 1.1.2-1 - synaptics 1.1.2 - drop obsolete patches. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 9 Mar 2009 02:13:13 -0000 1.13 +++ .cvsignore 6 Jul 2009 00:14:15 -0000 1.14 @@ -1 +1 @@ -xf86-input-synaptics-1.1.0.tar.bz2 +xf86-input-synaptics-1.1.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 9 Mar 2009 02:13:14 -0000 1.13 +++ sources 6 Jul 2009 00:14:15 -0000 1.14 @@ -1 +1 @@ -d9a05d53c728400e00e6bc146758c6e5 xf86-input-synaptics-1.1.0.tar.bz2 +c8fd6516f9636a3751e401e4b836e160 xf86-input-synaptics-1.1.2.tar.bz2 Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11/xorg-x11-drv-synaptics.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-synaptics.spec 18 May 2009 23:14:56 -0000 1.32 +++ xorg-x11-drv-synaptics.spec 6 Jul 2009 00:14:15 -0000 1.33 @@ -6,8 +6,8 @@ Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver -Version: 1.1.0 -Release: 7%{?dist} +Version: 1.1.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -18,14 +18,6 @@ Source0: ftp://ftp.x.org/pub/indi Source1: 10-synaptics.fdi Source2: make-git-snapshot.sh -Patch1: synaptics-1.1.0-synclient-64.patch -Patch2: synaptics-1.1.0-allocate-timer-early.patch -Patch3: synaptics-1.1.0-edges.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=499058 -Patch4: synaptics-1.1.0-nograb-fail.patch -# https://bugzilla.redhat.com/show_bug.cgi?id=462574 -Patch5: synaptics-1.1.0-synclient-accel-max.patch - ExcludeArch: s390 s390x BuildRequires: libtool pkgconfig @@ -82,12 +74,6 @@ Features: %setup -q -n %{tarball}-%{version} #%setup -q -n %{tarball}-%{gitdate} -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 - %build autoreconf -v --install --force || exit 1 %configure --disable-static @@ -135,6 +121,10 @@ Development files for the Synaptics Touc %changelog +* Mon Jul 06 2009 Peter Hutterer 1.1.2-1 +- synaptics 1.1.2 +- drop obsolete patches. + * Tue May 19 2009 Peter Hutterer 1.1.0-7 - Update synaptics-1.1.0-nograb-fail.patch: bad return value led to non-synaptics devices to be treated as synaptics devices (#499792) --- synaptics-1.1.0-allocate-timer-early.patch DELETED --- --- synaptics-1.1.0-edges.patch DELETED --- --- synaptics-1.1.0-nograb-fail.patch DELETED --- --- synaptics-1.1.0-synclient-64.patch DELETED --- --- synaptics-1.1.0-synclient-accel-max.patch DELETED --- From cwickert at fedoraproject.org Mon Jul 6 00:17:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:17:41 +0000 (UTC) Subject: rpms/lxshortcut/devel .cvsignore, 1.2, 1.3 lxshortcut.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090706001741.85F1211C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxshortcut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30179 Modified Files: .cvsignore lxshortcut.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 May 2009 21:38:19 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:17:11 -0000 1.3 @@ -1 +1 @@ -lxshortcut-0.1.tar.gz +lxshortcut-0.1.1.tar.gz Index: lxshortcut.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/devel/lxshortcut.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxshortcut.spec 1 May 2009 21:40:34 -0000 1.2 +++ lxshortcut.spec 6 Jul 2009 00:17:11 -0000 1.3 @@ -1,5 +1,5 @@ Name: lxshortcut -Version: 0.1 +Version: 0.1.1 Release: 1%{?dist} Summary: Small utility to edit application shortcuts @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Dec 07 2008 Christoph Wickert - 0.1-1 +* Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 +- Update to 0.1.1 + +* Sun Dec 07 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 May 2009 21:38:19 -0000 1.2 +++ sources 6 Jul 2009 00:17:11 -0000 1.3 @@ -1 +1 @@ -63d1d0a4706b580d819b4d51fa057b25 lxshortcut-0.1.tar.gz +68419579deaecf696111bef97d3985bc lxshortcut-0.1.1.tar.gz From cwickert at fedoraproject.org Mon Jul 6 00:26:46 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:26:46 +0000 (UTC) Subject: rpms/lxshortcut/F-11 .cvsignore, 1.2, 1.3 lxshortcut.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090706002646.E1A9711C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxshortcut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31693/F-11 Modified Files: .cvsignore lxshortcut.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 May 2009 21:43:04 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:26:16 -0000 1.3 @@ -1 +1 @@ -lxshortcut-0.1.tar.gz +lxshortcut-0.1.1.tar.gz Index: lxshortcut.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-11/lxshortcut.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxshortcut.spec 1 May 2009 21:43:04 -0000 1.1 +++ lxshortcut.spec 6 Jul 2009 00:26:16 -0000 1.2 @@ -1,5 +1,5 @@ Name: lxshortcut -Version: 0.1 +Version: 0.1.1 Release: 1%{?dist} Summary: Small utility to edit application shortcuts @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Dec 07 2008 Christoph Wickert - 0.1-1 +* Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 +- Update to 0.1.1 + +* Sun Dec 07 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 May 2009 21:43:04 -0000 1.2 +++ sources 6 Jul 2009 00:26:16 -0000 1.3 @@ -1 +1 @@ -63d1d0a4706b580d819b4d51fa057b25 lxshortcut-0.1.tar.gz +68419579deaecf696111bef97d3985bc lxshortcut-0.1.1.tar.gz From cwickert at fedoraproject.org Mon Jul 6 00:26:47 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:26:47 +0000 (UTC) Subject: rpms/lxshortcut/F-10 .cvsignore, 1.2, 1.3 lxshortcut.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090706002647.0CEE711C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxshortcut/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31693/F-10 Modified Files: .cvsignore lxshortcut.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 May 2009 21:43:03 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:26:16 -0000 1.3 @@ -1 +1 @@ -lxshortcut-0.1.tar.gz +lxshortcut-0.1.1.tar.gz Index: lxshortcut.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-10/lxshortcut.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxshortcut.spec 1 May 2009 21:43:03 -0000 1.1 +++ lxshortcut.spec 6 Jul 2009 00:26:16 -0000 1.2 @@ -1,5 +1,5 @@ Name: lxshortcut -Version: 0.1 +Version: 0.1.1 Release: 1%{?dist} Summary: Small utility to edit application shortcuts @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Dec 07 2008 Christoph Wickert - 0.1-1 +* Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 +- Update to 0.1.1 + +* Sun Dec 07 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 May 2009 21:43:03 -0000 1.2 +++ sources 6 Jul 2009 00:26:16 -0000 1.3 @@ -1 +1 @@ -63d1d0a4706b580d819b4d51fa057b25 lxshortcut-0.1.tar.gz +68419579deaecf696111bef97d3985bc lxshortcut-0.1.1.tar.gz From cwickert at fedoraproject.org Mon Jul 6 00:37:04 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:37:04 +0000 (UTC) Subject: rpms/lxmenu-data/EL-5 lxmenu-data-0.1.1-menu.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 lxmenu-data.spec, 1.1, 1.2 sources, 1.2, 1.3 lxmenu-data-0.1-menu.patch, 1.1, NONE Message-ID: <20090706003704.EE02011C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxmenu-data/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1294 Modified Files: .cvsignore lxmenu-data.spec sources Added Files: lxmenu-data-0.1.1-menu.patch Removed Files: lxmenu-data-0.1-menu.patch Log Message: * Mon Jul 06 2009 Christoph Wickert 0.1.1-1 - Update to 0.1.1 lxmenu-data-0.1.1-menu.patch: --- NEW FILE lxmenu-data-0.1.1-menu.patch --- --- lxmenu-data-0.1.1.orig/layout/lxde-applications.menu 2009-05-19 18:52:11.000000000 +0200 +++ lxmenu-data-0.1.1/layout/lxde-applications.menu 2009-07-06 01:40:17.000000000 +0200 @@ -148,29 +148,43 @@ + - DesktopSettings + Preferences lxde-settings.directory - - + Settings - PackageManager - System - + + + System + X-XfceSettingsDialog + gnomecc.desktop + gnome-default-applications.desktop + + + - - - - + - + + + Administration + lxde-settings-system.directory + + + Settings + System + + + - DesktopSettings + Preferences + Administration Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Mar 2009 17:46:15 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:37:04 -0000 1.3 @@ -1 +1 @@ -lxmenu-data-0.1.tar.gz +lxmenu-data-0.1.1.tar.gz Index: lxmenu-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/EL-5/lxmenu-data.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxmenu-data.spec 24 Mar 2009 17:46:15 -0000 1.1 +++ lxmenu-data.spec 6 Jul 2009 00:37:04 -0000 1.2 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/487973 Name: lxmenu-data -Version: 0.1 -Release: 2%{?dist} +Version: 0.1.1 +Release: 1%{?dist} Summary: Data files for the LXDE menu Group: User Interface/Desktops @@ -10,7 +10,7 @@ License: LGPLv2+ URL: http://lxde.org Source0: http://downloads.sourceforge.net/lxde/%{name}-%{version}.tar.gz Source1: lxmenu-data-0.1-COPYING -Patch0: lxmenu-data-0.1-menu.patch +Patch0: lxmenu-data-0.1.1-menu.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: intltool >= 0.40.0 @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Christoph Wickert 0.1.1-1 +- Update to 0.1.1 + * Sun Mar 22 2009 Christoph Wickert 0.1-2 - Change menu structure to vendor default - Fix license Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Mar 2009 17:46:15 -0000 1.2 +++ sources 6 Jul 2009 00:37:04 -0000 1.3 @@ -1 +1 @@ -1c35ad4bf05cd076ce4a9bb64a246351 lxmenu-data-0.1.tar.gz +cee3181dd22088f3db0e99ffbedc986d lxmenu-data-0.1.1.tar.gz --- lxmenu-data-0.1-menu.patch DELETED --- From whot at fedoraproject.org Mon Jul 6 00:38:54 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Mon, 6 Jul 2009 00:38:54 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/F-11 synaptics-1.1.2-auto-adjust-edges.patch, NONE, 1.1 xorg-x11-drv-synaptics.spec, 1.33, 1.34 Message-ID: <20090706003854.D166111C0097@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1497 Modified Files: xorg-x11-drv-synaptics.spec Added Files: synaptics-1.1.2-auto-adjust-edges.patch Log Message: * Mon Jul 06 2009 Peter Hutterer 1.1.2-2 - synaptics-1.1.2-auto-adjust-edges.patch: auto-adjust the edges when the actual values go past min/max (#502548). synaptics-1.1.2-auto-adjust-edges.patch: --- NEW FILE synaptics-1.1.2-auto-adjust-edges.patch --- >From 4a24e9c624f3dcf9941efbf7a5ee64227817684c Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 30 Jun 2009 10:14:11 +1000 Subject: [PATCH] Auto-adjust edges if values fall outside queried min/max ranges. (#21001) The kernel provides min/max for x/y values but still allows devices to send coordinates outside this range. If the edges are autodetected, re-adjust the edge settings to fit within the new effective min/max range. When the edges change the property needs to be updated accordingly. This can't be done immediately as changing properties requires mallocs and HandleState is called during the signal handler. Instead, set a timer to be called when the server isn't busy and update the property then. The delay between setting the timer and sending the property notify event also reduces the number of events sent, the property event includes the latest state only. If the edges were configured by the user, don't re-adjust. This obsoletes the SpecialScrollAreaRight option as it provides the same functionality, without the side-effects triggering 21001. X.Org Bug 21001 Signed-off-by: Peter Hutterer Note: 'Move edge calculation stuff out into separate function' squashed into this patch. --- man/synaptics.man | 17 +++-- src/properties.c | 17 +++++ src/synaptics.c | 204 +++++++++++++++++++++++++++++++++++++-------------- src/synapticsstr.h | 25 ++++++- 4 files changed, 199 insertions(+), 64 deletions(-) diff --git a/man/synaptics.man b/man/synaptics.man index 2d4be40..8b8025d 100644 --- a/man/synaptics.man +++ b/man/synaptics.man @@ -99,9 +99,7 @@ option is not needed with synaptics 1.0 or later. See section X coordinate for left edge. Property: "Synaptics Edges" .TP 7 .BI "Option \*qRightEdge\*q \*q" integer \*q -X coordinate for right edge. If this option is set, -.BI SpecialScrollAreaRight -is ignored. Property: "Synaptics Edges" +X coordinate for right edge. Property: "Synaptics Edges" .TP 7 .BI "Option \*qTopEdge\*q \*q" integer \*q Y coordinate for top edge. Property: "Synaptics Edges" @@ -109,10 +107,6 @@ Y coordinate for top edge. Property: "Synaptics Edges" .BI "Option \*qBottomEdge\*q \*q" integer \*q Y coordinate for bottom edge. Property: "Synaptics Edges" .TP 7 -.BI "Option \*qSpecialScrollAreaRight\*q \*q" boolean \*q -Some touchpads have a scroll region on the right edge. Disable this option if -you have one but don't want use it as scroll wheel region. -.TP 7 .BI "Option \*qFingerLow\*q \*q" integer \*q When finger pressure drops below this value, the driver counts it as a release. Property: "Synaptics Finger" @@ -814,6 +808,11 @@ vertical scrolling is enabled, horizontal two-finger scrolling is disabled and edge scrolling is disabled. If no multi-finger capabilities are reported, edge scrolling is enabled for both horizontal and vertical scrolling. .LP +Some devices report min/max values but provide values outside this range. +In this case, the driver auto-adjusts the edge values. Acceleration and +speed values are not affected. User-specified edges are not +auto-adjusted. +.LP Button mapping for physical buttons is handled in the server. If the device is switched to left-handed (an in-server mapping of physical buttons 1, 2, 3 to the logical buttons 3, 2, 1, respectively), both physical @@ -826,6 +825,10 @@ The following options are no longer part of the driver configuration: .BI "Option \*qRepeater\*q \*q" string \*q .TP .BI "Option \*qHistorySize\*q \*q" integer \*q +.TP 7 +.BI "Option \*qSpecialScrollAreaRight\*q \*q" boolean \*q +Some touchpads have a scroll region on the right edge. Disable this option if +you have one but don't want use it as scroll wheel region. .SH "AUTHORS" .LP diff --git a/src/properties.c b/src/properties.c index 0861ae0..551f750 100644 --- a/src/properties.c +++ b/src/properties.c @@ -593,5 +593,22 @@ SetProperty(DeviceIntPtr dev, Atom property, XIPropertyValuePtr prop, return Success; } +void +SetEdgeProperty(LocalDevicePtr local) +{ + SynapticsPrivate *priv = (SynapticsPrivate*)local->private; + SynapticsSHM *para = priv->synpara; + uint32_t values[4]; + + values[0] = para->left_edge; + values[1] = para->right_edge; + values[2] = para->top_edge; + values[3] = para->bottom_edge; + + XIChangeDeviceProperty(local->dev, prop_edges, XA_INTEGER, 32, + PropModeReplace, 4, values, FALSE); +} + + #endif diff --git a/src/synaptics.c b/src/synaptics.c index fdd7790..cac69fd 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -77,17 +77,6 @@ #include "synapticsstr.h" #include "synaptics-properties.h" -typedef enum { - BOTTOM_EDGE = 1, - TOP_EDGE = 2, - LEFT_EDGE = 4, - RIGHT_EDGE = 8, - LEFT_BOTTOM_EDGE = BOTTOM_EDGE | LEFT_EDGE, - RIGHT_BOTTOM_EDGE = BOTTOM_EDGE | RIGHT_EDGE, - RIGHT_TOP_EDGE = TOP_EDGE | RIGHT_EDGE, - LEFT_TOP_EDGE = TOP_EDGE | LEFT_EDGE -} edge_type; - #define MAX(a, b) (((a)>(b))?(a):(b)) #define MIN(a, b) (((a)<(b))?(a):(b)) #define TIME_DIFF(a, b) ((int)((a)-(b))) @@ -129,6 +118,7 @@ static void ReadDevDimensions(LocalDevicePtr); void InitDeviceProperties(LocalDevicePtr local); int SetProperty(DeviceIntPtr dev, Atom property, XIPropertyValuePtr prop, BOOL checkonly); +int SetEdgeProperty(LocalDevicePtr local); #endif InputDriverRec SYNAPTICS = { @@ -290,6 +280,40 @@ free_param_data(SynapticsPrivate *priv) priv->synpara = NULL; } +static void +calculate_edge_widths(SynapticsPrivate *priv, int *l, int *r, int *t, int *b) +{ + int width, height; + int ewidth, eheight; /* edge width/height */ + + width = abs(priv->maxx - priv->minx); + height = abs(priv->maxy - priv->miny); + + if (priv->model == MODEL_SYNAPTICS) + { + ewidth = width * .07; + eheight = height * .07; + } else if (priv->model == MODEL_ALPS) + { + ewidth = width * .15; + eheight = height * .15; + } else if (priv->model == MODEL_APPLETOUCH) + { + ewidth = width * .085; + eheight = height * .085; + } else + { + ewidth = width * .04; + eheight = height * .054; + } + + *l = priv->minx + ewidth; + *r = priv->maxx - ewidth; + *t = priv->miny + eheight; + *b = priv->maxy - eheight; +} + + static void set_default_parameters(LocalDevicePtr local) { SynapticsPrivate *priv = local->private; /* read-only */ @@ -328,33 +352,12 @@ static void set_default_parameters(LocalDevicePtr local) if (priv->minx < priv->maxx && priv->miny < priv->maxy) { int width, height, diag; - int ewidth, eheight; /* edge width/height */ width = abs(priv->maxx - priv->minx); height = abs(priv->maxy - priv->miny); diag = sqrt(width * width + height * height); - if (priv->model == MODEL_SYNAPTICS) - { - ewidth = width * .07; - eheight = height * .07; - } else if (priv->model == MODEL_ALPS) - { - ewidth = width * .15; - eheight = height * .15; - } else if (priv->model == MODEL_APPLETOUCH) - { - ewidth = width * .085; - eheight = height * .085; - } else - { - ewidth = width * .04; - eheight = height * .054; - } - l = priv->minx + ewidth; - r = priv->maxx - ewidth; - t = priv->miny + eheight; - b = priv->maxy - eheight; + calculate_edge_widths(priv, &l, &r, &t, &b); /* Again, based on typical x/y range and defaults */ horizScrollDelta = diag * .020; @@ -433,6 +436,16 @@ static void set_default_parameters(LocalDevicePtr local) horizTwoFingerScroll = FALSE; /* set the parameters */ + priv->edges_forced = 0; + if (xf86CheckIfOptionUsedByName(opts, "LeftEdge")) + priv->edges_forced |= LEFT_EDGE; + if (xf86CheckIfOptionUsedByName(opts, "RightEdge")) + priv->edges_forced |= RIGHT_EDGE; + if (xf86CheckIfOptionUsedByName(opts, "TopEdge")) + priv->edges_forced |= TOP_EDGE; + if (xf86CheckIfOptionUsedByName(opts, "BottomEdge")) + priv->edges_forced |= BOTTOM_EDGE; + pars->left_edge = xf86SetIntOption(opts, "LeftEdge", l); pars->right_edge = xf86SetIntOption(opts, "RightEdge", r); pars->top_edge = xf86SetIntOption(opts, "TopEdge", t); @@ -452,11 +465,6 @@ static void set_default_parameters(LocalDevicePtr local) pars->scroll_dist_vert = xf86SetIntOption(opts, "VertScrollDelta", horizScrollDelta); pars->scroll_dist_horiz = xf86SetIntOption(opts, "HorizScrollDelta", vertScrollDelta); pars->scroll_edge_vert = xf86SetBoolOption(opts, "VertEdgeScroll", vertEdgeScroll); - if (xf86CheckIfOptionUsedByName(opts, "RightEdge")) { - pars->special_scroll_area_right = FALSE; - } else { - pars->special_scroll_area_right = xf86SetBoolOption(opts, "SpecialScrollAreaRight", TRUE); - } pars->scroll_edge_horiz = xf86SetBoolOption(opts, "HorizEdgeScroll", horizEdgeScroll); pars->scroll_edge_corner = xf86SetBoolOption(opts, "CornerCoasting", FALSE); pars->scroll_twofinger_vert = xf86SetBoolOption(opts, "VertTwoFingerScroll", vertTwoFingerScroll); @@ -536,6 +544,12 @@ SynapticsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) return NULL; } + priv->property_notify_timer = TimerSet(NULL, 0, 0, NULL, NULL); + if (!priv->property_notify_timer) { + xfree(priv); + return NULL; + } + /* Allocate a new InputInfoRec and add it to the head xf86InputDevs. */ local = xf86AllocateInput(drv, 0); if (!local) { @@ -600,8 +614,6 @@ SynapticsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) set_default_parameters(local); - priv->largest_valid_x = MIN(priv->synpara_default.right_edge, XMAX_NOMINAL); - if (!alloc_param_data(local)) goto SetupProc_fail; @@ -758,7 +770,9 @@ DeviceOff(DeviceIntPtr dev) if (local->fd != -1) { TimerFree(priv->timer); + TimerFree(priv->property_notify_timer); priv->timer = NULL; + priv->property_notify_timer = NULL; xf86RemoveEnabledDevice(local); priv->proto_ops->DeviceOffHook(local); if (priv->comm.buffer) { @@ -939,6 +953,31 @@ edge_detection(SynapticsPrivate *priv, int x, int y) return edge; } +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 3 +/** + * Timer function. Called whenever the edges were auto-adjusted and the + * matching property must be updated to reflect the new state. + */ +static CARD32 +propertyTimerFunc(OsTimerPtr timer, CARD32 now, pointer arg) +{ + LocalDevicePtr local = (LocalDevicePtr)arg; + SynapticsPrivate *priv = (SynapticsPrivate*)local->private; + int sigstate; + + if (!(priv->edges_forced & EDGE_CHANGE_WAITING)) + return 0; + + sigstate = xf86BlockSIGIO(); + + SetEdgeProperty(local); + + priv->edges_forced &= ~(EDGE_CHANGED | EDGE_CHANGE_WAITING); + xf86UnblockSIGIO(sigstate); + return 0; +} +#endif + static CARD32 timerFunc(OsTimerPtr timer, CARD32 now, pointer arg) { @@ -1011,6 +1050,16 @@ ReadInput(LocalDevicePtr local) if (newDelay) priv->timer = TimerSet(priv->timer, 0, delay, timerFunc, local); + +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 3 + /* Set a timer to change the edges property ASAP if we auto-adjusted */ + if ((priv->edges_forced & EDGE_CHANGED) && + !(priv->edges_forced & EDGE_CHANGE_WAITING)) { + priv->property_notify_timer = + TimerSet(priv->property_notify_timer, 0, 100, propertyTimerFunc, local); + priv->edges_forced |= EDGE_CHANGE_WAITING; + } +#endif } static int @@ -2004,22 +2053,65 @@ HandleState(LocalDevicePtr local, struct SynapticsHwState *hw) hw->multi[2] = hw->multi[3] = FALSE; } - /* - * Some touchpads have a scroll wheel region where a very large X - * coordinate is reported. In this case for eliminate discontinuity, - * we adjust X and simulate new zone which adjacent to right edge. - */ - if (hw->x <= XMAX_VALID) { - if (priv->largest_valid_x < hw->x) - priv->largest_valid_x = hw->x; - } else { - hw->x = priv->largest_valid_x + 1; - /* - * If user didn't set right_edge manualy, auto-adjust to bounds of - * hardware scroll area. - */ - if (para->special_scroll_area_right) - priv->synpara->right_edge = priv->largest_valid_x; + /* The kernel doesn't clip into min/max, so auto-adjust the edges if we + * go beyond min/max */ + if (hw->x > priv->maxx || hw->x < priv->minx || + hw->y > priv->maxy || hw->y < priv->miny) + { + int l, r, t, b; + Bool changed = FALSE; + + if (hw->x > priv->maxx && !(priv->edges_forced & RIGHT_EDGE)) + { + priv->maxx = hw->x; + changed = TRUE; + } else if (hw->x < priv->minx && !(priv->edges_forced & LEFT_EDGE)) + { + priv->minx = hw->x; + changed = TRUE; + } + + if (hw->y > priv->maxy && !(priv->edges_forced & BOTTOM_EDGE)) + { + priv->maxy = hw->y; + changed = TRUE; + } else if (hw->y < priv->miny && !(priv->edges_forced & TOP_EDGE)) + { + priv->miny = hw->y; + changed = TRUE; + } + + if (changed) + { + Bool adjusted = FALSE; + calculate_edge_widths(priv, &l, &r, &t, &b); + if (!(priv->edges_forced & LEFT_EDGE)) + { + para->left_edge = l; + adjusted = TRUE; + } + if (!(priv->edges_forced & RIGHT_EDGE)) + { + para->right_edge = r; + adjusted = TRUE; + } + if (!(priv->edges_forced & TOP_EDGE)) + { + para->top_edge = t; + adjusted = TRUE; + } + if (!(priv->edges_forced & BOTTOM_EDGE)) + { + para->bottom_edge = b; + adjusted = TRUE; + } + + /* We're inside a signal handler, can't change the edges + * property directly. Instead, set a flag and (later) a timer to + * set the property ASAP */ + if (adjusted) + priv->edges_forced |= EDGE_CHANGED; + } } edge = edge_detection(priv, hw->x, hw->y); diff --git a/src/synapticsstr.h b/src/synapticsstr.h index d5a3f91..3b44f8c 100644 --- a/src/synapticsstr.h +++ b/src/synapticsstr.h @@ -86,6 +86,24 @@ enum TouchpadModel { MODEL_APPLETOUCH }; +typedef enum { + BOTTOM_EDGE = 1, + TOP_EDGE = 2, + LEFT_EDGE = 4, + RIGHT_EDGE = 8, + LEFT_BOTTOM_EDGE = BOTTOM_EDGE | LEFT_EDGE, + RIGHT_BOTTOM_EDGE = BOTTOM_EDGE | RIGHT_EDGE, + RIGHT_TOP_EDGE = TOP_EDGE | RIGHT_EDGE, + LEFT_TOP_EDGE = TOP_EDGE | LEFT_EDGE, + + /* EDGE_CHANGED and EDGE_CHANGED_WAITING are flags to signal that there + * at least one edge has changed and that there is a property notify + * event waiting to be sent, respectively. */ + EDGE_CHANGED = 16, + EDGE_CHANGE_WAITING = 32 +} edge_type; + + typedef struct _SynapticsPrivateRec { SynapticsSHM synpara_default; /* Default parameter settings, read from @@ -105,7 +123,6 @@ typedef struct _SynapticsPrivateRec SynapticsMoveHistRec move_hist[SYNAPTICS_MOVE_HISTORY]; /* movement history */ int hist_index; /* Last added entry in move_hist[] */ - int largest_valid_x; /* Largest valid X coordinate seen so far */ int scroll_y; /* last y-scroll position */ int scroll_x; /* last x-scroll position */ double scroll_a; /* last angle-scroll position */ @@ -155,6 +172,12 @@ typedef struct _SynapticsPrivateRec Bool has_pressure; /* device reports pressure */ enum TouchpadModel model; /* The detected model */ + + /* edges_forces is set to RIGHT_EDGE | LEFT_EDGE | ... when the matching + * edge is specified in the xorg.conf. When the edges are auto-adjusted, + * edges_forces may be flagged EDGE_CHANGED and EDGE_CHANGED_WAITING */ + int edges_forced; /* edges set manually? RIGHT_EDGE | LEFT_EDGE | ... */ + OsTimerPtr property_notify_timer; /* For sending off property notify events */ } SynapticsPrivate; #endif /* _SYNAPTICSSTR_H_ */ -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/F-11/xorg-x11-drv-synaptics.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- xorg-x11-drv-synaptics.spec 6 Jul 2009 00:14:15 -0000 1.33 +++ xorg-x11-drv-synaptics.spec 6 Jul 2009 00:38:24 -0000 1.34 @@ -7,7 +7,7 @@ Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver Version: 1.1.2 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -18,6 +18,9 @@ Source0: ftp://ftp.x.org/pub/indi Source1: 10-synaptics.fdi Source2: make-git-snapshot.sh +# RH 502548, FDO 21001, should be in synaptics-1.1.3 +Patch01: synaptics-1.1.2-auto-adjust-edges.patch + ExcludeArch: s390 s390x BuildRequires: libtool pkgconfig @@ -74,6 +77,8 @@ Features: %setup -q -n %{tarball}-%{version} #%setup -q -n %{tarball}-%{gitdate} +%patch1 -p1 -b .auto-adjust-edges + %build autoreconf -v --install --force || exit 1 %configure --disable-static @@ -121,6 +126,10 @@ Development files for the Synaptics Touc %changelog +* Mon Jul 06 2009 Peter Hutterer 1.1.2-2 +- synaptics-1.1.2-auto-adjust-edges.patch: auto-adjust the edges when the + actual values go past min/max (#502548). + * Mon Jul 06 2009 Peter Hutterer 1.1.2-1 - synaptics 1.1.2 - drop obsolete patches. From cwickert at fedoraproject.org Mon Jul 6 00:41:25 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 6 Jul 2009 00:41:25 +0000 (UTC) Subject: rpms/lxshortcut/EL-5 .cvsignore, 1.2, 1.3 lxshortcut.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090706004125.9FE1D11C0097@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxshortcut/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2220 Modified Files: .cvsignore lxshortcut.spec sources Log Message: * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 May 2009 21:38:19 -0000 1.2 +++ .cvsignore 6 Jul 2009 00:41:25 -0000 1.3 @@ -1 +1 @@ -lxshortcut-0.1.tar.gz +lxshortcut-0.1.1.tar.gz Index: lxshortcut.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/EL-5/lxshortcut.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxshortcut.spec 1 May 2009 21:40:34 -0000 1.2 +++ lxshortcut.spec 6 Jul 2009 00:41:25 -0000 1.3 @@ -1,5 +1,5 @@ Name: lxshortcut -Version: 0.1 +Version: 0.1.1 Release: 1%{?dist} Summary: Small utility to edit application shortcuts @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Dec 07 2008 Christoph Wickert - 0.1-1 +* Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 +- Update to 0.1.1 + +* Sun Dec 07 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 May 2009 21:38:19 -0000 1.2 +++ sources 6 Jul 2009 00:41:25 -0000 1.3 @@ -1 +1 @@ -63d1d0a4706b580d819b4d51fa057b25 lxshortcut-0.1.tar.gz +68419579deaecf696111bef97d3985bc lxshortcut-0.1.1.tar.gz From dcm at fedoraproject.org Mon Jul 6 00:54:18 2009 From: dcm at fedoraproject.org (David C. Moore) Date: Mon, 6 Jul 2009 00:54:18 +0000 (UTC) Subject: rpms/libiptcdata/devel .cvsignore, 1.4, 1.5 libiptcdata.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090706005418.17EF811C0097@cvs1.fedora.phx.redhat.com> Author: dcm Update of /cvs/pkgs/rpms/libiptcdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5290 Modified Files: .cvsignore libiptcdata.spec sources Log Message: Update to 1.0.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 13 Apr 2009 02:59:11 -0000 1.4 +++ .cvsignore 6 Jul 2009 00:53:47 -0000 1.5 @@ -1 +1 @@ -libiptcdata-1.0.3.tar.gz +libiptcdata-1.0.4.tar.gz Index: libiptcdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/devel/libiptcdata.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libiptcdata.spec 13 Apr 2009 06:36:17 -0000 1.9 +++ libiptcdata.spec 6 Jul 2009 00:53:47 -0000 1.10 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libiptcdata -Version: 1.0.3 -Release: 3%{?dist} +Version: 1.0.4 +Release: 1%{?dist} Summary: IPTC tag library Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.so %changelog +* Sun Jul 05 2009 David Moore 1.0.4-1 +- New upstream version + * Sun Apr 12 2009 David Moore 1.0.3-3 - Added 'BuildRequires: gtk-doc' Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 13 Apr 2009 02:59:11 -0000 1.4 +++ sources 6 Jul 2009 00:53:47 -0000 1.5 @@ -1 +1 @@ -803ff4c3deb9b4458708c75842cce636 libiptcdata-1.0.3.tar.gz +af886556ecb129b694f2d365d03d95a8 libiptcdata-1.0.4.tar.gz From wtogami at fedoraproject.org Mon Jul 6 01:07:16 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Mon, 6 Jul 2009 01:07:16 +0000 (UTC) Subject: rpms/wesnoth/devel .cvsignore, 1.39, 1.40 sources, 1.39, 1.40 wesnoth.spec, 1.79, 1.80 Message-ID: <20090706010716.8C44211C0097@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/wesnoth/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/wtogami/wesnoth/devel Modified Files: .cvsignore sources wesnoth.spec Log Message: 1.6.4 maintenance release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 28 Jun 2009 18:40:07 -0000 1.39 +++ .cvsignore 6 Jul 2009 01:06:46 -0000 1.40 @@ -1 +1 @@ -wesnoth-1.6.3.tar.bz2 +wesnoth-1.6.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 28 Jun 2009 18:40:07 -0000 1.39 +++ sources 6 Jul 2009 01:06:46 -0000 1.40 @@ -1 +1 @@ -2ffabfbbcbfd2e6c0ab5dac1d314d9e1 wesnoth-1.6.3.tar.bz2 +c8bc4c5b2be28e29563dfe3f89eafd51 wesnoth-1.6.4.tar.bz2 Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/devel/wesnoth.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- wesnoth.spec 28 Jun 2009 19:30:11 -0000 1.79 +++ wesnoth.spec 6 Jul 2009 01:06:46 -0000 1.80 @@ -1,5 +1,5 @@ Name: wesnoth -Version: 1.6.3 +Version: 1.6.4 Release: 1%{?dist} Summary: Turn-based strategy game with a fantasy theme @@ -251,6 +251,9 @@ fi #%endif %changelog +* Sun Jul 05 2009 Warren Togami - 1.6.4-1 +- 1.6.4 maintenance release + * Sun Jun 28 2009 Warren Togami - 1.6.3-1 - 1.6.3 maintenance release From wtogami at fedoraproject.org Mon Jul 6 02:26:25 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Mon, 6 Jul 2009 02:26:25 +0000 (UTC) Subject: rpms/wesnoth/F-11 .cvsignore, 1.37, 1.38 sources, 1.39, 1.40 wesnoth.spec, 1.78, 1.79 Message-ID: <20090706022625.E472611C0097@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/wesnoth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22936 Modified Files: .cvsignore sources wesnoth.spec Log Message: 1.6.4 maintenance release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-11/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 28 Jun 2009 20:56:37 -0000 1.37 +++ .cvsignore 6 Jul 2009 02:25:55 -0000 1.38 @@ -1 +1 @@ -wesnoth-1.6.3.tar.bz2 +wesnoth-1.6.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-11/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 28 Jun 2009 20:56:37 -0000 1.39 +++ sources 6 Jul 2009 02:25:55 -0000 1.40 @@ -1 +1 @@ -2ffabfbbcbfd2e6c0ab5dac1d314d9e1 wesnoth-1.6.3.tar.bz2 +c8bc4c5b2be28e29563dfe3f89eafd51 wesnoth-1.6.4.tar.bz2 Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-11/wesnoth.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- wesnoth.spec 28 Jun 2009 20:56:37 -0000 1.78 +++ wesnoth.spec 6 Jul 2009 02:25:55 -0000 1.79 @@ -1,5 +1,5 @@ Name: wesnoth -Version: 1.6.3 +Version: 1.6.4 Release: 1%{?dist} Summary: Turn-based strategy game with a fantasy theme @@ -251,6 +251,9 @@ fi #%endif %changelog +* Sun Jul 05 2009 Warren Togami - 1.6.4-1 +- 1.6.4 maintenance release + * Sun Jun 28 2009 Warren Togami - 1.6.3-1 - 1.6.3 maintenance release From dcm at fedoraproject.org Mon Jul 6 03:22:11 2009 From: dcm at fedoraproject.org (David C. Moore) Date: Mon, 6 Jul 2009 03:22:11 +0000 (UTC) Subject: rpms/libiptcdata/F-11 .cvsignore, 1.4, 1.5 libiptcdata.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090706032212.1E37811C0097@cvs1.fedora.phx.redhat.com> Author: dcm Update of /cvs/pkgs/rpms/libiptcdata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1418 Modified Files: .cvsignore libiptcdata.spec sources Log Message: Update to 1.0.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 13 Apr 2009 02:59:11 -0000 1.4 +++ .cvsignore 6 Jul 2009 03:21:40 -0000 1.5 @@ -1 +1 @@ -libiptcdata-1.0.3.tar.gz +libiptcdata-1.0.4.tar.gz Index: libiptcdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/F-11/libiptcdata.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libiptcdata.spec 13 Apr 2009 06:36:17 -0000 1.9 +++ libiptcdata.spec 6 Jul 2009 03:21:41 -0000 1.10 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libiptcdata -Version: 1.0.3 -Release: 3%{?dist} +Version: 1.0.4 +Release: 1%{?dist} Summary: IPTC tag library Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.so %changelog +* Sun Jul 05 2009 David Moore 1.0.4-1 +- New upstream version + * Sun Apr 12 2009 David Moore 1.0.3-3 - Added 'BuildRequires: gtk-doc' Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 13 Apr 2009 02:59:11 -0000 1.4 +++ sources 6 Jul 2009 03:21:41 -0000 1.5 @@ -1 +1 @@ -803ff4c3deb9b4458708c75842cce636 libiptcdata-1.0.3.tar.gz +af886556ecb129b694f2d365d03d95a8 libiptcdata-1.0.4.tar.gz From wtogami at fedoraproject.org Mon Jul 6 03:22:29 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Mon, 6 Jul 2009 03:22:29 +0000 (UTC) Subject: rpms/wesnoth/F-10 .cvsignore, 1.32, 1.33 sources, 1.33, 1.34 wesnoth.spec, 1.62, 1.63 Message-ID: <20090706032229.69C4511C0097@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/wesnoth/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1487 Modified Files: .cvsignore sources wesnoth.spec Log Message: 1.6.4 maintenance release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-10/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 28 Jun 2009 21:24:17 -0000 1.32 +++ .cvsignore 6 Jul 2009 03:21:59 -0000 1.33 @@ -1 +1 @@ -wesnoth-1.6.3.tar.bz2 +wesnoth-1.6.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-10/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 28 Jun 2009 21:24:17 -0000 1.33 +++ sources 6 Jul 2009 03:21:59 -0000 1.34 @@ -1 +1 @@ -2ffabfbbcbfd2e6c0ab5dac1d314d9e1 wesnoth-1.6.3.tar.bz2 +c8bc4c5b2be28e29563dfe3f89eafd51 wesnoth-1.6.4.tar.bz2 Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-10/wesnoth.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- wesnoth.spec 28 Jun 2009 21:24:17 -0000 1.62 +++ wesnoth.spec 6 Jul 2009 03:21:59 -0000 1.63 @@ -1,5 +1,5 @@ Name: wesnoth -Version: 1.6.3 +Version: 1.6.4 Release: 1%{?dist} Summary: Turn-based strategy game with a fantasy theme @@ -251,6 +251,9 @@ fi #%endif %changelog +* Sun Jul 05 2009 Warren Togami - 1.6.4-1 +- 1.6.4 maintenance release + * Sun Jun 28 2009 Warren Togami - 1.6.3-1 - 1.6.3 maintenance release From wart at fedoraproject.org Mon Jul 6 03:23:58 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Mon, 6 Jul 2009 03:23:58 +0000 (UTC) Subject: rpms/manaworld/devel .cvsignore, 1.14, 1.15 manaworld.spec, 1.18, 1.19 sources, 1.14, 1.15 Message-ID: <20090706032358.6AC0E11C0097@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/manaworld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2001 Modified Files: .cvsignore manaworld.spec sources Log Message: Update to 0.0.29.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 6 May 2009 16:51:25 -0000 1.14 +++ .cvsignore 6 Jul 2009 03:23:58 -0000 1.15 @@ -1 +1 @@ -tmw-0.0.28.1.tar.gz +tmw-0.0.29.1.tar.gz Index: manaworld.spec =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/devel/manaworld.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- manaworld.spec 6 May 2009 16:51:25 -0000 1.18 +++ manaworld.spec 6 Jul 2009 03:23:58 -0000 1.19 @@ -1,5 +1,5 @@ Name: manaworld -Version: 0.0.28.1 +Version: 0.0.29.1 Release: 1%{?dist} Summary: 2D MMORPG world @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 5 2009 Wart 0.0.29.1-1 +- Update to 0.0.29.1 + * Tue May 5 2009 Wart 0.0.28.1-1 - Update to 0.0.28.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 May 2009 16:51:25 -0000 1.14 +++ sources 6 Jul 2009 03:23:58 -0000 1.15 @@ -1 +1 @@ -d92b06bb580df72587a668f97b8fd6a7 tmw-0.0.28.1.tar.gz +263de26c8545a261c6b82b7ae639f733 tmw-0.0.29.1.tar.gz From braden at fedoraproject.org Mon Jul 6 03:54:23 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 6 Jul 2009 03:54:23 +0000 (UTC) Subject: rpms/openvrml/F-11 .cvsignore, 1.20, 1.21 openvrml.spec, 1.61, 1.62 sources, 1.20, 1.21 npfunctions.patch, 1.5, NONE Message-ID: <20090706035423.08CF511C0097@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8194/F-11 Modified Files: .cvsignore openvrml.spec sources Removed Files: npfunctions.patch Log Message: Updated to 0.18.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 23 Mar 2009 10:05:41 -0000 1.20 +++ .cvsignore 6 Jul 2009 03:53:52 -0000 1.21 @@ -1 +1 @@ -openvrml-0.17.12.tar.gz +openvrml-0.18.1.tar.gz Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/openvrml.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- openvrml.spec 23 Mar 2009 10:05:41 -0000 1.61 +++ openvrml.spec 6 Jul 2009 03:53:52 -0000 1.62 @@ -1,29 +1,32 @@ # -*- rpm-spec -*- Name: openvrml -Version: 0.17.12 +Version: 0.18.1 Release: 1%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries -Source: http://downloads.sf.net/openvrml/%{name}-%{version}.tar.gz -Patch0: npfunctions.patch +Source: http://downloads.sourceforge.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: pkgconfig >= 0.12.0 -BuildRequires: boost-devel >= 1.34.1 +BuildRequires: pkgconfig >= 0.18.0 +BuildRequires: boost-devel >= 1.37.0 +BuildRequires: libxml2-devel >= 2.5 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b BuildRequires: fontconfig-devel >= 2.0 BuildRequires: freetype-devel >= 2.1.2 -BuildRequires: gecko-devel >= 1.9 +BuildRequires: gecko-devel >= 1.9.1 BuildRequires: libGLU-devel BuildRequires: libXmu-devel BuildRequires: glib2-devel >= 2.6 BuildRequires: dbus-glib-devel -BuildRequires: gtk2-devel +BuildRequires: gtk2-devel >= 2.12 +BuildRequires: gtkglext-devel BuildRequires: libgnomeui-devel >= 2.14 BuildRequires: curl-devel -Requires: gecko-libs >= 1.9 +BuildRequires: java-devel +Requires: gecko-libs >= 1.9.1 +Requires: java %description OpenVRML is a VRML/X3D support library, including a runtime and facilities @@ -34,13 +37,13 @@ for reading and displaying VRML and X3D Summary: Headers for developing C++ programs with OpenVRML Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: pkgconfig -Requires: boost-devel >= 1.34.1 +Requires: pkgconfig >= 0.18.0 +Requires: boost-devel >= 1.37.0 Requires: libpng-devel Requires: libjpeg-devel Requires: fontconfig-devel Requires: freetype-devel -Requires: gecko-devel >= 1.9 +Requires: gecko-devel >= 1.9.1 %description devel Headers that programmers will need to develop C++ programs using OpenVRML. @@ -57,10 +60,8 @@ Summary: OpenVRML OpenGL renderer Group: Development/Libraries Requires: %{name}-gl = %{version}-%{release} Requires: %{name}-devel = %{version}-%{release} -Requires: pkgconfig +Requires: pkgconfig >= 0.18.0 Requires: libGLU-devel -Requires: libXmu-devel -Requires: gtk2-devel %description gl-devel Headers that programmers will need to develop C++ programs using the OpenVRML OpenGL renderer. @@ -93,24 +94,29 @@ Requires: dbus-x11 %description player VRML/X3D player. Hosts the OpenVRML XEmbed control. +%package doc +Summary: Documentation for OpenVRML +Group: Documentation +Requires: %{name} = %{version}-%{release} +%description doc + %prep %setup -%patch0 -p1 %build CXXFLAGS="%optflags -fvisibility=hidden -fvisibility-inlines-hidden -Wno-missing-braces" -%configure --disable-static --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" BOOST_LIB_SUFFIX="-mt" -# vrml97node.cpp and browser.cpp are huge and need a lot of RAM. -if [ `free -b | awk '/^Mem:/{print $2}'` -gt 4000000000 ]; then +%configure --disable-static --enable-exception-specs=nothrow --disable-examples CPPFLAGS="-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux -DNDEBUG" JAVA_HOME=/usr/lib/jvm/jre %{__make} %{_smp_mflags} -else -%{__make} -fi + +%check +%{__make} %{_smp_mflags} check %install %{__make} DESTDIR=%{buildroot} install %{__rm} %{buildroot}%{_libdir}/*.la %{__rm} %{buildroot}%{_libdir}/mozilla/plugins/openvrml.la +%{__rm} %{buildroot}%{_libdir}/openvrml/node/*.la +%{__rm} %{buildroot}%{_libdir}/openvrml/script/*.la %clean %{__rm} -rf %{buildroot} @@ -121,11 +127,20 @@ fi %files %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS +%dir %{_datadir}/openvrml +%dir %{_datadir}/openvrml/component +%{_datadir}/openvrml/component/*.xml +%dir %{_datadir}/openvrml/java +%{_datadir}/openvrml/java/script.jar %{_libdir}/libopenvrml.so.* +%dir %{_libdir}/openvrml +%dir %{_libdir}/openvrml/node +%{_libdir}/openvrml/node/*.so +%dir %{_libdir}/openvrml/script +%{_libdir}/openvrml/script/*.so %files devel %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS -%doc doc/manual %dir %{_includedir}/%{name} %{_includedir}/%{name}/openvrml-common.h %{_includedir}/%{name}/openvrml-config.h @@ -143,16 +158,15 @@ fi %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS %{_libdir}/libopenvrml-gl.so.* - %files gl-devel %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS %{_includedir}/%{name}/openvrml-gl-common.h %{_includedir}/%{name}/openvrml-gl-config.h -%{_includedir}/%{name}/openvrml/gl +%dir %{_includedir}/%{name}/openvrml/gl +%{_includedir}/%{name}/openvrml/gl/*.h %{_libdir}/libopenvrml-gl.so %{_libdir}/pkgconfig/openvrml-gl.pc - %files xembed %doc AUTHORS COPYING ChangeLog NEWS README THANKS %{_libexecdir}/openvrml-xembed @@ -171,11 +185,19 @@ fi %doc AUTHORS COPYING ChangeLog NEWS README THANKS %{_bindir}/openvrml-player %dir %{_datadir}/openvrml-player -%dir %{_datadir}/openvrml-player/glade -%{_datadir}/openvrml-player/glade/openvrml-player.glade - - +%dir %{_datadir}/openvrml-player/ui +%{_datadir}/openvrml-player/ui/openvrml-player.ui + +%files doc +%doc doc/manual +%{_javadocdir}/%{name}-%{version} + %changelog +* Sun Jul 05 2009 Braden McDaniel - 0.18.1-1 +- Updated to 0.18.1. +- Put documentation in doc subpackage. +- Added check phase back. + * Mon Mar 23 2009 Braden McDaniel - 0.17.12-1 - Updated to 0.17.12. - Only build with _smp_mflags if the machine has at least 4 GB of RAM. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 23 Mar 2009 10:05:41 -0000 1.20 +++ sources 6 Jul 2009 03:53:52 -0000 1.21 @@ -1 +1 @@ -162153ee2e5c498b31f600193ebabe58 openvrml-0.17.12.tar.gz +01b7134886f4ef13d638daf02b330cda openvrml-0.18.1.tar.gz --- npfunctions.patch DELETED --- From braden at fedoraproject.org Mon Jul 6 03:54:23 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 6 Jul 2009 03:54:23 +0000 (UTC) Subject: rpms/openvrml/devel .cvsignore, 1.20, 1.21 openvrml.spec, 1.62, 1.63 sources, 1.20, 1.21 npfunctions.patch, 1.5, NONE Message-ID: <20090706035423.43A5E11C0097@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8194/devel Modified Files: .cvsignore openvrml.spec sources Removed Files: npfunctions.patch Log Message: Updated to 0.18.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 23 Mar 2009 10:05:41 -0000 1.20 +++ .cvsignore 6 Jul 2009 03:53:52 -0000 1.21 @@ -1 +1 @@ -openvrml-0.17.12.tar.gz +openvrml-0.18.1.tar.gz Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/openvrml.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- openvrml.spec 22 May 2009 19:10:41 -0000 1.62 +++ openvrml.spec 6 Jul 2009 03:53:53 -0000 1.63 @@ -1,29 +1,32 @@ # -*- rpm-spec -*- Name: openvrml -Version: 0.17.12 -Release: 2%{?dist} +Version: 0.18.1 +Release: 1%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries -Source: http://downloads.sf.net/openvrml/%{name}-%{version}.tar.gz -Patch0: npfunctions.patch +Source: http://downloads.sourceforge.net/openvrml/%{name}-%{version}.tar.gz URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: pkgconfig >= 0.12.0 -BuildRequires: boost-devel >= 1.34.1 +BuildRequires: pkgconfig >= 0.18.0 +BuildRequires: boost-devel >= 1.37.0 +BuildRequires: libxml2-devel >= 2.5 BuildRequires: libpng-devel >= 1.0.12 BuildRequires: libjpeg-devel >= 6b BuildRequires: fontconfig-devel >= 2.0 BuildRequires: freetype-devel >= 2.1.2 -BuildRequires: gecko-devel >= 1.9 +BuildRequires: gecko-devel >= 1.9.1 BuildRequires: libGLU-devel BuildRequires: libXmu-devel BuildRequires: glib2-devel >= 2.6 BuildRequires: dbus-glib-devel -BuildRequires: gtk2-devel BuildRequires: libgnomeui-devel >= 2.14 +BuildRequires: gtk2-devel >= 2.12 +BuildRequires: gtkglext-devel BuildRequires: curl-devel -Requires: gecko-libs >= 1.9 +BuildRequires: java-devel +Requires: gecko-libs >= 1.9.1 +Requires: java %description OpenVRML is a VRML/X3D support library, including a runtime and facilities @@ -34,13 +37,13 @@ for reading and displaying VRML and X3D Summary: Headers for developing C++ programs with OpenVRML Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: pkgconfig -Requires: boost-devel >= 1.34.1 +Requires: pkgconfig >= 0.18.0 +Requires: boost-devel >= 1.37.0 Requires: libpng-devel Requires: libjpeg-devel Requires: fontconfig-devel Requires: freetype-devel -Requires: gecko-devel >= 1.9 +Requires: gecko-devel >= 1.9.1 %description devel Headers that programmers will need to develop C++ programs using OpenVRML. @@ -57,10 +60,8 @@ Summary: OpenVRML OpenGL renderer Group: Development/Libraries Requires: %{name}-gl = %{version}-%{release} Requires: %{name}-devel = %{version}-%{release} -Requires: pkgconfig +Requires: pkgconfig >= 0.18.0 Requires: libGLU-devel -Requires: libXmu-devel -Requires: gtk2-devel %description gl-devel Headers that programmers will need to develop C++ programs using the OpenVRML OpenGL renderer. @@ -93,24 +94,29 @@ Requires: dbus-x11 %description player VRML/X3D player. Hosts the OpenVRML XEmbed control. +%package doc +Summary: Documentation for OpenVRML +Group: Documentation +Requires: %{name} = %{version}-%{release} +%description doc + %prep %setup -%patch0 -p1 %build CXXFLAGS="%optflags -fvisibility=hidden -fvisibility-inlines-hidden -Wno-missing-braces" -%configure --disable-static --disable-exception-specs --disable-examples --disable-script-node-java CPPFLAGS="-DNDEBUG" BOOST_LIB_SUFFIX="-mt" -# vrml97node.cpp and browser.cpp are huge and need a lot of RAM. -if [ `free -b | awk '/^Mem:/{print $2}'` -gt 4000000000 ]; then +%configure --disable-static --enable-exception-specs=nothrow --disable-examples CPPFLAGS="-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux -DNDEBUG" JAVA_HOME=/usr/lib/jvm/jre %{__make} %{_smp_mflags} -else -%{__make} -fi + +%check +%{__make} %{_smp_mflags} check %install %{__make} DESTDIR=%{buildroot} install %{__rm} %{buildroot}%{_libdir}/*.la %{__rm} %{buildroot}%{_libdir}/mozilla/plugins/openvrml.la +%{__rm} %{buildroot}%{_libdir}/openvrml/node/*.la +%{__rm} %{buildroot}%{_libdir}/openvrml/script/*.la %clean %{__rm} -rf %{buildroot} @@ -121,11 +127,20 @@ fi %files %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS +%dir %{_datadir}/openvrml +%dir %{_datadir}/openvrml/component +%{_datadir}/openvrml/component/*.xml +%dir %{_datadir}/openvrml/java +%{_datadir}/openvrml/java/script.jar %{_libdir}/libopenvrml.so.* +%dir %{_libdir}/openvrml +%dir %{_libdir}/openvrml/node +%{_libdir}/openvrml/node/*.so +%dir %{_libdir}/openvrml/script +%{_libdir}/openvrml/script/*.so %files devel %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS -%doc doc/manual %dir %{_includedir}/%{name} %{_includedir}/%{name}/openvrml-common.h %{_includedir}/%{name}/openvrml-config.h @@ -143,16 +158,15 @@ fi %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS %{_libdir}/libopenvrml-gl.so.* - %files gl-devel %doc AUTHORS COPYING.LESSER ChangeLog NEWS README THANKS %{_includedir}/%{name}/openvrml-gl-common.h %{_includedir}/%{name}/openvrml-gl-config.h -%{_includedir}/%{name}/openvrml/gl +%dir %{_includedir}/%{name}/openvrml/gl +%{_includedir}/%{name}/openvrml/gl/*.h %{_libdir}/libopenvrml-gl.so %{_libdir}/pkgconfig/openvrml-gl.pc - %files xembed %doc AUTHORS COPYING ChangeLog NEWS README THANKS %{_libexecdir}/openvrml-xembed @@ -171,11 +185,19 @@ fi %doc AUTHORS COPYING ChangeLog NEWS README THANKS %{_bindir}/openvrml-player %dir %{_datadir}/openvrml-player -%dir %{_datadir}/openvrml-player/glade -%{_datadir}/openvrml-player/glade/openvrml-player.glade +%dir %{_datadir}/openvrml-player/ui +%{_datadir}/openvrml-player/ui/openvrml-player.ui +%files doc +%doc doc/manual +%{_javadocdir}/%{name}-%{version} %changelog +* Sun Jul 05 2009 Braden McDaniel - 0.18.1-1 +- Updated to 0.18.1. +- Put documentation in doc subpackage. +- Added check phase back. + * Fri May 22 2009 Braden McDaniel - 0.17.12-2 - Tagged for rebuild against Boost 1.39. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 23 Mar 2009 10:05:41 -0000 1.20 +++ sources 6 Jul 2009 03:53:53 -0000 1.21 @@ -1 +1 @@ -162153ee2e5c498b31f600193ebabe58 openvrml-0.17.12.tar.gz +01b7134886f4ef13d638daf02b330cda openvrml-0.18.1.tar.gz --- npfunctions.patch DELETED --- From pkgdb at fedoraproject.org Mon Jul 6 04:02:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:02:53 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-TT was added for eseyman Message-ID: <20090706040254.02F3110F89B@bastion2.fedora.phx.redhat.com> kevin has added Package perl-CGI-Application-Plugin-TT with summary Add Template Toolkit support to CGI::Application kevin has approved Package perl-CGI-Application-Plugin-TT kevin has added a Fedora devel branch for perl-CGI-Application-Plugin-TT with an owner of eseyman kevin has approved perl-CGI-Application-Plugin-TT in Fedora devel kevin has approved Package perl-CGI-Application-Plugin-TT kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora devel) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora devel) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-TT From pkgdb at fedoraproject.org Mon Jul 6 04:02:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:02:56 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-TT summary updated by kevin Message-ID: <20090706040256.9338910F8A3@bastion2.fedora.phx.redhat.com> kevin set package perl-CGI-Application-Plugin-TT summary to Add Template Toolkit support to CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-TT From pkgdb at fedoraproject.org Mon Jul 6 04:02:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:02:56 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-TT (Fedora, 10) updated by kevin Message-ID: <20090706040256.9937110F8A6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-CGI-Application-Plugin-TT kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 10) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 10) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 10) kevin approved watchbugzilla on perl-CGI-Application-Plugin-TT (Fedora 10) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-TT (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-TT From pkgdb at fedoraproject.org Mon Jul 6 04:02:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:02:56 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-TT (Fedora, 10) updated by kevin Message-ID: <20090706040256.A4C6B10F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-CGI-Application-Plugin-TT kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 11) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 11) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-TT (Fedora 11) kevin approved watchbugzilla on perl-CGI-Application-Plugin-TT (Fedora 11) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-TT (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-TT From pkgdb at fedoraproject.org Mon Jul 6 04:02:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:02:56 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-TT (Fedora, 10) updated by kevin Message-ID: <20090706040256.B3B6210F8AC@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-CGI-Application-Plugin-TT (Fedora devel) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-TT (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-TT From kevin at fedoraproject.org Mon Jul 6 04:03:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:03:04 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT - New directory Message-ID: <20090706040304.21C2811C02CC@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsA18161/rpms/perl-CGI-Application-Plugin-TT Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT added to the repository From kevin at fedoraproject.org Mon Jul 6 04:03:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:03:04 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/devel - New directory Message-ID: <20090706040304.49E7111C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsA18161/rpms/perl-CGI-Application-Plugin-TT/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:03:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:03:10 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT Makefile,NONE,1.1 Message-ID: <20090706040310.1577111C02CC@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsA18161/rpms/perl-CGI-Application-Plugin-TT Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-TT --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-TT all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:03:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:03:10 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706040310.71BAB11C02CC@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsA18161/rpms/perl-CGI-Application-Plugin-TT/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-TT --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-TT # $Id: Makefile,v 1.1 2009/07/06 04:03:10 kevin Exp $ NAME := perl-CGI-Application-Plugin-TT SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:05:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:50 +0000 Subject: [pkgdb] xorriso was added for tuju Message-ID: <20090706040550.A355110F897@bastion2.fedora.phx.redhat.com> kevin has added Package xorriso with summary ISO 9660 image manipulation tool kevin has approved Package xorriso kevin has added a Fedora devel branch for xorriso with an owner of tuju kevin has approved xorriso in Fedora devel kevin has approved Package xorriso kevin has set commit to Approved for 107427 on xorriso (Fedora devel) kevin has set checkout to Approved for 107427 on xorriso (Fedora devel) kevin has set build to Approved for 107427 on xorriso (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From pkgdb at fedoraproject.org Mon Jul 6 04:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:56 +0000 Subject: [pkgdb] xorriso (Fedora EPEL, 4) updated by kevin Message-ID: <20090706040556.F0C8C10F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for xorriso kevin has set commit to Approved for 107427 on xorriso (Fedora 10) kevin has set checkout to Approved for 107427 on xorriso (Fedora 10) kevin has set build to Approved for 107427 on xorriso (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From pkgdb at fedoraproject.org Mon Jul 6 04:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:56 +0000 Subject: [pkgdb] xorriso summary updated by kevin Message-ID: <20090706040556.EAA0710F8A3@bastion2.fedora.phx.redhat.com> kevin set package xorriso summary to ISO 9660 image manipulation tool To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From pkgdb at fedoraproject.org Mon Jul 6 04:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:56 +0000 Subject: [pkgdb] xorriso (Fedora EPEL, 4) updated by kevin Message-ID: <20090706040557.055EE10F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for xorriso kevin has set commit to Approved for 107427 on xorriso (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on xorriso (Fedora EPEL 5) kevin has set build to Approved for 107427 on xorriso (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From pkgdb at fedoraproject.org Mon Jul 6 04:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:56 +0000 Subject: [pkgdb] xorriso (Fedora EPEL, 4) updated by kevin Message-ID: <20090706040557.0EDA910F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for xorriso kevin has set commit to Approved for 107427 on xorriso (Fedora 11) kevin has set checkout to Approved for 107427 on xorriso (Fedora 11) kevin has set build to Approved for 107427 on xorriso (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From kevin at fedoraproject.org Mon Jul 6 04:06:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:06:05 +0000 (UTC) Subject: rpms/xorriso - New directory Message-ID: <20090706040605.1567F11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xorriso In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsk30278/rpms/xorriso Log Message: Directory /cvs/pkgs/rpms/xorriso added to the repository From kevin at fedoraproject.org Mon Jul 6 04:06:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:06:05 +0000 (UTC) Subject: rpms/xorriso/devel - New directory Message-ID: <20090706040605.34A3311C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xorriso/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsk30278/rpms/xorriso/devel Log Message: Directory /cvs/pkgs/rpms/xorriso/devel added to the repository From pkgdb at fedoraproject.org Mon Jul 6 04:05:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:05:56 +0000 Subject: [pkgdb] xorriso (Fedora EPEL, 4) updated by kevin Message-ID: <20090706040557.1908810F8AF@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for xorriso kevin has set commit to Approved for 107427 on xorriso (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on xorriso (Fedora EPEL 4) kevin has set build to Approved for 107427 on xorriso (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xorriso From kevin at fedoraproject.org Mon Jul 6 04:06:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:06:10 +0000 (UTC) Subject: rpms/xorriso Makefile,NONE,1.1 Message-ID: <20090706040610.4DA0511C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xorriso In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsk30278/rpms/xorriso Added Files: Makefile Log Message: Setup of module xorriso --- NEW FILE Makefile --- # Top level Makefile for module xorriso all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:06:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:06:10 +0000 (UTC) Subject: rpms/xorriso/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706040610.9CD8211C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xorriso/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsk30278/rpms/xorriso/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module xorriso --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: xorriso # $Id: Makefile,v 1.1 2009/07/06 04:06:10 kevin Exp $ NAME := xorriso SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:07:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:07:02 +0000 Subject: [pkgdb] frinika was added for oget Message-ID: <20090706040702.AB3ED10F8A3@bastion2.fedora.phx.redhat.com> kevin has added Package frinika with summary Music Workstation kevin has approved Package frinika kevin has added a Fedora devel branch for frinika with an owner of oget kevin has approved frinika in Fedora devel kevin has approved Package frinika kevin has set commit to Approved for 107427 on frinika (Fedora devel) kevin has set checkout to Approved for 107427 on frinika (Fedora devel) kevin has set build to Approved for 107427 on frinika (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/frinika From pkgdb at fedoraproject.org Mon Jul 6 04:07:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:07:07 +0000 Subject: [pkgdb] frinika summary updated by kevin Message-ID: <20090706040707.450C810F8A8@bastion2.fedora.phx.redhat.com> kevin set package frinika summary to Music Workstation To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/frinika From pkgdb at fedoraproject.org Mon Jul 6 04:07:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:07:07 +0000 Subject: [pkgdb] frinika (Fedora, 10) updated by kevin Message-ID: <20090706040707.4D7E110F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for frinika kevin has set commit to Approved for 107427 on frinika (Fedora 10) kevin has set checkout to Approved for 107427 on frinika (Fedora 10) kevin has set build to Approved for 107427 on frinika (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/frinika From pkgdb at fedoraproject.org Mon Jul 6 04:07:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:07:07 +0000 Subject: [pkgdb] frinika (Fedora, 10) updated by kevin Message-ID: <20090706040707.5C7A110F8AF@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for frinika kevin has set commit to Approved for 107427 on frinika (Fedora 11) kevin has set checkout to Approved for 107427 on frinika (Fedora 11) kevin has set build to Approved for 107427 on frinika (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/frinika From kevin at fedoraproject.org Mon Jul 6 04:07:23 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:07:23 +0000 (UTC) Subject: rpms/frinika - New directory Message-ID: <20090706040723.14B6F11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/frinika In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV30788/rpms/frinika Log Message: Directory /cvs/pkgs/rpms/frinika added to the repository From kevin at fedoraproject.org Mon Jul 6 04:07:23 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:07:23 +0000 (UTC) Subject: rpms/frinika/devel - New directory Message-ID: <20090706040723.3944811C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/frinika/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV30788/rpms/frinika/devel Log Message: Directory /cvs/pkgs/rpms/frinika/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:07:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:07:28 +0000 (UTC) Subject: rpms/frinika Makefile,NONE,1.1 Message-ID: <20090706040728.62B3711C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/frinika In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV30788/rpms/frinika Added Files: Makefile Log Message: Setup of module frinika --- NEW FILE Makefile --- # Top level Makefile for module frinika all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:07:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:07:28 +0000 (UTC) Subject: rpms/frinika/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706040728.9B55611C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/frinika/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV30788/rpms/frinika/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module frinika --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: frinika # $Id: Makefile,v 1.1 2009/07/06 04:07:28 kevin Exp $ NAME := frinika SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:08:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:08:10 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-FillInForm was added for eseyman Message-ID: <20090706040810.98CC010F89B@bastion2.fedora.phx.redhat.com> kevin has added Package perl-CGI-Application-Plugin-FillInForm with summary Integrate CGI::Application with HTML::FillInForm kevin has approved Package perl-CGI-Application-Plugin-FillInForm kevin has added a Fedora devel branch for perl-CGI-Application-Plugin-FillInForm with an owner of eseyman kevin has approved perl-CGI-Application-Plugin-FillInForm in Fedora devel kevin has approved Package perl-CGI-Application-Plugin-FillInForm kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora devel) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora devel) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-FillInForm From pkgdb at fedoraproject.org Mon Jul 6 04:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:08:14 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-FillInForm summary updated by kevin Message-ID: <20090706040814.43AE210F8A4@bastion2.fedora.phx.redhat.com> kevin set package perl-CGI-Application-Plugin-FillInForm summary to Integrate CGI::Application with HTML::FillInForm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-FillInForm From pkgdb at fedoraproject.org Mon Jul 6 04:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:08:14 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-FillInForm (Fedora, 10) updated by kevin Message-ID: <20090706040814.4940810F8A7@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-CGI-Application-Plugin-FillInForm kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 10) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 10) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 10) kevin approved watchbugzilla on perl-CGI-Application-Plugin-FillInForm (Fedora 10) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-FillInForm (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-FillInForm From pkgdb at fedoraproject.org Mon Jul 6 04:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:08:14 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-FillInForm (Fedora, 10) updated by kevin Message-ID: <20090706040814.5D5B010F8A6@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-CGI-Application-Plugin-FillInForm (Fedora devel) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-FillInForm (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-FillInForm From pkgdb at fedoraproject.org Mon Jul 6 04:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:08:14 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-FillInForm (Fedora, 10) updated by kevin Message-ID: <20090706040814.5000710F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-CGI-Application-Plugin-FillInForm kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 11) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 11) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-FillInForm (Fedora 11) kevin approved watchbugzilla on perl-CGI-Application-Plugin-FillInForm (Fedora 11) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-FillInForm (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-FillInForm From kevin at fedoraproject.org Mon Jul 6 04:08:22 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:08:22 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm - New directory Message-ID: <20090706040822.19E2811C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31141/rpms/perl-CGI-Application-Plugin-FillInForm Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm added to the repository From kevin at fedoraproject.org Mon Jul 6 04:08:22 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:08:22 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/devel - New directory Message-ID: <20090706040822.4048011C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31141/rpms/perl-CGI-Application-Plugin-FillInForm/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:08:27 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:08:27 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm Makefile,NONE,1.1 Message-ID: <20090706040827.91BB111C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31141/rpms/perl-CGI-Application-Plugin-FillInForm Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-FillInForm --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-FillInForm all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:08:27 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:08:27 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706040827.BD1D211C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31141/rpms/perl-CGI-Application-Plugin-FillInForm/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-FillInForm --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-FillInForm # $Id: Makefile,v 1.1 2009/07/06 04:08:27 kevin Exp $ NAME := perl-CGI-Application-Plugin-FillInForm SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From braden at fedoraproject.org Mon Jul 6 04:09:46 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 6 Jul 2009 04:09:46 +0000 (UTC) Subject: rpms/openvrml/devel openvrml.spec,1.63,1.64 Message-ID: <20090706040946.EE1BF11C02C8@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31458/devel Modified Files: openvrml.spec Log Message: Added BuildRequires: libtool-ltdl-devel. Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/openvrml.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- openvrml.spec 6 Jul 2009 03:53:53 -0000 1.63 +++ openvrml.spec 6 Jul 2009 04:09:16 -0000 1.64 @@ -1,7 +1,7 @@ # -*- rpm-spec -*- Name: openvrml Version: 0.18.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries @@ -9,6 +9,7 @@ Source: http://downloads.sourcef URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.18.0 +BuildRequires: libtool-ltdl-devel BuildRequires: boost-devel >= 1.37.0 BuildRequires: libxml2-devel >= 2.5 BuildRequires: libpng-devel >= 1.0.12 @@ -193,6 +194,9 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 06 2009 Braden McDaniel - 0.18.1-2 +- Added BuildRequires: libtool-ltdl-devel. + * Sun Jul 05 2009 Braden McDaniel - 0.18.1-1 - Updated to 0.18.1. - Put documentation in doc subpackage. From braden at fedoraproject.org Mon Jul 6 04:09:46 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 6 Jul 2009 04:09:46 +0000 (UTC) Subject: rpms/openvrml/F-11 openvrml.spec,1.62,1.63 Message-ID: <20090706040946.C0FB811C02C8@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31458/F-11 Modified Files: openvrml.spec Log Message: Added BuildRequires: libtool-ltdl-devel. Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/openvrml.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- openvrml.spec 6 Jul 2009 03:53:52 -0000 1.62 +++ openvrml.spec 6 Jul 2009 04:09:16 -0000 1.63 @@ -1,7 +1,7 @@ # -*- rpm-spec -*- Name: openvrml Version: 0.18.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries @@ -9,6 +9,7 @@ Source: http://downloads.sourcef URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.18.0 +BuildRequires: libtool-ltdl-devel BuildRequires: boost-devel >= 1.37.0 BuildRequires: libxml2-devel >= 2.5 BuildRequires: libpng-devel >= 1.0.12 @@ -193,6 +194,9 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 06 2009 Braden McDaniel - 0.18.1-2 +- Added BuildRequires: libtool-ltdl-devel. + * Sun Jul 05 2009 Braden McDaniel - 0.18.1-1 - Updated to 0.18.1. - Put documentation in doc subpackage. From pkgdb at fedoraproject.org Mon Jul 6 04:10:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:41 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml was added for xavierb Message-ID: <20090706041041.873D910F89E@bastion2.fedora.phx.redhat.com> kevin has added Package perl-Test-Unit-Runner-Xml with summary Generate XML reports from unit test results kevin has approved Package perl-Test-Unit-Runner-Xml kevin has added a Fedora devel branch for perl-Test-Unit-Runner-Xml with an owner of xavierb kevin has approved perl-Test-Unit-Runner-Xml in Fedora devel kevin has approved Package perl-Test-Unit-Runner-Xml kevin has set commit to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora devel) kevin has set checkout to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora devel) kevin has set build to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From pkgdb at fedoraproject.org Mon Jul 6 04:10:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:44 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml summary updated by kevin Message-ID: <20090706041044.AE62610F8A3@bastion2.fedora.phx.redhat.com> kevin set package perl-Test-Unit-Runner-Xml summary to Generate XML reports from unit test results To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From pkgdb at fedoraproject.org Mon Jul 6 04:10:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:44 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml (Fedora EPEL, 5) updated by kevin Message-ID: <20090706041044.C44B810F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-Test-Unit-Runner-Xml kevin has set commit to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 10) kevin has set checkout to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 10) kevin has set build to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 10) kevin approved watchbugzilla on perl-Test-Unit-Runner-Xml (Fedora 10) for perl-sig kevin approved watchcommits on perl-Test-Unit-Runner-Xml (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From pkgdb at fedoraproject.org Mon Jul 6 04:10:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:44 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml (Fedora EPEL, 5) updated by kevin Message-ID: <20090706041044.BE44810F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for perl-Test-Unit-Runner-Xml kevin has set commit to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora EPEL 5) kevin has set build to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora EPEL 5) kevin approved watchbugzilla on perl-Test-Unit-Runner-Xml (Fedora EPEL 5) for perl-sig kevin approved watchcommits on perl-Test-Unit-Runner-Xml (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From pkgdb at fedoraproject.org Mon Jul 6 04:10:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:44 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml (Fedora EPEL, 5) updated by kevin Message-ID: <20090706041044.CA32F10F8AD@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-Test-Unit-Runner-Xml kevin has set commit to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 11) kevin has set checkout to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 11) kevin has set build to Approved for 107427 on perl-Test-Unit-Runner-Xml (Fedora 11) kevin approved watchbugzilla on perl-Test-Unit-Runner-Xml (Fedora 11) for perl-sig kevin approved watchcommits on perl-Test-Unit-Runner-Xml (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From kevin at fedoraproject.org Mon Jul 6 04:10:57 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:10:57 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml - New directory Message-ID: <20090706041057.19D6511C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32037/rpms/perl-Test-Unit-Runner-Xml Log Message: Directory /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml added to the repository From kevin at fedoraproject.org Mon Jul 6 04:10:57 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:10:57 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/devel - New directory Message-ID: <20090706041057.423F911C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32037/rpms/perl-Test-Unit-Runner-Xml/devel Log Message: Directory /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel added to the repository From pkgdb at fedoraproject.org Mon Jul 6 04:10:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:10:44 +0000 Subject: [pkgdb] perl-Test-Unit-Runner-Xml (Fedora EPEL, 5) updated by kevin Message-ID: <20090706041044.DDA9410F8B1@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-Test-Unit-Runner-Xml (Fedora devel) for perl-sig kevin approved watchcommits on perl-Test-Unit-Runner-Xml (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Unit-Runner-Xml From kevin at fedoraproject.org Mon Jul 6 04:11:03 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:11:03 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml Makefile,NONE,1.1 Message-ID: <20090706041103.21B9011C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32037/rpms/perl-Test-Unit-Runner-Xml Added Files: Makefile Log Message: Setup of module perl-Test-Unit-Runner-Xml --- NEW FILE Makefile --- # Top level Makefile for module perl-Test-Unit-Runner-Xml all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:11:03 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:11:03 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706041103.5B46E11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32037/rpms/perl-Test-Unit-Runner-Xml/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Test-Unit-Runner-Xml --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Test-Unit-Runner-Xml # $Id: Makefile,v 1.1 2009/07/06 04:11:03 kevin Exp $ NAME := perl-Test-Unit-Runner-Xml SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:12:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:12:03 +0000 Subject: [pkgdb] tremfusion was added for ianweller Message-ID: <20090706041203.BCBC210F89E@bastion2.fedora.phx.redhat.com> kevin has added Package tremfusion with summary Enhanced modification of the free software first person shooter Tremulous kevin has approved Package tremfusion kevin has added a Fedora devel branch for tremfusion with an owner of ianweller kevin has approved tremfusion in Fedora devel kevin has approved Package tremfusion kevin has set commit to Approved for 107427 on tremfusion (Fedora devel) kevin has set checkout to Approved for 107427 on tremfusion (Fedora devel) kevin has set build to Approved for 107427 on tremfusion (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremfusion From pkgdb at fedoraproject.org Mon Jul 6 04:12:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:12:05 +0000 Subject: [pkgdb] tremfusion summary updated by kevin Message-ID: <20090706041205.4F7BE10F8AB@bastion2.fedora.phx.redhat.com> kevin set package tremfusion summary to Enhanced modification of the free software first person shooter Tremulous To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremfusion From pkgdb at fedoraproject.org Mon Jul 6 04:12:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:12:05 +0000 Subject: [pkgdb] tremfusion (Fedora, 10) updated by kevin Message-ID: <20090706041205.5B42E10F8AF@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for tremfusion kevin has set commit to Approved for 107427 on tremfusion (Fedora 10) kevin has set checkout to Approved for 107427 on tremfusion (Fedora 10) kevin has set build to Approved for 107427 on tremfusion (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremfusion From pkgdb at fedoraproject.org Mon Jul 6 04:12:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:12:05 +0000 Subject: [pkgdb] tremfusion (Fedora, 10) updated by kevin Message-ID: <20090706041205.66AE610F8B2@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for tremfusion kevin has set commit to Approved for 107427 on tremfusion (Fedora 11) kevin has set checkout to Approved for 107427 on tremfusion (Fedora 11) kevin has set build to Approved for 107427 on tremfusion (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremfusion From kevin at fedoraproject.org Mon Jul 6 04:12:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:12:15 +0000 (UTC) Subject: rpms/tremfusion - New directory Message-ID: <20090706041215.1426B11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/tremfusion In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsX32527/rpms/tremfusion Log Message: Directory /cvs/pkgs/rpms/tremfusion added to the repository From kevin at fedoraproject.org Mon Jul 6 04:12:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:12:15 +0000 (UTC) Subject: rpms/tremfusion/devel - New directory Message-ID: <20090706041215.3810A11C049A@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/tremfusion/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsX32527/rpms/tremfusion/devel Log Message: Directory /cvs/pkgs/rpms/tremfusion/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:12:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:12:20 +0000 (UTC) Subject: rpms/tremfusion Makefile,NONE,1.1 Message-ID: <20090706041220.807EE11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/tremfusion In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsX32527/rpms/tremfusion Added Files: Makefile Log Message: Setup of module tremfusion --- NEW FILE Makefile --- # Top level Makefile for module tremfusion all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:12:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:12:20 +0000 (UTC) Subject: rpms/tremfusion/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706041220.B3F8911C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/tremfusion/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsX32527/rpms/tremfusion/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module tremfusion --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: tremfusion # $Id: Makefile,v 1.1 2009/07/06 04:12:20 kevin Exp $ NAME := tremfusion SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:15:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:15:33 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-Forward was added for eseyman Message-ID: <20090706041533.A648B10F856@bastion2.fedora.phx.redhat.com> kevin has added Package perl-CGI-Application-Plugin-Forward with summary Pass control from one run mode to another in CGI::Application kevin has approved Package perl-CGI-Application-Plugin-Forward kevin has added a Fedora devel branch for perl-CGI-Application-Plugin-Forward with an owner of eseyman kevin has approved perl-CGI-Application-Plugin-Forward in Fedora devel kevin has approved Package perl-CGI-Application-Plugin-Forward kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora devel) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora devel) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-Forward From pkgdb at fedoraproject.org Mon Jul 6 04:15:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:15:35 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-Forward summary updated by kevin Message-ID: <20090706041535.533AF10F89E@bastion2.fedora.phx.redhat.com> kevin set package perl-CGI-Application-Plugin-Forward summary to Pass control from one run mode to another in CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-Forward From pkgdb at fedoraproject.org Mon Jul 6 04:15:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:15:35 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-Forward (Fedora, 10) updated by kevin Message-ID: <20090706041535.6424710F8A4@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-CGI-Application-Plugin-Forward (Fedora devel) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-Forward (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-Forward From pkgdb at fedoraproject.org Mon Jul 6 04:15:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:15:35 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-Forward (Fedora, 10) updated by kevin Message-ID: <20090706041535.67C8E10F8A7@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-CGI-Application-Plugin-Forward kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 10) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 10) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 10) kevin approved watchbugzilla on perl-CGI-Application-Plugin-Forward (Fedora 10) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-Forward (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-Forward From pkgdb at fedoraproject.org Mon Jul 6 04:15:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:15:35 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-Forward (Fedora, 10) updated by kevin Message-ID: <20090706041535.7347E10F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-CGI-Application-Plugin-Forward kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 11) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 11) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-Forward (Fedora 11) kevin approved watchbugzilla on perl-CGI-Application-Plugin-Forward (Fedora 11) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-Forward (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-Forward From kevin at fedoraproject.org Mon Jul 6 04:16:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:16:06 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward - New directory Message-ID: <20090706041606.1BCB911C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvslni901/rpms/perl-CGI-Application-Plugin-Forward Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward added to the repository From kevin at fedoraproject.org Mon Jul 6 04:16:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:16:06 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/devel - New directory Message-ID: <20090706041606.415F611C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvslni901/rpms/perl-CGI-Application-Plugin-Forward/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:16:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:16:12 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward Makefile,NONE,1.1 Message-ID: <20090706041612.B91EF11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvslni901/rpms/perl-CGI-Application-Plugin-Forward Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-Forward --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-Forward all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:16:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:16:12 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706041612.F290211C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvslni901/rpms/perl-CGI-Application-Plugin-Forward/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-Forward --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-Forward # $Id: Makefile,v 1.1 2009/07/06 04:16:12 kevin Exp $ NAME := perl-CGI-Application-Plugin-Forward SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:16:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:16:52 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-LogDispatch was added for eseyman Message-ID: <20090706041652.5666710F89B@bastion2.fedora.phx.redhat.com> kevin has added Package perl-CGI-Application-Plugin-LogDispatch with summary Add Log::Dispatch support to CGI::Application kevin has approved Package perl-CGI-Application-Plugin-LogDispatch kevin has added a Fedora devel branch for perl-CGI-Application-Plugin-LogDispatch with an owner of eseyman kevin has approved perl-CGI-Application-Plugin-LogDispatch in Fedora devel kevin has approved Package perl-CGI-Application-Plugin-LogDispatch kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora devel) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora devel) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-LogDispatch From pkgdb at fedoraproject.org Mon Jul 6 04:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:16:55 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-LogDispatch summary updated by kevin Message-ID: <20090706041655.CA6C310F8A0@bastion2.fedora.phx.redhat.com> kevin set package perl-CGI-Application-Plugin-LogDispatch summary to Add Log::Dispatch support to CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-LogDispatch From pkgdb at fedoraproject.org Mon Jul 6 04:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:16:55 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-LogDispatch (Fedora, 10) updated by kevin Message-ID: <20090706041655.EB99310F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-CGI-Application-Plugin-LogDispatch kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 10) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 10) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 10) kevin approved watchbugzilla on perl-CGI-Application-Plugin-LogDispatch (Fedora 10) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-LogDispatch (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-LogDispatch From pkgdb at fedoraproject.org Mon Jul 6 04:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:16:55 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-LogDispatch (Fedora, 10) updated by kevin Message-ID: <20090706041656.0B9A110F8A8@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-CGI-Application-Plugin-LogDispatch (Fedora devel) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-LogDispatch (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-LogDispatch From kevin at fedoraproject.org Mon Jul 6 04:17:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:17:05 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch - New directory Message-ID: <20090706041705.17BC211C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLs1231/rpms/perl-CGI-Application-Plugin-LogDispatch Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch added to the repository From pkgdb at fedoraproject.org Mon Jul 6 04:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:16:55 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-LogDispatch (Fedora, 10) updated by kevin Message-ID: <20090706041656.1290910F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-CGI-Application-Plugin-LogDispatch kevin has set commit to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 11) kevin has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 11) kevin has set build to Approved for 107427 on perl-CGI-Application-Plugin-LogDispatch (Fedora 11) kevin approved watchbugzilla on perl-CGI-Application-Plugin-LogDispatch (Fedora 11) for perl-sig kevin approved watchcommits on perl-CGI-Application-Plugin-LogDispatch (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-LogDispatch From kevin at fedoraproject.org Mon Jul 6 04:17:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:17:05 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/devel - New directory Message-ID: <20090706041705.3F47311C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLs1231/rpms/perl-CGI-Application-Plugin-LogDispatch/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:17:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:17:11 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch Makefile,NONE,1.1 Message-ID: <20090706041711.873A511C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLs1231/rpms/perl-CGI-Application-Plugin-LogDispatch Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-LogDispatch --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-LogDispatch all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:17:11 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:17:11 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706041711.C6A9611C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsLs1231/rpms/perl-CGI-Application-Plugin-LogDispatch/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-LogDispatch --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-LogDispatch # $Id: Makefile,v 1.1 2009/07/06 04:17:11 kevin Exp $ NAME := perl-CGI-Application-Plugin-LogDispatch SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Mon Jul 6 04:18:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:18:10 +0000 Subject: [pkgdb] mojito was added for pbrobinson Message-ID: <20090706041810.4890210F897@bastion2.fedora.phx.redhat.com> kevin has added Package mojito with summary A social network data aggregator kevin has approved Package mojito kevin has added a Fedora devel branch for mojito with an owner of pbrobinson kevin has approved mojito in Fedora devel kevin has approved Package mojito kevin has set commit to Approved for 107427 on mojito (Fedora devel) kevin has set checkout to Approved for 107427 on mojito (Fedora devel) kevin has set build to Approved for 107427 on mojito (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mojito From pkgdb at fedoraproject.org Mon Jul 6 04:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:18:14 +0000 Subject: [pkgdb] mojito summary updated by kevin Message-ID: <20090706041814.DCB3810F8A0@bastion2.fedora.phx.redhat.com> kevin set package mojito summary to A social network data aggregator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mojito From pkgdb at fedoraproject.org Mon Jul 6 04:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:18:14 +0000 Subject: [pkgdb] mojito (Fedora, 10) updated by kevin Message-ID: <20090706041815.1061810F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for mojito kevin has set commit to Approved for 107427 on mojito (Fedora 11) kevin has set checkout to Approved for 107427 on mojito (Fedora 11) kevin has set build to Approved for 107427 on mojito (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mojito From pkgdb at fedoraproject.org Mon Jul 6 04:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 04:18:14 +0000 Subject: [pkgdb] mojito (Fedora, 10) updated by kevin Message-ID: <20090706041815.0757F10F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for mojito kevin has set commit to Approved for 107427 on mojito (Fedora 10) kevin has set checkout to Approved for 107427 on mojito (Fedora 10) kevin has set build to Approved for 107427 on mojito (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mojito From kevin at fedoraproject.org Mon Jul 6 04:18:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:18:29 +0000 (UTC) Subject: rpms/mojito - New directory Message-ID: <20090706041829.1EA7611C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mojito In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssP1635/rpms/mojito Log Message: Directory /cvs/pkgs/rpms/mojito added to the repository From kevin at fedoraproject.org Mon Jul 6 04:18:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:18:29 +0000 (UTC) Subject: rpms/mojito/devel - New directory Message-ID: <20090706041829.4221311C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssP1635/rpms/mojito/devel Log Message: Directory /cvs/pkgs/rpms/mojito/devel added to the repository From kevin at fedoraproject.org Mon Jul 6 04:18:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:18:35 +0000 (UTC) Subject: rpms/mojito Makefile,NONE,1.1 Message-ID: <20090706041835.58CC711C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mojito In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssP1635/rpms/mojito Added Files: Makefile Log Message: Setup of module mojito --- NEW FILE Makefile --- # Top level Makefile for module mojito all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Mon Jul 6 04:18:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Mon, 6 Jul 2009 04:18:35 +0000 (UTC) Subject: rpms/mojito/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090706041835.9358611C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvssP1635/rpms/mojito/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mojito --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mojito # $Id: Makefile,v 1.1 2009/07/06 04:18:35 kevin Exp $ NAME := mojito SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From devrim at fedoraproject.org Mon Jul 6 04:22:42 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Mon, 6 Jul 2009 04:22:42 +0000 (UTC) Subject: rpms/postgis/devel .cvsignore, 1.11, 1.12 postgis.spec, 1.21, 1.22 sources, 1.11, 1.12 Message-ID: <20090706042242.E745311C02C8@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3181 Modified Files: .cvsignore postgis.spec sources Log Message: Update to 1.4rc1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 18 Jun 2009 19:49:28 -0000 1.11 +++ .cvsignore 6 Jul 2009 04:22:12 -0000 1.12 @@ -1,2 +1,2 @@ -postgis-1.3.6.tar.gz -postgis-1.3.6.pdf +postgis-1.4.0rc1.tar.gz +postgis-1.4.0rc1.pdf Index: postgis.spec =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/postgis.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- postgis.spec 18 Jun 2009 19:44:03 -0000 1.21 +++ postgis.spec 6 Jul 2009 04:22:12 -0000 1.22 @@ -4,19 +4,21 @@ Summary: Geographic Information Systems Extensions to PostgreSQL Name: postgis -Version: 1.3.6 -Release: 2%{?dist} +Version: 1.4.0rc1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Databases Source0: http://postgis.refractions.net/download/%{name}-%{version}.tar.gz Source2: http://www.postgis.org/download/%{name}-%{version}.pdf Source4: filter-requires-perl-Pg.sh +# 1.4rc1 only patch. +Patch0: postgis-loader-makefile.patch URL: http://postgis.refractions.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: postgresql-devel, proj-devel, geos-devel, byacc, proj-devel, flex, sinjdoc, java, java-devel, ant +BuildRequires: postgresql-devel >= 8.2, proj-devel, geos-devel >= 3.1.1, byacc, proj-devel, flex, sinjdoc, java, java-devel, ant -Requires: postgresql, geos, proj +Requires: postgresql >= 8.2, geos >= 3.1.1, proj %description PostGIS adds support for geographic objects to the PostgreSQL object-relational @@ -65,6 +67,7 @@ The postgis-utils package provides the u %prep %setup -q +%patch0 -p0 # Copy .pdf file to top directory before installing. cp -p %{SOURCE2} . @@ -90,11 +93,8 @@ popd rm -rf %{buildroot} make install DESTDIR=%{buildroot} install -d %{buildroot}%{_libdir}/pgsql/ -install lwgeom/liblwgeom.so* %{buildroot}%{_libdir}/pgsql/ -install lwgeom/postgis.so* %{buildroot}%{_libdir}/pgsql/ install -d %{buildroot}%{_datadir}/pgsql/contrib/ install -m 644 *.sql %{buildroot}%{_datadir}/pgsql/contrib/ -rm -f %{buildroot}%{_libdir}/liblwgeom.so* rm -f %{buildroot}%{_datadir}/*.sql if [ "%{_libdir}" = "/usr/lib64" ] ; then @@ -104,7 +104,7 @@ fi %if %javabuild install -d %{buildroot}%{_javadir} -install -m 755 java/jdbc/%{name}_%{version}.jar %{buildroot}%{_javadir} +install -m 755 java/jdbc/%{name}-%{version}.jar %{buildroot}%{_javadir} %if %{gcj_support} aot-compile-rpm %endif @@ -128,17 +128,16 @@ rm -rf %{buildroot} %files %defattr(-,root,root) -%doc COPYING CREDITS NEWS TODO README.%{name} doc/html loader/README.* doc/%{name}.xml doc/ZMSgeoms.txt +%doc COPYING CREDITS NEWS TODO README.%{name} doc/html loader/README.* doc/%{name}.xml doc/ZMSgeoms.txt %attr(755,root,root) %{_bindir}/* -%attr(755,root,root) %{_libdir}/pgsql/postgis.so* -%attr(755,root,root) %{_libdir}/pgsql/liblwgeom.so* +%attr(755,root,root) %{_libdir}/pgsql/postgis-*.so %{_datadir}/pgsql/contrib/*.sql %if %javabuild %files jdbc %defattr(-,root,root) %doc java/jdbc/COPYING_LGPL java/jdbc/README -%attr(755,root,root) %{_javadir}/%{name}_%{version}.jar +%attr(755,root,root) %{_javadir}/%{name}-%{version}.jar %if %{gcj_support} %dir %{_libdir}/gcj/%{name} %{_libdir}/gcj/%{name}/*.jar.so @@ -157,6 +156,7 @@ rm -rf %{buildroot} %attr(644,root,root) %{_datadir}/%{name}/create_undef.pl %attr(644,root,root) %{_datadir}/%{name}/%{name}_proc_upgrade.pl %attr(644,root,root) %{_datadir}/%{name}/%{name}_restore.pl +%attr(644,root,root) %{_datadir}/%{name}/new_postgis_restore.pl %endif %files docs @@ -164,6 +164,10 @@ rm -rf %{buildroot} %doc postgis*.pdf %changelog +* Mon Jul 6 2009 Devrim GUNDUZ - 1.4.0rc1-1 +- Update to 1.4.0rc1 +- Fix spec for 1.4 + * Thu Jun 18 2009 Devrim GUNDUZ - 1.3.6-2 - Add a new subpackage: -docs, and add postgis pdf file to it. - Own /usr/share/postgis, per bugzilla #474686 Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 18 Jun 2009 19:49:28 -0000 1.11 +++ sources 6 Jul 2009 04:22:12 -0000 1.12 @@ -1,2 +1,2 @@ -da590f0e485335e9cdaeb66c3d68aa24 postgis-1.3.6.tar.gz -1233c771906d6cdfa06d7fe19dcd1b39 postgis-1.3.6.pdf +f380bfdb29792f712662ab53967f4652 postgis-1.4.0rc1.tar.gz +855f97c92d95ceee78314d544bbd6f4c postgis-1.4.0rc1.pdf From devrim at fedoraproject.org Mon Jul 6 04:23:33 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Mon, 6 Jul 2009 04:23:33 +0000 (UTC) Subject: rpms/postgis/devel postgis-loader-makefile.patch,NONE,1.1 Message-ID: <20090706042333.BF0A911C02C8@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3448 Added Files: postgis-loader-makefile.patch Log Message: Add temp patch postgis-loader-makefile.patch: --- NEW FILE postgis-loader-makefile.patch --- --- loader/Makefile.in.old 2009-07-06 00:10:47.000000000 +0300 +++ loader/Makefile.in 2009-07-06 00:12:35.000000000 +0300 @@ -23,9 +23,6 @@ PGSQL_FE_CPPFLAGS=@PGSQL_FE_CPPFLAGS@ PGSQL_FE_LDFLAGS=@PGSQL_FE_LDFLAGS@ -# PostgreSQL executable directory -PGSQL_BINDIR=@PGSQL_BINDIR@ - # iconv flags ICONV_LDFLAGS=@ICONV_LDFLAGS@ @@ -36,6 +33,19 @@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ +# PGXS information +# +# Note that PGXS currently doesn't handle building FE executables, but we need +# the INSTALL and DESTDIR variables so we can get the correct install paths. +# Hence we include the PGXS Makefile here, but ensure that we override the +# 'all' and 'install' targets with the ones we really want to use below. +PG_CONFIG = @PGCONFIG@ +PGXS := @PGXS@ +include $(PGXS) + +# The real parts of the Makefile + + all: $(SHP2PGSQL) $(PGSQL2SHP) @GTK_BUILD@ gui: $(SHP2PGSQL-GUI) $(SHP2PGSQL-CLI) @@ -67,12 +77,13 @@ $(CC) $(CFLAGS) $(ICONV_LDFLAGS) -lm $^ -o $@ install: all - @cp $(PGSQL2SHP) $(PGSQL_BINDIR)/$(PGSQL2SHP) - @cp $(SHP2PGSQL) $(PGSQL_BINDIR)/$(SHP2PGSQL) + @mkdir -p $(DESTDIR)$(bindir) + $(INSTALL) $(PGSQL2SHP) $(DESTDIR)$(bindir) + $(INSTALL) $(SHP2PGSQL) $(DESTDIR)$(bindir) uninstall: - @rm -f $(PGSQL_BINDIR)/$(PGSQL2SHP) - @rm -f $(PGSQL_BINDIR)/$(SHP2PGSQL) + @rm -f $(DESTDIR)$(bindir)/$(PGSQL2SHP) + @rm -f $(DESTDIR)$(bindir)/$(SHP2PGSQL) clean: @rm -f *.o $(SHP2PGSQL) $(PGSQL2SHP) From wart at fedoraproject.org Mon Jul 6 04:31:47 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Mon, 6 Jul 2009 04:31:47 +0000 (UTC) Subject: rpms/manaworld/F-11 .cvsignore, 1.14, 1.15 manaworld.spec, 1.18, 1.19 sources, 1.14, 1.15 Message-ID: <20090706043147.A62DB11C02C8@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/manaworld/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4907 Modified Files: .cvsignore manaworld.spec sources Log Message: Update to 0.0.29.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 6 May 2009 18:36:07 -0000 1.14 +++ .cvsignore 6 Jul 2009 04:31:47 -0000 1.15 @@ -1 +1 @@ -tmw-0.0.28.1.tar.gz +tmw-0.0.29.1.tar.gz Index: manaworld.spec =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-11/manaworld.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- manaworld.spec 6 May 2009 18:36:07 -0000 1.18 +++ manaworld.spec 6 Jul 2009 04:31:47 -0000 1.19 @@ -1,5 +1,5 @@ Name: manaworld -Version: 0.0.28.1 +Version: 0.0.29.1 Release: 1%{?dist} Summary: 2D MMORPG world @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 5 2009 Wart 0.0.29.1-1 +- Update to 0.0.29.1 + * Tue May 5 2009 Wart 0.0.28.1-1 - Update to 0.0.28.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 May 2009 18:36:07 -0000 1.14 +++ sources 6 Jul 2009 04:31:47 -0000 1.15 @@ -1 +1 @@ -d92b06bb580df72587a668f97b8fd6a7 tmw-0.0.28.1.tar.gz +263de26c8545a261c6b82b7ae639f733 tmw-0.0.29.1.tar.gz From mclasen at fedoraproject.org Mon Jul 6 04:48:26 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 6 Jul 2009 04:48:26 +0000 (UTC) Subject: rpms/glib2/devel .cvsignore, 1.111, 1.112 glib2.spec, 1.209, 1.210 sources, 1.113, 1.114 Message-ID: <20090706044826.AF67C11C02C8@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/glib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8140 Modified Files: .cvsignore glib2.spec sources Log Message: 2.21.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/.cvsignore,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- .cvsignore 15 Jun 2009 18:14:18 -0000 1.111 +++ .cvsignore 6 Jul 2009 04:47:56 -0000 1.112 @@ -1 +1 @@ -glib-2.21.2.tar.bz2 +glib-2.21.3.tar.bz2 Index: glib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/glib2.spec,v retrieving revision 1.209 retrieving revision 1.210 diff -u -p -r1.209 -r1.210 --- glib2.spec 15 Jun 2009 18:14:19 -0000 1.209 +++ glib2.spec 6 Jul 2009 04:47:56 -0000 1.210 @@ -2,7 +2,7 @@ Summary: A library of handy utility functions Name: glib2 -Version: 2.21.2 +Version: 2.21.3 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.a %changelog +* Mon Jul 6 2009 Matthias Clasen - 2.21.3-1 +- Update to 2.21.3 + * Mon Jun 15 2009 Matthias Clasen - 2.21.2-1 - Update to 2.21.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/sources,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- sources 15 Jun 2009 18:14:20 -0000 1.113 +++ sources 6 Jul 2009 04:47:56 -0000 1.114 @@ -1 +1 @@ -2dcb938db904efcc62757b3b0655593b glib-2.21.2.tar.bz2 +8ed8d959a131e295ce75c8ebe867014e glib-2.21.3.tar.bz2 From bjohnson at fedoraproject.org Mon Jul 6 04:56:36 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 04:56:36 +0000 (UTC) Subject: rpms/dbmail/devel 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch, NONE, 1.1 dbmail-pop3d, 1.3, 1.4 dbmail.cron, 1.1, 1.2 dbmail.spec, 1.26, 1.27 Message-ID: <20090706045636.6327311C02C8@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10607/devel Modified Files: dbmail-pop3d dbmail.cron dbmail.spec Added Files: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch Log Message: - patch to remove duplicate email boxes from being listed - consider cron file a config file - add -b option to cron job to rebuild body/header/envelope cache tables - change order of redirection in cron job - fix typo in dbmail-pop3d that causes LSB info to not be recognized - add provides for dbmail-sqlite - conditional to compile with gmime22 when needed 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch: --- NEW FILE 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch --- >From c8bf103cfd18f3f4a228b299c257ffecac3e0012 Mon Sep 17 00:00:00 2001 From: Paul J Stevens Date: Wed, 1 Jul 2009 18:48:21 +0200 Subject: [PATCH] backport fix to prevent showing mailboxes more than once during LIST/LSUB --- imapcommands.c | 51 ++++++++++++++++++++++++++++++++------------------- 1 files changed, 32 insertions(+), 19 deletions(-) diff --git a/imapcommands.c b/imapcommands.c index 202098b..cd51262 100644 --- a/imapcommands.c +++ b/imapcommands.c @@ -678,10 +678,16 @@ int _ic_unsubscribe(struct ImapSession *self) * * executes a list command */ +static int dm_strcmpdata(gconstpointer a, gconstpointer b, gpointer data UNUSED) +{ + return strcmp((const char *)a, (const char *)b); +} + int _ic_list(struct ImapSession *self) { imap_userdata_t *ud = (imap_userdata_t *) self->ci->userData; u64_t *children = NULL; + GTree *shown = NULL; int result; size_t slen; unsigned i; @@ -738,6 +744,8 @@ int _ic_list(struct ImapSession *self) mb = g_new0(mailbox_t,1); + shown = g_tree_new_full((GCompareDataFunc)dm_strcmpdata,NULL,(GDestroyNotify)g_free,NULL); + for (i = 0; i < nchildren; i++) { gboolean show = FALSE; if ((db_getmailbox_list_result(children[i], ud->userid, mb) != 0)) @@ -778,31 +786,36 @@ int _ic_list(struct ImapSession *self) show = TRUE; } - if (! show) continue; - - plist = NULL; - if (mb->no_select) - plist = g_list_append(plist, g_strdup("\\noselect")); - if (mb->no_inferiors) - plist = g_list_append(plist, g_strdup("\\noinferiors")); - if (mb->no_children) - plist = g_list_append(plist, g_strdup("\\hasnochildren")); - else - plist = g_list_append(plist, g_strdup("\\haschildren")); - - /* show */ - pstring = dbmail_imap_plist_as_string(plist); - dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, - pstring, MAILBOX_SEPARATOR, mb->name); - - g_list_destroy(plist); - g_free(pstring); + if (show && (! g_tree_lookup(shown, mb->name))) { + char *s = g_strdup(mb->name); + g_tree_insert(shown, s, s); + plist = NULL; + if (mb->no_select) + plist = g_list_append(plist, g_strdup("\\noselect")); + if (mb->no_inferiors) + plist = g_list_append(plist, g_strdup("\\noinferiors")); + if (mb->no_children) + plist = g_list_append(plist, g_strdup("\\hasnochildren")); + else + plist = g_list_append(plist, g_strdup("\\haschildren")); + + /* show */ + pstring = dbmail_imap_plist_as_string(plist); + dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, + pstring, MAILBOX_SEPARATOR, mb->name); + + g_list_destroy(plist); + g_free(pstring); + } } if (children) g_free(children); + if (shown) + g_tree_destroy(shown); + g_free(pattern); g_free(mb); dbmail_imap_session_printf(self, "%s OK %s completed\r\n", self->tag, thisname); -- 1.6.0.4 Index: dbmail-pop3d =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail-pop3d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dbmail-pop3d 3 Feb 2009 22:40:06 -0000 1.3 +++ dbmail-pop3d 6 Jul 2009 04:56:36 -0000 1.4 @@ -7,7 +7,7 @@ # processname: dbmail-pop3d # pidfile: /var/run/dbmail-pop3d.pid # config: /etc/dbmail.conf -## BEGIN INIT INFO +### BEGIN INIT INFO # Provides: dbmail-pop3d # Required-Start: $local_fs $network $syslog # Should-Start: Index: dbmail.cron =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail.cron,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dbmail.cron 21 Feb 2007 06:24:45 -0000 1.1 +++ dbmail.cron 6 Jul 2009 04:56:36 -0000 1.2 @@ -6,4 +6,4 @@ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH echo "" >> $LOGFILE date >> $LOGFILE -dbmail-util -c -t -u -p -d -y 2>&1 >> $LOGFILE +dbmail-util -c -t -u -b -p -d -y >> $LOGFILE 2>&1 Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- dbmail.spec 20 Mar 2009 03:23:54 -0000 1.26 +++ dbmail.spec 6 Jul 2009 04:56:36 -0000 1.27 @@ -1,3 +1,7 @@ +%if 0%{?fedora} && 0%{?fedora} > 10 +%define with_gmime22 1 +%endif + # Package User Registry: http://fedoraproject.org/wiki/PackageUserRegistry %define registry_uid 38 %define registry_name dbmail @@ -6,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -22,10 +26,18 @@ Source5: dbmail.cron Source6: dbmail.logrotate Source7: README.fedora +Patch0: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if %{with_gmime22} +BuildRequires: gmime22-devel >= 2.1.19 +%else +BuildRequires: gmime-devel >= 2.1.19 +%endif + BuildRequires: fileutils, openssl-devel >= 0.9.7a -BuildRequires: glib2-devel >= 2.8, gmime22-devel >= 2.1.19 +BuildRequires: glib2-devel >= 2.8 BuildRequires: libsieve-devel >= 2.1.13 BuildRequires: mysql-devel >= 4.1.3, postgresql-devel BuildRequires: openldap-devel @@ -38,6 +50,7 @@ Requires(pre): fedora-usermgmt Requires(postun):fedora-usermgmt Requires: sqlite >= 3 Obsoletes: dbmail-sqlite < 2.2.5 +Provides: dbmail-sqlite = %{version} %description @@ -55,6 +68,8 @@ installation and configuration in Fedora %prep %setup -q +%patch0 -p 1 -b .duplicate-email-boxes + # we don't need README.solaris and we don't want it caught up in the %%doc # README* wildcard - but we do want our shiny new README.fedora file to be # installed @@ -168,7 +183,7 @@ fi %{_libdir}/dbmail/libsort_sieve* %config(noreplace) %{_sysconfdir}/dbmail.conf %{_initrddir}/dbmail-* -%{_sysconfdir}/cron.daily/dbmail +%config(noreplace) %{_sysconfdir}/cron.daily/dbmail %config(noreplace) %{_sysconfdir}/logrotate.d/dbmail %doc sql/sqlite/* %{_libdir}/dbmail/libsqlite* @@ -214,6 +229,15 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 +- patch to remove duplicate email boxes from being listed +- consider cron file a config file +- add -b option to cron job to rebuild body/header/envelope cache tables +- change order of redirection in cron job +- fix typo in dbmail-pop3d that causes LSB info to not be recognized +- add provides for dbmail-sqlite +- conditional to compile with gmime22 when needed + * Thu Mar 19 2009 Bernard Johnson - 2.2.11-4 - build agaist old gmime22 (bz #490316) From bjohnson at fedoraproject.org Mon Jul 6 04:57:06 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 04:57:06 +0000 (UTC) Subject: rpms/dbmail/F-11 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch, NONE, 1.1 dbmail-pop3d, 1.3, 1.4 dbmail.cron, 1.1, 1.2 dbmail.spec, 1.26, 1.27 Message-ID: <20090706045706.23ED711C02CC@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10607/F-11 Modified Files: dbmail-pop3d dbmail.cron dbmail.spec Added Files: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch Log Message: - patch to remove duplicate email boxes from being listed - consider cron file a config file - add -b option to cron job to rebuild body/header/envelope cache tables - change order of redirection in cron job - fix typo in dbmail-pop3d that causes LSB info to not be recognized - add provides for dbmail-sqlite - conditional to compile with gmime22 when needed 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch: --- NEW FILE 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch --- >From c8bf103cfd18f3f4a228b299c257ffecac3e0012 Mon Sep 17 00:00:00 2001 From: Paul J Stevens Date: Wed, 1 Jul 2009 18:48:21 +0200 Subject: [PATCH] backport fix to prevent showing mailboxes more than once during LIST/LSUB --- imapcommands.c | 51 ++++++++++++++++++++++++++++++++------------------- 1 files changed, 32 insertions(+), 19 deletions(-) diff --git a/imapcommands.c b/imapcommands.c index 202098b..cd51262 100644 --- a/imapcommands.c +++ b/imapcommands.c @@ -678,10 +678,16 @@ int _ic_unsubscribe(struct ImapSession *self) * * executes a list command */ +static int dm_strcmpdata(gconstpointer a, gconstpointer b, gpointer data UNUSED) +{ + return strcmp((const char *)a, (const char *)b); +} + int _ic_list(struct ImapSession *self) { imap_userdata_t *ud = (imap_userdata_t *) self->ci->userData; u64_t *children = NULL; + GTree *shown = NULL; int result; size_t slen; unsigned i; @@ -738,6 +744,8 @@ int _ic_list(struct ImapSession *self) mb = g_new0(mailbox_t,1); + shown = g_tree_new_full((GCompareDataFunc)dm_strcmpdata,NULL,(GDestroyNotify)g_free,NULL); + for (i = 0; i < nchildren; i++) { gboolean show = FALSE; if ((db_getmailbox_list_result(children[i], ud->userid, mb) != 0)) @@ -778,31 +786,36 @@ int _ic_list(struct ImapSession *self) show = TRUE; } - if (! show) continue; - - plist = NULL; - if (mb->no_select) - plist = g_list_append(plist, g_strdup("\\noselect")); - if (mb->no_inferiors) - plist = g_list_append(plist, g_strdup("\\noinferiors")); - if (mb->no_children) - plist = g_list_append(plist, g_strdup("\\hasnochildren")); - else - plist = g_list_append(plist, g_strdup("\\haschildren")); - - /* show */ - pstring = dbmail_imap_plist_as_string(plist); - dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, - pstring, MAILBOX_SEPARATOR, mb->name); - - g_list_destroy(plist); - g_free(pstring); + if (show && (! g_tree_lookup(shown, mb->name))) { + char *s = g_strdup(mb->name); + g_tree_insert(shown, s, s); + plist = NULL; + if (mb->no_select) + plist = g_list_append(plist, g_strdup("\\noselect")); + if (mb->no_inferiors) + plist = g_list_append(plist, g_strdup("\\noinferiors")); + if (mb->no_children) + plist = g_list_append(plist, g_strdup("\\hasnochildren")); + else + plist = g_list_append(plist, g_strdup("\\haschildren")); + + /* show */ + pstring = dbmail_imap_plist_as_string(plist); + dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, + pstring, MAILBOX_SEPARATOR, mb->name); + + g_list_destroy(plist); + g_free(pstring); + } } if (children) g_free(children); + if (shown) + g_tree_destroy(shown); + g_free(pattern); g_free(mb); dbmail_imap_session_printf(self, "%s OK %s completed\r\n", self->tag, thisname); -- 1.6.0.4 Index: dbmail-pop3d =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/F-11/dbmail-pop3d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dbmail-pop3d 3 Feb 2009 22:40:06 -0000 1.3 +++ dbmail-pop3d 6 Jul 2009 04:56:35 -0000 1.4 @@ -7,7 +7,7 @@ # processname: dbmail-pop3d # pidfile: /var/run/dbmail-pop3d.pid # config: /etc/dbmail.conf -## BEGIN INIT INFO +### BEGIN INIT INFO # Provides: dbmail-pop3d # Required-Start: $local_fs $network $syslog # Should-Start: Index: dbmail.cron =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/F-11/dbmail.cron,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dbmail.cron 21 Feb 2007 06:24:45 -0000 1.1 +++ dbmail.cron 6 Jul 2009 04:56:35 -0000 1.2 @@ -6,4 +6,4 @@ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH echo "" >> $LOGFILE date >> $LOGFILE -dbmail-util -c -t -u -p -d -y 2>&1 >> $LOGFILE +dbmail-util -c -t -u -b -p -d -y >> $LOGFILE 2>&1 Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/F-11/dbmail.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- dbmail.spec 20 Mar 2009 03:23:54 -0000 1.26 +++ dbmail.spec 6 Jul 2009 04:56:35 -0000 1.27 @@ -1,3 +1,7 @@ +%if 0%{?fedora} && 0%{?fedora} > 10 +%define with_gmime22 1 +%endif + # Package User Registry: http://fedoraproject.org/wiki/PackageUserRegistry %define registry_uid 38 %define registry_name dbmail @@ -6,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -22,10 +26,18 @@ Source5: dbmail.cron Source6: dbmail.logrotate Source7: README.fedora +Patch0: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%if %{with_gmime22} +BuildRequires: gmime22-devel >= 2.1.19 +%else +BuildRequires: gmime-devel >= 2.1.19 +%endif + BuildRequires: fileutils, openssl-devel >= 0.9.7a -BuildRequires: glib2-devel >= 2.8, gmime22-devel >= 2.1.19 +BuildRequires: glib2-devel >= 2.8 BuildRequires: libsieve-devel >= 2.1.13 BuildRequires: mysql-devel >= 4.1.3, postgresql-devel BuildRequires: openldap-devel @@ -38,6 +50,7 @@ Requires(pre): fedora-usermgmt Requires(postun):fedora-usermgmt Requires: sqlite >= 3 Obsoletes: dbmail-sqlite < 2.2.5 +Provides: dbmail-sqlite = %{version} %description @@ -55,6 +68,8 @@ installation and configuration in Fedora %prep %setup -q +%patch0 -p 1 -b .duplicate-email-boxes + # we don't need README.solaris and we don't want it caught up in the %%doc # README* wildcard - but we do want our shiny new README.fedora file to be # installed @@ -168,7 +183,7 @@ fi %{_libdir}/dbmail/libsort_sieve* %config(noreplace) %{_sysconfdir}/dbmail.conf %{_initrddir}/dbmail-* -%{_sysconfdir}/cron.daily/dbmail +%config(noreplace) %{_sysconfdir}/cron.daily/dbmail %config(noreplace) %{_sysconfdir}/logrotate.d/dbmail %doc sql/sqlite/* %{_libdir}/dbmail/libsqlite* @@ -214,6 +229,15 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 +- patch to remove duplicate email boxes from being listed +- consider cron file a config file +- add -b option to cron job to rebuild body/header/envelope cache tables +- change order of redirection in cron job +- fix typo in dbmail-pop3d that causes LSB info to not be recognized +- add provides for dbmail-sqlite +- conditional to compile with gmime22 when needed + * Thu Mar 19 2009 Bernard Johnson - 2.2.11-4 - build agaist old gmime22 (bz #490316) From bjohnson at fedoraproject.org Mon Jul 6 04:57:05 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 04:57:05 +0000 (UTC) Subject: rpms/dbmail/EL-5 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch, NONE, 1.1 dbmail-pop3d, 1.3, 1.4 dbmail.cron, 1.1, 1.2 dbmail.spec, 1.19, 1.20 Message-ID: <20090706045705.F264411C02C8@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10607/EL-5 Modified Files: dbmail-pop3d dbmail.cron dbmail.spec Added Files: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch Log Message: - patch to remove duplicate email boxes from being listed - consider cron file a config file - add -b option to cron job to rebuild body/header/envelope cache tables - change order of redirection in cron job - fix typo in dbmail-pop3d that causes LSB info to not be recognized - add provides for dbmail-sqlite - conditional to compile with gmime22 when needed 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch: --- NEW FILE 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch --- >From c8bf103cfd18f3f4a228b299c257ffecac3e0012 Mon Sep 17 00:00:00 2001 From: Paul J Stevens Date: Wed, 1 Jul 2009 18:48:21 +0200 Subject: [PATCH] backport fix to prevent showing mailboxes more than once during LIST/LSUB --- imapcommands.c | 51 ++++++++++++++++++++++++++++++++------------------- 1 files changed, 32 insertions(+), 19 deletions(-) diff --git a/imapcommands.c b/imapcommands.c index 202098b..cd51262 100644 --- a/imapcommands.c +++ b/imapcommands.c @@ -678,10 +678,16 @@ int _ic_unsubscribe(struct ImapSession *self) * * executes a list command */ +static int dm_strcmpdata(gconstpointer a, gconstpointer b, gpointer data UNUSED) +{ + return strcmp((const char *)a, (const char *)b); +} + int _ic_list(struct ImapSession *self) { imap_userdata_t *ud = (imap_userdata_t *) self->ci->userData; u64_t *children = NULL; + GTree *shown = NULL; int result; size_t slen; unsigned i; @@ -738,6 +744,8 @@ int _ic_list(struct ImapSession *self) mb = g_new0(mailbox_t,1); + shown = g_tree_new_full((GCompareDataFunc)dm_strcmpdata,NULL,(GDestroyNotify)g_free,NULL); + for (i = 0; i < nchildren; i++) { gboolean show = FALSE; if ((db_getmailbox_list_result(children[i], ud->userid, mb) != 0)) @@ -778,31 +786,36 @@ int _ic_list(struct ImapSession *self) show = TRUE; } - if (! show) continue; - - plist = NULL; - if (mb->no_select) - plist = g_list_append(plist, g_strdup("\\noselect")); - if (mb->no_inferiors) - plist = g_list_append(plist, g_strdup("\\noinferiors")); - if (mb->no_children) - plist = g_list_append(plist, g_strdup("\\hasnochildren")); - else - plist = g_list_append(plist, g_strdup("\\haschildren")); - - /* show */ - pstring = dbmail_imap_plist_as_string(plist); - dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, - pstring, MAILBOX_SEPARATOR, mb->name); - - g_list_destroy(plist); - g_free(pstring); + if (show && (! g_tree_lookup(shown, mb->name))) { + char *s = g_strdup(mb->name); + g_tree_insert(shown, s, s); + plist = NULL; + if (mb->no_select) + plist = g_list_append(plist, g_strdup("\\noselect")); + if (mb->no_inferiors) + plist = g_list_append(plist, g_strdup("\\noinferiors")); + if (mb->no_children) + plist = g_list_append(plist, g_strdup("\\hasnochildren")); + else + plist = g_list_append(plist, g_strdup("\\haschildren")); + + /* show */ + pstring = dbmail_imap_plist_as_string(plist); + dbmail_imap_session_printf(self, "* %s %s \"%s\" \"%s\"\r\n", thisname, + pstring, MAILBOX_SEPARATOR, mb->name); + + g_list_destroy(plist); + g_free(pstring); + } } if (children) g_free(children); + if (shown) + g_tree_destroy(shown); + g_free(pattern); g_free(mb); dbmail_imap_session_printf(self, "%s OK %s completed\r\n", self->tag, thisname); -- 1.6.0.4 Index: dbmail-pop3d =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/EL-5/dbmail-pop3d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dbmail-pop3d 3 Feb 2009 22:40:05 -0000 1.3 +++ dbmail-pop3d 6 Jul 2009 04:56:35 -0000 1.4 @@ -7,7 +7,7 @@ # processname: dbmail-pop3d # pidfile: /var/run/dbmail-pop3d.pid # config: /etc/dbmail.conf -## BEGIN INIT INFO +### BEGIN INIT INFO # Provides: dbmail-pop3d # Required-Start: $local_fs $network $syslog # Should-Start: Index: dbmail.cron =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/EL-5/dbmail.cron,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dbmail.cron 21 Feb 2007 06:35:36 -0000 1.1 +++ dbmail.cron 6 Jul 2009 04:56:35 -0000 1.2 @@ -6,4 +6,4 @@ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH echo "" >> $LOGFILE date >> $LOGFILE -dbmail-util -c -t -u -p -d -y 2>&1 >> $LOGFILE +dbmail-util -c -t -u -b -p -d -y >> $LOGFILE 2>&1 Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/EL-5/dbmail.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- dbmail.spec 3 Feb 2009 22:40:05 -0000 1.19 +++ dbmail.spec 6 Jul 2009 04:56:35 -0000 1.20 @@ -1,17 +1,16 @@ +%if 0%{?fedora} && 0%{?fedora} > 10 +%define with_gmime22 1 +%endif + # Package User Registry: http://fedoraproject.org/wiki/PackageUserRegistry %define registry_uid 38 %define registry_name dbmail %define services dbmail-imapd dbmail-pop3d dbmail-lmtpd dbmail-timsieved -# older distros don't have sqlite -%if 0%{?fedora} && 0%{?fedora} < 4 -%define without_sqlite 1 -%endif - Name: dbmail Version: 2.2.11 -Release: 1%{?dist} +Release: 5%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -27,26 +26,31 @@ Source5: dbmail.cron Source6: dbmail.logrotate Source7: README.fedora +Patch0: 0001-backport-fix-to-prevent-showing-mailboxes-more-than.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: fileutils, openssl >= 0.9.7a -BuildRequires: glib2-devel >= 2.8, gmime-devel >= 2.1.19 +%if %{with_gmime22} +BuildRequires: gmime22-devel >= 2.1.19 +%else +BuildRequires: gmime-devel >= 2.1.19 +%endif + +BuildRequires: fileutils, openssl-devel >= 0.9.7a +BuildRequires: glib2-devel >= 2.8 BuildRequires: libsieve-devel >= 2.1.13 BuildRequires: mysql-devel >= 4.1.3, postgresql-devel BuildRequires: openldap-devel -%if ! 0%{?without_sqlite} BuildRequires: sqlite-devel >= 3 -%endif Requires: glib2 >= 2.8, logrotate, initscripts, vixie-cron Requires: initscripts Requires: /usr/sbin/sendmail Requires(pre): fedora-usermgmt Requires(postun):fedora-usermgmt -%if ! 0%{?without_sqlite} Requires: sqlite >= 3 Obsoletes: dbmail-sqlite < 2.2.5 -%endif +Provides: dbmail-sqlite = %{version} %description @@ -56,9 +60,7 @@ storing and retrieving mail messages fro Currently dbmail supports the following database backends: MySQL PostgreSQL -%if ! 0%{?without_sqlite} SQLite -%endif Please see /usr/share/doc/dbmail-*/README.fedora for specific information on installation and configuration in Fedora. @@ -66,6 +68,8 @@ installation and configuration in Fedora %prep %setup -q +%patch0 -p 1 -b .duplicate-email-boxes + # we don't need README.solaris and we don't want it caught up in the %%doc # README* wildcard - but we do want our shiny new README.fedora file to be # installed @@ -75,9 +79,7 @@ install -p -m 644 %SOURCE7 . # make a couple of changes to the default dbmail.conf file: # 1. default driver/authdriver sqlite/sql (sqlite, if supported) # 2. effective uid/gid to dbmail/dbmail -%if ! 0%{?without_sqlite} sed -i 's/\(^driver\W*=\)\(\W*$\)/\1 sqlite/' dbmail.conf -%endif sed -i -e 's,\(^db\W*=\)\(.*$\),\1 %{_localstatedir}/lib/dbmail/dbmail.db,' \ -e 's/\(^authdriver\W*=\)\(\W*$\)/\1 sql/' \ -e 's/\(^EFFECTIVE_USER\W*=\)\(.*$\)/\1 dbmail/' \ @@ -106,9 +108,7 @@ chmod +x %{__find_provides} --with-ldap \ --with-mysql \ --with-pgsql \ -%if ! 0%{?without_sqlite} --with-sqlite \ -%endif --with-sieve make %{?_smp_mflags} @@ -183,13 +183,11 @@ fi %{_libdir}/dbmail/libsort_sieve* %config(noreplace) %{_sysconfdir}/dbmail.conf %{_initrddir}/dbmail-* -%{_sysconfdir}/cron.daily/dbmail +%config(noreplace) %{_sysconfdir}/cron.daily/dbmail %config(noreplace) %{_sysconfdir}/logrotate.d/dbmail -%if ! 0%{?without_sqlite} %doc sql/sqlite/* %{_libdir}/dbmail/libsqlite* %dir %attr(0775,root,dbmail) /var/lib/dbmail -%endif %package auth-ldap Summary: A database backed mail storage system - ldap authentication plugin @@ -231,6 +229,24 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 +- patch to remove duplicate email boxes from being listed +- consider cron file a config file +- add -b option to cron job to rebuild body/header/envelope cache tables +- change order of redirection in cron job +- fix typo in dbmail-pop3d that causes LSB info to not be recognized +- add provides for dbmail-sqlite +- conditional to compile with gmime22 when needed + +* Thu Mar 19 2009 Bernard Johnson - 2.2.11-4 +- build agaist old gmime22 (bz #490316) + +* Tue Feb 24 2009 Fedora Release Engineering - 2.2.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 05 2009 Bernard Johnson - 2.2.11-2 +- change BR from openssl to openssl-devel + * Tue Feb 03 2009 Bernard Johnson - 2.2.11-1 - v 2.2.11 - updated summaries From bjohnson at fedoraproject.org Mon Jul 6 05:11:21 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 05:11:21 +0000 (UTC) Subject: rpms/dbmail/EL-5 dbmail.spec,1.20,1.21 Message-ID: <20090706051121.4FBC311C02C8@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13829/EL-5 Modified Files: dbmail.spec Log Message: - fix conditional comparison to be 0 for no value Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/EL-5/dbmail.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- dbmail.spec 6 Jul 2009 04:56:35 -0000 1.20 +++ dbmail.spec 6 Jul 2009 05:10:51 -0000 1.21 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{with_gmime22} +%if 0%{with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 +- fix conditional comparison to be 0 for no value + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 - patch to remove duplicate email boxes from being listed - consider cron file a config file From bjohnson at fedoraproject.org Mon Jul 6 05:11:21 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 05:11:21 +0000 (UTC) Subject: rpms/dbmail/F-11 dbmail.spec,1.27,1.28 Message-ID: <20090706051121.6453611C02CC@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13829/F-11 Modified Files: dbmail.spec Log Message: - fix conditional comparison to be 0 for no value Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/F-11/dbmail.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- dbmail.spec 6 Jul 2009 04:56:35 -0000 1.27 +++ dbmail.spec 6 Jul 2009 05:10:51 -0000 1.28 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{with_gmime22} +%if 0%{with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 +- fix conditional comparison to be 0 for no value + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 - patch to remove duplicate email boxes from being listed - consider cron file a config file From bjohnson at fedoraproject.org Mon Jul 6 05:11:21 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 05:11:21 +0000 (UTC) Subject: rpms/dbmail/devel dbmail.spec,1.27,1.28 Message-ID: <20090706051121.8866811C02C8@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13829/devel Modified Files: dbmail.spec Log Message: - fix conditional comparison to be 0 for no value Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- dbmail.spec 6 Jul 2009 04:56:36 -0000 1.27 +++ dbmail.spec 6 Jul 2009 05:10:51 -0000 1.28 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{with_gmime22} +%if 0%{with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 +- fix conditional comparison to be 0 for no value + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-5 - patch to remove duplicate email boxes from being listed - consider cron file a config file From mclasen at fedoraproject.org Mon Jul 6 05:14:30 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 6 Jul 2009 05:14:30 +0000 (UTC) Subject: rpms/glib2/devel glib2.spec,1.210,1.211 Message-ID: <20090706051430.504AB11C02C8@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/glib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14710 Modified Files: glib2.spec Log Message: use --with-runtime-libdir Index: glib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/glib2.spec,v retrieving revision 1.210 retrieving revision 1.211 diff -u -p -r1.210 -r1.211 --- glib2.spec 6 Jul 2009 04:47:56 -0000 1.210 +++ glib2.spec 6 Jul 2009 05:14:30 -0000 1.211 @@ -3,7 +3,7 @@ Summary: A library of handy utility functions Name: glib2 Version: 2.21.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -52,7 +52,7 @@ of version 2 of the GLib library. %setup -q -n glib-%{version} %build -%configure --disable-gtk-doc --enable-static +%configure --disable-gtk-doc --enable-static --with-runtime-libdir=../../%{_lib} make %{?_smp_mflags} %install @@ -60,16 +60,6 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# we build into /usr/lib, but we want the libraries (but not -# the devel stuff) in /lib -./mkinstalldirs $RPM_BUILD_ROOT/%{_lib} -pushd $RPM_BUILD_ROOT%{_libdir} -for name in glib gobject gmodule gthread gio; do - mv lib${name}-2.0.so.* ../../%{_lib} - ln -sf ../../%{_lib}/lib${name}-2.0.so.*.* lib${name}-2.0.so -done -popd - ## glib2.sh and glib2.csh ./mkinstalldirs $RPM_BUILD_ROOT%{_sysconfdir}/profile.d install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d @@ -117,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.a %changelog +* Mon Jul 6 2009 Matthias Clasen - 2.21.3-2 +- Use --with-runtime-libdir + * Mon Jul 6 2009 Matthias Clasen - 2.21.3-1 - Update to 2.21.3 From ianweller at fedoraproject.org Mon Jul 6 05:26:59 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Mon, 6 Jul 2009 05:26:59 +0000 (UTC) Subject: rpms/tremfusion/devel import.log, NONE, 1.1 tremfusion-lakitu7-qvm-remove-lcc.patch, NONE, 1.1 tremfusion.spec, NONE, 1.1 z-tremfusion-menu-0.99r3.pk3, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706052659.4110511C02C8@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/tremfusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18939/devel Modified Files: .cvsignore sources Added Files: import.log tremfusion-lakitu7-qvm-remove-lcc.patch tremfusion.spec z-tremfusion-menu-0.99r3.pk3 Log Message: import tremfusion 0.99-4.r3 --- NEW FILE import.log --- tremfusion-0_99-4_r3_fc11:HEAD:tremfusion-0.99-4.r3.fc11.src.rpm:1246857874 tremfusion-lakitu7-qvm-remove-lcc.patch: --- NEW FILE tremfusion-lakitu7-qvm-remove-lcc.patch --- diff -up trunk/Makefile.kittens trunk/Makefile --- trunk/Makefile.kittens 2009-07-04 04:19:17.255508853 -0500 +++ trunk/Makefile 2009-07-04 04:19:23.797509418 -0500 @@ -808,7 +808,7 @@ endif # Create the build directories and tools, print out # an informational message, then start building -targets: makedirs tools +targets: makedirs @echo "" @echo "Building Tremulous in $(B):" @echo " CC: $(CC)" --- NEW FILE tremfusion.spec --- # Source downloads are available from the hgweb instance. Whee! %global hgchangeset 1421 %global hghash 4b5fc919fd59 # Used for pre/postrelease: #%global date 20090704 #%global alphatag %{date}hg%{hgchangeset} %global lakitu7_rev 174 %global qvmbuildflags BUILD_SERVER=0 BUILD_CLIENT=0 BUILD_GAME_QVM=0 BUILD_GAME_SO=1 CFLAGS+="-ggdb3" %global tfbuildflags BUILD_GAME_QVM=0 BUILD_GAME_SO=0 USE_CURL_DLOPEN=0 USE_OPENAL_DLOPEN=0 USE_INTERNAL_ZLIB=0 USE_LOCAL_HEADERS=0 USE_VOIP=0 CFLAGS+="-ggdb3" Name: tremfusion Version: 0.99 Release: 4.r3%{?dist} Summary: Enhanced modification of the free software first person shooter Tremulous Group: Amusements/Games License: GPLv2+ URL: http://www.tremfusion.net/ # How to generate Source0: # wget http://www.tremfusion.net/hg/tremfusion/archive/%{hghash}.tar.bz2 # tar xjf %{hghash}.tar.bz2 # rm -rf tremfusion-%{hghash}/src/tools/lcc # the license of lcc is nonfree # tar cj tremfusion-%{hghash} > tremfusion-%{hghash}-nolcc.tar.bz2 Source0: tremfusion-%{hghash}-nolcc.tar.bz2 Source1: http://www.tremfusion.net/downloads/z-tremfusion-menu-0.99r3.pk3 # How to generate Source2: # svn -r %{lakitu7_rev} export svn://source.mercenariesguild.net/lakitu7-qvm/trunk/ # rm -rf trunk/src/tools/lcc # the license of lcc is nonfree # tar cj trunk > lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Source2: lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Patch0: tremfusion-lakitu7-qvm-remove-lcc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcurl-devel ncurses-devel freetype-devel SDL-devel openal-devel libvorbis-devel desktop-file-utils zlib-devel Requires: %{name}-common = %{version}-%{release} Requires: opengl-games-utils Requires(post): desktop-file-utils Requires(postun): desktop-file-utils %description TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package allows you to play on Tremulous servers. %package tty Summary: Non-graphical client for TremFusion Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description tty TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains a non-graphical client which opens only an ncurses console. %package common Summary: Common files for TremFusion Group: Amusements/Games License: CC-BY-SA and GPLv2+ Requires: tremulous-data %description common TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains files required by both TremFusion clients and servers. %package server Summary: The TremFusion dedicated server Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description server TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains the TremFusion dedicated server. %prep %setup -q -c -b 2 cd trunk %patch0 -p1 patch -p1 -i ../tremfusion-%{hghash}/misc/lakitu7-qvm-svdemo.patch cd ../tremfusion-%{hghash} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 sed -ie "s/Exec=tremfusion --quiet/Exec=tremfusion-wrapper --quiet/" misc/%{name}.desktop %build cd trunk make %{?_smp_mflags} %{qvmbuildflags} cd ../tremfusion-%{hghash} # Usable VERSION content: "%{version}%{?dist}-%{release}" or "%{version}_R%{hgchangeset}%{?dist}-%{release}" (for pre/postrelease stuff) make %{?_smp_mflags} %{tfbuildflags} VERSION="%{version}%{?dist}-%{release}" %install rm -rf %{buildroot} cd tremfusion-%{hghash} make install %{tfbuildflags} BUILDROOT=%{buildroot} INSTALL_PREFIX=%{_prefix} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 ln -s ./opengl-game-wrapper.sh %{buildroot}%{_bindir}/%{name}-wrapper %{__mkdir} -p %{buildroot}%{_datadir}/%{name}/tremfusion/base %{__install} -pm 644 %{SOURCE1} %{buildroot}%{_datadir}/%{name}/%{name}/ %{__mkdir} -p %{buildroot}%{_datadir}/pixmaps %{__install} -pm 644 misc/tremfusion.png %{buildroot}%{_datadir}/pixmaps/ desktop-file-install --dir=%{buildroot}%{_datadir}/applications misc/%{name}.desktop cd ../trunk %{__install} -pm 755 build/release-linux-*/base/game*.so %{buildroot}%{_libdir}/%{name}/ ln -s ../../../../../%{_libdir}/%{name}/$(basename build/release-linux-*/base/game*.so) %{buildroot}%{_datadir}/%{name}/tremfusion/base/ %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %postun touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name} %{_bindir}/%{name}-wrapper %{_libdir}/%{name}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png %files tty %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}-tty %{_libdir}/%{name}/%{name}-tty %files common %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/CC tremfusion-%{hghash}/README %dir %{_libdir}/%{name} %dir %{_datadir}/%{name} %{_libdir}/%{name}/game*.so %{_datadir}/%{name}/%{name} %files server %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}ded %{_libdir}/%{name}/%{name}ded %changelog * Sun Jul 5 2009 Ian Weller 0.99-4.r3 - Add OpenGL wrapper - Upstream changed 0.99r3 tag again (hg:1421) - Switch VERSION buildflag to the release version and add release macro to it * Sun Jun 5 2009 Ian Weller 0.99-3.r3 - Upstream changed 0.99r3 tag * Sat Jun 4 2009 Ian Weller 0.99-2.r3 - Use system version of zlib - Disable VoIP at upstream's request since it's broken * Sat Jun 4 2009 Ian Weller 0.99-1.r3 - Initial package build --- NEW FILE z-tremfusion-menu-0.99r3.pk3 --- PK ??w? ?H/?w=?????}?=??????u???Y????o?M?????o*??Z??F?g????t?"?????{?]? ??j???\?=???j?|?F??r?l?t?4G??;????c??????Y?????6X?*?M??W??+f@ ?E> ???kR???? A???: j' ?%??$???M???3????N?????"?_#?^????Ny=_?j=am=?????[%???*???x?WR??6?]??????O?tjb:?z????czp%????W???V???d??f?%??D??Ty%?  ?RFE9T?\&????\!?{2?W??????????????*?/?????P \???][X?_ZYQ?^Z?PU?V?Z^S????????????B??z????????????s??g7??_f?V?7???s???????}??OG?:%f????????.*??c??f??a?`=z^?Z???B?'m?????>?((?_?=j????-????9U??Kg??&M{-?]\{N???ZM???f??w???Y5r?:???XK????Xz?|!?qc??g?R9ooS ?osm??z?0??t6"???? ??????{???y??U9?L?B!?J?????.?I?FO??d????????cV??????#???0?g?????????G??4}? ???9????B?aJp?? ??????????c?X?n?`?2~Z]?Y?k????@?2?T???4??'??B?b??Zl??????!o?\'&K? C??KtbR??Z??\??)??u|'???[Y?iv ???j??2j?P???!???K-e?|&.???8H?@?Y???\?8?;xL?>5??^?;f?P8???.p%L?jT???d?h?meh???O?????8Z????????+?w?k??B [???t??UfJGfz#???,C?EBS?"????"??? ?X?_?1????????3?O%?T~T?N?? ????[ir??-??c????96Yc?????"???k????9?$@??Lm???????`?X???U??????|u????@aj???? X?SY????y06z????d????????????rn??hnp?`v?"??"g7k??#??c;??G?t?????sH????u{?????L?????@??????]?n???E??@A8?V E??[K|??-??n?~?????????????J??-d???B?Sk??>?l?A?????]??"?????d??==???Ao}? y?? ??&??C??[3??za??G??EE???m?{?vn?>g}??? Z},?W? ?E?"OGP ??n?????'E!?D .b4$7?????XV,???>? m??%???-z?D]?fnI??(?=(5??JsrGE:??2U???V{?N??7odk/?pd J??m?Vf??y???3?9??L?>?i@??^^NXt ???a?9??a??? #?A?r???????>?VIl?5B|????kn????v??????/??N?C}?J????)??o?2V_?????8??o?????=??0J?'[E?=,?u?? ??f? 9?1?/#?F=?m??U'Ye??4?????????J??g!?} m7( ??i????0??????^????Cu?????????Og9 V????{????$???Y?????dn??/d%"???????)k:??z???? ?? 7?????Xs?xq??9w[?Sd ?9?d???^??y???LA? ]jn??|> B2????19IDAZ.ox$???C??????????}C??Xz??????^???*??j)?x s???>#?1??y5??? ?D?]??????????"?O?>0w???#?^?r???b?????j$C?x8??XS??Z(?d"C????Y???X??r??1Ih?5>??1'??????/e???kv?0W\O?????[??"n???_N?9#?s'G?M+????G5e]?V?????E_?9$?P????GU7??\?J#[?"$??>?+$z??G?TmM?"]5Eh ? ??\?S3 ?X?L?Hk??????#c?i]'?? %ne~D`? ?9???????& ??X??{? ??5?S?wn??!1??q?}???????????/>?Z??U???j2??!??)?Ni}????n??4????~?%?g??t?\??^?#V????O ??I*?C??Db?M?????Z?f "?B LO?H???CF??!?b??!m?g?????5??Q(T?ID?Rms?h?#???GVn??g??f:?>???b?sV??TU?? ??(???q?k??a???p?~?e9??>n??|U????????_??? ?wY??J???Y!?r|???PF4?^?D??u?????%??`hN?t?o??I?/=?????l`l????OX.?0?q?:???X?????TP??{?~?[Di>?R?5??Xv?Q??>?5`L?^u??;???3z????& HO0???Q?A??????????@?`?Z???????T|x??6?}g??d?e:(??5???{??Z???@?,??]i~ B??+8b???a???*?6?N?? L?]H?????w[M?&w?]r???)??5?,??????&E??h?????MfN?&?9?/\??#9??A-g^?/??dW???r??#?@?9??Yf??????gsU];?zK?X ??N?o???o?????h/?o?^'??N?ZL?$??????????Y?Z??????1??\?????q$?u`r"?H?w?426{?N>?<??]?L??^?WL??M??%?|{???z+V????Y=Si;???|?Fo?v??? ???a(??????h???6????_?????pu??????0H??1?#???g D? ?Cd/-????dy??????????m?????\??D????? ?W? ?7[O?=???w??_?> T??2?0??,"?oos??N????J?l??@4? ????K??2%?H?:N91??Xh??P????!?]?*>??X5?=E??????&?X??IP?8????B;?z???? ?4?? >?s?p?lH+?m?NY?Fp.??aN??\? ????nH?sU? !?8?y-3?e?36???mv??q?u??l?Q???K?`j???^?????J"2+?????TQ??m}H???:???D{B??????:~^??? ?????!?n?z?6??$w?1??? N??????? ??d??@w?;3??' Cd? ?o?H?? ??+n???#?r*h?uH??b??El?3??????6?????h8 ?%?8??N?? ?0? ?e ? ?/???Dh#?+????!??Co%?/?jl??i??+?- L?????`?????i?c?9???KKC??????g??? l??7a???????;??????u??!???chd"J?W?E9?(hp1?H??e(?r??9?i???Af#Z?t??d ??y???fs ??EF????????%???p??{??v?`@-.???M???3w?^????I D??S?? k??? )??`??280?`?? ]??'\*?^? ?(????6K????dc????Agev$kF??}?c?? a`???????????I &??J???k???J?g?g???bl\????Qg?PI[?[K???b1??g??????$5#?t?xL?d?\???06???d??MJ?Z????p???|?2?}??W????{???Lk????B?^?9?M??Tx????u???9~_?-?>?g???)????"E_?1???? ????????t????zoO?n???8\??DHV??q?,+X???q????6^???-?/??1??????????G??r??K?I?d5???<???????????????Y??5?'??2PHG}Uj?]^$?7????o?Z8'U???Fx ?\ ]+cc+]?) ???}?L?????w????3?{????)?M???Z?S? z1??b?Q?? 5????x?`?RN}?>?xs?t??*??\77?O??,j?IL|Y???????????K4?~)??????*x?J?@??#???Fm???V?????~?~??v?y?"??????t4S?d?@?&?/>???Lzq-?zI+O???{?|??$??`?Qo?????0'Ll????a????/?rL,k5? >??o % ??:!\?e????*?????????????? N?"???V???T??E?J$???1hV????> ??? k? Iru?Us?,?J????S??S???~???yf??|sEi?*?7+?? ?z1????Te|?-/?$^??HLw??????'?????'X?NA?A<Lbb`???"v?m]??=?K?Y 9?4d$ ?R?nD??!??? ?{??E:Ez% ?r??-f????=2?B??r??=??.???????w?>J? ???(???\?5???h??/???????}?]=G?mL?5?$??7??]1???.*ppbU\EE??a?V???*+~j?z-0.8???f??#6af????+???j"j;??&?MG??3???<3>?;r?e?????j;g?u?U?^zK(70^m?N?1?S?E??A??]\ (???[???h??=?&?z?Z????LE???PC@?!??#? p?????? ?io5?szm?8rM???o????4;??J?H8?5O?? ?WF??t{g?:?1?????e?"l??)???V[x??=b?uWZg\{%???:???Q???/d?????~GL?????$????v???f?>?Mm?5hsnW???I7_??_@??$? /a'?3?y ?I? ??????&H?K??gG?@n???:? '?lh?6D?OW??CbF?C"?s?$?>k?g3??M?*Q.?0?H?Ks??V?T? ??X '?r+?):8=???nx?? W?? ????R\??????f+Y,?e`3t?Z??(?J at o???>?J$??????t??b??,??????Ca{??MY?w???v?Wa#W?[? ??lAC??!???6?dw j?d?????xs?W*7Q?? ???:????Q???u?@*??????n??xC?H?9?S ??UDWs?h@?????"D?/?|w?????@j?B?? ?J?a???V??g?T????2??=y????Q?!P????OB???/??s???C?3????U?m????,(?^ mh)?)k??hP/?go???a??W?(?|??? v????#???????y"7??"O?w]D??Y??- \???n??t ? k????!?????[??',?????&???/?v??)?????.e?????PA?*???BC}%??/??u?_?????W??=?s TF????@5H,???7?? ?:???*p???n??W@?'q???? Jz?????3?????v{&??j=????f???TV????/? Um?>I???"?Tp?=Fe>??o?aN%gn"??m?A????/?iD[Hvn??????K]????Ls?-???>??_??U???;~????????j?D?N ???????]/?J?Wz ???yZ?+$?N??m??W????P?V???{,??ON?P???qq???*?:?g+v?#`??`????2D??F?W????Kf?G_t?????????????)?? ???K???tQ7?7L?z??????:??*s ?(fH?FP~??x???Do?U9'????]????t???d?uZ???;g,k?)???????M?03??K?v?e???n???Js x8|?bH??YF%??sU?P j ????U??Q?7{?l?k??????Iqup??-????Y(?Z?@??MM?nh??2?$@??Qk??6?6Y?N??U??n?C???ED?K???NP!?????!$??KZz?d?e?l?? ???%????ze?U???A !?&????Nu??W??~?l?%L\!?g??]zE???=??????????{?:?@C?N?&M???p????G???XA?,?-w_??#G?? _?%???0???????G??IIA?!?d?|w~??aGx?g??tk;????*+,#?A???????????0????? d?P32f?X6?_?xj?\?????1?H? L#kd??????h?\~Z?????[8?B?????g?J???/8???Ywff?FAf?gC?$????]?O??9%????z????? ??+\g??C??A???Vm??f3 ??q?[??9I?v6???>t??G??~?*#???3{]?'(? 5?6?8??S?$??&?m?Mv?r:??{??3?q?P7??i?O{P?UG?8?;QK?C??x?u??x\?+?_ ????c, 2?Va{$^?????_?o?H??Y%???????G"w???? /?v??P?nS?C"??`;????W???I?$:V??????*C ?1z6??=}??^?? ??????g?L????H????6C??B???=???t?Wx?????u?$D??q??I[4??$?TK#???vHF?????7???~?6%?? p?U8 ??????Jg???c?k]?????AD ?F????????8?????@?A???o?x{D?r?KH??Kq????< ?r??pB????W?|??"Qp3??@??|}?????h?X??#wb?vy??6??{}L?^7h;J???.?a}??n??j???=?s?>?o???????A??X|?]??cw????B??? 0?4 ?rC???????X)g??? t1????I?????S-Q /fz0????-?????3?????DO?'[D????Sl?? ?z@???????m?E?3?'????/?z???5??????fD! T;??? ????!@????}????? ????r?3[msmEUCuCmiYeYQq??{????????Dm2n~??Z??? m??X+ ?)IV????*Nh?;??Bj???? ??????+??????=???(???)SB???b?P???y?p?Z?C($? Lr??|? &f??g????]?hA????r???f????????0?1?? ?;?v?? ?jC?3????O???e??_uRD-?l?\???~?,?F??Y?? c%}??9?w????G???3X?AsNy?/z^(????dr$??n???4????????i???%?????I???y?m????H???p??0?? /??ac$|sc?#???g''N?fx>Y???}?T/I? ?_?> ??1?5????L/t??f??STf??o'|????Y??z??)Qv? %?? V??H#??h?9???4?U~???3 ???M???? ???M-?K??{????55???+?????X(????9KP?u????c?z2? .???????)3??b?????A?y?4%?A?:j??1??4??Zb?C%?[?)????i?????(O ?Bw?ltZ ?????5?$???#?N?l???1x????????3?p?? ???%x?,??? ??????u???\U:????????yx? U?3???h????6n??F??G0?|@7???G x?O6?6s?4?$??/???m?y?????dg=ho?4????,??x?? ?N?> ??_?P?C?wh???o?0 $Bn??Q???^QXJ??Q????F?$*????Z-\?lmw??^?Z?#7?9???t??*?B??????W??z???:??ox/?r???7?????gkw?%???T???6b???????qQ??? ???n3l?z??4?$?w?'????w V??[i?na???? 3??'"'?D,?!??E|???~cg7 ^?,I?P???G??9o??x?>o??_?;?3??J?? ?_2?????W-}=?h_?9 ??y?)"P? T??o??b?????\r?P)?_C? ???(?B??F;?%?c??#?f?Vk?????????0?~(?????????>)?c????Ly?0???v?'g?9?c}???\Db?y?{?? fllL??g??~? 4??N?B??br?2?~/%????#S#????'~???Su D???????TI????:,X??????e?w??????Y - ??d???P?zB?Qs}?:@F{ ??37?r???-?;????(wn2V?]????G?r???'E?i(??????\SP ?t??c???n??L?????f???? ?)A?L,?[?q^ y?9?k> ??~?|?k???u?h????LnO?n? ?N??"Of&?KH?#Z?mmP?p-B,??!?????z?|?2??D???X?@????]?"R?c"???f ?Im at F?????c???E~;???2?/ ????????? ?1+?-i?? ob *o>p?H ?????Q?$?Pp|gqk??z?k@??????VS?????m? )?????A?"#XMKU?Z????pV?8h?j???+Tt6???&?}?tC??L?)??????p?????U?e?v[f??$wC????1$????????c??X4]???????/??6q6?h0xIX???????#?3??-?????|?Iu?????-??-???????i???>q???U???'yzw??I??????????c????1  ????????????97?ul???0???q?%????oh?1???g??,#>d?a AU?*q???|?`?u?v????~0??x???Q%?Z?# ????<>.?OC?a'??uniVQ?]?X?n3?&Y ?hQ????g+?\4Y?m???$???c??OA ?k~????t?=????0)???Oyx|?z??r8 0?8#?;??#????s???? ???Q???4C[?>~r???? ???UGzl?W'???????M ?????"mI???O?d%Lp?\????????s??ci9zh??????m?F??n?c?/?g?_?.??5`dB????T?T?(?????#?k?A?? u????1?-e%???t?? ?FB????DO??a???N?)???k;Ji??0?F2v????A?????tW????&????'????_8.??xIh?+?????? YY V|??q&???Hh? (_h??I???? vO?? 6?NI??????9(Ur???5???]?ZW??h?D??????ov??????? ?+\?X2??|???W???q?lj??L??????f?|=;??=?_df???]?sO??:+?V{3???????5????,&_??;???^?\?????D???;=;?.?_P?Tj=RSU?w?6?t??9??~rV??h ?????L ???E??=???????&"LJ???(+?|?gD?*?/.???w?!?}?? ?0TbT =-?A?v??9??D?}?=_hg?7?Xi?i_H????2]X??+?3K7??[?&?%????:?o\??G(???w?R????L???^?R??H????,?"Hs??b??E?(???L?????^ft?^?#??%?HM%?*??Y??5a??WB?^?|???p'????? ?^Ms???I??G?????:Cp=?4??!?????s??????nO??????8?Z]E9 ?X^Y?????;7*??? .????????? ???? ?N???a???????8????t?v9?Z?Z? /?? 4?%???a r ??3V?gc????C?M&???!2S`q??E?*?J? ? >?gJ{??x?v???l?M0???C=?????B???h? $????<??p\???????*7W?n~???oN[?? X??j?N?0]H`?C??vh???&=?kL?l?S{? 2?????S????=????%??}??????]?q??=????EU?JzGf*?+?>hj?xa???#????#XB?|mL????????&????Q(??1g???b??&e`????,??? ?g???D?w??????O7c??lk????&?8^z??}B???????O??-r????goH,?? ?/????? ????2? !??]??z??*????H?6Q?{?{Ow? ?w?"@?k? "?.?\???.]??Ve??=^;?>?r{i?A??2j??,?????}???8??????U}???(??J>S? F??B~??????X????7??I???]h?????;4??6P?????? ???"oN?k???????_??7cM????$?rOD????? ar??w?/?S&*|_?!:??t???'I>? ??%7H?????????|? ?+?'????????R?\??f?? ??1$??[?j[?/??K#???F??? ??J??*?????3???rf??]G??x)d? ~??N??a?H?G2?|???UNs:???????u??+|??`???s?{????J68]/? V??K+???4?8A????????????xz.??-^?a??????0?&??????s~"??oy?o4?~?d!c??9:XM?=P????y???q?X?wK?k R?>em?+D^Z??u?3?xj[?>w???????<^?x?pn?M??V 6=??*??%?~????]EZ?Ot?#??Y?\I??Q?#Qg[yn?$m?O???:??`N+ W??????8??????h?5?PP????v?????_{lj?h??lW? ,??|?~^1?? u?^$?gzL??]?{???q??k??M????%??A??`n1????,?M??9???????+F?Pf?-?O????I_?~?????F?nFPp|?>wkJ????P=pSgm????;m?k??m2???? ?j????u Rf??6?k 6~??? ??Mp?w?j!???DSZ?????? ???^qg??N????g|UE?16??*cF?/???a???w?(x u?" ?&?y?|?=?????f?Y?}(/???l??Psa?z ?l?c?9???|???"?r?G'?i??z#??G??? ?g??)? 0??JdNV>p???????7?Rx?G??9?????;(??I#?j?????\?K? -?@?2 z??l??k?????????????????A?[?? ???? ?h?`???!I?J?E~???\,?)d????d?:???????m?^x????IY?0???o?D????@?y????+????_Z64)d!?pQl?OyJ[?(?>?$JE@?TI???f>zS?;h?6??> {1??-?Y N?_???/`q?? oC4?r??KG4J9???_z'?Z????S?1??Ou?? ,?=???1`]?P?-?R??i,c'7??????N?????m}+@????m??y?])?????G?????6??h?'Oo??5?<?: p8#Q?:??????Vy???k~???&x?_?e??b?[@?1??1?wV=:?? ??m???\?n???CI#&T?????I???mm?^Y?O??z?q??]R??qP?????\Q??????1Y??8@?\b?.??#???WA?????B;*??9K???????8?8???? u? ??)???? ??\Dd???f??'R???_???u>?o?&? d??e??*?Y{? ,?R@k???O?? ?s????_#c? ?=Yv??A@?? ?:f????)to???? iB???{?m??:^ ?G?????~?.? ???S??U? zyZ%!??&?A?To`??? ? s????8??a?@?I????B??2??W??=^???2?e3??G???????PR?????M%h??w?? ?8?l???w?hz?$?[????????p?q1}g???)H??C?????T:.???????|?b^I??^?2n?h?p???61?l?? A?dyT???OBA??????0??? ?U????&?98?m?h}TH?`??_???[\??^???@?????[j>z^nc'*?p';?&;???????K????w{Tv]???J?H?>?;????t??f? ??????^?P???'???????fa 3:]???????'e?B????3 `_ylQ?[?;??R?!-?]jy>?dG?0??t$?W?]??4?-??L ~?1??dMj?????edU?`k?7sH?{??6?????\^e$3?[? ??? ??b??? *??:Y,t?? ?P?x???Kj?}??9?=??????f?06)??b???7??L;|??o??3?fp????k?????d????E]/??????Sj?W????S??y??}k??ag?? +?????"9??&?>?Npy?o?)????-?D??9[???? ?/???w^??:?j? ?#V?????R???;??o???? ?:?u p???? ?m{?;?? :-??a?Z[??]??W?o?g?r?;?? m?^/?f^??sFs?]?????L??????G?}??m?G??I??????N ??j???8??r???a?V G$?O???g??WNx i#??|?_?????h?I2??lj???????:A? ??C???????rl_O?o???M?&S???_?i?hT*C ????+>?t???w?!'???? 9h?? i %?~23?Z+?p?9?P???)?I??$a?? +\3o?g???m?Y??.?? ?-Y"?'????????????$V?G?/???????.????q?P R?????????Q??R?? ?Y? ?V$?~?k+??,??7m|??r??q?G?????f???o????b?;^?&d????!??????]??#m?G&??5?jm?OD^?????????????q?gn?:???r?Y?4c?N???n???????M??*??I?k????:?N?[YF ???c?q??r?VO???x?E[Z/?9Y??????^/?1?W}?@?7?)?1??Y?v??=pd*? zf_fL??? y?1???k?9?????`)?????P???#?????@???? ^5>c???????`??z~??u0",???"?p????&???2x???Q+?????v ?/tL?CY?@k?b? ???:G?&C??So????{^y ??u){????????_?LIA.I\?;|?R?[L^??=?Z??f????Y-+?U?K??Tv^-a1g?g? ?v???&???????j?+ ZQ??7???~?K???|????R??7???'W????Fl??7=|?|?a-?????? ??3??%JG??w???H?a942?[?7/?- ?o???hRr????+? ~"???A???][#?(? ????7???N?b?JG^?'??ny\??*??W?^b?b? ?????kc{?J_A???????????o?_z????i??(_?????&pN???\?w?9? ??i1g~d??]?O??9?8??ezaZP?v?????? p?Q?AYo????Iq???????BR?in*Q?Q??U+??LH?????yx?TF?q'm ;?/Z?p???zR?5C???a?@?]?m??bPS?g yQ?,U???t?;???#??(?A?????^????6????????K?)?+?np{??i%5?J]ab?E??n!??@???~????????????/^???FK?ngj???3HZ??G???? ????S??? ;???2?|??????X]?@G6T ???6? ??6h??^?fr@ >:? pg?P O?xJ??s?R??W???\?????h}? ?(uz???L_Gj1?d?$2?=e????M?76????z?y????Qh}?n??????g?}x?;?_??oo 8]v??? ?P?)?,h??? ?Eul(????^???? ?wW?iz?O9???????>? ?!v~??8?;?3v!?m??d???6c? ?f???~??}?:???}???u]s????la??Q??<?d????????Ca??I/?cz????sw?????????q???e1?M????????@W? ?[6N??\V??a4????r????or????}{???|??(9???Q?)?y6???bG:????l?p??k?dV8??? ??)???'???^?? ;?+?0???3?)?`??=???3??I????a?Ka%a?8;G??3???a??K???L??T???9???@e?[?-s?F????0?m???A>B?r???W????l_?v????qS?s????? ?W?pA?'???,s???ge?V+???3`57w??:&5|?$o?????>)g?G?? A2oK?OF3????????z@?"???C?? ????)??<[??\e? d????; f? ?x7n?t2??????y??????[:?D??_ha????) :Hv-??'?Z??x0B?|a?!n#X3`??a????G?|??j?j)??? J??????????Ys\F?????????????7L=?6??????#??O?G????a?#?B????&??W??7??g+F??V0????[?? w? ?;h??De=?"?2????b&??g?"Q?]?vt ??v?)^??aQ????Qz?????!h???1`?6-1x??quH?? N???6? ??R9S|??"?3??q????5???????$??X?????^5??W1mS? ??N??Xk_N?|?%?]\0?"??eMP????z??\brl,X?$???????C?????i5???k??????4??)??????^?Q"`>??;5??? WKx???&?+?2?????????????E?eA<?`?@}=M?????$??:E??Vc??~?$?WD1??????(z???d?F1? ?????,?b?[??(y?W?????????g??NG2?? ??(??%?S?s??&???(?Y?gO????????>]k&e????6'?O< ?/? :?tM??t??V+?67???da?H??eC?0???8???E??y\?Q2a?,???{iyy???????u?E55u?e????K?S??????????????]?????bf\9???W?????_y?kj*?sX???}?A[wQ??u:=Bq?Sg??????zF??@y??????_p?}P?~?E;?\???k?f?I~Nm???f?9F?g?o??]-???#h??f?????1?Q?p+{Q??????????:i??(7?jo???s0?!?????7?lB?B?F???;4??A?(??${p??d??P?A?Vz?f?????$?a??8??4??? ?~q--3vRS?&k??r?$?ClM?????c?iE=??U?yC"=??h?P? ?w?#?n?}w+??(??$???R???:rB?{H?u??l???3???XgL.?r???h1M????-???v`?p??!N??B5? A??p-?`~??????|hj~/????iG?>???9M?????z?q??u`?f?u???3?c??1???^????o?&???v?C?[ ?[o??p/]???^????p???? ???+ ??KK????r??1??????.? ?4???r?? ?S,??s.~'??????h????b?qU?W??1 y??L???t?i;o????????O?? ???????r???_???p??\1? ?5F??28????-?3?s?q?L???Z:1?????5??????'??0?Q?c?(??7^???U???,`?$! 3\a:?Ky? ???q?? ???d?q' ?r?8?x??^2??b??z?;?CcE???? g??^j??=|s????W?3???????.??3?)Da?n?#??`??/?OxD?G?P?)>? ???????GW????????1*?????Q???nwn??? ?9?E]im????!?G?A??????!M5,?K^9????{v?#Y"_ ???_)??;???a??v?r?.?C ??r??~?8 vq?q?S+?e?`??oUv??F9%?]?????NQ????`?TM?&???-, ???4v*8???y? 4???p???}B????A?D??Mg???0?????? L???? ????M/??CY^?ZY_??{ lf??SJ??2i???'?-???????q?:T?????????????%???v??K4=??",????j?@|?UH??y V??~?K> ]? ???n /? 6aA?rj? j ??c K?;??~L??5?????F.~???V^???V?W?]\?W?Z?-/+;??nQL?+???B??s??gO ?r*? ?????????? ?j:?%-????3|??*?&??}f?{?kn??h???3kY?B`??R?_?C???N\????+p\D?6???~Vn?h?D???0?{K?=?-???'??*??{??????8?F6?H??F$??V$??????=)?baI??????rESvl(?) ???&5??E??????iL ??O???Ww?)i {v?&?QG???Z??l??????0c??}e??7?D???@5 ?N??????>V?=3??O?v? ?sY?`Q@??;^'4T5???D?y?n=]oFfV?.???k?2,?e??_aV???`?????????????n????c??/???K???:???t?L=???s?d?9????m?/??; ?&Rh:????????9???8;`?KB????4???d)z?'???#|W?fH???V/??v?|?E??9Z?Y???V???@]?6??=?haF??? ???~8??? .jE?m?Wa ?Jf!?A???????{?=?QF?>,{?,?????d????7???qf?b???8N?i???y@?Q??j???%Vb?>>?O???^k?z? ??(?Amvf?;?~??3?????????v?~???[?%.?W?? ?n??q?o:???C??),??S8?!QNQ?(?^a????;??=?$ ?5t -????L*u??????zz?C????s?D;?M?p???)??U????z/?S?????????*k`??z???~??<E1h~?Co~???9??]????fmz?7?n?o??m??K??B??9?????p???ru??N?N???)?? O????M0??E?? ??]???;c_?K}`??gV?c?|jx'A<>??,}??rh????Q?????$96I0|`??Q)???? ??????)???x4k??|?[?`nK???>[_:`G?l??????'?Oh?????????A;?E?9??+Z??K6? ?z???T ?d!?S?y???????R??5?????D???????+?"v????g8??LcBc???5?????iP??b???9?Z?C??g??? o ???}?7???????4?;?-?f0? ?b???E?x??? T??$ug?v?=??3?????-??6?C?[S?_??~F?S?P???7kM_??????v? tpU?2??ty`}????+????.7<}`u???????|???q[8?()Q????dD?/g+??E?@?8}|?????53?Z?A?M ??S/?0?????X[PA????l?85F+L?B.???&?B????d?Gx?a???b??X&??h??9?j???{??^;LNl?97?QS.?U"?WW?in]?????\???Uh&?:L6???T??? s~? N?w?? !arj?w?`$???Tv???>V????D?R.W?Ss?U???x?#C?\l?H?u-?????????Ru??s`h????.t? ?H?W????????gP?5}?\?:?=????2b4??|g@?@????/+??sT??????????n?=6g??)??,??.?????e}???Y???????hj)?m?????8o?????????t??y?????????w?(&??3??7??A.m???A=??R`????????U???9???\??lF???O3??[F????3??J??????????FL??u??k??@*_????C??;?? ???d'???&?y??B????v?\wldgN?????+M?Y?????Mu??;^??WR?vV?+2????AlE??????nG.??zF?!?D?"R/?E}??"?m?"??D!?g??6RP2?6?g??8?N???3,Nq?????%???^3,?8?6? ?????B?eV?[?!?8]????9???>????^"1?f?1 !D9??jC? xwi&???Q4J????u??%s???R6?#???dEAy??N???????M???????$??H(??;"?{ FC0>??????@?/?????&??a?2|o??e??5?&q?m??v?y?{27o?????NW??m?E????U?=??O?'|[N F.???m??A/??%s?u*???q}E??o??X???????*U???%?????pc???U??ki????j????F}??>??p???(?d?Hw?7?w??????K,?H??f?{?J| N? ???a????]??y?Y?x*K?R?^?t?"@???GX ????0?@???Y???,????????~)?????s*????3o?d?%??#?f????o0+??>?[??xbn[~#l0????????3?????M?^HI?%)v?v??i??U? ?{???b????l ??* fZ?s??PQ?SKC????e8?o?K???????f?????(?s?=0?1?3??89/&?n?9?vE?????w???V?{?/?`?B' i???Zx$????????Ji??-?T)?????'?._??A?W?/?y?%?>@$p???????+???y?q?1?k?L?y?l??1?9#??q?)??J?j????+????????!]G? ?=?(F???1 u??h?????C?????I???8?0???h??h?????)?m?Dp% ,??G%EGeN???E???7zP???4w(?mo?W?????M?*??e? ??????'-?= ,1?P?id?U] ?z ??]?????????}}v{???? |???P?kh?????+?s?5 ?????Y???]: 5??2?D}?V???$??.s?????QQk???S?z?X?W??d}????h??M(??U?x?k????bD??~???????????c??=?=t?B????????`????{??@K?&???ol?N???????????S?p=v?uiM5?\?-?????????P???? Zh???@;C??? 7lh????t?aR?M>4h?{EH??WI??????},?Ui? ?+???*?6??\}????u????cXy??M?"? ????:_?????F?5?/z:???#'C{?@+)? pmO??5?????5 X?????*?O8Z???sE.?/??O?'( ?3;???$e`?U`??=?;hl{??t???4?`Hg?Bc????????m!'?KH?6Q??|?u?????I-???S?JV????????^??gos????+?CI??f???i ??\@?mT?????m?N>7?aMj??8??R#{???u??=??????hp?^0???(lH?I;??[?j#G??N??K? l1????T_??S??~Mi|,???0???H?y??J"?+F?7?M?F???????i??z?f?dW? wp??1@?6?w?&?????,????;?0C?v?^?Kp?? ?????&a\?Q$k??,? ?cV??$??W?nZ???_?U????Y?? ????k?u?$??V |v??????{???]{?=?s/?!?_Al???)????v ?]C7:?^??s?&B????\?1????^j?A-X>i?&???????h=??{?O?????o??5??? g????#????g ??{????yt??tV??5?N??+H?x?~`w!.??.i??z\?G_???|??S???2???+?????"[O?S??F,?n????\hJ0#?????????4??????6L?????????U??`????7?w(????-????=??x??g? ??????vO??{g ZK??????I???6???7C? ?IQ ???9Wb??N??9??M.H??![?i?&a`r??8?????????w/?X.?h?????Va?9???`??=l!?G@)?dp?????E????=:?Y?}?I??cc;??F???e??=aBc?A?????????# ?T.???Q?9?zD i?; ?z?(?? ?)????+??@?????G??~/,??6]}??J??????F??)m[yzz?86?J???`??p~?????8????????M$?D?0 ??2??y7k at f?????????K?????????_?Ub???????L????????????^???E???0@;?????:??!Vq????r??sO;w{?vj[~?X ?0K?D~??Y?? ? .??? E??X?????????P?C?q?H?T6~`?3KOH????'l? Rs?y%???!+???K!-7??nR???????_??`5????0??k???6!,???uW?6????T?YdP???x????TKY???>l?<-??????bFf???U?????tiQ/?o?b?k?O???@F=????b?+?????[????7???EdJY???n]?p?????1?S??wY??Om?l???????>??Zc?l???Z|3?Q?T$?e?j?Y!o????j?????Lf,| U?Vq.D?~???=??j&p??a?*?-???}????`d??8&$????%Y????*0)>????~???)??M:?z?8mt?Jg???5@[?y??\???,??t9k??r??f_ n=????:???6?2?:?LM??/%n)?>????#??}?p?O????c.?????????(???<&m%???????7F?????M?OG~?=???EJrjaOupJ ??^[???si?sK??=?N??rbl????????.??f?,?y;??9?????]?Y???k? ?T??sq?j??*?$r7qh8?? ???Y?dR??? ????~h?* 9???>!?4Ra0???I*?F?^$y???o?????7???E?? ?M?!????G,???5>?Hr???A???F?QHe?LW?>7???189Y?:??[}pBfCw??????$c?v?K?3"???P?n;@K/L???i0K??r?? ??j?????\?V??t?&-;Mrlbk?????????Ve]~-?Q???k??????b?eL?|-???BH???kI????1????3?>>2???}0??;77??`?Q? ??; +????V?? ????h??Y_??-?????~???x??T?E?5?}@??7???Y?? w}????g????N?(&??43?w??q?????f?m?w?\??o??8C??>?????j?{F??????)d???{?Ok?7J???,???g)??k7?/&??(??*????^ZZ\PT\?H/*?Y?? 1 ?vbG4?l?L"? Q?]??js?W<"w+???&t>] ?????? p?Z0?kO AcA?GOH1?a??J?R??S??e??????la?K3?????)E??????ol??R},?_]?????s?1B?1????? &?`(???5?_?????,?>?)U??[??(?T???>?u????5'??3?@?w??1???|?i???? ~??_????~ F?Z? ??C2?b????j??:?,X??-^???>>??^?? oq???@f?BY???-???`??????ef????(/?GU?w'U??????DQ*?.?????nf???Z?qqI~e>S??qwN5m?q?c???;?.?Wh?x|Xa?? ?J^^????.Q??Hd???HU??.?????P7???\??I??/???G?? f?<$??#I?? ?o? '@?g???$?%{?I???Z? ?????????y??????]??s??U??lP??5???rN)???|????C???Gsi?i??=j?)??Z7?p???Y"??\u???? ??V?%?X?Q????? ??v???vzn?T%???? ?r???~Os????e?^s? ?u??G??Y?xg?x????R{??????:ft??hTo? ?@@T*?2????{??~9?N? i???f.?????76?????U?v/")??d?M????T??kA?:? A?R????????r?F???`UN??????K?? ???m?4(?3????\i?=?U??]?o?3-Y? Ng?-????????>G???bR??dM??n??P?W?TL3? D??W?^O-??f???dw?a???0???????I????#w?~?????W?4???b]?[???=P???l ?V'??M??3???|Vjoh???)?q=?] ?"%?????Rg?z?]?X1??????kH;|?H???\??N????^O?S?#??Q?E?~C?n??aSEqJ]? ?E??)d'f??!??\????????,>-??????\?q???4??6u?????a??"?g!E?????J-,M????.?Nv?A+bk? ?~ ??????[:A?Oo????[U?Q5?]?G;HM1 6L?Zm???F?Q???????? ~??.,!?L???\?{?nTQq??E?1k=?]"??E?=???? ????a/??F??t????Pb4?1]&s???y_???a??6??!???6?????_"X??????r{?a??.??;r?????? ??}`? ?+??E???m}>?C?k??R??h??k?d\5S?~.?,??a?q^a3???S2??o??|?Zh???M?????? ?????*?~]??[_QR???Uu???:f?zp??k????a???????#?6?t???h|v?'??M?????Ze?gO???Q%2 H??l*??\?Vhp??L_*i$?,?_???;+W??V;??!??[?40?2*?V?~??????:????U^?~???at8??:?????6T?_#?g??w]?k???"?t???At|?K?G?u?K?"??Hj????6?p????????{?F???+?V:???o?$Gj??Z??#X|t??b;???2 ???NF???NH?vFR?????(4?_ ~?#??T????/?L??+ ??jY?]A7dn??[??l?]AB????????/ ?? W/??s??e?m????>Vz??j-?&^?%?|, ???))?w2????=?'??vu???K???i?OZ???2??e'?)????>"?? ???+?^??v?????'??3??X??*?????=??D(r?tmH???-?_?/1?&????8^??/]??????L???x? ?+???bV\;4??.?+?L?;? *? ,X@???st???????{q_\????%?7????O???%??MWjck????x?Y?J??) ??~7T#T? p????)s?N??Oa????????{0?t0:???m?AM?jOd??l??C?jUl???z?A?O?G?^???{?~z?=\?X?E??r?m?l"????;~????(??C?D`?#Na?ZK_???`zq?/0,^??/?????c?C??c;?x??????8~?&??????!CcQ???????? ^????2? 2~??79??d0)n34ZnN?_??????6m?Y????MP+?b6??jGb?????????j}|??????o1i?5?N???{ /???r?????@??6YCW?K???^`'?O%?????B??7??- ???<"j????z?&[H5?Im?CqJ??&h?J?K??? o?5?7K??????n????@?,W???????????/??XG#n?????`7?A?4??? ]??H*2?rg??p>I???????O???pw(#b??????S1???(&????I????G??????5gjcx??vg?{t???IG?vE????`b?As????O?1!?c??|>/Z?q?T'hF2E??4???f?V???? .??? ?nt ???6??\?bM& &Y?v??1=??? ??????i[? $b??;O2??Qp???4????!??TD;??Z??k????????\?K ??6??T+? 0?H??+?)?J??^??????9?C~?:???b9}I???Mr;0??~OW?v ?1?a?l??Q:}??,DRf??n?????BV?;1?^???/??'?;y??#{? ?????HK?S^?J?????&???? ?????i???a#??????H3b8 pIX0_L?jf?}M?F??/)pco???'?bz???f?@?AZq(?@Nq2??8??????y???|-y?r????Z ?????pt??M?-????kw???>k;?#?e??? .7;???i?K???X#IdYw???{~??????e??K?tz ???m??? ?t?F$??(??N??p???S?I<-?d?FxLlR?? a?FY:,lK&i?#@???X???????8??Q?4H^s,??,????? Y??9??h??G?2sC???%\??6??:ZZJw?? rC?;H?^;?J?t???f?? ??n???e??Q(?????&G????RM??'v?&???@;?????Y?tn???aZ???wIC&???/??|m??L??? ??m?$??x?/3?-?Zp='???v??\?,|.j???????}E? j"q?U?\,???u?? ?&??xdl'?s?E?,????5?q)h??Br?|Y?? QQ????$??7?7 ?!s??3Z F???`?l/?????s?`?????8?h?k????E?????]???;?f???_????????@L?NU?0?????d?d|2 YM?z?D????????a:?`9?R?J?? y??OP?ux?k?R?>G?????? ???_??#?g?????????? =?m?R?<pP??X{?R ?d?????_rx?? ??? ??;(?;?Q!?1?N ?^??o?Q!?;?} ??+x?x? ?+N?????? ??f ???o????=(?G/=???q?????y?*?/ ^???qe^] o%??N???s?1????????L??;?Gr??r?????^i??????w?????N????????L??x?~U?1????5l? /???&x????y?????beRS[????G#xI???Q V??????? ??g?{?O?x???"????? ?w?O????a??K??????0?_???/?_?; ??B~????????????$D????%/??&[?z}???7#a?????{c?J??MG~??}&?j??????? ??g??5?kL?g????&?5??7??~-B~ ??X?o1?>????? ?6?_ ?2?_??k??'?^?o???_GN~??????n?f?A~??~M?Q~K?K?W)?u????????O;????o?|?????-?????????? ?nv??l??N?????^???y??Y? ??????v?o7???_;???1???*P??Ha???UO???v??Z???G ??? ????_&/? ?7??? ?7?Uq????F)??x???gSGq???c?@???sl???*?_3?n?a???????h???e???x????|??????????????????g??]?I????8?p??~ ?-?_??_+??B~???!???? ????z!????S?o#????~;???????^:????|G?????&I?7 ?wP?w??B?c???? ?i!?x?l? ???t?7?l??~??????v???x?oN???oc?]`?h?? ?Hi5~61?Gq&O??gc%???S??2???^2c}D??Wix??u*????*????&??2??u|?W??O???/X?o??e????>????b?G9???_?M??-??????? ?\???????6??}?,^??e?fO???-j??]?o?k ?*?????? ???T?7????jB??+9???!???Z??g????]?;???~=B??~?d???k'?~???u\;??b?E?/??=;??x_`?G?z?Q?????7?A??~?{?a?F?xg???qo????y???'?b?N?? ??????? x??x#???T~A?)?????????w??s?;?F??_???S?f???W?i?qF??B?L5<5???,?o:?h? 1>W?????1\????? ????????????[,T?K??*??Z??i/*?U??m?_f????#?U??y?y?????[p???1S????X??X?_7???5]?G??{X?"e??0???&?J?5?????3??????K??O?w":^,?????N?w?????? ??2~???? ??????W ??x??!????????????x??????a!?n???y6??r?? ??^??f??<{???W?o< ??;???g??Y??[???s??T????/S??_?w0J?;??l???Z??? ???}???????B??q??*T?O????-????????????K?x*cx%???%?????W?*/????*??x????i????????????w?fy????p?????? ??V????????k?????????u ?_'??y????r??(?w#????n?_?/??~}???\???U?[#T?????B??~Y6/w|nyf|???o?"4?A~CB~C??:?o???????0?ve??I7??E?????~@?Yi??4{??~?_i???k???>?_???|3??i]?G?%A??????G??,^??^? ?= ? !????????? S??t???????? ????\??(md?%?'7?o? O] ??B~s?7_?? ~?B~??[*???-?[??B~7??G??~w?? ??????????z?e?????*?? ~;??v???B~??1??(???/?h?????-X???????oo???x???^?/o??x???u?????G???W~?y/?7?]~v???^????_???x???f?????;????????; ????H~?l???,?o??? ??????????L~????????h?_3;?H~????+?w?L}????o.;????V?????K?6?????<?~??y??7lR????r???????????V??????nb?j&\????J????N?? ????a`???h????[?8???g???$?J?????$??????????PK ?1?8xgI?q??H?i?*?^*m???xu???x??u?x???!?z?$?v?? ? 8~Y???b?3?$?r?U?y??s?_??0?L??2?j?n??W????/'?5?????-????^K??V?s?*?~?~K??y?_5??????R????????`?;o???_-???~.O??Ppyv?H?S$?/??5???^$???w??{???x ~5j?7^??g/?????v=)???|7?xSx????'??UD???`}???????z6??~?????B?n?????????Z?m?????\"???3???Q????{?'yDG????????????+/7????'yD??o1???K??p?o??????'U?0g,?W?m???S???c9?/v??~?yv?????o????????b??????/?;????? ?????y?N?????1?a??J????_N??/??$4????+?5??????|fu??O????-??t?}j?J????l??%???????gV??B?m?t???k?K'?y???3??u??F?R1w??8ek1@?}???:7??-??????QO?? ??;g??[c[?6-???>???&?S??!}J?\?????%}?_???M? hCh???C>[????*[i>5?A???q????}3}? ? ?? ??i?? ?????.`?????Y????lJb?SON?e?????1a??5s???(km?'?????A?kl^?y?!?}b???[??k?wxt~`?i^>??XY?O?vH?K?Y?u ?u?a >}?i?m?&U????O ?3??k8????GY4???k??|>???????????? hCh????y?0K???;a3???[r???y????m??-s?????-?????W@B?'V???k????>?:?????G??,C??[??y?????u?m?&U??Fz????i?u??Oj|?5??%N??l??????^???????=??6t?CNy7?^f??_?'l?8?????tq?ONl5??'?Zo???M????v>]dL?|?Rk,j?u;???k?}R?#??e?;y?n????/?k\??y???M%???m'?????q +??'&??)??7????????n?z9??????Q????s?]w^????7y?Y?????w????f?n??N???t????????#+??e???????Zk?{^m?TR?????]a=??Y?????;O???'???????=??9P?Cec???????V?????;?O ;W??f:_?? ?s???,??z???o???ESv^mHm_y?'T????4+?????J?3?_????S??1???mYO??E?2??Z???c??"??^d?????~??U3??????'5>kl?om?w??5?( ???????>???O?,u??ks?I???yF ???9?E??b??H???}b????lr|[?B?????????d????????D??????k?Q???????t?wz?J?i??Y?????z?k??????6%?????b??????m??|fu??????I>??$?l??]Y? ????l??|j?r?-?_??5z??????? ????`??9^???9j???_co>?>??I??w#3??|e??????h?o?)???-????6%???T?cw?h*?w????3\B???'?j?C??r???a????'???&????p??/?????????Y?g????w?H?r!???h-Z??? ???)???[???)7???Vf???2??_;??#?u???F?vA?c&??0j?O???6?????]?h???K?{?=?y??{f??? ???M????7?w??07???Vc%n?X[r?mkj????b;??o?F??\l???F?~e?? Xm}?W?a??l????w???Y?W?~l?YX?????w[E??????+???j?? e^??2?????_ kP?y??W??Nt?"??}v?y?e?c?^5}?jKN?9????U???6???}?c??i??n????K????w??w?[??????J???u??q*=>?'??c????^3`B???9w?1???^f?1RIh???3?,????C?>??k$?TR??v?1?y{??}N[r?M???y&?Bck?????e???{'????3?P?A??? h?????cN\%z}b?:j?8??????????+?=??x???? ?r?!?7???|Oe??;e?O??b?}R?3???? ??????34+?Y?g??6 ?n?}{?FS???}r|Ktsl??Y???Y???V???s????????????+???O?f*????+?@B??b?D????s???yFMlg?????6 ??}?X???1!??}}?>9?%?9?%6n???f??i? ??w?KbX >5?????'7?>??????}m;em???3c????NO?c?????????????Sv?-??9?????4????y???(???5c}BZ????}r|KtslKlB?+6N?}??S?j???? O0?????}?????:????T??4u^???(f_??6?????{?>m??s???gV??????}??O????K??O?}?????f:????pH???f??????T ?????M?c????'}?5D/??L?????kE?"?j4??[??|?)_?#??o,?X??m?????l??????}?Q??6?? ??US?>??????1v???r?m_??l?I????7?S1??Z????1?I?v ?????????????S?????>[>?,??sn???cer?B??????&?\??3?K??.???v ????????3??v?>o??????t??????I?6,???7??T?t ?{\???;a?>?:????=??u?}^j?+/?c?>-??R?6ny?vk3???????O??7?>??.e??? ????l?_????ga??4?l??h?????97?XR??c????m????3?s???t??R??O???k???On?[????-l???????D?J?W?O4?SQ????????8v???|,??L?O?q7?|?2???#&?v?????1M?????sn?We???A??=?x??{??}fu?Q?ML^??){_yM?c??????6ny?V???9?U??R}??i????5?>??q???????????}??"?+ ?;?=??#l?#3?1????????A?9??b?v??????QN?q6o?9????4d?z??]?]??=?L?o?@3????u?s?=??u?o??d?+c????|fu?Q???????I?LSn????D????6n???7???'?J?W?O\?#??=?V??4?Y??????Yw?k?LSn????D????6n?&y?J??gh???T?>?z75?1T???o?}R?????8y:.?q???Cm??w?b???j?:a??0?;??5?97???????<x???wD^h??d$>?:???M?5????%?N?,?J???-???ma??kz???????U??R}????????M???Oj|????N??m??"?Cl????a?????Q6?;>+?_?'?{??O??h??C????@?????????;&|????H|fu?Q???????X*?ok??????[??c?S?/?44?`?n?Q_*??????????ilN???'5>?\??8??dK's????m?=|?:M???K?9????{?:?_?'??|?/J?? ??j???]??V?:????lm???s?>??G|???????????? ??}??D}c??a???O??xDD???????????[d??lOy?N????u[F4Jtk4c?qe??????Q?I???|funR?>?9????w?ZM>9?%?9?-l?rM2?o?L?????`???.x??5???C?????x??'5>??C?u???????m????>x??B???{???/?3???mj????Lo??{?5?5???:???kV>?:?????^???s4M-??????[??c???-?tl?V??J?9??-??s???????sX?|?}R????;>???+?Gl???+??P??N????/?3?WW? ?b???????? ?????2f?6??k??r???????%?_?o?n?m ?\Sh??O??N???Y?????/K|???^???|???[?)[$?g??Y????=???k???M?q??k?]m?e???}&?????G?Zh??2WSl??R????6N<7??,?3?e6L?;*!d]?K???M?~X???sRHg?>9}??-?ma??K?y?B??>-y?;6K??s???y??`??????(v?/?>???????G?%w???`m~??!c??6?????s???/??P?^???C?_n=?z0?~?\??]>?8?;?? ?Q??i?3??????=?;????_?w?????B?:?????<#??Ww?k???p9? ]s???j??Gm???5???????[???ZY???????r].??0P{J??j?(;;?/.???'U^??J????[?-9q??5????e???[???6?wp[3?m3? ?5m????r??????}_?}O!:?;? '[??m?n?m????a??|?>???~w???+??????>1???"????=???Q?G????????????+c9?~?y&?~?&?B????.?O.hN?lr?Q??????N?_n=????V??j?[?vH?%'??XK????????????/?gk???t??A}~????9 at l<{L?-???2?Lh>?>??T??|??????eAy'??f???????3??h????y?B?!?u??5?t{???n???#?qq??5?nS[q?????'?W?_?b}?1???E??s?%???:7?W??????o???htS??v?T?v+?f???f;??%7?T?%q?????K]??????l??}??x???:a???}??0?o??V??r??_?gL?Q????~x??????>#y???3????\_?o??f??|??;e??[??????GS?5?????[?}4??????.? ?????????@?&??l?~g?j??%}?+?_??>?5?????[?}4??????.? ????????? ?/?pZ??,*?;O???>?Q\?3????$y?Y}=?m???G???n?j??>}9?6*??-h?Qn?C[~b?????fI??n>?????v?]??Jc??Yl?n?[??'f??fZ?G?6*??-h?Qn{?-?^???????_M~z^???'??Yzg?? ??x??XK?????m?yn?!??Zf:??????>Z?????62??-h?Qn?U[~\??????b????u????>?????/c??Sr????n?R[4?@???#?????xb???5?/c???Q????fi??W3?????Og???a???/W+f?????c#?G???Y?G-c?M[KI??m?cXe??]'|"?W????K|Sq???????k3?SZ%q?t?O9?Y?v? ?:???p??z?8???b????W?v??+e?R3?~?m????t?^???S?T[?????"?G';????W???;????????o?\???;???????0??]????????{g???w??t^A]?fnY(??>q???h??????9???U???)K?J??????pkO~???EN???t??C'|????F???????? ????y?????L???q?6?jIn???rE????V???4rN???>?i_?>U???????}??]Cy?- ]?????|~???s'c6???k3?G??e??_U??^f:Gb7?? O1?? ?u?????????g??d?+???>_???hSkr?(7?O?9?5u?}?/?f????tu?6???Dl????? 4???????2?C????? ???}??????????? ?#?)^??_l?_?????B?w?s?|?2??:3=v??c?Qkw?Gc??Qn^?zs4k???L??a??I???7?z~??M9?5?????vA 46D???? ???9u?????8??????g???Zw2K?$??:???CU???X??cW???|??g:??8S??akJ??d?/?7G?O??7???i??l|6?p??C?'???M9?5?????vA 46???? ???9u?????Xg?????1?_???????s????~v,??f??????sMr\?D?W8????k8??c??sP??A??W??Krn???u?|S?}?{?????|?.5??:G??-?^???[n4?@??EN? ??)?-??????? :??? ?L?][?m?????L8??^????????L??e??o?>????_j?Rn????o???=}o??????R?M???????8?@?:[2N??f?$y{?*+???.?????S?h[z???3??>}\?W?????I?w????[*?j?????r|???_???z?O??`m?)??5?b;??D 4?lcl?h???????????? ?K?z??????mm?~]g?]}??????k???O5?s0?????S[??o?}????,?3???' ???q)??Ru???,?SN_??y?&??T+?L??s???g??|??k???&???i?\?)?~??w??????[?o_??T[??????bfe????2??? ???&?????4?? ?\?\??????????????Gy?JS???????t???Q?NA?????r?L??O0K???|G???wF???S???:n?c? ??2?|???Be?5????? 4?h?{ +M-?r???1f?h????Z??j c? 4?@ ;?n?mgP??v?ZC??E 4?@c\?m?k%?i?1????~?????}?c??5T?1[4?@ 4??o-?y?4oh???3?+??s?r???1f?h????X1??-&??L???|$??c??5?>?E 4?@c\,?????_?I????j ???l?@ 4??!?yp???? X?um?4?N[??6?3???-h???b9?8ng????????s[??m??Y?????j? ???h?1[??^?oJw????,??^H?C}??q~????\??bm??{g???'l??c????H??`???? ???@ 4????????Z???k??5??m?n?_??Y}?????k ?C`m?`?s?IzuFO????ztLDh]?1K??.5?????j???????~c????g?Y?X?[B?Y???|???e?qG3?g?S?????7(?????\?RJtC?h??h??q???>??$???????2a???d?M????X?g????????g??$??f???l??o?)???-|<> N]?????M[???lO[?mO???o?'?b?[?E6?m{u?????j?[?@?g?r? ?^3??;???4??h???<5 ?????&|q??4???b?=????!???fL????}l??g???J??[S??M??e>y?p?O(?n??mLc3=?u?[?A???c?:G;U??m???lOI??????]wm?????Z??Fk??@??m?3c????'?????,?$???A[?#?$??V? ?K????{????g?B???L?P????i?>??kY?O??=7P?G?]??ewi??!lR???v?5x?F?G???r??z??.??G????e?U?o?6???}?k5S??j??-??X?Z?wV??h^) ????WO??|?G{?????K???}y?y????8?wl?^(?f?4D???$9????}?{zA??-???L????+?u?6?$Q???i+?|?NY??{u+?w+?Y???,?_?o??6kj???i???e?kS???????U?R=?????\??a???????K????yw7?sL?n??_???f??^~?????????c>3P??j??? ?????6?7>??=C???oo??|???????/I????????]:e9??[??????;??l??~?????{NV?C??Z7a??mYn?????????f??6?>zz????w,??????v??a??g|]?G???>z?????7?S?????An=r=?'???na???km{????W??g?I??>?~?????;??????S??}???3=?~?? ??~??????8|???e9kS???????!?????i ]C????u?C??O??{??_??c??r?????~>??}o??/_???#?=5}?j??s?wFa?2?'??]=c?m??[v??g%??????Y?'^?????????MA???L?a????????Xy???????c?.iO?x????X?Z?wV??? ????G????O????:??????I????????um?????pV?^7_? ????Tl1?P??3076?_?:?F?gp??????J??b?mO? ?2?{????O}d>0????S~???}??LM???????Q?~.zoE?v [?????n??l???}???1?12??D??2'?????=??P?}???\??????go?t_??d??>?W?<]?j?,?G~?uN?GG??ks??????O??+?$?4??*6oi?v??OW???_???e?N?F???c?^?I??c?? ??k2?S??T:g`Nl?2K???s,??????Om???UZ?m[&??ne??>Q?????????W;d??y ?>???X|?2Mr? ?x3???7??)???6_~?K??5?"V??\D???&si=m?m*?,????????:e>????eC?-???P??)???PC|???}??W??l???nf????/??!=7_??yf{j?`?>?5??X?4K?H???w{?????r?tn???=?#??<?s_}?y_3G???{? gm!9G????V>.??I??}???????A??5????h???/>]MO??s? ???????N??]??c?G?K?>?=5}0FA?gt?d???>???\??q?,???Bk???{????3K???yu?Hh?b}|k$???I,?P?&y?,???1???>??????@???)?lOL????/??d?R?????|??V/?l?????oM???1?????I??????*t|6r?????uW?????P?>???r????3???>???w?#?/????kJ?Wil???????h?Z?G}?9ytL????9???^?g?.?Z[]??'}%?????C??^???m??N??m?{vE????^??A?K????w??? ????u????O_ K?^M]>?}P?1f???t??5??O{???$3???{u?u????????z?m?????m???X9????^??Jct>w?C}~Z?G}^???| ?X??f??l_}C???sy???'?? ??P?%}???R?O=??-????*?i???j?>Cl_??m?\wlZ??v ???c????????!l|?z????^???/??{??8?|?S?? C?`}V??'X?|U??Z;?;?N? A????l????>??ly6/?;bs???? ??0????s???C?=?/s}Z??????e? ????????}5??o???^?m?Kk?X?&y?$?N?????G?6h?j???W?c???j??k???oN,g'??n?M???|?N???Z?O?g ?????M?`?>?a?C?^?[B?5???????Y???nE????}?X|?????[O?^?zb???"lM?>??3???7?^????d??X?)??zt;??0???&T????????]N|?R??}*???) ???|?????>?q???e?kq??=?9???????4?;?2?g?;?^g?Cs&?a?ck om??]t??????]d????O ?\R?~??????iT?"?+??????i\5}YZO+?>?????V?#C??????|????vm??m?????I???w???Y?????0?????r?-?N???r???D }?????y\K??sm???{JDO?? ????;??Sh-???^? ???;?????9????????c???k???U?]wSh?7?vfi\?? ?1`W??G??t,????;????{)}-KI??n?i]?^(?????5?N??k?9?????]???m?+?w}?????u??????M?zn?)?i at S?w?B??m?b?\???-??Y?????_B??!?X?5a????%???I?KRk?\\?(?M%?y????'?E???y@?t???W?>?C?i???3??s???/???????-i????9?[.??~????z?????????9?u?e?39???7?e2?F??1?????3t5??@???????K?ygJ??+?????m??]j~??v??C ?j??!?%y??^???y?N?m???6?$? ?V?v??j?????Bm????????C[v?DR?;O???s?X??z?c?M???k??????????[???-}???????/?~u??&??K??c???us????????o?$e?}:?/gZ?P,Z?o?.????H=2?xw?f??y?rc[ hJ????????:w??M??[X??;???o???Lz~????I?????+M|^?X?????K???????c??m????>????Fwn????n???L}v??-?y?}??*?? ?6??V7????Z?S#qI??w???c?Y?='??XLn??? ??bi?????5kb?????_??sb??I?????y?}?V????'?|?:+?8S?C???yFH??O?S?W?>\l?zA??}C?????YZ;??z?v;t?????k?????S?7??????????r???^gu^?a??j?????????0K??R?w?>?ls???m?????Q'??6??NJ7??g_??~???z_ ??S???]??~!aw[kwz??r???M?y?K???m??3??:?}?nk??ol?????????h??Z?c"6?Z_T??Z??g???S???SchsMC?-4Z#?rd??+???^?s*y??uA???>?Y?o????L????k&?*??t-?[e??]#?r?~?\???r_?Cl????[[w?XS?}c??-?;b3??V-??vV'?,A?)?u?t???m??G??????}j m?ic?????=???\???*?????D? f?^?5??K??m???s????^n?^????`?)?r?~???gh?r'??] ?o?t???'w?r??[??|,>??=??K??m??t/$?>??=?[nlj???~T?o?v???P?c???]?Z??g????6vm|~??TJ?{??;4?cC?UJ]???!???Z????v???g????)?K???^??"??f????s??$???Z???_rl[h(:g??3?r?cl???h?C??r???`Ns??9????u???fi??X?CD???????v[Bh*-O? ??[???kwH??1-4??o?X at w????r???b????3????3_?hK??Uon{???m??2?????L???p??r???6???????? ?B???:????ro?y????t???A?????w????|??_SN=%??l[h?????d??? ??????c??`???y??3??9???b??q'?^?nf??h,???c??i?????6?=?*?m? ???v2o??c-??2?g?????????0???@?BI?I=??!????pw?E?_?f??q8?,??3??? ?? ?3V???????G????Z$?9?~=4??A????????S????l??r???y;4}I?????GM?5?Bn=?4?nm?%??l[h(???-?;??~???y?o???2?g??}????~~RF????????=???N?;m ?no???c?????H??p???b?????\j???m????L?c?9?????y???pn?Tl-c?y????S?9O?????r?^a?t??????L}.?#??D;?????)ou???_?V?QO??f??s[?4'?PyI;u?e???????_"6G[??1???[?_????Z??????y?nd?J?}c?g1?Y ????C????6??? ???????n???&???K?q???????7???????_K????????????`w??~5????g/??/????S????Y?q???????K??m???1j1P.?H??,?????}??S??=m~???n???5?#??d????Z?????#E?V?????"k??@?<??r??3}?@????Q???Cw>??????0[ow?Q?~?+???_????/|????????????_b>??;?c;??1?s????-*uJ?z?Z?J??'?+TV?!?=v??*???6?l[h(?]?]?o?????5?w3??wHe???,?C?]???;?7????????>(?9?w?H?w?N5?+?H???u??S??? E?g?m???_??????3???????|] ????????? ??ZVG?M|??5??n??;??9St?Nw?NE?u?????V??d~y??Yk?_?)?'???\??=?]??|gO~?N??????}u9? =??????[M{b>?e?wu?x?W??|?[?????cu?????*?%????+TV?1?]gC?'+b???_??v???????Z?_?S???m E????????]g?s?*????????4'??f?@_?}?;?Pm?????Ts?????#??7?????,a?L?????E?????L?????C#6}?g?]?????)C?r????_????/?;'? ????sD??'???rw??????????????1????'9?w?b???&?????.)??S,?????/??:N?;?f???? ?_??qmJ??????????|???????Zi????w?????_7&???????C????:e??@i?$?.????>r?g?.LwM????L???rO?7V??w?7?j,???*?/??u?%???;??Z'?3??Q?_e???3??? ?[?f????KN:????????V???o5????o?9 ?????8?,????}???Z(??Q????=???7?@n?t?='n??????J?9~??yOyw??P*??3l??m_R??I?Y?V??v?N?~?}?G??n??j???<_???.I?s? ? !?C? 4?@ 4??[?i??J??C??/2?c?e??.????'????q?3?C?>?#}>??6k??q????i?~???????m{X???y????zy????=?????}???t?? v}6s?]f?????)??F_???/???2?,]???f?]?,??????3??R??J??C?j????  ?#e?!6~??}?????#???=??^?`7?qX??_????h?'3m???K?3?????????1o&3??&???zy?J>%eSiZe????LI??k??g?g?L)K_hPP?,?S?????r?-wM^*??????d[:T???#?????oq??K?(h?PeJ???L?????????)??z??.????q?D?S????W??????/k\??7????}??h????Y*?l???F?0u??*7?????????}??n1??or/???-r?}??2????!??J%?????t}??c???!:?/???=??5???\?])?????k??u??P?%?J????+?ZN,M????0???\?????6,?]?Z}+{?%??~[PN?)?\???>?nR1??o"?:L???R???Y/+??w????8???K???2 \{=??uzS??&c6+\?,?S?u?2?????M4oiEj??O???'????z?2???2~???}d}??T{Sebi??d?X?\+??u=J??}??nT]????yQa?&3??&??????z??????2????q??+??L?I>????%eN??g5??????Fm?Pe?????;C???m?C?;???P??????w?J?????5???P&??T???2}????1??e??:?:???Y?????t?o? 8Wv??$c???,??????C??????g3L??C??m{I?j?A?z???2S>???.3?~????m????l??Y/??????.?a}??H?7???>???F???a???C???????-{??;Gp?N???y???C?tg?d?1?{?OC??}????>R?????W?!???b????U????????{O:f??M??????3U??O?X?I?????C????_??<;???? \f??????_~?m?????W;.?$??\_??Yz??[??S?^?~?J??C?I????Q?}??O? ????????PeJ??~&k]???s?K\?\??z???#\{.?:7?????d???x?#???>\?????*&U???!??$?Y[???????Lk??!????y?????_?????????J?6???????P????_??|??????I)?G???v???6??????T?c?2??*%??????T??w???S?35??????oi{r?D?M-????}?????u??K?k#?6?uQ??Y???UGI???%??_?;????9)]w???+]} ?!?&Q.??v?>WC}u9*?|#?K:?1O???c?Q??sLS?w??R??gcm~????+ha???????5??|???z???~s?-? ?????s ??a?)??>???\?YW?$?????]S9??R?9)]w??2??(????TZ?[????????????????j??/ ]?c\'?$??????Z?e??>????????q????!?Q?uL???.??????G 1???1???????+????qj?rm?w??????????k???6???{;??m,????i?gg??q?~???a?'WGj1????????? ?? ^?? v?;?\w:???}h?-?w76??6?x??d?????}???h\O)?q?z>???xt?????????????m???Z?G5???ti[????g?????Ij1????|??eoz?W??????????G??/yyGj^x-a???i??_0??~???^??????e???????6?????]}?YN???/2n????~?D9?t??)?????|??L?x?\G}?el?????m?????M?|?}?]??CL]??m??? .??????%5?+???????G?????Zv??=?z? RV?????b??YY?????tm??/??_??%ek?????hWJ-?y???B?W?uby2_??)9?Z??????6?K???d?c??????Xb????h|???~FS??!???1)[?v;??.???Gl?}\>m???c??=?????k???s?-?????.5q??a?|????62]??????%e??K???G?cc????3?$??5???S???M?L???hCx???????t?g????????s*????/?F???~????"Qf?W?1???~?`?~??>?J??m?]?)?)???%?????????tl=???}#??? ?2%J1?3\L?wjn??]??????g?v???????AZ?? ??????~??f?g???o3?>??????I??4~?K??l{V?\k?C?-?W????Z???w~b??3??s"}?????]?e??%u?X?6??l?~??{2R???????i?1$???`??c];???o+?????_???v,???3?o?????wTPV>7W????T????tJ??9>?< ????/?g?????????|?k??n???????C 1???k??????^iS??a???]???$??O???z????,?U?/?gg???5????[??)?c??6????\???5?+???W#?=??t[???!,??? A?5?5??????^?q??W??.yf???4.o??Y??[???/?v?.???v??2;{?;k?w2???-????:???2???7h??;?u?-+5?b???_?t ????;??91Q??^?f???????:hw*k??le??oz???m????}?Jb?q??"L????????.y%1%?O??N??????????0.????.l????????Ic??331?u???u?>?????/?kNv?? ?^?? 9?~|G????qS????r???????)1?k]???w??)?[Vj1?3Y???y???u?Mt?kk???/X? ?=v?*??S?l????????????j?W?????%y5}?????t??u ???}6K]{??J}?O??????l,?|/?k???`?C?????#F?????N~i?L?????$?&uTGY??Zo??L?r??3????Z??yC???i1?3}a?J?+?'?????KbJ?7?:?m?N?y?? *??*SR?zer??q??[??}^??????>?A??5a???I??{??:?"l?1^????e?E??=?c}?cMt??????8?|??CL??????????HR???mL?/?u?sXwj??S??#??a?C?S3????>?????qi?wC^?q?Wo???we???k???`?e^???=???????-???xy????A???????n????_????y?1ul?O?????JWE?;9R.???=?????u?I>us?????D 1???S????????~??????5??\{?p?8g??\~W??????n??b7??P?^??~????%?> ??~??k?7?X??im?????=N#????k?????8?6v??o?ot???W?+?m??^?w????x?k?E?C??????Z?w???{9???WF?????;.!?????>R?z????????<?wiP&5?o,?[?=??<?|???Hy[??^?VA???'??????2?KR^?????)?????d?d?H??O?C ?^??X(?>????~?M?2?&???????? V\?e?1]???gbk??TZO?l???f????5?A??gT??????,\?gG#??;-3???v???????,???plX{??3#?:6S???W??5??0??u???O???G?}+??X?D?\?)sqG=????2??G?k??9U??+???/h???a????????}??????zN???_?y??k??d=???[lI=9????#?um???????{i??f???;3?uo??-Swl??X???c?^???_??7?????fYk?X????????[??E??Z???|?z?w??5???e?~k>??~?L?>u?????????Q???v???<=?e?t????????4o????|&j?Y????D?????A?t??? {?w?|? ?7??????Z?#??#??];?????;?????XO?? ?c?d|?3???},??f?6???'??5]??<@[?f??ZX>????X??k??#?]?>??[?l{???/?;?e?)r}???????xM?u?\??kr?w*3?gv??????????O?/??+t??3e?i???UA??x/$??#6?g??ge?L"_??!?i????m?2r gI??^??v?}{&??V?m??^??o??+}O????k??{vi=)??+???p?????p??C?QP6????X9y?????"??u??????????]?e????\??^????K????!??Q? ?~????'??o??o??72e?iy?? ?????cH??? ??Z???)3???]{M?y?:?v????g??????????+2?F?y??.?O???e?????D?G?=i?zBr??6;q?????Y??a}???rv M?=?Zf??Wr ??????H????*?l???#?????????.??r\b/O??i??G?????{,l|?TJ?G???~?5?]?%t?voTQ??!o???^/??3,c????}d?h^l\???G??k???Y?}>??+_R&??'V??g^????`??(_R?C?{??Z?$???_???+/?W?L,]TQOn?m/?'QV?e????ej???F??m?wG?S?.-S3?Bn??^?\W?Pv?~o?????v????i?g??G?]ce????vs?o}I?_?????EZ????B??e?@????0F???}?p??Z/)2??l???"?v?4????????R?Y????5"? ?????k_?u4/ ?????o?????bI????:??5/J?k? B???Pc??V????s??{?k?-???Y??????????|?7]?(??t]H?b?L???(? U??=????????r????}\?^?{???J?)????k??????3??c _us??X:?`???'?b?!fm?1????S^????;P?>??;@??_??????x?E????????q??????!?b?Yb??s?(3??^Z? ^???;?p??yn??]??????}?h??[???i?????,??C 1?3?1?'.?Z??? p|&^?????w'k?????? ^???????? ??>??p??G 1?C??cnm??M??l?????xa???? ??y??&?-]l?{?cS????VuX? 3??+?????-?|OZ?p????8??= ?L??QL?????1p?R?oI?=?`??????? +O\?]Z_???q_y????tW[???H?g?-?S:?9??R??? S??K} >z??Gp?s???????y?????????X??`]?w?3??k c???'??g6????z????{?B?8??l??i}?-??T?1?ch9?????m/??3???,?Ri?7?a??????u ?3?7?n*??}??9???4N??????u??~w*?7?o>?1??\+??o????J???:???|???)???????}8??#O_??J??[yic??=?E|?????????8k?Z?& ?????YP??(??~???W??X??[?i???v??~???3????+?????{??~??C??? ?|4?:??q?ydZ??8?{?r?t*???)???????}???i}????????{K??=??wV?????/?Y??R7y?{??>?s?Yi?{????h?????L????????u?J?OSib??????[?W??Z]E W???7F??q??:|I???mo?????[?m????|??=??jc??=???]?K??k_?????>Y6??\K?[L?q-?&?=;????7?a?Q?[?Suv????M??|??r??2??????5?7na_?~ku???????N?vt?-????XK??7???{?c????L??????o?~??+o^??H?4}\??|?????8?O/??=????TnGwc^??}/?~W???1?t?1?r???1??1????????j-???????W??1?}=???v?!?i?????q.?yVc?-5???.????? ~$??m?????}??#????????4????????????rG{????_?S????????4QS??1?7?nIL??)????eg?i?cZ??P?^c^?x?q??? ???7l???4-??????N???{?u??h???o?F;??3????+??????^???#????L?ly?????2l??5W??G,?8?/??&?~|???-?+? ?}?[N?c&????`*?38?1?.?i}_??;??}cJqc????????>?3g?i?cZ??~,??k?3????a1??M6?W?/?????4-????Rq??HZ???\s??R??g?????]????M?? ?a??(??????????????L????i?7H??t7K?}????&?D:x?Y??~??-?7?n*?R^????????f?i?cZ??>+???\t"?}?p~,?????k??K?R]????_?hO?????wc??O?`?k?.?[L)n,??:?Z???S?_??i?cZ ??a?G'????<?K??/I??DK?uVZ?{???X?}????f????[?}?)??VL?Z??????????o??1???%????|??j???????????e??f?*M?.[?Uz?=wb??i???m???R?S??q?)???[RS?bz??2?{L?p???k?????????+??mJ?Z5?[??cL??K?#U?????v?1??*C?M?[a??4cu9??????2??????????KT???{7??v?1s???:????????)}???1?^?M?????[?? >?|?a??u???u?? ???????k?}?i??t??????9?????r?15?,[? ?J????`/???????????:???4?O?-???0?V?x??????G,MS???t-??????????T:?????3??m~?J??|?j??4???b???-?8??u???Bi?}Q?????yL???????????u?U3??*&?v\;[?o?? ?R}????Zz?bB?????G-?C?-???)???b?1-je???]???o???g-???[????x"???%??[g?g????wVX?$?T]??]??????iZ?P?????Q?Q?? ?g??K? xDw???Q???g?r_z?Q??bZ?Sk???T???je,??>?c????q????zhi?_+[????bK?o???Gi?Lc8?LW????????n!M?.[???^??2u????????s\k?e?I??\-????g??>?S?.{?????zUC=??n???zj???z??R?w?gS??p?2+??N?W"???????O?????>???[???}o?I??Z??]?E??hl-??1??l~????;???[????*???'/??w???9??P???x&?????v?????u??Z??}?????T????.V??9?}?x_?j#eKi????????>?}??ox??????????j??RYj???_m_?)?????b?>????>}??y???~O??Q{?pf??8?>6????Oc?kI7??y?w?q???????T?ji???=?8g??????aO ?J??o?x7?>{Pv ??|i_?p?w??5?????:?c???z???Z??x???y??-????X>??m??????????F? q????c???%u[?&F?1G?????y???????bk?q?????????s?t???~?\o??ky??K?z_!??i???s???2?5U?Z?.??J???????????u?????v??+/??S??|~???H>!???u?1nc???-m#F?????yy????S?7Ubk???r?n?????~^???+7?8??c???????8??';?w ?=??[????T?M2w?s???i?F#?? @?o??n?A??v/????}?>??>??NoCq"??x@%?^?????? ?v???G?g???g?#F???????????^??m??|J?~s????????l]????????S?~fa?mV^???????[??i??~~5?Hm7?6w???m??^\????{ w?b???m??? 'V6?=????T~S;???u???z?>?????N?~?M????2?#F????????~?????wyD;??e??}?t?7X???L{??C&?U???u u?????+???????ZyNZ?????R????????f??Q/W????C?|?J??????? ?EYL??? ?R>?46Vo?????:.??~?>??m???b8??R?R^??? ???4??????b???uG????r?s???u?3\??n}m????+?u????=??>?N?????;`/? ???S?????%????????i?4s?K???????K????X???_x??????????l?4?@3???+??N?j?x???-Om])fn??_s??q???[?5???]X??>????]?{??}??xAyZ?5'????o?m?_?[??????~=[??m???q???/[?6??x_???? ????????.?6?1O???????7nHS?i}-m??;??1?}?w????????yx??????K?????D??_P??1?(??t????Y?=?_????y|a??cK?-+?7???7XP??r???DZ??yne????_?-C???#????????h?|??u9????0m)?_?? ???,-?--?lr?y?|b2#?}?w?f?????{XW??y?/?:???{w???????Tw??]?,??f????x????????b???I?|?^?K?x?ci???L??Z?ya??kN>?G??R?o??????[??n?'&?$????o???g7??X9?8??d_?v(???>Z??0?a????l???%mi{??[????x?T{???????4s??7? ??T??????q??????7???g?????({?Y????t?-??^???},m??i???%??,yY??m[???-mo?k??O?{R?|??s?U?}????_*?????'W???z.?;???|]K=?2?m?kIyj??X{?a<+x?`?G????[?~????8???S???T?????/?????? ?t????yE???}???3??h'?o?/I??n9???)??]???zj?W??}m?.????????i?|????+O,?????m??u??????_?.??jm???/?:U'???~??2 ?????f??w*?97W?]~n:u?????i?n ??? y???9elI??N?Q?}????????23??e??????y?(? ???<2X{?1???w?w?X??p~:??-????/?ss? _?N??Ps??0?{s??87??4m=?'e?~?K??wt?G?RO-??H??387??]?k?s?????q??r??k?v????>m4??Zm???????m?k???P??qG???+?c??j??9C??|?G?????>??c?????T\K?????????#??4M?????%?3b?????k?\??;?W)???yz????????o??Y?????????0c?h????w??(??y??R??o?'??D???7|S?)?[?9?????h?? iJ??{I?\?{??o???++i??q??Vy??E???L?k??V???????i?^?\j?S?????o?? 1?s??o??????? ??v ??9???.??????r??S?!?^???8/n? ?????9?b?D{?~ ?h?P?WW?o??oo???|:????6?o??b???mF??????U???4??aS*?m ??????_???????P'????y???p?n[>VP?????J????u1?2q??J????\???v??????OK??~???mq^?E%m??{? ???q??z????8?? ???{???<~???x?6?1??????t??e(??o?b????????U?iywe_y=????]9?7D???|????[??????????? ?T??i=b??????:8,???.?{?5?u?1'?????????????W??????m?k??????#f?1sE?@????!??]o-??~????O|?J9k?s?)? *??;;??%ZR'???]???y?????K????|G??xiy???V+????????7?#F?czO??=)?O?????E??~{???+????????_%???;J?/z??r??z]?.?+???????T????Z??? G???9???????&1b???aL?Fbs?g?U?q}??.,???/???????????7uL%1N?% ??7??"?q?^?7?Z????d?l,G??8????(??a?S??S??l_??>?5^w??XP??2??$F?1;??=w$6m??m??????i?x??|????????>?v?????1n:???iq?^??o/? ?pa???m?up??Z?dv?c???.??2'S?\???????'?|Q?-~????????9?N:?wG/?B?PZ?op?n??2?c??;?7???????5?1&1b???aLo???+?5X???=??v?+]w?<4??x??^Q*Og??;???????}+??}?x??? ?zWC?J???b ???l??t0????? ?S*??T??_!???????[>?$F?1;????????t??"??{z%6????(K??Kt?j????6?Y??_/?????M???m?M?z???,??u]/?3??+7?l?lZ_?F?+??&?????p????11?`>??P?*?9? ???^??????)?????8?1?d??:vl??&?#F?cz?w?k?4??+?:^?P???,?w??wF??w?5?s????????z??g?|E??}?[?W?????]?.3???u?r?O????? ???E?uy??nb?'??H?L}VK??y+7?????a??1????Zg-?>n?0??~?1b??0?????t???;??0X?>n?P?R?Re>D_ *?v??t??????????^?N???u?????????????W???^??#?@?? ?nh+???- tC[*??????mk???C7???nh[=_C[=??4*???`??v????D??Ii??WJ???G??"??g??A&?5 Y?1???JJ]\?Q???K??iAq?b?(@?(?`?R??_?e?;??\????Q?[?????+? pUB??j??#K??t??)???tL=}G??????????[>?V"+?? n~??T/l?????*X37???KtU?B???3????t]j?? ??5 ??6?[?)?[?[?$???????M??Q??"s????&s?Q=?E????6?s?4g?s ??6? Gu?? ??V???????m?S;???s??Q?"u??9?&q?Q3?E????Vk??z?;??56u?vu?PK ?j???????f???r ???????3?6r?s4}? ????dt???nI8??r?m???????r??:?5?{???u?j?? ??O??1Q????UD?#T?.*??????B0???8d????^???uo???????r?LI.h#???9??i??8?9?d?U????????Iow{????ZK???m?????b??W4???1??5W?m:?x?? ?*N]D??_??o"6??]??^PK O'[???7????d?+=?{??l?jmC?j+U??????k?r/??L?7I???EMX?<>??f?>S?????]T??{J??\S?*X??F\e1{M6$ ??E?????a??7??JS????c!8?3:?a? ??CM?????1?J?y0??j??7 ??(?1??rR?0???E??Al??\????????? 5?h?~?$?.[?????RhvP?G????9?K?g?"??Tm??x"??? !??L ????d-??6?&????K??8P3Z at 8 ?s?8 `?s?Sq?Qf?{{?V:a&?????Z???X?????c\%?g?8????`?,??1?(7??v??????????R&w)???1?*???h?B?C*? M??V*?\??K?????&??`?E??#?0?4)????1u??9??f?> j?WE5F>@X< l^??J?T%- kmA?m??]@sgv????????7?o????kF,)A?>/??????S?.????o?Nv?Q??h???? ?????'???K?n?FFS?h--?i+?X??:??'??y??J???LE??ce?}]??wn*????? +?N?????5?&???Hu?X?:?5?g??7t????{2????Z??@??Dw???h??i?7???????*F???D???7??t^]??E? ?~??k?????}?&3QA? Z??Z????1???D?))?M??v????/???km??~????(????{%?bw??????u???R/m?yQ ???]?.??????z7??8P????]k?}??4? ??/???t???????j??=???? ???@c?3??0????????PK ?X??a*QZ?Y?m ??1p???O???0??W,OR?0?V6 A?Wvo? ???z ??h???o[?^???t?G???? PK v.T2\}????/?0???????g?%O???t\e?????r???{?RU?p?=??x?(4???of1t?Gt4?\??k??G??k????? ~>?7??[n|xb????nVA???o? N??U?<n???M^?V??3*??x??????B?w?+?|G????h?4xo('????????%??? } ???7x????yU X$??q?;???r?=?wj%?'?@??O?????>???S???wR??$ ???#b???2c>??pM?~??u??h?yD??????g???~???5???x?H???l?? ????????/?C?d???hoh???Es. a?R?u3D????[L a?????tV??uo?IO???e?@/M?J??r?? ?2??????R,2?E???U?]X7????.??F?: ??6I??7?2? +r?????;?}?s-?A?w*~?-?CZ???%oF_X'z?????+?b:nA???I??#B?*???Z??;????,mq???v???G?N??w????lyybZ?????T????ah?^????-?????E?????4{L?V@?????????Ao4??????C???]??3l????!??????>??{??VJ?*???????a?????I|:???M?????O????bs??PK a?cIANb<(? ?cW???)?S??? ??{j?(i?%?8??=?b????7??X?????????Y|`+???hj?v,?????@wT?;X?????-??E?Uv?\8??.??'?h? L?)A?(?<Y?*?9???l????h?U??g\?Iv??d?F????d????G??t??N??#Y?#?????6????dY?+Nf=? ??m?2?%?????????;G?@W??9??"??)H9??+7\??J?? ??V?a???f?X+c?T\??X?????acg?JPS9???^Q??4?0m?s????1??+$??5-L????v?-??El??`;" ?D??)?tL?S+@-??T?'????i!W?FX???l;? :Ea???y?4!????+???????r?j2?\??D?9???x?4xm?;??)y????????5#???(??A?&88t?????2|??ee??????W?XH??r d?$c?|????~6+t?%:??*?nU??k^?(?Tr?g?@??b?Y????\??2?C??'(??`J???cq??ZFdY???? yAm?P?DO???>| ??\oB??7.h????[??}q@<7/????rl5?eO????6????? ????y.??EW?fp???????L?????1j/7F?5?4?,??????? \_??????d8?21?x?S??\?x?GHv? ???8C??7(?o??f?~??,??d?i-??P??x???L?dQ4??1Vb:??K??)^b}?? ?? ?%~?????o!? KC&G ????S??`xe??yr?%&??\jn????p?R?GJ?????y)H?HEld?AL?, Y?B?U?? ?U???b(?RB>(??_T7?q????e????F!z?>??8?L?WX\??.?b??HD???^?????!`????y;q?K????L!=S ?yt?d(??]?"??$:???e_???tyP~? ?????RF?[Qm??Q????????q??c???????????Rh ?"K????=??}?nc??0 ?} ?z??D?E???F?jl ?? ??v6?(??0 Gv$??QE????????????F??#C??>2M,?F??%?J?k,?r??m???????Z?K?g?J?r?n?q??L?t?5??VX?,\?7?????`??????????k? =2v??f?1?VZ?b????;?(;?_b ??h??oL?>????|EF.V???y?tL?{,MX???????R?? ]=? ????~yQ?L G?????r??W\?- ?)+?#A????{??F?[????b ?c=?1[??????K6?a?^'bsk??????^?;?_?,o?PK 5,? $ ??;???|??????XDx=??"??0N????&~"c????7???p???_?i\D??eY??????N?7_???" ???%?,?~?^? H???0pMpG&?D&p)9?>%x ??@"???H?<]??w?????F?N??{???S?????6E?j?? b?kK?8?QE?& ?\ ?]?#r/???W???c??Y?????Z[?Ak???&?' 5??x??????????tP?^?&?:???>JQy?????pv ???`?V????O?o-?? R}??Q|t??Jq?7?a??*?& O?m?{ f??????XV? [9?????*?L???(EJKS?????? ?#???? ?M?????????v????8*k?F?D?H?K??{???[n????[Z?1???????^????????"?X?'=?t??m}??uQ?[?>??^???.????`??,zlo??zK??l?????#????_<y???~?Jr?? ?;t?`?e??O]? ???%n??`x? ????X???PC??Fo?_k|H??W???+1  Px?? Z???{?`????????????Z?A? wO?C???z?A??{(? F?u???`V=?]?Ah?2?|?????j??0???Jpj?UM?????;????? ?,?x|qt?+??????E???@?m?Z? ???Y ???3????^? m????x????WO?M#?-???a???:????/y?4M?$?????????ZD0?H^?r!????\?cw2???7?v???'*??&??? ??_^?0#??d????N?k????W???:?PK ???:#?=?s?1??,???X?`?.? ??a? $?_?D??????? Author: ianweller Update of /cvs/pkgs/rpms/tremfusion/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20707/F-11 Modified Files: .cvsignore sources Added Files: import.log tremfusion-lakitu7-qvm-remove-lcc.patch tremfusion.spec z-tremfusion-menu-0.99r3.pk3 Log Message: import tremfusion 0.99-4.r3 --- NEW FILE import.log --- tremfusion-0_99-4_r3_fc11:F-11:tremfusion-0.99-4.r3.fc11.src.rpm:1246858300 tremfusion-lakitu7-qvm-remove-lcc.patch: --- NEW FILE tremfusion-lakitu7-qvm-remove-lcc.patch --- diff -up trunk/Makefile.kittens trunk/Makefile --- trunk/Makefile.kittens 2009-07-04 04:19:17.255508853 -0500 +++ trunk/Makefile 2009-07-04 04:19:23.797509418 -0500 @@ -808,7 +808,7 @@ endif # Create the build directories and tools, print out # an informational message, then start building -targets: makedirs tools +targets: makedirs @echo "" @echo "Building Tremulous in $(B):" @echo " CC: $(CC)" --- NEW FILE tremfusion.spec --- # Source downloads are available from the hgweb instance. Whee! %global hgchangeset 1421 %global hghash 4b5fc919fd59 # Used for pre/postrelease: #%global date 20090704 #%global alphatag %{date}hg%{hgchangeset} %global lakitu7_rev 174 %global qvmbuildflags BUILD_SERVER=0 BUILD_CLIENT=0 BUILD_GAME_QVM=0 BUILD_GAME_SO=1 CFLAGS+="-ggdb3" %global tfbuildflags BUILD_GAME_QVM=0 BUILD_GAME_SO=0 USE_CURL_DLOPEN=0 USE_OPENAL_DLOPEN=0 USE_INTERNAL_ZLIB=0 USE_LOCAL_HEADERS=0 USE_VOIP=0 CFLAGS+="-ggdb3" Name: tremfusion Version: 0.99 Release: 4.r3%{?dist} Summary: Enhanced modification of the free software first person shooter Tremulous Group: Amusements/Games License: GPLv2+ URL: http://www.tremfusion.net/ # How to generate Source0: # wget http://www.tremfusion.net/hg/tremfusion/archive/%{hghash}.tar.bz2 # tar xjf %{hghash}.tar.bz2 # rm -rf tremfusion-%{hghash}/src/tools/lcc # the license of lcc is nonfree # tar cj tremfusion-%{hghash} > tremfusion-%{hghash}-nolcc.tar.bz2 Source0: tremfusion-%{hghash}-nolcc.tar.bz2 Source1: http://www.tremfusion.net/downloads/z-tremfusion-menu-0.99r3.pk3 # How to generate Source2: # svn -r %{lakitu7_rev} export svn://source.mercenariesguild.net/lakitu7-qvm/trunk/ # rm -rf trunk/src/tools/lcc # the license of lcc is nonfree # tar cj trunk > lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Source2: lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Patch0: tremfusion-lakitu7-qvm-remove-lcc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcurl-devel ncurses-devel freetype-devel SDL-devel openal-devel libvorbis-devel desktop-file-utils zlib-devel Requires: %{name}-common = %{version}-%{release} Requires: opengl-games-utils Requires(post): desktop-file-utils Requires(postun): desktop-file-utils %description TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package allows you to play on Tremulous servers. %package tty Summary: Non-graphical client for TremFusion Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description tty TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains a non-graphical client which opens only an ncurses console. %package common Summary: Common files for TremFusion Group: Amusements/Games License: CC-BY-SA and GPLv2+ Requires: tremulous-data %description common TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains files required by both TremFusion clients and servers. %package server Summary: The TremFusion dedicated server Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description server TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains the TremFusion dedicated server. %prep %setup -q -c -b 2 cd trunk %patch0 -p1 patch -p1 -i ../tremfusion-%{hghash}/misc/lakitu7-qvm-svdemo.patch cd ../tremfusion-%{hghash} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 sed -ie "s/Exec=tremfusion --quiet/Exec=tremfusion-wrapper --quiet/" misc/%{name}.desktop %build cd trunk make %{?_smp_mflags} %{qvmbuildflags} cd ../tremfusion-%{hghash} # Usable VERSION content: "%{version}%{?dist}-%{release}" or "%{version}_R%{hgchangeset}%{?dist}-%{release}" (for pre/postrelease stuff) make %{?_smp_mflags} %{tfbuildflags} VERSION="%{version}%{?dist}-%{release}" %install rm -rf %{buildroot} cd tremfusion-%{hghash} make install %{tfbuildflags} BUILDROOT=%{buildroot} INSTALL_PREFIX=%{_prefix} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 ln -s ./opengl-game-wrapper.sh %{buildroot}%{_bindir}/%{name}-wrapper %{__mkdir} -p %{buildroot}%{_datadir}/%{name}/tremfusion/base %{__install} -pm 644 %{SOURCE1} %{buildroot}%{_datadir}/%{name}/%{name}/ %{__mkdir} -p %{buildroot}%{_datadir}/pixmaps %{__install} -pm 644 misc/tremfusion.png %{buildroot}%{_datadir}/pixmaps/ desktop-file-install --dir=%{buildroot}%{_datadir}/applications misc/%{name}.desktop cd ../trunk %{__install} -pm 755 build/release-linux-*/base/game*.so %{buildroot}%{_libdir}/%{name}/ ln -s ../../../../../%{_libdir}/%{name}/$(basename build/release-linux-*/base/game*.so) %{buildroot}%{_datadir}/%{name}/tremfusion/base/ %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %postun touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name} %{_bindir}/%{name}-wrapper %{_libdir}/%{name}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png %files tty %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}-tty %{_libdir}/%{name}/%{name}-tty %files common %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/CC tremfusion-%{hghash}/README %dir %{_libdir}/%{name} %dir %{_datadir}/%{name} %{_libdir}/%{name}/game*.so %{_datadir}/%{name}/%{name} %files server %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}ded %{_libdir}/%{name}/%{name}ded %changelog * Sun Jul 5 2009 Ian Weller 0.99-4.r3 - Add OpenGL wrapper - Upstream changed 0.99r3 tag again (hg:1421) - Switch VERSION buildflag to the release version and add release macro to it * Sun Jun 5 2009 Ian Weller 0.99-3.r3 - Upstream changed 0.99r3 tag * Sat Jun 4 2009 Ian Weller 0.99-2.r3 - Use system version of zlib - Disable VoIP at upstream's request since it's broken * Sat Jun 4 2009 Ian Weller 0.99-1.r3 - Initial package build --- NEW FILE z-tremfusion-menu-0.99r3.pk3 --- PK ??w? ?H/?w=?????}?=??????u???Y????o?M?????o*??Z??F?g????t?"?????{?]? ??j???\?=???j?|?F??r?l?t?4G??;????c??????Y?????6X?*?M??W??+f@ ?E> ???kR???? A???: j' ?%??$???M???3????N?????"?_#?^????Ny=_?j=am=?????[%???*???x?WR??6?]??????O?tjb:?z????czp%????W???V???d??f?%??D??Ty%?  ?RFE9T?\&????\!?{2?W??????????????*?/?????P \???][X?_ZYQ?^Z?PU?V?Z^S????????????B??z????????????s??g7??_f?V?7???s???????}??OG?:%f????????.*??c??f??a?`=z^?Z???B?'m?????>?((?_?=j????-????9U??Kg??&M{-?]\{N???ZM???f??w???Y5r?:???XK????Xz?|!?qc??g?R9ooS ?osm??z?0??t6"???? ??????{???y??U9?L?B!?J?????.?I?FO??d????????cV??????#???0?g?????????G??4}? ???9????B?aJp?? ??????????c?X?n?`?2~Z]?Y?k????@?2?T???4??'??B?b??Zl??????!o?\'&K? C??KtbR??Z??\??)??u|'???[Y?iv ???j??2j?P???!???K-e?|&.???8H?@?Y???\?8?;xL?>5??^?;f?P8???.p%L?jT???d?h?meh???O?????8Z????????+?w?k??B [???t??UfJGfz#???,C?EBS?"????"??? ?X?_?1????????3?O%?T~T?N?? ????[ir??-??c????96Yc?????"???k????9?$@??Lm???????`?X???U??????|u????@aj???? X?SY????y06z????d????????????rn??hnp?`v?"??"g7k??#??c;??G?t?????sH????u{?????L?????@??????]?n???E??@A8?V E??[K|??-??n?~?????????????J??-d???B?Sk??>?l?A?????]??"?????d??==???Ao}? y?? ??&??C??[3??za??G??EE???m?{?vn?>g}??? Z},?W? ?E?"OGP ??n?????'E!?D .b4$7?????XV,???>? m??%???-z?D]?fnI??(?=(5??JsrGE:??2U???V{?N??7odk/?pd J??m?Vf??y???3?9??L?>?i@??^^NXt ???a?9??a??? #?A?r???????>?VIl?5B|????kn????v??????/??N?C}?J????)??o?2V_?????8??o?????=??0J?'[E?=,?u?? ??f? 9?1?/#?F=?m??U'Ye??4?????????J??g!?} m7( ??i????0??????^????Cu?????????Og9 V????{????$???Y?????dn??/d%"???????)k:??z???? ?? 7?????Xs?xq??9w[?Sd ?9?d???^??y???LA? ]jn??|> B2????19IDAZ.ox$???C??????????}C??Xz??????^???*??j)?x s???>#?1??y5??? ?D?]??????????"?O?>0w???#?^?r???b?????j$C?x8??XS??Z(?d"C????Y???X??r??1Ih?5>??1'??????/e???kv?0W\O?????[??"n???_N?9#?s'G?M+????G5e]?V?????E_?9$?P????GU7??\?J#[?"$??>?+$z??G?TmM?"]5Eh ? ??\?S3 ?X?L?Hk??????#c?i]'?? %ne~D`? ?9???????& ??X??{? ??5?S?wn??!1??q?}???????????/>?Z??U???j2??!??)?Ni}????n??4????~?%?g??t?\??^?#V????O ??I*?C??Db?M?????Z?f "?B LO?H???CF??!?b??!m?g?????5??Q(T?ID?Rms?h?#???GVn??g??f:?>???b?sV??TU?? ??(???q?k??a???p?~?e9??>n??|U????????_??? ?wY??J???Y!?r|???PF4?^?D??u?????%??`hN?t?o??I?/=?????l`l????OX.?0?q?:???X?????TP??{?~?[Di>?R?5??Xv?Q??>?5`L?^u??;???3z????& HO0???Q?A??????????@?`?Z???????T|x??6?}g??d?e:(??5???{??Z???@?,??]i~ B??+8b???a???*?6?N?? L?]H?????w[M?&w?]r???)??5?,??????&E??h?????MfN?&?9?/\??#9??A-g^?/??dW???r??#?@?9??Yf??????gsU];?zK?X ??N?o???o?????h/?o?^'??N?ZL?$??????????Y?Z??????1??\?????q$?u`r"?H?w?426{?N>?<??]?L??^?WL??M??%?|{???z+V????Y=Si;???|?Fo?v??? ???a(??????h???6????_?????pu??????0H??1?#???g D? ?Cd/-????dy??????????m?????\??D????? ?W? ?7[O?=???w??_?> T??2?0??,"?oos??N????J?l??@4? ????K??2%?H?:N91??Xh??P????!?]?*>??X5?=E??????&?X??IP?8????B;?z???? ?4?? >?s?p?lH+?m?NY?Fp.??aN??\? ????nH?sU? !?8?y-3?e?36???mv??q?u??l?Q???K?`j???^?????J"2+?????TQ??m}H???:???D{B??????:~^??? ?????!?n?z?6??$w?1??? N??????? ??d??@w?;3??' Cd? ?o?H?? ??+n???#?r*h?uH??b??El?3??????6?????h8 ?%?8??N?? ?0? ?e ? ?/???Dh#?+????!??Co%?/?jl??i??+?- L?????`?????i?c?9???KKC??????g??? l??7a???????;??????u??!???chd"J?W?E9?(hp1?H??e(?r??9?i???Af#Z?t??d ??y???fs ??EF????????%???p??{??v?`@-.???M???3w?^????I D??S?? k??? )??`??280?`?? ]??'\*?^? ?(????6K????dc????Agev$kF??}?c?? a`???????????I &??J???k???J?g?g???bl\????Qg?PI[?[K???b1??g??????$5#?t?xL?d?\???06???d??MJ?Z????p???|?2?}??W????{???Lk????B?^?9?M??Tx????u???9~_?-?>?g???)????"E_?1???? ????????t????zoO?n???8\??DHV??q?,+X???q????6^???-?/??1??????????G??r??K?I?d5???<???????????????Y??5?'??2PHG}Uj?]^$?7????o?Z8'U???Fx ?\ ]+cc+]?) ???}?L?????w????3?{????)?M???Z?S? z1??b?Q?? 5????x?`?RN}?>?xs?t??*??\77?O??,j?IL|Y???????????K4?~)??????*x?J?@??#???Fm???V?????~?~??v?y?"??????t4S?d?@?&?/>???Lzq-?zI+O???{?|??$??`?Qo?????0'Ll????a????/?rL,k5? >??o % ??:!\?e????*?????????????? N?"???V???T??E?J$???1hV????> ??? k? Iru?Us?,?J????S??S???~???yf??|sEi?*?7+?? ?z1????Te|?-/?$^??HLw??????'?????'X?NA?A<Lbb`???"v?m]??=?K?Y 9?4d$ ?R?nD??!??? ?{??E:Ez% ?r??-f????=2?B??r??=??.???????w?>J? ???(???\?5???h??/???????}?]=G?mL?5?$??7??]1???.*ppbU\EE??a?V???*+~j?z-0.8???f??#6af????+???j"j;??&?MG??3???<3>?;r?e?????j;g?u?U?^zK(70^m?N?1?S?E??A??]\ (???[???h??=?&?z?Z????LE???PC@?!??#? p?????? ?io5?szm?8rM???o????4;??J?H8?5O?? ?WF??t{g?:?1?????e?"l??)???V[x??=b?uWZg\{%???:???Q???/d?????~GL?????$????v???f?>?Mm?5hsnW???I7_??_@??$? /a'?3?y ?I? ??????&H?K??gG?@n???:? '?lh?6D?OW??CbF?C"?s?$?>k?g3??M?*Q.?0?H?Ks??V?T? ??X '?r+?):8=???nx?? W?? ????R\??????f+Y,?e`3t?Z??(?J at o???>?J$??????t??b??,??????Ca{??MY?w???v?Wa#W?[? ??lAC??!???6?dw j?d?????xs?W*7Q?? ???:????Q???u?@*??????n??xC?H?9?S ??UDWs?h@?????"D?/?|w?????@j?B?? ?J?a???V??g?T????2??=y????Q?!P????OB???/??s???C?3????U?m????,(?^ mh)?)k??hP/?go???a??W?(?|??? v????#???????y"7??"O?w]D??Y??- \???n??t ? k????!?????[??',?????&???/?v??)?????.e?????PA?*???BC}%??/??u?_?????W??=?s TF????@5H,???7?? ?:???*p???n??W@?'q???? Jz?????3?????v{&??j=????f???TV????/? Um?>I???"?Tp?=Fe>??o?aN%gn"??m?A????/?iD[Hvn??????K]????Ls?-???>??_??U???;~????????j?D?N ???????]/?J?Wz ???yZ?+$?N??m??W????P?V???{,??ON?P???qq???*?:?g+v?#`??`????2D??F?W????Kf?G_t?????????????)?? ???K???tQ7?7L?z??????:??*s ?(fH?FP~??x???Do?U9'????]????t???d?uZ???;g,k?)???????M?03??K?v?e???n???Js x8|?bH??YF%??sU?P j ????U??Q?7{?l?k??????Iqup??-????Y(?Z?@??MM?nh??2?$@??Qk??6?6Y?N??U??n?C???ED?K???NP!?????!$??KZz?d?e?l?? ???%????ze?U???A !?&????Nu??W??~?l?%L\!?g??]zE???=??????????{?:?@C?N?&M???p????G???XA?,?-w_??#G?? _?%???0???????G??IIA?!?d?|w~??aGx?g??tk;????*+,#?A???????????0????? d?P32f?X6?_?xj?\?????1?H? L#kd??????h?\~Z?????[8?B?????g?J???/8???Ywff?FAf?gC?$????]?O??9%????z????? ??+\g??C??A???Vm??f3 ??q?[??9I?v6???>t??G??~?*#???3{]?'(? 5?6?8??S?$??&?m?Mv?r:??{??3?q?P7??i?O{P?UG?8?;QK?C??x?u??x\?+?_ ????c, 2?Va{$^?????_?o?H??Y%???????G"w???? /?v??P?nS?C"??`;????W???I?$:V??????*C ?1z6??=}??^?? ??????g?L????H????6C??B???=???t?Wx?????u?$D??q??I[4??$?TK#???vHF?????7???~?6%?? p?U8 ??????Jg???c?k]?????AD ?F????????8?????@?A???o?x{D?r?KH??Kq????< ?r??pB????W?|??"Qp3??@??|}?????h?X??#wb?vy??6??{}L?^7h;J???.?a}??n??j???=?s?>?o???????A??X|?]??cw????B??? 0?4 ?rC???????X)g??? t1????I?????S-Q /fz0????-?????3?????DO?'[D????Sl?? ?z@???????m?E?3?'????/?z???5??????fD! T;??? ????!@????}????? ????r?3[msmEUCuCmiYeYQq??{????????Dm2n~??Z??? m??X+ ?)IV????*Nh?;??Bj???? ??????+??????=???(???)SB???b?P???y?p?Z?C($? Lr??|? &f??g????]?hA????r???f????????0?1?? ?;?v?? ?jC?3????O???e??_uRD-?l?\???~?,?F??Y?? c%}??9?w????G???3X?AsNy?/z^(????dr$??n???4????????i???%?????I???y?m????H???p??0?? /??ac$|sc?#???g''N?fx>Y???}?T/I? ?_?> ??1?5????L/t??f??STf??o'|????Y??z??)Qv? %?? V??H#??h?9???4?U~???3 ???M???? ???M-?K??{????55???+?????X(????9KP?u????c?z2? .???????)3??b?????A?y?4%?A?:j??1??4??Zb?C%?[?)????i?????(O ?Bw?ltZ ?????5?$???#?N?l???1x????????3?p?? ???%x?,??? ??????u???\U:????????yx? U?3???h????6n??F??G0?|@7???G x?O6?6s?4?$??/???m?y?????dg=ho?4????,??x?? ?N?> ??_?P?C?wh???o?0 $Bn??Q???^QXJ??Q????F?$*????Z-\?lmw??^?Z?#7?9???t??*?B??????W??z???:??ox/?r???7?????gkw?%???T???6b???????qQ??? ???n3l?z??4?$?w?'????w V??[i?na???? 3??'"'?D,?!??E|???~cg7 ^?,I?P???G??9o??x?>o??_?;?3??J?? ?_2?????W-}=?h_?9 ??y?)"P? T??o??b?????\r?P)?_C? ???(?B??F;?%?c??#?f?Vk?????????0?~(?????????>)?c????Ly?0???v?'g?9?c}???\Db?y?{?? fllL??g??~? 4??N?B??br?2?~/%????#S#????'~???Su D???????TI????:,X??????e?w??????Y - ??d???P?zB?Qs}?:@F{ ??37?r???-?;????(wn2V?]????G?r???'E?i(??????\SP ?t??c???n??L?????f???? ?)A?L,?[?q^ y?9?k> ??~?|?k???u?h????LnO?n? ?N??"Of&?KH?#Z?mmP?p-B,??!?????z?|?2??D???X?@????]?"R?c"???f ?Im at F?????c???E~;???2?/ ????????? ?1+?-i?? ob *o>p?H ?????Q?$?Pp|gqk??z?k@??????VS?????m? )?????A?"#XMKU?Z????pV?8h?j???+Tt6???&?}?tC??L?)??????p?????U?e?v[f??$wC????1$????????c??X4]???????/??6q6?h0xIX???????#?3??-?????|?Iu?????-??-???????i???>q???U???'yzw??I??????????c????1  ????????????97?ul???0???q?%????oh?1???g??,#>d?a AU?*q???|?`?u?v????~0??x???Q%?Z?# ????<>.?OC?a'??uniVQ?]?X?n3?&Y ?hQ????g+?\4Y?m???$???c??OA ?k~????t?=????0)???Oyx|?z??r8 0?8#?;??#????s???? ???Q???4C[?>~r???? ???UGzl?W'???????M ?????"mI???O?d%Lp?\????????s??ci9zh??????m?F??n?c?/?g?_?.??5`dB????T?T?(?????#?k?A?? u????1?-e%???t?? ?FB????DO??a???N?)???k;Ji??0?F2v????A?????tW????&????'????_8.??xIh?+?????? YY V|??q&???Hh? (_h??I???? vO?? 6?NI??????9(Ur???5???]?ZW??h?D??????ov??????? ?+\?X2??|???W???q?lj??L??????f?|=;??=?_df???]?sO??:+?V{3???????5????,&_??;???^?\?????D???;=;?.?_P?Tj=RSU?w?6?t??9??~rV??h ?????L ???E??=???????&"LJ???(+?|?gD?*?/.???w?!?}?? ?0TbT =-?A?v??9??D?}?=_hg?7?Xi?i_H????2]X??+?3K7??[?&?%????:?o\??G(???w?R????L???^?R??H????,?"Hs??b??E?(???L?????^ft?^?#??%?HM%?*??Y??5a??WB?^?|???p'????? ?^Ms???I??G?????:Cp=?4??!?????s??????nO??????8?Z]E9 ?X^Y?????;7*??? .????????? ???? ?N???a???????8????t?v9?Z?Z? /?? 4?%???a r ??3V?gc????C?M&???!2S`q??E?*?J? ? >?gJ{??x?v???l?M0???C=?????B???h? $????<??p\???????*7W?n~???oN[?? X??j?N?0]H`?C??vh???&=?kL?l?S{? 2?????S????=????%??}??????]?q??=????EU?JzGf*?+?>hj?xa???#????#XB?|mL????????&????Q(??1g???b??&e`????,??? ?g???D?w??????O7c??lk????&?8^z??}B???????O??-r????goH,?? ?/????? ????2? !??]??z??*????H?6Q?{?{Ow? ?w?"@?k? "?.?\???.]??Ve??=^;?>?r{i?A??2j??,?????}???8??????U}???(??J>S? F??B~??????X????7??I???]h?????;4??6P?????? ???"oN?k???????_??7cM????$?rOD????? ar??w?/?S&*|_?!:??t???'I>? ??%7H?????????|? ?+?'????????R?\??f?? ??1$??[?j[?/??K#???F??? ??J??*?????3???rf??]G??x)d? ~??N??a?H?G2?|???UNs:???????u??+|??`???s?{????J68]/? V??K+???4?8A????????????xz.??-^?a??????0?&??????s~"??oy?o4?~?d!c??9:XM?=P????y???q?X?wK?k R?>em?+D^Z??u?3?xj[?>w???????<^?x?pn?M??V 6=??*??%?~????]EZ?Ot?#??Y?\I??Q?#Qg[yn?$m?O???:??`N+ W??????8??????h?5?PP????v?????_{lj?h??lW? ,??|?~^1?? u?^$?gzL??]?{???q??k??M????%??A??`n1????,?M??9???????+F?Pf?-?O????I_?~?????F?nFPp|?>wkJ????P=pSgm????;m?k??m2???? ?j????u Rf??6?k 6~??? ??Mp?w?j!???DSZ?????? ???^qg??N????g|UE?16??*cF?/???a???w?(x u?" ?&?y?|?=?????f?Y?}(/???l??Psa?z ?l?c?9???|???"?r?G'?i??z#??G??? ?g??)? 0??JdNV>p???????7?Rx?G??9?????;(??I#?j?????\?K? -?@?2 z??l??k?????????????????A?[?? ???? ?h?`???!I?J?E~???\,?)d????d?:???????m?^x????IY?0???o?D????@?y????+????_Z64)d!?pQl?OyJ[?(?>?$JE@?TI???f>zS?;h?6??> {1??-?Y N?_???/`q?? oC4?r??KG4J9???_z'?Z????S?1??Ou?? ,?=???1`]?P?-?R??i,c'7??????N?????m}+@????m??y?])?????G?????6??h?'Oo??5?<?: p8#Q?:??????Vy???k~???&x?_?e??b?[@?1??1?wV=:?? ??m???\?n???CI#&T?????I???mm?^Y?O??z?q??]R??qP?????\Q??????1Y??8@?\b?.??#???WA?????B;*??9K???????8?8???? u? ??)???? ??\Dd???f??'R???_???u>?o?&? d??e??*?Y{? ,?R@k???O?? ?s????_#c? ?=Yv??A@?? ?:f????)to???? iB???{?m??:^ ?G?????~?.? ???S??U? zyZ%!??&?A?To`??? ? s????8??a?@?I????B??2??W??=^???2?e3??G???????PR?????M%h??w?? ?8?l???w?hz?$?[????????p?q1}g???)H??C?????T:.???????|?b^I??^?2n?h?p???61?l?? A?dyT???OBA??????0??? ?U????&?98?m?h}TH?`??_???[\??^???@?????[j>z^nc'*?p';?&;???????K????w{Tv]???J?H?>?;????t??f? ??????^?P???'???????fa 3:]???????'e?B????3 `_ylQ?[?;??R?!-?]jy>?dG?0??t$?W?]??4?-??L ~?1??dMj?????edU?`k?7sH?{??6?????\^e$3?[? ??? ??b??? *??:Y,t?? ?P?x???Kj?}??9?=??????f?06)??b???7??L;|??o??3?fp????k?????d????E]/??????Sj?W????S??y??}k??ag?? +?????"9??&?>?Npy?o?)????-?D??9[???? ?/???w^??:?j? ?#V?????R???;??o???? ?:?u p???? ?m{?;?? :-??a?Z[??]??W?o?g?r?;?? m?^/?f^??sFs?]?????L??????G?}??m?G??I??????N ??j???8??r???a?V G$?O???g??WNx i#??|?_?????h?I2??lj???????:A? ??C???????rl_O?o???M?&S???_?i?hT*C ????+>?t???w?!'???? 9h?? i %?~23?Z+?p?9?P???)?I??$a?? +\3o?g???m?Y??.?? ?-Y"?'????????????$V?G?/???????.????q?P R?????????Q??R?? ?Y? ?V$?~?k+??,??7m|??r??q?G?????f???o????b?;^?&d????!??????]??#m?G&??5?jm?OD^?????????????q?gn?:???r?Y?4c?N???n???????M??*??I?k????:?N?[YF ???c?q??r?VO???x?E[Z/?9Y??????^/?1?W}?@?7?)?1??Y?v??=pd*? zf_fL??? y?1???k?9?????`)?????P???#?????@???? ^5>c???????`??z~??u0",???"?p????&???2x???Q+?????v ?/tL?CY?@k?b? ???:G?&C??So????{^y ??u){????????_?LIA.I\?;|?R?[L^??=?Z??f????Y-+?U?K??Tv^-a1g?g? ?v???&???????j?+ ZQ??7???~?K???|????R??7???'W????Fl??7=|?|?a-?????? ??3??%JG??w???H?a942?[?7/?- ?o???hRr????+? ~"???A???][#?(? ????7???N?b?JG^?'??ny\??*??W?^b?b? ?????kc{?J_A???????????o?_z????i??(_?????&pN???\?w?9? ??i1g~d??]?O??9?8??ezaZP?v?????? p?Q?AYo????Iq???????BR?in*Q?Q??U+??LH?????yx?TF?q'm ;?/Z?p???zR?5C???a?@?]?m??bPS?g yQ?,U???t?;???#??(?A?????^????6????????K?)?+?np{??i%5?J]ab?E??n!??@???~????????????/^???FK?ngj???3HZ??G???? ????S??? ;???2?|??????X]?@G6T ???6? ??6h??^?fr@ >:? pg?P O?xJ??s?R??W???\?????h}? ?(uz???L_Gj1?d?$2?=e????M?76????z?y????Qh}?n??????g?}x?;?_??oo 8]v??? ?P?)?,h??? ?Eul(????^???? ?wW?iz?O9???????>? ?!v~??8?;?3v!?m??d???6c? ?f???~??}?:???}???u]s????la??Q??<?d????????Ca??I/?cz????sw?????????q???e1?M????????@W? ?[6N??\V??a4????r????or????}{???|??(9???Q?)?y6???bG:????l?p??k?dV8??? ??)???'???^?? ;?+?0???3?)?`??=???3??I????a?Ka%a?8;G??3???a??K???L??T???9???@e?[?-s?F????0?m???A>B?r???W????l_?v????qS?s????? ?W?pA?'???,s???ge?V+???3`57w??:&5|?$o?????>)g?G?? A2oK?OF3????????z@?"???C?? ????)??<[??\e? d????; f? ?x7n?t2??????y??????[:?D??_ha????) :Hv-??'?Z??x0B?|a?!n#X3`??a????G?|??j?j)??? J??????????Ys\F?????????????7L=?6??????#??O?G????a?#?B????&??W??7??g+F??V0????[?? w? ?;h??De=?"?2????b&??g?"Q?]?vt ??v?)^??aQ????Qz?????!h???1`?6-1x??quH?? N???6? ??R9S|??"?3??q????5???????$??X?????^5??W1mS? ??N??Xk_N?|?%?]\0?"??eMP????z??\brl,X?$???????C?????i5???k??????4??)??????^?Q"`>??;5??? WKx???&?+?2?????????????E?eA<?`?@}=M?????$??:E??Vc??~?$?WD1??????(z???d?F1? ?????,?b?[??(y?W?????????g??NG2?? ??(??%?S?s??&???(?Y?gO????????>]k&e????6'?O< ?/? :?tM??t??V+?67???da?H??eC?0???8???E??y\?Q2a?,???{iyy???????u?E55u?e????K?S??????????????]?????bf\9???W?????_y?kj*?sX???}?A[wQ??u:=Bq?Sg??????zF??@y??????_p?}P?~?E;?\???k?f?I~Nm???f?9F?g?o??]-???#h??f?????1?Q?p+{Q??????????:i??(7?jo???s0?!?????7?lB?B?F???;4??A?(??${p??d??P?A?Vz?f?????$?a??8??4??? ?~q--3vRS?&k??r?$?ClM?????c?iE=??U?yC"=??h?P? ?w?#?n?}w+??(??$???R???:rB?{H?u??l???3???XgL.?r???h1M????-???v`?p??!N??B5? A??p-?`~??????|hj~/????iG?>???9M?????z?q??u`?f?u???3?c??1???^????o?&???v?C?[ ?[o??p/]???^????p???? ???+ ??KK????r??1??????.? ?4???r?? ?S,??s.~'??????h????b?qU?W??1 y??L???t?i;o????????O?? ???????r???_???p??\1? ?5F??28????-?3?s?q?L???Z:1?????5??????'??0?Q?c?(??7^???U???,`?$! 3\a:?Ky? ???q?? ???d?q' ?r?8?x??^2??b??z?;?CcE???? g??^j??=|s????W?3???????.??3?)Da?n?#??`??/?OxD?G?P?)>? ???????GW????????1*?????Q???nwn??? ?9?E]im????!?G?A??????!M5,?K^9????{v?#Y"_ ???_)??;???a??v?r?.?C ??r??~?8 vq?q?S+?e?`??oUv??F9%?]?????NQ????`?TM?&???-, ???4v*8???y? 4???p???}B????A?D??Mg???0?????? L???? ????M/??CY^?ZY_??{ lf??SJ??2i???'?-???????q?:T?????????????%???v??K4=??",????j?@|?UH??y V??~?K> ]? ???n /? 6aA?rj? j ??c K?;??~L??5?????F.~???V^???V?W?]\?W?Z?-/+;??nQL?+???B??s??gO ?r*? ?????????? ?j:?%-????3|??*?&??}f?{?kn??h???3kY?B`??R?_?C???N\????+p\D?6???~Vn?h?D???0?{K?=?-???'??*??{??????8?F6?H??F$??V$??????=)?baI??????rESvl(?) ???&5??E??????iL ??O???Ww?)i {v?&?QG???Z??l??????0c??}e??7?D???@5 ?N??????>V?=3??O?v? ?sY?`Q@??;^'4T5???D?y?n=]oFfV?.???k?2,?e??_aV???`?????????????n????c??/???K???:???t?L=???s?d?9????m?/??; ?&Rh:????????9???8;`?KB????4???d)z?'???#|W?fH???V/??v?|?E??9Z?Y???V???@]?6??=?haF??? ???~8??? .jE?m?Wa ?Jf!?A???????{?=?QF?>,{?,?????d????7???qf?b???8N?i???y@?Q??j???%Vb?>>?O???^k?z? ??(?Amvf?;?~??3?????????v?~???[?%.?W?? ?n??q?o:???C??),??S8?!QNQ?(?^a????;??=?$ ?5t -????L*u??????zz?C????s?D;?M?p???)??U????z/?S?????????*k`??z???~??<E1h~?Co~???9??]????fmz?7?n?o??m??K??B??9?????p???ru??N?N???)?? O????M0??E?? ??]???;c_?K}`??gV?c?|jx'A<>??,}??rh????Q?????$96I0|`??Q)???? ??????)???x4k??|?[?`nK???>[_:`G?l??????'?Oh?????????A;?E?9??+Z??K6? ?z???T ?d!?S?y???????R??5?????D???????+?"v????g8??LcBc???5?????iP??b???9?Z?C??g??? o ???}?7???????4?;?-?f0? ?b???E?x??? T??$ug?v?=??3?????-??6?C?[S?_??~F?S?P???7kM_??????v? tpU?2??ty`}????+????.7<}`u???????|???q[8?()Q????dD?/g+??E?@?8}|?????53?Z?A?M ??S/?0?????X[PA????l?85F+L?B.???&?B????d?Gx?a???b??X&??h??9?j???{??^;LNl?97?QS.?U"?WW?in]?????\???Uh&?:L6???T??? s~? N?w?? !arj?w?`$???Tv???>V????D?R.W?Ss?U???x?#C?\l?H?u-?????????Ru??s`h????.t? ?H?W????????gP?5}?\?:?=????2b4??|g@?@????/+??sT??????????n?=6g??)??,??.?????e}???Y???????hj)?m?????8o?????????t??y?????????w?(&??3??7??A.m???A=??R`????????U???9???\??lF???O3??[F????3??J??????????FL??u??k??@*_????C??;?? ???d'???&?y??B????v?\wldgN?????+M?Y?????Mu??;^??WR?vV?+2????AlE??????nG.??zF?!?D?"R/?E}??"?m?"??D!?g??6RP2?6?g??8?N???3,Nq?????%???^3,?8?6? ?????B?eV?[?!?8]????9???>????^"1?f?1 !D9??jC? xwi&???Q4J????u??%s???R6?#???dEAy??N???????M???????$??H(??;"?{ FC0>??????@?/?????&??a?2|o??e??5?&q?m??v?y?{27o?????NW??m?E????U?=??O?'|[N F.???m??A/??%s?u*???q}E??o??X???????*U???%?????pc???U??ki????j????F}??>??p???(?d?Hw?7?w??????K,?H??f?{?J| N? ???a????]??y?Y?x*K?R?^?t?"@???GX ????0?@???Y???,????????~)?????s*????3o?d?%??#?f????o0+??>?[??xbn[~#l0????????3?????M?^HI?%)v?v??i??U? ?{???b????l ??* fZ?s??PQ?SKC????e8?o?K???????f?????(?s?=0?1?3??89/&?n?9?vE?????w???V?{?/?`?B' i???Zx$????????Ji??-?T)?????'?._??A?W?/?y?%?>@$p???????+???y?q?1?k?L?y?l??1?9#??q?)??J?j????+????????!]G? ?=?(F???1 u??h?????C?????I???8?0???h??h?????)?m?Dp% ,??G%EGeN???E???7zP???4w(?mo?W?????M?*??e? ??????'-?= ,1?P?id?U] ?z ??]?????????}}v{???? |???P?kh?????+?s?5 ?????Y???]: 5??2?D}?V???$??.s?????QQk???S?z?X?W??d}????h??M(??U?x?k????bD??~???????????c??=?=t?B????????`????{??@K?&???ol?N???????????S?p=v?uiM5?\?-?????????P???? Zh???@;C??? 7lh????t?aR?M>4h?{EH??WI??????},?Ui? ?+???*?6??\}????u????cXy??M?"? ????:_?????F?5?/z:???#'C{?@+)? pmO??5?????5 X?????*?O8Z???sE.?/??O?'( ?3;???$e`?U`??=?;hl{??t???4?`Hg?Bc????????m!'?KH?6Q??|?u?????I-???S?JV????????^??gos????+?CI??f???i ??\@?mT?????m?N>7?aMj??8??R#{???u??=??????hp?^0???(lH?I;??[?j#G??N??K? l1????T_??S??~Mi|,???0???H?y??J"?+F?7?M?F???????i??z?f?dW? wp??1@?6?w?&?????,????;?0C?v?^?Kp?? ?????&a\?Q$k??,? ?cV??$??W?nZ???_?U????Y?? ????k?u?$??V |v??????{???]{?=?s/?!?_Al???)????v ?]C7:?^??s?&B????\?1????^j?A-X>i?&???????h=??{?O?????o??5??? g????#????g ??{????yt??tV??5?N??+H?x?~`w!.??.i??z\?G_???|??S???2???+?????"[O?S??F,?n????\hJ0#?????????4??????6L?????????U??`????7?w(????-????=??x??g? ??????vO??{g ZK??????I???6???7C? ?IQ ???9Wb??N??9??M.H??![?i?&a`r??8?????????w/?X.?h?????Va?9???`??=l!?G@)?dp?????E????=:?Y?}?I??cc;??F???e??=aBc?A?????????# ?T.???Q?9?zD i?; ?z?(?? ?)????+??@?????G??~/,??6]}??J??????F??)m[yzz?86?J???`??p~?????8????????M$?D?0 ??2??y7k at f?????????K?????????_?Ub???????L????????????^???E???0@;?????:??!Vq????r??sO;w{?vj[~?X ?0K?D~??Y?? ? .??? E??X?????????P?C?q?H?T6~`?3KOH????'l? Rs?y%???!+???K!-7??nR???????_??`5????0??k???6!,???uW?6????T?YdP???x????TKY???>l?<-??????bFf???U?????tiQ/?o?b?k?O???@F=????b?+?????[????7???EdJY???n]?p?????1?S??wY??Om?l???????>??Zc?l???Z|3?Q?T$?e?j?Y!o????j?????Lf,| U?Vq.D?~???=??j&p??a?*?-???}????`d??8&$????%Y????*0)>????~???)??M:?z?8mt?Jg???5@[?y??\???,??t9k??r??f_ n=????:???6?2?:?LM??/%n)?>????#??}?p?O????c.?????????(???<&m%???????7F?????M?OG~?=???EJrjaOupJ ??^[???si?sK??=?N??rbl????????.??f?,?y;??9?????]?Y???k? ?T??sq?j??*?$r7qh8?? ???Y?dR??? ????~h?* 9???>!?4Ra0???I*?F?^$y???o?????7???E?? ?M?!????G,???5>?Hr???A???F?QHe?LW?>7???189Y?:??[}pBfCw??????$c?v?K?3"???P?n;@K/L???i0K??r?? ??j?????\?V??t?&-;Mrlbk?????????Ve]~-?Q???k??????b?eL?|-???BH???kI????1????3?>>2???}0??;77??`?Q? ??; +????V?? ????h??Y_??-?????~???x??T?E?5?}@??7???Y?? w}????g????N?(&??43?w??q?????f?m?w?\??o??8C??>?????j?{F??????)d???{?Ok?7J???,???g)??k7?/&??(??*????^ZZ\PT\?H/*?Y?? 1 ?vbG4?l?L"? Q?]??js?W<"w+???&t>] ?????? p?Z0?kO AcA?GOH1?a??J?R??S??e??????la?K3?????)E??????ol??R},?_]?????s?1B?1????? &?`(???5?_?????,?>?)U??[??(?T???>?u????5'??3?@?w??1???|?i???? ~??_????~ F?Z? ??C2?b????j??:?,X??-^???>>??^?? oq???@f?BY???-???`??????ef????(/?GU?w'U??????DQ*?.?????nf???Z?qqI~e>S??qwN5m?q?c???;?.?Wh?x|Xa?? ?J^^????.Q??Hd???HU??.?????P7???\??I??/???G?? f?<$??#I?? ?o? '@?g???$?%{?I???Z? ?????????y??????]??s??U??lP??5???rN)???|????C???Gsi?i??=j?)??Z7?p???Y"??\u???? ??V?%?X?Q????? ??v???vzn?T%???? ?r???~Os????e?^s? ?u??G??Y?xg?x????R{??????:ft??hTo? ?@@T*?2????{??~9?N? i???f.?????76?????U?v/")??d?M????T??kA?:? A?R????????r?F???`UN??????K?? ???m?4(?3????\i?=?U??]?o?3-Y? Ng?-????????>G???bR??dM??n??P?W?TL3? D??W?^O-??f???dw?a???0???????I????#w?~?????W?4???b]?[???=P???l ?V'??M??3???|Vjoh???)?q=?] ?"%?????Rg?z?]?X1??????kH;|?H???\??N????^O?S?#??Q?E?~C?n??aSEqJ]? ?E??)d'f??!??\????????,>-??????\?q???4??6u?????a??"?g!E?????J-,M????.?Nv?A+bk? ?~ ??????[:A?Oo????[U?Q5?]?G;HM1 6L?Zm???F?Q???????? ~??.,!?L???\?{?nTQq??E?1k=?]"??E?=???? ????a/??F??t????Pb4?1]&s???y_???a??6??!???6?????_"X??????r{?a??.??;r?????? ??}`? ?+??E???m}>?C?k??R??h??k?d\5S?~.?,??a?q^a3???S2??o??|?Zh???M?????? ?????*?~]??[_QR???Uu???:f?zp??k????a???????#?6?t???h|v?'??M?????Ze?gO???Q%2 H??l*??\?Vhp??L_*i$?,?_???;+W??V;??!??[?40?2*?V?~??????:????U^?~???at8??:?????6T?_#?g??w]?k???"?t???At|?K?G?u?K?"??Hj????6?p????????{?F???+?V:???o?$Gj??Z??#X|t??b;???2 ???NF???NH?vFR?????(4?_ ~?#??T????/?L??+ ??jY?]A7dn??[??l?]AB????????/ ?? W/??s??e?m????>Vz??j-?&^?%?|, ???))?w2????=?'??vu???K???i?OZ???2??e'?)????>"?? ???+?^??v?????'??3??X??*?????=??D(r?tmH???-?_?/1?&????8^??/]??????L???x? ?+???bV\;4??.?+?L?;? *? ,X@???st???????{q_\????%?7????O???%??MWjck????x?Y?J??) ??~7T#T? p????)s?N??Oa????????{0?t0:???m?AM?jOd??l??C?jUl???z?A?O?G?^???{?~z?=\?X?E??r?m?l"????;~????(??C?D`?#Na?ZK_???`zq?/0,^??/?????c?C??c;?x??????8~?&??????!CcQ???????? ^????2? 2~??79??d0)n34ZnN?_??????6m?Y????MP+?b6??jGb?????????j}|??????o1i?5?N???{ /???r?????@??6YCW?K???^`'?O%?????B??7??- ???<"j????z?&[H5?Im?CqJ??&h?J?K??? o?5?7K??????n????@?,W???????????/??XG#n?????`7?A?4??? ]??H*2?rg??p>I???????O???pw(#b??????S1???(&????I????G??????5gjcx??vg?{t???IG?vE????`b?As????O?1!?c??|>/Z?q?T'hF2E??4???f?V???? .??? ?nt ???6??\?bM& &Y?v??1=??? ??????i[? $b??;O2??Qp???4????!??TD;??Z??k????????\?K ??6??T+? 0?H??+?)?J??^??????9?C~?:???b9}I???Mr;0??~OW?v ?1?a?l??Q:}??,DRf??n?????BV?;1?^???/??'?;y??#{? ?????HK?S^?J?????&???? ?????i???a#??????H3b8 pIX0_L?jf?}M?F??/)pco???'?bz???f?@?AZq(?@Nq2??8??????y???|-y?r????Z ?????pt??M?-????kw???>k;?#?e??? .7;???i?K???X#IdYw???{~??????e??K?tz ???m??? ?t?F$??(??N??p???S?I<-?d?FxLlR?? a?FY:,lK&i?#@???X???????8??Q?4H^s,??,????? Y??9??h??G?2sC???%\??6??:ZZJw?? rC?;H?^;?J?t???f?? ??n???e??Q(?????&G????RM??'v?&???@;?????Y?tn???aZ???wIC&???/??|m??L??? ??m?$??x?/3?-?Zp='???v??\?,|.j???????}E? j"q?U?\,???u?? ?&??xdl'?s?E?,????5?q)h??Br?|Y?? QQ????$??7?7 ?!s??3Z F???`?l/?????s?`?????8?h?k????E?????]???;?f???_????????@L?NU?0?????d?d|2 YM?z?D????????a:?`9?R?J?? y??OP?ux?k?R?>G?????? ???_??#?g?????????? =?m?R?<pP??X{?R ?d?????_rx?? ??? ??;(?;?Q!?1?N ?^??o?Q!?;?} ??+x?x? ?+N?????? ??f ???o????=(?G/=???q?????y?*?/ ^???qe^] o%??N???s?1????????L??;?Gr??r?????^i??????w?????N????????L??x?~U?1????5l? /???&x????y?????beRS[????G#xI???Q V??????? ??g?{?O?x???"????? ?w?O????a??K??????0?_???/?_?; ??B~????????????$D????%/??&[?z}???7#a?????{c?J??MG~??}&?j??????? ??g??5?kL?g????&?5??7??~-B~ ??X?o1?>????? ?6?_ ?2?_??k??'?^?o???_GN~??????n?f?A~??~M?Q~K?K?W)?u????????O;????o?|?????-?????????? ?nv??l??N?????^???y??Y? ??????v?o7???_;???1???*P??Ha???UO???v??Z???G ??? ????_&/? ?7??? ?7?Uq????F)??x???gSGq???c?@???sl???*?_3?n?a???????h???e???x????|??????????????????g??]?I????8?p??~ ?-?_??_+??B~???!???? ????z!????S?o#????~;???????^:????|G?????&I?7 ?wP?w??B?c???? ?i!?x?l? ???t?7?l??~??????v???x?oN???oc?]`?h?? ?Hi5~61?Gq&O??gc%???S??2???^2c}D??Wix??u*????*????&??2??u|?W??O???/X?o??e????>????b?G9???_?M??-??????? ?\???????6??}?,^??e?fO???-j??]?o?k ?*?????? ???T?7????jB??+9???!???Z??g????]?;???~=B??~?d???k'?~???u\;??b?E?/??=;??x_`?G?z?Q?????7?A??~?{?a?F?xg???qo????y???'?b?N?? ??????? x??x#???T~A?)?????????w??s?;?F??_???S?f???W?i?qF??B?L5<5???,?o:?h? 1>W?????1\????? ????????????[,T?K??*??Z??i/*?U??m?_f????#?U??y?y?????[p???1S????X??X?_7???5]?G??{X?"e??0???&?J?5?????3??????K??O?w":^,?????N?w?????? ??2~???? ??????W ??x??!????????????x??????a!?n???y6??r?? ??^??f??<{???W?o< ??;???g??Y??[???s??T????/S??_?w0J?;??l???Z??? ???}???????B??q??*T?O????-????????????K?x*cx%???%?????W?*/????*??x????i????????????w?fy????p?????? ??V????????k?????????u ?_'??y????r??(?w#????n?_?/??~}???\???U?[#T?????B??~Y6/w|nyf|???o?"4?A~CB~C??:?o???????0?ve??I7??E?????~@?Yi??4{??~?_i???k???>?_???|3??i]?G?%A??????G??,^??^? ?= ? !????????? S??t???????? ????\??(md?%?'7?o? O] ??B~s?7_?? ~?B~??[*???-?[??B~7??G??~w?? ??????????z?e?????*?? ~;??v???B~??1??(???/?h?????-X???????oo???x???^?/o??x???u?????G???W~?y/?7?]~v???^????_???x???f?????;????????; ????H~?l???,?o??? ??????????L~????????h?_3;?H~????+?w?L}????o.;????V?????K?6?????<?~??y??7lR????r???????????V??????nb?j&\????J????N?? ????a`???h????[?8???g???$?J?????$??????????PK ?1?8xgI?q??H?i?*?^*m???xu???x??u?x???!?z?$?v?? ? 8~Y???b?3?$?r?U?y??s?_??0?L??2?j?n??W????/'?5?????-????^K??V?s?*?~?~K??y?_5??????R????????`?;o???_-???~.O??Ppyv?H?S$?/??5???^$???w??{???x ~5j?7^??g/?????v=)???|7?xSx????'??UD???`}???????z6??~?????B?n?????????Z?m?????\"???3???Q????{?'yDG????????????+/7????'yD??o1???K??p?o??????'U?0g,?W?m???S???c9?/v??~?yv?????o????????b??????/?;????? ?????y?N?????1?a??J????_N??/??$4????+?5??????|fu??O????-??t?}j?J????l??%???????gV??B?m?t???k?K'?y???3??u??F?R1w??8ek1@?}???:7??-??????QO?? ??;g??[c[?6-???>???&?S??!}J?\?????%}?_???M? hCh???C>[????*[i>5?A???q????}3}? ? ?? ??i?? ?????.`?????Y????lJb?SON?e?????1a??5s???(km?'?????A?kl^?y?!?}b???[??k?wxt~`?i^>??XY?O?vH?K?Y?u ?u?a >}?i?m?&U????O ?3??k8????GY4???k??|>???????????? hCh????y?0K???;a3???[r???y????m??-s?????-?????W@B?'V???k????>?:?????G??,C??[??y?????u?m?&U??Fz????i?u??Oj|?5??%N??l??????^???????=??6t?CNy7?^f??_?'l?8?????tq?ONl5??'?Zo???M????v>]dL?|?Rk,j?u;???k?}R?#??e?;y?n????/?k\??y???M%???m'?????q +??'&??)??7????????n?z9??????Q????s?]w^????7y?Y?????w????f?n??N???t????????#+??e???????Zk?{^m?TR?????]a=??Y?????;O???'???????=??9P?Cec???????V?????;?O ;W??f:_?? ?s???,??z???o???ESv^mHm_y?'T????4+?????J?3?_????S??1???mYO??E?2??Z???c??"??^d?????~??U3??????'5>kl?om?w??5?( ???????>???O?,u??ks?I???yF ???9?E??b??H???}b????lr|[?B?????????d????????D??????k?Q???????t?wz?J?i??Y?????z?k??????6%?????b??????m??|fu??????I>??$?l??]Y? ????l??|j?r?-?_??5z??????? ????`??9^???9j???_co>?>??I??w#3??|e??????h?o?)???-????6%???T?cw?h*?w????3\B???'?j?C??r???a????'???&????p??/?????????Y?g????w?H?r!???h-Z??? ???)???[???)7???Vf???2??_;??#?u???F?vA?c&??0j?O???6?????]?h???K?{?=?y??{f??? ???M????7?w??07???Vc%n?X[r?mkj????b;??o?F??\l???F?~e?? Xm}?W?a??l????w???Y?W?~l?YX?????w[E??????+???j?? e^??2?????_ kP?y??W??Nt?"??}v?y?e?c?^5}?jKN?9????U???6???}?c??i??n????K????w??w?[??????J???u??q*=>?'??c????^3`B???9w?1???^f?1RIh???3?,????C?>??k$?TR??v?1?y{??}N[r?M???y&?Bck?????e???{'????3?P?A??? h?????cN\%z}b?:j?8??????????+?=??x???? ?r?!?7???|Oe??;e?O??b?}R?3???? ??????34+?Y?g??6 ?n?}{?FS???}r|Ktsl??Y???Y???V???s????????????+???O?f*????+?@B??b?D????s???yFMlg?????6 ??}?X???1!??}}?>9?%?9?%6n???f??i? ??w?KbX >5?????'7?>??????}m;em???3c????NO?c?????????????Sv?-??9?????4????y???(???5c}BZ????}r|KtslKlB?+6N?}??S?j???? O0?????}?????:????T??4u^???(f_??6?????{?>m??s???gV??????}??O????K??O?}?????f:????pH???f??????T ?????M?c????'}?5D/??L?????kE?"?j4??[??|?)_?#??o,?X??m?????l??????}?Q??6?? ??US?>??????1v???r?m_??l?I????7?S1??Z????1?I?v ?????????????S?????>[>?,??sn???cer?B??????&?\??3?K??.???v ????????3??v?>o??????t??????I?6,???7??T?t ?{\???;a?>?:????=??u?}^j?+/?c?>-??R?6ny?vk3???????O??7?>??.e??? ????l?_????ga??4?l??h?????97?XR??c????m????3?s???t??R??O???k???On?[????-l???????D?J?W?O4?SQ????????8v???|,??L?O?q7?|?2???#&?v?????1M?????sn?We???A??=?x??{??}fu?Q?ML^??){_yM?c??????6ny?V???9?U??R}??i????5?>??q???????????}??"?+ ?;?=??#l?#3?1????????A?9??b?v??????QN?q6o?9????4d?z??]?]??=?L?o?@3????u?s?=??u?o??d?+c????|fu?Q???????I?LSn????D????6n???7???'?J?W?O\?#??=?V??4?Y??????Yw?k?LSn????D????6n?&y?J??gh???T?>?z75?1T???o?}R?????8y:.?q???Cm??w?b???j?:a??0?;??5?97???????<x???wD^h??d$>?:???M?5????%?N?,?J???-???ma??kz???????U??R}????????M???Oj|????N??m??"?Cl????a?????Q6?;>+?_?'?{??O??h??C????@?????????;&|????H|fu?Q???????X*?ok??????[??c?S?/?44?`?n?Q_*??????????ilN???'5>?\??8??dK's????m?=|?:M???K?9????{?:?_?'??|?/J?? ??j???]??V?:????lm???s?>??G|???????????? ??}??D}c??a???O??xDD???????????[d??lOy?N????u[F4Jtk4c?qe??????Q?I???|funR?>?9????w?ZM>9?%?9?-l?rM2?o?L?????`???.x??5???C?????x??'5>??C?u???????m????>x??B???{???/?3???mj????Lo??{?5?5???:???kV>?:?????^???s4M-??????[??c???-?tl?V??J?9??-??s???????sX?|?}R????;>???+?Gl???+??P??N????/?3?WW? ?b???????? ?????2f?6??k??r???????%?_?o?n?m ?\Sh??O??N???Y?????/K|???^???|???[?)[$?g??Y????=???k???M?q??k?]m?e???}&?????G?Zh??2WSl??R????6N<7??,?3?e6L?;*!d]?K???M?~X???sRHg?>9}??-?ma??K?y?B??>-y?;6K??s???y??`??????(v?/?>???????G?%w???`m~??!c??6?????s???/??P?^???C?_n=?z0?~?\??]>?8?;?? ?Q??i?3??????=?;????_?w?????B?:?????<#??Ww?k???p9? ]s???j??Gm???5???????[???ZY???????r].??0P{J??j?(;;?/.???'U^??J????[?-9q??5????e???[???6?wp[3?m3? ?5m????r??????}_?}O!:?;? '[??m?n?m????a??|?>???~w???+??????>1???"????=???Q?G????????????+c9?~?y&?~?&?B????.?O.hN?lr?Q??????N?_n=????V??j?[?vH?%'??XK????????????/?gk???t??A}~????9 at l<{L?-???2?Lh>?>??T??|??????eAy'??f???????3??h????y?B?!?u??5?t{???n???#?qq??5?nS[q?????'?W?_?b}?1???E??s?%???:7?W??????o???htS??v?T?v+?f???f;??%7?T?%q?????K]??????l??}??x???:a???}??0?o??V??r??_?gL?Q????~x??????>#y???3????\_?o??f??|??;e??[??????GS?5?????[?}4??????.? ?????????@?&??l?~g?j??%}?+?_??>?5?????[?}4??????.? ????????? ?/?pZ??,*?;O???>?Q\?3????$y?Y}=?m???G???n?j??>}9?6*??-h?Qn?C[~b?????fI??n>?????v?]??Jc??Yl?n?[??'f??fZ?G?6*??-h?Qn{?-?^???????_M~z^???'??Yzg?? ??x??XK?????m?yn?!??Zf:??????>Z?????62??-h?Qn?U[~\??????b????u????>?????/c??Sr????n?R[4?@???#?????xb???5?/c???Q????fi??W3?????Og???a???/W+f?????c#?G???Y?G-c?M[KI??m?cXe??]'|"?W????K|Sq???????k3?SZ%q?t?O9?Y?v? ?:???p??z?8???b????W?v??+e?R3?~?m????t?^???S?T[?????"?G';????W???;????????o?\???;???????0??]????????{g???w??t^A]?fnY(??>q???h??????9???U???)K?J??????pkO~???EN???t??C'|????F???????? ????y?????L???q?6?jIn???rE????V???4rN???>?i_?>U???????}??]Cy?- ]?????|~???s'c6???k3?G??e??_U??^f:Gb7?? O1?? ?u?????????g??d?+???>_???hSkr?(7?O?9?5u?}?/?f????tu?6???Dl????? 4???????2?C????? ???}??????????? ?#?)^??_l?_?????B?w?s?|?2??:3=v??c?Qkw?Gc??Qn^?zs4k???L??a??I???7?z~??M9?5?????vA 46D???? ???9u?????8??????g???Zw2K?$??:???CU???X??cW???|??g:??8S??akJ??d?/?7G?O??7???i??l|6?p??C?'???M9?5?????vA 46???? ???9u?????Xg?????1?_???????s????~v,??f??????sMr\?D?W8????k8??c??sP??A??W??Krn???u?|S?}?{?????|?.5??:G??-?^???[n4?@??EN? ??)?-??????? :??? ?L?][?m?????L8??^????????L??e??o?>????_j?Rn????o???=}o??????R?M???????8?@?:[2N??f?$y{?*+???.?????S?h[z???3??>}\?W?????I?w????[*?j?????r|???_???z?O??`m?)??5?b;??D 4?lcl?h???????????? ?K?z??????mm?~]g?]}??????k???O5?s0?????S[??o?}????,?3???' ???q)??Ru???,?SN_??y?&??T+?L??s???g??|??k???&???i?\?)?~??w??????[?o_??T[??????bfe????2??? ???&?????4?? ?\?\??????????????Gy?JS???????t???Q?NA?????r?L??O0K???|G???wF???S???:n?c? ??2?|???Be?5????? 4?h?{ +M-?r???1f?h????Z??j c? 4?@ ;?n?mgP??v?ZC??E 4?@c\?m?k%?i?1????~?????}?c??5T?1[4?@ 4??o-?y?4oh???3?+??s?r???1f?h????X1??-&??L???|$??c??5?>?E 4?@c\,?????_?I????j ???l?@ 4??!?yp???? X?um?4?N[??6?3???-h???b9?8ng????????s[??m??Y?????j? ???h?1[??^?oJw????,??^H?C}??q~????\??bm??{g???'l??c????H??`???? ???@ 4????????Z???k??5??m?n?_??Y}?????k ?C`m?`?s?IzuFO????ztLDh]?1K??.5?????j???????~c????g?Y?X?[B?Y???|???e?qG3?g?S?????7(?????\?RJtC?h??h??q???>??$???????2a???d?M????X?g????????g??$??f???l??o?)???-|<> N]?????M[???lO[?mO???o?'?b?[?E6?m{u?????j?[?@?g?r? ?^3??;???4??h???<5 ?????&|q??4???b?=????!???fL????}l??g???J??[S??M??e>y?p?O(?n??mLc3=?u?[?A???c?:G;U??m???lOI??????]wm?????Z??Fk??@??m?3c????'?????,?$???A[?#?$??V? ?K????{????g?B???L?P????i?>??kY?O??=7P?G?]??ewi??!lR???v?5x?F?G???r??z??.??G????e?U?o?6???}?k5S??j??-??X?Z?wV??h^) ????WO??|?G{?????K???}y?y????8?wl?^(?f?4D???$9????}?{zA??-???L????+?u?6?$Q???i+?|?NY??{u+?w+?Y???,?_?o??6kj???i???e?kS???????U?R=?????\??a???????K????yw7?sL?n??_???f??^~?????????c>3P??j??? ?????6?7>??=C???oo??|???????/I????????]:e9??[??????;??l??~?????{NV?C??Z7a??mYn?????????f??6?>zz????w,??????v??a??g|]?G???>z?????7?S?????An=r=?'???na???km{????W??g?I??>?~?????;??????S??}???3=?~?? ??~??????8|???e9kS???????!?????i ]C????u?C??O??{??_??c??r?????~>??}o??/_???#?=5}?j??s?wFa?2?'??]=c?m??[v??g%??????Y?'^?????????MA???L?a????????Xy???????c?.iO?x????X?Z?wV??? ????G????O????:??????I????????um?????pV?^7_? ????Tl1?P??3076?_?:?F?gp??????J??b?mO? ?2?{????O}d>0????S~???}??LM???????Q?~.zoE?v [?????n??l???}???1?12??D??2'?????=??P?}???\??????go?t_??d??>?W?<]?j?,?G~?uN?GG??ks??????O??+?$?4??*6oi?v??OW???_???e?N?F???c?^?I??c?? ??k2?S??T:g`Nl?2K???s,??????Om???UZ?m[&??ne??>Q?????????W;d??y ?>???X|?2Mr? ?x3???7??)???6_~?K??5?"V??\D???&si=m?m*?,????????:e>????eC?-???P??)???PC|???}??W??l???nf????/??!=7_??yf{j?`?>?5??X?4K?H???w{?????r?tn???=?#??<?s_}?y_3G???{? gm!9G????V>.??I??}???????A??5????h???/>]MO??s? ???????N??]??c?G?K?>?=5}0FA?gt?d???>???\??q?,???Bk???{????3K???yu?Hh?b}|k$???I,?P?&y?,???1???>??????@???)?lOL????/??d?R?????|??V/?l?????oM???1?????I??????*t|6r?????uW?????P?>???r????3???>???w?#?/????kJ?Wil???????h?Z?G}?9ytL????9???^?g?.?Z[]??'}%?????C??^???m??N??m?{vE????^??A?K????w??? ????u????O_ K?^M]>?}P?1f???t??5??O{???$3???{u?u????????z?m?????m???X9????^??Jct>w?C}~Z?G}^???| ?X??f??l_}C???sy???'?? ??P?%}???R?O=??-????*?i???j?>Cl_??m?\wlZ??v ???c????????!l|?z????^???/??{??8?|?S?? C?`}V??'X?|U??Z;?;?N? A????l????>??ly6/?;bs???? ??0????s???C?=?/s}Z??????e? ????????}5??o???^?m?Kk?X?&y?$?N?????G?6h?j???W?c???j??k???oN,g'??n?M???|?N???Z?O?g ?????M?`?>?a?C?^?[B?5???????Y???nE????}?X|?????[O?^?zb???"lM?>??3???7?^????d??X?)??zt;??0???&T????????]N|?R??}*???) ???|?????>?q???e?kq??=?9???????4?;?2?g?;?^g?Cs&?a?ck om??]t??????]d????O ?\R?~??????iT?"?+??????i\5}YZO+?>?????V?#C??????|????vm??m?????I???w???Y?????0?????r?-?N???r???D }?????y\K??sm???{JDO?? ????;??Sh-???^? ???;?????9????????c???k???U?]wSh?7?vfi\?? ?1`W??G??t,????;????{)}-KI??n?i]?^(?????5?N??k?9?????]???m?+?w}?????u??????M?zn?)?i at S?w?B??m?b?\???-??Y?????_B??!?X?5a????%???I?KRk?\\?(?M%?y????'?E???y@?t???W?>?C?i???3??s???/???????-i????9?[.??~????z?????????9?u?e?39???7?e2?F??1?????3t5??@???????K?ygJ??+?????m??]j~??v??C ?j??!?%y??^???y?N?m???6?$? ?V?v??j?????Bm????????C[v?DR?;O???s?X??z?c?M???k??????????[???-}???????/?~u??&??K??c???us????????o?$e?}:?/gZ?P,Z?o?.????H=2?xw?f??y?rc[ hJ????????:w??M??[X??;???o???Lz~????I?????+M|^?X?????K???????c??m????>????Fwn????n???L}v??-?y?}??*?? ?6??V7????Z?S#qI??w???c?Y?='??XLn??? ??bi?????5kb?????_??sb??I?????y?}?V????'?|?:+?8S?C???yFH??O?S?W?>\l?zA??}C?????YZ;??z?v;t?????k?????S?7??????????r???^gu^?a??j?????????0K??R?w?>?ls???m?????Q'??6??NJ7??g_??~???z_ ??S???]??~!aw[kwz??r???M?y?K???m??3??:?}?nk??ol?????????h??Z?c"6?Z_T??Z??g???S???SchsMC?-4Z#?rd??+???^?s*y??uA???>?Y?o????L????k&?*??t-?[e??]#?r?~?\???r_?Cl????[[w?XS?}c??-?;b3??V-??vV'?,A?)?u?t???m??G??????}j m?ic?????=???\???*?????D? f?^?5??K??m???s????^n?^????`?)?r?~???gh?r'??] ?o?t???'w?r??[??|,>??=??K??m??t/$?>??=?[nlj???~T?o?v???P?c???]?Z??g????6vm|~??TJ?{??;4?cC?UJ]???!???Z????v???g????)?K???^??"??f????s??$???Z???_rl[h(:g??3?r?cl???h?C??r???`Ns??9????u???fi??X?CD???????v[Bh*-O? ??[???kwH??1-4??o?X at w????r???b????3????3_?hK??Uon{???m??2?????L???p??r???6???????? ?B???:????ro?y????t???A?????w????|??_SN=%??l[h?????d??? ??????c??`???y??3??9???b??q'?^?nf??h,???c??i?????6?=?*?m? ???v2o??c-??2?g?????????0???@?BI?I=??!????pw?E?_?f??q8?,??3??? ?? ?3V???????G????Z$?9?~=4??A????????S????l??r???y;4}I?????GM?5?Bn=?4?nm?%??l[h(???-?;??~???y?o???2?g??}????~~RF????????=???N?;m ?no???c?????H??p???b?????\j???m????L?c?9?????y???pn?Tl-c?y????S?9O?????r?^a?t??????L}.?#??D;?????)ou???_?V?QO??f??s[?4'?PyI;u?e???????_"6G[??1???[?_????Z??????y?nd?J?}c?g1?Y ????C????6??? ???????n???&???K?q???????7???????_K????????????`w??~5????g/??/????S????Y?q???????K??m???1j1P.?H??,?????}??S??=m~???n???5?#??d????Z?????#E?V?????"k??@?<??r??3}?@????Q???Cw>??????0[ow?Q?~?+???_????/|????????????_b>??;?c;??1?s????-*uJ?z?Z?J??'?+TV?!?=v??*???6?l[h(?]?]?o?????5?w3??wHe???,?C?]???;?7????????>(?9?w?H?w?N5?+?H???u??S??? E?g?m???_??????3???????|] ????????? ??ZVG?M|??5??n??;??9St?Nw?NE?u?????V??d~y??Yk?_?)?'???\??=?]??|gO~?N??????}u9? =??????[M{b>?e?wu?x?W??|?[?????cu?????*?%????+TV?1?]gC?'+b???_??v???????Z?_?S???m E????????]g?s?*????????4'??f?@_?}?;?Pm?????Ts?????#??7?????,a?L?????E?????L?????C#6}?g?]?????)C?r????_????/?;'? ????sD??'???rw??????????????1????'9?w?b???&?????.)??S,?????/??:N?;?f???? ?_??qmJ??????????|???????Zi????w?????_7&???????C????:e??@i?$?.????>r?g?.LwM????L???rO?7V??w?7?j,???*?/??u?%???;??Z'?3??Q?_e???3??? ?[?f????KN:????????V???o5????o?9 ?????8?,????}???Z(??Q????=???7?@n?t?='n??????J?9~??yOyw??P*??3l??m_R??I?Y?V??v?N?~?}?G??n??j???<_???.I?s? ? !?C? 4?@ 4??[?i??J??C??/2?c?e??.????'????q?3?C?>?#}>??6k??q????i?~???????m{X???y????zy????=?????}???t?? v}6s?]f?????)??F_???/???2?,]???f?]?,??????3??R??J??C?j????  ?#e?!6~??}?????#???=??^?`7?qX??_????h?'3m???K?3?????????1o&3??&???zy?J>%eSiZe????LI??k??g?g?L)K_hPP?,?S?????r?-wM^*??????d[:T???#?????oq??K?(h?PeJ???L?????????)??z??.????q?D?S????W??????/k\??7????}??h????Y*?l???F?0u??*7?????????}??n1??or/???-r?}??2????!??J%?????t}??c???!:?/???=??5???\?])?????k??u??P?%?J????+?ZN,M????0???\?????6,?]?Z}+{?%??~[PN?)?\???>?nR1??o"?:L???R???Y/+??w????8???K???2 \{=??uzS??&c6+\?,?S?u?2?????M4oiEj??O???'????z?2???2~???}d}??T{Sebi??d?X?\+??u=J??}??nT]????yQa?&3??&??????z??????2????q??+??L?I>????%eN??g5??????Fm?Pe?????;C???m?C?;???P??????w?J?????5???P&??T???2}????1??e??:?:???Y?????t?o? 8Wv??$c???,??????C??????g3L??C??m{I?j?A?z???2S>???.3?~????m????l??Y/??????.?a}??H?7???>???F???a???C???????-{??;Gp?N???y???C?tg?d?1?{?OC??}????>R?????W?!???b????U????????{O:f??M??????3U??O?X?I?????C????_??<;???? \f??????_~?m?????W;.?$??\_??Yz??[??S?^?~?J??C?I????Q?}??O? ????????PeJ??~&k]???s?K\?\??z???#\{.?:7?????d???x?#???>\?????*&U???!??$?Y[???????Lk??!????y?????_?????????J?6???????P????_??|??????I)?G???v???6??????T?c?2??*%??????T??w???S?35??????oi{r?D?M-????}?????u??K?k#?6?uQ??Y???UGI???%??_?;????9)]w???+]} ?!?&Q.??v?>WC}u9*?|#?K:?1O???c?Q??sLS?w??R??gcm~????+ha???????5??|???z???~s?-? ?????s ??a?)??>???\?YW?$?????]S9??R?9)]w??2??(????TZ?[????????????????j??/ ]?c\'?$??????Z?e??>????????q????!?Q?uL???.??????G 1???1???????+????qj?rm?w??????????k???6???{;??m,????i?gg??q?~???a?'WGj1????????? ?? ^?? v?;?\w:???}h?-?w76??6?x??d?????}???h\O)?q?z>???xt?????????????m???Z?G5???ti[????g?????Ij1????|??eoz?W??????????G??/yyGj^x-a???i??_0??~???^??????e???????6?????]}?YN???/2n????~?D9?t??)?????|??L?x?\G}?el?????m?????M?|?}?]??CL]??m??? .??????%5?+???????G?????Zv??=?z? RV?????b??YY?????tm??/??_??%ek?????hWJ-?y???B?W?uby2_??)9?Z??????6?K???d?c??????Xb????h|???~FS??!???1)[?v;??.???Gl?}\>m???c??=?????k???s?-?????.5q??a?|????62]??????%e??K???G?cc????3?$??5???S???M?L???hCx???????t?g????????s*????/?F???~????"Qf?W?1???~?`?~??>?J??m?]?)?)???%?????????tl=???}#??? ?2%J1?3\L?wjn??]??????g?v???????AZ?? ??????~??f?g???o3?>??????I??4~?K??l{V?\k?C?-?W????Z???w~b??3??s"}?????]?e??%u?X?6??l?~??{2R???????i?1$???`??c];???o+?????_???v,???3?o?????wTPV>7W????T????tJ??9>?< ????/?g?????????|?k??n???????C 1???k??????^iS??a???]???$??O???z????,?U?/?gg???5????[??)?c??6????\???5?+???W#?=??t[???!,??? A?5?5??????^?q??W??.yf???4.o??Y??[???/?v?.???v??2;{?;k?w2???-????:???2???7h??;?u?-+5?b???_?t ????;??91Q??^?f???????:hw*k??le??oz???m????}?Jb?q??"L????????.y%1%?O??N??????????0.????.l????????Ic??331?u???u?>?????/?kNv?? ?^?? 9?~|G????qS????r???????)1?k]???w??)?[Vj1?3Y???y???u?Mt?kk???/X? ?=v?*??S?l????????????j?W?????%y5}?????t??u ???}6K]{??J}?O??????l,?|/?k???`?C?????#F?????N~i?L?????$?&uTGY??Zo??L?r??3????Z??yC???i1?3}a?J?+?'?????KbJ?7?:?m?N?y?? *??*SR?zer??q??[??}^??????>?A??5a???I??{??:?"l?1^????e?E??=?c}?cMt??????8?|??CL??????????HR???mL?/?u?sXwj??S??#??a?C?S3????>?????qi?wC^?q?Wo???we???k???`?e^???=???????-???xy????A???????n????_????y?1ul?O?????JWE?;9R.???=?????u?I>us?????D 1???S????????~??????5??\{?p?8g??\~W??????n??b7??P?^??~????%?> ??~??k?7?X??im?????=N#????k?????8?6v??o?ot???W?+?m??^?w????x?k?E?C??????Z?w???{9???WF?????;.!?????>R?z????????<?wiP&5?o,?[?=??<?|???Hy[??^?VA???'??????2?KR^?????)?????d?d?H??O?C ?^??X(?>????~?M?2?&???????? V\?e?1]???gbk??TZO?l???f????5?A??gT??????,\?gG#??;-3???v???????,???plX{??3#?:6S???W??5??0??u???O???G?}+??X?D?\?)sqG=????2??G?k??9U??+???/h???a????????}??????zN???_?y??k??d=???[lI=9????#?um???????{i??f???;3?uo??-Swl??X???c?^???_??7?????fYk?X????????[??E??Z???|?z?w??5???e?~k>??~?L?>u?????????Q???v???<=?e?t????????4o????|&j?Y????D?????A?t??? {?w?|? ?7??????Z?#??#??];?????;?????XO?? ?c?d|?3???},??f?6???'??5]??<@[?f??ZX>????X??k??#?]?>??[?l{???/?;?e?)r}???????xM?u?\??kr?w*3?gv??????????O?/??+t??3e?i???UA??x/$??#6?g??ge?L"_??!?i????m?2r gI??^??v?}{&??V?m??^??o??+}O????k??{vi=)??+???p?????p??C?QP6????X9y?????"??u??????????]?e????\??^????K????!??Q? ?~????'??o??o??72e?iy?? ?????cH??? ??Z???)3???]{M?y?:?v????g??????????+2?F?y??.?O???e?????D?G?=i?zBr??6;q?????Y??a}???rv M?=?Zf??Wr ??????H????*?l???#?????????.??r\b/O??i??G?????{,l|?TJ?G???~?5?]?%t?voTQ??!o???^/??3,c????}d?h^l\???G??k???Y?}>??+_R&??'V??g^????`??(_R?C?{??Z?$???_???+/?W?L,]TQOn?m/?'QV?e????ej???F??m?wG?S?.-S3?Bn??^?\W?Pv?~o?????v????i?g??G?]ce????vs?o}I?_?????EZ????B??e?@????0F???}?p??Z/)2??l???"?v?4????????R?Y????5"? ?????k_?u4/ ?????o?????bI????:??5/J?k? B???Pc??V????s??{?k?-???Y??????????|?7]?(??t]H?b?L???(? U??=????????r????}\?^?{???J?)????k??????3??c _us??X:?`???'?b?!fm?1????S^????;P?>??;@??_??????x?E????????q??????!?b?Yb??s?(3??^Z? ^???;?p??yn??]??????}?h??[???i?????,??C 1?3?1?'.?Z??? p|&^?????w'k?????? ^???????? ??>??p??G 1?C??cnm??M??l?????xa???? ??y??&?-]l?{?cS????VuX? 3??+?????-?|OZ?p????8??= ?L??QL?????1p?R?oI?=?`??????? +O\?]Z_???q_y????tW[???H?g?-?S:?9??R??? S??K} >z??Gp?s???????y?????????X??`]?w?3??k c???'??g6????z????{?B?8??l??i}?-??T?1?ch9?????m/??3???,?Ri?7?a??????u ?3?7?n*??}??9???4N??????u??~w*?7?o>?1??\+??o????J???:???|???)???????}8??#O_??J??[yic??=?E|?????????8k?Z?& ?????YP??(??~???W??X??[?i???v??~???3????+?????{??~??C??? ?|4?:??q?ydZ??8?{?r?t*???)???????}???i}????????{K??=??wV?????/?Y??R7y?{??>?s?Yi?{????h?????L????????u?J?OSib??????[?W??Z]E W???7F??q??:|I???mo?????[?m????|??=??jc??=???]?K??k_?????>Y6??\K?[L?q-?&?=;????7?a?Q?[?Suv????M??|??r??2??????5?7na_?~ku???????N?vt?-????XK??7???{?c????L??????o?~??+o^??H?4}\??|?????8?O/??=????TnGwc^??}/?~W???1?t?1?r???1??1????????j-???????W??1?}=???v?!?i?????q.?yVc?-5???.????? ~$??m?????}??#????????4????????????rG{????_?S????????4QS??1?7?nIL??)????eg?i?cZ??P?^c^?x?q??? ???7l???4-??????N???{?u??h???o?F;??3????+??????^???#????L?ly?????2l??5W??G,?8?/??&?~|???-?+? ?}?[N?c&????`*?38?1?.?i}_??;??}cJqc????????>?3g?i?cZ??~,??k?3????a1??M6?W?/?????4-????Rq??HZ???\s??R??g?????]????M?? ?a??(??????????????L????i?7H??t7K?}????&?D:x?Y??~??-?7?n*?R^????????f?i?cZ??>+???\t"?}?p~,?????k??K?R]????_?hO?????wc??O?`?k?.?[L)n,??:?Z???S?_??i?cZ ??a?G'????<?K??/I??DK?uVZ?{???X?}????f????[?}?)??VL?Z??????????o??1???%????|??j???????????e??f?*M?.[?Uz?=wb??i???m???R?S??q?)???[RS?bz??2?{L?p???k?????????+??mJ?Z5?[??cL??K?#U?????v?1??*C?M?[a??4cu9??????2??????????KT???{7??v?1s???:????????)}???1?^?M?????[?? >?|?a??u???u?? ???????k?}?i??t??????9?????r?15?,[? ?J????`/???????????:???4?O?-???0?V?x??????G,MS???t-??????????T:?????3??m~?J??|?j??4???b???-?8??u???Bi?}Q?????yL???????????u?U3??*&?v\;[?o?? ?R}????Zz?bB?????G-?C?-???)???b?1-je???]???o???g-???[????x"???%??[g?g????wVX?$?T]??]??????iZ?P?????Q?Q?? ?g??K? xDw???Q???g?r_z?Q??bZ?Sk???T???je,??>?c????q????zhi?_+[????bK?o???Gi?Lc8?LW????????n!M?.[???^??2u????????s\k?e?I??\-????g??>?S?.{?????zUC=??n???zj???z??R?w?gS??p?2+??N?W"???????O?????>???[???}o?I??Z??]?E??hl-??1??l~????;???[????*???'/??w???9??P???x&?????v?????u??Z??}?????T????.V??9?}?x_?j#eKi????????>?}??ox??????????j??RYj???_m_?)?????b?>????>}??y???~O??Q{?pf??8?>6????Oc?kI7??y?w?q???????T?ji???=?8g??????aO ?J??o?x7?>{Pv ??|i_?p?w??5?????:?c???z???Z??x???y??-????X>??m??????????F? q????c???%u[?&F?1G?????y???????bk?q?????????s?t???~?\o??ky??K?z_!??i???s???2?5U?Z?.??J???????????u?????v??+/??S??|~???H>!???u?1nc???-m#F?????yy????S?7Ubk???r?n?????~^???+7?8??c???????8??';?w ?=??[????T?M2w?s???i?F#?? @?o??n?A??v/????}?>??>??NoCq"??x@%?^?????? ?v???G?g???g?#F???????????^??m??|J?~s????????l]????????S?~fa?mV^???????[??i??~~5?Hm7?6w???m??^\????{ w?b???m??? 'V6?=????T~S;???u???z?>?????N?~?M????2?#F????????~?????wyD;??e??}?t?7X???L{??C&?U???u u?????+???????ZyNZ?????R????????f??Q/W????C?|?J??????? ?EYL??? ?R>?46Vo?????:.??~?>??m???b8??R?R^??? ???4??????b???uG????r?s???u?3\??n}m????+?u????=??>?N?????;`/? ???S?????%????????i?4s?K???????K????X???_x??????????l?4?@3???+??N?j?x???-Om])fn??_s??q???[?5???]X??>????]?{??}??xAyZ?5'????o?m?_?[??????~=[??m???q???/[?6??x_???? ????????.?6?1O???????7nHS?i}-m??;??1?}?w????????yx??????K?????D??_P??1?(??t????Y?=?_????y|a??cK?-+?7???7XP??r???DZ??yne????_?-C???#????????h?|??u9????0m)?_?? ???,-?--?lr?y?|b2#?}?w?f?????{XW??y?/?:???{w???????Tw??]?,??f????x????????b???I?|?^?K?x?ci???L??Z?ya??kN>?G??R?o??????[??n?'&?$????o???g7??X9?8??d_?v(???>Z??0?a????l???%mi{??[????x?T{???????4s??7? ??T??????q??????7???g?????({?Y????t?-??^???},m??i???%??,yY??m[???-mo?k??O?{R?|??s?U?}????_*?????'W???z.?;???|]K=?2?m?kIyj??X{?a<+x?`?G????[?~????8???S???T?????/?????? ?t????yE???}???3??h'?o?/I??n9???)??]???zj?W??}m?.????????i?|????+O,?????m??u??????_?.??jm???/?:U'???~??2 ?????f??w*?97W?]~n:u?????i?n ??? y???9elI??N?Q?}????????23??e??????y?(? ???<2X{?1???w?w?X??p~:??-????/?ss? _?N??Ps??0?{s??87??4m=?'e?~?K??wt?G?RO-??H??387??]?k?s?????q??r??k?v????>m4??Zm???????m?k???P??qG???+?c??j??9C??|?G?????>??c?????T\K?????????#??4M?????%?3b?????k?\??;?W)???yz????????o??Y?????????0c?h????w??(??y??R??o?'??D???7|S?)?[?9?????h?? iJ??{I?\?{??o???++i??q??Vy??E???L?k??V???????i?^?\j?S?????o?? 1?s??o??????? ??v ??9???.??????r??S?!?^???8/n? ?????9?b?D{?~ ?h?P?WW?o??oo???|:????6?o??b???mF??????U???4??aS*?m ??????_???????P'????y???p?n[>VP?????J????u1?2q??J????\???v??????OK??~???mq^?E%m??{? ???q??z????8?? ???{???<~???x?6?1??????t??e(??o?b????????U?iywe_y=????]9?7D???|????[??????????? ?T??i=b??????:8,???.?{?5?u?1'?????????????W??????m?k??????#f?1sE?@????!??]o-??~????O|?J9k?s?)? *??;;??%ZR'???]???y?????K????|G??xiy???V+????????7?#F?czO??=)?O?????E??~{???+????????_%???;J?/z??r??z]?.?+???????T????Z??? G???9???????&1b???aL?Fbs?g?U?q}??.,???/???????????7uL%1N?% ??7??"?q?^?7?Z????d?l,G??8????(??a?S??S??l_??>?5^w??XP??2??$F?1;??=w$6m??m??????i?x??|????????>?v?????1n:???iq?^??o/? ?pa???m?up??Z?dv?c???.??2'S?\???????'?|Q?-~????????9?N:?wG/?B?PZ?op?n??2?c??;?7???????5?1&1b???aLo???+?5X???=??v?+]w?<4??x??^Q*Og??;???????}+??}?x??? ?zWC?J???b ???l??t0????? ?S*??T??_!???????[>?$F?1;????????t??"??{z%6????(K??Kt?j????6?Y??_/?????M???m?M?z???,??u]/?3??+7?l?lZ_?F?+??&?????p????11?`>??P?*?9? ???^??????)?????8?1?d??:vl??&?#F?cz?w?k?4??+?:^?P???,?w??wF??w?5?s????????z??g?|E??}?[?W?????]?.3???u?r?O????? ???E?uy??nb?'??H?L}VK??y+7?????a??1????Zg-?>n?0??~?1b??0?????t???;??0X?>n?P?R?Re>D_ *?v??t??????????^?N???u?????????????W???^??#?@?? ?nh+???- tC[*??????mk???C7???nh[=_C[=??4*???`??v????D??Ii??WJ???G??"??g??A&?5 Y?1???JJ]\?Q???K??iAq?b?(@?(?`?R??_?e?;??\????Q?[?????+? pUB??j??#K??t??)???tL=}G??????????[>?V"+?? n~??T/l?????*X37???KtU?B???3????t]j?? ??5 ??6?[?)?[?[?$???????M??Q??"s????&s?Q=?E????6?s?4g?s ??6? Gu?? ??V???????m?S;???s??Q?"u??9?&q?Q3?E????Vk??z?;??56u?vu?PK ?j???????f???r ???????3?6r?s4}? ????dt???nI8??r?m???????r??:?5?{???u?j?? ??O??1Q????UD?#T?.*??????B0???8d????^???uo???????r?LI.h#???9??i??8?9?d?U????????Iow{????ZK???m?????b??W4???1??5W?m:?x?? ?*N]D??_??o"6??]??^PK O'[???7????d?+=?{??l?jmC?j+U??????k?r/??L?7I???EMX?<>??f?>S?????]T??{J??\S?*X??F\e1{M6$ ??E?????a??7??JS????c!8?3:?a? ??CM?????1?J?y0??j??7 ??(?1??rR?0???E??Al??\????????? 5?h?~?$?.[?????RhvP?G????9?K?g?"??Tm??x"??? !??L ????d-??6?&????K??8P3Z at 8 ?s?8 `?s?Sq?Qf?{{?V:a&?????Z???X?????c\%?g?8????`?,??1?(7??v??????????R&w)???1?*???h?B?C*? M??V*?\??K?????&??`?E??#?0?4)????1u??9??f?> j?WE5F>@X< l^??J?T%- kmA?m??]@sgv????????7?o????kF,)A?>/??????S?.????o?Nv?Q??h???? ?????'???K?n?FFS?h--?i+?X??:??'??y??J???LE??ce?}]??wn*????? +?N?????5?&???Hu?X?:?5?g??7t????{2????Z??@??Dw???h??i?7???????*F???D???7??t^]??E? ?~??k?????}?&3QA? Z??Z????1???D?))?M??v????/???km??~????(????{%?bw??????u???R/m?yQ ???]?.??????z7??8P????]k?}??4? ??/???t???????j??=???? ???@c?3??0????????PK ?X??a*QZ?Y?m ??1p???O???0??W,OR?0?V6 A?Wvo? ???z ??h???o[?^???t?G???? PK v.T2\}????/?0???????g?%O???t\e?????r???{?RU?p?=??x?(4???of1t?Gt4?\??k??G??k????? ~>?7??[n|xb????nVA???o? N??U?<n???M^?V??3*??x??????B?w?+?|G????h?4xo('????????%??? } ???7x????yU X$??q?;???r?=?wj%?'?@??O?????>???S???wR??$ ???#b???2c>??pM?~??u??h?yD??????g???~???5???x?H???l?? ????????/?C?d???hoh???Es. a?R?u3D????[L a?????tV??uo?IO???e?@/M?J??r?? ?2??????R,2?E???U?]X7????.??F?: ??6I??7?2? +r?????;?}?s-?A?w*~?-?CZ???%oF_X'z?????+?b:nA???I??#B?*???Z??;????,mq???v???G?N??w????lyybZ?????T????ah?^????-?????E?????4{L?V@?????????Ao4??????C???]??3l????!??????>??{??VJ?*???????a?????I|:???M?????O????bs??PK a?cIANb<(? ?cW???)?S??? ??{j?(i?%?8??=?b????7??X?????????Y|`+???hj?v,?????@wT?;X?????-??E?Uv?\8??.??'?h? L?)A?(?<Y?*?9???l????h?U??g\?Iv??d?F????d????G??t??N??#Y?#?????6????dY?+Nf=? ??m?2?%?????????;G?@W??9??"??)H9??+7\??J?? ??V?a???f?X+c?T\??X?????acg?JPS9???^Q??4?0m?s????1??+$??5-L????v?-??El??`;" ?D??)?tL?S+@-??T?'????i!W?FX???l;? :Ea???y?4!????+???????r?j2?\??D?9???x?4xm?;??)y????????5#???(??A?&88t?????2|??ee??????W?XH??r d?$c?|????~6+t?%:??*?nU??k^?(?Tr?g?@??b?Y????\??2?C??'(??`J???cq??ZFdY???? yAm?P?DO???>| ??\oB??7.h????[??}q@<7/????rl5?eO????6????? ????y.??EW?fp???????L?????1j/7F?5?4?,??????? \_??????d8?21?x?S??\?x?GHv? ???8C??7(?o??f?~??,??d?i-??P??x???L?dQ4??1Vb:??K??)^b}?? ?? ?%~?????o!? KC&G ????S??`xe??yr?%&??\jn????p?R?GJ?????y)H?HEld?AL?, Y?B?U?? ?U???b(?RB>(??_T7?q????e????F!z?>??8?L?WX\??.?b??HD???^?????!`????y;q?K????L!=S ?yt?d(??]?"??$:???e_???tyP~? ?????RF?[Qm??Q????????q??c???????????Rh ?"K????=??}?nc??0 ?} ?z??D?E???F?jl ?? ??v6?(??0 Gv$??QE????????????F??#C??>2M,?F??%?J?k,?r??m???????Z?K?g?J?r?n?q??L?t?5??VX?,\?7?????`??????????k? =2v??f?1?VZ?b????;?(;?_b ??h??oL?>????|EF.V???y?tL?{,MX???????R?? ]=? ????~yQ?L G?????r??W\?- ?)+?#A????{??F?[????b ?c=?1[??????K6?a?^'bsk??????^?;?_?,o?PK 5,? $ ??;???|??????XDx=??"??0N????&~"c????7???p???_?i\D??eY??????N?7_???" ???%?,?~?^? H???0pMpG&?D&p)9?>%x ??@"???H?<]??w?????F?N??{???S?????6E?j?? b?kK?8?QE?& ?\ ?]?#r/???W???c??Y?????Z[?Ak???&?' 5??x??????????tP?^?&?:???>JQy?????pv ???`?V????O?o-?? R}??Q|t??Jq?7?a??*?& O?m?{ f??????XV? [9?????*?L???(EJKS?????? ?#???? ?M?????????v????8*k?F?D?H?K??{???[n????[Z?1???????^????????"?X?'=?t??m}??uQ?[?>??^???.????`??,zlo??zK??l?????#????_<y???~?Jr?? ?;t?`?e??O]? ???%n??`x? ????X???PC??Fo?_k|H??W???+1  Px?? Z???{?`????????????Z?A? wO?C???z?A??{(? F?u???`V=?]?Ah?2?|?????j??0???Jpj?UM?????;????? ?,?x|qt?+??????E???@?m?Z? ???Y ???3????^? m????x????WO?M#?-???a???:????/y?4M?$?????????ZD0?H^?r!????\?cw2???7?v???'*??&??? ??_^?0#??d????N?k????W???:?PK ???:#?=?s?1??,???X?`?.? ??a? $?_?D??????? Author: wart Update of /cvs/pkgs/rpms/manaworld/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24183 Modified Files: .cvsignore manaworld.spec sources Log Message: Update to 0.0.29.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 6 May 2009 18:49:20 -0000 1.14 +++ .cvsignore 6 Jul 2009 05:49:45 -0000 1.15 @@ -1 +1 @@ -tmw-0.0.28.1.tar.gz +tmw-0.0.29.1.tar.gz Index: manaworld.spec =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-10/manaworld.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- manaworld.spec 6 May 2009 18:49:20 -0000 1.17 +++ manaworld.spec 6 Jul 2009 05:49:46 -0000 1.18 @@ -1,5 +1,5 @@ Name: manaworld -Version: 0.0.28.1 +Version: 0.0.29.1 Release: 1%{?dist} Summary: 2D MMORPG world @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 5 2009 Wart 0.0.29.1-1 +- Update to 0.0.29.1 + * Tue May 5 2009 Wart 0.0.28.1-1 - Update to 0.0.28.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 May 2009 18:49:20 -0000 1.14 +++ sources 6 Jul 2009 05:49:46 -0000 1.15 @@ -1 +1 @@ -d92b06bb580df72587a668f97b8fd6a7 tmw-0.0.28.1.tar.gz +263de26c8545a261c6b82b7ae639f733 tmw-0.0.29.1.tar.gz From whot at fedoraproject.org Mon Jul 6 05:59:06 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Mon, 6 Jul 2009 05:59:06 +0000 (UTC) Subject: rpms/xorg-x11-server/devel .cvsignore, 1.59, 1.60 commitid, 1.22, 1.23 sources, 1.54, 1.55 xorg-x11-server.spec, 1.442, 1.443 xserver-1.5.0-bad-fbdev-thats-mine.patch, 1.2, NONE Message-ID: <20090706055906.78BA311C02C8@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26659 Modified Files: .cvsignore commitid sources xorg-x11-server.spec Removed Files: xserver-1.5.0-bad-fbdev-thats-mine.patch Log Message: * Mon Jul 06 2009 Peter Hutterer 1.6.99-9.20090706 - Today's git snapshot. - xserver-1.5.0-bad-fbdev-thats-mine.patch: Drop. Merged upstream. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 19 Jun 2009 07:03:32 -0000 1.59 +++ .cvsignore 6 Jul 2009 05:58:35 -0000 1.60 @@ -1 +1 @@ -xorg-server-20090618.tar.bz2 +xorg-server-20090706.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/commitid,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- commitid 19 Jun 2009 07:09:28 -0000 1.22 +++ commitid 6 Jul 2009 05:58:35 -0000 1.23 @@ -1 +1 @@ -1e9907499c27321a2aa5dc8a75a375b7a82c999a +89cf81cd85919e3dbb5adff5e6c6056c7990b60f Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 19 Jun 2009 07:03:33 -0000 1.54 +++ sources 6 Jul 2009 05:58:35 -0000 1.55 @@ -1 +1 @@ -ca0f369109b6f9bb62eca60fd5a2302f xorg-server-20090618.tar.bz2 +f8acd1118a283e21fc3dcadbaf5334de xorg-server-20090706.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.442 retrieving revision 1.443 diff -u -p -r1.442 -r1.443 --- xorg-x11-server.spec 29 Jun 2009 21:52:47 -0000 1.442 +++ xorg-x11-server.spec 6 Jul 2009 05:58:36 -0000 1.443 @@ -14,12 +14,12 @@ # Fix rhpxl to no longer need vesamodes/extramodes %define pkgname xorg-server -%define gitdate 20090618 +%define gitdate 20090706 Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 8.%{gitdate}%{?dist} +Release: 9.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -57,7 +57,6 @@ Patch2014: xserver-1.5.0-projector-fb-s # Trivial things to never merge upstream ever: # This really could be done prettier. Patch5002: xserver-1.4.99-ssh-isnt-local.patch -Patch5007: xserver-1.5.0-bad-fbdev-thats-mine.patch # force mode debugging on for randr 1.2 drivers Patch6002: xserver-1.5.1-mode-debug.patch @@ -517,6 +516,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Peter Hutterer 1.6.99-9.20090706 +- Today's git snapshot. +- xserver-1.5.0-bad-fbdev-thats-mine.patch: Drop. Merged upstream. + * Mon Jun 29 2009 Adam Jackson 1.6.99-8.20090618 - Move xkb requires to -common subpackage, Xephyr needs them too. --- xserver-1.5.0-bad-fbdev-thats-mine.patch DELETED --- From ianweller at fedoraproject.org Mon Jul 6 06:05:55 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Mon, 6 Jul 2009 06:05:55 +0000 (UTC) Subject: rpms/tremfusion/F-10 import.log, NONE, 1.1 tremfusion-lakitu7-qvm-remove-lcc.patch, NONE, 1.1 tremfusion.spec, NONE, 1.1 z-tremfusion-menu-0.99r3.pk3, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706060555.F41CC11C02C8@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/tremfusion/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27941/F-10 Modified Files: .cvsignore sources Added Files: import.log tremfusion-lakitu7-qvm-remove-lcc.patch tremfusion.spec z-tremfusion-menu-0.99r3.pk3 Log Message: import tremfusion 0.99-4.r3 --- NEW FILE import.log --- tremfusion-0_99-4_r3_fc11:F-10:tremfusion-0.99-4.r3.fc11.src.rpm:1246859617 tremfusion-lakitu7-qvm-remove-lcc.patch: --- NEW FILE tremfusion-lakitu7-qvm-remove-lcc.patch --- diff -up trunk/Makefile.kittens trunk/Makefile --- trunk/Makefile.kittens 2009-07-04 04:19:17.255508853 -0500 +++ trunk/Makefile 2009-07-04 04:19:23.797509418 -0500 @@ -808,7 +808,7 @@ endif # Create the build directories and tools, print out # an informational message, then start building -targets: makedirs tools +targets: makedirs @echo "" @echo "Building Tremulous in $(B):" @echo " CC: $(CC)" --- NEW FILE tremfusion.spec --- # Source downloads are available from the hgweb instance. Whee! %global hgchangeset 1421 %global hghash 4b5fc919fd59 # Used for pre/postrelease: #%global date 20090704 #%global alphatag %{date}hg%{hgchangeset} %global lakitu7_rev 174 %global qvmbuildflags BUILD_SERVER=0 BUILD_CLIENT=0 BUILD_GAME_QVM=0 BUILD_GAME_SO=1 CFLAGS+="-ggdb3" %global tfbuildflags BUILD_GAME_QVM=0 BUILD_GAME_SO=0 USE_CURL_DLOPEN=0 USE_OPENAL_DLOPEN=0 USE_INTERNAL_ZLIB=0 USE_LOCAL_HEADERS=0 USE_VOIP=0 CFLAGS+="-ggdb3" Name: tremfusion Version: 0.99 Release: 4.r3%{?dist} Summary: Enhanced modification of the free software first person shooter Tremulous Group: Amusements/Games License: GPLv2+ URL: http://www.tremfusion.net/ # How to generate Source0: # wget http://www.tremfusion.net/hg/tremfusion/archive/%{hghash}.tar.bz2 # tar xjf %{hghash}.tar.bz2 # rm -rf tremfusion-%{hghash}/src/tools/lcc # the license of lcc is nonfree # tar cj tremfusion-%{hghash} > tremfusion-%{hghash}-nolcc.tar.bz2 Source0: tremfusion-%{hghash}-nolcc.tar.bz2 Source1: http://www.tremfusion.net/downloads/z-tremfusion-menu-0.99r3.pk3 # How to generate Source2: # svn -r %{lakitu7_rev} export svn://source.mercenariesguild.net/lakitu7-qvm/trunk/ # rm -rf trunk/src/tools/lcc # the license of lcc is nonfree # tar cj trunk > lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Source2: lakitu7-qvm-r%{lakitu7_rev}.tar.bz2 Patch0: tremfusion-lakitu7-qvm-remove-lcc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libcurl-devel ncurses-devel freetype-devel SDL-devel openal-devel libvorbis-devel desktop-file-utils zlib-devel Requires: %{name}-common = %{version}-%{release} Requires: opengl-games-utils Requires(post): desktop-file-utils Requires(postun): desktop-file-utils %description TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package allows you to play on Tremulous servers. %package tty Summary: Non-graphical client for TremFusion Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description tty TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains a non-graphical client which opens only an ncurses console. %package common Summary: Common files for TremFusion Group: Amusements/Games License: CC-BY-SA and GPLv2+ Requires: tremulous-data %description common TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains files required by both TremFusion clients and servers. %package server Summary: The TremFusion dedicated server Group: Amusements/Games License: GPLv2+ Requires: %{name}-common = %{version}-%{release} %description server TremFusion is an enhanced modification of the free software first person shooter Tremulous. This package contains the TremFusion dedicated server. %prep %setup -q -c -b 2 cd trunk %patch0 -p1 patch -p1 -i ../tremfusion-%{hghash}/misc/lakitu7-qvm-svdemo.patch cd ../tremfusion-%{hghash} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 sed -ie "s/Exec=tremfusion --quiet/Exec=tremfusion-wrapper --quiet/" misc/%{name}.desktop %build cd trunk make %{?_smp_mflags} %{qvmbuildflags} cd ../tremfusion-%{hghash} # Usable VERSION content: "%{version}%{?dist}-%{release}" or "%{version}_R%{hgchangeset}%{?dist}-%{release}" (for pre/postrelease stuff) make %{?_smp_mflags} %{tfbuildflags} VERSION="%{version}%{?dist}-%{release}" %install rm -rf %{buildroot} cd tremfusion-%{hghash} make install %{tfbuildflags} BUILDROOT=%{buildroot} INSTALL_PREFIX=%{_prefix} # For OpenGL wrapper -- https://bugzilla.redhat.com/show_bug.cgi?id=509664#c5 ln -s ./opengl-game-wrapper.sh %{buildroot}%{_bindir}/%{name}-wrapper %{__mkdir} -p %{buildroot}%{_datadir}/%{name}/tremfusion/base %{__install} -pm 644 %{SOURCE1} %{buildroot}%{_datadir}/%{name}/%{name}/ %{__mkdir} -p %{buildroot}%{_datadir}/pixmaps %{__install} -pm 644 misc/tremfusion.png %{buildroot}%{_datadir}/pixmaps/ desktop-file-install --dir=%{buildroot}%{_datadir}/applications misc/%{name}.desktop cd ../trunk %{__install} -pm 755 build/release-linux-*/base/game*.so %{buildroot}%{_libdir}/%{name}/ ln -s ../../../../../%{_libdir}/%{name}/$(basename build/release-linux-*/base/game*.so) %{buildroot}%{_datadir}/%{name}/tremfusion/base/ %clean rm -rf %{buildroot} %post touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %postun touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ] ; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi update-desktop-database &> /dev/null || : %files %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name} %{_bindir}/%{name}-wrapper %{_libdir}/%{name}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/pixmaps/%{name}.png %files tty %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}-tty %{_libdir}/%{name}/%{name}-tty %files common %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/CC tremfusion-%{hghash}/README %dir %{_libdir}/%{name} %dir %{_datadir}/%{name} %{_libdir}/%{name}/game*.so %{_datadir}/%{name}/%{name} %files server %defattr(-,root,root,-) %doc tremfusion-%{hghash}/COPYING tremfusion-%{hghash}/GPL tremfusion-%{hghash}/README %{_bindir}/%{name}ded %{_libdir}/%{name}/%{name}ded %changelog * Sun Jul 5 2009 Ian Weller 0.99-4.r3 - Add OpenGL wrapper - Upstream changed 0.99r3 tag again (hg:1421) - Switch VERSION buildflag to the release version and add release macro to it * Sun Jun 5 2009 Ian Weller 0.99-3.r3 - Upstream changed 0.99r3 tag * Sat Jun 4 2009 Ian Weller 0.99-2.r3 - Use system version of zlib - Disable VoIP at upstream's request since it's broken * Sat Jun 4 2009 Ian Weller 0.99-1.r3 - Initial package build --- NEW FILE z-tremfusion-menu-0.99r3.pk3 --- PK ??w? ?H/?w=?????}?=??????u???Y????o?M?????o*??Z??F?g????t?"?????{?]? ??j???\?=???j?|?F??r?l?t?4G??;????c??????Y?????6X?*?M??W??+f@ ?E> ???kR???? A???: j' ?%??$???M???3????N?????"?_#?^????Ny=_?j=am=?????[%???*???x?WR??6?]??????O?tjb:?z????czp%????W???V???d??f?%??D??Ty%?  ?RFE9T?\&????\!?{2?W??????????????*?/?????P \???][X?_ZYQ?^Z?PU?V?Z^S????????????B??z????????????s??g7??_f?V?7???s???????}??OG?:%f????????.*??c??f??a?`=z^?Z???B?'m?????>?((?_?=j????-????9U??Kg??&M{-?]\{N???ZM???f??w???Y5r?:???XK????Xz?|!?qc??g?R9ooS ?osm??z?0??t6"???? ??????{???y??U9?L?B!?J?????.?I?FO??d????????cV??????#???0?g?????????G??4}? ???9????B?aJp?? ??????????c?X?n?`?2~Z]?Y?k????@?2?T???4??'??B?b??Zl??????!o?\'&K? C??KtbR??Z??\??)??u|'???[Y?iv ???j??2j?P???!???K-e?|&.???8H?@?Y???\?8?;xL?>5??^?;f?P8???.p%L?jT???d?h?meh???O?????8Z????????+?w?k??B [???t??UfJGfz#???,C?EBS?"????"??? ?X?_?1????????3?O%?T~T?N?? ????[ir??-??c????96Yc?????"???k????9?$@??Lm???????`?X???U??????|u????@aj???? X?SY????y06z????d????????????rn??hnp?`v?"??"g7k??#??c;??G?t?????sH????u{?????L?????@??????]?n???E??@A8?V E??[K|??-??n?~?????????????J??-d???B?Sk??>?l?A?????]??"?????d??==???Ao}? y?? ??&??C??[3??za??G??EE???m?{?vn?>g}??? Z},?W? ?E?"OGP ??n?????'E!?D .b4$7?????XV,???>? m??%???-z?D]?fnI??(?=(5??JsrGE:??2U???V{?N??7odk/?pd J??m?Vf??y???3?9??L?>?i@??^^NXt ???a?9??a??? #?A?r???????>?VIl?5B|????kn????v??????/??N?C}?J????)??o?2V_?????8??o?????=??0J?'[E?=,?u?? ??f? 9?1?/#?F=?m??U'Ye??4?????????J??g!?} m7( ??i????0??????^????Cu?????????Og9 V????{????$???Y?????dn??/d%"???????)k:??z???? ?? 7?????Xs?xq??9w[?Sd ?9?d???^??y???LA? ]jn??|> B2????19IDAZ.ox$???C??????????}C??Xz??????^???*??j)?x s???>#?1??y5??? ?D?]??????????"?O?>0w???#?^?r???b?????j$C?x8??XS??Z(?d"C????Y???X??r??1Ih?5>??1'??????/e???kv?0W\O?????[??"n???_N?9#?s'G?M+????G5e]?V?????E_?9$?P????GU7??\?J#[?"$??>?+$z??G?TmM?"]5Eh ? ??\?S3 ?X?L?Hk??????#c?i]'?? %ne~D`? ?9???????& ??X??{? ??5?S?wn??!1??q?}???????????/>?Z??U???j2??!??)?Ni}????n??4????~?%?g??t?\??^?#V????O ??I*?C??Db?M?????Z?f "?B LO?H???CF??!?b??!m?g?????5??Q(T?ID?Rms?h?#???GVn??g??f:?>???b?sV??TU?? ??(???q?k??a???p?~?e9??>n??|U????????_??? ?wY??J???Y!?r|???PF4?^?D??u?????%??`hN?t?o??I?/=?????l`l????OX.?0?q?:???X?????TP??{?~?[Di>?R?5??Xv?Q??>?5`L?^u??;???3z????& HO0???Q?A??????????@?`?Z???????T|x??6?}g??d?e:(??5???{??Z???@?,??]i~ B??+8b???a???*?6?N?? L?]H?????w[M?&w?]r???)??5?,??????&E??h?????MfN?&?9?/\??#9??A-g^?/??dW???r??#?@?9??Yf??????gsU];?zK?X ??N?o???o?????h/?o?^'??N?ZL?$??????????Y?Z??????1??\?????q$?u`r"?H?w?426{?N>?<??]?L??^?WL??M??%?|{???z+V????Y=Si;???|?Fo?v??? ???a(??????h???6????_?????pu??????0H??1?#???g D? ?Cd/-????dy??????????m?????\??D????? ?W? ?7[O?=???w??_?> T??2?0??,"?oos??N????J?l??@4? ????K??2%?H?:N91??Xh??P????!?]?*>??X5?=E??????&?X??IP?8????B;?z???? ?4?? >?s?p?lH+?m?NY?Fp.??aN??\? ????nH?sU? !?8?y-3?e?36???mv??q?u??l?Q???K?`j???^?????J"2+?????TQ??m}H???:???D{B??????:~^??? ?????!?n?z?6??$w?1??? N??????? ??d??@w?;3??' Cd? ?o?H?? ??+n???#?r*h?uH??b??El?3??????6?????h8 ?%?8??N?? ?0? ?e ? ?/???Dh#?+????!??Co%?/?jl??i??+?- L?????`?????i?c?9???KKC??????g??? l??7a???????;??????u??!???chd"J?W?E9?(hp1?H??e(?r??9?i???Af#Z?t??d ??y???fs ??EF????????%???p??{??v?`@-.???M???3w?^????I D??S?? k??? )??`??280?`?? ]??'\*?^? ?(????6K????dc????Agev$kF??}?c?? a`???????????I &??J???k???J?g?g???bl\????Qg?PI[?[K???b1??g??????$5#?t?xL?d?\???06???d??MJ?Z????p???|?2?}??W????{???Lk????B?^?9?M??Tx????u???9~_?-?>?g???)????"E_?1???? ????????t????zoO?n???8\??DHV??q?,+X???q????6^???-?/??1??????????G??r??K?I?d5???<???????????????Y??5?'??2PHG}Uj?]^$?7????o?Z8'U???Fx ?\ ]+cc+]?) ???}?L?????w????3?{????)?M???Z?S? z1??b?Q?? 5????x?`?RN}?>?xs?t??*??\77?O??,j?IL|Y???????????K4?~)??????*x?J?@??#???Fm???V?????~?~??v?y?"??????t4S?d?@?&?/>???Lzq-?zI+O???{?|??$??`?Qo?????0'Ll????a????/?rL,k5? >??o % ??:!\?e????*?????????????? N?"???V???T??E?J$???1hV????> ??? k? Iru?Us?,?J????S??S???~???yf??|sEi?*?7+?? ?z1????Te|?-/?$^??HLw??????'?????'X?NA?A<Lbb`???"v?m]??=?K?Y 9?4d$ ?R?nD??!??? ?{??E:Ez% ?r??-f????=2?B??r??=??.???????w?>J? ???(???\?5???h??/???????}?]=G?mL?5?$??7??]1???.*ppbU\EE??a?V???*+~j?z-0.8???f??#6af????+???j"j;??&?MG??3???<3>?;r?e?????j;g?u?U?^zK(70^m?N?1?S?E??A??]\ (???[???h??=?&?z?Z????LE???PC@?!??#? p?????? ?io5?szm?8rM???o????4;??J?H8?5O?? ?WF??t{g?:?1?????e?"l??)???V[x??=b?uWZg\{%???:???Q???/d?????~GL?????$????v???f?>?Mm?5hsnW???I7_??_@??$? /a'?3?y ?I? ??????&H?K??gG?@n???:? '?lh?6D?OW??CbF?C"?s?$?>k?g3??M?*Q.?0?H?Ks??V?T? ??X '?r+?):8=???nx?? W?? ????R\??????f+Y,?e`3t?Z??(?J at o???>?J$??????t??b??,??????Ca{??MY?w???v?Wa#W?[? ??lAC??!???6?dw j?d?????xs?W*7Q?? ???:????Q???u?@*??????n??xC?H?9?S ??UDWs?h@?????"D?/?|w?????@j?B?? ?J?a???V??g?T????2??=y????Q?!P????OB???/??s???C?3????U?m????,(?^ mh)?)k??hP/?go???a??W?(?|??? v????#???????y"7??"O?w]D??Y??- \???n??t ? k????!?????[??',?????&???/?v??)?????.e?????PA?*???BC}%??/??u?_?????W??=?s TF????@5H,???7?? ?:???*p???n??W@?'q???? Jz?????3?????v{&??j=????f???TV????/? Um?>I???"?Tp?=Fe>??o?aN%gn"??m?A????/?iD[Hvn??????K]????Ls?-???>??_??U???;~????????j?D?N ???????]/?J?Wz ???yZ?+$?N??m??W????P?V???{,??ON?P???qq???*?:?g+v?#`??`????2D??F?W????Kf?G_t?????????????)?? ???K???tQ7?7L?z??????:??*s ?(fH?FP~??x???Do?U9'????]????t???d?uZ???;g,k?)???????M?03??K?v?e???n???Js x8|?bH??YF%??sU?P j ????U??Q?7{?l?k??????Iqup??-????Y(?Z?@??MM?nh??2?$@??Qk??6?6Y?N??U??n?C???ED?K???NP!?????!$??KZz?d?e?l?? ???%????ze?U???A !?&????Nu??W??~?l?%L\!?g??]zE???=??????????{?:?@C?N?&M???p????G???XA?,?-w_??#G?? _?%???0???????G??IIA?!?d?|w~??aGx?g??tk;????*+,#?A???????????0????? d?P32f?X6?_?xj?\?????1?H? L#kd??????h?\~Z?????[8?B?????g?J???/8???Ywff?FAf?gC?$????]?O??9%????z????? ??+\g??C??A???Vm??f3 ??q?[??9I?v6???>t??G??~?*#???3{]?'(? 5?6?8??S?$??&?m?Mv?r:??{??3?q?P7??i?O{P?UG?8?;QK?C??x?u??x\?+?_ ????c, 2?Va{$^?????_?o?H??Y%???????G"w???? /?v??P?nS?C"??`;????W???I?$:V??????*C ?1z6??=}??^?? ??????g?L????H????6C??B???=???t?Wx?????u?$D??q??I[4??$?TK#???vHF?????7???~?6%?? p?U8 ??????Jg???c?k]?????AD ?F????????8?????@?A???o?x{D?r?KH??Kq????< ?r??pB????W?|??"Qp3??@??|}?????h?X??#wb?vy??6??{}L?^7h;J???.?a}??n??j???=?s?>?o???????A??X|?]??cw????B??? 0?4 ?rC???????X)g??? t1????I?????S-Q /fz0????-?????3?????DO?'[D????Sl?? ?z@???????m?E?3?'????/?z???5??????fD! T;??? ????!@????}????? ????r?3[msmEUCuCmiYeYQq??{????????Dm2n~??Z??? m??X+ ?)IV????*Nh?;??Bj???? ??????+??????=???(???)SB???b?P???y?p?Z?C($? Lr??|? &f??g????]?hA????r???f????????0?1?? ?;?v?? ?jC?3????O???e??_uRD-?l?\???~?,?F??Y?? c%}??9?w????G???3X?AsNy?/z^(????dr$??n???4????????i???%?????I???y?m????H???p??0?? /??ac$|sc?#???g''N?fx>Y???}?T/I? ?_?> ??1?5????L/t??f??STf??o'|????Y??z??)Qv? %?? V??H#??h?9???4?U~???3 ???M???? ???M-?K??{????55???+?????X(????9KP?u????c?z2? .???????)3??b?????A?y?4%?A?:j??1??4??Zb?C%?[?)????i?????(O ?Bw?ltZ ?????5?$???#?N?l???1x????????3?p?? ???%x?,??? ??????u???\U:????????yx? U?3???h????6n??F??G0?|@7???G x?O6?6s?4?$??/???m?y?????dg=ho?4????,??x?? ?N?> ??_?P?C?wh???o?0 $Bn??Q???^QXJ??Q????F?$*????Z-\?lmw??^?Z?#7?9???t??*?B??????W??z???:??ox/?r???7?????gkw?%???T???6b???????qQ??? ???n3l?z??4?$?w?'????w V??[i?na???? 3??'"'?D,?!??E|???~cg7 ^?,I?P???G??9o??x?>o??_?;?3??J?? ?_2?????W-}=?h_?9 ??y?)"P? T??o??b?????\r?P)?_C? ???(?B??F;?%?c??#?f?Vk?????????0?~(?????????>)?c????Ly?0???v?'g?9?c}???\Db?y?{?? fllL??g??~? 4??N?B??br?2?~/%????#S#????'~???Su D???????TI????:,X??????e?w??????Y - ??d???P?zB?Qs}?:@F{ ??37?r???-?;????(wn2V?]????G?r???'E?i(??????\SP ?t??c???n??L?????f???? ?)A?L,?[?q^ y?9?k> ??~?|?k???u?h????LnO?n? ?N??"Of&?KH?#Z?mmP?p-B,??!?????z?|?2??D???X?@????]?"R?c"???f ?Im at F?????c???E~;???2?/ ????????? ?1+?-i?? ob *o>p?H ?????Q?$?Pp|gqk??z?k@??????VS?????m? )?????A?"#XMKU?Z????pV?8h?j???+Tt6???&?}?tC??L?)??????p?????U?e?v[f??$wC????1$????????c??X4]???????/??6q6?h0xIX???????#?3??-?????|?Iu?????-??-???????i???>q???U???'yzw??I??????????c????1  ????????????97?ul???0???q?%????oh?1???g??,#>d?a AU?*q???|?`?u?v????~0??x???Q%?Z?# ????<>.?OC?a'??uniVQ?]?X?n3?&Y ?hQ????g+?\4Y?m???$???c??OA ?k~????t?=????0)???Oyx|?z??r8 0?8#?;??#????s???? ???Q???4C[?>~r???? ???UGzl?W'???????M ?????"mI???O?d%Lp?\????????s??ci9zh??????m?F??n?c?/?g?_?.??5`dB????T?T?(?????#?k?A?? u????1?-e%???t?? ?FB????DO??a???N?)???k;Ji??0?F2v????A?????tW????&????'????_8.??xIh?+?????? YY V|??q&???Hh? (_h??I???? vO?? 6?NI??????9(Ur???5???]?ZW??h?D??????ov??????? ?+\?X2??|???W???q?lj??L??????f?|=;??=?_df???]?sO??:+?V{3???????5????,&_??;???^?\?????D???;=;?.?_P?Tj=RSU?w?6?t??9??~rV??h ?????L ???E??=???????&"LJ???(+?|?gD?*?/.???w?!?}?? ?0TbT =-?A?v??9??D?}?=_hg?7?Xi?i_H????2]X??+?3K7??[?&?%????:?o\??G(???w?R????L???^?R??H????,?"Hs??b??E?(???L?????^ft?^?#??%?HM%?*??Y??5a??WB?^?|???p'????? ?^Ms???I??G?????:Cp=?4??!?????s??????nO??????8?Z]E9 ?X^Y?????;7*??? .????????? ???? ?N???a???????8????t?v9?Z?Z? /?? 4?%???a r ??3V?gc????C?M&???!2S`q??E?*?J? ? >?gJ{??x?v???l?M0???C=?????B???h? $????<??p\???????*7W?n~???oN[?? X??j?N?0]H`?C??vh???&=?kL?l?S{? 2?????S????=????%??}??????]?q??=????EU?JzGf*?+?>hj?xa???#????#XB?|mL????????&????Q(??1g???b??&e`????,??? ?g???D?w??????O7c??lk????&?8^z??}B???????O??-r????goH,?? ?/????? ????2? !??]??z??*????H?6Q?{?{Ow? ?w?"@?k? "?.?\???.]??Ve??=^;?>?r{i?A??2j??,?????}???8??????U}???(??J>S? F??B~??????X????7??I???]h?????;4??6P?????? ???"oN?k???????_??7cM????$?rOD????? ar??w?/?S&*|_?!:??t???'I>? ??%7H?????????|? ?+?'????????R?\??f?? ??1$??[?j[?/??K#???F??? ??J??*?????3???rf??]G??x)d? ~??N??a?H?G2?|???UNs:???????u??+|??`???s?{????J68]/? V??K+???4?8A????????????xz.??-^?a??????0?&??????s~"??oy?o4?~?d!c??9:XM?=P????y???q?X?wK?k R?>em?+D^Z??u?3?xj[?>w???????<^?x?pn?M??V 6=??*??%?~????]EZ?Ot?#??Y?\I??Q?#Qg[yn?$m?O???:??`N+ W??????8??????h?5?PP????v?????_{lj?h??lW? ,??|?~^1?? u?^$?gzL??]?{???q??k??M????%??A??`n1????,?M??9???????+F?Pf?-?O????I_?~?????F?nFPp|?>wkJ????P=pSgm????;m?k??m2???? ?j????u Rf??6?k 6~??? ??Mp?w?j!???DSZ?????? ???^qg??N????g|UE?16??*cF?/???a???w?(x u?" ?&?y?|?=?????f?Y?}(/???l??Psa?z ?l?c?9???|???"?r?G'?i??z#??G??? ?g??)? 0??JdNV>p???????7?Rx?G??9?????;(??I#?j?????\?K? -?@?2 z??l??k?????????????????A?[?? ???? ?h?`???!I?J?E~???\,?)d????d?:???????m?^x????IY?0???o?D????@?y????+????_Z64)d!?pQl?OyJ[?(?>?$JE@?TI???f>zS?;h?6??> {1??-?Y N?_???/`q?? oC4?r??KG4J9???_z'?Z????S?1??Ou?? ,?=???1`]?P?-?R??i,c'7??????N?????m}+@????m??y?])?????G?????6??h?'Oo??5?<?: p8#Q?:??????Vy???k~???&x?_?e??b?[@?1??1?wV=:?? ??m???\?n???CI#&T?????I???mm?^Y?O??z?q??]R??qP?????\Q??????1Y??8@?\b?.??#???WA?????B;*??9K???????8?8???? u? ??)???? ??\Dd???f??'R???_???u>?o?&? d??e??*?Y{? ,?R@k???O?? ?s????_#c? ?=Yv??A@?? ?:f????)to???? iB???{?m??:^ ?G?????~?.? ???S??U? zyZ%!??&?A?To`??? ? s????8??a?@?I????B??2??W??=^???2?e3??G???????PR?????M%h??w?? ?8?l???w?hz?$?[????????p?q1}g???)H??C?????T:.???????|?b^I??^?2n?h?p???61?l?? A?dyT???OBA??????0??? ?U????&?98?m?h}TH?`??_???[\??^???@?????[j>z^nc'*?p';?&;???????K????w{Tv]???J?H?>?;????t??f? ??????^?P???'???????fa 3:]???????'e?B????3 `_ylQ?[?;??R?!-?]jy>?dG?0??t$?W?]??4?-??L ~?1??dMj?????edU?`k?7sH?{??6?????\^e$3?[? ??? ??b??? *??:Y,t?? ?P?x???Kj?}??9?=??????f?06)??b???7??L;|??o??3?fp????k?????d????E]/??????Sj?W????S??y??}k??ag?? +?????"9??&?>?Npy?o?)????-?D??9[???? ?/???w^??:?j? ?#V?????R???;??o???? ?:?u p???? ?m{?;?? :-??a?Z[??]??W?o?g?r?;?? m?^/?f^??sFs?]?????L??????G?}??m?G??I??????N ??j???8??r???a?V G$?O???g??WNx i#??|?_?????h?I2??lj???????:A? ??C???????rl_O?o???M?&S???_?i?hT*C ????+>?t???w?!'???? 9h?? i %?~23?Z+?p?9?P???)?I??$a?? +\3o?g???m?Y??.?? ?-Y"?'????????????$V?G?/???????.????q?P R?????????Q??R?? ?Y? ?V$?~?k+??,??7m|??r??q?G?????f???o????b?;^?&d????!??????]??#m?G&??5?jm?OD^?????????????q?gn?:???r?Y?4c?N???n???????M??*??I?k????:?N?[YF ???c?q??r?VO???x?E[Z/?9Y??????^/?1?W}?@?7?)?1??Y?v??=pd*? zf_fL??? y?1???k?9?????`)?????P???#?????@???? ^5>c???????`??z~??u0",???"?p????&???2x???Q+?????v ?/tL?CY?@k?b? ???:G?&C??So????{^y ??u){????????_?LIA.I\?;|?R?[L^??=?Z??f????Y-+?U?K??Tv^-a1g?g? ?v???&???????j?+ ZQ??7???~?K???|????R??7???'W????Fl??7=|?|?a-?????? ??3??%JG??w???H?a942?[?7/?- ?o???hRr????+? ~"???A???][#?(? ????7???N?b?JG^?'??ny\??*??W?^b?b? ?????kc{?J_A???????????o?_z????i??(_?????&pN???\?w?9? ??i1g~d??]?O??9?8??ezaZP?v?????? p?Q?AYo????Iq???????BR?in*Q?Q??U+??LH?????yx?TF?q'm ;?/Z?p???zR?5C???a?@?]?m??bPS?g yQ?,U???t?;???#??(?A?????^????6????????K?)?+?np{??i%5?J]ab?E??n!??@???~????????????/^???FK?ngj???3HZ??G???? ????S??? ;???2?|??????X]?@G6T ???6? ??6h??^?fr@ >:? pg?P O?xJ??s?R??W???\?????h}? ?(uz???L_Gj1?d?$2?=e????M?76????z?y????Qh}?n??????g?}x?;?_??oo 8]v??? ?P?)?,h??? ?Eul(????^???? ?wW?iz?O9???????>? ?!v~??8?;?3v!?m??d???6c? ?f???~??}?:???}???u]s????la??Q??<?d????????Ca??I/?cz????sw?????????q???e1?M????????@W? ?[6N??\V??a4????r????or????}{???|??(9???Q?)?y6???bG:????l?p??k?dV8??? ??)???'???^?? ;?+?0???3?)?`??=???3??I????a?Ka%a?8;G??3???a??K???L??T???9???@e?[?-s?F????0?m???A>B?r???W????l_?v????qS?s????? ?W?pA?'???,s???ge?V+???3`57w??:&5|?$o?????>)g?G?? A2oK?OF3????????z@?"???C?? ????)??<[??\e? d????; f? ?x7n?t2??????y??????[:?D??_ha????) :Hv-??'?Z??x0B?|a?!n#X3`??a????G?|??j?j)??? J??????????Ys\F?????????????7L=?6??????#??O?G????a?#?B????&??W??7??g+F??V0????[?? w? ?;h??De=?"?2????b&??g?"Q?]?vt ??v?)^??aQ????Qz?????!h???1`?6-1x??quH?? N???6? ??R9S|??"?3??q????5???????$??X?????^5??W1mS? ??N??Xk_N?|?%?]\0?"??eMP????z??\brl,X?$???????C?????i5???k??????4??)??????^?Q"`>??;5??? WKx???&?+?2?????????????E?eA<?`?@}=M?????$??:E??Vc??~?$?WD1??????(z???d?F1? ?????,?b?[??(y?W?????????g??NG2?? ??(??%?S?s??&???(?Y?gO????????>]k&e????6'?O< ?/? :?tM??t??V+?67???da?H??eC?0???8???E??y\?Q2a?,???{iyy???????u?E55u?e????K?S??????????????]?????bf\9???W?????_y?kj*?sX???}?A[wQ??u:=Bq?Sg??????zF??@y??????_p?}P?~?E;?\???k?f?I~Nm???f?9F?g?o??]-???#h??f?????1?Q?p+{Q??????????:i??(7?jo???s0?!?????7?lB?B?F???;4??A?(??${p??d??P?A?Vz?f?????$?a??8??4??? ?~q--3vRS?&k??r?$?ClM?????c?iE=??U?yC"=??h?P? ?w?#?n?}w+??(??$???R???:rB?{H?u??l???3???XgL.?r???h1M????-???v`?p??!N??B5? A??p-?`~??????|hj~/????iG?>???9M?????z?q??u`?f?u???3?c??1???^????o?&???v?C?[ ?[o??p/]???^????p???? ???+ ??KK????r??1??????.? ?4???r?? ?S,??s.~'??????h????b?qU?W??1 y??L???t?i;o????????O?? ???????r???_???p??\1? ?5F??28????-?3?s?q?L???Z:1?????5??????'??0?Q?c?(??7^???U???,`?$! 3\a:?Ky? ???q?? ???d?q' ?r?8?x??^2??b??z?;?CcE???? g??^j??=|s????W?3???????.??3?)Da?n?#??`??/?OxD?G?P?)>? ???????GW????????1*?????Q???nwn??? ?9?E]im????!?G?A??????!M5,?K^9????{v?#Y"_ ???_)??;???a??v?r?.?C ??r??~?8 vq?q?S+?e?`??oUv??F9%?]?????NQ????`?TM?&???-, ???4v*8???y? 4???p???}B????A?D??Mg???0?????? L???? ????M/??CY^?ZY_??{ lf??SJ??2i???'?-???????q?:T?????????????%???v??K4=??",????j?@|?UH??y V??~?K> ]? ???n /? 6aA?rj? j ??c K?;??~L??5?????F.~???V^???V?W?]\?W?Z?-/+;??nQL?+???B??s??gO ?r*? ?????????? ?j:?%-????3|??*?&??}f?{?kn??h???3kY?B`??R?_?C???N\????+p\D?6???~Vn?h?D???0?{K?=?-???'??*??{??????8?F6?H??F$??V$??????=)?baI??????rESvl(?) ???&5??E??????iL ??O???Ww?)i {v?&?QG???Z??l??????0c??}e??7?D???@5 ?N??????>V?=3??O?v? ?sY?`Q@??;^'4T5???D?y?n=]oFfV?.???k?2,?e??_aV???`?????????????n????c??/???K???:???t?L=???s?d?9????m?/??; ?&Rh:????????9???8;`?KB????4???d)z?'???#|W?fH???V/??v?|?E??9Z?Y???V???@]?6??=?haF??? ???~8??? .jE?m?Wa ?Jf!?A???????{?=?QF?>,{?,?????d????7???qf?b???8N?i???y@?Q??j???%Vb?>>?O???^k?z? ??(?Amvf?;?~??3?????????v?~???[?%.?W?? ?n??q?o:???C??),??S8?!QNQ?(?^a????;??=?$ ?5t -????L*u??????zz?C????s?D;?M?p???)??U????z/?S?????????*k`??z???~??<E1h~?Co~???9??]????fmz?7?n?o??m??K??B??9?????p???ru??N?N???)?? O????M0??E?? ??]???;c_?K}`??gV?c?|jx'A<>??,}??rh????Q?????$96I0|`??Q)???? ??????)???x4k??|?[?`nK???>[_:`G?l??????'?Oh?????????A;?E?9??+Z??K6? ?z???T ?d!?S?y???????R??5?????D???????+?"v????g8??LcBc???5?????iP??b???9?Z?C??g??? o ???}?7???????4?;?-?f0? ?b???E?x??? T??$ug?v?=??3?????-??6?C?[S?_??~F?S?P???7kM_??????v? tpU?2??ty`}????+????.7<}`u???????|???q[8?()Q????dD?/g+??E?@?8}|?????53?Z?A?M ??S/?0?????X[PA????l?85F+L?B.???&?B????d?Gx?a???b??X&??h??9?j???{??^;LNl?97?QS.?U"?WW?in]?????\???Uh&?:L6???T??? s~? N?w?? !arj?w?`$???Tv???>V????D?R.W?Ss?U???x?#C?\l?H?u-?????????Ru??s`h????.t? ?H?W????????gP?5}?\?:?=????2b4??|g@?@????/+??sT??????????n?=6g??)??,??.?????e}???Y???????hj)?m?????8o?????????t??y?????????w?(&??3??7??A.m???A=??R`????????U???9???\??lF???O3??[F????3??J??????????FL??u??k??@*_????C??;?? ???d'???&?y??B????v?\wldgN?????+M?Y?????Mu??;^??WR?vV?+2????AlE??????nG.??zF?!?D?"R/?E}??"?m?"??D!?g??6RP2?6?g??8?N???3,Nq?????%???^3,?8?6? ?????B?eV?[?!?8]????9???>????^"1?f?1 !D9??jC? xwi&???Q4J????u??%s???R6?#???dEAy??N???????M???????$??H(??;"?{ FC0>??????@?/?????&??a?2|o??e??5?&q?m??v?y?{27o?????NW??m?E????U?=??O?'|[N F.???m??A/??%s?u*???q}E??o??X???????*U???%?????pc???U??ki????j????F}??>??p???(?d?Hw?7?w??????K,?H??f?{?J| N? ???a????]??y?Y?x*K?R?^?t?"@???GX ????0?@???Y???,????????~)?????s*????3o?d?%??#?f????o0+??>?[??xbn[~#l0????????3?????M?^HI?%)v?v??i??U? ?{???b????l ??* fZ?s??PQ?SKC????e8?o?K???????f?????(?s?=0?1?3??89/&?n?9?vE?????w???V?{?/?`?B' i???Zx$????????Ji??-?T)?????'?._??A?W?/?y?%?>@$p???????+???y?q?1?k?L?y?l??1?9#??q?)??J?j????+????????!]G? ?=?(F???1 u??h?????C?????I???8?0???h??h?????)?m?Dp% ,??G%EGeN???E???7zP???4w(?mo?W?????M?*??e? ??????'-?= ,1?P?id?U] ?z ??]?????????}}v{???? |???P?kh?????+?s?5 ?????Y???]: 5??2?D}?V???$??.s?????QQk???S?z?X?W??d}????h??M(??U?x?k????bD??~???????????c??=?=t?B????????`????{??@K?&???ol?N???????????S?p=v?uiM5?\?-?????????P???? Zh???@;C??? 7lh????t?aR?M>4h?{EH??WI??????},?Ui? ?+???*?6??\}????u????cXy??M?"? ????:_?????F?5?/z:???#'C{?@+)? pmO??5?????5 X?????*?O8Z???sE.?/??O?'( ?3;???$e`?U`??=?;hl{??t???4?`Hg?Bc????????m!'?KH?6Q??|?u?????I-???S?JV????????^??gos????+?CI??f???i ??\@?mT?????m?N>7?aMj??8??R#{???u??=??????hp?^0???(lH?I;??[?j#G??N??K? l1????T_??S??~Mi|,???0???H?y??J"?+F?7?M?F???????i??z?f?dW? wp??1@?6?w?&?????,????;?0C?v?^?Kp?? ?????&a\?Q$k??,? ?cV??$??W?nZ???_?U????Y?? ????k?u?$??V |v??????{???]{?=?s/?!?_Al???)????v ?]C7:?^??s?&B????\?1????^j?A-X>i?&???????h=??{?O?????o??5??? g????#????g ??{????yt??tV??5?N??+H?x?~`w!.??.i??z\?G_???|??S???2???+?????"[O?S??F,?n????\hJ0#?????????4??????6L?????????U??`????7?w(????-????=??x??g? ??????vO??{g ZK??????I???6???7C? ?IQ ???9Wb??N??9??M.H??![?i?&a`r??8?????????w/?X.?h?????Va?9???`??=l!?G@)?dp?????E????=:?Y?}?I??cc;??F???e??=aBc?A?????????# ?T.???Q?9?zD i?; ?z?(?? ?)????+??@?????G??~/,??6]}??J??????F??)m[yzz?86?J???`??p~?????8????????M$?D?0 ??2??y7k at f?????????K?????????_?Ub???????L????????????^???E???0@;?????:??!Vq????r??sO;w{?vj[~?X ?0K?D~??Y?? ? .??? E??X?????????P?C?q?H?T6~`?3KOH????'l? Rs?y%???!+???K!-7??nR???????_??`5????0??k???6!,???uW?6????T?YdP???x????TKY???>l?<-??????bFf???U?????tiQ/?o?b?k?O???@F=????b?+?????[????7???EdJY???n]?p?????1?S??wY??Om?l???????>??Zc?l???Z|3?Q?T$?e?j?Y!o????j?????Lf,| U?Vq.D?~???=??j&p??a?*?-???}????`d??8&$????%Y????*0)>????~???)??M:?z?8mt?Jg???5@[?y??\???,??t9k??r??f_ n=????:???6?2?:?LM??/%n)?>????#??}?p?O????c.?????????(???<&m%???????7F?????M?OG~?=???EJrjaOupJ ??^[???si?sK??=?N??rbl????????.??f?,?y;??9?????]?Y???k? ?T??sq?j??*?$r7qh8?? ???Y?dR??? ????~h?* 9???>!?4Ra0???I*?F?^$y???o?????7???E?? ?M?!????G,???5>?Hr???A???F?QHe?LW?>7???189Y?:??[}pBfCw??????$c?v?K?3"???P?n;@K/L???i0K??r?? ??j?????\?V??t?&-;Mrlbk?????????Ve]~-?Q???k??????b?eL?|-???BH???kI????1????3?>>2???}0??;77??`?Q? ??; +????V?? ????h??Y_??-?????~???x??T?E?5?}@??7???Y?? w}????g????N?(&??43?w??q?????f?m?w?\??o??8C??>?????j?{F??????)d???{?Ok?7J???,???g)??k7?/&??(??*????^ZZ\PT\?H/*?Y?? 1 ?vbG4?l?L"? Q?]??js?W<"w+???&t>] ?????? p?Z0?kO AcA?GOH1?a??J?R??S??e??????la?K3?????)E??????ol??R},?_]?????s?1B?1????? &?`(???5?_?????,?>?)U??[??(?T???>?u????5'??3?@?w??1???|?i???? ~??_????~ F?Z? ??C2?b????j??:?,X??-^???>>??^?? oq???@f?BY???-???`??????ef????(/?GU?w'U??????DQ*?.?????nf???Z?qqI~e>S??qwN5m?q?c???;?.?Wh?x|Xa?? ?J^^????.Q??Hd???HU??.?????P7???\??I??/???G?? f?<$??#I?? ?o? '@?g???$?%{?I???Z? ?????????y??????]??s??U??lP??5???rN)???|????C???Gsi?i??=j?)??Z7?p???Y"??\u???? ??V?%?X?Q????? ??v???vzn?T%???? ?r???~Os????e?^s? ?u??G??Y?xg?x????R{??????:ft??hTo? ?@@T*?2????{??~9?N? i???f.?????76?????U?v/")??d?M????T??kA?:? A?R????????r?F???`UN??????K?? ???m?4(?3????\i?=?U??]?o?3-Y? Ng?-????????>G???bR??dM??n??P?W?TL3? D??W?^O-??f???dw?a???0???????I????#w?~?????W?4???b]?[???=P???l ?V'??M??3???|Vjoh???)?q=?] ?"%?????Rg?z?]?X1??????kH;|?H???\??N????^O?S?#??Q?E?~C?n??aSEqJ]? ?E??)d'f??!??\????????,>-??????\?q???4??6u?????a??"?g!E?????J-,M????.?Nv?A+bk? ?~ ??????[:A?Oo????[U?Q5?]?G;HM1 6L?Zm???F?Q???????? ~??.,!?L???\?{?nTQq??E?1k=?]"??E?=???? ????a/??F??t????Pb4?1]&s???y_???a??6??!???6?????_"X??????r{?a??.??;r?????? ??}`? ?+??E???m}>?C?k??R??h??k?d\5S?~.?,??a?q^a3???S2??o??|?Zh???M?????? ?????*?~]??[_QR???Uu???:f?zp??k????a???????#?6?t???h|v?'??M?????Ze?gO???Q%2 H??l*??\?Vhp??L_*i$?,?_???;+W??V;??!??[?40?2*?V?~??????:????U^?~???at8??:?????6T?_#?g??w]?k???"?t???At|?K?G?u?K?"??Hj????6?p????????{?F???+?V:???o?$Gj??Z??#X|t??b;???2 ???NF???NH?vFR?????(4?_ ~?#??T????/?L??+ ??jY?]A7dn??[??l?]AB????????/ ?? W/??s??e?m????>Vz??j-?&^?%?|, ???))?w2????=?'??vu???K???i?OZ???2??e'?)????>"?? ???+?^??v?????'??3??X??*?????=??D(r?tmH???-?_?/1?&????8^??/]??????L???x? ?+???bV\;4??.?+?L?;? *? ,X@???st???????{q_\????%?7????O???%??MWjck????x?Y?J??) ??~7T#T? p????)s?N??Oa????????{0?t0:???m?AM?jOd??l??C?jUl???z?A?O?G?^???{?~z?=\?X?E??r?m?l"????;~????(??C?D`?#Na?ZK_???`zq?/0,^??/?????c?C??c;?x??????8~?&??????!CcQ???????? ^????2? 2~??79??d0)n34ZnN?_??????6m?Y????MP+?b6??jGb?????????j}|??????o1i?5?N???{ /???r?????@??6YCW?K???^`'?O%?????B??7??- ???<"j????z?&[H5?Im?CqJ??&h?J?K??? o?5?7K??????n????@?,W???????????/??XG#n?????`7?A?4??? ]??H*2?rg??p>I???????O???pw(#b??????S1???(&????I????G??????5gjcx??vg?{t???IG?vE????`b?As????O?1!?c??|>/Z?q?T'hF2E??4???f?V???? .??? ?nt ???6??\?bM& &Y?v??1=??? ??????i[? $b??;O2??Qp???4????!??TD;??Z??k????????\?K ??6??T+? 0?H??+?)?J??^??????9?C~?:???b9}I???Mr;0??~OW?v ?1?a?l??Q:}??,DRf??n?????BV?;1?^???/??'?;y??#{? ?????HK?S^?J?????&???? ?????i???a#??????H3b8 pIX0_L?jf?}M?F??/)pco???'?bz???f?@?AZq(?@Nq2??8??????y???|-y?r????Z ?????pt??M?-????kw???>k;?#?e??? .7;???i?K???X#IdYw???{~??????e??K?tz ???m??? ?t?F$??(??N??p???S?I<-?d?FxLlR?? a?FY:,lK&i?#@???X???????8??Q?4H^s,??,????? Y??9??h??G?2sC???%\??6??:ZZJw?? rC?;H?^;?J?t???f?? ??n???e??Q(?????&G????RM??'v?&???@;?????Y?tn???aZ???wIC&???/??|m??L??? ??m?$??x?/3?-?Zp='???v??\?,|.j???????}E? j"q?U?\,???u?? ?&??xdl'?s?E?,????5?q)h??Br?|Y?? QQ????$??7?7 ?!s??3Z F???`?l/?????s?`?????8?h?k????E?????]???;?f???_????????@L?NU?0?????d?d|2 YM?z?D????????a:?`9?R?J?? y??OP?ux?k?R?>G?????? ???_??#?g?????????? =?m?R?<pP??X{?R ?d?????_rx?? ??? ??;(?;?Q!?1?N ?^??o?Q!?;?} ??+x?x? ?+N?????? ??f ???o????=(?G/=???q?????y?*?/ ^???qe^] o%??N???s?1????????L??;?Gr??r?????^i??????w?????N????????L??x?~U?1????5l? /???&x????y?????beRS[????G#xI???Q V??????? ??g?{?O?x???"????? ?w?O????a??K??????0?_???/?_?; ??B~????????????$D????%/??&[?z}???7#a?????{c?J??MG~??}&?j??????? ??g??5?kL?g????&?5??7??~-B~ ??X?o1?>????? ?6?_ ?2?_??k??'?^?o???_GN~??????n?f?A~??~M?Q~K?K?W)?u????????O;????o?|?????-?????????? ?nv??l??N?????^???y??Y? ??????v?o7???_;???1???*P??Ha???UO???v??Z???G ??? ????_&/? ?7??? ?7?Uq????F)??x???gSGq???c?@???sl???*?_3?n?a???????h???e???x????|??????????????????g??]?I????8?p??~ ?-?_??_+??B~???!???? ????z!????S?o#????~;???????^:????|G?????&I?7 ?wP?w??B?c???? ?i!?x?l? ???t?7?l??~??????v???x?oN???oc?]`?h?? ?Hi5~61?Gq&O??gc%???S??2???^2c}D??Wix??u*????*????&??2??u|?W??O???/X?o??e????>????b?G9???_?M??-??????? ?\???????6??}?,^??e?fO???-j??]?o?k ?*?????? ???T?7????jB??+9???!???Z??g????]?;???~=B??~?d???k'?~???u\;??b?E?/??=;??x_`?G?z?Q?????7?A??~?{?a?F?xg???qo????y???'?b?N?? ??????? x??x#???T~A?)?????????w??s?;?F??_???S?f???W?i?qF??B?L5<5???,?o:?h? 1>W?????1\????? ????????????[,T?K??*??Z??i/*?U??m?_f????#?U??y?y?????[p???1S????X??X?_7???5]?G??{X?"e??0???&?J?5?????3??????K??O?w":^,?????N?w?????? ??2~???? ??????W ??x??!????????????x??????a!?n???y6??r?? ??^??f??<{???W?o< ??;???g??Y??[???s??T????/S??_?w0J?;??l???Z??? ???}???????B??q??*T?O????-????????????K?x*cx%???%?????W?*/????*??x????i????????????w?fy????p?????? ??V????????k?????????u ?_'??y????r??(?w#????n?_?/??~}???\???U?[#T?????B??~Y6/w|nyf|???o?"4?A~CB~C??:?o???????0?ve??I7??E?????~@?Yi??4{??~?_i???k???>?_???|3??i]?G?%A??????G??,^??^? ?= ? !????????? S??t???????? ????\??(md?%?'7?o? O] ??B~s?7_?? ~?B~??[*???-?[??B~7??G??~w?? ??????????z?e?????*?? ~;??v???B~??1??(???/?h?????-X???????oo???x???^?/o??x???u?????G???W~?y/?7?]~v???^????_???x???f?????;????????; ????H~?l???,?o??? ??????????L~????????h?_3;?H~????+?w?L}????o.;????V?????K?6?????<?~??y??7lR????r???????????V??????nb?j&\????J????N?? ????a`???h????[?8???g???$?J?????$??????????PK ?1?8xgI?q??H?i?*?^*m???xu???x??u?x???!?z?$?v?? ? 8~Y???b?3?$?r?U?y??s?_??0?L??2?j?n??W????/'?5?????-????^K??V?s?*?~?~K??y?_5??????R????????`?;o???_-???~.O??Ppyv?H?S$?/??5???^$???w??{???x ~5j?7^??g/?????v=)???|7?xSx????'??UD???`}???????z6??~?????B?n?????????Z?m?????\"???3???Q????{?'yDG????????????+/7????'yD??o1???K??p?o??????'U?0g,?W?m???S???c9?/v??~?yv?????o????????b??????/?;????? ?????y?N?????1?a??J????_N??/??$4????+?5??????|fu??O????-??t?}j?J????l??%???????gV??B?m?t???k?K'?y???3??u??F?R1w??8ek1@?}???:7??-??????QO?? ??;g??[c[?6-???>???&?S??!}J?\?????%}?_???M? hCh???C>[????*[i>5?A???q????}3}? ? ?? ??i?? ?????.`?????Y????lJb?SON?e?????1a??5s???(km?'?????A?kl^?y?!?}b???[??k?wxt~`?i^>??XY?O?vH?K?Y?u ?u?a >}?i?m?&U????O ?3??k8????GY4???k??|>???????????? hCh????y?0K???;a3???[r???y????m??-s?????-?????W@B?'V???k????>?:?????G??,C??[??y?????u?m?&U??Fz????i?u??Oj|?5??%N??l??????^???????=??6t?CNy7?^f??_?'l?8?????tq?ONl5??'?Zo???M????v>]dL?|?Rk,j?u;???k?}R?#??e?;y?n????/?k\??y???M%???m'?????q +??'&??)??7????????n?z9??????Q????s?]w^????7y?Y?????w????f?n??N???t????????#+??e???????Zk?{^m?TR?????]a=??Y?????;O???'???????=??9P?Cec???????V?????;?O ;W??f:_?? ?s???,??z???o???ESv^mHm_y?'T????4+?????J?3?_????S??1???mYO??E?2??Z???c??"??^d?????~??U3??????'5>kl?om?w??5?( ???????>???O?,u??ks?I???yF ???9?E??b??H???}b????lr|[?B?????????d????????D??????k?Q???????t?wz?J?i??Y?????z?k??????6%?????b??????m??|fu??????I>??$?l??]Y? ????l??|j?r?-?_??5z??????? ????`??9^???9j???_co>?>??I??w#3??|e??????h?o?)???-????6%???T?cw?h*?w????3\B???'?j?C??r???a????'???&????p??/?????????Y?g????w?H?r!???h-Z??? ???)???[???)7???Vf???2??_;??#?u???F?vA?c&??0j?O???6?????]?h???K?{?=?y??{f??? ???M????7?w??07???Vc%n?X[r?mkj????b;??o?F??\l???F?~e?? Xm}?W?a??l????w???Y?W?~l?YX?????w[E??????+???j?? e^??2?????_ kP?y??W??Nt?"??}v?y?e?c?^5}?jKN?9????U???6???}?c??i??n????K????w??w?[??????J???u??q*=>?'??c????^3`B???9w?1???^f?1RIh???3?,????C?>??k$?TR??v?1?y{??}N[r?M???y&?Bck?????e???{'????3?P?A??? h?????cN\%z}b?:j?8??????????+?=??x???? ?r?!?7???|Oe??;e?O??b?}R?3???? ??????34+?Y?g??6 ?n?}{?FS???}r|Ktsl??Y???Y???V???s????????????+???O?f*????+?@B??b?D????s???yFMlg?????6 ??}?X???1!??}}?>9?%?9?%6n???f??i? ??w?KbX >5?????'7?>??????}m;em???3c????NO?c?????????????Sv?-??9?????4????y???(???5c}BZ????}r|KtslKlB?+6N?}??S?j???? O0?????}?????:????T??4u^???(f_??6?????{?>m??s???gV??????}??O????K??O?}?????f:????pH???f??????T ?????M?c????'}?5D/??L?????kE?"?j4??[??|?)_?#??o,?X??m?????l??????}?Q??6?? ??US?>??????1v???r?m_??l?I????7?S1??Z????1?I?v ?????????????S?????>[>?,??sn???cer?B??????&?\??3?K??.???v ????????3??v?>o??????t??????I?6,???7??T?t ?{\???;a?>?:????=??u?}^j?+/?c?>-??R?6ny?vk3???????O??7?>??.e??? ????l?_????ga??4?l??h?????97?XR??c????m????3?s???t??R??O???k???On?[????-l???????D?J?W?O4?SQ????????8v???|,??L?O?q7?|?2???#&?v?????1M?????sn?We???A??=?x??{??}fu?Q?ML^??){_yM?c??????6ny?V???9?U??R}??i????5?>??q???????????}??"?+ ?;?=??#l?#3?1????????A?9??b?v??????QN?q6o?9????4d?z??]?]??=?L?o?@3????u?s?=??u?o??d?+c????|fu?Q???????I?LSn????D????6n???7???'?J?W?O\?#??=?V??4?Y??????Yw?k?LSn????D????6n?&y?J??gh???T?>?z75?1T???o?}R?????8y:.?q???Cm??w?b???j?:a??0?;??5?97???????<x???wD^h??d$>?:???M?5????%?N?,?J???-???ma??kz???????U??R}????????M???Oj|????N??m??"?Cl????a?????Q6?;>+?_?'?{??O??h??C????@?????????;&|????H|fu?Q???????X*?ok??????[??c?S?/?44?`?n?Q_*??????????ilN???'5>?\??8??dK's????m?=|?:M???K?9????{?:?_?'??|?/J?? ??j???]??V?:????lm???s?>??G|???????????? ??}??D}c??a???O??xDD???????????[d??lOy?N????u[F4Jtk4c?qe??????Q?I???|funR?>?9????w?ZM>9?%?9?-l?rM2?o?L?????`???.x??5???C?????x??'5>??C?u???????m????>x??B???{???/?3???mj????Lo??{?5?5???:???kV>?:?????^???s4M-??????[??c???-?tl?V??J?9??-??s???????sX?|?}R????;>???+?Gl???+??P??N????/?3?WW? ?b???????? ?????2f?6??k??r???????%?_?o?n?m ?\Sh??O??N???Y?????/K|???^???|???[?)[$?g??Y????=???k???M?q??k?]m?e???}&?????G?Zh??2WSl??R????6N<7??,?3?e6L?;*!d]?K???M?~X???sRHg?>9}??-?ma??K?y?B??>-y?;6K??s???y??`??????(v?/?>???????G?%w???`m~??!c??6?????s???/??P?^???C?_n=?z0?~?\??]>?8?;?? ?Q??i?3??????=?;????_?w?????B?:?????<#??Ww?k???p9? ]s???j??Gm???5???????[???ZY???????r].??0P{J??j?(;;?/.???'U^??J????[?-9q??5????e???[???6?wp[3?m3? ?5m????r??????}_?}O!:?;? '[??m?n?m????a??|?>???~w???+??????>1???"????=???Q?G????????????+c9?~?y&?~?&?B????.?O.hN?lr?Q??????N?_n=????V??j?[?vH?%'??XK????????????/?gk???t??A}~????9 at l<{L?-???2?Lh>?>??T??|??????eAy'??f???????3??h????y?B?!?u??5?t{???n???#?qq??5?nS[q?????'?W?_?b}?1???E??s?%???:7?W??????o???htS??v?T?v+?f???f;??%7?T?%q?????K]??????l??}??x???:a???}??0?o??V??r??_?gL?Q????~x??????>#y???3????\_?o??f??|??;e??[??????GS?5?????[?}4??????.? ?????????@?&??l?~g?j??%}?+?_??>?5?????[?}4??????.? ????????? ?/?pZ??,*?;O???>?Q\?3????$y?Y}=?m???G???n?j??>}9?6*??-h?Qn?C[~b?????fI??n>?????v?]??Jc??Yl?n?[??'f??fZ?G?6*??-h?Qn{?-?^???????_M~z^???'??Yzg?? ??x??XK?????m?yn?!??Zf:??????>Z?????62??-h?Qn?U[~\??????b????u????>?????/c??Sr????n?R[4?@???#?????xb???5?/c???Q????fi??W3?????Og???a???/W+f?????c#?G???Y?G-c?M[KI??m?cXe??]'|"?W????K|Sq???????k3?SZ%q?t?O9?Y?v? ?:???p??z?8???b????W?v??+e?R3?~?m????t?^???S?T[?????"?G';????W???;????????o?\???;???????0??]????????{g???w??t^A]?fnY(??>q???h??????9???U???)K?J??????pkO~???EN???t??C'|????F???????? ????y?????L???q?6?jIn???rE????V???4rN???>?i_?>U???????}??]Cy?- ]?????|~???s'c6???k3?G??e??_U??^f:Gb7?? O1?? ?u?????????g??d?+???>_???hSkr?(7?O?9?5u?}?/?f????tu?6???Dl????? 4???????2?C????? ???}??????????? ?#?)^??_l?_?????B?w?s?|?2??:3=v??c?Qkw?Gc??Qn^?zs4k???L??a??I???7?z~??M9?5?????vA 46D???? ???9u?????8??????g???Zw2K?$??:???CU???X??cW???|??g:??8S??akJ??d?/?7G?O??7???i??l|6?p??C?'???M9?5?????vA 46???? ???9u?????Xg?????1?_???????s????~v,??f??????sMr\?D?W8????k8??c??sP??A??W??Krn???u?|S?}?{?????|?.5??:G??-?^???[n4?@??EN? ??)?-??????? :??? ?L?][?m?????L8??^????????L??e??o?>????_j?Rn????o???=}o??????R?M???????8?@?:[2N??f?$y{?*+???.?????S?h[z???3??>}\?W?????I?w????[*?j?????r|???_???z?O??`m?)??5?b;??D 4?lcl?h???????????? ?K?z??????mm?~]g?]}??????k???O5?s0?????S[??o?}????,?3???' ???q)??Ru???,?SN_??y?&??T+?L??s???g??|??k???&???i?\?)?~??w??????[?o_??T[??????bfe????2??? ???&?????4?? ?\?\??????????????Gy?JS???????t???Q?NA?????r?L??O0K???|G???wF???S???:n?c? ??2?|???Be?5????? 4?h?{ +M-?r???1f?h????Z??j c? 4?@ ;?n?mgP??v?ZC??E 4?@c\?m?k%?i?1????~?????}?c??5T?1[4?@ 4??o-?y?4oh???3?+??s?r???1f?h????X1??-&??L???|$??c??5?>?E 4?@c\,?????_?I????j ???l?@ 4??!?yp???? X?um?4?N[??6?3???-h???b9?8ng????????s[??m??Y?????j? ???h?1[??^?oJw????,??^H?C}??q~????\??bm??{g???'l??c????H??`???? ???@ 4????????Z???k??5??m?n?_??Y}?????k ?C`m?`?s?IzuFO????ztLDh]?1K??.5?????j???????~c????g?Y?X?[B?Y???|???e?qG3?g?S?????7(?????\?RJtC?h??h??q???>??$???????2a???d?M????X?g????????g??$??f???l??o?)???-|<> N]?????M[???lO[?mO???o?'?b?[?E6?m{u?????j?[?@?g?r? ?^3??;???4??h???<5 ?????&|q??4???b?=????!???fL????}l??g???J??[S??M??e>y?p?O(?n??mLc3=?u?[?A???c?:G;U??m???lOI??????]wm?????Z??Fk??@??m?3c????'?????,?$???A[?#?$??V? ?K????{????g?B???L?P????i?>??kY?O??=7P?G?]??ewi??!lR???v?5x?F?G???r??z??.??G????e?U?o?6???}?k5S??j??-??X?Z?wV??h^) ????WO??|?G{?????K???}y?y????8?wl?^(?f?4D???$9????}?{zA??-???L????+?u?6?$Q???i+?|?NY??{u+?w+?Y???,?_?o??6kj???i???e?kS???????U?R=?????\??a???????K????yw7?sL?n??_???f??^~?????????c>3P??j??? ?????6?7>??=C???oo??|???????/I????????]:e9??[??????;??l??~?????{NV?C??Z7a??mYn?????????f??6?>zz????w,??????v??a??g|]?G???>z?????7?S?????An=r=?'???na???km{????W??g?I??>?~?????;??????S??}???3=?~?? ??~??????8|???e9kS???????!?????i ]C????u?C??O??{??_??c??r?????~>??}o??/_???#?=5}?j??s?wFa?2?'??]=c?m??[v??g%??????Y?'^?????????MA???L?a????????Xy???????c?.iO?x????X?Z?wV??? ????G????O????:??????I????????um?????pV?^7_? ????Tl1?P??3076?_?:?F?gp??????J??b?mO? ?2?{????O}d>0????S~???}??LM???????Q?~.zoE?v [?????n??l???}???1?12??D??2'?????=??P?}???\??????go?t_??d??>?W?<]?j?,?G~?uN?GG??ks??????O??+?$?4??*6oi?v??OW???_???e?N?F???c?^?I??c?? ??k2?S??T:g`Nl?2K???s,??????Om???UZ?m[&??ne??>Q?????????W;d??y ?>???X|?2Mr? ?x3???7??)???6_~?K??5?"V??\D???&si=m?m*?,????????:e>????eC?-???P??)???PC|???}??W??l???nf????/??!=7_??yf{j?`?>?5??X?4K?H???w{?????r?tn???=?#??<?s_}?y_3G???{? gm!9G????V>.??I??}???????A??5????h???/>]MO??s? ???????N??]??c?G?K?>?=5}0FA?gt?d???>???\??q?,???Bk???{????3K???yu?Hh?b}|k$???I,?P?&y?,???1???>??????@???)?lOL????/??d?R?????|??V/?l?????oM???1?????I??????*t|6r?????uW?????P?>???r????3???>???w?#?/????kJ?Wil???????h?Z?G}?9ytL????9???^?g?.?Z[]??'}%?????C??^???m??N??m?{vE????^??A?K????w??? ????u????O_ K?^M]>?}P?1f???t??5??O{???$3???{u?u????????z?m?????m???X9????^??Jct>w?C}~Z?G}^???| ?X??f??l_}C???sy???'?? ??P?%}???R?O=??-????*?i???j?>Cl_??m?\wlZ??v ???c????????!l|?z????^???/??{??8?|?S?? C?`}V??'X?|U??Z;?;?N? A????l????>??ly6/?;bs???? ??0????s???C?=?/s}Z??????e? ????????}5??o???^?m?Kk?X?&y?$?N?????G?6h?j???W?c???j??k???oN,g'??n?M???|?N???Z?O?g ?????M?`?>?a?C?^?[B?5???????Y???nE????}?X|?????[O?^?zb???"lM?>??3???7?^????d??X?)??zt;??0???&T????????]N|?R??}*???) ???|?????>?q???e?kq??=?9???????4?;?2?g?;?^g?Cs&?a?ck om??]t??????]d????O ?\R?~??????iT?"?+??????i\5}YZO+?>?????V?#C??????|????vm??m?????I???w???Y?????0?????r?-?N???r???D }?????y\K??sm???{JDO?? ????;??Sh-???^? ???;?????9????????c???k???U?]wSh?7?vfi\?? ?1`W??G??t,????;????{)}-KI??n?i]?^(?????5?N??k?9?????]???m?+?w}?????u??????M?zn?)?i at S?w?B??m?b?\???-??Y?????_B??!?X?5a????%???I?KRk?\\?(?M%?y????'?E???y@?t???W?>?C?i???3??s???/???????-i????9?[.??~????z?????????9?u?e?39???7?e2?F??1?????3t5??@???????K?ygJ??+?????m??]j~??v??C ?j??!?%y??^???y?N?m???6?$? ?V?v??j?????Bm????????C[v?DR?;O???s?X??z?c?M???k??????????[???-}???????/?~u??&??K??c???us????????o?$e?}:?/gZ?P,Z?o?.????H=2?xw?f??y?rc[ hJ????????:w??M??[X??;???o???Lz~????I?????+M|^?X?????K???????c??m????>????Fwn????n???L}v??-?y?}??*?? ?6??V7????Z?S#qI??w???c?Y?='??XLn??? ??bi?????5kb?????_??sb??I?????y?}?V????'?|?:+?8S?C???yFH??O?S?W?>\l?zA??}C?????YZ;??z?v;t?????k?????S?7??????????r???^gu^?a??j?????????0K??R?w?>?ls???m?????Q'??6??NJ7??g_??~???z_ ??S???]??~!aw[kwz??r???M?y?K???m??3??:?}?nk??ol?????????h??Z?c"6?Z_T??Z??g???S???SchsMC?-4Z#?rd??+???^?s*y??uA???>?Y?o????L????k&?*??t-?[e??]#?r?~?\???r_?Cl????[[w?XS?}c??-?;b3??V-??vV'?,A?)?u?t???m??G??????}j m?ic?????=???\???*?????D? f?^?5??K??m???s????^n?^????`?)?r?~???gh?r'??] ?o?t???'w?r??[??|,>??=??K??m??t/$?>??=?[nlj???~T?o?v???P?c???]?Z??g????6vm|~??TJ?{??;4?cC?UJ]???!???Z????v???g????)?K???^??"??f????s??$???Z???_rl[h(:g??3?r?cl???h?C??r???`Ns??9????u???fi??X?CD???????v[Bh*-O? ??[???kwH??1-4??o?X at w????r???b????3????3_?hK??Uon{???m??2?????L???p??r???6???????? ?B???:????ro?y????t???A?????w????|??_SN=%??l[h?????d??? ??????c??`???y??3??9???b??q'?^?nf??h,???c??i?????6?=?*?m? ???v2o??c-??2?g?????????0???@?BI?I=??!????pw?E?_?f??q8?,??3??? ?? ?3V???????G????Z$?9?~=4??A????????S????l??r???y;4}I?????GM?5?Bn=?4?nm?%??l[h(???-?;??~???y?o???2?g??}????~~RF????????=???N?;m ?no???c?????H??p???b?????\j???m????L?c?9?????y???pn?Tl-c?y????S?9O?????r?^a?t??????L}.?#??D;?????)ou???_?V?QO??f??s[?4'?PyI;u?e???????_"6G[??1???[?_????Z??????y?nd?J?}c?g1?Y ????C????6??? ???????n???&???K?q???????7???????_K????????????`w??~5????g/??/????S????Y?q???????K??m???1j1P.?H??,?????}??S??=m~???n???5?#??d????Z?????#E?V?????"k??@?<??r??3}?@????Q???Cw>??????0[ow?Q?~?+???_????/|????????????_b>??;?c;??1?s????-*uJ?z?Z?J??'?+TV?!?=v??*???6?l[h(?]?]?o?????5?w3??wHe???,?C?]???;?7????????>(?9?w?H?w?N5?+?H???u??S??? E?g?m???_??????3???????|] ????????? ??ZVG?M|??5??n??;??9St?Nw?NE?u?????V??d~y??Yk?_?)?'???\??=?]??|gO~?N??????}u9? =??????[M{b>?e?wu?x?W??|?[?????cu?????*?%????+TV?1?]gC?'+b???_??v???????Z?_?S???m E????????]g?s?*????????4'??f?@_?}?;?Pm?????Ts?????#??7?????,a?L?????E?????L?????C#6}?g?]?????)C?r????_????/?;'? ????sD??'???rw??????????????1????'9?w?b???&?????.)??S,?????/??:N?;?f???? ?_??qmJ??????????|???????Zi????w?????_7&???????C????:e??@i?$?.????>r?g?.LwM????L???rO?7V??w?7?j,???*?/??u?%???;??Z'?3??Q?_e???3??? ?[?f????KN:????????V???o5????o?9 ?????8?,????}???Z(??Q????=???7?@n?t?='n??????J?9~??yOyw??P*??3l??m_R??I?Y?V??v?N?~?}?G??n??j???<_???.I?s? ? !?C? 4?@ 4??[?i??J??C??/2?c?e??.????'????q?3?C?>?#}>??6k??q????i?~???????m{X???y????zy????=?????}???t?? v}6s?]f?????)??F_???/???2?,]???f?]?,??????3??R??J??C?j????  ?#e?!6~??}?????#???=??^?`7?qX??_????h?'3m???K?3?????????1o&3??&???zy?J>%eSiZe????LI??k??g?g?L)K_hPP?,?S?????r?-wM^*??????d[:T???#?????oq??K?(h?PeJ???L?????????)??z??.????q?D?S????W??????/k\??7????}??h????Y*?l???F?0u??*7?????????}??n1??or/???-r?}??2????!??J%?????t}??c???!:?/???=??5???\?])?????k??u??P?%?J????+?ZN,M????0???\?????6,?]?Z}+{?%??~[PN?)?\???>?nR1??o"?:L???R???Y/+??w????8???K???2 \{=??uzS??&c6+\?,?S?u?2?????M4oiEj??O???'????z?2???2~???}d}??T{Sebi??d?X?\+??u=J??}??nT]????yQa?&3??&??????z??????2????q??+??L?I>????%eN??g5??????Fm?Pe?????;C???m?C?;???P??????w?J?????5???P&??T???2}????1??e??:?:???Y?????t?o? 8Wv??$c???,??????C??????g3L??C??m{I?j?A?z???2S>???.3?~????m????l??Y/??????.?a}??H?7???>???F???a???C???????-{??;Gp?N???y???C?tg?d?1?{?OC??}????>R?????W?!???b????U????????{O:f??M??????3U??O?X?I?????C????_??<;???? \f??????_~?m?????W;.?$??\_??Yz??[??S?^?~?J??C?I????Q?}??O? ????????PeJ??~&k]???s?K\?\??z???#\{.?:7?????d???x?#???>\?????*&U???!??$?Y[???????Lk??!????y?????_?????????J?6???????P????_??|??????I)?G???v???6??????T?c?2??*%??????T??w???S?35??????oi{r?D?M-????}?????u??K?k#?6?uQ??Y???UGI???%??_?;????9)]w???+]} ?!?&Q.??v?>WC}u9*?|#?K:?1O???c?Q??sLS?w??R??gcm~????+ha???????5??|???z???~s?-? ?????s ??a?)??>???\?YW?$?????]S9??R?9)]w??2??(????TZ?[????????????????j??/ ]?c\'?$??????Z?e??>????????q????!?Q?uL???.??????G 1???1???????+????qj?rm?w??????????k???6???{;??m,????i?gg??q?~???a?'WGj1????????? ?? ^?? v?;?\w:???}h?-?w76??6?x??d?????}???h\O)?q?z>???xt?????????????m???Z?G5???ti[????g?????Ij1????|??eoz?W??????????G??/yyGj^x-a???i??_0??~???^??????e???????6?????]}?YN???/2n????~?D9?t??)?????|??L?x?\G}?el?????m?????M?|?}?]??CL]??m??? .??????%5?+???????G?????Zv??=?z? RV?????b??YY?????tm??/??_??%ek?????hWJ-?y???B?W?uby2_??)9?Z??????6?K???d?c??????Xb????h|???~FS??!???1)[?v;??.???Gl?}\>m???c??=?????k???s?-?????.5q??a?|????62]??????%e??K???G?cc????3?$??5???S???M?L???hCx???????t?g????????s*????/?F???~????"Qf?W?1???~?`?~??>?J??m?]?)?)???%?????????tl=???}#??? ?2%J1?3\L?wjn??]??????g?v???????AZ?? ??????~??f?g???o3?>??????I??4~?K??l{V?\k?C?-?W????Z???w~b??3??s"}?????]?e??%u?X?6??l?~??{2R???????i?1$???`??c];???o+?????_???v,???3?o?????wTPV>7W????T????tJ??9>?< ????/?g?????????|?k??n???????C 1???k??????^iS??a???]???$??O???z????,?U?/?gg???5????[??)?c??6????\???5?+???W#?=??t[???!,??? A?5?5??????^?q??W??.yf???4.o??Y??[???/?v?.???v??2;{?;k?w2???-????:???2???7h??;?u?-+5?b???_?t ????;??91Q??^?f???????:hw*k??le??oz???m????}?Jb?q??"L????????.y%1%?O??N??????????0.????.l????????Ic??331?u???u?>?????/?kNv?? ?^?? 9?~|G????qS????r???????)1?k]???w??)?[Vj1?3Y???y???u?Mt?kk???/X? ?=v?*??S?l????????????j?W?????%y5}?????t??u ???}6K]{??J}?O??????l,?|/?k???`?C?????#F?????N~i?L?????$?&uTGY??Zo??L?r??3????Z??yC???i1?3}a?J?+?'?????KbJ?7?:?m?N?y?? *??*SR?zer??q??[??}^??????>?A??5a???I??{??:?"l?1^????e?E??=?c}?cMt??????8?|??CL??????????HR???mL?/?u?sXwj??S??#??a?C?S3????>?????qi?wC^?q?Wo???we???k???`?e^???=???????-???xy????A???????n????_????y?1ul?O?????JWE?;9R.???=?????u?I>us?????D 1???S????????~??????5??\{?p?8g??\~W??????n??b7??P?^??~????%?> ??~??k?7?X??im?????=N#????k?????8?6v??o?ot???W?+?m??^?w????x?k?E?C??????Z?w???{9???WF?????;.!?????>R?z????????<?wiP&5?o,?[?=??<?|???Hy[??^?VA???'??????2?KR^?????)?????d?d?H??O?C ?^??X(?>????~?M?2?&???????? V\?e?1]???gbk??TZO?l???f????5?A??gT??????,\?gG#??;-3???v???????,???plX{??3#?:6S???W??5??0??u???O???G?}+??X?D?\?)sqG=????2??G?k??9U??+???/h???a????????}??????zN???_?y??k??d=???[lI=9????#?um???????{i??f???;3?uo??-Swl??X???c?^???_??7?????fYk?X????????[??E??Z???|?z?w??5???e?~k>??~?L?>u?????????Q???v???<=?e?t????????4o????|&j?Y????D?????A?t??? {?w?|? ?7??????Z?#??#??];?????;?????XO?? ?c?d|?3???},??f?6???'??5]??<@[?f??ZX>????X??k??#?]?>??[?l{???/?;?e?)r}???????xM?u?\??kr?w*3?gv??????????O?/??+t??3e?i???UA??x/$??#6?g??ge?L"_??!?i????m?2r gI??^??v?}{&??V?m??^??o??+}O????k??{vi=)??+???p?????p??C?QP6????X9y?????"??u??????????]?e????\??^????K????!??Q? ?~????'??o??o??72e?iy?? ?????cH??? ??Z???)3???]{M?y?:?v????g??????????+2?F?y??.?O???e?????D?G?=i?zBr??6;q?????Y??a}???rv M?=?Zf??Wr ??????H????*?l???#?????????.??r\b/O??i??G?????{,l|?TJ?G???~?5?]?%t?voTQ??!o???^/??3,c????}d?h^l\???G??k???Y?}>??+_R&??'V??g^????`??(_R?C?{??Z?$???_???+/?W?L,]TQOn?m/?'QV?e????ej???F??m?wG?S?.-S3?Bn??^?\W?Pv?~o?????v????i?g??G?]ce????vs?o}I?_?????EZ????B??e?@????0F???}?p??Z/)2??l???"?v?4????????R?Y????5"? ?????k_?u4/ ?????o?????bI????:??5/J?k? B???Pc??V????s??{?k?-???Y??????????|?7]?(??t]H?b?L???(? U??=????????r????}\?^?{???J?)????k??????3??c _us??X:?`???'?b?!fm?1????S^????;P?>??;@??_??????x?E????????q??????!?b?Yb??s?(3??^Z? ^???;?p??yn??]??????}?h??[???i?????,??C 1?3?1?'.?Z??? p|&^?????w'k?????? ^???????? ??>??p??G 1?C??cnm??M??l?????xa???? ??y??&?-]l?{?cS????VuX? 3??+?????-?|OZ?p????8??= ?L??QL?????1p?R?oI?=?`??????? +O\?]Z_???q_y????tW[???H?g?-?S:?9??R??? S??K} >z??Gp?s???????y?????????X??`]?w?3??k c???'??g6????z????{?B?8??l??i}?-??T?1?ch9?????m/??3???,?Ri?7?a??????u ?3?7?n*??}??9???4N??????u??~w*?7?o>?1??\+??o????J???:???|???)???????}8??#O_??J??[yic??=?E|?????????8k?Z?& ?????YP??(??~???W??X??[?i???v??~???3????+?????{??~??C??? ?|4?:??q?ydZ??8?{?r?t*???)???????}???i}????????{K??=??wV?????/?Y??R7y?{??>?s?Yi?{????h?????L????????u?J?OSib??????[?W??Z]E W???7F??q??:|I???mo?????[?m????|??=??jc??=???]?K??k_?????>Y6??\K?[L?q-?&?=;????7?a?Q?[?Suv????M??|??r??2??????5?7na_?~ku???????N?vt?-????XK??7???{?c????L??????o?~??+o^??H?4}\??|?????8?O/??=????TnGwc^??}/?~W???1?t?1?r???1??1????????j-???????W??1?}=???v?!?i?????q.?yVc?-5???.????? ~$??m?????}??#????????4????????????rG{????_?S????????4QS??1?7?nIL??)????eg?i?cZ??P?^c^?x?q??? ???7l???4-??????N???{?u??h???o?F;??3????+??????^???#????L?ly?????2l??5W??G,?8?/??&?~|???-?+? ?}?[N?c&????`*?38?1?.?i}_??;??}cJqc????????>?3g?i?cZ??~,??k?3????a1??M6?W?/?????4-????Rq??HZ???\s??R??g?????]????M?? ?a??(??????????????L????i?7H??t7K?}????&?D:x?Y??~??-?7?n*?R^????????f?i?cZ??>+???\t"?}?p~,?????k??K?R]????_?hO?????wc??O?`?k?.?[L)n,??:?Z???S?_??i?cZ ??a?G'????<?K??/I??DK?uVZ?{???X?}????f????[?}?)??VL?Z??????????o??1???%????|??j???????????e??f?*M?.[?Uz?=wb??i???m???R?S??q?)???[RS?bz??2?{L?p???k?????????+??mJ?Z5?[??cL??K?#U?????v?1??*C?M?[a??4cu9??????2??????????KT???{7??v?1s???:????????)}???1?^?M?????[?? >?|?a??u???u?? ???????k?}?i??t??????9?????r?15?,[? ?J????`/???????????:???4?O?-???0?V?x??????G,MS???t-??????????T:?????3??m~?J??|?j??4???b???-?8??u???Bi?}Q?????yL???????????u?U3??*&?v\;[?o?? ?R}????Zz?bB?????G-?C?-???)???b?1-je???]???o???g-???[????x"???%??[g?g????wVX?$?T]??]??????iZ?P?????Q?Q?? ?g??K? xDw???Q???g?r_z?Q??bZ?Sk???T???je,??>?c????q????zhi?_+[????bK?o???Gi?Lc8?LW????????n!M?.[???^??2u????????s\k?e?I??\-????g??>?S?.{?????zUC=??n???zj???z??R?w?gS??p?2+??N?W"???????O?????>???[???}o?I??Z??]?E??hl-??1??l~????;???[????*???'/??w???9??P???x&?????v?????u??Z??}?????T????.V??9?}?x_?j#eKi????????>?}??ox??????????j??RYj???_m_?)?????b?>????>}??y???~O??Q{?pf??8?>6????Oc?kI7??y?w?q???????T?ji???=?8g??????aO ?J??o?x7?>{Pv ??|i_?p?w??5?????:?c???z???Z??x???y??-????X>??m??????????F? q????c???%u[?&F?1G?????y???????bk?q?????????s?t???~?\o??ky??K?z_!??i???s???2?5U?Z?.??J???????????u?????v??+/??S??|~???H>!???u?1nc???-m#F?????yy????S?7Ubk???r?n?????~^???+7?8??c???????8??';?w ?=??[????T?M2w?s???i?F#?? @?o??n?A??v/????}?>??>??NoCq"??x@%?^?????? ?v???G?g???g?#F???????????^??m??|J?~s????????l]????????S?~fa?mV^???????[??i??~~5?Hm7?6w???m??^\????{ w?b???m??? 'V6?=????T~S;???u???z?>?????N?~?M????2?#F????????~?????wyD;??e??}?t?7X???L{??C&?U???u u?????+???????ZyNZ?????R????????f??Q/W????C?|?J??????? ?EYL??? ?R>?46Vo?????:.??~?>??m???b8??R?R^??? ???4??????b???uG????r?s???u?3\??n}m????+?u????=??>?N?????;`/? ???S?????%????????i?4s?K???????K????X???_x??????????l?4?@3???+??N?j?x???-Om])fn??_s??q???[?5???]X??>????]?{??}??xAyZ?5'????o?m?_?[??????~=[??m???q???/[?6??x_???? ????????.?6?1O???????7nHS?i}-m??;??1?}?w????????yx??????K?????D??_P??1?(??t????Y?=?_????y|a??cK?-+?7???7XP??r???DZ??yne????_?-C???#????????h?|??u9????0m)?_?? ???,-?--?lr?y?|b2#?}?w?f?????{XW??y?/?:???{w???????Tw??]?,??f????x????????b???I?|?^?K?x?ci???L??Z?ya??kN>?G??R?o??????[??n?'&?$????o???g7??X9?8??d_?v(???>Z??0?a????l???%mi{??[????x?T{???????4s??7? ??T??????q??????7???g?????({?Y????t?-??^???},m??i???%??,yY??m[???-mo?k??O?{R?|??s?U?}????_*?????'W???z.?;???|]K=?2?m?kIyj??X{?a<+x?`?G????[?~????8???S???T?????/?????? ?t????yE???}???3??h'?o?/I??n9???)??]???zj?W??}m?.????????i?|????+O,?????m??u??????_?.??jm???/?:U'???~??2 ?????f??w*?97W?]~n:u?????i?n ??? y???9elI??N?Q?}????????23??e??????y?(? ???<2X{?1???w?w?X??p~:??-????/?ss? _?N??Ps??0?{s??87??4m=?'e?~?K??wt?G?RO-??H??387??]?k?s?????q??r??k?v????>m4??Zm???????m?k???P??qG???+?c??j??9C??|?G?????>??c?????T\K?????????#??4M?????%?3b?????k?\??;?W)???yz????????o??Y?????????0c?h????w??(??y??R??o?'??D???7|S?)?[?9?????h?? iJ??{I?\?{??o???++i??q??Vy??E???L?k??V???????i?^?\j?S?????o?? 1?s??o??????? ??v ??9???.??????r??S?!?^???8/n? ?????9?b?D{?~ ?h?P?WW?o??oo???|:????6?o??b???mF??????U???4??aS*?m ??????_???????P'????y???p?n[>VP?????J????u1?2q??J????\???v??????OK??~???mq^?E%m??{? ???q??z????8?? ???{???<~???x?6?1??????t??e(??o?b????????U?iywe_y=????]9?7D???|????[??????????? ?T??i=b??????:8,???.?{?5?u?1'?????????????W??????m?k??????#f?1sE?@????!??]o-??~????O|?J9k?s?)? *??;;??%ZR'???]???y?????K????|G??xiy???V+????????7?#F?czO??=)?O?????E??~{???+????????_%???;J?/z??r??z]?.?+???????T????Z??? G???9???????&1b???aL?Fbs?g?U?q}??.,???/???????????7uL%1N?% ??7??"?q?^?7?Z????d?l,G??8????(??a?S??S??l_??>?5^w??XP??2??$F?1;??=w$6m??m??????i?x??|????????>?v?????1n:???iq?^??o/? ?pa???m?up??Z?dv?c???.??2'S?\???????'?|Q?-~????????9?N:?wG/?B?PZ?op?n??2?c??;?7???????5?1&1b???aLo???+?5X???=??v?+]w?<4??x??^Q*Og??;???????}+??}?x??? ?zWC?J???b ???l??t0????? ?S*??T??_!???????[>?$F?1;????????t??"??{z%6????(K??Kt?j????6?Y??_/?????M???m?M?z???,??u]/?3??+7?l?lZ_?F?+??&?????p????11?`>??P?*?9? ???^??????)?????8?1?d??:vl??&?#F?cz?w?k?4??+?:^?P???,?w??wF??w?5?s????????z??g?|E??}?[?W?????]?.3???u?r?O????? ???E?uy??nb?'??H?L}VK??y+7?????a??1????Zg-?>n?0??~?1b??0?????t???;??0X?>n?P?R?Re>D_ *?v??t??????????^?N???u?????????????W???^??#?@?? ?nh+???- tC[*??????mk???C7???nh[=_C[=??4*???`??v????D??Ii??WJ???G??"??g??A&?5 Y?1???JJ]\?Q???K??iAq?b?(@?(?`?R??_?e?;??\????Q?[?????+? pUB??j??#K??t??)???tL=}G??????????[>?V"+?? n~??T/l?????*X37???KtU?B???3????t]j?? ??5 ??6?[?)?[?[?$???????M??Q??"s????&s?Q=?E????6?s?4g?s ??6? Gu?? ??V???????m?S;???s??Q?"u??9?&q?Q3?E????Vk??z?;??56u?vu?PK ?j???????f???r ???????3?6r?s4}? ????dt???nI8??r?m???????r??:?5?{???u?j?? ??O??1Q????UD?#T?.*??????B0???8d????^???uo???????r?LI.h#???9??i??8?9?d?U????????Iow{????ZK???m?????b??W4???1??5W?m:?x?? ?*N]D??_??o"6??]??^PK O'[???7????d?+=?{??l?jmC?j+U??????k?r/??L?7I???EMX?<>??f?>S?????]T??{J??\S?*X??F\e1{M6$ ??E?????a??7??JS????c!8?3:?a? ??CM?????1?J?y0??j??7 ??(?1??rR?0???E??Al??\????????? 5?h?~?$?.[?????RhvP?G????9?K?g?"??Tm??x"??? !??L ????d-??6?&????K??8P3Z at 8 ?s?8 `?s?Sq?Qf?{{?V:a&?????Z???X?????c\%?g?8????`?,??1?(7??v??????????R&w)???1?*???h?B?C*? M??V*?\??K?????&??`?E??#?0?4)????1u??9??f?> j?WE5F>@X< l^??J?T%- kmA?m??]@sgv????????7?o????kF,)A?>/??????S?.????o?Nv?Q??h???? ?????'???K?n?FFS?h--?i+?X??:??'??y??J???LE??ce?}]??wn*????? +?N?????5?&???Hu?X?:?5?g??7t????{2????Z??@??Dw???h??i?7???????*F???D???7??t^]??E? ?~??k?????}?&3QA? Z??Z????1???D?))?M??v????/???km??~????(????{%?bw??????u???R/m?yQ ???]?.??????z7??8P????]k?}??4? ??/???t???????j??=???? ???@c?3??0????????PK ?X??a*QZ?Y?m ??1p???O???0??W,OR?0?V6 A?Wvo? ???z ??h???o[?^???t?G???? PK v.T2\}????/?0???????g?%O???t\e?????r???{?RU?p?=??x?(4???of1t?Gt4?\??k??G??k????? ~>?7??[n|xb????nVA???o? N??U?<n???M^?V??3*??x??????B?w?+?|G????h?4xo('????????%??? } ???7x????yU X$??q?;???r?=?wj%?'?@??O?????>???S???wR??$ ???#b???2c>??pM?~??u??h?yD??????g???~???5???x?H???l?? ????????/?C?d???hoh???Es. a?R?u3D????[L a?????tV??uo?IO???e?@/M?J??r?? ?2??????R,2?E???U?]X7????.??F?: ??6I??7?2? +r?????;?}?s-?A?w*~?-?CZ???%oF_X'z?????+?b:nA???I??#B?*???Z??;????,mq???v???G?N??w????lyybZ?????T????ah?^????-?????E?????4{L?V@?????????Ao4??????C???]??3l????!??????>??{??VJ?*???????a?????I|:???M?????O????bs??PK a?cIANb<(? ?cW???)?S??? ??{j?(i?%?8??=?b????7??X?????????Y|`+???hj?v,?????@wT?;X?????-??E?Uv?\8??.??'?h? L?)A?(?<Y?*?9???l????h?U??g\?Iv??d?F????d????G??t??N??#Y?#?????6????dY?+Nf=? ??m?2?%?????????;G?@W??9??"??)H9??+7\??J?? ??V?a???f?X+c?T\??X?????acg?JPS9???^Q??4?0m?s????1??+$??5-L????v?-??El??`;" ?D??)?tL?S+@-??T?'????i!W?FX???l;? :Ea???y?4!????+???????r?j2?\??D?9???x?4xm?;??)y????????5#???(??A?&88t?????2|??ee??????W?XH??r d?$c?|????~6+t?%:??*?nU??k^?(?Tr?g?@??b?Y????\??2?C??'(??`J???cq??ZFdY???? yAm?P?DO???>| ??\oB??7.h????[??}q@<7/????rl5?eO????6????? ????y.??EW?fp???????L?????1j/7F?5?4?,??????? \_??????d8?21?x?S??\?x?GHv? ???8C??7(?o??f?~??,??d?i-??P??x???L?dQ4??1Vb:??K??)^b}?? ?? ?%~?????o!? KC&G ????S??`xe??yr?%&??\jn????p?R?GJ?????y)H?HEld?AL?, Y?B?U?? ?U???b(?RB>(??_T7?q????e????F!z?>??8?L?WX\??.?b??HD???^?????!`????y;q?K????L!=S ?yt?d(??]?"??$:???e_???tyP~? ?????RF?[Qm??Q????????q??c???????????Rh ?"K????=??}?nc??0 ?} ?z??D?E???F?jl ?? ??v6?(??0 Gv$??QE????????????F??#C??>2M,?F??%?J?k,?r??m???????Z?K?g?J?r?n?q??L?t?5??VX?,\?7?????`??????????k? =2v??f?1?VZ?b????;?(;?_b ??h??oL?>????|EF.V???y?tL?{,MX???????R?? ]=? ????~yQ?L G?????r??W\?- ?)+?#A????{??F?[????b ?c=?1[??????K6?a?^'bsk??????^?;?_?,o?PK 5,? $ ??;???|??????XDx=??"??0N????&~"c????7???p???_?i\D??eY??????N?7_???" ???%?,?~?^? H???0pMpG&?D&p)9?>%x ??@"???H?<]??w?????F?N??{???S?????6E?j?? b?kK?8?QE?& ?\ ?]?#r/???W???c??Y?????Z[?Ak???&?' 5??x??????????tP?^?&?:???>JQy?????pv ???`?V????O?o-?? R}??Q|t??Jq?7?a??*?& O?m?{ f??????XV? [9?????*?L???(EJKS?????? ?#???? ?M?????????v????8*k?F?D?H?K??{???[n????[Z?1???????^????????"?X?'=?t??m}??uQ?[?>??^???.????`??,zlo??zK??l?????#????_<y???~?Jr?? ?;t?`?e??O]? ???%n??`x? ????X???PC??Fo?_k|H??W???+1  Px?? Z???{?`????????????Z?A? wO?C???z?A??{(? F?u???`V=?]?Ah?2?|?????j??0???Jpj?UM?????;????? ?,?x|qt?+??????E???@?m?Z? ???Y ???3????^? m????x????WO?M#?-???a???:????/y?4M?$?????????ZD0?H^?r!????\?cw2???7?v???'*??&??? ??_^?0#??d????N?k????W???:?PK ???:#?=?s?1??,???X?`?.? ??a? $?_?D??????? Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28139/EL-5 Modified Files: dbmail.spec Log Message: - fix left out ? in comparison Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/EL-5/dbmail.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- dbmail.spec 6 Jul 2009 05:10:51 -0000 1.21 +++ dbmail.spec 6 Jul 2009 06:06:06 -0000 1.22 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{with_gmime22} +%if 0%{?with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Mon Jul 06 2009 Bernard Johnson - 2.2.11-7 +- fix left out ? in comparison + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 - fix conditional comparison to be 0 for no value From bjohnson at fedoraproject.org Mon Jul 6 06:06:37 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 06:06:37 +0000 (UTC) Subject: rpms/dbmail/devel dbmail.spec,1.28,1.29 Message-ID: <20090706060637.7A08A11C049A@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28139/devel Modified Files: dbmail.spec Log Message: - fix left out ? in comparison Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- dbmail.spec 6 Jul 2009 05:10:51 -0000 1.28 +++ dbmail.spec 6 Jul 2009 06:06:07 -0000 1.29 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{with_gmime22} +%if 0%{?with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Mon Jul 06 2009 Bernard Johnson - 2.2.11-7 +- fix left out ? in comparison + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 - fix conditional comparison to be 0 for no value From bjohnson at fedoraproject.org Mon Jul 6 06:06:37 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 6 Jul 2009 06:06:37 +0000 (UTC) Subject: rpms/dbmail/F-11 dbmail.spec,1.28,1.29 Message-ID: <20090706060637.755D511C02CC@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/dbmail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28139/F-11 Modified Files: dbmail.spec Log Message: - fix left out ? in comparison Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/F-11/dbmail.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- dbmail.spec 6 Jul 2009 05:10:51 -0000 1.28 +++ dbmail.spec 6 Jul 2009 06:06:07 -0000 1.29 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -30,7 +30,7 @@ Patch0: 0001-backport-fix-to-pre BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{with_gmime22} +%if 0%{?with_gmime22} BuildRequires: gmime22-devel >= 2.1.19 %else BuildRequires: gmime-devel >= 2.1.19 @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Mon Jul 06 2009 Bernard Johnson - 2.2.11-7 +- fix left out ? in comparison + * Sun Jul 05 2009 Bernard Johnson - 2.2.11-6 - fix conditional comparison to be 0 for no value From devrim at fedoraproject.org Mon Jul 6 06:15:02 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Mon, 6 Jul 2009 06:15:02 +0000 (UTC) Subject: rpms/geos/devel geos.spec,1.19,1.20 Message-ID: <20090706061502.6E57711C02C8@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/geos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29951 Modified Files: geos.spec Log Message: Fix spec Index: geos.spec =================================================================== RCS file: /cvs/extras/rpms/geos/devel/geos.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- geos.spec 27 Jun 2009 07:16:27 -0000 1.19 +++ geos.spec 6 Jul 2009 06:15:01 -0000 1.20 @@ -115,7 +115,6 @@ rm -rf %{buildroot} %{_includedir}/* %{_libdir}/libgeos.so %{_libdir}/libgeos_c.so -%exclude %{_bindir}/XMLTester %exclude %{_libdir}/*.la %exclude %{_libdir}/*.a From cchance at fedoraproject.org Mon Jul 6 06:18:40 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Mon, 6 Jul 2009 06:18:40 +0000 (UTC) Subject: rpms/liberation-fonts/devel .cvsignore, 1.9, 1.10 liberation-fonts.spec, 1.38, 1.39 sources, 1.13, 1.14 Message-ID: <20090706061840.1E63C11C02C8@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/liberation-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30762 Modified Files: .cvsignore liberation-fonts.spec sources Log Message: - Updated to upstream 1.05.1.20090706. - Reconverted from original TTF with traditional kern table. (rh#503430) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 30 Jun 2009 07:16:53 -0000 1.9 +++ .cvsignore 6 Jul 2009 06:18:39 -0000 1.10 @@ -1 +1 @@ -liberation-fonts-1.05.1.20090630.tar.gz +liberation-fonts-1.05.1.20090706.tar.gz Index: liberation-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/liberation-fonts.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- liberation-fonts.spec 30 Jun 2009 07:16:53 -0000 1.38 +++ liberation-fonts.spec 6 Jul 2009 06:18:39 -0000 1.39 @@ -9,7 +9,7 @@ New. Name: %{fontname}-fonts Summary: Fonts to replace commonly used Microsoft Windows fonts -Version: 1.05.1.20090630 +Version: 1.05.1.20090706 Release: 1%{?dist} # The license of the Liberation Fonts is a EULA that contains GPLv2 and two # exceptions: @@ -112,6 +112,14 @@ mkfontscale %{buildroot}%{_fontdir} rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Caius 'kaio' Chance - 1.05.1.20090706-1.fc12 +- Updated to upstream 1.05.1.20090706. +- Reconverted from original TTF with traditional kern table. (rh#503430) + +* Tue Jun 30 2009 Caius 'kaio' Chance - 1.05.1.20090630-1.fc12 +- Updated to upstream 1.05.1.20090630. +- Reconverted from original TTF with better procedures of data conservation. + * Tue May 19 2009 Jens Petersen - 1.04.93-11 - remove redundant obsoletes, provides and conflicts from new subpackages Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 30 Jun 2009 07:16:53 -0000 1.13 +++ sources 6 Jul 2009 06:18:39 -0000 1.14 @@ -1 +1 @@ -ea3af6af7ee0a54d829e545e6198dbb3 liberation-fonts-1.05.1.20090630.tar.gz +81478594c3faa18c90638e9def41d70e liberation-fonts-1.05.1.20090706.tar.gz From eliwap at fedoraproject.org Mon Jul 6 06:36:47 2009 From: eliwap at fedoraproject.org (eliwap) Date: Mon, 6 Jul 2009 06:36:47 +0000 (UTC) Subject: rpms/kde-plasma-translatoid/devel .cvsignore, 1.3, 1.4 import.log, 1.3, 1.4 kde-plasma-translatoid.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706063647.55EC811C02C8@cvs1.fedora.phx.redhat.com> Author: eliwap Update of /cvs/pkgs/rpms/kde-plasma-translatoid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv370/devel Modified Files: .cvsignore import.log kde-plasma-translatoid.spec sources Log Message: ---------------------------------------------------------------------- Modified Files: devel/.cvsignore devel/import.log devel/kde-plasma-translatoid.spec devel/sources ---------------------------------------------------------------------- -0.9 - Add new flags list ! Use a plasma::treeview with a QAbstractModel - copy from the clipboard! Now, you just have to select a source - text from anywhere, and active the popup, by cliking on the popup, - or by a plasma shortcut. - Change QTextEdit source event. Now, press Enter to translate, - and press Shift+Enter to add a new line. -0.8 - IMPORTANT RELEASE : - change the algorithm of source translation. Now it use Post Method. - It means that you can translate big text. And if you type 1 word, -it get you the dictionnary result - Thanks lexnewton. -0.7. - add New popup icon which can change his flags - use KConfigGroup for save favorite language - add FavoriteLanguage config dialog - some update of the code -0.6.1 - Add new Icon - change name : translatoid to plasma-applet-translatoid Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Feb 2009 07:26:01 -0000 1.3 +++ .cvsignore 6 Jul 2009 06:36:15 -0000 1.4 @@ -1 +1 @@ -translatoidNoFlag0.6.tar.gz +translatoid.0.9.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 Feb 2009 06:11:22 -0000 1.3 +++ import.log 6 Jul 2009 06:36:15 -0000 1.4 @@ -1,3 +1,4 @@ kde-plasma-translatoid-0_4_1-6_fc10:HEAD:kde-plasma-translatoid-0.4.1-6.fc10.src.rpm:1234770252 kde-plasma-translatoid-0_6-1_fc10:HEAD:kde-plasma-translatoid-0.6-1.fc10.src.rpm:1235546474 kde-plasma-translatoid-0_6-2_fc10:HEAD:kde-plasma-translatoid-0.6-2.fc10.src.rpm:1235628540 +kde-plasma-translatoid-0_9-1_fc11:HEAD:kde-plasma-translatoid-0.9-1.fc11.src.rpm:1246861564 Index: kde-plasma-translatoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/devel/kde-plasma-translatoid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-translatoid.spec 26 Feb 2009 06:11:22 -0000 1.3 +++ kde-plasma-translatoid.spec 6 Jul 2009 06:36:15 -0000 1.4 @@ -1,12 +1,12 @@ Name: kde-plasma-translatoid -Version: 0.6 -Release: 2%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: Translator Using Google Translator Group: User Interface/Desktops License: GPLv2 URL: http://www.kde-look.org/content/show.php/translatoid?content=97511 -Source0: http://www.kde-look.org/content/content-files/translatoidNoFlag%{version}.tar.gz +Source0: http://www.kde-look.org/content/content-files/translatoid.%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel >= 4.2.0 @@ -15,7 +15,7 @@ BuildRequires: gettext >= 0.17 Translator plasmoid using Google Translator. %prep -%setup -qn translatoidNoFlag +%setup -qn translatoid %build mkdir -p %{_target_platform} @@ -26,7 +26,7 @@ popd sed -i -e 's/-fno-exceptions -fno-check-new -fno-common//' \ -e 's/-fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden//' \ --e 's/-ansi//' %{_target_platform}/CMakeFiles/translatoid.dir/flags.make +-e 's/-ansi//' %{_target_platform}/CMakeFiles/plasma_applet_translatoid.dir/flags.make make %{?_smp_mflags} -C %{_target_platform} @@ -40,12 +40,250 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README licence.txt -%{_kde4_libdir}/kde4/translatoid.so +%{_kde4_libdir}/kde4/plasma_applet_translatoid.so %{_kde4_datadir}/kde4/services/plasma-applet-translatoid.desktop -%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo -%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +%{_datadir}/icons/kbflags/ad.png +%{_datadir}/icons/kbflags/ae.png +%{_datadir}/icons/kbflags/ag.png +%{_datadir}/icons/kbflags/ai.png +%{_datadir}/icons/kbflags/al.png +%{_datadir}/icons/kbflags/am.png +%{_datadir}/icons/kbflags/an.png +%{_datadir}/icons/kbflags/ao.png +%{_datadir}/icons/kbflags/aq.png +%{_datadir}/icons/kbflags/ar.png +%{_datadir}/icons/kbflags/as.png +%{_datadir}/icons/kbflags/at.png +%{_datadir}/icons/kbflags/au.png +%{_datadir}/icons/kbflags/aw.png +%{_datadir}/icons/kbflags/az.png +%{_datadir}/icons/kbflags/ba.png +%{_datadir}/icons/kbflags/bb.png +%{_datadir}/icons/kbflags/bd.png +%{_datadir}/icons/kbflags/be.png +%{_datadir}/icons/kbflags/bf.png +%{_datadir}/icons/kbflags/bg.png +%{_datadir}/icons/kbflags/bh.png +%{_datadir}/icons/kbflags/bi.png +%{_datadir}/icons/kbflags/bj.png +%{_datadir}/icons/kbflags/bm.png +%{_datadir}/icons/kbflags/bn.png +%{_datadir}/icons/kbflags/bo.png +%{_datadir}/icons/kbflags/br.png +%{_datadir}/icons/kbflags/bs.png +%{_datadir}/icons/kbflags/bt.png +%{_datadir}/icons/kbflags/bv.png +%{_datadir}/icons/kbflags/bw.png +%{_datadir}/icons/kbflags/by.png +%{_datadir}/icons/kbflags/bz.png +%{_datadir}/icons/kbflags/ca.png +%{_datadir}/icons/kbflags/cc.png +%{_datadir}/icons/kbflags/cf.png +%{_datadir}/icons/kbflags/cg.png +%{_datadir}/icons/kbflags/ch.png +%{_datadir}/icons/kbflags/ci.png +%{_datadir}/icons/kbflags/ck.png +%{_datadir}/icons/kbflags/cl.png +%{_datadir}/icons/kbflags/cm.png +%{_datadir}/icons/kbflags/cn.png +%{_datadir}/icons/kbflags/co.png +%{_datadir}/icons/kbflags/cr.png +%{_datadir}/icons/kbflags/cu.png +%{_datadir}/icons/kbflags/cv.png +%{_datadir}/icons/kbflags/cy.png +%{_datadir}/icons/kbflags/cz.png +%{_datadir}/icons/kbflags/de.png +%{_datadir}/icons/kbflags/dj.png +%{_datadir}/icons/kbflags/dk.png +%{_datadir}/icons/kbflags/dm.png +%{_datadir}/icons/kbflags/do.png +%{_datadir}/icons/kbflags/dz.png +%{_datadir}/icons/kbflags/ec.png +%{_datadir}/icons/kbflags/ee.png +%{_datadir}/icons/kbflags/eg.png +%{_datadir}/icons/kbflags/eh.png +%{_datadir}/icons/kbflags/er.png +%{_datadir}/icons/kbflags/es.png +%{_datadir}/icons/kbflags/et.png +%{_datadir}/icons/kbflags/eu.png +%{_datadir}/icons/kbflags/fi.png +%{_datadir}/icons/kbflags/fj.png +%{_datadir}/icons/kbflags/fo.png +%{_datadir}/icons/kbflags/fr.png +%{_datadir}/icons/kbflags/ga.png +%{_datadir}/icons/kbflags/gb.png +%{_datadir}/icons/kbflags/gd.png +%{_datadir}/icons/kbflags/ge.png +%{_datadir}/icons/kbflags/gh.png +%{_datadir}/icons/kbflags/gi.png +%{_datadir}/icons/kbflags/gm.png +%{_datadir}/icons/kbflags/gn.png +%{_datadir}/icons/kbflags/gq.png +%{_datadir}/icons/kbflags/gr.png +%{_datadir}/icons/kbflags/gt.png +%{_datadir}/icons/kbflags/gu.png +%{_datadir}/icons/kbflags/gw.png +%{_datadir}/icons/kbflags/gy.png +%{_datadir}/icons/kbflags/hk.png +%{_datadir}/icons/kbflags/hn.png +%{_datadir}/icons/kbflags/hr.png +%{_datadir}/icons/kbflags/ht.png +%{_datadir}/icons/kbflags/hu.png +%{_datadir}/icons/kbflags/id.png +%{_datadir}/icons/kbflags/ie.png +%{_datadir}/icons/kbflags/il.png +%{_datadir}/icons/kbflags/in.png +%{_datadir}/icons/kbflags/iq.png +%{_datadir}/icons/kbflags/ir.png +%{_datadir}/icons/kbflags/is.png +%{_datadir}/icons/kbflags/it.png +%{_datadir}/icons/kbflags/jm.png +%{_datadir}/icons/kbflags/jo.png +%{_datadir}/icons/kbflags/jp.png +%{_datadir}/icons/kbflags/ke.png +%{_datadir}/icons/kbflags/kg.png +%{_datadir}/icons/kbflags/kh.png +%{_datadir}/icons/kbflags/ki.png +%{_datadir}/icons/kbflags/km.png +%{_datadir}/icons/kbflags/kn.png +%{_datadir}/icons/kbflags/kp.png +%{_datadir}/icons/kbflags/kr.png +%{_datadir}/icons/kbflags/kw.png +%{_datadir}/icons/kbflags/kz.png +%{_datadir}/icons/kbflags/la.png +%{_datadir}/icons/kbflags/lb.png +%{_datadir}/icons/kbflags/lc.png +%{_datadir}/icons/kbflags/li.png +%{_datadir}/icons/kbflags/lk.png +%{_datadir}/icons/kbflags/lr.png +%{_datadir}/icons/kbflags/ls.png +%{_datadir}/icons/kbflags/lt.png +%{_datadir}/icons/kbflags/lu.png +%{_datadir}/icons/kbflags/lv.png +%{_datadir}/icons/kbflags/ly.png +%{_datadir}/icons/kbflags/ma.png +%{_datadir}/icons/kbflags/mc.png +%{_datadir}/icons/kbflags/md.png +%{_datadir}/icons/kbflags/mg.png +%{_datadir}/icons/kbflags/mh.png +%{_datadir}/icons/kbflags/mk.png +%{_datadir}/icons/kbflags/ml.png +%{_datadir}/icons/kbflags/mm.png +%{_datadir}/icons/kbflags/mn.png +%{_datadir}/icons/kbflags/mo.png +%{_datadir}/icons/kbflags/mr.png +%{_datadir}/icons/kbflags/ms.png +%{_datadir}/icons/kbflags/mt.png +%{_datadir}/icons/kbflags/mu.png +%{_datadir}/icons/kbflags/mv.png +%{_datadir}/icons/kbflags/mw.png +%{_datadir}/icons/kbflags/mx.png +%{_datadir}/icons/kbflags/my.png +%{_datadir}/icons/kbflags/mz.png +%{_datadir}/icons/kbflags/na.png +%{_datadir}/icons/kbflags/ne.png +%{_datadir}/icons/kbflags/ng.png +%{_datadir}/icons/kbflags/ni.png +%{_datadir}/icons/kbflags/nl.png +%{_datadir}/icons/kbflags/no.png +%{_datadir}/icons/kbflags/np.png +%{_datadir}/icons/kbflags/nr.png +%{_datadir}/icons/kbflags/nz.png +%{_datadir}/icons/kbflags/om.png +%{_datadir}/icons/kbflags/pa.png +%{_datadir}/icons/kbflags/pe.png +%{_datadir}/icons/kbflags/pf.png +%{_datadir}/icons/kbflags/pg.png +%{_datadir}/icons/kbflags/ph.png +%{_datadir}/icons/kbflags/pk.png +%{_datadir}/icons/kbflags/pl.png +%{_datadir}/icons/kbflags/pr.png +%{_datadir}/icons/kbflags/ps.png +%{_datadir}/icons/kbflags/pt.png +%{_datadir}/icons/kbflags/pw.png +%{_datadir}/icons/kbflags/py.png +%{_datadir}/icons/kbflags/qa.png +%{_datadir}/icons/kbflags/re.png +%{_datadir}/icons/kbflags/ro.png +%{_datadir}/icons/kbflags/ru.png +%{_datadir}/icons/kbflags/rw.png +%{_datadir}/icons/kbflags/sa.png +%{_datadir}/icons/kbflags/sb.png +%{_datadir}/icons/kbflags/sc.png +%{_datadir}/icons/kbflags/se.png +%{_datadir}/icons/kbflags/sg.png +%{_datadir}/icons/kbflags/si.png +%{_datadir}/icons/kbflags/sk.png +%{_datadir}/icons/kbflags/sl.png +%{_datadir}/icons/kbflags/sm.png +%{_datadir}/icons/kbflags/sn.png +%{_datadir}/icons/kbflags/so.png +%{_datadir}/icons/kbflags/sr.png +%{_datadir}/icons/kbflags/st.png +%{_datadir}/icons/kbflags/sv.png +%{_datadir}/icons/kbflags/sy.png +%{_datadir}/icons/kbflags/sz.png +%{_datadir}/icons/kbflags/tc.png +%{_datadir}/icons/kbflags/td.png +%{_datadir}/icons/kbflags/tf.png +%{_datadir}/icons/kbflags/tg.png +%{_datadir}/icons/kbflags/th.png +%{_datadir}/icons/kbflags/tj.png +%{_datadir}/icons/kbflags/tl.png +%{_datadir}/icons/kbflags/tn.png +%{_datadir}/icons/kbflags/to.png +%{_datadir}/icons/kbflags/tr.png +%{_datadir}/icons/kbflags/tt.png +%{_datadir}/icons/kbflags/tv.png +%{_datadir}/icons/kbflags/tw.png +%{_datadir}/icons/kbflags/tz.png +%{_datadir}/icons/kbflags/ua.png +%{_datadir}/icons/kbflags/ug.png +%{_datadir}/icons/kbflags/um.png +%{_datadir}/icons/kbflags/us.png +%{_datadir}/icons/kbflags/uy.png +%{_datadir}/icons/kbflags/uz.png +%{_datadir}/icons/kbflags/va.png +%{_datadir}/icons/kbflags/vc.png +%{_datadir}/icons/kbflags/ve.png +%{_datadir}/icons/kbflags/vg.png +%{_datadir}/icons/kbflags/vi.png +%{_datadir}/icons/kbflags/vn.png +%{_datadir}/icons/kbflags/vu.png +%{_datadir}/icons/kbflags/ws.png +%{_datadir}/icons/kbflags/ye.png +%{_datadir}/icons/kbflags/za.png +%{_datadir}/icons/kbflags/zm.png +%{_datadir}/icons/kbflags/zw.png + + %changelog +* Wed Feb 25 2009 Eli Wapniarski 0.9-1 +-0.9 +- Add new flags list ! Use a plasma::treeview with a QAbstractModel +- copy from the clipboard! Now, you just have to select a source +- text from anywhere, and active the popup, by cliking on the popup, +- or by a plasma shortcut. +- Change QTextEdit source event. Now, press Enter to translate, +- and press Shift+Enter to add a new line. +-0.8 +- IMPORTANT RELEASE : +- change the algorithm of source translation. Now it use Post Method. +- It means that you can translate big text. And if you type 1 word, +-it get you the dictionnary result +- Thanks lexnewton. +-0.7 +- add New popup icon which can change his flags +- use KConfigGroup for save favorite language +- add FavoriteLanguage config dialog +- some update of the code +-0.6.1 +- Add new Icon +- change name : translatoid to plasma-applet-translatoid + * Wed Feb 25 2009 Eli Wapniarski 0.6-2 -Fix Build Requirement Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Feb 2009 07:26:01 -0000 1.3 +++ sources 6 Jul 2009 06:36:15 -0000 1.4 @@ -1 +1 @@ -36a1a989033819579e0313ee7e60a199 translatoidNoFlag0.6.tar.gz +c41c499c8f3604a957cd2448e1344067 translatoid.0.9.tar.gz From eliwap at fedoraproject.org Mon Jul 6 06:40:47 2009 From: eliwap at fedoraproject.org (eliwap) Date: Mon, 6 Jul 2009 06:40:47 +0000 (UTC) Subject: rpms/kde-plasma-translatoid/F-9 .cvsignore, 1.3, 1.4 import.log, 1.3, 1.4 kde-plasma-translatoid.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706064047.8FD2B11C02C8@cvs1.fedora.phx.redhat.com> Author: eliwap Update of /cvs/pkgs/rpms/kde-plasma-translatoid/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1909/F-9 Modified Files: .cvsignore import.log kde-plasma-translatoid.spec sources Log Message: ---------------------------------------------------------------------- Modified Files: F-9/.cvsignore F-9/import.log F-9/kde-plasma-translatoid.spec F-9/sources ---------------------------------------------------------------------- -0.9 - Add new flags list ! Use a plasma::treeview with a QAbstractModel - copy from the clipboard! Now, you just have to select a source - text from anywhere, and active the popup, by cliking on the popup, - or by a plasma shortcut. - Change QTextEdit source event. Now, press Enter to translate, - and press Shift+Enter to add a new line. -0.8 - IMPORTANT RELEASE : - change the algorithm of source translation. Now it use Post Method. - It means that you can translate big text. And if you type 1 word, -it get you the dictionnary result - Thanks lexnewton. -0.7. - add New popup icon which can change his flags - use KConfigGroup for save favorite language - add FavoriteLanguage config dialog - some update of the code -0.6.1 - Add new Icon - change name : translatoid to plasma-applet-translatoid Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-9/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Feb 2009 07:28:46 -0000 1.3 +++ .cvsignore 6 Jul 2009 06:40:17 -0000 1.4 @@ -1 +1 @@ -translatoidNoFlag0.6.tar.gz +translatoid.0.9.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-9/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 Feb 2009 06:13:48 -0000 1.3 +++ import.log 6 Jul 2009 06:40:17 -0000 1.4 @@ -1,3 +1,4 @@ kde-plasma-translatoid-0_4_1-6_fc10:F-9:kde-plasma-translatoid-0.4.1-6.fc10.src.rpm:1234770493 kde-plasma-translatoid-0_6-1_fc10:F-9:kde-plasma-translatoid-0.6-1.fc10.src.rpm:1235546829 kde-plasma-translatoid-0_6-2_fc10:F-9:kde-plasma-translatoid-0.6-2.fc10.src.rpm:1235628747 +kde-plasma-translatoid-0_9-1_fc11:F-9:kde-plasma-translatoid-0.9-1.fc11.src.rpm:1246862342 Index: kde-plasma-translatoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-9/kde-plasma-translatoid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-translatoid.spec 26 Feb 2009 06:13:48 -0000 1.3 +++ kde-plasma-translatoid.spec 6 Jul 2009 06:40:17 -0000 1.4 @@ -1,12 +1,12 @@ Name: kde-plasma-translatoid -Version: 0.6 -Release: 2%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: Translator Using Google Translator Group: User Interface/Desktops License: GPLv2 URL: http://www.kde-look.org/content/show.php/translatoid?content=97511 -Source0: http://www.kde-look.org/content/content-files/translatoidNoFlag%{version}.tar.gz +Source0: http://www.kde-look.org/content/content-files/translatoid.%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel >= 4.2.0 @@ -15,7 +15,7 @@ BuildRequires: gettext >= 0.17 Translator plasmoid using Google Translator. %prep -%setup -qn translatoidNoFlag +%setup -qn translatoid %build mkdir -p %{_target_platform} @@ -26,7 +26,7 @@ popd sed -i -e 's/-fno-exceptions -fno-check-new -fno-common//' \ -e 's/-fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden//' \ --e 's/-ansi//' %{_target_platform}/CMakeFiles/translatoid.dir/flags.make +-e 's/-ansi//' %{_target_platform}/CMakeFiles/plasma_applet_translatoid.dir/flags.make make %{?_smp_mflags} -C %{_target_platform} @@ -40,12 +40,250 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README licence.txt -%{_kde4_libdir}/kde4/translatoid.so +%{_kde4_libdir}/kde4/plasma_applet_translatoid.so %{_kde4_datadir}/kde4/services/plasma-applet-translatoid.desktop -%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo -%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +%{_datadir}/icons/kbflags/ad.png +%{_datadir}/icons/kbflags/ae.png +%{_datadir}/icons/kbflags/ag.png +%{_datadir}/icons/kbflags/ai.png +%{_datadir}/icons/kbflags/al.png +%{_datadir}/icons/kbflags/am.png +%{_datadir}/icons/kbflags/an.png +%{_datadir}/icons/kbflags/ao.png +%{_datadir}/icons/kbflags/aq.png +%{_datadir}/icons/kbflags/ar.png +%{_datadir}/icons/kbflags/as.png +%{_datadir}/icons/kbflags/at.png +%{_datadir}/icons/kbflags/au.png +%{_datadir}/icons/kbflags/aw.png +%{_datadir}/icons/kbflags/az.png +%{_datadir}/icons/kbflags/ba.png +%{_datadir}/icons/kbflags/bb.png +%{_datadir}/icons/kbflags/bd.png +%{_datadir}/icons/kbflags/be.png +%{_datadir}/icons/kbflags/bf.png +%{_datadir}/icons/kbflags/bg.png +%{_datadir}/icons/kbflags/bh.png +%{_datadir}/icons/kbflags/bi.png +%{_datadir}/icons/kbflags/bj.png +%{_datadir}/icons/kbflags/bm.png +%{_datadir}/icons/kbflags/bn.png +%{_datadir}/icons/kbflags/bo.png +%{_datadir}/icons/kbflags/br.png +%{_datadir}/icons/kbflags/bs.png +%{_datadir}/icons/kbflags/bt.png +%{_datadir}/icons/kbflags/bv.png +%{_datadir}/icons/kbflags/bw.png +%{_datadir}/icons/kbflags/by.png +%{_datadir}/icons/kbflags/bz.png +%{_datadir}/icons/kbflags/ca.png +%{_datadir}/icons/kbflags/cc.png +%{_datadir}/icons/kbflags/cf.png +%{_datadir}/icons/kbflags/cg.png +%{_datadir}/icons/kbflags/ch.png +%{_datadir}/icons/kbflags/ci.png +%{_datadir}/icons/kbflags/ck.png +%{_datadir}/icons/kbflags/cl.png +%{_datadir}/icons/kbflags/cm.png +%{_datadir}/icons/kbflags/cn.png +%{_datadir}/icons/kbflags/co.png +%{_datadir}/icons/kbflags/cr.png +%{_datadir}/icons/kbflags/cu.png +%{_datadir}/icons/kbflags/cv.png +%{_datadir}/icons/kbflags/cy.png +%{_datadir}/icons/kbflags/cz.png +%{_datadir}/icons/kbflags/de.png +%{_datadir}/icons/kbflags/dj.png +%{_datadir}/icons/kbflags/dk.png +%{_datadir}/icons/kbflags/dm.png +%{_datadir}/icons/kbflags/do.png +%{_datadir}/icons/kbflags/dz.png +%{_datadir}/icons/kbflags/ec.png +%{_datadir}/icons/kbflags/ee.png +%{_datadir}/icons/kbflags/eg.png +%{_datadir}/icons/kbflags/eh.png +%{_datadir}/icons/kbflags/er.png +%{_datadir}/icons/kbflags/es.png +%{_datadir}/icons/kbflags/et.png +%{_datadir}/icons/kbflags/eu.png +%{_datadir}/icons/kbflags/fi.png +%{_datadir}/icons/kbflags/fj.png +%{_datadir}/icons/kbflags/fo.png +%{_datadir}/icons/kbflags/fr.png +%{_datadir}/icons/kbflags/ga.png +%{_datadir}/icons/kbflags/gb.png +%{_datadir}/icons/kbflags/gd.png +%{_datadir}/icons/kbflags/ge.png +%{_datadir}/icons/kbflags/gh.png +%{_datadir}/icons/kbflags/gi.png +%{_datadir}/icons/kbflags/gm.png +%{_datadir}/icons/kbflags/gn.png +%{_datadir}/icons/kbflags/gq.png +%{_datadir}/icons/kbflags/gr.png +%{_datadir}/icons/kbflags/gt.png +%{_datadir}/icons/kbflags/gu.png +%{_datadir}/icons/kbflags/gw.png +%{_datadir}/icons/kbflags/gy.png +%{_datadir}/icons/kbflags/hk.png +%{_datadir}/icons/kbflags/hn.png +%{_datadir}/icons/kbflags/hr.png +%{_datadir}/icons/kbflags/ht.png +%{_datadir}/icons/kbflags/hu.png +%{_datadir}/icons/kbflags/id.png +%{_datadir}/icons/kbflags/ie.png +%{_datadir}/icons/kbflags/il.png +%{_datadir}/icons/kbflags/in.png +%{_datadir}/icons/kbflags/iq.png +%{_datadir}/icons/kbflags/ir.png +%{_datadir}/icons/kbflags/is.png +%{_datadir}/icons/kbflags/it.png +%{_datadir}/icons/kbflags/jm.png +%{_datadir}/icons/kbflags/jo.png +%{_datadir}/icons/kbflags/jp.png +%{_datadir}/icons/kbflags/ke.png +%{_datadir}/icons/kbflags/kg.png +%{_datadir}/icons/kbflags/kh.png +%{_datadir}/icons/kbflags/ki.png +%{_datadir}/icons/kbflags/km.png +%{_datadir}/icons/kbflags/kn.png +%{_datadir}/icons/kbflags/kp.png +%{_datadir}/icons/kbflags/kr.png +%{_datadir}/icons/kbflags/kw.png +%{_datadir}/icons/kbflags/kz.png +%{_datadir}/icons/kbflags/la.png +%{_datadir}/icons/kbflags/lb.png +%{_datadir}/icons/kbflags/lc.png +%{_datadir}/icons/kbflags/li.png +%{_datadir}/icons/kbflags/lk.png +%{_datadir}/icons/kbflags/lr.png +%{_datadir}/icons/kbflags/ls.png +%{_datadir}/icons/kbflags/lt.png +%{_datadir}/icons/kbflags/lu.png +%{_datadir}/icons/kbflags/lv.png +%{_datadir}/icons/kbflags/ly.png +%{_datadir}/icons/kbflags/ma.png +%{_datadir}/icons/kbflags/mc.png +%{_datadir}/icons/kbflags/md.png +%{_datadir}/icons/kbflags/mg.png +%{_datadir}/icons/kbflags/mh.png +%{_datadir}/icons/kbflags/mk.png +%{_datadir}/icons/kbflags/ml.png +%{_datadir}/icons/kbflags/mm.png +%{_datadir}/icons/kbflags/mn.png +%{_datadir}/icons/kbflags/mo.png +%{_datadir}/icons/kbflags/mr.png +%{_datadir}/icons/kbflags/ms.png +%{_datadir}/icons/kbflags/mt.png +%{_datadir}/icons/kbflags/mu.png +%{_datadir}/icons/kbflags/mv.png +%{_datadir}/icons/kbflags/mw.png +%{_datadir}/icons/kbflags/mx.png +%{_datadir}/icons/kbflags/my.png +%{_datadir}/icons/kbflags/mz.png +%{_datadir}/icons/kbflags/na.png +%{_datadir}/icons/kbflags/ne.png +%{_datadir}/icons/kbflags/ng.png +%{_datadir}/icons/kbflags/ni.png +%{_datadir}/icons/kbflags/nl.png +%{_datadir}/icons/kbflags/no.png +%{_datadir}/icons/kbflags/np.png +%{_datadir}/icons/kbflags/nr.png +%{_datadir}/icons/kbflags/nz.png +%{_datadir}/icons/kbflags/om.png +%{_datadir}/icons/kbflags/pa.png +%{_datadir}/icons/kbflags/pe.png +%{_datadir}/icons/kbflags/pf.png +%{_datadir}/icons/kbflags/pg.png +%{_datadir}/icons/kbflags/ph.png +%{_datadir}/icons/kbflags/pk.png +%{_datadir}/icons/kbflags/pl.png +%{_datadir}/icons/kbflags/pr.png +%{_datadir}/icons/kbflags/ps.png +%{_datadir}/icons/kbflags/pt.png +%{_datadir}/icons/kbflags/pw.png +%{_datadir}/icons/kbflags/py.png +%{_datadir}/icons/kbflags/qa.png +%{_datadir}/icons/kbflags/re.png +%{_datadir}/icons/kbflags/ro.png +%{_datadir}/icons/kbflags/ru.png +%{_datadir}/icons/kbflags/rw.png +%{_datadir}/icons/kbflags/sa.png +%{_datadir}/icons/kbflags/sb.png +%{_datadir}/icons/kbflags/sc.png +%{_datadir}/icons/kbflags/se.png +%{_datadir}/icons/kbflags/sg.png +%{_datadir}/icons/kbflags/si.png +%{_datadir}/icons/kbflags/sk.png +%{_datadir}/icons/kbflags/sl.png +%{_datadir}/icons/kbflags/sm.png +%{_datadir}/icons/kbflags/sn.png +%{_datadir}/icons/kbflags/so.png +%{_datadir}/icons/kbflags/sr.png +%{_datadir}/icons/kbflags/st.png +%{_datadir}/icons/kbflags/sv.png +%{_datadir}/icons/kbflags/sy.png +%{_datadir}/icons/kbflags/sz.png +%{_datadir}/icons/kbflags/tc.png +%{_datadir}/icons/kbflags/td.png +%{_datadir}/icons/kbflags/tf.png +%{_datadir}/icons/kbflags/tg.png +%{_datadir}/icons/kbflags/th.png +%{_datadir}/icons/kbflags/tj.png +%{_datadir}/icons/kbflags/tl.png +%{_datadir}/icons/kbflags/tn.png +%{_datadir}/icons/kbflags/to.png +%{_datadir}/icons/kbflags/tr.png +%{_datadir}/icons/kbflags/tt.png +%{_datadir}/icons/kbflags/tv.png +%{_datadir}/icons/kbflags/tw.png +%{_datadir}/icons/kbflags/tz.png +%{_datadir}/icons/kbflags/ua.png +%{_datadir}/icons/kbflags/ug.png +%{_datadir}/icons/kbflags/um.png +%{_datadir}/icons/kbflags/us.png +%{_datadir}/icons/kbflags/uy.png +%{_datadir}/icons/kbflags/uz.png +%{_datadir}/icons/kbflags/va.png +%{_datadir}/icons/kbflags/vc.png +%{_datadir}/icons/kbflags/ve.png +%{_datadir}/icons/kbflags/vg.png +%{_datadir}/icons/kbflags/vi.png +%{_datadir}/icons/kbflags/vn.png +%{_datadir}/icons/kbflags/vu.png +%{_datadir}/icons/kbflags/ws.png +%{_datadir}/icons/kbflags/ye.png +%{_datadir}/icons/kbflags/za.png +%{_datadir}/icons/kbflags/zm.png +%{_datadir}/icons/kbflags/zw.png + + %changelog +* Wed Feb 25 2009 Eli Wapniarski 0.9-1 +-0.9 +- Add new flags list ! Use a plasma::treeview with a QAbstractModel +- copy from the clipboard! Now, you just have to select a source +- text from anywhere, and active the popup, by cliking on the popup, +- or by a plasma shortcut. +- Change QTextEdit source event. Now, press Enter to translate, +- and press Shift+Enter to add a new line. +-0.8 +- IMPORTANT RELEASE : +- change the algorithm of source translation. Now it use Post Method. +- It means that you can translate big text. And if you type 1 word, +-it get you the dictionnary result +- Thanks lexnewton. +-0.7 +- add New popup icon which can change his flags +- use KConfigGroup for save favorite language +- add FavoriteLanguage config dialog +- some update of the code +-0.6.1 +- Add new Icon +- change name : translatoid to plasma-applet-translatoid + * Wed Feb 25 2009 Eli Wapniarski 0.6-2 -Fix Build Requirement Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-9/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Feb 2009 07:28:47 -0000 1.3 +++ sources 6 Jul 2009 06:40:17 -0000 1.4 @@ -1 +1 @@ -36a1a989033819579e0313ee7e60a199 translatoidNoFlag0.6.tar.gz +c41c499c8f3604a957cd2448e1344067 translatoid.0.9.tar.gz From eliwap at fedoraproject.org Mon Jul 6 06:42:38 2009 From: eliwap at fedoraproject.org (eliwap) Date: Mon, 6 Jul 2009 06:42:38 +0000 (UTC) Subject: rpms/kde-plasma-translatoid/F-10 .cvsignore, 1.3, 1.4 import.log, 1.3, 1.4 kde-plasma-translatoid.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706064238.38EC611C02C8@cvs1.fedora.phx.redhat.com> Author: eliwap Update of /cvs/pkgs/rpms/kde-plasma-translatoid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2246/F-10 Modified Files: .cvsignore import.log kde-plasma-translatoid.spec sources Log Message: ---------------------------------------------------------------------- Modified Files: F-10/.cvsignore F-10/import.log F-10/kde-plasma-translatoid.spec F-10/sources ---------------------------------------------------------------------- -0.9 - Add new flags list ! Use a plasma::treeview with a QAbstractModel - copy from the clipboard! Now, you just have to select a source - text from anywhere, and active the popup, by cliking on the popup, - or by a plasma shortcut. - Change QTextEdit source event. Now, press Enter to translate, - and press Shift+Enter to add a new line. -0.8 - IMPORTANT RELEASE : - change the algorithm of source translation. Now it use Post Method. - It means that you can translate big text. And if you type 1 word, -it get you the dictionnary result - Thanks lexnewton. -0.7. - add New popup icon which can change his flags - use KConfigGroup for save favorite language - add FavoriteLanguage config dialog - some update of the code -0.6.1 - Add new Icon - change name : translatoid to plasma-applet-translatoid Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Feb 2009 07:31:22 -0000 1.3 +++ .cvsignore 6 Jul 2009 06:42:07 -0000 1.4 @@ -1 +1 @@ -translatoidNoFlag0.6.tar.gz +translatoid.0.9.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 Feb 2009 06:25:14 -0000 1.3 +++ import.log 6 Jul 2009 06:42:07 -0000 1.4 @@ -1,3 +1,4 @@ kde-plasma-translatoid-0_4_1-6_fc10:F-10:kde-plasma-translatoid-0.4.1-6.fc10.src.rpm:1234770659 kde-plasma-translatoid-0_6-1_fc10:F-10:kde-plasma-translatoid-0.6-1.fc10.src.rpm:1235546998 kde-plasma-translatoid-0_6-2_fc10:F-10:kde-plasma-translatoid-0.6-2.fc10.src.rpm:1235628881 +kde-plasma-translatoid-0_9-1_fc11:F-10:kde-plasma-translatoid-0.9-1.fc11.src.rpm:1246862479 Index: kde-plasma-translatoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-10/kde-plasma-translatoid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-translatoid.spec 26 Feb 2009 06:25:14 -0000 1.3 +++ kde-plasma-translatoid.spec 6 Jul 2009 06:42:07 -0000 1.4 @@ -1,12 +1,12 @@ Name: kde-plasma-translatoid -Version: 0.6 -Release: 2%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: Translator Using Google Translator Group: User Interface/Desktops License: GPLv2 URL: http://www.kde-look.org/content/show.php/translatoid?content=97511 -Source0: http://www.kde-look.org/content/content-files/translatoidNoFlag%{version}.tar.gz +Source0: http://www.kde-look.org/content/content-files/translatoid.%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel >= 4.2.0 @@ -15,7 +15,7 @@ BuildRequires: gettext >= 0.17 Translator plasmoid using Google Translator. %prep -%setup -qn translatoidNoFlag +%setup -qn translatoid %build mkdir -p %{_target_platform} @@ -26,7 +26,7 @@ popd sed -i -e 's/-fno-exceptions -fno-check-new -fno-common//' \ -e 's/-fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden//' \ --e 's/-ansi//' %{_target_platform}/CMakeFiles/translatoid.dir/flags.make +-e 's/-ansi//' %{_target_platform}/CMakeFiles/plasma_applet_translatoid.dir/flags.make make %{?_smp_mflags} -C %{_target_platform} @@ -40,12 +40,250 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README licence.txt -%{_kde4_libdir}/kde4/translatoid.so +%{_kde4_libdir}/kde4/plasma_applet_translatoid.so %{_kde4_datadir}/kde4/services/plasma-applet-translatoid.desktop -%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo -%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +%{_datadir}/icons/kbflags/ad.png +%{_datadir}/icons/kbflags/ae.png +%{_datadir}/icons/kbflags/ag.png +%{_datadir}/icons/kbflags/ai.png +%{_datadir}/icons/kbflags/al.png +%{_datadir}/icons/kbflags/am.png +%{_datadir}/icons/kbflags/an.png +%{_datadir}/icons/kbflags/ao.png +%{_datadir}/icons/kbflags/aq.png +%{_datadir}/icons/kbflags/ar.png +%{_datadir}/icons/kbflags/as.png +%{_datadir}/icons/kbflags/at.png +%{_datadir}/icons/kbflags/au.png +%{_datadir}/icons/kbflags/aw.png +%{_datadir}/icons/kbflags/az.png +%{_datadir}/icons/kbflags/ba.png +%{_datadir}/icons/kbflags/bb.png +%{_datadir}/icons/kbflags/bd.png +%{_datadir}/icons/kbflags/be.png +%{_datadir}/icons/kbflags/bf.png +%{_datadir}/icons/kbflags/bg.png +%{_datadir}/icons/kbflags/bh.png +%{_datadir}/icons/kbflags/bi.png +%{_datadir}/icons/kbflags/bj.png +%{_datadir}/icons/kbflags/bm.png +%{_datadir}/icons/kbflags/bn.png +%{_datadir}/icons/kbflags/bo.png +%{_datadir}/icons/kbflags/br.png +%{_datadir}/icons/kbflags/bs.png +%{_datadir}/icons/kbflags/bt.png +%{_datadir}/icons/kbflags/bv.png +%{_datadir}/icons/kbflags/bw.png +%{_datadir}/icons/kbflags/by.png +%{_datadir}/icons/kbflags/bz.png +%{_datadir}/icons/kbflags/ca.png +%{_datadir}/icons/kbflags/cc.png +%{_datadir}/icons/kbflags/cf.png +%{_datadir}/icons/kbflags/cg.png +%{_datadir}/icons/kbflags/ch.png +%{_datadir}/icons/kbflags/ci.png +%{_datadir}/icons/kbflags/ck.png +%{_datadir}/icons/kbflags/cl.png +%{_datadir}/icons/kbflags/cm.png +%{_datadir}/icons/kbflags/cn.png +%{_datadir}/icons/kbflags/co.png +%{_datadir}/icons/kbflags/cr.png +%{_datadir}/icons/kbflags/cu.png +%{_datadir}/icons/kbflags/cv.png +%{_datadir}/icons/kbflags/cy.png +%{_datadir}/icons/kbflags/cz.png +%{_datadir}/icons/kbflags/de.png +%{_datadir}/icons/kbflags/dj.png +%{_datadir}/icons/kbflags/dk.png +%{_datadir}/icons/kbflags/dm.png +%{_datadir}/icons/kbflags/do.png +%{_datadir}/icons/kbflags/dz.png +%{_datadir}/icons/kbflags/ec.png +%{_datadir}/icons/kbflags/ee.png +%{_datadir}/icons/kbflags/eg.png +%{_datadir}/icons/kbflags/eh.png +%{_datadir}/icons/kbflags/er.png +%{_datadir}/icons/kbflags/es.png +%{_datadir}/icons/kbflags/et.png +%{_datadir}/icons/kbflags/eu.png +%{_datadir}/icons/kbflags/fi.png +%{_datadir}/icons/kbflags/fj.png +%{_datadir}/icons/kbflags/fo.png +%{_datadir}/icons/kbflags/fr.png +%{_datadir}/icons/kbflags/ga.png +%{_datadir}/icons/kbflags/gb.png +%{_datadir}/icons/kbflags/gd.png +%{_datadir}/icons/kbflags/ge.png +%{_datadir}/icons/kbflags/gh.png +%{_datadir}/icons/kbflags/gi.png +%{_datadir}/icons/kbflags/gm.png +%{_datadir}/icons/kbflags/gn.png +%{_datadir}/icons/kbflags/gq.png +%{_datadir}/icons/kbflags/gr.png +%{_datadir}/icons/kbflags/gt.png +%{_datadir}/icons/kbflags/gu.png +%{_datadir}/icons/kbflags/gw.png +%{_datadir}/icons/kbflags/gy.png +%{_datadir}/icons/kbflags/hk.png +%{_datadir}/icons/kbflags/hn.png +%{_datadir}/icons/kbflags/hr.png +%{_datadir}/icons/kbflags/ht.png +%{_datadir}/icons/kbflags/hu.png +%{_datadir}/icons/kbflags/id.png +%{_datadir}/icons/kbflags/ie.png +%{_datadir}/icons/kbflags/il.png +%{_datadir}/icons/kbflags/in.png +%{_datadir}/icons/kbflags/iq.png +%{_datadir}/icons/kbflags/ir.png +%{_datadir}/icons/kbflags/is.png +%{_datadir}/icons/kbflags/it.png +%{_datadir}/icons/kbflags/jm.png +%{_datadir}/icons/kbflags/jo.png +%{_datadir}/icons/kbflags/jp.png +%{_datadir}/icons/kbflags/ke.png +%{_datadir}/icons/kbflags/kg.png +%{_datadir}/icons/kbflags/kh.png +%{_datadir}/icons/kbflags/ki.png +%{_datadir}/icons/kbflags/km.png +%{_datadir}/icons/kbflags/kn.png +%{_datadir}/icons/kbflags/kp.png +%{_datadir}/icons/kbflags/kr.png +%{_datadir}/icons/kbflags/kw.png +%{_datadir}/icons/kbflags/kz.png +%{_datadir}/icons/kbflags/la.png +%{_datadir}/icons/kbflags/lb.png +%{_datadir}/icons/kbflags/lc.png +%{_datadir}/icons/kbflags/li.png +%{_datadir}/icons/kbflags/lk.png +%{_datadir}/icons/kbflags/lr.png +%{_datadir}/icons/kbflags/ls.png +%{_datadir}/icons/kbflags/lt.png +%{_datadir}/icons/kbflags/lu.png +%{_datadir}/icons/kbflags/lv.png +%{_datadir}/icons/kbflags/ly.png +%{_datadir}/icons/kbflags/ma.png +%{_datadir}/icons/kbflags/mc.png +%{_datadir}/icons/kbflags/md.png +%{_datadir}/icons/kbflags/mg.png +%{_datadir}/icons/kbflags/mh.png +%{_datadir}/icons/kbflags/mk.png +%{_datadir}/icons/kbflags/ml.png +%{_datadir}/icons/kbflags/mm.png +%{_datadir}/icons/kbflags/mn.png +%{_datadir}/icons/kbflags/mo.png +%{_datadir}/icons/kbflags/mr.png +%{_datadir}/icons/kbflags/ms.png +%{_datadir}/icons/kbflags/mt.png +%{_datadir}/icons/kbflags/mu.png +%{_datadir}/icons/kbflags/mv.png +%{_datadir}/icons/kbflags/mw.png +%{_datadir}/icons/kbflags/mx.png +%{_datadir}/icons/kbflags/my.png +%{_datadir}/icons/kbflags/mz.png +%{_datadir}/icons/kbflags/na.png +%{_datadir}/icons/kbflags/ne.png +%{_datadir}/icons/kbflags/ng.png +%{_datadir}/icons/kbflags/ni.png +%{_datadir}/icons/kbflags/nl.png +%{_datadir}/icons/kbflags/no.png +%{_datadir}/icons/kbflags/np.png +%{_datadir}/icons/kbflags/nr.png +%{_datadir}/icons/kbflags/nz.png +%{_datadir}/icons/kbflags/om.png +%{_datadir}/icons/kbflags/pa.png +%{_datadir}/icons/kbflags/pe.png +%{_datadir}/icons/kbflags/pf.png +%{_datadir}/icons/kbflags/pg.png +%{_datadir}/icons/kbflags/ph.png +%{_datadir}/icons/kbflags/pk.png +%{_datadir}/icons/kbflags/pl.png +%{_datadir}/icons/kbflags/pr.png +%{_datadir}/icons/kbflags/ps.png +%{_datadir}/icons/kbflags/pt.png +%{_datadir}/icons/kbflags/pw.png +%{_datadir}/icons/kbflags/py.png +%{_datadir}/icons/kbflags/qa.png +%{_datadir}/icons/kbflags/re.png +%{_datadir}/icons/kbflags/ro.png +%{_datadir}/icons/kbflags/ru.png +%{_datadir}/icons/kbflags/rw.png +%{_datadir}/icons/kbflags/sa.png +%{_datadir}/icons/kbflags/sb.png +%{_datadir}/icons/kbflags/sc.png +%{_datadir}/icons/kbflags/se.png +%{_datadir}/icons/kbflags/sg.png +%{_datadir}/icons/kbflags/si.png +%{_datadir}/icons/kbflags/sk.png +%{_datadir}/icons/kbflags/sl.png +%{_datadir}/icons/kbflags/sm.png +%{_datadir}/icons/kbflags/sn.png +%{_datadir}/icons/kbflags/so.png +%{_datadir}/icons/kbflags/sr.png +%{_datadir}/icons/kbflags/st.png +%{_datadir}/icons/kbflags/sv.png +%{_datadir}/icons/kbflags/sy.png +%{_datadir}/icons/kbflags/sz.png +%{_datadir}/icons/kbflags/tc.png +%{_datadir}/icons/kbflags/td.png +%{_datadir}/icons/kbflags/tf.png +%{_datadir}/icons/kbflags/tg.png +%{_datadir}/icons/kbflags/th.png +%{_datadir}/icons/kbflags/tj.png +%{_datadir}/icons/kbflags/tl.png +%{_datadir}/icons/kbflags/tn.png +%{_datadir}/icons/kbflags/to.png +%{_datadir}/icons/kbflags/tr.png +%{_datadir}/icons/kbflags/tt.png +%{_datadir}/icons/kbflags/tv.png +%{_datadir}/icons/kbflags/tw.png +%{_datadir}/icons/kbflags/tz.png +%{_datadir}/icons/kbflags/ua.png +%{_datadir}/icons/kbflags/ug.png +%{_datadir}/icons/kbflags/um.png +%{_datadir}/icons/kbflags/us.png +%{_datadir}/icons/kbflags/uy.png +%{_datadir}/icons/kbflags/uz.png +%{_datadir}/icons/kbflags/va.png +%{_datadir}/icons/kbflags/vc.png +%{_datadir}/icons/kbflags/ve.png +%{_datadir}/icons/kbflags/vg.png +%{_datadir}/icons/kbflags/vi.png +%{_datadir}/icons/kbflags/vn.png +%{_datadir}/icons/kbflags/vu.png +%{_datadir}/icons/kbflags/ws.png +%{_datadir}/icons/kbflags/ye.png +%{_datadir}/icons/kbflags/za.png +%{_datadir}/icons/kbflags/zm.png +%{_datadir}/icons/kbflags/zw.png + + %changelog +* Wed Feb 25 2009 Eli Wapniarski 0.9-1 +-0.9 +- Add new flags list ! Use a plasma::treeview with a QAbstractModel +- copy from the clipboard! Now, you just have to select a source +- text from anywhere, and active the popup, by cliking on the popup, +- or by a plasma shortcut. +- Change QTextEdit source event. Now, press Enter to translate, +- and press Shift+Enter to add a new line. +-0.8 +- IMPORTANT RELEASE : +- change the algorithm of source translation. Now it use Post Method. +- It means that you can translate big text. And if you type 1 word, +-it get you the dictionnary result +- Thanks lexnewton. +-0.7 +- add New popup icon which can change his flags +- use KConfigGroup for save favorite language +- add FavoriteLanguage config dialog +- some update of the code +-0.6.1 +- Add new Icon +- change name : translatoid to plasma-applet-translatoid + * Wed Feb 25 2009 Eli Wapniarski 0.6-2 -Fix Build Requirement Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Feb 2009 07:31:22 -0000 1.3 +++ sources 6 Jul 2009 06:42:07 -0000 1.4 @@ -1 +1 @@ -36a1a989033819579e0313ee7e60a199 translatoidNoFlag0.6.tar.gz +c41c499c8f3604a957cd2448e1344067 translatoid.0.9.tar.gz From eliwap at fedoraproject.org Mon Jul 6 06:44:36 2009 From: eliwap at fedoraproject.org (eliwap) Date: Mon, 6 Jul 2009 06:44:36 +0000 (UTC) Subject: rpms/kde-plasma-translatoid/F-11 .cvsignore, 1.3, 1.4 import.log, 1.3, 1.4 kde-plasma-translatoid.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706064436.9D18011C02C8@cvs1.fedora.phx.redhat.com> Author: eliwap Update of /cvs/pkgs/rpms/kde-plasma-translatoid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2570/F-11 Modified Files: .cvsignore import.log kde-plasma-translatoid.spec sources Log Message: ---------------------------------------------------------------------- Modified Files: F-11/.cvsignore F-11/import.log F-11/kde-plasma-translatoid.spec F-11/sources ---------------------------------------------------------------------- -0.9 - Add new flags list ! Use a plasma::treeview with a QAbstractModel - copy from the clipboard! Now, you just have to select a source - text from anywhere, and active the popup, by cliking on the popup, - or by a plasma shortcut. - Change QTextEdit source event. Now, press Enter to translate, - and press Shift+Enter to add a new line. -0.8 - IMPORTANT RELEASE : - change the algorithm of source translation. Now it use Post Method. - It means that you can translate big text. And if you type 1 word, -it get you the dictionnary result - Thanks lexnewton. -0.7. - add New popup icon which can change his flags - use KConfigGroup for save favorite language - add FavoriteLanguage config dialog - some update of the code -0.6.1 - Add new Icon - change name : translatoid to plasma-applet-translatoid Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Feb 2009 07:26:01 -0000 1.3 +++ .cvsignore 6 Jul 2009 06:44:05 -0000 1.4 @@ -1 +1 @@ -translatoidNoFlag0.6.tar.gz +translatoid.0.9.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 Feb 2009 06:11:22 -0000 1.3 +++ import.log 6 Jul 2009 06:44:06 -0000 1.4 @@ -1,3 +1,4 @@ kde-plasma-translatoid-0_4_1-6_fc10:HEAD:kde-plasma-translatoid-0.4.1-6.fc10.src.rpm:1234770252 kde-plasma-translatoid-0_6-1_fc10:HEAD:kde-plasma-translatoid-0.6-1.fc10.src.rpm:1235546474 kde-plasma-translatoid-0_6-2_fc10:HEAD:kde-plasma-translatoid-0.6-2.fc10.src.rpm:1235628540 +kde-plasma-translatoid-0_9-1_fc11:F-11:kde-plasma-translatoid-0.9-1.fc11.src.rpm:1246862586 Index: kde-plasma-translatoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-11/kde-plasma-translatoid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-translatoid.spec 26 Feb 2009 06:11:22 -0000 1.3 +++ kde-plasma-translatoid.spec 6 Jul 2009 06:44:06 -0000 1.4 @@ -1,12 +1,12 @@ Name: kde-plasma-translatoid -Version: 0.6 -Release: 2%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: Translator Using Google Translator Group: User Interface/Desktops License: GPLv2 URL: http://www.kde-look.org/content/show.php/translatoid?content=97511 -Source0: http://www.kde-look.org/content/content-files/translatoidNoFlag%{version}.tar.gz +Source0: http://www.kde-look.org/content/content-files/translatoid.%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel >= 4.2.0 @@ -15,7 +15,7 @@ BuildRequires: gettext >= 0.17 Translator plasmoid using Google Translator. %prep -%setup -qn translatoidNoFlag +%setup -qn translatoid %build mkdir -p %{_target_platform} @@ -26,7 +26,7 @@ popd sed -i -e 's/-fno-exceptions -fno-check-new -fno-common//' \ -e 's/-fno-threadsafe-statics -fvisibility=hidden -fvisibility-inlines-hidden//' \ --e 's/-ansi//' %{_target_platform}/CMakeFiles/translatoid.dir/flags.make +-e 's/-ansi//' %{_target_platform}/CMakeFiles/plasma_applet_translatoid.dir/flags.make make %{?_smp_mflags} -C %{_target_platform} @@ -40,12 +40,250 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README licence.txt -%{_kde4_libdir}/kde4/translatoid.so +%{_kde4_libdir}/kde4/plasma_applet_translatoid.so %{_kde4_datadir}/kde4/services/plasma-applet-translatoid.desktop -%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo -%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/es_ES/LC_MESSAGES/translatoid.mo +#%{_datadir}/locale/fr_FR/LC_MESSAGES/translatoid.mo +%{_datadir}/icons/kbflags/ad.png +%{_datadir}/icons/kbflags/ae.png +%{_datadir}/icons/kbflags/ag.png +%{_datadir}/icons/kbflags/ai.png +%{_datadir}/icons/kbflags/al.png +%{_datadir}/icons/kbflags/am.png +%{_datadir}/icons/kbflags/an.png +%{_datadir}/icons/kbflags/ao.png +%{_datadir}/icons/kbflags/aq.png +%{_datadir}/icons/kbflags/ar.png +%{_datadir}/icons/kbflags/as.png +%{_datadir}/icons/kbflags/at.png +%{_datadir}/icons/kbflags/au.png +%{_datadir}/icons/kbflags/aw.png +%{_datadir}/icons/kbflags/az.png +%{_datadir}/icons/kbflags/ba.png +%{_datadir}/icons/kbflags/bb.png +%{_datadir}/icons/kbflags/bd.png +%{_datadir}/icons/kbflags/be.png +%{_datadir}/icons/kbflags/bf.png +%{_datadir}/icons/kbflags/bg.png +%{_datadir}/icons/kbflags/bh.png +%{_datadir}/icons/kbflags/bi.png +%{_datadir}/icons/kbflags/bj.png +%{_datadir}/icons/kbflags/bm.png +%{_datadir}/icons/kbflags/bn.png +%{_datadir}/icons/kbflags/bo.png +%{_datadir}/icons/kbflags/br.png +%{_datadir}/icons/kbflags/bs.png +%{_datadir}/icons/kbflags/bt.png +%{_datadir}/icons/kbflags/bv.png +%{_datadir}/icons/kbflags/bw.png +%{_datadir}/icons/kbflags/by.png +%{_datadir}/icons/kbflags/bz.png +%{_datadir}/icons/kbflags/ca.png +%{_datadir}/icons/kbflags/cc.png +%{_datadir}/icons/kbflags/cf.png +%{_datadir}/icons/kbflags/cg.png +%{_datadir}/icons/kbflags/ch.png +%{_datadir}/icons/kbflags/ci.png +%{_datadir}/icons/kbflags/ck.png +%{_datadir}/icons/kbflags/cl.png +%{_datadir}/icons/kbflags/cm.png +%{_datadir}/icons/kbflags/cn.png +%{_datadir}/icons/kbflags/co.png +%{_datadir}/icons/kbflags/cr.png +%{_datadir}/icons/kbflags/cu.png +%{_datadir}/icons/kbflags/cv.png +%{_datadir}/icons/kbflags/cy.png +%{_datadir}/icons/kbflags/cz.png +%{_datadir}/icons/kbflags/de.png +%{_datadir}/icons/kbflags/dj.png +%{_datadir}/icons/kbflags/dk.png +%{_datadir}/icons/kbflags/dm.png +%{_datadir}/icons/kbflags/do.png +%{_datadir}/icons/kbflags/dz.png +%{_datadir}/icons/kbflags/ec.png +%{_datadir}/icons/kbflags/ee.png +%{_datadir}/icons/kbflags/eg.png +%{_datadir}/icons/kbflags/eh.png +%{_datadir}/icons/kbflags/er.png +%{_datadir}/icons/kbflags/es.png +%{_datadir}/icons/kbflags/et.png +%{_datadir}/icons/kbflags/eu.png +%{_datadir}/icons/kbflags/fi.png +%{_datadir}/icons/kbflags/fj.png +%{_datadir}/icons/kbflags/fo.png +%{_datadir}/icons/kbflags/fr.png +%{_datadir}/icons/kbflags/ga.png +%{_datadir}/icons/kbflags/gb.png +%{_datadir}/icons/kbflags/gd.png +%{_datadir}/icons/kbflags/ge.png +%{_datadir}/icons/kbflags/gh.png +%{_datadir}/icons/kbflags/gi.png +%{_datadir}/icons/kbflags/gm.png +%{_datadir}/icons/kbflags/gn.png +%{_datadir}/icons/kbflags/gq.png +%{_datadir}/icons/kbflags/gr.png +%{_datadir}/icons/kbflags/gt.png +%{_datadir}/icons/kbflags/gu.png +%{_datadir}/icons/kbflags/gw.png +%{_datadir}/icons/kbflags/gy.png +%{_datadir}/icons/kbflags/hk.png +%{_datadir}/icons/kbflags/hn.png +%{_datadir}/icons/kbflags/hr.png +%{_datadir}/icons/kbflags/ht.png +%{_datadir}/icons/kbflags/hu.png +%{_datadir}/icons/kbflags/id.png +%{_datadir}/icons/kbflags/ie.png +%{_datadir}/icons/kbflags/il.png +%{_datadir}/icons/kbflags/in.png +%{_datadir}/icons/kbflags/iq.png +%{_datadir}/icons/kbflags/ir.png +%{_datadir}/icons/kbflags/is.png +%{_datadir}/icons/kbflags/it.png +%{_datadir}/icons/kbflags/jm.png +%{_datadir}/icons/kbflags/jo.png +%{_datadir}/icons/kbflags/jp.png +%{_datadir}/icons/kbflags/ke.png +%{_datadir}/icons/kbflags/kg.png +%{_datadir}/icons/kbflags/kh.png +%{_datadir}/icons/kbflags/ki.png +%{_datadir}/icons/kbflags/km.png +%{_datadir}/icons/kbflags/kn.png +%{_datadir}/icons/kbflags/kp.png +%{_datadir}/icons/kbflags/kr.png +%{_datadir}/icons/kbflags/kw.png +%{_datadir}/icons/kbflags/kz.png +%{_datadir}/icons/kbflags/la.png +%{_datadir}/icons/kbflags/lb.png +%{_datadir}/icons/kbflags/lc.png +%{_datadir}/icons/kbflags/li.png +%{_datadir}/icons/kbflags/lk.png +%{_datadir}/icons/kbflags/lr.png +%{_datadir}/icons/kbflags/ls.png +%{_datadir}/icons/kbflags/lt.png +%{_datadir}/icons/kbflags/lu.png +%{_datadir}/icons/kbflags/lv.png +%{_datadir}/icons/kbflags/ly.png +%{_datadir}/icons/kbflags/ma.png +%{_datadir}/icons/kbflags/mc.png +%{_datadir}/icons/kbflags/md.png +%{_datadir}/icons/kbflags/mg.png +%{_datadir}/icons/kbflags/mh.png +%{_datadir}/icons/kbflags/mk.png +%{_datadir}/icons/kbflags/ml.png +%{_datadir}/icons/kbflags/mm.png +%{_datadir}/icons/kbflags/mn.png +%{_datadir}/icons/kbflags/mo.png +%{_datadir}/icons/kbflags/mr.png +%{_datadir}/icons/kbflags/ms.png +%{_datadir}/icons/kbflags/mt.png +%{_datadir}/icons/kbflags/mu.png +%{_datadir}/icons/kbflags/mv.png +%{_datadir}/icons/kbflags/mw.png +%{_datadir}/icons/kbflags/mx.png +%{_datadir}/icons/kbflags/my.png +%{_datadir}/icons/kbflags/mz.png +%{_datadir}/icons/kbflags/na.png +%{_datadir}/icons/kbflags/ne.png +%{_datadir}/icons/kbflags/ng.png +%{_datadir}/icons/kbflags/ni.png +%{_datadir}/icons/kbflags/nl.png +%{_datadir}/icons/kbflags/no.png +%{_datadir}/icons/kbflags/np.png +%{_datadir}/icons/kbflags/nr.png +%{_datadir}/icons/kbflags/nz.png +%{_datadir}/icons/kbflags/om.png +%{_datadir}/icons/kbflags/pa.png +%{_datadir}/icons/kbflags/pe.png +%{_datadir}/icons/kbflags/pf.png +%{_datadir}/icons/kbflags/pg.png +%{_datadir}/icons/kbflags/ph.png +%{_datadir}/icons/kbflags/pk.png +%{_datadir}/icons/kbflags/pl.png +%{_datadir}/icons/kbflags/pr.png +%{_datadir}/icons/kbflags/ps.png +%{_datadir}/icons/kbflags/pt.png +%{_datadir}/icons/kbflags/pw.png +%{_datadir}/icons/kbflags/py.png +%{_datadir}/icons/kbflags/qa.png +%{_datadir}/icons/kbflags/re.png +%{_datadir}/icons/kbflags/ro.png +%{_datadir}/icons/kbflags/ru.png +%{_datadir}/icons/kbflags/rw.png +%{_datadir}/icons/kbflags/sa.png +%{_datadir}/icons/kbflags/sb.png +%{_datadir}/icons/kbflags/sc.png +%{_datadir}/icons/kbflags/se.png +%{_datadir}/icons/kbflags/sg.png +%{_datadir}/icons/kbflags/si.png +%{_datadir}/icons/kbflags/sk.png +%{_datadir}/icons/kbflags/sl.png +%{_datadir}/icons/kbflags/sm.png +%{_datadir}/icons/kbflags/sn.png +%{_datadir}/icons/kbflags/so.png +%{_datadir}/icons/kbflags/sr.png +%{_datadir}/icons/kbflags/st.png +%{_datadir}/icons/kbflags/sv.png +%{_datadir}/icons/kbflags/sy.png +%{_datadir}/icons/kbflags/sz.png +%{_datadir}/icons/kbflags/tc.png +%{_datadir}/icons/kbflags/td.png +%{_datadir}/icons/kbflags/tf.png +%{_datadir}/icons/kbflags/tg.png +%{_datadir}/icons/kbflags/th.png +%{_datadir}/icons/kbflags/tj.png +%{_datadir}/icons/kbflags/tl.png +%{_datadir}/icons/kbflags/tn.png +%{_datadir}/icons/kbflags/to.png +%{_datadir}/icons/kbflags/tr.png +%{_datadir}/icons/kbflags/tt.png +%{_datadir}/icons/kbflags/tv.png +%{_datadir}/icons/kbflags/tw.png +%{_datadir}/icons/kbflags/tz.png +%{_datadir}/icons/kbflags/ua.png +%{_datadir}/icons/kbflags/ug.png +%{_datadir}/icons/kbflags/um.png +%{_datadir}/icons/kbflags/us.png +%{_datadir}/icons/kbflags/uy.png +%{_datadir}/icons/kbflags/uz.png +%{_datadir}/icons/kbflags/va.png +%{_datadir}/icons/kbflags/vc.png +%{_datadir}/icons/kbflags/ve.png +%{_datadir}/icons/kbflags/vg.png +%{_datadir}/icons/kbflags/vi.png +%{_datadir}/icons/kbflags/vn.png +%{_datadir}/icons/kbflags/vu.png +%{_datadir}/icons/kbflags/ws.png +%{_datadir}/icons/kbflags/ye.png +%{_datadir}/icons/kbflags/za.png +%{_datadir}/icons/kbflags/zm.png +%{_datadir}/icons/kbflags/zw.png + + %changelog +* Wed Feb 25 2009 Eli Wapniarski 0.9-1 +-0.9 +- Add new flags list ! Use a plasma::treeview with a QAbstractModel +- copy from the clipboard! Now, you just have to select a source +- text from anywhere, and active the popup, by cliking on the popup, +- or by a plasma shortcut. +- Change QTextEdit source event. Now, press Enter to translate, +- and press Shift+Enter to add a new line. +-0.8 +- IMPORTANT RELEASE : +- change the algorithm of source translation. Now it use Post Method. +- It means that you can translate big text. And if you type 1 word, +-it get you the dictionnary result +- Thanks lexnewton. +-0.7 +- add New popup icon which can change his flags +- use KConfigGroup for save favorite language +- add FavoriteLanguage config dialog +- some update of the code +-0.6.1 +- Add new Icon +- change name : translatoid to plasma-applet-translatoid + * Wed Feb 25 2009 Eli Wapniarski 0.6-2 -Fix Build Requirement Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Feb 2009 07:26:01 -0000 1.3 +++ sources 6 Jul 2009 06:44:06 -0000 1.4 @@ -1 +1 @@ -36a1a989033819579e0313ee7e60a199 translatoidNoFlag0.6.tar.gz +c41c499c8f3604a957cd2448e1344067 translatoid.0.9.tar.gz From pbrobinson at fedoraproject.org Mon Jul 6 06:46:27 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 6 Jul 2009 06:46:27 +0000 (UTC) Subject: rpms/mojito/devel import.log, NONE, 1.1 mojito.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706064627.BE5E411C02C8@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2120/devel Modified Files: .cvsignore sources Added Files: import.log mojito.spec Log Message: - initial import --- NEW FILE import.log --- mojito-0_10_3-2_fc11:HEAD:mojito-0.10.3-2.fc11.src.rpm:1246862347 --- NEW FILE mojito.spec --- Name: mojito Version: 0.10.3 Release: 2%{?dist} Summary: A social network data aggregator Group: Applications/Internet License: LGPLv2.1 URL: http://moblin.org/projects/mojito Source0: http://moblin.org/sites/all/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: dbus-glib-devel BuildRequires: glib2-devel BuildRequires: GConf2-devel BuildRequires: NetworkManager-devel BuildRequires: pkgconfig BuildRequires: rest-devel BuildRequires: twitter-glib-devel BuildRequires: intltool BuildRequires: gtk-doc %description Mojito is a social data server which will fetch data from the "social web", such as your friend's blog posts and photos, upcoming events, recently played tracks, and pending eBay* auctions. It also provides a service to update your status on web services which support it, such as MySpace* and Twitter*. %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk-doc %description devel Files for development with %{name}. %prep %setup -q chmod 644 examples/*.py %build %configure --enable-gtk-doc --with-gnome --with-online=networkmanager --disable-static # Remove rpath as per https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives and static libs. rm -rf %{buildroot}/%{_libdir}/*.a rm -rf %{buildroot}/%{_libdir}/*.la rm -rf %{buildroot}/%{_libdir}/mojito/services/*.a rm -rf %{buildroot}/%{_libdir}/mojito/services/*.la %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS %{_libdir}/libmojito.so.0 %{_libdir}/libmojito.so.0.0.0 %{_libdir}/libmojito-client.so.1 %{_libdir}/libmojito-client.so.1.0.0 %dir %{_libdir}/mojito %dir %{_libdir}/mojito/services %{_libdir}/mojito/services/libtwitter.so %{_libdir}/mojito/services/libmojito-service-dummy.so %{_datadir}/dbus-1/services/mojito.service %{_datadir}/mojito %{_libexecdir}/mojito-core %files devel %defattr(-,root,root,-) %{_includedir}/mojito %{_libdir}/pkgconfig/mojito-client.pc %{_libdir}/pkgconfig/mojito-module.pc %{_libdir}/libmojito.so %{_libdir}/libmojito-client.so %changelog * Wed Jun 17 2009 Peter Robinson 0.10.3-2 - Add extra build deps * Wed Jun 17 2009 Peter Robinson 0.10.3-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:18:35 -0000 1.1 +++ .cvsignore 6 Jul 2009 06:46:27 -0000 1.2 @@ -0,0 +1 @@ +mojito-0.10.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:18:35 -0000 1.1 +++ sources 6 Jul 2009 06:46:27 -0000 1.2 @@ -0,0 +1 @@ +83bc2fbbd03282bfbab40bdeb63eaa87 mojito-0.10.3.tar.gz From adrian at fedoraproject.org Mon Jul 6 07:20:34 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Mon, 6 Jul 2009 07:20:34 +0000 (UTC) Subject: rpms/id3lib/F-11 id3lib-no_date_footer.hml, NONE, 1.1 .cvsignore, 1.4, 1.5 id3lib.spec, 1.19, 1.20 sources, 1.4, 1.5 Message-ID: <20090706072034.CC51D11C02C8@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/id3lib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6853 Modified Files: .cvsignore id3lib.spec sources Added Files: id3lib-no_date_footer.hml Log Message: * Mon Jun 29 2009 Adrian Reber - 3.8.3-22 - Fix "id3lib-devel multilib conflict" (bz #507700) --- NEW FILE id3lib-no_date_footer.hml ---
Generated for $projectname by doxygen $doxygenversion
Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/id3lib/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Oct 2007 12:42:19 -0000 1.4 +++ .cvsignore 6 Jul 2009 07:20:03 -0000 1.5 @@ -1,3 +1,2 @@ id3lib-3.8.3.tar.gz id3lib-3.8.3-libtool-autofoo.patch.bz2 -id3lib-3.8.3-doxygen-docs.tar.gz Index: id3lib.spec =================================================================== RCS file: /cvs/extras/rpms/id3lib/F-11/id3lib.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- id3lib.spec 25 Feb 2009 06:46:32 -0000 1.19 +++ id3lib.spec 6 Jul 2009 07:20:03 -0000 1.20 @@ -1,11 +1,12 @@ Summary: Library for manipulating ID3v1 and ID3v2 tags Name: id3lib Version: 3.8.3 -Release: 21%{?dist} +Release: 22%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://id3lib.sourceforge.net/ Source0: http://downloads.sourceforge.net/id3lib/%{name}-%{version}.tar.gz +Source1: id3lib-no_date_footer.hml Patch0: id3lib-dox.patch Patch1: id3lib-3.8.3-libtool-autofoo.patch.bz2 Patch2: id3lib-3.8.3-io_helpers-163101.patch @@ -47,6 +48,8 @@ sed -i -e 's|@DOX_DIR_HTML@|%{_docdir}/% doc/index.html.in iconv -f ISO-8859-1 -t UTF8 ChangeLog > tmp; mv tmp ChangeLog iconv -f ISO-8859-1 -t UTF8 THANKS > tmp; mv tmp THANKS +sed -i -e "s,HTML_FOOTER.*$,HTML_FOOTER = id3lib-no_date_footer.hml,g" doc/Doxyfile.in +cp %{SOURCE1} doc %build @@ -92,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 29 2009 Adrian Reber - 3.8.3-22 +- Fix "id3lib-devel multilib conflict" (bz #507700) + * Tue Feb 24 2009 Fedora Release Engineering - 3.8.3-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/id3lib/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Oct 2007 12:42:19 -0000 1.4 +++ sources 6 Jul 2009 07:20:03 -0000 1.5 @@ -1,3 +1,2 @@ 19f27ddd2dda4b2d26a559a4f0f402a7 id3lib-3.8.3.tar.gz ce106e4386e4fbc0d49aea9fbd14eb4b id3lib-3.8.3-libtool-autofoo.patch.bz2 -1735dc895b499f51abda41a02e3f1051 id3lib-3.8.3-doxygen-docs.tar.gz From caolanm at fedoraproject.org Mon Jul 6 08:02:55 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 6 Jul 2009 08:02:55 +0000 (UTC) Subject: rpms/hunspell-ko/devel .cvsignore, 1.4, 1.5 hunspell-ko.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090706080256.23F6911C02C8@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10540 Modified Files: .cvsignore hunspell-ko.spec sources Log Message: latest version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 Jun 2009 08:59:09 -0000 1.4 +++ .cvsignore 6 Jul 2009 08:02:24 -0000 1.5 @@ -1 +1 @@ -hunspell-dict-ko-0.3.0.tar.gz +hunspell-dict-ko-0.3.1.tar.gz Index: hunspell-ko.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/hunspell-ko.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ko.spec 22 Jun 2009 08:59:09 -0000 1.3 +++ hunspell-ko.spec 6 Jul 2009 08:02:24 -0000 1.4 @@ -1,6 +1,6 @@ Name: hunspell-ko Summary: Korean hunspell dictionaries -Version: 0.3.0 +Version: 0.3.1 Release: 1%{?dist} Source: http://spellcheck-ko.googlecode.com/files/hunspell-dict-ko-%{version}.tar.gz Group: Applications/Text @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Mon Jul 06 2009 Caolan McNamara - 0.3.1-1 +- latest version + * Mon Jun 22 2009 Caolan McNamara - 0.3.0-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 Jun 2009 08:59:09 -0000 1.4 +++ sources 6 Jul 2009 08:02:24 -0000 1.5 @@ -1 +1 @@ -478de3662b883eb93b425def6cfde4bd hunspell-dict-ko-0.3.0.tar.gz +3c76f806ca53baaad730bd77f671b2bf hunspell-dict-ko-0.3.1.tar.gz From pkgdb at fedoraproject.org Mon Jul 6 08:42:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 08:42:44 +0000 Subject: [pkgdb] sugar-update-control: dsd has requested commit Message-ID: <20090706084245.09E6710F897@bastion2.fedora.phx.redhat.com> dsd has requested the commit acl on sugar-update-control (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 08:42:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 08:42:49 +0000 Subject: [pkgdb] sugar-update-control: dsd has requested commit Message-ID: <20090706084249.5DAB810F8A3@bastion2.fedora.phx.redhat.com> dsd has requested the commit acl on sugar-update-control (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From tuju at fedoraproject.org Mon Jul 6 08:43:49 2009 From: tuju at fedoraproject.org (Juha Tuomala) Date: Mon, 6 Jul 2009 08:43:49 +0000 (UTC) Subject: rpms/xorriso/devel import.log, NONE, 1.1 xorriso.spec, NONE, 1.1 xorriso_servicemenu.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706084349.77A3A11C02C8@cvs1.fedora.phx.redhat.com> Author: tuju Update of /cvs/pkgs/rpms/xorriso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14210/devel Modified Files: .cvsignore sources Added Files: import.log xorriso.spec xorriso_servicemenu.desktop Log Message: Initial imports. --- NEW FILE import.log --- xorriso-0_3_8-6_pl00_fc10:HEAD:xorriso-0.3.8-6.pl00.fc10.src.rpm:1246869750 --- NEW FILE xorriso.spec --- %define __patchlevel pl00 Name: xorriso Version: 0.3.8 Release: 6.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving License: GPLv2 and GPL+ and LGPLv2+ URL: http://scdbackup.sourceforge.net/xorriso_eng.html Source0: http://scdbackup.sourceforge.net/%{name}-%{version}.%{__patchlevel}.tar.gz Source1: xorriso_servicemenu.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: coreutils util-linux-ng kde-filesystem %description xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. %prep %setup -q [ -s CONTRIBUTORS ] && exit 1 %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" rm -rf %{buildroot}/%{_libdir}/pkgconfig/xorriso.pc install -D -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/kde4/services/ServiceMenus/`basename %{SOURCE1}` %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING COPYRIGHT README doc %{_bindir}/osirrox %{_bindir}/xorrecord %{_bindir}/xorriso %{_bindir}/xorrisofs %{_mandir}/man1/xorriso.1.gz %{_datadir}/kde4/services/ServiceMenus/xorriso_servicemenu.desktop %changelog * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. * Sat Jun 12 2009 Juha Tuomala - 0.3.8-5.pl00 - Minor spec edits. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-4.pl00 - Fixed license string, minor spec cleanups. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-3.pl00 - Added desktop entry for KDE. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-2.pl00 - Fixed multiple (review #505184). * Wed Jun 10 2009 Juha Tuomala - 0.3.8-1.pl00 - Initial package. --- NEW FILE xorriso_servicemenu.desktop --- [Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image; Actions=xorrisoExtractHere; X-KDE-Priority=TopLevel X-KDE-StartupNotify=false [Desktop Action xorrisoExtractHere] Name=Xorriso: extract ISO-image here Name[fi]=Xorriso: Pura ISO tiedosto t??h??n Icon=media-optical Exec=/bin/nice -n 19 ionice -n7 -c3 xorriso -indev "%F" -osirrox on -cp_rx "*" "$(/usr/bin/dirname %F)" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:06:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 08:43:18 -0000 1.2 @@ -0,0 +1 @@ +xorriso-0.3.8.pl00.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:06:10 -0000 1.1 +++ sources 6 Jul 2009 08:43:18 -0000 1.2 @@ -0,0 +1 @@ +d965bcca767995d1a8735cc34d44ebf4 xorriso-0.3.8.pl00.tar.gz From eseyman at fedoraproject.org Mon Jul 6 08:47:27 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 08:47:27 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-TT.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706084727.867CD11C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14656/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-TT.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-TT-1_04-1_fc11:HEAD:perl-CGI-Application-Plugin-TT-1.04-1.fc11.src.rpm:1246869990 --- NEW FILE perl-CGI-Application-Plugin-TT.spec --- Name: perl-CGI-Application-Plugin-TT Version: 1.04 Release: 1%{?dist} Summary: Add Template Toolkit support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-TT/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-TT-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Module::Build) BuildRequires: perl(Template) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::TT adds support for the popular Template Toolkit engine to your CGI::Application modules by providing several helper methods that allow you to process template files from within your runmodes. %prep %setup -q -n CGI-Application-Plugin-TT-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jun 11 2007 Emmanuel Seyman 1.04-1 - Specfile autogenerated by cpanspec 1.70. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:03:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 08:46:57 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-TT-1.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:03:10 -0000 1.1 +++ sources 6 Jul 2009 08:46:57 -0000 1.2 @@ -0,0 +1 @@ +d1b22bd5873911087ceb5d2c48311326 CGI-Application-Plugin-TT-1.04.tar.gz From eseyman at fedoraproject.org Mon Jul 6 08:50:32 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 08:50:32 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-TT.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706085032.2D1FD11C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15078/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-TT.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-TT-1_04-1_fc11:F-11:perl-CGI-Application-Plugin-TT-1.04-1.fc11.src.rpm:1246870090 --- NEW FILE perl-CGI-Application-Plugin-TT.spec --- Name: perl-CGI-Application-Plugin-TT Version: 1.04 Release: 1%{?dist} Summary: Add Template Toolkit support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-TT/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-TT-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Module::Build) BuildRequires: perl(Template) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::TT adds support for the popular Template Toolkit engine to your CGI::Application modules by providing several helper methods that allow you to process template files from within your runmodes. %prep %setup -q -n CGI-Application-Plugin-TT-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jun 11 2007 Emmanuel Seyman 1.04-1 - Specfile autogenerated by cpanspec 1.70. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:03:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 08:50:01 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-TT-1.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:03:10 -0000 1.1 +++ sources 6 Jul 2009 08:50:01 -0000 1.2 @@ -0,0 +1 @@ +d1b22bd5873911087ceb5d2c48311326 CGI-Application-Plugin-TT-1.04.tar.gz From beuc at fedoraproject.org Mon Jul 6 08:52:36 2009 From: beuc at fedoraproject.org (Sylvain Beucler) Date: Mon, 6 Jul 2009 08:52:36 +0000 (UTC) Subject: rpms/freedink-data/devel .cvsignore, 1.3, 1.4 freedink-data.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706085236.14F2211C02C8@cvs1.fedora.phx.redhat.com> Author: beuc Update of /cvs/pkgs/rpms/freedink-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15422 Modified Files: .cvsignore freedink-data.spec sources Log Message: Update to 1.08.20090706 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 Jul 2009 18:28:41 -0000 1.3 +++ .cvsignore 6 Jul 2009 08:52:35 -0000 1.4 @@ -1 +1 @@ -freedink-data-1.08.20090705.tar.gz +freedink-data-1.08.20090706.tar.gz Index: freedink-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/freedink-data.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- freedink-data.spec 5 Jul 2009 18:28:41 -0000 1.3 +++ freedink-data.spec 6 Jul 2009 08:52:35 -0000 1.4 @@ -1,5 +1,5 @@ Name: freedink-data -Version: 1.08.20090705 +Version: 1.08.20090706 Release: 1%{?dist} Summary: Adventure and role-playing game (game data) @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Sylvain Beucler - 1.08.20090706-1 +- New upstream release (remove savegame) + * Sun Jul 05 2009 Sylvain Beucler - 1.08.20090705-1 - New upstream release - Removed patch to preserve timestamps (applied upstream) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 5 Jul 2009 18:28:41 -0000 1.3 +++ sources 6 Jul 2009 08:52:35 -0000 1.4 @@ -1 +1 @@ -be6355b54a9c4aa29fbca0a6f40bab05 freedink-data-1.08.20090705.tar.gz +741b9777a589e1918bdfb927a96c2546 freedink-data-1.08.20090706.tar.gz From jwrdegoede at fedoraproject.org Mon Jul 6 08:54:06 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Mon, 6 Jul 2009 08:54:06 +0000 (UTC) Subject: rpms/mkinitrd/devel .cvsignore, 1.228, 1.229 mkinitrd.spec, 1.325, 1.326 sources, 1.270, 1.271 Message-ID: <20090706085406.A31E411C02C8@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/mkinitrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15775 Modified Files: .cvsignore mkinitrd.spec sources Log Message: * Mon Jul 6 2009 Hans de Goede - 6.0.91-1 - Allow setting VG_LIST in /etc/sysconfig/mkinitrd (#509709) - Fix mkrootdev failing with norelatime option (#509687) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mkinitrd/devel/.cvsignore,v retrieving revision 1.228 retrieving revision 1.229 diff -u -p -r1.228 -r1.229 --- .cvsignore 30 Jun 2009 19:01:01 -0000 1.228 +++ .cvsignore 6 Jul 2009 08:54:06 -0000 1.229 @@ -1 +1 @@ -mkinitrd-6.0.90.tar.bz2 +mkinitrd-6.0.91.tar.bz2 Index: mkinitrd.spec =================================================================== RCS file: /cvs/extras/rpms/mkinitrd/devel/mkinitrd.spec,v retrieving revision 1.325 retrieving revision 1.326 diff -u -p -r1.325 -r1.326 --- mkinitrd.spec 30 Jun 2009 19:01:01 -0000 1.325 +++ mkinitrd.spec 6 Jul 2009 08:54:06 -0000 1.326 @@ -2,7 +2,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd -Version: 6.0.90 +Version: 6.0.91 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base @@ -119,6 +119,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Mon Jul 6 2009 Hans de Goede - 6.0.91-1 +- Allow setting VG_LIST in /etc/sysconfig/mkinitrd (#509709) +- Fix mkrootdev failing with norelatime option (#509687) + * Tue Jun 30 2009 Hans de Goede - 6.0.90-1 - drop e2fsprogs requires (#508407) - process all PVs in a required VG (#506189) Index: sources =================================================================== RCS file: /cvs/extras/rpms/mkinitrd/devel/sources,v retrieving revision 1.270 retrieving revision 1.271 diff -u -p -r1.270 -r1.271 --- sources 30 Jun 2009 19:01:01 -0000 1.270 +++ sources 6 Jul 2009 08:54:06 -0000 1.271 @@ -1 +1 @@ -ef61531890bf03644541c8d4f3654250 mkinitrd-6.0.90.tar.bz2 +f550e51c7122cc3679a0fdcc888dfc9c mkinitrd-6.0.91.tar.bz2 From tuju at fedoraproject.org Mon Jul 6 08:57:51 2009 From: tuju at fedoraproject.org (Juha Tuomala) Date: Mon, 6 Jul 2009 08:57:51 +0000 (UTC) Subject: rpms/xorriso/F-10 import.log, NONE, 1.1 xorriso.spec, NONE, 1.1 xorriso_servicemenu.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706085751.82ABB11C02C8@cvs1.fedora.phx.redhat.com> Author: tuju Update of /cvs/pkgs/rpms/xorriso/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16605/F-10 Modified Files: .cvsignore sources Added Files: import.log xorriso.spec xorriso_servicemenu.desktop Log Message: Initial import. --- NEW FILE import.log --- xorriso-0_3_8-6_pl00_fc10:F-10:xorriso-0.3.8-6.pl00.fc10.src.rpm:1246870564 --- NEW FILE xorriso.spec --- %define __patchlevel pl00 Name: xorriso Version: 0.3.8 Release: 6.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving License: GPLv2 and GPL+ and LGPLv2+ URL: http://scdbackup.sourceforge.net/xorriso_eng.html Source0: http://scdbackup.sourceforge.net/%{name}-%{version}.%{__patchlevel}.tar.gz Source1: xorriso_servicemenu.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: coreutils util-linux-ng kde-filesystem %description xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. %prep %setup -q [ -s CONTRIBUTORS ] && exit 1 %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" rm -rf %{buildroot}/%{_libdir}/pkgconfig/xorriso.pc install -D -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/kde4/services/ServiceMenus/`basename %{SOURCE1}` %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING COPYRIGHT README doc %{_bindir}/osirrox %{_bindir}/xorrecord %{_bindir}/xorriso %{_bindir}/xorrisofs %{_mandir}/man1/xorriso.1.gz %{_datadir}/kde4/services/ServiceMenus/xorriso_servicemenu.desktop %changelog * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. * Sat Jun 12 2009 Juha Tuomala - 0.3.8-5.pl00 - Minor spec edits. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-4.pl00 - Fixed license string, minor spec cleanups. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-3.pl00 - Added desktop entry for KDE. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-2.pl00 - Fixed multiple (review #505184). * Wed Jun 10 2009 Juha Tuomala - 0.3.8-1.pl00 - Initial package. --- NEW FILE xorriso_servicemenu.desktop --- [Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image; Actions=xorrisoExtractHere; X-KDE-Priority=TopLevel X-KDE-StartupNotify=false [Desktop Action xorrisoExtractHere] Name=Xorriso: extract ISO-image here Name[fi]=Xorriso: Pura ISO tiedosto t??h??n Icon=media-optical Exec=/bin/nice -n 19 ionice -n7 -c3 xorriso -indev "%F" -osirrox on -cp_rx "*" "$(/usr/bin/dirname %F)" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:06:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 08:57:50 -0000 1.2 @@ -0,0 +1 @@ +xorriso-0.3.8.pl00.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:06:10 -0000 1.1 +++ sources 6 Jul 2009 08:57:51 -0000 1.2 @@ -0,0 +1 @@ +d965bcca767995d1a8735cc34d44ebf4 xorriso-0.3.8.pl00.tar.gz From tuju at fedoraproject.org Mon Jul 6 08:59:38 2009 From: tuju at fedoraproject.org (Juha Tuomala) Date: Mon, 6 Jul 2009 08:59:38 +0000 (UTC) Subject: rpms/xorriso/F-11 import.log, NONE, 1.1 xorriso.spec, NONE, 1.1 xorriso_servicemenu.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706085938.E671011C02C8@cvs1.fedora.phx.redhat.com> Author: tuju Update of /cvs/pkgs/rpms/xorriso/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17626/F-11 Modified Files: .cvsignore sources Added Files: import.log xorriso.spec xorriso_servicemenu.desktop Log Message: Initial import. --- NEW FILE import.log --- xorriso-0_3_8-6_pl00_fc10:F-11:xorriso-0.3.8-6.pl00.fc10.src.rpm:1246870724 --- NEW FILE xorriso.spec --- %define __patchlevel pl00 Name: xorriso Version: 0.3.8 Release: 6.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving License: GPLv2 and GPL+ and LGPLv2+ URL: http://scdbackup.sourceforge.net/xorriso_eng.html Source0: http://scdbackup.sourceforge.net/%{name}-%{version}.%{__patchlevel}.tar.gz Source1: xorriso_servicemenu.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: coreutils util-linux-ng kde-filesystem %description xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. %prep %setup -q [ -s CONTRIBUTORS ] && exit 1 %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" rm -rf %{buildroot}/%{_libdir}/pkgconfig/xorriso.pc install -D -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/kde4/services/ServiceMenus/`basename %{SOURCE1}` %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING COPYRIGHT README doc %{_bindir}/osirrox %{_bindir}/xorrecord %{_bindir}/xorriso %{_bindir}/xorrisofs %{_mandir}/man1/xorriso.1.gz %{_datadir}/kde4/services/ServiceMenus/xorriso_servicemenu.desktop %changelog * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. * Sat Jun 12 2009 Juha Tuomala - 0.3.8-5.pl00 - Minor spec edits. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-4.pl00 - Fixed license string, minor spec cleanups. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-3.pl00 - Added desktop entry for KDE. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-2.pl00 - Fixed multiple (review #505184). * Wed Jun 10 2009 Juha Tuomala - 0.3.8-1.pl00 - Initial package. --- NEW FILE xorriso_servicemenu.desktop --- [Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image; Actions=xorrisoExtractHere; X-KDE-Priority=TopLevel X-KDE-StartupNotify=false [Desktop Action xorrisoExtractHere] Name=Xorriso: extract ISO-image here Name[fi]=Xorriso: Pura ISO tiedosto t??h??n Icon=media-optical Exec=/bin/nice -n 19 ionice -n7 -c3 xorriso -indev "%F" -osirrox on -cp_rx "*" "$(/usr/bin/dirname %F)" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:06:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 08:59:08 -0000 1.2 @@ -0,0 +1 @@ +xorriso-0.3.8.pl00.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:06:10 -0000 1.1 +++ sources 6 Jul 2009 08:59:08 -0000 1.2 @@ -0,0 +1 @@ +d965bcca767995d1a8735cc34d44ebf4 xorriso-0.3.8.pl00.tar.gz From hguemar at fedoraproject.org Mon Jul 6 09:02:18 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 6 Jul 2009 09:02:18 +0000 (UTC) Subject: rpms/listen/devel listen.spec,1.39,1.40 Message-ID: <20090706090218.1782111C02C8@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18411 Modified Files: listen.spec Log Message: Added python-inotify as Requires Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/devel/listen.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- listen.spec 1 Jul 2009 17:16:35 -0000 1.39 +++ listen.spec 6 Jul 2009 09:02:17 -0000 1.40 @@ -1,6 +1,6 @@ Name: listen Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ @@ -51,6 +51,7 @@ Requires: gnome-python2-gtkmozembed Requires: gecko-libs >= 1.9 %endif Requires: python-sexy +Requires: python-inotify # MusicBrainz support Requires: python-musicbrainz2 Requires: /usr/bin/puid @@ -125,6 +126,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Ha??kel Gu??mar 0.6.2-2 +- added python-inotify as Requires + * Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 - updated to 0.6.2 - fixed website url From tuju at fedoraproject.org Mon Jul 6 09:04:54 2009 From: tuju at fedoraproject.org (Juha Tuomala) Date: Mon, 6 Jul 2009 09:04:54 +0000 (UTC) Subject: rpms/xorriso/EL-4 import.log, NONE, 1.1 xorriso.spec, NONE, 1.1 xorriso_servicemenu.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706090454.309EA11C02C8@cvs1.fedora.phx.redhat.com> Author: tuju Update of /cvs/pkgs/rpms/xorriso/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18218/EL-4 Modified Files: .cvsignore sources Added Files: import.log xorriso.spec xorriso_servicemenu.desktop Log Message: Initial import. --- NEW FILE import.log --- xorriso-0_3_8-6_pl00_fc10:EL-4:xorriso-0.3.8-6.pl00.fc10.src.rpm:1246870855 --- NEW FILE xorriso.spec --- %define __patchlevel pl00 Name: xorriso Version: 0.3.8 Release: 6.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving License: GPLv2 and GPL+ and LGPLv2+ URL: http://scdbackup.sourceforge.net/xorriso_eng.html Source0: http://scdbackup.sourceforge.net/%{name}-%{version}.%{__patchlevel}.tar.gz Source1: xorriso_servicemenu.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: coreutils util-linux-ng kde-filesystem %description xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. %prep %setup -q [ -s CONTRIBUTORS ] && exit 1 %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" rm -rf %{buildroot}/%{_libdir}/pkgconfig/xorriso.pc install -D -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/kde4/services/ServiceMenus/`basename %{SOURCE1}` %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING COPYRIGHT README doc %{_bindir}/osirrox %{_bindir}/xorrecord %{_bindir}/xorriso %{_bindir}/xorrisofs %{_mandir}/man1/xorriso.1.gz %{_datadir}/kde4/services/ServiceMenus/xorriso_servicemenu.desktop %changelog * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. * Sat Jun 12 2009 Juha Tuomala - 0.3.8-5.pl00 - Minor spec edits. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-4.pl00 - Fixed license string, minor spec cleanups. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-3.pl00 - Added desktop entry for KDE. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-2.pl00 - Fixed multiple (review #505184). * Wed Jun 10 2009 Juha Tuomala - 0.3.8-1.pl00 - Initial package. --- NEW FILE xorriso_servicemenu.desktop --- [Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image; Actions=xorrisoExtractHere; X-KDE-Priority=TopLevel X-KDE-StartupNotify=false [Desktop Action xorrisoExtractHere] Name=Xorriso: extract ISO-image here Name[fi]=Xorriso: Pura ISO tiedosto t??h??n Icon=media-optical Exec=/bin/nice -n 19 ionice -n7 -c3 xorriso -indev "%F" -osirrox on -cp_rx "*" "$(/usr/bin/dirname %F)" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:06:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:04:23 -0000 1.2 @@ -0,0 +1 @@ +xorriso-0.3.8.pl00.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:06:10 -0000 1.1 +++ sources 6 Jul 2009 09:04:23 -0000 1.2 @@ -0,0 +1 @@ +d965bcca767995d1a8735cc34d44ebf4 xorriso-0.3.8.pl00.tar.gz From eseyman at fedoraproject.org Mon Jul 6 09:07:09 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:07:09 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-TT.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706090709.80EC011C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19475/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-TT.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-TT-1_04-1_fc11:F-10:perl-CGI-Application-Plugin-TT-1.04-1.fc11.src.rpm:1246871125 --- NEW FILE perl-CGI-Application-Plugin-TT.spec --- Name: perl-CGI-Application-Plugin-TT Version: 1.04 Release: 1%{?dist} Summary: Add Template Toolkit support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-TT/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-TT-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Module::Build) BuildRequires: perl(Template) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::TT adds support for the popular Template Toolkit engine to your CGI::Application modules by providing several helper methods that allow you to process template files from within your runmodes. %prep %setup -q -n CGI-Application-Plugin-TT-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jun 11 2007 Emmanuel Seyman 1.04-1 - Specfile autogenerated by cpanspec 1.70. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:03:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:07:09 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-TT-1.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:03:10 -0000 1.1 +++ sources 6 Jul 2009 09:07:09 -0000 1.2 @@ -0,0 +1 @@ +d1b22bd5873911087ceb5d2c48311326 CGI-Application-Plugin-TT-1.04.tar.gz From hguemar at fedoraproject.org Mon Jul 6 09:12:38 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 6 Jul 2009 09:12:38 +0000 (UTC) Subject: rpms/listen/F-11 listen.spec,1.39,1.40 Message-ID: <20090706091238.E003611C02C8@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20376 Modified Files: listen.spec Log Message: Added python-inotify as Requires Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-11/listen.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- listen.spec 1 Jul 2009 17:27:07 -0000 1.39 +++ listen.spec 6 Jul 2009 09:12:38 -0000 1.40 @@ -1,6 +1,6 @@ Name: listen Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ @@ -51,6 +51,7 @@ Requires: gnome-python2-gtkmozembed Requires: gecko-libs >= 1.9 %endif Requires: python-sexy +Requires: python-inotify # MusicBrainz support Requires: python-musicbrainz2 Requires: /usr/bin/puid @@ -125,6 +126,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Ha??kel Gu??mar 0.6.2-2 +- added python-inotify as Requires + * Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 - updated to 0.6.2 - fixed website url From hguemar at fedoraproject.org Mon Jul 6 09:13:57 2009 From: hguemar at fedoraproject.org (=?utf-8?b?SGHDr2tlbCBHdcOpbWFy?=) Date: Mon, 6 Jul 2009 09:13:57 +0000 (UTC) Subject: rpms/listen/F-10 listen.spec,1.37,1.38 Message-ID: <20090706091357.3424511C02C8@cvs1.fedora.phx.redhat.com> Author: hguemar Update of /cvs/pkgs/rpms/listen/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20533 Modified Files: listen.spec Log Message: Added python-inotify as Requires Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/F-10/listen.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- listen.spec 1 Jul 2009 17:38:23 -0000 1.37 +++ listen.spec 6 Jul 2009 09:13:26 -0000 1.38 @@ -1,6 +1,6 @@ Name: listen Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ @@ -51,6 +51,7 @@ Requires: gnome-python2-gtkmozembed Requires: gecko-libs >= 1.9 %endif Requires: python-sexy +Requires: python-inotify # MusicBrainz support Requires: python-musicbrainz2 Requires: /usr/bin/puid @@ -125,6 +126,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Ha??kel Gu??mar 0.6.2-2 +- added python-inotify as Requires + * Wed Jul 01 2009 Ha??kel Gu??mar 0.6.2-1 - updated to 0.6.2 - fixed website url From eseyman at fedoraproject.org Mon Jul 6 09:15:08 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:15:08 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-FillInForm.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706091508.1A19911C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20945/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-FillInForm.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-FillInForm-1_14-1_fc11:HEAD:perl-CGI-Application-Plugin-FillInForm-1.14-1.fc11.src.rpm:1246871684 --- NEW FILE perl-CGI-Application-Plugin-FillInForm.spec --- Name: perl-CGI-Application-Plugin-FillInForm Version: 1.14 Release: 1%{?dist} Summary: Integrate CGI::Application with HTML::FillInForm License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-FillInForm/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-FillInForm-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(HTML::FillInForm) >= 1 BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin for CGI::Application provides a mix-in method to make using HTML::FillInForm more convenient. %prep %setup -q -n CGI-Application-Plugin-FillInForm-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CAP-FillInForm.html Changes changes.txt README readme.txt %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.14-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:08:27 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:15:07 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-FillInForm-1.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:08:27 -0000 1.1 +++ sources 6 Jul 2009 09:15:07 -0000 1.2 @@ -0,0 +1 @@ +9f469b797e880a299b7be2fb6b746414 CGI-Application-Plugin-FillInForm-1.14.tar.gz From tuju at fedoraproject.org Mon Jul 6 09:16:02 2009 From: tuju at fedoraproject.org (Juha Tuomala) Date: Mon, 6 Jul 2009 09:16:02 +0000 (UTC) Subject: rpms/xorriso/EL-5 import.log, NONE, 1.1 xorriso.spec, NONE, 1.1 xorriso_servicemenu.desktop, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706091602.C0B5511C02C8@cvs1.fedora.phx.redhat.com> Author: tuju Update of /cvs/pkgs/rpms/xorriso/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21080/EL-5 Modified Files: .cvsignore sources Added Files: import.log xorriso.spec xorriso_servicemenu.desktop Log Message: Initial import. --- NEW FILE import.log --- xorriso-0_3_8-6_pl00_fc10:EL-5:xorriso-0.3.8-6.pl00.fc10.src.rpm:1246871146 --- NEW FILE xorriso.spec --- %define __patchlevel pl00 Name: xorriso Version: 0.3.8 Release: 6.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving License: GPLv2 and GPL+ and LGPLv2+ URL: http://scdbackup.sourceforge.net/xorriso_eng.html Source0: http://scdbackup.sourceforge.net/%{name}-%{version}.%{__patchlevel}.tar.gz Source1: xorriso_servicemenu.desktop BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: coreutils util-linux-ng kde-filesystem %description xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. %prep %setup -q [ -s CONTRIBUTORS ] && exit 1 %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" rm -rf %{buildroot}/%{_libdir}/pkgconfig/xorriso.pc install -D -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/kde4/services/ServiceMenus/`basename %{SOURCE1}` %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING COPYRIGHT README doc %{_bindir}/osirrox %{_bindir}/xorrecord %{_bindir}/xorriso %{_bindir}/xorrisofs %{_mandir}/man1/xorriso.1.gz %{_datadir}/kde4/services/ServiceMenus/xorriso_servicemenu.desktop %changelog * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. * Sat Jun 12 2009 Juha Tuomala - 0.3.8-5.pl00 - Minor spec edits. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-4.pl00 - Fixed license string, minor spec cleanups. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-3.pl00 - Added desktop entry for KDE. * Fri Jun 12 2009 Juha Tuomala - 0.3.8-2.pl00 - Fixed multiple (review #505184). * Wed Jun 10 2009 Juha Tuomala - 0.3.8-1.pl00 - Initial package. --- NEW FILE xorriso_servicemenu.desktop --- [Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image; Actions=xorrisoExtractHere; X-KDE-Priority=TopLevel X-KDE-StartupNotify=false [Desktop Action xorrisoExtractHere] Name=Xorriso: extract ISO-image here Name[fi]=Xorriso: Pura ISO tiedosto t??h??n Icon=media-optical Exec=/bin/nice -n 19 ionice -n7 -c3 xorriso -indev "%F" -osirrox on -cp_rx "*" "$(/usr/bin/dirname %F)" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:06:10 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:15:32 -0000 1.2 @@ -0,0 +1 @@ +xorriso-0.3.8.pl00.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:06:10 -0000 1.1 +++ sources 6 Jul 2009 09:15:32 -0000 1.2 @@ -0,0 +1 @@ +d965bcca767995d1a8735cc34d44ebf4 xorriso-0.3.8.pl00.tar.gz From eseyman at fedoraproject.org Mon Jul 6 09:16:44 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:16:44 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-FillInForm.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706091644.B155611C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21336/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-FillInForm.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-FillInForm-1_14-1_fc11:F-11:perl-CGI-Application-Plugin-FillInForm-1.14-1.fc11.src.rpm:1246871753 --- NEW FILE perl-CGI-Application-Plugin-FillInForm.spec --- Name: perl-CGI-Application-Plugin-FillInForm Version: 1.14 Release: 1%{?dist} Summary: Integrate CGI::Application with HTML::FillInForm License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-FillInForm/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-FillInForm-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(HTML::FillInForm) >= 1 BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin for CGI::Application provides a mix-in method to make using HTML::FillInForm more convenient. %prep %setup -q -n CGI-Application-Plugin-FillInForm-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CAP-FillInForm.html Changes changes.txt README readme.txt %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.14-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:08:27 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:16:14 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-FillInForm-1.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:08:27 -0000 1.1 +++ sources 6 Jul 2009 09:16:14 -0000 1.2 @@ -0,0 +1 @@ +9f469b797e880a299b7be2fb6b746414 CGI-Application-Plugin-FillInForm-1.14.tar.gz From than at fedoraproject.org Mon Jul 6 09:17:00 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 6 Jul 2009 09:17:00 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace-4.2.95-plasma-crash-kde#197717.patch, NONE, 1.1 kdebase-workspace.spec, 1.247, 1.248 Message-ID: <20090706091700.AEB5D11C02C8@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21375 Modified Files: kdebase-workspace.spec Added Files: kdebase-workspace-4.2.95-plasma-crash-kde#197717.patch Log Message: plasma-desktop crashes when closing/opening windows (upstream patch) kdebase-workspace-4.2.95-plasma-crash-kde#197717.patch: --- NEW FILE kdebase-workspace-4.2.95-plasma-crash-kde#197717.patch --- diff -up kdebase-workspace-4.2.95/libs/taskmanager/abstractgroupingstrategy.cpp.orig kdebase-workspace-4.2.95/libs/taskmanager/abstractgroupingstrategy.cpp --- kdebase-workspace-4.2.95/libs/taskmanager/abstractgroupingstrategy.cpp.orig 2009-07-04 23:41:28.000000000 +0200 +++ kdebase-workspace-4.2.95/libs/taskmanager/abstractgroupingstrategy.cpp 2009-07-04 23:42:39.000000000 +0200 @@ -164,6 +164,10 @@ void AbstractGroupingStrategy::closeGrou foreach (AbstractGroupableItem *item, group->members()) { parentGroup->add(item); //move item to the location where its group was + if (!d->groupManager) { + // this means that the above add() caused a change in grouping strategy + break; + } d->groupManager->manualSortingRequest(item, index); //move items to position of group } Index: workspace/libs/taskmanager/abstractgroupingstrategy.cpp =================================================================== --- workspace/libs/taskmanager/abstractgroupingstrategy.cpp (Revision 990719) +++ workspace/libs/taskmanager/abstractgroupingstrategy.cpp (Revision 990720) @@ -82,6 +82,9 @@ } parentGroup->remove(group); + } + + foreach (TaskGroup *group, d->createdGroups) { emit groupRemoved(group); } Index: workspace/libs/taskmanager/abstractgroupableitem.cpp =================================================================== --- workspace/libs/taskmanager/abstractgroupableitem.cpp (Revision 990719) +++ workspace/libs/taskmanager/abstractgroupableitem.cpp (Revision 990720) @@ -23,13 +23,13 @@ // Ownm_preferredInsertIndex #include "abstractgroupableitem.h" -#include "taskgroup.h" -#include "taskmanager.h" +#include -// KDE #include +#include "taskgroup.h" +#include "taskmanager.h" namespace TaskManager @@ -40,11 +40,11 @@ { public: Private() - :m_parentGroup(0) + : m_parentGroup(0) { } - GroupPtr m_parentGroup; + QPointer m_parentGroup; }; Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.247 retrieving revision 1.248 diff -u -p -r1.247 -r1.248 --- kdebase-workspace.spec 3 Jul 2009 10:12:31 -0000 1.247 +++ kdebase-workspace.spec 6 Jul 2009 09:16:30 -0000 1.248 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.95 -Release: 6%{?dist} +Release: 7%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -35,6 +35,9 @@ Patch16: kdebase-workspace-4.2.95-libxkl # fix the internal version number in CMakeLists.txt so the CMake files get # installed to the expected location, otherwise our file list breaks Patch100: kdebase-workspace-4.2.95-fix-version.patch +# plasma-desktop crashes when closing/opening windows +Patch101: kdebase-workspace-4.2.95-plasma-crash-kde#197717.patch + # trunk Obsoletes: PolicyKit-kde < %{version}-100 @@ -232,7 +235,7 @@ Requires: PyKDE4 >= %{version} # upstream patches %patch100 -p0 -b .fix-version - +%patch101 -p1 -b .plasma-crash %build @@ -516,6 +519,9 @@ fi %changelog +* Mon Jul 06 2009 Than Ngo - 4.2.95-7 +- plasma-desktop crashes when closing/opening windows (upstream patch) + * Fri Jul 03 2009 Kevin Kofler - 4.2.95-6 - add kde-plasma-networkmanagement to the default panel if installed From eseyman at fedoraproject.org Mon Jul 6 09:20:44 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:20:44 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-FillInForm.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706092044.4321E11C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22267/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-FillInForm.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-FillInForm-1_14-1_fc11:F-10:perl-CGI-Application-Plugin-FillInForm-1.14-1.fc11.src.rpm:1246871992 --- NEW FILE perl-CGI-Application-Plugin-FillInForm.spec --- Name: perl-CGI-Application-Plugin-FillInForm Version: 1.14 Release: 1%{?dist} Summary: Integrate CGI::Application with HTML::FillInForm License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-FillInForm/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-FillInForm-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(HTML::FillInForm) >= 1 BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin for CGI::Application provides a mix-in method to make using HTML::FillInForm more convenient. %prep %setup -q -n CGI-Application-Plugin-FillInForm-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CAP-FillInForm.html Changes changes.txt README readme.txt %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.14-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:08:27 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:20:13 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-FillInForm-1.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:08:27 -0000 1.1 +++ sources 6 Jul 2009 09:20:14 -0000 1.2 @@ -0,0 +1 @@ +9f469b797e880a299b7be2fb6b746414 CGI-Application-Plugin-FillInForm-1.14.tar.gz From pbrobinson at fedoraproject.org Mon Jul 6 09:23:58 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 6 Jul 2009 09:23:58 +0000 (UTC) Subject: rpms/mojito/devel .cvsignore, 1.2, 1.3 mojito.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090706092358.BB58D11C02C8@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22987 Modified Files: .cvsignore mojito.spec sources Log Message: - Update to new 0.17 release, add language support and more backends Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Jul 2009 06:46:27 -0000 1.2 +++ .cvsignore 6 Jul 2009 09:23:28 -0000 1.3 @@ -1 +1 @@ -mojito-0.10.3.tar.gz +mojito-0.17.tar.bz2 Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mojito.spec 6 Jul 2009 06:46:27 -0000 1.1 +++ mojito.spec 6 Jul 2009 09:23:28 -0000 1.2 @@ -1,12 +1,12 @@ Name: mojito -Version: 0.10.3 -Release: 2%{?dist} +Version: 0.17 +Release: 1%{?dist} Summary: A social network data aggregator Group: Applications/Internet License: LGPLv2.1 URL: http://moblin.org/projects/mojito -Source0: http://moblin.org/sites/all/files/%{name}-%{version}.tar.gz +Source0: http://moblin.org/sites/all/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: dbus-glib-devel @@ -19,6 +19,11 @@ BuildRequires: twitter-glib-devel BuildRequires: intltool BuildRequires: gtk-doc +# Require these because the git tarball doesn't have the configure built +BuildRequires: libtool +BuildRequires: automake +BuildRequires: autoconf + %description Mojito is a social data server which will fetch data from the "social web", such as your friend's blog posts and photos, upcoming events, recently played @@ -40,7 +45,9 @@ Files for development with %{name}. chmod 644 examples/*.py %build -%configure --enable-gtk-doc --with-gnome --with-online=networkmanager --disable-static +./autogen.sh +%configure --enable-gtk-doc --with-gnome --with-online=networkmanager --disable-static --enable-lastfm-key --enable-myspace-key --enable-flickr-key + # Remove rpath as per https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -57,6 +64,8 @@ rm -rf %{buildroot}/%{_libdir}/*.la rm -rf %{buildroot}/%{_libdir}/mojito/services/*.a rm -rf %{buildroot}/%{_libdir}/mojito/services/*.la +%find_lang %{name} + %clean rm -rf %{buildroot} @@ -64,30 +73,37 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig -%files +%files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS %{_libdir}/libmojito.so.0 %{_libdir}/libmojito.so.0.0.0 +%{_libdir}/libmojito-keyfob.so.0 +%{_libdir}/libmojito-keyfob.so.0.0.0 +%{_libdir}/libmojito-keystore.so.0 +%{_libdir}/libmojito-keystore.so.0.0.0 %{_libdir}/libmojito-client.so.1 %{_libdir}/libmojito-client.so.1.0.0 %dir %{_libdir}/mojito -%dir %{_libdir}/mojito/services -%{_libdir}/mojito/services/libtwitter.so -%{_libdir}/mojito/services/libmojito-service-dummy.so +%{_libdir}/mojito/services %{_datadir}/dbus-1/services/mojito.service %{_datadir}/mojito %{_libexecdir}/mojito-core %files devel %defattr(-,root,root,-) +%doc tests/*.c examples/*c examples/*.py %{_includedir}/mojito -%{_libdir}/pkgconfig/mojito-client.pc -%{_libdir}/pkgconfig/mojito-module.pc +%{_libdir}/pkgconfig/mojito* %{_libdir}/libmojito.so %{_libdir}/libmojito-client.so +%{_libdir}/libmojito-keyfob.so +%{_libdir}/libmojito-keystore.so %changelog +* Wed Jun 17 2009 Peter Robinson 0.17-1 +- Update to new 0.17 release, add language support and more backends + * Wed Jun 17 2009 Peter Robinson 0.10.3-2 - Add extra build deps Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Jul 2009 06:46:27 -0000 1.2 +++ sources 6 Jul 2009 09:23:28 -0000 1.3 @@ -1 +1 @@ -83bc2fbbd03282bfbab40bdeb63eaa87 mojito-0.10.3.tar.gz +c5af18f5d0a02da8a81562cbe3e7b91f mojito-0.17.tar.bz2 From eseyman at fedoraproject.org Mon Jul 6 09:33:22 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:33:22 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-Forward.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706093322.5AEE011C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25527/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-Forward.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-Forward-1_06-1_fc11:HEAD:perl-CGI-Application-Plugin-Forward-1.06-1.fc11.src.rpm:1246872782 --- NEW FILE perl-CGI-Application-Plugin-Forward.spec --- Name: perl-CGI-Application-Plugin-Forward Version: 1.06 Release: 1%{?dist} Summary: Pass control from one run mode to another in CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-Forward/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-Forward-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::AutoRunmode) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module gives CGI::Application a forward method that passes control to another run mode and returns its output. This is equivalent to calling $self->$other_runmode, except that CGI::Application's internal value of the current run mode is updated. %prep %setup -q -n CGI-Application-Plugin-Forward-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:16:12 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:33:21 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-Forward-1.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:16:12 -0000 1.1 +++ sources 6 Jul 2009 09:33:21 -0000 1.2 @@ -0,0 +1 @@ +1593ec5a83a7e104e4b85f13cc729a8a CGI-Application-Plugin-Forward-1.06.tar.gz From eseyman at fedoraproject.org Mon Jul 6 09:35:00 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:35:00 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-Forward.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706093500.80D1111C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25905/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-Forward.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-Forward-1_06-1_fc11:F-11:perl-CGI-Application-Plugin-Forward-1.06-1.fc11.src.rpm:1246872849 --- NEW FILE perl-CGI-Application-Plugin-Forward.spec --- Name: perl-CGI-Application-Plugin-Forward Version: 1.06 Release: 1%{?dist} Summary: Pass control from one run mode to another in CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-Forward/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-Forward-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::AutoRunmode) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module gives CGI::Application a forward method that passes control to another run mode and returns its output. This is equivalent to calling $self->$other_runmode, except that CGI::Application's internal value of the current run mode is updated. %prep %setup -q -n CGI-Application-Plugin-Forward-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:16:12 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:34:30 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-Forward-1.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:16:12 -0000 1.1 +++ sources 6 Jul 2009 09:34:30 -0000 1.2 @@ -0,0 +1 @@ +1593ec5a83a7e104e4b85f13cc729a8a CGI-Application-Plugin-Forward-1.06.tar.gz From eseyman at fedoraproject.org Mon Jul 6 09:38:17 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:38:17 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-Forward.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706093817.7138711C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26624/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-Forward.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-Forward-1_06-1_fc11:F-10:perl-CGI-Application-Plugin-Forward-1.06-1.fc11.src.rpm:1246873047 --- NEW FILE perl-CGI-Application-Plugin-Forward.spec --- Name: perl-CGI-Application-Plugin-Forward Version: 1.06 Release: 1%{?dist} Summary: Pass control from one run mode to another in CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-Forward/ Source0: http://www.cpan.org/authors/id/M/MG/MGRAHAM/CGI-Application-Plugin-Forward-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::AutoRunmode) BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module gives CGI::Application a forward method that passes control to another run mode and returns its output. This is equivalent to calling $self->$other_runmode, except that CGI::Application's internal value of the current run mode is updated. %prep %setup -q -n CGI-Application-Plugin-Forward-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:16:12 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:37:46 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-Forward-1.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:16:12 -0000 1.1 +++ sources 6 Jul 2009 09:37:47 -0000 1.2 @@ -0,0 +1 @@ +1593ec5a83a7e104e4b85f13cc729a8a CGI-Application-Plugin-Forward-1.06.tar.gz From pbrobinson at fedoraproject.org Mon Jul 6 09:57:50 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 6 Jul 2009 09:57:50 +0000 (UTC) Subject: rpms/mojito/devel mojito.spec,1.2,1.3 Message-ID: <20090706095750.E51C511C02C8@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30733 Modified Files: mojito.spec Log Message: - Add some additional buildreqs Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mojito.spec 6 Jul 2009 09:23:28 -0000 1.2 +++ mojito.spec 6 Jul 2009 09:57:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: mojito Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A social network data aggregator Group: Applications/Internet @@ -12,6 +12,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: dbus-glib-devel BuildRequires: glib2-devel BuildRequires: GConf2-devel +BuildRequires: gnome-keyring-devel +BuildRequires: libsoup-devel BuildRequires: NetworkManager-devel BuildRequires: pkgconfig BuildRequires: rest-devel @@ -101,6 +103,9 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog +* Wed Jun 17 2009 Peter Robinson 0.17-2 +- Add some additional buildreqs + * Wed Jun 17 2009 Peter Robinson 0.17-1 - Update to new 0.17 release, add language support and more backends From eseyman at fedoraproject.org Mon Jul 6 09:59:23 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 09:59:23 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-LogDispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706095923.D64E111C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31195/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-LogDispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-LogDispatch-1_02-1_fc11:HEAD:perl-CGI-Application-Plugin-LogDispatch-1.02-1.fc11.src.rpm:1246874160 --- NEW FILE perl-CGI-Application-Plugin-LogDispatch.spec --- Name: perl-CGI-Application-Plugin-LogDispatch Version: 1.02 Release: 1%{?dist} Summary: Add Log::Dispatch support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-LogDispatch/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-LogDispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Log::Dispatch) >= 0.21 BuildRequires: perl(Module::Build) BuildRequires: perl(Sub::WrapPackages) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(Sub::WrapPackages) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::LogDispatch adds logging support to your CGI::Application modules by providing a Log::Dispatch dispatcher object that is accessible from anywhere in the application. %prep %setup -q -n CGI-Application-Plugin-LogDispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.02-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:17:11 -0000 1.1 +++ .cvsignore 6 Jul 2009 09:59:23 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-LogDispatch-1.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:17:11 -0000 1.1 +++ sources 6 Jul 2009 09:59:23 -0000 1.2 @@ -0,0 +1 @@ +c44b713aca45606aa1ae3464c5436f79 CGI-Application-Plugin-LogDispatch-1.02.tar.gz From eseyman at fedoraproject.org Mon Jul 6 10:00:28 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 10:00:28 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-LogDispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706100028.5F4FE11C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32109/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-LogDispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-LogDispatch-1_02-1_fc11:F-11:perl-CGI-Application-Plugin-LogDispatch-1.02-1.fc11.src.rpm:1246874406 --- NEW FILE perl-CGI-Application-Plugin-LogDispatch.spec --- Name: perl-CGI-Application-Plugin-LogDispatch Version: 1.02 Release: 1%{?dist} Summary: Add Log::Dispatch support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-LogDispatch/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-LogDispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Log::Dispatch) >= 0.21 BuildRequires: perl(Module::Build) BuildRequires: perl(Sub::WrapPackages) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(Sub::WrapPackages) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::LogDispatch adds logging support to your CGI::Application modules by providing a Log::Dispatch dispatcher object that is accessible from anywhere in the application. %prep %setup -q -n CGI-Application-Plugin-LogDispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.02-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:17:11 -0000 1.1 +++ .cvsignore 6 Jul 2009 10:00:28 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-LogDispatch-1.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:17:11 -0000 1.1 +++ sources 6 Jul 2009 10:00:28 -0000 1.2 @@ -0,0 +1 @@ +c44b713aca45606aa1ae3464c5436f79 CGI-Application-Plugin-LogDispatch-1.02.tar.gz From eseyman at fedoraproject.org Mon Jul 6 10:02:10 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Mon, 6 Jul 2009 10:02:10 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-LogDispatch.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706100210.B794911C02C8@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32701/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-LogDispatch.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-LogDispatch-1_02-1_fc11:F-10:perl-CGI-Application-Plugin-LogDispatch-1.02-1.fc11.src.rpm:1246874472 --- NEW FILE perl-CGI-Application-Plugin-LogDispatch.spec --- Name: perl-CGI-Application-Plugin-LogDispatch Version: 1.02 Release: 1%{?dist} Summary: Add Log::Dispatch support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-LogDispatch/ Source0: http://www.cpan.org/authors/id/C/CE/CEESHEK/CGI-Application-Plugin-LogDispatch-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(Log::Dispatch) >= 0.21 BuildRequires: perl(Module::Build) BuildRequires: perl(Sub::WrapPackages) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) Requires: perl(Sub::WrapPackages) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description CGI::Application::Plugin::LogDispatch adds logging support to your CGI::Application modules by providing a Log::Dispatch dispatcher object that is accessible from anywhere in the application. %prep %setup -q -n CGI-Application-Plugin-LogDispatch-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 1.02-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:17:11 -0000 1.1 +++ .cvsignore 6 Jul 2009 10:01:40 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-LogDispatch-1.02.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:17:11 -0000 1.1 +++ sources 6 Jul 2009 10:01:40 -0000 1.2 @@ -0,0 +1 @@ +c44b713aca45606aa1ae3464c5436f79 CGI-Application-Plugin-LogDispatch-1.02.tar.gz From pbrobinson at fedoraproject.org Mon Jul 6 10:08:10 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 6 Jul 2009 10:08:10 +0000 (UTC) Subject: rpms/mojito/devel mojito.spec,1.3,1.4 Message-ID: <20090706100810.ED5D111C02C8@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1674 Modified Files: mojito.spec Log Message: - and some more buildreq Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mojito.spec 6 Jul 2009 09:57:20 -0000 1.3 +++ mojito.spec 6 Jul 2009 10:07:40 -0000 1.4 @@ -1,6 +1,6 @@ Name: mojito Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A social network data aggregator Group: Applications/Internet @@ -14,7 +14,7 @@ BuildRequires: glib2-devel BuildRequires: GConf2-devel BuildRequires: gnome-keyring-devel BuildRequires: libsoup-devel -BuildRequires: NetworkManager-devel +BuildRequires: NetworkManager-glib-devel BuildRequires: pkgconfig BuildRequires: rest-devel BuildRequires: twitter-glib-devel @@ -103,10 +103,13 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog -* Wed Jun 17 2009 Peter Robinson 0.17-2 +* Mon Jul 6 2009 Peter Robinson 0.17-3 - Add some additional buildreqs -* Wed Jun 17 2009 Peter Robinson 0.17-1 +* Mon Jul 6 2009 Peter Robinson 0.17-2 +- Add some additional buildreqs + +* Mon Jul 6 2009 Peter Robinson 0.17-1 - Update to new 0.17 release, add language support and more backends * Wed Jun 17 2009 Peter Robinson 0.10.3-2 From pbrobinson at fedoraproject.org Mon Jul 6 10:17:52 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 6 Jul 2009 10:17:52 +0000 (UTC) Subject: rpms/celt/devel .cvsignore, 1.3, 1.4 celt.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090706101752.0B20211C02C8@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/celt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3732 Modified Files: .cvsignore celt.spec sources Log Message: - New 0.6.0 upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/celt/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 18 Feb 2009 09:52:31 -0000 1.3 +++ .cvsignore 6 Jul 2009 10:17:21 -0000 1.4 @@ -1 +1 @@ -celt-0.5.2.tar.gz +celt-0.6.0.tar.gz Index: celt.spec =================================================================== RCS file: /cvs/pkgs/rpms/celt/devel/celt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- celt.spec 24 Feb 2009 06:59:40 -0000 1.3 +++ celt.spec 6 Jul 2009 10:17:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: celt -Version: 0.5.2 -Release: 2%{?dist} +Version: 0.6.0 +Release: 1%{?dist} Summary: An audio codec for use in low-delay speech and audio communication Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libcelt.so %changelog +* Mon Jul 6 2009 Peter Robinson 0.6.0-1 +- New 0.6.0 upstream release + * Mon Feb 23 2009 Fedora Release Engineering - 0.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/celt/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 18 Feb 2009 09:52:31 -0000 1.3 +++ sources 6 Jul 2009 10:17:21 -0000 1.4 @@ -1 +1 @@ -6672ce9c8ef6d2879a9b1dc9fed1fb70 celt-0.5.2.tar.gz +6118c5ea0bb932b2934a2780550c2710 celt-0.6.0.tar.gz From rhughes at fedoraproject.org Mon Jul 6 10:23:12 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 10:23:12 +0000 (UTC) Subject: rpms/PackageKit/F-11 PackageKit-0.4.8-do-newest-unordered.patch, NONE, 1.1 PackageKit-0.4.8-fix-get-restart-required-all-packages.patch, NONE, 1.1 PackageKit-0.4.8-fix-get-restart-required.patch, NONE, 1.1 PackageKit-0.4.8-no-network-hardcode.patch, NONE, 1.1 PackageKit-0.4.8-subclass-mime-types.patch, NONE, 1.1 PackageKit-0.4.8-yum-float-version.patch, NONE, 1.1 PackageKit.spec, 1.108, 1.109 Message-ID: <20090706102312.3D62B11C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/PackageKit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4959 Modified Files: PackageKit.spec Added Files: PackageKit-0.4.8-do-newest-unordered.patch PackageKit-0.4.8-fix-get-restart-required-all-packages.patch PackageKit-0.4.8-fix-get-restart-required.patch PackageKit-0.4.8-no-network-hardcode.patch PackageKit-0.4.8-subclass-mime-types.patch PackageKit-0.4.8-yum-float-version.patch Log Message: * Mon Jul 06 2009 Richard Hughes - 0.4.8-2 - Pull in some patches from upstream PACKAGEKIT_0_4_X branch - Do newest filtering when the list isn't ordered - Don't check ts_state when getting the restart-required signal - Provide restart-required data for all the packages - Don't hardcode network access to install or update packages. - Correctly subclass mime-types. - Fix an error when getting the distro version of rawhide. - Fixes #506110, #504137 and #506649 PackageKit-0.4.8-do-newest-unordered.patch: --- NEW FILE PackageKit-0.4.8-do-newest-unordered.patch --- commit cdec15bbbb433f9e47c75467bafd31711b10fc93 Author: Richard Hughes Date: Mon Jun 29 12:42:02 2009 +0100 yum: do newest filtering when the list isn't ordered diff --git a/backends/yum/yumFilter.py b/backends/yum/yumFilter.py index e3cb3f3..70a12ba 100644 --- a/backends/yum/yumFilter.py +++ b/backends/yum/yumFilter.py @@ -90,8 +90,17 @@ class YumFilter(PackagekitFilter): # only key on name and not arch inst = self._pkg_is_installed(pkg) key = (pkg.name, inst) - if key in newest and pkg <= newest[key][0]: - continue + + # we've already come across this package + if key in newest: + + # the current package is older (or the same) than the one we have stored + if pkg <= newest[key][0]: + continue + + # the current package is newer than what we have stored, so nuke the old package + del newest[key] + newest[key] = (pkg, state) return newest.values() PackageKit-0.4.8-fix-get-restart-required-all-packages.patch: --- NEW FILE PackageKit-0.4.8-fix-get-restart-required-all-packages.patch --- commit a5fd8ab0411f918970d9abdf03ca83635ad58518 Author: Richard Hughes Date: Mon Jun 22 10:20:04 2009 +0100 yum: Provide restart-required data for all the packages, not just the first update in the list diff --git a/backends/yum/yumBackend.py b/backends/yum/yumBackend.py index f38fade..0b6a333 100755 --- a/backends/yum/yumBackend.py +++ b/backends/yum/yumBackend.py @@ -1820,7 +1820,6 @@ class PackageKitYumBackend(PackageKitBaseBackend, PackagekitPackage): if (pkg.name in self.rebootpkgs \ or (notice and notice.get_metadata().has_key('reboot_suggested') and notice['reboot_suggested'])): self.require_restart(RESTART_SYSTEM, self._pkg_to_id(pkg)) - break def _runYumTransaction(self, allow_remove_deps=None, allow_skip_broken=False): ''' PackageKit-0.4.8-fix-get-restart-required.patch: --- NEW FILE PackageKit-0.4.8-fix-get-restart-required.patch --- commit 205eba3727d1cad96baa42a4d38122bb997e520f Author: Richard Hughes Date: Mon Jun 22 10:19:08 2009 +0100 yum: Don't check ts_state when getting the restart-required signal diff --git a/backends/yum/yumBackend.py b/backends/yum/yumBackend.py index b27d378..f38fade 100755 --- a/backends/yum/yumBackend.py +++ b/backends/yum/yumBackend.py @@ -1818,8 +1818,7 @@ class PackageKitYumBackend(PackageKitBaseBackend, PackagekitPackage): # in the update metadata and is installed/updated etc notice = md.get_notice((pkg.name, pkg.version, pkg.release)) if (pkg.name in self.rebootpkgs \ - or (notice and notice.get_metadata().has_key('reboot_suggested') and notice['reboot_suggested']))\ - and txmbr.ts_state in TS_INSTALL_STATES: + or (notice and notice.get_metadata().has_key('reboot_suggested') and notice['reboot_suggested'])): self.require_restart(RESTART_SYSTEM, self._pkg_to_id(pkg)) break PackageKit-0.4.8-no-network-hardcode.patch: --- NEW FILE PackageKit-0.4.8-no-network-hardcode.patch --- commit 64997e86e36e1c6964289eec657d1595c92cd534 Author: Richard Hughes Date: Mon Jun 15 17:26:03 2009 +0100 yum: don't hardcode network access to install or update packages. Fixes rh#506110 diff --git a/backends/yum/pk-backend-yum.c b/backends/yum/pk-backend-yum.c index 3e27710..7dabed7 100644 --- a/backends/yum/pk-backend-yum.c +++ b/backends/yum/pk-backend-yum.c @@ -265,13 +265,6 @@ backend_install_packages (PkBackend *backend, gchar **package_ids) { gchar *package_ids_temp; - /* check network state */ - if (!pk_backend_is_online (backend)) { - pk_backend_error_code (backend, PK_ERROR_ENUM_NO_NETWORK, "Cannot install when offline"); - pk_backend_finished (backend); - return; - } - /* send the complete list as stdin */ package_ids_temp = pk_package_ids_to_text (package_ids); pk_backend_spawn_helper (spawn, "yumBackend.py", "install-packages", package_ids_temp, NULL); @@ -391,13 +384,6 @@ backend_update_packages (PkBackend *backend, gchar **package_ids) { gchar *package_ids_temp; - /* check network state */ - if (!pk_backend_is_online (backend)) { - pk_backend_error_code (backend, PK_ERROR_ENUM_NO_NETWORK, "Cannot install when offline"); - pk_backend_finished (backend); - return; - } - /* send the complete list as stdin */ package_ids_temp = pk_package_ids_to_text (package_ids); pk_backend_spawn_helper (spawn, "yumBackend.py", "update-packages", package_ids_temp, NULL); PackageKit-0.4.8-subclass-mime-types.patch: --- NEW FILE PackageKit-0.4.8-subclass-mime-types.patch --- commit fdfbd193e8c5e21bc381b805c5e06ee40000a495 Author: Richard Hughes Date: Fri Jun 12 10:30:22 2009 +0100 Add subclasses to our registered mime-types. Fixes rh#504137 diff --git a/data/packagekit-catalog.xml.in b/data/packagekit-catalog.xml.in index d25210f..df04ca8 100644 --- a/data/packagekit-catalog.xml.in +++ b/data/packagekit-catalog.xml.in @@ -1,6 +1,7 @@ + <_comment>PackageKit Catalog diff --git a/data/packagekit-package-list.xml.in b/data/packagekit-package-list.xml.in index f08d411..7b063b3 100644 --- a/data/packagekit-package-list.xml.in +++ b/data/packagekit-package-list.xml.in @@ -1,6 +1,7 @@ + <_comment>PackageKit Package List diff --git a/data/packagekit-servicepack.xml.in b/data/packagekit-servicepack.xml.in index 65b5d12..0bcd1d8 100644 --- a/data/packagekit-servicepack.xml.in +++ b/data/packagekit-servicepack.xml.in @@ -1,6 +1,7 @@ + <_comment>PackageKit Service Pack PackageKit-0.4.8-yum-float-version.patch: --- NEW FILE PackageKit-0.4.8-yum-float-version.patch --- commit d8089794c91c8c8429ca3e794465a322eea136d6 Author: Richard Hughes Date: Thu Jun 18 08:13:00 2009 +0100 yum: use a float for present_version as rawhide is 11.90. Fixes rh#506649 diff --git a/backends/yum/yumBackend.py b/backends/yum/yumBackend.py index 4d84d47..b27d378 100755 --- a/backends/yum/yumBackend.py +++ b/backends/yum/yumBackend.py @@ -2146,7 +2146,7 @@ class PackageKitYumBackend(PackageKitBaseBackend, PackagekitPackage): # are we already on the latest version try: - present_version = self.yumbase.conf.yumvar['releasever'] + present_version = float(self.yumbase.conf.yumvar['releasever']) except Exception, e: self.error(ERROR_INTERNAL_ERROR, _format_str(traceback.format_exc())) if (present_version >= last_version): Index: PackageKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/F-11/PackageKit.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- PackageKit.spec 1 Jun 2009 10:19:08 -0000 1.108 +++ PackageKit.spec 6 Jul 2009 10:23:11 -0000 1.109 @@ -10,7 +10,7 @@ Summary: Package management service Name: PackageKit Version: 0.4.8 #Release: 0.3.%{?alphatag}git%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.packagekit.org @@ -24,6 +24,24 @@ Patch0: PackageKit-0.3.8-Fedora-Vendo # Fedora specific: the yum backend doesn't do time estimation correctly Patch1: PackageKit-0.4.4-Fedora-turn-off-time.conf.patch +# Upstream: cdec15bbbb433f9e47c75467bafd31711b10fc93 +Patch2: PackageKit-0.4.8-do-newest-unordered.patch + +# Upstream: 205eba3727d1cad96baa42a4d38122bb997e520f +Patch3: PackageKit-0.4.8-fix-get-restart-required.patch + +# Upstream: a5fd8ab0411f918970d9abdf03ca83635ad58518 +Patch4: PackageKit-0.4.8-fix-get-restart-required-all-packages.patch + +# Upstream: 64997e86e36e1c6964289eec657d1595c92cd534 +Patch5: PackageKit-0.4.8-no-network-hardcode.patch + +# Upstream: fdfbd193e8c5e21bc381b805c5e06ee40000a495 +Patch6: PackageKit-0.4.8-subclass-mime-types.patch + +# Upstream: d8089794c91c8c8429ca3e794465a322eea136d6 +Patch7: PackageKit-0.4.8-yum-float-version.patch + Requires: dbus >= %{dbus_version} Requires: dbus-glib >= %{dbus_glib_version} Requires: PackageKit-glib = %{version}-%{release} @@ -217,6 +235,12 @@ using PackageKit. %setup -q %patch0 -p1 -b .fedora %patch1 -p1 -b .no-time +%patch2 -p1 -b .do-newest-unordered +%patch3 -p1 -b .fix-get-restart-required +%patch4 -p1 -b .fix-get-restart-required-all-packages +%patch5 -p1 -b .no-network-hardcode +%patch6 -p1 -b .subclass-mime-types +%patch7 -p1 -b .yum-float-version %build %configure --enable-yum --enable-smart --with-default-backend=yum --disable-local --disable-ruck @@ -402,6 +426,16 @@ update-mime-database %{_datadir}/mime &> %{_includedir}/PackageKit/backend/*.h %changelog +* Mon Jul 06 2009 Richard Hughes - 0.4.8-2 +- Pull in some patches from upstream PACKAGEKIT_0_4_X branch + - Do newest filtering when the list isn't ordered + - Don't check ts_state when getting the restart-required signal + - Provide restart-required data for all the packages + - Don't hardcode network access to install or update packages. + - Correctly subclass mime-types. + - Fix an error when getting the distro version of rawhide. +- Fixes #506110, #504137 and #506649 + * Mon Jun 05 2009 Richard Hughes - 0.4.8-1 - New upstream version, many bugfixes and performance fixes - Fixes #487614, #500428 and #502399 From jwrdegoede at fedoraproject.org Mon Jul 6 10:37:21 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Mon, 6 Jul 2009 10:37:21 +0000 (UTC) Subject: rpms/openmsx/devel openmsx.spec,1.12,1.13 Message-ID: <20090706103721.DC99411C02C8@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/openmsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8506 Modified Files: openmsx.spec Log Message: * Fri Jul 3 2009 Hans de Goede 0.7.2-1 - New upstream release 0.7.2 Index: openmsx.spec =================================================================== RCS file: /cvs/extras/rpms/openmsx/devel/openmsx.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- openmsx.spec 3 Jul 2009 13:57:09 -0000 1.12 +++ openmsx.spec 6 Jul 2009 10:36:51 -0000 1.13 @@ -14,7 +14,7 @@ BuildRequires: glew-devel >= 1.3.2 BuildRequires: jack-audio-connection-kit-devel BuildRequires: libpng-devel BuildRequires: libxml2-devel -BuildRequires: SDL_image-devel SDL_ttf-devel +BuildRequires: SDL_image-devel SDL_ttf-devel freetype-devel BuildRequires: tcl-devel >= 8.4.0 BuildRequires: zlib-devel Requires: cbios-%{name} From rhughes at fedoraproject.org Mon Jul 6 10:52:47 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 10:52:47 +0000 (UTC) Subject: rpms/PackageKit/devel .cvsignore, 1.48, 1.49 PackageKit.spec, 1.106, 1.107 sources, 1.49, 1.50 Message-ID: <20090706105247.3D9F311C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/PackageKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11706 Modified Files: .cvsignore PackageKit.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 0.5.0-1 - New upstream version, many bugfixes and a few new features - Fixes #483164, #504377, #504137, #499590, #506110 and #506649 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 25 Jun 2009 09:11:44 -0000 1.48 +++ .cvsignore 6 Jul 2009 10:52:16 -0000 1.49 @@ -1 +1 @@ -PackageKit-0.5.0-20090625.tar.gz +PackageKit-0.5.0.tar.gz Index: PackageKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/PackageKit.spec,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- PackageKit.spec 25 Jun 2009 09:11:44 -0000 1.106 +++ PackageKit.spec 6 Jul 2009 10:52:16 -0000 1.107 @@ -10,13 +10,13 @@ Summary: Package management service Name: PackageKit Version: 0.5.0 -Release: 0.1.%{?alphatag}git%{?dist} -#Release: 1%{?dist} +#Release: 0.1.%{?alphatag}git%{?dist} +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.packagekit.org -Source0: http://www.packagekit.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz -#Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.gz +#Source0: http://www.packagekit.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz +Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Fedora-specific: set Vendor.conf up for Fedora. @@ -139,6 +139,14 @@ Requires: %{name} = %{version}-%{release %description cron Crontab and utilities for running PackageKit as a cron job. +%package debuginfo-install +Summary: Facility to install debugging packages using PackageKit +Group: System Environment/Base +Requires: %{name} = %{version}-%{release} + +%description debuginfo-install +Provides facility to install debugging packages using PackageKit. + %package glib-devel Summary: GLib Libraries and headers for PackageKit Group: Development/Libraries @@ -215,8 +223,8 @@ A simple helper that offers to install n using PackageKit. %prep -%setup -q -n %{?name}-%{?version}-%{?alphatag} -#%setup -q +#%setup -q -n %{?name}-%{?version}-%{?alphatag} +%setup -q %patch0 -p1 -b .fedora %patch1 -p1 -b .no-time @@ -287,7 +295,9 @@ update-mime-database %{_datadir}/mime &> %dir %{_datadir}/PackageKit/helpers/test_spawn %dir %{_datadir}/PackageKit/icons %{_datadir}/PackageKit/helpers/test_spawn/* -%{_datadir}/man/man1/*.1.gz +%{_datadir}/man/man1/pkcon.1.gz +%{_datadir}/man/man1/pkmon.1.gz +%{_datadir}/man/man1/pkgenpack.1.gz %{_datadir}/polkit-1/actions/*.policy %{_datadir}/mime/packages/packagekit-*.xml %{_datadir}/PackageKit/pk-upgrade-distro.sh @@ -352,6 +362,12 @@ update-mime-database %{_datadir}/mime &> %config %{_sysconfdir}/cron.daily/packagekit-background.cron %config(noreplace) %{_sysconfdir}/sysconfig/packagekit-background +%files debuginfo-install +%defattr(-,root,root,-) +%doc README AUTHORS NEWS COPYING +%{_libexecdir}/pk-debuginfo-install +%{_datadir}/man/man1/pk-debuginfo-install.1.gz + %files browser-plugin %defattr(-,root,root,-) %doc README AUTHORS NEWS COPYING @@ -402,6 +418,10 @@ update-mime-database %{_datadir}/mime &> %{_includedir}/PackageKit/backend/*.h %changelog +* Mon Jul 06 2009 Richard Hughes - 0.5.0-1 +- New upstream version, many bugfixes and a few new features +- Fixes #483164, #504377, #504137, #499590, #506110 and #506649 + * Thu Jun 25 2009 Richard Hughes - 0.5.0-0.1.20090625git - Update to a git snapshot from the 0.5.x series. - Many PolicyKit fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/sources,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- sources 25 Jun 2009 09:11:44 -0000 1.49 +++ sources 6 Jul 2009 10:52:16 -0000 1.50 @@ -1 +1 @@ -8109f5fa96218403060f1ac854393c27 PackageKit-0.5.0-20090625.tar.gz +e4d442646be7a3a71ed3970ad551a645 PackageKit-0.5.0.tar.gz From nphilipp at fedoraproject.org Mon Jul 6 10:56:55 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Mon, 6 Jul 2009 10:56:55 +0000 (UTC) Subject: rpms/babl/devel babl.spec,1.14,1.15 Message-ID: <20090706105655.AF64411C02C8@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/babl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12565 Modified Files: babl.spec Log Message: revert using "--disable-gtk-doc" as this doesn't work with babl (#477807) Index: babl.spec =================================================================== RCS file: /cvs/pkgs/rpms/babl/devel/babl.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- babl.spec 2 Jul 2009 12:40:42 -0000 1.14 +++ babl.spec 6 Jul 2009 10:56:25 -0000 1.15 @@ -32,7 +32,7 @@ developing with %{name}. %patch0 -p0 -b .fix %build -%configure --disable-static --disable-gtk-doc +%configure --disable-static make %{?_smp_mflags} @@ -46,6 +46,9 @@ rm -rf babl_docs/html/graphics/Makefile* rm -rf %{buildroot}%{_libdir}/*.la +# fix timestamps for multilib +touch -m --reference=docs/Makefile.am babl_docs/html{,/graphics}/* + %check make check @@ -70,7 +73,10 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog -* Thu Jul 02 2009 Nils Philippsen - 0.1.0-3 +* Mon Jul 06 2009 Nils Philippsen - 0.1.0-3 +- revert using "--disable-gtk-doc" as this doesn't work with babl (#477807) + +* Thu Jul 02 2009 Nils Philippsen - use "--disable-gtk-doc" to avoid rebuilding documentation (#477807) - fix source URL From mef at fedoraproject.org Mon Jul 6 11:09:03 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:09:03 +0000 (UTC) Subject: rpms/pl/devel pl-5.7.11-jpl-configure.patch, NONE, 1.1 pl-5.7.11-man-files.patch, NONE, 1.1 pl-5.7.11-rpath.patch, NONE, 1.1 .cvsignore, 1.22, 1.23 pl.spec, 1.59, 1.60 sources, 1.22, 1.23 Message-ID: <20090706110904.141D011C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15761 Modified Files: .cvsignore pl.spec sources Added Files: pl-5.7.11-jpl-configure.patch pl-5.7.11-man-files.patch pl-5.7.11-rpath.patch Log Message: Update to latest version, fix multilib issues pl-5.7.11-jpl-configure.patch: --- NEW FILE pl-5.7.11-jpl-configure.patch --- --- pl-5.7.11/packages/jpl/configure.orig 2009-07-06 10:37:59.561560026 +0100 +++ pl-5.7.11/packages/jpl/configure 2009-07-06 10:38:02.133810593 +0100 @@ -3664,21 +3664,6 @@ CWFLAGS="${CWFLAGS-}" fi -if test "x$JAVALIBS" = "x"; then - case "$PLARCH" in - *darwin*) - JAVALIBS="-Wl,-framework,JavaVM" - ;; - *powerpc-linux*) - JAVALIBS="-ljava -ljvm" - ;; - *) - JAVALIBS="-ljava -lverify -ljvm" - ;; - esac -fi - - # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 @@ -4638,15 +4623,25 @@ _JNI_LIBDIRS="lib/amd64" _JNI_LIBSUBDIRS="server" ;; + alpha*) + _JNI_LIBDIRS="lib/alpha" + _JNI_LIBSUBDIRS="server" + ;; powerpc) - case "$host_os" in - linux*) - _JNI_LIBDIRS="lib/ppc bin" - _JNI_LIBSUBDIRS="server classic" - ;; - *) - _JNI_LIBDIRS="" - esac + _JNI_LIBDIRS="lib/ppc" + _JNI_LIBSUBDIRS="server" + ;; + powerpc64) + _JNI_LIBDIRS="lib/ppc64" + _JNI_LIBSUBDIRS="server" + ;; + s390) + _JNI_LIBDIRS="lib/s390" + _JNI_LIBSUBDIRS="server" + ;; + s390x) + _JNI_LIBDIRS="lib/s390x" + _JNI_LIBSUBDIRS="server" ;; *) # Fallback option should work on all architectures except @@ -4655,6 +4649,26 @@ _JNI_LIBSUBDIRS="server" esac +# Set JAVALIBS differently if we're using GCJ +if test "x$JAVALIBS" = "x"; then + if (echo $_JTOPDIR | grep gcj > /dev/null); then + JAVALIBS="-ljvm" + else + case "$PLARCH" in + *darwin*) + JAVALIBS="-Wl,-framework,JavaVM" + ;; + *powerpc-linux*) + JAVALIBS="-ljava -ljvm" + ;; + *) + JAVALIBS="-ljava -lverify -ljvm" + ;; + esac + fi +fi + + for d in $_JNI_LIBDIRS; do for subd in $_JNI_LIBSUBDIRS; do echo "Trying $_JTOPDIR/jre/$d/$subd" pl-5.7.11-man-files.patch: --- NEW FILE pl-5.7.11-man-files.patch --- --- pl-5.7.11/src/pl.1.in.orig 2009-07-06 11:38:55.194810616 +0100 +++ pl-5.7.11/src/pl.1.in 2009-07-06 11:39:53.213766888 +0100 @@ -333,57 +333,6 @@ .BR apropos/1 and .BR explain/1. -.RE -.SH FILES -This installation of SWI-Prolog has been configured using the configure -option -.BI \-\-prefix= @prefix at . -If the files listed below are not at the indicated place, the installation -has probably been moved. Use -.TP -?- current_prolog_flag(home, Home). -.P -to find the local installation directory of SWI-Prolog. -.TP -.I .plrc -.TP -.I ~/.plrc -Personal initialisation files consulted by SWI-Prolog on startup. -If both exist -.I .plrc -is used. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/bin/@ARCH@/ -Location for the executables. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/include/ -Location for the include files. If writable, SWI-Prolog.h is also -copied to @prefix@/include/SWI-Prolog.h. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/library/ -SWI-Prolog user libraries. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot/ -SWI-Prolog kernel parts written in Prolog. The startup file - at prefix@/lib/@PL at -@PLVERSION@/boot32.prc may be recreated using -the command from the directory @prefix@/lib/@PL at -@PLVERSION@: -.RS -.TP -bin/@ARCH@/@PL@ -O -o boot32.prc -b boot/init.pl -.RE -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/doc/packages -HTML and/or PDF documentation on the installed add-ons. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot32.prc -Default startup file. This is a `intermediate code' file containing -precompiled code from the boot directory. The -.BI \-x bootfile -option may be used to select a different file. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/runtime/@ARCH@/libpl.a -SWI-Prolog library for embedding. See also -.I plld(1). .SH SEE ALSO .PP The SWI-Prolog web-home at @@ -393,9 +342,6 @@ .IR "SWI-Prolog Reference Manual" at .I http://gollem.science.uva.nl/SWI-Prolog/Manual/ .PP -Documentation on the add-on packages in -.I @prefix@/lib/@PL at -@PLVERSION@/boot/doc -.PP William\ F.\ Clocksin & Christopher\ S.\ Mellish, .IR "Programming in Prolog" , fourth edition, Springer Verlag, Berlin 1994. pl-5.7.11-rpath.patch: --- NEW FILE pl-5.7.11-rpath.patch --- --- pl-5.7.11/packages/xpce/pl/src/Makefile.orig 2009-07-06 10:30:39.522810119 +0100 +++ pl-5.7.11/packages/xpce/pl/src/Makefile 2009-07-06 10:30:52.766810939 +0100 @@ -114,20 +114,8 @@ fi sopce$(XPCESO): - if [ "x$$LD_RUN_PATH" = "x" ]; then \ - LD_RUN_PATH="$(libdir)"; \ - else \ - LD_RUN_PATH="$(libdir):$$LD_RUN_PATH"; \ - fi; \ - export LD_RUN_PATH; \ $(PLLD) -shared $(SOITF) $(LDFLAGS) -L$(XLIB) -L$(LIBDIR) -lXPCE -o $(XPCESO); axpce$(XPCESO): - if [ "x$$LD_RUN_PATH" = "x" ]; then \ - LD_RUN_PATH="$(libdir)"; \ - else \ - LD_RUN_PATH="$(libdir):$$LD_RUN_PATH"; \ - fi; \ - export LD_RUN_PATH; \ $(PLLD) -shared $(LDFLAGS) $(SOITF) $(SOEXTR) -L$(LIBDIR) \ -lXPCE $(GCCLIB) -L$(XLIB) $(XLIBS) $(NETLIBS) -o $(XPCESO); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pl/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 25 Feb 2009 09:43:59 -0000 1.22 +++ .cvsignore 6 Jul 2009 11:08:32 -0000 1.23 @@ -1,3 +1,3 @@ -pl-5.7.6.tar.gz -HTMLmanual.tar.gz userguide.html.tgz +pl-5.7.11.tar.gz +SWI-Prolog-5.7.11.pdf Index: pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pl/devel/pl.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- pl.spec 12 Jun 2009 22:51:03 -0000 1.59 +++ pl.spec 6 Jul 2009 11:08:32 -0000 1.60 @@ -2,8 +2,8 @@ %define jdkverlong %{jdkvershort}.0 Name: pl -Version: 5.7.6 -Release: 5%{?dist} +Version: 5.7.11 +Release: 1%{?dist} Summary: SWI-Prolog - Edinburgh compatible Prolog compiler @@ -11,14 +11,12 @@ Group: Development/Languages License: LGPLv2+ URL: http://www.swi-prolog.org Source: http://www.swi-prolog.org/download/devel/src/%{name}-%{version}.tar.gz -Source1: http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/refman/HTMLmanual.tar.gz -Source2: http://gollem.science.uva.nl/cgi-bin/nph-download/xpce/doc/userguide/userguide.html.tgz -Patch0: %{name}-5.4.6-rpath.patch -Patch1: %{name}-5.6.57-jpl-configure.patch -Patch2: %{name}-5.6.57-jpl-configure-alpha.patch +Source1: http://www.swi-prolog.org/download/devel/doc/SWI-Prolog-%{version}.pdf +Source2: http://www.swi-prolog.org/download/xpce/doc/userguide/userguide.html.tgz +Patch0: %{name}-5.7.11-rpath.patch +Patch1: %{name}-5.7.11-jpl-configure.patch +Patch2: %{name}-5.7.11-man-files.patch Patch3: %{name}-5.6.60-jni.patch -Patch4: %{name}-5.6.57-jpl-configure-s390x.patch -Patch5: pl-5.7.6-strndup-no-static.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gmp-devel @@ -103,19 +101,18 @@ in Prolog. In both setups it provides a %setup -q %patch0 -p1 -b .rpath %patch1 -p1 -b .libjvm -%patch2 -p1 -b .libjvm-alpha +%patch2 -p1 -b .man-files %patch3 -p1 -b .jni -%patch4 -p1 -b .libjvm-s390X -%patch5 -p1 -b .strndup-no-static ( mkdir doc-install cd doc-install - tar zxf %{SOURCE1} + cp -p %{SOURCE1} . ) ( mkdir xpce-doc cd xpce-doc tar zxf %{SOURCE2} + mv UserGuide xpce-UserGuide ) # Adjustments to take into account the new location of JNI stuff @@ -144,6 +141,14 @@ make COFLAGS="$RPM_OPT_FLAGS -fno-strict PATH=$PWD/src:$PATH cd packages %configure +cd clib/maildrop +for dir in rfc*; do +pushd $dir +%configure +sed --in-place=.pic -e 's/CFLAGS=/CFLAGS=-fPIC /' Makefile +popd +done +cd ../.. make COFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" JAVALIBS="-L$JAVA_LIB/server -L$JAVA_LIB -ljava -lverify -ljvm" cd .. @@ -178,6 +183,11 @@ mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{v rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/include rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/xpce-*/include +# Move the binaries into %{_bindir} directly instead of using links +rm -f $RPM_BUILD_ROOT%{_bindir}/* +mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin/*/* $RPM_BUILD_ROOT%{_bindir} +rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin + # Clean up the other stuff that shouldn't be packaged rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/man rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/doc @@ -243,6 +253,17 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 6 2009 Mary Ellen Foster - 5.7.11-1 +- Move binaries into /usr/bin directly to fix multilib issues +- Update to latest upstream release +- Use officially-distributed PDF documentation instead of HTML +- Unify Java patches +- Remove strndup package; they fixed it upstream +- Fix compilation of "maildrop" packages +- Give the xpce documentation directory a clearer name +- Removed the FILES section of the man page because it also caused + multilib conflicts (and was inaccurate anyway) + * Fri Jun 12 2009 Dennis Gilmore 5.7.6-5 -dont use a static definition for strndup Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pl/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 25 Feb 2009 09:43:59 -0000 1.22 +++ sources 6 Jul 2009 11:08:32 -0000 1.23 @@ -1,3 +1,3 @@ -2569fae9f1fa61ccd12cde9b0434b1c8 pl-5.7.6.tar.gz -1da5a1eab8c4577f1948540d28144a38 HTMLmanual.tar.gz a4462019611caa4f69247c8bf94404a7 userguide.html.tgz +b2bc17a08a462ee8168407b52c28bd40 pl-5.7.11.tar.gz +ba7ff9da608a3986867cecbae27f51dd SWI-Prolog-5.7.11.pdf From mef at fedoraproject.org Mon Jul 6 11:11:26 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:11:26 +0000 (UTC) Subject: rpms/pl/devel pl-5.4.6-rpath.patch, 1.1, NONE pl-5.6.0-multilib.patch, 1.1, NONE pl-5.6.52-jni.patch, 1.1, NONE pl-5.6.55-configure.patch, 1.1, NONE pl-5.6.57-locale.patch, 1.1, NONE pl-5.7.6-strndup-no-static.patch, 1.1, NONE Message-ID: <20090706111126.9D23211C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16411 Removed Files: pl-5.4.6-rpath.patch pl-5.6.0-multilib.patch pl-5.6.52-jni.patch pl-5.6.55-configure.patch pl-5.6.57-locale.patch pl-5.7.6-strndup-no-static.patch Log Message: Remove redundant patches --- pl-5.4.6-rpath.patch DELETED --- --- pl-5.6.0-multilib.patch DELETED --- --- pl-5.6.52-jni.patch DELETED --- --- pl-5.6.55-configure.patch DELETED --- --- pl-5.6.57-locale.patch DELETED --- --- pl-5.7.6-strndup-no-static.patch DELETED --- From rhughes at fedoraproject.org Mon Jul 6 11:12:48 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 11:12:48 +0000 (UTC) Subject: rpms/gnome-power-manager/F-11 .cvsignore, 1.59, 1.60 gnome-power-manager.spec, 1.158, 1.159 sources, 1.59, 1.60 Message-ID: <20090706111248.5121E11C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16619 Modified Files: .cvsignore gnome-power-manager.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 2.26.3-1 - Update to 2.26.3 - Fixes #500024 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/F-11/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 1 Jun 2009 11:56:31 -0000 1.59 +++ .cvsignore 6 Jul 2009 11:12:17 -0000 1.60 @@ -1 +1 @@ -gnome-power-manager-2.26.2.tar.gz +gnome-power-manager-2.26.3.tar.gz Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/F-11/gnome-power-manager.spec,v retrieving revision 1.158 retrieving revision 1.159 diff -u -p -r1.158 -r1.159 --- gnome-power-manager.spec 1 Jun 2009 11:56:32 -0000 1.158 +++ gnome-power-manager.spec 6 Jul 2009 11:12:18 -0000 1.159 @@ -3,7 +3,7 @@ Summary: GNOME Power Manager Name: gnome-power-manager -Version: 2.26.2 +Version: 2.26.3 Release: 1%{?dist} License: GPLv2+ and GFDL Group: Applications/System @@ -162,6 +162,10 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_InhibitApplet.xml %changelog +* Mon Jul 06 2009 Richard Hughes - 2.26.3-1 +- Update to 2.26.3 +- Fixes #500024 + * Mon Jun 01 2009 Richard Hughes - 2.26.2-1 - Update to 2.26.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/F-11/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 1 Jun 2009 11:56:32 -0000 1.59 +++ sources 6 Jul 2009 11:12:18 -0000 1.60 @@ -1 +1 @@ -cb83ffbae26b25b8e29e9f7ad6877823 gnome-power-manager-2.26.2.tar.gz +e6275d592988948c0afa74fa0e35958d gnome-power-manager-2.26.3.tar.gz From mef at fedoraproject.org Mon Jul 6 11:15:22 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:15:22 +0000 (UTC) Subject: rpms/pl/F-11 pl-5.7.11-jpl-configure.patch, NONE, 1.1 pl-5.7.11-man-files.patch, NONE, 1.1 pl-5.7.11-rpath.patch, NONE, 1.1 .cvsignore, 1.22, 1.23 pl.spec, 1.59, 1.60 sources, 1.22, 1.23 pl-5.4.6-rpath.patch, 1.1, NONE pl-5.6.0-multilib.patch, 1.1, NONE pl-5.6.52-jni.patch, 1.1, NONE pl-5.6.55-configure.patch, 1.1, NONE pl-5.6.57-locale.patch, 1.1, NONE pl-5.7.6-strndup-no-static.patch, 1.1, NONE Message-ID: <20090706111522.BCFBC11C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17244 Modified Files: .cvsignore pl.spec sources Added Files: pl-5.7.11-jpl-configure.patch pl-5.7.11-man-files.patch pl-5.7.11-rpath.patch Removed Files: pl-5.4.6-rpath.patch pl-5.6.0-multilib.patch pl-5.6.52-jni.patch pl-5.6.55-configure.patch pl-5.6.57-locale.patch pl-5.7.6-strndup-no-static.patch Log Message: Update to latest upstream Fix multilib issues Remove redundant patches pl-5.7.11-jpl-configure.patch: --- NEW FILE pl-5.7.11-jpl-configure.patch --- --- pl-5.7.11/packages/jpl/configure.orig 2009-07-06 10:37:59.561560026 +0100 +++ pl-5.7.11/packages/jpl/configure 2009-07-06 10:38:02.133810593 +0100 @@ -3664,21 +3664,6 @@ CWFLAGS="${CWFLAGS-}" fi -if test "x$JAVALIBS" = "x"; then - case "$PLARCH" in - *darwin*) - JAVALIBS="-Wl,-framework,JavaVM" - ;; - *powerpc-linux*) - JAVALIBS="-ljava -ljvm" - ;; - *) - JAVALIBS="-ljava -lverify -ljvm" - ;; - esac -fi - - # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 @@ -4638,15 +4623,25 @@ _JNI_LIBDIRS="lib/amd64" _JNI_LIBSUBDIRS="server" ;; + alpha*) + _JNI_LIBDIRS="lib/alpha" + _JNI_LIBSUBDIRS="server" + ;; powerpc) - case "$host_os" in - linux*) - _JNI_LIBDIRS="lib/ppc bin" - _JNI_LIBSUBDIRS="server classic" - ;; - *) - _JNI_LIBDIRS="" - esac + _JNI_LIBDIRS="lib/ppc" + _JNI_LIBSUBDIRS="server" + ;; + powerpc64) + _JNI_LIBDIRS="lib/ppc64" + _JNI_LIBSUBDIRS="server" + ;; + s390) + _JNI_LIBDIRS="lib/s390" + _JNI_LIBSUBDIRS="server" + ;; + s390x) + _JNI_LIBDIRS="lib/s390x" + _JNI_LIBSUBDIRS="server" ;; *) # Fallback option should work on all architectures except @@ -4655,6 +4649,26 @@ _JNI_LIBSUBDIRS="server" esac +# Set JAVALIBS differently if we're using GCJ +if test "x$JAVALIBS" = "x"; then + if (echo $_JTOPDIR | grep gcj > /dev/null); then + JAVALIBS="-ljvm" + else + case "$PLARCH" in + *darwin*) + JAVALIBS="-Wl,-framework,JavaVM" + ;; + *powerpc-linux*) + JAVALIBS="-ljava -ljvm" + ;; + *) + JAVALIBS="-ljava -lverify -ljvm" + ;; + esac + fi +fi + + for d in $_JNI_LIBDIRS; do for subd in $_JNI_LIBSUBDIRS; do echo "Trying $_JTOPDIR/jre/$d/$subd" pl-5.7.11-man-files.patch: --- NEW FILE pl-5.7.11-man-files.patch --- --- pl-5.7.11/src/pl.1.in.orig 2009-07-06 11:38:55.194810616 +0100 +++ pl-5.7.11/src/pl.1.in 2009-07-06 11:39:53.213766888 +0100 @@ -333,57 +333,6 @@ .BR apropos/1 and .BR explain/1. -.RE -.SH FILES -This installation of SWI-Prolog has been configured using the configure -option -.BI \-\-prefix= @prefix at . -If the files listed below are not at the indicated place, the installation -has probably been moved. Use -.TP -?- current_prolog_flag(home, Home). -.P -to find the local installation directory of SWI-Prolog. -.TP -.I .plrc -.TP -.I ~/.plrc -Personal initialisation files consulted by SWI-Prolog on startup. -If both exist -.I .plrc -is used. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/bin/@ARCH@/ -Location for the executables. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/include/ -Location for the include files. If writable, SWI-Prolog.h is also -copied to @prefix@/include/SWI-Prolog.h. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/library/ -SWI-Prolog user libraries. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot/ -SWI-Prolog kernel parts written in Prolog. The startup file - at prefix@/lib/@PL at -@PLVERSION@/boot32.prc may be recreated using -the command from the directory @prefix@/lib/@PL at -@PLVERSION@: -.RS -.TP -bin/@ARCH@/@PL@ -O -o boot32.prc -b boot/init.pl -.RE -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/doc/packages -HTML and/or PDF documentation on the installed add-ons. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot32.prc -Default startup file. This is a `intermediate code' file containing -precompiled code from the boot directory. The -.BI \-x bootfile -option may be used to select a different file. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/runtime/@ARCH@/libpl.a -SWI-Prolog library for embedding. See also -.I plld(1). .SH SEE ALSO .PP The SWI-Prolog web-home at @@ -393,9 +342,6 @@ .IR "SWI-Prolog Reference Manual" at .I http://gollem.science.uva.nl/SWI-Prolog/Manual/ .PP -Documentation on the add-on packages in -.I @prefix@/lib/@PL at -@PLVERSION@/boot/doc -.PP William\ F.\ Clocksin & Christopher\ S.\ Mellish, .IR "Programming in Prolog" , fourth edition, Springer Verlag, Berlin 1994. pl-5.7.11-rpath.patch: --- NEW FILE pl-5.7.11-rpath.patch --- --- pl-5.7.11/packages/xpce/pl/src/Makefile.orig 2009-07-06 10:30:39.522810119 +0100 +++ pl-5.7.11/packages/xpce/pl/src/Makefile 2009-07-06 10:30:52.766810939 +0100 @@ -114,20 +114,8 @@ fi sopce$(XPCESO): - if [ "x$$LD_RUN_PATH" = "x" ]; then \ - LD_RUN_PATH="$(libdir)"; \ - else \ - LD_RUN_PATH="$(libdir):$$LD_RUN_PATH"; \ - fi; \ - export LD_RUN_PATH; \ $(PLLD) -shared $(SOITF) $(LDFLAGS) -L$(XLIB) -L$(LIBDIR) -lXPCE -o $(XPCESO); axpce$(XPCESO): - if [ "x$$LD_RUN_PATH" = "x" ]; then \ - LD_RUN_PATH="$(libdir)"; \ - else \ - LD_RUN_PATH="$(libdir):$$LD_RUN_PATH"; \ - fi; \ - export LD_RUN_PATH; \ $(PLLD) -shared $(LDFLAGS) $(SOITF) $(SOEXTR) -L$(LIBDIR) \ -lXPCE $(GCCLIB) -L$(XLIB) $(XLIBS) $(NETLIBS) -o $(XPCESO); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-11/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 25 Feb 2009 09:43:59 -0000 1.22 +++ .cvsignore 6 Jul 2009 11:15:21 -0000 1.23 @@ -1,3 +1,3 @@ -pl-5.7.6.tar.gz -HTMLmanual.tar.gz userguide.html.tgz +pl-5.7.11.tar.gz +SWI-Prolog-5.7.11.pdf Index: pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-11/pl.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- pl.spec 12 Jun 2009 22:46:23 -0000 1.59 +++ pl.spec 6 Jul 2009 11:15:22 -0000 1.60 @@ -2,8 +2,8 @@ %define jdkverlong %{jdkvershort}.0 Name: pl -Version: 5.7.6 -Release: 5%{?dist} +Version: 5.7.11 +Release: 1%{?dist} Summary: SWI-Prolog - Edinburgh compatible Prolog compiler @@ -11,14 +11,12 @@ Group: Development/Languages License: LGPLv2+ URL: http://www.swi-prolog.org Source: http://www.swi-prolog.org/download/devel/src/%{name}-%{version}.tar.gz -Source1: http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/refman/HTMLmanual.tar.gz -Source2: http://gollem.science.uva.nl/cgi-bin/nph-download/xpce/doc/userguide/userguide.html.tgz -Patch0: %{name}-5.4.6-rpath.patch -Patch1: %{name}-5.6.57-jpl-configure.patch -Patch2: %{name}-5.6.57-jpl-configure-alpha.patch +Source1: http://www.swi-prolog.org/download/devel/doc/SWI-Prolog-%{version}.pdf +Source2: http://www.swi-prolog.org/download/xpce/doc/userguide/userguide.html.tgz +Patch0: %{name}-5.7.11-rpath.patch +Patch1: %{name}-5.7.11-jpl-configure.patch +Patch2: %{name}-5.7.11-man-files.patch Patch3: %{name}-5.6.60-jni.patch -Patch4: %{name}-5.6.57-jpl-configure-s390x.patch -Patch5: pl-5.7.6-strndup-no-static.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gmp-devel @@ -103,19 +101,18 @@ in Prolog. In both setups it provides a %setup -q %patch0 -p1 -b .rpath %patch1 -p1 -b .libjvm -%patch2 -p1 -b .libjvm-alpha +%patch2 -p1 -b .man-files %patch3 -p1 -b .jni -%patch4 -p1 -b .libjvm-s390X -%patch5 -p1 -b .strndup-no-static ( mkdir doc-install cd doc-install - tar zxf %{SOURCE1} + cp -p %{SOURCE1} . ) ( mkdir xpce-doc cd xpce-doc tar zxf %{SOURCE2} + mv UserGuide xpce-UserGuide ) # Adjustments to take into account the new location of JNI stuff @@ -144,6 +141,14 @@ make COFLAGS="$RPM_OPT_FLAGS -fno-strict PATH=$PWD/src:$PATH cd packages %configure +cd clib/maildrop +for dir in rfc*; do +pushd $dir +%configure +sed --in-place=.pic -e 's/CFLAGS=/CFLAGS=-fPIC /' Makefile +popd +done +cd ../.. make COFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" JAVALIBS="-L$JAVA_LIB/server -L$JAVA_LIB -ljava -lverify -ljvm" cd .. @@ -178,6 +183,11 @@ mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{v rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/include rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/xpce-*/include +# Move the binaries into %{_bindir} directly instead of using links +rm -f $RPM_BUILD_ROOT%{_bindir}/* +mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin/*/* $RPM_BUILD_ROOT%{_bindir} +rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin + # Clean up the other stuff that shouldn't be packaged rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/man rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/doc @@ -243,6 +253,17 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 6 2009 Mary Ellen Foster - 5.7.11-1 +- Move binaries into /usr/bin directly to fix multilib issues +- Update to latest upstream release +- Use officially-distributed PDF documentation instead of HTML +- Unify Java patches +- Remove strndup package; they fixed it upstream +- Fix compilation of "maildrop" packages +- Give the xpce documentation directory a clearer name +- Removed the FILES section of the man page because it also caused + multilib conflicts (and was inaccurate anyway) + * Fri Jun 12 2009 Dennis Gilmore 5.7.6-5 -dont use a static definition for strndup Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 25 Feb 2009 09:43:59 -0000 1.22 +++ sources 6 Jul 2009 11:15:22 -0000 1.23 @@ -1,3 +1,3 @@ -2569fae9f1fa61ccd12cde9b0434b1c8 pl-5.7.6.tar.gz -1da5a1eab8c4577f1948540d28144a38 HTMLmanual.tar.gz a4462019611caa4f69247c8bf94404a7 userguide.html.tgz +b2bc17a08a462ee8168407b52c28bd40 pl-5.7.11.tar.gz +ba7ff9da608a3986867cecbae27f51dd SWI-Prolog-5.7.11.pdf --- pl-5.4.6-rpath.patch DELETED --- --- pl-5.6.0-multilib.patch DELETED --- --- pl-5.6.52-jni.patch DELETED --- --- pl-5.6.55-configure.patch DELETED --- --- pl-5.6.57-locale.patch DELETED --- --- pl-5.7.6-strndup-no-static.patch DELETED --- From mef at fedoraproject.org Mon Jul 6 11:18:40 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:18:40 +0000 (UTC) Subject: rpms/pl/devel pl-5.6.57-jpl-configure-alpha.patch, 1.1, NONE pl-5.6.57-jpl-configure-s390x.patch, 1.1, NONE pl-5.6.57-jpl-configure.patch, 1.1, NONE Message-ID: <20090706111840.847B611C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18023 Removed Files: pl-5.6.57-jpl-configure-alpha.patch pl-5.6.57-jpl-configure-s390x.patch pl-5.6.57-jpl-configure.patch Log Message: Remove a few more patches --- pl-5.6.57-jpl-configure-alpha.patch DELETED --- --- pl-5.6.57-jpl-configure-s390x.patch DELETED --- --- pl-5.6.57-jpl-configure.patch DELETED --- From mef at fedoraproject.org Mon Jul 6 11:18:57 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:18:57 +0000 (UTC) Subject: rpms/pl/F-11 pl-5.6.57-jpl-configure-alpha.patch, 1.1, NONE pl-5.6.57-jpl-configure-s390x.patch, 1.1, NONE pl-5.6.57-jpl-configure.patch, 1.1, NONE Message-ID: <20090706111857.E545311C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18103 Removed Files: pl-5.6.57-jpl-configure-alpha.patch pl-5.6.57-jpl-configure-s390x.patch pl-5.6.57-jpl-configure.patch Log Message: Remove a few more patches --- pl-5.6.57-jpl-configure-alpha.patch DELETED --- --- pl-5.6.57-jpl-configure-s390x.patch DELETED --- --- pl-5.6.57-jpl-configure.patch DELETED --- From mef at fedoraproject.org Mon Jul 6 11:22:13 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:22:13 +0000 (UTC) Subject: rpms/pl/F-10 pl.spec, 1.55, 1.56 pl-5.6.0-multilib.patch, 1.1, NONE pl-5.6.52-jni.patch, 1.1, NONE pl-5.6.55-configure.patch, 1.1, NONE pl-5.6.57-locale.patch, 1.1, NONE Message-ID: <20090706112213.D19F411C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18715 Modified Files: pl.spec Removed Files: pl-5.6.0-multilib.patch pl-5.6.52-jni.patch pl-5.6.55-configure.patch pl-5.6.57-locale.patch Log Message: Fix multilib issues; remove redundant patches Index: pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-10/pl.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- pl.spec 2 Mar 2009 14:36:39 -0000 1.55 +++ pl.spec 6 Jul 2009 11:21:43 -0000 1.56 @@ -2,21 +2,22 @@ %define jdkverlong %{jdkvershort}.0 Name: pl -Version: 5.6.60 -Release: 4%{?dist} +Version: 5.6.64 +Release: 2%{?dist} Summary: SWI-Prolog - Edinburgh compatible Prolog compiler Group: Development/Languages License: LGPLv2+ URL: http://www.swi-prolog.org -Source: http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/%{name}-%{version}.tar.gz -Source1: http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/refman/HTMLmanual.tar.gz -Source2: http://gollem.science.uva.nl/cgi-bin/nph-download/xpce/doc/userguide/userguide.html.tgz +Source: http://www.swi-prolog.org/download/stable/src/%{name}-%{version}.tar.gz +Source1: http://www.swi-prolog.org/download/stable/doc/SWI-Prolog-5.6.59.pdf +Source2: http://www.swi-prolog.org/download/xpce/doc/userguide/userguide.html.tgz Patch0: %{name}-5.4.6-rpath.patch Patch1: %{name}-5.6.57-jpl-configure.patch Patch2: %{name}-5.6.57-jpl-configure-alpha.patch Patch3: %{name}-5.6.60-jni.patch +Patch4: %{name}-5.7.11-man-files.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gmp-devel @@ -103,10 +104,11 @@ in Prolog. In both setups it provides a %patch1 -p1 -b .libjvm %patch2 -p1 -b .libjvm-alpha %patch3 -p1 -b .jni +%patch4 -p1 -b .man-files ( mkdir doc-install cd doc-install - tar zxf %{SOURCE1} + cp -p %{SOURCE1} . ) ( mkdir xpce-doc @@ -174,6 +176,11 @@ mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{v rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/include rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/xpce-*/include +# Move the binaries into %{_bindir} directly instead of using links +rm -f $RPM_BUILD_ROOT%{_bindir}/* +mv $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin/*/* $RPM_BUILD_ROOT%{_bindir} +rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/bin + # Clean up the other stuff that shouldn't be packaged rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/man rm -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-%{version}/doc @@ -239,6 +246,16 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 6 2009 Mary Ellen Foster - 5.6.64-2 +- Move binaries into /usr/bin directly to fix multilib issues +- Removed the FILES section of the man page because it also caused + multilib conflicts (and was inaccurate anyway) + +* Fri Jun 12 2009 Mary Ellen Foster - 5.6.64-1 +- Update to latest upstream 5.6.x release + - Fix many threading and other bugs; see ChangeLog for full details +- Switch to PDF manual because HTML version isn't available any more + * Mon Mar 02 2009 Dennis Gilmore - 5.6.60-4 - fix JAVA_HOME and JAVA_LIB for sparc arches --- pl-5.6.0-multilib.patch DELETED --- --- pl-5.6.52-jni.patch DELETED --- --- pl-5.6.55-configure.patch DELETED --- --- pl-5.6.57-locale.patch DELETED --- From mef at fedoraproject.org Mon Jul 6 11:25:07 2009 From: mef at fedoraproject.org (mef) Date: Mon, 6 Jul 2009 11:25:07 +0000 (UTC) Subject: rpms/pl/F-10 pl-5.7.11-man-files.patch, NONE, 1.1 .cvsignore, 1.22, 1.23 sources, 1.21, 1.22 Message-ID: <20090706112507.2753711C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/pl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19346 Modified Files: .cvsignore sources Added Files: pl-5.7.11-man-files.patch Log Message: Add final patch; update sources file pl-5.7.11-man-files.patch: --- NEW FILE pl-5.7.11-man-files.patch --- --- pl-5.7.11/src/pl.1.in.orig 2009-07-06 11:38:55.194810616 +0100 +++ pl-5.7.11/src/pl.1.in 2009-07-06 11:39:53.213766888 +0100 @@ -333,57 +333,6 @@ .BR apropos/1 and .BR explain/1. -.RE -.SH FILES -This installation of SWI-Prolog has been configured using the configure -option -.BI \-\-prefix= @prefix at . -If the files listed below are not at the indicated place, the installation -has probably been moved. Use -.TP -?- current_prolog_flag(home, Home). -.P -to find the local installation directory of SWI-Prolog. -.TP -.I .plrc -.TP -.I ~/.plrc -Personal initialisation files consulted by SWI-Prolog on startup. -If both exist -.I .plrc -is used. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/bin/@ARCH@/ -Location for the executables. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/include/ -Location for the include files. If writable, SWI-Prolog.h is also -copied to @prefix@/include/SWI-Prolog.h. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/library/ -SWI-Prolog user libraries. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot/ -SWI-Prolog kernel parts written in Prolog. The startup file - at prefix@/lib/@PL at -@PLVERSION@/boot32.prc may be recreated using -the command from the directory @prefix@/lib/@PL at -@PLVERSION@: -.RS -.TP -bin/@ARCH@/@PL@ -O -o boot32.prc -b boot/init.pl -.RE -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/doc/packages -HTML and/or PDF documentation on the installed add-ons. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/boot32.prc -Default startup file. This is a `intermediate code' file containing -precompiled code from the boot directory. The -.BI \-x bootfile -option may be used to select a different file. -.TP -.I @prefix@/lib/@PL at -@PLVERSION@/runtime/@ARCH@/libpl.a -SWI-Prolog library for embedding. See also -.I plld(1). .SH SEE ALSO .PP The SWI-Prolog web-home at @@ -393,9 +342,6 @@ .IR "SWI-Prolog Reference Manual" at .I http://gollem.science.uva.nl/SWI-Prolog/Manual/ .PP -Documentation on the add-on packages in -.I @prefix@/lib/@PL at -@PLVERSION@/boot/doc -.PP William\ F.\ Clocksin & Christopher\ S.\ Mellish, .IR "Programming in Prolog" , fourth edition, Springer Verlag, Berlin 1994. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-10/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 25 Feb 2009 12:10:13 -0000 1.22 +++ .cvsignore 6 Jul 2009 11:24:36 -0000 1.23 @@ -1,3 +1,3 @@ -pl-5.6.60.tar.gz -HTMLmanual.tar.gz +pl-5.6.64.tar.gz +SWI-Prolog-5.6.59.pdf userguide.html.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pl/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 19 Sep 2008 15:38:16 -0000 1.21 +++ sources 6 Jul 2009 11:24:36 -0000 1.22 @@ -1,3 +1,3 @@ -3e5c3d29d7c0f86351707c8d0415ac7b pl-5.6.60.tar.gz -f9957ad2fcdce7e02512e0fbdc66e41d HTMLmanual.tar.gz +2f06f64007fdac076a277ee4a8c53274 pl-5.6.64.tar.gz +dc10bc741030cc3848908b7d5443c7b2 SWI-Prolog-5.6.59.pdf a4462019611caa4f69247c8bf94404a7 userguide.html.tgz From gerd at fedoraproject.org Mon Jul 6 11:57:36 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Mon, 6 Jul 2009 11:57:36 +0000 (UTC) Subject: rpms/parrot/devel parrot-inst_files.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 import.log, 1.3, 1.4 parrot.spec, 1.3, 1.4 sources, 1.4, 1.5 parrot-install_files.patch, 1.1, NONE Message-ID: <20090706115736.BE4E711C02C8@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26223/devel Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-inst_files.patch Removed Files: parrot-install_files.patch Log Message: parrot-inst_files.patch: --- NEW FILE parrot-inst_files.patch --- --- tools/dev/install_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_files.pl 2009-06-02 16:12:00.000000000 +0200 @@ -133,7 +133,6 @@ transform => sub { my($filehash) = @_; $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, @@ -157,7 +156,7 @@ # libdir as it is typically done with automake installed packages. # If there is a use case to make this configurable we'll add a # seperate --pkgconfigdir option. - $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; + $filehash->{DestDirs} = ['pkgconfig']; return($filehash); }, }, --- tools/dev/install_dev_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_dev_files.pl 2009-06-02 16:19:07.000000000 +0200 @@ -124,7 +124,6 @@ my($filehash) = @_; $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, --- lib/Parrot/Install.pm 2009-06-01 09:29:57.000000000 +0200 +++ lib/Parrot/Install.pm 2009-06-03 08:41:22.000000000 +0200 @@ -220,6 +220,16 @@ else { next unless -e $src; next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not + if (-l $src) { + # check if the system supports symbolic linking + use Config; + if ($Config{d_symlink} && $Config{d_readlink}) { + # copy as symbolic link + symlink(readlink($src), $dest); + print "$dest\n"; + next; + } + } copy( $src, $dest ) or die "Error: couldn't copy $src to $dest: $!\n"; print "$dest\n"; } --- config/gen/config_pm/config_pir.in 2009-06-03 14:04:53.000000000 +0200 +++ config/gen/config_pm/config_pir.in 2009-06-05 12:19:12.000000000 +0200 @@ -49,7 +49,7 @@ $S0 = concat prefix, "/runtime" $I0 = stat $S0, .STAT_EXISTS if $I0 goto L1 - conf_file = prefix . "/lib at versiondir@/include/config.fpmc" + conf_file = "@libdir@@versiondir@/include/config.fpmc" goto L2 L1: conf_file = prefix . "/runtime/parrot/include/config.fpmc" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 26 May 2009 15:09:02 -0000 1.4 +++ .cvsignore 6 Jul 2009 11:57:06 -0000 1.5 @@ -1 +1 @@ -parrot-1.2.0.tar.gz +parrot-1.3.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 May 2009 15:09:02 -0000 1.3 +++ import.log 6 Jul 2009 11:57:06 -0000 1.4 @@ -1,3 +1,4 @@ parrot-1_0_0-6_fc10:HEAD:parrot-1.0.0-6.fc10.src.rpm:1240991349 parrot-1_1_0-1_38922svn_fc10:HEAD:parrot-1.1.0-1.38922svn.fc10.src.rpm:1242718694 parrot-1_2_0-1_fc11:HEAD:parrot-1.2.0-1.fc11.src.rpm:1243357683 +parrot-1_3_0-1_39897svn_fc10:HEAD:parrot-1.3.0-1.39897svn.fc10.src.rpm:1246881189 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/parrot.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- parrot.spec 26 May 2009 15:09:02 -0000 1.3 +++ parrot.spec 6 Jul 2009 11:57:06 -0000 1.4 @@ -1,18 +1,19 @@ Name: parrot -Version: 1.2.0 -Release: 1%{?dist} +Version: 1.3.0 +Release: 1.39897svn%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ -Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz +Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz +#Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz # Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} # Symlink: libparrot.so -> libparrot.so.%{version} # See for upstream: https://trac.parrot.org/parrot/ticket/509 # Extended for the package to have no subdirectory under pkgconfig -Patch0: parrot-install_files.patch +Patch0: parrot-inst_files.patch #Patch1: parrot-1.0.0-rpath-removal.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -119,6 +120,7 @@ chmod +x %{__perl_provides} --cxx=%{__cxx} \ --optimize="$RPM_OPT_FLAGS" \ --parrot_is_shared \ + --disable-rpath \ --lex=%{_bindir}/flex \ --yacc=%{_bindir}/yacc \ --libs='-lcurses -lm' @@ -257,6 +259,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pbc_to_exe %{_bindir}/pbc_dump %{_includedir}/parrot +%{_includedir}/pmc %{_libdir}/libparrot.so %exclude %{_libdir}/libparrot.a %{_libdir}/pkgconfig/* Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 26 May 2009 15:09:02 -0000 1.4 +++ sources 6 Jul 2009 11:57:06 -0000 1.5 @@ -1 +1 @@ -35b463700b3d2ec1f4dfcdbdf4cfbb5f parrot-1.2.0.tar.gz +803cfbd69a0260e93b894c7036e64d94 parrot-1.3.0.tar.gz --- parrot-install_files.patch DELETED --- From rhughes at fedoraproject.org Mon Jul 6 12:12:12 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 12:12:12 +0000 (UTC) Subject: rpms/gnome-packagekit/devel .cvsignore, 1.49, 1.50 gnome-packagekit-port-to-polkit1.patch, 1.2, 1.3 gnome-packagekit.spec, 1.90, 1.91 sources, 1.50, 1.51 Message-ID: <20090706121212.7501311C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-packagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29953 Modified Files: .cvsignore gnome-packagekit-port-to-polkit1.patch gnome-packagekit.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 2.27.3-1 - New upstream version - Lots of updated translations - Check for dependancies before downloading updates in the update viewer - Connect to gnome-session to get the idle status, not gnome-screensaver - Don't show a generic icon when we have messages - Use the newest filter by default in the update viewer - Run all the packages after install, not just the selected package - Fixes #506010, #507062, #508505, #509067, #509104 and #509636 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 25 Jun 2009 09:42:13 -0000 1.49 +++ .cvsignore 6 Jul 2009 12:11:41 -0000 1.50 @@ -1 +1 @@ -gnome-packagekit-2.27.3-20090625.tar.gz +gnome-packagekit-2.27.3.tar.gz gnome-packagekit-port-to-polkit1.patch: Index: gnome-packagekit-port-to-polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/gnome-packagekit-port-to-polkit1.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-packagekit-port-to-polkit1.patch 25 Jun 2009 09:42:13 -0000 1.2 +++ gnome-packagekit-port-to-polkit1.patch 6 Jul 2009 12:11:42 -0000 1.3 @@ -1,5 +1,5 @@ diff --git a/configure.ac b/configure.ac -index 9f0eadb..e6d8132 100644 +index 4e1a1e6..a94365e 100644 --- a/configure.ac +++ b/configure.ac @@ -88,7 +88,6 @@ DBUS_REQUIRED=1.1.2 @@ -50,10 +50,10 @@ index 2b8965e..e287290 100644 $(DEVKIT_LIBS) \ $(CANBERRA_LIBS) \ diff --git a/src/gpk-application.c b/src/gpk-application.c -index 501c55c..730c544 100644 +index ed36068..25681e1 100644 --- a/src/gpk-application.c +++ b/src/gpk-application.c -@@ -28,7 +28,6 @@ +@@ -29,7 +29,6 @@ #include #include #include @@ -62,7 +62,7 @@ index 501c55c..730c544 100644 #include "egg-debug.h" diff --git a/src/gpk-common.c b/src/gpk-common.c -index 101b752..6bda9de 100644 +index c226419..3a331d3 100644 --- a/src/gpk-common.c +++ b/src/gpk-common.c @@ -29,7 +29,6 @@ @@ -475,7 +475,7 @@ index 797fa40..3991b23 100644 G_OBJECT_CLASS (gpk_dbus_parent_class)->finalize (object); } diff --git a/src/gpk-watch.c b/src/gpk-watch.c -index 6a25c9d..cd5a1b1 100644 +index 887e703..9350af8 100644 --- a/src/gpk-watch.c +++ b/src/gpk-watch.c @@ -37,7 +37,6 @@ @@ -494,7 +494,7 @@ index 6a25c9d..cd5a1b1 100644 guint set_proxy_timeout; gchar *error_details; gboolean hide_warning; -@@ -786,15 +784,6 @@ gpk_watch_popup_menu_cb (GtkStatusIcon *status_icon, guint button, guint32 times +@@ -807,15 +805,6 @@ gpk_watch_popup_menu_cb (GtkStatusIcon *status_icon, guint button, guint32 times } /** @@ -510,7 +510,7 @@ index 6a25c9d..cd5a1b1 100644 * gpk_watch_menu_show_messages_cb: **/ static void -@@ -1226,6 +1215,15 @@ gpk_watch_menu_log_out_cb (GtkMenuItem *item, gpointer data) +@@ -1247,6 +1236,15 @@ gpk_watch_menu_log_out_cb (GtkMenuItem *item, gpointer data) } /** @@ -526,7 +526,7 @@ index 6a25c9d..cd5a1b1 100644 * gpk_watch_activate_status_cb: * @button: Which buttons are pressed * -@@ -1262,6 +1260,7 @@ gpk_watch_activate_status_cb (GtkStatusIcon *status_icon, GpkWatch *watch) +@@ -1283,6 +1281,7 @@ gpk_watch_activate_status_cb (GtkStatusIcon *status_icon, GpkWatch *watch) /* log out session */ if (watch->priv->restart == PK_RESTART_ENUM_SESSION) { @@ -534,7 +534,7 @@ index 6a25c9d..cd5a1b1 100644 widget = gtk_image_menu_item_new_with_mnemonic (_("_Log out")); image = gtk_image_new_from_icon_name ("system-log-out", GTK_ICON_SIZE_MENU); gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image); -@@ -1273,7 +1272,12 @@ gpk_watch_activate_status_cb (GtkStatusIcon *status_icon, GpkWatch *watch) +@@ -1294,7 +1293,12 @@ gpk_watch_activate_status_cb (GtkStatusIcon *status_icon, GpkWatch *watch) /* restart computer */ if (watch->priv->restart == PK_RESTART_ENUM_SYSTEM) { @@ -548,7 +548,7 @@ index 6a25c9d..cd5a1b1 100644 gtk_menu_shell_append (GTK_MENU_SHELL (menu), widget); show_hide = TRUE; } -@@ -1566,9 +1570,6 @@ gpk_watch_button_cancel_cb (GtkWidget *widget, GpkWatch *watch) +@@ -1587,9 +1591,6 @@ gpk_watch_button_cancel_cb (GtkWidget *widget, GpkWatch *watch) static void gpk_watch_init (GpkWatch *watch) { @@ -558,7 +558,7 @@ index 6a25c9d..cd5a1b1 100644 watch->priv = GPK_WATCH_GET_PRIVATE (watch); watch->priv->error_details = NULL; watch->priv->notification_cached_messages = NULL; -@@ -1633,23 +1634,6 @@ gpk_watch_init (GpkWatch *watch) +@@ -1654,23 +1655,6 @@ gpk_watch_init (GpkWatch *watch) if (pk_connection_valid (watch->priv->pconnection)) pk_connection_changed_cb (watch->priv->pconnection, TRUE, watch); @@ -582,7 +582,7 @@ index 6a25c9d..cd5a1b1 100644 /* watch proxy keys */ gconf_client_add_dir (watch->priv->gconf_client, GPK_WATCH_GCONF_PROXY_HTTP, GCONF_CLIENT_PRELOAD_NONE, NULL); -@@ -1698,7 +1682,6 @@ gpk_watch_finalize (GObject *object) +@@ -1719,7 +1703,6 @@ gpk_watch_finalize (GObject *object) g_object_unref (watch->priv->control); g_object_unref (watch->priv->pconnection); g_object_unref (watch->priv->gconf_client); Index: gnome-packagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/gnome-packagekit.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- gnome-packagekit.spec 25 Jun 2009 09:42:13 -0000 1.90 +++ gnome-packagekit.spec 6 Jul 2009 12:11:42 -0000 1.91 @@ -1,4 +1,4 @@ -%define packagekit_version 0.4.5 +%define packagekit_version 0.5.0 %define dbus_version 1.1.2 %define dbus_glib_version 0.73 %define glib2_version 2.18.0 @@ -15,13 +15,13 @@ Summary: Session applications to manage packages Name: gnome-packagekit Version: 2.27.3 -Release: 0.3.%{?alphatag}git%{?dist} -#Release: 1%{?dist} +#Release: 0.4.%{?alphatag}git%{?dist} +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.packagekit.org -#Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}.tar.gz -Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}-%{?alphatag}.tar.gz +Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}.tar.gz +#Source0: http://download.gnome.org/sources/gnome-packagekit/2.27/%{name}-%{version}-%{?alphatag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # from upstream polkit1 branch, automatically generated @@ -92,8 +92,8 @@ Requires: %{name} = %{version}-%{release Extra GNOME applications for using PackageKit that are not normally needed. %prep -%setup -q -n %{?name}-%{?version}-%{?alphatag} -#%setup -q +#%setup -q -n %{?name}-%{?version}-%{?alphatag} +%setup -q %patch0 -p1 -b .polkit1 # we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) @@ -228,6 +228,21 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/applications/gpk-service-pack.desktop %changelog +* Mon Jul 06 2009 Richard Hughes - 2.27.3-1 +- New upstream version + - Lots of updated translations + - Check for dependancies before downloading updates in the update viewer + - Connect to gnome-session to get the idle status, not gnome-screensaver + - Don't show a generic icon when we have messages + - Use the newest filter by default in the update viewer + - Run all the packages after install, not just the selected package +- Fixes #506010, #507062, #508505, #509067, #509104 and #509636 + +* Thu Jun 25 2009 Richard Hughes - 2.27.3-0.4.20090625git +- Don't build with GDK_MULTIHEAD_SAFE as it breaks ca_gtk_context_get with a + new libcanberra-gtk. Ifdefs probably required as ca_gtk_context_get_for_screen + is fairly new. + * Thu Jun 25 2009 Richard Hughes - 2.27.3-0.3.20090625git - Update to latest git master snapshot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 25 Jun 2009 09:42:13 -0000 1.50 +++ sources 6 Jul 2009 12:11:42 -0000 1.51 @@ -1 +1 @@ -dee4ce4f0087a7711e08bf0a79e35d34 gnome-packagekit-2.27.3-20090625.tar.gz +feb33ccbbed09413189ca62d4a1e8fd5 gnome-packagekit-2.27.3.tar.gz From rhughes at fedoraproject.org Mon Jul 6 12:16:36 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 12:16:36 +0000 (UTC) Subject: rpms/gnome-packagekit/F-11 .cvsignore, 1.47, 1.48 gnome-packagekit.spec, 1.86, 1.87 sources, 1.48, 1.49 Message-ID: <20090706121636.6660511C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-packagekit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30929 Modified Files: .cvsignore gnome-packagekit.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 2.27.3-1 - New upstream version - Lots of updated translations - Check for dependancies before downloading updates in the update viewer - Connect to gnome-session to get the idle status, not gnome-screensaver - Don't show a generic icon when we have messages - Use the newest filter by default in the update viewer - Run all the packages after install, not just the selected package - Fixes #506010, #507062, #508505, #509067, #509104 and #509636 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/F-11/.cvsignore,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- .cvsignore 1 Jun 2009 10:20:41 -0000 1.47 +++ .cvsignore 6 Jul 2009 12:16:36 -0000 1.48 @@ -1 +1 @@ -gnome-packagekit-2.27.2.tar.gz +gnome-packagekit-2.27.3.tar.gz Index: gnome-packagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/F-11/gnome-packagekit.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- gnome-packagekit.spec 1 Jun 2009 10:20:41 -0000 1.86 +++ gnome-packagekit.spec 6 Jul 2009 12:16:36 -0000 1.87 @@ -1,4 +1,4 @@ -%define packagekit_version 0.4.5 +%define packagekit_version 0.4.8 %define dbus_version 1.1.2 %define dbus_glib_version 0.73 %define glib2_version 2.18.0 @@ -14,7 +14,7 @@ Summary: Session applications to manage packages Name: gnome-packagekit -Version: 2.27.2 +Version: 2.27.3 #Release: 0.2.%{?alphatag}git%{?dist} Release: 1%{?dist} License: GPLv2+ @@ -220,6 +220,16 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/applications/gpk-service-pack.desktop %changelog +* Mon Jul 06 2009 Richard Hughes - 2.27.3-1 +- New upstream version + - Lots of updated translations + - Check for dependancies before downloading updates in the update viewer + - Connect to gnome-session to get the idle status, not gnome-screensaver + - Don't show a generic icon when we have messages + - Use the newest filter by default in the update viewer + - Run all the packages after install, not just the selected package +- Fixes #506010, #507062, #508505, #509067, #509104 and #509636 + * Mon Jun 01 2009 Richard Hughes - 2.27.2-1 - New upstream version - Lots of translation updates Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/F-11/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 1 Jun 2009 10:20:41 -0000 1.48 +++ sources 6 Jul 2009 12:16:36 -0000 1.49 @@ -1 +1 @@ -f9811f51567280e13d61547387503303 gnome-packagekit-2.27.2.tar.gz +feb33ccbbed09413189ca62d4a1e8fd5 gnome-packagekit-2.27.3.tar.gz From limb at fedoraproject.org Mon Jul 6 12:31:08 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Mon, 6 Jul 2009 12:31:08 +0000 (UTC) Subject: rpms/xmoto/F-10 xmoto-0.5.0-helpers-log-include.patch, NONE, 1.1 xmoto-0.5.0-helpers-text-includes.patch, NONE, 1.1 xmoto-0.5.0-xmargs-include.patch, NONE, 1.1 sources, 1.14, 1.15 xmoto-0.4.2-initode.patch, 1.3, 1.4 xmoto-0.4.2-opengldepth.patch, 1.1, 1.2 xmoto.spec, 1.48, 1.49 Message-ID: <20090706123108.183FE11C02C8@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/xmoto/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1331 Modified Files: sources xmoto-0.4.2-initode.patch xmoto-0.4.2-opengldepth.patch xmoto.spec Added Files: xmoto-0.5.0-helpers-log-include.patch xmoto-0.5.0-helpers-text-includes.patch xmoto-0.5.0-xmargs-include.patch Log Message: Update to 0.5.1, BZ 509674 xmoto-0.5.0-helpers-log-include.patch: --- NEW FILE xmoto-0.5.0-helpers-log-include.patch --- --- src/helpers/Log.cpp.orig 2009-02-23 12:42:15.000000000 -0600 +++ src/helpers/Log.cpp 2009-02-23 12:42:15.000000000 -0600 @@ -25,0 +26 @@ +#include xmoto-0.5.0-helpers-text-includes.patch: --- NEW FILE xmoto-0.5.0-helpers-text-includes.patch --- --- src/helpers/Text.cpp.orig 2009-02-23 12:32:09.000000000 -0600 +++ src/helpers/Text.cpp 2009-02-23 12:32:10.000000000 -0600 @@ -21,0 +22 @@ +#include xmoto-0.5.0-xmargs-include.patch: --- NEW FILE xmoto-0.5.0-xmargs-include.patch --- --- src/XMArgs.cpp.orig 2009-02-23 12:17:49.000000000 -0600 +++ src/XMArgs.cpp 2009-02-23 12:17:49.000000000 -0600 @@ -26,0 +27 @@ +#include Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xmoto/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 19 Mar 2008 00:00:01 -0000 1.14 +++ sources 6 Jul 2009 12:31:07 -0000 1.15 @@ -1 +1 @@ -15368b282641a225b71c279fe4dc0dc4 xmoto-0.4.2-src.tar.gz +10cb822ec8c2c7e9466806633e69be1f xmoto-0.5.1-src.tar.gz xmoto-0.4.2-initode.patch: Index: xmoto-0.4.2-initode.patch =================================================================== RCS file: /cvs/pkgs/rpms/xmoto/F-10/xmoto-0.4.2-initode.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xmoto-0.4.2-initode.patch 30 Jan 2009 18:06:40 -0000 1.3 +++ xmoto-0.4.2-initode.patch 6 Jul 2009 12:31:07 -0000 1.4 @@ -1,11 +1,11 @@ ---- src/GameInit.cpp 2008-09-30 07:37:22.000000000 -0500 -+++ src/GameInit.cpp 2008-09-30 07:37:22.000000000 -0500 -@@ -57,6 +57,8 @@ - #else - int main(int nNumArgs, char **ppcArgs) { - #endif -+ /* Init ODE -jciesla, 9/30/08, Fedora */ +diff -up xmoto-0.4.2/src/xmscene/BikePlayer.cpp~ xmoto-0.4.2/src/xmscene/BikePlayer.cpp +--- xmoto-0.4.2/src/xmscene/BikePlayer.cpp~ 2008-10-15 14:13:13.000000000 +0200 ++++ xmoto-0.4.2/src/xmscene/BikePlayer.cpp 2008-10-15 14:35:10.000000000 +0200 +@@ -146,6 +146,7 @@ void PlayerBiker::initPhysics(Vector2f i + m_bFirstPhysicsUpdate = true; + + /* Setup ODE */ + dInitODE(); - /* Start application */ - try { - /* Setup basic info */ + m_WorldID = dWorldCreate(); + dWorldSetERP(m_WorldID,PHYS_WORLD_ERP); + dWorldSetCFM(m_WorldID,PHYS_WORLD_CFM); xmoto-0.4.2-opengldepth.patch: Index: xmoto-0.4.2-opengldepth.patch =================================================================== RCS file: /cvs/pkgs/rpms/xmoto/F-10/xmoto-0.4.2-opengldepth.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xmoto-0.4.2-opengldepth.patch 30 Jan 2009 16:57:06 -0000 1.1 +++ xmoto-0.4.2-opengldepth.patch 6 Jul 2009 12:31:07 -0000 1.2 @@ -1,22 +1,13 @@ ---- src/drawlib/DrawLibOpenGL.cpp 2008-03-18 19:33:33.000000000 +0200 -+++ src/drawlib/DrawLibOpenGL.cpp~ 2009-01-25 17:06:46.000000000 +0200 -@@ -267,19 +267,10 @@ - - m_nDispBPP=pVidInfo->vfmt->BitsPerPixel; - +--- src/drawlib/DrawLibOpenGL.cpp~ 2009-02-02 09:37:16.000000000 -0600 ++++ src/drawlib/DrawLibOpenGL.cpp 2009-02-02 09:37:16.000000000 -0600 +@@ -275,6 +274,0 @@ - /* Did we get a z-buffer? */ - int nDepthBits; -- SDL_GL_GetAttribute(SDL_GL_DEPTH_SIZE,&nDepthBits); +- SDL_GL_GetAttribute(SDL_GL_DEPTH_SIZE, &nDepthBits); - if(nDepthBits == 0) - throw Exception("no depth buffer"); - - m_menuCamera = new Camera(Vector2i(0,0), - Vector2i(m_nDispWidth,m_nDispHeight)); - m_menuCamera->setCamera2d(); - +@@ -285,3 +278,0 @@ - glClearDepth(1); - glDepthFunc(GL_LEQUAL); -- - /* Output some general info */ - Logger:: Log("GL: %s (%s)",glGetString(GL_RENDERER),glGetString(GL_VENDOR)); - if(glGetString(GL_RENDERER) == NULL || +- Index: xmoto.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmoto/F-10/xmoto.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- xmoto.spec 17 Feb 2009 20:57:37 -0000 1.48 +++ xmoto.spec 6 Jul 2009 12:31:07 -0000 1.49 @@ -1,7 +1,6 @@ -%define _default_patch_fuzz 2 Name: xmoto -Version: 0.4.2 -Release: 6%{?dist} +Version: 0.5.1 +Release: 0%{?dist} Summary: Challenging 2D Motocross Platform Game Group: Amusements/Games @@ -12,12 +11,14 @@ Source1: xmoto.desktop Source2: xmoto.png #Patch0: xmoto-man.patch Patch1: xmoto-0.3.4-Environment-cstlib.patch -Patch2: xmoto-0.3.4-Scene-collisioninclude.patch +#Patch2: xmoto-0.3.4-Scene-collisioninclude.patch Patch3: xmoto-0.4.0-Environment-string.patch -Patch4: xmoto-0.4.0-DrawLib-hashmap.patch -Patch5: xmoto-0.4.2-initode.patch -Patch6: xmoto-0.4.2-opengldepth.patch -Patch7: xmoto-0.4.2-closeode.patch +#Patch4: xmoto-0.4.0-DrawLib-hashmap.patch +#Patch5: xmoto-0.4.2-initode.patch +#Patch6: xmoto-0.4.2-opengldepth.patch +Patch7: xmoto-0.5.0-xmargs-include.patch +Patch8: xmoto-0.5.0-helpers-text-includes.patch +Patch9: xmoto-0.5.0-helpers-log-include.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -32,6 +33,13 @@ BuildRequires: libjpeg-devel BuildRequires: libpng-devel BuildRequires: bzip2-devel BuildRequires: sqlite-devel +BuildRequires: SDL_net-devel +%if "0%{?dist}" == "0.fc10" +Requires: dejavu-fonts +%else +Requires: dejavu-sans-fonts +%endif + %description X-Moto is a challenging 2D motocross platform game, where physics play an all @@ -46,12 +54,14 @@ yourself and others, racing against the %setup -q #%patch %patch1 -p0 -%patch2 -p0 +#%patch2 -p0 %patch3 -p0 -%patch4 -p0 -%patch5 -p0 -%patch6 -p0 +#%patch4 -p0 +#%patch5 -p1 +#%patch6 -p0 %patch7 -p0 +%patch8 -p0 +%patch9 -p0 #fix encoding sed -i 's/\r//' src/xmscene/Camera.cpp @@ -59,6 +69,12 @@ sed -i 's/\r//' src/xmscene/Camera.h #fix permissions chmod 644 src/xmscene/Camera.* +chmod -x src/*.cpp +chmod -x src/*.h +chmod -x src/*/*.cpp +chmod -x src/*/*.h +chmod -x src/*/*/*.cpp +chmod -x src/*/*/*.h %build %configure --with-enable-zoom=1 @@ -75,6 +91,9 @@ cp %{SOURCE2} $RPM_BUILD_ROOT%{_datadir} desktop-file-install --vendor fedora --dir $RPM_BUILD_ROOT%{_datadir}/applications --add-category X-Fedora %{SOURCE1} +rm $RPM_BUILD_ROOT%{_datadir}/xmoto/Textures/Fonts/DejaVuSans.ttf +ln -s ../../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/xmoto/Textures/Fonts/DejaVuSans.ttf + # Locale files %find_lang %{name} %{name}.lang @@ -104,12 +123,28 @@ fi %{_mandir}/man6/xmoto.6.gz %changelog -* Tue Feb 17 2009 Jon Ciesla 0.4.2-6 -- Fix for ode call crash, BZ 484493. +* Tue Apr 14 2009 Jon Ciesla 0.5.1-0 +- New upstream. +- Dropped opengldepth patch, applied upstream. -* Mon Jan 26 2009 Jon Ciesla 0.4.2-5 +* Mon Feb 23 2009 Jon Ciesla 0.5.0-6 +- Patch for includes. + +* Mon Feb 02 2009 Jon Ciesla 0.5.0-5 - Fix for ati crash, BZ 481485. -- De-fuzz patches. + +* Tue Jan 20 2009 Jon Ciesla 0.5.0-4 +- Font requires change for BZ 480480, dejavu rename. + +* Tue Dec 30 2008 Jon Ciesla 0.5.0-3 +- Symlink to system font, BZ 477485. +- Dropped extension from icon in .desktop. + +* Wed Dec 10 2008 Jon Ciesla 0.5.0-2 +- No remaining fuzzy patches, dropping patch fuzz workaround. + +* Mon Dec 01 2008 Jon Ciesla 0.5.0-1 +- Update to 0.5.0. * Wed Oct 15 2008 Hans de Goede 0.4.2-4 - Fix crash caused by using new ode (bz 466738) From rdieter at fedoraproject.org Mon Jul 6 12:37:32 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 12:37:32 +0000 (UTC) Subject: rpms/koffice/devel koffice.spec,1.109,1.110 Message-ID: <20090706123732.4B4B911C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/koffice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3355 Modified Files: koffice.spec Log Message: use external lilypad fonts only where available (ie, F-11+) Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/devel/koffice.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- koffice.spec 1 Jul 2009 15:15:47 -0000 1.109 +++ koffice.spec 6 Jul 2009 12:37:31 -0000 1.110 @@ -5,10 +5,14 @@ #define kivio 1 #define kugar 1 +%if 0%{?fedora} > 10 +%define external_lilypond_fonts 1 +%endif + Name: koffice Epoch: 2 Version: 2.0.1 -Release: 2%{?dist} +Release: 2%{?dist}.1 Summary: An integrated office suite Group: Applications/Productivity @@ -105,7 +109,9 @@ KOffice is an integrated office suite. %package core Summary: Core support files for koffice Group: Applications/Productivity +%if 0%{?external_lilypond_fonts} Requires: lilypond-emmentaler-fonts +%endif Requires: %{name}-libs = %{epoch}:%{version}-%{release} %if ! 0%{?kchart} Obsoletes: koffice-kchart < %{epoch}:%{version}-%{release} @@ -288,7 +294,9 @@ make install/fast DESTDIR=%{buildroot} - # unpackaged files # fonts +%if 0%{?external_lilypond_fonts} rm -fv %{buildroot}%{_kde4_appsdir}/musicshape/fonts/Emmentaler-14.ttf +%endif # conflicts with oxygen-icon-theme rm -fv %{buildroot}%{_kde4_iconsdir}/oxygen/16x16/actions/format-justify-{center,fill,left,right}.png rm -fv %{buildroot}%{_kde4_iconsdir}/oxygen/16x16/actions/format-text-{bold,italic,underline}.png From rhughes at fedoraproject.org Mon Jul 6 12:37:27 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 12:37:27 +0000 (UTC) Subject: rpms/DeviceKit-power/devel .cvsignore, 1.13, 1.14 DeviceKit-power-port-to-polkit1.patch, 1.1, 1.2 DeviceKit-power.spec, 1.18, 1.19 sources, 1.13, 1.14 Message-ID: <20090706123727.95DF711C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/DeviceKit-power/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3245 Modified Files: .cvsignore DeviceKit-power-port-to-polkit1.patch DeviceKit-power.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 009-1 - Update to 009 - Fixes many problems with multi-battery laptops - Use pm-powersave like HAL used to - Fix detecting UPS devices - Add support for recalled laptop batteries Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 16 Jun 2009 08:10:11 -0000 1.13 +++ .cvsignore 6 Jul 2009 12:36:57 -0000 1.14 @@ -1 +1 @@ -DeviceKit-power-009-20090616.tar.gz +DeviceKit-power-009.tar.gz DeviceKit-power-port-to-polkit1.patch: Index: DeviceKit-power-port-to-polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/DeviceKit-power-port-to-polkit1.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- DeviceKit-power-port-to-polkit1.patch 16 Jun 2009 10:15:55 -0000 1.1 +++ DeviceKit-power-port-to-polkit1.patch 6 Jul 2009 12:36:57 -0000 1.2 @@ -1,8 +1,8 @@ diff --git a/configure.ac b/configure.ac -index 699f3bf..1ac5e3a 100644 +index 042c843..b1cff83 100644 --- a/configure.ac +++ b/configure.ac -@@ -143,9 +143,9 @@ PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.76]) +@@ -157,9 +157,9 @@ PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.76]) AC_SUBST(DBUS_GLIB_CFLAGS) AC_SUBST(DBUS_GLIB_LIBS) @@ -37,10 +37,10 @@ index 041aae2..df0be71 100644 org.freedesktop.devicekit.power.policy.in \ org.freedesktop.devicekit.power.qos.policy.in diff --git a/src/Makefile.am b/src/Makefile.am -index daffad1..2e08a25 100644 +index 14f68de..7f34925 100644 --- a/src/Makefile.am +++ b/src/Makefile.am -@@ -19,7 +19,7 @@ INCLUDES = \ +@@ -20,7 +20,7 @@ INCLUDES = \ -I$(top_srcdir) \ $(GIO_CFLAGS) \ $(DBUS_GLIB_CFLAGS) \ @@ -49,7 +49,7 @@ index daffad1..2e08a25 100644 $(DEVKIT_CFLAGS) \ $(GLIB_CFLAGS) -@@ -90,7 +90,7 @@ devkit_power_daemon_LDADD = \ +@@ -91,7 +91,7 @@ devkit_power_daemon_LDADD = \ $(USB_LIBS) \ $(GIO_LIBS) \ $(DBUS_GLIB_LIBS) \ @@ -59,10 +59,10 @@ index daffad1..2e08a25 100644 $(DEVKIT_LIBS) diff --git a/src/dkp-daemon.c b/src/dkp-daemon.c -index de26291..912ad88 100644 +index 895b769..59a6e84 100644 --- a/src/dkp-daemon.c +++ b/src/dkp-daemon.c -@@ -715,15 +715,15 @@ dkp_daemon_suspend (DkpDaemon *daemon, DBusGMethodInvocation *context) +@@ -750,15 +750,15 @@ dkp_daemon_suspend (DkpDaemon *daemon, DBusGMethodInvocation *context) gboolean ret; GError *error; GError *error_local = NULL; @@ -82,7 +82,7 @@ index de26291..912ad88 100644 goto out; ret = g_spawn_command_line_sync ("/usr/sbin/pm-suspend", &stdout, &stderr, NULL, &error_local); -@@ -739,8 +739,8 @@ dkp_daemon_suspend (DkpDaemon *daemon, DBusGMethodInvocation *context) +@@ -774,8 +774,8 @@ dkp_daemon_suspend (DkpDaemon *daemon, DBusGMethodInvocation *context) out: g_free (stdout); g_free (stderr); @@ -93,7 +93,7 @@ index de26291..912ad88 100644 return TRUE; } -@@ -753,15 +753,15 @@ dkp_daemon_hibernate (DkpDaemon *daemon, DBusGMethodInvocation *context) +@@ -788,15 +788,15 @@ dkp_daemon_hibernate (DkpDaemon *daemon, DBusGMethodInvocation *context) gboolean ret; GError *error; GError *error_local = NULL; @@ -113,7 +113,7 @@ index de26291..912ad88 100644 goto out; ret = g_spawn_command_line_sync ("/usr/sbin/pm-hibernate", &stdout, &stderr, NULL, &error_local); -@@ -777,8 +777,8 @@ dkp_daemon_hibernate (DkpDaemon *daemon, DBusGMethodInvocation *context) +@@ -812,8 +812,8 @@ dkp_daemon_hibernate (DkpDaemon *daemon, DBusGMethodInvocation *context) out: g_free (stdout); g_free (stderr); @@ -138,7 +138,7 @@ index f3492ca..ce4725f 100644 G_BEGIN_DECLS diff --git a/src/dkp-device.c b/src/dkp-device.c -index cd93775..41bfb7a 100644 +index 8ea4060..bf169d8 100644 --- a/src/dkp-device.c +++ b/src/dkp-device.c @@ -32,7 +32,6 @@ @@ -150,7 +150,7 @@ index cd93775..41bfb7a 100644 #include "sysfs-utils.h" #include "egg-debug.h" diff --git a/src/dkp-device.h b/src/dkp-device.h -index 15bcea2..55aaf80 100644 +index b85f80d..dec84a4 100644 --- a/src/dkp-device.h +++ b/src/dkp-device.h @@ -23,7 +23,7 @@ @@ -163,7 +163,7 @@ index 15bcea2..55aaf80 100644 #include diff --git a/src/dkp-polkit.c b/src/dkp-polkit.c -index 101b84a..ca00936 100644 +index 0eb95d9..ca00936 100644 --- a/src/dkp-polkit.c +++ b/src/dkp-polkit.c @@ -29,7 +29,6 @@ @@ -238,11 +238,11 @@ index 101b84a..ca00936 100644 } /** -- * gpk_polkit_dbus_filter: +- * dkp_polkit_dbus_filter: + * dkp_polkit_check_auth: **/ -static DBusHandlerResult --gpk_polkit_dbus_filter (DBusConnection *connection, DBusMessage *message, void *user_data) +-dkp_polkit_dbus_filter (DBusConnection *connection, DBusMessage *message, void *user_data) +gboolean +dkp_polkit_check_auth (DkpPolkit *polkit, PolkitSubject *subject, const gchar *action_id, DBusGMethodInvocation *context) { @@ -468,7 +468,7 @@ index 101b84a..ca00936 100644 - goto out; - } - -- if (!dbus_connection_add_filter (connection, gpk_polkit_dbus_filter, polkit, NULL)) { +- if (!dbus_connection_add_filter (connection, dkp_polkit_dbus_filter, polkit, NULL)) { - egg_warning ("Cannot add D-Bus filter: %s: %s", dbus_error.name, dbus_error.message); - goto out; - } Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/DeviceKit-power.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- DeviceKit-power.spec 16 Jun 2009 10:58:31 -0000 1.18 +++ DeviceKit-power.spec 6 Jul 2009 12:36:57 -0000 1.19 @@ -9,13 +9,13 @@ Summary: Power Management Service Name: DeviceKit-power Version: 009 -Release: 0.4.%{?alphatag}git%{?dist} -#Release: 1%{?dist} +#Release: 0.4.%{?alphatag}git%{?dist} +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit.git;a=summary -Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz -#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz +#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz +Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # from upstream polkit1 branch, automatically generated @@ -58,14 +58,12 @@ Requires: %{name} = %{version}-%{release Headers and libraries for DeviceKit-power. %prep -#%setup -q -%setup -q -n %{?name}-%{?version}-%{?alphatag} +%setup -q +#%setup -q -n %{?name}-%{?version}-%{?alphatag} %patch0 -p1 -b .polkit1 # we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) -aclocal -autoconf -automake +autoreconf %build %configure @@ -102,7 +100,7 @@ rm -rf $RPM_BUILD_ROOT %dir %{_includedir}/DeviceKit-power/devkit-power-gobject %{_includedir}/DeviceKit-power/devkit-power-gobject/*.h %{_sysconfdir}/dbus-1/system.d/*.conf -%{_sysconfdir}/udev/rules.d/*.rules +/lib/udev/rules.d/*.rules %dir %{_localstatedir}/lib/DeviceKit-power %{_bindir}/* %{_libexecdir}/* @@ -123,8 +121,15 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jul 06 2009 Richard Hughes - 009-1 +- Update to 009 +- Fixes many problems with multi-battery laptops +- Use pm-powersave like HAL used to +- Fix detecting UPS devices +- Add support for recalled laptop batteries + * Tue Jun 16 2009 Richard Hughes - 009-0.4.20090616git -- Do aclocal as well due to different values of automake on koji. +- Do autoreconf as well due to different values of automake on koji. * Tue Jun 16 2009 Richard Hughes - 009-0.3.20090616git - Do autoconf and automake as the polkit patch is pretty invasive Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 16 Jun 2009 08:10:11 -0000 1.13 +++ sources 6 Jul 2009 12:36:57 -0000 1.14 @@ -1 +1 @@ -5e1fa469f6ad582e54272e1252db0311 DeviceKit-power-009-20090616.tar.gz +535703fa7b9c323d6388b5aff28cfeeb DeviceKit-power-009.tar.gz From rhughes at fedoraproject.org Mon Jul 6 12:44:01 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 12:44:01 +0000 (UTC) Subject: rpms/DeviceKit-power/F-11 .cvsignore, 1.10, 1.11 DeviceKit-power.spec, 1.13, 1.14 sources, 1.10, 1.11 Message-ID: <20090706124401.68C3A11C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/DeviceKit-power/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4560 Modified Files: .cvsignore DeviceKit-power.spec sources Log Message: * Mon Jul 06 2009 Richard Hughes - 009-1 - Update to 009 - Fixes many problems with multi-battery laptops - Use pm-powersave like HAL used to - Fix detecting UPS devices - Add support for recalled laptop batteries Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Jun 2009 10:59:32 -0000 1.10 +++ .cvsignore 6 Jul 2009 12:43:31 -0000 1.11 @@ -1 +1 @@ -DeviceKit-power-008.tar.gz +DeviceKit-power-009.tar.gz Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/DeviceKit-power.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- DeviceKit-power.spec 1 Jun 2009 10:59:32 -0000 1.13 +++ DeviceKit-power.spec 6 Jul 2009 12:43:31 -0000 1.14 @@ -8,7 +8,7 @@ Summary: Power Management Service Name: DeviceKit-power -Version: 008 +Version: 009 #Release: 0.3.%{?alphatag}git%{?dist} Release: 1%{?dist} License: GPLv2+ @@ -89,7 +89,7 @@ rm -rf $RPM_BUILD_ROOT %dir %{_includedir}/DeviceKit-power/devkit-power-gobject %{_includedir}/DeviceKit-power/devkit-power-gobject/*.h %{_sysconfdir}/dbus-1/system.d/*.conf -%{_sysconfdir}/udev/rules.d/*.rules +/lib/udev/rules.d/*.rules %dir %{_localstatedir}/lib/DeviceKit-power %{_bindir}/* %{_libexecdir}/* @@ -110,6 +110,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jul 06 2009 Richard Hughes - 009-1 +- Update to 009 +- Fixes many problems with multi-battery laptops +- Use pm-powersave like HAL used to +- Fix detecting UPS devices +- Add support for recalled laptop batteries + * Mon Jun 01 2009 Richard Hughes 008-1 - Update to 008 - Fixes #497563 and #495493 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Jun 2009 10:59:32 -0000 1.10 +++ sources 6 Jul 2009 12:43:31 -0000 1.11 @@ -1 +1 @@ -37ae30623524d4f476790079930049c8 DeviceKit-power-008.tar.gz +535703fa7b9c323d6388b5aff28cfeeb DeviceKit-power-009.tar.gz From rdieter at fedoraproject.org Mon Jul 6 12:59:35 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 12:59:35 +0000 (UTC) Subject: rpms/digikam/devel .cvsignore, 1.33, 1.34 digikam.spec, 1.89, 1.90 sources, 1.33, 1.34 Message-ID: <20090706125935.5168E11C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/digikam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7287 Modified Files: .cvsignore digikam.spec sources Log Message: * Mon Jul 06 2009 Rex Dieter - 1.0.0-0.2.beta2 - digikam-1.0.0-beta2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 16 Jun 2009 12:50:50 -0000 1.33 +++ .cvsignore 6 Jul 2009 12:59:04 -0000 1.34 @@ -1 +1 @@ -digikam-1.0.0-beta1.tar.bz2 +digikam-1.0.0-beta2.tar.bz2 Index: digikam.spec =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/digikam.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- digikam.spec 16 Jun 2009 12:50:50 -0000 1.89 +++ digikam.spec 6 Jul 2009 12:59:04 -0000 1.90 @@ -1,9 +1,9 @@ -%define pre beta1 +%define pre beta2 Name: digikam Version: 1.0.0 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} Summary: A digital camera accessing & photo management application Group: Applications/Multimedia @@ -153,6 +153,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Rex Dieter - 1.0.0-0.2.beta2 +- digikam-1.0.0-beta2 + * Fri Jun 12 2009 Rex Dieter - 1.0.0-0.1.beta1 - digikam-1.0.0-beta1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 16 Jun 2009 12:50:50 -0000 1.33 +++ sources 6 Jul 2009 12:59:05 -0000 1.34 @@ -1 +1 @@ -6c0fd6fe7bb4d8a5f00c9a165c7b9309 digikam-1.0.0-beta1.tar.bz2 +96efe4ed99e5d89bf82d3a2a740d6901 digikam-1.0.0-beta2.tar.bz2 From spot at fedoraproject.org Mon Jul 6 13:15:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 6 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/pydot/devel pydot-need-quote.patch, NONE, 1.1 pydot.spec, 1.7, 1.8 Message-ID: <20090706131520.88B6B11C049A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/pydot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11013/devel Modified Files: pydot.spec Added Files: pydot-need-quote.patch Log Message: fix bugzilla 481540 pydot-need-quote.patch: --- NEW FILE pydot-need-quote.patch --- diff -up pydot-1.0.2/pydot.py.unicode pydot-1.0.2/pydot.py --- pydot-1.0.2/pydot.py.unicode 2009-05-29 00:49:51.313446126 -0700 +++ pydot-1.0.2/pydot.py 2009-05-29 00:50:28.002459128 -0700 @@ -150,29 +150,17 @@ def needs_quotes( s ): If the string is one of the reserved keywords it will need quotes too. """ - + # All keywords must be quoted if s in dot_keywords: - return False - - chars = [ord(c) for c in s if ord(c)>0x7f or ord(c)==0] - if chars: - return False - - res = id_re_alpha_nums.match(s) - if not res: - res = id_re_num.match(s) - if not res: - res = id_re_dbl_quoted.match(s) - if not res: - res = id_re_html.match(s) - if not res: - res = id_re_with_port.match(s) - - if not res: return True - return False + # If any of these regexes match, then the string does not need quoting + if (id_re_alpha_nums.match(s) or id_re_num.match(s) or + id_re_dbl_quoted.match(s) or id_re_html.match(s) or + id_re_with_port.match(s)): + return False + return True def quote_if_necessary(s): Index: pydot.spec =================================================================== RCS file: /cvs/extras/rpms/pydot/devel/pydot.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pydot.spec 26 Feb 2009 19:52:30 -0000 1.7 +++ pydot.spec 6 Jul 2009 13:14:50 -0000 1.8 @@ -2,12 +2,15 @@ Name: pydot Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries Summary: Python interface to Graphviz's Dot language URL: http://code.google.com/p/pydot/ Source0: http://pydot.googlecode.com/files/pydot-%{version}.tar.gz +# Fix bugzilla 481540, sent upstream in Issue 23 +# http://code.google.com/p/pydot/issues/detail?id=23 +Patch0: pydot-need-quote.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pyparsing python-devel Requires: graphviz, pyparsing @@ -24,6 +27,7 @@ tools dot, neato, twopi. %prep %setup -q +%patch0 -p1 -b .need-quote %build %{__python} setup.py build @@ -44,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Mon Jul 6 2009 Tom "spot" Callaway - 1.0.2-4 +- fix pydot crash with accented character (bugzilla 481540) + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From spot at fedoraproject.org Mon Jul 6 13:15:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 6 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/pydot/F-10 pydot-need-quote.patch,NONE,1.1 pydot.spec,1.5,1.6 Message-ID: <20090706131520.3182211C02C8@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/pydot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11013/F-10 Modified Files: pydot.spec Added Files: pydot-need-quote.patch Log Message: fix bugzilla 481540 pydot-need-quote.patch: --- NEW FILE pydot-need-quote.patch --- diff -up pydot-1.0.2/pydot.py.unicode pydot-1.0.2/pydot.py --- pydot-1.0.2/pydot.py.unicode 2009-05-29 00:49:51.313446126 -0700 +++ pydot-1.0.2/pydot.py 2009-05-29 00:50:28.002459128 -0700 @@ -150,29 +150,17 @@ def needs_quotes( s ): If the string is one of the reserved keywords it will need quotes too. """ - + # All keywords must be quoted if s in dot_keywords: - return False - - chars = [ord(c) for c in s if ord(c)>0x7f or ord(c)==0] - if chars: - return False - - res = id_re_alpha_nums.match(s) - if not res: - res = id_re_num.match(s) - if not res: - res = id_re_dbl_quoted.match(s) - if not res: - res = id_re_html.match(s) - if not res: - res = id_re_with_port.match(s) - - if not res: return True - return False + # If any of these regexes match, then the string does not need quoting + if (id_re_alpha_nums.match(s) or id_re_num.match(s) or + id_re_dbl_quoted.match(s) or id_re_html.match(s) or + id_re_with_port.match(s)): + return False + return True def quote_if_necessary(s): Index: pydot.spec =================================================================== RCS file: /cvs/extras/rpms/pydot/F-10/pydot.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pydot.spec 12 Sep 2008 19:14:53 -0000 1.5 +++ pydot.spec 6 Jul 2009 13:14:49 -0000 1.6 @@ -2,12 +2,15 @@ Name: pydot Version: 1.0.2 -Release: 1%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries Summary: Python interface to Graphviz's Dot language URL: http://code.google.com/p/pydot/ Source0: http://pydot.googlecode.com/files/pydot-%{version}.tar.gz +# Fix bugzilla 481540, sent upstream in Issue 23 +# http://code.google.com/p/pydot/issues/detail?id=23 +Patch0: pydot-need-quote.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pyparsing python-devel Requires: graphviz, pyparsing @@ -24,6 +27,7 @@ tools dot, neato, twopi. %prep %setup -q +%patch0 -p1 -b .need-quote %build %{__python} setup.py build @@ -44,6 +48,15 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Mon Jul 6 2009 Tom "spot" Callaway - 1.0.2-4 +- fix pydot crash with accented character (bugzilla 481540) + +* Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 1.0.2-2 +- Rebuild for Python 2.6 + * Fri Sep 12 2008 Tom "spot" Callaway - 1.0.2-1 - update to 1.0.2 From spot at fedoraproject.org Mon Jul 6 13:15:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Mon, 6 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/pydot/F-11 pydot-need-quote.patch,NONE,1.1 pydot.spec,1.7,1.8 Message-ID: <20090706131520.55EEA11C02CC@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/pydot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11013/F-11 Modified Files: pydot.spec Added Files: pydot-need-quote.patch Log Message: fix bugzilla 481540 pydot-need-quote.patch: --- NEW FILE pydot-need-quote.patch --- diff -up pydot-1.0.2/pydot.py.unicode pydot-1.0.2/pydot.py --- pydot-1.0.2/pydot.py.unicode 2009-05-29 00:49:51.313446126 -0700 +++ pydot-1.0.2/pydot.py 2009-05-29 00:50:28.002459128 -0700 @@ -150,29 +150,17 @@ def needs_quotes( s ): If the string is one of the reserved keywords it will need quotes too. """ - + # All keywords must be quoted if s in dot_keywords: - return False - - chars = [ord(c) for c in s if ord(c)>0x7f or ord(c)==0] - if chars: - return False - - res = id_re_alpha_nums.match(s) - if not res: - res = id_re_num.match(s) - if not res: - res = id_re_dbl_quoted.match(s) - if not res: - res = id_re_html.match(s) - if not res: - res = id_re_with_port.match(s) - - if not res: return True - return False + # If any of these regexes match, then the string does not need quoting + if (id_re_alpha_nums.match(s) or id_re_num.match(s) or + id_re_dbl_quoted.match(s) or id_re_html.match(s) or + id_re_with_port.match(s)): + return False + return True def quote_if_necessary(s): Index: pydot.spec =================================================================== RCS file: /cvs/extras/rpms/pydot/F-11/pydot.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pydot.spec 26 Feb 2009 19:52:30 -0000 1.7 +++ pydot.spec 6 Jul 2009 13:14:50 -0000 1.8 @@ -2,12 +2,15 @@ Name: pydot Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries Summary: Python interface to Graphviz's Dot language URL: http://code.google.com/p/pydot/ Source0: http://pydot.googlecode.com/files/pydot-%{version}.tar.gz +# Fix bugzilla 481540, sent upstream in Issue 23 +# http://code.google.com/p/pydot/issues/detail?id=23 +Patch0: pydot-need-quote.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pyparsing python-devel Requires: graphviz, pyparsing @@ -24,6 +27,7 @@ tools dot, neato, twopi. %prep %setup -q +%patch0 -p1 -b .need-quote %build %{__python} setup.py build @@ -44,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Mon Jul 6 2009 Tom "spot" Callaway - 1.0.2-4 +- fix pydot crash with accented character (bugzilla 481540) + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Mon Jul 6 13:23:54 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 13:23:54 +0000 (UTC) Subject: rpms/digikam/devel digikam.spec,1.90,1.91 Message-ID: <20090706132354.B129611C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/digikam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12800 Modified Files: digikam.spec Log Message: +BR: soprano-devel Index: digikam.spec =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/digikam.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- digikam.spec 6 Jul 2009 12:59:04 -0000 1.90 +++ digikam.spec 6 Jul 2009 13:23:24 -0000 1.91 @@ -39,6 +39,7 @@ BuildRequires: lcms-devel BuildRequires: lensfun-devel BuildRequires: libtiff-devel BuildRequires: libpng-devel >= 1.2.7 +BuildRequires: soprano-devel BuildRequires: sqlite-devel Obsoletes: digikamimageplugins < 0.9.1-2 From rdieter at fedoraproject.org Mon Jul 6 13:28:20 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 13:28:20 +0000 (UTC) Subject: rpms/digikam/EL-5 .cvsignore, 1.11, 1.12 digikam.spec, 1.40, 1.41 sources, 1.12, 1.13 Message-ID: <20090706132820.487D511C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/digikam/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13818 Modified Files: .cvsignore digikam.spec sources Log Message: * Mon Jul 06 2009 Rex Dieter - 0.9.6-1 - digikam-0.9.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/digikam/EL-5/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 17 Mar 2009 18:37:45 -0000 1.11 +++ .cvsignore 6 Jul 2009 13:28:20 -0000 1.12 @@ -1 +1 @@ -digikam-0.9.5.tar.bz2 +digikam-0.9.6.tar.bz2 Index: digikam.spec =================================================================== RCS file: /cvs/pkgs/rpms/digikam/EL-5/digikam.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- digikam.spec 17 Mar 2009 18:35:57 -0000 1.40 +++ digikam.spec 6 Jul 2009 13:28:20 -0000 1.41 @@ -12,7 +12,7 @@ BuildRequires: sqlite-devel %endif Name: digikam -Version: 0.9.5 +Version: 0.9.6 Release: 1%{?dist} Summary: A digital camera accessing & photo management application @@ -147,6 +147,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 06 2009 Rex Dieter - 0.9.6-1 +- digikam-0.9.6 + * Tue Mar 17 2009 Rex Dieter - 0.9.5-1 - digikam-0.9.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/digikam/EL-5/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 17 Mar 2009 18:37:45 -0000 1.12 +++ sources 6 Jul 2009 13:28:20 -0000 1.13 @@ -1 +1 @@ -fc4085169256cffd77aa8e8025792b89 digikam-0.9.5.tar.bz2 +62211f1907ee9e71585426568bf38e4d digikam-0.9.6.tar.bz2 From simo at fedoraproject.org Mon Jul 6 13:33:36 2009 From: simo at fedoraproject.org (Simo Sorce) Date: Mon, 6 Jul 2009 13:33:36 +0000 (UTC) Subject: rpms/libtalloc/F-11 libtalloc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706133336.5503011C02C8@cvs1.fedora.phx.redhat.com> Author: simo Update of /cvs/pkgs/rpms/libtalloc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14974 Modified Files: .cvsignore sources Added Files: libtalloc.spec Log Message: * Mon Jul 6 2009 Simo Sorce - 1.3.1-0 Build talloc as a separate package in F-11 too. --- NEW FILE libtalloc.spec --- Name: libtalloc Version: 1.3.1 Release: 0%{?dist} Group: System Environment/Daemons Summary: The talloc library License: LGPLv3+ URL: http://talloc.samba.org/ Source: http://samba.org/ftp/talloc/talloc-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: autoconf BuildRequires: libxslt BuildRequires: docbook-style-xsl %description A library that implements a hierarchical allocator with destructors. %package devel Group: Development/Libraries Summary: Developer tools for the Talloc library Requires: libtalloc = %{version}-%{release} %description devel Header files needed to develop programs that link against the Talloc library. %prep %setup -q -n talloc-%{version} %build ./autogen.sh %configure --prefix=%{_usr} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT ln -s libtalloc.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libtalloc.so.1 ln -s libtalloc.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libtalloc.so rm -f $RPM_BUILD_ROOT%{_libdir}/libtalloc.a rm -f $RPM_BUILD_ROOT/usr/share/swig/*/talloc.i %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/libtalloc.so.* %files devel %defattr(-,root,root,-) %{_includedir}/talloc.h %{_libdir}/libtalloc.so %{_libdir}/pkgconfig/talloc.pc %{_mandir}/man3/talloc.3.gz %post /sbin/ldconfig %postun /sbin/ldconfig %changelog * Mon Jul 6 2009 Simo Sorce - 1.3.1-0 Build talloc as a separate package in F-11 too. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libtalloc/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 9 May 2009 21:04:36 -0000 1.1 +++ .cvsignore 6 Jul 2009 13:33:06 -0000 1.2 @@ -0,0 +1 @@ +talloc-1.3.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libtalloc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 9 May 2009 21:04:36 -0000 1.1 +++ sources 6 Jul 2009 13:33:06 -0000 1.2 @@ -0,0 +1 @@ +f8969802759bde2598f4f93e84fd38c5 talloc-1.3.1.tar.gz From simo at fedoraproject.org Mon Jul 6 13:40:24 2009 From: simo at fedoraproject.org (Simo Sorce) Date: Mon, 6 Jul 2009 13:40:24 +0000 (UTC) Subject: rpms/libtdb/F-11 libtdb.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706134024.D30F011C02C8@cvs1.fedora.phx.redhat.com> Author: simo Update of /cvs/pkgs/rpms/libtdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17002 Modified Files: .cvsignore sources Added Files: libtdb.spec Log Message: * Mon Jul 6 2009 Simo Sorce - 1.1.5-0 Build tdb as a separate package in F-11 too. --- NEW FILE libtdb.spec --- Name: libtdb Version: 1.1.5 Release: 0%{?dist} Group: System Environment/Daemons Summary: The tdb library License: LGPLv3+ URL: http://tdb.samba.org/ Source: http://samba.org/ftp/tdb/tdb-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: autoconf %description A library that implements a trivial database. %package devel Group: Development/Libraries Summary: Header files need to link the Tdb library Requires: libtdb = %{version}-%{release} Requires: pkgconfig %description devel Header files needed to develop programs that link against the Tdb library. %package -n tdb-tools Group: Development/Libraries Summary: Developer tools for the Tdb library Requires: libtdb = %{version}-%{release} %description -n tdb-tools Tools to manage Tdb files %prep %setup -q -n tdb-%{version} %build ./autogen.sh %configure --prefix=%{_usr} --disable-python make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT ln -s libtdb.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libtdb.so rm -f $RPM_BUILD_ROOT%{_libdir}/libtdb.a rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/tdb.so %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/libtdb.so.* %files devel %defattr(-,root,root) %{_includedir}/tdb.h %{_libdir}/libtdb.so %{_libdir}/pkgconfig/tdb.pc %files -n tdb-tools %defattr(-,root,root,-) %{_bindir}/tdbbackup %{_bindir}/tdbdump %{_bindir}/tdbtool %post /sbin/ldconfig %postun /sbin/ldconfig %changelog * Mon Jul 6 2009 Simo Sorce - 1.1.5-0 Build tdb as a separate package in F-11 too. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libtdb/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 9 May 2009 21:05:16 -0000 1.1 +++ .cvsignore 6 Jul 2009 13:39:54 -0000 1.2 @@ -0,0 +1 @@ +tdb-1.1.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libtdb/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 9 May 2009 21:05:16 -0000 1.1 +++ sources 6 Jul 2009 13:39:54 -0000 1.2 @@ -0,0 +1 @@ +3e9be7c1dbfba0679dc3463d55e3a830 tdb-1.1.5.tar.gz From dsd at fedoraproject.org Mon Jul 6 13:55:29 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Mon, 6 Jul 2009 13:55:29 +0000 (UTC) Subject: rpms/olpc-utils/devel .cvsignore, 1.3, 1.4 olpc-utils.spec, 1.10, 1.11 sources, 1.4, 1.5 Message-ID: <20090706135529.935CB11C02C8@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19977 Modified Files: .cvsignore olpc-utils.spec sources Log Message: update to v1.0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 29 Jun 2009 15:25:19 -0000 1.3 +++ .cvsignore 6 Jul 2009 13:55:29 -0000 1.4 @@ -1 +1 @@ -olpc-utils-1.0.2.tar.bz2 +olpc-utils-1.0.3.tar.bz2 Index: olpc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/devel/olpc-utils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- olpc-utils.spec 29 Jun 2009 15:30:24 -0000 1.10 +++ olpc-utils.spec 6 Jul 2009 13:55:29 -0000 1.11 @@ -1,5 +1,5 @@ Name: olpc-utils -Version: 1.0.2 +Version: 1.0.3 Release: 1%{?dist} Summary: OLPC utilities URL: http://dev.laptop.org/git?p=projects/olpc-utils;a=summary @@ -78,8 +78,12 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/X11/xorg-emu.conf %config(noreplace) %{_sysconfdir}/X11/xorg-vmware.conf %config(noreplace) %{_sysconfdir}/skel/.xsession-example +%config(noreplace) %{_sysconfdir}/ConsoleKit/run-session.d/pam-console-compat.ck %changelog +* Mon Jul 6 2009 Daniel Drake 1.0.3-1 +- Bug fix release + * Mon Jun 29 2009 Daniel Drake 1.0.2-1 - Update to latest version, including XO-1.5 support Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 29 Jun 2009 15:25:20 -0000 1.4 +++ sources 6 Jul 2009 13:55:29 -0000 1.5 @@ -1 +1 @@ -b96c8bb56be7b0ff12508fceae6d10d2 olpc-utils-1.0.2.tar.bz2 +e3c9213eaa3ba920b8d5c3b6dcbdc381 olpc-utils-1.0.3.tar.bz2 From dsd at fedoraproject.org Mon Jul 6 14:00:09 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Mon, 6 Jul 2009 14:00:09 +0000 (UTC) Subject: rpms/olpc-utils/F-11 .cvsignore, 1.3, 1.4 olpc-utils.spec, 1.8, 1.9 sources, 1.4, 1.5 Message-ID: <20090706140009.2C7DB11C02C8@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20845 Modified Files: .cvsignore olpc-utils.spec sources Log Message: v1.0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 29 Jun 2009 15:38:01 -0000 1.3 +++ .cvsignore 6 Jul 2009 13:59:38 -0000 1.4 @@ -1 +1 @@ -olpc-utils-1.0.2.tar.bz2 +olpc-utils-1.0.3.tar.bz2 Index: olpc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/F-11/olpc-utils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- olpc-utils.spec 29 Jun 2009 15:38:01 -0000 1.8 +++ olpc-utils.spec 6 Jul 2009 13:59:38 -0000 1.9 @@ -1,5 +1,5 @@ Name: olpc-utils -Version: 1.0.2 +Version: 1.0.3 Release: 1%{?dist} Summary: OLPC utilities URL: http://dev.laptop.org/git?p=projects/olpc-utils;a=summary @@ -78,8 +78,12 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/X11/xorg-emu.conf %config(noreplace) %{_sysconfdir}/X11/xorg-vmware.conf %config(noreplace) %{_sysconfdir}/skel/.xsession-example +%config(noreplace) %{_sysconfdir}/ConsoleKit/run-session.d/pam-console-compat.ck %changelog +* Mon Jul 6 2009 Daniel Drake 1.0.3-1 +- Bug fix release + * Mon Jun 29 2009 Daniel Drake 1.0.2-1 - Update to latest version, including XO-1.5 support Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 29 Jun 2009 15:38:01 -0000 1.4 +++ sources 6 Jul 2009 13:59:38 -0000 1.5 @@ -1 +1 @@ -b96c8bb56be7b0ff12508fceae6d10d2 olpc-utils-1.0.2.tar.bz2 +e3c9213eaa3ba920b8d5c3b6dcbdc381 olpc-utils-1.0.3.tar.bz2 From simo at fedoraproject.org Mon Jul 6 14:11:10 2009 From: simo at fedoraproject.org (Simo Sorce) Date: Mon, 6 Jul 2009 14:11:10 +0000 (UTC) Subject: rpms/samba4/F-11 samba4.spec,1.12,1.13 Message-ID: <20090706141110.5EE1C11C02C8@cvs1.fedora.phx.redhat.com> Author: simo Update of /cvs/pkgs/rpms/samba4/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23709 Modified Files: samba4.spec Log Message: * Mon Jul 06 2009 Simo Sorce - 4.0.0-15alpha7 - Split out libtalloc and libtdb - This fixes #509841 Index: samba4.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba4/F-11/samba4.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- samba4.spec 6 Apr 2009 18:20:41 -0000 1.12 +++ samba4.spec 6 Jul 2009 14:11:09 -0000 1.13 @@ -1,4 +1,4 @@ -%define main_release 14 +%define main_release 15 %define samba4_version 4.0.0 %define talloc_version 1.2.0 @@ -25,8 +25,8 @@ %define enable_common 0 %define enable_python 0 %define enable_winbind 0 -%define enable_talloc 1 -%define enable_tdb 1 +%define enable_talloc 0 +%define enable_tdb 0 %define enable_tevent 1 %define enable_ldb 1 @@ -89,6 +89,13 @@ BuildRequires: sed BuildRequires: autoconf BuildRequires: openldap-devel +%if ! %enable_talloc +BuildRequires: libtalloc-devel >= %{talloc_version} +%endif +%if ! %enable_tdb +BuildRequires: libtdb-devel >= %{tdb_version} +%endif + %description Samba 4 is the ambitious next version of the Samba suite that is being @@ -276,7 +283,7 @@ Summary: Developer tools for the LDB lib Version: %{ldb_version} Release: %{ldb_release} Requires: libldb = %{ldb_version}-%{ldb_release} -Requires: libtdb-devel = %{tdb_version}-%{tdb_release} +Requires: libtdb-devel >= %{tdb_version} Requires: libtalloc-devel >= %{talloc_version} Requires: libtevent-devel = %{tevent_version}-%{tevent_release} @@ -832,6 +839,10 @@ exit 0 %endif %changelog +* Mon Jul 06 2009 Simo Sorce - 4.0.0-15alpha7 +- Split out libtalloc and libtdb +- This fixes #509841 + * Mon Apr 06 2009 Matthew Barnes - 4.0.0-14alpha7 - Fix a build issue in samba4-common (RH bug #494243). From rdieter at fedoraproject.org Mon Jul 6 14:16:16 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 14:16:16 +0000 (UTC) Subject: rpms/kdeedu/devel kdeedu.spec,1.189,1.190 Message-ID: <20090706141616.2B57711C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdeedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24692 Modified Files: kdeedu.spec Log Message: * Mon Jul 06 2009 Rex Dieter - 4.2.95-2 - rebuild for cln(libqalculate), see also rhbz#509840 Index: kdeedu.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeedu/devel/kdeedu.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- kdeedu.spec 26 Jun 2009 12:00:15 -0000 1.189 +++ kdeedu.spec 6 Jul 2009 14:15:45 -0000 1.190 @@ -7,7 +7,7 @@ Name: kdeedu Summary: Educational/Edutainment applications Version: 4.2.95 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Amusements/Games @@ -449,9 +449,10 @@ rm -rf %{buildroot} %{_mandir}/man1/kmplot.* -# Wasn't rebuilt with this; append to next build entry -# - Add conditional so that upgrade path Requires are only in F11 and lower %changelog +* Mon Jul 06 2009 Rex Dieter - 4.2.95-2 +- rebuild for cln(libqalculate), see also rhbz#509840 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 From hardaker at fedoraproject.org Mon Jul 6 14:19:06 2009 From: hardaker at fedoraproject.org (Wes Hardaker) Date: Mon, 6 Jul 2009 14:19:06 +0000 (UTC) Subject: rpms/geoqo/F-11 geoqo.spec,1.9,1.10 Message-ID: <20090706141906.5A16811C02C8@cvs1.fedora.phx.redhat.com> Author: hardaker Update of /cvs/extras/rpms/geoqo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25481 Modified Files: geoqo.spec Log Message: version bump for proper building Index: geoqo.spec =================================================================== RCS file: /cvs/extras/rpms/geoqo/F-11/geoqo.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- geoqo.spec 9 Mar 2009 18:03:49 -0000 1.9 +++ geoqo.spec 6 Jul 2009 14:18:36 -0000 1.10 @@ -1,7 +1,7 @@ Summary: GeoCaching and General Waypoint Database Name: geoqo Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Amusements/Games URL: http://www.geoqo.org/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/geoqo/scripts/*/* %changelog +* Mon Jul 6 2009 Wes Hardaker - 1.01-2 +- Bump for build issues + * Mon Mar 9 2009 Wes Hardaker - 1.01-1 - Upgrade to upstream 1.01 From avesh at fedoraproject.org Mon Jul 6 14:39:18 2009 From: avesh at fedoraproject.org (avesh agarwal) Date: Mon, 6 Jul 2009 14:39:18 +0000 (UTC) Subject: rpms/openswan/devel openswan-2.6.21-CVE-2009-2185.patch, NONE, 1.1 openswan-2.6.21-nss-fedora-diff-modified.patch, NONE, 1.1 openswan.spec, 1.78, 1.79 Message-ID: <20090706143918.49BD811C02C8@cvs1.fedora.phx.redhat.com> Author: avesh Update of /cvs/pkgs/rpms/openswan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30259 Modified Files: openswan.spec Added Files: openswan-2.6.21-CVE-2009-2185.patch openswan-2.6.21-nss-fedora-diff-modified.patch Log Message: * Mon Jul 06 2009 Avesh Agarwal - 2.6.21-5 - Added support for using PSK with NSS - Fixed several warnings and undid unnecessary comments - Updated README.nss with an example configuration - Fixed Openswan ASN.1 parser vulnerability (CVE-2009-2185) openswan-2.6.21-CVE-2009-2185.patch: --- NEW FILE openswan-2.6.21-CVE-2009-2185.patch --- --- ../openswan-2.6.21-orig/lib/libopenswan/asn1.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2/lib/libopenswan/asn1.c 2009-06-26 10:14:54.000000000 -0400 @@ -11,7 +11,6 @@ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: asn1.c,v 1.10 2005/08/05 17:33:27 mcr Exp $ */ #include @@ -77,8 +76,15 @@ asn1_length(chunk_t *blob) n = *blob->ptr++; blob->len--; - if ((n & 0x80) == 0) /* single length octet */ + if ((n & 0x80) == 0) { /* single length octet */ + if (n > blob->len) { + DBG(DBG_PARSING, + DBG_log("number of length octets is larger than ASN.1 object") + ) + return ASN1_INVALID_LENGTH; + } return n; + } /* composite length, determine number of length octets */ n &= 0x7f; @@ -107,6 +113,14 @@ asn1_length(chunk_t *blob) len = 256*len + *blob->ptr++; blob->len--; } + if (len > blob->len) + { + DBG(DBG_PARSING, + DBG_log("length is larger than remaining blob size") + ) + return ASN1_INVALID_LENGTH; + } + return len; } @@ -236,14 +250,21 @@ asn1totime(const chunk_t *utctime, asn1_ { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in positive timezone offset format */ + } + tz_offset = 3600*tz_hour + 60*tz_min; /* positive time zone offset */ } else if ((eot = memchr(utctime->ptr, '-', utctime->len)) != NULL) { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in negative timezone offset format */ + } tz_offset = -3600*tz_hour - 60*tz_min; /* negative time zone offset */ } else @@ -255,14 +276,22 @@ asn1totime(const chunk_t *utctime, asn1_ const char* format = (type == ASN1_UTCTIME)? "%2d%2d%2d%2d%2d": "%4d%2d%2d%2d%2d"; - sscanf((char *)utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, - &t.tm_hour, &t.tm_min); + if (sscanf(utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, + &t.tm_hour, &t.tm_min) != 5) + { + return 0; /* error in time st [yy]yymmddhhmm time format */ + } + } /* is there a seconds field? */ if ((eot - (char *)utctime->ptr) == ((type == ASN1_UTCTIME)?12:14)) { - sscanf(eot-2, "%2d", &t.tm_sec); + if (sscanf(eot-2, "%2d", &t.tm_sec) != 1) + { + return 0; /* error in ss seconds field format */ + } + } else { @@ -283,7 +312,11 @@ asn1totime(const chunk_t *utctime, asn1_ t.tm_year += 100; } - /* representation of month 0..11*/ + if (t.tm_mon < 1 || t.tm_mon > 12) + { + return 0; /* error in month format */ + } + /* representation of month 0..11 in struct tm */ t.tm_mon--; /* set daylight saving time to off */ @@ -384,7 +417,7 @@ extract_object(asn1Object_t const *objec blob1->len = asn1_length(blob); - if (blob1->len == ASN1_INVALID_LENGTH || blob->len < blob1->len) + if (blob1->len == ASN1_INVALID_LENGTH) { DBG(DBG_PARSING, DBG_log("L%d - %s: length of ASN1 object invalid or too large", openswan-2.6.21-nss-fedora-diff-modified.patch: --- NEW FILE openswan-2.6.21-nss-fedora-diff-modified.patch --- diff -urNp openswan-2.6.21/include/oswconf.h openswan-2.6.21-fedora-diff/include/oswconf.h --- openswan-2.6.21/include/oswconf.h 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/include/oswconf.h 2009-06-25 17:09:00.000000000 -0400 @@ -79,6 +79,10 @@ extern char *getNSSPassword(PK11SlotInfo extern bool Pluto_IsFIPS(void); #endif +//#ifdef FIPS_CHECK +//extern bool Pluto_IsFIPS(void); +//#endif + #endif /* _OSW_ALLOC_H_ */ /* diff -urNp openswan-2.6.21/lib/libcrypto/libmd5/md5.c openswan-2.6.21-fedora-diff/lib/libcrypto/libmd5/md5.c --- openswan-2.6.21/lib/libcrypto/libmd5/md5.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libcrypto/libmd5/md5.c 2009-06-25 18:25:00.000000000 -0400 @@ -74,8 +74,9 @@ documentation and/or software. #define S44 21 #define MD5Transform _MD5Transform - +#ifndef HAVE_LIBNSS static void MD5Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); +#endif #if BYTE_ORDER == LITTLE_ENDIAN #define Encode MD5_memcpy @@ -100,11 +101,13 @@ static void MD5_memcpy PROTO_LIST ((POIN static void MD5_memset PROTO_LIST ((POINTER, int, unsigned int)); #endif #endif +#ifndef HAVE_LIBNSS static unsigned char PADDING[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; +#endif /* F, G, H and I are basic MD5 functions. */ @@ -147,14 +150,14 @@ void osMD5Init (context) MD5_CTX *context; /* context */ { #ifdef HAVE_LIBNSS - DBG(DBG_CRYPT, DBG_log("NSS: md5 init start")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 init start")); SECStatus status; context->ctx_nss=NULL; context->ctx_nss = PK11_CreateDigestContext(SEC_OID_MD5); PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 init end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 init end")); #else context->count[0] = context->count[1] = 0; /* Load magic initialization constants. @@ -178,7 +181,7 @@ UINT4 inputLen; #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, input, inputLen); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 update end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 update end")); #else UINT4 i; unsigned int myindex, partLen; @@ -225,7 +228,7 @@ MD5_CTX *context; PR_ASSERT(length==MD5_DIGEST_SIZE); PR_ASSERT(status==SECSuccess); PK11_DestroyContext(context->ctx_nss, PR_TRUE); - DBG(DBG_CRYPT, DBG_log("NSS: md5 final end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 final end")); #else unsigned char bits[8]; unsigned int myindex, padLen; @@ -256,6 +259,7 @@ MD5_CTX *context; /* MD5 basic transformation. Transforms state based on block. */ +#ifndef HAVE_LIBNSS static void MD5Transform (state, block) UINT4 state[4]; const unsigned char block[64]; @@ -345,6 +349,7 @@ const unsigned char block[64]; */ MD5_memset ((POINTER)x, 0, sizeof (x)); } +#endif #if BYTE_ORDER != LITTLE_ENDIAN diff -urNp openswan-2.6.21/lib/libcrypto/libsha1/sha1.c openswan-2.6.21-fedora-diff/lib/libcrypto/libsha1/sha1.c --- openswan-2.6.21/lib/libcrypto/libsha1/sha1.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libcrypto/libsha1/sha1.c 2009-06-22 21:14:50.000000000 -0400 @@ -124,7 +124,7 @@ void SHA1Init(SHA1_CTX* context) PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 init end")); + //DBG(DBG_CRYPT, DBG_log("NSS: sha1 init end")); #else /* SHA1 initialization constants */ context->state[0] = 0x67452301; @@ -144,7 +144,7 @@ void SHA1Update(SHA1_CTX* context, const #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, data, len); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 update end")); + //DBG(DBG_CRYPT, DBG_log("NSS: sha1 update end")); /*loglog(RC_LOG_SERIOUS, "enter sha1 ctx update end");*/ #else u_int32_t i; diff -urNp openswan-2.6.21/lib/libipsecconf/confread.c openswan-2.6.21-fedora-diff/lib/libipsecconf/confread.c --- openswan-2.6.21/lib/libipsecconf/confread.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libipsecconf/confread.c 2009-06-27 00:08:09.000000000 -0400 @@ -32,6 +32,11 @@ #include "ipsecconf/starterlog.h" #include "ipsecconf/oeconns.h" +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK +#include "oswconf.h" +#endif + static char _tmp_err[512]; /** @@ -969,6 +974,18 @@ static int load_conn (struct starter_con /* reset authby flags */ if(conn->options_set[KBF_AUTHBY]) { conn->policy &= ~(POLICY_ID_AUTH_MASK); + +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK + if(Pluto_IsFIPS()) { + if((conn->options[KBF_AUTHBY] & POLICY_PSK) == POLICY_PSK){ + starter_log(LOG_LEVEL_INFO + ,"while loading conn '%s', PSK not allowed in FIPS mode with NSS", conn->name); + return 1; + } + } +#endif + conn->policy |= conn->options[KBF_AUTHBY]; #if STARTER_POLICY_DEBUG diff -urNp openswan-2.6.21/lib/libipsecconf/Makefile openswan-2.6.21-fedora-diff/lib/libipsecconf/Makefile --- openswan-2.6.21/lib/libipsecconf/Makefile 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libipsecconf/Makefile 2009-06-25 18:18:35.000000000 -0400 @@ -32,6 +32,13 @@ SRCS+=interfaces.c #enable to get lots more debugging about semantics. #CFLAGS+=-DPARSER_TYPE_DEBUG +#ifeq ($(USE_FIPSCHECK),true) +#CFLAGS+=-DFIPS_CHECK +ifeq ($(USE_LIBNSS),true) +CFLAGS+=-DHAVE_LIBNSS +CFLAGS+=-I/usr/include/nspr4 -I/usr/include/nss3 +endif + ifeq ($(USE_KLIPS),true) SRCS+=virtif.c endif diff -urNp openswan-2.6.21/lib/libopenswan/alg_info.c openswan-2.6.21-fedora-diff/lib/libopenswan/alg_info.c --- openswan-2.6.21/lib/libopenswan/alg_info.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libopenswan/alg_info.c 2009-06-27 00:43:35.000000000 -0400 @@ -36,6 +36,10 @@ #include "oswlog.h" #include "oswalloc.h" +#ifdef HAVE_LIBNSS +#include "oswconf.h" +#endif + /* abstract reference */ struct oakley_group_desc; @@ -625,6 +629,13 @@ parser_alg_info_add(struct parser_contex p_ctx->err="hash_alg not found"; goto out; } + +#ifdef HAVE_LIBNSS + if ( Pluto_IsFIPS() && ((aalg_id == OAKLEY_SHA2_256 ) ||(aalg_id == OAKLEY_SHA2_384 ) || (aalg_id == OAKLEY_SHA2_512 )) ) { + p_ctx->err="SHA2 Not supported in FIPS mode with NSS"; + goto out; + } +#endif DBG(DBG_CRYPT, DBG_log("parser_alg_info_add() " "aalg_getbyname(\"%s\")=%d", p_ctx->aalg_buf, diff -urNp openswan-2.6.21/lib/libopenswan/Makefile openswan-2.6.21-fedora-diff/lib/libopenswan/Makefile --- openswan-2.6.21/lib/libopenswan/Makefile 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libopenswan/Makefile 2009-06-25 17:20:41.000000000 -0400 @@ -103,6 +103,10 @@ CFLAGS+=-DHAVE_LIBNSS CFLAGS+=-I/usr/include/nspr4 -I/usr/include/nss3 endif [...1772 lines suppressed...] PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 1); - snprintf(buf, sizeof(buf), "sql:%s",configdir); + snprintf(buf, sizeof(buf), "sql:%s",configdir); if ((rv = NSS_InitReadWrite(buf)) != SECSuccess) { fprintf(stderr, "%s: NSS_InitReadWrite returned %d\n", me, PR_GetError()); break; @@ -590,10 +590,10 @@ rsasigkey(int nbits, char *configdir, ch PK11_SetPasswordFunc(GetModulePassword); nss_initialized = PR_TRUE; - /* Good for now but someone may want to use a hardware token - *slot = PK11_GetInternalKeySlot(); - * In which case this may be better*/ - slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); + /* Good for now but someone may want to use a hardware token*/ + slot = PK11_GetInternalKeySlot(); + /* In which case this may be better*/ + //slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); /*or the user may specify the name of a token. */ diff -urNp openswan-2.6.21/programs/showhostkey/showhostkey.c openswan-2.6.21-fedora-diff/programs/showhostkey/showhostkey.c --- openswan-2.6.21/programs/showhostkey/showhostkey.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/programs/showhostkey/showhostkey.c 2009-05-18 22:53:35.000000000 -0400 @@ -489,7 +489,7 @@ int main(int argc, char *argv[]) PRBool nss_initialized = PR_FALSE; SECStatus rv; char buf[100]; - snprintf(buf, sizeof(buf), "sql:%s",oco->confddir); + snprintf(buf, sizeof(buf), "sql:%s",oco->confddir); loglog(RC_LOG_SERIOUS,"nss directory showhostkey: %s",buf); PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 1); if ((rv = NSS_InitReadWrite(buf)) != SECSuccess){ diff -urNp openswan-2.6.21/README.nss openswan-2.6.21-fedora-diff/README.nss --- openswan-2.6.21/README.nss 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/README.nss 2009-06-27 00:22:42.000000000 -0400 @@ -2,12 +2,11 @@ Title: Using NSS crypto library with Plu Author: Avesh Agarwal email: avagarwa at redhat.com Version:0.0 - About NSS crypto library -------------------------- Please visit http://www.mozilla.org/projects/security/pki/nss/ -NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. +NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. Openswan with NSS supports IKEV1, IKEv2, authentication using PSK, Raw RSA Sig key, and Digital Certs. How to enable NSS crypto library with Openswan @@ -49,9 +48,9 @@ About the password file "nsspassword" If you create the database with a password, and want to run NSS in FIPS mode, you must create a password file with the name "nsspassword" in the /etc/ipsec.d before running pluto with NSS. The "nsspassword" file must contain the password you provided when creating NSS database. Important thing to note: -i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode and even if you create the NSS database with a password, you need not create a "nsspassword" file. +i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode, then you can create the NSS database without password, and you need not create a "nsspassword" file. However, if the NSS db is created with a password, the "nsspassword" file must also be provided. -ii) If you create he "nsspassword" file, it must contain only the password nothing else. +ii) If you create the "nsspassword" file, it must contain only the password nothing else. Generating RSA keys when using NSS @@ -60,7 +59,7 @@ You can still use ipsec newhostkey and i ipsec newhostkey --configdir /etc/ipsec.d [--password password] --output /etc/ipsec.d/ipsec.secrets -A password is only required if NSS database is used in FIPS mode. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. +A password is only required if NSS database created with password. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. Public key information in ipsec.secrets is stored in the same way as before. However, all the fields of the Private key information contain just a similar ID. This ID is called CKA ID, which is used to locate private keys inside NSS database during the IKE negotiation. @@ -90,9 +89,9 @@ It creates a user cert with nick name "u Important thing to note: You must provided a nick name when creating a user cert, because Pluto reads the user cert from the NSS database nased on the user cert's nickname. -Changes in the certitificates usage with Pluto +Changes in the certificates usage with Pluto ------------------------------------------------ -1) ipsec.comf changes +1) ipsec.conf changes The only change is "leftcert" field must contain the nick name of the user cert. For example if the nickname of the user cert is "xyz", then it can be "leftid=xyz". @@ -109,9 +108,111 @@ There is no need to provide private key 3) changes in the directories in /etc/ipsec.d/ (cacerts, certs, private) i)You need not have "private" or "certs" directory. -ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory,as Pluto can read the CA cert from the database. +ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory, as Pluto can read the CA cert from the database. + + +An example Scenario: To setup ipsec with certs in tunnel mode using NSS +------------------------------------------------------------ + +GW Machine 1: w1.x1.y1.z1 +GW Machine 2: w2.x2.y2.z2 + +w1.x1.y1.z1 <---> w2.x2.y2.z2 + +Note: In this example setup, both machines are using NSS. If you want to use +NSS only at one machine, say machine 1, you can use the following procedure +only at machine 1, and you can use traditional ipsec setup at machine 2. + +1. Create a new (if not already) nss db on both machines as follows: + +certutil -N -d /ipsec.d + +2. Creating CA certs at both machines: + +On machine 1: +certutil -S -k rsa -n cacert1 -s "CN=cacert1" -v 12 -d . -t "C,C,C" -x -d +/ipsec.d + +As we want to use the same certificate "cacert1" at machine 2, it needs to be +exported first. To export the cacert1, do the following at machine 1: + +pk12util -o cacert1.p12 -n cacert1 -d /etc/ipsec.d + +Copy the file "cacert1.p12" to the machine2 in "/etc/ipsec.d" directory. + +On machine 2: +Import the "cacert1" as follows: + +cd /etc/ipsec.d +pk12util -i cacert1.p12 -d /etc/ipsec.d +certutil -M -n cacert1 -t "C, C, C" -d /etc/ipsec.d + +Now machine 2 also has the CA certificates "cacert1" in its NSS database. + +3. Creating user certs at both machines: + +On machine 1: +certutil -S -k rsa -c cacert1 -n usercert1 -s "CN=usercert1" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1") + +On machine 2: +certutil -S -k rsa -c cacert1 -n usercert2 -s "CN=usercert2" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1" too) + +4. Preparing ipsec.conf at both machines + +ipsec.conf at machine 1: + + +conn pluto-1-2 + left=w1.x1.y1.z1 + leftid="CN=usercert1" + leftsourceip=w1.x1.y1.z1 + leftrsasigkey=%cert + leftcert=usercert1 + leftnexthop=w2.x2.y2.z2 + right=w2.x2.y2.z2 + rightid="CN=usercert2" + rightsourceip=w2.x2.y2.z2 + rightrsasigkey=%cert + rightnexthop=w1.x1.y1.z1 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + + +ipsec.conf at machine 2: + + +conn pluto-1-2 + left=w2.x2.y2.z2 + leftid="CN=usercert2" + leftsourceip=w2.x2.y2.z2 + leftrsasigkey=%cert + leftcert=usercert2 + leftnexthop=w1.x1.y1.z1 + right=w1.x1.y1.z1 + rightid="CN=usercert1" + rightsourceip=w1.x1.y1.z1 + rightrsasigkey=%cert + rightnexthop=w2.x2.y2.z2 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + +5. Preparing ipsec.secrets at both machines + +ipsec.secrets at machine 1: + + : RSA usercert1 + + +ipsec.secrets at machine 1: + + : RSA usercert2 -Things not supported ---------------------- -PSK: It is not supported when using NSS, because it required both pluto peers to have a mutual keys created outside the NSS database. So It should not be configured with NSS. Index: openswan.spec =================================================================== RCS file: /cvs/pkgs/rpms/openswan/devel/openswan.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- openswan.spec 14 Apr 2009 20:01:08 -0000 1.78 +++ openswan.spec 6 Jul 2009 14:38:48 -0000 1.79 @@ -4,7 +4,7 @@ Summary: Openswan IPSEC implementation Name: openswan Version: 2.6.21 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Url: http://www.openswan.org/ Source: openswan-%{version}.tar.gz @@ -17,6 +17,8 @@ Patch3: openswan-2.6-selinux.patch Patch4: openswan-2.6.16-initscript-correction.patch Patch5: openswan-2.6.21-gcc44.patch Patch6: openswan-2.6.21-nss.patch +Patch7: openswan-2.6.21-nss-fedora-diff-modified.patch +Patch8: openswan-2.6.21-CVE-2009-2185.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -70,6 +72,8 @@ find doc -name .gitignore -print0 | xarg %patch4 -p1 %patch5 -p1 %patch6 -p1 +%patch7 -p1 +%patch8 -p1 %build @@ -169,6 +173,12 @@ fi chkconfig --add ipsec || : %changelog +* Mon Jul 06 2009 Avesh Agarwal - 2.6.21-5 +- Added support for using PSK with NSS +- Fixed several warnings and undid unnecessary comments +- Updated README.nss with an example configuration +- Fixed Openswan ASN.1 parser vulnerability (CVE-2009-2185) + * Tue Apr 14 2009 Avesh Agarwal - 2.6.21-4 - Updated the Openswan-NSS porting to enable nss and fipscheck by default - fipscheck requires fipscheck-devel library From twaugh at fedoraproject.org Mon Jul 6 14:45:36 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 6 Jul 2009 14:45:36 +0000 (UTC) Subject: rpms/system-config-printer/F-11 system-config-printer.spec, 1.268, 1.269 Message-ID: <20090706144536.3DE6311C02C8@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31404 Modified Files: system-config-printer.spec Log Message: * Mon Jul 6 2009 Tim Waugh 1.1.8-6 - Requires gnome-packagekit for gpk-install-package-name. Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/system-config-printer.spec,v retrieving revision 1.268 retrieving revision 1.269 diff -u -p -r1.268 -r1.269 --- system-config-printer.spec 3 Jul 2009 17:22:15 -0000 1.268 +++ system-config-printer.spec 6 Jul 2009 14:45:05 -0000 1.269 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -49,6 +49,7 @@ Requires: notify-python Requires: gnome-python2-gnomekeyring Requires: python-sexy Requires: libxml2-python +Requires: gnome-packagekit Obsoletes: system-config-printer-gui <= 0.6.152 Provides: system-config-printer-gui = 0.6.152 @@ -187,6 +188,9 @@ rm -rf %buildroot exit 0 %changelog +* Mon Jul 6 2009 Tim Waugh 1.1.8-6 +- Requires gnome-packagekit for gpk-install-package-name. + * Fri Jul 3 2009 Tim Waugh 1.1.8-5 - Use gpk-install-package-name instead of trying to use the D-Bus API. - Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along From twaugh at fedoraproject.org Mon Jul 6 14:46:49 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 6 Jul 2009 14:46:49 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer.spec, 1.267, 1.268 Message-ID: <20090706144649.D544711C02C8@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31640 Modified Files: system-config-printer.spec Log Message: * Mon Jul 6 2009 Tim Waugh 1.1.8-6 - Requires gnome-packagekit for gpk-install-package-name. Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.267 retrieving revision 1.268 diff -u -p -r1.267 -r1.268 --- system-config-printer.spec 3 Jul 2009 17:31:46 -0000 1.267 +++ system-config-printer.spec 6 Jul 2009 14:46:19 -0000 1.268 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -49,6 +49,7 @@ Requires: notify-python Requires: gnome-python2-gnomekeyring Requires: python-sexy Requires: libxml2-python +Requires: gnome-packagekit Obsoletes: system-config-printer-gui <= 0.6.152 Provides: system-config-printer-gui = 0.6.152 @@ -187,6 +188,9 @@ rm -rf %buildroot exit 0 %changelog +* Mon Jul 6 2009 Tim Waugh 1.1.8-6 +- Requires gnome-packagekit for gpk-install-package-name. + * Fri Jul 3 2009 Tim Waugh 1.1.8-5 - Use gpk-install-package-name instead of trying to use the D-Bus API. - Spot stopped jobs with CUPS 1.4 as well (trac #177). This, along From ausil at fedoraproject.org Mon Jul 6 14:48:15 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Mon, 6 Jul 2009 14:48:15 +0000 (UTC) Subject: common Makefile.common,1.130,1.131 Message-ID: <20090706144815.E9AF111C02C8@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/common In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31978 Modified Files: Makefile.common Log Message: enable "make update" everywhere Index: Makefile.common =================================================================== RCS file: /cvs/extras/common/Makefile.common,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- Makefile.common 20 Jun 2009 15:58:45 -0000 1.130 +++ Makefile.common 6 Jul 2009 14:48:15 -0000 1.131 @@ -508,9 +508,7 @@ ifndef $(BODHI_USER) BODHI_USER=$(USER) endif -ifneq (, $(filter F-11 F-10 F-9 F-8 F-7, $(BRANCH))) update: bodhi -endif cvsurl: @echo '$(CVS_URL)' From pkgdb at fedoraproject.org Mon Jul 6 14:49:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:25 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144925.5AA3E10F856@bastion2.fedora.phx.redhat.com> bernie has set the watchbugzilla acl on sugar-update-control (Fedora devel) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:26 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144926.81CA510F8A3@bastion2.fedora.phx.redhat.com> bernie has set the watchcommits acl on sugar-update-control (Fedora devel) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:30 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144930.9AB0710F8A7@bastion2.fedora.phx.redhat.com> bernie has set the commit acl on sugar-update-control (Fedora devel) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:33 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144933.7F90510F8AB@bastion2.fedora.phx.redhat.com> bernie has set the approveacls acl on sugar-update-control (Fedora devel) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:40 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144940.ECA9710F8AD@bastion2.fedora.phx.redhat.com> bernie has set the watchbugzilla acl on sugar-update-control (Fedora 11) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:43 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144943.100F310F8B2@bastion2.fedora.phx.redhat.com> bernie has set the watchcommits acl on sugar-update-control (Fedora 11) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:44 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144944.CDBD510F8B6@bastion2.fedora.phx.redhat.com> bernie has set the commit acl on sugar-update-control (Fedora 11) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From pkgdb at fedoraproject.org Mon Jul 6 14:49:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 06 Jul 2009 14:49:47 +0000 Subject: [pkgdb] sugar-update-control had acl change status Message-ID: <20090706144947.8534510F8BB@bastion2.fedora.phx.redhat.com> bernie has set the approveacls acl on sugar-update-control (Fedora 11) to Approved for dsd To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-update-control From rhughes at fedoraproject.org Mon Jul 6 14:50:35 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Mon, 6 Jul 2009 14:50:35 +0000 (UTC) Subject: rpms/gnome-power-manager/devel gnome-power-manager-2.27.2-fix-potfiles.patch, NONE, 1.1 .cvsignore, 1.60, 1.61 gnome-power-manager-port-to-polkit1.patch, 1.1, 1.2 gnome-power-manager.spec, 1.162, 1.163 sources, 1.60, 1.61 Message-ID: <20090706145035.900AC11C02C8@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32481 Modified Files: .cvsignore gnome-power-manager-port-to-polkit1.patch gnome-power-manager.spec sources Added Files: gnome-power-manager-2.27.2-fix-potfiles.patch Log Message: * Mon Jul 06 2009 Richard Hughes - 2.27.2-1 - Update to 2.27.1 gnome-power-manager-2.27.2-fix-potfiles.patch: --- NEW FILE gnome-power-manager-2.27.2-fix-potfiles.patch --- diff --git a/po/POTFILES.in b/po/POTFILES.in index f5359c7..5760324 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -13,7 +13,6 @@ data/gnome-power-statistics.desktop.in.in [type: gettext/glade]data/gpm-statistics.ui [type: gettext/glade]data/gpm-prefs.ui src/gpm-backlight.c -src/gpm-brightness-kbd.c src/gpm-brightness-hal.c src/gpm-brightness-xrandr.c src/gpm-button.c Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 16 Jun 2009 08:21:33 -0000 1.60 +++ .cvsignore 6 Jul 2009 14:50:35 -0000 1.61 @@ -1 +1 @@ -gnome-power-manager-2.27.2-20090616.tar.gz +gnome-power-manager-2.27.2.tar.gz gnome-power-manager-port-to-polkit1.patch: Index: gnome-power-manager-port-to-polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager-port-to-polkit1.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnome-power-manager-port-to-polkit1.patch 16 Jun 2009 12:34:29 -0000 1.1 +++ gnome-power-manager-port-to-polkit1.patch 6 Jul 2009 14:50:35 -0000 1.2 @@ -1,8 +1,8 @@ diff --git a/configure.ac b/configure.ac -index 0c0911c..0ff2c05 100644 +index 0e366fb..c723401 100644 --- a/configure.ac +++ b/configure.ac -@@ -99,7 +99,6 @@ CAIRO_REQUIRED=1.0.0 +@@ -102,7 +102,6 @@ CAIRO_REQUIRED=1.0.0 UNIQUE_REQUIRED=0.9.4 LIBPANEL_REQUIRED=2.0.0 XRANDR_REQUIRED=1.2.0 @@ -10,7 +10,7 @@ index 0c0911c..0ff2c05 100644 CANBERRA_REQUIRED=0.10 DEVKIT_REQUIRED=001 DEVKIT_POWER_REQUIRED=008 -@@ -118,7 +117,6 @@ AC_SUBST(CAIRO_REQUIRED) +@@ -121,7 +120,6 @@ AC_SUBST(CAIRO_REQUIRED) AC_SUBST(UNIQUE_REQUIRED) AC_SUBST(LIBPANEL_REQUIRED) AC_SUBST(XRANDR_REQUIRED) @@ -18,7 +18,7 @@ index 0c0911c..0ff2c05 100644 dnl --------------------------------------------------------------------------- dnl - Check library dependencies -@@ -223,29 +221,6 @@ fi +@@ -226,29 +224,6 @@ fi AC_SUBST(DOCDIR) dnl --------------------------------------------------------------------------- @@ -48,7 +48,7 @@ index 0c0911c..0ff2c05 100644 dnl - Require DeviceKit-power support dnl --------------------------------------------------------------------------- AC_PATH_PROG(DEVKIT_POWER, devkit-power) -@@ -311,17 +286,11 @@ dnl --------------------------------------------------------------------------- +@@ -296,17 +271,11 @@ dnl --------------------------------------------------------------------------- AC_ARG_ENABLE(gconf-defaults, AS_HELP_STRING([--disable-gconf-defaults], [Allow setting gconf default settings]), @@ -69,19 +69,19 @@ index 0c0911c..0ff2c05 100644 AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) -@@ -673,7 +642,6 @@ echo " +@@ -658,7 +627,6 @@ echo " cflags: ${CFLAGS} Building extra applets: ${enable_applets} DPMS support: ${have_dpms} - PolicyKit support: ${have_polkit} - Legacy buttons support: ${have_legacy_buttons} Self test support: ${have_tests} GConf default support: ${have_gconfdefaults} + Docbook support: ${enable_docbook_docs} diff --git a/data/gpm-prefs.ui b/data/gpm-prefs.ui -index d9cc83e..f381f85 100644 +index 35ddd01..4726849 100644 --- a/data/gpm-prefs.ui +++ b/data/gpm-prefs.ui -@@ -1180,6 +1180,19 @@ +@@ -1097,6 +1097,19 @@
@@ -101,7 +101,7 @@ index d9cc83e..f381f85 100644 gtk-close True -@@ -1192,7 +1205,7 @@ +@@ -1109,7 +1122,7 @@ False False @@ -110,7 +110,7 @@ index d9cc83e..f381f85 100644 -@@ -1206,6 +1219,7 @@ +@@ -1123,6 +1136,7 @@ button_help @@ -118,8 +118,45 @@ index d9cc83e..f381f85 100644 button_close +diff --git a/src/Makefile.am b/src/Makefile.am +index 559e0ee..18e80ab 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -21,8 +21,6 @@ INCLUDES = \ + $(GSTREAMER_CFLAGS) \ + -DI_KNOW_THE_DEVICEKIT_POWER_API_IS_SUBJECT_TO_CHANGE \ + $(DEVKIT_CFLAGS) \ +- $(POLKIT_CFLAGS) \ +- $(POLKIT_GNOME_CFLAGS) \ + -DBINDIR=\"$(bindir)\" \ + -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ + -DDATADIR=\"$(datadir)\" \ +@@ -125,7 +123,6 @@ gnome_power_preferences_LDADD = \ + $(HAL_LIBS) \ + $(DBUS_LIBS) \ + $(UNIQUE_LIBS) \ +- $(POLKIT_GNOME_LIBS) \ + $(GPM_EXTRA_LIBS) \ + $(LOCAL_LIBHAL_LIBS) \ + $(DEVKIT_LIBS) \ +@@ -208,7 +205,6 @@ gnome_power_manager_LDADD = \ + $(GSTREAMER_LIBS) \ + $(GNOME_LIBS) \ + $(HAL_LIBS) \ +- $(POLKIT_LIBS) \ + $(DBUS_LIBS) \ + $(XRANDR_LIBS) \ + $(CANBERRA_LIBS) \ +@@ -280,7 +276,6 @@ gnome_power_self_test_LDADD = \ + $(GLIB_LIBS) \ + $(GNOME_LIBS) \ + $(GSTREAMER_LIBS) \ +- $(POLKIT_GNOME_LIBS) \ + $(DEVKIT_LIBS) \ + $(DBUS_LIBS) \ + $(LIBNOTIFY_LIBS) \ diff --git a/src/gpm-control.c b/src/gpm-control.c -index 043b667..21eb85a 100644 +index 37128d4..4148dcf 100644 --- a/src/gpm-control.c +++ b/src/gpm-control.c @@ -43,11 +43,6 @@ @@ -164,7 +201,7 @@ index 043b667..21eb85a 100644 * gpm_control_check_foreground_console: * @manager: This class instance * @action: The action we want to do, e.g. "suspend" -@@ -158,19 +130,17 @@ gboolean +@@ -158,7 +130,6 @@ gboolean gpm_control_allowed_suspend (GpmControl *control, gboolean *can, GError **error) { gboolean conf_ok; @@ -172,11 +209,14 @@ index 043b667..21eb85a 100644 gboolean hardware_ok; gboolean fg; g_return_val_if_fail (can, FALSE); +@@ -171,11 +142,13 @@ gpm_control_allowed_suspend (GpmControl *control, gboolean *can, GError **error) + NULL); - *can = FALSE; conf_ok = gconf_client_get_bool (control->priv->conf, GPM_CONF_CAN_SUSPEND, NULL); - polkit_ok = gpm_control_is_user_privileged (control, "org.freedesktop.devicekit.power.suspend"); - hardware_ok = dkp_client_can_suspend (control->priv->client); ++ g_object_get (control->priv->client, ++ "can-suspend", &hardware_ok, ++ NULL); fg = gpm_control_check_foreground_console (control); - if (conf_ok && hardware_ok && polkit_ok && fg) + if (conf_ok && hardware_ok && fg) @@ -186,7 +226,7 @@ index 043b667..21eb85a 100644 return TRUE; } -@@ -186,7 +156,6 @@ gboolean +@@ -191,7 +164,6 @@ gboolean gpm_control_allowed_hibernate (GpmControl *control, gboolean *can, GError **error) { gboolean conf_ok; @@ -194,13 +234,15 @@ index 043b667..21eb85a 100644 gboolean hardware_ok; gboolean fg; g_return_val_if_fail (can, FALSE); -@@ -194,11 +163,10 @@ gpm_control_allowed_hibernate (GpmControl *control, gboolean *can, GError **erro +@@ -204,10 +176,12 @@ gpm_control_allowed_hibernate (GpmControl *control, gboolean *can, GError **erro *can = FALSE; conf_ok = gconf_client_get_bool (control->priv->conf, GPM_CONF_CAN_HIBERNATE, NULL); fg = gpm_control_check_foreground_console (control); - polkit_ok = gpm_control_is_user_privileged (control, "org.freedesktop.devicekit.power.hibernate"); - hardware_ok = dkp_client_can_hibernate (control->priv->client); - if (conf_ok && hardware_ok && polkit_ok && fg) ++ g_object_get (control->priv->client, ++ "can-hibernate", &hardware_ok, ++ NULL); + if (conf_ok && hardware_ok && fg) *can = TRUE; - egg_debug ("conf=%i, polkit=%i, fg=%i, can=%i", conf_ok, polkit_ok, fg, *can); @@ -209,10 +251,10 @@ index 043b667..21eb85a 100644 } diff --git a/src/gpm-prefs-core.c b/src/gpm-prefs-core.c -index ccf6375..ba09df0 100644 +index 9155a74..c1f1171 100644 --- a/src/gpm-prefs-core.c +++ b/src/gpm-prefs-core.c -@@ -43,10 +43,6 @@ +@@ -41,10 +41,6 @@ #include "gpm-stock-icons.h" #include "gpm-prefs-server.h" @@ -223,7 +265,7 @@ index ccf6375..ba09df0 100644 static void gpm_prefs_finalize (GObject *object); #define GPM_PREFS_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GPM_TYPE_PREFS, GpmPrefsPrivate)) -@@ -66,9 +62,6 @@ struct GpmPrefsPrivate +@@ -63,9 +59,6 @@ struct GpmPrefsPrivate gboolean can_hibernate; guint idle_delay; GConfClient *conf; @@ -233,7 +275,7 @@ index ccf6375..ba09df0 100644 }; enum { -@@ -186,8 +179,7 @@ out: +@@ -183,8 +176,7 @@ out: * @prefs: This prefs class instance **/ static void @@ -243,7 +285,7 @@ index ccf6375..ba09df0 100644 { egg_debug ("emitting action-help"); g_signal_emit (prefs, signals [ACTION_HELP], 0); -@@ -198,8 +190,7 @@ gpm_prefs_help_cb (GtkWidget *widget, +@@ -195,8 +187,7 @@ gpm_prefs_help_cb (GtkWidget *widget, * @widget: The GtkWidget object **/ static void @@ -253,7 +295,7 @@ index ccf6375..ba09df0 100644 { const gchar *str; gint policy; -@@ -216,8 +207,7 @@ gpm_prefs_icon_radio_cb (GtkWidget *widget, +@@ -213,8 +204,7 @@ gpm_prefs_icon_radio_cb (GtkWidget *widget, * @value: The value in %. **/ static gchar * @@ -263,7 +305,7 @@ index ccf6375..ba09df0 100644 { return g_strdup_printf ("%.0f%%", value); } -@@ -229,9 +219,7 @@ gpm_prefs_format_percentage_cb (GtkScale *scale, +@@ -226,9 +216,7 @@ gpm_prefs_format_percentage_cb (GtkScale *scale, * @prefs: This prefs class instance **/ static gchar * @@ -274,7 +316,7 @@ index ccf6375..ba09df0 100644 { gchar *str; if ((gint) value == NEVER_TIME_ON_SLIDER) { -@@ -248,8 +236,7 @@ gpm_prefs_format_time_cb (GtkScale *scale, +@@ -245,8 +233,7 @@ gpm_prefs_format_time_cb (GtkScale *scale, * @gpm_pref_key: The GConf key for this preference setting. **/ static void @@ -284,7 +326,7 @@ index ccf6375..ba09df0 100644 { int value; char *gpm_pref_key; -@@ -919,12 +906,11 @@ prefs_setup_general (GpmPrefs *prefs) +@@ -901,12 +888,11 @@ prefs_setup_general (GpmPrefs *prefs) } } @@ -299,7 +341,7 @@ index ccf6375..ba09df0 100644 { GConfClient *client; DBusGProxy *proxy; -@@ -966,27 +952,6 @@ pk_prefs_set_defaults_cb (PolKitGnomeAction *default_action, GpmPrefs *prefs) +@@ -948,27 +934,6 @@ pk_prefs_set_defaults_cb (PolKitGnomeAction *default_action, GpmPrefs *prefs) } /** @@ -327,7 +369,7 @@ index ccf6375..ba09df0 100644 * gpm_prefs_init: * @prefs: This prefs class instance **/ -@@ -995,9 +960,6 @@ gpm_prefs_init (GpmPrefs *prefs) +@@ -977,9 +942,6 @@ gpm_prefs_init (GpmPrefs *prefs) { GtkWidget *main_window; GtkWidget *widget; @@ -337,7 +379,7 @@ index ccf6375..ba09df0 100644 gint caps; guint retval; GError *error = NULL; -@@ -1037,18 +999,6 @@ gpm_prefs_init (GpmPrefs *prefs) +@@ -1022,18 +984,6 @@ gpm_prefs_init (GpmPrefs *prefs) main_window = GTK_WIDGET (gtk_builder_get_object (prefs->priv->builder, "dialog_preferences")); @@ -356,7 +398,7 @@ index ccf6375..ba09df0 100644 /* Hide window first so that the dialogue resizes itself without redrawing */ gtk_widget_hide (main_window); gtk_window_set_default_icon_name (GPM_STOCK_APP_ICON); -@@ -1065,9 +1015,12 @@ gpm_prefs_init (GpmPrefs *prefs) +@@ -1050,9 +1000,12 @@ gpm_prefs_init (GpmPrefs *prefs) g_signal_connect (widget, "clicked", G_CALLBACK (gpm_prefs_help_cb), prefs); Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- gnome-power-manager.spec 16 Jun 2009 12:34:29 -0000 1.162 +++ gnome-power-manager.spec 6 Jul 2009 14:50:35 -0000 1.163 @@ -5,18 +5,21 @@ Summary: GNOME Power Manager Name: gnome-power-manager Version: 2.27.2 -#Release: 1%{?dist} -Release: 0.2.%{?alphatag}git%{?dist} +Release: 1%{?dist} +#Release: 0.2.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System -#Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz -Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz +Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz +#Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://projects.gnome.org/gnome-power-manager/ # from upstream polkit1 branch, automatically generated Patch0: gnome-power-manager-port-to-polkit1.patch +# trivial, already upstream +Patch1: gnome-power-manager-2.27.2-fix-potfiles.patch + BuildRequires: libwnck-devel BuildRequires: hal-devel >= %{hal_version} BuildRequires: dbus-devel >= %{dbus_version} @@ -55,9 +58,10 @@ GNOME Power Preferences allows authorise change preferences. %prep -#%setup -q -%setup -q -n %{?name}-%{?version}-%{?alphatag} +%setup -q +#%setup -q -n %{?name}-%{?version}-%{?alphatag} %patch0 -p1 -b .polkit1 +%patch1 -p1 -b .potfiles # we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) autoreconf @@ -163,6 +167,9 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Mon Jul 06 2009 Richard Hughes - 2.27.2-1 +- Update to 2.27.1 + * Tue Jun 16 2009 Richard Hughes - 2.27.2-0.2.20090616git - Apply a patch to convert to the PolKit1 API. - Do autoreconf as the polkit patch is pretty invasive Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 16 Jun 2009 08:21:33 -0000 1.60 +++ sources 6 Jul 2009 14:50:35 -0000 1.61 @@ -1 +1 @@ -f075bc270cd5c8203b7ff90dace84ca6 gnome-power-manager-2.27.2-20090616.tar.gz +9245008c9dd1480e925156d84ef4f275 gnome-power-manager-2.27.2.tar.gz From avesh at fedoraproject.org Mon Jul 6 14:52:53 2009 From: avesh at fedoraproject.org (avesh agarwal) Date: Mon, 6 Jul 2009 14:52:53 +0000 (UTC) Subject: rpms/openswan/F-11 openswan-2.6.21-CVE-2009-2185.patch, NONE, 1.1 openswan-2.6.21-nss-fedora-diff-modified.patch, NONE, 1.1 openswan.spec, 1.78, 1.79 Message-ID: <20090706145253.336D011C02C8@cvs1.fedora.phx.redhat.com> Author: avesh Update of /cvs/pkgs/rpms/openswan/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv522 Modified Files: openswan.spec Added Files: openswan-2.6.21-CVE-2009-2185.patch openswan-2.6.21-nss-fedora-diff-modified.patch Log Message: * Mon Jul 06 2009 Avesh Agarwal - 2.6.21-5 - Added support for using PSK with NSS - Fixed several warnings and undid unnecessary comments - Updated README.nss with an example configuration - Fixed Openswan ASN.1 parser vulnerability (CVE-2009-2185) openswan-2.6.21-CVE-2009-2185.patch: --- NEW FILE openswan-2.6.21-CVE-2009-2185.patch --- --- ../openswan-2.6.21-orig/lib/libopenswan/asn1.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2/lib/libopenswan/asn1.c 2009-06-26 10:14:54.000000000 -0400 @@ -11,7 +11,6 @@ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: asn1.c,v 1.10 2005/08/05 17:33:27 mcr Exp $ */ #include @@ -77,8 +76,15 @@ asn1_length(chunk_t *blob) n = *blob->ptr++; blob->len--; - if ((n & 0x80) == 0) /* single length octet */ + if ((n & 0x80) == 0) { /* single length octet */ + if (n > blob->len) { + DBG(DBG_PARSING, + DBG_log("number of length octets is larger than ASN.1 object") + ) + return ASN1_INVALID_LENGTH; + } return n; + } /* composite length, determine number of length octets */ n &= 0x7f; @@ -107,6 +113,14 @@ asn1_length(chunk_t *blob) len = 256*len + *blob->ptr++; blob->len--; } + if (len > blob->len) + { + DBG(DBG_PARSING, + DBG_log("length is larger than remaining blob size") + ) + return ASN1_INVALID_LENGTH; + } + return len; } @@ -236,14 +250,21 @@ asn1totime(const chunk_t *utctime, asn1_ { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in positive timezone offset format */ + } + tz_offset = 3600*tz_hour + 60*tz_min; /* positive time zone offset */ } else if ((eot = memchr(utctime->ptr, '-', utctime->len)) != NULL) { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in negative timezone offset format */ + } tz_offset = -3600*tz_hour - 60*tz_min; /* negative time zone offset */ } else @@ -255,14 +276,22 @@ asn1totime(const chunk_t *utctime, asn1_ const char* format = (type == ASN1_UTCTIME)? "%2d%2d%2d%2d%2d": "%4d%2d%2d%2d%2d"; - sscanf((char *)utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, - &t.tm_hour, &t.tm_min); + if (sscanf(utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, + &t.tm_hour, &t.tm_min) != 5) + { + return 0; /* error in time st [yy]yymmddhhmm time format */ + } + } /* is there a seconds field? */ if ((eot - (char *)utctime->ptr) == ((type == ASN1_UTCTIME)?12:14)) { - sscanf(eot-2, "%2d", &t.tm_sec); + if (sscanf(eot-2, "%2d", &t.tm_sec) != 1) + { + return 0; /* error in ss seconds field format */ + } + } else { @@ -283,7 +312,11 @@ asn1totime(const chunk_t *utctime, asn1_ t.tm_year += 100; } - /* representation of month 0..11*/ + if (t.tm_mon < 1 || t.tm_mon > 12) + { + return 0; /* error in month format */ + } + /* representation of month 0..11 in struct tm */ t.tm_mon--; /* set daylight saving time to off */ @@ -384,7 +417,7 @@ extract_object(asn1Object_t const *objec blob1->len = asn1_length(blob); - if (blob1->len == ASN1_INVALID_LENGTH || blob->len < blob1->len) + if (blob1->len == ASN1_INVALID_LENGTH) { DBG(DBG_PARSING, DBG_log("L%d - %s: length of ASN1 object invalid or too large", openswan-2.6.21-nss-fedora-diff-modified.patch: --- NEW FILE openswan-2.6.21-nss-fedora-diff-modified.patch --- diff -urNp openswan-2.6.21/include/oswconf.h openswan-2.6.21-fedora-diff/include/oswconf.h --- openswan-2.6.21/include/oswconf.h 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/include/oswconf.h 2009-06-25 17:09:00.000000000 -0400 @@ -79,6 +79,10 @@ extern char *getNSSPassword(PK11SlotInfo extern bool Pluto_IsFIPS(void); #endif +//#ifdef FIPS_CHECK +//extern bool Pluto_IsFIPS(void); +//#endif + #endif /* _OSW_ALLOC_H_ */ /* diff -urNp openswan-2.6.21/lib/libcrypto/libmd5/md5.c openswan-2.6.21-fedora-diff/lib/libcrypto/libmd5/md5.c --- openswan-2.6.21/lib/libcrypto/libmd5/md5.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libcrypto/libmd5/md5.c 2009-06-25 18:25:00.000000000 -0400 @@ -74,8 +74,9 @@ documentation and/or software. #define S44 21 #define MD5Transform _MD5Transform - +#ifndef HAVE_LIBNSS static void MD5Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); +#endif #if BYTE_ORDER == LITTLE_ENDIAN #define Encode MD5_memcpy @@ -100,11 +101,13 @@ static void MD5_memcpy PROTO_LIST ((POIN static void MD5_memset PROTO_LIST ((POINTER, int, unsigned int)); #endif #endif +#ifndef HAVE_LIBNSS static unsigned char PADDING[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; +#endif /* F, G, H and I are basic MD5 functions. */ @@ -147,14 +150,14 @@ void osMD5Init (context) MD5_CTX *context; /* context */ { #ifdef HAVE_LIBNSS - DBG(DBG_CRYPT, DBG_log("NSS: md5 init start")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 init start")); SECStatus status; context->ctx_nss=NULL; context->ctx_nss = PK11_CreateDigestContext(SEC_OID_MD5); PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 init end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 init end")); #else context->count[0] = context->count[1] = 0; /* Load magic initialization constants. @@ -178,7 +181,7 @@ UINT4 inputLen; #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, input, inputLen); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 update end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 update end")); #else UINT4 i; unsigned int myindex, partLen; @@ -225,7 +228,7 @@ MD5_CTX *context; PR_ASSERT(length==MD5_DIGEST_SIZE); PR_ASSERT(status==SECSuccess); PK11_DestroyContext(context->ctx_nss, PR_TRUE); - DBG(DBG_CRYPT, DBG_log("NSS: md5 final end")); + //DBG(DBG_CRYPT, DBG_log("NSS: md5 final end")); #else unsigned char bits[8]; unsigned int myindex, padLen; @@ -256,6 +259,7 @@ MD5_CTX *context; /* MD5 basic transformation. Transforms state based on block. */ +#ifndef HAVE_LIBNSS static void MD5Transform (state, block) UINT4 state[4]; const unsigned char block[64]; @@ -345,6 +349,7 @@ const unsigned char block[64]; */ MD5_memset ((POINTER)x, 0, sizeof (x)); } +#endif #if BYTE_ORDER != LITTLE_ENDIAN diff -urNp openswan-2.6.21/lib/libcrypto/libsha1/sha1.c openswan-2.6.21-fedora-diff/lib/libcrypto/libsha1/sha1.c --- openswan-2.6.21/lib/libcrypto/libsha1/sha1.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libcrypto/libsha1/sha1.c 2009-06-22 21:14:50.000000000 -0400 @@ -124,7 +124,7 @@ void SHA1Init(SHA1_CTX* context) PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 init end")); + //DBG(DBG_CRYPT, DBG_log("NSS: sha1 init end")); #else /* SHA1 initialization constants */ context->state[0] = 0x67452301; @@ -144,7 +144,7 @@ void SHA1Update(SHA1_CTX* context, const #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, data, len); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 update end")); + //DBG(DBG_CRYPT, DBG_log("NSS: sha1 update end")); /*loglog(RC_LOG_SERIOUS, "enter sha1 ctx update end");*/ #else u_int32_t i; diff -urNp openswan-2.6.21/lib/libipsecconf/confread.c openswan-2.6.21-fedora-diff/lib/libipsecconf/confread.c --- openswan-2.6.21/lib/libipsecconf/confread.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libipsecconf/confread.c 2009-06-27 00:08:09.000000000 -0400 @@ -32,6 +32,11 @@ #include "ipsecconf/starterlog.h" #include "ipsecconf/oeconns.h" +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK +#include "oswconf.h" +#endif + static char _tmp_err[512]; /** @@ -969,6 +974,18 @@ static int load_conn (struct starter_con /* reset authby flags */ if(conn->options_set[KBF_AUTHBY]) { conn->policy &= ~(POLICY_ID_AUTH_MASK); + +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK + if(Pluto_IsFIPS()) { + if((conn->options[KBF_AUTHBY] & POLICY_PSK) == POLICY_PSK){ + starter_log(LOG_LEVEL_INFO + ,"while loading conn '%s', PSK not allowed in FIPS mode with NSS", conn->name); + return 1; + } + } +#endif + conn->policy |= conn->options[KBF_AUTHBY]; #if STARTER_POLICY_DEBUG diff -urNp openswan-2.6.21/lib/libipsecconf/Makefile openswan-2.6.21-fedora-diff/lib/libipsecconf/Makefile --- openswan-2.6.21/lib/libipsecconf/Makefile 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libipsecconf/Makefile 2009-06-25 18:18:35.000000000 -0400 @@ -32,6 +32,13 @@ SRCS+=interfaces.c #enable to get lots more debugging about semantics. #CFLAGS+=-DPARSER_TYPE_DEBUG +#ifeq ($(USE_FIPSCHECK),true) +#CFLAGS+=-DFIPS_CHECK +ifeq ($(USE_LIBNSS),true) +CFLAGS+=-DHAVE_LIBNSS +CFLAGS+=-I/usr/include/nspr4 -I/usr/include/nss3 +endif + ifeq ($(USE_KLIPS),true) SRCS+=virtif.c endif diff -urNp openswan-2.6.21/lib/libopenswan/alg_info.c openswan-2.6.21-fedora-diff/lib/libopenswan/alg_info.c --- openswan-2.6.21/lib/libopenswan/alg_info.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libopenswan/alg_info.c 2009-06-27 00:43:35.000000000 -0400 @@ -36,6 +36,10 @@ #include "oswlog.h" #include "oswalloc.h" +#ifdef HAVE_LIBNSS +#include "oswconf.h" +#endif + /* abstract reference */ struct oakley_group_desc; @@ -625,6 +629,13 @@ parser_alg_info_add(struct parser_contex p_ctx->err="hash_alg not found"; goto out; } + +#ifdef HAVE_LIBNSS + if ( Pluto_IsFIPS() && ((aalg_id == OAKLEY_SHA2_256 ) ||(aalg_id == OAKLEY_SHA2_384 ) || (aalg_id == OAKLEY_SHA2_512 )) ) { + p_ctx->err="SHA2 Not supported in FIPS mode with NSS"; + goto out; + } +#endif DBG(DBG_CRYPT, DBG_log("parser_alg_info_add() " "aalg_getbyname(\"%s\")=%d", p_ctx->aalg_buf, diff -urNp openswan-2.6.21/lib/libopenswan/Makefile openswan-2.6.21-fedora-diff/lib/libopenswan/Makefile --- openswan-2.6.21/lib/libopenswan/Makefile 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2.6.21-fedora-diff/lib/libopenswan/Makefile 2009-06-25 17:20:41.000000000 -0400 @@ -103,6 +103,10 @@ CFLAGS+=-DHAVE_LIBNSS CFLAGS+=-I/usr/include/nspr4 -I/usr/include/nss3 endif [...1772 lines suppressed...] PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 1); - snprintf(buf, sizeof(buf), "sql:%s",configdir); + snprintf(buf, sizeof(buf), "sql:%s",configdir); if ((rv = NSS_InitReadWrite(buf)) != SECSuccess) { fprintf(stderr, "%s: NSS_InitReadWrite returned %d\n", me, PR_GetError()); break; @@ -590,10 +590,10 @@ rsasigkey(int nbits, char *configdir, ch PK11_SetPasswordFunc(GetModulePassword); nss_initialized = PR_TRUE; - /* Good for now but someone may want to use a hardware token - *slot = PK11_GetInternalKeySlot(); - * In which case this may be better*/ - slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); + /* Good for now but someone may want to use a hardware token*/ + slot = PK11_GetInternalKeySlot(); + /* In which case this may be better*/ + //slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); /*or the user may specify the name of a token. */ diff -urNp openswan-2.6.21/programs/showhostkey/showhostkey.c openswan-2.6.21-fedora-diff/programs/showhostkey/showhostkey.c --- openswan-2.6.21/programs/showhostkey/showhostkey.c 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/programs/showhostkey/showhostkey.c 2009-05-18 22:53:35.000000000 -0400 @@ -489,7 +489,7 @@ int main(int argc, char *argv[]) PRBool nss_initialized = PR_FALSE; SECStatus rv; char buf[100]; - snprintf(buf, sizeof(buf), "sql:%s",oco->confddir); + snprintf(buf, sizeof(buf), "sql:%s",oco->confddir); loglog(RC_LOG_SERIOUS,"nss directory showhostkey: %s",buf); PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 1); if ((rv = NSS_InitReadWrite(buf)) != SECSuccess){ diff -urNp openswan-2.6.21/README.nss openswan-2.6.21-fedora-diff/README.nss --- openswan-2.6.21/README.nss 2009-05-18 22:52:31.000000000 -0400 +++ openswan-2.6.21-fedora-diff/README.nss 2009-06-27 00:22:42.000000000 -0400 @@ -2,12 +2,11 @@ Title: Using NSS crypto library with Plu Author: Avesh Agarwal email: avagarwa at redhat.com Version:0.0 - About NSS crypto library -------------------------- Please visit http://www.mozilla.org/projects/security/pki/nss/ -NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. +NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. Openswan with NSS supports IKEV1, IKEv2, authentication using PSK, Raw RSA Sig key, and Digital Certs. How to enable NSS crypto library with Openswan @@ -49,9 +48,9 @@ About the password file "nsspassword" If you create the database with a password, and want to run NSS in FIPS mode, you must create a password file with the name "nsspassword" in the /etc/ipsec.d before running pluto with NSS. The "nsspassword" file must contain the password you provided when creating NSS database. Important thing to note: -i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode and even if you create the NSS database with a password, you need not create a "nsspassword" file. +i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode, then you can create the NSS database without password, and you need not create a "nsspassword" file. However, if the NSS db is created with a password, the "nsspassword" file must also be provided. -ii) If you create he "nsspassword" file, it must contain only the password nothing else. +ii) If you create the "nsspassword" file, it must contain only the password nothing else. Generating RSA keys when using NSS @@ -60,7 +59,7 @@ You can still use ipsec newhostkey and i ipsec newhostkey --configdir /etc/ipsec.d [--password password] --output /etc/ipsec.d/ipsec.secrets -A password is only required if NSS database is used in FIPS mode. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. +A password is only required if NSS database created with password. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. Public key information in ipsec.secrets is stored in the same way as before. However, all the fields of the Private key information contain just a similar ID. This ID is called CKA ID, which is used to locate private keys inside NSS database during the IKE negotiation. @@ -90,9 +89,9 @@ It creates a user cert with nick name "u Important thing to note: You must provided a nick name when creating a user cert, because Pluto reads the user cert from the NSS database nased on the user cert's nickname. -Changes in the certitificates usage with Pluto +Changes in the certificates usage with Pluto ------------------------------------------------ -1) ipsec.comf changes +1) ipsec.conf changes The only change is "leftcert" field must contain the nick name of the user cert. For example if the nickname of the user cert is "xyz", then it can be "leftid=xyz". @@ -109,9 +108,111 @@ There is no need to provide private key 3) changes in the directories in /etc/ipsec.d/ (cacerts, certs, private) i)You need not have "private" or "certs" directory. -ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory,as Pluto can read the CA cert from the database. +ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory, as Pluto can read the CA cert from the database. + + +An example Scenario: To setup ipsec with certs in tunnel mode using NSS +------------------------------------------------------------ + +GW Machine 1: w1.x1.y1.z1 +GW Machine 2: w2.x2.y2.z2 + +w1.x1.y1.z1 <---> w2.x2.y2.z2 + +Note: In this example setup, both machines are using NSS. If you want to use +NSS only at one machine, say machine 1, you can use the following procedure +only at machine 1, and you can use traditional ipsec setup at machine 2. + +1. Create a new (if not already) nss db on both machines as follows: + +certutil -N -d /ipsec.d + +2. Creating CA certs at both machines: + +On machine 1: +certutil -S -k rsa -n cacert1 -s "CN=cacert1" -v 12 -d . -t "C,C,C" -x -d +/ipsec.d + +As we want to use the same certificate "cacert1" at machine 2, it needs to be +exported first. To export the cacert1, do the following at machine 1: + +pk12util -o cacert1.p12 -n cacert1 -d /etc/ipsec.d + +Copy the file "cacert1.p12" to the machine2 in "/etc/ipsec.d" directory. + +On machine 2: +Import the "cacert1" as follows: + +cd /etc/ipsec.d +pk12util -i cacert1.p12 -d /etc/ipsec.d +certutil -M -n cacert1 -t "C, C, C" -d /etc/ipsec.d + +Now machine 2 also has the CA certificates "cacert1" in its NSS database. + +3. Creating user certs at both machines: + +On machine 1: +certutil -S -k rsa -c cacert1 -n usercert1 -s "CN=usercert1" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1") + +On machine 2: +certutil -S -k rsa -c cacert1 -n usercert2 -s "CN=usercert2" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1" too) + +4. Preparing ipsec.conf at both machines + +ipsec.conf at machine 1: + + +conn pluto-1-2 + left=w1.x1.y1.z1 + leftid="CN=usercert1" + leftsourceip=w1.x1.y1.z1 + leftrsasigkey=%cert + leftcert=usercert1 + leftnexthop=w2.x2.y2.z2 + right=w2.x2.y2.z2 + rightid="CN=usercert2" + rightsourceip=w2.x2.y2.z2 + rightrsasigkey=%cert + rightnexthop=w1.x1.y1.z1 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + + +ipsec.conf at machine 2: + + +conn pluto-1-2 + left=w2.x2.y2.z2 + leftid="CN=usercert2" + leftsourceip=w2.x2.y2.z2 + leftrsasigkey=%cert + leftcert=usercert2 + leftnexthop=w1.x1.y1.z1 + right=w1.x1.y1.z1 + rightid="CN=usercert1" + rightsourceip=w1.x1.y1.z1 + rightrsasigkey=%cert + rightnexthop=w2.x2.y2.z2 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + +5. Preparing ipsec.secrets at both machines + +ipsec.secrets at machine 1: + + : RSA usercert1 + + +ipsec.secrets at machine 1: + + : RSA usercert2 -Things not supported ---------------------- -PSK: It is not supported when using NSS, because it required both pluto peers to have a mutual keys created outside the NSS database. So It should not be configured with NSS. Index: openswan.spec =================================================================== RCS file: /cvs/pkgs/rpms/openswan/F-11/openswan.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- openswan.spec 14 Apr 2009 20:01:08 -0000 1.78 +++ openswan.spec 6 Jul 2009 14:52:23 -0000 1.79 @@ -4,7 +4,7 @@ Summary: Openswan IPSEC implementation Name: openswan Version: 2.6.21 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Url: http://www.openswan.org/ Source: openswan-%{version}.tar.gz @@ -17,6 +17,8 @@ Patch3: openswan-2.6-selinux.patch Patch4: openswan-2.6.16-initscript-correction.patch Patch5: openswan-2.6.21-gcc44.patch Patch6: openswan-2.6.21-nss.patch +Patch7: openswan-2.6.21-nss-fedora-diff-modified.patch +Patch8: openswan-2.6.21-CVE-2009-2185.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -70,6 +72,8 @@ find doc -name .gitignore -print0 | xarg %patch4 -p1 %patch5 -p1 %patch6 -p1 +%patch7 -p1 +%patch8 -p1 %build @@ -169,6 +173,12 @@ fi chkconfig --add ipsec || : %changelog +* Mon Jul 06 2009 Avesh Agarwal - 2.6.21-5 +- Added support for using PSK with NSS +- Fixed several warnings and undid unnecessary comments +- Updated README.nss with an example configuration +- Fixed Openswan ASN.1 parser vulnerability (CVE-2009-2185) + * Tue Apr 14 2009 Avesh Agarwal - 2.6.21-4 - Updated the Openswan-NSS porting to enable nss and fipscheck by default - fipscheck requires fipscheck-devel library From ajax at fedoraproject.org Mon Jul 6 14:55:19 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 6 Jul 2009 14:55:19 +0000 (UTC) Subject: rpms/libxcb/devel libxcb.spec,1.23,1.24 Message-ID: <20090706145519.3008811C02C8@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1148 Modified Files: libxcb.spec Log Message: * Mon Jul 06 2009 Adam Jackson 1.2-7 - Fix xpyb build Index: libxcb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/libxcb.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libxcb.spec 29 Jun 2009 14:59:34 -0000 1.23 +++ libxcb.spec 6 Jul 2009 14:54:48 -0000 1.24 @@ -2,9 +2,12 @@ %define xpyb_version 1.1 +# Define this when bootstrapping to avoid the xpyb loop +#define bootstrap 1 + Name: libxcb Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A C binding to the X11 protocol Group: System Environment/Libraries @@ -32,6 +35,9 @@ BuildRequires: python BuildRequires: xcb-proto >= 1.5 BuildRequires: xorg-x11-proto-devel BuildRequires: xorg-x11-util-macros +%if !0%{?bootstrap} +BuildRequires: libxcb-devel +%endif %description The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a @@ -56,6 +62,7 @@ BuildArch: noarch %description doc The %{name}-doc package contains documentation for the %{name} library. +%if !0%{?bootstrap} %package python Summary: Python bindings for %{name} Group: Development/Libraries @@ -63,6 +70,7 @@ Provides: xpyb %description python Python bindings for %{name}. +%endif %prep %setup -q -b2 @@ -76,10 +84,12 @@ autoreconf -v --install --enable-selinux make %{?_smp_mflags} +%if !0%{?bootstrap} pushd ../xpyb-%{xpyb_version} %configure make %{?_smp_mflags} popd +%endif %install rm -rf $RPM_BUILD_ROOT @@ -87,9 +97,11 @@ make install DESTDIR=$RPM_BUILD_ROOT install -m 644 COPYING NEWS README $RPM_BUILD_ROOT/%{_datadir}/doc/%{name}-%{version} sed 's, at libdir@,%{_libdir},;s, at prefix@,%{_prefix},;s, at exec_prefix@,%{_exec_prefix},' %{SOURCE1} > $RPM_BUILD_ROOT%{_libdir}/pkgconfig/pthread-stubs.pc +%if !0%{?bootstrap} pushd ../xpyb-%{xpyb_version} make install DESTDIR=$RPM_BUILD_ROOT popd +%endif find $RPM_BUILD_ROOT -name '*.la' -delete @@ -113,11 +125,16 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{_datadir}/doc/%{name}-%{version} +%if !0%{?bootstrap} %files python %defattr(-,root,root,-) %{python_sitearch}/xcb +%endif %changelog +* Mon Jul 06 2009 Adam Jackson 1.2-7 +- Fix xpyb build + * Mon Jun 29 2009 Adam Jackson 1.2-6 - BuildRequires: xcb-proto >= 1.5 From jkratoch at fedoraproject.org Mon Jul 6 14:55:57 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Mon, 6 Jul 2009 14:55:57 +0000 (UTC) Subject: rpms/gdb/F-11 gdb-archer.patch,1.18,1.19 gdb.spec,1.356,1.357 Message-ID: <20090706145557.5CA0C11C02C8@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/gdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1380 Modified Files: gdb-archer.patch gdb.spec Log Message: * Mon Jul 6 2009 Jan Kratochvil - 6.8.50.20090302-33 - Archer update to the snapshot: 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb - Archer backport: de9c5190034b84b0a5fb4b98b05b304cda187700 - [vla] Fix a crash regression on constant DW_AT_data_member_location. gdb-archer.patch: Index: gdb-archer.patch =================================================================== RCS file: /cvs/pkgs/rpms/gdb/F-11/gdb-archer.patch,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gdb-archer.patch 16 Jun 2009 14:31:55 -0000 1.18 +++ gdb-archer.patch 6 Jul 2009 14:55:56 -0000 1.19 @@ -2,7 +2,7 @@ http://sourceware.org/gdb/wiki/ProjectAr http://sourceware.org/gdb/wiki/ArcherBranchManagement GIT snapshot: -commit 05c402a02716177c4ddd272a6e312cbd2908ed68 +commit 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb branch `archer' - the merge of branches: archer-jankratochvil-merge-expr @@ -14616,7 +14616,7 @@ index 76577f1..bf46761 100644 #endif /* dwarf2loc.h */ diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c -index 55868da..b4720e8 100644 +index 55868da..9bc1386 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1,8 +1,7 @@ @@ -14818,13 +14818,13 @@ index 55868da..b4720e8 100644 static unsigned int dwarf2_get_ref_die_offset (struct attribute *); -static int dwarf2_get_attr_constant_value (struct attribute *, int); -+enum dwarf2_get_attr_constant_value ++enum get_attr_constant_value + { + dwarf2_attr_unknown, + dwarf2_attr_const, + dwarf2_attr_block + }; -+static enum dwarf2_get_attr_constant_value dwarf2_get_attr_constant_value ++static enum get_attr_constant_value get_attr_constant_value + (struct attribute *attr, int *val_return); static struct die_info *follow_die_ref (struct die_info *, @@ -16011,7 +16011,21 @@ index 55868da..b4720e8 100644 { best_low = current_low; best_high = current_high; -@@ -3750,8 +4277,14 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, +@@ -3667,7 +4194,12 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, + byte_offset = 0; + } + else if (attr_form_is_constant (attr)) +- byte_offset = dwarf2_get_attr_constant_value (attr, 0); ++ { ++ enum get_attr_constant_value type; ++ ++ type = get_attr_constant_value (attr, &byte_offset); ++ gdb_assert (type == dwarf2_attr_const); ++ } + else + byte_offset = decode_locdesc (DW_BLOCK (attr), cu); + +@@ -3750,8 +4282,14 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, if (fieldname == NULL) return; @@ -16027,7 +16041,7 @@ index 55868da..b4720e8 100644 /* The name is already allocated along with this objfile, so we don't need to duplicate it for the type. */ -@@ -3881,8 +4414,14 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, +@@ -3881,8 +4419,14 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, if (fieldname == NULL) return; @@ -16043,7 +16057,7 @@ index 55868da..b4720e8 100644 /* Look up member function name in fieldlist. */ for (i = 0; i < fip->nfnfields; i++) -@@ -3926,7 +4465,7 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, +@@ -3926,7 +4470,7 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, /* The name is already allocated along with this objfile, so we don't need to duplicate it for the type. */ fnp->physname = physname ? physname : ""; @@ -16052,7 +16066,7 @@ index 55868da..b4720e8 100644 this_type = read_type_die (die, cu); if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC) { -@@ -4110,7 +4649,7 @@ quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu) +@@ -4110,7 +4654,7 @@ quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu) return NULL; domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0)); @@ -16061,7 +16075,7 @@ index 55868da..b4720e8 100644 smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type), TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type), TYPE_VARARGS (pfn_type)); -@@ -4147,7 +4686,7 @@ read_structure_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4147,7 +4691,7 @@ read_structure_type (struct die_info *die, struct dwarf2_cu *cu) if (type) return type; @@ -16070,7 +16084,7 @@ index 55868da..b4720e8 100644 INIT_CPLUS_SPECIFIC (type); name = dwarf2_name (die, cu); if (name != NULL) -@@ -4360,7 +4899,7 @@ read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4360,7 +4904,7 @@ read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu) struct attribute *attr; const char *name; @@ -16079,7 +16093,7 @@ index 55868da..b4720e8 100644 TYPE_CODE (type) = TYPE_CODE_ENUM; name = dwarf2_full_name (die, cu); -@@ -4410,10 +4949,15 @@ determine_class_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -4410,10 +4954,15 @@ determine_class_name (struct die_info *die, struct dwarf2_cu *cu) { if (child->tag == DW_TAG_subprogram) { @@ -16098,7 +16112,7 @@ index 55868da..b4720e8 100644 if (phys_prefix != NULL) { -@@ -4510,6 +5054,29 @@ process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu) +@@ -4510,6 +5059,29 @@ process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu) new_symbol (die, this_type, cu); } @@ -16128,7 +16142,7 @@ index 55868da..b4720e8 100644 /* Extract all information from a DW_TAG_array_type DIE and put it in the DIE's type field. For now, this only handles one dimensional arrays. */ -@@ -4523,7 +5090,7 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4523,7 +5095,7 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) struct type *element_type, *range_type, *index_type; struct type **range_types = NULL; struct attribute *attr; @@ -16137,7 +16151,7 @@ index 55868da..b4720e8 100644 struct cleanup *back_to; char *name; -@@ -4570,16 +5137,11 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4570,16 +5142,11 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) type = element_type; if (read_array_order (die, cu) == DW_ORD_col_major) @@ -16159,7 +16173,7 @@ index 55868da..b4720e8 100644 /* Understand Dwarf2 support for vector types (like they occur on the PowerPC w/ AltiVec). Gcc just adds another attribute to the -@@ -4646,12 +5208,14 @@ read_set_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4646,12 +5213,14 @@ read_set_type (struct die_info *die, struct dwarf2_cu *cu) return set_die_type (die, set_type, cu); } @@ -16176,7 +16190,7 @@ index 55868da..b4720e8 100644 struct attribute *attr; struct symbol *sym; CORE_ADDR base = (CORE_ADDR) 0; -@@ -4676,10 +5240,40 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) +@@ -4676,10 +5245,40 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) } if (die->child != NULL) { @@ -16217,7 +16231,7 @@ index 55868da..b4720e8 100644 attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu); if (attr) { -@@ -4687,8 +5281,25 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) +@@ -4687,8 +5286,25 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) base + decode_locdesc (DW_BLOCK (attr), cu); add_symbol_to_list (sym, &global_symbols); } @@ -16243,7 +16257,7 @@ index 55868da..b4720e8 100644 } } -@@ -4756,9 +5367,7 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) +@@ -4756,9 +5372,7 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) if (is_anonymous) { const char *previous_prefix = determine_prefix (die, cu); @@ -16254,7 +16268,7 @@ index 55868da..b4720e8 100644 } } -@@ -4774,20 +5383,155 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) +@@ -4774,20 +5388,155 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) } } @@ -16267,9 +16281,10 @@ index 55868da..b4720e8 100644 { - struct die_info *child_die = die->child; + struct type *type; -+ + +- /* FIXME: Support the separate Fortran module namespaces. */ + type = read_module_type (die, cu); -+ + + if (type) + new_symbol (die, type, cu); +} @@ -16300,10 +16315,9 @@ index 55868da..b4720e8 100644 + complaint (&symfile_complaints, _("DW_TAG_module has no name, offset 0x%x"), + die->offset); + type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile); - -- /* FIXME: Support the separate Fortran module namespaces. */ ++ + /* Create a context for reading the module variables. */ - ++ + new = push_context (0, 0); + + save_file_symbols = file_symbols; @@ -16413,7 +16427,7 @@ index 55868da..b4720e8 100644 } /* Return the name of the namespace represented by DIE. Set -@@ -4951,29 +5695,95 @@ read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4951,29 +5700,95 @@ read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu) struct objfile *objfile = cu->objfile; struct type *type, *range_type, *index_type, *char_type; struct attribute *attr; @@ -16438,7 +16452,7 @@ index 55868da..b4720e8 100644 - else - { - /* check for the DW_AT_byte_size attribute */ -+ switch (dwarf2_get_attr_constant_value (attr, &length)) ++ switch (get_attr_constant_value (attr, &length)) + { + case dwarf2_attr_const: + /* We currently do not support a constant address where the location @@ -16455,7 +16469,7 @@ index 55868da..b4720e8 100644 - { - length = 1; - } -+ switch (dwarf2_get_attr_constant_value (attr, &length)) ++ switch (get_attr_constant_value (attr, &length)) + { + case dwarf2_attr_unknown: + length = 1; @@ -16527,7 +16541,7 @@ index 55868da..b4720e8 100644 type = create_string_type (NULL, range_type); return set_die_type (die, type, cu); -@@ -5067,7 +5877,6 @@ static struct type * +@@ -5067,7 +5882,6 @@ static struct type * read_typedef (struct die_info *die, struct dwarf2_cu *cu) { struct objfile *objfile = cu->objfile; @@ -16535,18 +16549,18 @@ index 55868da..b4720e8 100644 const char *name = NULL; struct type *this_type; -@@ -5175,8 +5984,8 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -5175,8 +5989,8 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) struct type *base_type; struct type *range_type; struct attribute *attr; - int low = 0; - int high = -1; + int low, high, byte_stride_int; -+ enum dwarf2_get_attr_constant_value high_type; ++ enum get_attr_constant_value high_type; char *name; base_type = die_type (die, cu); -@@ -5189,42 +5998,90 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -5189,42 +6003,90 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) 0, NULL, cu->objfile); } @@ -16564,7 +16578,7 @@ index 55868da..b4720e8 100644 attr = dwarf2_attr (die, DW_AT_lower_bound, cu); - if (attr) - low = dwarf2_get_attr_constant_value (attr, 0); -+ switch (dwarf2_get_attr_constant_value (attr, &low)) ++ switch (get_attr_constant_value (attr, &low)) + { + case dwarf2_attr_unknown: + if (cu->language == language_fortran) @@ -16614,11 +16628,11 @@ index 55868da..b4720e8 100644 - } - else - high = dwarf2_get_attr_constant_value (attr, 1); -+ high_type = dwarf2_get_attr_constant_value (attr, &high); ++ high_type = get_attr_constant_value (attr, &high); + if (high_type == dwarf2_attr_unknown) + { + attr = dwarf2_attr (die, DW_AT_count, cu); -+ high_type = dwarf2_get_attr_constant_value (attr, &high); ++ high_type = get_attr_constant_value (attr, &high); + /* It does not hurt but it is needlessly ineffective in check_typedef. */ + if (high_type != dwarf2_attr_unknown) + { @@ -16647,7 +16661,7 @@ index 55868da..b4720e8 100644 - range_type = create_range_type (NULL, base_type, low, high); + /* DW_AT_bit_stride is currently unsupported as we count in bytes. */ + attr = dwarf2_attr (die, DW_AT_byte_stride, cu); -+ switch (dwarf2_get_attr_constant_value (attr, &byte_stride_int)) ++ switch (get_attr_constant_value (attr, &byte_stride_int)) + { + case dwarf2_attr_unknown: + break; @@ -16667,7 +16681,7 @@ index 55868da..b4720e8 100644 name = dwarf2_name (die, cu); if (name) -@@ -5386,10 +6243,13 @@ read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, +@@ -5386,10 +6248,13 @@ read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, } /* Decompress a section that was compressed using zlib. Store the @@ -16683,7 +16697,7 @@ index 55868da..b4720e8 100644 gdb_byte **outbuf, bfd_size_type *outsize) { bfd *abfd = objfile->obfd; -@@ -5405,6 +6265,7 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5405,6 +6270,7 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, z_stream strm; int rc; int header_size = 12; @@ -16691,7 +16705,7 @@ index 55868da..b4720e8 100644 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0 || bfd_bread (compressed_buffer, compressed_size, abfd) != compressed_size) -@@ -5434,8 +6295,13 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5434,8 +6300,13 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, strm.avail_in = compressed_size - header_size; strm.next_in = (Bytef*) compressed_buffer + header_size; strm.avail_out = uncompressed_size; @@ -16707,7 +16721,7 @@ index 55868da..b4720e8 100644 rc = inflateInit (&strm); while (strm.avail_in > 0) { -@@ -5456,6 +6322,8 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5456,6 +6327,8 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"), bfd_get_filename (abfd), rc); @@ -16716,7 +16730,7 @@ index 55868da..b4720e8 100644 xfree (compressed_buffer); *outbuf = uncompressed_buffer; *outsize = uncompressed_size; -@@ -5463,17 +6331,20 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5463,17 +6336,20 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, } @@ -16742,7 +16756,7 @@ index 55868da..b4720e8 100644 if (size == 0) return NULL; -@@ -5486,30 +6357,49 @@ dwarf2_read_section (struct objfile *objfile, asection *sectp) +@@ -5486,30 +6362,49 @@ dwarf2_read_section (struct objfile *objfile, asection *sectp) /* Upon decompression, update the buffer and its size. */ if (strncmp (header, "ZLIB", sizeof (header)) == 0) { @@ -16795,7 +16809,7 @@ index 55868da..b4720e8 100644 /* In DWARF version 2, the description of the debugging information is stored in a separate .debug_abbrev section. Before we read any dies from a section we read in all abbreviations and install them -@@ -5749,6 +6639,7 @@ load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab, +@@ -5749,6 +6644,7 @@ load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab, && abbrev->tag != DW_TAG_lexical_block && abbrev->tag != DW_TAG_variable && abbrev->tag != DW_TAG_namespace @@ -16803,7 +16817,7 @@ index 55868da..b4720e8 100644 && abbrev->tag != DW_TAG_member) { /* Otherwise we skip to the next sibling, if any. */ -@@ -5914,15 +6805,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -5914,15 +6810,6 @@ read_partial_die (struct partial_die_info *part_die, struct attribute attr; int has_low_pc_attr = 0; int has_high_pc_attr = 0; @@ -16819,7 +16833,7 @@ index 55868da..b4720e8 100644 memset (part_die, 0, sizeof (struct partial_die_info)); -@@ -5945,47 +6827,35 @@ read_partial_die (struct partial_die_info *part_die, +@@ -5945,47 +6832,35 @@ read_partial_die (struct partial_die_info *part_die, switch (attr.name) { case DW_AT_name: @@ -16885,7 +16899,7 @@ index 55868da..b4720e8 100644 case DW_AT_location: /* Support the .debug_loc offsets */ if (attr_form_is_block (&attr)) -@@ -6002,9 +6872,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6002,9 +6877,6 @@ read_partial_die (struct partial_die_info *part_die, "partial symbol information"); } break; @@ -16895,7 +16909,7 @@ index 55868da..b4720e8 100644 case DW_AT_external: part_die->is_external = DW_UNSND (&attr); break; -@@ -6029,10 +6896,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6029,10 +6901,6 @@ read_partial_die (struct partial_die_info *part_die, part_die->sibling = dwarf2_per_objfile->info_buffer + dwarf2_get_ref_die_offset (&attr); break; @@ -16906,7 +16920,7 @@ index 55868da..b4720e8 100644 case DW_AT_byte_size: part_die->has_byte_size = 1; break; -@@ -6074,13 +6937,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6074,13 +6942,6 @@ read_partial_die (struct partial_die_info *part_die, || dwarf2_per_objfile->has_section_at_zero)) part_die->has_pc_info = 1; @@ -16920,7 +16934,7 @@ index 55868da..b4720e8 100644 return info_ptr; } -@@ -6173,7 +7029,9 @@ fixup_partial_die (struct partial_die_info *part_die, +@@ -6173,7 +7034,9 @@ fixup_partial_die (struct partial_die_info *part_die, /* If we found a reference attribute and the DIE has no name, try to find a name in the referred to DIE. */ @@ -16931,7 +16945,7 @@ index 55868da..b4720e8 100644 { struct partial_die_info *spec_die; -@@ -6189,6 +7047,9 @@ fixup_partial_die (struct partial_die_info *part_die, +@@ -6189,6 +7052,9 @@ fixup_partial_die (struct partial_die_info *part_die, if (spec_die->is_external) part_die->is_external = spec_die->is_external; } @@ -16941,7 +16955,7 @@ index 55868da..b4720e8 100644 } /* Set default names for some unnamed DIEs. */ -@@ -7512,10 +8373,12 @@ var_decode_location (struct attribute *attr, struct symbol *sym, +@@ -7512,10 +8378,12 @@ var_decode_location (struct attribute *attr, struct symbol *sym, (i.e. when the value of a register or memory location is referenced, or a thread-local block, etc.). Then again, it might not be worthwhile. I'm assuming that it isn't unless performance @@ -16956,7 +16970,7 @@ index 55868da..b4720e8 100644 } /* Given a pointer to a DWARF information entry, figure out if we need -@@ -7538,20 +8401,49 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7538,20 +8406,49 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); if (die->tag != DW_TAG_namespace) @@ -17009,7 +17023,7 @@ index 55868da..b4720e8 100644 /* Default assumptions. Use the passed type or decode it from the die. */ -@@ -7637,9 +8529,28 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7637,9 +8534,28 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) if (attr) { var_decode_location (attr, sym, cu); @@ -17039,7 +17053,7 @@ index 55868da..b4720e8 100644 else add_symbol_to_list (sym, cu->list_in_scope); } -@@ -7656,7 +8567,7 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7656,7 +8572,7 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) && dwarf2_attr (die, DW_AT_type, cu) != NULL) { SYMBOL_CLASS (sym) = LOC_UNRESOLVED; @@ -17048,7 +17062,7 @@ index 55868da..b4720e8 100644 } } break; -@@ -7780,6 +8691,16 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7780,6 +8696,16 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) SYMBOL_CLASS (sym) = LOC_TYPEDEF; add_symbol_to_list (sym, &global_symbols); break; @@ -17065,7 +17079,7 @@ index 55868da..b4720e8 100644 default: /* Not a tag we recognize. Hopefully we aren't processing trash data, but since we must specifically ignore things -@@ -7826,6 +8747,7 @@ dwarf2_const_value (struct attribute *attr, struct symbol *sym, +@@ -7826,6 +8752,7 @@ dwarf2_const_value (struct attribute *attr, struct symbol *sym, DW_ADDR (attr)); SYMBOL_CLASS (sym) = LOC_CONST_BYTES; break; @@ -17073,7 +17087,7 @@ index 55868da..b4720e8 100644 case DW_FORM_strp: /* DW_STRING is already allocated on the obstack, point directly to it. */ -@@ -8042,12 +8964,18 @@ read_type_die (struct die_info *die, struct dwarf2_cu *cu) +@@ -8042,12 +8969,18 @@ read_type_die (struct die_info *die, struct dwarf2_cu *cu) case DW_TAG_namespace: this_type = read_namespace_type (die, cu); break; @@ -17092,7 +17106,7 @@ index 55868da..b4720e8 100644 return this_type; } -@@ -8113,9 +9041,18 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) +@@ -8113,9 +9046,18 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) switch (parent->tag) { case DW_TAG_namespace: @@ -17114,7 +17128,7 @@ index 55868da..b4720e8 100644 case DW_TAG_class_type: case DW_TAG_interface_type: case DW_TAG_structure_type: -@@ -8128,6 +9065,19 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) +@@ -8128,6 +9070,19 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) members; no typedefs, no member functions, et cetera. So it does not need a prefix. */ return ""; @@ -17134,7 +17148,7 @@ index 55868da..b4720e8 100644 default: return determine_prefix (parent, cu); } -@@ -8192,12 +9142,64 @@ dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -8192,12 +9147,64 @@ dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu) attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu); if (attr && DW_STRING (attr)) return DW_STRING (attr); @@ -17202,7 +17216,7 @@ index 55868da..b4720e8 100644 /* Get name of a die, return NULL if not found. */ static char * -@@ -8206,9 +9208,29 @@ dwarf2_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -8206,9 +9213,29 @@ dwarf2_name (struct die_info *die, struct dwarf2_cu *cu) struct attribute *attr; attr = dwarf2_attr (die, DW_AT_name, cu); @@ -17235,7 +17249,7 @@ index 55868da..b4720e8 100644 } /* Return the die that this die in an extension of, or NULL if there -@@ -8703,6 +9725,8 @@ dwarf_form_name (unsigned form) +@@ -8703,6 +9730,8 @@ dwarf_form_name (unsigned form) return "DW_FORM_ref_udata"; case DW_FORM_indirect: return "DW_FORM_indirect"; @@ -17244,7 +17258,7 @@ index 55868da..b4720e8 100644 default: return "DW_FORM_"; } -@@ -9353,26 +10377,35 @@ dwarf2_get_ref_die_offset (struct attribute *attr) +@@ -9353,26 +10382,35 @@ dwarf2_get_ref_die_offset (struct attribute *attr) return result; } @@ -17254,8 +17268,8 @@ index 55868da..b4720e8 100644 -static int -dwarf2_get_attr_constant_value (struct attribute *attr, int default_value) -+static enum dwarf2_get_attr_constant_value -+dwarf2_get_attr_constant_value (struct attribute *attr, int *val_return) ++static enum get_attr_constant_value ++get_attr_constant_value (struct attribute *attr, int *val_return) { + if (attr == NULL) + return dwarf2_attr_unknown; @@ -17295,7 +17309,7 @@ index 55868da..b4720e8 100644 } /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation -@@ -9963,6 +10996,17 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9963,6 +11001,17 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, { gdb_byte *mac_ptr, *mac_end; struct macro_source_file *current_file = 0; @@ -17313,7 +17327,7 @@ index 55868da..b4720e8 100644 if (dwarf2_per_objfile->macinfo_buffer == NULL) { -@@ -9970,19 +11014,24 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9970,19 +11019,24 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, return; } @@ -17342,7 +17356,7 @@ index 55868da..b4720e8 100644 } macinfo_type = read_1_byte (abfd, mac_ptr); -@@ -9993,7 +11042,81 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9993,7 +11047,81 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, /* A zero macinfo type indicates the end of the macro information. */ case 0: @@ -17425,7 +17439,7 @@ index 55868da..b4720e8 100644 case DW_MACINFO_define: case DW_MACINFO_undef: -@@ -10008,19 +11131,31 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10008,19 +11136,31 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, mac_ptr += bytes_read; if (! current_file) @@ -17468,7 +17482,7 @@ index 55868da..b4720e8 100644 } break; -@@ -10034,9 +11169,22 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10034,9 +11174,22 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); mac_ptr += bytes_read; @@ -17494,7 +17508,7 @@ index 55868da..b4720e8 100644 } break; -@@ -10090,7 +11238,7 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10090,7 +11243,7 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, } break; } @@ -17503,7 +17517,16 @@ index 55868da..b4720e8 100644 } /* Check if the attribute's form is a DW_FORM_block* -@@ -10150,6 +11298,34 @@ attr_form_is_constant (struct attribute *attr) +@@ -10123,7 +11276,7 @@ attr_form_is_section_offset (struct attribute *attr) + + /* Return non-zero if ATTR's value falls in the 'constant' class, or + zero otherwise. When this function returns true, you can apply +- dwarf2_get_attr_constant_value to it. ++ get_attr_constant_value to it. + + However, note that for some attributes you must check + attr_form_is_section_offset before using this test. DW_FORM_data4 +@@ -10150,6 +11303,34 @@ attr_form_is_constant (struct attribute *attr) } } @@ -17538,7 +17561,7 @@ index 55868da..b4720e8 100644 static void dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, struct dwarf2_cu *cu) -@@ -10179,35 +11355,24 @@ dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, +@@ -10179,35 +11360,24 @@ dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, SYMBOL_OPS (sym) = &dwarf2_loclist_funcs; SYMBOL_LOCATION_BATON (sym) = baton; } @@ -17588,7 +17611,7 @@ index 55868da..b4720e8 100644 } } -@@ -10482,6 +11647,31 @@ offset_and_type_eq (const void *item_lhs, const void *item_rhs) +@@ -10482,6 +11652,31 @@ offset_and_type_eq (const void *item_lhs, const void *item_rhs) return ofs_lhs->offset == ofs_rhs->offset; } @@ -17620,7 +17643,7 @@ index 55868da..b4720e8 100644 /* Set the type associated with DIE to TYPE. Save it in CU's hash table if necessary. For convenience, return TYPE. */ -@@ -10490,6 +11680,8 @@ set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -10490,6 +11685,8 @@ set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu) { struct dwarf2_offset_and_type **slot, ofs; @@ -39154,6 +39177,138 @@ index 2201d30..41620a4 100644 + +gdb_test "p a_string2" " = \"hello world2\\\\n\"" +gdb_test "ptype a_string2" "type = char \\\[14\\\]" +diff --git a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S +new file mode 100644 +index 0000000..5fcdd84 +--- /dev/null ++++ b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S +@@ -0,0 +1,83 @@ ++/* This testcase is part of GDB, the GNU debugger. ++ ++ Copyright 2009 Free Software Foundation, Inc. ++ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 3 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see . */ ++ ++/* Debug information */ ++ ++ .section .debug_info ++.Lcu1_begin: ++ /* CU header */ ++ .4byte .Lcu1_end - .Lcu1_start /* Length of Compilation Unit */ ++.Lcu1_start: ++ .2byte 2 /* DWARF Version */ ++ .4byte .Labbrev1_begin /* Offset into abbrev section */ ++ .byte 4 /* Pointer size */ ++ ++ /* CU die */ ++ .uleb128 1 /* Abbrev: DW_TAG_compile_unit */ ++ .ascii "dw2-struct-member-data-location.c\0" /* DW_AT_name */ ++ .ascii "GNU C 4.3.2\0" /* DW_AT_producer */ ++ .byte 1 /* DW_AT_language (C) */ ++ ++.Ltype_uchar: ++ .uleb128 2 /* Abbrev: DW_TAG_structure_type */ ++ .ascii "some_struct\0" /* DW_AT_name */ ++ ++ .uleb128 3 /* Abbrev: DW_TAG_member */ ++ .ascii "field\0" /* DW_AT_name */ ++ .byte 0 /* DW_AT_data_member_location */ ++ ++ .byte 0 /* End of children of some_struct */ ++ ++ .byte 0 /* End of children of CU */ ++ ++.Lcu1_end: ++ ++/* Abbrev table */ ++ .section .debug_abbrev ++.Labbrev1_begin: ++ .uleb128 1 /* Abbrev code */ ++ .uleb128 0x11 /* DW_TAG_compile_unit */ ++ .byte 1 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x25 /* DW_AT_producer */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x13 /* DW_AT_language */ ++ .uleb128 0xb /* DW_FORM_data1 */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .uleb128 2 /* Abbrev code */ ++ .uleb128 0x13 /* DW_TAG_structure_type */ ++ .byte 1 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .uleb128 3 /* Abbrev code */ ++ .uleb128 0x0d /* DW_TAG_member */ ++ .byte 0 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x38 /* DW_AT_data_member_location */ ++ .uleb128 0x0b /* DW_FORM_data1 */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ +diff --git a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp +new file mode 100644 +index 0000000..c41151c +--- /dev/null ++++ b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp +@@ -0,0 +1,37 @@ ++# Copyright 2009 Free Software Foundation, Inc. ++ ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 3 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program. If not, see . ++ ++# This test can only be run on targets which support DWARF-2 and use gas. ++# For now pick a sampling of likely targets. ++if {![istarget *-*-linux*] ++ && ![istarget *-*-gnu*] ++ && ![istarget *-*-elf*] ++ && ![istarget *-*-openbsd*] ++ && ![istarget arm-*-eabi*] ++ && ![istarget powerpc-*-eabi*]} { ++ return 0 ++} ++ ++set testfile "dw2-struct-member-data-location" ++set srcfile ${testfile}.S ++set binfile ${testfile}.x ++ ++if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objdir}/${subdir}/${binfile}" object {nodebug}] != "" } { ++ return -1 ++} ++ ++clean_restart $binfile ++ ++gdb_test "ptype struct some_struct" "type = struct some_struct {\[\r\n \t\]*void field;\[\r\n \t\]*}" diff --git a/gdb/testsuite/gdb.dwarf2/dw2-unresolved-main.c b/gdb/testsuite/gdb.dwarf2/dw2-unresolved-main.c new file mode 100644 index 0000000..c24eb96 Index: gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdb/F-11/gdb.spec,v retrieving revision 1.356 retrieving revision 1.357 diff -u -p -r1.356 -r1.357 --- gdb.spec 29 Jun 2009 20:18:08 -0000 1.356 +++ gdb.spec 6 Jul 2009 14:55:57 -0000 1.357 @@ -14,7 +14,7 @@ Version: 6.8.50.20090302 # The release always contains a leading reserved number, start it at 1. # `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing. -Release: 32%{?_with_upstream:.upstream}%{?dist} +Release: 33%{?_with_upstream:.upstream}%{?dist} License: GPLv3+ Group: Development/Debuggers @@ -387,7 +387,7 @@ Patch369: gdb-varobj-revalidate-prep.pat Patch370: gdb-varobj-revalidate-core.patch # Accelerate sorting blocks on reading a file (found on WebKit) (BZ 507267). -patch374: gdb-bz507267-block-sort-fast.patch +Patch374: gdb-bz507267-block-sort-fast.patch BuildRequires: ncurses-devel texinfo gettext flex bison expat-devel Requires: readline @@ -880,6 +880,11 @@ fi %endif %changelog +* Mon Jul 6 2009 Jan Kratochvil - 6.8.50.20090302-33 +- Archer update to the snapshot: 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb +- Archer backport: de9c5190034b84b0a5fb4b98b05b304cda187700 + - [vla] Fix a crash regression on constant DW_AT_data_member_location. + * Mon Jun 29 2009 Jan Kratochvil - 6.8.50.20090302-32 - Replace the fix of cloned-TIDs with no pthread from upstream (BZ 471819). - Fix a parallel testsuite runs incompatibility in gdb.base/gcore-shmid0.exp. From jkratoch at fedoraproject.org Mon Jul 6 14:59:11 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Mon, 6 Jul 2009 14:59:11 +0000 (UTC) Subject: rpms/gdb/devel gdb-archer.patch,1.17,1.18 gdb.spec,1.362,1.363 Message-ID: <20090706145911.411B911C02C8@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/gdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2162 Modified Files: gdb-archer.patch gdb.spec Log Message: * Mon Jul 6 2009 Jan Kratochvil - 6.8.50.20090302-38 - Archer update to the snapshot: 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb - Archer backport: de9c5190034b84b0a5fb4b98b05b304cda187700 - [vla] Fix a crash regression on constant DW_AT_data_member_location. gdb-archer.patch: Index: gdb-archer.patch =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb-archer.patch,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gdb-archer.patch 16 Jun 2009 14:36:09 -0000 1.17 +++ gdb-archer.patch 6 Jul 2009 14:59:10 -0000 1.18 @@ -2,7 +2,7 @@ http://sourceware.org/gdb/wiki/ProjectAr http://sourceware.org/gdb/wiki/ArcherBranchManagement GIT snapshot: -commit 05c402a02716177c4ddd272a6e312cbd2908ed68 +commit 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb branch `archer' - the merge of branches: archer-jankratochvil-merge-expr @@ -14616,7 +14616,7 @@ index 76577f1..bf46761 100644 #endif /* dwarf2loc.h */ diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c -index 55868da..b4720e8 100644 +index 55868da..9bc1386 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1,8 +1,7 @@ @@ -14818,13 +14818,13 @@ index 55868da..b4720e8 100644 static unsigned int dwarf2_get_ref_die_offset (struct attribute *); -static int dwarf2_get_attr_constant_value (struct attribute *, int); -+enum dwarf2_get_attr_constant_value ++enum get_attr_constant_value + { + dwarf2_attr_unknown, + dwarf2_attr_const, + dwarf2_attr_block + }; -+static enum dwarf2_get_attr_constant_value dwarf2_get_attr_constant_value ++static enum get_attr_constant_value get_attr_constant_value + (struct attribute *attr, int *val_return); static struct die_info *follow_die_ref (struct die_info *, @@ -16011,7 +16011,21 @@ index 55868da..b4720e8 100644 { best_low = current_low; best_high = current_high; -@@ -3750,8 +4277,14 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, +@@ -3667,7 +4194,12 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, + byte_offset = 0; + } + else if (attr_form_is_constant (attr)) +- byte_offset = dwarf2_get_attr_constant_value (attr, 0); ++ { ++ enum get_attr_constant_value type; ++ ++ type = get_attr_constant_value (attr, &byte_offset); ++ gdb_assert (type == dwarf2_attr_const); ++ } + else + byte_offset = decode_locdesc (DW_BLOCK (attr), cu); + +@@ -3750,8 +4282,14 @@ dwarf2_add_field (struct field_info *fip, struct die_info *die, if (fieldname == NULL) return; @@ -16027,7 +16041,7 @@ index 55868da..b4720e8 100644 /* The name is already allocated along with this objfile, so we don't need to duplicate it for the type. */ -@@ -3881,8 +4414,14 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, +@@ -3881,8 +4419,14 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, if (fieldname == NULL) return; @@ -16043,7 +16057,7 @@ index 55868da..b4720e8 100644 /* Look up member function name in fieldlist. */ for (i = 0; i < fip->nfnfields; i++) -@@ -3926,7 +4465,7 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, +@@ -3926,7 +4470,7 @@ dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, /* The name is already allocated along with this objfile, so we don't need to duplicate it for the type. */ fnp->physname = physname ? physname : ""; @@ -16052,7 +16066,7 @@ index 55868da..b4720e8 100644 this_type = read_type_die (die, cu); if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC) { -@@ -4110,7 +4649,7 @@ quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu) +@@ -4110,7 +4654,7 @@ quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu) return NULL; domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0)); @@ -16061,7 +16075,7 @@ index 55868da..b4720e8 100644 smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type), TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type), TYPE_VARARGS (pfn_type)); -@@ -4147,7 +4686,7 @@ read_structure_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4147,7 +4691,7 @@ read_structure_type (struct die_info *die, struct dwarf2_cu *cu) if (type) return type; @@ -16070,7 +16084,7 @@ index 55868da..b4720e8 100644 INIT_CPLUS_SPECIFIC (type); name = dwarf2_name (die, cu); if (name != NULL) -@@ -4360,7 +4899,7 @@ read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4360,7 +4904,7 @@ read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu) struct attribute *attr; const char *name; @@ -16079,7 +16093,7 @@ index 55868da..b4720e8 100644 TYPE_CODE (type) = TYPE_CODE_ENUM; name = dwarf2_full_name (die, cu); -@@ -4410,10 +4949,15 @@ determine_class_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -4410,10 +4954,15 @@ determine_class_name (struct die_info *die, struct dwarf2_cu *cu) { if (child->tag == DW_TAG_subprogram) { @@ -16098,7 +16112,7 @@ index 55868da..b4720e8 100644 if (phys_prefix != NULL) { -@@ -4510,6 +5054,29 @@ process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu) +@@ -4510,6 +5059,29 @@ process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu) new_symbol (die, this_type, cu); } @@ -16128,7 +16142,7 @@ index 55868da..b4720e8 100644 /* Extract all information from a DW_TAG_array_type DIE and put it in the DIE's type field. For now, this only handles one dimensional arrays. */ -@@ -4523,7 +5090,7 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4523,7 +5095,7 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) struct type *element_type, *range_type, *index_type; struct type **range_types = NULL; struct attribute *attr; @@ -16137,7 +16151,7 @@ index 55868da..b4720e8 100644 struct cleanup *back_to; char *name; -@@ -4570,16 +5137,11 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4570,16 +5142,11 @@ read_array_type (struct die_info *die, struct dwarf2_cu *cu) type = element_type; if (read_array_order (die, cu) == DW_ORD_col_major) @@ -16159,7 +16173,7 @@ index 55868da..b4720e8 100644 /* Understand Dwarf2 support for vector types (like they occur on the PowerPC w/ AltiVec). Gcc just adds another attribute to the -@@ -4646,12 +5208,14 @@ read_set_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4646,12 +5213,14 @@ read_set_type (struct die_info *die, struct dwarf2_cu *cu) return set_die_type (die, set_type, cu); } @@ -16176,7 +16190,7 @@ index 55868da..b4720e8 100644 struct attribute *attr; struct symbol *sym; CORE_ADDR base = (CORE_ADDR) 0; -@@ -4676,10 +5240,40 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) +@@ -4676,10 +5245,40 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) } if (die->child != NULL) { @@ -16217,7 +16231,7 @@ index 55868da..b4720e8 100644 attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu); if (attr) { -@@ -4687,8 +5281,25 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) +@@ -4687,8 +5286,25 @@ read_common_block (struct die_info *die, struct dwarf2_cu *cu) base + decode_locdesc (DW_BLOCK (attr), cu); add_symbol_to_list (sym, &global_symbols); } @@ -16243,7 +16257,7 @@ index 55868da..b4720e8 100644 } } -@@ -4756,9 +5367,7 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) +@@ -4756,9 +5372,7 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) if (is_anonymous) { const char *previous_prefix = determine_prefix (die, cu); @@ -16254,7 +16268,7 @@ index 55868da..b4720e8 100644 } } -@@ -4774,20 +5383,155 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) +@@ -4774,20 +5388,155 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) } } @@ -16267,9 +16281,10 @@ index 55868da..b4720e8 100644 { - struct die_info *child_die = die->child; + struct type *type; -+ + +- /* FIXME: Support the separate Fortran module namespaces. */ + type = read_module_type (die, cu); -+ + + if (type) + new_symbol (die, type, cu); +} @@ -16300,10 +16315,9 @@ index 55868da..b4720e8 100644 + complaint (&symfile_complaints, _("DW_TAG_module has no name, offset 0x%x"), + die->offset); + type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile); - -- /* FIXME: Support the separate Fortran module namespaces. */ ++ + /* Create a context for reading the module variables. */ - ++ + new = push_context (0, 0); + + save_file_symbols = file_symbols; @@ -16413,7 +16427,7 @@ index 55868da..b4720e8 100644 } /* Return the name of the namespace represented by DIE. Set -@@ -4951,29 +5695,95 @@ read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -4951,29 +5700,95 @@ read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu) struct objfile *objfile = cu->objfile; struct type *type, *range_type, *index_type, *char_type; struct attribute *attr; @@ -16438,7 +16452,7 @@ index 55868da..b4720e8 100644 - else - { - /* check for the DW_AT_byte_size attribute */ -+ switch (dwarf2_get_attr_constant_value (attr, &length)) ++ switch (get_attr_constant_value (attr, &length)) + { + case dwarf2_attr_const: + /* We currently do not support a constant address where the location @@ -16455,7 +16469,7 @@ index 55868da..b4720e8 100644 - { - length = 1; - } -+ switch (dwarf2_get_attr_constant_value (attr, &length)) ++ switch (get_attr_constant_value (attr, &length)) + { + case dwarf2_attr_unknown: + length = 1; @@ -16527,7 +16541,7 @@ index 55868da..b4720e8 100644 type = create_string_type (NULL, range_type); return set_die_type (die, type, cu); -@@ -5067,7 +5877,6 @@ static struct type * +@@ -5067,7 +5882,6 @@ static struct type * read_typedef (struct die_info *die, struct dwarf2_cu *cu) { struct objfile *objfile = cu->objfile; @@ -16535,18 +16549,18 @@ index 55868da..b4720e8 100644 const char *name = NULL; struct type *this_type; -@@ -5175,8 +5984,8 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -5175,8 +5989,8 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) struct type *base_type; struct type *range_type; struct attribute *attr; - int low = 0; - int high = -1; + int low, high, byte_stride_int; -+ enum dwarf2_get_attr_constant_value high_type; ++ enum get_attr_constant_value high_type; char *name; base_type = die_type (die, cu); -@@ -5189,42 +5998,90 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) +@@ -5189,42 +6003,90 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) 0, NULL, cu->objfile); } @@ -16564,7 +16578,7 @@ index 55868da..b4720e8 100644 attr = dwarf2_attr (die, DW_AT_lower_bound, cu); - if (attr) - low = dwarf2_get_attr_constant_value (attr, 0); -+ switch (dwarf2_get_attr_constant_value (attr, &low)) ++ switch (get_attr_constant_value (attr, &low)) + { + case dwarf2_attr_unknown: + if (cu->language == language_fortran) @@ -16614,11 +16628,11 @@ index 55868da..b4720e8 100644 - } - else - high = dwarf2_get_attr_constant_value (attr, 1); -+ high_type = dwarf2_get_attr_constant_value (attr, &high); ++ high_type = get_attr_constant_value (attr, &high); + if (high_type == dwarf2_attr_unknown) + { + attr = dwarf2_attr (die, DW_AT_count, cu); -+ high_type = dwarf2_get_attr_constant_value (attr, &high); ++ high_type = get_attr_constant_value (attr, &high); + /* It does not hurt but it is needlessly ineffective in check_typedef. */ + if (high_type != dwarf2_attr_unknown) + { @@ -16647,7 +16661,7 @@ index 55868da..b4720e8 100644 - range_type = create_range_type (NULL, base_type, low, high); + /* DW_AT_bit_stride is currently unsupported as we count in bytes. */ + attr = dwarf2_attr (die, DW_AT_byte_stride, cu); -+ switch (dwarf2_get_attr_constant_value (attr, &byte_stride_int)) ++ switch (get_attr_constant_value (attr, &byte_stride_int)) + { + case dwarf2_attr_unknown: + break; @@ -16667,7 +16681,7 @@ index 55868da..b4720e8 100644 name = dwarf2_name (die, cu); if (name) -@@ -5386,10 +6243,13 @@ read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, +@@ -5386,10 +6248,13 @@ read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, } /* Decompress a section that was compressed using zlib. Store the @@ -16683,7 +16697,7 @@ index 55868da..b4720e8 100644 gdb_byte **outbuf, bfd_size_type *outsize) { bfd *abfd = objfile->obfd; -@@ -5405,6 +6265,7 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5405,6 +6270,7 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, z_stream strm; int rc; int header_size = 12; @@ -16691,7 +16705,7 @@ index 55868da..b4720e8 100644 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0 || bfd_bread (compressed_buffer, compressed_size, abfd) != compressed_size) -@@ -5434,8 +6295,13 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5434,8 +6300,13 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, strm.avail_in = compressed_size - header_size; strm.next_in = (Bytef*) compressed_buffer + header_size; strm.avail_out = uncompressed_size; @@ -16707,7 +16721,7 @@ index 55868da..b4720e8 100644 rc = inflateInit (&strm); while (strm.avail_in > 0) { -@@ -5456,6 +6322,8 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5456,6 +6327,8 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, error (_("Dwarf Error: concluding DWARF uncompression in '%s': %d"), bfd_get_filename (abfd), rc); @@ -16716,7 +16730,7 @@ index 55868da..b4720e8 100644 xfree (compressed_buffer); *outbuf = uncompressed_buffer; *outsize = uncompressed_size; -@@ -5463,17 +6331,20 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, +@@ -5463,17 +6336,20 @@ zlib_decompress_section (struct objfile *objfile, asection *sectp, } @@ -16742,7 +16756,7 @@ index 55868da..b4720e8 100644 if (size == 0) return NULL; -@@ -5486,30 +6357,49 @@ dwarf2_read_section (struct objfile *objfile, asection *sectp) +@@ -5486,30 +6362,49 @@ dwarf2_read_section (struct objfile *objfile, asection *sectp) /* Upon decompression, update the buffer and its size. */ if (strncmp (header, "ZLIB", sizeof (header)) == 0) { @@ -16795,7 +16809,7 @@ index 55868da..b4720e8 100644 /* In DWARF version 2, the description of the debugging information is stored in a separate .debug_abbrev section. Before we read any dies from a section we read in all abbreviations and install them -@@ -5749,6 +6639,7 @@ load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab, +@@ -5749,6 +6644,7 @@ load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab, && abbrev->tag != DW_TAG_lexical_block && abbrev->tag != DW_TAG_variable && abbrev->tag != DW_TAG_namespace @@ -16803,7 +16817,7 @@ index 55868da..b4720e8 100644 && abbrev->tag != DW_TAG_member) { /* Otherwise we skip to the next sibling, if any. */ -@@ -5914,15 +6805,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -5914,15 +6810,6 @@ read_partial_die (struct partial_die_info *part_die, struct attribute attr; int has_low_pc_attr = 0; int has_high_pc_attr = 0; @@ -16819,7 +16833,7 @@ index 55868da..b4720e8 100644 memset (part_die, 0, sizeof (struct partial_die_info)); -@@ -5945,47 +6827,35 @@ read_partial_die (struct partial_die_info *part_die, +@@ -5945,47 +6832,35 @@ read_partial_die (struct partial_die_info *part_die, switch (attr.name) { case DW_AT_name: @@ -16885,7 +16899,7 @@ index 55868da..b4720e8 100644 case DW_AT_location: /* Support the .debug_loc offsets */ if (attr_form_is_block (&attr)) -@@ -6002,9 +6872,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6002,9 +6877,6 @@ read_partial_die (struct partial_die_info *part_die, "partial symbol information"); } break; @@ -16895,7 +16909,7 @@ index 55868da..b4720e8 100644 case DW_AT_external: part_die->is_external = DW_UNSND (&attr); break; -@@ -6029,10 +6896,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6029,10 +6901,6 @@ read_partial_die (struct partial_die_info *part_die, part_die->sibling = dwarf2_per_objfile->info_buffer + dwarf2_get_ref_die_offset (&attr); break; @@ -16906,7 +16920,7 @@ index 55868da..b4720e8 100644 case DW_AT_byte_size: part_die->has_byte_size = 1; break; -@@ -6074,13 +6937,6 @@ read_partial_die (struct partial_die_info *part_die, +@@ -6074,13 +6942,6 @@ read_partial_die (struct partial_die_info *part_die, || dwarf2_per_objfile->has_section_at_zero)) part_die->has_pc_info = 1; @@ -16920,7 +16934,7 @@ index 55868da..b4720e8 100644 return info_ptr; } -@@ -6173,7 +7029,9 @@ fixup_partial_die (struct partial_die_info *part_die, +@@ -6173,7 +7034,9 @@ fixup_partial_die (struct partial_die_info *part_die, /* If we found a reference attribute and the DIE has no name, try to find a name in the referred to DIE. */ @@ -16931,7 +16945,7 @@ index 55868da..b4720e8 100644 { struct partial_die_info *spec_die; -@@ -6189,6 +7047,9 @@ fixup_partial_die (struct partial_die_info *part_die, +@@ -6189,6 +7052,9 @@ fixup_partial_die (struct partial_die_info *part_die, if (spec_die->is_external) part_die->is_external = spec_die->is_external; } @@ -16941,7 +16955,7 @@ index 55868da..b4720e8 100644 } /* Set default names for some unnamed DIEs. */ -@@ -7512,10 +8373,12 @@ var_decode_location (struct attribute *attr, struct symbol *sym, +@@ -7512,10 +8378,12 @@ var_decode_location (struct attribute *attr, struct symbol *sym, (i.e. when the value of a register or memory location is referenced, or a thread-local block, etc.). Then again, it might not be worthwhile. I'm assuming that it isn't unless performance @@ -16956,7 +16970,7 @@ index 55868da..b4720e8 100644 } /* Given a pointer to a DWARF information entry, figure out if we need -@@ -7538,20 +8401,49 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7538,20 +8406,49 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); if (die->tag != DW_TAG_namespace) @@ -17009,7 +17023,7 @@ index 55868da..b4720e8 100644 /* Default assumptions. Use the passed type or decode it from the die. */ -@@ -7637,9 +8529,28 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7637,9 +8534,28 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) if (attr) { var_decode_location (attr, sym, cu); @@ -17039,7 +17053,7 @@ index 55868da..b4720e8 100644 else add_symbol_to_list (sym, cu->list_in_scope); } -@@ -7656,7 +8567,7 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7656,7 +8572,7 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) && dwarf2_attr (die, DW_AT_type, cu) != NULL) { SYMBOL_CLASS (sym) = LOC_UNRESOLVED; @@ -17048,7 +17062,7 @@ index 55868da..b4720e8 100644 } } break; -@@ -7780,6 +8691,16 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -7780,6 +8696,16 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) SYMBOL_CLASS (sym) = LOC_TYPEDEF; add_symbol_to_list (sym, &global_symbols); break; @@ -17065,7 +17079,7 @@ index 55868da..b4720e8 100644 default: /* Not a tag we recognize. Hopefully we aren't processing trash data, but since we must specifically ignore things -@@ -7826,6 +8747,7 @@ dwarf2_const_value (struct attribute *attr, struct symbol *sym, +@@ -7826,6 +8752,7 @@ dwarf2_const_value (struct attribute *attr, struct symbol *sym, DW_ADDR (attr)); SYMBOL_CLASS (sym) = LOC_CONST_BYTES; break; @@ -17073,7 +17087,7 @@ index 55868da..b4720e8 100644 case DW_FORM_strp: /* DW_STRING is already allocated on the obstack, point directly to it. */ -@@ -8042,12 +8964,18 @@ read_type_die (struct die_info *die, struct dwarf2_cu *cu) +@@ -8042,12 +8969,18 @@ read_type_die (struct die_info *die, struct dwarf2_cu *cu) case DW_TAG_namespace: this_type = read_namespace_type (die, cu); break; @@ -17092,7 +17106,7 @@ index 55868da..b4720e8 100644 return this_type; } -@@ -8113,9 +9041,18 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) +@@ -8113,9 +9046,18 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) switch (parent->tag) { case DW_TAG_namespace: @@ -17114,7 +17128,7 @@ index 55868da..b4720e8 100644 case DW_TAG_class_type: case DW_TAG_interface_type: case DW_TAG_structure_type: -@@ -8128,6 +9065,19 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) +@@ -8128,6 +9070,19 @@ determine_prefix (struct die_info *die, struct dwarf2_cu *cu) members; no typedefs, no member functions, et cetera. So it does not need a prefix. */ return ""; @@ -17134,7 +17148,7 @@ index 55868da..b4720e8 100644 default: return determine_prefix (parent, cu); } -@@ -8192,12 +9142,64 @@ dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -8192,12 +9147,64 @@ dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu) attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu); if (attr && DW_STRING (attr)) return DW_STRING (attr); @@ -17202,7 +17216,7 @@ index 55868da..b4720e8 100644 /* Get name of a die, return NULL if not found. */ static char * -@@ -8206,9 +9208,29 @@ dwarf2_name (struct die_info *die, struct dwarf2_cu *cu) +@@ -8206,9 +9213,29 @@ dwarf2_name (struct die_info *die, struct dwarf2_cu *cu) struct attribute *attr; attr = dwarf2_attr (die, DW_AT_name, cu); @@ -17235,7 +17249,7 @@ index 55868da..b4720e8 100644 } /* Return the die that this die in an extension of, or NULL if there -@@ -8703,6 +9725,8 @@ dwarf_form_name (unsigned form) +@@ -8703,6 +9730,8 @@ dwarf_form_name (unsigned form) return "DW_FORM_ref_udata"; case DW_FORM_indirect: return "DW_FORM_indirect"; @@ -17244,7 +17258,7 @@ index 55868da..b4720e8 100644 default: return "DW_FORM_"; } -@@ -9353,26 +10377,35 @@ dwarf2_get_ref_die_offset (struct attribute *attr) +@@ -9353,26 +10382,35 @@ dwarf2_get_ref_die_offset (struct attribute *attr) return result; } @@ -17254,8 +17268,8 @@ index 55868da..b4720e8 100644 -static int -dwarf2_get_attr_constant_value (struct attribute *attr, int default_value) -+static enum dwarf2_get_attr_constant_value -+dwarf2_get_attr_constant_value (struct attribute *attr, int *val_return) ++static enum get_attr_constant_value ++get_attr_constant_value (struct attribute *attr, int *val_return) { + if (attr == NULL) + return dwarf2_attr_unknown; @@ -17295,7 +17309,7 @@ index 55868da..b4720e8 100644 } /* THIS_CU has a reference to PER_CU. If necessary, load the new compilation -@@ -9963,6 +10996,17 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9963,6 +11001,17 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, { gdb_byte *mac_ptr, *mac_end; struct macro_source_file *current_file = 0; @@ -17313,7 +17327,7 @@ index 55868da..b4720e8 100644 if (dwarf2_per_objfile->macinfo_buffer == NULL) { -@@ -9970,19 +11014,24 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9970,19 +11019,24 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, return; } @@ -17342,7 +17356,7 @@ index 55868da..b4720e8 100644 } macinfo_type = read_1_byte (abfd, mac_ptr); -@@ -9993,7 +11042,81 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -9993,7 +11047,81 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, /* A zero macinfo type indicates the end of the macro information. */ case 0: @@ -17425,7 +17439,7 @@ index 55868da..b4720e8 100644 case DW_MACINFO_define: case DW_MACINFO_undef: -@@ -10008,19 +11131,31 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10008,19 +11136,31 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, mac_ptr += bytes_read; if (! current_file) @@ -17468,7 +17482,7 @@ index 55868da..b4720e8 100644 } break; -@@ -10034,9 +11169,22 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10034,9 +11174,22 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); mac_ptr += bytes_read; @@ -17494,7 +17508,7 @@ index 55868da..b4720e8 100644 } break; -@@ -10090,7 +11238,7 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, +@@ -10090,7 +11243,7 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, } break; } @@ -17503,7 +17517,16 @@ index 55868da..b4720e8 100644 } /* Check if the attribute's form is a DW_FORM_block* -@@ -10150,6 +11298,34 @@ attr_form_is_constant (struct attribute *attr) +@@ -10123,7 +11276,7 @@ attr_form_is_section_offset (struct attribute *attr) + + /* Return non-zero if ATTR's value falls in the 'constant' class, or + zero otherwise. When this function returns true, you can apply +- dwarf2_get_attr_constant_value to it. ++ get_attr_constant_value to it. + + However, note that for some attributes you must check + attr_form_is_section_offset before using this test. DW_FORM_data4 +@@ -10150,6 +11303,34 @@ attr_form_is_constant (struct attribute *attr) } } @@ -17538,7 +17561,7 @@ index 55868da..b4720e8 100644 static void dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, struct dwarf2_cu *cu) -@@ -10179,35 +11355,24 @@ dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, +@@ -10179,35 +11360,24 @@ dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, SYMBOL_OPS (sym) = &dwarf2_loclist_funcs; SYMBOL_LOCATION_BATON (sym) = baton; } @@ -17588,7 +17611,7 @@ index 55868da..b4720e8 100644 } } -@@ -10482,6 +11647,31 @@ offset_and_type_eq (const void *item_lhs, const void *item_rhs) +@@ -10482,6 +11652,31 @@ offset_and_type_eq (const void *item_lhs, const void *item_rhs) return ofs_lhs->offset == ofs_rhs->offset; } @@ -17620,7 +17643,7 @@ index 55868da..b4720e8 100644 /* Set the type associated with DIE to TYPE. Save it in CU's hash table if necessary. For convenience, return TYPE. */ -@@ -10490,6 +11680,8 @@ set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu) +@@ -10490,6 +11685,8 @@ set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu) { struct dwarf2_offset_and_type **slot, ofs; @@ -39154,6 +39177,138 @@ index 2201d30..41620a4 100644 + +gdb_test "p a_string2" " = \"hello world2\\\\n\"" +gdb_test "ptype a_string2" "type = char \\\[14\\\]" +diff --git a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S +new file mode 100644 +index 0000000..5fcdd84 +--- /dev/null ++++ b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.S +@@ -0,0 +1,83 @@ ++/* This testcase is part of GDB, the GNU debugger. ++ ++ Copyright 2009 Free Software Foundation, Inc. ++ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 3 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see . */ ++ ++/* Debug information */ ++ ++ .section .debug_info ++.Lcu1_begin: ++ /* CU header */ ++ .4byte .Lcu1_end - .Lcu1_start /* Length of Compilation Unit */ ++.Lcu1_start: ++ .2byte 2 /* DWARF Version */ ++ .4byte .Labbrev1_begin /* Offset into abbrev section */ ++ .byte 4 /* Pointer size */ ++ ++ /* CU die */ ++ .uleb128 1 /* Abbrev: DW_TAG_compile_unit */ ++ .ascii "dw2-struct-member-data-location.c\0" /* DW_AT_name */ ++ .ascii "GNU C 4.3.2\0" /* DW_AT_producer */ ++ .byte 1 /* DW_AT_language (C) */ ++ ++.Ltype_uchar: ++ .uleb128 2 /* Abbrev: DW_TAG_structure_type */ ++ .ascii "some_struct\0" /* DW_AT_name */ ++ ++ .uleb128 3 /* Abbrev: DW_TAG_member */ ++ .ascii "field\0" /* DW_AT_name */ ++ .byte 0 /* DW_AT_data_member_location */ ++ ++ .byte 0 /* End of children of some_struct */ ++ ++ .byte 0 /* End of children of CU */ ++ ++.Lcu1_end: ++ ++/* Abbrev table */ ++ .section .debug_abbrev ++.Labbrev1_begin: ++ .uleb128 1 /* Abbrev code */ ++ .uleb128 0x11 /* DW_TAG_compile_unit */ ++ .byte 1 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x25 /* DW_AT_producer */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x13 /* DW_AT_language */ ++ .uleb128 0xb /* DW_FORM_data1 */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .uleb128 2 /* Abbrev code */ ++ .uleb128 0x13 /* DW_TAG_structure_type */ ++ .byte 1 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .uleb128 3 /* Abbrev code */ ++ .uleb128 0x0d /* DW_TAG_member */ ++ .byte 0 /* has_children */ ++ .uleb128 0x3 /* DW_AT_name */ ++ .uleb128 0x8 /* DW_FORM_string */ ++ .uleb128 0x38 /* DW_AT_data_member_location */ ++ .uleb128 0x0b /* DW_FORM_data1 */ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ ++ ++ .byte 0x0 /* Terminator */ ++ .byte 0x0 /* Terminator */ +diff --git a/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp +new file mode 100644 +index 0000000..c41151c +--- /dev/null ++++ b/gdb/testsuite/gdb.dwarf2/dw2-struct-member-data-location.exp +@@ -0,0 +1,37 @@ ++# Copyright 2009 Free Software Foundation, Inc. ++ ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 3 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program. If not, see . ++ ++# This test can only be run on targets which support DWARF-2 and use gas. ++# For now pick a sampling of likely targets. ++if {![istarget *-*-linux*] ++ && ![istarget *-*-gnu*] ++ && ![istarget *-*-elf*] ++ && ![istarget *-*-openbsd*] ++ && ![istarget arm-*-eabi*] ++ && ![istarget powerpc-*-eabi*]} { ++ return 0 ++} ++ ++set testfile "dw2-struct-member-data-location" ++set srcfile ${testfile}.S ++set binfile ${testfile}.x ++ ++if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objdir}/${subdir}/${binfile}" object {nodebug}] != "" } { ++ return -1 ++} ++ ++clean_restart $binfile ++ ++gdb_test "ptype struct some_struct" "type = struct some_struct {\[\r\n \t\]*void field;\[\r\n \t\]*}" diff --git a/gdb/testsuite/gdb.dwarf2/dw2-unresolved-main.c b/gdb/testsuite/gdb.dwarf2/dw2-unresolved-main.c new file mode 100644 index 0000000..c24eb96 Index: gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb.spec,v retrieving revision 1.362 retrieving revision 1.363 diff -u -p -r1.362 -r1.363 --- gdb.spec 29 Jun 2009 20:21:12 -0000 1.362 +++ gdb.spec 6 Jul 2009 14:59:10 -0000 1.363 @@ -15,7 +15,7 @@ Version: 6.8.50.20090302 # The release always contains a leading reserved number, start it at 1. # `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing. -Release: 37%{?_with_upstream:.upstream}%{?dist} +Release: 38%{?_with_upstream:.upstream}%{?dist} License: GPLv3+ Group: Development/Debuggers @@ -391,7 +391,7 @@ Patch370: gdb-varobj-revalidate-core.pat Patch373: gdb-DW_OP_call_frame_cfa.patch # Accelerate sorting blocks on reading a file (found on WebKit) (BZ 507267). -patch374: gdb-bz507267-block-sort-fast.patch +Patch374: gdb-bz507267-block-sort-fast.patch BuildRequires: ncurses-devel texinfo gettext flex bison expat-devel Requires: readline @@ -895,6 +895,11 @@ fi %endif %changelog +* Mon Jul 6 2009 Jan Kratochvil - 6.8.50.20090302-38 +- Archer update to the snapshot: 17bfc0488f54aeeb7a9e20ef3caa7e31e8e985fb +- Archer backport: de9c5190034b84b0a5fb4b98b05b304cda187700 + - [vla] Fix a crash regression on constant DW_AT_data_member_location. + * Mon Jun 29 2009 Jan Kratochvil - 6.8.50.20090302-37 - Replace the fix of cloned-TIDs with no pthread from upstream (BZ 471819). - Fix a parallel testsuite runs incompatibility in gdb.base/gcore-shmid0.exp. From rdieter at fedoraproject.org Mon Jul 6 15:08:54 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 15:08:54 +0000 (UTC) Subject: comps comps-f11.xml.in,1.263,1.264 Message-ID: <20090706150854.D16E911C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4699 Modified Files: comps-f11.xml.in Log Message: kde-desktop: +kdepim-runtime Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.263 retrieving revision 1.264 diff -u -p -r1.263 -r1.264 --- comps-f11.xml.in 4 Jul 2009 12:44:47 -0000 1.263 +++ comps-f11.xml.in 6 Jul 2009 15:08:24 -0000 1.264 @@ -3431,6 +3431,7 @@ kdemultimedia kdenetwork kdepim + kdepim-runtime kdeplasma-addons kdeutils kdeutils-printer-applet From ajax at fedoraproject.org Mon Jul 6 15:09:20 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 6 Jul 2009 15:09:20 +0000 (UTC) Subject: rpms/xcb-util/F-11 xcb-util.spec,1.6,1.7 Message-ID: <20090706150920.8785B11C02C8@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4832 Modified Files: xcb-util.spec Log Message: * Mon Jul 06 2009 Adam Jackson 0.3.4-2 - Explicitly list DSOs so we're notified of version changes. Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/F-11/xcb-util.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xcb-util.spec 13 Jun 2009 00:50:08 -0000 1.6 +++ xcb-util.spec 6 Jul 2009 15:08:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: xcb-util Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convenience libraries sitting on top of libxcb Group: System Environment/Libraries @@ -68,9 +68,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README -%{_libdir}/*.so.*.* -%{_libdir}/*.so.? - +%{_libdir}/%{name}-atom.so.1* +%{_libdir}/%{name}-aux.so.0* +%{_libdir}/%{name}-event.so.1* +%{_libdir}/%{name}-icccm.so.1* +%{_libdir}/%{name}-image.so.0* +%{_libdir}/%{name}-keysyms.so.1* +%{_libdir}/%{name}-property.so.1* +%{_libdir}/%{name}-render-util.so.0* +%{_libdir}/%{name}-reply.so.1* %files devel %defattr(-,root,root,-) @@ -80,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 06 2009 Adam Jackson 0.3.4-2 +- Explicitly list DSOs so we're notified of version changes. + * Sat Jun 13 2009 Michal Nowak - 0.3.4-1 - 0.3.4; needed for Awesome 3.3 From ajax at fedoraproject.org Mon Jul 6 15:10:28 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 6 Jul 2009 15:10:28 +0000 (UTC) Subject: rpms/xcb-util/devel xcb-util.spec,1.6,1.7 Message-ID: <20090706151028.1DECF11C02C8@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5089 Modified Files: xcb-util.spec Log Message: * Mon Jul 06 2009 Adam Jackson 0.3.4-2 - Explicitly list DSOs so we're notified of version changes. Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/xcb-util.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xcb-util.spec 11 May 2009 11:11:02 -0000 1.6 +++ xcb-util.spec 6 Jul 2009 15:09:57 -0000 1.7 @@ -1,6 +1,6 @@ Name: xcb-util Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convenience libraries sitting on top of libxcb Group: System Environment/Libraries @@ -68,9 +68,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README -%{_libdir}/*.so.*.* -%{_libdir}/*.so.? - +%{_libdir}/%{name}-atom.so.1* +%{_libdir}/%{name}-aux.so.0* +%{_libdir}/%{name}-event.so.1* +%{_libdir}/%{name}-icccm.so.1* +%{_libdir}/%{name}-image.so.0* +%{_libdir}/%{name}-keysyms.so.1* +%{_libdir}/%{name}-property.so.1* +%{_libdir}/%{name}-render-util.so.0* +%{_libdir}/%{name}-reply.so.1* %files devel %defattr(-,root,root,-) @@ -80,7 +86,10 @@ rm -rf %{buildroot} %changelog -* Mon May 11 2009 Michal Nowak - 0.3.4-1 +* Mon Jul 06 2009 Adam Jackson 0.3.4-2 +- Explicitly list DSOs so we're notified of version changes. + +* Sat Jun 13 2009 Michal Nowak - 0.3.4-1 - 0.3.4; needed for Awesome 3.3 * Thu Feb 26 2009 Fedora Release Engineering - 0.3.3-2 From ajax at fedoraproject.org Mon Jul 6 15:14:03 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 6 Jul 2009 15:14:03 +0000 (UTC) Subject: rpms/xcb-util/F-11 xcb-util.spec,1.7,1.8 Message-ID: <20090706151403.2715211C02C8@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6030 Modified Files: xcb-util.spec Log Message: d'oh Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/F-11/xcb-util.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xcb-util.spec 6 Jul 2009 15:08:50 -0000 1.7 +++ xcb-util.spec 6 Jul 2009 15:14:02 -0000 1.8 @@ -68,15 +68,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README -%{_libdir}/%{name}-atom.so.1* -%{_libdir}/%{name}-aux.so.0* -%{_libdir}/%{name}-event.so.1* -%{_libdir}/%{name}-icccm.so.1* -%{_libdir}/%{name}-image.so.0* -%{_libdir}/%{name}-keysyms.so.1* -%{_libdir}/%{name}-property.so.1* -%{_libdir}/%{name}-render-util.so.0* -%{_libdir}/%{name}-reply.so.1* +%{_libdir}/libxcb-atom.so.1* +%{_libdir}/libxcb-aux.so.0* +%{_libdir}/libxcb-event.so.1* +%{_libdir}/libxcb-icccm.so.1* +%{_libdir}/libxcb-image.so.0* +%{_libdir}/libxcb-keysyms.so.1* +%{_libdir}/libxcb-property.so.1* +%{_libdir}/libxcb-render-util.so.0* +%{_libdir}/libxcb-reply.so.1* %files devel %defattr(-,root,root,-) From ajax at fedoraproject.org Mon Jul 6 15:14:55 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 6 Jul 2009 15:14:55 +0000 (UTC) Subject: rpms/xcb-util/devel xcb-util.spec,1.7,1.8 Message-ID: <20090706151455.C8A8A11C02C8@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6175 Modified Files: xcb-util.spec Log Message: d'oh Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/xcb-util.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xcb-util.spec 6 Jul 2009 15:09:57 -0000 1.7 +++ xcb-util.spec 6 Jul 2009 15:14:25 -0000 1.8 @@ -68,15 +68,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README -%{_libdir}/%{name}-atom.so.1* -%{_libdir}/%{name}-aux.so.0* -%{_libdir}/%{name}-event.so.1* -%{_libdir}/%{name}-icccm.so.1* -%{_libdir}/%{name}-image.so.0* -%{_libdir}/%{name}-keysyms.so.1* -%{_libdir}/%{name}-property.so.1* -%{_libdir}/%{name}-render-util.so.0* -%{_libdir}/%{name}-reply.so.1* +%{_libdir}/libxcb-atom.so.1* +%{_libdir}/libxcb-aux.so.0* +%{_libdir}/libxcb-event.so.1* +%{_libdir}/libxcb-icccm.so.1* +%{_libdir}/libxcb-image.so.0* +%{_libdir}/libxcb-keysyms.so.1* +%{_libdir}/libxcb-property.so.1* +%{_libdir}/libxcb-render-util.so.0* +%{_libdir}/libxcb-reply.so.1* %files devel %defattr(-,root,root,-) From avesh at fedoraproject.org Mon Jul 6 15:14:57 2009 From: avesh at fedoraproject.org (avesh agarwal) Date: Mon, 6 Jul 2009 15:14:57 +0000 (UTC) Subject: rpms/openswan/F-10 openswan-2.6.21-CVE-2009-2185.patch, NONE, 1.1 openswan.spec, 1.72, 1.73 Message-ID: <20090706151457.5467511C02C8@cvs1.fedora.phx.redhat.com> Author: avesh Update of /cvs/pkgs/rpms/openswan/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6316 Modified Files: openswan.spec Added Files: openswan-2.6.21-CVE-2009-2185.patch Log Message: * Mon Jul 06 2009 Avesh Agarwal - 2.6.21-2 - Openswan ASN.1 parser vulnerability (CVE-2009-2185) openswan-2.6.21-CVE-2009-2185.patch: --- NEW FILE openswan-2.6.21-CVE-2009-2185.patch --- --- ../openswan-2.6.21-orig/lib/libopenswan/asn1.c 2009-03-30 09:11:28.000000000 -0400 +++ openswan-2/lib/libopenswan/asn1.c 2009-06-26 10:14:54.000000000 -0400 @@ -11,7 +11,6 @@ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * - * RCSID $Id: asn1.c,v 1.10 2005/08/05 17:33:27 mcr Exp $ */ #include @@ -77,8 +76,15 @@ asn1_length(chunk_t *blob) n = *blob->ptr++; blob->len--; - if ((n & 0x80) == 0) /* single length octet */ + if ((n & 0x80) == 0) { /* single length octet */ + if (n > blob->len) { + DBG(DBG_PARSING, + DBG_log("number of length octets is larger than ASN.1 object") + ) + return ASN1_INVALID_LENGTH; + } return n; + } /* composite length, determine number of length octets */ n &= 0x7f; @@ -107,6 +113,14 @@ asn1_length(chunk_t *blob) len = 256*len + *blob->ptr++; blob->len--; } + if (len > blob->len) + { + DBG(DBG_PARSING, + DBG_log("length is larger than remaining blob size") + ) + return ASN1_INVALID_LENGTH; + } + return len; } @@ -236,14 +250,21 @@ asn1totime(const chunk_t *utctime, asn1_ { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in positive timezone offset format */ + } + tz_offset = 3600*tz_hour + 60*tz_min; /* positive time zone offset */ } else if ((eot = memchr(utctime->ptr, '-', utctime->len)) != NULL) { int tz_hour, tz_min; - sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min); + if (sscanf(eot+1, "%2d%2d", &tz_hour, &tz_min) != 2) + { + return 0; /* error in negative timezone offset format */ + } tz_offset = -3600*tz_hour - 60*tz_min; /* negative time zone offset */ } else @@ -255,14 +276,22 @@ asn1totime(const chunk_t *utctime, asn1_ const char* format = (type == ASN1_UTCTIME)? "%2d%2d%2d%2d%2d": "%4d%2d%2d%2d%2d"; - sscanf((char *)utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, - &t.tm_hour, &t.tm_min); + if (sscanf(utctime->ptr, format, &t.tm_year, &t.tm_mon, &t.tm_mday, + &t.tm_hour, &t.tm_min) != 5) + { + return 0; /* error in time st [yy]yymmddhhmm time format */ + } + } /* is there a seconds field? */ if ((eot - (char *)utctime->ptr) == ((type == ASN1_UTCTIME)?12:14)) { - sscanf(eot-2, "%2d", &t.tm_sec); + if (sscanf(eot-2, "%2d", &t.tm_sec) != 1) + { + return 0; /* error in ss seconds field format */ + } + } else { @@ -283,7 +312,11 @@ asn1totime(const chunk_t *utctime, asn1_ t.tm_year += 100; } - /* representation of month 0..11*/ + if (t.tm_mon < 1 || t.tm_mon > 12) + { + return 0; /* error in month format */ + } + /* representation of month 0..11 in struct tm */ t.tm_mon--; /* set daylight saving time to off */ @@ -384,7 +417,7 @@ extract_object(asn1Object_t const *objec blob1->len = asn1_length(blob); - if (blob1->len == ASN1_INVALID_LENGTH || blob->len < blob1->len) + if (blob1->len == ASN1_INVALID_LENGTH) { DBG(DBG_PARSING, DBG_log("L%d - %s: length of ASN1 object invalid or too large", Index: openswan.spec =================================================================== RCS file: /cvs/pkgs/rpms/openswan/F-10/openswan.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- openswan.spec 30 Mar 2009 19:02:50 -0000 1.72 +++ openswan.spec 6 Jul 2009 15:14:57 -0000 1.73 @@ -2,7 +2,7 @@ Summary: Openswan IPSEC implementation Name: openswan Version: 2.6.21 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Url: http://www.openswan.org/ Source: openswan-%{version}.tar.gz @@ -13,6 +13,7 @@ Patch1: openswan-2.6.16-examples.patch Patch2: openswan-2.6-relpath.patch Patch3: openswan-2.6-selinux.patch Patch4: openswan-2.6.16-initscript-correction.patch +Patch5: openswan-2.6.21-CVE-2009-2185.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -60,6 +61,7 @@ find doc -name .gitignore -print0 | xarg %patch2 -p1 -b .relpath %patch3 -p1 -b .selinux %patch4 -p1 +%patch5 -p1 %build @@ -149,6 +151,9 @@ fi chkconfig --add ipsec || : %changelog +* Mon Jul 06 2009 Avesh Agarwal - 2.6.21-2 +- Openswan ASN.1 parser vulnerability (CVE-2009-2185) + * Mon Mar 30 2009 Avesh Agarwal - 2.6.21-1 - new upstream release - Fix for CVE-2009-0790 DPD crasher From rvinyard at fedoraproject.org Mon Jul 6 15:28:33 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Mon, 6 Jul 2009 15:28:33 +0000 (UTC) Subject: rpms/dbus-cxx/devel .cvsignore, 1.10, 1.11 dbus-cxx.spec, 1.9, 1.10 sources, 1.10, 1.11 Message-ID: <20090706152833.754C611C02C8@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/dbus-cxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8881 Modified Files: .cvsignore dbus-cxx.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 18 Jun 2009 18:50:00 -0000 1.10 +++ .cvsignore 6 Jul 2009 15:28:03 -0000 1.11 @@ -1 +1 @@ -dbus-cxx-0.4.0.tar.bz2 +dbus-cxx-0.4.1.tar.bz2 Index: dbus-cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/devel/dbus-cxx.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbus-cxx.spec 18 Jun 2009 18:50:00 -0000 1.9 +++ dbus-cxx.spec 6 Jul 2009 15:28:03 -0000 1.10 @@ -1,6 +1,6 @@ Summary: C++ bindings for the DBus library Name: dbus-cxx -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} License: GPLv3 URL: http://dbus-cxx.sourceforge.net @@ -152,6 +152,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/dbus-cxx-0.4/dbus-cxx-glibmm/ %changelog +* Mon Jul 6 2009 Rick L Vinyard Jr - 0.4.1-1 +- New release + * Thu Jun 18 2009 Rick L Vinyard Jr - 0.4.0-1 - New release - Added glibmm subpackage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 18 Jun 2009 18:50:00 -0000 1.10 +++ sources 6 Jul 2009 15:28:03 -0000 1.11 @@ -1 +1 @@ -ad3d36b685e73093084f86eb1e1dd62a dbus-cxx-0.4.0.tar.bz2 +51b388678d5403c7f2e768ba3e092546 dbus-cxx-0.4.1.tar.bz2 From rvinyard at fedoraproject.org Mon Jul 6 15:28:43 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Mon, 6 Jul 2009 15:28:43 +0000 (UTC) Subject: rpms/dbus-cxx/F-11 .cvsignore, 1.10, 1.11 dbus-cxx.spec, 1.9, 1.10 sources, 1.10, 1.11 Message-ID: <20090706152843.F269811C02C8@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/dbus-cxx/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8928 Modified Files: .cvsignore dbus-cxx.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 18 Jun 2009 18:50:07 -0000 1.10 +++ .cvsignore 6 Jul 2009 15:28:13 -0000 1.11 @@ -1 +1 @@ -dbus-cxx-0.4.0.tar.bz2 +dbus-cxx-0.4.1.tar.bz2 Index: dbus-cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-11/dbus-cxx.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbus-cxx.spec 18 Jun 2009 18:50:07 -0000 1.9 +++ dbus-cxx.spec 6 Jul 2009 15:28:13 -0000 1.10 @@ -1,6 +1,6 @@ Summary: C++ bindings for the DBus library Name: dbus-cxx -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} License: GPLv3 URL: http://dbus-cxx.sourceforge.net @@ -152,6 +152,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/dbus-cxx-0.4/dbus-cxx-glibmm/ %changelog +* Mon Jul 6 2009 Rick L Vinyard Jr - 0.4.1-1 +- New release + * Thu Jun 18 2009 Rick L Vinyard Jr - 0.4.0-1 - New release - Added glibmm subpackage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 18 Jun 2009 18:50:07 -0000 1.10 +++ sources 6 Jul 2009 15:28:13 -0000 1.11 @@ -1 +1 @@ -ad3d36b685e73093084f86eb1e1dd62a dbus-cxx-0.4.0.tar.bz2 +51b388678d5403c7f2e768ba3e092546 dbus-cxx-0.4.1.tar.bz2 From rvinyard at fedoraproject.org Mon Jul 6 15:28:54 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Mon, 6 Jul 2009 15:28:54 +0000 (UTC) Subject: rpms/dbus-cxx/F-10 .cvsignore, 1.10, 1.11 dbus-cxx.spec, 1.9, 1.10 sources, 1.10, 1.11 Message-ID: <20090706152854.22E8F11C02C8@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/dbus-cxx/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8981 Modified Files: .cvsignore dbus-cxx.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-10/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 18 Jun 2009 18:50:15 -0000 1.10 +++ .cvsignore 6 Jul 2009 15:28:23 -0000 1.11 @@ -1 +1 @@ -dbus-cxx-0.4.0.tar.bz2 +dbus-cxx-0.4.1.tar.bz2 Index: dbus-cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-10/dbus-cxx.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbus-cxx.spec 18 Jun 2009 18:50:15 -0000 1.9 +++ dbus-cxx.spec 6 Jul 2009 15:28:23 -0000 1.10 @@ -1,6 +1,6 @@ Summary: C++ bindings for the DBus library Name: dbus-cxx -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} License: GPLv3 URL: http://dbus-cxx.sourceforge.net @@ -152,6 +152,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/dbus-cxx-0.4/dbus-cxx-glibmm/ %changelog +* Mon Jul 6 2009 Rick L Vinyard Jr - 0.4.1-1 +- New release + * Thu Jun 18 2009 Rick L Vinyard Jr - 0.4.0-1 - New release - Added glibmm subpackage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 18 Jun 2009 18:50:15 -0000 1.10 +++ sources 6 Jul 2009 15:28:23 -0000 1.11 @@ -1 +1 @@ -ad3d36b685e73093084f86eb1e1dd62a dbus-cxx-0.4.0.tar.bz2 +51b388678d5403c7f2e768ba3e092546 dbus-cxx-0.4.1.tar.bz2 From rvinyard at fedoraproject.org Mon Jul 6 15:29:00 2009 From: rvinyard at fedoraproject.org (Rick L. Vinyard, Jr.) Date: Mon, 6 Jul 2009 15:29:00 +0000 (UTC) Subject: rpms/dbus-cxx/F-9 .cvsignore, 1.10, 1.11 dbus-cxx.spec, 1.9, 1.10 sources, 1.10, 1.11 Message-ID: <20090706152900.F09F411C02C8@cvs1.fedora.phx.redhat.com> Author: rvinyard Update of /cvs/pkgs/rpms/dbus-cxx/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9019 Modified Files: .cvsignore dbus-cxx.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-9/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 18 Jun 2009 18:50:21 -0000 1.10 +++ .cvsignore 6 Jul 2009 15:28:30 -0000 1.11 @@ -1 +1 @@ -dbus-cxx-0.4.0.tar.bz2 +dbus-cxx-0.4.1.tar.bz2 Index: dbus-cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-9/dbus-cxx.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbus-cxx.spec 18 Jun 2009 18:50:21 -0000 1.9 +++ dbus-cxx.spec 6 Jul 2009 15:28:30 -0000 1.10 @@ -1,6 +1,6 @@ Summary: C++ bindings for the DBus library Name: dbus-cxx -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} License: GPLv3 URL: http://dbus-cxx.sourceforge.net @@ -152,6 +152,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/dbus-cxx-0.4/dbus-cxx-glibmm/ %changelog +* Mon Jul 6 2009 Rick L Vinyard Jr - 0.4.1-1 +- New release + * Thu Jun 18 2009 Rick L Vinyard Jr - 0.4.0-1 - New release - Added glibmm subpackage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/F-9/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 18 Jun 2009 18:50:21 -0000 1.10 +++ sources 6 Jul 2009 15:28:30 -0000 1.11 @@ -1 +1 @@ -ad3d36b685e73093084f86eb1e1dd62a dbus-cxx-0.4.0.tar.bz2 +51b388678d5403c7f2e768ba3e092546 dbus-cxx-0.4.1.tar.bz2 From jwilson at fedoraproject.org Mon Jul 6 16:08:04 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Mon, 6 Jul 2009 16:08:04 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6.31-lirc.patch, NONE, 1.1 config-generic, 1.298, 1.299 kernel.spec, 1.1605, 1.1606 linux-2.6.29-lirc.patch, 1.10, NONE Message-ID: <20090706160804.760BA11C02C8@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17099 Modified Files: config-generic kernel.spec Added Files: linux-2.6.31-lirc.patch Removed Files: linux-2.6.29-lirc.patch Log Message: * Mon Jul 06 2009 Jarod Wilson - Hack up lirc_i2c and lirc_zilog to compile with 2.6.31 i2c changes. The drivers might not actually be functional now, but at least they compile again. Will fix later, if need be... linux-2.6.31-lirc.patch: --- NEW FILE linux-2.6.31-lirc.patch --- Linux Infrared Remote Control drivers -- http://www.lirc.org >From http://git.wilsonet.com/linux-2.6-lirc.git/ Signed-off-by: Jarod Wilson --- MAINTAINERS | 9 + drivers/input/Kconfig | 2 + drivers/input/Makefile | 2 + drivers/input/lirc/Kconfig | 112 ++ drivers/input/lirc/Makefile | 20 + drivers/input/lirc/lirc.h | 100 ++ drivers/input/lirc/lirc_bt829.c | 383 ++++++ drivers/input/lirc/lirc_dev.c | 851 ++++++++++++++ drivers/input/lirc/lirc_dev.h | 184 +++ drivers/input/lirc/lirc_i2c.c | 509 ++++++++ drivers/input/lirc/lirc_igorplugusb.c | 556 +++++++++ drivers/input/lirc/lirc_imon.c | 2061 +++++++++++++++++++++++++++++++++ drivers/input/lirc/lirc_it87.c | 986 ++++++++++++++++ drivers/input/lirc/lirc_it87.h | 116 ++ drivers/input/lirc/lirc_ite8709.c | 539 +++++++++ drivers/input/lirc/lirc_mceusb.c | 1223 +++++++++++++++++++ drivers/input/lirc/lirc_parallel.c | 709 +++++++++++ drivers/input/lirc/lirc_parallel.h | 26 + drivers/input/lirc/lirc_sasem.c | 931 +++++++++++++++ drivers/input/lirc/lirc_serial.c | 1316 +++++++++++++++++++++ drivers/input/lirc/lirc_sir.c | 1294 +++++++++++++++++++++ drivers/input/lirc/lirc_streamzap.c | 777 +++++++++++++ drivers/input/lirc/lirc_ttusbir.c | 397 +++++++ drivers/input/lirc/lirc_zilog.c | 1374 ++++++++++++++++++++++ 24 files changed, 14477 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 1d47043..3009f88 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3553,6 +3553,15 @@ W: http://www.pasemi.com/ L: linuxppc-dev at ozlabs.org S: Supported +LINUX INFRARED REMOTE CONTROL DRIVERS (LIRC) +P: Jarod Wilson +M: jarod at redhat.com +P: Christoph Bartelmus +M: lirc at bartelmus.de +W: http://www.lirc.org/ +L: lirc-list at lists.sourceforge.net +S: Maintained + LINUX SECURITY MODULE (LSM) FRAMEWORK P: Chris Wright M: chrisw at sous-sol.org diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index cd50c00..442f94f 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -170,6 +170,8 @@ source "drivers/input/tablet/Kconfig" source "drivers/input/touchscreen/Kconfig" +source "drivers/input/lirc/Kconfig" + source "drivers/input/misc/Kconfig" endif diff --git a/drivers/input/Makefile b/drivers/input/Makefile index 4c9c745..99e2b5e 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -25,3 +25,5 @@ obj-$(CONFIG_INPUT_MISC) += misc/ obj-$(CONFIG_INPUT_APMPOWER) += apm-power.o obj-$(CONFIG_XEN_KBDDEV_FRONTEND) += xen-kbdfront.o + +obj-$(CONFIG_INPUT_LIRC) += lirc/ diff --git a/drivers/input/lirc/Kconfig b/drivers/input/lirc/Kconfig new file mode 100644 index 0000000..6ef8622 --- /dev/null +++ b/drivers/input/lirc/Kconfig @@ -0,0 +1,112 @@ +# +# LIRC driver(s) configuration +# +menuconfig INPUT_LIRC + bool "Linux Infrared Remote Control IR receiver/transmitter drivers" + help + Say Y here, and all supported Linux Infrared Remote Control IR and + RF receiver and transmitter drivers will be displayed. When paired + with a remote control and the lirc daemon, the receiver drivers + allow control of your Linux system via remote control. + +if INPUT_LIRC + +config LIRC_DEV + tristate "LIRC device loadable module support" + help + LIRC device loadable module support, required for most LIRC drivers + +config LIRC_BT829 + tristate "BT829 based hardware" + depends on LIRC_DEV + help + Driver for the IR interface on BT829-based hardware + +config LIRC_I2C + tristate "I2C Based IR Receivers" + depends on LIRC_DEV + help + Driver for I2C-based IR receivers, such as those commonly + found onboard Hauppauge PVR-150/250/350 video capture cards + +config LIRC_IGORPLUGUSB + tristate "Igor Cesko's USB IR Receiver" + depends on LIRC_DEV && USB + help + Driver for Igor Cesko's USB IR Receiver + +config LIRC_IMON + tristate "Soundgraph IMON Receiver" + depends on LIRC_DEV + help + Driver for the Soundgraph IMON IR Receiver + +config LIRC_IT87 + tristate "ITE IT87XX CIR Port Receiver" + depends on LIRC_DEV + help + Driver for the ITE IT87xx IR Receiver + +config LIRC_ITE8709 + tristate "ITE8709 CIR Port Receiver" + depends on LIRC_DEV && PNP + help + Driver for the ITE8709 IR Receiver + +config LIRC_MCEUSB + tristate "Windows Media Center Ed. USB IR Transceiver" + depends on LIRC_DEV && USB + help + Driver for Windows Media Center Ed. USB IR Transceivers + +config LIRC_PARALLEL + tristate "Homebrew Parallel Port Receiver" + depends on LIRC_DEV && !SMP + help + Driver for Homebrew Parallel Port Receivers + +config LIRC_SASEM + tristate "Sasem USB IR Remote" + depends on LIRC_DEV + help + Driver for the Sasem OnAir Remocon-V or Dign HV5 HTPC IR/VFD Module + +config LIRC_SERIAL + tristate "Homebrew Serial Port Receiver" + depends on LIRC_DEV + help + Driver for Homebrew Serial Port Receivers + +config LIRC_SERIAL_TRANSMITTER + bool "Serial Port Transmitter" + default y + depends on LIRC_SERIAL + help + Serial Port Transmitter support + +config LIRC_SIR + tristate "Built-in SIR IrDA port" + depends on LIRC_DEV + help + Driver for the SIR IrDA port + +config LIRC_STREAMZAP + tristate "Streamzap PC Receiver" + depends on LIRC_DEV + help + Driver for the Streamzap PC Receiver + +config LIRC_TTUSBIR + tristate "Technotrend USB IR Receiver" + depends on LIRC_DEV && USB + help + Driver for the Technotrend USB IR Receiver + +config LIRC_ZILOG + tristate "Zilog/Hauppauge IR Transmitter" + depends on LIRC_DEV + help + Driver for the Zilog/Hauppauge IR Transmitter, found on + PVR-150/500, HVR-1200/1250/1700/1800, HD-PVR and other cards + +endif diff --git a/drivers/input/lirc/Makefile b/drivers/input/lirc/Makefile new file mode 100644 index 0000000..7b1386e --- /dev/null +++ b/drivers/input/lirc/Makefile [...14267 lines suppressed...] + ir->task = kthread_run(lirc_thread, ir, "lirc_zilog"); + if (IS_ERR(ir->task)) { + ret = PTR_ERR(ir->task); + zilog_error("lirc_register_driver: cannot run " + "poll thread %d\n", ret); + goto err; + } + wait_for_completion(&tn); + ir->t_notify = NULL; + } + + /* initialise TX device */ + memcpy(&ir->c_tx, &client_template, sizeof(struct i2c_client)); + if (have_tx) { + /* I2C attach to device */ + ir->c_tx.addr = 0x70; + strncpy(ir->c_tx.name, "Zilog/Hauppauge TX", I2C_NAME_SIZE); + ret = i2c_attach(&ir->c_tx, ir); + if (ret != 0) + goto err; + } + + /* set lirc_dev stuff */ + ir->l.code_length = 13; + ir->l.rbuf = &ir->buf; + ir->l.fops = &lirc_fops; + ir->l.data = ir; + ir->l.minor = minor; + ir->l.sample_rate = 0; + + /* register with lirc */ + ir->l.minor = lirc_register_driver(&ir->l); + if (ir->l.minor < 0 || ir->l.minor >= MAX_IRCTL_DEVICES) { + zilog_error("ir_attach: \"minor\" must be between 0 and %d " + "(%d)!\n", MAX_IRCTL_DEVICES-1, ir->l.minor); + ret = -EBADRQC; + goto err; + } + + /* store this for getting back in open() later on */ + ir_devices[ir->l.minor] = ir; + + /* + * if we have the tx device, load the 'firmware'. We do this + * after registering with lirc as otherwise hotplug seems to take + * 10s to create the lirc device. + */ + if (have_tx) { + /* Special TX init */ + ret = tx_init(ir); + if (ret != 0) + goto err; + } + return 0; + +err: + /* undo everything, hopefully... */ + if (ir->c_rx.addr) + ir_remove(&ir->c_rx); + if (ir->c_tx.addr) + ir_remove(&ir->c_tx); + return ret; +} + +static int ir_remove(struct i2c_client *client) +{ + struct IR *ir = i2c_get_clientdata(client); + mutex_lock(&ir->lock); + + if (client == &ir->c_rx) { + DECLARE_COMPLETION(tn); + DECLARE_COMPLETION(tn2); + + /* end up polling thread */ + if (ir->task && !IS_ERR(ir->task)) { + ir->t_notify = &tn; + ir->t_notify2 = &tn2; + ir->shutdown = 1; + wake_up_process(ir->task); + complete(&tn2); + wait_for_completion(&tn); + ir->t_notify = NULL; + ir->t_notify2 = NULL; + } + + } else { + mutex_unlock(&ir->lock); + zilog_error("%s: detached from something we didn't " + "attach to\n", __func__); + return -ENODEV; + } + + --ir->devs; + if (ir->devs < 0) { + mutex_unlock(&ir->lock); + zilog_error("%s: invalid device count\n", __func__); + return -ENODEV; + } else if (ir->devs == 0) { + /* unregister lirc driver */ + if (ir->l.minor >= 0 && ir->l.minor < MAX_IRCTL_DEVICES) { + lirc_unregister_driver(ir->l.minor); + ir_devices[ir->l.minor] = NULL; + } + + /* free memory */ + lirc_buffer_free(&ir->buf); + mutex_unlock(&ir->lock); + kfree(ir); + return 0; + } + mutex_unlock(&ir->lock); + return 0; +} + +static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id) +{ + struct i2c_adapter *adap = client->adapter; + char buf; + + if (adap->id == I2C_HW_B_BT848 || +#ifdef I2C_HW_B_HDPVR + adap->id == I2C_HW_B_HDPVR || +#endif + adap->id == I2C_HW_B_CX2341X) { + int have_rx = 0, have_tx = 0; + + /* + * The external IR receiver is at i2c address 0x71. + * The IR transmitter is at 0x70. + */ + client->addr = 0x70; + + if (!disable_rx) { + if (i2c_master_recv(client, &buf, 1) == 1) + have_rx = 1; + dprintk("probe 0x70 @ %s: %s\n", + adap->name, + have_rx ? "yes" : "no"); + } + + if (!disable_tx) { + client->addr = 0x71; + if (i2c_master_recv(client, &buf, 1) == 1) + have_tx = 1; + dprintk("probe 0x71 @ %s: %s\n", + adap->name, + have_tx ? "yes" : "no"); + } + + if (have_rx || have_tx) + return ir_attach(adap, have_rx, have_tx); + else + zilog_error("%s: no devices found\n", adap->name); + } + + return 0; +} + +static int ir_command(struct i2c_client *client, unsigned int cmd, void *arg) +{ + /* nothing */ + return 0; +} + +static int __init zilog_init(void) +{ + mutex_init(&tx_data_lock); + request_module("firmware_class"); + i2c_add_driver(&driver); + return 0; +} + +static void __exit zilog_exit(void) +{ + i2c_del_driver(&driver); + /* if loaded */ + fw_unload(); +} + +module_init(zilog_init); +module_exit(zilog_exit); + +MODULE_DESCRIPTION("Zilog/Hauppauge infrared transmitter driver (i2c stack)"); +MODULE_AUTHOR("Gerd Knorr, Michal Kochanowicz, Christoph Bartelmus, " + "Ulrich Mueller, Stefan Jahn, Jerome Brock, Mark Weaver"); +MODULE_LICENSE("GPL"); +/* for compat with old name, which isn't all that accurate anymore */ +MODULE_ALIAS("lirc_pvr150"); + +module_param(minor, int, 0444); +MODULE_PARM_DESC(minor, "Preferred minor device number"); + +module_param(debug, bool, 0644); +MODULE_PARM_DESC(debug, "Enable debugging messages"); + +module_param(disable_rx, bool, 0644); +MODULE_PARM_DESC(disable_rx, "Disable the IR receiver device"); + +module_param(disable_tx, bool, 0644); +MODULE_PARM_DESC(disable_tx, "Disable the IR transmitter device"); Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.298 retrieving revision 1.299 diff -u -p -r1.298 -r1.299 --- config-generic 3 Jul 2009 06:21:26 -0000 1.298 +++ config-generic 6 Jul 2009 16:07:33 -0000 1.299 @@ -3804,7 +3804,6 @@ CONFIG_LIRC_IMON=m CONFIG_LIRC_IT87=m CONFIG_LIRC_ITE8709=m CONFIG_LIRC_MCEUSB=m -CONFIG_LIRC_MCEUSB2=m CONFIG_LIRC_ZILOG=m CONFIG_LIRC_PARALLEL=m CONFIG_LIRC_SERIAL=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1605 retrieving revision 1.1606 diff -u -p -r1.1605 -r1.1606 --- kernel.spec 5 Jul 2009 00:38:37 -0000 1.1605 +++ kernel.spec 6 Jul 2009 16:07:33 -0000 1.1606 @@ -646,7 +646,7 @@ Patch900: linux-2.6-pci-cacheline-sizing Patch1000: linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch -Patch1515: linux-2.6.29-lirc.patch +Patch1515: linux-2.6.31-lirc.patch # nouveau + drm fixes Patch1811: drm-next.patch @@ -1214,7 +1214,7 @@ ApplyPatch linux-2.6-pci-cacheline-sizin #ApplyPatch linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch # http://www.lirc.org/ -#ApplyPatch linux-2.6.29-lirc.patch +ApplyPatch linux-2.6.31-lirc.patch ApplyPatch linux-2.6-e1000-ich9.patch @@ -1840,6 +1840,11 @@ fi # and build. %changelog +* Mon Jul 06 2009 Jarod Wilson +- Hack up lirc_i2c and lirc_zilog to compile with 2.6.31 i2c + changes. The drivers might not actually be functional now, but + at least they compile again. Will fix later, if need be... + * Sat Jul 04 2009 Dave Jones 2.6.31-0.42.rc2 - 2.6.31-rc2 --- linux-2.6.29-lirc.patch DELETED --- From deji at fedoraproject.org Mon Jul 6 16:46:59 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Mon, 6 Jul 2009 16:46:59 +0000 (UTC) Subject: rpms/libqalculate/devel libqalculate-0.9.6-pkgconfig_private.patch, NONE, 1.1 libqalculate.spec, 1.25, 1.26 Message-ID: <20090706164659.E888211C02C8@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/libqalculate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24701 Modified Files: libqalculate.spec Added Files: libqalculate-0.9.6-pkgconfig_private.patch Log Message: * Mon Jul 06 2009 Rex Dieter 0.9.6-7 - move auto*foo to prep stage - trim pkg-config-related deps (#509840) libqalculate-0.9.6-pkgconfig_private.patch: --- NEW FILE libqalculate-0.9.6-pkgconfig_private.patch --- diff -up libqalculate-0.9.6/libqalculate.pc.in.private libqalculate-0.9.6/libqalculate.pc.in --- libqalculate-0.9.6/libqalculate.pc.in.private 2005-05-07 06:55:39.000000000 -0500 +++ libqalculate-0.9.6/libqalculate.pc.in 2009-07-06 09:05:57.447961075 -0500 @@ -5,7 +5,8 @@ includedir=@includedir@ Name: libqalculate Description: libqalculate -Requires: glib-2.0 libxml-2.0 +Requires.private: glib-2.0 libxml-2.0 Version: @VERSION@ -Libs: -L${libdir} @CLN_LIBS@ -lpthread -lqalculate +Libs: -L${libdir} -lqalculate +Libs.private: @CLN_LIBS@ -lpthread Cflags: -I${includedir} @CLN_CPPFLAGS@ Index: libqalculate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqalculate/devel/libqalculate.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libqalculate.spec 5 Jul 2009 23:28:46 -0000 1.25 +++ libqalculate.spec 6 Jul 2009 16:46:29 -0000 1.26 @@ -1,13 +1,14 @@ Summary: Multi-purpose calculator library Name: libqalculate Version: 0.9.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://qalculate.sourceforge.net/ Source0: http://dl.sf.net/sourceforge/qalculate/%{name}-%{version}.tar.gz Patch0: libqalculate-gcc43.patch Patch1: libqalculate-cln12.patch +Patch2: libqalculate-0.9.6-pkgconfig_private.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel, cln-devel BuildRequires: libxml2-devel @@ -46,14 +47,16 @@ frontends are provided by qalculate-gtk %setup -q %patch0 -p0 -b .gcc43 %patch1 -p0 -b .cln +%patch2 -p1 -b .pkgconfig_private -%build intltoolize --copy --force --automake libtoolize --force --copy aclocal autoheader automake autoconf + +%build %configure --disable-static sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -89,6 +92,10 @@ rm -rf %{buildroot} %{_bindir}/qalc %changelog +* Mon Jul 06 2009 Rex Dieter 0.9.6-7 +- move auto*foo to prep stage +- trim pkg-config-related deps (#509840) + * Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 - Rebuild for cln-1.3.0 From rdieter at fedoraproject.org Mon Jul 6 16:47:16 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Mon, 6 Jul 2009 16:47:16 +0000 (UTC) Subject: rpms/alpine/devel alpine-2.00-hunspell.patch, NONE, 1.1 alpine.spec, 1.18, 1.19 Message-ID: <20090706164716.3D77211C02C8@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/alpine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24769 Modified Files: alpine.spec Added Files: alpine-2.00-hunspell.patch Log Message: * Thu Jul 02 2009 Caol??n McNamara - 2.00-6 - --with-spellcheck-prog isn't a configure option use --with-simple-spellcheck/--with-interactive-spellcheck and patch to prefer hunspell to aspell (#509387) alpine-2.00-hunspell.patch: --- NEW FILE alpine-2.00-hunspell.patch --- diff -ru alpine-2.00.orig/configure.ac alpine-2.00/configure.ac --- alpine-2.00.orig/configure.ac 2009-06-28 16:52:14.000000000 +0100 +++ alpine-2.00/configure.ac 2009-07-02 15:22:43.000000000 +0100 @@ -361,29 +361,36 @@ fi ], [ - SPELLPROG=yes + AC_CHECK_PROG([SPELLPROG], [hunspell], [hunspell], []) + if test -z "$SPELLPROG" ; then + AC_CHECK_PROG([SPELLPROG], [aspell], [aspell], []) + if test -z "$SPELLPROG" ; then + AC_CHECK_PROG([SPELLPROG], [ispell], [ispell], []) + if test -z "$SPELLPROG" ; then + SPELLPROG="spell" + fi + fi + fi ]) -case "$SPELLPROG" in - no) - ;; - yes) - AC_PATH_PROG(alpine_simple_spellcheck, [aspell]) - if test -n "$alpine_simple_spellcheck" ; then - alpine_simple_spellcheck="$alpine_simple_spellcheck --dont-backup --mode=email list" - else - AC_PATH_PROG(alpine_simple_spellcheck, [ispell]) - if test -n "$alpine_simple_spellcheck" ; then +if test "x$SPELLPROG" != "xno" ; then + AC_PATH_PROG(alpine_simple_spellcheck, $SPELLPROG) + if test -n "$alpine_simple_spellcheck" ; then + case "$SPELLPROG" in + hunspell) alpine_simple_spellcheck="$alpine_simple_spellcheck -l" - else - AC_PATH_PROG(alpine_simple_spellcheck, [spell]) - fi - fi - ;; - *) - AC_PATH_PROG(alpine_simple_spellcheck, $SPELLPROG) - ;; -esac + ;; + aspell) + alpine_simple_spellcheck="$alpine_simple_spellcheck --dont-backup --mode=email list" + ;; + ispell) + alpine_simple_spellcheck="$alpine_simple_spellcheck -l" + ;; + *) + ;; + esac + fi +fi dnl OPTION: interactive spell checking program AC_ARG_WITH(interactive-spellcheck, @@ -394,24 +401,27 @@ fi ], [ - ISPELLPROG=yes + AC_CHECK_PROG([ISPELLPROG], [hunspell], [hunspell], []) + if test -z "$ISPELLPROG" ; then + AC_CHECK_PROG([ISPELLPROG], [aspell], [aspell], []) + if test -z "$SPELLPROG" ; then + ISPELLPROG="ispell" + fi + fi ]) -case "$ISPELLPROG" in - no) - ;; - yes) - AC_PATH_PROG(alpine_interactive_spellcheck, [aspell]) - if test -n "$alpine_interactive_spellcheck" ; then - alpine_interactive_spellcheck="$alpine_interactive_spellcheck --dont-backup --mode=email check" - else - AC_PATH_PROG(alpine_interactive_spellcheck, [ispell]) - fi - ;; - *) - AC_PATH_PROG(alpine_interactive_spellcheck, $withval) - ;; -esac +if test "x$ISPELLPROG" != "xno" ; then + AC_PATH_PROG(alpine_interactive_spellcheck, $ISPELLPROG) + if test -n "$alpine_interactive_spellcheck" ; then + case "$ISPELLPROG" in + aspell) + alpine_interactive_spellcheck="$alpine_interactive_spellcheck --dont-backup --mode=email check" + ;; + *) + ;; + esac + fi +fi if test -z "$alpine_simple_spellcheck" -a -n "$alpine_interactive_spellcheck" ; then alpine_simple_spellcheck=test Index: alpine.spec =================================================================== RCS file: /cvs/pkgs/rpms/alpine/devel/alpine.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- alpine.spec 6 May 2009 13:44:26 -0000 1.18 +++ alpine.spec 6 Jul 2009 16:46:46 -0000 1.19 @@ -3,7 +3,7 @@ Summary: powerful, easy to use console email client Name: alpine Version: 2.00 -Release: 5%{?dist} +Release: 6%{?dist} License: ASL 2.0 Group: Applications/Internet @@ -29,9 +29,11 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na # short-term workaround until gcc is fixed # http://bugzilla.redhat.com/496400 Patch1: alpine-2.00-gcc44_reply_hack.patch +Patch2: alpine-2.00-hunspell.patch -BuildRequires: aspell +BuildRequires: automake libtool BuildRequires: gettext +BuildRequires: hunspell BuildRequires: inews BuildRequires: krb5-devel BuildRequires: ncurses-devel @@ -41,7 +43,7 @@ BuildRequires: pam-devel BuildRequires: passwd BuildRequires: sendmail /usr/sbin/sendmail -Requires: aspell +Requires: hunspell Requires: mailcap Requires: /usr/sbin/sendmail @@ -70,6 +72,11 @@ GNU Build System's autotools. #if 0%{?fedora} > 10 %patch1 -p1 -b .gcc44_reply_hack #endif +%patch2 -p1 -b .hunspell + +# HACK to workaround local auto* wierdness outside of mock +export AUTOPOINT=/bin/true +autoreconf -f -i %build @@ -80,7 +87,8 @@ touch imap/ip6 --without-tcl \ --with-c-client-target=lfd \ --with-passfile=.alpine.passfile \ - --with-spellcheck-prog=aspell \ + --with-simple-spellcheck=hunspell \ + --with-interactive-spellcheck=hunspell \ --with-system-pinerc=%{_sysconfdir}/pine.conf \ --with-system-fixed-pinerc=%{_sysconfdir}/pine.conf.fixed @@ -119,6 +127,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 02 2009 Caol??n McNamara - 2.00-6 +- --with-spellcheck-prog isn't a configure option use + --with-simple-spellcheck/--with-interactive-spellcheck and patch + to prefer hunspell to aspell (#509387) + * Wed May 06 2009 Rex Dieter - 2.00-5 - "reply to all recipients" doesn't include anyone on the Cc list (#496400) From nhorman at fedoraproject.org Mon Jul 6 16:47:47 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 6 Jul 2009 16:47:47 +0000 (UTC) Subject: rpms/kexec-tools/devel Makefile, 1.6, 1.7 kexec-tools.spec, 1.140, 1.141 sources, 1.17, 1.18 Message-ID: <20090706164747.50BB011C02C8@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24886 Modified Files: Makefile kexec-tools.spec sources Log Message: fixing mkdumprd2 tarball Index: Makefile =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- Makefile 20 May 2009 18:55:21 -0000 1.6 +++ Makefile 6 Jul 2009 16:47:16 -0000 1.7 @@ -26,7 +26,7 @@ mkdumprd2_tarball: ln -s ../kdump_runtime_helpers stage/kdump_runtime_helpers ln -s ../kdump_initscripts stage/kdump_initscripts ln -s ../kdump_sample_manifests stage/kdump_sample_manifests - tar -C stage -j -c --exclude=CVS -f ./mkdumprd2-files.tbz2 . + tar -C stage -j -h -c --exclude=CVS -f ./mkdumprd2-files.tbz2 . rm -rf stage include $(MAKEFILE_COMMON) Index: kexec-tools.spec =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kexec-tools.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- kexec-tools.spec 23 Jun 2009 18:36:27 -0000 1.140 +++ kexec-tools.spec 6 Jul 2009 16:47:17 -0000 1.141 @@ -1,6 +1,6 @@ Name: kexec-tools Version: 2.0.0 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2 Group: Applications/System Summary: The kexec/kdump userspace component. @@ -256,6 +256,9 @@ done %changelog +* Mon Jul 06 2009 Neil Horman 2.0.0-17 +- Fixed mkdumprd2 tarball creation + * Wed Jun 23 2009 Neil Horman 2.0.0-16 - Fix up kdump so it works with latest firstboot Index: sources =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 2 Jul 2009 19:33:05 -0000 1.17 +++ sources 6 Jul 2009 16:47:17 -0000 1.18 @@ -1,4 +1,4 @@ d9f2ecd3c3307905f24130a25816e6cc kexec-tools-2.0.0.tar.bz2 3e802d638dce0080b910f15908c04a24 kexec-tools-po.tar.gz 190f8878aa7e7b63a96fde5d59538eec makedumpfile-1.3.3.tar.gz -eeaf6fd69d4254ea61e42259898bc1ef mkdumprd2-files.tbz2 +9ea9cb5a56ff436a585d1cb5340a2f05 mkdumprd2-files.tbz2 From icon at fedoraproject.org Mon Jul 6 17:10:34 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Mon, 6 Jul 2009 17:10:34 +0000 (UTC) Subject: rpms/verbiste/devel .cvsignore, 1.16, 1.17 sources, 1.16, 1.17 verbiste.spec, 1.24, 1.25 Message-ID: <20090706171034.89C2E11C02C8@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/verbiste/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29561/devel Modified Files: .cvsignore sources verbiste.spec Log Message: New version 0.1.26. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/verbiste/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 24 Mar 2009 06:54:13 -0000 1.16 +++ .cvsignore 6 Jul 2009 17:10:33 -0000 1.17 @@ -1 +1 @@ -verbiste-0.1.25.tar.gz +verbiste-0.1.26.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/verbiste/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 24 Mar 2009 06:54:13 -0000 1.16 +++ sources 6 Jul 2009 17:10:34 -0000 1.17 @@ -1 +1 @@ -dea849220f7dc71eaaf06764c87ef9c5 verbiste-0.1.25.tar.gz +b061164f897ee83bcd31679dd59e1c5e verbiste-0.1.26.tar.gz Index: verbiste.spec =================================================================== RCS file: /cvs/extras/rpms/verbiste/devel/verbiste.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- verbiste.spec 24 Mar 2009 06:54:13 -0000 1.24 +++ verbiste.spec 6 Jul 2009 17:10:34 -0000 1.25 @@ -1,5 +1,5 @@ Name: verbiste -Version: 0.1.25 +Version: 0.1.26 Release: 1%{?dist} Summary: French conjugation system @@ -117,6 +117,11 @@ update-desktop-database &> /dev/null ||: %changelog +* Mon Jul 06 2009 Konstantin Ryabitsev - 0.1.26-1 +- New version 0.1.26 +- possible to save a conjugation in a LaTeX file +- verb additions + * Tue Mar 24 2009 Konstantin Ryabitsev - 0.1.25-1 - New version 0.1.25 - New verbs and several conjugation fixes. From icon at fedoraproject.org Mon Jul 6 17:11:04 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Mon, 6 Jul 2009 17:11:04 +0000 (UTC) Subject: rpms/verbiste/F-11 .cvsignore, 1.16, 1.17 sources, 1.16, 1.17 verbiste.spec, 1.24, 1.25 Message-ID: <20090706171104.4E88F11C02C8@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/verbiste/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29561/F-11 Modified Files: .cvsignore sources verbiste.spec Log Message: New version 0.1.26. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 24 Mar 2009 06:54:13 -0000 1.16 +++ .cvsignore 6 Jul 2009 17:10:33 -0000 1.17 @@ -1 +1 @@ -verbiste-0.1.25.tar.gz +verbiste-0.1.26.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-11/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 24 Mar 2009 06:54:13 -0000 1.16 +++ sources 6 Jul 2009 17:10:33 -0000 1.17 @@ -1 +1 @@ -dea849220f7dc71eaaf06764c87ef9c5 verbiste-0.1.25.tar.gz +b061164f897ee83bcd31679dd59e1c5e verbiste-0.1.26.tar.gz Index: verbiste.spec =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-11/verbiste.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- verbiste.spec 24 Mar 2009 06:54:13 -0000 1.24 +++ verbiste.spec 6 Jul 2009 17:10:33 -0000 1.25 @@ -1,5 +1,5 @@ Name: verbiste -Version: 0.1.25 +Version: 0.1.26 Release: 1%{?dist} Summary: French conjugation system @@ -117,6 +117,11 @@ update-desktop-database &> /dev/null ||: %changelog +* Mon Jul 06 2009 Konstantin Ryabitsev - 0.1.26-1 +- New version 0.1.26 +- possible to save a conjugation in a LaTeX file +- verb additions + * Tue Mar 24 2009 Konstantin Ryabitsev - 0.1.25-1 - New version 0.1.25 - New verbs and several conjugation fixes. From icon at fedoraproject.org Mon Jul 6 17:11:03 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Mon, 6 Jul 2009 17:11:03 +0000 (UTC) Subject: rpms/verbiste/F-10 .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 verbiste.spec, 1.20, 1.21 Message-ID: <20090706171103.6144011C02C8@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/verbiste/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29561/F-10 Modified Files: .cvsignore sources verbiste.spec Log Message: New version 0.1.26. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 1 Jul 2008 00:52:43 -0000 1.14 +++ .cvsignore 6 Jul 2009 17:10:32 -0000 1.15 @@ -1 +1 @@ -verbiste-0.1.23.tar.gz +verbiste-0.1.26.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 1 Jul 2008 00:52:43 -0000 1.14 +++ sources 6 Jul 2009 17:10:32 -0000 1.15 @@ -1 +1 @@ -8d978ae48c23295582c2eeec42a3d595 verbiste-0.1.23.tar.gz +b061164f897ee83bcd31679dd59e1c5e verbiste-0.1.26.tar.gz Index: verbiste.spec =================================================================== RCS file: /cvs/extras/rpms/verbiste/F-10/verbiste.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- verbiste.spec 1 Jul 2008 00:52:43 -0000 1.20 +++ verbiste.spec 6 Jul 2009 17:10:32 -0000 1.21 @@ -1,20 +1,21 @@ Name: verbiste -Version: 0.1.23 +Version: 0.1.26 Release: 1%{?dist} Summary: French conjugation system Group: Applications/Text License: GPLv2+ URL: http://sarrazip.com/dev/verbiste.html -Source: http://www3.sympatico.ca/sarrazip/dev/%{name}-%{version}.tar.gz +Source: http://perso.b2b2c.ca/sarrazip/dev/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: libxml2-devel, gnome-panel-devel, desktop-file-utils, gettext +BuildRequires: perl-XML-Parser %description This package contains a database of French conjugation templates -and a list of more than 6800 regular and irregular French verbs +and a list of more than 7000 regular and irregular French verbs with their corresponding template. It also comes with two command-line tools named french-conjugator and french-deconjugator. @@ -91,7 +92,7 @@ update-desktop-database &> /dev/null ||: %files %defattr(-,root,root,-) -%doc COPYING ABOUT-NLS AUTHORS HACKING NEWS README THANKS LISEZMOI +%doc COPYING ABOUT-NLS AUTHORS HACKING NEWS README LISEZMOI %{_libdir}/*so.* %{_mandir}/man*/* %{_mandir}/*/man*/* @@ -116,6 +117,29 @@ update-desktop-database &> /dev/null ||: %changelog +* Mon Jul 06 2009 Konstantin Ryabitsev - 0.1.26-1 +- New version 0.1.26 +- possible to save a conjugation in a LaTeX file +- verb additions + +* Tue Mar 24 2009 Konstantin Ryabitsev - 0.1.25-1 +- New version 0.1.25 +- New verbs and several conjugation fixes. +- Minor UI tweaks and programming cleanups. +- BR: perl-XML-Parser (during build). +- Remove empty THANKS from doc. + +* Wed Mar 04 2009 Konstantin Ryabitsev - 0.1.24-2 +- Fix source URL. + +* Wed Mar 04 2009 Konstantin Ryabitsev - 0.1.24-1 +- New version 0.1.24 +- About a hundred verbs have been added. +- Small usability fixes. + +* Wed Feb 25 2009 Fedora Release Engineering - 0.1.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Jun 30 2008 Konstantin Ryabitsev - 0.1.23-1 - Upstream 0.1.23 From mschwendt at fedoraproject.org Mon Jul 6 17:26:36 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 6 Jul 2009 17:26:36 +0000 (UTC) Subject: rpms/geeqie/devel .cvsignore, 1.8, 1.9 geeqie.spec, 1.20, 1.21 sources, 1.8, 1.9 geeqie-1.0beta1-desktop.patch, 1.1, NONE geeqie-1.0beta1-print-pagesize.patch, 1.1, NONE Message-ID: <20090706172636.C150711C02C8@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/geeqie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32712 Modified Files: .cvsignore geeqie.spec sources Removed Files: geeqie-1.0beta1-desktop.patch geeqie-1.0beta1-print-pagesize.patch Log Message: * Mon Jul 6 2009 Michael Schwendt - 1.0-0.17.beta2 - update to beta2 tarball - BR intltool - print-pagesize.patch enabled in 1.0beta2 (#222639) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 14 May 2009 18:42:48 -0000 1.8 +++ .cvsignore 6 Jul 2009 17:26:36 -0000 1.9 @@ -1 +1 @@ -geeqie-1.0beta1.tar.gz +geeqie-1.0beta2.tar.gz Index: geeqie.spec =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/devel/geeqie.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- geeqie.spec 16 May 2009 10:54:00 -0000 1.20 +++ geeqie.spec 6 Jul 2009 17:26:36 -0000 1.21 @@ -1,25 +1,21 @@ -%define upstreamversion 1.0beta1 +%define upstreamversion 1.0beta2 Summary: Image browser and viewer Name: geeqie Version: 1.0 -Release: 0.16.beta1%{?dist} +Release: 0.17.beta2%{?dist} License: GPLv3 Group: User Interface/X # svn + autogen #Source: geeqie-1.0alpha2-svn-1341.tgz Source: http://dl.sf.net/sourceforge/geeqie/%{name}-%{upstreamversion}.tar.gz -# fixed upstream -Patch1: geeqie-1.0beta1-desktop.patch -# bz 222639 -Patch3: geeqie-1.0beta1-print-pagesize.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) URL: http://geeqie.sourceforge.net/ BuildRequires: gtk2-devel BuildRequires: lcms-devel BuildRequires: exiv2-devel BuildRequires: lirc-devel -BuildRequires: gettext desktop-file-utils +BuildRequires: gettext intltool desktop-file-utils # Not in Fedora yet. It's a development release, btw. #BuildRequires: libchamplain-gtk-devel >= 0.3 @@ -43,8 +39,6 @@ and zoom. %prep %setup -q -n %{name}-%{upstreamversion} -%patch1 -p1 -b .desktop -%patch3 -p1 -b .print-pagesize %build @@ -87,6 +81,7 @@ update-desktop-database &> /dev/null || %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}* %{_bindir}/%{name}* +%{_libdir}/%{name}/ %{_mandir}/man1/%{name}.1* %{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png @@ -94,6 +89,11 @@ update-desktop-database &> /dev/null || %changelog +* Mon Jul 6 2009 Michael Schwendt - 1.0-0.17.beta2 +- update to beta2 tarball +- BR intltool +- print-pagesize.patch enabled in 1.0beta2 (#222639) + * Thu May 14 2009 Michael Schwendt - 1.0-0.16.beta1 - update to beta1 tarball Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 14 May 2009 18:42:48 -0000 1.8 +++ sources 6 Jul 2009 17:26:36 -0000 1.9 @@ -1 +1 @@ -58496a506fb09307fc98fcc08ed25b32 geeqie-1.0beta1.tar.gz +4e4ddc96a83e1d6bc43d478796e0b3c4 geeqie-1.0beta2.tar.gz --- geeqie-1.0beta1-desktop.patch DELETED --- --- geeqie-1.0beta1-print-pagesize.patch DELETED --- From anttix at fedoraproject.org Mon Jul 6 17:28:08 2009 From: anttix at fedoraproject.org (Antti Andreimann) Date: Mon, 6 Jul 2009 17:28:08 +0000 (UTC) Subject: rpms/xml-security-c/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xml-security-c.spec, 1.1, 1.2 Message-ID: <20090706172808.96E7411C02C8@cvs1.fedora.phx.redhat.com> Author: anttix Update of /cvs/pkgs/rpms/xml-security-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv480 Modified Files: .cvsignore sources xml-security-c.spec Log Message: New upstream release 1.5.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jun 2009 18:59:48 -0000 1.2 +++ .cvsignore 6 Jul 2009 17:27:38 -0000 1.3 @@ -1 +1 @@ -xml-security-c-1.4.0.tar.gz +xml-security-c-1.5.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jun 2009 18:59:48 -0000 1.2 +++ sources 6 Jul 2009 17:27:38 -0000 1.3 @@ -1 +1 @@ -dd9accf6727eb008dbf1dd674d5d4dcc xml-security-c-1.4.0.tar.gz +2d0bad96d7a3433120f6f41acd00ce75 xml-security-c-1.5.0.tar.gz Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/xml-security-c.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xml-security-c.spec 1 Jun 2009 18:59:48 -0000 1.1 +++ xml-security-c.spec 6 Jul 2009 17:27:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: xml-security-c -Version: 1.4.0 -Release: 2%{?dist} +Version: 1.5.0 +Release: 1%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Mon Jul 06 2009 Antti Andreimann - 1.5.0-1 +- New upstream release + * Tue Apr 28 2009 Antti Andreimann - 1.4.0-2 - Execute sed magic against configure instead of configure.ac to avoid calling autotools From mschwendt at fedoraproject.org Mon Jul 6 17:29:05 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 6 Jul 2009 17:29:05 +0000 (UTC) Subject: rpms/geeqie/F-11 .cvsignore, 1.8, 1.9 geeqie.spec, 1.18, 1.19 sources, 1.8, 1.9 geeqie-1.0alpha2-gcc-warn.patch, 1.1, NONE geeqie-1.0beta1-desktop.patch, 1.1, NONE geeqie-1.0beta1-print-pagesize.patch, 1.1, NONE Message-ID: <20090706172905.4A36811C02C8@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/geeqie/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv896 Modified Files: .cvsignore geeqie.spec sources Removed Files: geeqie-1.0alpha2-gcc-warn.patch geeqie-1.0beta1-desktop.patch geeqie-1.0beta1-print-pagesize.patch Log Message: sync with Rawhide (1.0beta2) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 May 2009 09:37:19 -0000 1.8 +++ .cvsignore 6 Jul 2009 17:28:34 -0000 1.9 @@ -1 +1 @@ -geeqie-1.0beta1.tar.gz +geeqie-1.0beta2.tar.gz Index: geeqie.spec =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/F-11/geeqie.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- geeqie.spec 15 May 2009 09:39:05 -0000 1.18 +++ geeqie.spec 6 Jul 2009 17:28:35 -0000 1.19 @@ -1,27 +1,21 @@ -%define upstreamversion 1.0beta1 +%define upstreamversion 1.0beta2 Summary: Image browser and viewer Name: geeqie Version: 1.0 -Release: 0.16.beta1%{?dist} +Release: 0.17.beta2%{?dist} License: GPLv3 Group: User Interface/X # svn + autogen #Source: geeqie-1.0alpha2-svn-1341.tgz Source: http://dl.sf.net/sourceforge/geeqie/%{name}-%{upstreamversion}.tar.gz -# submitted upstream -Patch1: geeqie-1.0beta1-desktop.patch -# bz 222639 -Patch3: geeqie-1.0beta1-print-pagesize.patch -# submitted upstream -Patch4: geeqie-1.0alpha2-gcc-warn.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) URL: http://geeqie.sourceforge.net/ BuildRequires: gtk2-devel BuildRequires: lcms-devel BuildRequires: exiv2-devel BuildRequires: lirc-devel -BuildRequires: gettext desktop-file-utils +BuildRequires: gettext intltool desktop-file-utils # Not in Fedora yet. It's a development release, btw. #BuildRequires: libchamplain-gtk-devel >= 0.3 @@ -45,9 +39,6 @@ and zoom. %prep %setup -q -n %{name}-%{upstreamversion} -%patch1 -p1 -b .desktop -%patch3 -p1 -b .print-pagesize -%patch4 -p1 -b .gcc-warn %build @@ -90,6 +81,7 @@ update-desktop-database &> /dev/null || %defattr(-,root,root,-) %doc %{_datadir}/doc/%{name}* %{_bindir}/%{name}* +%{_libdir}/%{name}/ %{_mandir}/man1/%{name}.1* %{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png @@ -97,6 +89,11 @@ update-desktop-database &> /dev/null || %changelog +* Mon Jul 6 2009 Michael Schwendt - 1.0-0.17.beta2 +- update to beta2 tarball +- BR intltool +- print-pagesize.patch enabled in 1.0beta2 (#222639) + * Thu May 14 2009 Michael Schwendt - 1.0-0.16.beta1 - update to beta1 tarball Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 May 2009 09:37:20 -0000 1.8 +++ sources 6 Jul 2009 17:28:35 -0000 1.9 @@ -1 +1 @@ -58496a506fb09307fc98fcc08ed25b32 geeqie-1.0beta1.tar.gz +4e4ddc96a83e1d6bc43d478796e0b3c4 geeqie-1.0beta2.tar.gz --- geeqie-1.0alpha2-gcc-warn.patch DELETED --- --- geeqie-1.0beta1-desktop.patch DELETED --- --- geeqie-1.0beta1-print-pagesize.patch DELETED --- From oget at fedoraproject.org Mon Jul 6 17:29:11 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Mon, 6 Jul 2009 17:29:11 +0000 (UTC) Subject: rpms/frinika/devel frinika-build.xml.patch, NONE, 1.1 frinika-default-soundfont.patch, NONE, 1.1 frinika-no-mrj.patch, NONE, 1.1 frinika-sevenzip.patch, NONE, 1.1 frinika-snapshot.sh, NONE, 1.1 frinika.desktop, NONE, 1.1 frinika.sh, NONE, 1.1 frinika.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090706172911.5013D11C02C8@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/frinika/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1090/devel Modified Files: .cvsignore sources Added Files: frinika-build.xml.patch frinika-default-soundfont.patch frinika-no-mrj.patch frinika-sevenzip.patch frinika-snapshot.sh frinika.desktop frinika.sh frinika.spec import.log Log Message: * Thu Jul 02 2009 Orcan Ogetbil - 0.5.1-6.551svn - Update to svn revision 551 - Optimize the fetch script and comment in the SPEC file about its usage * Wed Jul 01 2009 Orcan Ogetbil - 0.5.1-5.550svn - Update to svn revision 550 * Tue Jun 30 2009 Orcan Ogetbil - 0.5.1-4.548svn - Update to svn revision 548 - License is GPLv2+ - Add BR: ant - Add more comments on sources & patches - Make the snapshot script nicer (thanks to Pavel Alexeev) - Remove flexdock versioned symlink workaround - Remove some unneeded sources * Sun Jun 07 2009 Orcan Ogetbil - 0.5.1-3.521svn - Update to svn revision 521 - Remove the bundled copy of SevenZip. Require Fedora's SevenZip instead. * Sun Apr 26 2009 Orcan Ogetbil - 0.5.1-2.510svn - Update to svn revision 510 - Add tritonus_share.jar to the classpath - Fix default soundfont issue - Don't build the AOT bits, since the package requires java > 1.5 * Wed Mar 25 2009 Orcan Ogetbil - 0.5.1-1.503svn - Initial build frinika-build.xml.patch: --- NEW FILE frinika-build.xml.patch --- diff -rupN frinika-521.old/build.xml frinika-521/build.xml --- frinika-521.old/build.xml 2009-06-06 16:37:58.000000000 -0400 +++ frinika-521/build.xml 2009-06-07 14:17:42.000000000 -0400 @@ -27,21 +27,22 @@ - + - + - - - - + + + + - + - + + + - - + @@ -91,6 +92,8 @@ + + - + - + - - - - + + + + - + - + + + - - + @@ -91,6 +92,8 @@ + + - + - + - - - - + + + + - + - + + + - - + @@ -91,6 +92,8 @@ + + - + @@ -61,6 +63,11 @@ + + Contains a list of other groups that this group requires. + This element has been ignored by yum et. al. since 2005 and should + therefore be considered deprecated. + @@ -69,7 +76,6 @@ - Other groups that this group requires. From wwoods at fedoraproject.org Tue Jul 7 21:01:56 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Tue, 7 Jul 2009 21:01:56 +0000 (UTC) Subject: comps comps-f12.xml.in,1.28,1.29 Message-ID: <20090707210156.64BDC11C0048@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18736 Modified Files: comps-f12.xml.in Log Message: Add critical-path-{gnome,base} groups Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- comps-f12.xml.in 6 Jul 2009 20:54:56 -0000 1.28 +++ comps-f12.xml.in 7 Jul 2009 21:01:56 -0000 1.29 @@ -762,6 +762,56 @@ yaboot + + + critical-path-base + <_name>Critical Path (Base) + <_description>A set of packages that provide the shared platform for Critical Path functionality on all Fedora spins + false + false + + + kernel + anaconda + firstboot + yum + NetworkManager + + pungi + mash + createrepo + livecd-tools + rpm-build + redhat-rpm-config + gcc-c++ + + + + critical-path-gnome + <_name>Critical Path (GNOME) + <_description>A set of packages that provide the Critical Path functionality for the GNOME desktop + false + false + + gdm + + notification-daemon + + desktop-backgrounds-basic + xorg-x11-drivers + xorg-x11-server-Xorg + xorg-x11-xauth + xorg-x11-xinit + + croatian-support <_name>Croatian Support From dwalsh at fedoraproject.org Tue Jul 7 21:06:52 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 7 Jul 2009 21:06:52 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch, 1.24, 1.25 selinux-policy.spec, 1.877, 1.878 Message-ID: <20090707210652.BC50711C0048@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19760 Modified Files: policy-F12.patch selinux-policy.spec Log Message: * Tue Jul 7 2009 Tom "spot" Callaway 3.6.21-2 - fix multiple directory ownership of mandirs policy-F12.patch: Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- policy-F12.patch 6 Jul 2009 21:16:26 -0000 1.24 +++ policy-F12.patch 7 Jul 2009 21:06:52 -0000 1.25 @@ -300,14 +300,14 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.21/policy/mcs --- nsaserefpolicy/policy/mcs 2009-05-21 08:43:08.000000000 -0400 -+++ serefpolicy-3.6.21/policy/mcs 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.21/policy/mcs 2009-07-07 14:12:47.000000000 -0400 @@ -66,8 +66,8 @@ # # Note that getattr on files is always permitted. # -mlsconstrain file { write setattr append unlink link rename ioctl lock execute relabelfrom } - ( h1 dom h2 ); -+mlsconstrain { file chr_file blk_file sock_file lnk_file fifo_file } { write setattr append unlink link rename ioctl lock execute relabelfrom } ++mlsconstrain { file chr_file blk_file lnk_file } { write setattr append unlink link rename ioctl lock execute relabelfrom } + (( h1 dom h2 ) or ( t1 == mlsfilewrite )); mlsconstrain dir { create getattr setattr read write link unlink rename search add_name remove_name reparent rmdir lock ioctl } @@ -414,7 +414,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/kismet.te serefpolicy-3.6.21/policy/modules/admin/kismet.te --- nsaserefpolicy/policy/modules/admin/kismet.te 2009-01-05 15:39:44.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/admin/kismet.te 2009-07-06 08:49:16.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/admin/kismet.te 2009-07-07 14:23:36.000000000 -0400 @@ -20,21 +20,37 @@ type kismet_log_t; logging_log_file(kismet_log_t) @@ -487,7 +487,7 @@ diff -b -B --ignore-all-space --exclude- + dbus_system_bus_client(kismet_t) + + optional_policy(` -+ networkmanager_dbus_chatkismet_t) ++ networkmanager_dbus_chat(kismet_t) + ') +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/logrotate.te serefpolicy-3.6.21/policy/modules/admin/logrotate.te @@ -10767,7 +10767,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/consolekit.te serefpolicy-3.6.21/policy/modules/services/consolekit.te --- nsaserefpolicy/policy/modules/services/consolekit.te 2009-05-21 08:43:08.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/consolekit.te 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/consolekit.te 2009-07-07 14:09:28.000000000 -0400 @@ -11,7 +11,7 @@ init_daemon_domain(consolekit_t, consolekit_exec_t) @@ -11779,7 +11779,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.te serefpolicy-3.6.21/policy/modules/services/cups.te --- nsaserefpolicy/policy/modules/services/cups.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/cups.te 2009-07-05 22:15:25.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/cups.te 2009-07-07 14:21:24.000000000 -0400 @@ -20,9 +20,18 @@ type cupsd_etc_t; files_config_file(cupsd_etc_t) @@ -12186,7 +12186,7 @@ diff -b -B --ignore-all-space --exclude- +files_read_etc_files(cups_pdf_t) +files_read_usr_files(cups_pdf_t) + -+fs_rw_anon_inodefs_files(cupsd_pdf_t) ++fs_rw_anon_inodefs_files(cups_pdf_t) + +kernel_read_system_state(cups_pdf_t) + @@ -12889,8 +12889,8 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/devicekit.te serefpolicy-3.6.21/policy/modules/services/devicekit.te --- nsaserefpolicy/policy/modules/services/devicekit.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/services/devicekit.te 2009-07-06 14:26:02.000000000 -0400 -@@ -0,0 +1,237 @@ ++++ serefpolicy-3.6.21/policy/modules/services/devicekit.te 2009-07-07 14:07:07.000000000 -0400 +@@ -0,0 +1,239 @@ +policy_module(devicekit,1.0.0) + +######################################## @@ -13037,6 +13037,8 @@ diff -b -B --ignore-all-space --exclude- +# + +allow devicekit_disk_t self:capability { chown dac_override fowner fsetid net_admin sys_nice sys_ptrace sys_rawio }; ++allow devicekit_disk_t self:process signal_perms; ++ +allow devicekit_disk_t self:fifo_file rw_fifo_file_perms; +allow devicekit_disk_t self:netlink_kobject_uevent_socket create_socket_perms; + @@ -16182,6 +16184,17 @@ diff -b -B --ignore-all-space --exclude- # Add/remove user home directories userdom_home_filetrans_user_home_dir(oddjob_mkhomedir_t) userdom_manage_user_home_content_dirs(oddjob_mkhomedir_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/openvpn.te serefpolicy-3.6.21/policy/modules/services/openvpn.te +--- nsaserefpolicy/policy/modules/services/openvpn.te 2009-03-23 13:47:11.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/openvpn.te 2009-07-07 14:12:16.000000000 -0400 +@@ -86,6 +86,7 @@ + corenet_udp_bind_openvpn_port(openvpn_t) + corenet_tcp_connect_openvpn_port(openvpn_t) + corenet_tcp_connect_http_port(openvpn_t) ++corenet_tcp_connect_http_cache_port(openvpn_t) + corenet_rw_tun_tap_dev(openvpn_t) + corenet_sendrecv_openvpn_server_packets(openvpn_t) + corenet_sendrecv_openvpn_client_packets(openvpn_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/pcscd.te serefpolicy-3.6.21/policy/modules/services/pcscd.te --- nsaserefpolicy/policy/modules/services/pcscd.te 2009-03-23 13:47:11.000000000 -0400 +++ serefpolicy-3.6.21/policy/modules/services/pcscd.te 2009-07-01 10:43:36.000000000 -0400 @@ -19814,7 +19827,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/setroubleshoot.te serefpolicy-3.6.21/policy/modules/services/setroubleshoot.te --- nsaserefpolicy/policy/modules/services/setroubleshoot.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/setroubleshoot.te 2009-07-01 14:04:44.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/setroubleshoot.te 2009-07-07 14:10:21.000000000 -0400 @@ -22,13 +22,19 @@ type setroubleshoot_var_run_t; files_pid_file(setroubleshoot_var_run_t) @@ -19875,7 +19888,7 @@ diff -b -B --ignore-all-space --exclude- selinux_get_enforce_mode(setroubleshootd_t) selinux_validate_context(setroubleshootd_t) -@@ -94,23 +112,47 @@ +@@ -94,23 +112,50 @@ locallogin_dontaudit_use_fds(setroubleshootd_t) @@ -19923,8 +19936,11 @@ diff -b -B --ignore-all-space --exclude- + +miscfiles_read_localization(setroubleshoot_fixit_t) + -+permissive setroubleshoot_fixit_t; ++optional_policy(` ++ polkit_dbus_chat(setroubleshoot_fixit_t) ++') + ++permissive setroubleshoot_fixit_t; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/shorewall.fc serefpolicy-3.6.21/policy/modules/services/shorewall.fc --- nsaserefpolicy/policy/modules/services/shorewall.fc 1969-12-31 19:00:00.000000000 -0500 +++ serefpolicy-3.6.21/policy/modules/services/shorewall.fc 2009-07-01 10:43:36.000000000 -0400 @@ -22730,7 +22746,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.te serefpolicy-3.6.21/policy/modules/services/xserver.te --- nsaserefpolicy/policy/modules/services/xserver.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/xserver.te 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/xserver.te 2009-07-07 15:47:58.000000000 -0400 @@ -34,6 +34,13 @@ ## @@ -23110,7 +23126,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -515,12 +589,45 @@ +@@ -515,12 +589,46 @@ ') optional_policy(` @@ -23129,6 +23145,7 @@ diff -b -B --ignore-all-space --exclude- + + optional_policy(` + devicekit_power_dbus_chat(xdm_t) ++ devicekit_disk_dbus_chat(xdm_t) + ') + + optional_policy(` @@ -23156,7 +23173,7 @@ diff -b -B --ignore-all-space --exclude- hostname_exec(xdm_t) ') -@@ -542,6 +649,28 @@ +@@ -542,6 +650,28 @@ ') optional_policy(` @@ -23185,7 +23202,7 @@ diff -b -B --ignore-all-space --exclude- seutil_sigchld_newrole(xdm_t) ') -@@ -550,8 +679,9 @@ +@@ -550,8 +680,9 @@ ') optional_policy(` @@ -23197,7 +23214,7 @@ diff -b -B --ignore-all-space --exclude- ifndef(`distro_redhat',` allow xdm_t self:process { execheap execmem }; -@@ -560,7 +690,6 @@ +@@ -560,7 +691,6 @@ ifdef(`distro_rhel4',` allow xdm_t self:process { execheap execmem }; ') @@ -23205,7 +23222,7 @@ diff -b -B --ignore-all-space --exclude- optional_policy(` userhelper_dontaudit_search_config(xdm_t) -@@ -571,6 +700,10 @@ +@@ -571,6 +701,10 @@ ') optional_policy(` @@ -23216,7 +23233,7 @@ diff -b -B --ignore-all-space --exclude- xfs_stream_connect(xdm_t) ') -@@ -587,7 +720,7 @@ +@@ -587,7 +721,7 @@ # execheap needed until the X module loader is fixed. # NVIDIA Needs execstack @@ -23225,7 +23242,7 @@ diff -b -B --ignore-all-space --exclude- dontaudit xserver_t self:capability chown; allow xserver_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execstack execheap }; allow xserver_t self:memprotect mmap_zero; -@@ -602,9 +735,11 @@ +@@ -602,9 +736,11 @@ allow xserver_t self:unix_stream_socket { create_stream_socket_perms connectto }; allow xserver_t self:tcp_socket create_stream_socket_perms; allow xserver_t self:udp_socket create_socket_perms; @@ -23237,7 +23254,7 @@ diff -b -B --ignore-all-space --exclude- allow xserver_t { input_xevent_t input_xevent_type }:x_event send; -@@ -616,13 +751,14 @@ +@@ -616,13 +752,14 @@ type_transition xserver_t xserver_t:{ x_drawable x_colormap } rootwindow_t; allow xserver_t { rootwindow_t x_domain }:x_drawable send; @@ -23253,7 +23270,7 @@ diff -b -B --ignore-all-space --exclude- manage_dirs_pattern(xserver_t, xserver_tmpfs_t, xserver_tmpfs_t) manage_files_pattern(xserver_t, xserver_tmpfs_t, xserver_tmpfs_t) -@@ -635,9 +771,19 @@ +@@ -635,9 +772,19 @@ manage_lnk_files_pattern(xserver_t, xkb_var_lib_t, xkb_var_lib_t) files_search_var_lib(xserver_t) @@ -23273,7 +23290,7 @@ diff -b -B --ignore-all-space --exclude- kernel_read_system_state(xserver_t) kernel_read_device_sysctls(xserver_t) -@@ -680,9 +826,14 @@ +@@ -680,9 +827,14 @@ dev_rw_xserver_misc(xserver_t) # read events - the synaptics touchpad driver reads raw events dev_rw_input_dev(xserver_t) @@ -23288,7 +23305,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(xserver_t) files_read_etc_runtime_files(xserver_t) -@@ -697,8 +848,12 @@ +@@ -697,8 +849,12 @@ fs_search_nfs(xserver_t) fs_search_auto_mountpoints(xserver_t) fs_search_ramfs(xserver_t) @@ -23301,7 +23318,7 @@ diff -b -B --ignore-all-space --exclude- selinux_validate_context(xserver_t) selinux_compute_access_vector(xserver_t) -@@ -720,6 +875,7 @@ +@@ -720,6 +876,7 @@ miscfiles_read_localization(xserver_t) miscfiles_read_fonts(xserver_t) @@ -23309,7 +23326,7 @@ diff -b -B --ignore-all-space --exclude- modutils_domtrans_insmod(xserver_t) -@@ -742,7 +898,7 @@ +@@ -742,7 +899,7 @@ ') ifdef(`enable_mls',` @@ -23318,7 +23335,7 @@ diff -b -B --ignore-all-space --exclude- range_transition xserver_t xserver_t:x_drawable s0 - mls_systemhigh; ') -@@ -774,12 +930,20 @@ +@@ -774,12 +931,20 @@ ') optional_policy(` @@ -23340,7 +23357,7 @@ diff -b -B --ignore-all-space --exclude- unconfined_domtrans(xserver_t) ') -@@ -806,7 +970,7 @@ +@@ -806,7 +971,7 @@ allow xserver_t xdm_var_lib_t:file { getattr read }; dontaudit xserver_t xdm_var_lib_t:dir search; @@ -23349,7 +23366,7 @@ diff -b -B --ignore-all-space --exclude- # Label pid and temporary files with derived types. manage_files_pattern(xserver_t, xdm_tmp_t, xdm_tmp_t) -@@ -827,9 +991,14 @@ +@@ -827,9 +992,14 @@ # to read ROLE_home_t - examine this in more detail # (xauth?) userdom_read_user_home_content_files(xserver_t) @@ -23364,7 +23381,7 @@ diff -b -B --ignore-all-space --exclude- tunable_policy(`use_nfs_home_dirs',` fs_manage_nfs_dirs(xserver_t) fs_manage_nfs_files(xserver_t) -@@ -844,11 +1013,14 @@ +@@ -844,11 +1014,14 @@ optional_policy(` dbus_system_bus_client(xserver_t) @@ -23380,7 +23397,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -856,6 +1028,11 @@ +@@ -856,6 +1029,11 @@ rhgb_rw_tmpfs_files(xserver_t) ') @@ -23392,7 +23409,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # Rules common to all X window domains -@@ -881,6 +1058,8 @@ +@@ -881,6 +1059,8 @@ # X Server # can read server-owned resources allow x_domain xserver_t:x_resource read; @@ -23401,7 +23418,7 @@ diff -b -B --ignore-all-space --exclude- # can mess with own clients allow x_domain self:x_client { manage destroy }; -@@ -905,6 +1084,8 @@ +@@ -905,6 +1085,8 @@ # operations allowed on my windows allow x_domain self:x_drawable { create destroy getattr setattr read write show hide list_child add_child remove_child manage send receive }; @@ -23410,7 +23427,7 @@ diff -b -B --ignore-all-space --exclude- # X Colormaps # can use the default colormap allow x_domain rootwindow_t:x_colormap { read use add_color }; -@@ -972,17 +1153,49 @@ +@@ -972,17 +1154,49 @@ allow xserver_unconfined_type { x_domain xserver_t }:x_resource *; allow xserver_unconfined_type xevent_type:{ x_event x_synthetic_event } *; Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.877 retrieving revision 1.878 diff -u -p -r1.877 -r1.878 --- selinux-policy.spec 7 Jul 2009 15:41:05 -0000 1.877 +++ selinux-policy.spec 7 Jul 2009 21:06:52 -0000 1.878 @@ -185,7 +185,7 @@ fi; %description SELinux Reference Policy - modular. -Based off of reference policy: Checked out revision 3005. +Based off of reference policy: Checked out revision 3011. %build From dwalsh at fedoraproject.org Tue Jul 7 21:09:45 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 7 Jul 2009 21:09:45 +0000 (UTC) Subject: rpms/libsemanage/devel .cvsignore, 1.100, 1.101 libsemanage-rhat.patch, 1.50, 1.51 libsemanage.spec, 1.177, 1.178 sources, 1.102, 1.103 Message-ID: <20090707210945.89FDC11C0048@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/libsemanage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20416 Modified Files: .cvsignore libsemanage-rhat.patch libsemanage.spec sources Log Message: * Tue Jul 7 2009 Dan Walsh - 2.0.33-1 - Update to upstream Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/.cvsignore,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- .cvsignore 8 Jun 2009 19:05:18 -0000 1.100 +++ .cvsignore 7 Jul 2009 21:09:14 -0000 1.101 @@ -106,3 +106,4 @@ libsemanage-2.0.29.tgz libsemanage-2.0.30.tgz libsemanage-2.0.31.tgz libsemanage-2.0.32.tgz +libsemanage-2.0.33.tgz libsemanage-rhat.patch: View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.50 -r 1.51 libsemanage-rhat.patch Index: libsemanage-rhat.patch =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/libsemanage-rhat.patch,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- libsemanage-rhat.patch 8 Jun 2009 19:05:19 -0000 1.50 +++ libsemanage-rhat.patch 7 Jul 2009 21:09:14 -0000 1.51 @@ -1,1195 +1,16 @@ -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/direct_api.c libsemanage-2.0.31/src/direct_api.c ---- nsalibsemanage/src/direct_api.c 2009-01-13 08:45:35.000000000 -0500 -+++ libsemanage-2.0.31/src/direct_api.c 2009-06-02 14:54:20.000000000 -0400 -@@ -991,7 +991,7 @@ - - int retval = -1; - char *data = NULL; -- size_t data_len = 0; -+ ssize_t data_len = 0; - int compressed = 0; - int in_fd = -1; - -@@ -999,7 +999,7 @@ - return -1; - } - -- if ((data_len = map_file(in_fd, &data, &compressed)) == 0) { -+ if ((data_len = map_file(in_fd, &data, &compressed)) <= 0) { - goto cleanup; - } - -@@ -1117,7 +1117,7 @@ - { - int retval = -1; - char *data = NULL; -- size_t data_len = 0; -+ ssize_t data_len = 0; - int compressed = 0; - int in_fd = -1; - -@@ -1125,7 +1125,7 @@ - return -1; - } - -- if ((data_len = map_file(in_fd, &data, &compressed)) == 0) { -+ if ((data_len = map_file(in_fd, &data, &compressed)) <= 0) { - goto cleanup; - } - -@@ -1187,7 +1187,7 @@ - { - int retval = -1; - char *data = NULL; -- size_t data_len = 0; -+ ssize_t data_len = 0; - int compressed = 0; - int in_fd; - -@@ -1195,7 +1195,7 @@ - return -1; - } - -- if ((data_len = map_file(in_fd, &data, &compressed)) == 0) { -+ if ((data_len = map_file(in_fd, &data, &compressed)) <= 0) { - goto cleanup; - } - -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/genhomedircon.c libsemanage-2.0.31/src/genhomedircon.c ---- nsalibsemanage/src/genhomedircon.c 2008-08-28 09:34:24.000000000 -0400 -+++ libsemanage-2.0.31/src/genhomedircon.c 2009-06-02 14:54:20.000000000 -0400 -@@ -794,6 +794,12 @@ - * /root */ - continue; - } -+ if (strcmp(pwent->pw_dir, "/root") == 0) { -+ /* don't relabel / genhomdircon checked to see if root -+ * was the user and if so, set his home directory to -+ * /root */ -+ continue; -+ } - if (push_user_entry(&head, name, seuname, - prefix, pwent->pw_dir) != STATUS_SUCCESS) { - *errors = STATUS_ERR; -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/handle.c libsemanage-2.0.31/src/handle.c ---- nsalibsemanage/src/handle.c 2008-11-14 17:10:15.000000000 -0500 -+++ libsemanage-2.0.31/src/handle.c 2009-06-02 14:54:20.000000000 -0400 -@@ -264,7 +264,7 @@ - assert(sh != NULL && sh->funcs != NULL && sh->funcs->commit != NULL); - if (!sh->is_in_transaction) { - ERR(sh, -- "Will not commit because caller does not have a tranaction lock yet."); -+ "Will not commit because caller does not have a transaction lock yet."); - return -1; - } - retval = sh->funcs->commit(sh); -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage.conf libsemanage-2.0.31/src/semanage.conf +diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage.conf libsemanage-2.0.32/src/semanage.conf --- nsalibsemanage/src/semanage.conf 2008-08-28 09:34:24.000000000 -0400 -+++ libsemanage-2.0.31/src/semanage.conf 2009-06-02 14:54:20.000000000 -0400 ++++ libsemanage-2.0.32/src/semanage.conf 2009-07-01 11:15:30.000000000 -0400 @@ -35,4 +35,4 @@ # given in . Change this setting if a different # version is necessary. #policy-version = 19 - +expand-check=0 -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage.py libsemanage-2.0.31/src/semanage.py ---- nsalibsemanage/src/semanage.py 2009-01-13 08:45:35.000000000 -0500 -+++ libsemanage-2.0.31/src/semanage.py 2009-06-02 14:59:55.000000000 -0400 -@@ -1,12 +1,32 @@ - # This file was automatically generated by SWIG (http://www.swig.org). --# Version 1.3.35 -+# Version 1.3.39 - # --# Don't modify this file, modify the SWIG interface instead. -+# Do not make changes to this file unless you know what you are doing--modify -+# the SWIG interface file instead. - # This file is compatible with both classic and new-style classes. - --import _semanage --import new --new_instancemethod = new.instancemethod -+from sys import version_info -+if version_info >= (2,6,0): -+ def swig_import_helper(): -+ from os.path import dirname -+ import imp -+ fp = None -+ try: -+ fp, pathname, description = imp.find_module('_semanage', [dirname(__file__)]) -+ except ImportError: -+ import _semanage -+ return _semanage -+ if fp is not None: -+ try: -+ _mod = imp.load_module('_semanage', fp, pathname, description) -+ finally: -+ fp.close() -+ return _mod -+ _semanage = swig_import_helper() -+ del swig_import_helper -+else: -+ import _semanage -+del version_info - try: - _swig_property = property - except NameError: -@@ -14,7 +34,7 @@ - def _swig_setattr_nondynamic(self,class_type,name,value,static=1): - if (name == "thisown"): return self.this.own(value) - if (name == "this"): -- if type(value).__name__ == 'PySwigObject': -+ if type(value).__name__ == 'SwigPyObject': - self.__dict__[name] = value - return - method = class_type.__swig_setmethods__.get(name,None) -@@ -31,204 +51,715 @@ - if (name == "thisown"): return self.this.own() - method = class_type.__swig_getmethods__.get(name,None) - if method: return method(self) -- raise AttributeError,name -+ raise AttributeError(name) - - def _swig_repr(self): - try: strthis = "proxy of " + self.this.__repr__() - except: strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - --import types - try: -- _object = types.ObjectType -+ _object = object - _newclass = 1 - except AttributeError: - class _object : pass - _newclass = 0 --del types - - - SEMANAGE_MSG_ERR = _semanage.SEMANAGE_MSG_ERR - SEMANAGE_MSG_WARN = _semanage.SEMANAGE_MSG_WARN - SEMANAGE_MSG_INFO = _semanage.SEMANAGE_MSG_INFO -+ -+def semanage_msg_get_level(*args): -+ return _semanage.semanage_msg_get_level(*args) - semanage_msg_get_level = _semanage.semanage_msg_get_level -+ -+def semanage_msg_get_channel(*args): -+ return _semanage.semanage_msg_get_channel(*args) - semanage_msg_get_channel = _semanage.semanage_msg_get_channel -+ -+def semanage_msg_get_fname(*args): -+ return _semanage.semanage_msg_get_fname(*args) - semanage_msg_get_fname = _semanage.semanage_msg_get_fname -+ -+def semanage_msg_set_callback(*args): -+ return _semanage.semanage_msg_set_callback(*args) - semanage_msg_set_callback = _semanage.semanage_msg_set_callback -+ -+def semanage_handle_create(): -+ return _semanage.semanage_handle_create() [...5743 lines suppressed...] - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; -+ int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:semanage_node_iterate",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_semanage_handle, 0 | 0 ); -@@ -11473,13 +11693,13 @@ - semanage_handle_t *arg1 = (semanage_handle_t *) 0 ; - semanage_node_t ***arg2 = (semanage_node_t ***) 0 ; - unsigned int *arg3 = (unsigned int *) 0 ; -- int result; - void *argp1 = 0 ; - int res1 = 0 ; - semanage_node_t **temp2 = NULL ; - unsigned int temp3 ; - int res3 = SWIG_TMPOBJ ; - PyObject * obj0 = 0 ; -+ int result; - - { - arg2 = &temp2; -@@ -11514,6 +11734,7 @@ - - - static PyMethodDef SwigMethods[] = { -+ { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, - { (char *)"semanage_msg_get_level", _wrap_semanage_msg_get_level, METH_VARARGS, NULL}, - { (char *)"semanage_msg_get_channel", _wrap_semanage_msg_get_channel, METH_VARARGS, NULL}, - { (char *)"semanage_msg_get_fname", _wrap_semanage_msg_get_fname, METH_VARARGS, NULL}, -@@ -11794,6 +12015,7 @@ - static swig_type_info _swigt__p_p_semanage_context = {"_p_p_semanage_context", "struct semanage_context **|semanage_context_t **", 0, 0, (void*)0, 0}; - static swig_type_info _swigt__p_p_semanage_fcontext = {"_p_p_semanage_fcontext", "struct semanage_fcontext **|semanage_fcontext_t **", 0, 0, (void*)0, 0}; - static swig_type_info _swigt__p_p_semanage_fcontext_key = {"_p_p_semanage_fcontext_key", "semanage_fcontext_key_t **|struct semanage_fcontext_key **", 0, 0, (void*)0, 0}; -+static swig_type_info _swigt__p_p_semanage_handle_t = {"_p_p_semanage_handle_t", "struct semanage_handle_t **", 0, 0, (void*)0, 0}; - static swig_type_info _swigt__p_p_semanage_iface = {"_p_p_semanage_iface", "semanage_iface_t **|struct semanage_iface **", 0, 0, (void*)0, 0}; - static swig_type_info _swigt__p_p_semanage_iface_key = {"_p_p_semanage_iface_key", "semanage_iface_key_t **|struct semanage_iface_key **", 0, 0, (void*)0, 0}; - static swig_type_info _swigt__p_p_semanage_module_info = {"_p_p_semanage_module_info", "struct semanage_module_info **|semanage_module_info_t **", 0, 0, (void*)0, 0}; -@@ -11850,6 +12072,7 @@ - &_swigt__p_p_semanage_context, - &_swigt__p_p_semanage_fcontext, - &_swigt__p_p_semanage_fcontext_key, -+ &_swigt__p_p_semanage_handle_t, - &_swigt__p_p_semanage_iface, - &_swigt__p_p_semanage_iface_key, - &_swigt__p_p_semanage_module_info, -@@ -11906,6 +12129,7 @@ - static swig_cast_info _swigc__p_p_semanage_context[] = { {&_swigt__p_p_semanage_context, 0, 0, 0},{0, 0, 0, 0}}; - static swig_cast_info _swigc__p_p_semanage_fcontext[] = { {&_swigt__p_p_semanage_fcontext, 0, 0, 0},{0, 0, 0, 0}}; - static swig_cast_info _swigc__p_p_semanage_fcontext_key[] = { {&_swigt__p_p_semanage_fcontext_key, 0, 0, 0},{0, 0, 0, 0}}; -+static swig_cast_info _swigc__p_p_semanage_handle_t[] = { {&_swigt__p_p_semanage_handle_t, 0, 0, 0},{0, 0, 0, 0}}; - static swig_cast_info _swigc__p_p_semanage_iface[] = { {&_swigt__p_p_semanage_iface, 0, 0, 0},{0, 0, 0, 0}}; - static swig_cast_info _swigc__p_p_semanage_iface_key[] = { {&_swigt__p_p_semanage_iface_key, 0, 0, 0},{0, 0, 0, 0}}; - static swig_cast_info _swigc__p_p_semanage_module_info[] = { {&_swigt__p_p_semanage_module_info, 0, 0, 0},{0, 0, 0, 0}}; -@@ -11962,6 +12186,7 @@ - _swigc__p_p_semanage_context, - _swigc__p_p_semanage_fcontext, - _swigc__p_p_semanage_fcontext_key, -+ _swigc__p_p_semanage_handle_t, - _swigc__p_p_semanage_iface, - _swigc__p_p_semanage_iface_key, - _swigc__p_p_semanage_module_info, -@@ -12269,26 +12494,58 @@ - - SWIGINTERN PyObject * - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { -+#if PY_VERSION_HEX >= 0x03000000 -+ return PyUnicode_InternFromString(""); -+#else - return PyString_FromString(""); -+#endif - } - - SWIGINTERN PyObject * - swig_varlink_str(swig_varlinkobject *v) { -+#if PY_VERSION_HEX >= 0x03000000 -+ PyObject *str = PyUnicode_InternFromString("("); -+ PyObject *tail; -+ PyObject *joined; -+ swig_globalvar *var; -+ for (var = v->vars; var; var=var->next) { -+ tail = PyUnicode_FromString(var->name); -+ joined = PyUnicode_Concat(str, tail); -+ Py_DecRef(str); -+ Py_DecRef(tail); -+ str = joined; -+ if (var->next) { -+ tail = PyUnicode_InternFromString(", "); -+ joined = PyUnicode_Concat(str, tail); -+ Py_DecRef(str); -+ Py_DecRef(tail); -+ str = joined; -+ } -+ } -+ tail = PyUnicode_InternFromString(")"); -+ joined = PyUnicode_Concat(str, tail); -+ Py_DecRef(str); -+ Py_DecRef(tail); -+ str = joined; -+#else - PyObject *str = PyString_FromString("("); -- swig_globalvar *var; -+ swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - PyString_ConcatAndDel(&str,PyString_FromString(var->name)); - if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); - } - PyString_ConcatAndDel(&str,PyString_FromString(")")); -+#endif - return str; - } - - SWIGINTERN int - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { -+ char *tmp; - PyObject *str = swig_varlink_str(v); - fprintf(fp,"Swig global variables "); -- fprintf(fp,"%s\n", PyString_AsString(str)); -+ fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); -+ SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(str); - return 0; - } -@@ -12346,8 +12603,13 @@ - if (!type_init) { - const PyTypeObject tmp - = { -+ /* PyObject header changed in Python 3 */ -+#if PY_VERSION_HEX >= 0x03000000 -+ PyVarObject_HEAD_INIT(&PyType_Type, 0) -+#else - PyObject_HEAD_INIT(NULL) - 0, /* Number of items in variable part (ob_size) */ -+#endif - (char *)"swigvarlink", /* Type name (tp_name) */ - sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ - 0, /* Itemsize (tp_itemsize) */ -@@ -12383,7 +12645,10 @@ - #endif - }; - varlink_type = tmp; -+ /* for Python 3 we already assigned the ob_type in PyVarObject_HEAD_INIT() */ -+#if PY_VERSION_HEX < 0x03000000 - varlink_type.ob_type = &PyType_Type; -+#endif - type_init = 1; - } - return &varlink_type; -@@ -12508,13 +12773,37 @@ - #ifdef __cplusplus - extern "C" - #endif --SWIGEXPORT void SWIG_init(void) { -- PyObject *m, *d; -+ -+SWIGEXPORT -+#if PY_VERSION_HEX >= 0x03000000 -+PyObject* -+#else -+void -+#endif -+SWIG_init(void) { -+ PyObject *m, *d; -+#if PY_VERSION_HEX >= 0x03000000 -+ static struct PyModuleDef SWIG_module = { -+ PyModuleDef_HEAD_INIT, -+ (char *) SWIG_name, -+ NULL, -+ -1, -+ SwigMethods, -+ NULL, -+ NULL, -+ NULL, -+ NULL -+ }; -+#endif - - /* Fix SwigMethods to carry the callback ptrs when needed */ - SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); - -+#if PY_VERSION_HEX >= 0x03000000 -+ m = PyModule_Create(&SWIG_module); -+#else - m = Py_InitModule((char *) SWIG_name, SwigMethods); -+#endif - d = PyModule_GetDict(m); - - SWIG_InitializeModule(0); -@@ -12542,5 +12831,10 @@ - SWIG_Python_SetConstant(d, "SEMANAGE_FCONTEXT_PIPE",SWIG_From_int((int)(7))); - SWIG_Python_SetConstant(d, "SEMANAGE_PROTO_IP4",SWIG_From_int((int)(0))); - SWIG_Python_SetConstant(d, "SEMANAGE_PROTO_IP6",SWIG_From_int((int)(1))); -+#if PY_VERSION_HEX >= 0x03000000 -+ return m; -+#else -+ return; -+#endif - } - Index: libsemanage.spec =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/libsemanage.spec,v retrieving revision 1.177 retrieving revision 1.178 diff -u -p -r1.177 -r1.178 --- libsemanage.spec 8 Jun 2009 19:05:19 -0000 1.177 +++ libsemanage.spec 7 Jul 2009 21:09:15 -0000 1.178 @@ -1,8 +1,8 @@ -%define libsepolver 2.0.20-1 +%define libsepolver 2.0.37-1 %define libselinuxver 2.0.0-1 Summary: SELinux binary policy manipulation library Name: libsemanage -Version: 2.0.32 +Version: 2.0.33 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/python*/site-packages/* %changelog +* Tue Jul 7 2009 Dan Walsh - 2.0.33-1 +- Update to upstream + * Mon Jun 8 2009 Dan Walsh - 2.0.32-1 - Update to upstream * Ruby bindings from David Quigley. Index: sources =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/sources,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- sources 8 Jun 2009 19:05:19 -0000 1.102 +++ sources 7 Jul 2009 21:09:15 -0000 1.103 @@ -1 +1 @@ -4b9e3ec00959d29e972adb42c8edad8e libsemanage-2.0.32.tgz +9e4c56068457e7ffa60df8d8b8095a8a libsemanage-2.0.33.tgz From wtogami at fedoraproject.org Tue Jul 7 21:16:08 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Tue, 7 Jul 2009 21:16:08 +0000 (UTC) Subject: rpms/spamassassin/devel .cvsignore, 1.44, 1.45 sources, 1.43, 1.44 spamassassin.spec, 1.113, 1.114 Message-ID: <20090707211608.1752911C0048@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/spamassassin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21971 Modified Files: .cvsignore sources spamassassin.spec Log Message: - Include default rules to prevent mass confusion and complaints. You should really use sa-update though. Really. Edit /etc/cron.d/sa-update to automate it. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spamassassin/devel/.cvsignore,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- .cvsignore 7 Jul 2009 15:14:52 -0000 1.44 +++ .cvsignore 7 Jul 2009 21:15:37 -0000 1.45 @@ -1 +1,2 @@ Mail-SpamAssassin-3.3.0-alpha1.tar.bz2 +spamassassin-rules-791756.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spamassassin/devel/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 7 Jul 2009 15:14:52 -0000 1.43 +++ sources 7 Jul 2009 21:15:37 -0000 1.44 @@ -1 +1,2 @@ 04141392e1f20ea4a91bb63937351c65 Mail-SpamAssassin-3.3.0-alpha1.tar.bz2 +26eaca54924365ed7db538fdbeef7b11 spamassassin-rules-791756.tar.bz2 Index: spamassassin.spec =================================================================== RCS file: /cvs/pkgs/rpms/spamassassin/devel/spamassassin.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- spamassassin.spec 7 Jul 2009 15:14:52 -0000 1.113 +++ spamassassin.spec 7 Jul 2009 21:15:37 -0000 1.114 @@ -1,5 +1,5 @@ # OVERRIDE RHEL VERSION HERE, RHEL BUILDSYSTEM DOESN'T HAVE DIST TAG -#%%define rhel 4 +#%%define rhel 5 # Define Variables that must exist %{?!rhel:%define rhel 0} @@ -42,11 +42,13 @@ Summary: Spam filter for email which can Name: spamassassin Version: 3.3.0 %define prename alpha1 -Release: 0.1.alpha1%{?dist} +Release: 0.2.alpha1%{?dist} +%define rules_ver 791756 License: ASL 2.0 Group: Applications/Internet URL: http://spamassassin.apache.org/ Source0: http://www.apache.org/dist/%{name}/%{real_name}-%{version}-%{prename}.tar.bz2 +Source1: spamassassin-rules-%{rules_ver}.tar.bz2 Source2: redhat_local.cf Source3: spamassassin-default.rc Source4: spamassassin-spamc.rc @@ -119,6 +121,8 @@ To filter spam for all users, add that l %prep %setup -q -n Mail-SpamAssassin-%{version} +# Default rules from separate tarball +tar xfvj %{SOURCE1} # Patches 0-99 are RH specific # none yet # Patches 100+ are SVN backports (DO NOT REUSE!) @@ -162,6 +166,10 @@ install -m 0744 %{SOURCE8} %buildroot%{_ find $RPM_BUILD_ROOT \( -name perllocal.pod -o -name .packlist \) -exec rm -v {} \; find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' +# Default rules from separate tarball +mv updates_spamassassin_org/* $RPM_BUILD_ROOT%{_datadir}/spamassassin/ +rm -f $RPM_BUILD_ROOT%{_datadir}/spamassassin/MIRRORED.BY + find $RPM_BUILD_ROOT/usr -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" | grep -v perllocal.pod | @@ -226,13 +234,13 @@ fi exit 0 %changelog +* Tue Jul 07 2009 Warren Togami - 3.3.0-0.2.alpha1 +- Include default rules to prevent mass confusion and complaints. + You should really use sa-update though. Really. + Edit /etc/cron.d/sa-update to automate it. + * Mon Jul 06 2009 Warren Togami - 3.3.0-0.1.alpha1 - 3.3.0-alpha1 -- WARNING: spamassassin-3.3.0+ no longer ships with rules. - You must run sa-update to download rules before you use spamassassin. - Failure to download rules means spamassassin always returns unfiltered. - Should we ship a set of rules with spamassassin? Please discuss on - fedora-devel-list. * Wed Feb 25 2009 Fedora Release Engineering - 3.2.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mmcgrath at fedoraproject.org Tue Jul 7 21:21:58 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Tue, 7 Jul 2009 21:21:58 +0000 (UTC) Subject: rpms/smolt/devel .cvsignore, 1.25, 1.26 smolt.spec, 1.65, 1.66 sources, 1.26, 1.27 Message-ID: <20090707212158.1DABA11C0048@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24105 Modified Files: .cvsignore smolt.spec sources Log Message: Upstream released new version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 30 Nov 2008 19:45:00 -0000 1.25 +++ .cvsignore 7 Jul 2009 21:21:57 -0000 1.26 @@ -1 +1 @@ -smolt-1.2.tar.gz +smolt-1.3.tar.gz Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- smolt.spec 22 Jun 2009 16:55:02 -0000 1.65 +++ smolt.spec 7 Jul 2009 21:21:57 -0000 1.66 @@ -1,7 +1,7 @@ Name: smolt Summary: Fedora hardware profiler -Version: 1.2 -Release: 4.2%{?dist} +Version: 1.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://fedorahosted.org/smolt @@ -80,6 +80,7 @@ cd .. %{__cp} -adv smoon/* %{buildroot}/%{_datadir}/%{name}/smoon/ %{__cp} -adv client/simplejson %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/scan.py %{buildroot}/%{_datadir}/%{name}/client/ +%{__cp} client/gate.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/os_detect.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/fs_util.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/man/* %{buildroot}/%{_mandir}/man1/ @@ -146,6 +147,20 @@ if [ $1 = 0 ]; then /sbin/chkconfig --del smolt fi +%post server +#Fail, will fix later +for f in delete.html deviceclass.html device.html devices.html error.html \ + link.html login.html master.html myHosts.html notLoaded.html \ + pub_uuid.html raw.html report_device_ratings.html \ + report_host_ratings.html report_recent.html report_search_devices.html\ + report_search.html report_search_profiles.html report_view_device.html\ + report_view_devices.html report_view.html report_view_profile.html \ + report_view_profiles.html showall.html show.html stats.html token.html\ + welcome.html +do + touch %{_datadir}/%{name}/smoon/hardware/static/stats/$f +done + %post gui touch --no-create %{_datadir}/icons/hicolor || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : @@ -187,6 +202,10 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/smoltGui %changelog +* Thu Jul 02 2009 Mike McGrath - 1.3-1 +- Added touch for generated stats +- Upstream released new version + * Tue Apr 14 2009 Mike McGrath - 1.2-4.2 - Removed fake attack Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 30 Nov 2008 19:45:00 -0000 1.26 +++ sources 7 Jul 2009 21:21:57 -0000 1.27 @@ -1 +1 @@ -c577b0bc190542fe6d1927c47bc91abb smolt-1.2.tar.gz +72fa94c3a866583477bb1c2b587869f9 smolt-1.3.tar.gz From mmcgrath at fedoraproject.org Tue Jul 7 21:27:33 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Tue, 7 Jul 2009 21:27:33 +0000 (UTC) Subject: rpms/smolt/F-11 smolt.spec,1.64,1.65 sources,1.26,1.27 Message-ID: <20090707212733.8458111C0048@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25312 Modified Files: smolt.spec sources Log Message: upstream released new version Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/F-11/smolt.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- smolt.spec 14 Apr 2009 14:21:26 -0000 1.64 +++ smolt.spec 7 Jul 2009 21:27:03 -0000 1.65 @@ -1,7 +1,7 @@ Name: smolt Summary: Fedora hardware profiler -Version: 1.2 -Release: 4.2%{?dist} +Version: 1.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://fedorahosted.org/smolt @@ -80,6 +80,7 @@ cd .. %{__cp} -adv smoon/* %{buildroot}/%{_datadir}/%{name}/smoon/ %{__cp} -adv client/simplejson %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/scan.py %{buildroot}/%{_datadir}/%{name}/client/ +%{__cp} client/gate.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/os_detect.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/fs_util.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/man/* %{buildroot}/%{_mandir}/man1/ @@ -146,6 +147,28 @@ if [ $1 = 0 ]; then /sbin/chkconfig --del smolt fi +%post server +#Fail, will fix later +for f in delete.html deviceclass.html device.html devices.html error.html \ + link.html login.html master.html myHosts.html notLoaded.html \ + pub_uuid.html raw.html report_device_ratings.html \ + report_host_ratings.html report_recent.html report_search_devices.html\ + report_search.html report_search_profiles.html report_view_device.html\ + report_view_devices.html report_view.html report_view_profile.html \ + report_view_profiles.html showall.html show.html stats.html token.html\ + welcome.html +do + touch %{_datadir}/%{name}/smoon/hardware/static/stats/$f +done + +%post gui +touch --no-create %{_datadir}/icons/hicolor || : +%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : + +%postun gui +touch --no-create %{_datadir}/icons/hicolor || : +%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : + %files -f %{name}.lang %defattr(-,root,root,-) %doc README GPL doc/* @@ -179,6 +202,10 @@ fi %{_bindir}/smoltGui %changelog +* Thu Jul 02 2009 Mike McGrath - 1.3-1 +- Added touch for generated stats +- Upstream released new version + * Tue Apr 14 2009 Mike McGrath - 1.2-4.2 - Removed fake attack Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/smolt/F-11/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 30 Nov 2008 19:45:00 -0000 1.26 +++ sources 7 Jul 2009 21:27:03 -0000 1.27 @@ -1 +1 @@ -c577b0bc190542fe6d1927c47bc91abb smolt-1.2.tar.gz +72fa94c3a866583477bb1c2b587869f9 smolt-1.3.tar.gz From rdieter at fedoraproject.org Tue Jul 7 21:30:30 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 7 Jul 2009 21:30:30 +0000 (UTC) Subject: rpms/amarok/devel amarok.spec,1.155,1.156 Message-ID: <20090707213030.37BFF11C0048@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/amarok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26054 Modified Files: amarok.spec Log Message: * Tue Jul 07 2009 Rex Dieter 2.1.1-2 - Requires: qtscripbindings%{?_isa} (#510133) Index: amarok.spec =================================================================== RCS file: /cvs/pkgs/rpms/amarok/devel/amarok.spec,v retrieving revision 1.155 retrieving revision 1.156 diff -u -p -r1.155 -r1.156 --- amarok.spec 13 Jun 2009 20:27:04 -0000 1.155 +++ amarok.spec 7 Jul 2009 21:29:59 -0000 1.156 @@ -2,7 +2,7 @@ Name: amarok Summary: Media player Version: 2.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Multimedia License: GPLv2+ @@ -41,7 +41,7 @@ BuildRequires: taglib-extras-devel %{?_qt4_version:Requires: qt4 >= %{_qt4_version}} %{?kdelibs4_version:Requires: kdelibs4 >= %{kdelibs4_version}} BuildRequires: qtscriptbindings -Requires: qtscriptbindings +Requires: qtscriptbindings%{?_isa} Requires: %{name}-utils = %{version}-%{release} Obsoletes: amarok-devel < 1.4.9 @@ -150,6 +150,9 @@ fi %changelog +* Tue Jul 07 2009 Rex Dieter 2.1.1-2 +- Requires: qtscripbindings%%{?_isa} (#510133) + * Fri Jun 12 2009 Rex Dieter 2.1.1-1 - amarok-2.1.1 From spot at fedoraproject.org Tue Jul 7 21:39:26 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 7 Jul 2009 21:39:26 +0000 (UTC) Subject: rpms/kde-i18n/devel kde-i18n.spec,1.98,1.99 Message-ID: <20090707213926.6DA6E11C0048@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/kde-i18n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28128 Modified Files: kde-i18n.spec Log Message: catch the missing files in the locale directory Index: kde-i18n.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-i18n/devel/kde-i18n.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- kde-i18n.spec 7 Jul 2009 20:38:01 -0000 1.98 +++ kde-i18n.spec 7 Jul 2009 21:39:26 -0000 1.99 @@ -7,7 +7,7 @@ Summary: Internationalization support fo Name: kde-i18n Epoch: 1 Version: 3.5.10 -Release: 7%{?dist} +Release: 8%{?dist} # GFDL, with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. License: GFDL @@ -1436,6 +1436,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %lang(da) %{_datadir}/locale/da/LC_MESSAGES/* %lang(da) %{_datadir}/locale/da/charset +%lang(da) %{_datadir}/locale/da/da.compendium %lang(da) %{_docdir}/HTML/da/ %if 0%{?fedora} < 9 %lang(da) %{_datadir}/apps/ktuberling/sounds/da/* @@ -1545,6 +1546,8 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %lang(fr) %{_datadir}/locale/fr/LC_MESSAGES/* %lang(fr) %{_datadir}/locale/fr/charset +%lang(fr) %{_datadir}/locale/fr/nbsp_gui_fr.txt +%lang(fr) %{_datadir}/locale/fr/relecture_* %lang(fr) %{_docdir}/HTML/fr/ %if 0%{?fedora} < 9 %lang(fr) %{_datadir}/apps/ktuberling/sounds/fr/* @@ -1715,6 +1718,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %lang(nb) %{_datadir}/locale/nb/LC_MESSAGES/* %lang(nb) %{_datadir}/locale/nb/charset +%lang(nb) %{_datadir}/locale/nb/README #%lang(nb) %{_docdir}/HTML/nb/ #%if 0%{?fedora} < 9 #%lang(nb) %{_datadir}/apps/khangman/data/nb @@ -1935,6 +1939,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 7 2009 Tom "spot" Callaway 1:3.5.10-8 +- catch the missing files in the locale directories + * Tue Jul 7 2009 Tom "spot" Callaway 1:3.5.10-7 - fix duplicate directory ownership (/usr/share/locale/*/LC_MESSAGES) From rdieter at fedoraproject.org Tue Jul 7 21:45:16 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Tue, 7 Jul 2009 21:45:16 +0000 (UTC) Subject: rpms/amarok/devel amarok.spec,1.156,1.157 Message-ID: <20090707214516.EFB0811C0048@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/amarok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29306 Modified Files: amarok.spec Log Message: typo Index: amarok.spec =================================================================== RCS file: /cvs/pkgs/rpms/amarok/devel/amarok.spec,v retrieving revision 1.156 retrieving revision 1.157 diff -u -p -r1.156 -r1.157 --- amarok.spec 7 Jul 2009 21:29:59 -0000 1.156 +++ amarok.spec 7 Jul 2009 21:44:46 -0000 1.157 @@ -151,7 +151,7 @@ fi %changelog * Tue Jul 07 2009 Rex Dieter 2.1.1-2 -- Requires: qtscripbindings%%{?_isa} (#510133) +- Requires: qtscriptbindings%%{?_isa} (#510133) * Fri Jun 12 2009 Rex Dieter 2.1.1-1 - amarok-2.1.1 From ausil at fedoraproject.org Tue Jul 7 22:14:51 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 7 Jul 2009 22:14:51 +0000 (UTC) Subject: rpms/fedora-packager/EL-5 fedora-packager.spec,1.6,1.7 Message-ID: <20090707221451.77C0711C0048@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3648 Modified Files: fedora-packager.spec Log Message: Require redhat-rpm-config Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/fedora-packager.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fedora-packager.spec 24 Jun 2009 06:15:35 -0000 1.6 +++ fedora-packager.spec 7 Jul 2009 22:14:51 -0000 1.7 @@ -1,6 +1,6 @@ Name: fedora-packager Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -13,6 +13,7 @@ Requires: koji bodhi-client Requires: rpm-build rpmdevtools rpmlint Requires: mock cvs curl wget Requires: pyOpenSSL python-pycurl +Requires: redhat-rpm-config BuildArch: noarch @@ -47,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 6 2009 Tom "spot" Callaway - 0.3.4-3 +- add Requires: redhat-rpm-config to be sure fedora packagers are using all available macros + * Wed Jun 24 2009 Dennis Gilmore - 0.3.4-2 - minor bump From ajax at fedoraproject.org Tue Jul 7 22:27:42 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 7 Jul 2009 22:27:42 +0000 (UTC) Subject: rpms/gnome-desktop/devel gnome-desktop-2.27.3-edid-prop-name.patch, NONE, 1.1 gnome-desktop.spec, 1.213, 1.214 Message-ID: <20090707222742.5149811C0048@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/gnome-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6925 Modified Files: gnome-desktop.spec Added Files: gnome-desktop-2.27.3-edid-prop-name.patch Log Message: * Tue Jul 07 2009 Adam Jackson 2.27.3-2 - gnome-desktop-2.27.3-edid-prop-name.patch: Adapt to RANDR 1.3's new name for the EDID output property. gnome-desktop-2.27.3-edid-prop-name.patch: --- NEW FILE gnome-desktop-2.27.3-edid-prop-name.patch --- commit d9f0cca94f16628cb273cadfe25bd5998ac3c178 Author: Adam Jackson Date: Tue Jul 7 18:20:12 2009 -0400 Adapt to RANDR 1.3's name for the EDID property. 1.2 calls it EDID_DATA, 1.3 calls it EDID. Try the 1.3 name first since 1.2 will eventually be rare. diff --git a/libgnome-desktop/gnome-rr.c b/libgnome-desktop/gnome-rr.c index a3a8b2c..b788600 100644 --- a/libgnome-desktop/gnome-rr.c +++ b/libgnome-desktop/gnome-rr.c @@ -866,13 +866,21 @@ get_property (Display *dpy, static guint8 * read_edid_data (GnomeRROutput *output) { - Atom edid_atom = XInternAtom (DISPLAY (output), "EDID_DATA", FALSE); + Atom edid_atom; guint8 *result; int len; - + + edid_atom = XInternAtom (DISPLAY (output), "EDID", FALSE); result = get_property (DISPLAY (output), output->id, edid_atom, &len); - + + if (!result) + { + edid_atom = XInternAtom (DISPLAY (output), "EDID_DATA", FALSE); + result = get_property (DISPLAY (output), + output->id, edid_atom, &len); + } + if (result) { if (len % 128 == 0) Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/gnome-desktop.spec,v retrieving revision 1.213 retrieving revision 1.214 diff -u -p -r1.213 -r1.214 --- gnome-desktop.spec 16 Jun 2009 14:03:35 -0000 1.213 +++ gnome-desktop.spec 7 Jul 2009 22:27:12 -0000 1.214 @@ -12,11 +12,13 @@ Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop Version: 2.27.3 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.27/%{name}-%{version}.tar.bz2 # http://bugzilla.gnome.org/show_bug.cgi?id=581621 Patch2: pnpids.patch +# Backport from 2.27.4 +Patch3: gnome-desktop-2.27.3-edid-prop-name.patch License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -75,6 +77,7 @@ libgnomedesktop. %prep %setup -q %patch2 -p1 -b .pnpids.patch +%patch3 -p1 -b .edid-name %build %configure --with-gnome-distributor="Red Hat, Inc" --disable-scrollkeeper @@ -120,6 +123,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Tue Jul 07 2009 Adam Jackson 2.27.3-2 +- gnome-desktop-2.27.3-edid-prop-name.patch: Adapt to RANDR 1.3's new name + for the EDID output property. + * Tue Jun 16 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 From ajax at fedoraproject.org Tue Jul 7 22:31:37 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 7 Jul 2009 22:31:37 +0000 (UTC) Subject: rpms/gnome-desktop/F-11 gnome-desktop-2.27.3-edid-prop-name.patch, NONE, 1.1 gnome-desktop.spec, 1.216, 1.217 Message-ID: <20090707223137.D9F1211C0048@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/gnome-desktop/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7762 Modified Files: gnome-desktop.spec Added Files: gnome-desktop-2.27.3-edid-prop-name.patch Log Message: * Tue Jul 07 2009 Adam Jackson 2.26.3-2 - gnome-desktop-2.27.3-edid-prop-name.patch: Adapt to RANDR 1.3's name for the EDID property. gnome-desktop-2.27.3-edid-prop-name.patch: --- NEW FILE gnome-desktop-2.27.3-edid-prop-name.patch --- commit d9f0cca94f16628cb273cadfe25bd5998ac3c178 Author: Adam Jackson Date: Tue Jul 7 18:20:12 2009 -0400 Adapt to RANDR 1.3's name for the EDID property. 1.2 calls it EDID_DATA, 1.3 calls it EDID. Try the 1.3 name first since 1.2 will eventually be rare. diff --git a/libgnome-desktop/gnome-rr.c b/libgnome-desktop/gnome-rr.c index a3a8b2c..b788600 100644 --- a/libgnome-desktop/gnome-rr.c +++ b/libgnome-desktop/gnome-rr.c @@ -866,13 +866,21 @@ get_property (Display *dpy, static guint8 * read_edid_data (GnomeRROutput *output) { - Atom edid_atom = XInternAtom (DISPLAY (output), "EDID_DATA", FALSE); + Atom edid_atom; guint8 *result; int len; - + + edid_atom = XInternAtom (DISPLAY (output), "EDID", FALSE); result = get_property (DISPLAY (output), output->id, edid_atom, &len); - + + if (!result) + { + edid_atom = XInternAtom (DISPLAY (output), "EDID_DATA", FALSE); + result = get_property (DISPLAY (output), + output->id, edid_atom, &len); + } + if (result) { if (len % 128 == 0) Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/F-11/gnome-desktop.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- gnome-desktop.spec 1 Jul 2009 15:57:19 -0000 1.216 +++ gnome-desktop.spec 7 Jul 2009 22:31:07 -0000 1.217 @@ -12,11 +12,13 @@ Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.26/%{name}-%{version}.tar.bz2 # http://bugzilla.gnome.org/show_bug.cgi?id=581621 Patch2: pnpids.patch +# Backport from 2.27.4 +Patch3: gnome-desktop-2.27.3-edid-prop-name.patch License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -75,6 +77,7 @@ libgnomedesktop. %prep %setup -q %patch2 -p1 -b .pnpids.patch +%patch3 -p1 -b .edid-prop %build %configure --with-gnome-distributor="Red Hat, Inc" --disable-scrollkeeper @@ -120,6 +123,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Tue Jul 07 2009 Adam Jackson 2.26.3-2 +- gnome-desktop-2.27.3-edid-prop-name.patch: Adapt to RANDR 1.3's name for the + EDID property. + * Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 - Update to 2.26.3 - http://download.gnome.org/sources/gnome-desktop/2.26/gnome-desktop-2.26.3.news From ajax at fedoraproject.org Tue Jul 7 22:33:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 7 Jul 2009 22:33:52 +0000 (UTC) Subject: rpms/hwdata/devel pnp-dell.patch,NONE,1.1 hwdata.spec,1.111,1.112 Message-ID: <20090707223352.4957A11C0048@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/hwdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8372 Modified Files: hwdata.spec Added Files: pnp-dell.patch Log Message: * Tue Jul 07 2009 Adam Jackson 0.225-2 - pnp-dell.patch: Fix Dell's entry in pnp.ids pnp-dell.patch: --- NEW FILE pnp-dell.patch --- diff -up hwdata-0.225/pnp.ids.jx hwdata-0.225/pnp.ids --- hwdata-0.225/pnp.ids.jx 2009-04-09 14:33:30.000000000 -0400 +++ hwdata-0.225/pnp.ids 2009-07-07 18:32:20.000000000 -0400 @@ -440,7 +440,7 @@ DDS Barco, n.v. DDT Datadesk Technologies Inc DEC Digital Equipment Corporation DEI Deico Electronics -DEL Deltec Corporation +DEL Dell DEN Densitron Computers Ltd DEX idex displays DFI DFI Index: hwdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/hwdata/devel/hwdata.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- hwdata.spec 9 Apr 2009 18:35:46 -0000 1.111 +++ hwdata.spec 7 Jul 2009 22:33:21 -0000 1.112 @@ -1,7 +1,7 @@ Name: hwdata Summary: Hardware identification and configuration data Version: 0.225 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base Source: hwdata-%{version}.tar.bz2 @@ -10,6 +10,7 @@ BuildArch: noarch Conflicts: Xconfigurator, system-config-display < 1.0.31, pcmcia-cs, kudzu < 1.2.0 Requires: module-init-tools >= 3.2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: pnp-dell.patch %description hwdata contains various hardware identification and configuration data, @@ -18,6 +19,7 @@ such as the pci.ids database and Monitor %prep %setup -q +%patch0 -p1 -b .dell %build # nothing to build @@ -37,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/* %changelog +* Tue Jul 07 2009 Adam Jackson 0.225-2 +- pnp-dell.patch: Fix Dell's entry in pnp.ids + * Thu Apr 09 2009 Adam Jackson 0.224-1 - Update pci.ids, usb.ids, and oui.txt - Add pnp.ids From suravee at fedoraproject.org Tue Jul 7 22:40:10 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Tue, 7 Jul 2009 22:40:10 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel CodeAnalyst-gui.spec,1.5,1.6 Message-ID: <20090707224010.58F5811C0048@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9654 Modified Files: CodeAnalyst-gui.spec Log Message: -Bump version number Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- CodeAnalyst-gui.spec 18 Jun 2009 06:46:34 -0000 1.5 +++ CodeAnalyst-gui.spec 7 Jul 2009 22:39:39 -0000 1.6 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.38 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -165,6 +165,10 @@ fi %changelog +* Tue Jul 7 2009 - Suravee Suthikulpanit +- 2.8.38-13 +- Rebuild against new libbfd-2.19.51.0.20-20.fc12.so + * Thu Jun 18 2009 - Parag Nemade - 2.8.38-12 - Rebuild against new binutils package to fix rawhide dependency error. From jgu at fedoraproject.org Tue Jul 7 22:40:35 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Tue, 7 Jul 2009 22:40:35 +0000 (UTC) Subject: rpms/shorewall/devel .cvsignore, 1.56, 1.57 shorewall.spec, 1.85, 1.86 sources, 1.56, 1.57 Message-ID: <20090707224035.EEC9411C0048@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/shorewall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9876 Modified Files: .cvsignore shorewall.spec sources Log Message: * Tue Jul 7 2009 Jonathan G. Underwood - 4.4.0-0.1.Beta3 - Update to 4.4.0-Beta3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/shorewall/devel/.cvsignore,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- .cvsignore 11 Jun 2009 23:15:34 -0000 1.56 +++ .cvsignore 7 Jul 2009 22:40:35 -0000 1.57 @@ -1,4 +1,4 @@ -shorewall-4.3.12.tar.bz2 -shorewall6-4.3.12.tar.bz2 -shorewall6-lite-4.3.12.tar.bz2 -shorewall-lite-4.3.12.tar.bz2 +shorewall-4.4.0-Beta3.tar.bz2 +shorewall6-4.4.0-Beta3.tar.bz2 +shorewall6-lite-4.4.0-Beta3.tar.bz2 +shorewall-lite-4.4.0-Beta3.tar.bz2 Index: shorewall.spec =================================================================== RCS file: /cvs/extras/rpms/shorewall/devel/shorewall.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- shorewall.spec 12 Jun 2009 15:11:10 -0000 1.85 +++ shorewall.spec 7 Jul 2009 22:40:35 -0000 1.86 @@ -1,20 +1,20 @@ # A very helpful document for packaging Shorewall is "Anatomy of Shorewall 4.0" # which is found at http://www.shorewall.net/Anatomy.html -%global major_ver 4.3.12 +%global major_ver 4.4.0-Beta3 %global lite_ver %{major_ver} %global shorewall6_ver %{major_ver} %global lite6_ver %{major_ver} Name: shorewall -Version: %{major_ver} -Release: 3%{?dist} +Version: 4.4.0 +Release: 0.1.Beta3%{?dist} Summary: An iptables front end for firewall configuration Group: Applications/System License: GPLv2+ URL: http://www.shorewall.net/ -%global _baseurl http://www.shorewall.net/pub/shorewall/development/4.3/shorewall-%{version}/ +%global _baseurl http://www.shorewall.net/pub/shorewall/development/4.4/shorewall-%{major_ver}/ Source0: %{_baseurl}/%{name}-%{major_ver}.tar.bz2 Source1: %{_baseurl}/%{name}-lite-%{lite_ver}.tar.bz2 Source2: %{_baseurl}/%{name}6-%{shorewall6_ver}.tar.bz2 @@ -45,8 +45,8 @@ standalone GNU/Linux system. %package -n shorewall6 Summary: Files for the IPV6 Shorewall Firewall Group: Applications/System -Version: %{shorewall6_ver} -Requires: shorewall = %{major_ver}-%{release} +Version: %{version} +Requires: shorewall = %{version}-%{release} Requires: iptables-ipv6 iproute Requires(post): /sbin/chkconfig Requires(preun):/sbin/chkconfig @@ -59,7 +59,7 @@ Shoreline Firewall (shorewall). %package lite Group: Applications/System Summary: Shorewall firewall for compiled rulesets -Version: %{lite_ver} +Version: %{version} Requires: iptables iproute Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -75,7 +75,7 @@ Lite does not need to have a Shorewall r %package -n shorewall6-lite Group: Applications/System Summary: Shorewall firewall for compiled IPV6 rulesets -Version: %{lite6_ver} +Version: %{version} Requires: iptables iproute Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig @@ -90,10 +90,7 @@ compiler. A machine running Shorewall Li Shorewall rule compiler installed. %prep -%setup -q -c -n shorewall-%{major_ver} -%setup -q -T -D -a 1 -%setup -q -T -D -a 2 -%setup -q -T -D -a 3 +%setup -q -c -n %{name}-%{major_ver} -T -a0 -a1 -a2 -a3 # Overwrite default init files with Fedora specific ones cp %{SOURCE10} shorewall-%{major_ver} @@ -336,6 +333,9 @@ fi %attr(0755,root,root) %{_datadir}/shorewall6-lite/wait4ifup %changelog +* Tue Jul 7 2009 Jonathan G. Underwood - 4.4.0-0.1.Beta3 +- Update to 4.4.0-Beta3 + * Fri Jun 13 2009 Jonathan G. Underwood - 4.3.12-3 - Fix filelist for shorewall6 to include macro.Trcrt Index: sources =================================================================== RCS file: /cvs/extras/rpms/shorewall/devel/sources,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- sources 11 Jun 2009 23:15:34 -0000 1.56 +++ sources 7 Jul 2009 22:40:35 -0000 1.57 @@ -1,4 +1,4 @@ -ed7dcfa956c191e94a167416ef58ce1a shorewall-4.3.12.tar.bz2 -94a53ce9d099db3725aba9e3d9def37d shorewall6-4.3.12.tar.bz2 -a546e8d93234923f5bf601435d9c1c20 shorewall6-lite-4.3.12.tar.bz2 -3d4df45e88fcc9b13e3b46dc386f838d shorewall-lite-4.3.12.tar.bz2 +7ec01e06f96ddb837a99b7d26a95a85c shorewall-4.4.0-Beta3.tar.bz2 +e3812d7df83bb4dfe20df77bcd5a422e shorewall6-4.4.0-Beta3.tar.bz2 +3cbdcab1646b755222f095d6afc1649f shorewall6-lite-4.4.0-Beta3.tar.bz2 +3fa51acbdf84949af80ef7b99c187a7e shorewall-lite-4.4.0-Beta3.tar.bz2 From jgu at fedoraproject.org Tue Jul 7 23:11:57 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Tue, 7 Jul 2009 23:11:57 +0000 (UTC) Subject: rpms/shorewall/F-11 .cvsignore, 1.54, 1.55 shorewall.spec, 1.82, 1.83 sources, 1.55, 1.56 Message-ID: <20090707231157.8E88F11C0048@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/shorewall/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16374 Modified Files: .cvsignore shorewall.spec sources Log Message: * Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1 - Update to version 4.2.10 - Update shorewall-perl to 4.2.10.3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-11/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 20 May 2009 22:09:04 -0000 1.54 +++ .cvsignore 7 Jul 2009 23:11:57 -0000 1.55 @@ -1,6 +1,6 @@ -shorewall6-4.2.9.tar.bz2 -shorewall6-lite-4.2.9.tar.bz2 -shorewall-common-4.2.9.tar.bz2 -shorewall-lite-4.2.9.tar.bz2 -shorewall-perl-4.2.9.tar.bz2 -shorewall-shell-4.2.9.tar.bz2 +shorewall6-4.2.10.tar.bz2 +shorewall6-lite-4.2.10.tar.bz2 +shorewall-common-4.2.10.tar.bz2 +shorewall-lite-4.2.10.tar.bz2 +shorewall-perl-4.2.10.3.tar.bz2 +shorewall-shell-4.2.10.tar.bz2 Index: shorewall.spec =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-11/shorewall.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- shorewall.spec 11 Jun 2009 23:08:33 -0000 1.82 +++ shorewall.spec 7 Jul 2009 23:11:57 -0000 1.83 @@ -1,9 +1,9 @@ # A very helpful document for packaging Shorewall is "Anatomy of Shorewall 4.0" # which is found at http://www.shorewall.net/Anatomy.html -%global major_ver 4.2.9 +%global major_ver 4.2.10 %global common_ver %{major_ver} -%global perl_ver %{major_ver} +%global perl_ver %{major_ver}.3 %global lite_ver %{major_ver} %global shell_ver %{major_ver} %global shorewall6_ver %{major_ver} @@ -11,7 +11,7 @@ Name: shorewall Version: %{major_ver} -Release: 3%{?dist} +Release: 1%{?dist} Summary: An iptables front end for firewall configuration Group: Applications/System License: GPLv2+ @@ -407,6 +407,10 @@ fi %attr(0755,root,root) %{_datadir}/shorewall6-lite/wait4ifup %changelog +* Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1 +- Update to version 4.2.10 +- Update shorewall-perl to 4.2.10.3 + * Thu Jun 12 2009 Jonathan G. Underwood - 4.2.9-3 - Change init files to start as number 28 (previously 25) to ensure starting after NetworkManager (BZ 505444) Index: sources =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-11/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 20 May 2009 22:09:05 -0000 1.55 +++ sources 7 Jul 2009 23:11:57 -0000 1.56 @@ -1,6 +1,6 @@ -b2563b635d15824303449d8c30adf381 shorewall6-4.2.9.tar.bz2 -50efc79d52e7ef2e93fcbe1303c2af56 shorewall6-lite-4.2.9.tar.bz2 -6cdb50e7d3caadfc1046acb050ae1deb shorewall-common-4.2.9.tar.bz2 -59ca1b403a8752bcaae5d245ae35210c shorewall-lite-4.2.9.tar.bz2 -d2df02807b023526f58cb41ece36f610 shorewall-perl-4.2.9.tar.bz2 -caa96cf4c257a7156f1621a1ac41d69c shorewall-shell-4.2.9.tar.bz2 +9451ee3fffece868cba041e7c74fc8ef shorewall6-4.2.10.tar.bz2 +059b349fb46145c6eba6f3c3ecf1ae52 shorewall6-lite-4.2.10.tar.bz2 +49bdbbae8dec65154c4e5538ed3c9865 shorewall-common-4.2.10.tar.bz2 +ef5958819ba18801bacfe20e67184f2a shorewall-lite-4.2.10.tar.bz2 +f19bed40fe28a905fd08482b9dc5f7ce shorewall-perl-4.2.10.3.tar.bz2 +d6f7cbc3c502c09921ede920547d5017 shorewall-shell-4.2.10.tar.bz2 From jgu at fedoraproject.org Tue Jul 7 23:13:13 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Tue, 7 Jul 2009 23:13:13 +0000 (UTC) Subject: rpms/shorewall/F-10 shorewall.spec,1.79,1.80 sources,1.55,1.56 Message-ID: <20090707231313.3619811C0048@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/shorewall/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16584 Modified Files: shorewall.spec sources Log Message: * Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1 - Update to version 4.2.10 - Update shorewall-perl to 4.2.10.3 Index: shorewall.spec =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-10/shorewall.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- shorewall.spec 27 May 2009 21:28:38 -0000 1.79 +++ shorewall.spec 7 Jul 2009 23:12:42 -0000 1.80 @@ -1,9 +1,9 @@ # A very helpful document for packaging Shorewall is "Anatomy of Shorewall 4.0" # which is found at http://www.shorewall.net/Anatomy.html -%global major_ver 4.2.9 +%global major_ver 4.2.10 %global common_ver %{major_ver} -%global perl_ver %{major_ver} +%global perl_ver %{major_ver}.3 %global lite_ver %{major_ver} %global shell_ver %{major_ver} %global shorewall6_ver %{major_ver} @@ -11,13 +11,13 @@ Name: shorewall Version: %{major_ver} -Release: 2%{?dist} +Release: 1%{?dist} Summary: An iptables front end for firewall configuration Group: Applications/System License: GPLv2+ URL: http://www.shorewall.net/ -%global _baseurl http://www.shorewall.net/pub/shorewall/4.2/shorewall-%{version} +%global _baseurl http://www.shorewall.net/pub/shorewall/4.2/shorewall-%{version}/ Source0: %{_baseurl}/%{name}-common-%{common_ver}.tar.bz2 Source1: %{_baseurl}/%{name}-perl-%{perl_ver}.tar.bz2 Source2: %{_baseurl}/%{name}-shell-%{shell_ver}.tar.bz2 @@ -34,7 +34,6 @@ BuildArch: noarch Requires: shorewall-common = %{common_ver}-%{release} Requires: shorewall-perl = %{perl_ver}-%{release} -Requires: shorewall-shell = %{shell_ver}-%{release} %description The Shoreline Firewall, more commonly known as "Shorewall", is a @@ -148,6 +147,9 @@ sed -i -e 's|prog="shorewall"|prog="shor # scripts. This silences some rpmlint errors. find . -name "lib.*" -exec sed -i -e '/\#\!\/bin\/sh/d' {} \; +# Make the perl compiler the default +sed -i -e 's|SHOREWALL_COMPILER=|SHOREWALL_COMPILER=perl|' shorewall-common-%{common_ver}/shorewall.conf + %build %install @@ -405,7 +407,15 @@ fi %attr(0755,root,root) %{_datadir}/shorewall6-lite/wait4ifup %changelog -* Wed May 20 2009 Jonathan G. Underwood - 4.2.9-2 +* Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1 +- Update to version 4.2.10 +- Update shorewall-perl to 4.2.10.3 + +* Thu Jun 12 2009 Jonathan G. Underwood - 4.2.9-3 +- Change init files to start as number 28 (previously 25) to ensure starting + after NetworkManager (BZ 505444) + +* Wed May 27 2009 Jonathan G. Underwood - 4.2.9-2 - Fix up /var/lib directories (BZ 502929) * Wed May 20 2009 Jonathan G. Underwood - 4.2.9-1 @@ -416,11 +426,18 @@ fi - Update shorewall-perl to 4.2.8.2 - Use global instead of define in macros to comply with packaging guidelines -* Mon Apr 13 2009 Jonathan G. Underwood - 4.2.7-3 +* Mon Apr 13 2009 Jonathan G. Underwood - 4.2.7-5 - Update shorewall-perl to version 4.2.7.3 -* Fri Apr 6 2009 Jonathan G. Underwood - 4.2.7-2 -- Update shorewall-perl to 4.2.7.1 (BZ 493984) +* Fri Apr 3 2009 Jonathan G. Underwood - 4.2.7-4 +- Update shorewall-perl to version 4.2.7.1 (BZ 493984) + +* Thu Mar 26 2009 Jonathan G. Underwood - 4.2.7-3 +- Really make the perl compiler default + +* Tue Mar 24 2009 Jonathan G. Underwood - 4.2.7-2 +- Make the perl compiler the default. Drop shorewall-shell requirement from + shorewall package * Tue Mar 24 2009 Jonathan G. Underwood - 4.2.7-1 - Update to version 4.2.7 Index: sources =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-10/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 20 May 2009 22:11:17 -0000 1.55 +++ sources 7 Jul 2009 23:12:43 -0000 1.56 @@ -1,6 +1,6 @@ -b2563b635d15824303449d8c30adf381 shorewall6-4.2.9.tar.bz2 -50efc79d52e7ef2e93fcbe1303c2af56 shorewall6-lite-4.2.9.tar.bz2 -6cdb50e7d3caadfc1046acb050ae1deb shorewall-common-4.2.9.tar.bz2 -59ca1b403a8752bcaae5d245ae35210c shorewall-lite-4.2.9.tar.bz2 -d2df02807b023526f58cb41ece36f610 shorewall-perl-4.2.9.tar.bz2 -caa96cf4c257a7156f1621a1ac41d69c shorewall-shell-4.2.9.tar.bz2 +9451ee3fffece868cba041e7c74fc8ef shorewall6-4.2.10.tar.bz2 +059b349fb46145c6eba6f3c3ecf1ae52 shorewall6-lite-4.2.10.tar.bz2 +49bdbbae8dec65154c4e5538ed3c9865 shorewall-common-4.2.10.tar.bz2 +ef5958819ba18801bacfe20e67184f2a shorewall-lite-4.2.10.tar.bz2 +f19bed40fe28a905fd08482b9dc5f7ce shorewall-perl-4.2.10.3.tar.bz2 +d6f7cbc3c502c09921ede920547d5017 shorewall-shell-4.2.10.tar.bz2 From sheltren at fedoraproject.org Tue Jul 7 23:44:41 2009 From: sheltren at fedoraproject.org (Jeff Sheltren) Date: Tue, 7 Jul 2009 23:44:41 +0000 (UTC) Subject: rpms/libextractor/EL-4 libextractor.spec,1.12,1.13 Message-ID: <20090707234441.7EA3C11C0048@cvs1.fedora.phx.redhat.com> Author: sheltren Update of /cvs/extras/rpms/libextractor/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23433 Modified Files: libextractor.spec Log Message: update spec to build under el4 Index: libextractor.spec =================================================================== RCS file: /cvs/extras/rpms/libextractor/EL-4/libextractor.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libextractor.spec 7 Mar 2009 12:02:38 -0000 1.12 +++ libextractor.spec 7 Jul 2009 23:44:11 -0000 1.13 @@ -1,4 +1,7 @@ -%bcond_with mpeg +%define _with_mpeg 0 +%define _with_flac 0 +%define _with_qt 0 +%define _with_gtk 0 %global plugindir %_libdir/%name @@ -6,7 +9,7 @@ Name: libextractor Version: 0.5.22 -Release: %release_func 1 +Release: %release_func 2 Summary: Simple library for keyword extraction Group: System Environment/Libraries @@ -18,9 +21,9 @@ Source10: README.fedora BuildRoot: %_tmppath/%name-%version-%release-root BuildRequires: gettext -BuildRequires: libtool-ltdl-devel libvorbis-devel +BuildRequires: libtool libvorbis-devel BuildRequires: bzip2-devel zlib-devel -BuildRequires: gtk2-devel libgsf-devel qt4-devel +BuildRequires: libgsf-devel Requires(post): /sbin/install-info Requires(preun): /sbin/install-info @@ -34,60 +37,197 @@ Requires: %_libdir/pkgconfig %package plugins Summary: Plugins for libextractor Group: System Environment/Libraries -BuildArch: noarch Requires: %name = %version-%release Requires: %name-plugins-base Requires: %name-plugins-exiv2 Requires: %name-plugins-ogg Requires: %name-plugins-ole2 Requires: %name-plugins-pdf +%if %{_with_flac} Requires: %name-plugins-flac +%endif +%if %{_with_gtk} Requires: %name-plugins-thumbnailgtk -Requires: %name-plugins-thumbnailqt +%endif +%if %{_with_qt} +Requires: %name-plugins-thumbnailqt +%endif #Requires: %name-plugins-rpm -%global pluginpkg(B:R:P:u) \ -%package plugins-%1 \ -Summary: The '%1' libextractor plugin\ -Group: System Environment/Libraries \ -Provides: plugin(%name) = %1 %%{-P*} \ -%%{-u:Requires(post): /usr/sbin/update-alternatives} \ -%%{-u:Requires(preun): /usr/sbin/update-alternatives} \ -%%{-B:BuildRequires: %%{-B*}} \ -Requires: %name = %version-%release %%{-R*} \ - \ -%description plugins-%1 \ -libextractor is a simple library for keyword extraction. libextractor\ -does not support all formats but supports a simple plugging mechanism\ -such that you can quickly add extractors for additional formats, even\ -without recompiling libextractor.\ -\ -This package ships the '%1' plugin.\ -\ -%files plugins-%1 \ -%defattr(-,root,root,-) \ -%plugindir/libextractor_%1.so* \ -%nil - %package plugins-base Summary: Base plugins for libextractor Group: System Environment/Libraries Requires: %name = %version-%release -%{?with_mpeg:%pluginpkg mpeg -B mpeg2dec-devel} -%pluginpkg flac -B flac-devel -%pluginpkg exiv2 -%pluginpkg ogg -%pluginpkg ole2 -%pluginpkg pdf -#pluginpkg rpm -B rpm-devel +%if %{_with_mpeg} +%package plugins-mpeg +Summary: The 'mpeg' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = mpeg +BuildRequires: mpeg2dec-devel +Requires: %name = %version-%release + +%description plugins-mpeg +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'mpeg' plugin. + +%files plugins-mpeg +%defattr(-,root,root,-) +%plugindir/libextractor_mpeg.so* +%nil +%endif + +%if %{_with_flac} +%package plugins-flac +Summary: The 'flac' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = flac +BuildRequires: flac-devel +Requires: %name = %version-%release + +%description plugins-flac +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'flac' plugin. + +%files plugins-flac +%defattr(-,root,root,-) +%plugindir/libextractor_flac.so* +%nil +%endif + +%package plugins-exiv2 +Summary: The 'exiv2' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = exiv2 +Requires: %name = %version-%release + +%description plugins-exiv2 +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'exiv2' plugin. + +%files plugins-exiv2 +%defattr(-,root,root,-) +%plugindir/libextractor_exiv2.so* +%nil + +%package plugins-ogg +Summary: The 'ogg' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = ogg +Requires: %name = %version-%release + +%description plugins-ogg +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'ogg' plugin. + +%files plugins-ogg +%defattr(-,root,root,-) +%plugindir/libextractor_ogg.so* +%nil + +%package plugins-ole2 +Summary: The 'ole2' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = ole2 +Requires: %name = %version-%release + +%description plugins-ole2 +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'ole2' plugin. + +%files plugins-ole2 +%defattr(-,root,root,-) +%plugindir/libextractor_ole2.so* +%nil + +%package plugins-pdf +Summary: The 'pdf' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = pdf +Requires: %name = %version-%release + +%description plugins-pdf +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'pdf' plugin. + +%files plugins-pdf +%defattr(-,root,root,-) +%plugindir/libextractor_pdf.so* +%nil + +%if %{_with_gtk} +%package plugins-thumbnailgtk +Summary: The 'thumbnailgtk' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = thumbnailgtk plugin(%name)=thumbnail +Requires: %name = %version-%release +Requires(post): /usr/sbin/update-alternatives +Requires(preun): /usr/sbin/update-alternatives + +%description plugins-thumbnailgtk +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'thumbnailgtk' plugin. -%pluginpkg thumbnailgtk -u -P plugin(%name)=thumbnail +%files plugins-thumbnailgtk +%defattr(-,root,root,-) +%plugindir/libextractor_thumbnailgtk.so* +%nil %ghost %plugindir/libextractor-thumbnail.so +%endif -%pluginpkg thumbnailqt -u -P plugin(%name)=thumbnail +%if %{_with_qt} +%package plugins-qt +Summary: The 'qt' libextractor plugin +Group: System Environment/Libraries +Provides: plugin(%name) = qt plugin(%name)=thumbnail +Requires: %name = %version-%release +Requires(post): /usr/sbin/update-alternatives +Requires(preun): /usr/sbin/update-alternatives +BuildRequires: qt4-devel + +%description plugins-qt +libextractor is a simple library for keyword extraction. libextractor +does not support all formats but supports a simple plugging mechanism +such that you can quickly add extractors for additional formats, even +without recompiling libextractor. + +This package ships the 'qt' plugin. + +%files plugins-qt +%defattr(-,root,root,-) +%plugindir/libextractor_qt.so* +%nil %ghost %plugindir/libextractor-thumbnail.so +%endif %description @@ -134,7 +274,9 @@ rm -f README.debian sed -i 's!\(-L\(/usr\|\$with_qt\)/lib\|-I/usr/include\) !!g' configure %build -%{!?with_mpeg:export ac_cv_lib_mpeg2_mpeg2_init=no} +%if !%{_with_mpeg} +export ac_cv_lib_mpeg2_mpeg2_init=no +%endif export ac_cv_lib_rpm_rpmReadPackageFile=no %configure --disable-static \ @@ -209,6 +351,7 @@ test $1 != 0 || /sbin/install-info --inf %postun -p /sbin/ldconfig +%if %{_with_gtk} %post plugins-thumbnailgtk /usr/sbin/update-alternatives --install \ %plugindir/libextractor_thumbnail.so libextractor_thumbnail %plugindir/libextractor_thumbnailgtk.so 10 @@ -216,7 +359,9 @@ test $1 != 0 || /sbin/install-info --inf %preun plugins-thumbnailgtk test "$1" != 0 || \ /usr/sbin/update-alternatives --remove libextractor_thumbnail %plugindir/libextractor_thumbnailgtk.so +%endif +%if %{?_with_qt} %post plugins-thumbnailqt /usr/sbin/update-alternatives --install \ %plugindir/libextractor_thumbnail.so libextractor_thumbnail %plugindir/libextractor_thumbnailqt.so 20 @@ -224,6 +369,7 @@ test "$1" != 0 || \ %preun plugins-thumbnailqt test "$1" != 0 || \ /usr/sbin/update-alternatives --remove libextractor_thumbnail %plugindir/libextractor_thumbnailqt.so +%endif %files -f libextractor.lang @@ -248,6 +394,11 @@ test "$1" != 0 || \ %changelog +* Thu May 28 2009 Jeff Sheltren - 0.5.22-2 +- Rebuild for EL5 +- disable flac and qt packages by default +- el4 package disables gtk and re-write some of the conditional statements + * Sat Mar 7 2009 Enrico Scholz - 0.5.22-1 - updated to 0.5.22 - disabled rpm plugin for now as it does not build with rpm-4.6 From xavierb at fedoraproject.org Wed Jul 8 00:15:25 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Wed, 8 Jul 2009 00:15:25 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/devel import.log, NONE, 1.1 perl-Test-Unit-Runner-Xml.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708001525.7591F11C0048@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30105/devel Modified Files: .cvsignore sources Added Files: import.log perl-Test-Unit-Runner-Xml.spec Log Message: Initial import. --- NEW FILE import.log --- perl-Test-Unit-Runner-Xml-0_1-2_fc10:HEAD:perl-Test-Unit-Runner-Xml-0.1-2.fc10.src.rpm:1247011982 --- NEW FILE perl-Test-Unit-Runner-Xml.spec --- Name: perl-Test-Unit-Runner-Xml Version: 0.1 Release: 2%{?dist} Summary: Generate XML reports from unit test results License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-Unit-Runner-Xml/ Source0: http://www.cpan.org/modules/by-module/Test/Test-Unit-Runner-Xml-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Unit) >= 0.24 BuildRequires: perl(XML::Generator) BuildRequires: perl(XML::XPath) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Test::Unit::Runner::XML generates XML reports from unit test results. The reports are in the same format as those produced by Ant's JUnit task, allowing them to be used with Java continuous integration and reporting tools. %prep %setup -q -n Test-Unit-Runner-Xml-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 03 2009 Xavier Bachelot 0.1-2 - Fix Summary: and Description:. * Thu Jul 02 2009 Xavier Bachelot 0.1-1 - Specfile autogenerated by cpanspec 1.77. - Fix License:. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 6 Jul 2009 04:11:03 -0000 1.1 +++ .cvsignore 8 Jul 2009 00:14:55 -0000 1.2 @@ -0,0 +1 @@ +Test-Unit-Runner-Xml-0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:11:03 -0000 1.1 +++ sources 8 Jul 2009 00:14:55 -0000 1.2 @@ -0,0 +1 @@ +bbb68b0af44c60f3001b7c202dc7902f Test-Unit-Runner-Xml-0.1.tar.gz From tuxbrewr at fedoraproject.org Wed Jul 8 00:19:49 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Wed, 8 Jul 2009 00:19:49 +0000 (UTC) Subject: rpms/kpackagekit/devel kpackagekit.spec,1.36,1.37 Message-ID: <20090708001949.6546E11C0048@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kpackagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31244 Modified Files: kpackagekit.spec Log Message: rebuild against new PackageKit Index: kpackagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/devel/kpackagekit.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- kpackagekit.spec 11 Jun 2009 12:17:02 -0000 1.36 +++ kpackagekit.spec 8 Jul 2009 00:19:48 -0000 1.37 @@ -1,9 +1,9 @@ -%define pk_version 0.4.7 +%define pk_version 0.5.0 Name: kpackagekit Version: 0.4.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE interface for PackageKit License: GPLv2+ @@ -14,7 +14,7 @@ URL: http://www.kde-apps.org/content/sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # upstream me, says the patch -Patch100: kpackagekit-InitialPreference.patch +#Patch100: kpackagekit-InitialPreference.patch Patch102: kpackagekit-0.4.1-i18n.patch BuildRequires: cmake @@ -34,7 +34,7 @@ KDE interface for PackageKit. %prep %setup -q -n %{name}-%{version} -%patch100 -p0 -b .InitialPreference +#%patch100 -p0 -b .InitialPreference %patch102 -p1 -b .i18n @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 7 2009 Steven M. Parrish 0.4.1.1-2 +- rebuild for new packagekit + * Thu Jun 11 2009 Steven M. Parrish 0.4.1.1-1 - Fixed all krazy issues (2 or 3 not much important changed in backend details) - With KDE >= 4.2.3 persistent notifications are working again so the code to use it was commented out From xavierb at fedoraproject.org Wed Jul 8 00:26:22 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Wed, 8 Jul 2009 00:26:22 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/EL-5 perl-Test-Unit-Runner-Xml.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090708002622.6190811C0048@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv932/EL-5 Modified Files: sources Added Files: perl-Test-Unit-Runner-Xml.spec Log Message: import into F-10,F11 and EL-5 --- NEW FILE perl-Test-Unit-Runner-Xml.spec --- Name: perl-Test-Unit-Runner-Xml Version: 0.1 Release: 2%{?dist} Summary: Generate XML reports from unit test results License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-Unit-Runner-Xml/ Source0: http://www.cpan.org/modules/by-module/Test/Test-Unit-Runner-Xml-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Unit) >= 0.24 BuildRequires: perl(XML::Generator) BuildRequires: perl(XML::XPath) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Test::Unit::Runner::XML generates XML reports from unit test results. The reports are in the same format as those produced by Ant's JUnit task, allowing them to be used with Java continuous integration and reporting tools. %prep %setup -q -n Test-Unit-Runner-Xml-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 03 2009 Xavier Bachelot 0.1-2 - Fix Summary: and Description:. * Thu Jul 02 2009 Xavier Bachelot 0.1-1 - Specfile autogenerated by cpanspec 1.77. - Fix License:. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:11:03 -0000 1.1 +++ sources 8 Jul 2009 00:25:52 -0000 1.2 @@ -0,0 +1 @@ +bbb68b0af44c60f3001b7c202dc7902f Test-Unit-Runner-Xml-0.1.tar.gz From xavierb at fedoraproject.org Wed Jul 8 00:26:22 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Wed, 8 Jul 2009 00:26:22 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/F-10 perl-Test-Unit-Runner-Xml.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090708002622.A219211C0048@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv932/F-10 Modified Files: sources Added Files: perl-Test-Unit-Runner-Xml.spec Log Message: import into F-10,F11 and EL-5 --- NEW FILE perl-Test-Unit-Runner-Xml.spec --- Name: perl-Test-Unit-Runner-Xml Version: 0.1 Release: 2%{?dist} Summary: Generate XML reports from unit test results License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-Unit-Runner-Xml/ Source0: http://www.cpan.org/modules/by-module/Test/Test-Unit-Runner-Xml-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Unit) >= 0.24 BuildRequires: perl(XML::Generator) BuildRequires: perl(XML::XPath) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Test::Unit::Runner::XML generates XML reports from unit test results. The reports are in the same format as those produced by Ant's JUnit task, allowing them to be used with Java continuous integration and reporting tools. %prep %setup -q -n Test-Unit-Runner-Xml-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 03 2009 Xavier Bachelot 0.1-2 - Fix Summary: and Description:. * Thu Jul 02 2009 Xavier Bachelot 0.1-1 - Specfile autogenerated by cpanspec 1.77. - Fix License:. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:11:03 -0000 1.1 +++ sources 8 Jul 2009 00:25:52 -0000 1.2 @@ -0,0 +1 @@ +bbb68b0af44c60f3001b7c202dc7902f Test-Unit-Runner-Xml-0.1.tar.gz From xavierb at fedoraproject.org Wed Jul 8 00:26:22 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Wed, 8 Jul 2009 00:26:22 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/F-11 perl-Test-Unit-Runner-Xml.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090708002622.D03FC11C0048@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv932/F-11 Modified Files: sources Added Files: perl-Test-Unit-Runner-Xml.spec Log Message: import into F-10,F11 and EL-5 --- NEW FILE perl-Test-Unit-Runner-Xml.spec --- Name: perl-Test-Unit-Runner-Xml Version: 0.1 Release: 2%{?dist} Summary: Generate XML reports from unit test results License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-Unit-Runner-Xml/ Source0: http://www.cpan.org/modules/by-module/Test/Test-Unit-Runner-Xml-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Unit) >= 0.24 BuildRequires: perl(XML::Generator) BuildRequires: perl(XML::XPath) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Test::Unit::Runner::XML generates XML reports from unit test results. The reports are in the same format as those produced by Ant's JUnit task, allowing them to be used with Java continuous integration and reporting tools. %prep %setup -q -n Test-Unit-Runner-Xml-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 03 2009 Xavier Bachelot 0.1-2 - Fix Summary: and Description:. * Thu Jul 02 2009 Xavier Bachelot 0.1-1 - Specfile autogenerated by cpanspec 1.77. - Fix License:. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 6 Jul 2009 04:11:03 -0000 1.1 +++ sources 8 Jul 2009 00:25:52 -0000 1.2 @@ -0,0 +1 @@ +bbb68b0af44c60f3001b7c202dc7902f Test-Unit-Runner-Xml-0.1.tar.gz From cebbert at fedoraproject.org Wed Jul 8 00:28:48 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 8 Jul 2009 00:28:48 +0000 (UTC) Subject: rpms/kernel/F-11 alsa-pcm-safer-boundary-checks.patch, 1.2, 1.3 kernel.spec, 1.1674, 1.1675 alsa-pcm-midlevel-add-more-strict-buffer-position.patch, 1.1, NONE Message-ID: <20090708002848.4C14B11C0048@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1520 Modified Files: kernel.spec Added Files: alsa-pcm-safer-boundary-checks.patch Removed Files: alsa-pcm-midlevel-add-more-strict-buffer-position.patch Log Message: Drop the correct patch to fix bug #498858 alsa-pcm-safer-boundary-checks.patch: Index: alsa-pcm-safer-boundary-checks.patch =================================================================== RCS file: alsa-pcm-safer-boundary-checks.patch diff -N alsa-pcm-safer-boundary-checks.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ alsa-pcm-safer-boundary-checks.patch 8 Jul 2009 00:28:17 -0000 1.3 @@ -0,0 +1,49 @@ +From: Takashi Iwai +Date: Fri, 20 Mar 2009 15:26:15 +0000 (+0100) +Subject: ALSA: pcm - Safer boundary checks +X-Git-Url: http://git.alsa-project.org/?p=alsa-kernel.git;a=commitdiff_plain;h=d9b59892fb7108f6ee33a4fcdc257587b68f2ed6 + +ALSA: pcm - Safer boundary checks + +Make the boundary checks a bit safer. +These caese are rare or theoretically won't happen, but nothing +bad to keep the checks safer... + +Signed-off-by: Takashi Iwai +Signed-off-by: Jaroslav Kysela +--- + +diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c +index 063c675..fbb2e39 100644 +--- a/sound/core/pcm_lib.c ++++ b/sound/core/pcm_lib.c +@@ -222,8 +222,9 @@ static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream) + hw_ptr_interrupt = runtime->hw_ptr_interrupt + runtime->period_size; + delta = new_hw_ptr - hw_ptr_interrupt; + if (hw_ptr_interrupt >= runtime->boundary) { +- hw_ptr_interrupt %= runtime->boundary; +- if (!hw_base) /* hw_base was already lapped; recalc delta */ ++ hw_ptr_interrupt -= runtime->boundary; ++ if (hw_base < runtime->boundary / 2) ++ /* hw_base was already lapped; recalc delta */ + delta = new_hw_ptr - hw_ptr_interrupt; + } + if (delta < 0) { +@@ -241,7 +242,7 @@ static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream) + delta = 0; + } else { + hw_base += runtime->buffer_size; +- if (hw_base == runtime->boundary) ++ if (hw_base >= runtime->boundary) + hw_base = 0; + new_hw_ptr = hw_base + pos; + } +@@ -296,7 +297,7 @@ int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream) + return 0; + } + hw_base += runtime->buffer_size; +- if (hw_base == runtime->boundary) ++ if (hw_base >= runtime->boundary) + hw_base = 0; + new_hw_ptr = hw_base + pos; + } Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1674 retrieving revision 1.1675 diff -u -p -r1.1674 -r1.1675 --- kernel.spec 6 Jul 2009 17:46:56 -0000 1.1674 +++ kernel.spec 8 Jul 2009 00:28:17 -0000 1.1675 @@ -663,7 +663,7 @@ Patch603: alsa-pcm-fix-delta-calc-at-ove Patch605: alsa-hda-dont-reset-BDL-unnecessarily.patch Patch606: alsa-dont-reset-stream-at-each-prepare-callb.patch Patch607: alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch -Patch608: alsa-pcm-midlevel-add-more-strict-buffer-position.patch +Patch608: alsa-pcm-safer-boundary-checks.patch Patch610: hda_intel-prealloc-4mb-dmabuffer.patch Patch611: linux-2.6.29-alsa-update-quirks.patch Patch612: alsa-hda-add-debugging.patch @@ -1310,7 +1310,7 @@ ApplyPatch alsa-pcm-fix-delta-calc-at-ov ApplyPatch alsa-hda-dont-reset-BDL-unnecessarily.patch ApplyPatch alsa-dont-reset-stream-at-each-prepare-callb.patch ApplyPatch alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch -ApplyPatch alsa-pcm-midlevel-add-more-strict-buffer-position.patch +ApplyPatch alsa-pcm-safer-boundary-checks.patch ApplyPatch hda_intel-prealloc-4mb-dmabuffer.patch ApplyPatch alsa-hda-add-debugging.patch @@ -2096,6 +2096,9 @@ fi # and build. %changelog +* Tue Jul 07 2009 Chuck Ebbert 2.6.29.6-213 +- Drop the correct patch to fix bug #498858 + * Mon Jul 06 2009 Chuck Ebbert 2.6.29.6-212 - Additional fixes for bug #498854 --- alsa-pcm-midlevel-add-more-strict-buffer-position.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 8 00:31:52 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 8 Jul 2009 00:31:52 +0000 (UTC) Subject: rpms/uw-imap/devel imap-2007e-authmd5.patch, NONE, 1.1 imap-2007e-overflow.patch, NONE, 1.1 imap-2007e-shared.patch, NONE, 1.1 uw-imap.spec, 1.59, 1.60 imap-2002e-authmd5.patch, 1.1, NONE imap-2002e-shared.patch, 1.1, NONE Message-ID: <20090708003152.3A33011C0048@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/uw-imap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2551 Modified Files: uw-imap.spec Added Files: imap-2007e-authmd5.patch imap-2007e-overflow.patch imap-2007e-shared.patch Removed Files: imap-2002e-authmd5.patch imap-2002e-shared.patch Log Message: * Tue Jul 07 2009 Rex Dieter - 2007e-6 - update shared.patch to build with -fPIC - rebase patches (patch fuzz=0) imap-2007e-authmd5.patch: --- NEW FILE imap-2007e-authmd5.patch --- diff -up imap-2007e/src/c-client/auth_md5.c.authmd5 imap-2007e/src/c-client/auth_md5.c --- imap-2007e/src/c-client/auth_md5.c.authmd5 2008-06-04 13:18:34.000000000 -0500 +++ imap-2007e/src/c-client/auth_md5.c 2009-07-07 19:24:12.348005485 -0500 @@ -42,17 +42,17 @@ typedef struct { /* Prototypes */ -long auth_md5_valid (void); -long auth_md5_client (authchallenge_t challenger,authrespond_t responder, +static long auth_md5_valid (void); +static long auth_md5_client (authchallenge_t challenger,authrespond_t responder, char *service,NETMBX *mb,void *stream, unsigned long *trial,char *user); -char *auth_md5_server (authresponse_t responder,int argc,char *argv[]); -char *auth_md5_pwd (char *user); +static char *auth_md5_server (authresponse_t responder,int argc,char *argv[]); +static char *auth_md5_pwd (char *user); char *apop_login (char *chal,char *user,char *md5,int argc,char *argv[]); -char *hmac_md5 (char *text,unsigned long tl,char *key,unsigned long kl); -void md5_init (MD5CONTEXT *ctx); -void md5_update (MD5CONTEXT *ctx,unsigned char *data,unsigned long len); -void md5_final (unsigned char *digest,MD5CONTEXT *ctx); +static char *hmac_md5 (char *text,unsigned long tl,char *key,unsigned long kl); +static void md5_init (MD5CONTEXT *ctx); +static void md5_update (MD5CONTEXT *ctx,unsigned char *data,unsigned long len); +static void md5_final (unsigned char *digest,MD5CONTEXT *ctx); static void md5_transform (unsigned long *state,unsigned char *block); static void md5_encode (unsigned char *dst,unsigned long *src,int len); static void md5_decode (unsigned long *dst,unsigned char *src,int len); imap-2007e-overflow.patch: --- NEW FILE imap-2007e-overflow.patch --- diff -up imap-2007e/src/c-client/rfc822.c.overflow imap-2007e/src/c-client/rfc822.c --- imap-2007e/src/c-client/rfc822.c.overflow 2008-12-12 11:08:26.000000000 -0600 +++ imap-2007e/src/c-client/rfc822.c 2009-07-07 19:27:20.057772757 -0500 @@ -384,6 +384,9 @@ void rfc822_parse_content (BODY *body,ST if (CHR (bs) == '\012'){/* following LF? */ c = SNX (bs); i--; /* yes, slurp it */ } + if (!i) /* Make sure we don't get an overflow for */ + break; /* messages ending on \015 (or the following */ + /* i-- will cause i to be MAXINT. Not good.) */ case '\012': /* at start of a line, start with -- ? */ if (!(i && i-- && ((c = SNX (bs)) == '-') && i-- && ((c = SNX (bs)) == '-'))) break; imap-2007e-shared.patch: --- NEW FILE imap-2007e-shared.patch --- diff -up imap-2007e/src/osdep/unix/Makefile.shared imap-2007e/src/osdep/unix/Makefile --- imap-2007e/src/osdep/unix/Makefile.shared 2009-07-07 19:28:02.909755512 -0500 +++ imap-2007e/src/osdep/unix/Makefile 2009-07-07 19:29:35.870006799 -0500 @@ -170,6 +170,10 @@ BUILD=$(MAKE) build EXTRACFLAGS='$(EXTRA EXTRADRIVERS='$(EXTRADRIVERS)' EXTRAAUTHENTICATORS='$(EXTRAAUTHENTICATORS)'\ PASSWDTYPE=$(PASSWDTYPE) SSLTYPE=$(SSLTYPE) IP=$(IP) +# Need this for the shared library rule to work correctly +.SUFFIXES: .o .so +SOFILES=${BINARIES:.o=.so} + # Here if no make argument established @@ -845,18 +849,24 @@ vu2: # VAX Ultrix 2.3, etc. # Build it! -build: clean once $(ARCHIVE) +build: clean once $(ARCHIVE) $(SHLIBNAME) -all: $(ARCHIVE) +all: $(ARCHIVE) $(SHLIBNAME) $(ARCHIVE): $(BINARIES) sh -c '$(RM) $(ARCHIVE) || true' @$(CAT) ARCHIVE @$(SH) ARCHIVE -.c.o: - `$(CAT) CCTYPE` -c `$(CAT) CFLAGS` $*.c +$(SHLIBNAME): $(SOFILES) + gcc -shared -Wl,-soname,$(SHLIBNAME) -o $(SHLIBNAME) $(SOFILES) `cat LDFLAGS` + ln -s $(SHLIBNAME) lib$(SHLIBBASE).so +.c.so: osdep.h + $(CC) -fPIC -DPIC -D_REENTRANT -c `$(CAT) CFLAGS` ${@:.so=.c} -o $@ + +.c.o: + $(CC) -fPIC -DPIC -D_REENTRANT -c `$(CAT) CFLAGS` $*.c # Cleanup @@ -895,8 +905,7 @@ utf8aux.o: mail.h misc.h osdep.h utf8.h # OS-dependent - -osdep.o:mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \ +OSDEPS= mail.h misc.h env.h fs.h ftl.h nl.h tcp.h \ osdep.h env_unix.h tcp_unix.h \ osdep.c env_unix.c fs_unix.c ftl_unix.c nl_unix.c tcp_unix.c ip_unix.c\ auths.c crexcl.c flockcyg.c flocklnx.c flocksim.c fsync.c \ @@ -910,12 +919,19 @@ osdep.o:mail.h misc.h env.h fs.h ftl.h n write.c sslstdio.c \ strerror.c strpbrk.c strstr.c strtok.c strtoul.c \ OSCFLAGS + +osdep.o: $(OSDEPS) + $(CC) $(CFLAGS) `$(CAT) OSCFLAGS` -c osdep.c + @echo ======================================================================== @echo Building OS-dependent module @echo If you get No such file error messages for files x509.h, ssl.h, @echo pem.h, buffer.h, bio.h, and crypto.h, that means that OpenSSL @echo is not installed on your system. Either install OpenSSL first @echo or build with command: make `$(CAT) OSTYPE` SSLTYPE=none - `$(CAT) CCTYPE` -c `$(CAT) CFLAGS` `$(CAT) OSCFLAGS` -c osdep.c + @echo ======================================================================== + +osdep.so: $(OSDEPS) + $(CC) -fPIC -DPIC -D_REENTRANT -c $(CFLAGS) `cat OSCFLAGS` osdep.c -o $@ osdep.c: osdepbas.c osdepckp.c osdeplog.c osdepssl.c $(CAT) osdepbas.c osdepckp.c osdeplog.c osdepssl.c > osdep.c Index: uw-imap.spec =================================================================== RCS file: /cvs/pkgs/rpms/uw-imap/devel/uw-imap.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- uw-imap.spec 25 Feb 2009 23:41:48 -0000 1.59 +++ uw-imap.spec 8 Jul 2009 00:31:51 -0000 1.60 @@ -1,11 +1,6 @@ -%define _default_patch_fuzz 2 # Fedora review: http://bugzilla.redhat.com/166008 -#define beta 1 -#define dev .DEV.SNAP- -#define snap 0709171900 - # ship static lib, matches default upstream config # as convenience to users, since our hacked shlib can potentially break # abi semi-often @@ -14,7 +9,7 @@ Summary: UW Server daemons for IMAP and POP network mail protocols Name: uw-imap Version: 2007e -Release: 5%{?dist} +Release: 6%{?dist} # See LICENSE.txt, http://www.apache.org/licenses/LICENSE-2.0 License: ASL 2.0 @@ -56,9 +51,9 @@ Source35: pop3s-xinetd Patch1: imap-2007-paths.patch # See http://bugzilla.redhat.com/229781 , http://bugzilla.redhat.com/127271 Patch2: imap-2004a-doc.patch -Patch5: imap-2001a-overflow.patch -Patch9: imap-2002e-shared.patch -Patch10: imap-2002e-authmd5.patch +Patch5: imap-2007e-overflow.patch +Patch9: imap-2007e-shared.patch +Patch10: imap-2007e-authmd5.patch BuildRequires: krb5-devel BuildRequires: openssl-devel @@ -312,6 +307,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 07 2009 Rex Dieter - 2007e-6 +- update shared.patch to build with -fPIC +- rebase patches (patch fuzz=0) + * Wed Feb 25 2009 Fedora Release Engineering - 2007e-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- imap-2002e-authmd5.patch DELETED --- --- imap-2002e-shared.patch DELETED --- From rdieter at fedoraproject.org Wed Jul 8 00:38:11 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 8 Jul 2009 00:38:11 +0000 (UTC) Subject: rpms/uw-imap/devel uw-imap.spec,1.60,1.61 Message-ID: <20090708003811.B6F4111C0048@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/uw-imap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4054 Modified Files: uw-imap.spec Log Message: do -fPIC everywhere Index: uw-imap.spec =================================================================== RCS file: /cvs/pkgs/rpms/uw-imap/devel/uw-imap.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- uw-imap.spec 8 Jul 2009 00:31:51 -0000 1.60 +++ uw-imap.spec 8 Jul 2009 00:38:11 -0000 1.61 @@ -156,7 +156,7 @@ GSSDIR=$(krb5-config --prefix) # SSL setup, probably legacy-only, but shouldn't hurt -- Rex export EXTRACFLAGS="$EXTRACFLAGS $(pkg-config --cflags openssl 2>/dev/null)" # $RPM_OPT_FLAGS -export EXTRACFLAGS="$EXTRACFLAGS $RPM_OPT_FLAGS" +export EXTRACFLAGS="$EXTRACFLAGS -fPIC $RPM_OPT_FLAGS" # jorton added these, I'll assume he knows what he's doing. :) -- Rex export EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing" %if 0%{?fedora} > 4 || 0%{?rhel} > 4 @@ -308,7 +308,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jul 07 2009 Rex Dieter - 2007e-6 -- update shared.patch to build with -fPIC +- build with -fPIC - rebase patches (patch fuzz=0) * Wed Feb 25 2009 Fedora Release Engineering - 2007e-5 From whot at fedoraproject.org Wed Jul 8 01:38:36 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 8 Jul 2009 01:38:36 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/F-11 .cvsignore, 1.46, 1.47 sources, 1.45, 1.46 xorg-x11-proto-devel.spec, 1.90, 1.91 Message-ID: <20090708013836.C113011C0048@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19426 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Wed Jul 08 2009 Peter Hutterer 7.4-15 - dri2proto 2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/F-11/.cvsignore,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- .cvsignore 3 Mar 2009 03:59:31 -0000 1.46 +++ .cvsignore 8 Jul 2009 01:38:06 -0000 1.47 @@ -2,7 +2,6 @@ bigreqsproto-1.0.2.tar.bz2 compositeproto-0.4.tar.bz2 damageproto-1.1.0.tar.bz2 dmxproto-2.2.2.tar.bz2 -dri2proto-1.99.1.tar.bz2 evieext-1.0.2.tar.bz2 fixesproto-4.0.tar.bz2 fontsproto-2.0.2.tar.bz2 @@ -25,4 +24,4 @@ xineramaproto-1.1.2.tar.bz2 xproto-7.0.15.tar.bz2 xproxymanagementprotocol-1.0.2.tar.bz2 randrproto-1.2.99.3.tar.bz2 -dri2proto-1.99.3.tar.bz2 +dri2proto-2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/F-11/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 3 Mar 2009 03:59:31 -0000 1.45 +++ sources 8 Jul 2009 01:38:06 -0000 1.46 @@ -24,4 +24,4 @@ f00844a63d6e76b69eb0eb5e41eed843 xf86vi 1a2b31430d04340be2e49e8b6445e076 xproto-7.0.15.tar.bz2 d28007a50976204960fc1fc07b4ca093 xproxymanagementprotocol-1.0.2.tar.bz2 d4a7b90d826dfa1c39d41d323ce7366c randrproto-1.2.99.3.tar.bz2 -fffbbb3c26368ac63d408e81c51ec374 dri2proto-1.99.3.tar.bz2 +5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/F-11/xorg-x11-proto-devel.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- xorg-x11-proto-devel.spec 3 Mar 2009 03:59:31 -0000 1.90 +++ xorg-x11-proto-devel.spec 8 Jul 2009 01:38:06 -0000 1.91 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 14%{?dist} +Release: 15%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -18,7 +18,7 @@ Source0: http://www.x.org/pub/individua Source1: http://www.x.org/pub/individual/proto/compositeproto-0.4.tar.bz2 Source2: http://www.x.org/pub/individual/proto/damageproto-1.1.0.tar.bz2 Source3: http://www.x.org/pub/individual/proto/dmxproto-2.2.2.tar.bz2 -Source31: dri2proto-1.99.3.tar.bz2 +Source31: http://www.x.org/pub/individual/proto/dri2proto-2.1.tar.bz2 Source4: http://www.x.org/pub/individual/proto/evieext-1.0.2.tar.bz2 Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 @@ -259,6 +259,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 08 2009 Peter Hutterer 7.4-15 +- dri2proto 2.1 + * Tue Mar 03 2009 Peter Hutterer 7.4-14 - xproto 7.0.15 - Purge x11proto-7.0.14-XF86XK_Suspend.patch. From cebbert at fedoraproject.org Wed Jul 8 01:44:59 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Wed, 8 Jul 2009 01:44:59 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1609,1.1610 Message-ID: <20090708014459.4099411C0048@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20882 Modified Files: kernel.spec Log Message: add version Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1609 retrieving revision 1.1610 diff -u -p -r1.1609 -r1.1610 --- kernel.spec 7 Jul 2009 13:31:39 -0000 1.1609 +++ kernel.spec 8 Jul 2009 01:44:28 -0000 1.1610 @@ -1840,7 +1840,7 @@ fi # and build. %changelog -* Tue Jul 07 2009 Chuck Ebbert +* Tue Jul 07 2009 Chuck Ebbert 2.6.31-0.47.rc2.git2 - 2.6.31-rc2-git2 * Tue Jul 07 2009 Jarod Wilson From rdieter at fedoraproject.org Wed Jul 8 01:50:24 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Wed, 8 Jul 2009 01:50:24 +0000 (UTC) Subject: rpms/ktorrent/devel ktorrent.spec,1.99,1.100 Message-ID: <20090708015024.D2C9611C0048@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/ktorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22015 Modified Files: ktorrent.spec Log Message: * Tue Jul 07 2009 Rex Dieter - 3.2.2-3 - don't use internal flags (prefer those provided by kdebase-runtime-flags) Index: ktorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/ktorrent/devel/ktorrent.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- ktorrent.spec 3 Jun 2009 16:34:39 -0000 1.99 +++ ktorrent.spec 8 Jul 2009 01:49:54 -0000 1.100 @@ -3,7 +3,7 @@ Name: ktorrent Version: 3.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A BitTorrent program Group: Applications/Internet License: GPLv2+ @@ -50,7 +50,8 @@ The headers and libraries used for devel mkdir -p %{_target_platform} pushd %{_target_platform} %{cmake_kde4} \ - -DWITH_SYSTEM_GEOIP=1 \ + -DWITH_SYSTEM_GEOIP:BOOL=ON \ + -DWITH_BUILTIN_COUNTRY_FLAGS:BOOL=OFF \ .. popd @@ -127,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_appsdir}/cmake/modules/FindBTCore.cmake %changelog +* Tue Jul 07 2009 Rex Dieter - 3.2.2-3 +- don't use internal flags (prefer those provided by kdebase-runtime-flags) + * Wed Jun 03 2009 Roland Wolters - 3.2.2-2 - ktorrent-3.2.2 From hadess at fedoraproject.org Wed Jul 8 02:01:43 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 8 Jul 2009 02:01:43 +0000 (UTC) Subject: rpms/bluez/devel .cvsignore, 1.39, 1.40 bluez.spec, 1.79, 1.80 sources, 1.39, 1.40 Message-ID: <20090708020143.B740511C0048@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25075 Modified Files: .cvsignore bluez.spec sources Log Message: * Wed Jul 08 2009 Bastien Nocera 4.45-1 - Update to 4.45 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 7 Jul 2009 12:02:45 -0000 1.39 +++ .cvsignore 8 Jul 2009 02:01:43 -0000 1.40 @@ -1 +1 @@ -bluez-4.44.tar.gz +bluez-4.45.tar.gz Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- bluez.spec 7 Jul 2009 12:10:50 -0000 1.79 +++ bluez.spec 8 Jul 2009 02:01:43 -0000 1.80 @@ -1,6 +1,6 @@ Summary: Bluetooth utilities Name: bluez -Version: 4.44 +Version: 4.45 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -35,6 +35,7 @@ BuildRequires: gstreamer-plugins-base-de BuildRequires: libsndfile-devel # For cable pairing BuildRequires: libgudev-devel, libusb1-devel +BuildRequires: udev # For rebuild BuildRequires: libtool autoconf automake @@ -269,6 +270,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Wed Jul 08 2009 Bastien Nocera 4.45-1 +- Update to 4.45 + * Tue Jul 07 2009 Bastien Nocera 4.44-1 - Update to 4.44 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 7 Jul 2009 12:02:45 -0000 1.39 +++ sources 8 Jul 2009 02:01:43 -0000 1.40 @@ -1 +1 @@ -d5bb91dc31cf7db3e242f5ae6c1c4c33 bluez-4.44.tar.gz +fb1a02a8008326eabe383dc6fb01b05d bluez-4.45.tar.gz From jwilson at fedoraproject.org Wed Jul 8 02:13:19 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 8 Jul 2009 02:13:19 +0000 (UTC) Subject: rpms/kernel/devel lirc_streamzap-buffer-rework.patch, NONE, 1.1 kernel.spec, 1.1610, 1.1611 Message-ID: <20090708021319.C50F211C0048@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27516 Modified Files: kernel.spec Added Files: lirc_streamzap-buffer-rework.patch Log Message: * Tue Jul 07 2009 Jarod Wilson - See if we can't make lirc_streamzap behave better... (#508952) lirc_streamzap-buffer-rework.patch: --- NEW FILE lirc_streamzap-buffer-rework.patch --- Rework the lirc_streamzap buffers a bit, see if we can't get it behaving better when the receiver is pulled... (rhbz#508952) --- drivers/input/lirc/lirc_streamzap.c | 207 +++++++++++++++++++---------------- 1 files changed, 112 insertions(+), 95 deletions(-) diff --git a/drivers/input/lirc/lirc_streamzap.c b/drivers/input/lirc/lirc_streamzap.c index d1ce354..a5f3140 100644 --- a/drivers/input/lirc/lirc_streamzap.c +++ b/drivers/input/lirc/lirc_streamzap.c @@ -73,7 +73,7 @@ MODULE_DEVICE_TABLE(usb, streamzap_table); #define STREAMZAP_RESOLUTION 256 /* number of samples buffered */ -#define STREAMZAP_BUFFER_SIZE 128 +#define STREAMZAP_BUF_LEN 128 enum StreamzapDecoderState { PulseSpace, @@ -121,9 +121,8 @@ struct usb_streamzap { struct urb *urb_in; /* lirc */ - struct lirc_driver driver; - struct lirc_buffer delay_buf; - struct lirc_buffer lirc_buf; + struct lirc_driver *driver; + struct lirc_buffer *delay_buf; /* timer used to support delay buffering */ struct timer_list delay_timer; @@ -199,18 +198,18 @@ static void delay_timeout(unsigned long arg) spin_lock_irqsave(&sz->timer_lock, flags); - if (!lirc_buffer_empty(&sz->delay_buf) && - !lirc_buffer_full(&sz->lirc_buf)) { - lirc_buffer_read(&sz->delay_buf, (unsigned char *) &data); - lirc_buffer_write(&sz->lirc_buf, (unsigned char *) &data); + if (!lirc_buffer_empty(sz->delay_buf) && + !lirc_buffer_full(sz->driver->rbuf)) { + lirc_buffer_read(sz->delay_buf, (unsigned char *) &data); + lirc_buffer_write(sz->driver->rbuf, (unsigned char *) &data); } - if (!lirc_buffer_empty(&sz->delay_buf)) { - while (lirc_buffer_available(&sz->delay_buf) < - STREAMZAP_BUFFER_SIZE/2 && - !lirc_buffer_full(&sz->lirc_buf)) { - lirc_buffer_read(&sz->delay_buf, + if (!lirc_buffer_empty(sz->delay_buf)) { + while (lirc_buffer_available(sz->delay_buf) < + STREAMZAP_BUF_LEN / 2 && + !lirc_buffer_full(sz->driver->rbuf)) { + lirc_buffer_read(sz->delay_buf, (unsigned char *) &data); - lirc_buffer_write(&sz->lirc_buf, + lirc_buffer_write(sz->driver->rbuf, (unsigned char *) &data); } if (sz->timer_running) { @@ -221,8 +220,8 @@ static void delay_timeout(unsigned long arg) sz->timer_running = 0; } - if (!lirc_buffer_empty(&sz->lirc_buf)) - wake_up(&sz->lirc_buf.wait_poll); + if (!lirc_buffer_empty(sz->driver->rbuf)) + wake_up(&sz->driver->rbuf->wait_poll); spin_unlock_irqrestore(&sz->timer_lock, flags); } @@ -232,18 +231,18 @@ static void flush_delay_buffer(struct usb_streamzap *sz) int data; int empty = 1; - while (!lirc_buffer_empty(&sz->delay_buf)) { + while (!lirc_buffer_empty(sz->delay_buf)) { empty = 0; - lirc_buffer_read(&sz->delay_buf, (unsigned char *) &data); - if (!lirc_buffer_full(&sz->lirc_buf)) { - lirc_buffer_write(&sz->lirc_buf, + lirc_buffer_read(sz->delay_buf, (unsigned char *) &data); + if (!lirc_buffer_full(sz->driver->rbuf)) { + lirc_buffer_write(sz->driver->rbuf, (unsigned char *) &data); } else { - dprintk("buffer overflow", sz->driver.minor); + dprintk("buffer overflow", sz->driver->minor); } } if (!empty) - wake_up(&sz->lirc_buf.wait_poll); + wake_up(&sz->driver->rbuf->wait_poll); } static void push(struct usb_streamzap *sz, unsigned char *data) @@ -251,20 +250,20 @@ static void push(struct usb_streamzap *sz, unsigned char *data) unsigned long flags; spin_lock_irqsave(&sz->timer_lock, flags); - if (lirc_buffer_full(&sz->delay_buf)) { + if (lirc_buffer_full(sz->delay_buf)) { int read_data; - lirc_buffer_read(&sz->delay_buf, + lirc_buffer_read(sz->delay_buf, (unsigned char *) &read_data); - if (!lirc_buffer_full(&sz->lirc_buf)) { - lirc_buffer_write(&sz->lirc_buf, + if (!lirc_buffer_full(sz->driver->rbuf)) { + lirc_buffer_write(sz->driver->rbuf, (unsigned char *) &read_data); } else { - dprintk("buffer overflow", sz->driver.minor); + dprintk("buffer overflow", sz->driver->minor); } } - lirc_buffer_write(&sz->delay_buf, data); + lirc_buffer_write(sz->delay_buf, data); if (!sz->timer_running) { sz->delay_timer.expires = jiffies + HZ/10; @@ -296,7 +295,7 @@ static void push_full_pulse(struct usb_streamzap *sz, sz->signal_last.tv_usec); tmp -= sz->sum; } - dprintk("ls %u", sz->driver.minor, tmp); + dprintk("ls %u", sz->driver->minor, tmp); push(sz, (char *)&tmp); sz->idle = 0; @@ -308,7 +307,7 @@ static void push_full_pulse(struct usb_streamzap *sz, sz->sum += pulse; pulse |= PULSE_BIT; - dprintk("p %u", sz->driver.minor, pulse & PULSE_MASK); + dprintk("p %u", sz->driver->minor, pulse & PULSE_MASK); push(sz, (char *)&pulse); } @@ -326,7 +325,7 @@ static void push_full_space(struct usb_streamzap *sz, space = ((int) value)*STREAMZAP_RESOLUTION; space += STREAMZAP_RESOLUTION/2; sz->sum += space; - dprintk("s %u", sz->driver.minor, space); + dprintk("s %u", sz->driver->minor, space); push(sz, (char *)&space); } @@ -368,10 +367,10 @@ static void usb_streamzap_irq(struct urb *urb) break; } - dprintk("received %d", sz->driver.minor, urb->actual_length); + dprintk("received %d", sz->driver->minor, urb->actual_length); if (!sz->flush) { for (i = 0; i < urb->actual_length; i++) { - dprintk("%d: %x", sz->driver.minor, + dprintk("%d: %x", sz->driver->minor, i, (unsigned char) sz->buf_in[i]); switch (sz->decoder_state) { case PulseSpace: @@ -443,14 +442,18 @@ static int streamzap_probe(struct usb_interface *interface, { struct usb_device *udev = interface_to_usbdev(interface); struct usb_host_interface *iface_host; - int retval = -ENOMEM; - struct usb_streamzap *sz = NULL; + struct usb_streamzap *sz; + struct lirc_driver *driver; + struct lirc_buffer *lirc_buf; + struct lirc_buffer *delay_buf; char buf[63], name[128] = ""; + int retval = -ENOMEM; + int minor = 0; /* Allocate space for device driver specific data */ sz = kzalloc(sizeof(struct usb_streamzap), GFP_KERNEL); if (sz == NULL) - goto error; + return -ENOMEM; sz->udev = udev; sz->interface = interface; @@ -462,7 +465,7 @@ static int streamzap_probe(struct usb_interface *interface, err("%s: Unexpected desc.bNumEndpoints (%d)", __func__, iface_host->desc.bNumEndpoints); retval = -ENODEV; - goto error; + goto free_sz; } sz->endpoint = &(iface_host->endpoint[0].desc); @@ -471,7 +474,7 @@ static int streamzap_probe(struct usb_interface *interface, err("%s: endpoint doesn't match input device 02%02x", __func__, sz->endpoint->bEndpointAddress); retval = -ENODEV; - goto error; + goto free_sz; } if ((sz->endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) @@ -479,13 +482,13 @@ static int streamzap_probe(struct usb_interface *interface, err("%s: endpoint attributes don't match xfer 02%02x", __func__, sz->endpoint->bmAttributes); retval = -ENODEV; - goto error; + goto free_sz; } if (sz->endpoint->wMaxPacketSize == 0) { err("%s: endpoint message size==0? ", __func__); retval = -ENODEV; - goto error; + goto free_sz; } /* Allocate the USB buffer and IRQ URB */ @@ -494,36 +497,43 @@ static int streamzap_probe(struct usb_interface *interface, sz->buf_in = usb_buffer_alloc(sz->udev, sz->buf_in_len, GFP_ATOMIC, &sz->dma_in); if (sz->buf_in == NULL) - goto error; + goto free_sz; sz->urb_in = usb_alloc_urb(0, GFP_KERNEL); if (sz->urb_in == NULL) - goto error; + goto free_sz; /* Connect this device to the LIRC sub-system */ - - if (lirc_buffer_init(&sz->lirc_buf, sizeof(int), - STREAMZAP_BUFFER_SIZE)) - goto error; - - if (lirc_buffer_init(&sz->delay_buf, sizeof(int), - STREAMZAP_BUFFER_SIZE)) { - lirc_buffer_free(&sz->lirc_buf); - goto error; - } - - strcpy(sz->driver.name, DRIVER_NAME); - sz->driver.minor = -1; - sz->driver.sample_rate = 0; - sz->driver.code_length = sizeof(int) * 8; - sz->driver.features = LIRC_CAN_REC_MODE2 | LIRC_CAN_GET_REC_RESOLUTION; - sz->driver.data = sz; - sz->driver.rbuf = &sz->lirc_buf; - sz->driver.set_use_inc = &streamzap_use_inc; - sz->driver.set_use_dec = &streamzap_use_dec; - sz->driver.fops = &streamzap_fops; - sz->driver.dev = &interface->dev; - sz->driver.owner = THIS_MODULE; + driver = kzalloc(sizeof(struct lirc_driver), GFP_KERNEL); + if (!driver) + goto free_sz; + + lirc_buf = kmalloc(sizeof(struct lirc_buffer), GFP_KERNEL); + if (!lirc_buf) + goto free_driver; + if (lirc_buffer_init(lirc_buf, sizeof(int), STREAMZAP_BUF_LEN)) + goto kfree_lirc_buf; + + delay_buf = kmalloc(sizeof(struct lirc_buffer), GFP_KERNEL); + if (!delay_buf) + goto free_lirc_buf; + if (lirc_buffer_init(delay_buf, sizeof(int), STREAMZAP_BUF_LEN)) + goto kfree_delay_buf; + + sz->driver = driver; + strcpy(sz->driver->name, DRIVER_NAME); + sz->driver->minor = -1; + sz->driver->sample_rate = 0; + sz->driver->code_length = sizeof(int) * 8; + sz->driver->features = LIRC_CAN_REC_MODE2 | LIRC_CAN_GET_REC_RESOLUTION; + sz->driver->data = sz; + sz->driver->rbuf = lirc_buf; + sz->delay_buf = delay_buf; + sz->driver->set_use_inc = &streamzap_use_inc; + sz->driver->set_use_dec = &streamzap_use_dec; + sz->driver->fops = &streamzap_fops; + sz->driver->dev = &interface->dev; + sz->driver->owner = THIS_MODULE; sz->idle = 1; sz->decoder_state = PulseSpace; @@ -556,28 +566,32 @@ static int streamzap_probe(struct usb_interface *interface, snprintf(name + strlen(name), sizeof(name) - strlen(name), " %s", buf); - printk(KERN_INFO DRIVER_NAME "[%d]: %s on usb%d:%d attached\n", - sz->driver.minor, name, - udev->bus->busnum, sz->udev->devnum); + minor = lirc_register_driver(driver); - usb_set_intfdata(interface, sz); + if (minor < 0) + goto free_delay_buf; - if (lirc_register_driver(&sz->driver) < 0) { - lirc_buffer_free(&sz->delay_buf); - lirc_buffer_free(&sz->lirc_buf); - goto error; - } + sz->driver->minor = minor; - return 0; + usb_set_intfdata(interface, sz); -error: + printk(KERN_INFO DRIVER_NAME "[%d]: %s on usb%d:%d attached\n", + sz->driver->minor, name, + udev->bus->busnum, sz->udev->devnum); - /* - * Premise is that a 'goto error' can be invoked from inside the - * probe function and all necessary cleanup actions will be taken - * including freeing any necessary memory blocks - */ + return 0; +free_delay_buf: + lirc_buffer_free(sz->delay_buf); +kfree_delay_buf: + kfree(delay_buf); +free_lirc_buf: + lirc_buffer_free(sz->driver->rbuf); +kfree_lirc_buf: + kfree(lirc_buf); +free_driver: + kfree(driver); +free_sz: if (retval == -ENOMEM) err("Out of memory"); @@ -598,10 +612,10 @@ static int streamzap_use_inc(void *data) dprintk("%s called with no context", -1, __func__); return -EINVAL; } - dprintk("set use inc", sz->driver.minor); + dprintk("set use inc", sz->driver->minor); - lirc_buffer_clear(&sz->lirc_buf); - lirc_buffer_clear(&sz->delay_buf); + lirc_buffer_clear(sz->driver->rbuf); + lirc_buffer_clear(sz->delay_buf); sz->flush_timer.expires = jiffies + HZ; sz->flush = 1; @@ -610,7 +624,7 @@ static int streamzap_use_inc(void *data) sz->urb_in->dev = sz->udev; if (usb_submit_urb(sz->urb_in, GFP_ATOMIC)) { dprintk("open result = -EIO error submitting urb", - sz->driver.minor); + sz->driver->minor); return -EIO; } sz->in_use++; @@ -626,7 +640,7 @@ static void streamzap_use_dec(void *data) dprintk("%s called with no context", -1, __func__); return; } - dprintk("set use dec", sz->driver.minor); + dprintk("set use dec", sz->driver->minor); if (sz->flush) { sz->flush = 0; @@ -677,13 +691,13 @@ static void streamzap_disconnect(struct usb_interface *interface) /* unregister from the LIRC sub-system */ - errnum = lirc_unregister_driver(sz->driver.minor); + errnum = lirc_unregister_driver(sz->driver->minor); if (errnum != 0) dprintk("error in lirc_unregister: (returned %d)", - sz->driver.minor, errnum); + sz->driver->minor, errnum); - lirc_buffer_free(&sz->delay_buf); - lirc_buffer_free(&sz->lirc_buf); + lirc_buffer_free(sz->delay_buf); + lirc_buffer_free(sz->driver->rbuf); /* unregister from the USB sub-system */ @@ -691,7 +705,10 @@ static void streamzap_disconnect(struct usb_interface *interface) usb_buffer_free(sz->udev, sz->buf_in_len, sz->buf_in, sz->dma_in); - minor = sz->driver.minor; + minor = sz->driver->minor; + kfree(sz->driver->rbuf); + kfree(sz->driver); + kfree(sz->delay_buf); kfree(sz); printk(KERN_INFO DRIVER_NAME "[%d]: disconnected\n", minor); @@ -701,7 +718,7 @@ static int streamzap_suspend(struct usb_interface *intf, pm_message_t message) { struct usb_streamzap *sz = usb_get_intfdata(intf); - printk(KERN_INFO DRIVER_NAME "[%d]: suspend\n", sz->driver.minor); + printk(KERN_INFO DRIVER_NAME "[%d]: suspend\n", sz->driver->minor); if (sz->in_use) { if (sz->flush) { sz->flush = 0; @@ -719,8 +736,8 @@ static int streamzap_resume(struct usb_interface *intf) { struct usb_streamzap *sz = usb_get_intfdata(intf); - lirc_buffer_clear(&sz->lirc_buf); - lirc_buffer_clear(&sz->delay_buf); + lirc_buffer_clear(sz->driver->rbuf); + lirc_buffer_clear(sz->delay_buf); if (sz->in_use) { sz->flush_timer.expires = jiffies + HZ; @@ -730,7 +747,7 @@ static int streamzap_resume(struct usb_interface *intf) sz->urb_in->dev = sz->udev; if (usb_submit_urb(sz->urb_in, GFP_ATOMIC)) { dprintk("open result = -EIO error submitting urb", - sz->driver.minor); + sz->driver->minor); return -EIO; } } Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1610 retrieving revision 1.1611 diff -u -p -r1.1610 -r1.1611 --- kernel.spec 8 Jul 2009 01:44:28 -0000 1.1610 +++ kernel.spec 8 Jul 2009 02:13:19 -0000 1.1611 @@ -647,6 +647,7 @@ Patch900: linux-2.6-pci-cacheline-sizing Patch1000: linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch Patch1515: linux-2.6.31-lirc.patch +Patch1516: lirc_streamzap-buffer-rework.patch # nouveau + drm fixes Patch1811: drm-next.patch @@ -1215,6 +1216,8 @@ ApplyPatch linux-2.6-pci-cacheline-sizin # http://www.lirc.org/ ApplyPatch linux-2.6.31-lirc.patch +# should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else... +ApplyPatch lirc_streamzap-buffer-rework.patch ApplyPatch linux-2.6-e1000-ich9.patch @@ -1840,6 +1843,9 @@ fi # and build. %changelog +* Tue Jul 07 2009 Jarod Wilson +- See if we can't make lirc_streamzap behave better... (#508952) + * Tue Jul 07 2009 Chuck Ebbert 2.6.31-0.47.rc2.git2 - 2.6.31-rc2-git2 From lmacken at fedoraproject.org Wed Jul 8 02:32:54 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 8 Jul 2009 02:32:54 +0000 (UTC) Subject: rpms/python-repoze-what/EL-5 python-repoze-what.spec,1.1,1.2 Message-ID: <20090708023254.B9EF211C0048@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31890 Modified Files: python-repoze-what.spec Log Message: Fix the requirement in the docs subpackage Index: python-repoze-what.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what/EL-5/python-repoze-what.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what.spec 28 May 2009 21:29:05 -0000 1.1 +++ python-repoze-what.spec 8 Jul 2009 02:32:24 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-repoze-what Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Authorization for WSGI applications Group: Development/Languages @@ -19,8 +19,9 @@ BuildRequires: python-setuptools-devel BuildRequires: python-sphinx # For the test suite -#BuildRequires: python-nose python-zope-interface python-repoze-who -#BuildRequires: python-repoze-who-plugins-testutil +BuildRequires: python-nose python-zope-interface python-repoze-who +BuildRequires: python-repoze-who-testutil +BuildRequires: python-coverage Requires: python-repoze-who Requires: python-paste @@ -46,7 +47,8 @@ for example). %package docs Summary: Documentation for repoze.what -Requires: %{name}-%{version} +Requires: %{name} = %{version} +Group: Documentation %description docs This package contains documentation for the repoze.who module. @@ -82,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 01 2009 Luke Macken - 1.0.8-2 +- Fix the dependency in the docs subpackage + * Thu May 21 2009 Luke Macken - 1.0.8-1 - Update to 1.0.8 - Create a docs subpackage for the compiled Sphinx documentation. From lmacken at fedoraproject.org Wed Jul 8 02:33:39 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 8 Jul 2009 02:33:39 +0000 (UTC) Subject: rpms/python-repoze-what/F-10 python-repoze-what.spec,1.1,1.2 Message-ID: <20090708023339.87BBF11C0048@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32134 Modified Files: python-repoze-what.spec Log Message: Fix the requirement in the docs subpackage Index: python-repoze-what.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what/F-10/python-repoze-what.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what.spec 28 May 2009 21:27:59 -0000 1.1 +++ python-repoze-what.spec 8 Jul 2009 02:33:09 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-repoze-what Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Authorization for WSGI applications Group: Development/Languages @@ -19,8 +19,9 @@ BuildRequires: python-setuptools-devel BuildRequires: python-sphinx # For the test suite -#BuildRequires: python-nose python-zope-interface python-repoze-who -#BuildRequires: python-repoze-who-plugins-testutil +BuildRequires: python-nose python-zope-interface python-repoze-who +BuildRequires: python-repoze-who-testutil +BuildRequires: python-coverage Requires: python-repoze-who Requires: python-paste @@ -46,7 +47,8 @@ for example). %package docs Summary: Documentation for repoze.what -Requires: %{name}-%{version} +Requires: %{name} = %{version} +Group: Documentation %description docs This package contains documentation for the repoze.who module. @@ -82,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 01 2009 Luke Macken - 1.0.8-2 +- Fix the dependency in the docs subpackage + * Thu May 21 2009 Luke Macken - 1.0.8-1 - Update to 1.0.8 - Create a docs subpackage for the compiled Sphinx documentation. From lmacken at fedoraproject.org Wed Jul 8 02:34:25 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 8 Jul 2009 02:34:25 +0000 (UTC) Subject: rpms/python-repoze-what/F-11 python-repoze-what.spec,1.1,1.2 Message-ID: <20090708023425.144C111C0048@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32399 Modified Files: python-repoze-what.spec Log Message: Fix the requirement in the docs subpackage Index: python-repoze-what.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what/F-11/python-repoze-what.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what.spec 28 May 2009 21:26:52 -0000 1.1 +++ python-repoze-what.spec 8 Jul 2009 02:33:54 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-repoze-what Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Authorization for WSGI applications Group: Development/Languages @@ -19,8 +19,9 @@ BuildRequires: python-setuptools-devel BuildRequires: python-sphinx # For the test suite -#BuildRequires: python-nose python-zope-interface python-repoze-who -#BuildRequires: python-repoze-who-plugins-testutil +BuildRequires: python-nose python-zope-interface python-repoze-who +BuildRequires: python-repoze-who-testutil +BuildRequires: python-coverage Requires: python-repoze-who Requires: python-paste @@ -46,7 +47,8 @@ for example). %package docs Summary: Documentation for repoze.what -Requires: %{name}-%{version} +Requires: %{name} = %{version} +Group: Documentation %description docs This package contains documentation for the repoze.who module. @@ -82,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 01 2009 Luke Macken - 1.0.8-2 +- Fix the dependency in the docs subpackage + * Thu May 21 2009 Luke Macken - 1.0.8-1 - Update to 1.0.8 - Create a docs subpackage for the compiled Sphinx documentation. From lmacken at fedoraproject.org Wed Jul 8 03:16:28 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 8 Jul 2009 03:16:28 +0000 (UTC) Subject: rpms/pyevent/EL-5 pyevent.spec,1.3,1.4 Message-ID: <20090708031628.8843511C0048@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/pyevent/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8887 Modified Files: pyevent.spec Log Message: Use setuptools to generate egg-info Index: pyevent.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyevent/EL-5/pyevent.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pyevent.spec 26 Feb 2009 19:54:09 -0000 1.3 +++ pyevent.spec 8 Jul 2009 03:15:57 -0000 1.4 @@ -3,7 +3,7 @@ Name: pyevent Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python bindings for libevent Group: Development/Languages @@ -13,7 +13,7 @@ Source0: http://pyevent.googlecod BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: pyevent-0.3-lib64.patch -BuildRequires: python-devel, Pyrex, libevent-devel +BuildRequires: python-devel, Pyrex, libevent-devel, python-setuptools-devel %description Pyevent is the python bindings for libevent which is a generic event system @@ -26,12 +26,11 @@ touch event.pyx %patch0 -p1 -b .lib64 %build -CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build - +CFLAGS="$RPM_OPT_FLAGS" %{__python} -c 'import setuptools; execfile("setup.py")' build %install rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT +%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root $RPM_BUILD_ROOT %clean @@ -46,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 07 2009 Luke Macken - 0.3-6 +- Use setuptools to generate egg-info + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lmacken at fedoraproject.org Wed Jul 8 03:28:09 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 8 Jul 2009 03:28:09 +0000 (UTC) Subject: rpms/pyOpenSSL/EL-5 pyOpenSSL-setuptools.patch, NONE, 1.1 pyOpenSSL.spec, 1.32, 1.33 Message-ID: <20090708032809.2CD5611C0048@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/pyOpenSSL/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11976 Modified Files: pyOpenSSL.spec Added Files: pyOpenSSL-setuptools.patch Log Message: Apply a patch to use setuptools instead of distutils, so we can get egg-info on EL-5 pyOpenSSL-setuptools.patch: --- NEW FILE pyOpenSSL-setuptools.patch --- --- setup.py.orig 2009-06-03 13:43:15.000000000 -0400 +++ setup.py 2009-06-03 13:43:23.000000000 -0400 @@ -10,7 +10,7 @@ Installation script for the OpenSSL module """ -from distutils.core import setup, Extension +from setuptools import setup, Extension import os, sys from version import __version__ Index: pyOpenSSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyOpenSSL/EL-5/pyOpenSSL.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- pyOpenSSL.spec 26 Feb 2009 19:40:26 -0000 1.32 +++ pyOpenSSL.spec 8 Jul 2009 03:27:38 -0000 1.33 @@ -3,18 +3,20 @@ Summary: Python wrapper module around the OpenSSL library Name: pyOpenSSL Version: 0.7 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://pyopenssl.sf.net/%{name}-%{version}.tar.gz Patch0: pyOpenSSL-0.7-openssl.patch Patch2: pyOpenSSL-elinks.patch Patch3: pyOpenSSL-nopdfout.patch Patch4: pyOpenSSL-threadsafe.patch +Patch5: pyOpenSSL-setuptools.patch License: LGPLv2+ Group: Development/Libraries BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Url: http://pyopenssl.sourceforge.net/ BuildRequires: elinks openssl-devel python-devel BuildRequires: tetex-dvips tetex-latex latex2html +BuildRequires: python-setuptools-devel %description High-level wrapper around a subset of the OpenSSL library, includes @@ -30,6 +32,7 @@ High-level wrapper around a subset of th %patch2 -p1 -b .elinks %patch3 -p1 -b .nopdfout %patch4 -p1 -b .threadsafe +%patch5 -p0 -b .setuptools # Fix permissions for debuginfo package %{__chmod} -x src/ssl/connection.c @@ -53,6 +56,10 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/%{name}*.egg-info %changelog +* Wed Jun 03 2009 Luke Macken - 0.7-6 +- Apply a patch to use setuptools instead of distutils, so we can get egg-info + on EL-5 + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From glommer at fedoraproject.org Wed Jul 8 04:00:54 2009 From: glommer at fedoraproject.org (Glauber Costa) Date: Wed, 8 Jul 2009 04:00:54 +0000 (UTC) Subject: rpms/qemu/devel qemu.spec,1.106,1.107 Message-ID: <20090708040054.3500411C0048@cvs1.fedora.phx.redhat.com> Author: glommer Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19122 Modified Files: qemu.spec Log Message: link to gpxe Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- qemu.spec 3 Jul 2009 08:32:58 -0000 1.106 +++ qemu.spec 8 Jul 2009 04:00:53 -0000 1.107 @@ -113,7 +113,7 @@ This package provides the user mode emul Summary: QEMU system emulator for x86 Group: Development/Tools Requires: %{name}-common = %{epoch}:%{version}-%{release} -Requires: etherboot-zroms-kvm +Requires: gpxe-roms-qemu Requires: vgabios Requires: bochs-bios >= 2.3.8-0.5 Provides: kvm = 85 @@ -312,14 +312,14 @@ rm -rf ${RPM_BUILD_ROOT}%{_datadir}/%{na rm -rf ${RPM_BUILD_ROOT}%{_datadir}/%{name}/openbios-sparc64 rm -rf ${RPM_BUILD_ROOT}%{_datadir}/%{name}/petalogix-s3adsp1800.dtb -# the pxe etherboot images will be symlinks to the images on -# /usr/share/etherboot, as QEMU doesn't know how to look +# the pxe gpxe images will be symlinks to the images on +# /usr/share/gpxe, as QEMU doesn't know how to look # for other paths, yet. pxe_link() { - ln -s ../etherboot/$2.zrom %{buildroot}%{_datadir}/%{name}/pxe-$1.bin + ln -s ../gpxe/$2.rom %{buildroot}%{_datadir}/%{name}/pxe-$1.bin } -pxe_link e1000 e1000-82542 +pxe_link e1000 e1000-0x100e pxe_link ne2k_pci ne pxe_link pcnet pcnet32 pxe_link rtl8139 rtl8139 @@ -460,6 +460,9 @@ fi %{_mandir}/man1/qemu-img.1* %changelog +* Tue Jul 07 2009 Glauber Costa - 2:0.10.50-9.kvm87 +- use pxe roms from gpxe, instead of etherboot package. + * Fri Jul 3 2009 Mark McLoughlin - 2:0.10.50-8.kvm87 - Prefer sysfs over usbfs for usb passthrough (#508326) From glommer at fedoraproject.org Wed Jul 8 04:01:58 2009 From: glommer at fedoraproject.org (Glauber Costa) Date: Wed, 8 Jul 2009 04:01:58 +0000 (UTC) Subject: rpms/qemu/devel qemu.spec,1.107,1.108 Message-ID: <20090708040158.20CB111C0048@cvs1.fedora.phx.redhat.com> Author: glommer Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19292 Modified Files: qemu.spec Log Message: bump tag Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- qemu.spec 8 Jul 2009 04:00:53 -0000 1.107 +++ qemu.spec 8 Jul 2009 04:01:27 -0000 1.108 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 8.%{kvmvertag}%{?dist} +Release: 9.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD From mclasen at fedoraproject.org Wed Jul 8 05:47:59 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 8 Jul 2009 05:47:59 +0000 (UTC) Subject: rpms/gtk2/devel csw-fixes.patch,NONE,1.1 gtk2.spec,1.382,1.383 Message-ID: <20090708054759.4BB8911C02C4@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31030 Modified Files: gtk2.spec Added Files: csw-fixes.patch Log Message: Some csw drawing fixes csw-fixes.patch: --- NEW FILE csw-fixes.patch --- diff --git a/gdk/gdkdraw.c b/gdk/gdkdraw.c index 869d535..44652bc 100644 --- a/gdk/gdkdraw.c +++ b/gdk/gdkdraw.c @@ -752,9 +752,6 @@ gdk_draw_image (GdkDrawable *drawable, * On older X servers, rendering pixbufs with an alpha channel involves round * trips to the X server, and may be somewhat slow. * - * The clip mask of @gc is ignored, but clip rectangles and clip regions work - * fine. - * * If GDK is built with the Sun mediaLib library, the gdk_draw_pixbuf * function is accelerated using mediaLib, which provides hardware * acceleration on Intel, AMD, and Sparc chipsets. If desired, mediaLib diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c index b4c6f81..699cebf 100644 --- a/gdk/gdkgc.c +++ b/gdk/gdkgc.c @@ -646,24 +646,49 @@ _gdk_gc_add_drawable_clip (GdkGC *gc, GdkPixmap *new_mask; GdkGC *tmp_gc; GdkColor black = {0, 0, 0, 0}; + GdkRectangle r; + GdkOverlapType overlap; - priv->old_clip_mask = g_object_ref (priv->clip_mask); - gdk_drawable_get_size (priv->old_clip_mask, &w, &h); - - new_mask = gdk_pixmap_new (priv->old_clip_mask, w, h, -1); - tmp_gc = _gdk_drawable_get_scratch_gc ((GdkDrawable *)new_mask, FALSE); - - gdk_gc_set_foreground (tmp_gc, &black); - gdk_draw_rectangle (new_mask, tmp_gc, TRUE, 0, 0, -1, -1); - _gdk_gc_set_clip_region_internal (tmp_gc, region, TRUE); /* Takes ownership of region */ - gdk_draw_drawable (new_mask, - tmp_gc, - priv->old_clip_mask, - 0, 0, - 0, 0, - -1, -1); - gdk_gc_set_clip_region (tmp_gc, NULL); - gdk_gc_set_clip_mask (gc, new_mask); + gdk_drawable_get_size (priv->clip_mask, &w, &h); + + r.x = 0; + r.y = 0; + r.width = w; + r.height = h; + + /* Its quite common to expose areas that are completely in or outside + * the region, so we try to avoid allocating bitmaps that are just fully + * set or completely unset. + */ + overlap = gdk_region_rect_in (region, &r); + if (overlap == GDK_OVERLAP_RECTANGLE_PART) + { + /* The region and the mask intersect, create a new clip mask that + includes both areas */ + priv->old_clip_mask = g_object_ref (priv->clip_mask); + new_mask = gdk_pixmap_new (priv->old_clip_mask, w, h, -1); + tmp_gc = _gdk_drawable_get_scratch_gc ((GdkDrawable *)new_mask, FALSE); + + gdk_gc_set_foreground (tmp_gc, &black); + gdk_draw_rectangle (new_mask, tmp_gc, TRUE, 0, 0, -1, -1); + _gdk_gc_set_clip_region_internal (tmp_gc, region, TRUE); /* Takes ownership of region */ + gdk_draw_drawable (new_mask, + tmp_gc, + priv->old_clip_mask, + 0, 0, + 0, 0, + -1, -1); + gdk_gc_set_clip_region (tmp_gc, NULL); + gdk_gc_set_clip_mask (gc, new_mask); + } + else if (overlap == GDK_OVERLAP_RECTANGLE_OUT) + { + GdkRegion *empty = gdk_region_new (); + + priv->old_clip_mask = g_object_ref (priv->clip_mask); + _gdk_windowing_gc_set_clip_region (gc, empty, FALSE); + gdk_region_destroy (empty); + } } else { @@ -775,6 +800,24 @@ _gdk_gc_get_clip_region (GdkGC *gc) } /** + * _gdk_gc_get_clip_mask: + * @gc: a #GdkGC + * + * Gets the current clip mask for @gc, if any. + * + * Return value: the clip mask for the GC, or %NULL. + * (if a clip region is set, the return will be %NULL) + * This value is owned by the GC and must not be freed. + **/ +GdkBitmap * +_gdk_gc_get_clip_mask (GdkGC *gc) +{ + g_return_val_if_fail (GDK_IS_GC (gc), NULL); + + return GDK_GC_GET_PRIVATE (gc)->clip_mask; +} + +/** * _gdk_gc_get_fill: * @gc: a #GdkGC * diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h index 946c3f9..c984386 100644 --- a/gdk/gdkinternals.h +++ b/gdk/gdkinternals.h @@ -399,6 +399,7 @@ void _gdk_gc_init (GdkGC *gc, GdkGCValuesMask values_mask); GdkRegion *_gdk_gc_get_clip_region (GdkGC *gc); +GdkBitmap *_gdk_gc_get_clip_mask (GdkGC *gc); gboolean _gdk_gc_get_exposures (GdkGC *gc); GdkFill _gdk_gc_get_fill (GdkGC *gc); GdkPixmap *_gdk_gc_get_tile (GdkGC *gc); diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index 6e72cab..d9b1e5b 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -639,7 +639,12 @@ remove_child_area (GdkWindowObject *private, child_region = gdk_region_rectangle (&r); if (child->shape) - gdk_region_intersect (child_region, child->shape); + { + /* Adjust shape region to parent window coords */ + gdk_region_offset (child->shape, child->x, child->y); + gdk_region_intersect (child_region, child->shape); + gdk_region_offset (child->shape, -child->x, -child->y); + } else if (private->window_type == GDK_WINDOW_FOREIGN) { shape = _gdk_windowing_window_get_shape ((GdkWindow *)child); @@ -4660,7 +4665,12 @@ _gdk_window_process_updates_recurse (GdkWindow *window, child_region = gdk_region_rectangle (&r); if (child->shape) - gdk_region_intersect (child_region, child->shape); + { + /* Adjust shape region to parent window coords */ + gdk_region_offset (child->shape, child->x, child->y); + gdk_region_intersect (child_region, child->shape); + gdk_region_offset (child->shape, -child->x, -child->y); + } if (child->impl == private->impl) { diff --git a/gdk/x11/gdkdrawable-x11.c b/gdk/x11/gdkdrawable-x11.c index 537a47e..b2cac29 100644 --- a/gdk/x11/gdkdrawable-x11.c +++ b/gdk/x11/gdkdrawable-x11.c @@ -388,9 +388,22 @@ gdk_x11_drawable_update_picture_clip (GdkDrawable *drawable, else { XRenderPictureAttributes pa; - pa.clip_mask = None; + GdkBitmap *mask; + gulong pa_mask; + + pa_mask = CPClipMask; + if (gc && (mask = _gdk_gc_get_clip_mask (gc))) + { + pa.clip_mask = GDK_PIXMAP_XID (mask); + pa.clip_x_origin = gc->clip_x_origin; + pa.clip_y_origin = gc->clip_y_origin; + pa_mask |= CPClipXOrigin | CPClipYOrigin; + } + else + pa.clip_mask = None; + XRenderChangePicture (xdisplay, picture, - CPClipMask, &pa); + pa_mask, &pa); } } Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- gtk2.spec 7 Jul 2009 05:32:49 -0000 1.382 +++ gtk2.spec 8 Jul 2009 05:47:59 -0000 1.383 @@ -17,7 +17,7 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -28,6 +28,8 @@ Source2: update-gtk-immodules Patch0: gtk+-2.13.5-lib64.patch # http://bugzilla.redhat.com/show_bug.cgi?id=478400 Patch1: default_printer.patch +# from upstream +Patch2: csw-fixes.patch BuildRequires: atk-devel >= %{atk_version} BuildRequires: pango-devel >= %{pango_version} @@ -138,6 +140,7 @@ This package contains developer document %patch0 -p1 -b .lib64 %patch1 -p0 -b .default-printer +%patch2 -p1 -b .csw-fixes # make sure that gtkmarshalers.{c, h} get regenerated during the build # - caused by print_authentication.patch @@ -370,6 +373,9 @@ fi %changelog +* Wed Jul 8 2009 Matthias Clasen - 2.17.3-2 +- Some fixes for drawing issues, e.g. with statusicons + * Tue Jul 7 2009 Matthias Clasen - 2.17.3-1 - Update to 2.17.3 From pravins at fedoraproject.org Wed Jul 8 05:53:33 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Wed, 8 Jul 2009 05:53:33 +0000 (UTC) Subject: rpms/culmus-fonts/devel .cvsignore, 1.3, 1.4 culmus-fonts.spec, 1.8, 1.9 sources, 1.3, 1.4 Message-ID: <20090708055333.CF51711C02C4@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/culmus-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32093 Modified Files: .cvsignore culmus-fonts.spec sources Log Message: * Wed Jul 08 2009 Pravin Satpute - 0.103-1 - upstream new release 0.103 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/culmus-fonts/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Feb 2009 11:33:17 -0000 1.3 +++ .cvsignore 8 Jul 2009 05:53:02 -0000 1.4 @@ -1 +1,2 @@ culmus-0.102.tar.gz +culmus-0.103.tar.gz Index: culmus-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/culmus-fonts/devel/culmus-fonts.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- culmus-fonts.spec 14 Apr 2009 07:26:50 -0000 1.8 +++ culmus-fonts.spec 8 Jul 2009 05:53:02 -0000 1.9 @@ -9,8 +9,8 @@ Hebrew from the Culmus project. Name: %{fontname}-fonts -Version: 0.102 -Release: 6%{?dist} +Version: 0.103 +Release: 1%{?dist} Summary: Fonts for Hebrew from Culmus project Group: User Interface/X @@ -247,6 +247,9 @@ rm -fr %{buildroot} %changelog +* Wed Jul 08 2009 Pravin Satpute - 0.103-1 +- upstream new release 0.103 + * Tue Apr 14 2009 Rahul Bhalerao - 0.102-6.fc11 - Rebuild for bug #491957. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/culmus-fonts/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Feb 2009 11:33:20 -0000 1.3 +++ sources 8 Jul 2009 05:53:02 -0000 1.4 @@ -1 +1 @@ -720d0dcce6e6a60db64de04e5afdb424 culmus-0.102.tar.gz +36c0fcd674eda12de6a5e9a4bc52abdb culmus-0.103.tar.gz From iarnell at fedoraproject.org Wed Jul 8 06:07:12 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Wed, 8 Jul 2009 06:07:12 +0000 (UTC) Subject: rpms/perl-Catalyst-Controller-HTML-FormFu/devel .cvsignore, 1.4, 1.5 perl-Catalyst-Controller-HTML-FormFu.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090708060712.9623B11C02C4@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2124 Modified Files: .cvsignore perl-Catalyst-Controller-HTML-FormFu.spec sources Log Message: * Wed Jul 08 2009 Iain Arnell 0.05000-1 - update to latest upstream version - BR perl(namespace::autoclean) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 Apr 2009 03:57:30 -0000 1.4 +++ .cvsignore 8 Jul 2009 06:06:40 -0000 1.5 @@ -1 +1 @@ -Catalyst-Controller-HTML-FormFu-0.04003.tar.gz +Catalyst-Controller-HTML-FormFu-0.05000.tar.gz Index: perl-Catalyst-Controller-HTML-FormFu.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel/perl-Catalyst-Controller-HTML-FormFu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Controller-HTML-FormFu.spec 22 Apr 2009 03:57:30 -0000 1.4 +++ perl-Catalyst-Controller-HTML-FormFu.spec 8 Jul 2009 06:06:41 -0000 1.5 @@ -1,5 +1,5 @@ Name: perl-Catalyst-Controller-HTML-FormFu -Version: 0.04003 +Version: 0.05000 Release: 1%{?dist} Summary: HTML::FormFu controller for Catalyst License: GPL+ or Artistic @@ -21,6 +21,7 @@ BuildRequires: perl(ExtUtils::MakeMaker BuildRequires: perl(HTML::FormFu) >= 0.04001 BuildRequires: perl(Moose) BuildRequires: perl(MRO::Compat) +BuildRequires: perl(namespace::autoclean) BuildRequires: perl(Regexp::Assemble) BuildRequires: perl(Task::Weaken) BuildRequires: perl(Template) @@ -65,6 +66,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 08 2009 Iain Arnell 0.05000-1 +- update to latest upstream version +- BR perl(namespace::autoclean) + * Wed Apr 22 2009 Iain Arnell 0.04003-1 - update to 0.04003 - BR perl(MRO::Compat) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 Apr 2009 03:57:30 -0000 1.4 +++ sources 8 Jul 2009 06:06:41 -0000 1.5 @@ -1 +1 @@ -f6c88471ec3aa75a7714851ce661ad95 Catalyst-Controller-HTML-FormFu-0.04003.tar.gz +ca0debf2fcd396fb4e0085c231033271 Catalyst-Controller-HTML-FormFu-0.05000.tar.gz From mhlavink at fedoraproject.org Wed Jul 8 06:38:33 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 8 Jul 2009 06:38:33 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore, 1.57, 1.58 dovecot.spec, 1.132, 1.133 sources, 1.60, 1.61 dovecot-managesieve-trim-rc5-to-rc6.patch, 1.1, NONE Message-ID: <20090708063834.1CD8B11C02C4@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6368 Modified Files: .cvsignore dovecot.spec sources Removed Files: dovecot-managesieve-trim-rc5-to-rc6.patch Log Message: update sieve and managesieve plugins Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- .cvsignore 2 Jul 2009 09:18:40 -0000 1.57 +++ .cvsignore 8 Jul 2009 06:38:29 -0000 1.58 @@ -1,5 +1,4 @@ dovecot-1.2.0.tar.gz -dovecot-1.2-managesieve-0.11.5.tar.gz -dovecot-1.2.rc5-managesieve-0.11.5.diff.gz -dovecot-sieve-1.1.6.tar.gz -dovecot-1.2-sieve-0.1.6.tar.gz +dovecot-1.2-managesieve-0.11.6.tar.gz +dovecot-1.2.0-managesieve-0.11.6.diff.gz +dovecot-1.2-sieve-0.1.7.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot.spec,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- dovecot.spec 7 Jul 2009 08:45:18 -0000 1.132 +++ dovecot.spec 8 Jul 2009 06:38:30 -0000 1.133 @@ -2,7 +2,7 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -14,9 +14,9 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 0.1.6 +%define sieve_version 0.1.7 %define sieve_name dovecot-1.2-sieve -%define managesieve_version 0.11.5 +%define managesieve_version 0.11.6 #define managesieve_name dovecot-%{version}-managesieve %define managesieve_name dovecot-1.2-managesieve @@ -33,13 +33,12 @@ Source7: dovecot-REDHAT-FAQ.txt Source8: http://www.rename-it.nl/dovecot/1.2/%{sieve_name}-%{sieve_version}.tar.gz Source9: dovecot.sysconfig Source10: http://www.rename-it.nl/dovecot/1.2/%{managesieve_name}-%{managesieve_version}.tar.gz -Source11: http://www.rename-it.nl/dovecot/1.2/dovecot-1.2.rc5-managesieve-%{managesieve_version}.diff.gz +Source11: http://www.rename-it.nl/dovecot/1.2/dovecot-%{version}-managesieve-%{managesieve_version}.diff.gz # 3x Fedora specific Patch1: dovecot-1.1-default-settings.patch Patch2: dovecot-1.0.beta2-mkcert-permissions.patch Patch3: dovecot-1.0.rc7-mkcert-paths.patch -Patch4: dovecot-managesieve-trim-rc5-to-rc6.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel, pam-devel, zlib-devel @@ -182,8 +181,6 @@ zcat %{SOURCE11} | patch -p1 --fuzz=0 -s %setup -q -D -T -a 10 %endif -%patch4 -p1 -b .managesievetrim - %build rm -f ./"configure" autoreconf -i -f @@ -440,6 +437,9 @@ fi %changelog +* Wed Jul 08 2009 Michal Hlavinka - 1:1.2.0-3 +- update sieve and managesieve plugins + * Tue Jul 07 2009 Michal Hlavinka - 1:1.2.0-2 - update sieve plugin Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 2 Jul 2009 09:18:40 -0000 1.60 +++ sources 8 Jul 2009 06:38:30 -0000 1.61 @@ -1,5 +1,4 @@ b382fa5c6551086568c21567f23e2dc3 dovecot-1.2.0.tar.gz -9b59508d076d96c16e2443e87c308fe4 dovecot-1.2-managesieve-0.11.5.tar.gz -544c086bd3beaf54eacb9245eae81115 dovecot-1.2.rc5-managesieve-0.11.5.diff.gz -7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz -4d9ec0ac3b61c71becc583ccd011a71c dovecot-1.2-sieve-0.1.6.tar.gz +e802cd87ee833ea43cab60ed8ff9480e dovecot-1.2-managesieve-0.11.6.tar.gz +960417300c696a506cbd482e039fddea dovecot-1.2.0-managesieve-0.11.6.diff.gz +efe43b0a81aff6f751e7e3a2a771baa2 dovecot-1.2-sieve-0.1.7.tar.gz --- dovecot-managesieve-trim-rc5-to-rc6.patch DELETED --- From pravins at fedoraproject.org Wed Jul 8 06:57:45 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Wed, 8 Jul 2009 06:57:45 +0000 (UTC) Subject: rpms/madan-fonts/devel madan-fonts.spec,1.3,1.4 Message-ID: <20090708065745.E35D311C02C4@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/madan-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8229 Modified Files: madan-fonts.spec Log Message: * Wed Jul 08 2009 Pravin Satpute - 1.0-9 - updated spec as per new packaging guideline Index: madan-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/madan-fonts/devel/madan-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- madan-fonts.spec 25 Feb 2009 22:49:05 -0000 1.3 +++ madan-fonts.spec 8 Jul 2009 06:57:45 -0000 1.4 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Font for Nepali language Group: User Interface/X # No version specified. @@ -12,6 +12,8 @@ URL: http://madanpuraskar.org/ Source: http://madanpuraskar.org/detail_guide/fonts/Madan.ttf BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: fontpackages-devel +Requires: fontpackages-filesystem %description This package provides the Madan font for Nepali made by the @@ -33,24 +35,12 @@ install -m 0644 -p *.ttf %{buildroot}%{f %clean rm -rf %{buildroot} -%post -if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache /usr/share/fonts -fi - -%postun -if [ "$1" = "0" ]; then - if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache /usr/share/fonts - fi -fi - -%files -%defattr(-,root,root,-) -%dir %{fontdir} -%{fontdir}/*.ttf +%_font_pkg *.ttf %changelog +* Wed Jul 08 2009 Pravin Satpute - 1.0-9 +- updated spec as per new packaging guideline + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From oget at fedoraproject.org Wed Jul 8 08:14:17 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 8 Jul 2009 08:14:17 +0000 (UTC) Subject: rpms/tritonus/devel tritonus-src-lib-alsa-cast.patch, NONE, 1.1 tritonus.spec, 1.2, 1.3 Message-ID: <20090708081417.3FAC511C02C4@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/tritonus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16470 Modified Files: tritonus.spec Added Files: tritonus-src-lib-alsa-cast.patch Log Message: * Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs - Fix alsa midi crash RHBZ #510063 - No more rebuilding in %install tritonus-src-lib-alsa-cast.patch: --- NEW FILE tritonus-src-lib-alsa-cast.patch --- diff -rupN tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h tritonus-0.3.7/src/lib/common/HandleFieldHandler.h --- tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h 2002-12-15 06:15:25.000000000 -0500 +++ tritonus-0.3.7/src/lib/common/HandleFieldHandler.h 2009-07-08 03:53:51.000000000 -0400 @@ -56,14 +56,14 @@ static void setHandle(JNIEnv *env, jobject obj, _type handle) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - (*env)->SetLongField(env, obj, fieldID, (jlong) (int) handle); \ + (*env)->SetLongField(env, obj, fieldID, (jlong) (long) handle); \ } \ \ static _type \ getHandle(JNIEnv *env, jobject obj) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - _type handle = (_type) (int) (*env)->GetLongField(env, obj, fieldID); \ + _type handle = (_type) (long) (*env)->GetLongField(env, obj, fieldID); \ return handle; \ } Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/devel/tritonus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tritonus.spec 29 May 2009 05:32:14 -0000 1.2 +++ tritonus.spec 8 Jul 2009 08:14:15 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Java Sound API Implementation URL: http://www.tritonus.org/ Group: System Environment/Libraries Version: 0.3.7 -Release: 0.3.%{cvs_version}%{?dist} +Release: 0.4.%{cvs_version}%{?dist} License: LGPLv2+ Source0: %{name}-%{version}-%{cvs_version}.tar.bz2 Source9: %{name}-snapshot.sh @@ -16,6 +16,8 @@ Patch1: %{name}-src-lib-fluidsynth.Make Patch2: %{name}-src-lib-alsa-Makefile.in.diff Patch3: %{name}-src-lib-alsa-constants_check.h.diff Patch4: %{name}-removed-code.diff +# Fix alsa midi crash RHBZ #510063 +Patch5: %{name}-src-lib-alsa-cast.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: alsa-lib-devel BuildRequires: ant @@ -229,6 +231,7 @@ on the native vorbis libraries. %patch2 -p0 -b .oldapi %patch3 -p0 -b .oldapi %patch4 -p1 -b .oldapi +%patch5 -p1 -b .cast # Fix encoding issues for file in doc/{compression.txt,TODO-matthias.txt,tritonusfaq.sgml}; do @@ -251,6 +254,9 @@ sed -i -e 's|-Werror||g' \ -e 's|-Wl,-rpath,/home/matthias/java/tritonus/src/lib/common||g' \ `find . -name Makefile.in` +# Prevent a rebuild in %%install +sed -i 's|install: all|install:|' Makefile.in + autoreconf -fi @@ -267,8 +273,7 @@ sed -i -e '/timestampgranularity/d' -e ' export CLASSPATH=`build-classpath jorbis` %ant -#make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java -make JAVADIR=%{_jvmdir}/java +make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java # javadoc doesn't want to process these two files: rm -f src/classes/org/tritonus/debug/AJDebug* @@ -389,6 +394,10 @@ rm -rf %{buildroot} %{_libdir}/%{name}/lib%{name}vorbis.so %changelog +* Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs +- Fix alsa midi crash RHBZ #510063 +- No more rebuilding in %%install + * Fri May 29 2009 Orcan Ogetbil - 0.3.7-0.3.20090419cvs - Add disttag From oget at fedoraproject.org Wed Jul 8 08:15:46 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 8 Jul 2009 08:15:46 +0000 (UTC) Subject: rpms/tritonus/F-11 tritonus-src-lib-alsa-cast.patch, NONE, 1.1 tritonus.spec, 1.2, 1.3 Message-ID: <20090708081546.F338611C02C4@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/tritonus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16697 Modified Files: tritonus.spec Added Files: tritonus-src-lib-alsa-cast.patch Log Message: * Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs - Fix alsa midi crash RHBZ #510063 - No more rebuilding in %install tritonus-src-lib-alsa-cast.patch: --- NEW FILE tritonus-src-lib-alsa-cast.patch --- diff -rupN tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h tritonus-0.3.7/src/lib/common/HandleFieldHandler.h --- tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h 2002-12-15 06:15:25.000000000 -0500 +++ tritonus-0.3.7/src/lib/common/HandleFieldHandler.h 2009-07-08 03:53:51.000000000 -0400 @@ -56,14 +56,14 @@ static void setHandle(JNIEnv *env, jobject obj, _type handle) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - (*env)->SetLongField(env, obj, fieldID, (jlong) (int) handle); \ + (*env)->SetLongField(env, obj, fieldID, (jlong) (long) handle); \ } \ \ static _type \ getHandle(JNIEnv *env, jobject obj) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - _type handle = (_type) (int) (*env)->GetLongField(env, obj, fieldID); \ + _type handle = (_type) (long) (*env)->GetLongField(env, obj, fieldID); \ return handle; \ } Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/F-11/tritonus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tritonus.spec 29 May 2009 05:34:35 -0000 1.2 +++ tritonus.spec 8 Jul 2009 08:15:46 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Java Sound API Implementation URL: http://www.tritonus.org/ Group: System Environment/Libraries Version: 0.3.7 -Release: 0.3.%{cvs_version}%{?dist} +Release: 0.4.%{cvs_version}%{?dist} License: LGPLv2+ Source0: %{name}-%{version}-%{cvs_version}.tar.bz2 Source9: %{name}-snapshot.sh @@ -16,6 +16,8 @@ Patch1: %{name}-src-lib-fluidsynth.Make Patch2: %{name}-src-lib-alsa-Makefile.in.diff Patch3: %{name}-src-lib-alsa-constants_check.h.diff Patch4: %{name}-removed-code.diff +# Fix alsa midi crash RHBZ #510063 +Patch5: %{name}-src-lib-alsa-cast.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: alsa-lib-devel BuildRequires: ant @@ -229,6 +231,7 @@ on the native vorbis libraries. %patch2 -p0 -b .oldapi %patch3 -p0 -b .oldapi %patch4 -p1 -b .oldapi +%patch5 -p1 -b .cast # Fix encoding issues for file in doc/{compression.txt,TODO-matthias.txt,tritonusfaq.sgml}; do @@ -251,6 +254,9 @@ sed -i -e 's|-Werror||g' \ -e 's|-Wl,-rpath,/home/matthias/java/tritonus/src/lib/common||g' \ `find . -name Makefile.in` +# Prevent a rebuild in %%install +sed -i 's|install: all|install:|' Makefile.in + autoreconf -fi @@ -267,8 +273,7 @@ sed -i -e '/timestampgranularity/d' -e ' export CLASSPATH=`build-classpath jorbis` %ant -#make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java -make JAVADIR=%{_jvmdir}/java +make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java # javadoc doesn't want to process these two files: rm -f src/classes/org/tritonus/debug/AJDebug* @@ -389,6 +394,10 @@ rm -rf %{buildroot} %{_libdir}/%{name}/lib%{name}vorbis.so %changelog +* Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs +- Fix alsa midi crash RHBZ #510063 +- No more rebuilding in %%install + * Fri May 29 2009 Orcan Ogetbil - 0.3.7-0.3.20090419cvs - Add disttag From oget at fedoraproject.org Wed Jul 8 08:16:37 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 8 Jul 2009 08:16:37 +0000 (UTC) Subject: rpms/tritonus/F-10 tritonus-src-lib-alsa-cast.patch, NONE, 1.1 tritonus.spec, 1.1, 1.2 Message-ID: <20090708081637.9EF1911C02C4@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/tritonus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16823 Modified Files: tritonus.spec Added Files: tritonus-src-lib-alsa-cast.patch Log Message: * Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs - Fix alsa midi crash RHBZ #510063 - No more rebuilding in %install tritonus-src-lib-alsa-cast.patch: --- NEW FILE tritonus-src-lib-alsa-cast.patch --- diff -rupN tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h tritonus-0.3.7/src/lib/common/HandleFieldHandler.h --- tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h 2002-12-15 06:15:25.000000000 -0500 +++ tritonus-0.3.7/src/lib/common/HandleFieldHandler.h 2009-07-08 03:53:51.000000000 -0400 @@ -56,14 +56,14 @@ static void setHandle(JNIEnv *env, jobject obj, _type handle) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - (*env)->SetLongField(env, obj, fieldID, (jlong) (int) handle); \ + (*env)->SetLongField(env, obj, fieldID, (jlong) (long) handle); \ } \ \ static _type \ getHandle(JNIEnv *env, jobject obj) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - _type handle = (_type) (int) (*env)->GetLongField(env, obj, fieldID); \ + _type handle = (_type) (long) (*env)->GetLongField(env, obj, fieldID); \ return handle; \ } Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/F-10/tritonus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tritonus.spec 29 May 2009 05:34:53 -0000 1.1 +++ tritonus.spec 8 Jul 2009 08:16:37 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Java Sound API Implementation URL: http://www.tritonus.org/ Group: System Environment/Libraries Version: 0.3.7 -Release: 0.3.%{cvs_version}%{?dist} +Release: 0.4.%{cvs_version}%{?dist} License: LGPLv2+ Source0: %{name}-%{version}-%{cvs_version}.tar.bz2 Source9: %{name}-snapshot.sh @@ -16,6 +16,8 @@ Patch1: %{name}-src-lib-fluidsynth.Make Patch2: %{name}-src-lib-alsa-Makefile.in.diff Patch3: %{name}-src-lib-alsa-constants_check.h.diff Patch4: %{name}-removed-code.diff +# Fix alsa midi crash RHBZ #510063 +Patch5: %{name}-src-lib-alsa-cast.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: alsa-lib-devel BuildRequires: ant @@ -229,6 +231,7 @@ on the native vorbis libraries. %patch2 -p0 -b .oldapi %patch3 -p0 -b .oldapi %patch4 -p1 -b .oldapi +%patch5 -p1 -b .cast # Fix encoding issues for file in doc/{compression.txt,TODO-matthias.txt,tritonusfaq.sgml}; do @@ -251,6 +254,9 @@ sed -i -e 's|-Werror||g' \ -e 's|-Wl,-rpath,/home/matthias/java/tritonus/src/lib/common||g' \ `find . -name Makefile.in` +# Prevent a rebuild in %%install +sed -i 's|install: all|install:|' Makefile.in + autoreconf -fi @@ -267,8 +273,7 @@ sed -i -e '/timestampgranularity/d' -e ' export CLASSPATH=`build-classpath jorbis` %ant -#make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java -make JAVADIR=%{_jvmdir}/java +make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java # javadoc doesn't want to process these two files: rm -f src/classes/org/tritonus/debug/AJDebug* @@ -389,6 +394,10 @@ rm -rf %{buildroot} %{_libdir}/%{name}/lib%{name}vorbis.so %changelog +* Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs +- Fix alsa midi crash RHBZ #510063 +- No more rebuilding in %%install + * Fri May 29 2009 Orcan Ogetbil - 0.3.7-0.3.20090419cvs - Add disttag From oget at fedoraproject.org Wed Jul 8 08:17:44 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 8 Jul 2009 08:17:44 +0000 (UTC) Subject: rpms/tritonus/F-9 tritonus-src-lib-alsa-cast.patch, NONE, 1.1 tritonus.spec, 1.1, 1.2 Message-ID: <20090708081744.EC7D811C02C4@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/tritonus/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16936 Modified Files: tritonus.spec Added Files: tritonus-src-lib-alsa-cast.patch Log Message: * Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs - Fix alsa midi crash RHBZ #510063 - No more rebuilding in %install tritonus-src-lib-alsa-cast.patch: --- NEW FILE tritonus-src-lib-alsa-cast.patch --- diff -rupN tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h tritonus-0.3.7/src/lib/common/HandleFieldHandler.h --- tritonus-0.3.7.old/src/lib/common/HandleFieldHandler.h 2002-12-15 06:15:25.000000000 -0500 +++ tritonus-0.3.7/src/lib/common/HandleFieldHandler.h 2009-07-08 03:53:51.000000000 -0400 @@ -56,14 +56,14 @@ static void setHandle(JNIEnv *env, jobject obj, _type handle) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - (*env)->SetLongField(env, obj, fieldID, (jlong) (int) handle); \ + (*env)->SetLongField(env, obj, fieldID, (jlong) (long) handle); \ } \ \ static _type \ getHandle(JNIEnv *env, jobject obj) \ { \ jfieldID fieldID = getNativeHandleFieldID(env, obj); \ - _type handle = (_type) (int) (*env)->GetLongField(env, obj, fieldID); \ + _type handle = (_type) (long) (*env)->GetLongField(env, obj, fieldID); \ return handle; \ } Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/F-9/tritonus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tritonus.spec 29 May 2009 05:37:01 -0000 1.1 +++ tritonus.spec 8 Jul 2009 08:17:14 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Java Sound API Implementation URL: http://www.tritonus.org/ Group: System Environment/Libraries Version: 0.3.7 -Release: 0.3.%{cvs_version}%{?dist} +Release: 0.4.%{cvs_version}%{?dist} License: LGPLv2+ Source0: %{name}-%{version}-%{cvs_version}.tar.bz2 Source9: %{name}-snapshot.sh @@ -16,6 +16,8 @@ Patch1: %{name}-src-lib-fluidsynth.Make Patch2: %{name}-src-lib-alsa-Makefile.in.diff Patch3: %{name}-src-lib-alsa-constants_check.h.diff Patch4: %{name}-removed-code.diff +# Fix alsa midi crash RHBZ #510063 +Patch5: %{name}-src-lib-alsa-cast.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: alsa-lib-devel BuildRequires: ant @@ -229,6 +231,7 @@ on the native vorbis libraries. %patch2 -p0 -b .oldapi %patch3 -p0 -b .oldapi %patch4 -p1 -b .oldapi +%patch5 -p1 -b .cast # Fix encoding issues for file in doc/{compression.txt,TODO-matthias.txt,tritonusfaq.sgml}; do @@ -251,6 +254,9 @@ sed -i -e 's|-Werror||g' \ -e 's|-Wl,-rpath,/home/matthias/java/tritonus/src/lib/common||g' \ `find . -name Makefile.in` +# Prevent a rebuild in %%install +sed -i 's|install: all|install:|' Makefile.in + autoreconf -fi @@ -267,8 +273,7 @@ sed -i -e '/timestampgranularity/d' -e ' export CLASSPATH=`build-classpath jorbis` %ant -#make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java -make JAVADIR=%{_jvmdir}/java +make %{?_smp_mflags} JAVADIR=%{_jvmdir}/java # javadoc doesn't want to process these two files: rm -f src/classes/org/tritonus/debug/AJDebug* @@ -389,6 +394,10 @@ rm -rf %{buildroot} %{_libdir}/%{name}/lib%{name}vorbis.so %changelog +* Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs +- Fix alsa midi crash RHBZ #510063 +- No more rebuilding in %%install + * Fri May 29 2009 Orcan Ogetbil - 0.3.7-0.3.20090419cvs - Add disttag From oget at fedoraproject.org Wed Jul 8 08:22:14 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 8 Jul 2009 08:22:14 +0000 (UTC) Subject: rpms/tritonus/devel tritonus.spec,1.3,1.4 Message-ID: <20090708082214.2691411C02C4@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/tritonus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17470 Modified Files: tritonus.spec Log Message: Add link from upstream tracker for alsa-cast patch Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/devel/tritonus.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tritonus.spec 8 Jul 2009 08:14:15 -0000 1.3 +++ tritonus.spec 8 Jul 2009 08:22:13 -0000 1.4 @@ -17,6 +17,7 @@ Patch2: %{name}-src-lib-alsa-Makefile.i Patch3: %{name}-src-lib-alsa-constants_check.h.diff Patch4: %{name}-removed-code.diff # Fix alsa midi crash RHBZ #510063 +# http://sourceforge.net/tracker/?func=detail&aid=2818404&group_id=1390&atid=201390 Patch5: %{name}-src-lib-alsa-cast.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: alsa-lib-devel From jsafrane at fedoraproject.org Wed Jul 8 08:25:19 2009 From: jsafrane at fedoraproject.org (=?utf-8?b?SmFuIMWgYWZyw6FuZWs=?=) Date: Wed, 8 Jul 2009 08:25:19 +0000 (UTC) Subject: rpms/libcgroup/devel libcgroup.spec,1.13,1.14 Message-ID: <20090708082519.723EC11C02C4@cvs1.fedora.phx.redhat.com> Author: jsafrane Update of /cvs/pkgs/rpms/libcgroup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17757 Modified Files: libcgroup.spec Log Message: add deleted changelog entries Index: libcgroup.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcgroup/devel/libcgroup.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libcgroup.spec 7 Jul 2009 16:28:14 -0000 1.13 +++ libcgroup.spec 8 Jul 2009 08:24:49 -0000 1.14 @@ -118,6 +118,23 @@ fi %changelog * Tue Jul 7 2009 Jan Safranek 0.34-1 - Update to 0.34 +* Mon Mar 09 2009 Dhaval Giani 0.33-3 +- Add a workaround for rt cgroup controller. +* Mon Mar 09 2009 Dhaval Giani 0.33-2 +- Change the cgconfig script to start earlier +- Move the binaries to /bin and /sbin +* Mon Mar 02 2009 Dhaval Giani 0.33-1 +- Update to latest upstream +* Wed Feb 25 2009 Fedora Release Engineering 0.32.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Jan 05 2009 Dhaval Giani 0.32.2-3 +- Fix redhat-lsb dependency +* Mon Dec 29 2008 Dhaval Giani 0.32.2-2 +- Fix build dependencies +* Mon Dec 29 2008 Dhaval Giani 0.32.2-1 +- Update to latest upstream +* Thu Oct 23 2008 Dhaval Giani 0.32.1-1 * Tue Feb 24 2009 Balbir Singh 0.33-1 - Update to 0.33, spec file changes to add Makefiles and pam_cgroup module * Fri Oct 10 2008 Dhaval Giani 0.32-1 From chitlesh at fedoraproject.org Wed Jul 8 08:35:39 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Wed, 8 Jul 2009 08:35:39 +0000 (UTC) Subject: rpms/kicad/devel import.log, NONE, 1.1 .cvsignore, 1.5, 1.6 kicad.spec, 1.16, 1.17 sources, 1.5, 1.6 kicad-2007.07.09.destdir.locale.rpmoptflags.diff, 1.1, NONE kicad.desktop, 1.4, NONE Message-ID: <20090708083539.0FBA211C02C4@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/kicad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19816/devel Modified Files: .cvsignore kicad.spec sources Added Files: import.log Removed Files: kicad-2007.07.09.destdir.locale.rpmoptflags.diff kicad.desktop Log Message: 2009.07.07 snapshot --- NEW FILE import.log --- kicad-2009_07_07-1_rev1863_fc11:HEAD:kicad-2009.07.07-1.rev1863.fc11.src.rpm:1247041564 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kicad/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 4 Oct 2007 13:22:05 -0000 1.5 +++ .cvsignore 8 Jul 2009 08:35:38 -0000 1.6 @@ -1,2 +1,3 @@ -kicad-sources--2007-07-09.zip -kicad-src-extras-2007-07-09.tar.bz2 +kicad-2009.07.07.tar.bz2 +kicad-doc-2009.07.07.tar.bz2 +kicad-library-2009.07.07.tar.bz2 Index: kicad.spec =================================================================== RCS file: /cvs/pkgs/rpms/kicad/devel/kicad.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- kicad.spec 25 Feb 2009 11:17:57 -0000 1.16 +++ kicad.spec 8 Jul 2009 08:35:38 -0000 1.17 @@ -1,22 +1,29 @@ -Name: kicad -Version: 2007.07.09 -Release: 5%{?dist} -Summary: Electronic schematic diagrams and printed circuit board artwork -Summary(fr): Saisie de sch??ma ??lectronique et trac?? de circuit imprim?? - -Group: Applications/Engineering -License: GPLv2+ -Url: http://www.lis.inpg.fr/realise_au_lis/kicad/ -Source: ftp://iut-tice.ujf-grenoble.fr/cao/sources/kicad-sources--2007-07-09.zip -Source1: http://linuxelectronique.free.fr/download/kicad-src-extras-2007-07-09.tar.bz2 -Source2: %{name}.desktop -Patch0: %{name}-%{version}.destdir.locale.rpmoptflags.diff -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Name: kicad +Version: 2009.07.07 +Release: 1.rev1863%{?dist} +Summary: Electronic schematic diagrams and printed circuit board artwork +Summary(fr): Saisie de sch??ma ??lectronique et trac?? de circuit imprim?? + +Group: Applications/Engineering +License: GPLv2+ +URL: http://www.lis.inpg.fr/realise_au_lis/kicad/ + +# Source files created from upstream's SVN repository +Source: kicad-%{version}.tar.bz2 +Source1: kicad-doc-%{version}.tar.bz2 +Source2: kicad-library-%{version}.tar.bz2 + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: desktop-file-utils +BuildRequires: wxGTK-devel +BuildRequires: boost-devel +BuildRequires: cmake -BuildRequires: desktop-file-utils, wxGTK-devel +Requires: electronics-menu %description -Kicad is an open source (GPL) software for the creation of electronic schematic +Kicad is an EDA software to design electronic schematic diagrams and printed circuit board artwork up to 16 layers. Kicad is a set of four softwares and a project manager: - Eeschema: schematic entry @@ -35,177 +42,211 @@ Kicad est un ensemble de quatres logicie - Cvpcb : s??lecteur d'empreintes pour les composants utilis??s dans le circuit - Kicad : gestionnaire de projet. -%prep -%setup -q -n kicad-dev -a 1 -%{__cp} -a kicad-src-extras-2007-07-09/* . -%{__rm} -rf kicad-src-extras-2007-07-09 - -# Convert MSDOS EOL to Unix EOL before applying patches - -for f in 3d-viewer/{3d_struct.h,3d_viewer.h} \ -eeschema/libcmp.h \ -include/{pcbstruct.h,wxstruct.h} \ -kicad/kicad.h \ -pcbnew/{autorout.h,class_cotation.h,class_equipot.h,class_mire.h,class_module.h,class_pcb_text.h,class_text_mod.h,class_track.h,track.cpp} -do - %{__sed} -i -e 's/\r$//' $f -done -%patch0 -p1 +%package doc +Summary: Documentations for kicad +Group: Applications/Engineering +License: GPLv2+ +Requires: %{name} = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + + +%description doc +Documentations and tutorials for kicad in English + + +%package doc-de +Summary: Documentation for Kicad in German +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-de +Documentation and tutorials for Kicad in German + + +%package doc-es +Summary: Documentation for Kicad in Spanish +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-es +Documentation and tutorials for Kicad in Spanish + + +%package doc-fr +Summary: Documentation for Kicad in French +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-fr +Documentation and tutorials for Kicad in French + + +%package doc-hu +Summary: Documentation for Kicad in Hungarian +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-hu +Documentation and tutorials for Kicad in Hungarian + + +%package doc-it +Summary: Documentation for Kicad in Italian +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-it +Documentation and tutorials for Kicad in Italian + + +%package doc-pt +Summary: Documentation for Kicad in Portuguese +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-pt +Documentation and tutorials for Kicad in Portuguese + + +%package doc-ru +Summary: Documentation for Kicad in Russian +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif + +%description doc-ru +Documentation and tutorials for Kicad in Russian + + +%package doc-zh_CN +Summary: Documentation for Kicad in Chinese +Group: Documentation +Requires: %{name}-doc = %{version}-%{release} +%if 0%{?fedora} >= 11 +BuildArch: noarch +%endif -%build +%description doc-zh_CN +Documentation and tutorials for Kicad in Chinese -# These files are not scripts -for f in {copyright,gpl,licendoc,version}.txt -do - %{__chmod} -x $f -done -# Convert MSDOS EOL to Unix EOL -for f in {author,contrib,copyright,doc_conv_orcad*,gpl,licendoc}.txt -do - %{__sed} -i -e 's/\r$//' $f -done +%prep +%setup -q -a 1 -a 2 -for f in help/fr/{contents.hhc,kicad.hhp,cvpcb/cvpcb-fr.html,eeschema/eeschema.html,eeschema/eeschema.pdf,file_formats/file_formats.html,gerbview/gerbview.html,kicad/kicad.html,pcbnew/pcbnew.html} -do - %{__sed} -i -e 's/\r$//' $f -done +#kicad-doc.noarch: W: file-not-utf8 /usr/share/doc/kicad/AUTHORS.txt +iconv -f iso8859-1 -t utf-8 AUTHORS.txt > AUTHORS.conv && mv -f AUTHORS.conv AUTHORS.txt -for f in help/en/{contents.hhc,kicad.hhp,cvpcb/cvpcb-en.html,eeschema/eeschema.html,file_formats/file_formats.html,gerbview/gerbview.html,kicad/kicad.html,pcbnew/pcbnew.html} -do - %{__sed} -i -e 's/\r$//' $f -done -for f in help/es/{contents.hhc,kicad.hhp,cvpcb/cvpcb-es.html,eeschema/eeschema-es.html,file_formats/file_formats-es.html,gerbview/gerbview.html,kicad/kicad-es.html,pcbnew/pcbnew-es.html} -do - %{__sed} -i -e 's/\r$//' $f -done +#multilibs +%ifarch x86_64 sparc64 ppc64 amd64 +%{__sed} -i "s|KICAD_PLUGINS lib/kicad/plugins|KICAD_PLUGINS lib64/kicad/plugins|" CMakeLists.txt +%endif -for f in help/pt/{contents.hhc,kicad.hhp,cvpcb/cvpcb-pt.html,eeschema/eeschema-pt.html,eeschema/eeschema_pt_BR.html,file_formats/file_formats.html,gerbview/gerbview.html,kicad/kicad_pt_BR.html,kicad/kicad-pt.html,pcbnew/pcbnew.html,pcbnew/pcbnew_pt_BR.html} -do - %{__sed} -i -e 's/\r$//' $f -done -for f in help/ru/{contents.hhc,kicad.hhp,eeschema/eeschema_ru.html} -do - %{__sed} -i -e 's/\r$//' $f -done +%build -make -f makefile.gtk %{?_smp_mflags} +# +# Symbols libraries +# +pushd %{name}-library-%{version}/ +%cmake -DCMAKE_BUILD_TYPE=Release . +%{__make} %{?_smp_mflags} VERBOSE=1 +popd -%install -%{__rm} -rf %{buildroot} -install -d %{buildroot}%{_datadir} -install -d %{buildroot}%{_datadir}/%{name} +# +# Core components +# +%cmake -DCMAKE_BUILD_TYPE=Release +%{__make} %{?_smp_mflags} VERBOSE=1 -# install demos files -install -d %{buildroot}%{_datadir}/%{name}/demos -for dir in electric interf_u microwave pic_programmer pspice sonde_xilinx test_xil_95108 video -do - install -d %{buildroot}%{_datadir}/%{name}/demos/${dir} - for f in demos/${dir}/* - do - install -m 644 ${f} %{buildroot}%{_datadir}/%{name}/${f} - done -done -# install help files -install -d %{buildroot}%%{_docdir} -install -d %{buildroot}%{_docdir}/%{name}/ -for dir in en es fr pt -do - install -d %{buildroot}%{_docdir}/%{name}/${dir} - for subdir in cvpcb eeschema file_formats gerbview kicad pcbnew - do - install -d %{buildroot}%{_docdir}/%{name}/${dir}/${subdir} - cd help - install -m 644 ${dir}/kicad.hhp %{buildroot}%{_docdir}/%{name}/${dir}/kicad.hhp - install -m 644 ${dir}/contents.hhc %{buildroot}%{_docdir}/%{name}/${dir}/contents.hhc - for f in ${dir}/${subdir}/* - do - install -m 644 ${f} %{buildroot}%{_docdir}/%{name}/${f} - done - cd .. - done -done +%install +%{__rm} -rf %{buildroot} -# install ru help files -install -d %{buildroot}%%{_docdir} -install -d %{buildroot}%{_docdir}/%{name}/ -for dir in ru -do - install -d %{buildroot}%{_docdir}/%{name}/${dir} - for subdir in eeschema pcbnew - do - install -d %{buildroot}%{_docdir}/%{name}/${dir}/${subdir} - cd help - install -m 644 ${dir}/kicad.hhp %{buildroot}%{_docdir}/%{name}/${dir}/kicad.hhp - install -m 644 ${dir}/contents.hhc %{buildroot}%{_docdir}/%{name}/${dir}/contents.hhc - for f in ${dir}/${subdir}/* - do - install -m 644 ${f} %{buildroot}%{_docdir}/%{name}/${f} - done - cd .. - done -done +%{__make} INSTALL="install -p" DESTDIR=%{buildroot} install -# install librairies -install -d %{buildroot}%{_datadir}/%{name}/library -for f in library/* -do - install -m 644 ${f} %{buildroot}%{_datadir}/%{name}/${f} -done # install localization +%{__rm} -rf %{buildroot}%{_datadir}/%{name}/internat/ install -d %{buildroot}%{_datadir}/locale -cd locale -for dir in de es fr hu it ko pl pt sl +cd internat +for dir in ca cs de es fr hu it ko nl pl pt ru sl sv zh_CN do install -d %{buildroot}%{_datadir}/locale/${dir} install -m 644 ${dir}/%{name}.mo %{buildroot}%{_datadir}/locale/${dir}/%{name}.mo done cd .. -# install modules -install -d %{buildroot}%{_datadir}/%{name}/modules -install -d %{buildroot}%{_datadir}/%{name}/modules/packages3d -for dir in conn_DBxx connectors conn_europe device dil discret divers pga pin_array smd support -do - install -d %{buildroot}%{_datadir}/%{name}/modules/packages3d/${dir} - for f in modules/packages3d/${dir}/* - do - install -m 644 ${f} %{buildroot}%{_datadir}/%{name}/${f} - done -done -for f in modules/*.* -do - install -m 644 ${f} %{buildroot}%{_datadir}/%{name}/${f} -done + +# install desktop +desktop-file-install --vendor=fedora \ + --dir %{buildroot}%{_datadir}/applications \ + --delete-original \ + %{buildroot}%{_datadir}/applications/kicad.desktop + +desktop-file-install --vendor=fedora \ + --dir %{buildroot}%{_datadir}/applications \ + --delete-original \ + %{buildroot}%{_datadir}/applications/eeschema.desktop + + +# Missing requires libraries +%{__cp} -p ./3d-viewer/lib3d-viewer.so %{buildroot}%{_libdir}/%{name} +%{__cp} -p ./bitmaps/libbitmaps.so %{buildroot}%{_libdir}/%{name} +%{__cp} -p ./common/libcommon.so %{buildroot}%{_libdir}/%{name} +%{__cp} -p ./polygon/kbool/src/libkbool.so %{buildroot}%{_libdir}/%{name} +%{__cp} -p ./common/libpcbcommon.so %{buildroot}%{_libdir}/%{name} +%{__cp} -p ./polygon/libpolygon.so %{buildroot}%{_libdir}/%{name} + +# +# Symbols libraries +# +pushd %{name}-library-%{version}/ +%{__make} INSTALL="install -p" DESTDIR=%{buildroot} install +popd # install template install -d %{buildroot}%{_datadir}/%{name}/template install -m 644 template/%{name}.pro %{buildroot}%{_datadir}/%{name}/template -# install binaries -install -d %{buildroot}%{_bindir} -install -d %{buildroot}%{_libdir}/%{name}/plugins -make -f makefile.gtk install DESTDIR=%{buildroot} -# install desktop -mkdir -p %{buildroot}%{_datadir}/applications -desktop-file-install --vendor=fedora \ - --dir %{buildroot}%{_datadir}/applications \ - %{SOURCE2} +# Preparing for documentation pull-ups +%{__rm} -f %{name}-doc-%{version}/doc/help/CMakeLists.txt +%{__rm} -f %{name}-doc-%{version}/doc/help/makefile +%{__rm} -f %{name}-doc-%{version}/doc/tutorials/CMakeLists.txt + +%{__cp} -pr %{name}-doc-%{version}/doc/* %{buildroot}%{_docdir}/%{name} +%{__cp} -pr AUTHORS.txt CHANGELOG* TODO.txt version.txt %{buildroot}%{_docdir}/%{name} -# install icon -mkdir -p %{buildroot}%{_datadir}/pixmaps -install -m 644 kicad_icon.png %{buildroot}%{_datadir}/pixmaps/kicad_icon.png %find_lang %{name} + %post update-desktop-database &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor || : @@ -214,6 +255,7 @@ then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor fi + %postun update-desktop-database &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor || : @@ -222,22 +264,81 @@ then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor fi + %clean %{__rm} -rf %{buildroot} + %files -f %{name}.lang %defattr(-,root,root) -%doc author.txt contrib.txt copyright.txt doc_conv_orcad_to_kicad_spanish.txt -%doc doc_conv_orcad_to_kicad.txt gpl.txt licendoc.txt news.txt version.txt %{_bindir}/* -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/plugins/ +%{_libdir}/%{name} %{_datadir}/%{name}/ -%{_docdir}/%{name}/ %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/pixmaps/kicad_icon.png +%{_datadir}/applications/fedora-eeschema.desktop +%{_datadir}/icons/hicolor/*/mimetypes/application-x-kicad-project.* +%{_datadir}/icons/hicolor/*/apps/%{name}.* +%{_datadir}/mime/packages/%{name}.xml +%{_datadir}/mimelnk/application/x-%{name}-*.desktop + +%files doc +%defattr(-,root,root,-) +%dir %{_docdir}/%{name} +%dir %{_docdir}/%{name}/help/ +%dir %{_docdir}/%{name}/tutorials +%doc %{_docdir}/%{name}/*.txt +%doc %{_docdir}/%{name}/scripts +%doc %{_docdir}/%{name}/contrib +%doc %{_docdir}/%{name}/help/en +%doc %{_docdir}/%{name}/help/file_formats +%doc %{_docdir}/%{name}/tutorials/en + +%files doc-de +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/de +%doc %{_docdir}/%{name}/tutorials/de + +%files doc-es +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/es +%doc %{_docdir}/%{name}/tutorials/es + +%files doc-fr +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/fr +%doc %{_docdir}/%{name}/tutorials/fr + +%files doc-hu +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/tutorials/hu + +%files doc-it +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/it + +%files doc-pt +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/pt + + +%files doc-ru +%defattr(-,root,root,-) +%doc %{_docdir}/%{name}/help/ru +%doc %{_docdir}/%{name}/tutorials/ru + +%files doc-zh_CN +%defattr(-,root,root,-) +#%doc %{_docdir}/%{name}/help/zh_CN +%doc %{_docdir}/%{name}/tutorials/zh_CN + %changelog +* Tue Jul 7 2009 Chitlesh Goorah - 2009.07.07-1.rev1863 +- svn rev 1863 +- documentation splitted into multiple packages +- libraries are now taken directly from SVN rather than from older releases +- build changed to cmake based + * Wed Feb 25 2009 Fedora Release Engineering - 2007.07.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kicad/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 4 Oct 2007 13:22:05 -0000 1.5 +++ sources 8 Jul 2009 08:35:38 -0000 1.6 @@ -1,2 +1,3 @@ -bf9aaf5a85851fe5250d6c53f4b4c6be kicad-sources--2007-07-09.zip -02389cd2983c834c8a4a5a1420513be8 kicad-src-extras-2007-07-09.tar.bz2 +b7df0a960ff269205038b99131bfdbc0 kicad-2009.07.07.tar.bz2 +396786f9595a8fe90479d764492a7726 kicad-doc-2009.07.07.tar.bz2 +43a40c3f52cd74632eb31540e95952a8 kicad-library-2009.07.07.tar.bz2 --- kicad-2007.07.09.destdir.locale.rpmoptflags.diff DELETED --- --- kicad.desktop DELETED --- From denis at fedoraproject.org Wed Jul 8 08:36:02 2009 From: denis at fedoraproject.org (Denis Leroy) Date: Wed, 8 Jul 2009 08:36:02 +0000 (UTC) Subject: rpms/cluttermm/devel .cvsignore, 1.5, 1.6 cluttermm.spec, 1.6, 1.7 sources, 1.5, 1.6 Message-ID: <20090708083602.CDA5411C02C4@cvs1.fedora.phx.redhat.com> Author: denis Update of /cvs/pkgs/rpms/cluttermm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19776 Modified Files: .cvsignore cluttermm.spec sources Log Message: - Update to upstream 0.9.4 - API update to 0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cluttermm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 23 Feb 2009 11:15:04 -0000 1.5 +++ .cvsignore 8 Jul 2009 08:35:32 -0000 1.6 @@ -1 +1 @@ -cluttermm-0.7.5.tar.bz2 +cluttermm-0.9.4.tar.bz2 Index: cluttermm.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluttermm/devel/cluttermm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cluttermm.spec 24 Feb 2009 08:09:08 -0000 1.6 +++ cluttermm.spec 8 Jul 2009 08:35:32 -0000 1.7 @@ -1,16 +1,16 @@ Name: cluttermm -Version: 0.7.5 -Release: 2%{?dist} +Version: 0.9.4 +Release: 1%{?dist} Summary: C++ wrapper for clutter library Group: System Environment/Libraries License: LGPLv2+ URL: http://www.gtkmm.org/ -Source0: http://ftp.gnome.org/pub/GNOME/sources/cluttermm/0.7/%{name}-%{version}.tar.bz2 +Source0: http://ftp.gnome.org/pub/GNOME/sources/cluttermm/0.9/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: clutter-devel +BuildRequires: clutter-devel >= 0.9.4 BuildRequires: glibmm24-devel >= 2.14 BuildRequires: pangomm-devel >= 2.12 BuildRequires: cairomm-devel @@ -52,7 +52,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' # Remove files related to code generation -rm -rf $RPM_BUILD_ROOT%{_libdir}/cluttermm-0.8 +rm -rf $RPM_BUILD_ROOT%{_libdir}/cluttermm-0.9 %clean @@ -68,18 +68,22 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/libcluttermm-0.8.so.* +%{_libdir}/libcluttermm-0.9.so.* %files devel %defattr(-, root, root, -) %doc docs/reference/html/ examples/test-actors.cc -%{_includedir}/cluttermm-0.8 -%{_libdir}/libcluttermm-0.8.so -%{_libdir}/pkgconfig/cluttermm-0.8.pc +%{_includedir}/cluttermm-0.9 +%{_libdir}/libcluttermm-0.9.so +%{_libdir}/pkgconfig/cluttermm-0.9.pc %changelog +* Wed Jul 8 2009 Denis Leroy - 0.9.4-1 +- Update to upstream 0.9.4 +- API update to 0.9 + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluttermm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Feb 2009 11:15:05 -0000 1.5 +++ sources 8 Jul 2009 08:35:32 -0000 1.6 @@ -1 +1 @@ -d29f7b04eb7873dba81170b8cec01087 cluttermm-0.7.5.tar.bz2 +4ab5d370a0af13e026003e473d8dc187 cluttermm-0.9.4.tar.bz2 From denis at fedoraproject.org Wed Jul 8 08:44:41 2009 From: denis at fedoraproject.org (Denis Leroy) Date: Wed, 8 Jul 2009 08:44:41 +0000 (UTC) Subject: rpms/clutter-gtkmm/devel .cvsignore, 1.3, 1.4 clutter-gtkmm.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090708084441.26A2911C02C4@cvs1.fedora.phx.redhat.com> Author: denis Update of /cvs/pkgs/rpms/clutter-gtkmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20868 Modified Files: .cvsignore clutter-gtkmm.spec sources Log Message: - Update to upstream 0.9.4 - API update to 0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtkmm/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Feb 2009 11:45:41 -0000 1.3 +++ .cvsignore 8 Jul 2009 08:44:40 -0000 1.4 @@ -1 +1 @@ -clutter-gtkmm-0.7.4.tar.bz2 +clutter-gtkmm-0.9.4.tar.bz2 Index: clutter-gtkmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtkmm/devel/clutter-gtkmm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- clutter-gtkmm.spec 24 Feb 2009 08:08:16 -0000 1.3 +++ clutter-gtkmm.spec 8 Jul 2009 08:44:40 -0000 1.4 @@ -1,19 +1,19 @@ -%define api_ver 0.8 +%define api_ver 0.9 Name: clutter-gtkmm -Version: 0.7.4 -Release: 2%{?dist} +Version: 0.9.4 +Release: 1%{?dist} Summary: C++ wrapper for clutter-gtk library Group: System Environment/Libraries License: LGPLv2+ URL: http://www.gtkmm.org/ -Source0: http://ftp.gnome.org/pub/GNOME/sources/clutter-gtkmm/0.7/%{name}-%{version}.tar.bz2 +Source0: http://ftp.gnome.org/pub/GNOME/sources/clutter-gtkmm/0.9/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: clutter-gtk-devel -BuildRequires: cluttermm-devel >= 0.7.4 +BuildRequires: clutter-gtk-devel >= 0.9.1 +BuildRequires: cluttermm-devel >= 0.9 BuildRequires: gtkmm24-devel BuildRequires: doxygen graphviz @@ -76,7 +76,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %doc AUTHORS ChangeLog COPYING NEWS README -%{_libdir}/libclutter-gtkmm-0.8.so.* +%{_libdir}/libclutter-gtkmm-%{api_ver}.so.* %files devel @@ -88,6 +88,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Denis Leroy - 0.9.4-1 +- Update to upstream 0.9.4 +- API update to 0.9 + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtkmm/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Feb 2009 11:45:42 -0000 1.3 +++ sources 8 Jul 2009 08:44:40 -0000 1.4 @@ -1 +1 @@ -1508863fdadf420b126def2a6c8a28f3 clutter-gtkmm-0.7.4.tar.bz2 +14f782f2461ca7989e6f2f75f8aa4dc8 clutter-gtkmm-0.9.4.tar.bz2 From mtasaka at fedoraproject.org Wed Jul 8 08:55:36 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 8 Jul 2009 08:55:36 +0000 (UTC) Subject: rpms/uget/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 uget.spec, 1.9, 1.10 Message-ID: <20090708085536.6A4F811C02C4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22005/devel Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Jun 2009 17:59:17 -0000 1.7 +++ .cvsignore 8 Jul 2009 08:55:36 -0000 1.8 @@ -1 +1 @@ -uget-1.4.8.5.tar.gz +uget-1.4.9.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 14 Jun 2009 17:59:17 -0000 1.7 +++ sources 8 Jul 2009 08:55:36 -0000 1.8 @@ -1 +1 @@ -a57f5f1d05f0bffb04511696004b84cd uget-1.4.8.5.tar.gz +e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/devel/uget.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- uget.spec 16 Jun 2009 17:47:28 -0000 1.9 +++ uget.spec 8 Jul 2009 08:55:36 -0000 1.10 @@ -1,6 +1,6 @@ Name: uget -Version: 1.4.8.5 -Release: 2%{?dist} +Version: 1.4.9 +Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl Group: Applications/Internet @@ -73,6 +73,9 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +- 1.4.9 + * Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 - F-12: Rebuild to create valid debuginfo rpm again (ref: 505774) From mtasaka at fedoraproject.org Wed Jul 8 08:56:05 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 8 Jul 2009 08:56:05 +0000 (UTC) Subject: rpms/uget/F-10 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 uget.spec, 1.8, 1.9 Message-ID: <20090708085605.EC1C911C02C4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22005/F-10 Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Jun 2009 17:59:15 -0000 1.7 +++ .cvsignore 8 Jul 2009 08:55:35 -0000 1.8 @@ -1 +1 @@ -uget-1.4.8.5.tar.gz +uget-1.4.9.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 14 Jun 2009 17:59:16 -0000 1.7 +++ sources 8 Jul 2009 08:55:35 -0000 1.8 @@ -1 +1 @@ -a57f5f1d05f0bffb04511696004b84cd uget-1.4.8.5.tar.gz +e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/uget.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- uget.spec 14 Jun 2009 18:26:56 -0000 1.8 +++ uget.spec 8 Jul 2009 08:55:35 -0000 1.9 @@ -1,5 +1,5 @@ Name: uget -Version: 1.4.8.5 +Version: 1.4.9 Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl @@ -73,6 +73,12 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +- 1.4.9 + +* Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 +- F-12: Rebuild to create valid debuginfo rpm again (ref: 505774) + * Mon Jun 15 2009 Mamoru Tasaka - 1.4.8.5-1 - 1.4.8.5 From mtasaka at fedoraproject.org Wed Jul 8 08:56:06 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 8 Jul 2009 08:56:06 +0000 (UTC) Subject: rpms/uget/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 uget.spec, 1.8, 1.9 Message-ID: <20090708085606.28E6111C02C8@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22005/F-11 Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Jun 2009 17:59:17 -0000 1.7 +++ .cvsignore 8 Jul 2009 08:55:35 -0000 1.8 @@ -1 +1 @@ -uget-1.4.8.5.tar.gz +uget-1.4.9.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 14 Jun 2009 17:59:17 -0000 1.7 +++ sources 8 Jul 2009 08:55:35 -0000 1.8 @@ -1 +1 @@ -a57f5f1d05f0bffb04511696004b84cd uget-1.4.8.5.tar.gz +e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/uget.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- uget.spec 14 Jun 2009 18:26:57 -0000 1.8 +++ uget.spec 8 Jul 2009 08:55:36 -0000 1.9 @@ -1,5 +1,5 @@ Name: uget -Version: 1.4.8.5 +Version: 1.4.9 Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl @@ -73,6 +73,12 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +- 1.4.9 + +* Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 +- F-12: Rebuild to create valid debuginfo rpm again (ref: 505774) + * Mon Jun 15 2009 Mamoru Tasaka - 1.4.8.5-1 - 1.4.8.5 From mef at fedoraproject.org Wed Jul 8 09:25:18 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 09:25:18 +0000 (UTC) Subject: rpms/ice/F-11 ice-3.3.1-patch1.txt, NONE, 1.1 patch-rand.txt, NONE, 1.1 slice.patch.txt, NONE, 1.1 ice.spec, 1.30, 1.31 Message-ID: <20090708092518.C344711C02C8@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28220/F-11 Modified Files: ice.spec Added Files: ice-3.3.1-patch1.txt patch-rand.txt slice.patch.txt Log Message: - Update F10 to 3.3.1 - Include all upstream 3.3.1 patches --- NEW FILE ice-3.3.1-patch1.txt --- diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 4680c57..de13194 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -562,7 +562,7 @@ Slice::GeneratorBase::printMetaData(const ContainedPtr& p) } void -Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated) +Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated, bool forIndex) { ContainerPtr container = ContainerPtr::dynamicCast(p); if(!container) @@ -575,7 +575,7 @@ Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& mo container = module; } - string summary = getComment(p, container, true, module); + string summary = getComment(p, container, true, forIndex); _out << nl << summary; if(deprecated) @@ -2042,7 +2042,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2071,7 +2071,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2092,7 +2092,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2115,7 +2115,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2138,7 +2138,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2161,7 +2161,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2184,7 +2184,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2207,7 +2207,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2230,7 +2230,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2427,7 +2427,7 @@ Slice::ExceptionGenerator::generate(const ExceptionPtr& e) end(); start("dd"); string metadata; - printSummary(*q, e, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, e, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2557,7 +2557,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2578,7 +2578,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2739,7 +2739,7 @@ Slice::StructGenerator::generate(const StructPtr& s) end(); start("dd"); string metadata; - printSummary(*q, s, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, s, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); diff --git a/cpp/src/slice2html/Gen.h b/cpp/src/slice2html/Gen.h index 776035b..cacdd58 100644 --- a/cpp/src/slice2html/Gen.h +++ b/cpp/src/slice2html/Gen.h @@ -52,7 +52,7 @@ protected: void printComment(const ContainedPtr&, const ContainerPtr&, const ::std::string&, bool = false); void printMetaData(const ContainedPtr&); - void printSummary(const ContainedPtr&, const ContainerPtr&, bool); + void printSummary(const ContainedPtr&, const ContainerPtr&, bool, bool); void printHeaderFooter(const ContainedPtr&); void printSearch(); --- NEW FILE patch-rand.txt --- diff --git a/cs/src/Ice/ConnectionFactory.cs b/cs/src/Ice/ConnectionFactory.cs index 564d718..d6ed702 100644 --- a/cs/src/Ice/ConnectionFactory.cs +++ b/cs/src/Ice/ConnectionFactory.cs @@ -136,16 +136,20 @@ namespace IceInternal // if(selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) - { - int r = rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + lock(rand_) + { + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } + } } @@ -1043,15 +1047,18 @@ namespace IceInternal // if(_selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) + lock(rand_) { - int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } } } diff --git a/cs/src/Ice/Reference.cs b/cs/src/Ice/Reference.cs index eea221f..88dae69 100644 --- a/cs/src/Ice/Reference.cs +++ b/cs/src/Ice/Reference.cs @@ -1377,15 +1377,18 @@ namespace IceInternal { case Ice.EndpointSelectionType.Random: { - for(int i = 0; i < endpoints.Count - 2; ++i) + lock(rand_) { - int r = rand_.Next(endpoints.Count - i) + i; - Debug.Assert(r >= i && r < endpoints.Count); - if(r != i) + for(int i = 0; i < endpoints.Count - 1; ++i) { - object tmp = endpoints[i]; - endpoints[i] = endpoints[r]; - endpoints[r] = tmp; + int r = rand_.Next(endpoints.Count - i) + i; + Debug.Assert(r >= i && r < endpoints.Count); + if(r != i) + { + object tmp = endpoints[i]; + endpoints[i] = endpoints[r]; + endpoints[r] = tmp; + } } } break; --- NEW FILE slice.patch.txt --- diff -r -c -N ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp ./cpp/src/Slice/Preprocessor.cpp *** ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp 2009-03-20 15:22:14.000000000 -0230 --- ./cpp/src/Slice/Preprocessor.cpp 2009-05-12 16:18:54.000000000 -0230 *************** *** 46,52 **** Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fileName), _args(args), _cppHandle(0) { --- 46,52 ---- Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fullPath(fileName)), _args(args), _cppHandle(0) { Index: ice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ice/F-11/ice.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- ice.spec 25 Mar 2009 13:59:00 -0000 1.30 +++ ice.spec 8 Jul 2009 09:24:48 -0000 1.31 @@ -4,7 +4,7 @@ Name: ice Version: 3.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Ice base runtime and services Group: System Environment/Libraries @@ -24,6 +24,12 @@ Patch0: Ice-3.3-dont-build-demo- Patch1: Ice-3.3.1-java-build.patch # Remove reference to Windows L&F Patch2: Ice-3.3.1-jgoodies.patch +# http://www.zeroc.com/forums/patches/4275-patch-1-ice-3-3-1-slice2html-creates-bad-links.html +Patch3: ice-3.3.1-patch1.txt +# http://www.zeroc.com/forums/patches/4340-patch-2-ice-3-3-1-slice-compilers-abort.html +Patch4: slice.patch.txt +# http://www.zeroc.com/forums/patches/4423-patch-3-ice-3-3-1-net-only-fix-random-endpoint-selection.html +Patch5: patch-rand.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -164,6 +170,9 @@ The Ice runtime for PHP applications. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 %setup -q -n Ice-rpmbuild-%{version} -T -b 1 %setup -q -n Ice-3.3.0-man-pages -T -b 2 @@ -525,6 +534,13 @@ fi %config(noreplace) %{_sysconfdir}/php.d/ice.ini %changelog +* Wed Jul 8 2009 Mary Ellen Foster - 3.3.1-2 +- Include upstream patches: + - slice2html creates bad links + - slice compilers abort on symlinks and double backslashes + - random endpoint selection in .Net + See http://www.zeroc.com/forums/patches/ for details + * Wed Mar 25 2009 Mary Ellen Foster - 3.3.1-1 - Update to new upstream 3.3.1 release - Includes all previous patches From mef at fedoraproject.org Wed Jul 8 09:25:18 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 09:25:18 +0000 (UTC) Subject: rpms/ice/F-10 Ice-3.3.1-java-build.patch, NONE, 1.1 Ice-3.3.1-jgoodies.patch, NONE, 1.1 Ice-README.Fedora, NONE, 1.1 ice-3.3.1-patch1.txt, NONE, 1.1 patch-rand.txt, NONE, 1.1 slice.patch.txt, NONE, 1.1 .cvsignore, 1.3, 1.4 ice.spec, 1.20, 1.21 sources, 1.3, 1.4 Ice-3.3-dont-build-demo-test.patch, 1.1, NONE Ice-3.3.0-README.Fedora, 1.1, NONE Ice-3.3.0-compression.patch, 1.1, NONE Ice-3.3.0-fix-slice2cpp-slice2freeze.patch, 1.1, NONE Ice-3.3.0-icegrid-assert.patch, 1.1, NONE Ice-3.3.0-icepatch-non-ascii.patch, 1.1, NONE Ice-3.3.0-java-Timer.patch, 1.1, NONE Ice-3.3.0-java-build.patch, 1.1, NONE Ice-3.3.0-jgoodies.patch, 1.1, NONE Ice-3.3.0-preprocess.patch, 1.1, NONE Ice-3.3.0-python-26.patch, 1.1, NONE Ice-3.3.0-registry-crash.patch, 1.1, NONE Ice-3.3.0-retry-intervals.patch, 1.1, NONE Ice-3.3.0-use-db4.7.patch, 1.1, NONE Message-ID: <20090708092518.B40D611C02C4@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28220/F-10 Modified Files: .cvsignore ice.spec sources Added Files: Ice-3.3.1-java-build.patch Ice-3.3.1-jgoodies.patch Ice-README.Fedora ice-3.3.1-patch1.txt patch-rand.txt slice.patch.txt Removed Files: Ice-3.3-dont-build-demo-test.patch Ice-3.3.0-README.Fedora Ice-3.3.0-compression.patch Ice-3.3.0-fix-slice2cpp-slice2freeze.patch Ice-3.3.0-icegrid-assert.patch Ice-3.3.0-icepatch-non-ascii.patch Ice-3.3.0-java-Timer.patch Ice-3.3.0-java-build.patch Ice-3.3.0-jgoodies.patch Ice-3.3.0-preprocess.patch Ice-3.3.0-python-26.patch Ice-3.3.0-registry-crash.patch Ice-3.3.0-retry-intervals.patch Ice-3.3.0-use-db4.7.patch Log Message: - Update F10 to 3.3.1 - Include all upstream 3.3.1 patches Ice-3.3.1-java-build.patch: --- NEW FILE Ice-3.3.1-java-build.patch --- --- Ice-3.3.1/java/build.xml.orig 2009-03-20 18:52:15.000000000 +0100 +++ Ice-3.3.1/java/build.xml 2009-03-25 10:44:00.000000000 +0100 @@ -189,10 +189,6 @@ - - - - @@ -221,17 +217,12 @@ - - - - - + - @@ -289,8 +280,10 @@ + --- Ice-3.3.1/java/config/build.properties.orig 2009-03-20 18:52:15.000000000 +0100 +++ Ice-3.3.1/java/config/build.properties 2009-03-25 10:44:44.000000000 +0100 @@ -36,7 +36,7 @@ # These properties only need to be set if you want to build the # standalone jar for the IceGrid GUI. # -jgoodies.forms = /usr/share/java/forms-1.2.0.jar -jgoodies.looks = /usr/share/java/looks-2.1.4.jar +jgoodies.forms = /usr/share/java/jgoodies-forms.jar +jgoodies.looks = /usr/share/java/jgoodies-looks.jar #jgoodies.forms = C:/Ice-3.3.1-ThirdParty-VC80/lib/forms-1.2.0.jar #jgoodies.looks = C:/Ice-3.3.1-ThirdParty-VC80/lib/looks-2.1.4.jar Ice-3.3.1-jgoodies.patch: --- NEW FILE Ice-3.3.1-jgoodies.patch --- --- Ice-3.3.1/java/src/IceGridGUI/ApplicationPane.java.orig 2009-03-25 11:30:28.000000000 +0100 +++ Ice-3.3.1/java/src/IceGridGUI/ApplicationPane.java 2009-03-25 11:30:51.000000000 +0100 @@ -26,9 +26,6 @@ import javax.swing.tree.TreePath; import javax.swing.tree.TreeSelectionModel; -import com.jgoodies.looks.Options; -import com.jgoodies.looks.plastic.PlasticLookAndFeel; -import com.jgoodies.looks.windows.WindowsLookAndFeel; import com.jgoodies.forms.factories.Borders; import IceGrid.*; --- NEW FILE Ice-README.Fedora --- ====================================================================== The Internet Communications Engine ====================================================================== Ice is a modern alternative to object middleware such as CORBA or COM/DCOM/COM+. It is easy to learn, yet provides a powerful network infrastructure for demanding technical applications. It features an object-oriented specification language, easy to use C++, C#, Java, Python, Ruby, PHP, and Visual Basic mappings, a highly efficient protocol, asynchronous method invocation and dispatch, dynamic transport plug-ins, TCP/IP and UDP/IP support, SSL-based security, a firewall solution, and much more. Ice is available under the terms of the GNU General Public License (GPL) (see LICENSE file). Commercial licenses are available for customers who wish to use Ice with proprietary products. Please contact sales at zeroc.com for more information about licensing Ice. ====================================================================== About this distribution ====================================================================== This distribution is an RPM release of the Ice 3.3.1 run time for Fedora and includes executables for the Ice services, HTML documentation, Slice files, and the C++ runtime libraries. It has been modified from the RPM distribution provided through http://www.zeroc.com/download.html to meet Fedora packaging standards. Additional Ice components are provided in separate RPM packages: - Run time libraries for Java, Python, PHP, Ruby and C# (Mono). These libraries enable you to execute Ice applications. (ice-java, ice-python, ice-php, ice-ruby, ice-csharp) - Development kits for C++, Java, Python, Ruby, and C# (Mono). A development kit is required for building Ice applications using a supported language mapping. (ice-devel, ice-java-devel, ice-python-devel, ice-ruby-devel, ice-csharp-devel) - Sample /etc/init.d scripts. (ice-servers) - The graphical IceGrid administrative tool. (icegrid-gui) These RPMS can all also be installed through yum. ====================================================================== Setting up your environment to use Ice ====================================================================== C++ --- No additional compiler or linker options are required for an RPM installation of the Ice for C++ development kit. Java ---- To use Ice for Java with Java5 or Java6, add Ice.jar to your CLASSPATH, as shown in the following bash command: $ export CLASSPATH=`build-classpath Ice`:$CLASSPATH Note that the Freeze component of Ice for Java requires Berkeley DB. In order to use Freeze, you must add db.jar to your CLASSPATH. In addition, the JVM requires the directory containing the Berkeley DB libraries to be listed in java.library.path, therefore you must add this directory to your LD_LIBRARY_PATH. Assuming you are using the RPM installation of Berkeley DB, the bash command is shown below: $ export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH On a x86_64 system with a 64-bit JVM, the 64-bit Berkeley DB libraries are installed in /usr/lib64, so use instead: $ export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH When using the Ice for Java SSL plugin (IceSSL), you may experience occasional hangs. The most likely reason is that your system's entropy pool is empty. If you have sufficient system privileges, you can solve this issue by editing the following file /jre/lib/security/java.security and changing it to use /dev/urandom instead of /dev/random. If you do not have permission to modify the security file, you can also use the command-line option shown below: $ java -Djava.security.egd=file:/dev/urandom MyClass ... On SuSE Linux Enterprise Server, you may experience occasional hangs the first time an Ice object adapter is activated within a JVM. A work-around is to disable IPv6 support by setting the Java property java.net.preferIPv4Stack to true. For example: $ java -Djava.net.preferIPv4Stack=true MyClass ... For more information on this issue, refer to Sun's bug database: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6483406 Python ------ The RPM installation puts the Python libraries into the correct sitelib directories; there is no need for any additional configuration to use them. C#/Mono ------- The RPM installation adds the C# runtime libraries to the global assembly cache (GAC), so that no changes to your environment are necessary to locate the assemblies. The instructions for running the demos assume that you have configured your kernel to automatically execute the Mono interpreter. To do this, run the following commands as root (replace /usr/bin/mono with the location of your mono interpreter): if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then /sbin/modprobe binfmt_misc mount -t binfmt_misc none /proc/sys/fs/binfmt_misc fi if [ -e /proc/sys/fs/binfmt_misc/register ]; then echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register else echo "No binfmt_misc support" exit 1 fi If you don't want to do this you need to run the executable with mono. For example, $ mono server.exe Ruby ---- The RPM installation puts the Ruby libraries into the correct sitelib directories; there is no need for any additional configuration to use them. PHP --- The Ice extension for PHP is loaded automatically when the interpreter loads the contents of the file /etc/php.d/ice.ini. extension=IcePHP.so You can modify this file to include additional configuration directives, such as those used by the Ice extension. At run time, the PHP interpreter requires the Ice shared libraries as well as the Slice preprocessor (icecpp). You can verify that the Ice extension is installed properly by examining the output of the "php -m" command, or by calling the phpinfo() function from a script. SELinux Notes -------------------------------------------------- SELinux augments the traditional Unix permissions with a number of new features. In particular, SELinux can prevent the httpd daemon from opening network connections and reading files without the proper SELinux types. If you suspect that your IcePHP application does not work due to SELinux restrictions, we recommend that you first try it with SELinux disabled. As root, run: # setenforce 0 to disable SELinux until the next reboot of your computer. If you want to run httpd with IcePHP and SELinux enabled, you must do the following: - Allow httpd to open network connections: # setsebool httpd_can_network_connect=1 (add the -P option to make this setting persistent across reboots) - Make sure any .ice file used by your PHP scripts can be read by httpd. The enclosing directory also needs to be accessible. For example: # chcon -R -t httpd_sys_content_t /opt/MyApp/slice For more information on SELinux, refer to the link below: http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/selinux-guide/ ====================================================================== /etc/init.d scripts ====================================================================== The ice-servers includes the following sample /etc/init.d scripts and associated configuration files: - /etc/init.d/icegridregistry and /etc/icegridregistry.conf - /etc/init.d/icegridnode and /etc/icegridnode.conf - /etc/init.d/glacier2router and /etc/glacier2router.conf This RPM also creates an "iceuser" account to run the services. None of these services are enabled during the RPM installation; you need to manually enable the desired service(s) using the chkconfig command, for example: # chkconfig --add icegridregistry Before doing so, please review the script itself and its associated configuration file. For icegridregistry and icegridnode, you also need to create 'data' directories with the proper permissions (refer to the .conf files). ====================================================================== Using the IceGrid Administrative Console ====================================================================== The Java-based graphical tool for administering IceGrid applications can be run as follows: $ icegridgui Full documentation of this tool is at the following URL: http://www.zeroc.com/doc/latest/IceGridAdmin/ ====================================================================== Demos and documentation ====================================================================== Sample programs are provided in the Ice-3.3.1-demos.tar.gz package, which can be downloaded from the ZeroC web site at http://www.zeroc.com/download.html Please refer to the README.DEMOS file included in that package for more information. See doc/README.html for information on the documentation included with this distribution. ====================================================================== Binary compatibility ====================================================================== Patch releases of Ice are binary compatible. For example, version ..1 is compatible with ..0, so you can run applications compiled with ..0 with the ..1 runtime without having to recompile. With the binary installers, simply uninstall the previous version of Ice and install the new one. Already deployed applications that were compiled against the ..0 runtime will automatically use the ..1 runtime. Note: Under Mono, binary compatibility currently does not work due to issues with Mono. Until this problem in Mono is fixed, you cannot run applications compiled with previous minor versions of Ice against a newer version of the Ice assemblies. For example, an application compiled with version ..0 of Ice cannot run with the ..1 Ice assemblies. [ This file was modified by Mary Ellen Foster from the original README.Linux-RPM distributed by ZeroC. ] --- NEW FILE ice-3.3.1-patch1.txt --- diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 4680c57..de13194 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -562,7 +562,7 @@ Slice::GeneratorBase::printMetaData(const ContainedPtr& p) } void -Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated) +Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated, bool forIndex) { ContainerPtr container = ContainerPtr::dynamicCast(p); if(!container) @@ -575,7 +575,7 @@ Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& mo container = module; } - string summary = getComment(p, container, true, module); + string summary = getComment(p, container, true, forIndex); _out << nl << summary; if(deprecated) @@ -2042,7 +2042,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2071,7 +2071,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2092,7 +2092,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2115,7 +2115,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2138,7 +2138,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2161,7 +2161,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2184,7 +2184,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2207,7 +2207,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2230,7 +2230,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2427,7 +2427,7 @@ Slice::ExceptionGenerator::generate(const ExceptionPtr& e) end(); start("dd"); string metadata; - printSummary(*q, e, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, e, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2557,7 +2557,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2578,7 +2578,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2739,7 +2739,7 @@ Slice::StructGenerator::generate(const StructPtr& s) end(); start("dd"); string metadata; - printSummary(*q, s, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, s, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); diff --git a/cpp/src/slice2html/Gen.h b/cpp/src/slice2html/Gen.h index 776035b..cacdd58 100644 --- a/cpp/src/slice2html/Gen.h +++ b/cpp/src/slice2html/Gen.h @@ -52,7 +52,7 @@ protected: void printComment(const ContainedPtr&, const ContainerPtr&, const ::std::string&, bool = false); void printMetaData(const ContainedPtr&); - void printSummary(const ContainedPtr&, const ContainerPtr&, bool); + void printSummary(const ContainedPtr&, const ContainerPtr&, bool, bool); void printHeaderFooter(const ContainedPtr&); void printSearch(); --- NEW FILE patch-rand.txt --- diff --git a/cs/src/Ice/ConnectionFactory.cs b/cs/src/Ice/ConnectionFactory.cs index 564d718..d6ed702 100644 --- a/cs/src/Ice/ConnectionFactory.cs +++ b/cs/src/Ice/ConnectionFactory.cs @@ -136,16 +136,20 @@ namespace IceInternal // if(selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) - { - int r = rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + lock(rand_) + { + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } + } } @@ -1043,15 +1047,18 @@ namespace IceInternal // if(_selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) + lock(rand_) { - int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } } } diff --git a/cs/src/Ice/Reference.cs b/cs/src/Ice/Reference.cs index eea221f..88dae69 100644 --- a/cs/src/Ice/Reference.cs +++ b/cs/src/Ice/Reference.cs @@ -1377,15 +1377,18 @@ namespace IceInternal { case Ice.EndpointSelectionType.Random: { - for(int i = 0; i < endpoints.Count - 2; ++i) + lock(rand_) { - int r = rand_.Next(endpoints.Count - i) + i; - Debug.Assert(r >= i && r < endpoints.Count); - if(r != i) + for(int i = 0; i < endpoints.Count - 1; ++i) { - object tmp = endpoints[i]; - endpoints[i] = endpoints[r]; - endpoints[r] = tmp; + int r = rand_.Next(endpoints.Count - i) + i; + Debug.Assert(r >= i && r < endpoints.Count); + if(r != i) + { + object tmp = endpoints[i]; + endpoints[i] = endpoints[r]; + endpoints[r] = tmp; + } } } break; --- NEW FILE slice.patch.txt --- diff -r -c -N ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp ./cpp/src/Slice/Preprocessor.cpp *** ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp 2009-03-20 15:22:14.000000000 -0230 --- ./cpp/src/Slice/Preprocessor.cpp 2009-05-12 16:18:54.000000000 -0230 *************** *** 46,52 **** Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fileName), _args(args), _cppHandle(0) { --- 46,52 ---- Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fullPath(fileName)), _args(args), _cppHandle(0) { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ice/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 9 Jun 2008 15:29:56 -0000 1.3 +++ .cvsignore 8 Jul 2009 09:24:47 -0000 1.4 @@ -1,3 +1,3 @@ -Ice-3.3.0.tar.gz -Ice-rpmbuild-3.3.0.tar.gz +Ice-3.3.1.tar.gz +Ice-rpmbuild-3.3.1.tar.gz Ice-3.3.0-man-pages.tbz Index: ice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ice/F-10/ice.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ice.spec 10 Jan 2009 15:50:40 -0000 1.20 +++ ice.spec 8 Jul 2009 09:24:48 -0000 1.21 @@ -3,50 +3,38 @@ %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')} Name: ice -Version: 3.3.0 -Release: 9%{?dist} +Version: 3.3.1 +Release: 2%{?dist} Summary: The Ice base runtime and services Group: System Environment/Libraries License: GPLv2 with exceptions URL: http://www.zeroc.com/ Source0: http://www.zeroc.com/download/Ice/3.3/Ice-%{version}.tar.gz +# Extracted from http://zeroc.com/download/Ice/3.3/ice-3.3.1-1.src.rpm Source1: Ice-rpmbuild-%{version}.tar.gz # Man pages courtesy of Francisco Moya's Debian packages -Source2: Ice-%{version}-man-pages.tbz +Source2: Ice-3.3.0-man-pages.tbz Source8: icegridgui Source9: IceGridAdmin.desktop -Source10: Ice-%{version}-README.Fedora +Source10: Ice-README.Fedora # Don't build the demo or test directories Patch0: Ice-3.3-dont-build-demo-test.patch # Don't put manifest in jar; don't build demo or test; use system jgoodies -Patch1: Ice-3.3.0-java-build.patch -# Don't include the Windows L&F -Patch2: Ice-3.3.0-jgoodies.patch -# Move the TimerTask to its own source file -Patch3: Ice-3.3.0-java-Timer.patch -# From http://www.zeroc.com/forums/patches/3798-patch-1-ice-3-3-0-fix-slice2cpp-slice2freeze.html -Patch4: Ice-3.3.0-fix-slice2cpp-slice2freeze.patch -# Use the new DB4 methods -Patch5: Ice-3.3.0-use-db4.7.patch -# Also allow Python 2.6 -Patch6: Ice-3.3.0-python-26.patch -# From http://www.zeroc.com/forums/patches/3895-patch-3-ice-3-3-0-c-compression-setting-not-always-honored.html -Patch7: Ice-3.3.0-compression.patch -# From http://www.zeroc.com/forums/patches/3911-patch-4-ice-3-3-0-slice-translators-directory-write-access.html -Patch8: Ice-3.3.0-preprocess.patch -# From http://www.zeroc.com/forums/patches/3982-patch-6-ice-3-3-0-icegrid-fixes-potential-registry-crash.html -Patch9: Ice-3.3.0-registry-crash.patch -# From http://www.zeroc.com/forums/patches/4024-patch-7-ice-3-3-0-retry-bug-if-ice-retryintervals-set.html -Patch10: Ice-3.3.0-retry-intervals.patch -# From http://www.zeroc.com/forums/patches/4029-patch-8-ice-3-3-0-icepatch2-non-ascii-file-names.html -Patch11: Ice-3.3.0-icepatch-non-ascii.patch -# From http://www.zeroc.com/forums/patches/4076-patch-9-ice-3-3-0-icegrid-fixes-assert-when-application-synced-concurrently.html -Patch12: Ice-3.3.0-icegrid-assert.patch +Patch1: Ice-3.3.1-java-build.patch +# Remove reference to Windows L&F +Patch2: Ice-3.3.1-jgoodies.patch +# http://www.zeroc.com/forums/patches/4275-patch-1-ice-3-3-1-slice2html-creates-bad-links.html +Patch3: ice-3.3.1-patch1.txt +# http://www.zeroc.com/forums/patches/4340-patch-2-ice-3-3-1-slice-compilers-abort.html +Patch4: slice.patch.txt +# http://www.zeroc.com/forums/patches/4423-patch-3-ice-3-3-1-net-only-fix-random-endpoint-selection.html +Patch5: patch-rand.txt + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# Ice doesn't officially support this architecture at all -# no mono on sparc64 +# Ice doesn't officially support ppc64 at all +# sparc64 doesnt have mono ExcludeArch: ppc64 sparc64 # Some file suffixes we need to grab the right stuff for the file lists @@ -61,7 +49,7 @@ BuildRequires: mono-core, mono-devel BuildRequires: libmcpp-devel >= 2.7.1 BuildRequires: dos2unix -BuildRequires: java-devel >= 1.5.0 +BuildRequires: java-1.6.0-openjdk-devel BuildRequires: jgoodies-forms, jgoodies-looks BuildRequires: /usr/bin/convert @@ -184,22 +172,13 @@ The Ice runtime for PHP applications. %patch2 -p1 %patch3 -p1 %patch4 -p1 -%if 0%{?fedora} >= 10 %patch5 -p1 -%endif -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 %setup -q -n Ice-rpmbuild-%{version} -T -b 1 -%setup -q -n Ice-%{version}-man-pages -T -b 2 +%setup -q -n Ice-3.3.0-man-pages -T -b 2 %build # Set the CLASSPATH correctly for the Java compile -export CLASSPATH=`build-classpath db jgoodies-forms jgoodies-looks ant` +export CLASSPATH=`build-classpath db jgoodies-forms jgoodies-looks` # Compile the main Ice runtime cd ${RPM_BUILD_DIR}/Ice-%{version} @@ -279,7 +258,7 @@ mv $RPM_BUILD_ROOT/help/IceGridAdmin $RP # Copy the man pages into the correct directory mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1 -cp -p $RPM_BUILD_DIR/Ice-%{version}-man-pages/*.1 $RPM_BUILD_ROOT%{_mandir}/man1 +cp -p $RPM_BUILD_DIR/Ice-3.3.0-man-pages/*.1 $RPM_BUILD_ROOT%{_mandir}/man1 # Fix the encoding and line-endings of all the IceGridAdmin documentation files cd $RPM_BUILD_ROOT%{_defaultdocdir}/Ice-%{version}/IceGridAdmin @@ -555,6 +534,19 @@ fi %config(noreplace) %{_sysconfdir}/php.d/ice.ini %changelog +* Wed Jul 8 2009 Mary Ellen Foster - 3.3.1-2 +- Update to new upstream 3.3.1 release + - Includes all previous patches + - Support for serializable Java and .NET types in your Slice definitions + - Ability to use Ice for Java in an applet and to load IceSSL files, such + as keystores, from class path resources +- Details at http://www.zeroc.com/download/Ice/3.3/Ice-3.3.1-RELEASE_NOTES +- Include upstream patches: + - slice2html creates bad links + - slice compilers abort on symlinks and double backslashes + - random endpoint selection in .Net + See http://www.zeroc.com/forums/patches/ for details + * Sat Jan 10 2009 Dennis Gilmore - 3.3.0-9 - ExcludeArch sparc64 no mono there Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ice/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 9 Jun 2008 15:29:56 -0000 1.3 +++ sources 8 Jul 2009 09:24:48 -0000 1.4 @@ -1,3 +1,3 @@ -0500306d9cdbc0fbb553fbb529de557a Ice-3.3.0.tar.gz -a2ec3283dc17feb2d1089391e369f838 Ice-rpmbuild-3.3.0.tar.gz +1f37dfcec4662fcde030553fb447d064 Ice-3.3.1.tar.gz +62682892ba9e42f0f6effcd8a78b00d4 Ice-rpmbuild-3.3.1.tar.gz c6c17ee1be2e6b615af5b40edae88b75 Ice-3.3.0-man-pages.tbz --- Ice-3.3-dont-build-demo-test.patch DELETED --- --- Ice-3.3.0-README.Fedora DELETED --- --- Ice-3.3.0-compression.patch DELETED --- --- Ice-3.3.0-fix-slice2cpp-slice2freeze.patch DELETED --- --- Ice-3.3.0-icegrid-assert.patch DELETED --- --- Ice-3.3.0-icepatch-non-ascii.patch DELETED --- --- Ice-3.3.0-java-Timer.patch DELETED --- --- Ice-3.3.0-java-build.patch DELETED --- --- Ice-3.3.0-jgoodies.patch DELETED --- --- Ice-3.3.0-preprocess.patch DELETED --- --- Ice-3.3.0-python-26.patch DELETED --- --- Ice-3.3.0-registry-crash.patch DELETED --- --- Ice-3.3.0-retry-intervals.patch DELETED --- --- Ice-3.3.0-use-db4.7.patch DELETED --- From mef at fedoraproject.org Wed Jul 8 09:25:18 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 09:25:18 +0000 (UTC) Subject: rpms/ice/devel ice-3.3.1-patch1.txt, NONE, 1.1 patch-rand.txt, NONE, 1.1 slice.patch.txt, NONE, 1.1 ice.spec, 1.30, 1.31 Message-ID: <20090708092518.EEF7411C02C4@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28220/devel Modified Files: ice.spec Added Files: ice-3.3.1-patch1.txt patch-rand.txt slice.patch.txt Log Message: - Update F10 to 3.3.1 - Include all upstream 3.3.1 patches --- NEW FILE ice-3.3.1-patch1.txt --- diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 4680c57..de13194 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -562,7 +562,7 @@ Slice::GeneratorBase::printMetaData(const ContainedPtr& p) } void -Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated) +Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& module, bool deprecated, bool forIndex) { ContainerPtr container = ContainerPtr::dynamicCast(p); if(!container) @@ -575,7 +575,7 @@ Slice::GeneratorBase::printSummary(const ContainedPtr& p, const ContainerPtr& mo container = module; } - string summary = getComment(p, container, true, module); + string summary = getComment(p, container, true, forIndex); _out << nl << summary; if(deprecated) @@ -2042,7 +2042,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2071,7 +2071,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2092,7 +2092,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2115,7 +2115,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2138,7 +2138,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2161,7 +2161,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2184,7 +2184,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2207,7 +2207,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2230,7 +2230,7 @@ Slice::ModuleGenerator::visitContainer(const ContainerPtr& p) end(); start("dd"); string metadata; - printSummary(*q, p, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, p, (*q)->findMetaData("deprecate", metadata), true); end(); } end(); @@ -2427,7 +2427,7 @@ Slice::ExceptionGenerator::generate(const ExceptionPtr& e) end(); start("dd"); string metadata; - printSummary(*q, e, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, e, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2557,7 +2557,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2578,7 +2578,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) end(); start("dd"); string metadata; - printSummary(*q, c, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, c, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); @@ -2739,7 +2739,7 @@ Slice::StructGenerator::generate(const StructPtr& s) end(); start("dd"); string metadata; - printSummary(*q, s, (*q)->findMetaData("deprecate", metadata)); + printSummary(*q, s, (*q)->findMetaData("deprecate", metadata), false); end(); } end(); diff --git a/cpp/src/slice2html/Gen.h b/cpp/src/slice2html/Gen.h index 776035b..cacdd58 100644 --- a/cpp/src/slice2html/Gen.h +++ b/cpp/src/slice2html/Gen.h @@ -52,7 +52,7 @@ protected: void printComment(const ContainedPtr&, const ContainerPtr&, const ::std::string&, bool = false); void printMetaData(const ContainedPtr&); - void printSummary(const ContainedPtr&, const ContainerPtr&, bool); + void printSummary(const ContainedPtr&, const ContainerPtr&, bool, bool); void printHeaderFooter(const ContainedPtr&); void printSearch(); --- NEW FILE patch-rand.txt --- diff --git a/cs/src/Ice/ConnectionFactory.cs b/cs/src/Ice/ConnectionFactory.cs index 564d718..d6ed702 100644 --- a/cs/src/Ice/ConnectionFactory.cs +++ b/cs/src/Ice/ConnectionFactory.cs @@ -136,16 +136,20 @@ namespace IceInternal // if(selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) - { - int r = rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + lock(rand_) + { + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } + } } @@ -1043,15 +1047,18 @@ namespace IceInternal // if(_selType == Ice.EndpointSelectionType.Random) { - for(int j = 0; j < cons.Count - 2; ++j) + lock(rand_) { - int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; - Debug.Assert(r >= j && r < cons.Count); - if(r != j) + for(int j = 0; j < cons.Count - 1; ++j) { - Connector tmp = cons[j]; - cons[j] = cons[r]; - cons[r] = tmp; + int r = OutgoingConnectionFactory.rand_.Next(cons.Count - j) + j; + Debug.Assert(r >= j && r < cons.Count); + if(r != j) + { + Connector tmp = cons[j]; + cons[j] = cons[r]; + cons[r] = tmp; + } } } } diff --git a/cs/src/Ice/Reference.cs b/cs/src/Ice/Reference.cs index eea221f..88dae69 100644 --- a/cs/src/Ice/Reference.cs +++ b/cs/src/Ice/Reference.cs @@ -1377,15 +1377,18 @@ namespace IceInternal { case Ice.EndpointSelectionType.Random: { - for(int i = 0; i < endpoints.Count - 2; ++i) + lock(rand_) { - int r = rand_.Next(endpoints.Count - i) + i; - Debug.Assert(r >= i && r < endpoints.Count); - if(r != i) + for(int i = 0; i < endpoints.Count - 1; ++i) { - object tmp = endpoints[i]; - endpoints[i] = endpoints[r]; - endpoints[r] = tmp; + int r = rand_.Next(endpoints.Count - i) + i; + Debug.Assert(r >= i && r < endpoints.Count); + if(r != i) + { + object tmp = endpoints[i]; + endpoints[i] = endpoints[r]; + endpoints[r] = tmp; + } } } break; --- NEW FILE slice.patch.txt --- diff -r -c -N ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp ./cpp/src/Slice/Preprocessor.cpp *** ../Ice-3.3.1-old/cpp/src/Slice/Preprocessor.cpp 2009-03-20 15:22:14.000000000 -0230 --- ./cpp/src/Slice/Preprocessor.cpp 2009-05-12 16:18:54.000000000 -0230 *************** *** 46,52 **** Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fileName), _args(args), _cppHandle(0) { --- 46,52 ---- Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector& args) : _path(path), ! _fileName(fullPath(fileName)), _args(args), _cppHandle(0) { Index: ice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ice/devel/ice.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- ice.spec 25 Mar 2009 13:59:00 -0000 1.30 +++ ice.spec 8 Jul 2009 09:24:48 -0000 1.31 @@ -4,7 +4,7 @@ Name: ice Version: 3.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Ice base runtime and services Group: System Environment/Libraries @@ -24,6 +24,12 @@ Patch0: Ice-3.3-dont-build-demo- Patch1: Ice-3.3.1-java-build.patch # Remove reference to Windows L&F Patch2: Ice-3.3.1-jgoodies.patch +# http://www.zeroc.com/forums/patches/4275-patch-1-ice-3-3-1-slice2html-creates-bad-links.html +Patch3: ice-3.3.1-patch1.txt +# http://www.zeroc.com/forums/patches/4340-patch-2-ice-3-3-1-slice-compilers-abort.html +Patch4: slice.patch.txt +# http://www.zeroc.com/forums/patches/4423-patch-3-ice-3-3-1-net-only-fix-random-endpoint-selection.html +Patch5: patch-rand.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -164,6 +170,9 @@ The Ice runtime for PHP applications. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 %setup -q -n Ice-rpmbuild-%{version} -T -b 1 %setup -q -n Ice-3.3.0-man-pages -T -b 2 @@ -525,6 +534,13 @@ fi %config(noreplace) %{_sysconfdir}/php.d/ice.ini %changelog +* Wed Jul 8 2009 Mary Ellen Foster - 3.3.1-2 +- Include upstream patches: + - slice2html creates bad links + - slice compilers abort on symlinks and double backslashes + - random endpoint selection in .Net + See http://www.zeroc.com/forums/patches/ for details + * Wed Mar 25 2009 Mary Ellen Foster - 3.3.1-1 - Update to new upstream 3.3.1 release - Includes all previous patches From mef at fedoraproject.org Wed Jul 8 09:26:13 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 09:26:13 +0000 (UTC) Subject: rpms/ice/F-10 Ice-3.3-dont-build-demo-test.patch,1.2,1.3 Message-ID: <20090708092613.C024311C02C4@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28650/F-10 Added Files: Ice-3.3-dont-build-demo-test.patch Log Message: Re-added accidentally removed patch Ice-3.3-dont-build-demo-test.patch: Index: Ice-3.3-dont-build-demo-test.patch =================================================================== RCS file: Ice-3.3-dont-build-demo-test.patch diff -N Ice-3.3-dont-build-demo-test.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Ice-3.3-dont-build-demo-test.patch 8 Jul 2009 09:26:13 -0000 1.3 @@ -0,0 +1,24 @@ +diff -ur Ice-3.3.0.orig/cpp/Makefile Ice-3.3.0/cpp/Makefile +--- Ice-3.3.0.orig/cpp/Makefile 2008-05-16 18:24:00.000000000 +0100 ++++ Ice-3.3.0/cpp/Makefile 2008-05-21 11:18:17.000000000 +0100 +@@ -11,7 +11,7 @@ + + include $(top_srcdir)/config/Make.rules + +-SUBDIRS = config src include test demo ++SUBDIRS = config src include + + INSTALL_SUBDIRS = $(install_bindir) $(install_libdir) $(install_includedir) $(install_configdir) + +diff -ur Ice-3.3.0.orig/cs/Makefile Ice-3.3.0/cs/Makefile +--- Ice-3.3.0.orig/cs/Makefile 2008-05-16 18:24:01.000000000 +0100 ++++ Ice-3.3.0/cs/Makefile 2008-05-21 11:18:22.000000000 +0100 +@@ -11,7 +11,7 @@ + + include $(top_srcdir)/config/Make.rules.cs + +-SUBDIRS = src test demo ++SUBDIRS = src + + install:: install-common + @if test ! -d $(install_bindir) ; \ From caolanm at fedoraproject.org Wed Jul 8 09:47:30 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:47:30 +0000 (UTC) Subject: rpms/mythes-sk/devel mythes-sk.spec,1.12,1.13 sources,1.10,1.11 Message-ID: <20090708094730.10DAA11C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1530 Modified Files: mythes-sk.spec sources Log Message: latest version Index: mythes-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sk/devel/mythes-sk.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mythes-sk.spec 8 Jun 2009 07:51:38 -0000 1.12 +++ mythes-sk.spec 8 Jul 2009 09:47:29 -0000 1.13 @@ -1,6 +1,6 @@ Name: mythes-sk Summary: Slovak thesaurus -%define upstreamid 20090607 +%define upstreamid 20090707 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://www.sk-spell.sk.cx/thesaurus/download/OOo-Thesaurus2-sk_SK.zip @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Wed Jul 08 2009 Caolan McNamara - 0.20090707-1 +- latest version + * Mon Jun 08 2009 Caolan McNamara - 0.20090607-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sk/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 8 Jun 2009 07:51:39 -0000 1.10 +++ sources 8 Jul 2009 09:47:29 -0000 1.11 @@ -1 +1 @@ -b6b7de455e1f918c88579801fa285f5a OOo-Thesaurus2-sk_SK.zip +180d5a62c20958b7a8a8bae89f1d1b9a OOo-Thesaurus2-sk_SK.zip From caolanm at fedoraproject.org Wed Jul 8 09:49:23 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:49:23 +0000 (UTC) Subject: rpms/mythes-de/devel mythes-de.spec,1.22,1.23 sources,1.20,1.21 Message-ID: <20090708094923.5447211C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1942 Modified Files: mythes-de.spec sources Log Message: latest version Index: mythes-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-de/devel/mythes-de.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mythes-de.spec 8 Jun 2009 07:49:42 -0000 1.22 +++ mythes-de.spec 8 Jul 2009 09:48:53 -0000 1.23 @@ -1,6 +1,6 @@ Name: mythes-de Summary: German thesaurus -%define upstreamid 20090608 +%define upstreamid 20090708 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://www.openthesaurus.de/download/thes_de_DE_v2.zip @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 +- latest version + * Mon Jun 08 2009 Caolan McNamara - 0.20090608-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mythes-de/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 8 Jun 2009 07:49:42 -0000 1.20 +++ sources 8 Jul 2009 09:48:53 -0000 1.21 @@ -1 +1 @@ -7bd0e8639e4bb9ad07767eac75ac7303 thes_de_DE_v2.zip +0ad1801bc574d70e9f720b9ff0f7c5a1 thes_de_DE_v2.zip From caolanm at fedoraproject.org Wed Jul 8 09:50:48 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:50:48 +0000 (UTC) Subject: rpms/mythes-es/devel mythes-es.spec,1.5,1.6 sources,1.5,1.6 Message-ID: <20090708095048.1CFD111C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2339 Modified Files: mythes-es.spec sources Log Message: latest version Index: mythes-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-es/devel/mythes-es.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-es.spec 8 Jun 2009 07:46:53 -0000 1.5 +++ mythes-es.spec 8 Jul 2009 09:50:17 -0000 1.6 @@ -1,6 +1,6 @@ Name: mythes-es Summary: Spanish thesaurus -%define upstreamid 20090608 +%define upstreamid 20090708 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://openthes-es.berlios.de/download/OOo2-thes_es_ES.tar.bz2 @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Wed Jul 08 2009 Caol??n McNamara - 0.20090708-1 +- latest version + * Mon Jun 08 2009 Caol??n McNamara - 0.20090608-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mythes-es/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Jun 2009 07:46:53 -0000 1.5 +++ sources 8 Jul 2009 09:50:17 -0000 1.6 @@ -1 +1 @@ -5ab55d9edba8cdb0105ebe59ac2df422 OOo2-thes_es_ES.tar.bz2 +e266f5a971c550e7f2e9ac82a21b31a0 OOo2-thes_es_ES.tar.bz2 From caolanm at fedoraproject.org Wed Jul 8 09:52:01 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:52:01 +0000 (UTC) Subject: rpms/mythes-sl/devel mythes-sl.spec,1.6,1.7 sources,1.5,1.6 Message-ID: <20090708095201.6D29B11C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2703 Modified Files: mythes-sl.spec sources Log Message: latest version Index: mythes-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sl/devel/mythes-sl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mythes-sl.spec 8 Jun 2009 07:46:20 -0000 1.6 +++ mythes-sl.spec 8 Jul 2009 09:51:31 -0000 1.7 @@ -1,6 +1,6 @@ Name: mythes-sl Summary: Slovenian thesaurus -%define upstreamid 20090608 +%define upstreamid 20090708 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://193.2.66.133:85/download/thes_sl_SI_v2.zip @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 +- latest version + * Mon Jun 08 2009 Caolan McNamara - 0.20090608-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sl/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Jun 2009 07:45:19 -0000 1.5 +++ sources 8 Jul 2009 09:51:31 -0000 1.6 @@ -1 +1 @@ -96ababd68e9b9ba4344e4122a43aeb7e thes_sl_SI_v2.zip +33e6c0a746ddd8bc1d354f8245a63b50 thes_sl_SI_v2.zip From caolanm at fedoraproject.org Wed Jul 8 09:53:22 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:53:22 +0000 (UTC) Subject: rpms/mythes-nl/devel mythes-nl.spec,1.3,1.4 sources,1.3,1.4 Message-ID: <20090708095322.BE37211C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3074 Modified Files: mythes-nl.spec sources Log Message: latest version Index: mythes-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-nl/devel/mythes-nl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-nl.spec 12 Jun 2009 14:42:06 -0000 1.3 +++ mythes-nl.spec 8 Jul 2009 09:52:52 -0000 1.4 @@ -1,8 +1,8 @@ Name: mythes-nl Summary: Dutch thesaurus -%define upstreamid 20090608 +%define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 1%{?dist} Source: http://www.opentaal.org/opentaalbank/thesaurus/download/thes_nl_v2.zip Group: Applications/Text URL: http://www.opentaal.org/opentaalbank/thesaurus @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 +- latest version + * Fri Jun 12 2009 Caolan McNamara - 0.20090608-2 - extend coverage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mythes-nl/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Jun 2009 07:43:37 -0000 1.3 +++ sources 8 Jul 2009 09:52:52 -0000 1.4 @@ -1 +1 @@ -1d0b7ecc3e4dd33ec6e9e45f4badcb14 thes_nl_v2.zip +a484ebcb8e180579b25c3b52c29d752b thes_nl_v2.zip From caolanm at fedoraproject.org Wed Jul 8 09:54:57 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 09:54:57 +0000 (UTC) Subject: rpms/hunspell-pl/devel .cvsignore, 1.42, 1.43 hunspell-pl.spec, 1.46, 1.47 sources, 1.42, 1.43 Message-ID: <20090708095457.1841711C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3636 Modified Files: .cvsignore hunspell-pl.spec sources Log Message: latest version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pl/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 8 Jun 2009 07:40:29 -0000 1.42 +++ .cvsignore 8 Jul 2009 09:54:56 -0000 1.43 @@ -1 +1 @@ -sjp-myspell-pl-20090608.zip +sjp-myspell-pl-20090708.zip Index: hunspell-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pl/devel/hunspell-pl.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- hunspell-pl.spec 8 Jun 2009 07:40:29 -0000 1.46 +++ hunspell-pl.spec 8 Jul 2009 09:54:56 -0000 1.47 @@ -1,6 +1,6 @@ Name: hunspell-pl Summary: Polish hunspell dictionaries -%define upstreamid 20090608 +%define upstreamid 20090708 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://sjp.pl/slownik/ort/sjp-myspell-pl-%{upstreamid}.zip @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 +- latest version + * Mon Jun 08 2009 Caolan McNamara - 0.20090608-1 - latest version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pl/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 8 Jun 2009 07:40:29 -0000 1.42 +++ sources 8 Jul 2009 09:54:56 -0000 1.43 @@ -1 +1 @@ -daaaee2aeeaf92f4443bb73a22df00e9 sjp-myspell-pl-20090608.zip +c9127c03d18e2513472f3c71edf9ff2c sjp-myspell-pl-20090708.zip From pravins at fedoraproject.org Wed Jul 8 10:12:44 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Wed, 8 Jul 2009 10:12:44 +0000 (UTC) Subject: rpms/kacst-fonts/devel kacst-fonts.spec,1.5,1.6 Message-ID: <20090708101244.2EC0011C02C4@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/kacst-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8321 Modified Files: kacst-fonts.spec Log Message: * Wed Jul 08 2009 Pravin Satpute - 2.0-3 - updated spec as per new font packaging guideline Index: kacst-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/kacst-fonts/devel/kacst-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- kacst-fonts.spec 25 Feb 2009 10:05:13 -0000 1.5 +++ kacst-fonts.spec 8 Jul 2009 10:12:43 -0000 1.6 @@ -1,28 +1,220 @@ %define fontname kacst %define fontdir %{_datadir}/fonts/%{fontname} +# Common description +%define common_desc \ +This package contains fonts for the display of Arabic \ +from the King Abdulaziz City for Science & Technology(kacst). + Name: %{fontname}-fonts Version: 2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Source: http://downloads.sourceforge.net/sourceforge/arabeyes/%{fontname}_fonts_%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: dos2unix +BuildRequires: fontpackages-devel > 1.13 Group: User Interface/X -#Provides can be dropped in F11 -Provides: fonts-arabic = 2.1-2 Obsoletes: fonts-arabic <= 2.1-2 Summary: Fonts for arabic from arabeyes project URL: http://www.arabeyes.org/resources.php %description -This package contains fonts for the display of Arabic -from the King Abdulaziz City for Science & Technology(kacst). +%common_desc + +%package common +Summary: Common files for kacst-fonts +Group: User Interface/X +Requires: fontpackages-filesystem + +%description common +%common_desc + +%package -n %{fontname}-book-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-book-fonts +This package contains book type fonts for the display of Arabic + +%_font_pkg -n book KacstBook.ttf + +%package -n %{fontname}-digital-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-digital-fonts +This package contains digital type fonts for the display of Arabic + +%_font_pkg -n digital KacstDigital.ttf + +%package -n %{fontname}-letter-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-letter-fonts +This package contains book kacst fonts for the display of Arabic + +%_font_pkg -n letter KacstLetter.ttf + +%package -n %{fontname}-office-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-office-fonts +This package contains office type fonts for the display of Arabic + +%_font_pkg -n office KacstOffice.ttf + +%package -n %{fontname}-pen-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-pen-fonts +This package contains pen type fonts for the display of Arabic + +%_font_pkg -n pen kacstPen.ttf + +%package -n %{fontname}-qurn-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-qurn-fonts +This package contains qurn type fonts for the display of Arabic + +%_font_pkg -n qurn KacstQurn.ttf + +%package -n %{fontname}-titlel-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-titlel-fonts +This package contains title large type fonts for the display of Arabic + +%_font_pkg -n titlel KacstTitleL.ttf + +%package -n %{fontname}-art-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-art-fonts +This package contains art type fonts for the display of Arabic + +%_font_pkg -n art KacstArt.ttf + +%package -n %{fontname}-decorative-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-decorative-fonts +This package contains decorative type fonts for the display of Arabic + +%_font_pkg -n decorative KacstDecorative.ttf + +%package -n %{fontname}-farsi-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-farsi-fonts +This package contains farsi type fonts for the display of Arabic + +%_font_pkg -n farsi KacstFarsi.ttf + +%package -n %{fontname}-naskh-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-naskh-fonts +This package contains naskh type fonts for the display of Arabic + +%_font_pkg -n naskh KacstNaskh.ttf + +%package -n %{fontname}-one-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-one-fonts +This package contains one type fonts for the display of Arabic + +%_font_pkg -n one KacstOne.ttf + +%package -n %{fontname}-poster-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-poster-fonts +This package contains poster type fonts for the display of Arabic + +%_font_pkg -n poster KacstPoster.ttf + +%package -n %{fontname}-screen-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-screen-fonts +This package contains screen type fonts for the display of Arabic + +%_font_pkg -n screen KacstScreen.ttf + +%package -n %{fontname}-title-fonts +Summary: Fonts for arabic from arabeyes project +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} < 2.0-3 +%description -n %{fontname}-title-fonts +This package contains title type fonts for the display of Arabic + +%_font_pkg -n title KacstTitle.ttf + +#%{_fontdir} is shared by following packages since they all are for malayalam script only %prep %setup -q -n KacstArabicFonts-%{version} -find . -not -name \*.ttf -type f -exec dos2unix -k {} \; +#find . -not -name \*.ttf -type f -exec dos2unix -k {} \; %build echo "Nothing to do in Build." @@ -36,25 +228,15 @@ install -m 0644 -p *.ttf %{buildroot}%{f %clean rm -rf %{buildroot} -%post -if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache %{fontdir} -fi - -%postun -if [ "$1" = "0" ]; then - if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache %{fontdir} - fi -fi - -%files +%files common %defattr(-,root,root,-) %doc Copyright LICENSE README %dir %{fontdir} -%{fontdir}/*.ttf %changelog +* Wed Jul 08 2009 Pravin Satpute - 2.0-3 +- updated spec as per new font packaging guideline + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mef at fedoraproject.org Wed Jul 8 10:16:53 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 10:16:53 +0000 (UTC) Subject: rpms/ice/F-11 Ice-3.3.0-README.Fedora,1.1,NONE Message-ID: <20090708101653.736D711C02C4@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9825/F-11 Removed Files: Ice-3.3.0-README.Fedora Log Message: Remove old version of the README --- Ice-3.3.0-README.Fedora DELETED --- From mef at fedoraproject.org Wed Jul 8 10:16:53 2009 From: mef at fedoraproject.org (mef) Date: Wed, 8 Jul 2009 10:16:53 +0000 (UTC) Subject: rpms/ice/devel Ice-3.3.0-README.Fedora,1.1,NONE Message-ID: <20090708101653.B1B1511C02C4@cvs1.fedora.phx.redhat.com> Author: mef Update of /cvs/pkgs/rpms/ice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9825/devel Removed Files: Ice-3.3.0-README.Fedora Log Message: Remove old version of the README --- Ice-3.3.0-README.Fedora DELETED --- From dnovotny at fedoraproject.org Wed Jul 8 10:39:52 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Wed, 8 Jul 2009 10:39:52 +0000 (UTC) Subject: rpms/mailman/devel mailman.spec,1.82,1.83 Message-ID: <20090708103952.29AAD11C02C4@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/mailman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16161 Modified Files: mailman.spec Log Message: fix bz#509689 Index: mailman.spec =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- mailman.spec 7 Jul 2009 11:02:53 -0000 1.82 +++ mailman.spec 8 Jul 2009 10:39:21 -0000 1.83 @@ -1,7 +1,7 @@ Summary: Mailing list manager with built in Web access Name: mailman Version: 2.1.12 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 3 Group: Applications/Internet Source0: ftp://ftp.gnu.org/pub/gnu/mailman/mailman-%{version}.tgz @@ -464,7 +464,8 @@ exit 0 %{mmdir}/Mailman/versions.pyc %{mmdir}/Mailman/versions.pyo %doc %{docdir} -%attr(0755,root,root) %{contentdir}/icons +%dir %attr(0755,root,root) %{contentdir}/icons +%attr(0644,root,root) %{contentdir}/icons/* %attr(0644, root, %{mmgroup}) %config(noreplace) %verify(not md5 size mtime) %{mmdir}/Mailman/mm_cfg.py %config(noreplace) %{httpdconfdir}/%{httpdconffile} /etc/logrotate.d/%{name} @@ -482,6 +483,9 @@ exit 0 %attr(0755,root,root) %{_bindir}/mailman-update-cfg %changelog +* Wed Jul 08 2009 Daniel Novotny 3:2.1.12-6 +- fix bz#509689 - please remove execute perms + * Tue Jul 07 2009 Daniel Novotny 3:2.1.12-5 - hardcoded library path removed - mixed use of spaces and tabs fixed From pravins at fedoraproject.org Wed Jul 8 11:04:09 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Wed, 8 Jul 2009 11:04:09 +0000 (UTC) Subject: rpms/madan-fonts/F-11 madan-fonts.spec,1.3,1.4 Message-ID: <20090708110409.82B5A11C02C4@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/madan-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22139 Modified Files: madan-fonts.spec Log Message: * Wed Jul 08 2009 Pravin Satpute - 1.0-9 - updated spec as per new packaging guideline Index: madan-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/madan-fonts/F-11/madan-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- madan-fonts.spec 25 Feb 2009 22:49:05 -0000 1.3 +++ madan-fonts.spec 8 Jul 2009 11:04:09 -0000 1.4 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Font for Nepali language Group: User Interface/X # No version specified. @@ -12,6 +12,8 @@ URL: http://madanpuraskar.org/ Source: http://madanpuraskar.org/detail_guide/fonts/Madan.ttf BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: fontpackages-devel +Requires: fontpackages-filesystem %description This package provides the Madan font for Nepali made by the @@ -33,24 +35,12 @@ install -m 0644 -p *.ttf %{buildroot}%{f %clean rm -rf %{buildroot} -%post -if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache /usr/share/fonts -fi - -%postun -if [ "$1" = "0" ]; then - if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache /usr/share/fonts - fi -fi - -%files -%defattr(-,root,root,-) -%dir %{fontdir} -%{fontdir}/*.ttf +%_font_pkg *.ttf %changelog +* Wed Jul 08 2009 Pravin Satpute - 1.0-9 +- updated spec as per new packaging guideline + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From johnp at fedoraproject.org Wed Jul 8 11:06:10 2009 From: johnp at fedoraproject.org (John (J5) Palmieri) Date: Wed, 8 Jul 2009 11:06:10 +0000 (UTC) Subject: rpms/d-feet/F-11 d-feet.spec,1.7,1.8 sources,1.7,1.8 Message-ID: <20090708110610.D365911C02C4@cvs1.fedora.phx.redhat.com> Author: johnp Update of /cvs/pkgs/rpms/d-feet/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22602 Modified Files: d-feet.spec sources Log Message: update to upstream 0.1.10 * output now pretty printed * all simple types supported * ui cleanups Index: d-feet.spec =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/F-11/d-feet.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- d-feet.spec 24 Feb 2009 10:40:24 -0000 1.7 +++ d-feet.spec 8 Jul 2009 11:06:10 -0000 1.8 @@ -1,13 +1,13 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: d-feet -Version: 0.1.8 -Release: 3%{?dist} +Version: 0.1.10 +Release: 1%{?dist} Summary: A powerful D-Bus Debugger Group: Development/Tools License: GPLv2+ URL: http://hosted.fedoraproject.org/projects/d-feet -Source0: http://johnp.fedorapeople.org/%{name}-%{version}.tar.gz +Source0: http://johnp.fedorapeople.org/downloads/d-feet/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -67,6 +67,12 @@ fi %{_datadir}/applications/dfeet.desktop %changelog +* Wed Jul 08 2009 John (J5) Palmieri - 0.1.10-1 +- update to upstream 0.1.10 +- output now pretty printed +- all simple types supported +- ui cleanups + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Jan 2008 01:56:01 -0000 1.7 +++ sources 8 Jul 2009 11:06:10 -0000 1.8 @@ -1 +1 @@ -51cc70d37786dac0b426b6460dfd98ab d-feet-0.1.8.tar.gz +5617f8420f31a7b44d747d7760be4b62 d-feet-0.1.10.tar.bz2 From johnp at fedoraproject.org Wed Jul 8 11:07:27 2009 From: johnp at fedoraproject.org (John (J5) Palmieri) Date: Wed, 8 Jul 2009 11:07:27 +0000 (UTC) Subject: rpms/d-feet/devel .cvsignore, 1.4, 1.5 d-feet.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090708110727.2090D11C02C4@cvs1.fedora.phx.redhat.com> Author: johnp Update of /cvs/pkgs/rpms/d-feet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22862 Modified Files: .cvsignore d-feet.spec sources Log Message: update to upstream 0.1.10 * output now pretty printed * all simple types supported * ui cleanups Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 13 Dec 2007 02:05:31 -0000 1.4 +++ .cvsignore 8 Jul 2009 11:06:56 -0000 1.5 @@ -1,3 +1 @@ -d-feet-0.1.4.tar.gz -d-feet-0.1.5.tar.gz -d-feet-0.1.6.tar.gz +d-feet-0.1.10.tar.bz2 Index: d-feet.spec =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/devel/d-feet.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- d-feet.spec 24 Feb 2009 10:40:24 -0000 1.7 +++ d-feet.spec 8 Jul 2009 11:06:56 -0000 1.8 @@ -1,13 +1,13 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: d-feet -Version: 0.1.8 -Release: 3%{?dist} +Version: 0.1.10 +Release: 1%{?dist} Summary: A powerful D-Bus Debugger Group: Development/Tools License: GPLv2+ URL: http://hosted.fedoraproject.org/projects/d-feet -Source0: http://johnp.fedorapeople.org/%{name}-%{version}.tar.gz +Source0: http://johnp.fedorapeople.org/downloads/d-feet/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -67,6 +67,12 @@ fi %{_datadir}/applications/dfeet.desktop %changelog +* Wed Jul 08 2009 John (J5) Palmieri - 0.1.10-1 +- update to upstream 0.1.10 +- output now pretty printed +- all simple types supported +- ui cleanups + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Jan 2008 01:56:01 -0000 1.7 +++ sources 8 Jul 2009 11:06:56 -0000 1.8 @@ -1 +1 @@ -51cc70d37786dac0b426b6460dfd98ab d-feet-0.1.8.tar.gz +5617f8420f31a7b44d747d7760be4b62 d-feet-0.1.10.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 8 12:01:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:01:47 +0000 Subject: [pkgdb] transmission: ankursinha has requested watchbugzilla Message-ID: <20090708120147.794F810F888@bastion2.fedora.phx.redhat.com> ankursinha has requested the watchbugzilla acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:01:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:01:56 +0000 Subject: [pkgdb] transmission: ankursinha has given up watchbugzilla Message-ID: <20090708120157.0142210F89E@bastion2.fedora.phx.redhat.com> ankursinha has given up the watchbugzilla acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:00 +0000 Subject: [pkgdb] transmission: ankursinha has requested watchbugzilla Message-ID: <20090708120200.E0AA010F8A4@bastion2.fedora.phx.redhat.com> ankursinha has requested the watchbugzilla acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:05 +0000 Subject: [pkgdb] transmission: ankursinha has requested watchcommits Message-ID: <20090708120205.CBC2210F8A9@bastion2.fedora.phx.redhat.com> ankursinha has requested the watchcommits acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:16 +0000 Subject: [pkgdb] transmission: ankursinha has requested commit Message-ID: <20090708120216.A0E4F10F892@bastion2.fedora.phx.redhat.com> ankursinha has requested the commit acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:21 +0000 Subject: [pkgdb] transmission: ankursinha has requested approveacls Message-ID: <20090708120222.13F1E10F89B@bastion2.fedora.phx.redhat.com> ankursinha has requested the approveacls acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:27 +0000 Subject: [pkgdb] transmission: ankursinha has given up watchbugzilla Message-ID: <20090708120227.AB1B010F8B1@bastion2.fedora.phx.redhat.com> ankursinha has given up the watchbugzilla acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:02:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:02:30 +0000 Subject: [pkgdb] transmission: ankursinha has requested watchbugzilla Message-ID: <20090708120230.EEC1910F8B4@bastion2.fedora.phx.redhat.com> ankursinha has requested the watchbugzilla acl on transmission (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From mildew at fedoraproject.org Wed Jul 8 12:08:44 2009 From: mildew at fedoraproject.org (=?utf-8?q?Daniel_Kope=C4=8Dek?=) Date: Wed, 8 Jul 2009 12:08:44 +0000 (UTC) Subject: rpms/sudo/F-11 sudo.spec,1.77,1.78 Message-ID: <20090708120844.3560D11C02C4@cvs1.fedora.phx.redhat.com> Author: mildew Update of /cvs/pkgs/rpms/sudo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6219 Modified Files: sudo.spec Log Message: epoch number sync Index: sudo.spec =================================================================== RCS file: /cvs/pkgs/rpms/sudo/F-11/sudo.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- sudo.spec 22 Jun 2009 14:31:47 -0000 1.77 +++ sudo.spec 8 Jul 2009 12:08:13 -0000 1.78 @@ -1,7 +1,7 @@ Summary: Allows restricted root access for specified users Name: sudo Version: 1.7.1 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Applications/System URL: http://www.courtesan.com/sudo/ @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT /bin/chmod 0440 /etc/sudoers || : %changelog +* Wed Jul 08 2009 Daniel Kopecek 1.7.1-3 +- epoch number sync + * Mon Jun 22 2009 Daniel Kopecek 1.7.1-2 - fixed small bug in configure.in (sudo-1.7.1-conffix.patch) - sudo-1.7.1-audit.patch rediff because of missing code From pkgdb at fedoraproject.org Wed Jul 8 12:10:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:10:19 +0000 Subject: [pkgdb] transmission had acl change status Message-ID: <20090708121019.C761D10F888@bastion2.fedora.phx.redhat.com> sundaram has set the watchcommits acl on transmission (Fedora devel) to Approved for ankursinha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:10:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:10:19 +0000 Subject: [pkgdb] transmission had acl change status Message-ID: <20090708121020.1213F10F89B@bastion2.fedora.phx.redhat.com> sundaram has set the watchbugzilla acl on transmission (Fedora devel) to Approved for ankursinha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:10:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:10:24 +0000 Subject: [pkgdb] transmission had acl change status Message-ID: <20090708121024.3334810F8A8@bastion2.fedora.phx.redhat.com> sundaram has set the commit acl on transmission (Fedora devel) to Approved for ankursinha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From pkgdb at fedoraproject.org Wed Jul 8 12:10:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 12:10:25 +0000 Subject: [pkgdb] transmission had acl change status Message-ID: <20090708121025.BC2F810F8AD@bastion2.fedora.phx.redhat.com> sundaram has set the approveacls acl on transmission (Fedora devel) to Approved for ankursinha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/transmission From kwizart at fedoraproject.org Wed Jul 8 12:18:15 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 8 Jul 2009 12:18:15 +0000 (UTC) Subject: rpms/libkate/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 libkate.spec, 1.3, 1.4 Message-ID: <20090708121815.2B5C211C02C4@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/libkate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9553 Modified Files: .cvsignore sources libkate.spec Log Message: Update to 0.3.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libkate/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 11 May 2009 11:22:09 -0000 1.3 +++ .cvsignore 8 Jul 2009 12:17:44 -0000 1.4 @@ -1 +1 @@ -libkate-0.3.3.tar.gz +libkate-0.3.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libkate/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 11 May 2009 11:22:09 -0000 1.3 +++ sources 8 Jul 2009 12:17:44 -0000 1.4 @@ -1 +1 @@ -328ea1eb451f460514a096668d3bf076 libkate-0.3.3.tar.gz +ab2bdef452fd2bd415a30ee8269b63ce libkate-0.3.4.tar.gz Index: libkate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libkate/devel/libkate.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libkate.spec 29 Jun 2009 17:14:12 -0000 1.3 +++ libkate.spec 8 Jul 2009 12:17:44 -0000 1.4 @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.3 -Release: 2%{?dist} +Version: 0.3.4 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -53,7 +53,8 @@ The %{name}-utils package contains the k %package docs Summary: Documentation for %{name} -Group: Documentation +Group: Applications/d +Requires: %{name} = %{version}-%{release} BuildArch: noarch %description docs @@ -133,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 kwizart < kwizart at gmail.com > - 0.3.4-1 +- Update to 0.3.4 + * Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 0.3.3-2 - Split -docs - Fix #508589 From kwizart at fedoraproject.org Wed Jul 8 12:20:02 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 8 Jul 2009 12:20:02 +0000 (UTC) Subject: rpms/libkate/devel libkate.spec,1.4,1.5 Message-ID: <20090708122002.BC4A711C02C4@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/libkate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10210 Modified Files: libkate.spec Log Message: Commit Index: libkate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libkate/devel/libkate.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libkate.spec 8 Jul 2009 12:17:44 -0000 1.4 +++ libkate.spec 8 Jul 2009 12:20:02 -0000 1.5 @@ -53,8 +53,8 @@ The %{name}-utils package contains the k %package docs Summary: Documentation for %{name} -Group: Applications/d -Requires: %{name} = %{version}-%{release} +Group: Documentation + BuildArch: noarch %description docs From ovasik at fedoraproject.org Wed Jul 8 12:24:52 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Wed, 8 Jul 2009 12:24:52 +0000 (UTC) Subject: rpms/filesystem/devel filesystem.spec, 1.54, 1.55 lang-exceptions, 1.3, 1.4 Message-ID: <20090708122452.DB06F11C02C4@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11426 Modified Files: filesystem.spec lang-exceptions Log Message: do own interface description directory /usr/share/idl(#451719), add a few missing lang-exceptions to filelist(#508309) Index: filesystem.spec =================================================================== RCS file: /cvs/extras/rpms/filesystem/devel/filesystem.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- filesystem.spec 4 Mar 2009 13:09:45 -0000 1.54 +++ filesystem.spec 8 Jul 2009 12:24:52 -0000 1.55 @@ -1,6 +1,6 @@ Summary: The basic directory layout for a Linux system Name: filesystem -Version: 2.4.21 +Version: 2.4.22 Release: 1%{?dist} License: Public Domain URL: https://fedorahosted.org/filesystem @@ -32,7 +32,7 @@ mkdir -p mnt/{floppy,cdrom} \ bin boot dev \ etc/{X11/{applnk,fontpath.d},xdg/autostart,opt,xinetd.d,skel,sysconfig,pki} \ home lib/modules %{_lib}/tls media mnt opt proc root sbin selinux srv sys tmp \ - usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale,X11},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions},src,src/kernels} \ + usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale,X11},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,idl,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions},src,src/kernels} \ var/{empty,lib/{games,misc},local,lock/subsys,log,nis,preserve,run,spool/{mail,lpd},tmp,db,cache,opt,games,yp} ln -snf ../var/tmp usr/tmp @@ -51,15 +51,21 @@ done cat %{SOURCE1} | grep -v "^#" | grep -v "^$" | while read loc ; do locale=$loc locality= + special= [[ "$locale" =~ "@" ]] && locale=${locale%%@*} [[ "$locale" =~ "_" ]] && locality=${locale##*_} + [[ "$locality" =~ "." ]] && locality=${locality%%.*} + [[ "$loc" =~ "_" ]] || [[ "$loc" =~ "@" ]] || special=$loc # If the locality is not official, skip it if [ -n "$locality" ]; then grep -q "^$locality" /usr/share/iso-codes/iso_3166.tab || continue fi - # If the locale is not official, skip it - egrep -q "[[:space:]]${locale%_*}[[:space:]]" /usr/share/iso-codes/iso_639.tab || continue + # If the locale is not official and not special, skip it + if [ -z "$special" ]; then + egrep -q "[[:space:]]${locale%_*}[[:space:]]" \ + /usr/share/iso-codes/iso_639.tab || continue + fi echo "%lang(${locale}) /usr/share/locale/${loc}" >> $RPM_BUILD_DIR/filelist done @@ -110,6 +116,7 @@ rm -rf %{buildroot} /usr/share/ghostscript /usr/share/gnome /usr/share/icons +/usr/share/idl /usr/share/info %dir /usr/share/locale /usr/share/man @@ -142,6 +149,10 @@ rm -rf %{buildroot} /var/yp %changelog +* Wed Jul 08 2009 Ondrej Vasik - 2.4.22-1 +- do own interface description directory /usr/share/idl(#451719) +- add a few missing lang-exceptions to filelist(#508309) + * Wed Mar 04 2009 Phil Knirsch - 2.4.21-1 - Added /usr/share/backgrounds (#487957) - Added /usr/share/ghostscript/{conf.d} (#302521) Index: lang-exceptions =================================================================== RCS file: /cvs/extras/rpms/filesystem/devel/lang-exceptions,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lang-exceptions 18 Jun 2008 14:39:58 -0000 1.3 +++ lang-exceptions 8 Jul 2009 12:24:52 -0000 1.4 @@ -12,12 +12,14 @@ am_ET ast_ES az_IR bn_IN +ca at valencia ca_ES ca_ES at valencian cs_CZ de_AT de_CH de_DE +default el_GR en_AU en_CA @@ -54,8 +56,10 @@ it_CH it_IT ja_JP ko_KR +ks at devanagari my_MM nb_NO +nds_DE nl_BE nl_NL pl_PL @@ -66,13 +70,17 @@ sl_SI sq_AL sv_SE uk_UA +ur_PK zh_CN zh_HK zh_TW +zh_TW.Big5 en at boldquot en at quot nds at NFE sr at ije sr at latin +sr at Latn +uz at cyrillic uz at Latn be at latin From tagoh at fedoraproject.org Wed Jul 8 12:39:05 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Wed, 8 Jul 2009 12:39:05 +0000 (UTC) Subject: rpms/anthy/devel anthy-fix-typo-in-dict.patch, NONE, 1.1 anthy.spec, 1.57, 1.58 Message-ID: <20090708123905.4737F11C02C4@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/anthy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14509 Modified Files: anthy.spec Added Files: anthy-fix-typo-in-dict.patch Log Message: * Wed Jul 8 2009 Akira TAGOH - 9100h-5 - Update the corpus. - Fix typos in dictionary. (#509534) anthy-fix-typo-in-dict.patch: --- NEW FILE anthy-fix-typo-in-dict.patch --- diff -pruN anthy-9100h.orig/mkworddic/compound.t anthy-9100h/mkworddic/compound.t --- anthy-9100h.orig/mkworddic/compound.t 2009-02-07 21:15:36.000000000 +0900 +++ anthy-9100h/mkworddic/compound.t 2009-07-08 20:52:21.000000000 +0900 @@ -9714,7 +9714,6 @@ ?????????????? #T35 #_4????_3???? ?????????????? #T35 #_4????_3?? ?????????????? #T35 #_4????_3???? -???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? ?????????????? #T35 #_4????_3???? ???????????????? #T35 #_4????_4???? @@ -30752,7 +30751,6 @@ ?????????????????????????? #T35 #_6????_4????_3???? ???????????????? #T35 #_7??????_1?? ?????????????????? #T35 #_5????_4???? -?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ???????????????????????? #T35 #_5????_3??_4???? ?????????????? #T35 #_5????_2?? @@ -40405,6 +40403,7 @@ ?????????????? #T35 #_5????_2?? ???????????? #T35 #_3????_3?? ?????????????? #T35 #_6??????_1?? +???????????????? #KK #_4????_4???? ?????????????? #T35 #_4????_3?? ?????????????????? #T35 #_4????_5???? ???????????????? #T35 #_4????_4???? @@ -41942,7 +41941,7 @@ ?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ?????????????? #T35 #_5????_2?? -?????????????????? #T35 #_5????_4???? +?????????????????? #T30 #_5????_4???? ???????????????????? #T35 #_4????_6?????? ???????????? #T35 #_4????_2?? ?????????????????? #T35 #_6??????_3?? @@ -62585,6 +62584,7 @@ ?????????? #T35 #_3??_2?? ?????????? #T35 #_3????_2?? ???????????? #T35 #_3????_3?? +???????????? #T30 #_3????_3???? ?????????? #T35 #_3????_2?? ???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? @@ -66264,7 +66264,6 @@ ???????? #T35 #_3????_1?? ???????????? #T35 #_3????_3???? ?????????? #T35 #_3????_2???? -?????????? #T35 #_3????_2???? ???????????? #T35 #_3????_3???? ???????????????? #T35 #_3????_5???? ?????????????? #T35 #_3????_4???? @@ -66351,7 +66350,7 @@ ???????????????? #T35 #_4??????_4???? ???????? #T35 #_2??_2???? ???????????????? #T35 #_3????_5???? -?????????????? #T35 #_3????_4???? +?????????????? #T35 #_3????_4???? ???????????????????? #T35 #_3????_4????_3?? ?????????????? #T35 #_3????_4???? ?????????? #T35 #_2??_3???? Index: anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/anthy/devel/anthy.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- anthy.spec 11 May 2009 06:34:26 -0000 1.57 +++ anthy.spec 8 Jul 2009 12:38:35 -0000 1.58 @@ -23,7 +23,7 @@ Name: anthy Version: 9100h -Release: 4%{?dist} +Release: 5%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. License: LGPLv2+ and GPLv2 URL: http://sourceforge.jp/projects/anthy/ @@ -33,6 +33,7 @@ BuildRequires: xemacs Source0: http://osdn.dl.sourceforge.jp/anthy/37336/anthy-%{version}.tar.gz Source1: anthy-init.el +Patch0: anthy-fix-typo-in-dict.patch Summary: Japanese character set input library Group: System Environment/Libraries @@ -100,6 +101,7 @@ package to use Anthy with XEmacs. %prep %setup -q #-a 2 +%patch0 -p1 -b .0-typo %if %{use_utf8_dict} function normalize_extra_dict() { @@ -126,7 +128,6 @@ read @top_srcdir@/alt-cannadic/extra/gf- read @top_srcdir@/mkworddic/adjust.t.utf8 read @top_srcdir@/mkworddic/compound.t.utf8 read @top_srcdir@/mkworddic/extra.t.utf8 -read @top_srcdir@/mkworddic/utf8.t read @top_srcdir@/alt-cannadic/g_fname.t # build_reverse_dict @@ -162,6 +163,11 @@ gen_dict_args # fix rpath issue sed -ie 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' libtool LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params0 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 %install rm -rf $RPM_BUILD_ROOT @@ -230,6 +236,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Akira TAGOH - 9100h-5 +- Update the corpus. +- Fix typos in dictionary. (#509534) + * Mon May 11 2009 Akira TAGOH - 9100h-4 - Take off the ownership of %%{_libdir}/pkgconfig. (#499663) - Add R: pkgconfig to -devel. From tagoh at fedoraproject.org Wed Jul 8 12:45:51 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Wed, 8 Jul 2009 12:45:51 +0000 (UTC) Subject: rpms/anthy/F-11 anthy.spec,1.56,1.57 Message-ID: <20090708124551.A7BCD11C02C4@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/anthy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16882 Modified Files: anthy.spec Log Message: * Wed Jul 8 2009 Akira TAGOH - 9100h-5 - Update the corpus. - Fix typos in dictionary. (#509534) Index: anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/anthy/F-11/anthy.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- anthy.spec 11 May 2009 06:56:54 -0000 1.56 +++ anthy.spec 8 Jul 2009 12:45:51 -0000 1.57 @@ -23,7 +23,7 @@ Name: anthy Version: 9100h -Release: 4%{?dist} +Release: 5%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. License: LGPLv2+ and GPLv2 URL: http://sourceforge.jp/projects/anthy/ @@ -33,6 +33,7 @@ BuildRequires: xemacs Source0: http://osdn.dl.sourceforge.jp/anthy/37336/anthy-%{version}.tar.gz Source1: anthy-init.el +Patch0: anthy-fix-typo-in-dict.patch Summary: Japanese character set input library Group: System Environment/Libraries @@ -100,6 +101,7 @@ package to use Anthy with XEmacs. %prep %setup -q #-a 2 +%patch0 -p1 -b .0-typo %if %{use_utf8_dict} function normalize_extra_dict() { @@ -126,7 +128,6 @@ read @top_srcdir@/alt-cannadic/extra/gf- read @top_srcdir@/mkworddic/adjust.t.utf8 read @top_srcdir@/mkworddic/compound.t.utf8 read @top_srcdir@/mkworddic/extra.t.utf8 -read @top_srcdir@/mkworddic/utf8.t read @top_srcdir@/alt-cannadic/g_fname.t # build_reverse_dict @@ -162,6 +163,11 @@ gen_dict_args # fix rpath issue sed -ie 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' libtool LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params0 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 %install rm -rf $RPM_BUILD_ROOT @@ -230,6 +236,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Akira TAGOH - 9100h-5 +- Update the corpus. +- Fix typos in dictionary. (#509534) + * Mon May 11 2009 Akira TAGOH - 9100h-4 - Take off the ownership of %%{_libdir}/pkgconfig. (#499663) - Add R: pkgconfig to -devel. From tagoh at fedoraproject.org Wed Jul 8 12:46:06 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Wed, 8 Jul 2009 12:46:06 +0000 (UTC) Subject: rpms/anthy/F-11 anthy-fix-typo-in-dict.patch,NONE,1.1 Message-ID: <20090708124606.0AED611C02C4@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/anthy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16976 Added Files: anthy-fix-typo-in-dict.patch Log Message: anthy-fix-typo-in-dict.patch: --- NEW FILE anthy-fix-typo-in-dict.patch --- diff -pruN anthy-9100h.orig/mkworddic/compound.t anthy-9100h/mkworddic/compound.t --- anthy-9100h.orig/mkworddic/compound.t 2009-02-07 21:15:36.000000000 +0900 +++ anthy-9100h/mkworddic/compound.t 2009-07-08 20:52:21.000000000 +0900 @@ -9714,7 +9714,6 @@ ?????????????? #T35 #_4????_3???? ?????????????? #T35 #_4????_3?? ?????????????? #T35 #_4????_3???? -???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? ?????????????? #T35 #_4????_3???? ???????????????? #T35 #_4????_4???? @@ -30752,7 +30751,6 @@ ?????????????????????????? #T35 #_6????_4????_3???? ???????????????? #T35 #_7??????_1?? ?????????????????? #T35 #_5????_4???? -?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ???????????????????????? #T35 #_5????_3??_4???? ?????????????? #T35 #_5????_2?? @@ -40405,6 +40403,7 @@ ?????????????? #T35 #_5????_2?? ???????????? #T35 #_3????_3?? ?????????????? #T35 #_6??????_1?? +???????????????? #KK #_4????_4???? ?????????????? #T35 #_4????_3?? ?????????????????? #T35 #_4????_5???? ???????????????? #T35 #_4????_4???? @@ -41942,7 +41941,7 @@ ?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ?????????????? #T35 #_5????_2?? -?????????????????? #T35 #_5????_4???? +?????????????????? #T30 #_5????_4???? ???????????????????? #T35 #_4????_6?????? ???????????? #T35 #_4????_2?? ?????????????????? #T35 #_6??????_3?? @@ -62585,6 +62584,7 @@ ?????????? #T35 #_3??_2?? ?????????? #T35 #_3????_2?? ???????????? #T35 #_3????_3?? +???????????? #T30 #_3????_3???? ?????????? #T35 #_3????_2?? ???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? @@ -66264,7 +66264,6 @@ ???????? #T35 #_3????_1?? ???????????? #T35 #_3????_3???? ?????????? #T35 #_3????_2???? -?????????? #T35 #_3????_2???? ???????????? #T35 #_3????_3???? ???????????????? #T35 #_3????_5???? ?????????????? #T35 #_3????_4???? @@ -66351,7 +66350,7 @@ ???????????????? #T35 #_4??????_4???? ???????? #T35 #_2??_2???? ???????????????? #T35 #_3????_5???? -?????????????? #T35 #_3????_4???? +?????????????? #T35 #_3????_4???? ???????????????????? #T35 #_3????_4????_3?? ?????????????? #T35 #_3????_4???? ?????????? #T35 #_2??_3???? From tagoh at fedoraproject.org Wed Jul 8 13:10:35 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Wed, 8 Jul 2009 13:10:35 +0000 (UTC) Subject: rpms/anthy/F-10 anthy-fix-typo-in-dict.patch, NONE, 1.1 anthy.spec, 1.51, 1.52 Message-ID: <20090708131035.C3FA811C02C4@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/anthy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22792 Modified Files: anthy.spec Added Files: anthy-fix-typo-in-dict.patch Log Message: * Wed Jul 8 2009 Akira TAGOH - 9100h-5 - Update the corpus. - Fix typos in dictionary. (#509534) anthy-fix-typo-in-dict.patch: --- NEW FILE anthy-fix-typo-in-dict.patch --- diff -pruN anthy-9100h.orig/mkworddic/compound.t anthy-9100h/mkworddic/compound.t --- anthy-9100h.orig/mkworddic/compound.t 2009-02-07 21:15:36.000000000 +0900 +++ anthy-9100h/mkworddic/compound.t 2009-07-08 20:52:21.000000000 +0900 @@ -9714,7 +9714,6 @@ ?????????????? #T35 #_4????_3???? ?????????????? #T35 #_4????_3?? ?????????????? #T35 #_4????_3???? -???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? ?????????????? #T35 #_4????_3???? ???????????????? #T35 #_4????_4???? @@ -30752,7 +30751,6 @@ ?????????????????????????? #T35 #_6????_4????_3???? ???????????????? #T35 #_7??????_1?? ?????????????????? #T35 #_5????_4???? -?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ???????????????????????? #T35 #_5????_3??_4???? ?????????????? #T35 #_5????_2?? @@ -40405,6 +40403,7 @@ ?????????????? #T35 #_5????_2?? ???????????? #T35 #_3????_3?? ?????????????? #T35 #_6??????_1?? +???????????????? #KK #_4????_4???? ?????????????? #T35 #_4????_3?? ?????????????????? #T35 #_4????_5???? ???????????????? #T35 #_4????_4???? @@ -41942,7 +41941,7 @@ ?????????????? #T35 #_5????_2?? ???????????????? #T35 #_5????_3?? ?????????????? #T35 #_5????_2?? -?????????????????? #T35 #_5????_4???? +?????????????????? #T30 #_5????_4???? ???????????????????? #T35 #_4????_6?????? ???????????? #T35 #_4????_2?? ?????????????????? #T35 #_6??????_3?? @@ -62585,6 +62584,7 @@ ?????????? #T35 #_3??_2?? ?????????? #T35 #_3????_2?? ???????????? #T35 #_3????_3?? +???????????? #T30 #_3????_3???? ?????????? #T35 #_3????_2?? ???????????????? #T35 #_4????_4???? ???????????? #T35 #_4????_2?? @@ -66264,7 +66264,6 @@ ???????? #T35 #_3????_1?? ???????????? #T35 #_3????_3???? ?????????? #T35 #_3????_2???? -?????????? #T35 #_3????_2???? ???????????? #T35 #_3????_3???? ???????????????? #T35 #_3????_5???? ?????????????? #T35 #_3????_4???? @@ -66351,7 +66350,7 @@ ???????????????? #T35 #_4??????_4???? ???????? #T35 #_2??_2???? ???????????????? #T35 #_3????_5???? -?????????????? #T35 #_3????_4???? +?????????????? #T35 #_3????_4???? ???????????????????? #T35 #_3????_4????_3?? ?????????????? #T35 #_3????_4???? ?????????? #T35 #_2??_3???? Index: anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/anthy/F-10/anthy.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- anthy.spec 11 May 2009 09:15:16 -0000 1.51 +++ anthy.spec 8 Jul 2009 13:10:35 -0000 1.52 @@ -23,7 +23,7 @@ Name: anthy Version: 9100h -Release: 4%{?dist} +Release: 5%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. License: LGPLv2+ and GPLv2 URL: http://sourceforge.jp/projects/anthy/ @@ -33,6 +33,7 @@ BuildRequires: xemacs Source0: http://osdn.dl.sourceforge.jp/anthy/37336/anthy-%{version}.tar.gz Source1: anthy-init.el +Patch0: anthy-fix-typo-in-dict.patch Summary: Japanese character set input library Group: System Environment/Libraries @@ -100,6 +101,7 @@ package to use Anthy with XEmacs. %prep %setup -q #-a 2 +%patch0 -p1 -b .0-typo %if %{use_utf8_dict} function normalize_extra_dict() { @@ -126,7 +128,6 @@ read @top_srcdir@/alt-cannadic/extra/gf- read @top_srcdir@/mkworddic/adjust.t.utf8 read @top_srcdir@/mkworddic/compound.t.utf8 read @top_srcdir@/mkworddic/extra.t.utf8 -read @top_srcdir@/mkworddic/utf8.t read @top_srcdir@/alt-cannadic/g_fname.t # build_reverse_dict @@ -162,6 +163,11 @@ gen_dict_args # fix rpath issue sed -ie 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' libtool LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params0 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 +LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{version}/src-main/.libs:$RPM_BUILD_DIR/%{name}-%{version}/src-worddic/.libs make %{?_smp_mflags} update_params2 %install rm -rf $RPM_BUILD_ROOT @@ -230,6 +236,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Akira TAGOH - 9100h-5 +- Update the corpus. +- Fix typos in dictionary. (#509534) + * Mon May 11 2009 Akira TAGOH - 9100h-4 - Take off the ownership of %%{_libdir}/pkgconfig. (#499663) - Add R: pkgconfig to -devel. From caolanm at fedoraproject.org Wed Jul 8 13:14:47 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 13:14:47 +0000 (UTC) Subject: rpms/openoffice.org/devel workspace.impress174.patch, NONE, 1.1 openoffice.org.spec, 1.1958, 1.1959 openoffice.org-3.1.0.ooo101566.svtools.nodefaultwmfwidth.patch, 1.1, NONE Message-ID: <20090708131447.BCE8D11C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24535 Modified Files: openoffice.org.spec Added Files: workspace.impress174.patch Removed Files: openoffice.org-3.1.0.ooo101566.svtools.nodefaultwmfwidth.patch Log Message: rename to track upstream workspace workspace.impress174.patch: --- NEW FILE workspace.impress174.patch --- diff -ru svtools.orig/source/filter.vcl/wmf/wmfwr.cxx svtools/source/filter.vcl/wmf/wmfwr.cxx --- svtools.orig/source/filter.vcl/wmf/wmfwr.cxx 2009-05-05 12:57:34.000000000 +0100 +++ svtools/source/filter.vcl/wmf/wmfwr.cxx 2009-05-05 13:55:47.000000000 +0100 @@ -439,14 +439,7 @@ WriteRecordHeader(0x00000000,W_META_CREATEFONTINDIRECT); - if ( !rFont.GetSize().Width() ) - { - VirtualDevice aDev; - FontMetric aMetric( aDev.GetFontMetric( rFont ) ); - WriteHeightWidth(Size(aMetric.GetWidth(),-rFont.GetSize().Height())); - } - else - WriteHeightWidth(Size(rFont.GetSize().Width(),-rFont.GetSize().Height())); + WriteHeightWidth(Size(rFont.GetSize().Width(),-rFont.GetSize().Height())); *pWMF << (short)rFont.GetOrientation() << (short)rFont.GetOrientation(); Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1958 retrieving revision 1.1959 diff -u -p -r1.1958 -r1.1959 --- openoffice.org.spec 3 Jul 2009 15:38:27 -0000 1.1958 +++ openoffice.org.spec 8 Jul 2009 13:14:47 -0000 1.1959 @@ -139,7 +139,7 @@ Patch61: openoffice.org-3.1.0.ooo101355. Patch62: openoffice.org-3.1.0.ooo101379.vcl.qstart.SM.patch Patch63: workspace.evoab2def.patch Patch64: workspace.cmcfixes59.patch -Patch65: openoffice.org-3.1.0.ooo101566.svtools.nodefaultwmfwidth.patch +Patch65: workspace.impress174.patch Patch66: openoffice.org-3.1.0.ooo101567.i18npool.mailocaledata.patch Patch67: workspace.unifypaper01.patch Patch68: openoffice.org-3.1.0.ooo102061.sc.cellanchoring.patch @@ -1649,7 +1649,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch62 -p0 -b .ooo101379.vcl.qstart.SM.patch %patch63 -p0 -b .workspace.evoab2def.patch %patch64 -p0 -b .workspace.cmcfixes59.patch -%patch65 -p0 -b .ooo101566.svtools.nodefaultwmfwidth.patch +%patch65 -p0 -b .workspace.impress174.patch %patch66 -p0 -b .ooo101567.i18npool.mailocaledata.patch %patch67 -p1 %patch68 -p0 -b .ooo102061.sc.cellanchoring.patch --- openoffice.org-3.1.0.ooo101566.svtools.nodefaultwmfwidth.patch DELETED --- From denis at fedoraproject.org Wed Jul 8 13:21:39 2009 From: denis at fedoraproject.org (Denis Leroy) Date: Wed, 8 Jul 2009 13:21:39 +0000 (UTC) Subject: rpms/glom/F-11 glom.spec,1.35,1.36 Message-ID: <20090708132139.F159411C02C4@cvs1.fedora.phx.redhat.com> Author: denis Update of /cvs/pkgs/rpms/glom/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26107 Modified Files: glom.spec Log Message: Update to upstream 1.10.1, a bugfix release Index: glom.spec =================================================================== RCS file: /cvs/pkgs/rpms/glom/F-11/glom.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- glom.spec 23 Apr 2009 08:24:14 -0000 1.35 +++ glom.spec 8 Jul 2009 13:21:09 -0000 1.36 @@ -1,9 +1,9 @@ %define major_version 1.10 -%define minor_version 0 +%define minor_version 1 Name: glom Version: %{major_version}.%{minor_version} -Release: 4%{?dist} +Release: 1%{?dist} Summary: Easy-to-use database designer and user interface Group: Applications/Databases @@ -163,6 +163,9 @@ scrollkeeper-update -q || : %changelog +* Thu Jun 25 2009 Denis Leroy - 1.10.1-1 +- Update to upstream 1.10.1, a bugfix release + * Thu Apr 23 2009 Denis - 1.10.0-4 - Rebuilt with new goocanvasmm From denis at fedoraproject.org Wed Jul 8 13:24:40 2009 From: denis at fedoraproject.org (Denis Leroy) Date: Wed, 8 Jul 2009 13:24:40 +0000 (UTC) Subject: rpms/glom/F-11 .cvsignore,1.25,1.26 sources,1.25,1.26 Message-ID: <20090708132440.1ACD311C02C4@cvs1.fedora.phx.redhat.com> Author: denis Update of /cvs/pkgs/rpms/glom/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26929 Modified Files: .cvsignore sources Log Message: Update to upstream 1.10.1, a bugfix release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glom/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 23 Mar 2009 14:21:10 -0000 1.25 +++ .cvsignore 8 Jul 2009 13:24:09 -0000 1.26 @@ -1 +1 @@ -glom-1.10.0.tar.bz2 +glom-1.10.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glom/F-11/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 23 Mar 2009 14:21:10 -0000 1.25 +++ sources 8 Jul 2009 13:24:09 -0000 1.26 @@ -1 +1 @@ -8c46a5e087771a0bc45c71d7dd74ec7f glom-1.10.0.tar.bz2 +611a9cc73aadd1ff5fdc4dd81e240822 glom-1.10.1.tar.bz2 From steved at fedoraproject.org Wed Jul 8 13:27:36 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Wed, 8 Jul 2009 13:27:36 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-nfsd4-proots.patch, NONE, 1.1 kernel.spec, 1.1611, 1.1612 Message-ID: <20090708132736.9A02911C02C4@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27785 Modified Files: kernel.spec Added Files: linux-2.6-nfsd4-proots.patch Log Message: - Added NFSD v4 dynamic pseudo root patch which allows NFS v3 exports to be mounted by v4 clients. linux-2.6-nfsd4-proots.patch: --- NEW FILE linux-2.6-nfsd4-proots.patch --- diff -up linux-2.6.30.noarch/fs/nfsd/export.c.save linux-2.6.30.noarch/fs/nfsd/export.c --- linux-2.6.30.noarch/fs/nfsd/export.c.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/fs/nfsd/export.c 2009-07-02 11:35:44.000000000 -0400 @@ -104,6 +104,7 @@ static int expkey_parse(struct cache_det if (mesg[mlen-1] != '\n') return -EINVAL; mesg[mlen-1] = 0; + dprintk("expkey_parse: '%s'\n", mesg); buf = kmalloc(PAGE_SIZE, GFP_KERNEL); err = -ENOMEM; @@ -181,6 +182,8 @@ static int expkey_parse(struct cache_det if (dom) auth_domain_put(dom); kfree(buf); + if (err) + dprintk("expkey_parse: err %d\n", err); return err; } @@ -351,7 +354,10 @@ static void svc_export_request(struct ca (*bpp)[0] = '\n'; return; } + qword_add(bpp, blen, pth); + dprintk("svc_export_request: pth %s\n", pth); + (*bpp)[-1] = '\n'; } @@ -500,6 +506,7 @@ static int svc_export_parse(struct cache if (mesg[mlen-1] != '\n') return -EINVAL; mesg[mlen-1] = 0; + dprintk("svc_export_parse: '%s'\n", mesg); buf = kmalloc(PAGE_SIZE, GFP_KERNEL); if (!buf) @@ -619,6 +626,8 @@ out1: auth_domain_put(dom); out: kfree(buf); + if (err) + dprintk("svc_export_parse: err %d\n", err); return err; } @@ -1413,6 +1422,7 @@ static struct flags { { NFSEXP_CROSSMOUNT, {"crossmnt", ""}}, { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}}, { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}}, + { NFSEXP_V4ROOT, {"v4root", ""}}, #ifdef MSNFS { NFSEXP_MSNFS, {"msnfs", ""}}, #endif @@ -1493,7 +1503,7 @@ static int e_show(struct seq_file *m, vo struct svc_export *exp = container_of(cp, struct svc_export, h); if (p == SEQ_START_TOKEN) { - seq_puts(m, "# Version 1.1\n"); + seq_puts(m, "# Version 1.2\n"); seq_puts(m, "# Path Client(Flags) # IPs\n"); return 0; } diff -up linux-2.6.30.noarch/fs/nfsd/nfs4xdr.c.save linux-2.6.30.noarch/fs/nfsd/nfs4xdr.c --- linux-2.6.30.noarch/fs/nfsd/nfs4xdr.c.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/fs/nfsd/nfs4xdr.c 2009-07-02 11:35:31.000000000 -0400 @@ -2176,28 +2176,62 @@ static inline int attributes_need_mount( return 0; } -static __be32 -nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd, - const char *name, int namlen, __be32 *p, int *buflen) +struct dentry * +nfsd_check_export(struct nfsd4_readdir *cd, const char *name, int namlen) { struct svc_export *exp = cd->rd_fhp->fh_export; struct dentry *dentry; - __be32 nfserr; - int ignore_crossmnt = 0; + int err; dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen); if (IS_ERR(dentry)) - return nfserrno(PTR_ERR(dentry)); + return dentry; if (!dentry->d_inode) { - /* - * nfsd_buffered_readdir drops the i_mutex between - * readdir and calling this callback, leaving a window - * where this directory entry could have gone away. - */ dput(dentry); - return nfserr_noent; + return ERR_PTR(-ENOENT); + } + + /* + * Check to see if this dentry is part + * of the psuedo root + */ + if ((exp->ex_flags & NFSEXP_V4ROOT) == 0) + return dentry; + + /* + * Only exported directories are visable + * on psuedo exports + */ + if (!S_ISDIR(dentry->d_inode->i_mode)) { + dput(dentry); + return ERR_PTR(-ENOENT); } + /* + * Make the upcall to see if this directory + * is exported. + */ + exp_get(exp); + err = nfsd_export_lookup(cd->rd_rqstp, dentry, exp); + if (err) { + exp_put(exp); + dput(dentry); + return ERR_PTR(err); + } + exp_put(exp); + + return dentry; +} + +static __be32 +nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd, + struct dentry *dentry, __be32 *p, int *buflen) +{ + struct svc_export *exp = cd->rd_fhp->fh_export; + __be32 nfserr; + int ignore_crossmnt = 0; + int err, v4root = (exp->ex_flags & NFSEXP_V4ROOT); + exp_get(exp); /* * In the case of a mountpoint, the client may be asking for @@ -2208,18 +2242,29 @@ nfsd4_encode_dirent_fattr(struct nfsd4_r */ if (d_mountpoint(dentry) && !attributes_need_mount(cd->rd_bmval)) ignore_crossmnt = 1; - else if (d_mountpoint(dentry)) { - int err; - + else if (d_mountpoint(dentry) || v4root) { + /* + * Make sure the dentry is viewable on the psuedo export + */ + v4root = (dentry->d_inode && v4root); + if (v4root) { + err = nfsd_export_lookup(cd->rd_rqstp, dentry, exp); + if (err) { + nfserr = nfserrno(err); + goto out_put; + } + } /* * Why the heck aren't we just using nfsd_lookup?? * Different "."/".." handling? Something else? * At least, add a comment here to explain.... */ - err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp); - if (err) { - nfserr = nfserrno(err); - goto out_put; + if (d_mountpoint(dentry) || v4root) { + err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp); + if (err) { + nfserr = nfserrno(err); + goto out_put; + } } nfserr = check_nfsd_access(exp, cd->rd_rqstp); if (nfserr) @@ -2258,6 +2303,7 @@ nfsd4_encode_dirent(void *ccdv, const ch struct readdir_cd *ccd = ccdv; struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common); int buflen; + struct dentry *dentry; __be32 *p = cd->buffer; __be32 *cookiep; __be32 nfserr = nfserr_toosmall; @@ -2268,19 +2314,40 @@ nfsd4_encode_dirent(void *ccdv, const ch return 0; } + /* + * Do the lookup and make sure the dentry is + * visible on the exported directory + */ + dentry = nfsd_check_export(cd, name, namlen); + if (IS_ERR(dentry)) { + if (PTR_ERR(dentry) == -ENOENT) { + cd->common.err = nfs_ok; + return 0; + } + cd->common.err = nfserrno(PTR_ERR(dentry)); + return -EINVAL; + } + if (cd->offset) xdr_encode_hyper(cd->offset, (u64) offset); buflen = cd->buflen - 4 - XDR_QUADLEN(namlen); - if (buflen < 0) + if (buflen < 0) { + dput(dentry); goto fail; + } *p++ = xdr_one; /* mark entry present */ cookiep = p; p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */ p = xdr_encode_array(p, name, namlen); /* name length & name */ - nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen); + /* + * Note: the dput() on the dentry is done in + * nfsd4_encode_dirent_fattr() since the dentry can + * change when crossing a mount point. + */ + nfserr = nfsd4_encode_dirent_fattr(cd, dentry, p, &buflen); switch (nfserr) { case nfs_ok: p += buflen; diff -up linux-2.6.30.noarch/fs/nfsd/nfsfh.c.save linux-2.6.30.noarch/fs/nfsd/nfsfh.c --- linux-2.6.30.noarch/fs/nfsd/nfsfh.c.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/fs/nfsd/nfsfh.c 2009-07-02 11:35:48.000000000 -0400 @@ -109,6 +109,34 @@ static __be32 nfsd_setuser_and_check_por return nfserrno(nfsd_setuser(rqstp, exp)); } +static inline __be32 check_pseudo_root(struct svc_rqst *rqstp, + struct dentry *dentry, struct svc_export *exp) +{ + int error; + + /* + * Only interested in pseudo roots + */ + if (!(exp->ex_flags & NFSEXP_V4ROOT)) + return nfs_ok; + + /* + * Only directories should be on the pseudo root + */ + if (unlikely(!S_ISDIR(dentry->d_inode->i_mode))) + return nfserr_stale; + /* + * Check non-root directories to make sure + * they are truly exported + */ + if (unlikely(dentry->d_name.len > 1)) { + error = nfsd_export_lookup(rqstp, dentry, exp); + return nfserrno(error); + } + + return nfs_ok; +} + /* * Use the given filehandle to look up the corresponding export and * dentry. On success, the results are used to set fh_export and @@ -315,6 +343,14 @@ fh_verify(struct svc_rqst *rqstp, struct error = nfsd_setuser_and_check_port(rqstp, exp); if (error) goto out; + + /* + * Do some spoof checking if we are on the pseudo root + */ + error = check_pseudo_root(rqstp, dentry, exp); + if (error) + goto out; + } error = nfsd_mode_check(rqstp, dentry->d_inode->i_mode, type); diff -up linux-2.6.30.noarch/fs/nfsd/vfs.c.save linux-2.6.30.noarch/fs/nfsd/vfs.c --- linux-2.6.30.noarch/fs/nfsd/vfs.c.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/fs/nfsd/vfs.c 2009-07-02 11:35:39.000000000 -0400 @@ -89,6 +89,12 @@ struct raparm_hbucket { #define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1) static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE]; +static inline int +nfsd_v4client(struct svc_rqst *rq) +{ + return((rq->rq_prog == NFS_PROGRAM) && (rq->rq_vers == 4)); +} + /* * Called from nfsd_lookup and encode_dirent. Check if we have crossed * a mount point. @@ -115,7 +121,8 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, s path_put(&path); goto out; } - if ((exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) { + if (nfsd_v4client(rqstp) || + (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) { /* successfully crossed mount point */ /* * This is subtle: path.dentry is *not* on path.mnt @@ -134,6 +141,55 @@ out: return err; } +/* + * Lookup the export the dentry is on. To be + * viewable on an pseudo export, the dentry + * has to be an exported directory. + */ +int +nfsd_export_lookup(struct svc_rqst *rqstp, struct dentry *dentry, + struct svc_export *exp) +{ + struct svc_export *exp2 = NULL; + struct path path; + int err = 0; + + if ((exp->ex_flags & NFSEXP_V4ROOT) == 0) + return 0; + + /* + * Make sure the export is the parent of the dentry + */ + if (dentry->d_parent != exp->ex_path.dentry) + return 0; + + /* + * Only directories are seen on psuedo exports + */ + if (!S_ISDIR(dentry->d_inode->i_mode)) + return -ENOENT; + + /* + * Make the upcall + */ + path.mnt = mntget(exp->ex_path.mnt); + path.dentry = dget(dentry); + while (d_mountpoint(path.dentry) && follow_down(&path)); + + exp2 = rqst_exp_get_by_name(rqstp, &path); + if (IS_ERR(exp2)) + err = PTR_ERR(exp2); + else { + /* + * The export exist so allow the access + */ + exp_put(exp2); + } + + dput(path.dentry); + mntput(path.mnt); + return err; +} __be32 nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name, unsigned int len, @@ -143,7 +199,7 @@ nfsd_lookup_dentry(struct svc_rqst *rqst struct dentry *dparent; struct dentry *dentry; __be32 err; - int host_err; + int host_err, v4root; dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name); @@ -155,6 +211,7 @@ nfsd_lookup_dentry(struct svc_rqst *rqst dparent = fhp->fh_dentry; exp = fhp->fh_export; exp_get(exp); + v4root = (exp->ex_flags & NFSEXP_V4ROOT); /* Lookup the name, but don't follow links */ if (isdotent(name, len)) { @@ -199,9 +256,21 @@ nfsd_lookup_dentry(struct svc_rqst *rqst if (IS_ERR(dentry)) goto out_nfserr; /* + * The export is a pseudo one, make sure the + * dentry is accessible + */ + v4root = (dentry->d_inode && v4root); + if (v4root) { + host_err = nfsd_export_lookup(rqstp, dentry, exp); + if (host_err) { + dput(dentry); + goto out_nfserr; + } + } + /* * check if we have crossed a mount point ... */ - if (d_mountpoint(dentry)) { + if (d_mountpoint(dentry) || v4root) { if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) { dput(dentry); goto out_nfserr; diff -up linux-2.6.30.noarch/include/linux/nfsd/export.h.save linux-2.6.30.noarch/include/linux/nfsd/export.h --- linux-2.6.30.noarch/include/linux/nfsd/export.h.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/include/linux/nfsd/export.h 2009-07-02 11:35:22.000000000 -0400 @@ -39,7 +39,8 @@ #define NFSEXP_FSID 0x2000 #define NFSEXP_CROSSMOUNT 0x4000 #define NFSEXP_NOACL 0x8000 /* reserved for possible ACL related use */ -#define NFSEXP_ALLFLAGS 0xFE3F +#define NFSEXP_V4ROOT 0x10000 +#define NFSEXP_ALLFLAGS 0x1FE3F /* The flags that may vary depending on security flavor: */ #define NFSEXP_SECINFO_FLAGS (NFSEXP_READONLY | NFSEXP_ROOTSQUASH \ diff -up linux-2.6.30.noarch/include/linux/nfsd/nfsd.h.save linux-2.6.30.noarch/include/linux/nfsd/nfsd.h --- linux-2.6.30.noarch/include/linux/nfsd/nfsd.h.save 2009-07-02 11:34:38.000000000 -0400 +++ linux-2.6.30.noarch/include/linux/nfsd/nfsd.h 2009-07-02 11:35:27.000000000 -0400 @@ -76,6 +76,8 @@ int nfsd_racache_init(int); void nfsd_racache_shutdown(void); int nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, struct svc_export **expp); +int nfsd_export_lookup(struct svc_rqst *rqstp, struct dentry *dpp, + struct svc_export *exp); __be32 nfsd_lookup(struct svc_rqst *, struct svc_fh *, const char *, unsigned int, struct svc_fh *); __be32 nfsd_lookup_dentry(struct svc_rqst *, struct svc_fh *, Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1611 retrieving revision 1.1612 diff -u -p -r1.1611 -r1.1612 --- kernel.spec 8 Jul 2009 02:13:19 -0000 1.1611 +++ kernel.spec 8 Jul 2009 13:27:06 -0000 1.1612 @@ -677,6 +677,9 @@ Patch2903: linux-2.6-revert-dvb-net-kabi # fs fixes Patch3000: linux-2.6-btrfs-experimental-branch.patch +# NFSv4 +Patch3050: linux-2.6-nfsd4-proots.patch + #snmp fixes Patch10000: linux-2.6-missing-rfc2465-stats.patch @@ -1137,6 +1140,9 @@ ApplyPatch linux-2.6-execshield.patch # btrfs #ApplyPatch linux-2.6-btrfs-experimental-branch.patch +# NFSv4 +ApplyPatch linux-2.6-nfsd4-proots.patch + # USB # ACPI @@ -1843,6 +1849,10 @@ fi # and build. %changelog +* Wed Jul 08 2009 Steve Dickson +- Added NFSD v4 dynamic pseudo root patch which allows + NFS v3 exports to be mounted by v4 clients. + * Tue Jul 07 2009 Jarod Wilson - See if we can't make lirc_streamzap behave better... (#508952) From jpopelka at fedoraproject.org Wed Jul 8 13:28:28 2009 From: jpopelka at fedoraproject.org (=?utf-8?b?SmnFmcOtIFBvcGVsa2E=?=) Date: Wed, 8 Jul 2009 13:28:28 +0000 (UTC) Subject: rpms/net-tools/devel net-tools-1.60-scanf-format.patch, NONE, 1.1 net-tools.spec, 1.98, 1.99 Message-ID: <20090708132828.1B00F11C02C4@cvs1.fedora.phx.redhat.com> Author: jpopelka Update of /cvs/pkgs/rpms/net-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26715 Modified Files: net-tools.spec Added Files: net-tools-1.60-scanf-format.patch Log Message: - scanf format length fix (non exploitable?) from Fabian Hugelshofer - URL tag changed to http://net-tools.berlios.de/ net-tools-1.60-scanf-format.patch: --- NEW FILE net-tools-1.60-scanf-format.patch --- diff -up net-tools-1.60/arp.c.scanf-format net-tools-1.60/arp.c --- net-tools-1.60/arp.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/arp.c 2009-07-08 11:43:39.000000000 +0200 @@ -557,7 +557,7 @@ static int arp_show(char *name) /* Read the ARP cache entries. */ for (num = 0; num < entries; num++) { fgets(line, sizeof(line), fp); - if (sscanf(line, "%s 0x%x 0x%x %100s %100s %100s\n", + if (sscanf(line, "%s 0x%x 0x%x %99s %99s %99s\n", ip, &type, &flags, hwa, mask, dev) < 4) break; diff -up net-tools-1.60/lib/inet_gr.c.scanf-format net-tools-1.60/lib/inet_gr.c --- net-tools-1.60/lib/inet_gr.c.scanf-format 2000-10-28 12:59:42.000000000 +0200 +++ net-tools-1.60/lib/inet_gr.c 2009-07-08 11:49:59.000000000 +0200 @@ -38,7 +38,7 @@ extern char *INET_sprintmask(struct sock int rprint_fib(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], net_addr[128]; char mask_addr[128]; int num, iflags, metric, refcnt, use, mss, window, irtt; @@ -69,18 +69,18 @@ int rprint_fib(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_ROUTE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Mask", "%128s", + "Mask", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d\n" */ if (!fmt) return 1; @@ -205,7 +205,7 @@ int rprint_fib(int ext, int numeric) int rprint_cache(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], dest_addr[128], specdst[128]; char src_addr[128]; struct sockaddr snet; @@ -269,20 +269,20 @@ int rprint_cache(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", "HH", "%d", "ARP", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d\n" */ } if (format == 2) { @@ -292,13 +292,13 @@ int rprint_cache(int ext, int numeric) "MSS Window irtt TOS HHRef HHUptod SpecDst\n")); fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", @@ -307,7 +307,7 @@ int rprint_cache(int ext, int numeric) "HHUptod", "%d", "SpecDst", "%128s", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d %128s\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d %128s\n" */ } diff -up net-tools-1.60/lib/interface.c.scanf-format net-tools-1.60/lib/interface.c --- net-tools-1.60/lib/interface.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/lib/interface.c 2009-07-08 11:45:44.000000000 +0200 @@ -713,7 +713,7 @@ void ife_print_long(struct interface *pt #endif #if HAVE_AFINET6 FILE *f; - char addr6[40], devname[20]; + char addr6[40], devname[21]; struct sockaddr_in6 sap; int plen, scope, dad_status, if_idx; extern struct aftype inet6_aftype; diff -up net-tools-1.60/netstat.c.scanf-format net-tools-1.60/netstat.c --- net-tools-1.60/netstat.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/netstat.c 2009-07-08 11:42:12.000000000 +0200 @@ -1105,7 +1105,7 @@ static void udp_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); @@ -1540,7 +1540,7 @@ static void raw_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); Index: net-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-tools/devel/net-tools.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- net-tools.spec 26 Feb 2009 04:54:53 -0000 1.98 +++ net-tools.spec 8 Jul 2009 13:28:27 -0000 1.99 @@ -3,10 +3,10 @@ Summary: Basic networking tools Name: net-tools Version: 1.60 -Release: 92%{?dist} +Release: 93%{?dist} License: GPL+ Group: System Environment/Base -URL: http://www.tazenda.demon.co.uk/phil/net-tools/ +URL: http://net-tools.berlios.de/ Source0: http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-%{version}.tar.bz2 Source1: http://www.red-bean.com/~bos/netplug/netplug-%{npversion}.tar.bz2 Source2: net-tools-%{version}-config.h @@ -82,6 +82,7 @@ Patch68: net-tools-1.60-a-option.patch Patch69: net-tools-1.60-clear-flag.patch Patch70: net-tools-1.60-metric-tunnel-man.patch Patch71: net-tools-1.60-netstat-probe.patch +Patch72: net-tools-1.60-scanf-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/chkconfig @@ -164,6 +165,7 @@ ifconfig, netstat, route, and others. %patch69 -p1 -b .clear-flag %patch70 -p1 -b .metric-tunnel-man %patch71 -p1 -b .probe +%patch72 -p1 -b .scanf-format cp %SOURCE2 ./config.h cp %SOURCE3 ./config.make @@ -279,6 +281,10 @@ exit 0 %{_sysconfdir}/rc.d/init.d/netplugd %changelog +* Wed Jul 8 2009 Jiri Popelka - 1.60-93 +- scanf format length fix (non exploitable?) from Fabian Hugelshofer +- URL tag changed to http://net-tools.berlios.de/ + * Wed Feb 25 2009 Fedora Release Engineering - 1.60-92 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ovasik at fedoraproject.org Wed Jul 8 13:37:39 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Wed, 8 Jul 2009 13:37:39 +0000 (UTC) Subject: rpms/elinks/devel .cvsignore, 1.27, 1.28 elinks.spec, 1.74, 1.75 sources, 1.27, 1.28 Message-ID: <20090708133739.64F9211C02C4@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/elinks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30318 Modified Files: .cvsignore elinks.spec sources Log Message: new upstream bugfix prerelease Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/elinks/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 1 Jun 2009 09:20:31 -0000 1.27 +++ .cvsignore 8 Jul 2009 13:37:09 -0000 1.28 @@ -1 +1 @@ -elinks-0.12pre4.tar.bz2 +elinks-0.12pre5.tar.bz2 Index: elinks.spec =================================================================== RCS file: /cvs/extras/rpms/elinks/devel/elinks.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- elinks.spec 1 Jun 2009 09:20:31 -0000 1.74 +++ elinks.spec 8 Jul 2009 13:37:09 -0000 1.75 @@ -1,11 +1,11 @@ Name: elinks Summary: A text-mode Web browser Version: 0.12 -Release: 0.16.pre4%{?dist} +Release: 0.17.pre5%{?dist} License: GPLv2 URL: http://elinks.or.cz Group: Applications/Internet -Source: http://elinks.or.cz/download/elinks-%{version}pre4.tar.bz2 +Source: http://elinks.or.cz/download/elinks-%{version}pre5.tar.bz2 Source2: elinks.conf Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -45,7 +45,7 @@ advantage over graphical browsers is its quickly and swiftly displays Web pages. %prep -%setup -q -n %{name}-%{version}pre4 +%setup -q -n %{name}-%{version}pre5 # Prevent crash when HOME is unset (bug #90663). %patch0 -p1 @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/* %changelog +* Wed Jul 08 2009 Ondrej Vasik 0.12-0.17.pre5 +- new upstream bugfix prerelease + * Mon Jun 01 2009 Ondrej Vasik 0.12-0.16.pre4 - new upstream bugfix prerelease - defuzz patches Index: sources =================================================================== RCS file: /cvs/extras/rpms/elinks/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 1 Jun 2009 09:20:31 -0000 1.27 +++ sources 8 Jul 2009 13:37:09 -0000 1.28 @@ -1 +1 @@ -0b7eb0edc5f72c9a05d78f2f71e21414 elinks-0.12pre4.tar.bz2 +92790144290131ac5e63b44548b45e08 elinks-0.12pre5.tar.bz2 From timj at fedoraproject.org Wed Jul 8 13:52:40 2009 From: timj at fedoraproject.org (Tim Jackson) Date: Wed, 8 Jul 2009 13:52:40 +0000 (UTC) Subject: rpms/php-pear-PEAR-Command-Packaging/F-11 php-pear-PEAR-Command-Packaging-0.2.0-fedora-conventions.patch, NONE, 1.1 php-pear-PEAR-Command-Packaging-fedora-template-specfile, 1.1, 1.2 php-pear-PEAR-Command-Packaging.spec, 1.3, 1.4 sources, 1.2, 1.3 3_01.txt, 1.1, NONE php-pear-PEAR-Command-Packaging-0.1.2-cvs.patch, 1.1, NONE php-pear-PEAR-Command-Packaging-0.1.2-fedora-conventions1.patch, 1.1, NONE Message-ID: <20090708135240.F1FC011C02C4@cvs1.fedora.phx.redhat.com> Author: timj Update of /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2262 Modified Files: php-pear-PEAR-Command-Packaging-fedora-template-specfile php-pear-PEAR-Command-Packaging.spec sources Added Files: php-pear-PEAR-Command-Packaging-0.2.0-fedora-conventions.patch Removed Files: 3_01.txt php-pear-PEAR-Command-Packaging-0.1.2-cvs.patch php-pear-PEAR-Command-Packaging-0.1.2-fedora-conventions1.patch Log Message: Update to 0.2.0 php-pear-PEAR-Command-Packaging-0.2.0-fedora-conventions.patch: --- NEW FILE php-pear-PEAR-Command-Packaging-0.2.0-fedora-conventions.patch --- --- Packaging.php.orig 1970-01-01 10:13:24.000000000 +0100 +++ Packaging.php 2009-06-27 22:05:09.000000000 +0100 @@ -72,15 +72,14 @@ %n = Channel name (full) e.g. pear.example.com %N = Non standard channel name followed by a "/" (e.g. "pear.example.com/") -Defaults to "%C::%s" for library/application packages and "php-channel-%c" for +Defaults to "php-%c-%S" for library/application packages and "php-channel-%c" for channel packages.', ), 'rpm-depname' => array( 'shortopt' => 'd', 'arg' => 'FORMAT', 'doc' => 'Use FORMAT as format string for naming RPM dependencies. Substitutions -are as for the --rpm-pkgname option. Defaults to be the same as -the format defined by the --rpm-pkgname option.', +are as for the --rpm-pkgname option. Defaults to "php-%c(%s)".', ), ), 'doc' => ' @@ -91,10 +90,10 @@ $ cd /path/to/rpm-build-tree/SPECS $ pear make-rpm-spec ../SOURCES/Net_Socket-1.0.tgz -Wrote RPM spec file PEAR::Net_Socket-1.0.spec -$ rpm -bb PEAR::Net_Socket-1.0.spec +Wrote RPM spec file php-pear-Net-Socket.spec +$ rpm -bb php-pear-Net-Socket.spec ... -Wrote: /path/to/rpm-build-tree/RPMS/noarch/PEAR::Net_Socket-1.0-1.noarch.rpm +Wrote: /path/to/rpm-build-tree/RPMS/noarch/php-pear-Net-Socket-1.0-1.noarch.rpm ', ), ); @@ -121,7 +120,7 @@ * $commands array above and in Packaging.xml so that it is consistent. */ var $_rpm_pkgname_format = array( - 'pkg' => '%C::%s', + 'pkg' => 'php-%c-%S', 'chan' => 'php-channel-%c', ); @@ -140,7 +139,7 @@ * %P = use the same as whatever rpm_pkgname_format is set to be */ var $_rpm_depname_format = array( - 'pkg' => '%P', + 'pkg' => 'php-(%N%s)', 'ext' => 'php-%l', 'php' => 'php', 'chan' => 'php-channel(%n)', @@ -159,7 +158,7 @@ * chan - used when generating a spec file for a channel */ var $_rpm_specname_format = array( - 'pkg' => '%P-%v.spec', + 'pkg' => '%P.spec', 'chan' => 'php-channel-%c.spec' ); @@ -182,14 +181,14 @@ * need to be listed here */ var $_file_prefixes = array( - 'php' => '%{_libdir}/php/pear', + 'php' => '%{pear_phpdir}', 'doc' => '', - 'ext' => '%{_libdir}/php', - 'test' => '%{_libdir}/php/tests/%s', - 'data' => '%{_libdir}/php/data/%s', + 'ext' => '%{_libdir}/php/modules', + 'test' => '%{pear_testdir}/%s', + 'data' => '%{pear_datadir}/%s', 'script' => '%{_bindir}', 'cfg' => '%{_sysconfdir}/pear', - 'www' => '%{_datadir}/pear/www' + 'www' => '%{pear_wwwdir}/%s' ); /** @@ -197,7 +196,7 @@ * printf format. The first '%s' is the RPM header name followed by a colon, * the second is the header value. */ - var $_spec_line_format = '%s %s'; + var $_spec_line_format = '%-16s%s'; // ------------------------------------------------------------------------ // --- END DISTRIBUTION CONFIG @@ -593,13 +592,15 @@ if ($pf->getDeps()) { $this->_generatePackageDeps($pf); } - + + /* Fedora: we handle this in our template spec // Hook to support virtual Provides, where the dependency name differs // from the package name $rpmdep = $this->_getRPMName($pf->getPackage(), $pf->getChannel(), null, 'pkgdep'); if (!empty($rpmdep) && $rpmdep != $this->_output['rpm_package']) { $this->_output['extra_headers'] .= $this->_formatRpmHeader('Provides', "$rpmdep = %{version}") . "\n"; } + */ // Create the list of files in the package foreach ($package_info['filelist'] as $filename => $attr) { @@ -657,9 +658,9 @@ // Handle doc files if (isset($file_list['doc'])) { - $this->_output['doc_files'] = 'docs/' . $pf->getPackage() . '/*'; + $this->_output['doc_files'] = '%{pear_name}-%{version}/docdir/%{pear_name}/*'; $this->_output['doc_files_statement'] = '%doc ' . $this->_output['doc_files']; - $this->_output['doc_files_relocation_script'] = "mv %{buildroot}/docs .\n"; + $this->_output['doc_files_relocation_script'] = "# Move documentation\nmkdir -p docdir\nmv \$RPM_BUILD_ROOT%{pear_docdir}/* docdir\n"; } // Work out architecture Index: php-pear-PEAR-Command-Packaging-fedora-template-specfile =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11/php-pear-PEAR-Command-Packaging-fedora-template-specfile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-PEAR-Command-Packaging-fedora-template-specfile 23 Sep 2006 21:28:44 -0000 1.1 +++ php-pear-PEAR-Command-Packaging-fedora-template-specfile 8 Jul 2009 13:52:10 -0000 1.2 @@ -12,7 +12,7 @@ URL: http://@master_server@/p Source0: http://@master_server@/get/%{pear_name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: @arch@ +BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires(post): %{__pear} Requires(postun): %{__pear} @@ -60,18 +60,20 @@ rm -rf $RPM_BUILD_ROOT %postun if [ $1 -eq 0 ] ; then %{__pear} uninstall --nodeps --ignore-errors --register-only \ - @possible_channel@%{pear_name} >/dev/null || : + @possible_channel@/%{pear_name} >/dev/null || : fi %files %defattr(-,root,root,-) @doc_files_statement@ + at cfg_files_statement@ + at www_files_statement@ %{pear_xmldir}/%{pear_name}.xml -# TODO upstream: pear_testdir and pear_datadir; they are currently OK though, -# caught by the below glob since they are withing pear_phpdir # Expand this as needed to avoid owning dirs owned by our dependencies -%{pear_phpdir}/* - + at php_files_statement@ + at data_files_statement@ + at test_files_statement@ + at script_files_statement@ %changelog Index: php-pear-PEAR-Command-Packaging.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11/php-pear-PEAR-Command-Packaging.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-PEAR-Command-Packaging.spec 26 Feb 2009 22:00:18 -0000 1.3 +++ php-pear-PEAR-Command-Packaging.spec 8 Jul 2009 13:52:10 -0000 1.4 @@ -2,8 +2,8 @@ %define pear_name PEAR_Command_Packaging Name: php-pear-PEAR-Command-Packaging -Version: 0.1.2 -Release: 7%{?dist} +Version: 0.2.0 +Release: 1%{?dist} Summary: Create RPM spec files from PEAR modules Group: Development/System @@ -11,10 +11,7 @@ License: PHP URL: http://pear.php.net/package/PEAR_Command_Packaging Source0: http://pear.php.net/get/%{pear_name}-%{version}.tgz Source1: php-pear-PEAR-Command-Packaging-fedora-template-specfile -Source2: http://www.php.net/license/3_01.txt -Patch0: php-pear-PEAR-Command-Packaging-0.1.2-fedora-conventions1.patch -# Patch1 is bits backported from upstream CVS; remove when 0.1.3 is released -Patch1: php-pear-PEAR-Command-Packaging-0.1.2-cvs.patch +Patch0: php-pear-PEAR-Command-Packaging-0.2.0-fedora-conventions.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -45,21 +42,20 @@ rm -rf $RPM_BUILD_ROOT # Patches for Fedora conventions pushd $RPM_BUILD_ROOT%{pear_phpdir}/PEAR/Command/ -%{__patch} -p1 <%{PATCH0} -%{__patch} -p1 <%{PATCH1} +%{__patch} -p0 <%{PATCH0} popd cp -p %{SOURCE1} $RPM_BUILD_ROOT%{pear_phpdir}/data/%{pear_name}/template.spec # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* +# Remove doc; will be installed later +rm -f $RPM_BUILD_ROOT%{pear_docdir}/%{pear_name}/LICENSE + # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} -# Add license file -install -pm 644 %{SOURCE2} LICENSE - %clean rm -rf $RPM_BUILD_ROOT @@ -84,6 +80,9 @@ fi %changelog +* Sat Jun 27 2009 Tim Jackson 0.2.0-1 +- Update to 0.2.0 + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Sep 2006 21:28:44 -0000 1.2 +++ sources 8 Jul 2009 13:52:10 -0000 1.3 @@ -1 +1 @@ -b8b3e3791c687e8ddaaeac7c65732233 PEAR_Command_Packaging-0.1.2.tgz +457881b46b8c42ba58cdb698872df2e6 PEAR_Command_Packaging-0.2.0.tgz --- 3_01.txt DELETED --- --- php-pear-PEAR-Command-Packaging-0.1.2-cvs.patch DELETED --- --- php-pear-PEAR-Command-Packaging-0.1.2-fedora-conventions1.patch DELETED --- From caolanm at fedoraproject.org Wed Jul 8 14:00:09 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 8 Jul 2009 14:00:09 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1959,1.1960 Message-ID: <20090708140009.E2E2511C02C4@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4267 Modified Files: openoffice.org.spec Log Message: hunspell-ee -> hunspell-et Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1959 retrieving revision 1.1960 diff -u -p -r1.1959 -r1.1960 --- openoffice.org.spec 8 Jul 2009 13:14:47 -0000 1.1959 +++ openoffice.org.spec 8 Jul 2009 14:00:09 -0000 1.1960 @@ -789,7 +789,7 @@ Provides additional spanish translations Summary: Estonian language pack for OpenOffice.org Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} -Requires: hunspell-ee, hyphen-et +Requires: hunspell-et, hyphen-et Obsoletes: openoffice.org-i18n < 1.9.0 Obsoletes: openoffice.org-langpack-et < 1:2.0.3 Obsoletes: openoffice.org2-langpack-et_EE < 1:3.0.0 From mgarski at fedoraproject.org Wed Jul 8 14:01:28 2009 From: mgarski at fedoraproject.org (Marcin Garski) Date: Wed, 8 Jul 2009 14:01:28 +0000 (UTC) Subject: rpms/xscorch/devel xscorch-0.2.1-pre2-disable-debug.patch, NONE, 1.1 xscorch.spec, 1.15, 1.16 Message-ID: <20090708140128.420B411C02C4@cvs1.fedora.phx.redhat.com> Author: mgarski Update of /cvs/pkgs/rpms/xscorch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4674 Modified Files: xscorch.spec Added Files: xscorch-0.2.1-pre2-disable-debug.patch Log Message: - Update to 0.2.1-pre2 xscorch-0.2.1-pre2-disable-debug.patch: --- NEW FILE xscorch-0.2.1-pre2-disable-debug.patch --- --- xscorch-0.2.1-pre2/sgame/sphysics.h.orig 2009-05-25 06:43:22.000000000 +0200 +++ xscorch-0.2.1-pre2/sgame/sphysics.h 2009-07-08 15:54:35.000000000 +0200 @@ -29,7 +29,7 @@ /* Debugging control */ -#define SC_PHYSICS_DEBUG_ROLLER 1 /* Set to 1 to debug rollers */ +#define SC_PHYSICS_DEBUG_ROLLER 0 /* Set to 1 to debug rollers */ /* Forward structure definitions */ Index: xscorch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/devel/xscorch.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xscorch.spec 26 May 2009 23:00:08 -0000 1.15 +++ xscorch.spec 8 Jul 2009 14:01:28 -0000 1.16 @@ -1,4 +1,4 @@ -%define pre pre1 +%define pre pre2 Name: xscorch Version: 0.2.1 @@ -11,6 +11,7 @@ URL: http://www.xscorch.org/ Source0: http://www.xscorch.org/releases/%{name}-%{version}%{?pre:-%{pre}}.tar.gz Source1: xscorch.desktop Patch0: xscorch-0.2.0-termcap.patch +Patch1: xscorch-0.2.1-pre2-disable-debug.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel gtk2-devel >= 2.12.0 desktop-file-utils @@ -26,6 +27,7 @@ power, and you hope to destroy their tan %setup -q -n %{name}-%{version}%{?pre:-%{pre}} # We need this patch to get readline to link (once networkplay becomes stable). #%patch0 -p1 -b .termcap +%patch1 -p1 %build %configure --disable-network --disable-sound @@ -64,6 +66,9 @@ rm -rf %{buildroot} %{_datadir}/xscorch/ %changelog +* Wed Jul 08 2009 Marcin Garski 0.2.1-0.2.pre2 +- Update to 0.2.1-pre2 + * Wed May 27 2009 Marcin Garski 0.2.1-0.2.pre1 - Update to 0.2.1-pre1 - Remove stack-smash and 64bit patches (merged upstream) From mgarski at fedoraproject.org Wed Jul 8 14:04:47 2009 From: mgarski at fedoraproject.org (Marcin Garski) Date: Wed, 8 Jul 2009 14:04:47 +0000 (UTC) Subject: rpms/xscorch/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 xscorch.spec, 1.16, 1.17 Message-ID: <20090708140447.98C7211C02C4@cvs1.fedora.phx.redhat.com> Author: mgarski Update of /cvs/pkgs/rpms/xscorch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5407 Modified Files: .cvsignore sources xscorch.spec Log Message: - Upload new sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 26 May 2009 22:47:48 -0000 1.3 +++ .cvsignore 8 Jul 2009 14:04:17 -0000 1.4 @@ -1 +1 @@ -xscorch-0.2.1-pre1.tar.gz +xscorch-0.2.1-pre2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 26 May 2009 22:47:48 -0000 1.3 +++ sources 8 Jul 2009 14:04:17 -0000 1.4 @@ -1 +1 @@ -d0db577a496f80eb948cc58b2bcde737 xscorch-0.2.1-pre1.tar.gz +f26d4c2280440c9b0236ccf8dbeb5a5f xscorch-0.2.1-pre2.tar.gz Index: xscorch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/devel/xscorch.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xscorch.spec 8 Jul 2009 14:01:28 -0000 1.16 +++ xscorch.spec 8 Jul 2009 14:04:17 -0000 1.17 @@ -2,7 +2,7 @@ Name: xscorch Version: 0.2.1 -Release: 0.2.%{pre}%{?dist} +Release: 0.3.%{pre}%{?dist} Summary: A Scorched Earth clone Group: Amusements/Games @@ -66,7 +66,7 @@ rm -rf %{buildroot} %{_datadir}/xscorch/ %changelog -* Wed Jul 08 2009 Marcin Garski 0.2.1-0.2.pre2 +* Wed Jul 08 2009 Marcin Garski 0.2.1-0.3.pre2 - Update to 0.2.1-pre2 * Wed May 27 2009 Marcin Garski 0.2.1-0.2.pre1 From mgarski at fedoraproject.org Wed Jul 8 14:07:09 2009 From: mgarski at fedoraproject.org (Marcin Garski) Date: Wed, 8 Jul 2009 14:07:09 +0000 (UTC) Subject: rpms/xscorch/F-11 xscorch-0.2.1-pre2-disable-debug.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 xscorch.spec, 1.14, 1.15 Message-ID: <20090708140709.2B33B11C02C4@cvs1.fedora.phx.redhat.com> Author: mgarski Update of /cvs/pkgs/rpms/xscorch/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6250 Modified Files: .cvsignore sources xscorch.spec Added Files: xscorch-0.2.1-pre2-disable-debug.patch Log Message: - Update to 0.2.1-pre2 xscorch-0.2.1-pre2-disable-debug.patch: --- NEW FILE xscorch-0.2.1-pre2-disable-debug.patch --- --- xscorch-0.2.1-pre2/sgame/sphysics.h.orig 2009-05-25 06:43:22.000000000 +0200 +++ xscorch-0.2.1-pre2/sgame/sphysics.h 2009-07-08 15:54:35.000000000 +0200 @@ -29,7 +29,7 @@ /* Debugging control */ -#define SC_PHYSICS_DEBUG_ROLLER 1 /* Set to 1 to debug rollers */ +#define SC_PHYSICS_DEBUG_ROLLER 0 /* Set to 1 to debug rollers */ /* Forward structure definitions */ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 26 May 2009 23:02:48 -0000 1.3 +++ .cvsignore 8 Jul 2009 14:06:38 -0000 1.4 @@ -1 +1 @@ -xscorch-0.2.1-pre1.tar.gz +xscorch-0.2.1-pre2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 26 May 2009 23:02:48 -0000 1.3 +++ sources 8 Jul 2009 14:06:38 -0000 1.4 @@ -1 +1 @@ -d0db577a496f80eb948cc58b2bcde737 xscorch-0.2.1-pre1.tar.gz +f26d4c2280440c9b0236ccf8dbeb5a5f xscorch-0.2.1-pre2.tar.gz Index: xscorch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/F-11/xscorch.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xscorch.spec 26 May 2009 23:02:48 -0000 1.14 +++ xscorch.spec 8 Jul 2009 14:06:38 -0000 1.15 @@ -1,8 +1,8 @@ -%define pre pre1 +%define pre pre2 Name: xscorch Version: 0.2.1 -Release: 0.2.%{pre}%{?dist} +Release: 0.3.%{pre}%{?dist} Summary: A Scorched Earth clone Group: Amusements/Games @@ -11,6 +11,7 @@ URL: http://www.xscorch.org/ Source0: http://www.xscorch.org/releases/%{name}-%{version}%{?pre:-%{pre}}.tar.gz Source1: xscorch.desktop Patch0: xscorch-0.2.0-termcap.patch +Patch1: xscorch-0.2.1-pre2-disable-debug.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel gtk2-devel >= 2.12.0 desktop-file-utils @@ -26,6 +27,7 @@ power, and you hope to destroy their tan %setup -q -n %{name}-%{version}%{?pre:-%{pre}} # We need this patch to get readline to link (once networkplay becomes stable). #%patch0 -p1 -b .termcap +%patch1 -p1 %build %configure --disable-network --disable-sound @@ -64,6 +66,9 @@ rm -rf %{buildroot} %{_datadir}/xscorch/ %changelog +* Wed Jul 08 2009 Marcin Garski 0.2.1-0.3.pre2 +- Update to 0.2.1-pre2 + * Wed May 27 2009 Marcin Garski 0.2.1-0.2.pre1 - Update to 0.2.1-pre1 - Remove stack-smash and 64bit patches (merged upstream) From jgu at fedoraproject.org Wed Jul 8 14:11:29 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Wed, 8 Jul 2009 14:11:29 +0000 (UTC) Subject: rpms/shorewall/F-10 shorewall.spec,1.80,1.81 Message-ID: <20090708141129.5D4D011C02C4@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/shorewall/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7393 Modified Files: shorewall.spec Log Message: * Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1.1 - Revert the accidental changes to spec file which made the perl compiler the default Index: shorewall.spec =================================================================== RCS file: /cvs/extras/rpms/shorewall/F-10/shorewall.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- shorewall.spec 7 Jul 2009 23:12:42 -0000 1.80 +++ shorewall.spec 8 Jul 2009 14:10:59 -0000 1.81 @@ -11,7 +11,7 @@ Name: shorewall Version: %{major_ver} -Release: 1%{?dist} +Release: 1%{?dist}.1 Summary: An iptables front end for firewall configuration Group: Applications/System License: GPLv2+ @@ -34,6 +34,7 @@ BuildArch: noarch Requires: shorewall-common = %{common_ver}-%{release} Requires: shorewall-perl = %{perl_ver}-%{release} +Requires: shorewall-shell = %{shell_ver}-%{release} %description The Shoreline Firewall, more commonly known as "Shorewall", is a @@ -147,9 +148,6 @@ sed -i -e 's|prog="shorewall"|prog="shor # scripts. This silences some rpmlint errors. find . -name "lib.*" -exec sed -i -e '/\#\!\/bin\/sh/d' {} \; -# Make the perl compiler the default -sed -i -e 's|SHOREWALL_COMPILER=|SHOREWALL_COMPILER=perl|' shorewall-common-%{common_ver}/shorewall.conf - %build %install @@ -407,6 +405,10 @@ fi %attr(0755,root,root) %{_datadir}/shorewall6-lite/wait4ifup %changelog +* Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1.1 +- Revert the accidental changes to spec file which made the perl compiler the + default + * Wed Jul 8 2009 Jonathan G. Underwood - 4.2.10-1 - Update to version 4.2.10 - Update shorewall-perl to 4.2.10.3 From dwalsh at fedoraproject.org Wed Jul 8 14:36:46 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 8 Jul 2009 14:36:46 +0000 (UTC) Subject: rpms/xguest/F-11 xguest-namespace.patch, NONE, 1.1 xguest.spec, 1.11, 1.12 Message-ID: <20090708143646.B0F4111C02C4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/xguest/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14052 Modified Files: xguest.spec Added Files: xguest-namespace.patch Log Message: * Tue Jun 23 2009 Dan Walsh - 1.0.7-5 - Changed to require policycoreutils-python xguest-namespace.patch: --- NEW FILE xguest-namespace.patch --- diff -up xguest-1.0.8/xguest.conf~ xguest-1.0.8/xguest.conf --- xguest-1.0.8/xguest.conf~ 2009-06-01 14:59:02.000000000 -0400 +++ xguest-1.0.8/xguest.conf 2009-06-01 14:56:40.000000000 -0400 @@ -0,0 +1,5 @@ +# Inserted by the xguest package. +/tmp tmpfs tmpfs ~xguest +/var/tmp tmpfs tmpfs ~xguest +$HOME tmpfs tmpfs ~xguest + Index: xguest.spec =================================================================== RCS file: /cvs/extras/rpms/xguest/F-11/xguest.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xguest.spec 26 Feb 2009 09:35:34 -0000 1.11 +++ xguest.spec 8 Jul 2009 14:36:16 -0000 1.12 @@ -1,16 +1,17 @@ Summary: Creates xguest user as a locked down user Name: xguest Version: 1.0.7 -Release: 3%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Base BuildArch: noarch Source: http://people.fedoraproject.org/~dwalsh/xguest/%{name}-%{version}.tar.bz2 +patch: xguest-namespace.patch URL: http://people.fedoraproject.org/~dwalsh/xguest/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(pre): pam >= 0.99.8.1-17 selinux-policy > 3.6.3-12 selinux-policy-base -Requires(pre): policycoreutils +Requires(pre): policycoreutils-python Requires(post): sabayon-apply Requires: gdm >= 1:2.20.0-15.fc8 @@ -23,6 +24,7 @@ mounted on tmpfs. %prep %setup -q +%patch -p1 -b .namespace %build @@ -33,7 +35,9 @@ mounted on tmpfs. %{__rm} -fR %{buildroot} %{__mkdir} -p %{buildroot}/%{_sysconfdir}/desktop-profiles %{__mkdir} -p %{buildroot}/%{_sysconfdir}/rc.d/init.d +%{__mkdir} -p %{buildroot}/%{_sysconfdir}/security/namespace.d/ls install -m0644 xguest.zip %{buildroot}/%{_sysconfdir}/desktop-profiles/ +install -m0644 xguest.conf %{buildroot}/%{_sysconfdir}/security/namespace.d/ install -m0755 xguest.init %{buildroot}/%{_sysconfdir}/rc.d/init.d/xguest %pre @@ -41,16 +45,6 @@ if [ $1 -eq 1 ]; then semanage user -a -S targeted -P xguest -R xguest_r xguest_u 2> /dev/null || : (useradd -c "Guest" -Z xguest_u xguest || semanage login -a -S targeted -s xguest_u xguest || semanage login -m -S targeted -s xguest_u xguest) 2>/dev/null || exit 1 -echo -n \ -' -# xguest begin -# Inserted by the xguest package. -/tmp tmpfs tmpfs ~xguest -/var/tmp tmpfs tmpfs ~xguest -$HOME tmpfs tmpfs ~xguest -# xguest end -' >> /etc/security/namespace.conf - echo "xguest:exclusive" >> /etc/security/sepermit.conf semanage boolean -m -S targeted -F /dev/stdin << _EOF @@ -82,12 +76,12 @@ fi %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/desktop-profiles/xguest.zip %{_sysconfdir}/rc.d/init.d/xguest +%{_sysconfdir}/security/namespace.d/ %doc README LICENSE %preun if [ $1 -eq 0 ]; then sed -i '/^xguest/d' /etc/security/sepermit.conf -sed -i '/^# xguest begin/,/^# xguest end/d' /etc/security/namespace.conf /usr/bin/python << __eof from sabayon import userdb @@ -99,6 +93,9 @@ __eof fi %changelog +* Tue Jun 23 2009 Dan Walsh - 1.0.7-5 +- Changed to require policycoreutils-python + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ovasik at fedoraproject.org Wed Jul 8 14:44:11 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Wed, 8 Jul 2009 14:44:11 +0000 (UTC) Subject: rpms/coreutils/F-11 coreutils-silentmv.patch, NONE, 1.1 coreutils-i18n.patch, 1.33, 1.34 coreutils.spec, 1.257, 1.258 Message-ID: <20090708144411.61BEE11C02C4@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/coreutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16788 Modified Files: coreutils-i18n.patch coreutils.spec Added Files: coreutils-silentmv.patch Log Message: cumulative F-11 coreutils update - fixes for multibyte patch and selinux/xattr support coreutils-silentmv.patch: --- NEW FILE coreutils-silentmv.patch --- diff -urNp coreutils-7.2-orig/src/copy.c coreutils-7.2/src/copy.c --- coreutils-7.2-orig/src/copy.c 2009-07-08 16:21:46.000000000 +0200 +++ coreutils-7.2/src/copy.c 2009-07-08 16:31:43.000000000 +0200 @@ -139,6 +139,22 @@ copy_attr_error (struct error_context *c int err = errno; va_list ap; + if (errno != ENOTSUP && errno != ENODATA) + { + /* use verror module to print error message */ + va_start (ap, fmt); + verror (0, err, fmt, ap); + va_end (ap); + } +} + +static void +copy_attr_allerror (struct error_context *ctx ATTRIBUTE_UNUSED, + char const *fmt, ...) +{ + int err = errno; + va_list ap; + /* use verror module to print error message */ va_start (ap, fmt); verror (0, err, fmt, ap); @@ -163,12 +179,13 @@ copy_attr_by_fd (char const *src_path, i { struct error_context ctx = { - .error = copy_attr_error, + .error = x->require_preserve_xattr ? copy_attr_allerror : copy_attr_error, .quote = copy_attr_quote, .quote_free = copy_attr_free }; return 0 == attr_copy_fd (src_path, src_fd, dst_path, dst_fd, 0, - x->reduce_diagnostics ? NULL : &ctx); + (x->reduce_diagnostics + && !x->require_preserve_xattr) ? NULL : &ctx); } static bool @@ -177,12 +194,13 @@ copy_attr_by_name (char const *src_path, { struct error_context ctx = { - .error = copy_attr_error, + .error = x->require_preserve_xattr ? copy_attr_allerror : copy_attr_error, .quote = copy_attr_quote, .quote_free = copy_attr_free }; return 0 == attr_copy_file (src_path, dst_path, 0, - x-> reduce_diagnostics ? NULL :&ctx); + (x-> reduce_diagnostics + && !x->require_preserve_xattr) ? NULL :&ctx); } #else /* USE_XATTR */ @@ -465,7 +483,7 @@ copy_reg (char const *src_name, char con security_context_t con = NULL; if (getfscreatecon (&con) < 0) { - if (!x->reduce_diagnostics) + if (!x->reduce_diagnostics || x->require_preserve_context) error (0, errno, _("failed to get file system create context")); if (x->require_preserve_context) { @@ -478,7 +496,7 @@ copy_reg (char const *src_name, char con { if (fsetfilecon (dest_desc, con) < 0) { - if (!x->reduce_diagnostics) + if (!x->reduce_diagnostics || x->require_preserve_context) error (0, errno, _("failed to set the security context of %s to %s"), quote_n (0, dst_name), quote_n (1, con)); @@ -1731,7 +1749,7 @@ copy_internal (char const *src_name, cha { if (setfscreatecon (con) < 0) { - if (!x->reduce_diagnostics) + if (!x->reduce_diagnostics || x->require_preserve_context) error (0, errno, _("failed to set default file creation context to %s"), quote (con)); @@ -1745,9 +1763,9 @@ copy_internal (char const *src_name, cha } else { - if (errno != ENOTSUP && errno != ENODATA) + if ((errno != ENOTSUP && errno != ENODATA) || x->require_preserve_context) { - if (!x->reduce_diagnostics) + if (!x->reduce_diagnostics || x->require_preserve_context) error (0, errno, _("failed to get security context of %s"), quote (src_name)); coreutils-i18n.patch: Index: coreutils-i18n.patch =================================================================== RCS file: /cvs/extras/rpms/coreutils/F-11/coreutils-i18n.patch,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- coreutils-i18n.patch 1 Apr 2009 11:14:30 -0000 1.33 +++ coreutils-i18n.patch 8 Jul 2009 14:44:10 -0000 1.34 @@ -433,7 +433,7 @@ diff -urN coreutils-6.12-orig/tests/Make + + memset (&state, 0, sizeof (mbstate_t)); + -+ if (ptr == lim) ++ if (ptr >= lim) + return; + + if (tab != NULL) @@ -464,7 +464,7 @@ diff -urN coreutils-6.12-orig/tests/Make + } + } + -+ if (sep == lim) ++ if (sep >= lim) + break; + + extract_field (line, ptr, sep - ptr); @@ -505,7 +505,7 @@ diff -urN coreutils-6.12-orig/tests/Make + mblength = (mblength < 1) ? 1 : mblength; + + sep = ptr + mblength; -+ while (sep != lim) ++ while (sep < lim) + { + state_bak = state; + mblength = mbrtowc (&wc, sep, lim - sep + 1, &state); @@ -524,7 +524,7 @@ diff -urN coreutils-6.12-orig/tests/Make + } + + extract_field (line, ptr, sep - ptr); -+ if (sep == lim) ++ if (sep >= lim) + return; + + state_bak = state; @@ -538,7 +538,7 @@ diff -urN coreutils-6.12-orig/tests/Make + mblength = (mblength < 1) ? 1 : mblength; + + ptr = sep + mblength; -+ while (ptr != lim) ++ while (ptr < lim) + { + state_bak = state; + mblength = mbrtowc (&wc, ptr, lim - ptr + 1, &state); @@ -556,7 +556,7 @@ diff -urN coreutils-6.12-orig/tests/Make + ptr += mblength; + } + } -+ while (ptr != lim); ++ while (ptr < lim); + } + + extract_field (line, ptr, lim - ptr); @@ -2204,7 +2204,7 @@ diff -urNp coreutils-6.11-orig/src/join. { struct keyfield const *key = keylist; -@@ -1875,6 +2265,179 @@ +@@ -1875,6 +2265,181 @@ return key->reverse ? -diff : diff; } @@ -2254,6 +2254,8 @@ diff -urNp coreutils-6.11-orig/src/join. + (texta, textb)); + *lima = savea, *limb = saveb; + } ++ else if (key->version) ++ diff = compare_version (texta, lena, textb, lenb); + else if (key->month) + diff = getmonth (texta, lena) - getmonth (textb, lenb); + else @@ -2384,7 +2386,7 @@ diff -urNp coreutils-6.11-orig/src/join. /* Compare two lines A and B, returning negative, zero, or positive depending on whether A compares less than, equal to, or greater than B. */ -@@ -2744,7 +3305,7 @@ +@@ -2744,7 +3307,7 @@ initialize_exit_failure (SORT_FAILURE); hard_LC_COLLATE = hard_locale (LC_COLLATE); @@ -2393,7 +2395,7 @@ diff -urNp coreutils-6.11-orig/src/join. hard_LC_TIME = hard_locale (LC_TIME); #endif -@@ -2765,6 +3326,27 @@ +@@ -2765,6 +3328,27 @@ thousands_sep = -1; } @@ -2421,7 +2423,7 @@ diff -urNp coreutils-6.11-orig/src/join. have_read_stdin = false; inittables (); -@@ -3015,13 +3597,35 @@ +@@ -3015,13 +3599,35 @@ case 't': { @@ -2461,7 +2463,7 @@ diff -urNp coreutils-6.11-orig/src/join. else { /* Provoke with `sort -txx'. Complain about -@@ -3032,9 +3636,12 @@ +@@ -3032,9 +3638,12 @@ quote (optarg)); } } Index: coreutils.spec =================================================================== RCS file: /cvs/extras/rpms/coreutils/F-11/coreutils.spec,v retrieving revision 1.257 retrieving revision 1.258 diff -u -p -r1.257 -r1.258 --- coreutils.spec 1 Apr 2009 11:14:30 -0000 1.257 +++ coreutils.spec 8 Jul 2009 14:44:11 -0000 1.258 @@ -1,7 +1,7 @@ Summary: A set of basic GNU tools commonly used in shell scripts Name: coreutils Version: 7.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: System Environment/Base Url: http://www.gnu.org/software/coreutils/ @@ -23,6 +23,7 @@ Source203: coreutils-runuser-l.pamd # Our patches Patch100: coreutils-6.10-configuration.patch Patch101: coreutils-6.10-manpages.patch +Patch102: coreutils-silentmv.patch # sh-utils Patch703: sh-utils-2.0.11-dateman.patch @@ -102,6 +103,7 @@ the old GNU fileutils, sh-utils, and tex # Our patches %patch100 -p1 -b .configure %patch101 -p1 -b .manpages +%patch102 -p1 -b .silentmv # sh-utils %patch703 -p1 -b .dateman @@ -309,6 +311,16 @@ fi /sbin/runuser %changelog +* Wed Jul 09 2009 Ondrej Vasik 7.2-2 +- do not ignore sort's version sort for multibyte locales + (#509688) +- fix segfaults in join (i18n patch) when using multibyte + locales(#497368) +- make mv xattr support failures silent (as is done for + cp -a) - #496142 +- do not silence xattr/selinux failures when preserving + those attributes is required + * Tue Mar 31 2009 Ondrej Vasik 7.2-1 - New upstream bugfix release 7.2 - removed applied patches From kkofler at fedoraproject.org Wed Jul 8 15:21:45 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Wed, 8 Jul 2009 15:21:45 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs-4.1.96-parallel_devel.patch, 1.2, 1.3 kdelibs.spec, 1.484, 1.485 Message-ID: <20090708152145.805AF11C02C4@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26354/devel Modified Files: kdelibs-4.1.96-parallel_devel.patch kdelibs.spec Log Message: * Wed Jul 08 2009 Kevin Kofler - 4.2.95-4 - fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) kdelibs-4.1.96-parallel_devel.patch: Index: kdelibs-4.1.96-parallel_devel.patch =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs-4.1.96-parallel_devel.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdelibs-4.1.96-parallel_devel.patch 7 Jan 2009 22:02:34 -0000 1.2 +++ kdelibs-4.1.96-parallel_devel.patch 8 Jul 2009 15:21:44 -0000 1.3 @@ -208,3 +208,12 @@ diff -up kdelibs-4.1.96/kdewidgets/CMake set(kdewidgets_PART_SRCS classpreviews.cpp +@@ -66,7 +66,7 @@ + + add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp + COMMAND "${MAKEKDEWIDGETS_EXECUTABLE}" -o ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp ${CMAKE_CURRENT_SOURCE_DIR}/kde3support.widgets +- MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets) ++ MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets4) + + set(kde3supportwidgets_PART_SRCS + classpreviews.cpp Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.484 retrieving revision 1.485 diff -u -p -r1.484 -r1.485 --- kdelibs.spec 4 Jul 2009 00:52:49 -0000 1.484 +++ kdelibs.spec 8 Jul 2009 15:21:44 -0000 1.485 @@ -5,7 +5,7 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.95 -Release: 3%{?dist} +Release: 4%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -401,6 +401,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 08 2009 Kevin Kofler - 4.2.95-4 +- fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) + * Fri Jul 03 2009 Rex Dieter - 4.2.95-3 - plasma animation crasher (kdebug#198338) From kkofler at fedoraproject.org Wed Jul 8 15:22:31 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Wed, 8 Jul 2009 15:22:31 +0000 (UTC) Subject: rpms/kdelibs/F-11 kdelibs-4.1.96-parallel_devel.patch, 1.2, 1.3 kdelibs.spec, 1.483, 1.484 Message-ID: <20090708152231.62FF411C02C4@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26564/F-11 Modified Files: kdelibs-4.1.96-parallel_devel.patch kdelibs.spec Log Message: * Wed Jul 08 2009 Kevin Kofler - 4.2.95-4 - fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) I don't think this is worth building an update for. kdelibs-4.1.96-parallel_devel.patch: Index: kdelibs-4.1.96-parallel_devel.patch =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-11/kdelibs-4.1.96-parallel_devel.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdelibs-4.1.96-parallel_devel.patch 7 Jan 2009 22:02:34 -0000 1.2 +++ kdelibs-4.1.96-parallel_devel.patch 8 Jul 2009 15:22:30 -0000 1.3 @@ -208,3 +208,12 @@ diff -up kdelibs-4.1.96/kdewidgets/CMake set(kdewidgets_PART_SRCS classpreviews.cpp +@@ -66,7 +66,7 @@ + + add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp + COMMAND "${MAKEKDEWIDGETS_EXECUTABLE}" -o ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp ${CMAKE_CURRENT_SOURCE_DIR}/kde3support.widgets +- MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets) ++ MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets4) + + set(kde3supportwidgets_PART_SRCS + classpreviews.cpp Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-11/kdelibs.spec,v retrieving revision 1.483 retrieving revision 1.484 diff -u -p -r1.483 -r1.484 --- kdelibs.spec 15 Jun 2009 19:40:10 -0000 1.483 +++ kdelibs.spec 8 Jul 2009 15:22:31 -0000 1.484 @@ -1,6 +1,6 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.4 -Release: 3%{?dist} +Release: 4%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -408,6 +408,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 08 2009 Kevin Kofler - 4.2.4-4 +- fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) + * Mon Jun 15 2009 Rex Dieter 4.2.4-3 - fixPopupForPlasmaboard.patch From dwalsh at fedoraproject.org Wed Jul 8 15:37:58 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 8 Jul 2009 15:37:58 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch, 1.25, 1.26 selinux-policy.spec, 1.878, 1.879 Message-ID: <20090708153758.7D0DF11C02C4@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30018 Modified Files: policy-F12.patch selinux-policy.spec Log Message: * Wed Jul 8 2009 Dan Walsh 3.6.21-3 - Fixes for xguest policy-F12.patch: Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- policy-F12.patch 7 Jul 2009 21:06:52 -0000 1.25 +++ policy-F12.patch 8 Jul 2009 15:37:56 -0000 1.26 @@ -2833,8 +2833,27 @@ diff -b -B --ignore-all-space --exclude- +/usr/lib64/[^/]*firefox[^/]*/firefox -- gen_context(system_u:object_r:mozilla_exec_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/mozilla.if serefpolicy-3.6.21/policy/modules/apps/mozilla.if --- nsaserefpolicy/policy/modules/apps/mozilla.if 2008-11-11 16:13:41.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/apps/mozilla.if 2009-07-01 10:43:35.000000000 -0400 -@@ -64,6 +64,7 @@ ++++ serefpolicy-3.6.21/policy/modules/apps/mozilla.if 2009-07-08 11:19:59.000000000 -0400 +@@ -45,6 +45,18 @@ + relabel_dirs_pattern($2, mozilla_home_t, mozilla_home_t) + relabel_files_pattern($2, mozilla_home_t, mozilla_home_t) + relabel_lnk_files_pattern($2, mozilla_home_t, mozilla_home_t) ++ ++ mozilla_dbus_chat($2) ++ ++ userdom_manage_tmp_role($1, mozilla_t) ++ ++ optional_policy(` ++ nsplugin_role($1, mozilla_t) ++ ') ++ ++ optional_policy(` ++ pulseaudio_role($1, mozilla_t) ++ ') + ') + + ######################################## +@@ -64,6 +76,7 @@ allow $1 mozilla_home_t:dir list_dir_perms; allow $1 mozilla_home_t:file read_file_perms; @@ -2842,7 +2861,7 @@ diff -b -B --ignore-all-space --exclude- userdom_search_user_home_dirs($1) ') -@@ -83,7 +84,7 @@ +@@ -83,7 +96,7 @@ ') allow $1 mozilla_home_t:dir list_dir_perms; @@ -2853,8 +2872,24 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/mozilla.te serefpolicy-3.6.21/policy/modules/apps/mozilla.te --- nsaserefpolicy/policy/modules/apps/mozilla.te 2009-01-19 11:03:28.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/apps/mozilla.te 2009-07-01 10:43:35.000000000 -0400 -@@ -105,6 +105,7 @@ ++++ serefpolicy-3.6.21/policy/modules/apps/mozilla.te 2009-07-08 11:32:50.000000000 -0400 +@@ -59,6 +59,7 @@ + manage_files_pattern(mozilla_t, mozilla_home_t, mozilla_home_t) + manage_lnk_files_pattern(mozilla_t, mozilla_home_t, mozilla_home_t) + userdom_search_user_home_dirs(mozilla_t) ++userdom_user_home_dir_filetrans(mozilla_t, mozilla_home_t, dir) + + # Mozpluggerrc + allow mozilla_t mozilla_conf_t:file read_file_perms; +@@ -97,6 +98,7 @@ + corenet_tcp_connect_ftp_port(mozilla_t) + corenet_tcp_connect_ipp_port(mozilla_t) + corenet_tcp_connect_generic_port(mozilla_t) ++corenet_tcp_connect_soundd_port(mozilla_t) + corenet_sendrecv_http_client_packets(mozilla_t) + corenet_sendrecv_http_cache_client_packets(mozilla_t) + corenet_sendrecv_ftp_client_packets(mozilla_t) +@@ -105,6 +107,7 @@ # Should not need other ports corenet_dontaudit_tcp_sendrecv_generic_port(mozilla_t) corenet_dontaudit_tcp_bind_generic_port(mozilla_t) @@ -2862,7 +2897,16 @@ diff -b -B --ignore-all-space --exclude- dev_read_urand(mozilla_t) dev_read_rand(mozilla_t) -@@ -128,6 +129,7 @@ +@@ -113,6 +116,8 @@ + dev_dontaudit_rw_dri(mozilla_t) + dev_getattr_sysfs_dirs(mozilla_t) + ++domain_dontaudit_read_all_domains_state(mozilla_t) ++ + files_read_etc_runtime_files(mozilla_t) + files_read_usr_files(mozilla_t) + files_read_etc_files(mozilla_t) +@@ -128,6 +133,7 @@ fs_rw_tmpfs_files(mozilla_t) term_dontaudit_getattr_pty_dirs(mozilla_t) @@ -2870,15 +2914,28 @@ diff -b -B --ignore-all-space --exclude- logging_send_syslog_msg(mozilla_t) -@@ -143,6 +145,7 @@ - userdom_manage_user_tmp_dirs(mozilla_t) - userdom_manage_user_tmp_files(mozilla_t) - userdom_manage_user_tmp_sockets(mozilla_t) +@@ -137,12 +143,7 @@ + # Browse the web, connect to printer + sysnet_dns_name_resolve(mozilla_t) + +-userdom_manage_user_home_content_dirs(mozilla_t) +-userdom_manage_user_home_content_files(mozilla_t) +-userdom_manage_user_home_content_symlinks(mozilla_t) +-userdom_manage_user_tmp_dirs(mozilla_t) +-userdom_manage_user_tmp_files(mozilla_t) +-userdom_manage_user_tmp_sockets(mozilla_t) +userdom_use_user_ptys(mozilla_t) xserver_user_x_domain_template(mozilla, mozilla_t, mozilla_tmpfs_t) xserver_dontaudit_read_xdm_tmp_files(mozilla_t) -@@ -243,6 +246,8 @@ +@@ -239,10 +240,15 @@ + optional_policy(` + dbus_system_bus_client(mozilla_t) + dbus_session_bus_client(mozilla_t) ++ optional_policy(` ++ networkmanager_dbus_chat(mozilla_t) ++ ') + ') optional_policy(` gnome_stream_connect_gconf(mozilla_t) @@ -2887,7 +2944,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -263,5 +268,10 @@ +@@ -263,5 +269,10 @@ ') optional_policy(` @@ -2916,7 +2973,7 @@ diff -b -B --ignore-all-space --exclude- +/usr/lib(64)?/mozilla/plugins-wrapped(/.*)? gen_context(system_u:object_r:nsplugin_rw_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/nsplugin.if serefpolicy-3.6.21/policy/modules/apps/nsplugin.if --- nsaserefpolicy/policy/modules/apps/nsplugin.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/apps/nsplugin.if 2009-07-06 15:10:59.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/apps/nsplugin.if 2009-07-08 10:43:18.000000000 -0400 @@ -0,0 +1,313 @@ + +## policy for nsplugin @@ -3784,7 +3841,7 @@ diff -b -B --ignore-all-space --exclude- +/usr/bin/pulseaudio -- gen_context(system_u:object_r:pulseaudio_exec_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/pulseaudio.if serefpolicy-3.6.21/policy/modules/apps/pulseaudio.if --- nsaserefpolicy/policy/modules/apps/pulseaudio.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/apps/pulseaudio.if 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/apps/pulseaudio.if 2009-07-08 10:50:31.000000000 -0400 @@ -0,0 +1,148 @@ + +## policy for pulseaudio @@ -8612,8 +8669,26 @@ diff -b -B --ignore-all-space --exclude- userdom_manage_user_home_content_files(webadm_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/roles/xguest.te serefpolicy-3.6.21/policy/modules/roles/xguest.te --- nsaserefpolicy/policy/modules/roles/xguest.te 2009-04-06 12:42:08.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/roles/xguest.te 2009-07-01 10:43:35.000000000 -0400 -@@ -67,7 +67,11 @@ ++++ serefpolicy-3.6.21/policy/modules/roles/xguest.te 2009-07-08 11:32:12.000000000 -0400 +@@ -36,11 +36,17 @@ + # Local policy + # + ++# Dontaudit fusermount ++dontaudit xguest_t self:capability sys_admin; ++ + # Allow mounting of file systems + optional_policy(` + tunable_policy(`xguest_mount_media',` + kernel_read_fs_sysctls(xguest_t) + ++ # allow fusermount ++ allow xguest_t self:capability sys_admin; ++ + files_dontaudit_getattr_boot_dirs(xguest_t) + files_search_mnt(xguest_t) + +@@ -67,7 +73,11 @@ ') optional_policy(` @@ -8626,7 +8701,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -75,9 +79,13 @@ +@@ -75,9 +85,13 @@ ') optional_policy(` @@ -10209,15 +10284,16 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/apm.te serefpolicy-3.6.21/policy/modules/services/apm.te --- nsaserefpolicy/policy/modules/services/apm.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/apm.te 2009-07-01 10:43:35.000000000 -0400 -@@ -39,6 +39,7 @@ - # - - allow apm_t self:capability { dac_override sys_admin }; -+dontaudit apm_t self:capability sys_ptrace; - - kernel_read_system_state(apm_t) - ++++ serefpolicy-3.6.21/policy/modules/services/apm.te 2009-07-08 10:40:06.000000000 -0400 +@@ -60,7 +60,7 @@ + # mknod: controlling an orderly resume of PCMCIA requires creating device + # nodes 254,{0,1,2} for some reason. + allow apmd_t self:capability { sys_admin sys_nice sys_time kill mknod }; +-dontaudit apmd_t self:capability { setuid dac_override dac_read_search sys_tty_config }; ++dontaudit apmd_t self:capability { setuid dac_override dac_read_search sys_ptrace sys_tty_config }; + allow apmd_t self:process { signal_perms getsession }; + allow apmd_t self:fifo_file rw_fifo_file_perms; + allow apmd_t self:unix_dgram_socket create_socket_perms; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/automount.if serefpolicy-3.6.21/policy/modules/services/automount.if --- nsaserefpolicy/policy/modules/services/automount.if 2008-10-14 11:58:09.000000000 -0400 +++ serefpolicy-3.6.21/policy/modules/services/automount.if 2009-07-01 10:43:35.000000000 -0400 @@ -17486,7 +17562,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postgresql.te serefpolicy-3.6.21/policy/modules/services/postgresql.te --- nsaserefpolicy/policy/modules/services/postgresql.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/postgresql.te 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/postgresql.te 2009-07-07 16:27:00.000000000 -0400 @@ -32,6 +32,9 @@ type postgresql_etc_t; files_config_file(postgresql_etc_t) @@ -17517,6 +17593,14 @@ diff -b -B --ignore-all-space --exclude- corenet_sendrecv_postgresql_server_packets(postgresql_t) corenet_sendrecv_auth_client_packets(postgresql_t) +@@ -247,6 +253,7 @@ + init_read_utmp(postgresql_t) + + logging_send_syslog_msg(postgresql_t) ++logging_send_audit_msgs(postgresql_t) + + miscfiles_read_localization(postgresql_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ppp.fc serefpolicy-3.6.21/policy/modules/services/ppp.fc --- nsaserefpolicy/policy/modules/services/ppp.fc 2008-09-11 11:28:34.000000000 -0400 +++ serefpolicy-3.6.21/policy/modules/services/ppp.fc 2009-07-01 10:43:36.000000000 -0400 @@ -19565,7 +19649,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/sendmail.te serefpolicy-3.6.21/policy/modules/services/sendmail.te --- nsaserefpolicy/policy/modules/services/sendmail.te 2009-01-19 11:06:49.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/services/sendmail.te 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/sendmail.te 2009-07-07 17:16:43.000000000 -0400 @@ -20,13 +20,17 @@ mta_mailserver_delivery(sendmail_t) mta_mailserver_sender(sendmail_t) @@ -19732,7 +19816,7 @@ diff -b -B --ignore-all-space --exclude- + +optional_policy(` + mta_etc_filetrans_aliases(unconfined_sendmail_t) -+ unconfined_domain(unconfined_sendmail_t) ++ unconfined_domain_noaudit(unconfined_sendmail_t) +') -dontaudit sendmail_t admin_tty_type:chr_file { getattr ioctl }; @@ -22746,7 +22830,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.te serefpolicy-3.6.21/policy/modules/services/xserver.te --- nsaserefpolicy/policy/modules/services/xserver.te 2009-06-26 13:59:19.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/services/xserver.te 2009-07-07 15:47:58.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/services/xserver.te 2009-07-08 10:50:38.000000000 -0400 @@ -34,6 +34,13 @@ ## @@ -23173,7 +23257,7 @@ diff -b -B --ignore-all-space --exclude- hostname_exec(xdm_t) ') -@@ -542,6 +650,28 @@ +@@ -542,6 +650,29 @@ ') optional_policy(` @@ -23185,6 +23269,7 @@ diff -b -B --ignore-all-space --exclude- + +optional_policy(` + pulseaudio_exec(xdm_t) ++ pulseaudio_dbus_chat(xdm_t) +') + +# On crash gdm execs gdb to dump stack @@ -23202,7 +23287,7 @@ diff -b -B --ignore-all-space --exclude- seutil_sigchld_newrole(xdm_t) ') -@@ -550,8 +680,9 @@ +@@ -550,8 +681,9 @@ ') optional_policy(` @@ -23214,7 +23299,7 @@ diff -b -B --ignore-all-space --exclude- ifndef(`distro_redhat',` allow xdm_t self:process { execheap execmem }; -@@ -560,7 +691,6 @@ +@@ -560,7 +692,6 @@ ifdef(`distro_rhel4',` allow xdm_t self:process { execheap execmem }; ') @@ -23222,7 +23307,7 @@ diff -b -B --ignore-all-space --exclude- optional_policy(` userhelper_dontaudit_search_config(xdm_t) -@@ -571,6 +701,10 @@ +@@ -571,6 +702,10 @@ ') optional_policy(` @@ -23233,7 +23318,7 @@ diff -b -B --ignore-all-space --exclude- xfs_stream_connect(xdm_t) ') -@@ -587,7 +721,7 @@ +@@ -587,7 +722,7 @@ # execheap needed until the X module loader is fixed. # NVIDIA Needs execstack @@ -23242,7 +23327,7 @@ diff -b -B --ignore-all-space --exclude- dontaudit xserver_t self:capability chown; allow xserver_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execstack execheap }; allow xserver_t self:memprotect mmap_zero; -@@ -602,9 +736,11 @@ +@@ -602,9 +737,11 @@ allow xserver_t self:unix_stream_socket { create_stream_socket_perms connectto }; allow xserver_t self:tcp_socket create_stream_socket_perms; allow xserver_t self:udp_socket create_socket_perms; @@ -23254,7 +23339,7 @@ diff -b -B --ignore-all-space --exclude- allow xserver_t { input_xevent_t input_xevent_type }:x_event send; -@@ -616,13 +752,14 @@ +@@ -616,13 +753,14 @@ type_transition xserver_t xserver_t:{ x_drawable x_colormap } rootwindow_t; allow xserver_t { rootwindow_t x_domain }:x_drawable send; @@ -23270,7 +23355,7 @@ diff -b -B --ignore-all-space --exclude- manage_dirs_pattern(xserver_t, xserver_tmpfs_t, xserver_tmpfs_t) manage_files_pattern(xserver_t, xserver_tmpfs_t, xserver_tmpfs_t) -@@ -635,9 +772,19 @@ +@@ -635,9 +773,19 @@ manage_lnk_files_pattern(xserver_t, xkb_var_lib_t, xkb_var_lib_t) files_search_var_lib(xserver_t) @@ -23290,7 +23375,7 @@ diff -b -B --ignore-all-space --exclude- kernel_read_system_state(xserver_t) kernel_read_device_sysctls(xserver_t) -@@ -680,9 +827,14 @@ +@@ -680,9 +828,14 @@ dev_rw_xserver_misc(xserver_t) # read events - the synaptics touchpad driver reads raw events dev_rw_input_dev(xserver_t) @@ -23305,7 +23390,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(xserver_t) files_read_etc_runtime_files(xserver_t) -@@ -697,8 +849,12 @@ +@@ -697,8 +850,12 @@ fs_search_nfs(xserver_t) fs_search_auto_mountpoints(xserver_t) fs_search_ramfs(xserver_t) @@ -23318,7 +23403,7 @@ diff -b -B --ignore-all-space --exclude- selinux_validate_context(xserver_t) selinux_compute_access_vector(xserver_t) -@@ -720,6 +876,7 @@ +@@ -720,6 +877,7 @@ miscfiles_read_localization(xserver_t) miscfiles_read_fonts(xserver_t) @@ -23326,7 +23411,7 @@ diff -b -B --ignore-all-space --exclude- modutils_domtrans_insmod(xserver_t) -@@ -742,7 +899,7 @@ +@@ -742,7 +900,7 @@ ') ifdef(`enable_mls',` @@ -23335,7 +23420,7 @@ diff -b -B --ignore-all-space --exclude- range_transition xserver_t xserver_t:x_drawable s0 - mls_systemhigh; ') -@@ -774,12 +931,20 @@ +@@ -774,12 +932,20 @@ ') optional_policy(` @@ -23357,7 +23442,7 @@ diff -b -B --ignore-all-space --exclude- unconfined_domtrans(xserver_t) ') -@@ -806,7 +971,7 @@ +@@ -806,7 +972,7 @@ allow xserver_t xdm_var_lib_t:file { getattr read }; dontaudit xserver_t xdm_var_lib_t:dir search; @@ -23366,7 +23451,7 @@ diff -b -B --ignore-all-space --exclude- # Label pid and temporary files with derived types. manage_files_pattern(xserver_t, xdm_tmp_t, xdm_tmp_t) -@@ -827,9 +992,14 @@ +@@ -827,9 +993,14 @@ # to read ROLE_home_t - examine this in more detail # (xauth?) userdom_read_user_home_content_files(xserver_t) @@ -23381,7 +23466,7 @@ diff -b -B --ignore-all-space --exclude- tunable_policy(`use_nfs_home_dirs',` fs_manage_nfs_dirs(xserver_t) fs_manage_nfs_files(xserver_t) -@@ -844,11 +1014,14 @@ +@@ -844,11 +1015,14 @@ optional_policy(` dbus_system_bus_client(xserver_t) @@ -23397,7 +23482,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -856,6 +1029,11 @@ +@@ -856,6 +1030,11 @@ rhgb_rw_tmpfs_files(xserver_t) ') @@ -23409,7 +23494,7 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # Rules common to all X window domains -@@ -881,6 +1059,8 @@ +@@ -881,6 +1060,8 @@ # X Server # can read server-owned resources allow x_domain xserver_t:x_resource read; @@ -23418,7 +23503,7 @@ diff -b -B --ignore-all-space --exclude- # can mess with own clients allow x_domain self:x_client { manage destroy }; -@@ -905,6 +1085,8 @@ +@@ -905,6 +1086,8 @@ # operations allowed on my windows allow x_domain self:x_drawable { create destroy getattr setattr read write show hide list_child add_child remove_child manage send receive }; @@ -23427,7 +23512,7 @@ diff -b -B --ignore-all-space --exclude- # X Colormaps # can use the default colormap allow x_domain rootwindow_t:x_colormap { read use add_color }; -@@ -972,17 +1154,49 @@ +@@ -972,17 +1155,49 @@ allow xserver_unconfined_type { x_domain xserver_t }:x_resource *; allow xserver_unconfined_type xevent_type:{ x_event x_synthetic_event } *; @@ -27864,7 +27949,7 @@ diff -b -B --ignore-all-space --exclude- +/dev/shm/mono.* gen_context(system_u:object_r:user_tmpfs_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.if serefpolicy-3.6.21/policy/modules/system/userdomain.if --- nsaserefpolicy/policy/modules/system/userdomain.if 2009-06-26 13:59:21.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/system/userdomain.if 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.21/policy/modules/system/userdomain.if 2009-07-08 11:19:36.000000000 -0400 @@ -30,8 +30,9 @@ ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.878 retrieving revision 1.879 diff -u -p -r1.878 -r1.879 --- selinux-policy.spec 7 Jul 2009 21:06:52 -0000 1.878 +++ selinux-policy.spec 8 Jul 2009 15:37:57 -0000 1.879 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.21 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Wed Jul 8 2009 Dan Walsh 3.6.21-3 +- Fixes for xguest + * Tue Jul 7 2009 Tom "spot" Callaway 3.6.21-2 - fix multiple directory ownership of mandirs From pkgdb at fedoraproject.org Wed Jul 8 16:23:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:13 +0000 Subject: [pkgdb] R-RM2 was added for denisarnaud Message-ID: <20090708162313.36E9610F897@bastion2.fedora.phx.redhat.com> tibbs has added Package R-RM2 with summary Revenue Management and Pricing for R tibbs has approved Package R-RM2 tibbs has added a Fedora devel branch for R-RM2 with an owner of denisarnaud tibbs has approved R-RM2 in Fedora devel tibbs has approved Package R-RM2 tibbs has set commit to Approved for 107427 on R-RM2 (Fedora devel) tibbs has set checkout to Approved for 107427 on R-RM2 (Fedora devel) tibbs has set build to Approved for 107427 on R-RM2 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From pkgdb at fedoraproject.org Wed Jul 8 16:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:14 +0000 Subject: [pkgdb] R-RM2 summary updated by tibbs Message-ID: <20090708162314.449B110F8A3@bastion2.fedora.phx.redhat.com> tibbs set package R-RM2 summary to Revenue Management and Pricing for R To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From pkgdb at fedoraproject.org Wed Jul 8 16:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:14 +0000 Subject: [pkgdb] R-RM2 (Fedora, 11) updated by tibbs Message-ID: <20090708162314.4872C10F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for R-RM2 tibbs has set commit to Approved for 107427 on R-RM2 (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on R-RM2 (Fedora EPEL 5) tibbs has set build to Approved for 107427 on R-RM2 (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From pkgdb at fedoraproject.org Wed Jul 8 16:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:14 +0000 Subject: [pkgdb] R-RM2 (Fedora, 11) updated by tibbs Message-ID: <20090708162314.6283510F8AF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for R-RM2 tibbs has set commit to Approved for 107427 on R-RM2 (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on R-RM2 (Fedora EPEL 4) tibbs has set build to Approved for 107427 on R-RM2 (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From pkgdb at fedoraproject.org Wed Jul 8 16:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:14 +0000 Subject: [pkgdb] R-RM2 (Fedora, 11) updated by tibbs Message-ID: <20090708162314.58E1C10F8AB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for R-RM2 tibbs has set commit to Approved for 107427 on R-RM2 (Fedora 10) tibbs has set checkout to Approved for 107427 on R-RM2 (Fedora 10) tibbs has set build to Approved for 107427 on R-RM2 (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From tibbs at fedoraproject.org Wed Jul 8 16:23:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:21 +0000 (UTC) Subject: rpms/R-RM2 - New directory Message-ID: <20090708162321.2458E11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/R-RM2 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKy9798/rpms/R-RM2 Log Message: Directory /cvs/pkgs/rpms/R-RM2 added to the repository From pkgdb at fedoraproject.org Wed Jul 8 16:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:14 +0000 Subject: [pkgdb] R-RM2 (Fedora, 11) updated by tibbs Message-ID: <20090708162314.6C48410F8B2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for R-RM2 tibbs has set commit to Approved for 107427 on R-RM2 (Fedora 11) tibbs has set checkout to Approved for 107427 on R-RM2 (Fedora 11) tibbs has set build to Approved for 107427 on R-RM2 (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-RM2 From tibbs at fedoraproject.org Wed Jul 8 16:23:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:21 +0000 (UTC) Subject: rpms/R-RM2/devel - New directory Message-ID: <20090708162321.4D52711C02C8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/R-RM2/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKy9798/rpms/R-RM2/devel Log Message: Directory /cvs/pkgs/rpms/R-RM2/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:23:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:26 +0000 (UTC) Subject: rpms/R-RM2/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708162326.C0C8F11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/R-RM2/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKy9798/rpms/R-RM2/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module R-RM2 --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: R-RM2 # $Id: Makefile,v 1.1 2009/07/08 16:23:26 tibbs Exp $ NAME := R-RM2 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Wed Jul 8 16:23:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:26 +0000 (UTC) Subject: rpms/R-RM2 Makefile,NONE,1.1 Message-ID: <20090708162326.8179611C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/R-RM2 In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKy9798/rpms/R-RM2 Added Files: Makefile Log Message: Setup of module R-RM2 --- NEW FILE Makefile --- # Top level Makefile for module R-RM2 all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Wed Jul 8 16:23:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:46 +0000 Subject: [pkgdb] perl-CGI-Application-Server was added for eseyman Message-ID: <20090708162346.ACCC210F88D@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-CGI-Application-Server with summary Simple HTTP server for developing with CGI::Application tibbs has approved Package perl-CGI-Application-Server tibbs has added a Fedora devel branch for perl-CGI-Application-Server with an owner of eseyman tibbs has approved perl-CGI-Application-Server in Fedora devel tibbs has approved Package perl-CGI-Application-Server tibbs has set commit to Approved for 107427 on perl-CGI-Application-Server (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Server (Fedora devel) tibbs has set build to Approved for 107427 on perl-CGI-Application-Server (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Server From pkgdb at fedoraproject.org Wed Jul 8 16:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:48 +0000 Subject: [pkgdb] perl-CGI-Application-Server summary updated by tibbs Message-ID: <20090708162348.868CC10F89B@bastion2.fedora.phx.redhat.com> tibbs set package perl-CGI-Application-Server summary to Simple HTTP server for developing with CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Server From pkgdb at fedoraproject.org Wed Jul 8 16:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:48 +0000 Subject: [pkgdb] perl-CGI-Application-Server (Fedora, 10) updated by tibbs Message-ID: <20090708162348.8E8D910F8A4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-CGI-Application-Server tibbs has set commit to Approved for 107427 on perl-CGI-Application-Server (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Server (Fedora 10) tibbs has set build to Approved for 107427 on perl-CGI-Application-Server (Fedora 10) tibbs approved watchbugzilla on perl-CGI-Application-Server (Fedora 10) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Server (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Server From pkgdb at fedoraproject.org Wed Jul 8 16:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:48 +0000 Subject: [pkgdb] perl-CGI-Application-Server (Fedora, 10) updated by tibbs Message-ID: <20090708162348.917C010F8BB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-CGI-Application-Server tibbs has set commit to Approved for 107427 on perl-CGI-Application-Server (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Server (Fedora 11) tibbs has set build to Approved for 107427 on perl-CGI-Application-Server (Fedora 11) tibbs approved watchbugzilla on perl-CGI-Application-Server (Fedora 11) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Server (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Server From pkgdb at fedoraproject.org Wed Jul 8 16:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:23:48 +0000 Subject: [pkgdb] perl-CGI-Application-Server (Fedora, 10) updated by tibbs Message-ID: <20090708162348.A484410F8BE@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-CGI-Application-Server (Fedora devel) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Server (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Server From tibbs at fedoraproject.org Wed Jul 8 16:23:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:53 +0000 (UTC) Subject: rpms/perl-CGI-Application-Server - New directory Message-ID: <20090708162353.13A0811C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Server In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsK10245/rpms/perl-CGI-Application-Server Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Server added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:23:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:53 +0000 (UTC) Subject: rpms/perl-CGI-Application-Server/devel - New directory Message-ID: <20090708162353.354B511C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Server/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsK10245/rpms/perl-CGI-Application-Server/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Server/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:23:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:58 +0000 (UTC) Subject: rpms/perl-CGI-Application-Server Makefile,NONE,1.1 Message-ID: <20090708162358.5627711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Server In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsK10245/rpms/perl-CGI-Application-Server Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Server --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Server all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:23:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:23:58 +0000 (UTC) Subject: rpms/perl-CGI-Application-Server/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708162358.B2B1F11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Server/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsK10245/rpms/perl-CGI-Application-Server/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Server --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Server # $Id: Makefile,v 1.1 2009/07/08 16:23:58 tibbs Exp $ NAME := perl-CGI-Application-Server SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:24:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:13 +0000 Subject: [pkgdb] perl-CGI-Application-Standard-Config was added for eseyman Message-ID: <20090708162413.1DDE510F8B2@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-CGI-Application-Standard-Config with summary Defines a standard configuration API for CGI::Application tibbs has approved Package perl-CGI-Application-Standard-Config tibbs has added a Fedora devel branch for perl-CGI-Application-Standard-Config with an owner of eseyman tibbs has approved perl-CGI-Application-Standard-Config in Fedora devel tibbs has approved Package perl-CGI-Application-Standard-Config tibbs has set commit to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora devel) tibbs has set build to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Standard-Config From pkgdb at fedoraproject.org Wed Jul 8 16:24:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:14 +0000 Subject: [pkgdb] perl-CGI-Application-Standard-Config summary updated by tibbs Message-ID: <20090708162414.AFCD010F87E@bastion2.fedora.phx.redhat.com> tibbs set package perl-CGI-Application-Standard-Config summary to Defines a standard configuration API for CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Standard-Config From pkgdb at fedoraproject.org Wed Jul 8 16:24:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:14 +0000 Subject: [pkgdb] perl-CGI-Application-Standard-Config (Fedora, 10) updated by tibbs Message-ID: <20090708162414.B2E9810F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-CGI-Application-Standard-Config tibbs has set commit to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 10) tibbs has set build to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 10) tibbs approved watchbugzilla on perl-CGI-Application-Standard-Config (Fedora 10) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Standard-Config (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Standard-Config From pkgdb at fedoraproject.org Wed Jul 8 16:24:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:14 +0000 Subject: [pkgdb] perl-CGI-Application-Standard-Config (Fedora, 10) updated by tibbs Message-ID: <20090708162414.C0DCC10F8C9@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-CGI-Application-Standard-Config (Fedora devel) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Standard-Config (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Standard-Config From tibbs at fedoraproject.org Wed Jul 8 16:24:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:20 +0000 (UTC) Subject: rpms/perl-CGI-Application-Standard-Config - New directory Message-ID: <20090708162420.16BE711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB10552/rpms/perl-CGI-Application-Standard-Config Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config added to the repository From pkgdb at fedoraproject.org Wed Jul 8 16:24:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:14 +0000 Subject: [pkgdb] perl-CGI-Application-Standard-Config (Fedora, 10) updated by tibbs Message-ID: <20090708162414.D623710F8CD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-CGI-Application-Standard-Config tibbs has set commit to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 11) tibbs has set build to Approved for 107427 on perl-CGI-Application-Standard-Config (Fedora 11) tibbs approved watchbugzilla on perl-CGI-Application-Standard-Config (Fedora 11) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Standard-Config (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Standard-Config From tibbs at fedoraproject.org Wed Jul 8 16:24:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:20 +0000 (UTC) Subject: rpms/perl-CGI-Application-Standard-Config/devel - New directory Message-ID: <20090708162420.353EF11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB10552/rpms/perl-CGI-Application-Standard-Config/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:24:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:26 +0000 (UTC) Subject: rpms/perl-CGI-Application-Standard-Config Makefile,NONE,1.1 Message-ID: <20090708162426.78E9011C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB10552/rpms/perl-CGI-Application-Standard-Config Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Standard-Config --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Standard-Config all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:24:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:26 +0000 (UTC) Subject: rpms/perl-CGI-Application-Standard-Config/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708162426.EEE7D11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB10552/rpms/perl-CGI-Application-Standard-Config/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Standard-Config --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Standard-Config # $Id: Makefile,v 1.1 2009/07/08 16:24:26 tibbs Exp $ NAME := perl-CGI-Application-Standard-Config SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:24:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:48 +0000 Subject: [pkgdb] sendxmpp was added for ruben Message-ID: <20090708162448.F3BCB10F8BB@bastion2.fedora.phx.redhat.com> tibbs has added Package sendxmpp with summary A perl script to send xmpp messages tibbs has approved Package sendxmpp tibbs has added a Fedora devel branch for sendxmpp with an owner of ruben tibbs has approved sendxmpp in Fedora devel tibbs has approved Package sendxmpp tibbs has set commit to Approved for 107427 on sendxmpp (Fedora devel) tibbs has set checkout to Approved for 107427 on sendxmpp (Fedora devel) tibbs has set build to Approved for 107427 on sendxmpp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sendxmpp From pkgdb at fedoraproject.org Wed Jul 8 16:24:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:50 +0000 Subject: [pkgdb] sendxmpp summary updated by tibbs Message-ID: <20090708162450.2A25010F8C1@bastion2.fedora.phx.redhat.com> tibbs set package sendxmpp summary to A perl script to send xmpp messages To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sendxmpp From pkgdb at fedoraproject.org Wed Jul 8 16:24:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:50 +0000 Subject: [pkgdb] sendxmpp (Fedora, 11) updated by tibbs Message-ID: <20090708162450.356A410F8DD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for sendxmpp tibbs has set commit to Approved for 107427 on sendxmpp (Fedora 11) tibbs has set checkout to Approved for 107427 on sendxmpp (Fedora 11) tibbs has set build to Approved for 107427 on sendxmpp (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sendxmpp From pkgdb at fedoraproject.org Wed Jul 8 16:24:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:24:50 +0000 Subject: [pkgdb] sendxmpp (Fedora, 11) updated by tibbs Message-ID: <20090708162450.4454B10F8E0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for sendxmpp tibbs has set commit to Approved for 107427 on sendxmpp (Fedora 10) tibbs has set checkout to Approved for 107427 on sendxmpp (Fedora 10) tibbs has set build to Approved for 107427 on sendxmpp (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sendxmpp From tibbs at fedoraproject.org Wed Jul 8 16:24:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:56 +0000 (UTC) Subject: rpms/sendxmpp/devel - New directory Message-ID: <20090708162456.7CA7811C02C8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sendxmpp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr10918/rpms/sendxmpp/devel Log Message: Directory /cvs/pkgs/rpms/sendxmpp/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:24:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:24:56 +0000 (UTC) Subject: rpms/sendxmpp - New directory Message-ID: <20090708162456.32AE711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sendxmpp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr10918/rpms/sendxmpp Log Message: Directory /cvs/pkgs/rpms/sendxmpp added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:25:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:25:01 +0000 (UTC) Subject: rpms/sendxmpp Makefile,NONE,1.1 Message-ID: <20090708162501.E4D6211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sendxmpp In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr10918/rpms/sendxmpp Added Files: Makefile Log Message: Setup of module sendxmpp --- NEW FILE Makefile --- # Top level Makefile for module sendxmpp all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:25:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:25:02 +0000 (UTC) Subject: rpms/sendxmpp/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708162502.318B511C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sendxmpp/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr10918/rpms/sendxmpp/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module sendxmpp --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: sendxmpp # $Id: Makefile,v 1.1 2009/07/08 16:25:02 tibbs Exp $ NAME := sendxmpp SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From scop at fedoraproject.org Wed Jul 8 16:24:57 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 8 Jul 2009 16:24:57 +0000 (UTC) Subject: rpms/nethack-vultures/devel nethack-vultures-2.1.2-config.patch, NONE, 1.1 nethack-vultures-2.1.2-logging.patch, NONE, 1.1 nethack-vultures-2.1.2-tabfullscreen.patch, NONE, 1.1 nethack-vultures.logrotate, NONE, 1.1 .cvsignore, 1.9, 1.10 nethack-vultures.spec, 1.42, 1.43 sources, 1.8, 1.9 nethack-vultures-1.10.1-config.patch, 1.2, NONE nethack-vultures-1.10.1-log2stderr.patch, 1.1, NONE nethack-vultures-1.10.1-optflags.patch, 1.2, NONE nethack-vultures-1.11.0-config.patch, 1.3, NONE nethack-vultures-2.1.0-tabfullscreen.patch, 1.1, NONE Message-ID: <20090708162457.A89B111C02C4@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/nethack-vultures/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10930 Modified Files: .cvsignore nethack-vultures.spec sources Added Files: nethack-vultures-2.1.2-config.patch nethack-vultures-2.1.2-logging.patch nethack-vultures-2.1.2-tabfullscreen.patch nethack-vultures.logrotate Removed Files: nethack-vultures-1.10.1-config.patch nethack-vultures-1.10.1-log2stderr.patch nethack-vultures-1.10.1-optflags.patch nethack-vultures-1.11.0-config.patch nethack-vultures-2.1.0-tabfullscreen.patch Log Message: * Sat May 23 2009 Ville Skytt?? - 2.1.2-1 - Update to 2.1.2. - Patch to log in %{_var}/log/vultures. - Bring icon cache update scriptlets up to date with current guidelines. - Simplify and improve space savings by using hardlink. - Build with bison instead of byacc; bison is needed anyway. - Drop default patch fuzz, apply it selectively. nethack-vultures-2.1.2-config.patch: --- NEW FILE nethack-vultures-2.1.2-config.patch --- diff -up vultures-2.1.2/nethack/include/config.h~ vultures-2.1.2/nethack/include/config.h --- vultures-2.1.2/nethack/include/config.h~ 2008-07-16 16:59:02.000000000 +0300 +++ vultures-2.1.2/nethack/include/config.h 2009-05-23 01:06:43.000000000 +0300 @@ -153,10 +153,10 @@ #ifndef WIZARD /* allow for compile-time or Makefile changes */ # ifndef KR1ED -# define WIZARD "wizard" /* the person allowed to use the -D option */ +# define WIZARD "games" /* the person allowed to use the -D option */ # else # define WIZARD -# define WIZARD_NAME "wizard" +# define WIZARD_NAME "games" # endif #endif @@ -179,8 +179,8 @@ #ifdef UNIX /* path and file name extension for compression program */ -#define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ -#define COMPRESS_EXTENSION ".Z" /* compress's extension */ +#define COMPRESS "/usr/bin/bzip2" +#define COMPRESS_EXTENSION ".bz2" /* An example of one alternative you might want to use: */ /* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ /* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */ @@ -224,7 +224,7 @@ * since the user might create files in a directory of his choice. * Of course SECURE is meaningful only if HACKDIR is defined. */ -/* #define SECURE */ /* do setuid(getuid()) after chdir() */ +#define SECURE /* do setuid(getuid()) after chdir() */ /* * If it is desirable to limit the number of people that can play Hack @@ -310,7 +310,7 @@ typedef unsigned char uchar; * functions that have been macroized. */ -/* #define VISION_TABLES */ /* use vision tables generated at compile time */ +#define VISION_TABLES /* use vision tables generated at compile time */ #ifndef VISION_TABLES # ifndef NO_MACRO_CPATH # define MACRO_CPATH /* use clear_path macros instead of functions */ @@ -348,7 +348,7 @@ typedef unsigned char uchar; #endif #define EXP_ON_BOTL /* Show experience on bottom line */ -/* #define SCORE_ON_BOTL */ /* added by Gary Erickson (erickson at ucivax) */ +#define SCORE_ON_BOTL /* added by Gary Erickson (erickson at ucivax) */ /* * Section 5: EXPERIMENTAL STUFF diff -up vultures-2.1.2/nethack/include/unixconf.h~ vultures-2.1.2/nethack/include/unixconf.h --- vultures-2.1.2/nethack/include/unixconf.h~ 2008-07-16 16:59:02.000000000 +0300 +++ vultures-2.1.2/nethack/include/unixconf.h 2009-05-23 01:06:50.000000000 +0300 @@ -37,7 +37,7 @@ #define NETWORK /* if running on a networked system */ /* e.g. Suns sharing a playground through NFS */ /* #define SUNOS4 */ /* SunOS 4.x */ -/* #define LINUX */ /* Another Unix clone */ +#define LINUX /* Another Unix clone */ /* #define CYGWIN32 */ /* Unix on Win32 -- use with case sensitive defines */ /* #define GENIX */ /* Yet Another Unix Clone */ /* #define HISX */ /* Bull Unix for XPS Machines */ @@ -102,7 +102,7 @@ * If you want the static parts of your playground on a read-only file * system, define VAR_PLAYGROUND to be where the variable parts are kept. */ -/* #define VAR_PLAYGROUND "/var/lib/games/nethack" */ +#define VAR_PLAYGROUND "/var/lib/games/nethack" /* @@ -204,7 +204,7 @@ * You can also include any other strange options your compress needs. * If you have a normal compress, just leave it commented out. */ -/* #define COMPRESS_OPTIONS "-q" */ +#define COMPRESS_OPTIONS "-q9" #endif #define FCMASK 0660 /* file creation mask */ diff -up vultures-2.1.2/slashem/include/config.h~ vultures-2.1.2/slashem/include/config.h --- vultures-2.1.2/slashem/include/config.h~ 2008-07-16 16:58:59.000000000 +0300 +++ vultures-2.1.2/slashem/include/config.h 2009-05-23 01:06:53.000000000 +0300 @@ -209,10 +209,10 @@ #ifndef WIZARD /* allow for compile-time or Makefile changes */ # ifndef KR1ED -# define WIZARD "wizard" /* the person allowed to use the -D option */ +# define WIZARD "games" /* the person allowed to use the -D option */ # else # define WIZARD -# define WIZARD_NAME "wizard" +# define WIZARD_NAME "games" # endif #endif @@ -237,8 +237,8 @@ #ifdef UNIX /* path and file name extension for compression program */ -# define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ -# define COMPRESS_EXTENSION ".Z" /* compress's extension */ +#define COMPRESS "/usr/bin/bzip2" +#define COMPRESS_EXTENSION ".bz2" /* An example of one alternative you might want to use: */ /* # define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ @@ -278,7 +278,7 @@ # ifdef __APPLE__ # define HACKDIR "nethackdir" /* nethack directory */ # else -# define HACKDIR "." +# define HACKDIR "/usr/games/lib/nethackdir" # endif # endif @@ -289,7 +289,7 @@ * since the user might create files in a directory of his choice. * Of course SECURE is meaningful only if HACKDIR is defined. */ -/* #define SECURE */ /* do setuid(getuid()) after chdir() */ +#define SECURE /* do setuid(getuid()) after chdir() */ /* * If it is desirable to limit the number of people that can play Hack @@ -377,7 +377,7 @@ typedef unsigned char uchar; * functions that have been macroized. */ /* WAC Can be defined under DJGPP, even though it's DOS*/ -/*#define VISION_TABLES */ /* use vision tables generated at compile time */ +#define VISION_TABLES /* use vision tables generated at compile time */ #ifndef VISION_TABLES # ifndef NO_MACRO_CPATH # define MACRO_CPATH /* use clear_path macros instead of functions */ @@ -470,7 +470,7 @@ typedef unsigned char uchar; #endif #define EXP_ON_BOTL /* Show experience on bottom line */ -/* #define SCORE_ON_BOTL */ /* added by Gary Erickson (erickson at ucivax) */ +#define SCORE_ON_BOTL /* added by Gary Erickson (erickson at ucivax) */ /* #define BORG */ /* Works only under DOS */ /* #define KEEP_SAVE */ /* Keep savefiles after Restore (wac at intergate.bc.ca)*/ /* #define CHARON */ /* Charon's boat, enables Cerebus - not implemented */ diff -up vultures-2.1.2/slashem/include/unixconf.h~ vultures-2.1.2/slashem/include/unixconf.h --- vultures-2.1.2/slashem/include/unixconf.h~ 2008-07-16 16:58:59.000000000 +0300 +++ vultures-2.1.2/slashem/include/unixconf.h 2009-05-23 01:06:41.000000000 +0300 @@ -38,7 +38,7 @@ #define NETWORK /* if running on a networked system */ /* e.g. Suns sharing a playground through NFS */ /* #define SUNOS4 */ /* SunOS 4.x */ -/* #define LINUX */ /* Another Unix clone */ +#define LINUX /* Another Unix clone */ /* #define CYGWIN32 */ /* Unix on Win32 -- use with case sensitive defines */ /* #define GENIX */ /* Yet Another Unix Clone */ /* #define HISX */ /* Bull Unix for XPS Machines */ @@ -174,7 +174,7 @@ * If you want the static parts of your playground on a read-only file * system, define VAR_PLAYGROUND to be where the variable parts are kept. */ -/* #define VAR_PLAYGROUND "/var/lib/games/nethack" */ +#define VAR_PLAYGROUND "/var/lib/games/nethack" @@ -271,7 +271,7 @@ * You can also include any other strange options your compress needs. * If you have a normal compress, just leave it commented out. */ -/* #define COMPRESS_OPTIONS "-q" */ +#define COMPRESS_OPTIONS "-q9" #endif #define FCMASK 0660 /* file creation mask */ nethack-vultures-2.1.2-logging.patch: --- NEW FILE nethack-vultures-2.1.2-logging.patch --- diff -up vultures-2.1.2/vultures/vultures_gen.c~ vultures-2.1.2/vultures/vultures_gen.c --- vultures-2.1.2/vultures/vultures_gen.c~ 2008-07-16 16:59:01.000000000 +0300 +++ vultures-2.1.2/vultures/vultures_gen.c 2009-05-23 10:58:31.000000000 +0300 @@ -16,7 +16,7 @@ #include "vultures_opt.h" /* Remove/undefine this to have all log messages end up in stderr */ -#define V_LOG_FILENAME "vultures_log.txt" +#define V_LOG_FILENAME "/var/log/vultures/vultures_log.txt" extern void append_slash(char *); nethack-vultures-2.1.2-tabfullscreen.patch: --- NEW FILE nethack-vultures-2.1.2-tabfullscreen.patch --- diff -up vultures-2.1.2/vultures/vultures_sdl.c~ vultures-2.1.2/vultures/vultures_sdl.c --- vultures-2.1.2/vultures/vultures_sdl.c~ 2008-07-16 16:59:01.000000000 +0300 +++ vultures-2.1.2/vultures/vultures_sdl.c 2009-05-23 01:04:04.000000000 +0300 @@ -276,7 +276,7 @@ static void vultures_set_fullscreen(void newwidth = modes[bestmode]->w; } - vultures_screen = SDL_SetVideoMode(newwidth, newheight, 0, + vultures_screen = SDL_SetVideoMode(newwidth, newheight, 32, SDL_SWSURFACE | SDL_FULLSCREEN | SDL_ASYNCBLIT); vultures_win_resize(newwidth, newheight); @@ -286,7 +286,7 @@ static void vultures_set_fullscreen(void static void vultures_set_windowed() { - vultures_screen = SDL_SetVideoMode(vultures_opts.width, vultures_opts.height, 0, + vultures_screen = SDL_SetVideoMode(vultures_opts.width, vultures_opts.height, 32, SDL_SWSURFACE |SDL_ASYNCBLIT | SDL_RESIZABLE); vultures_win_resize(vultures_opts.width, vultures_opts.height); } --- NEW FILE nethack-vultures.logrotate --- /var/log/vultures/vultures_log.txt { monthly nocreate notifempty missingok } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nethack-vultures/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 7 Jun 2006 22:55:51 -0000 1.9 +++ .cvsignore 8 Jul 2009 16:24:56 -0000 1.10 @@ -1 +1 @@ -vultures-2.1.0-full.tar.bz2 +vultures-2.1.2-full.tar.bz2 Index: nethack-vultures.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethack-vultures/devel/nethack-vultures.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- nethack-vultures.spec 26 Feb 2009 05:15:47 -0000 1.42 +++ nethack-vultures.spec 8 Jul 2009 16:24:57 -0000 1.43 @@ -1,16 +1,18 @@ Name: nethack-vultures -Version: 2.1.0 -Release: 16%{?dist} +Version: 2.1.2 +Release: 1%{?dist} Summary: NetHack - Vulture's Eye and Vulture's Claw Group: Amusements/Games License: NGPL URL: http://www.darkarts.co.za/projects/vultures/ -Source0: http://www.darkarts.co.za/projects/vultures/downloads/vultures-%{version}/vultures-%{version}-full.tar.bz2 +Source0: http://downloads.usrsrc.org/vultures/%{version}/vultures-%{version}-full.tar.bz2 +Source1: %{name}.logrotate Patch0: %{name}-1.11.0-optflags.patch -Patch1: %{name}-1.11.0-config.patch +Patch1: %{name}-2.1.2-config.patch Patch2: %{name}-1.10.1-clawguide.patch -Patch3: %{name}-2.1.0-tabfullscreen.patch +Patch3: %{name}-2.1.2-tabfullscreen.patch +Patch4: %{name}-2.1.2-logging.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel @@ -20,18 +22,18 @@ BuildRequires: SDL_ttf-devel BuildRequires: SDL-static BuildRequires: libpng-devel BuildRequires: ncurses-devel -BuildRequires: byacc +BuildRequires: bison BuildRequires: flex BuildRequires: desktop-file-utils BuildRequires: groff BuildRequires: util-linux +BuildRequires: hardlink Requires: /usr/bin/bzip2 +Requires: logrotate Requires(pre): shadow-utils Requires(pre): coreutils Obsoletes: nethack-falconseye <= 1.9.4-6.a -%define _default_patch_fuzz 2 - %description Vulture's Eye is a mouse-driven interface for NetHack that enhances the visuals, audio and accessibility of the game, yet retains all the @@ -44,8 +46,9 @@ Claw, which is based on the Slash'Em cor %setup -q -n vultures-%{version} %patch0 -p1 %patch1 -p1 -%patch2 +%patch2 -F1 %patch3 -p1 +%patch4 -p1 sed -i -e 's|/usr/games/lib/nethackdir|%{_prefix}/games/vultureseye|g' \ nethack/doc/{nethack,recover}.6 nethack/include/config.h sed -i -e 's|/var/lib/games/nethack|%{_var}/games/vultureseye|g' \ @@ -61,9 +64,8 @@ sed -i -e 's|/var/lib/games/nethack|%{_v for i in nethack slashem ; do make $i/Makefile make -C $i - make -C $i/util recover dlb dgn_comp lev_comp + make -C $i/util recover dlb dgn_comp lev_comp YACC="bison -y" make -C $i/dat spec_levs quest_levs - cp vultures/gamedata/graphics/gametiles.bin vultures/gamedata/graphics/gametiles.bin.$i done @@ -106,19 +108,10 @@ for i in vultureseye vulturesclaw ; do $RPM_BUILD_ROOT%{_bindir}/$i-recover done -rm -r $RPM_BUILD_ROOT%{_prefix}/games/vultureseye/manual -rm -r $RPM_BUILD_ROOT%{_prefix}/games/vulturesclaw/manual - -# Save some space -for f in music sound ; do - cp $RPM_BUILD_ROOT%{_prefix}/games/vulturesclaw/$f/* $RPM_BUILD_ROOT%{_prefix}/games/vultureseye/$f/ - rm -r $RPM_BUILD_ROOT%{_prefix}/games/vulturesclaw/$f - ln -s ../vultureseye/$f \ - $RPM_BUILD_ROOT%{_prefix}/games/vulturesclaw/$f -done +rm -r $RPM_BUILD_ROOT%{_prefix}/games/vultures*/manual -mv vultures/gamedata/graphics/gametiles.bin.nethack $RPM_BUILD_ROOT%{_prefix}/games/vultureseye/graphics/gametiles.bin -mv vultures/gamedata/graphics/gametiles.bin.slashem $RPM_BUILD_ROOT%{_prefix}/games/vulturesclaw/graphics/gametiles.bin +# Save quite a bit of space +/usr/sbin/hardlink -cv $RPM_BUILD_ROOT%{_prefix}/games/vultures* chmod -s $RPM_BUILD_ROOT%{_prefix}/games/vultures*/vultures* # for stripping @@ -126,25 +119,41 @@ chmod -s $RPM_BUILD_ROOT%{_prefix}/games sed -i -e "s|$RPM_BUILD_ROOT||" $RPM_BUILD_ROOT%{_bindir}/vultures{eye,claw} rm $RPM_BUILD_ROOT%{_prefix}/games/vultures*/*.ico +install -Dpm 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name} +install -dm 775 $RPM_BUILD_ROOT%{_var}/log/vultures/ + + %clean rm -rf $RPM_BUILD_ROOT + %pre /usr/sbin/groupadd vultures 2> /dev/null || : -# eliminate the old graphics directory symlink that was confusing rpm -rm -rf %{_prefix}/games/vulturesclaw/graphics +# Get dir symlinks that were there once out of the way +for dir in graphics sound music ; do + [ -L %{_prefix}/games/vulturesclaw/$dir ] && \ + rm -f %{_prefix}/games/vulturesclaw/$dir || : +done %post -[ $1 -eq 1 ] && \ -gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -gtk-update-icon-cache -qf %{_datadir}/icons/hicolor &>/dev/null || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %files %defattr(-,root,root,-) %doc nethack/README nethack/dat/license nethack/dat/history nethack/dat/*help -%doc slashem/readme.txt slashem/history.txt slashem/slamfaq.txt vultures/gamedata/manual/ +%doc slashem/readme.txt slashem/history.txt slashem/slamfaq.txt +%doc vultures/gamedata/manual/ +%config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %{_bindir}/vultures* %dir %{_prefix}/games/vultureseye/ %{_prefix}/games/vultureseye/config/ @@ -155,6 +164,7 @@ gtk-update-icon-cache -qf %{_datadir}/ic %{_prefix}/games/vultureseye/nhdat %{_prefix}/games/vultureseye/sound/ %{_prefix}/games/vultureseye/fonts/ +%{_prefix}/games/vultureseye/tiles/ %attr(2755,root,vultures) %{_prefix}/games/vultureseye/vultureseye %dir %{_prefix}/games/vulturesclaw/ %{_prefix}/games/vulturesclaw/config/ @@ -166,6 +176,7 @@ gtk-update-icon-cache -qf %{_datadir}/ic %{_prefix}/games/vulturesclaw/nh*share %{_prefix}/games/vulturesclaw/sound/ %{_prefix}/games/vulturesclaw/fonts/ +%{_prefix}/games/vulturesclaw/tiles/ %attr(2755,root,vultures) %{_prefix}/games/vulturesclaw/vulturesclaw %{_datadir}/applications/*vultures*.desktop %{_datadir}/icons/hicolor/48x48/apps/vultures*.png @@ -181,9 +192,18 @@ gtk-update-icon-cache -qf %{_datadir}/ic %config(noreplace) %{_var}/games/vulturesclaw/perm %config(noreplace) %{_var}/games/vulturesclaw/logfile %dir %{_var}/games/vulturesclaw/save/ +%dir %{_var}/log/vultures/ %changelog +* Sat May 23 2009 Ville Skytt?? - 2.1.2-1 +- Update to 2.1.2. +- Patch to log in %%{_var}/log/vultures. +- Bring icon cache update scriptlets up to date with current guidelines. +- Simplify and improve space savings by using hardlink. +- Build with bison instead of byacc; bison is needed anyway. +- Drop default patch fuzz, apply it selectively. + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nethack-vultures/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 7 Jun 2006 22:55:51 -0000 1.8 +++ sources 8 Jul 2009 16:24:57 -0000 1.9 @@ -1 +1 @@ -f448f4fa74f07178683640a3f7985944 vultures-2.1.0-full.tar.bz2 +d31598c0e347648896c085fc961385d7 vultures-2.1.2-full.tar.bz2 --- nethack-vultures-1.10.1-config.patch DELETED --- --- nethack-vultures-1.10.1-log2stderr.patch DELETED --- --- nethack-vultures-1.10.1-optflags.patch DELETED --- --- nethack-vultures-1.11.0-config.patch DELETED --- --- nethack-vultures-2.1.0-tabfullscreen.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 8 16:26:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:26:06 +0000 Subject: [pkgdb] perl-Proc-Simple was added for hpejakle Message-ID: <20090708162606.D4F1E10F8B7@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Proc-Simple with summary Launch and control background processes tibbs has approved Package perl-Proc-Simple tibbs has added a Fedora devel branch for perl-Proc-Simple with an owner of hpejakle tibbs has approved perl-Proc-Simple in Fedora devel tibbs has approved Package perl-Proc-Simple tibbs has set commit to Approved for 107427 on perl-Proc-Simple (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Proc-Simple (Fedora devel) tibbs has set build to Approved for 107427 on perl-Proc-Simple (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Proc-Simple From pkgdb at fedoraproject.org Wed Jul 8 16:26:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:26:07 +0000 Subject: [pkgdb] perl-Proc-Simple summary updated by tibbs Message-ID: <20090708162607.850BF10F8A4@bastion2.fedora.phx.redhat.com> tibbs set package perl-Proc-Simple summary to Launch and control background processes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Proc-Simple From pkgdb at fedoraproject.org Wed Jul 8 16:26:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:26:07 +0000 Subject: [pkgdb] perl-Proc-Simple (Fedora, 11) updated by tibbs Message-ID: <20090708162607.9705710F8C8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Proc-Simple tibbs has set commit to Approved for 107427 on perl-Proc-Simple (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Proc-Simple (Fedora 11) tibbs has set build to Approved for 107427 on perl-Proc-Simple (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Proc-Simple From pkgdb at fedoraproject.org Wed Jul 8 16:26:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:26:07 +0000 Subject: [pkgdb] perl-Proc-Simple (Fedora, 11) updated by tibbs Message-ID: <20090708162607.AA0EA10F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Proc-Simple tibbs has set commit to Approved for 107427 on perl-Proc-Simple (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Proc-Simple (Fedora 10) tibbs has set build to Approved for 107427 on perl-Proc-Simple (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Proc-Simple From tibbs at fedoraproject.org Wed Jul 8 16:26:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:26:14 +0000 (UTC) Subject: rpms/perl-Proc-Simple - New directory Message-ID: <20090708162614.1B38C11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Proc-Simple In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso11469/rpms/perl-Proc-Simple Log Message: Directory /cvs/pkgs/rpms/perl-Proc-Simple added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:26:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:26:14 +0000 (UTC) Subject: rpms/perl-Proc-Simple/devel - New directory Message-ID: <20090708162614.43C9211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Proc-Simple/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso11469/rpms/perl-Proc-Simple/devel Log Message: Directory /cvs/pkgs/rpms/perl-Proc-Simple/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:26:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:26:20 +0000 (UTC) Subject: rpms/perl-Proc-Simple Makefile,NONE,1.1 Message-ID: <20090708162620.9530311C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Proc-Simple In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso11469/rpms/perl-Proc-Simple Added Files: Makefile Log Message: Setup of module perl-Proc-Simple --- NEW FILE Makefile --- # Top level Makefile for module perl-Proc-Simple all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:26:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:26:20 +0000 (UTC) Subject: rpms/perl-Proc-Simple/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708162620.DEDC311C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Proc-Simple/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso11469/rpms/perl-Proc-Simple/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Proc-Simple --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Proc-Simple # $Id: Makefile,v 1.1 2009/07/08 16:26:20 tibbs Exp $ NAME := perl-Proc-Simple SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From scop at fedoraproject.org Wed Jul 8 16:26:59 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 8 Jul 2009 16:26:59 +0000 (UTC) Subject: rpms/nethack-vultures/devel nethack-vultures.spec,1.43,1.44 Message-ID: <20090708162659.A95A511C02C4@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/nethack-vultures/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11688 Modified Files: nethack-vultures.spec Log Message: Add bug number to changelog. Index: nethack-vultures.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethack-vultures/devel/nethack-vultures.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- nethack-vultures.spec 8 Jul 2009 16:24:57 -0000 1.43 +++ nethack-vultures.spec 8 Jul 2009 16:26:29 -0000 1.44 @@ -197,7 +197,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sat May 23 2009 Ville Skytt?? - 2.1.2-1 -- Update to 2.1.2. +- Update to 2.1.2 (#502292). - Patch to log in %%{_var}/log/vultures. - Bring icon cache update scriptlets up to date with current guidelines. - Simplify and improve space savings by using hardlink. From kyle at fedoraproject.org Wed Jul 8 16:27:38 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 16:27:38 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1612, 1.1613 linux-2.6-missing-rfc2465-stats.patch, 1.1, NONE Message-ID: <20090708162738.5481111C02C4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12055 Modified Files: kernel.spec Removed Files: linux-2.6-missing-rfc2465-stats.patch Log Message: upstream Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1612 retrieving revision 1.1613 diff -u -p -r1.1612 -r1.1613 --- kernel.spec 8 Jul 2009 13:27:06 -0000 1.1612 +++ kernel.spec 8 Jul 2009 16:27:37 -0000 1.1613 @@ -680,9 +680,6 @@ Patch3000: linux-2.6-btrfs-experimental- # NFSv4 Patch3050: linux-2.6-nfsd4-proots.patch -#snmp fixes -Patch10000: linux-2.6-missing-rfc2465-stats.patch - # VIA Nano / VX8xx updates Patch11010: via-hwmon-temp-sensor.patch @@ -1097,8 +1094,6 @@ ApplyPatch sched-introduce-SCHED_RESET_O # enable sysrq-c on all kernels, not only kexec #ApplyPatch linux-2.6-sysrq-c.patch -#ApplyPatch linux-2.6-missing-rfc2465-stats.patch - # Architecture patches # x86(-64) ApplyPatch via-hwmon-temp-sensor.patch --- linux-2.6-missing-rfc2465-stats.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 8 16:30:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:09 +0000 Subject: [pkgdb] panoglview was added for bpostle Message-ID: <20090708163009.C33DE10F89E@bastion2.fedora.phx.redhat.com> tibbs has added Package panoglview with summary Immersive viewer for spherical panoramas tibbs has approved Package panoglview tibbs has added a Fedora devel branch for panoglview with an owner of bpostle tibbs has approved panoglview in Fedora devel tibbs has approved Package panoglview tibbs has set commit to Approved for 107427 on panoglview (Fedora devel) tibbs has set checkout to Approved for 107427 on panoglview (Fedora devel) tibbs has set build to Approved for 107427 on panoglview (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/panoglview From tibbs at fedoraproject.org Wed Jul 8 16:30:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:17 +0000 (UTC) Subject: rpms/panoglview - New directory Message-ID: <20090708163017.1BE9B11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/panoglview In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw12819/rpms/panoglview Log Message: Directory /cvs/pkgs/rpms/panoglview added to the repository From pkgdb at fedoraproject.org Wed Jul 8 16:30:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:10 +0000 Subject: [pkgdb] panoglview summary updated by tibbs Message-ID: <20090708163010.AB9A810F8B0@bastion2.fedora.phx.redhat.com> tibbs set package panoglview summary to Immersive viewer for spherical panoramas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/panoglview From pkgdb at fedoraproject.org Wed Jul 8 16:30:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:10 +0000 Subject: [pkgdb] panoglview (Fedora, 11) updated by tibbs Message-ID: <20090708163010.BF9F910F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for panoglview tibbs has set commit to Approved for 107427 on panoglview (Fedora 11) tibbs has set checkout to Approved for 107427 on panoglview (Fedora 11) tibbs has set build to Approved for 107427 on panoglview (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/panoglview From tibbs at fedoraproject.org Wed Jul 8 16:30:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:17 +0000 (UTC) Subject: rpms/panoglview/devel - New directory Message-ID: <20090708163017.437A811C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/panoglview/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw12819/rpms/panoglview/devel Log Message: Directory /cvs/pkgs/rpms/panoglview/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:30:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:22 +0000 (UTC) Subject: rpms/panoglview Makefile,NONE,1.1 Message-ID: <20090708163022.8DFA911C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/panoglview In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw12819/rpms/panoglview Added Files: Makefile Log Message: Setup of module panoglview --- NEW FILE Makefile --- # Top level Makefile for module panoglview all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:30:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:22 +0000 (UTC) Subject: rpms/panoglview/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163022.D820211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/panoglview/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw12819/rpms/panoglview/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module panoglview --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: panoglview # $Id: Makefile,v 1.1 2009/07/08 16:30:22 tibbs Exp $ NAME := panoglview SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:30:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:36 +0000 Subject: [pkgdb] ewl was added for guthrie Message-ID: <20090708163036.BF9BC10F8B2@bastion2.fedora.phx.redhat.com> tibbs has added Package ewl with summary Enlightenment Widget Library tibbs has approved Package ewl tibbs has added a Fedora devel branch for ewl with an owner of guthrie tibbs has approved ewl in Fedora devel tibbs has approved Package ewl tibbs has set commit to Approved for 107427 on ewl (Fedora devel) tibbs has set checkout to Approved for 107427 on ewl (Fedora devel) tibbs has set build to Approved for 107427 on ewl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ewl From pkgdb at fedoraproject.org Wed Jul 8 16:30:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:37 +0000 Subject: [pkgdb] ewl summary updated by tibbs Message-ID: <20090708163037.6CA1010F8B8@bastion2.fedora.phx.redhat.com> tibbs set package ewl summary to Enlightenment Widget Library To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ewl From pkgdb at fedoraproject.org Wed Jul 8 16:30:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:37 +0000 Subject: [pkgdb] ewl (Fedora, 11) updated by tibbs Message-ID: <20090708163037.7766110F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ewl tibbs has set commit to Approved for 107427 on ewl (Fedora 11) tibbs has set checkout to Approved for 107427 on ewl (Fedora 11) tibbs has set build to Approved for 107427 on ewl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ewl From tibbs at fedoraproject.org Wed Jul 8 16:30:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:43 +0000 (UTC) Subject: rpms/ewl - New directory Message-ID: <20090708163043.1890011C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ewl In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL13078/rpms/ewl Log Message: Directory /cvs/pkgs/rpms/ewl added to the repository From pkgdb at fedoraproject.org Wed Jul 8 16:30:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:30:37 +0000 Subject: [pkgdb] ewl (Fedora, 11) updated by tibbs Message-ID: <20090708163037.7FEA310F8C1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for ewl tibbs has set commit to Approved for 107427 on ewl (Fedora 10) tibbs has set checkout to Approved for 107427 on ewl (Fedora 10) tibbs has set build to Approved for 107427 on ewl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ewl From tibbs at fedoraproject.org Wed Jul 8 16:30:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:49 +0000 (UTC) Subject: rpms/ewl Makefile,NONE,1.1 Message-ID: <20090708163049.3D94211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ewl In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL13078/rpms/ewl Added Files: Makefile Log Message: Setup of module ewl --- NEW FILE Makefile --- # Top level Makefile for module ewl all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:30:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:43 +0000 (UTC) Subject: rpms/ewl/devel - New directory Message-ID: <20090708163043.35B8711C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ewl/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL13078/rpms/ewl/devel Log Message: Directory /cvs/pkgs/rpms/ewl/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:30:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:30:49 +0000 (UTC) Subject: rpms/ewl/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163049.9F11D11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ewl/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsL13078/rpms/ewl/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ewl --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ewl # $Id: Makefile,v 1.1 2009/07/08 16:30:49 tibbs Exp $ NAME := ewl SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:31:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:31:20 +0000 Subject: [pkgdb] armadillo was added for conrads Message-ID: <20090708163120.AE1E610F8B4@bastion2.fedora.phx.redhat.com> tibbs has added Package armadillo with summary fast C++ matrix library with interfaces to LAPACK and ATLAS tibbs has approved Package armadillo tibbs has added a Fedora devel branch for armadillo with an owner of conrads tibbs has approved armadillo in Fedora devel tibbs has approved Package armadillo tibbs has set commit to Approved for 107427 on armadillo (Fedora devel) tibbs has set checkout to Approved for 107427 on armadillo (Fedora devel) tibbs has set build to Approved for 107427 on armadillo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/armadillo From pkgdb at fedoraproject.org Wed Jul 8 16:31:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:31:21 +0000 Subject: [pkgdb] armadillo summary updated by tibbs Message-ID: <20090708163121.E253010F8BA@bastion2.fedora.phx.redhat.com> tibbs set package armadillo summary to fast C++ matrix library with interfaces to LAPACK and ATLAS To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/armadillo From pkgdb at fedoraproject.org Wed Jul 8 16:31:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:31:21 +0000 Subject: [pkgdb] armadillo (Fedora, 11) updated by tibbs Message-ID: <20090708163121.EDE6B10F8C8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for armadillo tibbs has set commit to Approved for 107427 on armadillo (Fedora 11) tibbs has set checkout to Approved for 107427 on armadillo (Fedora 11) tibbs has set build to Approved for 107427 on armadillo (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/armadillo From pkgdb at fedoraproject.org Wed Jul 8 16:31:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:31:21 +0000 Subject: [pkgdb] armadillo (Fedora, 11) updated by tibbs Message-ID: <20090708163122.26D3810F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for armadillo tibbs has set commit to Approved for 107427 on armadillo (Fedora 10) tibbs has set checkout to Approved for 107427 on armadillo (Fedora 10) tibbs has set build to Approved for 107427 on armadillo (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/armadillo From tibbs at fedoraproject.org Wed Jul 8 16:31:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:31:28 +0000 (UTC) Subject: rpms/armadillo - New directory Message-ID: <20090708163128.2FC1711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/armadillo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh13480/rpms/armadillo Log Message: Directory /cvs/pkgs/rpms/armadillo added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:31:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:31:28 +0000 (UTC) Subject: rpms/armadillo/devel - New directory Message-ID: <20090708163128.47C0D11C02C8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/armadillo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh13480/rpms/armadillo/devel Log Message: Directory /cvs/pkgs/rpms/armadillo/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:31:34 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:31:34 +0000 (UTC) Subject: rpms/armadillo Makefile,NONE,1.1 Message-ID: <20090708163134.5AECF11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/armadillo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh13480/rpms/armadillo Added Files: Makefile Log Message: Setup of module armadillo --- NEW FILE Makefile --- # Top level Makefile for module armadillo all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:31:34 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:31:34 +0000 (UTC) Subject: rpms/armadillo/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163134.AB26C11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/armadillo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh13480/rpms/armadillo/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module armadillo --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: armadillo # $Id: Makefile,v 1.1 2009/07/08 16:31:34 tibbs Exp $ NAME := armadillo SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:32:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:31 +0000 Subject: [pkgdb] daemonize was added for giesen Message-ID: <20090708163232.203D510F8AC@bastion2.fedora.phx.redhat.com> tibbs has added Package daemonize with summary Run a command as a Unix daemon tibbs has approved Package daemonize tibbs has added a Fedora devel branch for daemonize with an owner of giesen tibbs has approved daemonize in Fedora devel tibbs has approved Package daemonize tibbs has set commit to Approved for 107427 on daemonize (Fedora devel) tibbs has set checkout to Approved for 107427 on daemonize (Fedora devel) tibbs has set build to Approved for 107427 on daemonize (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From pkgdb at fedoraproject.org Wed Jul 8 16:32:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:32 +0000 Subject: [pkgdb] daemonize summary updated by tibbs Message-ID: <20090708163233.0F71510F8B5@bastion2.fedora.phx.redhat.com> tibbs set package daemonize summary to Run a command as a Unix daemon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From pkgdb at fedoraproject.org Wed Jul 8 16:32:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:33 +0000 Subject: [pkgdb] daemonize (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163233.1348B10F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for daemonize tibbs has set commit to Approved for 107427 on daemonize (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on daemonize (Fedora EPEL 4) tibbs has set build to Approved for 107427 on daemonize (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From pkgdb at fedoraproject.org Wed Jul 8 16:32:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:33 +0000 Subject: [pkgdb] daemonize (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163233.2555C10F8BF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for daemonize tibbs has set commit to Approved for 107427 on daemonize (Fedora 11) tibbs has set checkout to Approved for 107427 on daemonize (Fedora 11) tibbs has set build to Approved for 107427 on daemonize (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From pkgdb at fedoraproject.org Wed Jul 8 16:32:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:33 +0000 Subject: [pkgdb] daemonize (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163233.33B8110F8C2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for daemonize tibbs has set commit to Approved for 107427 on daemonize (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on daemonize (Fedora EPEL 5) tibbs has set build to Approved for 107427 on daemonize (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From tibbs at fedoraproject.org Wed Jul 8 16:32:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:32:39 +0000 (UTC) Subject: rpms/daemonize/devel - New directory Message-ID: <20090708163239.4297B11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/daemonize/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsa13940/rpms/daemonize/devel Log Message: Directory /cvs/pkgs/rpms/daemonize/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:32:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:32:39 +0000 (UTC) Subject: rpms/daemonize - New directory Message-ID: <20090708163239.1905B11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/daemonize In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsa13940/rpms/daemonize Log Message: Directory /cvs/pkgs/rpms/daemonize added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:32:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:32:45 +0000 (UTC) Subject: rpms/daemonize Makefile,NONE,1.1 Message-ID: <20090708163245.A86BC11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/daemonize In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsa13940/rpms/daemonize Added Files: Makefile Log Message: Setup of module daemonize --- NEW FILE Makefile --- # Top level Makefile for module daemonize all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Wed Jul 8 16:32:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:32:33 +0000 Subject: [pkgdb] daemonize (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163233.4B3E410F8C5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for daemonize tibbs has set commit to Approved for 107427 on daemonize (Fedora 10) tibbs has set checkout to Approved for 107427 on daemonize (Fedora 10) tibbs has set build to Approved for 107427 on daemonize (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/daemonize From tibbs at fedoraproject.org Wed Jul 8 16:32:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:32:45 +0000 (UTC) Subject: rpms/daemonize/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163245.E337511C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/daemonize/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsa13940/rpms/daemonize/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module daemonize --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: daemonize # $Id: Makefile,v 1.1 2009/07/08 16:32:45 tibbs Exp $ NAME := daemonize SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:33:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:01 +0000 Subject: [pkgdb] sipcalc was added for giesen Message-ID: <20090708163301.174B210F8BD@bastion2.fedora.phx.redhat.com> tibbs has added Package sipcalc with summary "Advanced" console-based ip subnet calculator tibbs has approved Package sipcalc tibbs has added a Fedora devel branch for sipcalc with an owner of giesen tibbs has approved sipcalc in Fedora devel tibbs has approved Package sipcalc tibbs has set commit to Approved for 107427 on sipcalc (Fedora devel) tibbs has set checkout to Approved for 107427 on sipcalc (Fedora devel) tibbs has set build to Approved for 107427 on sipcalc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From pkgdb at fedoraproject.org Wed Jul 8 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:02 +0000 Subject: [pkgdb] sipcalc summary updated by tibbs Message-ID: <20090708163302.9A66210F8D9@bastion2.fedora.phx.redhat.com> tibbs set package sipcalc summary to "Advanced" console-based ip subnet calculator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From pkgdb at fedoraproject.org Wed Jul 8 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:02 +0000 Subject: [pkgdb] sipcalc (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163302.B4BFB10F8DB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for sipcalc tibbs has set commit to Approved for 107427 on sipcalc (Fedora 11) tibbs has set checkout to Approved for 107427 on sipcalc (Fedora 11) tibbs has set build to Approved for 107427 on sipcalc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From pkgdb at fedoraproject.org Wed Jul 8 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:02 +0000 Subject: [pkgdb] sipcalc (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163302.C53D110F8DD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for sipcalc tibbs has set commit to Approved for 107427 on sipcalc (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on sipcalc (Fedora EPEL 4) tibbs has set build to Approved for 107427 on sipcalc (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From pkgdb at fedoraproject.org Wed Jul 8 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:02 +0000 Subject: [pkgdb] sipcalc (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163302.E3BE010F8D0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for sipcalc tibbs has set commit to Approved for 107427 on sipcalc (Fedora 10) tibbs has set checkout to Approved for 107427 on sipcalc (Fedora 10) tibbs has set build to Approved for 107427 on sipcalc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From pkgdb at fedoraproject.org Wed Jul 8 16:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:02 +0000 Subject: [pkgdb] sipcalc (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163303.3B0EA10F8E5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for sipcalc tibbs has set commit to Approved for 107427 on sipcalc (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on sipcalc (Fedora EPEL 5) tibbs has set build to Approved for 107427 on sipcalc (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sipcalc From tibbs at fedoraproject.org Wed Jul 8 16:33:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:09 +0000 (UTC) Subject: rpms/sipcalc - New directory Message-ID: <20090708163309.1CC5711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sipcalc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm14351/rpms/sipcalc Log Message: Directory /cvs/pkgs/rpms/sipcalc added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:33:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:09 +0000 (UTC) Subject: rpms/sipcalc/devel - New directory Message-ID: <20090708163309.4B73511C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sipcalc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm14351/rpms/sipcalc/devel Log Message: Directory /cvs/pkgs/rpms/sipcalc/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:33:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:15 +0000 (UTC) Subject: rpms/sipcalc Makefile,NONE,1.1 Message-ID: <20090708163315.45F0911C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sipcalc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm14351/rpms/sipcalc Added Files: Makefile Log Message: Setup of module sipcalc --- NEW FILE Makefile --- # Top level Makefile for module sipcalc all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:33:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:15 +0000 (UTC) Subject: rpms/sipcalc/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163315.8AE4611C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/sipcalc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm14351/rpms/sipcalc/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module sipcalc --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: sipcalc # $Id: Makefile,v 1.1 2009/07/08 16:33:15 tibbs Exp $ NAME := sipcalc SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:33:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:31 +0000 Subject: [pkgdb] python-webpy was added for rayvd Message-ID: <20090708163331.9FE8510F8BE@bastion2.fedora.phx.redhat.com> tibbs has added Package python-webpy with summary A simple web framework for Python tibbs has approved Package python-webpy tibbs has added a Fedora devel branch for python-webpy with an owner of rayvd tibbs has approved python-webpy in Fedora devel tibbs has approved Package python-webpy tibbs has set commit to Approved for 107427 on python-webpy (Fedora devel) tibbs has set checkout to Approved for 107427 on python-webpy (Fedora devel) tibbs has set build to Approved for 107427 on python-webpy (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From pkgdb at fedoraproject.org Wed Jul 8 16:33:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:32 +0000 Subject: [pkgdb] python-webpy summary updated by tibbs Message-ID: <20090708163332.8713810F8E7@bastion2.fedora.phx.redhat.com> tibbs set package python-webpy summary to A simple web framework for Python To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From pkgdb at fedoraproject.org Wed Jul 8 16:33:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:32 +0000 Subject: [pkgdb] python-webpy (Fedora EPEL, 4) updated by tibbs Message-ID: <20090708163332.8A01510F8EA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-webpy tibbs has set commit to Approved for 107427 on python-webpy (Fedora 11) tibbs has set checkout to Approved for 107427 on python-webpy (Fedora 11) tibbs has set build to Approved for 107427 on python-webpy (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From pkgdb at fedoraproject.org Wed Jul 8 16:33:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:32 +0000 Subject: [pkgdb] python-webpy (Fedora EPEL, 4) updated by tibbs Message-ID: <20090708163332.9EC8910F8ED@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-webpy tibbs has set commit to Approved for 107427 on python-webpy (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-webpy (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-webpy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From pkgdb at fedoraproject.org Wed Jul 8 16:33:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:32 +0000 Subject: [pkgdb] python-webpy (Fedora EPEL, 4) updated by tibbs Message-ID: <20090708163332.B712F10F8F0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-webpy tibbs has set commit to Approved for 107427 on python-webpy (Fedora 10) tibbs has set checkout to Approved for 107427 on python-webpy (Fedora 10) tibbs has set build to Approved for 107427 on python-webpy (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From tibbs at fedoraproject.org Wed Jul 8 16:33:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:38 +0000 (UTC) Subject: rpms/python-webpy - New directory Message-ID: <20090708163338.1D7CB11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-webpy In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV14772/rpms/python-webpy Log Message: Directory /cvs/pkgs/rpms/python-webpy added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:33:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:38 +0000 (UTC) Subject: rpms/python-webpy/devel - New directory Message-ID: <20090708163338.408D711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-webpy/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV14772/rpms/python-webpy/devel Log Message: Directory /cvs/pkgs/rpms/python-webpy/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:33:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:44 +0000 (UTC) Subject: rpms/python-webpy Makefile,NONE,1.1 Message-ID: <20090708163344.750EA11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-webpy In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV14772/rpms/python-webpy Added Files: Makefile Log Message: Setup of module python-webpy --- NEW FILE Makefile --- # Top level Makefile for module python-webpy all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Wed Jul 8 16:33:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:33:32 +0000 Subject: [pkgdb] python-webpy (Fedora EPEL, 4) updated by tibbs Message-ID: <20090708163332.C80B610F8F3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for python-webpy tibbs has set commit to Approved for 107427 on python-webpy (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on python-webpy (Fedora EPEL 4) tibbs has set build to Approved for 107427 on python-webpy (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-webpy From tibbs at fedoraproject.org Wed Jul 8 16:33:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:33:44 +0000 (UTC) Subject: rpms/python-webpy/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163344.CC4DF11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-webpy/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV14772/rpms/python-webpy/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-webpy --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-webpy # $Id: Makefile,v 1.1 2009/07/08 16:33:44 tibbs Exp $ NAME := python-webpy SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:34:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:34:05 +0000 Subject: [pkgdb] rubygem-diff-lcs was added for lkundrak Message-ID: <20090708163406.F252510F8C4@bastion2.fedora.phx.redhat.com> tibbs has added Package rubygem-diff-lcs with summary Provide a list of changes between two sequenced collections tibbs has approved Package rubygem-diff-lcs tibbs has added a Fedora devel branch for rubygem-diff-lcs with an owner of lkundrak tibbs has approved rubygem-diff-lcs in Fedora devel tibbs has approved Package rubygem-diff-lcs tibbs has set commit to Approved for 107427 on rubygem-diff-lcs (Fedora devel) tibbs has set checkout to Approved for 107427 on rubygem-diff-lcs (Fedora devel) tibbs has set build to Approved for 107427 on rubygem-diff-lcs (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-diff-lcs From pkgdb at fedoraproject.org Wed Jul 8 16:34:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:34:07 +0000 Subject: [pkgdb] rubygem-diff-lcs summary updated by tibbs Message-ID: <20090708163407.2A6A610F8BF@bastion2.fedora.phx.redhat.com> tibbs set package rubygem-diff-lcs summary to Provide a list of changes between two sequenced collections To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-diff-lcs From pkgdb at fedoraproject.org Wed Jul 8 16:34:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:34:07 +0000 Subject: [pkgdb] rubygem-diff-lcs (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163407.5CE0810F8C2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for rubygem-diff-lcs tibbs has set commit to Approved for 107427 on rubygem-diff-lcs (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on rubygem-diff-lcs (Fedora EPEL 5) tibbs has set build to Approved for 107427 on rubygem-diff-lcs (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-diff-lcs From pkgdb at fedoraproject.org Wed Jul 8 16:34:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:34:07 +0000 Subject: [pkgdb] rubygem-diff-lcs (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163407.7F29110F8D4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for rubygem-diff-lcs tibbs has set commit to Approved for 107427 on rubygem-diff-lcs (Fedora 11) tibbs has set checkout to Approved for 107427 on rubygem-diff-lcs (Fedora 11) tibbs has set build to Approved for 107427 on rubygem-diff-lcs (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-diff-lcs From tibbs at fedoraproject.org Wed Jul 8 16:34:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:34:13 +0000 (UTC) Subject: rpms/rubygem-diff-lcs - New directory Message-ID: <20090708163413.19C1311C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-diff-lcs In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15181/rpms/rubygem-diff-lcs Log Message: Directory /cvs/pkgs/rpms/rubygem-diff-lcs added to the repository From pkgdb at fedoraproject.org Wed Jul 8 16:34:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:34:07 +0000 Subject: [pkgdb] rubygem-diff-lcs (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163407.9AD4910F8FF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for rubygem-diff-lcs tibbs has set commit to Approved for 107427 on rubygem-diff-lcs (Fedora 10) tibbs has set checkout to Approved for 107427 on rubygem-diff-lcs (Fedora 10) tibbs has set build to Approved for 107427 on rubygem-diff-lcs (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-diff-lcs From tibbs at fedoraproject.org Wed Jul 8 16:34:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:34:13 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel - New directory Message-ID: <20090708163413.4181411C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15181/rpms/rubygem-diff-lcs/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-diff-lcs/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:34:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:34:19 +0000 (UTC) Subject: rpms/rubygem-diff-lcs Makefile,NONE,1.1 Message-ID: <20090708163419.C5A5C11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-diff-lcs In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15181/rpms/rubygem-diff-lcs Added Files: Makefile Log Message: Setup of module rubygem-diff-lcs --- NEW FILE Makefile --- # Top level Makefile for module rubygem-diff-lcs all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:34:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:34:20 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163420.139BC11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15181/rpms/rubygem-diff-lcs/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-diff-lcs --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-diff-lcs # $Id: Makefile,v 1.1 2009/07/08 16:34:19 tibbs Exp $ NAME := rubygem-diff-lcs SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:35:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:16 +0000 Subject: [pkgdb] rubygem-configuration was added for lkundrak Message-ID: <20090708163516.9BC4C10F8A3@bastion2.fedora.phx.redhat.com> tibbs has added Package rubygem-configuration with summary Pure Ruby scoped configuration files tibbs has approved Package rubygem-configuration tibbs has added a Fedora devel branch for rubygem-configuration with an owner of lkundrak tibbs has approved rubygem-configuration in Fedora devel tibbs has approved Package rubygem-configuration tibbs has set commit to Approved for 107427 on rubygem-configuration (Fedora devel) tibbs has set checkout to Approved for 107427 on rubygem-configuration (Fedora devel) tibbs has set build to Approved for 107427 on rubygem-configuration (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-configuration From tibbs at fedoraproject.org Wed Jul 8 16:35:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:24 +0000 (UTC) Subject: rpms/rubygem-configuration - New directory Message-ID: <20090708163524.1E75011C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-configuration In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX15679/rpms/rubygem-configuration Log Message: Directory /cvs/pkgs/rpms/rubygem-configuration added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:35:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:24 +0000 (UTC) Subject: rpms/rubygem-configuration/devel - New directory Message-ID: <20090708163524.4AE3E11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX15679/rpms/rubygem-configuration/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-configuration/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:35:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:30 +0000 (UTC) Subject: rpms/rubygem-configuration Makefile,NONE,1.1 Message-ID: <20090708163530.16D3211C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-configuration In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX15679/rpms/rubygem-configuration Added Files: Makefile Log Message: Setup of module rubygem-configuration --- NEW FILE Makefile --- # Top level Makefile for module rubygem-configuration all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:35:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:30 +0000 (UTC) Subject: rpms/rubygem-configuration/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163530.6AEC511C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX15679/rpms/rubygem-configuration/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-configuration --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-configuration # $Id: Makefile,v 1.1 2009/07/08 16:35:30 tibbs Exp $ NAME := rubygem-configuration SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:35:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:45 +0000 Subject: [pkgdb] rubygem-bacon was added for lkundrak Message-ID: <20090708163545.9317A10F916@bastion2.fedora.phx.redhat.com> tibbs has added Package rubygem-bacon with summary A ruby-based testing framework tibbs has approved Package rubygem-bacon tibbs has added a Fedora devel branch for rubygem-bacon with an owner of lkundrak tibbs has approved rubygem-bacon in Fedora devel tibbs has approved Package rubygem-bacon tibbs has set commit to Approved for 107427 on rubygem-bacon (Fedora devel) tibbs has set checkout to Approved for 107427 on rubygem-bacon (Fedora devel) tibbs has set build to Approved for 107427 on rubygem-bacon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-bacon From pkgdb at fedoraproject.org Wed Jul 8 16:35:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:46 +0000 Subject: [pkgdb] rubygem-bacon summary updated by tibbs Message-ID: <20090708163546.EECFB10F91E@bastion2.fedora.phx.redhat.com> tibbs set package rubygem-bacon summary to A ruby-based testing framework To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-bacon From pkgdb at fedoraproject.org Wed Jul 8 16:35:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:46 +0000 Subject: [pkgdb] rubygem-bacon (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163547.00F5310F922@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for rubygem-bacon tibbs has set commit to Approved for 107427 on rubygem-bacon (Fedora 11) tibbs has set checkout to Approved for 107427 on rubygem-bacon (Fedora 11) tibbs has set build to Approved for 107427 on rubygem-bacon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-bacon From pkgdb at fedoraproject.org Wed Jul 8 16:35:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:46 +0000 Subject: [pkgdb] rubygem-bacon (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163547.143FC10F928@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for rubygem-bacon tibbs has set commit to Approved for 107427 on rubygem-bacon (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on rubygem-bacon (Fedora EPEL 5) tibbs has set build to Approved for 107427 on rubygem-bacon (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-bacon From pkgdb at fedoraproject.org Wed Jul 8 16:35:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:35:46 +0000 Subject: [pkgdb] rubygem-bacon (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708163547.05D8D10F925@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for rubygem-bacon tibbs has set commit to Approved for 107427 on rubygem-bacon (Fedora 10) tibbs has set checkout to Approved for 107427 on rubygem-bacon (Fedora 10) tibbs has set build to Approved for 107427 on rubygem-bacon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-bacon From tibbs at fedoraproject.org Wed Jul 8 16:35:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:53 +0000 (UTC) Subject: rpms/rubygem-bacon - New directory Message-ID: <20090708163553.178F911C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-bacon In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr16050/rpms/rubygem-bacon Log Message: Directory /cvs/pkgs/rpms/rubygem-bacon added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:35:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:53 +0000 (UTC) Subject: rpms/rubygem-bacon/devel - New directory Message-ID: <20090708163553.45B1811C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr16050/rpms/rubygem-bacon/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-bacon/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:35:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:59 +0000 (UTC) Subject: rpms/rubygem-bacon Makefile,NONE,1.1 Message-ID: <20090708163559.7D1BC11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-bacon In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr16050/rpms/rubygem-bacon Added Files: Makefile Log Message: Setup of module rubygem-bacon --- NEW FILE Makefile --- # Top level Makefile for module rubygem-bacon all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:35:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:35:59 +0000 (UTC) Subject: rpms/rubygem-bacon/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163559.CD66911C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr16050/rpms/rubygem-bacon/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-bacon --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-bacon # $Id: Makefile,v 1.1 2009/07/08 16:35:59 tibbs Exp $ NAME := rubygem-bacon SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:37:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:37:36 +0000 Subject: [pkgdb] ModemManager was added for dcbw Message-ID: <20090708163737.0BC7A10F8D3@bastion2.fedora.phx.redhat.com> tibbs has added Package ModemManager with summary Modem arbitration and control service tibbs has approved Package ModemManager tibbs has added a Fedora devel branch for ModemManager with an owner of dcbw tibbs has approved ModemManager in Fedora devel tibbs has approved Package ModemManager tibbs has set commit to Approved for 107427 on ModemManager (Fedora devel) tibbs has set checkout to Approved for 107427 on ModemManager (Fedora devel) tibbs has set build to Approved for 107427 on ModemManager (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ModemManager From tibbs at fedoraproject.org Wed Jul 8 16:37:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:37:44 +0000 (UTC) Subject: rpms/ModemManager/devel - New directory Message-ID: <20090708163744.5B9E711C02C8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ModemManager/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG16774/rpms/ModemManager/devel Log Message: Directory /cvs/pkgs/rpms/ModemManager/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:37:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:37:44 +0000 (UTC) Subject: rpms/ModemManager - New directory Message-ID: <20090708163744.1D01D11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ModemManager In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG16774/rpms/ModemManager Log Message: Directory /cvs/pkgs/rpms/ModemManager added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:37:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:37:50 +0000 (UTC) Subject: rpms/ModemManager Makefile,NONE,1.1 Message-ID: <20090708163750.CC4DA11C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ModemManager In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG16774/rpms/ModemManager Added Files: Makefile Log Message: Setup of module ModemManager --- NEW FILE Makefile --- # Top level Makefile for module ModemManager all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Wed Jul 8 16:37:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:37:37 +0000 Subject: [pkgdb] ModemManager summary updated by tibbs Message-ID: <20090708163737.E60D110F8D6@bastion2.fedora.phx.redhat.com> tibbs set package ModemManager summary to Modem arbitration and control service To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ModemManager From tibbs at fedoraproject.org Wed Jul 8 16:37:51 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:37:51 +0000 (UTC) Subject: rpms/ModemManager/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163751.141E311C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ModemManager/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG16774/rpms/ModemManager/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ModemManager --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ModemManager # $Id: Makefile,v 1.1 2009/07/08 16:37:50 tibbs Exp $ NAME := ModemManager SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 8 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:38:17 +0000 Subject: [pkgdb] rubygem-coderay was added for hpejakle Message-ID: <20090708163817.37C5610F8A7@bastion2.fedora.phx.redhat.com> tibbs has added Package rubygem-coderay with summary Fast syntax highlighter engine for many programming languages tibbs has approved Package rubygem-coderay tibbs has added a Fedora devel branch for rubygem-coderay with an owner of hpejakle tibbs has approved rubygem-coderay in Fedora devel tibbs has approved Package rubygem-coderay tibbs has set commit to Approved for 107427 on rubygem-coderay (Fedora devel) tibbs has set checkout to Approved for 107427 on rubygem-coderay (Fedora devel) tibbs has set build to Approved for 107427 on rubygem-coderay (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-coderay From pkgdb at fedoraproject.org Wed Jul 8 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:38:17 +0000 Subject: [pkgdb] rubygem-coderay summary updated by tibbs Message-ID: <20090708163818.0386E10F8D9@bastion2.fedora.phx.redhat.com> tibbs set package rubygem-coderay summary to Fast syntax highlighter engine for many programming languages To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-coderay From pkgdb at fedoraproject.org Wed Jul 8 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:38:17 +0000 Subject: [pkgdb] rubygem-coderay (Fedora, 11) updated by tibbs Message-ID: <20090708163818.4C1E110F8DC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for rubygem-coderay tibbs has set commit to Approved for 107427 on rubygem-coderay (Fedora 11) tibbs has set checkout to Approved for 107427 on rubygem-coderay (Fedora 11) tibbs has set build to Approved for 107427 on rubygem-coderay (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-coderay From pkgdb at fedoraproject.org Wed Jul 8 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 16:38:17 +0000 Subject: [pkgdb] rubygem-coderay (Fedora, 11) updated by tibbs Message-ID: <20090708163818.6E69B10F8F9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for rubygem-coderay tibbs has set commit to Approved for 107427 on rubygem-coderay (Fedora 10) tibbs has set checkout to Approved for 107427 on rubygem-coderay (Fedora 10) tibbs has set build to Approved for 107427 on rubygem-coderay (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-coderay From tibbs at fedoraproject.org Wed Jul 8 16:38:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:38:24 +0000 (UTC) Subject: rpms/rubygem-coderay - New directory Message-ID: <20090708163824.1AD1711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-coderay In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsD17005/rpms/rubygem-coderay Log Message: Directory /cvs/pkgs/rpms/rubygem-coderay added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:38:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:38:24 +0000 (UTC) Subject: rpms/rubygem-coderay/devel - New directory Message-ID: <20090708163824.4096111C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-coderay/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsD17005/rpms/rubygem-coderay/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-coderay/devel added to the repository From tibbs at fedoraproject.org Wed Jul 8 16:38:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:38:30 +0000 (UTC) Subject: rpms/rubygem-coderay Makefile,NONE,1.1 Message-ID: <20090708163830.527B411C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-coderay In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsD17005/rpms/rubygem-coderay Added Files: Makefile Log Message: Setup of module rubygem-coderay --- NEW FILE Makefile --- # Top level Makefile for module rubygem-coderay all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 16:38:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 16:38:30 +0000 (UTC) Subject: rpms/rubygem-coderay/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708163830.8768B11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rubygem-coderay/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsD17005/rpms/rubygem-coderay/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-coderay --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-coderay # $Id: Makefile,v 1.1 2009/07/08 16:38:30 tibbs Exp $ NAME := rubygem-coderay SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From kyle at fedoraproject.org Wed Jul 8 16:42:32 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 16:42:32 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1613, 1.1614 linux-2.6-ext4-prealloc-fixes.patch, 1.1, NONE Message-ID: <20090708164232.B7B7311C02C4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18101 Modified Files: kernel.spec Removed Files: linux-2.6-ext4-prealloc-fixes.patch Log Message: upstream Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1613 retrieving revision 1.1614 diff -u -p -r1.1613 -r1.1614 --- kernel.spec 8 Jul 2009 16:27:37 -0000 1.1613 +++ kernel.spec 8 Jul 2009 16:42:02 -0000 1.1614 @@ -609,8 +609,6 @@ Patch150: linux-2.6.29-sparc-IOC_TYPECHE Patch160: linux-2.6-execshield.patch -Patch200: linux-2.6-ext4-prealloc-fixes.patch - Patch250: linux-2.6-debug-sizeof-structs.patch Patch260: linux-2.6-debug-nmi-timeout.patch Patch270: linux-2.6-debug-taint-vm.patch @@ -1128,7 +1126,6 @@ ApplyPatch linux-2.6-execshield.patch # # ext4 -#ApplyPatch linux-2.6-ext4-prealloc-fixes.patch # xfs --- linux-2.6-ext4-prealloc-fixes.patch DELETED --- From kyle at fedoraproject.org Wed Jul 8 16:44:46 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 16:44:46 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1614, 1.1615 linux-2.6-btrfs-experimental-branch.patch, 1.2, NONE Message-ID: <20090708164446.1A96911C02C4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18691 Modified Files: kernel.spec Removed Files: linux-2.6-btrfs-experimental-branch.patch Log Message: upstream Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1614 retrieving revision 1.1615 diff -u -p -r1.1614 -r1.1615 --- kernel.spec 8 Jul 2009 16:42:02 -0000 1.1614 +++ kernel.spec 8 Jul 2009 16:44:15 -0000 1.1615 @@ -673,7 +673,6 @@ Patch2901: linux-2.6-v4l-dvb-experimenta Patch2903: linux-2.6-revert-dvb-net-kabi-change.patch # fs fixes -Patch3000: linux-2.6-btrfs-experimental-branch.patch # NFSv4 Patch3050: linux-2.6-nfsd4-proots.patch @@ -1130,7 +1129,6 @@ ApplyPatch linux-2.6-execshield.patch # xfs # btrfs -#ApplyPatch linux-2.6-btrfs-experimental-branch.patch # NFSv4 ApplyPatch linux-2.6-nfsd4-proots.patch --- linux-2.6-btrfs-experimental-branch.patch DELETED --- From kyle at fedoraproject.org Wed Jul 8 16:48:43 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 16:48:43 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1615, 1.1616 linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch, 1.1, NONE Message-ID: <20090708164843.8715E11C02C4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20547 Modified Files: kernel.spec Removed Files: linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch Log Message: upstream Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1615 retrieving revision 1.1616 diff -u -p -r1.1615 -r1.1616 --- kernel.spec 8 Jul 2009 16:44:15 -0000 1.1615 +++ kernel.spec 8 Jul 2009 16:48:13 -0000 1.1616 @@ -642,8 +642,6 @@ Patch800: linux-2.6-crash-driver.patch Patch900: linux-2.6-pci-cacheline-sizing.patch -Patch1000: linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch - Patch1515: linux-2.6.31-lirc.patch Patch1516: lirc_streamzap-buffer-rework.patch @@ -1207,9 +1205,6 @@ ApplyPatch linux-2.6-crash-driver.patch # Determine cacheline sizes in a generic manner. ApplyPatch linux-2.6-pci-cacheline-sizing.patch -# neigh: fix state transition INCOMPLETE->FAILED via Netlink request -#ApplyPatch linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch - # http://www.lirc.org/ ApplyPatch linux-2.6.31-lirc.patch # should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else... --- linux-2.6-neigh_-fix-state-transition-INCOMPLETE-_FAILED-via-Netlink-request.patch DELETED --- From rayvd at fedoraproject.org Wed Jul 8 16:48:56 2009 From: rayvd at fedoraproject.org (rayvd) Date: Wed, 8 Jul 2009 16:48:56 +0000 (UTC) Subject: rpms/python-webpy/devel import.log, NONE, 1.1 python-webpy.spec, NONE, 1.1 web.utils-tests.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708164856.8EE3711C02C4@cvs1.fedora.phx.redhat.com> Author: rayvd Update of /cvs/pkgs/rpms/python-webpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20774/devel Modified Files: .cvsignore sources Added Files: import.log python-webpy.spec web.utils-tests.patch Log Message: Initial import --- NEW FILE import.log --- python-webpy-0_32-3:HEAD:python-webpy-0.32-3.src.rpm:1247071674 --- NEW FILE python-webpy.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define pkgname webpy %define srcname web.py Name: python-%{pkgname} Version: 0.32 Release: 3%{?dist} Summary: A simple web framework for Python Group: Development/Libraries # The entire source code is Public Domain save for the following exceptions: # web/wsgiserver (CherryPy/BSD) # See LICENSE.wsgiserver.txt # See http://fedoraproject.org/wiki/Licensing:BSD#New_BSD_.28no_advertising.2C_3_clause.29 # web/debugerror.py (Modified BSD) # This is from django # See http://code.djangoproject.com/browser/django/trunk/LICENSE # web/httpserver.py (Modified BSD) # This is from WSGIUtils/lib/wsgiutils/wsgiServer.py # See http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5 License: Public Domain and BSD URL: http://webpy.org/ Source0: http://webpy.org/static/%{srcname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildArch: noarch # https://bugs.launchpad.net/webpy/+bug/396789 Patch0: web.utils-tests.patch %description web.py is a web framework for python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. %prep %setup -q -n %{pkgname} %patch0 -p1 -b .tests # Remove shebang from non scripts. %{__sed} -i '1d' web/utils.py %{__sed} -i '1d' web/application.py %{__sed} -i '1d' web/__init__.py %{__cp} web/wsgiserver/LICENSE.txt LICENSE.wsgiserver.txt %build %{__python} setup.py build %check %{__python} test/application.py %{__python} test/doctests.py %install %{__rm} -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt LICENSE.wsgiserver.txt ChangeLog.txt %{python_sitelib}/* %changelog * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information - Enable unit tests * Thu Jul 02 2009 Ray Van Dolson - 0.32-2 - Added python-devel BuildRequires - Updated with multiple licensing annotations * Wed Jul 01 2009 Ray Van Dolson - 0.32-1 - Rebase to 0.32 * Mon Jun 01 2009 Ray Van Dolson - 0.31-1 - Initial package web.utils-tests.patch: --- NEW FILE web.utils-tests.patch --- Binary files webpy.orig/test/webtest.pyc and webpy/test/webtest.pyc differ diff -uNr webpy.orig/web/utils.py webpy/web/utils.py --- webpy.orig/web/utils.py 2009-06-04 07:24:34.000000000 -0700 +++ webpy/web/utils.py 2009-07-07 14:50:06.000000000 -0700 @@ -834,13 +834,21 @@ import cStringIO out = cStringIO.StringIO() + oldout = sys.stdout stats = hotshot.stats.load(temp.name) - stats.stream = out + if sys.version_info >= (2, 5): + stats.stream = out + else: + sys.stdout = out + stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats(40) stats.print_callers() + if sys.version_info < (2, 5): + sys.stdout = oldout + x = '\n\ntook '+ str(stime) + ' seconds\n' x += out.getvalue() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:44 -0000 1.1 +++ .cvsignore 8 Jul 2009 16:48:56 -0000 1.2 @@ -0,0 +1 @@ +web.py-0.32.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:44 -0000 1.1 +++ sources 8 Jul 2009 16:48:56 -0000 1.2 @@ -0,0 +1 @@ +ea70fcf5fe5a7365454cf4a47e093221 web.py-0.32.tar.gz From rayvd at fedoraproject.org Wed Jul 8 16:50:39 2009 From: rayvd at fedoraproject.org (rayvd) Date: Wed, 8 Jul 2009 16:50:39 +0000 (UTC) Subject: rpms/python-webpy/F-11 import.log, NONE, 1.1 python-webpy.spec, NONE, 1.1 web.utils-tests.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708165039.C5A2C11C02C4@cvs1.fedora.phx.redhat.com> Author: rayvd Update of /cvs/pkgs/rpms/python-webpy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21256/F-11 Modified Files: .cvsignore sources Added Files: import.log python-webpy.spec web.utils-tests.patch Log Message: Initial import --- NEW FILE import.log --- python-webpy-0_32-3:F-11:python-webpy-0.32-3.src.rpm:1247071782 --- NEW FILE python-webpy.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define pkgname webpy %define srcname web.py Name: python-%{pkgname} Version: 0.32 Release: 3%{?dist} Summary: A simple web framework for Python Group: Development/Libraries # The entire source code is Public Domain save for the following exceptions: # web/wsgiserver (CherryPy/BSD) # See LICENSE.wsgiserver.txt # See http://fedoraproject.org/wiki/Licensing:BSD#New_BSD_.28no_advertising.2C_3_clause.29 # web/debugerror.py (Modified BSD) # This is from django # See http://code.djangoproject.com/browser/django/trunk/LICENSE # web/httpserver.py (Modified BSD) # This is from WSGIUtils/lib/wsgiutils/wsgiServer.py # See http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5 License: Public Domain and BSD URL: http://webpy.org/ Source0: http://webpy.org/static/%{srcname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildArch: noarch # https://bugs.launchpad.net/webpy/+bug/396789 Patch0: web.utils-tests.patch %description web.py is a web framework for python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. %prep %setup -q -n %{pkgname} %patch0 -p1 -b .tests # Remove shebang from non scripts. %{__sed} -i '1d' web/utils.py %{__sed} -i '1d' web/application.py %{__sed} -i '1d' web/__init__.py %{__cp} web/wsgiserver/LICENSE.txt LICENSE.wsgiserver.txt %build %{__python} setup.py build %check %{__python} test/application.py %{__python} test/doctests.py %install %{__rm} -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt LICENSE.wsgiserver.txt ChangeLog.txt %{python_sitelib}/* %changelog * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information - Enable unit tests * Thu Jul 02 2009 Ray Van Dolson - 0.32-2 - Added python-devel BuildRequires - Updated with multiple licensing annotations * Wed Jul 01 2009 Ray Van Dolson - 0.32-1 - Rebase to 0.32 * Mon Jun 01 2009 Ray Van Dolson - 0.31-1 - Initial package web.utils-tests.patch: --- NEW FILE web.utils-tests.patch --- Binary files webpy.orig/test/webtest.pyc and webpy/test/webtest.pyc differ diff -uNr webpy.orig/web/utils.py webpy/web/utils.py --- webpy.orig/web/utils.py 2009-06-04 07:24:34.000000000 -0700 +++ webpy/web/utils.py 2009-07-07 14:50:06.000000000 -0700 @@ -834,13 +834,21 @@ import cStringIO out = cStringIO.StringIO() + oldout = sys.stdout stats = hotshot.stats.load(temp.name) - stats.stream = out + if sys.version_info >= (2, 5): + stats.stream = out + else: + sys.stdout = out + stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats(40) stats.print_callers() + if sys.version_info < (2, 5): + sys.stdout = oldout + x = '\n\ntook '+ str(stime) + ' seconds\n' x += out.getvalue() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:44 -0000 1.1 +++ .cvsignore 8 Jul 2009 16:50:09 -0000 1.2 @@ -0,0 +1 @@ +web.py-0.32.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:44 -0000 1.1 +++ sources 8 Jul 2009 16:50:09 -0000 1.2 @@ -0,0 +1 @@ +ea70fcf5fe5a7365454cf4a47e093221 web.py-0.32.tar.gz From rayvd at fedoraproject.org Wed Jul 8 16:52:42 2009 From: rayvd at fedoraproject.org (rayvd) Date: Wed, 8 Jul 2009 16:52:42 +0000 (UTC) Subject: rpms/python-webpy/F-10 import.log, NONE, 1.1 python-webpy.spec, NONE, 1.1 web.utils-tests.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708165243.04F5411C02C4@cvs1.fedora.phx.redhat.com> Author: rayvd Update of /cvs/pkgs/rpms/python-webpy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22156/F-10 Modified Files: .cvsignore sources Added Files: import.log python-webpy.spec web.utils-tests.patch Log Message: Initial import --- NEW FILE import.log --- python-webpy-0_32-3:F-10:python-webpy-0.32-3.src.rpm:1247071922 --- NEW FILE python-webpy.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define pkgname webpy %define srcname web.py Name: python-%{pkgname} Version: 0.32 Release: 3%{?dist} Summary: A simple web framework for Python Group: Development/Libraries # The entire source code is Public Domain save for the following exceptions: # web/wsgiserver (CherryPy/BSD) # See LICENSE.wsgiserver.txt # See http://fedoraproject.org/wiki/Licensing:BSD#New_BSD_.28no_advertising.2C_3_clause.29 # web/debugerror.py (Modified BSD) # This is from django # See http://code.djangoproject.com/browser/django/trunk/LICENSE # web/httpserver.py (Modified BSD) # This is from WSGIUtils/lib/wsgiutils/wsgiServer.py # See http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5 License: Public Domain and BSD URL: http://webpy.org/ Source0: http://webpy.org/static/%{srcname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildArch: noarch # https://bugs.launchpad.net/webpy/+bug/396789 Patch0: web.utils-tests.patch %description web.py is a web framework for python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. %prep %setup -q -n %{pkgname} %patch0 -p1 -b .tests # Remove shebang from non scripts. %{__sed} -i '1d' web/utils.py %{__sed} -i '1d' web/application.py %{__sed} -i '1d' web/__init__.py %{__cp} web/wsgiserver/LICENSE.txt LICENSE.wsgiserver.txt %build %{__python} setup.py build %check %{__python} test/application.py %{__python} test/doctests.py %install %{__rm} -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt LICENSE.wsgiserver.txt ChangeLog.txt %{python_sitelib}/* %changelog * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information - Enable unit tests * Thu Jul 02 2009 Ray Van Dolson - 0.32-2 - Added python-devel BuildRequires - Updated with multiple licensing annotations * Wed Jul 01 2009 Ray Van Dolson - 0.32-1 - Rebase to 0.32 * Mon Jun 01 2009 Ray Van Dolson - 0.31-1 - Initial package web.utils-tests.patch: --- NEW FILE web.utils-tests.patch --- Binary files webpy.orig/test/webtest.pyc and webpy/test/webtest.pyc differ diff -uNr webpy.orig/web/utils.py webpy/web/utils.py --- webpy.orig/web/utils.py 2009-06-04 07:24:34.000000000 -0700 +++ webpy/web/utils.py 2009-07-07 14:50:06.000000000 -0700 @@ -834,13 +834,21 @@ import cStringIO out = cStringIO.StringIO() + oldout = sys.stdout stats = hotshot.stats.load(temp.name) - stats.stream = out + if sys.version_info >= (2, 5): + stats.stream = out + else: + sys.stdout = out + stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats(40) stats.print_callers() + if sys.version_info < (2, 5): + sys.stdout = oldout + x = '\n\ntook '+ str(stime) + ' seconds\n' x += out.getvalue() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:44 -0000 1.1 +++ .cvsignore 8 Jul 2009 16:52:12 -0000 1.2 @@ -0,0 +1 @@ +web.py-0.32.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:44 -0000 1.1 +++ sources 8 Jul 2009 16:52:12 -0000 1.2 @@ -0,0 +1 @@ +ea70fcf5fe5a7365454cf4a47e093221 web.py-0.32.tar.gz From rayvd at fedoraproject.org Wed Jul 8 16:54:13 2009 From: rayvd at fedoraproject.org (rayvd) Date: Wed, 8 Jul 2009 16:54:13 +0000 (UTC) Subject: rpms/python-webpy/EL-5 import.log, NONE, 1.1 python-webpy.spec, NONE, 1.1 web.utils-tests.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708165413.CD4C611C02C4@cvs1.fedora.phx.redhat.com> Author: rayvd Update of /cvs/pkgs/rpms/python-webpy/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22681/EL-5 Modified Files: .cvsignore sources Added Files: import.log python-webpy.spec web.utils-tests.patch Log Message: Initial import --- NEW FILE import.log --- python-webpy-0_32-3:EL-5:python-webpy-0.32-3.src.rpm:1247072014 --- NEW FILE python-webpy.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define pkgname webpy %define srcname web.py Name: python-%{pkgname} Version: 0.32 Release: 3%{?dist} Summary: A simple web framework for Python Group: Development/Libraries # The entire source code is Public Domain save for the following exceptions: # web/wsgiserver (CherryPy/BSD) # See LICENSE.wsgiserver.txt # See http://fedoraproject.org/wiki/Licensing:BSD#New_BSD_.28no_advertising.2C_3_clause.29 # web/debugerror.py (Modified BSD) # This is from django # See http://code.djangoproject.com/browser/django/trunk/LICENSE # web/httpserver.py (Modified BSD) # This is from WSGIUtils/lib/wsgiutils/wsgiServer.py # See http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5 License: Public Domain and BSD URL: http://webpy.org/ Source0: http://webpy.org/static/%{srcname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildArch: noarch # https://bugs.launchpad.net/webpy/+bug/396789 Patch0: web.utils-tests.patch %description web.py is a web framework for python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. %prep %setup -q -n %{pkgname} %patch0 -p1 -b .tests # Remove shebang from non scripts. %{__sed} -i '1d' web/utils.py %{__sed} -i '1d' web/application.py %{__sed} -i '1d' web/__init__.py %{__cp} web/wsgiserver/LICENSE.txt LICENSE.wsgiserver.txt %build %{__python} setup.py build %check %{__python} test/application.py %{__python} test/doctests.py %install %{__rm} -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt LICENSE.wsgiserver.txt ChangeLog.txt %{python_sitelib}/* %changelog * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information - Enable unit tests * Thu Jul 02 2009 Ray Van Dolson - 0.32-2 - Added python-devel BuildRequires - Updated with multiple licensing annotations * Wed Jul 01 2009 Ray Van Dolson - 0.32-1 - Rebase to 0.32 * Mon Jun 01 2009 Ray Van Dolson - 0.31-1 - Initial package web.utils-tests.patch: --- NEW FILE web.utils-tests.patch --- Binary files webpy.orig/test/webtest.pyc and webpy/test/webtest.pyc differ diff -uNr webpy.orig/web/utils.py webpy/web/utils.py --- webpy.orig/web/utils.py 2009-06-04 07:24:34.000000000 -0700 +++ webpy/web/utils.py 2009-07-07 14:50:06.000000000 -0700 @@ -834,13 +834,21 @@ import cStringIO out = cStringIO.StringIO() + oldout = sys.stdout stats = hotshot.stats.load(temp.name) - stats.stream = out + if sys.version_info >= (2, 5): + stats.stream = out + else: + sys.stdout = out + stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats(40) stats.print_callers() + if sys.version_info < (2, 5): + sys.stdout = oldout + x = '\n\ntook '+ str(stime) + ' seconds\n' x += out.getvalue() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:44 -0000 1.1 +++ .cvsignore 8 Jul 2009 16:53:43 -0000 1.2 @@ -0,0 +1 @@ +web.py-0.32.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:44 -0000 1.1 +++ sources 8 Jul 2009 16:53:43 -0000 1.2 @@ -0,0 +1 @@ +ea70fcf5fe5a7365454cf4a47e093221 web.py-0.32.tar.gz From rayvd at fedoraproject.org Wed Jul 8 16:58:10 2009 From: rayvd at fedoraproject.org (rayvd) Date: Wed, 8 Jul 2009 16:58:10 +0000 (UTC) Subject: rpms/python-webpy/EL-4 import.log, NONE, 1.1 python-webpy.spec, NONE, 1.1 web.utils-tests.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708165810.CD42211C02C4@cvs1.fedora.phx.redhat.com> Author: rayvd Update of /cvs/pkgs/rpms/python-webpy/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24004/EL-4 Modified Files: .cvsignore sources Added Files: import.log python-webpy.spec web.utils-tests.patch Log Message: Initial import --- NEW FILE import.log --- python-webpy-0_32-3:EL-4:python-webpy-0.32-3.src.rpm:1247072262 --- NEW FILE python-webpy.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define pkgname webpy %define srcname web.py Name: python-%{pkgname} Version: 0.32 Release: 3%{?dist} Summary: A simple web framework for Python Group: Development/Libraries # The entire source code is Public Domain save for the following exceptions: # web/wsgiserver (CherryPy/BSD) # See LICENSE.wsgiserver.txt # See http://fedoraproject.org/wiki/Licensing:BSD#New_BSD_.28no_advertising.2C_3_clause.29 # web/debugerror.py (Modified BSD) # This is from django # See http://code.djangoproject.com/browser/django/trunk/LICENSE # web/httpserver.py (Modified BSD) # This is from WSGIUtils/lib/wsgiutils/wsgiServer.py # See http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5 License: Public Domain and BSD URL: http://webpy.org/ Source0: http://webpy.org/static/%{srcname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildArch: noarch # https://bugs.launchpad.net/webpy/+bug/396789 Patch0: web.utils-tests.patch %description web.py is a web framework for python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. %prep %setup -q -n %{pkgname} %patch0 -p1 -b .tests # Remove shebang from non scripts. %{__sed} -i '1d' web/utils.py %{__sed} -i '1d' web/application.py %{__sed} -i '1d' web/__init__.py %{__cp} web/wsgiserver/LICENSE.txt LICENSE.wsgiserver.txt %build %{__python} setup.py build %check %{__python} test/application.py %{__python} test/doctests.py %install %{__rm} -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean %{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %doc LICENSE.txt LICENSE.wsgiserver.txt ChangeLog.txt %{python_sitelib}/* %changelog * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information - Enable unit tests * Thu Jul 02 2009 Ray Van Dolson - 0.32-2 - Added python-devel BuildRequires - Updated with multiple licensing annotations * Wed Jul 01 2009 Ray Van Dolson - 0.32-1 - Rebase to 0.32 * Mon Jun 01 2009 Ray Van Dolson - 0.31-1 - Initial package web.utils-tests.patch: --- NEW FILE web.utils-tests.patch --- Binary files webpy.orig/test/webtest.pyc and webpy/test/webtest.pyc differ diff -uNr webpy.orig/web/utils.py webpy/web/utils.py --- webpy.orig/web/utils.py 2009-06-04 07:24:34.000000000 -0700 +++ webpy/web/utils.py 2009-07-07 14:50:06.000000000 -0700 @@ -834,13 +834,21 @@ import cStringIO out = cStringIO.StringIO() + oldout = sys.stdout stats = hotshot.stats.load(temp.name) - stats.stream = out + if sys.version_info >= (2, 5): + stats.stream = out + else: + sys.stdout = out + stats.strip_dirs() stats.sort_stats('time', 'calls') stats.print_stats(40) stats.print_callers() + if sys.version_info < (2, 5): + sys.stdout = oldout + x = '\n\ntook '+ str(stime) + ' seconds\n' x += out.getvalue() Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:44 -0000 1.1 +++ .cvsignore 8 Jul 2009 16:58:10 -0000 1.2 @@ -0,0 +1 @@ +web.py-0.32.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:44 -0000 1.1 +++ sources 8 Jul 2009 16:58:10 -0000 1.2 @@ -0,0 +1 @@ +ea70fcf5fe5a7365454cf4a47e093221 web.py-0.32.tar.gz From anyremote at fedoraproject.org Wed Jul 8 16:58:50 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Wed, 8 Jul 2009 16:58:50 +0000 (UTC) Subject: rpms/anyremote2html/devel .cvsignore, 1.7, 1.8 anyremote2html.spec, 1.9, 1.10 import.log, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090708165850.C9D6B11C02C4@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/anyremote2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24279/devel Modified Files: .cvsignore anyremote2html.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 May 2009 18:46:37 -0000 1.7 +++ .cvsignore 8 Jul 2009 16:58:50 -0000 1.8 @@ -1 +1 @@ -anyremote2html-0.10.tar.gz +anyremote2html-1.0.tar.gz Index: anyremote2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/devel/anyremote2html.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- anyremote2html.spec 24 May 2009 18:46:37 -0000 1.9 +++ anyremote2html.spec 8 Jul 2009 16:58:50 -0000 1.10 @@ -1,6 +1,6 @@ Summary: WEB interface for anyRemote Name: anyremote2html -Version: 0.10 +Version: 1.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -30,6 +30,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Mikhail Fedotov - 1.0 +- Handle Get(password) command. Add -m command line option. + Add 48x48 icons handling. + * Sun May 24 2009 Mikhail Fedotov - 0.10 - Accesskey attribute was added (thanks to Manuel Monge). Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/devel/import.log,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- import.log 24 May 2009 18:54:38 -0000 1.9 +++ import.log 8 Jul 2009 16:58:50 -0000 1.10 @@ -7,3 +7,4 @@ anyremote2html-0_9-1:HEAD:anyremote2html anyremote2html-0_9-1_fc10:HEAD:anyremote2html-0.9-1.fc10.src.rpm:1237304257 anyremote2html-0_10-1_fc10:HEAD:anyremote2html-0.10-1.fc10.src.rpm:1243190812 anyremote2html-0_10-1_fc10:HEAD:anyremote2html-0.10-1.fc10.src.rpm:1243191264 +anyremote2html-1_0-1_fc11:HEAD:anyremote2html-1.0-1.fc11.src.rpm:1247072444 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 May 2009 18:46:37 -0000 1.8 +++ sources 8 Jul 2009 16:58:50 -0000 1.9 @@ -1 +1 @@ -e56151a99e447c0ab5ae1641f31c1d9c anyremote2html-0.10.tar.gz +96ccc68db94ff8d76ffff4ac663fd719 anyremote2html-1.0.tar.gz From anyremote at fedoraproject.org Wed Jul 8 16:58:52 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Wed, 8 Jul 2009 16:58:52 +0000 (UTC) Subject: rpms/anyremote2html/F-10 .cvsignore, 1.7, 1.8 anyremote2html.spec, 1.8, 1.9 import.log, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090708165852.7165911C02C4@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/anyremote2html/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24296/F-10 Modified Files: .cvsignore anyremote2html.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 May 2009 18:55:01 -0000 1.7 +++ .cvsignore 8 Jul 2009 16:58:52 -0000 1.8 @@ -1 +1 @@ -anyremote2html-0.10.tar.gz +anyremote2html-1.0.tar.gz Index: anyremote2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-10/anyremote2html.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- anyremote2html.spec 24 May 2009 18:55:01 -0000 1.8 +++ anyremote2html.spec 8 Jul 2009 16:58:52 -0000 1.9 @@ -1,6 +1,6 @@ Summary: WEB interface for anyRemote Name: anyremote2html -Version: 0.10 +Version: 1.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -30,6 +30,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Mikhail Fedotov - 1.0 +- Handle Get(password) command. Add -m command line option. + Add 48x48 icons handling. + * Sun May 24 2009 Mikhail Fedotov - 0.10 - Accesskey attribute was added (thanks to Manuel Monge). Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-10/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 24 May 2009 18:55:01 -0000 1.8 +++ import.log 8 Jul 2009 16:58:52 -0000 1.9 @@ -6,3 +6,4 @@ anyremote2html-0_8-1_fc10:F-10:anyremote anyremote2html-0_9-1:F-10:anyremote2html-0.9-1.src.rpm:1237303708 anyremote2html-0_9-1_fc10:F-10:anyremote2html-0.9-1.fc10.src.rpm:1237304248 anyremote2html-0_10-1_fc10:F-10:anyremote2html-0.10-1.fc10.src.rpm:1243191378 +anyremote2html-1_0-1_fc11:F-10:anyremote2html-1.0-1.fc11.src.rpm:1247072437 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 May 2009 18:55:01 -0000 1.8 +++ sources 8 Jul 2009 16:58:52 -0000 1.9 @@ -1 +1 @@ -e56151a99e447c0ab5ae1641f31c1d9c anyremote2html-0.10.tar.gz +96ccc68db94ff8d76ffff4ac663fd719 anyremote2html-1.0.tar.gz From anyremote at fedoraproject.org Wed Jul 8 16:59:22 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Wed, 8 Jul 2009 16:59:22 +0000 (UTC) Subject: rpms/anyremote2html/F-9 .cvsignore, 1.7, 1.8 anyremote2html.spec, 1.8, 1.9 import.log, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090708165922.DDF7711C02C4@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/anyremote2html/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24316/F-9 Modified Files: .cvsignore anyremote2html.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-9/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 May 2009 18:46:36 -0000 1.7 +++ .cvsignore 8 Jul 2009 16:58:52 -0000 1.8 @@ -1 +1 @@ -anyremote2html-0.10.tar.gz +anyremote2html-1.0.tar.gz Index: anyremote2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-9/anyremote2html.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- anyremote2html.spec 24 May 2009 18:46:36 -0000 1.8 +++ anyremote2html.spec 8 Jul 2009 16:58:52 -0000 1.9 @@ -1,6 +1,6 @@ Summary: WEB interface for anyRemote Name: anyremote2html -Version: 0.10 +Version: 1.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -30,6 +30,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Mikhail Fedotov - 1.0 +- Handle Get(password) command. Add -m command line option. + Add 48x48 icons handling. + * Sun May 24 2009 Mikhail Fedotov - 0.10 - Accesskey attribute was added (thanks to Manuel Monge). Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-9/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 24 May 2009 18:46:36 -0000 1.8 +++ import.log 8 Jul 2009 16:58:52 -0000 1.9 @@ -6,3 +6,4 @@ anyremote2html-0_8-1_fc10:F-9:anyremote2 anyremote2html-0_9-1:F-9:anyremote2html-0.9-1.src.rpm:1237303705 anyremote2html-0_9-1_fc10:F-9:anyremote2html-0.9-1.fc10.src.rpm:1237304235 anyremote2html-0_10-1_fc10:F-9:anyremote2html-0.10-1.fc10.src.rpm:1243190801 +anyremote2html-1_0-1_fc11:F-9:anyremote2html-1.0-1.fc11.src.rpm:1247072438 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-9/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 May 2009 18:46:37 -0000 1.8 +++ sources 8 Jul 2009 16:58:52 -0000 1.9 @@ -1 +1 @@ -e56151a99e447c0ab5ae1641f31c1d9c anyremote2html-0.10.tar.gz +96ccc68db94ff8d76ffff4ac663fd719 anyremote2html-1.0.tar.gz From anyremote at fedoraproject.org Wed Jul 8 17:03:22 2009 From: anyremote at fedoraproject.org (Mikhail Fedotov) Date: Wed, 8 Jul 2009 17:03:22 +0000 (UTC) Subject: rpms/anyremote2html/F-11 .cvsignore, 1.7, 1.8 anyremote2html.spec, 1.9, 1.10 import.log, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090708170322.E5D5D11C02C4@cvs1.fedora.phx.redhat.com> Author: anyremote Update of /cvs/pkgs/rpms/anyremote2html/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25735/F-11 Modified Files: .cvsignore anyremote2html.spec import.log sources Log Message: build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 May 2009 18:53:48 -0000 1.7 +++ .cvsignore 8 Jul 2009 17:02:52 -0000 1.8 @@ -1 +1 @@ -anyremote2html-0.10.tar.gz +anyremote2html-1.0.tar.gz Index: anyremote2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-11/anyremote2html.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- anyremote2html.spec 24 May 2009 18:53:48 -0000 1.9 +++ anyremote2html.spec 8 Jul 2009 17:02:52 -0000 1.10 @@ -1,6 +1,6 @@ Summary: WEB interface for anyRemote Name: anyremote2html -Version: 0.10 +Version: 1.0 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -30,6 +30,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 Mikhail Fedotov - 1.0 +- Handle Get(password) command. Add -m command line option. + Add 48x48 icons handling. + * Sun May 24 2009 Mikhail Fedotov - 0.10 - Accesskey attribute was added (thanks to Manuel Monge). Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-11/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 24 May 2009 18:53:48 -0000 1.8 +++ import.log 8 Jul 2009 17:02:52 -0000 1.9 @@ -6,3 +6,4 @@ anyremote2html-0_8-1_fc10:HEAD:anyremote anyremote2html-0_9-1:HEAD:anyremote2html-0.9-1.src.rpm:1237303717 anyremote2html-0_9-1_fc10:HEAD:anyremote2html-0.9-1.fc10.src.rpm:1237304257 anyremote2html-0_10-1_fc10:F-11:anyremote2html-0.10-1.fc10.src.rpm:1243191262 +anyremote2html-1_0-1_fc11:F-11:anyremote2html-1.0-1.fc11.src.rpm:1247072678 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 24 May 2009 18:53:48 -0000 1.8 +++ sources 8 Jul 2009 17:02:52 -0000 1.9 @@ -1 +1 @@ -e56151a99e447c0ab5ae1641f31c1d9c anyremote2html-0.10.tar.gz +96ccc68db94ff8d76ffff4ac663fd719 anyremote2html-1.0.tar.gz From pkgdb at fedoraproject.org Wed Jul 8 17:05:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 17:05:27 +0000 Subject: [pkgdb] htmlparser (Fedora EPEL, 5) updated by tibbs Message-ID: <20090708170527.4601A10F888@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for htmlparser tibbs has set commit to Approved for 107427 on htmlparser (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on htmlparser (Fedora EPEL 5) tibbs has set build to Approved for 107427 on htmlparser (Fedora EPEL 5) tibbs changed owner of htmlparser in Fedora EPEL 5 to olea To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/htmlparser From hadess at fedoraproject.org Wed Jul 8 17:07:44 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Wed, 8 Jul 2009 17:07:44 +0000 (UTC) Subject: rpms/bluez/devel bluez.spec,1.80,1.81 Message-ID: <20090708170744.4E9ED11C02C4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27047 Modified Files: bluez.spec Log Message: * Wed Jul 08 2009 Bastien Nocera 4.45-1 - Update to 4.45 Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- bluez.spec 8 Jul 2009 02:01:43 -0000 1.80 +++ bluez.spec 8 Jul 2009 17:07:44 -0000 1.81 @@ -160,7 +160,7 @@ if test -d ${RPM_BUILD_ROOT}/usr/lib64/c rm -rf ${RPM_BUILD_ROOT}%{_libdir}/cups fi -rm -f ${RPM_BUILD_ROOT}/%{_sysconfdir}/udev/*.rules +rm -f ${RPM_BUILD_ROOT}/%{_sysconfdir}/udev/*.rules ${RPM_BUILD_ROOT}/lib/udev/rules.d/*.rules install -D -m0644 scripts/bluetooth-serial.rules ${RPM_BUILD_ROOT}/%{_sysconfdir}/udev/rules.d/97-bluetooth-serial.rules install -D -m0755 scripts/bluetooth_serial ${RPM_BUILD_ROOT}/lib/udev/bluetooth_serial install -D -m0644 scripts/97-bluetooth.rules ${RPM_BUILD_ROOT}/lib/udev/rules.d/97-bluetooth.rules From schwab at fedoraproject.org Wed Jul 8 17:15:51 2009 From: schwab at fedoraproject.org (Andreas Schwab) Date: Wed, 8 Jul 2009 17:15:51 +0000 (UTC) Subject: rpms/glibc/devel glibc.spec,1.395,1.396 Message-ID: <20090708171551.776E111C02C4@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29500 Modified Files: glibc.spec Log Message: 2.10.90-3 Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.395 retrieving revision 1.396 diff -u -p -r1.395 -r1.396 --- glibc.spec 2 Jul 2009 10:22:09 -0000 1.395 +++ glibc.spec 8 Jul 2009 17:15:21 -0000 1.396 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 2 +Release: 3 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -634,7 +634,7 @@ sed -i -e '\|%{_prefix}/%{_lib}/lib.*\.a grep '%{_prefix}/bin' < rpm.filelist >> common.filelist #grep '%{_prefix}/lib/locale' < rpm.filelist | grep -v /locale-archive.tmpl >> common.filelist -grep '%{_prefix}/libexec/pt_chown' < rpm.filelist >> common.filelist +#grep '%{_prefix}/libexec/pt_chown' < rpm.filelist >> common.filelist grep '%{_prefix}/sbin/[^gi]' < rpm.filelist >> common.filelist grep '%{_prefix}/share' < rpm.filelist | \ grep -v '%{_prefix}/share/zoneinfo' >> common.filelist @@ -979,6 +979,7 @@ rm -f *.filelist* %attr(0644,root,root) %verify(not md5 size mtime mode) %ghost %config(missingok,noreplace) %{_prefix}/lib/locale/locale-archive %dir %attr(755,root,root) /etc/default %verify(not md5 size mtime) %config(noreplace) /etc/default/nss +%attr(4711,root,root) %{_prefix}/libexec/pt_chown %doc documentation/* %files -f devel.filelist devel @@ -1024,6 +1025,9 @@ rm -f *.filelist* %endif %changelog +* Wed Jul 8 2009 Andreas Schwab 2.10.90-3 +- Reenable setuid on pt_chown. + * Thu Jul 2 2009 Andreas Schwab 2.10.90-2 - Update from master. From lkundrak at fedoraproject.org Wed Jul 8 17:15:46 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:15:46 +0000 (UTC) Subject: rpms/rubygem-configuration/devel configuration-LICENSE, NONE, 1.1 import.log, NONE, 1.1 rubygem-configuration.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708171546.90CA411C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29220/devel Modified Files: .cvsignore sources Added Files: configuration-LICENSE import.log rubygem-configuration.spec Log Message: Initial import --- NEW FILE configuration-LICENSE --- >From ara.t.howard at gmail.com Sun Jun 7 05:33:01 2009 From: "ara.t.howard" Date: Sat, 6 Jun 2009 21:26:38 -0600 Message-ID: <2524b8cc0906062026m5bba7c68u4dbbade964f174bd at mail.gmail.com> Subject: Re: configuration licensing To: Lubomir Rintel On Sat, Jun 6, 2009 at 5:15 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your configuration rubygem (as dependency of launchy for > Fedora [1] operating system. Unfortunatelly, I can't submit it for > review for inclusion since we could not determine what license is it > distributed under and therefore can't tell whether we can distribute it > at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > i'll try to get that into my stuff - but, fyi, it's all under ruby's license. http://rubyforge.org/projects/codeforpeople/ cheers! -- -a -- be kind whenever possible... it is always possible - h.h. the 14th dalai lama --- NEW FILE import.log --- rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073219 --- NEW FILE rubygem-configuration.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname configuration %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Pure Ruby scoped configuration files Name: rubygem-%{gemname} Version: 0.0.5 Release: 3%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/configuration/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Ruby configuration gem provides a mechanism for configuring ruby programs with ruby configuration files. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force %{SOURCE0} # We strip bad shebang (/usr/bin/env) instead of fixing it # since the file is not executable anyways F=$RPM_BUILD_ROOT%{geminstdir}/install.rb awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %dir %{geminstdir} %{geminstdir}/config %{geminstdir}/lib %{geminstdir}/*.rb %doc %{geminstdir}/samples %doc %{geminstdir}/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 0.0.5-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 0.0.5-2 - Fix up documentation list - Use geminstdir macro where appropriate - Do not move examples around - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 0.0.5-1 - Package generated by gem2rpm - Move examples and README into documentation - Fix up License - Strip useless shebang Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:30 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:15:16 -0000 1.2 @@ -0,0 +1 @@ +configuration-0.0.5.gem From lkundrak at fedoraproject.org Wed Jul 8 17:15:50 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:15:50 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel import.log, NONE, 1.1 rubygem-diff-lcs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708171550.1E7CE11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29204/devel Modified Files: .cvsignore sources Added Files: import.log rubygem-diff-lcs.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073211 --- NEW FILE rubygem-diff-lcs.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname diff-lcs %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Provide a list of changes between two sequenced collections Name: rubygem-%{gemname} Version: 1.1.2 Release: 3%{?dist} Group: Development/Languages License: GPLv2+ or Ruby or Artistic URL: http://rubyforge.org/projects/ruwiki/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers. The implementation is based on Mario I. Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version (Algorithm::Diff). %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # We strip bad shebangs (/usr/bin/env) instead of fixing them # since these files are not executable anyways find $RPM_BUILD_ROOT%{gemdir} \( -name '*.rb' -o -name 'Rakefile' \) \ -exec grep -q '^#!' '{}' \; -print |while read F do awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F done %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/ldiff %{_bindir}/htmldiff %dir %{geminstdir} %{geminstdir}/Rakefile %{geminstdir}/bin %{geminstdir}/lib %doc %{geminstdir}/tests %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/README %doc %{geminstdir}/ChangeLog %doc %{geminstdir}/Install %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 1.1.2-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 1.1.2-2 - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 1.1.2-1 - Package generated by gem2rpm - Strip useless shebangs - Fix up License Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:34:19 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:15:19 -0000 1.2 @@ -0,0 +1 @@ +diff-lcs-1.1.2.gem From lkundrak at fedoraproject.org Wed Jul 8 17:15:54 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:15:54 +0000 (UTC) Subject: rpms/rubygem-bacon/devel import.log, NONE, 1.1 rubygem-bacon.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708171554.9353B11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29231/devel Modified Files: .cvsignore sources Added Files: import.log rubygem-bacon.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073209 --- NEW FILE rubygem-bacon.spec --- %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname bacon %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A ruby-based testing framework Name: rubygem-%{gemname} Version: 1.1.0 Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://chneukirchen.org/repos/bacon Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 BuildRequires: rubygems BuildRequires: rubygem(rake) BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Bacon is a small and lightweigt RSpec clone, providing essential spec framework features. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # Derop weird non-utf8 characters in e-mail framework LANG=C sed 's/\xc2//g' -i $RPM_BUILD_ROOT%{geminstdir}/ChangeLog %check cd $RPM_BUILD_ROOT%{geminstdir} rake test --trace %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/bacon %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/bacon %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/RDOX %doc %{geminstdir}/COPYING %doc %{geminstdir}/ChangeLog %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Mon Jun 29 2009 Lubomir Rintel (Good Data) - 1.1.0-2 - Run tests - Drop useless macro * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 1.1.0-1 - Package generated by gem2rpm - Fix up plist - Make rpmlint happy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:59 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:15:24 -0000 1.2 @@ -0,0 +1 @@ +bacon-1.1.0.gem From lkundrak at fedoraproject.org Wed Jul 8 17:16:33 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:16:33 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel import.log,1.1,1.2 Message-ID: <20090708171633.8136811C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29957/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 8 Jul 2009 17:15:19 -0000 1.1 +++ import.log 8 Jul 2009 17:16:33 -0000 1.2 @@ -1 +1,2 @@ rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073211 +rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073366 From lkundrak at fedoraproject.org Wed Jul 8 17:16:34 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:16:34 +0000 (UTC) Subject: rpms/rubygem-configuration/devel import.log,1.1,1.2 Message-ID: <20090708171634.7995411C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29975/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 8 Jul 2009 17:15:16 -0000 1.1 +++ import.log 8 Jul 2009 17:16:34 -0000 1.2 @@ -1 +1,2 @@ rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073219 +rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073374 From lkundrak at fedoraproject.org Wed Jul 8 17:16:54 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:16:54 +0000 (UTC) Subject: rpms/rubygem-bacon/devel import.log,1.1,1.2 Message-ID: <20090708171654.717F611C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29866/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 8 Jul 2009 17:15:24 -0000 1.1 +++ import.log 8 Jul 2009 17:16:24 -0000 1.2 @@ -1 +1,2 @@ rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073209 +rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073360 From lkundrak at fedoraproject.org Wed Jul 8 17:17:19 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:17:19 +0000 (UTC) Subject: rpms/rubygem-configuration/devel import.log,1.2,1.3 Message-ID: <20090708171719.4ED3C11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30934/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 8 Jul 2009 17:16:34 -0000 1.2 +++ import.log 8 Jul 2009 17:17:19 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073219 rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073374 +rubygem-configuration-0_0_5-3_fc11:HEAD:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073407 From lkundrak at fedoraproject.org Wed Jul 8 17:17:49 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:17:49 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel import.log,1.2,1.3 Message-ID: <20090708171749.EBCB111C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30963/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 8 Jul 2009 17:16:33 -0000 1.2 +++ import.log 8 Jul 2009 17:17:19 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073211 rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073366 +rubygem-diff-lcs-1_1_2-3_fc11:HEAD:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073408 From lkundrak at fedoraproject.org Wed Jul 8 17:18:21 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:18:21 +0000 (UTC) Subject: rpms/rubygem-bacon/devel import.log,1.2,1.3 Message-ID: <20090708171821.A170A11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31534/devel Modified Files: import.log Log Message: Initial import Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 8 Jul 2009 17:16:24 -0000 1.2 +++ import.log 8 Jul 2009 17:18:21 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073209 rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073360 +rubygem-bacon-1_1_0-2_fc11:HEAD:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073429 From lkundrak at fedoraproject.org Wed Jul 8 17:19:38 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:19:38 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/F-11 import.log, NONE, 1.1 rubygem-diff-lcs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708171938.0025511C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-diff-lcs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32201/F-11 Modified Files: .cvsignore sources Added Files: import.log rubygem-diff-lcs.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-diff-lcs-1_1_2-3_fc11:F-11:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073536 --- NEW FILE rubygem-diff-lcs.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname diff-lcs %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Provide a list of changes between two sequenced collections Name: rubygem-%{gemname} Version: 1.1.2 Release: 3%{?dist} Group: Development/Languages License: GPLv2+ or Ruby or Artistic URL: http://rubyforge.org/projects/ruwiki/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers. The implementation is based on Mario I. Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version (Algorithm::Diff). %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # We strip bad shebangs (/usr/bin/env) instead of fixing them # since these files are not executable anyways find $RPM_BUILD_ROOT%{gemdir} \( -name '*.rb' -o -name 'Rakefile' \) \ -exec grep -q '^#!' '{}' \; -print |while read F do awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F done %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/ldiff %{_bindir}/htmldiff %dir %{geminstdir} %{geminstdir}/Rakefile %{geminstdir}/bin %{geminstdir}/lib %doc %{geminstdir}/tests %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/README %doc %{geminstdir}/ChangeLog %doc %{geminstdir}/Install %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 1.1.2-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 1.1.2-2 - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 1.1.2-1 - Package generated by gem2rpm - Strip useless shebangs - Fix up License Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:34:19 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:19:37 -0000 1.2 @@ -0,0 +1 @@ +diff-lcs-1.1.2.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:34:19 -0000 1.1 +++ sources 8 Jul 2009 17:19:37 -0000 1.2 @@ -0,0 +1 @@ +60524d29b37f76d56ce835323e324879 diff-lcs-1.1.2.gem From lkundrak at fedoraproject.org Wed Jul 8 17:20:08 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:20:08 +0000 (UTC) Subject: rpms/rubygem-bacon/F-11 import.log, NONE, 1.1 rubygem-bacon.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708172008.851AF11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-bacon/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32215/F-11 Modified Files: .cvsignore sources Added Files: import.log rubygem-bacon.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-bacon-1_1_0-2_fc11:F-11:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073540 --- NEW FILE rubygem-bacon.spec --- %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname bacon %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A ruby-based testing framework Name: rubygem-%{gemname} Version: 1.1.0 Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://chneukirchen.org/repos/bacon Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 BuildRequires: rubygems BuildRequires: rubygem(rake) BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Bacon is a small and lightweigt RSpec clone, providing essential spec framework features. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # Derop weird non-utf8 characters in e-mail framework LANG=C sed 's/\xc2//g' -i $RPM_BUILD_ROOT%{geminstdir}/ChangeLog %check cd $RPM_BUILD_ROOT%{geminstdir} rake test --trace %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/bacon %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/bacon %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/RDOX %doc %{geminstdir}/COPYING %doc %{geminstdir}/ChangeLog %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Mon Jun 29 2009 Lubomir Rintel (Good Data) - 1.1.0-2 - Run tests - Drop useless macro * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 1.1.0-1 - Package generated by gem2rpm - Fix up plist - Make rpmlint happy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:59 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:19:38 -0000 1.2 @@ -0,0 +1 @@ +bacon-1.1.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:35:59 -0000 1.1 +++ sources 8 Jul 2009 17:19:38 -0000 1.2 @@ -0,0 +1 @@ +c47c4911567d771c906ff87357b60b83 bacon-1.1.0.gem From lkundrak at fedoraproject.org Wed Jul 8 17:20:10 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:20:10 +0000 (UTC) Subject: rpms/rubygem-configuration/F-11 configuration-LICENSE, NONE, 1.1 import.log, NONE, 1.1 rubygem-configuration.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708172010.1624B11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-configuration/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32238/F-11 Modified Files: .cvsignore sources Added Files: configuration-LICENSE import.log rubygem-configuration.spec Log Message: Initial import --- NEW FILE configuration-LICENSE --- >From ara.t.howard at gmail.com Sun Jun 7 05:33:01 2009 From: "ara.t.howard" Date: Sat, 6 Jun 2009 21:26:38 -0600 Message-ID: <2524b8cc0906062026m5bba7c68u4dbbade964f174bd at mail.gmail.com> Subject: Re: configuration licensing To: Lubomir Rintel On Sat, Jun 6, 2009 at 5:15 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your configuration rubygem (as dependency of launchy for > Fedora [1] operating system. Unfortunatelly, I can't submit it for > review for inclusion since we could not determine what license is it > distributed under and therefore can't tell whether we can distribute it > at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > i'll try to get that into my stuff - but, fyi, it's all under ruby's license. http://rubyforge.org/projects/codeforpeople/ cheers! -- -a -- be kind whenever possible... it is always possible - h.h. the 14th dalai lama --- NEW FILE import.log --- rubygem-configuration-0_0_5-3_fc11:F-11:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073535 --- NEW FILE rubygem-configuration.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname configuration %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Pure Ruby scoped configuration files Name: rubygem-%{gemname} Version: 0.0.5 Release: 3%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/configuration/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Ruby configuration gem provides a mechanism for configuring ruby programs with ruby configuration files. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force %{SOURCE0} # We strip bad shebang (/usr/bin/env) instead of fixing it # since the file is not executable anyways F=$RPM_BUILD_ROOT%{geminstdir}/install.rb awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %dir %{geminstdir} %{geminstdir}/config %{geminstdir}/lib %{geminstdir}/*.rb %doc %{geminstdir}/samples %doc %{geminstdir}/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 0.0.5-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 0.0.5-2 - Fix up documentation list - Use geminstdir macro where appropriate - Do not move examples around - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 0.0.5-1 - Package generated by gem2rpm - Move examples and README into documentation - Fix up License - Strip useless shebang Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:30 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:19:39 -0000 1.2 @@ -0,0 +1 @@ +configuration-0.0.5.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:35:30 -0000 1.1 +++ sources 8 Jul 2009 17:19:39 -0000 1.2 @@ -0,0 +1 @@ +f34b7ef13f387da318c40f26a75fac75 configuration-0.0.5.gem From lkundrak at fedoraproject.org Wed Jul 8 17:24:02 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:24:02 +0000 (UTC) Subject: rpms/rubygem-configuration/EL-5 configuration-LICENSE, NONE, 1.1 import.log, NONE, 1.1 rubygem-configuration.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708172402.F2EB011C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-configuration/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1354/EL-5 Modified Files: .cvsignore sources Added Files: configuration-LICENSE import.log rubygem-configuration.spec Log Message: Initial import --- NEW FILE configuration-LICENSE --- >From ara.t.howard at gmail.com Sun Jun 7 05:33:01 2009 From: "ara.t.howard" Date: Sat, 6 Jun 2009 21:26:38 -0600 Message-ID: <2524b8cc0906062026m5bba7c68u4dbbade964f174bd at mail.gmail.com> Subject: Re: configuration licensing To: Lubomir Rintel On Sat, Jun 6, 2009 at 5:15 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your configuration rubygem (as dependency of launchy for > Fedora [1] operating system. Unfortunatelly, I can't submit it for > review for inclusion since we could not determine what license is it > distributed under and therefore can't tell whether we can distribute it > at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > i'll try to get that into my stuff - but, fyi, it's all under ruby's license. http://rubyforge.org/projects/codeforpeople/ cheers! -- -a -- be kind whenever possible... it is always possible - h.h. the 14th dalai lama --- NEW FILE import.log --- rubygem-configuration-0_0_5-3_fc11:EL-5:rubygem-configuration-0.0.5-3.fc11.src.rpm:1247073648 --- NEW FILE rubygem-configuration.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname configuration %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Pure Ruby scoped configuration files Name: rubygem-%{gemname} Version: 0.0.5 Release: 3%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/configuration/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Ruby configuration gem provides a mechanism for configuring ruby programs with ruby configuration files. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force %{SOURCE0} # We strip bad shebang (/usr/bin/env) instead of fixing it # since the file is not executable anyways F=$RPM_BUILD_ROOT%{geminstdir}/install.rb awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %dir %{geminstdir} %{geminstdir}/config %{geminstdir}/lib %{geminstdir}/*.rb %doc %{geminstdir}/samples %doc %{geminstdir}/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 0.0.5-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 0.0.5-2 - Fix up documentation list - Use geminstdir macro where appropriate - Do not move examples around - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 0.0.5-1 - Package generated by gem2rpm - Move examples and README into documentation - Fix up License - Strip useless shebang Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:30 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:23:32 -0000 1.2 @@ -0,0 +1 @@ +configuration-0.0.5.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:35:30 -0000 1.1 +++ sources 8 Jul 2009 17:23:32 -0000 1.2 @@ -0,0 +1 @@ +f34b7ef13f387da318c40f26a75fac75 configuration-0.0.5.gem From lkundrak at fedoraproject.org Wed Jul 8 17:24:03 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:24:03 +0000 (UTC) Subject: rpms/rubygem-bacon/EL-5 import.log, NONE, 1.1 rubygem-bacon.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708172403.79ADA11C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-bacon/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1374/EL-5 Modified Files: .cvsignore sources Added Files: import.log rubygem-bacon.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-bacon-1_1_0-2_fc11:EL-5:rubygem-bacon-1.1.0-2.fc11.src.rpm:1247073644 --- NEW FILE rubygem-bacon.spec --- %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname bacon %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A ruby-based testing framework Name: rubygem-%{gemname} Version: 1.1.0 Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://chneukirchen.org/repos/bacon Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 BuildRequires: rubygems BuildRequires: rubygem(rake) BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Bacon is a small and lightweigt RSpec clone, providing essential spec framework features. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # Derop weird non-utf8 characters in e-mail framework LANG=C sed 's/\xc2//g' -i $RPM_BUILD_ROOT%{geminstdir}/ChangeLog %check cd $RPM_BUILD_ROOT%{geminstdir} rake test --trace %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/bacon %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/bacon %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/RDOX %doc %{geminstdir}/COPYING %doc %{geminstdir}/ChangeLog %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Mon Jun 29 2009 Lubomir Rintel (Good Data) - 1.1.0-2 - Run tests - Drop useless macro * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 1.1.0-1 - Package generated by gem2rpm - Fix up plist - Make rpmlint happy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:35:59 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:23:33 -0000 1.2 @@ -0,0 +1 @@ +bacon-1.1.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:35:59 -0000 1.1 +++ sources 8 Jul 2009 17:23:33 -0000 1.2 @@ -0,0 +1 @@ +c47c4911567d771c906ff87357b60b83 bacon-1.1.0.gem From lkundrak at fedoraproject.org Wed Jul 8 17:24:03 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Wed, 8 Jul 2009 17:24:03 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/EL-5 import.log, NONE, 1.1 rubygem-diff-lcs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708172403.C6B5411C02C4@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-diff-lcs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1391/EL-5 Modified Files: .cvsignore sources Added Files: import.log rubygem-diff-lcs.spec Log Message: Initial import --- NEW FILE import.log --- rubygem-diff-lcs-1_1_2-3_fc11:EL-5:rubygem-diff-lcs-1.1.2-3.fc11.src.rpm:1247073611 --- NEW FILE rubygem-diff-lcs.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname diff-lcs %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Provide a list of changes between two sequenced collections Name: rubygem-%{gemname} Version: 1.1.2 Release: 3%{?dist} Group: Development/Languages License: GPLv2+ or Ruby or Artistic URL: http://rubyforge.org/projects/ruwiki/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Diff::LCS is a port of Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers. The implementation is based on Mario I. Wolczko's Smalltalk version (1.2, 1993) and Ned Konz's Perl version (Algorithm::Diff). %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x # We strip bad shebangs (/usr/bin/env) instead of fixing them # since these files are not executable anyways find $RPM_BUILD_ROOT%{gemdir} \( -name '*.rb' -o -name 'Rakefile' \) \ -exec grep -q '^#!' '{}' \; -print |while read F do awk '/^#!/ {if (FNR == 1) next;} {print}' $F >chopped touch -r $F chopped mv chopped $F done %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/ldiff %{_bindir}/htmldiff %dir %{geminstdir} %{geminstdir}/Rakefile %{geminstdir}/bin %{geminstdir}/lib %doc %{geminstdir}/tests %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/README %doc %{geminstdir}/ChangeLog %doc %{geminstdir}/Install %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 1.1.2-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) * Mon Jun 08 2009 Lubomir Rintel (Good Data) - 1.1.2-2 - Depend on ruby(abi) - Replace defines with globals * Fri Jun 05 2009 Lubomir Rintel (Good Data) - 1.1.2-1 - Package generated by gem2rpm - Strip useless shebangs - Fix up License Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:34:19 -0000 1.1 +++ .cvsignore 8 Jul 2009 17:23:33 -0000 1.2 @@ -0,0 +1 @@ +diff-lcs-1.1.2.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:34:19 -0000 1.1 +++ sources 8 Jul 2009 17:23:33 -0000 1.2 @@ -0,0 +1 @@ +60524d29b37f76d56ce835323e324879 diff-lcs-1.1.2.gem From kyle at fedoraproject.org Wed Jul 8 17:29:19 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 17:29:19 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1616, 1.1617 linux-2.6-debug-always-inline-kzalloc.patch, 1.1, 1.2 linux-2.6-debug-nmi-timeout.patch, 1.4, 1.5 linux-2.6-debug-sizeof-structs.patch, 1.6, 1.7 linux-2.6-debug-spinlock-taint.patch, 1.10, 1.11 linux-2.6-debug-taint-vm.patch, 1.23, 1.24 linux-2.6-debug-vm-would-have-oomkilled.patch, 1.2, 1.3 Message-ID: <20090708172919.6DEFD11C02C4@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3560 Modified Files: kernel.spec linux-2.6-debug-always-inline-kzalloc.patch linux-2.6-debug-nmi-timeout.patch linux-2.6-debug-sizeof-structs.patch linux-2.6-debug-spinlock-taint.patch linux-2.6-debug-taint-vm.patch linux-2.6-debug-vm-would-have-oomkilled.patch Log Message: * Wed Jul 08 2009 Kyle McMartin 2.6.31-0.54.rc2.git2 - Rebase and re-apply all the Fedora-specific linux-2.6-debug-* patches. - Cull a bunch of upstreamed patches from the spec. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1616 retrieving revision 1.1617 diff -u -p -r1.1616 -r1.1617 --- kernel.spec 8 Jul 2009 16:48:13 -0000 1.1616 +++ kernel.spec 8 Jul 2009 17:28:48 -0000 1.1617 @@ -1139,10 +1139,10 @@ ApplyPatch linux-2.6-acpi-video-dos.patc # Various low-impact patches to aid debugging. ApplyPatch linux-2.6-debug-sizeof-structs.patch -#ApplyPatch linux-2.6-debug-nmi-timeout.patch -#ApplyPatch linux-2.6-debug-taint-vm.patch +ApplyPatch linux-2.6-debug-nmi-timeout.patch +ApplyPatch linux-2.6-debug-taint-vm.patch ApplyPatch linux-2.6-debug-spinlock-taint.patch -#ApplyPatch linux-2.6-debug-vm-would-have-oomkilled.patch +ApplyPatch linux-2.6-debug-vm-would-have-oomkilled.patch ApplyPatch linux-2.6-debug-always-inline-kzalloc.patch # @@ -1834,6 +1834,11 @@ fi # and build. %changelog +* Wed Jul 08 2009 Kyle McMartin 2.6.31-0.54.rc2.git2 +- Rebase and re-apply all the Fedora-specific linux-2.6-debug-* + patches. +- Cull a bunch of upstreamed patches from the spec. + * Wed Jul 08 2009 Steve Dickson - Added NFSD v4 dynamic pseudo root patch which allows NFS v3 exports to be mounted by v4 clients. linux-2.6-debug-always-inline-kzalloc.patch: Index: linux-2.6-debug-always-inline-kzalloc.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-always-inline-kzalloc.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- linux-2.6-debug-always-inline-kzalloc.patch 1 Sep 2008 17:39:18 -0000 1.1 +++ linux-2.6-debug-always-inline-kzalloc.patch 8 Jul 2009 17:28:48 -0000 1.2 @@ -1,6 +1,17 @@ ---- linux-2.6.26.noarch/include/linux/slab.h~ 2008-09-01 00:33:55.000000000 -0400 -+++ linux-2.6.26.noarch/include/linux/slab.h 2008-09-01 00:34:19.000000000 -0400 -@@ -272,7 +272,7 @@ static inline void *kmem_cache_zalloc(st +From 76ec0e2e6d6edf81abc0331d5e7873ef7b2f6019 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:06:01 -0400 +Subject: [PATCH 6/6] fedora: linux-2.6-debug-always-inline-kzalloc.patch + +--- + include/linux/slab.h | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/include/linux/slab.h b/include/linux/slab.h +index 2da8372..d4ef74f 100644 +--- a/include/linux/slab.h ++++ b/include/linux/slab.h +@@ -310,7 +310,7 @@ static inline void *kmem_cache_zalloc(struct kmem_cache *k, gfp_t flags) * @size: how many bytes of memory are required. * @flags: the type of memory to allocate (see kmalloc). */ @@ -9,3 +20,6 @@ { return kmalloc(size, flags | __GFP_ZERO); } +-- +1.6.2.5 + linux-2.6-debug-nmi-timeout.patch: Index: linux-2.6-debug-nmi-timeout.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-nmi-timeout.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- linux-2.6-debug-nmi-timeout.patch 15 Jul 2008 13:51:23 -0000 1.4 +++ linux-2.6-debug-nmi-timeout.patch 8 Jul 2009 17:28:48 -0000 1.5 @@ -1,6 +1,18 @@ ---- linux-2.6.26.noarch/arch/x86/kernel/nmi.c~ 2008-07-14 20:31:14.000000000 -0400 -+++ linux-2.6.26.noarch/arch/x86/kernel/nmi.c 2008-07-14 20:31:38.000000000 -0400 -@@ -416,7 +416,7 @@ nmi_watchdog_tick(struct pt_regs *regs, +From 899dd25ae272c73407c1477ec223982d0b57a668 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:03:06 -0400 +Subject: [PATCH 2/6] fedora: linux-2.6-debug-nmi-timeout.patch + +--- + arch/x86/kernel/apic/nmi.c | 2 +- + lib/Kconfig.debug | 8 ++++++++ + 2 files changed, 9 insertions(+), 1 deletions(-) + +diff --git a/arch/x86/kernel/apic/nmi.c b/arch/x86/kernel/apic/nmi.c +index b3025b4..e82a450 100644 +--- a/arch/x86/kernel/apic/nmi.c ++++ b/arch/x86/kernel/apic/nmi.c +@@ -436,7 +436,7 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason) * wait a few IRQs (5 seconds) before doing the oops ... */ local_inc(&__get_cpu_var(alert_counter)); @@ -9,9 +21,11 @@ /* * die_nmi will return ONLY if NOTIFY_STOP happens.. */ ---- linux-2.6.21.noarch/lib/Kconfig.debug~ 2007-07-06 17:05:46.000000000 -0400 -+++ linux-2.6.21.noarch/lib/Kconfig.debug 2007-07-06 17:06:07.000000000 -0400 -@@ -126,6 +126,14 @@ config SCHEDSTATS +diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug +index 12327b2..2790b4f 100644 +--- a/lib/Kconfig.debug ++++ b/lib/Kconfig.debug +@@ -245,6 +245,14 @@ config SCHEDSTATS application, you can say N to avoid the very slight overhead this adds. @@ -26,3 +40,6 @@ config TIMER_STATS bool "Collect kernel timers statistics" depends on DEBUG_KERNEL && PROC_FS +-- +1.6.2.5 + linux-2.6-debug-sizeof-structs.patch: Index: linux-2.6-debug-sizeof-structs.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-sizeof-structs.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- linux-2.6-debug-sizeof-structs.patch 12 Feb 2008 06:18:04 -0000 1.6 +++ linux-2.6-debug-sizeof-structs.patch 8 Jul 2009 17:28:48 -0000 1.7 @@ -1,6 +1,17 @@ ---- linux-2.6/init/main.c~ 2006-07-11 02:35:10.000000000 -0400 -+++ linux-2.6/init/main.c 2006-07-11 02:49:01.000000000 -0400 -@@ -350,6 +350,10 @@ static void __init setup_per_cpu_areas(v +From 3def38bec43d38391d0c9e910dee10317b2ef250 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:01:42 -0400 +Subject: [PATCH 1/6] fedora: linux-2.6-debug-sizeof-structs.patch + +--- + init/main.c | 13 +++++++++++++ + 1 files changed, 13 insertions(+), 0 deletions(-) + +diff --git a/init/main.c b/init/main.c +index 2c5ade7..1c25f08 100644 +--- a/init/main.c ++++ b/init/main.c +@@ -397,6 +397,10 @@ static void __init setup_per_cpu_areas(void) } #endif /* CONFIG_HAVE_SETUP_PER_CPU_AREA */ @@ -11,9 +22,7 @@ /* Called by boot processor to activate the rest. */ static void __init smp_init(void) { ---- linux-2.6.20.noarch/init/main.c~ 2007-02-14 11:47:41.000000000 -0500 -+++ linux-2.6.20.noarch/init/main.c 2007-02-14 11:48:39.000000000 -0500 -@@ -403,6 +403,15 @@ static void __init smp_init(void) +@@ -419,6 +423,15 @@ static void __init smp_init(void) /* Any cleanup work */ printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus()); smp_cpus_done(setup_max_cpus); @@ -29,3 +38,6 @@ } #endif +-- +1.6.2.5 + linux-2.6-debug-spinlock-taint.patch: Index: linux-2.6-debug-spinlock-taint.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-spinlock-taint.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- linux-2.6-debug-spinlock-taint.patch 14 Dec 2007 03:42:44 -0000 1.10 +++ linux-2.6-debug-spinlock-taint.patch 8 Jul 2009 17:28:48 -0000 1.11 @@ -1,3 +1,12 @@ +From 49b12b731b75e2ee406c5b33b89e1baa3fa6b336 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:05:32 -0400 +Subject: [PATCH 4/6] fedora: linux-2.6-debug-spinlock-taint.patch + +--- + lib/spinlock_debug.c | 20 ++++++++++---------- + 1 files changed, 10 insertions(+), 10 deletions(-) + diff --git a/lib/spinlock_debug.c b/lib/spinlock_debug.c index 9c4b025..b7a010a 100644 --- a/lib/spinlock_debug.c @@ -62,4 +71,6 @@ index 9c4b025..b7a010a 100644 dump_stack(); } } +-- +1.6.2.5 linux-2.6-debug-taint-vm.patch: Index: linux-2.6-debug-taint-vm.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-taint-vm.patch,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- linux-2.6-debug-taint-vm.patch 15 Jan 2009 07:38:39 -0000 1.23 +++ linux-2.6-debug-taint-vm.patch 8 Jul 2009 17:28:48 -0000 1.24 @@ -1,31 +1,42 @@ +From b04c57d9dc889462951312be2ac81ff6c702e954 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:05:09 -0400 +Subject: [PATCH 3/6] fedora: linux-2.6-debug-taint-vm.patch + +--- + kernel/panic.c | 4 +++- + mm/page_alloc.c | 5 +++-- + mm/slab.c | 8 ++++---- + mm/slub.c | 2 +- + 4 files changed, 11 insertions(+), 8 deletions(-) + diff --git a/kernel/panic.c b/kernel/panic.c -index 2a2ff36..361d852 100644 +index 984b3ec..6d1c3be 100644 --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -194,6 +194,7 @@ const char *print_tainted(void) - snprintf(buf, sizeof(buf), "Not tainted"); - return(buf); +@@ -199,6 +199,7 @@ const char *print_tainted(void) + + return buf; } +EXPORT_SYMBOL(print_tainted); int test_taint(unsigned flag) { -@@ -334,8 +335,8 @@ void warn_slowpath(const char *file, int line, const char *fmt, ...) - sprint_symbol(function, caller); +@@ -350,7 +351,8 @@ static void warn_slowpath_common(const char *file, int line, void *caller, struc + const char *board; printk(KERN_WARNING "------------[ cut here ]------------\n"); -- printk(KERN_WARNING "WARNING: at %s:%d %s()\n", file, -- line, function); -+ printk(KERN_WARNING "WARNING: at %s:%d %s() (%s)\n", file, -+ line, function, print_tainted()); +- printk(KERN_WARNING "WARNING: at %s:%d %pS()\n", file, line, caller); ++ printk(KERN_WARNING "WARNING: at %s:%d %pS() (%s)\n", ++ file, line, caller, print_tainted()); board = dmi_get_system_info(DMI_PRODUCT_NAME); if (board) printk(KERN_WARNING "Hardware name: %s\n", board); diff --git a/mm/page_alloc.c b/mm/page_alloc.c -index 5675b30..ae3e7ff 100644 +index e0f2cdf..21dcbc4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c -@@ -250,9 +250,10 @@ static void bad_page(struct page *page) +@@ -257,9 +257,10 @@ static void bad_page(struct page *page) printk(KERN_ALERT "BUG: Bad page state in process %s pfn:%05lx\n", current->comm, page_to_pfn(page)); printk(KERN_ALERT @@ -39,10 +50,10 @@ index 5675b30..ae3e7ff 100644 dump_stack(); out: diff --git a/mm/slab.c b/mm/slab.c -index ddc41f3..bf54397 100644 +index e74a16e..7bc287e 100644 --- a/mm/slab.c +++ b/mm/slab.c -@@ -1858,8 +1858,8 @@ static void check_poison_obj(struct kmem_cache *cachep, void *objp) +@@ -1803,8 +1803,8 @@ static void check_poison_obj(struct kmem_cache *cachep, void *objp) /* Print header */ if (lines == 0) { printk(KERN_ERR @@ -53,7 +64,7 @@ index ddc41f3..bf54397 100644 print_objinfo(cachep, objp, 0); } /* Hexdump the affected line */ -@@ -2930,8 +2930,8 @@ static void check_slabp(struct kmem_cache *cachep, struct slab *slabp) +@@ -2902,8 +2902,8 @@ static void check_slabp(struct kmem_cache *cachep, struct slab *slabp) if (entries != cachep->num - slabp->inuse) { bad: printk(KERN_ERR "slab: Internal list corruption detected in " @@ -65,10 +76,10 @@ index ddc41f3..bf54397 100644 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t); i++) { diff --git a/mm/slub.c b/mm/slub.c -index 6392ae5..4f6acce 100644 +index 819f056..8eff0f4 100644 --- a/mm/slub.c +++ b/mm/slub.c -@@ -435,7 +435,7 @@ static void slab_bug(struct kmem_cache *s, char *fmt, ...) +@@ -433,7 +433,7 @@ static void slab_bug(struct kmem_cache *s, char *fmt, ...) va_end(args); printk(KERN_ERR "========================================" "=====================================\n"); @@ -77,3 +88,6 @@ index 6392ae5..4f6acce 100644 printk(KERN_ERR "----------------------------------------" "-------------------------------------\n\n"); } +-- +1.6.2.5 + linux-2.6-debug-vm-would-have-oomkilled.patch: Index: linux-2.6-debug-vm-would-have-oomkilled.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-debug-vm-would-have-oomkilled.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- linux-2.6-debug-vm-would-have-oomkilled.patch 7 Jan 2009 15:12:40 -0000 1.2 +++ linux-2.6-debug-vm-would-have-oomkilled.patch 8 Jul 2009 17:28:48 -0000 1.3 @@ -1,8 +1,18 @@ +From a0e012e118c2b0eba399e213a7989fd2b880f8b7 Mon Sep 17 00:00:00 2001 +From: Kyle McMartin +Date: Wed, 8 Jul 2009 13:05:46 -0400 +Subject: [PATCH 5/6] fedora: linux-2.6-debug-vm-would-have-oomkilled.patch + +--- + kernel/sysctl.c | 9 +++++++++ + mm/oom_kill.c | 14 ++++++++++++++ + 2 files changed, 23 insertions(+), 0 deletions(-) + diff --git a/kernel/sysctl.c b/kernel/sysctl.c -index b2a2d68..3b132ee 100644 +index 98e0232..0cfe3ab 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c -@@ -67,6 +67,7 @@ extern int sysctl_overcommit_ratio; +@@ -73,6 +73,7 @@ extern int sysctl_overcommit_ratio; extern int sysctl_panic_on_oom; extern int sysctl_oom_kill_allocating_task; extern int sysctl_oom_dump_tasks; @@ -10,7 +20,7 @@ index b2a2d68..3b132ee 100644 extern int max_threads; extern int core_uses_pid; extern int suid_dumpable; -@@ -861,6 +862,14 @@ static struct ctl_table vm_table[] = { +@@ -1031,6 +1032,14 @@ static struct ctl_table vm_table[] = { .proc_handler = &proc_dointvec, }, { @@ -26,7 +36,7 @@ index b2a2d68..3b132ee 100644 .procname = "overcommit_ratio", .data = &sysctl_overcommit_ratio, diff --git a/mm/oom_kill.c b/mm/oom_kill.c -index f255eda..3335a94 100644 +index 175a67a..4ab4bdb 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -31,6 +31,7 @@ @@ -37,9 +47,9 @@ index f255eda..3335a94 100644 static DEFINE_SPINLOCK(zone_scan_lock); /* #define DEBUG */ -@@ -321,6 +322,12 @@ static void __oom_kill_task(struct task_struct *p, int verbose) +@@ -328,6 +329,12 @@ static void __oom_kill_task(struct task_struct *p, int verbose) + if (!p->mm) return; - } + if (sysctl_would_have_oomkilled == 1) { + printk(KERN_ERR "Would have killed process %d (%s). But continuing instead.\n", @@ -50,10 +60,11 @@ index f255eda..3335a94 100644 if (verbose) printk(KERN_ERR "Killed process %d (%s)\n", task_pid_nr(p), p->comm); -@@ -363,6 +370,12 @@ static int oom_kill_task(struct task_struct *p) - return 1; - } while_each_thread(g, q); - +@@ -355,6 +362,13 @@ static int oom_kill_task(struct task_struct *p) + return 1; + } + task_unlock(p); ++ + if (sysctl_would_have_oomkilled == 1) { + printk(KERN_ERR "Would have killed process %d (%s). But continuing instead.\n", + task_pid_nr(p), p->comm); @@ -63,3 +74,6 @@ index f255eda..3335a94 100644 __oom_kill_task(p, 1); /* +-- +1.6.2.5 + From dcbw at fedoraproject.org Wed Jul 8 17:29:20 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Wed, 8 Jul 2009 17:29:20 +0000 (UTC) Subject: rpms/NetworkManager/F-11 .cvsignore, 1.105, 1.106 NetworkManager.spec, 1.276, 1.277 sources, 1.143, 1.144 nm-serial-port-settings-fix.patch, 1.1, NONE Message-ID: <20090708172920.99AEE11C02C4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3693 Modified Files: .cvsignore NetworkManager.spec sources Removed Files: nm-serial-port-settings-fix.patch Log Message: * Wed Jul 8 2009 Dan Williams - 0.7.1-7.git20090708 - nm: fixes for ZTE/Onda modem detection - nm: prevent re-opening serial port when the SIM has a PIN - applet: updated translations - editor: show list column headers Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/F-11/.cvsignore,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- .cvsignore 17 Jun 2009 18:47:50 -0000 1.105 +++ .cvsignore 8 Jul 2009 17:29:20 -0000 1.106 @@ -155,3 +155,5 @@ NetworkManager-0.7.1.git20090414.tar.bz2 network-manager-applet-0.7.1.tar.bz2 NetworkManager-0.7.1.git20090617.tar.bz2 network-manager-applet-0.7.1.git20090617.tar.bz2 +NetworkManager-0.7.1.git20090708.tar.bz2 +network-manager-applet-0.7.1.git20090708.tar.bz2 Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/F-11/NetworkManager.spec,v retrieving revision 1.276 retrieving revision 1.277 diff -u -p -r1.276 -r1.277 --- NetworkManager.spec 25 Jun 2009 18:05:45 -0000 1.276 +++ NetworkManager.spec 8 Jul 2009 17:29:20 -0000 1.277 @@ -9,14 +9,14 @@ %define libnl_version 1.1 %define ppp_version 2.2.4 -%define snapshot .git20090617 -%define applet_snapshot .git20090617 +%define snapshot .git20090708 +%define applet_snapshot .git20090708 Name: NetworkManager Summary: Network connection manager and user applications Epoch: 1 Version: 0.7.1 -Release: 6%{snapshot}%{?dist} +Release: 7%{snapshot}%{?dist} Group: System Environment/Base License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ @@ -26,7 +26,6 @@ Source1: network-manager-applet-%{versio Source2: nm-system-settings.conf Patch1: nm-applet-internal-buildfixes.patch Patch2: explain-dns1-dns2.patch -Patch3: nm-serial-port-settings-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) PreReq: chkconfig @@ -147,7 +146,6 @@ tar -xjf %{SOURCE1} %patch1 -p1 -b .buildfix %patch2 -p1 -b .explain-dns1-dns2 -%patch3 -p1 -b .serial %build @@ -281,7 +279,7 @@ fi %{_libdir}/pppd/2.4.4/nm-pppd-plugin.so %{_datadir}/PolicyKit/policy/*.policy %{udev_scriptdir}/nm-modem-probe -%{udev_scriptdir}/rules.d/77-nm-probe-modem-capabilities.rules +%{udev_scriptdir}/rules.d/*.rules %files devel %defattr(-,root,root,0755) @@ -328,6 +326,12 @@ fi %{_datadir}/gtk-doc/html/libnm-util/* %changelog +* Wed Jul 8 2009 Dan Williams - 0.7.1-7.git20090708 +- nm: fixes for ZTE/Onda modem detection +- nm: prevent re-opening serial port when the SIM has a PIN +- applet: updated translations +- editor: show list column headers + * Thu Jun 25 2009 Dan Williams - 0.7.1-6.git20090617 - nm: fix serial port settings Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/F-11/sources,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- sources 17 Jun 2009 18:47:51 -0000 1.143 +++ sources 8 Jul 2009 17:29:20 -0000 1.144 @@ -1,2 +1,2 @@ -ff7ce2a726e0db4c230d27da7e4c5845 NetworkManager-0.7.1.git20090617.tar.bz2 -6467f0318e8b647b7591a1f18e73b319 network-manager-applet-0.7.1.git20090617.tar.bz2 +f361c757fda787a2a90719b9ae668702 NetworkManager-0.7.1.git20090708.tar.bz2 +801d31708a175d2133edc66007667d71 network-manager-applet-0.7.1.git20090708.tar.bz2 --- nm-serial-port-settings-fix.patch DELETED --- From nalin at fedoraproject.org Wed Jul 8 17:37:44 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 8 Jul 2009 17:37:44 +0000 (UTC) Subject: rpms/nss_ldap/devel nss_ldap-264-ent_internal.patch, NONE, 1.1 nss_ldap.spec, 1.111, 1.112 Message-ID: <20090708173744.DFC8911C02C4@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/extras/rpms/nss_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5908 Modified Files: nss_ldap.spec Added Files: nss_ldap-264-ent_internal.patch Log Message: - add proposed patch for upstream #322: crashing in oneshot mode nss_ldap-264-ent_internal.patch: --- NEW FILE nss_ldap-264-ent_internal.patch --- Distinguish between contexts that are somewhat persistent and one-offs which are used to fulfill part of a larger request. diff -up nss_ldap/ldap-grp.c nss_ldap/ldap-grp.c --- nss_ldap/ldap-grp.c +++ nss_ldap/ldap-grp.c @@ -857,7 +857,7 @@ ng_chase (const char *dn, ldap_initgroup LA_STRING (a) = dn; LA_TYPE (a) = LA_TYPE_STRING; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { return NSS_UNAVAIL; } @@ -930,7 +930,7 @@ ng_chase_backlink (const char ** members LA_STRING_LIST (a) = filteredMembersOf; LA_TYPE (a) = LA_TYPE_STRING_LIST_OR; - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { free (filteredMembersOf); return NSS_UNAVAIL; diff -up nss_ldap/ldap-netgrp.c nss_ldap/ldap-netgrp.c --- nss_ldap/ldap-netgrp.c +++ nss_ldap/ldap-netgrp.c @@ -691,7 +691,7 @@ do_innetgr_nested (ldap_innetgr_args_t * LA_TYPE (a) = LA_TYPE_STRING; LA_STRING (a) = nested; /* memberNisNetgroup */ - if (_nss_ldap_ent_context_init_locked (&ctx) == NULL) + if (_nss_ldap_ent_context_init_internal_locked (&ctx) == NULL) { debug ("<== do_innetgr_nested: failed to initialize context"); return NSS_UNAVAIL; diff -up nss_ldap/ldap-nss.c nss_ldap/ldap-nss.c --- nss_ldap/ldap-nss.c +++ nss_ldap/ldap-nss.c @@ -1961,6 +1961,7 @@ _nss_ldap_ent_context_init_locked (ent_c debug ("<== _nss_ldap_ent_context_init_locked"); return NULL; } + ctx->ec_internal = 0; *pctx = ctx; } else @@ -1990,6 +1991,15 @@ _nss_ldap_ent_context_init_locked (ent_c return ctx; } +ent_context_t * +_nss_ldap_ent_context_init_internal_locked (ent_context_t ** pctx) +{ + ent_context_t *ctx; + ctx = _nss_ldap_ent_context_init_locked (pctx); + if (ctx != NULL) + ctx->ec_internal = 1; + return ctx; +} /* * Clears a given context; we require the caller @@ -2031,7 +2041,8 @@ _nss_ldap_ent_context_release (ent_conte LS_INIT (ctx->ec_state); - if (_nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) + if (!ctx->ec_internal && + _nss_ldap_test_config_flag (NSS_LDAP_FLAGS_CONNECT_POLICY_ONESHOT)) { do_close (); } diff -up nss_ldap/ldap-nss.h nss_ldap/ldap-nss.h --- nss_ldap/ldap-nss.h +++ nss_ldap/ldap-nss.h @@ -560,6 +560,8 @@ struct ent_context ldap_state_t ec_state; /* eg. for services */ int ec_msgid; /* message ID */ LDAPMessage *ec_res; /* result chain */ + int ec_internal; /* this context is just a part of a larger + * query for information */ ldap_service_search_descriptor_t *ec_sd; /* current sd */ struct berval *ec_cookie; /* cookie for paged searches */ int ec_eof; /* reached notional end of file */ @@ -744,6 +746,15 @@ ent_context_t *_nss_ldap_ent_context_ini ent_context_t *_nss_ldap_ent_context_init_locked (ent_context_t **); /* + * _nss_ldap_ent_context_init_internal_locked() has the same + * behaviour, except it marks the context as one that's being + * used to fetch additional data used in answering a request, i.e. + * that this isn't the "main" context + */ + +ent_context_t *_nss_ldap_ent_context_init_internal_locked (ent_context_t **); + +/* * _nss_ldap_ent_context_release() is used to manually free a context */ void _nss_ldap_ent_context_release (ent_context_t *); Index: nss_ldap.spec =================================================================== RCS file: /cvs/extras/rpms/nss_ldap/devel/nss_ldap.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- nss_ldap.spec 6 Jul 2009 23:24:49 -0000 1.111 +++ nss_ldap.spec 8 Jul 2009 17:37:14 -0000 1.112 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 3%{?dist} +Release: 4%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -25,6 +25,7 @@ Patch17: nss_ldap-259-res_init.patch Patch19: pam_ldap-184-broken-sasl-rebind.patch Patch20: pam_ldap-184-nsrole.patch Patch21: nss_ldap-264-checkcase.patch +Patch22: nss_ldap-264-ent_internal.patch URL: http://www.padl.com/ License: LGPLv2+ @@ -65,6 +66,7 @@ pushd nss_ldap-%{version} %patch8 -p1 -b .soname %patch17 -p1 -b .res_init #%patch21 -p1 -b .checkcase +%patch22 -p1 -b .ent_internal autoreconf -f -i popd @@ -192,8 +194,12 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Tue Jul 7 2009 Nalin Dahyabhai - 264-4 +- add proposed patch for upstream #322: crashing in oneshot mode + * Mon Jul 6 2009 Nalin Dahyabhai -- add but don't apply proposed patch for upstream #399 +- add but don't apply proposed patch for upstream #399: depending on the + server to enforce the expected case-sensitivity opens up corner cases * Fri Jun 19 2009 Kedar Sovani - 264-3 - BuildRequires: openssl-static From dcbw at fedoraproject.org Wed Jul 8 17:39:21 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Wed, 8 Jul 2009 17:39:21 +0000 (UTC) Subject: rpms/NetworkManager/devel NetworkManager.spec, 1.272, 1.273 nm-applet-internal-buildfixes.patch, 1.7, 1.8 sources, 1.142, 1.143 ifcfg-rh-inotify-update-fix.patch, 1.1, NONE Message-ID: <20090708173921.98A1211C02C4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6328 Modified Files: NetworkManager.spec nm-applet-internal-buildfixes.patch sources Removed Files: ifcfg-rh-inotify-update-fix.patch Log Message: * Wed Jul 8 2009 Dan Williams - 0.7.1-7.git20090708 - nm: fixes for ZTE/Onda modem detection - nm: prevent re-opening serial port when the SIM has a PIN - applet: updated translations - editor: show list column headers * Thu Jun 25 2009 Dan Williams - 0.7.1-6.git20090617 - nm: fix serial port settings * Wed Jun 17 2009 Dan Williams - 0.7.1-5.git20090617 - nm: fix AT&T Quicksilver modem connections (rh #502002) - nm: fix support for s390 bus types (rh #496820) - nm: fix detection of some CMOtech modems - nm: handle unsolicited wifi scans better - nm: resolv.conf fixes when using DHCP and overriding search domains - nm: handle WEP and WPA passphrases (rh #441070) - nm: fix removal of old APs when none are scanned - nm: fix Huawei EC121 and EC168C detection and handling (rh #496426) - applet: save WEP and WPA passphrases instead of hashed keys (rh #441070) - applet: fix broken notification bubble actions - applet: default to WEP encryption for Ad-Hoc network creation - applet: fix crash when connection editor dialogs are canceled - applet: add a mobile broadband provider wizard * Tue May 19 2009 Karsten Hopp 0.7.1-4.git20090414.1 - drop ExcludeArch s390 s390x, we need at least the header files * Tue May 05 2009 Adam Jackson 1:0.7.1-4.git20090414 - nm-save-the-leases.patch: Use per-connection lease files, and don't delete them on interface deactivate. Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/NetworkManager.spec,v retrieving revision 1.272 retrieving revision 1.273 diff -u -p -r1.272 -r1.273 --- NetworkManager.spec 16 Apr 2009 14:49:38 -0000 1.272 +++ NetworkManager.spec 8 Jul 2009 17:38:51 -0000 1.273 @@ -1,7 +1,5 @@ %define udev_scriptdir /lib/udev -ExcludeArch: s390 s390x - %define dbus_version 1.1 %define dbus_glib_version 0.73-6 %define hal_version 0.5.0 @@ -11,14 +9,14 @@ ExcludeArch: s390 s390x %define libnl_version 1.1 %define ppp_version 2.2.4 -%define snapshot .git20090414 -%define applet_snapshot %{nil} +%define snapshot .git20090708 +%define applet_snapshot .git20090708 Name: NetworkManager Summary: Network connection manager and user applications Epoch: 1 Version: 0.7.1 -Release: 3%{snapshot}%{?dist} +Release: 7%{snapshot}%{?dist} Group: System Environment/Base License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ @@ -28,7 +26,6 @@ Source1: network-manager-applet-%{versio Source2: nm-system-settings.conf Patch1: nm-applet-internal-buildfixes.patch Patch2: explain-dns1-dns2.patch -Patch3: ifcfg-rh-inotify-update-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) PreReq: chkconfig @@ -36,14 +33,15 @@ Requires: dbus >= %{dbus_version} Requires: dbus-glib >= %{dbus_glib_version} Requires: hal >= %{hal_version} Requires: iproute -Requires: dhclient >= 3.0.2-12 -Requires: wpa_supplicant >= 0.5.7-21 +Requires: dhclient >= 12:4.1.0 +Requires: wpa_supplicant >= 1:0.6.8-4 Requires: libnl >= %{libnl_version} Requires: %{name}-glib = %{epoch}:%{version}-%{release} Requires: ppp >= %{ppp_version} Requires: avahi-autoipd Requires: dnsmasq Requires: udev +Requires: mobile-broadband-provider-info >= 0.20090602 Obsoletes: dhcdbd Conflicts: NetworkManager-vpnc < 1:0.7.0.99-1 @@ -145,9 +143,9 @@ NetworkManager functionality from applic # unpack the applet tar -xjf %{SOURCE1} + %patch1 -p1 -b .buildfix %patch2 -p1 -b .explain-dns1-dns2 -%patch3 -p1 -b .ifcfg-rh-inotify-fix %build @@ -281,7 +279,7 @@ fi %{_libdir}/pppd/2.4.4/nm-pppd-plugin.so %{_datadir}/PolicyKit/policy/*.policy %{udev_scriptdir}/nm-modem-probe -%{udev_scriptdir}/rules.d/77-nm-probe-modem-capabilities.rules +%{udev_scriptdir}/rules.d/*.rules %files devel %defattr(-,root,root,0755) @@ -328,6 +326,37 @@ fi %{_datadir}/gtk-doc/html/libnm-util/* %changelog +* Wed Jul 8 2009 Dan Williams - 0.7.1-7.git20090708 +- nm: fixes for ZTE/Onda modem detection +- nm: prevent re-opening serial port when the SIM has a PIN +- applet: updated translations +- editor: show list column headers + +* Thu Jun 25 2009 Dan Williams - 0.7.1-6.git20090617 +- nm: fix serial port settings + +* Wed Jun 17 2009 Dan Williams - 0.7.1-5.git20090617 +- nm: fix AT&T Quicksilver modem connections (rh #502002) +- nm: fix support for s390 bus types (rh #496820) +- nm: fix detection of some CMOtech modems +- nm: handle unsolicited wifi scans better +- nm: resolv.conf fixes when using DHCP and overriding search domains +- nm: handle WEP and WPA passphrases (rh #441070) +- nm: fix removal of old APs when none are scanned +- nm: fix Huawei EC121 and EC168C detection and handling (rh #496426) +- applet: save WEP and WPA passphrases instead of hashed keys (rh #441070) +- applet: fix broken notification bubble actions +- applet: default to WEP encryption for Ad-Hoc network creation +- applet: fix crash when connection editor dialogs are canceled +- applet: add a mobile broadband provider wizard + +* Tue May 19 2009 Karsten Hopp 0.7.1-4.git20090414.1 +- drop ExcludeArch s390 s390x, we need at least the header files + +* Tue May 05 2009 Adam Jackson 1:0.7.1-4.git20090414 +- nm-save-the-leases.patch: Use per-connection lease files, and don't delete + them on interface deactivate. + * Thu Apr 16 2009 Dan Williams - 1:0.7.1-3.git20090414 - ifcfg-rh: fix problems noticing changes via inotify (rh #495884) nm-applet-internal-buildfixes.patch: Index: nm-applet-internal-buildfixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/nm-applet-internal-buildfixes.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nm-applet-internal-buildfixes.patch 14 Apr 2009 22:26:14 -0000 1.7 +++ nm-applet-internal-buildfixes.patch 8 Jul 2009 17:38:51 -0000 1.8 @@ -3,20 +3,19 @@ diff -up NetworkManager-0.7.1/network-ma +++ NetworkManager-0.7.1/network-manager-applet-0.7.1/configure.ac 2009-04-05 08:31:12.000000000 -0400 @@ -68,10 +68,6 @@ PKG_CHECK_MODULES(GOBJECT, gobject-2.0) PKG_CHECK_MODULES(NMA, - [dbus-glib-1 >= 0.72 + [dbus-glib-1 >= 0.74 glib-2.0 >= 2.10 -- NetworkManager >= 0.7.0 -- libnm_glib >= 0.7.0 -- libnm-util >= 0.7.0 -- libnm_glib_vpn >= 0.7.0 - gtk+-2.0 >= 2.10 +- NetworkManager >= 0.7.1 +- libnm_glib >= 0.7.1 +- libnm-util >= 0.7.1 +- libnm_glib_vpn >= 0.7.1 + gtk+-2.0 >= 2.14 libglade-2.0 gmodule-export-2.0 diff -up NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am.buildfix NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am --- NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am.buildfix 2009-04-03 09:30:25.000000000 -0400 +++ NetworkManager-0.7.1/network-manager-applet-0.7.1/src/connection-editor/Makefile.am 2009-04-05 08:31:12.000000000 -0400 -@@ -2,6 +2,10 @@ NULL= - +@@ -1,5 +1,9 @@ bin_PROGRAMS = nm-connection-editor +INCLUDES = -I${top_srcdir}/../include \ Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/sources,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- sources 14 Apr 2009 22:55:18 -0000 1.142 +++ sources 8 Jul 2009 17:38:51 -0000 1.143 @@ -1,2 +1,2 @@ -d90a997e3e2051ce8866fe24f765141f network-manager-applet-0.7.1.tar.bz2 -656728d3decf12e75814b0f4e252929e NetworkManager-0.7.1.git20090414.tar.bz2 +f361c757fda787a2a90719b9ae668702 NetworkManager-0.7.1.git20090708.tar.bz2 +801d31708a175d2133edc66007667d71 network-manager-applet-0.7.1.git20090708.tar.bz2 --- ifcfg-rh-inotify-update-fix.patch DELETED --- From limb at fedoraproject.org Wed Jul 8 17:41:07 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 8 Jul 2009 17:41:07 +0000 (UTC) Subject: rpms/ucarp/EL-5 vip-common.conf, NONE, 1.1 sources, 1.4, 1.5 ucarp.init, 1.1, 1.2 ucarp.spec, 1.13, 1.14 vip-001.conf.example, 1.3, 1.4 vip-down, 1.2, 1.3 vip-up, 1.2, 1.3 Message-ID: <20090708174107.0640111C02C4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/ucarp/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7030/EL-5 Modified Files: sources ucarp.init ucarp.spec vip-001.conf.example vip-down vip-up Added Files: vip-common.conf Log Message: 1.1 and 1.3 were never build, updating to 1.5 and building, BZ 510287. --- NEW FILE vip-common.conf --- # Common VIP settings which can be overridden in individual vip-.conf PASSWORD="love" BIND_INTERFACE="eth0" SOURCE_ADDRESS="" # If you have extra options to add, see "ucarp --help" output OPTIONS="--shutdown --preempt" Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 Jun 2006 22:55:39 -0000 1.4 +++ sources 8 Jul 2009 17:41:06 -0000 1.5 @@ -1 +1 @@ -bed7ae84520f2e0faf3e68e9cfe4e1aa ucarp-1.2.tar.bz2 +5b50ca5553bc520f4e639964c9ad5056 ucarp-1.5.tar.bz2 Index: ucarp.init =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/ucarp.init,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ucarp.init 5 Feb 2007 13:06:40 -0000 1.1 +++ ucarp.init 8 Jul 2009 17:41:06 -0000 1.2 @@ -4,6 +4,16 @@ # chkconfig: - 91 09 # description: Starts and stops the common address redundancy protocol daemon +### BEGIN INIT INFO +# Provides: lsb-ucarp +# Required-Start: $local_fs $network $remote_fs +# Required-Stop: $local_fs $network $remote_fs +# Default-Start: +# Default-Stop: 0 1 6 +# Short-Description: start and stop ucarp +# Description: Common Address Redundancy Protocol (CARP) for Unix +### END INIT INFO + # Source function library. . /etc/init.d/functions @@ -19,11 +29,10 @@ get_files() { } prog=$"common address redundancy protocol daemon" -OUR_INITLOG_ARGS="-n ucarp -e 2 -s" -OUR_INITLOG="initlog ${OUR_INITLOG_ARGS}" +LOGGER="/usr/bin/logger -p daemon.notice -t ucarp" CONFDIR=/etc/ucarp -UPSCRIPT=${CONFDIR}/vip-up -DOWNSCRIPT=${CONFDIR}/vip-down +UPSCRIPT=/usr/libexec/ucarp/vip-up +DOWNSCRIPT=/usr/libexec/ucarp/vip-down start() { RETVAL=-1 @@ -34,32 +43,38 @@ start() { get_files if [ -z "${FILES}" ]; then - failure $"no virtual addresses are configured in ${CONFDIR}:" + ${LOGGER} "no virtual addresses are configured in ${CONFDIR}" + failure RETVAL=1 else for FILE in ${FILES}; do # Check that the file name gives us an ID between 1 and 255 ID=`echo ${FILE}| sed 's/^vip-\(.*\).conf/\1/'` if [ ${ID} -lt 1 -o ${ID} -gt 255 ]; then - ${OUR_INITLOG} $"ID out of range (1-255) for ${FILE}, skipped VIP ID ${ID}:" + ${LOGGER} "ID out of range (1-255) for ${FILE}, skipped VIP ID ${ID}" continue fi - unset PASSWORD BIND_INTERFACE BIND_ADDRESS VIP OPTIONS + unset PASSWORD BIND_INTERFACE SOURCE_ADDRESS VIP_ADDRESS OPTIONS # Source ucarp settings + . ${CONFDIR}/vip-common.conf . ${CONFDIR}/${FILE} TMP_RETVAL=0 if [ -z "${PASSWORD}" ]; then - ${OUR_INITLOG} $"no PASSWORD found in ${FILE}, skipped VIP ID ${ID}:" + ${LOGGER} "no PASSWORD found for ${FILE}, skipped VIP ID ${ID}" + TMP_RETVAL=1 + fi + if [ -z "${BIND_INTERFACE}" ]; then + ${LOGGER} "no BIND_INTERFACE found for ${FILE}, skipped VIP ID ${ID}" TMP_RETVAL=1 fi - if [ -z "${BIND_ADDRESS}" ]; then - ${OUR_INITLOG} $"no BIND_ADDRESS found in ${FILE}, skipped VIP ID ${ID}:" + if [ -z "${SOURCE_ADDRESS}" ]; then + ${LOGGER} "no SOURCE_ADDRESS found for ${FILE}, skipped VIP ID ${ID}" TMP_RETVAL=1 fi if [ -z "${VIP_ADDRESS}" ]; then - ${OUR_INITLOG} $"no VIP_ADDRESS found in ${FILE}, skipped VIP ID ${ID}:" + ${LOGGER} "no VIP_ADDRESS found for ${FILE}, skipped VIP ID ${ID}" TMP_RETVAL=1 fi @@ -70,19 +85,22 @@ start() { fi [ ${RETVAL} -eq -1 ] && RETVAL=0 - daemon /usr/sbin/ucarp -v ${ID} -m ${ID} -p ${PASSWORD} -s ${BIND_ADDRESS} -a ${VIP_ADDRESS} -i ${BIND_INTERFACE} ${OPTIONS} -B --upscript=$UPSCRIPT --downscript=$DOWNSCRIPT >/dev/null + daemon /usr/sbin/ucarp --daemonize --interface=${BIND_INTERFACE} --pass=${PASSWORD} --srcip=${SOURCE_ADDRESS} --vhid=${ID} --addr=${VIP_ADDRESS} ${OPTIONS} --upscript=$UPSCRIPT --downscript=$DOWNSCRIPT >/dev/null LAUNCH_RETVAL=$? [ ${LAUNCH_RETVAL} -ne 0 ] && RETVAL=1 done # failure/success or warning if launch worked with some vip errors if [ ${RETVAL} -eq 0 -a ${VIP_RETVAL} -eq 0 ]; then - success $"all ucarp configurations were applied successfully:" + ${LOGGER} "all ucarp configurations were applied successfully" + success touch /var/lock/subsys/ucarp elif [ ${RETVAL} -eq 0 -a ${VIP_RETVAL} -eq 1 ]; then - warning $"error in one or more of the ucarp configurations:" + ${LOGGER} "error in one or more of the ucarp configurations" + warning else - failure $"error running one or more of the ucarp daemon instances:" + ${LOGGER} "error running one or more of the ucarp daemon instances" + failure fi fi echo @@ -93,27 +111,16 @@ stop() { killproc /usr/sbin/ucarp >/dev/null RETVAL=$? - # We unassign all UCARP-managed VIPs when stopping the service - # to avoid conflicting "leftovers". - - get_files - - [ ! -z "${FILES}" ] && \ - for FILE in ${FILES}; do - ID=`echo ${FILE}| sed 's/^vip-\(.*\).conf/\1/'` - unset PASSWORD BIND_INTERFACE BIND_ADDRESS VIP OPTIONS - # Source ucarp settings - . ${CONFDIR}/${FILE} - $DOWNSCRIPT $BIND_INTERFACE $VIP_ADDRESS ${ID} &>/dev/null - #TMP_RETVAL=$? - #[ ${TMP_RETVAL} -ne 0 ] && VIP_RETVAL=1 - done + # With "--shutdown" in the default OPTIONS, the down script is called + # when ucarp is stopped, so IP addresses are released, no "leftovers". # failure/success (no warning, too complicated to handle properly) if [ ${RETVAL} -eq 1 ]; then - failure $"it seems like no ucarp daemon were running:" + ${LOGGER} "it seems like no ucarp daemon were running" + failure else - success $"all ucarp daemons stopped and IP addresses unassigned:" + ${LOGGER} "all ucarp daemons stopped and IP addresses unassigned" + success rm -f /var/lock/subsys/ucarp fi echo Index: ucarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/ucarp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ucarp.spec 5 Feb 2007 13:06:40 -0000 1.13 +++ ucarp.spec 8 Jul 2009 17:41:06 -0000 1.14 @@ -1,18 +1,18 @@ Summary: Common Address Redundancy Protocol (CARP) for Unix Name: ucarp -Version: 1.2 -Release: 7%{?dist} -License: BSD +Version: 1.5 +Release: 1%{?dist} +# See the COPYING file which details everything +License: MIT and BSD Group: System Environment/Daemons URL: http://www.ucarp.org/ Source0: http://download.pureftpd.org/pub/ucarp/ucarp-%{version}.tar.bz2 Source1: ucarp.init Source2: vip-001.conf.example -Source3: vip-001.list.example +Source3: vip-common.conf Source4: vip-up Source5: vip-down -Source6: vip-helper.sh -Patch0: ucarp-1.3-pre.patch +#Source6: vip-helper.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig, /sbin/service @@ -32,8 +32,7 @@ need for any dedicated extra network lin %prep -%setup -%patch -p1 +%setup -q %build @@ -51,14 +50,15 @@ need for any dedicated extra network lin %{buildroot}/etc/rc.d/init.d/ucarp %{__mkdir_p} %{buildroot}/etc/ucarp +%{__mkdir_p} %{buildroot}%{_libexecdir}/ucarp # Install the example config files %{__install} -D -p -m 0600 %{SOURCE2} %{SOURCE3} \ %{buildroot}/etc/ucarp/ # Install helper scripts -%{__install} -D -p -m 0700 %{SOURCE4} %{SOURCE5} %{SOURCE6} \ - %{buildroot}/etc/ucarp/ +%{__install} -D -p -m 0700 %{SOURCE4} %{SOURCE5} \ + %{buildroot}%{_libexecdir}/ucarp/ %clean @@ -88,19 +88,36 @@ fi %files -f %{name}.lang -%defattr(-, root, root, 0755) +%defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README /etc/rc.d/init.d/ucarp -%attr(0700, root, root) %dir /etc/ucarp/ +%attr(0700,root,root) %dir /etc/ucarp/ +%config(noreplace) /etc/ucarp/vip-common.conf /etc/ucarp/vip-001.conf.example -/etc/ucarp/vip-001.list.example -/etc/ucarp/vip-up -/etc/ucarp/vip-down -/etc/ucarp/vip-helper.sh +%{_libexecdir}/ucarp/ %{_sbindir}/ucarp - %changelog +* Mon Apr 13 2009 Jon Ciesla - 1.5-1 +- Update to 1.5 BZ 458767. +- Added LSB header to init script, BZ 247082. +- New upstream should address BZ 427495, 449266, 455394. + +* Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Feb 3 2008 Matthias Saou 1.4-1 +- Update to 1.4. +- Rip out all of the "list" stuff and 255.255.255.255 address hack (#427495). +- Change from INITLOG (now deprecated) to LOGGER in the init script. +- Move helper scripts to /usr/libexec/ucarp/. + +* Thu Aug 23 2007 Matthias Saou 1.2-9 +- Rebuild for new BuildID feature. + +* Sun Aug 5 2007 Matthias Saou 1.2-8 +- Update License field. + * Fri Feb 2 2007 Matthias Saou 1.2-7 - Rename service from carp to ucarp, to be more consistent. - Move /etc/sysconfig/carp to /etc/ucarp since it has become a config directory Index: vip-001.conf.example =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/vip-001.conf.example,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vip-001.conf.example 29 Nov 2006 12:00:11 -0000 1.3 +++ vip-001.conf.example 8 Jul 2009 17:41:06 -0000 1.4 @@ -1,47 +1,10 @@ # Virtual IP configuration file for UCARP # The number (from 001 to 255) in the name of the file is the identifier -# $Id$ - -# Set the same password on all machines sharing the same virtual router ID. -PASSWORD="love" - -# UCARP daemon by default uses the first PCAP-capable interface as returned by -# pcap_lookupdev(), this is often "eth0". This option allows you to change -# this behaviour. -BIND_INTERFACE="eth0" - -# This is a mandatory option. UCARP daemon will use this IP address for its -# announces regardless of the addresses actually assigned to the interface. -#BIND_ADDRESS="10.0.0.2" - -# There is a simple and an advanced way to configure UCARP. In both ways you -# have two physical routers with distinct IP addresses on the same IP network. # In the simple scenario, you want a single virtual IP address from the _same_ -# network to be taken over by one of the routers. You configure this VIP right -# here then: -#VIP_ADDRESS="10.10.10.10" - -# In the complex scenario, your virtual router consists of more than one IP -# address. For example, you might want to assign to the virtual router not only -# the address which is used as the default gateway on the LAN, but also the only -# real IP address, which you got from your ISP. Your configuration would have -# two steps then: -# 1. Configure the VIP_ADDRESS to "255.255.255.255" -# 2. Create a file in the same directory which holds vip-XXX.conf, with a name -# vip-XXX.list. For example, if the .conf file is named vip-001.conf, the .list -# file would be vip-001.list. Each meaningful line of this file will be used as -# an argument for "ip address add" and "ip address del" commands. This way you -# can control, which IP addresses will be assigned to which interfaces. -#VIP_ADDRESS="255.255.255.255" +# network to be taken over by one of the routers. +VIP_ADDRESS="10.0.0.254" -# If you have extra options to add, see "ucarp --help" output -# (the lower the "-k " the higher priority and "-P" to become master ASAP) -# Please note you can use only the following options here: -# --preempt (-P): becomes a master as soon as possible -# --neutral (-n): don't run downscript at start if backup -# --advbase= (-b ): advertisement frequency -# --advskew= (-k ): advertisement skew (0-255) -# The rest of options list is built up by the UCARP initscript. +# In more complex scenarios, check the "vip-common" file for values to override +# and how to add options. -OPTIONS="-k 128 -P" Index: vip-down =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/vip-down,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vip-down 5 Feb 2007 13:06:40 -0000 1.2 +++ vip-down 8 Jul 2009 17:41:06 -0000 1.3 @@ -1,26 +1,5 @@ #!/bin/sh +exec 2>/dev/null -usage() -{ - echo "This script is intended to be run by the UCARP daemon." - echo "Usage: $0 " - echo "Usage: $0 <255.255.255.255> " - exit 1 -} - -[ $# -eq 3 ] || usage - -case $2 in - 255.255.255.255) - # New-style invocation. Process the the list of addresses - # specific to this virtual router. - MYDIR=`dirname $0` - $MYDIR/vip-helper.sh $3 del - ;; - *) - # Old-style invocation. Just add a single address to the same - # interface UCARP daemon is working on. - ip address del $2/32 dev $1 - ;; -esac +/sbin/ip address del "$2"/32 dev "$1" Index: vip-up =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-5/vip-up,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vip-up 5 Feb 2007 13:06:40 -0000 1.2 +++ vip-up 8 Jul 2009 17:41:06 -0000 1.3 @@ -1,26 +1,5 @@ #!/bin/sh +exec 2>/dev/null -usage() -{ - echo "This script is intended to be run by the UCARP daemon." - echo "Usage: $0 " - echo "Usage: $0 <255.255.255.255> " - exit 1 -} - -[ $# -eq 3 ] || usage - -case $2 in - 255.255.255.255) - # New-style invocation. Process the the list of addresses - # specific to this virtual router. - MYDIR=`dirname $0` - $MYDIR/vip-helper.sh $3 add - ;; - *) - # Old-style invocation. Just add a single address to the same - # interface the UCARP daemon is working on. - ip address add $2/32 dev $1 - ;; -esac +/sbin/ip address add "$2"/32 dev "$1" From limb at fedoraproject.org Wed Jul 8 17:41:36 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 8 Jul 2009 17:41:36 +0000 (UTC) Subject: rpms/ucarp/EL-4 ucarp.init, NONE, 1.1 vip-common.conf, NONE, 1.1 vip-down, NONE, 1.1 vip-up, NONE, 1.1 sources, 1.3, 1.4 ucarp.spec, 1.3, 1.4 vip-001.conf.example, 1.1, 1.2 Message-ID: <20090708174136.5262911C02C4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/ucarp/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7030/EL-4 Modified Files: sources ucarp.spec vip-001.conf.example Added Files: ucarp.init vip-common.conf vip-down vip-up Log Message: 1.1 and 1.3 were never build, updating to 1.5 and building, BZ 510287. ***** Error reading new file: [Errno 2] No such file or directory: 'ucarp.init' --- NEW FILE vip-common.conf --- # Common VIP settings which can be overridden in individual vip-.conf PASSWORD="love" BIND_INTERFACE="eth0" SOURCE_ADDRESS="" # If you have extra options to add, see "ucarp --help" output OPTIONS="--shutdown --preempt" --- NEW FILE vip-down --- #!/bin/sh exec 2>/dev/null /sbin/ip address del "$2"/32 dev "$1" --- NEW FILE vip-up --- #!/bin/sh exec 2>/dev/null /sbin/ip address add "$2"/32 dev "$1" Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-4/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 13 Jan 2005 18:13:20 -0000 1.3 +++ sources 8 Jul 2009 17:41:05 -0000 1.4 @@ -1 +1 @@ -f907752bd1654a6e8aa42e717aee9774 ucarp-1.1.tar.bz2 +5b50ca5553bc520f4e639964c9ad5056 ucarp-1.5.tar.bz2 Index: ucarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-4/ucarp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ucarp.spec 13 Jan 2005 18:13:20 -0000 1.3 +++ ucarp.spec 8 Jul 2009 17:41:06 -0000 1.4 @@ -1,18 +1,25 @@ Summary: Common Address Redundancy Protocol (CARP) for Unix Name: ucarp -Version: 1.1 -Release: 1 -License: BSD +Version: 1.5 +Release: 1%{?dist} +# See the COPYING file which details everything +License: MIT and BSD Group: System Environment/Daemons URL: http://www.ucarp.org/ -Source0: ftp://ftp.ucarp.org/pub/ucarp/ucarp-%{version}.tar.bz2 -Source1: carp.init +Source0: http://download.pureftpd.org/pub/ucarp/ucarp-%{version}.tar.bz2 +Source1: ucarp.init Source2: vip-001.conf.example +Source3: vip-common.conf +Source4: vip-up +Source5: vip-down +#Source6: vip-helper.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig, /sbin/service Requires(postun): /sbin/service -BuildRequires: libpcap, gettext +BuildRequires: gettext +BuildRequires: autoconf, automake, libtool +BuildRequires: libpcap-devel %description UCARP allows a couple of hosts to share common virtual IP addresses in order @@ -25,7 +32,7 @@ need for any dedicated extra network lin %prep -%setup +%setup -q %build @@ -35,66 +42,124 @@ need for any dedicated extra network lin %install %{__rm} -rf %{buildroot} -%makeinstall +%{__make} install DESTDIR=%{buildroot} %find_lang %{name} # Install the init script -%{__install} -D -m 0755 %{SOURCE1} \ - %{buildroot}/etc/rc.d/init.d/carp +%{__install} -D -p -m 0755 %{SOURCE1} \ + %{buildroot}/etc/rc.d/init.d/ucarp -# Install the example config file -%{__install} -D -m 0600 %{SOURCE2} \ - %{buildroot}/etc/sysconfig/carp/vip-001.conf.example - -# Install trivial interface up/down scripts -%{__cat} << 'EOF' > %{buildroot}/etc/sysconfig/carp/vip-up -#!/bin/sh -# We could use ifup directly, but it complains if the address is already used -#/sbin/ifup $1 -. /etc/sysconfig/network-scripts/ifcfg-$1 -#exec /sbin/ip addr add ${IPADDR}/${NETMASK} dev "$1" -exec /sbin/ifconfig $1 ${IPADDR} netmask ${NETMASK} up -EOF -%{__cat} << 'EOF' > %{buildroot}/etc/sysconfig/carp/vip-down -#!/bin/sh -#. /etc/sysconfig/network-scripts/ifcfg-$1 -#exec /sbin/ip addr del ${IPADDR}/${NETMASK} dev "$1" -exec /sbin/ifconfig $1 down -EOF +%{__mkdir_p} %{buildroot}/etc/ucarp +%{__mkdir_p} %{buildroot}%{_libexecdir}/ucarp + +# Install the example config files +%{__install} -D -p -m 0600 %{SOURCE2} %{SOURCE3} \ + %{buildroot}/etc/ucarp/ + +# Install helper scripts +%{__install} -D -p -m 0700 %{SOURCE4} %{SOURCE5} \ + %{buildroot}%{_libexecdir}/ucarp/ %clean %{__rm} -rf %{buildroot} -%post -if [ $1 -eq 1 ]; then - /sbin/chkconfig --add carp +%pre +# Legacy, in case we update from an older package where the service was "carp" +if [ -f /etc/rc.d/init.d/carp ]; then + /sbin/service carp stop &>/dev/null || : + /sbin/chkconfig --del carp fi +%post +/sbin/chkconfig --add ucarp + %preun if [ $1 -eq 0 ]; then - /sbin/service carp stop >/dev/null 2>&1 || : - /sbin/chkconfig --del carp + /sbin/service ucarp stop &>/dev/null || : + /sbin/chkconfig --del ucarp fi %postun if [ $1 -ge 1 ]; then - /sbin/service carp condrestart >/dev/null 2>&1 || : + /sbin/service ucarp condrestart &>/dev/null || : fi %files -f %{name}.lang -%defattr(-, root, root, 0755) -%doc AUTHORS COPYING ChangeLog NEWS README examples/linux/*.sh -/etc/rc.d/init.d/carp -/etc/sysconfig/carp/vip-001.conf.example -%attr(0700, root, root) %config(noreplace) /etc/sysconfig/carp/vip-up -%attr(0700, root, root) %config(noreplace) /etc/sysconfig/carp/vip-down +%defattr(-,root,root,-) +%doc AUTHORS COPYING ChangeLog NEWS README +/etc/rc.d/init.d/ucarp +%attr(0700,root,root) %dir /etc/ucarp/ +%config(noreplace) /etc/ucarp/vip-common.conf +/etc/ucarp/vip-001.conf.example +%{_libexecdir}/ucarp/ %{_sbindir}/ucarp - %changelog +* Mon Apr 13 2009 Jon Ciesla - 1.5-1 +- Update to 1.5 BZ 458767. +- Added LSB header to init script, BZ 247082. +- New upstream should address BZ 427495, 449266, 455394. + +* Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Feb 3 2008 Matthias Saou 1.4-1 +- Update to 1.4. +- Rip out all of the "list" stuff and 255.255.255.255 address hack (#427495). +- Change from INITLOG (now deprecated) to LOGGER in the init script. +- Move helper scripts to /usr/libexec/ucarp/. + +* Thu Aug 23 2007 Matthias Saou 1.2-9 +- Rebuild for new BuildID feature. + +* Sun Aug 5 2007 Matthias Saou 1.2-8 +- Update License field. + +* Fri Feb 2 2007 Matthias Saou 1.2-7 +- Rename service from carp to ucarp, to be more consistent. +- Move /etc/sysconfig/carp to /etc/ucarp since it has become a config directory + of its own. + +* Wed Nov 29 2006 Matthias Saou 1.2-6 +- Rebuild against new libpcap. + +* Mon Nov 13 2006 Matthias Saou 1.2-5 +- Include all improvements from Denis Ovsienko (#200395). + +* Mon Aug 28 2006 Matthias Saou 1.2-4 +- FC6 rebuild. + +* Tue Aug 22 2006 Matthias Saou 1.2-3 +- Update to 1.3 snapshot, which includes the ARP fix, as well as fixes for the + segfaults reported in #200400 and #201596. +- Add autoconf, automake and libtool build reqs for the 1.3 patch. + +* Thu Jul 27 2006 Matthias Saou 1.2-3 +- Fix init script for recent find versions (#200395). + +* Thu Jun 22 2006 Matthias Saou 1.2-2 +- Include ARP patch backported from 1.3 snapshot (#196095). +- Make libpcap build requirement conditional to be able to share spec file. + +* Wed Jun 21 2006 Matthias Saou 1.2-1 +- Update to 1.2. +- BuildRequire libpcap-devel instead of libpcap now that it has been split. + +* Mon Mar 6 2006 Matthias Saou 1.1-5 +- FC5 rebuild. + +* Thu Feb 9 2006 Matthias Saou 1.1-4 +- Rebuild for new gcc/glibc. + +* Thu Nov 17 2005 Matthias Saou 1.1-3 +- Rebuild against new libpcap library. + +* Fri Apr 1 2005 Michael Schwendt - 1.1-2 +- Add %%dir entry for /etc/sysconfig/carp directory. + * Thu Jan 13 2005 Matthias Saou 1.1-1 - Update to 1.1. - Update source location. Index: vip-001.conf.example =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-4/vip-001.conf.example,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vip-001.conf.example 9 Nov 2004 02:50:47 -0000 1.1 +++ vip-001.conf.example 8 Jul 2009 17:41:06 -0000 1.2 @@ -1,20 +1,10 @@ # Virtual IP configuration file for UCARP # The number (from 001 to 255) in the name of the file is the identifier -# $Id$ -# Set the same password on all mamchines sharing the same virtual IP -PASSWORD="love" +# In the simple scenario, you want a single virtual IP address from the _same_ +# network to be taken over by one of the routers. +VIP_ADDRESS="10.0.0.254" -# You are required to have an IPADDR= line in the configuration file for -# this interface (so no DHCP allowed) -BIND_INTERFACE="eth0" - -# Do *NOT* use a main interface for the virtual IP, use an ethX:Y alias -# with the corresponding /etc/sysconfig/network-scripts/ifcfg-ethX:Y file -# already configured and ith ONBOOT=no -VIP_INTERFACE="eth0:0" - -# If you have extra options to add, see "ucarp --help" output -# (the lower the "-k " the higher priority and "-P" to become master ASAP) -OPTIONS="-k 128 -P" +# In more complex scenarios, check the "vip-common" file for values to override +# and how to add options. From dcbw at fedoraproject.org Wed Jul 8 17:49:22 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Wed, 8 Jul 2009 17:49:22 +0000 (UTC) Subject: rpms/NetworkManager/devel NetworkManager.spec,1.273,1.274 Message-ID: <20090708174922.5C10211C02C4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10507 Modified Files: NetworkManager.spec Log Message: Fix buildreq for libuuid Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/NetworkManager.spec,v retrieving revision 1.273 retrieving revision 1.274 diff -u -p -r1.273 -r1.274 --- NetworkManager.spec 8 Jul 2009 17:38:51 -0000 1.273 +++ NetworkManager.spec 8 Jul 2009 17:48:52 -0000 1.274 @@ -70,8 +70,7 @@ BuildRequires: PolicyKit-devel PolicyKit BuildRequires: dhclient BuildRequires: gtk-doc BuildRequires: libudev-devel -# for libuuid -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel %description NetworkManager attempts to keep an active network connection available at all From dcbw at fedoraproject.org Wed Jul 8 17:51:15 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Wed, 8 Jul 2009 17:51:15 +0000 (UTC) Subject: rpms/mobile-broadband-provider-info/F-11 mobile-broadband-provider-info.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090708175115.C794211C02C4@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/mobile-broadband-provider-info/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11292 Modified Files: mobile-broadband-provider-info.spec sources Log Message: * Tue Jul 7 2009 Dan Williams - 1.20090707-1 - Update to latest upstream release including: - T-Mobile USA - Brazil - Bangladesh - Sweden - Spain - Moldova Index: mobile-broadband-provider-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/mobile-broadband-provider-info/F-11/mobile-broadband-provider-info.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mobile-broadband-provider-info.spec 17 Jun 2009 16:50:36 -0000 1.1 +++ mobile-broadband-provider-info.spec 8 Jul 2009 17:51:15 -0000 1.2 @@ -1,16 +1,16 @@ -%define upstream_version 20090602 +%define upstream_version 20090707 Summary: Mobile broadband provider database Name: mobile-broadband-provider-info -Version: 0.%{upstream_version} -Release: 2%{?dist} +Version: 1.%{upstream_version} +Release: 1%{?dist} # # Source from git://git.gnome.org/mobile-broadband-provider-info # tarball built with: # ./autogen.sh --prefix=/usr # make distcheck # -Source: mobile-broadband-provider-info-20090602.tar.bz2 +Source: mobile-broadband-provider-info-%{upstream_version}.tar.bz2 License: Public Domain Group: System Environment/Base @@ -37,7 +37,7 @@ make check rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +rm -f $RPM_BUILD_ROOT%{_datadir}/pkgconfig/%{name}.pc %clean rm -rf $RPM_BUILD_ROOT @@ -48,6 +48,15 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_datadir}/%{name}/* %changelog +* Tue Jul 7 2009 Dan Williams - 1.20090707-1 +- Update to latest upstream release including: +- T-Mobile USA +- Brazil +- Bangladesh +- Sweden +- Spain +- Moldova + * Tue Jun 3 2009 Dan Williams 0.20090602-2 - Package review fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mobile-broadband-provider-info/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 17 Jun 2009 16:50:36 -0000 1.2 +++ sources 8 Jul 2009 17:51:15 -0000 1.3 @@ -1 +1 @@ -9b5c6a2e180bd0339df4393c2b4050a5 mobile-broadband-provider-info-20090602.tar.bz2 +1d03283f6bb93d21985fce7bcdad548b mobile-broadband-provider-info-20090707.tar.bz2 From limb at fedoraproject.org Wed Jul 8 17:52:02 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 8 Jul 2009 17:52:02 +0000 (UTC) Subject: rpms/ucarp/EL-4 ucarp.spec,1.4,1.5 Message-ID: <20090708175202.3B08011C02C4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/ucarp/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11618 Modified Files: ucarp.spec Log Message: libpcap correction Index: ucarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/EL-4/ucarp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ucarp.spec 8 Jul 2009 17:41:06 -0000 1.4 +++ ucarp.spec 8 Jul 2009 17:52:02 -0000 1.5 @@ -19,7 +19,7 @@ Requires(preun): /sbin/chkconfig, /sbin/ Requires(postun): /sbin/service BuildRequires: gettext BuildRequires: autoconf, automake, libtool -BuildRequires: libpcap-devel +BuildRequires: libpcap %description UCARP allows a couple of hosts to share common virtual IP addresses in order From pgordon at fedoraproject.org Wed Jul 8 18:28:10 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Wed, 8 Jul 2009 18:28:10 +0000 (UTC) Subject: rpms/deluge/devel deluge.spec,1.93,1.94 Message-ID: <20090708182810.D699611C02C4@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/deluge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19728/devel Modified Files: deluge.spec Log Message: Fix bug 510264 (versioned dependency using an undefined min_rblibtorrent_ver macro). Index: deluge.spec =================================================================== RCS file: /cvs/pkgs/rpms/deluge/devel/deluge.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- deluge.spec 18 Jun 2009 06:18:46 -0000 1.93 +++ deluge.spec 8 Jul 2009 18:27:40 -0000 1.94 @@ -3,7 +3,7 @@ Name: deluge Version: 1.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A GTK+ BitTorrent client with support for DHT, UPnP, and PEX Group: Applications/Internet License: GPLv3 with exceptions @@ -22,7 +22,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools ## The build script checks for the libtorrent module and skips compiling the ## in-tarball one if this is found. -BuildRequires: rb_libtorrent-python >= %{min_rblibtorrent_ver} +BuildRequires: rb_libtorrent-python Requires: /bin/sh Requires: dbus-python @@ -34,7 +34,7 @@ Requires: pyOpenSSL Requires: python-chardet Requires: python-setuptools Requires: pyxdg -Requires: rb_libtorrent-python >= %{min_rblibtorrent_ver} +Requires: rb_libtorrent-python %description Deluge is a new BitTorrent client, created using Python and GTK+. It is @@ -146,6 +146,10 @@ fi %changelog +* Wed Jul 08 2009 Peter Gordon - 1.1.9-2 +- Fixed rb_libtorrent-python dependency, so as not to use the + %%min_rblibtorrent_ver macro any more (#510264). + * Wed Jun 17 2009 Peter Gordon - 1.1.9-1 - Update to new upstream bug-fix release (1.1.9). - Do not hard-code minimum rb_libtorrent version. (We're only building against From pgordon at fedoraproject.org Wed Jul 8 18:28:19 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Wed, 8 Jul 2009 18:28:19 +0000 (UTC) Subject: rpms/deluge/F-11 deluge.spec,1.91,1.92 Message-ID: <20090708182819.9D3FC11C02C4@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/deluge/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19889/F-11 Modified Files: deluge.spec Log Message: Fix bug 510264 (versioned dependency using an undefined min_rblibtorrent_ver macro). Index: deluge.spec =================================================================== RCS file: /cvs/pkgs/rpms/deluge/F-11/deluge.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- deluge.spec 18 Jun 2009 06:27:42 -0000 1.91 +++ deluge.spec 8 Jul 2009 18:28:19 -0000 1.92 @@ -3,7 +3,7 @@ Name: deluge Version: 1.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A GTK+ BitTorrent client with support for DHT, UPnP, and PEX Group: Applications/Internet License: GPLv3 with exceptions @@ -22,7 +22,7 @@ BuildRequires: python-devel BuildRequires: python-setuptools ## The build script checks for the libtorrent module and skips compiling the ## in-tarball one if this is found. -BuildRequires: rb_libtorrent-python >= %{min_rblibtorrent_ver} +BuildRequires: rb_libtorrent-python Requires: /bin/sh Requires: dbus-python @@ -34,7 +34,7 @@ Requires: pyOpenSSL Requires: python-chardet Requires: python-setuptools Requires: pyxdg -Requires: rb_libtorrent-python >= %{min_rblibtorrent_ver} +Requires: rb_libtorrent-python %description Deluge is a new BitTorrent client, created using Python and GTK+. It is @@ -146,6 +146,10 @@ fi %changelog +* Wed Jul 08 2009 Peter Gordon - 1.1.9-2 +- Fixed rb_libtorrent-python dependency, so as not to use the + %%min_rblibtorrent_ver macro any more (#510264). + * Wed Jun 17 2009 Peter Gordon - 1.1.9-1 - Update to new upstream bug-fix release (1.1.9). - Do not hard-code minimum rb_libtorrent version. (We're only building against From mmcgrath at fedoraproject.org Wed Jul 8 18:29:27 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 8 Jul 2009 18:29:27 +0000 (UTC) Subject: rpms/smolt/EL-5 smoltGui.py,NONE,1.1 Message-ID: <20090708182927.131DC11C02C4@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20235 Added Files: smoltGui.py Log Message: Shipping older gui on older releases --- NEW FILE smoltGui.py --- #!/usr/bin/python # -*- coding: utf-8 -*- # Author: Toshio Kuratomi # smolt - Fedora hardware profiler # # Copyright (C) 2007 Mike McGrath # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. import os import sys import subprocess import gtk import gobject import threading from urlparse import urljoin import webbrowser sys.path.append('/usr/share/smolt/client') from i18n import _ import smolt import gui import privacypolicy class SmoltGui(object): ui = ''' ''' def __init__(self, args): self.mainWindow = None self.aboutDialog = None self.privacyPolicy = None gtk.gdk.threads_init() self.profile = smolt.Hardware() self._create_gtk_windows() def _create_gtk_windows(self): actiongroup = gtk.ActionGroup('actiongroup') actiongroup.add_actions([('Quit', gtk.STOCK_QUIT, _('_Quit'), None, _('Quit the program without sending your hardware profile to the server'), self.quit_cb), ('Send', gtk.STOCK_GO_FORWARD, _('_Send'), 's', _('Send your hardware profile to the server.'), self.send_cb), ('Privacy', gtk.STOCK_INFO, _('Show _Privacy Policy'), None, _('Show the Smolt privacy policy.'), self.privacy_cb), ('About', gtk.STOCK_ABOUT, _('_About'), None, None, self.about_cb), ('File', None, _('_File')), ('Help', None, _('_Help')), ('MySmolt', gtk.STOCK_HOME, _('_My Smolt Page'), None, _('Take me to my smolt profile page'), self.mysmolt_cb)]) uim = gtk.UIManager() uim.insert_action_group(actiongroup, 0) uim.add_ui_from_string(self.ui) accelerators = uim.get_accel_group() self.mainWindow = gtk.Window() self.mainWindow.set_title('Smolt') self.mainWindow.connect('delete_event', self.quit_cb) self.mainWindow.connect('destroy', self.quit_cb) self.mainWindow.add_accel_group(accelerators) self.mainWindow.set_default_size(700, 600) layout = gtk.VBox() layout.show() self.mainWindow.add(layout) menubar = uim.get_widget('ui/menubar') menubar.show() layout.pack_start(menubar, expand=False) toolbar = uim.get_widget('ui/toolbar') toolbar.show() layout.pack_start(toolbar, expand=False) # ratings_hbox = gtk.HBox() # ratings_hbox.show() # layout.pack_start(ratings_hbox, expand=False) # # ratings_label = gtk.Label(_('Rate this system:')) # ratings_label.show() # ratings_hbox.pack_start(ratings_label, expand=False) # # ratings = starhscale.StarHScale(5,0) # ratings.show() # ratings_hbox.pack_start(ratings, expand=False) vpaned = gtk.VPaned() vpaned.show() layout.pack_start(vpaned, expand = True) self.host_table = gui.HostTable(self.profile) vpaned.pack1(self.host_table.get(), resize = True, shrink = True) self.device_table = gui.DeviceTable(self.profile) vpaned.pack2(self.device_table.get(), resize = True, shrink = True) def mysmolt_cb(self, *extra): webbrowser.open(urljoin(smolt.smoonURL, '/show?uuid=%s' % self.profile.host.UUID)) def quit_cb(self, *extra): '''Quit the program.''' gtk.main_quit() def send_cb(self, *extra): threading.Thread(target=self._send).start() def _send(self): self.mainWindow.set_sensitive(False) '''Send the profile to the smolt server''' # A little hacky. Perhaps this should be a method in the library #retcode = subprocess.call('/usr/bin/smoltSendProfile -a') try: retvalue, pub_uuid, admin = self.profile.send(smoonURL=smolt.smoonURL) url = urljoin(smolt.smoonURL, '/show?uuid=%s' % pub_uuid) finishMessage = gtk.MessageDialog(self.mainWindow, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, message_format=_('The data was successfully sent. If you need to refer to your hardware profile for a bug report your UUID is \n%s\nstored in %s') \ % (url, smolt.get_config_attr("HW_UUID", "/etc/sysconfig/hw-uuid"))) def finish(*extra): webbrowser.open(url) self.quit_cb(None) except TypeError: finishMessage = gtk.MessageDialog(self.mainWindow, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, gtk.MESSAGE_WARNING, gtk.BUTTONS_OK, message_format=_('An error occurred while sending the data to the server.')) def finish(*extra): finishMessage.destroy() self.mainWindow.set_sensitive(True) finishMessage.connect('response', finish) finishMessage.show() def privacy_cb(self, *extra): if self.privacyPolicy is None: privacy_text = privacypolicy.PRIVACY_POLICY # if os.path.exists('../doc/PrivacyPolicy'): # privacy_text = file('../doc/PrivacyPolicy', 'r').read().strip() # else: # privacy_text = file('/usr/share/smolt/doc/PrivacyPolicy').read().strip() self.privacyPolicy = gtk.Dialog(_('Smolt Privacy Policy'), self.mainWindow, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, (gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)) self.privacyPolicy.connect('response', self.privacy_response_cb) self.privacyPolicy.connect('close', self.privacy_close_cb) self.privacyPolicy.connect('delete_event', self.privacy_close_cb) textscroll = gtk.ScrolledWindow() textscroll.set_border_width(6) textscroll.set_size_request(540, 475) textscroll.show() self.privacyPolicy.vbox.pack_start(textscroll, expand = True) textview = gtk.TextView() textview.set_editable(False) textview.set_cursor_visible(False) textview.get_buffer().set_text(privacy_text) textview.show() textscroll.add(textview) self.privacyPolicy.show() def privacy_response_cb(self, dialog, response, *args): if response < 0: dialog.hide() dialog.emit_stop_by_name('response') def privacy_close_cb(self, widget, *args): self.aboutDialog.hide() return True def about_cb(self, *extra): if self.aboutDialog is None: self.aboutDialog = gtk.AboutDialog() self.aboutDialog.set_transient_for(self.mainWindow) self.aboutDialog.set_name('Smolt') self.aboutDialog.set_version(smolt.smoltProtocol) self.aboutDialog.set_website('https://fedorahosted.org/smolt') self.aboutDialog.set_authors(['Mike McGrath ', 'Jeffrey C. Ollie ', 'Dennis Gilmore ', 'Toshio Kuratomi ', 'Yaakov M. Nemoy ', 'Harald Hoyer ']) self.aboutDialog.set_translator_credits(_('translator-credits')) self.aboutDialog.set_comments(_('Fedora hardware profiler.')) self.aboutDialog.set_copyright(_('Copyright ?? 2007 Mike McGrath')) self.aboutDialog.set_wrap_license(True) self.aboutDialog.set_license(_('This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.')) if os.path.exists('icons/smolt-about.png'): logo = gtk.gdk.pixbuf_new_from_file('icons/smolt-about.png') else: logo = gtk.gdk.pixbuf_new_from_file('/usr/share/smolt/client/icons/smolt-about.png') self.aboutDialog.set_logo(logo) self.aboutDialog.connect('response', self.about_response_cb) self.aboutDialog.connect('close', self.about_close_cb) self.aboutDialog.connect('delete_event', self.about_close_cb) self.aboutDialog.show() def about_response_cb(self, dialog, response, *args): if response < 0: dialog.hide() dialog.emit_stop_by_name('response') def about_close_cb(self, widget, *args): self.aboutDialog.hide() return True def run(self): self.mainWindow.show() gtk.main() def url_hook(dialog, link, data): webbrowser.open(link) def email_hook(dialog, link, data): # hmm... I'm sure that there's something better that can be done here... os.system('gnome-open mailto:%s' % link) if __name__ == '__main__': gtk.about_dialog_set_url_hook(url_hook, None) gtk.about_dialog_set_email_hook(email_hook, None) app = SmoltGui(sys.argv) app.run() sys.exit(0) From pkgdb at fedoraproject.org Wed Jul 8 18:33:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 18:33:13 +0000 Subject: [pkgdb] python-sybase was added for yaneti Message-ID: <20090708183313.3E13610F888@bastion2.fedora.phx.redhat.com> tibbs has added Package python-sybase with summary Python interface to Sybase tibbs has approved Package python-sybase tibbs has added a Fedora devel branch for python-sybase with an owner of yaneti tibbs has approved python-sybase in Fedora devel tibbs has approved Package python-sybase tibbs has set commit to Approved for 107427 on python-sybase (Fedora devel) tibbs has set checkout to Approved for 107427 on python-sybase (Fedora devel) tibbs has set build to Approved for 107427 on python-sybase (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sybase From pkgdb at fedoraproject.org Wed Jul 8 18:33:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 18:33:14 +0000 Subject: [pkgdb] python-sybase summary updated by tibbs Message-ID: <20090708183314.F10B610F89B@bastion2.fedora.phx.redhat.com> tibbs set package python-sybase summary to Python interface to Sybase To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sybase From pkgdb at fedoraproject.org Wed Jul 8 18:33:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 18:33:14 +0000 Subject: [pkgdb] python-sybase (Fedora, 11) updated by tibbs Message-ID: <20090708183315.2C4CC10F8A4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-sybase tibbs has set commit to Approved for 107427 on python-sybase (Fedora 11) tibbs has set checkout to Approved for 107427 on python-sybase (Fedora 11) tibbs has set build to Approved for 107427 on python-sybase (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sybase From tibbs at fedoraproject.org Wed Jul 8 18:33:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 18:33:20 +0000 (UTC) Subject: rpms/python-sybase - New directory Message-ID: <20090708183320.22A3711C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sybase In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS21134/rpms/python-sybase Log Message: Directory /cvs/pkgs/rpms/python-sybase added to the repository From tibbs at fedoraproject.org Wed Jul 8 18:33:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 18:33:20 +0000 (UTC) Subject: rpms/python-sybase/devel - New directory Message-ID: <20090708183320.42F1511C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sybase/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS21134/rpms/python-sybase/devel Log Message: Directory /cvs/pkgs/rpms/python-sybase/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 8 18:33:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 18:33:14 +0000 Subject: [pkgdb] python-sybase (Fedora, 11) updated by tibbs Message-ID: <20090708183315.34F7110F8A9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-sybase tibbs has set commit to Approved for 107427 on python-sybase (Fedora 10) tibbs has set checkout to Approved for 107427 on python-sybase (Fedora 10) tibbs has set build to Approved for 107427 on python-sybase (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sybase From tibbs at fedoraproject.org Wed Jul 8 18:33:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 18:33:25 +0000 (UTC) Subject: rpms/python-sybase Makefile,NONE,1.1 Message-ID: <20090708183325.BCD5811C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sybase In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS21134/rpms/python-sybase Added Files: Makefile Log Message: Setup of module python-sybase --- NEW FILE Makefile --- # Top level Makefile for module python-sybase all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 8 18:33:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 8 Jul 2009 18:33:26 +0000 (UTC) Subject: rpms/python-sybase/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090708183326.0D8E611C02C4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sybase/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsS21134/rpms/python-sybase/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-sybase --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-sybase # $Id: Makefile,v 1.1 2009/07/08 18:33:25 tibbs Exp $ NAME := python-sybase SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From limb at fedoraproject.org Wed Jul 8 18:39:51 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 8 Jul 2009 18:39:51 +0000 (UTC) Subject: rpms/ucarp/devel .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 ucarp.spec, 1.18, 1.19 Message-ID: <20090708183951.8B20911C02C4@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/ucarp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22734 Modified Files: .cvsignore sources ucarp.spec Log Message: 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 13 Apr 2009 13:56:19 -0000 1.6 +++ .cvsignore 8 Jul 2009 18:39:20 -0000 1.7 @@ -1 +1 @@ -ucarp-1.5.tar.bz2 +ucarp-1.5.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 13 Apr 2009 13:56:19 -0000 1.6 +++ sources 8 Jul 2009 18:39:20 -0000 1.7 @@ -1 +1 @@ -5b50ca5553bc520f4e639964c9ad5056 ucarp-1.5.tar.bz2 +9219ea8214198e8af751353a132087bb ucarp-1.5.1.tar.bz2 Index: ucarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/devel/ucarp.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ucarp.spec 13 Apr 2009 13:56:19 -0000 1.18 +++ ucarp.spec 8 Jul 2009 18:39:20 -0000 1.19 @@ -1,6 +1,6 @@ Summary: Common Address Redundancy Protocol (CARP) for Unix Name: ucarp -Version: 1.5 +Version: 1.5.1 Release: 1%{?dist} # See the COPYING file which details everything License: MIT and BSD @@ -98,6 +98,11 @@ fi %{_sbindir}/ucarp %changelog +* Wed Jul 08 2009 Jon Ciesla - 1.5.1-1 +- New upstream. +- New option (--nomcast / -M) to use broadcast +- advertisements instead of multicast ones. + * Mon Apr 13 2009 Jon Ciesla - 1.5-1 - Update to 1.5 BZ 458767. - Added LSB header to init script, BZ 247082. From notting at fedoraproject.org Wed Jul 8 18:50:29 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Wed, 8 Jul 2009 18:50:29 +0000 (UTC) Subject: comps comps-f12.xml.in,1.29,1.30 Message-ID: <20090708185029.C61C611C02C4@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26230 Modified Files: comps-f12.xml.in Log Message: We don't ship a bcm43xx driver any more. Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- comps-f12.xml.in 7 Jul 2009 21:01:56 -0000 1.29 +++ comps-f12.xml.in 8 Jul 2009 18:50:29 -0000 1.30 @@ -2830,7 +2830,6 @@ atmel-firmware b43-fwcutter - bcm43xx-fwcutter ipw2100-firmware ipw2200-firmware iwl3945-firmware From alikins at fedoraproject.org Wed Jul 8 18:54:07 2009 From: alikins at fedoraproject.org (Adrian Likins) Date: Wed, 8 Jul 2009 18:54:07 +0000 (UTC) Subject: rpms/certmaster/devel .cvsignore, 1.6, 1.7 certmaster.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090708185407.3CB2611C02C4@cvs1.fedora.phx.redhat.com> Author: alikins Update of /cvs/pkgs/rpms/certmaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26978/devel Modified Files: .cvsignore certmaster.spec sources Log Message: certmaster-0.25 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/certmaster/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Dec 2008 21:58:46 -0000 1.6 +++ .cvsignore 8 Jul 2009 18:53:36 -0000 1.7 @@ -3,3 +3,4 @@ certmaster-0.19.tar.gz certmaster-0.20.tar.gz certmaster-0.23.tar.gz certmaster-0.24.tar.gz +certmaster-0.25.tar.gz Index: certmaster.spec =================================================================== RCS file: /cvs/pkgs/rpms/certmaster/devel/certmaster.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- certmaster.spec 24 Feb 2009 07:03:40 -0000 1.8 +++ certmaster.spec 8 Jul 2009 18:53:37 -0000 1.9 @@ -16,8 +16,8 @@ Summary: Remote certificate distribution framework Name: certmaster -Version: 0.24 -Release: 6%{?dist} +Version: 0.25 +Release: 1%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -62,6 +62,11 @@ certmaster is a easy mechanism for distr %install test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --prefix=/usr --root=$RPM_BUILD_ROOT +ln -s %{_bindir}/certmaster-sync $RPM_BUILD_ROOT/var/lib/certmaster/triggers/sign/post/certmaster-sync +ln -s %{_bindir}/certmaster-sync $RPM_BUILD_ROOT/var/lib/certmaster/triggers/remove/post/certmaster-sync +touch $RPM_BUILD_ROOT/var/log/certmaster/certmaster.log +touch $RPM_BUILD_ROOT/var/log/certmaster/audit.log + %clean rm -fr $RPM_BUILD_ROOT @@ -74,6 +79,7 @@ rm -fr $RPM_BUILD_ROOT %{_bindir}/certmaster %{_bindir}/certmaster-request %{_bindir}/certmaster-ca +%{_bindir}/certmaster-sync /etc/init.d/certmaster %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/minion-acl.d/ @@ -83,8 +89,16 @@ rm -fr $RPM_BUILD_ROOT %config(noreplace) /etc/logrotate.d/certmaster_rotate %dir %{python_sitelib}/certmaster %{python_sitelib}/certmaster/*.py* + %dir /var/log/certmaster -%dir /var/lib/certmaster +%attr(0600,root,root) %config(noreplace) %verify(not md5 size mtime) /var/log/certmaster/certmaster.log +%attr(0600,root,root) %config(noreplace) %verify(not md5 size mtime) /var/log/certmaster/audit.log + +%attr(600,root,root) %dir /var/lib/certmaster +%attr(600,root,root) %dir /var/lib/certmaster/certmaster +%attr(600,root,root) %dir /var/lib/certmaster/certmaster/certs +%attr(600,root,root) %dir /var/lib/certmaster/certmaster/csrs +%dir /var/lib/certmaster/peers %dir /var/lib/certmaster/triggers/sign/ %dir /var/lib/certmaster/triggers/sign/pre %dir /var/lib/certmaster/triggers/sign/post @@ -94,6 +108,8 @@ rm -fr $RPM_BUILD_ROOT %dir /var/lib/certmaster/triggers/remove/ %dir /var/lib/certmaster/triggers/remove/pre %dir /var/lib/certmaster/triggers/remove/post +/var/lib/certmaster/triggers/sign/post/certmaster-sync +/var/lib/certmaster/triggers/remove/post/certmaster-sync %doc AUTHORS README LICENSE %{_mandir}/man1/*.1.gz @@ -115,6 +131,9 @@ else done fi exit 0 +# fix perms on log files +chmod 600 /var/log/certmaster/certmaster.log +chmod 600 /var/log/certmaster/audit.log %preun if [ "$1" = 0 ] ; then @@ -130,8 +149,10 @@ fi %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 0.24-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Tue May 26 2009 Adrian Likins - 0.25-1 +- add /var/lib/certmaster/certmaster* to spec and set perms +- add /var/log/certmaster/certmaster.log,audit.log to spec + and set perms * Wed Feb 18 2009 Adrian Likins - 0.24.5 - remove version file Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/certmaster/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 19 Feb 2009 16:39:43 -0000 1.8 +++ sources 8 Jul 2009 18:53:37 -0000 1.9 @@ -3,3 +3,4 @@ d661004b7eb0c7b43f57f0a510232bd2 certma 470c450b3c5adbbeae3d154cb9de495c certmaster-0.20.tar.gz 884faef5a2da2f5b4e8bd6782d28a284 certmaster-0.23.tar.gz 7b7e2af1adcd19e29ac36cd373b12c7a certmaster-0.24.tar.gz +c7dfa84285fc5f840587e69e2351ad37 certmaster-0.25.tar.gz From notting at fedoraproject.org Wed Jul 8 18:56:27 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Wed, 8 Jul 2009 18:56:27 +0000 (UTC) Subject: comps comps-f12.xml.in,1.30,1.31 Message-ID: <20090708185627.8B4CF11C02C4@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27813 Modified Files: comps-f12.xml.in Log Message: more firmware Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- comps-f12.xml.in 8 Jul 2009 18:50:29 -0000 1.30 +++ comps-f12.xml.in 8 Jul 2009 18:55:57 -0000 1.31 @@ -2832,6 +2832,7 @@ b43-fwcutter ipw2100-firmware ipw2200-firmware + ivtv-firmware iwl3945-firmware iwl4965-firmware iwl5000-firmware @@ -2841,6 +2842,7 @@ ql2200-firmware ql23xx-firmware ql2400-firmware + ql2500-firmware rt61pci-firmware rt73usb-firmware zd1211-firmware From alikins at fedoraproject.org Wed Jul 8 18:56:23 2009 From: alikins at fedoraproject.org (Adrian Likins) Date: Wed, 8 Jul 2009 18:56:23 +0000 (UTC) Subject: rpms/func/devel .cvsignore, 1.10, 1.11 func.spec, 1.13, 1.14 sources, 1.12, 1.13 Message-ID: <20090708185623.6978711C02C4@cvs1.fedora.phx.redhat.com> Author: alikins Update of /cvs/pkgs/rpms/func/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27934/devel Modified Files: .cvsignore func.spec sources Log Message: func-0.25 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/func/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 17 Dec 2008 21:51:49 -0000 1.10 +++ .cvsignore 8 Jul 2009 18:56:23 -0000 1.11 @@ -7,3 +7,4 @@ func-0.20.tar.gz func-0.21.tar.gz func-0.23.tar.gz func-0.24.tar.gz +func-0.25.tar.gz Index: func.spec =================================================================== RCS file: /cvs/pkgs/rpms/func/devel/func.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- func.spec 24 Feb 2009 18:45:44 -0000 1.13 +++ func.spec 8 Jul 2009 18:56:23 -0000 1.14 @@ -11,8 +11,8 @@ Summary: Remote management framework Name: func -Version: 0.24 -Release: 6%{?dist} +Version: 0.25 +Release: 1%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -57,6 +57,8 @@ func is a remote api for mangement, conf %install test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --prefix=/usr --root=$RPM_BUILD_ROOT +touch $RPM_BUILD_ROOT/var/log/func/func.log +touch $RPM_BUILD_ROOT/var/log/func/audit.log %clean rm -fr $RPM_BUILD_ROOT @@ -79,6 +81,7 @@ rm -fr $RPM_BUILD_ROOT %dir /etc/func/modules/ %config(noreplace) /etc/func/minion.conf %config(noreplace) /etc/func/async_methods.conf +%config(noreplace) /etc/func/overlord.conf %config(noreplace) /etc/logrotate.d/func_rotate %config(noreplace) /etc/func/modules/Test.conf %config(noreplace) /etc/func/modules/Bridge.conf @@ -107,13 +110,20 @@ rm -fr $RPM_BUILD_ROOT %{python_sitelib}/func/minion/modules/*/*/*.py* %dir /var/log/func +%attr(0600,root,root) %config(noreplace) %verify(not md5 size mtime) /var/log/func/func.log +%attr(0600,root,root) %config(noreplace) %verify(not md5 size mtime) /var/log/func/audit.log + %dir /var/lib/func -%doc AUTHORS README LICENSE + +#%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/log/prelink/prelink.log + +%doc AUTHORS README LICENSE CHANGES %{_mandir}/man1/func.1.gz %{_mandir}/man1/func-inventory.1.gz %{_mandir}/man1/funcd.1.gz %{_mandir}/man1/func-transmit.1.gz - +%{_mandir}/man1/func-build-map.1.gz +%{_mandir}/man1/func-create-module.1.gz %post # for suse @@ -131,7 +141,9 @@ else ln -sf /etc/init.d/funcd /etc/rc.d/rc${i}.d/k01funcd done fi - +# fix perms on log files +chmod 600 /var/log/func/func.log +chmod 600 /var/log/func/audit.log # upgrade old installs if needed #/usr/bin/update-func @@ -152,8 +164,16 @@ fi %changelog -* Tue Feb 24 2009 Fedora Release Engineering - 0.24-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Wed Jun 10 2009 Adrian Likins - 0.25-1 +- add CHANGES to spec file + +* Wed May 27 2009 Adrian Likins - 0.25-1 +- add /var/log/func/*.log files to spec +- add a post section to chmod any log files with bogus perms + + +* Thu Apr 16 2009 Adrian Likins - 0.24-5 +- add an overlord.conf file * Wed Feb 18 2009 Adrian Likins - 0.24-5 - remove version file Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/func/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 19 Feb 2009 17:00:41 -0000 1.12 +++ sources 8 Jul 2009 18:56:23 -0000 1.13 @@ -4,3 +4,4 @@ def199858286218daef908e871f2e7ca func-0 715638833720c85076fe04cd2e31fc32 func-0.21.tar.gz 821f5ba123d7fe2e98aa51b8f00a17c2 func-0.23.tar.gz f8c91c5f50c6210b7058dbeedb6eea2a func-0.24.tar.gz +2ee563664163318f65e75c784a726484 func-0.25.tar.gz From fabbione at fedoraproject.org Wed Jul 8 19:03:49 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 8 Jul 2009 19:03:49 +0000 (UTC) Subject: rpms/corosync/devel .cvsignore, 1.8, 1.9 corosync.spec, 1.30, 1.31 sources, 1.10, 1.11 Message-ID: <20090708190349.1462F11C02C4@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/corosync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30026 Modified Files: .cvsignore corosync.spec sources Log Message: New upstream stable release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 1 Jul 2009 22:10:27 -0000 1.8 +++ .cvsignore 8 Jul 2009 19:03:18 -0000 1.9 @@ -1 +1 @@ -corosync-0.100.tar.gz +corosync-1.0.0.tar.gz Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/corosync.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- corosync.spec 1 Jul 2009 22:10:27 -0000 1.30 +++ corosync.spec 8 Jul 2009 19:03:18 -0000 1.31 @@ -2,7 +2,7 @@ Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces -Version: 0.100 +Version: 1.0.0 Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base @@ -202,6 +202,9 @@ The Corosync Cluster Engine APIs. %{_mandir}/man8/coroipc_overview.8* %changelog +* Wed Jul 8 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release + * Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Jul 2009 22:10:28 -0000 1.10 +++ sources 8 Jul 2009 19:03:18 -0000 1.11 @@ -1 +1 @@ -a46f68e60eea5bd60436af2a7af79d68 corosync-0.100.tar.gz +257f5509f3da951ba84b596fedf42185 corosync-1.0.0.tar.gz From mmcgrath at fedoraproject.org Wed Jul 8 19:04:20 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 8 Jul 2009 19:04:20 +0000 (UTC) Subject: rpms/smolt/EL-5 smolt.spec,1.36,1.37 sources,1.22,1.23 Message-ID: <20090708190420.7A48111C02C4@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30377 Modified Files: smolt.spec sources Log Message: upstream released new version Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/EL-5/smolt.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- smolt.spec 3 Dec 2008 15:14:46 -0000 1.36 +++ smolt.spec 8 Jul 2009 19:03:50 -0000 1.37 @@ -1,17 +1,16 @@ Name: smolt Summary: Fedora hardware profiler -Version: 1.2 -Release: 3%{?dist} +Version: 1.3 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://fedorahosted.org/smolt Source: https://fedorahosted.org/releases/s/m/%{name}/%{name}-%{version}.tar.gz -Patch0: smolt-1.2-install.patch -Patch1: smolt-1.2-python24.patch +source1: smoltGui.py BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: dbus-python, python-urlgrabber, gawk, python-paste BuildArch: noarch -Requires: dbus-python, python-urlgrabber, gawk, python-paste, python-ctypes BuildRequires: gettext BuildRequires: desktop-file-utils @@ -67,8 +66,6 @@ ensure that deps are kept small. %prep %setup -q -%patch0 -p1 -b .install -%patch1 -p1 -b .python24 %build cd client/ @@ -84,12 +81,16 @@ cd .. %{__cp} -adv smoon/* %{buildroot}/%{_datadir}/%{name}/smoon/ %{__cp} -adv client/simplejson %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/scan.py %{buildroot}/%{_datadir}/%{name}/client/ +%{__cp} client/gate.py %{buildroot}/%{_datadir}/%{name}/client/ +%{__cp} client/os_detect.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/fs_util.py %{buildroot}/%{_datadir}/%{name}/client/ %{__cp} client/man/* %{buildroot}/%{_mandir}/man1/ +%{__cp} %{SOURCE1} %{buildroot}/%{_datadir}/%{name}/client/ %{__mkdir} -p %{buildroot}/%{_sysconfdir}/sysconfig/ %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/modules/ %{__mkdir} -p %{buildroot}/%{_initrddir} + %{__mv} client/smoltFirstBoot.py %{buildroot}/%{_datadir}/firstboot/modules/smolt.py %{__mv} client/smolt-init %{buildroot}/%{_initrddir}/smolt @@ -100,8 +101,10 @@ touch %{buildroot}/%{_sysconfdir}/syscon %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/ %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/ %{__mkdir} -p %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/ + %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/pixmaps/ %{__mkdir} -p %{buildroot}/%{_datadir}/firstboot/themes/default/ + %{__mv} client/icons/smolt-icon-16.png %{buildroot}/%{_datadir}/icons/hicolor/16x16/apps/smolt.png %{__mv} client/icons/smolt-icon-22.png %{buildroot}/%{_datadir}/icons/hicolor/22x22/apps/smolt.png %{__mv} client/icons/smolt-icon-24.png %{buildroot}/%{_datadir}/icons/hicolor/24x24/apps/smolt.png @@ -146,6 +149,28 @@ if [ $1 = 0 ]; then /sbin/chkconfig --del smolt fi +%post server +#Fail, will fix later +for f in delete.html deviceclass.html device.html devices.html error.html \ + link.html login.html master.html myHosts.html notLoaded.html \ + pub_uuid.html raw.html report_device_ratings.html \ + report_host_ratings.html report_recent.html report_search_devices.html\ + report_search.html report_search_profiles.html report_view_device.html\ + report_view_devices.html report_view.html report_view_profile.html \ + report_view_profiles.html showall.html show.html stats.html token.html\ + welcome.html +do + touch %{_datadir}/%{name}/smoon/hardware/static/stats/$f +done + +%post gui +touch --no-create %{_datadir}/icons/hicolor || : +%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : + +%postun gui +touch --no-create %{_datadir}/icons/hicolor || : +%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : + %files -f %{name}.lang %defattr(-,root,root,-) %doc README GPL doc/* @@ -179,12 +204,25 @@ fi %{_bindir}/smoltGui %changelog -* Wed Dec 3 2008 Mike McGrath 1.2-3 -- Added python-ctypes require +* Thu Jul 02 2009 Mike McGrath - 1.3-1 +- Added touch for generated stats +- Upstream released new version + +* Tue Apr 14 2009 Mike McGrath - 1.2-4.2 +- Removed fake attack + +* Fri Mar 13 2009 Mike McGrath - 1.2-4.1 +- Fixed some formatting in the spec file +- Added note to %post + +* Wed Feb 25 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Jan 21 2009 Mike McGrath - 1.2-3 +- Added os_detect.py as it is now required. -* Wed Dec 3 2008 Lubomir Rintel 1.2-2 -- Add missing file to client -- Fix run with python 2.4 in RHEL-5 +* Mon Dec 01 2008 Ignacio Vazquez-Abrams - 1.2-2 +- Rebuild for Python 2.6 * Sun Nov 30 2008 Mike McGrath 1.2-1 - Upstream released new version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/smolt/EL-5/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 30 Nov 2008 19:57:26 -0000 1.22 +++ sources 8 Jul 2009 19:03:50 -0000 1.23 @@ -1 +1 @@ -c577b0bc190542fe6d1927c47bc91abb smolt-1.2.tar.gz +72fa94c3a866583477bb1c2b587869f9 smolt-1.3.tar.gz From ajax at fedoraproject.org Wed Jul 8 19:13:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 8 Jul 2009 19:13:47 +0000 (UTC) Subject: rpms/libvorbis/devel libvorbis-1.2.2-svn16228.patch, NONE, 1.1 libvorbis.spec, 1.36, 1.37 Message-ID: <20090708191347.3171D11C02C4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libvorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1584 Modified Files: libvorbis.spec Added Files: libvorbis-1.2.2-svn16228.patch Log Message: * Wed Jul 08 2009 Adam Jackson 1.2.2-2 - libvorbis-1.2.2-svn16228.patch: Backport a fix from pre-1.2.3 to hopefully fix small sound file playback. (#505610) libvorbis-1.2.2-svn16228.patch: --- NEW FILE libvorbis-1.2.2-svn16228.patch --- diff -up libvorbis-1.2.2/lib/vorbisfile.c.jx libvorbis-1.2.2/lib/vorbisfile.c --- libvorbis-1.2.2/lib/vorbisfile.c.jx 2009-06-04 01:06:07.000000000 -0400 +++ libvorbis-1.2.2/lib/vorbisfile.c 2009-07-08 15:04:58.000000000 -0400 @@ -675,8 +675,13 @@ static int _fetch_and_process_packet(Ogg /* extract packets from page */ while(1){ - /* process a packet if we can. If the machine isn't loaded, - neither is a page */ + if(vf->ready_state==STREAMSET){ + int ret=_make_decode_ready(vf); + if(ret<0)return ret; + } + + /* process a packet if we can. */ + if(vf->ready_state==INITSET){ while(1) { ogg_packet op; @@ -844,11 +849,6 @@ static int _fetch_and_process_packet(Ogg link=0; } } - - { - int ret=_make_decode_ready(vf); - if(ret<0)return ret; - } } /* the buffered page is the data we want, and we're ready for it; @@ -1255,7 +1255,9 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_i int lastblock=0; int accblock=0; int thisblock=0; - int eosflag=0; + int lastflag=0; + int firstflag=0; + ogg_int64_t pagepos=-1; ogg_stream_init(&work_os,vf->current_serialno); /* get the memory ready */ ogg_stream_reset(&work_os); /* eliminate the spurious OV_HOLE @@ -1276,7 +1278,14 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_i thisblock=0; }else{ - if(eosflag) + /* We can't get a guaranteed correct pcm position out of the + last page in a stream because it might have a 'short' + granpos, which can only be detected in the presence of a + preceeding page. However, if the last page is also the first + page, the granpos rules of a first page take precedence. Not + only that, but for first==last, the EOS page must be treated + as if its a normal first page for the stream to open/play. */ + if(lastflag && !firstflag) ogg_stream_packetout(&vf->os,NULL); else if(lastblock)accblock+=(lastblock+thisblock)>>2; @@ -1290,6 +1299,7 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_i for(i=0;ipcmlengths[i*2+1]; vf->pcm_offset=granulepos-accblock; + if(vf->pcm_offset<0)vf->pcm_offset=0; break; } lastblock=thisblock; @@ -1300,7 +1310,8 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_i } if(!lastblock){ - if(_get_next_page(vf,&og,-1)<0){ + pagepos=_get_next_page(vf,&og,-1); + if(pagepos<0){ vf->pcm_offset=ov_pcm_total(vf,-1); break; } @@ -1341,12 +1352,13 @@ int ov_raw_seek(OggVorbis_File *vf,ogg_i ogg_stream_reset_serialno(&vf->os,serialno); ogg_stream_reset_serialno(&work_os,serialno); vf->ready_state=STREAMSET; - + firstflag=(pagepos<=vf->dataoffsets[link]); } ogg_stream_pagein(&vf->os,&og); ogg_stream_pagein(&work_os,&og); - eosflag=ogg_page_eos(&og); + lastflag=ogg_page_eos(&og); + } } Index: libvorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/libvorbis.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libvorbis.spec 2 Jul 2009 17:02:52 -0000 1.36 +++ libvorbis.spec 8 Jul 2009 19:13:16 -0000 1.37 @@ -1,7 +1,7 @@ Summary: The Vorbis General Audio Compression Codec. Name: libvorbis Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: System Environment/Libraries License: BSD @@ -10,6 +10,8 @@ Source: http://downloads.xiph.org/relea BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libogg-devel >= 2:1.1 +Patch0: libvorbis-1.2.2-svn16228.patch + %description Ogg Vorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed @@ -40,6 +42,7 @@ Documentation for developing application %prep %setup -q +%patch0 -p1 -b .svn sed -i "s/-O20/$RPM_OPT_FLAGS/" configure sed -i "s/-ffast-math//" configure @@ -82,6 +85,10 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Wed Jul 08 2009 Adam Jackson 1.2.2-2 +- libvorbis-1.2.2-svn16228.patch: Backport a fix from pre-1.2.3 to hopefully + fix small sound file playback. (#505610) + * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - libvorbis 1.2.2 From itamarjp at fedoraproject.org Wed Jul 8 19:18:50 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 8 Jul 2009 19:18:50 +0000 (UTC) Subject: rpms/bugzilla/devel .cvsignore, 1.11, 1.12 bugzilla.spec, 1.25, 1.26 import.log, 1.3, 1.4 sources, 1.11, 1.12 Message-ID: <20090708191850.B53C611C02C4@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3528/devel Modified Files: .cvsignore bugzilla.spec import.log sources Log Message: new version 3.2.4 - fix Unauthorized Bug Change Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 6 Apr 2009 23:20:48 -0000 1.11 +++ .cvsignore 8 Jul 2009 19:18:50 -0000 1.12 @@ -1 +1 @@ -bugzilla-3.2.3.tar.gz +bugzilla-3.2.4.tar.gz Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/bugzilla.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- bugzilla.spec 6 Apr 2009 23:20:48 -0000 1.25 +++ bugzilla.spec 8 Jul 2009 19:18:50 -0000 1.26 @@ -4,7 +4,7 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.3 +Version: 3.2.4 Group: Applications/Publishing Release: 1%{?dist} License: MPLv1.1 @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 +- fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 + * Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 - fix CVE-2009-1213 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 6 Apr 2009 23:20:48 -0000 1.3 +++ import.log 8 Jul 2009 19:18:50 -0000 1.4 @@ -1,3 +1,4 @@ bugzilla-3_0_8-1_fc11:HEAD:bugzilla-3.0.8-1.fc11.src.rpm:1235878106 bugzilla-3_2_2-2_fc10:HEAD:bugzilla-3.2.2-2.fc10.src.rpm:1236265998 bugzilla-3_2_3-1_fc11:HEAD:bugzilla-3.2.3-1.fc11.src.rpm:1239059931 +bugzilla-3_2_4-1_fc11:HEAD:bugzilla-3.2.4-1.fc11.src.rpm:1247080670 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 6 Apr 2009 23:20:48 -0000 1.11 +++ sources 8 Jul 2009 19:18:50 -0000 1.12 @@ -1 +1 @@ -fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz +845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz From itamarjp at fedoraproject.org Wed Jul 8 19:21:22 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 8 Jul 2009 19:21:22 +0000 (UTC) Subject: rpms/bugzilla/F-11 .cvsignore, 1.11, 1.12 bugzilla.spec, 1.25, 1.26 import.log, 1.3, 1.4 sources, 1.11, 1.12 Message-ID: <20090708192122.B240211C0097@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5112/F-11 Modified Files: .cvsignore bugzilla.spec import.log sources Log Message: new version 3.2.4 fix Unauthorized Bug Change Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 6 Apr 2009 23:20:48 -0000 1.11 +++ .cvsignore 8 Jul 2009 19:20:52 -0000 1.12 @@ -1 +1 @@ -bugzilla-3.2.3.tar.gz +bugzilla-3.2.4.tar.gz Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-11/bugzilla.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- bugzilla.spec 6 Apr 2009 23:20:48 -0000 1.25 +++ bugzilla.spec 8 Jul 2009 19:20:52 -0000 1.26 @@ -4,7 +4,7 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.3 +Version: 3.2.4 Group: Applications/Publishing Release: 1%{?dist} License: MPLv1.1 @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 +- fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 + * Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 - fix CVE-2009-1213 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 6 Apr 2009 23:20:48 -0000 1.3 +++ import.log 8 Jul 2009 19:20:52 -0000 1.4 @@ -1,3 +1,4 @@ bugzilla-3_0_8-1_fc11:HEAD:bugzilla-3.0.8-1.fc11.src.rpm:1235878106 bugzilla-3_2_2-2_fc10:HEAD:bugzilla-3.2.2-2.fc10.src.rpm:1236265998 bugzilla-3_2_3-1_fc11:HEAD:bugzilla-3.2.3-1.fc11.src.rpm:1239059931 +bugzilla-3_2_4-1_fc11:F-11:bugzilla-3.2.4-1.fc11.src.rpm:1247080787 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 6 Apr 2009 23:20:48 -0000 1.11 +++ sources 8 Jul 2009 19:20:52 -0000 1.12 @@ -1 +1 @@ -fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz +845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz From itamarjp at fedoraproject.org Wed Jul 8 19:22:40 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 8 Jul 2009 19:22:40 +0000 (UTC) Subject: rpms/bugzilla/F-10 .cvsignore, 1.11, 1.12 bugzilla.spec, 1.23, 1.24 import.log, 1.3, 1.4 sources, 1.11, 1.12 Message-ID: <20090708192240.67B8E11C0097@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6034/F-10 Modified Files: .cvsignore bugzilla.spec import.log sources Log Message: new version 3.2.4 fix Unauthorized Bug Change Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-10/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 6 Apr 2009 23:22:57 -0000 1.11 +++ .cvsignore 8 Jul 2009 19:22:40 -0000 1.12 @@ -1 +1 @@ -bugzilla-3.2.3.tar.gz +bugzilla-3.2.4.tar.gz Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-10/bugzilla.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- bugzilla.spec 6 Apr 2009 23:22:57 -0000 1.23 +++ bugzilla.spec 8 Jul 2009 19:22:40 -0000 1.24 @@ -4,7 +4,7 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.3 +Version: 3.2.4 Group: Applications/Publishing Release: 1%{?dist} License: MPLv1.1 @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 +- fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 + * Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 - fix CVE-2009-1213 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 6 Apr 2009 23:22:57 -0000 1.3 +++ import.log 8 Jul 2009 19:22:40 -0000 1.4 @@ -1,3 +1,4 @@ bugzilla-3_0_8-1_fc11:F-10:bugzilla-3.0.8-1.fc11.src.rpm:1235878257 bugzilla-3_2_2-2_fc10:F-10:bugzilla-3.2.2-2.fc10.src.rpm:1236266484 bugzilla-3_2_3-1_fc11:F-10:bugzilla-3.2.3-1.fc11.src.rpm:1239060133 +bugzilla-3_2_4-1_fc11:F-10:bugzilla-3.2.4-1.fc11.src.rpm:1247080919 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 6 Apr 2009 23:22:57 -0000 1.11 +++ sources 8 Jul 2009 19:22:40 -0000 1.12 @@ -1 +1 @@ -fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz +845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz From bpostle at fedoraproject.org Wed Jul 8 19:23:02 2009 From: bpostle at fedoraproject.org (bpostle) Date: Wed, 8 Jul 2009 19:23:02 +0000 (UTC) Subject: rpms/panoglview/devel import.log, NONE, 1.1 panoglview.desktop, NONE, 1.1 panoglview.png, NONE, 1.1 panoglview.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708192302.B42EC11C0097@cvs1.fedora.phx.redhat.com> Author: bpostle Update of /cvs/extras/rpms/panoglview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5983/devel Modified Files: .cvsignore sources Added Files: import.log panoglview.desktop panoglview.png panoglview.spec Log Message: initial import --- NEW FILE import.log --- panoglview-0_2_2-5_fc11:HEAD:panoglview-0.2.2-5.fc11.src.rpm:1247080786 --- NEW FILE panoglview.desktop --- [Desktop Entry] Name=Panoglview GenericName=Panorama viewer Comment=View equirectangular panoramas Exec=panoglview %f Terminal=false Type=Application Icon=panoglview Categories=Graphics; MimeType=image/jpeg;image/tiff;image/png; --- NEW FILE panoglview.spec --- Summary: Immersive viewer for spherical panoramas Name: panoglview Version: 0.2.2 Release: 5%{?dist} License: GPLv2+ URL: http://hugin.sourceforge.net/ Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/hugin/%{name}-%{version}.tar.gz Source1: %{name}.desktop Source2: %{name}.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtiff-devel libjpeg-devel libpng-devel BuildRequires: wxGTK-devel zlib-devel desktop-file-utils %description Use panoglview to explore equirectangular panoramic images. Equirectangular panoramas are typically JPEG/TIFF/PNG images with a 2:1 aspect ratio. %prep %setup -q chmod -x src/*.h src/*.cpp %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} desktop-file-install --vendor="" \ --dir=%{buildroot}/%{_datadir}/applications %{SOURCE1} install -D -m 0755 %{SOURCE2} %{buildroot}/%{_datadir}/pixmaps/%{name}.png %clean rm -rf %{buildroot} %post update-desktop-database &> /dev/null ||: %postun update-desktop-database &> /dev/null ||: %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING INSTALL NEWS %{_bindir}/%{name} %{_datadir}/applications/*.desktop %{_datadir}/pixmaps/%{name}.png %changelog * Wed Jul 01 2009 Bruno Postle 0.2.2-5 - spec improvements, add icon * Tue Jun 16 2009 Bruno Postle 0.2.2-4 - spec improvements * Mon Jul 28 2008 Bruno Postle 0.2.2-3 - 0.2.2 release * Fri Jul 20 2007 Bruno Postle 0.2.2-1cvs20070720 - CVS snapshot add .desktop * Mon Jul 02 2007 Bruno Postle 0.2-6 - rebuild for fc7 with spec cleanup * Tue May 16 2006 Bruno Postle 0.2-5.fc5.bp * Fri Mar 24 2006 Bruno Postle 0.2-4.fc5.bp - rebuild for fc5 * Tue Dec 06 2005 Bruno Postle - build on another host due to mystery c++ 3.6.4 errors * Wed Nov 30 2005 Bruno Postle - switch to current CVS, remove old build patches. requires freshrpms wxGTK >= 2.6.0 * Fri Jul 22 2005 Bruno Postle - new build for fc4. now uses GTK2 * Wed Oct 20 2004 Bruno Postle - new build for fc2 * Tue Jun 22 2004 Bruno Postle - initial RPM Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/panoglview/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:30:22 -0000 1.1 +++ .cvsignore 8 Jul 2009 19:22:32 -0000 1.2 @@ -0,0 +1 @@ +panoglview-0.2.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/panoglview/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:30:22 -0000 1.1 +++ sources 8 Jul 2009 19:22:32 -0000 1.2 @@ -0,0 +1 @@ +770a337c43cdd20be0347135ed1f597e panoglview-0.2.2.tar.gz From itamarjp at fedoraproject.org Wed Jul 8 19:24:35 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 8 Jul 2009 19:24:35 +0000 (UTC) Subject: rpms/bugzilla/EL-5 .cvsignore, 1.7, 1.8 bugzilla.spec, 1.14, 1.15 import.log, 1.1, 1.2 sources, 1.7, 1.8 Message-ID: <20090708192435.6E15411C0097@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6727/EL-5 Modified Files: .cvsignore bugzilla.spec import.log sources Log Message: new version 3.2.4 fix Unauthorized Bug Change Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 4 Jul 2009 00:55:03 -0000 1.7 +++ .cvsignore 8 Jul 2009 19:24:05 -0000 1.8 @@ -1 +1 @@ -bugzilla-3.2.3.tar.gz +bugzilla-3.2.4.tar.gz Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/bugzilla.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- bugzilla.spec 4 Jul 2009 00:55:03 -0000 1.14 +++ bugzilla.spec 8 Jul 2009 19:24:05 -0000 1.15 @@ -4,7 +4,7 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.3 +Version: 3.2.4 Group: Applications/Publishing Release: 1%{?dist} License: MPLv1.1 @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 +- fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 + * Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 - fix CVE-2009-1213 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 4 Jul 2009 00:55:03 -0000 1.1 +++ import.log 8 Jul 2009 19:24:05 -0000 1.2 @@ -1 +1,2 @@ bugzilla-3_2_3-1_fc11:EL-5:bugzilla-3.2.3-1.fc11.src.rpm:1246668842 +bugzilla-3_2_4-1_fc11:EL-5:bugzilla-3.2.4-1.fc11.src.rpm:1247081015 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-5/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 4 Jul 2009 00:55:03 -0000 1.7 +++ sources 8 Jul 2009 19:24:05 -0000 1.8 @@ -1 +1 @@ -fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz +845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz From yaneti at fedoraproject.org Wed Jul 8 19:25:04 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 8 Jul 2009 19:25:04 +0000 (UTC) Subject: rpms/python-sybase/devel howto.cls, NONE, 1.1 import.log, NONE, 1.1 pypaper.sty, NONE, 1.1 python-sybase-0.39-bug2615821.patch, NONE, 1.1 python-sybase.spec, NONE, 1.1 python.sty, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708192504.59BA311C0097@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/python-sybase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7011/devel Modified Files: .cvsignore sources Added Files: howto.cls import.log pypaper.sty python-sybase-0.39-bug2615821.patch python-sybase.spec python.sty Log Message: Initial import --- NEW FILE howto.cls --- % % howto.cls for the Python documentation % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesClass{howto} [1998/02/25 Document class (Python HOWTO)] \RequirePackage{pypaper} \RequirePackage{fancybox} % Change the options here to get a different set of basic options, This % is where to add things like "a4paper" or "10pt". % \LoadClass[\py at paper,\py at ptsize,twoside]{article} \setcounter{secnumdepth}{1} % Optional packages: % % If processing of these documents fails at your TeX installation, % these may be commented out (independently) to make things work. % These are both supplied with the current version of the teTeX % distribution. % % The "fancyhdr" package makes nicer page footers reasonable to % implement, and is used to put the chapter and section information in % the footers. % \RequirePackage{fancyhdr}\typeout{Using fancier footers than usual.} % Required package: % % This gives us all the Python-specific markup that we really want. % This should come last. Do not change this. % \RequirePackage{python} % support for module synopsis sections: \newcommand{\py at ModSynopsisFilename}{\jobname.syn} % need to do one of these.... \newcommand{\py at doHorizontalRule}{\rule{\textwidth}{1pt}} % Change the title page to look a bit better, and fit in with the % fncychap ``Bjarne'' style a bit better. % \renewcommand{\maketitle}{ \py at doHorizontalRule \ifpdf \begingroup % This \def is required to deal with multi-line authors; it % changes \\ to ', ' (comma-space), making it pass muster for % generating document info in the PDF file. \def\\{, } \pdfinfo{ /Author (\@author) /Title (\@title) } \endgroup \fi \begin{flushright} {\rm\Huge\py at HeaderFamily \@title} \par {\em\large\py at HeaderFamily \py at release\releaseinfo} \par \vspace{25pt} {\Large\py at HeaderFamily \@author} \par \vspace{25pt} \@date \par \py at authoraddress \par \end{flushright} \@thanks \setcounter{footnote}{0} \let\thanks\relax\let\maketitle\relax \gdef\@thanks{}\gdef\@author{}\gdef\@title{} } \let\py at OldTableofcontents=\tableofcontents \renewcommand{\tableofcontents}{ \begingroup \parskip = 0mm \py at OldTableofcontents \endgroup \py at doHorizontalRule \vspace{12pt} \py at doing@page at targetstrue } % Fix the theindex environment to add an entry to the Table of % Contents; this is much nicer than just having to jump to the end of % the book and flip around, especially with multiple indexes. % \let\py at OldTheindex=\theindex \renewcommand{\theindex}{ \clearpage \py at OldTheindex \addcontentsline{toc}{section}{\indexname} } \@ifundefined{fancyhf}{ \pagestyle{plain}}{ \pagestyle{normal}} % start this way; change for \pagenumbering{arabic} % ToC & chapters \setcounter{secnumdepth}{2} \thispagestyle{empty} --- NEW FILE import.log --- python-sybase-0_39-3_fc12:HEAD:python-sybase-0.39-3.fc12.src.rpm:1247081067 --- NEW FILE pypaper.sty --- % % Change this to say a4paper instead of letterpaper if you want A4. These % are the latex defaults. % \newcommand{\py at paper}{letterpaper} \newcommand{\py at ptsize}{10pt} % These set up the fonts for the documents. % % The "times" package makes the default font the PostScript Times % font, which makes for smaller PostScript and a font that more people % like. % % The "avant" package causes the AvantGarde font to be used for % sans-serif text, instead of the uglier Helvetica set up by the "times" % package. % \RequirePackage{times}\typeout{Using Times instead of Computer Modern.} python-sybase-0.39-bug2615821.patch: --- NEW FILE python-sybase-0.39-bug2615821.patch --- 2009-06-04 S??bastien Sabl?? * datafmt.c (money_datafmt): Corrected money type when using CS_MONEY4 (close bug 2615821) Index: datafmt.c =================================================================== --- datafmt.c (revision 445) +++ datafmt.c (revision 446) @@ -11,7 +11,7 @@ void money_datafmt(CS_DATAFMT *fmt, int type) { memset(fmt, 0, sizeof(*fmt)); - fmt->datatype = CS_MONEY_TYPE; + fmt->datatype = type; if (type == CS_MONEY_TYPE) fmt->maxlength = sizeof(CS_MONEY); else --- NEW FILE python-sybase.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-sybase Version: 0.39 Release: 3%{?dist} Summary: Python interface to Sybase Group: Development/Languages License: BSD URL: http://python-sybase.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz # for building the doc Source1: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/howto.cls Source2: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/pypaper.sty Source3: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/python.sty # bugfix from upstream svn r446 Patch1: python-sybase-0.39-bug2615821.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools-devel BuildRequires: freetds-devel # for building the doc BuildRequires: texlive-latex %description python-sybase is a DB-API 2.0 compliant Python interface to the Sybase Relational Database. %prep %setup -q %patch1 -p0 -b .bug2615821 cp -av %{SOURCE1} %{SOURCE2} %{SOURCE3} doc/ %build export SYBASE="%{_prefix}" # the uptrame build setup fails to mention -lct on x86_64, so just use explicitly # reported upstream artefact 2812108 # https://sourceforge.net/tracker/?func=detail&aid=2812108&group_id=184050&atid=907701 CFLAGS="-DHAVE_FREETDS -DWANT_THREADS" LDFLAGS="-lct" %{__python} setup.py build cd doc ; makeindex sybase.tex ; pdflatex sybase #check # not running tests yet because none would actually work, # due to db server requirement or simply being buggy # https://sourceforge.net/tracker/?func=detail&aid=2815670&group_id=184050&atid=907701 %install rm -rf $RPM_BUILD_ROOT export SYBASE="%{_prefix}" %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT # force the mode until someone figures out why this sometimes ends up with 775 perms find $RPM_BUILD_ROOT -name sybasect.so -exec chmod 0755 {} \; mv doc/sybase.pdf doc/python-sybase.pdf %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENCE ChangeLog doc/python-sybase.pdf examples %{python_sitearch}/* %changelog * Wed Jul 8 2009 Yanko Kaneti - 0.39-3 - Build with -DWANT_THREADS * Mon Jul 6 2009 Yanko Kaneti - 0.39-2 - Try harder to build human readable documentation - Move the sybasect.so chmod after the install phase * Thu Jun 25 2009 Yanko Kaneti - 0.39-1 - Start over reworking Andy Theuninck's submission in bug 459675 --- NEW FILE python.sty --- % % python.sty for the Python docummentation [works only with Latex2e] % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesPackage{python} [1998/01/11 LaTeX package (Python markup)] \RequirePackage{longtable} \RequirePackage{underscore} % Uncomment these two lines to ignore the paper size and make the page % size more like a typical published manual. %\renewcommand{\paperheight}{9in} %\renewcommand{\paperwidth}{8.5in} % typical squarish manual %\renewcommand{\paperwidth}{7in} % O'Reilly ``Programmming Python'' % These packages can be used to add marginal annotations which indicate % index entries and labels; useful for reviewing this messy documentation! % %\RequirePackage{showkeys} %\RequirePackage{showidx} % If we ever want to indent paragraphs, this needs to be changed. % This is used inside the macros defined here instead of coding % \noindent directly. \let\py at parindent=\noindent % for PDF output, use maximal compression & a lot of other stuff % (test for PDF recommended by Tanmoy Bhattacharya ) % \newif\ifpy at doing@page at targets \py at doing@page at targetsfalse \newif\ifpdf\pdffalse \ifx\pdfoutput\undefined\else\ifcase\pdfoutput \else \pdftrue \input{pdfcolor} \let\py at LinkColor=\NavyBlue \let\py at NormalColor=\Black \pdfcompresslevel=9 \pdfpagewidth=\paperwidth % page width of PDF output \pdfpageheight=\paperheight % page height of PDF output % % Pad the number with '0' to 3 digits wide so no page name is a prefix % of any other. % \newcommand{\py at targetno}[1]{\ifnum#1<100 0\fi\ifnum#1<10 0\fi#1} \newcommand{\py at pageno}{\py at targetno\thepage} % % This definition allows the entries in the page-view of the ToC to be % active links. Some work, some don't. % \let\py at OldContentsline=\contentsline % % Backward compatibility hack: pdfTeX 0.13 defined \pdfannotlink, % but it changed to \pdfstartlink in 0.14. This let's us use either % version and still get useful behavior. % \@ifundefined{pdfstartlink}{ \let\pdfstartlink=\pdfannotlink }{} % % The \py at parindent here is a hack -- we're forcing pdfTeX into % horizontal mode since \pdfstartlink requires that. \def\py at pdfstartlink{% \ifvmode\py at parindent\fi% \pdfstartlink% } % % Macro that takes two args: the name to link to and the content of % the link. This takes care of the PDF magic, getting the colors % the same for each link, and avoids having lots of garbage all over % this style file. \newcommand{\py at linkToName}[2]{% \py at pdfstartlink attr{/Border [0 0 0]} goto name{#1}% \py at LinkColor#2\py at NormalColor% \pdfendlink% } % Compute the padded page number separately since we end up with a pair of % \relax tokens; this gets the right string computed and works. \renewcommand{\contentsline}[3]{% \def\my at pageno{\py at targetno{#3}}% \py at OldContentsline{#1}{\py at linkToName{page\my at pageno}{#2}}{#3}% } \AtEndDocument{ \def\_{\string_} \InputIfFileExists{\jobname.bkm}{\pdfcatalog{/PageMode /UseOutlines}}{} } \newcommand{\py at target}[1]{% \ifpy at doing@page at targets% {\pdfdest name{#1} xyz}% \fi% } \let\py at OldLabel=\label \renewcommand{\label}[1]{% \py at OldLabel{#1}% \py at target{label-#1}% } % This stuff adds a page# destination to every PDF page, where # is three % digits wide, padded with leading zeros. This doesn't really help with % the frontmatter, but does fine with the body. % % This is *heavily* based on the hyperref package. % \def\@begindvi{% \unvbox \@begindvibox \@hyperfixhead } \def\@hyperfixhead{% \let\H at old@thehead\@thehead \global\def\@foo{\py at target{page\py at pageno}}% \expandafter\ifx\expandafter\@empty\H at old@thehead \def\H at old@thehead{\hfil}\fi \def\@thehead{\@foo\relax\H at old@thehead}% } \fi\fi % Increase printable page size (copied from fullpage.sty) \topmargin 0pt \advance \topmargin by -\headheight \advance \topmargin by -\headsep % attempt to work a little better for A4 users \textheight \paperheight \advance\textheight by -2in \oddsidemargin 0pt \evensidemargin 0pt %\evensidemargin -.25in % for ``manual size'' documents \marginparwidth 0.5in \textwidth \paperwidth \advance\textwidth by -2in % Style parameters and macros used by most documents here \raggedbottom \sloppy \parindent = 0mm \parskip = 2mm \hbadness = 5000 % don't print trivial gripes \pagestyle{empty} % start this way; change for \pagenumbering{roman} % ToC & chapters % Use this to set the font family for headers and other decor: \newcommand{\py at HeaderFamily}{\sffamily} % Set up abstract ways to get the normal and smaller font sizes that % work even in footnote context. \newif\ifpy at infootnote \py at infootnotefalse \let\py at oldmakefntext\@makefntext \def\@makefntext#1{% \bgroup% \py at infootnotetrue \py at oldmakefntext{#1}% \egroup% } \def\py at defaultsize{% \ifpy at infootnote\footnotesize\else\normalsize\fi% } \def\py at smallsize{% \ifpy at infootnote\scriptsize\else\small\fi% } % Redefine the 'normal' header/footer style when using "fancyhdr" package: \@ifundefined{fancyhf}{}{ % Use \pagestyle{normal} as the primary pagestyle for text. \fancypagestyle{normal}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \fancyfoot[LO]{{\py at HeaderFamily\nouppercase{\rightmark}}} \fancyfoot[RE]{{\py at HeaderFamily\nouppercase{\leftmark}}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Update the plain style so we get the page number & footer line, % but not a chapter or section title. This is to keep the first % page of a chapter and the blank page between chapters `clean.' \fancypagestyle{plain}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Redefine \cleardoublepage so that the blank page between chapters % gets the plain style and not the fancy style. This is described % in the documentation for the fancyhdr package by Piet von Oostrum. \@ifundefined{chapter}{}{ \renewcommand{\cleardoublepage}{ \clearpage\if at openright \ifodd\c at page\else \hbox{} \thispagestyle{plain} \newpage \if at twocolumn\hbox{}\newpage\fi\fi\fi } } } % This sets up the {verbatim} environment to be indented and a minipage, % and to have all the other mostly nice properties that we want for % code samples. \let\py at OldVerbatim=\verbatim \let\py at OldEndVerbatim=\endverbatim \RequirePackage{verbatim} \let\py at OldVerbatimInput=\verbatiminput % Variable used by begin code command \newlength{\py at codewidth} \renewcommand{\verbatim}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldVerbatim% } \renewcommand{\endverbatim}{% \py at OldEndVerbatim% \end{minipage}% } \renewcommand{\verbatiminput}[1]{% {\setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \small% \begin{list}{}{\setlength{\leftmargin}{1cm}} \item% \py at OldVerbatimInput{#1}% \end{list} }% } % This does a similar thing for the {alltt} environment: \RequirePackage{alltt} \let\py at OldAllTT=\alltt \let\py at OldEndAllTT=\endalltt \renewcommand{\alltt}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% \let\e=\textbackslash% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldAllTT% } \renewcommand{\endalltt}{% \py at OldEndAllTT% \end{minipage}% } \newcommand{\py at modulebadkey}{{--just-some-junk--}} %% Lots of index-entry generation support. % Command to wrap around stuff that refers to function / module / % attribute names in the index. Default behavior: like \code{}. To % just keep the index entries in the roman font, uncomment the second % definition; it matches O'Reilly style more. % \newcommand{\py at idxcode}[1]{\texttt{#1}} %\renewcommand{\py at idxcode}[1]{#1} % Command to generate two index entries (using subentries) \newcommand{\indexii}[2]{\index{#1!#2}\index{#2!#1}} % And three entries (using only one level of subentries) \newcommand{\indexiii}[3]{\index{#1!#2 #3}\index{#2!#3, #1}\index{#3!#1 #2}} % And four (again, using only one level of subentries) \newcommand{\indexiv}[4]{ \index{#1!#2 #3 #4} \index{#2!#3 #4, #1} \index{#3!#4, #1 #2} \index{#4!#1 #2 #3} } % Command to generate a reference to a function, statement, keyword, % operator. \newcommand{\kwindex}[1]{\indexii{keyword}{#1@{\py at idxcode{#1}}}} \newcommand{\stindex}[1]{\indexii{statement}{#1@{\py at idxcode{#1}}}} \newcommand{\opindex}[1]{\indexii{operator}{#1@{\py at idxcode{#1}}}} \newcommand{\exindex}[1]{\indexii{exception}{#1@{\py at idxcode{#1}}}} \newcommand{\obindex}[1]{\indexii{object}{#1}} \newcommand{\bifuncindex}[1]{% \index{#1@{\py at idxcode{#1()}} (built-in function)}} % Add an index entry for a module \newcommand{\py at refmodule}[2]{\index{#1@{\py at idxcode{#1}} (#2module)}} \newcommand{\refmodindex}[1]{\py at refmodule{#1}{}} \newcommand{\refbimodindex}[1]{\py at refmodule{#1}{built-in }} \newcommand{\refexmodindex}[1]{\py at refmodule{#1}{extension }} \newcommand{\refstmodindex}[1]{\py at refmodule{#1}{standard }} % Refer to a module's documentation using a hyperlink of the module's % name, at least if we're building PDF: \ifpdf \newcommand{\refmodule}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \py at linkToName{label-module-\py at modulekey}{\module{#2}}% } \else \newcommand{\refmodule}[2][\py at modulebadkey]{\module{#2}} \fi % support for the module index \newif\ifpy at UseModuleIndex \py at UseModuleIndexfalse \newcommand{\makemodindex}{ \newwrite\modindexfile \openout\modindexfile=mod\jobname.idx \py at UseModuleIndextrue } % Add the defining entry for a module \newcommand{\py at modindex}[2]{% \renewcommand{\py at thismodule}{#1} \setindexsubitem{(in module #1)}% \index{#1@{\py at idxcode{#1}} (#2module)|textbf}% \ifpy at UseModuleIndex% \@ifundefined{py at modplat@\py at thismodulekey}{ \write\modindexfile{\protect\indexentry{#1@{\texttt{#1}}}{\thepage}}% }{\write\modindexfile{\protect\indexentry{#1@{\texttt{#1} % \emph{(\py at platformof[\py at thismodulekey]{})}}}{\thepage}}% } \fi% } % *** XXX *** THE NEXT FOUR MACROS ARE NOW OBSOLETE !!! *** % built-in & Python modules in the main distribution \newcommand{\bimodindex}[1]{\py at modindex{#1}{built-in }% \typeout{*** MACRO bimodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\stmodindex}[1]{\py at modindex{#1}{standard }% \typeout{*** MACRO stmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Python & extension modules outside the main distribution \newcommand{\modindex}[1]{\py at modindex{#1}{}% \typeout{*** MACRO modindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\exmodindex}[1]{\py at modindex{#1}{extension }% \typeout{*** MACRO exmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Additional string for an index entry \newif\ifpy at usingsubitem\py at usingsubitemfalse \newcommand{\py at indexsubitem}{} \newcommand{\setindexsubitem}[1]{\renewcommand{\py at indexsubitem}{ #1}% \py at usingsubitemtrue} \newcommand{\ttindex}[1]{% \ifpy at usingsubitem \index{#1@{\py at idxcode{#1}}\py at indexsubitem}% \else% \index{#1@{\py at idxcode{#1}}}% \fi% } \newcommand{\withsubitem}[2]{% \begingroup% \def\ttindex##1{\index{##1@{\py at idxcode{##1}} #1}}% #2% \endgroup% } % Module synopsis processing ----------------------------------------------- % \newcommand{\py at thisclass}{} \newcommand{\py at thismodule}{} \newcommand{\py at thismodulekey}{} \newcommand{\py at thismoduletype}{} \newcommand{\py at standardIndexModule}[1]{\py at modindex{#1}{standard }} \newcommand{\py at builtinIndexModule}[1]{\py at modindex{#1}{built-in }} \newcommand{\py at extensionIndexModule}[1]{\py at modindex{#1}{extension }} \newcommand{\py at IndexModule}[1]{\py at modindex{#1}{}} \newif\ifpy at HaveModSynopsis \py at HaveModSynopsisfalse \newif\ifpy at ModSynopsisFileIsOpen \py at ModSynopsisFileIsOpenfalse \newif\ifpy at HaveModPlatform \py at HaveModPlatformfalse % \declaremodule[key]{type}{name} \newcommand{\declaremodule}[3][\py at modulebadkey]{ \py at openModSynopsisFile \renewcommand{\py at thismoduletype}{#2} \ifx\py at modulebadkey#1 \renewcommand{\py at thismodulekey}{#3} \else \renewcommand{\py at thismodulekey}{#1} \fi \@ifundefined{py@#2IndexModule}{% \typeout{*** MACRO declaremodule called with unknown module type: `#2'} \py at IndexModule{#3}% }{% \csname py@#2IndexModule\endcsname{#3}% } \label{module-\py at thismodulekey} } \newif\ifpy at ModPlatformFileIsOpen \py at ModPlatformFileIsOpenfalse \newcommand{\py at ModPlatformFilename}{\jobname.pla} \newcommand{\platform}[1]{ \ifpy at ModPlatformFileIsOpen\else \newwrite\py at ModPlatformFile \openout\py at ModPlatformFile=\py at ModPlatformFilename \py at ModPlatformFileIsOpentrue \fi } \InputIfFileExists{\jobname.pla}{}{} \newcommand{\py at platformof}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1 \def\py at key{#2}% \else \def\py at key{#1}% \fi% \csname py at modplat@\py at key\endcsname% } \newcommand{\ignorePlatformAnnotation}[1]{} % \moduleauthor{name}{email} \newcommand{\moduleauthor}[2]{} % \sectionauthor{name}{email} \newcommand{\sectionauthor}[2]{} \newcommand{\py at defsynopsis}{Module has no synopsis.} \newcommand{\py at modulesynopsis}{\py at defsynopsis} \newcommand{\modulesynopsis}[1]{ \py at HaveModSynopsistrue \renewcommand{\py at modulesynopsis}{#1} } % define the file \newwrite\py at ModSynopsisFile % hacked from \addtocontents from latex.ltx: \long\def\py at writeModSynopsisFile#1{% \protected at write\py at ModSynopsisFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\py at closeModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen \closeout\py at ModSynopsisFile \py at ModSynopsisFileIsOpenfalse \fi } \newcommand{\py at openModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen\else \openout\py at ModSynopsisFile=\py at ModSynopsisFilename \py at ModSynopsisFileIsOpentrue \fi } \newcommand{\py at ProcessModSynopsis}{ \ifpy at HaveModSynopsis \py at writeModSynopsisFile{\modulesynopsis% {\py at thismodulekey}{\py at thismodule}% {\py at thismoduletype}{\py at modulesynopsis}}% \py at HaveModSynopsisfalse \fi \renewcommand{\py at modulesynopsis}{\py at defsynopsis} } \AtEndDocument{\py at ProcessModSynopsis\py at closeModSynopsisFile} \long\def\py at writeModPlatformFile#1{% \protected at write\py at ModPlatformFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\localmoduletable}{ \IfFileExists{\py at ModSynopsisFilename}{ \begin{synopsistable} \input{\py at ModSynopsisFilename} \end{synopsistable} }{} } \ifpdf \newcommand{\py at ModSynopsisSummary}[4]{% \py at linkToName{label-module-#1}{\bfcode{#2}} & #4\\ } \else \newcommand{\py at ModSynopsisSummary}[4]{\bfcode{#2} & #4\\} \fi \newenvironment{synopsistable}{ % key, name, type, synopsis \let\modulesynopsis=\py at ModSynopsisSummary \begin{tabular}{ll} }{ \end{tabular} } % % -------------------------------------------------------------------------- \newcommand{\py at reset}{ \py at usingsubitemfalse \py at ProcessModSynopsis \renewcommand{\py at thisclass}{} \renewcommand{\py at thismodule}{} \renewcommand{\py at thismodulekey}{} \renewcommand{\py at thismoduletype}{} } % Augment the sectioning commands used to get our own font family in place, % and reset some internal data items: \renewcommand{\section}{\py at reset% \@startsection{section}{1}{\z@}% {-3.5ex \@plus -1ex \@minus -.2ex}% {2.3ex \@plus.2ex}% {\reset at font\Large\py at HeaderFamily}} \renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\large\py at HeaderFamily}} \renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}% {3.25ex \@plus1ex \@minus.2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{\parindent}% {3.25ex \@plus1ex \@minus .2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} % Now for a lot of semantically-loaded environments that do a ton of magical % things to get the right formatting and index entries for the stuff in % Python modules and C API. % {fulllineitems} is used in one place in libregex.tex, but is really for % internal use in this file. % \newcommand{\py at itemnewline}[1]{% \@tempdima\linewidth% \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}% } \newenvironment{fulllineitems}{ \begin{list}{}{\labelwidth \leftmargin \labelsep 0pt \rightmargin 0pt \topsep -\parskip \partopsep \parskip \itemsep -\parsep \let\makelabel=\py at itemnewline} }{\end{list}} % \optional is mostly for use in the arguments parameters to the various % {*desc} environments defined below, but may be used elsewhere. Known to % be used in the debugger chapter. % % Typical usage: % % \begin{funcdesc}{myfunc}{reqparm\optional{, optparm}} % ^^^ ^^^ % No space here No space here % % When a function has multiple optional parameters, \optional should be % nested, not chained. This is right: % % \begin{funcdesc}{myfunc}{\optional{parm1\optional{, parm2}}} % \let\py at badkey=\@undefined \newcommand{\optional}[1]{% {\textnormal{\Large[}}{#1}\hspace{0.5mm}{\textnormal{\Large]}}} % This can be used when a function or method accepts an varying number % of arguments, such as by using the *args syntax in the parameter list. \newcommand{\py at moreargs}{...} % This can be used when you don't want to document the parameters to a % function or method, but simply state that it's an alias for % something else. \newcommand{\py at unspecified}{...} \newlength{\py at argswidth} \newcommand{\py at sigparams}[1]{% \parbox[t]{\py at argswidth}{\py at varvars{#1}\code{)}}} \newcommand{\py at sigline}[2]{% \settowidth{\py at argswidth}{#1\code{(}}% \addtolength{\py at argswidth}{-2\py at argswidth}% \addtolength{\py at argswidth}{\textwidth}% \item[#1\code{(}\py at sigparams{#2}]} % C functions ------------------------------------------------------------ % \begin{cfuncdesc}[refcount]{type}{name}{arglist} % Note that the [refcount] slot should only be filled in by % tools/anno-api.py; it pulls the value from the refcounts database. \newcommand{\cfuncline}[3]{ \py at sigline{\code{#1 \bfcode{#2}}}{#3}% \index{#2@{\py at idxcode{#2()}}} } \newenvironment{cfuncdesc}[4][\py at badkey]{ \begin{fulllineitems} \cfuncline{#2}{#3}{#4} \ifx\@undefined#1\relax\else% \emph{Return value: \textbf{#1}.}\\ \fi }{\end{fulllineitems}} % C variables ------------------------------------------------------------ % \begin{cvardesc}{type}{name} \newenvironment{cvardesc}[2]{ \begin{fulllineitems} \item[\code{#1 \bfcode{#2}}\index{#2@{\py at idxcode{#2}}}] }{\end{fulllineitems}} % C data types ----------------------------------------------------------- % \begin{ctypedesc}[index name]{typedef name} \newenvironment{ctypedesc}[2][\py at badkey]{ \begin{fulllineitems} \item[\bfcode{#2}% \ifx\@undefined#1\relax% \index{#2@{\py at idxcode{#2}} (C type)} \else% \index{#2@{\py at idxcode{#1}} (C type)} \fi] }{\end{fulllineitems}} % C type fields ---------------------------------------------------------- % \begin{cmemberdesc}{container type}{ctype}{membername} \newcommand{\cmemberline}[3]{ \item[\code{#2 \bfcode{#3}}] \index{#3@{\py at idxcode{#3}} (#1 member)} } \newenvironment{cmemberdesc}[3]{ \begin{fulllineitems} \cmemberline{#1}{#2}{#3} }{\end{fulllineitems}} % Funky macros ----------------------------------------------------------- % \begin{csimplemacrodesc}{name} % -- "simple" because it has no args; NOT for constant definitions! \newenvironment{csimplemacrodesc}[1]{ \begin{fulllineitems} \item[\bfcode{#1}\index{#1@{\py at idxcode{#1}} (macro)}] }{\end{fulllineitems}} % simple functions (not methods) ----------------------------------------- % \begin{funcdesc}{name}{args} \newcommand{\funcline}[2]{% \funclineni{#1}{#2}% \index{#1@{\py at idxcode{#1()}} (in module \py at thismodule)}} \newenvironment{funcdesc}[2]{ \begin{fulllineitems} \funcline{#1}{#2} }{\end{fulllineitems}} % similar to {funcdesc}, but doesn't add to the index \newcommand{\funclineni}[2]{% \py at sigline{\bfcode{#1}}{#2}} \newenvironment{funcdescni}[2]{ \begin{fulllineitems} \funclineni{#1}{#2} }{\end{fulllineitems}} % classes ---------------------------------------------------------------- % \begin{classdesc}{name}{constructor args} \newenvironment{classdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{class }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)} }{\end{fulllineitems}} % \begin{classdesc*}{name} \newenvironment{classdesc*}[1]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \item[\strong{class }\code{\bfcode{#1}}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)}] }{\end{fulllineitems}} % \begin{excclassdesc}{name}{constructor args} % but indexes as an exception \newenvironment{excclassdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{exception }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)} }{\end{fulllineitems}} % There is no corresponding {excclassdesc*} environment. To describe % a class exception without parameters, use the {excdesc} environment. \let\py at classbadkey=\@undefined % object method ---------------------------------------------------------- % \begin{methoddesc}[classname]{methodname}{args} \newcommand{\methodline}[3][\@undefined]{ \methodlineni{#2}{#3} \ifx\@undefined#1\relax \index{#2@{\py at idxcode{#2()}} (\py at thisclass\ method)} \else \index{#2@{\py at idxcode{#2()}} (#1 method)} \fi } \newenvironment{methoddesc}[3][\@undefined]{ \begin{fulllineitems} \ifx\@undefined#1\relax \methodline{#2}{#3} \else \def\py at thisclass{#1} \methodline{#2}{#3} \fi }{\end{fulllineitems}} % similar to {methoddesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\methodlineni}[3][\py at classbadkey]{% \py at sigline{\bfcode{#2}}{#3}} \newenvironment{methoddescni}[3][\py at classbadkey]{ \begin{fulllineitems} \methodlineni{#2}{#3} }{\end{fulllineitems}} % object data attribute -------------------------------------------------- % \begin{memberdesc}[classname]{membername} \newcommand{\memberline}[2][\py at classbadkey]{% \ifx\@undefined#1\relax \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (\py at thisclass\ attribute)} \else \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (#1 attribute)} \fi } \newenvironment{memberdesc}[2][\py at classbadkey]{ \begin{fulllineitems} \ifx\@undefined#1\relax \memberline{#2} \else \def\py at thisclass{#1} \memberline{#2} \fi }{\end{fulllineitems}} % similar to {memberdesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\memberlineni}[2][\py at classbadkey]{\item[\bfcode{#2}]} \newenvironment{memberdescni}[2][\py at classbadkey]{ \begin{fulllineitems} \memberlineni{#2} }{\end{fulllineitems}} % For exceptions: -------------------------------------------------------- % \begin{excdesc}{name} % -- for constructor information, use excclassdesc instead \newenvironment{excdesc}[1]{ \begin{fulllineitems} \item[\strong{exception }\bfcode{#1}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)}] }{\end{fulllineitems}} % Module data or constants: ---------------------------------------------- % \begin{datadesc}{name} \newcommand{\dataline}[1]{% \datalineni{#1}\index{#1@{\py at idxcode{#1}} (data in \py at thismodule)}} \newenvironment{datadesc}[1]{ \begin{fulllineitems} \dataline{#1} }{\end{fulllineitems}} % similar to {datadesc}, but doesn't add to the index \newcommand{\datalineni}[1]{\item[\bfcode{#1}]\nopagebreak} \newenvironment{datadescni}[1]{ \begin{fulllineitems} \datalineni{#1} }{\end{fulllineitems}} % bytecode instruction --------------------------------------------------- % \begin{opcodedesc}{name}{var} % -- {var} may be {} \newenvironment{opcodedesc}[2]{ \begin{fulllineitems} \item[\bfcode{#1}\quad\var{#2}] }{\end{fulllineitems}} \newcommand{\nodename}[1]{\label{#1}} % For these commands, use \command{} to get the typography right, not % {\command}. This works better with the texinfo translation. \newcommand{\ABC}{{\sc abc}} \newcommand{\UNIX}{{\sc Unix}} \newcommand{\POSIX}{POSIX} \newcommand{\ASCII}{{\sc ascii}} \newcommand{\Cpp}{C\protect\raisebox{.18ex}{++}} \newcommand{\C}{C} \newcommand{\EOF}{{\sc eof}} \newcommand{\NULL}{\constant{NULL}} \newcommand{\infinity}{\ensuremath{\infty}} \newcommand{\plusminus}{\ensuremath{\pm}} % \guilabel{Start} \newcommand{\guilabel}[1]{\textsf{#1}} % \menuselection{Start \sub Programs \sub Python} \newcommand{\menuselection}[1]{\guilabel{{\def\sub{ \ensuremath{>} }#1}}} % Also for consistency: spell Python "Python", not "python"! % code is the most difficult one... \newcommand{\code}[1]{\textrm{\@vobeyspaces\@noligs\def\{{\char`\{}\def\}{\char`\}}\def\~{\char`\~}\def\^{\char`\^}\def\e{\char`\\}\def\${\char`\$}\def\#{\char`\#}\def\&{\char`\&}\def\%{\char`\%}% \texttt{#1}}} \newcommand{\bfcode}[1]{\code{\bfseries#1}} % bold-faced code font \newcommand{\csimplemacro}[1]{\code{#1}} \newcommand{\kbd}[1]{\code{#1}} \newcommand{\samp}[1]{`\code{#1}'} \newcommand{\var}[1]{% \ifmmode% \hbox{\py at defaultsize\textrm{\textit{#1\/}}}% \else% \py at defaultsize\textrm{\textit{#1\/}}% \fi% } \renewcommand{\emph}[1]{{\em #1}} \newcommand{\dfn}[1]{\emph{#1}} \newcommand{\strong}[1]{{\bf #1}} % let's experiment with a new font: \newcommand{\file}[1]{`\filenq{#1}'} \newcommand{\filenq}[1]{{\py at smallsize\textsf{\let\e=\textbackslash#1}}} % Use this def/redef approach for \url{} since hyperref defined this already, % but only if we actually used hyperref: \ifpdf \newcommand{\url}[1]{{% \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#1)% >>% }% \py at LinkColor% color of the link text \py at smallsize\sf #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\url}[1]{\mbox{\py at smallsize\textsf{#1}}} \fi \newcommand{\email}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\newsgroup}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\py at varvars}[1]{{% {\let\unspecified=\py at unspecified% \let\moreargs=\py at moreargs% \var{#1}}}} % I'd really like to get rid of this! \newif\iftexi\texifalse % This is used to get l2h to put the copyright and abstract on % a separate HTML page. \newif\ifhtml\htmlfalse % These should be used for all references to identifiers which are % used to refer to instances of specific language constructs. See the % names for specific semantic assignments. % % For now, don't do anything really fancy with them; just use them as % logical markup. This might change in the future. % \newcommand{\module}[1]{\texttt{#1}} \newcommand{\keyword}[1]{\texttt{#1}} \newcommand{\exception}[1]{\texttt{#1}} \newcommand{\class}[1]{\texttt{#1}} \newcommand{\function}[1]{\texttt{#1}} \newcommand{\member}[1]{\texttt{#1}} \newcommand{\method}[1]{\texttt{#1}} \newcommand{\pytype}[1]{#1} % built-in Python type \newcommand{\cfunction}[1]{\texttt{#1}} \newcommand{\ctype}[1]{\texttt{#1}} % C struct or typedef name \newcommand{\cdata}[1]{\texttt{#1}} % C variable, typically global \newcommand{\mailheader}[1]{{\py at smallsize\textsf{#1:}}} \newcommand{\mimetype}[1]{{\py at smallsize\textsf{#1}}} % The \! is a "negative thin space" in math mode. \newcommand{\regexp}[1]{% {\tiny$^{^\lceil}\!\!$% {\py at defaultsize\code{#1}}% $\!\rfloor\!$% }} \newcommand{\envvar}[1]{% #1% \index{#1}% \index{environment variables!{#1}}% } \newcommand{\makevar}[1]{#1} % variable in a Makefile \newcommand{\character}[1]{\samp{#1}} % constants defined in Python modules or C headers, not language constants: \newcommand{\constant}[1]{\code{#1}} % manifest constant, not syntactic \newcommand{\manpage}[2]{{\emph{#1}(#2)}} \newcommand{\pep}[1]{PEP #1\index{Python Enhancement Proposals!PEP #1}} \newcommand{\rfc}[1]{RFC #1\index{RFC!RFC #1}} \newcommand{\program}[1]{\strong{#1}} \newcommand{\programopt}[1]{\strong{#1}} % Note that \longprogramopt provides the '--'! \newcommand{\longprogramopt}[1]{\strong{-{}-#1}} % \ulink{link text}{URL} \ifpdf \newcommand{\ulink}[2]{{% % For PDF, we *should* only generate a link when the URL is absolute. \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#2)% >>% }% \py at LinkColor% color of the link text #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\ulink}[2]{#1} \fi % cited titles: \citetitle{Title of Work} % online: \citetitle[url-to-resource]{Title of Work} \ifpdf \newcommand{\citetitle}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\emph{#2}\else\ulink{\emph{#2}}{#1}\fi% } \else \newcommand{\citetitle}[2][URL]{\emph{#2}} \fi % This version is being checked in for the historical record; it shows % how I've managed to get some aspects of this to work. It will not % be used in practice, so a subsequent revision will change things % again. This version has problems, but shows how to do something % that proved more tedious than I'd expected, so I don't want to lose % the example completely. % \newcommand{\grammartoken}[1]{\texttt{#1}} \newenvironment{productionlist}[1][\py at badkey]{ \def\optional##1{{\Large[}##1{\Large]}} \def\production##1##2{\code{##1}&::=&\code{##2}\\} \def\productioncont##1{& &\code{##1}\\} \def\token##1{##1} \let\grammartoken=\token \parindent=2em \indent \begin{tabular}{lcl} }{% \end{tabular} } \newlength{\py at noticelength} \newcommand{\py at heavybox}{ \setlength{\fboxrule}{2pt} \setlength{\fboxsep}{7pt} \setlength{\py at noticelength}{\linewidth} \addtolength{\py at noticelength}{-2\fboxsep} \addtolength{\py at noticelength}{-2\fboxrule} \setlength{\shadowsize}{3pt} \Sbox \minipage{\py at noticelength} } \newcommand{\py at endheavybox}{ \endminipage \endSbox \fbox{\TheSbox} } % a 'note' is as plain as it gets: \newcommand{\py at noticelabel@note}{Note:} \newcommand{\py at noticestart@note}{} \newcommand{\py at noticeend@note}{} % a 'warning' gets more visible distinction: \newcommand{\py at noticelabel@warning}{Warning:} \newcommand{\py at noticestart@warning}{\py at heavybox} \newcommand{\py at noticeend@warning}{\py at endheavybox} \newenvironment{notice}[1][note]{ \def\py at noticetype{#1} \csname py at noticestart@#1\endcsname \par\strong{\csname py at noticelabel@#1\endcsname} }{\csname py at noticeend@\py at noticetype\endcsname} \newcommand{\note}[1]{\strong{\py at noticelabel@note} #1} \newcommand{\warning}[1]{\strong{\py at noticelabel@warning} #1} % Deprecation stuff. % Should be extended to allow an index / list of deprecated stuff. But % there's a lot of stuff that needs to be done to make that automatable. % % First parameter is the release number that deprecates the feature, the % second is the action the should be taken by users of the feature. % % Example: % \deprecated{1.5.1}{Use \method{frobnicate()} instead.} % \newcommand{\deprecated}[2]{% \strong{Deprecated since release #1.} #2\par} % New stuff. % This should be used to mark things which have been added to the % development tree but that aren't in the release, but are documented. % This allows release of documentation that already includes updated % descriptions. Place at end of descriptor environment. % % Example: % \versionadded{1.5.2} % \versionchanged[short explanation]{2.0} % \newcommand{\versionadded}[2][\py at badkey]{% \ifx\@undefined#1\relax% { New in version #2. }% \else% { New in version #2:\ #1. }% \fi% } \newcommand{\versionchanged}[2][\py at badkey]{% \ifx\@undefined#1\relax% { Changed in version #2. }% \else% { Changed in version #2:\ #1. }% \fi% } % Tables. % \newenvironment{tableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4} \\* \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4} \\* \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } % XXX Don't think we can use this yet, though it cleans up some % tedious markup. There's no equivalent for the HTML transform yet, % and that needs to exist. I don't know how to write it. % % This should really have something that makes it easier to bind a % table's ``Notes'' column and an associated tablenotes environment, % and generates the right magic for getting the numbers right in the % table. % % So this is quite incomplete. % \newcounter{py at tablenotescounter} \newenvironment{tablenotes}{% \noindent Notes: \par \setcounter{py at tablenotescounter}{0} \begin{list}{(\arabic{py at tablenotescounter})}% {\usecounter{py at tablenotescounter}} }{\end{list}} % Cross-referencing (AMK, new impl. FLD) % Sample usage: % \begin{seealso} % \seemodule{rand}{Uniform random number generator.}; % Module xref % \seetext{\emph{Encyclopedia Britannica}}. % Ref to a book % % % A funky case: module name contains '_'; have to supply an optional key % \seemodule[copyreg]{copy_reg}{Interface constructor registration for % \module{pickle}.} % \end{seealso} % % Note that the last parameter for \seemodule and \seetext should be complete % sentences and be terminated with the proper punctuation. \ifpdf \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[\py at linkToName{label-module-\py at modulekey}{Module \module{#2}} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \else \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[Module \module{#2} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \fi % \seelink{url}{link text}{why it's interesting} \newcommand{\py at seelink}[3]{% \par \begin{fulllineitems} \item[\ulink{#2}{#1}] #3 \end{fulllineitems} } % \seetitle[url]{title}{why it's interesting} \newcommand{\py at seetitle}[3][\py at modulebadkey]{% \par \begin{fulllineitems} \item[\citetitle{#2}] \ifx\py at modulebadkey#1\else \item[{\small{(\url{#1})}}] \fi #3 \end{fulllineitems} } % \seepep{number}{title}{why it's interesting} \newcommand{\py at seepep}[3]{% \par% \begin{fulllineitems} \item[\pep{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seerfc{number}{title}{why it's interesting} \newcommand{\py at seerfc}[3]{% \par% \begin{fulllineitems} \item[\rfc{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seeurl{url}{why it's interesting} \newcommand{\py at seeurl}[2]{% \par% \begin{fulllineitems} \item[\url{#1}] #2 \end{fulllineitems} } \newenvironment{seealso*}{ \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} \newenvironment{seealso}{ \par \strong{See Also:} \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} % Allow the Python release number to be specified independently of the % \date{}. This allows the date to reflect the document's date and % release to specify the Python release that is documented. % \newcommand{\py at release}{} \newcommand{\version}{} \newcommand{\shortversion}{} \newcommand{\releaseinfo}{} \newcommand{\releasename}{Release} \newcommand{\release}[1]{% \renewcommand{\py at release}{\releasename\space\version}% \renewcommand{\version}{#1}} \newcommand{\setshortversion}[1]{% \renewcommand{\shortversion}{#1}} \newcommand{\setreleaseinfo}[1]{% \renewcommand{\releaseinfo}{#1}} % Allow specification of the author's address separately from the % author's name. This can be used to format them differently, which % is a good thing. % \newcommand{\py at authoraddress}{} \newcommand{\authoraddress}[1]{\renewcommand{\py at authoraddress}{#1}} \let\developersaddress=\authoraddress \let\developer=\author \let\developers=\author % This sets up the fancy chapter headings that make the documents look % at least a little better than the usual LaTeX output. % \@ifundefined{ChTitleVar}{}{ \ChNameVar{\raggedleft\normalsize\py at HeaderFamily} \ChNumVar{\raggedleft \bfseries\Large\py at HeaderFamily} \ChTitleVar{\raggedleft \rm\Huge\py at HeaderFamily} % This creates chapter heads without the leading \vspace*{}: \def\@makechapterhead#1{% {\parindent \z@ \raggedright \normalfont \ifnum \c at secnumdepth >\m at ne \DOCH \fi \interlinepenalty\@M \DOTI{#1} } } } % Definition lists; requested by AMK for HOWTO documents. Probably useful % elsewhere as well, so keep in in the general style support. % \newenvironment{definitions}{% \begin{description}% \def\term##1{\item[##1]\mbox{}\\*[0mm]} }{% \end{description}% } % Tell TeX about pathological hyphenation cases: \hyphenation{Base-HTTP-Re-quest-Hand-ler} Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 18:33:25 -0000 1.1 +++ .cvsignore 8 Jul 2009 19:25:04 -0000 1.2 @@ -0,0 +1 @@ +python-sybase-0.39.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 18:33:25 -0000 1.1 +++ sources 8 Jul 2009 19:25:04 -0000 1.2 @@ -0,0 +1 @@ +0b934824ebc77a4a2087352576b1a2e6 python-sybase-0.39.tar.gz From kyle at fedoraproject.org Wed Jul 8 19:26:08 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 19:26:08 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1617,1.1618 Message-ID: <20090708192608.F046C11C0097@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7474 Modified Files: kernel.spec Log Message: * Wed Jul 08 2009 Kyle McMartin - First cut of /usr/sbin/perf wrapper script and 'perf' subpackage. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1617 retrieving revision 1.1618 diff -u -p -r1.1617 -r1.1618 --- kernel.spec 8 Jul 2009 17:28:48 -0000 1.1617 +++ kernel.spec 8 Jul 2009 19:25:38 -0000 1.1618 @@ -88,6 +88,8 @@ Summary: The Linux kernel # kernel-firmware %define with_firmware %{?_with_firmware: 1} %{?!_with_firmware: 0} # tools/perf +%define with_perftool %{?_without_perftool: 0} %{?!_without_perftool: 1} +# perf noarch subpkg %define with_perf %{?_without_perf: 0} %{?!_without_perf: 1} # kernel-debuginfo %define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1} @@ -244,6 +246,7 @@ Summary: The Linux kernel # only package docs noarch %ifnarch noarch %define with_doc 0 +%define with_perf 0 %endif # no need to build headers again for these arches, @@ -379,7 +382,7 @@ Summary: The Linux kernel %define with_pae 0 %define with_kdump 0 %define with_debuginfo 0 -%define with_perf 0 +%define with_perftool 0 %define _enable_debug_packages 0 %endif @@ -486,7 +489,7 @@ BuildRequires: xmlto %if %{with_sparse} BuildRequires: sparse >= 0.4.1 %endif -%if %{with_perf} +%if %{with_perftool} BuildRequires: elfutils-libelf-devel zlib-devel %endif BuildConflicts: rhbuildsys(DiskFree) < 500Mb @@ -743,6 +746,13 @@ Group: Development/Debug This package is required by %{name}-debuginfo subpackages. It provides the kernel source files common to all builds. +%package -n perf +Summary: Performance monitoring for the Linux kernel +Group: Development/System +License: GPLv2 +%description -n perf +This package provides the supporting documentation for the perf tool +shipped in each kernel image subpackage. # # This macro creates a kernel--debuginfo package. @@ -1344,7 +1354,7 @@ BuildKernel() { make -s ARCH=$Arch V=1 %{?_smp_mflags} $MakeTarget %{?sparse_mflags} make -s ARCH=$Arch V=1 %{?_smp_mflags} modules %{?sparse_mflags} || exit 1 -%if %{with_perf} +%if %{with_perftool} pushd tools/perf # make sure the scripts are executable... won't be in tarball until 2.6.31 :/ chmod +x util/generate-cmdlist.sh util/PERF-VERSION-GEN @@ -1555,6 +1565,7 @@ chmod -R a=rX Documentation find Documentation -type d | xargs chmod u+w %endif + ### ### Special hacks for debuginfo subpackages. ### @@ -1599,6 +1610,17 @@ xargs -0 --no-run-if-empty %{__install} ls $man9dir | grep -q '' || > $man9dir/BROKEN %endif +%if %{with_perf} +# perf docs and shell wrapper. +mkdir -p $RPM_BUILD_ROOT/usr/sbin +cat <>$RPM_BUILD_ROOT/usr/sbin/perf +#!/bin/bash +exec /usr/libexec/perf-`uname -r` +EOF +chmod 755 $RPM_BUILD_ROOT/usr/sbin/perf +mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/perf +%endif + %if %{with_headers} # Install kernel headers make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install @@ -1762,6 +1784,13 @@ fi %{_datadir}/man/man9/* %endif +%if %{with_perf} +%files -n perf +%defattr(-,root,root) +%{_datadir}/doc/perf +/usr/sbin/perf +%endif + # This is %{image_install_path} on an arch where that includes ELF files, # or empty otherwise. %define elf_image_install_path %{?kernel_image_elf:%{image_install_path}} @@ -1777,7 +1806,7 @@ fi %defattr(-,root,root)\ /%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?2:.%{2}}\ /boot/System.map-%{KVERREL}%{?2:.%{2}}\ -%if %{with_perf}\ +%if %{with_perftool}\ /usr/libexec/perf-%{KVERREL}%{?2:.%{2}}\ %endif\ #/boot/symvers-%{KVERREL}%{?2:.%{2}}.gz\ @@ -1834,6 +1863,10 @@ fi # and build. %changelog +* Wed Jul 08 2009 Kyle McMartin +- First cut of /usr/sbin/perf wrapper script and 'perf' + subpackage. + * Wed Jul 08 2009 Kyle McMartin 2.6.31-0.54.rc2.git2 - Rebase and re-apply all the Fedora-specific linux-2.6-debug-* patches. From bpostle at fedoraproject.org Wed Jul 8 19:26:20 2009 From: bpostle at fedoraproject.org (bpostle) Date: Wed, 8 Jul 2009 19:26:20 +0000 (UTC) Subject: rpms/panoglview/F-11 panoglview.desktop, NONE, 1.1 panoglview.png, NONE, 1.1 panoglview.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090708192620.6136111C0097@cvs1.fedora.phx.redhat.com> Author: bpostle Update of /cvs/extras/rpms/panoglview/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7500 Modified Files: sources Added Files: panoglview.desktop panoglview.png panoglview.spec Log Message: initial import --- NEW FILE panoglview.desktop --- [Desktop Entry] Name=Panoglview GenericName=Panorama viewer Comment=View equirectangular panoramas Exec=panoglview %f Terminal=false Type=Application Icon=panoglview Categories=Graphics; MimeType=image/jpeg;image/tiff;image/png; --- NEW FILE panoglview.spec --- Summary: Immersive viewer for spherical panoramas Name: panoglview Version: 0.2.2 Release: 5%{?dist} License: GPLv2+ URL: http://hugin.sourceforge.net/ Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/hugin/%{name}-%{version}.tar.gz Source1: %{name}.desktop Source2: %{name}.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtiff-devel libjpeg-devel libpng-devel BuildRequires: wxGTK-devel zlib-devel desktop-file-utils %description Use panoglview to explore equirectangular panoramic images. Equirectangular panoramas are typically JPEG/TIFF/PNG images with a 2:1 aspect ratio. %prep %setup -q chmod -x src/*.h src/*.cpp %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} desktop-file-install --vendor="" \ --dir=%{buildroot}/%{_datadir}/applications %{SOURCE1} install -D -m 0755 %{SOURCE2} %{buildroot}/%{_datadir}/pixmaps/%{name}.png %clean rm -rf %{buildroot} %post update-desktop-database &> /dev/null ||: %postun update-desktop-database &> /dev/null ||: %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING INSTALL NEWS %{_bindir}/%{name} %{_datadir}/applications/*.desktop %{_datadir}/pixmaps/%{name}.png %changelog * Wed Jul 01 2009 Bruno Postle 0.2.2-5 - spec improvements, add icon * Tue Jun 16 2009 Bruno Postle 0.2.2-4 - spec improvements * Mon Jul 28 2008 Bruno Postle 0.2.2-3 - 0.2.2 release * Fri Jul 20 2007 Bruno Postle 0.2.2-1cvs20070720 - CVS snapshot add .desktop * Mon Jul 02 2007 Bruno Postle 0.2-6 - rebuild for fc7 with spec cleanup * Tue May 16 2006 Bruno Postle 0.2-5.fc5.bp * Fri Mar 24 2006 Bruno Postle 0.2-4.fc5.bp - rebuild for fc5 * Tue Dec 06 2005 Bruno Postle - build on another host due to mystery c++ 3.6.4 errors * Wed Nov 30 2005 Bruno Postle - switch to current CVS, remove old build patches. requires freshrpms wxGTK >= 2.6.0 * Fri Jul 22 2005 Bruno Postle - new build for fc4. now uses GTK2 * Wed Oct 20 2004 Bruno Postle - new build for fc2 * Tue Jun 22 2004 Bruno Postle - initial RPM Index: sources =================================================================== RCS file: /cvs/extras/rpms/panoglview/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:30:22 -0000 1.1 +++ sources 8 Jul 2009 19:25:50 -0000 1.2 @@ -0,0 +1 @@ +770a337c43cdd20be0347135ed1f597e panoglview-0.2.2.tar.gz From itamarjp at fedoraproject.org Wed Jul 8 19:26:30 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 8 Jul 2009 19:26:30 +0000 (UTC) Subject: rpms/bugzilla/EL-4 .cvsignore, 1.6, 1.7 bugzilla.spec, 1.12, 1.13 import.log, 1.1, 1.2 sources, 1.6, 1.7 Message-ID: <20090708192630.3C49411C0097@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/bugzilla/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7456/EL-4 Modified Files: .cvsignore bugzilla.spec import.log sources Log Message: new version 3.2.4 fix Unauthorized Bug Change Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 4 Jul 2009 01:03:28 -0000 1.6 +++ .cvsignore 8 Jul 2009 19:26:00 -0000 1.7 @@ -1 +1 @@ -bugzilla-3.2.3.tar.gz +bugzilla-3.2.4.tar.gz Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/bugzilla.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- bugzilla.spec 4 Jul 2009 01:03:28 -0000 1.12 +++ bugzilla.spec 8 Jul 2009 19:26:00 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.3 +Version: 3.2.4 Group: Applications/Publishing Release: 1%{?dist} License: MPLv1.1 @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 +- fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 + * Mon Apr 06 2009 Itamar Reis Peixoto 3.2.3-1 - fix CVE-2009-1213 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 4 Jul 2009 01:03:28 -0000 1.1 +++ import.log 8 Jul 2009 19:26:00 -0000 1.2 @@ -1 +1,2 @@ bugzilla-3_2_3-1_fc11:EL-4:bugzilla-3.2.3-1.fc11.src.rpm:1246669340 +bugzilla-3_2_4-1_fc11:EL-4:bugzilla-3.2.4-1.fc11.src.rpm:1247081113 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/EL-4/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 4 Jul 2009 01:03:28 -0000 1.6 +++ sources 8 Jul 2009 19:26:00 -0000 1.7 @@ -1 +1 @@ -fcc8f64fec821e76718fbda13e232b59 bugzilla-3.2.3.tar.gz +845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz From ajax at fedoraproject.org Wed Jul 8 19:29:09 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 8 Jul 2009 19:29:09 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1618, 1.1619 drm-no-gem-on-i8xx.patch, 1.2, NONE Message-ID: <20090708192909.3E08211C0097@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8413 Modified Files: kernel.spec Removed Files: drm-no-gem-on-i8xx.patch Log Message: * Wed Jul 08 2009 Adam Jackson - drm-no-gem-on-i8xx.patch: Drop, intel 2D driver requires GEM now. This should be entertaining. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1618 retrieving revision 1.1619 diff -u -p -r1.1618 -r1.1619 --- kernel.spec 8 Jul 2009 19:25:38 -0000 1.1618 +++ kernel.spec 8 Jul 2009 19:28:38 -0000 1.1619 @@ -653,7 +653,6 @@ Patch1811: drm-next.patch Patch1812: drm-modesetting-radeon.patch Patch1813: drm-radeon-pm.patch Patch1814: drm-nouveau.patch -Patch1816: drm-no-gem-on-i8xx.patch Patch1818: drm-i915-resume-force-mode.patch Patch1819: drm-intel-big-hammer.patch @@ -1228,7 +1227,6 @@ ApplyPatch linux-2.6-e1000-ich9.patch ApplyPatch drm-nouveau.patch # pm broken on my thinkpad t60p - airlied #ApplyPatch drm-radeon-pm.patch -ApplyPatch drm-no-gem-on-i8xx.patch ApplyPatch drm-i915-resume-force-mode.patch ApplyPatch drm-intel-big-hammer.patch @@ -1863,6 +1861,10 @@ fi # and build. %changelog +* Wed Jul 08 2009 Adam Jackson +- drm-no-gem-on-i8xx.patch: Drop, intel 2D driver requires GEM now. This + should be entertaining. + * Wed Jul 08 2009 Kyle McMartin - First cut of /usr/sbin/perf wrapper script and 'perf' subpackage. --- drm-no-gem-on-i8xx.patch DELETED --- From mgrepl at fedoraproject.org Wed Jul 8 19:31:18 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Wed, 8 Jul 2009 19:31:18 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.28, 1.29 selinux-policy.spec, 1.884, 1.885 Message-ID: <20090708193118.2FE3E11C0097@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9125 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Fixes for xguest policy-20090521.patch: Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- policy-20090521.patch 7 Jul 2009 07:55:53 -0000 1.28 +++ policy-20090521.patch 8 Jul 2009 19:31:17 -0000 1.29 @@ -1,12 +1,12 @@ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/mcs serefpolicy-3.6.12/policy/mcs --- nsaserefpolicy/policy/mcs 2009-06-25 10:19:43.000000000 +0200 -+++ serefpolicy-3.6.12/policy/mcs 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/mcs 2009-07-08 21:09:33.000000000 +0200 @@ -66,7 +66,7 @@ # # Note that getattr on files is always permitted. # -mlsconstrain file { write setattr append unlink link rename ioctl lock execute relabelfrom } -+mlsconstrain { file chr_file blk_file sock_file lnk_file fifo_file } { write setattr append unlink link rename ioctl lock execute relabelfrom } ++mlsconstrain { file chr_file blk_file lnk_file } { write setattr append unlink link rename ioctl lock execute relabelfrom } (( h1 dom h2 ) or ( t1 == mlsfilewrite )); mlsconstrain dir { create getattr setattr read write link unlink rename search add_name remove_name reparent rmdir lock ioctl } @@ -628,8 +628,27 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/mozilla.if serefpolicy-3.6.12/policy/modules/apps/mozilla.if --- nsaserefpolicy/policy/modules/apps/mozilla.if 2009-06-25 10:19:43.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/apps/mozilla.if 2009-06-26 15:48:23.000000000 +0200 -@@ -64,6 +64,7 @@ ++++ serefpolicy-3.6.12/policy/modules/apps/mozilla.if 2009-07-08 21:12:05.000000000 +0200 +@@ -45,6 +45,18 @@ + relabel_dirs_pattern($2, mozilla_home_t, mozilla_home_t) + relabel_files_pattern($2, mozilla_home_t, mozilla_home_t) + relabel_lnk_files_pattern($2, mozilla_home_t, mozilla_home_t) ++ ++ mozilla_dbus_chat($2) ++ ++ userdom_manage_tmp_role($1, mozilla_t) ++ ++ optional_policy(` ++ nsplugin_role($1, mozilla_t) ++ ') ++ ++ optional_policy(` ++ pulseaudio_role($1, mozilla_t) ++ ') + ') + + ######################################## +@@ -64,6 +76,7 @@ allow $1 mozilla_home_t:dir list_dir_perms; allow $1 mozilla_home_t:file read_file_perms; @@ -637,17 +656,68 @@ diff -b -B --ignore-all-space --exclude- userdom_search_user_home_dirs($1) ') +@@ -82,7 +95,8 @@ + type mozilla_home_t; + ') + +- write_files_pattern($1, mozilla_home_t, mozilla_home_t) ++ allow $1 mozilla_home_t:dir list_dir_perms; ++ allow $1 mozilla_home_t:file write_file_perms; + userdom_search_user_home_dirs($1) + ') + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/mozilla.te serefpolicy-3.6.12/policy/modules/apps/mozilla.te --- nsaserefpolicy/policy/modules/apps/mozilla.te 2009-06-25 10:19:43.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/apps/mozilla.te 2009-06-25 10:21:01.000000000 +0200 -@@ -145,6 +145,7 @@ - userdom_manage_user_tmp_dirs(mozilla_t) - userdom_manage_user_tmp_files(mozilla_t) - userdom_manage_user_tmp_sockets(mozilla_t) ++++ serefpolicy-3.6.12/policy/modules/apps/mozilla.te 2009-07-08 21:12:10.000000000 +0200 +@@ -59,6 +59,7 @@ + manage_files_pattern(mozilla_t, mozilla_home_t, mozilla_home_t) + manage_lnk_files_pattern(mozilla_t, mozilla_home_t, mozilla_home_t) + userdom_search_user_home_dirs(mozilla_t) ++userdom_user_home_dir_filetrans(mozilla_t, mozilla_home_t, dir) + + # Mozpluggerrc + allow mozilla_t mozilla_conf_t:file read_file_perms; +@@ -97,6 +98,7 @@ + corenet_tcp_connect_ftp_port(mozilla_t) + corenet_tcp_connect_ipp_port(mozilla_t) + corenet_tcp_connect_generic_port(mozilla_t) ++corenet_tcp_connect_soundd_port(mozilla_t) + corenet_sendrecv_http_client_packets(mozilla_t) + corenet_sendrecv_http_cache_client_packets(mozilla_t) + corenet_sendrecv_ftp_client_packets(mozilla_t) +@@ -114,6 +116,8 @@ + dev_dontaudit_rw_dri(mozilla_t) + dev_getattr_sysfs_dirs(mozilla_t) + ++domain_dontaudit_read_all_domains_state(mozilla_t) ++ + files_read_etc_runtime_files(mozilla_t) + files_read_usr_files(mozilla_t) + files_read_etc_files(mozilla_t) +@@ -139,12 +143,7 @@ + # Browse the web, connect to printer + sysnet_dns_name_resolve(mozilla_t) + +-userdom_manage_user_home_content_dirs(mozilla_t) +-userdom_manage_user_home_content_files(mozilla_t) +-userdom_manage_user_home_content_symlinks(mozilla_t) +-userdom_manage_user_tmp_dirs(mozilla_t) +-userdom_manage_user_tmp_files(mozilla_t) +-userdom_manage_user_tmp_sockets(mozilla_t) +userdom_use_user_ptys(mozilla_t) xserver_user_x_domain_template(mozilla, mozilla_t, mozilla_tmpfs_t) xserver_dontaudit_read_xdm_tmp_files(mozilla_t) +@@ -241,6 +240,9 @@ + optional_policy(` + dbus_system_bus_client(mozilla_t) + dbus_session_bus_client(mozilla_t) ++ optional_policy(` ++ networkmanager_dbus_chat(mozilla_t) ++ ') + ') + + optional_policy(` diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/nsplugin.if serefpolicy-3.6.12/policy/modules/apps/nsplugin.if --- nsaserefpolicy/policy/modules/apps/nsplugin.if 2009-06-25 10:19:43.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/apps/nsplugin.if 2009-07-07 08:51:57.000000000 +0200 @@ -1785,6 +1855,27 @@ diff -b -B --ignore-all-space --exclude- +optional_policy(` setroubleshoot_dontaudit_stream_connect(user_t) ') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/roles/xguest.te serefpolicy-3.6.12/policy/modules/roles/xguest.te +--- nsaserefpolicy/policy/modules/roles/xguest.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/roles/xguest.te 2009-07-08 21:12:15.000000000 +0200 +@@ -36,11 +36,17 @@ + # Local policy + # + ++# Dontaudit fusermount ++dontaudit xguest_t self:capability sys_admin; ++ + # Allow mounting of file systems + optional_policy(` + tunable_policy(`xguest_mount_media',` + kernel_read_fs_sysctls(xguest_t) + ++ # allow fusermount ++ allow xguest_t self:capability sys_admin; ++ + files_dontaudit_getattr_boot_dirs(xguest_t) + files_search_mnt(xguest_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/apache.fc serefpolicy-3.6.12/policy/modules/services/apache.fc --- nsaserefpolicy/policy/modules/services/apache.fc 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/apache.fc 2009-06-25 10:21:01.000000000 +0200 @@ -2527,6 +2618,17 @@ diff -b -B --ignore-all-space --exclude- +auth_use_nsswitch(nslcd_t) + +logging_send_syslog_msg(nslcd_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/openvpn.te serefpolicy-3.6.12/policy/modules/services/openvpn.te +--- nsaserefpolicy/policy/modules/services/openvpn.te 2009-04-07 21:54:45.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/openvpn.te 2009-07-08 21:10:15.000000000 +0200 +@@ -86,6 +86,7 @@ + corenet_udp_bind_openvpn_port(openvpn_t) + corenet_tcp_connect_openvpn_port(openvpn_t) + corenet_tcp_connect_http_port(openvpn_t) ++corenet_tcp_connect_http_cache_port(openvpn_t) + corenet_rw_tun_tap_dev(openvpn_t) + corenet_sendrecv_openvpn_server_packets(openvpn_t) + corenet_sendrecv_openvpn_client_packets(openvpn_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/pcscd.te serefpolicy-3.6.12/policy/modules/services/pcscd.te --- nsaserefpolicy/policy/modules/services/pcscd.te 2009-04-07 21:54:45.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/pcscd.te 2009-06-25 10:21:01.000000000 +0200 @@ -2609,7 +2711,7 @@ diff -b -B --ignore-all-space --exclude- ## diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postgresql.te serefpolicy-3.6.12/policy/modules/services/postgresql.te --- nsaserefpolicy/policy/modules/services/postgresql.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/postgresql.te 2009-06-29 16:24:29.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/postgresql.te 2009-07-08 21:12:21.000000000 +0200 @@ -202,6 +202,7 @@ corenet_tcp_bind_generic_node(postgresql_t) corenet_tcp_bind_postgresql_port(postgresql_t) @@ -2618,6 +2720,14 @@ diff -b -B --ignore-all-space --exclude- corenet_sendrecv_postgresql_server_packets(postgresql_t) corenet_sendrecv_auth_client_packets(postgresql_t) +@@ -237,6 +238,7 @@ + init_read_utmp(postgresql_t) + + logging_send_syslog_msg(postgresql_t) ++logging_send_audit_msgs(postgresql_t) + + miscfiles_read_localization(postgresql_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ppp.if serefpolicy-3.6.12/policy/modules/services/ppp.if --- nsaserefpolicy/policy/modules/services/ppp.if 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/ppp.if 2009-06-25 10:21:01.000000000 +0200 @@ -2725,7 +2835,7 @@ diff -b -B --ignore-all-space --exclude- auth_read_all_symlinks_except_shadow(rsync_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/sendmail.te serefpolicy-3.6.12/policy/modules/services/sendmail.te --- nsaserefpolicy/policy/modules/services/sendmail.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/sendmail.te 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/sendmail.te 2009-07-08 21:12:27.000000000 +0200 @@ -148,6 +148,7 @@ optional_policy(` @@ -2734,6 +2844,14 @@ diff -b -B --ignore-all-space --exclude- postfix_domtrans_master(sendmail_t) postfix_read_config(sendmail_t) postfix_search_spool(sendmail_t) +@@ -186,6 +187,6 @@ + + optional_policy(` + mta_etc_filetrans_aliases(unconfined_sendmail_t) +- unconfined_domain(unconfined_sendmail_t) ++ unconfined_domain_noaudit(unconfined_sendmail_t) + ') + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/setroubleshoot.te serefpolicy-3.6.12/policy/modules/services/setroubleshoot.te --- nsaserefpolicy/policy/modules/services/setroubleshoot.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/setroubleshoot.te 2009-06-25 10:21:01.000000000 +0200 @@ -3221,7 +3339,7 @@ diff -b -B --ignore-all-space --exclude- allow $1 xdm_t:x_drawable { read receive get_property getattr send list_child add_child }; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/xserver.te serefpolicy-3.6.12/policy/modules/services/xserver.te --- nsaserefpolicy/policy/modules/services/xserver.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/xserver.te 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/xserver.te 2009-07-08 21:12:32.000000000 +0200 @@ -370,8 +370,9 @@ manage_lnk_files_pattern(xdm_t, xdm_tmpfs_t, xdm_tmpfs_t) manage_fifo_files_pattern(xdm_t, xdm_tmpfs_t, xdm_tmpfs_t) @@ -3249,7 +3367,15 @@ diff -b -B --ignore-all-space --exclude- userdom_manage_user_tmp_sockets(xdm_t) userdom_manage_tmpfs_role(system_r, xdm_t) -@@ -839,7 +842,6 @@ +@@ -652,6 +655,7 @@ + + optional_policy(` + pulseaudio_exec(xdm_t) ++ pulseaudio_dbus_chat(xdm_t) + ') + + # On crash gdm execs gdb to dump stack +@@ -839,7 +843,6 @@ fs_search_nfs(xserver_t) fs_search_auto_mountpoints(xserver_t) fs_search_ramfs(xserver_t) @@ -3257,7 +3383,7 @@ diff -b -B --ignore-all-space --exclude- fs_rw_tmpfs_files(xserver_t) mls_xwin_read_to_clearance(xserver_t) -@@ -931,6 +933,10 @@ +@@ -931,6 +934,10 @@ ') optional_policy(` Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.884 retrieving revision 1.885 diff -u -p -r1.884 -r1.885 --- selinux-policy.spec 7 Jul 2009 07:55:53 -0000 1.884 +++ selinux-policy.spec 8 Jul 2009 19:31:17 -0000 1.885 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 64%{?dist} +Release: 65%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Wed Jul 8 2009 Miroslav Grepl 3.6.12-65 +- Fixes for xguest + * Tue Jul 7 2009 Miroslav Grepl 3.6.12-64 - Fixes for kpropd - Fix up kismet policy From toshio at fedoraproject.org Wed Jul 8 19:34:12 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Wed, 8 Jul 2009 19:34:12 +0000 (UTC) Subject: rpms/python-docutils/EL-5 .cvsignore, 1.4, 1.5 python-docutils.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090708193412.C772711C0097@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/python-docutils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9906 Modified Files: .cvsignore python-docutils.spec sources Log Message: Update to 0.5 for Meetbot. Should be backwards compatible. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-docutils/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jan 2006 20:15:57 -0000 1.4 +++ .cvsignore 8 Jul 2009 19:34:12 -0000 1.5 @@ -1 +1 @@ -docutils-0.4.tar.gz +docutils-0.5.tar.gz Index: python-docutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-docutils/EL-5/python-docutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-docutils.spec 23 Jun 2009 22:40:58 -0000 1.9 +++ python-docutils.spec 8 Jul 2009 19:34:12 -0000 1.10 @@ -3,8 +3,8 @@ %define srcname docutils Name: python-%{srcname} -Version: 0.4 -Release: 8%{?dist} +Version: 0.5 +Release: 3%{?dist} Summary: A system for processing plaintext documentation Group: Development/Languages @@ -62,7 +62,7 @@ file=roman.py extradest=%{python_sitelib} fullextradest=%{buildroot}/$extradest install -D -m 0644 extras/$file $fullextradest/$file - + %clean rm -rf %{buildroot} @@ -76,6 +76,15 @@ rm -rf %{buildroot} %{python_sitelib}/*egg-info/ %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.5-2 +- Rebuild for Python 2.6 + +* Wed Aug 6 2008 Toshio Kuratomi 0.5-1 +- New upstream version. + * Mon Mar 3 2008 Toshio Kuratomi 0.4-8 - Use regular Requires syntax for python-imaging as missingok is just wrong. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-docutils/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Jan 2006 20:15:57 -0000 1.4 +++ sources 8 Jul 2009 19:34:12 -0000 1.5 @@ -1 +1 @@ -0fe7b42bb3c2aa3680fe30f9a5fbf712 docutils-0.4.tar.gz +dd72dac92fc8e3eb0f48c3effeef80f6 docutils-0.5.tar.gz From yaneti at fedoraproject.org Wed Jul 8 19:34:42 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 8 Jul 2009 19:34:42 +0000 (UTC) Subject: rpms/python-sybase/F-11 howto.cls, NONE, 1.1 import.log, NONE, 1.1 pypaper.sty, NONE, 1.1 python-sybase-0.39-bug2615821.patch, NONE, 1.1 python-sybase.spec, NONE, 1.1 python.sty, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708193442.5976F11C0097@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/python-sybase/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10101/F-11 Modified Files: .cvsignore sources Added Files: howto.cls import.log pypaper.sty python-sybase-0.39-bug2615821.patch python-sybase.spec python.sty Log Message: Initial import on branch F-11 --- NEW FILE howto.cls --- % % howto.cls for the Python documentation % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesClass{howto} [1998/02/25 Document class (Python HOWTO)] \RequirePackage{pypaper} \RequirePackage{fancybox} % Change the options here to get a different set of basic options, This % is where to add things like "a4paper" or "10pt". % \LoadClass[\py at paper,\py at ptsize,twoside]{article} \setcounter{secnumdepth}{1} % Optional packages: % % If processing of these documents fails at your TeX installation, % these may be commented out (independently) to make things work. % These are both supplied with the current version of the teTeX % distribution. % % The "fancyhdr" package makes nicer page footers reasonable to % implement, and is used to put the chapter and section information in % the footers. % \RequirePackage{fancyhdr}\typeout{Using fancier footers than usual.} % Required package: % % This gives us all the Python-specific markup that we really want. % This should come last. Do not change this. % \RequirePackage{python} % support for module synopsis sections: \newcommand{\py at ModSynopsisFilename}{\jobname.syn} % need to do one of these.... \newcommand{\py at doHorizontalRule}{\rule{\textwidth}{1pt}} % Change the title page to look a bit better, and fit in with the % fncychap ``Bjarne'' style a bit better. % \renewcommand{\maketitle}{ \py at doHorizontalRule \ifpdf \begingroup % This \def is required to deal with multi-line authors; it % changes \\ to ', ' (comma-space), making it pass muster for % generating document info in the PDF file. \def\\{, } \pdfinfo{ /Author (\@author) /Title (\@title) } \endgroup \fi \begin{flushright} {\rm\Huge\py at HeaderFamily \@title} \par {\em\large\py at HeaderFamily \py at release\releaseinfo} \par \vspace{25pt} {\Large\py at HeaderFamily \@author} \par \vspace{25pt} \@date \par \py at authoraddress \par \end{flushright} \@thanks \setcounter{footnote}{0} \let\thanks\relax\let\maketitle\relax \gdef\@thanks{}\gdef\@author{}\gdef\@title{} } \let\py at OldTableofcontents=\tableofcontents \renewcommand{\tableofcontents}{ \begingroup \parskip = 0mm \py at OldTableofcontents \endgroup \py at doHorizontalRule \vspace{12pt} \py at doing@page at targetstrue } % Fix the theindex environment to add an entry to the Table of % Contents; this is much nicer than just having to jump to the end of % the book and flip around, especially with multiple indexes. % \let\py at OldTheindex=\theindex \renewcommand{\theindex}{ \clearpage \py at OldTheindex \addcontentsline{toc}{section}{\indexname} } \@ifundefined{fancyhf}{ \pagestyle{plain}}{ \pagestyle{normal}} % start this way; change for \pagenumbering{arabic} % ToC & chapters \setcounter{secnumdepth}{2} \thispagestyle{empty} --- NEW FILE import.log --- python-sybase-0_39-3_fc12:F-11:python-sybase-0.39-3.fc12.src.rpm:1247081641 --- NEW FILE pypaper.sty --- % % Change this to say a4paper instead of letterpaper if you want A4. These % are the latex defaults. % \newcommand{\py at paper}{letterpaper} \newcommand{\py at ptsize}{10pt} % These set up the fonts for the documents. % % The "times" package makes the default font the PostScript Times % font, which makes for smaller PostScript and a font that more people % like. % % The "avant" package causes the AvantGarde font to be used for % sans-serif text, instead of the uglier Helvetica set up by the "times" % package. % \RequirePackage{times}\typeout{Using Times instead of Computer Modern.} python-sybase-0.39-bug2615821.patch: --- NEW FILE python-sybase-0.39-bug2615821.patch --- 2009-06-04 S??bastien Sabl?? * datafmt.c (money_datafmt): Corrected money type when using CS_MONEY4 (close bug 2615821) Index: datafmt.c =================================================================== --- datafmt.c (revision 445) +++ datafmt.c (revision 446) @@ -11,7 +11,7 @@ void money_datafmt(CS_DATAFMT *fmt, int type) { memset(fmt, 0, sizeof(*fmt)); - fmt->datatype = CS_MONEY_TYPE; + fmt->datatype = type; if (type == CS_MONEY_TYPE) fmt->maxlength = sizeof(CS_MONEY); else --- NEW FILE python-sybase.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-sybase Version: 0.39 Release: 3%{?dist} Summary: Python interface to Sybase Group: Development/Languages License: BSD URL: http://python-sybase.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz # for building the doc Source1: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/howto.cls Source2: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/pypaper.sty Source3: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/python.sty # bugfix from upstream svn r446 Patch1: python-sybase-0.39-bug2615821.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools-devel BuildRequires: freetds-devel # for building the doc BuildRequires: texlive-latex %description python-sybase is a DB-API 2.0 compliant Python interface to the Sybase Relational Database. %prep %setup -q %patch1 -p0 -b .bug2615821 cp -av %{SOURCE1} %{SOURCE2} %{SOURCE3} doc/ %build export SYBASE="%{_prefix}" # the uptrame build setup fails to mention -lct on x86_64, so just use explicitly # reported upstream artefact 2812108 # https://sourceforge.net/tracker/?func=detail&aid=2812108&group_id=184050&atid=907701 CFLAGS="-DHAVE_FREETDS -DWANT_THREADS" LDFLAGS="-lct" %{__python} setup.py build cd doc ; makeindex sybase.tex ; pdflatex sybase #check # not running tests yet because none would actually work, # due to db server requirement or simply being buggy # https://sourceforge.net/tracker/?func=detail&aid=2815670&group_id=184050&atid=907701 %install rm -rf $RPM_BUILD_ROOT export SYBASE="%{_prefix}" %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT # force the mode until someone figures out why this sometimes ends up with 775 perms find $RPM_BUILD_ROOT -name sybasect.so -exec chmod 0755 {} \; mv doc/sybase.pdf doc/python-sybase.pdf %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENCE ChangeLog doc/python-sybase.pdf examples %{python_sitearch}/* %changelog * Wed Jul 8 2009 Yanko Kaneti - 0.39-3 - Build with -DWANT_THREADS * Mon Jul 6 2009 Yanko Kaneti - 0.39-2 - Try harder to build human readable documentation - Move the sybasect.so chmod after the install phase * Thu Jun 25 2009 Yanko Kaneti - 0.39-1 - Start over reworking Andy Theuninck's submission in bug 459675 --- NEW FILE python.sty --- % % python.sty for the Python docummentation [works only with Latex2e] % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesPackage{python} [1998/01/11 LaTeX package (Python markup)] \RequirePackage{longtable} \RequirePackage{underscore} % Uncomment these two lines to ignore the paper size and make the page % size more like a typical published manual. %\renewcommand{\paperheight}{9in} %\renewcommand{\paperwidth}{8.5in} % typical squarish manual %\renewcommand{\paperwidth}{7in} % O'Reilly ``Programmming Python'' % These packages can be used to add marginal annotations which indicate % index entries and labels; useful for reviewing this messy documentation! % %\RequirePackage{showkeys} %\RequirePackage{showidx} % If we ever want to indent paragraphs, this needs to be changed. % This is used inside the macros defined here instead of coding % \noindent directly. \let\py at parindent=\noindent % for PDF output, use maximal compression & a lot of other stuff % (test for PDF recommended by Tanmoy Bhattacharya ) % \newif\ifpy at doing@page at targets \py at doing@page at targetsfalse \newif\ifpdf\pdffalse \ifx\pdfoutput\undefined\else\ifcase\pdfoutput \else \pdftrue \input{pdfcolor} \let\py at LinkColor=\NavyBlue \let\py at NormalColor=\Black \pdfcompresslevel=9 \pdfpagewidth=\paperwidth % page width of PDF output \pdfpageheight=\paperheight % page height of PDF output % % Pad the number with '0' to 3 digits wide so no page name is a prefix % of any other. % \newcommand{\py at targetno}[1]{\ifnum#1<100 0\fi\ifnum#1<10 0\fi#1} \newcommand{\py at pageno}{\py at targetno\thepage} % % This definition allows the entries in the page-view of the ToC to be % active links. Some work, some don't. % \let\py at OldContentsline=\contentsline % % Backward compatibility hack: pdfTeX 0.13 defined \pdfannotlink, % but it changed to \pdfstartlink in 0.14. This let's us use either % version and still get useful behavior. % \@ifundefined{pdfstartlink}{ \let\pdfstartlink=\pdfannotlink }{} % % The \py at parindent here is a hack -- we're forcing pdfTeX into % horizontal mode since \pdfstartlink requires that. \def\py at pdfstartlink{% \ifvmode\py at parindent\fi% \pdfstartlink% } % % Macro that takes two args: the name to link to and the content of % the link. This takes care of the PDF magic, getting the colors % the same for each link, and avoids having lots of garbage all over % this style file. \newcommand{\py at linkToName}[2]{% \py at pdfstartlink attr{/Border [0 0 0]} goto name{#1}% \py at LinkColor#2\py at NormalColor% \pdfendlink% } % Compute the padded page number separately since we end up with a pair of % \relax tokens; this gets the right string computed and works. \renewcommand{\contentsline}[3]{% \def\my at pageno{\py at targetno{#3}}% \py at OldContentsline{#1}{\py at linkToName{page\my at pageno}{#2}}{#3}% } \AtEndDocument{ \def\_{\string_} \InputIfFileExists{\jobname.bkm}{\pdfcatalog{/PageMode /UseOutlines}}{} } \newcommand{\py at target}[1]{% \ifpy at doing@page at targets% {\pdfdest name{#1} xyz}% \fi% } \let\py at OldLabel=\label \renewcommand{\label}[1]{% \py at OldLabel{#1}% \py at target{label-#1}% } % This stuff adds a page# destination to every PDF page, where # is three % digits wide, padded with leading zeros. This doesn't really help with % the frontmatter, but does fine with the body. % % This is *heavily* based on the hyperref package. % \def\@begindvi{% \unvbox \@begindvibox \@hyperfixhead } \def\@hyperfixhead{% \let\H at old@thehead\@thehead \global\def\@foo{\py at target{page\py at pageno}}% \expandafter\ifx\expandafter\@empty\H at old@thehead \def\H at old@thehead{\hfil}\fi \def\@thehead{\@foo\relax\H at old@thehead}% } \fi\fi % Increase printable page size (copied from fullpage.sty) \topmargin 0pt \advance \topmargin by -\headheight \advance \topmargin by -\headsep % attempt to work a little better for A4 users \textheight \paperheight \advance\textheight by -2in \oddsidemargin 0pt \evensidemargin 0pt %\evensidemargin -.25in % for ``manual size'' documents \marginparwidth 0.5in \textwidth \paperwidth \advance\textwidth by -2in % Style parameters and macros used by most documents here \raggedbottom \sloppy \parindent = 0mm \parskip = 2mm \hbadness = 5000 % don't print trivial gripes \pagestyle{empty} % start this way; change for \pagenumbering{roman} % ToC & chapters % Use this to set the font family for headers and other decor: \newcommand{\py at HeaderFamily}{\sffamily} % Set up abstract ways to get the normal and smaller font sizes that % work even in footnote context. \newif\ifpy at infootnote \py at infootnotefalse \let\py at oldmakefntext\@makefntext \def\@makefntext#1{% \bgroup% \py at infootnotetrue \py at oldmakefntext{#1}% \egroup% } \def\py at defaultsize{% \ifpy at infootnote\footnotesize\else\normalsize\fi% } \def\py at smallsize{% \ifpy at infootnote\scriptsize\else\small\fi% } % Redefine the 'normal' header/footer style when using "fancyhdr" package: \@ifundefined{fancyhf}{}{ % Use \pagestyle{normal} as the primary pagestyle for text. \fancypagestyle{normal}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \fancyfoot[LO]{{\py at HeaderFamily\nouppercase{\rightmark}}} \fancyfoot[RE]{{\py at HeaderFamily\nouppercase{\leftmark}}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Update the plain style so we get the page number & footer line, % but not a chapter or section title. This is to keep the first % page of a chapter and the blank page between chapters `clean.' \fancypagestyle{plain}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Redefine \cleardoublepage so that the blank page between chapters % gets the plain style and not the fancy style. This is described % in the documentation for the fancyhdr package by Piet von Oostrum. \@ifundefined{chapter}{}{ \renewcommand{\cleardoublepage}{ \clearpage\if at openright \ifodd\c at page\else \hbox{} \thispagestyle{plain} \newpage \if at twocolumn\hbox{}\newpage\fi\fi\fi } } } % This sets up the {verbatim} environment to be indented and a minipage, % and to have all the other mostly nice properties that we want for % code samples. \let\py at OldVerbatim=\verbatim \let\py at OldEndVerbatim=\endverbatim \RequirePackage{verbatim} \let\py at OldVerbatimInput=\verbatiminput % Variable used by begin code command \newlength{\py at codewidth} \renewcommand{\verbatim}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldVerbatim% } \renewcommand{\endverbatim}{% \py at OldEndVerbatim% \end{minipage}% } \renewcommand{\verbatiminput}[1]{% {\setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \small% \begin{list}{}{\setlength{\leftmargin}{1cm}} \item% \py at OldVerbatimInput{#1}% \end{list} }% } % This does a similar thing for the {alltt} environment: \RequirePackage{alltt} \let\py at OldAllTT=\alltt \let\py at OldEndAllTT=\endalltt \renewcommand{\alltt}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% \let\e=\textbackslash% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldAllTT% } \renewcommand{\endalltt}{% \py at OldEndAllTT% \end{minipage}% } \newcommand{\py at modulebadkey}{{--just-some-junk--}} %% Lots of index-entry generation support. % Command to wrap around stuff that refers to function / module / % attribute names in the index. Default behavior: like \code{}. To % just keep the index entries in the roman font, uncomment the second % definition; it matches O'Reilly style more. % \newcommand{\py at idxcode}[1]{\texttt{#1}} %\renewcommand{\py at idxcode}[1]{#1} % Command to generate two index entries (using subentries) \newcommand{\indexii}[2]{\index{#1!#2}\index{#2!#1}} % And three entries (using only one level of subentries) \newcommand{\indexiii}[3]{\index{#1!#2 #3}\index{#2!#3, #1}\index{#3!#1 #2}} % And four (again, using only one level of subentries) \newcommand{\indexiv}[4]{ \index{#1!#2 #3 #4} \index{#2!#3 #4, #1} \index{#3!#4, #1 #2} \index{#4!#1 #2 #3} } % Command to generate a reference to a function, statement, keyword, % operator. \newcommand{\kwindex}[1]{\indexii{keyword}{#1@{\py at idxcode{#1}}}} \newcommand{\stindex}[1]{\indexii{statement}{#1@{\py at idxcode{#1}}}} \newcommand{\opindex}[1]{\indexii{operator}{#1@{\py at idxcode{#1}}}} \newcommand{\exindex}[1]{\indexii{exception}{#1@{\py at idxcode{#1}}}} \newcommand{\obindex}[1]{\indexii{object}{#1}} \newcommand{\bifuncindex}[1]{% \index{#1@{\py at idxcode{#1()}} (built-in function)}} % Add an index entry for a module \newcommand{\py at refmodule}[2]{\index{#1@{\py at idxcode{#1}} (#2module)}} \newcommand{\refmodindex}[1]{\py at refmodule{#1}{}} \newcommand{\refbimodindex}[1]{\py at refmodule{#1}{built-in }} \newcommand{\refexmodindex}[1]{\py at refmodule{#1}{extension }} \newcommand{\refstmodindex}[1]{\py at refmodule{#1}{standard }} % Refer to a module's documentation using a hyperlink of the module's % name, at least if we're building PDF: \ifpdf \newcommand{\refmodule}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \py at linkToName{label-module-\py at modulekey}{\module{#2}}% } \else \newcommand{\refmodule}[2][\py at modulebadkey]{\module{#2}} \fi % support for the module index \newif\ifpy at UseModuleIndex \py at UseModuleIndexfalse \newcommand{\makemodindex}{ \newwrite\modindexfile \openout\modindexfile=mod\jobname.idx \py at UseModuleIndextrue } % Add the defining entry for a module \newcommand{\py at modindex}[2]{% \renewcommand{\py at thismodule}{#1} \setindexsubitem{(in module #1)}% \index{#1@{\py at idxcode{#1}} (#2module)|textbf}% \ifpy at UseModuleIndex% \@ifundefined{py at modplat@\py at thismodulekey}{ \write\modindexfile{\protect\indexentry{#1@{\texttt{#1}}}{\thepage}}% }{\write\modindexfile{\protect\indexentry{#1@{\texttt{#1} % \emph{(\py at platformof[\py at thismodulekey]{})}}}{\thepage}}% } \fi% } % *** XXX *** THE NEXT FOUR MACROS ARE NOW OBSOLETE !!! *** % built-in & Python modules in the main distribution \newcommand{\bimodindex}[1]{\py at modindex{#1}{built-in }% \typeout{*** MACRO bimodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\stmodindex}[1]{\py at modindex{#1}{standard }% \typeout{*** MACRO stmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Python & extension modules outside the main distribution \newcommand{\modindex}[1]{\py at modindex{#1}{}% \typeout{*** MACRO modindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\exmodindex}[1]{\py at modindex{#1}{extension }% \typeout{*** MACRO exmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Additional string for an index entry \newif\ifpy at usingsubitem\py at usingsubitemfalse \newcommand{\py at indexsubitem}{} \newcommand{\setindexsubitem}[1]{\renewcommand{\py at indexsubitem}{ #1}% \py at usingsubitemtrue} \newcommand{\ttindex}[1]{% \ifpy at usingsubitem \index{#1@{\py at idxcode{#1}}\py at indexsubitem}% \else% \index{#1@{\py at idxcode{#1}}}% \fi% } \newcommand{\withsubitem}[2]{% \begingroup% \def\ttindex##1{\index{##1@{\py at idxcode{##1}} #1}}% #2% \endgroup% } % Module synopsis processing ----------------------------------------------- % \newcommand{\py at thisclass}{} \newcommand{\py at thismodule}{} \newcommand{\py at thismodulekey}{} \newcommand{\py at thismoduletype}{} \newcommand{\py at standardIndexModule}[1]{\py at modindex{#1}{standard }} \newcommand{\py at builtinIndexModule}[1]{\py at modindex{#1}{built-in }} \newcommand{\py at extensionIndexModule}[1]{\py at modindex{#1}{extension }} \newcommand{\py at IndexModule}[1]{\py at modindex{#1}{}} \newif\ifpy at HaveModSynopsis \py at HaveModSynopsisfalse \newif\ifpy at ModSynopsisFileIsOpen \py at ModSynopsisFileIsOpenfalse \newif\ifpy at HaveModPlatform \py at HaveModPlatformfalse % \declaremodule[key]{type}{name} \newcommand{\declaremodule}[3][\py at modulebadkey]{ \py at openModSynopsisFile \renewcommand{\py at thismoduletype}{#2} \ifx\py at modulebadkey#1 \renewcommand{\py at thismodulekey}{#3} \else \renewcommand{\py at thismodulekey}{#1} \fi \@ifundefined{py@#2IndexModule}{% \typeout{*** MACRO declaremodule called with unknown module type: `#2'} \py at IndexModule{#3}% }{% \csname py@#2IndexModule\endcsname{#3}% } \label{module-\py at thismodulekey} } \newif\ifpy at ModPlatformFileIsOpen \py at ModPlatformFileIsOpenfalse \newcommand{\py at ModPlatformFilename}{\jobname.pla} \newcommand{\platform}[1]{ \ifpy at ModPlatformFileIsOpen\else \newwrite\py at ModPlatformFile \openout\py at ModPlatformFile=\py at ModPlatformFilename \py at ModPlatformFileIsOpentrue \fi } \InputIfFileExists{\jobname.pla}{}{} \newcommand{\py at platformof}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1 \def\py at key{#2}% \else \def\py at key{#1}% \fi% \csname py at modplat@\py at key\endcsname% } \newcommand{\ignorePlatformAnnotation}[1]{} % \moduleauthor{name}{email} \newcommand{\moduleauthor}[2]{} % \sectionauthor{name}{email} \newcommand{\sectionauthor}[2]{} \newcommand{\py at defsynopsis}{Module has no synopsis.} \newcommand{\py at modulesynopsis}{\py at defsynopsis} \newcommand{\modulesynopsis}[1]{ \py at HaveModSynopsistrue \renewcommand{\py at modulesynopsis}{#1} } % define the file \newwrite\py at ModSynopsisFile % hacked from \addtocontents from latex.ltx: \long\def\py at writeModSynopsisFile#1{% \protected at write\py at ModSynopsisFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\py at closeModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen \closeout\py at ModSynopsisFile \py at ModSynopsisFileIsOpenfalse \fi } \newcommand{\py at openModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen\else \openout\py at ModSynopsisFile=\py at ModSynopsisFilename \py at ModSynopsisFileIsOpentrue \fi } \newcommand{\py at ProcessModSynopsis}{ \ifpy at HaveModSynopsis \py at writeModSynopsisFile{\modulesynopsis% {\py at thismodulekey}{\py at thismodule}% {\py at thismoduletype}{\py at modulesynopsis}}% \py at HaveModSynopsisfalse \fi \renewcommand{\py at modulesynopsis}{\py at defsynopsis} } \AtEndDocument{\py at ProcessModSynopsis\py at closeModSynopsisFile} \long\def\py at writeModPlatformFile#1{% \protected at write\py at ModPlatformFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\localmoduletable}{ \IfFileExists{\py at ModSynopsisFilename}{ \begin{synopsistable} \input{\py at ModSynopsisFilename} \end{synopsistable} }{} } \ifpdf \newcommand{\py at ModSynopsisSummary}[4]{% \py at linkToName{label-module-#1}{\bfcode{#2}} & #4\\ } \else \newcommand{\py at ModSynopsisSummary}[4]{\bfcode{#2} & #4\\} \fi \newenvironment{synopsistable}{ % key, name, type, synopsis \let\modulesynopsis=\py at ModSynopsisSummary \begin{tabular}{ll} }{ \end{tabular} } % % -------------------------------------------------------------------------- \newcommand{\py at reset}{ \py at usingsubitemfalse \py at ProcessModSynopsis \renewcommand{\py at thisclass}{} \renewcommand{\py at thismodule}{} \renewcommand{\py at thismodulekey}{} \renewcommand{\py at thismoduletype}{} } % Augment the sectioning commands used to get our own font family in place, % and reset some internal data items: \renewcommand{\section}{\py at reset% \@startsection{section}{1}{\z@}% {-3.5ex \@plus -1ex \@minus -.2ex}% {2.3ex \@plus.2ex}% {\reset at font\Large\py at HeaderFamily}} \renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\large\py at HeaderFamily}} \renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}% {3.25ex \@plus1ex \@minus.2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{\parindent}% {3.25ex \@plus1ex \@minus .2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} % Now for a lot of semantically-loaded environments that do a ton of magical % things to get the right formatting and index entries for the stuff in % Python modules and C API. % {fulllineitems} is used in one place in libregex.tex, but is really for % internal use in this file. % \newcommand{\py at itemnewline}[1]{% \@tempdima\linewidth% \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}% } \newenvironment{fulllineitems}{ \begin{list}{}{\labelwidth \leftmargin \labelsep 0pt \rightmargin 0pt \topsep -\parskip \partopsep \parskip \itemsep -\parsep \let\makelabel=\py at itemnewline} }{\end{list}} % \optional is mostly for use in the arguments parameters to the various % {*desc} environments defined below, but may be used elsewhere. Known to % be used in the debugger chapter. % % Typical usage: % % \begin{funcdesc}{myfunc}{reqparm\optional{, optparm}} % ^^^ ^^^ % No space here No space here % % When a function has multiple optional parameters, \optional should be % nested, not chained. This is right: % % \begin{funcdesc}{myfunc}{\optional{parm1\optional{, parm2}}} % \let\py at badkey=\@undefined \newcommand{\optional}[1]{% {\textnormal{\Large[}}{#1}\hspace{0.5mm}{\textnormal{\Large]}}} % This can be used when a function or method accepts an varying number % of arguments, such as by using the *args syntax in the parameter list. \newcommand{\py at moreargs}{...} % This can be used when you don't want to document the parameters to a % function or method, but simply state that it's an alias for % something else. \newcommand{\py at unspecified}{...} \newlength{\py at argswidth} \newcommand{\py at sigparams}[1]{% \parbox[t]{\py at argswidth}{\py at varvars{#1}\code{)}}} \newcommand{\py at sigline}[2]{% \settowidth{\py at argswidth}{#1\code{(}}% \addtolength{\py at argswidth}{-2\py at argswidth}% \addtolength{\py at argswidth}{\textwidth}% \item[#1\code{(}\py at sigparams{#2}]} % C functions ------------------------------------------------------------ % \begin{cfuncdesc}[refcount]{type}{name}{arglist} % Note that the [refcount] slot should only be filled in by % tools/anno-api.py; it pulls the value from the refcounts database. \newcommand{\cfuncline}[3]{ \py at sigline{\code{#1 \bfcode{#2}}}{#3}% \index{#2@{\py at idxcode{#2()}}} } \newenvironment{cfuncdesc}[4][\py at badkey]{ \begin{fulllineitems} \cfuncline{#2}{#3}{#4} \ifx\@undefined#1\relax\else% \emph{Return value: \textbf{#1}.}\\ \fi }{\end{fulllineitems}} % C variables ------------------------------------------------------------ % \begin{cvardesc}{type}{name} \newenvironment{cvardesc}[2]{ \begin{fulllineitems} \item[\code{#1 \bfcode{#2}}\index{#2@{\py at idxcode{#2}}}] }{\end{fulllineitems}} % C data types ----------------------------------------------------------- % \begin{ctypedesc}[index name]{typedef name} \newenvironment{ctypedesc}[2][\py at badkey]{ \begin{fulllineitems} \item[\bfcode{#2}% \ifx\@undefined#1\relax% \index{#2@{\py at idxcode{#2}} (C type)} \else% \index{#2@{\py at idxcode{#1}} (C type)} \fi] }{\end{fulllineitems}} % C type fields ---------------------------------------------------------- % \begin{cmemberdesc}{container type}{ctype}{membername} \newcommand{\cmemberline}[3]{ \item[\code{#2 \bfcode{#3}}] \index{#3@{\py at idxcode{#3}} (#1 member)} } \newenvironment{cmemberdesc}[3]{ \begin{fulllineitems} \cmemberline{#1}{#2}{#3} }{\end{fulllineitems}} % Funky macros ----------------------------------------------------------- % \begin{csimplemacrodesc}{name} % -- "simple" because it has no args; NOT for constant definitions! \newenvironment{csimplemacrodesc}[1]{ \begin{fulllineitems} \item[\bfcode{#1}\index{#1@{\py at idxcode{#1}} (macro)}] }{\end{fulllineitems}} % simple functions (not methods) ----------------------------------------- % \begin{funcdesc}{name}{args} \newcommand{\funcline}[2]{% \funclineni{#1}{#2}% \index{#1@{\py at idxcode{#1()}} (in module \py at thismodule)}} \newenvironment{funcdesc}[2]{ \begin{fulllineitems} \funcline{#1}{#2} }{\end{fulllineitems}} % similar to {funcdesc}, but doesn't add to the index \newcommand{\funclineni}[2]{% \py at sigline{\bfcode{#1}}{#2}} \newenvironment{funcdescni}[2]{ \begin{fulllineitems} \funclineni{#1}{#2} }{\end{fulllineitems}} % classes ---------------------------------------------------------------- % \begin{classdesc}{name}{constructor args} \newenvironment{classdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{class }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)} }{\end{fulllineitems}} % \begin{classdesc*}{name} \newenvironment{classdesc*}[1]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \item[\strong{class }\code{\bfcode{#1}}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)}] }{\end{fulllineitems}} % \begin{excclassdesc}{name}{constructor args} % but indexes as an exception \newenvironment{excclassdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{exception }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)} }{\end{fulllineitems}} % There is no corresponding {excclassdesc*} environment. To describe % a class exception without parameters, use the {excdesc} environment. \let\py at classbadkey=\@undefined % object method ---------------------------------------------------------- % \begin{methoddesc}[classname]{methodname}{args} \newcommand{\methodline}[3][\@undefined]{ \methodlineni{#2}{#3} \ifx\@undefined#1\relax \index{#2@{\py at idxcode{#2()}} (\py at thisclass\ method)} \else \index{#2@{\py at idxcode{#2()}} (#1 method)} \fi } \newenvironment{methoddesc}[3][\@undefined]{ \begin{fulllineitems} \ifx\@undefined#1\relax \methodline{#2}{#3} \else \def\py at thisclass{#1} \methodline{#2}{#3} \fi }{\end{fulllineitems}} % similar to {methoddesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\methodlineni}[3][\py at classbadkey]{% \py at sigline{\bfcode{#2}}{#3}} \newenvironment{methoddescni}[3][\py at classbadkey]{ \begin{fulllineitems} \methodlineni{#2}{#3} }{\end{fulllineitems}} % object data attribute -------------------------------------------------- % \begin{memberdesc}[classname]{membername} \newcommand{\memberline}[2][\py at classbadkey]{% \ifx\@undefined#1\relax \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (\py at thisclass\ attribute)} \else \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (#1 attribute)} \fi } \newenvironment{memberdesc}[2][\py at classbadkey]{ \begin{fulllineitems} \ifx\@undefined#1\relax \memberline{#2} \else \def\py at thisclass{#1} \memberline{#2} \fi }{\end{fulllineitems}} % similar to {memberdesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\memberlineni}[2][\py at classbadkey]{\item[\bfcode{#2}]} \newenvironment{memberdescni}[2][\py at classbadkey]{ \begin{fulllineitems} \memberlineni{#2} }{\end{fulllineitems}} % For exceptions: -------------------------------------------------------- % \begin{excdesc}{name} % -- for constructor information, use excclassdesc instead \newenvironment{excdesc}[1]{ \begin{fulllineitems} \item[\strong{exception }\bfcode{#1}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)}] }{\end{fulllineitems}} % Module data or constants: ---------------------------------------------- % \begin{datadesc}{name} \newcommand{\dataline}[1]{% \datalineni{#1}\index{#1@{\py at idxcode{#1}} (data in \py at thismodule)}} \newenvironment{datadesc}[1]{ \begin{fulllineitems} \dataline{#1} }{\end{fulllineitems}} % similar to {datadesc}, but doesn't add to the index \newcommand{\datalineni}[1]{\item[\bfcode{#1}]\nopagebreak} \newenvironment{datadescni}[1]{ \begin{fulllineitems} \datalineni{#1} }{\end{fulllineitems}} % bytecode instruction --------------------------------------------------- % \begin{opcodedesc}{name}{var} % -- {var} may be {} \newenvironment{opcodedesc}[2]{ \begin{fulllineitems} \item[\bfcode{#1}\quad\var{#2}] }{\end{fulllineitems}} \newcommand{\nodename}[1]{\label{#1}} % For these commands, use \command{} to get the typography right, not % {\command}. This works better with the texinfo translation. \newcommand{\ABC}{{\sc abc}} \newcommand{\UNIX}{{\sc Unix}} \newcommand{\POSIX}{POSIX} \newcommand{\ASCII}{{\sc ascii}} \newcommand{\Cpp}{C\protect\raisebox{.18ex}{++}} \newcommand{\C}{C} \newcommand{\EOF}{{\sc eof}} \newcommand{\NULL}{\constant{NULL}} \newcommand{\infinity}{\ensuremath{\infty}} \newcommand{\plusminus}{\ensuremath{\pm}} % \guilabel{Start} \newcommand{\guilabel}[1]{\textsf{#1}} % \menuselection{Start \sub Programs \sub Python} \newcommand{\menuselection}[1]{\guilabel{{\def\sub{ \ensuremath{>} }#1}}} % Also for consistency: spell Python "Python", not "python"! % code is the most difficult one... \newcommand{\code}[1]{\textrm{\@vobeyspaces\@noligs\def\{{\char`\{}\def\}{\char`\}}\def\~{\char`\~}\def\^{\char`\^}\def\e{\char`\\}\def\${\char`\$}\def\#{\char`\#}\def\&{\char`\&}\def\%{\char`\%}% \texttt{#1}}} \newcommand{\bfcode}[1]{\code{\bfseries#1}} % bold-faced code font \newcommand{\csimplemacro}[1]{\code{#1}} \newcommand{\kbd}[1]{\code{#1}} \newcommand{\samp}[1]{`\code{#1}'} \newcommand{\var}[1]{% \ifmmode% \hbox{\py at defaultsize\textrm{\textit{#1\/}}}% \else% \py at defaultsize\textrm{\textit{#1\/}}% \fi% } \renewcommand{\emph}[1]{{\em #1}} \newcommand{\dfn}[1]{\emph{#1}} \newcommand{\strong}[1]{{\bf #1}} % let's experiment with a new font: \newcommand{\file}[1]{`\filenq{#1}'} \newcommand{\filenq}[1]{{\py at smallsize\textsf{\let\e=\textbackslash#1}}} % Use this def/redef approach for \url{} since hyperref defined this already, % but only if we actually used hyperref: \ifpdf \newcommand{\url}[1]{{% \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#1)% >>% }% \py at LinkColor% color of the link text \py at smallsize\sf #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\url}[1]{\mbox{\py at smallsize\textsf{#1}}} \fi \newcommand{\email}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\newsgroup}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\py at varvars}[1]{{% {\let\unspecified=\py at unspecified% \let\moreargs=\py at moreargs% \var{#1}}}} % I'd really like to get rid of this! \newif\iftexi\texifalse % This is used to get l2h to put the copyright and abstract on % a separate HTML page. \newif\ifhtml\htmlfalse % These should be used for all references to identifiers which are % used to refer to instances of specific language constructs. See the % names for specific semantic assignments. % % For now, don't do anything really fancy with them; just use them as % logical markup. This might change in the future. % \newcommand{\module}[1]{\texttt{#1}} \newcommand{\keyword}[1]{\texttt{#1}} \newcommand{\exception}[1]{\texttt{#1}} \newcommand{\class}[1]{\texttt{#1}} \newcommand{\function}[1]{\texttt{#1}} \newcommand{\member}[1]{\texttt{#1}} \newcommand{\method}[1]{\texttt{#1}} \newcommand{\pytype}[1]{#1} % built-in Python type \newcommand{\cfunction}[1]{\texttt{#1}} \newcommand{\ctype}[1]{\texttt{#1}} % C struct or typedef name \newcommand{\cdata}[1]{\texttt{#1}} % C variable, typically global \newcommand{\mailheader}[1]{{\py at smallsize\textsf{#1:}}} \newcommand{\mimetype}[1]{{\py at smallsize\textsf{#1}}} % The \! is a "negative thin space" in math mode. \newcommand{\regexp}[1]{% {\tiny$^{^\lceil}\!\!$% {\py at defaultsize\code{#1}}% $\!\rfloor\!$% }} \newcommand{\envvar}[1]{% #1% \index{#1}% \index{environment variables!{#1}}% } \newcommand{\makevar}[1]{#1} % variable in a Makefile \newcommand{\character}[1]{\samp{#1}} % constants defined in Python modules or C headers, not language constants: \newcommand{\constant}[1]{\code{#1}} % manifest constant, not syntactic \newcommand{\manpage}[2]{{\emph{#1}(#2)}} \newcommand{\pep}[1]{PEP #1\index{Python Enhancement Proposals!PEP #1}} \newcommand{\rfc}[1]{RFC #1\index{RFC!RFC #1}} \newcommand{\program}[1]{\strong{#1}} \newcommand{\programopt}[1]{\strong{#1}} % Note that \longprogramopt provides the '--'! \newcommand{\longprogramopt}[1]{\strong{-{}-#1}} % \ulink{link text}{URL} \ifpdf \newcommand{\ulink}[2]{{% % For PDF, we *should* only generate a link when the URL is absolute. \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#2)% >>% }% \py at LinkColor% color of the link text #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\ulink}[2]{#1} \fi % cited titles: \citetitle{Title of Work} % online: \citetitle[url-to-resource]{Title of Work} \ifpdf \newcommand{\citetitle}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\emph{#2}\else\ulink{\emph{#2}}{#1}\fi% } \else \newcommand{\citetitle}[2][URL]{\emph{#2}} \fi % This version is being checked in for the historical record; it shows % how I've managed to get some aspects of this to work. It will not % be used in practice, so a subsequent revision will change things % again. This version has problems, but shows how to do something % that proved more tedious than I'd expected, so I don't want to lose % the example completely. % \newcommand{\grammartoken}[1]{\texttt{#1}} \newenvironment{productionlist}[1][\py at badkey]{ \def\optional##1{{\Large[}##1{\Large]}} \def\production##1##2{\code{##1}&::=&\code{##2}\\} \def\productioncont##1{& &\code{##1}\\} \def\token##1{##1} \let\grammartoken=\token \parindent=2em \indent \begin{tabular}{lcl} }{% \end{tabular} } \newlength{\py at noticelength} \newcommand{\py at heavybox}{ \setlength{\fboxrule}{2pt} \setlength{\fboxsep}{7pt} \setlength{\py at noticelength}{\linewidth} \addtolength{\py at noticelength}{-2\fboxsep} \addtolength{\py at noticelength}{-2\fboxrule} \setlength{\shadowsize}{3pt} \Sbox \minipage{\py at noticelength} } \newcommand{\py at endheavybox}{ \endminipage \endSbox \fbox{\TheSbox} } % a 'note' is as plain as it gets: \newcommand{\py at noticelabel@note}{Note:} \newcommand{\py at noticestart@note}{} \newcommand{\py at noticeend@note}{} % a 'warning' gets more visible distinction: \newcommand{\py at noticelabel@warning}{Warning:} \newcommand{\py at noticestart@warning}{\py at heavybox} \newcommand{\py at noticeend@warning}{\py at endheavybox} \newenvironment{notice}[1][note]{ \def\py at noticetype{#1} \csname py at noticestart@#1\endcsname \par\strong{\csname py at noticelabel@#1\endcsname} }{\csname py at noticeend@\py at noticetype\endcsname} \newcommand{\note}[1]{\strong{\py at noticelabel@note} #1} \newcommand{\warning}[1]{\strong{\py at noticelabel@warning} #1} % Deprecation stuff. % Should be extended to allow an index / list of deprecated stuff. But % there's a lot of stuff that needs to be done to make that automatable. % % First parameter is the release number that deprecates the feature, the % second is the action the should be taken by users of the feature. % % Example: % \deprecated{1.5.1}{Use \method{frobnicate()} instead.} % \newcommand{\deprecated}[2]{% \strong{Deprecated since release #1.} #2\par} % New stuff. % This should be used to mark things which have been added to the % development tree but that aren't in the release, but are documented. % This allows release of documentation that already includes updated % descriptions. Place at end of descriptor environment. % % Example: % \versionadded{1.5.2} % \versionchanged[short explanation]{2.0} % \newcommand{\versionadded}[2][\py at badkey]{% \ifx\@undefined#1\relax% { New in version #2. }% \else% { New in version #2:\ #1. }% \fi% } \newcommand{\versionchanged}[2][\py at badkey]{% \ifx\@undefined#1\relax% { Changed in version #2. }% \else% { Changed in version #2:\ #1. }% \fi% } % Tables. % \newenvironment{tableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4} \\* \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4} \\* \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } % XXX Don't think we can use this yet, though it cleans up some % tedious markup. There's no equivalent for the HTML transform yet, % and that needs to exist. I don't know how to write it. % % This should really have something that makes it easier to bind a % table's ``Notes'' column and an associated tablenotes environment, % and generates the right magic for getting the numbers right in the % table. % % So this is quite incomplete. % \newcounter{py at tablenotescounter} \newenvironment{tablenotes}{% \noindent Notes: \par \setcounter{py at tablenotescounter}{0} \begin{list}{(\arabic{py at tablenotescounter})}% {\usecounter{py at tablenotescounter}} }{\end{list}} % Cross-referencing (AMK, new impl. FLD) % Sample usage: % \begin{seealso} % \seemodule{rand}{Uniform random number generator.}; % Module xref % \seetext{\emph{Encyclopedia Britannica}}. % Ref to a book % % % A funky case: module name contains '_'; have to supply an optional key % \seemodule[copyreg]{copy_reg}{Interface constructor registration for % \module{pickle}.} % \end{seealso} % % Note that the last parameter for \seemodule and \seetext should be complete % sentences and be terminated with the proper punctuation. \ifpdf \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[\py at linkToName{label-module-\py at modulekey}{Module \module{#2}} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \else \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[Module \module{#2} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \fi % \seelink{url}{link text}{why it's interesting} \newcommand{\py at seelink}[3]{% \par \begin{fulllineitems} \item[\ulink{#2}{#1}] #3 \end{fulllineitems} } % \seetitle[url]{title}{why it's interesting} \newcommand{\py at seetitle}[3][\py at modulebadkey]{% \par \begin{fulllineitems} \item[\citetitle{#2}] \ifx\py at modulebadkey#1\else \item[{\small{(\url{#1})}}] \fi #3 \end{fulllineitems} } % \seepep{number}{title}{why it's interesting} \newcommand{\py at seepep}[3]{% \par% \begin{fulllineitems} \item[\pep{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seerfc{number}{title}{why it's interesting} \newcommand{\py at seerfc}[3]{% \par% \begin{fulllineitems} \item[\rfc{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seeurl{url}{why it's interesting} \newcommand{\py at seeurl}[2]{% \par% \begin{fulllineitems} \item[\url{#1}] #2 \end{fulllineitems} } \newenvironment{seealso*}{ \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} \newenvironment{seealso}{ \par \strong{See Also:} \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} % Allow the Python release number to be specified independently of the % \date{}. This allows the date to reflect the document's date and % release to specify the Python release that is documented. % \newcommand{\py at release}{} \newcommand{\version}{} \newcommand{\shortversion}{} \newcommand{\releaseinfo}{} \newcommand{\releasename}{Release} \newcommand{\release}[1]{% \renewcommand{\py at release}{\releasename\space\version}% \renewcommand{\version}{#1}} \newcommand{\setshortversion}[1]{% \renewcommand{\shortversion}{#1}} \newcommand{\setreleaseinfo}[1]{% \renewcommand{\releaseinfo}{#1}} % Allow specification of the author's address separately from the % author's name. This can be used to format them differently, which % is a good thing. % \newcommand{\py at authoraddress}{} \newcommand{\authoraddress}[1]{\renewcommand{\py at authoraddress}{#1}} \let\developersaddress=\authoraddress \let\developer=\author \let\developers=\author % This sets up the fancy chapter headings that make the documents look % at least a little better than the usual LaTeX output. % \@ifundefined{ChTitleVar}{}{ \ChNameVar{\raggedleft\normalsize\py at HeaderFamily} \ChNumVar{\raggedleft \bfseries\Large\py at HeaderFamily} \ChTitleVar{\raggedleft \rm\Huge\py at HeaderFamily} % This creates chapter heads without the leading \vspace*{}: \def\@makechapterhead#1{% {\parindent \z@ \raggedright \normalfont \ifnum \c at secnumdepth >\m at ne \DOCH \fi \interlinepenalty\@M \DOTI{#1} } } } % Definition lists; requested by AMK for HOWTO documents. Probably useful % elsewhere as well, so keep in in the general style support. % \newenvironment{definitions}{% \begin{description}% \def\term##1{\item[##1]\mbox{}\\*[0mm]} }{% \end{description}% } % Tell TeX about pathological hyphenation cases: \hyphenation{Base-HTTP-Re-quest-Hand-ler} Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 18:33:25 -0000 1.1 +++ .cvsignore 8 Jul 2009 19:34:41 -0000 1.2 @@ -0,0 +1 @@ +python-sybase-0.39.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 18:33:25 -0000 1.1 +++ sources 8 Jul 2009 19:34:42 -0000 1.2 @@ -0,0 +1 @@ +0b934824ebc77a4a2087352576b1a2e6 python-sybase-0.39.tar.gz From awjb at fedoraproject.org Wed Jul 8 19:36:42 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Wed, 8 Jul 2009 19:36:42 +0000 (UTC) Subject: rpms/fluxbox/devel fluxbox.spec,1.32,1.33 Message-ID: <20090708193642.20C7011C0097@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/fluxbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10892 Modified Files: fluxbox.spec Log Message: - make -pulseaudio noarch Index: fluxbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluxbox/devel/fluxbox.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- fluxbox.spec 24 Feb 2009 17:41:01 -0000 1.32 +++ fluxbox.spec 8 Jul 2009 19:36:41 -0000 1.33 @@ -1,6 +1,6 @@ Name: fluxbox Version: 1.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Window Manager based on Blackbox @@ -46,6 +46,9 @@ Summary: Enable pulseaudio suppor Requires: %{name} = %{version}-%{release} Requires: alsa-plugins-pulseaudio Requires: pulseaudio pulseaudio-module-x11 pulseaudio-utils +%if 0%{?fedora} > 9 || 0%{?rhel} > 5 +BuildArch: noarch +%endif %description pulseaudio Enable pulseaudio support. @@ -99,6 +102,10 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/fluxbox-pulseaudio %changelog +* Wed Jul 08 2009 Andreas Bierfert +- 1.1.1-3 +- make -pulseaudio package noarch + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From yaneti at fedoraproject.org Wed Jul 8 19:36:50 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Wed, 8 Jul 2009 19:36:50 +0000 (UTC) Subject: rpms/python-sybase/F-10 howto.cls, NONE, 1.1 import.log, NONE, 1.1 pypaper.sty, NONE, 1.1 python-sybase-0.39-bug2615821.patch, NONE, 1.1 python-sybase.spec, NONE, 1.1 python.sty, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708193650.1929811C0097@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/python-sybase/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10814/F-10 Modified Files: .cvsignore sources Added Files: howto.cls import.log pypaper.sty python-sybase-0.39-bug2615821.patch python-sybase.spec python.sty Log Message: Initial import on branch F-10 --- NEW FILE howto.cls --- % % howto.cls for the Python documentation % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesClass{howto} [1998/02/25 Document class (Python HOWTO)] \RequirePackage{pypaper} \RequirePackage{fancybox} % Change the options here to get a different set of basic options, This % is where to add things like "a4paper" or "10pt". % \LoadClass[\py at paper,\py at ptsize,twoside]{article} \setcounter{secnumdepth}{1} % Optional packages: % % If processing of these documents fails at your TeX installation, % these may be commented out (independently) to make things work. % These are both supplied with the current version of the teTeX % distribution. % % The "fancyhdr" package makes nicer page footers reasonable to % implement, and is used to put the chapter and section information in % the footers. % \RequirePackage{fancyhdr}\typeout{Using fancier footers than usual.} % Required package: % % This gives us all the Python-specific markup that we really want. % This should come last. Do not change this. % \RequirePackage{python} % support for module synopsis sections: \newcommand{\py at ModSynopsisFilename}{\jobname.syn} % need to do one of these.... \newcommand{\py at doHorizontalRule}{\rule{\textwidth}{1pt}} % Change the title page to look a bit better, and fit in with the % fncychap ``Bjarne'' style a bit better. % \renewcommand{\maketitle}{ \py at doHorizontalRule \ifpdf \begingroup % This \def is required to deal with multi-line authors; it % changes \\ to ', ' (comma-space), making it pass muster for % generating document info in the PDF file. \def\\{, } \pdfinfo{ /Author (\@author) /Title (\@title) } \endgroup \fi \begin{flushright} {\rm\Huge\py at HeaderFamily \@title} \par {\em\large\py at HeaderFamily \py at release\releaseinfo} \par \vspace{25pt} {\Large\py at HeaderFamily \@author} \par \vspace{25pt} \@date \par \py at authoraddress \par \end{flushright} \@thanks \setcounter{footnote}{0} \let\thanks\relax\let\maketitle\relax \gdef\@thanks{}\gdef\@author{}\gdef\@title{} } \let\py at OldTableofcontents=\tableofcontents \renewcommand{\tableofcontents}{ \begingroup \parskip = 0mm \py at OldTableofcontents \endgroup \py at doHorizontalRule \vspace{12pt} \py at doing@page at targetstrue } % Fix the theindex environment to add an entry to the Table of % Contents; this is much nicer than just having to jump to the end of % the book and flip around, especially with multiple indexes. % \let\py at OldTheindex=\theindex \renewcommand{\theindex}{ \clearpage \py at OldTheindex \addcontentsline{toc}{section}{\indexname} } \@ifundefined{fancyhf}{ \pagestyle{plain}}{ \pagestyle{normal}} % start this way; change for \pagenumbering{arabic} % ToC & chapters \setcounter{secnumdepth}{2} \thispagestyle{empty} --- NEW FILE import.log --- python-sybase-0_39-3_fc12:F-10:python-sybase-0.39-3.fc12.src.rpm:1247081749 --- NEW FILE pypaper.sty --- % % Change this to say a4paper instead of letterpaper if you want A4. These % are the latex defaults. % \newcommand{\py at paper}{letterpaper} \newcommand{\py at ptsize}{10pt} % These set up the fonts for the documents. % % The "times" package makes the default font the PostScript Times % font, which makes for smaller PostScript and a font that more people % like. % % The "avant" package causes the AvantGarde font to be used for % sans-serif text, instead of the uglier Helvetica set up by the "times" % package. % \RequirePackage{times}\typeout{Using Times instead of Computer Modern.} python-sybase-0.39-bug2615821.patch: --- NEW FILE python-sybase-0.39-bug2615821.patch --- 2009-06-04 S??bastien Sabl?? * datafmt.c (money_datafmt): Corrected money type when using CS_MONEY4 (close bug 2615821) Index: datafmt.c =================================================================== --- datafmt.c (revision 445) +++ datafmt.c (revision 446) @@ -11,7 +11,7 @@ void money_datafmt(CS_DATAFMT *fmt, int type) { memset(fmt, 0, sizeof(*fmt)); - fmt->datatype = CS_MONEY_TYPE; + fmt->datatype = type; if (type == CS_MONEY_TYPE) fmt->maxlength = sizeof(CS_MONEY); else --- NEW FILE python-sybase.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-sybase Version: 0.39 Release: 3%{?dist} Summary: Python interface to Sybase Group: Development/Languages License: BSD URL: http://python-sybase.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz # for building the doc Source1: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/howto.cls Source2: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/pypaper.sty Source3: http://svn.python.org/projects/python/branches/release25-maint/Doc/texinputs/python.sty # bugfix from upstream svn r446 Patch1: python-sybase-0.39-bug2615821.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-setuptools-devel BuildRequires: freetds-devel # for building the doc BuildRequires: texlive-latex %description python-sybase is a DB-API 2.0 compliant Python interface to the Sybase Relational Database. %prep %setup -q %patch1 -p0 -b .bug2615821 cp -av %{SOURCE1} %{SOURCE2} %{SOURCE3} doc/ %build export SYBASE="%{_prefix}" # the uptrame build setup fails to mention -lct on x86_64, so just use explicitly # reported upstream artefact 2812108 # https://sourceforge.net/tracker/?func=detail&aid=2812108&group_id=184050&atid=907701 CFLAGS="-DHAVE_FREETDS -DWANT_THREADS" LDFLAGS="-lct" %{__python} setup.py build cd doc ; makeindex sybase.tex ; pdflatex sybase #check # not running tests yet because none would actually work, # due to db server requirement or simply being buggy # https://sourceforge.net/tracker/?func=detail&aid=2815670&group_id=184050&atid=907701 %install rm -rf $RPM_BUILD_ROOT export SYBASE="%{_prefix}" %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT # force the mode until someone figures out why this sometimes ends up with 775 perms find $RPM_BUILD_ROOT -name sybasect.so -exec chmod 0755 {} \; mv doc/sybase.pdf doc/python-sybase.pdf %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENCE ChangeLog doc/python-sybase.pdf examples %{python_sitearch}/* %changelog * Wed Jul 8 2009 Yanko Kaneti - 0.39-3 - Build with -DWANT_THREADS * Mon Jul 6 2009 Yanko Kaneti - 0.39-2 - Try harder to build human readable documentation - Move the sybasect.so chmod after the install phase * Thu Jun 25 2009 Yanko Kaneti - 0.39-1 - Start over reworking Andy Theuninck's submission in bug 459675 --- NEW FILE python.sty --- % % python.sty for the Python docummentation [works only with Latex2e] % \NeedsTeXFormat{LaTeX2e}[1995/12/01] \ProvidesPackage{python} [1998/01/11 LaTeX package (Python markup)] \RequirePackage{longtable} \RequirePackage{underscore} % Uncomment these two lines to ignore the paper size and make the page % size more like a typical published manual. %\renewcommand{\paperheight}{9in} %\renewcommand{\paperwidth}{8.5in} % typical squarish manual %\renewcommand{\paperwidth}{7in} % O'Reilly ``Programmming Python'' % These packages can be used to add marginal annotations which indicate % index entries and labels; useful for reviewing this messy documentation! % %\RequirePackage{showkeys} %\RequirePackage{showidx} % If we ever want to indent paragraphs, this needs to be changed. % This is used inside the macros defined here instead of coding % \noindent directly. \let\py at parindent=\noindent % for PDF output, use maximal compression & a lot of other stuff % (test for PDF recommended by Tanmoy Bhattacharya ) % \newif\ifpy at doing@page at targets \py at doing@page at targetsfalse \newif\ifpdf\pdffalse \ifx\pdfoutput\undefined\else\ifcase\pdfoutput \else \pdftrue \input{pdfcolor} \let\py at LinkColor=\NavyBlue \let\py at NormalColor=\Black \pdfcompresslevel=9 \pdfpagewidth=\paperwidth % page width of PDF output \pdfpageheight=\paperheight % page height of PDF output % % Pad the number with '0' to 3 digits wide so no page name is a prefix % of any other. % \newcommand{\py at targetno}[1]{\ifnum#1<100 0\fi\ifnum#1<10 0\fi#1} \newcommand{\py at pageno}{\py at targetno\thepage} % % This definition allows the entries in the page-view of the ToC to be % active links. Some work, some don't. % \let\py at OldContentsline=\contentsline % % Backward compatibility hack: pdfTeX 0.13 defined \pdfannotlink, % but it changed to \pdfstartlink in 0.14. This let's us use either % version and still get useful behavior. % \@ifundefined{pdfstartlink}{ \let\pdfstartlink=\pdfannotlink }{} % % The \py at parindent here is a hack -- we're forcing pdfTeX into % horizontal mode since \pdfstartlink requires that. \def\py at pdfstartlink{% \ifvmode\py at parindent\fi% \pdfstartlink% } % % Macro that takes two args: the name to link to and the content of % the link. This takes care of the PDF magic, getting the colors % the same for each link, and avoids having lots of garbage all over % this style file. \newcommand{\py at linkToName}[2]{% \py at pdfstartlink attr{/Border [0 0 0]} goto name{#1}% \py at LinkColor#2\py at NormalColor% \pdfendlink% } % Compute the padded page number separately since we end up with a pair of % \relax tokens; this gets the right string computed and works. \renewcommand{\contentsline}[3]{% \def\my at pageno{\py at targetno{#3}}% \py at OldContentsline{#1}{\py at linkToName{page\my at pageno}{#2}}{#3}% } \AtEndDocument{ \def\_{\string_} \InputIfFileExists{\jobname.bkm}{\pdfcatalog{/PageMode /UseOutlines}}{} } \newcommand{\py at target}[1]{% \ifpy at doing@page at targets% {\pdfdest name{#1} xyz}% \fi% } \let\py at OldLabel=\label \renewcommand{\label}[1]{% \py at OldLabel{#1}% \py at target{label-#1}% } % This stuff adds a page# destination to every PDF page, where # is three % digits wide, padded with leading zeros. This doesn't really help with % the frontmatter, but does fine with the body. % % This is *heavily* based on the hyperref package. % \def\@begindvi{% \unvbox \@begindvibox \@hyperfixhead } \def\@hyperfixhead{% \let\H at old@thehead\@thehead \global\def\@foo{\py at target{page\py at pageno}}% \expandafter\ifx\expandafter\@empty\H at old@thehead \def\H at old@thehead{\hfil}\fi \def\@thehead{\@foo\relax\H at old@thehead}% } \fi\fi % Increase printable page size (copied from fullpage.sty) \topmargin 0pt \advance \topmargin by -\headheight \advance \topmargin by -\headsep % attempt to work a little better for A4 users \textheight \paperheight \advance\textheight by -2in \oddsidemargin 0pt \evensidemargin 0pt %\evensidemargin -.25in % for ``manual size'' documents \marginparwidth 0.5in \textwidth \paperwidth \advance\textwidth by -2in % Style parameters and macros used by most documents here \raggedbottom \sloppy \parindent = 0mm \parskip = 2mm \hbadness = 5000 % don't print trivial gripes \pagestyle{empty} % start this way; change for \pagenumbering{roman} % ToC & chapters % Use this to set the font family for headers and other decor: \newcommand{\py at HeaderFamily}{\sffamily} % Set up abstract ways to get the normal and smaller font sizes that % work even in footnote context. \newif\ifpy at infootnote \py at infootnotefalse \let\py at oldmakefntext\@makefntext \def\@makefntext#1{% \bgroup% \py at infootnotetrue \py at oldmakefntext{#1}% \egroup% } \def\py at defaultsize{% \ifpy at infootnote\footnotesize\else\normalsize\fi% } \def\py at smallsize{% \ifpy at infootnote\scriptsize\else\small\fi% } % Redefine the 'normal' header/footer style when using "fancyhdr" package: \@ifundefined{fancyhf}{}{ % Use \pagestyle{normal} as the primary pagestyle for text. \fancypagestyle{normal}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \fancyfoot[LO]{{\py at HeaderFamily\nouppercase{\rightmark}}} \fancyfoot[RE]{{\py at HeaderFamily\nouppercase{\leftmark}}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Update the plain style so we get the page number & footer line, % but not a chapter or section title. This is to keep the first % page of a chapter and the blank page between chapters `clean.' \fancypagestyle{plain}{ \fancyhf{} \fancyfoot[LE,RO]{{\py at HeaderFamily\thepage}} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0.4pt} } % Redefine \cleardoublepage so that the blank page between chapters % gets the plain style and not the fancy style. This is described % in the documentation for the fancyhdr package by Piet von Oostrum. \@ifundefined{chapter}{}{ \renewcommand{\cleardoublepage}{ \clearpage\if at openright \ifodd\c at page\else \hbox{} \thispagestyle{plain} \newpage \if at twocolumn\hbox{}\newpage\fi\fi\fi } } } % This sets up the {verbatim} environment to be indented and a minipage, % and to have all the other mostly nice properties that we want for % code samples. \let\py at OldVerbatim=\verbatim \let\py at OldEndVerbatim=\endverbatim \RequirePackage{verbatim} \let\py at OldVerbatimInput=\verbatiminput % Variable used by begin code command \newlength{\py at codewidth} \renewcommand{\verbatim}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldVerbatim% } \renewcommand{\endverbatim}{% \py at OldEndVerbatim% \end{minipage}% } \renewcommand{\verbatiminput}[1]{% {\setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% % \small% \begin{list}{}{\setlength{\leftmargin}{1cm}} \item% \py at OldVerbatimInput{#1}% \end{list} }% } % This does a similar thing for the {alltt} environment: \RequirePackage{alltt} \let\py at OldAllTT=\alltt \let\py at OldEndAllTT=\endalltt \renewcommand{\alltt}{% \setlength{\parindent}{1cm}% % Calculate the text width for the minipage: \setlength{\py at codewidth}{\linewidth}% \addtolength{\py at codewidth}{-\parindent}% \let\e=\textbackslash% % \par\indent% \begin{minipage}[t]{\py at codewidth}% \small% \py at OldAllTT% } \renewcommand{\endalltt}{% \py at OldEndAllTT% \end{minipage}% } \newcommand{\py at modulebadkey}{{--just-some-junk--}} %% Lots of index-entry generation support. % Command to wrap around stuff that refers to function / module / % attribute names in the index. Default behavior: like \code{}. To % just keep the index entries in the roman font, uncomment the second % definition; it matches O'Reilly style more. % \newcommand{\py at idxcode}[1]{\texttt{#1}} %\renewcommand{\py at idxcode}[1]{#1} % Command to generate two index entries (using subentries) \newcommand{\indexii}[2]{\index{#1!#2}\index{#2!#1}} % And three entries (using only one level of subentries) \newcommand{\indexiii}[3]{\index{#1!#2 #3}\index{#2!#3, #1}\index{#3!#1 #2}} % And four (again, using only one level of subentries) \newcommand{\indexiv}[4]{ \index{#1!#2 #3 #4} \index{#2!#3 #4, #1} \index{#3!#4, #1 #2} \index{#4!#1 #2 #3} } % Command to generate a reference to a function, statement, keyword, % operator. \newcommand{\kwindex}[1]{\indexii{keyword}{#1@{\py at idxcode{#1}}}} \newcommand{\stindex}[1]{\indexii{statement}{#1@{\py at idxcode{#1}}}} \newcommand{\opindex}[1]{\indexii{operator}{#1@{\py at idxcode{#1}}}} \newcommand{\exindex}[1]{\indexii{exception}{#1@{\py at idxcode{#1}}}} \newcommand{\obindex}[1]{\indexii{object}{#1}} \newcommand{\bifuncindex}[1]{% \index{#1@{\py at idxcode{#1()}} (built-in function)}} % Add an index entry for a module \newcommand{\py at refmodule}[2]{\index{#1@{\py at idxcode{#1}} (#2module)}} \newcommand{\refmodindex}[1]{\py at refmodule{#1}{}} \newcommand{\refbimodindex}[1]{\py at refmodule{#1}{built-in }} \newcommand{\refexmodindex}[1]{\py at refmodule{#1}{extension }} \newcommand{\refstmodindex}[1]{\py at refmodule{#1}{standard }} % Refer to a module's documentation using a hyperlink of the module's % name, at least if we're building PDF: \ifpdf \newcommand{\refmodule}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \py at linkToName{label-module-\py at modulekey}{\module{#2}}% } \else \newcommand{\refmodule}[2][\py at modulebadkey]{\module{#2}} \fi % support for the module index \newif\ifpy at UseModuleIndex \py at UseModuleIndexfalse \newcommand{\makemodindex}{ \newwrite\modindexfile \openout\modindexfile=mod\jobname.idx \py at UseModuleIndextrue } % Add the defining entry for a module \newcommand{\py at modindex}[2]{% \renewcommand{\py at thismodule}{#1} \setindexsubitem{(in module #1)}% \index{#1@{\py at idxcode{#1}} (#2module)|textbf}% \ifpy at UseModuleIndex% \@ifundefined{py at modplat@\py at thismodulekey}{ \write\modindexfile{\protect\indexentry{#1@{\texttt{#1}}}{\thepage}}% }{\write\modindexfile{\protect\indexentry{#1@{\texttt{#1} % \emph{(\py at platformof[\py at thismodulekey]{})}}}{\thepage}}% } \fi% } % *** XXX *** THE NEXT FOUR MACROS ARE NOW OBSOLETE !!! *** % built-in & Python modules in the main distribution \newcommand{\bimodindex}[1]{\py at modindex{#1}{built-in }% \typeout{*** MACRO bimodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\stmodindex}[1]{\py at modindex{#1}{standard }% \typeout{*** MACRO stmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Python & extension modules outside the main distribution \newcommand{\modindex}[1]{\py at modindex{#1}{}% \typeout{*** MACRO modindex IS OBSOLETE -- USE declaremodule INSTEAD!}} \newcommand{\exmodindex}[1]{\py at modindex{#1}{extension }% \typeout{*** MACRO exmodindex IS OBSOLETE -- USE declaremodule INSTEAD!}} % Additional string for an index entry \newif\ifpy at usingsubitem\py at usingsubitemfalse \newcommand{\py at indexsubitem}{} \newcommand{\setindexsubitem}[1]{\renewcommand{\py at indexsubitem}{ #1}% \py at usingsubitemtrue} \newcommand{\ttindex}[1]{% \ifpy at usingsubitem \index{#1@{\py at idxcode{#1}}\py at indexsubitem}% \else% \index{#1@{\py at idxcode{#1}}}% \fi% } \newcommand{\withsubitem}[2]{% \begingroup% \def\ttindex##1{\index{##1@{\py at idxcode{##1}} #1}}% #2% \endgroup% } % Module synopsis processing ----------------------------------------------- % \newcommand{\py at thisclass}{} \newcommand{\py at thismodule}{} \newcommand{\py at thismodulekey}{} \newcommand{\py at thismoduletype}{} \newcommand{\py at standardIndexModule}[1]{\py at modindex{#1}{standard }} \newcommand{\py at builtinIndexModule}[1]{\py at modindex{#1}{built-in }} \newcommand{\py at extensionIndexModule}[1]{\py at modindex{#1}{extension }} \newcommand{\py at IndexModule}[1]{\py at modindex{#1}{}} \newif\ifpy at HaveModSynopsis \py at HaveModSynopsisfalse \newif\ifpy at ModSynopsisFileIsOpen \py at ModSynopsisFileIsOpenfalse \newif\ifpy at HaveModPlatform \py at HaveModPlatformfalse % \declaremodule[key]{type}{name} \newcommand{\declaremodule}[3][\py at modulebadkey]{ \py at openModSynopsisFile \renewcommand{\py at thismoduletype}{#2} \ifx\py at modulebadkey#1 \renewcommand{\py at thismodulekey}{#3} \else \renewcommand{\py at thismodulekey}{#1} \fi \@ifundefined{py@#2IndexModule}{% \typeout{*** MACRO declaremodule called with unknown module type: `#2'} \py at IndexModule{#3}% }{% \csname py@#2IndexModule\endcsname{#3}% } \label{module-\py at thismodulekey} } \newif\ifpy at ModPlatformFileIsOpen \py at ModPlatformFileIsOpenfalse \newcommand{\py at ModPlatformFilename}{\jobname.pla} \newcommand{\platform}[1]{ \ifpy at ModPlatformFileIsOpen\else \newwrite\py at ModPlatformFile \openout\py at ModPlatformFile=\py at ModPlatformFilename \py at ModPlatformFileIsOpentrue \fi } \InputIfFileExists{\jobname.pla}{}{} \newcommand{\py at platformof}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1 \def\py at key{#2}% \else \def\py at key{#1}% \fi% \csname py at modplat@\py at key\endcsname% } \newcommand{\ignorePlatformAnnotation}[1]{} % \moduleauthor{name}{email} \newcommand{\moduleauthor}[2]{} % \sectionauthor{name}{email} \newcommand{\sectionauthor}[2]{} \newcommand{\py at defsynopsis}{Module has no synopsis.} \newcommand{\py at modulesynopsis}{\py at defsynopsis} \newcommand{\modulesynopsis}[1]{ \py at HaveModSynopsistrue \renewcommand{\py at modulesynopsis}{#1} } % define the file \newwrite\py at ModSynopsisFile % hacked from \addtocontents from latex.ltx: \long\def\py at writeModSynopsisFile#1{% \protected at write\py at ModSynopsisFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\py at closeModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen \closeout\py at ModSynopsisFile \py at ModSynopsisFileIsOpenfalse \fi } \newcommand{\py at openModSynopsisFile}{ \ifpy at ModSynopsisFileIsOpen\else \openout\py at ModSynopsisFile=\py at ModSynopsisFilename \py at ModSynopsisFileIsOpentrue \fi } \newcommand{\py at ProcessModSynopsis}{ \ifpy at HaveModSynopsis \py at writeModSynopsisFile{\modulesynopsis% {\py at thismodulekey}{\py at thismodule}% {\py at thismoduletype}{\py at modulesynopsis}}% \py at HaveModSynopsisfalse \fi \renewcommand{\py at modulesynopsis}{\py at defsynopsis} } \AtEndDocument{\py at ProcessModSynopsis\py at closeModSynopsisFile} \long\def\py at writeModPlatformFile#1{% \protected at write\py at ModPlatformFile% {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}% {\string#1}% } \newcommand{\localmoduletable}{ \IfFileExists{\py at ModSynopsisFilename}{ \begin{synopsistable} \input{\py at ModSynopsisFilename} \end{synopsistable} }{} } \ifpdf \newcommand{\py at ModSynopsisSummary}[4]{% \py at linkToName{label-module-#1}{\bfcode{#2}} & #4\\ } \else \newcommand{\py at ModSynopsisSummary}[4]{\bfcode{#2} & #4\\} \fi \newenvironment{synopsistable}{ % key, name, type, synopsis \let\modulesynopsis=\py at ModSynopsisSummary \begin{tabular}{ll} }{ \end{tabular} } % % -------------------------------------------------------------------------- \newcommand{\py at reset}{ \py at usingsubitemfalse \py at ProcessModSynopsis \renewcommand{\py at thisclass}{} \renewcommand{\py at thismodule}{} \renewcommand{\py at thismodulekey}{} \renewcommand{\py at thismoduletype}{} } % Augment the sectioning commands used to get our own font family in place, % and reset some internal data items: \renewcommand{\section}{\py at reset% \@startsection{section}{1}{\z@}% {-3.5ex \@plus -1ex \@minus -.2ex}% {2.3ex \@plus.2ex}% {\reset at font\Large\py at HeaderFamily}} \renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\large\py at HeaderFamily}} \renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}% {-3.25ex\@plus -1ex \@minus -.2ex}% {1.5ex \@plus .2ex}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}% {3.25ex \@plus1ex \@minus.2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} \renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{\parindent}% {3.25ex \@plus1ex \@minus .2ex}% {-1em}% {\reset at font\normalsize\py at HeaderFamily}} % Now for a lot of semantically-loaded environments that do a ton of magical % things to get the right formatting and index entries for the stuff in % Python modules and C API. % {fulllineitems} is used in one place in libregex.tex, but is really for % internal use in this file. % \newcommand{\py at itemnewline}[1]{% \@tempdima\linewidth% \advance\@tempdima \leftmargin\makebox[\@tempdima][l]{#1}% } \newenvironment{fulllineitems}{ \begin{list}{}{\labelwidth \leftmargin \labelsep 0pt \rightmargin 0pt \topsep -\parskip \partopsep \parskip \itemsep -\parsep \let\makelabel=\py at itemnewline} }{\end{list}} % \optional is mostly for use in the arguments parameters to the various % {*desc} environments defined below, but may be used elsewhere. Known to % be used in the debugger chapter. % % Typical usage: % % \begin{funcdesc}{myfunc}{reqparm\optional{, optparm}} % ^^^ ^^^ % No space here No space here % % When a function has multiple optional parameters, \optional should be % nested, not chained. This is right: % % \begin{funcdesc}{myfunc}{\optional{parm1\optional{, parm2}}} % \let\py at badkey=\@undefined \newcommand{\optional}[1]{% {\textnormal{\Large[}}{#1}\hspace{0.5mm}{\textnormal{\Large]}}} % This can be used when a function or method accepts an varying number % of arguments, such as by using the *args syntax in the parameter list. \newcommand{\py at moreargs}{...} % This can be used when you don't want to document the parameters to a % function or method, but simply state that it's an alias for % something else. \newcommand{\py at unspecified}{...} \newlength{\py at argswidth} \newcommand{\py at sigparams}[1]{% \parbox[t]{\py at argswidth}{\py at varvars{#1}\code{)}}} \newcommand{\py at sigline}[2]{% \settowidth{\py at argswidth}{#1\code{(}}% \addtolength{\py at argswidth}{-2\py at argswidth}% \addtolength{\py at argswidth}{\textwidth}% \item[#1\code{(}\py at sigparams{#2}]} % C functions ------------------------------------------------------------ % \begin{cfuncdesc}[refcount]{type}{name}{arglist} % Note that the [refcount] slot should only be filled in by % tools/anno-api.py; it pulls the value from the refcounts database. \newcommand{\cfuncline}[3]{ \py at sigline{\code{#1 \bfcode{#2}}}{#3}% \index{#2@{\py at idxcode{#2()}}} } \newenvironment{cfuncdesc}[4][\py at badkey]{ \begin{fulllineitems} \cfuncline{#2}{#3}{#4} \ifx\@undefined#1\relax\else% \emph{Return value: \textbf{#1}.}\\ \fi }{\end{fulllineitems}} % C variables ------------------------------------------------------------ % \begin{cvardesc}{type}{name} \newenvironment{cvardesc}[2]{ \begin{fulllineitems} \item[\code{#1 \bfcode{#2}}\index{#2@{\py at idxcode{#2}}}] }{\end{fulllineitems}} % C data types ----------------------------------------------------------- % \begin{ctypedesc}[index name]{typedef name} \newenvironment{ctypedesc}[2][\py at badkey]{ \begin{fulllineitems} \item[\bfcode{#2}% \ifx\@undefined#1\relax% \index{#2@{\py at idxcode{#2}} (C type)} \else% \index{#2@{\py at idxcode{#1}} (C type)} \fi] }{\end{fulllineitems}} % C type fields ---------------------------------------------------------- % \begin{cmemberdesc}{container type}{ctype}{membername} \newcommand{\cmemberline}[3]{ \item[\code{#2 \bfcode{#3}}] \index{#3@{\py at idxcode{#3}} (#1 member)} } \newenvironment{cmemberdesc}[3]{ \begin{fulllineitems} \cmemberline{#1}{#2}{#3} }{\end{fulllineitems}} % Funky macros ----------------------------------------------------------- % \begin{csimplemacrodesc}{name} % -- "simple" because it has no args; NOT for constant definitions! \newenvironment{csimplemacrodesc}[1]{ \begin{fulllineitems} \item[\bfcode{#1}\index{#1@{\py at idxcode{#1}} (macro)}] }{\end{fulllineitems}} % simple functions (not methods) ----------------------------------------- % \begin{funcdesc}{name}{args} \newcommand{\funcline}[2]{% \funclineni{#1}{#2}% \index{#1@{\py at idxcode{#1()}} (in module \py at thismodule)}} \newenvironment{funcdesc}[2]{ \begin{fulllineitems} \funcline{#1}{#2} }{\end{fulllineitems}} % similar to {funcdesc}, but doesn't add to the index \newcommand{\funclineni}[2]{% \py at sigline{\bfcode{#1}}{#2}} \newenvironment{funcdescni}[2]{ \begin{fulllineitems} \funclineni{#1}{#2} }{\end{fulllineitems}} % classes ---------------------------------------------------------------- % \begin{classdesc}{name}{constructor args} \newenvironment{classdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{class }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)} }{\end{fulllineitems}} % \begin{classdesc*}{name} \newenvironment{classdesc*}[1]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \item[\strong{class }\code{\bfcode{#1}}% \index{#1@{\py at idxcode{#1}} (class in \py at thismodule)}] }{\end{fulllineitems}} % \begin{excclassdesc}{name}{constructor args} % but indexes as an exception \newenvironment{excclassdesc}[2]{ % Using \renewcommand doesn't work for this, for unknown reasons: \global\def\py at thisclass{#1} \begin{fulllineitems} \py at sigline{\strong{exception }\bfcode{#1}}{#2}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)} }{\end{fulllineitems}} % There is no corresponding {excclassdesc*} environment. To describe % a class exception without parameters, use the {excdesc} environment. \let\py at classbadkey=\@undefined % object method ---------------------------------------------------------- % \begin{methoddesc}[classname]{methodname}{args} \newcommand{\methodline}[3][\@undefined]{ \methodlineni{#2}{#3} \ifx\@undefined#1\relax \index{#2@{\py at idxcode{#2()}} (\py at thisclass\ method)} \else \index{#2@{\py at idxcode{#2()}} (#1 method)} \fi } \newenvironment{methoddesc}[3][\@undefined]{ \begin{fulllineitems} \ifx\@undefined#1\relax \methodline{#2}{#3} \else \def\py at thisclass{#1} \methodline{#2}{#3} \fi }{\end{fulllineitems}} % similar to {methoddesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\methodlineni}[3][\py at classbadkey]{% \py at sigline{\bfcode{#2}}{#3}} \newenvironment{methoddescni}[3][\py at classbadkey]{ \begin{fulllineitems} \methodlineni{#2}{#3} }{\end{fulllineitems}} % object data attribute -------------------------------------------------- % \begin{memberdesc}[classname]{membername} \newcommand{\memberline}[2][\py at classbadkey]{% \ifx\@undefined#1\relax \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (\py at thisclass\ attribute)} \else \memberlineni{#2} \index{#2@{\py at idxcode{#2}} (#1 attribute)} \fi } \newenvironment{memberdesc}[2][\py at classbadkey]{ \begin{fulllineitems} \ifx\@undefined#1\relax \memberline{#2} \else \def\py at thisclass{#1} \memberline{#2} \fi }{\end{fulllineitems}} % similar to {memberdesc}, but doesn't add to the index % (never actually uses the optional argument) \newcommand{\memberlineni}[2][\py at classbadkey]{\item[\bfcode{#2}]} \newenvironment{memberdescni}[2][\py at classbadkey]{ \begin{fulllineitems} \memberlineni{#2} }{\end{fulllineitems}} % For exceptions: -------------------------------------------------------- % \begin{excdesc}{name} % -- for constructor information, use excclassdesc instead \newenvironment{excdesc}[1]{ \begin{fulllineitems} \item[\strong{exception }\bfcode{#1}% \index{#1@{\py at idxcode{#1}} (exception in \py at thismodule)}] }{\end{fulllineitems}} % Module data or constants: ---------------------------------------------- % \begin{datadesc}{name} \newcommand{\dataline}[1]{% \datalineni{#1}\index{#1@{\py at idxcode{#1}} (data in \py at thismodule)}} \newenvironment{datadesc}[1]{ \begin{fulllineitems} \dataline{#1} }{\end{fulllineitems}} % similar to {datadesc}, but doesn't add to the index \newcommand{\datalineni}[1]{\item[\bfcode{#1}]\nopagebreak} \newenvironment{datadescni}[1]{ \begin{fulllineitems} \datalineni{#1} }{\end{fulllineitems}} % bytecode instruction --------------------------------------------------- % \begin{opcodedesc}{name}{var} % -- {var} may be {} \newenvironment{opcodedesc}[2]{ \begin{fulllineitems} \item[\bfcode{#1}\quad\var{#2}] }{\end{fulllineitems}} \newcommand{\nodename}[1]{\label{#1}} % For these commands, use \command{} to get the typography right, not % {\command}. This works better with the texinfo translation. \newcommand{\ABC}{{\sc abc}} \newcommand{\UNIX}{{\sc Unix}} \newcommand{\POSIX}{POSIX} \newcommand{\ASCII}{{\sc ascii}} \newcommand{\Cpp}{C\protect\raisebox{.18ex}{++}} \newcommand{\C}{C} \newcommand{\EOF}{{\sc eof}} \newcommand{\NULL}{\constant{NULL}} \newcommand{\infinity}{\ensuremath{\infty}} \newcommand{\plusminus}{\ensuremath{\pm}} % \guilabel{Start} \newcommand{\guilabel}[1]{\textsf{#1}} % \menuselection{Start \sub Programs \sub Python} \newcommand{\menuselection}[1]{\guilabel{{\def\sub{ \ensuremath{>} }#1}}} % Also for consistency: spell Python "Python", not "python"! % code is the most difficult one... \newcommand{\code}[1]{\textrm{\@vobeyspaces\@noligs\def\{{\char`\{}\def\}{\char`\}}\def\~{\char`\~}\def\^{\char`\^}\def\e{\char`\\}\def\${\char`\$}\def\#{\char`\#}\def\&{\char`\&}\def\%{\char`\%}% \texttt{#1}}} \newcommand{\bfcode}[1]{\code{\bfseries#1}} % bold-faced code font \newcommand{\csimplemacro}[1]{\code{#1}} \newcommand{\kbd}[1]{\code{#1}} \newcommand{\samp}[1]{`\code{#1}'} \newcommand{\var}[1]{% \ifmmode% \hbox{\py at defaultsize\textrm{\textit{#1\/}}}% \else% \py at defaultsize\textrm{\textit{#1\/}}% \fi% } \renewcommand{\emph}[1]{{\em #1}} \newcommand{\dfn}[1]{\emph{#1}} \newcommand{\strong}[1]{{\bf #1}} % let's experiment with a new font: \newcommand{\file}[1]{`\filenq{#1}'} \newcommand{\filenq}[1]{{\py at smallsize\textsf{\let\e=\textbackslash#1}}} % Use this def/redef approach for \url{} since hyperref defined this already, % but only if we actually used hyperref: \ifpdf \newcommand{\url}[1]{{% \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#1)% >>% }% \py at LinkColor% color of the link text \py at smallsize\sf #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\url}[1]{\mbox{\py at smallsize\textsf{#1}}} \fi \newcommand{\email}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\newsgroup}[1]{{\py at smallsize\textsf{#1}}} \newcommand{\py at varvars}[1]{{% {\let\unspecified=\py at unspecified% \let\moreargs=\py at moreargs% \var{#1}}}} % I'd really like to get rid of this! \newif\iftexi\texifalse % This is used to get l2h to put the copyright and abstract on % a separate HTML page. \newif\ifhtml\htmlfalse % These should be used for all references to identifiers which are % used to refer to instances of specific language constructs. See the % names for specific semantic assignments. % % For now, don't do anything really fancy with them; just use them as % logical markup. This might change in the future. % \newcommand{\module}[1]{\texttt{#1}} \newcommand{\keyword}[1]{\texttt{#1}} \newcommand{\exception}[1]{\texttt{#1}} \newcommand{\class}[1]{\texttt{#1}} \newcommand{\function}[1]{\texttt{#1}} \newcommand{\member}[1]{\texttt{#1}} \newcommand{\method}[1]{\texttt{#1}} \newcommand{\pytype}[1]{#1} % built-in Python type \newcommand{\cfunction}[1]{\texttt{#1}} \newcommand{\ctype}[1]{\texttt{#1}} % C struct or typedef name \newcommand{\cdata}[1]{\texttt{#1}} % C variable, typically global \newcommand{\mailheader}[1]{{\py at smallsize\textsf{#1:}}} \newcommand{\mimetype}[1]{{\py at smallsize\textsf{#1}}} % The \! is a "negative thin space" in math mode. \newcommand{\regexp}[1]{% {\tiny$^{^\lceil}\!\!$% {\py at defaultsize\code{#1}}% $\!\rfloor\!$% }} \newcommand{\envvar}[1]{% #1% \index{#1}% \index{environment variables!{#1}}% } \newcommand{\makevar}[1]{#1} % variable in a Makefile \newcommand{\character}[1]{\samp{#1}} % constants defined in Python modules or C headers, not language constants: \newcommand{\constant}[1]{\code{#1}} % manifest constant, not syntactic \newcommand{\manpage}[2]{{\emph{#1}(#2)}} \newcommand{\pep}[1]{PEP #1\index{Python Enhancement Proposals!PEP #1}} \newcommand{\rfc}[1]{RFC #1\index{RFC!RFC #1}} \newcommand{\program}[1]{\strong{#1}} \newcommand{\programopt}[1]{\strong{#1}} % Note that \longprogramopt provides the '--'! \newcommand{\longprogramopt}[1]{\strong{-{}-#1}} % \ulink{link text}{URL} \ifpdf \newcommand{\ulink}[2]{{% % For PDF, we *should* only generate a link when the URL is absolute. \py at pdfstartlink% attr{ /Border [0 0 0] }% user{% /Subtype/Link% /A<<% /Type/Action% /S/URI% /URI(#2)% >>% }% \py at LinkColor% color of the link text #1% \py at NormalColor% Turn it back off; these are declarative \pdfendlink}% and don't appear bound to the current }% formatting "box". \else \newcommand{\ulink}[2]{#1} \fi % cited titles: \citetitle{Title of Work} % online: \citetitle[url-to-resource]{Title of Work} \ifpdf \newcommand{\citetitle}[2][\py at modulebadkey]{% \ifx\py at modulebadkey#1\emph{#2}\else\ulink{\emph{#2}}{#1}\fi% } \else \newcommand{\citetitle}[2][URL]{\emph{#2}} \fi % This version is being checked in for the historical record; it shows % how I've managed to get some aspects of this to work. It will not % be used in practice, so a subsequent revision will change things % again. This version has problems, but shows how to do something % that proved more tedious than I'd expected, so I don't want to lose % the example completely. % \newcommand{\grammartoken}[1]{\texttt{#1}} \newenvironment{productionlist}[1][\py at badkey]{ \def\optional##1{{\Large[}##1{\Large]}} \def\production##1##2{\code{##1}&::=&\code{##2}\\} \def\productioncont##1{& &\code{##1}\\} \def\token##1{##1} \let\grammartoken=\token \parindent=2em \indent \begin{tabular}{lcl} }{% \end{tabular} } \newlength{\py at noticelength} \newcommand{\py at heavybox}{ \setlength{\fboxrule}{2pt} \setlength{\fboxsep}{7pt} \setlength{\py at noticelength}{\linewidth} \addtolength{\py at noticelength}{-2\fboxsep} \addtolength{\py at noticelength}{-2\fboxrule} \setlength{\shadowsize}{3pt} \Sbox \minipage{\py at noticelength} } \newcommand{\py at endheavybox}{ \endminipage \endSbox \fbox{\TheSbox} } % a 'note' is as plain as it gets: \newcommand{\py at noticelabel@note}{Note:} \newcommand{\py at noticestart@note}{} \newcommand{\py at noticeend@note}{} % a 'warning' gets more visible distinction: \newcommand{\py at noticelabel@warning}{Warning:} \newcommand{\py at noticestart@warning}{\py at heavybox} \newcommand{\py at noticeend@warning}{\py at endheavybox} \newenvironment{notice}[1][note]{ \def\py at noticetype{#1} \csname py at noticestart@#1\endcsname \par\strong{\csname py at noticelabel@#1\endcsname} }{\csname py at noticeend@\py at noticetype\endcsname} \newcommand{\note}[1]{\strong{\py at noticelabel@note} #1} \newcommand{\warning}[1]{\strong{\py at noticelabel@warning} #1} % Deprecation stuff. % Should be extended to allow an index / list of deprecated stuff. But % there's a lot of stuff that needs to be done to make that automatable. % % First parameter is the release number that deprecates the feature, the % second is the action the should be taken by users of the feature. % % Example: % \deprecated{1.5.1}{Use \method{frobnicate()} instead.} % \newcommand{\deprecated}[2]{% \strong{Deprecated since release #1.} #2\par} % New stuff. % This should be used to mark things which have been added to the % development tree but that aren't in the release, but are documented. % This allows release of documentation that already includes updated % descriptions. Place at end of descriptor environment. % % Example: % \versionadded{1.5.2} % \versionchanged[short explanation]{2.0} % \newcommand{\versionadded}[2][\py at badkey]{% \ifx\@undefined#1\relax% { New in version #2. }% \else% { New in version #2:\ #1. }% \fi% } \newcommand{\versionchanged}[2][\py at badkey]{% \ifx\@undefined#1\relax% { Changed in version #2. }% \else% { Changed in version #2:\ #1. }% \fi% } % Tables. % \newenvironment{tableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4} \\* \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableii}[4]{% \begin{center}% \def\lineii##1##2{\csname#2\endcsname{##1}&##2\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4} \\* \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiii}[5]{% \begin{center}% \def\lineiii##1##2##3{\csname#2\endcsname{##1}&##2&##3\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5} \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtableiv}[6]{% \begin{center}% \def\lineiv##1##2##3##4{\csname#2\endcsname{##1}&##2&##3&##4\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } \newenvironment{tablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{tabular}{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7} \\% \hline% }{% \end{tabular}% \end{center}% } \newenvironment{longtablev}[7]{% \begin{center}% \def\linev##1##2##3##4##5{\csname#2\endcsname{##1}&##2&##3&##4&##5\\}% \begin{longtable}[c]{#1}\strong{#3}&\strong{#4}&\strong{#5}&\strong{#6}&\strong{#7}% \\% \hline\endhead% }{% \end{longtable}% \end{center}% } % XXX Don't think we can use this yet, though it cleans up some % tedious markup. There's no equivalent for the HTML transform yet, % and that needs to exist. I don't know how to write it. % % This should really have something that makes it easier to bind a % table's ``Notes'' column and an associated tablenotes environment, % and generates the right magic for getting the numbers right in the % table. % % So this is quite incomplete. % \newcounter{py at tablenotescounter} \newenvironment{tablenotes}{% \noindent Notes: \par \setcounter{py at tablenotescounter}{0} \begin{list}{(\arabic{py at tablenotescounter})}% {\usecounter{py at tablenotescounter}} }{\end{list}} % Cross-referencing (AMK, new impl. FLD) % Sample usage: % \begin{seealso} % \seemodule{rand}{Uniform random number generator.}; % Module xref % \seetext{\emph{Encyclopedia Britannica}}. % Ref to a book % % % A funky case: module name contains '_'; have to supply an optional key % \seemodule[copyreg]{copy_reg}{Interface constructor registration for % \module{pickle}.} % \end{seealso} % % Note that the last parameter for \seemodule and \seetext should be complete % sentences and be terminated with the proper punctuation. \ifpdf \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[\py at linkToName{label-module-\py at modulekey}{Module \module{#2}} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \else \newcommand{\py at seemodule}[3][\py at modulebadkey]{% \par% \ifx\py at modulebadkey#1\def\py at modulekey{#2}\else\def\py at modulekey{#1}\fi% \begin{fulllineitems} \item[Module \module{#2} (section \ref{module-\py at modulekey}):] #3 \end{fulllineitems} } \fi % \seelink{url}{link text}{why it's interesting} \newcommand{\py at seelink}[3]{% \par \begin{fulllineitems} \item[\ulink{#2}{#1}] #3 \end{fulllineitems} } % \seetitle[url]{title}{why it's interesting} \newcommand{\py at seetitle}[3][\py at modulebadkey]{% \par \begin{fulllineitems} \item[\citetitle{#2}] \ifx\py at modulebadkey#1\else \item[{\small{(\url{#1})}}] \fi #3 \end{fulllineitems} } % \seepep{number}{title}{why it's interesting} \newcommand{\py at seepep}[3]{% \par% \begin{fulllineitems} \item[\pep{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seerfc{number}{title}{why it's interesting} \newcommand{\py at seerfc}[3]{% \par% \begin{fulllineitems} \item[\rfc{#1}, ``\emph{#2}''] #3 \end{fulllineitems} } % \seeurl{url}{why it's interesting} \newcommand{\py at seeurl}[2]{% \par% \begin{fulllineitems} \item[\url{#1}] #2 \end{fulllineitems} } \newenvironment{seealso*}{ \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} \newenvironment{seealso}{ \par \strong{See Also:} \par \def\seetext##1{\par{##1}} \let\seemodule=\py at seemodule \let\seepep=\py at seepep \let\seerfc=\py at seerfc \let\seetitle=\py at seetitle \let\seeurl=\py at seeurl \let\seelink=\py at seelink }{\par} % Allow the Python release number to be specified independently of the % \date{}. This allows the date to reflect the document's date and % release to specify the Python release that is documented. % \newcommand{\py at release}{} \newcommand{\version}{} \newcommand{\shortversion}{} \newcommand{\releaseinfo}{} \newcommand{\releasename}{Release} \newcommand{\release}[1]{% \renewcommand{\py at release}{\releasename\space\version}% \renewcommand{\version}{#1}} \newcommand{\setshortversion}[1]{% \renewcommand{\shortversion}{#1}} \newcommand{\setreleaseinfo}[1]{% \renewcommand{\releaseinfo}{#1}} % Allow specification of the author's address separately from the % author's name. This can be used to format them differently, which % is a good thing. % \newcommand{\py at authoraddress}{} \newcommand{\authoraddress}[1]{\renewcommand{\py at authoraddress}{#1}} \let\developersaddress=\authoraddress \let\developer=\author \let\developers=\author % This sets up the fancy chapter headings that make the documents look % at least a little better than the usual LaTeX output. % \@ifundefined{ChTitleVar}{}{ \ChNameVar{\raggedleft\normalsize\py at HeaderFamily} \ChNumVar{\raggedleft \bfseries\Large\py at HeaderFamily} \ChTitleVar{\raggedleft \rm\Huge\py at HeaderFamily} % This creates chapter heads without the leading \vspace*{}: \def\@makechapterhead#1{% {\parindent \z@ \raggedright \normalfont \ifnum \c at secnumdepth >\m at ne \DOCH \fi \interlinepenalty\@M \DOTI{#1} } } } % Definition lists; requested by AMK for HOWTO documents. Probably useful % elsewhere as well, so keep in in the general style support. % \newenvironment{definitions}{% \begin{description}% \def\term##1{\item[##1]\mbox{}\\*[0mm]} }{% \end{description}% } % Tell TeX about pathological hyphenation cases: \hyphenation{Base-HTTP-Re-quest-Hand-ler} Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 18:33:25 -0000 1.1 +++ .cvsignore 8 Jul 2009 19:36:19 -0000 1.2 @@ -0,0 +1 @@ +python-sybase-0.39.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 18:33:25 -0000 1.1 +++ sources 8 Jul 2009 19:36:19 -0000 1.2 @@ -0,0 +1 @@ +0b934824ebc77a4a2087352576b1a2e6 python-sybase-0.39.tar.gz From pgordon at fedoraproject.org Wed Jul 8 19:53:24 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Wed, 8 Jul 2009 19:53:24 +0000 (UTC) Subject: rpms/webkitgtk/devel webkitgtk.spec,1.9,1.10 Message-ID: <20090708195324.BEC3711C0097@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15862 Modified Files: webkitgtk.spec Log Message: Fix bug 510355 - move jsc to the devel subpackage. Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- webkitgtk.spec 4 Jul 2009 20:03:34 -0000 1.9 +++ webkitgtk.spec 8 Jul 2009 19:52:54 -0000 1.10 @@ -35,7 +35,7 @@ Name: webkitgtk Version: 1.1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -168,12 +168,12 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc WebKit/gtk/NEWS %exclude %{_libdir}/*.la -%{_bindir}/jsc %{_libdir}/libwebkit-1.0.so.* %{_libexecdir}/%{name}/ %files devel %defattr(-,root,root,-) +%{_bindir}/jsc %{_datadir}/webkit-1.0 %{_includedir}/webkit-1.0 %{_libdir}/libwebkit-1.0.so @@ -185,6 +185,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 08 2009 Peter Gordon - 1.1.10-3 +- Move jsc to the -devel subpackage (#510355). + * Sat Jul 04 2009 Peter Gordon - 1.1.10-2 - Invoke chrpath to remove the hardcoded RPATH in GtkLauncher. - Remove unnecessary libtool build dependency. From suravee at fedoraproject.org Wed Jul 8 19:55:35 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Wed, 8 Jul 2009 19:55:35 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel .cvsignore, 1.2, 1.3 CodeAnalyst-gui.spec, 1.6, 1.7 ca-use-oprofile-default-buffersize.patch, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090708195536.03E2211C0097@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16237 Modified Files: .cvsignore CodeAnalyst-gui.spec ca-use-oprofile-default-buffersize.patch sources Log Message: - Update new CodeAnalyst release (2.8.54) - Update Source - Update Patch0 - Remove Patches1-4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Mar 2009 16:36:06 -0000 1.2 +++ .cvsignore 8 Jul 2009 19:55:05 -0000 1.3 @@ -1 +1 @@ -CodeAnalyst-gui-2.8.38.tar.gz +CodeAnalyst-gui-2.8.54.tar.gz Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- CodeAnalyst-gui.spec 7 Jul 2009 22:39:39 -0000 1.6 +++ CodeAnalyst-gui.spec 8 Jul 2009 19:55:05 -0000 1.7 @@ -1,12 +1,12 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui -Version: 2.8.38 -Release: 13%{?dist} +Version: 2.8.54 +Release: 14%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux -Source0: http://ftp-developer.amd.com/user/ssuthiku/CALinuxSnapshots/%{name}-%{version}.tar.gz +Source0: http://ftp-developer.amd.com/user/ssuthiku/Releases/%{name}-%{version}.tar.gz Source1: CodeAnalyst-gui.desktop Source2: DiffAnalyst-gui.desktop @@ -14,18 +14,6 @@ Source2: DiffAnalyst-gui.desktop # since using stock oprofile daemon/driver Patch0: ca-use-oprofile-default-buffersize.patch -# This patch allows us to use the DESTDIR variable in install section. -Patch1: ca-destdir.patch - -# This patch allows to succesfully build with --disable-dwarf -Patch2: ca-disable-dwarf.patch - -# This patch allows to CA to be configured with any libdwarf -Patch3: ca-configure-libdwarf.patch - -# This patch fix the splash screen -Patch4: ca-fix-splash.patch - Requires: popt Requires: binutils Requires: elfutils-libelf @@ -66,10 +54,6 @@ profile comparison, DiffAnalayst. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b .ca-use-oprofile-default-buffersize -%patch1 -p0 -b .ca-destdir -%patch2 -p0 -b .ca-disable-dwarf -%patch3 -p1 -b .ca-configure-libdwarf -%patch4 -p1 -b .ca-fix-splash %build @@ -165,6 +149,13 @@ fi %changelog +* Wed Jul 8 2009 - Suravee Suthikulpanit +- 2.8.54-14 +- Update new release +- Update source +- Update patch0 +- Remove patches1-4 + * Tue Jul 7 2009 - Suravee Suthikulpanit - 2.8.38-13 - Rebuild against new libbfd-2.19.51.0.20-20.fc12.so ca-use-oprofile-default-buffersize.patch: Index: ca-use-oprofile-default-buffersize.patch =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/ca-use-oprofile-default-buffersize.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ca-use-oprofile-default-buffersize.patch 16 Mar 2009 16:36:07 -0000 1.1 +++ ca-use-oprofile-default-buffersize.patch 8 Jul 2009 19:55:05 -0000 1.2 @@ -1,7 +1,7 @@ -diff -paurN CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h ---- CodeAnalyst-gui-2.8.38.org/src/ca/gui/atuneoptions.h 2009-02-02 12:42:55.000000000 -0600 -+++ CodeAnalyst-gui-2.8.38/src/ca/gui/atuneoptions.h 2009-02-03 11:41:56.000000000 -0600 -@@ -114,9 +114,9 @@ enum ChartDensityShownType +diff -paurN CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h +--- CodeAnalyst-gui-2.8.54.org/src/ca/gui/atuneoptions.h 2009-06-10 15:45:23.000000000 -0500 ++++ CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h 2009-07-08 13:29:14.000000000 -0500 +@@ -117,9 +117,9 @@ enum ChartDensityShownType enum BuffDefaultSizeType { @@ -13,4 +13,4 @@ diff -paurN CodeAnalyst-gui-2.8.38.org/s + OP_DEFAULT_CPU_BUFFER_SIZE = 8192 }; - #define OPT_IMPORT_TYPE "/CodeAnalyst/Key/ImportType" + #define OPT_IMPORT_TYPE OPT_DATA_PREFIX "/ImportType" Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Mar 2009 16:36:07 -0000 1.2 +++ sources 8 Jul 2009 19:55:05 -0000 1.3 @@ -1 +1 @@ -2fb7944b3db827360d4d0e4b9355854c CodeAnalyst-gui-2.8.38.tar.gz +ebd48e2c8498d45bfcc774d54dfdf789 CodeAnalyst-gui-2.8.54.tar.gz From kyle at fedoraproject.org Wed Jul 8 19:56:17 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 8 Jul 2009 19:56:17 +0000 (UTC) Subject: rpms/kernel/devel config-x86_64-generic, 1.86, 1.87 kernel.spec, 1.1619, 1.1620 Message-ID: <20090708195617.EF0DA11C0097@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16675 Modified Files: config-x86_64-generic kernel.spec Log Message: * Wed Jul 08 2009 Kyle McMartin - Bump NR_CPUS on x86_64 to 512. Index: config-x86_64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86_64-generic,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- config-x86_64-generic 7 Jul 2009 13:31:39 -0000 1.86 +++ config-x86_64-generic 8 Jul 2009 19:55:47 -0000 1.87 @@ -16,7 +16,7 @@ CONFIG_NUMA=y CONFIG_K8_NUMA=y CONFIG_X86_64_ACPI_NUMA=y # CONFIG_NUMA_EMU is not set -CONFIG_NR_CPUS=64 +CONFIG_NR_CPUS=512 CONFIG_X86_POWERNOW_K8=m CONFIG_X86_POWERNOW_K8_ACPI=y CONFIG_X86_P4_CLOCKMOD=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1619 retrieving revision 1.1620 diff -u -p -r1.1619 -r1.1620 --- kernel.spec 8 Jul 2009 19:28:38 -0000 1.1619 +++ kernel.spec 8 Jul 2009 19:55:47 -0000 1.1620 @@ -1861,6 +1861,9 @@ fi # and build. %changelog +* Wed Jul 08 2009 Kyle McMartin +- Bump NR_CPUS on x86_64 to 512. + * Wed Jul 08 2009 Adam Jackson - drm-no-gem-on-i8xx.patch: Drop, intel 2D driver requires GEM now. This should be entertaining. From jakub at fedoraproject.org Wed Jul 8 20:10:48 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Wed, 8 Jul 2009 20:10:48 +0000 (UTC) Subject: rpms/gcc/devel .cvsignore, 1.274, 1.275 gcc.spec, 1.49, 1.50 sources, 1.277, 1.278 Message-ID: <20090708201048.8351A11C0097@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20314 Modified Files: .cvsignore gcc.spec sources Log Message: 4.4.0-12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- .cvsignore 7 Jul 2009 17:24:05 -0000 1.274 +++ .cvsignore 8 Jul 2009 20:10:47 -0000 1.275 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090707.tar.bz2 +gcc-4.4.0-20090708.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- gcc.spec 7 Jul 2009 17:24:05 -0000 1.49 +++ gcc.spec 8 Jul 2009 20:10:48 -0000 1.50 @@ -1,9 +1,9 @@ -%global DATE 20090707 -%global SVNREV 149339 +%global DATE 20090708 +%global SVNREV 149391 %global gcc_version 4.4.0 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 11 +%global gcc_release 12 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -1807,6 +1807,12 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Wed Jul 8 2009 Jakub Jelinek 4.4.0-12 +- update from gcc-4_4-branch + - PRs c++/35828, c++/37816, c++/37946, c++/40557, c++/40633, c++/40639, + debug/40666, target/38900 +- use more compact DW_AT_member_location for constant offsets (PR debug/40659) + * Tue Jul 7 2009 Jakub Jelinek 4.4.0-11 - update from gcc-4_4-branch - PRs c++/40274, c++/40342, c++/40566, c++/40595, c++/40619, c/39902, Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.277 retrieving revision 1.278 diff -u -p -r1.277 -r1.278 --- sources 7 Jul 2009 17:24:05 -0000 1.277 +++ sources 8 Jul 2009 20:10:48 -0000 1.278 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -f070ba1f0838befa8439c9c55e41204c gcc-4.4.0-20090707.tar.bz2 +69d76c9e39d42dd01cb5b89068c0e114 gcc-4.4.0-20090708.tar.bz2 From fabbione at fedoraproject.org Wed Jul 8 20:14:02 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 8 Jul 2009 20:14:02 +0000 (UTC) Subject: rpms/openais/devel .cvsignore, 1.16, 1.17 openais.spec, 1.45, 1.46 sources, 1.17, 1.18 Message-ID: <20090708201402.D6B6811C0097@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/openais/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21056 Modified Files: .cvsignore openais.spec sources Log Message: New upstream stable release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 1 Jul 2009 22:16:21 -0000 1.16 +++ .cvsignore 8 Jul 2009 20:13:32 -0000 1.17 @@ -1 +1 @@ -openais-0.100.tar.gz +openais-1.0.0.tar.gz Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/openais.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- openais.spec 1 Jul 2009 22:16:21 -0000 1.45 +++ openais.spec 8 Jul 2009 20:13:32 -0000 1.46 @@ -2,7 +2,7 @@ Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs -Version: 0.100 +Version: 1.0.0 Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base @@ -12,12 +12,12 @@ Source0: http://www.osdl.org/downloads/o # Runtime bits Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig -Requires: corosync >= 0.100-1 +Requires: corosync >= 1.0.0-1 Requires: openaislib = %{version}-%{release} Conflicts: openais-devel <= 0.89 # Setup/build bits -BuildRequires: corosynclib-devel >= 0.100 +BuildRequires: corosynclib-devel >= 1.0.0-1 %define buildtrunk 0 %{?alphatag: %define buildtrunk 1} @@ -155,6 +155,9 @@ This package contains the include files %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 8 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release + * Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 1 Jul 2009 22:16:21 -0000 1.17 +++ sources 8 Jul 2009 20:13:32 -0000 1.18 @@ -1 +1 @@ -c97f58e91a8dcd147bcf489cb13e09a4 openais-0.100.tar.gz +33c22a0da30a5a4dd091375839edbf07 openais-1.0.0.tar.gz From davej at fedoraproject.org Wed Jul 8 20:37:23 2009 From: davej at fedoraproject.org (Dave Jones) Date: Wed, 8 Jul 2009 20:37:23 +0000 (UTC) Subject: rpms/kernel/devel config-generic, 1.300, 1.301 kernel.spec, 1.1620, 1.1621 Message-ID: <20090708203723.169BB11C0097@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27277 Modified Files: config-generic kernel.spec Log Message: Enable a bunch of debugging options that were missed somehow. Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.300 retrieving revision 1.301 diff -u -p -r1.300 -r1.301 --- config-generic 7 Jul 2009 06:17:03 -0000 1.300 +++ config-generic 8 Jul 2009 20:36:52 -0000 1.301 @@ -82,7 +82,7 @@ CONFIG_PCI_STUB=y CONFIG_PCI_IOV=y CONFIG_HT_IRQ=y CONFIG_PCI_MSI=y -# CONFIG_PCI_MSI_DEFAULT_ON is not set +CONFIG_PCI_MSI_DEFAULT_ON=y CONFIG_PCIEPORTBUS=y CONFIG_PCIEAER=y CONFIG_PCIEASPM=y @@ -1407,10 +1407,10 @@ CONFIG_ATMEL=m # CONFIG_BCM43XX is not set CONFIG_B43=m CONFIG_B43_PCMCIA=y -# CONFIG_B43_DEBUG is not set +CONFIG_B43_DEBUG=y # CONFIG_B43_FORCE_PIO is not set CONFIG_B43LEGACY=m -# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DEBUG=y CONFIG_B43LEGACY_DMA=y CONFIG_B43LEGACY_PIO=y CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y @@ -3538,7 +3538,7 @@ CONFIG_PM_LEGACY=y CONFIG_PM_DEBUG=y CONFIG_PM_TRACE=y # CONFIG_PM_VERBOSE is not set -# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_TEST_SUSPEND=y ## BEGIN ISA Junk. @@ -3981,7 +3981,7 @@ CONFIG_USB_ATMEL=m # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set CONFIG_FUNCTION_TRACER=y # CONFIG_FUNCTION_GRAPH_TRACER is not set -# CONFIG_BOOT_TRACER is not set +CONFIG_BOOT_TRACER=y CONFIG_STACK_TRACER=y # CONFIG_DYNAMIC_PRINTK_DEBUG is not set CONFIG_EARLY_PRINTK_DBGP=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1620 retrieving revision 1.1621 diff -u -p -r1.1620 -r1.1621 --- kernel.spec 8 Jul 2009 19:55:47 -0000 1.1620 +++ kernel.spec 8 Jul 2009 20:36:52 -0000 1.1621 @@ -1861,6 +1861,9 @@ fi # and build. %changelog +* Wed Jul 08 2009 Dave Jones +- Enable a bunch of debugging options that were missed somehow. + * Wed Jul 08 2009 Kyle McMartin - Bump NR_CPUS on x86_64 to 512. From fabbione at fedoraproject.org Wed Jul 8 20:41:21 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 8 Jul 2009 20:41:21 +0000 (UTC) Subject: rpms/resource-agents/devel .cvsignore, 1.9, 1.10 resource-agents.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090708204121.632F211C0097@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/resource-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28166 Modified Files: .cvsignore resource-agents.spec sources Log Message: New upstream stable release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 1 Jul 2009 22:36:39 -0000 1.9 +++ .cvsignore 8 Jul 2009 20:40:50 -0000 1.10 @@ -1 +1 @@ -resource-agents-3.0.0.rc4.tar.gz +resource-agents-3.0.0.tar.gz Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/resource-agents.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- resource-agents.spec 1 Jul 2009 22:36:39 -0000 1.9 +++ resource-agents.spec 8 Jul 2009 20:40:51 -0000 1.10 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc4 +## define alphatag rc4 Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 11%{?alphatag:.%{alphatag}}%{?dist} +Release: 12%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -72,6 +72,11 @@ services to operate in a High Availabili %{_datadir}/cluster %changelog +* Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-12 +- - spec file updates: + * Update copyright header + * final release.. undefine alphatag + * Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-11.rc4 - New upstream release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 1 Jul 2009 22:36:39 -0000 1.9 +++ sources 8 Jul 2009 20:40:51 -0000 1.10 @@ -1 +1 @@ -2de54c8219dc48886951f25b8d86ff81 resource-agents-3.0.0.rc4.tar.gz +485253db9ea4d48d38d7a0aef84cf660 resource-agents-3.0.0.tar.gz From fabbione at fedoraproject.org Wed Jul 8 21:07:36 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 8 Jul 2009 21:07:36 +0000 (UTC) Subject: rpms/cluster/devel .cvsignore, 1.26, 1.27 cluster.spec, 1.54, 1.55 sources, 1.27, 1.28 Message-ID: <20090708210736.7907F11C0097@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/cluster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2333 Modified Files: .cvsignore cluster.spec sources Log Message: New upstream stable release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 1 Jul 2009 22:29:58 -0000 1.26 +++ .cvsignore 8 Jul 2009 21:07:06 -0000 1.27 @@ -1 +1 @@ -cluster-3.0.0.rc4.tar.gz +cluster-3.0.0.tar.gz Index: cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/cluster.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- cluster.spec 1 Jul 2009 22:29:58 -0000 1.54 +++ cluster.spec 8 Jul 2009 21:07:06 -0000 1.55 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc4 +## define alphatag rc4 Name: cluster Summary: Red Hat Cluster Version: 3.0.0 -Release: 19%{?alphatag:.%{alphatag}}%{?dist} +Release: 20%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -33,8 +33,8 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na BuildRequires: perl python BuildRequires: glibc-kernheaders glibc-devel BuildRequires: libxml2-devel ncurses-devel slang-devel -BuildRequires: corosynclib-devel >= 0.100-1 -BuildRequires: openaislib-devel >= 0.100-1 +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 BuildRequires: openldap-devel perl(ExtUtils::MakeMaker) %prep @@ -92,8 +92,8 @@ Summary: Red Hat Cluster Manager Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig -Requires: corosync >= 0.100-1 -Requires: openais >= 0.100-1 +Requires: corosync >= 1.0.0-1 +Requires: openais >= 1.0.0-1 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: ricci >= 0.15.0-4 modcluster >= 0.15.0-3 Requires: fence-agents @@ -300,6 +300,13 @@ fi %{_mandir}/man8/*.gfs.* %changelog +* Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-20 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. + * Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-19.rc4 - New upstream release - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 1 Jul 2009 22:29:58 -0000 1.27 +++ sources 8 Jul 2009 21:07:06 -0000 1.28 @@ -1 +1 @@ -b555c45409723882f107d85fe59e5af0 cluster-3.0.0.rc4.tar.gz +93101d0f3c724a46caee1f9f16abe4af cluster-3.0.0.tar.gz From rrankin at fedoraproject.org Wed Jul 8 21:15:01 2009 From: rrankin at fedoraproject.org (Roy Rankin) Date: Wed, 8 Jul 2009 21:15:01 +0000 (UTC) Subject: rpms/gpsim/EL-5 gpsim.spec,1.14,1.15 Message-ID: <20090708211501.6CF6111C0097@cvs1.fedora.phx.redhat.com> Author: rrankin Update of /cvs/pkgs/rpms/gpsim/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3828 Modified Files: gpsim.spec Log Message: Specfile change for popt-devel build-require Index: gpsim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsim/EL-5/gpsim.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gpsim.spec 9 Jun 2009 06:15:21 -0000 1.14 +++ gpsim.spec 8 Jul 2009 21:14:31 -0000 1.15 @@ -1,6 +1,6 @@ Name: gpsim Version: 0.23.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simulator for Microchip (TM) PIC (TM) microcontrollers Summary(fr): Un simulateur pour les microcontr??leurs PIC (TM) Microchip (TM) @@ -10,7 +10,7 @@ URL: http://gpsim.sourceforge.net/gpsim Source: http://downloads.sourceforge.net/gpsim/gpsim-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gtk+extra-devel, flex, readline-devel, popt-devel +BuildRequires: gtk+extra-devel, flex, readline-devel, %{_includedir}/popt.h BuildRequires: autoconf @@ -89,6 +89,9 @@ autoconf %{_includedir}/* %changelog +* Tue Jul 07 2009 Roy Rankin 0.23.0-5 +- work-around popt-devel isssue in build requires + * Sat Mar 21 2009 Roy Rankin 0.23.0-4 - upstream release of gpsim 0.23.0 - bug fixes and see ANNOUNCE for new features and processors. From jdennis at fedoraproject.org Wed Jul 8 21:17:40 2009 From: jdennis at fedoraproject.org (John Dennis) Date: Wed, 8 Jul 2009 21:17:40 +0000 (UTC) Subject: rpms/python-nss/devel .cvsignore, 1.7, 1.8 python-nss.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090708211741.0AE1611C0097@cvs1.fedora.phx.redhat.com> Author: jdennis Update of /cvs/pkgs/rpms/python-nss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4729 Modified Files: .cvsignore python-nss.spec sources Log Message: fix bug #510343 client_auth_data_callback seg faults if False is returned from callback Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 1 Jul 2009 19:47:13 -0000 1.7 +++ .cvsignore 8 Jul 2009 21:17:10 -0000 1.8 @@ -1 +1 @@ -python-nss-0.5.tar.bz2 +python-nss-0.6.tar.bz2 Index: python-nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/python-nss.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-nss.spec 1 Jul 2009 19:47:13 -0000 1.9 +++ python-nss.spec 8 Jul 2009 21:17:10 -0000 1.10 @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-nss -Version: 0.5 +Version: 0.6 Release: 1%{?dist} Summary: Python bindings for Network Security Services (NSS) @@ -69,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 John Dennis - 0.6-1 +- fix bug #510343 client_auth_data_callback seg faults if False + is returned from callback + * Wed Jul 1 2009 John Dennis - 0.5-1 - restore ssl.nss_init and ssl.nss_shutdown but make them deprecated add __version__ string to nss module Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 1 Jul 2009 19:47:13 -0000 1.8 +++ sources 8 Jul 2009 21:17:10 -0000 1.9 @@ -1 +1 @@ -b038beb638a8a843f653a6771d9d5c48 python-nss-0.5.tar.bz2 +896a11b35c14358db44582f198095fe5 python-nss-0.6.tar.bz2 From fabbione at fedoraproject.org Wed Jul 8 21:18:32 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Wed, 8 Jul 2009 21:18:32 +0000 (UTC) Subject: rpms/fence-agents/devel .cvsignore, 1.10, 1.11 fence-agents.spec, 1.11, 1.12 sources, 1.10, 1.11 Message-ID: <20090708211832.95C0111C0097@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/fence-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5045 Modified Files: .cvsignore fence-agents.spec sources Log Message: New upstream stable release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Jul 2009 22:46:24 -0000 1.10 +++ .cvsignore 8 Jul 2009 21:18:02 -0000 1.11 @@ -1 +1 @@ -fence-agents-3.0.0.rc4.tar.gz +fence-agents-3.0.0.tar.gz Index: fence-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/fence-agents.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fence-agents.spec 1 Jul 2009 22:46:24 -0000 1.11 +++ fence-agents.spec 8 Jul 2009 21:18:02 -0000 1.12 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag rc4 +## define alphatag rc4 Name: fence-agents Summary: Fence Agents for Red Hat Cluster Version: 3.0.0 -Release: 13%{?alphatag:.%{alphatag}}%{?dist} +Release: 14%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -39,8 +39,8 @@ BuildRequires: glibc-devel BuildRequires: nss-devel nspr-devel BuildRequires: libxml2-devel libvirt-devel BuildRequires: clusterlib-devel >= 3.0.0 -BuildRequires: corosynclib-devel >= 0.100-1 -BuildRequires: openaislib-devel >= 0.100-1 +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 %prep %setup -q -n fence-agents-%{version}%{?alphatag:.%{alphatag}} @@ -83,6 +83,13 @@ power management for several devices. %{_mandir}/man8/fence* %changelog +* Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-14 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. + * Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-13.rc4 - New upstream release. - spec file updates: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Jul 2009 22:46:24 -0000 1.10 +++ sources 8 Jul 2009 21:18:02 -0000 1.11 @@ -1 +1 @@ -ade3965d561d645f24c482e38b93a8e2 fence-agents-3.0.0.rc4.tar.gz +7bc650a9654a4e5059120243666b5eb5 fence-agents-3.0.0.tar.gz From scop at fedoraproject.org Wed Jul 8 21:42:56 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 8 Jul 2009 21:42:56 +0000 (UTC) Subject: rpms/vdr-text2skin/devel vdr-text2skin-1.2-skindir.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 vdr-text2skin.spec, 1.7, 1.8 vdr-text2skin-1.1cvs-includes.patch, 1.1, NONE vdr-text2skin-1.1cvs-skindir.patch, 1.1, NONE vdr-text2skin-1.1cvs-vdr154.patch, 1.1, NONE vdr-text2skin-1.1cvs-vdr157.patch, 1.1, NONE Message-ID: <20090708214256.A62F311C0097@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/vdr-text2skin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11283 Modified Files: .cvsignore sources vdr-text2skin.spec Added Files: vdr-text2skin-1.2-skindir.patch Removed Files: vdr-text2skin-1.1cvs-includes.patch vdr-text2skin-1.1cvs-skindir.patch vdr-text2skin-1.1cvs-vdr154.patch vdr-text2skin-1.1cvs-vdr157.patch Log Message: * Thu Jul 9 2009 Ville Skytt?? - 1.2-1 - Update to 1.2. - Specfile cleanups. - Fix spelling errors in description. vdr-text2skin-1.2-skindir.patch: --- NEW FILE vdr-text2skin-1.2-skindir.patch --- diff -up text2skin-1.2/common.c~ text2skin-1.2/common.c --- text2skin-1.2/common.c~ 2009-06-15 21:21:50.000000000 +0300 +++ text2skin-1.2/common.c 2009-06-15 21:58:22.000000000 +0300 @@ -14,7 +14,7 @@ const std::string &SkinPath(void) { // should never change - static std::string path = cPlugin::ConfigDirectory(PLUGIN_NAME_I18N); + static std::string path = "/usr/share/vdr/text2skin"; return path; } diff -up text2skin-1.2/README~ text2skin-1.2/README --- text2skin-1.2/README~ 2009-06-15 21:21:50.000000000 +0300 +++ text2skin-1.2/README 2009-06-15 21:58:20.000000000 +0300 @@ -82,6 +82,9 @@ vdr-1.3.17-osdbase-maxitems.diff Where to put the skins: ----------------------- +*** rpm package note: this text2skin package has been patched to load skins +*** from /usr/share/vdr/text2skin instead of the path documented below. + As you might know, VDR has a subfolder "plugins" inside it's configuration folder, where all plugin-related files should reside. If you don't know, where this could be, look into the folder you gave to VDR with the -v parameter @@ -109,6 +112,9 @@ it there. Where to put the fonts: ----------------------- +*** rpm package note: this text2skin package has been patched to load fonts +*** from /usr/share/vdr/text2skin instead of the path documented below. + Font files (.ttf) can be placed either in the directory of the skin itself or in a subfolder fonts inside the text2skin directory. diff -up text2skin-1.2/README.de~ text2skin-1.2/README.de --- text2skin-1.2/README.de~ 2009-06-15 21:21:50.000000000 +0300 +++ text2skin-1.2/README.de 2009-06-15 21:58:27.000000000 +0300 @@ -77,6 +77,9 @@ root at linux # ./vdr -P text2skin Wo die Skins hingeh??ren: ------------------------ +*** rpm package note: this text2skin package has been patched to load skins +*** from /usr/share/vdr/text2skin instead of the path documented below. + Wie Sie vielleicht wissen, hat VDR einen Unterordner "plugins" innerhalb seines Konfigurationsordners, in dem alle Dateien, die zu Plugins geh??ren, enthalten sein sollten. Wenn Sie nicht wissen, wo das sein k??nnte, schauen Sie in dem Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/vdr-text2skin/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 Apr 2008 20:56:44 -0000 1.3 +++ .cvsignore 8 Jul 2009 21:42:56 -0000 1.4 @@ -1 +1 @@ -vdr-text2skin-1.1-cvs_ext-0.10.tgz +vdr-text2skin-1.2.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/vdr-text2skin/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 Apr 2008 20:56:44 -0000 1.3 +++ sources 8 Jul 2009 21:42:56 -0000 1.4 @@ -1 +1 @@ -92d5e0612f59f16190db93ae817f08ae vdr-text2skin-1.1-cvs_ext-0.10.tgz +bc24ba8fad94ac435081144b067676db vdr-text2skin-1.2.tgz Index: vdr-text2skin.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-text2skin/devel/vdr-text2skin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vdr-text2skin.spec 26 Feb 2009 00:01:27 -0000 1.7 +++ vdr-text2skin.spec 8 Jul 2009 21:42:56 -0000 1.8 @@ -1,27 +1,19 @@ %define pname text2skin %define plugindir %(vdr-config --plugindir 2>/dev/null || echo ERROR) -%define configdir %(vdr-config --configdir 2>/dev/null || echo ERROR) %define datadir %(vdr-config --datadir 2>/dev/null || echo ERROR) %define apiver %(vdr-config --apiversion 2>/dev/null || echo ERROR) -%define ext 0.10 - Name: vdr-%{pname} -Version: 1.1 -Release: 24.cvsext%{ext}%{?dist} +Version: 1.2 +Release: 1%{?dist} Summary: OSD skin plugin for VDR Group: Applications/Multimedia License: GPL+ -URL: http://linux.kompiliert.net/index.php?view=text2skin -#Source0: http://linux.kompiliert.net/files/%{name}-%{version}.tgz -#Source0: http://linux.kompiliert.net/contrib/%{name}-%{version}cvs-%{cvs}.tgz -Source0: http://brougs78.vdr-developer.org/tmp/vdr-text2skin-%{version}-cvs_ext-%{ext}.tgz +URL: http://projects.vdr-developer.org/projects/show/plg-text2skin +Source0: http://projects.vdr-developer.org/attachments/download/112/%{name}-%{version}.tgz Source1: %{name}.conf -Patch0: %{name}-1.1cvs-vdr154.patch -Patch1: %{name}-1.1cvs-vdr157.patch -Patch2: %{name}-1.1cvs-skindir.patch -Patch3: %{name}-1.1cvs-includes.patch +Patch0: %{name}-1.2-skindir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?_with_imagemagick:1} @@ -34,57 +26,36 @@ BuildRequires: vdr-devel >= 1.3.47 BuildRequires: sed >= 3.95 BuildRequires: which BuildRequires: gawk +BuildRequires: gettext Requires: vdr(abi) = %{apiver} %description This plugin is designed to load and interpret a set of files describing the layout of VDR's on screen display and to make this "skin" available to VDR via Setup -> OSD in the main menu. Of course -it is possible to load more than one text-based skin this way and to +it is possible to load more than one text based skin this way and to choose between them while running VDR. All skins may be themeable -(you can create your own color-theme) and translateable as the author +(you can create your own color theme) and translatable as the author of the skin wishes. %prep -%setup -q -c - -cd text2skin - -%patch0 -p1 -%patch1 -p1 -sed -e 's|/usr/share/vdr/|%{datadir}/|' %{PATCH2} | patch -p1 -%patch3 -p0 - -find . -depth -type d -name CVS | xargs rm -r - -for f in HISTORY README.de Docs/*.txt ; do - iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f -done - +%setup -q -n %{pname}-%{version} +sed -e 's|/usr/share/vdr/|%{datadir}/|' %{PATCH0} | patch -p1 chmod -x contrib/*.pl - sed -i -e /strip/d -e /O2/d Makefile -sed -i -e '/^DVBDIR/d' -e 's|-I$(DVBDIR)\(/linux\)\?/include||g' Makefile - -cd .. %build -opts= -%if 0%{!?_with_imagemagick:1} -opts="HAVE_IMLIB2=1 HAVE_IMAGEMAGICK=" -%endif -make -C text2skin %{?_smp_mflags} $opts LIBDIR=. VDRDIR=%{_libdir}/vdr all +opts="%{!?_with_imagemagick:HAVE_IMLIB2=1 HAVE_IMAGEMAGICK=}" +make %{?_smp_mflags} $opts LIBDIR=. LOCALEDIR=./locale VDRDIR=%{_libdir}/vdr all %install rm -rf $RPM_BUILD_ROOT -cd text2skin install -dm 755 $RPM_BUILD_ROOT%{plugindir} install -pm 755 libvdr-%{pname}.so.%{apiver} $RPM_BUILD_ROOT%{plugindir} -cd .. install -Dpm 644 %{SOURCE1} \ $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf @@ -96,26 +67,21 @@ install -dm 755 $RPM_BUILD_ROOT%{datadir rm -rf $RPM_BUILD_ROOT -%pre -if [ $1 -gt 1 -a -d %{configdir}/plugins/text2skin ] ; then - # Migrate skins (can't overwrite a dir with a symlink) - mkdir -p %{datadir}/text2skin && \ - cp -a %{configdir}/plugins/text2skin/* %{datadir}/text2skin || : - rm -rf %{configdir}/plugins/text2skin -fi - - %files %defattr(-,root,root,-) -%doc text2skin/CONTRIBUTORS text2skin/COPYING text2skin/HISTORY -%doc text2skin/README text2skin/Docs/*.txt text2skin/contrib/skin_to_10.pl -%lang(de) %doc text2skin/README.de +%doc CONTRIBUTORS COPYING HISTORY README Docs/*.txt contrib/skin_to_10.pl +%lang(de) %doc README.de %config(noreplace) %{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf %{plugindir}/libvdr-%{pname}.so.%{apiver} %{datadir}/text2skin/ %changelog +* Thu Jul 9 2009 Ville Skytt?? - 1.2-1 +- Update to 1.2. +- Specfile cleanups. +- Fix spelling errors in description. + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-24.cvsext0.10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- vdr-text2skin-1.1cvs-includes.patch DELETED --- --- vdr-text2skin-1.1cvs-skindir.patch DELETED --- --- vdr-text2skin-1.1cvs-vdr154.patch DELETED --- --- vdr-text2skin-1.1cvs-vdr157.patch DELETED --- From whot at fedoraproject.org Wed Jul 8 22:13:32 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 8 Jul 2009 22:13:32 +0000 (UTC) Subject: rpms/xorg-x11-server/F-11 .cvsignore, 1.59, 1.60 sources, 1.54, 1.55 xorg-x11-server.spec, 1.451, 1.452 xserver-1.6.0-randr-xinerama-crash.patch, 1.1, NONE xserver-1.6.0-restore-zap.patch, 1.1, NONE xserver-1.6.0-xinerama-cursors.patch, 1.1, NONE xserver-1.6.1-avoid-malloc-for-logging.patch, 1.1, NONE xserver-1.6.1-xkbsendmap.patch, 1.1, NONE Message-ID: <20090708221332.7967711C0097@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18597 Modified Files: .cvsignore sources xorg-x11-server.spec Removed Files: xserver-1.6.0-randr-xinerama-crash.patch xserver-1.6.0-restore-zap.patch xserver-1.6.0-xinerama-cursors.patch xserver-1.6.1-avoid-malloc-for-logging.patch xserver-1.6.1-xkbsendmap.patch Log Message: * Wed Jul 08 2009 Peter Hutterer 1.6.2-1 - xserver 1.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 18 May 2009 18:40:18 -0000 1.59 +++ .cvsignore 8 Jul 2009 22:13:01 -0000 1.60 @@ -1 +1 @@ -xorg-server-1.6.1.901.tar.bz2 +xorg-server-1.6.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 18 May 2009 18:40:18 -0000 1.54 +++ sources 8 Jul 2009 22:13:01 -0000 1.55 @@ -1 +1 @@ -e6cba1f07006143daa95ce3f11d999b2 xorg-server-1.6.1.901.tar.bz2 +37641d0899df8a9c4a6284586d932b8d xorg-server-1.6.2.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/xorg-x11-server.spec,v retrieving revision 1.451 retrieving revision 1.452 diff -u -p -r1.451 -r1.452 --- xorg-x11-server.spec 11 Jun 2009 05:40:28 -0000 1.451 +++ xorg-x11-server.spec 8 Jul 2009 22:13:01 -0000 1.452 @@ -18,8 +18,8 @@ Summary: X.Org X11 X server Name: xorg-x11-server -Version: 1.6.1.901 -Release: 5%{?dist} +Version: 1.6.2 +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -91,21 +91,16 @@ Patch6016: xserver-1.6.1-nouveau.patch Patch6022: xserver-1.6.0-primary.patch -Patch6024: xserver-1.6.0-xinerama-cursors.patch - # ajax needs to upstream this Patch6027: xserver-1.6.0-displayfd.patch -Patch6028: xserver-1.6.0-restore-zap.patch Patch6029: xserver-1.6.0-no-i810.patch -Patch6030: xserver-1.6.0-randr-xinerama-crash.patch Patch6031: xserver-1.6.1-exa-avoid-swapped-out.patch Patch6032: xserver-1.6.1-randr-gamma.patch # Nominated for 1.6.2 Patch6034: xserver-1.6.1-exa-create-pixmap2.patch -Patch6035: xserver-1.6.1-avoid-malloc-for-logging.patch Patch6040: xserver-1.6.1-vt-switch.patch # from upstream, nominated for 1.6.2 (#499792) @@ -113,8 +108,6 @@ Patch6041: xserver-1.6.1-synaptics.patch Patch6042: xserver-1.6.1-proc-cmdline.patch # second part to xserver-1.6.1-synaptics.patch Patch6043: xserver-1.6.1-mousedrivers.patch -# #456376, patch from upstream -Patch6044: xserver-1.6.1-xkbsendmap.patch # #492359, monitor doesn't set first detailed timing preferred bit Patch6045: xserver-1.6.1-pea-quirk.patch @@ -143,7 +136,7 @@ BuildRequires: git-core BuildRequires: automake autoconf libtool pkgconfig BuildRequires: xorg-x11-util-macros >= 1.1.5 -BuildRequires: xorg-x11-proto-devel >= 7.4-10 +BuildRequires: xorg-x11-proto-devel >= 7.4-15 BuildRequires: xorg-x11-xtrans-devel >= 1.2.2-1 BuildRequires: libXfont-devel libXau-devel libxkbfile-devel libXres-devel @@ -536,6 +529,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 08 2009 Peter Hutterer 1.6.2-1 +- xserver 1.6.2 + * Thu Jun 11 2009 Ben Skeggs 1.6.1.901-5 - xserver-1.6.1-nouveau.patch: fix detection of earlier chipsets --- xserver-1.6.0-randr-xinerama-crash.patch DELETED --- --- xserver-1.6.0-restore-zap.patch DELETED --- --- xserver-1.6.0-xinerama-cursors.patch DELETED --- --- xserver-1.6.1-avoid-malloc-for-logging.patch DELETED --- --- xserver-1.6.1-xkbsendmap.patch DELETED --- From guthrie at fedoraproject.org Wed Jul 8 22:31:25 2009 From: guthrie at fedoraproject.org (John T. Guthrie III) Date: Wed, 8 Jul 2009 22:31:25 +0000 (UTC) Subject: rpms/ewl/devel ewl.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708223125.34AD811C0097@cvs1.fedora.phx.redhat.com> Author: guthrie Update of /cvs/extras/rpms/ewl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23163/devel Modified Files: .cvsignore sources Added Files: ewl.spec import.log Log Message: Initial import of code for ewl package into devel branch. --- NEW FILE ewl.spec --- Name: ewl Version: 0.5.2.042 Release: 9%{?dist} Summary: Enlightenment Widget Library Group: System Environment/Libraries License: MIT with advertising URL: http://www.enlightenment.org/ Source0: http://download.enlightenment.org/snapshots/2008-01-25/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: zlib-devel, curl-devel, openssl-devel BuildRequires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel BuildRequires: emotion-devel %description The Enlightenment Widget Library (EWL) is a high level toolkit providing all of the widgets you'll need to create an enlightment application. The expansive object oriented style API provides tools to easily expand widgets and containers for new situations. Among the wide variety of features EWL provides are: * Object, Widget and Container abstraction layers; * A variety of Containers for laying out widgets in arrangements such as boxes, tables and lists; * Simple widgets such as Buttons, Labels, Images and Progressbars; * Decorative Containers for wrapping borders and controls around widgets; * High level data abstractions including lists, expandable trees and combo boxes; * An extraordinarily flexible theming system; * High level abstractions to build applications quickly, such as file and color dialogs, as well as a menu system; * A flexible event system to allow application programmers to hook into nearly every change that occurs; * Abstracted EWL Engine backends allow for easily re-using portions of engines to support new platforms. * IO abstraction manager to enable mapping of mimetypes to widget representations; * EWL Test, a tutorial and testing application. %package devel Group: Development/Libraries Summary: Development files for the ewl package Requires: %{name} = %{version}-%{release} Requires: zlib-devel, curl-devel, openssl-devel Requires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel Requires: emotion-devel Requires: pkgconfig %description devel This package contains include files that are needed in order to develop applications based on the %{name} package. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # Removing .la files find $RPM_BUILD_ROOT -name '*.la' -exec rm '{}' \; %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING INSTALL README %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}.cfg %{_bindir}/ewl_config %dir %{_libdir}/%{name} %{_libdir}/%{name}/engines %{_libdir}/%{name}/plugins %{_libdir}/libewl.so.1 %{_libdir}/libewl.so.1.0.0 %dir %{_datadir}/%{name} %{_datadir}/%{name}/images %{_datadir}/%{name}/themes %files devel %defattr(-,root,root,-) %{_bindir}/ewl_*test %{_includedir}/%{name} %{_libdir}/%{name}/tests %{_libdir}/libewl.so %{_libdir}/pkgconfig/ewl.pc %{_datadir}/%{name}/examples %changelog * Mon Jul 6 2009 - John Guthrie - 0.5.2.042-9 - Minor license fix. - Removed some commented out scriptlet code. - Fixed an orphan directory. * Sun Jul 5 2009 - John Guthrie - 0.5.2.042-8 - Corrected license field to MIT. - Made the pkgconfig requirement for the devel subpackage unconditional. - Moved /usr/lib/ewl/tests to the devel subpackage. - Added --disable-static to the configure script flags. * Sat Jul 4 2009 - John Guthrie - 0.5.2.042-7 - Removed %%ghost directive for libewl.so.1. - Added a pkgconfig requirement on the devel subpackage for version of Fedora <= 10. - Moved *_test binaries to the devel subpackage. * Fri Jul 3 2009 - John Guthrie - 0.5.2.042-6 - moved *many* *.c files to the devel package. - Removed *.a files. - Compacting format of %%post and %%postun sections. - Fixed rpmlint errors and warnings. * Sat Jun 27 2009 - John Guthrie - 0.5.2.042-5 - Fixed the summary. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-4 - Moved the pkgconfig files to the devel sub-package. - Added the BuildRequires of the main package as Requires for the devel sub-package. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-3 - Added the emotion-devel BuildRequirement - Made the file /usr/lib/libewl.so.1 into a %%ghost file. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-2 - Removed *.la files. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-1 - Initial spec file creation from source. --- NEW FILE import.log --- ewl-0_5_2_042-9_fc11:HEAD:ewl-0.5.2.042-9.fc11.src.rpm:1247092148 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ewl/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:30:49 -0000 1.1 +++ .cvsignore 8 Jul 2009 22:30:54 -0000 1.2 @@ -0,0 +1 @@ +ewl-0.5.2.042.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/ewl/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:30:49 -0000 1.1 +++ sources 8 Jul 2009 22:30:54 -0000 1.2 @@ -0,0 +1 @@ +385082d91eb112671a5c64af295da91d ewl-0.5.2.042.tar.gz From jstanley at fedoraproject.org Wed Jul 8 22:35:48 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 8 Jul 2009 22:35:48 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin/F-10 import.log, NONE, 1.1 trac-customfieldadmin-plugin.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090708223548.1498811C0097@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24383/F-10 Modified Files: .cvsignore sources Added Files: import.log trac-customfieldadmin-plugin.spec Log Message: Initial commit --- NEW FILE import.log --- trac-customfieldadmin-plugin-0_1-0_1_svn5073_fc10:F-10:trac-customfieldadmin-plugin-0.1-0.1.svn5073.fc10.src.rpm:1247092475 --- NEW FILE trac-customfieldadmin-plugin.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: trac-customfieldadmin-plugin Version: 0.1 Release: 0.1.svn5073%{?dist} Summary: Expose ticket custom fields via the web admin interface Group: Applications/Internet # BSD license derived from metadata in setup.py License: BSD URL: http://trac-hacks.org/wiki/PrivateTicketsPlugin # Produce via 'svn export -r5073 http://trac-hacks.org/svn/customfieldadminplugin/0.10 customfieldadminplugin-0.10' # tar -czvf trac-customfieldadminplugin-0.10.svn5073.tar.gz customfieldadminplugin-0.10 Source0: trac-customfieldadminplugin-0.10.svn5073.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools Requires: trac >= 0.10 # Only for 0.10 Requires: trac-webadmin-plugin %description A trac plugin to expose custom ticket fields via the admin web interface, instead of directly editing trac.ini %prep %setup -q -n customfieldadminplugin-0.10 %build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py build %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{python_sitelib}/* %changelog * Sat Jul 04 2009 Jon Stanley - 0.1-0.2.svn5073 - Correctly name package, correct SVN checkout instructions * Tue Dec 30 2008 Jon Stanley - 0.1-0.1.svn5073 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac-customfieldadmin-plugin/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 1 Jul 2009 02:36:43 -0000 1.1 +++ .cvsignore 8 Jul 2009 22:35:15 -0000 1.2 @@ -0,0 +1 @@ +trac-customfieldadminplugin-0.10.svn5073.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-customfieldadmin-plugin/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:36:43 -0000 1.1 +++ sources 8 Jul 2009 22:35:17 -0000 1.2 @@ -0,0 +1 @@ +0c551244396c6725bb301ece9964ad57 trac-customfieldadminplugin-0.10.svn5073.tar.gz From guthrie at fedoraproject.org Wed Jul 8 22:37:45 2009 From: guthrie at fedoraproject.org (John T. Guthrie III) Date: Wed, 8 Jul 2009 22:37:45 +0000 (UTC) Subject: rpms/ewl/F-10 ewl.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090708223745.D09DA11C0097@cvs1.fedora.phx.redhat.com> Author: guthrie Update of /cvs/extras/rpms/ewl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24829/F-10 Modified Files: .cvsignore sources Added Files: ewl.spec Log Message: Initial import of code for ewl package into F-10 and F-11 branches. --- NEW FILE ewl.spec --- Name: ewl Version: 0.5.2.042 Release: 9%{?dist} Summary: Enlightenment Widget Library Group: System Environment/Libraries License: MIT with advertising URL: http://www.enlightenment.org/ Source0: http://download.enlightenment.org/snapshots/2008-01-25/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: zlib-devel, curl-devel, openssl-devel BuildRequires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel BuildRequires: emotion-devel %description The Enlightenment Widget Library (EWL) is a high level toolkit providing all of the widgets you'll need to create an enlightment application. The expansive object oriented style API provides tools to easily expand widgets and containers for new situations. Among the wide variety of features EWL provides are: * Object, Widget and Container abstraction layers; * A variety of Containers for laying out widgets in arrangements such as boxes, tables and lists; * Simple widgets such as Buttons, Labels, Images and Progressbars; * Decorative Containers for wrapping borders and controls around widgets; * High level data abstractions including lists, expandable trees and combo boxes; * An extraordinarily flexible theming system; * High level abstractions to build applications quickly, such as file and color dialogs, as well as a menu system; * A flexible event system to allow application programmers to hook into nearly every change that occurs; * Abstracted EWL Engine backends allow for easily re-using portions of engines to support new platforms. * IO abstraction manager to enable mapping of mimetypes to widget representations; * EWL Test, a tutorial and testing application. %package devel Group: Development/Libraries Summary: Development files for the ewl package Requires: %{name} = %{version}-%{release} Requires: zlib-devel, curl-devel, openssl-devel Requires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel Requires: emotion-devel Requires: pkgconfig %description devel This package contains include files that are needed in order to develop applications based on the %{name} package. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # Removing .la files find $RPM_BUILD_ROOT -name '*.la' -exec rm '{}' \; %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING INSTALL README %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}.cfg %{_bindir}/ewl_config %dir %{_libdir}/%{name} %{_libdir}/%{name}/engines %{_libdir}/%{name}/plugins %{_libdir}/libewl.so.1 %{_libdir}/libewl.so.1.0.0 %dir %{_datadir}/%{name} %{_datadir}/%{name}/images %{_datadir}/%{name}/themes %files devel %defattr(-,root,root,-) %{_bindir}/ewl_*test %{_includedir}/%{name} %{_libdir}/%{name}/tests %{_libdir}/libewl.so %{_libdir}/pkgconfig/ewl.pc %{_datadir}/%{name}/examples %changelog * Mon Jul 6 2009 - John Guthrie - 0.5.2.042-9 - Minor license fix. - Removed some commented out scriptlet code. - Fixed an orphan directory. * Sun Jul 5 2009 - John Guthrie - 0.5.2.042-8 - Corrected license field to MIT. - Made the pkgconfig requirement for the devel subpackage unconditional. - Moved /usr/lib/ewl/tests to the devel subpackage. - Added --disable-static to the configure script flags. * Sat Jul 4 2009 - John Guthrie - 0.5.2.042-7 - Removed %%ghost directive for libewl.so.1. - Added a pkgconfig requirement on the devel subpackage for version of Fedora <= 10. - Moved *_test binaries to the devel subpackage. * Fri Jul 3 2009 - John Guthrie - 0.5.2.042-6 - moved *many* *.c files to the devel package. - Removed *.a files. - Compacting format of %%post and %%postun sections. - Fixed rpmlint errors and warnings. * Sat Jun 27 2009 - John Guthrie - 0.5.2.042-5 - Fixed the summary. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-4 - Moved the pkgconfig files to the devel sub-package. - Added the BuildRequires of the main package as Requires for the devel sub-package. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-3 - Added the emotion-devel BuildRequirement - Made the file /usr/lib/libewl.so.1 into a %%ghost file. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-2 - Removed *.la files. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-1 - Initial spec file creation from source. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ewl/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:30:49 -0000 1.1 +++ .cvsignore 8 Jul 2009 22:37:15 -0000 1.2 @@ -0,0 +1 @@ +ewl-0.5.2.042.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/ewl/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:30:49 -0000 1.1 +++ sources 8 Jul 2009 22:37:15 -0000 1.2 @@ -0,0 +1 @@ +385082d91eb112671a5c64af295da91d ewl-0.5.2.042.tar.gz From guthrie at fedoraproject.org Wed Jul 8 22:37:46 2009 From: guthrie at fedoraproject.org (John T. Guthrie III) Date: Wed, 8 Jul 2009 22:37:46 +0000 (UTC) Subject: rpms/ewl/F-11 ewl.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090708223746.03D7911C0097@cvs1.fedora.phx.redhat.com> Author: guthrie Update of /cvs/extras/rpms/ewl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24829/F-11 Modified Files: .cvsignore sources Added Files: ewl.spec Log Message: Initial import of code for ewl package into F-10 and F-11 branches. --- NEW FILE ewl.spec --- Name: ewl Version: 0.5.2.042 Release: 9%{?dist} Summary: Enlightenment Widget Library Group: System Environment/Libraries License: MIT with advertising URL: http://www.enlightenment.org/ Source0: http://download.enlightenment.org/snapshots/2008-01-25/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: zlib-devel, curl-devel, openssl-devel BuildRequires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel BuildRequires: emotion-devel %description The Enlightenment Widget Library (EWL) is a high level toolkit providing all of the widgets you'll need to create an enlightment application. The expansive object oriented style API provides tools to easily expand widgets and containers for new situations. Among the wide variety of features EWL provides are: * Object, Widget and Container abstraction layers; * A variety of Containers for laying out widgets in arrangements such as boxes, tables and lists; * Simple widgets such as Buttons, Labels, Images and Progressbars; * Decorative Containers for wrapping borders and controls around widgets; * High level data abstractions including lists, expandable trees and combo boxes; * An extraordinarily flexible theming system; * High level abstractions to build applications quickly, such as file and color dialogs, as well as a menu system; * A flexible event system to allow application programmers to hook into nearly every change that occurs; * Abstracted EWL Engine backends allow for easily re-using portions of engines to support new platforms. * IO abstraction manager to enable mapping of mimetypes to widget representations; * EWL Test, a tutorial and testing application. %package devel Group: Development/Libraries Summary: Development files for the ewl package Requires: %{name} = %{version}-%{release} Requires: zlib-devel, curl-devel, openssl-devel Requires: efreet-devel, ecore-devel, epsilon-devel, edje-devel, evas-devel Requires: emotion-devel Requires: pkgconfig %description devel This package contains include files that are needed in order to develop applications based on the %{name} package. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # Removing .la files find $RPM_BUILD_ROOT -name '*.la' -exec rm '{}' \; %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING INSTALL README %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}.cfg %{_bindir}/ewl_config %dir %{_libdir}/%{name} %{_libdir}/%{name}/engines %{_libdir}/%{name}/plugins %{_libdir}/libewl.so.1 %{_libdir}/libewl.so.1.0.0 %dir %{_datadir}/%{name} %{_datadir}/%{name}/images %{_datadir}/%{name}/themes %files devel %defattr(-,root,root,-) %{_bindir}/ewl_*test %{_includedir}/%{name} %{_libdir}/%{name}/tests %{_libdir}/libewl.so %{_libdir}/pkgconfig/ewl.pc %{_datadir}/%{name}/examples %changelog * Mon Jul 6 2009 - John Guthrie - 0.5.2.042-9 - Minor license fix. - Removed some commented out scriptlet code. - Fixed an orphan directory. * Sun Jul 5 2009 - John Guthrie - 0.5.2.042-8 - Corrected license field to MIT. - Made the pkgconfig requirement for the devel subpackage unconditional. - Moved /usr/lib/ewl/tests to the devel subpackage. - Added --disable-static to the configure script flags. * Sat Jul 4 2009 - John Guthrie - 0.5.2.042-7 - Removed %%ghost directive for libewl.so.1. - Added a pkgconfig requirement on the devel subpackage for version of Fedora <= 10. - Moved *_test binaries to the devel subpackage. * Fri Jul 3 2009 - John Guthrie - 0.5.2.042-6 - moved *many* *.c files to the devel package. - Removed *.a files. - Compacting format of %%post and %%postun sections. - Fixed rpmlint errors and warnings. * Sat Jun 27 2009 - John Guthrie - 0.5.2.042-5 - Fixed the summary. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-4 - Moved the pkgconfig files to the devel sub-package. - Added the BuildRequires of the main package as Requires for the devel sub-package. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-3 - Added the emotion-devel BuildRequirement - Made the file /usr/lib/libewl.so.1 into a %%ghost file. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-2 - Removed *.la files. * Sun Jun 21 2009 - John Guthrie - 0.5.2.042-1 - Initial spec file creation from source. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ewl/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:30:49 -0000 1.1 +++ .cvsignore 8 Jul 2009 22:37:15 -0000 1.2 @@ -0,0 +1 @@ +ewl-0.5.2.042.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/ewl/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:30:49 -0000 1.1 +++ sources 8 Jul 2009 22:37:15 -0000 1.2 @@ -0,0 +1 @@ +385082d91eb112671a5c64af295da91d ewl-0.5.2.042.tar.gz From jstanley at fedoraproject.org Wed Jul 8 22:38:15 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Wed, 8 Jul 2009 22:38:15 +0000 (UTC) Subject: rpms/trac-customfieldadmin-plugin/EL-5 trac-customfieldadmin-plugin.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090708223815.0778011C0097@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/trac-customfieldadmin-plugin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25263 Modified Files: sources Added Files: trac-customfieldadmin-plugin.spec Log Message: Initial import for EL-5 branch --- NEW FILE trac-customfieldadmin-plugin.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: trac-customfieldadmin-plugin Version: 0.1 Release: 0.1.svn5073%{?dist} Summary: Expose ticket custom fields via the web admin interface Group: Applications/Internet # BSD license derived from metadata in setup.py License: BSD URL: http://trac-hacks.org/wiki/PrivateTicketsPlugin # Produce via 'svn export -r5073 http://trac-hacks.org/svn/customfieldadminplugin/0.10 customfieldadminplugin-0.10' # tar -czvf trac-customfieldadminplugin-0.10.svn5073.tar.gz customfieldadminplugin-0.10 Source0: trac-customfieldadminplugin-0.10.svn5073.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools Requires: trac >= 0.10 # Only for 0.10 Requires: trac-webadmin-plugin %description A trac plugin to expose custom ticket fields via the admin web interface, instead of directly editing trac.ini %prep %setup -q -n customfieldadminplugin-0.10 %build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py build %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{python_sitelib}/* %changelog * Sat Jul 04 2009 Jon Stanley - 0.1-0.2.svn5073 - Correctly name package, correct SVN checkout instructions * Tue Dec 30 2008 Jon Stanley - 0.1-0.1.svn5073 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-customfieldadmin-plugin/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 1 Jul 2009 02:36:43 -0000 1.1 +++ sources 8 Jul 2009 22:37:44 -0000 1.2 @@ -0,0 +1 @@ +0c551244396c6725bb301ece9964ad57 trac-customfieldadminplugin-0.10.svn5073.tar.gz From jcwillia at fedoraproject.org Wed Jul 8 23:06:54 2009 From: jcwillia at fedoraproject.org (John Clark Williams) Date: Wed, 8 Jul 2009 23:06:54 +0000 (UTC) Subject: rpms/mock/devel .cvsignore, 1.49, 1.50 mock.spec, 1.74, 1.75 sources, 1.52, 1.53 Message-ID: <20090708230654.914D411C0097@cvs1.fedora.phx.redhat.com> Author: jcwillia Update of /cvs/pkgs/rpms/mock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1650 Modified Files: .cvsignore mock.spec sources Log Message: * Wed Jul 8 2009 Clark Williams - 0.9.17-1 - Patch from Jakub Jelinek for mounting /dev/pts correctly in the chroot (BZ# 510183) - raise exception when --shell specified for uninitialized chroot (BZ# 506288) - add directory and infrastructure to allow dbus to run inside chroot (BZ# 460574) - patch from Levente Farkas to fix exclude in EPEL 5 x86_64 config Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mock/devel/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 12 May 2009 02:00:40 -0000 1.49 +++ .cvsignore 8 Jul 2009 23:06:23 -0000 1.50 @@ -1 +1 @@ -mock-0.9.16.tar.gz +mock-0.9.17.tar.gz Index: mock.spec =================================================================== RCS file: /cvs/pkgs/rpms/mock/devel/mock.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- mock.spec 12 May 2009 02:00:40 -0000 1.74 +++ mock.spec 8 Jul 2009 23:06:23 -0000 1.75 @@ -1,7 +1,7 @@ # next four lines substituted by autoconf %define major 0 %define minor 9 -%define sub 16 +%define sub 17 %define extralevel %{nil} %define release_name mock %define release_version %{major}.%{minor}.%{sub}%{extralevel} @@ -97,6 +97,16 @@ fi %attr(02775, root, mock) %dir /var/cache/mock %changelog +* Wed Jul 8 2009 Clark Williams - 0.9.17-1 +- Patch from Jakub Jelinek for mounting + /dev/pts correctly in the chroot (BZ# 510183) +- raise exception when --shell specified for uninitialized chroot + (BZ# 506288) +- add directory and infrastructure to allow dbus to run inside + chroot (BZ# 460574) +- patch from Levente Farkas to fix exclude + in EPEL 5 x86_64 config + * Mon May 11 2009 Jesse Keating - 0.9.16-1 - Make F11 and rawhide build i586 on i386 targets. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mock/devel/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 12 May 2009 02:00:40 -0000 1.52 +++ sources 8 Jul 2009 23:06:23 -0000 1.53 @@ -1 +1 @@ -74e7d9d34996d9c2c85209430fa53bd6 mock-0.9.16.tar.gz +bdd13996330cdeae8c535af6a82ef2ea mock-0.9.17.tar.gz From jcwillia at fedoraproject.org Wed Jul 8 23:08:47 2009 From: jcwillia at fedoraproject.org (John Clark Williams) Date: Wed, 8 Jul 2009 23:08:47 +0000 (UTC) Subject: rpms/mock/F-11 .cvsignore, 1.49, 1.50 mock.spec, 1.74, 1.75 sources, 1.52, 1.53 Message-ID: <20090708230847.BC02F11C0097@cvs1.fedora.phx.redhat.com> Author: jcwillia Update of /cvs/pkgs/rpms/mock/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2265 Modified Files: .cvsignore mock.spec sources Log Message: * Wed Jul 8 2009 Clark Williams - 0.9.17-1 - Patch from Jakub Jelinek for mounting /dev/pts correctly in the chroot (BZ# 510183) - raise exception when --shell specified for uninitialized chroot (BZ# 506288) - add directory and infrastructure to allow dbus to run inside chroot (BZ# 460574) - patch from Levente Farkas to fix exclude in EPEL 5 x86_64 config Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-11/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 12 May 2009 02:06:07 -0000 1.49 +++ .cvsignore 8 Jul 2009 23:08:17 -0000 1.50 @@ -1 +1 @@ -mock-0.9.16.tar.gz +mock-0.9.17.tar.gz Index: mock.spec =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-11/mock.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- mock.spec 12 May 2009 02:06:07 -0000 1.74 +++ mock.spec 8 Jul 2009 23:08:17 -0000 1.75 @@ -1,7 +1,7 @@ # next four lines substituted by autoconf %define major 0 %define minor 9 -%define sub 16 +%define sub 17 %define extralevel %{nil} %define release_name mock %define release_version %{major}.%{minor}.%{sub}%{extralevel} @@ -97,6 +97,16 @@ fi %attr(02775, root, mock) %dir /var/cache/mock %changelog +* Wed Jul 8 2009 Clark Williams - 0.9.17-1 +- Patch from Jakub Jelinek for mounting + /dev/pts correctly in the chroot (BZ# 510183) +- raise exception when --shell specified for uninitialized chroot + (BZ# 506288) +- add directory and infrastructure to allow dbus to run inside + chroot (BZ# 460574) +- patch from Levente Farkas to fix exclude + in EPEL 5 x86_64 config + * Mon May 11 2009 Jesse Keating - 0.9.16-1 - Make F11 and rawhide build i586 on i386 targets. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-11/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 12 May 2009 02:06:07 -0000 1.52 +++ sources 8 Jul 2009 23:08:17 -0000 1.53 @@ -1 +1 @@ -74e7d9d34996d9c2c85209430fa53bd6 mock-0.9.16.tar.gz +bdd13996330cdeae8c535af6a82ef2ea mock-0.9.17.tar.gz From whot at fedoraproject.org Wed Jul 8 23:09:57 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 8 Jul 2009 23:09:57 +0000 (UTC) Subject: rpms/xorg-x11-xkb-utils/devel .cvsignore, 1.13, 1.14 sources, 1.11, 1.12 xorg-x11-xkb-utils.spec, 1.27, 1.28 xkbcomp-1.0.5-dont-overwrite.patch, 1.1, NONE Message-ID: <20090708230957.B5D6411C0097@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2579 Modified Files: .cvsignore sources xorg-x11-xkb-utils.spec Removed Files: xkbcomp-1.0.5-dont-overwrite.patch Log Message: * Thu Jul 09 2009 Peter Hutterer 7.4-3 - xkbcomp 1.1.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 25 Aug 2008 06:19:05 -0000 1.13 +++ .cvsignore 8 Jul 2009 23:09:27 -0000 1.14 @@ -2,4 +2,4 @@ setxkbmap-1.0.4.tar.bz2 xkbevd-1.0.2.tar.bz2 xkbprint-1.0.1.tar.bz2 xkbutils-1.0.1.tar.bz2 -xkbcomp-1.0.5.tar.bz2 +xkbcomp-1.1.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 25 Aug 2008 06:19:05 -0000 1.11 +++ sources 8 Jul 2009 23:09:27 -0000 1.12 @@ -2,4 +2,4 @@ 68f2a143716c23b566f8509d9498f516 xkbevd-1.0.2.tar.bz2 b98ae2d8b21c545b7b322d0b302efefa xkbprint-1.0.1.tar.bz2 84396a3dd75337caaae29d8fa5616fb1 xkbutils-1.0.1.tar.bz2 -6cc96c3e4ed5d9802fe717beac008f19 xkbcomp-1.0.5.tar.bz2 +362380be3b3bed56c9ce45622eafc2c9 xkbcomp-1.1.0.tar.bz2 Index: xorg-x11-xkb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/xorg-x11-xkb-utils.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-xkb-utils.spec 2 Jul 2009 20:51:14 -0000 1.27 +++ xorg-x11-xkb-utils.spec 8 Jul 2009 23:09:27 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 xkb utilities Name: xorg-x11-xkb-utils Version: 7.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -10,13 +10,11 @@ BuildRoot: %{_tmppath}/%{name}-%{version # use the macro so the doc dir is changed automagically %define xkbutils_version 1.0.1 Source0: ftp://ftp.x.org/pub/individual/app/xkbutils-%{xkbutils_version}.tar.bz2 -Source1: ftp://ftp.x.org/pub/individual/app/xkbcomp-1.0.5.tar.bz2 +Source1: ftp://ftp.x.org/pub/individual/app/xkbcomp-1.1.0.tar.bz2 Source2: ftp://ftp.x.org/pub/individual/app/xkbevd-1.0.2.tar.bz2 Source3: ftp://ftp.x.org/pub/individual/app/xkbprint-1.0.1.tar.bz2 Source4: ftp://ftp.x.org/pub/individual/app/setxkbmap-1.0.4.tar.bz2 -Patch1: xkbcomp-1.0.5-dont-overwrite.patch - BuildRequires: pkgconfig BuildRequires: libxkbfile-devel BuildRequires: libX11-devel @@ -50,7 +48,6 @@ X.Org X11 xkb gadgets %prep %setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -%patch1 -p0 -b .dont-overwrite %build export CFLAGS="$RPM_OPT_FLAGS -DHAVE_STRCASECMP -Os" @@ -92,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xkbprint.1* %changelog +* Thu Jul 09 2009 Peter Hutterer 7.4-3 +- xkbcomp 1.1.0 + * Thu Jul 02 2009 Adam Jackson 7.4-2 - Fix missing %%defattr in -extras --- xkbcomp-1.0.5-dont-overwrite.patch DELETED --- From jcwillia at fedoraproject.org Wed Jul 8 23:10:17 2009 From: jcwillia at fedoraproject.org (John Clark Williams) Date: Wed, 8 Jul 2009 23:10:17 +0000 (UTC) Subject: rpms/mock/F-10 .cvsignore, 1.49, 1.50 mock.spec, 1.70, 1.71 sources, 1.52, 1.53 Message-ID: <20090708231017.3261911C0097@cvs1.fedora.phx.redhat.com> Author: jcwillia Update of /cvs/pkgs/rpms/mock/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2719 Modified Files: .cvsignore mock.spec sources Log Message: * Wed Jul 8 2009 Clark Williams - 0.9.17-1 - Patch from Jakub Jelinek for mounting /dev/pts correctly in the chroot (BZ# 510183) - raise exception when --shell specified for uninitialized chroot (BZ# 506288) - add directory and infrastructure to allow dbus to run inside chroot (BZ# 460574) - patch from Levente Farkas to fix exclude in EPEL 5 x86_64 config Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-10/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 12 May 2009 02:08:05 -0000 1.49 +++ .cvsignore 8 Jul 2009 23:09:46 -0000 1.50 @@ -1 +1 @@ -mock-0.9.16.tar.gz +mock-0.9.17.tar.gz Index: mock.spec =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-10/mock.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- mock.spec 12 May 2009 02:08:05 -0000 1.70 +++ mock.spec 8 Jul 2009 23:09:47 -0000 1.71 @@ -1,7 +1,7 @@ # next four lines substituted by autoconf %define major 0 %define minor 9 -%define sub 16 +%define sub 17 %define extralevel %{nil} %define release_name mock %define release_version %{major}.%{minor}.%{sub}%{extralevel} @@ -97,6 +97,16 @@ fi %attr(02775, root, mock) %dir /var/cache/mock %changelog +* Wed Jul 8 2009 Clark Williams - 0.9.17-1 +- Patch from Jakub Jelinek for mounting + /dev/pts correctly in the chroot (BZ# 510183) +- raise exception when --shell specified for uninitialized chroot + (BZ# 506288) +- add directory and infrastructure to allow dbus to run inside + chroot (BZ# 460574) +- patch from Levente Farkas to fix exclude + in EPEL 5 x86_64 config + * Mon May 11 2009 Jesse Keating - 0.9.16-1 - Make F11 and rawhide build i586 on i386 targets. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mock/F-10/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 12 May 2009 02:08:05 -0000 1.52 +++ sources 8 Jul 2009 23:09:47 -0000 1.53 @@ -1 +1 @@ -74e7d9d34996d9c2c85209430fa53bd6 mock-0.9.16.tar.gz +bdd13996330cdeae8c535af6a82ef2ea mock-0.9.17.tar.gz From pkgdb at fedoraproject.org Wed Jul 8 23:23:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:23:40 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchcommits Message-ID: <20090708232340.712EE10F87E@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on callweaver (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From whot at fedoraproject.org Wed Jul 8 23:23:45 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 8 Jul 2009 23:23:45 +0000 (UTC) Subject: rpms/xorg-x11-xkb-utils/devel .cvsignore, 1.14, 1.15 sources, 1.12, 1.13 xorg-x11-xkb-utils.spec, 1.28, 1.29 Message-ID: <20090708232345.EA3E511C0097@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6579 Modified Files: .cvsignore sources xorg-x11-xkb-utils.spec Log Message: * Thu Jul 09 2009 Peter Hutterer 7.4-4 - setxkbmap 1.1.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 8 Jul 2009 23:09:27 -0000 1.14 +++ .cvsignore 8 Jul 2009 23:23:15 -0000 1.15 @@ -1,5 +1,5 @@ -setxkbmap-1.0.4.tar.bz2 xkbevd-1.0.2.tar.bz2 xkbprint-1.0.1.tar.bz2 xkbutils-1.0.1.tar.bz2 xkbcomp-1.1.0.tar.bz2 +setxkbmap-1.1.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 8 Jul 2009 23:09:27 -0000 1.12 +++ sources 8 Jul 2009 23:23:15 -0000 1.13 @@ -1,5 +1,5 @@ -6fab3bb176be9e510c5613d054ef1ca4 setxkbmap-1.0.4.tar.bz2 68f2a143716c23b566f8509d9498f516 xkbevd-1.0.2.tar.bz2 b98ae2d8b21c545b7b322d0b302efefa xkbprint-1.0.1.tar.bz2 84396a3dd75337caaae29d8fa5616fb1 xkbutils-1.0.1.tar.bz2 362380be3b3bed56c9ce45622eafc2c9 xkbcomp-1.1.0.tar.bz2 +2f902e0a89aaf2b19e06e7f26c6efb3a setxkbmap-1.1.0.tar.bz2 Index: xorg-x11-xkb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/xorg-x11-xkb-utils.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xorg-x11-xkb-utils.spec 8 Jul 2009 23:09:27 -0000 1.28 +++ xorg-x11-xkb-utils.spec 8 Jul 2009 23:23:15 -0000 1.29 @@ -1,7 +1,7 @@ Summary: X.Org X11 xkb utilities Name: xorg-x11-xkb-utils Version: 7.4 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -13,7 +13,7 @@ Source0: ftp://ftp.x.org/pub/individual/ Source1: ftp://ftp.x.org/pub/individual/app/xkbcomp-1.1.0.tar.bz2 Source2: ftp://ftp.x.org/pub/individual/app/xkbevd-1.0.2.tar.bz2 Source3: ftp://ftp.x.org/pub/individual/app/xkbprint-1.0.1.tar.bz2 -Source4: ftp://ftp.x.org/pub/individual/app/setxkbmap-1.0.4.tar.bz2 +Source4: ftp://ftp.x.org/pub/individual/app/setxkbmap-1.1.0.tar.bz2 BuildRequires: pkgconfig BuildRequires: libxkbfile-devel @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xkbprint.1* %changelog +* Thu Jul 09 2009 Peter Hutterer 7.4-4 +- setxkbmap 1.1.0 + * Thu Jul 09 2009 Peter Hutterer 7.4-3 - xkbcomp 1.1.0 From pkgdb at fedoraproject.org Wed Jul 8 23:23:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:23:41 +0000 Subject: [pkgdb] callweaver: itamarjp has requested commit Message-ID: <20090708232341.6189910F88D@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on callweaver (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Wed Jul 8 23:23:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:23:51 +0000 Subject: [pkgdb] callweaver: itamarjp has requested watchbugzilla Message-ID: <20090708232351.E83EA10F8A3@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on callweaver (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/callweaver From pkgdb at fedoraproject.org Wed Jul 8 23:25:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:25:52 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchbugzilla Message-ID: <20090708232552.28E4110F810@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchbugzilla acl on spandsp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Wed Jul 8 23:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:25:53 +0000 Subject: [pkgdb] spandsp: itamarjp has requested watchcommits Message-ID: <20090708232553.13A3C10F88D@bastion2.fedora.phx.redhat.com> itamarjp has requested the watchcommits acl on spandsp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From pkgdb at fedoraproject.org Wed Jul 8 23:25:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 08 Jul 2009 23:25:54 +0000 Subject: [pkgdb] spandsp: itamarjp has requested commit Message-ID: <20090708232554.3502010F89B@bastion2.fedora.phx.redhat.com> itamarjp has requested the commit acl on spandsp (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spandsp From giesen at fedoraproject.org Thu Jul 9 00:38:47 2009 From: giesen at fedoraproject.org (giesen) Date: Thu, 9 Jul 2009 00:38:47 +0000 (UTC) Subject: rpms/daemonize/devel daemonize.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090709003847.DB00511C0097@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/daemonize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29100/devel Modified Files: .cvsignore sources Added Files: daemonize.spec import.log Log Message: Initial import into CVS. --- NEW FILE daemonize.spec --- Name: daemonize Version: 1.5.6 Release: 1%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet License: BSD URL: http://www.clapper.org/software/daemonize/ Source0: http://www.clapper.org/software/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description daemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn???t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you???ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon. %prep %setup0 -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc CHANGELOG LICENSE README %{_sbindir}/daemonize %{_mandir}/man1/daemonize.1.gz %changelog * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen 1.5.4-1 - Initial Spec file creation for Fedora --- NEW FILE import.log --- daemonize-1_5_6-1_fc11:HEAD:daemonize-1.5.6-1.fc11.src.rpm:1247085409 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:32:45 -0000 1.1 +++ .cvsignore 9 Jul 2009 00:38:16 -0000 1.2 @@ -0,0 +1 @@ +daemonize-1.5.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:32:45 -0000 1.1 +++ sources 9 Jul 2009 00:38:16 -0000 1.2 @@ -0,0 +1 @@ +2f5fbb8788ebe803ccaff3cd4b5c3188 daemonize-1.5.6.tar.gz From giesen at fedoraproject.org Thu Jul 9 00:42:37 2009 From: giesen at fedoraproject.org (giesen) Date: Thu, 9 Jul 2009 00:42:37 +0000 (UTC) Subject: rpms/daemonize/F-11 daemonize.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090709004237.C0B2011C0097@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/daemonize/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30884/F-11 Modified Files: .cvsignore sources Added Files: daemonize.spec import.log Log Message: Initial import to CVS. --- NEW FILE daemonize.spec --- Name: daemonize Version: 1.5.6 Release: 1%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet License: BSD URL: http://www.clapper.org/software/daemonize/ Source0: http://www.clapper.org/software/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description daemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn???t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you???ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon. %prep %setup0 -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc CHANGELOG LICENSE README %{_sbindir}/daemonize %{_mandir}/man1/daemonize.1.gz %changelog * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen 1.5.4-1 - Initial Spec file creation for Fedora --- NEW FILE import.log --- daemonize-1_5_6-1_fc11:F-11:daemonize-1.5.6-1.fc11.src.rpm:1247085677 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:32:45 -0000 1.1 +++ .cvsignore 9 Jul 2009 00:42:07 -0000 1.2 @@ -0,0 +1 @@ +daemonize-1.5.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:32:45 -0000 1.1 +++ sources 9 Jul 2009 00:42:07 -0000 1.2 @@ -0,0 +1 @@ +2f5fbb8788ebe803ccaff3cd4b5c3188 daemonize-1.5.6.tar.gz From giesen at fedoraproject.org Thu Jul 9 00:45:22 2009 From: giesen at fedoraproject.org (giesen) Date: Thu, 9 Jul 2009 00:45:22 +0000 (UTC) Subject: rpms/daemonize/F-10 daemonize.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090709004522.ADA6F11C0097@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/daemonize/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31920/F-10 Modified Files: .cvsignore sources Added Files: daemonize.spec import.log Log Message: Initial import to CVS. --- NEW FILE daemonize.spec --- Name: daemonize Version: 1.5.6 Release: 1%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet License: BSD URL: http://www.clapper.org/software/daemonize/ Source0: http://www.clapper.org/software/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description daemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn???t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you???ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon. %prep %setup0 -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc CHANGELOG LICENSE README %{_sbindir}/daemonize %{_mandir}/man1/daemonize.1.gz %changelog * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen 1.5.4-1 - Initial Spec file creation for Fedora --- NEW FILE import.log --- daemonize-1_5_6-1_fc11:F-10:daemonize-1.5.6-1.fc11.src.rpm:1247085896 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:32:45 -0000 1.1 +++ .cvsignore 9 Jul 2009 00:45:21 -0000 1.2 @@ -0,0 +1 @@ +daemonize-1.5.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:32:45 -0000 1.1 +++ sources 9 Jul 2009 00:45:22 -0000 1.2 @@ -0,0 +1 @@ +2f5fbb8788ebe803ccaff3cd4b5c3188 daemonize-1.5.6.tar.gz From giesen at fedoraproject.org Thu Jul 9 00:47:27 2009 From: giesen at fedoraproject.org (giesen) Date: Thu, 9 Jul 2009 00:47:27 +0000 (UTC) Subject: rpms/daemonize/EL-4 daemonize.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090709004727.903DF11C0097@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/daemonize/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv407/EL-4 Modified Files: .cvsignore sources Added Files: daemonize.spec import.log Log Message: Initial import to CVS. --- NEW FILE daemonize.spec --- Name: daemonize Version: 1.5.6 Release: 1%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet License: BSD URL: http://www.clapper.org/software/daemonize/ Source0: http://www.clapper.org/software/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description daemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn???t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you???ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon. %prep %setup0 -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc CHANGELOG LICENSE README %{_sbindir}/daemonize %{_mandir}/man1/daemonize.1.gz %changelog * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen 1.5.4-1 - Initial Spec file creation for Fedora --- NEW FILE import.log --- daemonize-1_5_6-1_fc11:EL-4:daemonize-1.5.6-1.fc11.src.rpm:1247086006 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:32:45 -0000 1.1 +++ .cvsignore 9 Jul 2009 00:47:27 -0000 1.2 @@ -0,0 +1 @@ +daemonize-1.5.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:32:45 -0000 1.1 +++ sources 9 Jul 2009 00:47:27 -0000 1.2 @@ -0,0 +1 @@ +2f5fbb8788ebe803ccaff3cd4b5c3188 daemonize-1.5.6.tar.gz From giesen at fedoraproject.org Thu Jul 9 00:48:56 2009 From: giesen at fedoraproject.org (giesen) Date: Thu, 9 Jul 2009 00:48:56 +0000 (UTC) Subject: rpms/daemonize/EL-5 daemonize.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090709004856.3A6D411C0097@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/daemonize/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv837/EL-5 Modified Files: .cvsignore sources Added Files: daemonize.spec import.log Log Message: Initial import to CVS. --- NEW FILE daemonize.spec --- Name: daemonize Version: 1.5.6 Release: 1%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet License: BSD URL: http://www.clapper.org/software/daemonize/ Source0: http://www.clapper.org/software/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description daemonize runs a command as a Unix daemon. As defined in W. Richard Stevens' 1990 book, Unix Network Programming (Addison-Wesley, 1990), a daemon is "a process that executes 'in the background' (i.e., without an associated terminal or login shell) either waiting for some event to occur, or waiting to perform some specified task on a periodic basis." Upon startup, a typical daemon program will: - Close all open file descriptors (especially standard input, standard output and standard error) - Change its working directory to the root filesystem, to ensure that it doesn???t tie up another filesystem and prevent it from being unmounted - Reset its umask value - Run in the background (i.e., fork) - Disassociate from its process group (usually a shell), to insulate itself from signals (such as HUP) sent to the process group - Ignore all terminal I/O signals - Disassociate from the control terminal (and take steps not to reacquire one) - Handle any SIGCLD signals Most programs that are designed to be run as daemons do that work for themselves. However, you???ll occasionally run across one that does not. When you must run a daemon program that does not properly make itself into a true Unix daemon, you can use daemonize to force it to run as a true daemon. %prep %setup0 -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc CHANGELOG LICENSE README %{_sbindir}/daemonize %{_mandir}/man1/daemonize.1.gz %changelog * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch * Sun Jul 05 2009 Gary T. Giesen 1.5.4-5 - Changed spec file to preserve timestamp on files for make install * Sun Jul 05 2009 Gary T. Giesen 1.5.4-4 - Fixed missed line in patch for compiler flags * Sun Jul 05 2009 Gary T. Giesen 1.5.4-3 - Further spec file cleanup - New Makefile patch to make build respect compiler flags and install man pages * Sun Jul 05 2009 Gary T. Giesen 1.5.4-2 - Spec file cleanup for consistency with Fedora Packaging Guidelines - Added install for man pages (it's not installed by 'make install') * Sat Jul 04 2009 Gary T. Giesen 1.5.4-1 - Initial Spec file creation for Fedora --- NEW FILE import.log --- daemonize-1_5_6-1_fc11:EL-5:daemonize-1.5.6-1.fc11.src.rpm:1247086076 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:32:45 -0000 1.1 +++ .cvsignore 9 Jul 2009 00:48:25 -0000 1.2 @@ -0,0 +1 @@ +daemonize-1.5.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:32:45 -0000 1.1 +++ sources 9 Jul 2009 00:48:25 -0000 1.2 @@ -0,0 +1 @@ +2f5fbb8788ebe803ccaff3cd4b5c3188 daemonize-1.5.6.tar.gz From spot at fedoraproject.org Thu Jul 9 01:21:33 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 9 Jul 2009 01:21:33 +0000 (UTC) Subject: rpms/gxemul/devel .cvsignore, 1.11, 1.12 gxemul.spec, 1.16, 1.17 sources, 1.11, 1.12 Message-ID: <20090709012133.9167111C0097@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/gxemul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13655/devel Modified Files: .cvsignore gxemul.spec sources Log Message: update to 0.4.7.2 for full 88K emulation Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/gxemul/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 18 Nov 2008 21:58:16 -0000 1.11 +++ .cvsignore 9 Jul 2009 01:21:33 -0000 1.12 @@ -1 +1 @@ -gxemul-0.4.6.6.tar.gz +gxemul-0.4.7.2.tar.gz Index: gxemul.spec =================================================================== RCS file: /cvs/extras/rpms/gxemul/devel/gxemul.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gxemul.spec 25 Feb 2009 03:08:17 -0000 1.16 +++ gxemul.spec 9 Jul 2009 01:21:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: gxemul -Version: 0.4.6.6 -Release: 2%{?dist} +Version: 0.4.7.2 +Release: 1%{?dist} License: BSD Group: Development/Tools Summary: Instruction-level machine emulator @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gxemul.* %changelog +* Wed Jul 8 2009 Tom "spot" Callaway - 0.4.7.2-1 +- update to 0.4.7.2 + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/gxemul/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 18 Nov 2008 21:58:16 -0000 1.11 +++ sources 9 Jul 2009 01:21:33 -0000 1.12 @@ -1 +1 @@ -0f8a428556a3938c2037dc6263e760ea gxemul-0.4.6.6.tar.gz +a2ec4f58a831dd883c196c4fd362b702 gxemul-0.4.7.2.tar.gz From spot at fedoraproject.org Thu Jul 9 01:22:03 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 9 Jul 2009 01:22:03 +0000 (UTC) Subject: rpms/gxemul/F-10 gxemul.spec,1.14,1.15 sources,1.10,1.11 Message-ID: <20090709012203.284BF11C0097@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/gxemul/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13655/F-10 Modified Files: gxemul.spec sources Log Message: update to 0.4.7.2 for full 88K emulation Index: gxemul.spec =================================================================== RCS file: /cvs/extras/rpms/gxemul/F-10/gxemul.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gxemul.spec 12 Sep 2008 15:41:24 -0000 1.14 +++ gxemul.spec 9 Jul 2009 01:21:32 -0000 1.15 @@ -1,5 +1,5 @@ Name: gxemul -Version: 0.4.6.5 +Version: 0.4.7.2 Release: 1%{?dist} License: BSD Group: Development/Tools @@ -41,6 +41,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gxemul.* %changelog +* Wed Jul 8 2009 Tom "spot" Callaway - 0.4.7.2-1 +- update to 0.4.7.2 + +* Tue Feb 24 2009 Fedora Release Engineering - 0.4.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Nov 18 2008 Lubomir Rintel - 0.4.6.6-1 +- update to 0.4.6.6 + * Fri Sep 12 2008 Tom "spot" Callaway - 0.4.6.5-1 - update to 0.4.6.5 Index: sources =================================================================== RCS file: /cvs/extras/rpms/gxemul/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 12 Sep 2008 15:41:24 -0000 1.10 +++ sources 9 Jul 2009 01:21:32 -0000 1.11 @@ -1 +1 @@ -8ffe3fde1c2f17ff54500665dce82a22 gxemul-0.4.6.5.tar.gz +a2ec4f58a831dd883c196c4fd362b702 gxemul-0.4.7.2.tar.gz From spot at fedoraproject.org Thu Jul 9 01:22:03 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 9 Jul 2009 01:22:03 +0000 (UTC) Subject: rpms/gxemul/F-11 gxemul.spec,1.16,1.17 sources,1.11,1.12 Message-ID: <20090709012203.4C2DF11C02C4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/gxemul/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13655/F-11 Modified Files: gxemul.spec sources Log Message: update to 0.4.7.2 for full 88K emulation Index: gxemul.spec =================================================================== RCS file: /cvs/extras/rpms/gxemul/F-11/gxemul.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gxemul.spec 25 Feb 2009 03:08:17 -0000 1.16 +++ gxemul.spec 9 Jul 2009 01:21:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: gxemul -Version: 0.4.6.6 -Release: 2%{?dist} +Version: 0.4.7.2 +Release: 1%{?dist} License: BSD Group: Development/Tools Summary: Instruction-level machine emulator @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gxemul.* %changelog +* Wed Jul 8 2009 Tom "spot" Callaway - 0.4.7.2-1 +- update to 0.4.7.2 + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/gxemul/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 18 Nov 2008 21:58:16 -0000 1.11 +++ sources 9 Jul 2009 01:21:33 -0000 1.12 @@ -1 +1 @@ -0f8a428556a3938c2037dc6263e760ea gxemul-0.4.6.6.tar.gz +a2ec4f58a831dd883c196c4fd362b702 gxemul-0.4.7.2.tar.gz From rdieter at fedoraproject.org Thu Jul 9 03:19:45 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 9 Jul 2009 03:19:45 +0000 (UTC) Subject: rpms/uw-imap/devel imap-2007e-shared.patch, 1.1, 1.2 uw-imap.spec, 1.61, 1.62 Message-ID: <20090709031946.2709111C0097@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/uw-imap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15625 Modified Files: imap-2007e-shared.patch uw-imap.spec Log Message: * Wed Jul 08 2009 Rex Dieter - 2007e-7 - fix shared.patch to use CFLAGS for osdep.c too imap-2007e-shared.patch: Index: imap-2007e-shared.patch =================================================================== RCS file: /cvs/pkgs/rpms/uw-imap/devel/imap-2007e-shared.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- imap-2007e-shared.patch 8 Jul 2009 00:31:51 -0000 1.1 +++ imap-2007e-shared.patch 9 Jul 2009 03:19:43 -0000 1.2 @@ -57,7 +57,7 @@ diff -up imap-2007e/src/osdep/unix/Makef OSCFLAGS + +osdep.o: $(OSDEPS) -+ $(CC) $(CFLAGS) `$(CAT) OSCFLAGS` -c osdep.c ++ $(CC) -fPIC -DPIC -D_REENTRANT `$(CAT) CFLAGS` `$(CAT) OSCFLAGS` -c osdep.c + @echo ======================================================================== @echo Building OS-dependent module @echo If you get No such file error messages for files x509.h, ssl.h, @@ -68,7 +68,7 @@ diff -up imap-2007e/src/osdep/unix/Makef + @echo ======================================================================== + +osdep.so: $(OSDEPS) -+ $(CC) -fPIC -DPIC -D_REENTRANT -c $(CFLAGS) `cat OSCFLAGS` osdep.c -o $@ ++ $(CC) -fPIC -DPIC -D_REENTRANT `$(CAT) CFLAGS` `cat OSCFLAGS` -c osdep.c -o $@ osdep.c: osdepbas.c osdepckp.c osdeplog.c osdepssl.c $(CAT) osdepbas.c osdepckp.c osdeplog.c osdepssl.c > osdep.c Index: uw-imap.spec =================================================================== RCS file: /cvs/pkgs/rpms/uw-imap/devel/uw-imap.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- uw-imap.spec 8 Jul 2009 00:38:11 -0000 1.61 +++ uw-imap.spec 9 Jul 2009 03:19:43 -0000 1.62 @@ -9,7 +9,7 @@ Summary: UW Server daemons for IMAP and POP network mail protocols Name: uw-imap Version: 2007e -Release: 6%{?dist} +Release: 7%{?dist} # See LICENSE.txt, http://www.apache.org/licenses/LICENSE-2.0 License: ASL 2.0 @@ -307,6 +307,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 08 2009 Rex Dieter - 2007e-7 +- fix shared.patch to use CFLAGS for osdep.c too + * Tue Jul 07 2009 Rex Dieter - 2007e-6 - build with -fPIC - rebase patches (patch fuzz=0) From mclasen at fedoraproject.org Thu Jul 9 04:16:06 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 9 Jul 2009 04:16:06 +0000 (UTC) Subject: rpms/fprintd/devel pam-module.patch, NONE, 1.1 fprintd.spec, 1.13, 1.14 Message-ID: <20090709041606.976FB11C02C3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/fprintd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18234 Modified Files: fprintd.spec Added Files: pam-module.patch Log Message: fix the pam module pam-module.patch: --- NEW FILE pam-module.patch --- diff -up fprintd-0.1/pam/Makefile.am.pam fprintd-0.1/pam/Makefile.am --- fprintd-0.1/pam/Makefile.am.pam 2009-07-09 00:08:40.474479777 -0400 +++ fprintd-0.1/pam/Makefile.am 2009-07-09 00:08:17.307483156 -0400 @@ -5,7 +5,7 @@ pammoddir=$(libdir)/security pam_fprintd_la_SOURCES = pam_fprintd.c $(MARSHALFILES) pam_fprintd_la_CFLAGS = -fPIC $(WARN_CFLAGS) $(GLIB_CFLAGS) -pam_fprintd_la_LDFLAGS = -module +pam_fprintd_la_LDFLAGS = -avoid-version -module pam_fprintd_la_LIBADD = $(PAM_LIBS) $(GLIB_LIBS) MARSHALFILES = marshal.c marshal.h Index: fprintd.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprintd/devel/fprintd.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fprintd.spec 20 Jun 2009 15:02:16 -0000 1.13 +++ fprintd.spec 9 Jul 2009 04:15:35 -0000 1.14 @@ -3,7 +3,7 @@ Name: fprintd Version: 0.1 -Release: 11.git%{short_hash}%{?dist} +Release: 12.git%{short_hash}%{?dist} Summary: D-Bus service for Fingerprint reader access Group: System Environment/Daemons @@ -17,6 +17,7 @@ Source0: fprintd-0.1-%{short_hash}.tar.b Patch1: 0001-Detect-when-a-device-is-disconnected.patch # https://bugzilla.redhat.com/show_bug.cgi?id=498368 Patch2: polkit1.patch +Patch3: pam-module.patch Url: http://www.reactivated.net/fprint/wiki/Fprintd BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExcludeArch: s390 s390x @@ -62,6 +63,7 @@ fingerprint readers access. %setup -q -n %{name}-%{version} %patch1 -p1 %patch2 -p1 -b .polkit1 +%patch3 -p1 -b .pam-module autoreconf -i -f @@ -104,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/interfaces/net.reactivated.Fprint.Manager.xml %changelog +* Thu Jul 9 2009 Matthias Clasen 0.1-12.git04fd09cfa +- Fix the pam module (#510152) + * Sat Jun 20 2009 Bastien Nocera 0.1-11.git04fd09cfa - Remove obsolete patch From pravins at fedoraproject.org Thu Jul 9 05:07:27 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Thu, 9 Jul 2009 05:07:27 +0000 (UTC) Subject: rpms/kacst-fonts/devel kacst-fonts.spec,1.6,1.7 Message-ID: <20090709050727.D630211C02C3@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/kacst-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10683 Modified Files: kacst-fonts.spec Log Message: * Thu Jul 09 2009 Pravin Satpute - 2.0-4 - cleaned rpmlink Index: kacst-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/kacst-fonts/devel/kacst-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kacst-fonts.spec 8 Jul 2009 10:12:43 -0000 1.6 +++ kacst-fonts.spec 9 Jul 2009 05:07:23 -0000 1.7 @@ -8,11 +8,12 @@ from the King Abdulaziz City for Science Name: %{fontname}-fonts Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Source: http://downloads.sourceforge.net/sourceforge/arabeyes/%{fontname}_fonts_%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch +BuildRequires: dos2unix BuildRequires: fontpackages-devel > 1.13 Group: User Interface/X Obsoletes: fonts-arabic <= 2.1-2 @@ -214,7 +215,7 @@ This package contains title type fonts f %prep %setup -q -n KacstArabicFonts-%{version} -#find . -not -name \*.ttf -type f -exec dos2unix -k {} \; +find . -not -name \*.ttf -type f -exec dos2unix -k {} \; %build echo "Nothing to do in Build." @@ -234,6 +235,9 @@ rm -rf %{buildroot} %dir %{fontdir} %changelog +* Thu Jul 09 2009 Pravin Satpute - 2.0-4 +- cleaned rpmlink + * Wed Jul 08 2009 Pravin Satpute - 2.0-3 - updated spec as per new font packaging guideline From pravins at fedoraproject.org Thu Jul 9 05:40:58 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Thu, 9 Jul 2009 05:40:58 +0000 (UTC) Subject: rpms/paktype-fonts/devel paktype-fonts.spec,1.2,1.3 Message-ID: <20090709054058.6FB3D11C00CE@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/paktype-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30649 Modified Files: paktype-fonts.spec Log Message: * Thu Jul 9 2009 Pravin Satpute 2.0-4 - updated as per new font packaging guideline Index: paktype-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/paktype-fonts/devel/paktype-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- paktype-fonts.spec 26 Feb 2009 09:26:05 -0000 1.2 +++ paktype-fonts.spec 9 Jul 2009 05:40:58 -0000 1.3 @@ -2,22 +2,60 @@ %define fontdir %{_datadir}/fonts/%{fontname} %define paktype paktype-20061222 +# Common description +%define common_desc \ +The paktype-fonts package contains fonts for the display of \ +Arabic from the PakType by Lateef Sagar. + Name: %{fontname}-fonts Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 with exceptions Source: %{paktype}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires : dos2unix +BuildRequires: fontpackages-devel Group: User Interface/X Summary: Fonts for Arabic from PakType URL: https://sourceforge.net/projects/paktype/ %description -The paktype-fonts package contains fonts for the display of +%common_desc + +%package common +Summary: Common files for paktype-fonts +Group: User Interface/X +Requires: fontpackages-filesystem +%description common +%common_desc + +%package -n %{fontname}-naqsh-fonts +Summary: Naqsh Fonts for Arabic from PakType +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 with exceptions +Provides: %{fontname}-fonts = %{version}-%{release} +Obsoletes: %{fontname}-fonts < 2.0-4 +%description -n %{fontname}-naqsh-fonts +The paktype-naqsh-fonts package contains fonts for the display of\ Arabic from the PakType by Lateef Sagar. +%_font_pkg -n naqsh PakTypeNaqsh.ttf + +%package -n %{fontname}-tehreer-fonts +Summary: Tehreer Fonts for Arabic from PakType +Group: User Interface/X +Requires: %{name}-common = %{version}-%{release} +License: GPLv2 with exceptions +Provides: %{fontname}-fonts = %{version}-%{release} +Obsoletes: %{fontname}-fonts < 2.0-4 +%description -n %{fontname}-tehreer-fonts +The paktype-tehreer-fonts package contains fonts for the display of\ +Arabic from the PakType by Lateef Sagar. + +%_font_pkg -n tehreer PakTypeTehreer.ttf + %prep %setup -q -n %{paktype} find . -not -name \*.ttf -type f -exec dos2unix -k {} \; @@ -34,25 +72,16 @@ install -m 0644 -p *.ttf %{buildroot}%{f %clean rm -rf %{buildroot} -%post -if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache %{fontdir} -fi - -%postun -if [ "$1" = "0" ]; then - if [ -x %{_bindir}/fc-cache ]; then - %{_bindir}/fc-cache %{fontdir} - fi -fi -%files +%files common %defattr(-,root,root,-) %doc *.txt %dir %{fontdir} -%{fontdir}/*.ttf %changelog +* Thu Jul 9 2009 Pravin Satpute 2.0-4 +- updated as per new font packaging guideline + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From tsmetana at fedoraproject.org Thu Jul 9 07:09:46 2009 From: tsmetana at fedoraproject.org (Tomas Smetana) Date: Thu, 9 Jul 2009 07:09:46 +0000 (UTC) Subject: rpms/tvtime/devel tvtime-1.0.2-alsamixer2.patch, 1.1, 1.2 tvtime.spec, 1.43, 1.44 Message-ID: <20090709070946.CD99911C00CE@cvs1.fedora.phx.redhat.com> Author: tsmetana Update of /cvs/pkgs/rpms/tvtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1292 Modified Files: tvtime-1.0.2-alsamixer2.patch tvtime.spec Log Message: * Thu Jul 09 2009 Tomas Smetana 1.0.2-11 - fix a typo in the default config file tvtime-1.0.2-alsamixer2.patch: Index: tvtime-1.0.2-alsamixer2.patch =================================================================== RCS file: /cvs/pkgs/rpms/tvtime/devel/tvtime-1.0.2-alsamixer2.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tvtime-1.0.2-alsamixer2.patch 28 Jun 2009 10:01:27 -0000 1.1 +++ tvtime-1.0.2-alsamixer2.patch 9 Jul 2009 07:09:43 -0000 1.2 @@ -16,7 +16,7 @@ diff -up tvtime-1.0.2/docs/html/default. + or "hw:0/CD") --> - @@ -1722,7 +1737,21 @@ dejavu-serif-fonts ipa-pgothic-fonts jomolhari-fonts - kacst-fonts + kacst-book-fonts + kacst-digital-fonts + kacst-letter-fonts + kacst-office-fonts + kacst-pen-fonts + kacst-qurn-fonts + kacst-titlel-fonts + kacst-art-fonts + kacst-decorative-fonts + kacst-farsi-fonts + kacst-naskh-fonts + kacst-one-fonts + kacst-poster-fonts + kacst-screen-fonts + kacst-title-fonts khmeros-base-fonts liberation-mono-fonts liberation-sans-fonts @@ -1738,7 +1767,8 @@ lohit-tamil-fonts lohit-telugu-fonts padauk-fonts - paktype-fonts + paktype-tehreer-fonts + paktype-naqsh-fonts smc-meera-fonts stix-fonts thai-scalable-waree-fonts @@ -5602,13 +5632,28 @@ ur m17n-contrib-urdu - paktype-fonts + paktype-tehreer-fonts + paktype-naqsh-fonts hunspell-ur openoffice.org-langpack-ur dejavu-sans-fonts dejavu-sans-mono-fonts nafees-web-naskh-fonts - kacst-fonts + kacst-book-fonts + kacst-digital-fonts + kacst-letter-fonts + kacst-office-fonts + kacst-pen-fonts + kacst-qurn-fonts + kacst-titlel-fonts + kacst-art-fonts + kacst-decorative-fonts + kacst-farsi-fonts + kacst-naskh-fonts + kacst-one-fonts + kacst-poster-fonts + kacst-screen-fonts + kacst-title-fonts From peter at fedoraproject.org Fri Jul 10 11:55:13 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 10 Jul 2009 11:55:13 +0000 (UTC) Subject: rpms/python-application/EL-5 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 python-application.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090710115513.2FCA211C0048@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/python-application/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3686/EL-5 Modified Files: .cvsignore import.log python-application.spec sources Log Message: ver. 1.1.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 3 Jun 2009 17:54:29 -0000 1.2 +++ .cvsignore 10 Jul 2009 11:55:12 -0000 1.3 @@ -1 +1 @@ -python-application-1.1.1.tar.gz +python-application-1.1.2.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 3 Jun 2009 17:54:29 -0000 1.1 +++ import.log 10 Jul 2009 11:55:12 -0000 1.2 @@ -1 +1,2 @@ python-application-1_1_1-2_fc10:EL-5:python-application-1.1.1-2.fc10.src.rpm:1244051134 +python-application-1_1_2-1_fc11:EL-5:python-application-1.1.2-1.fc11.src.rpm:1247226876 Index: python-application.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-5/python-application.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-application.spec 3 Jun 2009 17:54:29 -0000 1.1 +++ python-application.spec 10 Jul 2009 11:55:12 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-application -Version: 1.1.1 -Release: 2%{?dist} +Version: 1.1.2 +Release: 1%{?dist} Summary: Basic building blocks for python applications Group: Development/Languages License: LGPLv2+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Peter Lemenkov 1.1.2-1 +- Ver. 1.1.2 + * Mon Jun 1 2009 Peter Lemenkov 1.1.1-2 - Added missing BR python-setuptools-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 3 Jun 2009 17:54:29 -0000 1.2 +++ sources 10 Jul 2009 11:55:12 -0000 1.3 @@ -1 +1 @@ -dd583f1e626b22676efdafee0d9c83e9 python-application-1.1.1.tar.gz +86ea28bc195e38c02655c47a2e3583c7 python-application-1.1.2.tar.gz From drago01 at fedoraproject.org Fri Jul 10 11:57:02 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 11:57:02 +0000 (UTC) Subject: rpms/compiz/devel compiz-0.8.2-pin-initial-plugins.patch, 1.1, 1.2 compiz.spec, 1.168, 1.169 Message-ID: <20090710115702.7E8B511C0048@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4521 Modified Files: compiz-0.8.2-pin-initial-plugins.patch compiz.spec Log Message: fix bug 473896 compiz-0.8.2-pin-initial-plugins.patch: Index: compiz-0.8.2-pin-initial-plugins.patch =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz-0.8.2-pin-initial-plugins.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compiz-0.8.2-pin-initial-plugins.patch 25 May 2009 19:46:42 -0000 1.1 +++ compiz-0.8.2-pin-initial-plugins.patch 10 Jul 2009 11:57:02 -0000 1.2 @@ -1,6 +1,6 @@ diff -upNr compiz-0.8.2.orign/include/compiz-core.h compiz-0.8.2/include/compiz-core.h --- compiz-0.8.2.orign/include/compiz-core.h 2009-02-15 10:10:23.000000000 +0100 -+++ compiz-0.8.2/include/compiz-core.h 2009-05-25 21:15:24.502138356 +0200 ++++ compiz-0.8.2/include/compiz-core.h 2009-07-10 13:53:53.353467924 +0200 @@ -220,6 +220,9 @@ extern Bool noDetection; extern Bool useDesktopHints; extern Bool onlyCurrentScreen; @@ -13,50 +13,123 @@ diff -upNr compiz-0.8.2.orign/include/co diff -upNr compiz-0.8.2.orign/src/display.c compiz-0.8.2/src/display.c --- compiz-0.8.2.orign/src/display.c 2009-02-15 10:10:23.000000000 +0100 -+++ compiz-0.8.2/src/display.c 2009-05-25 21:15:24.503089882 +0200 -@@ -675,7 +675,7 @@ updatePlugins (CompDisplay *d) ++++ compiz-0.8.2/src/display.c 2009-07-10 13:53:53.354468151 +0200 +@@ -675,24 +675,59 @@ updatePlugins (CompDisplay *d) { CompOption *o; CompPlugin *p, **pop = 0; - int nPop, i, j; -+ int nPop, i, j, k; ++ int nPop, i, j, k, dupPluginCount; ++ CompOptionValue *pList; ++ int pList_count; d->dirtyPluginList = FALSE; -@@ -715,6 +715,30 @@ updatePlugins (CompDisplay *d) - free (d->plugin.list.value[d->plugin.list.nValue].s); - } + o = &d->opt[COMP_DISPLAY_OPTION_ACTIVE_PLUGINS]; -+ for ( k = 0; k < nInitialPlugins; k++) -+ { -+ for ( j = 0; j < nPop; j++) -+ { -+ if (pop[j] && strcmp (pop[j]->vTable->name, -+ initialPlugins[k]) == 0) -+ break; -+ } -+ -+ if ( j == (nPop - 1)) -+ { -+ p = loadPlugin (initialPlugins[k]); -+ if (p) -+ { -+ if (!pushPlugin (p)) -+ { -+ unloadPlugin (p); -+ p = 0; +- /* The old plugin list always begins with the core plugin. To make sure +- we don't unnecessarily unload plugins if the new plugin list does not +- contain the core plugin, we have to use an offset */ +- if (o->value.list.nValue > 0 && strcmp (o->value.list.value[0].s, "core")) +- i = 0; +- else +- i = 1; ++ /* Make sure the new plugin list always list core first, then the ++ initial plugins... */ ++ dupPluginCount = 0; ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ ++dupPluginCount; ++ else ++ for (j=0; j < nInitialPlugins; ++j) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[j]) == 0) { ++ ++dupPluginCount; ++ break; + } -+ } -+ } + } + ++ pList_count = 1+nInitialPlugins+o->value.list.nValue-dupPluginCount; + - for (; i < o->value.list.nValue; i++) ++ pList = malloc(sizeof(CompOptionValue) * pList_count); ++ if (!pList) { ++ (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ return; ++ } ++ ++ pList[0].s = "core"; ++ for (j=0; j < nInitialPlugins; ++j) ++ pList[j+1].s = initialPlugins[j]; ++ ++j; ++ ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ goto L_nextPlugin; ++ else ++ for (k=0; k < nInitialPlugins; ++k) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[k]) == 0) ++ goto L_nextPlugin; ++ pList[j++].s = o->value.list.value[i].s; ++ L_nextPlugin: ++ (void)0; ++ } ++ ++ assert(j == pList_count); + + /* j is initialized to 1 to make sure we never pop the core plugin */ +- for (j = 1; j < d->plugin.list.nValue && i < o->value.list.nValue; i++, j++) ++ for (i = j = 1; j < d->plugin.list.nValue && i < pList_count; i++, j++) + { +- if (strcmp (d->plugin.list.value[j].s, o->value.list.value[i].s)) ++ if (strcmp (d->plugin.list.value[j].s, pList[i].s)) + break; + } + +@@ -704,6 +739,7 @@ updatePlugins (CompDisplay *d) + if (!pop) + { + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ free(pList); + return; + } + } +@@ -715,13 +751,13 @@ updatePlugins (CompDisplay *d) + free (d->plugin.list.value[d->plugin.list.nValue].s); + } + +- for (; i < o->value.list.nValue; i++) ++ for (; i < pList_count; i++) { p = 0; + for (j = 0; j < nPop; j++) + { + if (pop[j] && strcmp (pop[j]->vTable->name, +- o->value.list.value[i].s) == 0) ++ pList[i].s) == 0) + { + if (pushPlugin (pop[j])) + { +@@ -734,7 +770,7 @@ updatePlugins (CompDisplay *d) + + if (p == 0) + { +- p = loadPlugin (o->value.list.value[i].s); ++ p = loadPlugin (pList[i].s); + if (p) + { + if (!pushPlugin (p)) +@@ -775,7 +811,9 @@ updatePlugins (CompDisplay *d) + if (nPop) + free (pop); + ++ free(pList); + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ + } + + static void diff -upNr compiz-0.8.2.orign/src/main.c compiz-0.8.2/src/main.c --- compiz-0.8.2.orign/src/main.c 2009-02-16 14:57:22.000000000 +0100 -+++ compiz-0.8.2/src/main.c 2009-05-25 21:15:24.503089882 +0200 ++++ compiz-0.8.2/src/main.c 2009-07-10 13:53:53.354468151 +0200 @@ -40,6 +40,9 @@ char *programName; char **programArgv; int programArgc; Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz.spec,v retrieving revision 1.168 retrieving revision 1.169 diff -u -p -r1.168 -r1.169 --- compiz.spec 9 Jun 2009 03:10:58 -0000 1.168 +++ compiz.spec 10 Jul 2009 11:57:02 -0000 1.169 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -356,6 +356,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Adel Gadllah - 0.8.2-4 +- Replace compiz-0.8.2-pin-initial-plugins with a fixed up one + by Philippe Troin (RH #473896) + * Mon Jun 8 2009 Matthias Clasen - 0.8.2-3 - Fix handling of --replace in compiz-gtk, _again_ From drago01 at fedoraproject.org Fri Jul 10 11:57:18 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 11:57:18 +0000 (UTC) Subject: rpms/compiz/F-10 compiz-0.7.8-pin-initial-plugins.patch, 1.1, 1.2 compiz.spec, 1.149, 1.150 Message-ID: <20090710115718.45E5511C0048@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4663 Modified Files: compiz-0.7.8-pin-initial-plugins.patch compiz.spec Log Message: fix bug 473896 compiz-0.7.8-pin-initial-plugins.patch: Index: compiz-0.7.8-pin-initial-plugins.patch =================================================================== RCS file: /cvs/pkgs/rpms/compiz/F-10/compiz-0.7.8-pin-initial-plugins.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compiz-0.7.8-pin-initial-plugins.patch 5 Dec 2008 06:58:14 -0000 1.1 +++ compiz-0.7.8-pin-initial-plugins.patch 10 Jul 2009 11:57:17 -0000 1.2 @@ -1,8 +1,7 @@ -diff --git a/include/compiz-core.h b/include/compiz-core.h -index 5aeb04c..97279ab 100644 ---- a/include/compiz-core.h -+++ b/include/compiz-core.h -@@ -220,6 +220,9 @@ extern Bool noDetection; +diff -ruN compiz-0.7.8.orig/include/compiz-core.h compiz-0.7.8/include/compiz-core.h +--- compiz-0.7.8.orig/include/compiz-core.h 2008-09-08 02:24:58.000000000 -0700 ++++ compiz-0.7.8/include/compiz-core.h 2009-07-09 16:16:29.000000000 -0700 +@@ -220,6 +220,9 @@ extern Bool useDesktopHints; extern Bool onlyCurrentScreen; @@ -12,55 +11,126 @@ index 5aeb04c..97279ab 100644 extern int defaultRefreshRate; extern char *defaultTextureFilter; -diff --git a/src/display.c b/src/display.c -index dd4676e..fc3e117 100644 ---- a/src/display.c -+++ b/src/display.c -@@ -846,7 +846,7 @@ updatePlugins (CompDisplay *d) +diff -ruN compiz-0.7.8.orig/src/display.c compiz-0.7.8/src/display.c +--- compiz-0.7.8.orig/src/display.c 2009-07-09 16:15:48.000000000 -0700 ++++ compiz-0.7.8/src/display.c 2009-07-09 16:17:04.000000000 -0700 +@@ -846,24 +846,59 @@ { CompOption *o; CompPlugin *p, **pop = 0; - int nPop, i, j; -+ int nPop, i, j, k; ++ int nPop, i, j, k, dupPluginCount; ++ CompOptionValue *pList; ++ int pList_count; d->dirtyPluginList = FALSE; -@@ -886,6 +886,30 @@ updatePlugins (CompDisplay *d) - free (d->plugin.list.value[d->plugin.list.nValue].s); - } + o = &d->opt[COMP_DISPLAY_OPTION_ACTIVE_PLUGINS]; -+ for ( k = 0; k < nInitialPlugins; k++) -+ { -+ for ( j = 0; j < nPop; j++) -+ { -+ if (pop[j] && strcmp (pop[j]->vTable->name, -+ initialPlugins[k]) == 0) -+ break; -+ } -+ -+ if ( j == (nPop - 1)) -+ { -+ p = loadPlugin (initialPlugins[k]); -+ if (p) -+ { -+ if (!pushPlugin (p)) -+ { -+ unloadPlugin (p); -+ p = 0; +- /* The old plugin list always begins with the core plugin. To make sure +- we don't unnecessarily unload plugins if the new plugin list does not +- contain the core plugin, we have to use an offset */ +- if (o->value.list.nValue > 0 && strcmp (o->value.list.value[0].s, "core")) +- i = 0; +- else +- i = 1; ++ /* Make sure the new plugin list always list core first, then the ++ initial plugins... */ ++ dupPluginCount = 0; ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ ++dupPluginCount; ++ else ++ for (j=0; j < nInitialPlugins; ++j) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[j]) == 0) { ++ ++dupPluginCount; ++ break; + } -+ } -+ } + } + ++ pList_count = 1+nInitialPlugins+o->value.list.nValue-dupPluginCount; ++ ++ pList = malloc(sizeof(CompOptionValue) * pList_count); ++ if (!pList) { ++ (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ return; ++ } ++ ++ pList[0].s = "core"; ++ for (j=0; j < nInitialPlugins; ++j) ++ pList[j+1].s = initialPlugins[j]; ++ ++j; ++ ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ goto L_nextPlugin; ++ else ++ for (k=0; k < nInitialPlugins; ++k) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[k]) == 0) ++ goto L_nextPlugin; ++ pList[j++].s = o->value.list.value[i].s; ++ L_nextPlugin: ++ (void)0; ++ } + - for (; i < o->value.list.nValue; i++) ++ assert(j == pList_count); + + /* j is initialized to 1 to make sure we never pop the core plugin */ +- for (j = 1; j < d->plugin.list.nValue && i < o->value.list.nValue; i++, j++) ++ for (i = j = 1; j < d->plugin.list.nValue && i < pList_count; i++, j++) + { +- if (strcmp (d->plugin.list.value[j].s, o->value.list.value[i].s)) ++ if (strcmp (d->plugin.list.value[j].s, pList[i].s)) + break; + } + +@@ -875,6 +913,7 @@ + if (!pop) + { + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ free(pList); + return; + } + } +@@ -886,13 +925,13 @@ + free (d->plugin.list.value[d->plugin.list.nValue].s); + } + +- for (; i < o->value.list.nValue; i++) ++ for (; i < pList_count; i++) { p = 0; -diff --git a/src/main.c b/src/main.c -index 3784afe..ff982fe 100644 ---- a/src/main.c -+++ b/src/main.c -@@ -40,6 +40,9 @@ char *programName; + for (j = 0; j < nPop; j++) + { + if (pop[j] && strcmp (pop[j]->vTable->name, +- o->value.list.value[i].s) == 0) ++ pList[i].s) == 0) + { + if (pushPlugin (pop[j])) + { +@@ -905,7 +944,7 @@ + + if (p == 0) + { +- p = loadPlugin (o->value.list.value[i].s); ++ p = loadPlugin (pList[i].s); + if (p) + { + if (!pushPlugin (p)) +@@ -946,7 +985,9 @@ + if (nPop) + free (pop); + ++ free(pList); + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ + } + + static void +diff -ruN compiz-0.7.8.orig/src/main.c compiz-0.7.8/src/main.c +--- compiz-0.7.8.orig/src/main.c 2008-08-28 05:01:49.000000000 -0700 ++++ compiz-0.7.8/src/main.c 2009-07-09 16:16:29.000000000 -0700 +@@ -40,6 +40,9 @@ char **programArgv; int programArgc; @@ -70,7 +140,7 @@ index 3784afe..ff982fe 100644 char *backgroundImage = NULL; REGION emptyRegion; -@@ -406,6 +409,11 @@ main (int argc, char **argv) +@@ -398,6 +401,11 @@ ptr += sprintf (ptr, ""); } @@ -82,7 +152,7 @@ index 3784afe..ff982fe 100644 } xmlInitParser (); -@@ -455,6 +463,9 @@ main (int argc, char **argv) +@@ -447,6 +455,9 @@ xmlCleanupParser (); @@ -92,3 +162,4 @@ index 3784afe..ff982fe 100644 if (restartSignal) { execvp (programName, programArgv); + Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/F-10/compiz.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- compiz.spec 16 May 2009 09:22:18 -0000 1.149 +++ compiz.spec 10 Jul 2009 11:57:18 -0000 1.150 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.7.8 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -392,6 +392,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Adel Gadllah - 0.7.8-10 +- Replace compiz-0.7.8-pin-initial-plugins with a fixed up one + by Philippe Troin (RH #473896) + * Sat May 16 2009 Adel Gadllah - 0.7.8-9 - BR libXres-devel From drago01 at fedoraproject.org Fri Jul 10 11:57:27 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 11:57:27 +0000 (UTC) Subject: rpms/compiz/F-11 compiz-0.7.8-pin-initial-plugins.patch, 1.1, 1.2 compiz.spec, 1.162, 1.163 Message-ID: <20090710115727.DFFFD11C0048@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4753 Modified Files: compiz-0.7.8-pin-initial-plugins.patch compiz.spec Log Message: fix bug 473896 compiz-0.7.8-pin-initial-plugins.patch: Index: compiz-0.7.8-pin-initial-plugins.patch =================================================================== RCS file: /cvs/pkgs/rpms/compiz/F-11/compiz-0.7.8-pin-initial-plugins.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compiz-0.7.8-pin-initial-plugins.patch 4 Dec 2008 20:59:54 -0000 1.1 +++ compiz-0.7.8-pin-initial-plugins.patch 10 Jul 2009 11:57:27 -0000 1.2 @@ -1,8 +1,7 @@ -diff --git a/include/compiz-core.h b/include/compiz-core.h -index 5aeb04c..97279ab 100644 ---- a/include/compiz-core.h -+++ b/include/compiz-core.h -@@ -220,6 +220,9 @@ extern Bool noDetection; +diff -ruN compiz-0.7.8.orig/include/compiz-core.h compiz-0.7.8/include/compiz-core.h +--- compiz-0.7.8.orig/include/compiz-core.h 2008-09-08 02:24:58.000000000 -0700 ++++ compiz-0.7.8/include/compiz-core.h 2009-07-09 16:16:29.000000000 -0700 +@@ -220,6 +220,9 @@ extern Bool useDesktopHints; extern Bool onlyCurrentScreen; @@ -12,55 +11,126 @@ index 5aeb04c..97279ab 100644 extern int defaultRefreshRate; extern char *defaultTextureFilter; -diff --git a/src/display.c b/src/display.c -index dd4676e..fc3e117 100644 ---- a/src/display.c -+++ b/src/display.c -@@ -846,7 +846,7 @@ updatePlugins (CompDisplay *d) +diff -ruN compiz-0.7.8.orig/src/display.c compiz-0.7.8/src/display.c +--- compiz-0.7.8.orig/src/display.c 2009-07-09 16:15:48.000000000 -0700 ++++ compiz-0.7.8/src/display.c 2009-07-09 16:17:04.000000000 -0700 +@@ -846,24 +846,59 @@ { CompOption *o; CompPlugin *p, **pop = 0; - int nPop, i, j; -+ int nPop, i, j, k; ++ int nPop, i, j, k, dupPluginCount; ++ CompOptionValue *pList; ++ int pList_count; d->dirtyPluginList = FALSE; -@@ -886,6 +886,30 @@ updatePlugins (CompDisplay *d) - free (d->plugin.list.value[d->plugin.list.nValue].s); - } + o = &d->opt[COMP_DISPLAY_OPTION_ACTIVE_PLUGINS]; -+ for ( k = 0; k < nInitialPlugins; k++) -+ { -+ for ( j = 0; j < nPop; j++) -+ { -+ if (pop[j] && strcmp (pop[j]->vTable->name, -+ initialPlugins[k]) == 0) -+ break; -+ } -+ -+ if ( j == (nPop - 1)) -+ { -+ p = loadPlugin (initialPlugins[k]); -+ if (p) -+ { -+ if (!pushPlugin (p)) -+ { -+ unloadPlugin (p); -+ p = 0; +- /* The old plugin list always begins with the core plugin. To make sure +- we don't unnecessarily unload plugins if the new plugin list does not +- contain the core plugin, we have to use an offset */ +- if (o->value.list.nValue > 0 && strcmp (o->value.list.value[0].s, "core")) +- i = 0; +- else +- i = 1; ++ /* Make sure the new plugin list always list core first, then the ++ initial plugins... */ ++ dupPluginCount = 0; ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ ++dupPluginCount; ++ else ++ for (j=0; j < nInitialPlugins; ++j) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[j]) == 0) { ++ ++dupPluginCount; ++ break; + } -+ } -+ } + } + ++ pList_count = 1+nInitialPlugins+o->value.list.nValue-dupPluginCount; ++ ++ pList = malloc(sizeof(CompOptionValue) * pList_count); ++ if (!pList) { ++ (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ return; ++ } ++ ++ pList[0].s = "core"; ++ for (j=0; j < nInitialPlugins; ++j) ++ pList[j+1].s = initialPlugins[j]; ++ ++j; ++ ++ for (i=0; i < o->value.list.nValue; ++i) { ++ if (strcmp(o->value.list.value[i].s, "core") == 0) ++ goto L_nextPlugin; ++ else ++ for (k=0; k < nInitialPlugins; ++k) ++ if (strcmp(o->value.list.value[i].s, initialPlugins[k]) == 0) ++ goto L_nextPlugin; ++ pList[j++].s = o->value.list.value[i].s; ++ L_nextPlugin: ++ (void)0; ++ } + - for (; i < o->value.list.nValue; i++) ++ assert(j == pList_count); + + /* j is initialized to 1 to make sure we never pop the core plugin */ +- for (j = 1; j < d->plugin.list.nValue && i < o->value.list.nValue; i++, j++) ++ for (i = j = 1; j < d->plugin.list.nValue && i < pList_count; i++, j++) + { +- if (strcmp (d->plugin.list.value[j].s, o->value.list.value[i].s)) ++ if (strcmp (d->plugin.list.value[j].s, pList[i].s)) + break; + } + +@@ -875,6 +913,7 @@ + if (!pop) + { + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ free(pList); + return; + } + } +@@ -886,13 +925,13 @@ + free (d->plugin.list.value[d->plugin.list.nValue].s); + } + +- for (; i < o->value.list.nValue; i++) ++ for (; i < pList_count; i++) { p = 0; -diff --git a/src/main.c b/src/main.c -index 3784afe..ff982fe 100644 ---- a/src/main.c -+++ b/src/main.c -@@ -40,6 +40,9 @@ char *programName; + for (j = 0; j < nPop; j++) + { + if (pop[j] && strcmp (pop[j]->vTable->name, +- o->value.list.value[i].s) == 0) ++ pList[i].s) == 0) + { + if (pushPlugin (pop[j])) + { +@@ -905,7 +944,7 @@ + + if (p == 0) + { +- p = loadPlugin (o->value.list.value[i].s); ++ p = loadPlugin (pList[i].s); + if (p) + { + if (!pushPlugin (p)) +@@ -946,7 +985,9 @@ + if (nPop) + free (pop); + ++ free(pList); + (*core.setOptionForPlugin) (&d->base, "core", o->name, &d->plugin); ++ + } + + static void +diff -ruN compiz-0.7.8.orig/src/main.c compiz-0.7.8/src/main.c +--- compiz-0.7.8.orig/src/main.c 2008-08-28 05:01:49.000000000 -0700 ++++ compiz-0.7.8/src/main.c 2009-07-09 16:16:29.000000000 -0700 +@@ -40,6 +40,9 @@ char **programArgv; int programArgc; @@ -70,7 +140,7 @@ index 3784afe..ff982fe 100644 char *backgroundImage = NULL; REGION emptyRegion; -@@ -406,6 +409,11 @@ main (int argc, char **argv) +@@ -398,6 +401,11 @@ ptr += sprintf (ptr, ""); } @@ -82,7 +152,7 @@ index 3784afe..ff982fe 100644 } xmlInitParser (); -@@ -455,6 +463,9 @@ main (int argc, char **argv) +@@ -447,6 +455,9 @@ xmlCleanupParser (); @@ -92,3 +162,4 @@ index 3784afe..ff982fe 100644 if (restartSignal) { execvp (programName, programArgv); + Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/F-11/compiz.spec,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- compiz.spec 5 Apr 2009 11:13:26 -0000 1.162 +++ compiz.spec 10 Jul 2009 11:57:27 -0000 1.163 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.7.8 -Release: 18%{?dist} +Release: 19%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -388,6 +388,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Adel Gadllah - 0.7.8-19 +- Replace compiz-0.7.8-pin-initial-plugins with a fixed up one + by Philippe Troin (RH #473896) + * Sun Apr 05 2009 Adel Gadllah - 0.7.8-18 - Direct rendering does not mean that we have hw 3D From peter at fedoraproject.org Fri Jul 10 12:06:11 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 10 Jul 2009 12:06:11 +0000 (UTC) Subject: rpms/python-application/EL-4 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 python-application.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090710120611.DC38B11C0048@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/python-application/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8089/EL-4 Modified Files: .cvsignore import.log python-application.spec sources Log Message: ver. 1.1.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 3 Jun 2009 17:57:19 -0000 1.2 +++ .cvsignore 10 Jul 2009 12:06:11 -0000 1.3 @@ -1 +1 @@ -python-application-1.1.1.tar.gz +python-application-1.1.2.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-4/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 3 Jun 2009 17:57:19 -0000 1.1 +++ import.log 10 Jul 2009 12:06:11 -0000 1.2 @@ -1 +1,2 @@ python-application-1_1_1-2_fc10:EL-4:python-application-1.1.1-2.fc10.src.rpm:1244051800 +python-application-1_1_2-1_fc11:EL-4:python-application-1.1.2-1.fc11.src.rpm:1247227467 Index: python-application.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-4/python-application.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-application.spec 3 Jun 2009 17:57:19 -0000 1.1 +++ python-application.spec 10 Jul 2009 12:06:11 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-application -Version: 1.1.1 -Release: 2%{?dist} +Version: 1.1.2 +Release: 1%{?dist} Summary: Basic building blocks for python applications Group: Development/Languages License: LGPLv2+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Peter Lemenkov 1.1.2-1 +- Ver. 1.1.2 + * Mon Jun 1 2009 Peter Lemenkov 1.1.1-2 - Added missing BR python-setuptools-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-application/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 3 Jun 2009 17:57:19 -0000 1.2 +++ sources 10 Jul 2009 12:06:11 -0000 1.3 @@ -1 +1 @@ -dd583f1e626b22676efdafee0d9c83e9 python-application-1.1.1.tar.gz +86ea28bc195e38c02655c47a2e3583c7 python-application-1.1.2.tar.gz From kdudka at fedoraproject.org Fri Jul 10 12:27:52 2009 From: kdudka at fedoraproject.org (Kamil Dudka) Date: Fri, 10 Jul 2009 12:27:52 +0000 (UTC) Subject: rpms/curl/devel curl-7.19.5-cc_refcnt-1.patch, NONE, 1.1 curl-7.19.5-cc_refcnt-2.patch, NONE, 1.1 curl.spec, 1.104, 1.105 Message-ID: <20090710122752.8E2A711C0048@cvs1.fedora.phx.redhat.com> Author: kdudka Update of /cvs/extras/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17186 Modified Files: curl.spec Added Files: curl-7.19.5-cc_refcnt-1.patch curl-7.19.5-cc_refcnt-2.patch Log Message: fix SIGSEGV when using NSS client certificates curl-7.19.5-cc_refcnt-1.patch: --- NEW FILE curl-7.19.5-cc_refcnt-1.patch --- diff -ruNp curl-7.19.5.orig/lib/nss.c curl-7.19.5/lib/nss.c --- curl-7.19.5.orig/lib/nss.c 2009-05-11 11:13:49.000000000 +0200 +++ curl-7.19.5/lib/nss.c 2009-07-10 13:26:15.000000000 +0200 @@ -786,7 +786,8 @@ static SECStatus SelectClientCert(void * struct CERTCertificateStr **pRetCert, struct SECKEYPrivateKeyStr **pRetKey) { - SECKEYPrivateKey *privKey; + SECKEYPrivateKey *privKey = NULL; + CERTCertificate *cert; struct ssl_connect_data *connssl = (struct ssl_connect_data *) arg; char *nickname = connssl->client_nickname; void *proto_win = NULL; @@ -799,36 +800,32 @@ static SECStatus SelectClientCert(void * if(!nickname) return secStatus; - connssl->client_cert = PK11_FindCertFromNickname(nickname, proto_win); - if(connssl->client_cert) { - + cert = PK11_FindCertFromNickname(nickname, proto_win); + if(cert) { if(!strncmp(nickname, "PEM Token", 9)) { CK_SLOT_ID slotID = 1; /* hardcoded for now */ char slotname[SLOTSIZE]; snprintf(slotname, SLOTSIZE, "PEM Token #%ld", slotID); slot = PK11_FindSlotByName(slotname); - privKey = PK11_FindPrivateKeyFromCert(slot, connssl->client_cert, NULL); + privKey = PK11_FindPrivateKeyFromCert(slot, cert, NULL); PK11_FreeSlot(slot); if(privKey) { secStatus = SECSuccess; } } else { - privKey = PK11_FindKeyByAnyCert(connssl->client_cert, proto_win); + privKey = PK11_FindKeyByAnyCert(cert, proto_win); if(privKey) secStatus = SECSuccess; } } - if(secStatus == SECSuccess) { - *pRetCert = connssl->client_cert; - *pRetKey = privKey; - } - else { - if(connssl->client_cert) - CERT_DestroyCertificate(connssl->client_cert); - connssl->client_cert = NULL; - } + *pRetCert = cert; + *pRetKey = privKey; + + /* There's no need to destroy either cert or privKey as + * NSS will do that for us even if returning SECFailure + */ return secStatus; } @@ -912,14 +909,14 @@ void Curl_nss_close(struct connectdata * free(connssl->client_nickname); connssl->client_nickname = NULL; } - if(connssl->client_cert) - CERT_DestroyCertificate(connssl->client_cert); +#ifdef HAVE_PK11_CREATEGENERICOBJECT if(connssl->key) (void)PK11_DestroyGenericObject(connssl->key); if(connssl->cacert[1]) (void)PK11_DestroyGenericObject(connssl->cacert[1]); if(connssl->cacert[0]) (void)PK11_DestroyGenericObject(connssl->cacert[0]); +#endif connssl->handle = NULL; } } @@ -955,10 +952,11 @@ CURLcode Curl_nss_connect(struct connect if (connssl->state == ssl_connection_complete) return CURLE_OK; - connssl->client_cert = NULL; +#ifdef HAVE_PK11_CREATEGENERICOBJECT connssl->cacert[0] = NULL; connssl->cacert[1] = NULL; connssl->key = NULL; +#endif /* FIXME. NSS doesn't support multiple databases open at the same time. */ PR_Lock(nss_initlock); diff -ruNp curl-7.19.5.orig/lib/urldata.h curl-7.19.5/lib/urldata.h --- curl-7.19.5.orig/lib/urldata.h 2009-05-11 09:53:38.000000000 +0200 +++ curl-7.19.5/lib/urldata.h 2009-07-10 13:30:55.000000000 +0200 @@ -211,7 +211,6 @@ struct ssl_connect_data { #ifdef USE_NSS PRFileDesc *handle; char *client_nickname; - CERTCertificate *client_cert; #ifdef HAVE_PK11_CREATEGENERICOBJECT PK11GenericObject *key; PK11GenericObject *cacert[2]; curl-7.19.5-cc_refcnt-2.patch: --- NEW FILE curl-7.19.5-cc_refcnt-2.patch --- diff -ruNp curl-7.19.5.orig/lib/nss.c curl-7.19.5/lib/nss.c --- curl-7.19.5.orig/lib/nss.c 2009-07-10 13:54:34.592293130 +0200 +++ curl-7.19.5/lib/nss.c 2009-07-10 13:54:48.250293559 +0200 @@ -856,9 +856,17 @@ void Curl_nss_cleanup(void) * as a safety feature. */ PR_Lock(nss_initlock); + + /* Free references to client certificates held in the SSL session cache. + * Omitting this hampers destruction of the security module owning + * the certificates. */ + SSL_ClearSessionCache(); + if (initialized) { - if(mod) + if(mod) { + SECMOD_UnloadUserModule(mod); SECMOD_DestroyModule(mod); + } mod = NULL; NSS_Shutdown(); } Index: curl.spec =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- curl.spec 5 Jul 2009 18:44:07 -0000 1.104 +++ curl.spec 10 Jul 2009 12:27:52 -0000 1.105 @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.5 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2 @@ -10,6 +10,8 @@ Patch1: curl-7.15.3-multilib.patch Patch2: curl-7.16.0-privlibs.patch Patch3: curl-7.17.1-badsocket.patch Patch4: curl-7.19.4-debug.patch +Patch5: curl-7.19.5-cc_refcnt-1.patch +Patch6: curl-7.19.5-cc_refcnt-2.patch Provides: webclient URL: http://curl.haxx.se/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -54,6 +56,8 @@ use cURL's capabilities internally. %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 +%patch6 -p1 # Convert docs to UTF-8 for f in CHANGES README; do @@ -136,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Fri Jul 10 2009 Kamil Dudka 7.19.5-7 +- fix SIGSEGV when using NSS client certificates, thanks to Claes Jakobsson + * Sun Jul 05 2009 Kamil Dudka 7.19.5-6 - force test suite to use the just built libcurl, thanks to Paul Howarth From kdudka at fedoraproject.org Fri Jul 10 12:45:42 2009 From: kdudka at fedoraproject.org (Kamil Dudka) Date: Fri, 10 Jul 2009 12:45:42 +0000 (UTC) Subject: rpms/curl/devel curl-7.19.5-cc_refcnt-2.patch,1.1,1.2 Message-ID: <20090710124542.2A6EA11C0048@cvs1.fedora.phx.redhat.com> Author: kdudka Update of /cvs/extras/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22858 Modified Files: curl-7.19.5-cc_refcnt-2.patch Log Message: improve curl-7.19.5-cc_refcnt-2.patch curl-7.19.5-cc_refcnt-2.patch: Index: curl-7.19.5-cc_refcnt-2.patch =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl-7.19.5-cc_refcnt-2.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- curl-7.19.5-cc_refcnt-2.patch 10 Jul 2009 12:27:52 -0000 1.1 +++ curl-7.19.5-cc_refcnt-2.patch 10 Jul 2009 12:45:41 -0000 1.2 @@ -1,18 +1,16 @@ diff -ruNp curl-7.19.5.orig/lib/nss.c curl-7.19.5/lib/nss.c ---- curl-7.19.5.orig/lib/nss.c 2009-07-10 13:54:34.592293130 +0200 -+++ curl-7.19.5/lib/nss.c 2009-07-10 13:54:48.250293559 +0200 -@@ -856,9 +856,17 @@ void Curl_nss_cleanup(void) - * as a safety feature. +--- curl-7.19.5.orig/lib/nss.c 2009-07-10 14:41:55.890168660 +0200 ++++ curl-7.19.5/lib/nss.c 2009-07-10 14:42:18.966293110 +0200 +@@ -857,8 +857,15 @@ void Curl_nss_cleanup(void) */ PR_Lock(nss_initlock); -+ -+ /* Free references to client certificates held in the SSL session cache. -+ * Omitting this hampers destruction of the security module owning -+ * the certificates. */ -+ SSL_ClearSessionCache(); -+ if (initialized) { - if(mod) ++ /* Free references to client certificates held in the SSL session cache. ++ * Omitting this hampers destruction of the security module owning ++ * the certificates. */ ++ SSL_ClearSessionCache(); ++ + if(mod) { + SECMOD_UnloadUserModule(mod); SECMOD_DestroyModule(mod); From jgranado at fedoraproject.org Fri Jul 10 13:16:25 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Fri, 10 Jul 2009 13:16:25 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-appletv-support.patch, NONE, 1.1 parted-1.9.0-device-path.patch, NONE, 1.1 parted-1.9.0-extended-mbr.patch, NONE, 1.1 parted-1.9.0-extra-var.patch, NONE, 1.1 parted-1.9.0-move-function-declarations.patch, NONE, 1.1 parted-1.9.0-no-cylinder-align.patch, NONE, 1.1 parted-1.9.0-noheaders.patch, NONE, 1.1 parted-1.9.0-pop-push-error.patch, NONE, 1.1 parted-1.9.0-preserve-pmbr.patch, NONE, 1.1 parted-1.9.0-remove-struct-elem.patch, NONE, 1.1 parted-1.9.0-swap-flag.patch, NONE, 1.1 parted-1.9.0-use-linuxh.patch, NONE, 1.1 parted-1.9.0.tar.gz, NONE, 1.1 .cvsignore, 1.32, 1.33 parted.spec, 1.132, 1.133 sources, 1.36, 1.37 Message-ID: <20090710131625.D591F11C0048@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1996 Modified Files: .cvsignore parted.spec sources Added Files: parted-1.9.0-appletv-support.patch parted-1.9.0-device-path.patch parted-1.9.0-extended-mbr.patch parted-1.9.0-extra-var.patch parted-1.9.0-move-function-declarations.patch parted-1.9.0-no-cylinder-align.patch parted-1.9.0-noheaders.patch parted-1.9.0-pop-push-error.patch parted-1.9.0-preserve-pmbr.patch parted-1.9.0-remove-struct-elem.patch parted-1.9.0-swap-flag.patch parted-1.9.0-use-linuxh.patch parted-1.9.0.tar.gz Log Message: New version. parted-1.9.0-appletv-support.patch: --- NEW FILE parted-1.9.0-appletv-support.patch --- >From fc419e55f358fae46ca24f15f5ce2bc7ff1b9e4a Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 16:06:43 +0200 Subject: [PATCH] Add support for appletv partitions. --- include/parted/disk.h | 5 ++- libparted/disk.c | 2 + libparted/labels/gpt.c | 50 ++++++++++++++++++++++++++++++++++++++--------- 3 files changed, 45 insertions(+), 12 deletions(-) diff --git a/include/parted/disk.h b/include/parted/disk.h index 691f413..5207e0b 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -53,10 +53,11 @@ enum _PedPartitionFlag { PED_PARTITION_PALO=9, PED_PARTITION_PREP=10, PED_PARTITION_MSFT_RESERVED=11, - PED_PARTITION_BIOS_GRUB=12 + PED_PARTITION_BIOS_GRUB=12, + PED_PARTITION_APPLE_TV_RECOVERY=13 }; #define PED_PARTITION_FIRST_FLAG PED_PARTITION_BOOT -#define PED_PARTITION_LAST_FLAG PED_PARTITION_BIOS_GRUB +#define PED_PARTITION_LAST_FLAG PED_PARTITION_APPLE_TV_RECOVERY enum _PedDiskTypeFeature { PED_DISK_TYPE_EXTENDED=1, /**< supports extended partitions */ diff --git a/libparted/disk.c b/libparted/disk.c index 5fb8060..3269b9d 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -2246,6 +2246,8 @@ ped_partition_flag_get_name (PedPartitionFlag flag) return N_("prep"); case PED_PARTITION_MSFT_RESERVED: return N_("msftres"); + case PED_PARTITION_APPLE_TV_RECOVERY: + return N_("atvrecv"); default: ped_exception_throw ( diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 536e06a..73bdbb2 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -127,6 +127,10 @@ typedef struct { ((efi_guid_t) { PED_CPU_TO_LE32 (0x48465300), PED_CPU_TO_LE16 (0x0000), \ PED_CPU_TO_LE16 (0x11AA), 0xaa, 0x11, \ { 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC }}) +#define PARTITION_APPLE_TV_RECOVERY_GUID \ + ((efi_guid_t) { PED_CPU_TO_LE32 (0x5265636F), PED_CPU_TO_LE16 (0x7665), \ + PED_CPU_TO_LE16 (0x11AA), 0xaa, 0x11, \ + { 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC }}) struct __attribute__ ((packed)) _GuidPartitionTableHeader_t { uint64_t Signature; @@ -254,6 +258,7 @@ typedef struct _GPTPartitionData { int hp_service; int hidden; int msftres; + int atvrecv; } GPTPartitionData; static PedDiskType gpt_disk_type; @@ -768,7 +773,7 @@ _parse_part_entry (PedDisk* disk, GuidPartitionEntry_t* pte) gpt_part_data->lvm = gpt_part_data->raid = gpt_part_data->boot = gpt_part_data->hp_service = gpt_part_data->hidden = gpt_part_data->msftres - = gpt_part_data->bios_grub = 0; + = gpt_part_data->bios_grub = gpt_part_data->atvrecv = 0; if (pte->Attributes.RequiredToFunction & 0x1) gpt_part_data->hidden = 1; @@ -783,9 +788,11 @@ _parse_part_entry (PedDisk* disk, GuidPartitionEntry_t* pte) gpt_part_data->lvm = 1; else if (!guid_cmp (gpt_part_data->type, PARTITION_HPSERVICE_GUID)) gpt_part_data->hp_service = 1; - else if (!guid_cmp (gpt_part_data->type, PARTITION_MSFT_RESERVED_GUID)) - gpt_part_data->msftres = 1; - + else if (!guid_cmp (gpt_part_data->type, PARTITION_MSFT_RESERVED_GUID)) + gpt_part_data->msftres = 1; + else if (!guid_cmp (gpt_part_data->type, PARTITION_APPLE_TV_RECOVERY_GUID)) + gpt_part_data->atvrecv = 1; + return part; } @@ -1182,6 +1189,7 @@ gpt_partition_new (const PedDisk* disk, gpt_part_data->hp_service = 0; gpt_part_data->hidden = 0; gpt_part_data->msftres = 0; + gpt_part_data->atvrecv = 0; uuid_generate ((unsigned char*) &gpt_part_data->uuid); swap_uuid_and_efi_guid((unsigned char*)(&gpt_part_data->uuid)); memset (gpt_part_data->name, 0, sizeof gpt_part_data->name); @@ -1269,6 +1277,11 @@ gpt_partition_set_system (PedPartition* part, const PedFileSystemType* fs_type) gpt_part_data->type = PARTITION_MSFT_RESERVED_GUID; return 1; } + if (gpt_part_data->atvrecv) { + gpt_part_data->type = PARTITION_APPLE_TV_RECOVERY_GUID; + return 1; + } + if (fs_type) { if (strncmp (fs_type->name, "fat", 3) == 0 @@ -1361,7 +1374,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_BIOS_GRUB: gpt_part_data->bios_grub = state; @@ -1370,7 +1384,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->boot = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_RAID: gpt_part_data->raid = state; @@ -1379,7 +1394,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_LVM: gpt_part_data->lvm = state; @@ -1388,7 +1404,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_HPSERVICE: gpt_part_data->hp_service = state; @@ -1397,7 +1414,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->lvm = gpt_part_data->bios_grub - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_MSFT_RESERVED: gpt_part_data->msftres = state; @@ -1406,8 +1424,17 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->lvm = gpt_part_data->bios_grub - = gpt_part_data->hp_service = 0; + = gpt_part_data->hp_service + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); + case PED_PARTITION_APPLE_TV_RECOVERY: + gpt_part_data->atvrecv = state; + if (state) + gpt_part_data->boot + = gpt_part_data->raid + = gpt_part_data->lvm + = gpt_part_data->hp_service + = gpt_part_data->msftres = 0; case PED_PARTITION_HIDDEN: gpt_part_data->hidden = state; return 1; @@ -1440,6 +1467,8 @@ gpt_partition_get_flag(const PedPartition *part, PedPartitionFlag flag) return gpt_part_data->hp_service; case PED_PARTITION_MSFT_RESERVED: return gpt_part_data->msftres; + case PED_PARTITION_APPLE_TV_RECOVERY: + return gpt_part_data->atvrecv; case PED_PARTITION_HIDDEN: return gpt_part_data->hidden; case PED_PARTITION_SWAP: @@ -1462,6 +1491,7 @@ gpt_partition_is_flag_available(const PedPartition * part, case PED_PARTITION_BIOS_GRUB: case PED_PARTITION_HPSERVICE: case PED_PARTITION_MSFT_RESERVED: + case PED_PARTITION_APPLE_TV_RECOVERY: case PED_PARTITION_HIDDEN: return 1; case PED_PARTITION_SWAP: -- 1.6.0.6 parted-1.9.0-device-path.patch: --- NEW FILE parted-1.9.0-device-path.patch --- >From 4d7e16d3a36ce3875b9f34a04f4078cc5b935417 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Tue, 30 Jun 2009 17:07:06 +0200 Subject: [PATCH] Identify the device by path. * libparted/labels/dasd.c (dasd_probe): The element name is not defined in the dev structure. --- libparted/labels/dasd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index e3e5d1b..40c0546 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -166,7 +166,7 @@ dasd_probe (const PedDevice *dev) error_cleanup: fdasd_cleanup(&anchor); ped_exception_throw(PED_EXCEPTION_ERROR,PED_EXCEPTION_IGNORE_CANCEL, - "Error while probing device %s.", dev->name); + "Error while probing device %s.", dev->path); return 0; } -- 1.6.0.6 parted-1.9.0-extended-mbr.patch: --- NEW FILE parted-1.9.0-extended-mbr.patch --- >From f515b5a54a929896c9ad1482f05c060f4a1b9893 Mon Sep 17 00:00:00 2001 From: Petr Uzel Date: Fri, 5 Jun 2009 14:14:11 +0200 Subject: [PATCH] do not discard bootcode from extended partition * libparted/labels/dos.c (write_ext_table): Do not discard bootcode from extended partition on msdos label when some of the logical partitions are changed. Signed-off-by: Petr Uzel --- libparted/labels/dos.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index b4cd23a..fc54339 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1060,7 +1060,8 @@ write_ext_table (const PedDisk* disk, lba_offset = ped_disk_extended_partition (disk)->geom.start; - memset (&table, 0, sizeof (DosRawTable)); + ped_device_read (disk->dev, &table, sector, 1); + memset (&(table.partitions), 0, 4 * sizeof(DosRawPartition)); table.magic = PED_CPU_TO_LE16 (MSDOS_MAGIC); if (!fill_raw_part (&table.partitions[0], logical, sector)) @@ -1094,7 +1095,8 @@ write_empty_table (const PedDisk* disk, PedSector sector) PED_ASSERT (disk != NULL, return 0); - memset (&table, 0, sizeof (DosRawTable)); + ped_device_read (disk->dev, &table, sector, 1); + memset (&(table.partitions), 0, 4 * sizeof(DosRawPartition)); table.magic = PED_CPU_TO_LE16 (MSDOS_MAGIC); return ped_device_write (disk->dev, (void*) &table, sector, 1); -- 1.6.0.6 parted-1.9.0-extra-var.patch: --- NEW FILE parted-1.9.0-extra-var.patch --- >From c3bd7f40c18197d8092b80f0975d1e0486b686c7 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 17:33:42 +0200 Subject: [PATCH] Remove unnecessary variable. * libparted/labels/fdasd.c (fdasd_get_geometry): The variable "s" is not used in the function. --- libparted/labels/fdasd.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/libparted/labels/fdasd.c b/libparted/labels/fdasd.c index 40ba8c9..4cf4eb0 100644 --- a/libparted/labels/fdasd.c +++ b/libparted/labels/fdasd.c @@ -773,7 +773,6 @@ fdasd_get_geometry (fdasd_anchor_t *anc, int f) PDEBUG int blksize = 0; dasd_information_t dasd_info; - char s[LINE_LENGTH]; if (ioctl(f, HDIO_GETGEO, &anc->geo) != 0) fdasd_error(anc, unable_to_ioctl, -- 1.6.0.6 parted-1.9.0-move-function-declarations.patch: --- NEW FILE parted-1.9.0-move-function-declarations.patch --- >From cd5dd183b4810de2160c433544541c852ca1877d Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Mon, 29 Jun 2009 13:44:10 +0200 Subject: [PATCH] Put the dasd function definitions at the end of the file. All label types define the label functions at the end of the file. Be consistent with this characteristic. The function declarations are no longer needed. * libparted/labels/dasd.c (dasd_disk_ops, dasd_disk_type) (ped_disk_dasd_init, ped_disk_dasd_done): Move the specifications of the functions the end of the file. Remove function declarations. --- libparted/labels/dasd.c | 125 ++++++++++++++++++----------------------------- 1 files changed, 48 insertions(+), 77 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index 3a0bb32..e3e5d1b 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -76,70 +76,7 @@ typedef struct { struct fdasd_anchor *anchor; } DasdDiskSpecific; -static int dasd_probe (const PedDevice *dev); -static int dasd_clobber (PedDevice* dev); -static int dasd_read (PedDisk* disk); -static int dasd_write (const PedDisk* disk); - -static PedPartition* dasd_partition_new (const PedDisk* disk, - PedPartitionType part_type, - const PedFileSystemType* fs_type, - PedSector start, - PedSector end); -static void dasd_partition_destroy (PedPartition* part); -static int dasd_partition_set_flag (PedPartition* part, - PedPartitionFlag flag, - int state); -static int dasd_partition_get_flag (const PedPartition* part, - PedPartitionFlag flag); -static int dasd_partition_is_flag_available (const PedPartition* part, - PedPartitionFlag flag); -static int dasd_partition_align (PedPartition* part, - const PedConstraint* constraint); -static int dasd_partition_enumerate (PedPartition* part); -static int dasd_get_max_primary_partition_count (const PedDisk* disk); - -static PedDisk* dasd_alloc (const PedDevice* dev); -static PedDisk* dasd_duplicate (const PedDisk* disk); -static void dasd_free (PedDisk* disk); -static int dasd_partition_set_system (PedPartition* part, - const PedFileSystemType* fs_type); -static int dasd_alloc_metadata (PedDisk* disk); - -static PedDiskOps dasd_disk_ops = { - probe: dasd_probe, - clobber: dasd_clobber, - read: dasd_read, - write: dasd_write, - - alloc: dasd_alloc, - duplicate: dasd_duplicate, - free: dasd_free, - partition_set_system: dasd_partition_set_system, - - partition_new: dasd_partition_new, - partition_destroy: dasd_partition_destroy, - partition_set_flag: dasd_partition_set_flag, - partition_get_flag: dasd_partition_get_flag, - partition_is_flag_available: dasd_partition_is_flag_available, - partition_set_name: NULL, - partition_get_name: NULL, - partition_align: dasd_partition_align, - partition_enumerate: dasd_partition_enumerate, - - alloc_metadata: dasd_alloc_metadata, - get_max_primary_partition_count: dasd_get_max_primary_partition_count, - get_max_supported_partition_count: dasd_get_max_supported_partition_count, - - partition_duplicate: NULL -}; - -static PedDiskType dasd_disk_type = { - next: NULL, - name: "dasd", - ops: &dasd_disk_ops, - features: 0 -}; +static PedDiskType dasd_disk_type; static PedDisk* dasd_alloc (const PedDevice* dev) @@ -199,19 +136,6 @@ dasd_free (PedDisk* disk) _ped_disk_free(disk); } - -void -ped_disk_dasd_init () -{ - ped_disk_type_register(&dasd_disk_type); -} - -void -ped_disk_dasd_done () -{ - ped_disk_type_unregister(&dasd_disk_type); -} - static int dasd_probe (const PedDevice *dev) { @@ -881,3 +805,50 @@ error: ped_constraint_destroy (constraint_any); return 0; } + +static PedDiskOps dasd_disk_ops = { + probe: dasd_probe, + clobber: dasd_clobber, + read: dasd_read, + write: dasd_write, + + alloc: dasd_alloc, + duplicate: dasd_duplicate, + free: dasd_free, + partition_set_system: dasd_partition_set_system, + + partition_new: dasd_partition_new, + partition_destroy: dasd_partition_destroy, + partition_set_flag: dasd_partition_set_flag, + partition_get_flag: dasd_partition_get_flag, + partition_is_flag_available: dasd_partition_is_flag_available, + partition_set_name: NULL, + partition_get_name: NULL, + partition_align: dasd_partition_align, + partition_enumerate: dasd_partition_enumerate, + + alloc_metadata: dasd_alloc_metadata, + get_max_primary_partition_count: dasd_get_max_primary_partition_count, + get_max_supported_partition_count: dasd_get_max_supported_partition_count, + + partition_duplicate: NULL +}; + +static PedDiskType dasd_disk_type = { + next: NULL, + name: "dasd", + ops: &dasd_disk_ops, + features: 0 +}; + +void +ped_disk_dasd_init () +{ + ped_disk_type_register(&dasd_disk_type); +} + +void +ped_disk_dasd_done () +{ + ped_disk_type_unregister(&dasd_disk_type); +} -- 1.6.0.6 parted-1.9.0-no-cylinder-align.patch: --- NEW FILE parted-1.9.0-no-cylinder-align.patch --- commit 0098e7bdb80fb7ffe55b8bc9086a16d0a65898e5 Author: Joel Granados Moreno Date: Mon Jun 22 11:37:26 2009 +0200 Add mechanism to avoid cylinder alignments. diff --git a/include/parted/disk.h b/include/parted/disk.h index 172fbee..664c388 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -263,7 +263,8 @@ extern int ped_disk_get_last_partition_num (const PedDisk* disk); extern int ped_disk_get_max_primary_partition_count (const PedDisk* disk); extern bool ped_disk_get_max_supported_partition_count(const PedDisk* disk, int* supported); - +extern int ped_disk_align_to_cylinders_on(); +extern int ped_disk_align_to_cylinders_toggle(); /** @} */ /** diff --git a/libparted/disk.c b/libparted/disk.c index 6884c83..44a2f2f 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -65,6 +65,23 @@ static int _disk_raw_add (PedDisk* disk, PedPartition* part); static PedDiskType* disk_types = NULL; +int ped_disk_align_to_cylinders = 1; + +int +ped_disk_align_to_cylinders_toggle () +{ + if (ped_disk_align_to_cylinders == 1) + return ped_disk_align_to_cylinders = 0; + else + return ped_disk_align_to_cylinders = 1; +} + +int +ped_disk_align_to_cylinders_on () +{ + return ped_disk_align_to_cylinders; +} + void ped_disk_type_register (PedDiskType* disk_type) { diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index fc54339..e7d416d 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -2005,8 +2005,9 @@ msdos_partition_align (PedPartition* part, const PedConstraint* constraint) partition_probe_bios_geometry (part, &bios_geom); - if (_align (part, &bios_geom, constraint)) - return 1; + if (ped_disk_align_to_cylinders_on()) + if (_align (part, &bios_geom, constraint)) + return 1; if (_align_no_geom (part, constraint)) return 1; parted-1.9.0-noheaders.patch: --- NEW FILE parted-1.9.0-noheaders.patch --- >From 1dd152a33813406e91261db1f59a9a9dacf4bff6 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 16:20:45 +0200 Subject: [PATCH] No include headers. --- include/parted/Makefile.am | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/parted/Makefile.am b/include/parted/Makefile.am index a1ba960..022373f 100644 --- a/include/parted/Makefile.am +++ b/include/parted/Makefile.am @@ -16,10 +16,10 @@ partedinclude_HEADERS = constraint.h \ natmath.h \ timer.h \ unit.h \ - parted.h \ - $(S390_HDRS) + parted.h noinst_HEADERS = crc32.h \ - endian.h + endian.h \ + $(S390_HDRS) MAINTAINERCLEANFILES = Makefile.in -- 1.6.0.6 parted-1.9.0-pop-push-error.patch: --- NEW FILE parted-1.9.0-pop-push-error.patch --- >From fd2df92bbaaa5926b0c67916a5947af102cac20c Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 17:05:39 +0200 Subject: [PATCH] return errro on push or pop update mode. --- libparted/disk.c | 85 +++++++++++++++++++++++++++++++++++------------------ 1 files changed, 56 insertions(+), 29 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 3269b9d..6884c83 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -54,8 +54,8 @@ #ifdef DEBUG static int _disk_check_sanity (PedDisk* disk); #endif -static void _disk_push_update_mode (PedDisk* disk); -static void _disk_pop_update_mode (PedDisk* disk); +static int _disk_push_update_mode (PedDisk* disk); +static int _disk_pop_update_mode (PedDisk* disk); static int _disk_raw_insert_before (PedDisk* disk, PedPartition* loc, PedPartition* part); static int _disk_raw_insert_after (PedDisk* disk, PedPartition* loc, @@ -215,9 +215,11 @@ _add_duplicate_part (PedDisk* disk, PedPartition* old_part) goto error; new_part->disk = disk; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + goto error_destroy_new_part; ret = _disk_raw_add (disk, new_part); - _disk_pop_update_mode (disk); + if (_disk_pop_update_mode (disk)) + goto error_destroy_new_part; if (!ret) goto error_destroy_new_part; #ifdef DEBUG @@ -253,7 +255,8 @@ ped_disk_duplicate (const PedDisk* old_disk) if (!new_disk) goto error; - _disk_push_update_mode (new_disk); + if (!_disk_push_update_mode (new_disk)) + goto error_destroy_new_disk; for (old_part = ped_disk_next_partition (old_disk, NULL); old_part; old_part = ped_disk_next_partition (old_disk, old_part)) { if (ped_partition_is_active (old_part)) { @@ -261,7 +264,8 @@ ped_disk_duplicate (const PedDisk* old_disk) goto error_destroy_new_disk; } } - _disk_pop_update_mode (new_disk); + if (!_disk_pop_update_mode (new_disk)) + goto error_destroy_new_disk; return new_disk; error_destroy_new_disk: @@ -349,7 +353,8 @@ ped_disk_new_fresh (PedDevice* dev, const PedDiskType* type) disk = type->ops->alloc (dev); if (!disk) goto error; - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + goto error_destroy_disk; PED_ASSERT (disk->update_mode == 0, goto error_destroy_disk); disk->needs_clobber = 1; @@ -914,12 +919,13 @@ _disk_alloc_freespace (PedDisk* disk) * partitions are removed, making it much easier for various manipulation * routines... */ -static void +static int _disk_push_update_mode (PedDisk* disk) { if (!disk->update_mode) { #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif _disk_remove_freespace (disk); @@ -927,24 +933,27 @@ _disk_push_update_mode (PedDisk* disk) _disk_remove_metadata (disk); #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif } else { disk->update_mode++; } + return 1; } -static void +static int _disk_pop_update_mode (PedDisk* disk) { - PED_ASSERT (disk->update_mode, return); + PED_ASSERT (disk->update_mode, return 0); if (disk->update_mode == 1) { /* re-allocate metadata BEFORE leaving update mode, to prevent infinite * recursion (metadata allocation requires update mode) */ #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif _disk_alloc_metadata (disk); @@ -952,11 +961,13 @@ _disk_pop_update_mode (PedDisk* disk) _disk_alloc_freespace (disk); #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif } else { disk->update_mode--; } + return 1; } /** @} */ @@ -1826,7 +1837,8 @@ ped_disk_add_partition (PedDisk* disk, PedPartition* part, if (!_partition_check_basic_sanity (disk, part)) return 0; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (ped_partition_is_active (part)) { overlap_constraint @@ -1854,7 +1866,8 @@ ped_disk_add_partition (PedDisk* disk, PedPartition* part, ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; #ifdef DEBUG if (!_disk_check_sanity (disk)) return 0; @@ -1883,10 +1896,12 @@ ped_disk_remove_partition (PedDisk* disk, PedPartition* part) PED_ASSERT (disk != NULL, return 0); PED_ASSERT (part != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; PED_ASSERT (part->part_list == NULL, goto error); _disk_raw_remove (disk, part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; ped_disk_enumerate_partitions (disk); return 1; @@ -1909,12 +1924,14 @@ ped_disk_delete_partition (PedDisk* disk, PedPartition* part) PED_ASSERT (disk != NULL, return 0); PED_ASSERT (part != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (part->type == PED_PARTITION_EXTENDED) ped_disk_delete_all_logical (disk); ped_disk_remove_partition (disk, part); ped_partition_destroy (part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; } @@ -1952,7 +1969,8 @@ ped_disk_delete_all (PedDisk* disk) PED_ASSERT (disk != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; for (walk = disk->part_list; walk; walk = next) { next = walk->next; @@ -1961,7 +1979,8 @@ ped_disk_delete_all (PedDisk* disk) return 0; } - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; } @@ -1995,7 +2014,8 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, old_geom = part->geom; ped_geometry_init (&new_geom, part->geom.dev, start, end - start + 1); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; overlap_constraint = _partition_get_overlap_constraint (part, &new_geom); @@ -2018,7 +2038,8 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, _disk_raw_remove (disk, part); _disk_raw_add (disk, part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + goto error; ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); @@ -2026,6 +2047,7 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, error_pop_update_mode: _disk_pop_update_mode (disk); +error: ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); part->geom = old_geom; @@ -2064,7 +2086,8 @@ ped_disk_maximize_partition (PedDisk* disk, PedPartition* part, old_geom = part->geom; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (part->prev) new_start = part->prev->geom.end + 1; @@ -2080,7 +2103,8 @@ ped_disk_maximize_partition (PedDisk* disk, PedPartition* part, new_end)) goto error; - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; error: @@ -2152,11 +2176,13 @@ ped_disk_minimize_extended_partition (PedDisk* disk) if (!ext_part) return 1; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; first_logical = ext_part->part_list; if (!first_logical) { - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return ped_disk_delete_partition (disk, ext_part); } @@ -2169,7 +2195,8 @@ ped_disk_minimize_extended_partition (PedDisk* disk) last_logical->geom.end); ped_constraint_destroy (constraint); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return status; } -- 1.6.0.6 parted-1.9.0-preserve-pmbr.patch: --- NEW FILE parted-1.9.0-preserve-pmbr.patch --- >From 456b8c4d2424e52f7861e14d667ba7c26ca1cce3 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Fri, 5 Jun 2009 14:14:08 +0200 Subject: [PATCH] Preserve first 446 bytes of the pmbr in gpt. * libparted/label/gpt.c (_write_pmbr) : Make sure we read the first 446 bytes of the device when we are creating the pmbr. --- libparted/labels/gpt.c | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 73bdbb2..f1c4f69 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -982,7 +982,18 @@ _write_pmbr (PedDevice * dev) { LegacyMBR_t pmbr; - memset(&pmbr, 0, sizeof(pmbr)); + /* The UEFI spec is not clear about what to do with the following + * elements of the Protective MBR (pmbr): BootCode (0-440B), + * UniqueMBRSignature (440B-444B) and Unknown (444B-446B). + * With this in mind, we try not to modify these elements. + */ + if(ped_device_read(dev, &pmbr, 0, GPT_PMBR_SECTORS) < GPT_PMBR_SECTORS) + memset(&pmbr, 0, sizeof(pmbr)); + + /* Make sure we zero out all the legacy partitions. + * There are 4 PartitionRecords. */ + memset(&(pmbr.PartitionRecord), 0, sizeof(PartitionRecord_t) * 4); + pmbr.Signature = PED_CPU_TO_LE16(MSDOS_MBR_SIGNATURE); pmbr.PartitionRecord[0].OSType = EFI_PMBR_OSTYPE_EFI; pmbr.PartitionRecord[0].StartSector = 1; -- 1.6.0.6 parted-1.9.0-remove-struct-elem.patch: --- NEW FILE parted-1.9.0-remove-struct-elem.patch --- commit 9a4166aa0420ca16c73ba11e0cb7bce4d326cbdf Author: Joel Granados Moreno Date: Fri Jun 12 14:41:53 2009 +0200 Remove unneeded struct element. diff --git a/include/parted/disk.h b/include/parted/disk.h index 5207e0b..172fbee 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -157,7 +157,7 @@ struct _PedDisk { PedDevice* dev; /**< the device where the partition table lies */ const PedDiskType* type; /**< type of disk label */ - const int* block_sizes; /**< block sizes supported + /*const int* block_sizes; **< block sizes supported by this label */ PedPartition* part_list; /**< list of partitions. Access with ped_disk_next_partition() */ parted-1.9.0-swap-flag.patch: --- NEW FILE parted-1.9.0-swap-flag.patch --- >From ae78428ae1bc521a11be60b6acdb511a6e7aee21 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 18:34:46 +0200 Subject: [PATCH] Use the swap flag. * libparted/labels/dos.c (msdos_partition_set_flag): Set the partition type if the user sets the swap flag. --- libparted/labels/dos.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index f219e7d..b4cd23a 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1413,6 +1413,11 @@ msdos_partition_set_flag (PedPartition* part, dos_data->prep = state; return ped_partition_set_system (part, part->fs_type); + case PED_PARTITION_SWAP: + if (state) { + return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); + } + default: return 0; } -- 1.6.0.6 parted-1.9.0-use-linuxh.patch: --- NEW FILE parted-1.9.0-use-linuxh.patch --- >From 2f0d94d200fb8822a9f8699e93b65c2d5476b087 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Tue, 30 Jun 2009 16:21:02 +0200 Subject: [PATCH] The file include/parted/linux.h is needed by dasd.c * include/parted/linux.h (PED_LINUX_H_INCLUDED, LINUX_SPECIFIC) (LinuxSpecific, _LinuxSpecific, fd, dmtype, real_sector_size, anchor): New file. * libparted/arch/linux.c (PROC_DEVICES_BUFSIZ, LINUX_SPECIFIC) (LinuxSpecific, RW_MODE, _LinuxSpecific, anchor, dmtype, fd) (real_sector_size): User new header file. --- include/parted/linux.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ libparted/arch/linux.c | 19 +------------------ 2 files changed, 45 insertions(+), 18 deletions(-) create mode 100644 include/parted/linux.h diff --git a/include/parted/linux.h b/include/parted/linux.h new file mode 100644 index 0000000..1a4171d --- /dev/null +++ b/include/parted/linux.h @@ -0,0 +1,44 @@ +/* + libparted - a library for manipulating disk partitions + Copyright (C) 2001, 2007 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#ifndef PED_LINUX_H_INCLUDED +#define PED_LINUX_H_INCLUDED + +#include +#include + +#if defined(__s390__) || defined(__s390x__) +# include +#endif + +#define LINUX_SPECIFIC(dev) ((LinuxSpecific*) (dev)->arch_specific) + +typedef struct _LinuxSpecific LinuxSpecific; + +struct _LinuxSpecific { + int fd; + char* dmtype; /**< device map target type */ +#if defined(__s390__) || defined(__s390x__) + unsigned int real_sector_size; + /* IBM internal dasd structure (i guess ;), required. */ + struct fdasd_anchor *anchor; +#endif +}; + +#endif /* PED_LINUX_H_INCLUDED */ + diff --git a/libparted/arch/linux.c b/libparted/arch/linux.c index 66fdd37..92c8f31 100644 --- a/libparted/arch/linux.c +++ b/libparted/arch/linux.c @@ -21,6 +21,7 @@ #include #include +#include #include #include @@ -75,24 +76,6 @@ #define RW_MODE (O_RDWR) #endif -#if defined(__s390__) || defined(__s390x__) -# include -#endif - -#define LINUX_SPECIFIC(dev) ((LinuxSpecific*) (dev)->arch_specific) - -typedef struct _LinuxSpecific LinuxSpecific; - -struct _LinuxSpecific { - int fd; - char* dmtype; /**< device map target type */ -#if defined(__s390__) || defined(__s390x__) - unsigned int real_sector_size; - /* IBM internal dasd structure (i guess ;), required. */ - struct fdasd_anchor *anchor; -#endif -}; - struct hd_geometry { unsigned char heads; unsigned char sectors; -- 1.6.0.6 --- NEW FILE parted-1.9.0.tar.gz --- ? ??k???R7`q????'??AB??]??V?????|??k????a$p?\??????+r ?G??H2 =??6?????At??Z?a???2???}JT??L???9?mO?G?V:}6^?????R?[?????K??%???L??/=4{???z?????????-?R?@p%3?Ld? ?????]s???I?GF??@??*?}???*`????????t?0FC:sp?????kK_@??)J?hJ8??? ?;??b??G#??22?FD ;tK????d??A#?? 8[fGt?^?As?C?l???O?!9F6?-[??'?$D??;? ?J3#t??$?X@?))????3D?????o?V3 ??9?}4?(?x?%?????M?n??????`???>?n1?@?3??"A? ?1;???q?4o ???7@ ?o F??]?1@??A?7lb?V? ?DM????M|???&??z???? ?$;??@99?????%??) ?P?^?%h??????????BD??|>/za\???@WI????|?0?V??????mv?.[??!4?o?sY??0_2e*N_8? ??~?r ?Ay??B4?nI&!LeH?t?{?????'? V8F?}?^?????? ? ? ??????vn???)?????????????*? b???2%???O???bI???iC ?+???7`[???#k??? ??K???bNBO???V??^???.??9???`??^??u?^E ????b?d???w:???q?\JXR3?x ??d?@??xG??R&?K?n?{,?|?????\??????????????K??-?C?6??S??P)1?cA ?r?\?e?`? Y?q????'??N\R??n??Z??3u??????)d?*??S?VU?3u?%5u??o??? ?&9kZ???VHT~ ?EB?*?Q?yA"T O??B?*?A??b?d?Eca??jki???s?@e?H?o????????d%????[#???C ???~ct???:g????{0 6???????T?7??4?[?cU?WL??-?????I????7?5??u??,?q??y)?}???????7V???????cI??-0?1? r??w?!?5-??[??^6F?T?E[?2T?V?9?????q????5l??QS?;5:????l ??I*?3? ?P(Z???e?*a??nop??X)X/???????6R?]w??"q?M??4?@" ?TC??R.???{??c.?i??Avt?????i?3x?????T:l?no{]es??r?5???JB?????`?mU????????bPUK$}??*???a???/?a???x?C?I??K???8t?d?%S??96??`p??p? .r=??J*.??!.?A???4???D? ? ??u??? ???]??X??y? QLip??O?4(pJ???~????@??w ???Ov???R??K?~._???_?u??:{?????R?"?y??b???5???8 ?(:hve?,??g?Y??I????M??"#&?g?L"??a3 ???}&?J??_??;y?pxC???WOw?????????!??S???.?;??& ??!?"??????5!4hH5??#??]???&3N???P_ ????X?????????6??Vu??7????3WhN???G?'??Q???V?7?^`?S?d?@?E??ptps@ Z?JM+=pZ???K??1????????????%;?l??g:????C?TR??,????!% &?1?1??u\???m??hOJ?f]I???j??@t"Q??*??$??d???$W??[??V??w????a???hts?X????FX~^_??6?????????Xm?`V???qUn?D??&m?VL`t_N????b?:_??t?:?X?????q?d??? 9@?.?I?M`?|?FJ???o???? 1????|??A?????*X???Gnv?&?8k{?j.B?G3KE?E??>? ?)&??? o9??XT?????(???D?_r|~??????-?{?XR?x??ex??}[i????e^???w??l???? EmP?H?Lf???1?????a?u??`?9??3&y??R??jS?? ??2??W ??zMz?Pj?k9}B?2j]1???s???k?W-t?c3fd? ?^?Oo+>??????????t?v???i/*?9???#?*??? =?{1?e?????2??q&?qj?QGut?A????????*3?T!???(??i???WALb`?8???S??fQ?}?R?????:??3 ?>?P ?y?a?4?????M??-p??[?8??# #????_"D???A?|?\???.?o\?r?N^???????$?f.??l?{?/)?????.?|????? ??J4?9k??=????zV~???2?????s??#?!?o ????'$?w???GN?Kwy??f??l?c8??9>4?.???k????.4!8??????-P1{`??Z?T?b?~6?$??X?????? ??.???8S??r`cq?5F???hf;???e????Xf??Ltl ^?{:9#&?o?M??L???n?I??y5?5? ?9??"!`??S_????????r??f??????#Y?Qw??j?,-]8o?Q?f??U??lV??M???f?J??O???*v???W? W?I?s ?~???\_?&???Lh?`?:??y?9?? 8??m??c?o=1?Oz??9s^????|???r??????+?)O??????5u?Mc??ywP??{??#????????Pn?q???[!?"?"h.:??1??8z??U?@:tO?gBQ?+?B??Y?~J3? 4??~?|Q??l,??f?????? o????,?Q???j?ds?????????9???KB??Ba?!/W??v?(?????? +??????W????Y????p??VX?#???????~1H????D?????6{??V??4?FB??s?e?k???F???6 k0j????r???x?`?V????G??3h>? t?A??$??[????j???? ? ?h?\??.???? g?03?R4??s ?v?DN??i?,s?&?$?}???I???WUj???c?5?(???\`?y???C?H?8???A????^?g*@? ?,`?? ???L??'???????) ?????????+? sp?? D(fP\n???O??A????D?`????^M???????? ??3?h?????O??s`??-?@I? B????W0??.~??O?T?XUpW???3??f?Ng,?5 #L}W???? ???????+???l??l????0?x{z???7?qi?N??0???N???n7-??]??~???_???L????ND??.??? ?????? ???X?{??VDB??Y??E,??gH?n??(?I%z???v?39??T8j ?????_W?}????dGi??k&?z/(W??B??dJMJ????????b?}??w;o mG??N??(5????'b??s?0?a4l8(??Q0 P???"?bi??Mv?'C? ?????(??u?LY???????r???????? 7???ed??.??q?????'?? k?m??U?????e?-???;)??D8B???v?1??N?Bs????f???Gx????&??????6p5???^??????^NLJ??.??T?? ??=?dD^?r?z'M?????43zr?,???????=???t??N?" nS? ?=?.?*H??e???;???Eq?D? vz??C1E?H??ry??n??9V ?l?????5??;Y#??g?e??% \D;??m ?????x??&?d?"??N?|e???K>??/???:c R??8???z&?LP?D?????i:?g??E?"^o?;?3!:?:???k?M??#?^??? ?@?ir?p?1????????E(T? ??'T???I?g?o?Z ???x`?????1?????2??(?/??p??????? q???61????DF?c5??j(Ij*???????=?v?(??^1?v?&?-ELh ????d?VG???3?oSR??4???lO??tt???)2?%?Q???H?e?R:p?????????C??????0??0?%?C??%Fu9?????????-??]?!????/o???*)?IyX9?1?^???1s^???w????q??? ?|? 3Ns??P?{Ew?FGz?t ?????????r???DApV???*U?X??*??Bu ??,????~T???o??r??A ?@5yU?Xj2_???g?bY??????H????J??\??^[;??????kdU???o ?&???S?i???????"?z ??;nv?.P???a??^?9?s???l??:[1??'?]?:AG??-?sF?D ?`3n??.EAS+.????Qv?e5?D?S?_?Jn????????'w??E? d???Z??(Z^?u???u??`????8T'~=???x??W????Wc??#??M????????s;l??fl)?T=? [? g|?&??L'??????M???M&?}?? X?OG???=??0?:??????c??o}h???????????!???1??3?Tb?B?s?? ???+? 9?:T?nlp]k??mMD7lx?Z??????? ???@x?xh?u\?v0?Ed?\R????wi? w?Rt?bp0H???][??+^h????M?T?$?<&?V?n? ????D??l??A?QHe?b?A???? ???KyeA?hEj>9jLx?*-K??p?????6.??)???=?F*(}[?u????B ???????*??h ?????#?O???K?/?|??)??? ^??o~=>z???#?>?Ksw?I?r.(I?E???x?o??????1u????\V?-???UvM???FFo?P?r?b0??*???zS????G?:???=??IZ4??? ??}L?y????7=$???\??$l?kG?}?[\???v;I??E)?tl ??gM?E0??o?$??O?yZb$b??JZBBw??R`?b4????eA(?|?N2?pQ??,>P??&S?????OQmSI???S%?Xi?????&?,mDKl? d)U?(?`M?5h??$?y8 ??_?D???Z?dFn\9?)?N?5X?????????hn???h?\??@/??{?d????B4 '~???,?#2?K???????[?!.z????j$??^S?????#1? ????cI?I?p???9??\b?"m?-:7?z?\,'?????t?????z?p????? 6??/?]????!"h?v??7''??????f.N<%%:y???'Xt\#?????zK?>>?????*??WF???R????]^U??uZ?,???vP??b???h?}???i?????G??J???5Q???????:?x_k?y???5????23 n????eUh0?;?\nY??2? ???(4??s?y???Qh0?8????????????ef?|3g~Uf???6????9/?%)K$#t?w???N?&?#g?8???Q??h??\?FO????MR I?t????>;??|J[??1?f)9????'?:'??|?wN???3????? ?L3 }^?Gc?MI??7??v???;?:?????Ch?!?I}??&?M?C??%}CI????5_?Q?d??0b+cJh\v =J ??? 2? ???,e?Z?w#?Zi?????)Je?3?HSWm?&?X??N?"\q:??~K?? J" A:?e W???TJV???'???X??????op2?uBS9?@?K=?\???~&??E??f???v????? ?dI3 i???^d? ??|??&??1?R???9M???Y ?|5:^;???y6??mX~DTo}?l??flN?????6zXQ??x?u??7?????q????q'?)??n?D?8N?l????t?2?F?4|?7"? M!?1?[?666M???Tc????)-?s???,??;?+4??E?????W-8??????O[??i?p?-x??-???4??5??m?Z`????????????? ??m??&????d*:?P?{?s?:???????#.?|?(2*PX?vT?{c???????]?zWrj?of?????D?J???Oj?=,?S2?????????>????A??f??H?y??`??Z???j?>??T{/Z??????0_???k*????B??6??p????:??]?E?=?x?zw?/?/?n?0????f???????g??2vw?? ?f,=? ],?EY?'??\??h?,???y?Z?????:9FAl ??>?)$??r????+!5???f??;6 l??H??s?#??o?mj>?{$?mt????AR??)?0??`C?gZ??LR?c?I??????)%E?i*?a q?B?????`N?,)xNr? ? ,??)???)??AU'1-?(??;???b??;7?8;??9 ??`I| t????LAQjj???B??j M?(?@? d???v ?u ??? ?@ d? ?H.P???Q\4??,@?E???t? B???2d k??????m,<^?????%H?M#?^B??d/ ?????[0'???j*?? X??D??rj????Su YAbb?;??"?r?????7AOt?C #-0T?[?6??D?Z`pD?}??????B???M??2?H?????5#P?2R02??G k+?? h]K??ck9?o??%R?k?JS?m-?? z5Ir??????????? ?Sx??????d?VW?`$?e?6??Q????VoK[*?;r?????^???z????+?>?}ny?&??2???Yj???VVe????_??v?\v4??????c??$-jFm?@?~?X?=?\`??5??A??U???o???????!p? ~Z???Ab??PZT???.??Yl ???!??KC3?????(??? YO?|?,???J??#???AR??,???9QXml{??????5???i????,??YZ ????-??2a?O???????????v.?>??? ;?G?W?8???-3???????????~d??6%/?]??smX^?{?,???? 4???J?xN?? ???c ? ?R????m?????????? ?F??e~;?@?X???Tb??C??!s?p?????#?C? ?Ln?P`?R(???????????(S=????5??c??k?????$A?q???g?2??me???????? zNs7 ????4wCKx??XL?DI????.{`??????S?G?i ??N????kL??t?e?"???,8??63??i?9????X??????o,N?t?E@????.%????w?I?J?4 aD A?Jw?-r???a??j? " ??? ?l?R?iX?:o_??GL`????r?_h??N???*?L??J??#?k??F7`A???EO?!?%??s0DG???v?{!??&??!???`y??6???^?%[?l?1>'??J?u??~??0????8??X?j????|??[?P?????y i?i#u??GL+g???&,A???S%a?p08??a?????~??????S4??@? ???????Ef?^nIEr?W&?'???N,+?V G???YB?,???h????????feJ??|?j??OF??=???X?;H?:I??????~??'??5:??^^N???U???????V???rF??M?oz??@?AQ ????Za???????J?#R??}x?5;;_^?u?????'?$E]????$:L?G???j,\H[??$??B?do,E?9?4]m!??E ??pg i?h??\????? ?E?Y?{7?K??????j!???'??????????X??B????#?(?0???P^:??????o??????FuM??2??~X$?I?T?J,???? _?M??jB?.??lr?w?Y`?????Z???YS?i???@dG?)r c)?t??F??4??k??U?U??????????^bD?Z???????|?!?? ??Q#d????m?%??U?6 ?f???3???d8?as???=?i?Ht? ?W?G?.?| L_?Y?@???3???A?R??;??~ >.X???K?Q????IZ???END???K ???M ?F?e$????6p?X-??D??.g??9@?????r ?9,2W???L%?PX????i???, ??ZD?E???0??=???????????????r?3d??ctV?R ?????E'?????b?????!???? #JW?%?N?I????d?]fU)?YFmg*ZrD? ?oF?????e? x??????3 ?c?? ???3C?????????x}e??????mu ?????Wmy3R?]?]??????s??&???????J? ?zZ on??U?? ??=??8?=????l???q???#???wOO???????????'???????n??z? ?*??1UxS?A???lpS&^4?hV?0`????!?Y???? ?);?CC????%?_? ? ???lv??n????&q??&?vD???w??w???0????5???p??~W\[J?zY?????T?k?Qp?ay)?m?l?(?n??l?F_??vl?!N??&??j??p}?&`???%??n@?h??@??%,??f?4??????#??#S??`?M?oxB??zr??k?k????;?1? ???v??Ad,t???@??#???x? ?D?d??Al?R??h?l??6????I3#}?5???????+?bo??HQ[ z??JU,g?^?????!?J??O??n}?K{(????vc??:C)1??x?:?be]?Hw)y^,????}$?\E????DB?????d?????????? u???i7 at R?R??X???????]A????$?d?j??Z{i??F??X49+?sVl?k????]:=`]|????R??????I[P?$U? $u???R0???@???z??x??R*? #?+^? ??B?/i?!???gdz???? ?w?=rH?3?"????$?a?r?? 1?U?hl?9}?M?`????_v]??t??-? vor?????R7?'?A??e??X??P?V?*????g??y???e[??????X\.N?3??cH???????????? ??t?rLu??0????13?66??$?rG/?????\g?#%??'??????|??>u ??e???@??u????q_??.??R???udB|Za???uC???"&???sj??#1?{J?K-??\?X??j+f?| ?$m????t??"b???k??M#H???????4?\C??0C@???X???????????J?1?^ ???~k`? %1????? ??R???;??km???????]???????H?????, ?:S0?? ?^??sI'?W?S6|7??7???&??????_r1n%c??????>~M??C?o+,P??RV'G?? n*uN????????? T??????Q]????*.W?H??ve)?9????E??We,"h]???a?u??? ?%??@q??J??????s??G??????????W??j9C\?:?R??,?? ,M,04???8??m?e8? ???_?`?????@. ???u?y 0M??7?H?A-C?k?J ?1??c#??U??H?;????4?H!??????R$J?U???A??5???)H1???v??H?H??(?+??"???l?v?T 1???I`R.???a?. at t??+B}$i?? ?O??RU?xb??x???-?l??D?????`???V?L$^-??9IJ?P?U!;???,;?3d?L}???v??L??B? ?*??*??(?????|E???F?e??+AE8A?oUn???q?{??g?~??{|????Tn??bg???? ?N)y?T)Tl?K?U???e??R)????DkH?/D?V?~5P???@nY ? ????w????w????)5?r?????oo{?o??w????Fm8? ??^s?3?s]v??^??OO???9??q?&G?F?-?????*?]-N?".?XF??Q? ??G?#??CN ez?O(a?3X????]?? ?,???Gi ?%??ge?! >K[??NK]k?????z?!???#?????? ?`????g;?wM?o????????L?gh???????X?' ?~?4? ?/??? ????C?_=????,"S?4??? O???Tr?(????+??:L???i?Y????'?Y??????????|z{2?????*)??r?%????ae@?J? V?????Fa ?n??:t? ??%?\( N?J_5??Z???P!? Im??=??????\_~ ?o?`@+X[??>YVq ????????J,0i?????? gC|[*?X??K??q?j??x?-V!.????s? k ]\E)j?g?%?????#|??wKe??_d?.?3p?R??xQA????h:??????2?????R]??^`?EM:????y??"??f?^;6 ?b:}?1??B?e?????? ???o??O?[???u?? \?OM??<&?}.????-?=\??"?=?mNY???'???????????| ??P???R????t????T??r8:mM?3??f3S??>y7%??Y'oR???|C??x?????QqX?TMu??R?n?|? h9?s!nm?E?????,?>?l??R,"?2??'?G??????unR?::????U?8g??9-???H?? ?5%=??J???\??w??m??T- ?-??_????QQD at c?X\?e??U?r#?? ?BV?`??{?s???\|C???[$? ?y?? f/?Px,?!???:???Z?$???5?2[???R`??L??????I?0??U?IU?s?M?3?&j?? ??MGE?v[I?i0e??H?)| ?6?@??l?Bc????/?$??R Qe?k??l@I ??????lV,^?? ???????0!C?????~,WR??????k|?v?8!??8*,&E??ChX?????H???R??? ?/?b ?Q67???g?%??(kTL??? \?A?n;?H,???i?HK????&? IYp?? ?~?=?A?????t?&?}?r?AJ??[jK??J>5?Ka???&?? %???m??? ??%cH?2= ?????lz2?7?:S #??k?.{R??!????`??K?uY?1?5???`!]????u?T?\???k?aG@??j??? tV??VJ?C?z??Iq????KL+:??T?Z ??????Sh?/???MeV??^lr????/t??D????E??8?lTA, R LZ?~???????????8zDtp?????[???V CM;???V?l(?`??:E???sv??l :I?q1g???V6ft???\5x?~'??a?e!?>???R???Z;d?? ??D??9w#??(85n?i[?"??? ?7w???????5???+??d??~?m?R3?z??HJ?]$UF????????M??r?D>?J?s(??"?????????(?Il p,'%???e0-??d?)4IP?&??? ???3?J?6????!?<]??i?????#K??r?BL??3?!n T?"??)`??({?~6 e'W?e,_r%??k? ??? ;?_??}??k?5B\??2.+??i????z_d?C?????%Dy?2(?y??*????`B????0+? ???8??/w?-/??? ????H/??????4[N?M?28? ?????N???6?z??0?a????|?fg???k?"???_?qO?`??N??2 '??Vz at L|??.?Y4???? ?8y$^u??`?k?!?>?i?,*?w?W??y???????;**?W?0???#_???? ????P??!??)???H Er?Zd]? 5????^"r?????G?? w?9(n???}??x@?WQ???I????$???I?????}#??N.c?Gn?O?????u1VTX???v?X.??g ?,????@I#'Q???? ???e?M????R??+?D?a???!???o???3???^?\,2?e?U j ??G??????1??&9R$g?pY???????Vp+?F??6e3;Nc ???QH??V2????/??Z???tjY;%q???"J???V?z:?g?"?nqI??Z-1??'?|??? ??TB???R????7?+)3???>`IY#.=??????W?(.~?? X??O?Ow??Bf??/_??j8??f ?? T??8???????xk?]p???|??!???H1??,??V [??e?????y??E??????^o?z?????C (3?JN??g?O??5p?d9?O?>6??c???0??????c?`;o?? ?8_??a+??D??.H?F?_????6???u&?"???5????????lat????7?Lm?{???~q??p??s4???9?*7?j?] L]???m???p9?x??'????S?3:9~?66W?r2}J?|???_?^u??gB???S?S'?( 34?9????z???< HNJQ?b[????D? Wanw?? T??X????E?f?E?)T???:@A?E? gH???????????U?V???)?7?????&???|9?|:z?????????U????G?????$eJ4?hY 6e?*-m???????O????/?o z?h???=`???c at 8A???f??V??\o=???v?t?A??+?i=8z'?h*$? 44 M?@???/?G???A?ih??@g?q~??`^ AEbJ{N??2???n???X?????/m?O???+???4}l?(?M?d 7? ?j1?aX???J~?@X??E?Zl?X ???M ???M ?|5?????????jt{c???i$?a#9??????????=>JZ8????V?@?"D-B?"D??5)?.??C`E??Z?4?Eh????? Z???~??{O.s?3[?=??v??0?]/?????9hNG??Zs??????u??????!w?.?S?>?.9????e??C9??A;???i?4?N_????3???c??"??Dz??mo??=I?\???2QY????N6??XjrrG???I?%???q?0????}.!O??Q?6t?H??v?Mb?.?y??:?I??k??YY???.? ???????.?V?WX??????) ?????n?B?~??I?N?|????o_?Y?6kE?? ?m?w?l???V??e)??U??Pi??????={??j?? $? uA????Q??P???\?1????x??*y?QP 6?????c?gD????mD)??N?ER?!??=???0??^?????????]????^??1???e?a|mw????}???[??b&??????^???G?x??az????K?????N??%?Q<[.??j?g???d??? ????????s??&???z?s??P:?^p?tf"\%(=@2!0j?!g&???b?+CO?3???l???q:T ?????? ?T$??^+@??}q>?????lT??????v?s???N??u? ?R4??N/)??? 6:U???+G??~IEb??:?)t? ?????9T-W ?V ?`]+\??C?b~?4g`???M??A? ?F[?4???z?$MDdM??4w ?G?g??F?????]@L???U?~??_d sn??SH,5&o??KF???r1?????~tq????n???2?}?,??4e???Z??jE*??????i\????>??:???m???{=)KY?F#9Ay?n?jc?yTw?oV;gd&Z??)\"?NG ??X-??????jMDy???I=?1??MF?By??? ??i&??P??}Z? @?2GC??b?v?L?t??J??7?X?A???????G;??W1??pN???ay???a*_,?K+?,I?pE2,?p??o9Wf_???N` ???NH,9??????@?EL??? ??Z{?uJN0??? r?}N?$,8&???D?P?????fYdb ? ?????????T????a2L??h?2???;? H??Fb?D02r??Wm?J????}'k???f???N??I?|???'oz???V>? ?????l'??j???o???u{?$???e4??Y?a??s?z????`"???#1\???u??>???V?S+$G!>?@?$,i ?\N8???mr?(?>V??BX%N?DUK?L\H?+R!y:&??(?= ?1????????'3=k??H?0????? ?Y???KO??!?|^Dn%?p/Q$?+?7???dg?a???+?c?n??1G?`???4?n:?? ??H??f????? DK??jKs???f?Ui?H??S?M????????R?/??????h?3ZH;?@??#??&??`9I??6??%??? ?CC?j?3???z???????={m?K?|#[p???0+??t?????uh?H?JK??)????J???????? ?????U??7?~|{z@\??>??M]^$q??=?LG U?l?!&xY? ???? ?O?#p?U/_???????"@8?e>??????q?'?C?????In??y}????????52N?????g??m??????4u?*(% ??_??bS???J^?????\D??????h G???A??9?D???xE???U_??????h?D???UOR?? k??U*?N?kv c5??]???]?M??iQ?g? r?=y??!??t??X??TWf?g?Z????r?E?C?x_?G???k??CY$????e??^????^?^???jV????)x??)?p??????kIr1?'?I?????c????p?q0??2U&??0?O???q.??????a^3,????Kj??R?|? #?>F te???.??)?y???j??$??e?@???I????L?3' S?So??^???k?3.|qI????c??c?a??{????{(jB6M? ?"????$M??n6???=-? ????Q????;)?Z??D?,|??-??Ow1?:h?zPv?'?<'?$?n?1?T??]??fp*?XIn?K?I?o|e?j?????????c-?6(B|a???????k????!?,???~????%?n????Y?kI?P?$?????+??? ,7???hsw,?????`???H???jX6l$??QV?|?*N?u?C?S????A???d?D? ???>$E??{?=?????E??4???$L?gBt?p?K???9?????&?n~a`{W?b8}2??Dv:C ?1????????1[?>?Z|*Rx? IE?????u?nPd?? 1??*? ????^)?\L?d~? ?&?P?d??DM>?????????=U??hq???}?????H???? ?#0k??*2k???J)?$ Y?T?]????T?H????V~?'@T???P???l"????An??2?H?????H????Q?:???????3????E??????u???????Z?#^?R?A?,{ Eb?O?????zc??8??=$4?????>??n?B?"S0??(S? ? ?MV0rE??I? `-?y???l]?????y?[?aN?5?SKv????#.?$?\??b???u?:{Ts?,??????v???1???8:aR??s:( ??7?xzF8?8z????? ?W [Z??[???? U??$[??5?8?C?J?????b???CF??|^?@???c???9!s???ry??4??0?>0?!??? ?SO??T?f)??G???Q?@????2 at zVP???pQ_????%?(??????U?H&`???3?\5?R?N/?0? o}???m??,??j???f&???|6??]??????^j???|???5? }?+??? $?_?gt?? ????b?FO?yz?)ug.??;?k??????_???w?????????-7A??O?-Xc?????m?'??M???v?:?{????W'??????L????w>?????em???h?: ? ??`' q??:??.0`??F????;]`????:??z?F?Q? @6x@???[7???T?r?y3?'?Qk???G?*?L?e??? K?#?'?$????MGl ?q???V?? ??? m??|]?X??}4??cHs3rV??L?G???,?b?+b?????Zt?e?5?F2)?S?t"?f??zd?9[|?Cn?\?2???JR_w?@?0??q???^??K????T??WE?????!Z?r?d??j??v?\Y??? IJAk????j??vR?? ?}|w??}?????4?I?b?f0??^?vM'B?s4E??x??W?X??? ???????6???wk????'?V?*0}??5?tj?????s?yWf?|?V?3???A??.???3T;yTIw#U"eb{?P?!?1=?v8_g??W????/??u???c!U????6???N???????2?5?)?b??X?9?3?h?[???&??sQU4??333??Y7m ???? ?r at 2??E?=??R?????m?????/,?jF????)???Mq??Ye?N???x?e7PH??????DOCw\???2?2&)Qi??B??E ?@?.??b?`???M??Y?|k? M?E?1????c????M???bE+I"?i?D ?/???T:f??(]+??o%??9 EK???A?Q?A05z?.ia?=?.?????.5?g??????0 ?B2?d??5'??D%a?,?)?? u??-???9?dc~?^ ??\9&??V???J2?qg????P]??H\Xc?????{???I?~ ? ???xYy?????L?? ???G????8???0??0???S/???a?? ?>[??? ????.???N??N?????>???iot 6=? ???#?wr?o?????j?ch?f Ax??6!?-?uM??{?|??@O?x??e?N???7&?%??7E??TZ?i???`ww?Z372<??H(??{?,?V?k:??&h?S13??z"L????L??\9?vf ?pr???QS???z]?3 {KKSa?1?`qz?$?????9?WY{~U??\?J?a?EM{???PxQ?4_???9? ???8?|? ?-?\? ????|?r?? s-???obY????}?8L??t????c?3:???????l???N????????'?"\??R????????????c?????VGf??y?????h7[?e???e? ?wX???`??t?S?5hV?j?? -FRL? ?2*y?Udyg?"DPX W?????????R??_????(?S???g??A?J??}?f_??????JC?w??6??j????n? .?hcT?g????s??7R?~?Oc>k&]=d;;??]p?/V4eESU$?AE??s?t?M?????5?7sOK_V?)?v?.A?z??x? &PF????T??g??RO??g?;??? ?x&wL???h?>(?' ????d??^?????(H???I1?????????1?s?K}%?}??7??5???I??K??y"???s?qf???XE?kR{???e)?;7mT?8?7C ??IV????B>??JY?j?c????9d??."??p?????>????Le?F??1????\^O%??s]VW2??n-3?6XU?{??`?9?d5 ?#B?????(?3?6?*[? ???????tG=l]???V:?0?.?e?u???????lC|?B??_???N28?j?L,??i??? ??P??bt~Z#T????3v???\?????5$x5?$r@m??On??.PW)UT? ?n&?+|???Th&??? *?GQ?e???O_57?5?yq????&?c?H?@???W?7sQ????$??^D?@*iT?T,U-???Nv???z ?[?????? ?k"Hgk)??G ?3wKHEeL?#?i?"?p9.T??????lP??UuQ`o?PP????jk?p}@?_O4P~?*?w/?`}?%? !)?2?????*#/?[%b???????????IJEv??$OS???????`?K?d???n????-5?? Ww:?]?po???rK?DF??uG??p????z???$"0 ?e?68svY?? ??gn????0C???# ?g?5o??eO??*???@??p'f??#? ????>Z" ??z4#??D???[?X@v?z????|m-???}?c? ?????C.?|??;?????f???]?S?F?~???2$c??? ?4??5??FU+??f<(`:??[h???????_??t?G???Q85[???I6pO}???T?????:1f???`~C?q?r?.#?????)l|?~}?^?????5t8G??\??WJ?h:?}u ?E?????q?e??M:'MGhu????????~08??????Yu?O??.?)?x??"S?s????j??Y??5???u??.????,5/?a??F 7#G8N??WD??H??D??=e^v??}?? ??VeyN?P?[W??l????^8???? yw??$k?wp??.fp?n?|+??[c:?0?3???4???V"{?o?E??(Kq???g?v?~?t..8???? ? ?r??! ??v??|?v.>e??????????mlv??EzOA????~:????Mn?nD??????d\?l??ra???>T?????t??uJ?S?G??Qe?????M3?,???????d~w?J*?V9??%??X?????T??xl?`?x?c?? }5_k???? ?e?????t?'?H?W?????c=M?>x6??E??_???>?????.y??????YB???C?zF?????#?%Mj??]???(?=I?U?V?2@??)u????:J.ce???}Q???ky?R?\???@??T?/?ve?k-?a?????4???[QL??>??@?{????XH;?C'?????/??b?'?U#[?U?4S?M?2???SZ?V?z?s?:??U?F'67#Tt??8?0R??? =????o?????wI%??D?k??R????s?@??p??v?{?d4????u??Q]???????I ??_??<*6?k7E+???? o?G??UN /??O?>???]t???#'?9??\?@@o????/0?(;P?n??M %?N?zR?????e.ZC??=??vm???9;???;??v??y? P?????4?e???{\???[;????f?;?u?j?W??~B?u ????^????*????m???6????&j`Hk??? zi????2???ya?&??T?6?wMz? ??Q.??h???,? v??4????s.????I?9j??E???NM??????A?h??(?v?r?????$vY?{k??0?a*F=?Fn+??_?X?????%U?>???V?*?k{????2?()?6?i}p??@?:Ds?7 ????????+E,XAqk#?Ai?????z}F?Z?o???,9??? W??????*??HX?g??Bs{N ?To?????B??~??????????=??Kr??=k?*/ ?%9?Y?R? ?????K9^?b?????p???? 5Im?zHp]?;??TI???????W?????????r b4?Bzk ?/^>?j???4???+y??d?l?Q?T?2JLV&Y?P-N? s?9???~???Y??W??u???m???L?c??\LZe]e1 $~1?$x?{??]5\??9?k?M????7????>q?x?O??=V?S7?6w\,??Z??U?{?[&???~H?fdG??????r?<@~!QQ????88?F?`???kn6?\?Y?/??????W?u'?,13?$?????????*MkS?t%?];?2qQ??8??=9XK?V?T??Z?>344?AR?W?P-?jr2h3?NN???7?k?iTl?^??L/?Zt??+?g?*?1?^xy?cc?R??o?%f????~????0f??E? ?? %???p?}?? ?vO*1f/??4?x jX&p*?F??/? ???? ??:?'??h3V??v?????? ???????%Q?B/?R?r??3??s7?????Z?O?y?????-??{?X?????!?oA?H?#?X ??? l?.^??????}???NO?????v???&Zi6??L????2???OT?]?A ?nQ??I??L?8???p??R??ax&?_ ??T??????d? ?WX? ?FKA2?3{???.????#L??=?&??X??F ?U?? ? 7?~b }??? ??t91??GZ??o%????$>"???? U?E???2?X?q???:?? ?*b?(?Ais?!?/?Aj9[?????????7?2R???-?????U9{???40?n????Z???"&?a?? +?#????m>? ?s?????@%?H$?????$ei?H?`?????yI??#???A???v?F???&??r??W?W?zu?*;?Dm??-??"@u?5??&?-??x?????? }?g6????????tl??${ywc??;???eS?#,j???~N????{???????????D1????? ??w`???E^?5?WU8?3 ?$?T??g?(`.??? 0??FP??l????H???? ????????G???I?????!;?@?c??AVz~? ? =???p???MJ?????j?rH?qdi??}?????_??z??????S?#???^??? ?sP?H???P? ??]I?MF?_Q? 4?LM??7?(?????t???h 9??a.???T?P?[?????*????$? ?-??? ????6????.??!`T??[f????v?&GX??????l??????U$e?cs??s??RnUK)K?d?,D?R\?O?i? L???$??C^WG ?j%C?&x?l????tR?????K7???h??0??sd?????%??&?k?Q0N5v?z?F.?? ????^???I???!D)4a?~?"??t????S6 t???b?I ?? ?1?M?G??W??????a??5?~ ???GK??Zm*G?m???#??a???Y???q?..z???$?????4?TB??&?>Ip??71??:T?8@_]????B???|?R???3????BYG!@? ??r ??V+ BI?+?2??j Ix"??8?Va??????(T?T#?? 2?n? ]8] ?M8YQ?)|?????! Btp9?u?? hJ-????6wauh`_?_?)?h??5??Rmp???? ????|???G??U??G?p?T+???iu`??-???J?L???"??tL?? ?C? O??eVU_X??yR/?????Wt*?$??D!H1u?R??????C%?^???_?? n????5??_??i? RC?J!?4??*$?K???R?? ?????Y?(?????W>I??new8?kBaI?????N?z*??x??? Z??0~nH??5/1???y?/tB@;(??!?????u?j?=\???????]?????m+?F0`NY??X3?(u???c_???[?^cC?-L???EwJ-??4R???? ???:@uHAF &?N~?????b C -??O?E?q?*?uA?G ????!?*?{???>??M?)Q*???m?:l??GJ???(? N???)nbFg:?Z<??k???R&??HQ???&???j????~7O?A????Iv?5???,?'??N?i?s???3? ??0??????p)? ?G6?.????P???? AV???#A1??+?H??i}?MF?O??,~??>?2m_c3 d0$?b?|`A<>??=?+?3Ki????i]%? ?D???9??3N???h0r??P?Wx??@.??f??HR?????S;????g?4??BgpIO????U?Hq???LW??;2?+?S\`????b??S????:"??????+i???K?????T]?? ?????y????a???{?0OXAx? [...9993 lines suppressed...] ?O?6U-aS?do?(???ep?dD9P?H?#'x@(3????H??Y?fR?%eyS??KN?V??d ?d?!????_?f ?b8???f?????? (Lh?P??[??1Y0?a??w?Q???????D ~S??lQ?`! ?C?1????+? ?f"?;?p??v?v??6????-?!? \???S????s?J????Ic?? ?????JW)??F???????TO?1x?C]0h????w???i?A?? ?~S???>???n ???P????y|m??|???\?,??????w???'?*??6!*?-4???o?r????*w??k?W?n>??f??3?in?{??V?P?? ??23f?O??Q????g8?F? |????~?!q?nu?2?lj&?_? ???m?H????0?????3??????)???? ????m?w???:??W'??????pv9? ???????????,???????o???????? ?e ?9?I??q &e?q????i?C9?_`?z??H`Pq??l??c&??&??T+2???S???'?Q?hcT!G?e?9?,ZB~?f???$??????>??1???0D D????x??^6?~!?m??????{?ekE??]??$????????m?56??H)?n at 9 Ng????;?q???'j?1y????rHy]??H???? ??)?|n??Iq?;?] ??j?a?????W???hNv?1S+?c??R4??65'????} ??????????V?j?,??? 1 ?{???'o2???"??l?????^JwC&M?????}?????????|]???J.?a?< ??2<>?@Qc??H0?? q?-*?!??QZ"?????????X?z"?amo??f a??-?<?w?B??L???~?X$!? ??? f"??\??6i??&?Q?GE??R g?~?R ?C??? M? 1"%???a???(g??`????FR?S??W'?}??U?X.?L???P"Q?T?p??????v??? ??D???????&?##?B8n????b??Z?????h?;????j6?????!??O?k2?/l??`l?????????G??????_N(???`W?V5/?????L#?EK?% ?? ?0?z????dD}?T4![DH?v?#?5{? ?? ???v? z!6???+Q;?????CR?6E?1??H???3???A*@O???6c???,x&???9N2C?m???p2?#&??D\????f??????i?Q)?H?!U-??Y-????B?DiK?@??)??w$?pC???q????{5?W=????jQ?&R?c???+?????oO??w?\????? ??:6E?$ ????c?? ..?I e????K???D],???-!???P?]????\Y!?e? t?????i$?):?_??zRq??x??%|??9?h!g??????h??^?x?????g???4???v&O?{??.??w?p?????b~4????=?????????)?$S??????q ??b?7??4v?B?/???? ??L?im?r}??? ???N????i????XA?^^n?W:v4 ?$?D?p}w?+?t??????)????Z,?&f??P????5?*?k?2?Pe??;?}?99j???????-D?q???J?T2??oy9?e??6~?H)?|N?????;???_?d"2?U?????:?q~???7??u cG??f?!??A4? R ??~o?2a1L0? ????^gh|g?Y at ji?i??????P?????2 ?t??G???(U7????K.?zL??zx?J U???7? ??????$|???W-?x?r???8?!B)V ??????C+0??a?e ???i?1?|??@?u@<6??U????V??4 ????V??f?;??? ?IH<7'v?QI????A??Z`)?+pS%FI,I??L!?j_??>?v? ?D??gS?'.??_???t???RA:?FmF?k??Yd?X3V?7EQ??e????@??$V.?pc???a}*?\T???V??d??,i=:??=, U?)Pzc???f0?9?g??C???3?n??-??? %??IY?+?B?i???????D???D???t7?P??f>?????& 4?HQL3}?e;!? ???+?J?N"???]L?Qo???Z???JPEIv?????????Z??st fW??H????T???s???9q: #*kI?>|  G(?Q??!X??O?kv? \??~*?z??a|.??=Su:*??=n?? ??D?2?v?? ???)?nW??.??`??u!? y?????????????0?????m?D8@/?0C??;??????????JU???{?m?!??k?X????=?U???`??/Wi?d??H???#????????HTeT?RW??l?\??MV????K?.?`??S??t??v;""`?)? ?*?ny???][o?0~f?????!?nL?*??P)tRa????MQ?D?e??s???I???j?|???o?????V??S????????:?????aGA?o>q?V????xz?7xP) Gkz?h????????RM?V5n0`???N?P???? ]? ???????X?.?O:?o?7?? ?M??x??d8x?~?7??4x?????????Z??????3?l?RIbq???? ??2??Bb?1>D:DW's??Vw??YyC?g???`? ? ??????D?-O ??/^??3?Zq?-??k?#,J????AS'/X|? 7?A|??>'?h?G?hn3?3H`1??h1A?L??l?????L?????????Rd?:??T?G??*A?Tb?????`Q?????>:????l?Vz??6???&????, @???????F?7??|8?P??????4?g???eu??#T???????ov?8?O?s???Y??m? ???`B?*??6?o?????_E??????[U?`?F!?Je??XN>q???7???w??????/???D????'?Lq)?@????P???k\| ???FP???>?Xb?,?;qX_p???K?F?yc??jC??)?L???|[??9=V?????D???? ??????E????l? 5??.?????O??5?]r?\r?D?????[???"?h???G'j???????Z?gX4??b\e???????2??k?V?G]N?.,???BKT[???z??1J??W,??q?Z??+??d???A???\?(????????G?e?D!z?-m???H?F???8??|??? ???e?--S???]?? b?c??F?cK ???>OE??l2???kS.??Yn???a???Y?0?H?h ?|?*?&?_N"?? ?Bg?Xt??O?_????d+??=??c??1C???d|???i??w}??I????&?????????W??eO=;K?_?~????????D??)'????9;??H?E/?81?Q????*=J^=?y??V?l6?e????DU??>?c?T?9??V??:???L??#T??(n ?????????=?E`!?dK??}> uT?*??t?u?7?9%j ??N6K???1??-???DDgM????9WE???,??=??>dt?L ?Si?e?[?< ????Lf???^???w? f4???&#??R?T??V2?G??????+RAX??"tx>?P30?mfVr5????!?*???\??M??????'?A???{?????8????6???&?J"F???8 9 X????1????q????? ?Z??L{?r+ii?I2???!??i??1#??gq?:????dd???(? ??$?D?r??!??-S1md??u??o ??????)C???qo:???V4.?>[???M?O???I\? W?#:??e??g??b{T[?RyWD;?j????????r;??A??{j????t @?]?s???@R?2R?S??c????P???M#\r???H??i?_????/}$n??K????bH=|??$???"??;W}?H??????=???R??^????*????A??^??-v???????1? {???Y??txWtW?? ????????r5???Bv?2?<{???{9F?6??lo??u??d????M;?=??????WU?h{$??hu9?V? ???D?63????????G???????/???z?P?e?;\????A?E????4n??a????/?????????{???Gx?D[?????:BH?)?;a?????3???A?$0?????#B????tL?V??? ????}?r???LM~????o??[?7?.a{~B?D6??r??`?i?I1???????g??/?? ? ???j/DY?????7b??t??I?{??$?R??jf?Q??N?,?B?#j}??B??`?lP?.(?K&????of???r@???o?????`????????>???'?$?A^??????X@????(?s?r6?Bx?j??P????s???I? 2?3;?????[???n????3?????v??"8??????P4?q????P{R???n??FQH?9k?8h}?56!????}Qd?i?=????{> ?n?E?M??>?.?Z?:sUl?SFQ??? ?XN?d????_4g)g?_0?-n??[??XeZ (??;???1????? O1?JT?t??a(???$=5??Z ?w??v ?]?????:9m???`rYn?>??M8I??t??q ;??$??0hXv??{??Y?8e?$G?E?@??U???i??X"?@\?E????f???w??6?G?cj4!i?sI?(d?"=???F?,7???=Q??????N????o?F at e??M??(\??VUK???9??si?)SHD?;????FaEWi? ?bh???????_FJ\??M_n??T??U??HU}????Y?9??m???],?D???3B?!Y3=O???uIY9??2?J??jj\?49??=(???=Re6????/?$"???'_K?%h?f#Kp?1^??GY=B??[d??t?????xet?J?i?w?????i?ZI???1_::#? ??S?o? '??+????8?`???F*x?\???|Y&+?Y?.]{?_+0?wohO yI?>????S?1wG??I\?A?aR?v???\;?????o"???O?? ?????? $?y ??W6l?]?(x???(u_ ?5????%X???1g?Z??0?$?? l*? ?REw? ?Mp.g ???????lJi??:D!G?L??|??JP????? ??>????? C????1al0 ???Z[? ?;? ?????????E.?E|WddKf"L)??????8~? 5?dW{ /df???$??En??'?BB$3?????EE{n0??Z???-cU?E?C?H?F?,b??<l???p????J???T at Bq??B6{U?<-Z?0??cTxL??/vlSs??m?????R????VN??????H?q ?,?2?OPV??j????'ad??`??6h???Uz?tG_?#_?e29?z?????~z?{:#??+?m??A????6??[A?z,???X???j?x???(? ?'KO?.cP6iT????9?I?\?L????AD??8??S?BtW?e???A??gI? 0?r?fXA=???"??"??T??0?Zovln? :??x???? +g??5&?"9?Q$(????????p??Q?????;3???q???Su?a??o??^??;??7?N???????7???NO???v????????????t?KL??|aZ?V?????N??N????x?u??0j)?w?????????X??????{'? I.Q???]Q??Ko?^E?4Xt?????????Si?T??#?%@*?$???D??a???O)i????b3"????tU?vG??"?>*???I?r_r???j??7M?k??????Y???p??\?fGx?u??y?{????u(????n???U?$??????90l??8??????$#O?rn?83 ,????^X?????H?}?O?3?q??&?Q? c???; ????U???I%Ab?????U?????X?C ca??"?;F?????3p?????7?t"K ?A;(???a????Q??? @(-?&??n???=?mS}U??3?>jm?A?? ???Q??x?>>9?????h?N? ????,R?8?4?^fZ?$zgp??@Z?"? ????ez,=K?%??_??Z?S?ZY?_?4?????pA??????4Q??:M1v.???Y??????n??????J W?8G?????????z??BZ?o?(??m)Nj???[x?=???Z D_????p?xb1????,R???"%o,?$? =nqg?C??????F-8??c?????~~}=x?V????W?????p???a???;?}5???"?yFn?U?.2n??*b?A???$1??????1=?U?_??+ ,????Je? ??'+??J?+?,??M?g9? ??????a{W?z?????V?]???1?aT?K@?CW???l|m'SS???@??????-?V???+??-9?=?? ??:??? ???????U]??n1n=????D??\?>????0&l?^?hwM?O|??#???w0?Mw?uD?[?????????(?tQi?:?-w?-wT????l.?? _?(?n~???4>~???#?????v???]?}???[??K????a??sd 2i??>#?4M?4?4?T?g?x??xp?+?? _?'?{r????/=?8??"0??? ?l?d??????????????,??];?Z???A?Y?pX??????Y??l?[]?Z????4????2?????@??[1???GZ??: E??@???? ?q?L??Y!?)13?X??a????N~???)-3Z??"?????????~?>???.?o\?r?N^???????$?f.??l?{?/)?????.?|????? ??J4?9k??=????zV~???2?????s??#?!?o ????'$?w???GN?Kwy??f??l?c8??9>4?.????????.4!8??????-P1{`??Z?T?b?~??$??X?????? ?Fu _tU???\?z?3 ?'G?h?fc;??c?m???X?????? ? u?J?%K?v??,?A?"sy??|AI???s9???}$ B?t????j??:y$ n?R???9???yy>-R3?m?PE@*{?us?z(??k?Gc????: ??????@?????????@s??'~?k??J?xs????????iTB???]?@?8???????????????/ E??i#5??g???X? J-6xa?? 8Gq&R?1`?????sDL ???j?y?_?CbZ???iC???|???????v??h???+??2??k??l???)?~/r{P?Z????? ???9?u{]?$?X????;d?;?;?=???&i???Q9>????8?Gw?????sjI???iN???M????L+]?A?A:etv?'?N???????)?'y?+LOM?|Oq???A?~?? ???b???A???????O?b8wfX+ Y.?v??=?ph~????q?\ (?l0W???]&u??????????? ??-jU?nI|?.?????W?q???Q??!????9N??K????x??????;x?\'?????(??2??!?Zj???u??V?Z?d?j?z??z??*{p??!B?_;??'*?UJ?8`:N??sp? ???????W?f?o?TD??;??X ;t?mE???Xm G???? ??p???wPk?~x???.A? ? c?dP???a??N,??L???????>??????????FHO??L?4 ??E0qVDK ?A?????,\vn?FM???????????sk?? ?-l?????:O3?3:?a?]?ZCln???#??V??mU(??????/ ??T8????\$+? I\??J????{????I????B??`%?+a?:??F??p???a?Y?W???Y?`tnv??%ub? ?4??? ??X'??n?w?f???X)w?%E+???xVZ?`??? "&55? 7}?3????????,?+<'???w????OE?c??CM?|$9+{?h???$,???n???????3??3mX?_?)]v?-?pp?i??c?Qi?&#?K?I??3W:8f?6?Kw~_???'U?<3????<%g?J???}?? ??J???,c?`???CP?|??? ?????V}?_????\?el?uwl0????ZU???????6}?>I?"??ln?f?r?i#?gS??e??o~O.???pxi??M??RpJL?s~????,?+????i????dwK\?]??iCe?J?+mWYS?f|?$?vYW*?U. g??2W??@9??.T?????e?$ ??q???d??7?f??8e????.`??+=!k?\?e?#O ?L[lj???1????V???B??????i??;??/:M ?L???A??[?T ??/??d??zm?l~@??m?4'??']?}??m?_,|?????Q???9~?L?,J?:7??$>!??|i??/?H? ?+?Z9?????o:????s?j?W???f????i??`'Hr???MH???????h O???~De???P?????r?m??3I????J?l???????c??P???=x ?a~???rRP?!O4p4"?ijP7 aW???&?;#???????B?R??1?k??l?&s?Z?_ ??[S?3???k*????0?(??(??f??P--[?8??.???"@:?\ZQ,C???x?a??????s?3j3?!????c???????????gdf?8M??W?R??"Jk???F*?"}!?;?#g?Pb?Td?&??]qz?Kj?D3????_T#R?Q?sI?x?E?=?J???UzU???&g???x>??????J?x????cD{????9?c???????o???H? ?Ka?Y2???#Q??:?T?h?????o?5?^{??)??0?????e??w??T??? ??^?h?G??m~|? ?'??H(??? k?JA?????????$t????????:???JE????????YZ???'??bi??4_V?? ???>)?????O?X?P?Z??Z??????y%L0?\???q???????Ti?$???+A????? ? Z??)~? ??g?????dL?/?>??n >_?h????!5??????Q?LU?a????"xY???r?`dG|??e[???l>?? |rC??NJ^???S?JY?????ZF??j?? ??mB?O??0?x3B??????(w??l???S@?!?9???_???7?x???%.?\??S???u4????A?@ t,H?q?????????????]DjX?g????E??=??????J??Wd6&zZ?9?i?s??W ???FR7?f??H?UD??]!??")??~??i???x?? ?????6p??z???E?MG????6R?:?H?F_????4*?)t5;???c?f???{]c???o>????F??? 2???Y??U2z? ???N??B?"GeY?Bd????~,?]^x?J?? ?'??q?{Pp\??+???B??5?}????O?,? ??????$m?jV????I ?M)? ?x???w#9??H???=?R?????????z?H????z?$=0z?[&?O??|U?? ???? ???#????N??????#}???_(??R??q?)Z?????!V?z???I????nd? ?s ? ?)?(l?q?l at b\_r??3?Z? w?W&/nm?l?B'??$L?j?^q???? ?|??????P???nH O{d?pP A????Y8@ys?*??S????PX?~meXZ???3? ????ok??????_~ ???U????R?J?????>E?$%???|??????s>?? g??w9??ERv{Ps?]E#y?",#f?*x?? ??E???^?T?? ???Rv???6?5???? ??0?? ?NP tMF???IRUh??%??}????/??;????????????????w???c:??%????6XL^c?&?? u ?m??.#???]]}????R???}??8?S?DXXl(b?J3???? BT??OI(jLD?iF8? 1?Z?????5?????h/?????????< _:1?;"?f????????/?Y?L???KzGK ??k[?rW>??c??EX?@$??Lw?????A??????2|?0]?`O?????&???M???MQ5??G??R"?,^?u???7??[li?)?i?X?`???o???b???B?\?0???]Xx`?O?(??v????????v??v?; rC?Z?? 9???D?G?????|nm???a?mk?m?'?_??????1??M??0 ?sb??PKqX4?s8?V?L?O?i"?_nCRi?Ml?)@????8J???4'+0?_?(?d?~??? ????>d??f?(????i[?+L?)????T?3^??fu??YM????? ????"?e??h???2f`@?@r?]?2??V? P?5kV??b8?_???????IN?Z??h`??H6??m???G`?G?`X??#Sc??yq?L?e???k?$?c?|??g??F-??fX?=????? q?X?2??? *???gI??A?@??????u? 6u???q/.?$??a?v???oa?'?A???/O??A?$?? H?????????(>8?U37??G??s?^? ????????$>?;?!?T.?n???}1????j????&?i???B?z??b5x9???4?n?7i?^??k?@ok?E??H?x?o??i????}CoX_&8?VD?t? ?-???~O?-??R????h???/?iFh:??????=|??K8??0?n$6??????)p??a???A[??p[?/??y?n??|h?0?T.??-?"@????3??(j?J?(B?K??L3????Z??Ml{f ??}K?c?? k?C7??2tA??wy)Rd_{????6??{?? &3???V/|??????\??dx7^b?????? ???P?e?P{!?GC????????V???! ???g??p+X?L??????8??x?.?S/??/?????s!??7??.?hF??????????j??V??8 p???H?Na??????m?.PBP{?????H9lE?h????I??l?tb?Pr??qf???r???????'? ??-??%?p?R?????? 2?hGU/??>?WK???W?9?p?i?A? 545???L at l?!??e???????????#?p??? ????????J? ??3; ?^??@???V?-8?|Z??h;{,?T??\?2H??w??$?j????B????A3??????9?aUE??L?79?~i?Z?{A?5?>|?D??I?p?/G?$?????????bK?>?m?gr{!????[?#?`??T???P?.?pD?k? o?;???U/?+?8??[?rt?v??,??S???????|5!j4?0p?????.???O??????????y?du?u?uM?Y?(?f?s??X??B?#4?v3?3D? ]??<??f?w??1U~c?*???] ?NKw???~?Ix4k??od(TB???'?_`??????b???? ?_?k??????[(??????+???.4]????d??doi^>?$t4$?1?{?????Y?(??aO??`?QF?`?Y:%?0?? ??as,lDl?d/F????"?n???? F'???N?X?V???e??K????&?q??&?p??????w;???i???Ko???+???;?????????D??_|??????S= ??$?2w$r???w??~?????????^?c??r5O?f??BHK?u6?M??)??o/????d2???vZ/????.Y??1?????*7??-?P?*??B????s???'=???G????nw?]?????>????h???????c#?#?A??&}(H??NPxtx???ik^?N?^@#??5m4?Q???]? @?5??]???fIz??b>C.=?5p8WI?8pv???????.?????"?/?A?*???z???Qu??????r??u??:%?????,=&??jjW_}?9.???lRMX????XpC???B??R??PJ?93??g????0???????*r?????????|/??DH?????7?????q???%???R????????Y?? ??p%??????Y$5K??:f???H?g??\M?0T?0?coM?4S??????w?:?D|?K?d1}i?y!a7?????%?0R?/??Y_????f??|??Ea8?????d????Zc???,?S????????????O??? ?1??_`?0N?P???T ??Z?f???Z?C5H??E?=???H?)???=??v:B,?N?-H?s?R+?8]1k>1??\?t,?6k/?9???X?N????iU????}??e??+]U????15??io??ze???R?D`5?"???Rje?z???8? ???X??6??L?W?QU[a???0}t?k#\?BW???Q?~??@???ty????L??k????[?4????????????????n??V??V????? G[l????h/G?????2????????j??q?&'??I?? ??]?=??????c?vs?????G??m&>c??????f???h???????2?%??,?A?_G??MDG ?fx>????`S>~?JP ?p=?_?lM3??f+y?By>??I?@??????yE(??????b.?J?@Kb? ?r? ?P??????ayEl??dK?H??>-?F? ??&?L?k?>?R O?;?*?%??8??=^]?????M?soTJ??? Q??&???-3???r;??-?Xr?4?~?.??.vd?r?????3:????l4;???5qf?9??w7???C 9?q[?z?P?v?'?:??K?Co-?8"??5?????K?%?y?????R^%~?????V?>?{??7 ???T??C???????c??u_???????????????l.??)? ??~???O*H`X?????4fdU??G?< [??N??#?v?L?=B????<4??*??I???E????WP???B??????0E?? Bw>in? j_?/??@?v??7???{V??a at A????t`???3t?????i{u{?????w???&{???????CP??/?O?j?????;???????r?$+????H???r_???`?-??%?6???&H)??>?/?x???????^NQ????.X?@g?h?/gm?^????IQ/????????h_????,?C?_?|??BX `?B?ok??['?5MnT^V???^[?55?`???V??E[?gxw?T????E?e?3Q9O%?=)?n???'?m_?pshc?'c???/?O???1??))j?YY??lM$4)???U?".???I~M/?S?I2??)?98??F????4'?A?P????N??M??Y??'T?Q4kJ??]??V1TydZ??zV?9????s?\??6X???2`?? ?????Bfd`16/??*K?U?\p?fE?]??G?)0 aH 6DK)?T??a2??$?p?X???iT????_ ???g3_8??j?!?}z:????.c?K?Bz;???-x?Q?u???#??{???4? j?????v??F?JC??%o??^G??ZS?j?W????k????????  +?s>???0pP?????}:?/?Grc?B?n???7?????e?5625?KLrS?#>?>????????>? ?VYv??/1???B"Iq??H1O'?EM??I????2g:????aQ?????)?I?o3R???&??h+??????????4???I1?/3?w?g???.?l?z?? ?j8?:???qC??d?????????I?~?e?????;????3r?E????9e?58????z?c1M?6r$?0?"???]??po?ht????w? ??Pa????4?^???? ?J???`????i;r???b?Ni+???"??e?R?n??t??{ ?W????R???g???Jf?5??U&U?*5????@??'@$?> ?rT.?*\?(??????U?d]?Y?>????Pt????????(???F??n?;? 2f? ????"?????? ?p?`H]??????8?????O??N ??]Sx?Z&???????al?????"?&?{)`m^w????????~U?2?H?<??1?????6?+?`j*??1??M??8?!??Y???`(?BH??? Y?]{<IVCA]D?+"?? mqx????T?|7?*??E??f??????X??}P????]?4?????L|p????t`??4Np?p?[?p?6???????? E7?????????0????q40C?????4E) (^?;???'?C?DiP?? ?4?nHD?????SSx? ^?I?E?9eG???z?)?:??}?a?????k??T?9????(b?????a?V???????B?aJC!??(??j_?J#????D-??g??(?h???(=??,?V??z??0r]x1q;?G?~KK??? |???o??/?]??U??q????to?[?r?i??FQ??T5??w5??kN?????^7? ???`?"(????E???Y?? ????&b??Xm?]?u i???( ?2.????t?F?f? vG??i{?????????U?H??gj??G??t???/?3]?q???[]???????? ??e??c>????r??HJ?U'?>lKg????K??4?? Tk??????m!1O`k1E4_??U@d?E?E_?,?*??W?i"?oT?m:?????) !?Q??CC???w??O?? ?f?d???o[2?4]???\R??; ??&?vU??&v~???&?????Q ??????J?Y?NM? ??fZ? M?E??????"?H0??`:{ ????C%???:`?Z$>?6?:?Y?.:???7U_<? $J, ?i?????'??`@???)?z?M????U??I????:+{??M???????bv ???????????????G???]?o???$?? Qt????{??z.'6??&?B????v?2???????? #p7?:????`Y?m!zA??l??Z?V??UKN???o????H?L? ?s??I??Du`??-?I?bY?ftJG'c??2? ??;Q??v???}???? ?'C???z yX??y????~Oa????????|g?B?v??a@?b??L|?]?????B????#\??J6_?/??? ?nf?X!???|ssyu??=??|?|s???gh?mS?????X??Z??i???Kz0q?0?k?Q ??????????????Q??GM?{:?c?{????????????4Wh?OA??wY??????a?F????\? ??p~?|0#o???u},p?op??????b?|?x??x???{???????\?[?Z???X??{?\?????p????????+?????|?`?>???qL?????????=?onr??????M?? ? S?K^??G???11x??^??????#?????vy??|??????) ?????Hh?Vx????n???B j]?/u?s???/?.??? D??? `; F?x +??9?? l?I?X??????????!????_vXL?b?H?g?$t)?r"?-?????P???5 ??}????u>?? !?????}U??????z ?L???_Z????-?????r?\tSk?t?) ??S???C?m7G?cs???oNC7f???3b???N?????]??yp?QHa?!?-<\$ec???B???<\????-}'???????????????????5??M`aaAt???EF?????"&?f???U%??-a??J?Y????wl?????p?0???{? ?d??w?? v?z?@??&??" 7?< ??1-?fWF??????Z\%??!@?:A?o0????4u?{Wa@?~4pY??q?I?Q??G??4i?@-;???2R ??T%?Q4)? ?8|??}_?kv??3[`??Y???,???A?p?????? ???#?h??p] $?5??n?1s?QL??e???? ??Z7?'|?I@?'??.?n?4???????Z?i????"? ?????Y???:?qB??????0I?1W???Bkh??e!e?? ?X?(?"k??e??JX+?Q*?&?? ???#u]???o=X??9")???? TuI?u ?%Z???u?e???F??JQy?'??O?#;?! q+ ?????#?:CE?R$?"??p ??? `6??????U5??`???$j????7???R{"?R+G)?s??Dv??J1@??? ?q{vi at I7?!??U??% eN????G($??R^?I*???ZK??? ?x?S%??*y?W????QA?ffC??? ??????/-5P??d-U???-?3w?N$??F??J?l`?f??E&??????3????8???[ ? ??-P???N?R?KO.??E` Tu? 2'&ET?????e???4?U ?'?e?xJS Z&0?tV?y?????}=p??Y??m?X????;E?|i???%!05s?es??0}Q?,??1wY3?Hi??*?@????????t?;??wo--29??????? ?~@>?9??~?^?-??N?g?-?~+???e?*z?=???S?J????'???D?n???^4 ??? "':?L`?#'?6?s?t??KWz???R??4?p?8?5?9????????D???PA??????[?d?????.H??d??`??3F?????z????_B?Y ??S\??-?? *?|Z???R??bU??????x??-???Pi??G"?M?2??HzXJh??Pi??M(?X?????XR???5J ]???????&`????????%3a?0L???0? ?d?????*L???' ??]W?i,??? q,0?(???????>??P?r4??????.fL?? ????J???????#??:???G{V?a?Vb???/???Tq ~] !?Y????&??z???A?zE??? ??G??_ ?gOn?????n??T???????9"/???@?.6t:?d D?9c???H??f???k??.x???j??\^1b?uMdb??????@??H :*LSy7^?? ??"?????T??yv??S?B?????\1 ?d?)?7[????S??? ?X??S at 2@??$j?W7??.?eI??y ??Zy"P??0R?Lt??? ? ??r????^? ???^????J ??5?-??Go_$<?B??????m^v??W??P?#??F???&???_a???E@?????w?Yh)??t"w G????q??Q?"$???)??0?~???>???8???????DuR??8?????5??sH5[?o??g7.??1???M????}??%j?B$u???e_??-??????U??l1#x?(??????A?F{5??=O?F????????<?P`????<?????^O??%??t??K???=???Oe`0h???8?1?55?(??{m??eo?h???tR???????u??P??[g?P?-??/B??S/sS???*???R^x???CQgKA??$???G?6X?,?TX?Zqql ?????U???gd?g?D?0 O??`???m?ph/%? e]?7+?v1:W?&'????ea?????4??:1?? ??L??)?1?? ??Y>o???@??|?yI X,?4????#???y?2"`3??K???o?1?r ? >??v??8 ?i|q?mu?????"???jz?????M??3i;????b??Y?>??(RW?V>N????X??o???-_A??zkMM0%??'S?C? $?J?9?S???{??fr&?cR8?]I?????I7? ?!?????~&?????>;j???O\?????Y??????????????????????????~ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 3 Jan 2008 02:26:18 -0000 1.32 +++ .cvsignore 10 Jul 2009 13:16:24 -0000 1.33 @@ -1 +1 @@ -parted-1.8.8.tar.bz2 +parted-1.9.0.tar.gz Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- parted.spec 26 Mar 2009 15:02:14 -0000 1.132 +++ parted.spec 10 Jul 2009 13:16:25 -0000 1.133 @@ -3,29 +3,24 @@ Summary: The GNU disk partition manipulation program Name: parted -Version: 1.8.8 -Release: 16%{?dist} +Version: 1.9.0 +Release: 1%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted -Source: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-1.8.8-xvd.patch -Patch1: %{name}-1.8.8-devmapper-header.patch -Patch2: %{name}-1.8.8-noinst-headers.patch -Patch3: %{name}-1.8.8-manpage.patch -Patch4: %{name}-1.8.8-gcc-4.3.patch -Patch5: %{name}-1.8.8-nofixgpt.patch -Patch6: %{name}-1.8.8-alpha.patch -Patch7: %{name}-1.8.8-dospartrec.patch -Patch8: %{name}-1.8.8-appletv.patch -Patch9: %{name}-1.8.8-s390-compile.patch -Patch10: %{name}-1.8.8-sparc-enableraid.patch -Patch11: %{name}-1.8.8-avoid-none-stat.patch -Patch12: %{name}-1.8.8-newgcc4.4.patch -Patch13: %{name}-1.8.8-return-error-update-mode.patch -Patch14: %{name}-1.8.8-virtio.patch -Patch15: %{name}-1.8.8-dos-label-swap.patch +Source: %{name}/%{name}-%{version}.tar.gz +Patch1: %{name}-1.9.0-appletv-support.patch +Patch2: %{name}-1.9.0-extended-mbr.patch +Patch3: %{name}-1.9.0-extra-var.patch +Patch4: %{name}-1.9.0-noheaders.patch +Patch5: %{name}-1.9.0-pop-push-error.patch +Patch6: %{name}-1.9.0-no-cylinder-align.patch +Patch7: %{name}-1.9.0-swap-flag.patch +Patch8: %{name}-1.9.0-remove-struct-elem.patch +Patch9: %{name}-1.9.0-move-function-declarations.patch +Patch10: %{name}-1.9.0-use-linuxh.patch +Patch11: %{name}-1.9.0-device-path.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -36,6 +31,9 @@ BuildRequires: gettext-devel BuildRequires: texinfo BuildRequires: device-mapper-devel BuildRequires: libselinux-devel +%ifnarch s390 s390x +BuildRequires: libuuid-devel +%endif Requires(post): /sbin/ldconfig Requires(post): /sbin/install-info @@ -61,26 +59,21 @@ partitions and filesystems using the rou Parted library, you need to install this package. %prep -%setup -q -%patch0 -p1 -b .xvd -%patch1 -p1 -b .devmapper -%patch2 -p1 -b .noinst -%patch3 -p1 -b .manpage -%patch4 -p1 -b .gcc43 -%patch5 -p1 -b .nofixgpt -%patch6 -p1 -b .alpha -%patch7 -p1 -b .dospartrec -%patch8 -p1 -b .appletv -%patch9 -p1 -b .s390-compile -%patch10 -p1 -b .sparc-raid -%patch11 -p1 -b .avoid-none-stat -%patch12 -p1 -b .newgcc4.4 -%patch13 -p1 -b .return-error-update-mode -%patch14 -p1 -b .virtio -%patch15 -p1 -b .dos-label-swap +%setup -q -n %{name}-%{version} +%patch1 -p1 -b .appletv +%patch2 -p1 -b .extended-mbr +%patch3 -p1 -b .extra-var +%patch4 -p1 -b .noheaders +%patch5 -p1 -b .pop-push-error +%patch6 -p1 -b .no-cylinder-align +%patch7 -p1 -b .swap-flag +%patch8 -p1 -b .remove-struct-elem +%patch9 -p1 -b .move-function-declarations +%patch10 -p1 -b .use-linuxh +%patch11 -p1 -b .device-path %build -%configure --enable-device-mapper --enable-selinux --disable-static +%configure --enable-selinux --disable-static %{__make} %{?_smp_mflags} %install @@ -135,6 +128,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Wed Jun 10 2009 Joel Granados - 1.9.0-1 +- New version. + * Thu Mar 26 2009 Joel Granados - 1.8.8-15 - Begin to identify virtio devices. - Actually change the partition type in msdos lables (dcantrell). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 3 Jan 2008 02:26:18 -0000 1.36 +++ sources 10 Jul 2009 13:16:25 -0000 1.37 @@ -1 +1 @@ -607ab4c3cfd8455af6588b97d99ad0ba parted-1.8.8.tar.bz2 +ba0122a5ab71cb3b040d6193532f1aed parted-1.9.0.tar.gz From hadess at fedoraproject.org Fri Jul 10 13:17:46 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 10 Jul 2009 13:17:46 +0000 (UTC) Subject: rpms/clutter/devel .cvsignore, 1.14, 1.15 clutter.spec, 1.18, 1.19 sources, 1.14, 1.15 Message-ID: <20090710131746.714F911C0048@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2775 Modified Files: .cvsignore clutter.spec sources Log Message: * Fri Jul 10 2009 Bastien Nocera 0.9.6-1 - Update to 0.9.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 20 Jun 2009 13:56:56 -0000 1.14 +++ .cvsignore 10 Jul 2009 13:17:46 -0000 1.15 @@ -1 +1 @@ -clutter-0.9.4.tar.bz2 +clutter-0.9.6.tar.bz2 Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- clutter.spec 20 Jun 2009 13:56:57 -0000 1.18 +++ clutter.spec 10 Jul 2009 13:17:46 -0000 1.19 @@ -1,5 +1,5 @@ Name: clutter -Version: 0.9.4 +Version: 0.9.6 Release: 1%{?dist} Summary: Open Source software library for creating rich graphical user interfaces @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Bastien Nocera 0.9.6-1 +- Update to 0.9.6 + * Sat Jun 20 2009 Bastien Nocera 0.9.4-1 - Update to 0.9.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 20 Jun 2009 13:56:57 -0000 1.14 +++ sources 10 Jul 2009 13:17:46 -0000 1.15 @@ -1 +1 @@ -f2bddf6ceabd7294996463a1e9637b3f clutter-0.9.4.tar.bz2 +30653168bca6d36a560562e14867b804 clutter-0.9.6.tar.bz2 From mclasen at fedoraproject.org Fri Jul 10 13:17:41 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 10 Jul 2009 13:17:41 +0000 (UTC) Subject: rpms/gtk2/devel im-cedilla.conf,NONE,1.1 gtk2.spec,1.383,1.384 Message-ID: <20090710131741.949EE11C0048@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2296 Modified Files: gtk2.spec Added Files: im-cedilla.conf Log Message: add imsettings config file for im-cedilla --- NEW FILE im-cedilla.conf --- XIM=none XIM_PROGRAM=/bin/true XIM_ARGS= SHORT_DESC=im-cedilla GTK_IM_MODULE=cedilla QT_IM_MODULE=xim Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- gtk2.spec 8 Jul 2009 05:47:59 -0000 1.383 +++ gtk2.spec 10 Jul 2009 13:17:11 -0000 1.384 @@ -17,12 +17,13 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 Source1: update-gdk-pixbuf-loaders Source2: update-gtk-immodules +Source3: im-cedilla.conf # Biarch changes Patch0: gtk+-2.13.5-lib64.patch @@ -86,6 +87,8 @@ suites. Summary: Input methods for GTK+ Group: System Environment/Libraries Requires: gtk2 = %{version}-%{release} +# for /etc/X11/xinit/xinput.d +Requires: imsettings %description immodules The gtk2-immodules package contains standalone input methods that are shipped @@ -243,12 +246,14 @@ case "$host" in ;; esac -# # Install wrappers for the binaries -# cp %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/update-gdk-pixbuf-loaders cp %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/update-gtk-immodules +# Input method frameworks want this +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/xinit/xinput.d +cp %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/X11/xinit/xinput.d + # Remove unpackaged files rm $RPM_BUILD_ROOT%{_libdir}/*.la rm $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/*.la @@ -344,6 +349,7 @@ fi %{_libdir}/gtk-2.0/%{bin_version}/immodules/im-ti-er.so %{_libdir}/gtk-2.0/%{bin_version}/immodules/im-ti-et.so %{_libdir}/gtk-2.0/%{bin_version}/immodules/im-viqr.so +%{_sysconfdir}/X11/xinit/xinput.d/im-cedilla.conf %config(noreplace) %{_sysconfdir}/gtk-2.0/im-multipress.conf %files immodule-xim @@ -373,6 +379,9 @@ fi %changelog +* Fri Jul 10 2009 Matthias Clasen - 2.17.3-3 +- Add an imsettings conf file for im-cedilla + * Wed Jul 8 2009 Matthias Clasen - 2.17.3-2 - Some fixes for drawing issues, e.g. with statusicons From jgranado at fedoraproject.org Fri Jul 10 13:18:12 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Fri, 10 Jul 2009 13:18:12 +0000 (UTC) Subject: rpms/parted/devel parted.spec,1.133,1.134 Message-ID: <20090710131812.A18EE11C0048@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2945 Modified Files: parted.spec Log Message: Fix Changlog date. Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- parted.spec 10 Jul 2009 13:16:25 -0000 1.133 +++ parted.spec 10 Jul 2009 13:18:12 -0000 1.134 @@ -128,7 +128,7 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Wed Jun 10 2009 Joel Granados - 1.9.0-1 +* Wed Jul 10 2009 Joel Granados - 1.9.0-1 - New version. * Thu Mar 26 2009 Joel Granados - 1.8.8-15 From beuc at fedoraproject.org Fri Jul 10 13:31:29 2009 From: beuc at fedoraproject.org (Sylvain Beucler) Date: Fri, 10 Jul 2009 13:31:29 +0000 (UTC) Subject: rpms/freedink-dfarc/devel .cvsignore, 1.3, 1.4 freedink-dfarc.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090710133129.96ACD11C0048@cvs1.fedora.phx.redhat.com> Author: beuc Update of /cvs/pkgs/rpms/freedink-dfarc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8999 Modified Files: .cvsignore freedink-dfarc.spec sources Log Message: Update to 3.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/freedink-dfarc/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jun 2009 16:49:22 -0000 1.3 +++ .cvsignore 10 Jul 2009 13:30:59 -0000 1.4 @@ -1 +1 @@ -dfarc-3.2.2.tar.gz +dfarc-3.2.3.tar.gz Index: freedink-dfarc.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink-dfarc/devel/freedink-dfarc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- freedink-dfarc.spec 21 Jun 2009 16:53:39 -0000 1.3 +++ freedink-dfarc.spec 10 Jul 2009 13:30:59 -0000 1.4 @@ -1,5 +1,5 @@ Name: freedink-dfarc -Version: 3.2.2 +Version: 3.2.3 Release: 1%{?dist} Summary: Frontend and .dmod installer for GNU FreeDink @@ -87,6 +87,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 10 2009 Sylvain Beucler - 3.2.3-1 +- New upstream release + * Wed Jun 03 2009 Sylvain Beucler - 3.2.2-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/freedink-dfarc/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jun 2009 16:49:23 -0000 1.3 +++ sources 10 Jul 2009 13:30:59 -0000 1.4 @@ -1 +1 @@ -547aa2088aa795b40ccb02d78c3b11c2 dfarc-3.2.2.tar.gz +de65cba4ea94e5c59590e323a3945521 dfarc-3.2.3.tar.gz From pkgdb at fedoraproject.org Fri Jul 10 13:34:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 13:34:15 +0000 Subject: [pkgdb] python-paramiko ownership updated Message-ID: <20090710133415.985FF10F888@bastion2.fedora.phx.redhat.com> Package python-paramiko in Fedora EPEL 5 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-paramiko From hadess at fedoraproject.org Fri Jul 10 13:35:56 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 10 Jul 2009 13:35:56 +0000 (UTC) Subject: rpms/rhythmbox/F-11 rhythmbox.spec,1.251,1.252 Message-ID: <20090710133556.1FFDA11C0048@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/rhythmbox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10197 Modified Files: rhythmbox.spec Log Message: * Fri Jul 10 2009 Bastien Nocera 0.12.3-1 - Update to 0.12.3 Index: rhythmbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/rhythmbox.spec,v retrieving revision 1.251 retrieving revision 1.252 diff -u -p -r1.251 -r1.252 --- rhythmbox.spec 1 Jul 2009 09:15:27 -0000 1.251 +++ rhythmbox.spec 10 Jul 2009 13:35:25 -0000 1.252 @@ -2,7 +2,7 @@ Name: rhythmbox Summary: Music Management Application -Version: 0.12.2.93 +Version: 0.12.3 Release: 1%{?dist} License: GPLv2+ with exceptions and GFDL Group: Applications/Multimedia @@ -215,6 +215,9 @@ fi %{_libdir}/rhythmbox/plugins/upnp_coherence %changelog +* Fri Jul 10 2009 Bastien Nocera 0.12.3-1 +- Update to 0.12.3 + * Wed Jul 01 2009 Bastien Nocera 0.12.2.93-1 - Update to 0.12.2.93 From rjones at fedoraproject.org Fri Jul 10 13:39:21 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 13:39:21 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.36, 1.37 libguestfs.spec, 1.68, 1.69 sources, 1.36, 1.37 Message-ID: <20090710133921.1426511C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11205 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 - New upstream release 1.0.57. - New tool virt-df (obsoletes existing package with this name). - RHBZ#507066 may be fixed, so reenable tests. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 7 Jul 2009 19:15:44 -0000 1.36 +++ .cvsignore 10 Jul 2009 13:39:20 -0000 1.37 @@ -1 +1 @@ -libguestfs-1.0.56.tar.gz +libguestfs-1.0.57.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- libguestfs.spec 7 Jul 2009 19:30:59 -0000 1.68 +++ libguestfs.spec 10 Jul 2009 13:39:20 -0000 1.69 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.56 -Release: 2%{?dist} +Version: 1.0.57 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -148,6 +148,26 @@ whether the virtual machine is fully vir para-virtualized (PV), what applications are installed and more. +%package -n virt-df2 +Summary: Display free space on virtual filesystems +Group: Development/Tools +License: GPLv2+ +Requires: %{name} = %{version}-%{release} +Requires: perl-Sys-Virt +Obsoletes: virt-df +Provides: virt-df + + +%description -n virt-df2 +"virt-df" is a command line tool to display free space on virtual +machine filesystems. Unlike other tools, it doesn???t just display the +amount of space allocated to a virtual machine, but can look inside +the virtual machine to see how much space is really being used. + +It is like the df(1) command, but for virtual machines, except that it +also works for Windows virtual machines. + + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries @@ -296,14 +316,15 @@ export LIBGUESTFS_DEBUG=1 # BZ 502074 (i386) - sha1sum segfault on F-11 only # BZ 503236 (i386) - cryptomgr_test at doublefault_fn (F-12 only) # BZ 507066 (all) - sequence of chroot calls makes fs unmountable (F-12 only) +# (fixed?) # Workaround for BZ 502058. This is only needed for F-11, but # won't harm other builds. export LIBGUESTFS_APPEND="noapic" -#%ifarch x86_64 -#make check -#%endif +%ifarch x86_64 +make check +%endif # Quick test: #./fish/guestfish -v < - 1.0.57-1 +- New upstream release 1.0.57. +- New tool virt-df (obsoletes existing package with this name). +- RHBZ#507066 may be fixed, so reenable tests. + * Tue Jul 7 2009 Richard W.M. Jones - 1.0.56-2 - New upstream release 1.0.56. - Don't rerun generator. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 7 Jul 2009 19:15:44 -0000 1.36 +++ sources 10 Jul 2009 13:39:20 -0000 1.37 @@ -1 +1 @@ -307571211e97e50f0754f5812c12ead4 libguestfs-1.0.56.tar.gz +0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz From sharkcz at fedoraproject.org Fri Jul 10 13:43:35 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:43:35 +0000 (UTC) Subject: rpms/tryton/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 tryton.spec, 1.5, 1.6 Message-ID: <20090710134335.B2AF911C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/tryton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13407 Modified Files: .cvsignore sources tryton.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.2.1-1 - update to upstream version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tryton/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 25 May 2009 11:14:41 -0000 1.5 +++ .cvsignore 10 Jul 2009 13:43:05 -0000 1.6 @@ -1 +1 @@ -tryton-1.2.0.tar.gz +tryton-1.2.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tryton/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 25 May 2009 11:14:41 -0000 1.5 +++ sources 10 Jul 2009 13:43:05 -0000 1.6 @@ -1 +1 @@ -e345a7da011dd14108ebbd6188fd31de tryton-1.2.0.tar.gz +95772f5d61283e4bcb2294861afdab94 tryton-1.2.1.tar.gz Index: tryton.spec =================================================================== RCS file: /cvs/pkgs/rpms/tryton/devel/tryton.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tryton.spec 25 May 2009 10:58:05 -0000 1.5 +++ tryton.spec 10 Jul 2009 13:43:05 -0000 1.6 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: tryton -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} Summary: Client for the Tryton application framework @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Dan Hor??k 1.2.1-1 +- update to upstream version 1.2.1 + * Sat May 23 2009 Dan Hor??k 1.2.0-1 - update to upstream version 1.2.0 - use upstream desktop file From sharkcz at fedoraproject.org Fri Jul 10 13:45:35 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:45:35 +0000 (UTC) Subject: rpms/trytond/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 trytond.spec, 1.6, 1.7 Message-ID: <20090710134535.2FA5011C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/trytond/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14216 Modified Files: .cvsignore sources trytond.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.2.1-1 - update to upstream version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trytond/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 25 May 2009 10:53:16 -0000 1.5 +++ .cvsignore 10 Jul 2009 13:45:04 -0000 1.6 @@ -1 +1 @@ -trytond-1.2.0.tar.gz +trytond-1.2.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trytond/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 25 May 2009 10:53:16 -0000 1.5 +++ sources 10 Jul 2009 13:45:04 -0000 1.6 @@ -1 +1 @@ -a45ff748a03512e6168ba303c66e350b trytond-1.2.0.tar.gz +713ba9c013f390cc17b83d2c25686d6f trytond-1.2.1.tar.gz Index: trytond.spec =================================================================== RCS file: /cvs/pkgs/rpms/trytond/devel/trytond.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trytond.spec 25 May 2009 10:53:16 -0000 1.6 +++ trytond.spec 10 Jul 2009 13:45:04 -0000 1.7 @@ -3,7 +3,7 @@ %{!?_initddir: %define _initddir %{_initrddir}} Name: trytond -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} Summary: Server for the Tryton application framework @@ -137,6 +137,9 @@ fi %changelog +* Fri Jul 10 2009 Dan Hor??k 1.2.1-1 +- update to upstream version 1.2.1 + * Fri May 22 2009 Dan Hor??k 1.2.0-1 - update to upstream version 1.2.0 From hadess at fedoraproject.org Fri Jul 10 13:46:49 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 10 Jul 2009 13:46:49 +0000 (UTC) Subject: rpms/rhythmbox/devel .cvsignore,1.56,1.57 sources,1.58,1.59 Message-ID: <20090710134649.0AC8611C0048@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/rhythmbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14813 Modified Files: .cvsignore sources Log Message: * Thu Jul 09 2009 Bastien Nocera 0.12.3-1 - Udpate to 0.12.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/.cvsignore,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- .cvsignore 1 Jul 2009 09:49:37 -0000 1.56 +++ .cvsignore 10 Jul 2009 13:46:18 -0000 1.57 @@ -1 +1 @@ -rhythmbox-0.12.2.93.tar.bz2 +rhythmbox-0.12.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/sources,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- sources 1 Jul 2009 09:49:37 -0000 1.58 +++ sources 10 Jul 2009 13:46:18 -0000 1.59 @@ -1 +1 @@ -45b45f906073cac7e6bd981586de499f rhythmbox-0.12.2.93.tar.bz2 +4a28e79184f1a9737ac2e719a1478105 rhythmbox-0.12.3.tar.bz2 From sharkcz at fedoraproject.org Fri Jul 10 13:48:02 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:48:02 +0000 (UTC) Subject: rpms/trytond/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 trytond.spec, 1.5, 1.6 Message-ID: <20090710134802.9F7D411C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/trytond/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15616 Modified Files: .cvsignore sources trytond.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 09:53:00 -0000 1.4 +++ .cvsignore 10 Jul 2009 13:48:02 -0000 1.5 @@ -1 +1 @@ -trytond-1.0.3.tar.gz +trytond-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 09:53:00 -0000 1.4 +++ sources 10 Jul 2009 13:48:02 -0000 1.5 @@ -1 +1 @@ -1a66d8676c54d67b66eb7d4bff41b973 trytond-1.0.3.tar.gz +5198bf3b6c854aeeb120349f09f84b99 trytond-1.0.5.tar.gz Index: trytond.spec =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-11/trytond.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- trytond.spec 6 Mar 2009 09:53:00 -0000 1.5 +++ trytond.spec 10 Jul 2009 13:48:02 -0000 1.6 @@ -3,7 +3,7 @@ %{!?_initddir: %define _initddir %{_initrddir}} Name: trytond -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Server for the Tryton application framework @@ -137,6 +137,9 @@ fi %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From hadess at fedoraproject.org Fri Jul 10 13:48:46 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 10 Jul 2009 13:48:46 +0000 (UTC) Subject: rpms/rhythmbox/F-11 .cvsignore,1.56,1.57 sources,1.58,1.59 Message-ID: <20090710134846.94D2A11C0048@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/rhythmbox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15941 Modified Files: .cvsignore sources Log Message: Fix sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/.cvsignore,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- .cvsignore 1 Jul 2009 09:15:27 -0000 1.56 +++ .cvsignore 10 Jul 2009 13:48:46 -0000 1.57 @@ -1 +1 @@ -rhythmbox-0.12.2.93.tar.bz2 +rhythmbox-0.12.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/F-11/sources,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- sources 1 Jul 2009 09:15:27 -0000 1.58 +++ sources 10 Jul 2009 13:48:46 -0000 1.59 @@ -1 +1 @@ -45b45f906073cac7e6bd981586de499f rhythmbox-0.12.2.93.tar.bz2 +4a28e79184f1a9737ac2e719a1478105 rhythmbox-0.12.3.tar.bz2 From sharkcz at fedoraproject.org Fri Jul 10 13:50:24 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:50:24 +0000 (UTC) Subject: rpms/trytond/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 trytond.spec, 1.3, 1.4 Message-ID: <20090710135024.3803011C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/trytond/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16584 Modified Files: .cvsignore sources trytond.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 09:56:13 -0000 1.4 +++ .cvsignore 10 Jul 2009 13:50:23 -0000 1.5 @@ -1 +1 @@ -trytond-1.0.3.tar.gz +trytond-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 09:56:13 -0000 1.4 +++ sources 10 Jul 2009 13:50:23 -0000 1.5 @@ -1 +1 @@ -1a66d8676c54d67b66eb7d4bff41b973 trytond-1.0.3.tar.gz +5198bf3b6c854aeeb120349f09f84b99 trytond-1.0.5.tar.gz Index: trytond.spec =================================================================== RCS file: /cvs/pkgs/rpms/trytond/F-10/trytond.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trytond.spec 6 Mar 2009 09:56:13 -0000 1.3 +++ trytond.spec 10 Jul 2009 13:50:24 -0000 1.4 @@ -3,7 +3,7 @@ %{!?_initddir: %define _initddir %{_initrddir}} Name: trytond -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Server for the Tryton application framework @@ -137,6 +137,9 @@ fi %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From sharkcz at fedoraproject.org Fri Jul 10 13:53:35 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:53:35 +0000 (UTC) Subject: rpms/tryton/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 tryton.spec, 1.4, 1.5 Message-ID: <20090710135335.D542611C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/tryton/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17771 Modified Files: .cvsignore sources tryton.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 09:36:43 -0000 1.4 +++ .cvsignore 10 Jul 2009 13:53:05 -0000 1.5 @@ -1 +1 @@ -tryton-1.0.3.tar.gz +tryton-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 09:36:43 -0000 1.4 +++ sources 10 Jul 2009 13:53:05 -0000 1.5 @@ -1 +1 @@ -f49cb5c961a9fffb957d09fbf1c4e74c tryton-1.0.3.tar.gz +75a9252ec73e1876d8f5d53eb6acef09 tryton-1.0.5.tar.gz Index: tryton.spec =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-11/tryton.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tryton.spec 6 Mar 2009 09:36:43 -0000 1.4 +++ tryton.spec 10 Jul 2009 13:53:05 -0000 1.5 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: tryton -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Client for the Tryton application framework @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From jgranado at fedoraproject.org Fri Jul 10 13:53:37 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Fri, 10 Jul 2009 13:53:37 +0000 (UTC) Subject: rpms/parted/devel parted-1.8.8-alpha.patch, 1.1, NONE parted-1.8.8-appletv.patch, 1.2, NONE parted-1.8.8-avoid-none-stat.patch, 1.1, NONE parted-1.8.8-devmapper-header.patch, 1.1, NONE parted-1.8.8-dos-label-swap.patch, 1.1, NONE parted-1.8.8-dospartrec.patch, 1.1, NONE parted-1.8.8-gcc-4.3.patch, 1.1, NONE parted-1.8.8-manpage.patch, 1.1, NONE parted-1.8.8-newgcc4.4.patch, 1.1, NONE parted-1.8.8-nofixgpt.patch, 1.1, NONE parted-1.8.8-noinst-headers.patch, 1.1, NONE parted-1.8.8-return-error-update-mode.patch, 1.1, NONE parted-1.8.8-s390-compile.patch, 1.1, NONE parted-1.8.8-sparc-enableraid.patch, 1.2, NONE parted-1.8.8-virtio.patch, 1.1, NONE parted-1.8.8-xvd.patch, 1.1, NONE Message-ID: <20090710135337.BA64311C0048@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17966 Removed Files: parted-1.8.8-alpha.patch parted-1.8.8-appletv.patch parted-1.8.8-avoid-none-stat.patch parted-1.8.8-devmapper-header.patch parted-1.8.8-dos-label-swap.patch parted-1.8.8-dospartrec.patch parted-1.8.8-gcc-4.3.patch parted-1.8.8-manpage.patch parted-1.8.8-newgcc4.4.patch parted-1.8.8-nofixgpt.patch parted-1.8.8-noinst-headers.patch parted-1.8.8-return-error-update-mode.patch parted-1.8.8-s390-compile.patch parted-1.8.8-sparc-enableraid.patch parted-1.8.8-virtio.patch parted-1.8.8-xvd.patch Log Message: Remove old patches. --- parted-1.8.8-alpha.patch DELETED --- --- parted-1.8.8-appletv.patch DELETED --- --- parted-1.8.8-avoid-none-stat.patch DELETED --- --- parted-1.8.8-devmapper-header.patch DELETED --- --- parted-1.8.8-dos-label-swap.patch DELETED --- --- parted-1.8.8-dospartrec.patch DELETED --- --- parted-1.8.8-gcc-4.3.patch DELETED --- --- parted-1.8.8-manpage.patch DELETED --- --- parted-1.8.8-newgcc4.4.patch DELETED --- --- parted-1.8.8-nofixgpt.patch DELETED --- --- parted-1.8.8-noinst-headers.patch DELETED --- --- parted-1.8.8-return-error-update-mode.patch DELETED --- --- parted-1.8.8-s390-compile.patch DELETED --- --- parted-1.8.8-sparc-enableraid.patch DELETED --- --- parted-1.8.8-virtio.patch DELETED --- --- parted-1.8.8-xvd.patch DELETED --- From sharkcz at fedoraproject.org Fri Jul 10 13:56:55 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 13:56:55 +0000 (UTC) Subject: rpms/tryton/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 tryton.spec, 1.3, 1.4 Message-ID: <20090710135655.76C0B11C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/tryton/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19077 Modified Files: .cvsignore sources tryton.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 09:44:02 -0000 1.4 +++ .cvsignore 10 Jul 2009 13:56:25 -0000 1.5 @@ -1 +1 @@ -tryton-1.0.3.tar.gz +tryton-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 09:44:02 -0000 1.4 +++ sources 10 Jul 2009 13:56:25 -0000 1.5 @@ -1 +1 @@ -f49cb5c961a9fffb957d09fbf1c4e74c tryton-1.0.3.tar.gz +75a9252ec73e1876d8f5d53eb6acef09 tryton-1.0.5.tar.gz Index: tryton.spec =================================================================== RCS file: /cvs/pkgs/rpms/tryton/F-10/tryton.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tryton.spec 6 Mar 2009 09:44:02 -0000 1.3 +++ tryton.spec 10 Jul 2009 13:56:25 -0000 1.4 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: tryton -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Client for the Tryton application framework @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From rjones at fedoraproject.org Fri Jul 10 13:58:41 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 13:58:41 +0000 (UTC) Subject: rpms/virt-df/F-11 dead.package, NONE, 1.1 Makefile, 1.1, NONE branch, 1.1, NONE import.log, 1.1, NONE sources, 1.7, NONE virt-df-2.1.4-bogus-zh_CN-plurals.patch, 1.1, NONE virt-df-2.1.4-camlp4-parse.patch, 1.1, NONE virt-df.spec, 1.10, NONE Message-ID: <20090710135841.073D611C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/virt-df/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19734/F-11 Added Files: dead.package Removed Files: Makefile branch import.log sources virt-df-2.1.4-bogus-zh_CN-plurals.patch virt-df-2.1.4-camlp4-parse.patch virt-df.spec Log Message: In Fedora 11 and above, virt-df package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- NEW FILE dead.package --- In Fedora 11 and above, this package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- Makefile DELETED --- --- branch DELETED --- --- import.log DELETED --- --- sources DELETED --- --- virt-df-2.1.4-bogus-zh_CN-plurals.patch DELETED --- --- virt-df-2.1.4-camlp4-parse.patch DELETED --- --- virt-df.spec DELETED --- From rjones at fedoraproject.org Fri Jul 10 13:58:41 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 13:58:41 +0000 (UTC) Subject: rpms/virt-df/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE import.log, 1.1, NONE sources, 1.7, NONE virt-df-2.1.4-bogus-zh_CN-plurals.patch, 1.1, NONE virt-df-2.1.4-camlp4-parse.patch, 1.1, NONE virt-df.spec, 1.11, NONE Message-ID: <20090710135841.6867411C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/virt-df/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19734/devel Added Files: dead.package Removed Files: Makefile import.log sources virt-df-2.1.4-bogus-zh_CN-plurals.patch virt-df-2.1.4-camlp4-parse.patch virt-df.spec Log Message: In Fedora 11 and above, virt-df package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- NEW FILE dead.package --- In Fedora 11 and above, this package has been rewritten using libguestfs, and is now built as a subpackage of libguestfs. --- Makefile DELETED --- --- import.log DELETED --- --- sources DELETED --- --- virt-df-2.1.4-bogus-zh_CN-plurals.patch DELETED --- --- virt-df-2.1.4-camlp4-parse.patch DELETED --- --- virt-df.spec DELETED --- From mclasen at fedoraproject.org Fri Jul 10 14:03:21 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 10 Jul 2009 14:03:21 +0000 (UTC) Subject: rpms/gnome-session/devel watch-spew.patch, NONE, 1.1 gnome-session.spec, 1.238, 1.239 Message-ID: <20090710140322.069CE11C0048@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21318 Modified Files: gnome-session.spec Added Files: watch-spew.patch Log Message: Avoid pointless warnings watch-spew.patch: --- NEW FILE watch-spew.patch --- diff -up gnome-session-2.26.1/gnome-session/gs-idle-monitor.c.watch-spew gnome-session-2.26.1/gnome-session/gs-idle-monitor.c --- gnome-session-2.26.1/gnome-session/gs-idle-monitor.c.watch-spew 2009-07-10 09:54:42.872161348 -0400 +++ gnome-session-2.26.1/gnome-session/gs-idle-monitor.c 2009-07-10 09:54:53.169623355 -0400 @@ -188,7 +188,7 @@ handle_alarm_notify_event (GSIdleMonitor watch = find_watch_for_alarm (monitor, alarm_event->alarm); if (watch == NULL) { - g_warning ("Unable to find watch for alarm %d, counter value %d, alarm value %d, time %d state %d", (int)alarm_event->alarm, alarm_event->counter_value.lo, alarm_event->alarm_value.lo, time, state); + g_debug ("Unable to find watch for alarm %d, counter value %d, alarm value %d, time %d state %d", (int)alarm_event->alarm, alarm_event->counter_value.lo, alarm_event->alarm_value.lo, time, state); return; } Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.238 retrieving revision 1.239 diff -u -p -r1.238 -r1.239 --- gnome-session.spec 14 Jun 2009 23:11:19 -0000 1.238 +++ gnome-session.spec 10 Jul 2009 14:03:21 -0000 1.239 @@ -10,7 +10,7 @@ Summary: GNOME session manager Name: gnome-session Version: 2.26.1 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-session/2.26/%{name}-%{version}.tar.bz2 Source2: gnome.desktop @@ -19,6 +19,9 @@ Source2: gnome.desktop # http://bugzilla.gnome.org/show_bug.cgi?id=585614 Patch0: polkit1.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=588247 +Patch1: watch-spew.patch + License: GPLv2+ Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -81,6 +84,7 @@ Desktop file to add GNOME to display man %prep %setup -q %patch0 -p1 -b .polkit1 +%patch1 -p1 -b .watch-spew #workaround broken perl-XML-Parser on 64bit arches export PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.2 perl @@ -173,6 +177,9 @@ fi %changelog +* Fri Jul 10 2009 Matthias Clasen - 2.26.1-5 +- Avoid pointless warnings + * Sun Jun 14 2009 Matthias Clasen - 2.26.1-4 - Drop unused files From deji at fedoraproject.org Fri Jul 10 14:06:37 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Fri, 10 Jul 2009 14:06:37 +0000 (UTC) Subject: rpms/gparted/devel gparted.spec,1.50,1.51 Message-ID: <20090710140637.CE4A411C0048@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/gparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22265 Modified Files: gparted.spec Log Message: * Fri Jul 10 2009 Deji Akingunola - 0.4.5-2 - Change e2fsprog-devel BR to libuuid-devel, and rebuild for parted soname bump Index: gparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/gparted/devel/gparted.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- gparted.spec 10 May 2009 23:18:25 -0000 1.50 +++ gparted.spec 10 Jul 2009 14:06:07 -0000 1.51 @@ -1,7 +1,7 @@ Summary: Gnome Partition Editor Name: gparted Version: 0.4.5 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/System License: GPLv2+ URL: http://gparted.sourceforge.net @@ -10,7 +10,7 @@ Source1: gparted-console.apps Source2: gparted-pam.d BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtkmm24-devel parted-devel -BuildRequires: e2fsprogs-devel gettext perl(XML::Parser) +BuildRequires: libuuid-devel gettext perl(XML::Parser) BuildRequires: desktop-file-utils gnome-doc-utils BuildRequires: scrollkeeper Requires(post): scrollkeeper @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %config(noreplace) %{_sysconfdir}/security/console.apps/gparted %changelog +* Fri Jul 10 2009 Deji Akingunola - 0.4.5-2 +- Change e2fsprog-devel BR to libuuid-devel, and rebuild for parted soname bump + * Sat May 09 2009 Deji Akingunola - 0.4.5-1 - New upstream version From sharkcz at fedoraproject.org Fri Jul 10 14:11:32 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 14:11:32 +0000 (UTC) Subject: rpms/tryton/EL-5 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 tryton.spec, 1.3, 1.4 Message-ID: <20090710141132.DE4F011C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/tryton/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24028 Modified Files: .cvsignore sources tryton.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tryton/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 09:49:06 -0000 1.4 +++ .cvsignore 10 Jul 2009 14:11:32 -0000 1.5 @@ -1 +1 @@ -tryton-1.0.3.tar.gz +tryton-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tryton/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 09:49:06 -0000 1.4 +++ sources 10 Jul 2009 14:11:32 -0000 1.5 @@ -1 +1 @@ -f49cb5c961a9fffb957d09fbf1c4e74c tryton-1.0.3.tar.gz +75a9252ec73e1876d8f5d53eb6acef09 tryton-1.0.5.tar.gz Index: tryton.spec =================================================================== RCS file: /cvs/pkgs/rpms/tryton/EL-5/tryton.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tryton.spec 6 Mar 2009 09:49:06 -0000 1.3 +++ tryton.spec 10 Jul 2009 14:11:32 -0000 1.4 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: tryton -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Client for the Tryton application framework @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From sharkcz at fedoraproject.org Fri Jul 10 14:14:28 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 10 Jul 2009 14:14:28 +0000 (UTC) Subject: rpms/trytond/EL-5 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 trytond.spec, 1.3, 1.4 Message-ID: <20090710141428.6EA7411C0048@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/trytond/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25588 Modified Files: .cvsignore sources trytond.spec Log Message: * Fri Jul 10 2009 Dan Hor??k 1.0.5-1 - update to upstream version 1.0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trytond/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 6 Mar 2009 10:00:35 -0000 1.4 +++ .cvsignore 10 Jul 2009 14:13:57 -0000 1.5 @@ -1 +1 @@ -trytond-1.0.3.tar.gz +trytond-1.0.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trytond/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 6 Mar 2009 10:00:35 -0000 1.4 +++ sources 10 Jul 2009 14:13:58 -0000 1.5 @@ -1 +1 @@ -1a66d8676c54d67b66eb7d4bff41b973 trytond-1.0.3.tar.gz +5198bf3b6c854aeeb120349f09f84b99 trytond-1.0.5.tar.gz Index: trytond.spec =================================================================== RCS file: /cvs/pkgs/rpms/trytond/EL-5/trytond.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trytond.spec 6 Mar 2009 10:00:35 -0000 1.3 +++ trytond.spec 10 Jul 2009 14:13:58 -0000 1.4 @@ -3,7 +3,7 @@ %{!?_initddir: %define _initddir %{_initrddir}} Name: trytond -Version: 1.0.3 +Version: 1.0.5 Release: 1%{?dist} Summary: Server for the Tryton application framework @@ -137,6 +137,9 @@ fi %changelog +* Fri Jul 10 2009 Dan Hor??k 1.0.5-1 +- update to upstream version 1.0.5 + * Fri Mar 6 2009 Dan Hor??k 1.0.3-1 - update to upstream version 1.0.3 From pjones at fedoraproject.org Fri Jul 10 14:24:58 2009 From: pjones at fedoraproject.org (Peter Jones) Date: Fri, 10 Jul 2009 14:24:58 +0000 (UTC) Subject: rpms/grub/devel grub-0.97-partitionable-md.patch, NONE, 1.1 grub.spec, 1.100, 1.101 Message-ID: <20090710142458.A5B7C11C0048@cvs1.fedora.phx.redhat.com> Author: pjones Update of /cvs/extras/rpms/grub/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29997 Modified Files: grub.spec Added Files: grub-0.97-partitionable-md.patch Log Message: * Fri Jul 10 2009 Peter Jones - 0.97-54 - Add support for partitionable md devices. grub-0.97-partitionable-md.patch: --- NEW FILE grub-0.97-partitionable-md.patch --- diff -up grub-0.97/lib/device.c~ grub-0.97/lib/device.c --- grub-0.97/lib/device.c~ 2009-07-09 11:23:48.000000000 +0200 +++ grub-0.97/lib/device.c 2009-07-09 11:29:41.000000000 +0200 @@ -1107,6 +1107,7 @@ write_to_partition (char **map, int driv (strncmp(dev, "/dev/ida/", 9) == 0 || strncmp(dev, "/dev/ataraid/", 13) == 0 || strncmp(dev, "/dev/mapper/", 12) == 0 || + strncmp(dev, "/dev/md", 7) == 0 || strncmp(dev, "/dev/cciss/", 11) == 0 || strncmp(dev, "/dev/rd/", 8) == 0) ? "p" : "", ((partition >> 16) & 0xFF) + 1); Index: grub.spec =================================================================== RCS file: /cvs/extras/rpms/grub/devel/grub.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- grub.spec 30 Jun 2009 17:29:08 -0000 1.100 +++ grub.spec 10 Jul 2009 14:24:57 -0000 1.101 @@ -1,6 +1,6 @@ Name: grub Version: 0.97 -Release: 53%{?dist} +Release: 54%{?dist} Summary: Grand Unified Boot Loader. Group: System Environment/Base License: GPLv2+ @@ -136,6 +136,9 @@ fi %{_datadir}/grub %changelog +* Fri Jul 10 2009 Peter Jones - 0.97-54 +- Add support for partitionable md devices. + * Tue Jun 30 2009 Peter Jones - 0.97-53 - Don't assume that gcc provides us with writable strings in the xfs driver From spot at fedoraproject.org Fri Jul 10 14:29:33 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 14:29:33 +0000 (UTC) Subject: rpms/R/devel R.spec,1.62,1.63 Message-ID: <20090710142933.98CC611C0048@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/R/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31736 Modified Files: R.spec Log Message: dont make the pdfs in rawhide/i586 due to tex bug Index: R.spec =================================================================== RCS file: /cvs/pkgs/rpms/R/devel/R.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- R.spec 9 Jul 2009 20:59:55 -0000 1.62 +++ R.spec 10 Jul 2009 14:29:03 -0000 1.63 @@ -6,7 +6,7 @@ Name: R Version: 2.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A language for data analysis and graphics URL: http://www.r-project.org Source0: ftp://cran.r-project.org/pub/R/src/base/R-2/R-%{version}.tar.gz @@ -230,7 +230,11 @@ export FCFLAGS="%{optflags}" make (cd src/nmath/standalone; make) #make check-all +# 2009-07-10 +# PDF generation is not working correctly in i586/rawhide, probably a texlive bug +%ifnarch i586 make pdf +%endif make info # Convert to UTF-8 @@ -240,7 +244,11 @@ for i in doc/manual/R-intro.info doc/man done %install -make DESTDIR=${RPM_BUILD_ROOT} install install-info install-pdf +make DESTDIR=${RPM_BUILD_ROOT} install install-info +%ifnarch i586 +make DESTDIR=${RPM_BUILD_ROOT} install-pdf +%endif + rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir.old install -p CAPABILITIES ${RPM_BUILD_ROOT}%{_docdir}/R-%{version} @@ -263,7 +271,9 @@ install -m0755 %{SOURCE2} $RPM_BUILD_ROO # Fix multilib touch -r NEWS ${RPM_BUILD_ROOT}%{_docdir}/R-%{version}/CAPABILITIES +%ifnarch i586 touch -r NEWS doc/manual/*.pdf +%endif touch -r NEWS $RPM_BUILD_ROOT%{_bindir}/R # Fix html/packages.html @@ -994,6 +1004,9 @@ R CMD javareconf \ %postun -n libRmath -p /sbin/ldconfig %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 2.9.1-2 +- don't try to make the PDFs in rawhide/i586 + * Thu Jul 9 2009 Tom "spot" Callaway - 2.9.1-1 - update to 2.9.1 - fix versioned provides From rjones at fedoraproject.org Fri Jul 10 14:30:13 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 14:30:13 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.18, 1.19 libguestfs.spec, 1.34, 1.35 sources, 1.18, 1.19 Message-ID: <20090710143013.D2B2B11C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32092 Modified Files: .cvsignore libguestfs.spec sources Log Message: - New upstream release 1.0.57. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 7 Jul 2009 19:15:21 -0000 1.18 +++ .cvsignore 10 Jul 2009 14:30:13 -0000 1.19 @@ -1 +1 @@ -libguestfs-1.0.56.tar.gz +libguestfs-1.0.57.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- libguestfs.spec 7 Jul 2009 19:15:21 -0000 1.34 +++ libguestfs.spec 10 Jul 2009 14:30:13 -0000 1.35 @@ -1,14 +1,9 @@ -# XXX FAILS TO BUILD: -# WAITING FOR THE FOLLOWING PACKAGES TO GO INTO EL5 UPDATES: -# febootstrap 2.3 -# -- cannot be build because of "old" new fakeroot package. - # Enable to build w/o network. %global buildnonet 1 Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.56 +Version: 1.0.57 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -169,6 +164,23 @@ scripts. #whether the virtual machine is fully virtualized (FV) or #para-virtualized (PV), what applications are installed and more. +#%package -n virt-df +#Summary: Display free space on virtual filesystems +#Group: Development/Tools +#License: GPLv2+ +#Requires: %{name} = %{version}-%{release} +#Requires: perl-Sys-Virt +# +# +#%description -n virt-df +#"virt-df" is a command line tool to display free space on virtual +#machine filesystems. Unlike other tools, it doesn???t just display the +#amount of space allocated to a virtual machine, but can look inside +#the virtual machine to see how much space is really being used. +# +#It is like the df(1) command, but for virtual machines, except that it +#also works for Windows virtual machines. + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} @@ -424,6 +436,12 @@ rm -rf $RPM_BUILD_ROOT #%{_mandir}/man1/virt-inspector.1* +#%files -n virt-df +#%defattr(-,root,root,-) +#%{_bindir}/virt-df +#%{_mandir}/man1/virt-df.1* + + %files -n ocaml-%{name} %defattr(-,root,root,-) %doc README @@ -450,6 +468,7 @@ rm -rf $RPM_BUILD_ROOT %doc perl/examples %{perl_vendorarch}/* %{_mandir}/man3/Sys::Guestfs.3pm* +%{_mandir}/man3/Sys::Guestfs::Lib.3pm* %files -n python-%{name} @@ -488,6 +507,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 +- New upstream release 1.0.57. + * Tue Jul 7 2009 Richard W.M. Jones - 1.0.56-1 - New upstream release 1.0.56. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 7 Jul 2009 19:15:21 -0000 1.18 +++ sources 10 Jul 2009 14:30:13 -0000 1.19 @@ -1 +1 @@ -307571211e97e50f0754f5812c12ead4 libguestfs-1.0.56.tar.gz +0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz From rjones at fedoraproject.org Fri Jul 10 14:30:31 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 14:30:31 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.24, 1.25 libguestfs.spec, 1.38, 1.39 sources, 1.24, 1.25 Message-ID: <20090710143031.4223B11C0048@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32008 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 - New upstream release 1.0.57. - New tool virt-df (obsoletes existing package with this name). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 7 Jul 2009 19:15:53 -0000 1.24 +++ .cvsignore 10 Jul 2009 14:30:01 -0000 1.25 @@ -1 +1 @@ -libguestfs-1.0.56.tar.gz +libguestfs-1.0.57.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- libguestfs.spec 7 Jul 2009 19:30:54 -0000 1.38 +++ libguestfs.spec 10 Jul 2009 14:30:01 -0000 1.39 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.56 -Release: 2%{?dist} +Version: 1.0.57 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -150,6 +150,26 @@ whether the virtual machine is fully vir para-virtualized (PV), what applications are installed and more. +%package -n virt-df2 +Summary: Display free space on virtual filesystems +Group: Development/Tools +License: GPLv2+ +Requires: %{name} = %{version}-%{release} +Requires: perl-Sys-Virt +Obsoletes: virt-df +Provides: virt-df + + +%description -n virt-df2 +"virt-df" is a command line tool to display free space on virtual +machine filesystems. Unlike other tools, it doesn???t just display the +amount of space allocated to a virtual machine, but can look inside +the virtual machine to see how much space is really being used. + +It is like the df(1) command, but for virtual machines, except that it +also works for Windows virtual machines. + + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries @@ -298,6 +318,7 @@ export LIBGUESTFS_DEBUG=1 # BZ 502074 (i386) - sha1sum segfault on F-11 only # BZ 503236 (i386) - cryptomgr_test at doublefault_fn (F-12 only) # BZ 507066 (all) - sequence of chroot calls makes fs unmountable (F-12 only) +# (fixed?) # Workaround for BZ 502058. This is only needed for F-11, but # won't harm other builds. @@ -384,6 +405,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/libguestfs_ # Generator shouldn't be executable when we distribute it. chmod -x src/generator.ml +# Remove virt-v2v for now, WIP. +rm $RPM_BUILD_ROOT%{_bindir}/virt-v2v +rm $RPM_BUILD_ROOT%{_mandir}/man1/virt-v2v.1* + # Find locale files. %find_lang %{name} @@ -431,6 +456,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/virt-inspector.1* +%files -n virt-df2 +%defattr(-,root,root,-) +%{_bindir}/virt-df +%{_mandir}/man1/virt-df.1* + + %files -n ocaml-%{name} %defattr(-,root,root,-) %doc README @@ -457,6 +488,7 @@ rm -rf $RPM_BUILD_ROOT %doc perl/examples %{perl_vendorarch}/* %{_mandir}/man3/Sys::Guestfs.3pm* +%{_mandir}/man3/Sys::Guestfs::Lib.3pm* %files -n python-%{name} @@ -495,6 +527,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 +- New upstream release 1.0.57. +- New tool virt-df (obsoletes existing package with this name). + * Tue Jul 7 2009 Richard W.M. Jones - 1.0.56-2 - New upstream release 1.0.56. - Don't rerun generator. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 7 Jul 2009 19:15:53 -0000 1.24 +++ sources 10 Jul 2009 14:30:01 -0000 1.25 @@ -1 +1 @@ -307571211e97e50f0754f5812c12ead4 libguestfs-1.0.56.tar.gz +0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz From lkundrak at fedoraproject.org Fri Jul 10 14:30:33 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 10 Jul 2009 14:30:33 +0000 (UTC) Subject: rpms/xorg-x11-server/F-11 xserver-1.6.2-vboxvideo.patch, NONE, 1.1 xorg-x11-server.spec, 1.452, 1.453 Message-ID: <20090710143033.6199911C0048@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/xorg-x11-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32282 Modified Files: xorg-x11-server.spec Added Files: xserver-1.6.2-vboxvideo.patch Log Message: * Fri Jul 10 2009 Lubomir Rintel 1.6.2-2 - Add vboxvideo driver to the autodetection routine xserver-1.6.2-vboxvideo.patch: --- NEW FILE xserver-1.6.2-vboxvideo.patch --- >From f8079585cd68ad2e742d611bdf9908dc6db5a4a9 Mon Sep 17 00:00:00 2001 From: Fedora X Ninjas Date: Fri, 10 Jul 2009 16:26:25 +0200 Subject: [PATCH] Add vboxvideo to the autodetection routine --- hw/xfree86/common/xf86AutoConfig.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/xfree86/common/xf86AutoConfig.c b/hw/xfree86/common/xf86AutoConfig.c index 056497e..14f075f 100644 --- a/hw/xfree86/common/xf86AutoConfig.c +++ b/hw/xfree86/common/xf86AutoConfig.c @@ -232,6 +232,7 @@ videoPtrToDriverList(struct pci_device *dev, case 0x100c: driverList[0] = "tseng"; break; case 0x1106: driverList[0] = "openchrome"; break; case 0x15ad: driverList[0] = "vmware"; break; + case 0x80ee: driverList[0] = "vboxvideo"; break; case 0x18ca: if (dev->device_id == 0x47) driverList[0] = "xgixp"; -- 1.6.2.5 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-11/xorg-x11-server.spec,v retrieving revision 1.452 retrieving revision 1.453 diff -u -p -r1.452 -r1.453 --- xorg-x11-server.spec 8 Jul 2009 22:13:01 -0000 1.452 +++ xorg-x11-server.spec 10 Jul 2009 14:30:33 -0000 1.453 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -113,6 +113,9 @@ Patch6045: xserver-1.6.1-pea-quirk.patch Patch6046: xserver-1.6.1-fix-glx-drawable.patch +# #510238, already upstream +Patch6047: xserver-1.6.2-vboxvideo.patch + %define moduledir %{_libdir}/xorg/modules %define drimoduledir %{_libdir}/dri %define sdkdir %{_includedir}/xorg @@ -529,6 +532,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Lubomir Rintel 1.6.2-2 +- Add vboxvideo driver to the autodetection routine + * Wed Jul 08 2009 Peter Hutterer 1.6.2-1 - xserver 1.6.2 From limb at fedoraproject.org Fri Jul 10 14:34:56 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 10 Jul 2009 14:34:56 +0000 (UTC) Subject: rpms/kicad/devel kicad-ld.conf,NONE,1.1 kicad.spec,1.17,1.18 Message-ID: <20090710143456.AFE2C11C0048@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/kicad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv619 Modified Files: kicad.spec Added Files: kicad-ld.conf Log Message: - Dropped eeschema desktop file. - Moved English kicad.pdf to main rpm. - Added ls.so.conf file and ldconfig to post, postun to fix libs issue. - Dropped category Development from desktop file. --- NEW FILE kicad-ld.conf --- /usr/lib/kicad Index: kicad.spec =================================================================== RCS file: /cvs/pkgs/rpms/kicad/devel/kicad.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- kicad.spec 8 Jul 2009 08:35:38 -0000 1.17 +++ kicad.spec 10 Jul 2009 14:34:56 -0000 1.18 @@ -1,6 +1,6 @@ Name: kicad Version: 2009.07.07 -Release: 1.rev1863%{?dist} +Release: 2.rev1863%{?dist} Summary: Electronic schematic diagrams and printed circuit board artwork Summary(fr): Saisie de sch??ma ??lectronique et trac?? de circuit imprim?? @@ -12,6 +12,7 @@ URL: http://www.lis.inpg.fr/r Source: kicad-%{version}.tar.bz2 Source1: kicad-doc-%{version}.tar.bz2 Source2: kicad-library-%{version}.tar.bz2 +Source3: kicad-ld.conf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -205,14 +206,10 @@ cd .. # install desktop desktop-file-install --vendor=fedora \ --dir %{buildroot}%{_datadir}/applications \ + --remove-category Development \ --delete-original \ %{buildroot}%{_datadir}/applications/kicad.desktop - -desktop-file-install --vendor=fedora \ - --dir %{buildroot}%{_datadir}/applications \ - --delete-original \ - %{buildroot}%{_datadir}/applications/eeschema.desktop - +rm -f %{buildroot}%{_datadir}/applications/eeschema.desktop # Missing requires libraries %{__cp} -p ./3d-viewer/lib3d-viewer.so %{buildroot}%{_libdir}/%{name} @@ -229,6 +226,9 @@ pushd %{name}-library-%{version}/ %{__make} INSTALL="install -p" DESTDIR=%{buildroot} install popd +# install ld.conf +mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d +install -pm 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/ld.so.conf.d/kicad.conf # install template install -d %{buildroot}%{_datadir}/%{name}/template @@ -255,6 +255,7 @@ then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor fi +/sbin/ldconfig %postun update-desktop-database &> /dev/null || : @@ -264,6 +265,7 @@ then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor fi +/sbin/ldconfig %clean %{__rm} -rf %{buildroot} @@ -271,15 +273,16 @@ fi %files -f %{name}.lang %defattr(-,root,root) +%doc %{_docdir}/%{name}/help/en/kicad.pdf %{_bindir}/* %{_libdir}/%{name} %{_datadir}/%{name}/ %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/applications/fedora-eeschema.desktop %{_datadir}/icons/hicolor/*/mimetypes/application-x-kicad-project.* %{_datadir}/icons/hicolor/*/apps/%{name}.* %{_datadir}/mime/packages/%{name}.xml %{_datadir}/mimelnk/application/x-%{name}-*.desktop +%{_sysconfdir}/ld.so.conf.d/kicad.conf %files doc %defattr(-,root,root,-) @@ -289,7 +292,11 @@ fi %doc %{_docdir}/%{name}/*.txt %doc %{_docdir}/%{name}/scripts %doc %{_docdir}/%{name}/contrib -%doc %{_docdir}/%{name}/help/en +%doc %{_docdir}/%{name}/help/en/docs_src/ +%doc %{_docdir}/%{name}/help/en/cvpcb.pdf +%doc %{_docdir}/%{name}/help/en/eeschema.pdf +%doc %{_docdir}/%{name}/help/en/gerbview.pdf +%doc %{_docdir}/%{name}/help/en/pcbnew.pdf %doc %{_docdir}/%{name}/help/file_formats %doc %{_docdir}/%{name}/tutorials/en @@ -333,6 +340,12 @@ fi %changelog +* Wed Jul 08 2009 Jon Ciesla - 2009.07.07-2.rev1863 +- Dropped eeschema desktop file. +- Moved English kicad.pdf to main rpm. +- Added ls.so.conf file and ldconfig to post, postun to fix libs issue. +- Dropped category Development from desktop file. + * Tue Jul 7 2009 Chitlesh Goorah - 2009.07.07-1.rev1863 - svn rev 1863 - documentation splitted into multiple packages From ruben at fedoraproject.org Fri Jul 10 14:35:08 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Fri, 10 Jul 2009 14:35:08 +0000 (UTC) Subject: rpms/python-wokkel/devel .cvsignore, 1.3, 1.4 python-wokkel.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090710143508.4629B11C0048@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/python-wokkel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1626 Modified Files: .cvsignore python-wokkel.spec sources Log Message: * Fri Jul 10 2009 Ruben Kerkhof - 0.6.2-1 - Upstream released new version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 13 May 2009 13:32:20 -0000 1.3 +++ .cvsignore 10 Jul 2009 14:35:07 -0000 1.4 @@ -1 +1 @@ -wokkel-0.6.0.tar.gz +wokkel-0.6.2.tar.gz Index: python-wokkel.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/devel/python-wokkel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-wokkel.spec 13 May 2009 13:32:20 -0000 1.3 +++ python-wokkel.spec 10 Jul 2009 14:35:07 -0000 1.4 @@ -3,7 +3,7 @@ %define libname wokkel Name: python-%{libname} -Version: 0.6.0 +Version: 0.6.2 Release: 1%{?dist} Summary: Enhancements to the Twisted XMPP protocol implementation @@ -62,12 +62,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc LICENSE NEWS README +%doc LICENSE NEWS README doc/examples %{python_sitelib}/* %changelog -* Wed May 13 2009 Ruben Kerkhof 0.6.0-1 +* Fri Jul 10 2009 Ruben Kerkhof - 0.6.2-1 +- Upstream released new version + +* Wed May 13 2009 Ruben Kerkhof - 0.6.0-1 - Upstream released new version * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 13 May 2009 13:32:20 -0000 1.3 +++ sources 10 Jul 2009 14:35:07 -0000 1.4 @@ -1 +1 @@ -c59300b86dfac6c54806be3e2695d869 wokkel-0.6.0.tar.gz +4927ea97ff0363d33d8c762c61564570 wokkel-0.6.2.tar.gz From langel at fedoraproject.org Fri Jul 10 14:41:02 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Fri, 10 Jul 2009 14:41:02 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-execvpe.patch, NONE, 1.1 java-1.6.0-openjdk.spec, 1.126, 1.127 Message-ID: <20090710144102.815BD11C0048@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3956 Modified Files: java-1.6.0-openjdk.spec Added Files: java-1.6.0-openjdk-execvpe.patch Log Message: * Fri Jul 10 2009 Lillian Angel - 1:1.6.0-24.b16 - Added java-1.6.0-openjdk-execvpe.patch. java-1.6.0-openjdk-execvpe.patch: --- NEW FILE java-1.6.0-openjdk-execvpe.patch --- --- oldjdk/src/solaris/native/java/lang/UNIXProcess_md.c 2009-04-24 03:34:34.000000000 -0400 +++ openjdk/jdk/src/solaris/native/java/lang/UNIXProcess_md.c 2009-07-10 10:34:51.000000000 -0400 @@ -425,7 +425,7 @@ /* execvpe should have been included in the Unix standards. */ static int -execvpe(const char *file, const char *const argv[], const char *const envp[]) +JDK_execvpe(const char *file, const char *const argv[], const char *const envp[]) { /* This is one of the rare times it's more portable to declare an * external symbol explicitly, rather than via a system header. @@ -601,7 +601,7 @@ if (fcntl(FAIL_FILENO, F_SETFD, FD_CLOEXEC) == -1) goto WhyCantJohnnyExec; - execvpe(argv[0], argv, envv); + JDK_execvpe(argv[0], argv, envv); WhyCantJohnnyExec: /* We used to go to an awful lot of trouble to predict whether the Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk.spec,v retrieving revision 1.126 retrieving revision 1.127 diff -u -p -r1.126 -r1.127 --- java-1.6.0-openjdk.spec 9 Jul 2009 18:16:09 -0000 1.126 +++ java-1.6.0-openjdk.spec 10 Jul 2009 14:41:02 -0000 1.127 @@ -171,6 +171,7 @@ Patch5: java-1.6.0-openjdk-accessible- Patch6: java-1.6.0-openjdk-sparc-fixes.patch Patch7: java-1.6.0-openjdk-sparc-hotspot.patch Patch8: java-1.6.0-openjdk-netx.patch +Patch9: java-1.6.0-openjdk-execvpe.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -415,6 +416,7 @@ patch -l -p0 < %{PATCH4} patch -l -p0 < %{PATCH5} patch -l -p0 < %{PATCH7} patch -l -p0 < %{PATCH8} +patch -l -p0 < %{PATCH9} make export JAVA_HOME=$(pwd)/%{buildoutputdir}/j2sdk-image @@ -962,6 +964,9 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Fri Jul 10 2009 Lillian Angel - 1:1.6.0-24.b16 +- Added java-1.6.0-openjdk-execvpe.patch. + * Thu Jul 9 2009 Lillian Angel - 1:1.6.0-24.b16 - Added java-1.6.0-openjdk-netx.patch - Moved policytool to devel package. From ruben at fedoraproject.org Fri Jul 10 14:42:32 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Fri, 10 Jul 2009 14:42:32 +0000 (UTC) Subject: rpms/python-wokkel/F-11 .cvsignore, 1.2, 1.3 python-wokkel.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090710144232.BF1D611C0048@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/python-wokkel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4673 Modified Files: .cvsignore python-wokkel.spec sources Log Message: * Fri Jul 10 2009 Ruben Kerkhof - 0.6.2-1 - Upstream released new version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Jan 2009 12:19:18 -0000 1.2 +++ .cvsignore 10 Jul 2009 14:42:32 -0000 1.3 @@ -1 +1 @@ -wokkel-0.4.0.tar.gz +wokkel-0.6.2.tar.gz Index: python-wokkel.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/F-11/python-wokkel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-wokkel.spec 11 Jun 2009 10:19:56 -0000 1.3 +++ python-wokkel.spec 10 Jul 2009 14:42:32 -0000 1.4 @@ -3,7 +3,7 @@ %define libname wokkel Name: python-%{libname} -Version: 0.6.0 +Version: 0.6.2 Release: 1%{?dist} Summary: Enhancements to the Twisted XMPP protocol implementation @@ -62,12 +62,15 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc LICENSE NEWS README +%doc LICENSE NEWS README doc/examples %{python_sitelib}/* %changelog -* Wed May 13 2009 Ruben Kerkhof 0.6.0-1 +* Fri Jul 10 2009 Ruben Kerkhof - 0.6.2-1 +- Upstream released new version + +* Wed May 13 2009 Ruben Kerkhof - 0.6.0-1 - Upstream released new version * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 11 Jun 2009 10:19:56 -0000 1.3 +++ sources 10 Jul 2009 14:42:32 -0000 1.4 @@ -1 +1 @@ -c59300b86dfac6c54806be3e2695d869 wokkel-0.6.0.tar.gz +4927ea97ff0363d33d8c762c61564570 wokkel-0.6.2.tar.gz From than at fedoraproject.org Fri Jul 10 14:47:53 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 14:47:53 +0000 (UTC) Subject: rpms/kdebindings/devel .cvsignore, 1.58, 1.59 kdebindings.spec, 1.212, 1.213 sources, 1.64, 1.65 Message-ID: <20090710144753.5CD5911C0489@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7137 Modified Files: .cvsignore kdebindings.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/.cvsignore,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- .cvsignore 26 Jun 2009 11:37:16 -0000 1.58 +++ .cvsignore 10 Jul 2009 14:47:23 -0000 1.59 @@ -1,2 +1,3 @@ kdebindings-4.2.90.tar.bz2 kdebindings-4.2.95.tar.bz2 +kdebindings-4.2.96.tar.bz2 Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.212 retrieving revision 1.213 diff -u -p -r1.212 -r1.213 --- kdebindings.spec 26 Jun 2009 11:37:16 -0000 1.212 +++ kdebindings.spec 10 Jul 2009 14:47:23 -0000 1.213 @@ -32,7 +32,7 @@ %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") Name: kdebindings -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: KDE bindings to non-C++ languages @@ -487,6 +487,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/sources,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sources 26 Jun 2009 11:37:16 -0000 1.64 +++ sources 10 Jul 2009 14:47:23 -0000 1.65 @@ -1 +1,2 @@ 3c9d5fcbd1de0eefcb67a4353b0737fb kdebindings-4.2.95.tar.bz2 +b85be1ab3de88650b7f22ae7e0a2cf5e kdebindings-4.2.96.tar.bz2 From mycae at fedoraproject.org Fri Jul 10 14:51:44 2009 From: mycae at fedoraproject.org (mycae) Date: Fri, 10 Jul 2009 14:51:44 +0000 (UTC) Subject: rpms/nurbs++/devel import.log, NONE, 1.1 nurbs++-gcc4.4.patch, NONE, 1.1 nurbs++-gcc4.patch, NONE, 1.1 nurbs++-linker.patch, NONE, 1.1 nurbs++-opengl-config.patch, NONE, 1.1 nurbs++.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710145144.BF80911C0489@cvs1.fedora.phx.redhat.com> Author: mycae Update of /cvs/pkgs/rpms/nurbs++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9158/devel Modified Files: .cvsignore sources Added Files: import.log nurbs++-gcc4.4.patch nurbs++-gcc4.patch nurbs++-linker.patch nurbs++-opengl-config.patch nurbs++.spec Log Message: *Initial commit --- NEW FILE import.log --- nurbs++-3_0_11-6_fc10:HEAD:nurbs++-3.0.11-6.fc10.src.rpm:1247237693 nurbs++-gcc4.4.patch: --- NEW FILE nurbs++-gcc4.4.patch --- --- nurbs/nurbs.h 2009-06-06 12:17:03.000000000 +1000 +++ nurbs/nurbs.h.new 2009-06-06 12:16:55.000000000 +1000 @@ -105,8 +105,8 @@ // Basis functions T basisFun(T u, int i, int p=-1) const ; - void basisFuns(T u, int span, Vector& N) const ; - void dersBasisFuns(int n,T u, int span, Matrix& N) const; + void basisFuns(T u, int span, Vector& Nd)const ; + void dersBasisFuns(int n,T u, int span, Matrix& Nd) const; // Knot functions T minKnot() const //! the minimal value for the knot vector --- nurbs/nurbsS.cpp 2009-06-05 23:18:28.000000000 +1000 +++ nurbs/nurbsS.cpp.new 2009-06-05 23:21:09.000000000 +1000 @@ -4082,7 +4082,7 @@ char front[1024] ; - char *ext ; + const char *ext ; ext = strstr(filename,".rib") ; if(ext){ for(i=0;i<1024;++i){ --- nurbs/nurbsS.h 2009-06-06 12:18:02.000000000 +1000 +++ nurbs/nurbsS.h.new 2009-06-06 12:17:58.000000000 +1000 @@ -99,8 +99,8 @@ virtual HPoint_nD operator()(T u, T v) const ; void basisFuns(T u, T v, int spanU, int spanV, Vector& Nu, Vector& Nv) const ; - void basisFunsU(T u, int span, Vector& N) const ; - void basisFunsV(T u, int span, Vector& N) const ; + void basisFunsU(T u, int span, Vector& Nd) const ; + void basisFunsV(T u, int span, Vector& Nd) const ; void dersBasisFuns(T u, T v, int dU, int dV,int uspan, int vspan,Matrix & Niku, Matrix& Njkv ) const ; // Derivative functions @@ -135,8 +135,8 @@ int skinU(NurbsCurveArray& ca, int degU); void sweep(const NurbsCurve& t, const NurbsCurve& C, const NurbsCurve& Sv, int K,int useAy=0, int invAz=0) ; void sweep(const NurbsCurve& t, const NurbsCurve& C, int K,int useAy=0, int invAz=0) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T, double theta) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta, double theta) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta) ; void makeFromRevolution(const NurbsCurve& profile) ; void makeSphere(const Point_nD& O, T r) ; --- nurbs/nurbsGL.cpp 2009-06-06 15:12:23.000000000 +1000 +++ nurbs/nurbsGL.cpp.new 2009-06-06 15:12:20.000000000 +1000 @@ -1459,7 +1459,7 @@ NurbsGL* readNurbsObject(const char* filename) { NurbsGL *temp ; // guess the type of the curve first, if that doesn't work try all of them - char* ext ; + const char* ext ; //ext = strstr(filename,".n()ca") ; //if(ext){ // openByType = OPENCURVEARRAY ; nurbs++-gcc4.patch: --- NEW FILE nurbs++-gcc4.patch --- Only in ../nurbs++-3.0.11.new/config: Makefile Only in ../nurbs++-3.0.11.new/: config.log Only in ../nurbs++-3.0.11.new/: config.status Only in ../nurbs++-3.0.11.new/: Doxyfile Only in ../nurbs++-3.0.11.new/examples/image: .deps Only in ../nurbs++-3.0.11.new/examples/image: Makefile Only in ../nurbs++-3.0.11.new/examples: Makefile Only in ../nurbs++-3.0.11.new/examples/matrix: .deps Only in ../nurbs++-3.0.11.new/examples/matrix: Makefile Only in ../nurbs++-3.0.11.new/examples/numerical: .deps Only in ../nurbs++-3.0.11.new/examples/numerical: Makefile Only in ../nurbs++-3.0.11.new/examples/nurbs: .deps Only in ../nurbs++-3.0.11.new/examples/nurbs: Makefile Only in ../nurbs++-3.0.11.new/: html diff -ruh ./image/color.cpp ../nurbs++-3.0.11.new/image/color.cpp --- ./image/color.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/color.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -50,7 +50,7 @@ Color blackColor(0,0,0) ; */ - double +template<> double Matrix::norm(void) { #ifdef USE_EXCEPTION throw MatrixErr(); @@ -63,7 +63,7 @@ } #ifndef USING_VCC - int Matrix::read(char* filename,int r, int c) { + template<> int Matrix::read(char* filename,int r, int c) { ifstream fin(filename) ; if(!fin) { resize(1,1) ; @@ -89,7 +89,7 @@ } #endif - int Vector::minIndex() const { +template<> int Vector::minIndex() const { #ifdef USE_EXCEPTION throw MatrixErr() ; #else Only in ../nurbs++-3.0.11.new/image: color.lo Only in ../nurbs++-3.0.11.new/image: color.o Only in ../nurbs++-3.0.11.new/image: .deps Only in ../nurbs++-3.0.11.new/image: filter_.lo Only in ../nurbs++-3.0.11.new/image: filter_.o diff -ruh ./image/image.cpp ../nurbs++-3.0.11.new/image/image.cpp --- ./image/image.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/image.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -55,9 +55,9 @@ void MatrixImage::drawLine(int i1, int j1, int i2, int j2, T color){ int i,j ; double mx,b ; - if(i1<0 || j1<0 || i1>rows() || j1>=cols() ){ + if(i1<0 || j1<0 || i1>MatrixImage::rows() || j1>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i1,j1,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i1,j1,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -65,9 +65,9 @@ #endif return ; } - if(i2 <0 || j2<0 || i2>rows() || j2>=cols() ){ + if(i2 <0 || j2<0 || i2>MatrixImage::rows() || j2>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i2,j2,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i2,j2,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -79,7 +79,7 @@ // check if line is vertical if(j1==j2){ for(i=minimum(i1,i2);i<=maximum(i1,i2);i++) - operator()(i,j1) = color ; + MatrixImage:: operator()(i,j1) = color ; return ; } mx = (double)(i1-i2)/(double)(j1-j2) ; @@ -88,13 +88,13 @@ if(i1>i2){ for(i=i1;i>=i2;i--){ j = int(((double)i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(i=i1;i<=i2;i++){ j = (int)((i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -102,13 +102,13 @@ if(j1>j2){ for(j=j1;j>=j2;j--){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(j=j1;j<=j2;j++){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -133,9 +133,9 @@ void MatrixImage::drawPoint(int i, int j, double r , T color){ for(int y=i-int(ceil(r)) ; y=0 && y=0 && x=0 && y::rows() && x>=0 && x::cols()){ if( ((y-i)*(y-i)+(x-j)*(x-j))<= r*r) - operator()(y,x) = color ; + MatrixImage::operator()(y,x) = color ; } } } @@ -153,14 +153,14 @@ */ template void MatrixImage::store(Matrix& a){ - if(a.rows() != rows() || a.cols() != cols()) { - a.resize(rows(),cols()) ; + if(a.rows() != MatrixImage::rows() || a.cols() != MatrixImage::cols()) { + a.resize(MatrixImage::rows(),MatrixImage::cols()) ; } T *aptr, *bptr ; int size,i ; aptr = &a(0,0)-1 ; - bptr = m-1 ; - size = cols()*rows() ; + bptr = this->m-1 ; + size = MatrixImage::cols()*MatrixImage::rows() ; for(i=0;iP.cols()) ; + maxAtV_.resize(this->P.cols()) ; + for(int i=0;iP.cols();++i){ + if(!maxInfluence(i,this->V,this->degV,maxAtV_[i])) cerr << "Problem in maxInfluence V!\n" ; - maxV[i] = nurbsBasisFun(maxAtV_[i],i,degV,V) ; + maxV[i] = nurbsBasisFun(maxAtV_[i],i,this->degV,this->V) ; } } @@ -124,11 +124,11 @@ NurbsSurfaceSP NurbsSurfaceSP::generateParallel(T d) const { NurbsSurfaceSP p(*this) ; - Vector< Point_nD > offset(P.rows()*P.cols()) ; - Vector ur(P.rows()*P.cols()) ; - Vector vr(P.rows()*P.cols()) ; - Vector_INT Du(P.rows()*P.cols()) ; - Vector_INT Dv(P.rows()*P.cols()) ; + Vector< Point_nD > offset(this->P.rows()*this->P.cols()) ; + Vector ur(this->P.rows()*this->P.cols()) ; + Vector vr(this->P.rows()*this->P.cols()) ; + Vector_INT Du(this->P.rows()*this->P.cols()) ; + Vector_INT Dv(this->P.rows()*this->P.cols()) ; Du.reset(0) ; Dv.reset(0) ; @@ -137,8 +137,8 @@ no = 0 ; - for(i=0;iP.rows();++i) + for(j=0;jP.cols();++j){ Point_nD norm ; norm = normal(maxAtU_[i],maxAtV_[j]) ; if(norm.x() == T(0) && @@ -155,19 +155,19 @@ norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==P.cols()-1){ + if(i==this->P.rows()-1 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]-delta) ; norm /= T(2) ; ok = 1 ; } - if(i==0 && j==P.cols()-1){ + if(i==0 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==0){ + if(i==this->P.rows()-1 && j==0){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; @@ -178,7 +178,7 @@ while(norm.x() == T(0) && norm.y() == T(0) && norm.z() == T(0)){ - if( nt*d >(U[U.n()-1]-U[0])){ + if( nt*d >(this->U[this->U.n()-1]-this->U[0])){ #ifdef USE_EXCEPTION throw NurbsComputationError(); #else @@ -188,12 +188,12 @@ #endif } T u1,u2,v1,v2 ; - if(i==0 || i==P.rows()-1){ + if(i==0 || i==this->P.rows()-1){ u1 = u2 = maxAtU_[i] ; v1 = maxAtV_[j]+ nt*delta ; v2 = maxAtV_[j]- nt*delta ; - if(v1>V[V.n()-1]) v1 = V[V.n()-1] ; - if(v2this->V[this->V.n()-1]) v1 = this->V[this->V.n()-1] ; + if(v2V[0]) v2 = this->V[0] ; norm = normal(u1,v1); norm += normal(u2,v2) ; norm /= 2 ; @@ -202,8 +202,8 @@ u1 = maxAtU_[i]- nt*delta ; u2 = maxAtU_[i]+ nt*delta ; v1 = v2 = maxAtV_[j] ; - if(u1 < U[0]) u1 = U[0] ; - if(u2 > U[U.n()-1]) u2 = U[U.n()-1] ; + if(u1 < this->U[0]) u1 = this->U[0] ; + if(u2 > this->U[this->U.n()-1]) u2 = this->U[this->U.n()-1] ; T u3,v3 ; u3 = maxAtU_[i] ; @@ -212,8 +212,8 @@ else v3 = maxAtV_[j]- nt*delta ; - if(v3V[V.n()-1]) v3 = V[V.n()-1] ; + if(v3V[0]) v3 = this->V[0] ; + if(v3>this->V[this->V.n()-1]) v3 = this->V[this->V.n()-1] ; norm = normal(u1,v1); norm += normal(u2,v2) ; @@ -263,13 +263,13 @@ int sizeU, sizeV ; - sizeU = 2*degU+3 ; - if(i-degU-1<0) sizeU += i-degU-1 ; - if(i+degU+1>=P.rows()) sizeU -= i+degU+1-P.rows() ; - - sizeV = 2*degV+3 ; - if(j-degV-1<0) sizeV += j-degV-1 ; - if(j+degV+1>=P.cols()) sizeV -= j+degV+1-P.cols() ; + sizeU = 2*this->degU+3 ; + if(i-this->degU-1<0) sizeU += i-this->degU-1 ; + if(i+this->degU+1>=this->P.rows()) sizeU -= i+this->degU+1-this->P.rows() ; + + sizeV = 2*this->degV+3 ; + if(j-this->degV-1<0) sizeV += j-this->degV-1 ; + if(j+this->degV+1>=this->P.cols()) sizeV -= j+this->degV+1-this->P.cols() ; Vector u(sizeU) ; Vector v(sizeV) ; @@ -280,16 +280,16 @@ int n=0; int nu = 0 ; int nv = 0 ; - for(int k=i-degU-1;k<=i+degU+1;++k){ + for(int k=i-this->degU-1;k<=i+this->degU+1;++k){ if(k<0) continue ; - if(k>=P.rows()) + if(k>=this->P.rows()) break ; nv = 0 ; - for(int l=j-degV-1;l<=j+degV+1;++l){ + for(int l=j-this->degV-1;l<=j+this->degV+1;++l){ if(l<0) continue ; - if(l>=P.cols()) + if(l>=this->P.cols()) break ; if( k == i && j==l){ pts[n].x() = a.x() ; diff -ruh ./nurbs/nurbsS_sp.h ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h --- ./nurbs/nurbsS_sp.h 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h 2009-01-24 18:36:20.000000000 +1100 @@ -78,7 +78,7 @@ void modSurfCPby(int i, int j, const HPoint_nD& a) //!< Moves a surface point by a value - { P(i,j) += a / (maxU[i]*maxV[j]) ; } + { this->P(i,j) += a / (maxU[i]*maxV[j]) ; } void modSurfCP(int i, int j, const HPoint_nD& a) //!< Moves a surface point to a value { modSurfCPby(i,j,a-surfP(i,j)) ; } diff -ruh ./nurbs/nurbsSub.cpp ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp --- ./nurbs/nurbsSub.cpp 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -904,7 +904,7 @@ /* Allocate storage for the grid of points generated */ - CHECK( pts = new (SurfSample*)[Granularity+1]); + CHECK( pts = new SurfSample*[Granularity+1]); CHECK( pts[0] = new SurfSample[(Granularity+1)*(Granularity+1)]); for (i = 1; i <= Granularity; i++) @@ -983,7 +983,7 @@ if (! *alpha) /* Must allocate alpha */ { - CHECK( *alpha = new (T*)[k+1]); + CHECK( *alpha = new T*[k+1]); for (i = 0; i <= k; i++) CHECK( (*alpha)[i] = new T[(m + n + 1)]); } Only in ../nurbs++-3.0.11.new/: nurbs++-config Only in ../nurbs++-3.0.11.new/tests: Makefile Only in ../nurbs++-3.0.11.new/tests/matrix: .deps Only in ../nurbs++-3.0.11.new/tests/matrix: Makefile Only in ../nurbs++-3.0.11.new/tests/nurbs: .deps Only in ../nurbs++-3.0.11.new/tests/nurbs: Makefile nurbs++-linker.patch: --- NEW FILE nurbs++-linker.patch --- --- nurbs/Makefile.am 2009-07-07 22:32:45.000000000 +1000 +++ nurbs/Makefile.am.new 2009-07-07 22:33:16.000000000 +1000 @@ -44,7 +44,8 @@ lib_LTLIBRARIES = libnurbsf.la libnurbsd.la libnurbsf_la_SOURCES = $(float_sources) -libnurbsf_la_LDFLAGS = $(ldflags) +libnurbsf_la_LDFLAGS = $(ldflags) -lGL -lGLU -lmatrix -lmatrixN -lmatrixI libnurbsd_la_SOURCES = $(double_sources) -libnurbsd_la_LDFLAGS = $(ldflags) +libnurbsd_la_LDFLAGS = $(ldflags) -lmatrix -lmatrixN -lmatrixI + --- image/Makefile.am 2002-05-14 06:04:34.000000000 +1000 +++ image/Makefile.am.new 2009-07-09 00:21:55.000000000 +1000 @@ -9,4 +9,4 @@ lib_LTLIBRARIES = libmatrixI.la libmatrixI_la_SOURCES = color.cpp image_.cpp rec_filter_.cpp filter_.cpp -libmatrixI_la_LDFLAGS = -version-info 1:0:0 +libmatrixI_la_LDFLAGS = -version-info 1:0:0 -lmatrix --- numerical/Makefile.am 2002-05-14 06:04:38.000000000 +1000 +++ numerical/Makefile.am.new 2009-07-09 00:22:24.000000000 +1000 @@ -6,5 +6,5 @@ lib_LTLIBRARIES = libmatrixN.la libmatrixN_la_SOURCES = matrixMat_.cpp fft_.cpp chebexp_.cpp intccq_.cpp statistic_.cpp -libmatrixN_la_LDFLAGS = -version-info 1:0:0 +libmatrixN_la_LDFLAGS = -version-info 1:0:0 -lmatrix nurbs++-opengl-config.patch: --- NEW FILE nurbs++-opengl-config.patch --- --- config/has_opengl.m4 2002-05-18 02:03:18.000000000 +1000 +++ config/has_opengl.m4.new 2009-01-25 01:06:11.000000000 +1100 @@ -163,7 +163,7 @@ else GL_LFLAGS="-L${ac_cv_with_gl_lib}" fi - GL_LIBS="-lGLU -lGL $X_PRE_LIBS -lXext -lm" + GL_LIBS="-lGLU -lGL" AC_SUBST(GL_LIBS) AC_SUBST(GL_LFLAGS) ], --- NEW FILE nurbs++.spec --- Name: nurbs++ Version: 3.0.11 Release: 6%{?dist} Summary: Non Uniform Rational Basis Spline (NURBS) library for C++ Group: Development/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/libnurbs/ Source: http://downloads.sourceforge.net/libnurbs/%{name}-%{version}.tar.bz2 #Upstream maintenance request #https://sourceforge.net/tracker/index.php?func=detail&aid=2531392&group_id=3254&atid=103254 #Patch to fix gcc4.3 builds (template compliance problems) #Submitted to upstream tracker #https://sourceforge.net/tracker/index.php?func=detail&aid=2531330&group_id=3254&atid=303254 Patch0: %{name}-gcc4.patch #Patch to fix openGL lib finding. Patch1: %{name}-opengl-config.patch #Patch to fix gcc4.4 builds (template parameter shadowing) Patch2: %{name}-gcc4.4.patch #Patch to fix linker (non-weak symbols) Patch3: %{name}-linker.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #Note cppunit-devel is not included, as the unit tests do not build BuildRequires: autoconf BuildRequires: automake BuildRequires: libtool BuildRequires: libGL-devel BuildRequires: libGLU-devel %description A C++ library to manipulate and create NURBS curves and surfaces. Also featuring vector, matrix, and OpenGL support classes. %package devel Group: Development/Libraries License: LGPLv2 Requires: %{name} = %{version}-%{release} Requires: libGL-devel Requires: libGLU-devel Summary: Provides development files for %{name} applications %description devel Development libraries for the %{name} library. %prep %setup -q %patch0 %patch1 %patch2 %patch3 #Reconfigure to fix openGL test autoreconf -f #libtool provided is <1.5, which causes --tags to be not recognised #and build breaks. rm -f libtool ln -s `which libtool` libtool #F10 has /usr/share/libtool/ltmain.sh. #F11 has it in config subdir if [ -f /usr/share/libtool/config/ltmain.sh ] ; then cp /usr/share/libtool/config/ltmain.sh . else cp /usr/share/libtool/ltmain.sh . fi %build %configure --enable-shared --disable-static --with-opengl --with-gl-lib=%{_libdir} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make %{?_smp_mflags} %install rm -rf %{buildroot} mkdir %{buildroot} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.la rm -f %{buildroot}/%{_libdir}/*.a %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README AUTHORS %{_libdir}/libmatrix.so.* %{_libdir}/libmatrixI.so.* %{_libdir}/libmatrixN.so.* %{_libdir}/libnurbsd.so.* %{_libdir}/libnurbsf.so.* %files devel %defattr(-,root,root,-) %{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_mandir}/man1/%{name}-config.1.gz %{_libdir}/libmatrix.so %{_libdir}/libmatrixI.so %{_libdir}/libmatrixN.so %{_libdir}/libnurbsd.so %{_libdir}/libnurbsf.so %changelog * Wed Jul 08 2009 3.0.11-6 - ImageMagick is in ifdefs that are not activated - Fix more weak-link errors * Tue Jul 07 2009 3.0.11-5 - Move manpage for -config utility to devel package - Add ImageMagick support - Fixed weak-linking errors - Add linker patch - Licence to LGPLv2+ * Sat Jun 06 2009 3.0.11-4 - Patch to fix build for gcc-4.4 - Add buildrequires to fix autoreconf/libtool command missing in f11 koji * Sat Jan 24 2009 3.0.11-3 - Modified patch to enable opengl build * Sat Jan 24 2009 3.0.11-2 - Use version macro in URL name * Sat Jan 24 2009 3.0.11-1 - Initial spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:36:41 -0000 1.1 +++ .cvsignore 10 Jul 2009 14:51:44 -0000 1.2 @@ -0,0 +1 @@ +nurbs++-3.0.11.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:36:41 -0000 1.1 +++ sources 10 Jul 2009 14:51:44 -0000 1.2 @@ -0,0 +1 @@ +11aa7f2a1ae2bc3e2671d56f557fbbbf nurbs++-3.0.11.tar.bz2 From than at fedoraproject.org Fri Jul 10 14:52:34 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 14:52:34 +0000 (UTC) Subject: rpms/kdebindings/devel sources,1.65,1.66 Message-ID: <20090710145234.5445811C0489@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9641 Modified Files: sources Log Message: 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 10 Jul 2009 14:47:23 -0000 1.65 +++ sources 10 Jul 2009 14:52:34 -0000 1.66 @@ -1,2 +1 @@ -3c9d5fcbd1de0eefcb67a4353b0737fb kdebindings-4.2.95.tar.bz2 b85be1ab3de88650b7f22ae7e0a2cf5e kdebindings-4.2.96.tar.bz2 From than at fedoraproject.org Fri Jul 10 14:56:29 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 14:56:29 +0000 (UTC) Subject: rpms/kdeedu/devel .cvsignore, 1.65, 1.66 kdeedu.spec, 1.191, 1.192 sources, 1.67, 1.68 Message-ID: <20090710145629.7A0B311C0489@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11147 Modified Files: .cvsignore kdeedu.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/.cvsignore,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- .cvsignore 26 Jun 2009 12:00:15 -0000 1.65 +++ .cvsignore 10 Jul 2009 14:55:59 -0000 1.66 @@ -1,2 +1,3 @@ kdeedu-4.2.90.tar.bz2 kdeedu-4.2.95.tar.bz2 +kdeedu-4.2.96.tar.bz2 Index: kdeedu.spec =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/kdeedu.spec,v retrieving revision 1.191 retrieving revision 1.192 diff -u -p -r1.191 -r1.192 --- kdeedu.spec 7 Jul 2009 15:56:27 -0000 1.191 +++ kdeedu.spec 10 Jul 2009 14:55:59 -0000 1.192 @@ -6,8 +6,8 @@ Name: kdeedu Summary: Educational/Edutainment applications -Version: 4.2.95 -Release: 3%{?dist} +Version: 4.2.96 +Release: 1%{?dist} License: GPLv2 Group: Amusements/Games @@ -450,6 +450,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Tue Jul 07 2009 Rex Dieter - 4.2.95-3 - rebuild against fixed libqalculate to purge cln dep Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/sources,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- sources 26 Jun 2009 12:00:16 -0000 1.67 +++ sources 10 Jul 2009 14:55:59 -0000 1.68 @@ -1 +1 @@ -3f4ce05288b5e02b76fef538030ffb6c kdeedu-4.2.95.tar.bz2 +ead56652dd09cd813ae6a0fdee965040 kdeedu-4.2.96.tar.bz2 From mbarnes at fedoraproject.org Fri Jul 10 14:57:11 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 10 Jul 2009 14:57:11 +0000 (UTC) Subject: rpms/evolution/F-11 evolution.spec,1.383,1.384 Message-ID: <20090710145711.B9C4311C0489@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11437 Modified Files: evolution.spec Log Message: * Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 - Drop libpst requirement until its API stablizes. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/F-11/evolution.spec,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- evolution.spec 30 Jun 2009 16:25:36 -0000 1.383 +++ evolution.spec 10 Jul 2009 14:56:41 -0000 1.384 @@ -45,7 +45,7 @@ Name: evolution Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -77,10 +77,8 @@ Requires(postun): scrollkeeper >= %{scro # Don't trust evolution-data-server to maintain accurate sonames. Requires: evolution-data-server >= %{version} -# No devel package for libpst, despite the name. Requires: gnome-icon-theme >= %{gnome_icon_theme_version} Requires: gnome-themes -Requires: libpst ### Build Dependencies ### @@ -691,6 +689,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 +- Drop libpst requirement until its API stablizes. + * Tue Jun 30 2009 Matthew Barnes - 2.26.3-1.fc11 - Update to 2.26.3 From mycae at fedoraproject.org Fri Jul 10 14:57:23 2009 From: mycae at fedoraproject.org (mycae) Date: Fri, 10 Jul 2009 14:57:23 +0000 (UTC) Subject: rpms/nurbs++/F-10 import.log, NONE, 1.1 nurbs++-gcc4.4.patch, NONE, 1.1 nurbs++-gcc4.patch, NONE, 1.1 nurbs++-linker.patch, NONE, 1.1 nurbs++-opengl-config.patch, NONE, 1.1 nurbs++.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710145723.CDE7E11C0489@cvs1.fedora.phx.redhat.com> Author: mycae Update of /cvs/pkgs/rpms/nurbs++/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11811/F-10 Modified Files: .cvsignore sources Added Files: import.log nurbs++-gcc4.4.patch nurbs++-gcc4.patch nurbs++-linker.patch nurbs++-opengl-config.patch nurbs++.spec Log Message: *Initial commit --- NEW FILE import.log --- nurbs++-3_0_11-6_fc10:F-10:nurbs++-3.0.11-6.fc10.src.rpm:1247238032 nurbs++-gcc4.4.patch: --- NEW FILE nurbs++-gcc4.4.patch --- --- nurbs/nurbs.h 2009-06-06 12:17:03.000000000 +1000 +++ nurbs/nurbs.h.new 2009-06-06 12:16:55.000000000 +1000 @@ -105,8 +105,8 @@ // Basis functions T basisFun(T u, int i, int p=-1) const ; - void basisFuns(T u, int span, Vector& N) const ; - void dersBasisFuns(int n,T u, int span, Matrix& N) const; + void basisFuns(T u, int span, Vector& Nd)const ; + void dersBasisFuns(int n,T u, int span, Matrix& Nd) const; // Knot functions T minKnot() const //! the minimal value for the knot vector --- nurbs/nurbsS.cpp 2009-06-05 23:18:28.000000000 +1000 +++ nurbs/nurbsS.cpp.new 2009-06-05 23:21:09.000000000 +1000 @@ -4082,7 +4082,7 @@ char front[1024] ; - char *ext ; + const char *ext ; ext = strstr(filename,".rib") ; if(ext){ for(i=0;i<1024;++i){ --- nurbs/nurbsS.h 2009-06-06 12:18:02.000000000 +1000 +++ nurbs/nurbsS.h.new 2009-06-06 12:17:58.000000000 +1000 @@ -99,8 +99,8 @@ virtual HPoint_nD operator()(T u, T v) const ; void basisFuns(T u, T v, int spanU, int spanV, Vector& Nu, Vector& Nv) const ; - void basisFunsU(T u, int span, Vector& N) const ; - void basisFunsV(T u, int span, Vector& N) const ; + void basisFunsU(T u, int span, Vector& Nd) const ; + void basisFunsV(T u, int span, Vector& Nd) const ; void dersBasisFuns(T u, T v, int dU, int dV,int uspan, int vspan,Matrix & Niku, Matrix& Njkv ) const ; // Derivative functions @@ -135,8 +135,8 @@ int skinU(NurbsCurveArray& ca, int degU); void sweep(const NurbsCurve& t, const NurbsCurve& C, const NurbsCurve& Sv, int K,int useAy=0, int invAz=0) ; void sweep(const NurbsCurve& t, const NurbsCurve& C, int K,int useAy=0, int invAz=0) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T, double theta) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta, double theta) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta) ; void makeFromRevolution(const NurbsCurve& profile) ; void makeSphere(const Point_nD& O, T r) ; --- nurbs/nurbsGL.cpp 2009-06-06 15:12:23.000000000 +1000 +++ nurbs/nurbsGL.cpp.new 2009-06-06 15:12:20.000000000 +1000 @@ -1459,7 +1459,7 @@ NurbsGL* readNurbsObject(const char* filename) { NurbsGL *temp ; // guess the type of the curve first, if that doesn't work try all of them - char* ext ; + const char* ext ; //ext = strstr(filename,".n()ca") ; //if(ext){ // openByType = OPENCURVEARRAY ; nurbs++-gcc4.patch: --- NEW FILE nurbs++-gcc4.patch --- Only in ../nurbs++-3.0.11.new/config: Makefile Only in ../nurbs++-3.0.11.new/: config.log Only in ../nurbs++-3.0.11.new/: config.status Only in ../nurbs++-3.0.11.new/: Doxyfile Only in ../nurbs++-3.0.11.new/examples/image: .deps Only in ../nurbs++-3.0.11.new/examples/image: Makefile Only in ../nurbs++-3.0.11.new/examples: Makefile Only in ../nurbs++-3.0.11.new/examples/matrix: .deps Only in ../nurbs++-3.0.11.new/examples/matrix: Makefile Only in ../nurbs++-3.0.11.new/examples/numerical: .deps Only in ../nurbs++-3.0.11.new/examples/numerical: Makefile Only in ../nurbs++-3.0.11.new/examples/nurbs: .deps Only in ../nurbs++-3.0.11.new/examples/nurbs: Makefile Only in ../nurbs++-3.0.11.new/: html diff -ruh ./image/color.cpp ../nurbs++-3.0.11.new/image/color.cpp --- ./image/color.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/color.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -50,7 +50,7 @@ Color blackColor(0,0,0) ; */ - double +template<> double Matrix::norm(void) { #ifdef USE_EXCEPTION throw MatrixErr(); @@ -63,7 +63,7 @@ } #ifndef USING_VCC - int Matrix::read(char* filename,int r, int c) { + template<> int Matrix::read(char* filename,int r, int c) { ifstream fin(filename) ; if(!fin) { resize(1,1) ; @@ -89,7 +89,7 @@ } #endif - int Vector::minIndex() const { +template<> int Vector::minIndex() const { #ifdef USE_EXCEPTION throw MatrixErr() ; #else Only in ../nurbs++-3.0.11.new/image: color.lo Only in ../nurbs++-3.0.11.new/image: color.o Only in ../nurbs++-3.0.11.new/image: .deps Only in ../nurbs++-3.0.11.new/image: filter_.lo Only in ../nurbs++-3.0.11.new/image: filter_.o diff -ruh ./image/image.cpp ../nurbs++-3.0.11.new/image/image.cpp --- ./image/image.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/image.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -55,9 +55,9 @@ void MatrixImage::drawLine(int i1, int j1, int i2, int j2, T color){ int i,j ; double mx,b ; - if(i1<0 || j1<0 || i1>rows() || j1>=cols() ){ + if(i1<0 || j1<0 || i1>MatrixImage::rows() || j1>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i1,j1,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i1,j1,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -65,9 +65,9 @@ #endif return ; } - if(i2 <0 || j2<0 || i2>rows() || j2>=cols() ){ + if(i2 <0 || j2<0 || i2>MatrixImage::rows() || j2>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i2,j2,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i2,j2,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -79,7 +79,7 @@ // check if line is vertical if(j1==j2){ for(i=minimum(i1,i2);i<=maximum(i1,i2);i++) - operator()(i,j1) = color ; + MatrixImage:: operator()(i,j1) = color ; return ; } mx = (double)(i1-i2)/(double)(j1-j2) ; @@ -88,13 +88,13 @@ if(i1>i2){ for(i=i1;i>=i2;i--){ j = int(((double)i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(i=i1;i<=i2;i++){ j = (int)((i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -102,13 +102,13 @@ if(j1>j2){ for(j=j1;j>=j2;j--){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(j=j1;j<=j2;j++){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -133,9 +133,9 @@ void MatrixImage::drawPoint(int i, int j, double r , T color){ for(int y=i-int(ceil(r)) ; y=0 && y=0 && x=0 && y::rows() && x>=0 && x::cols()){ if( ((y-i)*(y-i)+(x-j)*(x-j))<= r*r) - operator()(y,x) = color ; + MatrixImage::operator()(y,x) = color ; } } } @@ -153,14 +153,14 @@ */ template void MatrixImage::store(Matrix& a){ - if(a.rows() != rows() || a.cols() != cols()) { - a.resize(rows(),cols()) ; + if(a.rows() != MatrixImage::rows() || a.cols() != MatrixImage::cols()) { + a.resize(MatrixImage::rows(),MatrixImage::cols()) ; } T *aptr, *bptr ; int size,i ; aptr = &a(0,0)-1 ; - bptr = m-1 ; - size = cols()*rows() ; + bptr = this->m-1 ; + size = MatrixImage::cols()*MatrixImage::rows() ; for(i=0;iP.cols()) ; + maxAtV_.resize(this->P.cols()) ; + for(int i=0;iP.cols();++i){ + if(!maxInfluence(i,this->V,this->degV,maxAtV_[i])) cerr << "Problem in maxInfluence V!\n" ; - maxV[i] = nurbsBasisFun(maxAtV_[i],i,degV,V) ; + maxV[i] = nurbsBasisFun(maxAtV_[i],i,this->degV,this->V) ; } } @@ -124,11 +124,11 @@ NurbsSurfaceSP NurbsSurfaceSP::generateParallel(T d) const { NurbsSurfaceSP p(*this) ; - Vector< Point_nD > offset(P.rows()*P.cols()) ; - Vector ur(P.rows()*P.cols()) ; - Vector vr(P.rows()*P.cols()) ; - Vector_INT Du(P.rows()*P.cols()) ; - Vector_INT Dv(P.rows()*P.cols()) ; + Vector< Point_nD > offset(this->P.rows()*this->P.cols()) ; + Vector ur(this->P.rows()*this->P.cols()) ; + Vector vr(this->P.rows()*this->P.cols()) ; + Vector_INT Du(this->P.rows()*this->P.cols()) ; + Vector_INT Dv(this->P.rows()*this->P.cols()) ; Du.reset(0) ; Dv.reset(0) ; @@ -137,8 +137,8 @@ no = 0 ; - for(i=0;iP.rows();++i) + for(j=0;jP.cols();++j){ Point_nD norm ; norm = normal(maxAtU_[i],maxAtV_[j]) ; if(norm.x() == T(0) && @@ -155,19 +155,19 @@ norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==P.cols()-1){ + if(i==this->P.rows()-1 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]-delta) ; norm /= T(2) ; ok = 1 ; } - if(i==0 && j==P.cols()-1){ + if(i==0 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==0){ + if(i==this->P.rows()-1 && j==0){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; @@ -178,7 +178,7 @@ while(norm.x() == T(0) && norm.y() == T(0) && norm.z() == T(0)){ - if( nt*d >(U[U.n()-1]-U[0])){ + if( nt*d >(this->U[this->U.n()-1]-this->U[0])){ #ifdef USE_EXCEPTION throw NurbsComputationError(); #else @@ -188,12 +188,12 @@ #endif } T u1,u2,v1,v2 ; - if(i==0 || i==P.rows()-1){ + if(i==0 || i==this->P.rows()-1){ u1 = u2 = maxAtU_[i] ; v1 = maxAtV_[j]+ nt*delta ; v2 = maxAtV_[j]- nt*delta ; - if(v1>V[V.n()-1]) v1 = V[V.n()-1] ; - if(v2this->V[this->V.n()-1]) v1 = this->V[this->V.n()-1] ; + if(v2V[0]) v2 = this->V[0] ; norm = normal(u1,v1); norm += normal(u2,v2) ; norm /= 2 ; @@ -202,8 +202,8 @@ u1 = maxAtU_[i]- nt*delta ; u2 = maxAtU_[i]+ nt*delta ; v1 = v2 = maxAtV_[j] ; - if(u1 < U[0]) u1 = U[0] ; - if(u2 > U[U.n()-1]) u2 = U[U.n()-1] ; + if(u1 < this->U[0]) u1 = this->U[0] ; + if(u2 > this->U[this->U.n()-1]) u2 = this->U[this->U.n()-1] ; T u3,v3 ; u3 = maxAtU_[i] ; @@ -212,8 +212,8 @@ else v3 = maxAtV_[j]- nt*delta ; - if(v3V[V.n()-1]) v3 = V[V.n()-1] ; + if(v3V[0]) v3 = this->V[0] ; + if(v3>this->V[this->V.n()-1]) v3 = this->V[this->V.n()-1] ; norm = normal(u1,v1); norm += normal(u2,v2) ; @@ -263,13 +263,13 @@ int sizeU, sizeV ; - sizeU = 2*degU+3 ; - if(i-degU-1<0) sizeU += i-degU-1 ; - if(i+degU+1>=P.rows()) sizeU -= i+degU+1-P.rows() ; - - sizeV = 2*degV+3 ; - if(j-degV-1<0) sizeV += j-degV-1 ; - if(j+degV+1>=P.cols()) sizeV -= j+degV+1-P.cols() ; + sizeU = 2*this->degU+3 ; + if(i-this->degU-1<0) sizeU += i-this->degU-1 ; + if(i+this->degU+1>=this->P.rows()) sizeU -= i+this->degU+1-this->P.rows() ; + + sizeV = 2*this->degV+3 ; + if(j-this->degV-1<0) sizeV += j-this->degV-1 ; + if(j+this->degV+1>=this->P.cols()) sizeV -= j+this->degV+1-this->P.cols() ; Vector u(sizeU) ; Vector v(sizeV) ; @@ -280,16 +280,16 @@ int n=0; int nu = 0 ; int nv = 0 ; - for(int k=i-degU-1;k<=i+degU+1;++k){ + for(int k=i-this->degU-1;k<=i+this->degU+1;++k){ if(k<0) continue ; - if(k>=P.rows()) + if(k>=this->P.rows()) break ; nv = 0 ; - for(int l=j-degV-1;l<=j+degV+1;++l){ + for(int l=j-this->degV-1;l<=j+this->degV+1;++l){ if(l<0) continue ; - if(l>=P.cols()) + if(l>=this->P.cols()) break ; if( k == i && j==l){ pts[n].x() = a.x() ; diff -ruh ./nurbs/nurbsS_sp.h ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h --- ./nurbs/nurbsS_sp.h 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h 2009-01-24 18:36:20.000000000 +1100 @@ -78,7 +78,7 @@ void modSurfCPby(int i, int j, const HPoint_nD& a) //!< Moves a surface point by a value - { P(i,j) += a / (maxU[i]*maxV[j]) ; } + { this->P(i,j) += a / (maxU[i]*maxV[j]) ; } void modSurfCP(int i, int j, const HPoint_nD& a) //!< Moves a surface point to a value { modSurfCPby(i,j,a-surfP(i,j)) ; } diff -ruh ./nurbs/nurbsSub.cpp ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp --- ./nurbs/nurbsSub.cpp 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -904,7 +904,7 @@ /* Allocate storage for the grid of points generated */ - CHECK( pts = new (SurfSample*)[Granularity+1]); + CHECK( pts = new SurfSample*[Granularity+1]); CHECK( pts[0] = new SurfSample[(Granularity+1)*(Granularity+1)]); for (i = 1; i <= Granularity; i++) @@ -983,7 +983,7 @@ if (! *alpha) /* Must allocate alpha */ { - CHECK( *alpha = new (T*)[k+1]); + CHECK( *alpha = new T*[k+1]); for (i = 0; i <= k; i++) CHECK( (*alpha)[i] = new T[(m + n + 1)]); } Only in ../nurbs++-3.0.11.new/: nurbs++-config Only in ../nurbs++-3.0.11.new/tests: Makefile Only in ../nurbs++-3.0.11.new/tests/matrix: .deps Only in ../nurbs++-3.0.11.new/tests/matrix: Makefile Only in ../nurbs++-3.0.11.new/tests/nurbs: .deps Only in ../nurbs++-3.0.11.new/tests/nurbs: Makefile nurbs++-linker.patch: --- NEW FILE nurbs++-linker.patch --- --- nurbs/Makefile.am 2009-07-07 22:32:45.000000000 +1000 +++ nurbs/Makefile.am.new 2009-07-07 22:33:16.000000000 +1000 @@ -44,7 +44,8 @@ lib_LTLIBRARIES = libnurbsf.la libnurbsd.la libnurbsf_la_SOURCES = $(float_sources) -libnurbsf_la_LDFLAGS = $(ldflags) +libnurbsf_la_LDFLAGS = $(ldflags) -lGL -lGLU -lmatrix -lmatrixN -lmatrixI libnurbsd_la_SOURCES = $(double_sources) -libnurbsd_la_LDFLAGS = $(ldflags) +libnurbsd_la_LDFLAGS = $(ldflags) -lmatrix -lmatrixN -lmatrixI + --- image/Makefile.am 2002-05-14 06:04:34.000000000 +1000 +++ image/Makefile.am.new 2009-07-09 00:21:55.000000000 +1000 @@ -9,4 +9,4 @@ lib_LTLIBRARIES = libmatrixI.la libmatrixI_la_SOURCES = color.cpp image_.cpp rec_filter_.cpp filter_.cpp -libmatrixI_la_LDFLAGS = -version-info 1:0:0 +libmatrixI_la_LDFLAGS = -version-info 1:0:0 -lmatrix --- numerical/Makefile.am 2002-05-14 06:04:38.000000000 +1000 +++ numerical/Makefile.am.new 2009-07-09 00:22:24.000000000 +1000 @@ -6,5 +6,5 @@ lib_LTLIBRARIES = libmatrixN.la libmatrixN_la_SOURCES = matrixMat_.cpp fft_.cpp chebexp_.cpp intccq_.cpp statistic_.cpp -libmatrixN_la_LDFLAGS = -version-info 1:0:0 +libmatrixN_la_LDFLAGS = -version-info 1:0:0 -lmatrix nurbs++-opengl-config.patch: --- NEW FILE nurbs++-opengl-config.patch --- --- config/has_opengl.m4 2002-05-18 02:03:18.000000000 +1000 +++ config/has_opengl.m4.new 2009-01-25 01:06:11.000000000 +1100 @@ -163,7 +163,7 @@ else GL_LFLAGS="-L${ac_cv_with_gl_lib}" fi - GL_LIBS="-lGLU -lGL $X_PRE_LIBS -lXext -lm" + GL_LIBS="-lGLU -lGL" AC_SUBST(GL_LIBS) AC_SUBST(GL_LFLAGS) ], --- NEW FILE nurbs++.spec --- Name: nurbs++ Version: 3.0.11 Release: 6%{?dist} Summary: Non Uniform Rational Basis Spline (NURBS) library for C++ Group: Development/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/libnurbs/ Source: http://downloads.sourceforge.net/libnurbs/%{name}-%{version}.tar.bz2 #Upstream maintenance request #https://sourceforge.net/tracker/index.php?func=detail&aid=2531392&group_id=3254&atid=103254 #Patch to fix gcc4.3 builds (template compliance problems) #Submitted to upstream tracker #https://sourceforge.net/tracker/index.php?func=detail&aid=2531330&group_id=3254&atid=303254 Patch0: %{name}-gcc4.patch #Patch to fix openGL lib finding. Patch1: %{name}-opengl-config.patch #Patch to fix gcc4.4 builds (template parameter shadowing) Patch2: %{name}-gcc4.4.patch #Patch to fix linker (non-weak symbols) Patch3: %{name}-linker.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #Note cppunit-devel is not included, as the unit tests do not build BuildRequires: autoconf BuildRequires: automake BuildRequires: libtool BuildRequires: libGL-devel BuildRequires: libGLU-devel %description A C++ library to manipulate and create NURBS curves and surfaces. Also featuring vector, matrix, and OpenGL support classes. %package devel Group: Development/Libraries License: LGPLv2 Requires: %{name} = %{version}-%{release} Requires: libGL-devel Requires: libGLU-devel Summary: Provides development files for %{name} applications %description devel Development libraries for the %{name} library. %prep %setup -q %patch0 %patch1 %patch2 %patch3 #Reconfigure to fix openGL test autoreconf -f #libtool provided is <1.5, which causes --tags to be not recognised #and build breaks. rm -f libtool ln -s `which libtool` libtool #F10 has /usr/share/libtool/ltmain.sh. #F11 has it in config subdir if [ -f /usr/share/libtool/config/ltmain.sh ] ; then cp /usr/share/libtool/config/ltmain.sh . else cp /usr/share/libtool/ltmain.sh . fi %build %configure --enable-shared --disable-static --with-opengl --with-gl-lib=%{_libdir} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make %{?_smp_mflags} %install rm -rf %{buildroot} mkdir %{buildroot} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.la rm -f %{buildroot}/%{_libdir}/*.a %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README AUTHORS %{_libdir}/libmatrix.so.* %{_libdir}/libmatrixI.so.* %{_libdir}/libmatrixN.so.* %{_libdir}/libnurbsd.so.* %{_libdir}/libnurbsf.so.* %files devel %defattr(-,root,root,-) %{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_mandir}/man1/%{name}-config.1.gz %{_libdir}/libmatrix.so %{_libdir}/libmatrixI.so %{_libdir}/libmatrixN.so %{_libdir}/libnurbsd.so %{_libdir}/libnurbsf.so %changelog * Wed Jul 08 2009 3.0.11-6 - ImageMagick is in ifdefs that are not activated - Fix more weak-link errors * Tue Jul 07 2009 3.0.11-5 - Move manpage for -config utility to devel package - Add ImageMagick support - Fixed weak-linking errors - Add linker patch - Licence to LGPLv2+ * Sat Jun 06 2009 3.0.11-4 - Patch to fix build for gcc-4.4 - Add buildrequires to fix autoreconf/libtool command missing in f11 koji * Sat Jan 24 2009 3.0.11-3 - Modified patch to enable opengl build * Sat Jan 24 2009 3.0.11-2 - Use version macro in URL name * Sat Jan 24 2009 3.0.11-1 - Initial spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:36:41 -0000 1.1 +++ .cvsignore 10 Jul 2009 14:57:23 -0000 1.2 @@ -0,0 +1 @@ +nurbs++-3.0.11.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:36:41 -0000 1.1 +++ sources 10 Jul 2009 14:57:23 -0000 1.2 @@ -0,0 +1 @@ +11aa7f2a1ae2bc3e2671d56f557fbbbf nurbs++-3.0.11.tar.bz2 From mycae at fedoraproject.org Fri Jul 10 14:59:13 2009 From: mycae at fedoraproject.org (mycae) Date: Fri, 10 Jul 2009 14:59:13 +0000 (UTC) Subject: rpms/nurbs++/F-11 import.log, NONE, 1.1 nurbs++-gcc4.4.patch, NONE, 1.1 nurbs++-gcc4.patch, NONE, 1.1 nurbs++-linker.patch, NONE, 1.1 nurbs++-opengl-config.patch, NONE, 1.1 nurbs++.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710145913.D3C5B11C0489@cvs1.fedora.phx.redhat.com> Author: mycae Update of /cvs/pkgs/rpms/nurbs++/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12975/F-11 Modified Files: .cvsignore sources Added Files: import.log nurbs++-gcc4.4.patch nurbs++-gcc4.patch nurbs++-linker.patch nurbs++-opengl-config.patch nurbs++.spec Log Message: * Initial commit --- NEW FILE import.log --- nurbs++-3_0_11-6_fc10:F-11:nurbs++-3.0.11-6.fc10.src.rpm:1247238147 nurbs++-gcc4.4.patch: --- NEW FILE nurbs++-gcc4.4.patch --- --- nurbs/nurbs.h 2009-06-06 12:17:03.000000000 +1000 +++ nurbs/nurbs.h.new 2009-06-06 12:16:55.000000000 +1000 @@ -105,8 +105,8 @@ // Basis functions T basisFun(T u, int i, int p=-1) const ; - void basisFuns(T u, int span, Vector& N) const ; - void dersBasisFuns(int n,T u, int span, Matrix& N) const; + void basisFuns(T u, int span, Vector& Nd)const ; + void dersBasisFuns(int n,T u, int span, Matrix& Nd) const; // Knot functions T minKnot() const //! the minimal value for the knot vector --- nurbs/nurbsS.cpp 2009-06-05 23:18:28.000000000 +1000 +++ nurbs/nurbsS.cpp.new 2009-06-05 23:21:09.000000000 +1000 @@ -4082,7 +4082,7 @@ char front[1024] ; - char *ext ; + const char *ext ; ext = strstr(filename,".rib") ; if(ext){ for(i=0;i<1024;++i){ --- nurbs/nurbsS.h 2009-06-06 12:18:02.000000000 +1000 +++ nurbs/nurbsS.h.new 2009-06-06 12:17:58.000000000 +1000 @@ -99,8 +99,8 @@ virtual HPoint_nD operator()(T u, T v) const ; void basisFuns(T u, T v, int spanU, int spanV, Vector& Nu, Vector& Nv) const ; - void basisFunsU(T u, int span, Vector& N) const ; - void basisFunsV(T u, int span, Vector& N) const ; + void basisFunsU(T u, int span, Vector& Nd) const ; + void basisFunsV(T u, int span, Vector& Nd) const ; void dersBasisFuns(T u, T v, int dU, int dV,int uspan, int vspan,Matrix & Niku, Matrix& Njkv ) const ; // Derivative functions @@ -135,8 +135,8 @@ int skinU(NurbsCurveArray& ca, int degU); void sweep(const NurbsCurve& t, const NurbsCurve& C, const NurbsCurve& Sv, int K,int useAy=0, int invAz=0) ; void sweep(const NurbsCurve& t, const NurbsCurve& C, int K,int useAy=0, int invAz=0) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T, double theta) ; - void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& T) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta, double theta) ; + void makeFromRevolution(const NurbsCurve& profile, const Point_nD& S, const Point_nD& Ta) ; void makeFromRevolution(const NurbsCurve& profile) ; void makeSphere(const Point_nD& O, T r) ; --- nurbs/nurbsGL.cpp 2009-06-06 15:12:23.000000000 +1000 +++ nurbs/nurbsGL.cpp.new 2009-06-06 15:12:20.000000000 +1000 @@ -1459,7 +1459,7 @@ NurbsGL* readNurbsObject(const char* filename) { NurbsGL *temp ; // guess the type of the curve first, if that doesn't work try all of them - char* ext ; + const char* ext ; //ext = strstr(filename,".n()ca") ; //if(ext){ // openByType = OPENCURVEARRAY ; nurbs++-gcc4.patch: --- NEW FILE nurbs++-gcc4.patch --- Only in ../nurbs++-3.0.11.new/config: Makefile Only in ../nurbs++-3.0.11.new/: config.log Only in ../nurbs++-3.0.11.new/: config.status Only in ../nurbs++-3.0.11.new/: Doxyfile Only in ../nurbs++-3.0.11.new/examples/image: .deps Only in ../nurbs++-3.0.11.new/examples/image: Makefile Only in ../nurbs++-3.0.11.new/examples: Makefile Only in ../nurbs++-3.0.11.new/examples/matrix: .deps Only in ../nurbs++-3.0.11.new/examples/matrix: Makefile Only in ../nurbs++-3.0.11.new/examples/numerical: .deps Only in ../nurbs++-3.0.11.new/examples/numerical: Makefile Only in ../nurbs++-3.0.11.new/examples/nurbs: .deps Only in ../nurbs++-3.0.11.new/examples/nurbs: Makefile Only in ../nurbs++-3.0.11.new/: html diff -ruh ./image/color.cpp ../nurbs++-3.0.11.new/image/color.cpp --- ./image/color.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/color.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -50,7 +50,7 @@ Color blackColor(0,0,0) ; */ - double +template<> double Matrix::norm(void) { #ifdef USE_EXCEPTION throw MatrixErr(); @@ -63,7 +63,7 @@ } #ifndef USING_VCC - int Matrix::read(char* filename,int r, int c) { + template<> int Matrix::read(char* filename,int r, int c) { ifstream fin(filename) ; if(!fin) { resize(1,1) ; @@ -89,7 +89,7 @@ } #endif - int Vector::minIndex() const { +template<> int Vector::minIndex() const { #ifdef USE_EXCEPTION throw MatrixErr() ; #else Only in ../nurbs++-3.0.11.new/image: color.lo Only in ../nurbs++-3.0.11.new/image: color.o Only in ../nurbs++-3.0.11.new/image: .deps Only in ../nurbs++-3.0.11.new/image: filter_.lo Only in ../nurbs++-3.0.11.new/image: filter_.o diff -ruh ./image/image.cpp ../nurbs++-3.0.11.new/image/image.cpp --- ./image/image.cpp 2002-05-14 07:07:45.000000000 +1000 +++ ../nurbs++-3.0.11.new/image/image.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -55,9 +55,9 @@ void MatrixImage::drawLine(int i1, int j1, int i2, int j2, T color){ int i,j ; double mx,b ; - if(i1<0 || j1<0 || i1>rows() || j1>=cols() ){ + if(i1<0 || j1<0 || i1>MatrixImage::rows() || j1>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i1,j1,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i1,j1,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -65,9 +65,9 @@ #endif return ; } - if(i2 <0 || j2<0 || i2>rows() || j2>=cols() ){ + if(i2 <0 || j2<0 || i2>MatrixImage::rows() || j2>=MatrixImage::cols() ){ #ifdef USE_EXCEPTION - throw OutOfBound2D(i2,j2,0,rows()-1,0,cols()-1) ; + throw OutOfBound2D(i2,j2,0,MatrixImage::rows()-1,0,MatrixImage::cols()-1) ; #else Error error("MatrixImage::drawLine") ; error << "Error in drawing line\n Invalid index ("<< i1 << ", " << j1 << ") to ( " << i2 << ", " << j2 << ") \n" ; @@ -79,7 +79,7 @@ // check if line is vertical if(j1==j2){ for(i=minimum(i1,i2);i<=maximum(i1,i2);i++) - operator()(i,j1) = color ; + MatrixImage:: operator()(i,j1) = color ; return ; } mx = (double)(i1-i2)/(double)(j1-j2) ; @@ -88,13 +88,13 @@ if(i1>i2){ for(i=i1;i>=i2;i--){ j = int(((double)i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(i=i1;i<=i2;i++){ j = (int)((i-b)/mx) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -102,13 +102,13 @@ if(j1>j2){ for(j=j1;j>=j2;j--){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } else{ for(j=j1;j<=j2;j++){ i = (int)(mx*j+b) ; - operator()(i,j) = color ; + MatrixImage::operator()(i,j) = color ; } } } @@ -133,9 +133,9 @@ void MatrixImage::drawPoint(int i, int j, double r , T color){ for(int y=i-int(ceil(r)) ; y=0 && y=0 && x=0 && y::rows() && x>=0 && x::cols()){ if( ((y-i)*(y-i)+(x-j)*(x-j))<= r*r) - operator()(y,x) = color ; + MatrixImage::operator()(y,x) = color ; } } } @@ -153,14 +153,14 @@ */ template void MatrixImage::store(Matrix& a){ - if(a.rows() != rows() || a.cols() != cols()) { - a.resize(rows(),cols()) ; + if(a.rows() != MatrixImage::rows() || a.cols() != MatrixImage::cols()) { + a.resize(MatrixImage::rows(),MatrixImage::cols()) ; } T *aptr, *bptr ; int size,i ; aptr = &a(0,0)-1 ; - bptr = m-1 ; - size = cols()*rows() ; + bptr = this->m-1 ; + size = MatrixImage::cols()*MatrixImage::rows() ; for(i=0;iP.cols()) ; + maxAtV_.resize(this->P.cols()) ; + for(int i=0;iP.cols();++i){ + if(!maxInfluence(i,this->V,this->degV,maxAtV_[i])) cerr << "Problem in maxInfluence V!\n" ; - maxV[i] = nurbsBasisFun(maxAtV_[i],i,degV,V) ; + maxV[i] = nurbsBasisFun(maxAtV_[i],i,this->degV,this->V) ; } } @@ -124,11 +124,11 @@ NurbsSurfaceSP NurbsSurfaceSP::generateParallel(T d) const { NurbsSurfaceSP p(*this) ; - Vector< Point_nD > offset(P.rows()*P.cols()) ; - Vector ur(P.rows()*P.cols()) ; - Vector vr(P.rows()*P.cols()) ; - Vector_INT Du(P.rows()*P.cols()) ; - Vector_INT Dv(P.rows()*P.cols()) ; + Vector< Point_nD > offset(this->P.rows()*this->P.cols()) ; + Vector ur(this->P.rows()*this->P.cols()) ; + Vector vr(this->P.rows()*this->P.cols()) ; + Vector_INT Du(this->P.rows()*this->P.cols()) ; + Vector_INT Dv(this->P.rows()*this->P.cols()) ; Du.reset(0) ; Dv.reset(0) ; @@ -137,8 +137,8 @@ no = 0 ; - for(i=0;iP.rows();++i) + for(j=0;jP.cols();++j){ Point_nD norm ; norm = normal(maxAtU_[i],maxAtV_[j]) ; if(norm.x() == T(0) && @@ -155,19 +155,19 @@ norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==P.cols()-1){ + if(i==this->P.rows()-1 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]-delta) ; norm /= T(2) ; ok = 1 ; } - if(i==0 && j==P.cols()-1){ + if(i==0 && j==this->P.cols()-1){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; ok = 1 ; } - if(i==P.rows()-1 && j==0){ + if(i==this->P.rows()-1 && j==0){ norm = normal(maxAtU_[i]-delta,maxAtV_[j]) ; norm += normal(maxAtU_[i],maxAtV_[j]+delta) ; norm /= T(2) ; @@ -178,7 +178,7 @@ while(norm.x() == T(0) && norm.y() == T(0) && norm.z() == T(0)){ - if( nt*d >(U[U.n()-1]-U[0])){ + if( nt*d >(this->U[this->U.n()-1]-this->U[0])){ #ifdef USE_EXCEPTION throw NurbsComputationError(); #else @@ -188,12 +188,12 @@ #endif } T u1,u2,v1,v2 ; - if(i==0 || i==P.rows()-1){ + if(i==0 || i==this->P.rows()-1){ u1 = u2 = maxAtU_[i] ; v1 = maxAtV_[j]+ nt*delta ; v2 = maxAtV_[j]- nt*delta ; - if(v1>V[V.n()-1]) v1 = V[V.n()-1] ; - if(v2this->V[this->V.n()-1]) v1 = this->V[this->V.n()-1] ; + if(v2V[0]) v2 = this->V[0] ; norm = normal(u1,v1); norm += normal(u2,v2) ; norm /= 2 ; @@ -202,8 +202,8 @@ u1 = maxAtU_[i]- nt*delta ; u2 = maxAtU_[i]+ nt*delta ; v1 = v2 = maxAtV_[j] ; - if(u1 < U[0]) u1 = U[0] ; - if(u2 > U[U.n()-1]) u2 = U[U.n()-1] ; + if(u1 < this->U[0]) u1 = this->U[0] ; + if(u2 > this->U[this->U.n()-1]) u2 = this->U[this->U.n()-1] ; T u3,v3 ; u3 = maxAtU_[i] ; @@ -212,8 +212,8 @@ else v3 = maxAtV_[j]- nt*delta ; - if(v3V[V.n()-1]) v3 = V[V.n()-1] ; + if(v3V[0]) v3 = this->V[0] ; + if(v3>this->V[this->V.n()-1]) v3 = this->V[this->V.n()-1] ; norm = normal(u1,v1); norm += normal(u2,v2) ; @@ -263,13 +263,13 @@ int sizeU, sizeV ; - sizeU = 2*degU+3 ; - if(i-degU-1<0) sizeU += i-degU-1 ; - if(i+degU+1>=P.rows()) sizeU -= i+degU+1-P.rows() ; - - sizeV = 2*degV+3 ; - if(j-degV-1<0) sizeV += j-degV-1 ; - if(j+degV+1>=P.cols()) sizeV -= j+degV+1-P.cols() ; + sizeU = 2*this->degU+3 ; + if(i-this->degU-1<0) sizeU += i-this->degU-1 ; + if(i+this->degU+1>=this->P.rows()) sizeU -= i+this->degU+1-this->P.rows() ; + + sizeV = 2*this->degV+3 ; + if(j-this->degV-1<0) sizeV += j-this->degV-1 ; + if(j+this->degV+1>=this->P.cols()) sizeV -= j+this->degV+1-this->P.cols() ; Vector u(sizeU) ; Vector v(sizeV) ; @@ -280,16 +280,16 @@ int n=0; int nu = 0 ; int nv = 0 ; - for(int k=i-degU-1;k<=i+degU+1;++k){ + for(int k=i-this->degU-1;k<=i+this->degU+1;++k){ if(k<0) continue ; - if(k>=P.rows()) + if(k>=this->P.rows()) break ; nv = 0 ; - for(int l=j-degV-1;l<=j+degV+1;++l){ + for(int l=j-this->degV-1;l<=j+this->degV+1;++l){ if(l<0) continue ; - if(l>=P.cols()) + if(l>=this->P.cols()) break ; if( k == i && j==l){ pts[n].x() = a.x() ; diff -ruh ./nurbs/nurbsS_sp.h ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h --- ./nurbs/nurbsS_sp.h 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsS_sp.h 2009-01-24 18:36:20.000000000 +1100 @@ -78,7 +78,7 @@ void modSurfCPby(int i, int j, const HPoint_nD& a) //!< Moves a surface point by a value - { P(i,j) += a / (maxU[i]*maxV[j]) ; } + { this->P(i,j) += a / (maxU[i]*maxV[j]) ; } void modSurfCP(int i, int j, const HPoint_nD& a) //!< Moves a surface point to a value { modSurfCPby(i,j,a-surfP(i,j)) ; } diff -ruh ./nurbs/nurbsSub.cpp ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp --- ./nurbs/nurbsSub.cpp 2002-05-14 07:07:46.000000000 +1000 +++ ../nurbs++-3.0.11.new/nurbs/nurbsSub.cpp 2009-01-24 18:36:20.000000000 +1100 @@ -904,7 +904,7 @@ /* Allocate storage for the grid of points generated */ - CHECK( pts = new (SurfSample*)[Granularity+1]); + CHECK( pts = new SurfSample*[Granularity+1]); CHECK( pts[0] = new SurfSample[(Granularity+1)*(Granularity+1)]); for (i = 1; i <= Granularity; i++) @@ -983,7 +983,7 @@ if (! *alpha) /* Must allocate alpha */ { - CHECK( *alpha = new (T*)[k+1]); + CHECK( *alpha = new T*[k+1]); for (i = 0; i <= k; i++) CHECK( (*alpha)[i] = new T[(m + n + 1)]); } Only in ../nurbs++-3.0.11.new/: nurbs++-config Only in ../nurbs++-3.0.11.new/tests: Makefile Only in ../nurbs++-3.0.11.new/tests/matrix: .deps Only in ../nurbs++-3.0.11.new/tests/matrix: Makefile Only in ../nurbs++-3.0.11.new/tests/nurbs: .deps Only in ../nurbs++-3.0.11.new/tests/nurbs: Makefile nurbs++-linker.patch: --- NEW FILE nurbs++-linker.patch --- --- nurbs/Makefile.am 2009-07-07 22:32:45.000000000 +1000 +++ nurbs/Makefile.am.new 2009-07-07 22:33:16.000000000 +1000 @@ -44,7 +44,8 @@ lib_LTLIBRARIES = libnurbsf.la libnurbsd.la libnurbsf_la_SOURCES = $(float_sources) -libnurbsf_la_LDFLAGS = $(ldflags) +libnurbsf_la_LDFLAGS = $(ldflags) -lGL -lGLU -lmatrix -lmatrixN -lmatrixI libnurbsd_la_SOURCES = $(double_sources) -libnurbsd_la_LDFLAGS = $(ldflags) +libnurbsd_la_LDFLAGS = $(ldflags) -lmatrix -lmatrixN -lmatrixI + --- image/Makefile.am 2002-05-14 06:04:34.000000000 +1000 +++ image/Makefile.am.new 2009-07-09 00:21:55.000000000 +1000 @@ -9,4 +9,4 @@ lib_LTLIBRARIES = libmatrixI.la libmatrixI_la_SOURCES = color.cpp image_.cpp rec_filter_.cpp filter_.cpp -libmatrixI_la_LDFLAGS = -version-info 1:0:0 +libmatrixI_la_LDFLAGS = -version-info 1:0:0 -lmatrix --- numerical/Makefile.am 2002-05-14 06:04:38.000000000 +1000 +++ numerical/Makefile.am.new 2009-07-09 00:22:24.000000000 +1000 @@ -6,5 +6,5 @@ lib_LTLIBRARIES = libmatrixN.la libmatrixN_la_SOURCES = matrixMat_.cpp fft_.cpp chebexp_.cpp intccq_.cpp statistic_.cpp -libmatrixN_la_LDFLAGS = -version-info 1:0:0 +libmatrixN_la_LDFLAGS = -version-info 1:0:0 -lmatrix nurbs++-opengl-config.patch: --- NEW FILE nurbs++-opengl-config.patch --- --- config/has_opengl.m4 2002-05-18 02:03:18.000000000 +1000 +++ config/has_opengl.m4.new 2009-01-25 01:06:11.000000000 +1100 @@ -163,7 +163,7 @@ else GL_LFLAGS="-L${ac_cv_with_gl_lib}" fi - GL_LIBS="-lGLU -lGL $X_PRE_LIBS -lXext -lm" + GL_LIBS="-lGLU -lGL" AC_SUBST(GL_LIBS) AC_SUBST(GL_LFLAGS) ], --- NEW FILE nurbs++.spec --- Name: nurbs++ Version: 3.0.11 Release: 6%{?dist} Summary: Non Uniform Rational Basis Spline (NURBS) library for C++ Group: Development/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/libnurbs/ Source: http://downloads.sourceforge.net/libnurbs/%{name}-%{version}.tar.bz2 #Upstream maintenance request #https://sourceforge.net/tracker/index.php?func=detail&aid=2531392&group_id=3254&atid=103254 #Patch to fix gcc4.3 builds (template compliance problems) #Submitted to upstream tracker #https://sourceforge.net/tracker/index.php?func=detail&aid=2531330&group_id=3254&atid=303254 Patch0: %{name}-gcc4.patch #Patch to fix openGL lib finding. Patch1: %{name}-opengl-config.patch #Patch to fix gcc4.4 builds (template parameter shadowing) Patch2: %{name}-gcc4.4.patch #Patch to fix linker (non-weak symbols) Patch3: %{name}-linker.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #Note cppunit-devel is not included, as the unit tests do not build BuildRequires: autoconf BuildRequires: automake BuildRequires: libtool BuildRequires: libGL-devel BuildRequires: libGLU-devel %description A C++ library to manipulate and create NURBS curves and surfaces. Also featuring vector, matrix, and OpenGL support classes. %package devel Group: Development/Libraries License: LGPLv2 Requires: %{name} = %{version}-%{release} Requires: libGL-devel Requires: libGLU-devel Summary: Provides development files for %{name} applications %description devel Development libraries for the %{name} library. %prep %setup -q %patch0 %patch1 %patch2 %patch3 #Reconfigure to fix openGL test autoreconf -f #libtool provided is <1.5, which causes --tags to be not recognised #and build breaks. rm -f libtool ln -s `which libtool` libtool #F10 has /usr/share/libtool/ltmain.sh. #F11 has it in config subdir if [ -f /usr/share/libtool/config/ltmain.sh ] ; then cp /usr/share/libtool/config/ltmain.sh . else cp /usr/share/libtool/ltmain.sh . fi %build %configure --enable-shared --disable-static --with-opengl --with-gl-lib=%{_libdir} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make %{?_smp_mflags} %install rm -rf %{buildroot} mkdir %{buildroot} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/image/.libs/:`pwd`/matrix/.libs/:`pwd`/numerical/.libs/ make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.la rm -f %{buildroot}/%{_libdir}/*.a %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README AUTHORS %{_libdir}/libmatrix.so.* %{_libdir}/libmatrixI.so.* %{_libdir}/libmatrixN.so.* %{_libdir}/libnurbsd.so.* %{_libdir}/libnurbsf.so.* %files devel %defattr(-,root,root,-) %{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_mandir}/man1/%{name}-config.1.gz %{_libdir}/libmatrix.so %{_libdir}/libmatrixI.so %{_libdir}/libmatrixN.so %{_libdir}/libnurbsd.so %{_libdir}/libnurbsf.so %changelog * Wed Jul 08 2009 3.0.11-6 - ImageMagick is in ifdefs that are not activated - Fix more weak-link errors * Tue Jul 07 2009 3.0.11-5 - Move manpage for -config utility to devel package - Add ImageMagick support - Fixed weak-linking errors - Add linker patch - Licence to LGPLv2+ * Sat Jun 06 2009 3.0.11-4 - Patch to fix build for gcc-4.4 - Add buildrequires to fix autoreconf/libtool command missing in f11 koji * Sat Jan 24 2009 3.0.11-3 - Modified patch to enable opengl build * Sat Jan 24 2009 3.0.11-2 - Use version macro in URL name * Sat Jan 24 2009 3.0.11-1 - Initial spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:36:41 -0000 1.1 +++ .cvsignore 10 Jul 2009 14:59:12 -0000 1.2 @@ -0,0 +1 @@ +nurbs++-3.0.11.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:36:41 -0000 1.1 +++ sources 10 Jul 2009 14:59:13 -0000 1.2 @@ -0,0 +1 @@ +11aa7f2a1ae2bc3e2671d56f557fbbbf nurbs++-3.0.11.tar.bz2 From mbarnes at fedoraproject.org Fri Jul 10 15:03:47 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 10 Jul 2009 15:03:47 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.399,1.400 Message-ID: <20090710150347.BDAA011C0489@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14645 Modified Files: evolution.spec Log Message: * Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 - Add an evolution-pst subpackage for the PST importer plugin. - Disabled until libpst settles on an API. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.399 retrieving revision 1.400 diff -u -p -r1.399 -r1.400 --- evolution.spec 2 Jul 2009 21:22:17 -0000 1.399 +++ evolution.spec 10 Jul 2009 15:03:47 -0000 1.400 @@ -22,6 +22,7 @@ %define inline_audio_support 1 %define ldap_support 1 %define libnotify_support 1 +%define libpst_support 1 %define krb5_support 1 %define nntp_support 1 %ifnarch s390 s390x @@ -42,7 +43,7 @@ Name: evolution Version: 2.27.3 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -112,11 +113,9 @@ BuildRequires: libbonoboui-devel >= %{li BuildRequires: libgnomecanvas-devel >= 2.0 BuildRequires: libgnomeui-devel >= 2.0 BuildRequires: libgweather-devel >= %{libgweather_version} -#BuildRequires: libpst-devel BuildRequires: libsoup-devel >= %{soup_version} BuildRequires: libtool >= 1.5 BuildRequires: libxml2-devel -#BuildRequires: libytnef-devel BuildRequires: pkgconfig %if %{use_mozilla_nss} @@ -154,6 +153,11 @@ BuildRequires: NetworkManager-glib-devel BuildRequires: libnotify-devel %endif +%if %{libpst_support} +BuildRequires: libpst-devel +BuildRequires: libytnef-devel +%endif + %description Evolution is the GNOME mailer, calendar, contact manager and communications tool. The components which make up Evolution @@ -223,6 +227,19 @@ Requires: %{name} = %{version}-%{release %description perl This package contains supplemental utilities for %{name} that require Perl. +%if %{libpst_support} +%package pst +Group: Applications/Productivity +Summary: PST importer plugin for Evolution +Requires: %{name} = %{version}-%{release} +Requires: libpst +Requires: libytnef + +%description pst +This package contains the plugin to import Microsoft Personal Storage Table +(PST) files used by Microsoft Outlook and Microsoft Exchange. +%endif + %prep %setup -q -n evolution-%{version} %patch10 -p1 -b .ldaphack @@ -676,7 +693,18 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/csv2vcard %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean +%if %{libpst_support} +%files pst +%defattr(-, root, root) +%{evo_plugin_dir}/org-gnome-pst-import.eplug +%{evo_plugin_dir}/liborg-gnome-pst-import.so +%endif + %changelog +* Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 +- Add an evolution-pst subpackage for the PST importer plugin. +- Disabled until libpst settles on an API. + * Thu Jul 02 2009 Matthew Barnes - 2.27.3-4.fc12 - Add BR for libpst-devel and libytnef-devel (RH bug #493049). - Add patch to build pst-import plugin against current libpst. From pkgdb at fedoraproject.org Fri Jul 10 15:05:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 15:05:52 +0000 Subject: [pkgdb] python-repoze-what-plugins-sql was added for lmacken Message-ID: <20090710150552.4777710F897@bastion2.fedora.phx.redhat.com> spot has added Package python-repoze-what-plugins-sql with summary The repoze.what SQL plugin spot has approved Package python-repoze-what-plugins-sql spot has added a Fedora devel branch for python-repoze-what-plugins-sql with an owner of lmacken spot has approved python-repoze-what-plugins-sql in Fedora devel spot has approved Package python-repoze-what-plugins-sql spot has set commit to Approved for 107427 on python-repoze-what-plugins-sql (Fedora devel) spot has set checkout to Approved for 107427 on python-repoze-what-plugins-sql (Fedora devel) spot has set build to Approved for 107427 on python-repoze-what-plugins-sql (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-plugins-sql From pkgdb at fedoraproject.org Fri Jul 10 15:05:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 15:05:53 +0000 Subject: [pkgdb] python-repoze-what-plugins-sql summary updated by spot Message-ID: <20090710150553.7A80D10F89B@bastion2.fedora.phx.redhat.com> spot set package python-repoze-what-plugins-sql summary to The repoze.what SQL plugin To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-plugins-sql From pkgdb at fedoraproject.org Fri Jul 10 15:05:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 15:05:53 +0000 Subject: [pkgdb] python-repoze-what-plugins-sql (Fedora EPEL, 5) updated by spot Message-ID: <20090710150553.8052110F8A6@bastion2.fedora.phx.redhat.com> spot added a Fedora 11 branch for python-repoze-what-plugins-sql spot has set commit to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 11) spot has set checkout to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 11) spot has set build to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-plugins-sql From pkgdb at fedoraproject.org Fri Jul 10 15:05:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 15:05:53 +0000 Subject: [pkgdb] python-repoze-what-plugins-sql (Fedora EPEL, 5) updated by spot Message-ID: <20090710150553.88E7B10F8A9@bastion2.fedora.phx.redhat.com> spot added a Fedora EPEL 5 branch for python-repoze-what-plugins-sql spot has set commit to Approved for 107427 on python-repoze-what-plugins-sql (Fedora EPEL 5) spot has set checkout to Approved for 107427 on python-repoze-what-plugins-sql (Fedora EPEL 5) spot has set build to Approved for 107427 on python-repoze-what-plugins-sql (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-plugins-sql From pkgdb at fedoraproject.org Fri Jul 10 15:05:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 15:05:53 +0000 Subject: [pkgdb] python-repoze-what-plugins-sql (Fedora EPEL, 5) updated by spot Message-ID: <20090710150553.9358910F8AC@bastion2.fedora.phx.redhat.com> spot added a Fedora 10 branch for python-repoze-what-plugins-sql spot has set commit to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 10) spot has set checkout to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 10) spot has set build to Approved for 107427 on python-repoze-what-plugins-sql (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-plugins-sql From mbarnes at fedoraproject.org Fri Jul 10 15:19:28 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 10 Jul 2009 15:19:28 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.400,1.401 Message-ID: <20090710151928.2C5B011C0489@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21729 Modified Files: evolution.spec Log Message: Actually disable the PST importer. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.400 retrieving revision 1.401 diff -u -p -r1.400 -r1.401 --- evolution.spec 10 Jul 2009 15:03:47 -0000 1.400 +++ evolution.spec 10 Jul 2009 15:19:27 -0000 1.401 @@ -22,7 +22,7 @@ %define inline_audio_support 1 %define ldap_support 1 %define libnotify_support 1 -%define libpst_support 1 +%define libpst_support 0 %define krb5_support 1 %define nntp_support 1 %ifnarch s390 s390x From spot at fedoraproject.org Fri Jul 10 15:22:11 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:22:11 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql - New directory Message-ID: <20090710152211.15B5011C0489@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsO23255/rpms/python-repoze-what-plugins-sql Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-plugins-sql added to the repository From spot at fedoraproject.org Fri Jul 10 15:22:11 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:22:11 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/devel - New directory Message-ID: <20090710152211.4711111C049A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsO23255/rpms/python-repoze-what-plugins-sql/devel Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel added to the repository From spot at fedoraproject.org Fri Jul 10 15:22:16 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:22:16 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql Makefile,NONE,1.1 Message-ID: <20090710152216.8D0A711C0489@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsO23255/rpms/python-repoze-what-plugins-sql Added Files: Makefile Log Message: Setup of module python-repoze-what-plugins-sql --- NEW FILE Makefile --- # Top level Makefile for module python-repoze-what-plugins-sql all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From spot at fedoraproject.org Fri Jul 10 15:22:16 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:22:16 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710152216.C80AC11C0489@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsO23255/rpms/python-repoze-what-plugins-sql/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-repoze-what-plugins-sql --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-repoze-what-plugins-sql # $Id: Makefile,v 1.1 2009/07/10 15:22:16 spot Exp $ NAME := python-repoze-what-plugins-sql SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From twaugh at fedoraproject.org Fri Jul 10 15:23:15 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 10 Jul 2009 15:23:15 +0000 (UTC) Subject: rpms/cups/F-11 cups.spec,1.482,1.483 Message-ID: <20090710152315.8E34E11C0489@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23603 Modified Files: cups.spec Log Message: * Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 - Build does not require aspell-devel (bug #510405). Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.482 retrieving revision 1.483 diff -u -p -r1.482 -r1.483 --- cups.spec 1 Jul 2009 13:12:34 -0000 1.482 +++ cups.spec 10 Jul 2009 15:22:45 -0000 1.483 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.7%{?dist} +Release: 0.%{pre}.8%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -76,7 +76,7 @@ BuildPrereq: pam-devel pkgconfig BuildPrereq: gnutls-devel libacl-devel BuildRequires: openldap-devel BuildRequires: make >= 1:3.80 -BuildRequires: php-devel, aspell-devel, pcre-devel +BuildRequires: php-devel, pcre-devel BuildRequires: libjpeg-devel BuildRequires: libpng-devel BuildRequires: libtiff-devel @@ -476,6 +476,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 +- Build does not require aspell-devel (bug #510405). + * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.7 - Fixed template problem preventing current printer option defaults from being shown in the web interface (bug #506794, STR #3244). From twaugh at fedoraproject.org Fri Jul 10 15:26:19 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 10 Jul 2009 15:26:19 +0000 (UTC) Subject: rpms/cups/devel cups.spec,1.481,1.482 Message-ID: <20090710152619.A041011C0489@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25589 Modified Files: cups.spec Log Message: * Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 - Build does not require aspell-devel (bug #510405). Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.481 retrieving revision 1.482 diff -u -p -r1.481 -r1.482 --- cups.spec 1 Jul 2009 13:13:02 -0000 1.481 +++ cups.spec 10 Jul 2009 15:26:18 -0000 1.482 @@ -7,7 +7,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.7%{?dist} +Release: 0.%{pre}.8%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -76,7 +76,7 @@ BuildPrereq: pam-devel pkgconfig BuildPrereq: gnutls-devel libacl-devel BuildRequires: openldap-devel BuildRequires: make >= 1:3.80 -BuildRequires: php-devel, aspell-devel, pcre-devel +BuildRequires: php-devel, pcre-devel BuildRequires: libjpeg-devel BuildRequires: libpng-devel BuildRequires: libtiff-devel @@ -476,6 +476,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/php/modules/*.so %changelog +* Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 +- Build does not require aspell-devel (bug #510405). + * Wed Jul 1 2009 Tim Waugh 1:1.4-0.rc1.7 - Fixed template problem preventing current printer option defaults from being shown in the web interface (bug #506794, STR #3244). From lmacken at fedoraproject.org Fri Jul 10 15:27:22 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:27:22 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/devel import.log, NONE, 1.1 python-repoze-what-plugins-sql-setuptools.patch, NONE, 1.1 python-repoze-what-plugins-sql.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710152722.672F711C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26266/devel Modified Files: .cvsignore sources Added Files: import.log python-repoze-what-plugins-sql-setuptools.patch python-repoze-what-plugins-sql.spec Log Message: Initial commit of python-repoze-what-plugins-sql --- NEW FILE import.log --- python-repoze-what-plugins-sql-1_0-0_4_rc1_fc10:HEAD:python-repoze-what-plugins-sql-1.0-0.4.rc1.fc10.src.rpm:1247225066 python-repoze-what-plugins-sql-setuptools.patch: --- NEW FILE python-repoze-what-plugins-sql-setuptools.patch --- --- setup.py.orig 2009-06-05 07:44:02.000000000 -0400 +++ setup.py 2009-06-05 07:44:06.000000000 -0400 @@ -17,9 +17,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-plugins-sql.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define rcver rc1 Name: python-repoze-what-plugins-sql Version: 1.0 Release: 0.4.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what.plugins.sql/ Source0: http://pypi.python.org/packages/source/r/repoze.what.plugins.sql/repoze.what.plugins.sql-%{version}%{rcver}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what BuildRequires: python-sqlalchemy0.5 Requires: python-repoze-what >= 1.0.3 Requires: python-sqlalchemy0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa %description This is an adapters and extras plugin for repoze.what. The SQL plugin makes repoze.what support sources defined in SQLAlchemy-managed databases by providing one group adapter, one permission adapter and one utility to configure both in one go (optionally, when the group source and the permission source have a relationship). This plugin also defines repoze.what.plugins.quickstart. %prep %setup -q -n repoze.what.plugins.sql-%{version}%{rcver} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Wed Jun 17 2009 Luke Macken - 1.0-0.4.rc1 - Require python-sqlalchemy0.5 * Fri Jun 05 2009 Luke Macken - 1.0-0.3.rc1 - Patch our setup.py to use our own setuptools package * Sat May 30 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 * Tue Jan 06 2009 Luke Macken - 1.0-0.1.a1.r3024 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 15:22:16 -0000 1.1 +++ .cvsignore 10 Jul 2009 15:27:22 -0000 1.2 @@ -0,0 +1 @@ +repoze.what.plugins.sql-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 15:22:16 -0000 1.1 +++ sources 10 Jul 2009 15:27:22 -0000 1.2 @@ -0,0 +1 @@ +0e3da6fed2c2d74732cbd8323476b21b repoze.what.plugins.sql-1.0rc1.tar.gz From lmacken at fedoraproject.org Fri Jul 10 15:33:53 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:33:53 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/devel python-repoze-what-plugins-sql.spec, 1.1, 1.2 Message-ID: <20090710153353.60CC911C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28684 Modified Files: python-repoze-what-plugins-sql.spec Log Message: Remove the sqlalchemy0.5 requirement for rawhide Index: python-repoze-what-plugins-sql.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel/python-repoze-what-plugins-sql.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what-plugins-sql.spec 10 Jul 2009 15:27:22 -0000 1.1 +++ python-repoze-what-plugins-sql.spec 10 Jul 2009 15:33:23 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-what-plugins-sql Version: 1.0 -Release: 0.4.%{rcver}%{?dist} +Release: 0.5.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages @@ -18,10 +18,10 @@ BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what -BuildRequires: python-sqlalchemy0.5 +BuildRequires: python-sqlalchemy >= 0.5 Requires: python-repoze-what >= 1.0.3 -Requires: python-sqlalchemy0.5 +Requires: python-sqlalchemy >= 0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 +- Remove the sqlalchemy0.5 requirement for rawhide + * Wed Jun 17 2009 Luke Macken - 1.0-0.4.rc1 - Require python-sqlalchemy0.5 From mbarnes at fedoraproject.org Fri Jul 10 15:35:27 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 10 Jul 2009 15:35:27 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.401,1.402 Message-ID: <20090710153527.C80CA11C0489@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29395 Modified Files: evolution.spec Log Message: Fix a typo. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.401 retrieving revision 1.402 diff -u -p -r1.401 -r1.402 --- evolution.spec 10 Jul 2009 15:19:27 -0000 1.401 +++ evolution.spec 10 Jul 2009 15:35:27 -0000 1.402 @@ -330,7 +330,7 @@ make %{?_smp_mflags} LIBTOOL=/usr/bin/li cd po grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" POTFILES.in > POTFILES.keep mv POTFILES.keep POTFILES.in -intltool-update --gettext-package=%{name}-%{evo-major} --pot +intltool-update --gettext-package=%{name}-%{evo_major} --pot for p in *.po; do msgmerge $p %{name}-%{evo_major}.pot > $p.out msgfmt -o `basename $p .po`.gmo $p.out From linville at fedoraproject.org Fri Jul 10 15:36:48 2009 From: linville at fedoraproject.org (John W. Linville) Date: Fri, 10 Jul 2009 15:36:48 +0000 (UTC) Subject: rpms/iwl4965-firmware/devel .cvsignore, 1.3, 1.4 iwl4965-firmware.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090710153648.0AE9F11C0489@cvs1.fedora.phx.redhat.com> Author: linville Update of /cvs/pkgs/rpms/iwl4965-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30154 Modified Files: .cvsignore iwl4965-firmware.spec sources Log Message: Update v2 to 228.61.2.24 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 18 Dec 2007 12:23:44 -0000 1.3 +++ .cvsignore 10 Jul 2009 15:36:47 -0000 1.4 @@ -1,2 +1,2 @@ -iwlwifi-4965-ucode-4.44.17.tgz -iwlwifi-4965-ucode-4.44.1.20.tgz +iwlwifi-4965-ucode-228.57.1.21.tgz +iwlwifi-4965-ucode-228.61.2.24.tgz Index: iwl4965-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/devel/iwl4965-firmware.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- iwl4965-firmware.spec 14 Apr 2009 17:33:30 -0000 1.8 +++ iwl4965-firmware.spec 10 Jul 2009 15:36:47 -0000 1.9 @@ -1,10 +1,10 @@ %define iwl4965_v1 228.57.1.21 -%define iwl4965_v2 228.57.2.23 +%define iwl4965_v2 228.61.2.24 %define iwl4965_list %{iwl4965_v1} %{iwl4965_v2} Name: iwl4965-firmware Version: %{iwl4965_v2} -Release: 5%{?dist} +Release: 1%{?dist} Summary: Firmware for Intel?? PRO/Wireless 4965 A/G/N network adaptors Group: System Environment/Kernel @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Apr 14 2009 John W. Linville - 228.61.2.24-1 +- Update v2 to 228.61.2.24 + * Tue Apr 14 2009 kwizart < kwizart at gmail.com > - 228.57.2.23-5 - Reintroduce dist tag Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 14 Apr 2009 16:55:55 -0000 1.5 +++ sources 10 Jul 2009 15:36:47 -0000 1.6 @@ -1,2 +1,2 @@ bce5a13d681100aeee2ddac3beaff437 iwlwifi-4965-ucode-228.57.1.21.tgz -505390a555b88c8b6b23057cebec4ad1 iwlwifi-4965-ucode-228.57.2.23.tgz +2531028773cfc22aca5539c734f2a241 iwlwifi-4965-ucode-228.61.2.24.tgz From spot at fedoraproject.org Fri Jul 10 15:38:23 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:38:23 +0000 (UTC) Subject: rpms/rpy/devel rpy.spec,1.41,1.42 Message-ID: <20090710153823.2191C11C0489@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/rpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30869 Modified Files: rpy.spec Log Message: fix broken build Index: rpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpy/devel/rpy.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- rpy.spec 9 Jul 2009 21:26:45 -0000 1.41 +++ rpy.spec 10 Jul 2009 15:37:52 -0000 1.42 @@ -4,7 +4,7 @@ Name: rpy Summary: Python interface to the R language Version: 2.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Url: http://rpy.sourceforge.net Source: http://downloads.sf.net/%{name}/%{name}2-%{version}.tar.gz License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -34,7 +34,11 @@ env CFLAGS="$RPM_OPT_FLAGS" python setup %install rm -rf $RPM_BUILD_ROOT python setup.py install -O1 --skip-build --root=$RPM_BUILD_ROOT +%if 0%{?__isa_bits} = 64 +%ifnarch ia64 mv %{buildroot}/usr/lib/python2.6/site-packages/rpy2/images %{buildroot}%{python_sitearch}/rpy2/ +%endif +%endif %clean rm -rf $RPM_BUILD_ROOT @@ -46,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/rpy2-%{version}*.egg-info %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 2.0.6-2 +- images are only installed incorrectly on 64bit platforms that aren't ia64 + * Thu Jul 9 2009 Tom "spot" Callaway - 2.0.6-1 - rebuild for R 2.9.1 - update to rpy2 2.0.6 From lmacken at fedoraproject.org Fri Jul 10 15:20:43 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:20:43 +0000 (UTC) Subject: rpms/nethack/devel nethack.spec,1.26,1.27 Message-ID: <20090710152043.A192F11C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/nethack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22275 Modified Files: nethack.spec Log Message: * Fri Jul 10 2009 Luke Macken - 3.4.3-21 - Apply a patch from Iain Arnell to update our spec to comply with the new font packaging guidelines (#505613) Index: nethack.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethack/devel/nethack.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- nethack.spec 26 Feb 2009 05:14:43 -0000 1.26 +++ nethack.spec 10 Jul 2009 15:20:13 -0000 1.27 @@ -1,9 +1,11 @@ -%define nhgamedir /usr/games/nethack-3.4.3 -%define nhdatadir /var/games/nethack +%global nhgamedir /usr/games/nethack-3.4.3 +%global nhdatadir /var/games/nethack + +%global fontname nethack-bitmap Name: nethack Version: 3.4.3 -Release: 20%{?dist} +Release: 21%{?dist} Summary: A rogue-like single player dungeon exploration game Group: Amusements/Games @@ -16,14 +18,13 @@ Patch1: %{name}-%{version}-confi Patch2: %{name}-%{version}-x11.patch Patch3: %{name}-%{version}-guidebook.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires(post): xorg-x11-font-utils -Requires(post): coreutils -Requires(preun): coreutils +Requires: %{fontname}-fonts-core BuildRequires: ncurses-devel BuildRequires: bison, flex, desktop-file-utils BuildRequires: bdftopcf, mkfontdir, libX11-devel, libXaw-devel, libXext-devel BuildRequires: libXmu-devel, libXpm-devel, libXt-devel +BuildRequires: fontpackages-devel %description @@ -42,6 +43,29 @@ and its denizens to be discovered by the characters: you can pick your race, your role, and your gender. +%package -n %{fontname}-fonts +Summary: Bitmap fonts for Nethack +Group: User Interface/X +BuildArch: noarch +Requires: fontpackages-filesystem + +%description -n %{fontname}-fonts +Bitmap fonts for Nethack. + +%package -n %{fontname}-fonts-core +Summary: X11 core fonts configuration for %{fontname} +Group: User Interface/X +BuildArch: noarch +Requires: %{fontname}-fonts +Requires(post): %{fontname}-fonts +Requires(post): xorg-x11-font-utils +Requires(post): coreutils +Requires(preun): coreutils + +%description -n %{fontname}-fonts-core +X11 core fonts configuration for %{fontname}. + + %prep %setup -q %patch0 -b .makefile @@ -97,21 +121,24 @@ desktop-file-install \ cd win/X11 bdftopcf -o nh10.pcf nh10.bdf bdftopcf -o ibm.pcf ibm.bdf -install -D -p -m 644 ibm.pcf $RPM_BUILD_ROOT%{nhgamedir}/fonts/ibm.pcf -install -D -p -m 644 nh10.pcf $RPM_BUILD_ROOT%{nhgamedir}/fonts/nh10.pcf +install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir} +install -m 0644 -p *.pcf $RPM_BUILD_ROOT%{_fontdir} %{__sed} -i -e 's:^!\(NetHack.tile_file.*\):\1:' \ $RPM_BUILD_ROOT%{nhgamedir}/NetHack.ad -%post -mkfontdir %{nhgamedir}/fonts + +%post -n %{fontname}-fonts-core +mkfontdir %{_fontdir} if [ ! -L /etc/X11/fontpath.d/nethack ] ; then - ln -s %{nhgamedir}/fonts /etc/X11/fontpath.d/nethack + ln -s %{_fontdir} /etc/X11/fontpath.d/nethack fi -%preun -rm /etc/X11/fontpath.d/nethack -rm %{nhgamedir}/fonts/fonts.dir +%preun -n %{fontname}-fonts-core +if [ $1 -eq 0 ] ; then + rm /etc/X11/fontpath.d/nethack + rm %{_fontdir}/fonts.dir +fi; %clean rm -rf $RPM_BUILD_ROOT @@ -136,8 +163,16 @@ rm -rf $RPM_BUILD_ROOT %attr(0775,root,games) %dir %{nhdatadir}/save %attr(2755,root,games) %{nhgamedir}/nethack +%_font_pkg -n bitmap *.pcf + +%files -n %{fontname}-fonts-core +%defattr(-,root,root,-) %changelog +* Fri Jul 10 2009 Luke Macken - 3.4.3-21 +- Apply a patch from Iain Arnell to update our spec to comply with + the new font packaging guidelines (#505613) + * Wed Feb 25 2009 Fedora Release Engineering - 3.4.3-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sgrubb at fedoraproject.org Fri Jul 10 15:20:35 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Fri, 10 Jul 2009 15:20:35 +0000 (UTC) Subject: rpms/prelude-manager/devel prelude-manager-0.9.15-pie.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 prelude-manager.spec, 1.14, 1.15 sources, 1.9, 1.10 Message-ID: <20090710152035.B513111C0489@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/prelude-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22439 Modified Files: .cvsignore prelude-manager.spec sources Added Files: prelude-manager-0.9.15-pie.patch Log Message: * Fri Jul 10 2009 Steve Grubb 0.9.15-1 - new upstream version prelude-manager-0.9.15-pie.patch: --- NEW FILE prelude-manager-0.9.15-pie.patch --- diff -ur prelude-manager-0.9.15.orig/configure prelude-manager-0.9.15/configure --- prelude-manager-0.9.15.orig/configure 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/configure 2009-07-10 09:16:47.000000000 -0400 @@ -41642,6 +41642,8 @@ : LDFLAGS="$LDFLAGS -z now" + AR_FLAGS="$AR_FLAGS" + PRELUDE_MANAGER_CFLAGS="$PRELUDE_MANAGER_CFLAGS -fPIE -DPIE" else diff -ur prelude-manager-0.9.15.orig/configure.in prelude-manager-0.9.15/configure.in --- prelude-manager-0.9.15.orig/configure.in 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/configure.in 2009-07-10 09:16:21.000000000 -0400 @@ -249,6 +249,7 @@ AX_LD_CHECK_FLAG(-z relro, , , LDFLAGS="$LDFLAGS -z relro") AX_LD_CHECK_FLAG(-z now, , , LDFLAGS="$LDFLAGS -z now") +AX_C_CHECK_FLAG(-fPIE -DPIE, , , PRELUDE_MANAGER_CFLAGS="$PRELUDE_MANAGER_CFLAGS -fPIE -DPIE"; PRELUDE_MANAGER_LDFLAGS="-pie"; AR_FLAGS="$AR_FLAGS -fPIC") for i in -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \ -Wbad-function-cast -Wcast-qual -Wcast-align -Wnested-externs -Wunused \ @@ -305,6 +306,7 @@ AC_SUBST(LDFLAGS) AC_SUBST(GLOBAL_CFLAGS) AC_SUBST(PRELUDE_MANAGER_CFLAGS) +AC_SUBST(PRELUDE_MANAGER_LDFLAGS) AC_CONFIG_FILES([ diff -ur prelude-manager-0.9.15.orig/libev/Makefile.am prelude-manager-0.9.15/libev/Makefile.am --- prelude-manager-0.9.15.orig/libev/Makefile.am 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/libev/Makefile.am 2009-07-10 09:19:16.000000000 -0400 @@ -1,4 +1,5 @@ EXTRA_DIST=LICENSE Changes README ev_epoll.c ev_kqueue.c ev_poll.c ev_port.c ev_select.c ev_win32.c +AM_CFLAGS = -fPIC -DPIC noinst_HEADERS = ev.h ev_vars.h ev_wrap.h noinst_LTLIBRARIES = libev.la libev_la_SOURCES = ev.c diff -ur prelude-manager-0.9.15.orig/libev/Makefile.in prelude-manager-0.9.15/libev/Makefile.in --- prelude-manager-0.9.15.orig/libev/Makefile.in 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/libev/Makefile.in 2009-07-10 09:18:17.000000000 -0400 @@ -161,7 +161,7 @@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ -fPIC -DPIC CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ diff -ur prelude-manager-0.9.15.orig/src/Makefile.am prelude-manager-0.9.15/src/Makefile.am --- prelude-manager-0.9.15.orig/src/Makefile.am 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/src/Makefile.am 2009-07-10 09:17:17.000000000 -0400 @@ -28,7 +28,7 @@ -dlopen $(top_builddir)/plugins/reports/relaying/relaying.la \ -dlopen $(top_builddir)/plugins/reports/smtp/smtp.la \ -dlopen $(top_builddir)/plugins/reports/textmod/textmod.la \ - $(DLOPENED_OBJS) + $(DLOPENED_OBJS) -pie prelude_manager_SOURCES = \ bufpool.c \ diff -ur prelude-manager-0.9.15.orig/src/Makefile.in prelude-manager-0.9.15/src/Makefile.in --- prelude-manager-0.9.15.orig/src/Makefile.in 2009-07-10 09:05:32.000000000 -0400 +++ prelude-manager-0.9.15/src/Makefile.in 2009-07-10 09:17:05.000000000 -0400 @@ -719,7 +719,7 @@ -dlopen $(top_builddir)/plugins/reports/relaying/relaying.la \ -dlopen $(top_builddir)/plugins/reports/smtp/smtp.la \ -dlopen $(top_builddir)/plugins/reports/textmod/textmod.la \ - $(DLOPENED_OBJS) + $(DLOPENED_OBJS) -pie prelude_manager_SOURCES = \ bufpool.c \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/prelude-manager/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 27 Aug 2008 15:57:34 -0000 1.8 +++ .cvsignore 10 Jul 2009 15:20:35 -0000 1.9 @@ -5,3 +5,4 @@ prelude-manager-0.9.12.1.tar.gz prelude-manager-0.9.13.tar.gz prelude-manager-0.9.14.tar.gz prelude-manager-0.9.14.2.tar.gz +prelude-manager-0.9.15.tar.gz Index: prelude-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-manager/devel/prelude-manager.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- prelude-manager.spec 22 Apr 2009 23:34:31 -0000 1.14 +++ prelude-manager.spec 10 Jul 2009 15:20:35 -0000 1.15 @@ -1,6 +1,6 @@ Name: prelude-manager -Version: 0.9.14.2 -Release: 3%{?dist} +Version: 0.9.15 +Release: 1%{?dist} Summary: Prelude-Manager Group: Applications/Internet @@ -8,10 +8,11 @@ License: GPLv2+ URL: http://www.prelude-ids.org Source0: http://www.prelude-ids.org/download/releases/%{name}/%{name}-%{version}.tar.gz Source1: %{name}.init -Patch1: %{name}-0.9.12-pie.patch +Patch1: %{name}-0.9.15-pie.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libpreludedb-devel, libxml2-devel +BuildRequires: libprelude-devel >= 0.9.21.3 %if 0%{?fedora} > 6 BuildRequires: tcp_wrappers-devel %else @@ -24,17 +25,12 @@ Requires(preun) : /sbin/service Requires(postun): /sbin/service %description -Prelude Manager is the main program of the Prelude Hybrid IDS -suite. It is a multithreaded server which handles connections from -the Prelude sensors. It is able to register local or remote -sensors, let the operator configure them remotely, receive alerts, -and store alerts in a database or any format supported by -reporting plugins, thus providing centralized logging and -analysis. It also provides relaying capabilities for failover and -replication. The IDMEF standard is used for alert representation. -Support for filtering plugins allows you to hook in different -places in the Manager to define custom criteria for alert relaying -and logging. +Prelude-Manager is a high availability server that accepts +secured connections from distributed sensors and/or other Managers +and saves received events to a media specified by the user +(database, log file, mail etc.). The server schedules and +establishes the priorities of treatment according to the +critical character and the source of the alerts. %package devel Summary: Header files and libraries for prelude-manager development @@ -50,11 +46,7 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} %description db-plugin -Prelude Manager is the main program of the Prelude Hybrid IDS -suite. It is a multithreaded server which handles connections from -the Prelude sensors. - -This plugin authorize prelude-manager to write to database. +This plugin allows prelude-manager to write to database. %package xml-plugin Summary: XML report plugin for Prelude IDS Manager @@ -62,12 +54,7 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} %description xml-plugin -Prelude Manager is the main program of the Prelude Hybrid IDS -suite. It is a multithreaded server which handles connections from -the Prelude sensors. - -This plugin adds XML logging capabilities to the Prelude IDS -Manager. +This plugin adds XML logging capabilities to prelude-manager. %package smtp-plugin Summary: SMTP alert plugin for Prelude IDS Manager @@ -75,11 +62,7 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} %description smtp-plugin -Prelude Manager is the main program of the Prelude Hybrid IDS -suite. It is a multithreaded server which handles connections from -the Prelude sensors. - -This plugin adds alerting by email capabilities to the Prelude IDS +This plugin adds alerting by email capabilities to prelude-manager %prep %setup -q @@ -174,6 +157,9 @@ fi %changelog +* Fri Jul 10 2009 Steve Grubb 0.9.15-1 +- new upstream version + * Wed Apr 22 2009 Steve Grubb 0.9.14.2-3 - Adjusted permissions on dirs and conf files Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/prelude-manager/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 27 Aug 2008 15:57:35 -0000 1.9 +++ sources 10 Jul 2009 15:20:35 -0000 1.10 @@ -1 +1 @@ -4112f1be84cace540d649a6127a46d9c prelude-manager-0.9.14.2.tar.gz +707c8c1be9976ef13748dad680e7724c prelude-manager-0.9.15.tar.gz From lmacken at fedoraproject.org Fri Jul 10 15:40:56 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:40:56 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-10 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710154056.4509411C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31868 Modified Files: .cvsignore sources Log Message: Initial commit of python-repoze-what-plugins-sql on F-10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 15:22:16 -0000 1.1 +++ .cvsignore 10 Jul 2009 15:40:25 -0000 1.2 @@ -0,0 +1 @@ +repoze.what.plugins.sql-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 15:22:16 -0000 1.1 +++ sources 10 Jul 2009 15:40:26 -0000 1.2 @@ -0,0 +1 @@ +0e3da6fed2c2d74732cbd8323476b21b repoze.what.plugins.sql-1.0rc1.tar.gz From caolanm at fedoraproject.org Fri Jul 10 15:41:26 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:41:26 +0000 (UTC) Subject: rpms/hunspell-ia/devel hunspell-ia.spec,1.2,1.3 Message-ID: <20090710154126.CC54A11C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32457 Modified Files: hunspell-ia.spec Log Message: tweak Index: hunspell-ia.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ia/devel/hunspell-ia.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ia.spec 25 Feb 2009 04:58:05 -0000 1.2 +++ hunspell-ia.spec 10 Jul 2009 15:41:26 -0000 1.3 @@ -21,6 +21,7 @@ Interlingua hunspell dictionaries. %build tr -d '\r' < README_ia.txt > README_ia.txt.new +touch -f README_ia.txt README_ia.txt.new mv -f README_ia.txt.new README_ia.txt %install From lmacken at fedoraproject.org Fri Jul 10 15:41:40 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:41:40 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-11 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710154140.B591B11C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32307 Modified Files: .cvsignore sources Log Message: Initial commit of python-repoze-what-plugins-sql on F-11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 15:22:16 -0000 1.1 +++ .cvsignore 10 Jul 2009 15:41:10 -0000 1.2 @@ -0,0 +1 @@ +repoze.what.plugins.sql-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 15:22:16 -0000 1.1 +++ sources 10 Jul 2009 15:41:10 -0000 1.2 @@ -0,0 +1 @@ +0e3da6fed2c2d74732cbd8323476b21b repoze.what.plugins.sql-1.0rc1.tar.gz From caolanm at fedoraproject.org Fri Jul 10 15:42:56 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:42:56 +0000 (UTC) Subject: rpms/hunspell-ia/devel hunspell-ia.spec,1.3,1.4 Message-ID: <20090710154256.743E311C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv502 Modified Files: hunspell-ia.spec Log Message: tweak Index: hunspell-ia.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ia/devel/hunspell-ia.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ia.spec 10 Jul 2009 15:41:26 -0000 1.3 +++ hunspell-ia.spec 10 Jul 2009 15:42:26 -0000 1.4 @@ -21,7 +21,7 @@ Interlingua hunspell dictionaries. %build tr -d '\r' < README_ia.txt > README_ia.txt.new -touch -f README_ia.txt README_ia.txt.new +touch -r README_ia.txt README_ia.txt.new mv -f README_ia.txt.new README_ia.txt %install From lmacken at fedoraproject.org Fri Jul 10 15:43:36 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:43:36 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-10 python-repoze-what-plugins-sql.spec, NONE, 1.1 Message-ID: <20090710154336.3377711C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1095 Added Files: python-repoze-what-plugins-sql.spec Log Message: Initial commit of python-repoze-what-plugins-sql on F-10 --- NEW FILE python-repoze-what-plugins-sql.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define rcver rc1 Name: python-repoze-what-plugins-sql Version: 1.0 Release: 0.5.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what.plugins.sql/ Source0: http://pypi.python.org/packages/source/r/repoze.what.plugins.sql/repoze.what.plugins.sql-%{version}%{rcver}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what BuildRequires: python-sqlalchemy >= 0.5 Requires: python-repoze-what >= 1.0.3 Requires: python-sqlalchemy >= 0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa %description This is an adapters and extras plugin for repoze.what. The SQL plugin makes repoze.what support sources defined in SQLAlchemy-managed databases by providing one group adapter, one permission adapter and one utility to configure both in one go (optionally, when the group source and the permission source have a relationship). This plugin also defines repoze.what.plugins.quickstart. %prep %setup -q -n repoze.what.plugins.sql-%{version}%{rcver} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 - Remove the sqlalchemy0.5 requirement for rawhide * Wed Jun 17 2009 Luke Macken - 1.0-0.4.rc1 - Require python-sqlalchemy0.5 * Fri Jun 05 2009 Luke Macken - 1.0-0.3.rc1 - Patch our setup.py to use our own setuptools package * Sat May 30 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 * Tue Jan 06 2009 Luke Macken - 1.0-0.1.a1.r3024 - Initial package for Fedora From lmacken at fedoraproject.org Fri Jul 10 15:45:58 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:45:58 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-11 python-repoze-what-plugins-sql.spec, NONE, 1.1 Message-ID: <20090710154558.1DAAC11C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2859 Added Files: python-repoze-what-plugins-sql.spec Log Message: Initial commit of python-repoze-what-plugins-sql on F-11 --- NEW FILE python-repoze-what-plugins-sql.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define rcver rc1 Name: python-repoze-what-plugins-sql Version: 1.0 Release: 0.5.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what.plugins.sql/ Source0: http://pypi.python.org/packages/source/r/repoze.what.plugins.sql/repoze.what.plugins.sql-%{version}%{rcver}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what BuildRequires: python-sqlalchemy >= 0.5 Requires: python-repoze-what >= 1.0.3 Requires: python-sqlalchemy >= 0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa %description This is an adapters and extras plugin for repoze.what. The SQL plugin makes repoze.what support sources defined in SQLAlchemy-managed databases by providing one group adapter, one permission adapter and one utility to configure both in one go (optionally, when the group source and the permission source have a relationship). This plugin also defines repoze.what.plugins.quickstart. %prep %setup -q -n repoze.what.plugins.sql-%{version}%{rcver} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 - Remove the sqlalchemy0.5 requirement for rawhide * Wed Jun 17 2009 Luke Macken - 1.0-0.4.rc1 - Require python-sqlalchemy0.5 * Fri Jun 05 2009 Luke Macken - 1.0-0.3.rc1 - Patch our setup.py to use our own setuptools package * Sat May 30 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 * Tue Jan 06 2009 Luke Macken - 1.0-0.1.a1.r3024 - Initial package for Fedora From spot at fedoraproject.org Fri Jul 10 15:46:18 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 15:46:18 +0000 (UTC) Subject: rpms/rpy/devel rpy.spec,1.42,1.43 Message-ID: <20090710154618.BA57211C0489@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/rpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3446 Modified Files: rpy.spec Log Message: fix broken conditional Index: rpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpy/devel/rpy.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- rpy.spec 10 Jul 2009 15:37:52 -0000 1.42 +++ rpy.spec 10 Jul 2009 15:46:18 -0000 1.43 @@ -4,7 +4,7 @@ Name: rpy Summary: Python interface to the R language Version: 2.0.6 -Release: 2%{?dist} +Release: 3%{?dist} Url: http://rpy.sourceforge.net Source: http://downloads.sf.net/%{name}/%{name}2-%{version}.tar.gz License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -34,7 +34,7 @@ env CFLAGS="$RPM_OPT_FLAGS" python setup %install rm -rf $RPM_BUILD_ROOT python setup.py install -O1 --skip-build --root=$RPM_BUILD_ROOT -%if 0%{?__isa_bits} = 64 +%if 0%{?__isa_bits} == 64 %ifnarch ia64 mv %{buildroot}/usr/lib/python2.6/site-packages/rpy2/images %{buildroot}%{python_sitearch}/rpy2/ %endif @@ -50,7 +50,7 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/rpy2-%{version}*.egg-info %changelog -* Fri Jul 10 2009 Tom "spot" Callaway - 2.0.6-2 +* Fri Jul 10 2009 Tom "spot" Callaway - 2.0.6-3 - images are only installed incorrectly on 64bit platforms that aren't ia64 * Thu Jul 9 2009 Tom "spot" Callaway - 2.0.6-1 From caolanm at fedoraproject.org Fri Jul 10 15:47:27 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:47:27 +0000 (UTC) Subject: rpms/mythes-pl/devel mythes-pl.spec,1.4,1.5 Message-ID: <20090710154727.56EC511C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3955 Modified Files: mythes-pl.spec Log Message: clean spec Index: mythes-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-pl/devel/mythes-pl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-pl.spec 26 Feb 2009 03:56:09 -0000 1.4 +++ mythes-pl.spec 10 Jul 2009 15:46:56 -0000 1.5 @@ -1,7 +1,7 @@ Name: mythes-pl Summary: Polish thesaurus Version: 1.5 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/synonimy/OOo2-Thesaurus-%{version}.zip Group: Applications/Text URL: http://synonimy.ux.pl/ @@ -17,8 +17,13 @@ Polish thesaurus. %setup -q -c %build -iconv -f ISO-8859-2 -t UTF-8 README_th_pl_PL_v2.txt > README_th_pl_PL_v2.txt.new -mv -f README_th_pl_PL_v2.txt.new README_th_pl_PL_v2.txt +for i in README_th_pl_PL_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i | tr -d '\r' > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi +done %install rm -rf $RPM_BUILD_ROOT @@ -35,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Fri Jul 10 2009 Caolan McNamara - 1.5-3 +- clean spec + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From linville at fedoraproject.org Fri Jul 10 15:47:43 2009 From: linville at fedoraproject.org (John W. Linville) Date: Fri, 10 Jul 2009 15:47:43 +0000 (UTC) Subject: rpms/iwl4965-firmware/F-11 .cvsignore, 1.3, 1.4 iwl4965-firmware.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090710154743.BB91F11C0489@cvs1.fedora.phx.redhat.com> Author: linville Update of /cvs/pkgs/rpms/iwl4965-firmware/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4475 Modified Files: .cvsignore iwl4965-firmware.spec sources Log Message: Update v2 to 228.61.2.24 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 18 Dec 2007 12:23:44 -0000 1.3 +++ .cvsignore 10 Jul 2009 15:47:43 -0000 1.4 @@ -1,2 +1,2 @@ -iwlwifi-4965-ucode-4.44.17.tgz -iwlwifi-4965-ucode-4.44.1.20.tgz +iwlwifi-4965-ucode-228.57.1.21.tgz +iwlwifi-4965-ucode-228.61.2.24.tgz Index: iwl4965-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/F-11/iwl4965-firmware.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- iwl4965-firmware.spec 14 Apr 2009 17:33:30 -0000 1.8 +++ iwl4965-firmware.spec 10 Jul 2009 15:47:43 -0000 1.9 @@ -1,10 +1,10 @@ %define iwl4965_v1 228.57.1.21 -%define iwl4965_v2 228.57.2.23 +%define iwl4965_v2 228.61.2.24 %define iwl4965_list %{iwl4965_v1} %{iwl4965_v2} Name: iwl4965-firmware Version: %{iwl4965_v2} -Release: 5%{?dist} +Release: 1%{?dist} Summary: Firmware for Intel?? PRO/Wireless 4965 A/G/N network adaptors Group: System Environment/Kernel @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Apr 14 2009 John W. Linville - 228.61.2.24-1 +- Update v2 to 228.61.2.24 + * Tue Apr 14 2009 kwizart < kwizart at gmail.com > - 228.57.2.23-5 - Reintroduce dist tag Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 14 Apr 2009 16:55:55 -0000 1.5 +++ sources 10 Jul 2009 15:47:43 -0000 1.6 @@ -1,2 +1,2 @@ bce5a13d681100aeee2ddac3beaff437 iwlwifi-4965-ucode-228.57.1.21.tgz -505390a555b88c8b6b23057cebec4ad1 iwlwifi-4965-ucode-228.57.2.23.tgz +2531028773cfc22aca5539c734f2a241 iwlwifi-4965-ucode-228.61.2.24.tgz From caolanm at fedoraproject.org Fri Jul 10 15:52:36 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:52:36 +0000 (UTC) Subject: rpms/hunspell-bg/devel hunspell-bg.spec,1.6,1.7 Message-ID: <20090710155236.6950C11C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6915 Modified Files: hunspell-bg.spec Log Message: clean spec Index: hunspell-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-bg/devel/hunspell-bg.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hunspell-bg.spec 25 Feb 2009 04:28:21 -0000 1.6 +++ hunspell-bg.spec 10 Jul 2009 15:52:35 -0000 1.7 @@ -1,7 +1,7 @@ Name: hunspell-bg Summary: Bulgarian hunspell dictionaries Version: 4.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/bgoffice/OOo-spell-bg-%{version}.zip Group: Applications/Text URL: http://bgoffice.sourceforge.net/ @@ -18,10 +18,17 @@ Bulgarian hunspell dictionaries. %setup -q -n OOo-spell-bg-%{version} %build -tr -d '\r' < README > README.new -iconv -f ISO-8859-2 -t UTF-8 README.new > README -tr -d '\r' < COPYING > COPYING.new -mv COPYING.new COPYING +for i in README COPYING; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done + iconv -f WINDOWS-1251 -t UTF-8 bg_BG.dic > bg_BG.dic.new mv -f bg_BG.dic.new bg_BG.dic echo "SET UTF-8" > bg_BG.aff.new @@ -42,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 10 2009 Caolan McNamara - 4.1-4 +- clean up spec + * Tue Feb 24 2009 Fedora Release Engineering - 4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lmacken at fedoraproject.org Fri Jul 10 15:53:27 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:53:27 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-10 python-repoze-what-plugins-sql-setuptools.patch, NONE, 1.1 Message-ID: <20090710155327.24F9811C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7500 Added Files: python-repoze-what-plugins-sql-setuptools.patch Log Message: Add the patch this time python-repoze-what-plugins-sql-setuptools.patch: --- NEW FILE python-repoze-what-plugins-sql-setuptools.patch --- --- setup.py.orig 2009-06-05 07:44:02.000000000 -0400 +++ setup.py 2009-06-05 07:44:06.000000000 -0400 @@ -17,9 +17,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) From caolanm at fedoraproject.org Fri Jul 10 15:54:57 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:54:57 +0000 (UTC) Subject: rpms/hyphen-bg/devel hyphen-bg.spec,1.2,1.3 Message-ID: <20090710155457.4A0D811C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8032 Modified Files: hyphen-bg.spec Log Message: tidy spec Index: hyphen-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-bg/devel/hyphen-bg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-bg.spec 25 Feb 2009 05:59:42 -0000 1.2 +++ hyphen-bg.spec 10 Jul 2009 15:54:26 -0000 1.3 @@ -1,7 +1,7 @@ Name: hyphen-bg Summary: Bulgarian hyphenation rules Version: 4.1 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/bgoffice/OOo-hyph-bg-%{version}.zip Group: Applications/Text URL: http://bgoffice.sourceforge.net/ @@ -18,10 +18,16 @@ Bulgarian hyphenation rules. %setup -q -n OOo-hyph-bg-%{version} %build -tr -d '\r' < README > README.new -iconv -f ISO-8859-2 -t UTF-8 README.new > README -tr -d '\r' < COPYING > COPYING.new -mv COPYING.new COPYING +for i in README COPYING; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 10 2009 Caolan McNamara - 4.1-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lmacken at fedoraproject.org Fri Jul 10 15:57:03 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Fri, 10 Jul 2009 15:57:03 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-11 python-repoze-what-plugins-sql-setuptools.patch, NONE, 1.1 Message-ID: <20090710155704.0631411C0489@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8829 Added Files: python-repoze-what-plugins-sql-setuptools.patch Log Message: Add the patch this time python-repoze-what-plugins-sql-setuptools.patch: --- NEW FILE python-repoze-what-plugins-sql-setuptools.patch --- --- setup.py.orig 2009-06-05 07:44:02.000000000 -0400 +++ setup.py 2009-06-05 07:44:06.000000000 -0400 @@ -17,9 +17,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) From caolanm at fedoraproject.org Fri Jul 10 15:59:02 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 15:59:02 +0000 (UTC) Subject: rpms/mythes-it/devel mythes-it.spec,1.2,1.3 Message-ID: <20090710155902.C4C6911C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9666 Modified Files: mythes-it.spec Log Message: tidy spec Index: mythes-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-it/devel/mythes-it.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-it.spec 26 Feb 2009 03:54:21 -0000 1.2 +++ mythes-it.spec 10 Jul 2009 15:59:02 -0000 1.3 @@ -1,7 +1,7 @@ Name: mythes-it Summary: Italian thesaurus Version: 2.0.9l -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/sourceforge/linguistico/thesaurus2_it_02_09_l_2008_11_29.zip Group: Applications/Text URL: http://linguistico.sourceforge.net/pages/thesaurus_italiano.html @@ -17,10 +17,17 @@ Italian thesaurus. %build for i in th_it_IT_README th_it_IT_ChangeLog th_it_IT_AUTHORS; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done + %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mythes @@ -44,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Fri Jul 10 2009 Caolan McNamara - 2.0.9l-3 +- tidy spec + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.9l-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sgrubb at fedoraproject.org Fri Jul 10 16:02:07 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Fri, 10 Jul 2009 16:02:07 +0000 (UTC) Subject: rpms/prelude-correlator/devel prelude-correlator-0.9.0-beta6-setup.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 prelude-correlator.spec, 1.9, 1.10 sources, 1.3, 1.4 prelude-correlator-0.9.0-brute.patch, 1.1, NONE prelude-correlator-0.9.0-getraw.patch, 1.1, NONE prelude-correlator-0.9.0-signal.patch, 1.1, NONE Message-ID: <20090710160207.EE2F711C0489@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/prelude-correlator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11161 Modified Files: .cvsignore prelude-correlator.spec sources Added Files: prelude-correlator-0.9.0-beta6-setup.patch Removed Files: prelude-correlator-0.9.0-brute.patch prelude-correlator-0.9.0-getraw.patch prelude-correlator-0.9.0-signal.patch Log Message: * Fri Jul 10 2009 Steve Grubb 0.9.0-0.8.beta6 - New beta release prelude-correlator-0.9.0-beta6-setup.patch: --- NEW FILE prelude-correlator-0.9.0-beta6-setup.patch --- diff -ur prelude-correlator-0.9.0-beta6.orig/setup.py prelude-correlator-0.9.0-beta6/setup.py --- prelude-correlator-0.9.0-beta6.orig/setup.py 2009-07-10 11:31:34.000000000 -0400 +++ prelude-correlator-0.9.0-beta6/setup.py 2009-07-10 11:32:18.000000000 -0400 @@ -48,7 +48,7 @@ root = self.root or "" for dir, files in data_files: - dir = os.path.abspath(os.path.join(root, prefix, dir)) + dir = os.path.abspath(root + os.sep + os.path.join(root, prefix, dir)) self.mkpath(dir) for f in files: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/prelude-correlator/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 11 Jul 2008 19:25:55 -0000 1.3 +++ .cvsignore 10 Jul 2009 16:01:36 -0000 1.4 @@ -1,2 +1,4 @@ prelude-correlator-0.9.0-beta2.tar.gz prelude-correlator-0.9.0-beta3.tar.gz +prelude-correlator-0.9.0-beta4.tar.gz +prelude-correlator-0.9.0-beta6.tar.gz Index: prelude-correlator.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-correlator/devel/prelude-correlator.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- prelude-correlator.spec 2 Mar 2009 19:33:51 -0000 1.9 +++ prelude-correlator.spec 10 Jul 2009 16:01:37 -0000 1.10 @@ -1,9 +1,11 @@ +%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + # This is temporary while its in beta -%define prelude_rel beta3 +%define prelude_rel beta6 Name: prelude-correlator Version: 0.9.0 -Release: 0.7.%{prelude_rel}%{?dist} +Release: 0.8.%{prelude_rel}%{?dist} Summary: Real time correlator of events received by Prelude Manager Group: Applications/Internet @@ -11,59 +13,39 @@ License: GPLv2+ URL: http://www.prelude-ids.com Source0: http://www.prelude-ids.com/download/releases/prelude-correlator/%{name}-%{version}-%{prelude_rel}.tar.gz Source1: prelude-correlator.init -Patch1: prelude-correlator-0.9.0-brute.patch -Patch2: prelude-correlator-0.9.0-signal.patch -Patch3: prelude-correlator-0.9.0-getraw.patch +Patch1: prelude-correlator-0.9.0-beta6-setup.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libprelude-devel -BuildRequires: pcre-devel -BuildRequires: lua-devel -BuildRequires: pkgconfig +BuildRequires: python-devel Requires(pre) : /usr/sbin/useradd Requires(post) : /sbin/chkconfig Requires(preun) : /sbin/chkconfig Requires(preun) : /sbin/service Requires(postun): /sbin/service +Requires: libprelude-python >= 0.9.24 +BuildArch: noarch %description -Prelude-Correlator serves to correlate, in real time, the multiple events -received by Prelude Manager. Several isolated alerts, generated from -different probes, can thus trigger a single correlation alert should the -events be related. This correlation alert then appears within the Prewikka -interface and indicates the potential target information via the set of +Prelude-Correlator allows conducting multi-stream correlations +thanks to a powerful programming language for writing correlation +rules. With any type of alert able to be correlated, event +analysis becomes simpler, quicker and more incisive. This +correlation alert then appears within the Prewikka interface +and indicates the potential target information via the set of correlation rules. - -%package devel -Summary: Header files for developing a prelude-correlator plugin -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: libprelude-devel - -%description devel -Include files needed to create plugins for the Prelude-Correlator. - - %prep %setup -q -n %{name}-%{version}-%{prelude_rel} %patch1 -p1 -%patch2 -p1 -%patch3 -p1 %build -%configure -make %{?_smp_mflags} - %install rm -rf %{buildroot} -mkdir -p %{buildroot}%{_sysconfdir}/%{name} +%{__python} setup.py install -O1 --root=%{buildroot} mkdir -p %{buildroot}%{_initrddir} -make install DESTDIR=%{buildroot} INSTALL="%{__install} -c -p" install -m 755 %SOURCE1 %{buildroot}%{_initrddir}/%{name} -rm -f %{buildroot}/%{_libdir}/%{name}/*.la %clean @@ -91,22 +73,18 @@ fi %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS HACKING.README %dir %attr(0700,root,root) %{_sysconfdir}/%{name} -%dir %attr(0700,root,root) %{_sysconfdir}/%{name}/lua-rules %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/%{name}/%{name}.conf -%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/%{name}/lua-rules/* %{_initrddir}/%{name} -%dir %attr(0755,root,root) %{_datadir}/%{name} -%{_datadir}/%{name}/* %{_bindir}/%{name} -%{_libdir}/* - - -%files devel -%defattr(-,root,root) -%{_includedir}/%{name}/ - +%dir %attr(0755,root,root) %{_var}/lib/%{name} +%{_var}/lib/%{name}/* +%{python_sitelib}/PreludeCorrelator/ +%{python_sitelib}/prelude_correlator*.egg-info %changelog +* Fri Jul 10 2009 Steve Grubb 0.9.0-0.8.beta6 +- New beta release + * Mon Mar 02 2009 Steve Grubb 0.9.0-0.7.beta3 - Fix bz#484361 Error message regarding missing arguments lua ruleset Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/prelude-correlator/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 11 Jul 2008 19:25:55 -0000 1.3 +++ sources 10 Jul 2009 16:01:37 -0000 1.4 @@ -1 +1 @@ -3a866ce252e7f909bf73142b311e9655 prelude-correlator-0.9.0-beta3.tar.gz +29f3c3ce5baf43586ec4a4841494cdd0 prelude-correlator-0.9.0-beta6.tar.gz --- prelude-correlator-0.9.0-brute.patch DELETED --- --- prelude-correlator-0.9.0-getraw.patch DELETED --- --- prelude-correlator-0.9.0-signal.patch DELETED --- From caolanm at fedoraproject.org Fri Jul 10 16:04:23 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 16:04:23 +0000 (UTC) Subject: rpms/hunspell-mt/devel hunspell-mt.spec,1.3,1.4 Message-ID: <20090710160423.E09E711C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-mt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12418 Modified Files: hunspell-mt.spec Log Message: update home page Index: hunspell-mt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mt/devel/hunspell-mt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-mt.spec 13 Apr 2009 12:35:52 -0000 1.3 +++ hunspell-mt.spec 10 Jul 2009 16:04:22 -0000 1.4 @@ -5,7 +5,7 @@ Version: 0.%{upstreamid} Release: 3%{?dist} Group: Applications/Text Source: http://linux.org.mt/downloads/spellcheck-mt-0.3.tar.gz -URL: http://linux.org.mt/projects/spellcheck +URL: http://linux.org.mt/node/62 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: LGPLv2+ BuildArch: noarch From lkundrak at fedoraproject.org Fri Jul 10 16:19:03 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 10 Jul 2009 16:19:03 +0000 (UTC) Subject: rpms/inkscape/F-11 inkscape.spec,1.75,1.76 sources,1.22,1.23 Message-ID: <20090710161903.48E0A11C0489@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/inkscape/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19309 Modified Files: inkscape.spec sources Log Message: * Fri Jul 10 2009 Lubomir Rintel - 0.47-0.12.pre1.20090710svn - Update to post-pre1 snapshot Index: inkscape.spec =================================================================== RCS file: /cvs/pkgs/rpms/inkscape/F-11/inkscape.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- inkscape.spec 16 Jun 2009 15:59:52 -0000 1.75 +++ inkscape.spec 10 Jul 2009 16:19:02 -0000 1.76 @@ -1,13 +1,13 @@ Name: inkscape Version: 0.47 -Release: 0.12.pre0.20090616svn%{?dist} +Release: 0.12.pre1.20090710svn%{?dist} Summary: Vector-based drawing program using SVG Group: Applications/Productivity License: GPLv2+ URL: http://inkscape.sourceforge.net/ #Source0: http://download.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2 -# svn export -r21597 https://inkscape.svn.sourceforge.net/svnroot/inkscape/inkscape/trunk at 21597 inkscape +# svn export -r21777 https://inkscape.svn.sourceforge.net/svnroot/inkscape/inkscape/trunk at 21777 inkscape # tar cf - inkscape |lzma -9 -c >inkscape.tar.lzma # Chuck the SVN snapshot specific blocks when bumping to a release: # perl -e 'while (<>) {/^# BEGIN SVN/ .. /^# END SVN/ or print}' - 0.47-0.12.pre1.20090710svn +- Update to post-pre1 snapshot + * Tue Jun 16 2009 Lubomir Rintel - 0.47-0.12.pre0.20090616svn - Update to post-pre0 snapshot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/inkscape/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 16 Jun 2009 15:59:52 -0000 1.22 +++ sources 10 Jul 2009 16:19:03 -0000 1.23 @@ -1 +1 @@ -637c3546b0d6953bcbdfee6f7c4bb8e0 inkscape.tar.lzma +09ec40bae3f08919eca1dd67aca8a014 inkscape.tar.lzma From caolanm at fedoraproject.org Fri Jul 10 16:18:51 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 10 Jul 2009 16:18:51 +0000 (UTC) Subject: rpms/hunspell-ku/devel hunspell-ku.spec,1.5,1.6 Message-ID: <20090710161851.4277B11C0489@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ku/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19165 Modified Files: hunspell-ku.spec Log Message: tidy spec Index: hunspell-ku.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ku/devel/hunspell-ku.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-ku.spec 15 Jun 2009 20:48:04 -0000 1.5 +++ hunspell-ku.spec 10 Jul 2009 16:18:50 -0000 1.6 @@ -1,7 +1,8 @@ Name: hunspell-ku Summary: Kurdish hunspell dictionaries Version: 0.21 -Release: 4%{?dist} +Release: 5%{?dist} +#http://hunspell-ku.googlecode.com/files/ku_TR-021_source.zip ? Source0: http://downloads.sourceforge.net/myspellkurdish/ku_TR-021.zip Group: Applications/Text #http://code.google.com/p/hunspell-ku/ ? @@ -19,8 +20,16 @@ Kurdish hunspell dictionaries. %setup -q -n ku_TR %build -tr -d '\r' < README_ku_TR.txt > README_ku_TR.txt.new -iconv -f ISO-8859-1 -t UTF-8 README_ku_TR.txt.new > README_ku_TR.txt +for i in README_ku_TR.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 10 2009 Caolan McNamara - 0.21-5 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.21-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rjones at fedoraproject.org Fri Jul 10 17:03:47 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 17:03:47 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.35,1.36 Message-ID: <20090710170347.7B04111C0489@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10344 Modified Files: libguestfs.spec Log Message: Workaround for RHBZ#502058. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libguestfs.spec 10 Jul 2009 14:30:13 -0000 1.35 +++ libguestfs.spec 10 Jul 2009 17:03:17 -0000 1.36 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.57 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -321,6 +321,10 @@ make INSTALLDIRS=vendor %{?_smp_mflags} # it produces masses of output in the build.log. export LIBGUESTFS_DEBUG=1 +# Workaround for BZ 502058. This is needed sometimes (but not +# always) for EL-5. We don't know why it only affects some boots. +export LIBGUESTFS_APPEND="noapic" + # Tests fail on i386. We don't know why because plague doesn't let us # see the logs (the tests hang rather than failing completely). @@ -507,8 +511,9 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-2 - New upstream release 1.0.57. +- Workaround for RHBZ#502058. * Tue Jul 7 2009 Richard W.M. Jones - 1.0.56-1 - New upstream release 1.0.56. From trasher at fedoraproject.org Fri Jul 10 17:17:46 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Fri, 10 Jul 2009 17:17:46 +0000 (UTC) Subject: rpms/yakuake/devel .cvsignore, 1.5, 1.6 sources, 1.7, 1.8 yakuake.spec, 1.13, 1.14 yakuake-2.9.4-qt4.5.patch, 1.1, NONE Message-ID: <20090710171746.5023411C0489@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/yakuake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16613 Modified Files: .cvsignore sources yakuake.spec Removed Files: yakuake-2.9.4-qt4.5.patch Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/yakuake/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Apr 2008 21:19:32 -0000 1.5 +++ .cvsignore 10 Jul 2009 17:17:15 -0000 1.6 @@ -1 +1 @@ -yakuake-2.9.1.tar.bz2 +yakuake-2.9.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/yakuake/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 4 Sep 2008 16:06:57 -0000 1.7 +++ sources 10 Jul 2009 17:17:15 -0000 1.8 @@ -1 +1 @@ -e1671e6709146c6c85a5884176d99c4b yakuake-2.9.4.tar.bz2 +d5cbb912596fd1b3a92fdb04fe46cee0 yakuake-2.9.6.tar.bz2 Index: yakuake.spec =================================================================== RCS file: /cvs/extras/rpms/yakuake/devel/yakuake.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- yakuake.spec 17 Apr 2009 22:03:00 -0000 1.13 +++ yakuake.spec 10 Jul 2009 17:17:16 -0000 1.14 @@ -1,6 +1,6 @@ Name: yakuake -Version: 2.9.4 -Release: 3%{?dist} +Version: 2.9.6 +Release: 1%{?dist} Summary: Terminal emulator Group: User Interface/Desktops @@ -9,8 +9,6 @@ URL: http://extragear.kde.org Source0: http://download.berlios.de/yakuake/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: yakuake-2.9.4-qt4.5.patch - Requires: kdebase BuildRequires: desktop-file-utils @@ -24,8 +22,7 @@ Yakuake is a "Quake console" like termin %prep -%setup -q -%patch0 -p4 +%setup -q %build @@ -74,10 +71,13 @@ rm -rf %{buildroot} %{_datadir}/applications/*yakuake.desktop %{_datadir}/kde4/apps/yakuake %{_datadir}/icons/hicolor/??x??/apps/%{name}.png -%{_datadir}/icons/hicolor/128x128/apps/%{name}.png +%{_datadir}/icons/hicolor/???x???/apps/%{name}.png %{_datadir}/icons/hicolor/scalable/apps/%{name}.svgz %changelog +* Thu Jul 10 2009 Johan Cwiklinski 2.9.6-1 +- 2.9.6 + * Sat Apr 17 2009 Johan Cwiklinski 2.9.4-3 - Fix crash with QT 4.5 --- yakuake-2.9.4-qt4.5.patch DELETED --- From trasher at fedoraproject.org Fri Jul 10 17:23:39 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Fri, 10 Jul 2009 17:23:39 +0000 (UTC) Subject: rpms/yakuake/F-11 .cvsignore, 1.5, 1.6 sources, 1.7, 1.8 yakuake.spec, 1.13, 1.14 yakuake-2.9.4-qt4.5.patch, 1.1, NONE Message-ID: <20090710172339.A3AE511C0489@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/yakuake/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20607 Modified Files: .cvsignore sources yakuake.spec Removed Files: yakuake-2.9.4-qt4.5.patch Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Apr 2008 21:19:32 -0000 1.5 +++ .cvsignore 10 Jul 2009 17:23:39 -0000 1.6 @@ -1 +1 @@ -yakuake-2.9.1.tar.bz2 +yakuake-2.9.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 4 Sep 2008 16:06:57 -0000 1.7 +++ sources 10 Jul 2009 17:23:39 -0000 1.8 @@ -1 +1 @@ -e1671e6709146c6c85a5884176d99c4b yakuake-2.9.4.tar.bz2 +d5cbb912596fd1b3a92fdb04fe46cee0 yakuake-2.9.6.tar.bz2 Index: yakuake.spec =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-11/yakuake.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- yakuake.spec 17 Apr 2009 22:19:54 -0000 1.13 +++ yakuake.spec 10 Jul 2009 17:23:39 -0000 1.14 @@ -1,6 +1,6 @@ Name: yakuake -Version: 2.9.4 -Release: 3%{?dist} +Version: 2.9.6 +Release: 1%{?dist} Summary: Terminal emulator Group: User Interface/Desktops @@ -9,8 +9,6 @@ URL: http://extragear.kde.org Source0: http://download.berlios.de/yakuake/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: yakuake-2.9.4-qt4.5.patch - Requires: kdebase BuildRequires: desktop-file-utils @@ -24,8 +22,7 @@ Yakuake is a "Quake console" like termin %prep -%setup -q -%patch0 -p4 +%setup -q %build @@ -74,10 +71,13 @@ rm -rf %{buildroot} %{_datadir}/applications/*yakuake.desktop %{_datadir}/kde4/apps/yakuake %{_datadir}/icons/hicolor/??x??/apps/%{name}.png -%{_datadir}/icons/hicolor/128x128/apps/%{name}.png +%{_datadir}/icons/hicolor/???x???/apps/%{name}.png %{_datadir}/icons/hicolor/scalable/apps/%{name}.svgz %changelog +* Thu Jul 10 2009 Johan Cwiklinski 2.9.6-1 +- 2.9.6 + * Sat Apr 17 2009 Johan Cwiklinski 2.9.4-3 - Fix crash with QT 4.5 --- yakuake-2.9.4-qt4.5.patch DELETED --- From trasher at fedoraproject.org Fri Jul 10 17:37:02 2009 From: trasher at fedoraproject.org (Johan Cwiklinski) Date: Fri, 10 Jul 2009 17:37:02 +0000 (UTC) Subject: rpms/yakuake/F-10 .cvsignore, 1.5, 1.6 sources, 1.7, 1.8 yakuake.spec, 1.12, 1.13 yakuake-2.9.4-qt4.5.patch, 1.1, NONE Message-ID: <20090710173702.E997711C0489@cvs1.fedora.phx.redhat.com> Author: trasher Update of /cvs/extras/rpms/yakuake/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27756 Modified Files: .cvsignore sources yakuake.spec Removed Files: yakuake-2.9.4-qt4.5.patch Log Message: New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Apr 2008 21:19:32 -0000 1.5 +++ .cvsignore 10 Jul 2009 17:37:02 -0000 1.6 @@ -1 +1 @@ -yakuake-2.9.1.tar.bz2 +yakuake-2.9.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 4 Sep 2008 16:06:57 -0000 1.7 +++ sources 10 Jul 2009 17:37:02 -0000 1.8 @@ -1 +1 @@ -e1671e6709146c6c85a5884176d99c4b yakuake-2.9.4.tar.bz2 +d5cbb912596fd1b3a92fdb04fe46cee0 yakuake-2.9.6.tar.bz2 Index: yakuake.spec =================================================================== RCS file: /cvs/extras/rpms/yakuake/F-10/yakuake.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- yakuake.spec 17 Apr 2009 22:40:23 -0000 1.12 +++ yakuake.spec 10 Jul 2009 17:37:02 -0000 1.13 @@ -1,6 +1,6 @@ Name: yakuake -Version: 2.9.4 -Release: 2%{?dist} +Version: 2.9.6 +Release: 1%{?dist} Summary: Terminal emulator Group: User Interface/Desktops @@ -9,8 +9,6 @@ URL: http://extragear.kde.org Source0: http://download.berlios.de/yakuake/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: yakuake-2.9.4-qt4.5.patch - Requires: kdebase BuildRequires: desktop-file-utils @@ -24,8 +22,7 @@ Yakuake is a "Quake console" like termin %prep -%setup -q -%patch0 -p4 +%setup -q %build @@ -74,10 +71,13 @@ rm -rf %{buildroot} %{_datadir}/applications/*yakuake.desktop %{_datadir}/kde4/apps/yakuake %{_datadir}/icons/hicolor/??x??/apps/%{name}.png -%{_datadir}/icons/hicolor/128x128/apps/%{name}.png +%{_datadir}/icons/hicolor/???x???/apps/%{name}.png %{_datadir}/icons/hicolor/scalable/apps/%{name}.svgz %changelog +* Thu Jul 10 2009 Johan Cwiklinski 2.9.6-1 +- 2.9.6 + * Sat Apr 17 2009 Johan Cwiklinski 2.9.4-2 - Fix crash with QT 4.5 --- yakuake-2.9.4-qt4.5.patch DELETED --- From mschwendt at fedoraproject.org Fri Jul 10 18:01:27 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 10 Jul 2009 18:01:27 +0000 (UTC) Subject: extras-repoclosure rc-modified,1.27,1.28 Message-ID: <20090710180127.221BC11C0489@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/fedora/extras-repoclosure In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9134 Modified Files: rc-modified Log Message: catch "Obsoletes without Provides" packaging mistakes which affect updates only / thinko in Extras repoclosure - todo: cleaner handling of Obsoletes in general Index: rc-modified =================================================================== RCS file: /cvs/fedora/extras-repoclosure/rc-modified,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- rc-modified 9 Jun 2009 12:13:48 -0000 1.27 +++ rc-modified 10 Jul 2009 18:01:26 -0000 1.28 @@ -238,9 +238,10 @@ thispkgobsdict = self.up.checkForObsolete([po.pkgtup]) if thispkgobsdict.has_key(po.pkgtup): for pkgtup in thispkgobsdict[po.pkgtup]: - if pkgtup in pkgtuplist: + if pkgtup in pkgtuplist and pkgtup in resolve_sack.simplePkgList(): resolved_by_newest = True break + continue # Obsoletes without Provides except AttributeError: pass From pkgdb at fedoraproject.org Fri Jul 10 18:10:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:10:52 +0000 Subject: [pkgdb] morse2txt was added for fab Message-ID: <20090710181052.F287B10F892@bastion2.fedora.phx.redhat.com> tibbs has added Package morse2txt with summary Morse Code Reader tibbs has approved Package morse2txt tibbs has added a Fedora devel branch for morse2txt with an owner of fab tibbs has approved morse2txt in Fedora devel tibbs has approved Package morse2txt tibbs has set commit to Approved for 107427 on morse2txt (Fedora devel) tibbs has set checkout to Approved for 107427 on morse2txt (Fedora devel) tibbs has set build to Approved for 107427 on morse2txt (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/morse2txt From pkgdb at fedoraproject.org Fri Jul 10 18:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:10:54 +0000 Subject: [pkgdb] morse2txt summary updated by tibbs Message-ID: <20090710181054.B2CA010F89E@bastion2.fedora.phx.redhat.com> tibbs set package morse2txt summary to Morse Code Reader To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/morse2txt From pkgdb at fedoraproject.org Fri Jul 10 18:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:10:54 +0000 Subject: [pkgdb] morse2txt (Fedora, 11) updated by tibbs Message-ID: <20090710181054.C1F8410F8A5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for morse2txt tibbs has set commit to Approved for 107427 on morse2txt (Fedora 11) tibbs has set checkout to Approved for 107427 on morse2txt (Fedora 11) tibbs has set build to Approved for 107427 on morse2txt (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/morse2txt From tibbs at fedoraproject.org Fri Jul 10 18:11:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:01 +0000 (UTC) Subject: rpms/morse2txt - New directory Message-ID: <20090710181101.19B4911C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/morse2txt In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse14250/rpms/morse2txt Log Message: Directory /cvs/pkgs/rpms/morse2txt added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:11:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:01 +0000 (UTC) Subject: rpms/morse2txt/devel - New directory Message-ID: <20090710181101.5303911C049A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/morse2txt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse14250/rpms/morse2txt/devel Log Message: Directory /cvs/pkgs/rpms/morse2txt/devel added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:11:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:07 +0000 (UTC) Subject: rpms/morse2txt Makefile,NONE,1.1 Message-ID: <20090710181107.AA1B211C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/morse2txt In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse14250/rpms/morse2txt Added Files: Makefile Log Message: Setup of module morse2txt --- NEW FILE Makefile --- # Top level Makefile for module morse2txt all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 10 18:11:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:08 +0000 (UTC) Subject: rpms/morse2txt/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710181108.0379111C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/morse2txt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse14250/rpms/morse2txt/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module morse2txt --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: morse2txt # $Id: Makefile,v 1.1 2009/07/10 18:11:07 tibbs Exp $ NAME := morse2txt SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 10 18:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:10:54 +0000 Subject: [pkgdb] morse2txt (Fedora, 11) updated by tibbs Message-ID: <20090710181054.D30B210F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for morse2txt tibbs has set commit to Approved for 107427 on morse2txt (Fedora 10) tibbs has set checkout to Approved for 107427 on morse2txt (Fedora 10) tibbs has set build to Approved for 107427 on morse2txt (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/morse2txt From pkgdb at fedoraproject.org Fri Jul 10 18:11:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:29 +0000 Subject: [pkgdb] bitfrost was added for dsd Message-ID: <20090710181129.9A03E10F892@bastion2.fedora.phx.redhat.com> tibbs has added Package bitfrost with summary OLPC bitfrost security modules tibbs has approved Package bitfrost tibbs has added a Fedora devel branch for bitfrost with an owner of dsd tibbs has approved bitfrost in Fedora devel tibbs has approved Package bitfrost tibbs has set commit to Approved for 107427 on bitfrost (Fedora devel) tibbs has set checkout to Approved for 107427 on bitfrost (Fedora devel) tibbs has set build to Approved for 107427 on bitfrost (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 18:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:32 +0000 Subject: [pkgdb] bitfrost summary updated by tibbs Message-ID: <20090710181132.6F2D510F8A4@bastion2.fedora.phx.redhat.com> tibbs set package bitfrost summary to OLPC bitfrost security modules To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 18:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:32 +0000 Subject: [pkgdb] bitfrost (Fedora, 11) updated by tibbs Message-ID: <20090710181132.7CCB510F8AA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on bitfrost (Fedora devel) for cjb tibbs approved watchcommits on bitfrost (Fedora devel) for cjb tibbs approved commit on bitfrost (Fedora devel) for cjb tibbs approved build on bitfrost (Fedora devel) for cjb tibbs approved approveacls on bitfrost (Fedora devel) for cjb tibbs approved watchbugzilla on bitfrost (Fedora devel) for pbrobinson tibbs approved watchcommits on bitfrost (Fedora devel) for pbrobinson tibbs approved commit on bitfrost (Fedora devel) for pbrobinson tibbs approved build on bitfrost (Fedora devel) for pbrobinson tibbs approved approveacls on bitfrost (Fedora devel) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From tibbs at fedoraproject.org Fri Jul 10 18:11:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:37 +0000 (UTC) Subject: rpms/bitfrost - New directory Message-ID: <20090710181137.1F38C11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bitfrost In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsC14706/rpms/bitfrost Log Message: Directory /cvs/pkgs/rpms/bitfrost added to the repository From pkgdb at fedoraproject.org Fri Jul 10 18:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:32 +0000 Subject: [pkgdb] bitfrost (Fedora, 11) updated by tibbs Message-ID: <20090710181132.902FB10F8B3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for bitfrost tibbs has set commit to Approved for 107427 on bitfrost (Fedora 11) tibbs has set checkout to Approved for 107427 on bitfrost (Fedora 11) tibbs has set build to Approved for 107427 on bitfrost (Fedora 11) tibbs approved watchbugzilla on bitfrost (Fedora 11) for cjb tibbs approved watchcommits on bitfrost (Fedora 11) for cjb tibbs approved commit on bitfrost (Fedora 11) for cjb tibbs approved build on bitfrost (Fedora 11) for cjb tibbs approved approveacls on bitfrost (Fedora 11) for cjb tibbs approved watchbugzilla on bitfrost (Fedora 11) for pbrobinson tibbs approved watchcommits on bitfrost (Fedora 11) for pbrobinson tibbs approved commit on bitfrost (Fedora 11) for pbrobinson tibbs approved build on bitfrost (Fedora 11) for pbrobinson tibbs approved approveacls on bitfrost (Fedora 11) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From tibbs at fedoraproject.org Fri Jul 10 18:11:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:37 +0000 (UTC) Subject: rpms/bitfrost/devel - New directory Message-ID: <20090710181137.52F6111C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bitfrost/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsC14706/rpms/bitfrost/devel Log Message: Directory /cvs/pkgs/rpms/bitfrost/devel added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:11:42 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:42 +0000 (UTC) Subject: rpms/bitfrost Makefile,NONE,1.1 Message-ID: <20090710181142.F36BF11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bitfrost In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsC14706/rpms/bitfrost Added Files: Makefile Log Message: Setup of module bitfrost --- NEW FILE Makefile --- # Top level Makefile for module bitfrost all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 10 18:11:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:11:43 +0000 (UTC) Subject: rpms/bitfrost/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710181143.4621511C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bitfrost/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsC14706/rpms/bitfrost/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module bitfrost --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: bitfrost # $Id: Makefile,v 1.1 2009/07/10 18:11:43 tibbs Exp $ NAME := bitfrost SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 10 18:11:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:57 +0000 Subject: [pkgdb] perl-Math-Curve-Hilbert was added for ron Message-ID: <20090710181157.62A0810F897@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Math-Curve-Hilbert with summary Perl implementation of Hilberts space-filling curve tibbs has approved Package perl-Math-Curve-Hilbert tibbs has added a Fedora devel branch for perl-Math-Curve-Hilbert with an owner of ron tibbs has approved perl-Math-Curve-Hilbert in Fedora devel tibbs has approved Package perl-Math-Curve-Hilbert tibbs has set commit to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora devel) tibbs has set build to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Math-Curve-Hilbert From pkgdb at fedoraproject.org Fri Jul 10 18:11:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:58 +0000 Subject: [pkgdb] perl-Math-Curve-Hilbert summary updated by tibbs Message-ID: <20090710181158.C0E7B10F89E@bastion2.fedora.phx.redhat.com> tibbs set package perl-Math-Curve-Hilbert summary to Perl implementation of Hilberts space-filling curve To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Math-Curve-Hilbert From pkgdb at fedoraproject.org Fri Jul 10 18:11:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:58 +0000 Subject: [pkgdb] perl-Math-Curve-Hilbert (Fedora, 11) updated by tibbs Message-ID: <20090710181158.C88D010F8BA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Math-Curve-Hilbert tibbs has set commit to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 11) tibbs has set build to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 11) tibbs approved watchbugzilla on perl-Math-Curve-Hilbert (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Math-Curve-Hilbert (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Math-Curve-Hilbert From pkgdb at fedoraproject.org Fri Jul 10 18:11:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:58 +0000 Subject: [pkgdb] perl-Math-Curve-Hilbert (Fedora, 11) updated by tibbs Message-ID: <20090710181158.CF07810F8BD@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Math-Curve-Hilbert (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Math-Curve-Hilbert (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Math-Curve-Hilbert From tibbs at fedoraproject.org Fri Jul 10 18:12:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:04 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert - New directory Message-ID: <20090710181204.13BBB11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq15014/rpms/perl-Math-Curve-Hilbert Log Message: Directory /cvs/pkgs/rpms/perl-Math-Curve-Hilbert added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:12:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:04 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/devel - New directory Message-ID: <20090710181204.38BB611C049C@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq15014/rpms/perl-Math-Curve-Hilbert/devel Log Message: Directory /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 10 18:11:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:11:58 +0000 Subject: [pkgdb] perl-Math-Curve-Hilbert (Fedora, 11) updated by tibbs Message-ID: <20090710181158.DBA7B10F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Math-Curve-Hilbert tibbs has set commit to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 10) tibbs has set build to Approved for 107427 on perl-Math-Curve-Hilbert (Fedora 10) tibbs approved watchbugzilla on perl-Math-Curve-Hilbert (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Math-Curve-Hilbert (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Math-Curve-Hilbert From tibbs at fedoraproject.org Fri Jul 10 18:12:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:10 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert Makefile,NONE,1.1 Message-ID: <20090710181210.A80D111C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq15014/rpms/perl-Math-Curve-Hilbert Added Files: Makefile Log Message: Setup of module perl-Math-Curve-Hilbert --- NEW FILE Makefile --- # Top level Makefile for module perl-Math-Curve-Hilbert all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 10 18:12:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:10 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710181210.EF9EE11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq15014/rpms/perl-Math-Curve-Hilbert/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Math-Curve-Hilbert --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Math-Curve-Hilbert # $Id: Makefile,v 1.1 2009/07/10 18:12:10 tibbs Exp $ NAME := perl-Math-Curve-Hilbert SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 10 18:12:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:12:40 +0000 Subject: [pkgdb] unetbootin was added for jussilehtola Message-ID: <20090710181240.ABB9810F89B@bastion2.fedora.phx.redhat.com> tibbs has added Package unetbootin with summary Create bootable Live USB drives for a variety of Linux distributions tibbs has approved Package unetbootin tibbs has added a Fedora devel branch for unetbootin with an owner of jussilehtola tibbs has approved unetbootin in Fedora devel tibbs has approved Package unetbootin tibbs has set commit to Approved for 107427 on unetbootin (Fedora devel) tibbs has set checkout to Approved for 107427 on unetbootin (Fedora devel) tibbs has set build to Approved for 107427 on unetbootin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/unetbootin From pkgdb at fedoraproject.org Fri Jul 10 18:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:12:41 +0000 Subject: [pkgdb] unetbootin summary updated by tibbs Message-ID: <20090710181241.C9E6E10F8B7@bastion2.fedora.phx.redhat.com> tibbs set package unetbootin summary to Create bootable Live USB drives for a variety of Linux distributions To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/unetbootin From pkgdb at fedoraproject.org Fri Jul 10 18:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:12:41 +0000 Subject: [pkgdb] unetbootin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710181241.D00DA10F8CE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for unetbootin tibbs has set commit to Approved for 107427 on unetbootin (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on unetbootin (Fedora EPEL 5) tibbs has set build to Approved for 107427 on unetbootin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/unetbootin From pkgdb at fedoraproject.org Fri Jul 10 18:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:12:41 +0000 Subject: [pkgdb] unetbootin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710181241.D99CD10F8CF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for unetbootin tibbs has set commit to Approved for 107427 on unetbootin (Fedora 11) tibbs has set checkout to Approved for 107427 on unetbootin (Fedora 11) tibbs has set build to Approved for 107427 on unetbootin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/unetbootin From pkgdb at fedoraproject.org Fri Jul 10 18:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 18:12:41 +0000 Subject: [pkgdb] unetbootin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710181241.DF57E10F8D2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for unetbootin tibbs has set commit to Approved for 107427 on unetbootin (Fedora 10) tibbs has set checkout to Approved for 107427 on unetbootin (Fedora 10) tibbs has set build to Approved for 107427 on unetbootin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/unetbootin From tibbs at fedoraproject.org Fri Jul 10 18:12:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:49 +0000 (UTC) Subject: rpms/unetbootin - New directory Message-ID: <20090710181249.356CA11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/unetbootin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV15519/rpms/unetbootin Log Message: Directory /cvs/pkgs/rpms/unetbootin added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:12:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:49 +0000 (UTC) Subject: rpms/unetbootin/devel - New directory Message-ID: <20090710181249.A0D6F11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV15519/rpms/unetbootin/devel Log Message: Directory /cvs/pkgs/rpms/unetbootin/devel added to the repository From tibbs at fedoraproject.org Fri Jul 10 18:12:57 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:57 +0000 (UTC) Subject: rpms/unetbootin Makefile,NONE,1.1 Message-ID: <20090710181257.93EBA11C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/unetbootin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV15519/rpms/unetbootin Added Files: Makefile Log Message: Setup of module unetbootin --- NEW FILE Makefile --- # Top level Makefile for module unetbootin all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 10 18:12:57 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 18:12:57 +0000 (UTC) Subject: rpms/unetbootin/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710181257.D3E1811C0489@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV15519/rpms/unetbootin/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module unetbootin --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: unetbootin # $Id: Makefile,v 1.1 2009/07/10 18:12:57 tibbs Exp $ NAME := unetbootin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From bretm at fedoraproject.org Fri Jul 10 18:13:28 2009 From: bretm at fedoraproject.org (Bret Richard McMillan) Date: Fri, 10 Jul 2009 18:13:28 +0000 (UTC) Subject: rpms/wordpress-mu/F-11 cve-2009-2334.patch, NONE, 1.1 wordpress-mu.spec, 1.7, 1.8 Message-ID: <20090710181328.A915811C0489@cvs1.fedora.phx.redhat.com> Author: bretm Update of /cvs/pkgs/rpms/wordpress-mu/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15643 Modified Files: wordpress-mu.spec Added Files: cve-2009-2334.patch Log Message: patch for cve-2009-2334 cve-2009-2334.patch: --- NEW FILE cve-2009-2334.patch --- diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 796c4c9..1dd38ce 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -541,7 +541,7 @@ function uninstall_plugin($plugin) { // function add_menu_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '' ) { - global $menu, $admin_page_hooks; + global $menu, $admin_page_hooks, $_registered_pages; $file = plugin_basename( $file ); @@ -556,11 +556,13 @@ function add_menu_page( $page_title, $menu_title, $access_level, $file, $functio $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_object_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_object_menu; + global $menu, $admin_page_hooks, $_wp_last_object_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -577,11 +579,13 @@ function add_object_page( $page_title, $menu_title, $access_level, $file, $funct $menu[$_wp_last_object_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_utility_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_utility_menu; + global $menu, $admin_page_hooks, $_wp_last_utility_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -598,6 +602,8 @@ function add_utility_page( $page_title, $menu_title, $access_level, $file, $func $menu[$_wp_last_utility_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -606,6 +612,7 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi global $menu; global $_wp_real_parent_file; global $_wp_submenu_nopriv; + global $_registered_pages; $file = plugin_basename( $file ); @@ -635,6 +642,8 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi if (!empty ( $function ) && !empty ( $hookname )) add_action( $hookname, $function ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -859,14 +868,21 @@ function user_can_access_admin_page() { global $_wp_menu_nopriv; global $_wp_submenu_nopriv; global $plugin_page; + global $_registered_pages; $parent = get_admin_page_parent(); - if ( isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) + if ( !isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) return false; - if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) - return false; + if ( isset( $plugin_page ) ) { + if ( isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) + return false; + + $hookname = get_plugin_page_hookname($plugin_page, $parent); + if ( !isset($_registered_pages[$hookname]) ) + return false; + } if ( empty( $parent) ) { if ( isset( $_wp_menu_nopriv[$pagenow] ) ) @@ -875,6 +891,8 @@ function user_can_access_admin_page() { return false; if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$pagenow][$plugin_page] ) ) return false; + if ( isset( $plugin_page ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; foreach (array_keys( $_wp_submenu_nopriv ) as $key ) { if ( isset( $_wp_submenu_nopriv[$key][$pagenow] ) ) return false; @@ -884,6 +902,9 @@ function user_can_access_admin_page() { return true; } + if ( isset( $plugin_page ) && ( $plugin_page == $parent ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; + if ( isset( $submenu[$parent] ) ) { foreach ( $submenu[$parent] as $submenu_array ) { if ( isset( $plugin_page ) && ( $submenu_array[2] == $plugin_page ) ) { Index: wordpress-mu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/F-11/wordpress-mu.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wordpress-mu.spec 25 Feb 2009 19:01:23 -0000 1.7 +++ wordpress-mu.spec 10 Jul 2009 18:12:58 -0000 1.8 @@ -2,12 +2,13 @@ Summary: WordPress-MU multi-user bloggin URL: http://mu.wordpress.org/latest.tar.gz Name: wordpress-mu Version: 2.7 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Publishing License: GPLv2 Source0: %{name}-%{version}.tar.gz Source1: wordpress-mu-httpd-conf Source2: README.fedora.wordpress-mu +Patch0: cve-2009-2334.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: php >= 4.1.0, httpd, php-mysql BuildArch: noarch @@ -18,6 +19,7 @@ one instance to serve multiple users. %prep %setup -q -n wordpress-mu +%patch0 -p1 -b .patch1 # disable-wordpress-core-update, updates are always installed via rpm # @@ -98,6 +100,9 @@ rm -rf %{buildroot} %dir %{_sysconfdir}/wordpress-mu %changelog +* Fri Jul 10 2009 Bret McMillan - 2.7-6 +- Patch for CVE-2009-2334 + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From limb at fedoraproject.org Fri Jul 10 18:16:18 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 10 Jul 2009 18:16:18 +0000 (UTC) Subject: rpms/wesnoth/devel wesnoth-1.6.4-fribidi.patch, NONE, 1.1 wesnoth.spec, 1.80, 1.81 Message-ID: <20090710181618.5FEA211C0489@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/wesnoth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17106 Modified Files: wesnoth.spec Added Files: wesnoth-1.6.4-fribidi.patch Log Message: - Fribidi patch, BZ 504526. wesnoth-1.6.4-fribidi.patch: --- NEW FILE wesnoth-1.6.4-fribidi.patch --- --- configure.ac 2009-06-08 00:24:52.604753218 +0300 +++ configure.ac 2009-06-08 00:25:05.257753171 +0300 @@ -404,19 +404,7 @@ fi # fribidi-config -AC_PATH_PROGS([FRIBIDI_CONFIG], [fribidi-config], [none]) - -if test "x$FRIBIDI_CONFIG" = "xnone"; then - fribidifound=no - AC_MSG_WARN([*** FRIBIDI not found.]) -else - fribidifound=yes - FRIBIDI_CFLAGS=`$FRIBIDI_CONFIG --cflags` - FRIBIDI_LIBS=`$FRIBIDI_CONFIG --libs` -fi - -AC_SUBST([FRIBIDI_CFLAGS]) -AC_SUBST([FRIBIDI_LIBS]) +PKG_CHECK_MODULES([FRIBIDI], [fribidi],[fribidifound=yes],[fribidifound=no]) AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes -a "x$fribidi" = xyes ]) # python --- src/font.cpp 2009-03-15 18:50:42.000000000 +0200 +++ src/font.cpp 2009-06-08 00:19:56.884753434 +0300 @@ -50,9 +50,6 @@ #ifdef HAVE_FRIBIDI #include - -#else - #endif namespace { @@ -467,16 +464,16 @@ private: void text_surface::bidi_cvt() { char *c_str = const_cast(str_.c_str()); // fribidi forgot const... - int len = str_.length(); + FriBidiStrIndex len = str_.length(); FriBidiChar *bidi_logical = new FriBidiChar[len + 2]; FriBidiChar *bidi_visual = new FriBidiChar[len + 2]; char *utf8str = new char[4*len + 1]; //assume worst case here (all 4 Byte characters) FriBidiCharType base_dir = FRIBIDI_TYPE_ON; - int n; + FriBidiStrIndex n; - n = fribidi_utf8_to_unicode (c_str, len, bidi_logical); + n = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, c_str, len, bidi_logical); fribidi_log2vis(bidi_logical, n, &base_dir, bidi_visual, NULL, NULL, NULL); - fribidi_unicode_to_utf8 (bidi_visual, n, utf8str); + fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, bidi_visual, n, utf8str); is_rtl_ = base_dir == FRIBIDI_TYPE_RTL; str_ = std::string(utf8str); delete[] bidi_logical; Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/devel/wesnoth.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- wesnoth.spec 6 Jul 2009 01:06:46 -0000 1.80 +++ wesnoth.spec 10 Jul 2009 18:15:48 -0000 1.81 @@ -1,6 +1,6 @@ Name: wesnoth Version: 1.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turn-based strategy game with a fantasy theme Group: Amusements/Games @@ -11,6 +11,7 @@ Source1: wesnothd.init Source2: %{name}.sysconfig Patch0: %{name}-1.2.8-gcc43.patch Patch1: wesnoth-1.5.11-remove-ogg-test.patch +Patch2: wesnoth-1.6.4-fribidi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: wesnoth-data = %{version} @@ -86,6 +87,7 @@ This package contains the data files for %setup -qn wesnoth-%{version} %patch0 -p1 -b .gcc43 %patch1 -p0 +%patch2 -p0 autoreconf @@ -251,6 +253,9 @@ fi #%endif %changelog +* Fri Jul 10 2009 Jon Ciesla - 1.6.4-2 +- Fribidi patch, BZ 504526. + * Sun Jul 05 2009 Warren Togami - 1.6.4-1 - 1.6.4 maintenance release From ajax at fedoraproject.org Fri Jul 10 18:27:33 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Fri, 10 Jul 2009 18:27:33 +0000 (UTC) Subject: rpms/file/devel file.spec,1.100,1.101 Message-ID: <20090710182733.D0F1611C0489@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/file/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23229 Modified Files: file.spec Log Message: * Fri Jul 10 2009 Adam Jackson 5.03-4 - Clean up %description. Index: file.spec =================================================================== RCS file: /cvs/pkgs/rpms/file/devel/file.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- file.spec 16 Jun 2009 10:25:54 -0000 1.100 +++ file.spec 10 Jul 2009 18:27:33 -0000 1.101 @@ -25,9 +25,6 @@ type of data contained by the file. Fil file types, including ELF binaries, system libraries, RPM packages, and different graphics formats. -You should install the file package, since the file command is such a -useful utility. - %package libs Summary: Libraries for applications using libmagic Group: Applications/File @@ -140,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 10 2009 Adam Jackson 5.03-4 +- Clean up %%description. + * Tue Jun 16 2009 Daniel Novotny 5.03-4 - one more PostScript font magic added (#505762), updated font patch From limb at fedoraproject.org Fri Jul 10 18:34:01 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 10 Jul 2009 18:34:01 +0000 (UTC) Subject: rpms/wesnoth/F-11 wesnoth-1.6.4-fribidi.patch, NONE, 1.1 wesnoth.spec, 1.79, 1.80 Message-ID: <20090710183401.33F4611C0489@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/wesnoth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25892 Modified Files: wesnoth.spec Added Files: wesnoth-1.6.4-fribidi.patch Log Message: Fribidi patch, BZ 504526. wesnoth-1.6.4-fribidi.patch: --- NEW FILE wesnoth-1.6.4-fribidi.patch --- --- configure.ac 2009-06-08 00:24:52.604753218 +0300 +++ configure.ac 2009-06-08 00:25:05.257753171 +0300 @@ -404,19 +404,7 @@ fi # fribidi-config -AC_PATH_PROGS([FRIBIDI_CONFIG], [fribidi-config], [none]) - -if test "x$FRIBIDI_CONFIG" = "xnone"; then - fribidifound=no - AC_MSG_WARN([*** FRIBIDI not found.]) -else - fribidifound=yes - FRIBIDI_CFLAGS=`$FRIBIDI_CONFIG --cflags` - FRIBIDI_LIBS=`$FRIBIDI_CONFIG --libs` -fi - -AC_SUBST([FRIBIDI_CFLAGS]) -AC_SUBST([FRIBIDI_LIBS]) +PKG_CHECK_MODULES([FRIBIDI], [fribidi],[fribidifound=yes],[fribidifound=no]) AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes -a "x$fribidi" = xyes ]) # python --- src/font.cpp 2009-03-15 18:50:42.000000000 +0200 +++ src/font.cpp 2009-06-08 00:19:56.884753434 +0300 @@ -50,9 +50,6 @@ #ifdef HAVE_FRIBIDI #include - -#else - #endif namespace { @@ -467,16 +464,16 @@ private: void text_surface::bidi_cvt() { char *c_str = const_cast(str_.c_str()); // fribidi forgot const... - int len = str_.length(); + FriBidiStrIndex len = str_.length(); FriBidiChar *bidi_logical = new FriBidiChar[len + 2]; FriBidiChar *bidi_visual = new FriBidiChar[len + 2]; char *utf8str = new char[4*len + 1]; //assume worst case here (all 4 Byte characters) FriBidiCharType base_dir = FRIBIDI_TYPE_ON; - int n; + FriBidiStrIndex n; - n = fribidi_utf8_to_unicode (c_str, len, bidi_logical); + n = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, c_str, len, bidi_logical); fribidi_log2vis(bidi_logical, n, &base_dir, bidi_visual, NULL, NULL, NULL); - fribidi_unicode_to_utf8 (bidi_visual, n, utf8str); + fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, bidi_visual, n, utf8str); is_rtl_ = base_dir == FRIBIDI_TYPE_RTL; str_ = std::string(utf8str); delete[] bidi_logical; Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-11/wesnoth.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- wesnoth.spec 6 Jul 2009 02:25:55 -0000 1.79 +++ wesnoth.spec 10 Jul 2009 18:33:30 -0000 1.80 @@ -1,6 +1,6 @@ Name: wesnoth Version: 1.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turn-based strategy game with a fantasy theme Group: Amusements/Games @@ -11,6 +11,7 @@ Source1: wesnothd.init Source2: %{name}.sysconfig Patch0: %{name}-1.2.8-gcc43.patch Patch1: wesnoth-1.5.11-remove-ogg-test.patch +Patch2: wesnoth-1.6.4-fribidi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: wesnoth-data = %{version} @@ -86,6 +87,7 @@ This package contains the data files for %setup -qn wesnoth-%{version} %patch0 -p1 -b .gcc43 %patch1 -p0 +%patch2 -p0 autoreconf @@ -251,6 +253,9 @@ fi #%endif %changelog +* Fri Jul 10 2009 Jon Ciesla - 1.6.4-2 +- Fribidi patch, BZ 504526. + * Sun Jul 05 2009 Warren Togami - 1.6.4-1 - 1.6.4 maintenance release From jussilehtola at fedoraproject.org Fri Jul 10 18:35:11 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 18:35:11 +0000 (UTC) Subject: rpms/unetbootin/devel import.log, NONE, 1.1 unetbootin.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710183511.99C3711C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26831/devel Modified Files: .cvsignore sources Added Files: import.log unetbootin.spec Log Message: Imported in Fedora. --- NEW FILE import.log --- unetbootin-0-2_356bzr_fc11:HEAD:unetbootin-0-2.356bzr.fc11.src.rpm:1247250507 --- NEW FILE unetbootin.spec --- %global rel 356 Name: unetbootin Version: 0 Release: 2.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: desktop-file-utils BuildRequires: qt4-devel # Not picked up automatically, required for operation Requires: p7zip-plugins Requires: syslinux %description UNetbootin allows you to create bootable Live USB drives for a variety of Linux distributions from Windows or Linux, without requiring you to burn a CD. You can either let it download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you've already downloaded one or your preferred distribution isn't on the list. %prep %setup -q -c # Fix EOL encoding for file in README.TXT; do sed "s|\r||g" $file > $file.new && \ touch -r $file $file.new && \ mv $file.new $file done # Fix desktop file sed -i '/^Version/d' unetbootin.desktop sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build qmake-qt4 make %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.TXT %{_bindir}/unetbootin %{_datadir}/applications/unetbootin.desktop %changelog * Fri Jul 10 2009 Jussi Lehtola - 0-2.356bzr - Fixed source URL. - Changed Req: p7zip to p7zip-plugins. - Use included desktop file. * Fri Jul 10 2009 Jussi Lehtola - 0-1.356bzr - First release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 18:12:57 -0000 1.1 +++ .cvsignore 10 Jul 2009 18:35:10 -0000 1.2 @@ -0,0 +1 @@ +unetbootin-source-356.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:57 -0000 1.1 +++ sources 10 Jul 2009 18:35:11 -0000 1.2 @@ -0,0 +1 @@ +4a8e72ab32afbb8564519a211c798f71 unetbootin-source-356.tar.gz From kasal at fedoraproject.org Fri Jul 10 18:38:10 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Fri, 10 Jul 2009 18:38:10 +0000 (UTC) Subject: rpms/perl/devel perl-bz509676.patch, NONE, 1.1 perl-skip-prereq.patch, NONE, 1.1 perl-update-Scalar-List-Utils.patch, NONE, 1.1 perl.spec, 1.223, 1.224 Message-ID: <20090710183810.8A9F511C0489@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27967 Modified Files: perl.spec Added Files: perl-bz509676.patch perl-skip-prereq.patch perl-update-Scalar-List-Utils.patch Log Message: - fix generated .ph files so that they no longer cause warnings (#509676) - remove PREREQ_FATAL from Makefile.PL's processed by miniperl - update to latest Scalar-List-Utils (#507378) - perl-skip-prereq.patch: skip more prereq declarations in Makefile.PL files perl-bz509676.patch: --- NEW FILE perl-bz509676.patch --- commit 345d607e7958b7f31d5f0c780e86d1cc3e658d99 Author: Niko Tyni Date: Tue Apr 14 22:55:34 2009 +0300 Squelch 'Constant subroutine ... undefined' warnings from .ph files As reported by Christopher Zimmermann in , code generated from simple #undef directives by h2ph can cause 'Constant subroutine ... undefined' warnings if the undefined function was eligible for inlining. (cherry picked from commit c0cc52e96e988526754ef533bd76595720660db2) commit 2d375d52dd1895b26a80209dd64a3c11b9e3b532 Author: Niko Tyni Date: Tue Apr 14 22:55:33 2009 +0300 Add tests to verify that h2ph output compiles and is warning free The #include directives are #ifdef'd out so that running the resulting code does not actually need the headers. We still get the same effect from comparing with the expected h2ph output. (cherry picked from commit c1a2df7619e7315b8fccef3b9fa56bb8d7df3845) diff --git a/lib/h2ph.t b/lib/h2ph.t index 7b339b3..e303406 100755 --- a/lib/h2ph.t +++ b/lib/h2ph.t @@ -15,7 +15,7 @@ if (!(-e $extracted_program)) { exit 0; } -print "1..2\n"; +print "1..4\n"; # quickly compare two text files sub txt_compare { @@ -32,6 +32,14 @@ print(($ok == 0 ? "" : "not "), "ok 1\n"); $ok = txt_compare("lib/h2ph.ph", "lib/h2ph.pht"); print(($ok == 0 ? "" : "not "), "ok 2\n"); +# does the output compile? +$ok = system($^X, "-I../lib", "lib/h2ph.pht"); +print(($ok == 0 ? "" : "not "), "ok 3\n"); + +# is the output warning free? +$ok = system($^X, "-w", "-I../lib", "-e", '$SIG{__WARN__} = sub { die $_[0] }; require "lib/h2ph.pht"'); +print(($ok == 0 ? "" : "not "), "ok 4\n"); + # cleanup - should this be in an END block? unlink("lib/h2ph.ph"); unlink("_h2ph_pre.ph"); diff --git a/t/lib/h2ph.h b/t/lib/h2ph.h index 495789a..78429ca 100644 --- a/t/lib/h2ph.h +++ b/t/lib/h2ph.h @@ -26,6 +26,10 @@ #undef MAX #define MAX(a,b) ((a) > (b) ? (a) : (b)) +/* Test #undef'ining an existing constant function */ +#define NOTTRUE 0 +#undef NOTTRUE + /* Test #ifdef */ #ifdef __SOME_UNIMPORTANT_PROPERTY #define MIN(a,b) ((a) < (b) ? (a) : (b)) @@ -68,9 +72,11 @@ function Tru64_Pascal(n: Integer): Integer; * with `use lib qw(/opt/perl5/lib/site_perl/i586-linux/linux);' or whatever * your equivalent is... */ +#if 0 #include #import "sys/ioctl.h" #include_next +#endif /* typedefs should be ignored */ typedef struct a_struct { diff --git a/t/lib/h2ph.pht b/t/lib/h2ph.pht index 145e682..3723fca 100644 --- a/t/lib/h2ph.pht +++ b/t/lib/h2ph.pht @@ -1,6 +1,6 @@ require '_h2ph_pre.ph'; -no warnings 'redefine'; +no warnings qw(redefine misc); unless(defined(&SQUARE)) { sub SQUARE { @@ -22,6 +22,8 @@ unless(defined(&_H2PH_H_)) { my($a,$b) = @_; eval q((($a) > ($b) ? ($a) : ($b))); }' unless defined(&MAX); + eval 'sub NOTTRUE () {0;}' unless defined(&NOTTRUE); + undef(&NOTTRUE) if defined(&NOTTRUE); if(defined(&__SOME_UNIMPORTANT_PROPERTY)) { eval 'sub MIN { my($a,$b) = @_; @@ -47,15 +49,17 @@ unless(defined(&_H2PH_H_)) { } else { eval 'sub WHATEVER () {1000;}' unless defined(&WHATEVER); } - require 'sys/socket.ph'; - require 'sys/ioctl.ph'; - eval { - my(@REM); - my(%INCD) = map { $INC{$_} => 1 } (grep { $_ eq "sys/fcntl.ph" } keys(%INC)); - @REM = map { "$_/sys/fcntl.ph" } (grep { not exists($INCD{"$_/sys/fcntl.ph"}) and -f "$_/sys/fcntl.ph" } @INC); - require "$REM[0]" if @REM; - }; - warn($@) if $@; + if(0) { + require 'sys/socket.ph'; + require 'sys/ioctl.ph'; + eval { + my(@REM); + my(%INCD) = map { $INC{$_} => 1 } (grep { $_ eq "sys/fcntl.ph" } keys(%INC)); + @REM = map { "$_/sys/fcntl.ph" } (grep { not exists($INCD{"$_/sys/fcntl.ph"}) and -f "$_/sys/fcntl.ph" } @INC); + require "$REM[0]" if @REM; + }; + warn($@) if $@; + } eval("sub sun () { 0; }") unless defined(&sun); eval("sub mon () { 1; }") unless defined(&mon); eval("sub tue () { 2; }") unless defined(&tue); diff --git a/utils/h2ph.PL b/utils/h2ph.PL index 6f40126..4e99a7a 100644 --- a/utils/h2ph.PL +++ b/utils/h2ph.PL @@ -123,7 +123,7 @@ while (defined (my $file = next_file())) { print OUT "require '_h2ph_pre.ph';\n\n", - "no warnings 'redefine';\n\n"; + "no warnings qw(redefine misc);\n\n"; while (defined (local $_ = next_line($file))) { if (s/^\s*\#\s*//) { perl-skip-prereq.patch: --- NEW FILE perl-skip-prereq.patch --- --- perl-5.10.0/ext/Math/BigInt/FastCalc/Makefile.PL 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/Math/BigInt/FastCalc/Makefile.PL 2009-07-10 15:37:39.000000000 +0200 @@ -2,12 +2,18 @@ use strict; +unless($ENV{PERL_CORE}) { + $ENV{PERL_CORE} = 1 if grep { $_ eq 'PERL_CORE=1' } @ARGV; +} + WriteMakefile( 'NAME' => 'Math::BigInt::FastCalc', 'VERSION_FROM' => 'FastCalc.pm', - 'PREREQ_PM' => { - 'Math::BigInt' => 1.88, - }, + ( + $ENV{PERL_CORE} + ? ( ) + : ('PREREQ_PM' => { 'Math::BigInt' => 1.88, } ) + ), INSTALLDIRS => 'perl', PREREQ_FATAL => 1, MAN3PODS => {}, perl-update-Scalar-List-Utils.patch: --- NEW FILE perl-update-Scalar-List-Utils.patch --- Scalar-List-Utils-1.21 Makefile.PL patched to build Util.so instead of ListUtil.so diff -urN perl-5.10.0.orig/MANIFEST perl-5.10.0/MANIFEST --- perl-5.10.0.orig/MANIFEST 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/MANIFEST 2009-07-10 12:34:47.000000000 +0200 @@ -842,6 +842,7 @@ ext/List/Util/t/00version.t Scalar::Util ext/List/Util/t/blessed.t Scalar::Util ext/List/Util/t/dualvar.t Scalar::Util +ext/List/Util/t/expfail.t Scalar::Util ext/List/Util/t/first.t List::Util ext/List/Util/t/isvstring.t Scalar::Util ext/List/Util/t/lln.t Scalar::Util @@ -850,6 +851,7 @@ ext/List/Util/t/minstr.t List::Util ext/List/Util/t/min.t List::Util ext/List/Util/t/openhan.t Scalar::Util +ext/List/Util/t/p_00version.t Scalar::Util ext/List/Util/t/p_blessed.t Scalar::Util ext/List/Util/t/p_first.t List::Util ext/List/Util/t/p_lln.t Scalar::Util @@ -871,6 +873,7 @@ ext/List/Util/t/refaddr.t Scalar::Util ext/List/Util/t/reftype.t Scalar::Util ext/List/Util/t/shuffle.t List::Util +ext/List/Util/t/stack-corruption.t List::Util ext/List/Util/t/sum.t List::Util ext/List/Util/t/tainted.t Scalar::Util ext/List/Util/t/weak.t Scalar::Util diff -urN perl-5.10.0.orig/ext/List/Util/Changes perl-5.10.0/ext/List/Util/Changes --- perl-5.10.0.orig/ext/List/Util/Changes 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/Changes 2009-07-08 17:22:59.000000000 +0200 @@ -1,3 +1,25 @@ +1.21 -- Mon May 18 10:32:14 CDT 2009 + + * Change build system for perl-only install not to need to modify blib + * When building inside perl, tests for weaken should be always run (Alexandr Ciornii) + +1.20 -- Wed May 13 16:42:53 CDT 2009 + +*** NOTE*** +This distribution now requires perl 5.6 or greater + +Bug Fixes + * Fixed stack pop issue in POP_MULTICALL + * Fixed error reporting in import when XS not compiled + * Check first argument to reduce is a CODE reference to avoid segfault + * Handle overloaded and tied values + * Fix tainted test to run on Win32 + +Enhancements + * Added List::Util::XS so authors can depend on XS version + * Removed need for dummy methods in UNIVERSAL for perl-only code + + 1.19 -- Sun Dec 10 09:58:03 CST 2006 Bug Fixes diff -urN perl-5.10.0.orig/ext/List/Util/Makefile.PL perl-5.10.0/ext/List/Util/Makefile.PL --- perl-5.10.0.orig/ext/List/Util/Makefile.PL 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/Makefile.PL 2009-05-15 04:54:09.000000000 +0200 @@ -1,47 +1,86 @@ +# -*- perl -*- +BEGIN { require 5.006; } # allow CPAN testers to get the point +use strict; +use warnings; +use Config; +use File::Spec; use ExtUtils::MakeMaker; +my $PERL_CORE = grep { $_ eq 'PERL_CORE=1' } @ARGV; + +my $do_xs = $PERL_CORE || can_cc(); + +for (@ARGV) { + /^-pm/ and $do_xs = 0; + /^-xs/ and $do_xs = 1; +} WriteMakefile( - VERSION_FROM => "lib/List/Util.pm", - MAN3PODS => {}, # Pods will be built by installman. - NAME => "List::Util", - DEFINE => "-DPERL_EXT", + NAME => q[List::Util], + ABSTRACT => q[Common Scalar and List utility subroutines], + AUTHOR => q[Graham Barr ], + DEFINE => q[-DPERL_EXT], + DISTNAME => q[Scalar-List-Utils], + VERSION_FROM => 'lib/List/Util.pm', + + # We go through the ListUtil.xs trickery to foil platforms + # that have the feature combination of + # (1) static builds + # (2) allowing only one object by the same name in the static library + # (3) the object name matching being case-blind + # This means that we can't have the top-level util.o + # and the extension-level Util.o in the same build. + # One such platform is the POSIX-BC BS2000 EBCDIC mainframe platform. + XS => {'Util.xs' => 'Util.c'}, + OBJECT => 'Util$(OBJ_EXT)', + ( $PERL_CORE + ? () + : ( + INSTALLDIRS => q[perl], + PREREQ_PM => {'Test::More' => 0,}, + (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()), + ($do_xs ? () : (XS => {}, C => [], OBJECT => '')), + ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? ( + META_MERGE => { + resources => { ## + repository => 'http://github.com/gbarr/Scalar-List-Utils', + }, + } + ) + : () + ), + ) + ), ); -package MY; -# We go through the ListUtil.c trickery to foil platforms -# that have the feature combination of -# (1) static builds -# (2) allowing only one object by the same name in the static library -# (3) the object name matching being case-blind -# This means that we can't have the top-level util.o -# and the extension-level Util.o in the same build. -# One such platform is the POSIX-BC BS2000 EBCDIC mainframe platform. - -BEGIN { - use Config; - unless (defined $Config{usedl}) { - eval <<'__EOMM__'; -sub xs_c { - my($self) = shift; - return '' unless $self->needs_linking(); -' -ListUtil.c: Util.xs - $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) Util.xs > ListUtil.xsc && $(MV) ListUtil.xsc ListUtil.c -'; -} +sub can_cc { + + foreach my $cmd (split(/ /, $Config::Config{cc})) { + my $_cmd = $cmd; + return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd)); + + for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') { + my $abs = File::Spec->catfile($dir, $_[1]); + return $abs if (-x $abs or $abs = MM->maybe_command($abs)); + } + } -sub xs_o { - my($self) = shift; - return '' unless $self->needs_linking(); -' - -Util$(OBJ_EXT): ListUtil.c - $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) ListUtil.c - $(MV) ListUtil$(OBJ_EXT) Util$(OBJ_EXT) -'; + return; } -__EOMM__ - } +package MY; + +sub init_PM { + my $self = shift; + + $self->SUPER::init_PM(@_); + + return if $do_xs; + + my $pm = $self->{PM}; + my $pm_file = File::Spec->catfile(qw(lib List Util XS.pm)); + + # When installing pure perl, install XS.pp as XS.pm + $self->{PM}{'XS.pp'} = delete $self->{PM}{$pm_file}; } + diff -urN perl-5.10.0.orig/ext/List/Util/Util.xs perl-5.10.0/ext/List/Util/Util.xs --- perl-5.10.0.orig/ext/List/Util/Util.xs 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/Util.xs 2009-05-13 23:59:43.000000000 +0200 @@ -147,18 +147,38 @@ int index; NV retval; SV *retsv; + int magic; if(!items) { XSRETURN_UNDEF; } retsv = ST(0); - retval = slu_sv_value(retsv); + magic = SvAMAGIC(retsv); + if (!magic) { + retval = slu_sv_value(retsv); + } for(index = 1 ; index < items ; index++) { SV *stacksv = ST(index); - NV val = slu_sv_value(stacksv); - if(val < retval ? !ix : ix) { - retsv = stacksv; - retval = val; - } + SV *tmpsv; + if ((magic || SvAMAGIC(stacksv)) && (tmpsv = amagic_call(retsv, stacksv, gt_amg, 0))) { + if (SvTRUE(tmpsv) ? !ix : ix) { + retsv = stacksv; + magic = SvAMAGIC(retsv); + if (!magic) { + retval = slu_sv_value(retsv); + } + } + } + else { + NV val = slu_sv_value(stacksv); + if (magic) { + retval = slu_sv_value(retsv); + magic = 0; + } + if(val < retval ? !ix : ix) { + retsv = stacksv; + retval = val; + } + } } ST(0) = retsv; XSRETURN(1); @@ -166,25 +186,49 @@ -NV +void sum(...) PROTOTYPE: @ CODE: { SV *sv; + SV *retsv = NULL; int index; + int magic; + NV retval = 0; if(!items) { XSRETURN_UNDEF; } sv = ST(0); - RETVAL = slu_sv_value(sv); + if (SvAMAGIC(sv)) { + retsv = sv_newmortal(); + sv_setsv(retsv, sv); + } + else { + retval = slu_sv_value(sv); + } for(index = 1 ; index < items ; index++) { sv = ST(index); - RETVAL += slu_sv_value(sv); + if (retsv || SvAMAGIC(sv)) { + if (!retsv) { + retsv = sv_newmortal(); + sv_setnv(retsv,retval); + } + if (!amagic_call(retsv, sv, add_amg, AMGf_assign)) { + sv_setnv(retsv, SvNV(retsv) + SvNV(sv)); + } + } + else { + retval += slu_sv_value(sv); + } + } + if (!retsv) { + retsv = sv_newmortal(); + sv_setnv(retsv,retval); } + ST(0) = retsv; + XSRETURN(1); } -OUTPUT: - RETVAL void @@ -252,6 +296,9 @@ XSRETURN_UNDEF; } cv = sv_2cv(block, &stash, &gv, 0); + if (cv == Nullcv) { + croak("Not a subroutine reference"); + } PUSH_MULTICALL(cv); agv = gv_fetchpv("a", TRUE, SVt_PV); bgv = gv_fetchpv("b", TRUE, SVt_PV); @@ -485,6 +532,13 @@ SV *sv PROTOTYPE: $ CODE: + SV *tempsv; + if (SvAMAGIC(sv) && (tempsv = AMG_CALLun(sv, numer))) { + sv = tempsv; + } + else if (SvMAGICAL(sv)) { + SvGETMAGIC(sv); + } #if (PERL_VERSION < 8) || (PERL_VERSION == 8 && PERL_SUBVERSION <5) if (SvPOK(sv) || SvPOKp(sv)) { RETVAL = looks_like_number(sv); diff -urN perl-5.10.0.orig/ext/List/Util/lib/List/Util/PP.pm perl-5.10.0/ext/List/Util/lib/List/Util/PP.pm --- perl-5.10.0.orig/ext/List/Util/lib/List/Util/PP.pm 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/lib/List/Util/PP.pm 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,75 @@ +# List::Util::PP.pm +# +# Copyright (c) 1997-2009 Graham Barr . All rights reserved. +# This program is free software; you can redistribute it and/or +# modify it under the same terms as Perl itself. + +package List::Util::PP; + +use strict; +use warnings; +use vars qw(@ISA @EXPORT $VERSION $a $b); +require Exporter; + + at ISA = qw(Exporter); + at EXPORT = qw(first min max minstr maxstr reduce sum shuffle); +$VERSION = "1.21"; +$VERSION = eval $VERSION; + +sub reduce (&@) { + my $code = shift; + unless(ref($code)) { + require Carp; + Carp::croak("Not a subroutine reference"); + } + no strict 'refs'; + + return shift unless @_ > 1; + + use vars qw($a $b); + + my $caller = caller; + local(*{$caller."::a"}) = \my $a; + local(*{$caller."::b"}) = \my $b; + + $a = shift; + foreach (@_) { + $b = $_; + $a = &{$code}(); + } + + $a; +} + +sub first (&@) { + my $code = shift; + + foreach (@_) { + return $_ if &{$code}(); + } + + undef; +} + + +sub sum (@) { reduce { $a + $b } @_ } + +sub min (@) { reduce { $a < $b ? $a : $b } @_ } + +sub max (@) { reduce { $a > $b ? $a : $b } @_ } + +sub minstr (@) { reduce { $a lt $b ? $a : $b } @_ } + +sub maxstr (@) { reduce { $a gt $b ? $a : $b } @_ } + +sub shuffle (@) { + my @a=\(@_); + my $n; + my $i=@_; + map { + $n = rand($i--); + (${$a[$n]}, $a[$n] = $a[$i])[0]; + } @_; +} + +1; diff -urN perl-5.10.0.orig/ext/List/Util/lib/List/Util/XS.pm perl-5.10.0/ext/List/Util/lib/List/Util/XS.pm --- perl-5.10.0.orig/ext/List/Util/lib/List/Util/XS.pm 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/lib/List/Util/XS.pm 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,45 @@ +package List::Util::XS; +use strict; +use vars qw($VERSION); +use List::Util; + +$VERSION = "1.21"; # FIXUP +$VERSION = eval $VERSION; # FIXUP + +sub _VERSION { # FIXUP + require Carp; + Carp::croak("You need to install Scalar-List-Utils with a C compiler to ensure the XS is compiled") + if defined $_[1]; + $VERSION; +} + +1; +__END__ + +=head1 NAME + +List::Util::XS - Indicate if List::Util was compiled with a C compiler + +=head1 SYNOPSIS + + use List::Util::XS 1.20; + +=head1 DESCRIPTION + +C can be used as a dependency to ensure List::Util was +installed using a C compiler and that the XS version is installed. + +During installation C<$List::Util::XS::VERSION> will be set to +C if the XS was not compiled. + +=head1 SEE ALSO + +L, L, L + +=head1 COPYRIGHT + +Copyright (c) 2008 Graham Barr . All rights reserved. +This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +=cut diff -urN perl-5.10.0.orig/ext/List/Util/lib/List/Util.pm perl-5.10.0/ext/List/Util/lib/List/Util.pm --- perl-5.10.0.orig/ext/List/Util/lib/List/Util.pm 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/lib/List/Util.pm 2009-07-08 17:22:59.000000000 +0200 @@ -1,8 +1,10 @@ # List::Util.pm # -# Copyright (c) 1997-2006 Graham Barr . All rights reserved. +# Copyright (c) 1997-2009 Graham Barr . All rights reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. +# +# This module is normally only loaded if the XS module is not available package List::Util; @@ -12,7 +14,7 @@ @ISA = qw(Exporter); @EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle); -$VERSION = "1.19"; +$VERSION = "1.21"; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -32,73 +34,11 @@ } unless $TESTING_PERL_ONLY; -# This code is only compiled if the XS did not load -# of for perl < 5.6.0 - -if (!defined &reduce) { -eval <<'ESQ' - -sub reduce (&@) { - my $code = shift; - no strict 'refs'; - - return shift unless @_ > 1; - - use vars qw($a $b); - - my $caller = caller; - local(*{$caller."::a"}) = \my $a; - local(*{$caller."::b"}) = \my $b; - - $a = shift; - foreach (@_) { - $b = $_; - $a = &{$code}(); - } - - $a; -} - -sub first (&@) { - my $code = shift; - - foreach (@_) { - return $_ if &{$code}(); - } - - undef; -} - -ESQ -} - -# This code is only compiled if the XS did not load -eval <<'ESQ' if !defined ∑ - -use vars qw($a $b); - -sub sum (@) { reduce { $a + $b } @_ } - -sub min (@) { reduce { $a < $b ? $a : $b } @_ } - -sub max (@) { reduce { $a > $b ? $a : $b } @_ } - -sub minstr (@) { reduce { $a lt $b ? $a : $b } @_ } - -sub maxstr (@) { reduce { $a gt $b ? $a : $b } @_ } - -sub shuffle (@) { - my @a=\(@_); - my $n; - my $i=@_; - map { - $n = rand($i--); - (${$a[$n]}, $a[$n] = $a[$i])[0]; - } @_; +if (!defined &sum) { + require List::Util::PP; + List::Util::PP->import; } -ESQ - 1; __END__ @@ -212,6 +152,12 @@ $foo = reduce { $a + $b } 1 .. 10 # sum $foo = reduce { $a . $b } @bar # concat +If your algorithm requires that C produce an identity value, then +make sure that you always pass that identity value as the first argument to prevent +C being returned + + $foo = reduce { $a + $b } 0, @values; # sum with 0 identity value + =item shuffle LIST Returns the elements of LIST in a random order @@ -231,6 +177,12 @@ $foo = reduce { $a + $b } 1..10 +If your algorithm requires that C produce an identity of 0, then +make sure that you always pass C<0> as the first argument to prevent +C being returned + + $foo = sum 0, @values; + =back =head1 KNOWN BUGS @@ -274,7 +226,7 @@ =head1 COPYRIGHT -Copyright (c) 1997-2006 Graham Barr . All rights reserved. +Copyright (c) 1997-2007 Graham Barr . All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff -urN perl-5.10.0.orig/ext/List/Util/lib/Scalar/Util/PP.pm perl-5.10.0/ext/List/Util/lib/Scalar/Util/PP.pm --- perl-5.10.0.orig/ext/List/Util/lib/Scalar/Util/PP.pm 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/lib/Scalar/Util/PP.pm 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,109 @@ +# Scalar::Util::PP.pm +# +# Copyright (c) 1997-2009 Graham Barr . All rights reserved. +# This program is free software; you can redistribute it and/or +# modify it under the same terms as Perl itself. +# +# This module is normally only loaded if the XS module is not available + +package Scalar::Util::PP; + +use strict; +use warnings; +use vars qw(@ISA @EXPORT $VERSION $recurse); +require Exporter; +use B qw(svref_2object); + + at ISA = qw(Exporter); + at EXPORT = qw(blessed reftype tainted readonly refaddr looks_like_number); +$VERSION = "1.21"; +$VERSION = eval $VERSION; + +sub blessed ($) { + return undef unless length(ref($_[0])); + my $b = svref_2object($_[0]); + return undef unless $b->isa('B::PVMG'); + my $s = $b->SvSTASH; + return $s->isa('B::HV') ? $s->NAME : undef; +} + +sub refaddr($) { + return undef unless length(ref($_[0])); + + my $addr; + if(defined(my $pkg = blessed($_[0]))) { + $addr .= bless $_[0], 'Scalar::Util::Fake'; + bless $_[0], $pkg; + } + else { + $addr .= $_[0] + } + + $addr =~ /0x(\w+)/; + local $^W; + hex($1); +} + +{ + my %tmap = qw( + B::HV HASH + B::AV ARRAY + B::CV CODE + B::IO IO + B::NULL SCALAR + B::NV SCALAR + B::PV SCALAR + B::GV GLOB + B::RV REF + B::REGEXP REGEXP + ); + + sub reftype ($) { + my $r = shift; + + return undef unless length(ref($r)); + + my $t = ref(svref_2object($r)); + + return + exists $tmap{$t} ? $tmap{$t} + : length(ref($$r)) ? 'REF' + : 'SCALAR'; + } +} + +sub tainted { + local($@, $SIG{__DIE__}, $SIG{__WARN__}); + local $^W = 0; + no warnings; + eval { kill 0 * $_[0] }; + $@ =~ /^Insecure/; +} + +sub readonly { + return 0 if tied($_[0]) || (ref(\($_[0])) ne "SCALAR"); + + local($@, $SIG{__DIE__}, $SIG{__WARN__}); + my $tmp = $_[0]; + + !eval { $_[0] = $tmp; 1 }; +} + +sub looks_like_number { + local $_ = shift; + + # checks from perlfaq4 + return 0 if !defined($_); + if (ref($_)) { + require overload; + return overload::Overloaded($_) ? defined(0 + $_) : 0; + } + return 1 if (/^[+-]?\d+$/); # is a +/- integer + return 1 if (/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/); # a C float + return 1 if ($] >= 5.008 and /^(Inf(inity)?|NaN)$/i) or ($] >= 5.006001 and /^Inf$/i); + + 0; +} + + +1; diff -urN perl-5.10.0.orig/ext/List/Util/lib/Scalar/Util.pm perl-5.10.0/ext/List/Util/lib/Scalar/Util.pm --- perl-5.10.0.orig/ext/List/Util/lib/Scalar/Util.pm 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/lib/Scalar/Util.pm 2009-07-08 17:22:59.000000000 +0200 @@ -1,34 +1,46 @@ # Scalar::Util.pm # -# Copyright (c) 1997-2006 Graham Barr . All rights reserved. +# Copyright (c) 1997-2007 Graham Barr . All rights reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. package Scalar::Util; use strict; -use vars qw(@ISA @EXPORT_OK $VERSION); +use vars qw(@ISA @EXPORT_OK $VERSION @EXPORT_FAIL); require Exporter; require List::Util; # List::Util loads the XS @ISA = qw(Exporter); @EXPORT_OK = qw(blessed dualvar reftype weaken isweak tainted readonly openhandle refaddr isvstring looks_like_number set_prototype); -$VERSION = "1.19"; +$VERSION = "1.21"; $VERSION = eval $VERSION; +unless (defined &dualvar) { + # Load Pure Perl version if XS not loaded + require Scalar::Util::PP; + Scalar::Util::PP->import; + push @EXPORT_FAIL, qw(weaken isweak dualvar isvstring set_prototype); +} + sub export_fail { + if (grep { /dualvar/ } @EXPORT_FAIL) { # no XS loaded + my $pat = join("|", @EXPORT_FAIL); + if (my ($err) = grep { /^($pat)$/ } @_ ) { + require Carp; + Carp::croak("$err is only available with the XS version of Scalar::Util"); + } + } + if (grep { /^(weaken|isweak)$/ } @_ ) { require Carp; Carp::croak("Weak references are not implemented in the version of perl"); } + if (grep { /^(isvstring)$/ } @_ ) { require Carp; Carp::croak("Vstrings are not implemented in the version of perl"); } - if (grep { /^(dualvar|set_prototype)$/ } @_ ) { - require Carp; - Carp::croak("$1 is only avaliable with the XS version"); - } @_; } @@ -51,96 +63,6 @@ ? $fh : undef; } -eval <<'ESQ' unless defined &dualvar; - -use vars qw(@EXPORT_FAIL); -push @EXPORT_FAIL, qw(weaken isweak dualvar isvstring set_prototype); - -# The code beyond here is only used if the XS is not installed - -# Hope nobody defines a sub by this name -sub UNIVERSAL::a_sub_not_likely_to_be_here { ref($_[0]) } - -sub blessed ($) { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - length(ref($_[0])) - ? eval { $_[0]->a_sub_not_likely_to_be_here } - : undef -} - -sub refaddr($) { - my $pkg = ref($_[0]) or return undef; - if (blessed($_[0])) { - bless $_[0], 'Scalar::Util::Fake'; - } - else { - $pkg = undef; - } - "$_[0]" =~ /0x(\w+)/; - my $i = do { local $^W; hex $1 }; - bless $_[0], $pkg if defined $pkg; - $i; -} - -sub reftype ($) { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - my $r = shift; - my $t; - - length($t = ref($r)) or return undef; - - # This eval will fail if the reference is not blessed - eval { $r->a_sub_not_likely_to_be_here; 1 } - ? do { - $t = eval { - # we have a GLOB or an IO. Stringify a GLOB gives it's name - my $q = *$r; - $q =~ /^\*/ ? "GLOB" : "IO"; - } - or do { - # OK, if we don't have a GLOB what parts of - # a glob will it populate. - # NOTE: A glob always has a SCALAR - local *glob = $r; - defined *glob{ARRAY} && "ARRAY" - or defined *glob{HASH} && "HASH" - or defined *glob{CODE} && "CODE" - or length(ref(${$r})) ? "REF" : "SCALAR"; - } - } - : $t -} - -sub tainted { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - local $^W = 0; - eval { kill 0 * $_[0] }; - $@ =~ /^Insecure/; -} - -sub readonly { - return 0 if tied($_[0]) || (ref(\($_[0])) ne "SCALAR"); - - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - my $tmp = $_[0]; - - !eval { $_[0] = $tmp; 1 }; -} - -sub looks_like_number { - local $_ = shift; - - # checks from perlfaq4 - return 0 if !defined($_) or ref($_); - return 1 if (/^[+-]?\d+$/); # is a +/- integer - return 1 if (/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/); # a C float - return 1 if ($] >= 5.008 and /^(Inf(inity)?|NaN)$/i) or ($] >= 5.006001 and /^Inf$/i); - - 0; -} - -ESQ - 1; __END__ @@ -153,6 +75,7 @@ use Scalar::Util qw(blessed dualvar isweak readonly refaddr reftype tainted weaken isvstring looks_like_number set_prototype); + # and other useful utils appearing below =head1 DESCRIPTION @@ -209,7 +132,7 @@ B: Copying a weak reference creates a normal, strong, reference. $copy = $ref; - $weak = isweak($ref); # false + $weak = isweak($copy); # false =item looks_like_number EXPR @@ -310,6 +233,32 @@ =back +=head1 DIAGNOSTICS + +Module use may give one of the following errors during import. + +=over + +=item Weak references are not implemented in the version of perl + +The version of perl that you are using does not implement weak references, to use +C or C you will need to use a newer release of perl. + +=item Vstrings are not implemented in the version of perl + +The version of perl that you are using does not implement Vstrings, to use +C you will need to use a newer release of perl. + +=item C is only available with the XS version of Scalar::Util + +C contains both perl and C implementations of many of its functions +so that those without access to a C compiler may still use it. However some of the functions +are only available when a C compiler was available to compile the XS version of the extension. + +At present that list is: weaken, isweak, dualvar, isvstring, set_prototype + +=back + =head1 KNOWN BUGS There is a bug in perl5.6.0 with UV's that are >= 1<<31. This will @@ -321,7 +270,7 @@ =head1 COPYRIGHT -Copyright (c) 1997-2006 Graham Barr . All rights reserved. +Copyright (c) 1997-2007 Graham Barr . All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. @@ -331,11 +280,4 @@ This program is free software; you can redistribute it and/or modify it under the same terms as perl itself. -=head1 BLATANT PLUG - -The weaken and isweak subroutines in this module and the patch to the core Perl -were written in connection with the APress book `Tuomas J. Lukka's Definitive -Guide to Object-Oriented Programming in Perl', to avoid explaining why certain -things would have to be done in cumbersome ways. - =cut diff -urN perl-5.10.0.orig/ext/List/Util/t/00version.t perl-5.10.0/ext/List/Util/t/00version.t --- perl-5.10.0.orig/ext/List/Util/t/00version.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/00version.t 2009-07-08 17:22:59.000000000 +0200 @@ -15,8 +15,11 @@ use Scalar::Util (); use List::Util (); -use Test::More tests => 1; +use List::Util::XS (); +use Test::More tests => 2; is( $Scalar::Util::VERSION, $List::Util::VERSION, "VERSION mismatch"); - +my $has_xs = eval { Scalar::Util->import('dualvar'); 1 }; +my $xs_version = $has_xs ? $List::Util::VERSION : undef; +is( $List::Util::XS::VERSION, $xs_version, "XS VERSION"); diff -urN perl-5.10.0.orig/ext/List/Util/t/blessed.t perl-5.10.0/ext/List/Util/t/blessed.t --- perl-5.10.0.orig/ext/List/Util/t/blessed.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/blessed.t 2009-07-08 17:22:59.000000000 +0200 @@ -13,7 +13,7 @@ } } -use Test::More tests => 8; +use Test::More tests => 11; use Scalar::Util qw(blessed); use vars qw($t $x); @@ -29,3 +29,26 @@ $x = bless {}, "DEF"; is(blessed($x), "DEF", 'blessed HASH-ref'); + +$x = bless {}, "0"; +cmp_ok(blessed($x), "eq", "0", 'blessed HASH-ref'); + +{ + my $depth; + { + no warnings 'redefine'; + *UNIVERSAL::can = sub { die "Burp!" if ++$depth > 2; blessed(shift) }; + } + $x = bless {}, "DEF"; + is(blessed($x), "DEF", 'recursion of UNIVERSAL::can'); +} + +{ + package Broken; + sub isa { die }; + sub can { die }; + + my $obj = bless [], __PACKAGE__; + ::is( ::blessed($obj), __PACKAGE__, "blessed on broken isa() and can()" ); +} + diff -urN perl-5.10.0.orig/ext/List/Util/t/dualvar.t perl-5.10.0/ext/List/Util/t/dualvar.t --- perl-5.10.0.orig/ext/List/Util/t/dualvar.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/dualvar.t 2009-07-08 17:22:59.000000000 +0200 @@ -42,9 +42,12 @@ ok( $var == $numstr, 'NV'); -$var = dualvar(1<<31, ""); -ok( $var == (1<<31), 'UV 1'); -ok( $var > 0, 'UV 2'); +SKIP: { + skip("dualvar with UV value known to fail with $]",2) if $] < 5.006_001; + $var = dualvar(1<<31, ""); + ok( $var == (1<<31), 'UV 1'); + ok( $var > 0, 'UV 2'); +} tie my $tied, 'Tied'; $var = dualvar($tied, "ok"); diff -urN perl-5.10.0.orig/ext/List/Util/t/expfail.t perl-5.10.0/ext/List/Util/t/expfail.t --- perl-5.10.0.orig/ext/List/Util/t/expfail.t 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/expfail.t 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,29 @@ +#!./perl + +BEGIN { + unless (-d 'blib') { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + keys %Config; # Silence warning + if ($Config{extensions} !~ /\bList\/Util\b/) { + print "1..0 # Skip: List::Util was not built\n"; + exit 0; + } + } +} + +use Test::More tests => 3; +use strict; + +$List::Util::TESTING_PERL_ONLY = $List::Util::TESTING_PERL_ONLY = 1; +require Scalar::Util; + +for my $func (qw(dualvar set_prototype weaken)) { + eval { Scalar::Util->import($func); }; + like( + $@, + qr/$func is only available with the XS/, + "no pure perl $func: error raised", + ); +} diff -urN perl-5.10.0.orig/ext/List/Util/t/lln.t perl-5.10.0/ext/List/Util/t/lln.t --- perl-5.10.0.orig/ext/List/Util/t/lln.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/lln.t 2009-07-08 17:22:59.000000000 +0200 @@ -14,7 +14,7 @@ } use strict; -use Test::More tests => 16; +use Test::More tests => 18; use Scalar::Util qw(looks_like_number); foreach my $num (qw(1 -1 +1 1.0 +1.0 -1.0 -1.0e-12)) { @@ -31,7 +31,16 @@ use Math::BigInt; my $bi = Math::BigInt->new('1234567890'); -is(!!looks_like_number($bi), '', 'Math::BigInt'); +is(!!looks_like_number($bi), 1, 'Math::BigInt'); is(!!looks_like_number("$bi"), 1, 'Stringified Math::BigInt'); +{ package Foo; +sub TIEHASH { bless {} } +sub FETCH { $_[1] } +} +my %foo; +tie %foo, 'Foo'; +is(!!looks_like_number($foo{'abc'}), '', 'Tied'); +is(!!looks_like_number($foo{'123'}), 1, 'Tied'); + # We should copy some of perl core tests like t/base/num.t here diff -urN perl-5.10.0.orig/ext/List/Util/t/max.t perl-5.10.0/ext/List/Util/t/max.t --- perl-5.10.0.orig/ext/List/Util/t/max.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/max.t 2009-07-08 17:22:59.000000000 +0200 @@ -14,7 +14,7 @@ } use strict; -use Test::More tests => 5; +use Test::More tests => 8; use List::Util qw(max); my $v; @@ -34,3 +34,36 @@ my @b = sort { $a <=> $b } @a; $v = max(@a); is($v, $b[-1], '20-arg random order'); + +my $one = Foo->new(1); +my $two = Foo->new(2); +my $thr = Foo->new(3); + +$v = max($one,$two,$thr); +is($v, 3, 'overload'); + +$v = max($thr,$two,$one); +is($v, 3, 'overload'); + +{ package Foo; + +use overload + '""' => sub { ${$_[0]} }, + '+0' => sub { ${$_[0]} }, + fallback => 1; + sub new { + my $class = shift; + my $value = shift; + bless \$value, $class; + } +} + +SKIP: { + eval { require bignum; } or skip("Need bignum for testing overloading",1); + + my $v1 = 2**65; + my $v2 = $v1 - 1; + my $v3 = $v2 - 1; + $v = max($v1,$v2,$v1,$v3,$v1); + is($v, $v1, 'bigint'); +} diff -urN perl-5.10.0.orig/ext/List/Util/t/min.t perl-5.10.0/ext/List/Util/t/min.t --- perl-5.10.0.orig/ext/List/Util/t/min.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/min.t 2009-07-08 17:22:59.000000000 +0200 @@ -14,7 +14,7 @@ } use strict; -use Test::More tests => 5; +use Test::More tests => 8; use List::Util qw(min); my $v; @@ -34,3 +34,36 @@ my @b = sort { $a <=> $b } @a; $v = min(@a); is($v, $b[0], '20-arg random order'); + +my $one = Foo->new(1); +my $two = Foo->new(2); +my $thr = Foo->new(3); + +$v = min($one,$two,$thr); +is($v, 1, 'overload'); + +$v = min($thr,$two,$one); +is($v, 1, 'overload'); + +{ package Foo; + +use overload + '""' => sub { ${$_[0]} }, + '+0' => sub { ${$_[0]} }, + fallback => 1; + sub new { + my $class = shift; + my $value = shift; + bless \$value, $class; + } +} + +SKIP: { + eval { require bignum; } or skip("Need bignum for testing overloading",1); + + my $v1 = 2**65; + my $v2 = $v1 - 1; + my $v3 = $v2 - 1; + $v = min($v1,$v2,$v1,$v3,$v1); + is($v, $v3, 'bigint'); +} diff -urN perl-5.10.0.orig/ext/List/Util/t/openhan.t perl-5.10.0/ext/List/Util/t/openhan.t --- perl-5.10.0.orig/ext/List/Util/t/openhan.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/openhan.t 2009-07-08 17:22:59.000000000 +0200 @@ -14,16 +14,76 @@ } use strict; -use vars qw(*CLOSED); -use Test::More tests => 4; + +use Test::More tests => 14; use Scalar::Util qw(openhandle); ok(defined &openhandle, 'defined'); -my $fh = \*STDERR; -is(openhandle($fh), $fh, 'STDERR'); +{ + my $fh = \*STDERR; + is(openhandle($fh), $fh, 'STDERR'); + + is(fileno(openhandle(*STDERR)), fileno(STDERR), 'fileno(STDERR)'); +} + +{ + use vars qw(*CLOSED); + is(openhandle(*CLOSED), undef, 'closed'); +} + +SKIP: { + skip "3-arg open only on 5.6 or later", 1 if $]<5.006; + + open my $fh, "<", $0; + skip "could not open $0 for reading: $!", 1 unless $fh; + is(openhandle($fh), $fh, "works with indirect filehandles"); +} -is(fileno(openhandle(*STDERR)), fileno(STDERR), 'fileno(STDERR)'); +SKIP: { + skip "in-memory files only on 5.8 or later", 1 if $]<5.008; + + open my $fh, "<", \"in-memory file"; + skip "could not open in-memory file: $!", 1 unless $fh; + is(openhandle($fh), $fh, "works with in-memory files"); +} -is(openhandle(*CLOSED), undef, 'closed'); +ok(openhandle(\*DATA), "works for \*DATA"); +ok(openhandle(*DATA), "works for *DATA"); +ok(openhandle(*DATA{IO}), "works for *DATA{IO}"); + +{ + require IO::Handle; + my $fh = IO::Handle->new_from_fd(fileno(*STDERR), 'w'); + skip "new_from_fd(fileno(*STDERR)) failed", 1 unless $fh; + ok(openhandle($fh), "works for IO::Handle objects"); + + ok(!openhandle(IO::Handle->new), "unopened IO::Handle"); +} + +{ + require IO::File; + my $fh = IO::File->new; + $fh->open("< $0") + or skip "could not open $0: $!", 1; + ok(openhandle($fh), "works for IO::File objects"); + + ok(!openhandle(IO::File->new), "unopened IO::File" ); +} + +SKIP: { + skip( "Tied handles only on 5.8 or later", 1) if $]<5.008; + + use vars qw(*H); + + package My::Tie; + require Tie::Handle; + @My::Tie::ISA = qw(Tie::Handle); + sub TIEHANDLE { bless {} } + + package main; + tie *H, 'My::Tie'; + ok(openhandle(*H), "tied handles are always ok"); +} +__DATA__ diff -urN perl-5.10.0.orig/ext/List/Util/t/p_00version.t perl-5.10.0/ext/List/Util/t/p_00version.t --- perl-5.10.0.orig/ext/List/Util/t/p_00version.t 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/p_00version.t 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,26 @@ +#!./perl + +BEGIN { + unless (-d 'blib') { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + keys %Config; # Silence warning + if ($Config{extensions} !~ /\bList\/Util\b/) { + print "1..0 # Skip: List::Util was not built\n"; + exit 0; + } + } +} + +use Test::More tests => 2; + +# force perl-only version to be tested +$List::Util::TESTING_PERL_ONLY = $List::Util::TESTING_PERL_ONLY = 1; + +require Scalar::Util; +require List::Util; + +is( $Scalar::Util::PP::VERSION, $List::Util::VERSION, "VERSION mismatch"); +is( $List::Util::PP::VERSION, $List::Util::VERSION, "VERSION mismatch"); + diff -urN perl-5.10.0.orig/ext/List/Util/t/p_tainted.t perl-5.10.0/ext/List/Util/t/p_tainted.t --- perl-5.10.0.orig/ext/List/Util/t/p_tainted.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/p_tainted.t 2009-07-08 17:24:47.000000000 +0200 @@ -6,5 +6,7 @@ $List::Util::TESTING_PERL_ONLY = $List::Util::TESTING_PERL_ONLY = 1; (my $f = __FILE__) =~ s/p_//; -my $filename = File::Spec->catfile(".", $f); +my $filename = $^O eq 'MSWin32' + ? File::Spec->rel2abs(File::Spec->catfile(".", $f)) + : File::Spec->catfile(".", $f); do $filename; die $@ if $@; diff -urN perl-5.10.0.orig/ext/List/Util/t/reduce.t perl-5.10.0/ext/List/Util/t/reduce.t --- perl-5.10.0.orig/ext/List/Util/t/reduce.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/reduce.t 2009-07-08 17:22:59.000000000 +0200 @@ -16,7 +16,7 @@ use List::Util qw(reduce min); use Test::More; -plan tests => ($::PERL_ONLY ? 21 : 23); +plan tests => ($::PERL_ONLY ? 23 : 25); my $v = reduce {}; @@ -122,6 +122,16 @@ is(&Internals::SvREFCNT(\&mult), $refcnt, "Refcount unchanged"); } +{ + my $ok = 'failed'; + local $SIG{__DIE__} = sub { $ok = $_[0] =~ /Not a (subroutine|CODE) reference/ ? '' : $_[0] }; + eval { &reduce('foo',1,2) }; + is($ok, '', 'Not a subroutine reference'); + $ok = 'failed'; + eval { &reduce({},1,2) }; + is($ok, '', 'Not a subroutine reference'); +} + # The remainder of the tests are only relevant for the XS # implementation. The Perl-only implementation behaves differently # (and more flexibly) in a way that we can't emulate from XS. diff -urN perl-5.10.0.orig/ext/List/Util/t/refaddr.t perl-5.10.0/ext/List/Util/t/refaddr.t --- perl-5.10.0.orig/ext/List/Util/t/refaddr.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/refaddr.t 2009-07-08 17:22:59.000000000 +0200 @@ -14,7 +14,7 @@ } -use Test::More tests => 29; +use Test::More tests => 32; use Scalar::Util qw(refaddr); use vars qw($t $y $x *F $v $r); @@ -58,11 +58,22 @@ ok(refaddr($x{$y})); ok(refaddr($x{$b})); } +{ + my $z = bless {}, '0'; + ok(refaddr($z)); + @{"0::ISA"} = qw(FooBar); + my $a = {}; + my $r = refaddr($a); + $z = bless $a, '0'; + ok(refaddr($z) > 10); + is(refaddr($z),$r,"foo"); +} package FooBar; use overload '0+' => sub { 10 }, - '+' => sub { 10 + $_[1] }; + '+' => sub { 10 + $_[1] }, + '"' => sub { "10" }; package MyTie; diff -urN perl-5.10.0.orig/ext/List/Util/t/reftype.t perl-5.10.0/ext/List/Util/t/reftype.t --- perl-5.10.0.orig/ext/List/Util/t/reftype.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/reftype.t 2009-07-08 17:22:59.000000000 +0200 @@ -13,7 +13,7 @@ } } -use Test::More tests => 23; +use Test::More tests => 29; use Scalar::Util qw(reftype); use vars qw($t $y $x *F); @@ -21,6 +21,7 @@ # Ensure we do not trigger and tied methods tie *F, 'MyTie'; +my $RE = $] < 5.011 ? 'SCALAR' : 'REGEXP'; @test = ( [ undef, 1, 'number' ], @@ -32,7 +33,8 @@ [ GLOB => \*F, 'tied GLOB ref' ], [ GLOB => gensym, 'GLOB ref' ], [ CODE => sub {}, 'CODE ref' ], -# [ IO => *STDIN{IO} ] the internal sv_reftype returns UNKNOWN + [ IO => *STDIN{IO},'IO ref' ], + [ $RE => qr/x/, 'REGEEXP' ], ); foreach $test (@test) { diff -urN perl-5.10.0.orig/ext/List/Util/t/stack-corruption.t perl-5.10.0/ext/List/Util/t/stack-corruption.t --- perl-5.10.0.orig/ext/List/Util/t/stack-corruption.t 1970-01-01 01:00:00.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/stack-corruption.t 2009-07-08 17:22:59.000000000 +0200 @@ -0,0 +1,30 @@ +#!./perl + +BEGIN { + unless (-d 'blib') { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + keys %Config; # Silence warning + if ($Config{extensions} !~ /\bList\/Util\b/) { + print "1..0 # Skip: List::Util was not built\n"; + exit 0; + } + } + if ($] eq "5.008009" or $] eq "5.010000" or $] le "5.006002") { + print "1..0 # Skip: known to fail on $]\n"; + exit 0; + } +} + +use List::Util qw(reduce); +use Test::More tests => 1; + +my $ret = "original"; +$ret = $ret . broken(); +is($ret, "originalreturn"); + +sub broken { + reduce { return "bogus"; } qw/some thing/; + return "return"; +} diff -urN perl-5.10.0.orig/ext/List/Util/t/sum.t perl-5.10.0/ext/List/Util/t/sum.t --- perl-5.10.0.orig/ext/List/Util/t/sum.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/sum.t 2009-07-08 17:22:59.000000000 +0200 @@ -13,7 +13,7 @@ } } -use Test::More tests => 6; +use Test::More tests => 8; use List::Util qw(sum); @@ -37,3 +37,33 @@ $v = sum(-3.5,3); is( $v, -0.5, 'real numbers'); +my $one = Foo->new(1); +my $two = Foo->new(2); +my $thr = Foo->new(3); + +$v = sum($one,$two,$thr); +is($v, 6, 'overload'); + + +{ package Foo; + +use overload + '""' => sub { ${$_[0]} }, + '+0' => sub { ${$_[0]} }, + fallback => 1; + sub new { + my $class = shift; + my $value = shift; + bless \$value, $class; + } +} + +SKIP: { + eval { require bignum; } or skip("Need bignum for testing overloading",1); + + my $v1 = 2**65; + my $v2 = 2**65; + my $v3 = $v1 + $v2; + $v = sum($v1,$v2); + is($v, $v3, 'bignum'); +} diff -urN perl-5.10.0.orig/ext/List/Util/t/weak.t perl-5.10.0/ext/List/Util/t/weak.t --- perl-5.10.0.orig/ext/List/Util/t/weak.t 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/List/Util/t/weak.t 2009-07-08 17:23:27.000000000 +0200 @@ -1,10 +1,11 @@ #!./perl +use strict; +use Config; BEGIN { unless (-d 'blib') { chdir 't' if -d 't'; @INC = '../lib'; - require Config; import Config; keys %Config; # Silence warning if ($Config{extensions} !~ /\bList\/Util\b/) { print "1..0 # Skip: List::Util was not built\n"; @@ -14,7 +15,7 @@ } use Scalar::Util (); -use Test::More (grep { /weaken/ } @Scalar::Util::EXPORT_FAIL) +use Test::More ((grep { /weaken/ } @Scalar::Util::EXPORT_FAIL) and !$ENV{PERL_CORE}) ? (skip_all => 'weaken requires XS version') : (tests => 22); @@ -94,9 +95,9 @@ # Case 3: a circular structure # -$flag = 0; +my $flag = 0; { - my $y = bless {}, Dest; + my $y = bless {}, 'Dest'; Dump($y); print "# 1: $y\n"; $y->{Self} = $y; @@ -126,8 +127,8 @@ $flag = 0; { - my $y = bless {}, Dest; - my $x = bless {}, Dest; + my $y = bless {}, 'Dest'; + my $x = bless {}, 'Dest'; $x->{Ref} = $y; $y->{Ref} = $x; $x->{Flag} = \$flag; @@ -140,6 +141,7 @@ # Case 5: deleting a weakref before the other one # +my ($y,$z); { my $x = "foo"; $y = \$x; @@ -170,7 +172,7 @@ $b = \$a; ok(!isweak($b)); -$x = {}; +my $x = {}; weaken($x->{Y} = \$a); ok(isweak($x->{Y})); ok(!isweak($x->{Z})); Index: perl.spec =================================================================== RCS file: /cvs/extras/rpms/perl/devel/perl.spec,v retrieving revision 1.223 retrieving revision 1.224 diff -u -p -r1.223 -r1.224 --- perl.spec 7 Jul 2009 13:34:40 -0000 1.223 +++ perl.spec 10 Jul 2009 18:38:10 -0000 1.224 @@ -7,7 +7,7 @@ Name: perl Version: %{perl_version} -Release: 73%{?dist} +Release: 74%{?dist} Epoch: %{perl_epoch} Summary: Practical Extraction and Report Language Group: Development/Languages @@ -184,6 +184,13 @@ Patch57: 38_fix_weaken_memleak # http://rt.perl.org/rt3/Ticket/Display.html?id=39060 (#221113) Patch58: perl-perlio-incorrect-errno.patch +# h2ph: generated *.ph files no longer produce warnings when processed +Patch59: perl-bz509676.patch + +# With the Scalar-List-Utils update, more prereq declarations have to +# be skipped in Makefile.PL files. +Patch60: perl-skip-prereq.patch + # Update some of the bundled modules # see http://fedoraproject.org/wiki/Perl/perl.spec for instructions Patch100: perl-update-constant.patch @@ -229,9 +236,11 @@ Patch118: perl-update-autodie.patch %define autodie_version 1.999 # cpan has it under PathTools-3.30 Patch119: perl-update-FileSpec.patch -%define File_Spec_version 3.30 +%define File_Spec_version 3.30 Patch120: perl-update-Compress_Raw_Zlib.patch -%define Compress_Raw_Zlib 2.020 +%define Compress_Raw_Zlib 2.020 +Patch121: perl-update-Scalar-List-Utils.patch +%define Scalar_List_Utils 1.21 # Fedora uses links instead of lynx # patches File-Fetch and CPAN @@ -987,6 +996,8 @@ upstream tarball from perl.org. %patch56 -p1 %patch57 -p1 %patch58 -p1 +%patch59 -p1 +%patch60 -p1 %patch100 -p1 %patch101 -p1 @@ -1009,6 +1020,7 @@ upstream tarball from perl.org. %patch118 -p1 %patch119 -p1 %patch120 -p1 +%patch121 -p1 %patch201 -p1 # @@ -1256,6 +1268,8 @@ perl -x patchlevel.h \ 'Fedora Patch56: Fix $? when dumping core' \ '34209 Fix a memory leak with Scalar::Util::weaken()' \ 'fix RT 39060, errno incorrectly set in perlio' \ + 'Fedora Patch59: h2ph: generated *.ph files no longer produce warnings when processed' \ + 'Fedora Patch60: remove PREREQ_FATAL from Makefile.PLs processed by miniperl' \ 'Fedora Patch100: Update module constant to %{constant_version}' \ 'Fedora Patch101: Update Archive::Extract to %{Archive_Extract_version}' \ 'Fedora Patch102: Update Archive::Tar to %{Archive_Tar_version}' \ @@ -1277,6 +1291,7 @@ perl -x patchlevel.h \ 'Fedora Patch117: Update module autodie to %{autodie_version}' \ 'Fedora Patch119: Update File::Spec to %{File_Spec_version}' \ 'Fedora Patch120: Update Compress::Raw::Zlib to %{Compress_Raw_Zlib}' \ + 'Fedora Patch121: Update Scalar-List-Utils to %{Scalar_List_Utils}' \ 'Fedora Patch201: Fedora uses links instead of lynx' \ %{nil} @@ -1902,6 +1917,12 @@ TMPDIR="$PWD/tmp" make test # Old changelog entries are preserved in CVS. %changelog +* Fri Jul 10 2009 Stepan Kasal - 4:5.10.0-74 +- fix generated .ph files so that they no longer cause warnings (#509676) +- remove PREREQ_FATAL from Makefile.PL's processed by miniperl +- update to latest Scalar-List-Utils (#507378) +- perl-skip-prereq.patch: skip more prereq declarations in Makefile.PL files + * Tue Jul 7 2009 Stepan Kasal - 4:5.10.0-73 - re-enable tests From bretm at fedoraproject.org Fri Jul 10 18:39:23 2009 From: bretm at fedoraproject.org (Bret Richard McMillan) Date: Fri, 10 Jul 2009 18:39:23 +0000 (UTC) Subject: rpms/wordpress-mu/F-10 cve-2009-2334.patch, NONE, 1.1 sources, 1.3, 1.4 wordpress-mu.spec, 1.4, 1.5 Message-ID: <20090710183923.D63EB11C0489@cvs1.fedora.phx.redhat.com> Author: bretm Update of /cvs/pkgs/rpms/wordpress-mu/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28687 Modified Files: sources wordpress-mu.spec Added Files: cve-2009-2334.patch Log Message: patch for cve-2009-2334 cve-2009-2334.patch: --- NEW FILE cve-2009-2334.patch --- diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 796c4c9..1dd38ce 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -541,7 +541,7 @@ function uninstall_plugin($plugin) { // function add_menu_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '' ) { - global $menu, $admin_page_hooks; + global $menu, $admin_page_hooks, $_registered_pages; $file = plugin_basename( $file ); @@ -556,11 +556,13 @@ function add_menu_page( $page_title, $menu_title, $access_level, $file, $functio $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_object_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_object_menu; + global $menu, $admin_page_hooks, $_wp_last_object_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -577,11 +579,13 @@ function add_object_page( $page_title, $menu_title, $access_level, $file, $funct $menu[$_wp_last_object_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_utility_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_utility_menu; + global $menu, $admin_page_hooks, $_wp_last_utility_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -598,6 +602,8 @@ function add_utility_page( $page_title, $menu_title, $access_level, $file, $func $menu[$_wp_last_utility_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -606,6 +612,7 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi global $menu; global $_wp_real_parent_file; global $_wp_submenu_nopriv; + global $_registered_pages; $file = plugin_basename( $file ); @@ -635,6 +642,8 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi if (!empty ( $function ) && !empty ( $hookname )) add_action( $hookname, $function ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -859,14 +868,21 @@ function user_can_access_admin_page() { global $_wp_menu_nopriv; global $_wp_submenu_nopriv; global $plugin_page; + global $_registered_pages; $parent = get_admin_page_parent(); - if ( isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) + if ( !isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) return false; - if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) - return false; + if ( isset( $plugin_page ) ) { + if ( isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) + return false; + + $hookname = get_plugin_page_hookname($plugin_page, $parent); + if ( !isset($_registered_pages[$hookname]) ) + return false; + } if ( empty( $parent) ) { if ( isset( $_wp_menu_nopriv[$pagenow] ) ) @@ -875,6 +891,8 @@ function user_can_access_admin_page() { return false; if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$pagenow][$plugin_page] ) ) return false; + if ( isset( $plugin_page ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; foreach (array_keys( $_wp_submenu_nopriv ) as $key ) { if ( isset( $_wp_submenu_nopriv[$key][$pagenow] ) ) return false; @@ -884,6 +902,9 @@ function user_can_access_admin_page() { return true; } + if ( isset( $plugin_page ) && ( $plugin_page == $parent ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; + if ( isset( $submenu[$parent] ) ) { foreach ( $submenu[$parent] as $submenu_array ) { if ( isset( $plugin_page ) && ( $submenu_array[2] == $plugin_page ) ) { Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Dec 2008 21:29:39 -0000 1.3 +++ sources 10 Jul 2009 18:39:23 -0000 1.4 @@ -1 +1 @@ -bbdf44968b188d7416292a42efc7463c wordpress-mu-2.6.5.tar.gz +b7d119c663833a3fe00d30224530447e wordpress-mu-2.7.tar.gz Index: wordpress-mu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/F-10/wordpress-mu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wordpress-mu.spec 8 Apr 2009 16:04:35 -0000 1.4 +++ wordpress-mu.spec 10 Jul 2009 18:39:23 -0000 1.5 @@ -1,14 +1,14 @@ Summary: WordPress-MU multi-user blogging software URL: http://mu.wordpress.org/latest.tar.gz Name: wordpress-mu -Version: 2.6.5 -Release: 2%{?dist} +Version: 2.7 +Release: 6%{?dist} Group: Applications/Publishing License: GPLv2 Source0: %{name}-%{version}.tar.gz Source1: wordpress-mu-httpd-conf Source2: README.fedora.wordpress-mu -Patch0: cve-2009-1030.patch +Patch0: cve-2009-2334.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: php >= 4.1.0, httpd, php-mysql BuildArch: noarch @@ -18,8 +18,8 @@ WordPress-MU is a derivative of the Word one instance to serve multiple users. %prep -%setup -q -%patch0 -b .patch0 +%setup -q -n wordpress-mu +%patch0 -p1 -b .patch1 # disable-wordpress-core-update, updates are always installed via rpm # @@ -28,7 +28,6 @@ one instance to serve multiple users. echo "" > wp-includes/update.php - %build @@ -98,10 +97,15 @@ rm -rf %{buildroot} %{_datadir}/wordpress-mu/wp-signup.php %{_datadir}/wordpress-mu/wp-trackback.php %{_datadir}/wordpress-mu/xmlrpc.php -%{_datadir}/wordpress-mu/favicon.ico %dir %{_sysconfdir}/wordpress-mu %changelog +* Fri Jul 10 2009 Bret McMillan - 2.7-6 +- Patch for CVE-2009-2334 +- Update to version 2.7 +- Alter source prep so I can still use upstream's tarball +- favicon.ico removed from manifest + * Tue Apr 7 2009 Bret McMillan - 2.6.5-2 - Patch for CVE-2009-1030 From jussilehtola at fedoraproject.org Fri Jul 10 18:40:26 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 18:40:26 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.1,1.2 Message-ID: <20090710184026.633A111C049A@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29241/devel Modified Files: unetbootin.spec Log Message: Imported in Fedora. Added localalizations. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unetbootin.spec 10 Jul 2009 18:35:11 -0000 1.1 +++ unetbootin.spec 10 Jul 2009 18:40:25 -0000 1.2 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 2.%{rel}bzr%{?dist} +Release: 3.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -37,6 +37,9 @@ sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build +# Generate .qm files +lrelease-qt4 unetbootin.pro + qmake-qt4 make %{?_smp_mflags} @@ -45,6 +48,9 @@ rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop +# Install localization files +install -d %{buildroot}%{_datadir}/unetbootin +install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ %clean rm -rf %{buildroot} @@ -53,9 +59,13 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc README.TXT %{_bindir}/unetbootin +%{_datadir}/unetbootin/ %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr +- Added localizations. + * Fri Jul 10 2009 Jussi Lehtola - 0-2.356bzr - Fixed source URL. - Changed Req: p7zip to p7zip-plugins. From jussilehtola at fedoraproject.org Fri Jul 10 18:40:26 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 18:40:26 +0000 (UTC) Subject: rpms/unetbootin/EL-5 unetbootin.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090710184026.49DB311C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29241/EL-5 Modified Files: sources Added Files: unetbootin.spec Log Message: Imported in Fedora. Added localalizations. --- NEW FILE unetbootin.spec --- %global rel 356 Name: unetbootin Version: 0 Release: 3.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: desktop-file-utils BuildRequires: qt4-devel # Not picked up automatically, required for operation Requires: p7zip-plugins Requires: syslinux %description UNetbootin allows you to create bootable Live USB drives for a variety of Linux distributions from Windows or Linux, without requiring you to burn a CD. You can either let it download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you've already downloaded one or your preferred distribution isn't on the list. %prep %setup -q -c # Fix EOL encoding for file in README.TXT; do sed "s|\r||g" $file > $file.new && \ touch -r $file $file.new && \ mv $file.new $file done # Fix desktop file sed -i '/^Version/d' unetbootin.desktop sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build # Generate .qm files lrelease-qt4 unetbootin.pro qmake-qt4 make %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.TXT %{_bindir}/unetbootin %{_datadir}/unetbootin/ %{_datadir}/applications/unetbootin.desktop %changelog * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. * Fri Jul 10 2009 Jussi Lehtola - 0-2.356bzr - Fixed source URL. - Changed Req: p7zip to p7zip-plugins. - Use included desktop file. * Fri Jul 10 2009 Jussi Lehtola - 0-1.356bzr - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:57 -0000 1.1 +++ sources 10 Jul 2009 18:40:24 -0000 1.2 @@ -0,0 +1 @@ +4a8e72ab32afbb8564519a211c798f71 unetbootin-source-356.tar.gz From jussilehtola at fedoraproject.org Fri Jul 10 18:40:55 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 18:40:55 +0000 (UTC) Subject: rpms/unetbootin/F-10 unetbootin.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090710184055.C302711C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29241/F-10 Modified Files: sources Added Files: unetbootin.spec Log Message: Imported in Fedora. Added localalizations. --- NEW FILE unetbootin.spec --- %global rel 356 Name: unetbootin Version: 0 Release: 3.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: desktop-file-utils BuildRequires: qt4-devel # Not picked up automatically, required for operation Requires: p7zip-plugins Requires: syslinux %description UNetbootin allows you to create bootable Live USB drives for a variety of Linux distributions from Windows or Linux, without requiring you to burn a CD. You can either let it download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you've already downloaded one or your preferred distribution isn't on the list. %prep %setup -q -c # Fix EOL encoding for file in README.TXT; do sed "s|\r||g" $file > $file.new && \ touch -r $file $file.new && \ mv $file.new $file done # Fix desktop file sed -i '/^Version/d' unetbootin.desktop sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build # Generate .qm files lrelease-qt4 unetbootin.pro qmake-qt4 make %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.TXT %{_bindir}/unetbootin %{_datadir}/unetbootin/ %{_datadir}/applications/unetbootin.desktop %changelog * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. * Fri Jul 10 2009 Jussi Lehtola - 0-2.356bzr - Fixed source URL. - Changed Req: p7zip to p7zip-plugins. - Use included desktop file. * Fri Jul 10 2009 Jussi Lehtola - 0-1.356bzr - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:57 -0000 1.1 +++ sources 10 Jul 2009 18:40:25 -0000 1.2 @@ -0,0 +1 @@ +4a8e72ab32afbb8564519a211c798f71 unetbootin-source-356.tar.gz From jussilehtola at fedoraproject.org Fri Jul 10 18:40:55 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 18:40:55 +0000 (UTC) Subject: rpms/unetbootin/F-11 unetbootin.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090710184055.F31CA11C049B@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29241/F-11 Modified Files: sources Added Files: unetbootin.spec Log Message: Imported in Fedora. Added localalizations. --- NEW FILE unetbootin.spec --- %global rel 356 Name: unetbootin Version: 0 Release: 3.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: desktop-file-utils BuildRequires: qt4-devel # Not picked up automatically, required for operation Requires: p7zip-plugins Requires: syslinux %description UNetbootin allows you to create bootable Live USB drives for a variety of Linux distributions from Windows or Linux, without requiring you to burn a CD. You can either let it download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you've already downloaded one or your preferred distribution isn't on the list. %prep %setup -q -c # Fix EOL encoding for file in README.TXT; do sed "s|\r||g" $file > $file.new && \ touch -r $file $file.new && \ mv $file.new $file done # Fix desktop file sed -i '/^Version/d' unetbootin.desktop sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build # Generate .qm files lrelease-qt4 unetbootin.pro qmake-qt4 make %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.TXT %{_bindir}/unetbootin %{_datadir}/unetbootin/ %{_datadir}/applications/unetbootin.desktop %changelog * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. * Fri Jul 10 2009 Jussi Lehtola - 0-2.356bzr - Fixed source URL. - Changed Req: p7zip to p7zip-plugins. - Use included desktop file. * Fri Jul 10 2009 Jussi Lehtola - 0-1.356bzr - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:57 -0000 1.1 +++ sources 10 Jul 2009 18:40:25 -0000 1.2 @@ -0,0 +1 @@ +4a8e72ab32afbb8564519a211c798f71 unetbootin-source-356.tar.gz From dsd at fedoraproject.org Fri Jul 10 18:54:47 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 18:54:47 +0000 (UTC) Subject: rpms/sugar-update-control/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 sugar-update-control.spec, 1.3, 1.4 python25.patch, 1.1, NONE Message-ID: <20090710185447.C8CE911C0489@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/sugar-update-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4084 Modified Files: .cvsignore sources sugar-update-control.spec Removed Files: python25.patch Log Message: update to v0.21 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Mar 2009 00:22:24 -0000 1.2 +++ .cvsignore 10 Jul 2009 18:54:45 -0000 1.3 @@ -1 +1 @@ -sugar-update-control-0.20.tar.gz +sugar-update-control-0.21.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Mar 2009 00:22:24 -0000 1.2 +++ sources 10 Jul 2009 18:54:46 -0000 1.3 @@ -1 +1 @@ -14449c106c86b1262ec8f961be0684bb sugar-update-control-0.20.tar.gz +1da31678a4825e21b883b7680b166dc0 sugar-update-control-0.21.tar.gz Index: sugar-update-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/devel/sugar-update-control.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-update-control.spec 10 Jun 2009 01:37:20 -0000 1.3 +++ sugar-update-control.spec 10 Jul 2009 18:54:46 -0000 1.4 @@ -2,15 +2,14 @@ Summary: Activity update control panel for Sugar Name: sugar-update-control -Version: 0.20 -Release: 5%{?dist} +Version: 0.21 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://git.sugarlabs.org/projects/sugar-update-control -Source0: %{name}-%{version}.tar.gz -Patch0: python25.patch +Source0: http://download.sugarlabs.org/sources/honey/sugar-update-control/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: sugar >= 0.83.0 +Requires: sugar >= 0.83.0, bitfrost BuildRequires: gettext BuildRequires: intltool BuildRequires: python-devel @@ -23,7 +22,6 @@ which locates and installs activity upda %prep %setup -q -%patch0 -p1 -b .py25 %build %{__python} setup.py build @@ -49,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sugar/extensions/cpsection/ %changelog +* Fri Jul 10 2009 Daniel Drake 0.21-1 +- Update to v0.21 + * Tue Jun 9 2009 Steven M. Parrish 0.20-5 - Fix missing bitfrost --- python25.patch DELETED --- From dsd at fedoraproject.org Fri Jul 10 18:55:49 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 18:55:49 +0000 (UTC) Subject: rpms/bitfrost/devel bitfrost.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710185549.383E611C0489@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/bitfrost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4523 Modified Files: .cvsignore sources Added Files: bitfrost.spec Log Message: Initial import v1.0.1 --- NEW FILE bitfrost.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: bitfrost Version: 1.0.1 Release: 1%{?dist} Summary: OLPC bitfrost security modules Group: System Environment/Base License: LGPLv2+ and GPLv2+ and Public Domain URL: http://dev.laptop.org/git/projects/bitfrost Source0: http://dev.laptop.org/~dsd/bitfrost/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel, Pyrex %description A collection of Python modules which implement parts of Bitfrost, the OLPC security platform. %prep %setup -q %build make OPTFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --install-lib "%{python_sitearch}" --root $RPM_BUILD_ROOT %{__install} -d $RPM_BUILD_ROOT/%{python_sitearch}/bitfrost/util %{__install} -m 755 bitfrost/util/{pysign.so,pyverify.so} $RPM_BUILD_ROOT/%{python_sitearch}/bitfrost/util/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{python_sitearch}/bitfrost %{python_sitearch}/bitfrost-%{version}-*.egg-info/ %changelog * Fri Jul 10 2009 Daniel Drake 1.0.1-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bitfrost/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 18:11:43 -0000 1.1 +++ .cvsignore 10 Jul 2009 18:55:47 -0000 1.2 @@ -0,0 +1 @@ +bitfrost-1.0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bitfrost/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:11:43 -0000 1.1 +++ sources 10 Jul 2009 18:55:47 -0000 1.2 @@ -0,0 +1 @@ +e3c5c64d8c7cb65e99eadc7c8d9eee46 bitfrost-1.0.1.tar.bz2 From than at fedoraproject.org Fri Jul 10 18:59:03 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 18:59:03 +0000 (UTC) Subject: rpms/kdegames/devel .cvsignore, 1.67, 1.68 kdegames.spec, 1.135, 1.136 sources, 1.71, 1.72 Message-ID: <20090710185903.CA9D611C0489@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5968 Modified Files: .cvsignore kdegames.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/.cvsignore,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- .cvsignore 26 Jun 2009 12:11:24 -0000 1.67 +++ .cvsignore 10 Jul 2009 18:58:33 -0000 1.68 @@ -1,2 +1,3 @@ kdegames-4.2.90.tar.bz2 kdegames-4.2.95.tar.bz2 +kdegames-4.2.96.tar.bz2 Index: kdegames.spec =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- kdegames.spec 4 Jul 2009 17:42:30 -0000 1.135 +++ kdegames.spec 10 Jul 2009 18:58:33 -0000 1.136 @@ -1,8 +1,8 @@ Name: kdegames Summary: K Desktop Environment 4 - Games Epoch: 6 -Version: 4.2.95 -Release: 2%{?dist} +Version: 4.2.96 +Release: 1%{?dist} License: GPLv2 URL: http://www.kde.org/ @@ -197,6 +197,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Sat Jul 04 2009 Kevin Kofler - 4.2.95-2 - reenable and rebrand the ship sinking game and the snake duel game (#502359) Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/sources,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- sources 26 Jun 2009 12:11:24 -0000 1.71 +++ sources 10 Jul 2009 18:58:33 -0000 1.72 @@ -1 +1 @@ -89d85d206ea3ea5b55fe818650a0006a kdegames-4.2.95.tar.bz2 +dc69c0c305de81e8673155861a854d4c kdegames-4.2.96.tar.bz2 From than at fedoraproject.org Fri Jul 10 19:02:42 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 19:02:42 +0000 (UTC) Subject: rpms/kdegraphics/devel .cvsignore, 1.62, 1.63 kdegraphics.spec, 1.207, 1.208 sources, 1.68, 1.69 Message-ID: <20090710190243.08A3311C0489@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegraphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7675 Modified Files: .cvsignore kdegraphics.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 26 Jun 2009 12:25:41 -0000 1.62 +++ .cvsignore 10 Jul 2009 19:02:42 -0000 1.63 @@ -1,2 +1,3 @@ kdegraphics-4.2.90.tar.bz2 kdegraphics-4.2.95.tar.bz2 +kdegraphics-4.2.96.tar.bz2 Index: kdegraphics.spec =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/kdegraphics.spec,v retrieving revision 1.207 retrieving revision 1.208 diff -u -p -r1.207 -r1.208 --- kdegraphics.spec 26 Jun 2009 12:25:41 -0000 1.207 +++ kdegraphics.spec 10 Jul 2009 19:02:42 -0000 1.208 @@ -7,7 +7,7 @@ Summary: K Desktop Environment - Graphics Applications Epoch: 7 -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Name: kdegraphics @@ -231,6 +231,9 @@ fi %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/sources,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sources 26 Jun 2009 12:25:41 -0000 1.68 +++ sources 10 Jul 2009 19:02:42 -0000 1.69 @@ -1 +1 @@ -7feb16636779a580fd19c6193fdfa6cc kdegraphics-4.2.95.tar.bz2 +31d986d20c1ac0e3105161db8e60c7b7 kdegraphics-4.2.96.tar.bz2 From myoung at fedoraproject.org Fri Jul 10 19:05:03 2009 From: myoung at fedoraproject.org (myoung) Date: Fri, 10 Jul 2009 19:05:03 +0000 (UTC) Subject: rpms/kernel/devel hdpvr-ir-enable.patch, NONE, 1.2.2.2 linux-2.6-dmadebug-spinlock.patch, NONE, 1.1.2.2 patch-2.6.31-rc2-git4.bz2.sign, NONE, 1.1.2.2 .cvsignore, 1.1014.2.19, 1.1014.2.20 config-generic, 1.238.6.28, 1.238.6.29 config-powerpc-generic, 1.33.6.7, 1.33.6.8 config-x86-generic, 1.68.6.13, 1.68.6.14 config-x86_64-generic, 1.68.2.12, 1.68.2.13 kernel.spec, 1.1294.2.39, 1.1294.2.40 linux-2.6-compile-fixes.patch, 1.193, 1.193.6.1 linux-2.6-v4l-dvb-fixes.patch, 1.2.8.9, 1.2.8.10 sources, 1.976.2.20, 1.976.2.21 upstream, 1.888.2.19, 1.888.2.20 patch-2.6.31-rc2-git2.bz2.sign, 1.1.2.2, NONE Message-ID: <20090710190503.50CC311C0489@cvs1.fedora.phx.redhat.com> Author: myoung Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7796 Modified Files: Tag: private-myoung-dom0-branch .cvsignore config-generic config-powerpc-generic config-x86-generic config-x86_64-generic kernel.spec linux-2.6-compile-fixes.patch linux-2.6-v4l-dvb-fixes.patch sources upstream Added Files: Tag: private-myoung-dom0-branch hdpvr-ir-enable.patch linux-2.6-dmadebug-spinlock.patch patch-2.6.31-rc2-git4.bz2.sign Removed Files: Tag: private-myoung-dom0-branch patch-2.6.31-rc2-git2.bz2.sign Log Message: xen doesn't like CONFIG_KERNEL_LZMA hdpvr-ir-enable.patch: --- NEW FILE hdpvr-ir-enable.patch --- >From http://hg.jannau.net/hdpvr/, pending v4l-dvb pull request --- drivers/media/video/hdpvr/hdpvr-core.c | 3 +- drivers/media/video/hdpvr/hdpvr-i2c.c | 36 +++++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/drivers/media/video/hdpvr/hdpvr-core.c b/drivers/media/video/hdpvr/hdpvr-core.c index 188bd5a..878d1e5 100644 --- a/drivers/media/video/hdpvr/hdpvr-core.c +++ b/drivers/media/video/hdpvr/hdpvr-core.c @@ -363,8 +363,7 @@ static int hdpvr_probe(struct usb_interface *interface, } #ifdef CONFIG_I2C - /* until i2c is working properly */ - retval = 0; /* hdpvr_register_i2c_adapter(dev); */ + retval = hdpvr_register_i2c_adapter(dev); if (retval < 0) { v4l2_err(&dev->v4l2_dev, "registering i2c adapter failed\n"); goto error; diff --git a/drivers/media/video/hdpvr/hdpvr-i2c.c b/drivers/media/video/hdpvr/hdpvr-i2c.c index c4b5d15..1c01b6c 100644 --- a/drivers/media/video/hdpvr/hdpvr-i2c.c +++ b/drivers/media/video/hdpvr/hdpvr-i2c.c @@ -22,7 +22,7 @@ #define REQTYPE_I2C_WRITE_STATT 0xd0 static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr, - char *data, int len) + char *data, int len, int bus) { int ret; char *buf = kmalloc(len, GFP_KERNEL); @@ -32,7 +32,7 @@ static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr, ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), REQTYPE_I2C_READ, CTRL_READ_REQUEST, - 0x100|addr, 0, buf, len, 1000); + bus<<8 | addr, 0, buf, len, 1000); if (ret == len) { memcpy(data, buf, len); @@ -46,7 +46,7 @@ static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr, } static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr, - char *data, int len) + char *data, int len, int bus) { int ret; char *buf = kmalloc(len, GFP_KERNEL); @@ -57,14 +57,14 @@ static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr, ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), REQTYPE_I2C_WRITE, CTRL_WRITE_REQUEST, - 0x100|addr, 0, buf, len, 1000); + bus<<8 | addr, 0, buf, len, 1000); if (ret < 0) goto error; ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), - REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST, + REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST, 0, 0, buf, 2, 1000); if (ret == 2) @@ -93,10 +93,10 @@ static int hdpvr_transfer(struct i2c_adapter *i2c_adapter, struct i2c_msg *msgs, if (msgs[i].flags & I2C_M_RD) retval = hdpvr_i2c_read(dev, addr, msgs[i].buf, - msgs[i].len); + msgs[i].len, 1); else retval = hdpvr_i2c_write(dev, addr, msgs[i].buf, - msgs[i].len); + msgs[i].len, 1); } mutex_unlock(&dev->i2c_mutex); @@ -114,6 +114,26 @@ static struct i2c_algorithm hdpvr_algo = { .functionality = hdpvr_functionality, }; +static int hdpvr_activate_ir(struct hdpvr_device *dev) +{ + char buffer[8]; + + mutex_lock(&dev->i2c_mutex); + + hdpvr_i2c_read(dev, 0x54, buffer, 1, 0); + + buffer[0] = 0; + buffer[1] = 0x8; + hdpvr_i2c_write(dev, 0x54, buffer, 2, 1); + + buffer[1] = 0x18; + hdpvr_i2c_write(dev, 0x54, buffer, 2, 1); + + mutex_unlock(&dev->i2c_mutex); + return 0; +} + + int hdpvr_register_i2c_adapter(struct hdpvr_device *dev) { struct i2c_adapter *i2c_adap; @@ -123,6 +143,8 @@ int hdpvr_register_i2c_adapter(struct hdpvr_device *dev) if (i2c_adap == NULL) goto error; + hdpvr_activate_ir(dev); + strlcpy(i2c_adap->name, "Hauppauge HD PVR I2C", sizeof(i2c_adap->name)); i2c_adap->algo = &hdpvr_algo; linux-2.6-dmadebug-spinlock.patch: --- NEW FILE linux-2.6-dmadebug-spinlock.patch --- --- linux-2.6.30.noarch/lib/dma-debug.c~ 2009-07-09 20:02:56.000000000 -0400 +++ linux-2.6.30.noarch/lib/dma-debug.c 2009-07-09 20:03:06.000000000 -0400 @@ -716,7 +716,7 @@ void dma_debug_init(u32 num_entries) for (i = 0; i < HASH_SIZE; ++i) { INIT_LIST_HEAD(&dma_entry_hash[i].list); - dma_entry_hash[i].lock = SPIN_LOCK_UNLOCKED; + spin_lock_init(&dma_entry_hash[i].lock); } if (dma_debug_fs_init() != 0) { --- NEW FILE patch-2.6.31-rc2-git4.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKVd5wyGugalF9Dw4RAjiPAJsF1fMvheHCcS5lK098yDT5eFEOVQCdGNmt +ZWQaPxwh/0FmXXNP3cXmFY= =x/pO -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1014.2.19 retrieving revision 1.1014.2.20 diff -u -p -r1.1014.2.19 -r1.1014.2.20 --- .cvsignore 9 Jul 2009 22:52:59 -0000 1.1014.2.19 +++ .cvsignore 10 Jul 2009 19:04:29 -0000 1.1014.2.20 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git2.bz2 +patch-2.6.31-rc2-git4.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.238.6.28 retrieving revision 1.238.6.29 diff -u -p -r1.238.6.28 -r1.238.6.29 --- config-generic 9 Jul 2009 22:53:00 -0000 1.238.6.28 +++ config-generic 10 Jul 2009 19:04:29 -0000 1.238.6.29 @@ -1809,6 +1809,7 @@ CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_MATRIX is not set # CONFIG_KEYBOARD_NEWTON is not set # CONFIG_KEYBOARD_STOWAWAY is not set # CONFIG_KEYBOARD_LKKBD is not set Index: config-powerpc-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-powerpc-generic,v retrieving revision 1.33.6.7 retrieving revision 1.33.6.8 diff -u -p -r1.33.6.7 -r1.33.6.8 --- config-powerpc-generic 27 Jun 2009 11:05:10 -0000 1.33.6.7 +++ config-powerpc-generic 10 Jul 2009 19:04:29 -0000 1.33.6.8 @@ -239,6 +239,7 @@ CONFIG_EXTRA_TARGETS="" # CONFIG_FS_ENET is not set # CONFIG_UCC_GETH is not set # CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_MATRIX is not set # CONFIG_MOUSE_GPIO is not set # CONFIG_SERIAL_CPM is not set # CONFIG_SERIAL_QE is not set Index: config-x86-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86-generic,v retrieving revision 1.68.6.13 retrieving revision 1.68.6.14 diff -u -p -r1.68.6.13 -r1.68.6.14 --- config-x86-generic 9 Jul 2009 22:53:00 -0000 1.68.6.13 +++ config-x86-generic 10 Jul 2009 19:04:29 -0000 1.68.6.14 @@ -1,6 +1,6 @@ CONFIG_UID16=y # CONFIG_64BIT is not set -CONFIG_KERNEL_LZMA=y +# CONFIG_KERNEL_LZMA is not set # # Processor type and features Index: config-x86_64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86_64-generic,v retrieving revision 1.68.2.12 retrieving revision 1.68.2.13 diff -u -p -r1.68.2.12 -r1.68.2.13 --- config-x86_64-generic 9 Jul 2009 22:53:00 -0000 1.68.2.12 +++ config-x86_64-generic 10 Jul 2009 19:04:29 -0000 1.68.2.13 @@ -1,6 +1,6 @@ CONFIG_64BIT=y CONFIG_UID16=y -CONFIG_KERNEL_LZMA=y +# CONFIG_KERNEL_LZMA is not set # CONFIG_MK8 is not set # CONFIG_MPSC is not set Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1294.2.39 retrieving revision 1.1294.2.40 diff -u -p -r1.1294.2.39 -r1.1294.2.40 --- kernel.spec 9 Jul 2009 22:53:00 -0000 1.1294.2.39 +++ kernel.spec 10 Jul 2009 19:04:29 -0000 1.1294.2.40 @@ -59,7 +59,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 2 # The git snapshot level -%define gitrev 2 +%define gitrev 4 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -648,6 +648,7 @@ Patch900: linux-2.6-pci-cacheline-sizing Patch1515: linux-2.6.31-lirc.patch Patch1516: lirc_streamzap-buffer-rework.patch +Patch1517: hdpvr-ir-enable.patch # nouveau + drm fixes Patch1811: drm-next.patch @@ -673,6 +674,8 @@ Patch2900: linux-2.6-v4l-dvb-update.patc Patch2901: linux-2.6-v4l-dvb-experimental.patch Patch2903: linux-2.6-revert-dvb-net-kabi-change.patch +Patch3000: linux-2.6-dmadebug-spinlock.patch + # fs fixes # NFSv4 @@ -1131,6 +1134,8 @@ ApplyPatch linux-2.6.29-sparc-IOC_TYPECH # ApplyPatch linux-2.6-execshield.patch +ApplyPatch linux-2.6-dmadebug-spinlock.patch + # # bugfixes to drivers and filesystems # @@ -1222,6 +1227,8 @@ ApplyPatch linux-2.6-pci-cacheline-sizin ApplyPatch linux-2.6.31-lirc.patch # should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else... ApplyPatch lirc_streamzap-buffer-rework.patch +# enable IR receiver on Hauppauge HD PVR (v4l-dvb merge pending) +ApplyPatch hdpvr-ir-enable.patch ApplyPatch linux-2.6-e1000-ich9.patch @@ -1869,6 +1876,20 @@ fi %changelog * Thu Jul 09 2009 Michael Young +- disable CONFIG_KERNEL_LZMA as xen doesn't like it + +* Thu Jul 09 2009 Dave Jones 2.6.31-0.62.rc2.git4 +- Use correct spinlock initialization in dma-debug + +* Thu Jul 09 2009 Chuck Ebbert 2.6.31-0.61.rc2.git4 +- 2.6.31-rc2-git4 + +* Thu Jul 09 2009 Jarod Wilson +- Enable IR receiver on the Hauppauge HD PVR +- Trim the changelog, axing everything before 2.6.29 (see cvs + if you still really want to see that far back) + +* Thu Jul 09 2009 Michael Young - update pvops and see if CONFIG_KERNEL_LZMA=y is compatible with xen * Wed Jul 08 2009 Dave Jones linux-2.6-compile-fixes.patch: Index: linux-2.6-compile-fixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-compile-fixes.patch,v retrieving revision 1.193 retrieving revision 1.193.6.1 diff -u -p -r1.193 -r1.193.6.1 --- linux-2.6-compile-fixes.patch 11 Feb 2009 14:55:24 -0000 1.193 +++ linux-2.6-compile-fixes.patch 10 Jul 2009 19:04:30 -0000 1.193.6.1 @@ -4,3 +4,14 @@ # Please add the errors from gcc before the diffs to save others having # to do a compile to figure out what your diff is fixing. Thanks. # +--- linux-2.6.30.noarch/drivers/net/bmac.c~ 2009-07-09 21:51:36.000000000 -0400 ++++ linux-2.6.30.noarch/drivers/net/bmac.c 2009-07-09 21:51:47.000000000 -0400 +@@ -431,7 +431,7 @@ bmac_init_phy(struct net_device *dev) + printk(KERN_DEBUG); + printk(KERN_CONT " %.4x", bmac_mif_read(dev, addr)); + } +- print(KERN_CONT "\n"); ++ printk(KERN_CONT "\n"); + + if (bp->is_bmac_plus) { + unsigned int capable, ctrl; linux-2.6-v4l-dvb-fixes.patch: Index: linux-2.6-v4l-dvb-fixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-v4l-dvb-fixes.patch,v retrieving revision 1.2.8.9 retrieving revision 1.2.8.10 diff -u -p -r1.2.8.9 -r1.2.8.10 --- linux-2.6-v4l-dvb-fixes.patch 24 Apr 2009 22:27:13 -0000 1.2.8.9 +++ linux-2.6-v4l-dvb-fixes.patch 10 Jul 2009 19:04:30 -0000 1.2.8.10 @@ -113202,3 +113202,14 @@ index 82b9bdd..6cc18bf 100644 help Say Y here to include support for soundcards based on the ForteMedia FM801 chip with a TEA5757 tuner connected to GPIO1-3 pins (Media +--- linux-2.6.30.noarch/drivers/media/video/hdpvr/hdpvr-i2c.c~ 2009-07-09 21:56:58.000000000 -0400 ++++ linux-2.6.30.noarch/drivers/media/video/hdpvr/hdpvr-i2c.c 2009-07-09 21:57:34.000000000 -0400 +@@ -64,7 +64,7 @@ static int hdpvr_i2c_write(struct hdpvr_ + + ret = usb_control_msg(dev->udev, + usb_rcvctrlpipe(dev->udev, 0), +- REQTYPE_I2C_WRITE_STAT, CTRL_READ_REQUEST, ++ REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST, + 0, 0, buf, 2, 1000); + + if (ret == 2) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.976.2.20 retrieving revision 1.976.2.21 diff -u -p -r1.976.2.20 -r1.976.2.21 --- sources 9 Jul 2009 22:53:02 -0000 1.976.2.20 +++ sources 10 Jul 2009 19:04:31 -0000 1.976.2.21 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -3ce980fca192d93cdc0d09237aad318d patch-2.6.31-rc2-git2.bz2 +76b4082138a3d4ba88c37da6e3b91d13 patch-2.6.31-rc2-git4.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.888.2.19 retrieving revision 1.888.2.20 diff -u -p -r1.888.2.19 -r1.888.2.20 --- upstream 9 Jul 2009 22:53:03 -0000 1.888.2.19 +++ upstream 10 Jul 2009 19:04:31 -0000 1.888.2.20 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git2.bz2 +patch-2.6.31-rc2-git4.bz2 --- patch-2.6.31-rc2-git2.bz2.sign DELETED --- From erikos at fedoraproject.org Fri Jul 10 19:07:22 2009 From: erikos at fedoraproject.org (Simon Schampijer) Date: Fri, 10 Jul 2009 19:07:22 +0000 (UTC) Subject: rpms/sugar-toolkit/F-11 .cvsignore, 1.33, 1.34 sources, 1.37, 1.38 sugar-toolkit.spec, 1.47, 1.48 Message-ID: <20090710190722.8164711C0489@cvs1.fedora.phx.redhat.com> Author: erikos Update of /cvs/pkgs/rpms/sugar-toolkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9748 Modified Files: .cvsignore sources sugar-toolkit.spec Log Message: * Fri Jul 10 2009 Simon Schampijer - 0.84.5-1 - Fix ContentBundle bundle_id #1028 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/F-11/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 6 Apr 2009 20:37:20 -0000 1.33 +++ .cvsignore 10 Jul 2009 19:07:20 -0000 1.34 @@ -1 +1 @@ -sugar-toolkit-0.84.4.tar.bz2 +sugar-toolkit-0.84.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/F-11/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 6 Apr 2009 20:37:20 -0000 1.37 +++ sources 10 Jul 2009 19:07:20 -0000 1.38 @@ -1 +1 @@ -5ad76015d382ec4125c2ef01022dc898 sugar-toolkit-0.84.4.tar.bz2 +4f754fe5fc62e460d352a47e3d23815d sugar-toolkit-0.84.5.tar.bz2 Index: sugar-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/F-11/sugar-toolkit.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sugar-toolkit.spec 6 Apr 2009 20:37:20 -0000 1.47 +++ sugar-toolkit.spec 10 Jul 2009 19:07:20 -0000 1.48 @@ -5,7 +5,7 @@ Summary: Sugar toolkit Name: sugar-toolkit -Version: 0.84.4 +Version: 0.84.5 Release: 1%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://wiki.laptop.org/go/Sugar @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_sysconfdir}/rpm/macros.sugar %changelog +* Fri Jul 10 2009 Simon Schampijer - 0.84.5-1 +- Fix ContentBundle bundle_id #1028 + * Mon Apr 06 2009 Simon Schampijer - 0.84.4-1 - new german and spanish translations From limb at fedoraproject.org Fri Jul 10 19:08:58 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 10 Jul 2009 19:08:58 +0000 (UTC) Subject: rpms/wesnoth/F-10 wesnoth-1.6.4-fribidi.patch, NONE, 1.1 wesnoth.spec, 1.63, 1.64 Message-ID: <20090710190858.D1AC511C0489@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/wesnoth/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10634 Modified Files: wesnoth.spec Added Files: wesnoth-1.6.4-fribidi.patch Log Message: Fribidi patch, BZ 504526. wesnoth-1.6.4-fribidi.patch: --- NEW FILE wesnoth-1.6.4-fribidi.patch --- --- configure.ac 2009-06-08 00:24:52.604753218 +0300 +++ configure.ac 2009-06-08 00:25:05.257753171 +0300 @@ -404,19 +404,7 @@ fi # fribidi-config -AC_PATH_PROGS([FRIBIDI_CONFIG], [fribidi-config], [none]) - -if test "x$FRIBIDI_CONFIG" = "xnone"; then - fribidifound=no - AC_MSG_WARN([*** FRIBIDI not found.]) -else - fribidifound=yes - FRIBIDI_CFLAGS=`$FRIBIDI_CONFIG --cflags` - FRIBIDI_LIBS=`$FRIBIDI_CONFIG --libs` -fi - -AC_SUBST([FRIBIDI_CFLAGS]) -AC_SUBST([FRIBIDI_LIBS]) +PKG_CHECK_MODULES([FRIBIDI], [fribidi],[fribidifound=yes],[fribidifound=no]) AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes -a "x$fribidi" = xyes ]) # python --- src/font.cpp 2009-03-15 18:50:42.000000000 +0200 +++ src/font.cpp 2009-06-08 00:19:56.884753434 +0300 @@ -50,9 +50,6 @@ #ifdef HAVE_FRIBIDI #include - -#else - #endif namespace { @@ -467,16 +464,16 @@ private: void text_surface::bidi_cvt() { char *c_str = const_cast(str_.c_str()); // fribidi forgot const... - int len = str_.length(); + FriBidiStrIndex len = str_.length(); FriBidiChar *bidi_logical = new FriBidiChar[len + 2]; FriBidiChar *bidi_visual = new FriBidiChar[len + 2]; char *utf8str = new char[4*len + 1]; //assume worst case here (all 4 Byte characters) FriBidiCharType base_dir = FRIBIDI_TYPE_ON; - int n; + FriBidiStrIndex n; - n = fribidi_utf8_to_unicode (c_str, len, bidi_logical); + n = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, c_str, len, bidi_logical); fribidi_log2vis(bidi_logical, n, &base_dir, bidi_visual, NULL, NULL, NULL); - fribidi_unicode_to_utf8 (bidi_visual, n, utf8str); + fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, bidi_visual, n, utf8str); is_rtl_ = base_dir == FRIBIDI_TYPE_RTL; str_ = std::string(utf8str); delete[] bidi_logical; Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/F-10/wesnoth.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- wesnoth.spec 6 Jul 2009 03:21:59 -0000 1.63 +++ wesnoth.spec 10 Jul 2009 19:08:58 -0000 1.64 @@ -1,6 +1,6 @@ Name: wesnoth Version: 1.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turn-based strategy game with a fantasy theme Group: Amusements/Games @@ -11,6 +11,7 @@ Source1: wesnothd.init Source2: %{name}.sysconfig Patch0: %{name}-1.2.8-gcc43.patch Patch1: wesnoth-1.5.11-remove-ogg-test.patch +Patch2: wesnoth-1.6.4-fribidi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: wesnoth-data = %{version} @@ -86,6 +87,7 @@ This package contains the data files for %setup -qn wesnoth-%{version} %patch0 -p1 -b .gcc43 %patch1 -p0 +%patch2 -p0 autoreconf @@ -251,6 +253,9 @@ fi #%endif %changelog +* Fri Jul 10 2009 Jon Ciesla - 1.6.4-2 +- Fribidi patch, BZ 504526. + * Sun Jul 05 2009 Warren Togami - 1.6.4-1 - 1.6.4 maintenance release From dwalsh at fedoraproject.org Fri Jul 10 18:46:53 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Fri, 10 Jul 2009 18:46:53 +0000 (UTC) Subject: rpms/libsemanage/devel libsemanage-rhat.patch, 1.51, 1.52 libsemanage.spec, 1.178, 1.179 sources, 1.103, 1.104 Message-ID: <20090710184653.6583A11C0489@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/libsemanage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32465 Modified Files: libsemanage-rhat.patch libsemanage.spec sources Log Message: * Fri Jul 10 2009 Dan Walsh - 2.0.33-2 - Put check for /root back into genhomedircon libsemanage-rhat.patch: Index: libsemanage-rhat.patch =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/libsemanage-rhat.patch,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- libsemanage-rhat.patch 7 Jul 2009 21:09:14 -0000 1.51 +++ libsemanage-rhat.patch 10 Jul 2009 18:46:50 -0000 1.52 @@ -1,16 +1,30 @@ -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage.conf libsemanage-2.0.32/src/semanage.conf +diff --exclude-from=exclude -N -u -r nsalibsemanage/src/genhomedircon.c libsemanage-2.0.33/src/genhomedircon.c +--- nsalibsemanage/src/genhomedircon.c 2008-08-28 09:34:24.000000000 -0400 ++++ libsemanage-2.0.33/src/genhomedircon.c 2009-07-10 14:46:05.000000000 -0400 +@@ -794,6 +794,10 @@ + * /root */ + continue; + } ++ if (strcmp(pwent->pw_dir, "/root") == 0) { ++ /* don't relabel /root*/ ++ continue; ++ } + if (push_user_entry(&head, name, seuname, + prefix, pwent->pw_dir) != STATUS_SUCCESS) { + *errors = STATUS_ERR; +diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage.conf libsemanage-2.0.33/src/semanage.conf --- nsalibsemanage/src/semanage.conf 2008-08-28 09:34:24.000000000 -0400 -+++ libsemanage-2.0.32/src/semanage.conf 2009-07-01 11:15:30.000000000 -0400 ++++ libsemanage-2.0.33/src/semanage.conf 2009-07-10 14:45:44.000000000 -0400 @@ -35,4 +35,4 @@ # given in . Change this setting if a different # version is necessary. #policy-version = 19 - +expand-check=0 -diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage_store.c libsemanage-2.0.32/src/semanage_store.c +diff --exclude-from=exclude -N -u -r nsalibsemanage/src/semanage_store.c libsemanage-2.0.33/src/semanage_store.c --- nsalibsemanage/src/semanage_store.c 2009-07-07 15:32:32.000000000 -0400 -+++ libsemanage-2.0.32/src/semanage_store.c 2009-07-01 11:42:07.000000000 -0400 -@@ -441,8 +440,6 @@ ++++ libsemanage-2.0.33/src/semanage_store.c 2009-07-10 14:45:44.000000000 -0400 +@@ -441,8 +441,6 @@ char tmp[PATH_MAX]; char buf[4192]; @@ -19,7 +33,7 @@ diff --exclude-from=exclude -N -u -r nsa n = snprintf(tmp, PATH_MAX, "%s.tmp", dst); if (n < 0 || n >= PATH_MAX) return -1; -@@ -510,7 +507,8 @@ +@@ -510,7 +508,8 @@ goto cleanup; } } else if (S_ISREG(sb.st_mode)) { Index: libsemanage.spec =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/libsemanage.spec,v retrieving revision 1.178 retrieving revision 1.179 diff -u -p -r1.178 -r1.179 --- libsemanage.spec 7 Jul 2009 21:09:15 -0000 1.178 +++ libsemanage.spec 10 Jul 2009 18:46:52 -0000 1.179 @@ -3,7 +3,7 @@ Summary: SELinux binary policy manipulation library Name: libsemanage Version: 2.0.33 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.nsa.gov/selinux/archives/libsemanage-%{version}.tgz @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/python*/site-packages/* %changelog +* Fri Jul 10 2009 Dan Walsh - 2.0.33-2 +- Put check for /root back into genhomedircon + * Tue Jul 7 2009 Dan Walsh - 2.0.33-1 - Update to upstream Index: sources =================================================================== RCS file: /cvs/extras/rpms/libsemanage/devel/sources,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- sources 7 Jul 2009 21:09:15 -0000 1.103 +++ sources 10 Jul 2009 18:46:52 -0000 1.104 @@ -1 +1 @@ -9e4c56068457e7ffa60df8d8b8095a8a libsemanage-2.0.33.tgz +3c5af39fda8e81567f0c6d4bf96cfc7f libsemanage-2.0.33.tgz From bretm at fedoraproject.org Fri Jul 10 18:40:36 2009 From: bretm at fedoraproject.org (Bret Richard McMillan) Date: Fri, 10 Jul 2009 18:40:36 +0000 (UTC) Subject: rpms/wordpress-mu/EL-5 cve-2009-2334.patch, NONE, 1.1 wordpress-mu.spec, 1.7, 1.8 Message-ID: <20090710184036.B595911C0489@cvs1.fedora.phx.redhat.com> Author: bretm Update of /cvs/pkgs/rpms/wordpress-mu/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29409 Modified Files: wordpress-mu.spec Added Files: cve-2009-2334.patch Log Message: patch added for cve-2009-2334 cve-2009-2334.patch: --- NEW FILE cve-2009-2334.patch --- diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 796c4c9..1dd38ce 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -541,7 +541,7 @@ function uninstall_plugin($plugin) { // function add_menu_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '' ) { - global $menu, $admin_page_hooks; + global $menu, $admin_page_hooks, $_registered_pages; $file = plugin_basename( $file ); @@ -556,11 +556,13 @@ function add_menu_page( $page_title, $menu_title, $access_level, $file, $functio $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_object_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_object_menu; + global $menu, $admin_page_hooks, $_wp_last_object_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -577,11 +579,13 @@ function add_object_page( $page_title, $menu_title, $access_level, $file, $funct $menu[$_wp_last_object_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } function add_utility_page( $page_title, $menu_title, $access_level, $file, $function = '', $icon_url = '') { - global $menu, $admin_page_hooks, $_wp_last_utility_menu; + global $menu, $admin_page_hooks, $_wp_last_utility_menu, $_registered_pages; $file = plugin_basename( $file ); @@ -598,6 +602,8 @@ function add_utility_page( $page_title, $menu_title, $access_level, $file, $func $menu[$_wp_last_utility_menu] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -606,6 +612,7 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi global $menu; global $_wp_real_parent_file; global $_wp_submenu_nopriv; + global $_registered_pages; $file = plugin_basename( $file ); @@ -635,6 +642,8 @@ function add_submenu_page( $parent, $page_title, $menu_title, $access_level, $fi if (!empty ( $function ) && !empty ( $hookname )) add_action( $hookname, $function ); + $_registered_pages[$hookname] = true; + return $hookname; } @@ -859,14 +868,21 @@ function user_can_access_admin_page() { global $_wp_menu_nopriv; global $_wp_submenu_nopriv; global $plugin_page; + global $_registered_pages; $parent = get_admin_page_parent(); - if ( isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) + if ( !isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$pagenow] ) ) return false; - if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) - return false; + if ( isset( $plugin_page ) ) { + if ( isset( $_wp_submenu_nopriv[$parent][$plugin_page] ) ) + return false; + + $hookname = get_plugin_page_hookname($plugin_page, $parent); + if ( !isset($_registered_pages[$hookname]) ) + return false; + } if ( empty( $parent) ) { if ( isset( $_wp_menu_nopriv[$pagenow] ) ) @@ -875,6 +891,8 @@ function user_can_access_admin_page() { return false; if ( isset( $plugin_page ) && isset( $_wp_submenu_nopriv[$pagenow][$plugin_page] ) ) return false; + if ( isset( $plugin_page ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; foreach (array_keys( $_wp_submenu_nopriv ) as $key ) { if ( isset( $_wp_submenu_nopriv[$key][$pagenow] ) ) return false; @@ -884,6 +902,9 @@ function user_can_access_admin_page() { return true; } + if ( isset( $plugin_page ) && ( $plugin_page == $parent ) && isset( $_wp_menu_nopriv[$plugin_page] ) ) + return false; + if ( isset( $submenu[$parent] ) ) { foreach ( $submenu[$parent] as $submenu_array ) { if ( isset( $plugin_page ) && ( $submenu_array[2] == $plugin_page ) ) { Index: wordpress-mu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/EL-5/wordpress-mu.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wordpress-mu.spec 25 Feb 2009 19:01:23 -0000 1.7 +++ wordpress-mu.spec 10 Jul 2009 18:40:36 -0000 1.8 @@ -2,12 +2,13 @@ Summary: WordPress-MU multi-user bloggin URL: http://mu.wordpress.org/latest.tar.gz Name: wordpress-mu Version: 2.7 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Publishing License: GPLv2 Source0: %{name}-%{version}.tar.gz Source1: wordpress-mu-httpd-conf Source2: README.fedora.wordpress-mu +Patch0: cve-2009-2334.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: php >= 4.1.0, httpd, php-mysql BuildArch: noarch @@ -18,6 +19,7 @@ one instance to serve multiple users. %prep %setup -q -n wordpress-mu +%patch0 -p1 -b .patch1 # disable-wordpress-core-update, updates are always installed via rpm # @@ -98,6 +100,9 @@ rm -rf %{buildroot} %dir %{_sysconfdir}/wordpress-mu %changelog +* Fri Jul 10 2009 Bret McMillan - 2.7-6 +- Patch for CVE-2009-2334 + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dsd at fedoraproject.org Fri Jul 10 19:20:22 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 19:20:22 +0000 (UTC) Subject: rpms/sugar-update-control/F-11 sugar-update-control.spec,1.3,1.4 Message-ID: <20090710192022.D7B7C11C0489@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/sugar-update-control/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16312 Modified Files: sugar-update-control.spec Log Message: update to v0.21 Index: sugar-update-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/F-11/sugar-update-control.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-update-control.spec 10 Jun 2009 01:39:23 -0000 1.3 +++ sugar-update-control.spec 10 Jul 2009 19:20:22 -0000 1.4 @@ -2,15 +2,14 @@ Summary: Activity update control panel for Sugar Name: sugar-update-control -Version: 0.20 -Release: 5%{?dist} +Version: 0.21 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://git.sugarlabs.org/projects/sugar-update-control -Source0: %{name}-%{version}.tar.gz -Patch0: python25.patch +Source0: http://download.sugarlabs.org/sources/honey/sugar-update-control/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: sugar >= 0.83.0 +Requires: sugar >= 0.83.0, bitfrost BuildRequires: gettext BuildRequires: intltool BuildRequires: python-devel @@ -23,7 +22,6 @@ which locates and installs activity upda %prep %setup -q -%patch0 -p1 -b .py25 %build %{__python} setup.py build @@ -49,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sugar/extensions/cpsection/ %changelog +* Fri Jul 10 2009 Daniel Drake 0.21-1 +- Update to v0.21 + * Tue Jun 9 2009 Steven M. Parrish 0.20-5 - Fix missing bitfrost From jussilehtola at fedoraproject.org Fri Jul 10 19:22:45 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:22:45 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.2,1.3 Message-ID: <20090710192245.A7AC511C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17229/devel Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unetbootin.spec 10 Jul 2009 18:40:25 -0000 1.2 +++ unetbootin.spec 10 Jul 2009 19:22:45 -0000 1.3 @@ -38,7 +38,13 @@ sed -i 's|/usr/bin/unetbootin|unetbootin %build # Generate .qm files + +# Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 +%if 0%{?rhel} == 5 +%{_libdir}/qt4/bin/lrelease +%else lrelease-qt4 unetbootin.pro +%endif qmake-qt4 make %{?_smp_mflags} From jussilehtola at fedoraproject.org Fri Jul 10 19:23:14 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:23:14 +0000 (UTC) Subject: rpms/unetbootin/EL-5 unetbootin.spec,1.1,1.2 Message-ID: <20090710192314.0CA3D11C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17229/EL-5 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/EL-5/unetbootin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unetbootin.spec 10 Jul 2009 18:40:24 -0000 1.1 +++ unetbootin.spec 10 Jul 2009 19:22:42 -0000 1.2 @@ -38,7 +38,13 @@ sed -i 's|/usr/bin/unetbootin|unetbootin %build # Generate .qm files + +# Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 +%if 0%{?rhel} == 5 +%{_libdir}/qt4/bin/lrelease +%else lrelease-qt4 unetbootin.pro +%endif qmake-qt4 make %{?_smp_mflags} From jussilehtola at fedoraproject.org Fri Jul 10 19:23:14 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:23:14 +0000 (UTC) Subject: rpms/unetbootin/F-10 unetbootin.spec,1.1,1.2 Message-ID: <20090710192314.40AAE11C049A@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17229/F-10 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-10/unetbootin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unetbootin.spec 10 Jul 2009 18:40:25 -0000 1.1 +++ unetbootin.spec 10 Jul 2009 19:22:43 -0000 1.2 @@ -38,7 +38,13 @@ sed -i 's|/usr/bin/unetbootin|unetbootin %build # Generate .qm files + +# Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 +%if 0%{?rhel} == 5 +%{_libdir}/qt4/bin/lrelease +%else lrelease-qt4 unetbootin.pro +%endif qmake-qt4 make %{?_smp_mflags} From jussilehtola at fedoraproject.org Fri Jul 10 19:23:15 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:23:15 +0000 (UTC) Subject: rpms/unetbootin/F-11 unetbootin.spec,1.1,1.2 Message-ID: <20090710192315.1CE0711C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17229/F-11 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-11/unetbootin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unetbootin.spec 10 Jul 2009 18:40:25 -0000 1.1 +++ unetbootin.spec 10 Jul 2009 19:22:44 -0000 1.2 @@ -38,7 +38,13 @@ sed -i 's|/usr/bin/unetbootin|unetbootin %build # Generate .qm files + +# Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 +%if 0%{?rhel} == 5 +%{_libdir}/qt4/bin/lrelease +%else lrelease-qt4 unetbootin.pro +%endif qmake-qt4 make %{?_smp_mflags} From adrian at fedoraproject.org Fri Jul 10 19:29:00 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Fri, 10 Jul 2009 19:29:00 +0000 (UTC) Subject: rpms/wordpress/devel .cvsignore, 1.23, 1.24 sources, 1.23, 1.24 wordpress.spec, 1.29, 1.30 Message-ID: <20090710192900.4F96611C0489@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21389 Modified Files: .cvsignore sources wordpress.spec Log Message: * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 22 Jun 2009 07:32:55 -0000 1.23 +++ .cvsignore 10 Jul 2009 19:28:57 -0000 1.24 @@ -1 +1 @@ -wordpress-2.8.tar.gz +wordpress-2.8.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 22 Jun 2009 07:32:55 -0000 1.23 +++ sources 10 Jul 2009 19:28:57 -0000 1.24 @@ -1 +1 @@ -7c1edbb0c00ea8663457959cce895975 wordpress-2.8.tar.gz +b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/devel/wordpress.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- wordpress.spec 22 Jun 2009 07:32:55 -0000 1.29 +++ wordpress.spec 10 Jul 2009 19:28:57 -0000 1.30 @@ -1,7 +1,7 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.8 +Version: 2.8.1 Group: Applications/Publishing Release: 1%{?dist} License: GPLv2 @@ -75,6 +75,9 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Fri Jul 10 2009 Adrian Reber - 2.8.1-1 +- updated to 2.8.1 for security fixes - BZ 510745 + * Mon Jun 22 2009 Adrian Reber - 2.8-1 - updated to 2.8 From jussilehtola at fedoraproject.org Fri Jul 10 19:29:20 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:29:20 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.3,1.4 Message-ID: <20090710192920.7936F11C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233/devel Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- unetbootin.spec 10 Jul 2009 19:22:45 -0000 1.3 +++ unetbootin.spec 10 Jul 2009 19:29:13 -0000 1.4 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 3.%{rel}bzr%{?dist} +Release: 4.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -37,16 +37,18 @@ sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build -# Generate .qm files # Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 %if 0%{?rhel} == 5 -%{_libdir}/qt4/bin/lrelease +# Generate .qm files +%{_libdir}/qt4/bin/lrelease unetbootin.pro +%{_libdir}/qt4/bin/qmake %else +# Generate .qm files lrelease-qt4 unetbootin.pro +qmake-qt4 %endif -qmake-qt4 make %{?_smp_mflags} %install @@ -69,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr +- Fix EPEL build. + * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. From jussilehtola at fedoraproject.org Fri Jul 10 19:29:40 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:29:40 +0000 (UTC) Subject: rpms/unetbootin/EL-5 unetbootin.spec,1.2,1.3 Message-ID: <20090710192940.C715111C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233/EL-5 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/EL-5/unetbootin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unetbootin.spec 10 Jul 2009 19:22:42 -0000 1.2 +++ unetbootin.spec 10 Jul 2009 19:29:03 -0000 1.3 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 3.%{rel}bzr%{?dist} +Release: 4.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -37,16 +37,18 @@ sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build -# Generate .qm files # Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 %if 0%{?rhel} == 5 -%{_libdir}/qt4/bin/lrelease +# Generate .qm files +%{_libdir}/qt4/bin/lrelease unetbootin.pro +%{_libdir}/qt4/bin/qmake %else +# Generate .qm files lrelease-qt4 unetbootin.pro +qmake-qt4 %endif -qmake-qt4 make %{?_smp_mflags} %install @@ -69,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr +- Fix EPEL build. + * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. From jussilehtola at fedoraproject.org Fri Jul 10 19:29:41 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:29:41 +0000 (UTC) Subject: rpms/unetbootin/F-10 unetbootin.spec,1.2,1.3 Message-ID: <20090710192941.950CF11C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233/F-10 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-10/unetbootin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unetbootin.spec 10 Jul 2009 19:22:43 -0000 1.2 +++ unetbootin.spec 10 Jul 2009 19:29:06 -0000 1.3 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 3.%{rel}bzr%{?dist} +Release: 4.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -37,16 +37,18 @@ sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build -# Generate .qm files # Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 %if 0%{?rhel} == 5 -%{_libdir}/qt4/bin/lrelease +# Generate .qm files +%{_libdir}/qt4/bin/lrelease unetbootin.pro +%{_libdir}/qt4/bin/qmake %else +# Generate .qm files lrelease-qt4 unetbootin.pro +qmake-qt4 %endif -qmake-qt4 make %{?_smp_mflags} %install @@ -69,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr +- Fix EPEL build. + * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. From jussilehtola at fedoraproject.org Fri Jul 10 19:29:48 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:29:48 +0000 (UTC) Subject: rpms/unetbootin/F-11 unetbootin.spec,1.2,1.3 Message-ID: <20090710192948.5EB5511C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233/F-11 Modified Files: unetbootin.spec Log Message: Fix EPEL build. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-11/unetbootin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unetbootin.spec 10 Jul 2009 19:22:44 -0000 1.2 +++ unetbootin.spec 10 Jul 2009 19:29:12 -0000 1.3 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 3.%{rel}bzr%{?dist} +Release: 4.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -37,16 +37,18 @@ sed -i '/\[en_US\]/d' unetbootin.desktop sed -i 's|/usr/bin/unetbootin|unetbootin|g' unetbootin.desktop %build -# Generate .qm files # Ugh, there's no macro for running lrelease and on RHEL the default is qt-3.3 %if 0%{?rhel} == 5 -%{_libdir}/qt4/bin/lrelease +# Generate .qm files +%{_libdir}/qt4/bin/lrelease unetbootin.pro +%{_libdir}/qt4/bin/qmake %else +# Generate .qm files lrelease-qt4 unetbootin.pro +qmake-qt4 %endif -qmake-qt4 make %{?_smp_mflags} %install @@ -69,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr +- Fix EPEL build. + * Fri Jul 10 2009 Jussi Lehtola - 0-3.356bzr - Added localizations. From ajax at fedoraproject.org Fri Jul 10 19:34:05 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Fri, 10 Jul 2009 19:34:05 +0000 (UTC) Subject: rpms/cobbler/devel sources,1.72,1.73 Message-ID: <20090710193405.C25EF11C0489@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/cobbler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23613 Modified Files: sources Log Message: clean up sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cobbler/devel/sources,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- sources 12 Jun 2009 20:17:11 -0000 1.72 +++ sources 10 Jul 2009 19:33:35 -0000 1.73 @@ -1,3 +1 @@ -0b53db8bdc0259dca8c7bd848c3dd813 cobbler-1.6.4.tar.gz -524b6946549c2d75c0e8cafcbffecd34 cobbler-1.6.5.tar.gz 2b7d2b92c1cfbf534b8e83b2a51cf739 cobbler-1.6.6.tar.gz From dsd at fedoraproject.org Fri Jul 10 19:14:19 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 19:14:19 +0000 (UTC) Subject: rpms/bitfrost/F-11 bitfrost.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090710191419.467B311C0489@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/bitfrost/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12905 Modified Files: sources Added Files: bitfrost.spec Log Message: Initial import v1.0.1 --- NEW FILE bitfrost.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: bitfrost Version: 1.0.1 Release: 1%{?dist} Summary: OLPC bitfrost security modules Group: System Environment/Base License: LGPLv2+ and GPLv2+ and Public Domain URL: http://dev.laptop.org/git/projects/bitfrost Source0: http://dev.laptop.org/~dsd/bitfrost/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel, Pyrex %description A collection of Python modules which implement parts of Bitfrost, the OLPC security platform. %prep %setup -q %build make OPTFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --install-lib "%{python_sitearch}" --root $RPM_BUILD_ROOT %{__install} -d $RPM_BUILD_ROOT/%{python_sitearch}/bitfrost/util %{__install} -m 755 bitfrost/util/{pysign.so,pyverify.so} $RPM_BUILD_ROOT/%{python_sitearch}/bitfrost/util/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{python_sitearch}/bitfrost %{python_sitearch}/bitfrost-%{version}-*.egg-info/ %changelog * Fri Jul 10 2009 Daniel Drake 1.0.1-1 - Initial import Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bitfrost/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:11:43 -0000 1.1 +++ sources 10 Jul 2009 19:14:18 -0000 1.2 @@ -0,0 +1 @@ +e3c5c64d8c7cb65e99eadc7c8d9eee46 bitfrost-1.0.1.tar.bz2 From adrian at fedoraproject.org Fri Jul 10 19:44:38 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Fri, 10 Jul 2009 19:44:38 +0000 (UTC) Subject: rpms/wordpress/F-11 .cvsignore, 1.22, 1.23 sources, 1.22, 1.23 wordpress.spec, 1.28, 1.29 Message-ID: <20090710194439.046EB11C0489@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28638 Modified Files: .cvsignore sources wordpress.spec Log Message: * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 12 Feb 2009 13:04:59 -0000 1.22 +++ .cvsignore 10 Jul 2009 19:44:08 -0000 1.23 @@ -1 +1 @@ -wordpress-2.7.1.tar.gz +wordpress-2.8.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 12 Feb 2009 13:04:59 -0000 1.22 +++ sources 10 Jul 2009 19:44:08 -0000 1.23 @@ -1 +1 @@ -3f1e1607e5ce1328c305e0192ff3352a wordpress-2.7.1.tar.gz +b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-11/wordpress.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- wordpress.spec 25 Feb 2009 19:00:18 -0000 1.28 +++ wordpress.spec 10 Jul 2009 19:44:08 -0000 1.29 @@ -1,9 +1,9 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.7.1 +Version: 2.8.1 Group: Applications/Publishing -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf @@ -75,6 +75,12 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Fri Jul 10 2009 Adrian Reber - 2.8.1-1 +- updated to 2.8.1 for security fixes - BZ 510745 + +* Mon Jun 22 2009 Adrian Reber - 2.8-1 +- updated to 2.8 + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Fri Jul 10 19:46:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:46:50 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.4,1.5 Message-ID: <20090710194650.E498A11C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29807/devel Modified Files: unetbootin.spec Log Message: Fix EPEL install. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- unetbootin.spec 10 Jul 2009 19:29:13 -0000 1.4 +++ unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.5 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 4.%{rel}bzr%{?dist} +Release: 5.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -55,7 +55,7 @@ make %{?_smp_mflags} rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file -desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop +desktop-file-install --vendor="" --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr +- Fix EPEL install. + * Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr - Fix EPEL build. From jussilehtola at fedoraproject.org Fri Jul 10 19:47:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:47:17 +0000 (UTC) Subject: rpms/unetbootin/EL-5 unetbootin.spec,1.3,1.4 Message-ID: <20090710194717.0C03511C0489@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29807/EL-5 Modified Files: unetbootin.spec Log Message: Fix EPEL install. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/EL-5/unetbootin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- unetbootin.spec 10 Jul 2009 19:29:03 -0000 1.3 +++ unetbootin.spec 10 Jul 2009 19:46:45 -0000 1.4 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 4.%{rel}bzr%{?dist} +Release: 5.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -55,7 +55,7 @@ make %{?_smp_mflags} rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file -desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop +desktop-file-install --vendor="" --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr +- Fix EPEL install. + * Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr - Fix EPEL build. From jussilehtola at fedoraproject.org Fri Jul 10 19:47:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:47:17 +0000 (UTC) Subject: rpms/unetbootin/F-11 unetbootin.spec,1.3,1.4 Message-ID: <20090710194717.8CD5B11C049B@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29807/F-11 Modified Files: unetbootin.spec Log Message: Fix EPEL install. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-11/unetbootin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- unetbootin.spec 10 Jul 2009 19:29:12 -0000 1.3 +++ unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.4 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 4.%{rel}bzr%{?dist} +Release: 5.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -55,7 +55,7 @@ make %{?_smp_mflags} rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file -desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop +desktop-file-install --vendor="" --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr +- Fix EPEL install. + * Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr - Fix EPEL build. From jussilehtola at fedoraproject.org Fri Jul 10 19:47:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 10 Jul 2009 19:47:17 +0000 (UTC) Subject: rpms/unetbootin/F-10 unetbootin.spec,1.3,1.4 Message-ID: <20090710194717.5F20811C049A@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29807/F-10 Modified Files: unetbootin.spec Log Message: Fix EPEL install. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-10/unetbootin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- unetbootin.spec 10 Jul 2009 19:29:06 -0000 1.3 +++ unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.4 @@ -2,7 +2,7 @@ Name: unetbootin Version: 0 -Release: 4.%{rel}bzr%{?dist} +Release: 5.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ @@ -55,7 +55,7 @@ make %{?_smp_mflags} rm -rf %{buildroot} install -D -p -m 755 unetbootin %{buildroot}%{_bindir}/unetbootin # Install desktop file -desktop-file-install --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop +desktop-file-install --vendor="" --remove-category=Application --dir=%{buildroot}%{_datadir}/applications unetbootin.desktop # Install localization files install -d %{buildroot}%{_datadir}/unetbootin install -c -p -m 644 unetbootin_*.qm %{buildroot}%{_datadir}/unetbootin/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr +- Fix EPEL install. + * Fri Jul 10 2009 Jussi Lehtola - 0-4.356bzr - Fix EPEL build. From dsd at fedoraproject.org Fri Jul 10 19:49:01 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 19:49:01 +0000 (UTC) Subject: rpms/sugar-update-control/F-11 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 python25.patch, 1.1, NONE Message-ID: <20090710194901.218A711C0489@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/sugar-update-control/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31327 Modified Files: .cvsignore sources Removed Files: python25.patch Log Message: update sources file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Mar 2009 00:22:24 -0000 1.2 +++ .cvsignore 10 Jul 2009 19:49:00 -0000 1.3 @@ -1 +1 @@ -sugar-update-control-0.20.tar.gz +sugar-update-control-0.21.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Mar 2009 00:22:24 -0000 1.2 +++ sources 10 Jul 2009 19:49:00 -0000 1.3 @@ -1 +1 @@ -14449c106c86b1262ec8f961be0684bb sugar-update-control-0.20.tar.gz +1da31678a4825e21b883b7680b166dc0 sugar-update-control-0.21.tar.gz --- python25.patch DELETED --- From dsd at fedoraproject.org Fri Jul 10 19:55:30 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 10 Jul 2009 19:55:30 +0000 (UTC) Subject: rpms/sugar-update-control/F-11 sugar-update-control.spec,1.4,1.5 Message-ID: <20090710195530.0A39E11C0095@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/sugar-update-control/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2479 Modified Files: sugar-update-control.spec Log Message: increment release Index: sugar-update-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/F-11/sugar-update-control.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sugar-update-control.spec 10 Jul 2009 19:20:22 -0000 1.4 +++ sugar-update-control.spec 10 Jul 2009 19:55:29 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Activity update control panel for Sugar Name: sugar-update-control Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://git.sugarlabs.org/projects/sugar-update-control @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sugar/extensions/cpsection/ %changelog +* Fri Jul 10 2009 Daniel Drake 0.21-2 +- increment Release as I didn't commit the right sources file + * Fri Jul 10 2009 Daniel Drake 0.21-1 - Update to v0.21 From adrian at fedoraproject.org Fri Jul 10 20:04:00 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Fri, 10 Jul 2009 20:04:00 +0000 (UTC) Subject: rpms/wordpress/F-10 .cvsignore, 1.22, 1.23 sources, 1.22, 1.23 wordpress.spec, 1.28, 1.29 Message-ID: <20090710200401.023C411C0095@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7489 Modified Files: .cvsignore sources wordpress.spec Log Message: * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 22 Jun 2009 08:34:33 -0000 1.22 +++ .cvsignore 10 Jul 2009 20:03:58 -0000 1.23 @@ -1 +1 @@ -wordpress-2.7.1.tar.gz +wordpress-2.8.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 22 Jun 2009 08:34:34 -0000 1.22 +++ sources 10 Jul 2009 20:03:59 -0000 1.23 @@ -1 +1 @@ -3f1e1607e5ce1328c305e0192ff3352a wordpress-2.7.1.tar.gz +b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/F-10/wordpress.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- wordpress.spec 22 Jun 2009 08:34:34 -0000 1.28 +++ wordpress.spec 10 Jul 2009 20:03:59 -0000 1.29 @@ -1,9 +1,9 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.7.1 +Version: 2.8.1 Group: Applications/Publishing -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf @@ -75,6 +75,12 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Fri Jul 10 2009 Adrian Reber - 2.8.1-1 +- updated to 2.8.1 for security fixes - BZ 510745 + +* Mon Jun 22 2009 Adrian Reber - 2.8-1 +- updated to 2.8 + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From than at fedoraproject.org Fri Jul 10 20:13:41 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 20:13:41 +0000 (UTC) Subject: rpms/kdelibs/devel .cvsignore, 1.73, 1.74 kdelibs.spec, 1.485, 1.486 sources, 1.90, 1.91 kdelibs-4.2.95-kdebug#198338.patch, 1.1, NONE Message-ID: <20090710201341.469A111C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11950 Modified Files: .cvsignore kdelibs.spec sources Removed Files: kdelibs-4.2.95-kdebug#198338.patch Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/.cvsignore,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- .cvsignore 25 Jun 2009 13:11:05 -0000 1.73 +++ .cvsignore 10 Jul 2009 20:13:40 -0000 1.74 @@ -1,2 +1,3 @@ kdelibs-4.2.90.tar.bz2 kdelibs-4.2.95.tar.bz2 +kdelibs-4.2.96.tar.bz2 Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.485 retrieving revision 1.486 diff -u -p -r1.485 -r1.486 --- kdelibs.spec 8 Jul 2009 15:21:44 -0000 1.485 +++ kdelibs.spec 10 Jul 2009 20:13:40 -0000 1.486 @@ -4,8 +4,8 @@ %define strigi_ver 0.6.5 Summary: K Desktop Environment 4 - Libraries -Version: 4.2.95 -Release: 4%{?dist} +Version: 4.2.96 +Release: 1%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -86,7 +86,6 @@ Patch20: kdelibs-4.1.70-cmake.patch # upstream # 4.3 branch -Patch100: kdelibs-4.2.95-kdebug#198338.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -401,6 +400,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Wed Jul 08 2009 Kevin Kofler - 4.2.95-4 - fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/sources,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- sources 25 Jun 2009 13:11:05 -0000 1.90 +++ sources 10 Jul 2009 20:13:40 -0000 1.91 @@ -1 +1 @@ -54cf6d01b0156c2b82fe23321b338007 kdelibs-4.2.95.tar.bz2 +a7f2d4eb81c05f9e6c97a8fa09670c0f kdelibs-4.2.96.tar.bz2 --- kdelibs-4.2.95-kdebug#198338.patch DELETED --- From adrian at fedoraproject.org Fri Jul 10 20:19:58 2009 From: adrian at fedoraproject.org (Adrian Reber) Date: Fri, 10 Jul 2009 20:19:58 +0000 (UTC) Subject: rpms/wordpress/EL-5 .cvsignore, 1.21, 1.22 sources, 1.21, 1.22 wordpress.spec, 1.27, 1.28 Message-ID: <20090710201958.497B011C0095@cvs1.fedora.phx.redhat.com> Author: adrian Update of /cvs/extras/rpms/wordpress/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15533 Modified Files: .cvsignore sources wordpress.spec Log Message: * Wed Feb 25 2009 Fedora Release Engineering - 2.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 22 Jun 2009 07:58:34 -0000 1.21 +++ .cvsignore 10 Jul 2009 20:19:27 -0000 1.22 @@ -1 +1 @@ -wordpress-2.7.1.tar.gz +wordpress-2.8.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 22 Jun 2009 07:58:34 -0000 1.21 +++ sources 10 Jul 2009 20:19:28 -0000 1.22 @@ -1 +1 @@ -3f1e1607e5ce1328c305e0192ff3352a wordpress-2.7.1.tar.gz +b389dbbf60749ddc6c33f49740460a09 wordpress-2.8.1.tar.gz Index: wordpress.spec =================================================================== RCS file: /cvs/extras/rpms/wordpress/EL-5/wordpress.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- wordpress.spec 22 Jun 2009 07:58:34 -0000 1.27 +++ wordpress.spec 10 Jul 2009 20:19:28 -0000 1.28 @@ -1,9 +1,9 @@ Summary: WordPress blogging software URL: http://www.wordpress.org Name: wordpress -Version: 2.7.1 +Version: 2.8.1 Group: Applications/Publishing -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf @@ -75,6 +75,12 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Fri Jul 10 2009 Adrian Reber - 2.8.1-1 +- updated to 2.8.1 for security fixes - BZ 510745 + +* Mon Jun 22 2009 Adrian Reber - 2.8-1 +- updated to 2.8 + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From than at fedoraproject.org Fri Jul 10 20:24:37 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 20:24:37 +0000 (UTC) Subject: rpms/kdelibs-experimental/devel .cvsignore, 1.4, 1.5 kdelibs-experimental.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090710202437.97D4E11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs-experimental/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18305 Modified Files: .cvsignore kdelibs-experimental.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 26 Jun 2009 13:29:40 -0000 1.4 +++ .cvsignore 10 Jul 2009 20:24:37 -0000 1.5 @@ -1,2 +1,3 @@ kdelibs-experimental-4.2.90.tar.bz2 kdelibs-experimental-4.2.95.tar.bz2 +kdelibs-experimental-4.2.96.tar.bz2 Index: kdelibs-experimental.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/kdelibs-experimental.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kdelibs-experimental.spec 29 Jun 2009 15:05:42 -0000 1.6 +++ kdelibs-experimental.spec 10 Jul 2009 20:24:37 -0000 1.7 @@ -1,5 +1,5 @@ Name: kdelibs-experimental -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: KDE libraries with experimental or unstable api/abi @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 10 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 26 Jun 2009 13:29:41 -0000 1.4 +++ sources 10 Jul 2009 20:24:37 -0000 1.5 @@ -1 +1 @@ -599a2503112c15fd638634b2059c44c0 kdelibs-experimental-4.2.95.tar.bz2 +f78d349cdeda2c2914226a8134318084 kdelibs-experimental-4.2.96.tar.bz2 From spot at fedoraproject.org Fri Jul 10 20:40:57 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 20:40:57 +0000 (UTC) Subject: rpms/srecord/devel .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 srecord.spec, 1.23, 1.24 Message-ID: <20090710204057.3B42B11C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/srecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27112 Modified Files: .cvsignore sources srecord.spec Log Message: update to 1.50 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/srecord/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 4 Mar 2009 19:41:00 -0000 1.18 +++ .cvsignore 10 Jul 2009 20:40:56 -0000 1.19 @@ -1 +1 @@ -srecord-1.47.tar.gz +srecord-1.50.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/srecord/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 4 Mar 2009 19:41:00 -0000 1.18 +++ sources 10 Jul 2009 20:40:56 -0000 1.19 @@ -1 +1 @@ -5e79cf13292daa5fa8a01c6737d28fc6 srecord-1.47.tar.gz +32e325f6f66e0abdc70903497d05c992 srecord-1.50.tar.gz Index: srecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/srecord/devel/srecord.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- srecord.spec 4 Mar 2009 19:41:00 -0000 1.23 +++ srecord.spec 10 Jul 2009 20:40:56 -0000 1.24 @@ -1,5 +1,5 @@ Name: srecord -Version: 1.47 +Version: 1.50 Release: 1%{?dist} Summary: Manipulate EPROM load files @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 1.50-1 +- update to 1.50 + * Wed Mar 4 2009 Tom "spot" Callaway - 1.47-1 - update to 1.47 From ajax at fedoraproject.org Fri Jul 10 20:41:19 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Fri, 10 Jul 2009 20:41:19 +0000 (UTC) Subject: rpms/cdrkit/devel cdrkit.spec,1.25,1.26 Message-ID: <20090710204119.5BB3F11C0095@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/cdrkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27056 Modified Files: cdrkit.spec Log Message: * Fri Jul 10 2009 Adam Jackson 1.1.9-7 - Move dirsplit to a subpackage to isolate the perl dependency. Index: cdrkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdrkit/devel/cdrkit.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- cdrkit.spec 15 Jun 2009 13:32:00 -0000 1.25 +++ cdrkit.spec 10 Jul 2009 20:40:49 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A collection of CD/DVD utilities Name: cdrkit Version: 1.1.9 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/System URL: http://cdrkit.org/ @@ -39,7 +39,6 @@ Summary: Creates an image of an ISO9660 Group: Applications/System Obsoletes: mkisofs < 9:2.01-12 Provides: mkisofs = 9:2.01-12 -Requires: perl >= 4:5.8.1 Requires(preun): %{_sbindir}/alternatives chkconfig coreutils Requires(post): %{_sbindir}/alternatives chkconfig coreutils @@ -54,6 +53,15 @@ support for creating bootable El Torito Install the genisoimage package if you need a program for writing CD-ROMs. +%package -n dirsplit +Summary: dirsplit utility +Group: Applications/System +Requires: perl >= 4:5.8.1 +Requires: genisoimage = %{version}-%{release} + +%description -n dirsplit +dirsplit + %package -n icedax Group: Applications/Multimedia Summary: A utility for sampling/copying .wav files from digital audio CDs @@ -201,7 +209,6 @@ fi %{_bindir}/isodump %{_bindir}/isoinfo %{_bindir}/isovfy -%{_bindir}/dirsplit %{_bindir}/pitchplay %{_bindir}/readmult %{_mandir}/man5/genisoimagerc.* @@ -210,11 +217,18 @@ fi %{_mandir}/man1/isodump.* %{_mandir}/man1/isoinfo.* %{_mandir}/man1/isovfy.* -%{_mandir}/man1/dirsplit.* %{_mandir}/man1/pitchplay.* %{_mandir}/man1/readmult.* +%files -n dirsplit +%defattr(-,root,root) +%{_bindir}/dirsplit +%{_mandir}/man1/dirsplit.* + %changelog +* Fri Jul 10 2009 Adam Jackson 1.1.9-7 +- Move dirsplit to a subpackage to isolate the perl dependency. + * Tue Jun 15 2009 Roman Rakus - 1.1.9-6 - rename functions as they conflict with glibc - Don't push cdda2mp3 because we don't have any mp3 coder From jdennis at fedoraproject.org Fri Jul 10 20:43:26 2009 From: jdennis at fedoraproject.org (John Dennis) Date: Fri, 10 Jul 2009 20:43:26 +0000 (UTC) Subject: rpms/freeradius/devel freeradius.spec,1.82,1.83 Message-ID: <20090710204326.BD9DA11C0095@cvs1.fedora.phx.redhat.com> Author: jdennis Update of /cvs/pkgs/rpms/freeradius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28349 Modified Files: freeradius.spec Log Message: install COPYRIGHT CREDITS INSTALL LICENSE README into docdir Index: freeradius.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeradius/devel/freeradius.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- freeradius.spec 23 Jun 2009 19:39:57 -0000 1.82 +++ freeradius.spec 10 Jul 2009 20:43:26 -0000 1.83 @@ -1,7 +1,7 @@ Summary: High-performance and highly configurable free RADIUS server Name: freeradius Version: 2.1.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Daemons URL: http://www.freeradius.org/ @@ -221,6 +221,11 @@ rm -rf $RPM_BUILD_ROOT/%{_datadir}/dialu # remove unsupported config files rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/raddb/experimental.conf +# install doc files omitted by standard install +for f in COPYRIGHT CREDITS INSTALL LICENSE README; do + cp $f $RPM_BUILD_ROOT/%{docdir} +done + # add Red Hat specific documentation cat >> $RPM_BUILD_ROOT/%{docdir}/REDHAT << EOF @@ -572,6 +577,9 @@ fi %{_libdir}/freeradius/rlm_sql_unixodbc-%{version}.so %changelog +* Fri Jul 10 2009 John Dennis - 2.1.6-4 +- install COPYRIGHT CREDITS INSTALL LICENSE README into docdir + * Tue Jun 23 2009 John Dennis - 2.1.6-3 - resolves bug #507571 freeradius packages do not check for user/group existence From ron at fedoraproject.org Fri Jul 10 20:43:44 2009 From: ron at fedoraproject.org (ron) Date: Fri, 10 Jul 2009 20:43:44 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/devel import.log, NONE, 1.1 perl-Math-Curve-Hilbert.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710204344.0AE0D11C0095@cvs1.fedora.phx.redhat.com> Author: ron Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26950/devel Modified Files: .cvsignore sources Added Files: import.log perl-Math-Curve-Hilbert.spec Log Message: Auto import of perl-Math-Curve-Hilbert. --- NEW FILE import.log --- perl-Math-Curve-Hilbert-0_04-2_fc10:HEAD:perl-Math-Curve-Hilbert-0.04-2.fc10.src.rpm:1247258360 --- NEW FILE perl-Math-Curve-Hilbert.spec --- Name: perl-Math-Curve-Hilbert Version: 0.04 Release: 2%{?dist} Summary: Perl Implementation of Hilberts space-filling Curve License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Math-Curve-Hilbert/ Source0: http://www.cpan.org/authors/id/T/TE/TEEJAY/Math-Curve-Hilbert-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Hilbert curve module provides some useful functions using Hilberts space- filling Curve. This is handy for things like dithering, flattening n-dimensional data, fractals - all kinds of things really. %prep %setup -q -n Math-Curve-Hilbert-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 10 2009 Rasmus Ory Nielsen - 0.04-2 - Improved description. * Sat Jun 20 2009 Rasmus Ory Nielsen - 0.04-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 18:12:10 -0000 1.1 +++ .cvsignore 10 Jul 2009 20:43:43 -0000 1.2 @@ -0,0 +1 @@ +Math-Curve-Hilbert-0.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:10 -0000 1.1 +++ sources 10 Jul 2009 20:43:43 -0000 1.2 @@ -0,0 +1 @@ +384cad8ba6759efdf0bbbe987350109f Math-Curve-Hilbert-0.04.tar.gz From ron at fedoraproject.org Fri Jul 10 20:47:57 2009 From: ron at fedoraproject.org (ron) Date: Fri, 10 Jul 2009 20:47:57 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/F-10 import.log, NONE, 1.1 perl-Math-Curve-Hilbert.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710204757.969B211C0095@cvs1.fedora.phx.redhat.com> Author: ron Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30837/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Math-Curve-Hilbert.spec Log Message: Auto import of perl-Math-Curve-Hilbert. --- NEW FILE import.log --- perl-Math-Curve-Hilbert-0_04-2_fc10:F-10:perl-Math-Curve-Hilbert-0.04-2.fc10.src.rpm:1247258834 --- NEW FILE perl-Math-Curve-Hilbert.spec --- Name: perl-Math-Curve-Hilbert Version: 0.04 Release: 2%{?dist} Summary: Perl Implementation of Hilberts space-filling Curve License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Math-Curve-Hilbert/ Source0: http://www.cpan.org/authors/id/T/TE/TEEJAY/Math-Curve-Hilbert-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Hilbert curve module provides some useful functions using Hilberts space- filling Curve. This is handy for things like dithering, flattening n-dimensional data, fractals - all kinds of things really. %prep %setup -q -n Math-Curve-Hilbert-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 10 2009 Rasmus Ory Nielsen - 0.04-2 - Improved description. * Sat Jun 20 2009 Rasmus Ory Nielsen - 0.04-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 18:12:10 -0000 1.1 +++ .cvsignore 10 Jul 2009 20:47:57 -0000 1.2 @@ -0,0 +1 @@ +Math-Curve-Hilbert-0.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:10 -0000 1.1 +++ sources 10 Jul 2009 20:47:57 -0000 1.2 @@ -0,0 +1 @@ +384cad8ba6759efdf0bbbe987350109f Math-Curve-Hilbert-0.04.tar.gz From ajax at fedoraproject.org Fri Jul 10 20:48:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Fri, 10 Jul 2009 20:48:58 +0000 (UTC) Subject: rpms/lm_sensors/devel lm_sensors.spec,1.70,1.71 Message-ID: <20090710204858.8505D11C0095@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/lm_sensors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31299 Modified Files: lm_sensors.spec Log Message: * Fri Jul 10 2009 Adam Jackson 3.1.1-2 - Add -libs subpackage so perl doesn't get dragged in just for linking against libsensors. Index: lm_sensors.spec =================================================================== RCS file: /cvs/pkgs/rpms/lm_sensors/devel/lm_sensors.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- lm_sensors.spec 7 Jul 2009 13:12:31 -0000 1.70 +++ lm_sensors.spec 10 Jul 2009 20:48:28 -0000 1.71 @@ -1,6 +1,6 @@ Name: lm_sensors Version: 3.1.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.lm-sensors.org/ Source: http://dl.lm-sensors.org/lm-sensors/releases/%{name}-%{version}.tar.bz2 Source1: lm_sensors.sysconfig @@ -26,6 +26,14 @@ The lm_sensors package includes a collec access and hardware monitoring. +%package libs +Summary: lm_sensors core libraries +Group: System Environment/Libraries + +%description libs +Core libraries for lm_sensors applications + + %package devel Summary: Development files for programs which will use lm_sensors Group: Development/System @@ -138,7 +146,6 @@ fi %doc prog/init/fancontrol.init prog/init/README.initscripts %config(noreplace) %{_sysconfdir}/sensors3.conf %{_bindir}/* -%{_libdir}/*.so.* %{_mandir}/man1/* %{_mandir}/man5/* %{_mandir}/man8/* @@ -148,6 +155,10 @@ fi %exclude %{_sbindir}/sensord %exclude %{_mandir}/man8/sensord.8.gz +%files libs +%defattr(-,root,root) +%{_libdir}/*.so.* + %files devel %defattr(-,root,root) %{_includedir}/sensors @@ -164,6 +175,10 @@ fi %changelog +* Fri Jul 10 2009 Adam Jackson 3.1.1-2 +- Add -libs subpackage so perl doesn't get dragged in just for linking + against libsensors. + * Tue Jul 7 2009 Nikola Pajokvsky 3.1.1-1 - New release 3.1.1 From ron at fedoraproject.org Fri Jul 10 20:49:31 2009 From: ron at fedoraproject.org (ron) Date: Fri, 10 Jul 2009 20:49:31 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/F-11 import.log, NONE, 1.1 perl-Math-Curve-Hilbert.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090710204931.0518411C0095@cvs1.fedora.phx.redhat.com> Author: ron Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31898/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Math-Curve-Hilbert.spec Log Message: Auto import of perl-Math-Curve-Hilbert. --- NEW FILE import.log --- perl-Math-Curve-Hilbert-0_04-2_fc10:F-11:perl-Math-Curve-Hilbert-0.04-2.fc10.src.rpm:1247258933 --- NEW FILE perl-Math-Curve-Hilbert.spec --- Name: perl-Math-Curve-Hilbert Version: 0.04 Release: 2%{?dist} Summary: Perl Implementation of Hilberts space-filling Curve License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Math-Curve-Hilbert/ Source0: http://www.cpan.org/authors/id/T/TE/TEEJAY/Math-Curve-Hilbert-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Hilbert curve module provides some useful functions using Hilberts space- filling Curve. This is handy for things like dithering, flattening n-dimensional data, fractals - all kinds of things really. %prep %setup -q -n Math-Curve-Hilbert-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Fri Jul 10 2009 Rasmus Ory Nielsen - 0.04-2 - Improved description. * Sat Jun 20 2009 Rasmus Ory Nielsen - 0.04-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 18:12:10 -0000 1.1 +++ .cvsignore 10 Jul 2009 20:49:30 -0000 1.2 @@ -0,0 +1 @@ +Math-Curve-Hilbert-0.04.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 18:12:10 -0000 1.1 +++ sources 10 Jul 2009 20:49:30 -0000 1.2 @@ -0,0 +1 @@ +384cad8ba6759efdf0bbbe987350109f Math-Curve-Hilbert-0.04.tar.gz From ajax at fedoraproject.org Fri Jul 10 20:54:53 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Fri, 10 Jul 2009 20:54:53 +0000 (UTC) Subject: comps comps-f12.xml.in,1.32,1.33 Message-ID: <20090710205453.8370511C0095@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2478 Modified Files: comps-f12.xml.in Log Message: move evolution-perl to optional Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- comps-f12.xml.in 10 Jul 2009 11:54:15 -0000 1.32 +++ comps-f12.xml.in 10 Jul 2009 20:54:52 -0000 1.33 @@ -2623,7 +2623,6 @@ empathy evolution evolution-help - evolution-perl firefox java-1.6.0-openjdk-plugin nspluginwrapper @@ -2647,6 +2646,7 @@ evolution-bogofilter evolution-conduits evolution-exchange + evolution-perl filezilla fwbuilder gajim From spot at fedoraproject.org Fri Jul 10 20:58:19 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 20:58:19 +0000 (UTC) Subject: rpms/srecord/devel srecord.spec,1.24,1.25 Message-ID: <20090710205819.D4A8911C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/srecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4155 Modified Files: srecord.spec Log Message: add missing BuildRequires Index: srecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/srecord/devel/srecord.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- srecord.spec 10 Jul 2009 20:40:56 -0000 1.24 +++ srecord.spec 10 Jul 2009 20:58:18 -0000 1.25 @@ -1,6 +1,6 @@ Name: srecord Version: 1.50 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Manipulate EPROM load files Group: Development/Tools @@ -12,7 +12,7 @@ Source0: http://downloads.sourcef Patch0: srecord-1.46-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: diffutils, sharutils, groff, boost-devel +BuildRequires: diffutils, sharutils, groff, boost-devel, libgcrypt-devel %description The SRecord package is a collection of powerful tools for manipulating @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 1.50-2 +- add BuildRequires: libgcrypt-devel + * Fri Jul 10 2009 Tom "spot" Callaway - 1.50-1 - update to 1.50 From davej at fedoraproject.org Fri Jul 10 21:10:12 2009 From: davej at fedoraproject.org (Dave Jones) Date: Fri, 10 Jul 2009 21:10:12 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc2-git5.bz2.sign, NONE, 1.1 .cvsignore, 1.1094, 1.1095 kernel.spec, 1.1625, 1.1626 linux-2.6-compile-fixes.patch, 1.194, 1.195 sources, 1.1052, 1.1053 upstream, 1.966, 1.967 patch-2.6.31-rc2-git4.bz2.sign, 1.1, NONE Message-ID: <20090710211012.5C68311C0095@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10185 Modified Files: .cvsignore kernel.spec linux-2.6-compile-fixes.patch sources upstream Added Files: patch-2.6.31-rc2-git5.bz2.sign Removed Files: patch-2.6.31-rc2-git4.bz2.sign Log Message: 2.6.31-rc2-git5 --- NEW FILE patch-2.6.31-rc2-git5.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKVy33yGugalF9Dw4RArdvAJ9ECtSPHPYUQO+sqAKWYApNa6LcvQCbBKmF tQwal/f62N4VMA8x0hmST1M= =1dSL -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1094 retrieving revision 1.1095 diff -u -p -r1.1094 -r1.1095 --- .cvsignore 10 Jul 2009 00:00:11 -0000 1.1094 +++ .cvsignore 10 Jul 2009 21:10:10 -0000 1.1095 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git4.bz2 +patch-2.6.31-rc2-git5.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1625 retrieving revision 1.1626 diff -u -p -r1.1625 -r1.1626 --- kernel.spec 10 Jul 2009 00:04:56 -0000 1.1625 +++ kernel.spec 10 Jul 2009 21:10:10 -0000 1.1626 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 2 # The git snapshot level -%define gitrev 4 +%define gitrev 5 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -106,7 +106,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 0 +%define rawhide_skip_docs 1 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1869,6 +1869,9 @@ fi # and build. %changelog +* Fri Jul 10 2009 Dave Jones +- 2.6.31-rc2-git5 + * Thu Jul 09 2009 Dave Jones 2.6.31-0.62.rc2.git4 - Use correct spinlock initialization in dma-debug linux-2.6-compile-fixes.patch: Index: linux-2.6-compile-fixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-compile-fixes.patch,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- linux-2.6-compile-fixes.patch 10 Jul 2009 01:56:09 -0000 1.194 +++ linux-2.6-compile-fixes.patch 10 Jul 2009 21:10:10 -0000 1.195 @@ -4,14 +4,3 @@ # Please add the errors from gcc before the diffs to save others having # to do a compile to figure out what your diff is fixing. Thanks. # ---- linux-2.6.30.noarch/drivers/net/bmac.c~ 2009-07-09 21:51:36.000000000 -0400 -+++ linux-2.6.30.noarch/drivers/net/bmac.c 2009-07-09 21:51:47.000000000 -0400 -@@ -431,7 +431,7 @@ bmac_init_phy(struct net_device *dev) - printk(KERN_DEBUG); - printk(KERN_CONT " %.4x", bmac_mif_read(dev, addr)); - } -- print(KERN_CONT "\n"); -+ printk(KERN_CONT "\n"); - - if (bp->is_bmac_plus) { - unsigned int capable, ctrl; Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1052 retrieving revision 1.1053 diff -u -p -r1.1052 -r1.1053 --- sources 10 Jul 2009 00:00:12 -0000 1.1052 +++ sources 10 Jul 2009 21:10:11 -0000 1.1053 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -76b4082138a3d4ba88c37da6e3b91d13 patch-2.6.31-rc2-git4.bz2 +5082653df34f13eb8c162f52907a2090 patch-2.6.31-rc2-git5.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.966 retrieving revision 1.967 diff -u -p -r1.966 -r1.967 --- upstream 10 Jul 2009 00:00:13 -0000 1.966 +++ upstream 10 Jul 2009 21:10:11 -0000 1.967 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git4.bz2 +patch-2.6.31-rc2-git5.bz2 --- patch-2.6.31-rc2-git4.bz2.sign DELETED --- From davej at fedoraproject.org Fri Jul 10 21:12:19 2009 From: davej at fedoraproject.org (Dave Jones) Date: Fri, 10 Jul 2009 21:12:19 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch, NONE, 1.1 kernel.spec, 1.1626, 1.1627 Message-ID: <20090710211219.7013511C0095@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11127 Modified Files: kernel.spec Added Files: linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch Log Message: Don't jump through hoops that ppc powerbooks have to on sensible systems in cpufreq_suspend. linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch: --- NEW FILE linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch --- diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 5cc77fb..8d3b3d1 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1288,6 +1288,14 @@ static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) dprintk("suspending cpu %u\n", cpu); + /* + * This whole bogosity is here because Powerbooks are made of fail. + * No sane platform should need any of the code below to be run. + * (it's entirely the wrong thing to do, as driver->get may + * reenable interrupts on some architectures). + */ + +#ifdef __powerpc__ if (!cpu_online(cpu)) return 0; @@ -1346,6 +1354,7 @@ static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) out: cpufreq_cpu_put(cpu_policy); +#endif /* __powerpc__ */ return ret; } @@ -1365,6 +1374,11 @@ static int cpufreq_resume(struct sys_device *sysdev) dprintk("resuming cpu %u\n", cpu); + /* As with the ->suspend method, all the code below is + * only necessary because Powerbooks suck. + * See commit 42d4dc3f4e1e for jokes. */ +#ifdef __powerpc__ + if (!cpu_online(cpu)) return 0; @@ -1428,6 +1442,7 @@ out: schedule_work(&cpu_policy->update); fail: cpufreq_cpu_put(cpu_policy); +#endif /* __powerpc__ */ return ret; } Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1626 retrieving revision 1.1627 diff -u -p -r1.1626 -r1.1627 --- kernel.spec 10 Jul 2009 21:10:10 -0000 1.1626 +++ kernel.spec 10 Jul 2009 21:12:18 -0000 1.1627 @@ -645,6 +645,8 @@ Patch800: linux-2.6-crash-driver.patch Patch900: linux-2.6-pci-cacheline-sizing.patch +Patch1000: linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch + Patch1515: linux-2.6.31-lirc.patch Patch1516: lirc_streamzap-buffer-rework.patch Patch1517: hdpvr-ir-enable.patch @@ -1220,6 +1222,8 @@ ApplyPatch linux-2.6-crash-driver.patch # Determine cacheline sizes in a generic manner. ApplyPatch linux-2.6-pci-cacheline-sizing.patch +ApplyPatch linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch + # http://www.lirc.org/ ApplyPatch linux-2.6.31-lirc.patch # should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else... @@ -1869,6 +1873,10 @@ fi # and build. %changelog +* Fri Jul 10 2009 Dave Jones 2.6.31-0.64.rc2.git5 +- Don't jump through hoops that ppc powerbooks have to on sensible systems + in cpufreq_suspend. + * Fri Jul 10 2009 Dave Jones - 2.6.31-rc2-git5 From toshio at fedoraproject.org Fri Jul 10 21:17:13 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Fri, 10 Jul 2009 21:17:13 +0000 (UTC) Subject: rpms/bzr-gtk/devel bzr-gtk-el5-encoding.patch, NONE, 1.1 bzr-gtk.spec, 1.40, 1.41 bug377476.diff, 1.1, NONE Message-ID: <20090710211713.AD53B11C0095@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/bzr-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12931 Modified Files: bzr-gtk.spec Added Files: bzr-gtk-el5-encoding.patch Removed Files: bug377476.diff Log Message: * Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 - Update to work with bzr-1.16 - Update rhel version reqs bzr-gtk-el5-encoding.patch: --- NEW FILE bzr-gtk-el5-encoding.patch --- diff -up bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc bzr-gtk-0.94.0/bzr-handle-patch.desktop --- bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc 2008-05-07 12:51:09.000000000 -0700 +++ bzr-gtk-0.94.0/bzr-handle-patch.desktop 2008-05-07 12:51:19.000000000 -0700 @@ -1,4 +1,5 @@ [Desktop Entry] +Encoding=UTF-8 Name=Bazaar Comment=Apply Bazaar Bundle Icon=bazaar Index: bzr-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/devel/bzr-gtk.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- bzr-gtk.spec 27 May 2009 17:45:31 -0000 1.40 +++ bzr-gtk.spec 10 Jul 2009 21:16:42 -0000 1.41 @@ -7,20 +7,21 @@ %define debug_package %{nil} Name: bzr-gtk -Version: 0.95.0 -Release: 5%{?dist} +Version: 0.96.2 +Release: 1%{?dist} Summary: Bazaar plugin for GTK+ interfaces to most Bazaar operations Group: Development/Tools License: GPLv2+ URL: http://bazaar-vcs.org/bzr-gtk -Source0: http://samba.org/~jelmer/bzr/bzr-gtk-%{version}.tar.gz +Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz # This requires some nonexistent functionality. Bug filed upstream. Disabled # for now. Patch0: bzr-gtk-disable-nautilus-pull.patch -# Fix for seahorse traceback from upstream -Patch1: bug377476.diff -%if 0%{?fedora} <= 7 +# Change the version in the desktop file -- it's for the dektop spec version, +# not the application version +Patch1: bzr-gtk-desktop-version.patch +%if 0%{?fedora} <= 7 || 0%{?rhel} <= 5 # In EL-5 and Fedora < 7 Encoding was a mandatory field. Now it's deprecated. Patch100: bzr-gtk-el5-encoding.patch %endif @@ -68,9 +69,9 @@ from within Nautilus. %prep %setup -q %patch0 -p1 -b .nautilusdisable -%patch1 -p0 -b .seahorse +%patch1 -p1 -b .dver -%if 0%{?fedora} <= 7 +%if 0%{?fedora} <= 7 || 0%{?rhel} > 5 # EPEL 5 and Fedora <= 7 %patch100 -p1 -b .encoding %endif @@ -85,6 +86,8 @@ rm -rf $RPM_BUILD_ROOT desktop-file-validate bazaar-properties.desktop desktop-file-validate bzr-handle-patch.desktop desktop-file-validate olive-gtk.desktop +desktop-file-validate bzr-notify.desktop + %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT if test "%{python_sitelib}" != "%{python_sitearch}" ; then install -d -m 0755 $RPM_BUILD_ROOT%{python_sitearch} @@ -128,6 +131,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 +- Update to work with bzr-1.16 +- Update rhel version reqs + * Wed May 27 2009 Toshio Kuratomi - 0.95.0-5 - Upstream patch to work around: bz#498138 --- bug377476.diff DELETED --- From toshio at fedoraproject.org Fri Jul 10 21:17:47 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Fri, 10 Jul 2009 21:17:47 +0000 (UTC) Subject: rpms/bzr-gtk/devel .cvsignore,1.14,1.15 sources,1.14,1.15 Message-ID: <20090710211747.0419E11C0095@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/bzr-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13347 Modified Files: .cvsignore sources Log Message: And the new tarball. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 4 Sep 2008 03:52:03 -0000 1.14 +++ .cvsignore 10 Jul 2009 21:17:46 -0000 1.15 @@ -1 +1 @@ -bzr-gtk-0.95.0.tar.gz +bzr-gtk-0.96.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 4 Sep 2008 03:52:03 -0000 1.14 +++ sources 10 Jul 2009 21:17:46 -0000 1.15 @@ -1 +1 @@ -00aedce625672abca13d2d962b047ac0 bzr-gtk-0.95.0.tar.gz +3873dc9efcbc7a655f1c890be406a867 bzr-gtk-0.96.2.tar.gz From drago01 at fedoraproject.org Fri Jul 10 21:24:50 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 21:24:50 +0000 (UTC) Subject: rpms/compiz/devel compiz-0.8.2-wall.patch, NONE, 1.1 compiz.spec, 1.169, 1.170 Message-ID: <20090710212451.0024F11C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16835 Modified Files: compiz.spec Added Files: compiz-0.8.2-wall.patch Log Message: Move wall plugin from fusion to the main compiz package compiz-0.8.2-wall.patch: --- NEW FILE compiz-0.8.2-wall.patch --- diff -upNr compiz-0.8.2.orign/metadata/wall.xml.in compiz-0.8.2/metadata/wall.xml.in --- compiz-0.8.2.orign/metadata/wall.xml.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-0.8.2/metadata/wall.xml.in 2009-03-05 04:36:21.000000000 +0100 @@ -0,0 +1,357 @@ + + + + <_short>Desktop Wall + <_long>Desktop Wall Plugin + Desktop + largedesktop + + + decoration + + + wobbly + fade + + + + + <_short>Viewport Switch Preview + + + + + + + + + <_short>Background Gradient + + + + + + + <_short>Thumb Gradient + + + + + + <_short>Highlight Gradient + + + + + + <_short>Arrow Colors + + + + + + + <_short>Viewport Switching + + + [...4527 lines suppressed...] +unsigned short * wallGetArrowBaseColor (CompDisplay *d); +unsigned short wallGetArrowBaseColorRed (CompDisplay *d); +unsigned short wallGetArrowBaseColorGreen (CompDisplay *d); +unsigned short wallGetArrowBaseColorBlue (CompDisplay *d); +unsigned short wallGetArrowBaseColorAlpha (CompDisplay *d); +CompOption * wallGetArrowBaseColorOption (CompDisplay *d); +void wallSetArrowBaseColorNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +unsigned short * wallGetArrowShadowColor (CompDisplay *d); +unsigned short wallGetArrowShadowColorRed (CompDisplay *d); +unsigned short wallGetArrowShadowColorGreen (CompDisplay *d); +unsigned short wallGetArrowShadowColorBlue (CompDisplay *d); +unsigned short wallGetArrowShadowColorAlpha (CompDisplay *d); +CompOption * wallGetArrowShadowColorOption (CompDisplay *d); +void wallSetArrowShadowColorNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +Bool wallGetAllowWraparound (CompDisplay *d); +CompOption * wallGetAllowWraparoundOption (CompDisplay *d); +void wallSetAllowWraparoundNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +float wallGetSlideDuration (CompDisplay *d); +CompOption * wallGetSlideDurationOption (CompDisplay *d); +void wallSetSlideDurationNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompMatch * wallGetNoSlideMatch (CompDisplay *d); +CompOption * wallGetNoSlideMatchOption (CompDisplay *d); +void wallSetNoSlideMatchNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetLeftKey (CompDisplay *d); +void wallSetLeftKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetLeftKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetLeftKeyOption (CompDisplay *d); +void wallSetLeftKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetLeftButton (CompDisplay *d); +void wallSetLeftButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetLeftButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetLeftButtonOption (CompDisplay *d); +void wallSetLeftButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetRightKey (CompDisplay *d); +void wallSetRightKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetRightKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetRightKeyOption (CompDisplay *d); +void wallSetRightKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetRightButton (CompDisplay *d); +void wallSetRightButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetRightButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetRightButtonOption (CompDisplay *d); +void wallSetRightButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetUpKey (CompDisplay *d); +void wallSetUpKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetUpKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetUpKeyOption (CompDisplay *d); +void wallSetUpKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetUpButton (CompDisplay *d); +void wallSetUpButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetUpButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetUpButtonOption (CompDisplay *d); +void wallSetUpButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetDownKey (CompDisplay *d); +void wallSetDownKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetDownKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetDownKeyOption (CompDisplay *d); +void wallSetDownKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetDownButton (CompDisplay *d); +void wallSetDownButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetDownButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetDownButtonOption (CompDisplay *d); +void wallSetDownButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetNextKey (CompDisplay *d); +void wallSetNextKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetNextKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetNextKeyOption (CompDisplay *d); +void wallSetNextKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetNextButton (CompDisplay *d); +void wallSetNextButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetNextButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetNextButtonOption (CompDisplay *d); +void wallSetNextButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetPrevKey (CompDisplay *d); +void wallSetPrevKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetPrevKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetPrevKeyOption (CompDisplay *d); +void wallSetPrevKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetPrevButton (CompDisplay *d); +void wallSetPrevButtonInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetPrevButtonTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetPrevButtonOption (CompDisplay *d); +void wallSetPrevButtonNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetLeftWindowKey (CompDisplay *d); +void wallSetLeftWindowKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetLeftWindowKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetLeftWindowKeyOption (CompDisplay *d); +void wallSetLeftWindowKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetRightWindowKey (CompDisplay *d); +void wallSetRightWindowKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetRightWindowKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetRightWindowKeyOption (CompDisplay *d); +void wallSetRightWindowKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetUpWindowKey (CompDisplay *d); +void wallSetUpWindowKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetUpWindowKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetUpWindowKeyOption (CompDisplay *d); +void wallSetUpWindowKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetDownWindowKey (CompDisplay *d); +void wallSetDownWindowKeyInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetDownWindowKeyTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetDownWindowKeyOption (CompDisplay *d); +void wallSetDownWindowKeyNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetFlipLeftEdge (CompDisplay *d); +void wallSetFlipLeftEdgeInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetFlipLeftEdgeTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetFlipLeftEdgeOption (CompDisplay *d); +void wallSetFlipLeftEdgeNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetFlipRightEdge (CompDisplay *d); +void wallSetFlipRightEdgeInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetFlipRightEdgeTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetFlipRightEdgeOption (CompDisplay *d); +void wallSetFlipRightEdgeNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetFlipUpEdge (CompDisplay *d); +void wallSetFlipUpEdgeInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetFlipUpEdgeTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetFlipUpEdgeOption (CompDisplay *d); +void wallSetFlipUpEdgeNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +CompAction * wallGetFlipDownEdge (CompDisplay *d); +void wallSetFlipDownEdgeInitiate (CompDisplay *d, CompActionCallBackProc init); +void wallSetFlipDownEdgeTerminate (CompDisplay *d, CompActionCallBackProc term); +CompOption * wallGetFlipDownEdgeOption (CompDisplay *d); +void wallSetFlipDownEdgeNotify (CompDisplay *d, wallDisplayOptionChangeNotifyProc notify); + +int wallGetMmmode (CompScreen *s); +CompOption * wallGetMmmodeOption (CompScreen *s); +void wallSetMmmodeNotify (CompScreen *s, wallScreenOptionChangeNotifyProc notify); + +Bool wallGetEdgeflipPointer (CompScreen *s); +CompOption * wallGetEdgeflipPointerOption (CompScreen *s); +void wallSetEdgeflipPointerNotify (CompScreen *s, wallScreenOptionChangeNotifyProc notify); + +Bool wallGetEdgeflipMove (CompScreen *s); +CompOption * wallGetEdgeflipMoveOption (CompScreen *s); +void wallSetEdgeflipMoveNotify (CompScreen *s, wallScreenOptionChangeNotifyProc notify); + +Bool wallGetEdgeflipDnd (CompScreen *s); +CompOption * wallGetEdgeflipDndOption (CompScreen *s); +void wallSetEdgeflipDndNotify (CompScreen *s, wallScreenOptionChangeNotifyProc notify); + +#ifndef GENERIC_PRIVATE_DEFINES +#define GENERIC_PRIVATE_DEFINES + +#define GET_PLUGIN_CORE(object, plugin) \ + ((plugin##Core *) (object)->base.privates[plugin##CorePrivateIndex].ptr) +#define PLUGIN_CORE(object, plugin, prefix) \ + plugin##Core * prefix##c = GET_PLUGIN_CORE (object, plugin) + +#define GET_PLUGIN_DISPLAY(object, plugin) \ + ((plugin##Display *) \ + (object)->base.privates[plugin##DisplayPrivateIndex].ptr) +#define PLUGIN_DISPLAY(object, plugin, prefix) \ + plugin##Display * prefix##d = GET_PLUGIN_DISPLAY (object, plugin) + +#define GET_PLUGIN_SCREEN(object, parent, plugin) \ + ((plugin##Screen *) \ + (object)->base.privates[(parent)->screenPrivateIndex].ptr) +#define PLUGIN_SCREEN(object, plugin, prefix) \ + plugin##Screen * prefix##s = \ + GET_PLUGIN_SCREEN (object, \ + GET_PLUGIN_DISPLAY ((object)->display, plugin), plugin) + +#define GET_PLUGIN_WINDOW(object, parent, plugin) \ + ((plugin##Window *) \ + (object)->base.privates[(parent)->windowPrivateIndex].ptr) +#define PLUGIN_WINDOW(object, plugin, prefix) \ + plugin##Window * prefix##w = \ + GET_PLUGIN_WINDOW (object, \ + GET_PLUGIN_SCREEN ((object)->screen, \ + GET_PLUGIN_DISPLAY ((object)->screen->display, plugin), plugin), plugin) + +#endif + +COMPIZ_END_DECLS + +#endif Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- compiz.spec 10 Jul 2009 11:57:02 -0000 1.169 +++ compiz.spec 10 Jul 2009 21:24:50 -0000 1.170 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.8.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -43,6 +43,7 @@ BuildRequires: mesa-libGLU-devel BuildRequires: kdebase-workspace-devel plasma-devel BuildRequires: dbus-qt-devel BuildRequires: fuse-devel +BuildRequires: cairo-devel Source0: http://releases.compiz-fusion.org/compiz/%{version}/%{name}-%{version}.tar.bz2 Source1: desktop-effects-%{dialogversion}.tar.bz2 @@ -59,6 +60,7 @@ Patch102: desktop-effects-0.7.17-wall-pl Patch103: composite-cube-logo.patch Patch105: fedora-logo.patch Patch106: redhat-logo.patch +Patch107: compiz-0.8.2-wall.patch #Patch110: scale-key.patch # update translations in desktop-effects Patch115: desktop-effects-linguas.patch @@ -100,7 +102,6 @@ Requires: gnome-session >= 2.19.6-5 Requires: metacity >= 2.18 Requires: libwnck >= 2.15.4 Requires: %{name} = %{version} -Requires: compiz-fusion-gnome = %{version} Requires(pre): GConf2 Requires(post): GConf2 Requires(preun): GConf2 @@ -140,6 +141,7 @@ popd %else %patch106 -p1 -b .redhat-logo %endif +%patch107 -p1 -b .wall #%patch110 -p1 -b .scale-key %patch123 -p1 -b .initial-plugins @@ -155,7 +157,8 @@ export CPPFLAGS LDFLAGS="$LDFLAGS -L%{_libdir}/kde4/devel" export LDFLAGS - +aclocal +automake %configure \ --enable-gconf \ --enable-dbus \ @@ -356,6 +359,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Adel Gadllah - 0.8.2-5 +- Move wall plugin from fusion to the main compiz package +- Drop requires on compiz-fusion-gnome + * Fri Jul 10 2009 Adel Gadllah - 0.8.2-4 - Replace compiz-0.8.2-pin-initial-plugins with a fixed up one by Philippe Troin (RH #473896) From drago01 at fedoraproject.org Fri Jul 10 21:25:13 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 21:25:13 +0000 (UTC) Subject: rpms/compiz-fusion/devel compiz-fusion.spec,1.49,1.50 Message-ID: <20090710212513.52E3C11C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz-fusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17045 Modified Files: compiz-fusion.spec Log Message: Don't ship the wall plugin, moved to the compiz package Index: compiz-fusion.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-fusion/devel/compiz-fusion.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- compiz-fusion.spec 26 May 2009 19:51:17 -0000 1.49 +++ compiz-fusion.spec 10 Jul 2009 21:25:11 -0000 1.50 @@ -2,7 +2,7 @@ Name: compiz-fusion Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of Compiz Fusion plugins for Compiz Group: User Interface/Desktops @@ -79,7 +79,9 @@ make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/*.la rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/*.a - +# remove wall plugin +rm -f $RPM_BUILD_ROOT%{_datadir}/compiz/wall.xml +rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/wall.so %find_lang compiz-plugins-main @@ -137,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Adel Gadllah 0.8.2-2 +- Don't ship the wall plugin, moved to the compiz package + * Mon May 25 2009 Adel Gadllah 0.8.2-1 - Update to 0.8.2 - Drop upstreamed patches From drago01 at fedoraproject.org Fri Jul 10 21:27:22 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 21:27:22 +0000 (UTC) Subject: rpms/compiz/devel compiz.spec,1.170,1.171 Message-ID: <20090710212722.C137D11C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18118 Modified Files: compiz.spec Log Message: Move wall plugin from fusion to the main compiz package Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz.spec,v retrieving revision 1.170 retrieving revision 1.171 diff -u -p -r1.170 -r1.171 --- compiz.spec 10 Jul 2009 21:24:50 -0000 1.170 +++ compiz.spec 10 Jul 2009 21:27:22 -0000 1.171 @@ -1,7 +1,7 @@ %define dialogversion 0.7.18 %define kde_dialogversion 0.0.5 -%define core_plugins blur clone cube dbus decoration fade ini inotify minimize move place png regex resize rotate scale screenshot switcher video water wobbly zoom fs obs commands +%define core_plugins blur clone cube dbus decoration fade ini inotify minimize move place png regex resize rotate scale screenshot switcher video water wobbly zoom fs obs commands wall %define gnome_plugins annotate gconf glib svg gnomecompat From drago01 at fedoraproject.org Fri Jul 10 21:27:57 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 10 Jul 2009 21:27:57 +0000 (UTC) Subject: rpms/compiz-fusion/devel compiz-fusion.spec,1.50,1.51 Message-ID: <20090710212757.DC33F11C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz-fusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18163 Modified Files: compiz-fusion.spec Log Message: Don't ship the wall plugin, moved to the compiz package Index: compiz-fusion.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-fusion/devel/compiz-fusion.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- compiz-fusion.spec 10 Jul 2009 21:25:11 -0000 1.50 +++ compiz-fusion.spec 10 Jul 2009 21:27:27 -0000 1.51 @@ -81,7 +81,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/* rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/*.a # remove wall plugin rm -f $RPM_BUILD_ROOT%{_datadir}/compiz/wall.xml -rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/wall.so +rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/libwall.so %find_lang compiz-plugins-main From spot at fedoraproject.org Fri Jul 10 21:32:59 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 21:32:59 +0000 (UTC) Subject: rpms/asymptote/devel asymptote-1.80-settings.patch, NONE, 1.1 .cvsignore, 1.50, 1.51 asymptote.spec, 1.63, 1.64 sources, 1.50, 1.51 Message-ID: <20090710213259.8A4C111C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/asymptote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21708 Modified Files: .cvsignore asymptote.spec sources Added Files: asymptote-1.80-settings.patch Log Message: update to 1.80 asymptote-1.80-settings.patch: --- NEW FILE asymptote-1.80-settings.patch --- diff -up asymptote-1.80/settings.cc.BAD asymptote-1.80/settings.cc --- asymptote-1.80/settings.cc.BAD 2009-07-10 17:27:43.824929320 -0400 +++ asymptote-1.80/settings.cc 2009-07-10 17:28:18.505949915 -0400 @@ -81,11 +81,11 @@ const bool haveglut=false; bool msdos=false; string HOME="HOME"; const char pathSeparator=':'; -string defaultPSViewer="gv"; +string defaultPSViewer="evince"; #ifdef __APPLE__ string defaultPDFViewer="open"; #else -string defaultPDFViewer="acroread"; +string defaultPDFViewer="evince"; #endif string defaultGhostscript="gs"; string defaultPython; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/.cvsignore,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- .cvsignore 1 Jul 2009 19:50:18 -0000 1.50 +++ .cvsignore 10 Jul 2009 21:32:28 -0000 1.51 @@ -1 +1 @@ -asymptote-1.78.src.tgz +asymptote-1.80.src.tgz Index: asymptote.spec =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/asymptote.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- asymptote.spec 1 Jul 2009 19:50:18 -0000 1.63 +++ asymptote.spec 10 Jul 2009 21:32:29 -0000 1.64 @@ -4,7 +4,7 @@ %define xemacs_sitelisp %{_datadir}/xemacs/site-packages/lisp Name: asymptote -Version: 1.78 +Version: 1.80 Release: 1%{?dist} Summary: Descriptive vector graphics language @@ -14,7 +14,7 @@ URL: http://asymptote.sourcef Source0: http://dl.sourceforge.net/sourceforge/asymptote/asymptote-%{version}.src.tgz Source1: asy.gif Source2: xasy.desktop -Patch0: asymptote-1.29-settings.patch +Patch0: asymptote-1.80-settings.patch Patch1: asymptote-1.63-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -58,14 +58,15 @@ iconv -f iso-8859-1 -t utf-8 -o examples mv examples/interpolate1.asy{.utf8,} %build -%configure --enable-gc=system --with-docdir=%{_defaultdocdir}/%{name}-%{version}/ --with-latex=%{_texmf}/tex/latex +%configure --enable-gc=system --with-docdir=%{_defaultdocdir}/%{name}-%{version}/ --with-latex=%{_texmf}/tex/latex --with-context=%{_texmf}/tex/context/ make %{?_smp_mflags} -cd doc/ -make asymptote.pdf +# cd doc/ +# This isn't working in rawhide at the moment. +# make asymptote.pdf %install rm -rf $RPM_BUILD_ROOT -make install-all DESTDIR=$RPM_BUILD_ROOT +make install-asy DESTDIR=$RPM_BUILD_ROOT install -p -m 644 BUGS ChangeLog LICENSE README ReleaseNotes TODO \ $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-%{version}/ @@ -129,8 +130,10 @@ fi %{_bindir}/* %{_datadir}/%{name}/ %{texpkgdir}/ -%{_mandir}/man1/*.1* -%{_infodir}/*.info* +%{_texmf}/tex/context/ +# Doc generation is broken +# %%{_mandir}/man1/*.1* +# %%{_infodir}/*.info* %{_datadir}/vim/vim*/syntax/asy.vim # Strictly speaking, we shouldn't own these dirs. # However, we don't require emacs/xemacs, we just enhance them. @@ -142,6 +145,12 @@ fi %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 1.80-1 +- update to 1.80 + +* Wed Jul 1 2009 Tom "spot" Callaway - 1.78-2 +- disable pdf generation in rawhide + * Wed Jul 1 2009 Tom "spot" Callaway - 1.78-1 - update to 1.78 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 1 Jul 2009 19:50:18 -0000 1.50 +++ sources 10 Jul 2009 21:32:29 -0000 1.51 @@ -1 +1 @@ -e0b1f2ace3db7444aceb1bd09a2b1b21 asymptote-1.78.src.tgz +1657cf5434a36e28ee192a5c984cbc94 asymptote-1.80.src.tgz From toshio at fedoraproject.org Fri Jul 10 21:42:46 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Fri, 10 Jul 2009 21:42:46 +0000 (UTC) Subject: rpms/bzr-gtk/devel bzr-gtk-desktop-version.patch,NONE,1.1 Message-ID: <20090710214246.F085C11C0095@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/bzr-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24623 Added Files: bzr-gtk-desktop-version.patch Log Message: Add patch. bzr-gtk-desktop-version.patch: --- NEW FILE bzr-gtk-desktop-version.patch --- diff -up bzr-gtk/bzr-notify.desktop.ver bzr-gtk/bzr-notify.desktop --- bzr-gtk/bzr-notify.desktop.ver 2009-06-17 13:03:53.254184564 -0700 +++ bzr-gtk/bzr-notify.desktop 2009-06-17 13:04:03.260934759 -0700 @@ -1,7 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Type=Application -Version=0.1 +Version=1.0 Name=Bazaar Notification GenericName= Comment=Notification Area Icon for Bazaar From clumens at fedoraproject.org Fri Jul 10 21:44:21 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Fri, 10 Jul 2009 21:44:21 +0000 (UTC) Subject: rpms/pykickstart/devel .cvsignore, 1.109, 1.110 pykickstart.spec, 1.119, 1.120 sources, 1.119, 1.120 Message-ID: <20090710214421.B14C411C0095@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25120 Modified Files: .cvsignore pykickstart.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/.cvsignore,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- .cvsignore 10 Jul 2009 00:58:15 -0000 1.109 +++ .cvsignore 10 Jul 2009 21:43:51 -0000 1.110 @@ -43,3 +43,4 @@ pykickstart-1.52.tar.gz pykickstart-1.53.tar.gz pykickstart-1.55.tar.gz pykickstart-1.56.tar.gz +pykickstart-1.57.tar.gz Index: pykickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/pykickstart.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- pykickstart.spec 10 Jul 2009 00:58:15 -0000 1.119 +++ pykickstart.spec 10 Jul 2009 21:43:51 -0000 1.120 @@ -3,7 +3,7 @@ Summary: A python library for manipulating kickstart files Name: pykickstart Url: http://fedoraproject.org/wiki/pykickstart -Version: 1.56 +Version: 1.57 Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_bindir}/ksverdiff %changelog +* Fri Jul 10 2009 Chris Lumens - 1.57-1 +- Another patch to make the bootloader test work (jlaska). + * Thu Jul 09 2009 Chris Lumens - 1.56-1 - Make sure to import the gettext stuff in fcoe. (clumens) - Correctly deprecate bootloader --lba32 (jlaska). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/sources,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- sources 10 Jul 2009 00:58:15 -0000 1.119 +++ sources 10 Jul 2009 21:43:51 -0000 1.120 @@ -1 +1 @@ -9c3bf28f9d7b605d1c22630f5751b2a8 pykickstart-1.56.tar.gz +32c0a4c5f77c2a2edc3d055faea174b5 pykickstart-1.57.tar.gz From rjones at fedoraproject.org Fri Jul 10 21:54:58 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 21:54:58 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.25, 1.26 libguestfs.spec, 1.39, 1.40 sources, 1.25, 1.26 Message-ID: <20090710215458.07D9C11C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29396 Modified Files: .cvsignore libguestfs.spec sources Log Message: New upstream version 1.0.58. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 10 Jul 2009 14:30:01 -0000 1.25 +++ .cvsignore 10 Jul 2009 21:54:57 -0000 1.26 @@ -1 +1 @@ -libguestfs-1.0.57.tar.gz +libguestfs-1.0.58.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- libguestfs.spec 10 Jul 2009 14:30:01 -0000 1.39 +++ libguestfs.spec 10 Jul 2009 21:54:57 -0000 1.40 @@ -3,7 +3,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.57 +Version: 1.0.58 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -527,6 +527,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +- New upstream release 1.0.58. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 - New upstream release 1.0.57. - New tool virt-df (obsoletes existing package with this name). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 10 Jul 2009 14:30:01 -0000 1.25 +++ sources 10 Jul 2009 21:54:57 -0000 1.26 @@ -1 +1 @@ -0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz +58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz From rjones at fedoraproject.org Fri Jul 10 21:55:24 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 21:55:24 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.37, 1.38 libguestfs.spec, 1.69, 1.70 sources, 1.37, 1.38 Message-ID: <20090710215524.7725711C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29347 Modified Files: .cvsignore libguestfs.spec sources Log Message: New upstream version 1.0.58. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 10 Jul 2009 13:39:20 -0000 1.37 +++ .cvsignore 10 Jul 2009 21:54:54 -0000 1.38 @@ -1 +1 @@ -libguestfs-1.0.57.tar.gz +libguestfs-1.0.58.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- libguestfs.spec 10 Jul 2009 13:39:20 -0000 1.69 +++ libguestfs.spec 10 Jul 2009 21:54:54 -0000 1.70 @@ -3,7 +3,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.57 +Version: 1.0.58 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -525,6 +525,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +- New upstream release 1.0.58. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 - New upstream release 1.0.57. - New tool virt-df (obsoletes existing package with this name). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 10 Jul 2009 13:39:20 -0000 1.37 +++ sources 10 Jul 2009 21:54:54 -0000 1.38 @@ -1 +1 @@ -0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz +58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz From rjones at fedoraproject.org Fri Jul 10 21:55:26 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 21:55:26 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.19, 1.20 libguestfs.spec, 1.36, 1.37 sources, 1.19, 1.20 Message-ID: <20090710215526.56A1511C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29373 Modified Files: .cvsignore libguestfs.spec sources Log Message: New upstream version 1.0.58. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 10 Jul 2009 14:30:13 -0000 1.19 +++ .cvsignore 10 Jul 2009 21:54:56 -0000 1.20 @@ -1 +1 @@ -libguestfs-1.0.57.tar.gz +libguestfs-1.0.58.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libguestfs.spec 10 Jul 2009 17:03:17 -0000 1.36 +++ libguestfs.spec 10 Jul 2009 21:54:56 -0000 1.37 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.57 -Release: 2%{?dist} +Version: 1.0.58 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -511,6 +511,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +- New upstream release 1.0.58. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-2 - New upstream release 1.0.57. - Workaround for RHBZ#502058. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 10 Jul 2009 14:30:13 -0000 1.19 +++ sources 10 Jul 2009 21:54:56 -0000 1.20 @@ -1 +1 @@ -0f24ef638df366a21d04343c752111cd libguestfs-1.0.57.tar.gz +58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz From spot at fedoraproject.org Fri Jul 10 22:00:52 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 22:00:52 +0000 (UTC) Subject: rpms/mkinitrd/devel mkinitrd.spec,1.326,1.327 Message-ID: <20090710220052.C20AD11C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mkinitrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32180 Modified Files: mkinitrd.spec Log Message: rebuild against new parted Index: mkinitrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/devel/mkinitrd.spec,v retrieving revision 1.326 retrieving revision 1.327 diff -u -p -r1.326 -r1.327 --- mkinitrd.spec 6 Jul 2009 08:54:06 -0000 1.326 +++ mkinitrd.spec 10 Jul 2009 22:00:52 -0000 1.327 @@ -3,7 +3,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 6.0.91 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source0: mkinitrd-%{version}.tar.bz2 @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 6.0.91-2 +- rebuild against new parted + * Mon Jul 6 2009 Hans de Goede - 6.0.91-1 - Allow setting VG_LIST in /etc/sysconfig/mkinitrd (#509709) - Fix mkrootdev failing with norelatime option (#509687) From rjones at fedoraproject.org Fri Jul 10 22:08:44 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 22:08:44 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.144,1.145 Message-ID: <20090710220844.4FBF411C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3683 Modified Files: libvirt.spec Log Message: Bump release number to rebuild against new libparted. Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.144 retrieving revision 1.145 diff -u -p -r1.144 -r1.145 --- libvirt.spec 3 Jul 2009 15:22:52 -0000 1.144 +++ libvirt.spec 10 Jul 2009 22:08:43 -0000 1.145 @@ -62,7 +62,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.6.5 -Release: 1%{?dist}%{?extra_release} +Release: 2%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz @@ -558,6 +558,9 @@ fi %endif %changelog +* Fri Jul 10 2009 Richard W.M. Jones - 0.6.5-2.fc12 +- Bump release number to rebuild against new libparted. + * Fri Jul 3 2009 Daniel Veillard - 0.6.5-1.fc12 - Upstream release of 0.6.5 - OpenNebula driver From than at fedoraproject.org Fri Jul 10 22:10:49 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:10:49 +0000 (UTC) Subject: rpms/kdemultimedia/devel .cvsignore, 1.64, 1.65 kdemultimedia.spec, 1.149, 1.150 sources, 1.66, 1.67 Message-ID: <20090710221049.23F9E11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdemultimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4539 Modified Files: .cvsignore kdemultimedia.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 26 Jun 2009 13:26:09 -0000 1.64 +++ .cvsignore 10 Jul 2009 22:10:48 -0000 1.65 @@ -1,2 +1,3 @@ kdemultimedia-4.2.90.tar.bz2 kdemultimedia-4.2.95.tar.bz2 +kdemultimedia-4.2.96.tar.bz2 Index: kdemultimedia.spec =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/kdemultimedia.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- kdemultimedia.spec 26 Jun 2009 13:26:09 -0000 1.149 +++ kdemultimedia.spec 10 Jul 2009 22:10:48 -0000 1.150 @@ -1,6 +1,6 @@ Name: kdemultimedia Epoch: 6 -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: K Desktop Environment - Multimedia applications @@ -163,6 +163,9 @@ fi %changelog +* Sat Jul 11 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/sources,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- sources 26 Jun 2009 13:26:09 -0000 1.66 +++ sources 10 Jul 2009 22:10:48 -0000 1.67 @@ -1 +1 @@ -38cb1f0146f351f6eb93f50eceaf9b1a kdemultimedia-4.2.95.tar.bz2 +c72f90b17aa940e35b7a750f16abd83e kdemultimedia-4.2.96.tar.bz2 From rjones at fedoraproject.org Fri Jul 10 22:18:50 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 22:18:50 +0000 (UTC) Subject: rpms/libguestfs/F-11 Version.java, NONE, 1.1 libguestfs.spec, 1.40, 1.41 Message-ID: <20090710221851.0A26211C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8029 Modified Files: libguestfs.spec Added Files: Version.java Log Message: One file accidentally missed from 1.0.58 release tarball. --- NEW FILE Version.java --- /* libguestfs generated file * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'. * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST. * * Copyright (C) 2009 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package com.redhat.et.libguestfs; /** * Libguestfs Version structure. * * @author rjones * @see GuestFS */ public class Version { public long major; public long minor; public long release; public String extra; } Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- libguestfs.spec 10 Jul 2009 21:54:57 -0000 1.40 +++ libguestfs.spec 10 Jul 2009 22:18:50 -0000 1.41 @@ -4,13 +4,15 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.58 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Source1: Version.java + # Basic build requirements: BuildRequires: /usr/bin/pod2man BuildRequires: /usr/bin/pod2text @@ -272,6 +274,9 @@ Requires: jpackage-utils %prep %setup -q +# Accidentally missed from 1.0.58, remove in 1.0.59+ +cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ + mkdir -p daemon/m4 @@ -527,7 +532,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 From rjones at fedoraproject.org Fri Jul 10 22:18:52 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 22:18:52 +0000 (UTC) Subject: rpms/libguestfs/EL-5 Version.java, NONE, 1.1 libguestfs.spec, 1.37, 1.38 Message-ID: <20090710221852.7638C11C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8053 Modified Files: libguestfs.spec Added Files: Version.java Log Message: One file accidentally missed from 1.0.58 release tarball. --- NEW FILE Version.java --- /* libguestfs generated file * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'. * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST. * * Copyright (C) 2009 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package com.redhat.et.libguestfs; /** * Libguestfs Version structure. * * @author rjones * @see GuestFS */ public class Version { public long major; public long minor; public long release; public String extra; } Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- libguestfs.spec 10 Jul 2009 21:54:56 -0000 1.37 +++ libguestfs.spec 10 Jul 2009 22:18:51 -0000 1.38 @@ -4,13 +4,15 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.58 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Source1: Version.java + # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -284,6 +286,9 @@ Requires: jpackage-utils %prep %setup -q +# Accidentally missed from 1.0.58, remove in 1.0.59+ +cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ + mkdir -p daemon/m4 @@ -511,7 +516,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-2 From rjones at fedoraproject.org Fri Jul 10 22:18:53 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 10 Jul 2009 22:18:53 +0000 (UTC) Subject: rpms/libguestfs/devel Version.java, NONE, 1.1 libguestfs.spec, 1.70, 1.71 Message-ID: <20090710221853.A8CDD11C0095@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8079 Modified Files: libguestfs.spec Added Files: Version.java Log Message: One file accidentally missed from 1.0.58 release tarball. --- NEW FILE Version.java --- /* libguestfs generated file * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'. * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST. * * Copyright (C) 2009 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package com.redhat.et.libguestfs; /** * Libguestfs Version structure. * * @author rjones * @see GuestFS */ public class Version { public long major; public long minor; public long release; public String extra; } Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- libguestfs.spec 10 Jul 2009 21:54:54 -0000 1.70 +++ libguestfs.spec 10 Jul 2009 22:18:53 -0000 1.71 @@ -4,13 +4,15 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.58 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Source1: Version.java + # Basic build requirements: BuildRequires: /usr/bin/pod2man BuildRequires: /usr/bin/pod2text @@ -270,6 +272,9 @@ Requires: jpackage-utils %prep %setup -q +# Accidentally missed from 1.0.58, remove in 1.0.59+ +cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ + mkdir -p daemon/m4 @@ -525,7 +530,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-1 +* Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.57-1 From than at fedoraproject.org Fri Jul 10 22:21:17 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:21:17 +0000 (UTC) Subject: rpms/kdenetwork/devel kdenetwork.spec, 1.189, 1.190 kdenetwork-4.2.90-kopete-ymsg16.patch, 1.1, NONE Message-ID: <20090710222117.7C73511C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdenetwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9322 Modified Files: kdenetwork.spec Removed Files: kdenetwork-4.2.90-kopete-ymsg16.patch Log Message: 4.3rc2 Index: kdenetwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/kdenetwork.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- kdenetwork.spec 26 Jun 2009 13:34:17 -0000 1.189 +++ kdenetwork.spec 10 Jul 2009 22:21:17 -0000 1.190 @@ -1,7 +1,7 @@ Summary: K Desktop Environment - Network Applications Name: kdenetwork Epoch: 7 -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} License: GPLv2 @@ -177,6 +177,9 @@ fi %changelog +* Sat Jul 11 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 --- kdenetwork-4.2.90-kopete-ymsg16.patch DELETED --- From than at fedoraproject.org Fri Jul 10 22:25:37 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:25:37 +0000 (UTC) Subject: rpms/kdenetwork/devel .cvsignore, 1.67, 1.68 kdenetwork.spec, 1.190, 1.191 sources, 1.74, 1.75 Message-ID: <20090710222537.AC75B11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdenetwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11064 Modified Files: .cvsignore kdenetwork.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/.cvsignore,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- .cvsignore 26 Jun 2009 13:34:17 -0000 1.67 +++ .cvsignore 10 Jul 2009 22:25:07 -0000 1.68 @@ -1,2 +1,3 @@ kdenetwork-4.2.90.tar.bz2 kdenetwork-4.2.95.tar.bz2 +kdenetwork-4.2.96.tar.bz2 Index: kdenetwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/kdenetwork.spec,v retrieving revision 1.190 retrieving revision 1.191 diff -u -p -r1.190 -r1.191 --- kdenetwork.spec 10 Jul 2009 22:21:17 -0000 1.190 +++ kdenetwork.spec 10 Jul 2009 22:25:07 -0000 1.191 @@ -10,7 +10,6 @@ URL: http://www.kde.org Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.bz2 # upstream patches (4.3 branch): # implement YMSG 16 protocol to allow logging into Yahoo! again (Matt Rogers) -Patch100: kdenetwork-4.2.90-kopete-ymsg16.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -88,7 +87,6 @@ Requires: kdelibs4-devel %prep %setup -q # 4.3 upstream patches -%patch100 -p0 -b .kopete-ymsg16 chmod +x kopete/kopete/kconf_update/kopete-update_yahoo_server.pl Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/sources,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- sources 26 Jun 2009 13:34:17 -0000 1.74 +++ sources 10 Jul 2009 22:25:07 -0000 1.75 @@ -1 +1 @@ -0db7bca09f892a8d697d3741d415fa4d kdenetwork-4.2.95.tar.bz2 +411b4dc5d3c6b802a06334c9e319d60d kdenetwork-4.2.96.tar.bz2 From than at fedoraproject.org Fri Jul 10 22:28:42 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:28:42 +0000 (UTC) Subject: rpms/kdepim/devel .cvsignore, 1.64, 1.65 kdepim.spec, 1.224, 1.225 sources, 1.72, 1.73 Message-ID: <20090710222843.25EF611C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12551 Modified Files: .cvsignore kdepim.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 29 Jun 2009 14:33:55 -0000 1.64 +++ .cvsignore 10 Jul 2009 22:28:41 -0000 1.65 @@ -1,2 +1,3 @@ kdepim-4.2.90.tar.bz2 kdepim-4.2.95.tar.bz2 +kdepim-4.2.96.tar.bz2 Index: kdepim.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/kdepim.spec,v retrieving revision 1.224 retrieving revision 1.225 diff -u -p -r1.224 -r1.225 --- kdepim.spec 7 Jul 2009 20:20:41 -0000 1.224 +++ kdepim.spec 10 Jul 2009 22:28:41 -0000 1.225 @@ -5,8 +5,8 @@ Name: kdepim Summary: PIM (Personal Information Manager) applications Epoch: 6 -Version: 4.2.95 -Release: 2%{?dist} +Version: 4.2.96 +Release: 1%{?dist} License: GPLv2 Group: Applications/Productivity @@ -188,6 +188,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Tue Jul 07 2009 Rex Dieter 4.2.95-2 - Requires: kdepim-runtime (< F-12) Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/sources,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- sources 29 Jun 2009 14:33:55 -0000 1.72 +++ sources 10 Jul 2009 22:28:41 -0000 1.73 @@ -1 +1 @@ -ed66d18ce69e43e48a29ffe4cb00407b kdepim-4.2.95.tar.bz2 +a5f65d943c9bdf50d07fd6a2d43f3b31 kdepim-4.2.96.tar.bz2 From than at fedoraproject.org Fri Jul 10 22:30:55 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:30:55 +0000 (UTC) Subject: rpms/kdepimlibs/devel .cvsignore, 1.38, 1.39 kdepimlibs.spec, 1.90, 1.91 sources, 1.38, 1.39 Message-ID: <20090710223055.C5F7111C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13561 Modified Files: .cvsignore kdepimlibs.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 25 Jun 2009 13:19:45 -0000 1.38 +++ .cvsignore 10 Jul 2009 22:30:55 -0000 1.39 @@ -1,2 +1,3 @@ kdepimlibs-4.2.90.tar.bz2 kdepimlibs-4.2.95.tar.bz2 +kdepimlibs-4.2.96.tar.bz2 Index: kdepimlibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- kdepimlibs.spec 2 Jul 2009 17:40:51 -0000 1.90 +++ kdepimlibs.spec 10 Jul 2009 22:30:55 -0000 1.91 @@ -11,8 +11,8 @@ %define akonadi_version 1.1.95 Name: kdepimlibs -Version: 4.2.95 -Release: 3%{?dist} +Version: 4.2.96 +Release: 1%{?dist} Summary: K Desktop Environment 4 - PIM Libraries License: LGPLv2 @@ -209,6 +209,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Thu Jul 02 2009 Rex Dieter - 4.2.95-3 - akonadi_version 1.1.95 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 29 Jun 2009 14:42:20 -0000 1.38 +++ sources 10 Jul 2009 22:30:55 -0000 1.39 @@ -1 +1 @@ -161ab45c7fb2199a803b2ea7e311ec3e kdepimlibs-4.2.95.tar.bz2 +04b79056e9beef2a6fec9509c6defbf3 kdepimlibs-4.2.96.tar.bz2 From toshio at fedoraproject.org Fri Jul 10 22:34:06 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Fri, 10 Jul 2009 22:34:06 +0000 (UTC) Subject: rpms/bzr-gtk/F-11 bzr-gtk-desktop-version.patch, NONE, 1.1 bzr-gtk-el5-encoding.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 bzr-gtk.spec, 1.39, 1.40 sources, 1.14, 1.15 Message-ID: <20090710223406.4568C11C0095@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/bzr-gtk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15370 Modified Files: .cvsignore bzr-gtk.spec sources Added Files: bzr-gtk-desktop-version.patch bzr-gtk-el5-encoding.patch Log Message: * Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 - Update to work with bzr-1.16 - Update rhel version reqs bzr-gtk-desktop-version.patch: --- NEW FILE bzr-gtk-desktop-version.patch --- diff -up bzr-gtk/bzr-notify.desktop.ver bzr-gtk/bzr-notify.desktop --- bzr-gtk/bzr-notify.desktop.ver 2009-06-17 13:03:53.254184564 -0700 +++ bzr-gtk/bzr-notify.desktop 2009-06-17 13:04:03.260934759 -0700 @@ -1,7 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Type=Application -Version=0.1 +Version=1.0 Name=Bazaar Notification GenericName= Comment=Notification Area Icon for Bazaar bzr-gtk-el5-encoding.patch: --- NEW FILE bzr-gtk-el5-encoding.patch --- diff -up bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc bzr-gtk-0.94.0/bzr-handle-patch.desktop --- bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc 2008-05-07 12:51:09.000000000 -0700 +++ bzr-gtk-0.94.0/bzr-handle-patch.desktop 2008-05-07 12:51:19.000000000 -0700 @@ -1,4 +1,5 @@ [Desktop Entry] +Encoding=UTF-8 Name=Bazaar Comment=Apply Bazaar Bundle Icon=bazaar Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 4 Sep 2008 03:52:03 -0000 1.14 +++ .cvsignore 10 Jul 2009 22:34:05 -0000 1.15 @@ -1 +1 @@ -bzr-gtk-0.95.0.tar.gz +bzr-gtk-0.96.2.tar.gz Index: bzr-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-11/bzr-gtk.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- bzr-gtk.spec 24 Feb 2009 06:16:34 -0000 1.39 +++ bzr-gtk.spec 10 Jul 2009 22:34:05 -0000 1.40 @@ -7,18 +7,21 @@ %define debug_package %{nil} Name: bzr-gtk -Version: 0.95.0 -Release: 4%{?dist} +Version: 0.96.2 +Release: 1%{?dist} Summary: Bazaar plugin for GTK+ interfaces to most Bazaar operations Group: Development/Tools License: GPLv2+ URL: http://bazaar-vcs.org/bzr-gtk -Source0: http://samba.org/~jelmer/bzr/bzr-gtk-%{version}.tar.gz +Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz # This requires some nonexistent functionality. Bug filed upstream. Disabled # for now. Patch0: bzr-gtk-disable-nautilus-pull.patch -%if 0%{?fedora} <= 7 +# Change the version in the desktop file -- it's for the dektop spec version, +# not the application version +Patch1: bzr-gtk-desktop-version.patch +%if 0%{?fedora} <= 7 || 0%{?rhel} <= 5 # In EL-5 and Fedora < 7 Encoding was a mandatory field. Now it's deprecated. Patch100: bzr-gtk-el5-encoding.patch %endif @@ -66,8 +69,9 @@ from within Nautilus. %prep %setup -q %patch0 -p1 -b .nautilusdisable +%patch1 -p1 -b .dver -%if 0%{?fedora} <= 7 +%if 0%{?fedora} <= 7 || 0%{?rhel} > 5 # EPEL 5 and Fedora <= 7 %patch100 -p1 -b .encoding %endif @@ -82,6 +86,8 @@ rm -rf $RPM_BUILD_ROOT desktop-file-validate bazaar-properties.desktop desktop-file-validate bzr-handle-patch.desktop desktop-file-validate olive-gtk.desktop +desktop-file-validate bzr-notify.desktop + %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT if test "%{python_sitelib}" != "%{python_sitearch}" ; then install -d -m 0755 $RPM_BUILD_ROOT%{python_sitearch} @@ -125,6 +131,13 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 +- Update to work with bzr-1.16 +- Update rhel version reqs + +* Wed May 27 2009 Toshio Kuratomi - 0.95.0-5 +- Upstream patch to work around: bz#498138 + * Mon Feb 23 2009 Fedora Release Engineering - 0.95.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 4 Sep 2008 03:52:03 -0000 1.14 +++ sources 10 Jul 2009 22:34:05 -0000 1.15 @@ -1 +1 @@ -00aedce625672abca13d2d962b047ac0 bzr-gtk-0.95.0.tar.gz +3873dc9efcbc7a655f1c890be406a867 bzr-gtk-0.96.2.tar.gz From than at fedoraproject.org Fri Jul 10 22:39:12 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 10 Jul 2009 22:39:12 +0000 (UTC) Subject: rpms/kdepim-runtime/devel .cvsignore, 1.2, 1.3 kdepim-runtime.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090710223912.0DEBB11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16697 Modified Files: .cvsignore kdepim-runtime.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Jun 2009 13:10:54 -0000 1.2 +++ .cvsignore 10 Jul 2009 22:38:41 -0000 1.3 @@ -1 +1,2 @@ kdepim-runtime-4.2.95.tar.bz2 +kdepim-runtime-4.2.96.tar.bz2 Index: kdepim-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/kdepim-runtime.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kdepim-runtime.spec 2 Jul 2009 17:56:58 -0000 1.4 +++ kdepim-runtime.spec 10 Jul 2009 22:38:41 -0000 1.5 @@ -3,8 +3,8 @@ Name: kdepim-runtime Summary: KDE PIM Runtime Environment -Version: 4.2.95 -Release: 3%{?dist} +Version: 4.2.96 +Release: 1%{?dist} License: GPLv2 Group: Applications/Productivity @@ -131,6 +131,9 @@ rm -rf %{buildroot} %{_kde4_libdir}/lib*.so.* %changelog +* Sat Jul 11 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Thu Jul 02 2009 Rex Dieter 4.2.95-3 - -devel: Requires: kdepimlibs-devel - Req: akonadi >= 1.1.95 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Jun 2009 13:10:54 -0000 1.2 +++ sources 10 Jul 2009 22:38:41 -0000 1.3 @@ -1 +1 @@ -1ccbb75042c854244056379a3b65914b kdepim-runtime-4.2.95.tar.bz2 +6875626dc33caf1c5d75acae3dee328a kdepim-runtime-4.2.96.tar.bz2 From spot at fedoraproject.org Fri Jul 10 22:47:31 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 22:47:31 +0000 (UTC) Subject: rpms/gambas2/F-10 gambas2.spec,1.12,1.13 sources,1.12,1.13 Message-ID: <20090710224731.4B4B211C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/gambas2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20304/F-10 Modified Files: gambas2.spec sources Log Message: update to 2.14.0, fix missing subpackages Index: gambas2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/F-10/gambas2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gambas2.spec 27 May 2009 17:24:31 -0000 1.12 +++ gambas2.spec 10 Jul 2009 22:47:00 -0000 1.13 @@ -1,6 +1,6 @@ Name: gambas2 Summary: IDE based on a basic interpreter with object extensions -Version: 2.13.1 +Version: 2.14.0 Release: 1%{?dist} License: GPL+ Group: Development/Tools @@ -16,13 +16,12 @@ BuildRequires: unixODBC-devel, libXtst-d BuildRequires: mesa-libGLU-devel, libpng-devel, libjpeg-devel, libxml2-devel BuildRequires: libxslt-devel, pcre-devel, SDL_image-devel, libICE-devel BuildRequires: libXcursor-devel, libXft-devel, libtool-ltdl-devel -BuildRequires: xdg-utils, glibc-devel, libffi-devel +BuildRequires: xdg-utils, glibc-devel, libffi-devel, firebird-devel # Code is not endian clean. ExcludeArch: ppc ppc64 Patch0: %{name}-2.0.0-use-system-ltdl.patch Patch1: %{name}-2.0.0-nolintl.patch Patch2: %{name}-2.0.0-noliconv.patch -Patch3: %{name}-2.11.1-gcc44.patch %description Gambas2 is a free development environment based on a Basic interpreter @@ -80,7 +79,12 @@ Requires: %{name}-gb-chart = %{version}- Requires: %{name}-gb-compress = %{version}-%{release} Requires: %{name}-gb-crypt = %{version}-%{release} Requires: %{name}-gb-db = %{version}-%{release} +Requires: %{name}-gb-db-firebird = %{version}-%{release} Requires: %{name}-gb-db-form = %{version}-%{release} +Requires: %{name}-gb-db-mysql = %{version}-%{release} +Requires: %{name}-gb-db-odbc = %{version}-%{release} +Requires: %{name}-gb-db-postgresql = %{version}-%{release} +Requires: %{name}-gb-db-sqlite3 = %{version}-%{release} Requires: %{name}-gb-desktop = %{version}-%{release} Requires: %{name}-gb-form = %{version}-%{release} Requires: %{name}-gb-form-dialog = %{version}-%{release} @@ -105,6 +109,7 @@ Requires: %{name}-gb-qt-kde-html = %{ver Requires: %{name}-gb-qt-opengl = %{version}-%{release} Requires: %{name}-gb-report = %{version}-%{release} Requires: %{name}-gb-sdl = %{version}-%{release} +Requires: %{name}-gb-sdl-sound = %{version}-%{release} Requires: %{name}-gb-settings = %{version}-%{release} Requires: %{name}-gb-v4l = %{version}-%{release} Requires: %{name}-gb-vb = %{version}-%{release} @@ -153,6 +158,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-db %{summary} +%package gb-db-firebird +Summary: Gambas2 component package for db-firebird +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-firebird +%{summary} + %package gb-db-form Summary: Gambas2 component package for db-form Group: Development/Tools @@ -161,6 +174,38 @@ Requires: %{name}-runtime = %{version}-% %description gb-db-form %{summary} +%package gb-db-mysql +Summary: Gambas2 component package for db-mysql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-mysql +%{summary} + +%package gb-db-odbc +Summary: Gambas2 component package for db-odbc +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-odbc +%{summary} + +%package gb-db-postgresql +Summary: Gambas2 component package for db-postgresql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-postgresql +%{summary} + +%package gb-db-sqlite3 +Summary: Gambas2 component package for db-sqlite3 +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-sqlite3 +%{summary} + %package gb-desktop Summary: Gambas2 component package for desktop Group: Development/Tools @@ -354,6 +399,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-sdl %{summary} +%package gb-sdl-sound +Summary: Gambas2 component package for sdl-sound +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-sdl-sound +%{summary} + %package gb-settings Summary: Gambas2 component package for settings Group: Development/Tools @@ -415,7 +468,6 @@ Requires: %{name}-runtime = %{version}-% %patch0 -p1 %patch1 -p1 -b .nolintl %patch2 -p1 -b .noliconv -%patch3 -p1 -b .gcc44 # We used to patch these out, but this is simpler. for i in acinclude.m4 gb.compress.bzlib2/configure gb.compress.zlib/configure gb.corba/configure \ gb.crypt/configure gb.db.firebird/configure gb.db.mysql/configure gb.db.odbc/configure \ @@ -455,18 +507,22 @@ MY_CFLAGS=`echo $RPM_OPT_FLAGS | sed -e --enable-kde \ --enable-net \ --enable-curl \ + --enable-firebird \ --enable-postgresql \ --enable-mysql \ - --enable-sqlite \ + --enable-sqlite3 \ --enable-sdl \ --enable-vb \ --enable-pdf \ --disable-corba \ + --disable-sqlite2 \ --disable-qte \ --with-bzlib2-libraries=%{_libdir} \ --with-crypt-libraries=%{_libdir} \ --with-curl-libraries=%{_libdir} \ --with-desktop-libraries=%{_libdir} \ + --with-firebird-includes=%{_includedir}/firebird \ + --with-firebird-libraries=%{_libdir} \ --with-ffi-includes=`pkg-config libffi --variable=includedir` \ --with-ffi-libraries=`pkg-config libffi --variable=libdir` \ --with-intl-libraries=%{_libdir} \ @@ -1283,19 +1339,35 @@ update-mime-database %{_datadir}/mime &> %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.component %{_libdir}/%{name}/gb.db.la -%{_libdir}/%{name}/gb.db.mysql.* -%{_libdir}/%{name}/gb.db.odbc.* -%{_libdir}/%{name}/gb.db.postgresql.* %{_libdir}/%{name}/gb.db.so* -%{_libdir}/%{name}/gb.db.sqlite3.* %{_datadir}/%{name}/info/gb.db.info %{_datadir}/%{name}/info/gb.db.list +%files gb-db-firebird +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.firebird.* + %files gb-db-form %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.form.* %{_datadir}/%{name}/info/gb.db.form.* +%files gb-db-mysql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.mysql.* + +%files gb-db-odbc +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.odbc.* + +%files gb-db-postgresql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.postgresql.* + +%files gb-db-sqlite3 +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.sqlite3.* + %files gb-desktop %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.desktop.* @@ -1452,8 +1524,16 @@ update-mime-database %{_datadir}/mime &> %files gb-sdl %defattr(-, root, root, 0755) -%{_libdir}/%{name}/gb.sdl.* -%{_datadir}/%{name}/info/gb.sdl.* +%{_libdir}/%{name}/gb.sdl.component +%{_libdir}/%{name}/gb.sdl.so* +%{_libdir}/%{name}/gb.sdl.la +%{_datadir}/%{name}/info/gb.sdl.info +%{_datadir}/%{name}/info/gb.sdl.list + +%files gb-sdl-sound +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.sdl.sound.* +%{_datadir}/%{name}/info/gb.sdl.sound.* %files gb-settings %defattr(-, root, root, 0755) @@ -1494,6 +1574,10 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/%{name}/info/gb.xml.xslt.* %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 2.14.0-1 +- update to 2.14.0 +- fix missing subpackages (bz 507496) + * Wed May 27 2009 Tom "spot" Callaway - 2.13.1-1 - update to 2.13.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/F-10/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 27 May 2009 17:24:31 -0000 1.12 +++ sources 10 Jul 2009 22:47:00 -0000 1.13 @@ -1 +1 @@ -46922af5c9f8d2546c02101e32887586 gambas2-2.13.1.tar.bz2 +bb63c4ef4925b808d502461daad7ac6e gambas2-2.14.0.tar.bz2 From spot at fedoraproject.org Fri Jul 10 22:47:31 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 22:47:31 +0000 (UTC) Subject: rpms/gambas2/F-11 gambas2.spec,1.18,1.19 sources,1.13,1.14 Message-ID: <20090710224731.6151611C02C3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/gambas2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20304/F-11 Modified Files: gambas2.spec sources Log Message: update to 2.14.0, fix missing subpackages Index: gambas2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/F-11/gambas2.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gambas2.spec 27 May 2009 17:24:32 -0000 1.18 +++ gambas2.spec 10 Jul 2009 22:47:01 -0000 1.19 @@ -1,6 +1,6 @@ Name: gambas2 Summary: IDE based on a basic interpreter with object extensions -Version: 2.13.1 +Version: 2.14.0 Release: 1%{?dist} License: GPL+ Group: Development/Tools @@ -16,13 +16,12 @@ BuildRequires: unixODBC-devel, libXtst-d BuildRequires: mesa-libGLU-devel, libpng-devel, libjpeg-devel, libxml2-devel BuildRequires: libxslt-devel, pcre-devel, SDL_image-devel, libICE-devel BuildRequires: libXcursor-devel, libXft-devel, libtool-ltdl-devel -BuildRequires: xdg-utils, glibc-devel, libffi-devel +BuildRequires: xdg-utils, glibc-devel, libffi-devel, firebird-devel # Code is not endian clean. ExcludeArch: ppc ppc64 Patch0: %{name}-2.0.0-use-system-ltdl.patch Patch1: %{name}-2.0.0-nolintl.patch Patch2: %{name}-2.0.0-noliconv.patch -Patch3: %{name}-2.11.1-gcc44.patch %description Gambas2 is a free development environment based on a Basic interpreter @@ -80,7 +79,12 @@ Requires: %{name}-gb-chart = %{version}- Requires: %{name}-gb-compress = %{version}-%{release} Requires: %{name}-gb-crypt = %{version}-%{release} Requires: %{name}-gb-db = %{version}-%{release} +Requires: %{name}-gb-db-firebird = %{version}-%{release} Requires: %{name}-gb-db-form = %{version}-%{release} +Requires: %{name}-gb-db-mysql = %{version}-%{release} +Requires: %{name}-gb-db-odbc = %{version}-%{release} +Requires: %{name}-gb-db-postgresql = %{version}-%{release} +Requires: %{name}-gb-db-sqlite3 = %{version}-%{release} Requires: %{name}-gb-desktop = %{version}-%{release} Requires: %{name}-gb-form = %{version}-%{release} Requires: %{name}-gb-form-dialog = %{version}-%{release} @@ -105,6 +109,7 @@ Requires: %{name}-gb-qt-kde-html = %{ver Requires: %{name}-gb-qt-opengl = %{version}-%{release} Requires: %{name}-gb-report = %{version}-%{release} Requires: %{name}-gb-sdl = %{version}-%{release} +Requires: %{name}-gb-sdl-sound = %{version}-%{release} Requires: %{name}-gb-settings = %{version}-%{release} Requires: %{name}-gb-v4l = %{version}-%{release} Requires: %{name}-gb-vb = %{version}-%{release} @@ -153,6 +158,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-db %{summary} +%package gb-db-firebird +Summary: Gambas2 component package for db-firebird +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-firebird +%{summary} + %package gb-db-form Summary: Gambas2 component package for db-form Group: Development/Tools @@ -161,6 +174,38 @@ Requires: %{name}-runtime = %{version}-% %description gb-db-form %{summary} +%package gb-db-mysql +Summary: Gambas2 component package for db-mysql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-mysql +%{summary} + +%package gb-db-odbc +Summary: Gambas2 component package for db-odbc +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-odbc +%{summary} + +%package gb-db-postgresql +Summary: Gambas2 component package for db-postgresql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-postgresql +%{summary} + +%package gb-db-sqlite3 +Summary: Gambas2 component package for db-sqlite3 +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-sqlite3 +%{summary} + %package gb-desktop Summary: Gambas2 component package for desktop Group: Development/Tools @@ -354,6 +399,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-sdl %{summary} +%package gb-sdl-sound +Summary: Gambas2 component package for sdl-sound +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-sdl-sound +%{summary} + %package gb-settings Summary: Gambas2 component package for settings Group: Development/Tools @@ -415,7 +468,6 @@ Requires: %{name}-runtime = %{version}-% %patch0 -p1 %patch1 -p1 -b .nolintl %patch2 -p1 -b .noliconv -%patch3 -p1 -b .gcc44 # We used to patch these out, but this is simpler. for i in acinclude.m4 gb.compress.bzlib2/configure gb.compress.zlib/configure gb.corba/configure \ gb.crypt/configure gb.db.firebird/configure gb.db.mysql/configure gb.db.odbc/configure \ @@ -455,18 +507,22 @@ MY_CFLAGS=`echo $RPM_OPT_FLAGS | sed -e --enable-kde \ --enable-net \ --enable-curl \ + --enable-firebird \ --enable-postgresql \ --enable-mysql \ - --enable-sqlite \ + --enable-sqlite3 \ --enable-sdl \ --enable-vb \ --enable-pdf \ --disable-corba \ + --disable-sqlite2 \ --disable-qte \ --with-bzlib2-libraries=%{_libdir} \ --with-crypt-libraries=%{_libdir} \ --with-curl-libraries=%{_libdir} \ --with-desktop-libraries=%{_libdir} \ + --with-firebird-includes=%{_includedir}/firebird \ + --with-firebird-libraries=%{_libdir} \ --with-ffi-includes=`pkg-config libffi --variable=includedir` \ --with-ffi-libraries=`pkg-config libffi --variable=libdir` \ --with-intl-libraries=%{_libdir} \ @@ -1283,19 +1339,35 @@ update-mime-database %{_datadir}/mime &> %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.component %{_libdir}/%{name}/gb.db.la -%{_libdir}/%{name}/gb.db.mysql.* -%{_libdir}/%{name}/gb.db.odbc.* -%{_libdir}/%{name}/gb.db.postgresql.* %{_libdir}/%{name}/gb.db.so* -%{_libdir}/%{name}/gb.db.sqlite3.* %{_datadir}/%{name}/info/gb.db.info %{_datadir}/%{name}/info/gb.db.list +%files gb-db-firebird +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.firebird.* + %files gb-db-form %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.form.* %{_datadir}/%{name}/info/gb.db.form.* +%files gb-db-mysql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.mysql.* + +%files gb-db-odbc +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.odbc.* + +%files gb-db-postgresql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.postgresql.* + +%files gb-db-sqlite3 +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.sqlite3.* + %files gb-desktop %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.desktop.* @@ -1452,8 +1524,16 @@ update-mime-database %{_datadir}/mime &> %files gb-sdl %defattr(-, root, root, 0755) -%{_libdir}/%{name}/gb.sdl.* -%{_datadir}/%{name}/info/gb.sdl.* +%{_libdir}/%{name}/gb.sdl.component +%{_libdir}/%{name}/gb.sdl.so* +%{_libdir}/%{name}/gb.sdl.la +%{_datadir}/%{name}/info/gb.sdl.info +%{_datadir}/%{name}/info/gb.sdl.list + +%files gb-sdl-sound +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.sdl.sound.* +%{_datadir}/%{name}/info/gb.sdl.sound.* %files gb-settings %defattr(-, root, root, 0755) @@ -1494,6 +1574,10 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/%{name}/info/gb.xml.xslt.* %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 2.14.0-1 +- update to 2.14.0 +- fix missing subpackages (bz 507496) + * Wed May 27 2009 Tom "spot" Callaway - 2.13.1-1 - update to 2.13.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 27 May 2009 17:24:32 -0000 1.13 +++ sources 10 Jul 2009 22:47:01 -0000 1.14 @@ -1 +1 @@ -46922af5c9f8d2546c02101e32887586 gambas2-2.13.1.tar.bz2 +bb63c4ef4925b808d502461daad7ac6e gambas2-2.14.0.tar.bz2 From spot at fedoraproject.org Fri Jul 10 22:47:31 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 10 Jul 2009 22:47:31 +0000 (UTC) Subject: rpms/gambas2/devel .cvsignore, 1.12, 1.13 gambas2.spec, 1.18, 1.19 sources, 1.13, 1.14 Message-ID: <20090710224731.A34C011C0095@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/gambas2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20304/devel Modified Files: .cvsignore gambas2.spec sources Log Message: update to 2.14.0, fix missing subpackages Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 27 May 2009 17:24:32 -0000 1.12 +++ .cvsignore 10 Jul 2009 22:47:01 -0000 1.13 @@ -1 +1 @@ -gambas2-2.13.1.tar.bz2 +gambas2-2.14.0.tar.bz2 Index: gambas2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/devel/gambas2.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gambas2.spec 27 May 2009 17:24:32 -0000 1.18 +++ gambas2.spec 10 Jul 2009 22:47:01 -0000 1.19 @@ -1,6 +1,6 @@ Name: gambas2 Summary: IDE based on a basic interpreter with object extensions -Version: 2.13.1 +Version: 2.14.0 Release: 1%{?dist} License: GPL+ Group: Development/Tools @@ -16,13 +16,12 @@ BuildRequires: unixODBC-devel, libXtst-d BuildRequires: mesa-libGLU-devel, libpng-devel, libjpeg-devel, libxml2-devel BuildRequires: libxslt-devel, pcre-devel, SDL_image-devel, libICE-devel BuildRequires: libXcursor-devel, libXft-devel, libtool-ltdl-devel -BuildRequires: xdg-utils, glibc-devel, libffi-devel +BuildRequires: xdg-utils, glibc-devel, libffi-devel, firebird-devel # Code is not endian clean. ExcludeArch: ppc ppc64 Patch0: %{name}-2.0.0-use-system-ltdl.patch Patch1: %{name}-2.0.0-nolintl.patch Patch2: %{name}-2.0.0-noliconv.patch -Patch3: %{name}-2.11.1-gcc44.patch %description Gambas2 is a free development environment based on a Basic interpreter @@ -80,7 +79,12 @@ Requires: %{name}-gb-chart = %{version}- Requires: %{name}-gb-compress = %{version}-%{release} Requires: %{name}-gb-crypt = %{version}-%{release} Requires: %{name}-gb-db = %{version}-%{release} +Requires: %{name}-gb-db-firebird = %{version}-%{release} Requires: %{name}-gb-db-form = %{version}-%{release} +Requires: %{name}-gb-db-mysql = %{version}-%{release} +Requires: %{name}-gb-db-odbc = %{version}-%{release} +Requires: %{name}-gb-db-postgresql = %{version}-%{release} +Requires: %{name}-gb-db-sqlite3 = %{version}-%{release} Requires: %{name}-gb-desktop = %{version}-%{release} Requires: %{name}-gb-form = %{version}-%{release} Requires: %{name}-gb-form-dialog = %{version}-%{release} @@ -105,6 +109,7 @@ Requires: %{name}-gb-qt-kde-html = %{ver Requires: %{name}-gb-qt-opengl = %{version}-%{release} Requires: %{name}-gb-report = %{version}-%{release} Requires: %{name}-gb-sdl = %{version}-%{release} +Requires: %{name}-gb-sdl-sound = %{version}-%{release} Requires: %{name}-gb-settings = %{version}-%{release} Requires: %{name}-gb-v4l = %{version}-%{release} Requires: %{name}-gb-vb = %{version}-%{release} @@ -153,6 +158,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-db %{summary} +%package gb-db-firebird +Summary: Gambas2 component package for db-firebird +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-firebird +%{summary} + %package gb-db-form Summary: Gambas2 component package for db-form Group: Development/Tools @@ -161,6 +174,38 @@ Requires: %{name}-runtime = %{version}-% %description gb-db-form %{summary} +%package gb-db-mysql +Summary: Gambas2 component package for db-mysql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-mysql +%{summary} + +%package gb-db-odbc +Summary: Gambas2 component package for db-odbc +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-odbc +%{summary} + +%package gb-db-postgresql +Summary: Gambas2 component package for db-postgresql +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-postgresql +%{summary} + +%package gb-db-sqlite3 +Summary: Gambas2 component package for db-sqlite3 +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-db-sqlite3 +%{summary} + %package gb-desktop Summary: Gambas2 component package for desktop Group: Development/Tools @@ -354,6 +399,14 @@ Requires: %{name}-runtime = %{version}-% %description gb-sdl %{summary} +%package gb-sdl-sound +Summary: Gambas2 component package for sdl-sound +Group: Development/Tools +Requires: %{name}-runtime = %{version}-%{release} + +%description gb-sdl-sound +%{summary} + %package gb-settings Summary: Gambas2 component package for settings Group: Development/Tools @@ -415,7 +468,6 @@ Requires: %{name}-runtime = %{version}-% %patch0 -p1 %patch1 -p1 -b .nolintl %patch2 -p1 -b .noliconv -%patch3 -p1 -b .gcc44 # We used to patch these out, but this is simpler. for i in acinclude.m4 gb.compress.bzlib2/configure gb.compress.zlib/configure gb.corba/configure \ gb.crypt/configure gb.db.firebird/configure gb.db.mysql/configure gb.db.odbc/configure \ @@ -455,18 +507,22 @@ MY_CFLAGS=`echo $RPM_OPT_FLAGS | sed -e --enable-kde \ --enable-net \ --enable-curl \ + --enable-firebird \ --enable-postgresql \ --enable-mysql \ - --enable-sqlite \ + --enable-sqlite3 \ --enable-sdl \ --enable-vb \ --enable-pdf \ --disable-corba \ + --disable-sqlite2 \ --disable-qte \ --with-bzlib2-libraries=%{_libdir} \ --with-crypt-libraries=%{_libdir} \ --with-curl-libraries=%{_libdir} \ --with-desktop-libraries=%{_libdir} \ + --with-firebird-includes=%{_includedir}/firebird \ + --with-firebird-libraries=%{_libdir} \ --with-ffi-includes=`pkg-config libffi --variable=includedir` \ --with-ffi-libraries=`pkg-config libffi --variable=libdir` \ --with-intl-libraries=%{_libdir} \ @@ -1283,19 +1339,35 @@ update-mime-database %{_datadir}/mime &> %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.component %{_libdir}/%{name}/gb.db.la -%{_libdir}/%{name}/gb.db.mysql.* -%{_libdir}/%{name}/gb.db.odbc.* -%{_libdir}/%{name}/gb.db.postgresql.* %{_libdir}/%{name}/gb.db.so* -%{_libdir}/%{name}/gb.db.sqlite3.* %{_datadir}/%{name}/info/gb.db.info %{_datadir}/%{name}/info/gb.db.list +%files gb-db-firebird +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.firebird.* + %files gb-db-form %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.db.form.* %{_datadir}/%{name}/info/gb.db.form.* +%files gb-db-mysql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.mysql.* + +%files gb-db-odbc +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.odbc.* + +%files gb-db-postgresql +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.postgresql.* + +%files gb-db-sqlite3 +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.db.sqlite3.* + %files gb-desktop %defattr(-, root, root, 0755) %{_libdir}/%{name}/gb.desktop.* @@ -1452,8 +1524,16 @@ update-mime-database %{_datadir}/mime &> %files gb-sdl %defattr(-, root, root, 0755) -%{_libdir}/%{name}/gb.sdl.* -%{_datadir}/%{name}/info/gb.sdl.* +%{_libdir}/%{name}/gb.sdl.component +%{_libdir}/%{name}/gb.sdl.so* +%{_libdir}/%{name}/gb.sdl.la +%{_datadir}/%{name}/info/gb.sdl.info +%{_datadir}/%{name}/info/gb.sdl.list + +%files gb-sdl-sound +%defattr(-, root, root, 0755) +%{_libdir}/%{name}/gb.sdl.sound.* +%{_datadir}/%{name}/info/gb.sdl.sound.* %files gb-settings %defattr(-, root, root, 0755) @@ -1494,6 +1574,10 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/%{name}/info/gb.xml.xslt.* %changelog +* Fri Jul 10 2009 Tom "spot" Callaway - 2.14.0-1 +- update to 2.14.0 +- fix missing subpackages (bz 507496) + * Wed May 27 2009 Tom "spot" Callaway - 2.13.1-1 - update to 2.13.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 27 May 2009 17:24:32 -0000 1.13 +++ sources 10 Jul 2009 22:47:01 -0000 1.14 @@ -1 +1 @@ -46922af5c9f8d2546c02101e32887586 gambas2-2.13.1.tar.bz2 +bb63c4ef4925b808d502461daad7ac6e gambas2-2.14.0.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 10 22:58:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:25 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested watchcommits Message-ID: <20090710225825.6AE4610F895@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the watchcommits acl on bitfrost (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:26 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested approveacls Message-ID: <20090710225826.9693A10F8A6@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the approveacls acl on bitfrost (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:33 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested commit Message-ID: <20090710225834.0A32F10F8A8@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the commit acl on bitfrost (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:36 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested watchbugzilla Message-ID: <20090710225836.B223510F8B0@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the watchbugzilla acl on bitfrost (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:42 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested watchbugzilla Message-ID: <20090710225842.4E3C210F8B3@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the watchbugzilla acl on bitfrost (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:42 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested watchcommits Message-ID: <20090710225842.8168B10F8B8@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the watchcommits acl on bitfrost (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:44 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested commit Message-ID: <20090710225844.ECC2410F8BE@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the commit acl on bitfrost (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 22:58:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 22:58:47 +0000 Subject: [pkgdb] bitfrost: tuxbrewr has requested approveacls Message-ID: <20090710225847.376CD10F8C0@bastion2.fedora.phx.redhat.com> tuxbrewr has requested the approveacls acl on bitfrost (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bitfrost From pkgdb at fedoraproject.org Fri Jul 10 23:15:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 23:15:30 +0000 Subject: [pkgdb] phpFlickr was added for ke4qqq Message-ID: <20090710231531.0482110F890@bastion2.fedora.phx.redhat.com> tibbs has added Package phpFlickr with summary PHP client library for Flickr tibbs has approved Package phpFlickr tibbs has added a Fedora devel branch for phpFlickr with an owner of ke4qqq tibbs has approved phpFlickr in Fedora devel tibbs has approved Package phpFlickr tibbs has set commit to Approved for 107427 on phpFlickr (Fedora devel) tibbs has set checkout to Approved for 107427 on phpFlickr (Fedora devel) tibbs has set build to Approved for 107427 on phpFlickr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpFlickr From pkgdb at fedoraproject.org Fri Jul 10 23:15:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 23:15:31 +0000 Subject: [pkgdb] phpFlickr summary updated by tibbs Message-ID: <20090710231531.CDBF110F89B@bastion2.fedora.phx.redhat.com> tibbs set package phpFlickr summary to PHP client library for Flickr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpFlickr From pkgdb at fedoraproject.org Fri Jul 10 23:15:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 23:15:31 +0000 Subject: [pkgdb] phpFlickr (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710231531.D656C10F8A5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for phpFlickr tibbs has set commit to Approved for 107427 on phpFlickr (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on phpFlickr (Fedora EPEL 5) tibbs has set build to Approved for 107427 on phpFlickr (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpFlickr From pkgdb at fedoraproject.org Fri Jul 10 23:15:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 23:15:31 +0000 Subject: [pkgdb] phpFlickr (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710231531.E12B610F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for phpFlickr tibbs has set commit to Approved for 107427 on phpFlickr (Fedora 11) tibbs has set checkout to Approved for 107427 on phpFlickr (Fedora 11) tibbs has set build to Approved for 107427 on phpFlickr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpFlickr From pkgdb at fedoraproject.org Fri Jul 10 23:15:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 10 Jul 2009 23:15:31 +0000 Subject: [pkgdb] phpFlickr (Fedora EPEL, 5) updated by tibbs Message-ID: <20090710231531.EA4F010F8AB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for phpFlickr tibbs has set commit to Approved for 107427 on phpFlickr (Fedora 10) tibbs has set checkout to Approved for 107427 on phpFlickr (Fedora 10) tibbs has set build to Approved for 107427 on phpFlickr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/phpFlickr From tibbs at fedoraproject.org Fri Jul 10 23:15:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 23:15:38 +0000 (UTC) Subject: rpms/phpFlickr/devel - New directory Message-ID: <20090710231538.588E511C00D7@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/phpFlickr/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU30349/rpms/phpFlickr/devel Log Message: Directory /cvs/pkgs/rpms/phpFlickr/devel added to the repository From tibbs at fedoraproject.org Fri Jul 10 23:15:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 23:15:38 +0000 (UTC) Subject: rpms/phpFlickr - New directory Message-ID: <20090710231538.3DC1011C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/phpFlickr In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU30349/rpms/phpFlickr Log Message: Directory /cvs/pkgs/rpms/phpFlickr added to the repository From tibbs at fedoraproject.org Fri Jul 10 23:15:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 23:15:44 +0000 (UTC) Subject: rpms/phpFlickr Makefile,NONE,1.1 Message-ID: <20090710231544.1213A11C0095@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/phpFlickr In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU30349/rpms/phpFlickr Added Files: Makefile Log Message: Setup of module phpFlickr --- NEW FILE Makefile --- # Top level Makefile for module phpFlickr all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 10 23:15:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 10 Jul 2009 23:15:44 +0000 (UTC) Subject: rpms/phpFlickr/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090710231544.62CAB11C0095@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/phpFlickr/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU30349/rpms/phpFlickr/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module phpFlickr --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: phpFlickr # $Id: Makefile,v 1.1 2009/07/10 23:15:44 tibbs Exp $ NAME := phpFlickr SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From oget at fedoraproject.org Fri Jul 10 23:19:56 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 10 Jul 2009 23:19:56 +0000 (UTC) Subject: rpms/bouncycastle/devel bouncycastle.spec,1.15,1.16 Message-ID: <20090710231956.CF68211C0095@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31445 Modified Files: bouncycastle.spec Log Message: * Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle/devel/bouncycastle.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- bouncycastle.spec 20 Apr 2009 22:18:54 -0000 1.15 +++ bouncycastle.spec 10 Jul 2009 23:19:26 -0000 1.16 @@ -1,11 +1,11 @@ -%global with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %global archivever jdk16-143 %global classname org.bouncycastle.jce.provider.BouncyCastleProvider Summary: Bouncy Castle Crypto Package for Java Name: bouncycastle Version: 1.43 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.%{name}.org/ @@ -24,8 +24,8 @@ BuildRequires: java-gcj-compat-devel %else BuildArch: noarch %endif -BuildRequires: java-devel >= 1.7 -Requires: java >= 1.7 +BuildRequires: java-devel >= 1.5 +Requires: java >= 1.5 BuildRequires: junit4 Requires: junit4 @@ -59,7 +59,7 @@ unzip -qq src.zip -d src/ %build pushd src export CLASSPATH=$(build-classpath junit4) - javac -target 1.5 `find . -type f -name "*.java"` + javac -g -target 1.5 `find . -type f -name "*.java"` jarfile="../bcprov-%{version}.jar" files="`find . -type f -name "*.class"`" test ! -d classes && mf="" \ @@ -81,11 +81,11 @@ install -pm 644 bcprov-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bcprov-%{version}.jar bcprov.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bcprov-%{version}.jar bcprov-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -161,8 +161,8 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bcprov.jar %{_javadir}/bcprov-%{version}.jar -%if %{with_gcj} %{_javadir}/gcj-endorsed/bcprov-%{version}.jar +%if %{with_gcj} %{_libdir}/gcj/%{name} %endif %{_sysconfdir}/java/security/security.d/2000-%{classname} @@ -172,6 +172,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 +- Re-enable AOT bits thanks to Andrew Haley. + * Mon Apr 20 2009 Orcan Ogetbil - 1.43-1 - Import Bouncy Castle 1.43. From oget at fedoraproject.org Fri Jul 10 23:23:59 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 10 Jul 2009 23:23:59 +0000 (UTC) Subject: rpms/bouncycastle/F-11 bouncycastle.spec,1.15,1.16 Message-ID: <20090710232359.27C7811C0095@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32487 Modified Files: bouncycastle.spec Log Message: * Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle/F-11/bouncycastle.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- bouncycastle.spec 20 Apr 2009 22:42:30 -0000 1.15 +++ bouncycastle.spec 10 Jul 2009 23:23:28 -0000 1.16 @@ -1,11 +1,11 @@ -%global with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %global archivever jdk16-143 %global classname org.bouncycastle.jce.provider.BouncyCastleProvider Summary: Bouncy Castle Crypto Package for Java Name: bouncycastle Version: 1.43 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.%{name}.org/ @@ -24,8 +24,8 @@ BuildRequires: java-gcj-compat-devel %else BuildArch: noarch %endif -BuildRequires: java-devel >= 1.7 -Requires: java >= 1.7 +BuildRequires: java-devel >= 1.5 +Requires: java >= 1.5 BuildRequires: junit4 Requires: junit4 @@ -59,7 +59,7 @@ unzip -qq src.zip -d src/ %build pushd src export CLASSPATH=$(build-classpath junit4) - javac -target 1.5 `find . -type f -name "*.java"` + javac -g -target 1.5 `find . -type f -name "*.java"` jarfile="../bcprov-%{version}.jar" files="`find . -type f -name "*.class"`" test ! -d classes && mf="" \ @@ -81,11 +81,11 @@ install -pm 644 bcprov-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bcprov-%{version}.jar bcprov.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bcprov-%{version}.jar bcprov-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -161,8 +161,8 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bcprov.jar %{_javadir}/bcprov-%{version}.jar -%if %{with_gcj} %{_javadir}/gcj-endorsed/bcprov-%{version}.jar +%if %{with_gcj} %{_libdir}/gcj/%{name} %endif %{_sysconfdir}/java/security/security.d/2000-%{classname} @@ -172,6 +172,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 +- Re-enable AOT bits thanks to Andrew Haley. + * Mon Apr 20 2009 Orcan Ogetbil - 1.43-1 - Import Bouncy Castle 1.43. From toshio at fedoraproject.org Fri Jul 10 23:41:47 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Fri, 10 Jul 2009 23:41:47 +0000 (UTC) Subject: rpms/bzr-gtk/F-10 bzr-gtk-desktop-version.patch, NONE, 1.1 bzr-gtk-el5-encoding.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 bzr-gtk.spec, 1.37, 1.38 sources, 1.14, 1.15 Message-ID: <20090710234147.6D8F511C0095@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/bzr-gtk/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5624 Modified Files: .cvsignore bzr-gtk.spec sources Added Files: bzr-gtk-desktop-version.patch bzr-gtk-el5-encoding.patch Log Message: * Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 - Update to work with bzr-1.16 - Update rhel version reqs bzr-gtk-desktop-version.patch: --- NEW FILE bzr-gtk-desktop-version.patch --- diff -up bzr-gtk/bzr-notify.desktop.ver bzr-gtk/bzr-notify.desktop --- bzr-gtk/bzr-notify.desktop.ver 2009-06-17 13:03:53.254184564 -0700 +++ bzr-gtk/bzr-notify.desktop 2009-06-17 13:04:03.260934759 -0700 @@ -1,7 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Type=Application -Version=0.1 +Version=1.0 Name=Bazaar Notification GenericName= Comment=Notification Area Icon for Bazaar bzr-gtk-el5-encoding.patch: --- NEW FILE bzr-gtk-el5-encoding.patch --- diff -up bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc bzr-gtk-0.94.0/bzr-handle-patch.desktop --- bzr-gtk-0.94.0/bzr-handle-patch.desktop.el5-enc 2008-05-07 12:51:09.000000000 -0700 +++ bzr-gtk-0.94.0/bzr-handle-patch.desktop 2008-05-07 12:51:19.000000000 -0700 @@ -1,4 +1,5 @@ [Desktop Entry] +Encoding=UTF-8 Name=Bazaar Comment=Apply Bazaar Bundle Icon=bazaar Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 4 Sep 2008 03:52:03 -0000 1.14 +++ .cvsignore 10 Jul 2009 23:41:45 -0000 1.15 @@ -1 +1 @@ -bzr-gtk-0.95.0.tar.gz +bzr-gtk-0.96.2.tar.gz Index: bzr-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-10/bzr-gtk.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- bzr-gtk.spec 25 Sep 2008 23:32:48 -0000 1.37 +++ bzr-gtk.spec 10 Jul 2009 23:41:45 -0000 1.38 @@ -7,18 +7,21 @@ %define debug_package %{nil} Name: bzr-gtk -Version: 0.95.0 -Release: 2%{?dist} +Version: 0.96.2 +Release: 1%{?dist} Summary: Bazaar plugin for GTK+ interfaces to most Bazaar operations Group: Development/Tools License: GPLv2+ URL: http://bazaar-vcs.org/bzr-gtk -Source0: http://samba.org/~jelmer/bzr/bzr-gtk-%{version}.tar.gz +Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz # This requires some nonexistent functionality. Bug filed upstream. Disabled # for now. Patch0: bzr-gtk-disable-nautilus-pull.patch -%if 0%{?fedora} <= 7 +# Change the version in the desktop file -- it's for the dektop spec version, +# not the application version +Patch1: bzr-gtk-desktop-version.patch +%if 0%{?fedora} <= 7 || 0%{?rhel} <= 5 # In EL-5 and Fedora < 7 Encoding was a mandatory field. Now it's deprecated. Patch100: bzr-gtk-el5-encoding.patch %endif @@ -66,8 +69,9 @@ from within Nautilus. %prep %setup -q %patch0 -p1 -b .nautilusdisable +%patch1 -p1 -b .dver -%if 0%{?fedora} <= 7 +%if 0%{?fedora} <= 7 || 0%{?rhel} > 5 # EPEL 5 and Fedora <= 7 %patch100 -p1 -b .encoding %endif @@ -82,6 +86,8 @@ rm -rf $RPM_BUILD_ROOT desktop-file-validate bazaar-properties.desktop desktop-file-validate bzr-handle-patch.desktop desktop-file-validate olive-gtk.desktop +desktop-file-validate bzr-notify.desktop + %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT if test "%{python_sitelib}" != "%{python_sitearch}" ; then install -d -m 0755 $RPM_BUILD_ROOT%{python_sitearch} @@ -125,6 +131,19 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 +- Update to work with bzr-1.16 +- Update rhel version reqs + +* Wed May 27 2009 Toshio Kuratomi - 0.95.0-5 +- Upstream patch to work around: bz#498138 + +* Mon Feb 23 2009 Fedora Release Engineering - 0.95.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.95.0-3 +- Rebuild for Python 2.6 + * Thu Sep 25 2008 Toshio Kuratomi 0.95.0-2 - Update for fixed nautilus-python package. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 4 Sep 2008 03:52:03 -0000 1.14 +++ sources 10 Jul 2009 23:41:46 -0000 1.15 @@ -1 +1 @@ -00aedce625672abca13d2d962b047ac0 bzr-gtk-0.95.0.tar.gz +3873dc9efcbc7a655f1c890be406a867 bzr-gtk-0.96.2.tar.gz From wolfy at fedoraproject.org Sat Jul 11 00:18:43 2009 From: wolfy at fedoraproject.org (Manuel Wolfshant) Date: Sat, 11 Jul 2009 00:18:43 +0000 (UTC) Subject: rpms/xchm/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xchm.spec, 1.14, 1.15 Message-ID: <20090711001843.EB34911C0095@cvs1.fedora.phx.redhat.com> Author: wolfy Update of /cvs/pkgs/rpms/xchm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15709 Modified Files: .cvsignore sources xchm.spec Log Message: version update Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 29 Feb 2008 23:15:32 -0000 1.5 +++ .cvsignore 11 Jul 2009 00:18:12 -0000 1.6 @@ -1 +1 @@ -xchm-1.14.tar.gz +xchm-1.17.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 29 Feb 2008 23:15:33 -0000 1.5 +++ sources 11 Jul 2009 00:18:13 -0000 1.6 @@ -1 +1 @@ -0f398af788a9e1a7c6f4e65b5ca31cf3 xchm-1.14.tar.gz +4f34bc046fcc59f1af590d8eb1e08934 xchm-1.17.tar.gz Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/xchm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xchm.spec 26 Feb 2009 08:06:19 -0000 1.14 +++ xchm.spec 11 Jul 2009 00:18:13 -0000 1.15 @@ -1,7 +1,7 @@ Summary: A GUI front-end to CHMlib Name: xchm -Version: 1.14 -Release: 2%{?dist} +Version: 1.17 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Publishing Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -66,6 +66,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/applications/* %changelog +* Wed Jul 8 2009 Manuel "lonely wolf" Wolfshant - 1.17-1 +- Version update. + * Thu Feb 26 2009 Fedora Release Engineering - 1.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From wolfy at fedoraproject.org Sat Jul 11 00:29:13 2009 From: wolfy at fedoraproject.org (Manuel Wolfshant) Date: Sat, 11 Jul 2009 00:29:13 +0000 (UTC) Subject: rpms/xchm/F-11 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xchm.spec, 1.14, 1.15 Message-ID: <20090711002913.87A4F11C0095@cvs1.fedora.phx.redhat.com> Author: wolfy Update of /cvs/pkgs/rpms/xchm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17627 Modified Files: .cvsignore sources xchm.spec Log Message: version update Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 29 Feb 2008 23:15:32 -0000 1.5 +++ .cvsignore 11 Jul 2009 00:28:43 -0000 1.6 @@ -1 +1 @@ -xchm-1.14.tar.gz +xchm-1.17.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 29 Feb 2008 23:15:33 -0000 1.5 +++ sources 11 Jul 2009 00:28:43 -0000 1.6 @@ -1 +1 @@ -0f398af788a9e1a7c6f4e65b5ca31cf3 xchm-1.14.tar.gz +4f34bc046fcc59f1af590d8eb1e08934 xchm-1.17.tar.gz Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-11/xchm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xchm.spec 26 Feb 2009 08:06:19 -0000 1.14 +++ xchm.spec 11 Jul 2009 00:28:43 -0000 1.15 @@ -1,7 +1,7 @@ Summary: A GUI front-end to CHMlib Name: xchm -Version: 1.14 -Release: 2%{?dist} +Version: 1.17 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Publishing Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -66,6 +66,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/applications/* %changelog +* Wed Jul 8 2009 Manuel "lonely wolf" Wolfshant - 1.17-1 +- Version update. + * Thu Feb 26 2009 Fedora Release Engineering - 1.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cebbert at fedoraproject.org Sat Jul 11 00:31:04 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Sat, 11 Jul 2009 00:31:04 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc2-git6.bz2.sign, NONE, 1.1 .cvsignore, 1.1095, 1.1096 kernel.spec, 1.1627, 1.1628 sources, 1.1053, 1.1054 upstream, 1.967, 1.968 linux-2.6-dmadebug-spinlock.patch, 1.1, NONE patch-2.6.31-rc2-git5.bz2.sign, 1.1, NONE Message-ID: <20090711003104.9F2D611C0095@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18816 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc2-git6.bz2.sign Removed Files: linux-2.6-dmadebug-spinlock.patch patch-2.6.31-rc2-git5.bz2.sign Log Message: 2.6.31-rc2-git6 Drop dmadebug-spinlock patch -- merged upstream. --- NEW FILE patch-2.6.31-rc2-git6.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKV9kTyGugalF9Dw4RAo7OAJsEha4BsnHR08DkzMQ1jtYwYcF4kQCeMj2Q WQQZdA1QKyrTLyctUDCeDco= =sFHA -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1095 retrieving revision 1.1096 diff -u -p -r1.1095 -r1.1096 --- .cvsignore 10 Jul 2009 21:10:10 -0000 1.1095 +++ .cvsignore 11 Jul 2009 00:30:33 -0000 1.1096 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git5.bz2 +patch-2.6.31-rc2-git6.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1627 retrieving revision 1.1628 diff -u -p -r1.1627 -r1.1628 --- kernel.spec 10 Jul 2009 21:12:18 -0000 1.1627 +++ kernel.spec 11 Jul 2009 00:30:33 -0000 1.1628 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 2 # The git snapshot level -%define gitrev 5 +%define gitrev 6 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -675,8 +675,6 @@ Patch2900: linux-2.6-v4l-dvb-update.patc Patch2901: linux-2.6-v4l-dvb-experimental.patch Patch2903: linux-2.6-revert-dvb-net-kabi-change.patch -Patch3000: linux-2.6-dmadebug-spinlock.patch - # fs fixes # NFSv4 @@ -1132,9 +1130,6 @@ ApplyPatch linux-2.6.29-sparc-IOC_TYPECH # ApplyPatch linux-2.6-execshield.patch - -ApplyPatch linux-2.6-dmadebug-spinlock.patch - # # bugfixes to drivers and filesystems # @@ -1873,6 +1868,10 @@ fi # and build. %changelog +* Fri Jul 10 2009 Chuck Ebbert +- 2.6.31-rc2-git6 +- Drop dmadebug-spinlock patch -- merged upstream. + * Fri Jul 10 2009 Dave Jones 2.6.31-0.64.rc2.git5 - Don't jump through hoops that ppc powerbooks have to on sensible systems in cpufreq_suspend. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1053 retrieving revision 1.1054 diff -u -p -r1.1053 -r1.1054 --- sources 10 Jul 2009 21:10:11 -0000 1.1053 +++ sources 11 Jul 2009 00:30:34 -0000 1.1054 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -5082653df34f13eb8c162f52907a2090 patch-2.6.31-rc2-git5.bz2 +5519619c3d68f3db554562e646db54b1 patch-2.6.31-rc2-git6.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.967 retrieving revision 1.968 diff -u -p -r1.967 -r1.968 --- upstream 10 Jul 2009 21:10:11 -0000 1.967 +++ upstream 11 Jul 2009 00:30:34 -0000 1.968 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git5.bz2 +patch-2.6.31-rc2-git6.bz2 --- linux-2.6-dmadebug-spinlock.patch DELETED --- --- patch-2.6.31-rc2-git5.bz2.sign DELETED --- From wolfy at fedoraproject.org Sat Jul 11 00:32:49 2009 From: wolfy at fedoraproject.org (Manuel Wolfshant) Date: Sat, 11 Jul 2009 00:32:49 +0000 (UTC) Subject: rpms/xchm/F-10 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xchm.spec, 1.13, 1.14 Message-ID: <20090711003249.13A5811C0095@cvs1.fedora.phx.redhat.com> Author: wolfy Update of /cvs/pkgs/rpms/xchm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19331 Modified Files: .cvsignore sources xchm.spec Log Message: * Wed Jul 8 2009 Manuel "lonely wolf" Wolfshant - 1.17-1 - Version update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 29 Feb 2008 23:15:32 -0000 1.5 +++ .cvsignore 11 Jul 2009 00:32:18 -0000 1.6 @@ -1 +1 @@ -xchm-1.14.tar.gz +xchm-1.17.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 29 Feb 2008 23:15:33 -0000 1.5 +++ sources 11 Jul 2009 00:32:18 -0000 1.6 @@ -1 +1 @@ -0f398af788a9e1a7c6f4e65b5ca31cf3 xchm-1.14.tar.gz +4f34bc046fcc59f1af590d8eb1e08934 xchm-1.17.tar.gz Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/F-10/xchm.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xchm.spec 29 Feb 2008 23:15:33 -0000 1.13 +++ xchm.spec 11 Jul 2009 00:32:18 -0000 1.14 @@ -1,6 +1,6 @@ Summary: A GUI front-end to CHMlib Name: xchm -Version: 1.14 +Version: 1.17 Release: 1%{?dist} License: GPLv2+ Group: Applications/Publishing @@ -66,6 +66,12 @@ update-desktop-database &> /dev/null ||: %{_datadir}/applications/* %changelog +* Wed Jul 8 2009 Manuel "lonely wolf" Wolfshant - 1.17-1 +- Version update. + +* Thu Feb 26 2009 Fedora Release Engineering - 1.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Mar 1 2008 Patrice Dumas 1.14-1 - update to 1.14. Remove upstreamed gcc 4.3 patch From mclasen at fedoraproject.org Sat Jul 11 01:24:16 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sat, 11 Jul 2009 01:24:16 +0000 (UTC) Subject: rpms/gtk2/devel .cvsignore, 1.108, 1.109 gtk2.spec, 1.384, 1.385 sources, 1.117, 1.118 Message-ID: <20090711012416.3B88311C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32154 Modified Files: .cvsignore gtk2.spec sources Log Message: 2.17.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/.cvsignore,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- .cvsignore 7 Jul 2009 05:32:49 -0000 1.108 +++ .cvsignore 11 Jul 2009 01:23:45 -0000 1.109 @@ -1 +1 @@ -gtk+-2.17.3.tar.bz2 +gtk+-2.17.4.tar.bz2 Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.384 retrieving revision 1.385 diff -u -p -r1.384 -r1.385 --- gtk2.spec 10 Jul 2009 13:17:11 -0000 1.384 +++ gtk2.spec 11 Jul 2009 01:23:45 -0000 1.385 @@ -11,13 +11,13 @@ %define libpng_version 2:1.2.2-16 %define xrandr_version 1.2.99.4-2 -%define base_version 2.17.3 +%define base_version 2.17.4 %define bin_version 2.10.0 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 3%{?dist} +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -29,8 +29,6 @@ Source3: im-cedilla.conf Patch0: gtk+-2.13.5-lib64.patch # http://bugzilla.redhat.com/show_bug.cgi?id=478400 Patch1: default_printer.patch -# from upstream -Patch2: csw-fixes.patch BuildRequires: atk-devel >= %{atk_version} BuildRequires: pango-devel >= %{pango_version} @@ -143,7 +141,6 @@ This package contains developer document %patch0 -p1 -b .lib64 %patch1 -p0 -b .default-printer -%patch2 -p1 -b .csw-fixes # make sure that gtkmarshalers.{c, h} get regenerated during the build # - caused by print_authentication.patch @@ -379,6 +376,9 @@ fi %changelog +* Fri Jul 10 2009 Matthias Clasen - 2.17.4-1 +- Update to 2.17.4 + * Fri Jul 10 2009 Matthias Clasen - 2.17.3-3 - Add an imsettings conf file for im-cedilla Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/sources,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- sources 7 Jul 2009 05:32:49 -0000 1.117 +++ sources 11 Jul 2009 01:23:45 -0000 1.118 @@ -1 +1 @@ -ce2a5051122717a4b6bdda1d2df4ce27 gtk+-2.17.3.tar.bz2 +fab0833657d241ee92580d589caeee64 gtk+-2.17.4.tar.bz2 From dcantrel at fedoraproject.org Sat Jul 11 02:10:01 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Sat, 11 Jul 2009 02:10:01 +0000 (UTC) Subject: rpms/pyparted/devel pyparted.spec,1.61,1.62 Message-ID: <20090711021001.BA83111C0095@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/pyparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12154 Modified Files: pyparted.spec Log Message: * Fri Jul 10 2009 David Cantrell - 2.0.12-2 - Rebuild for new parted Index: pyparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyparted/devel/pyparted.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- pyparted.spec 15 Apr 2009 03:18:53 -0000 1.61 +++ pyparted.spec 11 Jul 2009 02:09:31 -0000 1.62 @@ -3,7 +3,7 @@ Summary: Python module for GNU parted Name: pyparted Version: 2.0.12 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://fedorahosted.org/pyparted @@ -12,7 +12,7 @@ Source0: http://fedorahosted.org/release BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel -BuildRequires: parted-devel >= 1.8.8 +BuildRequires: parted-devel >= 1.9.0 BuildRequires: pkgconfig %description @@ -41,6 +41,9 @@ partition tables. %{python_sitearch}/parted %changelog +* Fri Jul 10 2009 David Cantrell - 2.0.12-2 +- Rebuild for new parted + * Tue Apr 14 2009 David Cantrell - 2.0.12-1 - Upgrade to pyparted-2.0.12 From chitlesh at fedoraproject.org Sat Jul 11 02:36:04 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sat, 11 Jul 2009 02:36:04 +0000 (UTC) Subject: comps comps-f12.xml.in,1.33,1.34 Message-ID: <20090711023604.0D70711C0095@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18934 Modified Files: comps-f12.xml.in Log Message: added mcu8051ide Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- comps-f12.xml.in 10 Jul 2009 20:54:52 -0000 1.33 +++ comps-f12.xml.in 11 Jul 2009 02:35:33 -0000 1.34 @@ -1379,6 +1379,7 @@ LabPlot linsmith magic + mcu8051ide netgen ngspice octave-forge From ke4qqq at fedoraproject.org Sat Jul 11 03:20:10 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Sat, 11 Jul 2009 03:20:10 +0000 (UTC) Subject: rpms/phpFlickr/devel import.log, NONE, 1.1 phpFlickr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711032010.598AF11C0095@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/phpFlickr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29601/devel Modified Files: .cvsignore sources Added Files: import.log phpFlickr.spec Log Message: * Fri Jul 10 2009 David Nalley 2.3.0.1-1 - Initial commit --- NEW FILE import.log --- phpFlickr-2_3_0_1-1_fc11:HEAD:phpFlickr-2.3.0.1-1.fc11.src.rpm:1247282340 --- NEW FILE phpFlickr.spec --- Name: phpFlickr Version: 2.3.0.1 Release: 1%{?dist} Summary: PHP client for the Flickr web service Group: Development/Libraries License: LGPL URL: http://phpflickr.com/ Source0: http://phpflickr.googlecode.com/files/phpFlickr-2.3.0.1.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: php Requires: php-pear-DB Requires: php-pear-Net-URL Requires: php-pear-Net-Socket %description PHP client for the Flickr web service. It has functions that return the responses from Flickr's API in a meaningful way for PHP developers. It will also contain functions that aggregate data from multiple methods. Compatible with PHP4 and PHP5. %prep %setup -qn %{name}-%{version} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/php/%{name} cp -pr auth.php getToken.php phpFlickr.php $RPM_BUILD_ROOT/%{_datadir}/php/%{name}/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt ChangeLog.txt example.php %{_datadir}/php/%{name} %changelog * Sun Jun 14 2009 David Nalley 2.3.0.1-1 - Initial RPM packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 23:15:44 -0000 1.1 +++ .cvsignore 11 Jul 2009 03:20:09 -0000 1.2 @@ -0,0 +1 @@ +phpFlickr-2.3.0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 23:15:44 -0000 1.1 +++ sources 11 Jul 2009 03:20:09 -0000 1.2 @@ -0,0 +1 @@ +bcbd22b356acd70eda8d64cee5cc5e2b phpFlickr-2.3.0.1.tar.gz From ke4qqq at fedoraproject.org Sat Jul 11 03:21:59 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Sat, 11 Jul 2009 03:21:59 +0000 (UTC) Subject: rpms/phpFlickr/F-10 import.log, NONE, 1.1 phpFlickr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711032159.35E0211C0095@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/phpFlickr/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30201/F-10 Modified Files: .cvsignore sources Added Files: import.log phpFlickr.spec Log Message: * Fri Jul 10 2009 David Nalley 2.3.0.1-1 - Initial commit --- NEW FILE import.log --- phpFlickr-2_3_0_1-1_fc11:F-10:phpFlickr-2.3.0.1-1.fc11.src.rpm:1247282442 --- NEW FILE phpFlickr.spec --- Name: phpFlickr Version: 2.3.0.1 Release: 1%{?dist} Summary: PHP client for the Flickr web service Group: Development/Libraries License: LGPL URL: http://phpflickr.com/ Source0: http://phpflickr.googlecode.com/files/phpFlickr-2.3.0.1.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: php Requires: php-pear-DB Requires: php-pear-Net-URL Requires: php-pear-Net-Socket %description PHP client for the Flickr web service. It has functions that return the responses from Flickr's API in a meaningful way for PHP developers. It will also contain functions that aggregate data from multiple methods. Compatible with PHP4 and PHP5. %prep %setup -qn %{name}-%{version} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/php/%{name} cp -pr auth.php getToken.php phpFlickr.php $RPM_BUILD_ROOT/%{_datadir}/php/%{name}/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt ChangeLog.txt example.php %{_datadir}/php/%{name} %changelog * Sun Jun 14 2009 David Nalley 2.3.0.1-1 - Initial RPM packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 23:15:44 -0000 1.1 +++ .cvsignore 11 Jul 2009 03:21:28 -0000 1.2 @@ -0,0 +1 @@ +phpFlickr-2.3.0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 23:15:44 -0000 1.1 +++ sources 11 Jul 2009 03:21:28 -0000 1.2 @@ -0,0 +1 @@ +bcbd22b356acd70eda8d64cee5cc5e2b phpFlickr-2.3.0.1.tar.gz From ke4qqq at fedoraproject.org Sat Jul 11 03:22:21 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Sat, 11 Jul 2009 03:22:21 +0000 (UTC) Subject: rpms/phpFlickr/F-11 import.log, NONE, 1.1 phpFlickr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711032221.39A2411C0095@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/phpFlickr/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30381/F-11 Modified Files: .cvsignore sources Added Files: import.log phpFlickr.spec Log Message: * Fri Jul 10 2009 David Nalley 2.3.0.1-1 - Initial commit --- NEW FILE import.log --- phpFlickr-2_3_0_1-1_fc11:F-11:phpFlickr-2.3.0.1-1.fc11.src.rpm:1247282487 --- NEW FILE phpFlickr.spec --- Name: phpFlickr Version: 2.3.0.1 Release: 1%{?dist} Summary: PHP client for the Flickr web service Group: Development/Libraries License: LGPL URL: http://phpflickr.com/ Source0: http://phpflickr.googlecode.com/files/phpFlickr-2.3.0.1.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: php Requires: php-pear-DB Requires: php-pear-Net-URL Requires: php-pear-Net-Socket %description PHP client for the Flickr web service. It has functions that return the responses from Flickr's API in a meaningful way for PHP developers. It will also contain functions that aggregate data from multiple methods. Compatible with PHP4 and PHP5. %prep %setup -qn %{name}-%{version} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/php/%{name} cp -pr auth.php getToken.php phpFlickr.php $RPM_BUILD_ROOT/%{_datadir}/php/%{name}/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt ChangeLog.txt example.php %{_datadir}/php/%{name} %changelog * Sun Jun 14 2009 David Nalley 2.3.0.1-1 - Initial RPM packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 23:15:44 -0000 1.1 +++ .cvsignore 11 Jul 2009 03:21:50 -0000 1.2 @@ -0,0 +1 @@ +phpFlickr-2.3.0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 23:15:44 -0000 1.1 +++ sources 11 Jul 2009 03:21:51 -0000 1.2 @@ -0,0 +1 @@ +bcbd22b356acd70eda8d64cee5cc5e2b phpFlickr-2.3.0.1.tar.gz From ke4qqq at fedoraproject.org Sat Jul 11 03:23:02 2009 From: ke4qqq at fedoraproject.org (David Nalley) Date: Sat, 11 Jul 2009 03:23:02 +0000 (UTC) Subject: rpms/phpFlickr/EL-5 import.log, NONE, 1.1 phpFlickr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711032302.C850511C0095@cvs1.fedora.phx.redhat.com> Author: ke4qqq Update of /cvs/pkgs/rpms/phpFlickr/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30869/EL-5 Modified Files: .cvsignore sources Added Files: import.log phpFlickr.spec Log Message: * Fri Jul 10 2009 David Nalley 2.3.0.1-1 - Initial commit --- NEW FILE import.log --- phpFlickr-2_3_0_1-1_fc11:EL-5:phpFlickr-2.3.0.1-1.fc11.src.rpm:1247282550 --- NEW FILE phpFlickr.spec --- Name: phpFlickr Version: 2.3.0.1 Release: 1%{?dist} Summary: PHP client for the Flickr web service Group: Development/Libraries License: LGPL URL: http://phpflickr.com/ Source0: http://phpflickr.googlecode.com/files/phpFlickr-2.3.0.1.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: php Requires: php-pear-DB Requires: php-pear-Net-URL Requires: php-pear-Net-Socket %description PHP client for the Flickr web service. It has functions that return the responses from Flickr's API in a meaningful way for PHP developers. It will also contain functions that aggregate data from multiple methods. Compatible with PHP4 and PHP5. %prep %setup -qn %{name}-%{version} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/php/%{name} cp -pr auth.php getToken.php phpFlickr.php $RPM_BUILD_ROOT/%{_datadir}/php/%{name}/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt ChangeLog.txt example.php %{_datadir}/php/%{name} %changelog * Sun Jun 14 2009 David Nalley 2.3.0.1-1 - Initial RPM packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 23:15:44 -0000 1.1 +++ .cvsignore 11 Jul 2009 03:23:02 -0000 1.2 @@ -0,0 +1 @@ +phpFlickr-2.3.0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 23:15:44 -0000 1.1 +++ sources 11 Jul 2009 03:23:02 -0000 1.2 @@ -0,0 +1 @@ +bcbd22b356acd70eda8d64cee5cc5e2b phpFlickr-2.3.0.1.tar.gz From tgl at fedoraproject.org Sat Jul 11 03:43:41 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Sat, 11 Jul 2009 03:43:41 +0000 (UTC) Subject: rpms/mysql/devel .cvsignore, 1.39, 1.40 mysql-plugin-bug.patch, 1.7, 1.8 mysql.spec, 1.121, 1.122 sources, 1.39, 1.40 Message-ID: <20090711034341.D7B0911C0095@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3651 Modified Files: .cvsignore mysql-plugin-bug.patch mysql.spec sources Log Message: Update to MySQL 5.1.36 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mysql/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 7 Jun 2009 00:50:05 -0000 1.39 +++ .cvsignore 11 Jul 2009 03:43:11 -0000 1.40 @@ -1 +1 @@ -mysql-5.1.35.tar.gz +mysql-5.1.36.tar.gz mysql-plugin-bug.patch: Index: mysql-plugin-bug.patch =================================================================== RCS file: /cvs/pkgs/rpms/mysql/devel/mysql-plugin-bug.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mysql-plugin-bug.patch 7 Jun 2009 00:50:05 -0000 1.7 +++ mysql-plugin-bug.patch 11 Jul 2009 03:43:11 -0000 1.8 @@ -7,12 +7,12 @@ http://bugs.mysql.com/bug.php?id=42144 For the moment, just disable this test. -diff -Naur mysql-5.1.35.orig/mysql-test/t/disabled.def mysql-5.1.35/mysql-test/t/disabled.def ---- mysql-5.1.35.orig/mysql-test/t/disabled.def 2009-05-14 08:22:26.000000000 -0400 -+++ mysql-5.1.35/mysql-test/t/disabled.def 2009-06-06 18:58:28.000000000 -0400 -@@ -15,3 +15,5 @@ - - #concurrent_innodb_safelog: disabled for embedded server due to bug#43733 Select on processlist let the embedded server crash (concurrent_innodb_safelog). - #concurrent_innodb_unsafelog: disabled for embedded server due to bug#43733. +diff -Naur mysql-5.1.36.orig/mysql-test/t/disabled.def mysql-5.1.36/mysql-test/t/disabled.def +--- mysql-5.1.36.orig/mysql-test/t/disabled.def 2009-06-16 09:43:04.000000000 -0400 ++++ mysql-5.1.36/mysql-test/t/disabled.def 2009-07-10 22:00:42.000000000 -0400 +@@ -12,3 +12,5 @@ + kill : Bug#37780 2008-12-03 HHunger need some changes to be robust enough for pushbuild. + innodb_bug39438 : Bug#42383 2009-01-28 lsoares "This fails in embedded and on windows. Note that this test is not run on windows and on embedded in PB for main trees currently" + query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically +# +plugin_load : gives wrong answer on PPC64 Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/devel/mysql.spec,v retrieving revision 1.121 retrieving revision 1.122 diff -u -p -r1.121 -r1.122 --- mysql.spec 7 Jun 2009 00:50:05 -0000 1.121 +++ mysql.spec 11 Jul 2009 03:43:11 -0000 1.122 @@ -1,5 +1,5 @@ Name: mysql -Version: 5.1.35 +Version: 5.1.36 Release: 1%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases @@ -639,6 +639,10 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Fri Jul 10 2009 Tom Lane 5.1.36-1 +- Update to MySQL 5.1.36, for various fixes described at + http://dev.mysql.com/doc/refman/5.1/en/news-5-1-36.html + * Sat Jun 6 2009 Tom Lane 5.1.35-1 - Update to MySQL 5.1.35, for various fixes described at http://dev.mysql.com/doc/refman/5.1/en/news-5-1-35.html Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mysql/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 7 Jun 2009 00:50:06 -0000 1.39 +++ sources 11 Jul 2009 03:43:11 -0000 1.40 @@ -1 +1 @@ -327bffc7a2a5fd4471fbbaab125275cd mysql-5.1.35.tar.gz +18e694c4ecbe851fe8e21e1668116c46 mysql-5.1.36.tar.gz From tgl at fedoraproject.org Sat Jul 11 03:51:15 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Sat, 11 Jul 2009 03:51:15 +0000 (UTC) Subject: rpms/mysql/F-11 .cvsignore, 1.39, 1.40 mysql-plugin-bug.patch, 1.7, 1.8 mysql.spec, 1.120, 1.121 sources, 1.39, 1.40 Message-ID: <20090711035115.B362411C0095@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/mysql/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5339 Modified Files: .cvsignore mysql-plugin-bug.patch mysql.spec sources Log Message: Update to MySQL 5.1.36 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-11/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 7 Jun 2009 02:45:07 -0000 1.39 +++ .cvsignore 11 Jul 2009 03:50:45 -0000 1.40 @@ -1 +1 @@ -mysql-5.1.35.tar.gz +mysql-5.1.36.tar.gz mysql-plugin-bug.patch: Index: mysql-plugin-bug.patch =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-11/mysql-plugin-bug.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mysql-plugin-bug.patch 7 Jun 2009 02:45:07 -0000 1.7 +++ mysql-plugin-bug.patch 11 Jul 2009 03:50:45 -0000 1.8 @@ -7,12 +7,12 @@ http://bugs.mysql.com/bug.php?id=42144 For the moment, just disable this test. -diff -Naur mysql-5.1.35.orig/mysql-test/t/disabled.def mysql-5.1.35/mysql-test/t/disabled.def ---- mysql-5.1.35.orig/mysql-test/t/disabled.def 2009-05-14 08:22:26.000000000 -0400 -+++ mysql-5.1.35/mysql-test/t/disabled.def 2009-06-06 18:58:28.000000000 -0400 -@@ -15,3 +15,5 @@ - - #concurrent_innodb_safelog: disabled for embedded server due to bug#43733 Select on processlist let the embedded server crash (concurrent_innodb_safelog). - #concurrent_innodb_unsafelog: disabled for embedded server due to bug#43733. +diff -Naur mysql-5.1.36.orig/mysql-test/t/disabled.def mysql-5.1.36/mysql-test/t/disabled.def +--- mysql-5.1.36.orig/mysql-test/t/disabled.def 2009-06-16 09:43:04.000000000 -0400 ++++ mysql-5.1.36/mysql-test/t/disabled.def 2009-07-10 22:00:42.000000000 -0400 +@@ -12,3 +12,5 @@ + kill : Bug#37780 2008-12-03 HHunger need some changes to be robust enough for pushbuild. + innodb_bug39438 : Bug#42383 2009-01-28 lsoares "This fails in embedded and on windows. Note that this test is not run on windows and on embedded in PB for main trees currently" + query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically +# +plugin_load : gives wrong answer on PPC64 Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-11/mysql.spec,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- mysql.spec 7 Jun 2009 02:45:07 -0000 1.120 +++ mysql.spec 11 Jul 2009 03:50:45 -0000 1.121 @@ -1,5 +1,5 @@ Name: mysql -Version: 5.1.35 +Version: 5.1.36 Release: 1%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases @@ -639,6 +639,10 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Fri Jul 10 2009 Tom Lane 5.1.36-1 +- Update to MySQL 5.1.36, for various fixes described at + http://dev.mysql.com/doc/refman/5.1/en/news-5-1-36.html + * Sat Jun 6 2009 Tom Lane 5.1.35-1 - Update to MySQL 5.1.35, for various fixes described at http://dev.mysql.com/doc/refman/5.1/en/news-5-1-35.html Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-11/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 7 Jun 2009 02:45:07 -0000 1.39 +++ sources 11 Jul 2009 03:50:45 -0000 1.40 @@ -1 +1 @@ -327bffc7a2a5fd4471fbbaab125275cd mysql-5.1.35.tar.gz +18e694c4ecbe851fe8e21e1668116c46 mysql-5.1.36.tar.gz From pwouters at fedoraproject.org Sat Jul 11 04:29:35 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Sat, 11 Jul 2009 04:29:35 +0000 (UTC) Subject: rpms/ldns/devel ldns.spec,1.42,1.43 sources,1.13,1.14 Message-ID: <20090711042935.1615211C00DF@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/ldns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4350 Modified Files: ldns.spec sources Log Message: * Sat Jul 11 2009 Paul Wouters - 1.6.0-1 - Updated to 1.6.0 - (did not yet compile with --without-ssl due to compile failures) Index: ldns.spec =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/ldns.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- ldns.spec 16 Apr 2009 20:20:36 -0000 1.42 +++ ldns.spec 11 Jul 2009 04:29:04 -0000 1.43 @@ -1,15 +1,15 @@ Summary: Lowlevel DNS(SEC) library with API Name: ldns -Version: 1.5.1 -Release: 4%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz -Patch1: ldns-keygen-hmac-memory.patch +Patch0: ldns-ssl.patch Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libtool, autoconf, automake, gcc-c++, openssl-devel, doxygen, -BuildRequires: perl libpcap-devel +BuildRequires: libtool, autoconf, automake, gcc-c++, doxygen, +BuildRequires: perl, libpcap-devel, openssl-devel %description ldns is a library with the aim to simplify DNS programing in C. All @@ -20,7 +20,7 @@ packets. %package devel Summary: Development package that includes the ldns header files Group: Development/Libraries -Requires: %{name} = %{version}-%{release}, openssl-devel +Requires: %{name} = %{version}-%{release} %description devel The devel package contains the ldns library and the include files @@ -32,16 +32,13 @@ The devel package contains the ldns libr #libtoolize #autoreconf -# https://bugzilla.redhat.com/show_bug.cgi?id=493953 -%patch1 - -%configure --disable-rpath --with-sha2 +%patch0 -p1 %build - +%configure --disable-rpath --with-sha2 make %{?_smp_mflags} -(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/) -(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/) +(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ ) +(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ ) ( cd drill ; make %{?_smp_mflags} ) ( cd examples ; make %{?_smp_mflags} ) make %{?_smp_mflags} doc @@ -71,8 +68,11 @@ rm -rf %{buildroot} %defattr(-,root,root) %{_libdir}/libldns*so.* %{_bindir}/drill -%{_bindir}/ldns-* %{_bindir}/ldnsd +#%{_bindir}/ldns-* +%{_bindir}/ldns-chaos +%{_bindir}/ldns-compare-zones +%{_bindir}/ldns-[d-z]* %doc README LICENSE %{_mandir}/*/* @@ -80,6 +80,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %{_libdir}/libldns.a %{_libdir}/libldns*so +%{_bindir}/ldns-config %dir %{_includedir}/ldns %{_includedir}/ldns/*.h %doc doc Changelog README @@ -89,6 +90,10 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sat Jul 11 2009 Paul Wouters - 1.6.0-1 +- Updated to 1.6.0 +- (did not yet compile with --without-ssl due to compile failures) + * Thu Apr 16 2009 Paul Wouters - 1.5.1-4 - Memory management bug when generating a sha256 key, see: https://bugzilla.redhat.com/show_bug.cgi?id=493953 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 16 Apr 2009 19:59:20 -0000 1.13 +++ sources 11 Jul 2009 04:29:04 -0000 1.14 @@ -1 +1 @@ -17f73def98711e1475409d9a8d5d9dcd ldns-1.5.1.tar.gz +cd0d4d34a60d018fbfedae6d3ee4049b ldns-1.6.0.tar.gz From pwouters at fedoraproject.org Sat Jul 11 04:35:25 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Sat, 11 Jul 2009 04:35:25 +0000 (UTC) Subject: rpms/ldns/devel ldns-ssl.patch,NONE,1.1 ldns.spec,1.43,1.44 Message-ID: <20090711043525.3821911C00DF@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/ldns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5297 Modified Files: ldns.spec Added Files: ldns-ssl.patch Log Message: Added missing patch ldns-ssl.patch: --- NEW FILE ldns-ssl.patch --- diff -Naur ldns-1.6.0.org/buffer.lo ldns-1.6.0/buffer.lo --- ldns-1.6.0.org/buffer.lo 1969-12-31 19:00:00.000000000 -0500 +++ ldns-1.6.0/buffer.lo 2009-07-11 00:10:24.000000000 -0400 @@ -0,0 +1,12 @@ +# buffer.lo - a libtool object file +# Generated by ltmain.sh (GNU libtool) 2.2.6 Debian-2.2.6a-1ubuntu1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/buffer.o' + +# Name of the non-PIC object +non_pic_object='buffer.o' + diff -Naur ldns-1.6.0.org/buffer.o ldns-1.6.0/buffer.o --- ldns-1.6.0.org/buffer.o 1969-12-31 19:00:00.000000000 -0500 +++ ldns-1.6.0/buffer.o 2009-07-11 00:10:23.000000000 -0400 @@ -0,0 +1,505 @@ +ELF ???? Hf??+??? + +I +  8 + + + + + + +? +M +M +? +? +? +? +   +$  + + + + +? +? +? +? +? ???2?|<?"?|.t1O0???????~J??3f?~<?f?~< t??s??[?%J???~<[XYg?,??x?^??????~? + +   + +       long int read_u8 _TSIG_ERR bbrev  + +D +D + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [...49907 lines suppressed...] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: ldns.spec =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/ldns.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- ldns.spec 11 Jul 2009 04:29:04 -0000 1.43 +++ ldns.spec 11 Jul 2009 04:35:24 -0000 1.44 @@ -1,7 +1,7 @@ Summary: Lowlevel DNS(SEC) library with API Name: ldns Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz From mycae at fedoraproject.org Sat Jul 11 04:37:43 2009 From: mycae at fedoraproject.org (mycae) Date: Sat, 11 Jul 2009 04:37:43 +0000 (UTC) Subject: rpms/nurbs++/F-10 nurbs++.spec,1.1,1.2 Message-ID: <20090711043743.458D611C00DF@cvs1.fedora.phx.redhat.com> Author: mycae Update of /cvs/pkgs/rpms/nurbs++/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5966 Modified Files: nurbs++.spec Log Message: *Fix x86_64 build for F10 Index: nurbs++.spec =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/F-10/nurbs++.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nurbs++.spec 10 Jul 2009 14:57:23 -0000 1.1 +++ nurbs++.spec 11 Jul 2009 04:37:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: nurbs++ Version: 3.0.11 -Release: 6%{?dist} +Release: 6%{?dist}.1 Summary: Non Uniform Rational Basis Spline (NURBS) library for C++ Group: Development/Libraries @@ -34,6 +34,10 @@ BuildRequires: libtool BuildRequires: libGL-devel BuildRequires: libGLU-devel +%if 0%{fedora} <= 10 +BuildRequires: libXext-devel +%endif + %description A C++ library to manipulate and create NURBS curves and surfaces. Also featuring vector, matrix, and OpenGL support classes. @@ -122,6 +126,9 @@ rm -rf %{buildroot} %{_libdir}/libnurbsf.so %changelog +* Sat Jul 11 2009 3.0.11-6.1 +- Fixed missing BuildRequire for F-10 x86_64 + * Wed Jul 08 2009 3.0.11-6 - ImageMagick is in ifdefs that are not activated - Fix more weak-link errors From pwouters at fedoraproject.org Sat Jul 11 04:45:45 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Sat, 11 Jul 2009 04:45:45 +0000 (UTC) Subject: rpms/ldns/devel ldns.spec,1.44,1.45 Message-ID: <20090711044545.41F0011C00DF@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/ldns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8249 Modified Files: ldns.spec Log Message: bump version Index: ldns.spec =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/ldns.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- ldns.spec 11 Jul 2009 04:35:24 -0000 1.44 +++ ldns.spec 11 Jul 2009 04:45:14 -0000 1.45 @@ -90,7 +90,7 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog -* Sat Jul 11 2009 Paul Wouters - 1.6.0-1 +* Sat Jul 11 2009 Paul Wouters - 1.6.0-2 - Updated to 1.6.0 - (did not yet compile with --without-ssl due to compile failures) From pwouters at fedoraproject.org Sat Jul 11 04:47:27 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Sat, 11 Jul 2009 04:47:27 +0000 (UTC) Subject: rpms/ldns/EL-5 ldns.spec,1.17,1.18 sources,1.7,1.8 Message-ID: <20090711044727.E3FBC11C00DF@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/ldns/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8381 Modified Files: ldns.spec sources Log Message: * Sat Jul 11 2009 Paul Wouters - 1.6.0-1 - Updated to 1.6.0 Index: ldns.spec =================================================================== RCS file: /cvs/extras/rpms/ldns/EL-5/ldns.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ldns.spec 16 Apr 2009 20:48:44 -0000 1.17 +++ ldns.spec 11 Jul 2009 04:46:57 -0000 1.18 @@ -1,11 +1,10 @@ Summary: Lowlevel DNS(SEC) library with API Name: ldns -Version: 1.5.1 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz -Patch1: ldns-keygen-hmac-memory.patch Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool, autoconf, automake, gcc-c++, openssl-devel, doxygen @@ -32,9 +31,6 @@ The devel package contains the ldns libr #libtoolize #autoreconf -# https://bugzilla.redhat.com/show_bug.cgi?id=493953 -%patch1 - %configure --disable-rpath --with-sha2 %build @@ -61,7 +57,6 @@ rm -rf %{buildroot}%{_libdir}/*.la (cd drill ; make DESTDIR=%{buildroot} install) (cd examples; make DESTDIR=%{buildroot} install) - %clean rm -rf %{buildroot} @@ -69,7 +64,9 @@ rm -rf %{buildroot} %defattr(-,root,root) %{_libdir}/libldns*so.* %{_bindir}/drill -%{_bindir}/ldns-* +%{_bindir}/ldns-chaos +%{_bindir}/ldns-compare-zones +%{_bindir}/ldns-[d-z]* %{_bindir}/ldnsd %doc README LICENSE %{_mandir}/*/* @@ -79,6 +76,7 @@ rm -rf %{buildroot} %{_libdir}/libldns.a %{_libdir}/libldns*so %dir %{_includedir}/ldns +%{_bindir}/ldns-config %{_includedir}/ldns/*.h %doc doc Changelog README @@ -87,6 +85,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sat Jul 11 2009 Paul Wouters - 1.6.0-1 +- Updated to 1.6.0 + * Thu Apr 16 2009 Paul Wouters - 1.5.1-2 - Memory management bug when generating a sha256 key, see: https://bugzilla.redhat.com/show_bug.cgi?id=493953 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ldns/EL-5/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Apr 2009 20:48:44 -0000 1.7 +++ sources 11 Jul 2009 04:46:57 -0000 1.8 @@ -1 +1 @@ -17f73def98711e1475409d9a8d5d9dcd ldns-1.5.1.tar.gz +cd0d4d34a60d018fbfedae6d3ee4049b ldns-1.6.0.tar.gz From turki at fedoraproject.org Sat Jul 11 07:35:06 2009 From: turki at fedoraproject.org (Nikolay Vladimirov) Date: Sat, 11 Jul 2009 07:35:06 +0000 (UTC) Subject: rpms/PyOpenGL/F-10 PyOpenGL.spec,1.9,1.10 Message-ID: <20090711073506.4C9D111C00DF@cvs1.fedora.phx.redhat.com> Author: turki Update of /cvs/pkgs/rpms/PyOpenGL/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15368 Modified Files: PyOpenGL.spec Log Message: added missing obsolete Index: PyOpenGL.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyOpenGL/F-10/PyOpenGL.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- PyOpenGL.spec 9 Jun 2009 20:21:25 -0000 1.9 +++ PyOpenGL.spec 11 Jul 2009 07:34:34 -0000 1.10 @@ -2,7 +2,7 @@ Name: PyOpenGL Version: 3.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for OpenGL License: BSD Group: System Environment/Libraries @@ -16,7 +16,7 @@ Requires: numpy python-setuptools # in some other repositories this is named python-opengl Provides: python-opengl = %{version}-%{release} Obsoletes: python-opengl < %{version}-%{release} - +Obsoletes: PyOpenGL-doc %description PyOpenGL is the cross platform Python binding to OpenGL and related APIs. It includes support for OpenGL v1.1, GLU, GLUT v3.7, GLE 3 and WGL 4. It also @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/OpenGL/Tk %changelog +* Sat Jul 11 2008 Nikolay Vladimirov - 3.0.0-2 +- Added missing Obsoletes for PyOpenGL-doc + * Tue Jun 9 2009 Nikolay Vladimirov - 3.0.0-1 - Updated to 3.0 stable - Changed requires from python-numeric to numpy for BZ #504681 From turki at fedoraproject.org Sat Jul 11 07:36:38 2009 From: turki at fedoraproject.org (Nikolay Vladimirov) Date: Sat, 11 Jul 2009 07:36:38 +0000 (UTC) Subject: rpms/PyOpenGL/F-10 PyOpenGL.spec,1.10,1.11 Message-ID: <20090711073638.7B41C11C00DF@cvs1.fedora.phx.redhat.com> Author: turki Update of /cvs/pkgs/rpms/PyOpenGL/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15712 Modified Files: PyOpenGL.spec Log Message: fixed changelog Index: PyOpenGL.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyOpenGL/F-10/PyOpenGL.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- PyOpenGL.spec 11 Jul 2009 07:34:34 -0000 1.10 +++ PyOpenGL.spec 11 Jul 2009 07:36:07 -0000 1.11 @@ -64,7 +64,7 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/OpenGL/Tk %changelog -* Sat Jul 11 2008 Nikolay Vladimirov - 3.0.0-2 +* Sat Jul 11 2009 Nikolay Vladimirov - 3.0.0-2 - Added missing Obsoletes for PyOpenGL-doc * Tue Jun 9 2009 Nikolay Vladimirov - 3.0.0-1 From pkgdb at fedoraproject.org Sat Jul 11 07:48:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 07:48:50 +0000 Subject: [pkgdb] python-kaa-display was added for kwizart Message-ID: <20090711074850.EA14310F897@bastion2.fedora.phx.redhat.com> tibbs has added Package python-kaa-display with summary Python API providing Low level support for various displays tibbs has approved Package python-kaa-display tibbs has added a Fedora devel branch for python-kaa-display with an owner of kwizart tibbs has approved python-kaa-display in Fedora devel tibbs has approved Package python-kaa-display tibbs has set commit to Approved for 107427 on python-kaa-display (Fedora devel) tibbs has set checkout to Approved for 107427 on python-kaa-display (Fedora devel) tibbs has set build to Approved for 107427 on python-kaa-display (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-kaa-display From pkgdb at fedoraproject.org Sat Jul 11 07:48:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 07:48:52 +0000 Subject: [pkgdb] python-kaa-display summary updated by tibbs Message-ID: <20090711074852.2281F10F8A6@bastion2.fedora.phx.redhat.com> tibbs set package python-kaa-display summary to Python API providing Low level support for various displays To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-kaa-display From pkgdb at fedoraproject.org Sat Jul 11 07:48:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 07:48:52 +0000 Subject: [pkgdb] python-kaa-display (Fedora EPEL, 5) updated by tibbs Message-ID: <20090711074852.2574810F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-kaa-display tibbs has set commit to Approved for 107427 on python-kaa-display (Fedora 10) tibbs has set checkout to Approved for 107427 on python-kaa-display (Fedora 10) tibbs has set build to Approved for 107427 on python-kaa-display (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-kaa-display From tibbs at fedoraproject.org Sat Jul 11 07:48:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 07:48:58 +0000 (UTC) Subject: rpms/python-kaa-display/devel - New directory Message-ID: <20090711074858.47F8B11C0418@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-kaa-display/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr18480/rpms/python-kaa-display/devel Log Message: Directory /cvs/pkgs/rpms/python-kaa-display/devel added to the repository From pkgdb at fedoraproject.org Sat Jul 11 07:48:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 07:48:52 +0000 Subject: [pkgdb] python-kaa-display (Fedora EPEL, 5) updated by tibbs Message-ID: <20090711074852.2C2FE10F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-kaa-display tibbs has set commit to Approved for 107427 on python-kaa-display (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-kaa-display (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-kaa-display (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-kaa-display From tibbs at fedoraproject.org Sat Jul 11 07:48:58 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 07:48:58 +0000 (UTC) Subject: rpms/python-kaa-display - New directory Message-ID: <20090711074858.2A67411C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-kaa-display In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr18480/rpms/python-kaa-display Log Message: Directory /cvs/pkgs/rpms/python-kaa-display added to the repository From pkgdb at fedoraproject.org Sat Jul 11 07:48:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 07:48:52 +0000 Subject: [pkgdb] python-kaa-display (Fedora EPEL, 5) updated by tibbs Message-ID: <20090711074852.3726510F8AF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-kaa-display tibbs has set commit to Approved for 107427 on python-kaa-display (Fedora 11) tibbs has set checkout to Approved for 107427 on python-kaa-display (Fedora 11) tibbs has set build to Approved for 107427 on python-kaa-display (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-kaa-display From tibbs at fedoraproject.org Sat Jul 11 07:49:03 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 07:49:03 +0000 (UTC) Subject: rpms/python-kaa-display Makefile,NONE,1.1 Message-ID: <20090711074903.B3C9111C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-kaa-display In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr18480/rpms/python-kaa-display Added Files: Makefile Log Message: Setup of module python-kaa-display --- NEW FILE Makefile --- # Top level Makefile for module python-kaa-display all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Sat Jul 11 07:49:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 07:49:04 +0000 (UTC) Subject: rpms/python-kaa-display/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711074904.266EC11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-kaa-display/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsr18480/rpms/python-kaa-display/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-kaa-display --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-kaa-display # $Id: Makefile,v 1.1 2009/07/11 07:49:03 tibbs Exp $ NAME := python-kaa-display SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sat Jul 11 08:13:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:55 +0000 Subject: [pkgdb] erlang-eradius was added for peter Message-ID: <20090711081355.B7A1510F8A5@bastion2.fedora.phx.redhat.com> tibbs has added Package erlang-eradius with summary RADIUS authentication/accounting for erlang apps tibbs has approved Package erlang-eradius tibbs has added a Fedora devel branch for erlang-eradius with an owner of peter tibbs has approved erlang-eradius in Fedora devel tibbs has approved Package erlang-eradius tibbs has set commit to Approved for 107427 on erlang-eradius (Fedora devel) tibbs has set checkout to Approved for 107427 on erlang-eradius (Fedora devel) tibbs has set build to Approved for 107427 on erlang-eradius (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From pkgdb at fedoraproject.org Sat Jul 11 08:13:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:56 +0000 Subject: [pkgdb] erlang-eradius summary updated by tibbs Message-ID: <20090711081357.09E5210F897@bastion2.fedora.phx.redhat.com> tibbs set package erlang-eradius summary to RADIUS authentication/accounting for erlang apps To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From pkgdb at fedoraproject.org Sat Jul 11 08:13:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:56 +0000 Subject: [pkgdb] erlang-eradius (Fedora, 11) updated by tibbs Message-ID: <20090711081357.15F7A10F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for erlang-eradius tibbs has set commit to Approved for 107427 on erlang-eradius (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on erlang-eradius (Fedora EPEL 5) tibbs has set build to Approved for 107427 on erlang-eradius (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From pkgdb at fedoraproject.org Sat Jul 11 08:13:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:56 +0000 Subject: [pkgdb] erlang-eradius (Fedora, 11) updated by tibbs Message-ID: <20090711081357.2B8CB10F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for erlang-eradius tibbs has set commit to Approved for 107427 on erlang-eradius (Fedora 11) tibbs has set checkout to Approved for 107427 on erlang-eradius (Fedora 11) tibbs has set build to Approved for 107427 on erlang-eradius (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From pkgdb at fedoraproject.org Sat Jul 11 08:13:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:56 +0000 Subject: [pkgdb] erlang-eradius (Fedora, 11) updated by tibbs Message-ID: <20090711081357.3B42F10F8AF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for erlang-eradius tibbs has set commit to Approved for 107427 on erlang-eradius (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on erlang-eradius (Fedora EPEL 4) tibbs has set build to Approved for 107427 on erlang-eradius (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From tibbs at fedoraproject.org Sat Jul 11 08:14:03 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 08:14:03 +0000 (UTC) Subject: rpms/erlang-eradius - New directory Message-ID: <20090711081403.2926D11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/erlang-eradius In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU24854/rpms/erlang-eradius Log Message: Directory /cvs/pkgs/rpms/erlang-eradius added to the repository From tibbs at fedoraproject.org Sat Jul 11 08:14:03 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 08:14:03 +0000 (UTC) Subject: rpms/erlang-eradius/devel - New directory Message-ID: <20090711081403.5526F11C0418@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/erlang-eradius/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU24854/rpms/erlang-eradius/devel Log Message: Directory /cvs/pkgs/rpms/erlang-eradius/devel added to the repository From tibbs at fedoraproject.org Sat Jul 11 08:14:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 08:14:08 +0000 (UTC) Subject: rpms/erlang-eradius Makefile,NONE,1.1 Message-ID: <20090711081408.E708111C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/erlang-eradius In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU24854/rpms/erlang-eradius Added Files: Makefile Log Message: Setup of module erlang-eradius --- NEW FILE Makefile --- # Top level Makefile for module erlang-eradius all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Sat Jul 11 08:14:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 08:14:09 +0000 (UTC) Subject: rpms/erlang-eradius/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711081409.3D05411C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/erlang-eradius/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsU24854/rpms/erlang-eradius/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module erlang-eradius --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: erlang-eradius # $Id: Makefile,v 1.1 2009/07/11 08:14:09 tibbs Exp $ NAME := erlang-eradius SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sat Jul 11 08:13:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 08:13:56 +0000 Subject: [pkgdb] erlang-eradius (Fedora, 11) updated by tibbs Message-ID: <20090711081357.4663E10F8B2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for erlang-eradius tibbs has set commit to Approved for 107427 on erlang-eradius (Fedora 10) tibbs has set checkout to Approved for 107427 on erlang-eradius (Fedora 10) tibbs has set build to Approved for 107427 on erlang-eradius (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/erlang-eradius From drago01 at fedoraproject.org Sat Jul 11 08:25:55 2009 From: drago01 at fedoraproject.org (drago01) Date: Sat, 11 Jul 2009 08:25:55 +0000 (UTC) Subject: rpms/compiz/devel compiz-0.8.2-wall.patch, 1.1, 1.2 compiz.spec, 1.171, 1.172 Message-ID: <20090711082555.9CDAC11C00DF@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28677 Modified Files: compiz-0.8.2-wall.patch compiz.spec Log Message: fix build compiz-0.8.2-wall.patch: Index: compiz-0.8.2-wall.patch =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz-0.8.2-wall.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compiz-0.8.2-wall.patch 10 Jul 2009 21:24:50 -0000 1.1 +++ compiz-0.8.2-wall.patch 11 Jul 2009 08:25:55 -0000 1.2 @@ -359,36 +359,40 @@ diff -upNr compiz-0.8.2.orign/metadata/w + + + -diff -upNr compiz-0.8.2.orign/src/Makefile.am compiz-0.8.2/src/Makefile.am ---- compiz-0.8.2.orign/src/Makefile.am 2009-02-15 10:10:23.000000000 +0100 -+++ compiz-0.8.2/src/Makefile.am 2009-07-10 23:09:39.215435000 +0200 -@@ -5,12 +5,13 @@ INCLUDES = \ - -I$(top_builddir)/include \ - -DPLUGINDIR=\"$(plugindir)\" \ - -DIMAGEDIR=\"$(imagedir)\" \ +diff -upNr compiz-0.8.2.orign/plugins/Makefile.am compiz-0.8.2/plugins/Makefile.am +--- compiz-0.8.2.orign/plugins/Makefile.am 2009-02-15 10:10:23.000000000 +0100 ++++ compiz-0.8.2/plugins/Makefile.am 2009-07-11 10:19:29.303832241 +0200 +@@ -74,6 +74,9 @@ libcommands_la_SOURCES = commands.c + libgnomecompat_la_LDFLAGS = -module -avoid-version -no-undefined + libgnomecompat_la_SOURCES = gnomecompat.c + ++libwall_la_LDFLAGS = -module -avoid-version -no-undefined `pkg-config --libs cairo` ++libwall_la_SOURCES = wall.c wall_options.c ++ + if USE_LIBRSVG + libsvg_la_DEPENDENCIES = $(top_builddir)/libdecoration/libdecoration.la + libsvg_la_LDFLAGS = -module -avoid-version -no-undefined +@@ -149,7 +152,8 @@ INCLUDES = \ + -DIMAGEDIR=\"$(imagedir)\" \ + -I$(top_srcdir)/include \ + -I$(top_builddir)/include \ - -DMETADATADIR=\"$(metadatadir)\" -+ -DMETADATADIR=\"$(metadatadir)\" \ ++ -DMETADATADIR=\"$(metadatadir)\" \ + `pkg-config --cflags cairo` - bin_PROGRAMS = compiz + moduledir = $(plugindir) - compiz_LDADD = @COMPIZ_LIBS@ @GL_LIBS@ -lm --compiz_LDFLAGS = -export-dynamic -+compiz_LDFLAGS = -export-dynamic `pkg-config --libs cairo` - compiz_SOURCES = \ - main.c \ - privates.c \ -@@ -29,4 +30,6 @@ compiz_SOURCES = \ - matrix.c \ - cursor.c \ - match.c \ -- metadata.c -+ metadata.c \ -+ wall_options.c \ -+ wall.c -diff -upNr compiz-0.8.2.orign/src/wall.c compiz-0.8.2/src/wall.c ---- compiz-0.8.2.orign/src/wall.c 1970-01-01 01:00:00.000000000 +0100 -+++ compiz-0.8.2/src/wall.c 2009-03-05 04:36:21.000000000 +0100 +@@ -181,6 +185,7 @@ module_LTLIBRARIES = \ + libobs.la \ + libcommands.la \ + libgnomecompat.la \ ++ libwall.la \ + $(libsvg_module) \ + $(libannotate_module) \ + $(libinotify_module) \ +diff -upNr compiz-0.8.2.orign/plugins/wall.c compiz-0.8.2/plugins/wall.c +--- compiz-0.8.2.orign/plugins/wall.c 1970-01-01 01:00:00.000000000 +0100 ++++ compiz-0.8.2/plugins/wall.c 2009-03-05 04:36:21.000000000 +0100 @@ -0,0 +1,2215 @@ +/** + * @@ -2605,9 +2609,9 @@ diff -upNr compiz-0.8.2.orign/src/wall.c +{ + return &wallVTable; +} -diff -upNr compiz-0.8.2.orign/src/wall_options.c compiz-0.8.2/src/wall_options.c ---- compiz-0.8.2.orign/src/wall_options.c 1970-01-01 01:00:00.000000000 +0100 -+++ compiz-0.8.2/src/wall_options.c 2009-07-10 23:02:20.185497000 +0200 +diff -upNr compiz-0.8.2.orign/plugins/wall_options.c compiz-0.8.2/plugins/wall_options.c +--- compiz-0.8.2.orign/plugins/wall_options.c 1970-01-01 01:00:00.000000000 +0100 ++++ compiz-0.8.2/plugins/wall_options.c 2009-07-10 23:02:20.185497000 +0200 @@ -0,0 +1,1936 @@ +/* + * This file is autogenerated with bcop: @@ -4545,9 +4549,9 @@ diff -upNr compiz-0.8.2.orign/src/wall_o + return &wallOptionsVTable; +} + -diff -upNr compiz-0.8.2.orign/src/wall_options.h compiz-0.8.2/src/wall_options.h ---- compiz-0.8.2.orign/src/wall_options.h 1970-01-01 01:00:00.000000000 +0100 -+++ compiz-0.8.2/src/wall_options.h 2009-07-10 23:02:18.076511000 +0200 +diff -upNr compiz-0.8.2.orign/plugins/wall_options.h compiz-0.8.2/plugins/wall_options.h +--- compiz-0.8.2.orign/plugins/wall_options.h 1970-01-01 01:00:00.000000000 +0100 ++++ compiz-0.8.2/plugins/wall_options.h 2009-07-10 23:02:18.076511000 +0200 @@ -0,0 +1,375 @@ +/* + * This file is autogenerated with bcop: Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz.spec,v retrieving revision 1.171 retrieving revision 1.172 diff -u -p -r1.171 -r1.172 --- compiz.spec 10 Jul 2009 21:27:22 -0000 1.171 +++ compiz.spec 11 Jul 2009 08:25:55 -0000 1.172 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.8.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -359,6 +359,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Adel Gadllah - 0.8.2-6 +- Fix build + * Fri Jul 10 2009 Adel Gadllah - 0.8.2-5 - Move wall plugin from fusion to the main compiz package - Drop requires on compiz-fusion-gnome From drago01 at fedoraproject.org Sat Jul 11 08:37:26 2009 From: drago01 at fedoraproject.org (drago01) Date: Sat, 11 Jul 2009 08:37:26 +0000 (UTC) Subject: rpms/compiz/devel compiz-0.8.2-wall.patch,1.2,1.3 Message-ID: <20090711083726.D518911C00DF@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31310 Modified Files: compiz-0.8.2-wall.patch Log Message: fix build compiz-0.8.2-wall.patch: Index: compiz-0.8.2-wall.patch =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz-0.8.2-wall.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- compiz-0.8.2-wall.patch 11 Jul 2009 08:25:55 -0000 1.2 +++ compiz-0.8.2-wall.patch 11 Jul 2009 08:37:25 -0000 1.3 @@ -1,3 +1,14 @@ +diff -upNr compiz-0.8.2.orign/metadata/Makefile.am compiz-0.8.2/metadata/Makefile.am +--- compiz-0.8.2.orign/metadata/Makefile.am 2009-02-15 10:11:43.000000000 +0100 ++++ compiz-0.8.2/metadata/Makefile.am 2009-07-11 10:36:15.265893844 +0200 +@@ -31,6 +31,7 @@ xml_in_files = \ + video.xml.in \ + water.xml.in \ + wobbly.xml.in \ ++ wall.xml.in \ + zoom.xml.in + xml_files = $(xml_in_files:.xml.in=.xml) + xml_DATA = $(xml_files) diff -upNr compiz-0.8.2.orign/metadata/wall.xml.in compiz-0.8.2/metadata/wall.xml.in --- compiz-0.8.2.orign/metadata/wall.xml.in 1970-01-01 01:00:00.000000000 +0100 +++ compiz-0.8.2/metadata/wall.xml.in 2009-03-05 04:36:21.000000000 +0100 From rishi at fedoraproject.org Sat Jul 11 08:52:43 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Sat, 11 Jul 2009 08:52:43 +0000 (UTC) Subject: rpms/glade3/F-11 glade3-3.6.7-desktop.patch, NONE, 1.1 glade3-3.6.7-pkgconfig.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 glade3.spec, 1.26, 1.27 sources, 1.13, 1.14 glade3-3.6.2-desktop.patch, 1.1, NONE glade3-3.6.2-pkgconfig.patch, 1.1, NONE Message-ID: <20090711085243.8BE6F11C00DF@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/glade3/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3194 Modified Files: .cvsignore glade3.spec sources Added Files: glade3-3.6.7-desktop.patch glade3-3.6.7-pkgconfig.patch Removed Files: glade3-3.6.2-desktop.patch glade3-3.6.2-pkgconfig.patch Log Message: * Fri Jul 10 2009 Debarshi Ray - 3.6.7-1 - Version bump to 3.6.7. * Fixed crashes when handling GtkTextView in GtkBuilder format. * Fixed loading and saving of GtkIconSources. * GtkButton only accepts real stock items and GtkImage but not icons. * GNOME Goal: removed deprecated Gtk+ symbols. (GNOME Bugzilla #572756) * Removed buggy query dialog from GtkNotebook creation. (GNOME Bugzilla #578727) * Atk proxy objects should always have unique names. (GNOME Bugzilla #579565) * Removed hard coded size request to palette. (GNOME Bugzilla #579624) * Fixed output format for GtkLabel attributes. (GNOME Bugzilla #579793) * Properly load sizes of fixed/layout children. (GNOME Bugzilla #584334) * Widget names should be unique withing the project. (GNOME Bugzilla #580745) * Dialogs should not disappear on pressing ESC. (GNOME Bugzilla #582559) * Fixed obscure crash when loading a project. (GNOME Bugzilla #585860) * Introspect lowest GTK+ project dependancy when loading files with missing versioning information. (GNOME Bugzilla #586046) * Detect correct modifiers and buttons to spawn a context menu in a platform independant way. (GNOME Bugzilla #587128) * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.news * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.news * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.news * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.news * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.news * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.changes * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.changes * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.changes * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.changes * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.changes glade3-3.6.7-desktop.patch: --- NEW FILE glade3-3.6.7-desktop.patch --- diff -urNp glade3-3.6.7.orig/data/glade-3.desktop.in.in glade3-3.6.7/data/glade-3.desktop.in.in --- glade3-3.6.7.orig/data/glade-3.desktop.in.in 2009-07-11 13:58:25.000000000 +0530 +++ glade3-3.6.7/data/glade-3.desktop.in.in 2009-07-11 13:58:43.000000000 +0530 @@ -1,6 +1,6 @@ [Desktop Entry] Encoding=UTF-8 -_Name=Glade Interface Designer +_Name=Glade-3 Interface Designer _GenericName=User Interface Designer _Comment=Create or open user interface designs for GTK+ applications Exec=glade-3 %F glade3-3.6.7-pkgconfig.patch: --- NEW FILE glade3-3.6.7-pkgconfig.patch --- diff -urNp glade3-3.6.7.orig/data/gladeui-1.0.pc.in glade3-3.6.7/data/gladeui-1.0.pc.in --- glade3-3.6.7.orig/data/gladeui-1.0.pc.in 2009-07-11 13:58:25.000000000 +0530 +++ glade3-3.6.7/data/gladeui-1.0.pc.in 2009-07-11 14:01:36.000000000 +0530 @@ -13,6 +13,6 @@ Name: Glade Description: Glade interface designer library URL: http://glade.gnome.org Version: @PACKAGE_VERSION@ -Requires: gtk+-2.0 >= 2.14.0 libxml-2.0 >= 2.4.0 +Requires: gtk+-2.0 >= 2.14.0 Libs: -L${libdir} -lgladeui-1 Cflags: -I${includedir} Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glade3/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 17 Apr 2009 19:11:50 -0000 1.13 +++ .cvsignore 11 Jul 2009 08:52:42 -0000 1.14 @@ -1 +1 @@ -glade3-3.6.2.tar.gz +glade3-3.6.7.tar.gz Index: glade3.spec =================================================================== RCS file: /cvs/pkgs/rpms/glade3/F-11/glade3.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- glade3.spec 17 Apr 2009 19:11:50 -0000 1.26 +++ glade3.spec 11 Jul 2009 08:52:43 -0000 1.27 @@ -1,6 +1,6 @@ Summary: User Interface Designer for GTK+ and GNOME Name: glade3 -Version: 3.6.2 +Version: 3.6.7 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -16,7 +16,7 @@ Requires: hicolor-icon-theme Requires: %{name}-libgladeui = %{version}-%{release} Requires(post): scrollkeeper Requires(postun): scrollkeeper -BuildRequires: desktop-file-utils +BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: gnome-doc-utils BuildRequires: gtk2-devel >= 2.14.0 @@ -193,6 +193,38 @@ fi %{_includedir}/libgladeui-1.0/gladeui %changelog +* Fri Jul 10 2009 Debarshi Ray - 3.6.7-1 +- Version bump to 3.6.7. + * Fixed crashes when handling GtkTextView in GtkBuilder format. + * Fixed loading and saving of GtkIconSources. + * GtkButton only accepts real stock items and GtkImage but not icons. + * GNOME Goal: removed deprecated Gtk+ symbols. (GNOME Bugzilla #572756) + * Removed buggy query dialog from GtkNotebook creation. (GNOME Bugzilla + #578727) + * Atk proxy objects should always have unique names. (GNOME Bugzilla + #579565) + * Removed hard coded size request to palette. (GNOME Bugzilla #579624) + * Fixed output format for GtkLabel attributes. (GNOME Bugzilla #579793) + * Properly load sizes of fixed/layout children. (GNOME Bugzilla #584334) + * Widget names should be unique withing the project. (GNOME Bugzilla + #580745) + * Dialogs should not disappear on pressing ESC. (GNOME Bugzilla #582559) + * Fixed obscure crash when loading a project. (GNOME Bugzilla #585860) + * Introspect lowest GTK+ project dependancy when loading files with missing + versioning information. (GNOME Bugzilla #586046) + * Detect correct modifiers and buttons to spawn a context menu in a platform + independant way. (GNOME Bugzilla #587128) + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.changes + * Fri Apr 17 2009 Debarshi Ray - 3.6.2-1 - Version bump to 3.6.2. * Fixed missing properties/attributes when serializing a GtkWindow. (GNOME Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glade3/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 17 Apr 2009 19:11:50 -0000 1.13 +++ sources 11 Jul 2009 08:52:43 -0000 1.14 @@ -1 +1 @@ -ac525d7bb0e4064e56f3b0975294f43c glade3-3.6.2.tar.gz +1ff15fcb4f4481c496aa3613804d29b7 glade3-3.6.7.tar.gz --- glade3-3.6.2-desktop.patch DELETED --- --- glade3-3.6.2-pkgconfig.patch DELETED --- From drago01 at fedoraproject.org Sat Jul 11 08:58:45 2009 From: drago01 at fedoraproject.org (drago01) Date: Sat, 11 Jul 2009 08:58:45 +0000 (UTC) Subject: rpms/iw/devel .cvsignore, 1.9, 1.10 iw.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090711085845.91BCE11C00DF@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/iw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4466 Modified Files: .cvsignore iw.spec sources Log Message: update to 0.9.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iw/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 13 May 2009 10:46:19 -0000 1.9 +++ .cvsignore 11 Jul 2009 08:58:14 -0000 1.10 @@ -1 +1 @@ -iw-0.9.14.tar.bz2 +iw-0.9.15.tar.bz2 Index: iw.spec =================================================================== RCS file: /cvs/pkgs/rpms/iw/devel/iw.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- iw.spec 13 May 2009 10:46:19 -0000 1.12 +++ iw.spec 11 Jul 2009 08:58:15 -0000 1.13 @@ -1,5 +1,5 @@ Name: iw -Version: 0.9.14 +Version: 0.9.15 Release: 1%{?dist} Summary: A nl80211 based wireless configuration tool @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Sat Jul 11 2009 Adel Gadllah 0.9.15-1 +- Update to 0.9.15 + * Wed May 13 2009 Adel Gadllah 0.9.14-1 - Update to 0.9.14 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iw/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 13 May 2009 10:46:19 -0000 1.9 +++ sources 11 Jul 2009 08:58:15 -0000 1.10 @@ -1 +1 @@ -b5059cfe86bc7664511b79c159635a8f iw-0.9.14.tar.bz2 +98ba12eceec5a4ae8aa2d51abd56fa14 iw-0.9.15.tar.bz2 From drago01 at fedoraproject.org Sat Jul 11 08:59:35 2009 From: drago01 at fedoraproject.org (drago01) Date: Sat, 11 Jul 2009 08:59:35 +0000 (UTC) Subject: rpms/iw/F-11 .cvsignore, 1.9, 1.10 iw.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090711085935.3D9B711C00DF@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/iw/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4769 Modified Files: .cvsignore iw.spec sources Log Message: update to 0.9.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 May 2009 18:38:30 -0000 1.9 +++ .cvsignore 11 Jul 2009 08:59:04 -0000 1.10 @@ -1 +1 @@ -iw-0.9.14.tar.bz2 +iw-0.9.15.tar.bz2 Index: iw.spec =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-11/iw.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- iw.spec 14 May 2009 18:38:30 -0000 1.12 +++ iw.spec 11 Jul 2009 08:59:04 -0000 1.13 @@ -1,5 +1,5 @@ Name: iw -Version: 0.9.14 +Version: 0.9.15 Release: 1%{?dist} Summary: A nl80211 based wireless configuration tool @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Sat Jul 11 2009 Adel Gadllah 0.9.15-1 +- Update to 0.9.15 + * Wed May 13 2009 Adel Gadllah 0.9.14-1 - Update to 0.9.14 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 May 2009 18:38:30 -0000 1.9 +++ sources 11 Jul 2009 08:59:05 -0000 1.10 @@ -1 +1 @@ -b5059cfe86bc7664511b79c159635a8f iw-0.9.14.tar.bz2 +98ba12eceec5a4ae8aa2d51abd56fa14 iw-0.9.15.tar.bz2 From drago01 at fedoraproject.org Sat Jul 11 09:00:04 2009 From: drago01 at fedoraproject.org (drago01) Date: Sat, 11 Jul 2009 09:00:04 +0000 (UTC) Subject: rpms/iw/F-10 .cvsignore,1.6,1.7 iw.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090711090004.6F96311C00DF@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/iw/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5057 Modified Files: .cvsignore iw.spec sources Log Message: update to 0.9.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 6 Apr 2009 22:55:10 -0000 1.6 +++ .cvsignore 11 Jul 2009 09:00:04 -0000 1.7 @@ -1 +1 @@ -iw-0.9.11.tar.bz2 +iw-0.9.15.tar.bz2 Index: iw.spec =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-10/iw.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- iw.spec 6 Apr 2009 22:55:10 -0000 1.8 +++ iw.spec 11 Jul 2009 09:00:04 -0000 1.9 @@ -1,5 +1,5 @@ Name: iw -Version: 0.9.11 +Version: 0.9.15 Release: 1%{?dist} Summary: A nl80211 based wireless configuration tool @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Sat Jul 11 2009 Adel Gadllah 0.9.15-1 +- Update to 0.9.15 + * Tue Apr 07 2009 Adel Gadllah 0.9.11-1 - Update to 0.9.11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iw/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 6 Apr 2009 22:55:10 -0000 1.6 +++ sources 11 Jul 2009 09:00:04 -0000 1.7 @@ -1 +1 @@ -a8198e7f6bf41ead9e9ade3ec5cae9b2 iw-0.9.11.tar.bz2 +98ba12eceec5a4ae8aa2d51abd56fa14 iw-0.9.15.tar.bz2 From peter at fedoraproject.org Sat Jul 11 09:17:59 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 09:17:59 +0000 (UTC) Subject: rpms/erlang-eradius/devel erlang-eradius.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711091759.7F0AD11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/erlang-eradius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10123/devel Modified Files: .cvsignore sources Added Files: erlang-eradius.spec import.log Log Message: initial commit --- NEW FILE erlang-eradius.spec --- %define debug_package %{nil} %define realname eradius Name: erlang-%{realname} Version: 0 Release: 0.4.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT URL: http://jungerl.sourceforge.net/ # cvs -z3 -d:pserver:anonymous at jungerl.cvs.sourceforge.net:/cvsroot/jungerl export -d eradius -D "2007-06-27" jungerl/lib/eradius # tar cjf eradius.tar.bz2 eradius Source0: eradius.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: erlang Requires: erlang %description RADIUS authentication/accounting for erlang apps. %prep %setup -q -n %{realname} mv src/eradius_server_example.erl test/ chmod 644 MIT_LICENSE chmod 644 src/eradius_server.erl %build erlc -o ebin -I./include src/eradius_dict.erl cd priv && make && cd - erlc -o ebin -I./include src/eradius.erl erlc -o ebin -I./include src/eradius_acc.erl erlc -o ebin -I./include src/eradius_lib.erl erlc -o ebin -I./include src/eradius_server.erl %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/{ebin,include,priv,src} mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionaries install -m 644 ebin/*.beam $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/ebin install -m 644 include/*.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius_lib.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -m 644 priv/dictionary*.map $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc MIT_LICENSE test/*.erl %dir %{_libdir}/erlang/lib/%{realname}-%{version} %dir %{_libdir}/erlang/lib/%{realname}-%{version}/ebin %dir %{_libdir}/erlang/lib/%{realname}-%{version}/include %dir %{_libdir}/erlang/lib/%{realname}-%{version}/priv %{_libdir}/erlang/lib/%{realname}-%{version}/ebin/*.beam %{_libdir}/erlang/lib/%{realname}-%{version}/include/*.hrl %{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionary*.map %changelog * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme * Mon Jul 6 2009 Peter Lemenkov 0-0.3.cvs20070627 - Proper versioning scheme - Added two missing header-files - Fixed permissions for MIT_LICENSE and eradius_server.erl * Tue Apr 21 2009 Peter Lemenkov 0-0.2 - Get rid of unnecessary source files * Wed Mar 25 2009 Peter Lemenkov 0-0.1 - initial build --- NEW FILE import.log --- erlang-eradius-0-0_4_20070627cvs_fc11:HEAD:erlang-eradius-0-0.4.20070627cvs.fc11.src.rpm:1247303825 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 08:14:08 -0000 1.1 +++ .cvsignore 11 Jul 2009 09:17:28 -0000 1.2 @@ -0,0 +1 @@ +eradius.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 08:14:09 -0000 1.1 +++ sources 11 Jul 2009 09:17:28 -0000 1.2 @@ -0,0 +1 @@ +8540f2ff963cf5cd7895f5b69ac7cca9 eradius.tar.bz2 From jussilehtola at fedoraproject.org Sat Jul 11 09:18:55 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 09:18:55 +0000 (UTC) Subject: rpms/octave/EL-5 octave.spec,1.55,1.56 Message-ID: <20090711091855.AAD3111C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10548/EL-5 Modified Files: octave.spec Log Message: Update EL-5 branch to 3.0.5 Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/EL-5/octave.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- octave.spec 2 May 2008 21:08:21 -0000 1.55 +++ octave.spec 11 Jul 2009 09:18:25 -0000 1.56 @@ -2,14 +2,16 @@ %define octave_api api-v32 Name: octave -Version: 3.0.1 -Release: 2%{?dist} +Version: 3.0.5 +Release: 1%{?dist} Summary: A high-level language for numerical computations Epoch: 6 Group: Applications/Engineering License: GPLv3+ Source: ftp://ftp.octave.org/pub/octave/octave-%{version}.tar.bz2 +#Patch1: %{name}-sh-arch.patch +#Patch2: %{name}-gcc44.patch URL: http://www.octave.org Requires: gnuplot less info texinfo Requires(post): /sbin/install-info @@ -18,9 +20,9 @@ Requires(post): /sbin/ldconfig Requires(preun): /sbin/install-info BuildRequires: bison flex less tetex gcc-gfortran lapack-devel blas-devel BuildRequires: ncurses-devel zlib-devel hdf5-devel texinfo qhull-devel -BuildRequires: readline-devel glibc-devel fftw3-devel gperf ghostscript -BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils +BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript BuildRequires: curl-devel pcre-devel +BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils Provides: octave(api) = %{octave_api} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -61,11 +63,16 @@ then exit 1 fi +# patch for sh arch +#%patch1 -p1 -b .sh-arch +# patch for gcc 4.4 +#%patch2 -p1 -b .gcc44 %build %define enable64 no +export CPPFLAGS="-DH5_USE_16_API" %configure --enable-shared --disable-static --enable-64=%enable64 --with-f77=gfortran -make %{?_smp_mflags} OCTAVE_RELEASE="EPEL %{version}-%{release}" +make %{?_smp_mflags} OCTAVE_RELEASE="Fedora %{version}-%{release}" %install @@ -140,19 +147,77 @@ fi %changelog -* Fri May 2 2008 Quentin Spencer 3.0.1-2 -- Rebuild for updated suitesparse library. +* Sun Apr 12 2009 Rakesh Pandit - 6:3.0.5-1 +- Updated to latest upstream (3.0.5) + +* Mon Feb 23 2009 Alex Lancaster - 6:3.0.3-2 +- Add patches from upstream for compiling against GCC 4.4 + http://hg.savannah.gnu.org/hgweb/octave/rev/93cf10950334 + http://hg.tw-math.de/release-3-0-x/rev/712d9e045b1e + +* Wed Dec 10 2008 Alex Lancaster - 6:3.0.3-1 +- Update to latest upstream (3.0.3) + +* Thu Oct 23 2008 Rakesh Pandit 6:3.0.2-2 +- patch for sh arch: it adds '-little' flag + +* Mon Sep 8 2008 Orion Poplawski 6:3.0.2-1 +- Update to 3.0.2 + +* Mon Apr 21 2008 Quentin Spencer 6:3.0.1-1 +- New release of octave. Remove gcc 4.3 patch. + +* Mon Mar 3 2008 Alex Lancaster - 6:3.0.0-6 +- Re-enable patch, but change cstring -> string.h so it works for C as + well as C++. Hopefully this will #435600 for real. + +* Sun Mar 2 2008 Alex Lancaster - 6:3.0.0-5 +- Backout GCC 4.3 patch temporarily, causes trouble for octave-forge and + may not be necessary (#435600) + +* Fri Feb 29 2008 Orion Poplawski 3.0.0-4 +- Rebuild for hdf5 1.8.0 using compatability API define +- Add gcc43 patch -* Wed Apr 30 2008 Quentin Spencer 3.0.1-1 -- New release of octave. +* Tue Feb 19 2008 Fedora Release Engineering - 6:3.0.0-3 +- Autorebuild for GCC 4.3 * Wed Jan 9 2008 Quentin Spencer 3.0.0-2 - Add curl-devel and pcre-devel as build dependencies. Closes bug 302231. -* Thu Jan 3 2008 Quentin Spencer 3.0.0-1 +* Fri Dec 21 2007 Quentin Spencer 3.0.0-1 - Update to 3.0.0. + +* Wed Dec 12 2007 Quentin Spencer 2.9.19-1 +- Update to 2.9.19 and update octave_api. + +* Wed Dec 5 2007 Quentin Spencer 2.9.18-1 +- Update to 2.9.18 and update octave_api. + +* Wed Nov 28 2007 Quentin Spencer 2.9.17-1 +- Update to 2.9.17 and update octave_api. + +* Mon Nov 5 2007 Quentin Spencer 2.9.16-1 +- Update to 2.9.16, remove old patch. +- Update licencse from GPLv2+ to GPLv3+. +- Detection of glpk no longer needs special CPPFLAGS. + +* Tue Oct 16 2007 Orion Poplawski 2.9.15-2 +- Updated pkg.m patch + +* Mon Oct 15 2007 Quentin Spencer 2.9.15-1 +- New release. Remove old patch. + +* Tue Sep 25 2007 Orion Poplawski 2.9.14-2 +- Add /usr/share/octave/packages for add on packages and %%ghost + /usr/share/octave/octave_packages +- Add patch for octave package manager that will be going upstream + +* Tue Sep 18 2007 Quentin Spencer 2.9.14-1 +- New release. +- Remove redundant menu category in desktop file (bug 274431). - Update license tag. -- Port other spec file changes from devel branch. +- Add qhull-devel as new build dependency. * Thu Jul 26 2007 Quentin Spencer 2.9.13-1 - New release. @@ -160,7 +225,6 @@ fi - Add configure flag to close bug 245562. - Add directories for add-on packages (bug 234012). - Since texinfo is now separate from tetex, it is a build requirement. -- In EPEL, fftw is called fftw3. * Wed May 23 2007 Quentin Spencer 2.9.12-1 - New release. @@ -442,73 +506,73 @@ does not exist. * Sat Aug 10 2002 Elliot Lee - rebuilt with gcc-3.2 (we hope) -* Mon Aug 5 2002 Trond Eivind Glomsr?d 2.1.36-7 +* Mon Aug 5 2002 Trond Eivind Glomsr??d 2.1.36-7 - Rebuild -* Tue Jul 23 2002 Trond Eivind Glomsr?d 2.1.36-6 +* Tue Jul 23 2002 Trond Eivind Glomsr??d 2.1.36-6 - Rebuild -* Thu Jul 11 2002 Trond Eivind Glomsr?d +* Thu Jul 11 2002 Trond Eivind Glomsr??d - Rebuild with new readline * Fri Jun 21 2002 Tim Powers - automated rebuild -* Fri Jun 14 2002 Trond Eivind Glomsr?d 2.1.36-3 +* Fri Jun 14 2002 Trond Eivind Glomsr??d 2.1.36-3 - Get rid of 0 size doc files (#66116) -* Thu May 23 2002 Trond Eivind Glomsr?d 2.1.36-2 +* Thu May 23 2002 Trond Eivind Glomsr??d 2.1.36-2 - Rebuild - Patch C++ code gcc changed its opinion of the last 3 weeks -* Wed May 1 2002 Trond Eivind Glomsr?d 2.1.36-1 +* Wed May 1 2002 Trond Eivind Glomsr??d 2.1.36-1 - 2.1.36 - Disable patch -* Wed Feb 27 2002 Trond Eivind Glomsr?d 2.1.35-4 +* Wed Feb 27 2002 Trond Eivind Glomsr??d 2.1.35-4 - Rebuild * Wed Jan 09 2002 Tim Powers - automated rebuild -* Tue Nov 27 2001 Trond Eivind Glomsr?d 2.1.35-2 +* Tue Nov 27 2001 Trond Eivind Glomsr??d 2.1.35-2 - Add patch for kpathsea to avoid segfaults -* Tue Nov 6 2001 Trond Eivind Glomsr?d 2.1.35-1 +* Tue Nov 6 2001 Trond Eivind Glomsr??d 2.1.35-1 - 2.1.35 - s/Copyright/License/ * Wed Sep 12 2001 Tim Powers - rebuild with new gcc and binutils -* Wed Jun 20 2001 Trond Eivind Glomsr?d +* Wed Jun 20 2001 Trond Eivind Glomsr??d - Add more dependencies in BuildPrereq (#45184) -* Fri Jun 08 2001 Trond Eivind Glomsr?d +* Fri Jun 08 2001 Trond Eivind Glomsr??d - No longer exclude ia64 -* Mon Apr 23 2001 Trond Eivind Glomsr?d +* Mon Apr 23 2001 Trond Eivind Glomsr??d - 2.1.34 -* Tue Mar 27 2001 Trond Eivind Glomsr?d +* Tue Mar 27 2001 Trond Eivind Glomsr??d - set LC_ALL to POSIX before building, otherwise the generated paths.h is bad -* Wed Jan 10 2001 Trond Eivind Glomsr?d +* Wed Jan 10 2001 Trond Eivind Glomsr??d - 2.1.33 * Mon Jan 08 2001 Florian La Roche - do not require compat-egcs-c++, but gcc-c++ - add some libtoolize calls to add newest versions -* Fri Dec 15 2000 Trond Eivind Glomsr?d +* Fri Dec 15 2000 Trond Eivind Glomsr??d - 2.1.32, no longer use CVS as our needed fixes are in now - add Prereq for info -* Thu Dec 07 2000 Trond Eivind Glomsr?d +* Thu Dec 07 2000 Trond Eivind Glomsr??d - use a development version, as they have now been fixed to compile with the our current toolchain. -* Thu Aug 24 2000 Trond Eivind Glomsr?d +* Thu Aug 24 2000 Trond Eivind Glomsr??d - 2.0.16, with compat C++ compiler and new C and f77 compilers The C++ code is too broken for our new toolchain (C++ reserved words used as enums and function names, arcane macros), but @@ -518,13 +582,13 @@ does not exist. * Tue Jul 25 2000 Jakub Jelinek - make sure #line commands are not output within macro arguments -* Wed Jul 19 2000 Trond Eivind Glomsr?d +* Wed Jul 19 2000 Trond Eivind Glomsr??d - 2.1.31 * Wed Jul 12 2000 Prospector - automatic rebuild -* Thu Jul 06 2000 Trond Eivind Glomsr?d +* Thu Jul 06 2000 Trond Eivind Glomsr??d - no longer disable optimizations, sparc excepted * Tue Jul 4 2000 Jakub Jelinek @@ -533,21 +597,21 @@ does not exist. * Mon Jul 3 2000 Matt Wilson - added missing %% before {_infodir} in the %%post -* Sat Jun 09 2000 Trond Eivind Glomsr?d +* Sat Jun 09 2000 Trond Eivind Glomsr??d - 2.1.30 - the old version contains invalid C++ code accepted by older compilers. -* Sat Jun 09 2000 Trond Eivind Glomsr?d +* Sat Jun 09 2000 Trond Eivind Glomsr??d - disable optimization for C++ code -* Fri Jun 08 2000 Trond Eivind Glomsr?d +* Fri Jun 08 2000 Trond Eivind Glomsr??d - add "Excludearch: " for Alpha - it triggers compiler bugs -* Fri Jun 08 2000 Trond Eivind Glomsr?d +* Fri Jun 08 2000 Trond Eivind Glomsr??d - use %%configure, %%makeinstall, %{_infodir}. %{_mandir} - remove prefix -* Tue May 09 2000 Trond Eivind Glomsr?d +* Tue May 09 2000 Trond Eivind Glomsr??d - upgraded to 2.0.16 - removed "--enable-g77" from the configure flags - let autoconf find it From peter at fedoraproject.org Sat Jul 11 09:20:03 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 09:20:03 +0000 (UTC) Subject: rpms/erlang-eradius/F-11 erlang-eradius.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711092003.9E81111C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/erlang-eradius/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11097/F-11 Modified Files: .cvsignore sources Added Files: erlang-eradius.spec import.log Log Message: initial commit --- NEW FILE erlang-eradius.spec --- %define debug_package %{nil} %define realname eradius Name: erlang-%{realname} Version: 0 Release: 0.4.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT URL: http://jungerl.sourceforge.net/ # cvs -z3 -d:pserver:anonymous at jungerl.cvs.sourceforge.net:/cvsroot/jungerl export -d eradius -D "2007-06-27" jungerl/lib/eradius # tar cjf eradius.tar.bz2 eradius Source0: eradius.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: erlang Requires: erlang %description RADIUS authentication/accounting for erlang apps. %prep %setup -q -n %{realname} mv src/eradius_server_example.erl test/ chmod 644 MIT_LICENSE chmod 644 src/eradius_server.erl %build erlc -o ebin -I./include src/eradius_dict.erl cd priv && make && cd - erlc -o ebin -I./include src/eradius.erl erlc -o ebin -I./include src/eradius_acc.erl erlc -o ebin -I./include src/eradius_lib.erl erlc -o ebin -I./include src/eradius_server.erl %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/{ebin,include,priv,src} mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionaries install -m 644 ebin/*.beam $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/ebin install -m 644 include/*.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius_lib.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -m 644 priv/dictionary*.map $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc MIT_LICENSE test/*.erl %dir %{_libdir}/erlang/lib/%{realname}-%{version} %dir %{_libdir}/erlang/lib/%{realname}-%{version}/ebin %dir %{_libdir}/erlang/lib/%{realname}-%{version}/include %dir %{_libdir}/erlang/lib/%{realname}-%{version}/priv %{_libdir}/erlang/lib/%{realname}-%{version}/ebin/*.beam %{_libdir}/erlang/lib/%{realname}-%{version}/include/*.hrl %{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionary*.map %changelog * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme * Mon Jul 6 2009 Peter Lemenkov 0-0.3.cvs20070627 - Proper versioning scheme - Added two missing header-files - Fixed permissions for MIT_LICENSE and eradius_server.erl * Tue Apr 21 2009 Peter Lemenkov 0-0.2 - Get rid of unnecessary source files * Wed Mar 25 2009 Peter Lemenkov 0-0.1 - initial build --- NEW FILE import.log --- erlang-eradius-0-0_4_20070627cvs_fc11:F-11:erlang-eradius-0-0.4.20070627cvs.fc11.src.rpm:1247303950 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 08:14:08 -0000 1.1 +++ .cvsignore 11 Jul 2009 09:19:33 -0000 1.2 @@ -0,0 +1 @@ +eradius.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 08:14:09 -0000 1.1 +++ sources 11 Jul 2009 09:19:33 -0000 1.2 @@ -0,0 +1 @@ +8540f2ff963cf5cd7895f5b69ac7cca9 eradius.tar.bz2 From jussilehtola at fedoraproject.org Sat Jul 11 09:21:45 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 09:21:45 +0000 (UTC) Subject: rpms/octave/EL-5 sources,1.15,1.16 Message-ID: <20090711092145.68D5111C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11845/EL-5 Modified Files: sources Log Message: Update EL-5 branch. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/octave/EL-5/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 30 Apr 2008 13:29:42 -0000 1.15 +++ sources 11 Jul 2009 09:21:15 -0000 1.16 @@ -1 +1 @@ -230f3895a42386ec625bf2593a44c441 octave-3.0.1.tar.bz2 +bfba44eeda8fa6e29c2bbcd2604c34eb octave-3.0.5.tar.bz2 From jussilehtola at fedoraproject.org Sat Jul 11 09:22:00 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 09:22:00 +0000 (UTC) Subject: rpms/octave-forge/EL-5 octave-forge.spec, 1.33, 1.34 sources, 1.10, 1.11 Message-ID: <20090711092200.4C44511C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave-forge/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11979/EL-5 Modified Files: octave-forge.spec sources Log Message: Updated EL-5 branch. Index: octave-forge.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave-forge/EL-5/octave-forge.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- octave-forge.spec 10 Jan 2008 14:27:39 -0000 1.33 +++ octave-forge.spec 11 Jul 2009 09:21:30 -0000 1.34 @@ -1,8 +1,8 @@ %{!?octave_api: %define octave_api %(octave-config -p API_VERSION || echo 0)} Name: octave-forge -Version: 20071212 -Release: 6%{?dist} +Version: 20080831 +Release: 9%{?dist} Summary: Contributed functions for octave Group: Applications/Engineering @@ -17,71 +17,83 @@ URL: http://octave.sourceforg ## tar czf octave-forge-bundle-%{version}.patched.tar.gz octave-forge-bundle-%{version} ## rm -Rf octave-forge-bundle-%{version} Source0: %{name}-bundle-%{version}.patched.tar.gz -buIldRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: %{name}-image-1.0.8-build.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: octave(api) = %{octave_api} ImageMagick BuildRequires: octave-devel >= 6:3.0.0-1 -BuildRequires: tetex gcc-gfortran ginac-devel qhull-devel +BuildRequires: tetex gcc-gfortran ginac-devel BuildRequires: ImageMagick-c++-devel libnc-dap-devel pcre-devel gsl-devel -BuildRequires: libjpeg-devel libpng-devel ncurses-devel -BuildRequires: openssl-devel java-devel dos2unix -Provides: octave-audio = 1.0.2 -Provides: octave-combinatorics = 1.0.3 -Provides: octave-communications = 1.0.3 -Provides: octave-control = 1.0.2 -Provides: octave-econometrics = 1.0.3 -Provides: octave-fixed = 0.7.3 -Provides: octave-general = 1.0.3 -Provides: octave-gsl = 1.0.2 -Provides: octave-ident = 1.0.2 -Provides: octave-image = 1.0.3 -Provides: octave-informationtheory = 0.1.2 -Provides: octave-io = 1.0.3 -Provides: octave-irsa = 1.0.2 -Provides: octave-linear-algebra = 1.0.2 -Provides: octave-miscellaneous = 1.0.3 -Provides: octave-nnet = 0.1.4 -Provides: octave-octcdf = 1.0.6 -Provides: octave-odebvp = 1.0.1 -Provides: octave-odepkg = 0.3.3 -Provides: octave-optim = 1.0.0 -Provides: octave-optiminterp = 0.2.4 -Provides: octave-outliers = 0.13.4 -%ifnarch x86_64 ppc64 -Provides: octave-parallel = 1.0.3 -%endif -Provides: octave-physicalconstants = 0.1.2 -Provides: octave-plot = 1.0.2 -Provides: octave-signal = 1.0.4 -Provides: octave-sockets = 1.0.2 -Provides: octave-specfun = 1.0.3 -Provides: octave-special-matrix = 1.0.2 -Provides: octave-splines = 1.0.2 -Provides: octave-statistics = 1.0.3 -Provides: octave-strings = 1.0.2 -Provides: octave-struct = 1.0.2 -Provides: octave-symbolic = 1.0.3 -Provides: octave-time = 1.0.2 -Provides: octave-vrml = 1.0.3 -Provides: octave-zenity = 0.5.2 -Provides: octave-bim = 0.0.2 -Provides: octave-civil-engineering = 1.0.2 -Provides: octave-fpl = 0.0.2 -Provides: octave-graceplot = 1.0.2 -Provides: octave-integration = 1.0.2 -Provides: octave-java = 1.2.1 -Provides: octave-mapping = 1.0.2 -Provides: octave-msh = 0.0.2 -Provides: octave-nan = 1.0.2 -Provides: octave-pdb = 1.0.2 -Provides: octave-secs1d = 0.0.3 -Provides: octave-secs2d = 0.0.3 -Provides: octave-symband = 1.0.3 -Provides: octave-tcl-octave = 0.1.3 -Provides: octave-triangular = 1.0.1 -Provides: octave-tsa = 3.10.3 -Provides: octave-xraylib = 1.0.3 -Provides: octave-language-pt_br = 1.0.3 +BuildRequires: libjpeg-devel libpng-devel ncurses-devel ftplib-devel +BuildRequires: openssl-devel java-devel-gcj +Provides: octave-ann = 1.0.1 +Provides: octave-audio = 1.1.2 +Provides: octave-benchmark = 1.0.0 +Provides: octave-bioinfo = 0.1.1 +Provides: octave-combinatorics = 1.0.7 +Provides: octave-communications = 1.0.8 +Provides: octave-control = 1.0.7 +Provides: octave-data-smoothing = 1.1.1 +Provides: octave-econometrics = 1.0.7 +Provides: octave-financial = 0.3.0 +Provides: octave-fixed = 0.7.8 +Provides: octave-ftp = 1.0.1 +Provides: octave-ga = 0.9.4 +Provides: octave-general = 1.0.7 +Provides: octave-gsl = 1.0.7 +Provides: octave-ident = 1.0.6 +Provides: octave-image = 1.0.8 +Provides: octave-informationtheory = 0.1.6 +Provides: octave-io = 1.0.7 +Provides: octave-irsa = 1.0.6 +Provides: octave-linear-algebra = 1.0.6 +Provides: octave-miscellaneous = 1.0.7 +Provides: octave-missing-functions = 1.0.1 +Provides: octave-nnet = 0.1.8 +Provides: octave-octcdf = 1.0.11 +Provides: octave-octgpr = 1.1.4 +Provides: octave-odebvp = 1.0.5 +Provides: octave-odepkg = 0.6.4 +Provides: octave-optim = 1.0.4 +Provides: octave-optiminterp = 0.3.1 +Provides: octave-outliers = 0.13.8 +Provides: octave-parallel = 1.0.7 +Provides: octave-physicalconstants = 0.1.6 +Provides: octave-plot = 1.0.6 +Provides: octave-signal = 1.0.8 +Provides: octave-sockets = 1.0.5 +Provides: octave-specfun = 1.0.7 +Provides: octave-special-matrix = 1.0.6 +Provides: octave-splines = 1.0.6 +Provides: octave-statistics = 1.0.7 +Provides: octave-strings = 1.0.6 +Provides: octave-struct = 1.0.6 +Provides: octave-symbolic = 1.0.7 +Provides: octave-time = 1.0.8 +Provides: octave-vrml = 1.0.8 +Provides: octave-zenity = 0.5.6 +Provides: octave-ad = 1.0.4 +Provides: octave-bim = 0.0.7 +Provides: octave-civil-engineering = 1.0.6 +Provides: octave-fpl = 0.1.3 +Provides: octave-graceplot = 1.0.6 +Provides: octave-integration = 1.0.6 +Provides: octave-java = 1.2.5 +Provides: octave-mapping = 1.0.6 +Provides: octave-msh = 0.0.7 +Provides: octave-multicore = 0.2.13 +Provides: octave-nan = 1.0.7 +Provides: octave-nlwing2 = 1.0.1 +Provides: octave-ocs = 0.0.2 +Provides: octave-pdb = 1.0.6 +Provides: octave-secs1d = 0.0.7 +Provides: octave-secs2d = 0.0.7 +Provides: octave-symband = 1.0.8 +Provides: octave-tcl-octave = 0.1.7 +Provides: octave-tsa = 4.0.0 +Provides: octave-xraylib = 1.0.7 +Provides: octave-pt_br = 1.0.7 + %description Octave-forge is a community project for collaborative development of @@ -93,18 +105,18 @@ optimization, statistics, and symbolic m %prep %setup -q -n octave-forge-bundle-%{version} -#Not 64-bit safe -%ifarch x86_64 ppc64 -rm main/parallel-*.tar.gz -%endif -#Don't install engine - not a real octave package +# The scripts below will build everything automatically, so first +# remove some packages that we don't want to build: +# 1. video stuff requires non-free libraries +rm main/video-*.tar.gz +# 2. engine is not a real octave package rm extra/engine-*.tar.gz -#Can't handle jhandles yet +# 3. jhandles depends on jogl, which is forbidden from Fedora rm extra/jhandles-*.tar.gz -#Not MacOSX -rm extra/macosx-*.tar.gz -#Not Windows +# 4. other OS stuff rm extra/windows-*.tar.gz +# 5. exclude database stuff--it should be in its own package +rm main/database-*.tar.gz #Unpack everything for pkg in main extra language @@ -120,21 +132,12 @@ do cd .. done -# edit.m is now in octave -rm main/miscellaneous-1.0.4/inst/edit.m - -#Cleanup some CVS directories -find -name CVS | xargs rm -rf +#apply patch to build image-1.0.8 (bug #477577) +%patch0 -p0 #Install with -nodeps sed -i -e "s/pkg('install',/pkg('install','-nodeps',/" */*/Makefile -#Fix permissions -find -name COPYING -o -name INDEX -o -name DESCRIPTION -o -name \*.m | xargs chmod -x - -#Fix line endings -find -name \*.m | xargs dos2unix - %build #Prevents escape sequence from being inserted into octave version string @@ -185,13 +188,6 @@ do cd .. done -#Move aurecord to arch-dependent dir -archdir=%{_libexecdir}/octave/packages/`octave-config -p CANONICAL_HOST_TYPE`-%{octave_api} -audiover=`basename $RPM_BUILD_ROOT%{_datadir}/octave/packages/audio-*` -mkdir -p $RPM_BUILD_ROOT${archdir}/${audiover} -mv $RPM_BUILD_ROOT%{_datadir}/octave/packages/${audiover}/bin \ - $RPM_BUILD_ROOT${archdir}/${audiover}/ - %clean rm -rf $RPM_BUILD_ROOT @@ -206,16 +202,115 @@ octave -q -H --no-site-file --eval "pkg( %files %defattr(-,root,root,-) -%{_datadir}/octave/packages/* -%{_libexecdir}/octave/packages/* +%{_datadir}/octave/packages/ +%{_libexecdir}/octave/packages/ %changelog -* Thu Jan 10 2008 Quentin Spencer 20071212-6 -- Port 20071212 changes from devel branch for compatibility with octave 3.0.0. +* Thu Jul 9 2009 Alex Lancaster - 20080831-9 +- Rebuild for dependencies + +* Sat Mar 28 2009 Alex Lancaster - 20080831-8 +- Rebuild for new ginac. + +* Tue Mar 10 2009 Alex Lancaster - 20080831-7 +- Fix BuildRequires to specifically request GCJ version of Java. + +* Tue Mar 10 2009 Rakesh Pandit - 20080831-6 +- Bumped to consume the soname update in ImageMagic. + +* Tue Feb 24 2009 Alex Lancaster - 20080831-5 +- Rebuild against new hdf5 and for GCC 4.4. + +* Mon Jan 5 2009 Alex Lancaster - 20080831-4 +- Patch to temporarily get image subpackage to build (#477577) + +* Sun Jan 04 2009 Rakesh Pandit 20080831-3 +- Fixed unowned directories (BZ 474675) + +* Thu Sep 11 2008 Orion Poplawski 20080831-2 +- Rebuild for new libdap + +* Mon Sep 8 2008 Orion Poplawski 20080831-1 +- Update to 20080831 +- Drop upstreamed patches +- Enable octave-parallel for 64-bit platforms + +* Fri May 2 2008 Quentin Spencer 20080429-6 +- Add patch for new ImageMagick. + +* Thu May 1 2008 Quentin Spencer 20080429-5 +- Modify the patch to fix compile flags in a subpackage. + +* Thu May 1 2008 Quentin Spencer 20080429-4 +- Extend the gcc 4.3 patch to more files. + +* Thu May 1 2008 Quentin Spencer 20080429-3 +- Fix the gcc 4.3 patch. + +* Thu May 1 2008 Quentin Spencer 20080429-2 +- Patch so it will compile with gcc 4.3. + +* Wed Apr 30 2008 Quentin Spencer 20080429-1 +- New release. +- Add ftplib-devel as dependency. +- Remove obsolete dependencies and obsolete build steps. + +* Thu Feb 28 2008 Alex Lancaster - 20071212-8 +- Rebuild for cln soname bump + +* Tue Feb 19 2008 Fedora Release Engineering - 20071212-7 +- Autorebuild for GCC 4.3 + +* Wed Jan 2 2008 Quentin Spencer 20071212-6 +- Rebuild for libdap API change. + +* Wed Dec 26 2007 Quentin Spencer 20071212-5 +- Rebuild for octave 3.0.0. Remove edit.m because it's now in octave. + +* Thu Dec 20 2007 Quentin Spencer 20071212-4 +- I give up. Disable parallel build. + +* Thu Dec 20 2007 Quentin Spencer 20071212-3 +- Try the patch again. + +* Thu Dec 20 2007 Quentin Spencer 20071212-2 +- Add patch to fix parallel build of odepkg and optiminterp (again). + +* Wed Dec 12 2007 Quentin Spencer 20071212-1 +- New release. Remove old patches that are now in sources. +- Update package description (some functions mentioned are now in octave). + +* Wed Dec 5 2007 Quentin Spencer 20071014-5 +- Rebuild for new octave + +* Sat Dec 1 2007 Alex Lancaster 20071014-4 +- Rebuild for new octave + +* Wed Nov 7 2007 Quentin Spencer 20071014-3 +- Add new patch to listen.cc for compatibility with octave-2.9.16 + +* Tue Oct 16 2007 Orion Poplawski 20071014-2 +- Add patch to fix parallel build of odepkg and optiminterp + +* Tue Oct 16 2007 Orion Poplawski 20071014-1 +- Rewrite to handle new "bundle" method to releasing packages and + new octave package manager +- Prepare for eventual splitting of the package with provides + +* Mon Sep 24 2007 Jesse Keating - 2006.07.09-10 +- Rebuild for new octave + +* Tue Feb 20 2007 Quentin Spencer 2006.07.09-9 +- Remove libtermcap-devel as build dependency (Bug 226768). +- Change octave version dependency to octave(api) dependency, + which is now provided by the octave package. + +* Mon Nov 06 2006 Jindrich Novy 2006.07.09-8 +- rebuild against the new curl * Thu Oct 05 2006 Christian Iseli 2006.07.09-7 -- rebuilt for unwind info generation, broken in gcc-4.1.1-21 + - rebuilt for unwind info generation, broken in gcc-4.1.1-21 * Sat Sep 23 2006 Quentin Spencer 2006.07.09-6 - Rebuild for updated libdap. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/octave-forge/EL-5/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 10 Jan 2008 14:27:39 -0000 1.10 +++ sources 11 Jul 2009 09:21:30 -0000 1.11 @@ -1 +1 @@ -686616f713a92171bc4902f76f0c58e2 octave-forge-bundle-20071212.patched.tar.gz +5df8ff572c9b990e404ba94a6724c898 octave-forge-bundle-20080831.patched.tar.gz From peter at fedoraproject.org Sat Jul 11 09:22:22 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 09:22:22 +0000 (UTC) Subject: rpms/erlang-eradius/F-10 erlang-eradius.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711092222.DAB8311C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/erlang-eradius/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12145/F-10 Modified Files: .cvsignore sources Added Files: erlang-eradius.spec import.log Log Message: initial commit --- NEW FILE erlang-eradius.spec --- %define debug_package %{nil} %define realname eradius Name: erlang-%{realname} Version: 0 Release: 0.4.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT URL: http://jungerl.sourceforge.net/ # cvs -z3 -d:pserver:anonymous at jungerl.cvs.sourceforge.net:/cvsroot/jungerl export -d eradius -D "2007-06-27" jungerl/lib/eradius # tar cjf eradius.tar.bz2 eradius Source0: eradius.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: erlang Requires: erlang %description RADIUS authentication/accounting for erlang apps. %prep %setup -q -n %{realname} mv src/eradius_server_example.erl test/ chmod 644 MIT_LICENSE chmod 644 src/eradius_server.erl %build erlc -o ebin -I./include src/eradius_dict.erl cd priv && make && cd - erlc -o ebin -I./include src/eradius.erl erlc -o ebin -I./include src/eradius_acc.erl erlc -o ebin -I./include src/eradius_lib.erl erlc -o ebin -I./include src/eradius_server.erl %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/{ebin,include,priv,src} mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionaries install -m 644 ebin/*.beam $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/ebin install -m 644 include/*.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius_lib.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -m 644 priv/dictionary*.map $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc MIT_LICENSE test/*.erl %dir %{_libdir}/erlang/lib/%{realname}-%{version} %dir %{_libdir}/erlang/lib/%{realname}-%{version}/ebin %dir %{_libdir}/erlang/lib/%{realname}-%{version}/include %dir %{_libdir}/erlang/lib/%{realname}-%{version}/priv %{_libdir}/erlang/lib/%{realname}-%{version}/ebin/*.beam %{_libdir}/erlang/lib/%{realname}-%{version}/include/*.hrl %{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionary*.map %changelog * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme * Mon Jul 6 2009 Peter Lemenkov 0-0.3.cvs20070627 - Proper versioning scheme - Added two missing header-files - Fixed permissions for MIT_LICENSE and eradius_server.erl * Tue Apr 21 2009 Peter Lemenkov 0-0.2 - Get rid of unnecessary source files * Wed Mar 25 2009 Peter Lemenkov 0-0.1 - initial build --- NEW FILE import.log --- erlang-eradius-0-0_4_20070627cvs_fc11:F-10:erlang-eradius-0-0.4.20070627cvs.fc11.src.rpm:1247304087 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 08:14:08 -0000 1.1 +++ .cvsignore 11 Jul 2009 09:21:52 -0000 1.2 @@ -0,0 +1 @@ +eradius.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 08:14:09 -0000 1.1 +++ sources 11 Jul 2009 09:21:52 -0000 1.2 @@ -0,0 +1 @@ +8540f2ff963cf5cd7895f5b69ac7cca9 eradius.tar.bz2 From jussilehtola at fedoraproject.org Sat Jul 11 09:28:06 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 09:28:06 +0000 (UTC) Subject: rpms/octave-forge/EL-5 octave-forge-image-1.0.8-build.patch, NONE, 1.1 Message-ID: <20090711092806.87AA811C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave-forge/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14495/EL-5 Added Files: octave-forge-image-1.0.8-build.patch Log Message: Put missing patch to EL-5 branch. octave-forge-image-1.0.8-build.patch: --- NEW FILE octave-forge-image-1.0.8-build.patch --- --- main/image-1.0.8/src/Makefile.orig 2009-01-05 00:27:11.000000000 -0700 +++ main/image-1.0.8/src/Makefile 2009-01-05 00:32:41.000000000 -0700 @@ -30,6 +30,6 @@ $(MKOCTFILE) $< -lpng __magick_read__.oct: __magick_read__.cc - $(MKOCTFILE) $< `Magick++-config --cppflags` `Magick++-config --ldflags` + $(MKOCTFILE) $< `for i in $$(Magick++-config --cppflags); do echo -Wp,$${i}; done` `for l in $$(Magick++-config --ldflags); do echo -Wl,$${l}; done` clean: ; -$(RM) *.o octave-core core *.oct *~ From peter at fedoraproject.org Sat Jul 11 09:32:35 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 09:32:35 +0000 (UTC) Subject: rpms/erlang-eradius/EL-5 erlang-eradius.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711093235.1683C11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/erlang-eradius/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15504/EL-5 Modified Files: .cvsignore sources Added Files: erlang-eradius.spec import.log Log Message: initial commit --- NEW FILE erlang-eradius.spec --- %define debug_package %{nil} %define realname eradius Name: erlang-%{realname} Version: 0 Release: 0.4.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT URL: http://jungerl.sourceforge.net/ # cvs -z3 -d:pserver:anonymous at jungerl.cvs.sourceforge.net:/cvsroot/jungerl export -d eradius -D "2007-06-27" jungerl/lib/eradius # tar cjf eradius.tar.bz2 eradius Source0: eradius.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: erlang Requires: erlang %description RADIUS authentication/accounting for erlang apps. %prep %setup -q -n %{realname} mv src/eradius_server_example.erl test/ chmod 644 MIT_LICENSE chmod 644 src/eradius_server.erl %build erlc -o ebin -I./include src/eradius_dict.erl cd priv && make && cd - erlc -o ebin -I./include src/eradius.erl erlc -o ebin -I./include src/eradius_acc.erl erlc -o ebin -I./include src/eradius_lib.erl erlc -o ebin -I./include src/eradius_server.erl %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/{ebin,include,priv,src} mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionaries install -m 644 ebin/*.beam $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/ebin install -m 644 include/*.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius_lib.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -m 644 priv/dictionary*.map $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc MIT_LICENSE test/*.erl %dir %{_libdir}/erlang/lib/%{realname}-%{version} %dir %{_libdir}/erlang/lib/%{realname}-%{version}/ebin %dir %{_libdir}/erlang/lib/%{realname}-%{version}/include %dir %{_libdir}/erlang/lib/%{realname}-%{version}/priv %{_libdir}/erlang/lib/%{realname}-%{version}/ebin/*.beam %{_libdir}/erlang/lib/%{realname}-%{version}/include/*.hrl %{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionary*.map %changelog * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme * Mon Jul 6 2009 Peter Lemenkov 0-0.3.cvs20070627 - Proper versioning scheme - Added two missing header-files - Fixed permissions for MIT_LICENSE and eradius_server.erl * Tue Apr 21 2009 Peter Lemenkov 0-0.2 - Get rid of unnecessary source files * Wed Mar 25 2009 Peter Lemenkov 0-0.1 - initial build --- NEW FILE import.log --- erlang-eradius-0-0_4_20070627cvs_fc11:EL-5:erlang-eradius-0-0.4.20070627cvs.fc11.src.rpm:1247304201 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 08:14:08 -0000 1.1 +++ .cvsignore 11 Jul 2009 09:32:04 -0000 1.2 @@ -0,0 +1 @@ +eradius.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 08:14:09 -0000 1.1 +++ sources 11 Jul 2009 09:32:04 -0000 1.2 @@ -0,0 +1 @@ +8540f2ff963cf5cd7895f5b69ac7cca9 eradius.tar.bz2 From peter at fedoraproject.org Sat Jul 11 09:35:34 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 09:35:34 +0000 (UTC) Subject: rpms/erlang-eradius/EL-4 erlang-eradius.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711093534.74B2111C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/erlang-eradius/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16262/EL-4 Modified Files: .cvsignore sources Added Files: erlang-eradius.spec import.log Log Message: initial commit --- NEW FILE erlang-eradius.spec --- %define debug_package %{nil} %define realname eradius Name: erlang-%{realname} Version: 0 Release: 0.4.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT URL: http://jungerl.sourceforge.net/ # cvs -z3 -d:pserver:anonymous at jungerl.cvs.sourceforge.net:/cvsroot/jungerl export -d eradius -D "2007-06-27" jungerl/lib/eradius # tar cjf eradius.tar.bz2 eradius Source0: eradius.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: erlang Requires: erlang %description RADIUS authentication/accounting for erlang apps. %prep %setup -q -n %{realname} mv src/eradius_server_example.erl test/ chmod 644 MIT_LICENSE chmod 644 src/eradius_server.erl %build erlc -o ebin -I./include src/eradius_dict.erl cd priv && make && cd - erlc -o ebin -I./include src/eradius.erl erlc -o ebin -I./include src/eradius_acc.erl erlc -o ebin -I./include src/eradius_lib.erl erlc -o ebin -I./include src/eradius_server.erl %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/{ebin,include,priv,src} mkdir -p $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionaries install -m 644 ebin/*.beam $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/ebin install -m 644 include/*.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -p -m 644 src/eradius_lib.hrl $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/include install -m 644 priv/dictionary*.map $RPM_BUILD_ROOT%{_libdir}/erlang/lib/%{realname}-%{version}/priv %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc MIT_LICENSE test/*.erl %dir %{_libdir}/erlang/lib/%{realname}-%{version} %dir %{_libdir}/erlang/lib/%{realname}-%{version}/ebin %dir %{_libdir}/erlang/lib/%{realname}-%{version}/include %dir %{_libdir}/erlang/lib/%{realname}-%{version}/priv %{_libdir}/erlang/lib/%{realname}-%{version}/ebin/*.beam %{_libdir}/erlang/lib/%{realname}-%{version}/include/*.hrl %{_libdir}/erlang/lib/%{realname}-%{version}/priv/dictionary*.map %changelog * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme * Mon Jul 6 2009 Peter Lemenkov 0-0.3.cvs20070627 - Proper versioning scheme - Added two missing header-files - Fixed permissions for MIT_LICENSE and eradius_server.erl * Tue Apr 21 2009 Peter Lemenkov 0-0.2 - Get rid of unnecessary source files * Wed Mar 25 2009 Peter Lemenkov 0-0.1 - initial build --- NEW FILE import.log --- erlang-eradius-0-0_4_20070627cvs_fc11:EL-4:erlang-eradius-0-0.4.20070627cvs.fc11.src.rpm:1247304837 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 08:14:08 -0000 1.1 +++ .cvsignore 11 Jul 2009 09:35:04 -0000 1.2 @@ -0,0 +1 @@ +eradius.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 08:14:09 -0000 1.1 +++ sources 11 Jul 2009 09:35:04 -0000 1.2 @@ -0,0 +1 @@ +8540f2ff963cf5cd7895f5b69ac7cca9 eradius.tar.bz2 From caolanm at fedoraproject.org Sat Jul 11 10:37:23 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 10:37:23 +0000 (UTC) Subject: rpms/openoffice-lv/devel openoffice-lv.spec,1.4,1.5 Message-ID: <20090711103723.C9DD711C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice-lv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31528 Modified Files: openoffice-lv.spec Log Message: tidy spec Index: openoffice-lv.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice-lv/devel/openoffice-lv.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openoffice-lv.spec 11 May 2009 08:50:01 -0000 1.4 +++ openoffice-lv.spec 11 Jul 2009 10:36:53 -0000 1.5 @@ -1,10 +1,12 @@ Name: openoffice-lv Summary: Latvian linguistic dictionaries Version: 0.8 -Release: 0.1.b1%{?dist} +Release: 0.2.b1%{?dist} Source: http://downloads.sourceforge.net/%{name}/lv_LV-0.8b1.zip +# Source: http://dict.dv.lv/dl/lv_LV-0.8b1.zip ? Group: Applications/Text URL: http://sourceforge.net/projects/openoffice-lv/ +# URL: http://dict.dv.lv/ ? BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: GPLv2+ BuildArch: noarch @@ -33,10 +35,17 @@ Latvian hunspell dictionaries. %build for i in README_lv_LV.txt README_hyph_lv_LV.txt changelog.txt; do - tr -d '\r' < $i > $i.new - iconv -f ISO-8859-4 -t UTF-8 $i.new > $i + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-4 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done + %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell @@ -58,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.8-0.2.b1 +- tidy spec + * Mon May 11 2009 Caolan McNamara - 0.8-0.1.b1 - latest version From caolanm at fedoraproject.org Sat Jul 11 10:42:01 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 10:42:01 +0000 (UTC) Subject: rpms/hunspell-az/devel hunspell-az.spec,1.2,1.3 Message-ID: <20090711104201.6533D11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-az/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32542 Modified Files: hunspell-az.spec Log Message: tidy spec Index: hunspell-az.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-az/devel/hunspell-az.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-az.spec 25 Feb 2009 04:25:26 -0000 1.2 +++ hunspell-az.spec 11 Jul 2009 10:41:30 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-az Summary: Azerbaijani hunspell dictionaries %define upstreamid 20040827 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: ftp://ftp.gnu.org/gnu/aspell/dict/az/aspell6-az-0.02-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -23,10 +23,16 @@ Azerbaijani hunspell dictionaries. export LANG=az_AZ.utf8 preunzip az.cwl wordlist2hunspell az.wl az_AZ -iconv -f ISO-8859-1 -t UTF-8 Copyright > Copyright.new -mv -f Copyright.new Copyright -iconv -f ISO-8859-1 -t UTF-8 doc/Crawler.txt > doc/Crawler.txt.new -mv -f doc/Crawler.txt.new doc/Crawler.txt +for i in Copyright doc/Crawler.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20040827-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040827-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 10:45:00 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 10:45:00 +0000 (UTC) Subject: rpms/hunspell-csb/devel hunspell-csb.spec,1.2,1.3 Message-ID: <20090711104500.8C77E11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-csb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv767 Modified Files: hunspell-csb.spec Log Message: tidy spec Index: hunspell-csb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-csb/devel/hunspell-csb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-csb.spec 25 Feb 2009 04:33:14 -0000 1.2 +++ hunspell-csb.spec 11 Jul 2009 10:44:30 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-csb Summary: Kashubian hunspell dictionaries %define upstreamid 20050311 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/csb/aspell6-csb-0.02-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -23,10 +23,16 @@ Kashubian hunspell dictionaries. export LANG=csb_PL.utf8 preunzip csb.cwl wordlist2hunspell csb.wl csb_PL -iconv -f ISO-8859-1 -t UTF-8 Copyright > Copyright.new -mv -f Copyright.new Copyright -iconv -f ISO-8859-1 -t UTF-8 doc/Crawler.txt > doc/Crawler.txt.new -mv -f doc/Crawler.txt.new doc/Crawler.txt +for i in Copyright doc/Crawler.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050311-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050311-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 10:52:28 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 10:52:28 +0000 (UTC) Subject: rpms/hunspell-gv/devel hunspell-gv.spec,1.2,1.3 Message-ID: <20090711105228.477A811C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-gv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2363 Modified Files: hunspell-gv.spec Log Message: tidy spec Index: hunspell-gv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gv/devel/hunspell-gv.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-gv.spec 25 Feb 2009 04:51:35 -0000 1.2 +++ hunspell-gv.spec 11 Jul 2009 10:51:58 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-gv Summary: Manx hunspell dictionaries %define upstreamid 20040505 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/gv/aspell-gv-0.50-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -25,8 +25,14 @@ preunzip -d *.cwl cat *.wl > manx.wordlist wordlist2hunspell manx.wordlist gv_GB for i in Copyright doc/Crawler.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -43,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20040505-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040505-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Sat Jul 11 12:00:32 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 12:00:32 +0000 (UTC) Subject: rpms/octave/devel .cvsignore, 1.24, 1.25 import.log, 1.2, 1.3 octave.spec, 1.80, 1.81 sources, 1.24, 1.25 Message-ID: <20090711120032.A5D9A11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18009/devel Modified Files: .cvsignore import.log octave.spec sources Log Message: Update to 3.2.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 12 Apr 2009 16:12:05 -0000 1.24 +++ .cvsignore 11 Jul 2009 12:00:01 -0000 1.25 @@ -1 +1 @@ -octave-3.0.5.tar.bz2 +octave-3.2.0.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 12 Apr 2009 16:12:05 -0000 1.2 +++ import.log 11 Jul 2009 12:00:01 -0000 1.3 @@ -1,2 +1,3 @@ octave-3_0_2-2_fc10:HEAD:octave-3.0.2-2.fc10.src.rpm:1224776342 octave-3_0_5-1_fc11:HEAD:octave-3.0.5-1.fc11.src.rpm:1239552316 +octave-3_2_0-1_fc11:HEAD:octave-3.2.0-1.fc11.src.rpm:1247313567 Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- octave.spec 12 Apr 2009 16:12:05 -0000 1.80 +++ octave.spec 11 Jul 2009 12:00:01 -0000 1.81 @@ -1,30 +1,30 @@ # From src/version.h:#define OCTAVE_API_VERSION -%define octave_api api-v32 +%define octave_api api-v37 Name: octave -Version: 3.0.5 +Version: 3.2.0 Release: 1%{?dist} Summary: A high-level language for numerical computations Epoch: 6 - Group: Applications/Engineering License: GPLv3+ Source: ftp://ftp.octave.org/pub/octave/octave-%{version}.tar.bz2 -#Patch1: %{name}-sh-arch.patch -#Patch2: %{name}-gcc44.patch URL: http://www.octave.org -Requires: gnuplot less info texinfo -Requires(post): /sbin/install-info -Requires(postun): /sbin/ldconfig -Requires(post): /sbin/ldconfig -Requires(preun): /sbin/install-info +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +Provides: octave(api) = %{octave_api} + BuildRequires: bison flex less tetex gcc-gfortran lapack-devel blas-devel BuildRequires: ncurses-devel zlib-devel hdf5-devel texinfo qhull-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript -BuildRequires: curl-devel pcre-devel +BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils -Provides: octave(api) = %{octave_api} -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# FIXME: Uncomment when qrupdate is available in Fedora +#BuildRequires: qrupdate-devel + +Requires: gnuplot less info texinfo +Requires(post): info +Requires(preun): info %description @@ -63,16 +63,12 @@ then exit 1 fi -# patch for sh arch -#%patch1 -p1 -b .sh-arch -# patch for gcc 4.4 -#%patch2 -p1 -b .gcc44 - %build -%define enable64 no +%global enable64 no export CPPFLAGS="-DH5_USE_16_API" -%configure --enable-shared --disable-static --enable-64=%enable64 --with-f77=gfortran -make %{?_smp_mflags} OCTAVE_RELEASE="Fedora %{version}-%{release}" +%configure --enable-shared --disable-static --enable-64=%enable64 F77=gfortran +#make %{?_smp_mflags} OCTAVE_RELEASE="Fedora %{version}-%{release}" +make OCTAVE_RELEASE="Fedora %{version}-%{release}" %install @@ -97,7 +93,7 @@ popd # Create desktop file rm $RPM_BUILD_ROOT%{_datadir}/applications/www.octave.org-octave.desktop desktop-file-install --vendor fedora --add-category X-Fedora --remove-category Development \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications examples/octave.desktop + --dir $RPM_BUILD_ROOT%{_datadir}/applications examples/octave.desktop # Create directories for add-on packages HOST_TYPE=`$RPM_BUILD_ROOT%{_bindir}/octave-config -p CANONICAL_HOST_TYPE` @@ -113,40 +109,49 @@ rm -rf $RPM_BUILD_ROOT %post /sbin/ldconfig /sbin/install-info --info-dir=%{_infodir} --section="Programming" \ - %{_infodir}/octave.info || : + %{_infodir}/octave.info || : %preun if [ "$1" = "0" ]; then /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/octave.info || : fi - %postun -p /sbin/ldconfig %files -%defattr(-,root,root) +%defattr(-,root,root,-) %doc COPYING NEWS* PROJECTS README README.Linux README.kpathsea ROADMAP -%doc SENDING-PATCHES THANKS emacs examples doc/interpreter/octave.p* -%doc doc/faq doc/interpreter/HTML doc/refcard +%doc SENDING-PATCHES emacs/ examples/ doc/interpreter/octave.p* +%doc doc/faq/ doc/interpreter/HTML/ doc/refcard/ +%config /etc/ld.so.conf.d/octave-*.conf %{_bindir}/octave* -%config(noreplace) /etc/ld.so.conf.d/* -%{_libdir}/octave* -%{_datadir}/octave -%ghost %{_datadir}/octave/octave_packages -%{_libexecdir}/octave -%{_mandir}/man*/octave* +%{_libdir}/octave-%{version}/ +%{_libexecdir}/octave/ +%{_mandir}/man1/octave*.1.* %{_infodir}/octave.info* -%{_datadir}/applications/* +%{_datadir}/applications/fedora-octave.desktop +# octave_packages is %ghost, so need to list everything else separately +%dir %{_datadir}/octave +%{_datadir}/octave/%{version}/ +%{_datadir}/octave/ls-R +%ghost %{_datadir}/octave/octave_packages +%{_datadir}/octave/packages/ +%{_datadir}/octave/site/ + %files devel -%defattr(-,root,root) -%doc doc/liboctave -%{_bindir}/mkoctfile* -%{_includedir}/octave-%{version} -%{_mandir}/man*/mkoctfile* +%defattr(-,root,root,-) +%doc doc/liboctave/HTML/ doc/liboctave/liboctave.pdf +%{_bindir}/mkoctfile +%{_bindir}/mkoctfile-%{version} +%{_includedir}/octave-%{version}/ +%{_mandir}/man1/mkoctfile.1.* %changelog +* Sat Jul 11 2009 Jussi Lehtola - 6:3.2.0-1 +- Update to latest upstream (3.2.0). + * Sun Apr 12 2009 Rakesh Pandit - 6:3.0.5-1 - Updated to latest upstream (3.0.5) @@ -634,7 +639,7 @@ does not exist. - repackage in powertools. * Thu Jun 11 1998 Andrew Veliath -- Add %attr, build as user. +- Add %%attr, build as user. * Mon Jun 1 1998 Andrew Veliath - Add BuildRoot, installinfo, require gnuplot, description from Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 12 Apr 2009 16:12:05 -0000 1.24 +++ sources 11 Jul 2009 12:00:01 -0000 1.25 @@ -1 +1 @@ -bfba44eeda8fa6e29c2bbcd2604c34eb octave-3.0.5.tar.bz2 +f7965847648233cd7ed866dd2db3bcdc octave-3.2.0.tar.bz2 From jussilehtola at fedoraproject.org Sat Jul 11 12:26:36 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 12:26:36 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.81,1.82 Message-ID: <20090711122636.DA3BA11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23017/devel Modified Files: octave.spec Log Message: Add missing BR. Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- octave.spec 11 Jul 2009 12:00:01 -0000 1.81 +++ octave.spec 11 Jul 2009 12:26:36 -0000 1.82 @@ -17,7 +17,7 @@ Provides: octave(api) = %{octave_a BuildRequires: bison flex less tetex gcc-gfortran lapack-devel blas-devel BuildRequires: ncurses-devel zlib-devel hdf5-devel texinfo qhull-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript -BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel +BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel libX11-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils # FIXME: Uncomment when qrupdate is available in Fedora #BuildRequires: qrupdate-devel From thm at fedoraproject.org Sat Jul 11 12:32:37 2009 From: thm at fedoraproject.org (Thomas Moschny) Date: Sat, 11 Jul 2009 12:32:37 +0000 (UTC) Subject: rpms/python-markdown/devel .cvsignore, 1.3, 1.4 import.log, 1.2, 1.3 python-markdown.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090711123237.60D0F11C00DF@cvs1.fedora.phx.redhat.com> Author: thm Update of /cvs/pkgs/rpms/python-markdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24797/devel Modified Files: .cvsignore import.log python-markdown.spec sources Log Message: Update to 2.0.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 28 Apr 2009 07:56:52 -0000 1.3 +++ .cvsignore 11 Jul 2009 12:32:06 -0000 1.4 @@ -1 +1 @@ -Markdown-2.0.tar.gz +Markdown-2.0.1.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 28 Apr 2009 07:56:52 -0000 1.2 +++ import.log 11 Jul 2009 12:32:07 -0000 1.3 @@ -1,2 +1,3 @@ python-markdown-1_7-1_fc9:HEAD:python-markdown-1.7-1.fc9.src.rpm:1218525227 python-markdown-2_0-1_fc10:HEAD:python-markdown-2.0-1.fc10.src.rpm:1240905362 +python-markdown-2_0_1-1_fc11:HEAD:python-markdown-2.0.1-1.fc11.src.rpm:1247315493 Index: python-markdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown/devel/python-markdown.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-markdown.spec 28 Apr 2009 07:56:52 -0000 1.4 +++ python-markdown.spec 11 Jul 2009 12:32:07 -0000 1.5 @@ -3,7 +3,7 @@ %define srcname Markdown Name: python-markdown -Version: 2.0 +Version: 2.0.1 Release: 1%{?dist} Summary: Markdown implementation in Python Group: Development/Languages @@ -36,7 +36,6 @@ find markdown -type f -name '*.py' \ %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} -mv %{buildroot}%{_bindir}/markdown{.py,} %clean @@ -51,12 +50,15 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Thomas Moschny - 2.0.1-1 +- Update to 2.0.1. +- Upstream stripped .py of the cmdline script. + * Sat Apr 25 2009 Thomas Moschny - 2.0-1 - Update to 2.0. - Adjusted source URL. -- License is now BSD only. +- License changed to BSD only. - Upstream now provides a script to run markdown from the cmdline. - * Mon Aug 4 2008 Thomas Moschny - 1.7-1 - New package. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 28 Apr 2009 07:56:52 -0000 1.3 +++ sources 11 Jul 2009 12:32:07 -0000 1.4 @@ -1 +1 @@ -4db8d332f531de10370ebaf1d2615786 Markdown-2.0.tar.gz +bfdb2171faeb410d6099653da90b9bf7 Markdown-2.0.1.tar.gz From caolanm at fedoraproject.org Sat Jul 11 12:48:40 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 12:48:40 +0000 (UTC) Subject: rpms/hunspell-hil/devel hunspell-hil.spec,1.2,1.3 Message-ID: <20090711124840.971F811C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-hil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27984 Modified Files: hunspell-hil.spec Log Message: tidy spec Index: hunspell-hil.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hil/devel/hunspell-hil.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-hil.spec 25 Feb 2009 04:53:33 -0000 1.2 +++ hunspell-hil.spec 11 Jul 2009 12:48:10 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-hil Summary: Hiligaynon hunspell dictionaries %define upstreamid 20050406 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/hil/aspell5-hil-0.11-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -25,8 +25,14 @@ preunzip -d *.cwl cat *.wl > hiligaynon.wordlist wordlist2hunspell hiligaynon.wordlist hil_PH for i in Copyright doc/Crawler.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -43,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050406-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050406-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 12:50:01 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 12:50:01 +0000 (UTC) Subject: rpms/hunspell-ky/devel hunspell-ky.spec,1.2,1.3 Message-ID: <20090711125001.2BA7A11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28287 Modified Files: hunspell-ky.spec Log Message: preserve timestamp Index: hunspell-ky.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ky/devel/hunspell-ky.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ky.spec 22 Jun 2009 14:03:43 -0000 1.2 +++ hunspell-ky.spec 11 Jul 2009 12:49:30 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-ky Summary: Kirghiz hunspell dictionaries %define upstreamid 20090415 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/ky/aspell6-ky-0.01-0.tar.bz2 URL: http://borel.slu.edu/crubadan/ @@ -24,7 +24,7 @@ export LANG=ky_KG.utf8 preunzip -d *.cwl cat *.wl > kirghiz.wordlist wordlist2hunspell kirghiz.wordlist ky_KG -cp ky_affix.dat ky_KG.aff +cp -p ky_affix.dat ky_KG.aff %install rm -rf $RPM_BUILD_ROOT @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090414-2 +- preserve timestamp + * Mon Jun 22 2009 Caolan McNamara - 0.20090415-1 - out by one From caolanm at fedoraproject.org Sat Jul 11 12:56:34 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 12:56:34 +0000 (UTC) Subject: rpms/hunspell-wa/devel hunspell-wa.spec,1.2,1.3 Message-ID: <20090711125634.7E6D311C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-wa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29660 Modified Files: hunspell-wa.spec Log Message: tidy spec Index: hunspell-wa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-wa/devel/hunspell-wa.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-wa.spec 25 Feb 2009 05:50:34 -0000 1.2 +++ hunspell-wa.spec 11 Jul 2009 12:56:34 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-wa Summary: Walloon hunspell dictionaries Version: 0.4.15 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://chanae.walon.org/walon/aspell-wa-%{version}.tar.bz2 Group: Applications/Text URL: http://chanae.walon.org/walon/aspell.php @@ -22,8 +22,14 @@ Walloon hunspell dictionaries. %build make myspell for i in TODO README; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -41,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.4.15-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 13:01:26 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 13:01:26 +0000 (UTC) Subject: rpms/hunspell-fur/devel hunspell-fur.spec,1.2,1.3 Message-ID: <20090711130126.A0F4B11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-fur/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31366 Modified Files: hunspell-fur.spec Log Message: tidy spec Index: hunspell-fur.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fur/devel/hunspell-fur.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-fur.spec 25 Feb 2009 04:46:08 -0000 1.2 +++ hunspell-fur.spec 11 Jul 2009 13:00:56 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-fur Summary: Friulian hunspell dictionaries %define upstreamid 20050912 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://digilander.libero.it/paganf/coretors/myspell-fur-12092005.zip Group: Applications/Text URL: http://digilander.libero.it/paganf/coretors/dizionaris.html @@ -21,8 +21,14 @@ Friulian hunspell dictionaries. %build chmod -x * for i in COPYING.txt LICENCE.txt LEIMI.txt; do - tr -d '\r' < $i > $i.new - iconv -f ISO-8859-15 -t UTF-8 $i.new > $i + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-15 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -39,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050912-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050912-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 13:16:41 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 13:16:41 +0000 (UTC) Subject: rpms/libtextcat/devel libtextcat-2.2-exportapi.patch, 1.2, 1.3 libtextcat.spec, 1.7, 1.8 Message-ID: <20090711131641.DF94E11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libtextcat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2813 Modified Files: libtextcat-2.2-exportapi.patch libtextcat.spec Log Message: fix up rpmlint warnings libtextcat-2.2-exportapi.patch: Index: libtextcat-2.2-exportapi.patch =================================================================== RCS file: /cvs/pkgs/rpms/libtextcat/devel/libtextcat-2.2-exportapi.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libtextcat-2.2-exportapi.patch 4 Feb 2008 20:11:05 -0000 1.2 +++ libtextcat-2.2-exportapi.patch 11 Jul 2009 13:16:41 -0000 1.3 @@ -10,6 +10,15 @@ diff -ruN libtextcat-2.2.orig/src/common extern void wgmem_error( const char *fmt, ... ) { +@@ -55,8 +55,6 @@ + va_start(ap, fmt); + vfprintf(stderr, fmt, ap); + va_end(ap); +- +- exit(-1); + } + + diff -ruN libtextcat-2.2.orig/src/common_impl.h libtextcat-2.2/src/common_impl.h --- libtextcat-2.2.orig/src/common_impl.h 1970-01-01 01:00:00.000000000 +0100 +++ libtextcat-2.2/src/common_impl.h 2007-06-27 17:45:16.000000000 +0100 Index: libtextcat.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtextcat/devel/libtextcat.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libtextcat.spec 25 Feb 2009 19:19:07 -0000 1.7 +++ libtextcat.spec 11 Jul 2009 13:16:41 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Text Categorization Library Name: libtextcat Version: 2.2 -Release: 6%{?dist} +Release: 7%{?dist} Group: System Environment/Libraries License: BSD Source0: http://software.wise-guys.nl/download/%{name}-%{version}.tar.gz @@ -53,7 +53,6 @@ cp -p afrikaans.lm $RPM_BUILD_ROOT/%{_da cp -p basque.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/basque.lm cp -p bosnian.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/bosnian.lm cp -p croatian-ascii.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/croatian.lm -cp -p drents.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/drents.lm cp -p dutch.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/dutch.lm cp -p english.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/english.lm cp -p icelandic.lm $RPM_BUILD_ROOT/%{_datadir}/libtextcat/icelandic.lm @@ -139,6 +138,9 @@ cp -p %{SOURCE4} $RPM_BUILD_ROOT/%{_data rm -r $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Caolan McNamara 2.2-7 +- remove rpmlint warnings + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Sat Jul 11 13:23:13 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 13:23:13 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.82,1.83 Message-ID: <20090711132313.8604A11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4555/devel Modified Files: octave.spec Log Message: Build fixes. Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- octave.spec 11 Jul 2009 12:26:36 -0000 1.82 +++ octave.spec 11 Jul 2009 13:22:43 -0000 1.83 @@ -19,6 +19,7 @@ BuildRequires: ncurses-devel zlib-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel libX11-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils +BuildRequires: GraphicsMagick-c++-devel fltk-devel # FIXME: Uncomment when qrupdate is available in Fedora #BuildRequires: qrupdate-devel @@ -83,6 +84,8 @@ echo "%{_libdir}/octave-%{version}" > $R # Remove RPM_BUILD_ROOT from ls-R files perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_libexecdir}/%{name}/ls-R perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_datadir}/%{name}/ls-R +# Make sure ls-R exists +touch $RPM_BUILD_ROOT%{_datadir}/%{name}/ls-R # Clean doc directory pushd doc @@ -121,7 +124,7 @@ fi %files %defattr(-,root,root,-) %doc COPYING NEWS* PROJECTS README README.Linux README.kpathsea ROADMAP -%doc SENDING-PATCHES emacs/ examples/ doc/interpreter/octave.p* +%doc SENDING-PATCHES emacs/ examples/ doc/interpreter/octave.pdf %doc doc/faq/ doc/interpreter/HTML/ doc/refcard/ %config /etc/ld.so.conf.d/octave-*.conf %{_bindir}/octave* From rishi at fedoraproject.org Sat Jul 11 13:23:29 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Sat, 11 Jul 2009 13:23:29 +0000 (UTC) Subject: rpms/libchamplain/F-11 .cvsignore, 1.3, 1.4 libchamplain.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090711132329.EFCC711C00DF@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/libchamplain/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4630 Modified Files: .cvsignore libchamplain.spec sources Log Message: * Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 - Version bump to 0.3.3. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2009 20:47:42 -0000 1.3 +++ .cvsignore 11 Jul 2009 13:22:59 -0000 1.4 @@ -1 +1 @@ -libchamplain-0.2.9.tar.gz +libchamplain-0.3.3.tar.gz Index: libchamplain.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/F-11/libchamplain.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libchamplain.spec 17 Mar 2009 20:47:42 -0000 1.3 +++ libchamplain.spec 11 Jul 2009 13:22:59 -0000 1.4 @@ -1,16 +1,20 @@ Summary: Map view for Clutter Name: libchamplain -Version: 0.2.9 +Version: 0.3.3 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries -URL: http://blog.pierlux.com/projects/libchamplain/en/ -Source0: http://libchamplain.pierlux.com/release/latest/%{name}-%{version}.tar.gz +URL: http://projects.gnome.org/libchamplain/ +Source0: http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/%{name}-%{version}.tar.gz + +Patch0: foo.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: clutter-cairo-devel >= 0.8 +BuildRequires: clutter-cairo-devel +BuildRequires: clutter-gtk-devel BuildRequires: libsoup-devel +BuildRequires: sqlite-devel %description Libchamplain is a C library aimed to provide a ClutterActor to display @@ -21,7 +25,7 @@ Summary: Development files for %{name} Group: Development/Libraries %if 0%{?fc10} -Requires: clutter-devel >= 0.8 +Requires: clutter-devel Requires: pkgconfig %endif @@ -31,13 +35,41 @@ Requires: %{name} = %{version}-%{release %description devel This package contains development files for %{name}. +%package gtk +Summary: Gtk+ widget wrapper for %{name} +Group: System Environment/Libraries + +Requires: %{name} = %{version}-%{release} + +%description gtk +Libchamplain-gtk is a library providing a GtkWidget to embed %{name} +into Gtk+ applications. + +%package gtk-devel +Summary: Development files for %{name}-gtk +Group: Development/Libraries + +%if 0%{?fc10} +Requires: gtk2-devel +Requires: pkgconfig +%endif + +Requires: gtk-doc +Requires: %{name}-devel = %{version}-%{release} + +%description gtk-devel +This package contains development files for %{name}-gtk. + %prep %setup -q - -sed --in-place --expression 's/^#include //g' ./demos/launcher.c +%patch0 -p1 %build -%configure --disable-static --enable-gtk-doc +%configure --disable-static --enable-gtk --enable-gtk-doc + +# Remove rpaths. +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Omit unused direct shared library dependencies. sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool @@ -59,27 +91,43 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) +%doc AUTHORS %doc ChangeLog %doc COPYING %doc NEWS -%{_libdir}/%{name}-0.2.so.* +%{_libdir}/%{name}-0.3.so.* -%dir %{_datadir}/champlain -%{_datadir}/champlain/error.svg +#%dir %{_datadir}/champlain +#%{_datadir}/champlain/error.svg %files devel %defattr(-,root,root,-) %doc demos/launcher.c -%{_libdir}/%{name}-0.2.so -%{_libdir}/pkgconfig/champlain-0.2.pc +%{_libdir}/%{name}-0.3.so +%{_libdir}/pkgconfig/champlain-0.3.pc %dir %{_datadir}/gtk-doc/html/libchamplain %doc %{_datadir}/gtk-doc/html/libchamplain/* -%dir %{_includedir}/%{name}-0.2 -%{_includedir}/%{name}-0.2/champlain +%dir %{_includedir}/%{name}-0.3 +%{_includedir}/%{name}-0.3/champlain + +%files gtk-devel +%defattr(-,root,root,-) +%doc demos/launcher.c +%{_libdir}/%{name}-gtk-0.3.so +%{_libdir}/pkgconfig/champlain-gtk-0.3.pc + +%dir %{_datadir}/gtk-doc/html/libchamplain-gtk +%doc %{_datadir}/gtk-doc/html/libchamplain-gtk/* + +%dir %{_includedir}/%{name}-gtk-0.3 +%{_includedir}/%{name}-gtk-0.3/champlain-gtk %changelog +* Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 +- Version bump to 0.3.3. + * Wed Mar 18 2009 Debarshi Ray - 0.2.9-1 - Version bump to 0.2.9. * Fixed elastic effect. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2009 20:47:42 -0000 1.3 +++ sources 11 Jul 2009 13:22:59 -0000 1.4 @@ -1 +1 @@ -8c1f4ccf31ac8d5351db7e0f734d3e63 libchamplain-0.2.9.tar.gz +06f30890b86bf9fc4791fe9a4cb110e1 libchamplain-0.3.3.tar.gz From caolanm at fedoraproject.org Sat Jul 11 13:39:24 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 13:39:24 +0000 (UTC) Subject: rpms/hunspell-fo/devel hunspell-fo.spec,1.6,1.7 Message-ID: <20090711133924.3D68D11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-fo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17538 Modified Files: hunspell-fo.spec Log Message: tidy spec Index: hunspell-fo.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fo/devel/hunspell-fo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hunspell-fo.spec 19 May 2009 11:27:38 -0000 1.6 +++ hunspell-fo.spec 11 Jul 2009 13:38:53 -0000 1.7 @@ -1,7 +1,7 @@ Name: hunspell-fo Summary: Faroese hunspell dictionaries Version: 0.2.36 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://fo.speling.org/filer/myspell-fo-%{version}.tar.gz Group: Applications/Text URL: http://fo.speling.org/ @@ -19,10 +19,17 @@ Faroese hunspell dictionaries. %build for i in Copyright contributors README; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done + %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell @@ -37,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.2.36-2 +- tidy spec + * Tue May 19 2009 Caolan McNamara - 0.2.36-1 - latest version From dwayne at fedoraproject.org Sat Jul 11 14:02:16 2009 From: dwayne at fedoraproject.org (dwayne) Date: Sat, 11 Jul 2009 14:02:16 +0000 (UTC) Subject: rpms/virtaal/devel virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 virtaal.spec, 1.8, 1.9 Message-ID: <20090711140216.D47D011C00DF@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/virtaal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22705 Modified Files: .cvsignore sources virtaal.spec Added Files: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch Log Message: * Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 - Update to 0.4.0 beta1 - Backport r11846 --nodepcheck virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch: --- NEW FILE virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch --- --- src/trunk/virtaal/setup.py 2009/07/07 15:00:30 11845 +++ src/trunk/virtaal/setup.py 2009/07/07 17:19:29 11846 @@ -457,13 +457,23 @@ import distutils.command.install class DepCheckInstall(distutils.command.install.install): - def __init__(self, *args, **kwargs): - from virtaal.support import depcheck - failed = depcheck.check_dependencies() - if failed: - print 'Failed dependencies: %s' % (', '.join(failed)) - exit(0) - distutils.command.install.install.__init__(self, *args, **kwargs) + user_options = distutils.command.install.install.user_options + [ + ('nodepcheck', None, "don't check dependencies"), + ] + + def initialize_options(self): + distutils.command.install.install.initialize_options(self) + self.nodepcheck = False + + def run(self, *args, **kwargs): + if not self.nodepcheck: + from virtaal.support import depcheck + failed = depcheck.check_dependencies() + if failed: + print 'Failed dependencies: %s' % (', '.join(failed)) + print 'Use the --nodepcheck option to ignore dependencies.' + exit(0) + distutils.command.install.install.run(self, *args, **kwargs) def main(options): options = add_platform_specific_options(options) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 18 Feb 2009 18:22:33 -0000 1.6 +++ .cvsignore 11 Jul 2009 14:02:16 -0000 1.7 @@ -1 +1,2 @@ virtaal-0.3.1.tar.bz2 +virtaal-0.4.0-beta1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 18 Feb 2009 18:22:33 -0000 1.6 +++ sources 11 Jul 2009 14:02:16 -0000 1.7 @@ -1 +1,2 @@ eef03a4afa2f8a1e17f94a807268b7e3 virtaal-0.3.1.tar.bz2 +30ce41da361ef9efab109eea8efebf64 virtaal-0.4.0-beta1.tar.bz2 Index: virtaal.spec =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/virtaal.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- virtaal.spec 15 Apr 2009 11:30:26 -0000 1.8 +++ virtaal.spec 11 Jul 2009 14:02:16 -0000 1.9 @@ -1,18 +1,20 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: virtaal -Version: 0.3.1 -Release: 3%{?dist} +Version: 0.4.0 +Release: 0.1.beta1%{?dist} Summary: Localization and translation editor Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/virtaal/index -Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 +#Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-beta1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: virtaal-0.3beta1-setup_drop_MO_generation.patch Patch1: virtaal-0.3.0-autocorr_shared_location.patch +Patch2: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch BuildArch: noarch BuildRequires: python @@ -20,7 +22,7 @@ BuildRequires: python-devel BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool -Requires: translate-toolkit >= 1.3 +Requires: translate-toolkit >= 1.4 Requires: libtranslate Requires: pygtk2 Requires: pygtk2-libglade @@ -53,9 +55,10 @@ converters allow translators to edit: Op %prep -%setup -q +%setup -q -n %{name}-%{version}-beta1 %patch0 -p1 -b .setup_drop_MO_generation %patch1 -p1 -b .autocorr_shared_location +%patch2 -p3 -b .nodepcheck %build %{__python} setup.py build @@ -71,7 +74,7 @@ popd %install rm -rf %{buildroot} -%{__python} setup.py install -O1 --skip-build --install-data=/usr --root %{buildroot} +%{__python} setup.py install -O1 --skip-build --install-data=/usr --nodepcheck --root %{buildroot} desktop-file-install \ --delete-original \ @@ -141,6 +144,10 @@ rm -rf %{buildroot} %changelog +* Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 +- Update to 0.4.0 beta1 +- Backport r11846 --nodepcheck + * Wed Apr 15 2009 Dwayne Bailey - 0.3.1-3 - Update icon installation to latest Fedora guidelines From pkgdb at fedoraproject.org Sat Jul 11 14:17:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 14:17:15 +0000 Subject: [pkgdb] pondus was added for jussilehtola Message-ID: <20090711141715.D129910F89E@bastion2.fedora.phx.redhat.com> tibbs has added Package pondus with summary A personal weight management program tibbs has approved Package pondus tibbs has added a Fedora devel branch for pondus with an owner of jussilehtola tibbs has approved pondus in Fedora devel tibbs has approved Package pondus tibbs has set commit to Approved for 107427 on pondus (Fedora devel) tibbs has set checkout to Approved for 107427 on pondus (Fedora devel) tibbs has set build to Approved for 107427 on pondus (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pondus From pkgdb at fedoraproject.org Sat Jul 11 14:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 14:17:16 +0000 Subject: [pkgdb] pondus summary updated by tibbs Message-ID: <20090711141716.F33B810F8A6@bastion2.fedora.phx.redhat.com> tibbs set package pondus summary to A personal weight management program To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pondus From pkgdb at fedoraproject.org Sat Jul 11 14:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 14:17:16 +0000 Subject: [pkgdb] pondus (Fedora, 11) updated by tibbs Message-ID: <20090711141717.03C4910F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for pondus tibbs has set commit to Approved for 107427 on pondus (Fedora 10) tibbs has set checkout to Approved for 107427 on pondus (Fedora 10) tibbs has set build to Approved for 107427 on pondus (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pondus From pkgdb at fedoraproject.org Sat Jul 11 14:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 14:17:16 +0000 Subject: [pkgdb] pondus (Fedora, 11) updated by tibbs Message-ID: <20090711141717.181AE10F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for pondus tibbs has set commit to Approved for 107427 on pondus (Fedora 11) tibbs has set checkout to Approved for 107427 on pondus (Fedora 11) tibbs has set build to Approved for 107427 on pondus (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pondus From pkgdb at fedoraproject.org Sat Jul 11 14:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 14:17:16 +0000 Subject: [pkgdb] pondus (Fedora, 11) updated by tibbs Message-ID: <20090711141717.1F15B10F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for pondus tibbs has set commit to Approved for 107427 on pondus (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on pondus (Fedora EPEL 5) tibbs has set build to Approved for 107427 on pondus (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pondus From tibbs at fedoraproject.org Sat Jul 11 14:17:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 14:17:22 +0000 (UTC) Subject: rpms/pondus - New directory Message-ID: <20090711141722.24C3111C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pondus In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ25935/rpms/pondus Log Message: Directory /cvs/pkgs/rpms/pondus added to the repository From tibbs at fedoraproject.org Sat Jul 11 14:17:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 14:17:22 +0000 (UTC) Subject: rpms/pondus/devel - New directory Message-ID: <20090711141722.45C9C11C0418@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pondus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ25935/rpms/pondus/devel Log Message: Directory /cvs/pkgs/rpms/pondus/devel added to the repository From tibbs at fedoraproject.org Sat Jul 11 14:17:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 14:17:27 +0000 (UTC) Subject: rpms/pondus Makefile,NONE,1.1 Message-ID: <20090711141727.9E10E11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pondus In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ25935/rpms/pondus Added Files: Makefile Log Message: Setup of module pondus --- NEW FILE Makefile --- # Top level Makefile for module pondus all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Sat Jul 11 14:17:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 14:17:27 +0000 (UTC) Subject: rpms/pondus/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711141727.D913211C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pondus/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ25935/rpms/pondus/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pondus --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pondus # $Id: Makefile,v 1.1 2009/07/11 14:17:27 tibbs Exp $ NAME := pondus SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From caolanm at fedoraproject.org Sat Jul 11 14:17:20 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:17:20 +0000 (UTC) Subject: rpms/hunspell-de/devel hunspell-de.spec,1.10,1.11 Message-ID: <20090711141720.BA90411C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25750 Modified Files: hunspell-de.spec Log Message: tidy spec Index: hunspell-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-de/devel/hunspell-de.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hunspell-de.spec 23 Apr 2009 11:14:55 -0000 1.10 +++ hunspell-de.spec 11 Jul 2009 14:16:50 -0000 1.11 @@ -2,7 +2,7 @@ Name: hunspell-de Summary: German hunspell dictionaries %define upstreamid 20090107 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.j3e.de/ispell/igerman98/dict/igerman98-%{upstreamid}.tar.bz2 Group: Applications/Text URL: http://www.j3e.de/ispell/igerman98 @@ -27,8 +27,14 @@ make hunspell/de_AT.dic hunspell/de_AT.a hunspell/de_DE.dic hunspell/de_DE.aff cd hunspell for i in README_*.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new - tr -d '\r' <$i.new > $i + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -59,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090107-3 +- tidy spec + * Thu Apr 23 2009 Caolan McNamara - 0.20090107-2 - fix dictionaries From caolanm at fedoraproject.org Sat Jul 11 14:21:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:21:33 +0000 (UTC) Subject: rpms/hunspell-nl/devel hunspell-nl.spec,1.6,1.7 Message-ID: <20090711142133.14C7C11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26925 Modified Files: hunspell-nl.spec Log Message: tidy spec Index: hunspell-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-nl/devel/hunspell-nl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hunspell-nl.spec 12 Jun 2009 14:39:56 -0000 1.6 +++ hunspell-nl.spec 11 Jul 2009 14:21:02 -0000 1.7 @@ -1,7 +1,7 @@ Name: hunspell-nl Summary: Dutch hunspell dictionaries Version: 1.00g -Release: 4%{?dist} +Release: 5%{?dist} Source: http://www.opentaal.org/bestanden/nl_NL-Pack Group: Applications/Text URL: http://www.opentaal.org/english.php @@ -19,8 +19,16 @@ Dutch hunspell dictionaries. %build unzip -o nl_NL.zip -tr -d '\r' < README_nl_NL.txt > README_nl_NL.txt.new -mv -f README_nl_NL.txt.new README_nl_NL.txt +for i in README_nl_NL.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 1.00g-5 +- retain timestamp + * Fri Jun 22 2009 Caolan McNamara - 1.00g-4 - extend coverage From caolanm at fedoraproject.org Sat Jul 11 14:23:58 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:23:58 +0000 (UTC) Subject: rpms/mythes-sk/devel mythes-sk.spec,1.13,1.14 Message-ID: <20090711142358.B6CDF11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27506 Modified Files: mythes-sk.spec Log Message: tidy spec Index: mythes-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sk/devel/mythes-sk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mythes-sk.spec 8 Jul 2009 09:47:29 -0000 1.13 +++ mythes-sk.spec 11 Jul 2009 14:23:28 -0000 1.14 @@ -2,7 +2,7 @@ Name: mythes-sk Summary: Slovak thesaurus %define upstreamid 20090707 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.sk-spell.sk.cx/thesaurus/download/OOo-Thesaurus2-sk_SK.zip Group: Applications/Text URL: http://www.sk-spell.sk.cx/thesaurus/ @@ -18,8 +18,11 @@ Slovak thesaurus. %setup -q -c %build -tr -d '\r' < README_th_sk_SK_v2.txt > README_th_sk_SK_v2.txt.new -mv -f README_th_sk_SK_v2.txt.new README_th_sk_SK_v2.txt +for i in README_th_sk_SK_v2.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090707-2 +- tidy spec + * Wed Jul 08 2009 Caolan McNamara - 0.20090707-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 14:25:37 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:25:37 +0000 (UTC) Subject: rpms/mythes-de/devel mythes-de.spec,1.23,1.24 Message-ID: <20090711142537.93B3511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28009 Modified Files: mythes-de.spec Log Message: tidy spec Index: mythes-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-de/devel/mythes-de.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- mythes-de.spec 8 Jul 2009 09:48:53 -0000 1.23 +++ mythes-de.spec 11 Jul 2009 14:25:07 -0000 1.24 @@ -2,7 +2,7 @@ Name: mythes-de Summary: German thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.openthesaurus.de/download/thes_de_DE_v2.zip Group: Applications/Text URL: http://www.openthesaurus.de @@ -18,8 +18,16 @@ German thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_de_DE_v2.txt > README_th_de_DE_v2.txt.new -mv -f README_th_de_DE_v2.txt.new README_th_de_DE_v2.txt +for i in README_th_de_DE_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -44,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 +- tidy spec + * Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 14:28:22 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:28:22 +0000 (UTC) Subject: rpms/mythes-es/devel mythes-es.spec,1.6,1.7 Message-ID: <20090711142822.05F1811C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28703 Modified Files: mythes-es.spec Log Message: tidy spec Index: mythes-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-es/devel/mythes-es.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mythes-es.spec 8 Jul 2009 09:50:17 -0000 1.6 +++ mythes-es.spec 11 Jul 2009 14:27:51 -0000 1.7 @@ -2,7 +2,7 @@ Name: mythes-es Summary: Spanish thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://openthes-es.berlios.de/download/OOo2-thes_es_ES.tar.bz2 Group: Applications/Text URL: http://openthes-es.berlios.de @@ -17,8 +17,16 @@ Spanish thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_es_ES_v2.txt > README_th_es_ES_v2.txt.new -mv -f README_th_es_ES_v2.txt.new README_th_es_ES_v2.txt +for i in README_th_es_ES_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caol??n McNamara - 0.20090708-2 +- tidy spec + * Wed Jul 08 2009 Caol??n McNamara - 0.20090708-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 14:29:47 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:29:47 +0000 (UTC) Subject: rpms/mythes-sl/devel mythes-sl.spec,1.7,1.8 Message-ID: <20090711142947.E99F011C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29163 Modified Files: mythes-sl.spec Log Message: tidy spec Index: mythes-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sl/devel/mythes-sl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mythes-sl.spec 8 Jul 2009 09:51:31 -0000 1.7 +++ mythes-sl.spec 11 Jul 2009 14:29:17 -0000 1.8 @@ -2,7 +2,7 @@ Name: mythes-sl Summary: Slovenian thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://193.2.66.133:85/download/thes_sl_SI_v2.zip Group: Applications/Text URL: http://www.tezaver.si/ @@ -18,9 +18,13 @@ Slovenian thesaurus. %setup -q -c %build -tr -d '\r' < README_th_sl_SI_v2.txt > README_th_sl_SI_v2.txt.new -mv -f README_th_sl_SI_v2.txt.new README_th_sl_SI_v2.txt chmod -x * +for i in README_th_sl_SI_v2.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done + %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 +- tidy spec + * Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 - latest version From mtasaka at fedoraproject.org Sat Jul 11 14:30:20 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 11 Jul 2009 14:30:20 +0000 (UTC) Subject: rpms/ruby-gnome2/devel ruby-gnome2.spec,1.41,1.42 Message-ID: <20090711143020.35AC211C00DF@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29655 Modified Files: ruby-gnome2.spec Log Message: Add bug references Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/devel/ruby-gnome2.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- ruby-gnome2.spec 10 Jul 2009 04:10:07 -0000 1.41 +++ ruby-gnome2.spec 11 Jul 2009 14:29:49 -0000 1.42 @@ -21,9 +21,13 @@ Group: System Environment/Libra License: LGPLv2 URL: http://ruby-gnome2.sourceforge.jp/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-all-%{version}.tar.gz +# Currently Fedora specific patch Patch0: ruby-gnome2-0.17.0-rc1-script.patch +# ruby-gnome2-Bugs-2815036 Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch +# ruby-gnome2-Bugs-2815036 Patch15: ruby-gnome2-0.19.0-panel-applet.patch +# ruby-gnome2-Bugs-2814953 Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) From caolanm at fedoraproject.org Sat Jul 11 14:30:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:30:33 +0000 (UTC) Subject: rpms/mythes-nl/devel mythes-nl.spec,1.4,1.5 Message-ID: <20090711143033.9E42911C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30218 Modified Files: mythes-nl.spec Log Message: tidy spec Index: mythes-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-nl/devel/mythes-nl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-nl.spec 8 Jul 2009 09:52:52 -0000 1.4 +++ mythes-nl.spec 11 Jul 2009 14:30:33 -0000 1.5 @@ -2,7 +2,7 @@ Name: mythes-nl Summary: Dutch thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.opentaal.org/opentaalbank/thesaurus/download/thes_nl_v2.zip Group: Applications/Text URL: http://www.opentaal.org/opentaalbank/thesaurus @@ -17,9 +17,16 @@ Dutch thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_nl_v2.txt > README_th_nl_v2.txt.new -touch -r README_th_nl_v2.txt README_th_nl_v2.txt.new -mv -f README_th_nl_v2.txt.new README_th_nl_v2.txt +for i in README_th_nl_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -44,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 +- tidy spec + * Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 14:35:35 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 14:35:35 +0000 (UTC) Subject: rpms/hunspell-pt/devel hunspell-pt.spec,1.32,1.33 Message-ID: <20090711143535.AA1CD11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31295 Modified Files: hunspell-pt.spec Log Message: tidy spec Index: hunspell-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pt/devel/hunspell-pt.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- hunspell-pt.spec 3 Jul 2009 19:47:23 -0000 1.32 +++ hunspell-pt.spec 11 Jul 2009 14:35:35 -0000 1.33 @@ -2,7 +2,7 @@ Name: hunspell-pt Summary: Portuguese hunspell dictionaries %define upstreamid 20090702 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20090309.tar.gz Source1: http://www.broffice.org/files/pt_BR-2009-07-02AOC.zip Group: Applications/Text @@ -19,11 +19,15 @@ Portuguese hunspell dictionaries. %prep %setup -q -n hunspell-pt_PT-20090309 unzip -q -o %{SOURCE1} -tr -d '\r' < README_pt_BR.TXT > README.TXT.new -mv -f README.TXT.new README_pt_BR.TXT -for i in README*; do +for i in README_pt_BR.TXT README_pt_PT.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %build @@ -42,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090702-2 +- tidy spec + * Fri Jul 03 2009 Caolan McNamara - 0.20090702-1 - latest pt_BR version From peter at fedoraproject.org Sat Jul 11 14:39:20 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:39:20 +0000 (UTC) Subject: rpms/sems/devel .cvsignore, 1.2, 1.3 import.log, 1.2, 1.3 sems.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090711143920.A6B9311C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32036/devel Modified Files: .cvsignore import.log sems.spec sources Log Message: Ver. 1.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Apr 2009 03:22:54 -0000 1.2 +++ .cvsignore 11 Jul 2009 14:38:50 -0000 1.3 @@ -1 +1 @@ -sems-1.1.0.w_o_ilbc_sources.tar.gz +sems-1.1.1.w_o_ilbc_sources.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 19 Apr 2009 17:41:39 -0000 1.2 +++ import.log 11 Jul 2009 14:38:50 -0000 1.3 @@ -1,2 +1,3 @@ sems-1_1_0-5_fc10:HEAD:sems-1.1.0-5.fc10.src.rpm:1239420130 sems-1_1_0-6_fc10:HEAD:sems-1.1.0-6.fc10.src.rpm:1240162624 +sems-1_1_1-1_fc10:HEAD:sems-1.1.1-1.fc10.src.rpm:1247323064 Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/sems.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sems.spec 30 Apr 2009 05:30:16 -0000 1.3 +++ sems.spec 11 Jul 2009 14:38:50 -0000 1.4 @@ -1,12 +1,12 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems -Version: 1.1.0 -Release: 7%{?dist} +Version: 1.1.1 +Release: 1%{?dist} URL: http://www.iptel.org/sems -# wget http://ftp.iptel.org/pub/sems/sems-1.1.0.tar.gz -# tar zx --exclude iLBC_rfc3951 -f sems-1.1.0.tar.gz -# tar czf sems-1.1.0.w_o_ilbc_sources.tar.gz sems-1.1.0 -Source0: sems-1.1.0.w_o_ilbc_sources.tar.gz +# wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz +# tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz +# tar czf sems-1.1.1.w_o_ilbc_sources.tar.gz sems-1.1.1 +Source0: sems-1.1.1.w_o_ilbc_sources.tar.gz License: GPLv2+ Group: Applications/Communications # Use external gsm instead of shipped one Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Apr 2009 03:22:54 -0000 1.2 +++ sources 11 Jul 2009 14:38:50 -0000 1.3 @@ -1 +1 @@ -6e794b96f0657f073d458aaafd932952 sems-1.1.0.w_o_ilbc_sources.tar.gz +1faee6a6e7c85babd84288cd7e0ff7cc sems-1.1.1.w_o_ilbc_sources.tar.gz From peter at fedoraproject.org Sat Jul 11 14:41:27 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:41:27 +0000 (UTC) Subject: rpms/sems/F-11 .cvsignore, 1.2, 1.3 import.log, 1.2, 1.3 sems.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090711144127.B66BC11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32601/F-11 Modified Files: .cvsignore import.log sems.spec sources Log Message: Ver. 1.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Apr 2009 03:26:33 -0000 1.2 +++ .cvsignore 11 Jul 2009 14:40:57 -0000 1.3 @@ -1 +1 @@ -sems-1.1.0.w_o_ilbc_sources.tar.gz +sems-1.1.1.w_o_ilbc_sources.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 19 Apr 2009 17:46:37 -0000 1.2 +++ import.log 11 Jul 2009 14:40:57 -0000 1.3 @@ -1,2 +1,3 @@ sems-1_1_0-5_fc10:F-11:sems-1.1.0-5.fc10.src.rpm:1239420341 sems-1_1_0-6_fc10:F-11:sems-1.1.0-6.fc10.src.rpm:1240163035 +sems-1_1_1-1_fc10:F-11:sems-1.1.1-1.fc10.src.rpm:1247323186 Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-11/sems.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sems.spec 19 Apr 2009 17:46:37 -0000 1.2 +++ sems.spec 11 Jul 2009 14:40:57 -0000 1.3 @@ -1,12 +1,12 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems -Version: 1.1.0 -Release: 6%{?dist} +Version: 1.1.1 +Release: 1%{?dist} URL: http://www.iptel.org/sems -# wget http://ftp.iptel.org/pub/sems/sems-1.1.0.tar.gz -# tar zx --exclude iLBC_rfc3951 -f sems-1.1.0.tar.gz -# tar czf sems-1.1.0.w_o_ilbc_sources.tar.gz sems-1.1.0 -Source0: sems-1.1.0.w_o_ilbc_sources.tar.gz +# wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz +# tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz +# tar czf sems-1.1.1.w_o_ilbc_sources.tar.gz sems-1.1.1 +Source0: sems-1.1.1.w_o_ilbc_sources.tar.gz License: GPLv2+ Group: Applications/Communications # Use external gsm instead of shipped one @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 +- rebuilt + * Sun Apr 19 2009 Peter Lemenkov 1.1.0-6 - Fix building with GCC 4.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Apr 2009 03:26:35 -0000 1.2 +++ sources 11 Jul 2009 14:40:57 -0000 1.3 @@ -1 +1 @@ -6e794b96f0657f073d458aaafd932952 sems-1.1.0.w_o_ilbc_sources.tar.gz +1faee6a6e7c85babd84288cd7e0ff7cc sems-1.1.1.w_o_ilbc_sources.tar.gz From peter at fedoraproject.org Sat Jul 11 14:43:20 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:43:20 +0000 (UTC) Subject: rpms/sems/F-10 sems--gcc44.diff, NONE, 1.1 sems--makefile_defs_removal.diff, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sems.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090711144320.4F5AD11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv724/F-10 Modified Files: .cvsignore import.log sems.spec sources Added Files: sems--gcc44.diff sems--makefile_defs_removal.diff Log Message: Ver. 1.1.1 sems--gcc44.diff: --- NEW FILE sems--gcc44.diff --- --- ./apps/diameter_client/ServerConnection.h~ 2009-01-19 20:11:43.000000000 +0300 +++ ./apps/diameter_client/ServerConnection.h 2009-04-19 21:08:09.048458437 +0400 @@ -38,6 +38,7 @@ #include #include #include +#include using std::string; using std::vector; using std::map; sems--makefile_defs_removal.diff: --- NEW FILE sems--makefile_defs_removal.diff --- --- Makefile.defs~ 2009-01-20 21:02:34.000000000 +0300 +++ Makefile.defs 2009-04-19 20:45:30.208412422 +0400 @@ -1,10 +1,3 @@ -ifeq ($(makefile_defs), 1) -else -makefile_defs=1 -export makefile_defs - -SVN_REV?=r$(shell svnversion -n .) - #version number VERSION = 1 PATCHLEVEL = 1 @@ -14,153 +7,19 @@ REL_VERSION=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL) RELEASE=$(REL_VERSION)$(EXTRAVERSION) -CPPFLAGS += -D_DEBUG \ - -D_THREAD_SAFE -D_REENTRANT \ - -DSEMS_VERSION='"$(RELEASE)"' -DARCH='"$(ARCH)"'\ - -DOS='"$(OS)"' \ -# -DMAX_RTP_SESSIONS=8192 \ -# -DOpenSER \ -# -DSUPPORT_IPV6 \ -# -DNO_THREADID_LOG \ - -# compile with spandsp DTMF detection? see soft-switch.org -# this needs a fairly new version of spandsp - tested with 0.0.4pre11 -# will not work with spandsp 0.0.2 . -# (which means that current debian and gentoo packages don't work) -# -#USE_SPANDSP = yes -# statically link spandsp library? -# (might need adjusting spandsp lib path LIBSPANDSP_LDIR - may be /usr/lib) -#LIBSPANDSP_STATIC = yes -#LIBSPANDSP_LDIR = /usr/local/lib/ - - -# compile with sample rate conversion from secret rabbit code? -# (see http://www.mega-nerd.com/SRC/) -# -#USE_LIBSAMPLERATE = yes - -# -# ZRTP support? (see zfoneproject.com) -#WITH_ZRTP = yes - -# -# exclude some modules from compilation? -# e.g. python modules: -#exclude_modules ?= py_sems ivr mailbox pin_collect conf_auth mp3 examples - LDFLAGS += -lm OS = $(shell uname -s | sed -e s/SunOS/solaris/ | tr "[A-Z]" "[a-z]") -ifdef USE_SPANDSP -ifneq ($(spandsp_defs), 1) -spandsp_defs=1 -export spandsp_defs -CPPFLAGS += -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -endif -endif - -ifdef USE_LIBSAMPLERATE -ifneq ($(libsrc_defs), 1) -libsrc_defs=1 -export libsrc_defs -CPPFLAGS += -DUSE_LIBSAMPLERATE -endif -endif - -# Additions for Solaris support. -ifeq ($(OS),solaris) - GETARCH=uname -p - CPPFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - CFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - # For nanosleep. - LDFLAGS += -lrt - # For inet_aton. - LDFLAGS += -lresolv - - # I don't have libspeex installed. - # binrpcctrl does some really weird header stuff that doesn't work. - exclude_modules += binrpcctrl ilbc speex -else - GETARCH=uname -m -endif - -ARCH ?= $(shell $(GETARCH) |sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ - -e s/armv4l/arm/ -e "s/Power Macintosh/ppc/" \ - -e "s/cobalt/mips2/" \ - -e s/amd64/x86_64/ ) - -# fix sparc -> sparc64 -ifeq ($(ARCH),sparc) - ifeq ($(shell uname -m),sun4u) - ARCH := sparc64 - endif -endif - # need OS specific for this ? CXX = g++ CC = gcc LD = $(CC) - -CXXFLAGS += -Wall -Wno-reorder -fPIC -g \ - -O2 $(EXTRA_CXXFLAGS) - -CFLAGS += -Wall -fPIC -g -O2 $(EXTRA_CFLAGS) - -ifeq ($(DEBUG_PLAYOUT), yes) -CPPFLAGS += -DDEBUG_PLAYOUTBUF -endif - -ifdef WITH_ZRTP -CPPFLAGS += -DWITH_ZRTP \ - -DBUILD_ZRTP_MUTEXES \ - -DBUILD_DEFAULT_CACHE -DBUILD_DEFAULT_TIMER -DUNIX -DBUILD_ZRTP_MUTEXES \ - -I/usr/local/include/zrtp -endif - TARGET = LIB_LDFLAGS = -shared -ifeq ($(OS), linux) - LDFLAGS += -ldl -rdynamic -lpthread -else -ifeq ($(OS), freebsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), openbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), netbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), darwin) - LDFLAGS += -rdynamic -pthread - LIB_LDFLAGS = -flat_namespace -undefined suppress -bundle - CXXFLAGS += -fno-common - CFLAGS += -fno-common - - #necessary for sa_len|ss_len|sin_len - # may be needed on other *BSD - CPPFLAGS += -DBSD44SOCKETS - - # add the DarwinPorts directory - ifneq ($(ARCH), iphone) - CPPFLAGS += -D__DARWIN_UNIX03 - CPPFLAGS += -I /opt/local/include - LDFLAGS += -L/opt/local/lib - endif - - override exclude_modules += binrpcctrl mp3 examples py_sems -else - LDFLAGS+= -fPIC -ldl -lsocket -lnsl -lpthread - TARGET=solaris -endif -endif -endif -endif -endif +LDFLAGS += -ldl -rdynamic -lpthread LIB_LDFLAGS += $(LDFLAGS) @@ -201,28 +60,8 @@ ser-cfg-dir = etc/ser/ -ifeq ($(OS), linux) - doc-dir = share/doc/sems/ - man-dir = share/man/ -else -ifeq ($(OS), freebsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), openbsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), netbsd) - doc-dir = share/doc/sems - man-dir = man/ -else - doc-dir = doc/sems/ - man-dir = man/ -endif -endif -endif -endif +doc-dir = share/doc/sems/ +man-dir = share/man/ # target dirs for various stuff bin-target = $(prefix)/$(bin-dir) @@ -232,14 +71,8 @@ ser-cfg-target =$(ser-prefix)/$(ser-cfg-dir) lib-target = $(prefix)/$(lib-dir) -ifeq ($(OS), solaris) -#use GNU versions -INSTALL ?= ginstall -TAR ?= gtar -else INSTALL ?= install TAR ?= tar -endif INSTALL-TOUCH = touch # used to create the file first (good to # make solaris install work) @@ -251,7 +84,7 @@ #export stuff to sub-makes export REL_VERSION RELEASE OS -export CPPFLAGS CXXFLAGS LDFLAGS CFLAGS LIB_LDFLAGS +export LDFLAGS LIB_LDFLAGS export CXX CC LD export DESTDIR PREFIX prefix basedir ser-prefix export start-script @@ -260,12 +93,6 @@ export bin-target cfg-target modules-target audio-target ser-cfg-target lib-target export INSTALL TAR INSTALL-TOUCH INSTALL-CFG INSTALL-BIN INSTALL-MODULES INSTALL-DOC INSTALL-AUDIO -export USE_SPANDSP LIBSPANDSP_STATIC LIBSPANDSP_LDIR -export USE_LIBSAMPLERATE -export WITH_ZRTP - -endif # ifeq ($(makefile_defs, 1) - mk-install-dirs: $(DESTDIR)$(cfg-target) \ $(DESTDIR)$(bin-prefix)/$(bin-dir) \ $(DESTDIR)$(modules-prefix)/$(modules-dir) \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Apr 2009 03:29:02 -0000 1.2 +++ .cvsignore 11 Jul 2009 14:42:49 -0000 1.3 @@ -1 +1 @@ -sems-1.1.0.w_o_ilbc_sources.tar.gz +sems-1.1.1.w_o_ilbc_sources.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Apr 2009 03:29:02 -0000 1.1 +++ import.log 11 Jul 2009 14:42:49 -0000 1.2 @@ -1 +1,2 @@ sems-1_1_0-5_fc10:F-10:sems-1.1.0-5.fc10.src.rpm:1239420482 +sems-1_1_1-1_fc10:F-10:sems-1.1.1-1.fc10.src.rpm:1247323339 Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-10/sems.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sems.spec 11 Apr 2009 03:29:02 -0000 1.1 +++ sems.spec 11 Jul 2009 14:42:50 -0000 1.2 @@ -1,12 +1,12 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.1.1 +Release: 1%{?dist} URL: http://www.iptel.org/sems -# wget http://ftp.iptel.org/pub/sems/sems-1.1.0.tar.gz -# tar zx --exclude iLBC_rfc3951 -f sems-1.1.0.tar.gz -# tar czf sems-1.1.0.w_o_ilbc_sources.tar.gz sems-1.1.0 -Source0: sems-1.1.0.w_o_ilbc_sources.tar.gz +# wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz +# tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz +# tar czf sems-1.1.1.w_o_ilbc_sources.tar.gz sems-1.1.1 +Source0: sems-1.1.1.w_o_ilbc_sources.tar.gz License: GPLv2+ Group: Applications/Communications # Use external gsm instead of shipped one @@ -17,6 +17,11 @@ Patch3: sems--flite-hardcoded-path-remo Patch4: sems--py_sources_install.diff # module apps/xmlrpc2di uses custoimized version of xmlrpc++ library Patch5: sems--xmlrpc++-use_fedora_cxxflags.diff +# Get rid of stupid makefile_defs condition in Makefile.defs +# which prevents uf from successful building on some Fedora releases +Patch6: sems--makefile_defs_removal.diff +# GCC 4.4 fixes +Patch7: sems--gcc44.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # temporary fix for https://fedorahosted.org/fedora-infrastructure/ticket/1202 #BuildRequires: python >= 2.3 @@ -154,17 +159,21 @@ rm -rf core/plug-in/gsm/gsm-1.0-pl10/ %patch3 -p0 -b .flite_hardcoded %patch4 -p0 -b .py_install_also %patch5 -p0 -b .cxxflags +%patch6 -p0 -b .makefile_defs_removal +%patch7 -p0 -b .gcc44 iconv -f iso8859-1 -t UTF-8 doc/Readme.diameter_client > doc/Readme.diameter_client.utf8 && mv doc/Readme.diameter_client{.utf8,} iconv -f iso8859-1 -t UTF-8 doc/Readme.voicebox > doc/Readme.voicebox.utf8 && mv doc/Readme.voicebox{.utf8,} mv ./apps/dsm/fsmc/readme.txt ./apps/dsm/fsmc/Readme.fsmc.txt %build -make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all +export CPPFLAGS="-D_REENTRANT -DSEMS_VERSION='\"%{version}\"' -DARCH='\"%{_arch}\"' -DOS='\"linux\"' -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -DUSE_LIBSAMPLERATE -Wall -Wno-reorder -fPIC -g" +export CXXFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +export CFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all \ %install rm -rf $RPM_BUILD_ROOT -export CFLAGS="$RPM_OPT_FLAGS" make install USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" \ DESTDIR=$RPM_BUILD_ROOT \ basedir= \ @@ -537,6 +546,12 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 +- rebuilt + +* Sun Apr 19 2009 Peter Lemenkov 1.1.0-6 +- Fix building with GCC 4.4 + * Fri Apr 10 2009 Peter Lemenkov 1.1.0-5 - Use modified tarball (with ilBC sources completely removed) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Apr 2009 03:29:02 -0000 1.2 +++ sources 11 Jul 2009 14:42:50 -0000 1.3 @@ -1 +1 @@ -6e794b96f0657f073d458aaafd932952 sems-1.1.0.w_o_ilbc_sources.tar.gz +1faee6a6e7c85babd84288cd7e0ff7cc sems-1.1.1.w_o_ilbc_sources.tar.gz From peter at fedoraproject.org Sat Jul 11 14:48:21 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:48:21 +0000 (UTC) Subject: rpms/sems/EL-5 sems--gcc44.diff, NONE, 1.1 sems--makefile_defs_removal.diff, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sems.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090711144821.8E78B11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1897/EL-5 Modified Files: .cvsignore import.log sems.spec sources Added Files: sems--gcc44.diff sems--makefile_defs_removal.diff Log Message: Ver. 1.1.1 sems--gcc44.diff: --- NEW FILE sems--gcc44.diff --- --- ./apps/diameter_client/ServerConnection.h~ 2009-01-19 20:11:43.000000000 +0300 +++ ./apps/diameter_client/ServerConnection.h 2009-04-19 21:08:09.048458437 +0400 @@ -38,6 +38,7 @@ #include #include #include +#include using std::string; using std::vector; using std::map; sems--makefile_defs_removal.diff: --- NEW FILE sems--makefile_defs_removal.diff --- --- Makefile.defs~ 2009-01-20 21:02:34.000000000 +0300 +++ Makefile.defs 2009-04-19 20:45:30.208412422 +0400 @@ -1,10 +1,3 @@ -ifeq ($(makefile_defs), 1) -else -makefile_defs=1 -export makefile_defs - -SVN_REV?=r$(shell svnversion -n .) - #version number VERSION = 1 PATCHLEVEL = 1 @@ -14,153 +7,19 @@ REL_VERSION=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL) RELEASE=$(REL_VERSION)$(EXTRAVERSION) -CPPFLAGS += -D_DEBUG \ - -D_THREAD_SAFE -D_REENTRANT \ - -DSEMS_VERSION='"$(RELEASE)"' -DARCH='"$(ARCH)"'\ - -DOS='"$(OS)"' \ -# -DMAX_RTP_SESSIONS=8192 \ -# -DOpenSER \ -# -DSUPPORT_IPV6 \ -# -DNO_THREADID_LOG \ - -# compile with spandsp DTMF detection? see soft-switch.org -# this needs a fairly new version of spandsp - tested with 0.0.4pre11 -# will not work with spandsp 0.0.2 . -# (which means that current debian and gentoo packages don't work) -# -#USE_SPANDSP = yes -# statically link spandsp library? -# (might need adjusting spandsp lib path LIBSPANDSP_LDIR - may be /usr/lib) -#LIBSPANDSP_STATIC = yes -#LIBSPANDSP_LDIR = /usr/local/lib/ - - -# compile with sample rate conversion from secret rabbit code? -# (see http://www.mega-nerd.com/SRC/) -# -#USE_LIBSAMPLERATE = yes - -# -# ZRTP support? (see zfoneproject.com) -#WITH_ZRTP = yes - -# -# exclude some modules from compilation? -# e.g. python modules: -#exclude_modules ?= py_sems ivr mailbox pin_collect conf_auth mp3 examples - LDFLAGS += -lm OS = $(shell uname -s | sed -e s/SunOS/solaris/ | tr "[A-Z]" "[a-z]") -ifdef USE_SPANDSP -ifneq ($(spandsp_defs), 1) -spandsp_defs=1 -export spandsp_defs -CPPFLAGS += -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -endif -endif - -ifdef USE_LIBSAMPLERATE -ifneq ($(libsrc_defs), 1) -libsrc_defs=1 -export libsrc_defs -CPPFLAGS += -DUSE_LIBSAMPLERATE -endif -endif - -# Additions for Solaris support. -ifeq ($(OS),solaris) - GETARCH=uname -p - CPPFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - CFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - # For nanosleep. - LDFLAGS += -lrt - # For inet_aton. - LDFLAGS += -lresolv - - # I don't have libspeex installed. - # binrpcctrl does some really weird header stuff that doesn't work. - exclude_modules += binrpcctrl ilbc speex -else - GETARCH=uname -m -endif - -ARCH ?= $(shell $(GETARCH) |sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ - -e s/armv4l/arm/ -e "s/Power Macintosh/ppc/" \ - -e "s/cobalt/mips2/" \ - -e s/amd64/x86_64/ ) - -# fix sparc -> sparc64 -ifeq ($(ARCH),sparc) - ifeq ($(shell uname -m),sun4u) - ARCH := sparc64 - endif -endif - # need OS specific for this ? CXX = g++ CC = gcc LD = $(CC) - -CXXFLAGS += -Wall -Wno-reorder -fPIC -g \ - -O2 $(EXTRA_CXXFLAGS) - -CFLAGS += -Wall -fPIC -g -O2 $(EXTRA_CFLAGS) - -ifeq ($(DEBUG_PLAYOUT), yes) -CPPFLAGS += -DDEBUG_PLAYOUTBUF -endif - -ifdef WITH_ZRTP -CPPFLAGS += -DWITH_ZRTP \ - -DBUILD_ZRTP_MUTEXES \ - -DBUILD_DEFAULT_CACHE -DBUILD_DEFAULT_TIMER -DUNIX -DBUILD_ZRTP_MUTEXES \ - -I/usr/local/include/zrtp -endif - TARGET = LIB_LDFLAGS = -shared -ifeq ($(OS), linux) - LDFLAGS += -ldl -rdynamic -lpthread -else -ifeq ($(OS), freebsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), openbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), netbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), darwin) - LDFLAGS += -rdynamic -pthread - LIB_LDFLAGS = -flat_namespace -undefined suppress -bundle - CXXFLAGS += -fno-common - CFLAGS += -fno-common - - #necessary for sa_len|ss_len|sin_len - # may be needed on other *BSD - CPPFLAGS += -DBSD44SOCKETS - - # add the DarwinPorts directory - ifneq ($(ARCH), iphone) - CPPFLAGS += -D__DARWIN_UNIX03 - CPPFLAGS += -I /opt/local/include - LDFLAGS += -L/opt/local/lib - endif - - override exclude_modules += binrpcctrl mp3 examples py_sems -else - LDFLAGS+= -fPIC -ldl -lsocket -lnsl -lpthread - TARGET=solaris -endif -endif -endif -endif -endif +LDFLAGS += -ldl -rdynamic -lpthread LIB_LDFLAGS += $(LDFLAGS) @@ -201,28 +60,8 @@ ser-cfg-dir = etc/ser/ -ifeq ($(OS), linux) - doc-dir = share/doc/sems/ - man-dir = share/man/ -else -ifeq ($(OS), freebsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), openbsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), netbsd) - doc-dir = share/doc/sems - man-dir = man/ -else - doc-dir = doc/sems/ - man-dir = man/ -endif -endif -endif -endif +doc-dir = share/doc/sems/ +man-dir = share/man/ # target dirs for various stuff bin-target = $(prefix)/$(bin-dir) @@ -232,14 +71,8 @@ ser-cfg-target =$(ser-prefix)/$(ser-cfg-dir) lib-target = $(prefix)/$(lib-dir) -ifeq ($(OS), solaris) -#use GNU versions -INSTALL ?= ginstall -TAR ?= gtar -else INSTALL ?= install TAR ?= tar -endif INSTALL-TOUCH = touch # used to create the file first (good to # make solaris install work) @@ -251,7 +84,7 @@ #export stuff to sub-makes export REL_VERSION RELEASE OS -export CPPFLAGS CXXFLAGS LDFLAGS CFLAGS LIB_LDFLAGS +export LDFLAGS LIB_LDFLAGS export CXX CC LD export DESTDIR PREFIX prefix basedir ser-prefix export start-script @@ -260,12 +93,6 @@ export bin-target cfg-target modules-target audio-target ser-cfg-target lib-target export INSTALL TAR INSTALL-TOUCH INSTALL-CFG INSTALL-BIN INSTALL-MODULES INSTALL-DOC INSTALL-AUDIO -export USE_SPANDSP LIBSPANDSP_STATIC LIBSPANDSP_LDIR -export USE_LIBSAMPLERATE -export WITH_ZRTP - -endif # ifeq ($(makefile_defs, 1) - mk-install-dirs: $(DESTDIR)$(cfg-target) \ $(DESTDIR)$(bin-prefix)/$(bin-dir) \ $(DESTDIR)$(modules-prefix)/$(modules-dir) \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Apr 2009 03:34:06 -0000 1.2 +++ .cvsignore 11 Jul 2009 14:48:20 -0000 1.3 @@ -1 +1 @@ -sems-1.1.0.w_o_ilbc_sources.tar.gz +sems-1.1.1.w_o_ilbc_sources.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Apr 2009 03:34:06 -0000 1.1 +++ import.log 11 Jul 2009 14:48:21 -0000 1.2 @@ -1 +1,2 @@ sems-1_1_0-5_fc10:EL-5:sems-1.1.0-5.fc10.src.rpm:1239420777 +sems-1_1_1-1_fc10:EL-5:sems-1.1.1-1.fc10.src.rpm:1247323443 Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-5/sems.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sems.spec 11 Apr 2009 03:34:06 -0000 1.1 +++ sems.spec 11 Jul 2009 14:48:21 -0000 1.2 @@ -1,12 +1,12 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.1.1 +Release: 1%{?dist} URL: http://www.iptel.org/sems -# wget http://ftp.iptel.org/pub/sems/sems-1.1.0.tar.gz -# tar zx --exclude iLBC_rfc3951 -f sems-1.1.0.tar.gz -# tar czf sems-1.1.0.w_o_ilbc_sources.tar.gz sems-1.1.0 -Source0: sems-1.1.0.w_o_ilbc_sources.tar.gz +# wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz +# tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz +# tar czf sems-1.1.1.w_o_ilbc_sources.tar.gz sems-1.1.1 +Source0: sems-1.1.1.w_o_ilbc_sources.tar.gz License: GPLv2+ Group: Applications/Communications # Use external gsm instead of shipped one @@ -17,6 +17,11 @@ Patch3: sems--flite-hardcoded-path-remo Patch4: sems--py_sources_install.diff # module apps/xmlrpc2di uses custoimized version of xmlrpc++ library Patch5: sems--xmlrpc++-use_fedora_cxxflags.diff +# Get rid of stupid makefile_defs condition in Makefile.defs +# which prevents uf from successful building on some Fedora releases +Patch6: sems--makefile_defs_removal.diff +# GCC 4.4 fixes +Patch7: sems--gcc44.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # temporary fix for https://fedorahosted.org/fedora-infrastructure/ticket/1202 #BuildRequires: python >= 2.3 @@ -154,17 +159,21 @@ rm -rf core/plug-in/gsm/gsm-1.0-pl10/ %patch3 -p0 -b .flite_hardcoded %patch4 -p0 -b .py_install_also %patch5 -p0 -b .cxxflags +%patch6 -p0 -b .makefile_defs_removal +%patch7 -p0 -b .gcc44 iconv -f iso8859-1 -t UTF-8 doc/Readme.diameter_client > doc/Readme.diameter_client.utf8 && mv doc/Readme.diameter_client{.utf8,} iconv -f iso8859-1 -t UTF-8 doc/Readme.voicebox > doc/Readme.voicebox.utf8 && mv doc/Readme.voicebox{.utf8,} mv ./apps/dsm/fsmc/readme.txt ./apps/dsm/fsmc/Readme.fsmc.txt %build -make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all +export CPPFLAGS="-D_REENTRANT -DSEMS_VERSION='\"%{version}\"' -DARCH='\"%{_arch}\"' -DOS='\"linux\"' -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -DUSE_LIBSAMPLERATE -Wall -Wno-reorder -fPIC -g" +export CXXFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +export CFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all \ %install rm -rf $RPM_BUILD_ROOT -export CFLAGS="$RPM_OPT_FLAGS" make install USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" \ DESTDIR=$RPM_BUILD_ROOT \ basedir= \ @@ -537,6 +546,12 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 +- rebuilt + +* Sun Apr 19 2009 Peter Lemenkov 1.1.0-6 +- Fix building with GCC 4.4 + * Fri Apr 10 2009 Peter Lemenkov 1.1.0-5 - Use modified tarball (with ilBC sources completely removed) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Apr 2009 03:34:06 -0000 1.2 +++ sources 11 Jul 2009 14:48:21 -0000 1.3 @@ -1 +1 @@ -6e794b96f0657f073d458aaafd932952 sems-1.1.0.w_o_ilbc_sources.tar.gz +1faee6a6e7c85babd84288cd7e0ff7cc sems-1.1.1.w_o_ilbc_sources.tar.gz From peter at fedoraproject.org Sat Jul 11 14:50:08 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:50:08 +0000 (UTC) Subject: rpms/sems/EL-4 sems--gcc44.diff, NONE, 1.1 sems--makefile_defs_removal.diff, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sems.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090711145008.2C57A11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2291/EL-4 Modified Files: .cvsignore import.log sems.spec sources Added Files: sems--gcc44.diff sems--makefile_defs_removal.diff Log Message: Ver. 1.1.1 sems--gcc44.diff: --- NEW FILE sems--gcc44.diff --- --- ./apps/diameter_client/ServerConnection.h~ 2009-01-19 20:11:43.000000000 +0300 +++ ./apps/diameter_client/ServerConnection.h 2009-04-19 21:08:09.048458437 +0400 @@ -38,6 +38,7 @@ #include #include #include +#include using std::string; using std::vector; using std::map; sems--makefile_defs_removal.diff: --- NEW FILE sems--makefile_defs_removal.diff --- --- Makefile.defs~ 2009-01-20 21:02:34.000000000 +0300 +++ Makefile.defs 2009-04-19 20:45:30.208412422 +0400 @@ -1,10 +1,3 @@ -ifeq ($(makefile_defs), 1) -else -makefile_defs=1 -export makefile_defs - -SVN_REV?=r$(shell svnversion -n .) - #version number VERSION = 1 PATCHLEVEL = 1 @@ -14,153 +7,19 @@ REL_VERSION=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL) RELEASE=$(REL_VERSION)$(EXTRAVERSION) -CPPFLAGS += -D_DEBUG \ - -D_THREAD_SAFE -D_REENTRANT \ - -DSEMS_VERSION='"$(RELEASE)"' -DARCH='"$(ARCH)"'\ - -DOS='"$(OS)"' \ -# -DMAX_RTP_SESSIONS=8192 \ -# -DOpenSER \ -# -DSUPPORT_IPV6 \ -# -DNO_THREADID_LOG \ - -# compile with spandsp DTMF detection? see soft-switch.org -# this needs a fairly new version of spandsp - tested with 0.0.4pre11 -# will not work with spandsp 0.0.2 . -# (which means that current debian and gentoo packages don't work) -# -#USE_SPANDSP = yes -# statically link spandsp library? -# (might need adjusting spandsp lib path LIBSPANDSP_LDIR - may be /usr/lib) -#LIBSPANDSP_STATIC = yes -#LIBSPANDSP_LDIR = /usr/local/lib/ - - -# compile with sample rate conversion from secret rabbit code? -# (see http://www.mega-nerd.com/SRC/) -# -#USE_LIBSAMPLERATE = yes - -# -# ZRTP support? (see zfoneproject.com) -#WITH_ZRTP = yes - -# -# exclude some modules from compilation? -# e.g. python modules: -#exclude_modules ?= py_sems ivr mailbox pin_collect conf_auth mp3 examples - LDFLAGS += -lm OS = $(shell uname -s | sed -e s/SunOS/solaris/ | tr "[A-Z]" "[a-z]") -ifdef USE_SPANDSP -ifneq ($(spandsp_defs), 1) -spandsp_defs=1 -export spandsp_defs -CPPFLAGS += -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -endif -endif - -ifdef USE_LIBSAMPLERATE -ifneq ($(libsrc_defs), 1) -libsrc_defs=1 -export libsrc_defs -CPPFLAGS += -DUSE_LIBSAMPLERATE -endif -endif - -# Additions for Solaris support. -ifeq ($(OS),solaris) - GETARCH=uname -p - CPPFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - CFLAGS += -DHAVE_SYS_SOCKIO_H -DBSD_COMP -fPIC -include compat/solaris.h - # For nanosleep. - LDFLAGS += -lrt - # For inet_aton. - LDFLAGS += -lresolv - - # I don't have libspeex installed. - # binrpcctrl does some really weird header stuff that doesn't work. - exclude_modules += binrpcctrl ilbc speex -else - GETARCH=uname -m -endif - -ARCH ?= $(shell $(GETARCH) |sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ - -e s/armv4l/arm/ -e "s/Power Macintosh/ppc/" \ - -e "s/cobalt/mips2/" \ - -e s/amd64/x86_64/ ) - -# fix sparc -> sparc64 -ifeq ($(ARCH),sparc) - ifeq ($(shell uname -m),sun4u) - ARCH := sparc64 - endif -endif - # need OS specific for this ? CXX = g++ CC = gcc LD = $(CC) - -CXXFLAGS += -Wall -Wno-reorder -fPIC -g \ - -O2 $(EXTRA_CXXFLAGS) - -CFLAGS += -Wall -fPIC -g -O2 $(EXTRA_CFLAGS) - -ifeq ($(DEBUG_PLAYOUT), yes) -CPPFLAGS += -DDEBUG_PLAYOUTBUF -endif - -ifdef WITH_ZRTP -CPPFLAGS += -DWITH_ZRTP \ - -DBUILD_ZRTP_MUTEXES \ - -DBUILD_DEFAULT_CACHE -DBUILD_DEFAULT_TIMER -DUNIX -DBUILD_ZRTP_MUTEXES \ - -I/usr/local/include/zrtp -endif - TARGET = LIB_LDFLAGS = -shared -ifeq ($(OS), linux) - LDFLAGS += -ldl -rdynamic -lpthread -else -ifeq ($(OS), freebsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), openbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), netbsd) - LDFLAGS += -rdynamic -pthread -else -ifeq ($(OS), darwin) - LDFLAGS += -rdynamic -pthread - LIB_LDFLAGS = -flat_namespace -undefined suppress -bundle - CXXFLAGS += -fno-common - CFLAGS += -fno-common - - #necessary for sa_len|ss_len|sin_len - # may be needed on other *BSD - CPPFLAGS += -DBSD44SOCKETS - - # add the DarwinPorts directory - ifneq ($(ARCH), iphone) - CPPFLAGS += -D__DARWIN_UNIX03 - CPPFLAGS += -I /opt/local/include - LDFLAGS += -L/opt/local/lib - endif - - override exclude_modules += binrpcctrl mp3 examples py_sems -else - LDFLAGS+= -fPIC -ldl -lsocket -lnsl -lpthread - TARGET=solaris -endif -endif -endif -endif -endif +LDFLAGS += -ldl -rdynamic -lpthread LIB_LDFLAGS += $(LDFLAGS) @@ -201,28 +60,8 @@ ser-cfg-dir = etc/ser/ -ifeq ($(OS), linux) - doc-dir = share/doc/sems/ - man-dir = share/man/ -else -ifeq ($(OS), freebsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), openbsd) - doc-dir = share/doc/sems/ - man-dir = man/ -else -ifeq ($(OS), netbsd) - doc-dir = share/doc/sems - man-dir = man/ -else - doc-dir = doc/sems/ - man-dir = man/ -endif -endif -endif -endif +doc-dir = share/doc/sems/ +man-dir = share/man/ # target dirs for various stuff bin-target = $(prefix)/$(bin-dir) @@ -232,14 +71,8 @@ ser-cfg-target =$(ser-prefix)/$(ser-cfg-dir) lib-target = $(prefix)/$(lib-dir) -ifeq ($(OS), solaris) -#use GNU versions -INSTALL ?= ginstall -TAR ?= gtar -else INSTALL ?= install TAR ?= tar -endif INSTALL-TOUCH = touch # used to create the file first (good to # make solaris install work) @@ -251,7 +84,7 @@ #export stuff to sub-makes export REL_VERSION RELEASE OS -export CPPFLAGS CXXFLAGS LDFLAGS CFLAGS LIB_LDFLAGS +export LDFLAGS LIB_LDFLAGS export CXX CC LD export DESTDIR PREFIX prefix basedir ser-prefix export start-script @@ -260,12 +93,6 @@ export bin-target cfg-target modules-target audio-target ser-cfg-target lib-target export INSTALL TAR INSTALL-TOUCH INSTALL-CFG INSTALL-BIN INSTALL-MODULES INSTALL-DOC INSTALL-AUDIO -export USE_SPANDSP LIBSPANDSP_STATIC LIBSPANDSP_LDIR -export USE_LIBSAMPLERATE -export WITH_ZRTP - -endif # ifeq ($(makefile_defs, 1) - mk-install-dirs: $(DESTDIR)$(cfg-target) \ $(DESTDIR)$(bin-prefix)/$(bin-dir) \ $(DESTDIR)$(modules-prefix)/$(modules-dir) \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Apr 2009 03:37:36 -0000 1.2 +++ .cvsignore 11 Jul 2009 14:49:37 -0000 1.3 @@ -1 +1 @@ -sems-1.1.0.w_o_ilbc_sources.tar.gz +sems-1.1.1.w_o_ilbc_sources.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-4/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Apr 2009 03:37:36 -0000 1.1 +++ import.log 11 Jul 2009 14:49:37 -0000 1.2 @@ -1 +1,2 @@ sems-1_1_0-5_fc10:EL-4:sems-1.1.0-5.fc10.src.rpm:1239421015 +sems-1_1_1-1_fc10:EL-4:sems-1.1.1-1.fc10.src.rpm:1247323736 Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-4/sems.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sems.spec 11 Apr 2009 03:37:36 -0000 1.1 +++ sems.spec 11 Jul 2009 14:49:37 -0000 1.2 @@ -1,12 +1,12 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.1.1 +Release: 1%{?dist} URL: http://www.iptel.org/sems -# wget http://ftp.iptel.org/pub/sems/sems-1.1.0.tar.gz -# tar zx --exclude iLBC_rfc3951 -f sems-1.1.0.tar.gz -# tar czf sems-1.1.0.w_o_ilbc_sources.tar.gz sems-1.1.0 -Source0: sems-1.1.0.w_o_ilbc_sources.tar.gz +# wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz +# tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz +# tar czf sems-1.1.1.w_o_ilbc_sources.tar.gz sems-1.1.1 +Source0: sems-1.1.1.w_o_ilbc_sources.tar.gz License: GPLv2+ Group: Applications/Communications # Use external gsm instead of shipped one @@ -17,6 +17,11 @@ Patch3: sems--flite-hardcoded-path-remo Patch4: sems--py_sources_install.diff # module apps/xmlrpc2di uses custoimized version of xmlrpc++ library Patch5: sems--xmlrpc++-use_fedora_cxxflags.diff +# Get rid of stupid makefile_defs condition in Makefile.defs +# which prevents uf from successful building on some Fedora releases +Patch6: sems--makefile_defs_removal.diff +# GCC 4.4 fixes +Patch7: sems--gcc44.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # temporary fix for https://fedorahosted.org/fedora-infrastructure/ticket/1202 #BuildRequires: python >= 2.3 @@ -154,17 +159,21 @@ rm -rf core/plug-in/gsm/gsm-1.0-pl10/ %patch3 -p0 -b .flite_hardcoded %patch4 -p0 -b .py_install_also %patch5 -p0 -b .cxxflags +%patch6 -p0 -b .makefile_defs_removal +%patch7 -p0 -b .gcc44 iconv -f iso8859-1 -t UTF-8 doc/Readme.diameter_client > doc/Readme.diameter_client.utf8 && mv doc/Readme.diameter_client{.utf8,} iconv -f iso8859-1 -t UTF-8 doc/Readme.voicebox > doc/Readme.voicebox.utf8 && mv doc/Readme.voicebox{.utf8,} mv ./apps/dsm/fsmc/readme.txt ./apps/dsm/fsmc/Readme.fsmc.txt %build -make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all +export CPPFLAGS="-D_REENTRANT -DSEMS_VERSION='\"%{version}\"' -DARCH='\"%{_arch}\"' -DOS='\"linux\"' -DUSE_SPANDSP -D__STDC_LIMIT_MACROS -DUSE_LIBSAMPLERATE -Wall -Wno-reorder -fPIC -g" +export CXXFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +export CFLAGS="-Wno-reorder -fPIC $RPM_OPT_FLAGS" +make %{?_smp_mflags} EXTRA_CXXFLAGS="$RPM_OPT_FLAGS" USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" all \ %install rm -rf $RPM_BUILD_ROOT -export CFLAGS="$RPM_OPT_FLAGS" make install USE_SPANDSP="yes" USE_LIBSAMPLERATE="yes" TTS="y" exclude_modules="examples %{!?with_ilbc:ilbc} %{!?with_mp3:mp3}" \ DESTDIR=$RPM_BUILD_ROOT \ basedir= \ @@ -537,6 +546,12 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 +- rebuilt + +* Sun Apr 19 2009 Peter Lemenkov 1.1.0-6 +- Fix building with GCC 4.4 + * Fri Apr 10 2009 Peter Lemenkov 1.1.0-5 - Use modified tarball (with ilBC sources completely removed) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Apr 2009 03:37:36 -0000 1.2 +++ sources 11 Jul 2009 14:49:37 -0000 1.3 @@ -1 +1 @@ -6e794b96f0657f073d458aaafd932952 sems-1.1.0.w_o_ilbc_sources.tar.gz +1faee6a6e7c85babd84288cd7e0ff7cc sems-1.1.1.w_o_ilbc_sources.tar.gz From peter at fedoraproject.org Sat Jul 11 14:55:08 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:55:08 +0000 (UTC) Subject: rpms/sems/devel sems.spec,1.4,1.5 Message-ID: <20090711145508.8A79711C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3451/devel Modified Files: sems.spec Log Message: add accidentally missed %changelog entry Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/sems.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sems.spec 11 Jul 2009 14:38:50 -0000 1.4 +++ sems.spec 11 Jul 2009 14:55:08 -0000 1.5 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 +- Ver. 1.1.1 + * Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 - rebuilt From peter at fedoraproject.org Sat Jul 11 14:55:38 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:55:38 +0000 (UTC) Subject: rpms/sems/EL-5 sems.spec,1.2,1.3 Message-ID: <20090711145538.0CDE611C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3451/EL-5 Modified Files: sems.spec Log Message: add accidentally missed %changelog entry Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-5/sems.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sems.spec 11 Jul 2009 14:48:21 -0000 1.2 +++ sems.spec 11 Jul 2009 14:55:07 -0000 1.3 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 +- Ver. 1.1.1 + * Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 - rebuilt From peter at fedoraproject.org Sat Jul 11 14:55:37 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:55:37 +0000 (UTC) Subject: rpms/sems/EL-4 sems.spec,1.2,1.3 Message-ID: <20090711145537.D789111C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3451/EL-4 Modified Files: sems.spec Log Message: add accidentally missed %changelog entry Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/EL-4/sems.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sems.spec 11 Jul 2009 14:49:37 -0000 1.2 +++ sems.spec 11 Jul 2009 14:55:07 -0000 1.3 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 +- Ver. 1.1.1 + * Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 - rebuilt From peter at fedoraproject.org Sat Jul 11 14:55:38 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:55:38 +0000 (UTC) Subject: rpms/sems/F-10 sems.spec,1.2,1.3 Message-ID: <20090711145538.2A6CC11C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3451/F-10 Modified Files: sems.spec Log Message: add accidentally missed %changelog entry Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-10/sems.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sems.spec 11 Jul 2009 14:42:50 -0000 1.2 +++ sems.spec 11 Jul 2009 14:55:08 -0000 1.3 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 +- Ver. 1.1.1 + * Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 - rebuilt From peter at fedoraproject.org Sat Jul 11 14:55:38 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Sat, 11 Jul 2009 14:55:38 +0000 (UTC) Subject: rpms/sems/F-11 sems.spec,1.3,1.4 Message-ID: <20090711145538.5C47711C00DF@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/sems/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3451/F-11 Modified Files: sems.spec Log Message: add accidentally missed %changelog entry Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/F-11/sems.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sems.spec 11 Jul 2009 14:40:57 -0000 1.3 +++ sems.spec 11 Jul 2009 14:55:08 -0000 1.4 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -546,6 +546,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 +- Ver. 1.1.1 + * Thu Apr 30 2009 J??n ONDREJ (SAL) - 1.1.0-7 - rebuilt From caolanm at fedoraproject.org Sat Jul 11 15:00:38 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:00:38 +0000 (UTC) Subject: rpms/hunspell-is/devel hunspell-is.spec,1.3,1.4 Message-ID: <20090711150038.1AC5011C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-is/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4804 Modified Files: hunspell-is.spec Log Message: tidy spec Index: hunspell-is.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-is/devel/hunspell-is.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-is.spec 25 Feb 2009 04:59:56 -0000 1.3 +++ hunspell-is.spec 11 Jul 2009 15:00:07 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-is Summary: Icelandic hunspell dictionaries %define upstreamid 20060928 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://hunspell.sourceforge.net/is_IS.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries#Icelandic_.28Iceland.29 @@ -20,8 +20,16 @@ Icelandic hunspell dictionaries. %build chmod -x * -iconv -f ISO-8859-1 -t UTF-8 README_is_IS.txt > README_is_IS.txt.new -mv -f README_is_IS.txt.new README_is_IS.txt +for i in README_is_IS.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20060928-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060928-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 15:07:30 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:07:30 +0000 (UTC) Subject: rpms/hunspell-mg/devel hunspell-mg.spec,1.3,1.4 Message-ID: <20090711150730.A9C5211C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-mg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6832 Modified Files: hunspell-mg.spec Log Message: tidy spec Index: hunspell-mg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mg/devel/hunspell-mg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-mg.spec 25 Feb 2009 05:05:23 -0000 1.3 +++ hunspell-mg.spec 11 Jul 2009 15:06:59 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-mg Summary: Malagasy hunspell dictionaries %define upstreamid 20050109 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/mg_MG.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -19,8 +19,16 @@ Malagasy hunspell dictionaries. %setup -q -c -n hunspell-mg %build -iconv -f ISO-8859-1 -t UTF-8 README_mg_MG.txt > README_mg_MG.txt.new -mv -f README_mg_MG.txt.new README_mg_MG.txt +for i in README_mg_MG.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050109-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050109-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 15:15:21 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:15:21 +0000 (UTC) Subject: rpms/hunspell-cy/devel hunspell-cy.spec,1.4,1.5 Message-ID: <20090711151521.B66F311C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-cy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8394 Modified Files: hunspell-cy.spec Log Message: tidy spec Index: hunspell-cy.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cy/devel/hunspell-cy.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-cy.spec 25 Feb 2009 04:34:06 -0000 1.4 +++ hunspell-cy.spec 11 Jul 2009 15:14:51 -0000 1.5 @@ -2,10 +2,10 @@ Name: hunspell-cy Summary: Welsh hunspell dictionaries %define upstreamid 20040425 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://www.e-gymraeg.co.uk/myspell/myspell.zip Group: Applications/Text -URL: http://www.e-gymraeg.co.uk/myspell +URL: http://www.e-gymraeg.co.uk/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: GPL+ BuildArch: noarch @@ -22,8 +22,16 @@ Welsh hunspell dictionaries. unzip PackWelsh.zip unzip cy_GB.zip chmod -x * -tr -d '\r' < README_cy_GB.txt > README_cy_GB.txt.new -mv -f README_cy_GB.txt.new README_cy_GB.txt +for i in README_cy_GB.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -39,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20040425-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040425-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 15:15:56 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:15:56 +0000 (UTC) Subject: rpms/hunspell-en/devel hunspell-en.spec,1.33,1.34 Message-ID: <20090711151556.C6DDB11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8543 Modified Files: hunspell-en.spec Log Message: tidy spec Index: hunspell-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-en/devel/hunspell-en.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- hunspell-en.spec 12 Jun 2009 14:16:09 -0000 1.33 +++ hunspell-en.spec 11 Jul 2009 15:15:26 -0000 1.34 @@ -2,7 +2,7 @@ Name: hunspell-en Summary: English hunspell dictionaries %define upstreamid 20090216 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} #svn co https://wordlist.svn.sourceforge.net/svnroot/wordlist/trunk wordlist Source0: wordlist-%{upstreamid}.tar.bz2 Source1: http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip @@ -34,8 +34,16 @@ English (US, UK, etc.) hunspell dictiona make cd scowl/speller make hunspell -iconv -f ISO-8859-1 -t UTF-8 README_en_CA.txt > ../../README_en_CA.txt -iconv -f ISO-8859-1 -t UTF-8 README_en_US.txt > ../../README_en_US.txt +for i in README_en_CA.txt README_en_US.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -62,10 +70,13 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc README_en_GB.txt README_en_CA.txt README_en_US.txt +%doc README_en_GB.txt scowl/speller/README_en_CA.txt scowl/speller/README_en_US.txt %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20090216-5 +- tidy spec + * Fri Jun 12 2009 Caolan McNamara - 0.20090216-4 - extend coverage From jussilehtola at fedoraproject.org Sat Jul 11 15:16:31 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:16:31 +0000 (UTC) Subject: rpms/pondus/devel import.log, NONE, 1.1 pondus.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711151631.D04EA11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8891/devel Modified Files: .cvsignore sources Added Files: import.log pondus.spec Log Message: Imported in Fedora. --- NEW FILE import.log --- pondus-0_5_3-2_fc11:HEAD:pondus-0.5.3-2.fc11.src.rpm:1247324053 --- NEW FILE pondus.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pondus Version: 0.5.3 Release: 2%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ URL: http://www.ephys.de/software/pondus/ Source0: http://www.ephys.de/software/pondus/pondus-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: python-devel BuildArch: noarch # Required for plotting, not picked up automatically Requires: python-matplotlib %description Pondus is a personal weight management program written in Python and Gtk+2 released under the GPL. It aims to be simple to use, lightweight and fast. The data can be plotted to get a quick overview of the history of your weight. A simple weight planner allows to define "target weights" and this plan can be compared with the actual measurements in a plot. %prep %setup -q %build python setup.py build %install rm -rf %{buildroot} python setup.py install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS PKG-INFO README TODO %{_bindir}/pondus %{_mandir}/man1/pondus.1.* %{_datadir}/applications/pondus.desktop %{_datadir}/pixmaps/pondus.xpm %{_datadir}/icons/hicolor/*/apps/pondus.* %{_datadir}/pondus/ %{python_sitelib}/pondus/ %{python_sitelib}/pondus-*.egg-info %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 - First release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pondus/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 14:17:27 -0000 1.1 +++ .cvsignore 11 Jul 2009 15:16:31 -0000 1.2 @@ -0,0 +1 @@ +pondus-0.5.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pondus/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 14:17:27 -0000 1.1 +++ sources 11 Jul 2009 15:16:31 -0000 1.2 @@ -0,0 +1 @@ +31e17313c18d37fbf646d80dce4b983e pondus-0.5.3.tar.gz From caolanm at fedoraproject.org Sat Jul 11 15:19:27 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:19:27 +0000 (UTC) Subject: rpms/hunspell-no/devel hunspell-no.spec,1.4,1.5 Message-ID: <20090711151927.7C92E11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-no/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9412 Modified Files: hunspell-no.spec Log Message: tidy spec Index: hunspell-no.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-no/devel/hunspell-no.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-no.spec 25 Feb 2009 05:15:23 -0000 1.4 +++ hunspell-no.spec 11 Jul 2009 15:18:57 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-no Summary: Norwegian hunspell dictionaries Version: 2.0.10 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://alioth.debian.org/frs/download.php/2357/no_NO-pack2-%{version}.zip Group: Applications/Text URL: http://spell-norwegian.alioth.debian.org @@ -70,8 +70,14 @@ unzip -q th_nb_NO_v2.zip unzip -q th_nn_NO_v2.zip for i in README_nb_NO.txt README_nn_NO.txt README_hyph_nb_NO.txt \ README_hyph_nn_NO.txt README_th_nb_NO_v2.txt README_th_nn_NO_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install @@ -119,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/th_nn_NO_v2.* %changelog +* Sat Jul 11 2009 Caolan McNamara - 2.0.10-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Sat Jul 11 15:19:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:19:50 +0000 (UTC) Subject: rpms/pondus/EL-5 sources,1.1,1.2 Message-ID: <20090711151950.12B3D11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9516/EL-5 Modified Files: sources Log Message: Imported in Fedora. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pondus/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 14:17:27 -0000 1.1 +++ sources 11 Jul 2009 15:19:19 -0000 1.2 @@ -0,0 +1 @@ +31e17313c18d37fbf646d80dce4b983e pondus-0.5.3.tar.gz From jussilehtola at fedoraproject.org Sat Jul 11 15:19:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:19:50 +0000 (UTC) Subject: rpms/pondus/F-10 sources,1.1,1.2 Message-ID: <20090711151950.4D55A11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9516/F-10 Modified Files: sources Log Message: Imported in Fedora. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pondus/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 14:17:27 -0000 1.1 +++ sources 11 Jul 2009 15:19:20 -0000 1.2 @@ -0,0 +1 @@ +31e17313c18d37fbf646d80dce4b983e pondus-0.5.3.tar.gz From jussilehtola at fedoraproject.org Sat Jul 11 15:19:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:19:50 +0000 (UTC) Subject: rpms/pondus/F-11 sources,1.1,1.2 Message-ID: <20090711151950.7ABC811C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9516/F-11 Modified Files: sources Log Message: Imported in Fedora. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pondus/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 14:17:27 -0000 1.1 +++ sources 11 Jul 2009 15:19:20 -0000 1.2 @@ -0,0 +1 @@ +31e17313c18d37fbf646d80dce4b983e pondus-0.5.3.tar.gz From caolanm at fedoraproject.org Sat Jul 11 15:21:13 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:21:13 +0000 (UTC) Subject: rpms/hunspell-tl/devel hunspell-tl.spec,1.2,1.3 Message-ID: <20090711152113.6265611C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-tl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9869 Modified Files: hunspell-tl.spec Log Message: tidy spec Index: hunspell-tl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tl/devel/hunspell-tl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-tl.spec 25 Feb 2009 05:42:09 -0000 1.2 +++ hunspell-tl.spec 11 Jul 2009 15:20:43 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-tl Summary: Tagalog hunspell dictionaries %define upstreamid 20050109 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/tl_PH.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -19,8 +19,16 @@ Tagalog hunspell dictionaries. %setup -q -c -n hunspell-tl %build -iconv -f ISO-8859-1 -t UTF-8 README_tl_PH.txt > README_tl_PH.txt.new -mv -f README_tl_PH.txt.new README_tl_PH.txt +for i in README_tl_PH.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050109-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050109-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Sat Jul 11 15:22:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:22:34 +0000 (UTC) Subject: rpms/pondus/EL-5 pondus.spec,NONE,1.1 Message-ID: <20090711152234.67F4211C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10346/EL-5 Added Files: pondus.spec Log Message: Imported in Fedora. --- NEW FILE pondus.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pondus Version: 0.5.3 Release: 2%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ URL: http://www.ephys.de/software/pondus/ Source0: http://www.ephys.de/software/pondus/pondus-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: python-devel BuildArch: noarch # Required for plotting, not picked up automatically Requires: python-matplotlib %description Pondus is a personal weight management program written in Python and Gtk+2 released under the GPL. It aims to be simple to use, lightweight and fast. The data can be plotted to get a quick overview of the history of your weight. A simple weight planner allows to define "target weights" and this plan can be compared with the actual measurements in a plot. %prep %setup -q %build python setup.py build %install rm -rf %{buildroot} python setup.py install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS PKG-INFO README TODO %{_bindir}/pondus %{_mandir}/man1/pondus.1.* %{_datadir}/applications/pondus.desktop %{_datadir}/pixmaps/pondus.xpm %{_datadir}/icons/hicolor/*/apps/pondus.* %{_datadir}/pondus/ %{python_sitelib}/pondus/ %{python_sitelib}/pondus-*.egg-info %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 - First release. From jussilehtola at fedoraproject.org Sat Jul 11 15:22:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:22:34 +0000 (UTC) Subject: rpms/pondus/F-10 pondus.spec,NONE,1.1 Message-ID: <20090711152234.940E411C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10346/F-10 Added Files: pondus.spec Log Message: Imported in Fedora. --- NEW FILE pondus.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pondus Version: 0.5.3 Release: 2%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ URL: http://www.ephys.de/software/pondus/ Source0: http://www.ephys.de/software/pondus/pondus-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: python-devel BuildArch: noarch # Required for plotting, not picked up automatically Requires: python-matplotlib %description Pondus is a personal weight management program written in Python and Gtk+2 released under the GPL. It aims to be simple to use, lightweight and fast. The data can be plotted to get a quick overview of the history of your weight. A simple weight planner allows to define "target weights" and this plan can be compared with the actual measurements in a plot. %prep %setup -q %build python setup.py build %install rm -rf %{buildroot} python setup.py install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS PKG-INFO README TODO %{_bindir}/pondus %{_mandir}/man1/pondus.1.* %{_datadir}/applications/pondus.desktop %{_datadir}/pixmaps/pondus.xpm %{_datadir}/icons/hicolor/*/apps/pondus.* %{_datadir}/pondus/ %{python_sitelib}/pondus/ %{python_sitelib}/pondus-*.egg-info %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 - First release. From jussilehtola at fedoraproject.org Sat Jul 11 15:22:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:22:34 +0000 (UTC) Subject: rpms/pondus/F-11 pondus.spec,NONE,1.1 Message-ID: <20090711152234.D7C5711C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10346/F-11 Added Files: pondus.spec Log Message: Imported in Fedora. --- NEW FILE pondus.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pondus Version: 0.5.3 Release: 2%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ URL: http://www.ephys.de/software/pondus/ Source0: http://www.ephys.de/software/pondus/pondus-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: python-devel BuildArch: noarch # Required for plotting, not picked up automatically Requires: python-matplotlib %description Pondus is a personal weight management program written in Python and Gtk+2 released under the GPL. It aims to be simple to use, lightweight and fast. The data can be plotted to get a quick overview of the history of your weight. A simple weight planner allows to define "target weights" and this plan can be compared with the actual measurements in a plot. %prep %setup -q %build python setup.py build %install rm -rf %{buildroot} python setup.py install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop %clean rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS PKG-INFO README TODO %{_bindir}/pondus %{_mandir}/man1/pondus.1.* %{_datadir}/applications/pondus.desktop %{_datadir}/pixmaps/pondus.xpm %{_datadir}/icons/hicolor/*/apps/pondus.* %{_datadir}/pondus/ %{python_sitelib}/pondus/ %{python_sitelib}/pondus-*.egg-info %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 - First release. From caolanm at fedoraproject.org Sat Jul 11 15:26:13 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:26:13 +0000 (UTC) Subject: rpms/hyphen-sv/devel hyphen-sv.spec,1.3,1.4 Message-ID: <20090711152613.6FFAB11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-sv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11041 Modified Files: hyphen-sv.spec Log Message: tidy spec Index: hyphen-sv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sv/devel/hyphen-sv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-sv.spec 25 Feb 2009 06:20:48 -0000 1.3 +++ hyphen-sv.spec 11 Jul 2009 15:25:43 -0000 1.4 @@ -1,7 +1,7 @@ Name: hyphen-sv Summary: Swedish hyphenation rules Version: 1.00.1 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://extensions.services.openoffice.org/files/1966/4/hyph_sv_SE.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/node/1968 @@ -18,9 +18,16 @@ Swedish hyphenation rules. %build chmod -x * -iconv -f ISO-8859-1 -t UTF-8 README_sv_SE.txt > README_sv_SE.txt.new -touch -r README_sv_SE.txt README_sv_SE.txt.new -mv -f README_sv_SE.txt.new README_sv_SE.txt +for i in README_sv_SE.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 1.00.1-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 1.00.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 15:37:47 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:37:47 +0000 (UTC) Subject: rpms/mythes-ga/devel mythes-ga.spec,1.5,1.6 Message-ID: <20090711153747.2E8E611C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-ga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14264 Modified Files: mythes-ga.spec Log Message: tidy spec Index: mythes-ga.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ga/devel/mythes-ga.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-ga.spec 26 Feb 2009 03:53:27 -0000 1.5 +++ mythes-ga.spec 11 Jul 2009 15:37:16 -0000 1.6 @@ -2,7 +2,7 @@ Name: mythes-ga Summary: Irish thesaurus %define upstreamid 20071001 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/thes_ga_IE_v2.zip Group: Applications/Text URL: http://borel.slu.edu/lsg/index-en.html @@ -18,8 +18,16 @@ Irish thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_ga_IE_v2.txt > README_th_ga_IE_v2.txt.new -mv -f README_th_ga_IE_v2.txt.new README_th_ga_IE_v2.txt +for i in README_th_ga_IE_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20071001-4 +- tidy spec + * Wed Feb 25 2009 Fedora Release Engineering - 0.20071001-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 15:38:25 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:38:25 +0000 (UTC) Subject: rpms/mythes-el/devel mythes-el.spec,1.3,1.4 Message-ID: <20090711153825.5256E11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14548 Modified Files: mythes-el.spec Log Message: tidy spec Index: mythes-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-el/devel/mythes-el.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-el.spec 12 Jun 2009 14:11:04 -0000 1.3 +++ mythes-el.spec 11 Jul 2009 15:38:25 -0000 1.4 @@ -2,7 +2,7 @@ Name: mythes-el Summary: Greek thesaurus %define upstreamid 20070412 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://www.ellak.gr/pub/oo_extras/th_el.zip Group: Applications/Text URL: http://www.openthesaurus.gr/ @@ -17,8 +17,16 @@ Greek thesaurus. %setup -q -c %build -iconv -f ISO-8859-7 -t UTF-8 README_th_el_GR_v2.txt > README_th_el_GR_v2.txt.new -mv -f README_th_el_GR_v2.txt.new README_th_el_GR_v2.txt +for i in README_th_el_GR_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-7 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20070412-4 +- tidy spec + * Fri Jun 12 2009 Caolan McNamara - 0.20070412-3 - extend coverage From caolanm at fedoraproject.org Sat Jul 11 15:40:29 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:40:29 +0000 (UTC) Subject: rpms/hyphen-pl/devel hyphen-pl.spec,1.2,1.3 Message-ID: <20090711154029.9262511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15064 Modified Files: hyphen-pl.spec Log Message: tidy spec Index: hyphen-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-pl/devel/hyphen-pl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-pl.spec 25 Feb 2009 06:14:32 -0000 1.2 +++ hyphen-pl.spec 11 Jul 2009 15:40:29 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-pl Summary: Polish hyphenation rules %define upstreamid 20060726 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://pl.openoffice.org/pliki/hyph_pl_PL.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -19,8 +19,16 @@ Polish hyphenation rules. %build unzip hyph_pl_PL.zip -tr -d '\r' < README_hyph_pl_PL.txt > README_hyph_pl_PL.txt.new -iconv -f ISO-8859-2 -t UTF-8 README_hyph_pl_PL.txt.new > README_hyph_pl_PL.txt +for i in README_hyph_pl_PL.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20060726-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060726-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sat Jul 11 15:44:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 15:44:00 +0000 Subject: [pkgdb] qrupdate was added for jussilehtola Message-ID: <20090711154400.74E4110F85A@bastion2.fedora.phx.redhat.com> tibbs has added Package qrupdate with summary A Fortran library for fast updates of QR and Cholesky decompositions tibbs has approved Package qrupdate tibbs has added a Fedora devel branch for qrupdate with an owner of jussilehtola tibbs has approved qrupdate in Fedora devel tibbs has approved Package qrupdate tibbs has set commit to Approved for 107427 on qrupdate (Fedora devel) tibbs has set checkout to Approved for 107427 on qrupdate (Fedora devel) tibbs has set build to Approved for 107427 on qrupdate (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qrupdate From pkgdb at fedoraproject.org Sat Jul 11 15:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 15:44:01 +0000 Subject: [pkgdb] qrupdate summary updated by tibbs Message-ID: <20090711154401.6DBE610F895@bastion2.fedora.phx.redhat.com> tibbs set package qrupdate summary to A Fortran library for fast updates of QR and Cholesky decompositions To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qrupdate From pkgdb at fedoraproject.org Sat Jul 11 15:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 15:44:01 +0000 Subject: [pkgdb] qrupdate (Fedora, 11) updated by tibbs Message-ID: <20090711154401.78E1910F8A5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for qrupdate tibbs has set commit to Approved for 107427 on qrupdate (Fedora 10) tibbs has set checkout to Approved for 107427 on qrupdate (Fedora 10) tibbs has set build to Approved for 107427 on qrupdate (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qrupdate From pkgdb at fedoraproject.org Sat Jul 11 15:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 15:44:01 +0000 Subject: [pkgdb] qrupdate (Fedora, 11) updated by tibbs Message-ID: <20090711154401.81AC310F8A9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for qrupdate tibbs has set commit to Approved for 107427 on qrupdate (Fedora 11) tibbs has set checkout to Approved for 107427 on qrupdate (Fedora 11) tibbs has set build to Approved for 107427 on qrupdate (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qrupdate From pkgdb at fedoraproject.org Sat Jul 11 15:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 15:44:01 +0000 Subject: [pkgdb] qrupdate (Fedora, 11) updated by tibbs Message-ID: <20090711154401.8FFEF10F8AD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for qrupdate tibbs has set commit to Approved for 107427 on qrupdate (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on qrupdate (Fedora EPEL 5) tibbs has set build to Approved for 107427 on qrupdate (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qrupdate From tibbs at fedoraproject.org Sat Jul 11 15:44:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 15:44:08 +0000 (UTC) Subject: rpms/qrupdate - New directory Message-ID: <20090711154408.2007411C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/qrupdate In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ15910/rpms/qrupdate Log Message: Directory /cvs/pkgs/rpms/qrupdate added to the repository From tibbs at fedoraproject.org Sat Jul 11 15:44:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 15:44:08 +0000 (UTC) Subject: rpms/qrupdate/devel - New directory Message-ID: <20090711154408.47C8211C0418@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/qrupdate/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ15910/rpms/qrupdate/devel Log Message: Directory /cvs/pkgs/rpms/qrupdate/devel added to the repository From tibbs at fedoraproject.org Sat Jul 11 15:44:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 15:44:13 +0000 (UTC) Subject: rpms/qrupdate Makefile,NONE,1.1 Message-ID: <20090711154413.E37BC11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/qrupdate In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ15910/rpms/qrupdate Added Files: Makefile Log Message: Setup of module qrupdate --- NEW FILE Makefile --- # Top level Makefile for module qrupdate all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Sat Jul 11 15:44:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 15:44:14 +0000 (UTC) Subject: rpms/qrupdate/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711154414.30D4511C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/qrupdate/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ15910/rpms/qrupdate/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module qrupdate --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: qrupdate # $Id: Makefile,v 1.1 2009/07/11 15:44:14 tibbs Exp $ NAME := qrupdate SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jussilehtola at fedoraproject.org Sat Jul 11 15:47:14 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:47:14 +0000 (UTC) Subject: rpms/pondus/EL-5 pondus.spec,1.1,1.2 Message-ID: <20090711154714.5C1BC11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16530/EL-5 Modified Files: pondus.spec Log Message: Fix EPEL build. Index: pondus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pondus/EL-5/pondus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pondus.spec 11 Jul 2009 15:22:34 -0000 1.1 +++ pondus.spec 11 Jul 2009 15:46:44 -0000 1.2 @@ -2,7 +2,7 @@ Name: pondus Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ @@ -26,6 +26,8 @@ compared with the actual measurements in %prep %setup -q +# Remove Version entry from desktop file +sed -i "/Version/d" data/pondus.desktop %build python setup.py build @@ -38,7 +40,7 @@ python setup.py install -O1 --skip-build # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install -desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop +desktop-file-install --vendor="" --remove-category=GTK %{buildroot}%{_datadir}/applications/pondus.desktop %clean rm -rf %{buildroot} @@ -57,6 +59,9 @@ rm -rf %{buildroot} %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 +- Fix EPEL build. + +* Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 From thm at fedoraproject.org Sat Jul 11 15:48:55 2009 From: thm at fedoraproject.org (Thomas Moschny) Date: Sat, 11 Jul 2009 15:48:55 +0000 (UTC) Subject: rpms/python-markdown2/devel .cvsignore, 1.5, 1.6 import.log, 1.4, 1.5 python-markdown2.spec, 1.6, 1.7 sources, 1.5, 1.6 Message-ID: <20090711154855.150D011C00DF@cvs1.fedora.phx.redhat.com> Author: thm Update of /cvs/pkgs/rpms/python-markdown2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17131/devel Modified Files: .cvsignore import.log python-markdown2.spec sources Log Message: Update to 1.0.1.13. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown2/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 2 Oct 2008 21:58:30 -0000 1.5 +++ .cvsignore 11 Jul 2009 15:48:54 -0000 1.6 @@ -1 +1 @@ -markdown2-1.0.1.11.tar.gz +markdown2-1.0.1.13.zip Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown2/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 2 Oct 2008 21:58:30 -0000 1.4 +++ import.log 11 Jul 2009 15:48:54 -0000 1.5 @@ -2,3 +2,4 @@ python-markdown2-1_0_1_7-1_fc9:HEAD:pyth python-markdown2-1_0_1_8-1_fc9:HEAD:python-markdown2-1.0.1.8-1.fc9.src.rpm:1221168324 python-markdown2-1_0_1_9-1_fc9:HEAD:python-markdown2-1.0.1.9-1.fc9.src.rpm:1221203243 python-markdown2-1_0_1_11-1_fc9:HEAD:python-markdown2-1.0.1.11-1.fc9.src.rpm:1222984575 +python-markdown2-1_0_1_13-1_fc11:HEAD:python-markdown2-1.0.1.13-1.fc11.src.rpm:1247327308 Index: python-markdown2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown2/devel/python-markdown2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-markdown2.spec 26 Feb 2009 22:16:13 -0000 1.6 +++ python-markdown2.spec 11 Jul 2009 15:48:54 -0000 1.7 @@ -3,13 +3,13 @@ %define srcname markdown2 Name: python-%{srcname} -Version: 1.0.1.11 -Release: 3%{?dist} +Version: 1.0.1.13 +Release: 1%{?dist} Summary: A fast and complete Python implementation of Markdown Group: Development/Languages License: MIT URL: http://code.google.com/p/python-%{srcname}/ -Source0: http://pypi.python.org/packages/source/m/%{srcname}/%{srcname}-%{version}.tar.gz +Source0: http://pypi.python.org/packages/source/m/%{srcname}/%{srcname}-%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel @@ -63,6 +63,9 @@ cd test %changelog +* Sat Jul 11 2009 Thomas Moschny - 1.0.1.13-1 +- Update to 1.0.1.13. + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown2/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 2 Oct 2008 21:58:30 -0000 1.5 +++ sources 11 Jul 2009 15:48:54 -0000 1.6 @@ -1 +1 @@ -dbeb26dd3b03a1a2ec8b46fa243b3331 markdown2-1.0.1.11.tar.gz +855dff97a9cbffcf98f0ba395669e52f markdown2-1.0.1.13.zip From jussilehtola at fedoraproject.org Sat Jul 11 15:55:12 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:55:12 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.83,1.84 Message-ID: <20090711155512.C5E1C11C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18496/devel Modified Files: octave.spec Log Message: Try to fix build. Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- octave.spec 11 Jul 2009 13:22:43 -0000 1.83 +++ octave.spec 11 Jul 2009 15:54:42 -0000 1.84 @@ -19,7 +19,7 @@ BuildRequires: ncurses-devel zlib-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel libX11-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils -BuildRequires: GraphicsMagick-c++-devel fltk-devel +BuildRequires: GraphicsMagick-c++-devel fltk-devel tex(latex) # FIXME: Uncomment when qrupdate is available in Fedora #BuildRequires: qrupdate-devel From jussilehtola at fedoraproject.org Sat Jul 11 15:55:36 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:55:36 +0000 (UTC) Subject: rpms/qrupdate/devel import.log, NONE, 1.1 qrupdate.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711155536.4437111C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/qrupdate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18603/devel Modified Files: .cvsignore sources Added Files: import.log qrupdate.spec Log Message: Imported in Fedora. --- NEW FILE import.log --- qrupdate-1_0_1-1_fc11:HEAD:qrupdate-1.0.1-1.fc11.src.rpm:1247327624 --- NEW FILE qrupdate.spec --- Name: qrupdate Version: 1.0.1 Release: 1%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions Group: Development/Libraries License: GPLv3+ URL: http://qrupdate.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: blas-devel BuildRequires: gcc-gfortran BuildRequires: lapack-devel %description qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. %package devel Summary: Development libraries for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the development libraries for %{name}. %prep %setup -q # Modify install location sed -i 's|$(PREFIX)/lib/|$(DESTDIR)%{_libdir}/|g' src/Makefile %build make solib FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %{?_smp_mflags} %install rm -rf %{buildroot} make install-shlib DESTDIR=%{buildroot} PREFIX="" # Verify attributes chmod 755 %{buildroot}%{_libdir}/libqrupdate.* %clean rm -rf %{buildroot} %check make test FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING README %{_libdir}/libqrupdate.so.* %files devel %defattr(-,root,root,-) %{_libdir}/libqrupdate.so %changelog * Sat Jul 11 2009 Jussi Lehtola - 1.0.1-1 - First release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 15:44:13 -0000 1.1 +++ .cvsignore 11 Jul 2009 15:55:06 -0000 1.2 @@ -0,0 +1 @@ +qrupdate-1.0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 15:44:14 -0000 1.1 +++ sources 11 Jul 2009 15:55:06 -0000 1.2 @@ -0,0 +1 @@ +73d87b081e6fb89c9dc5b0ef0773b4dc qrupdate-1.0.1.tar.gz From caolanm at fedoraproject.org Sat Jul 11 15:55:41 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:55:41 +0000 (UTC) Subject: rpms/hyphen-nl/devel hyphen-nl.spec,1.3,1.4 Message-ID: <20090711155541.0084411C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18636 Modified Files: hyphen-nl.spec Log Message: tidy spec Index: hyphen-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-nl/devel/hyphen-nl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-nl.spec 12 Jun 2009 14:40:52 -0000 1.3 +++ hyphen-nl.spec 11 Jul 2009 15:55:10 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-nl Summary: Dutch hyphenation rules %define upstreamid 20050617 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_nl_NL.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -18,8 +18,11 @@ Dutch hyphenation rules. %setup -q -c -n hyphen-nl %build -tr -d '\r' < README_hyph_nl_NL.txt > README_hyph_nl_NL.txt.new -mv -f README_hyph_nl_NL.txt.new README_hyph_nl_NL.txt +for i in README_hyph_nl_NL.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -41,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050617-4 +- tidy spec + * Fri Jun 12 2009 Caolan McNamara - 0.20050617-3 - extend coverage From caolanm at fedoraproject.org Sat Jul 11 15:57:12 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:57:12 +0000 (UTC) Subject: rpms/hunspell-lt/devel hunspell-lt.spec,1.7,1.8 Message-ID: <20090711155712.E3CA411C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-lt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19043 Modified Files: hunspell-lt.spec Log Message: tidy spec Index: hunspell-lt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-lt/devel/hunspell-lt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-lt.spec 10 Jul 2009 08:58:00 -0000 1.7 +++ hunspell-lt.spec 11 Jul 2009 15:56:42 -0000 1.8 @@ -1,7 +1,7 @@ Name: hunspell-lt Summary: Lithuanian hunspell dictionaries Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: ftp://ftp.akl.lt/ispell-lt/lt_LT-%{version}.zip Group: Applications/Text URL: ftp://ftp.akl.lt/ispell-lt/ @@ -19,9 +19,11 @@ Lithuanian hunspell dictionaries. %build chmod -x * -tr -d '\r' < INSTRUKCIJOS.txt > INSTRUKCIJOS.txt.new -touch -r INSTRUKCIJOS.txt INSTRUKCIJOS.txt.new -mv INSTRUKCIJOS.txt.new INSTRUKCIJOS.txt +for i in INSTRUKCIJOS.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 1.2.1-4 +- clean spec + * Fri Jul 10 2009 Caolan McNamara - 1.2.1-3 - clean spec From jussilehtola at fedoraproject.org Sat Jul 11 15:58:49 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:58:49 +0000 (UTC) Subject: rpms/qrupdate/EL-5 qrupdate.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090711155849.8396911C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/qrupdate/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19479/EL-5 Modified Files: sources Added Files: qrupdate.spec Log Message: Imported in Fedora. --- NEW FILE qrupdate.spec --- Name: qrupdate Version: 1.0.1 Release: 1%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions Group: Development/Libraries License: GPLv3+ URL: http://qrupdate.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: blas-devel BuildRequires: gcc-gfortran BuildRequires: lapack-devel %description qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. %package devel Summary: Development libraries for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the development libraries for %{name}. %prep %setup -q # Modify install location sed -i 's|$(PREFIX)/lib/|$(DESTDIR)%{_libdir}/|g' src/Makefile %build make solib FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %{?_smp_mflags} %install rm -rf %{buildroot} make install-shlib DESTDIR=%{buildroot} PREFIX="" # Verify attributes chmod 755 %{buildroot}%{_libdir}/libqrupdate.* %clean rm -rf %{buildroot} %check make test FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING README %{_libdir}/libqrupdate.so.* %files devel %defattr(-,root,root,-) %{_libdir}/libqrupdate.so %changelog * Sat Jul 11 2009 Jussi Lehtola - 1.0.1-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 15:44:14 -0000 1.1 +++ sources 11 Jul 2009 15:58:19 -0000 1.2 @@ -0,0 +1 @@ +73d87b081e6fb89c9dc5b0ef0773b4dc qrupdate-1.0.1.tar.gz From jussilehtola at fedoraproject.org Sat Jul 11 15:58:49 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:58:49 +0000 (UTC) Subject: rpms/qrupdate/F-10 qrupdate.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090711155849.AE3E711C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/qrupdate/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19479/F-10 Modified Files: sources Added Files: qrupdate.spec Log Message: Imported in Fedora. --- NEW FILE qrupdate.spec --- Name: qrupdate Version: 1.0.1 Release: 1%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions Group: Development/Libraries License: GPLv3+ URL: http://qrupdate.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: blas-devel BuildRequires: gcc-gfortran BuildRequires: lapack-devel %description qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. %package devel Summary: Development libraries for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the development libraries for %{name}. %prep %setup -q # Modify install location sed -i 's|$(PREFIX)/lib/|$(DESTDIR)%{_libdir}/|g' src/Makefile %build make solib FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %{?_smp_mflags} %install rm -rf %{buildroot} make install-shlib DESTDIR=%{buildroot} PREFIX="" # Verify attributes chmod 755 %{buildroot}%{_libdir}/libqrupdate.* %clean rm -rf %{buildroot} %check make test FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING README %{_libdir}/libqrupdate.so.* %files devel %defattr(-,root,root,-) %{_libdir}/libqrupdate.so %changelog * Sat Jul 11 2009 Jussi Lehtola - 1.0.1-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 15:44:14 -0000 1.1 +++ sources 11 Jul 2009 15:58:19 -0000 1.2 @@ -0,0 +1 @@ +73d87b081e6fb89c9dc5b0ef0773b4dc qrupdate-1.0.1.tar.gz From jussilehtola at fedoraproject.org Sat Jul 11 15:58:49 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 15:58:49 +0000 (UTC) Subject: rpms/qrupdate/F-11 qrupdate.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090711155849.DC49811C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/qrupdate/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19479/F-11 Modified Files: sources Added Files: qrupdate.spec Log Message: Imported in Fedora. --- NEW FILE qrupdate.spec --- Name: qrupdate Version: 1.0.1 Release: 1%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions Group: Development/Libraries License: GPLv3+ URL: http://qrupdate.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: blas-devel BuildRequires: gcc-gfortran BuildRequires: lapack-devel %description qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. %package devel Summary: Development libraries for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel This package contains the development libraries for %{name}. %prep %setup -q # Modify install location sed -i 's|$(PREFIX)/lib/|$(DESTDIR)%{_libdir}/|g' src/Makefile %build make solib FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %{?_smp_mflags} %install rm -rf %{buildroot} make install-shlib DESTDIR=%{buildroot} PREFIX="" # Verify attributes chmod 755 %{buildroot}%{_libdir}/libqrupdate.* %clean rm -rf %{buildroot} %check make test FC=gfortran FFLAGS="%{optflags} -fimplicit-none -funroll-loops" %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING README %{_libdir}/libqrupdate.so.* %files devel %defattr(-,root,root,-) %{_libdir}/libqrupdate.so %changelog * Sat Jul 11 2009 Jussi Lehtola - 1.0.1-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 15:44:14 -0000 1.1 +++ sources 11 Jul 2009 15:58:19 -0000 1.2 @@ -0,0 +1 @@ +73d87b081e6fb89c9dc5b0ef0773b4dc qrupdate-1.0.1.tar.gz From caolanm at fedoraproject.org Sat Jul 11 15:59:31 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 15:59:31 +0000 (UTC) Subject: rpms/hyphen-de/devel hyphen-de.spec,1.2,1.3 Message-ID: <20090711155931.3CB7A11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19647 Modified Files: hyphen-de.spec Log Message: tidy spec Index: hyphen-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-de/devel/hyphen-de.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-de.spec 25 Feb 2009 06:02:38 -0000 1.2 +++ hyphen-de.spec 11 Jul 2009 15:59:01 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-de Summary: German hyphenation rules %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_DE.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -18,8 +18,16 @@ German hyphenation rules. %setup -q -c -n hyphen-de %build -iconv -f ISO-8859-1 -t UTF-8 README_hyph_de_DE.txt > README_hyph_de_DE.txt.new -mv -f README_hyph_de_DE.txt.new README_hyph_de_DE.txt +for i in README_hyph_de_DE.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20060120-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060120-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Sat Jul 11 16:00:26 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 16:00:26 +0000 (UTC) Subject: rpms/pondus/EL-5 pondus.spec,1.2,1.3 Message-ID: <20090711160026.0CBA011C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20017/EL-5 Modified Files: pondus.spec Log Message: Fix EPEL build. Index: pondus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pondus/EL-5/pondus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pondus.spec 11 Jul 2009 15:46:44 -0000 1.2 +++ pondus.spec 11 Jul 2009 15:59:55 -0000 1.3 @@ -40,7 +40,7 @@ python setup.py install -O1 --skip-build # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install -desktop-file-install --vendor="" --remove-category=GTK %{buildroot}%{_datadir}/applications/pondus.desktop +desktop-file-install --dir=%{buildroot}%{_datadir}/applications --vendor="" --remove-category=GTK data/pondus.desktop %clean rm -rf %{buildroot} From caolanm at fedoraproject.org Sat Jul 11 16:01:51 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:01:51 +0000 (UTC) Subject: rpms/hyphen-sk/devel hyphen-sk.spec,1.3,1.4 Message-ID: <20090711160151.16D6511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20644 Modified Files: hyphen-sk.spec Log Message: tidy spec Index: hyphen-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sk/devel/hyphen-sk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-sk.spec 25 Feb 2009 06:18:46 -0000 1.3 +++ hyphen-sk.spec 11 Jul 2009 16:01:50 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-sk Summary: Slovak hyphenation rules %define upstreamid 20031227 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_sk_SK.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -20,8 +20,16 @@ Slovak hyphenation rules. %build chmod -x * -iconv -f ISO-8859-1 -t UTF-8 README_hyph_sk_SK.txt > README_hyph_sk_SK.txt.new -mv -f README_hyph_sk_SK.txt.new README_hyph_sk_SK.txt +for i in README_hyph_sk_SK.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20031227-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20031227-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From makowski at fedoraproject.org Sat Jul 11 16:02:36 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:02:36 +0000 (UTC) Subject: rpms/firebird/devel README.Fedora, 1.1, 1.2 firebird-fix-initscript.patch, 1.1, 1.2 firebird.spec, 1.3, 1.4 firebird-profile.csh, 1.1, NONE firebird-profile.sh, 1.1, NONE Message-ID: <20090711160236.DCC9C11C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20855 Modified Files: README.Fedora firebird-fix-initscript.patch firebird.spec Removed Files: firebird-profile.csh firebird-profile.sh Log Message: - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora - automatically created user now have /bin/nologin as shell to make things a little more secure Index: README.Fedora =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/README.Fedora,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.Fedora 12 May 2009 11:01:28 -0000 1.1 +++ README.Fedora 11 Jul 2009 16:02:06 -0000 1.2 @@ -5,20 +5,23 @@ Differences between upstream and the Fed environment as provided by upstream may be found in %{fbroot} * Firebird utilities gbak,gsec,gfix,nbackup and gstat have a symlink in /usr/bin - In /usr/bin you have also fbsql symlinked to Firebird isql. + In /usr/bin you have also isql-fb symlinked to Firebird isql. We can't name it isql to avoid conflict with isql from UNIX-ODBC -* According to Fedora packaging rules, for SuperServer, firebird service is not started +* According to Fedora packaging rules, firebird service is not started automatically. You need to start it, as root : - service firebird start. - If you wanted to have Firebird started at each boot, as root : + for SuperServer : + service firebird start + for Classic : + chkconfig firebird on + If you wanted to have firebird Superserver started at each boot, as root : chkconfig --level 345 firebird on * Fedora packages do not use, nor contain the pre-supplied sources for libicu. Fedora packages are used instead. * POSSIBLE INCOMPATIBILITY - In incides on text-based columns (CHRA/VARCHAR), Firebird uses ICU to get + In incides on text-based columns (CHAR/VARCHAR), Firebird uses ICU to get binary-comparable sequences (collations). These collations may be different in different ICU versions. firebird-fix-initscript.patch: Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/firebird-fix-initscript.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- firebird-fix-initscript.patch 4 May 2009 09:03:44 -0000 1.1 +++ firebird-fix-initscript.patch 11 Jul 2009 16:02:06 -0000 1.2 @@ -8,10 +8,15 @@ # No changes needed below for multiple instances FBRunUser=firebird -@@ -39,18 +40,22 @@ - echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser +@@ -37,21 +37,25 @@ + case "$1" in + start) + echo -n "Starting $FULLNAME " +- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser ++ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure +- [ $RETVAL -eq 0 ] && success || failure ++ echo + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name echo ;; Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/firebird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- firebird.spec 23 May 2009 07:55:39 -0000 1.3 +++ firebird.spec 11 Jul 2009 16:02:06 -0000 1.4 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 8%{?dist} +Release: 9%{?dist} Group: Applications/Databases License: Interbase @@ -14,10 +14,8 @@ URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 -Source1: firebird-profile.sh -Source2: firebird-profile.csh -Source3: firebird-logrotate -Source4: README.Fedora +Source1: firebird-logrotate +Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch Patch1: firebird-2.1.2-doc.patch @@ -33,6 +31,7 @@ BuildRequires: libtool BuildRequires: ncurses-devel BuildRequires: libtermcap-devel BuildRequires: libicu-devel +BuildRequires: gcc-c++ Requires: %{name}-arch = %{version}-%{release} Requires: grep @@ -137,9 +136,24 @@ iconv -f ISO-8859-1 -t utf-8 -c ./doc/RE %build # classic +%ifarch sparc64 +export CXXFLAGS='-m64' +export CFLAGS='-m64' +export LDFLAGS='-m64' +%endif +%ifarch sparcv9 +export CXXFLAGS='-m32' +export CFLAGS='-m32' +export LDFLAGS='-m32' +%endif + autoreconf -vfi -%configure --prefix=%{fbroot} \ +%configure --prefix=%{fbroot} \ --with-system-icu + +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -158,10 +172,15 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver -%configure --prefix=%{fbroot} \ +autoreconf -vfi +%configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif + # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -193,6 +212,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/logr mkdir -p %{buildroot}%{_var}/run/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/data +mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/system mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_includedir}/%{name} mkdir -p %{buildroot}%{_libdir} @@ -220,14 +240,14 @@ cp %{_builddir}/%{pkgname}/gen/buildroot cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/UDF/* %{buildroot}%{fbroot}/UDF-superserver/ cd %{buildroot}%{fbroot}/bin-superserver/ -ln -s ./fbmgr.bin ./fbmgr +ln -s fbmgr.bin fbmgr cd %{buildroot} cd %{buildroot}%{fbroot}/lib/ -ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.2.1 -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so -ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.2 -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so +ln -s libfbembed.so.%{major} libfbembed.so.2.1 +ln -s libfbembed.so.2.1 libfbembed.so +ln -s libfbclient.so.%{major} libfbclient.so.2 +ln -s libfbclient.so.2 libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} @@ -237,12 +257,14 @@ ln -s %{fbroot}/lib/libfbembed.so.%{majo ln -s %{fbroot}/lib/libfbclient.so libfbclient.so ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} +ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 +ln -s %{fbroot}/lib/libfbclient.so libgds.so ln -s %{fbroot}/lib/libib_util.so libib_util.so cd %{buildroot} echo 1 > %{buildroot}%{_localstatedir}/log/%{name}/%{name}.log ln -s %{_localstatedir}/log/%{name}/%{name}.log .%{fbroot}/%{name}.log -sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE3} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} +sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/include/* %{buildroot}%{_includedir}/%{name}/ cd %{buildroot}%{fbroot}/include/ @@ -250,29 +272,31 @@ ln -s %{_includedir}/%{name}/ibase.h iba ln -s %{_includedir}/%{name}/iberror.h iberror.h ln -s %{_includedir}/%{name}/ib_util.h ib_util.h ln -s %{_includedir}/%{name}/perf.h perf.h +cd %{buildroot}%{_includedir} +ln -s %{_includedir}/%{name}/ibase.h ibase.h +ln -s %{_includedir}/%{name}/iberror.h iberror.h +ln -s %{_includedir}/%{name}/ib_util.h ib_util.h +ln -s %{_includedir}/%{name}/perf.h perf.h cd %{buildroot} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/aliases.conf .%{_sysconfdir}/%{name}/aliases.conf sed "s@%{fbroot}/examples/empbuild@%{_localstatedir}/lib/%{name}/data@" -i .%{_sysconfdir}/%{name}/aliases.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/firebird.conf .%{_sysconfdir}/%{name}/firebird.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/intl/fbintl.conf .%{_sysconfdir}/%{name}/fbintl.conf -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_sysconfdir}/%{name}/security2.fdb +cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_localstatedir}/lib/%{name}/system/security2.fdb ln -s %{_sysconfdir}/%{name}/aliases.conf .%{fbroot}/aliases.conf ln -s %{_sysconfdir}/%{name}/firebird.conf .%{fbroot}/firebird.conf -ln -s %{_sysconfdir}/%{name}/security2.fdb .%{fbroot}/security2.fdb +ln -s %{_localstatedir}/lib/%{name}/system/security2.fdb .%{fbroot}/security2.fdb ln -s %{_sysconfdir}/%{name}/fbintl.conf .%{fbroot}/intl/fbintl.conf -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/profile.d/firebird.sh -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{buildroot}%{_sysconfdir}/profile.d/firebird.csh - -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/%{name} +sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE4} > %{_builddir}/%{pkgname}/doc/README.Fedora +sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run -ln -s %{fbroot}/bin/isql .%{_bindir}/fbsql +ln -s %{fbroot}/bin/isql .%{_bindir}/isql-fb ln -s %{fbroot}/bin/gbak .%{_bindir}/gbak ln -s %{fbroot}/bin/gfix .%{_bindir}/gfix ln -s %{fbroot}/bin/gsec .%{_bindir}/gsec @@ -292,10 +316,12 @@ rm -Rf %{buildroot} %postun libfbembed -p /sbin/ldconfig %post classic -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-classic" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-classic,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-classic" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-classic,} fi if /sbin/service xinetd status >& /dev/null; then @@ -317,18 +343,15 @@ fi %post superserver -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-superserver" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-superserver,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-superserver" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-superserver,} fi -if [ $1 -eq 2 ]; then - if /sbin/service firebird status >& /dev/null; then - /sbin/service firebird restart - fi -fi if [ $1 -eq 1 ]; then chkconfig firebird off fi @@ -355,7 +378,7 @@ fi %pre # Create the firebird group if it doesn't exist getent group %{name} || /usr/sbin/groupadd -r %{name} -getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/sh -r %{name} +getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/nologin -r %{name} # Add gds_db to /etc/services if needed FileName=/etc/services @@ -376,6 +399,7 @@ rm -Rf %{_var}/run/%{name} %defattr(0644,root,root,0755) %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt +%doc doc/README.Fedora %defattr(0644,root,root,0755) %dir %attr(0755,root,root) %{_localstatedir}/lib/%{name} %dir %attr(0770,%{name},%{name}) %{_localstatedir}/lib/%{name}/data @@ -383,7 +407,7 @@ rm -Rf %{_var}/run/%{name} %dir %{_localstatedir}/log/%{name} %dir %{fbroot}/intl %dir %{_sysconfdir}/%{name} -%config(noreplace) %attr (0660,%{name},%{name}) %{_sysconfdir}/%{name}/security2.fdb +%config(noreplace) %attr (0600,%{name},%{name}) %{_localstatedir}/lib/%{name}/system/security2.fdb %{fbroot}/security2.fdb %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/fbintl.conf %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/aliases.conf @@ -392,19 +416,16 @@ rm -Rf %{_var}/run/%{name} %{fbroot}/firebird.conf %{fbroot}/intl/fbintl.conf %{fbroot}/firebird.log -%attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log +%config(noreplace) %attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name} %{fbroot}/*.msg %{fbroot}/help %{_libdir}/libib_util.so %{fbroot}/lib/libib_util.so -%defattr(0644,root,root,0644) -%config(noreplace) %{_sysconfdir}/profile.d/firebird.csh -%config(noreplace) %{_sysconfdir}/profile.d/firebird.sh %defattr(0755,root,root,0750) %{fbroot}/intl/fbintl %defattr(0755,root,root,0755) -%{_bindir}/fbsql +%{_bindir}/isql-fb %{_bindir}/gbak %{_bindir}/gsec %{_bindir}/gfix @@ -446,6 +467,7 @@ rm -Rf %{_var}/run/%{name} %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt %{_libdir}/libfbclient.so.* +%{_libdir}/libgds.so.0 %{fbroot}/lib/libfbclient.so.* @@ -487,6 +509,12 @@ rm -Rf %{_var}/run/%{name} %changelog +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +- change xinetd script (rh #506528) +- add missing library (and header files) for build php4-interbase module (rh #506728) +- update README.fedora +- automatically created user now have /bin/nologin as shell to make things a little more secure + * Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-8 - patch to fix gcc 4.4.0 and icu 4.2 build error --- firebird-profile.csh DELETED --- --- firebird-profile.sh DELETED --- From caolanm at fedoraproject.org Sat Jul 11 16:06:04 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:06:04 +0000 (UTC) Subject: rpms/hyphen-is/devel hyphen-is.spec,1.2,1.3 Message-ID: <20090711160604.9477F11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-is/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22313 Modified Files: hyphen-is.spec Log Message: tidy spec Index: hyphen-is.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-is/devel/hyphen-is.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-is.spec 25 Feb 2009 06:09:32 -0000 1.2 +++ hyphen-is.spec 11 Jul 2009 16:05:34 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-is Summary: Icelandic hyphenation rules %define upstreamid 20030920 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_is_IS.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -20,8 +20,16 @@ Icelandic hyphenation rules. %build chmod -x * -iconv -f ISO-8859-1 -t UTF-8 README_hyph_is_IS.txt > README_hyph_is_IS.txt.new -mv -f README_hyph_is_IS.txt.new README_hyph_is_IS.txt +for i in README_hyph_is_IS.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20030920-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20030920-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From makowski at fedoraproject.org Sat Jul 11 16:07:22 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:07:22 +0000 (UTC) Subject: rpms/firebird/F-10 firebird-fix-initscript.patch, 1.1, 1.2 firebird.spec, 1.2, 1.3 firebird-profile.csh, 1.1, NONE firebird-profile.sh, 1.1, NONE Message-ID: <20090711160722.9B17211C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22870 Modified Files: firebird-fix-initscript.patch firebird.spec Removed Files: firebird-profile.csh firebird-profile.sh Log Message: - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora - automatically created user now have /bin/nologin as shell to make things a little more secure firebird-fix-initscript.patch: Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/firebird-fix-initscript.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- firebird-fix-initscript.patch 4 May 2009 09:11:03 -0000 1.1 +++ firebird-fix-initscript.patch 11 Jul 2009 16:07:22 -0000 1.2 @@ -8,10 +8,15 @@ # No changes needed below for multiple instances FBRunUser=firebird -@@ -39,18 +40,22 @@ - echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser +@@ -37,21 +37,25 @@ + case "$1" in + start) + echo -n "Starting $FULLNAME " +- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser ++ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure +- [ $RETVAL -eq 0 ] && success || failure ++ echo + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name echo ;; Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/firebird.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird.spec 12 May 2009 11:11:18 -0000 1.2 +++ firebird.spec 11 Jul 2009 16:07:22 -0000 1.3 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 7%{?dist} +Release: 9%{?dist} Group: Applications/Databases License: Interbase @@ -14,15 +14,14 @@ URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 -Source1: firebird-profile.sh -Source2: firebird-profile.csh -Source3: firebird-logrotate -Source4: README.Fedora +Source1: firebird-logrotate +Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch +Patch4: firebird-gcc-icu.patch BuildRequires: autoconf @@ -32,6 +31,7 @@ BuildRequires: libtool BuildRequires: ncurses-devel BuildRequires: libtermcap-devel BuildRequires: libicu-devel +BuildRequires: gcc-c++ Requires: %{name}-arch = %{version}-%{release} Requires: grep @@ -131,13 +131,29 @@ iconv -f ISO-8859-1 -t utf-8 -c ./doc/RE %patch1 %patch0 %patch3 +%patch4 %build # classic +%ifarch sparc64 +export CXXFLAGS='-m64' +export CFLAGS='-m64' +export LDFLAGS='-m64' +%endif +%ifarch sparcv9 +export CXXFLAGS='-m32' +export CFLAGS='-m32' +export LDFLAGS='-m32' +%endif + autoreconf -vfi -%configure --prefix=%{fbroot} \ +%configure --prefix=%{fbroot} \ --with-system-icu + +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -156,10 +172,15 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver -%configure --prefix=%{fbroot} \ +autoreconf -vfi +%configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif + # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -191,6 +212,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/logr mkdir -p %{buildroot}%{_var}/run/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/data +mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/system mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_includedir}/%{name} mkdir -p %{buildroot}%{_libdir} @@ -218,14 +240,14 @@ cp %{_builddir}/%{pkgname}/gen/buildroot cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/UDF/* %{buildroot}%{fbroot}/UDF-superserver/ cd %{buildroot}%{fbroot}/bin-superserver/ -ln -s ./fbmgr.bin ./fbmgr +ln -s fbmgr.bin fbmgr cd %{buildroot} cd %{buildroot}%{fbroot}/lib/ -ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.2.1 -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so -ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.2 -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so +ln -s libfbembed.so.%{major} libfbembed.so.2.1 +ln -s libfbembed.so.2.1 libfbembed.so +ln -s libfbclient.so.%{major} libfbclient.so.2 +ln -s libfbclient.so.2 libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} @@ -235,12 +257,14 @@ ln -s %{fbroot}/lib/libfbembed.so.%{majo ln -s %{fbroot}/lib/libfbclient.so libfbclient.so ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} +ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 +ln -s %{fbroot}/lib/libfbclient.so libgds.so ln -s %{fbroot}/lib/libib_util.so libib_util.so cd %{buildroot} echo 1 > %{buildroot}%{_localstatedir}/log/%{name}/%{name}.log ln -s %{_localstatedir}/log/%{name}/%{name}.log .%{fbroot}/%{name}.log -sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE3} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} +sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/include/* %{buildroot}%{_includedir}/%{name}/ cd %{buildroot}%{fbroot}/include/ @@ -248,29 +272,31 @@ ln -s %{_includedir}/%{name}/ibase.h iba ln -s %{_includedir}/%{name}/iberror.h iberror.h ln -s %{_includedir}/%{name}/ib_util.h ib_util.h ln -s %{_includedir}/%{name}/perf.h perf.h +cd %{buildroot}%{_includedir} +ln -s %{_includedir}/%{name}/ibase.h ibase.h +ln -s %{_includedir}/%{name}/iberror.h iberror.h +ln -s %{_includedir}/%{name}/ib_util.h ib_util.h +ln -s %{_includedir}/%{name}/perf.h perf.h cd %{buildroot} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/aliases.conf .%{_sysconfdir}/%{name}/aliases.conf sed "s@%{fbroot}/examples/empbuild@%{_localstatedir}/lib/%{name}/data@" -i .%{_sysconfdir}/%{name}/aliases.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/firebird.conf .%{_sysconfdir}/%{name}/firebird.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/intl/fbintl.conf .%{_sysconfdir}/%{name}/fbintl.conf -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_sysconfdir}/%{name}/security2.fdb +cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_localstatedir}/lib/%{name}/system/security2.fdb ln -s %{_sysconfdir}/%{name}/aliases.conf .%{fbroot}/aliases.conf ln -s %{_sysconfdir}/%{name}/firebird.conf .%{fbroot}/firebird.conf -ln -s %{_sysconfdir}/%{name}/security2.fdb .%{fbroot}/security2.fdb +ln -s %{_localstatedir}/lib/%{name}/system/security2.fdb .%{fbroot}/security2.fdb ln -s %{_sysconfdir}/%{name}/fbintl.conf .%{fbroot}/intl/fbintl.conf -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/profile.d/firebird.sh -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{buildroot}%{_sysconfdir}/profile.d/firebird.csh - -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/%{name} +sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE4} > %{_builddir}/%{pkgname}/doc/README.Fedora +sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run -ln -s %{fbroot}/bin/isql .%{_bindir}/fbsql +ln -s %{fbroot}/bin/isql .%{_bindir}/isql-fb ln -s %{fbroot}/bin/gbak .%{_bindir}/gbak ln -s %{fbroot}/bin/gfix .%{_bindir}/gfix ln -s %{fbroot}/bin/gsec .%{_bindir}/gsec @@ -290,10 +316,12 @@ rm -Rf %{buildroot} %postun libfbembed -p /sbin/ldconfig %post classic -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-classic" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-classic,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-classic" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-classic,} fi if /sbin/service xinetd status >& /dev/null; then @@ -315,18 +343,15 @@ fi %post superserver -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-superserver" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-superserver,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-superserver" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-superserver,} fi -if [ $1 -eq 2 ]; then - if /sbin/service firebird status >& /dev/null; then - /sbin/service firebird restart - fi -fi if [ $1 -eq 1 ]; then chkconfig firebird off fi @@ -353,7 +378,7 @@ fi %pre # Create the firebird group if it doesn't exist getent group %{name} || /usr/sbin/groupadd -r %{name} -getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/sh -r %{name} +getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/nologin -r %{name} # Add gds_db to /etc/services if needed FileName=/etc/services @@ -374,6 +399,7 @@ rm -Rf %{_var}/run/%{name} %defattr(0644,root,root,0755) %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt +%doc doc/README.Fedora %defattr(0644,root,root,0755) %dir %attr(0755,root,root) %{_localstatedir}/lib/%{name} %dir %attr(0770,%{name},%{name}) %{_localstatedir}/lib/%{name}/data @@ -381,7 +407,7 @@ rm -Rf %{_var}/run/%{name} %dir %{_localstatedir}/log/%{name} %dir %{fbroot}/intl %dir %{_sysconfdir}/%{name} -%config(noreplace) %attr (0660,%{name},%{name}) %{_sysconfdir}/%{name}/security2.fdb +%config(noreplace) %attr (0600,%{name},%{name}) %{_localstatedir}/lib/%{name}/system/security2.fdb %{fbroot}/security2.fdb %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/fbintl.conf %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/aliases.conf @@ -390,19 +416,16 @@ rm -Rf %{_var}/run/%{name} %{fbroot}/firebird.conf %{fbroot}/intl/fbintl.conf %{fbroot}/firebird.log -%attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log +%config(noreplace) %attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name} %{fbroot}/*.msg %{fbroot}/help %{_libdir}/libib_util.so %{fbroot}/lib/libib_util.so -%defattr(0644,root,root,0644) -%config(noreplace) %{_sysconfdir}/profile.d/firebird.csh -%config(noreplace) %{_sysconfdir}/profile.d/firebird.sh %defattr(0755,root,root,0750) %{fbroot}/intl/fbintl %defattr(0755,root,root,0755) -%{_bindir}/fbsql +%{_bindir}/isql-fb %{_bindir}/gbak %{_bindir}/gsec %{_bindir}/gfix @@ -444,6 +467,7 @@ rm -Rf %{_var}/run/%{name} %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt %{_libdir}/libfbclient.so.* +%{_libdir}/libgds.so.0 %{fbroot}/lib/libfbclient.so.* @@ -485,6 +509,15 @@ rm -Rf %{_var}/run/%{name} %changelog +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +- change xinetd script (rh #506528) +- add missing library (and header files) for build php4-interbase module (rh #506728) +- update README.fedora +- automatically created user now have /bin/nologin as shell to make things a little more secure + +* Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-8 +- patch to fix gcc 4.4.0 and icu 4.2 build error + * Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-7 - patch to change lock files location and avoid %%{fbroot} owned by firebird user (rh #500219) - add README.fedora --- firebird-profile.csh DELETED --- --- firebird-profile.sh DELETED --- From caolanm at fedoraproject.org Sat Jul 11 16:09:22 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:09:22 +0000 (UTC) Subject: rpms/hunspell-fj/devel hunspell-fj.spec,1.2,1.3 Message-ID: <20090711160922.3151711C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-fj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23378 Modified Files: hunspell-fj.spec Log Message: tidy spec Index: hunspell-fj.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fj/devel/hunspell-fj.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-fj.spec 25 Feb 2009 04:43:22 -0000 1.2 +++ hunspell-fj.spec 11 Jul 2009 16:09:21 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-fj Summary: Fijian hunspell dictionaries %define upstreamid 20050811 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source0: http://www.iosn.net/pacific-islands/usp-microgrants/fijian-spellchecker/README_fj_FJ.txt Source1: http://www.iosn.net/pacific-islands/usp-microgrants/fijian-spellchecker/fj_FJ.dic @@ -23,8 +23,11 @@ Fijian hunspell dictionaries. cp -p %{SOURCE0} %{SOURCE1} %{SOURCE2} . %build -tr -d '\r' < README_fj_FJ.txt > README_fj_FJ.txt.new -mv -f README_fj_FJ.txt.new README_fj_FJ.txt +for i in README_fj_FJ.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -40,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050811-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050811-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 16:11:26 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:11:26 +0000 (UTC) Subject: rpms/hunspell-la/devel hunspell-la.spec,1.2,1.3 Message-ID: <20090711161126.8B95211C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-la/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23770 Modified Files: hunspell-la.spec Log Message: tidy spec Index: hunspell-la.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-la/devel/hunspell-la.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-la.spec 25 Feb 2009 05:03:36 -0000 1.2 +++ hunspell-la.spec 11 Jul 2009 16:10:56 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-la Summary: Latin hunspell dictionaries %define upstreamid 20080903 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/1141/0/dict-la_2008-09-03.oxt URL: http://extensions.services.openoffice.org/project/dict-la @@ -20,10 +20,16 @@ Latin hunspell dictionaries. %setup -q -c -n hunspell-la %build -tr -d '\r' < README_extension_owner-la.txt > README_extension_owner-la.txt.new -mv -f README_extension_owner-la.txt.new README_extension_owner-la.txt -tr -d '\r' < la/README-la-2008-09-03.txt > la/README-la-2008-09-03.txt.new -iconv -f ISO-8859-1 -t UTF-8 la/README-la-2008-09-03.txt.new > la/README-la-2008-09-03.txt +for i in README_extension_owner-la.txt la/README-la-2008-09-03.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -40,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20080903-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080903-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From makowski at fedoraproject.org Sat Jul 11 16:11:43 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:11:43 +0000 (UTC) Subject: rpms/firebird/F-11 firebird-fix-initscript.patch, 1.1, 1.2 firebird.spec, 1.2, 1.3 firebird-profile.csh, 1.1, NONE firebird-profile.sh, 1.1, NONE Message-ID: <20090711161143.3563C11C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24065 Modified Files: firebird-fix-initscript.patch firebird.spec Removed Files: firebird-profile.csh firebird-profile.sh Log Message: - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora - automatically created user now have /bin/nologin as shell to make things a little more secure firebird-fix-initscript.patch: Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird-fix-initscript.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- firebird-fix-initscript.patch 4 May 2009 09:14:37 -0000 1.1 +++ firebird-fix-initscript.patch 11 Jul 2009 16:11:42 -0000 1.2 @@ -8,10 +8,15 @@ # No changes needed below for multiple instances FBRunUser=firebird -@@ -39,18 +40,22 @@ - echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser +@@ -37,21 +37,25 @@ + case "$1" in + start) + echo -n "Starting $FULLNAME " +- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser ++ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure +- [ $RETVAL -eq 0 ] && success || failure ++ echo + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name echo ;; Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird.spec 12 May 2009 11:18:07 -0000 1.2 +++ firebird.spec 11 Jul 2009 16:11:43 -0000 1.3 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 7%{?dist} +Release: 9%{?dist} Group: Applications/Databases License: Interbase @@ -14,15 +14,14 @@ URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 -Source1: firebird-profile.sh -Source2: firebird-profile.csh -Source3: firebird-logrotate -Source4: README.Fedora +Source1: firebird-logrotate +Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch +Patch4: firebird-gcc-icu.patch BuildRequires: autoconf @@ -32,6 +31,7 @@ BuildRequires: libtool BuildRequires: ncurses-devel BuildRequires: libtermcap-devel BuildRequires: libicu-devel +BuildRequires: gcc-c++ Requires: %{name}-arch = %{version}-%{release} Requires: grep @@ -131,13 +131,29 @@ iconv -f ISO-8859-1 -t utf-8 -c ./doc/RE %patch1 %patch0 %patch3 +%patch4 %build # classic +%ifarch sparc64 +export CXXFLAGS='-m64' +export CFLAGS='-m64' +export LDFLAGS='-m64' +%endif +%ifarch sparcv9 +export CXXFLAGS='-m32' +export CFLAGS='-m32' +export LDFLAGS='-m32' +%endif + autoreconf -vfi -%configure --prefix=%{fbroot} \ +%configure --prefix=%{fbroot} \ --with-system-icu + +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -156,10 +172,15 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver -%configure --prefix=%{fbroot} \ +autoreconf -vfi +%configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif + # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -191,6 +212,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/logr mkdir -p %{buildroot}%{_var}/run/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/data +mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/system mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_includedir}/%{name} mkdir -p %{buildroot}%{_libdir} @@ -218,14 +240,14 @@ cp %{_builddir}/%{pkgname}/gen/buildroot cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/UDF/* %{buildroot}%{fbroot}/UDF-superserver/ cd %{buildroot}%{fbroot}/bin-superserver/ -ln -s ./fbmgr.bin ./fbmgr +ln -s fbmgr.bin fbmgr cd %{buildroot} cd %{buildroot}%{fbroot}/lib/ -ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.2.1 -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so -ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.2 -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so +ln -s libfbembed.so.%{major} libfbembed.so.2.1 +ln -s libfbembed.so.2.1 libfbembed.so +ln -s libfbclient.so.%{major} libfbclient.so.2 +ln -s libfbclient.so.2 libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} @@ -235,12 +257,14 @@ ln -s %{fbroot}/lib/libfbembed.so.%{majo ln -s %{fbroot}/lib/libfbclient.so libfbclient.so ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} +ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 +ln -s %{fbroot}/lib/libfbclient.so libgds.so ln -s %{fbroot}/lib/libib_util.so libib_util.so cd %{buildroot} echo 1 > %{buildroot}%{_localstatedir}/log/%{name}/%{name}.log ln -s %{_localstatedir}/log/%{name}/%{name}.log .%{fbroot}/%{name}.log -sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE3} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} +sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/include/* %{buildroot}%{_includedir}/%{name}/ cd %{buildroot}%{fbroot}/include/ @@ -248,29 +272,31 @@ ln -s %{_includedir}/%{name}/ibase.h iba ln -s %{_includedir}/%{name}/iberror.h iberror.h ln -s %{_includedir}/%{name}/ib_util.h ib_util.h ln -s %{_includedir}/%{name}/perf.h perf.h +cd %{buildroot}%{_includedir} +ln -s %{_includedir}/%{name}/ibase.h ibase.h +ln -s %{_includedir}/%{name}/iberror.h iberror.h +ln -s %{_includedir}/%{name}/ib_util.h ib_util.h +ln -s %{_includedir}/%{name}/perf.h perf.h cd %{buildroot} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/aliases.conf .%{_sysconfdir}/%{name}/aliases.conf sed "s@%{fbroot}/examples/empbuild@%{_localstatedir}/lib/%{name}/data@" -i .%{_sysconfdir}/%{name}/aliases.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/firebird.conf .%{_sysconfdir}/%{name}/firebird.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/intl/fbintl.conf .%{_sysconfdir}/%{name}/fbintl.conf -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_sysconfdir}/%{name}/security2.fdb +cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_localstatedir}/lib/%{name}/system/security2.fdb ln -s %{_sysconfdir}/%{name}/aliases.conf .%{fbroot}/aliases.conf ln -s %{_sysconfdir}/%{name}/firebird.conf .%{fbroot}/firebird.conf -ln -s %{_sysconfdir}/%{name}/security2.fdb .%{fbroot}/security2.fdb +ln -s %{_localstatedir}/lib/%{name}/system/security2.fdb .%{fbroot}/security2.fdb ln -s %{_sysconfdir}/%{name}/fbintl.conf .%{fbroot}/intl/fbintl.conf -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/profile.d/firebird.sh -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{buildroot}%{_sysconfdir}/profile.d/firebird.csh - -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/%{name} +sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE4} > %{_builddir}/%{pkgname}/doc/README.Fedora +sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run -ln -s %{fbroot}/bin/isql .%{_bindir}/fbsql +ln -s %{fbroot}/bin/isql .%{_bindir}/isql-fb ln -s %{fbroot}/bin/gbak .%{_bindir}/gbak ln -s %{fbroot}/bin/gfix .%{_bindir}/gfix ln -s %{fbroot}/bin/gsec .%{_bindir}/gsec @@ -290,10 +316,12 @@ rm -Rf %{buildroot} %postun libfbembed -p /sbin/ldconfig %post classic -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-classic" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-classic,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-classic" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-classic,} fi if /sbin/service xinetd status >& /dev/null; then @@ -315,18 +343,15 @@ fi %post superserver -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-superserver" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-superserver,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-superserver" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-superserver,} fi -if [ $1 -eq 2 ]; then - if /sbin/service firebird status >& /dev/null; then - /sbin/service firebird restart - fi -fi if [ $1 -eq 1 ]; then chkconfig firebird off fi @@ -353,7 +378,7 @@ fi %pre # Create the firebird group if it doesn't exist getent group %{name} || /usr/sbin/groupadd -r %{name} -getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/sh -r %{name} +getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/nologin -r %{name} # Add gds_db to /etc/services if needed FileName=/etc/services @@ -374,6 +399,7 @@ rm -Rf %{_var}/run/%{name} %defattr(0644,root,root,0755) %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt +%doc doc/README.Fedora %defattr(0644,root,root,0755) %dir %attr(0755,root,root) %{_localstatedir}/lib/%{name} %dir %attr(0770,%{name},%{name}) %{_localstatedir}/lib/%{name}/data @@ -381,7 +407,7 @@ rm -Rf %{_var}/run/%{name} %dir %{_localstatedir}/log/%{name} %dir %{fbroot}/intl %dir %{_sysconfdir}/%{name} -%config(noreplace) %attr (0660,%{name},%{name}) %{_sysconfdir}/%{name}/security2.fdb +%config(noreplace) %attr (0600,%{name},%{name}) %{_localstatedir}/lib/%{name}/system/security2.fdb %{fbroot}/security2.fdb %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/fbintl.conf %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/aliases.conf @@ -390,19 +416,16 @@ rm -Rf %{_var}/run/%{name} %{fbroot}/firebird.conf %{fbroot}/intl/fbintl.conf %{fbroot}/firebird.log -%attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log +%config(noreplace) %attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name} %{fbroot}/*.msg %{fbroot}/help %{_libdir}/libib_util.so %{fbroot}/lib/libib_util.so -%defattr(0644,root,root,0644) -%config(noreplace) %{_sysconfdir}/profile.d/firebird.csh -%config(noreplace) %{_sysconfdir}/profile.d/firebird.sh %defattr(0755,root,root,0750) %{fbroot}/intl/fbintl %defattr(0755,root,root,0755) -%{_bindir}/fbsql +%{_bindir}/isql-fb %{_bindir}/gbak %{_bindir}/gsec %{_bindir}/gfix @@ -444,6 +467,7 @@ rm -Rf %{_var}/run/%{name} %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt %{_libdir}/libfbclient.so.* +%{_libdir}/libgds.so.0 %{fbroot}/lib/libfbclient.so.* @@ -485,6 +509,15 @@ rm -Rf %{_var}/run/%{name} %changelog +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +- change xinetd script (rh #506528) +- add missing library (and header files) for build php4-interbase module (rh #506728) +- update README.fedora +- automatically created user now have /bin/nologin as shell to make things a little more secure + +* Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-8 +- patch to fix gcc 4.4.0 and icu 4.2 build error + * Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-7 - patch to change lock files location and avoid %%{fbroot} owned by firebird user (rh #500219) - add README.fedora --- firebird-profile.csh DELETED --- --- firebird-profile.sh DELETED --- From caolanm at fedoraproject.org Sat Jul 11 16:12:48 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:12:48 +0000 (UTC) Subject: rpms/hunspell-sw/devel hunspell-sw.spec,1.2,1.3 Message-ID: <20090711161248.A16E711C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-sw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24258 Modified Files: hunspell-sw.spec Log Message: tidy spec Index: hunspell-sw.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sw/devel/hunspell-sw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-sw.spec 25 Feb 2009 05:36:08 -0000 1.2 +++ hunspell-sw.spec 11 Jul 2009 16:12:18 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-sw Summary: Swahili hunspell dictionaries %define upstreamid 20050819 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://www.it46.se/downloads/openoffice/dictionary/dictionary_myspell_sw_TZ_1.1.tar.gz URL: http://www.it46.se @@ -20,8 +20,16 @@ Swahili hunspell dictionaries. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_sw_TZ.txt > README_sw_TZ.txt.new -mv -f README_sw_TZ.txt.new README_sw_TZ.txt +for i in README_sw_TZ.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -44,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050819-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050819-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sandeen at fedoraproject.org Sat Jul 11 16:13:34 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Sat, 11 Jul 2009 16:13:34 +0000 (UTC) Subject: rpms/fio/devel .cvsignore,1.8,1.9 fio.spec,1.8,1.9 sources,1.8,1.9 Message-ID: <20090711161334.3AF7811C00DF@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/fio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24670 Modified Files: .cvsignore fio.spec sources Log Message: * Sat Jul 11 2009 Eric Sandeen 1.31-1 - Much newer upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 6 Mar 2009 23:39:23 -0000 1.8 +++ .cvsignore 11 Jul 2009 16:13:33 -0000 1.9 @@ -1 +1 @@ -fio-1.24.tar.bz2 +fio-1.31.tar.bz2 Index: fio.spec =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/fio.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fio.spec 6 Mar 2009 23:39:23 -0000 1.8 +++ fio.spec 11 Jul 2009 16:13:34 -0000 1.9 @@ -1,5 +1,5 @@ Name: fio -Version: 1.24 +Version: 1.31 Release: 1%{?dist} Summary: Multithreaded IO generation tool @@ -21,7 +21,7 @@ The typical use of fio is to write a job one wants to simulate. %prep -%setup -q -n fio +%setup -q %build EXTFLAGS="$RPM_OPT_FLAGS" make V=1 %{?_smp_mflags} @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 11 2009 Eric Sandeen 1.31-1 +- Much newer upstream version + * Fri Mar 06 2009 Eric Sandeen 1.24-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 6 Mar 2009 23:39:23 -0000 1.8 +++ sources 11 Jul 2009 16:13:34 -0000 1.9 @@ -1 +1 @@ -aa1f38c61ff957f89004f02a76deb524 fio-1.24.tar.bz2 +23b305d4f878d3bb7d62b3bd2c80b018 fio-1.31.tar.bz2 From makowski at fedoraproject.org Sat Jul 11 16:13:54 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:13:54 +0000 (UTC) Subject: rpms/firebird/EL-4 firebird-fix-initscript.patch, 1.1, 1.2 firebird.spec, 1.2, 1.3 firebird-profile.csh, 1.1, NONE firebird-profile.sh, 1.1, NONE Message-ID: <20090711161354.E36FB11C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24836 Modified Files: firebird-fix-initscript.patch firebird.spec Removed Files: firebird-profile.csh firebird-profile.sh Log Message: - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora - automatically created user now have /bin/nologin as shell to make things a little more secure firebird-fix-initscript.patch: Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/firebird-fix-initscript.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- firebird-fix-initscript.patch 4 May 2009 09:17:22 -0000 1.1 +++ firebird-fix-initscript.patch 11 Jul 2009 16:13:54 -0000 1.2 @@ -8,10 +8,15 @@ # No changes needed below for multiple instances FBRunUser=firebird -@@ -39,18 +40,22 @@ - echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser +@@ -37,21 +37,25 @@ + case "$1" in + start) + echo -n "Starting $FULLNAME " +- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser ++ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure +- [ $RETVAL -eq 0 ] && success || failure ++ echo + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name echo ;; Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/firebird.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird.spec 12 May 2009 12:10:46 -0000 1.2 +++ firebird.spec 11 Jul 2009 16:13:54 -0000 1.3 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 7%{?dist} +Release: 9%{?dist} Group: Applications/Databases License: Interbase @@ -14,15 +14,14 @@ URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 -Source1: firebird-profile.sh -Source2: firebird-profile.csh -Source3: firebird-logrotate -Source4: README.Fedora +Source1: firebird-logrotate +Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch +Patch4: firebird-gcc-icu.patch BuildRequires: autoconf @@ -32,6 +31,7 @@ BuildRequires: libtool BuildRequires: ncurses-devel BuildRequires: libtermcap-devel BuildRequires: libicu-devel +BuildRequires: gcc-c++ Requires: %{name}-arch = %{version}-%{release} Requires: grep @@ -131,13 +131,29 @@ iconv -f ISO-8859-1 -t utf-8 -c ./doc/RE %patch1 %patch0 %patch3 +%patch4 %build # classic +%ifarch sparc64 +export CXXFLAGS='-m64' +export CFLAGS='-m64' +export LDFLAGS='-m64' +%endif +%ifarch sparcv9 +export CXXFLAGS='-m32' +export CFLAGS='-m32' +export LDFLAGS='-m32' +%endif + autoreconf -vfi -%configure --prefix=%{fbroot} \ +%configure --prefix=%{fbroot} \ --with-system-icu + +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -156,10 +172,15 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver -%configure --prefix=%{fbroot} \ +autoreconf -vfi +%configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif + # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -191,6 +212,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/logr mkdir -p %{buildroot}%{_var}/run/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/data +mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/system mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_includedir}/%{name} mkdir -p %{buildroot}%{_libdir} @@ -218,14 +240,14 @@ cp %{_builddir}/%{pkgname}/gen/buildroot cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/UDF/* %{buildroot}%{fbroot}/UDF-superserver/ cd %{buildroot}%{fbroot}/bin-superserver/ -ln -s ./fbmgr.bin ./fbmgr +ln -s fbmgr.bin fbmgr cd %{buildroot} cd %{buildroot}%{fbroot}/lib/ -ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.2.1 -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so -ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.2 -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so +ln -s libfbembed.so.%{major} libfbembed.so.2.1 +ln -s libfbembed.so.2.1 libfbembed.so +ln -s libfbclient.so.%{major} libfbclient.so.2 +ln -s libfbclient.so.2 libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} @@ -235,12 +257,14 @@ ln -s %{fbroot}/lib/libfbembed.so.%{majo ln -s %{fbroot}/lib/libfbclient.so libfbclient.so ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} +ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 +ln -s %{fbroot}/lib/libfbclient.so libgds.so ln -s %{fbroot}/lib/libib_util.so libib_util.so cd %{buildroot} echo 1 > %{buildroot}%{_localstatedir}/log/%{name}/%{name}.log ln -s %{_localstatedir}/log/%{name}/%{name}.log .%{fbroot}/%{name}.log -sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE3} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} +sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/include/* %{buildroot}%{_includedir}/%{name}/ cd %{buildroot}%{fbroot}/include/ @@ -248,29 +272,31 @@ ln -s %{_includedir}/%{name}/ibase.h iba ln -s %{_includedir}/%{name}/iberror.h iberror.h ln -s %{_includedir}/%{name}/ib_util.h ib_util.h ln -s %{_includedir}/%{name}/perf.h perf.h +cd %{buildroot}%{_includedir} +ln -s %{_includedir}/%{name}/ibase.h ibase.h +ln -s %{_includedir}/%{name}/iberror.h iberror.h +ln -s %{_includedir}/%{name}/ib_util.h ib_util.h +ln -s %{_includedir}/%{name}/perf.h perf.h cd %{buildroot} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/aliases.conf .%{_sysconfdir}/%{name}/aliases.conf sed "s@%{fbroot}/examples/empbuild@%{_localstatedir}/lib/%{name}/data@" -i .%{_sysconfdir}/%{name}/aliases.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/firebird.conf .%{_sysconfdir}/%{name}/firebird.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/intl/fbintl.conf .%{_sysconfdir}/%{name}/fbintl.conf -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_sysconfdir}/%{name}/security2.fdb +cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_localstatedir}/lib/%{name}/system/security2.fdb ln -s %{_sysconfdir}/%{name}/aliases.conf .%{fbroot}/aliases.conf ln -s %{_sysconfdir}/%{name}/firebird.conf .%{fbroot}/firebird.conf -ln -s %{_sysconfdir}/%{name}/security2.fdb .%{fbroot}/security2.fdb +ln -s %{_localstatedir}/lib/%{name}/system/security2.fdb .%{fbroot}/security2.fdb ln -s %{_sysconfdir}/%{name}/fbintl.conf .%{fbroot}/intl/fbintl.conf -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/profile.d/firebird.sh -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{buildroot}%{_sysconfdir}/profile.d/firebird.csh - -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/%{name} +sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE4} > %{_builddir}/%{pkgname}/doc/README.Fedora +sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run -ln -s %{fbroot}/bin/isql .%{_bindir}/fbsql +ln -s %{fbroot}/bin/isql .%{_bindir}/isql-fb ln -s %{fbroot}/bin/gbak .%{_bindir}/gbak ln -s %{fbroot}/bin/gfix .%{_bindir}/gfix ln -s %{fbroot}/bin/gsec .%{_bindir}/gsec @@ -290,10 +316,12 @@ rm -Rf %{buildroot} %postun libfbembed -p /sbin/ldconfig %post classic -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-classic" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-classic,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-classic" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-classic,} fi if /sbin/service xinetd status >& /dev/null; then @@ -315,18 +343,15 @@ fi %post superserver -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-superserver" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-superserver,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-superserver" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-superserver,} fi -if [ $1 -eq 2 ]; then - if /sbin/service firebird status >& /dev/null; then - /sbin/service firebird restart - fi -fi if [ $1 -eq 1 ]; then chkconfig firebird off fi @@ -353,7 +378,7 @@ fi %pre # Create the firebird group if it doesn't exist getent group %{name} || /usr/sbin/groupadd -r %{name} -getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/sh -r %{name} +getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/nologin -r %{name} # Add gds_db to /etc/services if needed FileName=/etc/services @@ -374,6 +399,7 @@ rm -Rf %{_var}/run/%{name} %defattr(0644,root,root,0755) %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt +%doc doc/README.Fedora %defattr(0644,root,root,0755) %dir %attr(0755,root,root) %{_localstatedir}/lib/%{name} %dir %attr(0770,%{name},%{name}) %{_localstatedir}/lib/%{name}/data @@ -381,7 +407,7 @@ rm -Rf %{_var}/run/%{name} %dir %{_localstatedir}/log/%{name} %dir %{fbroot}/intl %dir %{_sysconfdir}/%{name} -%config(noreplace) %attr (0660,%{name},%{name}) %{_sysconfdir}/%{name}/security2.fdb +%config(noreplace) %attr (0600,%{name},%{name}) %{_localstatedir}/lib/%{name}/system/security2.fdb %{fbroot}/security2.fdb %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/fbintl.conf %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/aliases.conf @@ -390,19 +416,16 @@ rm -Rf %{_var}/run/%{name} %{fbroot}/firebird.conf %{fbroot}/intl/fbintl.conf %{fbroot}/firebird.log -%attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log +%config(noreplace) %attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name} %{fbroot}/*.msg %{fbroot}/help %{_libdir}/libib_util.so %{fbroot}/lib/libib_util.so -%defattr(0644,root,root,0644) -%config(noreplace) %{_sysconfdir}/profile.d/firebird.csh -%config(noreplace) %{_sysconfdir}/profile.d/firebird.sh %defattr(0755,root,root,0750) %{fbroot}/intl/fbintl %defattr(0755,root,root,0755) -%{_bindir}/fbsql +%{_bindir}/isql-fb %{_bindir}/gbak %{_bindir}/gsec %{_bindir}/gfix @@ -444,6 +467,7 @@ rm -Rf %{_var}/run/%{name} %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt %{_libdir}/libfbclient.so.* +%{_libdir}/libgds.so.0 %{fbroot}/lib/libfbclient.so.* @@ -485,6 +509,15 @@ rm -Rf %{_var}/run/%{name} %changelog +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +- change xinetd script (rh #506528) +- add missing library (and header files) for build php4-interbase module (rh #506728) +- update README.fedora +- automatically created user now have /bin/nologin as shell to make things a little more secure + +* Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-8 +- patch to fix gcc 4.4.0 and icu 4.2 build error + * Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-7 - patch to change lock files location and avoid %%{fbroot} owned by firebird user (rh #500219) - add README.fedora --- firebird-profile.csh DELETED --- --- firebird-profile.sh DELETED --- From caolanm at fedoraproject.org Sat Jul 11 16:14:15 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:14:15 +0000 (UTC) Subject: rpms/hunspell-cop/devel hunspell-cop.spec,1.3,1.4 Message-ID: <20090711161415.776C011C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-cop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24920 Modified Files: hunspell-cop.spec Log Message: tidy spec Index: hunspell-cop.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cop/devel/hunspell-cop.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-cop.spec 25 Feb 2009 04:32:16 -0000 1.3 +++ hunspell-cop.spec 11 Jul 2009 16:14:15 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-cop Summary: Coptic hunspell dictionaries Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/793/1/dictionaries-cop.oxt URL: http://www.moheb.de/coptic_oo.html @@ -19,8 +19,11 @@ Coptic hunspell dictionaries. %setup -q -c %build -tr -d '\r' < README.txt > README.txt.new -mv -f README.txt.new README.txt +for i in README.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.2.0-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 16:17:02 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:17:02 +0000 (UTC) Subject: rpms/mythes-ca/devel mythes-ca.spec,1.4,1.5 Message-ID: <20090711161702.E6C7311C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25506 Modified Files: mythes-ca.spec Log Message: remove rpmlint warnings Index: mythes-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ca/devel/mythes-ca.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-ca.spec 27 Mar 2009 08:24:49 -0000 1.4 +++ mythes-ca.spec 11 Jul 2009 16:16:32 -0000 1.5 @@ -1,7 +1,7 @@ Name: mythes-ca Summary: Catalan thesaurus Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.softcatala.org/diccionaris/actualitzacions/sinonims/thesaurus-ca.oxt Group: Applications/Text URL: http://www.softcatala.org/wiki/Projectes/Openthesaurus-ca @@ -16,8 +16,11 @@ Catalan thesaurus. %setup -q -c %build -tr -d '\r' < release_note-ca.txt > release_note-ca.txt.new -mv -f release_note-ca.txt.new release_note-ca.txt +for i in release_note-ca.txt dictionaries/README_th_ca_ES_v3.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caol??n McNamara - 1.5.0-2 +- tidy spec + * Fri Mar 27 2009 Caol??n McNamara - 1.5.0-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 16:18:14 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:18:14 +0000 (UTC) Subject: rpms/mythes-da/devel mythes-da.spec,1.3,1.4 Message-ID: <20090711161814.4957011C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-da/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25907 Modified Files: mythes-da.spec Log Message: tidy spec Index: mythes-da.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-da/devel/mythes-da.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-da.spec 23 May 2009 13:21:27 -0000 1.3 +++ mythes-da.spec 11 Jul 2009 16:18:14 -0000 1.4 @@ -2,7 +2,7 @@ Name: mythes-da Summary: Danish thesaurus %define upstreamid 20090522 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/1388/9/DanskeSynonymer.oxt Group: Applications/Text URL: http://synonym.oooforum.dk @@ -17,12 +17,11 @@ Danish thesaurus. %setup -q -c %build -tr -d '\r' < README_th_da_DK.txt > README_th_da_DK.txt.new -touch -r README_th_da_DK.txt README_th_da_DK.txt.new -mv -f README_th_da_DK.txt.new README_th_da_DK.txt -tr -d '\r' < README_th_en-US.txt > README_th_en-US.txt.new -touch -r README_th_en-US.txt README_th_en-US.txt.new -mv -f README_th_en-US.txt.new README_th_en-US.txt +for i in README_th_da_DK.txt README_th_da_DK.txt README_th_en-US.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -40,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caol??n McNamara - 0.20090522-2 +- tidy spec + * Sat May 23 2009 Caol??n McNamara - 0.20090522-1 - latest version From caolanm at fedoraproject.org Sat Jul 11 16:20:39 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:20:39 +0000 (UTC) Subject: rpms/hunspell-kk/devel hunspell-kk.spec,1.2,1.3 Message-ID: <20090711162039.8D36211C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-kk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26376 Modified Files: hunspell-kk.spec Log Message: tidy spec Index: hunspell-kk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-kk/devel/hunspell-kk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-kk.spec 28 Apr 2009 10:09:30 -0000 1.2 +++ hunspell-kk.spec 11 Jul 2009 16:20:09 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-kk Summary: Kazakh hunspell dictionaries Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/1172/7/dict-kk.oxt URL: http://extensions.services.openoffice.org/node/2240 @@ -18,9 +18,11 @@ Kazakh hunspell dictionaries. %setup -q -c -n hunspell-kk %build -tr -d '\r' < README_kk_KZ.txt > README_kk_KZ.txt.new -touch -r README_kk_KZ.txt README_kk_KZ.txt.new -mv -f README_kk_KZ.txt.new README_kk_KZ.txt +for i in README_kk_KZ.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,5 +39,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 1.0-2 +- tidy spec + * Mon Apr 20 2009 Caolan McNamara - 1.0-1 - initial version From caolanm at fedoraproject.org Sat Jul 11 16:21:59 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:21:59 +0000 (UTC) Subject: rpms/hunspell-tet/devel hunspell-tet.spec,1.3,1.4 Message-ID: <20090711162159.EE19511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-tet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26700 Modified Files: hunspell-tet.spec Log Message: tidy spec Index: hunspell-tet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tet/devel/hunspell-tet.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-tet.spec 25 Feb 2009 05:39:09 -0000 1.3 +++ hunspell-tet.spec 11 Jul 2009 16:21:29 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-tet Summary: Tetum hunspell dictionaries %define upstreamid 20050108 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/tet_ID.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -19,8 +19,16 @@ Tetum hunspell dictionaries. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_tet_ID.txt > README_tet_ID.txt.new -mv -f README_tet_ID.txt.new README_tet_ID.txt +for i in README_tet_ID.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -43,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050108-4 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050108-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From makowski at fedoraproject.org Sat Jul 11 16:24:53 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:24:53 +0000 (UTC) Subject: rpms/firebird/EL-4 firebird-gcc-icu.patch, NONE, 1.1 firebird.spec, 1.3, 1.4 Message-ID: <20090711162453.5D3E411C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27268 Modified Files: firebird.spec Added Files: firebird-gcc-icu.patch Log Message: firebird-gcc-icu.patch: --- NEW FILE firebird-gcc-icu.patch --- # Author: Adriano dos Santos Fernandes #Index: src/common/classes/alloc.h #=================================================================== #RCS file: /cvsroot/firebird/firebird2/src/common/classes/alloc.h,v #retrieving revision 1.71 diff -u -p -r1.71 alloc.h --- src/common/classes/alloc.h 26 Sep 2007 17:48:20 -0000 1.71 +++ src/common/classes/alloc.h 20 May 2009 02:20:08 -0000 @@ -47,6 +47,7 @@ #include /* XPG: prototypes for malloc/free have to be in stdlib.h (EKU) */ #endif +#include #ifdef _MSC_VER #define THROW_BAD_ALLOC @@ -448,15 +449,6 @@ inline void* operator new[](size_t s) TH ); } -inline void* operator new(size_t, void* ptr) throw() -{ - return ptr; -} -inline void* operator new[](size_t, void* ptr) throw() -{ - return ptr; -} - inline void operator delete(void* mem) throw() { Firebird::MemoryPool::globalFree(mem); Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/firebird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- firebird.spec 11 Jul 2009 16:13:54 -0000 1.3 +++ firebird.spec 11 Jul 2009 16:24:23 -0000 1.4 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 9%{?dist} +Release: 10%{?dist} Group: Applications/Databases License: Interbase @@ -509,7 +509,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora From makowski at fedoraproject.org Sat Jul 11 16:27:42 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:27:42 +0000 (UTC) Subject: rpms/firebird/F-11 firebird-gcc-icu.patch, NONE, 1.1 firebird.spec, 1.3, 1.4 Message-ID: <20090711162742.EA1BF11C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28096 Modified Files: firebird.spec Added Files: firebird-gcc-icu.patch Log Message: patch icu firebird-gcc-icu.patch: --- NEW FILE firebird-gcc-icu.patch --- # Author: Adriano dos Santos Fernandes #Index: src/common/classes/alloc.h #=================================================================== #RCS file: /cvsroot/firebird/firebird2/src/common/classes/alloc.h,v #retrieving revision 1.71 diff -u -p -r1.71 alloc.h --- src/common/classes/alloc.h 26 Sep 2007 17:48:20 -0000 1.71 +++ src/common/classes/alloc.h 20 May 2009 02:20:08 -0000 @@ -47,6 +47,7 @@ #include /* XPG: prototypes for malloc/free have to be in stdlib.h (EKU) */ #endif +#include #ifdef _MSC_VER #define THROW_BAD_ALLOC @@ -448,15 +449,6 @@ inline void* operator new[](size_t s) TH ); } -inline void* operator new(size_t, void* ptr) throw() -{ - return ptr; -} -inline void* operator new[](size_t, void* ptr) throw() -{ - return ptr; -} - inline void operator delete(void* mem) throw() { Firebird::MemoryPool::globalFree(mem); Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- firebird.spec 11 Jul 2009 16:11:43 -0000 1.3 +++ firebird.spec 11 Jul 2009 16:27:42 -0000 1.4 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 9%{?dist} +Release: 10%{?dist} Group: Applications/Databases License: Interbase @@ -509,7 +509,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora From jussilehtola at fedoraproject.org Sat Jul 11 16:33:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 16:33:08 +0000 (UTC) Subject: rpms/pondus/EL-5 pondus.spec,1.3,1.4 Message-ID: <20090711163308.E672011C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30139/EL-5 Modified Files: pondus.spec Log Message: Fix EPEL build. Index: pondus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pondus/EL-5/pondus.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pondus.spec 11 Jul 2009 15:59:55 -0000 1.3 +++ pondus.spec 11 Jul 2009 16:33:08 -0000 1.4 @@ -12,6 +12,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: desktop-file-utils BuildRequires: python-devel +BuildRequires: python-setuptools BuildArch: noarch # Required for plotting, not picked up automatically @@ -30,11 +31,11 @@ compared with the actual measurements in sed -i "/Version/d" data/pondus.desktop %build -python setup.py build +python -c 'import setuptools; execfile("setup.py")' build %install rm -rf %{buildroot} -python setup.py install -O1 --skip-build --root %{buildroot} +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc From makowski at fedoraproject.org Sat Jul 11 16:34:41 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:34:41 +0000 (UTC) Subject: rpms/firebird/F-11 firebird.spec,1.4,1.5 Message-ID: <20090711163441.0B8F711C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30548 Modified Files: firebird.spec Log Message: retag Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/firebird.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firebird.spec 11 Jul 2009 16:27:42 -0000 1.4 +++ firebird.spec 11 Jul 2009 16:34:10 -0000 1.5 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 10%{?dist} +Release: 11%{?dist} Group: Applications/Databases License: Interbase @@ -509,7 +509,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora From caolanm at fedoraproject.org Sat Jul 11 16:36:46 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:36:46 +0000 (UTC) Subject: rpms/hunspell-ny/devel hunspell-ny.spec,1.2,1.3 Message-ID: <20090711163646.D352511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31069 Modified Files: hunspell-ny.spec Log Message: tidy spec Index: hunspell-ny.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ny/devel/hunspell-ny.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ny.spec 25 Feb 2009 05:18:01 -0000 1.2 +++ hunspell-ny.spec 11 Jul 2009 16:36:16 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-ny Summary: Chichewa hunspell dictionaries %define upstreamid 20050108 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ny_MW.zip URL: http://borel.slu.edu/crubadan/apps.html @@ -20,8 +20,16 @@ Chichewa hunspell dictionaries. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_ny_MW.txt > README_ny_MW.txt.new -mv -f README_ny_MW.txt.new README_ny_MW.txt +for i in README_ny_MW.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -37,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20050108-3 +- tidy spec + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050108-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 11 16:40:40 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:40:40 +0000 (UTC) Subject: rpms/hunspell-gd/devel hunspell-gd.spec,1.3,1.4 Message-ID: <20090711164040.E217811C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-gd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32155 Modified Files: hunspell-gd.spec Log Message: tidy spec Index: hunspell-gd.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gd/devel/hunspell-gd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-gd.spec 15 Jun 2009 22:06:18 -0000 1.3 +++ hunspell-gd.spec 11 Jul 2009 16:40:10 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-gd Summary: Scots Gaelic hunspell dictionaries Version: 1.0.0 -Release: 0.1.rc.1%{?dist} +Release: 0.2.rc.1%{?dist} Source: http://www.sealgar.co.uk/gd_GB.oxt Group: Applications/Text URL: http://www.sealgar.co.uk/spell.jsp @@ -18,9 +18,16 @@ Scots Gaelic hunspell dictionaries. %setup -q -c hunspell-gd-%{version} %build -iconv -f ISO8859-1 -t UTF-8 README_gd_GB.txt > README_gd_GB.txt.new -touch -r README_gd_GB.txt README_gd_GB.txt.new -mv -f README_gd_GB.txt.new README_gd_GB.txt +for i in README_gd_GB.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -36,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 1.0.0-0.2.rc.1 +- tidy spec + * Mon Jun 15 2009 Caolan McNamara - 1.0.0-0.1.rc.1 - latest version From chkr at fedoraproject.org Sat Jul 11 16:42:28 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 16:42:28 +0000 (UTC) Subject: rpms/mono-tools/devel mono-tools.spec,1.37,1.38 Message-ID: <20090711164228.A513C11C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32611 Modified Files: mono-tools.spec Log Message: - Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) - Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the gtkhtml engine of monodoc (BZ 478650) - Minor spec file beautification to fix some rpmlint warnings Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/devel/mono-tools.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- mono-tools.spec 14 Jun 2009 20:12:07 -0000 1.37 +++ mono-tools.spec 11 Jul 2009 16:41:58 -0000 1.38 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4.2 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -14,7 +14,9 @@ BuildRequires: gecko-sharp2-devel gnome- BuildRequires: gtk-sharp2-devel autoconf automake libtool mono-nunit-devel BuildRequires: hunspell-devel desktop-file-utils gnome-desktop-sharp-devel BuildRequires: mono-jscript mono-data-oracle monodoc-devel mono-web-devel +BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4.2 links monodoc +Requires: mono(gtkhtml-sharp) ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha ppc ppc64 @@ -47,12 +49,11 @@ find . -name Makefile.in -or -name Makef -or -name \*.make -or -name \*.in \ | while read f ; do - - sed -i -e 's!@prefix@/lib!%{_libdir}!' "$f" + sed -i -e 's!@prefix@/lib!%{_libdir}!' "$f" sed -i -e 's!$(prefix)/lib!%{_libdir}!' "$f" - sed -i -e 's!$prefix/lib!%{_libdir}!' "$f" + sed -i -e 's!$prefix/lib!%{_libdir}!' "$f" sed -i -e 's!${exec_prefix}/lib!%{_libdir}!' "$f" - sed -i -e 's!$libdir!%{_libdir}!' "$f" ; + sed -i -e 's!$libdir!%{_libdir}!' "$f" ; done autoreconf -f -i -s @@ -107,6 +108,7 @@ desktop-file-install --vendor fedora \ %{_libdir}/mono/1.0/gasnview.exe %{_libdir}/monodoc/GeckoHtmlRender.dll %{_libdir}/monodoc/GtkHtmlHtmlRender.dll +%{_libdir}/monodoc/WebKitHtmlRender.dll %{_libdir}/monodoc/browser.exe %dir %{_libdir}/ilcontrast %{_libdir}/ilcontrast/ilcontrast.exe @@ -134,6 +136,12 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/web/* %changelog +* Sat Jul 11 2009 Christian Krause - 2.4.2-2 +- Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) +- Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the +gtkhtml engine of monodoc (BZ 478650) +- Minor spec file beautification to fix some rpmlint warnings + * Sun Jun 09 2009 Paul F. Johnson - 2.4.2-1 - Bump to 2.4.2 preview 1 - Add support for ppc and ppc64 From caolanm at fedoraproject.org Sat Jul 11 16:43:17 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:43:17 +0000 (UTC) Subject: rpms/hyphen-ca/devel hyphen-ca.spec,1.3,1.4 Message-ID: <20090711164317.BC51F11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv440 Modified Files: hyphen-ca.spec Log Message: consistency Index: hyphen-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ca/devel/hyphen-ca.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-ca.spec 16 Jun 2009 08:26:46 -0000 1.3 +++ hyphen-ca.spec 11 Jul 2009 16:42:47 -0000 1.4 @@ -19,11 +19,10 @@ Catalan hyphenation rules. %setup -q -c %build -for file in release-note_en.txt release-note_ca.txt; -do - tr -d '\r' < $file > $file.new - touch -r $file $file.new - mv -f $file.new $file +for i in release-note_en.txt release-note_ca.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install From sandeen at fedoraproject.org Sat Jul 11 16:44:05 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Sat, 11 Jul 2009 16:44:05 +0000 (UTC) Subject: rpms/guilt/devel .cvsignore, 1.4, 1.5 guilt.spec, 1.6, 1.7 sources, 1.4, 1.5 guilt-0.32-fix-regression-test.patch, 1.1, NONE Message-ID: <20090711164405.1942811C00DF@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/guilt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv767 Modified Files: .cvsignore guilt.spec sources Removed Files: guilt-0.32-fix-regression-test.patch Log Message: * Sat Jul 11 2009 Eric Sandeen 0.32.1-1 - New upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/guilt/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 16 Jan 2009 19:57:55 -0000 1.4 +++ .cvsignore 11 Jul 2009 16:43:34 -0000 1.5 @@ -1 +1 @@ -guilt-0.32.tar.bz2 +guilt-0.32.1.tar.bz2 Index: guilt.spec =================================================================== RCS file: /cvs/pkgs/rpms/guilt/devel/guilt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- guilt.spec 25 Feb 2009 02:53:25 -0000 1.6 +++ guilt.spec 11 Jul 2009 16:43:34 -0000 1.7 @@ -1,6 +1,6 @@ Name: guilt -Version: 0.32 -Release: 3%{?dist} +Version: 0.32.1 +Release: 1%{?dist} Summary: Scripts to manage quilt-like patches on top of git Group: Development/Tools @@ -13,8 +13,6 @@ BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: asciidoc, xmlto, git-core -Patch0: guilt-0.32-fix-regression-test.patch - %description Guilt allows one to use quilt functionality on top of a Git repository. Changes are maintained as patches which are committed into Git. Commits can @@ -25,7 +23,6 @@ made to your patches. %prep %setup -q -%patch0 -p1 %build make %{?_smp_mflags} @@ -49,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man7/guilt*.7* %changelog +* Sat Jul 11 2009 Eric Sandeen 0.32.1-1 +- New upstream version + * Tue Feb 24 2009 Fedora Release Engineering - 0.32-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/guilt/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 16 Jan 2009 19:57:55 -0000 1.4 +++ sources 11 Jul 2009 16:43:34 -0000 1.5 @@ -1 +1 @@ -79dd2d270fae2fb157312f6949888249 guilt-0.32.tar.bz2 +7455e090732d3c8e6b4c33c42ad4ddd1 guilt-0.32.1.tar.bz2 --- guilt-0.32-fix-regression-test.patch DELETED --- From caolanm at fedoraproject.org Sat Jul 11 16:45:20 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:45:20 +0000 (UTC) Subject: rpms/hunspell-cv/devel hunspell-cv.spec,1.1,1.2 Message-ID: <20090711164520.EB08F11C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-cv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1190 Modified Files: hunspell-cv.spec Log Message: consistency Index: hunspell-cv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cv/devel/hunspell-cv.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-cv.spec 7 May 2009 07:36:17 -0000 1.1 +++ hunspell-cv.spec 11 Jul 2009 16:44:50 -0000 1.2 @@ -17,9 +17,11 @@ Chuvash hunspell dictionaries. %setup -q -c %build -tr -d '\r' < license.txt > license.txt.new -touch -r license.txt license.txt.new -mv -f license.txt.new license.txt +for i in license.txt; do + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT From caolanm at fedoraproject.org Sat Jul 11 16:47:22 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 11 Jul 2009 16:47:22 +0000 (UTC) Subject: rpms/mythes-pt/devel mythes-pt.spec,1.2,1.3 Message-ID: <20090711164722.8EB7511C00DF@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1710 Modified Files: mythes-pt.spec Log Message: tidy spec Index: mythes-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-pt/devel/mythes-pt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-pt.spec 26 Feb 2009 03:57:12 -0000 1.2 +++ mythes-pt.spec 11 Jul 2009 16:46:52 -0000 1.3 @@ -2,7 +2,7 @@ Name: mythes-pt Summary: Portuguese thesaurus %define upstreamid 20060817 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://openthesaurus.caixamagica.pt/download/thes_pt_PT_v2.zip Group: Applications/Text URL: http://openthesaurus.caixamagica.pt/ @@ -18,8 +18,16 @@ Portuguese thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_pt_PT_v2.txt > README_th_pt_PT_v2.txt.new -mv -f README_th_pt_PT_v2.txt.new README_th_pt_PT_v2.txt +for i in README_th_pt_PT_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -42,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 11 2009 Caolan McNamara - 0.20060817-3 +- tidy spec + * Wed Feb 25 2009 Fedora Release Engineering - 0.20060817-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From makowski at fedoraproject.org Sat Jul 11 16:54:24 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:54:24 +0000 (UTC) Subject: rpms/firebird/F-10 firebird.spec,1.3,1.4 Message-ID: <20090711165424.C755511C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3286 Modified Files: firebird.spec Log Message: tag Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/firebird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- firebird.spec 11 Jul 2009 16:07:22 -0000 1.3 +++ firebird.spec 11 Jul 2009 16:53:54 -0000 1.4 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 9%{?dist} +Release: 11%{?dist} Group: Applications/Databases License: Interbase @@ -509,7 +509,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora From makowski at fedoraproject.org Sat Jul 11 16:55:02 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 16:55:02 +0000 (UTC) Subject: rpms/firebird/F-10 firebird-gcc-icu.patch,NONE,1.1 Message-ID: <20090711165502.CCB4911C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3476 Added Files: firebird-gcc-icu.patch Log Message: gcc icu patch firebird-gcc-icu.patch: --- NEW FILE firebird-gcc-icu.patch --- # Author: Adriano dos Santos Fernandes #Index: src/common/classes/alloc.h #=================================================================== #RCS file: /cvsroot/firebird/firebird2/src/common/classes/alloc.h,v #retrieving revision 1.71 diff -u -p -r1.71 alloc.h --- src/common/classes/alloc.h 26 Sep 2007 17:48:20 -0000 1.71 +++ src/common/classes/alloc.h 20 May 2009 02:20:08 -0000 @@ -47,6 +47,7 @@ #include /* XPG: prototypes for malloc/free have to be in stdlib.h (EKU) */ #endif +#include #ifdef _MSC_VER #define THROW_BAD_ALLOC @@ -448,15 +449,6 @@ inline void* operator new[](size_t s) TH ); } -inline void* operator new(size_t, void* ptr) throw() -{ - return ptr; -} -inline void* operator new[](size_t, void* ptr) throw() -{ - return ptr; -} - inline void operator delete(void* mem) throw() { Firebird::MemoryPool::globalFree(mem); From makowski at fedoraproject.org Sat Jul 11 17:00:11 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 17:00:11 +0000 (UTC) Subject: rpms/firebird/EL-5 firebird-gcc-icu.patch, NONE, 1.1 firebird.spec, 1.2, 1.3 firebird-profile.csh, 1.1, NONE firebird-profile.sh, 1.1, NONE Message-ID: <20090711170011.9A31011C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4322 Modified Files: firebird.spec Added Files: firebird-gcc-icu.patch Removed Files: firebird-profile.csh firebird-profile.sh Log Message: - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora - automatically created user now have /bin/nologin as shell to make things a little more secure firebird-gcc-icu.patch: --- NEW FILE firebird-gcc-icu.patch --- # Author: Adriano dos Santos Fernandes #Index: src/common/classes/alloc.h #=================================================================== #RCS file: /cvsroot/firebird/firebird2/src/common/classes/alloc.h,v #retrieving revision 1.71 diff -u -p -r1.71 alloc.h --- src/common/classes/alloc.h 26 Sep 2007 17:48:20 -0000 1.71 +++ src/common/classes/alloc.h 20 May 2009 02:20:08 -0000 @@ -47,6 +47,7 @@ #include /* XPG: prototypes for malloc/free have to be in stdlib.h (EKU) */ #endif +#include #ifdef _MSC_VER #define THROW_BAD_ALLOC @@ -448,15 +449,6 @@ inline void* operator new[](size_t s) TH ); } -inline void* operator new(size_t, void* ptr) throw() -{ - return ptr; -} -inline void* operator new[](size_t, void* ptr) throw() -{ - return ptr; -} - inline void operator delete(void* mem) throw() { Firebird::MemoryPool::globalFree(mem); Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- firebird.spec 12 May 2009 12:12:31 -0000 1.2 +++ firebird.spec 11 Jul 2009 16:59:41 -0000 1.3 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 7%{?dist} +Release: 10%{?dist} Group: Applications/Databases License: Interbase @@ -14,15 +14,14 @@ URL: http://www.firebirdsql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Source0: http://downloads.sourceforge.net/firebird/%{pkgname}.tar.bz2 -Source1: firebird-profile.sh -Source2: firebird-profile.csh -Source3: firebird-logrotate -Source4: README.Fedora +Source1: firebird-logrotate +Source2: README.Fedora Patch0: firebird-mcpu-to-mtune.patch Patch1: firebird-2.1.2-doc.patch Patch2: firebird-fix-initscript.patch Patch3: firebird_lock-file-location.patch +Patch4: firebird-gcc-icu.patch BuildRequires: autoconf @@ -32,6 +31,7 @@ BuildRequires: libtool BuildRequires: ncurses-devel BuildRequires: libtermcap-devel BuildRequires: libicu-devel +BuildRequires: gcc-c++ Requires: %{name}-arch = %{version}-%{release} Requires: grep @@ -131,13 +131,29 @@ iconv -f ISO-8859-1 -t utf-8 -c ./doc/RE %patch1 %patch0 %patch3 +%patch4 %build # classic +%ifarch sparc64 +export CXXFLAGS='-m64' +export CFLAGS='-m64' +export LDFLAGS='-m64' +%endif +%ifarch sparcv9 +export CXXFLAGS='-m32' +export CFLAGS='-m32' +export LDFLAGS='-m32' +%endif + autoreconf -vfi -%configure --prefix=%{fbroot} \ +%configure --prefix=%{fbroot} \ --with-system-icu + +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -156,10 +172,15 @@ chmod 644 ./buildroot-classic%{fbroot}/h cd .. # superserver -%configure --prefix=%{fbroot} \ +autoreconf -vfi +%configure --prefix=%{fbroot} \ --enable-superserver \ --with-system-icu +%ifarch sparc64 +sed "s at COMMON_FLAGS=-m32 at COMMON_FLAGS=-m64@" -i ./gen/make.platform +%endif + # Can't use make %{?_smp_mflags} as parallel build is broken make @@ -191,6 +212,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/logr mkdir -p %{buildroot}%{_var}/run/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name} mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/data +mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}/system mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_includedir}/%{name} mkdir -p %{buildroot}%{_libdir} @@ -218,14 +240,14 @@ cp %{_builddir}/%{pkgname}/gen/buildroot cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/UDF/* %{buildroot}%{fbroot}/UDF-superserver/ cd %{buildroot}%{fbroot}/bin-superserver/ -ln -s ./fbmgr.bin ./fbmgr +ln -s fbmgr.bin fbmgr cd %{buildroot} cd %{buildroot}%{fbroot}/lib/ -ln -s %{fbroot}/lib/libfbembed.so.%{major} libfbembed.so.2.1 -ln -s %{fbroot}/lib/libfbembed.so.2.1 libfbembed.so -ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.2 -ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so +ln -s libfbembed.so.%{major} libfbembed.so.2.1 +ln -s libfbembed.so.2.1 libfbembed.so +ln -s libfbclient.so.%{major} libfbclient.so.2 +ln -s libfbclient.so.2 libfbclient.so cd %{buildroot} cd %{buildroot}%{_libdir} @@ -235,12 +257,14 @@ ln -s %{fbroot}/lib/libfbembed.so.%{majo ln -s %{fbroot}/lib/libfbclient.so libfbclient.so ln -s %{fbroot}/lib/libfbclient.so.2 libfbclient.so.2 ln -s %{fbroot}/lib/libfbclient.so.%{major} libfbclient.so.%{major} +ln -s %{fbroot}/lib/libfbclient.so.%{major} libgds.so.0 +ln -s %{fbroot}/lib/libfbclient.so libgds.so ln -s %{fbroot}/lib/libib_util.so libib_util.so cd %{buildroot} echo 1 > %{buildroot}%{_localstatedir}/log/%{name}/%{name}.log ln -s %{_localstatedir}/log/%{name}/%{name}.log .%{fbroot}/%{name}.log -sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE3} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} +sed "s@%{name}.log@%{_localstatedir}/log/%{name}/%{name}.log at g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/logrotate.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/include/* %{buildroot}%{_includedir}/%{name}/ cd %{buildroot}%{fbroot}/include/ @@ -248,29 +272,31 @@ ln -s %{_includedir}/%{name}/ibase.h iba ln -s %{_includedir}/%{name}/iberror.h iberror.h ln -s %{_includedir}/%{name}/ib_util.h ib_util.h ln -s %{_includedir}/%{name}/perf.h perf.h +cd %{buildroot}%{_includedir} +ln -s %{_includedir}/%{name}/ibase.h ibase.h +ln -s %{_includedir}/%{name}/iberror.h iberror.h +ln -s %{_includedir}/%{name}/ib_util.h ib_util.h +ln -s %{_includedir}/%{name}/perf.h perf.h cd %{buildroot} cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/aliases.conf .%{_sysconfdir}/%{name}/aliases.conf sed "s@%{fbroot}/examples/empbuild@%{_localstatedir}/lib/%{name}/data@" -i .%{_sysconfdir}/%{name}/aliases.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/firebird.conf .%{_sysconfdir}/%{name}/firebird.conf cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/intl/fbintl.conf .%{_sysconfdir}/%{name}/fbintl.conf -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_sysconfdir}/%{name}/security2.fdb +cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/security2.fdb .%{_localstatedir}/lib/%{name}/system/security2.fdb ln -s %{_sysconfdir}/%{name}/aliases.conf .%{fbroot}/aliases.conf ln -s %{_sysconfdir}/%{name}/firebird.conf .%{fbroot}/firebird.conf -ln -s %{_sysconfdir}/%{name}/security2.fdb .%{fbroot}/security2.fdb +ln -s %{_localstatedir}/lib/%{name}/system/security2.fdb .%{fbroot}/security2.fdb ln -s %{_sysconfdir}/%{name}/fbintl.conf .%{fbroot}/intl/fbintl.conf -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE1} > %{buildroot}%{_sysconfdir}/profile.d/firebird.sh -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{buildroot}%{_sysconfdir}/profile.d/firebird.csh - -cp %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/%{name} +sed "s@= root@= %{name}@" %{_builddir}/%{pkgname}/gen/buildroot-classic%{fbroot}/misc/%{name}.xinetd > %{buildroot}%{_sysconfdir}/xinetd.d/%{name} cp %{_builddir}/%{pkgname}/gen/buildroot-superserver%{fbroot}/misc/%{name}.init.d.mandrake %{buildroot}%{_initrddir}/%{name} sed "s at chkconfig: 345 at chkconfig: -@" -i %{buildroot}%{_initrddir}/%{name} -sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE4} > %{_builddir}/%{pkgname}/doc/README.Fedora +sed "s@%%{fbroot}@%{fbroot}@g" %{SOURCE2} > %{_builddir}/%{pkgname}/doc/README.Fedora ln -s %{_var}/run/%{name} .%{fbroot}/run -ln -s %{fbroot}/bin/isql .%{_bindir}/fbsql +ln -s %{fbroot}/bin/isql .%{_bindir}/isql-fb ln -s %{fbroot}/bin/gbak .%{_bindir}/gbak ln -s %{fbroot}/bin/gfix .%{_bindir}/gfix ln -s %{fbroot}/bin/gsec .%{_bindir}/gsec @@ -290,10 +316,12 @@ rm -Rf %{buildroot} %postun libfbembed -p /sbin/ldconfig %post classic -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-classic" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-classic,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-classic" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-classic,} fi if /sbin/service xinetd status >& /dev/null; then @@ -315,18 +343,15 @@ fi %post superserver -if test ! -e %{fbroot}/bin; then +if [ "$(readlink %{fbroot}/bin 2> /dev/null)" \!= "%{fbroot}/bin-superserver" ]; then + [ -e %{fbroot}/bin ] && rm -f %{fbroot}/bin ln -s %{fbroot}/bin{-superserver,} fi -if test ! -e %{fbroot}/UDF; then +if [ "$(readlink %{fbroot}/UDF 2> /dev/null)" \!= "%{fbroot}/UDF-superserver" ]; then + [ -e %{fbroot}/UDF ] && rm -f %{fbroot}/bin ln -s %{fbroot}/UDF{-superserver,} fi -if [ $1 -eq 2 ]; then - if /sbin/service firebird status >& /dev/null; then - /sbin/service firebird restart - fi -fi if [ $1 -eq 1 ]; then chkconfig firebird off fi @@ -353,7 +378,7 @@ fi %pre # Create the firebird group if it doesn't exist getent group %{name} || /usr/sbin/groupadd -r %{name} -getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/sh -r %{name} +getent passwd %{name} >/dev/null || /usr/sbin/useradd -d / -g %{name} -s /bin/nologin -r %{name} # Add gds_db to /etc/services if needed FileName=/etc/services @@ -374,6 +399,7 @@ rm -Rf %{_var}/run/%{name} %defattr(0644,root,root,0755) %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt +%doc doc/README.Fedora %defattr(0644,root,root,0755) %dir %attr(0755,root,root) %{_localstatedir}/lib/%{name} %dir %attr(0770,%{name},%{name}) %{_localstatedir}/lib/%{name}/data @@ -381,7 +407,7 @@ rm -Rf %{_var}/run/%{name} %dir %{_localstatedir}/log/%{name} %dir %{fbroot}/intl %dir %{_sysconfdir}/%{name} -%config(noreplace) %attr (0660,%{name},%{name}) %{_sysconfdir}/%{name}/security2.fdb +%config(noreplace) %attr (0600,%{name},%{name}) %{_localstatedir}/lib/%{name}/system/security2.fdb %{fbroot}/security2.fdb %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/fbintl.conf %config(noreplace) %attr (0664,%{name},%{name}) %{_sysconfdir}/%{name}/aliases.conf @@ -390,19 +416,16 @@ rm -Rf %{_var}/run/%{name} %{fbroot}/firebird.conf %{fbroot}/intl/fbintl.conf %{fbroot}/firebird.log -%attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log +%config(noreplace) %attr(0664,%{name},%{name}) %{_localstatedir}/log/%{name}/%{name}.log %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name} %{fbroot}/*.msg %{fbroot}/help %{_libdir}/libib_util.so %{fbroot}/lib/libib_util.so -%defattr(0644,root,root,0644) -%config(noreplace) %{_sysconfdir}/profile.d/firebird.csh -%config(noreplace) %{_sysconfdir}/profile.d/firebird.sh %defattr(0755,root,root,0750) %{fbroot}/intl/fbintl %defattr(0755,root,root,0755) -%{_bindir}/fbsql +%{_bindir}/isql-fb %{_bindir}/gbak %{_bindir}/gsec %{_bindir}/gfix @@ -444,6 +467,7 @@ rm -Rf %{_var}/run/%{name} %doc doc/license/IDPL.txt %doc doc/license/README.license.usage.txt %{_libdir}/libfbclient.so.* +%{_libdir}/libgds.so.0 %{fbroot}/lib/libfbclient.so.* @@ -485,6 +509,15 @@ rm -Rf %{_var}/run/%{name} %changelog +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 +- change xinetd script (rh #506528) +- add missing library (and header files) for build php4-interbase module (rh #506728) +- update README.fedora +- automatically created user now have /bin/nologin as shell to make things a little more secure + +* Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-8 +- patch to fix gcc 4.4.0 and icu 4.2 build error + * Tue May 12 2009 Philippe Makowski 2.1.2.18118.0-7 - patch to change lock files location and avoid %%{fbroot} owned by firebird user (rh #500219) - add README.fedora --- firebird-profile.csh DELETED --- --- firebird-profile.sh DELETED --- From makowski at fedoraproject.org Sat Jul 11 17:02:07 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sat, 11 Jul 2009 17:02:07 +0000 (UTC) Subject: rpms/firebird/EL-5 firebird-fix-initscript.patch,1.1,1.2 Message-ID: <20090711170207.5B61711C00DF@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5011 Modified Files: firebird-fix-initscript.patch Log Message: - change inetd script firebird-fix-initscript.patch: Index: firebird-fix-initscript.patch =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird-fix-initscript.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- firebird-fix-initscript.patch 4 May 2009 09:22:30 -0000 1.1 +++ firebird-fix-initscript.patch 11 Jul 2009 17:02:07 -0000 1.2 @@ -8,10 +8,15 @@ # No changes needed below for multiple instances FBRunUser=firebird -@@ -39,18 +40,22 @@ - echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser +@@ -37,21 +37,25 @@ + case "$1" in + start) + echo -n "Starting $FULLNAME " +- echo $MANAGER -pidfile $pidfile -start -forever | su $FBRunUser ++ daemon --user=$FBRunUser $MANAGER -pidfile $pidfile -start -forever RETVAL=$? - [ $RETVAL -eq 0 ] && success || failure +- [ $RETVAL -eq 0 ] && success || failure ++ echo + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$name echo ;; From cwickert at fedoraproject.org Sat Jul 11 17:22:48 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 17:22:48 +0000 (UTC) Subject: rpms/lxterminal/devel .cvsignore, 1.4, 1.5 lxterminal.spec, 1.8, 1.9 sources, 1.4, 1.5 lxterminal-0.1.5-menu-icons.patch, 1.1, NONE Message-ID: <20090711172248.F1DD311C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxterminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10317 Modified Files: .cvsignore lxterminal.spec sources Removed Files: lxterminal-0.1.5-menu-icons.patch Log Message: * Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 - Update to 0.1.6 - Remove missing-icons.patch, changes got upstreamed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 May 2009 13:43:15 -0000 1.4 +++ .cvsignore 11 Jul 2009 17:22:48 -0000 1.5 @@ -1 +1 @@ -lxterminal-0.1.5.tar.gz +lxterminal-0.1.6.tar.gz Index: lxterminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/devel/lxterminal.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lxterminal.spec 9 Jun 2009 21:04:21 -0000 1.8 +++ lxterminal.spec 11 Jul 2009 17:22:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: lxterminal -Version: 0.1.5 -Release: 2%{?dist} +Version: 0.1.6 +Release: 1%{?dist} Summary: Desktop-independent VTE-based terminal emulator Summary(de): Desktup-unabh??ngiger VTE-basierter Terminal Emulator @@ -8,7 +8,6 @@ Group: User Interface/Desktops License: GPLv2+ URL: http://lxde.sourceforge.net/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz -Patch0: lxterminal-0.1.5-menu-icons.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.6 vte-devel @@ -28,7 +27,6 @@ erh??hen teilen sich alle Instanzen des %prep %setup -q -%patch0 -p1 -b .menu-icons %build @@ -63,6 +61,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 +- Update to 0.1.6 +- Remove missing-icons.patch, changes got upstreamed + * Tue Jun 09 2009 Christoph Wickert - 0.1.5-2 - Rebuilt for libvte SONAME bump Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 May 2009 13:43:16 -0000 1.4 +++ sources 11 Jul 2009 17:22:48 -0000 1.5 @@ -1 +1 @@ -e0763523298b9953c538462733eb8fb5 lxterminal-0.1.5.tar.gz +760618478c0614b15d2bcba5b56ab152 lxterminal-0.1.6.tar.gz --- lxterminal-0.1.5-menu-icons.patch DELETED --- From cwickert at fedoraproject.org Sat Jul 11 17:30:19 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 17:30:19 +0000 (UTC) Subject: rpms/lxterminal/F-10 .cvsignore, 1.4, 1.5 lxterminal.spec, 1.5, 1.6 sources, 1.4, 1.5 lxterminal-0.1.5-menu-icons.patch, 1.1, NONE Message-ID: <20090711173020.0378711C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxterminal/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11919/F-10 Modified Files: .cvsignore lxterminal.spec sources Removed Files: lxterminal-0.1.5-menu-icons.patch Log Message: * Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 - Update to 0.1.6 - Remove missing-icons.patch, changes got upstreamed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 May 2009 14:34:13 -0000 1.4 +++ .cvsignore 11 Jul 2009 17:29:49 -0000 1.5 @@ -1 +1 @@ -lxterminal-0.1.5.tar.gz +lxterminal-0.1.6.tar.gz Index: lxterminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-10/lxterminal.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lxterminal.spec 24 May 2009 14:34:14 -0000 1.5 +++ lxterminal.spec 11 Jul 2009 17:29:49 -0000 1.6 @@ -1,5 +1,5 @@ Name: lxterminal -Version: 0.1.5 +Version: 0.1.6 Release: 1%{?dist} Summary: Desktop-independent VTE-based terminal emulator Summary(de): Desktup-unabh??ngiger VTE-basierter Terminal Emulator @@ -8,7 +8,6 @@ Group: User Interface/Desktops License: GPLv2+ URL: http://lxde.sourceforge.net/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz -Patch0: lxterminal-0.1.5-menu-icons.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.6 vte-devel @@ -28,7 +27,6 @@ erh??hen teilen sich alle Instanzen des %prep %setup -q -%patch0 -p1 -b .menu-icons %build @@ -63,19 +61,26 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed May 20 2009 Christoph Wickert - 0.1.5-1 +* Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 +- Update to 0.1.6 +- Remove missing-icons.patch, changes got upstreamed + +* Tue Jun 09 2009 Christoph Wickert - 0.1.5-2 +- Rebuilt for libvte SONAME bump + +* Wed May 20 2009 Christoph Wickert - 0.1.5-1 - Update to 0.1.5 - Fix icon for Info menu entry * Wed Feb 25 2009 Fedora Release Engineering - 0.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Fri Dec 26 2008 Christoph Wickert - 0.1.4-1 +* Fri Dec 26 2008 Christoph Wickert - 0.1.4-1 - Update to 0.1.4 -* Sat Jun 28 2008 Christoph Wickert - 0.1.3-1 +* Sat Jun 28 2008 Christoph Wickert - 0.1.3-1 - Update to 0.1.3 - Add the new manpage -* Fri Jun 20 2008 Christoph Wickert - 0.1.2-1 +* Fri Jun 20 2008 Christoph Wickert - 0.1.2-1 - Initial Fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 May 2009 14:34:14 -0000 1.4 +++ sources 11 Jul 2009 17:29:49 -0000 1.5 @@ -1 +1 @@ -e0763523298b9953c538462733eb8fb5 lxterminal-0.1.5.tar.gz +760618478c0614b15d2bcba5b56ab152 lxterminal-0.1.6.tar.gz --- lxterminal-0.1.5-menu-icons.patch DELETED --- From cwickert at fedoraproject.org Sat Jul 11 17:30:20 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 17:30:20 +0000 (UTC) Subject: rpms/lxterminal/F-11 .cvsignore, 1.4, 1.5 lxterminal.spec, 1.7, 1.8 sources, 1.4, 1.5 lxterminal-0.1.5-menu-icons.patch, 1.1, NONE Message-ID: <20090711173020.3AAF611C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxterminal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11919/F-11 Modified Files: .cvsignore lxterminal.spec sources Removed Files: lxterminal-0.1.5-menu-icons.patch Log Message: * Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 - Update to 0.1.6 - Remove missing-icons.patch, changes got upstreamed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 May 2009 14:34:16 -0000 1.4 +++ .cvsignore 11 Jul 2009 17:29:49 -0000 1.5 @@ -1 +1 @@ -lxterminal-0.1.5.tar.gz +lxterminal-0.1.6.tar.gz Index: lxterminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-11/lxterminal.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lxterminal.spec 9 Jun 2009 21:06:22 -0000 1.7 +++ lxterminal.spec 11 Jul 2009 17:29:50 -0000 1.8 @@ -1,6 +1,6 @@ Name: lxterminal -Version: 0.1.5 -Release: 2%{?dist} +Version: 0.1.6 +Release: 1%{?dist} Summary: Desktop-independent VTE-based terminal emulator Summary(de): Desktup-unabh??ngiger VTE-basierter Terminal Emulator @@ -8,7 +8,6 @@ Group: User Interface/Desktops License: GPLv2+ URL: http://lxde.sourceforge.net/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz -Patch0: lxterminal-0.1.5-menu-icons.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.6 vte-devel @@ -28,7 +27,6 @@ erh??hen teilen sich alle Instanzen des %prep %setup -q -%patch0 -p1 -b .menu-icons %build @@ -63,6 +61,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 +- Update to 0.1.6 +- Remove missing-icons.patch, changes got upstreamed + * Tue Jun 09 2009 Christoph Wickert - 0.1.5-2 - Rebuilt for libvte SONAME bump Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 May 2009 14:34:16 -0000 1.4 +++ sources 11 Jul 2009 17:29:50 -0000 1.5 @@ -1 +1 @@ -e0763523298b9953c538462733eb8fb5 lxterminal-0.1.5.tar.gz +760618478c0614b15d2bcba5b56ab152 lxterminal-0.1.6.tar.gz --- lxterminal-0.1.5-menu-icons.patch DELETED --- From oget at fedoraproject.org Sat Jul 11 17:46:49 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 11 Jul 2009 17:46:49 +0000 (UTC) Subject: rpms/bouncycastle/devel bouncycastle.spec,1.16,1.17 Message-ID: <20090711174649.6565A11C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16345 Modified Files: bouncycastle.spec Log Message: * Sat Jul 11 2009 Orcan Ogetbil - 1.43-3 - Raise java requirement to >= 1.7 once again. Index: bouncycastle.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle/devel/bouncycastle.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- bouncycastle.spec 10 Jul 2009 23:19:26 -0000 1.16 +++ bouncycastle.spec 11 Jul 2009 17:46:19 -0000 1.17 @@ -5,7 +5,7 @@ Summary: Bouncy Castle Crypto Package for Java Name: bouncycastle Version: 1.43 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.%{name}.org/ @@ -24,8 +24,8 @@ BuildRequires: java-gcj-compat-devel %else BuildArch: noarch %endif -BuildRequires: java-devel >= 1.5 -Requires: java >= 1.5 +BuildRequires: java-devel >= 1.7 +Requires: java >= 1.7 BuildRequires: junit4 Requires: junit4 @@ -163,15 +163,18 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/bcprov-%{version}.jar %{_javadir}/gcj-endorsed/bcprov-%{version}.jar %if %{with_gcj} - %{_libdir}/gcj/%{name} + %{_libdir}/gcj/%{name}/ %endif %{_sysconfdir}/java/security/security.d/2000-%{classname} %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %changelog +* Sat Jul 11 2009 Orcan Ogetbil - 1.43-3 +- Raise java requirement to >= 1.7 once again. + * Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. From oget at fedoraproject.org Sat Jul 11 17:47:32 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 11 Jul 2009 17:47:32 +0000 (UTC) Subject: rpms/bouncycastle/F-11 bouncycastle.spec,1.16,1.17 Message-ID: <20090711174732.0477411C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16571 Modified Files: bouncycastle.spec Log Message: * Sat Jul 11 2009 Orcan Ogetbil - 1.43-3 - Raise java requirement to >= 1.7 once again. Index: bouncycastle.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle/F-11/bouncycastle.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- bouncycastle.spec 10 Jul 2009 23:23:28 -0000 1.16 +++ bouncycastle.spec 11 Jul 2009 17:47:01 -0000 1.17 @@ -5,7 +5,7 @@ Summary: Bouncy Castle Crypto Package for Java Name: bouncycastle Version: 1.43 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.%{name}.org/ @@ -24,8 +24,8 @@ BuildRequires: java-gcj-compat-devel %else BuildArch: noarch %endif -BuildRequires: java-devel >= 1.5 -Requires: java >= 1.5 +BuildRequires: java-devel >= 1.7 +Requires: java >= 1.7 BuildRequires: junit4 Requires: junit4 @@ -163,15 +163,18 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/bcprov-%{version}.jar %{_javadir}/gcj-endorsed/bcprov-%{version}.jar %if %{with_gcj} - %{_libdir}/gcj/%{name} + %{_libdir}/gcj/%{name}/ %endif %{_sysconfdir}/java/security/security.d/2000-%{classname} %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %changelog +* Sat Jul 11 2009 Orcan Ogetbil - 1.43-3 +- Raise java requirement to >= 1.7 once again. + * Fri Jul 10 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. From oget at fedoraproject.org Sat Jul 11 17:55:16 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 11 Jul 2009 17:55:16 +0000 (UTC) Subject: rpms/pdftk/F-11 pdftk.spec,1.20,1.21 Message-ID: <20090711175516.62AC211C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/pdftk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18360 Modified Files: pdftk.spec Log Message: * Thu Jul 9 2009 Orcan Ogetbil 1.41-21 - Build against itext-2.1.7 Index: pdftk.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdftk/F-11/pdftk.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- pdftk.spec 29 Jun 2009 15:56:07 -0000 1.20 +++ pdftk.spec 11 Jul 2009 17:54:46 -0000 1.21 @@ -1,9 +1,9 @@ -%define itextvers 2.1.6 +%global itextvers 2.1.7 Summary: The PDF Tool Kit Name: pdftk Version: 1.41 -Release: 20%{?dist} +Release: 21%{?dist} License: GPLv2+ URL: http://www.pdfhacks.com/pdftk/ # Remove java-lib/com because it's contains licensing issue @@ -21,7 +21,7 @@ BuildRequires: java-devel >= 1:1.6.0 BuildRequires: itext >= %{itextvers} -Requires: itext >= 2.1.6-1 +Requires: itext >= 2.1.7-1 %description If PDF is electronic paper, then pdftk is an electronic staple-remover, @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Thu Jul 9 2009 Orcan Ogetbil 1.41-21 +- Build against itext-2.1.7 + * Fri Jun 26 2009 Orcan Ogetbil 1.41-20 - Build against itext-2.1.6 From chkr at fedoraproject.org Sat Jul 11 18:04:29 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 18:04:29 +0000 (UTC) Subject: rpms/mono-tools/F-11 mono-tools.spec,1.37,1.38 Message-ID: <20090711180429.95F2311C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20592 Modified Files: mono-tools.spec Log Message: - Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) - Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the gtkhtml engine of monodoc (BZ 478650) Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/F-11/mono-tools.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- mono-tools.spec 30 May 2009 19:25:20 -0000 1.37 +++ mono-tools.spec 11 Jul 2009 18:03:59 -0000 1.38 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -14,7 +14,9 @@ BuildRequires: gecko-sharp2-devel gnome- BuildRequires: gtk-sharp2-devel autoconf automake libtool mono-nunit-devel BuildRequires: hunspell-devel desktop-file-utils gnome-desktop-sharp-devel BuildRequires: mono-jscript mono-data-oracle monodoc-devel mono-web-devel +BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4 links monodoc +Requires: mono(gtkhtml-sharp) ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparc alpha @@ -107,6 +109,7 @@ desktop-file-install --vendor fedora \ %{_libdir}/mono/1.0/gasnview.exe %{_libdir}/monodoc/GeckoHtmlRender.dll %{_libdir}/monodoc/GtkHtmlHtmlRender.dll +%{_libdir}/monodoc/WebKitHtmlRender.dll %{_libdir}/monodoc/browser.exe %dir %{_libdir}/ilcontrast %{_libdir}/ilcontrast/ilcontrast.exe @@ -132,6 +135,11 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/sources/gendarme* %changelog +* Sat Jul 11 2009 Christian Krause - 2.4-10 +- Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) +- Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the +gtkhtml engine of monodoc (BZ 478650) + * Sat May 30 2009 Xavier Lamien - 2.4-9 - Build arch ppc??. From remi at fedoraproject.org Sat Jul 11 18:24:37 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sat, 11 Jul 2009 18:24:37 +0000 (UTC) Subject: rpms/php-pear-Cache-Lite/devel .cvsignore, 1.6, 1.7 php-pear-Cache-Lite.spec, 1.6, 1.7 sources, 1.6, 1.7 Message-ID: <20090711182437.84D9611C00DF@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Cache-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25949 Modified Files: .cvsignore php-pear-Cache-Lite.spec sources Log Message: update to 1.7.8 - fix php 5.3.0 warning for deprecated calls Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Mar 2009 19:02:20 -0000 1.6 +++ .cvsignore 11 Jul 2009 18:24:37 -0000 1.7 @@ -1 +1 @@ -Cache_Lite-1.7.7.tgz +Cache_Lite-1.7.8.tgz Index: php-pear-Cache-Lite.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/devel/php-pear-Cache-Lite.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Cache-Lite.spec 8 Mar 2009 19:02:20 -0000 1.6 +++ php-pear-Cache-Lite.spec 11 Jul 2009 18:24:37 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Fast and Safe little cache system for PHP Summary(fr): M??thode de cache rapide et s??curis??e pour PHP Name: php-pear-Cache-Lite -Version: 1.7.7 +Version: 1.7.8 Release: 1%{?dist} License: PHP Group: Development/Libraries @@ -97,6 +97,9 @@ fi %changelog +* Sat Jul 08 2009 Remi Collet 1.7.8-1 +- update to 1.7.8 (bugfix) + * Sun Mar 08 2009 Remi Collet 1.7.7-1 - update to 1.7.7 (bugfix) Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Mar 2009 19:02:20 -0000 1.6 +++ sources 11 Jul 2009 18:24:37 -0000 1.7 @@ -1 +1 @@ -b03763851a888e38834701807ed27a5a Cache_Lite-1.7.7.tgz +75c142769a4ca68afc72dcf4f494bdd6 Cache_Lite-1.7.8.tgz From remi at fedoraproject.org Sat Jul 11 18:30:27 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sat, 11 Jul 2009 18:30:27 +0000 (UTC) Subject: rpms/php-pear-Cache-Lite/F-11 php-pear-Cache-Lite.spec, 1.6, 1.7 sources, 1.6, 1.7 Message-ID: <20090711183027.6A59911C00DF@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Cache-Lite/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27169 Modified Files: php-pear-Cache-Lite.spec sources Log Message: update to 1.7.8 Index: php-pear-Cache-Lite.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/F-11/php-pear-Cache-Lite.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Cache-Lite.spec 8 Mar 2009 19:02:20 -0000 1.6 +++ php-pear-Cache-Lite.spec 11 Jul 2009 18:29:57 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Fast and Safe little cache system for PHP Summary(fr): M??thode de cache rapide et s??curis??e pour PHP Name: php-pear-Cache-Lite -Version: 1.7.7 +Version: 1.7.8 Release: 1%{?dist} License: PHP Group: Development/Libraries @@ -97,6 +97,9 @@ fi %changelog +* Sat Jul 08 2009 Remi Collet 1.7.8-1 +- update to 1.7.8 (bugfix) + * Sun Mar 08 2009 Remi Collet 1.7.7-1 - update to 1.7.7 (bugfix) Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Mar 2009 19:02:20 -0000 1.6 +++ sources 11 Jul 2009 18:29:57 -0000 1.7 @@ -1 +1 @@ -b03763851a888e38834701807ed27a5a Cache_Lite-1.7.7.tgz +75c142769a4ca68afc72dcf4f494bdd6 Cache_Lite-1.7.8.tgz From pkgdb at fedoraproject.org Sat Jul 11 18:30:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 18:30:38 +0000 Subject: [pkgdb] openssl-ibmca was added for sharkcz Message-ID: <20090711183038.5ECCB10F897@bastion2.fedora.phx.redhat.com> tibbs has added Package openssl-ibmca with summary A dynamic OpenSSL engine for IBMCA tibbs has approved Package openssl-ibmca tibbs has added a Fedora devel branch for openssl-ibmca with an owner of sharkcz tibbs has approved openssl-ibmca in Fedora devel tibbs has approved Package openssl-ibmca tibbs has set commit to Approved for 107427 on openssl-ibmca (Fedora devel) tibbs has set checkout to Approved for 107427 on openssl-ibmca (Fedora devel) tibbs has set build to Approved for 107427 on openssl-ibmca (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssl-ibmca From pkgdb at fedoraproject.org Sat Jul 11 18:30:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 18:30:39 +0000 Subject: [pkgdb] openssl-ibmca summary updated by tibbs Message-ID: <20090711183039.9FC1210F8A5@bastion2.fedora.phx.redhat.com> tibbs set package openssl-ibmca summary to A dynamic OpenSSL engine for IBMCA To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssl-ibmca From tibbs at fedoraproject.org Sat Jul 11 18:30:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 18:30:44 +0000 (UTC) Subject: rpms/openssl-ibmca - New directory Message-ID: <20090711183044.1392211C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssl-ibmca In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse27448/rpms/openssl-ibmca Log Message: Directory /cvs/pkgs/rpms/openssl-ibmca added to the repository From tibbs at fedoraproject.org Sat Jul 11 18:30:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 18:30:44 +0000 (UTC) Subject: rpms/openssl-ibmca/devel - New directory Message-ID: <20090711183044.3904A11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssl-ibmca/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse27448/rpms/openssl-ibmca/devel Log Message: Directory /cvs/pkgs/rpms/openssl-ibmca/devel added to the repository From tibbs at fedoraproject.org Sat Jul 11 18:30:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 18:30:49 +0000 (UTC) Subject: rpms/openssl-ibmca Makefile,NONE,1.1 Message-ID: <20090711183049.B1FFC11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssl-ibmca In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse27448/rpms/openssl-ibmca Added Files: Makefile Log Message: Setup of module openssl-ibmca --- NEW FILE Makefile --- # Top level Makefile for module openssl-ibmca all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Sat Jul 11 18:30:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 18:30:39 +0000 Subject: [pkgdb] openssl-ibmca (Fedora, 11) updated by tibbs Message-ID: <20090711183039.AD63810F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for openssl-ibmca tibbs has set commit to Approved for 107427 on openssl-ibmca (Fedora 11) tibbs has set checkout to Approved for 107427 on openssl-ibmca (Fedora 11) tibbs has set build to Approved for 107427 on openssl-ibmca (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssl-ibmca From tibbs at fedoraproject.org Sat Jul 11 18:30:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 18:30:50 +0000 (UTC) Subject: rpms/openssl-ibmca/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711183050.6EA6211C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssl-ibmca/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvse27448/rpms/openssl-ibmca/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module openssl-ibmca --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: openssl-ibmca # $Id: Makefile,v 1.1 2009/07/11 18:30:50 tibbs Exp $ NAME := openssl-ibmca SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From remi at fedoraproject.org Sat Jul 11 18:35:43 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sat, 11 Jul 2009 18:35:43 +0000 (UTC) Subject: rpms/php-pear-Cache-Lite/F-10 php-pear-Cache-Lite.spec, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090711183543.5F7DE11C00DF@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Cache-Lite/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28514 Modified Files: php-pear-Cache-Lite.spec sources Log Message: update to 1.7.8 Index: php-pear-Cache-Lite.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/F-10/php-pear-Cache-Lite.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Cache-Lite.spec 8 Mar 2009 19:09:10 -0000 1.4 +++ php-pear-Cache-Lite.spec 11 Jul 2009 18:35:11 -0000 1.5 @@ -4,7 +4,7 @@ Summary: Fast and Safe little cache system for PHP Summary(fr): M??thode de cache rapide et s??curis??e pour PHP Name: php-pear-Cache-Lite -Version: 1.7.7 +Version: 1.7.8 Release: 1%{?dist} License: PHP Group: Development/Libraries @@ -97,6 +97,9 @@ fi %changelog +* Sat Jul 08 2009 Remi Collet 1.7.8-1 +- update to 1.7.8 (bugfix) + * Sun Mar 08 2009 Remi Collet 1.7.7-1 - update to 1.7.7 (bugfix) Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Cache-Lite/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Mar 2009 19:09:10 -0000 1.5 +++ sources 11 Jul 2009 18:35:12 -0000 1.6 @@ -1 +1 @@ -b03763851a888e38834701807ed27a5a Cache_Lite-1.7.7.tgz +75c142769a4ca68afc72dcf4f494bdd6 Cache_Lite-1.7.8.tgz From jussilehtola at fedoraproject.org Sat Jul 11 19:01:16 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 19:01:16 +0000 (UTC) Subject: rpms/pondus/devel pondus.spec,1.1,1.2 Message-ID: <20090711190116.BCBF911C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pondus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2348/devel Modified Files: pondus.spec Log Message: Use same spec in devel as in EPEL. Index: pondus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pondus/devel/pondus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pondus.spec 11 Jul 2009 15:16:31 -0000 1.1 +++ pondus.spec 11 Jul 2009 19:00:46 -0000 1.2 @@ -2,7 +2,7 @@ Name: pondus Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ @@ -12,6 +12,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: desktop-file-utils BuildRequires: python-devel +BuildRequires: python-setuptools BuildArch: noarch # Required for plotting, not picked up automatically @@ -26,19 +27,21 @@ compared with the actual measurements in %prep %setup -q +# Remove Version entry from desktop file +sed -i "/Version/d" data/pondus.desktop %build -python setup.py build +python -c 'import setuptools; execfile("setup.py")' build %install rm -rf %{buildroot} -python setup.py install -O1 --skip-build --root %{buildroot} +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} # Find locales %{find_lang} %{name} # Remove installed doc that will go in %doc rm -rf %{buildroot}%{_docdir}/%{name} # Verify desktop file install -desktop-file-validate %{buildroot}%{_datadir}/applications/pondus.desktop +desktop-file-install --dir=%{buildroot}%{_datadir}/applications --vendor="" --remove-category=GTK data/pondus.desktop %clean rm -rf %{buildroot} @@ -57,6 +60,9 @@ rm -rf %{buildroot} %changelog * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 +- Fix EPEL build. + +* Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Added Requires: python-matplotlib for plotting capability. * Fri Jul 10 2009 Jussi Lehtola - 0.5.3-1 From tgl at fedoraproject.org Sat Jul 11 19:11:12 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Sat, 11 Jul 2009 19:11:12 +0000 (UTC) Subject: rpms/mysql/F-10 .cvsignore, 1.34, 1.35 mysql.spec, 1.110, 1.111 sources, 1.34, 1.35 mysql-expired-certs.patch, 1.1, NONE Message-ID: <20090711191112.1AD9011C00DF@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/mysql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5308 Modified Files: .cvsignore mysql.spec sources Removed Files: mysql-expired-certs.patch Log Message: Update to mysql version 5.0.83 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-10/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 7 Mar 2009 20:14:55 -0000 1.34 +++ .cvsignore 11 Jul 2009 19:11:11 -0000 1.35 @@ -1 +1 @@ -mysql-5.0.77.tar.gz +mysql-5.0.83.tar.gz Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-10/mysql.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- mysql.spec 7 Mar 2009 20:14:55 -0000 1.110 +++ mysql.spec 11 Jul 2009 19:11:11 -0000 1.111 @@ -1,5 +1,5 @@ Name: mysql -Version: 5.0.77 +Version: 5.0.83 Release: 1%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases @@ -33,7 +33,6 @@ Patch9: mysql-bdb-link.patch Patch10: mysql-bdb-open.patch Patch13: mysql-no-dbug.patch Patch15: mysql-stack-guard.patch -Patch16: mysql-expired-certs.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: gperf, perl, readline-devel, openssl-devel @@ -179,7 +178,6 @@ the MySQL sources. %patch10 -p1 %patch13 -p1 %patch15 -p1 -%patch16 -p1 libtoolize --force aclocal @@ -628,6 +626,10 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Sat Jul 11 2009 Tom Lane 5.0.83-1 +- Update to mysql version 5.0.83, for various fixes described at + http://dev.mysql.com/doc/refman/5.0/en/news-5-0-83.html + * Sat Mar 7 2009 Tom Lane 5.0.77-1 - Update to mysql version 5.0.77, for various fixes described at http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-77.html Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-10/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 7 Mar 2009 20:14:55 -0000 1.34 +++ sources 11 Jul 2009 19:11:11 -0000 1.35 @@ -1 +1 @@ -6c30a20c9059daf053a301e927eb1667 mysql-5.0.77.tar.gz +051392064a1e32cca5c23a593908b10e mysql-5.0.83.tar.gz --- mysql-expired-certs.patch DELETED --- From pkgdb at fedoraproject.org Sat Jul 11 19:16:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 19:16:09 +0000 Subject: [pkgdb] olpc-library was added for dsd Message-ID: <20090711191609.68B1110F85A@bastion2.fedora.phx.redhat.com> tibbs has added Package olpc-library with summary OLPC library page generator tibbs has approved Package olpc-library tibbs has added a Fedora devel branch for olpc-library with an owner of dsd tibbs has approved olpc-library in Fedora devel tibbs has approved Package olpc-library tibbs has set commit to Approved for 107427 on olpc-library (Fedora devel) tibbs has set checkout to Approved for 107427 on olpc-library (Fedora devel) tibbs has set build to Approved for 107427 on olpc-library (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-library From pkgdb at fedoraproject.org Sat Jul 11 19:16:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 19:16:11 +0000 Subject: [pkgdb] olpc-library summary updated by tibbs Message-ID: <20090711191611.A9D3D10F897@bastion2.fedora.phx.redhat.com> tibbs set package olpc-library summary to OLPC library page generator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-library From pkgdb at fedoraproject.org Sat Jul 11 19:16:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 19:16:11 +0000 Subject: [pkgdb] olpc-library (Fedora, 11) updated by tibbs Message-ID: <20090711191611.BB0FE10F8A8@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on olpc-library (Fedora devel) for cjb tibbs approved watchcommits on olpc-library (Fedora devel) for cjb tibbs approved commit on olpc-library (Fedora devel) for cjb tibbs approved build on olpc-library (Fedora devel) for cjb tibbs approved approveacls on olpc-library (Fedora devel) for cjb tibbs approved watchbugzilla on olpc-library (Fedora devel) for pbrobinson tibbs approved watchcommits on olpc-library (Fedora devel) for pbrobinson tibbs approved commit on olpc-library (Fedora devel) for pbrobinson tibbs approved build on olpc-library (Fedora devel) for pbrobinson tibbs approved approveacls on olpc-library (Fedora devel) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-library From pkgdb at fedoraproject.org Sat Jul 11 19:16:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 11 Jul 2009 19:16:11 +0000 Subject: [pkgdb] olpc-library (Fedora, 11) updated by tibbs Message-ID: <20090711191611.C50F510F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for olpc-library tibbs has set commit to Approved for 107427 on olpc-library (Fedora 11) tibbs has set checkout to Approved for 107427 on olpc-library (Fedora 11) tibbs has set build to Approved for 107427 on olpc-library (Fedora 11) tibbs approved watchbugzilla on olpc-library (Fedora 11) for cjb tibbs approved watchcommits on olpc-library (Fedora 11) for cjb tibbs approved commit on olpc-library (Fedora 11) for cjb tibbs approved build on olpc-library (Fedora 11) for cjb tibbs approved approveacls on olpc-library (Fedora 11) for cjb tibbs approved watchbugzilla on olpc-library (Fedora 11) for pbrobinson tibbs approved watchcommits on olpc-library (Fedora 11) for pbrobinson tibbs approved commit on olpc-library (Fedora 11) for pbrobinson tibbs approved build on olpc-library (Fedora 11) for pbrobinson tibbs approved approveacls on olpc-library (Fedora 11) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-library From tibbs at fedoraproject.org Sat Jul 11 19:16:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 19:16:17 +0000 (UTC) Subject: rpms/olpc-library - New directory Message-ID: <20090711191617.2288F11C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-library In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsgi6403/rpms/olpc-library Log Message: Directory /cvs/pkgs/rpms/olpc-library added to the repository From tibbs at fedoraproject.org Sat Jul 11 19:16:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 19:16:17 +0000 (UTC) Subject: rpms/olpc-library/devel - New directory Message-ID: <20090711191617.3D11811C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-library/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsgi6403/rpms/olpc-library/devel Log Message: Directory /cvs/pkgs/rpms/olpc-library/devel added to the repository From tibbs at fedoraproject.org Sat Jul 11 19:16:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 19:16:23 +0000 (UTC) Subject: rpms/olpc-library Makefile,NONE,1.1 Message-ID: <20090711191623.3820911C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-library In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsgi6403/rpms/olpc-library Added Files: Makefile Log Message: Setup of module olpc-library --- NEW FILE Makefile --- # Top level Makefile for module olpc-library all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Sat Jul 11 19:16:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Sat, 11 Jul 2009 19:16:23 +0000 (UTC) Subject: rpms/olpc-library/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090711191623.A0FD511C00DF@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-library/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsgi6403/rpms/olpc-library/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module olpc-library --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: olpc-library # $Id: Makefile,v 1.1 2009/07/11 19:16:23 tibbs Exp $ NAME := olpc-library SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From sharkcz at fedoraproject.org Sat Jul 11 20:33:30 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Sat, 11 Jul 2009 20:33:30 +0000 (UTC) Subject: rpms/openssl-ibmca/F-11 openssl-ibmca-1.0.0-make.patch, NONE, 1.1 openssl-ibmca.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711203330.88A7911C00DF@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/openssl-ibmca/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25348 Modified Files: .cvsignore sources Added Files: openssl-ibmca-1.0.0-make.patch openssl-ibmca.spec Log Message: initial import openssl-ibmca-1.0.0-make.patch: --- NEW FILE openssl-ibmca-1.0.0-make.patch --- --- openssl-ibmca-1.0.0/Makefile.am.make 2007-01-23 14:33:32.000000000 -0500 +++ openssl-ibmca-1.0.0/Makefile.am 2009-07-09 15:44:06.000000000 -0400 @@ -1,7 +1,6 @@ lib_LTLIBRARIES=libibmca.la -libibmca_la_LIBADD=@OPENSSL_LIB_DIR@/libcrypto.a -libibmca_la_LDFLAGS=-lc libibmca_la_CFLAGS=-I at OPENSSL_INCLUDE_DIR@ -AM_CFLAGS=-I at OPENSSL_INCLUDE_DIR@ libibmca_la_SOURCES=e_ibmca.c e_ibmca.h e_ibmca_err.c +libibmca_la_LDFLAGS=-module -version-info 0:1:0 -shared -no-undefined -avoid-version +libibmca_la_LIBADD=-L at OPENSSL_LIB_DIR@ -lcrypto --- NEW FILE openssl-ibmca.spec --- Summary: A dynamic OpenSSL engine for IBMCA Name: openssl-ibmca Version: 1.0.0 Release: 1%{?dist} License: OpenSSL Group: System Environment/Libraries URL: http://sourceforge.net/projects/opencryptoki Source0: http://downloads.sourceforge.net/opencryptoki/%{name}-%{version}.tar.bz2 Patch0: openssl-ibmca-1.0.0-make.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: openssl >= 0.9.8 BuildRequires: libica-devel automake libtool ExclusiveArch: s390 s390x %description A dynamic OpenSSL engine for IBMCA crypto hardware on IBM zSeries machines. %prep %setup -q %patch0 -p1 -b .make autoreconf -i -f %build %configure --with-openssl=%{_prefix} --with-engines-dir=%{_libdir}/openssl/engines make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_libdir}/openssl/engines/libibmca.la %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README openssl.cnf.sample %{_libdir}/openssl/engines/libibmca.so %changelog * Thu Jul 9 2009 Dan Horak - 1.0.0rc2-1.el5.4 - Fixed several issues with failure of using ibmca engine (#227644) * Tue Dec 12 2006 Phil Knirsch - 1.0.0rc2-1.el5.3 - Added missing symlinks for libs (#215735) - Added samle config file (#215735) * Thu Nov 23 2006 Phil Knirsch - 1.0.0rc2-1.el5.2 - Necessary fix so openssl finds the module properly (#215735) * Thu May 11 2006 Phil Knirsch - 1.0.0rc2 - Initial package. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssl-ibmca/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 18:30:49 -0000 1.1 +++ .cvsignore 11 Jul 2009 20:33:00 -0000 1.2 @@ -0,0 +1 @@ +openssl-ibmca-1.0.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssl-ibmca/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 18:30:50 -0000 1.1 +++ sources 11 Jul 2009 20:33:00 -0000 1.2 @@ -0,0 +1 @@ +403fb0544017ebf6c1c9bd2501015154 openssl-ibmca-1.0.0.tar.bz2 From sandeen at fedoraproject.org Sat Jul 11 20:35:34 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Sat, 11 Jul 2009 20:35:34 +0000 (UTC) Subject: rpms/guilt/devel guilt.spec,1.7,1.8 Message-ID: <20090711203534.9E80C11C00DF@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/guilt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25935 Modified Files: guilt.spec Log Message: * Sat Jul 11 2009 Eric Sandeen 0.32.1-2 - Fix asciidoc call so it works. Index: guilt.spec =================================================================== RCS file: /cvs/pkgs/rpms/guilt/devel/guilt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- guilt.spec 11 Jul 2009 16:43:34 -0000 1.7 +++ guilt.spec 11 Jul 2009 20:35:04 -0000 1.8 @@ -1,6 +1,6 @@ Name: guilt Version: 0.32.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scripts to manage quilt-like patches on top of git Group: Development/Tools @@ -25,7 +25,7 @@ made to your patches. %setup -q %build -make %{?_smp_mflags} +make ASCIIDOC='asciidoc --unsafe' %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man7/guilt*.7* %changelog +* Sat Jul 11 2009 Eric Sandeen 0.32.1-2 +- Fix asciidoc call so it works. + * Sat Jul 11 2009 Eric Sandeen 0.32.1-1 - New upstream version From sharkcz at fedoraproject.org Sat Jul 11 20:36:01 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Sat, 11 Jul 2009 20:36:01 +0000 (UTC) Subject: rpms/openssl-ibmca/devel openssl-ibmca-1.0.0-make.patch, NONE, 1.1 openssl-ibmca.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711203601.712D711C00DF@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/openssl-ibmca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26094 Modified Files: .cvsignore sources Added Files: openssl-ibmca-1.0.0-make.patch openssl-ibmca.spec Log Message: initial import openssl-ibmca-1.0.0-make.patch: --- NEW FILE openssl-ibmca-1.0.0-make.patch --- --- openssl-ibmca-1.0.0/Makefile.am.make 2007-01-23 14:33:32.000000000 -0500 +++ openssl-ibmca-1.0.0/Makefile.am 2009-07-09 15:44:06.000000000 -0400 @@ -1,7 +1,6 @@ lib_LTLIBRARIES=libibmca.la -libibmca_la_LIBADD=@OPENSSL_LIB_DIR@/libcrypto.a -libibmca_la_LDFLAGS=-lc libibmca_la_CFLAGS=-I at OPENSSL_INCLUDE_DIR@ -AM_CFLAGS=-I at OPENSSL_INCLUDE_DIR@ libibmca_la_SOURCES=e_ibmca.c e_ibmca.h e_ibmca_err.c +libibmca_la_LDFLAGS=-module -version-info 0:1:0 -shared -no-undefined -avoid-version +libibmca_la_LIBADD=-L at OPENSSL_LIB_DIR@ -lcrypto --- NEW FILE openssl-ibmca.spec --- Summary: A dynamic OpenSSL engine for IBMCA Name: openssl-ibmca Version: 1.0.0 Release: 1%{?dist} License: OpenSSL Group: System Environment/Libraries URL: http://sourceforge.net/projects/opencryptoki Source0: http://downloads.sourceforge.net/opencryptoki/%{name}-%{version}.tar.bz2 Patch0: openssl-ibmca-1.0.0-make.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: openssl >= 0.9.8 BuildRequires: libica-devel automake libtool ExclusiveArch: s390 s390x %description A dynamic OpenSSL engine for IBMCA crypto hardware on IBM zSeries machines. %prep %setup -q %patch0 -p1 -b .make autoreconf -i -f %build %configure --with-openssl=%{_prefix} --with-engines-dir=%{_libdir}/openssl/engines make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_libdir}/openssl/engines/libibmca.la %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README openssl.cnf.sample %{_libdir}/openssl/engines/libibmca.so %changelog * Thu Jul 9 2009 Dan Horak - 1.0.0rc2-1.el5.4 - Fixed several issues with failure of using ibmca engine (#227644) * Tue Dec 12 2006 Phil Knirsch - 1.0.0rc2-1.el5.3 - Added missing symlinks for libs (#215735) - Added samle config file (#215735) * Thu Nov 23 2006 Phil Knirsch - 1.0.0rc2-1.el5.2 - Necessary fix so openssl finds the module properly (#215735) * Thu May 11 2006 Phil Knirsch - 1.0.0rc2 - Initial package. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssl-ibmca/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 18:30:49 -0000 1.1 +++ .cvsignore 11 Jul 2009 20:35:31 -0000 1.2 @@ -0,0 +1 @@ +openssl-ibmca-1.0.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssl-ibmca/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 18:30:50 -0000 1.1 +++ sources 11 Jul 2009 20:35:31 -0000 1.2 @@ -0,0 +1 @@ +403fb0544017ebf6c1c9bd2501015154 openssl-ibmca-1.0.0.tar.bz2 From athimm at fedoraproject.org Sat Jul 11 20:38:15 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 11 Jul 2009 20:38:15 +0000 (UTC) Subject: rpms/mediawiki/F-10 mediawiki-1.15.0-commoncode.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 mediawiki.spec, 1.29, 1.30 sources, 1.21, 1.22 mediawiki-1.14.0-commoncode.patch, 1.1, NONE Message-ID: <20090711203815.D1A8B11C00DF@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26767/F-10 Modified Files: .cvsignore mediawiki.spec sources Added Files: mediawiki-1.15.0-commoncode.patch Removed Files: mediawiki-1.14.0-commoncode.patch Log Message: Update to 1.15.0, fix api.php access. mediawiki-1.15.0-commoncode.patch: --- NEW FILE mediawiki-1.15.0-commoncode.patch --- --- mediawiki-1.15.0//includes/Setup.php.commoncode 2009-01-27 20:58:26.000000000 +0100 +++ mediawiki-1.15.0//includes/Setup.php 2009-07-11 21:46:03.000000000 +0200 @@ -45,7 +45,7 @@ if( $wgLogo === false ) $wgLogo = "$wgStylePath/common/images/wiki.png"; if( $wgUploadPath === false ) $wgUploadPath = "$wgScriptPath/images"; -if( $wgUploadDirectory === false ) $wgUploadDirectory = "$IP/images"; +if( $wgUploadDirectory === false ) $wgUploadDirectory = "$DIR/images"; if( $wgMathPath === false ) $wgMathPath = "{$wgUploadPath}/math"; if( $wgMathDirectory === false ) $wgMathDirectory = "{$wgUploadDirectory}/math"; --- mediawiki-1.15.0//includes/WebStart.php.commoncode 2008-11-07 17:38:01.000000000 +0100 +++ mediawiki-1.15.0//includes/WebStart.php 2009-07-11 21:46:03.000000000 +0200 @@ -103,14 +103,14 @@ # LocalSettings.php is the per site customization file. If it does not exit # the wiki installer need to be launched or the generated file moved from # ./config/ to ./ - if( !file_exists( "$IP/LocalSettings.php" ) ) { + if( !file_exists( "$DIR/LocalSettings.php" ) ) { require_once( "$IP/includes/DefaultSettings.php" ); # used for printing the version require_once( "$IP/includes/templates/NoLocalSettings.php" ); die(); } # Include site settings. $IP may be changed (hopefully before the AutoLoader is invoked) - require_once( "$IP/LocalSettings.php" ); + require_once( "$DIR/LocalSettings.php" ); } wfProfileOut( 'WebStart.php-conf' ); --- mediawiki-1.15.0//includes/templates/NoLocalSettings.php.commoncode 2009-02-20 14:56:57.000000000 +0100 +++ mediawiki-1.15.0//includes/templates/NoLocalSettings.php 2009-07-11 21:46:03.000000000 +0200 @@ -58,7 +58,7 @@

MediaWiki

config/LocalSettings.php to the parent directory.' ); } else { echo( "Please set up the wiki first." ); --- mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php.commoncode 2008-07-11 00:00:04.000000000 +0200 +++ mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php 2009-07-11 21:46:03.000000000 +0200 @@ -15,7 +15,7 @@ # Convert watchlists to new format global $IP; -require_once( "../LocalSettings.php" ); +require_once( "$DIR/LocalSettings.php" ); require_once( "$IP/Setup.php" ); $wgTitle = Title::newFromText( "Rebuild links script" ); --- mediawiki-1.15.0//maintenance/commandLine.inc.commoncode 2009-02-23 13:37:33.000000000 +0100 +++ mediawiki-1.15.0//maintenance/commandLine.inc 2009-07-11 21:46:03.000000000 +0200 @@ -6,6 +6,8 @@ * @defgroup Maintenance Maintenance */ +$DIR=getcwd(); + $wgRequestTime = microtime(true); /** */ @@ -175,7 +177,7 @@ if ( isset( $options['conf'] ) ) { $settingsFile = $options['conf']; } else { - $settingsFile = "$IP/LocalSettings.php"; + $settingsFile = "$DIR/LocalSettings.php"; } if ( isset( $options['wiki'] ) ) { $bits = explode( '-', $options['wiki'] ); @@ -201,7 +203,7 @@ $adminSettings = isset( $options['aconf'] ) ? $options['aconf'] - : "{$IP}/AdminSettings.php"; + : "{$DIR}/AdminSettings.php"; if( is_readable( $adminSettings ) ) require_once( $adminSettings ); --- mediawiki-1.15.0//maintenance/update.php.commoncode 2008-07-19 14:15:07.000000000 +0200 +++ mediawiki-1.15.0//maintenance/update.php 2009-07-11 21:46:03.000000000 +0200 @@ -10,6 +10,9 @@ * @ingroup Maintenance */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + /** */ $wgUseMasterForMaintenance = true; $options = array( 'quick', 'nopurge' ); --- mediawiki-1.15.0//config/index.php.commoncode 2009-05-08 07:51:15.000000000 +0200 +++ mediawiki-1.15.0//config/index.php 2009-07-11 21:46:03.000000000 +0200 @@ -19,6 +19,9 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # http://www.gnu.org/copyleft/gpl.html +$DIR=dirname( getcwd() ); +chdir('/usr/share/mediawiki/config'); + error_reporting( E_ALL ); header( "Content-type: text/html; charset=utf-8" ); @ini_set( "display_errors", true ); @@ -27,7 +30,7 @@ $wgRequestTime = microtime( true ); # Attempt to set up the include path, to fix problems with relative includes -$IP = dirname( dirname( __FILE__ ) ); +$IP = '/usr/share/mediawiki'; define( 'MW_INSTALL_PATH', $IP ); # Define an entry point and include some files @@ -218,18 +221,18 @@ /* Check for existing configurations and bug out! */ -if( file_exists( "../LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; dieout( "

Setup has completed, your wiki is configured.

Please delete the /config directory for extra security.

" ); } -if( file_exists( "./LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { writeSuccessMessage(); dieout( '' ); } -if( !is_writable( "." ) ) { +if( !is_writable( $DIR . "/config" ) ) { dieout( "

Can't write config file, aborting

In order to configure the wiki you have to make the config subdirectory @@ -1213,7 +1216,7 @@ $localSettings = "<" . "?php$endl$local"; // Fix up a common line-ending problem (due to CVS on Windows) $localSettings = str_replace( "\r\n", "\n", $localSettings ); - $f = fopen( "LocalSettings.php", 'xt' ); + $f = fopen( $DIR . "/config/LocalSettings.php", 'xt' ); if( $f == false ) { print( "\n" ); @@ -1776,7 +1779,7 @@ if( defined( 'MW_INSTALL_PATH' ) ) { \$IP = MW_INSTALL_PATH; } else { - \$IP = dirname( __FILE__ ); + \$IP = '/usr/share/mediawiki'; } \$path = array( \$IP, \"\$IP/includes\", \"\$IP/languages\" ); --- mediawiki-1.15.0//index.php.commoncode 2009-03-20 13:00:38.000000000 +0100 +++ mediawiki-1.15.0//index.php 2009-07-11 21:46:03.000000000 +0200 @@ -36,9 +36,11 @@ * @file */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); # Initialise common code -$preIP = dirname( __FILE__ ); +$preIP = '/usr/share/mediawiki'; require_once( "$preIP/includes/WebStart.php" ); # Initialize MediaWiki base class --- mediawiki-1.15.0//api.php.commoncode 2009-05-05 16:07:59.000000000 +0200 +++ mediawiki-1.15.0//api.php 2009-07-11 21:46:03.000000000 +0200 @@ -34,8 +34,11 @@ * in the URL. */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + // Initialise common code -require (dirname(__FILE__) . '/includes/WebStart.php'); +require ('/usr/share/mediawiki' . '/includes/WebStart.php'); wfProfileIn('api.php'); Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 28 Feb 2009 18:33:25 -0000 1.20 +++ .cvsignore 11 Jul 2009 20:37:45 -0000 1.21 @@ -1 +1 @@ -mediawiki-1.14.0.tar.gz +mediawiki-1.15.0.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/mediawiki.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mediawiki.spec 28 Feb 2009 18:33:25 -0000 1.29 +++ mediawiki.spec 11 Jul 2009 20:37:45 -0000 1.30 @@ -1,13 +1,14 @@ Summary: A wiki engine Name: mediawiki -Version: 1.14.0 -Release: 45%{?dist} +Version: 1.15.0 +Release: 47%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ -Source0: http://download.wikimedia.org/mediawiki/1.14/%{name}-%{version}.tar.gz -Patch0: mediawiki-1.14.0-commoncode.patch +Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 # to make sure the "apache" group is created before mediawiki is installed Requires(pre): httpd @@ -87,6 +88,7 @@ cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php +ln -s %{_datadir}/mediawiki/api.php api.php %clean rm -rf %{buildroot} @@ -111,6 +113,16 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Axel Thimm - 1.15.0-47 +- Fix api.php breakage. + +* Sat Jun 13 2009 Axel Thimm - 1.15.0-46 +- Update to 1.15.0. + +* Thu Apr 16 2009 S390x secondary arch maintainer +- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs + (added sparc64 per request from the sparc maintainer) + * Sat Feb 28 2009 Axel Thimm - 1.14.0-45 - Update to 1.14.0. Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 28 Feb 2009 18:33:25 -0000 1.21 +++ sources 11 Jul 2009 20:37:45 -0000 1.22 @@ -1 +1 @@ -36bfd924e92b61a6f5fe70c6bc8e5aac mediawiki-1.14.0.tar.gz +fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz --- mediawiki-1.14.0-commoncode.patch DELETED --- From athimm at fedoraproject.org Sat Jul 11 20:38:16 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 11 Jul 2009 20:38:16 +0000 (UTC) Subject: rpms/mediawiki/devel mediawiki-1.15.0-commoncode.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 mediawiki.spec, 1.31, 1.32 sources, 1.21, 1.22 mediawiki-1.14.0-commoncode.patch, 1.1, NONE Message-ID: <20090711203816.92C9A11C00DF@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26767/devel Modified Files: .cvsignore mediawiki.spec sources Added Files: mediawiki-1.15.0-commoncode.patch Removed Files: mediawiki-1.14.0-commoncode.patch Log Message: Update to 1.15.0, fix api.php access. mediawiki-1.15.0-commoncode.patch: --- NEW FILE mediawiki-1.15.0-commoncode.patch --- --- mediawiki-1.15.0//includes/Setup.php.commoncode 2009-01-27 20:58:26.000000000 +0100 +++ mediawiki-1.15.0//includes/Setup.php 2009-07-11 21:46:03.000000000 +0200 @@ -45,7 +45,7 @@ if( $wgLogo === false ) $wgLogo = "$wgStylePath/common/images/wiki.png"; if( $wgUploadPath === false ) $wgUploadPath = "$wgScriptPath/images"; -if( $wgUploadDirectory === false ) $wgUploadDirectory = "$IP/images"; +if( $wgUploadDirectory === false ) $wgUploadDirectory = "$DIR/images"; if( $wgMathPath === false ) $wgMathPath = "{$wgUploadPath}/math"; if( $wgMathDirectory === false ) $wgMathDirectory = "{$wgUploadDirectory}/math"; --- mediawiki-1.15.0//includes/WebStart.php.commoncode 2008-11-07 17:38:01.000000000 +0100 +++ mediawiki-1.15.0//includes/WebStart.php 2009-07-11 21:46:03.000000000 +0200 @@ -103,14 +103,14 @@ # LocalSettings.php is the per site customization file. If it does not exit # the wiki installer need to be launched or the generated file moved from # ./config/ to ./ - if( !file_exists( "$IP/LocalSettings.php" ) ) { + if( !file_exists( "$DIR/LocalSettings.php" ) ) { require_once( "$IP/includes/DefaultSettings.php" ); # used for printing the version require_once( "$IP/includes/templates/NoLocalSettings.php" ); die(); } # Include site settings. $IP may be changed (hopefully before the AutoLoader is invoked) - require_once( "$IP/LocalSettings.php" ); + require_once( "$DIR/LocalSettings.php" ); } wfProfileOut( 'WebStart.php-conf' ); --- mediawiki-1.15.0//includes/templates/NoLocalSettings.php.commoncode 2009-02-20 14:56:57.000000000 +0100 +++ mediawiki-1.15.0//includes/templates/NoLocalSettings.php 2009-07-11 21:46:03.000000000 +0200 @@ -58,7 +58,7 @@

MediaWiki

config/LocalSettings.php to the parent directory.' ); } else { echo( "Please set up the wiki first." ); --- mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php.commoncode 2008-07-11 00:00:04.000000000 +0200 +++ mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php 2009-07-11 21:46:03.000000000 +0200 @@ -15,7 +15,7 @@ # Convert watchlists to new format global $IP; -require_once( "../LocalSettings.php" ); +require_once( "$DIR/LocalSettings.php" ); require_once( "$IP/Setup.php" ); $wgTitle = Title::newFromText( "Rebuild links script" ); --- mediawiki-1.15.0//maintenance/commandLine.inc.commoncode 2009-02-23 13:37:33.000000000 +0100 +++ mediawiki-1.15.0//maintenance/commandLine.inc 2009-07-11 21:46:03.000000000 +0200 @@ -6,6 +6,8 @@ * @defgroup Maintenance Maintenance */ +$DIR=getcwd(); + $wgRequestTime = microtime(true); /** */ @@ -175,7 +177,7 @@ if ( isset( $options['conf'] ) ) { $settingsFile = $options['conf']; } else { - $settingsFile = "$IP/LocalSettings.php"; + $settingsFile = "$DIR/LocalSettings.php"; } if ( isset( $options['wiki'] ) ) { $bits = explode( '-', $options['wiki'] ); @@ -201,7 +203,7 @@ $adminSettings = isset( $options['aconf'] ) ? $options['aconf'] - : "{$IP}/AdminSettings.php"; + : "{$DIR}/AdminSettings.php"; if( is_readable( $adminSettings ) ) require_once( $adminSettings ); --- mediawiki-1.15.0//maintenance/update.php.commoncode 2008-07-19 14:15:07.000000000 +0200 +++ mediawiki-1.15.0//maintenance/update.php 2009-07-11 21:46:03.000000000 +0200 @@ -10,6 +10,9 @@ * @ingroup Maintenance */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + /** */ $wgUseMasterForMaintenance = true; $options = array( 'quick', 'nopurge' ); --- mediawiki-1.15.0//config/index.php.commoncode 2009-05-08 07:51:15.000000000 +0200 +++ mediawiki-1.15.0//config/index.php 2009-07-11 21:46:03.000000000 +0200 @@ -19,6 +19,9 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # http://www.gnu.org/copyleft/gpl.html +$DIR=dirname( getcwd() ); +chdir('/usr/share/mediawiki/config'); + error_reporting( E_ALL ); header( "Content-type: text/html; charset=utf-8" ); @ini_set( "display_errors", true ); @@ -27,7 +30,7 @@ $wgRequestTime = microtime( true ); # Attempt to set up the include path, to fix problems with relative includes -$IP = dirname( dirname( __FILE__ ) ); +$IP = '/usr/share/mediawiki'; define( 'MW_INSTALL_PATH', $IP ); # Define an entry point and include some files @@ -218,18 +221,18 @@ /* Check for existing configurations and bug out! */ -if( file_exists( "../LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; dieout( "

Setup has completed, your wiki is configured.

Please delete the /config directory for extra security.

" ); } -if( file_exists( "./LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { writeSuccessMessage(); dieout( '' ); } -if( !is_writable( "." ) ) { +if( !is_writable( $DIR . "/config" ) ) { dieout( "

Can't write config file, aborting

In order to configure the wiki you have to make the config subdirectory @@ -1213,7 +1216,7 @@ $localSettings = "<" . "?php$endl$local"; // Fix up a common line-ending problem (due to CVS on Windows) $localSettings = str_replace( "\r\n", "\n", $localSettings ); - $f = fopen( "LocalSettings.php", 'xt' ); + $f = fopen( $DIR . "/config/LocalSettings.php", 'xt' ); if( $f == false ) { print( "\n" ); @@ -1776,7 +1779,7 @@ if( defined( 'MW_INSTALL_PATH' ) ) { \$IP = MW_INSTALL_PATH; } else { - \$IP = dirname( __FILE__ ); + \$IP = '/usr/share/mediawiki'; } \$path = array( \$IP, \"\$IP/includes\", \"\$IP/languages\" ); --- mediawiki-1.15.0//index.php.commoncode 2009-03-20 13:00:38.000000000 +0100 +++ mediawiki-1.15.0//index.php 2009-07-11 21:46:03.000000000 +0200 @@ -36,9 +36,11 @@ * @file */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); # Initialise common code -$preIP = dirname( __FILE__ ); +$preIP = '/usr/share/mediawiki'; require_once( "$preIP/includes/WebStart.php" ); # Initialize MediaWiki base class --- mediawiki-1.15.0//api.php.commoncode 2009-05-05 16:07:59.000000000 +0200 +++ mediawiki-1.15.0//api.php 2009-07-11 21:46:03.000000000 +0200 @@ -34,8 +34,11 @@ * in the URL. */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + // Initialise common code -require (dirname(__FILE__) . '/includes/WebStart.php'); +require ('/usr/share/mediawiki' . '/includes/WebStart.php'); wfProfileIn('api.php'); Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 28 Feb 2009 18:33:26 -0000 1.20 +++ .cvsignore 11 Jul 2009 20:37:46 -0000 1.21 @@ -1 +1 @@ -mediawiki-1.14.0.tar.gz +mediawiki-1.15.0.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/mediawiki.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mediawiki.spec 16 Apr 2009 09:26:12 -0000 1.31 +++ mediawiki.spec 11 Jul 2009 20:37:46 -0000 1.32 @@ -1,12 +1,12 @@ Summary: A wiki engine Name: mediawiki -Version: 1.14.0 -Release: 45%{?dist} +Version: 1.15.0 +Release: 47%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ -Source0: http://download.wikimedia.org/mediawiki/1.14/%{name}-%{version}.tar.gz -Patch0: mediawiki-1.14.0-commoncode.patch +Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 @@ -88,6 +88,7 @@ cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php +ln -s %{_datadir}/mediawiki/api.php api.php %clean rm -rf %{buildroot} @@ -112,6 +113,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Axel Thimm - 1.15.0-47 +- Fix api.php breakage. + +* Sat Jun 13 2009 Axel Thimm - 1.15.0-46 +- Update to 1.15.0. + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 28 Feb 2009 18:33:26 -0000 1.21 +++ sources 11 Jul 2009 20:37:46 -0000 1.22 @@ -1 +1 @@ -36bfd924e92b61a6f5fe70c6bc8e5aac mediawiki-1.14.0.tar.gz +fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz --- mediawiki-1.14.0-commoncode.patch DELETED --- From athimm at fedoraproject.org Sat Jul 11 20:38:16 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 11 Jul 2009 20:38:16 +0000 (UTC) Subject: rpms/mediawiki/F-11 mediawiki-1.15.0-commoncode.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 mediawiki.spec, 1.30, 1.31 sources, 1.21, 1.22 mediawiki-1.14.0-commoncode.patch, 1.1, NONE Message-ID: <20090711203816.312B311C00DF@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26767/F-11 Modified Files: .cvsignore mediawiki.spec sources Added Files: mediawiki-1.15.0-commoncode.patch Removed Files: mediawiki-1.14.0-commoncode.patch Log Message: Update to 1.15.0, fix api.php access. mediawiki-1.15.0-commoncode.patch: --- NEW FILE mediawiki-1.15.0-commoncode.patch --- --- mediawiki-1.15.0//includes/Setup.php.commoncode 2009-01-27 20:58:26.000000000 +0100 +++ mediawiki-1.15.0//includes/Setup.php 2009-07-11 21:46:03.000000000 +0200 @@ -45,7 +45,7 @@ if( $wgLogo === false ) $wgLogo = "$wgStylePath/common/images/wiki.png"; if( $wgUploadPath === false ) $wgUploadPath = "$wgScriptPath/images"; -if( $wgUploadDirectory === false ) $wgUploadDirectory = "$IP/images"; +if( $wgUploadDirectory === false ) $wgUploadDirectory = "$DIR/images"; if( $wgMathPath === false ) $wgMathPath = "{$wgUploadPath}/math"; if( $wgMathDirectory === false ) $wgMathDirectory = "{$wgUploadDirectory}/math"; --- mediawiki-1.15.0//includes/WebStart.php.commoncode 2008-11-07 17:38:01.000000000 +0100 +++ mediawiki-1.15.0//includes/WebStart.php 2009-07-11 21:46:03.000000000 +0200 @@ -103,14 +103,14 @@ # LocalSettings.php is the per site customization file. If it does not exit # the wiki installer need to be launched or the generated file moved from # ./config/ to ./ - if( !file_exists( "$IP/LocalSettings.php" ) ) { + if( !file_exists( "$DIR/LocalSettings.php" ) ) { require_once( "$IP/includes/DefaultSettings.php" ); # used for printing the version require_once( "$IP/includes/templates/NoLocalSettings.php" ); die(); } # Include site settings. $IP may be changed (hopefully before the AutoLoader is invoked) - require_once( "$IP/LocalSettings.php" ); + require_once( "$DIR/LocalSettings.php" ); } wfProfileOut( 'WebStart.php-conf' ); --- mediawiki-1.15.0//includes/templates/NoLocalSettings.php.commoncode 2009-02-20 14:56:57.000000000 +0100 +++ mediawiki-1.15.0//includes/templates/NoLocalSettings.php 2009-07-11 21:46:03.000000000 +0200 @@ -58,7 +58,7 @@

MediaWiki

config/LocalSettings.php to the parent directory.' ); } else { echo( "Please set up the wiki first." ); --- mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php.commoncode 2008-07-11 00:00:04.000000000 +0200 +++ mediawiki-1.15.0//maintenance/archives/upgradeWatchlist.php 2009-07-11 21:46:03.000000000 +0200 @@ -15,7 +15,7 @@ # Convert watchlists to new format global $IP; -require_once( "../LocalSettings.php" ); +require_once( "$DIR/LocalSettings.php" ); require_once( "$IP/Setup.php" ); $wgTitle = Title::newFromText( "Rebuild links script" ); --- mediawiki-1.15.0//maintenance/commandLine.inc.commoncode 2009-02-23 13:37:33.000000000 +0100 +++ mediawiki-1.15.0//maintenance/commandLine.inc 2009-07-11 21:46:03.000000000 +0200 @@ -6,6 +6,8 @@ * @defgroup Maintenance Maintenance */ +$DIR=getcwd(); + $wgRequestTime = microtime(true); /** */ @@ -175,7 +177,7 @@ if ( isset( $options['conf'] ) ) { $settingsFile = $options['conf']; } else { - $settingsFile = "$IP/LocalSettings.php"; + $settingsFile = "$DIR/LocalSettings.php"; } if ( isset( $options['wiki'] ) ) { $bits = explode( '-', $options['wiki'] ); @@ -201,7 +203,7 @@ $adminSettings = isset( $options['aconf'] ) ? $options['aconf'] - : "{$IP}/AdminSettings.php"; + : "{$DIR}/AdminSettings.php"; if( is_readable( $adminSettings ) ) require_once( $adminSettings ); --- mediawiki-1.15.0//maintenance/update.php.commoncode 2008-07-19 14:15:07.000000000 +0200 +++ mediawiki-1.15.0//maintenance/update.php 2009-07-11 21:46:03.000000000 +0200 @@ -10,6 +10,9 @@ * @ingroup Maintenance */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + /** */ $wgUseMasterForMaintenance = true; $options = array( 'quick', 'nopurge' ); --- mediawiki-1.15.0//config/index.php.commoncode 2009-05-08 07:51:15.000000000 +0200 +++ mediawiki-1.15.0//config/index.php 2009-07-11 21:46:03.000000000 +0200 @@ -19,6 +19,9 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # http://www.gnu.org/copyleft/gpl.html +$DIR=dirname( getcwd() ); +chdir('/usr/share/mediawiki/config'); + error_reporting( E_ALL ); header( "Content-type: text/html; charset=utf-8" ); @ini_set( "display_errors", true ); @@ -27,7 +30,7 @@ $wgRequestTime = microtime( true ); # Attempt to set up the include path, to fix problems with relative includes -$IP = dirname( dirname( __FILE__ ) ); +$IP = '/usr/share/mediawiki'; define( 'MW_INSTALL_PATH', $IP ); # Define an entry point and include some files @@ -218,18 +221,18 @@ /* Check for existing configurations and bug out! */ -if( file_exists( "../LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; dieout( "

Setup has completed, your wiki is configured.

Please delete the /config directory for extra security.

" ); } -if( file_exists( "./LocalSettings.php" ) ) { +if( file_exists( "$DIR/LocalSettings.php" ) ) { writeSuccessMessage(); dieout( '' ); } -if( !is_writable( "." ) ) { +if( !is_writable( $DIR . "/config" ) ) { dieout( "

Can't write config file, aborting

In order to configure the wiki you have to make the config subdirectory @@ -1213,7 +1216,7 @@ $localSettings = "<" . "?php$endl$local"; // Fix up a common line-ending problem (due to CVS on Windows) $localSettings = str_replace( "\r\n", "\n", $localSettings ); - $f = fopen( "LocalSettings.php", 'xt' ); + $f = fopen( $DIR . "/config/LocalSettings.php", 'xt' ); if( $f == false ) { print( "\n" ); @@ -1776,7 +1779,7 @@ if( defined( 'MW_INSTALL_PATH' ) ) { \$IP = MW_INSTALL_PATH; } else { - \$IP = dirname( __FILE__ ); + \$IP = '/usr/share/mediawiki'; } \$path = array( \$IP, \"\$IP/includes\", \"\$IP/languages\" ); --- mediawiki-1.15.0//index.php.commoncode 2009-03-20 13:00:38.000000000 +0100 +++ mediawiki-1.15.0//index.php 2009-07-11 21:46:03.000000000 +0200 @@ -36,9 +36,11 @@ * @file */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); # Initialise common code -$preIP = dirname( __FILE__ ); +$preIP = '/usr/share/mediawiki'; require_once( "$preIP/includes/WebStart.php" ); # Initialize MediaWiki base class --- mediawiki-1.15.0//api.php.commoncode 2009-05-05 16:07:59.000000000 +0200 +++ mediawiki-1.15.0//api.php 2009-07-11 21:46:03.000000000 +0200 @@ -34,8 +34,11 @@ * in the URL. */ +$DIR=getcwd(); +chdir('/usr/share/mediawiki'); + // Initialise common code -require (dirname(__FILE__) . '/includes/WebStart.php'); +require ('/usr/share/mediawiki' . '/includes/WebStart.php'); wfProfileIn('api.php'); Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 28 Feb 2009 18:33:26 -0000 1.20 +++ .cvsignore 11 Jul 2009 20:37:45 -0000 1.21 @@ -1 +1 @@ -mediawiki-1.14.0.tar.gz +mediawiki-1.15.0.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/mediawiki.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mediawiki.spec 28 Feb 2009 18:33:26 -0000 1.30 +++ mediawiki.spec 11 Jul 2009 20:37:45 -0000 1.31 @@ -1,13 +1,14 @@ Summary: A wiki engine Name: mediawiki -Version: 1.14.0 -Release: 45%{?dist} +Version: 1.15.0 +Release: 47%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ -Source0: http://download.wikimedia.org/mediawiki/1.14/%{name}-%{version}.tar.gz -Patch0: mediawiki-1.14.0-commoncode.patch +Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 # to make sure the "apache" group is created before mediawiki is installed Requires(pre): httpd @@ -87,6 +88,7 @@ cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php +ln -s %{_datadir}/mediawiki/api.php api.php %clean rm -rf %{buildroot} @@ -111,6 +113,16 @@ rm -rf %{buildroot} %changelog +* Sat Jul 11 2009 Axel Thimm - 1.15.0-47 +- Fix api.php breakage. + +* Sat Jun 13 2009 Axel Thimm - 1.15.0-46 +- Update to 1.15.0. + +* Thu Apr 16 2009 S390x secondary arch maintainer +- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs + (added sparc64 per request from the sparc maintainer) + * Sat Feb 28 2009 Axel Thimm - 1.14.0-45 - Update to 1.14.0. Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 28 Feb 2009 18:33:26 -0000 1.21 +++ sources 11 Jul 2009 20:37:45 -0000 1.22 @@ -1 +1 @@ -36bfd924e92b61a6f5fe70c6bc8e5aac mediawiki-1.14.0.tar.gz +fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz --- mediawiki-1.14.0-commoncode.patch DELETED --- From tgl at fedoraproject.org Sat Jul 11 20:39:12 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Sat, 11 Jul 2009 20:39:12 +0000 (UTC) Subject: rpms/mysql/F-10 mysql-bug-44348.patch, NONE, 1.1 mysql.spec, 1.111, 1.112 Message-ID: <20090711203912.F2C5211C00DF@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/mysql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27735 Modified Files: mysql.spec Added Files: mysql-bug-44348.patch Log Message: Work around upstream bug 44348 mysql-bug-44348.patch: --- NEW FILE mysql-bug-44348.patch --- Workaround for upstream bug http://bugs.mysql.com/44348 (don't these people run their own regression tests?). Note that this is a workaround and not a preferred solution, but I'm not going to mess with signedness of server variable reports ... diff -Naur mysql-5.0.79.orig/tests/mysql_client_test.c mysql-5.0.79/tests/mysql_client_test.c --- mysql-5.0.79.orig/tests/mysql_client_test.c 2009-03-09 17:26:09.000000000 -0400 +++ mysql-5.0.79/tests/mysql_client_test.c 2009-04-17 16:18:58.000000000 -0400 @@ -16303,7 +16303,8 @@ DIE_IF(mysql_query(con, query_buffer)); DIE_UNLESS(rs= mysql_store_result(con)); DIE_UNLESS(row= mysql_fetch_row(rs)); - *var_value= atoi(row[0]); + /* use atoll so that 4294967295 converts to -1 not 2147483647 */ + *var_value= atoll(row[0]); mysql_free_result(rs); } Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-10/mysql.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- mysql.spec 11 Jul 2009 19:11:11 -0000 1.111 +++ mysql.spec 11 Jul 2009 20:38:42 -0000 1.112 @@ -1,6 +1,6 @@ Name: mysql Version: 5.0.83 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases URL: http://www.mysql.com @@ -33,6 +33,7 @@ Patch9: mysql-bdb-link.patch Patch10: mysql-bdb-open.patch Patch13: mysql-no-dbug.patch Patch15: mysql-stack-guard.patch +Patch17: mysql-bug-44348.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: gperf, perl, readline-devel, openssl-devel @@ -178,6 +179,7 @@ the MySQL sources. %patch10 -p1 %patch13 -p1 %patch15 -p1 +%patch17 -p1 libtoolize --force aclocal @@ -626,6 +628,9 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Sat Jul 11 2009 Tom Lane 5.0.83-2 +- Work around upstream bug 44348 + * Sat Jul 11 2009 Tom Lane 5.0.83-1 - Update to mysql version 5.0.83, for various fixes described at http://dev.mysql.com/doc/refman/5.0/en/news-5-0-83.html From pali at fedoraproject.org Sat Jul 11 20:59:22 2009 From: pali at fedoraproject.org (=?utf-8?q?Pavel_Lis=C3=BD?=) Date: Sat, 11 Jul 2009 20:59:22 +0000 (UTC) Subject: rpms/cherokee/devel .cvsignore, 1.9, 1.10 cherokee.spec, 1.17, 1.18 import.log, 1.14, 1.15 sources, 1.9, 1.10 Message-ID: <20090711205922.9745D11C00DF@cvs1.fedora.phx.redhat.com> Author: pali Update of /cvs/pkgs/rpms/cherokee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32147/devel Modified Files: .cvsignore cherokee.spec import.log sources Log Message: updated to 0.99.20 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cherokee/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 14 Jun 2009 11:43:38 -0000 1.9 +++ .cvsignore 11 Jul 2009 20:58:52 -0000 1.10 @@ -1 +1 @@ -cherokee-0.99.17.tar.gz +cherokee-0.99.20.tar.gz Index: cherokee.spec =================================================================== RCS file: /cvs/pkgs/rpms/cherokee/devel/cherokee.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- cherokee.spec 14 Jun 2009 18:40:45 -0000 1.17 +++ cherokee.spec 11 Jul 2009 20:58:52 -0000 1.18 @@ -10,8 +10,8 @@ ExcludeArch: ppc %endif Name: cherokee -Version: 0.99.17 -Release: 2%{?dist} +Version: 0.99.20 +Release: 1%{?dist} Summary: Flexible and Fast Webserver Group: Applications/Internet @@ -22,7 +22,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Source1: %{name}.init Source2: %{name}.logrotate -BuildRequires: openssl-devel pam-devel pcre-devel mysql-devel +BuildRequires: openssl-devel pam-devel mysql-devel pcre +# BuildRequires: pcre-devel BuildRequires: gettext # For spawn-fcgi Requires: spawn-fcgi @@ -167,6 +168,9 @@ fi %changelog +* Sat Jul 11 2009 Pavel Lisy - 0.99.20-1 +- updated to 0.99.20 + * Sun Jun 14 2009 Pavel Lisy - 0.99.17-2 - .spec changes in %files section Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/cherokee/devel/import.log,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- import.log 14 Jun 2009 18:40:45 -0000 1.14 +++ import.log 11 Jul 2009 20:58:52 -0000 1.15 @@ -12,3 +12,4 @@ cherokee-0_99_11-2:HEAD:cherokee-0.99.11 cherokee-0_99_17-1_fc11:HEAD:cherokee-0.99.17-1.fc11.src.rpm:1244979642 cherokee-0_99_17-1_fc11:HEAD:cherokee-0.99.17-1.fc11.src.rpm:1245003270 cherokee-0_99_17-2_fc11:HEAD:cherokee-0.99.17-2.fc11.src.rpm:1245004731 +cherokee-0_99_20-1_fc11:HEAD:cherokee-0.99.20-1.fc11.src.rpm:1247345910 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cherokee/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 14 Jun 2009 11:43:39 -0000 1.9 +++ sources 11 Jul 2009 20:58:52 -0000 1.10 @@ -1 +1 @@ -bea17e1de0e0ccd598a59f6c06d390e3 cherokee-0.99.17.tar.gz +78a370f7b012e77ea2278c1048bae754 cherokee-0.99.20.tar.gz From jussilehtola at fedoraproject.org Sat Jul 11 21:01:39 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 11 Jul 2009 21:01:39 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.84,1.85 Message-ID: <20090711210139.477B111C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32765 Modified Files: octave.spec Log Message: Put in missing gnuplot require. Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- octave.spec 11 Jul 2009 15:54:42 -0000 1.84 +++ octave.spec 11 Jul 2009 21:01:08 -0000 1.85 @@ -19,11 +19,9 @@ BuildRequires: ncurses-devel zlib-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel libX11-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils -BuildRequires: GraphicsMagick-c++-devel fltk-devel tex(latex) -# FIXME: Uncomment when qrupdate is available in Fedora -#BuildRequires: qrupdate-devel +BuildRequires: GraphicsMagick-c++-devel fltk-devel qrupdate-devel -Requires: gnuplot less info texinfo +Requires: gnuplot gnuplot-common less info texinfo Requires(post): info Requires(preun): info From jkratoch at fedoraproject.org Sat Jul 11 21:25:57 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Sat, 11 Jul 2009 21:25:57 +0000 (UTC) Subject: rpms/binutils/devel binutils.spec,1.166,1.167 Message-ID: <20090711212557.D700711C00DF@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6061 Modified Files: binutils.spec Log Message: * Sat Jul 11 2009 Jan Kratochvil 2.19.51.0.11-24 - Provide uuencode output of the testsuite results. Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.166 retrieving revision 1.167 diff -u -p -r1.166 -r1.167 --- binutils.spec 30 Jun 2009 13:18:39 -0000 1.166 +++ binutils.spec 11 Jul 2009 21:25:27 -0000 1.167 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.11 -Release: 23%{?dist} +Release: 24%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -46,7 +46,7 @@ BuildRequires: texinfo >= 4.0, gettext, # Required for: ld-bootstrap/bootstrap.exp bootstrap with --static # It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array %if %{run_testsuite} -BuildRequires: dejagnu, zlib-static, glibc-static +BuildRequires: dejagnu, zlib-static, glibc-static, sharutils %endif Conflicts: gcc-c++ < 4.0.0 Requires(post): /sbin/install-info @@ -176,10 +176,17 @@ make %{_smp_mflags} tooldir=%{_prefix} i %if !%{run_testsuite} echo ====================TESTSUITE DISABLED========================= %else -make -k check < /dev/null > check.log 2>&1 || : +make -k check < /dev/null || : echo ====================TESTING========================= -cat check.log +cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum echo ====================TESTING END===================== +for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log} +do + ln $file binutils-%{_target_platform}-$(basename $file) || : +done +tar cjf binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log} +uuencode binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}.tar.bz2 +rm -f binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log} %endif %install @@ -344,6 +351,9 @@ fi %endif # %{isnative} %changelog +* Sat Jul 11 2009 Jan Kratochvil 2.19.51.0.11-24 +- Provide uuencode output of the testsuite results. + * Tue Jun 30 2009 Nick Clifton 2.19.51.0.11-23 - Rebase sources on the 2.19.51.0.11 tarball. From chkr at fedoraproject.org Sat Jul 11 22:31:11 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 22:31:11 +0000 (UTC) Subject: rpms/mono-tools/devel mono-tools.spec,1.38,1.39 Message-ID: <20090711223111.2186E11C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21934 Modified Files: mono-tools.spec Log Message: - Add mono(webkit-sharp) as run-time requirement since it is needed by the webkit engine of monodoc (BZ 478650) - More minor spec file beautifications to fix rpmlint warnings Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/devel/mono-tools.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- mono-tools.spec 11 Jul 2009 16:41:58 -0000 1.38 +++ mono-tools.spec 11 Jul 2009 22:31:10 -0000 1.39 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4.2 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -17,6 +17,7 @@ BuildRequires: mono-jscript mono-data-or BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4.2 links monodoc Requires: mono(gtkhtml-sharp) +Requires: mono(webkit-sharp) ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha ppc ppc64 @@ -33,15 +34,13 @@ Requires: %{name} = %{version}-%{release Development file for mono-tools %package monodoc -Summary: monodoc documentation +Summary: Monodoc documentation Group: Documentation Requires: %{name} = %{version}-%{release} monodoc %description monodoc Documentation for monotools for use with monodoc -%define gen gendarme/rules - %prep %setup -q @@ -136,6 +135,11 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/web/* %changelog +* Sat Jul 11 2009 Christian Krause - 2.4.2-3 +- Add mono(webkit-sharp) as run-time requirement since it is needed by the +webkit engine of monodoc (BZ 478650) +- More minor spec file beautifications to fix rpmlint warnings + * Sat Jul 11 2009 Christian Krause - 2.4.2-2 - Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) - Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the From chkr at fedoraproject.org Sat Jul 11 22:34:30 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 22:34:30 +0000 (UTC) Subject: rpms/anki/devel .cvsignore, 1.8, 1.9 anki.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090711223430.AE75011C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/anki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22652 Modified Files: .cvsignore anki.spec sources Log Message: - Update to new upstream version 0.9.9.8.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 2 Jul 2009 20:05:36 -0000 1.8 +++ .cvsignore 11 Jul 2009 22:34:00 -0000 1.9 @@ -1 +1 @@ -anki-0.9.9.8.4.tgz +anki-0.9.9.8.5.tgz Index: anki.spec =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/anki.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- anki.spec 2 Jul 2009 20:05:36 -0000 1.10 +++ anki.spec 11 Jul 2009 22:34:00 -0000 1.11 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: anki -Version: 0.9.9.8.4 +Version: 0.9.9.8.5 Release: 1%{?dist} Summary: Flashcard program for using space repetition learning @@ -79,21 +79,28 @@ rm -rf %{buildroot} # locale %dir %{python_sitelib}/ankiqt/locale/ %dir %{python_sitelib}/anki/locale/ -%lang(cs) %{python_sitelib}/*/locale/cs_*/ -%lang(de) %{python_sitelib}/*/locale/de_*/ -%lang(es) %{python_sitelib}/*/locale/es_*/ -%lang(fi) %{python_sitelib}/*/locale/fi_*/ -%lang(fr) %{python_sitelib}/*/locale/fr_*/ -%lang(it) %{python_sitelib}/*/locale/it_*/ -%lang(ja) %{python_sitelib}/*/locale/ja_*/ -%lang(ko) %{python_sitelib}/*/locale/ko_*/ -%lang(pl) %{python_sitelib}/*/locale/pl_*/ -%lang(zh) %{python_sitelib}/*/locale/zh_*/ -%lang(sv) %{python_sitelib}/*/locale/sv_*/ -%lang(pt) %{python_sitelib}/*/locale/pt_*/ -%lang(ee) %{python_sitelib}/*/locale/ee_*/ -%lang(mn) %{python_sitelib}/*/locale/mn_*/ -%lang(nb) %{python_sitelib}/*/locale/nb_*/ +%lang(cs) %{python_sitelib}/*/locale/cs*/ +%lang(de) %{python_sitelib}/*/locale/de*/ +%lang(es) %{python_sitelib}/*/locale/es*/ +%lang(fi) %{python_sitelib}/*/locale/fi*/ +%lang(fr) %{python_sitelib}/*/locale/fr*/ +%lang(it) %{python_sitelib}/*/locale/it*/ +%lang(ja) %{python_sitelib}/*/locale/ja*/ +%lang(ko) %{python_sitelib}/*/locale/ko*/ +%lang(pl) %{python_sitelib}/*/locale/pl*/ +%lang(zh) %{python_sitelib}/*/locale/zh*/ +%lang(sv) %{python_sitelib}/*/locale/sv*/ +%lang(pt) %{python_sitelib}/*/locale/pt*/ +%lang(eo) %{python_sitelib}/*/locale/eo*/ +%lang(et) %{python_sitelib}/*/locale/et*/ +%lang(nl) %{python_sitelib}/*/locale/nl*/ +%lang(ro) %{python_sitelib}/*/locale/ro*/ +%lang(ru) %{python_sitelib}/*/locale/ru*/ +%lang(mn) %{python_sitelib}/*/locale/mn*/ +%lang(nb) %{python_sitelib}/*/locale/nb*/ +%lang(he) %{python_sitelib}/*/locale/he*/ +%lang(ar) %{python_sitelib}/*/locale/ar*/ +%lang(hu) %{python_sitelib}/*/locale/hu*/ %{python_sitelib}/*egg-info %{_bindir}/anki @@ -101,6 +108,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Sun Jul 12 2009 Christian Krause - 0.9.9.8.5-1 +- Update to new upstream version 0.9.9.8.5 + * Thu Jul 02 2009 Christian Krause - 0.9.9.8.4-1 - Update to new upstream version 0.9.9.8.4 - fix one %%lang tag Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 2 Jul 2009 20:05:36 -0000 1.8 +++ sources 11 Jul 2009 22:34:00 -0000 1.9 @@ -1 +1 @@ -f569879ab25e54340cb122cc667ce86c anki-0.9.9.8.4.tgz +42c8f6ba29e5052b8e3323a89b76b20b anki-0.9.9.8.5.tgz From dsd at fedoraproject.org Sat Jul 11 22:39:14 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Sat, 11 Jul 2009 22:39:14 +0000 (UTC) Subject: rpms/olpc-library/devel olpc-library.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711223914.37A0A11C00DF@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-library/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23830 Modified Files: .cvsignore sources Added Files: olpc-library.spec Log Message: import v2.0.2 --- NEW FILE olpc-library.spec --- Name: olpc-library Version: 2.0.2 Release: 1%{?dist} Summary: OLPC library files and scripts # library.js is AGPLv1 # olpc-library-update (aka make_index) is GPLv2+ License: GPLv2+ and AGPLv1 Group: Applications/Internet URL: http://wiki.laptop.org/go/Library Source0: http://dev.laptop.org/~dsd/olpc-library/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: sugar, python-jinja %description Scripts to maintain the OLPC Library index page. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install # for legacy purposes (sugar uses this path) ln -s %{_bindir}/olpc-library-update $RPM_BUILD_ROOT/%{_datadir}/library-common/make_index.py %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc ChangeLog README LICENSE COPYING.AGPLv1 COPYING.GPLv2 %{_datadir}/library-common/ %{_bindir}/olpc-library-update %changelog * Sat Jul 11 2009 Daniel Drake - 2.0.2-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-library/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 19:16:23 -0000 1.1 +++ .cvsignore 11 Jul 2009 22:38:43 -0000 1.2 @@ -0,0 +1 @@ +olpc-library-2.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-library/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 19:16:23 -0000 1.1 +++ sources 11 Jul 2009 22:38:44 -0000 1.2 @@ -0,0 +1 @@ +7816169b15abd4ea14d56beed3afb065 olpc-library-2.0.2.tar.bz2 From eponyme at fedoraproject.org Sat Jul 11 22:48:46 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 22:48:46 +0000 (UTC) Subject: rpms/edb/devel edb.spec,1.23,1.24 sources,1.11,1.12 Message-ID: <20090711224846.842AC11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/edb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26904 Modified Files: edb.spec sources Log Message: commit to 0.9.10 Index: edb.spec =================================================================== RCS file: /cvs/pkgs/rpms/edb/devel/edb.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- edb.spec 27 May 2009 17:29:35 -0000 1.23 +++ edb.spec 11 Jul 2009 22:48:15 -0000 1.24 @@ -1,5 +1,5 @@ Name: edb -Version: 0.9.9 +Version: 0.9.10 Release: 1%{?dist} Summary: A debugger based on the ptrace API and Qt4 @@ -30,8 +30,6 @@ object, they are almost always portable %prep %setup -q -n debugger -# for ../include/PluginAPI.h:48: error: 'uint32_t' does not name a type -sed -i '26i\#include ' include/PluginAPI.h %build qmake-qt4 -makefile DEFAULT_PLUGIN_PATH="%{_libdir}/%{name}/" @@ -63,6 +61,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.9.10-1 +- Rebuild for 0.9.10 * Wed May 27 2009 Nicoleau Fabien 0.9.9-1 - Rebuild for 0.9.9 * Wed Apr 22 2009 Kedar Sovani 0.9.8-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/edb/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 May 2009 17:29:36 -0000 1.11 +++ sources 11 Jul 2009 22:48:16 -0000 1.12 @@ -1 +1 @@ -739639153e2d500996d2ae54b699b739 debugger-0.9.9.tgz +63564467b5d590d7e865523c775a3334 debugger-0.9.10.tgz From chkr at fedoraproject.org Sat Jul 11 22:50:54 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 22:50:54 +0000 (UTC) Subject: rpms/mono-tools/F-11 mono-tools.spec,1.38,1.39 Message-ID: <20090711225054.47F4311C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27450 Modified Files: mono-tools.spec Log Message: - Add mono(webkit-sharp) as run-time requirement since it is needed by the webkit engine of monodoc (BZ 478650) Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/F-11/mono-tools.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- mono-tools.spec 11 Jul 2009 18:03:59 -0000 1.38 +++ mono-tools.spec 11 Jul 2009 22:50:23 -0000 1.39 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4 -Release: 10%{?dist} +Release: 11%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -17,6 +17,7 @@ BuildRequires: mono-jscript mono-data-or BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4 links monodoc Requires: mono(gtkhtml-sharp) +Requires: mono(webkit-sharp) ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparc alpha @@ -135,6 +136,10 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/sources/gendarme* %changelog +* Sun Jul 12 2009 Christian Krause - 2.4-11 +- Add mono(webkit-sharp) as run-time requirement since it is needed by the +webkit engine of monodoc (BZ 478650) + * Sat Jul 11 2009 Christian Krause - 2.4-10 - Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) - Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the From eponyme at fedoraproject.org Sat Jul 11 22:51:07 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 22:51:07 +0000 (UTC) Subject: rpms/edb/F-11 edb.spec,1.23,1.24 sources,1.11,1.12 Message-ID: <20090711225107.1197311C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/edb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27546 Modified Files: edb.spec sources Log Message: commit to 0.9.10 Index: edb.spec =================================================================== RCS file: /cvs/pkgs/rpms/edb/F-11/edb.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- edb.spec 27 May 2009 17:31:28 -0000 1.23 +++ edb.spec 11 Jul 2009 22:50:36 -0000 1.24 @@ -1,5 +1,5 @@ Name: edb -Version: 0.9.9 +Version: 0.9.10 Release: 1%{?dist} Summary: A debugger based on the ptrace API and Qt4 @@ -30,8 +30,6 @@ object, they are almost always portable %prep %setup -q -n debugger -# for ../include/PluginAPI.h:48: error: 'uint32_t' does not name a type -sed -i '26i\#include ' include/PluginAPI.h %build qmake-qt4 -makefile DEFAULT_PLUGIN_PATH="%{_libdir}/%{name}/" @@ -63,6 +61,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.9.10-1 +- Rebuild for 0.9.10 * Wed May 27 2009 Nicoleau Fabien 0.9.9-1 - Rebuild for 0.9.9 * Wed Apr 22 2009 Kedar Sovani 0.9.8-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/edb/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 May 2009 17:31:28 -0000 1.11 +++ sources 11 Jul 2009 22:50:36 -0000 1.12 @@ -1 +1 @@ -739639153e2d500996d2ae54b699b739 debugger-0.9.9.tgz +63564467b5d590d7e865523c775a3334 debugger-0.9.10.tgz From chkr at fedoraproject.org Sat Jul 11 22:51:42 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 22:51:42 +0000 (UTC) Subject: rpms/anki/F-11 .cvsignore, 1.7, 1.8 anki.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090711225142.88E2E11C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/anki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27618 Modified Files: .cvsignore anki.spec sources Log Message: - Update to new upstream version 0.9.9.8.5 - fix %%lang tags Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 May 2009 18:50:50 -0000 1.7 +++ .cvsignore 11 Jul 2009 22:51:12 -0000 1.8 @@ -1 +1 @@ -anki-0.9.9.7.9b.tgz +anki-0.9.9.8.5.tgz Index: anki.spec =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-11/anki.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- anki.spec 25 May 2009 18:50:50 -0000 1.9 +++ anki.spec 11 Jul 2009 22:51:12 -0000 1.10 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: anki -Version: 0.9.9.7.9b +Version: 0.9.9.8.5 Release: 1%{?dist} Summary: Flashcard program for using space repetition learning @@ -75,25 +75,32 @@ rm -rf %{buildroot} %dir %{python_sitelib}/anki %{python_sitelib}/anki/*.py* %{python_sitelib}/anki/importing -%{python_sitelib}/anki/features # locale %dir %{python_sitelib}/ankiqt/locale/ %dir %{python_sitelib}/anki/locale/ -%lang(cs) %{python_sitelib}/*/locale/cs_*/ -%lang(de) %{python_sitelib}/*/locale/de_*/ -%lang(es) %{python_sitelib}/*/locale/es_*/ -%lang(fi) %{python_sitelib}/*/locale/fi_*/ -%lang(fr) %{python_sitelib}/*/locale/fr_*/ -%lang(it) %{python_sitelib}/*/locale/it_*/ -%lang(ja) %{python_sitelib}/*/locale/ja_*/ -%lang(ko) %{python_sitelib}/*/locale/ko_*/ -%lang(pl) %{python_sitelib}/*/locale/pl_*/ -%lang(zh) %{python_sitelib}/*/locale/zh_*/ -%lang(sv) %{python_sitelib}/*/locale/sv_*/ -%lang(pt) %{python_sitelib}/*/locale/pt_*/ -%lang(ee) %{python_sitelib}/*/locale/ee_*/ -%lang(ee) %{python_sitelib}/*/locale/mn_*/ +%lang(cs) %{python_sitelib}/*/locale/cs*/ +%lang(de) %{python_sitelib}/*/locale/de*/ +%lang(es) %{python_sitelib}/*/locale/es*/ +%lang(fi) %{python_sitelib}/*/locale/fi*/ +%lang(fr) %{python_sitelib}/*/locale/fr*/ +%lang(it) %{python_sitelib}/*/locale/it*/ +%lang(ja) %{python_sitelib}/*/locale/ja*/ +%lang(ko) %{python_sitelib}/*/locale/ko*/ +%lang(pl) %{python_sitelib}/*/locale/pl*/ +%lang(zh) %{python_sitelib}/*/locale/zh*/ +%lang(sv) %{python_sitelib}/*/locale/sv*/ +%lang(pt) %{python_sitelib}/*/locale/pt*/ +%lang(eo) %{python_sitelib}/*/locale/eo*/ +%lang(et) %{python_sitelib}/*/locale/et*/ +%lang(nl) %{python_sitelib}/*/locale/nl*/ +%lang(ro) %{python_sitelib}/*/locale/ro*/ +%lang(ru) %{python_sitelib}/*/locale/ru*/ +%lang(mn) %{python_sitelib}/*/locale/mn*/ +%lang(nb) %{python_sitelib}/*/locale/nb*/ +%lang(he) %{python_sitelib}/*/locale/he*/ +%lang(ar) %{python_sitelib}/*/locale/ar*/ +%lang(hu) %{python_sitelib}/*/locale/hu*/ %{python_sitelib}/*egg-info %{_bindir}/anki @@ -101,6 +108,10 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Sun Jul 12 2009 Christian Krause - 0.9.9.8.5-1 +- Update to new upstream version 0.9.9.8.5 +- fix %%lang tags + * Mon May 25 2009 Christian Krause - 0.9.9.7.9b-1 - Update to new upstream version 0.9.9.7.9b to fix a syncing bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 18:50:50 -0000 1.7 +++ sources 11 Jul 2009 22:51:12 -0000 1.8 @@ -1 +1 @@ -026eea1affd67c0748dee98c5c4d4543 anki-0.9.9.7.9b.tgz +42c8f6ba29e5052b8e3323a89b76b20b anki-0.9.9.8.5.tgz From eponyme at fedoraproject.org Sat Jul 11 22:52:41 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 22:52:41 +0000 (UTC) Subject: rpms/edb/F-10 edb.spec,1.21,1.22 sources,1.11,1.12 Message-ID: <20090711225241.E2FC511C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/edb/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28148 Modified Files: edb.spec sources Log Message: commit to 0.9.10 Index: edb.spec =================================================================== RCS file: /cvs/pkgs/rpms/edb/F-10/edb.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- edb.spec 27 May 2009 17:33:39 -0000 1.21 +++ edb.spec 11 Jul 2009 22:52:41 -0000 1.22 @@ -1,5 +1,5 @@ Name: edb -Version: 0.9.9 +Version: 0.9.10 Release: 1%{?dist} Summary: A debugger based on the ptrace API and Qt4 @@ -30,8 +30,6 @@ object, they are almost always portable %prep %setup -q -n debugger -# for ../include/PluginAPI.h:48: error: 'uint32_t' does not name a type -sed -i '26i\#include ' include/PluginAPI.h %build qmake-qt4 -makefile DEFAULT_PLUGIN_PATH="%{_libdir}/%{name}/" @@ -63,6 +61,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.9.10-1 +- Rebuild for 0.9.10 * Wed May 27 2009 Nicoleau Fabien 0.9.9-1 - Rebuild for 0.9.9 * Wed Apr 22 2009 Kedar Sovani 0.9.8-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/edb/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 May 2009 17:33:39 -0000 1.11 +++ sources 11 Jul 2009 22:52:41 -0000 1.12 @@ -1 +1 @@ -739639153e2d500996d2ae54b699b739 debugger-0.9.9.tgz +63564467b5d590d7e865523c775a3334 debugger-0.9.10.tgz From dsd at fedoraproject.org Sat Jul 11 22:56:15 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Sat, 11 Jul 2009 22:56:15 +0000 (UTC) Subject: rpms/olpc-library/F-11 olpc-library.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711225615.1815C11C00DF@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-library/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28991 Modified Files: .cvsignore sources Added Files: olpc-library.spec Log Message: import v2.0.2 --- NEW FILE olpc-library.spec --- Name: olpc-library Version: 2.0.2 Release: 1%{?dist} Summary: OLPC library files and scripts # library.js is AGPLv1 # olpc-library-update (aka make_index) is GPLv2+ License: GPLv2+ and AGPLv1 Group: Applications/Internet URL: http://wiki.laptop.org/go/Library Source0: http://dev.laptop.org/~dsd/olpc-library/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: sugar, python-jinja %description Scripts to maintain the OLPC Library index page. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install # for legacy purposes (sugar uses this path) ln -s %{_bindir}/olpc-library-update $RPM_BUILD_ROOT/%{_datadir}/library-common/make_index.py %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc ChangeLog README LICENSE COPYING.AGPLv1 COPYING.GPLv2 %{_datadir}/library-common/ %{_bindir}/olpc-library-update %changelog * Sat Jul 11 2009 Daniel Drake - 2.0.2-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-library/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 19:16:23 -0000 1.1 +++ .cvsignore 11 Jul 2009 22:55:44 -0000 1.2 @@ -0,0 +1 @@ +olpc-library-2.0.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-library/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 19:16:23 -0000 1.1 +++ sources 11 Jul 2009 22:55:44 -0000 1.2 @@ -0,0 +1 @@ +7816169b15abd4ea14d56beed3afb065 olpc-library-2.0.2.tar.bz2 From eponyme at fedoraproject.org Sat Jul 11 22:58:33 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 22:58:33 +0000 (UTC) Subject: rpms/perl-WWW-Curl/devel .cvsignore, 1.4, 1.5 perl-WWW-Curl.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090711225833.E70DB11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/perl-WWW-Curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29724 Modified Files: .cvsignore perl-WWW-Curl.spec sources Log Message: Update to 4.09 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 1 Jun 2009 09:53:32 -0000 1.4 +++ .cvsignore 11 Jul 2009 22:58:33 -0000 1.5 @@ -1 +1 @@ -WWW-Curl-4.07.tar.gz +WWW-Curl-4.09.tar.gz Index: perl-WWW-Curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/devel/perl-WWW-Curl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-WWW-Curl.spec 1 Jun 2009 09:53:32 -0000 1.4 +++ perl-WWW-Curl.spec 11 Jul 2009 22:58:33 -0000 1.5 @@ -1,5 +1,5 @@ Name: perl-WWW-Curl -Version: 4.07 +Version: 4.09 Release: 1%{?dist} Summary: Perl extension interface for libcurl License: MPLv1.1 or MIT @@ -58,6 +58,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 11 2009 Nicoleau Fabien - 4.09-1 +- Rebuild for 4.09 * Mon Jun 1 2009 Nicoleau Fabien - 4.07-1 - Rebuild for 4.07 * Sat Apr 18 2009 Nicoleau Fabien - 4.06-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 1 Jun 2009 09:53:32 -0000 1.4 +++ sources 11 Jul 2009 22:58:33 -0000 1.5 @@ -1 +1 @@ -9d25fb555bb7b382f3412d5568e5fd47 WWW-Curl-4.07.tar.gz +04c136c1212edb68717ec14f6dff1cc3 WWW-Curl-4.09.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:01:37 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:01:37 +0000 (UTC) Subject: rpms/perl-WWW-Curl/F-11 .cvsignore, 1.4, 1.5 perl-WWW-Curl.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090711230137.D6F8B11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/perl-WWW-Curl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30425 Modified Files: .cvsignore perl-WWW-Curl.spec sources Log Message: Update to 4.09 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 1 Jun 2009 09:55:55 -0000 1.4 +++ .cvsignore 11 Jul 2009 23:01:07 -0000 1.5 @@ -1 +1 @@ -WWW-Curl-4.07.tar.gz +WWW-Curl-4.09.tar.gz Index: perl-WWW-Curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-11/perl-WWW-Curl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-WWW-Curl.spec 1 Jun 2009 09:55:55 -0000 1.4 +++ perl-WWW-Curl.spec 11 Jul 2009 23:01:07 -0000 1.5 @@ -1,5 +1,5 @@ Name: perl-WWW-Curl -Version: 4.07 +Version: 4.09 Release: 1%{?dist} Summary: Perl extension interface for libcurl License: MPLv1.1 or MIT @@ -58,6 +58,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 11 2009 Nicoleau Fabien - 4.09-1 +- Rebuild for 4.09 * Mon Jun 1 2009 Nicoleau Fabien - 4.07-1 - Rebuild for 4.07 * Sat Apr 18 2009 Nicoleau Fabien - 4.06-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 1 Jun 2009 09:55:55 -0000 1.4 +++ sources 11 Jul 2009 23:01:07 -0000 1.5 @@ -1 +1 @@ -9d25fb555bb7b382f3412d5568e5fd47 WWW-Curl-4.07.tar.gz +04c136c1212edb68717ec14f6dff1cc3 WWW-Curl-4.09.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:03:18 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:03:18 +0000 (UTC) Subject: rpms/perl-WWW-Curl/F-10 .cvsignore, 1.4, 1.5 perl-WWW-Curl.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090711230318.A23BA11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/perl-WWW-Curl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30824 Modified Files: .cvsignore perl-WWW-Curl.spec sources Log Message: Update to 4.09 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 1 Jun 2009 09:59:00 -0000 1.4 +++ .cvsignore 11 Jul 2009 23:02:48 -0000 1.5 @@ -1 +1 @@ -WWW-Curl-4.07.tar.gz +WWW-Curl-4.09.tar.gz Index: perl-WWW-Curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-10/perl-WWW-Curl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-WWW-Curl.spec 1 Jun 2009 09:59:00 -0000 1.3 +++ perl-WWW-Curl.spec 11 Jul 2009 23:02:48 -0000 1.4 @@ -1,5 +1,5 @@ Name: perl-WWW-Curl -Version: 4.07 +Version: 4.09 Release: 1%{?dist} Summary: Perl extension interface for libcurl License: MPLv1.1 or MIT @@ -58,6 +58,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 11 2009 Nicoleau Fabien - 4.09-1 +- Rebuild for 4.09 * Mon Jun 1 2009 Nicoleau Fabien - 4.07-1 - Rebuild for 4.07 * Sat Apr 18 2009 Nicoleau Fabien - 4.06-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 1 Jun 2009 09:59:00 -0000 1.4 +++ sources 11 Jul 2009 23:02:48 -0000 1.5 @@ -1 +1 @@ -9d25fb555bb7b382f3412d5568e5fd47 WWW-Curl-4.07.tar.gz +04c136c1212edb68717ec14f6dff1cc3 WWW-Curl-4.09.tar.gz From cwickert at fedoraproject.org Sat Jul 11 23:04:14 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 23:04:14 +0000 (UTC) Subject: rpms/beldi/devel .cvsignore, 1.8, 1.9 beldi.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090711230414.EED3E11C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/beldi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31233 Modified Files: .cvsignore beldi.spec sources Log Message: * Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 - Upgrade to 0.9.25 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/beldi/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 1 Apr 2009 01:06:54 -0000 1.8 +++ .cvsignore 11 Jul 2009 23:04:14 -0000 1.9 @@ -1 +1 @@ -beldi-0.9.24.tar.gz +beldi-0.9.25.tgz Index: beldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/beldi/devel/beldi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- beldi.spec 1 Apr 2009 01:06:54 -0000 1.9 +++ beldi.spec 11 Jul 2009 23:04:14 -0000 1.10 @@ -1,11 +1,11 @@ Summary: Belug Linux Distribution Burner Name: beldi -Version: 0.9.24 +Version: 0.9.25 Release: 1%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://belug.de/~beldi/ -Source: http://belug.de/~beldi/releases/%{name}-%{version}.tar.gz +Source: http://belug.de/~beldi/releases/%{name}-%{version}.tgz Requires: %{_bindir}/cdrecord BuildRequires: curl-devel BuildRequires: gtkmm24-devel @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man6/%{name}.6.gz %changelog +* Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 +- Upgrade to 0.9.25 + * Wed Mar 01 2009 Christoph Wickert - 0.9.24-1 - Upgrade to 0.9.24 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/beldi/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 1 Apr 2009 01:06:54 -0000 1.8 +++ sources 11 Jul 2009 23:04:14 -0000 1.9 @@ -1 +1 @@ -fed4c219ffcf50be1d7ff53be51cf6f5 beldi-0.9.24.tar.gz +a341fe2ecc18a6b7e28a6d24f737fb90 beldi-0.9.25.tgz From eponyme at fedoraproject.org Sat Jul 11 23:06:47 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:06:47 +0000 (UTC) Subject: rpms/cclive/devel .cvsignore, 1.4, 1.5 cclive.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090711230647.EE3D911C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/cclive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31884 Modified Files: .cvsignore cclive.spec sources Log Message: Update to 0.4.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cclive/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 May 2009 21:32:09 -0000 1.4 +++ .cvsignore 11 Jul 2009 23:06:47 -0000 1.5 @@ -1 +1 @@ -cclive-0.4.2.tar.bz2 +cclive-0.4.5.tar.bz2 Index: cclive.spec =================================================================== RCS file: /cvs/pkgs/rpms/cclive/devel/cclive.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cclive.spec 9 May 2009 21:32:09 -0000 1.3 +++ cclive.spec 11 Jul 2009 23:06:47 -0000 1.4 @@ -1,5 +1,5 @@ Name: cclive -Version: 0.4.2 +Version: 0.4.5 Release: 1%{?dist} Summary: Command line video extraction utility @@ -18,7 +18,7 @@ Googlevideo, Break, Liveleak, Sevenload, %prep %setup -q - +sed -i -e "25i\#include " src/opts.cpp %build %configure @@ -42,6 +42,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.5-1 +- Rebuild for 0.4.5 +* Mon Jun 22 2009 Nicoleau Fabien 0.4.4-1 +- Rebuild for 0.4.4 * Sat May 9 2009 Nicoleau Fabien 0.4.2-1 - Rebuild for 0.4.2 * Wed May 6 2009 Nicoleau Fabien 0.4.1-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cclive/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 May 2009 21:32:09 -0000 1.4 +++ sources 11 Jul 2009 23:06:47 -0000 1.5 @@ -1 +1 @@ -da38b5699641ec4e8029c7675a78ab03 cclive-0.4.2.tar.bz2 +66d0327db5b041ddebbfaa1aed2a1aa5 cclive-0.4.5.tar.bz2 From eponyme at fedoraproject.org Sat Jul 11 23:09:15 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:09:15 +0000 (UTC) Subject: rpms/cclive/F-11 .cvsignore, 1.4, 1.5 cclive.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090711230915.F3E1911C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/cclive/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32577 Modified Files: .cvsignore cclive.spec sources Log Message: Update to 0.4.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 May 2009 21:34:42 -0000 1.4 +++ .cvsignore 11 Jul 2009 23:09:15 -0000 1.5 @@ -1 +1 @@ -cclive-0.4.2.tar.bz2 +cclive-0.4.5.tar.bz2 Index: cclive.spec =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-11/cclive.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cclive.spec 9 May 2009 21:34:42 -0000 1.3 +++ cclive.spec 11 Jul 2009 23:09:15 -0000 1.4 @@ -1,5 +1,5 @@ Name: cclive -Version: 0.4.2 +Version: 0.4.5 Release: 1%{?dist} Summary: Command line video extraction utility @@ -18,7 +18,7 @@ Googlevideo, Break, Liveleak, Sevenload, %prep %setup -q - +sed -i -e "25i\#include " src/opts.cpp %build %configure @@ -42,6 +42,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.5-1 +- Rebuild for 0.4.5 +* Mon Jun 22 2009 Nicoleau Fabien 0.4.4-1 +- Rebuild for 0.4.4 * Sat May 9 2009 Nicoleau Fabien 0.4.2-1 - Rebuild for 0.4.2 * Wed May 6 2009 Nicoleau Fabien 0.4.1-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 May 2009 21:34:42 -0000 1.4 +++ sources 11 Jul 2009 23:09:15 -0000 1.5 @@ -1 +1 @@ -da38b5699641ec4e8029c7675a78ab03 cclive-0.4.2.tar.bz2 +66d0327db5b041ddebbfaa1aed2a1aa5 cclive-0.4.5.tar.bz2 From denisarnaud at fedoraproject.org Sat Jul 11 23:10:13 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Sat, 11 Jul 2009 23:10:13 +0000 (UTC) Subject: rpms/R-RM2/devel R-RM2.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711231013.DD84C11C00DF@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-RM2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32707/devel Modified Files: .cvsignore sources Added Files: R-RM2.spec import.log Log Message: * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE R-RM2.spec --- %global packname RM2 Name: R-%{packname} Version: 0.0 Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ Group: Applications/Engineering Summary: Revenue Management and Pricing for R BuildRequires: R-devel, tetex-latex, R-msm, R-mvtnorm BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires(post): R Requires(postun): R Requires: R, R-msm, R-mvtnorm %description RM2 is a simple package that implements functions used in revenue management and pricing environments. %prep %setup -q -c -n %{packname} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library %{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css %check %{_bindir}/R CMD check %{packname} %clean rm -rf $RPM_BUILD_ROOT %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/man %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex %{_datadir}/R/library/%{packname}/help %changelog * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE import.log --- R-RM2-0_0-4_fc11:HEAD:R-RM2-0.0-4.fc11.src.rpm:1247353748 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:23:26 -0000 1.1 +++ .cvsignore 11 Jul 2009 23:09:43 -0000 1.2 @@ -0,0 +1 @@ +RM2_0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:23:26 -0000 1.1 +++ sources 11 Jul 2009 23:09:43 -0000 1.2 @@ -0,0 +1 @@ +4cdeef99aa9ed5a20d636301ace1497f RM2_0.0.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:10:33 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:10:33 +0000 (UTC) Subject: rpms/cclive/F-10 .cvsignore, 1.4, 1.5 cclive.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090711231033.5928711C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/cclive/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv615 Modified Files: .cvsignore cclive.spec sources Log Message: Update to 0.4.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 May 2009 21:36:36 -0000 1.4 +++ .cvsignore 11 Jul 2009 23:10:32 -0000 1.5 @@ -1 +1 @@ -cclive-0.4.2.tar.bz2 +cclive-0.4.5.tar.bz2 Index: cclive.spec =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-10/cclive.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cclive.spec 9 May 2009 21:36:36 -0000 1.3 +++ cclive.spec 11 Jul 2009 23:10:33 -0000 1.4 @@ -1,5 +1,5 @@ Name: cclive -Version: 0.4.2 +Version: 0.4.5 Release: 1%{?dist} Summary: Command line video extraction utility @@ -18,7 +18,7 @@ Googlevideo, Break, Liveleak, Sevenload, %prep %setup -q - +sed -i -e "25i\#include " src/opts.cpp %build %configure @@ -42,6 +42,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.5-1 +- Rebuild for 0.4.5 +* Mon Jun 22 2009 Nicoleau Fabien 0.4.4-1 +- Rebuild for 0.4.4 * Sat May 9 2009 Nicoleau Fabien 0.4.2-1 - Rebuild for 0.4.2 * Wed May 6 2009 Nicoleau Fabien 0.4.1-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cclive/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 May 2009 21:36:36 -0000 1.4 +++ sources 11 Jul 2009 23:10:33 -0000 1.5 @@ -1 +1 @@ -da38b5699641ec4e8029c7675a78ab03 cclive-0.4.2.tar.bz2 +66d0327db5b041ddebbfaa1aed2a1aa5 cclive-0.4.5.tar.bz2 From denisarnaud at fedoraproject.org Sat Jul 11 23:12:28 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Sat, 11 Jul 2009 23:12:28 +0000 (UTC) Subject: rpms/R-RM2/F-11 R-RM2.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711231228.2BC5C11C00DF@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-RM2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1033/F-11 Modified Files: .cvsignore sources Added Files: R-RM2.spec import.log Log Message: * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE R-RM2.spec --- %global packname RM2 Name: R-%{packname} Version: 0.0 Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ Group: Applications/Engineering Summary: Revenue Management and Pricing for R BuildRequires: R-devel, tetex-latex, R-msm, R-mvtnorm BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires(post): R Requires(postun): R Requires: R, R-msm, R-mvtnorm %description RM2 is a simple package that implements functions used in revenue management and pricing environments. %prep %setup -q -c -n %{packname} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library %{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css %check %{_bindir}/R CMD check %{packname} %clean rm -rf $RPM_BUILD_ROOT %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/man %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex %{_datadir}/R/library/%{packname}/help %changelog * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE import.log --- R-RM2-0_0-4_fc11:F-11:R-RM2-0.0-4.fc11.src.rpm:1247353869 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:23:26 -0000 1.1 +++ .cvsignore 11 Jul 2009 23:11:57 -0000 1.2 @@ -0,0 +1 @@ +RM2_0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:23:26 -0000 1.1 +++ sources 11 Jul 2009 23:11:57 -0000 1.2 @@ -0,0 +1 @@ +4cdeef99aa9ed5a20d636301ace1497f RM2_0.0.tar.gz From denisarnaud at fedoraproject.org Sat Jul 11 23:13:45 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Sat, 11 Jul 2009 23:13:45 +0000 (UTC) Subject: rpms/R-RM2/F-10 R-RM2.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711231345.EC28211C00DF@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-RM2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2489/F-10 Modified Files: .cvsignore sources Added Files: R-RM2.spec import.log Log Message: * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE R-RM2.spec --- %global packname RM2 Name: R-%{packname} Version: 0.0 Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ Group: Applications/Engineering Summary: Revenue Management and Pricing for R BuildRequires: R-devel, tetex-latex, R-msm, R-mvtnorm BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires(post): R Requires(postun): R Requires: R, R-msm, R-mvtnorm %description RM2 is a simple package that implements functions used in revenue management and pricing environments. %prep %setup -q -c -n %{packname} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library %{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css %check %{_bindir}/R CMD check %{packname} %clean rm -rf $RPM_BUILD_ROOT %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/man %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex %{_datadir}/R/library/%{packname}/help %changelog * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE import.log --- R-RM2-0_0-4_fc11:F-10:R-RM2-0.0-4.fc11.src.rpm:1247353997 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:23:26 -0000 1.1 +++ .cvsignore 11 Jul 2009 23:13:45 -0000 1.2 @@ -0,0 +1 @@ +RM2_0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:23:26 -0000 1.1 +++ sources 11 Jul 2009 23:13:45 -0000 1.2 @@ -0,0 +1 @@ +4cdeef99aa9ed5a20d636301ace1497f RM2_0.0.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:14:39 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:14:39 +0000 (UTC) Subject: rpms/clive/devel .cvsignore, 1.16, 1.17 clive.spec, 1.18, 1.19 sources, 1.16, 1.17 Message-ID: <20090711231439.4CD7C11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/clive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2676 Modified Files: .cvsignore clive.spec sources Log Message: Update to 2.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clive/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 27 May 2009 16:52:27 -0000 1.16 +++ .cvsignore 11 Jul 2009 23:14:08 -0000 1.17 @@ -1 +1 @@ -clive-2.1.14.tar.bz2 +clive-2.2.2.tar.bz2 Index: clive.spec =================================================================== RCS file: /cvs/pkgs/rpms/clive/devel/clive.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- clive.spec 27 May 2009 16:52:27 -0000 1.18 +++ clive.spec 11 Jul 2009 23:14:09 -0000 1.19 @@ -1,16 +1,17 @@ Name: clive -Version: 2.1.14 +Version: 2.2.2 Release: 1%{?dist} Summary: Video extraction tool for user-uploaded video hosts Group: Applications/Multimedia -License: ISC +License: GPLv3+ URL: http://code.google.com/p/%{name}/ Source0: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) +BuildRequires: perl(ExtUtils::MakeMaker) perl(Test::Base) perl(Class::Singleton) perl(Getopt::ArgvFile) perl(Digest::SHA) perl(WWW::Curl) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) %description clive is a video extraction tool for user-uploaded video hosts such as Youtube, @@ -23,10 +24,32 @@ re-encoding and and playing. %build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' +chmod -R u+w $RPM_BUILD_ROOT/* + + +%check +# These tests require network +%{?!_with_network_tests: rm t/02youtube.t } +%{?!_with_network_tests: rm t/03break.t } +%{?!_with_network_tests: rm t/04liveleak.t } +%{?!_with_network_tests: rm t/05dailymotion.t } +%{?!_with_network_tests: rm t/07cctv.t } +%{?!_with_network_tests: rm t/08evisor.t } +%{?!_with_network_tests: rm t/09google.t } +%{?!_with_network_tests: rm t/10sevenload.t } +%{?!_with_network_tests: rm t/11redtube.t } +%{?!_with_network_tests: rm t/12vimeo.t } +make test + %clean rm -rf $RPM_BUILD_ROOT @@ -34,11 +57,18 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS CHANGES INSTALL LICENSE examples/config +%doc CHANGES COPYING README examples/config %{_bindir}/%{name} +%{perl_vendorlib}/* %{_mandir}/man1/%{name}.1.gz + %changelog +* Sat Jul 11 2009 Nicoleau Fabien 2.2.2-1 +- Rebuild for 2.2.2 +- Now using Makefile.PL install type +* Mon Jun 22 2009 Nicoleau Fabien 2.2.1-1 +- Rebuild for 2.2.1 * Tue May 26 2009 Nicoleau Fabien 2.1.14-1 - Rebuild for 2.1.14 * Sat May 9 2009 Nicoleau Fabien 2.1.12-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clive/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 27 May 2009 16:52:27 -0000 1.16 +++ sources 11 Jul 2009 23:14:09 -0000 1.17 @@ -1 +1 @@ -ce55bb3b7cfeb679cb457e8a82d78bf3 clive-2.1.14.tar.bz2 +58b3fd1a063549cc2676b1eeba98b84e clive-2.2.2.tar.bz2 From eponyme at fedoraproject.org Sat Jul 11 23:16:27 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:16:27 +0000 (UTC) Subject: rpms/clive/F-11 .cvsignore, 1.16, 1.17 clive.spec, 1.18, 1.19 sources, 1.16, 1.17 Message-ID: <20090711231627.286B911C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/clive/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3237 Modified Files: .cvsignore clive.spec sources Log Message: Update to 2.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 27 May 2009 16:55:10 -0000 1.16 +++ .cvsignore 11 Jul 2009 23:15:56 -0000 1.17 @@ -1 +1 @@ -clive-2.1.14.tar.bz2 +clive-2.2.2.tar.bz2 Index: clive.spec =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-11/clive.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- clive.spec 27 May 2009 16:55:10 -0000 1.18 +++ clive.spec 11 Jul 2009 23:15:56 -0000 1.19 @@ -1,16 +1,17 @@ Name: clive -Version: 2.1.14 +Version: 2.2.2 Release: 1%{?dist} Summary: Video extraction tool for user-uploaded video hosts Group: Applications/Multimedia -License: ISC +License: GPLv3+ URL: http://code.google.com/p/%{name}/ Source0: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) +BuildRequires: perl(ExtUtils::MakeMaker) perl(Test::Base) perl(Class::Singleton) perl(Getopt::ArgvFile) perl(Digest::SHA) perl(WWW::Curl) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) %description clive is a video extraction tool for user-uploaded video hosts such as Youtube, @@ -23,10 +24,32 @@ re-encoding and and playing. %build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' +chmod -R u+w $RPM_BUILD_ROOT/* + + +%check +# These tests require network +%{?!_with_network_tests: rm t/02youtube.t } +%{?!_with_network_tests: rm t/03break.t } +%{?!_with_network_tests: rm t/04liveleak.t } +%{?!_with_network_tests: rm t/05dailymotion.t } +%{?!_with_network_tests: rm t/07cctv.t } +%{?!_with_network_tests: rm t/08evisor.t } +%{?!_with_network_tests: rm t/09google.t } +%{?!_with_network_tests: rm t/10sevenload.t } +%{?!_with_network_tests: rm t/11redtube.t } +%{?!_with_network_tests: rm t/12vimeo.t } +make test + %clean rm -rf $RPM_BUILD_ROOT @@ -34,11 +57,18 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS CHANGES INSTALL LICENSE examples/config +%doc CHANGES COPYING README examples/config %{_bindir}/%{name} +%{perl_vendorlib}/* %{_mandir}/man1/%{name}.1.gz + %changelog +* Sat Jul 11 2009 Nicoleau Fabien 2.2.2-1 +- Rebuild for 2.2.2 +- Now using Makefile.PL install type +* Mon Jun 22 2009 Nicoleau Fabien 2.2.1-1 +- Rebuild for 2.2.1 * Tue May 26 2009 Nicoleau Fabien 2.1.14-1 - Rebuild for 2.1.14 * Sat May 9 2009 Nicoleau Fabien 2.1.12-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-11/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 27 May 2009 16:55:10 -0000 1.16 +++ sources 11 Jul 2009 23:15:56 -0000 1.17 @@ -1 +1 @@ -ce55bb3b7cfeb679cb457e8a82d78bf3 clive-2.1.14.tar.bz2 +58b3fd1a063549cc2676b1eeba98b84e clive-2.2.2.tar.bz2 From cwickert at fedoraproject.org Sat Jul 11 23:17:27 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 23:17:27 +0000 (UTC) Subject: rpms/beldi/devel beldi.spec,1.10,1.11 Message-ID: <20090711231727.4FA4811C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/beldi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3553 Modified Files: beldi.spec Log Message: BR dbus-glib-devel and hal-devel Index: beldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/beldi/devel/beldi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- beldi.spec 11 Jul 2009 23:04:14 -0000 1.10 +++ beldi.spec 11 Jul 2009 23:16:57 -0000 1.11 @@ -11,9 +11,12 @@ BuildRequires: curl-devel BuildRequires: gtkmm24-devel BuildRequires: libxml++-devel BuildRequires: openssl-devel -BuildRequires: gtkglextmm-devel +BuildRequires: gtkglextmm-devel +BuildRequires: dbus-glib-devel >= 0.76 +BuildRequires: hal-devel >= 0.5.10 BuildRequires: desktop-file-utils BuildRequires: gettext +Requires: hal BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -59,6 +62,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 - Upgrade to 0.9.25 +- BuildRequire dbus-glib and hal-devel for USB support * Wed Mar 01 2009 Christoph Wickert - 0.9.24-1 - Upgrade to 0.9.24 From eponyme at fedoraproject.org Sat Jul 11 23:17:46 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:17:46 +0000 (UTC) Subject: rpms/clive/F-10 .cvsignore, 1.16, 1.17 clive.spec, 1.16, 1.17 sources, 1.16, 1.17 Message-ID: <20090711231746.C853011C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/clive/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3783 Modified Files: .cvsignore clive.spec sources Log Message: Update to 2.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-10/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 27 May 2009 16:57:12 -0000 1.16 +++ .cvsignore 11 Jul 2009 23:17:46 -0000 1.17 @@ -1 +1 @@ -clive-2.1.14.tar.bz2 +clive-2.2.2.tar.bz2 Index: clive.spec =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-10/clive.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- clive.spec 27 May 2009 16:57:12 -0000 1.16 +++ clive.spec 11 Jul 2009 23:17:46 -0000 1.17 @@ -1,16 +1,17 @@ Name: clive -Version: 2.1.14 +Version: 2.2.2 Release: 1%{?dist} Summary: Video extraction tool for user-uploaded video hosts Group: Applications/Multimedia -License: ISC +License: GPLv3+ URL: http://code.google.com/p/%{name}/ Source0: http://%{name}.googlecode.com/files/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) +BuildRequires: perl(ExtUtils::MakeMaker) perl(Test::Base) perl(Class::Singleton) perl(Getopt::ArgvFile) perl(Digest::SHA) perl(WWW::Curl) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) perl(Term::ReadKey) perl(BerkeleyDB) perl(Digest::SHA) %description clive is a video extraction tool for user-uploaded video hosts such as Youtube, @@ -23,10 +24,32 @@ re-encoding and and playing. %build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' +chmod -R u+w $RPM_BUILD_ROOT/* + + +%check +# These tests require network +%{?!_with_network_tests: rm t/02youtube.t } +%{?!_with_network_tests: rm t/03break.t } +%{?!_with_network_tests: rm t/04liveleak.t } +%{?!_with_network_tests: rm t/05dailymotion.t } +%{?!_with_network_tests: rm t/07cctv.t } +%{?!_with_network_tests: rm t/08evisor.t } +%{?!_with_network_tests: rm t/09google.t } +%{?!_with_network_tests: rm t/10sevenload.t } +%{?!_with_network_tests: rm t/11redtube.t } +%{?!_with_network_tests: rm t/12vimeo.t } +make test + %clean rm -rf $RPM_BUILD_ROOT @@ -34,11 +57,18 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS CHANGES INSTALL LICENSE examples/config +%doc CHANGES COPYING README examples/config %{_bindir}/%{name} +%{perl_vendorlib}/* %{_mandir}/man1/%{name}.1.gz + %changelog +* Sat Jul 11 2009 Nicoleau Fabien 2.2.2-1 +- Rebuild for 2.2.2 +- Now using Makefile.PL install type +* Mon Jun 22 2009 Nicoleau Fabien 2.2.1-1 +- Rebuild for 2.2.1 * Tue May 26 2009 Nicoleau Fabien 2.1.14-1 - Rebuild for 2.1.14 * Sat May 9 2009 Nicoleau Fabien 2.1.12-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clive/F-10/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 27 May 2009 16:57:12 -0000 1.16 +++ sources 11 Jul 2009 23:17:46 -0000 1.17 @@ -1 +1 @@ -ce55bb3b7cfeb679cb457e8a82d78bf3 clive-2.1.14.tar.bz2 +58b3fd1a063549cc2676b1eeba98b84e clive-2.2.2.tar.bz2 From denisarnaud at fedoraproject.org Sat Jul 11 23:19:56 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Sat, 11 Jul 2009 23:19:56 +0000 (UTC) Subject: rpms/R-RM2/EL-5 R-RM2.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711231956.A44AC11C00DF@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-RM2/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4321/EL-5 Modified Files: .cvsignore sources Added Files: R-RM2.spec import.log Log Message: * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE R-RM2.spec --- %global packname RM2 Name: R-%{packname} Version: 0.0 Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ Group: Applications/Engineering Summary: Revenue Management and Pricing for R BuildRequires: R-devel, tetex-latex, R-msm, R-mvtnorm BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires(post): R Requires(postun): R Requires: R, R-msm, R-mvtnorm %description RM2 is a simple package that implements functions used in revenue management and pricing environments. %prep %setup -q -c -n %{packname} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library %{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css %check %{_bindir}/R CMD check %{packname} %clean rm -rf $RPM_BUILD_ROOT %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/man %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex %{_datadir}/R/library/%{packname}/help %changelog * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE import.log --- R-RM2-0_0-4_fc11:EL-5:R-RM2-0.0-4.fc11.src.rpm:1247354317 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:23:26 -0000 1.1 +++ .cvsignore 11 Jul 2009 23:19:26 -0000 1.2 @@ -0,0 +1 @@ +RM2_0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:23:26 -0000 1.1 +++ sources 11 Jul 2009 23:19:26 -0000 1.2 @@ -0,0 +1 @@ +4cdeef99aa9ed5a20d636301ace1497f RM2_0.0.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:21:23 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:21:23 +0000 (UTC) Subject: rpms/abby/devel .cvsignore, 1.3, 1.4 abby.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090711232123.7568011C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/abby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4866 Modified Files: .cvsignore abby.spec sources Log Message: Update to 0.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abby/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 May 2009 20:49:44 -0000 1.3 +++ .cvsignore 11 Jul 2009 23:20:53 -0000 1.4 @@ -1 +1 @@ -abby-0.2.1.tar.bz2 +abby-0.4.1.tar.bz2 Index: abby.spec =================================================================== RCS file: /cvs/pkgs/rpms/abby/devel/abby.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- abby.spec 8 May 2009 20:49:44 -0000 1.2 +++ abby.spec 11 Jul 2009 23:20:53 -0000 1.3 @@ -1,5 +1,5 @@ Name: abby -Version: 0.2.1 +Version: 0.4.1 Release: 1%{?dist} Summary: Front-end for cclive and clive @@ -31,7 +31,7 @@ echo "Categories=Network;FileTransfer;Qt %build -qmake-qt4 +qmake-qt4 "QT+=network xml" make %{?_smp_mflags} @@ -56,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.1-1 +- Rebuild for 0.4.1 +* Mon Jun 22 2009 Nicoleau Fabien 0.3.0-1 +- Rebuild for 0.3.0 * Wed May 6 2009 Nicoleau Fabien 0.2.1-1 - Rebuild for 0.2.1 * Tue Apr 21 2009 Nicoleau Fabien 0.2.0-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abby/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 May 2009 20:49:44 -0000 1.3 +++ sources 11 Jul 2009 23:20:53 -0000 1.4 @@ -1 +1 @@ -7244a8aea22af87bfcd741ee6212a9e9 abby-0.2.1.tar.bz2 +d76eeeac6e674487bec30632c82590d2 abby-0.4.1.tar.bz2 From denisarnaud at fedoraproject.org Sat Jul 11 23:21:34 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Sat, 11 Jul 2009 23:21:34 +0000 (UTC) Subject: rpms/R-RM2/EL-4 R-RM2.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090711232134.460A111C00DF@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-RM2/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4921/EL-4 Modified Files: .cvsignore sources Added Files: R-RM2.spec import.log Log Message: * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE R-RM2.spec --- %global packname RM2 Name: R-%{packname} Version: 0.0 Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ Group: Applications/Engineering Summary: Revenue Management and Pricing for R BuildRequires: R-devel, tetex-latex, R-msm, R-mvtnorm BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires(post): R Requires(postun): R Requires: R, R-msm, R-mvtnorm %description RM2 is a simple package that implements functions used in revenue management and pricing environments. %prep %setup -q -c -n %{packname} %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/R/library %{_bindir}/R CMD INSTALL -l $RPM_BUILD_ROOT%{_datadir}/R/library %{packname} test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf $RPM_BUILD_ROOT%{_datadir}/R/library/R.css %check %{_bindir}/R CMD check %{packname} %clean rm -rf $RPM_BUILD_ROOT %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/man %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex %{_datadir}/R/library/%{packname}/help %changelog * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros * Mon Jul 06 2009 Denis Arnaud 0.0-3 - No longer use packrel for RPM release version, and updated the license from GPLv3 to GPLv3+ * Sat Jun 27 2009 Denis Arnaud 0.0-2 - Integrated the dependency on R-msm and R-mvtnorm * Sun May 03 2009 Denis Arnaud 0.0-1 - Initial package creation --- NEW FILE import.log --- R-RM2-0_0-4_fc11:EL-4:R-RM2-0.0-4.fc11.src.rpm:1247354438 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:23:26 -0000 1.1 +++ .cvsignore 11 Jul 2009 23:21:03 -0000 1.2 @@ -0,0 +1 @@ +RM2_0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:23:26 -0000 1.1 +++ sources 11 Jul 2009 23:21:04 -0000 1.2 @@ -0,0 +1 @@ +4cdeef99aa9ed5a20d636301ace1497f RM2_0.0.tar.gz From eponyme at fedoraproject.org Sat Jul 11 23:23:38 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:23:38 +0000 (UTC) Subject: rpms/abby/F-11 .cvsignore, 1.3, 1.4 abby.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090711232338.A03A111C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/abby/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5501 Modified Files: .cvsignore abby.spec sources Log Message: Update to 0.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 May 2009 20:56:25 -0000 1.3 +++ .cvsignore 11 Jul 2009 23:23:08 -0000 1.4 @@ -1 +1 @@ -abby-0.2.1.tar.bz2 +abby-0.4.1.tar.bz2 Index: abby.spec =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-11/abby.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- abby.spec 8 May 2009 20:56:25 -0000 1.2 +++ abby.spec 11 Jul 2009 23:23:08 -0000 1.3 @@ -1,5 +1,5 @@ Name: abby -Version: 0.2.1 +Version: 0.4.1 Release: 1%{?dist} Summary: Front-end for cclive and clive @@ -31,7 +31,7 @@ echo "Categories=Network;FileTransfer;Qt %build -qmake-qt4 +qmake-qt4 "QT+=network xml" make %{?_smp_mflags} @@ -56,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.1-1 +- Rebuild for 0.4.1 +* Mon Jun 22 2009 Nicoleau Fabien 0.3.0-1 +- Rebuild for 0.3.0 * Wed May 6 2009 Nicoleau Fabien 0.2.1-1 - Rebuild for 0.2.1 * Tue Apr 21 2009 Nicoleau Fabien 0.2.0-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 May 2009 20:56:25 -0000 1.3 +++ sources 11 Jul 2009 23:23:08 -0000 1.4 @@ -1 +1 @@ -7244a8aea22af87bfcd741ee6212a9e9 abby-0.2.1.tar.bz2 +d76eeeac6e674487bec30632c82590d2 abby-0.4.1.tar.bz2 From eponyme at fedoraproject.org Sat Jul 11 23:25:29 2009 From: eponyme at fedoraproject.org (Nicoleau Fabien) Date: Sat, 11 Jul 2009 23:25:29 +0000 (UTC) Subject: rpms/abby/F-10 .cvsignore, 1.3, 1.4 abby.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090711232529.2CAEA11C00DF@cvs1.fedora.phx.redhat.com> Author: eponyme Update of /cvs/pkgs/rpms/abby/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5985 Modified Files: .cvsignore abby.spec sources Log Message: Update to 0.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 May 2009 20:59:47 -0000 1.3 +++ .cvsignore 11 Jul 2009 23:24:58 -0000 1.4 @@ -1 +1 @@ -abby-0.2.1.tar.bz2 +abby-0.4.1.tar.bz2 Index: abby.spec =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-10/abby.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- abby.spec 8 May 2009 20:59:47 -0000 1.2 +++ abby.spec 11 Jul 2009 23:24:58 -0000 1.3 @@ -1,5 +1,5 @@ Name: abby -Version: 0.2.1 +Version: 0.4.1 Release: 1%{?dist} Summary: Front-end for cclive and clive @@ -31,7 +31,7 @@ echo "Categories=Network;FileTransfer;Qt %build -qmake-qt4 +qmake-qt4 "QT+=network xml" make %{?_smp_mflags} @@ -56,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 11 2009 Nicoleau Fabien 0.4.1-1 +- Rebuild for 0.4.1 +* Mon Jun 22 2009 Nicoleau Fabien 0.3.0-1 +- Rebuild for 0.3.0 * Wed May 6 2009 Nicoleau Fabien 0.2.1-1 - Rebuild for 0.2.1 * Tue Apr 21 2009 Nicoleau Fabien 0.2.0-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/abby/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 May 2009 20:59:47 -0000 1.3 +++ sources 11 Jul 2009 23:24:58 -0000 1.4 @@ -1 +1 @@ -7244a8aea22af87bfcd741ee6212a9e9 abby-0.2.1.tar.bz2 +d76eeeac6e674487bec30632c82590d2 abby-0.4.1.tar.bz2 From chkr at fedoraproject.org Sat Jul 11 23:30:35 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 11 Jul 2009 23:30:35 +0000 (UTC) Subject: rpms/anki/F-10 .cvsignore, 1.7, 1.8 anki.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090711233035.278DA11C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/anki/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7278 Modified Files: .cvsignore anki.spec sources Log Message: - Update to new upstream version 0.9.9.8.5 - fix %%lang tags Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 May 2009 19:07:01 -0000 1.7 +++ .cvsignore 11 Jul 2009 23:30:34 -0000 1.8 @@ -1 +1 @@ -anki-0.9.9.7.9b.tgz +anki-0.9.9.8.5.tgz Index: anki.spec =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-10/anki.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- anki.spec 25 May 2009 19:07:01 -0000 1.7 +++ anki.spec 11 Jul 2009 23:30:34 -0000 1.8 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: anki -Version: 0.9.9.7.9b +Version: 0.9.9.8.5 Release: 1%{?dist} Summary: Flashcard program for using space repetition learning @@ -75,25 +75,32 @@ rm -rf %{buildroot} %dir %{python_sitelib}/anki %{python_sitelib}/anki/*.py* %{python_sitelib}/anki/importing -%{python_sitelib}/anki/features # locale %dir %{python_sitelib}/ankiqt/locale/ %dir %{python_sitelib}/anki/locale/ -%lang(cs) %{python_sitelib}/*/locale/cs_*/ -%lang(de) %{python_sitelib}/*/locale/de_*/ -%lang(es) %{python_sitelib}/*/locale/es_*/ -%lang(fi) %{python_sitelib}/*/locale/fi_*/ -%lang(fr) %{python_sitelib}/*/locale/fr_*/ -%lang(it) %{python_sitelib}/*/locale/it_*/ -%lang(ja) %{python_sitelib}/*/locale/ja_*/ -%lang(ko) %{python_sitelib}/*/locale/ko_*/ -%lang(pl) %{python_sitelib}/*/locale/pl_*/ -%lang(zh) %{python_sitelib}/*/locale/zh_*/ -%lang(sv) %{python_sitelib}/*/locale/sv_*/ -%lang(pt) %{python_sitelib}/*/locale/pt_*/ -%lang(ee) %{python_sitelib}/*/locale/ee_*/ -%lang(ee) %{python_sitelib}/*/locale/mn_*/ +%lang(cs) %{python_sitelib}/*/locale/cs*/ +%lang(de) %{python_sitelib}/*/locale/de*/ +%lang(es) %{python_sitelib}/*/locale/es*/ +%lang(fi) %{python_sitelib}/*/locale/fi*/ +%lang(fr) %{python_sitelib}/*/locale/fr*/ +%lang(it) %{python_sitelib}/*/locale/it*/ +%lang(ja) %{python_sitelib}/*/locale/ja*/ +%lang(ko) %{python_sitelib}/*/locale/ko*/ +%lang(pl) %{python_sitelib}/*/locale/pl*/ +%lang(zh) %{python_sitelib}/*/locale/zh*/ +%lang(sv) %{python_sitelib}/*/locale/sv*/ +%lang(pt) %{python_sitelib}/*/locale/pt*/ +%lang(eo) %{python_sitelib}/*/locale/eo*/ +%lang(et) %{python_sitelib}/*/locale/et*/ +%lang(nl) %{python_sitelib}/*/locale/nl*/ +%lang(ro) %{python_sitelib}/*/locale/ro*/ +%lang(ru) %{python_sitelib}/*/locale/ru*/ +%lang(mn) %{python_sitelib}/*/locale/mn*/ +%lang(nb) %{python_sitelib}/*/locale/nb*/ +%lang(he) %{python_sitelib}/*/locale/he*/ +%lang(ar) %{python_sitelib}/*/locale/ar*/ +%lang(hu) %{python_sitelib}/*/locale/hu*/ %{python_sitelib}/*egg-info %{_bindir}/anki @@ -101,6 +108,10 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Sun Jul 12 2009 Christian Krause - 0.9.9.8.5-1 +- Update to new upstream version 0.9.9.8.5 +- fix %%lang tags + * Mon May 25 2009 Christian Krause - 0.9.9.7.9b-1 - Update to new upstream version 0.9.9.7.9b to fix a syncing bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anki/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 19:07:01 -0000 1.7 +++ sources 11 Jul 2009 23:30:34 -0000 1.8 @@ -1 +1 @@ -026eea1affd67c0748dee98c5c4d4543 anki-0.9.9.7.9b.tgz +42c8f6ba29e5052b8e3323a89b76b20b anki-0.9.9.8.5.tgz From cwickert at fedoraproject.org Sat Jul 11 23:30:51 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 11 Jul 2009 23:30:51 +0000 (UTC) Subject: rpms/beldi/F-11 .cvsignore, 1.8, 1.9 beldi.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090711233051.3D71311C00DF@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/beldi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7418 Modified Files: .cvsignore beldi.spec sources Log Message: * Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 - Upgrade to 0.9.25 - BuildRequire dbus-glib and hal-devel for USB support Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/beldi/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 1 Apr 2009 01:06:54 -0000 1.8 +++ .cvsignore 11 Jul 2009 23:30:50 -0000 1.9 @@ -1 +1 @@ -beldi-0.9.24.tar.gz +beldi-0.9.25.tgz Index: beldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/beldi/F-11/beldi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- beldi.spec 1 Apr 2009 01:06:54 -0000 1.9 +++ beldi.spec 11 Jul 2009 23:30:51 -0000 1.10 @@ -1,19 +1,22 @@ Summary: Belug Linux Distribution Burner Name: beldi -Version: 0.9.24 +Version: 0.9.25 Release: 1%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://belug.de/~beldi/ -Source: http://belug.de/~beldi/releases/%{name}-%{version}.tar.gz +Source: http://belug.de/~beldi/releases/%{name}-%{version}.tgz Requires: %{_bindir}/cdrecord BuildRequires: curl-devel BuildRequires: gtkmm24-devel BuildRequires: libxml++-devel BuildRequires: openssl-devel -BuildRequires: gtkglextmm-devel +BuildRequires: gtkglextmm-devel +BuildRequires: dbus-glib-devel >= 0.76 +BuildRequires: hal-devel >= 0.5.10 BuildRequires: desktop-file-utils BuildRequires: gettext +Requires: hal BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -57,6 +60,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man6/%{name}.6.gz %changelog +* Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 +- Upgrade to 0.9.25 +- BuildRequire dbus-glib and hal-devel for USB support + * Wed Mar 01 2009 Christoph Wickert - 0.9.24-1 - Upgrade to 0.9.24 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/beldi/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 1 Apr 2009 01:06:54 -0000 1.8 +++ sources 11 Jul 2009 23:30:51 -0000 1.9 @@ -1 +1 @@ -fed4c219ffcf50be1d7ff53be51cf6f5 beldi-0.9.24.tar.gz +a341fe2ecc18a6b7e28a6d24f737fb90 beldi-0.9.25.tgz From wart at fedoraproject.org Sun Jul 12 00:19:42 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:19:42 +0000 (UTC) Subject: rpms/itcl/devel itcl-3.4-findinit.patch, NONE, 1.1 itcl.spec, 1.12, 1.13 Message-ID: <20090712001942.77D1F11C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14023 Modified Files: itcl.spec Added Files: itcl-3.4-findinit.patch Log Message: Add patch for finding itcl.tcl via the C bindings (bz #485252) itcl-3.4-findinit.patch: --- NEW FILE itcl-3.4-findinit.patch --- --- incrtcl-20071231cvs/generic/itcl_cmds.c.orig 2009-07-11 16:24:45.000000000 -0700 +++ incrtcl-20071231cvs/generic/itcl_cmds.c 2009-07-11 16:30:04.000000000 -0700 @@ -70,7 +70,7 @@ lappend dirs [file join $bindir .. .. itcl library]\n\ lappend dirs [file join $bindir .. .. .. itcl library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itcl$version]\n\ Index: itcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/itcl/devel/itcl.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- itcl.spec 25 Feb 2009 08:17:24 -0000 1.12 +++ itcl.spec 12 Jul 2009 00:19:42 -0000 1.13 @@ -3,7 +3,7 @@ Name: itcl Version: 3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object oriented extensions to Tcl and Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: incrtcl-20071231cvs.tgz Patch0: itcl-3.4-tclbindir.patch Patch1: itcl-3.4-libdir.patch Patch2: itcl-3.4-soname.patch +Patch3: itcl-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 @@ -36,6 +37,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -71,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/itclConfig.sh %changelog +* Sat Jul 11 2009 Wart - 3.4-4 +- Fix bad logic for locating itcl.tcl from the C bindings + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From wart at fedoraproject.org Sun Jul 12 00:29:42 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:29:42 +0000 (UTC) Subject: rpms/itcl/F-11 itcl-3.4-findinit.patch, NONE, 1.1 itcl.spec, 1.12, 1.13 Message-ID: <20090712002942.8B99B11C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itcl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21199 Modified Files: itcl.spec Added Files: itcl-3.4-findinit.patch Log Message: Fix bad logic for locating itcl.tcl from the C bindings (bz# 485252) itcl-3.4-findinit.patch: --- NEW FILE itcl-3.4-findinit.patch --- --- incrtcl-20071231cvs/generic/itcl_cmds.c.orig 2009-07-11 16:24:45.000000000 -0700 +++ incrtcl-20071231cvs/generic/itcl_cmds.c 2009-07-11 16:30:04.000000000 -0700 @@ -70,7 +70,7 @@ lappend dirs [file join $bindir .. .. itcl library]\n\ lappend dirs [file join $bindir .. .. .. itcl library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itcl$version]\n\ Index: itcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/itcl/F-11/itcl.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- itcl.spec 25 Feb 2009 08:17:24 -0000 1.12 +++ itcl.spec 12 Jul 2009 00:29:42 -0000 1.13 @@ -3,7 +3,7 @@ Name: itcl Version: 3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object oriented extensions to Tcl and Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: incrtcl-20071231cvs.tgz Patch0: itcl-3.4-tclbindir.patch Patch1: itcl-3.4-libdir.patch Patch2: itcl-3.4-soname.patch +Patch3: itcl-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 @@ -36,6 +37,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -71,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/itclConfig.sh %changelog +* Sat Jul 11 2009 Wart - 3.4-4 +- Fix bad logic for locating itcl.tcl from the C bindings (bz# 485252) + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From chkr at fedoraproject.org Sun Jul 12 00:31:39 2009 From: chkr at fedoraproject.org (chkr) Date: Sun, 12 Jul 2009 00:31:39 +0000 (UTC) Subject: rpms/mono-tools/F-10 mono-tools.spec,1.12,1.13 Message-ID: <20090712003139.4121A11C00DF@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21690 Modified Files: mono-tools.spec Log Message: - Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) - Add mono(webkit-sharp) as run-time requirement since it is needed by the webkit engine of monodoc (BZ 478650) - Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the gtkhtml engine of monodoc (BZ 478650) Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/F-10/mono-tools.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mono-tools.spec 27 Oct 2008 17:34:47 -0000 1.12 +++ mono-tools.spec 12 Jul 2009 00:31:08 -0000 1.13 @@ -3,7 +3,7 @@ Summary: The mono documentation system Name: mono-tools Version: 2.0 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: Development/Tools Patch0: monotools-2.0-gendarme.patch @@ -18,7 +18,10 @@ BuildRequires: monodoc-devel >= 2.0 geck BuildRequires: gtk-sharp2-devel autoconf automake libtool mono-nunit-devel BuildRequires: hunspell-devel desktop-file-utils gnome-desktop-sharp-devel BuildRequires: mono-jscript mono-data-oracle +BuildRequires: webkit-sharp-devel Requires: mono-core links monodoc >= 2.0 +Requires: mono(gtkhtml-sharp) >= 3.0 +Requires: mono(webkit-sharp) ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha @@ -101,6 +104,7 @@ desktop-file-install --vendor fedora \ %{_libdir}/mono/2.0/gnunit2.exe %{_libdir}/monodoc/GeckoHtmlRender.dll %{_libdir}/monodoc/GtkHtmlHtmlRender.dll +%{_libdir}/monodoc/WebKitHtmlRender.dll %{_libdir}/monodoc/browser.exe %dir %{_libdir}/ilcontrast %{_libdir}/ilcontrast/ilcontrast.exe @@ -119,6 +123,13 @@ desktop-file-install --vendor fedora \ %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 12 2009 Christian Krause - 2.0-9 +- Add BR webkit-sharp-devel to build the webkit engine for monodoc (BZ 478650) +- Add mono(webkit-sharp) as run-time requirement since it is needed by the +webkit engine of monodoc (BZ 478650) +- Add mono(gtkhtml-sharp) as run-time requirement since it is needed by the +gtkhtml engine of monodoc (BZ 478650) + * Mon Oct 27 2008 Tom "spot" Callaway - 2.0-8 - rebuild for new gnome-sharp From wart at fedoraproject.org Sun Jul 12 00:35:10 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:35:10 +0000 (UTC) Subject: rpms/itcl/F-10 itcl-3.4-findinit.patch, NONE, 1.1 itcl.spec, 1.11, 1.12 Message-ID: <20090712003510.4583411C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itcl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22426 Modified Files: itcl.spec Added Files: itcl-3.4-findinit.patch Log Message: Fix bad logic for locating itcl.tcl from the C bindings (bz# 485252) itcl-3.4-findinit.patch: --- NEW FILE itcl-3.4-findinit.patch --- --- incrtcl-20071231cvs/generic/itcl_cmds.c.orig 2009-07-11 16:24:45.000000000 -0700 +++ incrtcl-20071231cvs/generic/itcl_cmds.c 2009-07-11 16:30:04.000000000 -0700 @@ -70,7 +70,7 @@ lappend dirs [file join $bindir .. .. itcl library]\n\ lappend dirs [file join $bindir .. .. .. itcl library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itcl$version]\n\ Index: itcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/itcl/F-10/itcl.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- itcl.spec 9 Feb 2008 17:58:54 -0000 1.11 +++ itcl.spec 12 Jul 2009 00:34:40 -0000 1.12 @@ -3,7 +3,7 @@ Name: itcl Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Object oriented extensions to Tcl and Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: incrtcl-20071231cvs.tgz Patch0: itcl-3.4-tclbindir.patch Patch1: itcl-3.4-libdir.patch Patch2: itcl-3.4-soname.patch +Patch3: itcl-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 @@ -36,6 +37,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -71,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/itclConfig.sh %changelog +* Sat Jul 11 2009 Wart - 3.4-3 +- Fix bad logic for locating itcl.tcl from the C bindings (bz# 485252) + * Sat Feb 9 2008 Wart - 3.4-2 - Rebuild for gcc 4.3 - Add patch for adding soname From wart at fedoraproject.org Sun Jul 12 00:43:40 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:43:40 +0000 (UTC) Subject: rpms/itk/devel itk-3.4-findinit.patch,NONE,1.1 itk.spec,1.12,1.13 Message-ID: <20090712004340.5680C11C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24049 Modified Files: itk.spec Added Files: itk-3.4-findinit.patch Log Message: Fix bad logic for locating itk.tcl from the C bindings (bz #485252) itk-3.4-findinit.patch: --- NEW FILE itk-3.4-findinit.patch --- --- itk-20071231cvs/generic/itk_cmds.c.orig 2009-07-11 16:47:28.000000000 -0700 +++ itk-20071231cvs/generic/itk_cmds.c 2009-07-11 16:47:37.000000000 -0700 @@ -74,7 +74,7 @@ lappend dirs [file join $bindir .. .. library]\n\ lappend dirs [file join $bindir .. .. itk library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itk$version]\n\ Index: itk.spec =================================================================== RCS file: /cvs/pkgs/rpms/itk/devel/itk.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- itk.spec 25 Feb 2009 08:19:20 -0000 1.12 +++ itk.spec 12 Jul 2009 00:43:09 -0000 1.13 @@ -3,7 +3,7 @@ Name: itk Version: 3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object oriented extensions to Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: itk-20071231cvs.tgz Patch0: itk-3.4-libdir.patch Patch1: itk-3.4-tclbindir.patch Patch2: itk-3.4-soname.patch +Patch3: itk-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 itcl tk @@ -37,6 +38,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -66,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT # What happened to itk's stub library and itkConfig.sh? %changelog +* Sat Jul 11 2009 Wart - 3.4-4 +- Fix bad logic for locating itk.tcl from the C bindings (bz #485252) + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From wart at fedoraproject.org Sun Jul 12 00:50:33 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:50:33 +0000 (UTC) Subject: rpms/itk/F-11 itk-3.4-findinit.patch,NONE,1.1 itk.spec,1.12,1.13 Message-ID: <20090712005033.871A511C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26241 Modified Files: itk.spec Added Files: itk-3.4-findinit.patch Log Message: Fix bad logic for locating itk.tcl from the C bindings (bz #485252) itk-3.4-findinit.patch: --- NEW FILE itk-3.4-findinit.patch --- --- itk-20071231cvs/generic/itk_cmds.c.orig 2009-07-11 16:47:28.000000000 -0700 +++ itk-20071231cvs/generic/itk_cmds.c 2009-07-11 16:47:37.000000000 -0700 @@ -74,7 +74,7 @@ lappend dirs [file join $bindir .. .. library]\n\ lappend dirs [file join $bindir .. .. itk library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itk$version]\n\ Index: itk.spec =================================================================== RCS file: /cvs/pkgs/rpms/itk/F-11/itk.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- itk.spec 25 Feb 2009 08:19:20 -0000 1.12 +++ itk.spec 12 Jul 2009 00:50:33 -0000 1.13 @@ -3,7 +3,7 @@ Name: itk Version: 3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object oriented extensions to Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: itk-20071231cvs.tgz Patch0: itk-3.4-libdir.patch Patch1: itk-3.4-tclbindir.patch Patch2: itk-3.4-soname.patch +Patch3: itk-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 itcl tk @@ -37,6 +38,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -66,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT # What happened to itk's stub library and itkConfig.sh? %changelog +* Sat Jul 11 2009 Wart - 3.4-4 +- Fix bad logic for locating itk.tcl from the C bindings (bz #485252) + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From wart at fedoraproject.org Sun Jul 12 00:52:51 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 12 Jul 2009 00:52:51 +0000 (UTC) Subject: rpms/itk/F-10 itk-3.4-findinit.patch,NONE,1.1 itk.spec,1.11,1.12 Message-ID: <20090712005251.0698F11C00DF@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/itk/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26751 Modified Files: itk.spec Added Files: itk-3.4-findinit.patch Log Message: Fix bad logic for locating itk.tcl from the C bindings (bz #485252) itk-3.4-findinit.patch: --- NEW FILE itk-3.4-findinit.patch --- --- itk-20071231cvs/generic/itk_cmds.c.orig 2009-07-11 16:47:28.000000000 -0700 +++ itk-20071231cvs/generic/itk_cmds.c 2009-07-11 16:47:37.000000000 -0700 @@ -74,7 +74,7 @@ lappend dirs [file join $bindir .. .. library]\n\ lappend dirs [file join $bindir .. .. itk library]\n\ # On MacOSX, check the directories in the tcl_pkgPath\n\ - if {[string equal $::tcl_platform(platform) \"unix\"] && \ + if {[string equal $::tcl_platform(platform) \"unix\"] || \ [string equal $::tcl_platform(os) \"Darwin\"]} {\n\ foreach d $::tcl_pkgPath {\n\ lappend dirs [file join $d itk$version]\n\ Index: itk.spec =================================================================== RCS file: /cvs/pkgs/rpms/itk/F-10/itk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- itk.spec 9 Feb 2008 18:17:57 -0000 1.11 +++ itk.spec 12 Jul 2009 00:52:50 -0000 1.12 @@ -3,7 +3,7 @@ Name: itk Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Object oriented extensions to Tk Group: Development/Libraries @@ -15,6 +15,7 @@ Source0: itk-20071231cvs.tgz Patch0: itk-3.4-libdir.patch Patch1: itk-3.4-tclbindir.patch Patch2: itk-3.4-soname.patch +Patch3: itk-3.4-findinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: tcl(abi) = 8.5 itcl tk @@ -37,6 +38,7 @@ Development headers and libraries for li %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build %configure @@ -66,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT # What happened to itk's stub library and itkConfig.sh? %changelog +* Sat Jul 11 2009 Wart - 3.4-3 +- Fix bad logic for locating itk.tcl from the C bindings (bz #485252) + * Sat Feb 9 2008 Wart - 3.4-2 - Rebuild for gcc 4.3 - Add patch to add soname to library From dcbw at fedoraproject.org Sun Jul 12 01:23:39 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Sun, 12 Jul 2009 01:23:39 +0000 (UTC) Subject: rpms/ModemManager/devel ModemManager.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090712012340.1D5CD11C00DF@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/ModemManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32618/devel Modified Files: .cvsignore sources Added Files: ModemManager.spec import.log Log Message: Initial import --- NEW FILE ModemManager.spec --- %define snapshot 20090707 Summary: Mobile broadband modem management service Name: ModemManager Version: 0.2 Release: 1.%{snapshot}%{?dist} # # Source from git://anongit.freedesktop.org/ModemManager/ModemManager # tarball built with: # ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var # make distcheck # Source: %{name}-%{version}-%{snapshot}.tar.bz2 License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: glib2-devel BuildRequires: dbus-glib-devel >= 0.75 BuildRequires: libgudev-devel >= 143 %description The ModemManager service provides a consistent API to operate many different modems, including mobile broadband (3G) devices. %prep %setup -q %build %configure \ --enable-more-warnings=yes \ --with-udev-base-dir=/lib/udev \ --disable-static make %{?_smp_mflags} %check make check %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/*.la %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(0644, root, root, 0755) %doc COPYING README %{_sysconfdir}/dbus-1/system.d/org.freedesktop.ModemManager.conf %{_datadir}/dbus-1/system-services/org.freedesktop.ModemManager.service %attr(0755,root,root) %{_sbindir}/modem-manager %dir %{_libdir}/%{name} %attr(0755,root,root) %{_libdir}/%{name}/*.so* /lib/udev/rules.d/* %changelog * Tue Jul 7 2009 Dan Williams - 0.2-1.20090707 - Fix source repo location - Fix directory ownership * Tue Jul 7 2009 Dan Williams - 0.2-0.20090707 - Initial version --- NEW FILE import.log --- ModemManager-0_2-1_20090707_fc12:HEAD:ModemManager-0.2-1.20090707.fc12.src.rpm:1247361797 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ModemManager/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:37:50 -0000 1.1 +++ .cvsignore 12 Jul 2009 01:23:38 -0000 1.2 @@ -0,0 +1 @@ +ModemManager-0.2-20090707.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ModemManager/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:37:50 -0000 1.1 +++ sources 12 Jul 2009 01:23:38 -0000 1.2 @@ -0,0 +1 @@ +d30a9642a2533dbc3a833e0fda3a6378 ModemManager-0.2-20090707.tar.bz2 From whot at fedoraproject.org Sun Jul 12 07:12:07 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sun, 12 Jul 2009 07:12:07 +0000 (UTC) Subject: rpms/libX11/devel commitid, NONE, 1.1 make-git-snapshot.sh, NONE, 1.1 .cvsignore, 1.15, 1.16 libX11.spec, 1.61, 1.62 sources, 1.14, 1.15 libX11-1.2.1-indic.patch, 1.1, NONE Message-ID: <20090712071207.777EE11C0095@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libX11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4038 Modified Files: .cvsignore libX11.spec sources Added Files: commitid make-git-snapshot.sh Removed Files: libX11-1.2.1-indic.patch Log Message: * Sun Jul 12 2009 Peter Hutterer 1.2.99-1.20090712 - Today's git snapshot - libX11-1.2.1-indic.patch: Drop. --- NEW FILE commitid --- 554f755e5545f63d3c8f299297927238da155773 --- NEW FILE make-git-snapshot.sh --- #!/bin/sh DIRNAME=libX11-$( date +%Y%m%d ) rm -rf $DIRNAME git clone git://git.freedesktop.org/git/xorg/lib/libX11 $DIRNAME cd $DIRNAME if [ -z "$1" ]; then git log | head -1 else git checkout $1 fi git log | head -1 | awk '{ print $2 }' > ../commitid git repack -a -d cd .. tar jcf $DIRNAME.tar.bz2 $DIRNAME rm -rf $DIRNAME Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libX11/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 6 Jul 2009 21:13:40 -0000 1.15 +++ .cvsignore 12 Jul 2009 07:11:34 -0000 1.16 @@ -1 +1 @@ -libX11-1.2.1.tar.bz2 +libX11-20090712.tar.bz2 Index: libX11.spec =================================================================== RCS file: /cvs/pkgs/rpms/libX11/devel/libX11.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- libX11.spec 6 Jul 2009 21:49:59 -0000 1.61 +++ libX11.spec 12 Jul 2009 07:11:35 -0000 1.62 @@ -1,18 +1,21 @@ +%define tarball libX11 +%define gitdate 20090712 + Summary: X.Org X11 libX11 runtime library Name: libX11 -Version: 1.2.1 -Release: 3%{?dist} +Version: 1.2.99 +Release: 1.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source0: http://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.bz2 +#Source0: http://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.bz2 #Source0: http://cgit.freedesktop.org/xorg/lib/libX11/snapshot/libX11-%{version}.tar.bz2 +Source0: %{tarball}-%{gitdate}.tar.bz2 +Source1: make-git-snapshot.sh Patch2: dont-forward-keycode-0.patch -# #497971, patch from upstream, drop with 1.2.2 -Patch3: libX11-1.2.1-indic.patch BuildRequires: pkgconfig autoconf automake libtool # xproto >= 7.0.6 required @@ -51,9 +54,9 @@ Requires: pkgconfig X.Org X11 libX11 development package %prep -%setup -q +#%setup -q +%setup -q -n %{tarball}-%{gitdate} %patch2 -p1 -b .dont-forward-keycode-0 -%patch3 -p1 -b .indic %build # sodding libtool @@ -118,6 +121,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 12 2009 Peter Hutterer 1.2.99-1.20090712 +- Today's git snapshot +- libX11-1.2.1-indic.patch: Drop. + * Mon Jul 06 2009 Adam Jackson 1.2.1-3 - -common subpackage Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libX11/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 Jul 2009 21:13:40 -0000 1.14 +++ sources 12 Jul 2009 07:11:35 -0000 1.15 @@ -1 +1 @@ -2f2beb98e71f397e1209beaca4e97cb1 libX11-1.2.1.tar.bz2 +59e23f040427385c116f03ece2bdf880 libX11-20090712.tar.bz2 --- libX11-1.2.1-indic.patch DELETED --- From whot at fedoraproject.org Sun Jul 12 07:38:04 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sun, 12 Jul 2009 07:38:04 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.49, 1.50 sources, 1.48, 1.49 xorg-x11-proto-devel.spec, 1.93, 1.94 Message-ID: <20090712073804.ABCB911C0095@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10339 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Sun Jul 12 2009 Peter Hutterer 7.4-18 - inputproto 1.9.99.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- .cvsignore 18 Jun 2009 02:09:52 -0000 1.49 +++ .cvsignore 12 Jul 2009 07:38:02 -0000 1.50 @@ -25,4 +25,4 @@ xproxymanagementprotocol-1.0.2.tar.bz2 randrproto-1.2.99.3.tar.bz2 glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 -inputproto-1.9.99.12.tar.bz2 +inputproto-1.9.99.13.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 18 Jun 2009 02:09:52 -0000 1.48 +++ sources 12 Jul 2009 07:38:03 -0000 1.49 @@ -24,4 +24,4 @@ d28007a50976204960fc1fc07b4ca093 xproxy d4a7b90d826dfa1c39d41d323ce7366c randrproto-1.2.99.3.tar.bz2 c9f8cebfba72bfab674bc0170551fb8d glproto-1.4.10.tar.bz2 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 -54a7b49d88741d66624810c7d3462132 inputproto-1.9.99.12.tar.bz2 +74d5d610defae58ff2c9f9711da94e6e inputproto-1.9.99.13.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- xorg-x11-proto-devel.spec 18 Jun 2009 02:09:52 -0000 1.93 +++ xorg-x11-proto-devel.spec 12 Jul 2009 07:38:03 -0000 1.94 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 17%{?dist} +Release: 18%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -23,7 +23,7 @@ Source4: http://www.x.org/pub/individua Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 -Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.12.tar.bz2 +Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.13.tar.bz2 Source10: http://www.x.org/pub/individual/proto/kbproto-1.0.3.tar.bz2 Source13: http://www.x.org/pub/individual/proto/randrproto-1.2.99.3.tar.bz2 Source14: http://www.x.org/pub/individual/proto/recordproto-1.13.2.tar.bz2 @@ -260,6 +260,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Sun Jul 12 2009 Peter Hutterer 7.4-18 +- inputproto 1.9.99.13 + * Thu Jun 18 2009 Peter Hutterer 7.4-17 - inputproto 1.9.99.12 From chkr at fedoraproject.org Sun Jul 12 08:23:11 2009 From: chkr at fedoraproject.org (chkr) Date: Sun, 12 Jul 2009 08:23:11 +0000 (UTC) Subject: rpms/mono-tools/F-11 mono-tools.spec,1.39,1.40 Message-ID: <20090712082311.478FE11C0095@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20523 Modified Files: mono-tools.spec Log Message: - Add version to requirement of gtkhtml-sharp to distinguish between gtk-sharp and gnome-desktop-sharp Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/F-11/mono-tools.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- mono-tools.spec 11 Jul 2009 22:50:23 -0000 1.39 +++ mono-tools.spec 12 Jul 2009 08:23:08 -0000 1.40 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4 -Release: 11%{?dist} +Release: 12%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -16,7 +16,7 @@ BuildRequires: hunspell-devel desktop-fi BuildRequires: mono-jscript mono-data-oracle monodoc-devel mono-web-devel BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4 links monodoc -Requires: mono(gtkhtml-sharp) +Requires: mono(gtkhtml-sharp) >= 3.0 Requires: mono(webkit-sharp) ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 armv4l sparc alpha @@ -136,6 +136,10 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/sources/gendarme* %changelog +* Sun Jul 12 2009 Christian Krause - 2.4-12 +- Add version to requirement of gtkhtml-sharp to distinguish between +gtk-sharp and gnome-desktop-sharp + * Sun Jul 12 2009 Christian Krause - 2.4-11 - Add mono(webkit-sharp) as run-time requirement since it is needed by the webkit engine of monodoc (BZ 478650) From chkr at fedoraproject.org Sun Jul 12 08:01:57 2009 From: chkr at fedoraproject.org (chkr) Date: Sun, 12 Jul 2009 08:01:57 +0000 (UTC) Subject: rpms/mono-tools/devel mono-tools.spec,1.39,1.40 Message-ID: <20090712080157.9C06511C0095@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/mono-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15531 Modified Files: mono-tools.spec Log Message: - Add version to requirement of gtkhtml-sharp to distinguish between gtk-sharp and gnome-desktop-sharp Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/devel/mono-tools.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- mono-tools.spec 11 Jul 2009 22:31:10 -0000 1.39 +++ mono-tools.spec 12 Jul 2009 08:01:25 -0000 1.40 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4.2 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -16,7 +16,7 @@ BuildRequires: hunspell-devel desktop-fi BuildRequires: mono-jscript mono-data-oracle monodoc-devel mono-web-devel BuildRequires: webkit-sharp-devel Requires: mono-core >= 2.4.2 links monodoc -Requires: mono(gtkhtml-sharp) +Requires: mono(gtkhtml-sharp) >= 3.0 Requires: mono(webkit-sharp) ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha ppc ppc64 @@ -135,6 +135,10 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/web/* %changelog +* Sun Jul 12 2009 Christian Krause - 2.4.2-4 +- Add version to requirement of gtkhtml-sharp to distinguish between +gtk-sharp and gnome-desktop-sharp + * Sat Jul 11 2009 Christian Krause - 2.4.2-3 - Add mono(webkit-sharp) as run-time requirement since it is needed by the webkit engine of monodoc (BZ 478650) From makowski at fedoraproject.org Sun Jul 12 09:02:31 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sun, 12 Jul 2009 09:02:31 +0000 (UTC) Subject: rpms/firebird/EL-5 README.Fedora,1.1,1.2 firebird.spec,1.3,1.4 Message-ID: <20090712090232.2994A11C0095@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30786 Modified Files: README.Fedora firebird.spec Log Message: wrong previous commit Index: README.Fedora =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/README.Fedora,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.Fedora 12 May 2009 12:12:31 -0000 1.1 +++ README.Fedora 12 Jul 2009 09:02:29 -0000 1.2 @@ -5,20 +5,23 @@ Differences between upstream and the Fed environment as provided by upstream may be found in %{fbroot} * Firebird utilities gbak,gsec,gfix,nbackup and gstat have a symlink in /usr/bin - In /usr/bin you have also fbsql symlinked to Firebird isql. + In /usr/bin you have also isql-fb symlinked to Firebird isql. We can't name it isql to avoid conflict with isql from UNIX-ODBC -* According to Fedora packaging rules, for SuperServer, firebird service is not started +* According to Fedora packaging rules, firebird service is not started automatically. You need to start it, as root : - service firebird start. - If you wanted to have Firebird started at each boot, as root : + for SuperServer : + service firebird start + for Classic : + chkconfig firebird on + If you wanted to have firebird Superserver started at each boot, as root : chkconfig --level 345 firebird on * Fedora packages do not use, nor contain the pre-supplied sources for libicu. Fedora packages are used instead. * POSSIBLE INCOMPATIBILITY - In incides on text-based columns (CHRA/VARCHAR), Firebird uses ICU to get + In incides on text-based columns (CHAR/VARCHAR), Firebird uses ICU to get binary-comparable sequences (collations). These collations may be different in different ICU versions. Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-5/firebird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- firebird.spec 11 Jul 2009 16:59:41 -0000 1.3 +++ firebird.spec 12 Jul 2009 09:02:29 -0000 1.4 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 10%{?dist} +Release: 11%{?dist} Group: Applications/Databases License: Interbase @@ -509,7 +509,7 @@ rm -Rf %{_var}/run/%{name} %changelog -* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-10 +* Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-11 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) - update README.fedora From chitlesh at fedoraproject.org Sun Jul 12 09:12:54 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sun, 12 Jul 2009 09:12:54 +0000 (UTC) Subject: rpms/gerbv/F-10 .cvsignore, 1.6, 1.7 gerbv.spec, 1.6, 1.7 import.log, 1.2, 1.3 sources, 1.6, 1.7 Message-ID: <20090712091254.E88D611C0095@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/gerbv/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv658/F-10 Modified Files: .cvsignore gerbv.spec import.log sources Log Message: 2.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 28 Jan 2009 21:58:18 -0000 1.6 +++ .cvsignore 12 Jul 2009 09:12:54 -0000 1.7 @@ -1 +1 @@ -gerbv-2.2.0.tar.gz +gerbv-2.3.0.tar.gz Index: gerbv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-10/gerbv.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gerbv.spec 28 Jan 2009 21:58:18 -0000 1.6 +++ gerbv.spec 12 Jul 2009 09:12:54 -0000 1.7 @@ -1,5 +1,5 @@ Name: gerbv -Version: 2.2.0 +Version: 2.3.0 Release: 1%{?dist} Summary: Gerber file viewer from the gEDA toolkit @@ -15,6 +15,7 @@ BuildRequires: gtk2-devel, libpng-dev Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig +Requires: electronics-menu %description Gerber Viewer (gerbv) is a viewer for Gerber files. Gerber files @@ -120,6 +121,11 @@ touch --no-create %{_datadir}/icons/hico %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README TODO %doc example/ +%doc doc/example-code +%doc doc/eagle +%doc doc/sources.txt +%doc doc/aperturemacro.txt +%doc doc/PNG-print %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man1/gerbv.* @@ -131,7 +137,6 @@ touch --no-create %{_datadir}/icons/hico %files devel %defattr(-,root,root,-) -%doc doc/* %dir %{_includedir}/%{name}-%{version} %{_includedir}/%{name}-%{version}/%{name}.h %{_libdir}/lib%{name}.so @@ -139,6 +144,12 @@ touch --no-create %{_datadir}/icons/hico %Changelog +* Sat Jul 11 2009 Chitlesh Goorah - 2.3.0-1 +- new upstream release + +* Sat Mar 07 2009 Chitlesh Goorah - 2.2.0-3 +- added requires electronics-menu #485585 + * Thu Jan 22 2009 Chitlesh Goorah - 2.2.0-1 - new upstream release Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 28 Jan 2009 21:58:18 -0000 1.2 +++ import.log 12 Jul 2009 09:12:54 -0000 1.3 @@ -1,2 +1,3 @@ gerbv-2_1_0-2_fc9:F-10:gerbv-2.1.0-2.fc9.src.rpm:1226608650 gerbv-2_2_0-1_fc10:F-10:gerbv-2.2.0-1.fc10.src.rpm:1233179789 +gerbv-2_3_0-1_fc11:F-10:gerbv-2.3.0-1.fc11.src.rpm:1247389835 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 Jan 2009 21:58:18 -0000 1.6 +++ sources 12 Jul 2009 09:12:54 -0000 1.7 @@ -1 +1 @@ -400b3a5dd23c5892fc09715b34fdc94a gerbv-2.2.0.tar.gz +4953d97e14bbd27d824167e64b4c314a gerbv-2.3.0.tar.gz From makowski at fedoraproject.org Sun Jul 12 09:13:06 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sun, 12 Jul 2009 09:13:06 +0000 (UTC) Subject: rpms/firebird/EL-4 README.Fedora,1.1,1.2 Message-ID: <20090712091306.21DC911C0095@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv526/EL-4 Modified Files: README.Fedora Log Message: update readme Index: README.Fedora =================================================================== RCS file: /cvs/pkgs/rpms/firebird/EL-4/README.Fedora,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.Fedora 12 May 2009 12:10:46 -0000 1.1 +++ README.Fedora 12 Jul 2009 09:12:35 -0000 1.2 @@ -5,20 +5,23 @@ Differences between upstream and the Fed environment as provided by upstream may be found in %{fbroot} * Firebird utilities gbak,gsec,gfix,nbackup and gstat have a symlink in /usr/bin - In /usr/bin you have also fbsql symlinked to Firebird isql. + In /usr/bin you have also isql-fb symlinked to Firebird isql. We can't name it isql to avoid conflict with isql from UNIX-ODBC -* According to Fedora packaging rules, for SuperServer, firebird service is not started +* According to Fedora packaging rules, firebird service is not started automatically. You need to start it, as root : - service firebird start. - If you wanted to have Firebird started at each boot, as root : + for SuperServer : + service firebird start + for Classic : + chkconfig firebird on + If you wanted to have firebird Superserver started at each boot, as root : chkconfig --level 345 firebird on * Fedora packages do not use, nor contain the pre-supplied sources for libicu. Fedora packages are used instead. * POSSIBLE INCOMPATIBILITY - In incides on text-based columns (CHRA/VARCHAR), Firebird uses ICU to get + In incides on text-based columns (CHAR/VARCHAR), Firebird uses ICU to get binary-comparable sequences (collations). These collations may be different in different ICU versions. From makowski at fedoraproject.org Sun Jul 12 09:13:06 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sun, 12 Jul 2009 09:13:06 +0000 (UTC) Subject: rpms/firebird/F-10 README.Fedora,1.1,1.2 Message-ID: <20090712091306.7314011C0095@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv526/F-10 Modified Files: README.Fedora Log Message: update readme Index: README.Fedora =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-10/README.Fedora,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.Fedora 12 May 2009 11:11:18 -0000 1.1 +++ README.Fedora 12 Jul 2009 09:12:36 -0000 1.2 @@ -5,20 +5,23 @@ Differences between upstream and the Fed environment as provided by upstream may be found in %{fbroot} * Firebird utilities gbak,gsec,gfix,nbackup and gstat have a symlink in /usr/bin - In /usr/bin you have also fbsql symlinked to Firebird isql. + In /usr/bin you have also isql-fb symlinked to Firebird isql. We can't name it isql to avoid conflict with isql from UNIX-ODBC -* According to Fedora packaging rules, for SuperServer, firebird service is not started +* According to Fedora packaging rules, firebird service is not started automatically. You need to start it, as root : - service firebird start. - If you wanted to have Firebird started at each boot, as root : + for SuperServer : + service firebird start + for Classic : + chkconfig firebird on + If you wanted to have firebird Superserver started at each boot, as root : chkconfig --level 345 firebird on * Fedora packages do not use, nor contain the pre-supplied sources for libicu. Fedora packages are used instead. * POSSIBLE INCOMPATIBILITY - In incides on text-based columns (CHRA/VARCHAR), Firebird uses ICU to get + In incides on text-based columns (CHAR/VARCHAR), Firebird uses ICU to get binary-comparable sequences (collations). These collations may be different in different ICU versions. From makowski at fedoraproject.org Sun Jul 12 09:13:06 2009 From: makowski at fedoraproject.org (Philippe Makowski) Date: Sun, 12 Jul 2009 09:13:06 +0000 (UTC) Subject: rpms/firebird/F-11 README.Fedora,1.1,1.2 Message-ID: <20090712091306.A050F11C0095@cvs1.fedora.phx.redhat.com> Author: makowski Update of /cvs/pkgs/rpms/firebird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv526/F-11 Modified Files: README.Fedora Log Message: update readme Index: README.Fedora =================================================================== RCS file: /cvs/pkgs/rpms/firebird/F-11/README.Fedora,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- README.Fedora 12 May 2009 11:18:07 -0000 1.1 +++ README.Fedora 12 Jul 2009 09:12:36 -0000 1.2 @@ -5,20 +5,23 @@ Differences between upstream and the Fed environment as provided by upstream may be found in %{fbroot} * Firebird utilities gbak,gsec,gfix,nbackup and gstat have a symlink in /usr/bin - In /usr/bin you have also fbsql symlinked to Firebird isql. + In /usr/bin you have also isql-fb symlinked to Firebird isql. We can't name it isql to avoid conflict with isql from UNIX-ODBC -* According to Fedora packaging rules, for SuperServer, firebird service is not started +* According to Fedora packaging rules, firebird service is not started automatically. You need to start it, as root : - service firebird start. - If you wanted to have Firebird started at each boot, as root : + for SuperServer : + service firebird start + for Classic : + chkconfig firebird on + If you wanted to have firebird Superserver started at each boot, as root : chkconfig --level 345 firebird on * Fedora packages do not use, nor contain the pre-supplied sources for libicu. Fedora packages are used instead. * POSSIBLE INCOMPATIBILITY - In incides on text-based columns (CHRA/VARCHAR), Firebird uses ICU to get + In incides on text-based columns (CHAR/VARCHAR), Firebird uses ICU to get binary-comparable sequences (collations). These collations may be different in different ICU versions. From chitlesh at fedoraproject.org Sun Jul 12 09:18:16 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sun, 12 Jul 2009 09:18:16 +0000 (UTC) Subject: rpms/gerbv/F-11 .cvsignore, 1.6, 1.7 gerbv.spec, 1.10, 1.11 import.log, 1.2, 1.3 sources, 1.6, 1.7 Message-ID: <20090712091816.B5ECC11C0095@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/gerbv/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1821/F-11 Modified Files: .cvsignore gerbv.spec import.log sources Log Message: 2.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 28 Jan 2009 22:00:30 -0000 1.6 +++ .cvsignore 12 Jul 2009 09:17:46 -0000 1.7 @@ -1 +1 @@ -gerbv-2.2.0.tar.gz +gerbv-2.3.0.tar.gz Index: gerbv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-11/gerbv.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gerbv.spec 7 Mar 2009 10:32:38 -0000 1.10 +++ gerbv.spec 12 Jul 2009 09:17:46 -0000 1.11 @@ -1,6 +1,6 @@ Name: gerbv -Version: 2.2.0 -Release: 3%{?dist} +Version: 2.3.0 +Release: 1%{?dist} Summary: Gerber file viewer from the gEDA toolkit Group: Applications/Engineering @@ -121,6 +121,11 @@ touch --no-create %{_datadir}/icons/hico %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README TODO %doc example/ +%doc doc/example-code +%doc doc/eagle +%doc doc/sources.txt +%doc doc/aperturemacro.txt +%doc doc/PNG-print %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man1/gerbv.* @@ -132,7 +137,6 @@ touch --no-create %{_datadir}/icons/hico %files devel %defattr(-,root,root,-) -%doc doc/* %dir %{_includedir}/%{name}-%{version} %{_includedir}/%{name}-%{version}/%{name}.h %{_libdir}/lib%{name}.so @@ -140,6 +144,9 @@ touch --no-create %{_datadir}/icons/hico %Changelog +* Sat Jul 11 2009 Chitlesh Goorah - 2.3.0-1 +- new upstream release + * Sat Mar 07 2009 Chitlesh Goorah - 2.2.0-3 - added requires electronics-menu #485585 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 28 Jan 2009 22:00:30 -0000 1.2 +++ import.log 12 Jul 2009 09:17:46 -0000 1.3 @@ -1,2 +1,3 @@ gerbv-2_1_0-2_fc9:HEAD:gerbv-2.1.0-2.fc9.src.rpm:1226608797 gerbv-2_2_0-1_fc10:HEAD:gerbv-2.2.0-1.fc10.src.rpm:1233179942 +gerbv-2_3_0-1_fc11:F-11:gerbv-2.3.0-1.fc11.src.rpm:1247389952 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 Jan 2009 22:00:30 -0000 1.6 +++ sources 12 Jul 2009 09:17:46 -0000 1.7 @@ -1 +1 @@ -400b3a5dd23c5892fc09715b34fdc94a gerbv-2.2.0.tar.gz +4953d97e14bbd27d824167e64b4c314a gerbv-2.3.0.tar.gz From chitlesh at fedoraproject.org Sun Jul 12 09:19:57 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sun, 12 Jul 2009 09:19:57 +0000 (UTC) Subject: rpms/gerbv/devel .cvsignore, 1.6, 1.7 gerbv.spec, 1.10, 1.11 import.log, 1.2, 1.3 sources, 1.6, 1.7 Message-ID: <20090712091957.12F0F11C0095@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/gerbv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2361/devel Modified Files: .cvsignore gerbv.spec import.log sources Log Message: 2.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 28 Jan 2009 22:00:30 -0000 1.6 +++ .cvsignore 12 Jul 2009 09:19:26 -0000 1.7 @@ -1 +1 @@ -gerbv-2.2.0.tar.gz +gerbv-2.3.0.tar.gz Index: gerbv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/devel/gerbv.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gerbv.spec 7 Mar 2009 10:32:38 -0000 1.10 +++ gerbv.spec 12 Jul 2009 09:19:26 -0000 1.11 @@ -1,6 +1,6 @@ Name: gerbv -Version: 2.2.0 -Release: 3%{?dist} +Version: 2.3.0 +Release: 1%{?dist} Summary: Gerber file viewer from the gEDA toolkit Group: Applications/Engineering @@ -121,6 +121,11 @@ touch --no-create %{_datadir}/icons/hico %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README TODO %doc example/ +%doc doc/example-code +%doc doc/eagle +%doc doc/sources.txt +%doc doc/aperturemacro.txt +%doc doc/PNG-print %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man1/gerbv.* @@ -132,7 +137,6 @@ touch --no-create %{_datadir}/icons/hico %files devel %defattr(-,root,root,-) -%doc doc/* %dir %{_includedir}/%{name}-%{version} %{_includedir}/%{name}-%{version}/%{name}.h %{_libdir}/lib%{name}.so @@ -140,6 +144,9 @@ touch --no-create %{_datadir}/icons/hico %Changelog +* Sat Jul 11 2009 Chitlesh Goorah - 2.3.0-1 +- new upstream release + * Sat Mar 07 2009 Chitlesh Goorah - 2.2.0-3 - added requires electronics-menu #485585 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 28 Jan 2009 22:00:30 -0000 1.2 +++ import.log 12 Jul 2009 09:19:26 -0000 1.3 @@ -1,2 +1,3 @@ gerbv-2_1_0-2_fc9:HEAD:gerbv-2.1.0-2.fc9.src.rpm:1226608797 gerbv-2_2_0-1_fc10:HEAD:gerbv-2.2.0-1.fc10.src.rpm:1233179942 +gerbv-2_3_0-1_fc11:HEAD:gerbv-2.3.0-1.fc11.src.rpm:1247390294 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 Jan 2009 22:00:30 -0000 1.6 +++ sources 12 Jul 2009 09:19:26 -0000 1.7 @@ -1 +1 @@ -400b3a5dd23c5892fc09715b34fdc94a gerbv-2.2.0.tar.gz +4953d97e14bbd27d824167e64b4c314a gerbv-2.3.0.tar.gz From chitlesh at fedoraproject.org Sun Jul 12 09:21:54 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Sun, 12 Jul 2009 09:21:54 +0000 (UTC) Subject: rpms/gerbv/EL-5 .cvsignore, 1.4, 1.5 gerbv.spec, 1.3, 1.4 import.log, 1.1, 1.2 sources, 1.4, 1.5 Message-ID: <20090712092154.6AFE011C0095@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/gerbv/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2899/EL-5 Modified Files: .cvsignore gerbv.spec import.log sources Log Message: 2.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 14 Nov 2008 13:19:06 -0000 1.4 +++ .cvsignore 12 Jul 2009 09:21:23 -0000 1.5 @@ -1 +1 @@ -gerbv-2.1.0.tar.gz +gerbv-2.3.0.tar.gz Index: gerbv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/EL-5/gerbv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gerbv.spec 14 Nov 2008 13:19:07 -0000 1.3 +++ gerbv.spec 12 Jul 2009 09:21:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: gerbv -Version: 2.1.0 -Release: 2%{?dist} +Version: 2.3.0 +Release: 1%{?dist} Summary: Gerber file viewer from the gEDA toolkit Group: Applications/Engineering @@ -15,6 +15,7 @@ BuildRequires: gtk2-devel, libpng-dev Requires(postun): /sbin/ldconfig Requires(post): /sbin/ldconfig +Requires: electronics-menu %description Gerber Viewer (gerbv) is a viewer for Gerber files. Gerber files @@ -61,18 +62,18 @@ sed -i -e 's! -shared ! -Wl,--as-needed\ %install %{__rm} -rf %{buildroot} -%{__make} install DESTDIR=%{buildroot} +%{__make} INSTALL="%{__install} -p" install DESTDIR=%{buildroot} desktop-file-install --vendor fedora \ --remove-category Education \ --dir %{buildroot}%{_datadir}/applications \ - desktop/%{name}.desktop + --delete-original \ + %{buildroot}%{_datadir}/applications/%{name}.desktop %{__rm} -f %{buildroot}%{_libdir}/libgerbv.la -%{__rm} -f %{buildroot}%{_datadir}/applications/%{name}.desktop %{__rm} -f {doc,example}/Makefile* pushd example/ @@ -120,6 +121,11 @@ touch --no-create %{_datadir}/icons/hico %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README TODO %doc example/ +%doc doc/example-code +%doc doc/eagle +%doc doc/sources.txt +%doc doc/aperturemacro.txt +%doc doc/PNG-print %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man1/gerbv.* @@ -131,13 +137,25 @@ touch --no-create %{_datadir}/icons/hico %files devel %defattr(-,root,root,-) -%doc doc/* +%dir %{_includedir}/%{name}-%{version} %{_includedir}/%{name}-%{version}/%{name}.h %{_libdir}/lib%{name}.so %{_libdir}/pkgconfig/libgerbv.pc %Changelog +* Sat Jul 11 2009 Chitlesh Goorah - 2.3.0-1 +- new upstream release + +* Sat Mar 07 2009 Chitlesh Goorah - 2.2.0-3 +- added requires electronics-menu #485585 + +* Thu Jan 22 2009 Chitlesh Goorah - 2.2.0-1 +- new upstream release + +* Thu Dec 4 2008 Michael Schwendt - 2.1.0-3 +- Include unowned headers directory. + * Thu Nov 13 2008 Chitlesh Goorah - 2.1.0-2 - BR ImageMagick-devel added Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Nov 2008 13:19:07 -0000 1.1 +++ import.log 12 Jul 2009 09:21:23 -0000 1.2 @@ -1 +1,2 @@ gerbv-2_1_0-2_fc9:EL-5:gerbv-2.1.0-2.fc9.src.rpm:1226668665 +gerbv-2_3_0-1_fc11:EL-5:gerbv-2.3.0-1.fc11.src.rpm:1247390404 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 14 Nov 2008 13:19:07 -0000 1.4 +++ sources 12 Jul 2009 09:21:24 -0000 1.5 @@ -1 +1 @@ -0e697643c2bc303357648d12120373ab gerbv-2.1.0.tar.gz +4953d97e14bbd27d824167e64b4c314a gerbv-2.3.0.tar.gz From theinric at fedoraproject.org Sun Jul 12 10:56:46 2009 From: theinric at fedoraproject.org (Tomas Heinrich) Date: Sun, 12 Jul 2009 10:56:46 +0000 (UTC) Subject: rpms/rsyslog/F-11 .cvsignore, 1.31, 1.32 rsyslog.spec, 1.59, 1.60 sources, 1.33, 1.34 Message-ID: <20090712105646.DEFE211C0095@cvs1.fedora.phx.redhat.com> Author: theinric Update of /cvs/extras/rpms/rsyslog/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25264 Modified Files: .cvsignore rsyslog.spec sources Log Message: upgrade Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-11/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 13 Apr 2009 15:21:14 -0000 1.31 +++ .cvsignore 12 Jul 2009 10:56:14 -0000 1.32 @@ -1 +1 @@ -rsyslog-3.21.11.tar.gz +rsyslog-3.22.1.tar.gz Index: rsyslog.spec =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-11/rsyslog.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- rsyslog.spec 13 Apr 2009 15:21:15 -0000 1.59 +++ rsyslog.spec 12 Jul 2009 10:56:14 -0000 1.60 @@ -2,7 +2,7 @@ Summary: Enhanced system logging and kernel message trapping daemons Name: rsyslog -Version: 3.21.11 +Version: 3.22.1 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -12,7 +12,7 @@ Source1: rsyslog.init Source2: rsyslog.conf Source3: rsyslog.sysconfig Source4: rsyslog.log -Patch0: rsyslog-3.21.11-HUPisRestart.patch +#Patch0: rsyslog-3.21.11-HUPisRestart.patch BuildRequires: zlib-devel BuildRequires: autoconf automake Requires: logrotate >= 3.5.2 @@ -88,7 +88,7 @@ IETF standard protocol. %prep %setup -q -%patch0 -p1 -b .HUPisRestart +#%patch0 -p1 -b .HUPisRestart %build export CFLAGS="$RPM_OPT_FLAGS -DSYSLOGD_PIDNAME=\\\"syslogd.pid\\\"" @@ -194,6 +194,9 @@ fi %{_libdir}/rsyslog/lmnsd_gtls.so %changelog +* Sun Jul 12 2009 Tomas Heinrich 3.22.1-1 +- upgrade + * Mon Apr 13 2009 Tomas Heinrich 3.21.11-1 - upgrade Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-11/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 13 Apr 2009 15:21:15 -0000 1.33 +++ sources 12 Jul 2009 10:56:14 -0000 1.34 @@ -1 +1 @@ -fd796e15e780c954d43adc9680378403 rsyslog-3.21.11.tar.gz +64bed3d5535c17d631f7432a5badf959 rsyslog-3.22.1.tar.gz From whot at fedoraproject.org Sun Jul 12 11:17:26 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sun, 12 Jul 2009 11:17:26 +0000 (UTC) Subject: rpms/libXi/devel .cvsignore, 1.13, 1.14 libXi.spec, 1.30, 1.31 sources, 1.14, 1.15 Message-ID: <20090712111726.DB9A611C0095@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30239 Modified Files: .cvsignore libXi.spec sources Log Message: * Sun Jul 12 2009 Peter Hutterer 1.2.99-3.20090712 - Update to today's git master Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 19 Jun 2009 06:58:26 -0000 1.13 +++ .cvsignore 12 Jul 2009 11:16:55 -0000 1.14 @@ -1 +1 @@ -libXi-20090619.tar.bz2 +libXi-20090712.tar.bz2 Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXi.spec 19 Jun 2009 07:03:56 -0000 1.30 +++ libXi.spec 12 Jul 2009 11:16:55 -0000 1.31 @@ -1,10 +1,10 @@ %define tarball libXi -%define gitdate 20090619 +%define gitdate 20090712 Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 2.%{gitdate}%{?dist} +Release: 3.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -17,8 +17,8 @@ Source1: make-git-snapshot.sh BuildRequires: autoconf automake libtool BuildRequires: xorg-x11-util-macros BuildRequires: xorg-x11-proto-devel -BuildRequires: pkgconfig(inputproto) >= 1.9.99.12 -BuildRequires: libX11-devel +BuildRequires: pkgconfig(inputproto) >= 1.9.99.13 +BuildRequires: libX11-devel >= 1.2.99 BuildRequires: libXext-devel BuildRequires: libXau-devel BuildRequires: xmlto asciidoc >= 8.4.5 @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 12 2009 Peter Hutterer 1.2.99-3.20090712 +- Update to today's git master + * Fri Jun 19 2009 Peter Hutterer 1.2.99-2.20090619 - Add missing make-git-snapshot.sh Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 19 Jun 2009 06:58:27 -0000 1.14 +++ sources 12 Jul 2009 11:16:55 -0000 1.15 @@ -1 +1 @@ -e1d6d5d3b809254d698bfe04e845c09b libXi-20090619.tar.bz2 +7f04bdc7984dec37f6f2691537c92837 libXi-20090712.tar.bz2 From than at fedoraproject.org Sun Jul 12 11:21:27 2009 From: than at fedoraproject.org (Than Ngo) Date: Sun, 12 Jul 2009 11:21:27 +0000 (UTC) Subject: rpms/kdeplasma-addons/devel .cvsignore, 1.15, 1.16 kdeplasma-addons.spec, 1.45, 1.46 sources, 1.15, 1.16 Message-ID: <20090712112127.DEDAF11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeplasma-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31321 Modified Files: .cvsignore kdeplasma-addons.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 26 Jun 2009 13:37:20 -0000 1.15 +++ .cvsignore 12 Jul 2009 11:20:57 -0000 1.16 @@ -1,2 +1,3 @@ kdeplasma-addons-4.2.90.tar.bz2 kdeplasma-addons-4.2.95.tar.bz2 +kdeplasma-addons-4.2.96.tar.bz2 Index: kdeplasma-addons.spec =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/kdeplasma-addons.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- kdeplasma-addons.spec 30 Jun 2009 14:11:28 -0000 1.45 +++ kdeplasma-addons.spec 12 Jul 2009 11:20:57 -0000 1.46 @@ -1,5 +1,5 @@ Name: kdeplasma-addons -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: Additional plasmoids for KDE @@ -137,6 +137,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 12 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 26 Jun 2009 13:37:20 -0000 1.15 +++ sources 12 Jul 2009 11:20:57 -0000 1.16 @@ -1 +1 @@ -f39f498ad5f9434ff99fa48209fa0b59 kdeplasma-addons-4.2.95.tar.bz2 +bfb975facc9993c99c773940579b89e1 kdeplasma-addons-4.2.96.tar.bz2 From than at fedoraproject.org Sun Jul 12 11:26:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Sun, 12 Jul 2009 11:26:01 +0000 (UTC) Subject: rpms/kdesdk/devel .cvsignore, 1.59, 1.60 kdesdk.spec, 1.145, 1.146 sources, 1.61, 1.62 Message-ID: <20090712112601.3CD3211C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdesdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32445 Modified Files: .cvsignore kdesdk.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 26 Jun 2009 13:42:23 -0000 1.59 +++ .cvsignore 12 Jul 2009 11:25:30 -0000 1.60 @@ -1,2 +1,3 @@ kdesdk-4.2.90.tar.bz2 kdesdk-4.2.95.tar.bz2 +kdesdk-4.2.96.tar.bz2 Index: kdesdk.spec =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/kdesdk.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- kdesdk.spec 26 Jun 2009 13:42:23 -0000 1.145 +++ kdesdk.spec 12 Jul 2009 11:25:30 -0000 1.146 @@ -1,5 +1,5 @@ Name: kdesdk -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: The KDE Software Development Kit (SDK) @@ -223,6 +223,9 @@ fi %changelog +* Sun Jul 12 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/sources,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sources 26 Jun 2009 13:42:23 -0000 1.61 +++ sources 12 Jul 2009 11:25:30 -0000 1.62 @@ -1 +1 @@ -eb1669927a8a91ab12f357f9371eca83 kdesdk-4.2.95.tar.bz2 +fe8725e39762e944d39e11becef55882 kdesdk-4.2.96.tar.bz2 From mbarnes at fedoraproject.org Sun Jul 12 11:34:00 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Sun, 12 Jul 2009 11:34:00 +0000 (UTC) Subject: rpms/gnome-python2-extras/devel gnome-python2-extras.spec, 1.51, 1.52 Message-ID: <20090712113400.6D4A811C0095@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-python2-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1769 Modified Files: gnome-python2-extras.spec Log Message: * Sun Jul 12 2009 Matthew Barnes - 2.25.3-5 - Rebuild against newer libgdl. Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/devel/gnome-python2-extras.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gnome-python2-extras.spec 17 Jun 2009 20:49:38 -0000 1.51 +++ gnome-python2-extras.spec 12 Jul 2009 11:33:30 -0000 1.52 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.25.3 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: Additional PyGNOME Python extension modules @@ -180,6 +180,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-4.0.pc %changelog +* Sun Jul 12 2009 Matthew Barnes - 2.25.3-5 +- Rebuild against newer libgdl. + * Wed Jun 17 2009 Matthew Barnes - 2.25.3-4 - Improve summary (RH bug #506526). From than at fedoraproject.org Sun Jul 12 11:35:54 2009 From: than at fedoraproject.org (Than Ngo) Date: Sun, 12 Jul 2009 11:35:54 +0000 (UTC) Subject: rpms/kdetoys/devel .cvsignore, 1.36, 1.37 kdetoys.spec, 1.55, 1.56 sources, 1.34, 1.35 Message-ID: <20090712113554.7012B11C0095@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdetoys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2338 Modified Files: .cvsignore kdetoys.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 26 Jun 2009 13:51:33 -0000 1.36 +++ .cvsignore 12 Jul 2009 11:35:23 -0000 1.37 @@ -1,2 +1,3 @@ kdetoys-4.2.90.tar.bz2 kdetoys-4.2.95.tar.bz2 +kdetoys-4.2.96.tar.bz2 Index: kdetoys.spec =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/kdetoys.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- kdetoys.spec 26 Jun 2009 13:51:33 -0000 1.55 +++ kdetoys.spec 12 Jul 2009 11:35:24 -0000 1.56 @@ -1,7 +1,7 @@ Name: kdetoys Summary: K Desktop Environment - Toys and Amusements Epoch: 7 -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} License: GPLv2 @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 12 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 26 Jun 2009 13:51:33 -0000 1.34 +++ sources 12 Jul 2009 11:35:24 -0000 1.35 @@ -1 +1 @@ -5394001c8c12782b1d1f59448674644b kdetoys-4.2.95.tar.bz2 +d81a8e6d0f1c1b824e7b14079c8a2c27 kdetoys-4.2.96.tar.bz2 From sindrepb at fedoraproject.org Sun Jul 12 11:46:36 2009 From: sindrepb at fedoraproject.org (=?utf-8?q?Sindre_Pedersen_Bj=C3=B8rdal?=) Date: Sun, 12 Jul 2009 11:46:36 +0000 (UTC) Subject: rpms/rubyripper/devel .cvsignore, 1.7, 1.8 rubyripper.spec, 1.14, 1.15 sources, 1.7, 1.8 Message-ID: <20090712114636.7126411C0095@cvs1.fedora.phx.redhat.com> Author: sindrepb Update of /cvs/pkgs/rpms/rubyripper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5377 Modified Files: .cvsignore rubyripper.spec sources Log Message: new release, fixes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubyripper/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 3 Mar 2009 17:43:33 -0000 1.7 +++ .cvsignore 12 Jul 2009 11:46:05 -0000 1.8 @@ -1 +1 @@ -rubyripper-0.5.5.tar.bz2 +rubyripper-0.5.7.tar.bz2 Index: rubyripper.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubyripper/devel/rubyripper.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- rubyripper.spec 14 Mar 2009 08:18:18 -0000 1.14 +++ rubyripper.spec 12 Jul 2009 11:46:06 -0000 1.15 @@ -1,8 +1,8 @@ %{!?ruby_sitelib: %define ruby_sitelib %(ruby -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]')} Name: rubyripper -Version: 0.5.5 -Release: 2%{?dist} +Version: 0.5.7 +Release: 1%{?dist} Summary: Open-source secure ripper for Linux Group: Applications/Multimedia @@ -82,6 +82,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 12 2009 Sindre Pedersen Bj??rdal - 0.5.7-1 +- New upstream release, notable changes including: +- a fix for discs that start with a data track +- a fix for checking the available space for some languages +- fix a typo in the logfile when errors were corrected +- fix a typo which resulted in a directory not containing the album name + * Sat Mar 14 2009 Sindre Pedersen Bj??rdal - 0.5.5-2 - Add missing vorbis-tools dependency Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubyripper/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Mar 2009 17:43:33 -0000 1.7 +++ sources 12 Jul 2009 11:46:06 -0000 1.8 @@ -1 +1 @@ -45d5d85d2b528538b9d50243360f88cd rubyripper-0.5.5.tar.bz2 +87e0d97055fafebdebe4f36b9880638d rubyripper-0.5.7.tar.bz2 From mbarnes at fedoraproject.org Sun Jul 12 11:53:47 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Sun, 12 Jul 2009 11:53:47 +0000 (UTC) Subject: rpms/gnome-python2-extras/devel gnome-python-extras-2.25.3-update-for-2.27.2.patch, NONE, 1.1 gnome-python2-extras.spec, 1.52, 1.53 Message-ID: <20090712115347.C24DF11C0095@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-python2-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6936 Modified Files: gnome-python2-extras.spec Added Files: gnome-python-extras-2.25.3-update-for-2.27.2.patch Log Message: * Sun Jul 12 2009 Matthew Barnes - 2.25.3-5 - Add patch for GNOME bug #584126 (gdl API break). gnome-python-extras-2.25.3-update-for-2.27.2.patch: --- NEW FILE gnome-python-extras-2.25.3-update-for-2.27.2.patch --- diff -up gnome-python-extras-2.25.3/gdl/gdl.defs.update-for-2.27.2 gnome-python-extras-2.25.3/gdl/gdl.defs --- gnome-python-extras-2.25.3/gdl/gdl.defs.update-for-2.27.2 2008-12-11 20:06:29.000000000 -0500 +++ gnome-python-extras-2.25.3/gdl/gdl.defs 2009-07-12 07:50:08.000000000 -0400 @@ -46,13 +46,6 @@ (gtype-id "GDL_TYPE_DOCK_ITEM") ) -(define-object DockNotebook - (in-module "Gdl") - (parent "GdlDockItem") - (c-name "GdlDockNotebook") - (gtype-id "GDL_TYPE_DOCK_NOTEBOOK") -) - (define-object Dock (in-module "Gdl") (parent "GdlDockObject") @@ -60,13 +53,6 @@ (gtype-id "GDL_TYPE_DOCK") ) -(define-object DockPaned - (in-module "Gdl") - (parent "GdlDockItem") - (c-name "GdlDockPaned") - (gtype-id "GDL_TYPE_DOCK_PANED") -) - (define-object DockPlaceholder (in-module "Gdl") (parent "GdlDockObject") @@ -74,12 +60,6 @@ (gtype-id "GDL_TYPE_DOCK_PLACEHOLDER") ) -(define-object DockTablabel - (in-module "Gdl") - (parent "GtkBin") - (c-name "GdlDockTablabel") - (gtype-id "GDL_TYPE_DOCK_TABLABEL") -) (ifdef HAVE_GDL_0_7 @@ -682,21 +662,6 @@ -;; From gdl-dock-notebook.h - -(define-function gdl_dock_notebook_new - (c-name "gdl_dock_notebook_new") - (is-constructor-of "GdlDockNotebook") - (return-type "GtkWidget*") -) - -(define-function gdl_dock_notebook_get_type - (c-name "gdl_dock_notebook_get_type") - (return-type "GType") -) - - - ;; From gdl-dock-object.h (define-function gdl_dock_object_get_type @@ -848,24 +813,6 @@ -;; From gdl-dock-paned.h - -(define-function gdl_dock_paned_get_type - (c-name "gdl_dock_paned_get_type") - (return-type "GType") -) - -(define-function gdl_dock_paned_new - (c-name "gdl_dock_paned_new") - (is-constructor-of "GdlDockPaned") - (return-type "GtkWidget*") - (properties - '("orientation") - ) -) - - - ;; From gdl-dock-placeholder.h (define-function gdl_dock_placeholder_get_type @@ -896,34 +843,6 @@ -;; From gdl-dock-tablabel.h - -(define-function gdl_dock_tablabel_new - (c-name "gdl_dock_tablabel_new") - (is-constructor-of "GdlDockTablabel") - (return-type "GtkWidget*") - (properties - '("item") - ) -) - -(define-function gdl_dock_tablabel_get_type - (c-name "gdl_dock_tablabel_get_type") - (return-type "GType") -) - -(define-method activate - (of-object "GdlDockTablabel") - (c-name "gdl_dock_tablabel_activate") - (return-type "none") -) - -(define-method deactivate - (of-object "GdlDockTablabel") - (c-name "gdl_dock_tablabel_deactivate") - (return-type "none") -) - ;; From gdl-icons.h (ifdef HAVE_GDL_0_7 Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/devel/gnome-python2-extras.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- gnome-python2-extras.spec 12 Jul 2009 11:33:30 -0000 1.52 +++ gnome-python2-extras.spec 12 Jul 2009 11:53:17 -0000 1.53 @@ -25,6 +25,11 @@ BuildRoot: %{_tmppath}/%{name}-%{version Obsoletes: gnome-python2-gda <= 2.14.3-1 Obsoletes: gnome-python2-gda-devel <= 2.14.3-1 +### Patches ### + +# GNOME bug #584126 +Patch1: gnome-python-extras-2.25.3-update-for-2.27.2.patch + ### Dependencies ### Requires: gnome-python2 >= %{gnome_python_version} @@ -122,6 +127,7 @@ gnome-python2-gda. %prep %setup -q -n gnome-python-extras-%{version} +%patch1 -p1 -b .update-for-2.27.2 %build %configure --with-gtkmozembed=mozilla --enable-docs @@ -181,7 +187,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sun Jul 12 2009 Matthew Barnes - 2.25.3-5 -- Rebuild against newer libgdl. +- Add patch for GNOME bug #584126 (gdl API break). * Wed Jun 17 2009 Matthew Barnes - 2.25.3-4 - Improve summary (RH bug #506526). From theinric at fedoraproject.org Sun Jul 12 12:53:53 2009 From: theinric at fedoraproject.org (Tomas Heinrich) Date: Sun, 12 Jul 2009 12:53:53 +0000 (UTC) Subject: rpms/rsyslog/F-10 .cvsignore, 1.30, 1.31 rsyslog.spec, 1.55, 1.56 sources, 1.32, 1.33 rsyslog-3.21.10-convVar.patch, 1.1, NONE Message-ID: <20090712125353.6556A11C0095@cvs1.fedora.phx.redhat.com> Author: theinric Update of /cvs/extras/rpms/rsyslog/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21270 Modified Files: .cvsignore rsyslog.spec sources Removed Files: rsyslog-3.21.10-convVar.patch Log Message: upgrade Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-10/.cvsignore,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- .cvsignore 17 Feb 2009 16:37:20 -0000 1.30 +++ .cvsignore 12 Jul 2009 12:53:22 -0000 1.31 @@ -1 +1 @@ -rsyslog-3.21.10.tar.gz +rsyslog-3.22.1.tar.gz Index: rsyslog.spec =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-10/rsyslog.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- rsyslog.spec 31 Mar 2009 12:55:48 -0000 1.55 +++ rsyslog.spec 12 Jul 2009 12:53:23 -0000 1.56 @@ -2,8 +2,8 @@ Summary: Enhanced system logging and kernel message trapping daemons Name: rsyslog -Version: 3.21.10 -Release: 2%{?dist} +Version: 3.22.1 +Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons URL: http://www.rsyslog.com/ @@ -12,7 +12,6 @@ Source1: rsyslog.init Source2: rsyslog.conf Source3: rsyslog.sysconfig Source4: rsyslog.log -Patch0: rsyslog-3.21.10-convVar.patch BuildRequires: zlib-devel BuildRequires: autoconf automake Requires: logrotate >= 3.5.2 @@ -88,7 +87,6 @@ IETF standard protocol. %prep %setup -q -%patch0 -p1 -b .convVar %build export CFLAGS="$RPM_OPT_FLAGS -DSYSLOGD_PIDNAME=\\\"syslogd.pid\\\"" @@ -194,6 +192,9 @@ fi %{_libdir}/rsyslog/lmnsd_gtls.so %changelog +* Sun Jul 12 2009 Tomas Heinrich 3.22.1-1 +- upgrade + * Tue Mar 31 2009 Tomas Heinrich 3.21.10-2 - fix variables' type conversion in expression-based filters (#485937) Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsyslog/F-10/sources,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- sources 17 Feb 2009 16:37:20 -0000 1.32 +++ sources 12 Jul 2009 12:53:23 -0000 1.33 @@ -1 +1 @@ -c3354921ccb1d83d00199212d35e1d43 rsyslog-3.21.10.tar.gz +64bed3d5535c17d631f7432a5badf959 rsyslog-3.22.1.tar.gz --- rsyslog-3.21.10-convVar.patch DELETED --- From llaumgui at fedoraproject.org Sun Jul 12 14:21:06 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Sun, 12 Jul 2009 14:21:06 +0000 (UTC) Subject: rpms/backup-manager/EL-5 backup-manager.spec,1.2,1.3 Message-ID: <20090712142106.F3EEC11C0095@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/backup-manager/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10460 Modified Files: backup-manager.spec Log Message: add dar Index: backup-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-manager/EL-5/backup-manager.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- backup-manager.spec 8 Feb 2009 17:59:49 -0000 1.2 +++ backup-manager.spec 12 Jul 2009 14:21:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: backup-manager Version: 0.7.8 -Release: 1%{?dist} +Release: 3%{?dist} Summary: A command line backup tool for GNU/Linux Group: Applications/System @@ -12,7 +12,7 @@ Patch0: %{name}-%{version}-confi BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gettext +BuildRequires: gettext BuildRequires: perl Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -23,6 +23,7 @@ Requires: /usr/bin/mkisofs Requires: bc Requires: bzip2 Requires: coreutils +Requires: dar Requires: diffutils Requires: dvd+rw-tools Requires: less @@ -57,7 +58,7 @@ for your needs. # Clean Makefile sed -i -e "s at install --owner=root --group=root @install @" Makefile -# Replace #!/bin/sh by #!/bin/bash +# Replace #!/bin/sh by #!/bin/bash for file in t/*.sh; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done for file in doc/user-guide*; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done @@ -78,7 +79,7 @@ rm -rf %{buildroot} make install \ DESTDIR=%{buildroot} \ PERL5DIR=%{buildroot}%{perl_vendorlib} \ - INSTALL="install -p" + INSTALL="install -p" %find_lang %{name} # Create backup directory @@ -88,7 +89,7 @@ install -d %{buildroot}%{_localstatedir} install -p -D -m 0644 %{buildroot}%{_datadir}/%{name}/%{name}.conf.tpl \ %{buildroot}%{_sysconfdir}/%{name}.conf -# Add cron.daily +# Add cron.daily install -p -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/cron.daily/%{name}.cron # rpmlint : sanitize.sh is a non-executable-script @@ -114,13 +115,19 @@ rm -rf %{buildroot} %changelog +* Thu Jun 25 2009 Guillaume Kulakowski - 0.7.8-3 +- Add dar in requierement + +* Mon Feb 23 2009 Fedora Release Engineering - 0.7.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Feb 07 2009 Guillaume Kulakowski - 0.7.8-1 - Update to 0.7.8 - Remove genisoimage requirement * Thu Jan 15 2009 Guillaume Kulakowski - 0.7.7-7 - Replace some sed by a patch -- Replace /bin/sh by /bin/bash +- Replace /bin/sh by /bin/bash * Wed Jan 13 2009 Guillaume Kulakowski - 0.7.7-6 - Fix Requires From llaumgui at fedoraproject.org Sun Jul 12 14:21:08 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Sun, 12 Jul 2009 14:21:08 +0000 (UTC) Subject: rpms/backup-manager/F-11 backup-manager.spec,1.3,1.4 Message-ID: <20090712142108.19C8111C0095@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/backup-manager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10484 Modified Files: backup-manager.spec Log Message: add dar Index: backup-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-manager/F-11/backup-manager.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- backup-manager.spec 24 Feb 2009 03:53:48 -0000 1.3 +++ backup-manager.spec 12 Jul 2009 14:21:07 -0000 1.4 @@ -1,6 +1,6 @@ Name: backup-manager Version: 0.7.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A command line backup tool for GNU/Linux Group: Applications/System @@ -12,7 +12,7 @@ Patch0: %{name}-%{version}-confi BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gettext +BuildRequires: gettext BuildRequires: perl Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -23,6 +23,7 @@ Requires: /usr/bin/mkisofs Requires: bc Requires: bzip2 Requires: coreutils +Requires: dar Requires: diffutils Requires: dvd+rw-tools Requires: less @@ -57,7 +58,7 @@ for your needs. # Clean Makefile sed -i -e "s at install --owner=root --group=root @install @" Makefile -# Replace #!/bin/sh by #!/bin/bash +# Replace #!/bin/sh by #!/bin/bash for file in t/*.sh; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done for file in doc/user-guide*; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done @@ -78,7 +79,7 @@ rm -rf %{buildroot} make install \ DESTDIR=%{buildroot} \ PERL5DIR=%{buildroot}%{perl_vendorlib} \ - INSTALL="install -p" + INSTALL="install -p" %find_lang %{name} # Create backup directory @@ -88,7 +89,7 @@ install -d %{buildroot}%{_localstatedir} install -p -D -m 0644 %{buildroot}%{_datadir}/%{name}/%{name}.conf.tpl \ %{buildroot}%{_sysconfdir}/%{name}.conf -# Add cron.daily +# Add cron.daily install -p -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/cron.daily/%{name}.cron # rpmlint : sanitize.sh is a non-executable-script @@ -114,6 +115,9 @@ rm -rf %{buildroot} %changelog +* Thu Jun 25 2009 Guillaume Kulakowski - 0.7.8-3 +- Add dar in requierement + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild @@ -123,7 +127,7 @@ rm -rf %{buildroot} * Thu Jan 15 2009 Guillaume Kulakowski - 0.7.7-7 - Replace some sed by a patch -- Replace /bin/sh by /bin/bash +- Replace /bin/sh by /bin/bash * Wed Jan 13 2009 Guillaume Kulakowski - 0.7.7-6 - Fix Requires From llaumgui at fedoraproject.org Sun Jul 12 14:21:29 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Sun, 12 Jul 2009 14:21:29 +0000 (UTC) Subject: rpms/backup-manager/devel backup-manager.spec,1.3,1.4 Message-ID: <20090712142129.B213111C0095@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/backup-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10407 Modified Files: backup-manager.spec Log Message: add dar Index: backup-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-manager/devel/backup-manager.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- backup-manager.spec 24 Feb 2009 03:53:48 -0000 1.3 +++ backup-manager.spec 12 Jul 2009 14:20:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: backup-manager Version: 0.7.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A command line backup tool for GNU/Linux Group: Applications/System @@ -12,7 +12,7 @@ Patch0: %{name}-%{version}-confi BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gettext +BuildRequires: gettext BuildRequires: perl Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -23,6 +23,7 @@ Requires: /usr/bin/mkisofs Requires: bc Requires: bzip2 Requires: coreutils +Requires: dar Requires: diffutils Requires: dvd+rw-tools Requires: less @@ -57,7 +58,7 @@ for your needs. # Clean Makefile sed -i -e "s at install --owner=root --group=root @install @" Makefile -# Replace #!/bin/sh by #!/bin/bash +# Replace #!/bin/sh by #!/bin/bash for file in t/*.sh; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done for file in doc/user-guide*; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done @@ -78,7 +79,7 @@ rm -rf %{buildroot} make install \ DESTDIR=%{buildroot} \ PERL5DIR=%{buildroot}%{perl_vendorlib} \ - INSTALL="install -p" + INSTALL="install -p" %find_lang %{name} # Create backup directory @@ -88,7 +89,7 @@ install -d %{buildroot}%{_localstatedir} install -p -D -m 0644 %{buildroot}%{_datadir}/%{name}/%{name}.conf.tpl \ %{buildroot}%{_sysconfdir}/%{name}.conf -# Add cron.daily +# Add cron.daily install -p -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/cron.daily/%{name}.cron # rpmlint : sanitize.sh is a non-executable-script @@ -114,6 +115,9 @@ rm -rf %{buildroot} %changelog +* Thu Jun 25 2009 Guillaume Kulakowski - 0.7.8-3 +- Add dar in requierement + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild @@ -123,7 +127,7 @@ rm -rf %{buildroot} * Thu Jan 15 2009 Guillaume Kulakowski - 0.7.7-7 - Replace some sed by a patch -- Replace /bin/sh by /bin/bash +- Replace /bin/sh by /bin/bash * Wed Jan 13 2009 Guillaume Kulakowski - 0.7.7-6 - Fix Requires From llaumgui at fedoraproject.org Sun Jul 12 14:21:39 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Sun, 12 Jul 2009 14:21:39 +0000 (UTC) Subject: rpms/backup-manager/F-10 backup-manager.spec,1.2,1.3 Message-ID: <20090712142139.B3D6411C0095@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/backup-manager/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10510 Modified Files: backup-manager.spec Log Message: add dar Index: backup-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-manager/F-10/backup-manager.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- backup-manager.spec 8 Feb 2009 18:03:59 -0000 1.2 +++ backup-manager.spec 12 Jul 2009 14:21:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: backup-manager Version: 0.7.8 -Release: 1%{?dist} +Release: 3%{?dist} Summary: A command line backup tool for GNU/Linux Group: Applications/System @@ -12,7 +12,7 @@ Patch0: %{name}-%{version}-confi BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: gettext +BuildRequires: gettext BuildRequires: perl Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -23,6 +23,7 @@ Requires: /usr/bin/mkisofs Requires: bc Requires: bzip2 Requires: coreutils +Requires: dar Requires: diffutils Requires: dvd+rw-tools Requires: less @@ -57,7 +58,7 @@ for your needs. # Clean Makefile sed -i -e "s at install --owner=root --group=root @install @" Makefile -# Replace #!/bin/sh by #!/bin/bash +# Replace #!/bin/sh by #!/bin/bash for file in t/*.sh; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done for file in doc/user-guide*; do sed -i -e "s@#!/bin/sh@#!/bin/bash@" "$file"; done @@ -78,7 +79,7 @@ rm -rf %{buildroot} make install \ DESTDIR=%{buildroot} \ PERL5DIR=%{buildroot}%{perl_vendorlib} \ - INSTALL="install -p" + INSTALL="install -p" %find_lang %{name} # Create backup directory @@ -88,7 +89,7 @@ install -d %{buildroot}%{_localstatedir} install -p -D -m 0644 %{buildroot}%{_datadir}/%{name}/%{name}.conf.tpl \ %{buildroot}%{_sysconfdir}/%{name}.conf -# Add cron.daily +# Add cron.daily install -p -D -m 0755 %{SOURCE1} %{buildroot}%{_sysconfdir}/cron.daily/%{name}.cron # rpmlint : sanitize.sh is a non-executable-script @@ -114,13 +115,19 @@ rm -rf %{buildroot} %changelog +* Thu Jun 25 2009 Guillaume Kulakowski - 0.7.8-3 +- Add dar in requierement + +* Mon Feb 23 2009 Fedora Release Engineering - 0.7.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Feb 07 2009 Guillaume Kulakowski - 0.7.8-1 - Update to 0.7.8 - Remove genisoimage requirement * Thu Jan 15 2009 Guillaume Kulakowski - 0.7.7-7 - Replace some sed by a patch -- Replace /bin/sh by /bin/bash +- Replace /bin/sh by /bin/bash * Wed Jan 13 2009 Guillaume Kulakowski - 0.7.7-6 - Fix Requires From bagnara at fedoraproject.org Sun Jul 12 14:42:46 2009 From: bagnara at fedoraproject.org (Roberto Bagnara) Date: Sun, 12 Jul 2009 14:42:46 +0000 (UTC) Subject: rpms/ppl/devel ppl.spec,1.31,1.32 Message-ID: <20090712144246.E4FE111C0095@cvs1.fedora.phx.redhat.com> Author: bagnara Update of /cvs/pkgs/rpms/ppl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16248 Modified Files: ppl.spec Log Message: Force rebuild. Index: ppl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ppl/devel/ppl.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- ppl.spec 19 Jun 2009 06:41:13 -0000 1.31 +++ ppl.spec 12 Jul 2009 14:42:15 -0000 1.32 @@ -2,7 +2,7 @@ Name: ppl Version: 0.10.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Parma Polyhedra Library: a library of numerical abstractions Group: Development/Libraries @@ -416,6 +416,9 @@ mv \ rm -rf %{buildroot} %changelog +* Sun Jul 12 2009 Roberto Bagnara 0.10.2-4 +- Force rebuild. + * Fri Jun 19 2009 Roberto Bagnara 0.10.2-3 - The `gprolog' and `yap' packages are not available on the sparc64 and sparcv9 architectures: so do `ppl-gprolog', `ppl-gprolog-static' and From bbbush at fedoraproject.org Sun Jul 12 15:11:40 2009 From: bbbush at fedoraproject.org (Yuan Yijun) Date: Sun, 12 Jul 2009 15:11:40 +0000 (UTC) Subject: rpms/chmsee/devel chmsee-1.0.6-disable-libxul-maxver.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 chmsee.spec, 1.29, 1.30 sources, 1.5, 1.6 chmsee-1.0.1-desktop-icon.patch, 1.1, NONE chmsee-1.0.1-xulrunner-1.9.patch, 1.2, NONE Message-ID: <20090712151140.7857E11C0095@cvs1.fedora.phx.redhat.com> Author: bbbush Update of /cvs/pkgs/rpms/chmsee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22771 Modified Files: .cvsignore chmsee.spec sources Added Files: chmsee-1.0.6-disable-libxul-maxver.patch Removed Files: chmsee-1.0.1-desktop-icon.patch chmsee-1.0.1-xulrunner-1.9.patch Log Message: chmsee: update to 1.0.6 chmsee-1.0.6-disable-libxul-maxver.patch: --- NEW FILE chmsee-1.0.6-disable-libxul-maxver.patch --- diff -up chmsee-1.0.6/CMakeLists.txt.orig chmsee-1.0.6/CMakeLists.txt --- chmsee-1.0.6/CMakeLists.txt.orig 2009-07-12 23:06:05.403162880 +0800 +++ chmsee-1.0.6/CMakeLists.txt 2009-07-12 23:06:24.191893761 +0800 @@ -2,7 +2,8 @@ project(chmsee) cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR) set(PACKAGE_VERSION "1.0.6" ) find_package(PkgConfig) -pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 libglade-2.0 libxul-embedding-unstable>=1.9 libxul-embedding-unstable<=1.9.0.999) +pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 +libglade-2.0 libxul-embedding-unstable>=1.9) set(CHMSEE_BOOKMARK_FILE "chmsee_bookmarks") set(CHMSEE_BOOKINFO_FILE "chmsee_bookinfo") Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 May 2008 10:59:57 -0000 1.5 +++ .cvsignore 12 Jul 2009 15:11:07 -0000 1.6 @@ -1 +1 @@ -chmsee-1.0.1.tar.gz +chmsee-1.0.6.tar.gz Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/devel/chmsee.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- chmsee.spec 28 Apr 2009 03:22:06 -0000 1.29 +++ chmsee.spec 12 Jul 2009 15:11:08 -0000 1.30 @@ -1,19 +1,18 @@ Name: chmsee -Version: 1.0.1 -Release: 6%{?dist} +Version: 1.0.6 +Release: 1%{?dist} Summary(zh_CN): CHM ??????????????????, ?????? Gtk2+ Summary: A Gtk+2 CHM document viewer Group: Applications/Publishing License: GPLv2 -URL: http://chmsee.gro.clinux.org/ -Source0: http://download.gro.clinux.org/%{name}/%{name}-%{version}.tar.gz +URL: http://code.google.com/p/chmsee +Source0: http://chmsee.googlecode.com/files/%{name}-%{version}.tar.gz # this file comes from gnochm package Source1: gnochm-chmfile.png -Patch1: chmsee-1.0.1-desktop-icon.patch -Patch2: chmsee-1.0.1-xulrunner-1.9.patch +Patch0: chmsee-1.0.6-disable-libxul-maxver.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: intltool >= 0.34 pkgconfig >= 0.9 gettext +BuildRequires: intltool >= 0.34 pkgconfig >= 0.9 gettext cmake BuildRequires: gtk2-devel >= 2.8 libglade2-devel >= 2.0 BuildRequires: libgcrypt-devel chmlib-devel BuildRequires: desktop-file-utils @@ -54,18 +53,18 @@ only current file's. %prep -%setup -q -%patch1 -p1 -b .desktop-mimetype -%patch2 -p1 -b .xulrunner-1.9 +%setup -q +%patch0 -p1 -b .libxul-maxver %build -%configure --with-gecko=libxul -make %{?_smp_mflags} +%cmake . +make VERBOSE=1 %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -install -p -m 644 -D chmsee-icon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/chmsee.png +make install-strip DESTDIR=$RPM_BUILD_ROOT +#make install DESTDIR=$RPM_BUILD_ROOT +install -p -m 644 -D chmsee-icon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/chmsee-icon.png # this file comes from gnochm package. Take care and avoid conflict (cp -p). install -p -m 644 -D %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/icons/gnome/48x48/mimetypes/application-x-chm.png ln -s application-x-chm.png $RPM_BUILD_ROOT%{_datadir}/icons/gnome/48x48/mimetypes/gnome-mime-application-x-chm.png @@ -108,6 +107,21 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/chmsee.png %changelog +* Sun Jul 12 2009 bbbush - 1.0.6-1 +- update to 1.0.6 +- update project location. Chmsee moved to google code since 2009-01-05, + co-maintained by Li Daobing and Jungle Ji +- update build steps to use CMake +- Chmsee 1.0.3 was released on 2009-01-10, added "copy page location" in + context menu, updated translation +- Chmsee 1.0.4 was released on 2009-03-14, added "drag and drop" support, + dropped cs2w +- Chmsee 1.0.5 was released on 2009-05-17, added fullscreen support, switched + to CMake, supported 6 more new languages +- Chmsee 1.0.6 was released on 2009-07-12, added index support, supported 8 + more new languages + + * Mon Apr 27 2009 Christopher Aillon - 1.0.1-6 - Rebuild against newer gecko Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 May 2008 10:59:57 -0000 1.5 +++ sources 12 Jul 2009 15:11:08 -0000 1.6 @@ -1 +1 @@ -0ea3d439ab240f12bc0f35632bbe114d chmsee-1.0.1.tar.gz +7a42795038e138ee233952b525373b08 chmsee-1.0.6.tar.gz --- chmsee-1.0.1-desktop-icon.patch DELETED --- --- chmsee-1.0.1-xulrunner-1.9.patch DELETED --- From mtasaka at fedoraproject.org Sun Jul 12 15:14:40 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 12 Jul 2009 15:14:40 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.383, 1.384 jd.spec, 1.443, 1.444 sources, 1.384, 1.385 Message-ID: <20090712151440.F301E11C0095@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24247/F-10 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- .cvsignore 5 Jul 2009 13:00:59 -0000 1.383 +++ .cvsignore 12 Jul 2009 15:14:10 -0000 1.384 @@ -1 +1 @@ -jd-2.4.1-rc090705.tgz +jd-2.4.1-090712.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.443 retrieving revision 1.444 diff -u -p -r1.443 -r1.444 --- jd.spec 5 Jul 2009 13:00:59 -0000 1.443 +++ jd.spec 12 Jul 2009 15:14:10 -0000 1.444 @@ -10,16 +10,16 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag rc090705 -%define repoid 40945 +%define strtag 090712 +%define repoid 41293 # Define this if this is pre-version -%define pre_release 1 +%define pre_release 0 ########################################## ########################################## # Defined by vendor # -%define vendor_rel 3 +%define vendor_rel 1 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 +- 2.4.1 + * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.384 retrieving revision 1.385 diff -u -p -r1.384 -r1.385 --- sources 5 Jul 2009 13:00:59 -0000 1.384 +++ sources 12 Jul 2009 15:14:10 -0000 1.385 @@ -1 +1 @@ -176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz +42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz From mtasaka at fedoraproject.org Sun Jul 12 15:14:41 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 12 Jul 2009 15:14:41 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.377, 1.378 jd.spec, 1.439, 1.440 sources, 1.378, 1.379 Message-ID: <20090712151441.4A62611C0095@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24247/F-11 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.377 retrieving revision 1.378 diff -u -p -r1.377 -r1.378 --- .cvsignore 5 Jul 2009 13:00:59 -0000 1.377 +++ .cvsignore 12 Jul 2009 15:14:10 -0000 1.378 @@ -1 +1 @@ -jd-2.4.1-rc090705.tgz +jd-2.4.1-090712.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.439 retrieving revision 1.440 diff -u -p -r1.439 -r1.440 --- jd.spec 5 Jul 2009 13:00:59 -0000 1.439 +++ jd.spec 12 Jul 2009 15:14:10 -0000 1.440 @@ -10,16 +10,16 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag rc090705 -%define repoid 40945 +%define strtag 090712 +%define repoid 41293 # Define this if this is pre-version -%define pre_release 1 +%define pre_release 0 ########################################## ########################################## # Defined by vendor # -%define vendor_rel 3 +%define vendor_rel 1 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 +- 2.4.1 + * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.378 retrieving revision 1.379 diff -u -p -r1.378 -r1.379 --- sources 5 Jul 2009 13:00:59 -0000 1.378 +++ sources 12 Jul 2009 15:14:11 -0000 1.379 @@ -1 +1 @@ -176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz +42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz From mtasaka at fedoraproject.org Sun Jul 12 15:14:41 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 12 Jul 2009 15:14:41 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.374, 1.375 jd.spec, 1.436, 1.437 sources, 1.375, 1.376 Message-ID: <20090712151441.A340E11C0095@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24247/devel Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.374 retrieving revision 1.375 diff -u -p -r1.374 -r1.375 --- .cvsignore 5 Jul 2009 13:00:59 -0000 1.374 +++ .cvsignore 12 Jul 2009 15:14:11 -0000 1.375 @@ -1 +1 @@ -jd-2.4.1-rc090705.tgz +jd-2.4.1-090712.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.436 retrieving revision 1.437 diff -u -p -r1.436 -r1.437 --- jd.spec 5 Jul 2009 13:00:59 -0000 1.436 +++ jd.spec 12 Jul 2009 15:14:11 -0000 1.437 @@ -10,16 +10,16 @@ # Defined by upsteam # %define main_ver 2.4.1 -%define strtag rc090705 -%define repoid 40945 +%define strtag 090712 +%define repoid 41293 # Define this if this is pre-version -%define pre_release 1 +%define pre_release 0 ########################################## ########################################## # Defined by vendor # -%define vendor_rel 3 +%define vendor_rel 1 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 +- 2.4.1 + * Sun Jul 5 2009 Mamoru Tasaka - 2.4.1-0.3.rc090705 - 2.4.1 rc 090705 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.375 retrieving revision 1.376 diff -u -p -r1.375 -r1.376 --- sources 5 Jul 2009 13:00:59 -0000 1.375 +++ sources 12 Jul 2009 15:14:11 -0000 1.376 @@ -1 +1 @@ -176d25c7853efd0b156c448aa1340454 jd-2.4.1-rc090705.tgz +42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz From drago01 at fedoraproject.org Sun Jul 12 15:41:34 2009 From: drago01 at fedoraproject.org (drago01) Date: Sun, 12 Jul 2009 15:41:34 +0000 (UTC) Subject: rpms/fsarchiver/devel .cvsignore, 1.9, 1.10 fsarchiver.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090712154134.C1A4911C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/fsarchiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30426 Modified Files: .cvsignore fsarchiver.spec sources Log Message: update to 0.5.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 19 May 2009 19:38:25 -0000 1.9 +++ .cvsignore 12 Jul 2009 15:41:04 -0000 1.10 @@ -1 +1 @@ -fsarchiver-0.5.6.tar.gz +fsarchiver-0.5.8.tar.gz Index: fsarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/devel/fsarchiver.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fsarchiver.spec 19 May 2009 19:38:25 -0000 1.12 +++ fsarchiver.spec 12 Jul 2009 15:41:04 -0000 1.13 @@ -1,5 +1,5 @@ Name: fsarchiver -Version: 0.5.6 +Version: 0.5.8 Release: 1%{?dist} Summary: Safe and flexible file-system backup/deployment tool @@ -10,6 +10,7 @@ Source0: http://downloads.sourceforge. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel => 1.41.4 +BuildRequires: libuuid-devel BuildRequires: e2fsprogs BuildRequires: libattr-devel BuildRequires: openssl-devel @@ -51,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README THANKS NEWS %changelog +* Sun Jul 12 2009 Adel Gadllah - 0.5.8-1 +- Update to 0.5.8 + * Tue May 19 2009 Adel Gadllah - 0.5.6-1 - Update to 0.5.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 19 May 2009 19:38:25 -0000 1.9 +++ sources 12 Jul 2009 15:41:04 -0000 1.10 @@ -1 +1 @@ -237b5ca57811f8adaea69c1a13d5d950 fsarchiver-0.5.6.tar.gz +07ee10a45bcac667d2a3f894fb2f7ab9 fsarchiver-0.5.8.tar.gz From drago01 at fedoraproject.org Sun Jul 12 15:43:54 2009 From: drago01 at fedoraproject.org (drago01) Date: Sun, 12 Jul 2009 15:43:54 +0000 (UTC) Subject: rpms/fsarchiver/F-11 .cvsignore, 1.9, 1.10 fsarchiver.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090712154354.EF39911C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/fsarchiver/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31067 Modified Files: .cvsignore fsarchiver.spec sources Log Message: update to 0.5.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 19 May 2009 19:38:31 -0000 1.9 +++ .cvsignore 12 Jul 2009 15:43:24 -0000 1.10 @@ -1 +1 @@ -fsarchiver-0.5.6.tar.gz +fsarchiver-0.5.8.tar.gz Index: fsarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-11/fsarchiver.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fsarchiver.spec 19 May 2009 19:38:31 -0000 1.12 +++ fsarchiver.spec 12 Jul 2009 15:43:24 -0000 1.13 @@ -1,5 +1,5 @@ Name: fsarchiver -Version: 0.5.6 +Version: 0.5.8 Release: 1%{?dist} Summary: Safe and flexible file-system backup/deployment tool @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README THANKS NEWS %changelog +* Sun Jul 12 2009 Adel Gadllah - 0.5.8-1 +- Update to 0.5.8 + * Tue May 19 2009 Adel Gadllah - 0.5.6-1 - Update to 0.5.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 19 May 2009 19:38:31 -0000 1.9 +++ sources 12 Jul 2009 15:43:24 -0000 1.10 @@ -1 +1 @@ -237b5ca57811f8adaea69c1a13d5d950 fsarchiver-0.5.6.tar.gz +07ee10a45bcac667d2a3f894fb2f7ab9 fsarchiver-0.5.8.tar.gz From drago01 at fedoraproject.org Sun Jul 12 15:44:00 2009 From: drago01 at fedoraproject.org (drago01) Date: Sun, 12 Jul 2009 15:44:00 +0000 (UTC) Subject: rpms/fsarchiver/F-10 .cvsignore, 1.8, 1.9 fsarchiver.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090712154400.9003511C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/fsarchiver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31198 Modified Files: .cvsignore fsarchiver.spec sources Log Message: update to 0.5.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 19 May 2009 19:38:34 -0000 1.8 +++ .cvsignore 12 Jul 2009 15:43:30 -0000 1.9 @@ -1 +1 @@ -fsarchiver-0.5.6.tar.gz +fsarchiver-0.5.8.tar.gz Index: fsarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-10/fsarchiver.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fsarchiver.spec 19 May 2009 19:38:34 -0000 1.8 +++ fsarchiver.spec 12 Jul 2009 15:43:30 -0000 1.9 @@ -1,5 +1,5 @@ Name: fsarchiver -Version: 0.5.6 +Version: 0.5.8 Release: 1%{?dist} Summary: Safe and flexible file-system backup/deployment tool @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README THANKS NEWS %changelog +* Sun Jul 12 2009 Adel Gadllah - 0.5.8-1 +- Update to 0.5.8 + * Tue May 19 2009 Adel Gadllah - 0.5.6-1 - Update to 0.5.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 19 May 2009 19:38:34 -0000 1.8 +++ sources 12 Jul 2009 15:43:30 -0000 1.9 @@ -1 +1 @@ -237b5ca57811f8adaea69c1a13d5d950 fsarchiver-0.5.6.tar.gz +07ee10a45bcac667d2a3f894fb2f7ab9 fsarchiver-0.5.8.tar.gz From jgu at fedoraproject.org Sun Jul 12 15:46:47 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Sun, 12 Jul 2009 15:46:47 +0000 (UTC) Subject: rpms/xdvik/devel xdvi-ptex.map,1.1,1.2 xdvik.spec,1.28,1.29 Message-ID: <20090712154647.C5CC011C0095@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/xdvik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32611 Modified Files: xdvi-ptex.map xdvik.spec Log Message: * Sun Jul 12 2008 Jonathan G. Underwood - 22.84.14-6 - Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) Index: xdvi-ptex.map =================================================================== RCS file: /cvs/extras/rpms/xdvik/devel/xdvi-ptex.map,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xdvi-ptex.map 11 May 2008 00:01:28 -0000 1.1 +++ xdvi-ptex.map 12 Jul 2009 15:46:17 -0000 1.2 @@ -14,59 +14,59 @@ % "JIS-H" "Unicode-H" "Identity-H" % "JIS-V" "Unicode-V" "Identity-V" -rml JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -rmlv JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -gbm JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -gbmv JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -fmin JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -fgoth JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +rml JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +rmlv JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +gbm JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +gbmv JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +fmin JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +fgoth JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf maru JIS-H /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf % UTF package -unijmin-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \UTF font -unijmin-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \UTF font -cidmin-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \CID font -cidmin-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \CID font -hmr JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hmrv JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -unijgoth-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \UTF font -unijgoth-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \UTF font -cidgoth-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \CID font -cidgoth-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \CID font -hkb JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hkbv JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +unijmin-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \UTF font +unijmin-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \UTF font +cidmin-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \CID font +cidmin-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \CID font +hmr JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hmrv JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +unijgoth-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \UTF font +unijgoth-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \UTF font +cidgoth-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \CID font +cidgoth-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \CID font +hkb JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hkbv JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % OTF package -otf-ujmr-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-ujmr-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmr-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmr-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminr-h JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminr-v JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -otf-ujgr-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-ujgr-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgr-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgr-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothr-h JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothr-v JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf - -otf-ujmb-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-ujmb-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmb-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmb-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminb-h JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminb-v JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -otf-ujgb-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-ujgb-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgb-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgb-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothb-h JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothb-v JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +otf-ujmr-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-ujmr-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmr-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmr-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminr-h JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminr-v JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +otf-ujgr-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-ujgr-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgr-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgr-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothr-h JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothr-v JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf + +otf-ujmb-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-ujmb-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmb-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmb-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminb-h JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminb-v JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +otf-ujgb-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-ujgb-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgb-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgb-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothb-h JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothb-v JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf otf-ujmgr-h Unicode-H /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf otf-ujmgr-v Unicode-V /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf Index: xdvik.spec =================================================================== RCS file: /cvs/extras/rpms/xdvik/devel/xdvik.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xdvik.spec 26 Feb 2009 08:23:08 -0000 1.28 +++ xdvik.spec 12 Jul 2009 15:46:17 -0000 1.29 @@ -7,7 +7,7 @@ Summary: An X viewer for DVI files Name: xdvik Version: 22.84.14 -Release: 5%{?dist} +Release: 6%{?dist} Url: http://xdvi.sourceforge.net/ # encodings.c is GPLv2+ and LGPL and MIT # read-mapfile.c tfmload.c are from dvips @@ -245,6 +245,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 12 2008 Jonathan G. Underwood - 22.84.14-6 +- Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) + * Thu Feb 26 2009 Fedora Release Engineering - 22.84.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jgu at fedoraproject.org Sun Jul 12 15:48:09 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Sun, 12 Jul 2009 15:48:09 +0000 (UTC) Subject: rpms/xdvik/devel xdvik.spec,1.29,1.30 Message-ID: <20090712154809.D350F11C0095@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/xdvik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv539 Modified Files: xdvik.spec Log Message: * Sun Jul 12 2009 Jonathan G. Underwood - 22.84.14-6 - Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) Index: xdvik.spec =================================================================== RCS file: /cvs/extras/rpms/xdvik/devel/xdvik.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xdvik.spec 12 Jul 2009 15:46:17 -0000 1.29 +++ xdvik.spec 12 Jul 2009 15:47:39 -0000 1.30 @@ -245,7 +245,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Sun Jul 12 2008 Jonathan G. Underwood - 22.84.14-6 +* Sun Jul 12 2009 Jonathan G. Underwood - 22.84.14-6 - Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) * Thu Feb 26 2009 Fedora Release Engineering - 22.84.14-5 From jgu at fedoraproject.org Sun Jul 12 15:49:25 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Sun, 12 Jul 2009 15:49:25 +0000 (UTC) Subject: rpms/xdvik/F-11 xdvi-ptex.map,1.1,1.2 xdvik.spec,1.28,1.29 Message-ID: <20090712154925.B010E11C0095@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/xdvik/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv885 Modified Files: xdvi-ptex.map xdvik.spec Log Message: * Sun Jul 12 2009 Jonathan G. Underwood - 22.84.14-6 - Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) Index: xdvi-ptex.map =================================================================== RCS file: /cvs/extras/rpms/xdvik/F-11/xdvi-ptex.map,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xdvi-ptex.map 11 May 2008 00:01:28 -0000 1.1 +++ xdvi-ptex.map 12 Jul 2009 15:48:55 -0000 1.2 @@ -14,59 +14,59 @@ % "JIS-H" "Unicode-H" "Identity-H" % "JIS-V" "Unicode-V" "Identity-V" -rml JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -rmlv JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -gbm JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -gbmv JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -fmin JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -fgoth JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +rml JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +rmlv JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +gbm JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +gbmv JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +fmin JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +fgoth JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf maru JIS-H /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf % UTF package -unijmin-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \UTF font -unijmin-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \UTF font -cidmin-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \CID font -cidmin-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf % \CID font -hmr JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hmrv JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -unijgoth-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \UTF font -unijgoth-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \UTF font -cidgoth-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \CID font -cidgoth-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf % \CID font -hkb JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hkbv JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +unijmin-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \UTF font +unijmin-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \UTF font +cidmin-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \CID font +cidmin-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf % \CID font +hmr JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hmrv JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +unijgoth-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \UTF font +unijgoth-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \UTF font +cidgoth-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \CID font +cidgoth-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % \CID font +hkb JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hkbv JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf % OTF package -otf-ujmr-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-ujmr-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmr-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmr-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminr-h JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminr-v JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -otf-ujgr-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-ujgr-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgr-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgr-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothr-h JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothr-v JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf - -otf-ujmb-h Unicode-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-ujmb-v Unicode-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmb-h Identity-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -otf-cjmb-v Identity-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminb-h JIS-H /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf -hminb-v JIS-V /usr/share/fonts/sazanami-fonts-mincho/sazanami-mincho.ttf - -otf-ujgb-h Unicode-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-ujgb-v Unicode-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgb-h Identity-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -otf-cjgb-v Identity-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothb-h JIS-H /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf -hgothb-v JIS-V /usr/share/fonts/sazanami-fonts-gothic/sazanami-gothic.ttf +otf-ujmr-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-ujmr-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmr-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmr-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminr-h JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminr-v JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +otf-ujgr-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-ujgr-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgr-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgr-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothr-h JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothr-v JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf + +otf-ujmb-h Unicode-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-ujmb-v Unicode-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmb-h Identity-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +otf-cjmb-v Identity-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminb-h JIS-H /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf +hminb-v JIS-V /usr/share/fonts/sazanami/mincho/sazanami-mincho.ttf + +otf-ujgb-h Unicode-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-ujgb-v Unicode-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgb-h Identity-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +otf-cjgb-v Identity-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothb-h JIS-H /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf +hgothb-v JIS-V /usr/share/fonts/sazanami/gothic/sazanami-gothic.ttf otf-ujmgr-h Unicode-H /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf otf-ujmgr-v Unicode-V /usr/local/share/texmf/dvipdfm/CIDFont/HiraMaruPro-W4.otf Index: xdvik.spec =================================================================== RCS file: /cvs/extras/rpms/xdvik/F-11/xdvik.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xdvik.spec 26 Feb 2009 08:23:08 -0000 1.28 +++ xdvik.spec 12 Jul 2009 15:48:55 -0000 1.29 @@ -7,7 +7,7 @@ Summary: An X viewer for DVI files Name: xdvik Version: 22.84.14 -Release: 5%{?dist} +Release: 6%{?dist} Url: http://xdvi.sourceforge.net/ # encodings.c is GPLv2+ and LGPL and MIT # read-mapfile.c tfmload.c are from dvips @@ -245,6 +245,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 12 2009 Jonathan G. Underwood - 22.84.14-6 +- Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) + * Thu Feb 26 2009 Fedora Release Engineering - 22.84.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From drago01 at fedoraproject.org Sun Jul 12 15:53:02 2009 From: drago01 at fedoraproject.org (drago01) Date: Sun, 12 Jul 2009 15:53:02 +0000 (UTC) Subject: rpms/fsarchiver/devel fsarchiver.spec,1.13,1.14 Message-ID: <20090712155302.1268D11C0095@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/fsarchiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1885 Modified Files: fsarchiver.spec Log Message: fix buildrequires Index: fsarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/devel/fsarchiver.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fsarchiver.spec 12 Jul 2009 15:41:04 -0000 1.13 +++ fsarchiver.spec 12 Jul 2009 15:53:01 -0000 1.14 @@ -1,6 +1,6 @@ Name: fsarchiver Version: 0.5.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Safe and flexible file-system backup/deployment tool Group: Applications/Archiving @@ -11,6 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: e2fsprogs-devel => 1.41.4 BuildRequires: libuuid-devel +BuildRequires: libblkid-devel BuildRequires: e2fsprogs BuildRequires: libattr-devel BuildRequires: openssl-devel @@ -52,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README THANKS NEWS %changelog +* Sun Jul 12 2009 Adel Gadllah - 0.5.8-2 +- BR libblkid-devel + * Sun Jul 12 2009 Adel Gadllah - 0.5.8-1 - Update to 0.5.8 From remi at fedoraproject.org Sun Jul 12 16:47:14 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sun, 12 Jul 2009 16:47:14 +0000 (UTC) Subject: rpms/php/devel php-5.2.5-systzdata.patch, 1.3, 1.4 php-5.3.0-easter.patch, NONE, 1.1 php-5.3.0-gnusrc.patch, NONE, 1.1 php-5.3.0-install.patch, NONE, 1.1 php-5.3.0-oci8conf.patch, NONE, 1.1 php-5.3.0-phpize64.patch, NONE, 1.1 php-5.3.0-recode.patch, NONE, 1.1 php-5.3.0-systzdata.patch, NONE, 1.1 .cvsignore, 1.37, 1.38 php.ini, 1.8, 1.9 php.spec, 1.176, 1.177 sources, 1.40, 1.41 php-5.2.10-gnusrc.patch, 1.1, NONE php-5.2.4-easter.patch, 1.1, NONE php-5.2.8-install.patch, 1.1, NONE php-5.2.8-phpize64.patch, 1.1, NONE php-5.2.8-recode.patch, 1.1, NONE Message-ID: <20090712164714.E5B6311C0095@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15705 Modified Files: .cvsignore php.ini php.spec sources Added Files: php-5.2.5-systzdata.patch php-5.3.0-easter.patch php-5.3.0-gnusrc.patch php-5.3.0-install.patch php-5.3.0-oci8conf.patch php-5.3.0-phpize64.patch php-5.3.0-recode.patch php-5.3.0-systzdata.patch Removed Files: php-5.2.10-gnusrc.patch php-5.2.4-easter.patch php-5.2.8-install.patch php-5.2.8-phpize64.patch php-5.2.8-recode.patch Log Message: Update to PHP 5.3.0 - New API/ABI php-5.2.5-systzdata.patch: Index: php-5.2.5-systzdata.patch =================================================================== RCS file: php-5.2.5-systzdata.patch diff -N php-5.2.5-systzdata.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ php-5.2.5-systzdata.patch 12 Jul 2009 16:47:12 -0000 1.4 @@ -0,0 +1,263 @@ + +Add support for use of the system timezone database, rather +than embedding a copy. Discussed upstream but was not desired. + +History: +r3: fix a crash if /usr/share/zoneinfo doesn't exist (Raphael Geissert) +r2: add filesystem trawl to set up name alias index +r1: initial revision + +--- php-5.2.5/ext/date/lib/timelib.m4.systzdata ++++ php-5.2.5/ext/date/lib/timelib.m4 +@@ -78,3 +78,17 @@ stdlib.h + + dnl Check for strtoll, atoll + AC_CHECK_FUNCS(strtoll atoll strftime) ++ ++PHP_ARG_WITH(system-tzdata, for use of system timezone data, ++[ --with-system-tzdata[=DIR] to specify use of system timezone data], ++no, no) ++ ++if test "$PHP_SYSTEM_TZDATA" != "no"; then ++ AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) ++ ++ if test "$PHP_SYSTEM_TZDATA" != "yes"; then ++ AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", ++ [Define for location of system timezone data]) ++ fi ++fi ++ +--- php-5.2.5/ext/date/lib/parse_tz.c.systzdata ++++ php-5.2.5/ext/date/lib/parse_tz.c +@@ -20,6 +20,16 @@ + + #include "timelib.h" + ++#ifdef HAVE_SYSTEM_TZDATA ++#include ++#include ++#include ++#include ++#include ++ ++#include "php_scandir.h" ++#endif ++ + #include + + #ifdef HAVE_LOCALE_H +@@ -31,7 +41,10 @@ + #else + #include + #endif ++ ++#ifndef HAVE_SYSTEM_TZDATA + #include "timezonedb.h" ++#endif + + #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) + # if defined(__LITTLE_ENDIAN__) +@@ -206,6 +219,195 @@ void timelib_dump_tzinfo(timelib_tzinfo + } + } + ++#ifdef HAVE_SYSTEM_TZDATA ++ ++#ifdef HAVE_SYSTEM_TZDATA_PREFIX ++#define ZONEINFO_PREFIX HAVE_SYSTEM_TZDATA_PREFIX ++#else ++#define ZONEINFO_PREFIX "/usr/share/zoneinfo" ++#endif ++ ++static const timelib_tzdb *timezonedb_system = NULL; ++ ++/* Filter out some non-tzdata files and the posix/right databases, if ++ * present. */ ++static int index_filter(const struct dirent *ent) ++{ ++ return strcmp(ent->d_name, ".") != 0 ++ && strcmp(ent->d_name, "..") != 0 ++ && strcmp(ent->d_name, "posix") != 0 ++ && strcmp(ent->d_name, "posixrules") != 0 ++ && strcmp(ent->d_name, "right") != 0 ++ && strstr(ent->d_name, ".tab") == NULL; ++} ++ ++/* Create the zone identifier index by trawling the filesystem. */ ++static void create_zone_index(timelib_tzdb *db) ++{ ++ size_t dirstack_size, dirstack_top; ++ size_t index_size, index_next; ++ timelib_tzdb_index_entry *db_index; ++ char **dirstack; ++ ++ /* LIFO stack to hold directory entries to scan; each slot is a ++ * directory name relative to the zoneinfo prefix. */ ++ dirstack_size = 32; ++ dirstack = malloc(dirstack_size * sizeof *dirstack); ++ dirstack_top = 1; ++ dirstack[0] = strdup(""); ++ ++ /* Index array. */ ++ index_size = 64; ++ db_index = malloc(index_size * sizeof *db_index); ++ index_next = 0; ++ ++ do { ++ struct dirent **ents; ++ char name[PATH_MAX], *top; ++ int count; ++ ++ /* Pop the top stack entry, and iterate through its contents. */ ++ top = dirstack[--dirstack_top]; ++ snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s", top); ++ ++ count = php_scandir(name, &ents, index_filter, php_alphasort); ++ ++ while (count > 0) { ++ struct stat st; ++ const char *leaf = ents[count - 1]->d_name; ++ ++ snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s/%s", ++ top, leaf); ++ ++ if (strlen(name) && stat(name, &st) == 0) { ++ /* Name, relative to the zoneinfo prefix. */ ++ const char *root = top; ++ ++ if (root[0] == '/') root++; ++ ++ snprintf(name, sizeof name, "%s%s%s", root, ++ *root ? "/": "", leaf); ++ ++ if (S_ISDIR(st.st_mode)) { ++ if (dirstack_top == dirstack_size) { ++ dirstack_size *= 2; ++ dirstack = realloc(dirstack, ++ dirstack_size * sizeof *dirstack); ++ } ++ dirstack[dirstack_top++] = strdup(name); ++ } ++ else { ++ if (index_next == index_size) { ++ index_size *= 2; ++ db_index = realloc(db_index, ++ index_size * sizeof *db_index); ++ } ++ ++ db_index[index_next].id = strdup(name); ++ db_index[index_next++].pos = 0; ++ } ++ } ++ ++ free(ents[--count]); ++ } ++ ++ if (count != -1) free(ents); ++ free(top); ++ } while (dirstack_top); ++ ++ db->index = db_index; ++ db->index_size = index_next; ++ ++ free(dirstack); ++} ++ ++/* Return the mmap()ed tzfile if found, else NULL. On success, the ++ * length of the mapped data is placed in *length. */ ++static char *map_tzfile(const char *timezone, size_t *length) ++{ ++ char fname[PATH_MAX]; ++ struct stat st; ++ char *p; ++ int fd; ++ ++ if (strstr(timezone, "..") != NULL) { ++ return NULL; ++ } ++ ++ snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); ++ ++ fd = open(fname, O_RDONLY); ++ if (fd == -1) { ++ return NULL; ++ } else if (fstat(fd, &st) != 0 || st.st_size < 21) { ++ close(fd); ++ return NULL; ++ } ++ ++ *length = st.st_size; ++ p = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); ++ close(fd); ++ ++ return p != MAP_FAILED ? p : NULL; ++} ++ ++const timelib_tzdb *timelib_builtin_db(void) ++{ ++ if (timezonedb_system == NULL) { ++ timelib_tzdb *tmp = malloc(sizeof *tmp); ++ ++ tmp->version = "0.system"; ++ tmp->data = NULL; ++ create_zone_index(tmp); ++ timezonedb_system = tmp; ++ } ++ ++ return timezonedb_system; ++} ++ ++const timelib_tzdb_index_entry *timelib_timezone_builtin_identifiers_list(int *count) ++{ ++ *count = timezonedb_system->index_size; ++ return timezonedb_system->index; ++} ++ ++int timelib_timezone_id_is_valid(char *timezone, const timelib_tzdb *tzdb) ++{ ++ char fname[PATH_MAX]; ++ ++ if (strstr(timezone, "..") != NULL) { ++ return 0; ++ } ++ ++ snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); ++ ++ return access(fname, R_OK) == 0 ? 1 : 0; ++} ++ ++timelib_tzinfo *timelib_parse_tzfile(char *timezone, const timelib_tzdb *tzdb) ++{ ++ char *tzf, *orig; ++ timelib_tzinfo *tmp; ++ size_t len; ++ ++ orig = map_tzfile(timezone, &len); ++ if (orig == NULL) { ++ return NULL; ++ } ++ ++ tmp = timelib_tzinfo_ctor(timezone); ++ ++ tzf = orig + 20; ++ read_header(&tzf, tmp); ++ read_transistions(&tzf, tmp); ++ read_types(&tzf, tmp); ++ ++ munmap(orig, len); ++ ++ return tmp; ++} ++#else /* !HAVE_SYSTEM_TZDATA */ ++ + static int seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) + { + int left = 0, right = tzdb->index_size - 1; +@@ -279,6 +481,7 @@ timelib_tzinfo *timelib_parse_tzfile(cha + + return tmp; + } ++#endif + + static ttinfo* fetch_timezone_offset(timelib_tzinfo *tz, timelib_sll ts, timelib_sll *transition_time) + { php-5.3.0-easter.patch: --- NEW FILE php-5.3.0-easter.patch --- diff -up php-5.3.0/ext/standard/basic_functions.c.easter php-5.3.0/ext/standard/basic_functions.c --- php-5.3.0/ext/standard/basic_functions.c.easter 2009-06-20 08:07:35.000000000 +0200 +++ php-5.3.0/ext/standard/basic_functions.c 2009-07-12 13:46:08.000000000 +0200 @@ -1547,9 +1547,6 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO(arginfo_php_real_logo_guid, 0) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(arginfo_php_egg_logo_guid, 0) -ZEND_END_ARG_INFO() - ZEND_BEGIN_ARG_INFO(arginfo_zend_logo_guid, 0) ZEND_END_ARG_INFO() @@ -2695,7 +2692,6 @@ const zend_function_entry basic_function PHP_FE(phpcredits, arginfo_phpcredits) PHP_FE(php_logo_guid, arginfo_php_logo_guid) PHP_FE(php_real_logo_guid, arginfo_php_real_logo_guid) - PHP_FE(php_egg_logo_guid, arginfo_php_egg_logo_guid) PHP_FE(zend_logo_guid, arginfo_zend_logo_guid) PHP_FE(php_sapi_name, arginfo_php_sapi_name) PHP_FE(php_uname, arginfo_php_uname) diff -up php-5.3.0/ext/standard/info.c.easter php-5.3.0/ext/standard/info.c --- php-5.3.0/ext/standard/info.c.easter 2009-01-17 03:05:13.000000000 +0100 +++ php-5.3.0/ext/standard/info.c 2009-07-12 13:46:11.000000000 +0200 @@ -1268,21 +1268,7 @@ PHP_FUNCTION(phpcredits) */ PHPAPI char *php_logo_guid(void) { - char *logo_guid; - - time_t the_time; - struct tm *ta, tmbuf; - - the_time = time(NULL); - ta = php_localtime_r(&the_time, &tmbuf); - - if (ta && (ta->tm_mon==3) && (ta->tm_mday==1)) { - logo_guid = PHP_EGG_LOGO_GUID; - } else { - logo_guid = PHP_LOGO_GUID; - } - - return estrdup(logo_guid); + return estrdup(PHP_LOGO_GUID); } /* }}} */ @@ -1313,18 +1299,6 @@ PHP_FUNCTION(php_real_logo_guid) } /* }}} */ -/* {{{ proto string php_egg_logo_guid(void) - Return the special ID used to request the PHP logo in phpinfo screens*/ -PHP_FUNCTION(php_egg_logo_guid) -{ - if (zend_parse_parameters_none() == FAILURE) { - return; - } - - RETURN_STRINGL(PHP_EGG_LOGO_GUID, sizeof(PHP_EGG_LOGO_GUID)-1, 1); -} -/* }}} */ - /* {{{ proto string zend_logo_guid(void) Return the special ID used to request the Zend logo in phpinfo screens*/ PHP_FUNCTION(zend_logo_guid) diff -up php-5.3.0/ext/standard/info.h.easter php-5.3.0/ext/standard/info.h --- php-5.3.0/ext/standard/info.h.easter 2008-12-31 12:15:45.000000000 +0100 +++ php-5.3.0/ext/standard/info.h 2009-07-12 13:45:34.000000000 +0200 @@ -51,7 +51,6 @@ #endif /* HAVE_CREDITS_DEFS */ #define PHP_LOGO_GUID "PHPE9568F34-D428-11d2-A769-00AA001ACF42" -#define PHP_EGG_LOGO_GUID "PHPE9568F36-D428-11d2-A769-00AA001ACF42" #define ZEND_LOGO_GUID "PHPE9568F35-D428-11d2-A769-00AA001ACF42" #define PHP_CREDITS_GUID "PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000" @@ -62,7 +61,6 @@ PHP_FUNCTION(phpcredits); PHP_FUNCTION(php_logo_guid); PHP_FUNCTION(php_real_logo_guid); PHP_FUNCTION(zend_logo_guid); -PHP_FUNCTION(php_egg_logo_guid); PHP_FUNCTION(php_sapi_name); PHP_FUNCTION(php_uname); PHP_FUNCTION(php_ini_scanned_files); diff -up php-5.3.0/main/logos.h.easter php-5.3.0/main/logos.h --- php-5.3.0/main/logos.h.easter 2008-12-31 12:15:47.000000000 +0100 +++ php-5.3.0/main/logos.h 2009-07-12 13:46:15.000000000 +0200 @@ -492,589 +492,3 @@ static const unsigned char php_logo[] = 21, 116, 187, 251, 221, 240, 142, 119, 188, 3, 1, 0, 59, 0 }; -static const unsigned char php_egg_logo[] = { - 71, 73, 70, 56, 57, 97, 120, 0, 67, 0, - 231, 255, 0, 18, 25, 33, 32, 30, 34, 28, - 33, 44, 15, 35, 71, 6, 37, 85, 37, 40, - 47, 34, 41, 53, 41, 40, 43, 9, 47, 109, - 30, 45, 68, 21, 48, 84, 51, 46, 55, 43, - 49, 59, 31, 59, 98, 15, 61, 128, 58, 55, - 69, 50, 57, 74, 0, 66, 144, 56, 58, 60, - 54, 59, 71, 32, 66, 113, 60, 65, 67, 63, - 65, 84, 63, 68, 79, 28, 79, 145, 15, 82, - 162, 75, 72, 98, 68, 78, 86, 74, 77, 88, - 50, 82, 122, 41, 85, 134, 76, 78, 108, 70, - 83, 101, 5, 94, 190, 0, 95, 197, 86, 80, - 101, 28, 92, 159, 80, 84, 96, 83, 83, 115, - 81, 87, 89, 22, 97, 183, 86, 88, 85, 0, - 102, 210, 8, 101, 204, 24, 100, 177, 85, 90, - 127, 35, 101, 169, 42, 100, 159, 88, 92, 103, - 0, 107, 216, 69, 95, 132, 0, 108, 210, 84, - 93, 112, 94, 90, 117, 18, 105, 201, 96, 92, - 105, 89, 96, 98, 94, 93, 135, 94, 94, 126, - 30, 106, 210, 7, 112, 222, 33, 108, 198, 16, - 114, 217, 27, 113, 198, 24, 113, 209, 59, 108, - 159, 96, 100, 138, 0, 120, 229, 44, 112, 180, - 49, 112, 171, 71, 108, 148, 99, 104, 115, 90, - 106, 125, 27, 115, 232, 100, 102, 147, 42, 115, - 192, 86, 110, 137, 9, 123, 239, 106, 108, 105, - 105, 105, 138, 33, 118, 228, 12, 125, 227, 48, - 117, 208, 16, 126, 222, 37, 120, 224, 20, 125, - 235, 35, 123, 213, 50, 121, 190, 43, 123, 206, - 40, 123, 220, 105, 110, 160, 59, 122, 182, 78, - 119, 158, 44, 122, 233, 3, 134, 250, 112, 112, - 151, 73, 123, 175, 113, 118, 114, 51, 128, 205, - 34, 129, 246, 11, 136, 245, 34, 130, 240, 113, - 117, 149, 111, 116, 166, 111, 119, 141, 48, 130, - 221, 38, 132, 235, 53, 130, 215, 97, 124, 146, - 116, 122, 124, 117, 121, 131, 54, 130, 229, 41, - 135, 232, 68, 130, 223, 46, 135, 246, 65, 134, - 202, 42, 137, 241, 75, 131, 205, 124, 121, 161, - 101, 125, 191, 86, 128, 210, 121, 122, 169, 105, - 128, 157, 121, 122, 180, 114, 124, 181, 94, 128, - 201, 81, 134, 185, 46, 138, 252, 76, 135, 195, - 34, 142, 252, 62, 137, 229, 63, 138, 217, 33, - 144, 247, 58, 139, 223, 56, 141, 246, 54, 143, - 234, 57, 143, 241, 102, 135, 193, 129, 130, 176, - 122, 136, 144, 46, 148, 252, 45, 149, 246, 118, - 133, 191, 65, 146, 231, 73, 146, 216, 129, 133, - 185, 135, 135, 156, 69, 148, 226, 44, 153, 255, - 94, 143, 216, 132, 136, 175, 88, 146, 207, 137, - 139, 136, 93, 146, 197, 95, 147, 188, 137, 139, - 150, 104, 146, 178, 122, 143, 172, 135, 139, 191, - 57, 156, 254, 67, 154, 245, 70, 154, 239, 134, - 141, 180, 117, 145, 201, 120, 146, 190, 79, 154, - 233, 140, 141, 188, 129, 144, 194, 142, 142, 176, - 137, 147, 156, 88, 155, 222, 82, 157, 230, 93, - 157, 218, 66, 162, 253, 100, 157, 210, 77, 161, - 247, 55, 168, 255, 81, 162, 241, 148, 148, 195, - 145, 149, 202, 127, 156, 204, 77, 166, 255, 142, - 155, 177, 141, 153, 200, 123, 160, 193, 73, 171, - 255, 93, 167, 240, 96, 167, 234, 152, 158, 160, - 101, 167, 228, 119, 164, 206, 155, 158, 171, 110, - 167, 219, 156, 155, 203, 89, 172, 252, 128, 164, - 219, 151, 163, 174, 81, 178, 255, 158, 162, 202, - 102, 175, 249, 93, 178, 251, 108, 175, 237, 103, - 177, 244, 166, 168, 165, 97, 182, 255, 87, 185, - 255, 149, 174, 216, 125, 181, 235, 110, 185, 252, - 117, 183, 254, 171, 172, 209, 166, 175, 197, 103, - 190, 255, 174, 176, 189, 140, 183, 221, 128, 184, - 248, 120, 187, 249, 179, 180, 184, 115, 193, 253, - 170, 183, 193, 174, 181, 215, 107, 197, 255, 135, - 191, 246, 151, 192, 219, 187, 183, 213, 128, 197, - 253, 121, 202, 255, 147, 198, 239, 188, 191, 219, - 148, 200, 252, 192, 193, 197, 134, 205, 254, 171, - 199, 236, 183, 199, 218, 163, 207, 251, 142, 213, - 255, 158, 211, 253, 195, 205, 217, 166, 211, 245, - 205, 204, 228, 153, 218, 255, 190, 210, 236, 186, - 212, 231, 177, 213, 248, 162, 224, 255, 188, 221, - 250, 214, 219, 221, 214, 219, 233, 174, 229, 254, - 198, 225, 247, 209, 226, 248, 186, 233, 251, 227, - 230, 239, 225, 241, 252, 253, 255, 252, 255, 255, - 255, 33, 249, 4, 1, 10, 0, 255, 0, 44, - 0, 0, 0, 0, 120, 0, 67, 0, 0, 8, - 254, 0, 255, 9, 28, 72, 176, 160, 193, 131, - 8, 19, 42, 92, 200, 176, 161, 195, 135, 16, - 35, 74, 156, 72, 177, 162, 197, 139, 22, 131, - 105, 12, 134, 177, 163, 199, 143, 193, 164, 73, - 227, 38, 141, 28, 56, 112, 228, 76, 146, 20, - 41, 205, 152, 75, 99, 183, 100, 201, 50, 101, - 202, 147, 77, 79, 166, 102, 205, 250, 200, 19, - 100, 73, 114, 239, 238, 221, 123, 71, 148, 104, - 202, 163, 224, 86, 138, 124, 25, 115, 166, 205, - 72, 145, 246, 72, 221, 195, 39, 207, 30, 69, - 158, 118, 246, 220, 202, 208, 24, 184, 160, 252, - 248, 9, 29, 59, 212, 100, 75, 99, 53, 159, - 66, 93, 203, 182, 109, 84, 169, 124, 248, 156, - 57, 163, 165, 174, 150, 60, 138, 76, 113, 221, - 251, 207, 24, 183, 119, 97, 3, 135, 125, 71, - 78, 90, 76, 62, 142, 70, 141, 18, 53, 109, - 170, 227, 199, 144, 35, 75, 157, 91, 87, 137, - 229, 28, 74, 190, 228, 229, 139, 209, 43, 96, - 193, 247, 10, 203, 114, 212, 167, 82, 47, 93, - 197, 138, 81, 163, 166, 173, 19, 47, 201, 176, - 99, 59, 166, 171, 36, 135, 237, 22, 45, 114, - 216, 209, 203, 25, 98, 176, 191, 66, 195, 134, - 54, 230, 233, 150, 179, 100, 197, 106, 181, 90, - 158, 171, 57, 179, 110, 231, 124, 185, 145, 77, - 157, 186, 150, 218, 45, 76, 104, 111, 145, 71, - 86, 239, 133, 198, 200, 254, 145, 189, 199, 205, - 212, 212, 115, 244, 232, 157, 107, 86, 172, 185, - 234, 92, 197, 154, 137, 11, 231, 11, 77, 245, - 251, 178, 207, 40, 201, 254, 225, 131, 134, 39, - 138, 124, 103, 80, 73, 68, 13, 37, 141, 39, - 144, 213, 115, 14, 60, 235, 116, 211, 12, 123, - 197, 136, 67, 141, 106, 226, 156, 51, 78, 16, - 92, 208, 194, 7, 126, 28, 70, 166, 159, 9, - 26, 132, 104, 130, 29, 2, 254, 67, 32, 81, - 224, 200, 18, 91, 56, 240, 208, 35, 78, 51, - 238, 49, 40, 223, 58, 240, 88, 99, 132, 31, - 207, 168, 131, 14, 55, 206, 56, 115, 203, 41, - 167, 172, 229, 73, 36, 158, 196, 133, 216, 83, - 29, 58, 166, 69, 11, 26, 88, 96, 129, 6, - 95, 112, 230, 213, 81, 210, 188, 21, 27, 59, - 208, 208, 179, 14, 123, 205, 81, 227, 96, 55, - 235, 208, 227, 14, 23, 126, 244, 162, 204, 49, - 200, 64, 3, 13, 51, 194, 232, 162, 139, 50, - 105, 106, 131, 13, 54, 225, 132, 227, 205, 157, - 207, 96, 243, 204, 48, 195, 244, 72, 28, 126, - 103, 48, 233, 164, 6, 36, 246, 20, 210, 81, - 198, 224, 87, 143, 48, 12, 78, 8, 75, 43, - 242, 21, 3, 38, 60, 227, 116, 224, 2, 22, - 135, 32, 162, 41, 33, 112, 208, 129, 72, 35, - 135, 8, 242, 72, 40, 163, 150, 82, 202, 42, - 186, 172, 178, 203, 46, 169, 170, 154, 76, 50, - 254, 123, 158, 194, 97, 14, 22, 60, 240, 192, - 7, 188, 117, 228, 23, 74, 198, 88, 41, 219, - 56, 189, 36, 19, 203, 57, 235, 80, 147, 11, - 44, 176, 20, 211, 96, 51, 240, 192, 195, 14, - 5, 36, 88, 129, 8, 33, 116, 200, 81, 198, - 181, 101, 208, 1, 199, 27, 220, 110, 59, 69, - 22, 130, 20, 82, 200, 35, 165, 76, 34, 110, - 33, 147, 64, 162, 174, 42, 192, 200, 122, 223, - 25, 38, 216, 186, 192, 19, 24, 133, 52, 82, - 149, 247, 161, 179, 203, 35, 136, 8, 243, 72, - 57, 244, 80, 179, 220, 39, 185, 192, 163, 77, - 55, 244, 236, 227, 14, 5, 17, 0, 65, 7, - 25, 101, 120, 81, 197, 196, 216, 82, 97, 49, - 21, 81, 68, 145, 69, 22, 105, 116, 236, 113, - 26, 161, 148, 59, 136, 24, 98, 64, 210, 203, - 40, 28, 106, 161, 193, 2, 11, 88, 144, 171, - 68, 246, 74, 163, 226, 125, 207, 156, 105, 8, - 25, 212, 54, 218, 202, 39, 4, 227, 115, 142, - 54, 233, 177, 211, 65, 4, 51, 84, 113, 109, - 21, 77, 52, 1, 69, 23, 19, 15, 1, 197, - 16, 84, 12, 17, 197, 182, 112, 8, 146, 198, - 20, 86, 147, 139, 204, 49, 169, 78, 50, 200, - 32, 144, 56, 210, 97, 14, 15, 176, 28, 37, - 204, 198, 180, 228, 107, 108, 158, 60, 19, 202, - 43, 159, 200, 225, 133, 28, 175, 224, 3, 15, - 50, 176, 80, 2, 75, 254, 51, 94, 34, 140, - 143, 208, 68, 119, 129, 45, 210, 93, 48, 13, - 197, 210, 60, 240, 0, 133, 15, 111, 104, 138, - 8, 28, 27, 79, 1, 199, 35, 163, 234, 18, - 139, 155, 233, 206, 177, 97, 202, 22, 28, 112, - 128, 14, 17, 5, 227, 210, 204, 213, 69, 178, - 11, 40, 160, 16, 194, 8, 33, 134, 52, 17, - 142, 122, 197, 236, 156, 11, 51, 185, 52, 3, - 244, 62, 128, 207, 16, 49, 182, 93, 36, 125, - 120, 23, 135, 67, 193, 131, 15, 112, 148, 147, - 143, 58, 216, 8, 3, 249, 198, 89, 192, 1, - 199, 33, 143, 196, 18, 203, 42, 144, 104, 222, - 33, 31, 26, 120, 62, 194, 67, 162, 255, 121, - 159, 35, 149, 104, 58, 135, 21, 100, 64, 92, - 69, 139, 198, 238, 156, 236, 222, 226, 208, 131, - 207, 56, 13, 56, 80, 116, 19, 215, 54, 81, - 197, 24, 73, 23, 126, 248, 16, 62, 248, 144, - 133, 62, 110, 112, 194, 50, 202, 113, 8, 231, - 101, 193, 7, 64, 152, 220, 184, 30, 129, 42, - 93, 168, 66, 108, 29, 50, 129, 231, 52, 208, - 16, 89, 220, 162, 87, 248, 137, 68, 29, 178, - 160, 6, 53, 188, 225, 5, 85, 176, 86, 21, - 232, 1, 15, 113, 228, 98, 57, 173, 104, 143, - 151, 224, 241, 190, 248, 249, 160, 126, 114, 136, - 161, 181, 202, 16, 53, 167, 13, 97, 120, 105, - 184, 7, 7, 12, 224, 4, 111, 192, 65, 114, - 254, 144, 3, 66, 26, 14, 145, 6, 43, 88, - 1, 11, 107, 128, 196, 42, 86, 1, 65, 14, - 181, 224, 0, 1, 160, 160, 66, 100, 114, 139, - 181, 197, 230, 22, 117, 152, 194, 20, 162, 160, - 134, 42, 144, 64, 10, 248, 163, 67, 122, 214, - 17, 187, 79, 232, 45, 23, 226, 16, 7, 62, - 240, 97, 13, 5, 16, 109, 12, 215, 98, 4, - 207, 64, 193, 51, 77, 53, 66, 83, 84, 240, - 65, 26, 218, 113, 1, 3, 180, 1, 27, 144, - 19, 196, 183, 128, 128, 196, 66, 132, 98, 13, - 63, 72, 228, 15, 176, 32, 134, 68, 52, 241, - 62, 45, 8, 64, 0, 106, 144, 144, 89, 152, - 66, 22, 8, 186, 207, 40, 214, 32, 8, 107, - 216, 194, 5, 67, 144, 218, 15, 134, 208, 5, - 68, 184, 15, 30, 205, 120, 148, 25, 97, 1, - 157, 125, 208, 227, 25, 3, 136, 64, 12, 232, - 215, 136, 121, 200, 35, 31, 249, 168, 71, 61, - 242, 33, 143, 118, 108, 67, 30, 208, 128, 195, - 32, 218, 49, 1, 1, 180, 1, 121, 199, 120, - 197, 35, 136, 184, 134, 102, 146, 11, 137, 88, - 80, 228, 37, 104, 145, 36, 13, 72, 178, 80, - 5, 153, 5, 78, 50, 73, 157, 72, 92, 98, - 13, 135, 208, 135, 63, 252, 129, 132, 40, 116, - 193, 105, 192, 11, 5, 62, 92, 217, 140, 157, - 49, 162, 21, 104, 60, 199, 62, 224, 225, 10, - 2, 68, 128, 10, 114, 254, 32, 196, 49, 178, - 113, 129, 11, 112, 224, 159, 37, 224, 192, 6, - 46, 176, 129, 108, 148, 99, 21, 213, 40, 230, - 1, 78, 128, 3, 55, 240, 34, 29, 216, 8, - 197, 36, 122, 81, 10, 114, 61, 2, 93, 107, - 136, 230, 28, 230, 96, 13, 43, 202, 230, 1, - 1, 56, 128, 119, 10, 146, 150, 251, 240, 65, - 21, 88, 200, 194, 60, 198, 233, 143, 84, 164, - 193, 104, 72, 43, 195, 49, 214, 8, 143, 216, - 49, 226, 157, 197, 208, 70, 251, 216, 193, 5, - 2, 100, 160, 10, 129, 64, 4, 54, 54, 81, - 2, 24, 148, 128, 6, 48, 160, 193, 81, 3, - 202, 0, 115, 120, 99, 19, 19, 40, 128, 1, - 74, 208, 79, 6, 20, 32, 12, 222, 8, 133, - 45, 136, 241, 141, 103, 232, 194, 84, 143, 72, - 195, 15, 196, 112, 9, 87, 248, 226, 22, 28, - 58, 3, 20, 183, 71, 144, 89, 16, 201, 163, - 145, 185, 68, 74, 7, 145, 130, 106, 140, 83, - 15, 136, 40, 131, 181, 154, 48, 6, 111, 140, - 145, 61, 173, 72, 214, 131, 210, 83, 41, 2, - 160, 128, 12, 140, 104, 68, 57, 220, 80, 212, - 106, 224, 50, 151, 250, 248, 69, 9, 24, 208, - 6, 126, 28, 225, 2, 1, 32, 70, 53, 126, - 193, 88, 1, 0, 96, 17, 165, 96, 2, 65, - 113, 16, 6, 76, 96, 98, 27, 202, 16, 43, - 89, 51, 193, 10, 82, 108, 174, 58, 38, 144, - 254, 228, 203, 134, 4, 87, 200, 220, 1, 11, - 64, 160, 66, 16, 12, 80, 128, 118, 216, 195, - 5, 141, 40, 31, 182, 216, 145, 30, 23, 181, - 135, 149, 212, 8, 19, 60, 188, 145, 0, 4, - 100, 225, 19, 59, 155, 7, 13, 78, 80, 130, - 109, 60, 67, 24, 141, 128, 67, 33, 204, 81, - 130, 2, 84, 224, 30, 37, 152, 128, 4, 242, - 113, 167, 121, 216, 162, 152, 39, 120, 6, 8, - 4, 192, 128, 13, 112, 160, 159, 6, 192, 68, - 41, 122, 240, 131, 65, 0, 2, 16, 115, 48, - 171, 51, 238, 3, 69, 41, 254, 195, 173, 181, - 125, 12, 31, 122, 0, 132, 25, 248, 192, 3, - 211, 56, 0, 13, 54, 145, 5, 50, 236, 149, - 126, 236, 104, 17, 60, 186, 113, 44, 73, 73, - 120, 29, 174, 136, 37, 28, 102, 215, 10, 121, - 208, 192, 13, 71, 72, 135, 50, 38, 22, 133, - 66, 164, 163, 187, 12, 216, 6, 7, 24, 112, - 132, 114, 192, 33, 13, 144, 248, 69, 1, 0, - 112, 2, 98, 126, 54, 30, 211, 32, 6, 26, - 120, 11, 12, 32, 244, 64, 12, 115, 240, 195, - 18, 174, 0, 8, 87, 144, 226, 20, 164, 147, - 76, 36, 3, 48, 82, 243, 4, 120, 42, 3, - 182, 193, 10, 86, 48, 3, 18, 20, 32, 0, - 2, 32, 129, 26, 200, 80, 133, 194, 53, 129, - 12, 236, 160, 17, 60, 210, 7, 11, 113, 172, - 227, 204, 225, 144, 129, 254, 97, 65, 33, 12, - 129, 165, 131, 3, 55, 112, 131, 45, 142, 81, - 5, 42, 188, 225, 17, 237, 88, 241, 2, 36, - 107, 128, 69, 196, 66, 13, 130, 120, 6, 26, - 60, 187, 136, 106, 120, 22, 23, 186, 224, 90, - 60, 12, 0, 0, 78, 76, 161, 7, 88, 152, - 67, 16, 92, 176, 4, 34, 92, 97, 11, 91, - 200, 132, 53, 204, 35, 153, 51, 72, 146, 94, - 255, 120, 242, 84, 60, 177, 4, 41, 171, 64, - 5, 59, 0, 2, 5, 18, 128, 1, 56, 220, - 236, 90, 189, 83, 3, 59, 206, 97, 230, 102, - 64, 55, 23, 201, 61, 179, 55, 26, 128, 128, - 52, 188, 162, 24, 204, 128, 196, 52, 56, 0, - 131, 77, 88, 67, 24, 132, 64, 196, 33, 212, - 241, 139, 11, 20, 224, 8, 104, 184, 128, 0, - 170, 129, 8, 53, 100, 193, 25, 16, 0, 0, - 0, 182, 49, 104, 6, 36, 67, 153, 143, 184, - 68, 2, 0, 192, 133, 52, 160, 0, 11, 87, - 120, 129, 11, 88, 192, 110, 18, 144, 128, 8, - 153, 118, 70, 162, 34, 99, 129, 40, 10, 196, - 164, 128, 232, 193, 10, 98, 16, 131, 29, 248, - 27, 8, 133, 224, 32, 33, 132, 123, 173, 70, - 172, 35, 141, 235, 64, 6, 116, 97, 65, 172, - 51, 103, 98, 0, 25, 120, 133, 48, 218, 163, - 138, 84, 252, 51, 27, 232, 160, 6, 51, 160, - 193, 142, 108, 28, 97, 2, 12, 176, 7, 18, - 254, 250, 136, 142, 14, 102, 161, 19, 140, 102, - 64, 59, 178, 189, 1, 109, 188, 34, 20, 133, - 240, 131, 103, 57, 113, 136, 31, 44, 97, 14, - 91, 32, 1, 187, 89, 224, 110, 23, 144, 160, - 8, 96, 240, 3, 46, 146, 44, 149, 15, 4, - 96, 1, 247, 174, 206, 41, 176, 96, 131, 29, - 240, 32, 6, 42, 224, 247, 14, 124, 16, 5, - 58, 88, 221, 193, 85, 240, 2, 51, 194, 113, - 142, 110, 72, 40, 23, 202, 233, 70, 179, 202, - 209, 1, 2, 212, 129, 25, 108, 202, 133, 55, - 208, 192, 129, 18, 152, 227, 30, 230, 216, 6, - 49, 156, 64, 108, 8, 164, 226, 30, 48, 152, - 192, 6, 158, 65, 7, 53, 88, 1, 9, 158, - 61, 194, 52, 102, 76, 12, 109, 8, 35, 22, - 144, 232, 196, 161, 225, 32, 134, 43, 92, 161, - 8, 47, 120, 1, 17, 212, 237, 110, 12, 252, - 28, 211, 156, 128, 140, 18, 36, 41, 144, 215, - 194, 198, 19, 115, 0, 194, 10, 84, 192, 131, - 33, 240, 187, 223, 62, 160, 66, 178, 7, 14, - 49, 50, 208, 233, 96, 231, 152, 16, 123, 230, - 83, 142, 12, 59, 32, 22, 26, 103, 70, 43, - 230, 1, 130, 182, 95, 128, 6, 19, 184, 64, - 240, 139, 234, 134, 120, 84, 99, 197, 109, 240, - 134, 26, 232, 80, 7, 11, 104, 123, 27, 72, - 0, 192, 6, 228, 49, 14, 61, 165, 131, 6, - 0, 144, 0, 43, 4, 254, 49, 136, 43, 16, - 33, 8, 30, 136, 60, 188, 225, 237, 238, 23, - 20, 97, 11, 153, 127, 204, 230, 3, 240, 223, - 234, 140, 2, 11, 83, 142, 58, 15, 202, 80, - 133, 167, 199, 96, 8, 141, 128, 155, 33, 62, - 65, 6, 67, 112, 29, 26, 21, 114, 14, 204, - 144, 83, 212, 112, 14, 222, 80, 118, 98, 128, - 12, 180, 35, 12, 185, 32, 15, 16, 0, 103, - 71, 0, 98, 71, 0, 3, 48, 224, 6, 219, - 48, 15, 143, 32, 9, 28, 48, 1, 188, 80, - 14, 84, 160, 6, 137, 192, 104, 23, 144, 14, - 217, 38, 1, 188, 112, 130, 188, 0, 3, 152, - 149, 10, 230, 50, 8, 150, 22, 4, 50, 0, - 6, 91, 64, 4, 46, 224, 2, 145, 7, 126, - 65, 16, 4, 91, 128, 11, 234, 199, 121, 255, - 16, 23, 178, 81, 7, 82, 32, 2, 168, 22, - 3, 62, 48, 4, 100, 160, 6, 79, 23, 5, - 135, 240, 10, 173, 48, 45, 251, 7, 13, 231, - 160, 38, 102, 118, 14, 117, 82, 39, 126, 0, - 113, 186, 128, 12, 12, 88, 11, 185, 176, 13, - 19, 112, 3, 37, 192, 15, 185, 84, 15, 243, - 16, 15, 234, 112, 12, 136, 80, 10, 237, 64, - 12, 196, 112, 15, 215, 64, 5, 112, 128, 11, - 22, 208, 103, 182, 32, 1, 0, 192, 0, 239, - 5, 80, 23, 208, 6, 207, 80, 8, 96, 3, - 111, 70, 128, 6, 118, 192, 4, 96, 0, 121, - 254, 36, 240, 2, 96, 176, 33, 150, 192, 5, - 92, 224, 43, 235, 39, 16, 103, 224, 121, 144, - 49, 10, 63, 48, 3, 163, 23, 3, 195, 243, - 129, 101, 160, 6, 169, 247, 10, 200, 0, 10, - 204, 209, 10, 194, 16, 14, 201, 195, 34, 7, - 151, 12, 225, 0, 12, 10, 224, 0, 147, 160, - 13, 180, 227, 133, 208, 240, 11, 196, 230, 6, - 253, 112, 12, 159, 208, 119, 86, 103, 8, 214, - 246, 10, 209, 80, 14, 209, 0, 10, 67, 0, - 7, 227, 16, 15, 247, 192, 15, 72, 192, 91, - 246, 176, 13, 169, 176, 8, 110, 144, 10, 214, - 5, 61, 35, 227, 2, 91, 32, 3, 86, 33, - 21, 92, 0, 6, 47, 224, 1, 50, 32, 10, - 176, 17, 137, 63, 72, 137, 142, 113, 10, 98, - 208, 116, 81, 199, 111, 60, 64, 5, 143, 83, - 6, 67, 160, 6, 177, 16, 14, 208, 160, 13, - 106, 194, 12, 200, 160, 12, 218, 112, 12, 82, - 152, 12, 187, 160, 10, 151, 64, 1, 8, 240, - 3, 10, 184, 51, 148, 208, 10, 139, 85, 2, - 37, 176, 9, 253, 32, 12, 134, 80, 6, 251, - 83, 62, 84, 144, 45, 141, 64, 8, 84, 192, - 3, 158, 8, 4, 86, 64, 10, 28, 32, 0, - 56, 224, 13, 194, 176, 11, 222, 80, 14, 202, - 16, 10, 135, 32, 46, 141, 7, 111, 45, 224, - 24, 145, 144, 9, 91, 0, 6, 70, 0, 6, - 112, 101, 116, 72, 247, 254, 15, 123, 112, 6, - 176, 65, 11, 63, 176, 111, 59, 208, 111, 154, - 216, 142, 135, 0, 10, 136, 16, 10, 194, 160, - 13, 201, 160, 13, 117, 34, 14, 208, 128, 12, - 186, 208, 11, 187, 112, 9, 128, 224, 1, 20, - 64, 0, 8, 96, 3, 203, 1, 11, 159, 112, - 83, 175, 80, 15, 52, 208, 118, 196, 144, 15, - 185, 32, 66, 67, 80, 5, 100, 64, 7, 81, - 83, 56, 85, 48, 3, 20, 233, 3, 54, 208, - 3, 157, 192, 0, 0, 64, 12, 208, 0, 10, - 63, 4, 7, 202, 54, 146, 133, 48, 7, 151, - 64, 4, 96, 112, 146, 144, 225, 7, 96, 192, - 5, 226, 40, 21, 245, 38, 69, 158, 48, 23, - 145, 97, 10, 115, 96, 3, 34, 48, 122, 231, - 88, 122, 112, 160, 6, 165, 16, 11, 161, 112, - 12, 202, 112, 9, 151, 16, 14, 226, 32, 143, - 244, 40, 6, 24, 224, 0, 8, 128, 0, 17, - 128, 2, 135, 128, 66, 173, 64, 9, 140, 64, - 9, 185, 208, 15, 196, 144, 10, 191, 192, 15, - 236, 0, 10, 114, 96, 56, 93, 32, 7, 73, - 120, 67, 80, 64, 5, 59, 128, 132, 84, 0, - 4, 107, 48, 104, 5, 240, 13, 194, 0, 10, - 111, 0, 4, 64, 32, 57, 105, 128, 46, 171, - 48, 7, 223, 39, 4, 145, 1, 132, 157, 246, - 105, 2, 49, 11, 115, 33, 142, 167, 240, 3, - 54, 224, 3, 153, 152, 56, 80, 243, 6, 112, - 254, 0, 138, 177, 32, 12, 208, 160, 10, 106, - 130, 13, 0, 24, 14, 197, 128, 148, 107, 208, - 3, 86, 32, 138, 202, 193, 51, 85, 121, 83, - 173, 112, 14, 229, 192, 14, 234, 80, 14, 173, - 160, 87, 101, 0, 60, 33, 148, 132, 112, 32, - 60, 60, 48, 3, 184, 233, 3, 170, 224, 75, - 237, 128, 13, 79, 72, 5, 84, 246, 45, 83, - 0, 136, 221, 71, 4, 50, 64, 147, 29, 178, - 100, 35, 37, 147, 132, 249, 24, 137, 128, 152, - 43, 224, 111, 57, 121, 132, 92, 4, 7, 161, - 160, 12, 111, 162, 11, 115, 32, 153, 199, 176, - 117, 63, 83, 158, 244, 8, 10, 148, 48, 144, - 237, 25, 8, 44, 26, 8, 114, 16, 8, 169, - 193, 8, 11, 41, 56, 133, 195, 3, 244, 99, - 117, 84, 80, 5, 80, 192, 111, 244, 195, 63, - 64, 16, 10, 186, 32, 12, 5, 234, 3, 49, - 48, 3, 195, 153, 6, 88, 48, 50, 240, 246, - 1, 73, 178, 7, 253, 213, 86, 90, 224, 160, - 142, 33, 6, 33, 48, 101, 254, 118, 67, 169, - 39, 8, 175, 208, 132, 210, 179, 11, 189, 176, - 5, 202, 160, 12, 107, 194, 117, 83, 216, 10, - 180, 83, 149, 44, 234, 5, 99, 224, 5, 127, - 224, 5, 110, 58, 6, 178, 89, 6, 74, 51, - 49, 80, 192, 144, 246, 83, 6, 159, 210, 119, - 166, 55, 75, 12, 57, 3, 213, 201, 132, 160, - 160, 6, 81, 48, 4, 254, 51, 48, 3, 89, - 96, 68, 73, 234, 125, 65, 96, 2, 73, 18, - 91, 1, 240, 50, 255, 160, 8, 81, 234, 24, - 142, 176, 4, 33, 32, 2, 137, 57, 3, 84, - 0, 5, 29, 84, 53, 64, 154, 42, 170, 144, - 9, 92, 112, 9, 165, 16, 143, 196, 98, 133, - 12, 184, 51, 104, 170, 166, 99, 176, 166, 115, - 227, 162, 173, 154, 52, 247, 217, 101, 89, 87, - 6, 132, 208, 8, 62, 89, 5, 67, 144, 147, - 19, 195, 3, 43, 96, 3, 81, 240, 10, 141, - 160, 6, 95, 217, 159, 126, 106, 3, 71, 36, - 6, 68, 80, 4, 50, 144, 36, 106, 21, 0, - 108, 5, 165, 147, 42, 21, 166, 96, 169, 83, - 214, 111, 137, 83, 5, 206, 3, 10, 161, 48, - 61, 170, 224, 7, 32, 0, 1, 50, 0, 9, - 186, 64, 39, 86, 104, 120, 202, 161, 170, 140, - 224, 166, 106, 250, 7, 109, 234, 166, 49, 228, - 5, 134, 224, 5, 73, 67, 63, 114, 80, 5, - 183, 154, 58, 55, 164, 2, 177, 73, 6, 80, - 96, 164, 108, 214, 10, 92, 198, 63, 51, 16, - 2, 6, 75, 95, 138, 42, 165, 248, 1, 82, - 34, 117, 16, 166, 80, 23, 155, 115, 11, 87, - 96, 161, 51, 192, 111, 156, 170, 108, 160, 32, - 61, 171, 192, 10, 32, 16, 124, 48, 208, 9, - 189, 128, 148, 208, 16, 14, 176, 72, 59, 55, - 69, 154, 129, 192, 166, 127, 176, 166, 114, 163, - 254, 166, 94, 0, 49, 77, 192, 3, 73, 208, - 4, 115, 67, 6, 160, 128, 171, 132, 160, 6, - 60, 10, 49, 60, 96, 3, 112, 112, 179, 100, - 16, 8, 236, 8, 4, 54, 96, 176, 33, 128, - 2, 40, 192, 2, 68, 160, 4, 213, 116, 77, - 9, 33, 169, 90, 48, 21, 115, 160, 111, 153, - 184, 3, 114, 136, 58, 135, 208, 173, 171, 224, - 10, 253, 132, 6, 81, 113, 10, 172, 240, 38, - 216, 160, 13, 242, 40, 164, 104, 250, 7, 129, - 224, 174, 129, 192, 8, 114, 208, 166, 134, 128, - 63, 17, 147, 56, 77, 32, 155, 132, 32, 138, - 136, 80, 5, 58, 11, 5, 47, 219, 5, 253, - 9, 7, 46, 74, 8, 236, 232, 3, 244, 133, - 2, 71, 139, 180, 44, 16, 4, 73, 178, 100, - 148, 164, 16, 121, 80, 23, 82, 225, 10, 55, - 153, 137, 70, 168, 6, 136, 32, 8, 47, 86, - 8, 165, 160, 9, 19, 96, 6, 142, 193, 7, - 163, 176, 11, 202, 192, 117, 242, 232, 78, 108, - 235, 174, 238, 58, 6, 104, 203, 170, 73, 227, - 5, 73, 48, 179, 65, 139, 171, 175, 80, 109, - 84, 80, 52, 178, 217, 4, 187, 58, 4, 217, - 82, 5, 83, 99, 5, 61, 128, 180, 190, 203, - 2, 46, 192, 180, 78, 36, 73, 254, 197, 184, - 117, 145, 7, 180, 192, 116, 138, 201, 111, 133, - 74, 117, 89, 112, 8, 186, 160, 9, 23, 16, - 25, 159, 171, 83, 240, 254, 120, 66, 104, 58, - 6, 129, 176, 166, 174, 10, 167, 100, 80, 175, - 245, 138, 51, 160, 144, 11, 112, 153, 71, 47, - 84, 62, 49, 91, 122, 116, 0, 60, 81, 0, - 4, 152, 122, 180, 75, 144, 1, 25, 112, 184, - 17, 68, 188, 15, 209, 184, 90, 80, 173, 54, - 80, 168, 167, 39, 60, 22, 243, 6, 208, 43, - 189, 146, 49, 10, 218, 112, 174, 19, 119, 44, - 60, 67, 186, 45, 234, 162, 114, 80, 175, 93, - 86, 6, 159, 0, 10, 177, 11, 7, 81, 112, - 132, 47, 75, 175, 78, 99, 52, 60, 160, 2, - 86, 90, 168, 54, 176, 4, 46, 144, 1, 87, - 112, 141, 213, 113, 6, 245, 102, 111, 16, 33, - 169, 138, 48, 177, 152, 184, 147, 19, 153, 122, - 28, 154, 12, 156, 48, 189, 146, 241, 12, 87, - 8, 13, 26, 215, 30, 237, 89, 11, 200, 128, - 12, 178, 3, 93, 235, 234, 5, 101, 144, 132, - 208, 149, 41, 21, 252, 144, 220, 27, 60, 117, - 250, 116, 161, 228, 163, 132, 116, 5, 46, 144, - 8, 248, 161, 4, 11, 32, 73, 139, 27, 17, - 166, 240, 5, 144, 208, 3, 251, 187, 111, 165, - 39, 135, 136, 240, 10, 146, 41, 192, 146, 113, - 10, 231, 96, 133, 212, 32, 12, 112, 195, 162, - 104, 27, 8, 173, 0, 55, 183, 214, 10, 55, - 85, 149, 79, 200, 173, 144, 99, 96, 170, 35, - 92, 192, 51, 4, 116, 64, 127, 161, 244, 129, - 254, 83, 80, 156, 147, 16, 100, 222, 8, 91, - 80, 116, 0, 103, 51, 17, 193, 192, 10, 145, - 123, 161, 6, 118, 181, 175, 240, 38, 153, 64, - 195, 53, 76, 178, 218, 128, 12, 185, 80, 149, - 109, 251, 7, 132, 32, 7, 134, 240, 7, 49, - 180, 182, 107, 11, 187, 91, 122, 8, 82, 96, - 3, 89, 128, 8, 173, 208, 8, 154, 92, 6, - 141, 208, 8, 129, 96, 8, 3, 103, 117, 207, - 35, 81, 27, 203, 131, 212, 161, 4, 32, 21, - 0, 18, 0, 169, 18, 49, 14, 107, 128, 137, - 251, 150, 122, 87, 43, 12, 245, 8, 12, 27, - 240, 151, 82, 241, 12, 218, 64, 13, 56, 44, - 12, 181, 192, 8, 105, 123, 83, 210, 44, 55, - 160, 204, 162, 148, 64, 48, 185, 16, 10, 161, - 80, 68, 105, 48, 190, 114, 76, 205, 55, 149, - 79, 172, 71, 45, 112, 208, 8, 163, 178, 10, - 201, 128, 203, 176, 161, 5, 39, 60, 73, 30, - 49, 8, 82, 230, 197, 95, 169, 202, 109, 162, - 12, 192, 64, 3, 150, 0, 27, 201, 35, 12, - 108, 34, 12, 210, 220, 162, 55, 229, 162, 110, - 26, 203, 238, 249, 198, 177, 160, 12, 144, 48, - 8, 177, 112, 12, 194, 0, 148, 205, 1, 55, - 210, 44, 205, 229, 67, 7, 201, 6, 42, 12, - 148, 12, 190, 0, 27, 124, 240, 1, 80, 20, - 0, 46, 243, 17, 170, 96, 5, 133, 122, 155, - 31, 168, 202, 14, 141, 254, 12, 189, 128, 4, - 146, 32, 25, 124, 160, 13, 171, 44, 144, 45, - 106, 8, 134, 240, 162, 11, 188, 182, 208, 149, - 66, 229, 169, 13, 151, 160, 10, 247, 88, 10, - 68, 89, 182, 85, 233, 96, 194, 101, 209, 81, - 160, 108, 151, 211, 11, 192, 240, 24, 168, 192, - 7, 42, 243, 209, 11, 144, 200, 30, 145, 12, - 105, 80, 168, 205, 171, 6, 231, 252, 10, 151, - 179, 11, 156, 112, 4, 252, 188, 198, 100, 112, - 205, 46, 26, 208, 114, 243, 162, 238, 233, 133, - 104, 87, 143, 47, 192, 10, 202, 80, 10, 200, - 64, 148, 225, 160, 198, 104, 26, 8, 179, 137, - 183, 114, 120, 8, 166, 162, 212, 190, 66, 43, - 158, 115, 0, 243, 194, 21, 127, 232, 167, 51, - 224, 111, 84, 87, 203, 165, 176, 11, 154, 0, - 3, 220, 244, 24, 189, 16, 206, 14, 214, 182, - 11, 108, 8, 105, 107, 211, 239, 36, 12, 150, - 29, 39, 30, 176, 5, 172, 208, 11, 14, 205, - 12, 218, 80, 11, 235, 73, 9, 44, 42, 155, - 134, 128, 49, 181, 60, 9, 170, 48, 10, 230, - 161, 5, 31, 240, 0, 125, 253, 0, 160, 182, - 23, 147, 64, 180, 23, 58, 117, 84, 23, 5, - 130, 112, 42, 174, 0, 3, 150, 240, 151, 171, - 144, 58, 1, 205, 174, 114, 80, 205, 160, 108, - 214, 3, 25, 209, 185, 160, 13, 202, 208, 0, - 3, 224, 1, 151, 32, 166, 152, 57, 48, 134, - 254, 112, 83, 16, 115, 45, 114, 184, 6, 125, - 112, 7, 123, 160, 5, 241, 178, 0, 125, 61, - 2, 216, 196, 23, 144, 80, 96, 21, 91, 177, - 253, 19, 5, 83, 112, 216, 192, 80, 2, 95, - 96, 23, 82, 234, 9, 165, 128, 8, 65, 27, - 180, 110, 74, 8, 163, 221, 182, 54, 157, 205, - 181, 192, 128, 185, 240, 10, 208, 160, 11, 13, - 160, 0, 24, 0, 6, 208, 32, 158, 208, 208, - 30, 234, 42, 223, 85, 144, 5, 216, 45, 23, - 57, 208, 218, 44, 227, 221, 22, 240, 4, 90, - 241, 29, 170, 64, 157, 215, 170, 147, 196, 147, - 208, 201, 128, 4, 102, 96, 25, 32, 94, 23, - 147, 120, 7, 125, 176, 6, 113, 160, 6, 214, - 60, 55, 106, 122, 223, 114, 4, 79, 39, 148, - 11, 255, 77, 1, 20, 112, 5, 170, 48, 182, - 205, 12, 205, 159, 64, 57, 120, 144, 221, 219, - 157, 3, 38, 80, 43, 101, 195, 50, 19, 238, - 203, 189, 1, 185, 243, 188, 188, 62, 48, 5, - 202, 128, 13, 201, 192, 6, 110, 224, 86, 121, - 0, 226, 82, 174, 4, 34, 126, 6, 36, 222, - 7, 120, 96, 226, 220, 226, 56, 17, 44, 154, - 151, 227, 148, 118, 201, 10, 124, 50, 10, 142, - 176, 33, 215, 225, 227, 77, 2, 228, 182, 242, - 0, 53, 240, 5, 68, 94, 34, 229, 120, 169, - 137, 169, 2, 6, 150, 5, 229, 186, 206, 48, - 64, 16, 166, 160, 8, 192, 81, 62, 229, 32, - 142, 25, 84, 238, 222, 115, 49, 232, 132, 110, - 23, 215, 113, 25, 218, 17, 34, 78, 178, 232, - 181, 98, 1, 109, 30, 32, 37, 162, 16, 151, - 64, 184, 152, 26, 127, 73, 94, 10, 73, 9, - 12, 56, 128, 16, 218, 148, 7, 121, 240, 5, - 182, 17, 234, 162, 158, 3, 184, 129, 27, 218, - 113, 234, 218, 209, 31, 253, 17, 34, 172, 206, - 232, 38, 160, 3, 0, 82, 225, 145, 206, 16, - 148, 142, 169, 116, 126, 164, 186, 144, 12, 187, - 237, 16, 150, 20, 9, 118, 96, 7, 95, 240, - 5, 216, 145, 29, 168, 158, 234, 170, 174, 1, - 31, 160, 3, 184, 17, 236, 120, 33, 235, 179, - 254, 16, 144, 75, 184, 136, 153, 106, 22, 185, - 6, 147, 192, 10, 174, 176, 1, 60, 65, 19, - 145, 240, 230, 207, 222, 17, 128, 64, 184, 33, - 96, 164, 86, 144, 6, 225, 226, 165, 154, 32, - 1, 223, 190, 238, 21, 225, 10, 75, 128, 2, - 54, 240, 3, 66, 148, 6, 228, 178, 11, 192, - 192, 4, 236, 158, 239, 2, 17, 16, 0, 59}; - diff -up php-5.3.0/main/php_logos.c.easter php-5.3.0/main/php_logos.c --- php-5.3.0/main/php_logos.c.easter 2008-12-31 12:15:47.000000000 +0100 +++ php-5.3.0/main/php_logos.c 2009-07-12 13:45:50.000000000 +0200 @@ -56,7 +56,6 @@ int php_init_info_logos(void) return FAILURE; php_register_info_logo(PHP_LOGO_GUID , "image/gif", php_logo , sizeof(php_logo)); - php_register_info_logo(PHP_EGG_LOGO_GUID, "image/gif", php_egg_logo, sizeof(php_egg_logo)); php_register_info_logo(ZEND_LOGO_GUID , "image/gif", zend_logo , sizeof(zend_logo)); return SUCCESS; php-5.3.0-gnusrc.patch: --- NEW FILE php-5.3.0-gnusrc.patch --- diff -up php-5.3.0RC3/configure.in.gnusrc php-5.3.0RC3/configure.in --- php-5.3.0RC3/configure.in.gnusrc 2009-06-10 20:18:43.000000000 +0200 +++ php-5.3.0RC3/configure.in 2009-06-12 07:38:08.000000000 +0200 @@ -58,6 +58,8 @@ AC_DEFUN([PHP_EXT_DIR],[ext/$1])dnl AC_DEFUN([PHP_EXT_SRCDIR],[$abs_srcdir/ext/$1])dnl AC_DEFUN([PHP_ALWAYS_SHARED],[])dnl +AC_DEFINE([_GNU_SOURCE], 1, [Define to enable GNU C Library extensions]) + dnl Setting up the PHP version based on the information above. dnl ------------------------------------------------------------------------- diff -up php-5.3.0RC3/ext/interbase/interbase.c.gnusrc php-5.3.0RC3/ext/interbase/interbase.c --- php-5.3.0RC3/ext/interbase/interbase.c.gnusrc 2008-12-31 12:15:38.000000000 +0100 +++ php-5.3.0RC3/ext/interbase/interbase.c 2009-06-12 07:38:08.000000000 +0200 @@ -24,7 +24,6 @@ #include "config.h" #endif -#define _GNU_SOURCE #include "php.h" diff -up php-5.3.0RC3/ext/pdo_firebird/firebird_driver.c.gnusrc php-5.3.0RC3/ext/pdo_firebird/firebird_driver.c --- php-5.3.0RC3/ext/pdo_firebird/firebird_driver.c.gnusrc 2009-04-18 20:56:11.000000000 +0200 +++ php-5.3.0RC3/ext/pdo_firebird/firebird_driver.c 2009-06-12 07:38:08.000000000 +0200 @@ -22,7 +22,6 @@ #include "config.h" #endif -#define _GNU_SOURCE #include "php.h" #ifdef ZEND_ENGINE_2 diff -up php-5.3.0RC3/ext/standard/file.c.gnusrc php-5.3.0RC3/ext/standard/file.c --- php-5.3.0RC3/ext/standard/file.c.gnusrc 2009-05-24 18:01:47.000000000 +0200 +++ php-5.3.0RC3/ext/standard/file.c 2009-06-12 07:40:44.000000000 +0200 @@ -123,9 +123,6 @@ php_file_globals file_globals; #endif #if defined(HAVE_FNMATCH) && !defined(PHP_WIN32) -# ifndef _GNU_SOURCE -# define _GNU_SOURCE -# endif # include #endif diff -up php-5.3.0RC3/ext/zlib/zlib_fopen_wrapper.c.gnusrc php-5.3.0RC3/ext/zlib/zlib_fopen_wrapper.c --- php-5.3.0RC3/ext/zlib/zlib_fopen_wrapper.c.gnusrc 2009-01-20 16:41:23.000000000 +0100 +++ php-5.3.0RC3/ext/zlib/zlib_fopen_wrapper.c 2009-06-12 07:38:08.000000000 +0200 @@ -19,8 +19,6 @@ /* $Id: zlib_fopen_wrapper.c,v 1.46.2.1.2.4.2.3 2009/01/20 15:41:23 felipe Exp $ */ -#define _GNU_SOURCE - #include "php.h" #include "php_zlib.h" #include "fopen_wrappers.h" diff -up php-5.3.0RC3/main/php.h.gnusrc php-5.3.0RC3/main/php.h --- php-5.3.0RC3/main/php.h.gnusrc 2008-12-31 12:15:47.000000000 +0100 +++ php-5.3.0RC3/main/php.h 2009-06-12 07:38:08.000000000 +0200 @@ -30,6 +30,7 @@ #define PHP_HAVE_STREAMS #define YYDEBUG 0 +#include "php_config.h" #include "php_version.h" #include "zend.h" #include "zend_qsort.h" diff -up php-5.3.0RC3/main/streams/cast.c.gnusrc php-5.3.0RC3/main/streams/cast.c --- php-5.3.0RC3/main/streams/cast.c.gnusrc 2009-04-20 10:28:44.000000000 +0200 +++ php-5.3.0RC3/main/streams/cast.c 2009-06-12 07:38:08.000000000 +0200 @@ -18,7 +18,6 @@ /* $Id: cast.c,v 1.12.2.1.2.1.2.6 2009/04/20 08:28:44 pajoye Exp $ */ -#define _GNU_SOURCE #include "php.h" #include "php_globals.h" #include "php_network.h" diff -up php-5.3.0RC3/main/streams/memory.c.gnusrc php-5.3.0RC3/main/streams/memory.c --- php-5.3.0RC3/main/streams/memory.c.gnusrc 2009-05-16 22:27:36.000000000 +0200 +++ php-5.3.0RC3/main/streams/memory.c 2009-06-12 07:41:07.000000000 +0200 @@ -18,7 +18,6 @@ /* $Id: memory.c,v 1.8.2.6.2.17.2.4 2009/05/16 20:27:36 lbarnaud Exp $ */ -#define _GNU_SOURCE #include "php.h" PHPAPI int php_url_decode(char *str, int len); diff -up php-5.3.0RC3/main/streams/streams.c.gnusrc php-5.3.0RC3/main/streams/streams.c --- php-5.3.0RC3/main/streams/streams.c.gnusrc 2009-05-17 16:58:10.000000000 +0200 +++ php-5.3.0RC3/main/streams/streams.c 2009-06-12 07:40:53.000000000 +0200 @@ -21,7 +21,6 @@ /* $Id: streams.c,v 1.82.2.6.2.18.2.28 2009/05/17 14:58:10 lbarnaud Exp $ */ -#define _GNU_SOURCE #include "php.h" #include "php_globals.h" #include "php_network.h" diff -up php-5.3.0RC3/Zend/zend_language_parser.c.gnusrc php-5.3.0RC3/Zend/zend_language_parser.c --- php-5.3.0RC3/Zend/zend_language_parser.c.gnusrc 2009-06-10 20:23:36.000000000 +0200 +++ php-5.3.0RC3/Zend/zend_language_parser.c 2009-06-12 07:38:08.000000000 +0200 @@ -366,6 +366,8 @@ #include "zend_API.h" #include "zend_constants.h" +#include + #define YYERROR_VERBOSE #define YYSTYPE znode php-5.3.0-install.patch: --- NEW FILE php-5.3.0-install.patch --- diff -up php5.3-200812131330/sapi/apache2handler/config.m4.install php5.3-200812131330/sapi/apache2handler/config.m4 --- php5.3-200812131330/sapi/apache2handler/config.m4.install 2008-03-12 00:31:53.000000000 +0100 +++ php5.3-200812131330/sapi/apache2handler/config.m4 2008-12-13 16:20:06.000000000 +0100 @@ -68,7 +68,7 @@ if test "$PHP_APXS2" != "no"; then fi APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` - if test -z `$APXS -q SYSCONFDIR`; then + if true; then INSTALL_IT="\$(mkinstalldirs) '$APXS_LIBEXECDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -i -n php5" php-5.3.0-oci8conf.patch: --- NEW FILE php-5.3.0-oci8conf.patch --- diff -up ext/pdo_oci/config.m4.remi-oci8 ext/pdo_oci/config.m4 --- ext/pdo_oci/config.m4.remi-oci8 2008-10-22 22:35:52.000000000 +0200 +++ ext/pdo_oci/config.m4 2008-12-13 16:25:25.000000000 +0100 @@ -74,7 +74,10 @@ You need to tell me where to find your O PDO_OCI_IC_PREFIX="`echo $PDO_OCI_DIR | cut -d, -f2`" PDO_OCI_IC_VERS="`echo $PDO_OCI_DIR | cut -d, -f3`" AC_MSG_CHECKING([for oci.h]) - if test -f $PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client/oci.h ; then + if test -f $PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client64/oci.h ; then + PHP_ADD_INCLUDE($PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client64) + AC_MSG_RESULT($PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client64) + elif test -f $PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client/oci.h ; then PHP_ADD_INCLUDE($PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client) AC_MSG_RESULT($PDO_OCI_IC_PREFIX/include/oracle/$PDO_OCI_IC_VERS/client) elif test -f $PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/include/oci.h ; then @@ -91,6 +94,10 @@ You need to tell me where to find your O fi if test -f "$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/lib/libclntsh.so" ; then PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/lib" + elif test -f "$PDO_OCI_IC_PREFIX/lib64/oracle/$PDO_OCI_IC_VERS/client64/lib/libclntsh.so" ; then + PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/lib64/oracle/$PDO_OCI_IC_VERS/client64/lib" + elif test -f "$PDO_OCI_IC_PREFIX/lib64/oracle/$PDO_OCI_IC_VERS/client/lib/libclntsh.so" ; then + PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/lib64/oracle/$PDO_OCI_IC_VERS/client/lib" elif test -f "$PDO_OCI_IC_PREFIX/client/lib/libclntsh.so" ; then PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/client/lib" elif test -f "$PDO_OCI_IC_PREFIX/libclntsh.so" ; then --- ext/oci8/config.m4.remi-oci8 2009-03-13 00:52:37.000000000 +0100 +++ ext/oci8/config.m4 2009-03-24 20:42:39.000000000 +0100 @@ -306,6 +306,7 @@ dnl Header directory for Instant Client SDK RPM install OCISDKRPMINC=`echo "$PHP_OCI8_INSTANT_CLIENT" | $PHP_OCI8_SED -e 's!^/usr/lib/oracle/\(.*\)/client\('${PHP_OCI8_IC_LIBDIR_SUFFIX}'\)*/lib[/]*$!/usr/include/oracle/\1/client\2!'` + OCISDKRPMINC=`echo "$PHP_OCI8_INSTANT_CLIENT" | $PHP_OCI8_SED -e 's!^/usr/\(lib64\|lib\)/oracle/\(.*\)/\(client64\|client\)/lib[/]*$!/usr/include/oracle/\2/\3!'` dnl Header directory for Instant Client SDK zip file install OCISDKZIPINC=$PHP_OCI8_INSTANT_CLIENT/sdk/include php-5.3.0-phpize64.patch: --- NEW FILE php-5.3.0-phpize64.patch --- diff -up php5.3-200812131330/scripts/Makefile.frag.phpize64 php5.3-200812131330/scripts/Makefile.frag --- php5.3-200812131330/scripts/Makefile.frag.phpize64 2005-11-22 00:08:02.000000000 +0100 +++ php5.3-200812131330/scripts/Makefile.frag 2008-12-13 16:21:42.000000000 +0100 @@ -4,7 +4,7 @@ # phpincludedir = $(includedir)/php -phpbuilddir = $(libdir)/build +phpbuilddir = $(libdir)/php/build BUILD_FILES = \ scripts/phpize.m4 \ diff -up php5.3-200812131330/scripts/phpize.in.phpize64 php5.3-200812131330/scripts/phpize.in --- php5.3-200812131330/scripts/phpize.in.phpize64 2007-06-29 03:10:35.000000000 +0200 +++ php5.3-200812131330/scripts/phpize.in 2008-12-13 16:24:27.000000000 +0100 @@ -3,7 +3,7 @@ # Variable declaration prefix='@prefix@' exec_prefix="`eval echo @exec_prefix@`" -phpdir="`eval echo @libdir@`/build" +phpdir="@libdir@/php/build" includedir="`eval echo @includedir@`/php" builddir="`pwd`" SED="@SED@" php-5.3.0-recode.patch: --- NEW FILE php-5.3.0-recode.patch --- diff -up php-5.3.0beta1/ext/recode/config9.m4.recode php-5.3.0beta1/ext/recode/config9.m4 --- php-5.3.0beta1/ext/recode/config9.m4.recode 2008-12-02 00:30:21.000000000 +0100 +++ php-5.3.0beta1/ext/recode/config9.m4 2009-02-28 09:46:50.000000000 +0100 @@ -4,13 +4,6 @@ dnl dnl Check for extensions with which Recode can not work if test "$PHP_RECODE" != "no"; then - test "$PHP_IMAP" != "no" && recode_conflict="$recode_conflict imap" - - if test -n "$MYSQL_LIBNAME"; then - PHP_CHECK_LIBRARY($MYSQL_LIBNAME, hash_insert, [ - recode_conflict="$recode_conflict mysql" - ]) - fi if test -n "$recode_conflict"; then AC_MSG_ERROR([recode extension can not be configured together with:$recode_conflict]) php-5.3.0-systzdata.patch: --- NEW FILE php-5.3.0-systzdata.patch --- diff -up ext/date/lib/parse_tz.c.systzdata ext/date/lib/parse_tz.c --- ext/date/lib/parse_tz.c.systzdata 2008-12-31 12:15:35.000000000 +0100 +++ ext/date/lib/parse_tz.c 2009-02-28 09:51:07.000000000 +0100 @@ -20,6 +20,16 @@ #include "timelib.h" +#ifdef HAVE_SYSTEM_TZDATA +#include +#include +#include +#include +#include + +#include "php_scandir.h" +#endif + #include #ifdef HAVE_LOCALE_H @@ -31,7 +41,10 @@ #else #include #endif + +#ifndef HAVE_SYSTEM_TZDATA #include "timezonedb.h" +#endif #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) # if defined(__LITTLE_ENDIAN__) @@ -253,6 +266,211 @@ void timelib_dump_tzinfo(timelib_tzinfo } } +#ifdef HAVE_SYSTEM_TZDATA + +#ifdef HAVE_SYSTEM_TZDATA_PREFIX +#define ZONEINFO_PREFIX HAVE_SYSTEM_TZDATA_PREFIX +#else +#define ZONEINFO_PREFIX "/usr/share/zoneinfo" +#endif + +#define SYSTEM_TZFILE "/etc/localtime" + +static const timelib_tzdb *timezonedb_system = NULL; + +/* Filter out some non-tzdata files and the posix/right databases, if + * present. */ +static int index_filter(const struct dirent *ent) +{ + return strcmp(ent->d_name, ".") != 0 + && strcmp(ent->d_name, "..") != 0 + && strcmp(ent->d_name, "posix") != 0 + && strcmp(ent->d_name, "posixrules") != 0 + && strcmp(ent->d_name, "right") != 0 + && strstr(ent->d_name, ".tab") == NULL; +} + +/* Create the zone identifier index by trawling the filesystem. */ +static void create_zone_index(timelib_tzdb *db) +{ + size_t dirstack_size, dirstack_top; + size_t index_size, index_next; + timelib_tzdb_index_entry *db_index; + char **dirstack; + + /* LIFO stack to hold directory entries to scan; each slot is a + * directory name relative to the zoneinfo prefix. */ + dirstack_size = 32; + dirstack = malloc(dirstack_size * sizeof *dirstack); + dirstack_top = 1; + dirstack[0] = strdup(""); + + /* Index array. */ + index_size = 64; + db_index = malloc(index_size * sizeof *db_index); + index_next = 0; + + do { + struct dirent **ents; + char name[PATH_MAX], *top; + int count; + + /* Pop the top stack entry, and iterate through its contents. */ + top = dirstack[--dirstack_top]; + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s", top); + + count = php_scandir(name, &ents, index_filter, php_alphasort); + + while (count > 0) { + struct stat st; + const char *leaf = ents[count - 1]->d_name; + + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s/%s", + top, leaf); + + if (strlen(name) && stat(name, &st) == 0) { + /* Name, relative to the zoneinfo prefix. */ + const char *root = top; + + if (root[0] == '/') root++; + + snprintf(name, sizeof name, "%s%s%s", root, + *root ? "/": "", leaf); + + if (S_ISDIR(st.st_mode)) { + if (dirstack_top == dirstack_size) { + dirstack_size *= 2; + dirstack = realloc(dirstack, + dirstack_size * sizeof *dirstack); + } + dirstack[dirstack_top++] = strdup(name); + } + else { + if (index_next == index_size) { + index_size *= 2; + db_index = realloc(db_index, + index_size * sizeof *db_index); + } + + db_index[index_next].id = strdup(name); + db_index[index_next++].pos = 0; + } + } + + free(ents[--count]); + } + + if (count != -1) free(ents); + free(top); + } while (dirstack_top); + + db->index = db_index; + db->index_size = index_next; + + free(dirstack); +} + +/* Return the mmap()ed tzfile if found, else NULL. On success, the + * length of the mapped data is placed in *length. */ +static char *map_tzfile(const char *timezone, size_t *length) +{ + char fname[PATH_MAX]; + const char *fn; + struct stat st; + char *p; + int fd; + + if (strcmp(timezone, TIMELIB_SYSTEM_TZID) == 0) { + fn = SYSTEM_TZFILE; + } + else { + if (strstr(timezone, "..") != NULL) { + return NULL; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + fn = fname; + } + + fd = open(fn, O_RDONLY); + if (fd == -1) { + return NULL; + } else if (fstat(fd, &st) != 0 || st.st_size < 21) { + close(fd); + return NULL; + } + + *length = st.st_size; + p = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); + close(fd); + + return p != MAP_FAILED ? p : NULL; +} + +const timelib_tzdb *timelib_builtin_db(void) +{ + if (timezonedb_system == NULL) { + timelib_tzdb *tmp = malloc(sizeof *tmp); + + tmp->version = "0.system"; + tmp->data = NULL; + create_zone_index(tmp); + timezonedb_system = tmp; + } + + return timezonedb_system; +} + +const timelib_tzdb_index_entry *timelib_timezone_builtin_identifiers_list(int *count) +{ + *count = timezonedb_system->index_size; + return timezonedb_system->index; +} + +int timelib_timezone_id_is_valid(char *timezone, const timelib_tzdb *tzdb) +{ + char fname[PATH_MAX]; + const char *fn; + + if (strcmp(timezone, TIMELIB_SYSTEM_TZID) == 0) { + fn = SYSTEM_TZFILE; + } + else { + if (strstr(timezone, "..") != NULL) { + return 0; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + fn = fname; + } + + return access(fn, R_OK) == 0 ? 1 : 0; +} + +timelib_tzinfo *timelib_parse_tzfile(char *timezone, const timelib_tzdb *tzdb) +{ + char *tzf, *orig; + timelib_tzinfo *tmp; + size_t len; + + orig = map_tzfile(timezone, &len); + if (orig == NULL) { + return NULL; + } + + tmp = timelib_tzinfo_ctor(timezone); + + tzf = orig + 20; + read_header(&tzf, tmp); + read_transistions(&tzf, tmp); + read_types(&tzf, tmp); + + munmap(orig, len); + + return tmp; +} +#else /* !HAVE_SYSTEM_TZDATA */ + static int seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) { int left = 0, right = tzdb->index_size - 1; @@ -328,6 +546,7 @@ timelib_tzinfo *timelib_parse_tzfile(cha return tmp; } +#endif static ttinfo* fetch_timezone_offset(timelib_tzinfo *tz, timelib_sll ts, timelib_sll *transition_time) { diff -up ext/date/lib/timelib.h.systzdata ext/date/lib/timelib.h --- ext/date/lib/timelib.h.systzdata 2008-12-31 12:15:35.000000000 +0100 +++ ext/date/lib/timelib.h 2009-02-28 09:51:07.000000000 +0100 @@ -34,6 +34,10 @@ #define TIMELIB_SPECIAL_DAY_OF_WEEK_IN_MONTH 0x02 #define TIMELIB_SPECIAL_LAST_DAY_OF_WEEK_IN_MONTH 0x03 +#ifdef HAVE_SYSTEM_TZDATA +#define TIMELIB_SYSTEM_TZID "System/Localtime" +#endif + #ifndef LONG_MAX #define LONG_MAX 2147483647L #endif diff -up ext/date/lib/timelib.m4.systzdata ext/date/lib/timelib.m4 --- ext/date/lib/timelib.m4.systzdata 2005-07-04 01:30:52.000000000 +0200 +++ ext/date/lib/timelib.m4 2009-02-28 09:51:07.000000000 +0100 @@ -78,3 +78,17 @@ stdlib.h dnl Check for strtoll, atoll AC_CHECK_FUNCS(strtoll atoll strftime) + +PHP_ARG_WITH(system-tzdata, for use of system timezone data, +[ --with-system-tzdata[=DIR] to specify use of system timezone data], +no, no) + +if test "$PHP_SYSTEM_TZDATA" != "no"; then + AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) + + if test "$PHP_SYSTEM_TZDATA" != "yes"; then + AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", + [Define for location of system timezone data]) + fi +fi + diff -up ext/date/php_date.c.systzdata ext/date/php_date.c --- ext/date/php_date.c.systzdata 2009-01-27 14:48:10.000000000 +0100 +++ ext/date/php_date.c 2009-02-28 09:51:07.000000000 +0100 @@ -829,6 +829,11 @@ static char* guess_timezone(const timeli if (DATEG(default_timezone) && (strlen(DATEG(default_timezone)) > 0) && timelib_timezone_id_is_valid(DATEG(default_timezone), tzdb)) { return DATEG(default_timezone); } +#ifdef TIMELIB_SYSTEM_TZID + if (timelib_timezone_id_is_valid(TIMELIB_SYSTEM_TZID, tzdb)) { + return TIMELIB_SYSTEM_TZID; + } +#endif #if HAVE_TM_ZONE /* Try to guess timezone from system information */ { Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php/devel/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 21 Jun 2009 09:43:29 -0000 1.37 +++ .cvsignore 12 Jul 2009 16:47:12 -0000 1.38 @@ -1 +1 @@ -php-5.2.10.tar.bz2 +php-5.3.0.tar.bz2 Index: php.ini =================================================================== RCS file: /cvs/extras/rpms/php/devel/php.ini,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php.ini 14 Jul 2008 11:04:39 -0000 1.8 +++ php.ini 12 Jul 2009 16:47:14 -0000 1.9 @@ -3,146 +3,264 @@ ;;;;;;;;;;;;;;;;;;; ; About php.ini ; ;;;;;;;;;;;;;;;;;;; -; This file controls many aspects of PHP's behavior. In order for PHP to -; read it, it must be named 'php.ini'. PHP looks for it in the current -; working directory, in the path designated by the environment variable -; PHPRC, and in the path that was defined in compile time (in that order). -; Under Windows, the compile-time path is the Windows directory. The -; path in which the php.ini file is looked for can be overridden using -; the -c argument in command line mode. -; +; PHP's initialization file, generally called php.ini, is responsible for +; configuring many of the aspects of PHP's behavior. + +; PHP attempts to find and load this configuration from a number of locations. +; The following is a summary of its search order: +; 1. SAPI module specific location. +; 2. The PHPRC environment variable. (As of PHP 5.2.0) +; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) +; 4. Current working directory (except CLI) +; 5. The web server's directory (for SAPI modules), or directory of PHP +; (otherwise in Windows) +; 6. The directory from the --with-config-file-path compile time option, or the +; Windows directory (C:\windows or C:\winnt) +; See the PHP docs for more specific information. +; http://www.php.net/manual/en/configuration.file.php + ; The syntax of the file is extremely simple. Whitespace and Lines ; beginning with a semicolon are silently ignored (as you probably guessed). ; Section headers (e.g. [Foo]) are also silently ignored, even though -; they might mean something in the future. -; +; they might mean something in the future. + +; Directives following the section heading [PATH=/www/mysite] only +; apply to PHP files in the /www/mysite directory. Directives +; following the section heading [HOST=www.example.com] only apply to +; PHP files served from www.example.com. Directives set in these +; special sections cannot be overridden by user-defined INI files or +; at runtime. Currently, [PATH=] and [HOST=] sections only work under +; CGI/FastCGI. +; http://www.php.net/manual/en/ini.sections.php + ; Directives are specified using the following syntax: ; directive = value ; Directive names are *case sensitive* - foo=bar is different from FOO=bar. -; +; Directives are variables used to configure PHP or PHP extensions. +; There is no name validation. If PHP can't find an expected +; directive because it is not set or is mistyped, a default value will be used. + ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression -; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo"). -; +; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a +; previously set variable or directive (e.g. ${foo}) + ; Expressions in the INI file are limited to bitwise operators and parentheses: -; | bitwise OR -; & bitwise AND -; ~ bitwise NOT -; ! boolean NOT -; +; | bitwise OR +; ^ bitwise XOR +; & bitwise AND +; ~ bitwise NOT +; ! boolean NOT + ; Boolean flags can be turned on using the values 1, On, True or Yes. ; They can be turned off using the values 0, Off, False or No. -; + ; An empty string can be denoted by simply not writing anything after the equal ; sign, or by using the None keyword: -; + ; foo = ; sets foo to an empty string -; foo = none ; sets foo to an empty string -; foo = "none" ; sets foo to the string 'none' -; +; foo = None ; sets foo to an empty string +; foo = "None" ; sets foo to the string 'None' + ; If you use constants in your value, and these constants belong to a ; dynamically loaded extension (either a PHP extension or a Zend extension), ; you may only use these constants *after* the line that loads the extension. -; -; + ;;;;;;;;;;;;;;;;;;; ; About this file ; ;;;;;;;;;;;;;;;;;;; -; This is the recommended, PHP 5-style version of the php.ini-dist file. It -; sets some non standard settings, that make PHP more efficient, more secure, -; and encourage cleaner coding. -; -; The price is that with these settings, PHP may be incompatible with some -; applications, and sometimes, more difficult to develop with. Using this -; file is warmly recommended for production sites. As all of the changes from -; the standard settings are thoroughly documented, you can go over each one, -; and decide whether you want to use it or not. -; -; For general information about the php.ini file, please consult the php.ini-dist -; file, included in your PHP distribution. -; -; This file is different from the php.ini-dist file in the fact that it features -; different values for several directives, in order to improve performance, while -; possibly breaking compatibility with the standard out-of-the-box behavior of -; PHP. Please make sure you read what's different, and modify your scripts -; accordingly, if you decide to use this file instead. -; -; - register_long_arrays = Off [Performance] -; Disables registration of the older (and deprecated) long predefined array -; variables ($HTTP_*_VARS). Instead, use the superglobals that were -; introduced in PHP 4.1.0 -; - display_errors = Off [Security] -; With this directive set to off, errors that occur during the execution of -; scripts will no longer be displayed as a part of the script output, and thus, -; will no longer be exposed to remote users. With some errors, the error message -; content may expose information about your script, web server, or database -; server that may be exploitable for hacking. Production sites should have this -; directive set to off. -; - log_errors = On [Security] -; This directive complements the above one. Any errors that occur during the -; execution of your script will be logged (typically, to your server's error log, -; but can be configured in several ways). Along with setting display_errors to off, -; this setup gives you the ability to fully understand what may have gone wrong, -; without exposing any sensitive information to remote users. -; - output_buffering = 4096 [Performance] -; Set a 4KB output buffer. Enabling output buffering typically results in less -; writes, and sometimes less packets sent on the wire, which can often lead to -; better performance. The gain this directive actually yields greatly depends -; on which Web server you're working with, and what kind of scripts you're using. -; - register_argc_argv = Off [Performance] -; Disables registration of the somewhat redundant $argv and $argc global -; variables. -; - magic_quotes_gpc = Off [Performance] -; Input data is no longer escaped with slashes so that it can be sent into -; SQL databases without further manipulation. Instead, you should use the -; function addslashes() on each input element you wish to send to a database. -; - variables_order = "GPCS" [Performance] -; The environment variables are not hashed into the $_ENV. To access -; environment variables, you can use getenv() instead. -; - error_reporting = E_ALL [Code Cleanliness, Security(?)] -; By default, PHP suppresses errors of type E_NOTICE. These error messages -; are emitted for non-critical errors, but that could be a symptom of a bigger -; problem. Most notably, this will cause error messages about the use -; of uninitialized variables to be displayed. -; - allow_call_time_pass_reference = Off [Code cleanliness] -; It's not possible to decide to force a variable to be passed by reference -; when calling a function. The PHP 4 style to do this is by making the -; function require the relevant argument by reference. +; PHP comes packaged with two INI files. One that is recommended to be used +; in production environments and one that is recommended to be used in +; development environments. + +; php.ini-production contains settings which hold security, performance and +; best practices at its core. But please be aware, these settings may break +; compatibility with older or less security conscience applications. We +; recommending using the production ini in production and testing environments. + +; php.ini-development is very similar to its production variant, except it's +; much more verbose when it comes to errors. We recommending using the +; development version only in development environments as errors shown to +; application users can inadvertently leak otherwise secure information. + +; This 2 files are provided, by RPM, in /usr/share/doc/php-common-*/ +; File used by RPM (the /etc/php.ini) is mainly the php.ini-production + +;;;;;;;;;;;;;;;;;;; +; Quick Reference ; +;;;;;;;;;;;;;;;;;;; +; The following are all the settings which are different in either the production +; or development versions of the INIs with respect to PHP's default behavior. +; Please see the actual settings later in the document for more details as to why +; we recommend these changes in PHP's behavior. + +; allow_call_time_pass_reference +; Default Value: On +; Development Value: Off +; Production Value: Off + +; display_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; display_startup_errors +; Default Value: Off +; Development Value: On +; Production Value: Off + +; error_reporting +; Default Value: E_ALL & ~E_NOTICE +; Development Value: E_ALL | E_STRICT +; Production Value: E_ALL & ~E_DEPRECATED + +; html_errors +; Default Value: On +; Development Value: On +; Production value: Off + +; log_errors +; Default Value: Off +; Development Value: On +; Production Value: On + +; magic_quotes_gpc +; Default Value: On +; Development Value: Off +; Production Value: Off + +; max_input_time +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) + +; output_buffering +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 + +; register_argc_argv +; Default Value: On +; Development Value: Off +; Production Value: Off + +; register_long_arrays +; Default Value: On +; Development Value: Off +; Production Value: Off + +; request_order +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" + +; session.bug_compat_42 +; Default Value: On +; Development Value: On +; Production Value: Off + +; session.bug_compat_warn +; Default Value: On +; Development Value: On +; Production Value: Off + +; session.gc_divisor +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 + +; session.hash_bits_per_character +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 + +; short_open_tag +; Default Value: On +; Development Value: Off +; Production Value: Off + +; track_errors +; Default Value: Off +; Development Value: On +; Production Value: Off + +; url_rewriter.tags +; Default Value: "a=href,area=href,frame=src,form=,fieldset=" +; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry" +; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry" + +; variables_order +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS" + +;;;;;;;;;;;;;;;;;;;; +; php.ini Options ; +;;;;;;;;;;;;;;;;;;;; +; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" +;user_ini.filename = ".user.ini" + +; To disable this feature set this option to empty value +;user_ini.filename = + +; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) +;user_ini.cache_ttl = 300 ;;;;;;;;;;;;;;;;;;;; ; Language Options ; ;;;;;;;;;;;;;;;;;;;; ; Enable the PHP scripting language engine under Apache. +; http://www.php.net/manual/en/apache.configuration.php#ini.engine engine = On -; Enable compatibility mode with Zend Engine 1 (PHP 4.x) -zend.ze1_compatibility_mode = Off - -; Allow the tags are recognized. -; NOTE: Using short tags should be avoided when developing applications or -; libraries that are meant for redistribution, or deployment on PHP -; servers which are not under your control, because short tags may not -; be supported on the target server. For portable, redistributable code, -; be sure not to use short tags. -short_open_tag = On +; This directive determines whether or not PHP will recognize code between +; tags as PHP source which should be processed as such. It's been +; recommended for several years that you not use the short tag "short cut" and +; instead to use the full tag combination. With the wide spread use +; of XML and use of these tags by other languages, the server can become easily +; confused and end up parsing the wrong code in the wrong context. But because +; this short cut has been a feature for such a long time, it's currently still +; supported for backwards compatibility, but we recommend you don't use them. +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://www.php.net/manual/en/ini.core.php#ini.short-open-tag +short_open_tag = Off ; Allow ASP-style <% %> tags. +; http://www.php.net/manual/en/ini.core.php#ini.asp-tags asp_tags = Off ; The number of significant digits displayed in floating point numbers. -precision = 14 +; http://www.php.net/manual/en/ini.core.php#ini.precision +precision = 14 ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) +; http://www.php.net/manual/en/ini.core.php#ini.y2k-compliance y2k_compliance = On -; Output buffering allows you to send header lines (including cookies) even -; after you send body content, at the price of slowing PHP's output layer a -; bit. You can enable output buffering during runtime by calling the output -; buffering functions. You can also enable output buffering for all files by -; setting this directive to On. If you wish to limit the size of the buffer -; to a certain size - you can use a maximum number of bytes instead of 'On', as -; a value for this directive (e.g., output_buffering=4096). +; Output buffering is a mechanism for controlling how much output data +; (excluding headers and cookies) PHP should keep internally before pushing that +; data to the client. If your application's output exceeds this setting, PHP +; will send that data in chunks of roughly the size you specify. +; Turning on this setting and managing its maximum buffer size can yield some +; interesting side-effects depending on your application and web server. +; You may be able to send headers and cookies after you've already sent output +; through print or echo. You also may see performance benefits if your server is +; emitting less packets due to buffered output versus PHP streaming the output +; as it gets it. On production servers, 4096 bytes is a good setting for performance +; reasons. +; Note: Output buffering can also be controlled via Output Buffering Control +; functions. +; Possible Values: +; On = Enabled and buffer is unlimited. (Use with caution) +; Off = Disabled +; Integer = Enables the buffer and sets its maximum size in bytes. +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 +; http://www.php.net/manual/en/outcontrol.configuration.php#ini.output-buffering output_buffering = 4096 ; You can redirect all of the output of your scripts to a function. For @@ -150,30 +268,35 @@ output_buffering = 4096 ; encoding will be transparently converted to the specified encoding. ; Setting any output handler automatically turns on output buffering. ; Note: People who wrote portable scripts should not depend on this ini -; directive. Instead, explicitly set the output handler using ob_start(). -; Using this ini directive may cause problems unless you know what script -; is doing. +; directive. Instead, explicitly set the output handler using ob_start(). +; Using this ini directive may cause problems unless you know what script +; is doing. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" -; and you cannot use both "ob_gzhandler" and "zlib.output_compression". +; and you cannot use both "ob_gzhandler" and "zlib.output_compression". ; Note: output_handler must be empty if this is set 'On' !!!! -; Instead you must use zlib.output_handler. +; Instead you must use zlib.output_handler. +; http://www.php.net/manual/en/outcontrol.configuration.php#ini.output-handler ;output_handler = ; Transparent output compression using the zlib library ; Valid values for this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB) ; Note: Resulting chunk size may vary due to nature of compression. PHP -; outputs chunks that are few hundreds bytes each as a result of -; compression. If you prefer a larger chunk size for better -; performance, enable output_buffering in addition. +; outputs chunks that are few hundreds bytes each as a result of +; compression. If you prefer a larger chunk size for better +; performance, enable output_buffering in addition. ; Note: You need to use zlib.output_handler instead of the standard -; output_handler, or otherwise the output will be corrupted. +; output_handler, or otherwise the output will be corrupted. +; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression zlib.output_compression = Off + +; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-compression-level ;zlib.output_compression_level = -1 ; You cannot specify additional output handlers if zlib.output_compression ; is activated here. This setting does the same as output_handler but in ; a different order. +; http://www.php.net/manual/en/zlib.configuration.php#ini.zlib.output-handler ;zlib.output_handler = ; Implicit flush tells PHP to tell the output layer to flush itself @@ -181,51 +304,56 @@ zlib.output_compression = Off ; PHP function flush() after each and every call to print() or echo() and each ; and every HTML block. Turning this option on has serious performance ; implications and is generally recommended for debugging purposes only. +; http://www.php.net/manual/en/outcontrol.configuration.php#ini.implicit-flush implicit_flush = Off ; The unserialize callback function will be called (with the undefined class' ; name as parameter), if the unserializer finds an undefined class -; which should be instantiated. -; A warning appears if the specified function is not defined, or if the -; function doesn't include/implement the missing class. +; which should be instantiated. A warning appears if the specified function is +; not defined, or if the function doesn't include/implement the missing class. ; So only set this entry, if you really want to implement such a ; callback-function. -unserialize_callback_func= +unserialize_callback_func = ; When floats & doubles are serialized store serialize_precision significant ; digits after the floating point. The default value ensures that when floats ; are decoded with unserialize, the data will remain the same. serialize_precision = 100 -; Whether to enable the ability to force arguments to be passed by reference -; at function call time. This method is deprecated and is likely to be -; unsupported in future versions of PHP/Zend. The encouraged method of -; specifying which arguments should be passed by reference is in the function -; declaration. You're encouraged to try and turn this option Off and make -; sure your scripts work properly with it in order to ensure they will work -; with future versions of the language (you will receive a warning each time -; you use this feature, and the argument will be passed by value instead of by -; reference). +; This directive allows you to enable and disable warnings which PHP will issue +; if you pass a value by reference at function call time. Passing values by +; reference at function call time is a deprecated feature which will be removed +; from PHP at some point in the near future. The acceptable method for passing a +; value by reference to a function is by declaring the reference in the functions +; definition, not at call time. This directive does not disable this feature, it +; only determines whether PHP will warn you about it or not. These warnings +; should enabled in development environments only. +; Default Value: On (Suppress warnings) +; Development Value: Off (Issue warnings) +; Production Value: Off (Issue warnings) +; http://www.php.net/manual/en/ini.core.php#ini.allow-call-time-pass-reference allow_call_time_pass_reference = Off -; ; Safe Mode -; +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode safe_mode = Off ; By default, Safe Mode does a UID compare check when ; opening files. If you want to relax this to a GID compare, ; then turn on safe_mode_gid. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode-gid safe_mode_gid = Off ; When safe_mode is on, UID/GID checks are bypassed when ; including files from this directory and its subdirectories. ; (directory must also be in include_path or full path must ; be used when including) +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode-include-dir safe_mode_include_dir = ; When safe_mode is on, only executables located in the safe_mode_exec_dir ; will be allowed to be executed via the exec family of functions. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode-exec-dir safe_mode_exec_dir = ; Setting certain environment variables may be a potential security breach. @@ -233,34 +361,39 @@ safe_mode_exec_dir = ; the user may only alter environment variables whose names begin with the ; prefixes supplied here. By default, users will only be able to set ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR). -; ; Note: If this directive is empty, PHP will let the user modify ANY -; environment variable! +; environment variable! +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode-allowed-env-vars safe_mode_allowed_env_vars = PHP_ ; This directive contains a comma-delimited list of environment variables that ; the end user won't be able to change using putenv(). These variables will be ; protected even if safe_mode_allowed_env_vars is set to allow to change them. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.safe-mode-protected-env-vars safe_mode_protected_env_vars = LD_LIBRARY_PATH ; open_basedir, if set, limits all file operations to the defined directory ; and below. This directive makes most sense if used in a per-directory ; or per-virtualhost web server configuration file. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.open-basedir ;open_basedir = ; This directive allows you to disable certain functions for security reasons. ; It receives a comma-delimited list of function names. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.disable-functions disable_functions = ; This directive allows you to disable certain classes for security reasons. ; It receives a comma-delimited list of class names. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. +; http://www.php.net/manual/en/ini.sect.safe-mode.php#ini.disable-classes disable_classes = ; Colors for Syntax Highlighting mode. Anything that's acceptable in ; would work. +; http://www.php.net/manual/en/misc.configuration.php#ini.syntax-highlighting ;highlight.string = #DD0000 ;highlight.comment = #FF9900 ;highlight.keyword = #007700 @@ -269,47 +402,81 @@ disable_classes = ;highlight.html = #000000 ; If enabled, the request will be allowed to complete even if the user aborts -; the request. Consider enabling it if executing long request, which may end up -; being interrupted by the user or a browser timing out. -; ignore_user_abort = On +; the request. Consider enabling it if executing long requests, which may end up +; being interrupted by the user or a browser timing out. PHP's default behavior +; is to disable this feature. +; http://www.php.net/manual/en/misc.configuration.php#ini.ignore-user-abort +;ignore_user_abort = On ; Determines the size of the realpath cache to be used by PHP. This value should ; be increased on systems where PHP opens many files to reflect the quantity of ; the file operations performed. -; realpath_cache_size=16k +; http://www.php.net/manual/en/ini.core.php#ini.realpath-cache-size +;realpath_cache_size = 16k ; Duration of time, in seconds for which to cache realpath information for a given ; file or directory. For systems with rarely changing files, consider increasing this ; value. -; realpath_cache_ttl=120 +; http://www.php.net/manual/en/ini.core.php#ini.realpath-cache-ttl +;realpath_cache_ttl = 120 + +;;;;;;;;;;;;;;;;; +; Miscellaneous ; +;;;;;;;;;;;;;;;;; -; -; Misc -; ; Decides whether PHP may expose the fact that it is installed on the server ; (e.g. by adding its signature to the Web server header). It is no security ; threat in any way, but it makes it possible to determine whether you use PHP ; on your server or not. +; http://www.php.net/manual/en/ini.core.php#ini.expose-php expose_php = On - ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; -max_execution_time = 30 ; Maximum execution time of each script, in seconds -max_input_time = 60 ; Maximum amount of time each script may spend parsing request data -;max_input_nesting_level = 64 ; Maximum input variable nesting level -memory_limit = 32M ; Maximum amount of memory a script may consume (16MB) - +; Maximum execution time of each script, in seconds +; http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time +max_execution_time = 30 + +; Maximum amount of time each script may spend parsing request data. It's a good +; idea to limit this time on productions servers in order to eliminate unexpectedly +; long running scripts. +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) +; http://www.php.net/manual/en/info.configuration.php#ini.max-input-time +max_input_time = 60 + +; Maximum input variable nesting level +; http://www.php.net/manual/en/info.configuration.php#ini.max-input-nesting-level +;max_input_nesting_level = 64 + +; Maximum amount of memory a script may consume (128MB) +; http://www.php.net/manual/en/ini.core.php#ini.memory-limit +memory_limit = 128M ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Error handling and logging ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; error_reporting is a bit-field. Or each number up to get desired error -; reporting level -; E_ALL - All errors and warnings (doesn't include E_STRICT) +; This directive informs PHP of which errors, warnings and notices you would like +; it to take action for. The recommended way of setting values for this +; directive is through the use of the error level constants and bitwise +; operators. The error level constants are below here for convenience as well as +; some common settings and their meanings. +; By default, PHP is set to take action on all errors, notices and warnings EXCEPT +; those related to E_NOTICE and E_STRICT, which together cover best practices and +; recommended coding standards in PHP. For performance reasons, this is the +; recommend error reporting setting. Your production server shouldn't be wasting +; resources complaining about best practices and coding standards. That's what +; development servers and development settings are for. +; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This +; means it pretty much reports everything which is exactly what you want during +; development and early testing. +; +; Error Level Constants: +; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0) ; E_ERROR - fatal run-time errors ; E_RECOVERABLE_ERROR - almost fatal run-time errors ; E_WARNING - run-time warnings (non-fatal errors) @@ -330,144 +497,223 @@ memory_limit = 32M ; Maximum amount ; E_USER_ERROR - user-generated error message ; E_USER_WARNING - user-generated warning message ; E_USER_NOTICE - user-generated notice message -; -; Examples: -; -; - Show all errors, except for notices and coding standards warnings -; -;error_reporting = E_ALL & ~E_NOTICE -; -; - Show all errors, except for notices -; -;error_reporting = E_ALL & ~E_NOTICE | E_STRICT -; -; - Show only errors -; -;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR -; -; - Show all errors, except coding standards warnings -; -error_reporting = E_ALL - -; Print out errors (as a part of the output). For production web sites, -; you're strongly encouraged to turn this feature off, and use error logging -; instead (see below). Keeping display_errors enabled on a production web site -; may reveal security information to end users, such as file paths on your Web -; server, your database schema or other information. -; -; possible values for display_errors: -; -; Off - Do not display any errors -; stderr - Display errors to STDERR (affects only CGI/CLI binaries!) -; On or stdout - Display errors to STDOUT (default) -; -; To output errors to STDERR with CGI/CLI: -;display_errors = "stderr" -; -; Default -; +; E_DEPRECATED - warn about code that will not work in future versions +; of PHP +; E_USER_DEPRECATED - user-generated deprecation warnings +; +; Common Values: +; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.) +; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices) +; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) +; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.) +; Default Value: E_ALL & ~E_NOTICE +; Development Value: E_ALL | E_STRICT +; Production Value: E_ALL & ~E_DEPRECATED +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting +error_reporting = E_ALL & ~E_DEPRECATED + +; This directive controls whether or not and where PHP will output errors, +; notices and warnings too. Error output is very useful during development, but +; it could be very dangerous in production environments. Depending on the code +; which is triggering the error, sensitive information could potentially leak +; out of your application such as database usernames and passwords or worse. +; It's recommended that errors be logged on production servers rather than +; having the errors sent to STDOUT. +; Possible Values: +; Off = Do not display any errors +; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) +; On or stdout = Display errors to STDOUT +; Default Value: On +; Development Value: On +; Production Value: Off +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors display_errors = Off -; Even when display_errors is on, errors that occur during PHP's startup -; sequence are not displayed. It's strongly recommended to keep -; display_startup_errors off, except for when debugging. +; The display of errors which occur during PHP's startup sequence are handled +; separately from display_errors. PHP's default behavior is to suppress those +; errors from clients. Turning the display of startup errors on can be useful in +; debugging configuration problems. But, it's strongly recommended that you +; leave this setting off on production servers. +; Default Value: Off +; Development Value: On +; Production Value: Off +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors display_startup_errors = Off -; Log errors into a log file (server-specific log, stderr, or error_log (below)) -; As stated above, you're strongly advised to use error logging in place of -; error displaying on production web sites. +; Besides displaying errors, PHP can also log errors to locations such as a +; server-specific log, STDERR, or a location specified by the error_log +; directive found below. While errors should not be displayed on productions +; servers they should still be monitored and logging is a great way to do that. +; Default Value: Off +; Development Value: On +; Production Value: On +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors log_errors = On ; Set maximum length of log_errors. In error_log information about the source is ; added. The default is 1024 and 0 allows to not apply any maximum length at all. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.log-errors-max-len log_errors_max_len = 1024 ; Do not log repeated messages. Repeated errors must occur in same file on same -; line until ignore_repeated_source is set true. +; line unless ignore_repeated_source is set true. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-errors ignore_repeated_errors = Off ; Ignore source of message when ignoring repeated messages. When this setting ; is On you will not log errors with repeated messages from different files or ; source lines. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.ignore-repeated-source ignore_repeated_source = Off ; If this parameter is set to Off, then memory leaks will not be shown (on ; stdout or in the log). This has only effect in a debug compile, and if ; error reporting includes E_WARNING in the allowed list +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.report-memleaks report_memleaks = On +; This setting is on by default. ;report_zend_debug = 0 -; Store the last error/warning message in $php_errormsg (boolean). +; Store the last error/warning message in $php_errormsg (boolean). Setting this value +; to On can assist in debugging and is appropriate for development servers. It should +; however be disabled on production servers. +; Default Value: Off +; Development Value: On +; Production Value: Off +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.track-errors track_errors = Off -; Disable the inclusion of HTML tags in error messages. -; Note: Never use this feature for production boxes. -;html_errors = Off +; Turn off normal error reporting and emit XML-RPC error XML +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.xmlrpc-errors +;xmlrpc_errors = 0 + +; An XML-RPC faultCode +;xmlrpc_error_number = 0 + +; When PHP displays or logs an error, it has the capability of inserting html +; links to documentation related to that error. This directive controls whether +; those HTML links appear in error messages or not. For performance and security +; reasons, it's recommended you disable this on production servers. +; Default Value: On +; Development Value: On +; Production value: Off +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.html-errors +html_errors = Off ; If html_errors is set On PHP produces clickable error messages that direct ; to a page describing the error or function causing the error in detail. ; You can download a copy of the PHP manual from http://www.php.net/docs.php ; and change docref_root to the base URL of your local copy including the ; leading '/'. You must also specify the file extension being used including -; the dot. +; the dot. PHP's default behavior is to leave these settings empty. ; Note: Never use this feature for production boxes. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-root +; Examples ;docref_root = "/phpmanual/" -;docref_ext = .html -; String to output before an error message. -;error_prepend_string = "" +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.docref-ext +;docref_ext = .html -; String to output after an error message. +; String to output before an error message. PHP's default behavior is to leave +; this setting blank. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-prepend-string +; Example: +;error_prepend_string = "" + +; String to output after an error message. PHP's default behavior is to leave +; this setting blank. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-append-string +; Example: ;error_append_string = "" -; Log errors to specified file. -;error_log = filename - +; Log errors to specified file. PHP's default behavior is to leave this value +; empty. +; http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-log +; Example: +;error_log = php_errors.log ; Log errors to syslog (Event Log on NT, not valid in Windows 95). ;error_log = syslog - ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; -; + ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 ; The separator used in PHP generated URLs to separate arguments. -; Default is "&". +; PHP's default setting is "&". +; http://www.php.net/manual/en/ini.core.php#ini.arg-separator.output +; Example: ;arg_separator.output = "&" ; List of separator(s) used by PHP to parse input URLs into variables. -; Default is "&". +; PHP's default setting is "&". ; NOTE: Every character in this directive is considered as separator! +; http://www.php.net/manual/en/ini.core.php#ini.arg-separator.input +; Example: ;arg_separator.input = ";&" -; This directive describes the order in which PHP registers GET, POST, Cookie, -; Environment and Built-in variables (G, P, C, E & S respectively, often -; referred to as EGPCS or GPC). Registration is done from left to right, newer -; values override older values. -variables_order = "EGPCS" +; This directive determines which super global arrays are registered when PHP +; starts up. If the register_globals directive is enabled, it also determines +; what order variables are populated into the global space. G,P,C,E & S are +; abbreviations for the following respective super globals: GET, POST, COOKIE, +; ENV and SERVER. There is a performance penalty paid for the registration of +; these arrays and because ENV is not as commonly used as the others, ENV is +; is not recommended on productions servers. You can still get access to +; the environment variables through getenv() should you need to. +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS"; +; http://www.php.net/manual/en/ini.core.php#ini.variables-order +variables_order = "GPCS" + +; This directive determines which super global data (G,P,C,E & S) should +; be registered into the super global array REQUEST. If so, it also determines +; the order in which that data is registered. The values for this directive are +; specified in the same manner as the variables_order directive, EXCEPT one. +; Leaving this value empty will cause PHP to use the value set in the +; variables_order directive. It does not mean it will leave the super globals +; array REQUEST empty. +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" +; http://www.php.net/manual/en/ini.core.php#ini.request-order +request_order = "GP" ; Whether or not to register the EGPCS variables as global variables. You may ; want to turn this off if you don't want to clutter your scripts' global scope ; with user data. This makes most sense when coupled with track_vars - in which ; case you can access all of the GPC variables through the $HTTP_*_VARS[], ; variables. -; ; You should do your best to write your scripts so that they do not require ; register_globals to be on; Using form variables as globals can easily lead ; to possible security problems, if the code is not very well thought of. +; http://www.php.net/manual/en/ini.core.php#ini.register-globals register_globals = Off -; Whether or not to register the old-style input arrays, HTTP_GET_VARS -; and friends. If you're not using them, it's recommended to turn them off, -; for performance reasons. +; Determines whether the deprecated long $HTTP_*_VARS type predefined variables +; are registered by PHP or not. As they are deprecated, we obviously don't +; recommend you use them. They are on by default for compatibility reasons but +; they are not recommended on production servers. +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://www.php.net/manual/en/ini.core.php#ini.register-long-arrays register_long_arrays = Off -; This directive tells PHP whether to declare the argv&argc variables (that -; would contain the GET information). If you don't use these variables, you -; should turn it off for increased performance. +; This directive determines whether PHP registers $argv & $argc each time it +; runs. $argv contains an array of all the arguments passed to PHP when a script +; is invoked. $argc contains an integer representing the number of arguments +; that were passed when the script was invoked. These arrays are extremely +; useful when running scripts from the command line. When this directive is +; enabled, registering these variables consumes CPU cycles and memory each time +; a script is executed. For performance reasons, this feature should be disabled +; on production servers. +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://www.php.net/manual/en/ini.core.php#ini.register-argc-argv register_argc_argv = Off ; When enabled, the SERVER and ENV variables are created when they're first @@ -475,25 +721,43 @@ register_argc_argv = Off ; are not used within a script, having this directive on will result in a ; performance gain. The PHP directives register_globals, register_long_arrays, ; and register_argc_argv must be disabled for this directive to have any affect. +; http://www.php.net/manual/en/ini.core.php#ini.auto-globals-jit auto_globals_jit = On ; Maximum size of POST data that PHP will accept. +; http://www.php.net/manual/en/ini.core.php#ini.post-max-size post_max_size = 8M -; Magic quotes -; - -; Magic quotes for incoming GET/POST/Cookie data. +; Magic quotes are a preprocessing feature of PHP where PHP will attempt to +; escape any character sequences in GET, POST, COOKIE and ENV data which might +; otherwise corrupt data being placed in resources such as databases before +; making that data available to you. Because of character encoding issues and +; non-standard SQL implementations across many databases, it's not currently +; possible for this feature to be 100% accurate. PHP's default behavior is to +; enable the feature. We strongly recommend you use the escaping mechanisms +; designed specifically for the database your using instead of relying on this +; feature. Also note, this feature has been deprecated as of PHP 5.3.0 and is +; scheduled for removal in PHP 6. +; Default Value: On +; Development Value: Off +; Production Value: Off +; http://www.php.net/manual/en/info.configuration.php#ini.magic-quotes-gpc magic_quotes_gpc = Off ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. +; http://www.php.net/manual/en/info.configuration.php#ini.magic-quotes-runtime magic_quotes_runtime = Off ; Use Sybase-style magic quotes (escape ' with '' instead of \'). +; http://www.php.net/manual/en/sybase.configuration.php#ini.magic-quotes-sybase magic_quotes_sybase = Off -; Automatically add files before or after any PHP document. +; Automatically add files before PHP document. +; http://www.php.net/manual/en/ini.core.php#ini.auto-prepend-file auto_prepend_file = + +; Automatically add files after PHP document. +; http://www.php.net/manual/en/ini.core.php#ini.auto-append-file auto_append_file = ; As of 4.0b4, PHP always outputs a character encoding by default in @@ -501,13 +765,18 @@ auto_append_file = ; set it to be empty. ; ; PHP's built-in default is text/html +; http://www.php.net/manual/en/ini.core.php#ini.default-mimetype default_mimetype = "text/html" + +; PHP's default character set is set to empty. +; http://www.php.net/manual/en/ini.core.php#ini.default-charset ;default_charset = "iso-8859-1" -; Always populate the $HTTP_RAW_POST_DATA variable. +; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is +; to disable this feature. +; http://www.php.net/manual/en/ini.core.php#ini.always-populate-raw-post-data ;always_populate_raw_post_data = On - ;;;;;;;;;;;;;;;;;;;;;;;;; ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;; @@ -517,97 +786,120 @@ default_mimetype = "text/html" ; ; Windows: "\path1;\path2" ;include_path = ".;c:\php\includes" +; +; PHP's default setting for include_path is ".;/path/to/php/pear" +; http://www.php.net/manual/en/ini.core.php#ini.include-path ; The root of the PHP pages, used only if nonempty. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root ; if you are running php as a CGI under any web server (other than IIS) ; see documentation for security issues. The alternate is to use the ; cgi.force_redirect configuration below +; http://www.php.net/manual/en/ini.core.php#ini.doc-root doc_root = ; The directory under which PHP opens the script using /~username used only ; if nonempty. +; http://www.php.net/manual/en/ini.core.php#ini.user-dir user_dir = +; Directory in which the loadable extensions (modules) reside. +; http://www.php.net/manual/en/ini.core.php#ini.extension-dir +; extension_dir = "./" + ; Whether or not to enable the dl() function. The dl() function does NOT work ; properly in multithreaded servers, such as IIS or Zeus, and is automatically ; disabled on them. -enable_dl = On +; http://www.php.net/manual/en/info.configuration.php#ini.enable-dl +enable_dl = Off ; cgi.force_redirect is necessary to provide security running PHP as a CGI under ; most web servers. Left undefined, PHP turns this on by default. You can ; turn it off here AT YOUR OWN RISK ; **You CAN safely turn this off for IIS, in fact, you MUST.** -; cgi.force_redirect = 1 +; http://www.php.net/manual/en/ini.core.php#ini.cgi.force-redirect +;cgi.force_redirect = 1 ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with -; every request. -; cgi.nph = 1 +; every request. PHP's default behavior is to disable this feature. +;cgi.nph = 1 ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP ; will look for to know it is OK to continue execution. Setting this variable MAY ; cause security issues, KNOW WHAT YOU ARE DOING FIRST. -; cgi.redirect_status_env = ; +; http://www.php.net/manual/en/ini.core.php#ini.cgi.redirect-status-env +;cgi.redirect_status_env = ; ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting -; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting +; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. -; cgi.fix_pathinfo=1 +; http://www.php.net/manual/en/ini.core.php#ini.cgi.fix-pathinfo +;cgi.fix_pathinfo=1 ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate ; security tokens of the calling client. This allows IIS to define the ; security context that the request runs under. mod_fastcgi under Apache ; does not currently support this feature (03/17/2002) ; Set to 1 if running under IIS. Default is zero. -; fastcgi.impersonate = 1; +; http://www.php.net/manual/en/ini.core.php#ini.fastcgi.impersonate +;fastcgi.impersonate = 1; -; Disable logging through FastCGI connection -; fastcgi.logging = 0 +; Disable logging through FastCGI connection. PHP's default behavior is to enable +; this feature. +;fastcgi.logging = 0 ; cgi.rfc2616_headers configuration option tells PHP what type of headers to ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that ; is supported by Apache. When this option is set to 1 PHP will send ; RFC2616 compliant header. ; Default is zero. +; http://www.php.net/manual/en/ini.core.php#ini.cgi.rfc2616-headers ;cgi.rfc2616_headers = 0 - ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; ; Whether to allow HTTP file uploads. +; http://www.php.net/manual/en/ini.core.php#ini.file-uploads file_uploads = On ; Temporary directory for HTTP uploaded files (will use system default if not ; specified). +; http://www.php.net/manual/en/ini.core.php#ini.upload-tmp-dir ;upload_tmp_dir = ; Maximum allowed size for uploaded files. +; http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize upload_max_filesize = 2M - ;;;;;;;;;;;;;;;;;; ; Fopen wrappers ; ;;;;;;;;;;;;;;;;;; ; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen allow_url_fopen = On ; Whether to allow include/require to open URLs (like http:// or ftp://) as files. +; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-include allow_url_include = Off -; Define the anonymous ftp password (your email address) +; Define the anonymous ftp password (your email address). PHP's default setting +; for this is empty. +; http://www.php.net/manual/en/filesystem.configuration.php#ini.from ;from="john at doe.com" -; Define the User-Agent string -; user_agent="PHP" +; Define the User-Agent string. PHP's default setting for this is empty. +; http://www.php.net/manual/en/filesystem.configuration.php#ini.user-agent +;user_agent="PHP" ; Default timeout for socket based streams (seconds) +; http://www.php.net/manual/en/filesystem.configuration.php#ini.default-socket-timeout default_socket_timeout = 60 ; If your scripts have to deal with files from Macintosh systems, @@ -615,27 +907,29 @@ default_socket_timeout = 60 ; unix or win32 systems, setting this flag will cause PHP to ; automatically detect the EOL character in those files so that ; fgets() and file() will work regardless of the source of the file. -; auto_detect_line_endings = Off - +; http://www.php.net/manual/en/filesystem.configuration.php#ini.auto-detect-line-endings +;auto_detect_line_endings = Off ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; -; + ; If you wish to have an extension loaded automatically, use the following ; syntax: ; ; extension=modulename.extension ; -; For example: +; For example ; ; extension=msql.so ; -; Note that it should be the name of the module only; no directory information -; needs to go here. Specify the location of the extension with the -; extension_dir directive above. +; ... or with a path: +; +; extension=/path/to/extension/msql.so +; +; If you only provide the name of the extension, PHP will look for it in its +; default extension directory. - ;;;; ; Note: packaged extension modules are now loaded via the .ini files ; found in the directory /etc/php.d; these are loaded by default. @@ -648,16 +942,26 @@ default_socket_timeout = 60 [Date] ; Defines the default timezone used by the date functions +; http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone ;date.timezone = +; http://www.php.net/manual/en/datetime.configuration.php#ini.date.default-latitude ;date.default_latitude = 31.7667 + +; http://www.php.net/manual/en/datetime.configuration.php#ini.date.default-longitude ;date.default_longitude = 35.2333 +; http://www.php.net/manual/en/datetime.configuration.php#ini.date.sunrise-zenith ;date.sunrise_zenith = 90.583333 + +; http://www.php.net/manual/en/datetime.configuration.php#ini.date.sunset-zenith ;date.sunset_zenith = 90.583333 [filter] +; http://www.php.net/manual/en/filter.configuration.php#ini.filter.default ;filter.default = unsafe_raw + +; http://www.php.net/manual/en/filter.configuration.php#ini.filter.default-flags ;filter.default_flags = [iconv] @@ -665,38 +969,62 @@ default_socket_timeout = 60 ;iconv.internal_encoding = ISO-8859-1 ;iconv.output_encoding = ISO-8859-1 +[intl] +;intl.default_locale = + [sqlite] +; http://www.php.net/manual/en/sqlite.configuration.php#ini.sqlite.assoc-case ;sqlite.assoc_case = 0 -[xmlrpc] -;xmlrpc_error_number = 0 -;xmlrpc_errors = 0 +[sqlite3] +;sqlite3.extension_dir = [Pcre] ;PCRE library backtracking limit. +; http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.backtrack-limit ;pcre.backtrack_limit=100000 ;PCRE library recursion limit. ;Please note that if you set this value to a high number you may consume all ;the available process stack and eventually crash PHP (due to reaching the ;stack size limit imposed by the Operating System). +; http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.recursion-limit ;pcre.recursion_limit=100000 +[Pdo] +; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" +; http://www.php.net/manual/en/ref.pdo-odbc.php#ini.pdo-odbc.connection-pooling +;pdo_odbc.connection_pooling=strict + +[Phar] +; http://www.php.net/manual/en/phar.configuration.php#ini.phar.readonly +;phar.readonly = On + +; http://www.php.net/manual/en/phar.configuration.php#ini.phar.require-hash +;phar.require_hash = On + +;phar.cache_list = + [Syslog] ; Whether or not to define the various syslog variables (e.g. $LOG_PID, ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In ; runtime, you can define these variables by calling define_syslog_variables(). +; http://www.php.net/manual/en/network.configuration.php#ini.define-syslog-variables define_syslog_variables = Off [mail function] ; For Win32 only. +; http://www.php.net/manual/en/mail.configuration.php#ini.smtp SMTP = localhost +; http://www.php.net/manual/en/mail.configuration.php#ini.smtp-port smtp_port = 25 ; For Win32 only. +; http://www.php.net/manual/en/mail.configuration.php#ini.sendmail-from ;sendmail_from = me at example.com ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +; http://www.php.net/manual/en/mail.configuration.php#ini.sendmail-path sendmail_path = /usr/sbin/sendmail -t -i ; Force the addition of the specified parameters to be passed as extra parameters @@ -704,59 +1032,86 @@ sendmail_path = /usr/sbin/sendmail -t -i ; the 5th parameter to mail(), even in safe mode. ;mail.force_extra_parameters = +; Add X-PHP-Originaiting-Script: that will include uid of the script followed by the filename +mail.add_x_header = On + +; Log all mail() calls including the full path of the script, line #, to address and headers +;mail.log = + [SQL] +; http://www.php.net/manual/en/ini.core.php#ini.sql.safe-mode sql.safe_mode = Off [ODBC] +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-db ;odbc.default_db = Not yet implemented + +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-user ;odbc.default_user = Not yet implemented + +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.default-pw ;odbc.default_pw = Not yet implemented ; Allow or prevent persistent links. +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.allow-persistent odbc.allow_persistent = On ; Check that a connection is still valid before reuse. +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.check-persistent odbc.check_persistent = On ; Maximum number of persistent links. -1 means no limit. +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.max-persistent odbc.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.max-links odbc.max_links = -1 ; Handling of LONG fields. Returns number of bytes to variables. 0 means ; passthru. +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.defaultlrl odbc.defaultlrl = 4096 ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation ; of uodbc.defaultlrl and uodbc.defaultbinmode +; http://www.php.net/manual/en/odbc.configuration.php#ini.uodbc.defaultbinmode odbc.defaultbinmode = 1 +;birdstep.max_links = -1 + [MySQL] ; Allow or prevent persistent links. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.allow-persistent mysql.allow_persistent = On ; Maximum number of persistent links. -1 means no limit. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.max-persistent mysql.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.max-links mysql.max_links = -1 ; Default port number for mysql_connect(). If unset, mysql_connect() will use ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look ; at MYSQL_PORT. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-port mysql.default_port = ; Default socket name for local MySQL connects. If empty, uses the built-in ; MySQL defaults. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-socket mysql.default_socket = ; Default host for mysql_connect() (doesn't apply in safe mode). +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-host mysql.default_host = ; Default user for mysql_connect() (doesn't apply in safe mode). +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-user mysql.default_user = ; Default password for mysql_connect() (doesn't apply in safe mode). @@ -764,34 +1119,42 @@ mysql.default_user = ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password") ; and reveal this password! And of course, any users with read access to this ; file will be able to reveal the password as well. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.default-password mysql.default_password = ; Maximum time (in seconds) for connect timeout. -1 means no limit +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.connect-timeout mysql.connect_timeout = 60 ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and ; SQL-Errors will be displayed. +; http://www.php.net/manual/en/mysql.configuration.php#ini.mysql.trace-mode mysql.trace_mode = Off [MySQLi] ; Maximum number of links. -1 means no limit. +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.max-links mysqli.max_links = -1 ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look ; at MYSQL_PORT. +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-port mysqli.default_port = 3306 ; Default socket name for local MySQL connects. If empty, uses the built-in ; MySQL defaults. +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-socket mysqli.default_socket = ; Default host for mysql_connect() (doesn't apply in safe mode). +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-host mysqli.default_host = ; Default user for mysql_connect() (doesn't apply in safe mode). +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-user mysqli.default_user = ; Default password for mysqli_connect() (doesn't apply in safe mode). @@ -799,130 +1162,79 @@ mysqli.default_user = ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") ; and reveal this password! And of course, any users with read access to this ; file will be able to reveal the password as well. +; http://www.php.net/manual/en/mysqli.configuration.php#ini.mysqli.default-pw mysqli.default_pw = ; Allow or prevent reconnect mysqli.reconnect = Off -[mSQL] -; Allow or prevent persistent links. -msql.allow_persistent = On - -; Maximum number of persistent links. -1 means no limit. -msql.max_persistent = -1 - -; Maximum number of links (persistent+non persistent). -1 means no limit. -msql.max_links = -1 - [PostgresSQL] ; Allow or prevent persistent links. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.allow-persistent pgsql.allow_persistent = On ; Detect broken persistent links always with pg_pconnect(). ; Auto reset feature requires a little overheads. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.auto-reset-persistent pgsql.auto_reset_persistent = Off ; Maximum number of persistent links. -1 means no limit. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.max-persistent pgsql.max_persistent = -1 ; Maximum number of links (persistent+non persistent). -1 means no limit. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.max-links pgsql.max_links = -1 ; Ignore PostgreSQL backends Notice message or not. ; Notice message logging require a little overheads. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.ignore-notice pgsql.ignore_notice = 0 ; Log PostgreSQL backends Noitce message or not. ; Unless pgsql.ignore_notice=0, module cannot log notice message. +; http://www.php.net/manual/en/pgsql.configuration.php#ini.pgsql.log-notice pgsql.log_notice = 0 -[Sybase] -; Allow or prevent persistent links. -sybase.allow_persistent = On - -; Maximum number of persistent links. -1 means no limit. -sybase.max_persistent = -1 - -; Maximum number of links (persistent + non-persistent). -1 means no limit. -sybase.max_links = -1 - -;sybase.interface_file = "/usr/sybase/interfaces" - -; Minimum error severity to display. -sybase.min_error_severity = 10 - -; Minimum message severity to display. -sybase.min_message_severity = 10 - -; Compatibility mode with old versions of PHP 3.0. -; If on, this will cause PHP to automatically assign types to results according -; to their Sybase type, instead of treating them all as strings. This -; compatibility mode will probably not stay around forever, so try applying -; whatever necessary changes to your code, and turn it off. -sybase.compatability_mode = Off - [Sybase-CT] ; Allow or prevent persistent links. +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.allow-persistent sybct.allow_persistent = On ; Maximum number of persistent links. -1 means no limit. +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.max-persistent sybct.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.max-links sybct.max_links = -1 ; Minimum server message severity to display. +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.min-server-severity sybct.min_server_severity = 10 ; Minimum client message severity to display. +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.min-client-severity sybct.min_client_severity = 10 +; Set per-context timeout +; http://www.php.net/manual/en/sybase.configuration.php#ini.sybct.timeout +;sybct.timeout= + +;sybct.packet_size + [bcmath] ; Number of decimal digits for all bcmath functions. +; http://www.php.net/manual/en/bc.configuration.php#ini.bcmath.scale bcmath.scale = 0 [browscap] +; http://www.php.net/manual/en/misc.configuration.php#ini.browscap ;browscap = extra/browscap.ini -[Informix] -; Default host for ifx_connect() (doesn't apply in safe mode). -ifx.default_host = - -; Default user for ifx_connect() (doesn't apply in safe mode). -ifx.default_user = - -; Default password for ifx_connect() (doesn't apply in safe mode). -ifx.default_password = - -; Allow or prevent persistent links. -ifx.allow_persistent = On - -; Maximum number of persistent links. -1 means no limit. -ifx.max_persistent = -1 - -; Maximum number of links (persistent + non-persistent). -1 means no limit. -ifx.max_links = -1 - -; If on, select statements return the contents of a text blob instead of its id. -ifx.textasvarchar = 0 - -; If on, select statements return the contents of a byte blob instead of its id. -ifx.byteasvarchar = 0 - -; Trailing blanks are stripped from fixed-length char columns. May help the -; life of Informix SE users. -ifx.charasvarchar = 0 - -; If on, the contents of text and byte blobs are dumped to a file instead of -; keeping them in memory. -ifx.blobinfile = 0 - -; NULL's are returned as empty strings, unless this is set to 1. In that case, -; NULL's are returned as string 'NULL'. -ifx.nullformat = 0 - [Session] ; Handler used to store/retrieve data. +; http://www.php.net/manual/en/session.configuration.php#ini.session.save-handler session.save_handler = files ; Argument passed to save_handler. In the case of files, this is the path @@ -951,49 +1263,80 @@ session.save_handler = files ; ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. +; http://www.php.net/manual/en/session.configuration.php#ini.session.save-path session.save_path = "/var/lib/php/session" ; Whether to use cookies. +; http://www.php.net/manual/en/session.configuration.php#ini.session.use-cookies session.use_cookies = 1 +; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-secure ;session.cookie_secure = -; This option enables administrators to make their users invulnerable to -; attacks which involve passing session ids in URLs; defaults to 0. -; session.use_only_cookies = 1 +; This option forces PHP to fetch and use a cookie for storing and maintaining +; the session id. We encourage this operation as it's very helpful in combatting +; session hijacking when not specifying and managing your own session id. It is +; not the end all be all of session hijacking defense, but it's a good start. +; http://www.php.net/manual/en/session.configuration.php#ini.session.use-only-cookies +session.use_only_cookies = 1 ; Name of the session (used as cookie name). +; http://www.php.net/manual/en/session.configuration.php#ini.session.name session.name = PHPSESSID ; Initialize session on request startup. +; http://www.php.net/manual/en/session.configuration.php#ini.session.auto-start session.auto_start = 0 ; Lifetime in seconds of cookie or, if 0, until browser is restarted. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime session.cookie_lifetime = 0 ; The path for which the cookie is valid. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-path session.cookie_path = / ; The domain for which the cookie is valid. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-domain session.cookie_domain = ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-httponly session.cookie_httponly = ; Handler used to serialize data. php is the standard serializer of PHP. +; http://www.php.net/manual/en/session.configuration.php#ini.session.serialize-handler session.serialize_handler = php -; Define the probability that the 'garbage collection' process is started -; on every session initialization. -; The probability is calculated by using gc_probability/gc_divisor, -; e.g. 1/100 means there is a 1% chance that the GC process starts -; on each request. - +; Defines the probability that the 'garbage collection' process is started +; on every session initialization. The probability is calculated by using +; gc_probability/gc_divisor. Where session.gc_probability is the numerator +; and gc_divisor is the denominator in the equation. Setting this value to 1 +; when the session.gc_divisor value is 100 will give you approximately a 1% chance +; the gc will run on any give request. +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-probability session.gc_probability = 1 -session.gc_divisor = 1000 + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using the following equation: +; gc_probability/gc_divisor. Where session.gc_probability is the numerator and +; session.gc_divisor is the denominator in the equation. Setting this value to 1 +; when the session.gc_divisor value is 100 will give you approximately a 1% chance +; the gc will run on any give request. Increasing this value to 1000 will give you +; a 0.1% chance the gc will run on any give request. For high volume production servers, +; this is a more efficient approach. +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 +; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-divisor +session.gc_divisor = 1000 ; After this number of seconds, stored data will be seen as 'garbage' and ; cleaned up by the garbage collection process. +; http://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime session.gc_maxlifetime = 1440 ; NOTE: If you are using the subdirectory option for storing session files @@ -1005,34 +1348,55 @@ session.gc_maxlifetime = 1440 ; cd /path/to/sessions; find -cmin +24 | xargs rm ; PHP 4.2 and less have an undocumented feature/bug that allows you to -; to initialize a session variable in the global scope, albeit register_globals +; to initialize a session variable in the global scope, even when register_globals ; is disabled. PHP 4.3 and later will warn you, if this feature is used. ; You can disable the feature and the warning separately. At this time, -; the warning is only displayed, if bug_compat_42 is enabled. - -session.bug_compat_42 = 0 -session.bug_compat_warn = 1 +; the warning is only displayed, if bug_compat_42 is enabled. This feature +; introduces some serious security problems if not handled correctly. It's +; recommended that you do not use this feature on production servers. But you +; should enable this on development servers and enable the warning as well. If you +; do not enable the feature on development servers, you won't be warned when it's +; used and debugging errors caused by this can be difficult to track down. +; Default Value: On +; Development Value: On +; Production Value: Off +; http://www.php.net/manual/en/session.configuration.php#ini.session.bug-compat-42 +session.bug_compat_42 = Off + +; This setting controls whether or not you are warned by PHP when initializing a +; session value into the global space. session.bug_compat_42 must be enabled before +; these warnings can be issued by PHP. See the directive above for more information. +; Default Value: On +; Development Value: On +; Production Value: Off +; http://www.php.net/manual/en/session.configuration.php#ini.session.bug-compat-warn +session.bug_compat_warn = Off ; Check HTTP Referer to invalidate externally stored URLs containing ids. ; HTTP_REFERER has to contain this substring for the session to be ; considered as valid. +; http://www.php.net/manual/en/session.configuration.php#ini.session.referer-check session.referer_check = ; How many bytes to read from the file. +; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-length session.entropy_length = 0 ; Specified here to create the session id. +; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-file +;session.entropy_file = /dev/urandom session.entropy_file = +; http://www.php.net/manual/en/session.configuration.php#ini.session.entropy-length ;session.entropy_length = 16 -;session.entropy_file = /dev/urandom - ; Set to {nocache,private,public,} to determine HTTP caching aspects ; or leave this empty to avoid sending anti-caching headers. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cache-limiter session.cache_limiter = nocache ; Document expires after n minutes. +; http://www.php.net/manual/en/session.configuration.php#ini.session.cache-expire session.cache_expire = 180 ; trans sid support is disabled by default. @@ -1044,19 +1408,26 @@ session.cache_expire = 180 ; in publically accessible computer. ; - User may access your site with the same session ID ; always using URL stored in browser's history or bookmarks. +; http://www.php.net/manual/en/session.configuration.php#ini.session.use-trans-sid session.use_trans_sid = 0 -; Select a hash function -; 0: MD5 (128 bits) -; 1: SHA-1 (160 bits) +; Select a hash function for use in generating session ids. +; Possible Values +; 0 (MD5 128 bits) +; 1 (SHA-1 160 bits) +; http://www.php.net/manual/en/session.configuration.php#ini.session.hash-function session.hash_function = 0 ; Define how many bits are stored in each character when converting ; the binary hash data to something readable. -; -; 4 bits: 0-9, a-f -; 5 bits: 0-9, a-v -; 6 bits: 0-9, a-z, A-Z, "-", "," +; Possible values: +; 4 (4 bits: 0-9, a-f) +; 5 (5 bits: 0-9, a-v) +; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 +; http://www.php.net/manual/en/session.configuration.php#ini.session.hash-bits-per-character session.hash_bits_per_character = 5 ; The URL rewriter will look for URLs in a defined set of HTML tags. @@ -1064,6 +1435,10 @@ session.hash_bits_per_character = 5 ; add a hidden field with the info which is otherwise appended ; to URLs. If you want XHTML conformity, remove the form entry. ; Note that all valid entries require a "=", even if no value follows. +; Default Value: "a=href,area=href,frame=src,form=,fieldset=" +; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry" +; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry" +; http://www.php.net/manual/en/session.configuration.php#ini.url-rewriter.tags url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" [MSSQL] @@ -1120,47 +1495,65 @@ mssql.secure_connection = Off [Assertion] ; Assert(expr); active by default. +; http://www.php.net/manual/en/info.configuration.php#ini.assert.active ;assert.active = On ; Issue a PHP warning for each failed assertion. +; http://www.php.net/manual/en/info.configuration.php#ini.assert.warning ;assert.warning = On ; Don't bail out by default. +; http://www.php.net/manual/en/info.configuration.php#ini.assert.bail ;assert.bail = Off ; User-function to be called if an assertion fails. +; http://www.php.net/manual/en/info.configuration.php#ini.assert.callback ;assert.callback = 0 ; Eval the expression with current error_reporting(). Set to true if you want ; error_reporting(0) around the eval(). +; http://www.php.net/manual/en/info.configuration.php#ini.assert.quiet-eval ;assert.quiet_eval = 0 [COM] ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs +; http://www.php.net/manual/en/com.configuration.php#ini.com.typelib-file ;com.typelib_file = + ; allow Distributed-COM calls +; http://www.php.net/manual/en/com.configuration.php#ini.com.allow-dcom ;com.allow_dcom = true + ; autoregister constants of a components typlib on com_load() +; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-typelib ;com.autoregister_typelib = true + ; register constants casesensitive +; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-casesensitive ;com.autoregister_casesensitive = false + ; show warnings on duplicate constant registrations +; http://www.php.net/manual/en/com.configuration.php#ini.com.autoregister-verbose ;com.autoregister_verbose = true [mbstring] ; language for internal character representation. +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.language ;mbstring.language = Japanese ; internal/script encoding. ; Some encoding cannot work as internal encoding. ; (e.g. SJIS, BIG5, ISO-2022-*) +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.internal-encoding ;mbstring.internal_encoding = EUC-JP ; http input encoding. +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.http-input ;mbstring.http_input = auto ; http output encoding. mb_output_handler must be ; registered as output buffer to function +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.http-output ;mbstring.http_output = SJIS ; enable automatic encoding translation according to @@ -1168,14 +1561,17 @@ mssql.secure_connection = Off ; converted to internal encoding by setting this to On. ; Note: Do _not_ use automatic encoding translation for ; portable libs/applications. +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.encoding-translation ;mbstring.encoding_translation = Off ; automatic encoding detection order. ; auto means +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.detect-order ;mbstring.detect_order = auto ; substitute_character used when character cannot be converted ; one from another +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.substitute-character ;mbstring.substitute_character = none; ; overload(replace) single byte functions by mbstring functions. @@ -1186,30 +1582,22 @@ mssql.secure_connection = Off ; 1: Overload mail() function ; 2: Overload str*() functions ; 4: Overload ereg*() functions +; http://www.php.net/manual/en/mbstring.configuration.php#ini.mbstring.func-overload ;mbstring.func_overload = 0 ; enable strict encoding detection. -;mbstring.strict_encoding = Off +;mbstring.strict_detection = Off -[FrontBase] -;fbsql.allow_persistent = On -;fbsql.autocommit = On -;fbsql.show_timestamp_decimals = Off -;fbsql.default_database = -;fbsql.default_database_password = -;fbsql.default_host = -;fbsql.default_password = -;fbsql.default_user = "_SYSTEM" -;fbsql.generate_warnings = Off -;fbsql.max_connections = 128 -;fbsql.max_links = 128 -;fbsql.max_persistent = -1 -;fbsql.max_results = 128 +; This directive specifies the regex pattern of content types for which mb_output_handler() +; is activated. +; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) +;mbstring.http_output_conv_mimetype= [gd] -; Tell the jpeg decode to libjpeg warnings and try to create +; Tell the jpeg decode to ignore warnings and try to create ; a gd image. The warning will then be displayed as notices ; disabled by default +; http://www.php.net/manual/en/image.configuration.php#ini.image.jpeg-ignore-warning ;gd.jpeg_ignore_warning = 0 [exif] @@ -1218,31 +1606,54 @@ mssql.secure_connection = Off ; given by corresponding encode setting. When empty mbstring.internal_encoding ; is used. For the decode settings you can distinguish between motorola and ; intel byte order. A decode setting cannot be empty. +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.encode-unicode ;exif.encode_unicode = ISO-8859-15 + +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-unicode-motorola ;exif.decode_unicode_motorola = UCS-2BE + +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-unicode-intel ;exif.decode_unicode_intel = UCS-2LE + +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.encode-jis ;exif.encode_jis = + +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-jis-motorola ;exif.decode_jis_motorola = JIS + +; http://www.php.net/manual/en/exif.configuration.php#ini.exif.decode-jis-intel ;exif.decode_jis_intel = JIS [Tidy] ; The path to a default tidy configuration file to use when using tidy +; http://www.php.net/manual/en/tidy.configuration.php#ini.tidy.default-config ;tidy.default_config = /usr/local/lib/php/default.tcfg ; Should tidy clean and repair output automatically? ; WARNING: Do not use this option if you are generating non-html content ; such as dynamic images +; http://www.php.net/manual/en/tidy.configuration.php#ini.tidy.clean-output tidy.clean_output = Off [soap] ; Enables or disables WSDL caching feature. +; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-enabled soap.wsdl_cache_enabled=1 + ; Sets the directory name where SOAP extension will put cache files. +; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-dir soap.wsdl_cache_dir="/tmp" + ; (time to live) Sets the number of second while cached file will be used ; instead of original one. +; http://www.php.net/manual/en/soap.configuration.php#ini.soap.wsdl-cache-ttl soap.wsdl_cache_ttl=86400 +[sysvshm] +; A default size of the shared memory segment +;sysvshm.init_mem = 10000 + + ; Local Variables: ; tab-width: 4 ; End: Index: php.spec =================================================================== RCS file: /cvs/extras/rpms/php/devel/php.spec,v retrieving revision 1.176 retrieving revision 1.177 diff -u -p -r1.176 -r1.177 --- php.spec 21 Jun 2009 09:43:29 -0000 1.176 +++ php.spec 12 Jul 2009 16:47:14 -0000 1.177 @@ -1,12 +1,18 @@ -%define contentdir /var/www -%define apiver 20041225 -%define zendver 20060613 -%define pdover 20060511 +%global contentdir /var/www +# API/ABI check +%global apiver 20090626 +%global zendver 20090626 +%global pdover 20080721 +# Extension version +%global fileinfover 1.0.5-dev +%global pharver 2.0.0-dev +%global zipver 1.9.1 + %define httpd_mmn %(cat %{_includedir}/httpd/.mmn || echo missing-httpd-devel) Summary: PHP scripting language for creating dynamic web sites Name: php -Version: 5.2.10 +Version: 5.3.0 Release: 1%{?dist} License: PHP Group: Development/Languages @@ -18,13 +24,13 @@ Source2: php.ini Source3: macros.php # Build fixes -Patch1: php-5.2.10-gnusrc.patch -Patch2: php-5.2.8-install.patch +Patch1: php-5.3.0-gnusrc.patch +Patch2: php-5.3.0-install.patch Patch3: php-5.2.4-norpath.patch -Patch4: php-5.2.8-phpize64.patch +Patch4: php-5.3.0-phpize64.patch Patch5: php-5.2.0-includedir.patch Patch6: php-5.2.4-embed.patch -Patch7: php-5.2.8-recode.patch +Patch7: php-5.3.0-recode.patch # Fixes for extension modules Patch20: php-4.3.11-shutdown.patch @@ -32,18 +38,17 @@ Patch21: php-5.2.3-macropen.patch # Functional changes Patch40: php-5.0.4-dlopen.patch -Patch41: php-5.2.4-easter.patch -Patch42: php-5.2.6-systzdata.patch +Patch41: php-5.3.0-easter.patch +Patch42: php-5.2.5-systzdata.patch # Fixes for tests -Patch60: php-5.2.7-tests-dashn.patch Patch61: php-5.0.4-tests-wddx.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: bzip2-devel, curl-devel >= 7.9, db4-devel, gmp-devel BuildRequires: httpd-devel >= 2.0.46-1, pam-devel -BuildRequires: libstdc++-devel, openssl-devel, sqlite-devel >= 3.0.0 +BuildRequires: libstdc++-devel, openssl-devel, sqlite-devel >= 3.6.0 BuildRequires: zlib-devel, pcre-devel >= 6.6, smtpdaemon, readline-devel BuildRequires: bzip2, perl, libtool >= 1.4.3, gcc-c++ Obsoletes: php-dbg, php3, phpfi, stronghold-php @@ -97,8 +102,12 @@ Provides: php-bz2, php-calendar, php-cty Provides: php-ftp, php-gettext, php-gmp, php-hash, php-iconv, php-libxml Provides: php-reflection, php-session, php-shmop, php-simplexml, php-sockets Provides: php-spl, php-tokenizer, php-openssl, php-pcre -Provides: php-zlib, php-json, php-zip, php-dbase -Obsoletes: php-openssl, php-pecl-zip, php-pecl-json, php-json, php-dbase +Provides: php-zlib, php-json, php-zip, php-fileinfo +Obsoletes: php-openssl, php-pecl-zip, php-pecl-json, php-json, php-pecl-phar, php-pecl-Fileinfo +# For obsoleted pecl extension +Provides: php-pecl-zip = %{zipver}, php-pecl(zip) = %{zipver} +Provides: php-pecl-phar = %{pharver}, php-pecl(phar) = %{pharver} +Provides: php-pecl-Fileinfo = %{fileinfover}, php-pecl(Fileinfo) = %{fileinfover} %description common The php-common package contains files used by both the php @@ -152,6 +161,7 @@ Group: Development/Languages Requires: php-common = %{version}-%{release} Obsoletes: php-pecl-pdo-sqlite, php-pecl-pdo Provides: php-pdo-abi = %{pdover} +Provides: php-sqlite3, php-pdo_sqlite %description pdo The php-pdo package contains a dynamic shared object that will add @@ -163,7 +173,7 @@ databases. Summary: A module for PHP applications that use MySQL databases Group: Development/Languages Requires: php-common = %{version}-%{release}, php-pdo -Provides: php_database, php-mysqli +Provides: php_database, php-mysqli, php-pdo_mysql Obsoletes: mod_php3-mysql, stronghold-php-mysql BuildRequires: mysql-devel >= 4.1.0 @@ -178,7 +188,7 @@ this package and the php package. Summary: A PostgreSQL database module for PHP Group: Development/Languages Requires: php-common = %{version}-%{release}, php-pdo -Provides: php_database +Provides: php_database, php-pdo_pgsql Obsoletes: mod_php3-pgsql, stronghold-php-pgsql BuildRequires: krb5-devel, openssl-devel, postgresql-devel @@ -206,7 +216,7 @@ communication. Group: Development/Languages Requires: php-common = %{version}-%{release}, php-pdo Summary: A module for PHP applications that use ODBC databases -Provides: php_database +Provides: php_database, php-pdo_odbc Obsoletes: stronghold-php-odbc BuildRequires: unixODBC-devel @@ -292,16 +302,6 @@ Requires: php-common = %{version}-%{rele The php-mbstring package contains a dynamic shared object that will add support for multi-byte string handling to PHP. -%package ncurses -Summary: A module for PHP applications for using ncurses interfaces -Group: Development/Languages -Requires: php-common = %{version}-%{release} -BuildRequires: ncurses-devel - -%description ncurses -The php-ncurses package contains a dynamic shared object that will add -support for using the ncurses terminal output interfaces. - %package gd Summary: A module for PHP applications for using the gd graphics library Group: Development/Languages @@ -341,16 +341,6 @@ BuildRequires: libmcrypt-devel The php-mcrypt package contains a dynamic shared object that will add support for using the mcrypt library to PHP. -%package mhash -Summary: Standard PHP module provides mhash support -Group: Development/Languages -Requires: php-common = %{version}-%{release} -BuildRequires: mhash-devel - -%description mhash -The php-mhash package contains a dynamic shared object that will add -support for using the mhash library to PHP. - %package tidy Summary: Standard PHP module provides tidy library support Group: Development/Languages @@ -366,6 +356,7 @@ Summary: MSSQL database module for PHP Group: Development/Languages Requires: php-common = %{version}-%{release}, php-pdo BuildRequires: freetds-devel +Provides: php-pdo_dblib %description mssql The php-mssql package contains a dynamic shared object that will @@ -404,6 +395,27 @@ BuildRequires: recode-devel The php-recode package contains a dynamic shared object that will add support for using the recode library to PHP. +%package intl +Summary: Internationalization extension for PHP applications +Group: System Environment/Libraries +Requires: php-common = %{version}-%{release} +BuildRequires: libicu-devel >= 3.6 + +%description intl +The php-intl package contains a dynamic shared object that will add +support for using the ICU library to PHP. + +%package enchant +Summary: Human Language and Character Encoding Support +Group: System Environment/Libraries +Requires: php-common = %{version}-%{release} +BuildRequires: enchant-devel >= 1.2.4 + +%description enchant +The php-intl package contains a dynamic shared object that will add +support for using the enchant library to PHP. + + %prep %setup -q %patch1 -p1 -b .gnusrc @@ -421,13 +433,12 @@ support for using the recode library to %patch41 -p1 -b .easter %patch42 -p1 -b .systzdata -%patch60 -p1 -b .tests-dashn %patch61 -p1 -b .tests-wddx # Prevent %%doc confusion over LICENSE files cp Zend/LICENSE Zend/ZEND_LICENSE cp TSRM/LICENSE TSRM_LICENSE -cp regex/COPYRIGHT regex_COPYRIGHT +cp ext/ereg/regex/COPYRIGHT regex_COPYRIGHT cp ext/gd/libgd/README gd_README # Multiple builds for multiple SAPIs @@ -464,6 +475,27 @@ if test "x${vpdo}" != "x%{pdover}"; then exit 1 fi +# Check for some extension version +ver=$(sed -n '/#define PHP_FILEINFO_VERSION /{s/.* "//;s/".*$//;p}' ext/fileinfo/php_fileinfo.h) +if test "$ver" != "%{fileinfover}"; then + : Error: Upstream FILEINFO version is now ${ver}, expecting %{fileinfover}. + : Update the fileinfover macro and rebuild. + exit 1 +fi +ver=$(sed -n '/#define PHP_PHAR_VERSION /{s/.* "//;s/".*$//;p}' ext/phar/php_phar.h) +if test "$ver" != "%{pharver}"; then + : Error: Upstream PHAR version is now ${ver}, expecting %{pharver}. + : Update the pharver macro and rebuild. + exit 1 +fi +ver=$(sed -n '/#define PHP_ZIP_VERSION_STRING /{s/.* "//;s/".*$//;p}' ext/zip/php_zip.h) +if test "$ver" != "%{zipver}"; then + : Error: Upstream ZIP version is now ${ver}, expecting %{zipver}. + : Update the zipver macro and rebuild. + exit 1 +fi + + %build # aclocal workaround - to be improved cat `aclocal --print-ac-dir`/{libtool,ltoptions,ltsugar,ltversion,lt~obsolete}.m4 >>aclocal.m4 @@ -547,7 +579,6 @@ build --enable-force-cgi-redirect \ --with-imap=shared --with-imap-ssl \ --enable-mbstring=shared \ --enable-mbregex \ - --with-ncurses=shared \ --with-gd=shared \ --enable-bcmath=shared \ --enable-dba=shared --with-db4=%{_prefix} \ @@ -572,25 +603,29 @@ build --enable-force-cgi-redirect \ --with-pdo-pgsql=shared,%{_prefix} \ --with-pdo-sqlite=shared,%{_prefix} \ --with-pdo-dblib=shared,%{_prefix} \ + --with-sqlite3=shared,%{_prefix} \ --enable-json=shared \ --enable-zip=shared \ --with-readline \ - --enable-dbase=shared \ --with-pspell=shared \ + --enable-phar=shared \ --with-mcrypt=shared,%{_prefix} \ - --with-mhash=shared,%{_prefix} \ --with-tidy=shared,%{_prefix} \ --with-mssql=shared,%{_prefix} \ --enable-sysvmsg=shared --enable-sysvshm=shared --enable-sysvsem=shared \ --enable-posix=shared \ --with-unixODBC=shared,%{_prefix} \ + --enable-fileinfo=shared \ + --enable-intl=shared \ + --with-icu-dir=%{_prefix} \ + --with-enchant=shared,%{_prefix} \ --with-recode=shared,%{_prefix} popd without_shared="--without-mysql --without-gd \ - --without-unixODBC --disable-dom \ - --disable-dba --without-unixODBC \ + --disable-dom --disable-dba --without-unixODBC \ --disable-pdo --disable-xmlreader --disable-xmlwriter \ + --without-sqlite3 --disable-phar --disable-fileinfo \ --disable-json --without-pspell --disable-wddx \ --without-curl --disable-posix \ --disable-sysvmsg --disable-sysvshm --disable-sysvsem" @@ -668,11 +703,15 @@ install -m 755 -d $RPM_BUILD_ROOT%{_sysc install -m 755 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php install -m 700 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php/session +# Fix the link +(cd $RPM_BUILD_ROOT%{_bindir}; ln -sfn phar.phar phar) + # Generate files lists and stub .ini files for each subpackage for mod in pgsql mysql mysqli odbc ldap snmp xmlrpc imap \ - mbstring ncurses gd dom xsl soap bcmath dba xmlreader xmlwriter \ + mbstring gd dom xsl soap bcmath dba xmlreader xmlwriter \ pdo pdo_mysql pdo_pgsql pdo_odbc pdo_sqlite json zip \ - dbase mcrypt mhash tidy pdo_dblib mssql pspell curl wddx \ + sqlite3 enchant phar fileinfo intl \ + mcrypt tidy pdo_dblib mssql pspell curl wddx \ posix sysvshm sysvsem sysvmsg recode interbase pdo_firebird; do cat > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${mod}.ini <> files.interbas # sysv* and posix in packaged in php-process cat files.sysv* files.posix > files.process -# Package pdo_sqlite with pdo; isolating the sqlite dependency +# Package sqlite3 and pdo_sqlite with pdo; isolating the sqlite dependency # isn't useful at this time since rpm itself requires sqlite. cat files.pdo_sqlite >> files.pdo +cat files.sqlite3 >> files.pdo -# Package json, dbase and zip in -common. -cat files.json files.dbase files.zip files.curl > files.common +# Package json, zip, curl, phar and fileinfo in -common. +cat files.json files.zip files.curl files.phar files.fileinfo > files.common # Install the macros file: install -d $RPM_BUILD_ROOT%{_sysconfdir}/rpm @@ -753,6 +793,8 @@ rm files.* macros.php %defattr(-,root,root) %{_bindir}/php %{_bindir}/php-cgi +%{_bindir}/phar.phar +%{_bindir}/phar %{_mandir}/man1/php.1* %doc sapi/cgi/README* sapi/cli/README @@ -784,7 +826,6 @@ rm files.* macros.php %files xml -f files.xml %files xmlrpc -f files.xmlrpc %files mbstring -f files.mbstring -%files ncurses -f files.ncurses %files gd -f files.gd %doc gd_README %files soap -f files.soap @@ -792,15 +833,23 @@ rm files.* macros.php %files dba -f files.dba %files pdo -f files.pdo %files mcrypt -f files.mcrypt -%files mhash -f files.mhash %files tidy -f files.tidy %files mssql -f files.mssql %files pspell -f files.pspell +%files intl -f files.intl %files process -f files.process %files recode -f files.recode %files interbase -f files.interbase +%files enchant -f files.enchant %changelog +* Sun Jul 12 2009 Remi Collet 5.3.0-1 +- update to 5.3.0 +- remove ncurses, dbase, mhash extensions +- add enchant, sqlite3, intl, phar, fileinfo extensions +- raise sqlite version to 3.6.0 (for sqlite3, build with --enable-load-extension) +- sync with upstream "production" php.ini + * Sat Jun 21 2009 Remi Collet 5.2.10-1 - update to 5.2.10 - add interbase sub-package Index: sources =================================================================== RCS file: /cvs/extras/rpms/php/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 21 Jun 2009 09:43:29 -0000 1.40 +++ sources 12 Jul 2009 16:47:14 -0000 1.41 @@ -1 +1 @@ -15c7b5a87f57332d6fc683528e28247b php-5.2.10.tar.bz2 +846760cd655c98dfd86d6d97c3d964b0 php-5.3.0.tar.bz2 --- php-5.2.10-gnusrc.patch DELETED --- --- php-5.2.4-easter.patch DELETED --- --- php-5.2.8-install.patch DELETED --- --- php-5.2.8-phpize64.patch DELETED --- --- php-5.2.8-recode.patch DELETED --- From lkundrak at fedoraproject.org Sun Jul 12 16:49:12 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Sun, 12 Jul 2009 16:49:12 +0000 (UTC) Subject: rpms/opengrok/devel opengrok-0.8-manifest-classpath.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 opengrok-0.6-nochangeset.patch, 1.1, 1.2 opengrok-0.7-jflex.patch, 1.1, 1.2 opengrok.spec, 1.7, 1.8 sources, 1.5, 1.6 opengrok-0.5-manifest-classpath.patch, 1.1, NONE Message-ID: <20090712164912.99DB911C0095@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/opengrok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16432 Modified Files: .cvsignore opengrok-0.6-nochangeset.patch opengrok-0.7-jflex.patch opengrok.spec sources Added Files: opengrok-0.8-manifest-classpath.patch Removed Files: opengrok-0.5-manifest-classpath.patch Log Message: * Sun Jul 12 2009 Lubomir Rintel - 0.8-0.1.20090712hg - Update to latest Mercurial snapshot - bconds are nice, use them opengrok-0.8-manifest-classpath.patch: --- NEW FILE opengrok-0.8-manifest-classpath.patch --- Disables inclusion of hardcoded classpath in manifest Lubomir Rintel diff -up opengrok-0.7-src/build.xml.manifest-classpath opengrok-0.7-src/build.xml --- opengrok-0.7-src/build.xml.manifest-classpath 2009-07-12 18:17:35.472550073 +0200 +++ opengrok-0.7-src/build.xml 2009-07-12 18:18:05.048557806 +0200 @@ -238,14 +238,16 @@ Use is subject to license terms. + - + EOF ant -f fixup.xml ant -lib %{_javadir}/jdom.jar javadoc # Allow for simple command to run colossus echo -e "#!/bin/sh\njava -cp %{_javadir}/jdom.jar:%{_javadir}/colossus.jar net.sf.colossus.appmain.Start" > %{name} # Make a .desktop file cat < %{name}.desktop [Desktop Entry] Name=Colossus GenericName=Strategy Game Comment=Multiplayer turned based fantasy game with AIs available Exec=%{name} Icon=%{name} Terminal=false Type=Application Categories=Game;StrategyGame; EOF %install rm -rf $RPM_BUILD_ROOT install -D -m 755 Colossus.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar install -D -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -D -m 644 core/src/main/resource/icons/ColossusIcon.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop mkdir -p $RPM_BUILD_ROOT%{_javadocdir} cp -rpv build/ant/javadoc $RPM_BUILD_ROOT%{_javadocdir}/%{name} chmod -R og=u-w $RPM_BUILD_ROOT%{_javadocdir} %if %{with_gcj} %{_bindir}/aot-compile-rpm %endif %clean rm -rf $RPM_BUILD_ROOT %post %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %postun %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %files %defattr(-,root,root,-) %{_javadir}/* %{_bindir}/* %{_datadir}/pixmaps/* %{_datadir}/applications/* %doc docs/* %if %{with_gcj} %attr(-,root,root) %{_libdir}/gcj/%{name} %endif %files javadoc %defattr(-,root,root,-) %{_javadocdir}/%{name} %changelog * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor * Fri Jul 10 2009 Bruno Wolff III - 0-0.1.20090710svn4432 - Prerelease snapshot with a public build expected in a week or two --- NEW FILE import.log --- colossus-0-0_2_20090710svn4432_fc11:HEAD:colossus-0-0.2.20090710svn4432.fc11.src.rpm:1247453817 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:41:05 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:00:33 -0000 1.2 @@ -0,0 +1 @@ +colossus-20090710-4432.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:41:06 -0000 1.1 +++ sources 13 Jul 2009 03:00:34 -0000 1.2 @@ -0,0 +1 @@ +4bc5d55868e775581d3ef8f281886059 colossus-20090710-4432.tar.gz From pfrields at fedoraproject.org Mon Jul 13 03:00:39 2009 From: pfrields at fedoraproject.org (pfrields) Date: Mon, 13 Jul 2009 03:00:39 +0000 (UTC) Subject: rpms/php-LightweightPicasaAPI/devel php-LightweightPicasaAPI.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713030039.6D21811C0095@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/php-LightweightPicasaAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26520 Modified Files: .cvsignore sources Added Files: php-LightweightPicasaAPI.spec Log Message: Add spec and sources --- NEW FILE php-LightweightPicasaAPI.spec --- Name: php-LightweightPicasaAPI Version: 3.3 Release: 1%{?dist} Summary: A lightweight API for Picasa in PHP Group: Development/Libraries License: GPLv3+ URL: http://cameronhinkle.com/ Source0: http://cameronhinkle.com/downloads/LightweightPicasaAPIv3.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: dos2unix Requires: php %description PHP wrapper for Google's Picasa Data API, which is implemented using Atom feeds in XML. The package is meant to make it easy for PHP developers to integrate their own applications with Picasa. %prep %setup -qc dos2unix license.txt %build %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/php/LightweightPicasaAPI cp -pr Picasa.php Picasa/* $RPM_BUILD_ROOT%{_datadir}/php/LightweightPicasaAPI %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README license.txt %{_datadir}/php/LightweightPicasaAPI %changelog * Sun Jun 14 2009 Paul W. Frields - 3.3-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-LightweightPicasaAPI/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:47:21 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:00:09 -0000 1.2 @@ -0,0 +1 @@ +LightweightPicasaAPIv3.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-LightweightPicasaAPI/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:47:21 -0000 1.1 +++ sources 13 Jul 2009 03:00:09 -0000 1.2 @@ -0,0 +1 @@ +d7f26f31cb82a8b514ce02394a8a067f LightweightPicasaAPIv3.zip From bruno at fedoraproject.org Mon Jul 13 03:03:55 2009 From: bruno at fedoraproject.org (Bruno Wolff III) Date: Mon, 13 Jul 2009 03:03:55 +0000 (UTC) Subject: rpms/colossus/F-11 colossus-gen-tarball.sh, NONE, 1.1 colossus-rev.xsl, NONE, 1.1 colossus.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713030355.83D1611C0095@cvs1.fedora.phx.redhat.com> Author: bruno Update of /cvs/pkgs/rpms/colossus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28138/F-11 Modified Files: .cvsignore sources Added Files: colossus-gen-tarball.sh colossus-rev.xsl colossus.spec import.log Log Message: * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor * Fri Jul 10 2009 Bruno Wolff III - 0-0.1.20090710svn4432 - Prerelease snapshot with a public build expected in a week or two --- NEW FILE colossus-gen-tarball.sh --- #!/bin/sh # Generate colossus source tarball in current directory # The desired rev should be used as a parameter. # If a rev isn't provided, the current rev of HEAD is determined and # is used instead. # $REV[0] is the date of the commit for the build # $REV[1] is the revision of the commit for the build # Location of SVN repository COLOSSUS=https://colossus.svn.sourceforge.net/svnroot/colossus/trunk/Colossus # First check if revision specified if test -z "$1" then REV=(`svn info --xml --incremental $COLOSSUS | xsltproc colossus-rev.xsl -`) else REV=(`svn info -r $1 --xml --incremental $COLOSSUS | xsltproc colossus-rev.xsl -`) fi # Remove pre-existing source with the same rev rm -rf colossus-${REV[0]}-${REV[1]}.tar.gz colossus-${REV[0]}-${REV[1]} # Fetch source svn export -q -r ${REV[1]} $COLOSSUS colossus-${REV[0]}-${REV[1]} # Remove included jar files find colossus-${REV[0]}-${REV[1]} -name '*.jar' | xargs rm -f # Remove htdocs is just a copy of the project home page. This is also # one less set of images to worry about. rm -rf colossus-${REV[0]}-${REV[1]}/htdocs # This can be used to remove all of the unused images in the icons directory. # It is not needed for now. # find colossus-${REV[0]}-${REV[1]}/core/src/main/resource/icons/ -type f \! -name ColossusIcon.png | xargs rm -f # Build .tar.gz archive tar czf colossus-${REV[0]}-${REV[1]}.tar.gz colossus-${REV[0]}-${REV[1]} # Remove unarchived source rm -rf colossus-${REV[0]}-${REV[1]} --- NEW FILE colossus-rev.xsl --- --- NEW FILE colossus.spec --- Name: colossus %define rev 4432 %define revdate 20090710 Version: 0 Release: 0.2.%{revdate}svn%{rev}%{?dist} Summary: Allows people to play Titan against each other or AIs Group: Amusements/Games License: GPLv2 URL: http://colossus.sourceforge.net/ # The svn repo includes some prebuilt jar files that need to be removed # The colossus-gen-tarball.sh can be used to fetch either the latest # revision or a specified revision from the repo, strip the jar files # and some artwork and then build a tar.gz archive. # colossus-rev.xsl is used to extract the current revision of HEAD # when grabbing the latest revision, using svn info. # The repo is at: # https://colossus.svn.sourceforge.net/svnroot/colossus/trunk/Colossus Source0: colossus-%{revdate}-%{rev}.tar.gz Source1: colossus-gen-tarball.sh Source2: colossus-rev.xsl %global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %if %{with_gcj} BuildRequires: java-gcj-compat-devel >= 1.0.31 Requires(post): java-gcj-compat >= 1.0.31 Requires(postun): java-gcj-compat >= 1.0.31 %else BuildArch: noarch %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Note the intention is to eventually require only java 1.5 for both building # and installing. But bug 510243 in gjdoc currently blocks this. BuildRequires: java-devel >= 1.6 BuildRequires: jpackage-utils BuildRequires: ant BuildRequires: jdom BuildRequires: desktop-file-utils BuildRequires: zip Requires: java >= 1.6 Requires: jpackage-utils Requires: jdom Requires(post): coreutils Requires(postun): coreutils %description Colossus allows people to play Titan (http://www.boardgamegeek.com/boardgame/103) and several Titan variants, hot seat or via a network. Several different AIs are provided that can play instead of humans. %package javadoc Summary: Javadocs for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils %description javadoc This package contains the API documentation for %{name}. %prep %setup -q -n %{name}-%{revdate}-%{rev} %build # Tell colossus' build process where to look for needed jar files echo "libs.dir=%{_javadir}" > local_build.properties # Tell colossus some build info that the game will display mkdir -p build/ant/classes/META-INF cat < build/ant/classes/META-INF/build.properties svn.revision.max-with-flags=%{rev} build.timestamp=%{revdate} username=rpmbuild EOF ant jar # The supplied build.xml adds a classpath to the manifest that needs to # be removed. # First remove the existing manifest file zip -d Colossus.jar META-INF/MANIFEST.MF # Then put one back without a class path cat < fixup.xml EOF ant -f fixup.xml ant -lib %{_javadir}/jdom.jar javadoc # Allow for simple command to run colossus echo -e "#!/bin/sh\njava -cp %{_javadir}/jdom.jar:%{_javadir}/colossus.jar net.sf.colossus.appmain.Start" > %{name} # Make a .desktop file cat < %{name}.desktop [Desktop Entry] Name=Colossus GenericName=Strategy Game Comment=Multiplayer turned based fantasy game with AIs available Exec=%{name} Icon=%{name} Terminal=false Type=Application Categories=Game;StrategyGame; EOF %install rm -rf $RPM_BUILD_ROOT install -D -m 755 Colossus.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar install -D -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -D -m 644 core/src/main/resource/icons/ColossusIcon.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop mkdir -p $RPM_BUILD_ROOT%{_javadocdir} cp -rpv build/ant/javadoc $RPM_BUILD_ROOT%{_javadocdir}/%{name} chmod -R og=u-w $RPM_BUILD_ROOT%{_javadocdir} %if %{with_gcj} %{_bindir}/aot-compile-rpm %endif %clean rm -rf $RPM_BUILD_ROOT %post %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %postun %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %files %defattr(-,root,root,-) %{_javadir}/* %{_bindir}/* %{_datadir}/pixmaps/* %{_datadir}/applications/* %doc docs/* %if %{with_gcj} %attr(-,root,root) %{_libdir}/gcj/%{name} %endif %files javadoc %defattr(-,root,root,-) %{_javadocdir}/%{name} %changelog * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor * Fri Jul 10 2009 Bruno Wolff III - 0-0.1.20090710svn4432 - Prerelease snapshot with a public build expected in a week or two --- NEW FILE import.log --- colossus-0-0_2_20090710svn4432_fc11:F-11:colossus-0-0.2.20090710svn4432.fc11.src.rpm:1247454127 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colossus/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:41:05 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:03:24 -0000 1.2 @@ -0,0 +1 @@ +colossus-20090710-4432.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colossus/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:41:06 -0000 1.1 +++ sources 13 Jul 2009 03:03:24 -0000 1.2 @@ -0,0 +1 @@ +4bc5d55868e775581d3ef8f281886059 colossus-20090710-4432.tar.gz From whot at fedoraproject.org Mon Jul 13 03:08:55 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Mon, 13 Jul 2009 03:08:55 +0000 (UTC) Subject: rpms/libXi/devel commitid, NONE, 1.1 .cvsignore, 1.14, 1.15 libXi.spec, 1.31, 1.32 sources, 1.15, 1.16 Message-ID: <20090713030855.633A211C0095@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29579 Modified Files: .cvsignore libXi.spec sources Added Files: commitid Log Message: * Mon Jul 13 2009 Peter Hutterer 1.2.99-4.20090713 - Update to today's git master - Add commitid file. --- NEW FILE commitid --- 1fc161f058eecb61d37135fd024703a385769417 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 12 Jul 2009 11:16:55 -0000 1.14 +++ .cvsignore 13 Jul 2009 03:08:55 -0000 1.15 @@ -1 +1 @@ -libXi-20090712.tar.bz2 +libXi-20090713.tar.bz2 Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libXi.spec 12 Jul 2009 11:16:55 -0000 1.31 +++ libXi.spec 13 Jul 2009 03:08:55 -0000 1.32 @@ -1,10 +1,10 @@ %define tarball libXi -%define gitdate 20090712 +%define gitdate 20090713 Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 3.%{gitdate}%{?dist} +Release: 4.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -88,6 +88,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Mon Jul 13 2009 Peter Hutterer 1.2.99-4.20090713 +- Update to today's git master +- Add commitid file. + * Sun Jul 12 2009 Peter Hutterer 1.2.99-3.20090712 - Update to today's git master Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 12 Jul 2009 11:16:55 -0000 1.15 +++ sources 13 Jul 2009 03:08:55 -0000 1.16 @@ -1 +1 @@ -7f04bdc7984dec37f6f2691537c92837 libXi-20090712.tar.bz2 +fad3aa50bf0eb5c2252b1582fc1d93bd libXi-20090713.tar.bz2 From nb at fedoraproject.org Mon Jul 13 03:09:33 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Mon, 13 Jul 2009 03:09:33 +0000 (UTC) Subject: rpms/znc/F-10 import.log, NONE, 1.1 znc-0.070-pkgconfigdir.diff, NONE, 1.1 znc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713030933.8F28611C0095@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29716/F-10 Modified Files: .cvsignore sources Added Files: import.log znc-0.070-pkgconfigdir.diff znc.spec Log Message: initial znc commit - f10 --- NEW FILE import.log --- znc-0_070-7_fc11:F-10:znc-0.070-7.fc11.src.rpm:1247454415 znc-0.070-pkgconfigdir.diff: --- NEW FILE znc-0.070-pkgconfigdir.diff --- diff -uNr znc-0.070/Makefile.in znc-0.070-nb/Makefile.in --- znc-0.070/Makefile.in 2009-05-03 06:23:05.000000000 -0500 +++ znc-0.070-nb/Makefile.in 2009-07-08 18:30:51.180801877 -0500 @@ -18,7 +18,7 @@ LIBS := @LIBS@ LIBZNC := @LIBZNC@ LIBZNCDIR:= @LIBZNCDIR@ -PKGCONFIGDIR := $(prefix)/lib/pkgconfig +PKGCONFIGDIR := @libdir@/pkgconfig LIB_SRCS := ZNCString.cpp Csocket.cpp znc.cpp User.cpp IRCSock.cpp Client.cpp DCCBounce.cpp \ DCCSock.cpp Chan.cpp Nick.cpp Server.cpp Modules.cpp MD5.cpp Buffer.cpp Utils.cpp \ --- NEW FILE znc.spec --- Summary: An advanced IRC bouncer Name: znc Version: 0.070 Release: 7%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} %description ZNC is an IRC bouncer with many advanced features like detaching, multiple users, per channel playback buffer, SSL, IPv6, transparent DCC bouncing, Perl and C++ module support to name a few. %package devel Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig %description devel All includes and program files you need to compile your own znc modules. %prep %setup -q %patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ --enable-ipv6 %__make %{?_smp_mflags} %install %__rm -Rf "%{buildroot}" %__make install DESTDIR="%{buildroot}" %clean %__rm -Rf "%{buildroot}" %files %defattr(-,root,root) %doc AUTHORS LICENSE LICENSE.OpenSSL README znc.conf %{_bindir}/znc %{_mandir}/man1/* %{_libdir}/znc/ %{_datadir}/znc/ %files devel %defattr(-,root,root) %{_bindir}/znc-buildmod %{_bindir}/znc-config %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/znc/ %changelog * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 - Fix permissions error in %%prep, not in source * Sat Jul 11 2009 Nick Bebout - 0.070-5 - Fix permissions error on q.cpp and add LICENSE.OpenSSL * Sat Jul 11 2009 Nick Bebout - 0.070-4 - Remove switch to enable debug, fix %%files section * Fri Jul 10 2009 Nick Bebout - 0.070-3 - Move fixfreenode and log into separate znc-extra package - Move awayping into separate znc-awayping package * Thu Jul 9 2009 Nick Bebout - 0.070-2 - Include modules with main package * Wed Jul 8 2009 Nick Bebout - 0.070-1 - Initial Fedora package based on 0.070 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:48:56 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:09:03 -0000 1.2 @@ -0,0 +1 @@ +znc-0.070.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:48:56 -0000 1.1 +++ sources 13 Jul 2009 03:09:03 -0000 1.2 @@ -0,0 +1 @@ +18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz From nb at fedoraproject.org Mon Jul 13 03:12:03 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Mon, 13 Jul 2009 03:12:03 +0000 (UTC) Subject: rpms/znc/F-11 import.log, NONE, 1.1 znc-0.070-pkgconfigdir.diff, NONE, 1.1 znc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713031203.9151311C0095@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30489/F-11 Modified Files: .cvsignore sources Added Files: import.log znc-0.070-pkgconfigdir.diff znc.spec Log Message: initial znc commit - f11 --- NEW FILE import.log --- znc-0_070-7_fc11:F-11:znc-0.070-7.fc11.src.rpm:1247454578 znc-0.070-pkgconfigdir.diff: --- NEW FILE znc-0.070-pkgconfigdir.diff --- diff -uNr znc-0.070/Makefile.in znc-0.070-nb/Makefile.in --- znc-0.070/Makefile.in 2009-05-03 06:23:05.000000000 -0500 +++ znc-0.070-nb/Makefile.in 2009-07-08 18:30:51.180801877 -0500 @@ -18,7 +18,7 @@ LIBS := @LIBS@ LIBZNC := @LIBZNC@ LIBZNCDIR:= @LIBZNCDIR@ -PKGCONFIGDIR := $(prefix)/lib/pkgconfig +PKGCONFIGDIR := @libdir@/pkgconfig LIB_SRCS := ZNCString.cpp Csocket.cpp znc.cpp User.cpp IRCSock.cpp Client.cpp DCCBounce.cpp \ DCCSock.cpp Chan.cpp Nick.cpp Server.cpp Modules.cpp MD5.cpp Buffer.cpp Utils.cpp \ --- NEW FILE znc.spec --- Summary: An advanced IRC bouncer Name: znc Version: 0.070 Release: 7%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} %description ZNC is an IRC bouncer with many advanced features like detaching, multiple users, per channel playback buffer, SSL, IPv6, transparent DCC bouncing, Perl and C++ module support to name a few. %package devel Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig %description devel All includes and program files you need to compile your own znc modules. %prep %setup -q %patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ --enable-ipv6 %__make %{?_smp_mflags} %install %__rm -Rf "%{buildroot}" %__make install DESTDIR="%{buildroot}" %clean %__rm -Rf "%{buildroot}" %files %defattr(-,root,root) %doc AUTHORS LICENSE LICENSE.OpenSSL README znc.conf %{_bindir}/znc %{_mandir}/man1/* %{_libdir}/znc/ %{_datadir}/znc/ %files devel %defattr(-,root,root) %{_bindir}/znc-buildmod %{_bindir}/znc-config %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/znc/ %changelog * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 - Fix permissions error in %%prep, not in source * Sat Jul 11 2009 Nick Bebout - 0.070-5 - Fix permissions error on q.cpp and add LICENSE.OpenSSL * Sat Jul 11 2009 Nick Bebout - 0.070-4 - Remove switch to enable debug, fix %%files section * Fri Jul 10 2009 Nick Bebout - 0.070-3 - Move fixfreenode and log into separate znc-extra package - Move awayping into separate znc-awayping package * Thu Jul 9 2009 Nick Bebout - 0.070-2 - Include modules with main package * Wed Jul 8 2009 Nick Bebout - 0.070-1 - Initial Fedora package based on 0.070 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:48:56 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:11:33 -0000 1.2 @@ -0,0 +1 @@ +znc-0.070.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:48:56 -0000 1.1 +++ sources 13 Jul 2009 03:11:33 -0000 1.2 @@ -0,0 +1 @@ +18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz From nb at fedoraproject.org Mon Jul 13 03:18:45 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Mon, 13 Jul 2009 03:18:45 +0000 (UTC) Subject: rpms/znc/EL-5 import.log, NONE, 1.1 znc-0.070-pkgconfigdir.diff, NONE, 1.1 znc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713031845.9719511C0095@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32533/EL-5 Modified Files: .cvsignore sources Added Files: import.log znc-0.070-pkgconfigdir.diff znc.spec Log Message: Initial import for EL-5 --- NEW FILE import.log --- znc-0_070-7_el5:EL-5:znc-0.070-7.el5.src.rpm:1247454986 znc-0.070-pkgconfigdir.diff: --- NEW FILE znc-0.070-pkgconfigdir.diff --- diff -uNr znc-0.070/Makefile.in znc-0.070-nb/Makefile.in --- znc-0.070/Makefile.in 2009-05-03 06:23:05.000000000 -0500 +++ znc-0.070-nb/Makefile.in 2009-07-08 18:30:51.180801877 -0500 @@ -18,7 +18,7 @@ LIBS := @LIBS@ LIBZNC := @LIBZNC@ LIBZNCDIR:= @LIBZNCDIR@ -PKGCONFIGDIR := $(prefix)/lib/pkgconfig +PKGCONFIGDIR := @libdir@/pkgconfig LIB_SRCS := ZNCString.cpp Csocket.cpp znc.cpp User.cpp IRCSock.cpp Client.cpp DCCBounce.cpp \ DCCSock.cpp Chan.cpp Nick.cpp Server.cpp Modules.cpp MD5.cpp Buffer.cpp Utils.cpp \ --- NEW FILE znc.spec --- Summary: An advanced IRC bouncer Name: znc Version: 0.070 Release: 7%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} %description ZNC is an IRC bouncer with many advanced features like detaching, multiple users, per channel playback buffer, SSL, IPv6, transparent DCC bouncing, Perl and C++ module support to name a few. %package devel Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig %description devel All includes and program files you need to compile your own znc modules. %prep %setup -q %patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ --enable-ipv6 %__make %{?_smp_mflags} %install %__rm -Rf "%{buildroot}" %__make install DESTDIR="%{buildroot}" %clean %__rm -Rf "%{buildroot}" %files %defattr(-,root,root) %doc AUTHORS LICENSE LICENSE.OpenSSL README znc.conf %{_bindir}/znc %{_mandir}/man1/* %{_libdir}/znc/ %{_datadir}/znc/ %files devel %defattr(-,root,root) %{_bindir}/znc-buildmod %{_bindir}/znc-config %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/znc/ %changelog * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 - Fix permissions error in %%prep, not in source * Sat Jul 11 2009 Nick Bebout - 0.070-5 - Fix permissions error on q.cpp and add LICENSE.OpenSSL * Sat Jul 11 2009 Nick Bebout - 0.070-4 - Remove switch to enable debug, fix %%files section * Fri Jul 10 2009 Nick Bebout - 0.070-3 - Move fixfreenode and log into separate znc-extra package - Move awayping into separate znc-awayping package * Thu Jul 9 2009 Nick Bebout - 0.070-2 - Include modules with main package * Wed Jul 8 2009 Nick Bebout - 0.070-1 - Initial Fedora package based on 0.070 of upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:48:56 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:18:45 -0000 1.2 @@ -0,0 +1 @@ +znc-0.070.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:48:56 -0000 1.1 +++ sources 13 Jul 2009 03:18:45 -0000 1.2 @@ -0,0 +1 @@ +18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz From bruno at fedoraproject.org Mon Jul 13 03:18:49 2009 From: bruno at fedoraproject.org (Bruno Wolff III) Date: Mon, 13 Jul 2009 03:18:49 +0000 (UTC) Subject: rpms/colossus/F-10 colossus-gen-tarball.sh, NONE, 1.1 colossus-rev.xsl, NONE, 1.1 colossus.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713031849.99B5711C0095@cvs1.fedora.phx.redhat.com> Author: bruno Update of /cvs/pkgs/rpms/colossus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32346/F-10 Modified Files: .cvsignore sources Added Files: colossus-gen-tarball.sh colossus-rev.xsl colossus.spec import.log Log Message: * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor * Fri Jul 10 2009 Bruno Wolff III - 0-0.1.20090710svn4432 - Prerelease snapshot with a public build expected in a week or two --- NEW FILE colossus-gen-tarball.sh --- #!/bin/sh # Generate colossus source tarball in current directory # The desired rev should be used as a parameter. # If a rev isn't provided, the current rev of HEAD is determined and # is used instead. # $REV[0] is the date of the commit for the build # $REV[1] is the revision of the commit for the build # Location of SVN repository COLOSSUS=https://colossus.svn.sourceforge.net/svnroot/colossus/trunk/Colossus # First check if revision specified if test -z "$1" then REV=(`svn info --xml --incremental $COLOSSUS | xsltproc colossus-rev.xsl -`) else REV=(`svn info -r $1 --xml --incremental $COLOSSUS | xsltproc colossus-rev.xsl -`) fi # Remove pre-existing source with the same rev rm -rf colossus-${REV[0]}-${REV[1]}.tar.gz colossus-${REV[0]}-${REV[1]} # Fetch source svn export -q -r ${REV[1]} $COLOSSUS colossus-${REV[0]}-${REV[1]} # Remove included jar files find colossus-${REV[0]}-${REV[1]} -name '*.jar' | xargs rm -f # Remove htdocs is just a copy of the project home page. This is also # one less set of images to worry about. rm -rf colossus-${REV[0]}-${REV[1]}/htdocs # This can be used to remove all of the unused images in the icons directory. # It is not needed for now. # find colossus-${REV[0]}-${REV[1]}/core/src/main/resource/icons/ -type f \! -name ColossusIcon.png | xargs rm -f # Build .tar.gz archive tar czf colossus-${REV[0]}-${REV[1]}.tar.gz colossus-${REV[0]}-${REV[1]} # Remove unarchived source rm -rf colossus-${REV[0]}-${REV[1]} --- NEW FILE colossus-rev.xsl --- --- NEW FILE colossus.spec --- Name: colossus %define rev 4432 %define revdate 20090710 Version: 0 Release: 0.2.%{revdate}svn%{rev}%{?dist} Summary: Allows people to play Titan against each other or AIs Group: Amusements/Games License: GPLv2 URL: http://colossus.sourceforge.net/ # The svn repo includes some prebuilt jar files that need to be removed # The colossus-gen-tarball.sh can be used to fetch either the latest # revision or a specified revision from the repo, strip the jar files # and some artwork and then build a tar.gz archive. # colossus-rev.xsl is used to extract the current revision of HEAD # when grabbing the latest revision, using svn info. # The repo is at: # https://colossus.svn.sourceforge.net/svnroot/colossus/trunk/Colossus Source0: colossus-%{revdate}-%{rev}.tar.gz Source1: colossus-gen-tarball.sh Source2: colossus-rev.xsl %global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %if %{with_gcj} BuildRequires: java-gcj-compat-devel >= 1.0.31 Requires(post): java-gcj-compat >= 1.0.31 Requires(postun): java-gcj-compat >= 1.0.31 %else BuildArch: noarch %endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Note the intention is to eventually require only java 1.5 for both building # and installing. But bug 510243 in gjdoc currently blocks this. BuildRequires: java-devel >= 1.6 BuildRequires: jpackage-utils BuildRequires: ant BuildRequires: jdom BuildRequires: desktop-file-utils BuildRequires: zip Requires: java >= 1.6 Requires: jpackage-utils Requires: jdom Requires(post): coreutils Requires(postun): coreutils %description Colossus allows people to play Titan (http://www.boardgamegeek.com/boardgame/103) and several Titan variants, hot seat or via a network. Several different AIs are provided that can play instead of humans. %package javadoc Summary: Javadocs for %{name} Group: Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils %description javadoc This package contains the API documentation for %{name}. %prep %setup -q -n %{name}-%{revdate}-%{rev} %build # Tell colossus' build process where to look for needed jar files echo "libs.dir=%{_javadir}" > local_build.properties # Tell colossus some build info that the game will display mkdir -p build/ant/classes/META-INF cat < build/ant/classes/META-INF/build.properties svn.revision.max-with-flags=%{rev} build.timestamp=%{revdate} username=rpmbuild EOF ant jar # The supplied build.xml adds a classpath to the manifest that needs to # be removed. # First remove the existing manifest file zip -d Colossus.jar META-INF/MANIFEST.MF # Then put one back without a class path cat < fixup.xml EOF ant -f fixup.xml ant -lib %{_javadir}/jdom.jar javadoc # Allow for simple command to run colossus echo -e "#!/bin/sh\njava -cp %{_javadir}/jdom.jar:%{_javadir}/colossus.jar net.sf.colossus.appmain.Start" > %{name} # Make a .desktop file cat < %{name}.desktop [Desktop Entry] Name=Colossus GenericName=Strategy Game Comment=Multiplayer turned based fantasy game with AIs available Exec=%{name} Icon=%{name} Terminal=false Type=Application Categories=Game;StrategyGame; EOF %install rm -rf $RPM_BUILD_ROOT install -D -m 755 Colossus.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar install -D -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -D -m 644 core/src/main/resource/icons/ColossusIcon.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop mkdir -p $RPM_BUILD_ROOT%{_javadocdir} cp -rpv build/ant/javadoc $RPM_BUILD_ROOT%{_javadocdir}/%{name} chmod -R og=u-w $RPM_BUILD_ROOT%{_javadocdir} %if %{with_gcj} %{_bindir}/aot-compile-rpm %endif %clean rm -rf $RPM_BUILD_ROOT %post %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %postun %if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db fi %endif touch --no-create %{_datadir}/pixmaps || : %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/pixmaps || : %files %defattr(-,root,root,-) %{_javadir}/* %{_bindir}/* %{_datadir}/pixmaps/* %{_datadir}/applications/* %doc docs/* %if %{with_gcj} %attr(-,root,root) %{_libdir}/gcj/%{name} %endif %files javadoc %defattr(-,root,root,-) %{_javadocdir}/%{name} %changelog * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor * Fri Jul 10 2009 Bruno Wolff III - 0-0.1.20090710svn4432 - Prerelease snapshot with a public build expected in a week or two --- NEW FILE import.log --- colossus-0-0_2_20090710svn4432_fc11:F-10:colossus-0-0.2.20090710svn4432.fc11.src.rpm:1247454273 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colossus/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 02:41:05 -0000 1.1 +++ .cvsignore 13 Jul 2009 03:18:19 -0000 1.2 @@ -0,0 +1 @@ +colossus-20090710-4432.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colossus/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 13 Jul 2009 02:41:06 -0000 1.1 +++ sources 13 Jul 2009 03:18:19 -0000 1.2 @@ -0,0 +1 @@ +4bc5d55868e775581d3ef8f281886059 colossus-20090710-4432.tar.gz From bruno at fedoraproject.org Mon Jul 13 03:45:08 2009 From: bruno at fedoraproject.org (Bruno Wolff III) Date: Mon, 13 Jul 2009 03:45:08 +0000 (UTC) Subject: comps comps-f12.xml.in,1.34,1.35 Message-ID: <20090713034508.C20EC11C0095@cvs1.fedora.phx.redhat.com> Author: bruno Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6823 Modified Files: comps-f12.xml.in Log Message: Added colossus to the games group in F12 Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- comps-f12.xml.in 11 Jul 2009 02:35:33 -0000 1.34 +++ comps-f12.xml.in 13 Jul 2009 03:44:38 -0000 1.35 @@ -2126,6 +2126,7 @@ clanbomber clonekeen coco-coq + colossus crack-attack CriticalMass crossfire From paragn at fedoraproject.org Mon Jul 13 03:58:15 2009 From: paragn at fedoraproject.org (paragn) Date: Mon, 13 Jul 2009 03:58:15 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel CodeAnalyst-gui.spec,1.7,1.8 Message-ID: <20090713035815.55B0511C0095@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10117 Modified Files: CodeAnalyst-gui.spec Log Message: * Mon Jul 13 2009 - Parag Nemade - 2.8.54-15 - Rebuild against new libbfd-2.19.51.0.11-23.fc12.so Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- CodeAnalyst-gui.spec 8 Jul 2009 19:55:05 -0000 1.7 +++ CodeAnalyst-gui.spec 13 Jul 2009 03:57:45 -0000 1.8 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.54 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -149,6 +149,10 @@ fi %changelog +* Mon Jul 13 2009 - Parag Nemade +- 2.8.54-15 +- Rebuild against new libbfd-2.19.51.0.11-23.fc12.so + * Wed Jul 8 2009 - Suravee Suthikulpanit - 2.8.54-14 - Update new release @@ -158,7 +162,7 @@ fi * Tue Jul 7 2009 - Suravee Suthikulpanit - 2.8.38-13 -- Rebuild against new libbfd-2.19.51.0.20-20.fc12.so +- Rebuild against new libbfd-2.19.51.0.2-20.fc12.so * Thu Jun 18 2009 - Parag Nemade - 2.8.38-12 From than at fedoraproject.org Mon Jul 13 04:52:26 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 13 Jul 2009 04:52:26 +0000 (UTC) Subject: rpms/kdeutils/devel .cvsignore, 1.64, 1.65 kdeutils.spec, 1.187, 1.188 sources, 1.65, 1.66 Message-ID: <20090713045226.281DD11C0493@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12064 Modified Files: .cvsignore kdeutils.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 26 Jun 2009 14:04:32 -0000 1.64 +++ .cvsignore 13 Jul 2009 04:51:55 -0000 1.65 @@ -1,2 +1,3 @@ kdeutils-4.2.90.tar.bz2 kdeutils-4.2.95.tar.bz2 +kdeutils-4.2.96.tar.bz2 Index: kdeutils.spec =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/kdeutils.spec,v retrieving revision 1.187 retrieving revision 1.188 diff -u -p -r1.187 -r1.188 --- kdeutils.spec 28 Jun 2009 20:35:51 -0000 1.187 +++ kdeutils.spec 13 Jul 2009 04:51:55 -0000 1.188 @@ -3,7 +3,7 @@ Name: kdeutils Epoch: 6 -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} Summary: K Desktop Environment - Utilities @@ -17,7 +17,6 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch1: kdeutils-4.2.85-pykde4.patch ## upstreamed patches -Patch100: kdeutils-4.2.90-ark_servicepack.patch ## upstream fixes @@ -86,8 +85,6 @@ Requires: system-config-printer-libs # NEEDSWORK #patch1 -p1 -b .pykde4 -%patch100 -p1 -b .ark_servicepack - %build @@ -196,6 +193,9 @@ fi %changelog +* Mon Jul 13 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 26 Jun 2009 14:04:32 -0000 1.65 +++ sources 13 Jul 2009 04:51:55 -0000 1.66 @@ -1 +1 @@ -c15eec30afec2984ecd774dc0ae9c992 kdeutils-4.2.95.tar.bz2 +73e8f37e34fbdf0528646fd07aa010fc kdeutils-4.2.96.tar.bz2 From rishi at fedoraproject.org Mon Jul 13 05:17:47 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Mon, 13 Jul 2009 05:17:47 +0000 (UTC) Subject: rpms/libchamplain/F-11 libchamplain.spec,1.4,1.5 Message-ID: <20090713051747.B3D4C11C0493@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/libchamplain/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18656 Modified Files: libchamplain.spec Log Message: * Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 - Version bump to 0.3.3. - Added 'BuildRequires: chrpath' for removing rpaths. Index: libchamplain.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/F-11/libchamplain.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libchamplain.spec 11 Jul 2009 13:22:59 -0000 1.4 +++ libchamplain.spec 13 Jul 2009 05:17:17 -0000 1.5 @@ -7,14 +7,13 @@ Group: System Environment/Libraries URL: http://projects.gnome.org/libchamplain/ Source0: http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/%{name}-%{version}.tar.gz -Patch0: foo.patch - BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: clutter-cairo-devel -BuildRequires: clutter-gtk-devel -BuildRequires: libsoup-devel -BuildRequires: sqlite-devel +BuildRequires: chrpath +BuildRequires: clutter-cairo-devel +BuildRequires: clutter-gtk-devel +BuildRequires: libsoup-devel +BuildRequires: sqlite-devel %description Libchamplain is a C library aimed to provide a ClutterActor to display @@ -56,21 +55,17 @@ Requires: pkgconfig Requires: gtk-doc Requires: %{name}-devel = %{version}-%{release} +Requires: %{name}-gtk = %{version}-%{release} %description gtk-devel This package contains development files for %{name}-gtk. %prep %setup -q -%patch0 -p1 %build %configure --disable-static --enable-gtk --enable-gtk-doc -# Remove rpaths. -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool - # Omit unused direct shared library dependencies. sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool @@ -82,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -delete +# Remove rpaths. +chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libchamplain-gtk-0.3.so.1.0.0 + %clean rm -rf $RPM_BUILD_ROOT @@ -89,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig +%post gtk -p /sbin/ldconfig + +%postun gtk -p /sbin/ldconfig + %files %defattr(-,root,root,-) %doc AUTHORS @@ -97,12 +99,11 @@ rm -rf $RPM_BUILD_ROOT %doc NEWS %{_libdir}/%{name}-0.3.so.* -#%dir %{_datadir}/champlain -#%{_datadir}/champlain/error.svg - %files devel %defattr(-,root,root,-) +%doc demos/animated-marker.c %doc demos/launcher.c +%doc demos/polygons.c %{_libdir}/%{name}-0.3.so %{_libdir}/pkgconfig/champlain-0.3.pc @@ -112,9 +113,14 @@ rm -rf $RPM_BUILD_ROOT %dir %{_includedir}/%{name}-0.3 %{_includedir}/%{name}-0.3/champlain +%files gtk +%defattr(-,root,root,-) +%{_libdir}/%{name}-gtk-0.3.so.* + %files gtk-devel %defattr(-,root,root,-) -%doc demos/launcher.c +%doc demos/launcher-gtk.c +%doc demos/markers.c %{_libdir}/%{name}-gtk-0.3.so %{_libdir}/pkgconfig/champlain-gtk-0.3.pc @@ -127,6 +133,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 - Version bump to 0.3.3. +- Added 'BuildRequires: chrpath' for removing rpaths. * Wed Mar 18 2009 Debarshi Ray - 0.2.9-1 - Version bump to 0.2.9. From rishi at fedoraproject.org Mon Jul 13 05:19:23 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Mon, 13 Jul 2009 05:19:23 +0000 (UTC) Subject: rpms/libchamplain/devel .cvsignore, 1.3, 1.4 libchamplain.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090713051923.942E011C0493@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/libchamplain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19179 Modified Files: .cvsignore libchamplain.spec sources Log Message: * Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 - Version bump to 0.3.3. - Added 'BuildRequires: chrpath' for removing rpaths. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2009 20:47:42 -0000 1.3 +++ .cvsignore 13 Jul 2009 05:18:53 -0000 1.4 @@ -1 +1 @@ -libchamplain-0.2.9.tar.gz +libchamplain-0.3.3.tar.gz Index: libchamplain.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/devel/libchamplain.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libchamplain.spec 17 Mar 2009 20:47:42 -0000 1.3 +++ libchamplain.spec 13 Jul 2009 05:18:53 -0000 1.4 @@ -1,16 +1,19 @@ Summary: Map view for Clutter Name: libchamplain -Version: 0.2.9 +Version: 0.3.3 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries -URL: http://blog.pierlux.com/projects/libchamplain/en/ -Source0: http://libchamplain.pierlux.com/release/latest/%{name}-%{version}.tar.gz +URL: http://projects.gnome.org/libchamplain/ +Source0: http://ftp.gnome.org/pub/GNOME/sources/libchamplain/0.3/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: clutter-cairo-devel >= 0.8 -BuildRequires: libsoup-devel +BuildRequires: chrpath +BuildRequires: clutter-cairo-devel +BuildRequires: clutter-gtk-devel +BuildRequires: libsoup-devel +BuildRequires: sqlite-devel %description Libchamplain is a C library aimed to provide a ClutterActor to display @@ -21,7 +24,7 @@ Summary: Development files for %{name} Group: Development/Libraries %if 0%{?fc10} -Requires: clutter-devel >= 0.8 +Requires: clutter-devel Requires: pkgconfig %endif @@ -31,13 +34,37 @@ Requires: %{name} = %{version}-%{release %description devel This package contains development files for %{name}. +%package gtk +Summary: Gtk+ widget wrapper for %{name} +Group: System Environment/Libraries + +Requires: %{name} = %{version}-%{release} + +%description gtk +Libchamplain-gtk is a library providing a GtkWidget to embed %{name} +into Gtk+ applications. + +%package gtk-devel +Summary: Development files for %{name}-gtk +Group: Development/Libraries + +%if 0%{?fc10} +Requires: gtk2-devel +Requires: pkgconfig +%endif + +Requires: gtk-doc +Requires: %{name}-devel = %{version}-%{release} +Requires: %{name}-gtk = %{version}-%{release} + +%description gtk-devel +This package contains development files for %{name}-gtk. + %prep %setup -q -sed --in-place --expression 's/^#include //g' ./demos/launcher.c - %build -%configure --disable-static --enable-gtk-doc +%configure --disable-static --enable-gtk --enable-gtk-doc # Omit unused direct shared library dependencies. sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool @@ -50,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name "*.la" -delete +# Remove rpaths. +chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libchamplain-gtk-0.3.so.1.0.0 + %clean rm -rf $RPM_BUILD_ROOT @@ -57,29 +87,54 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig +%post gtk -p /sbin/ldconfig + +%postun gtk -p /sbin/ldconfig + %files %defattr(-,root,root,-) +%doc AUTHORS %doc ChangeLog %doc COPYING %doc NEWS -%{_libdir}/%{name}-0.2.so.* - -%dir %{_datadir}/champlain -%{_datadir}/champlain/error.svg +%{_libdir}/%{name}-0.3.so.* %files devel %defattr(-,root,root,-) +%doc demos/animated-marker.c %doc demos/launcher.c -%{_libdir}/%{name}-0.2.so -%{_libdir}/pkgconfig/champlain-0.2.pc +%doc demos/polygons.c +%{_libdir}/%{name}-0.3.so +%{_libdir}/pkgconfig/champlain-0.3.pc %dir %{_datadir}/gtk-doc/html/libchamplain %doc %{_datadir}/gtk-doc/html/libchamplain/* -%dir %{_includedir}/%{name}-0.2 -%{_includedir}/%{name}-0.2/champlain +%dir %{_includedir}/%{name}-0.3 +%{_includedir}/%{name}-0.3/champlain + +%files gtk +%defattr(-,root,root,-) +%{_libdir}/%{name}-gtk-0.3.so.* + +%files gtk-devel +%defattr(-,root,root,-) +%doc demos/launcher-gtk.c +%doc demos/markers.c +%{_libdir}/%{name}-gtk-0.3.so +%{_libdir}/pkgconfig/champlain-gtk-0.3.pc + +%dir %{_datadir}/gtk-doc/html/libchamplain-gtk +%doc %{_datadir}/gtk-doc/html/libchamplain-gtk/* + +%dir %{_includedir}/%{name}-gtk-0.3 +%{_includedir}/%{name}-gtk-0.3/champlain-gtk %changelog +* Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 +- Version bump to 0.3.3. +- Added 'BuildRequires: chrpath' for removing rpaths. + * Wed Mar 18 2009 Debarshi Ray - 0.2.9-1 - Version bump to 0.2.9. * Fixed elastic effect. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2009 20:47:42 -0000 1.3 +++ sources 13 Jul 2009 05:18:53 -0000 1.4 @@ -1 +1 @@ -8c1f4ccf31ac8d5351db7e0f734d3e63 libchamplain-0.2.9.tar.gz +06f30890b86bf9fc4791fe9a4cb110e1 libchamplain-0.3.3.tar.gz From than at fedoraproject.org Mon Jul 13 05:21:22 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 13 Jul 2009 05:21:22 +0000 (UTC) Subject: rpms/oxygen-icon-theme/devel .cvsignore, 1.5, 1.6 oxygen-icon-theme.spec, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090713052122.5245111C0493@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/oxygen-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19871 Modified Files: .cvsignore oxygen-icon-theme.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Jun 2009 14:20:47 -0000 1.5 +++ .cvsignore 13 Jul 2009 05:21:21 -0000 1.6 @@ -1,2 +1,3 @@ oxygen-icons-4.2.90.tar.bz2 oxygen-icons-4.2.95.tar.bz2 +oxygen-icons-4.2.96.tar.bz2 Index: oxygen-icon-theme.spec =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/oxygen-icon-theme.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- oxygen-icon-theme.spec 26 Jun 2009 14:20:47 -0000 1.4 +++ oxygen-icon-theme.spec 13 Jul 2009 05:21:21 -0000 1.5 @@ -1,6 +1,6 @@ Name: oxygen-icon-theme Summary: Oxygen icon theme -Version: 4.2.95 +Version: 4.2.96 Release: 1%{?dist} License: LGPLv3+ @@ -66,6 +66,9 @@ fi %changelog +* Mon Jul 13 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Fri Jun 26 2009 Than Ngo - 4.2.95-1 - 4.3rc1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Jun 2009 14:20:47 -0000 1.5 +++ sources 13 Jul 2009 05:21:21 -0000 1.6 @@ -1 +1 @@ -c9641494d128fd04eb09c273b57fc22a oxygen-icons-4.2.95.tar.bz2 +95fd0245065f27c8a1f47337310fe9cf oxygen-icons-4.2.96.tar.bz2 From ovasik at fedoraproject.org Mon Jul 13 05:23:07 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Mon, 13 Jul 2009 05:23:07 +0000 (UTC) Subject: rpms/taskjuggler/devel .cvsignore, 1.9, 1.10 sources, 1.10, 1.11 taskjuggler.spec, 1.33, 1.34 Message-ID: <20090713052307.D3C6B11C0493@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/taskjuggler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20258 Modified Files: .cvsignore sources taskjuggler.spec Log Message: New upstream release 2.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 18 Jun 2009 08:41:36 -0000 1.9 +++ .cvsignore 13 Jul 2009 05:22:37 -0000 1.10 @@ -1 +1 @@ -taskjuggler-2.4.2_beta2.tar.bz2 +taskjuggler-2.4.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 18 Jun 2009 08:41:36 -0000 1.10 +++ sources 13 Jul 2009 05:22:37 -0000 1.11 @@ -1 +1 @@ -71c7c1ceec4c1490a4a5cf0fac22ceb3 taskjuggler-2.4.2_beta2.tar.bz2 +f5b20952fffbe2f436ccd7cf1a4fcf76 taskjuggler-2.4.2.tar.bz2 Index: taskjuggler.spec =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/taskjuggler.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- taskjuggler.spec 18 Jun 2009 08:41:36 -0000 1.33 +++ taskjuggler.spec 13 Jul 2009 05:22:37 -0000 1.34 @@ -1,12 +1,12 @@ Name: taskjuggler Version: 2.4.2 -Release: 0.2.beta2%{?dist} +Release: 1 Summary: Project management tool Group: Applications/Productivity License: GPL+ URL: http://www.taskjuggler.org -Source0: http://www.taskjuggler.org/download/%{name}-%{version}_beta2.tar.bz2 +Source0: http://www.taskjuggler.org/download/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} < 10 @@ -41,7 +41,7 @@ Requires: %{name} = %{version}-%{release Libraries for TaskJuggler package. %prep -%setup -q -n taskjuggler-2.4.2_beta2 +%setup -q %build [ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/qt.sh @@ -118,6 +118,9 @@ fi %{_libdir}/libtaskjuggler* %changelog +* Mon Jul 13 2009 Ondrej Vasik - 2.4.2-1 +- New upstream release 2.4.2 + * Thu Jun 18 2009 Ondrej Vasik - 2.4.2-0.2.beta2 - upstream beta2 release candidate From than at fedoraproject.org Mon Jul 13 05:25:20 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 13 Jul 2009 05:25:20 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.486,1.487 Message-ID: <20090713052520.554F511C0493@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20844 Modified Files: kdelibs.spec Log Message: 4.3rc2 Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.486 retrieving revision 1.487 diff -u -p -r1.486 -r1.487 --- kdelibs.spec 10 Jul 2009 20:13:40 -0000 1.486 +++ kdelibs.spec 13 Jul 2009 05:24:49 -0000 1.487 @@ -217,7 +217,6 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi # upstream patches # 4.3 -%patch100 -p4 -b .kdebug#198338 %build From mclasen at fedoraproject.org Mon Jul 13 05:33:37 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 13 Jul 2009 05:33:37 +0000 (UTC) Subject: rpms/epiphany/devel .cvsignore, 1.82, 1.83 epiphany.spec, 1.233, 1.234 sources, 1.85, 1.86 Message-ID: <20090713053337.2A00311C0493@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22898 Modified Files: .cvsignore epiphany.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/.cvsignore,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- .cvsignore 16 Jun 2009 05:04:16 -0000 1.82 +++ .cvsignore 13 Jul 2009 05:33:36 -0000 1.83 @@ -1 +1 @@ -epiphany-2.27.3.tar.bz2 +epiphany-2.27.4.tar.bz2 Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/epiphany.spec,v retrieving revision 1.233 retrieving revision 1.234 diff -u -p -r1.233 -r1.234 --- epiphany.spec 17 Jun 2009 17:45:45 -0000 1.233 +++ epiphany.spec 13 Jul 2009 05:33:36 -0000 1.234 @@ -7,7 +7,7 @@ Summary: Web browser for GNOME Name: epiphany -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} %define major_version 2.27 Provides: epiphany(abi) = %{major_version} @@ -243,6 +243,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/epiphany %changelog +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/sources,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- sources 16 Jun 2009 05:04:16 -0000 1.85 +++ sources 13 Jul 2009 05:33:36 -0000 1.86 @@ -1 +1 @@ -83d1785c8e15d77ae088a7d9eed6a705 epiphany-2.27.3.tar.bz2 +35f37bf3150614f1d8ff3f21864737ca epiphany-2.27.4.tar.bz2 From petersen at fedoraproject.org Mon Jul 13 05:50:03 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Mon, 13 Jul 2009 05:50:03 +0000 (UTC) Subject: comps comps-f12.xml.in,1.35,1.36 Message-ID: <20090713055003.E75EB11C0493@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27189 Modified Files: comps-f12.xml.in Log Message: [ja] make sazanami fonts optional Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- comps-f12.xml.in 13 Jul 2009 03:44:38 -0000 1.35 +++ comps-f12.xml.in 13 Jul 2009 05:49:31 -0000 1.36 @@ -3260,8 +3260,6 @@ ipa-pgothic-fonts ipa-pmincho-fonts japanese-bitmap-fonts - sazanami-gothic-fonts - sazanami-mincho-fonts vlgothic-fonts vlgothic-p-fonts cmigemo @@ -3288,6 +3286,8 @@ nkf oniguruma perl-NKF + sazanami-gothic-fonts + sazanami-mincho-fonts scim-anthy scim-skk stardict-dic-ja From mclasen at fedoraproject.org Mon Jul 13 06:00:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 13 Jul 2009 06:00:32 +0000 (UTC) Subject: rpms/gnome-applets/devel gnome-applets.spec, 1.347, 1.348 polkit1.patch, 1.1, 1.2 Message-ID: <20090713060032.97EF311C0493@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29738 Modified Files: gnome-applets.spec polkit1.patch Log Message: fix polkit1 port Index: gnome-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/gnome-applets.spec,v retrieving revision 1.347 retrieving revision 1.348 diff -u -p -r1.347 -r1.348 --- gnome-applets.spec 1 Jul 2009 12:39:54 -0000 1.347 +++ gnome-applets.spec 13 Jul 2009 06:00:01 -0000 1.348 @@ -34,7 +34,7 @@ Summary: Small applications for the GNOME panel Name: gnome-applets Version: 2.27.3 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -157,8 +157,7 @@ tar xjf %{SOURCE2} %patch34 -p1 -b .ppp-includes %patch35 -p1 -b .modemlights-libgnome -intltoolize --force -autoreconf +autoreconf -i -f %build @@ -344,11 +343,14 @@ fi %{_libexecdir}/invest-applet %{_sysconfdir}/gconf/schemas/* %{_sysconfdir}/dbus-1/system.d/org.gnome.CPUFreqSelector.conf -%{_datadir}/PolicyKit/policy/org.gnome.cpufreqselector.policy +%{_datadir}/polkit-1/actions/org.gnome.cpufreqselector.policy %{_datadir}/dbus-1/system-services/org.gnome.CPUFreqSelector.service %changelog +* Mon Jul 13 2009 Matthias Clasen - 1:2.27.3-4 +- Fix PolicyKit 1 patch + * Tue Jun 30 2009 Matthias Clasen - 1:2.27.3-3 - Rebuild against new libxklavier polkit1.patch: Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/polkit1.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- polkit1.patch 10 Jun 2009 04:30:35 -0000 1.1 +++ polkit1.patch 13 Jul 2009 06:00:01 -0000 1.2 @@ -1,6 +1,252 @@ -diff -u -r gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c ---- gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c 2009-05-14 23:45:38.384939252 -0400 +diff -up gnome-applets-2.27.3/configure.in.polkit1 gnome-applets-2.27.3/configure.in +--- gnome-applets-2.27.3/configure.in.polkit1 2009-07-13 01:24:29.668203682 -0400 ++++ gnome-applets-2.27.3/configure.in 2009-07-13 01:24:29.812193607 -0400 +@@ -33,7 +35,7 @@ LIBXML_REQUIRED=2.5.0 + GWEATHER_REQUIRED=2.22.1 + GUCHARMAP2_REQUIRED=2.23.0 + GUCHARMAP_REQUIRED=1.4.0 +-POLKIT_REQUIRED=0.7 ++POLKIT_REQUIRED=0.92 + NETWORKMANAGER_REQUIRED=0.7 + GST10_REQUIRED=0.10.2 + dnl *************************************************************************** +@@ -210,7 +217,7 @@ AC_ARG_ENABLE([polkit], + enable_polkit=$enableval, + enable_polkit=auto) + if test "x$enable_polkit" != "xno"; then +- PKG_CHECK_MODULES(POLKIT, polkit >= $POLKIT_REQUIRED polkit-dbus >= $POLKIT_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no) ++ PKG_CHECK_MODULES(POLKIT, polkit-gobject-1 >= $POLKIT_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no) + if test "x$enable_polkit" = "xyes" -a "x$HAVE_POLKIT" = "xno"; then + AC_MSG_ERROR([PolicyKit support explicitly requested but dependencies not found]) + fi +@@ -226,22 +233,6 @@ AM_CONDITIONAL(HAVE_POLKIT, test "x$HAVE + AC_SUBST(POLKIT_CFLAGS) + AC_SUBST(POLKIT_LIBS) + +-POLKIT_GNOME_CFLAGS= +-POLKIT_GNOME_LIBS= +-polkit_gnome=no +-if test "x$enable_polkit" != "xno"; then +- PKG_CHECK_MODULES(POLKIT_GNOME, polkit-gnome >= $POLKIT_REQUIRED, polkit_gnome=yes, polkit_gnome=no) +- if test "x$enable_polkit" = "xyes" -a "x$polkit_gnome" = "xno"; then +- AC_MSG_ERROR([PolicyKit-gnome support explicitly requested but dependencies not found]) +- fi +-fi +-if test "x$polkit_gnome" = "xyes"; then +- AC_DEFINE(HAVE_POLKIT_GNOME, [1], [PolicyKit-gnome available]) +-fi +-AM_CONDITIONAL(HAVE_POLKIT_GNOME, test "x$polkit_gnome" = "xyes") +-AC_SUBST(POLKIT_GNOME_CFLAGS) +-AC_SUBST(POLKIT_GNOME_LIBS) +- + + dnl -- check for libhal (optional) -------------------------------------------- + HAL_CFLAGS= +@@ -797,7 +788,6 @@ gnome-applets-$VERSION configure summary + - cpufreq $build_cpufreq_applet + - building selector $enable_selector + - using PolicyKit $HAVE_POLKIT +- - using PolicyKit-gnome $polkit_gnome + - enabling suid bit $suid + - drivemount always + - geyes always +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector.c.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector.c +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector.c.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector.c 2009-07-13 01:24:29.710444190 -0400 +@@ -19,19 +19,18 @@ + + #include + +-#ifdef HAVE_POLKIT_GNOME ++#ifdef HAVE_POLKIT + #include +-#endif /* HAVE_POLKIT_GNOME */ ++#endif /* HAVE_POLKIT */ + + #include "cpufreq-selector.h" + + struct _CPUFreqSelector { + GObject parent; + +-#ifdef HAVE_POLKIT_GNOME ++#ifdef HAVE_POLKIT + DBusGConnection *system_bus; +- DBusGConnection *session_bus; +-#endif /* HAVE_POLKIT_GNOME */ ++#endif /* HAVE_POLKIT */ + }; + + struct _CPUFreqSelectorClass { +@@ -45,10 +44,9 @@ cpufreq_selector_finalize (GObject *obje + { + CPUFreqSelector *selector = CPUFREQ_SELECTOR (object); + +-#ifdef HAVE_POLKIT_GNOME ++#ifdef HAVE_POLKIT + selector->system_bus = NULL; +- selector->session_bus = NULL; +-#endif /* HAVE_POLKIT_GNOME */ ++#endif /* HAVE_POLKIT */ + + G_OBJECT_CLASS (cpufreq_selector_parent_class)->finalize (object); + } +@@ -77,7 +75,7 @@ cpufreq_selector_get_default (void) + return selector; + } + +-#ifdef HAVE_POLKIT_GNOME ++#ifdef HAVE_POLKIT + typedef enum { + FREQUENCY, + GOVERNOR +@@ -114,90 +112,12 @@ cpufreq_selector_connect_to_system_bus ( + { + if (selector->system_bus) + return TRUE; +- ++ + selector->system_bus = dbus_g_bus_get (DBUS_BUS_SYSTEM, error); + + return (selector->system_bus != NULL); + } + +-static gboolean +-cpufreq_selector_connect_to_session_bus (CPUFreqSelector *selector, +- GError **error) +-{ +- if (selector->session_bus) +- return TRUE; +- +- selector->session_bus = dbus_g_bus_get (DBUS_BUS_SESSION, error); +- +- return (selector->session_bus != NULL); +-} +- +-static void +-dbus_auth_call_notify_cb (DBusGProxy *proxy, +- DBusGProxyCall *call, +- gpointer user_data) +-{ +- SelectorAsyncData *data; +- gboolean gained_privilege; +- GError *error = NULL; +- +- data = (SelectorAsyncData *)user_data; +- +- if (!dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_BOOLEAN, &gained_privilege, G_TYPE_INVALID)) { +- g_warning ("%s", error->message); +- g_error_free (error); +- +- selector_async_data_free (data); +- +- return; +- } +- +- if (gained_privilege) { +- switch (data->call) { +- case FREQUENCY: +- selector_set_frequency_async (data); +- break; +- case GOVERNOR: +- selector_set_governor_async (data); +- break; +- default: +- g_assert_not_reached (); +- } +- } else { +- selector_async_data_free (data); +- } +-} +- +-static void +-do_auth_async (SelectorAsyncData *data) +-{ +- DBusGProxy *proxy; +- GError *error = NULL; +- +- if (!cpufreq_selector_connect_to_session_bus (data->selector, &error)) { +- g_warning ("%s", error->message); +- g_error_free (error); +- +- selector_async_data_free (data); +- +- return; +- } +- +- proxy = dbus_g_proxy_new_for_name (data->selector->session_bus, +- "org.gnome.PolicyKit", +- "/org/gnome/PolicyKit/Manager", +- "org.gnome.PolicyKit.Manager"); +- +- dbus_g_proxy_begin_call_with_timeout (proxy, +- "ShowDialog", +- dbus_auth_call_notify_cb, +- data, NULL, +- INT_MAX, +- G_TYPE_STRING, "org.gnome.cpufreqselector", +- G_TYPE_UINT, data->parent_xid, +- G_TYPE_INVALID); +-} +- + static void + dbus_set_call_notify_cb (DBusGProxy *proxy, + DBusGProxyCall *call, +@@ -213,12 +133,6 @@ dbus_set_call_notify_cb (DBusGProxy + return; + } + +- if (error->domain == DBUS_GERROR && DBUS_GERROR_REMOTE_EXCEPTION && +- dbus_g_error_has_name (error, "org.gnome.CPUFreqSelector.NotAuthorized")) { +- do_auth_async (data); +- return; +- } +- + selector_async_data_free (data); + g_warning ("%s", error->message); + g_error_free (error); +@@ -229,13 +143,13 @@ selector_set_frequency_async (SelectorAs + { + DBusGProxy *proxy; + GError *error = NULL; +- ++ + if (!cpufreq_selector_connect_to_system_bus (data->selector, &error)) { + g_warning ("%s", error->message); + g_error_free (error); + + selector_async_data_free (data); +- ++ + return; + } + +@@ -243,7 +157,7 @@ selector_set_frequency_async (SelectorAs + "org.gnome.CPUFreqSelector", + "/org/gnome/cpufreq_selector/selector", + "org.gnome.CPUFreqSelector"); +- ++ + dbus_g_proxy_begin_call_with_timeout (proxy, "SetFrequency", + dbus_set_call_notify_cb, + data, NULL, +@@ -321,7 +235,7 @@ cpufreq_selector_set_governor_async (CPU + + selector_set_governor_async (data); + } +-#else /* !HAVE_POLKIT_GNOME */ ++#else /* !HAVE_POLKIT */ + static void + cpufreq_selector_run_command (CPUFreqSelector *selector, + const gchar *args) +@@ -372,4 +286,4 @@ cpufreq_selector_set_governor_async (CPU + cpufreq_selector_run_command (selector, args); + g_free (args); + } +-#endif /* HAVE_POLKIT_GNOME */ ++#endif /* HAVE_POLKIT */ +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.c 2009-07-13 01:24:29.712443397 -0400 @@ -17,7 +17,7 @@ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ @@ -10,7 +256,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ #include #include "cpufreq-selector.h" -@@ -37,7 +37,7 @@ +@@ -37,7 +37,7 @@ struct _CPUFreqSelectorService { DBusGConnection *system_bus; /* PolicyKit */ @@ -19,7 +265,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ }; struct _CPUFreqSelectorServiceClass { -@@ -99,9 +99,9 @@ +@@ -99,9 +99,9 @@ cpufreq_selector_service_finalize (GObje service->selectors_max = -1; } @@ -32,7 +278,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ } G_OBJECT_CLASS (cpufreq_selector_service_parent_class)->finalize (object); -@@ -153,42 +153,6 @@ +@@ -153,42 +153,6 @@ reset_killtimer (void) NULL); } @@ -75,7 +321,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ gboolean cpufreq_selector_service_register (CPUFreqSelectorService *service, GError **error) -@@ -198,7 +162,6 @@ +@@ -198,7 +162,6 @@ cpufreq_selector_service_register (CPUFr gboolean res; guint result; GError *err = NULL; @@ -83,7 +329,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ if (service->system_bus) { g_set_error (error, -@@ -268,30 +231,7 @@ +@@ -268,30 +231,7 @@ cpufreq_selector_service_register (CPUFr return FALSE; } @@ -115,7 +361,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ service->system_bus = connection; -@@ -330,62 +270,39 @@ +@@ -330,62 +270,42 @@ cpufreq_selector_service_check_policy (C DBusGMethodInvocation *context, GError **error) { @@ -125,13 +371,13 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ + PolkitSubject *subject; + PolkitAuthorizationResult *result; gchar *sender; - DBusConnection *connection; +- DBusConnection *connection; - DBusError dbus_error; - PolKitError *pk_error = NULL; + gboolean ret; sender = dbus_g_method_get_sender (context); - connection = dbus_g_connection_get_connection (service->system_bus); +- connection = dbus_g_connection_get_connection (service->system_bus); - dbus_error_init (&dbus_error); - pk_caller = polkit_caller_new_from_dbus_name (connection, sender, &dbus_error); @@ -143,15 +389,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ - dbus_error.name, dbus_error.message); - dbus_error_free (&dbus_error); - g_free (sender); -+ subject = polkit_system_bus_name_new (sender); -+ result = polkit_authority_check_authorization_sync (service->authority, -+ service, -+ "org.gnome.cpufreqselector", -+ NULL, -+ POLKIT_CHECK_AUTHORIZATION_FLAGS_ALLOW_USER_INTERACTION, -+ NULL, NULL); -+ g_object_unref (subject); - +- - return FALSE; - } - g_free (sender); @@ -165,40 +403,51 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ - polkit_action_unref (pk_action); - - if (polkit_error_is_set (pk_error)) { -+ if (!polkit_authorization_result_get_is_authorized (result)) { - g_set_error (error, - CPUFREQ_SELECTOR_SERVICE_ERROR, +- g_set_error (error, +- CPUFREQ_SELECTOR_SERVICE_ERROR, - SERVICE_ERROR_GENERAL, - "Could not determine if caller is authorized: %s", - polkit_error_get_error_message (pk_error)); - polkit_error_free (pk_error); -+ SERVICE_ERROR_NOT_AUTHORIZED, -+ "Caller is not authorized"); ++ subject = polkit_system_bus_name_new (sender); ++ result = polkit_authority_check_authorization_sync (service->authority, ++ subject, ++ "org.gnome.cpufreqselector", ++ NULL, ++ POLKIT_CHECK_AUTHORIZATION_FLAGS_ALLOW_USER_INTERACTION, ++ NULL, error); ++ g_object_unref (subject); -- return FALSE; -+ ret = FALSE; -+ } -+ else { -+ ret = TRUE; ++ if (*error) { ++ g_warning ("check policy: %s", (*error)->message); + return FALSE; } - if (pk_result != POLKIT_RESULT_YES) { -- g_set_error (error, -- CPUFREQ_SELECTOR_SERVICE_ERROR, -- SERVICE_ERROR_NOT_AUTHORIZED, ++ if (!polkit_authorization_result_get_is_authorized (result)) { + g_set_error (error, + CPUFREQ_SELECTOR_SERVICE_ERROR, + SERVICE_ERROR_NOT_AUTHORIZED, - "Caller is not authorized: %s", - polkit_result_to_string_representation (pk_result)); -+ g_object_unref (result); ++ "Caller is not authorized"); - return FALSE; -- } ++ ret = FALSE; + } - - return TRUE; ++ else { ++ ret = TRUE; ++ } ++ ++ g_object_unref (result); ++ + return ret; } /* D-BUS interface */ -@@ -518,3 +435,43 @@ +@@ -518,3 +438,47 @@ cpufreq_selector_service_set_governor (C return TRUE; } @@ -211,24 +460,26 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ + PolkitSubject *subject; + PolkitAuthorizationResult *result; + gchar *sender; -+ DBusConnection *connection; + gboolean ret; ++ GError *error = NULL; + + reset_killtimer (); + + sender = dbus_g_method_get_sender (context); -+ connection = dbus_g_connection_get_connection (service->system_bus); -+ + subject = polkit_system_bus_name_new (sender); + result = polkit_authority_check_authorization_sync (service->authority, -+ service, ++ subject, + "org.gnome.cpufreqselector", + NULL, + 0, -+ NULL, NULL); -+ g_object_unref (subject); ++ NULL, &error); ++ g_object_unref (subject); ++ if (error) { ++ dbus_g_method_return_error (context, error); ++ return FALSE; ++ } + -+ if (polkit_authorization_result_get_is_authorized (result)) { ++ if (polkit_authorization_result_get_is_authorized (result)) { + ret = TRUE; + } + else if (polkit_authorization_result_get_is_challenge (result)) { @@ -240,12 +491,14 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ + + g_object_unref (result); + -+ return ret; ++ dbus_g_method_return (context, ret); ++ ++ return TRUE; +} -diff -u -r gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h ---- gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h 2009-05-14 23:39:52.716688684 -0400 -@@ -62,6 +62,8 @@ +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.h 2009-07-13 01:24:29.713443245 -0400 +@@ -62,6 +62,8 @@ gboolean cpufreq_selector guint cpu, const gchar *governor, DBusGMethodInvocation *context); @@ -254,10 +507,10 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ G_END_DECLS -diff -u -r gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml ---- gnome-applets-2.26.1/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml 2009-05-14 23:38:41.683938881 -0400 -@@ -13,6 +13,10 @@ +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/cpufreq-selector-service.xml 2009-07-13 01:24:29.714443163 -0400 +@@ -13,6 +13,11 @@ @@ -265,207 +518,38 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ + + + ++ + + -diff -u -r gnome-applets-2.26.1/cpufreq/src/cpufreq-selector.c hacked/cpufreq/src/cpufreq-selector.c ---- gnome-applets-2.26.1/cpufreq/src/cpufreq-selector.c 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/cpufreq-selector.c 2009-05-14 23:58:36.989938814 -0400 -@@ -19,19 +19,18 @@ - - #include - --#ifdef HAVE_POLKIT_GNOME -+#ifdef HAVE_POLKIT - #include --#endif /* HAVE_POLKIT_GNOME */ -+#endif /* HAVE_POLKIT */ - - #include "cpufreq-selector.h" - - struct _CPUFreqSelector { - GObject parent; - --#ifdef HAVE_POLKIT_GNOME -+#ifdef HAVE_POLKIT - DBusGConnection *system_bus; -- DBusGConnection *session_bus; --#endif /* HAVE_POLKIT_GNOME */ -+#endif /* HAVE_POLKIT */ - }; - - struct _CPUFreqSelectorClass { -@@ -45,10 +44,9 @@ - { - CPUFreqSelector *selector = CPUFREQ_SELECTOR (object); - --#ifdef HAVE_POLKIT_GNOME -+#ifdef HAVE_POLKIT - selector->system_bus = NULL; -- selector->session_bus = NULL; --#endif /* HAVE_POLKIT_GNOME */ -+#endif /* HAVE_POLKIT */ - - G_OBJECT_CLASS (cpufreq_selector_parent_class)->finalize (object); - } -@@ -77,7 +75,7 @@ - return selector; - } - --#ifdef HAVE_POLKIT_GNOME -+#ifdef HAVE_POLKIT - typedef enum { - FREQUENCY, - GOVERNOR -@@ -114,90 +112,12 @@ - { - if (selector->system_bus) - return TRUE; -- -+ - selector->system_bus = dbus_g_bus_get (DBUS_BUS_SYSTEM, error); - - return (selector->system_bus != NULL); - } - --static gboolean --cpufreq_selector_connect_to_session_bus (CPUFreqSelector *selector, -- GError **error) --{ -- if (selector->session_bus) -- return TRUE; -- -- selector->session_bus = dbus_g_bus_get (DBUS_BUS_SESSION, error); -- -- return (selector->session_bus != NULL); --} -- --static void --dbus_auth_call_notify_cb (DBusGProxy *proxy, -- DBusGProxyCall *call, -- gpointer user_data) --{ -- SelectorAsyncData *data; -- gboolean gained_privilege; -- GError *error = NULL; -- -- data = (SelectorAsyncData *)user_data; -- -- if (!dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_BOOLEAN, &gained_privilege, G_TYPE_INVALID)) { -- g_warning ("%s", error->message); -- g_error_free (error); -- -- selector_async_data_free (data); -- -- return; -- } -- -- if (gained_privilege) { -- switch (data->call) { -- case FREQUENCY: -- selector_set_frequency_async (data); -- break; -- case GOVERNOR: -- selector_set_governor_async (data); -- break; -- default: -- g_assert_not_reached (); -- } -- } else { -- selector_async_data_free (data); -- } --} -- --static void --do_auth_async (SelectorAsyncData *data) --{ -- DBusGProxy *proxy; -- GError *error = NULL; -- -- if (!cpufreq_selector_connect_to_session_bus (data->selector, &error)) { -- g_warning ("%s", error->message); -- g_error_free (error); -- -- selector_async_data_free (data); -- -- return; -- } -- -- proxy = dbus_g_proxy_new_for_name (data->selector->session_bus, -- "org.gnome.PolicyKit", -- "/org/gnome/PolicyKit/Manager", -- "org.gnome.PolicyKit.Manager"); -- -- dbus_g_proxy_begin_call_with_timeout (proxy, -- "ShowDialog", -- dbus_auth_call_notify_cb, -- data, NULL, -- INT_MAX, -- G_TYPE_STRING, "org.gnome.cpufreqselector", -- G_TYPE_UINT, data->parent_xid, -- G_TYPE_INVALID); --} -- - static void - dbus_set_call_notify_cb (DBusGProxy *proxy, - DBusGProxyCall *call, -@@ -213,12 +133,6 @@ - return; - } - -- if (error->domain == DBUS_GERROR && DBUS_GERROR_REMOTE_EXCEPTION && -- dbus_g_error_has_name (error, "org.gnome.CPUFreqSelector.NotAuthorized")) { -- do_auth_async (data); -- return; -- } -- - selector_async_data_free (data); - g_warning ("%s", error->message); - g_error_free (error); -@@ -229,13 +143,13 @@ - { - DBusGProxy *proxy; - GError *error = NULL; -- -+ - if (!cpufreq_selector_connect_to_system_bus (data->selector, &error)) { - g_warning ("%s", error->message); - g_error_free (error); - - selector_async_data_free (data); -- -+ - return; - } - -@@ -243,7 +157,7 @@ - "org.gnome.CPUFreqSelector", - "/org/gnome/cpufreq_selector/selector", - "org.gnome.CPUFreqSelector"); -- -+ - dbus_g_proxy_begin_call_with_timeout (proxy, "SetFrequency", - dbus_set_call_notify_cb, - data, NULL, -@@ -321,7 +235,7 @@ - - selector_set_governor_async (data); - } --#else /* !HAVE_POLKIT_GNOME */ -+#else /* !HAVE_POLKIT */ - static void - cpufreq_selector_run_command (CPUFreqSelector *selector, - const gchar *args) -@@ -372,4 +286,4 @@ - cpufreq_selector_run_command (selector, args); - g_free (args); - } --#endif /* HAVE_POLKIT_GNOME */ -+#endif /* HAVE_POLKIT */ -diff -u -r gnome-applets-2.26.1/cpufreq/src/cpufreq-utils.c hacked/cpufreq/src/cpufreq-utils.c ---- gnome-applets-2.26.1/cpufreq/src/cpufreq-utils.c 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/cpufreq-utils.c 2009-05-15 00:00:16.374688984 -0400 +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/Makefile.am.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/Makefile.am +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/Makefile.am.polkit1 2009-07-13 01:30:32.497197598 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/Makefile.am 2009-07-13 01:30:42.876197568 -0400 +@@ -51,7 +51,7 @@ polkit_in_files = org.gnome.cpufreqselec + + dbus_servicesdir = $(datadir)/dbus-1/system-services + dbus_confdir = $(sysconfdir)/dbus-1/system.d +-polkitdir = $(datadir)/PolicyKit/policy ++polkitdir = $(datadir)/polkit-1/actions + + if HAVE_POLKIT + BUILT_SOURCES = cpufreq-selector-service-glue.h +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/org.gnome.cpufreqselector.policy.in.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/org.gnome.cpufreqselector.policy.in +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/org.gnome.cpufreqselector.policy.in.polkit1 2009-04-18 22:12:10.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-selector/org.gnome.cpufreqselector.policy.in 2009-07-13 01:24:29.715443081 -0400 +@@ -15,7 +15,7 @@ + <_message>Privileges are required to change the CPU Frequency scaling. + + no +- auth_admin_keep_always ++ auth_admin_keep + + + +diff -up gnome-applets-2.27.3/cpufreq/src/cpufreq-utils.c.polkit1 gnome-applets-2.27.3/cpufreq/src/cpufreq-utils.c +--- gnome-applets-2.27.3/cpufreq/src/cpufreq-utils.c.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/cpufreq-utils.c 2009-07-13 01:24:29.716443139 -0400 @@ -21,13 +21,6 @@ #include @@ -491,7 +575,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ guint cpufreq_utils_get_n_cpus (void) { -@@ -108,56 +105,16 @@ +@@ -108,56 +105,16 @@ cpufreq_utils_display_error (const gchar gtk_widget_show (dialog); } @@ -552,7 +636,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ if (!system_bus) { system_bus = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error); -@@ -169,54 +126,19 @@ +@@ -169,54 +126,22 @@ selector_is_available (const gchar *acti } } @@ -576,23 +660,25 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ - - return FALSE; - } -- } -- -- dbus_error_init (&dbus_error); -- pk_caller = polkit_caller_new_from_pid (dbus_g_connection_get_connection (system_bus), -- getpid (), &dbus_error); -- if (!pk_caller) { -- g_warning ("Cannot get caller from dbus name"); + proxy = dbus_g_proxy_new_for_name (system_bus, + "org.gnome.CPUFreqSelector", + "/org/gnome/cpufreq_selector/selector", + "org.gnome.CPUFreqSelector"); + -+ dbus_g_proxy_call (proxy, "CanSet", NULL, -+ G_TYPE_INVALID, -+ &result, -+ G_TYPE_INVALID); ++ if (!dbus_g_proxy_call (proxy, "CanSet", &error, ++ G_TYPE_INVALID, ++ G_TYPE_BOOLEAN, &result, ++ G_TYPE_INVALID)) { ++ g_warning ("error calling org.gnome.CPUFreqSelector.CanSet: %s", error->message); ++ g_error_free (error); + } +- dbus_error_init (&dbus_error); +- pk_caller = polkit_caller_new_from_pid (dbus_g_connection_get_connection (system_bus), +- getpid (), &dbus_error); +- if (!pk_caller) { +- g_warning ("Cannot get caller from dbus name"); +- - return FALSE; - } - @@ -618,7 +704,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ } gboolean -@@ -228,13 +150,13 @@ +@@ -228,13 +153,13 @@ cpufreq_utils_selector_is_available (voi time (&now); if (ABS (now - last_refreshed) > CACHE_VALIDITY_SEC) { @@ -634,10 +720,10 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ gboolean cpufreq_utils_selector_is_available (void) { -diff -u -r gnome-applets-2.26.1/cpufreq/src/Makefile.am hacked/cpufreq/src/Makefile.am ---- gnome-applets-2.26.1/cpufreq/src/Makefile.am 2009-03-16 19:39:11.000000000 -0400 -+++ hacked/cpufreq/src/Makefile.am 2009-05-14 23:14:18.926939010 -0400 -@@ -9,10 +9,6 @@ +diff -up gnome-applets-2.27.3/cpufreq/src/Makefile.am.polkit1 gnome-applets-2.27.3/cpufreq/src/Makefile.am +--- gnome-applets-2.27.3/cpufreq/src/Makefile.am.polkit1 2009-06-16 21:43:08.000000000 -0400 ++++ gnome-applets-2.27.3/cpufreq/src/Makefile.am 2009-07-13 01:24:29.717442917 -0400 +@@ -9,10 +9,6 @@ INCLUDES = \ $(GNOME_LIBS2_CFLAGS) \ $(LIBGLADE_CFLAGS) @@ -648,7 +734,7 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ libexec_PROGRAMS = cpufreq-applet if HAVE_LIBCPUFREQ -@@ -38,8 +34,4 @@ +@@ -38,8 +34,4 @@ cpufreq_applet_LDADD = \ $(LIBGLADE_LIBS) \ $(LIBCPUFREQ_LIBS) @@ -657,54 +743,3 @@ diff -u -r gnome-applets-2.26.1/cpufreq/ -endif - ---- gnome-applets-2.26.1/configure.in 2009-05-15 00:01:14.206719170 -0400 -+++ hacked/configure.in 2009-05-14 23:13:29.129939391 -0400 -@@ -35,7 +35,7 @@ - GWEATHER_REQUIRED=2.22.1 - GUCHARMAP2_REQUIRED=2.23.0 - GUCHARMAP_REQUIRED=1.4.0 --POLKIT_REQUIRED=0.7 -+POLKIT_REQUIRED=0.92 - NETWORKMANAGER_REQUIRED=0.7 - GST10_REQUIRED=0.10.2 - dnl *************************************************************************** -@@ -217,7 +217,7 @@ - enable_polkit=$enableval, - enable_polkit=auto) - if test "x$enable_polkit" != "xno"; then -- PKG_CHECK_MODULES(POLKIT, polkit >= $POLKIT_REQUIRED polkit-dbus >= $POLKIT_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no) -+ PKG_CHECK_MODULES(POLKIT, polkit-gobject-1 >= $POLKIT_REQUIRED dbus-glib-1 >= $DBUS_GLIB_REQUIRED, HAVE_POLKIT=yes, HAVE_POLKIT=no) - if test "x$enable_polkit" = "xyes" -a "x$HAVE_POLKIT" = "xno"; then - AC_MSG_ERROR([PolicyKit support explicitly requested but dependencies not found]) - fi -@@ -233,22 +233,6 @@ - AC_SUBST(POLKIT_CFLAGS) - AC_SUBST(POLKIT_LIBS) - --POLKIT_GNOME_CFLAGS= --POLKIT_GNOME_LIBS= --polkit_gnome=no --if test "x$enable_polkit" != "xno"; then -- PKG_CHECK_MODULES(POLKIT_GNOME, polkit-gnome >= $POLKIT_REQUIRED, polkit_gnome=yes, polkit_gnome=no) -- if test "x$enable_polkit" = "xyes" -a "x$polkit_gnome" = "xno"; then -- AC_MSG_ERROR([PolicyKit-gnome support explicitly requested but dependencies not found]) -- fi --fi --if test "x$polkit_gnome" = "xyes"; then -- AC_DEFINE(HAVE_POLKIT_GNOME, [1], [PolicyKit-gnome available]) --fi --AM_CONDITIONAL(HAVE_POLKIT_GNOME, test "x$polkit_gnome" = "xyes") --AC_SUBST(POLKIT_GNOME_CFLAGS) --AC_SUBST(POLKIT_GNOME_LIBS) -- - - dnl -- check for libhal (optional) -------------------------------------------- - HAL_CFLAGS= -@@ -797,7 +781,6 @@ - - cpufreq $build_cpufreq_applet - - building selector $enable_selector - - using PolicyKit $HAVE_POLKIT -- - using PolicyKit-gnome $polkit_gnome - - enabling suid bit $suid - - drivemount always - - geyes always From oget at fedoraproject.org Mon Jul 13 06:29:41 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Mon, 13 Jul 2009 06:29:41 +0000 (UTC) Subject: rpms/dssi/devel dssi-lib64.patch,1.2,1.3 dssi.spec,1.11,1.12 Message-ID: <20090713062941.EA13711C0493@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5342 Modified Files: dssi-lib64.patch dssi.spec Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 - Fix the default DSSI plugin path to avoid a crash dssi-lib64.patch: Index: dssi-lib64.patch =================================================================== RCS file: /cvs/pkgs/rpms/dssi/devel/dssi-lib64.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dssi-lib64.patch 30 May 2009 04:15:10 -0000 1.2 +++ dssi-lib64.patch 13 Jul 2009 06:29:40 -0000 1.3 @@ -12,12 +12,14 @@ diff -rupN dssi-1.0.0.old/doc/jack-dssi- .br diff -rupN dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c dssi-1.0.0/jack-dssi-host/jack-dssi-host.c --- dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c 2009-01-04 16:48:26.000000000 -0500 -+++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-05-30 00:02:28.000000000 -0400 -@@ -493,9 +493,9 @@ load(const char *dllName, void **dll, in ++++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-07-13 00:58:43.000000000 -0400 +@@ -492,10 +492,10 @@ load(const char *dllName, void **dll, in + if (!defaultDssiPath) { const char *home = getenv("HOME"); if (home) { - defaultDssiPath = malloc(strlen(home) + 60); +- defaultDssiPath = malloc(strlen(home) + 60); - sprintf(defaultDssiPath, "/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); ++ defaultDssiPath = malloc(strlen(home) + 100); + sprintf(defaultDssiPath, "/usr/local/lib64/dssi:/usr/lib64/dssi:/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); } else { - defaultDssiPath = strdup("/usr/local/lib/dssi:/usr/lib/dssi"); Index: dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/dssi/devel/dssi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- dssi.spec 30 May 2009 04:15:10 -0000 1.11 +++ dssi.spec 13 Jul 2009 06:29:40 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Disposable Soft Synth Interface Name: dssi Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Applications/Multimedia URL: http://dssi.sourceforge.net/ @@ -95,6 +95,9 @@ tests/controller %{_libdir}/pkgconfig/dssi.pc %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 +- Fix the default DSSI plugin path to avoid a crash + * Fri May 29 2009 Orcan Ogetbil - 1.0.0-1 - Update to 1.0.0 From oget at fedoraproject.org Mon Jul 13 06:31:44 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Mon, 13 Jul 2009 06:31:44 +0000 (UTC) Subject: rpms/dssi/F-11 dssi-lib64.patch,1.2,1.3 dssi.spec,1.11,1.12 Message-ID: <20090713063144.612F811C0493@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/dssi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5940 Modified Files: dssi-lib64.patch dssi.spec Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 - Fix the default DSSI plugin path to avoid a crash dssi-lib64.patch: Index: dssi-lib64.patch =================================================================== RCS file: /cvs/pkgs/rpms/dssi/F-11/dssi-lib64.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dssi-lib64.patch 30 May 2009 04:17:58 -0000 1.2 +++ dssi-lib64.patch 13 Jul 2009 06:31:44 -0000 1.3 @@ -12,12 +12,14 @@ diff -rupN dssi-1.0.0.old/doc/jack-dssi- .br diff -rupN dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c dssi-1.0.0/jack-dssi-host/jack-dssi-host.c --- dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c 2009-01-04 16:48:26.000000000 -0500 -+++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-05-30 00:02:28.000000000 -0400 -@@ -493,9 +493,9 @@ load(const char *dllName, void **dll, in ++++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-07-13 00:58:43.000000000 -0400 +@@ -492,10 +492,10 @@ load(const char *dllName, void **dll, in + if (!defaultDssiPath) { const char *home = getenv("HOME"); if (home) { - defaultDssiPath = malloc(strlen(home) + 60); +- defaultDssiPath = malloc(strlen(home) + 60); - sprintf(defaultDssiPath, "/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); ++ defaultDssiPath = malloc(strlen(home) + 100); + sprintf(defaultDssiPath, "/usr/local/lib64/dssi:/usr/lib64/dssi:/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); } else { - defaultDssiPath = strdup("/usr/local/lib/dssi:/usr/lib/dssi"); Index: dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/dssi/F-11/dssi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- dssi.spec 30 May 2009 04:17:58 -0000 1.11 +++ dssi.spec 13 Jul 2009 06:31:44 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Disposable Soft Synth Interface Name: dssi Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Applications/Multimedia URL: http://dssi.sourceforge.net/ @@ -95,6 +95,9 @@ tests/controller %{_libdir}/pkgconfig/dssi.pc %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 +- Fix the default DSSI plugin path to avoid a crash + * Fri May 29 2009 Orcan Ogetbil - 1.0.0-1 - Update to 1.0.0 From cchance at fedoraproject.org Mon Jul 13 06:31:40 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Mon, 13 Jul 2009 06:31:40 +0000 (UTC) Subject: rpms/liberation-fonts/devel .cvsignore, 1.10, 1.11 liberation-fonts.spec, 1.39, 1.40 sources, 1.14, 1.15 Message-ID: <20090713063140.F252E11C0493@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/liberation-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5900 Modified Files: .cvsignore liberation-fonts.spec sources Log Message: - Updated to upstream 1.05.1.20090713. - Generate TTFs with traditional kern table via fontforge scripts. (rh#503430) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 6 Jul 2009 06:18:39 -0000 1.10 +++ .cvsignore 13 Jul 2009 06:31:40 -0000 1.11 @@ -1 +1 @@ -liberation-fonts-1.05.1.20090706.tar.gz +liberation-fonts-1.05.1.20090713.tar.gz Index: liberation-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/liberation-fonts.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- liberation-fonts.spec 6 Jul 2009 06:18:39 -0000 1.39 +++ liberation-fonts.spec 13 Jul 2009 06:31:40 -0000 1.40 @@ -9,7 +9,7 @@ New. Name: %{fontname}-fonts Summary: Fonts to replace commonly used Microsoft Windows fonts -Version: 1.05.1.20090706 +Version: 1.05.1.20090713 Release: 1%{?dist} # The license of the Liberation Fonts is a EULA that contains GPLv2 and two # exceptions: @@ -19,7 +19,7 @@ Release: 1%{?dist} License: Liberation Group: User Interface/X URL: https://fedorahosted.org/liberation-fonts/ -Source0: https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.05.1.20090630.tar.gz +Source0: https://fedorahosted.org/releases/l/i/liberation-fonts/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch @@ -112,6 +112,10 @@ mkfontscale %{buildroot}%{_fontdir} rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Caius 'kaio' Chance - 1.05.1.20090713-1.fc12 +- Updated to upstream 1.05.1.20090713. +- Generate TTFs with traditional kern table via fontforge scripts. (rh#503430) + * Mon Jul 06 2009 Caius 'kaio' Chance - 1.05.1.20090706-1.fc12 - Updated to upstream 1.05.1.20090706. - Reconverted from original TTF with traditional kern table. (rh#503430) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 Jul 2009 06:18:39 -0000 1.14 +++ sources 13 Jul 2009 06:31:40 -0000 1.15 @@ -1 +1 @@ -81478594c3faa18c90638e9def41d70e liberation-fonts-1.05.1.20090706.tar.gz +97a10ca1feb065d022bb9942e21b15ad liberation-fonts-1.05.1.20090713.tar.gz From oget at fedoraproject.org Mon Jul 13 06:32:40 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Mon, 13 Jul 2009 06:32:40 +0000 (UTC) Subject: rpms/dssi/F-10 dssi-lib64.patch,1.2,1.3 dssi.spec,1.10,1.11 Message-ID: <20090713063240.E9EFB11C0493@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/dssi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6222 Modified Files: dssi-lib64.patch dssi.spec Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 - Fix the default DSSI plugin path to avoid a crash dssi-lib64.patch: Index: dssi-lib64.patch =================================================================== RCS file: /cvs/pkgs/rpms/dssi/F-10/dssi-lib64.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dssi-lib64.patch 30 May 2009 04:20:04 -0000 1.2 +++ dssi-lib64.patch 13 Jul 2009 06:32:40 -0000 1.3 @@ -12,12 +12,14 @@ diff -rupN dssi-1.0.0.old/doc/jack-dssi- .br diff -rupN dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c dssi-1.0.0/jack-dssi-host/jack-dssi-host.c --- dssi-1.0.0.old/jack-dssi-host/jack-dssi-host.c 2009-01-04 16:48:26.000000000 -0500 -+++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-05-30 00:02:28.000000000 -0400 -@@ -493,9 +493,9 @@ load(const char *dllName, void **dll, in ++++ dssi-1.0.0/jack-dssi-host/jack-dssi-host.c 2009-07-13 00:58:43.000000000 -0400 +@@ -492,10 +492,10 @@ load(const char *dllName, void **dll, in + if (!defaultDssiPath) { const char *home = getenv("HOME"); if (home) { - defaultDssiPath = malloc(strlen(home) + 60); +- defaultDssiPath = malloc(strlen(home) + 60); - sprintf(defaultDssiPath, "/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); ++ defaultDssiPath = malloc(strlen(home) + 100); + sprintf(defaultDssiPath, "/usr/local/lib64/dssi:/usr/lib64/dssi:/usr/local/lib/dssi:/usr/lib/dssi:%s/.dssi", home); } else { - defaultDssiPath = strdup("/usr/local/lib/dssi:/usr/lib/dssi"); Index: dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/dssi/F-10/dssi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- dssi.spec 30 May 2009 04:20:04 -0000 1.10 +++ dssi.spec 13 Jul 2009 06:32:40 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Disposable Soft Synth Interface Name: dssi Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Applications/Multimedia URL: http://dssi.sourceforge.net/ @@ -95,6 +95,9 @@ tests/controller %{_libdir}/pkgconfig/dssi.pc %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 +- Fix the default DSSI plugin path to avoid a crash + * Fri May 29 2009 Orcan Ogetbil - 1.0.0-1 - Update to 1.0.0 From pingou at fedoraproject.org Mon Jul 13 06:32:46 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:32:46 +0000 (UTC) Subject: rpms/R-Biostrings/devel .cvsignore, 1.3, 1.4 R-Biostrings.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090713063246.EE77A11C0493@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-Biostrings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6110 Modified Files: .cvsignore R-Biostrings.spec sources Log Message: Update to 2.12.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 Jun 2009 07:55:17 -0000 1.3 +++ .cvsignore 13 Jul 2009 06:32:16 -0000 1.4 @@ -1 +1 @@ -Biostrings_2.12.6.tar.gz +Biostrings_2.12.7.tar.gz Index: R-Biostrings.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/devel/R-Biostrings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-Biostrings.spec 12 Jun 2009 08:15:50 -0000 1.3 +++ R-Biostrings.spec 13 Jul 2009 06:32:16 -0000 1.4 @@ -3,7 +3,7 @@ %global Rvers 2.9.0 Name: R-%{packname} -Version: 2.12.6 +Version: 2.12.7 Release: 1%{?dist} Summary: String objects representing biological sequences @@ -92,12 +92,15 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/include %changelog +* Mon Jul 13 2009 pingou 2.12.7-1 +- Update to 2.12.7 + * Fri Jun 12 2009 pingou 2.12.6-1 - Update to 2.12.6 * Wed May 06 2009 pingou 2.12.1-2 - Solve dependencies issue (Add R-Biobase as R and BR) - +/ * Fri May 01 2009 pingou 2.12.1-1 - Update to 2.12.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:55:17 -0000 1.3 +++ sources 13 Jul 2009 06:32:16 -0000 1.4 @@ -1 +1 @@ -02efb6403483912d325d03dcf5a2e7f0 Biostrings_2.12.6.tar.gz +6f3290160c40b098ae187af3bc795594 Biostrings_2.12.7.tar.gz From pingou at fedoraproject.org Mon Jul 13 06:42:43 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:42:43 +0000 (UTC) Subject: rpms/R-BSgenome/devel .cvsignore, 1.3, 1.4 R-BSgenome.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090713064243.9870A11C0497@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9319 Modified Files: .cvsignore R-BSgenome.spec sources Log Message: Update to 1.12.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 12 Jun 2009 07:51:32 -0000 1.3 +++ .cvsignore 13 Jul 2009 06:42:11 -0000 1.4 @@ -1 +1 @@ -BSgenome_1.12.2.tar.gz +BSgenome_1.12.3.tar.gz Index: R-BSgenome.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/devel/R-BSgenome.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-BSgenome.spec 12 Jun 2009 07:51:32 -0000 1.2 +++ R-BSgenome.spec 13 Jul 2009 06:42:11 -0000 1.3 @@ -2,7 +2,7 @@ %global BioC 2.4 Name: R-%{packname} -Version: 1.12.2 +Version: 1.12.3 Release: 1%{?dist} Summary: Infrastructure for Biostrings-based genome data packages @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/R/library/%{packname}/BSgenomeDataPkg-template %changelog +* Mon Jul 13 2009 pingou 1.12.3-1 +- Update to 1.12.3 + * Fri Jun 12 2009 pingou 1.12.2-1 - Update to 1.12.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:51:32 -0000 1.3 +++ sources 13 Jul 2009 06:42:11 -0000 1.4 @@ -1 +1 @@ -2c32bb50c08a94c243c79e29b0db30b9 BSgenome_1.12.2.tar.gz +894e0ec583d5857dd22c47148db5eb81 BSgenome_1.12.3.tar.gz From bskeggs at fedoraproject.org Mon Jul 13 06:42:43 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Mon, 13 Jul 2009 06:42:43 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.34, 1.35 kernel.spec, 1.1628, 1.1629 Message-ID: <20090713064243.986C811C0493@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9351 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Mon Jul 13 2009 Ben Skeggs - drm-nouveau.patch: update from upstream drm-nouveau.patch: View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.34 -r 1.35 drm-nouveau.patch Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- drm-nouveau.patch 30 Jun 2009 03:47:25 -0000 1.34 +++ drm-nouveau.patch 13 Jul 2009 06:42:41 -0000 1.35 @@ -94,7 +94,7 @@ index 6246e3f..436e2fe 100644 if (map->type == _DRM_REGISTERS) diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile new file mode 100644 -index 0000000..96688cf +index 0000000..f5d93b5 --- /dev/null +++ b/drivers/gpu/drm/nouveau/Makefile @@ -0,0 +1,26 @@ @@ -105,7 +105,7 @@ index 0000000..96688cf +ccflags-y := -Iinclude/drm +nouveau-y := nouveau_drv.o nouveau_state.o nouveau_fifo.o nouveau_mem.o \ + nouveau_object.o nouveau_irq.o nouveau_notifier.o \ -+ nouveau_swmthd.o nouveau_sgdma.o nouveau_dma.o \ ++ nouveau_sgdma.o nouveau_dma.o \ + nouveau_bo.o nouveau_fence.o nouveau_gem.o nouveau_ttm.o \ + nouveau_hw.o nouveau_calc.o nouveau_bios.o nouveau_i2c.o \ + nouveau_display.o nouveau_fbcon.o nouveau_backlight.o \ @@ -286,10 +286,10 @@ index 0000000..395639b +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..f6628db +index 0000000..f719eb4 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c -@@ -0,0 +1,4852 @@ +@@ -0,0 +1,4861 @@ +/* + * Copyright 2005-2006 Erik Waling + * Copyright 2006 Stephane Marchesin @@ -341,10 +341,10 @@ index 0000000..f6628db +/* this will need remembering across a suspend */ +static uint32_t saved_nv_pfb_cfg0; + -+typedef struct { ++struct init_exec { + bool execute; + bool repeat; -+} init_exec_t; ++}; + +static bool nv_cksum(const uint8_t *data, unsigned int length) +{ @@ -531,22 +531,22 @@ index 0000000..f6628db + return false; +} + -+typedef struct { ++struct init_tbl_entry { + char* name; + uint8_t id; + int length; + int length_offset; + int length_multiplier; -+ bool (*handler)(struct drm_device *dev, struct nvbios *, uint16_t, init_exec_t *); -+} init_tbl_entry_t; ++ bool (*handler)(struct drm_device *dev, struct nvbios *, uint16_t, struct init_exec *); ++}; + -+typedef struct { ++struct bit_entry { + uint8_t id[2]; + uint16_t length; + uint16_t offset; -+} bit_entry_t; ++}; + -+static int parse_init_table(struct drm_device *dev, struct nvbios *bios, unsigned int offset, init_exec_t *iexec); ++static int parse_init_table(struct drm_device *dev, struct nvbios *bios, unsigned int offset, struct init_exec *iexec); + +#define MACRO_INDEX_SIZE 2 +#define MACRO_SIZE 8 @@ -581,68 +581,22 @@ index 0000000..f6628db + struct drm_nouveau_private *dev_priv = dev->dev_private; + + /* C51 has misaligned regs on purpose. Marvellous */ -+ if (reg & 0x2 || (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) { -+ NV_ERROR(dev, "========== misaligned reg 0x%08X ==========\n", -+ reg); -+ return 0; -+ } -+ /* warn on C51 regs that haven't been verified accessible in mmiotracing */ ++ if (reg & 0x2 || ++ (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) ++ NV_ERROR(dev, "======= misaligned reg 0x%08X =======\n", reg); ++ ++ /* warn on C51 regs that haven't been verified accessible in tracing */ + if (reg & 0x1 && dev_priv->VBIOS.pub.chip_version == 0x51 && + reg != 0x130d && reg != 0x1311 && reg != 0x60081d) + NV_WARN(dev, "=== C51 misaligned reg 0x%08X not verified ===\n", + reg); + -+ #define WITHIN(x,y,z) ((x>=y)&&(x<=y+z)) -+ if (WITHIN(reg,NV_PMC_OFFSET,NV_PMC_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PBUS_OFFSET,NV_PBUS_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PFIFO_OFFSET,NV_PFIFO_SIZE)) -+ return 1; -+ /* maybe a little large, but it will do for the moment. */ -+ if (nv_arch(dev) >= NV_50 && WITHIN(reg, 0x1000, 0xEFFF)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x30 && WITHIN(reg,0x4000,0x600)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x40 && WITHIN(reg,0xc000,0x48)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0000d204) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x40) { -+ if (reg == 0x00011014 || reg == 0x00020328) -+ return 1; -+ if (WITHIN(reg,0x88000,NV_PBUS_SIZE)) /* new PBUS */ -+ return 1; -+ } -+ if (nv_arch(dev) >= NV_50) { -+ /* No clue what they do, but because they are outside normal -+ * ranges we'd better list them seperately. */ -+ if (reg == 0x00020018 || reg == 0x0002004C || -+ reg == 0x00020060 || reg == 0x00021218 || -+ reg == 0x0002130C || reg == 0x00089008 || -+ reg == 0x00089028) -+ return 1; ++ if (reg >= (8*1024*1024)) { ++ NV_ERROR(dev, "=== reg 0x%08x out of mapped bounds ===\n", reg); ++ return 0; + } -+ if (WITHIN(reg,NV_PFB_OFFSET,NV_PFB_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PEXTDEV_OFFSET,NV_PEXTDEV_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PCRTC0_OFFSET,NV_PCRTC0_SIZE * 2)) -+ return 1; -+ if (nv_arch(dev) >= NV_50 && -+ WITHIN(reg, NV50_DISPLAY_OFFSET, NV50_DISPLAY_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PRAMDAC0_OFFSET,NV_PRAMDAC0_SIZE * 2)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0070fff0) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version == 0x51 && WITHIN(reg,NV_PRAMIN_OFFSET,NV_PRAMIN_SIZE)) -+ return 1; -+ #undef WITHIN + -+ NV_ERROR(dev, "========== unknown reg 0x%08X ==========\n", reg); -+ -+ return 0; ++ return 1; +} + +static bool valid_idx_port(struct drm_device *dev, uint16_t port) @@ -992,7 +946,7 @@ index 0000000..f6628db + } +} + -+static bool init_io_restrict_prog(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_io_restrict_prog(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_IO_RESTRICT_PROG opcode: 0x32 ('2') + * @@ -1044,7 +998,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_REPEAT opcode: 0x33 ('3') + * @@ -1078,7 +1032,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_io_restrict_pll(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_io_restrict_pll(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_IO_RESTRICT_PLL opcode: 0x34 ('4') + * @@ -1142,7 +1096,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_end_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_end_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_END_REPEAT opcode: 0x36 ('6') + * @@ -1162,7 +1116,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_copy(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) [...4542 lines suppressed...] ++ 0x00122503, 0x00162600, 0x00122607, 0x00112680, 0x00112700, 0x00112702, ++ 0x00122780, 0x0011278b, 0x00112794, 0x0011279c, 0x0040d1e2, 0x00200298, ++ 0x00600006, 0x00200044, 0x00102880, 0x001128c6, 0x001528c9, 0x001928d0, ++ 0x00122900, 0x00122903, 0x00162a00, 0x00122a07, 0x00112a80, 0x00112b00, ++ 0x00112b02, 0x00122b80, 0x00112b8b, 0x00112b94, 0x00112b9c, 0x0040eee3, ++ 0x002002ff, 0x00600006, 0x00200044, 0x00102c80, 0x0040df0f, 0x0040df4b, ++ 0x00217240, 0x00600007, 0x0020043f, 0x008800ff, 0x0070008f, 0x0040df8c, ++ 0x005000cb, 0x00000000, 0x00112cc6, 0x00152cc9, 0x00192cd0, 0x00122d00, ++ 0x00122d03, 0x00162e00, 0x00122e07, 0x00112e80, 0x00112f00, 0x00112f02, ++ 0x00122f80, 0x00112f8b, 0x00112f94, 0x00112f9c, 0x00000000, 0x0040f50f, ++ 0x005000cb, 0x00217240, 0x00600007, 0x0020043f, 0x008800ff, 0x005000cb, ++ 0x0040f887, 0x0060000a, 0x00000000, 0x00410700, 0x007000a0, 0x00700080, ++ 0x00200380, 0x00600007, 0x00200004, 0x00c000ff, 0x008000ff, 0x005000cb, ++ 0x00700000, 0x00200000, 0x00600006, 0x00111bfe, 0x0041294d, 0x00700000, ++ 0x00200000, 0x00600006, 0x00111bfe, 0x00700080, 0x0070001d, 0x0040114d, ++ 0x00700081, 0x00600004, 0x0050004a, 0x00411388, 0x0060000b, 0x00200000, ++ 0x00600006, 0x00700000, 0x0041290b, 0x00111bfd, 0x0040424d, 0x00202dd2, ++ 0x008000fd, 0x005000cb, 0x00c00002, 0x00200380, 0x00600007, 0x00200160, ++ 0x00800002, 0x005000cb, 0x00c01802, 0x00202c72, 0x00800002, 0x005000cb, ++ 0x00404e4d, 0x0060000b, 0x0041274d, 0x00700001, 0x00700003, 0x00412d06, ++ 0x00412e05, 0x0060000d, 0x00700005, 0x0070000d, 0x00700006, 0x0070000b, ++ 0x0070000e, 0x0070001c, 0x0060000c, ~0 ++}; ++ ++static unsigned nv94_ctxvals[] = { ++ 0x0043, 0x00000000, ++ 0x0001, 0x00000030, ++ 0x0008, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0028, 0x00000000, ++ 0x0001, 0x00000003, ++ 0x0001, 0x00001000, ++ 0x000f, 0x00000000, ++ 0x0001, 0x0000fe0c, ++ 0x0004, 0x00000000, ++ 0x0001, 0x00001000, ++ 0x000a, 0x00000000, ++ 0x0001, 0x00000187, ++ 0x0004, 0x00000000, ++ 0x0001, 0x00001018, ++ 0x0001, 0x000000ff, ++ 0x000e, 0x00000000, ++ 0x0001, 0x00000004, ++ 0x0001, 0x044d00df, ++ 0x0001, 0x00000000, ++ 0x0001, 0x00000600, ++ 0x0005, 0x00000000, ++ 0x0001, 0x01000000, ++ 0x0001, 0x000000ff, ++ 0x0001, 0x00000000, ++ 0x0001, 0x00000400, ++ 0x0005, 0x00000000, ++ 0x0001, 0x00000001, ++ 0x0001, 0x00000080, ++ 0x0001, 0x00000004, ++ 0x0006, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0001, 0x00000001, ++ 0x0003, 0x00000000, ++ 0x0001, 0x00000001, ++ 0x0001, 0x00000100, ++ 0x0005, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0002, 0x00000001, + 0x0003, 0x00000000, + 0x0001, 0x00000001, + 0x0001, 0x003fffff, @@ -51203,10 +52720,10 @@ index 0000000..ca23454 +#endif diff --git a/drivers/gpu/drm/nouveau/nv50_instmem.c b/drivers/gpu/drm/nouveau/nv50_instmem.c new file mode 100644 -index 0000000..a89926e +index 0000000..9b5f802 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_instmem.c -@@ -0,0 +1,451 @@ +@@ -0,0 +1,445 @@ +/* + * Copyright (C) 2007 Ben Skeggs. + * @@ -51636,9 +53153,6 @@ index 0000000..a89926e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv; + -+ BUG_ON(dev_priv->ramin_map != NULL); -+ dev_priv->ramin_map = dev_priv->ramin; -+ + priv->last_access_wr = write; +} + @@ -51648,9 +53162,6 @@ index 0000000..a89926e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv; + -+ BUG_ON(dev_priv->ramin_map == NULL); -+ dev_priv->ramin_map = NULL; -+ + if (priv->last_access_wr) { + nv_wr32(0x070000, 0x00000001); + if (!nv_wait(0x070000, 0x00000001, 0x00000000)) @@ -51706,10 +53217,10 @@ index 0000000..6572f12 +} diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c new file mode 100644 -index 0000000..8977aa3 +index 0000000..5429266 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_sor.c -@@ -0,0 +1,310 @@ +@@ -0,0 +1,304 @@ +/* + * Copyright (C) 2008 Maarten Maathuis. + * All Rights Reserved. @@ -51745,7 +53256,6 @@ index 0000000..8977aa3 +#include "nouveau_connector.h" +#include "nouveau_crtc.h" +#include "nv50_display.h" -+#include "nv50_display_commands.h" + +extern int nouveau_duallink; + @@ -51755,7 +53265,6 @@ index 0000000..8977aa3 + struct drm_device *dev = encoder->base.dev; + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nouveau_channel *evo = &dev_priv->evo.chan; -+ uint32_t offset = encoder->or * 0x40; + int ret; + + NV_DEBUG(dev, "Disconnecting SOR %d\n", encoder->or); @@ -51765,8 +53274,8 @@ index 0000000..8977aa3 + NV_ERROR(dev, "no space while disconnecting SOR\n"); + return; + } -+ BEGIN_RING(evo, 0, NV50_SOR0_MODE_CTRL + offset, 1); -+ OUT_RING (evo, NV50_SOR_MODE_CTRL_OFF); ++ BEGIN_RING(evo, 0, NV50_EVO_SOR(encoder->or, MODE_CTRL), 1); ++ OUT_RING (evo, 0); +} + +static int @@ -51895,8 +53404,7 @@ index 0000000..8977aa3 + struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); + struct drm_device *dev = drm_encoder->dev; + struct nouveau_crtc *crtc = to_nouveau_crtc(drm_encoder->crtc); -+ uint32_t offset = encoder->or * 0x40; -+ uint32_t mode_ctl = NV50_SOR_MODE_CTRL_OFF; ++ uint32_t mode_ctl = 0; + int ret; + + NV_DEBUG(dev, "or %d\n", encoder->or); @@ -51906,31 +53414,29 @@ index 0000000..8977aa3 + nv50_sor_dpms(drm_encoder, DRM_MODE_DPMS_ON); + dev_priv->in_modeset = ret; + -+ if (encoder->base.encoder_type == DRM_MODE_ENCODER_LVDS) { -+ mode_ctl |= NV50_SOR_MODE_CTRL_LVDS; -+ } else { -+ mode_ctl |= NV50_SOR_MODE_CTRL_TMDS; ++ if (encoder->base.encoder_type != DRM_MODE_ENCODER_LVDS) { ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_TMDS; + if (adjusted_mode->clock > 165000) -+ mode_ctl |= NV50_SOR_MODE_CTRL_TMDS_DUAL_LINK; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_TMDS_DUAL_LINK; + } + + if (crtc->index == 1) -+ mode_ctl |= NV50_SOR_MODE_CTRL_CRTC1; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_CRTC1; + else -+ mode_ctl |= NV50_SOR_MODE_CTRL_CRTC0; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_CRTC0; + + if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) -+ mode_ctl |= NV50_SOR_MODE_CTRL_NHSYNC; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NHSYNC; + + if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) -+ mode_ctl |= NV50_SOR_MODE_CTRL_NVSYNC; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NVSYNC; + + ret = RING_SPACE(evo, 2); + if (ret) { + NV_ERROR(dev, "no space while connecting SOR\n"); + return; + } -+ BEGIN_RING(evo, 0, NV50_SOR0_MODE_CTRL + offset, 1); ++ BEGIN_RING(evo, 0, NV50_EVO_SOR(encoder->or, MODE_CTRL), 1); + OUT_RING (evo, mode_ctl); +} + @@ -52004,8 +53510,7 @@ index 0000000..8977aa3 + drm_encoder_init(dev, &encoder->base, &nv50_sor_encoder_funcs, type); + drm_encoder_helper_add(&encoder->base, &nv50_sor_helper_funcs); + -+ /* I've never seen possible crtc's restricted. */ -+ encoder->base.possible_crtcs = 3; ++ encoder->base.possible_crtcs = entry->heads; + encoder->base.possible_clones = 0; + + /* Some default state, unknown what it precisely means. */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1628 retrieving revision 1.1629 diff -u -p -r1.1628 -r1.1629 --- kernel.spec 11 Jul 2009 00:30:33 -0000 1.1628 +++ kernel.spec 13 Jul 2009 06:42:42 -0000 1.1629 @@ -1868,6 +1868,9 @@ fi # and build. %changelog +* Mon Jul 13 2009 Ben Skeggs +- drm-nouveau.patch: update from upstream + * Fri Jul 10 2009 Chuck Ebbert - 2.6.31-rc2-git6 - Drop dmadebug-spinlock patch -- merged upstream. From pingou at fedoraproject.org Mon Jul 13 06:43:20 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:43:20 +0000 (UTC) Subject: rpms/R-Biostrings/F-10 R-Biostrings.spec,1.3,1.4 sources,1.3,1.4 Message-ID: <20090713064320.5229211C0493@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-Biostrings/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9518/F-10 Modified Files: R-Biostrings.spec sources Log Message: Update to 2.12.7 Index: R-Biostrings.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/F-10/R-Biostrings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-Biostrings.spec 12 Jun 2009 08:15:49 -0000 1.3 +++ R-Biostrings.spec 13 Jul 2009 06:42:49 -0000 1.4 @@ -3,7 +3,7 @@ %global Rvers 2.9.0 Name: R-%{packname} -Version: 2.12.6 +Version: 2.12.7 Release: 1%{?dist} Summary: String objects representing biological sequences @@ -92,12 +92,15 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/include %changelog +* Mon Jul 13 2009 pingou 2.12.7-1 +- Update to 2.12.7 + * Fri Jun 12 2009 pingou 2.12.6-1 - Update to 2.12.6 * Wed May 06 2009 pingou 2.12.1-2 - Solve dependencies issue (Add R-Biobase as R and BR) - +/ * Fri May 01 2009 pingou 2.12.1-1 - Update to 2.12.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:55:16 -0000 1.3 +++ sources 13 Jul 2009 06:42:50 -0000 1.4 @@ -1 +1 @@ -02efb6403483912d325d03dcf5a2e7f0 Biostrings_2.12.6.tar.gz +6f3290160c40b098ae187af3bc795594 Biostrings_2.12.7.tar.gz From pingou at fedoraproject.org Mon Jul 13 06:43:20 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:43:20 +0000 (UTC) Subject: rpms/R-Biostrings/F-11 R-Biostrings.spec,1.3,1.4 sources,1.3,1.4 Message-ID: <20090713064320.9BB6011C0497@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-Biostrings/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9518/F-11 Modified Files: R-Biostrings.spec sources Log Message: Update to 2.12.7 Index: R-Biostrings.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/F-11/R-Biostrings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-Biostrings.spec 12 Jun 2009 08:15:49 -0000 1.3 +++ R-Biostrings.spec 13 Jul 2009 06:42:50 -0000 1.4 @@ -3,7 +3,7 @@ %global Rvers 2.9.0 Name: R-%{packname} -Version: 2.12.6 +Version: 2.12.7 Release: 1%{?dist} Summary: String objects representing biological sequences @@ -92,12 +92,15 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/include %changelog +* Mon Jul 13 2009 pingou 2.12.7-1 +- Update to 2.12.7 + * Fri Jun 12 2009 pingou 2.12.6-1 - Update to 2.12.6 * Wed May 06 2009 pingou 2.12.1-2 - Solve dependencies issue (Add R-Biobase as R and BR) - +/ * Fri May 01 2009 pingou 2.12.1-1 - Update to 2.12.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:55:17 -0000 1.3 +++ sources 13 Jul 2009 06:42:50 -0000 1.4 @@ -1 +1 @@ -02efb6403483912d325d03dcf5a2e7f0 Biostrings_2.12.6.tar.gz +6f3290160c40b098ae187af3bc795594 Biostrings_2.12.7.tar.gz From pingou at fedoraproject.org Mon Jul 13 06:52:21 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:52:21 +0000 (UTC) Subject: rpms/R-BSgenome/F-11 R-BSgenome.spec,1.2,1.3 sources,1.3,1.4 Message-ID: <20090713065221.0BFD511C0493@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11573/F-11 Modified Files: R-BSgenome.spec sources Log Message: Update to 1.12.3 Index: R-BSgenome.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/F-11/R-BSgenome.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-BSgenome.spec 12 Jun 2009 07:51:32 -0000 1.2 +++ R-BSgenome.spec 13 Jul 2009 06:51:50 -0000 1.3 @@ -2,7 +2,7 @@ %global BioC 2.4 Name: R-%{packname} -Version: 1.12.2 +Version: 1.12.3 Release: 1%{?dist} Summary: Infrastructure for Biostrings-based genome data packages @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/R/library/%{packname}/BSgenomeDataPkg-template %changelog +* Mon Jul 13 2009 pingou 1.12.3-1 +- Update to 1.12.3 + * Fri Jun 12 2009 pingou 1.12.2-1 - Update to 1.12.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:51:32 -0000 1.3 +++ sources 13 Jul 2009 06:51:50 -0000 1.4 @@ -1 +1 @@ -2c32bb50c08a94c243c79e29b0db30b9 BSgenome_1.12.2.tar.gz +894e0ec583d5857dd22c47148db5eb81 BSgenome_1.12.3.tar.gz From pingou at fedoraproject.org Mon Jul 13 06:52:20 2009 From: pingou at fedoraproject.org (pingou) Date: Mon, 13 Jul 2009 06:52:20 +0000 (UTC) Subject: rpms/R-BSgenome/F-10 R-BSgenome.spec,1.2,1.3 sources,1.3,1.4 Message-ID: <20090713065220.E552111C0493@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11573/F-10 Modified Files: R-BSgenome.spec sources Log Message: Update to 1.12.3 Index: R-BSgenome.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/F-10/R-BSgenome.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-BSgenome.spec 12 Jun 2009 07:51:31 -0000 1.2 +++ R-BSgenome.spec 13 Jul 2009 06:51:50 -0000 1.3 @@ -2,7 +2,7 @@ %global BioC 2.4 Name: R-%{packname} -Version: 1.12.2 +Version: 1.12.3 Release: 1%{?dist} Summary: Infrastructure for Biostrings-based genome data packages @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/R/library/%{packname}/BSgenomeDataPkg-template %changelog +* Mon Jul 13 2009 pingou 1.12.3-1 +- Update to 1.12.3 + * Fri Jun 12 2009 pingou 1.12.2-1 - Update to 1.12.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 12 Jun 2009 07:51:31 -0000 1.3 +++ sources 13 Jul 2009 06:51:50 -0000 1.4 @@ -1 +1 @@ -2c32bb50c08a94c243c79e29b0db30b9 BSgenome_1.12.2.tar.gz +894e0ec583d5857dd22c47148db5eb81 BSgenome_1.12.3.tar.gz From remi at fedoraproject.org Mon Jul 13 06:56:01 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 06:56:01 +0000 (UTC) Subject: rpms/php-pecl-apc/devel .cvsignore, 1.4, 1.5 php-pecl-apc.spec, 1.10, 1.11 sources, 1.5, 1.6 Message-ID: <20090713065601.3E51811C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pecl-apc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13010 Modified Files: .cvsignore php-pecl-apc.spec sources Log Message: update to 3.1.2 - PHP 5.3.0 Support Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pecl-apc/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 Jun 2007 13:41:58 -0000 1.4 +++ .cvsignore 13 Jul 2009 06:56:00 -0000 1.5 @@ -1 +1 @@ -APC-3.0.14.tgz +APC-3.1.2.tgz Index: php-pecl-apc.spec =================================================================== RCS file: /cvs/extras/rpms/php-pecl-apc/devel/php-pecl-apc.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- php-pecl-apc.spec 26 Feb 2009 22:34:21 -0000 1.10 +++ php-pecl-apc.spec 13 Jul 2009 06:56:00 -0000 1.11 @@ -6,15 +6,17 @@ Summary: APC caches and optimizes PHP intermediate code Name: php-pecl-apc -Version: 3.0.19 -Release: 2%{?dist} +Version: 3.1.2 +Release: 1%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/APC Source: http://pecl.php.net/get/APC-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Conflicts: php-mmcache php-eaccelerator -BuildRequires: php-devel httpd-devel php-pear +BuildRequires: php-devel >= 5.1.0, httpd-devel, php-pear, pcre-devel +Requires(post): %{__pecl} +Requires(postun): %{__pecl} %if %{?php_zend_api}0 # Require clean ABI/API versions if available (Fedora) Requires: php(zend-abi) = %{php_zend_api} @@ -37,64 +39,133 @@ Requires(postun): %{__pecl} APC is a free, open, and robust framework for caching and optimizing PHP intermediate code. + %prep -%setup -q -n %{pecl_name}-%{version} +%setup -q -c + %build +cd APC-%{version} %{_bindir}/phpize -%configure --enable-apc-mmap --with-apxs=%{_sbindir}/apxs --with-php-config=%{_bindir}/php-config +%configure --enable-apc-mmap --with-php-config=%{_bindir}/php-config %{__make} %{?_smp_mflags} + %install +pushd APC-%{version} %{__rm} -rf %{buildroot} %{__make} install INSTALL_ROOT=%{buildroot} +# Fix the charset of NOTICE +iconv -f iso-8859-1 -t utf8 NOTICE >NOTICE.utf8 +mv NOTICE.utf8 NOTICE + +popd # Install the package XML file %{__mkdir_p} %{buildroot}%{pecl_xmldir} -%{__install} -m 644 ../package.xml %{buildroot}%{pecl_xmldir}/%{pecl_name}.xml +%{__install} -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml # Drop in the bit of configuration %{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d %{__cat} > %{buildroot}%{_sysconfdir}/php.d/apc.ini << 'EOF' ; Enable apc extension module extension = apc.so -; Options for the apc module + +; Options for the APC module version 3.1.x + +; This can be set to 0 to disable APC. apc.enabled=1 +; The number of shared memory segments to allocate for the compiler cache. apc.shm_segments=1 -apc.optimization=0 +; The size of each shared memory segment in MB. apc.shm_size=32 +; A "hint" about the number of distinct source files that will be included or +; requested on your web server. Set to zero or omit if you're not sure; +apc.num_files_hint=1024 +; Just like num_files_hint, a "hint" about the number of distinct user cache +; variables to store. Set to zero or omit if you're not sure; +apc.user_entries_hint=4096 +; The number of seconds a cache entry is allowed to idle in a slot in case this +; cache entry slot is needed by another entry. apc.ttl=7200 +; The number of seconds a user cache entry is allowed to idle in a slot in case +; this cache entry slot is needed by another entry. apc.user_ttl=7200 -apc.num_files_hint=1024 -apc.mmap_file_mask=/tmp/apc.XXXXXX -apc.enable_cli=1 +; The number of seconds that a cache entry may remain on the garbage-collection list. +apc.gc_ttl=3600 +; On by default, but can be set to off and used in conjunction with positive +; apc.filters so that files are only cached if matched by a positive filter. apc.cache_by_default=1 +; A comma-separated list of POSIX extended regular expressions. +apc.filters +; The mktemp-style file_mask to pass to the mmap module +apc.mmap_file_mask=/tmp/apc.XXXXXX +; This file_update_protection setting puts a delay on caching brand new files. +apc.file_update_protection=2 +; Setting this enables APC for the CLI version of PHP (Mostly for testing and debugging). +apc.enable_cli=0 +; Prevents large files from being cached +apc.max_file_size=1M +; Whether to stat the main script file and the fullpath includes. +apc.stat=1 +; Vertification with ctime will avoid problems caused by programs such as svn or rsync by making +; sure inodes havn't changed since the last stat. APC will normally only check mtime. +apc.stat_ctime=0 +; Whether to canonicalize paths in stat=0 mode or fall back to stat behaviour +apc.canonicalize=0 +; With write_lock enabled, only one process at a time will try to compile an +; uncached script while the other processes will run uncached +apc.write_lock=1 +; Logs any scripts that were automatically excluded from being cached due to early/late binding issues. +apc.report_autofilter=0 +; RFC1867 File Upload Progress hook handler +apc.rfc1867=0 +apc.rfc1867_prefix =upload_ +apc.rfc1867_name=APC_UPLOAD_PROGRESS +apc.rfc1867_freq=0 +apc.rfc1867_ttl=3600 +; Optimize include_once and require_once calls and avoid the expensive system calls used. +apc.include_once_override=0 +; not documented +apc.coredump_unmap=0 +apc.file_md5=0 +apc.preload_path EOF -# Fix the charset of NOTICE -iconv -f iso-8859-1 -t utf8 NOTICE >NOTICE.utf8 -mv NOTICE.utf8 NOTICE +%if 0%{?pecl_install:1} %post -%{__pecl} install --nodeps --soft --force --register-only --nobuild %{pecl_xmldir}/%{pecl_name}.xml >/dev/null || : +%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +%endif +%if 0%{?pecl_uninstall:1} %postun -if [ $1 -eq 0 ] ; then -%{__pecl} uninstall --nodeps --ignore-errors --register-only %{pecl_name} >/dev/null || : +if [ $1 -eq 0 ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : fi +%endif + %clean %{__rm} -rf %{buildroot} + %files %defattr(-, root, root, 0755) -%doc TECHNOTES.txt CHANGELOG LICENSE NOTICE TODO INSTALL apc.php +%doc APC-%{version}/TECHNOTES.txt APC-%{version}/CHANGELOG APC-%{version}/LICENSE +%doc APC-%{version}/NOTICE APC-%{version}/TODO APC-%{version}/apc.php +%doc APC-%{version}/INSTALL %config(noreplace) %{_sysconfdir}/php.d/apc.ini %{php_extdir}/apc.so -%{pecl_xmldir}/%{pecl_name}.xml +%{pecl_xmldir}/%{name}.xml + %changelog +* Sun Jul 12 2009 Remi Collet - 3.1.2-1 +- update to 3.1.2 (beta) - PHP 5.3 support +- use setup -q -c + * Thu Feb 26 2009 Fedora Release Engineering - 3.0.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pecl-apc/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 13 Jul 2008 11:17:18 -0000 1.5 +++ sources 13 Jul 2009 06:56:00 -0000 1.6 @@ -1 +1 @@ -951f43d2873e3572f5d5ae71a9b66f90 APC-3.0.19.tgz +0a18cf164b3e044e27edd4c1d8c3145c APC-3.1.2.tgz From remi at fedoraproject.org Mon Jul 13 07:05:42 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 07:05:42 +0000 (UTC) Subject: rpms/php-pecl-runkit/devel php-pecl-runkit.spec,1.1,1.2 Message-ID: <20090713070542.A9FEC11C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pecl-runkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15722 Modified Files: php-pecl-runkit.spec Log Message: PHP 5.3.0 build Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/extras/rpms/php-pecl-runkit/devel/php-pecl-runkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-runkit.spec 24 Mar 2009 20:31:27 -0000 1.1 +++ php-pecl-runkit.spec 13 Jul 2009 07:05:10 -0000 1.2 @@ -12,7 +12,7 @@ Summary(pl): Obr??bka zdefiniowanych prz Name: php-pecl-%{peclName} Version: 0.9 %if 0%{?CVS:1} -Release: 10.CVS%{CVS}%{?dist} +Release: 11.CVS%{CVS}%{?dist} %else Release: 10%{?dist} %endif @@ -114,6 +114,9 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog +* Mon Jul 13 2009 Remi Collet - 0.9-11.CVS20090215 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Tue Mar 17 2009 Pavel Alexeev - 0.9-10.CVS20090215 - Remi Collet notes in Fedora review: - Rename back %%{peclName}.xml to %%{name}.xml :) @@ -214,8 +217,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.1 2009/03/24 20:31:27 hubbitus -#Initial push php-pecl-runkit to Fedora +#Revision 1.2 2009/07/13 07:05:10 remi +#PHP 5.3.0 build # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From remi at fedoraproject.org Mon Jul 13 07:16:28 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 07:16:28 +0000 (UTC) Subject: rpms/php-pecl-parsekit/devel php-pecl-parsekit.spec,1.1,1.2 Message-ID: <20090713071628.F338E11C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pecl-parsekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19028 Modified Files: php-pecl-parsekit.spec Log Message: PHP 5.3.0 build Index: php-pecl-parsekit.spec =================================================================== RCS file: /cvs/extras/rpms/php-pecl-parsekit/devel/php-pecl-parsekit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-parsekit.spec 1 Jul 2009 07:36:57 -0000 1.1 +++ php-pecl-parsekit.spec 13 Jul 2009 07:16:27 -0000 1.2 @@ -8,7 +8,7 @@ Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 -Release: 3%{?CVS:.CVS%{CVS}}%{?dist} +Release: 4%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -88,6 +88,9 @@ rm -rf %{buildroot} %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog +* Mon Jul 13 2009 Remi Collet - 1.2-4.CVS20090309 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Tue Jun 30 2009 Pavel Alexeev - 1.2-3.CVS20090309 - Most of changes inspired by continue Fedora review by Jason Tibbitts. - Prefer %%global over %%define @@ -121,4 +124,4 @@ rm -rf %{buildroot} - Add patches: Patch0: php-pecl-parsekit-php51.patch (http://www.mail-archive.com/pld-cvs-commit at lists.pld-linux.org/msg28512.html) Patch1: php-pecl-parsekit-1.2-PHP5.3.0.patch (self) -- Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) \ No newline at end of file +- Post and Pustun steps replaced by it is macroses-representated form (from php-pecl-phar) From mhlavink at fedoraproject.org Mon Jul 13 07:17:00 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 13 Jul 2009 07:17:00 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore, 1.59, 1.60 dovecot-1.1-default-settings.patch, 1.10, 1.11 dovecot.spec, 1.134, 1.135 sources, 1.62, 1.63 Message-ID: <20090713071700.B70FF11C0493@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19008 Modified Files: .cvsignore dovecot-1.1-default-settings.patch dovecot.spec sources Log Message: updated to 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 10 Jul 2009 09:04:52 -0000 1.59 +++ .cvsignore 13 Jul 2009 07:16:30 -0000 1.60 @@ -1,4 +1,4 @@ dovecot-1.2.1.tar.gz -dovecot-1.2-managesieve-0.11.6.tar.gz -dovecot-1.2.0-managesieve-0.11.6.diff.gz +dovecot-1.2-managesieve-0.11.7.tar.gz +dovecot-1.2.1-managesieve-0.11.7.diff.gz dovecot-1.2-sieve-0.1.7.tar.gz dovecot-1.1-default-settings.patch: Index: dovecot-1.1-default-settings.patch =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot-1.1-default-settings.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- dovecot-1.1-default-settings.patch 10 Jul 2009 09:04:52 -0000 1.10 +++ dovecot-1.1-default-settings.patch 13 Jul 2009 07:16:30 -0000 1.11 @@ -1,6 +1,6 @@ diff -up dovecot-1.2.1/dovecot-example.conf.default-settings dovecot-1.2.1/dovecot-example.conf ---- dovecot-1.2.1/dovecot-example.conf.default-settings 2009-06-11 20:19:47.000000000 +0200 -+++ dovecot-1.2.1/dovecot-example.conf 2009-07-10 09:05:40.497989964 +0200 +--- dovecot-1.2.1/dovecot-example.conf.default-settings 2009-07-13 09:05:54.735890052 +0200 ++++ dovecot-1.2.1/dovecot-example.conf 2009-07-13 09:09:23.309020322 +0200 @@ -10,18 +10,14 @@ # value inside quotes, eg.: key = "# char and trailing whitespace " @@ -15,15 +15,15 @@ diff -up dovecot-1.2.1/dovecot-example.c # Base directory where to store runtime data. #base_dir = /var/run/dovecot/ - # Protocols we want to be serving: imap imaps pop3 pop3s + # Protocols we want to be serving: imap imaps pop3 pop3s managesieve # If you only want to use dovecot-auth, you can set this to "none". -#protocols = imap imaps +#protocols = imap imaps pop3 pop3s # A space separated list of IP or host addresses where to listen in for # connections. "*" listens in all IPv4 interfaces. "[::]" listens in all IPv6 -@@ -39,13 +35,13 @@ - # listen = *:10100 +@@ -43,13 +39,13 @@ + # listen = *:12000 # .. # } -#listen = * @@ -38,7 +38,7 @@ diff -up dovecot-1.2.1/dovecot-example.c # Should all IMAP and POP3 processes be killed when Dovecot master process # shuts down. Setting this to "no" means that Dovecot can be upgraded without -@@ -92,8 +88,8 @@ +@@ -96,8 +92,8 @@ # dropping root privileges, so keep the key file unreadable by anyone but # root. Included doc/mkcert.sh can be used to easily generate self-signed # certificate, just make sure to update the domains in dovecot-openssl.cnf @@ -49,7 +49,7 @@ diff -up dovecot-1.2.1/dovecot-example.c # If key file is password protected, give the password here. Alternatively # give it when starting dovecot with -p parameter. Since this file is often -@@ -482,7 +478,7 @@ +@@ -486,7 +482,7 @@ # locking methods as well. Some operating systems don't allow using some of # them simultaneously. #mbox_read_locks = fcntl @@ -59,8 +59,8 @@ diff -up dovecot-1.2.1/dovecot-example.c # Maximum time in seconds to wait for lock (all of them) before aborting. #mbox_lock_timeout = 300 diff -up dovecot-1.2.1/src/master/master-settings.c.default-settings dovecot-1.2.1/src/master/master-settings.c ---- dovecot-1.2.1/src/master/master-settings.c.default-settings 2009-06-30 17:02:57.000000000 +0200 -+++ dovecot-1.2.1/src/master/master-settings.c 2009-07-10 07:32:57.832017837 +0200 +--- dovecot-1.2.1/src/master/master-settings.c.default-settings 2009-07-13 09:05:54.738890180 +0200 ++++ dovecot-1.2.1/src/master/master-settings.c 2009-07-13 09:05:54.742889890 +0200 @@ -178,8 +178,8 @@ struct settings default_settings = { MEMBER(syslog_facility) "mail", Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- dovecot.spec 10 Jul 2009 09:04:52 -0000 1.134 +++ dovecot.spec 13 Jul 2009 07:16:30 -0000 1.135 @@ -14,9 +14,9 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 0.1.7 +%define sieve_version 0.1.8 %define sieve_name dovecot-1.2-sieve -%define managesieve_version 0.11.6 +%define managesieve_version 0.11.7 #define managesieve_name dovecot-%{version}-managesieve %define managesieve_name dovecot-1.2-managesieve @@ -435,11 +435,12 @@ fi %changelog -* Fri Jul 10 2009 Michal Hlavinka - 1:1.2.1-1 +* Mon Jul 13 2009 Michal Hlavinka - 1:1.2.1-1 - updated to 1.2.1 - GSSAPI authentication is fixed (#506782) - logins now fail if home directory path is relative, because it was not working correctly and never was expected to work +- sieve and managesieve update * Wed Jul 08 2009 Michal Hlavinka - 1:1.2.0-3 - update sieve and managesieve plugins Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- sources 10 Jul 2009 09:04:52 -0000 1.62 +++ sources 13 Jul 2009 07:16:30 -0000 1.63 @@ -1,4 +1,4 @@ c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz -e802cd87ee833ea43cab60ed8ff9480e dovecot-1.2-managesieve-0.11.6.tar.gz -960417300c696a506cbd482e039fddea dovecot-1.2.0-managesieve-0.11.6.diff.gz +61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz +a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz efe43b0a81aff6f751e7e3a2a771baa2 dovecot-1.2-sieve-0.1.7.tar.gz From mhlavink at fedoraproject.org Mon Jul 13 07:18:32 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 13 Jul 2009 07:18:32 +0000 (UTC) Subject: rpms/dovecot/F-10 .cvsignore, 1.51, 1.52 dovecot.spec, 1.121, 1.122 sources, 1.54, 1.55 Message-ID: <20090713071832.8D04511C0493@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19483 Modified Files: .cvsignore dovecot.spec sources Log Message: updated to 1.1.17 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 3 Jun 2009 10:04:20 -0000 1.51 +++ .cvsignore 13 Jul 2009 07:18:02 -0000 1.52 @@ -1,4 +1,4 @@ -dovecot-1.1.16-managesieve-0.10.6.diff.gz -dovecot-1.1.16.tar.gz -dovecot-1.1-managesieve-0.10.6.tar.gz +dovecot-1.1.17-managesieve-0.10.7.diff.gz +dovecot-1.1.17.tar.gz +dovecot-1.1-managesieve-0.10.7.tar.gz dovecot-sieve-1.1.6.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/dovecot.spec,v retrieving revision 1.121 retrieving revision 1.122 diff -u -p -r1.121 -r1.122 --- dovecot.spec 3 Jun 2009 10:04:20 -0000 1.121 +++ dovecot.spec 13 Jul 2009 07:18:02 -0000 1.122 @@ -1,7 +1,7 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 -Version: 1.1.16 +Version: 1.1.17 Release: 1%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -16,7 +16,7 @@ Group: System Environment/Daemons %define build_managesieve 1 %define sieve_version 1.1.6 %define sieve_name dovecot-sieve -%define managesieve_version 0.10.6 +%define managesieve_version 0.10.7 %define managesieve_name dovecot-1.1-managesieve URL: http://www.dovecot.org/ @@ -425,6 +425,19 @@ fi %changelog +* Mon Jul 13 2009 Michal Hlavinka - 1:1.1.17-1 +- updated to 1.1.17 +- IMAP: Don't crash if IDLE command is pipelined after a long-running + UID FETCH or UID SEARCH. +- mbox: Don't write garbage to mbox if message doesn't have a body. +- Maildir: Fixed using in-memory indexes when some required directory + was missing. +- auth: Don't assert-crash if trying to log in as master user but + with empty login username. +- Several fixes to expire plugin / expire-tool +- managesive updated: improved handling of script truncation + bugs: connection is now closed + * Wed Jun 03 2009 Michal Hlavinka - 1:1.1.16-1 - updated to 1.1.16 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-10/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 3 Jun 2009 10:04:20 -0000 1.54 +++ sources 13 Jul 2009 07:18:02 -0000 1.55 @@ -1,4 +1,4 @@ -6379049defcc4e3a665c2992f479c5d2 dovecot-1.1.16-managesieve-0.10.6.diff.gz -2e20c761416b16aa0fe9cac260ca0d2d dovecot-1.1.16.tar.gz -2b90a3f5deeaf5abab04d9b5a70a8359 dovecot-1.1-managesieve-0.10.6.tar.gz +f932f8fa606d0b70dbfadb3e5a4d612c dovecot-1.1.17-managesieve-0.10.7.diff.gz +2f264e2a292d52375eb4376757b6bb9f dovecot-1.1.17.tar.gz +05bc554ed97c93695c676eaff6069485 dovecot-1.1-managesieve-0.10.7.tar.gz 7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz From mhlavink at fedoraproject.org Mon Jul 13 07:22:58 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 13 Jul 2009 07:22:58 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore,1.60,1.61 sources,1.63,1.64 Message-ID: <20090713072258.55D5611C0493@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20788 Modified Files: .cvsignore sources Log Message: upload missing source file Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 13 Jul 2009 07:16:30 -0000 1.60 +++ .cvsignore 13 Jul 2009 07:22:27 -0000 1.61 @@ -1,4 +1,4 @@ dovecot-1.2.1.tar.gz dovecot-1.2-managesieve-0.11.7.tar.gz dovecot-1.2.1-managesieve-0.11.7.diff.gz -dovecot-1.2-sieve-0.1.7.tar.gz +dovecot-1.2-sieve-0.1.8.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 13 Jul 2009 07:16:30 -0000 1.63 +++ sources 13 Jul 2009 07:22:28 -0000 1.64 @@ -1,4 +1,4 @@ c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz 61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz -efe43b0a81aff6f751e7e3a2a771baa2 dovecot-1.2-sieve-0.1.7.tar.gz +364ca99ec75d7c149ed2f2de15debf8a dovecot-1.2-sieve-0.1.8.tar.gz From remi at fedoraproject.org Mon Jul 13 07:24:57 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 07:24:57 +0000 (UTC) Subject: rpms/php-pecl-selinux/devel php-pecl-selinux.spec,1.3,1.4 Message-ID: <20090713072457.240E811C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pecl-selinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21471 Modified Files: php-pecl-selinux.spec Log Message: PHP 5.3.0 build Index: php-pecl-selinux.spec =================================================================== RCS file: /cvs/extras/rpms/php-pecl-selinux/devel/php-pecl-selinux.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pecl-selinux.spec 17 Apr 2009 00:42:28 -0000 1.3 +++ php-pecl-selinux.spec 13 Jul 2009 07:24:26 -0000 1.4 @@ -5,7 +5,7 @@ Summary: SELinux binding for PHP scripting language Name: php-pecl-selinux Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/%{pecl_name} @@ -77,6 +77,9 @@ fi %{pecl_xmldir}/%{name}.xml %changelog +* Mon Jul 13 2009 Remi Collet - 0.3.1-2 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Thu Apr 16 2009 KaiGai Kohei - 0.3.1-1 - The "permissive" tag was added to selinux_compute_av - The selinux_deny_unknown() was added From varekova at fedoraproject.org Mon Jul 13 07:36:55 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Mon, 13 Jul 2009 07:36:55 +0000 (UTC) Subject: rpms/logwatch/F-10 logwatch-7.3.6-smartd.patch, NONE, 1.1 logwatch.spec, 1.105, 1.106 Message-ID: <20090713073655.3116311C0493@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/logwatch/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24929 Modified Files: logwatch.spec Added Files: logwatch-7.3.6-smartd.patch Log Message: - fix smartd script (#477540) logwatch-7.3.6-smartd.patch: --- NEW FILE logwatch-7.3.6-smartd.patch --- diff -up logwatch-7.3.6/scripts/services/smartd.pom logwatch-7.3.6/scripts/services/smartd --- logwatch-7.3.6/scripts/services/smartd.pom 2007-04-09 16:46:46.000000000 +0200 +++ logwatch-7.3.6/scripts/services/smartd 2009-01-06 13:45:00.000000000 +0100 @@ -8,6 +8,8 @@ use strict; my ($Device, $Msg, $Test); my %ParamChanges = (); my %TempChanges = (); +my %TempLimit = (); +my %TempCritLimit = (); my %Pendsectors = (); my %NumPendsectors = (); my %Offsectors = (); @@ -94,7 +96,13 @@ while (defined(my $ThisLine = )) # smartd reports temperature changes this way only for SCSI disks } elsif ( my ($Device,$NewVal) = ($ThisLine =~ /^Device: ([^,]+), initial Temperature is (\d+) Celsius/)) { push @{$TempChanges{$Device}},$NewVal; - } elsif ( my ($Device,$NewVal) = ($ThisLine =~ /^Device: ([^,]+), Temperature changed -?\d+ Celsius to (\d+) Celsius/)) { + } elsif ( my ($Device,$Limit) = ($ThisLine =~ /^Device: ([^,]+), Temperature \d+ Celsius reached limit of (\d+) Celsius/)) { + # Device: /dev/sda, Temperature 37 Celsius reached limit of 10 Celsius (Min/Max 37/37) + $TempLimit{"$Device,$Limit"}++; + } elsif ( my ($Device,$Limit) = ($ThisLine =~ /^Device: ([^,]+), Temperature \d+ Celsius reached critical limit of (\d+) Celsius/)) { + # Device: /dev/sda, Temperature 38 Celsius reached critical limit of 15 Celsius (Min/Max 38!/39) + $TempCritLimit{"$Device,$Limit"}++; + } elsif ( my ($Device,$NewVal) = ($ThisLine =~ /^Device: ([^,]+), Temperature changed [-+]?\d+ Celsius to (\d+) Celsius/)) { push @{$TempChanges{$Device}},$NewVal; } elsif ( my ($Device, $Num) = ($ThisLine =~ /^Device: ([^,]+), (\d+) Currently unreadable \(pending\) sectors/) ) { $Pendsectors{$Device}++; @@ -178,14 +186,31 @@ if (keys %TempChanges) { print "\n"; } } - if($Detail < 10) { + if($Detail < 10) { my @sorttemp = sort @min; my $mint = $sorttemp[0]; my @sorttemp = sort @max; my $maxt = $sorttemp[$#sorttemp]; print "All devices: $mint - $maxt\n"; - } + } +} + +if (keys %TempCritLimit) { + printf "\nReached critical temperature limit:\n"; + foreach (keys %TempCritLimit) { + my ($Device,$Limit)=split ","; + print "\t" . $Device . ": reached limit of " . $Limit . " Celsius: ". $TempCritLimit{"$Device,$Limit"} . " Time(s)\n"; + } +} + +if (keys %TempLimit) { + printf "\nReached temperature limit:\n"; + foreach (keys %TempLimit) { + my ($Device,$Limit)=split ","; + print "\t" . $Device . ": reached limit of " . $Limit . " Celsius: ". $TempLimit{"$Device,$Limit"} . " Time(s)\n"; + } } + if (keys %Pendsectors){ print "\nCurrently unreadable (pending) sectors detected:\n"; Index: logwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/logwatch/F-10/logwatch.spec,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- logwatch.spec 15 Jun 2009 09:23:39 -0000 1.105 +++ logwatch.spec 13 Jul 2009 07:36:54 -0000 1.106 @@ -1,7 +1,7 @@ Summary: A log file analysis program Name: logwatch Version: 7.3.6 -Release: 36%{?dist} +Release: 37%{?dist} License: MIT Group: Applications/System URL: http://www.logwatch.org/ @@ -52,6 +52,7 @@ Patch48: logwatch-7.3.6-named4.patch Patch49: logwatch-7.3.6-openvpn3.patch Patch50: logwatch-7.3.6-zz-disk_space2.patch Patch51: logwatch-7.3.6-removeservice.patch +Patch52: logwatch-7.3.6-smartd.patch Requires: textutils sh-utils grep mailx Requires: perl(Date::Manip) @@ -112,6 +113,7 @@ of the package on many systems. %patch49 -p1 %patch50 -p1 %patch51 -p1 +%patch52 -p1 rm -f scripts/services/*.orig %build @@ -223,6 +225,9 @@ rm -rf %{buildroot} %doc License project/CHANGES %changelog +* Mon Jul 13 2009 Ivana Varekova 7.3.6-37 +- fix smartd script (#477540) + * Mon Jun 15 2009 Ivana Varekova 7.3.6-36 - fix removeservice script - to decrease the number of perl instances running simultaneously From remi at fedoraproject.org Mon Jul 13 07:48:39 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 07:48:39 +0000 (UTC) Subject: rpms/php-pecl-imagick/devel php-pecl-imagick.spec,1.4,1.5 Message-ID: <20090713074839.17D1B11C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pecl-imagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29002 Modified Files: php-pecl-imagick.spec Log Message: PHP 5.3.0 build Index: php-pecl-imagick.spec =================================================================== RCS file: /cvs/extras/rpms/php-pecl-imagick/devel/php-pecl-imagick.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pecl-imagick.spec 10 Mar 2009 13:48:24 -0000 1.4 +++ php-pecl-imagick.spec 13 Jul 2009 07:48:38 -0000 1.5 @@ -7,7 +7,7 @@ Summary: Provides a wrapper to the ImageMagick library Name: php-pecl-%peclName Version: 2.2.2 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Libraries Source0: http://pecl.php.net/get/%peclName-%{version}.tgz @@ -79,6 +79,9 @@ fi %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog +* Mon Jul 13 2009 Remi Collet - 2.2.2-3 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Tue Mar 10 2009 Pavel Alexeev - 2.2.2-2 - Rebuild due ImageMagick update From kalev at fedoraproject.org Mon Jul 13 07:56:11 2009 From: kalev at fedoraproject.org (Kalev Lember) Date: Mon, 13 Jul 2009 07:56:11 +0000 (UTC) Subject: rpms/pkcs11-helper/EL-5 pkcs11-helper.spec,1.1,1.2 Message-ID: <20090713075611.9753811C0493@cvs1.fedora.phx.redhat.com> Author: kalev Update of /cvs/pkgs/rpms/pkcs11-helper/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30863 Modified Files: pkcs11-helper.spec Log Message: Fix EPEL-5 build by adding pkgconfig to BuildRequires. Index: pkcs11-helper.spec =================================================================== RCS file: /cvs/pkgs/rpms/pkcs11-helper/EL-5/pkcs11-helper.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pkcs11-helper.spec 12 Jul 2009 21:15:50 -0000 1.1 +++ pkcs11-helper.spec 13 Jul 2009 07:55:41 -0000 1.2 @@ -1,6 +1,6 @@ Name: pkcs11-helper Version: 1.07 -Release: 2%{?dist} +Release: 2%{?dist}.1 Summary: A library for using PKCS#11 providers Group: Development/Libraries @@ -11,6 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: doxygen graphviz BuildRequires: openssl-devel +BuildRequires: pkgconfig %description pkcs11-helper is a library that simplifies the interaction with PKCS#11 @@ -83,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Kalev Lember - 1.07-2.1 +- Fix EPEL-5 build by adding pkgconfig to BuildRequires. + * Sat Jul 11 2009 Kalev Lember - 1.07-2 - Make devel package depend on automake for /usr/share/aclocal From remi at fedoraproject.org Mon Jul 13 07:57:23 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 07:57:23 +0000 (UTC) Subject: rpms/php-shout/devel php-shout.spec,1.8,1.9 Message-ID: <20090713075723.97FB311C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-shout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31328 Modified Files: php-shout.spec Log Message: PHP 5.3.0 build Index: php-shout.spec =================================================================== RCS file: /cvs/extras/rpms/php-shout/devel/php-shout.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-shout.spec 26 Feb 2009 22:42:31 -0000 1.8 +++ php-shout.spec 13 Jul 2009 07:57:23 -0000 1.9 @@ -3,7 +3,7 @@ Name: php-shout Version: 0.9.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PHP module for communicating with Icecast servers Source0: http://dl.sf.net/phpshout/phpShout-%{version}.tar.gz @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{php_extdir}/shout.so %changelog +* Mon Jul 13 2009 Remi Collet - 0.9.2-4 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From braden at fedoraproject.org Mon Jul 13 08:07:39 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 13 Jul 2009 08:07:39 +0000 (UTC) Subject: rpms/openvrml/devel openvrml-player-visibility.patch, 1.2, 1.3 openvrml.spec, 1.66, 1.67 Message-ID: <20090713080739.7692811C0493@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1457 Modified Files: openvrml.spec Added Files: openvrml-player-visibility.patch Log Message: Patch openvrml-player to fix symbol visibility. openvrml-player-visibility.patch: Index: openvrml-player-visibility.patch =================================================================== RCS file: openvrml-player-visibility.patch diff -N openvrml-player-visibility.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openvrml-player-visibility.patch 13 Jul 2009 08:07:39 -0000 1.3 @@ -0,0 +1,42 @@ +Index: src/openvrml-player/filechooserdialog.h +=================================================================== +--- src/openvrml-player/filechooserdialog.h (revision 3960) ++++ src/openvrml-player/filechooserdialog.h (working copy) +@@ -21,6 +21,7 @@ + # define OPENVRML_PLAYER_FILE_CHOOSER_DIALOG_H + + # include ++# include + + G_BEGIN_DECLS + +@@ -42,7 +43,7 @@ + GtkFileChooserDialog parent_instance; + }; + +-GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST; ++OPENVRML_API GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST; + + G_END_DECLS + +Index: src/openvrml-player/curlbrowserhost.h +=================================================================== +--- src/openvrml-player/curlbrowserhost.h (revision 3960) ++++ src/openvrml-player/curlbrowserhost.h (working copy) +@@ -21,6 +21,7 @@ + + # include + # include ++# include + + # define OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST (openvrml_player_curl_browser_host_get_type()) + # define OPENVRML_PLAYER_CURL_BROWSER_HOST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST, OpenvrmlPlayerCurlBrowserHost)) +@@ -46,7 +47,7 @@ + gchar * host_name; + }; + +-GType openvrml_player_curl_browser_host_get_type(); ++OPENVRML_API GType openvrml_player_curl_browser_host_get_type(); + + void + openvrml_player_curl_browser_host_load_url(OpenvrmlPlayerCurlBrowserHost * host, Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/openvrml.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- openvrml.spec 9 Jul 2009 17:37:33 -0000 1.66 +++ openvrml.spec 13 Jul 2009 08:07:39 -0000 1.67 @@ -1,11 +1,12 @@ # -*- rpm-spec -*- Name: openvrml Version: 0.18.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries Source: http://downloads.sourceforge.net/openvrml/%{name}-%{version}.tar.gz +Patch: openvrml-player-visibility.patch URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.18.0 @@ -100,6 +101,8 @@ BuildArch: noarch %prep %setup +%patch + %build CXXFLAGS="%optflags -fvisibility=hidden -fvisibility-inlines-hidden -Wno-missing-braces" %configure --disable-static --enable-exception-specs=nothrow --disable-examples CPPFLAGS="-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux -DNDEBUG" JAVA_HOME=/usr/lib/jvm/jre @@ -190,6 +193,9 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 13 2009 Braden McDaniel - 0.18.2-2 +- Patch openvrml-player to fix symbol visibility. + * Thu Jul 09 2009 Braden McDaniel - Made doc subpackage noarch. From remi at fedoraproject.org Mon Jul 13 08:13:00 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 08:13:00 +0000 (UTC) Subject: rpms/libpuzzle/devel libpuzzle.spec,1.1,1.2 Message-ID: <20090713081301.0453B11C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/libpuzzle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3462 Modified Files: libpuzzle.spec Log Message: PHP 5.3.0 build Index: libpuzzle.spec =================================================================== RCS file: /cvs/extras/rpms/libpuzzle/devel/libpuzzle.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libpuzzle.spec 23 Jun 2009 08:40:19 -0000 1.1 +++ libpuzzle.spec 13 Jul 2009 08:12:30 -0000 1.2 @@ -3,7 +3,7 @@ Name: libpuzzle Version: 0.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library to quickly find visually similar images (gif, png, jpg) Group: System Environment/Libraries License: BSD @@ -23,8 +23,13 @@ security in mind. Summary: PHP extension for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: php-common BuildRequires: php-devel +%if %{?php_zend_api}0 +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %description -n php-%{name} The %{name} native PHP extension for developing PHP applications that @@ -110,6 +115,10 @@ find %{buildroot} -name '*.la' -exec rm %{_mandir}/man3/* %changelog +* Mon Jul 13 2009 Remi Collet - 0.11-5 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add PHP ABI check + * Sun Jun 21 2009 Andrew Colin Kissa - 0.11-4 - Consistent use of macros From braden at fedoraproject.org Mon Jul 13 08:21:12 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Mon, 13 Jul 2009 08:21:12 +0000 (UTC) Subject: rpms/openvrml/F-11 openvrml-player-visibility.patch, 1.2, 1.3 openvrml.spec, 1.65, 1.66 Message-ID: <20090713082113.05A8311C0493@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5707 Modified Files: openvrml.spec Added Files: openvrml-player-visibility.patch Log Message: Patch openvrml-player to fix symbol visibility. openvrml-player-visibility.patch: Index: openvrml-player-visibility.patch =================================================================== RCS file: openvrml-player-visibility.patch diff -N openvrml-player-visibility.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openvrml-player-visibility.patch 13 Jul 2009 08:21:12 -0000 1.3 @@ -0,0 +1,42 @@ +Index: src/openvrml-player/filechooserdialog.h +=================================================================== +--- src/openvrml-player/filechooserdialog.h (revision 3960) ++++ src/openvrml-player/filechooserdialog.h (working copy) +@@ -21,6 +21,7 @@ + # define OPENVRML_PLAYER_FILE_CHOOSER_DIALOG_H + + # include ++# include + + G_BEGIN_DECLS + +@@ -42,7 +43,7 @@ + GtkFileChooserDialog parent_instance; + }; + +-GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST; ++OPENVRML_API GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST; + + G_END_DECLS + +Index: src/openvrml-player/curlbrowserhost.h +=================================================================== +--- src/openvrml-player/curlbrowserhost.h (revision 3960) ++++ src/openvrml-player/curlbrowserhost.h (working copy) +@@ -21,6 +21,7 @@ + + # include + # include ++# include + + # define OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST (openvrml_player_curl_browser_host_get_type()) + # define OPENVRML_PLAYER_CURL_BROWSER_HOST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST, OpenvrmlPlayerCurlBrowserHost)) +@@ -46,7 +47,7 @@ + gchar * host_name; + }; + +-GType openvrml_player_curl_browser_host_get_type(); ++OPENVRML_API GType openvrml_player_curl_browser_host_get_type(); + + void + openvrml_player_curl_browser_host_load_url(OpenvrmlPlayerCurlBrowserHost * host, Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/openvrml.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- openvrml.spec 9 Jul 2009 17:37:32 -0000 1.65 +++ openvrml.spec 13 Jul 2009 08:21:12 -0000 1.66 @@ -1,11 +1,12 @@ # -*- rpm-spec -*- Name: openvrml Version: 0.18.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries Source: http://downloads.sourceforge.net/openvrml/%{name}-%{version}.tar.gz +Patch: openvrml-player-visibility.patch URL: http://openvrml.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pkgconfig >= 0.18.0 @@ -100,6 +101,8 @@ BuildArch: noarch %prep %setup +%patch + %build CXXFLAGS="%optflags -fvisibility=hidden -fvisibility-inlines-hidden -Wno-missing-braces" %configure --disable-static --enable-exception-specs=nothrow --disable-examples CPPFLAGS="-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux -DNDEBUG" JAVA_HOME=/usr/lib/jvm/jre @@ -190,6 +193,9 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 13 2009 Braden McDaniel - 0.18.2-2 +- Patch openvrml-player to fix symbol visibility. + * Thu Jul 09 2009 Braden McDaniel - Made doc subpackage noarch. From remi at fedoraproject.org Mon Jul 13 08:28:04 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 08:28:04 +0000 (UTC) Subject: rpms/php-magickwand/devel php-magickwand.spec,1.12,1.13 Message-ID: <20090713082804.AFC4C11C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-magickwand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7133 Modified Files: php-magickwand.spec Log Message: PHP 5.3.0 build Index: php-magickwand.spec =================================================================== RCS file: /cvs/extras/rpms/php-magickwand/devel/php-magickwand.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- php-magickwand.spec 10 Mar 2009 12:36:58 -0000 1.12 +++ php-magickwand.spec 13 Jul 2009 08:27:34 -0000 1.13 @@ -1,9 +1,10 @@ -%define default_apiver 20041225 +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) +%{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Summary: PHP API for ImageMagick Name: php-magickwand Version: 1.0.8 -Release: 2%{?dist} +Release: 3%{?dist} License: ImageMagick Group: Development/Languages # Only latest version is always kept on: http://www.magickwand.org/download/php/ @@ -11,7 +12,12 @@ Source0: http://image_magick.veidrodis.c Source1: magickwand.ini URL: http://www.magickwand.org/ BuildRequires: php-devel >= 4.3.0, ImageMagick-devel >= 6.4.0, autoconf, automake, libtool -Requires: php-api = %((echo %{default_apiver}; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) +%if %{?php_zend_api}0 +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -46,10 +52,15 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc AUTHOR ChangeLog CREDITS LICENSE README TODO -%{_libdir}/php/modules/magickwand.so +%{php_extdir}/magickwand.so %config(noreplace) %{_sysconfdir}/php.d/magickwand.ini %changelog +* Mon Jul 13 2009 Remi Collet 1.0.8-3 +- rebuild for new PHP 5.3.0 ABI (20090626) +- better PHP ABI check +- use php_extdir + * Tue Mar 10 2009 Robert Scheck 1.0.8-2 - Rebuild against ImageMagick 6.4.9.6 From xhorak at fedoraproject.org Mon Jul 13 08:56:09 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 13 Jul 2009 08:56:09 +0000 (UTC) Subject: rpms/xulrunner/F-11 mozilla-about-firefox-version.patch, NONE, 1.1 xulrunner.spec, 1.159, 1.160 Message-ID: <20090713085609.BE7D611C0493@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14251 Modified Files: xulrunner.spec Added Files: mozilla-about-firefox-version.patch Log Message: Fixed wrong version of Firefox when loading 'about:' as location mozilla-about-firefox-version.patch: --- NEW FILE mozilla-about-firefox-version.patch --- diff -up mozilla-1.9.1/toolkit/content/Makefile.in.about-firefox-version mozilla-1.9.1/toolkit/content/Makefile.in --- mozilla-1.9.1/toolkit/content/Makefile.in.about-firefox-version 2009-06-29 18:15:23.000000000 +0200 +++ mozilla-1.9.1/toolkit/content/Makefile.in 2009-07-07 13:43:54.000000000 +0200 @@ -46,7 +46,7 @@ CHROME_DEPS = buildconfig.html include $(DEPTH)/config/autoconf.mk DEFINES += \ - -DMOZ_APP_VERSION=$(MOZ_APP_VERSION) \ + -DMOZ_APP_VERSION=$(FIREFOX_VERSION) \ -Dtarget="$(target)" \ -Dac_configure_args="$(ac_configure_args)" \ -DCC="$(CC)" \ Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-11/xulrunner.spec,v retrieving revision 1.159 retrieving revision 1.160 diff -u -p -r1.159 -r1.160 --- xulrunner.spec 30 Jun 2009 21:23:01 -0000 1.159 +++ xulrunner.spec 13 Jul 2009 08:55:39 -0000 1.160 @@ -12,7 +12,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner Version: 1.9.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -27,6 +27,7 @@ Patch0: xulrunner-version.patch Patch1: mozilla-build.patch Patch2: mozilla-191-path.patch Patch3: mozilla-jemalloc.patch +Patch4: mozilla-about-firefox-version.patch # Fedora specific patches Patch10: mozilla-191-pkgconfig.patch @@ -147,6 +148,7 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{ver %patch1 -p1 -b .build %patch2 -p1 -b .path %patch3 -p1 -b .jemalloc +%patch4 -p1 -b .about-firefox-version %patch10 -p1 -b .pk @@ -446,6 +448,9 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Jul 7 2009 Jan Horak - 1.9.1-3 +- Fixed wrong version of Firefox when loading 'about:' as location + * Tue Jun 30 2009 Yanko Kaneti - 1.9.1-2 - Build using system hunspell From lkundrak at fedoraproject.org Mon Jul 13 08:57:33 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 13 Jul 2009 08:57:33 +0000 (UTC) Subject: rpms/rubygem-syntax/devel import.log, NONE, 1.1 rubygem-syntax.spec, NONE, 1.1 syntax-LICENSE, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713085733.E35D411C0493@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-syntax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14697/devel Modified Files: .cvsignore sources Added Files: import.log rubygem-syntax.spec syntax-LICENSE Log Message: Initial import --- NEW FILE import.log --- rubygem-syntax-1_0_0-2_fc11:HEAD:rubygem-syntax-1.0.0-2.fc11.src.rpm:1247475404 --- NEW FILE rubygem-syntax.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname syntax %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Ruby library for performing simple syntax highlighting Name: rubygem-%{gemname} Version: 1.0.0 Release: 2%{?dist} Group: Development/Languages License: Public Domain URL: http://syntax.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Syntax is a lexical analysis framework. It supports pluggable syntax modules, and comes with modules for Ruby, XML, and YAML. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{geminstdir}/ %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Mon Jul 08 2009 Lubomir Rintel (Good Data) - 1.0.0-2 - Bring tests back - Depend on ruby(abi) - Replace defines with globals * Fri Jul 05 2009 Lubomir Rintel (Good Data) - 1.0.0-1 - Package generated by gem2rpm - Don't ship tests - Fix up License --- NEW FILE syntax-LICENSE --- >From jamis.buck at gmail.com Sun Jun 7 04:58:44 2009 Date: Sat, 6 Jun 2009 17:39:01 -0600 Message-ID: <7f98661a0906061639s6f19b33emeb58c3da81ce9d5b at mail.gmail.com> Subject: Re: syntax licensing From: Jamis Buck To: Lubomir Rintel Content-Transfer-Encoding: 8bit Lubomir, The syntax gem that I wrote is no longer being maintained, and has been wholly deprecated in favor of the (much nicer) CodeRay library (http://coderay.rubychan.de/). That said, if you are still interested in packaging the syntax gem, you may use this email as notice of it's being placed in the public domain. "The syntax library is hereby placed into the public domain by its author, Jamis Buck." - Jamis On Sat, Jun 6, 2009 at 5:16 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your syntax rubygem (as dependency of newgem) for Fedora > [1] operating system. Unfortunatelly, I can't submit it for review for > inclusion since we could not determine what license is it distributed > under and therefore can't tell whether we can distribute it at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > > -- > "Excuse all the blood" -- Dead > > Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:18:33 -0000 1.1 +++ .cvsignore 13 Jul 2009 08:57:03 -0000 1.2 @@ -0,0 +1 @@ +syntax-1.0.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:18:33 -0000 1.1 +++ sources 13 Jul 2009 08:57:03 -0000 1.2 @@ -0,0 +1 @@ +d9d2eabc03bc937adfa00e35f228f9a8 syntax-1.0.0.gem From pnemade at fedoraproject.org Mon Jul 13 08:59:04 2009 From: pnemade at fedoraproject.org (pnemade) Date: Mon, 13 Jul 2009 08:59:04 +0000 (UTC) Subject: rpms/lcdf-typetools/devel .cvsignore, 1.7, 1.8 lcdf-typetools.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090713085904.0AA5D11C0493@cvs1.fedora.phx.redhat.com> Author: pnemade Update of /cvs/pkgs/rpms/lcdf-typetools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15280 Modified Files: .cvsignore lcdf-typetools.spec sources Log Message: * Mon Jul 13 2009 Parag Nemade - 2.79-1 - Update to next upstream release 2.79 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 12 Jun 2009 09:08:47 -0000 1.7 +++ .cvsignore 13 Jul 2009 08:58:33 -0000 1.8 @@ -1 +1 @@ -lcdf-typetools-2.78.tar.gz +lcdf-typetools-2.79.tar.gz Index: lcdf-typetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/devel/lcdf-typetools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lcdf-typetools.spec 12 Jun 2009 09:05:53 -0000 1.8 +++ lcdf-typetools.spec 13 Jul 2009 08:58:33 -0000 1.9 @@ -1,5 +1,5 @@ Name: lcdf-typetools -Version: 2.78 +Version: 2.79 Release: 1%{?dist} Summary: Tools for manipulating OpenType fonts Group: User Interface/X @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/lcdf-typetools %changelog +* Mon Jul 13 2009 Parag Nemade - 2.79-1 +- Update to next upstream release 2.79 + * Thu May 21 2009 Parag Nemade - 2.78-1 - Initial specfile for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 12 Jun 2009 09:05:53 -0000 1.7 +++ sources 13 Jul 2009 08:58:33 -0000 1.8 @@ -1 +1 @@ -88418a4aca055f9911f7bb9035491feb lcdf-typetools-2.78.tar.gz +1fb0dcb2433b03ef7ed30593bbb06612 lcdf-typetools-2.79.tar.gz From lkundrak at fedoraproject.org Mon Jul 13 08:59:02 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 13 Jul 2009 08:59:02 +0000 (UTC) Subject: rpms/rubygem-syntax/F-11 import.log, NONE, 1.1 rubygem-syntax.spec, NONE, 1.1 syntax-LICENSE, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713085902.A61AF11C0493@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-syntax/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15302/F-11 Modified Files: .cvsignore sources Added Files: import.log rubygem-syntax.spec syntax-LICENSE Log Message: Initial import --- NEW FILE import.log --- rubygem-syntax-1_0_0-2_fc11:F-11:rubygem-syntax-1.0.0-2.fc11.src.rpm:1247475493 --- NEW FILE rubygem-syntax.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname syntax %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Ruby library for performing simple syntax highlighting Name: rubygem-%{gemname} Version: 1.0.0 Release: 2%{?dist} Group: Development/Languages License: Public Domain URL: http://syntax.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Syntax is a lexical analysis framework. It supports pluggable syntax modules, and comes with modules for Ruby, XML, and YAML. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{geminstdir}/ %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Mon Jul 08 2009 Lubomir Rintel (Good Data) - 1.0.0-2 - Bring tests back - Depend on ruby(abi) - Replace defines with globals * Fri Jul 05 2009 Lubomir Rintel (Good Data) - 1.0.0-1 - Package generated by gem2rpm - Don't ship tests - Fix up License --- NEW FILE syntax-LICENSE --- >From jamis.buck at gmail.com Sun Jun 7 04:58:44 2009 Date: Sat, 6 Jun 2009 17:39:01 -0600 Message-ID: <7f98661a0906061639s6f19b33emeb58c3da81ce9d5b at mail.gmail.com> Subject: Re: syntax licensing From: Jamis Buck To: Lubomir Rintel Content-Transfer-Encoding: 8bit Lubomir, The syntax gem that I wrote is no longer being maintained, and has been wholly deprecated in favor of the (much nicer) CodeRay library (http://coderay.rubychan.de/). That said, if you are still interested in packaging the syntax gem, you may use this email as notice of it's being placed in the public domain. "The syntax library is hereby placed into the public domain by its author, Jamis Buck." - Jamis On Sat, Jun 6, 2009 at 5:16 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your syntax rubygem (as dependency of newgem) for Fedora > [1] operating system. Unfortunatelly, I can't submit it for review for > inclusion since we could not determine what license is it distributed > under and therefore can't tell whether we can distribute it at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > > -- > "Excuse all the blood" -- Dead > > Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:18:33 -0000 1.1 +++ .cvsignore 13 Jul 2009 08:58:32 -0000 1.2 @@ -0,0 +1 @@ +syntax-1.0.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:18:33 -0000 1.1 +++ sources 13 Jul 2009 08:58:32 -0000 1.2 @@ -0,0 +1 @@ +d9d2eabc03bc937adfa00e35f228f9a8 syntax-1.0.0.gem From lkundrak at fedoraproject.org Mon Jul 13 09:00:25 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 13 Jul 2009 09:00:25 +0000 (UTC) Subject: rpms/rubygem-syntax/EL-5 import.log, NONE, 1.1 rubygem-syntax.spec, NONE, 1.1 syntax-LICENSE, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090713090025.243A211C0493@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-syntax/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15803/EL-5 Modified Files: .cvsignore sources Added Files: import.log rubygem-syntax.spec syntax-LICENSE Log Message: Initial import --- NEW FILE import.log --- rubygem-syntax-1_0_0-2_fc11:EL-5:rubygem-syntax-1.0.0-2.fc11.src.rpm:1247475578 --- NEW FILE rubygem-syntax.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname syntax %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Ruby library for performing simple syntax highlighting Name: rubygem-%{gemname} Version: 1.0.0 Release: 2%{?dist} Group: Development/Languages License: Public Domain URL: http://syntax.rubyforge.org/ Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem Source1: %{gemname}-LICENSE BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Syntax is a lexical analysis framework. It supports pluggable syntax modules, and comes with modules for Ruby, XML, and YAML. %prep install -pm 0644 %{SOURCE1} LICENSE %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{geminstdir}/ %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %doc LICENSE %changelog * Mon Jul 08 2009 Lubomir Rintel (Good Data) - 1.0.0-2 - Bring tests back - Depend on ruby(abi) - Replace defines with globals * Fri Jul 05 2009 Lubomir Rintel (Good Data) - 1.0.0-1 - Package generated by gem2rpm - Don't ship tests - Fix up License --- NEW FILE syntax-LICENSE --- >From jamis.buck at gmail.com Sun Jun 7 04:58:44 2009 Date: Sat, 6 Jun 2009 17:39:01 -0600 Message-ID: <7f98661a0906061639s6f19b33emeb58c3da81ce9d5b at mail.gmail.com> Subject: Re: syntax licensing From: Jamis Buck To: Lubomir Rintel Content-Transfer-Encoding: 8bit Lubomir, The syntax gem that I wrote is no longer being maintained, and has been wholly deprecated in favor of the (much nicer) CodeRay library (http://coderay.rubychan.de/). That said, if you are still interested in packaging the syntax gem, you may use this email as notice of it's being placed in the public domain. "The syntax library is hereby placed into the public domain by its author, Jamis Buck." - Jamis On Sat, Jun 6, 2009 at 5:16 PM, Lubomir Rintel wrote: > Hi, > > I have packaged your syntax rubygem (as dependency of newgem) for Fedora > [1] operating system. Unfortunatelly, I can't submit it for review for > inclusion since we could not determine what license is it distributed > under and therefore can't tell whether we can distribute it at all. > > I'll be very thankful if you could clarify the licensing conditions, > ideally by shipping the file with full text of license and referring to > it from comments in the source files. > > [1] http://fedoraproject.org/ > > Thanks, > Lubomir Rintel > > -- > "Excuse all the blood" -- Dead > > Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:18:33 -0000 1.1 +++ .cvsignore 13 Jul 2009 08:59:54 -0000 1.2 @@ -0,0 +1 @@ +syntax-1.0.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:18:33 -0000 1.1 +++ sources 13 Jul 2009 08:59:54 -0000 1.2 @@ -0,0 +1 @@ +d9d2eabc03bc937adfa00e35f228f9a8 syntax-1.0.0.gem From xhorak at fedoraproject.org Mon Jul 13 09:00:29 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 13 Jul 2009 09:00:29 +0000 (UTC) Subject: rpms/xulrunner/devel mozilla-about-firefox-version.patch, NONE, 1.1 xulrunner.spec, 1.163, 1.164 Message-ID: <20090713090029.327DF11C0493@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16008 Modified Files: xulrunner.spec Added Files: mozilla-about-firefox-version.patch Log Message: Fixed wrong version of Firefox when loading 'about:' as location mozilla-about-firefox-version.patch: --- NEW FILE mozilla-about-firefox-version.patch --- diff -up mozilla-1.9.1/toolkit/content/Makefile.in.about-firefox-version mozilla-1.9.1/toolkit/content/Makefile.in --- mozilla-1.9.1/toolkit/content/Makefile.in.about-firefox-version 2009-06-29 18:15:23.000000000 +0200 +++ mozilla-1.9.1/toolkit/content/Makefile.in 2009-07-07 13:43:54.000000000 +0200 @@ -46,7 +46,7 @@ CHROME_DEPS = buildconfig.html include $(DEPTH)/config/autoconf.mk DEFINES += \ - -DMOZ_APP_VERSION=$(MOZ_APP_VERSION) \ + -DMOZ_APP_VERSION=$(FIREFOX_VERSION) \ -Dtarget="$(target)" \ -Dac_configure_args="$(ac_configure_args)" \ -DCC="$(CC)" \ Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/devel/xulrunner.spec,v retrieving revision 1.163 retrieving revision 1.164 diff -u -p -r1.163 -r1.164 --- xulrunner.spec 30 Jun 2009 21:22:20 -0000 1.163 +++ xulrunner.spec 13 Jul 2009 09:00:28 -0000 1.164 @@ -13,7 +13,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner Version: 1.9.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -28,6 +28,7 @@ Patch0: xulrunner-version.patch Patch1: mozilla-build.patch Patch2: mozilla-191-path.patch Patch3: mozilla-jemalloc.patch +Patch4: mozilla-about-firefox-version.patch # Fedora specific patches Patch10: mozilla-191-pkgconfig.patch @@ -149,6 +150,7 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{ver %patch1 -p1 -b .build %patch2 -p1 -b .path %patch3 -p1 -b .jemalloc +%patch4 -p1 -b .about-firefox-version %patch10 -p1 -b .pk @@ -448,6 +450,9 @@ fi #--------------------------------------------------------------------- %changelog +* Mon Jul 13 2009 Jan Horak - 1.9.1-3 +- Fixed wrong version of Firefox when loading 'about:' as location + * Tue Jun 30 2009 Yanko Kaneti - 1.9.1-2 - Build using system hunspell From xhorak at fedoraproject.org Mon Jul 13 09:04:34 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 13 Jul 2009 09:04:34 +0000 (UTC) Subject: rpms/firefox/devel firefox.png,1.3,1.4 firefox.spec,1.329,1.330 Message-ID: <20090713090434.94F0111C0493@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16972 Modified Files: firefox.png firefox.spec Log Message: Updated icon Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/devel/firefox.spec,v retrieving revision 1.329 retrieving revision 1.330 diff -u -p -r1.329 -r1.330 --- firefox.spec 30 Jun 2009 15:33:33 -0000 1.329 +++ firefox.spec 13 Jul 2009 09:04:04 -0000 1.330 @@ -19,7 +19,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 3.5 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -321,6 +321,9 @@ fi #--------------------------------------------------------------------- %changelog +* Mon Jul 13 2009 Jan Horak - 3.5-2 +- Updated icon + * Tue Jun 30 2009 Christopher Aillon - 3.5-1 - Firefox 3.5 final release From xhorak at fedoraproject.org Mon Jul 13 09:06:39 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 13 Jul 2009 09:06:39 +0000 (UTC) Subject: rpms/firefox/F-11 firefox.png,1.3,1.4 firefox.spec,1.329,1.330 Message-ID: <20090713090640.0384F11C0493@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17557 Modified Files: firefox.png firefox.spec Log Message: Updated icon Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/firefox.spec,v retrieving revision 1.329 retrieving revision 1.330 diff -u -p -r1.329 -r1.330 --- firefox.spec 30 Jun 2009 15:38:38 -0000 1.329 +++ firefox.spec 13 Jul 2009 09:06:09 -0000 1.330 @@ -19,7 +19,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 3.5 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -321,6 +321,9 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Jul 7 2009 Jan Horak - 3.5-2 +- Updated icon + * Tue Jun 30 2009 Christopher Aillon - 3.5-1 - Firefox 3.5 final release From jakub at fedoraproject.org Mon Jul 13 09:10:17 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Mon, 13 Jul 2009 09:10:17 +0000 (UTC) Subject: rpms/gcc/devel .cvsignore, 1.275, 1.276 gcc.spec, 1.50, 1.51 sources, 1.278, 1.279 Message-ID: <20090713091017.71FF711C0493@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18580 Modified Files: .cvsignore gcc.spec sources Log Message: 4.4.0-13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.275 retrieving revision 1.276 diff -u -p -r1.275 -r1.276 --- .cvsignore 8 Jul 2009 20:10:47 -0000 1.275 +++ .cvsignore 13 Jul 2009 09:09:47 -0000 1.276 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090708.tar.bz2 +gcc-4.4.0-20090713.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- gcc.spec 8 Jul 2009 20:10:48 -0000 1.50 +++ gcc.spec 13 Jul 2009 09:09:47 -0000 1.51 @@ -1,9 +1,9 @@ -%global DATE 20090708 -%global SVNREV 149391 +%global DATE 20090713 +%global SVNREV 149555 %global gcc_version 4.4.0 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 12 +%global gcc_release 13 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -1807,6 +1807,12 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Mon Jul 13 2009 Jakub Jelinek 4.4.0-13 +- update from gcc-4_4-branch + - PRs c++/36628, c++/37206, c++/40502, c++/40684, c++/40689, fortran/40440, + rtl-optimization/40667, target/40668 +- avoid overlapping entries in .debug_ranges section (PR debug/40713) + * Wed Jul 8 2009 Jakub Jelinek 4.4.0-12 - update from gcc-4_4-branch - PRs c++/35828, c++/37816, c++/37946, c++/40557, c++/40633, c++/40639, Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.278 retrieving revision 1.279 diff -u -p -r1.278 -r1.279 --- sources 8 Jul 2009 20:10:48 -0000 1.278 +++ sources 13 Jul 2009 09:09:47 -0000 1.279 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -69d76c9e39d42dd01cb5b89068c0e114 gcc-4.4.0-20090708.tar.bz2 +f78cbd4fdb4a8bc81f6d83a8c1e7f5fd gcc-4.4.0-20090713.tar.bz2 From remi at fedoraproject.org Mon Jul 13 09:13:22 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 09:13:22 +0000 (UTC) Subject: rpms/rrdtool/devel rrdtool.spec,1.81,1.82 Message-ID: <20090713091322.2807811C0493@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/rrdtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20011 Modified Files: rrdtool.spec Log Message: PHP 5.3.0 build Index: rrdtool.spec =================================================================== RCS file: /cvs/extras/rpms/rrdtool/devel/rrdtool.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- rrdtool.spec 26 May 2009 15:58:07 -0000 1.81 +++ rrdtool.spec 13 Jul 2009 09:12:51 -0000 1.82 @@ -9,7 +9,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool Version: 1.3.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ with exceptions Group: Applications/Databases URL: http://oss.oetiker.ch/rrdtool/ @@ -323,6 +323,9 @@ find examples/ -type f -exec chmod 0644 %endif %changelog +* Mon Jul 13 2009 Remi Collet 1.3.8-3 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Tue May 26 2009 Jarod Wilson 1.3.8-2 - Update dejavu font deps yet again, hopefully for the last time... (#473551) From pjp at fedoraproject.org Mon Jul 13 10:03:37 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:03:37 +0000 (UTC) Subject: rpms/pem/F-9 .cvsignore,1.4,1.5 pem.spec,1.6,1.7 sources,1.6,1.7 Message-ID: <20090713100337.52DD211C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31610 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-9/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 May 2009 12:15:46 -0000 1.4 +++ .cvsignore 13 Jul 2009 10:03:06 -0000 1.5 @@ -1 +1 @@ -pem-0.7.6.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-9/pem.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pem.spec 28 May 2009 12:15:47 -0000 1.6 +++ pem.spec 13 Jul 2009 10:03:07 -0000 1.7 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.6 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + * Wed May 27 2009 P J P - 0.7.6-1 - pem now uses `-M ' value while showing monthly report with option `-m'. And new option -N to see reports between Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-9/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 May 2009 12:15:47 -0000 1.6 +++ sources 13 Jul 2009 10:03:07 -0000 1.7 @@ -1 +1 @@ -c2a4636e0935c8bd66d30ce8eb7b8252 pem-0.7.6.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pnemade at fedoraproject.org Mon Jul 13 10:04:41 2009 From: pnemade at fedoraproject.org (pnemade) Date: Mon, 13 Jul 2009 10:04:41 +0000 (UTC) Subject: rpms/lcdf-typetools/F-11 lcdf-typetools.spec, 1.8, 1.9 sources, 1.7, 1.8 dead.package, 1.1, NONE Message-ID: <20090713100441.3E47211C0493@cvs1.fedora.phx.redhat.com> Author: pnemade Update of /cvs/pkgs/rpms/lcdf-typetools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31899 Modified Files: lcdf-typetools.spec sources Removed Files: dead.package Log Message: * Mon Jul 13 2009 Parag Nemade - 2.79-1 - Update to next upstream release 2.79 Index: lcdf-typetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/F-11/lcdf-typetools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lcdf-typetools.spec 15 Jun 2009 05:10:35 -0000 1.8 +++ lcdf-typetools.spec 13 Jul 2009 10:04:11 -0000 1.9 @@ -1,5 +1,5 @@ Name: lcdf-typetools -Version: 2.78 +Version: 2.79 Release: 1%{?dist} Summary: Tools for manipulating OpenType fonts Group: User Interface/X @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/lcdf-typetools %changelog +* Mon Jul 13 2009 Parag Nemade - 2.79-1 +- Update to next upstream release 2.79 + * Thu May 21 2009 Parag Nemade - 2.78-1 - Initial specfile for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 15 Jun 2009 05:10:35 -0000 1.7 +++ sources 13 Jul 2009 10:04:11 -0000 1.8 @@ -1 +1 @@ -88418a4aca055f9911f7bb9035491feb lcdf-typetools-2.78.tar.gz +1fb0dcb2433b03ef7ed30593bbb06612 lcdf-typetools-2.79.tar.gz --- dead.package DELETED --- From hno at fedoraproject.org Mon Jul 13 10:06:16 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 10:06:16 +0000 (UTC) Subject: rpms/bzr/devel .cvsignore, 1.47, 1.48 bzr.spec, 1.66, 1.67 sources, 1.47, 1.48 Message-ID: <20090713100616.663C111C0493@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/bzr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32464 Modified Files: .cvsignore bzr.spec sources Log Message: 1.17rc1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/.cvsignore,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- .cvsignore 26 Jun 2009 15:09:35 -0000 1.47 +++ .cvsignore 13 Jul 2009 10:06:16 -0000 1.48 @@ -1,2 +1,2 @@ -bzr-1.16.1.tar.gz -bzr-1.16.1.tar.gz.sig +bzr-1.17rc1.tar.gz +bzr-1.17rc1.tar.gz.sig Index: bzr.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/bzr.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- bzr.spec 26 Jun 2009 15:09:35 -0000 1.66 +++ bzr.spec 13 Jul 2009 10:06:16 -0000 1.67 @@ -6,15 +6,15 @@ # Version: bzr version, add subrelease version here # bzrrc: release candidate version, if any, line starts with % for rc, # for stable releas (no %). # release: rpm subrelease (0.N for rc candidates, N for stable releases) -%define bzrmajor 1.16 -#define bzrrc rc1 -%define release 1 +%define bzrmajor 1.17 +%define bzrrc rc1 +%define release 0.1 # Magics to get the dots in Release string correct per the above %define subrelease %{?bzrrc:.}%{?bzrrc} Name: bzr -Version: %{bzrmajor}.1 +Version: %{bzrmajor} Release: %{release}%{?subrelease}%{?dist} Summary: Friendly distributed version control system @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 13 2009 Henrik Nordstrom - 1.17-0.1 +- Update to 1.17rc1 + * Fri Jun 26 2009 Henrik Nordstrom - 1.16.1-1 - Update to 1.16.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 26 Jun 2009 15:09:35 -0000 1.47 +++ sources 13 Jul 2009 10:06:16 -0000 1.48 @@ -1,2 +1,2 @@ -e04f6de1c3ef9540830f6270131dc303 bzr-1.16.1.tar.gz -a0cba544a86bad90883264b3767d969b bzr-1.16.1.tar.gz.sig +68e978447ca8f9f7d7bbc862acc0c10f bzr-1.17rc1.tar.gz +8da88865c11945d57a6321b4c11639dd bzr-1.17rc1.tar.gz.sig From pjp at fedoraproject.org Mon Jul 13 10:10:23 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:10:23 +0000 (UTC) Subject: rpms/pem/F-10 .cvsignore,1.5,1.6 pem.spec,1.7,1.8 sources,1.6,1.7 Message-ID: <20090713101023.E973D11C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv907 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 28 May 2009 12:04:36 -0000 1.5 +++ .cvsignore 13 Jul 2009 10:09:53 -0000 1.6 @@ -1 +1 @@ -pem-0.7.6.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-10/pem.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pem.spec 28 May 2009 12:04:36 -0000 1.7 +++ pem.spec 13 Jul 2009 10:09:53 -0000 1.8 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.6 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + * Wed May 27 2009 P J P - 0.7.6-1 - pem now uses `-M ' value while showing monthly report with option `-m'. And new option -N to see reports between Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 May 2009 12:04:36 -0000 1.6 +++ sources 13 Jul 2009 10:09:53 -0000 1.7 @@ -1 +1 @@ -c2a4636e0935c8bd66d30ce8eb7b8252 pem-0.7.6.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pnemade at fedoraproject.org Mon Jul 13 10:11:32 2009 From: pnemade at fedoraproject.org (pnemade) Date: Mon, 13 Jul 2009 10:11:32 +0000 (UTC) Subject: rpms/fontmatrix/devel .cvsignore, 1.6, 1.7 fontmatrix.spec, 1.15, 1.16 sources, 1.10, 1.11 Message-ID: <20090713101132.41DB211C0493@cvs1.fedora.phx.redhat.com> Author: pnemade Update of /cvs/pkgs/rpms/fontmatrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1243 Modified Files: .cvsignore fontmatrix.spec sources Log Message: * Mon Jul 13 2009 Parag - 0.6.0-1 - update to stable release 0.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 20 Mar 2009 05:09:18 -0000 1.6 +++ .cvsignore 13 Jul 2009 10:11:02 -0000 1.7 @@ -1 +1 @@ -fontmatrix-0.5.0-Source.tar.gz +fontmatrix-0.6.0-Source.tar.gz Index: fontmatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/devel/fontmatrix.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fontmatrix.spec 24 Apr 2009 11:05:27 -0000 1.15 +++ fontmatrix.spec 13 Jul 2009 10:11:02 -0000 1.16 @@ -1,9 +1,9 @@ -%define svnrev 931 +%define svnrev 1063 Name: fontmatrix Summary: A fonts manager -Version: 0.5.0 -Release: 2.r%{svnrev}%{?dist} +Version: 0.6.0 +Release: 1.r%{svnrev}%{?dist} License: GPLv2+ Group: User Interface/X ##### svn checkout HOWTO ##### @@ -30,7 +30,8 @@ A powerful and well designed fonts manag %build export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" -%cmake . +%cmake . -DWANT_HARFBUZZ:bool=true -DWANT_ICU:bool=true \ + -DWANT_PYTHONQT:bool=true -DWANT_PODOFO:bool=true make VERBOSE=1 %{?_smp_mflags} @@ -73,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Parag - 0.6.0-1.r1063 +- update to svn revision 1063 + * Fri Apr 24 2009 Parag - 0.5.0-2.r931 - update to svn revision 931 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 24 Apr 2009 11:05:27 -0000 1.10 +++ sources 13 Jul 2009 10:11:02 -0000 1.11 @@ -1 +1 @@ -5064020766f09da2aa4854e384dd0638 fontmatrix-0.5.0-Source.tar.gz +6a00c9448a50d3bab5acb4145f778f2d fontmatrix-0.6.0-Source.tar.gz From pkgdb at fedoraproject.org Mon Jul 13 10:16:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 10:16:02 +0000 Subject: [pkgdb] perl-Sys-Virt: berrange has requested commit Message-ID: <20090713101602.2524A10F888@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on perl-Sys-Virt (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt From pjp at fedoraproject.org Mon Jul 13 10:18:18 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:18:18 +0000 (UTC) Subject: rpms/pem/F-11 .cvsignore,1.5,1.6 pem.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090713101818.1A28011C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3568 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 28 May 2009 11:53:58 -0000 1.5 +++ .cvsignore 13 Jul 2009 10:17:47 -0000 1.6 @@ -1 +1 @@ -pem-0.7.6.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-11/pem.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pem.spec 28 May 2009 11:53:58 -0000 1.8 +++ pem.spec 13 Jul 2009 10:17:47 -0000 1.9 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.6 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + * Wed May 27 2009 P J P - 0.7.6-1 - pem now uses `-M ' value while showing monthly report with option `-m'. And new option -N to see reports between Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 28 May 2009 11:53:59 -0000 1.6 +++ sources 13 Jul 2009 10:17:47 -0000 1.7 @@ -1 +1 @@ -c2a4636e0935c8bd66d30ce8eb7b8252 pem-0.7.6.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pkgdb at fedoraproject.org Mon Jul 13 10:18:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 10:18:57 +0000 Subject: [pkgdb] perl-Sys-Virt: berrange has requested commit Message-ID: <20090713101857.D7F5810F89C@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on perl-Sys-Virt (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt From pkgdb at fedoraproject.org Mon Jul 13 10:18:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 10:18:58 +0000 Subject: [pkgdb] perl-Sys-Virt: berrange has requested commit Message-ID: <20090713101858.C912710F8A6@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on perl-Sys-Virt (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt From pjp at fedoraproject.org Mon Jul 13 10:25:27 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:25:27 +0000 (UTC) Subject: rpms/pem/EL-4 .cvsignore,1.5,1.6 pem.spec,1.6,1.7 sources,1.6,1.7 Message-ID: <20090713102527.851CD11C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5316 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-4/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 12 May 2009 12:38:55 -0000 1.5 +++ .cvsignore 13 Jul 2009 10:24:56 -0000 1.6 @@ -1 +1 @@ -pem-0.7.5.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-4/pem.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pem.spec 12 May 2009 11:20:24 -0000 1.6 +++ pem.spec 13 Jul 2009 10:24:57 -0000 1.7 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.5 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + +* Wed May 27 2009 P J P - 0.7.6-1 +- pem now uses `-M ' value while showing monthly report + with option `-m'. And new option -N to see reports between + two given months. + * Tue May 12 2009 Kushal Das - 0.7.5-1 - New pem release, mostly bugfix Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-4/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 12 May 2009 12:38:55 -0000 1.6 +++ sources 13 Jul 2009 10:24:57 -0000 1.7 @@ -1 +1 @@ -50ce2462d5d42cf174a9b1fb3222d97d pem-0.7.5.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pjp at fedoraproject.org Mon Jul 13 10:33:24 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:33:24 +0000 (UTC) Subject: rpms/pem/EL-5 .cvsignore,1.3,1.4 pem.spec,1.3,1.4 sources,1.5,1.6 Message-ID: <20090713103325.0060E11C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7189 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 13 May 2009 11:05:06 -0000 1.3 +++ .cvsignore 13 Jul 2009 10:32:53 -0000 1.4 @@ -1 +1 @@ -pem-0.7.5.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-5/pem.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pem.spec 13 May 2009 11:20:32 -0000 1.3 +++ pem.spec 13 Jul 2009 10:32:53 -0000 1.4 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.5 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + +* Wed May 27 2009 P J P - 0.7.6-1 +- pem now uses `-M ' value while showing monthly report + with option `-m'. And new option -N to see reports between + two given months. + * Tue May 12 2009 Kushal Das - 0.7.5-1 - New pem release, mostly bugfix Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/EL-5/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 13 May 2009 11:20:32 -0000 1.5 +++ sources 13 Jul 2009 10:32:53 -0000 1.6 @@ -1 +1 @@ -194f31b1c9771478ea7f9990d238851c pem-0.7.5.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pravins at fedoraproject.org Mon Jul 13 10:39:08 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Mon, 13 Jul 2009 10:39:08 +0000 (UTC) Subject: rpms/system-config-language/devel s-c-l-bug-493858-507796.patch, NONE, 1.1 system-config-language.spec, 1.52, 1.53 Message-ID: <20090713103908.40BA011C0493@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/system-config-language/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8638 Modified Files: system-config-language.spec Added Files: s-c-l-bug-493858-507796.patch Log Message: * Mon Jul 13 2009 Pravin Satpute - 1.3.2-8 - fix bug 493858, 507796 s-c-l-bug-493858-507796.patch: --- NEW FILE s-c-l-bug-493858-507796.patch --- Only in system-config-language-1.3.2_mod/src: gui_detailsDialog.pyc Only in system-config-language-1.3.2_mod/src: gui_errors.pyc Only in system-config-language-1.3.2_mod/src: gui_install.pyc Only in system-config-language-1.3.2_mod/src: gui_progress.pyc Only in system-config-language-1.3.2_mod/src: lang_dict.pyc Only in system-config-language-1.3.2_mod/src: language_backend.pyc diff -rup system-config-language-1.3.2/src/language_gui.py system-config-language-1.3.2_mod/src/language_gui.py --- system-config-language-1.3.2/src/language_gui.py 2008-09-16 17:55:22.000000000 +0530 +++ system-config-language-1.3.2_mod/src/language_gui.py 2009-07-13 14:50:24.000000000 +0530 @@ -174,6 +174,50 @@ class childWindow: self.apply() gtk.main_quit() + def restoreClicked(self, *args): + #Get the lang from the list of languages + rc = self.langView.get_selection().get_selected() + if rc: + model, iter = rc + defaultLang = self.langStore.get_value(iter, 0) + sysfontacm = self.langStore.get_value(iter, 1) + sysfont = self.langStore.get_value(iter, 2) + fullName = self.langStore.get_value(iter, 3) + + if defaultLang=="en_US.UTF-8": + dlg = gtk.MessageDialog(self.mainWindow, 0, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, + (_("Already system in default language,\nNothing to do."))) + dlg.run() + dlg.destroy() + return 1 + + + str = _("Do you really want to change system language to default [en_US]?") + d = gtk.MessageDialog(self.mainWindow, gtk.DIALOG_MODAL, + gtk.MESSAGE_QUESTION, + message_format = str) + + b = d.add_button(_("No"), gtk.RESPONSE_CANCEL) + b = d.add_button(_("Yes"), gtk.RESPONSE_OK) + d.set_default_response(gtk.RESPONSE_OK) + rc = d.run() + d.destroy() + + if rc == gtk.RESPONSE_OK: + is_RepoError = True + defaultLang= "en_US" + self.setDefault(defaultLang) + else: + return -1 + + + def helpClicked(self, args): + dlg = gtk.MessageDialog(self.mainWindow, 0, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, + (_("system-config-language is a graphical user interface that allows the user to change the default language of the system."))) + dlg.run() + dlg.destroy() + return 1 + def apply(self, *args): if self.doDebug: return 0 @@ -313,17 +357,33 @@ class childWindow: self.mainWindow.connect("destroy", self.destroy) self.mainWindow.set_title(_("Language Selection")) self.mainWindow.set_icon(iconPixbuf) - self.mainWindow.set_size_request(-1, 350) - self.mainWindow.set_border_width(10) + self.mainWindow.set_size_request(-1, 600) + self.mainWindow.set_border_width(12) self.bb = gtk.HButtonBox() self.bb.set_layout(gtk.BUTTONBOX_END) - self.bb.set_spacing(10) + self.bb.set_spacing(12) + + self.sdButton = gtk.Button("System _Defaults", None, True) + self.sdButton.connect("clicked", self.restoreClicked) + self.bb.pack_start(self.sdButton) + + self.cancelButton = gtk.Button(stock='gtk-cancel') + self.cancelButton.connect("clicked", self.destroy) + self.bb.pack_start(self.cancelButton) + self.okButton = gtk.Button(stock='gtk-ok') self.okButton.connect("clicked", self.okClicked) self.bb.pack_start(self.okButton) - self.toplevel.set_spacing(5) + + self.helpButton = gtk.Button(stock='gtk-help') + self.helpButton.connect("clicked", self.helpClicked) + self.bb.pack_start(self.helpButton) + self.bb.set_child_secondary(self.helpButton, True) + + self.toplevel.set_spacing(12) + self.iconBox.pack_start(self.icon, False) self.iconBox.pack_start(self.msgLabel) self.toplevel.pack_start(self.iconBox, False) Only in system-config-language-1.3.2_mod/src: language_gui.pyc Only in system-config-language-1.3.2_mod/src: language_tui.pyc Only in system-config-language-1.3.2_mod/src: tui_install.pyc Index: system-config-language.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-language/devel/system-config-language.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- system-config-language.spec 7 Jul 2009 09:14:24 -0000 1.52 +++ system-config-language.spec 13 Jul 2009 10:38:37 -0000 1.53 @@ -1,7 +1,7 @@ Summary: A graphical interface for modifying the system language Name: system-config-language Version: 1.3.2 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/language License: GPLv2+ Group: System Environment/Base @@ -21,6 +21,7 @@ Obsoletes: locale_config <= %{version} Patch1: ca-po-462914.patch Patch2: dialogue-center-493824.patch Patch3: s-c-l-bug-598975.patch +Patch4: s-c-l-bug-493858-507796.patch %description system-config-language is a graphical user interface that @@ -31,6 +32,7 @@ allows the user to change the default la %patch1 -p1 -b .1-ca-po %patch2 -p1 -b .2-dialogue-center %patch3 -p1 -b .3-rhpl +%patch4 -p1 -b .4-s-c-cleanup %build make %{?_smp_mflags} @@ -88,6 +90,9 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-language %changelog +* Mon Jul 13 2009 Pravin Satpute - 1.3.2-8 +- fix bug 493858, 507796 + * Tue Jul 07 2009 Pravin Satpute - 1.3.2-7 - fix bug 598975 - patch from Jeremy Katz katzj at redhat.com From atkac at fedoraproject.org Mon Jul 13 10:45:05 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Mon, 13 Jul 2009 10:45:05 +0000 (UTC) Subject: rpms/tigervnc/devel tigervnc.spec,1.13,1.14 vncserver.init,1.1,1.2 Message-ID: <20090713104505.619AC11C0493@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/tigervnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10860 Modified Files: tigervnc.spec vncserver.init Log Message: - don't write warning when initscript is called with condrestart param (#508367) Index: tigervnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/tigervnc/devel/tigervnc.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- tigervnc.spec 23 Jun 2009 13:10:46 -0000 1.13 +++ tigervnc.spec 13 Jul 2009 10:44:35 -0000 1.14 @@ -1,6 +1,6 @@ Name: tigervnc Version: 0.0.91 -Release: 0.13%{?dist} +Release: 0.13%{?dist}.1 Summary: A TigerVNC remote display system Group: User Interface/Desktops @@ -244,6 +244,9 @@ fi %endif %changelog +* Mon Jul 13 2009 Adam Tkac 0.0.91-0.13.1 +- don't write warning when initscript is called with condrestart param (#508367) + * Tue Jun 23 2009 Adam Tkac 0.0.91-0.13 - temporary use F11 Xserver base to make Xvnc compilable - BuildRequires: libXi-devel Index: vncserver.init =================================================================== RCS file: /cvs/pkgs/rpms/tigervnc/devel/vncserver.init,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vncserver.init 3 Apr 2009 17:07:49 -0000 1.1 +++ vncserver.init 13 Jul 2009 10:44:35 -0000 1.2 @@ -98,7 +98,8 @@ case "$1" in start ;; condrestart) - echo "condrestart is obsolete, use try-restart instead" +# https://bugzilla.redhat.com/show_bug.cgi?id=508367 +# echo "condrestart is obsolete, use try-restart instead" if [ -e /var/lock/subsys/vncserver ]; then stop sleep 3 From pjp at fedoraproject.org Mon Jul 13 10:45:55 2009 From: pjp at fedoraproject.org (pjp) Date: Mon, 13 Jul 2009 10:45:55 +0000 (UTC) Subject: rpms/pem/devel .cvsignore, 1.7, 1.8 pem.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090713104555.2BB5811C0493@cvs1.fedora.phx.redhat.com> Author: pjp Update of /cvs/pkgs/rpms/pem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11150 Modified Files: .cvsignore pem.spec sources Log Message: Fixed a minor bug and some PBP changes. Upgrade to 0.7.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pem/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 28 May 2009 11:31:59 -0000 1.7 +++ .cvsignore 13 Jul 2009 10:45:24 -0000 1.8 @@ -1 +1 @@ -pem-0.7.6.tar.gz +pem-0.7.7.tar.gz Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/devel/pem.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pem.spec 28 May 2009 11:31:59 -0000 1.9 +++ pem.spec 13 Jul 2009 10:45:24 -0000 1.10 @@ -1,5 +1,5 @@ Name: pem -Version: 0.7.6 +Version: 0.7.7 Release: 1%{?dist} Summary: Personal Expenses Manager @@ -18,6 +18,13 @@ Requires(preun): info %description Pem, is a personal expenses manager. Pem lets keep track of personal income and expense in an extremely elegant manner. +On Linux like systems, Pem works by storing the details in +a CSV file, placed in the ~/.pem directory under your $HOME +directory; On Windows, the same file is placed in pem directory, +under the USERPROFILE directory. Each such file is named after +the current month, and is automatically created by Pem when you +enter the first record for the month. It is not advisable to +edit these files by hand. %prep %setup -q @@ -58,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 P J P - 0.7.7-1 +- Fixed a minor bug and did few changes recommended by PBP. + * Wed May 27 2009 P J P - 0.7.6-1 - pem now uses `-M ' value while showing monthly report with option `-m'. And new option -N to see reports between Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pem/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 May 2009 11:31:59 -0000 1.7 +++ sources 13 Jul 2009 10:45:24 -0000 1.8 @@ -1 +1 @@ -c2a4636e0935c8bd66d30ce8eb7b8252 pem-0.7.6.tar.gz +57e2ae21bdb52e7e7b03cc017f0dc0cd pem-0.7.7.tar.gz From pnemade at fedoraproject.org Mon Jul 13 10:48:02 2009 From: pnemade at fedoraproject.org (pnemade) Date: Mon, 13 Jul 2009 10:48:02 +0000 (UTC) Subject: rpms/fontmatrix/devel fontmatrix.spec,1.16,1.17 Message-ID: <20090713104802.4D32C11C0493@cvs1.fedora.phx.redhat.com> Author: pnemade Update of /cvs/pkgs/rpms/fontmatrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11519 Modified Files: fontmatrix.spec Log Message: * Mon Jul 13 2009 Parag - 0.6.0-2.r1063 - Add missing BRs:python-devel podofo-devel libicu-devel Index: fontmatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/devel/fontmatrix.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- fontmatrix.spec 13 Jul 2009 10:11:02 -0000 1.16 +++ fontmatrix.spec 13 Jul 2009 10:47:31 -0000 1.17 @@ -3,7 +3,7 @@ Name: fontmatrix Summary: A fonts manager Version: 0.6.0 -Release: 1.r%{svnrev}%{?dist} +Release: 2.r%{svnrev}%{?dist} License: GPLv2+ Group: User Interface/X ##### svn checkout HOWTO ##### @@ -16,8 +16,8 @@ URL: http://www.fontmatrix.net/ Source: http://www.fontmatrix.net/archives/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt-devel freetype-devel -BuildRequires: desktop-file-utils cmake -BuildRequires: openssl-devel +BuildRequires: desktop-file-utils cmake python-devel +BuildRequires: openssl-devel podofo-devel libicu-devel ##Following is needed to ensure that enduser can edit font with fontforge application Requires: fontforge @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Parag - 0.6.0-2.r1063 +- Add missing BRs:python-devel podofo-devel libicu-devel + * Mon Jul 13 2009 Parag - 0.6.0-1.r1063 - update to svn revision 1063 From lkundrak at fedoraproject.org Mon Jul 13 10:59:09 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 13 Jul 2009 10:59:09 +0000 (UTC) Subject: rpms/perl-TAP-Harness-JUnit/devel .cvsignore, 1.4, 1.5 perl-TAP-Harness-JUnit.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090713105909.AA78B11C0493@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14322 Modified Files: .cvsignore perl-TAP-Harness-JUnit.spec sources Log Message: * Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.31-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Apr 2009 14:11:39 -0000 1.4 +++ .cvsignore 13 Jul 2009 10:59:09 -0000 1.5 @@ -1 +1 @@ -TAP-Harness-JUnit-0.30.tar.gz +TAP-Harness-JUnit-0.31.tar.gz Index: perl-TAP-Harness-JUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/perl-TAP-Harness-JUnit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-TAP-Harness-JUnit.spec 17 Apr 2009 14:11:39 -0000 1.6 +++ perl-TAP-Harness-JUnit.spec 13 Jul 2009 10:59:09 -0000 1.7 @@ -1,5 +1,5 @@ Name: perl-TAP-Harness-JUnit -Version: 0.30 +Version: 0.31 Release: 1%{?dist} Summary: Generate JUnit compatible output from TAP results License: GPL+ or Artistic @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.31-1 +- New upstream release + * Fri Apr 17 2009 Lubomir Rintel (Good Data) 0.30-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Apr 2009 14:11:39 -0000 1.4 +++ sources 13 Jul 2009 10:59:09 -0000 1.5 @@ -1 +1 @@ -6e61c4ebe530b38786146bfd24a285f3 TAP-Harness-JUnit-0.30.tar.gz +54eb8033c8511b62dcf2a44278a1926a TAP-Harness-JUnit-0.31.tar.gz From dwayne at fedoraproject.org Mon Jul 13 11:06:48 2009 From: dwayne at fedoraproject.org (dwayne) Date: Mon, 13 Jul 2009 11:06:48 +0000 (UTC) Subject: rpms/virtaal/F-11 virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 virtaal.spec, 1.7, 1.8 Message-ID: <20090713110648.C120511C0493@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/virtaal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15900 Modified Files: .cvsignore sources virtaal.spec Added Files: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch Log Message: * Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 - Update to 0.4.0 beta1 - Backport r11846 --nodepcheck virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch: --- NEW FILE virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch --- --- src/trunk/virtaal/setup.py 2009/07/07 15:00:30 11845 +++ src/trunk/virtaal/setup.py 2009/07/07 17:19:29 11846 @@ -457,13 +457,23 @@ import distutils.command.install class DepCheckInstall(distutils.command.install.install): - def __init__(self, *args, **kwargs): - from virtaal.support import depcheck - failed = depcheck.check_dependencies() - if failed: - print 'Failed dependencies: %s' % (', '.join(failed)) - exit(0) - distutils.command.install.install.__init__(self, *args, **kwargs) + user_options = distutils.command.install.install.user_options + [ + ('nodepcheck', None, "don't check dependencies"), + ] + + def initialize_options(self): + distutils.command.install.install.initialize_options(self) + self.nodepcheck = False + + def run(self, *args, **kwargs): + if not self.nodepcheck: + from virtaal.support import depcheck + failed = depcheck.check_dependencies() + if failed: + print 'Failed dependencies: %s' % (', '.join(failed)) + print 'Use the --nodepcheck option to ignore dependencies.' + exit(0) + distutils.command.install.install.run(self, *args, **kwargs) def main(options): options = add_platform_specific_options(options) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 18 Feb 2009 18:22:33 -0000 1.6 +++ .cvsignore 13 Jul 2009 11:06:18 -0000 1.7 @@ -1 +1,2 @@ virtaal-0.3.1.tar.bz2 +virtaal-0.4.0-beta1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 18 Feb 2009 18:22:33 -0000 1.6 +++ sources 13 Jul 2009 11:06:18 -0000 1.7 @@ -1 +1,2 @@ eef03a4afa2f8a1e17f94a807268b7e3 virtaal-0.3.1.tar.bz2 +30ce41da361ef9efab109eea8efebf64 virtaal-0.4.0-beta1.tar.bz2 Index: virtaal.spec =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/virtaal.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- virtaal.spec 26 Feb 2009 00:37:05 -0000 1.7 +++ virtaal.spec 13 Jul 2009 11:06:18 -0000 1.8 @@ -1,18 +1,20 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: virtaal -Version: 0.3.1 -Release: 2%{?dist} +Version: 0.4.0 +Release: 0.1.beta1%{?dist} Summary: Localization and translation editor Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/virtaal/index -Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 +#Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-beta1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: virtaal-0.3beta1-setup_drop_MO_generation.patch Patch1: virtaal-0.3.0-autocorr_shared_location.patch +Patch2: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch BuildArch: noarch BuildRequires: python @@ -20,7 +22,7 @@ BuildRequires: python-devel BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool -Requires: translate-toolkit >= 1.3 +Requires: translate-toolkit >= 1.4 Requires: libtranslate Requires: pygtk2 Requires: pygtk2-libglade @@ -53,9 +55,10 @@ converters allow translators to edit: Op %prep -%setup -q +%setup -q -n %{name}-%{version}-beta1 %patch0 -p1 -b .setup_drop_MO_generation %patch1 -p1 -b .autocorr_shared_location +%patch2 -p3 -b .nodepcheck %build %{__python} setup.py build @@ -71,7 +74,7 @@ popd %install rm -rf %{buildroot} -%{__python} setup.py install -O1 --skip-build --install-data=/usr --root %{buildroot} +%{__python} setup.py install -O1 --skip-build --install-data=/usr --nodepcheck --root %{buildroot} desktop-file-install \ --delete-original \ @@ -140,6 +143,10 @@ rm -rf %{buildroot} %changelog +* Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 +- Update to 0.4.0 beta1 +- Backport r11846 --nodepcheck + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jakub at fedoraproject.org Mon Jul 13 11:31:19 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Mon, 13 Jul 2009 11:31:19 +0000 (UTC) Subject: rpms/valgrind/devel valgrind-3.4.1-dwarf3.patch, NONE, 1.1 valgrind-3.4.1-glibc-2.10.1.patch, NONE, 1.1 valgrind-3.4.1-x86_64-ldso-strlen.patch, NONE, 1.1 valgrind.spec, 1.62, 1.63 Message-ID: <20090713113120.10A0F11C0493@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22130 Modified Files: valgrind.spec Added Files: valgrind-3.4.1-dwarf3.patch valgrind-3.4.1-glibc-2.10.1.patch valgrind-3.4.1-x86_64-ldso-strlen.patch Log Message: 3.4.1-4 valgrind-3.4.1-dwarf3.patch: --- NEW FILE valgrind-3.4.1-dwarf3.patch --- --- valgrind/coregrind/m_debuginfo/readdwarf3.c.jj 2009-07-13 12:15:20.000000000 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf3.c 2009-07-13 13:16:23.000000000 +0200 @@ -1322,8 +1322,8 @@ void read_filename_table( /*MOD*/D3VarPa get_Initial_Length( &is_dw64, &c, "read_filename_table: invalid initial-length field" ); version = get_UShort( &c ); - if (version != 2) - cc->barf("read_filename_table: Only DWARF version 2 line info " + if (version != 2 && version != 3) + cc->barf("read_filename_table: Only DWARF version 2 and 3 line info " "is currently supported."); /*header_length = (ULong)*/ get_Dwarfish_UWord( &c, is_dw64 ); /*minimum_instruction_length = */ get_UChar( &c ); --- valgrind/coregrind/m_debuginfo/readdwarf.c.jj 2009-07-13 12:15:20.000000000 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf.c 2009-07-13 13:17:52.000000000 +0200 @@ -512,9 +512,9 @@ void read_dwarf2_lineblock ( struct _Deb VG_(printf)(" DWARF Version: %d\n", (Int)info.li_version); - if (info.li_version != 2) { + if (info.li_version != 2 && info.li_version != 3) { ML_(symerr)(di, True, - "Only DWARF version 2 line info " + "Only DWARF version 2 and 3 line info " "is currently supported."); goto out; } @@ -1162,7 +1162,7 @@ void ML_(read_debuginfo_dwarf3) /* version should be 2 */ ver = *((UShort*)( block_img + blklen_len )); - if ( ver != 2 ) { + if ( ver != 2 && ver != 3 ) { ML_(symerr)( di, True, "Ignoring non-dwarf2 block in .debug_info" ); continue; @@ -3575,8 +3575,8 @@ void ML_(read_callframe_info_dwarf3) VG_(printf)("cie.version = %d\n", (Int)cie_version); if (di->ddump_frames) VG_(printf)(" Version: %d\n", (Int)cie_version); - if (cie_version != 1) { - how = "unexpected CIE version (not 1)"; + if (cie_version != 1 && cie_version != 3) { + how = "unexpected CIE version (not 1 nor 3)"; goto bad; } valgrind-3.4.1-glibc-2.10.1.patch: --- NEW FILE valgrind-3.4.1-glibc-2.10.1.patch --- --- valgrind-3.4.1/glibc-2.X.supp.in.jj 2009-03-01 17:04:51.000000000 -0500 +++ valgrind-3.4.1/glibc-2.X.supp.in 2009-05-11 11:17:35.605396000 -0400 @@ -168,9 +168,9 @@ Memcheck:Param socketcall.sendto(msg) fun:__sendto_nocancel - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so } { glibc24-64bit-padding-1c @@ -180,7 +180,7 @@ fun:__nscd_get_map_ref fun:nscd_get*_r fun:*nscd* - obj:/*libc- at GLIBC_VERSION@.so + obj:/*libc- at GLIBC_VERSION@*.so } @@ -199,18 +199,18 @@ Memcheck:Param socketcall.sendto(msg) fun:send - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so } { X11-64bit-padding-4b Memcheck:Param socketcall.send(msg) fun:send - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so - obj:/*libc- at GLIBC_VERSION@.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so + obj:/*libc- at GLIBC_VERSION@*.so } ##----------------------------------------------------------------------## valgrind-3.4.1-x86_64-ldso-strlen.patch: --- NEW FILE valgrind-3.4.1-x86_64-ldso-strlen.patch --- --- valgrind/coregrind/pub_core_trampoline.h.jj 2009-04-22 12:10:54.000000000 +0200 +++ valgrind/coregrind/pub_core_trampoline.h 2009-04-22 14:50:39.000000000 +0200 @@ -66,6 +66,7 @@ extern Char* VG_(x86_linux_REDIR_FOR_ind extern void VG_(amd64_linux_SUBST_FOR_rt_sigreturn); extern void VG_(amd64_linux_REDIR_FOR_vgettimeofday); extern void VG_(amd64_linux_REDIR_FOR_vtime); +extern UInt VG_(amd64_linux_REDIR_FOR_strlen)( void* ); #endif #if defined(VGP_ppc32_linux) --- valgrind/coregrind/m_redir.c.jj 2009-04-22 12:10:54.000000000 +0200 +++ valgrind/coregrind/m_redir.c 2009-04-22 15:32:19.000000000 +0200 @@ -879,6 +879,20 @@ void VG_(redir_initialise) ( void ) (Addr)&VG_(amd64_linux_REDIR_FOR_vtime) ); + /* If we're using memcheck, use these intercepts right from + the start, otherwise ld.so makes a lot of noise. */ + if (0==VG_(strcmp)("Memcheck", VG_(details).name)) { + + static const HChar croakage[] + = "Possible fix: install glibc's debuginfo package on this machine."; + + /* this is mandatory - can't sanely continue without it */ + add_hardwired_spec( + "ld-linux-x86-64.so.2", "strlen", + (Addr)&VG_(amd64_linux_REDIR_FOR_strlen), + croakage + ); + } # elif defined(VGP_ppc32_linux) { static const HChar croakage[] --- valgrind/coregrind/m_trampoline.S.jj 2009-04-22 12:10:54.000000000 +0200 +++ valgrind/coregrind/m_trampoline.S 2009-04-22 15:18:37.000000000 +0200 @@ -174,7 +174,29 @@ VG_(amd64_linux_REDIR_FOR_vtime): .LfnE3: .size VG_(amd64_linux_REDIR_FOR_vtime), .-.LfnB3 -/* A CIE for the above two functions, followed by their FDEs */ +/* There's no particular reason that this needs to be handwritten + assembly, but since that's what this file contains, here's a + simple strlen implementation (written in C and compiled by gcc.) +*/ +.global VG_(amd64_linux_REDIR_FOR_strlen) +.type VG_(amd64_linux_REDIR_FOR_strlen), @function +VG_(amd64_linux_REDIR_FOR_strlen): +.LfnB4: + xorl %eax, %eax + cmpb $0, (%rdi) + movq %rdi, %rdx + je .L41 +.L40: addq $1, %rdx + cmpb $0, (%rdx) + jne .L40 + movq %rdx, %rax + subq %rdi, %rax +.L41: ret +.LfnE4: +.size VG_(amd64_linux_REDIR_FOR_strlen), .-VG_(amd64_linux_REDIR_FOR_strlen) + + +/* A CIE for the above three functions, followed by their FDEs */ .section .eh_frame,"a", at progbits .Lframe1: .long .LEcie1-.LScie1 @@ -212,6 +234,15 @@ VG_(amd64_linux_REDIR_FOR_vtime): .uleb128 0x0 .align 8 .LEfde3: +.LSfde4: + .long .LEfde4-.LASfde4 +.LASfde4: + .long .LASfde4-.Lframe1 + .long .LfnB4 + .long .LfnE4-.LfnB4 + .uleb128 0x0 + .align 8 +.LEfde4: .previous .global VG_(trampoline_stuff_end) Index: valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/valgrind/devel/valgrind.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- valgrind.spec 9 Mar 2009 12:50:44 -0000 1.62 +++ valgrind.spec 13 Jul 2009 11:30:48 -0000 1.63 @@ -1,11 +1,14 @@ Summary: Tool for finding memory management bugs in programs Name: valgrind Version: 3.4.1 -Release: 1 +Release: 4 Epoch: 1 Source0: http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2 Patch1: valgrind-3.4.1-cachegrind-improvements.patch Patch2: valgrind-3.4.1-openat.patch +Patch3: valgrind-3.4.1-x86_64-ldso-strlen.patch +Patch4: valgrind-3.4.1-glibc-2.10.1.patch +Patch5: valgrind-3.4.1-dwarf3.patch License: GPLv2 URL: http://www.valgrind.org/ Group: Development/Debuggers @@ -15,7 +18,7 @@ Obsoletes: valgrind-callgrind # Ensure glibc{,-devel} is installed for both multilib arches BuildRequires: /lib/libc.so.6 /usr/lib/libc.so /lib64/libc.so.6 /usr/lib64/libc.so %endif -BuildRequires: glibc-devel >= 2.9 +BuildRequires: glibc-devel >= 2.10 ExclusiveArch: %{ix86} x86_64 ppc ppc64 %ifarch %{ix86} %define valarch x86 @@ -61,6 +64,9 @@ or valgrind plugins. %setup -q %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 %build %ifarch x86_64 ppc64 @@ -151,6 +157,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Mon Jul 13 2009 Jakub Jelinek 3.4.1-4 +- handle version 3 .debug_frame, .eh_frame, .debug_info and + .debug_line (#509197) + +* Mon May 11 2009 Jakub Jelinek 3.4.1-3 +- rebuilt against glibc 2.10.1 + +* Wed Apr 22 2009 Jakub Jelinek 3.4.1-2 +- redirect x86_64 ld.so strlen early (#495645) + * Mon Mar 9 2009 Jakub Jelinek 3.4.1-1 - update to 3.4.1 From thias at fedoraproject.org Mon Jul 13 11:32:48 2009 From: thias at fedoraproject.org (Matthias Saou) Date: Mon, 13 Jul 2009 11:32:48 +0000 (UTC) Subject: rpms/libmp4v2/devel libmp4v2.spec,1.7,1.8 Message-ID: <20090713113248.3A74211C0493@cvs1.fedora.phx.redhat.com> Author: thias Update of /cvs/extras/rpms/libmp4v2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22678/devel Modified Files: libmp4v2.spec Log Message: Rebuild to fix runtime problems of the latest builds (#507302). Index: libmp4v2.spec =================================================================== RCS file: /cvs/extras/rpms/libmp4v2/devel/libmp4v2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libmp4v2.spec 1 Mar 2009 17:53:48 -0000 1.7 +++ libmp4v2.spec 13 Jul 2009 11:32:47 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Library for working with files using the mp4 container format Name: libmp4v2 Version: 1.5.0.1 -Release: 8%{?dist} +Release: 9%{?dist} License: MPLv1.1 Group: System Environment/Libraries URL: http://resare.com/libmp4v2/ @@ -70,6 +70,9 @@ using the libmp4v2 library. %changelog +* Mon Jul 13 2009 Matthias Saou 1.5.0.1-9 +- Rebuild to fix runtime problems of the latest builds (#507302). + * Sun Mar 01 2009 Caol??n McNamara - 1.5.0.1-8 - constify rets of strchr(const char*) From mso at fedoraproject.org Mon Jul 13 11:33:15 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Mon, 13 Jul 2009 11:33:15 +0000 (UTC) Subject: rpms/ruby-icon-artist/devel ruby-icon-artist-iconname.patch, NONE, 1.1 ruby-icon-artist.spec, 1.1, 1.2 Message-ID: <20090713113315.2A8C111C0493@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/ruby-icon-artist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22645 Modified Files: ruby-icon-artist.spec Added Files: ruby-icon-artist-iconname.patch Log Message: Backport fix for correct checking of icon name from git. ruby-icon-artist-iconname.patch: --- NEW FILE ruby-icon-artist-iconname.patch --- diff -up icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname icon-artist-0.1.90/lib/icon-artist/icon.rb --- icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname 2009-02-04 16:19:02.000000000 +0100 +++ icon-artist-0.1.90/lib/icon-artist/icon.rb 2009-07-13 13:30:07.000000000 +0200 @@ -59,7 +59,7 @@ module IconArtist def Icon.check_document_metadata(svg, filename) # Check for icon name - element = svg.root.elements['//dc:title'] + element = svg.root.elements['//cc:Work/dc:title'] if element title = element.text if !title Index: ruby-icon-artist.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-icon-artist/devel/ruby-icon-artist.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ruby-icon-artist.spec 12 Jul 2009 18:44:29 -0000 1.1 +++ ruby-icon-artist.spec 13 Jul 2009 11:33:14 -0000 1.2 @@ -2,7 +2,7 @@ Name: ruby-icon-artist Version: 0.1.90 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Supporting libraries for icon artists Group: Development/Languages @@ -10,6 +10,7 @@ Group: Development/Languages License: LGPLv2+ URL: https://fedorahosted.org/echo-icon-theme/ Source0: https://fedorahosted.org/releases/e/c/echo-icon-theme/icon-artist-%{version}.tar.bz2 +Patch0: %{name}-iconname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -26,6 +27,7 @@ SVG, creating new icon theme and managin %prep %setup -q -n icon-artist-%{version} +%patch0 -p1 -b .iconname %build @@ -50,5 +52,8 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Martin Sourada - 0.1.90-2 +- Backport fix for correct checking of icon name from git + * Thu Feb 05 2009 Martin Sourada - 0.1.90-1 - Initial rpm packaging From thias at fedoraproject.org Mon Jul 13 11:33:18 2009 From: thias at fedoraproject.org (Matthias Saou) Date: Mon, 13 Jul 2009 11:33:18 +0000 (UTC) Subject: rpms/libmp4v2/F-11 libmp4v2.spec,1.7,1.8 Message-ID: <20090713113318.0E17A11C0493@cvs1.fedora.phx.redhat.com> Author: thias Update of /cvs/extras/rpms/libmp4v2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22678/F-11 Modified Files: libmp4v2.spec Log Message: Rebuild to fix runtime problems of the latest builds (#507302). Index: libmp4v2.spec =================================================================== RCS file: /cvs/extras/rpms/libmp4v2/F-11/libmp4v2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libmp4v2.spec 1 Mar 2009 17:53:48 -0000 1.7 +++ libmp4v2.spec 13 Jul 2009 11:32:47 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Library for working with files using the mp4 container format Name: libmp4v2 Version: 1.5.0.1 -Release: 8%{?dist} +Release: 9%{?dist} License: MPLv1.1 Group: System Environment/Libraries URL: http://resare.com/libmp4v2/ @@ -70,6 +70,9 @@ using the libmp4v2 library. %changelog +* Mon Jul 13 2009 Matthias Saou 1.5.0.1-9 +- Rebuild to fix runtime problems of the latest builds (#507302). + * Sun Mar 01 2009 Caol??n McNamara - 1.5.0.1-8 - constify rets of strchr(const char*) From jakub at fedoraproject.org Mon Jul 13 11:41:41 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Mon, 13 Jul 2009 11:41:41 +0000 (UTC) Subject: rpms/valgrind/devel valgrind-3.4.1-dwarf3.patch,1.1,1.2 Message-ID: <20090713114141.158F611C0493@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24952 Modified Files: valgrind-3.4.1-dwarf3.patch Log Message: 3.4.1-4 valgrind-3.4.1-dwarf3.patch: Index: valgrind-3.4.1-dwarf3.patch =================================================================== RCS file: /cvs/pkgs/rpms/valgrind/devel/valgrind-3.4.1-dwarf3.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- valgrind-3.4.1-dwarf3.patch 13 Jul 2009 11:30:47 -0000 1.1 +++ valgrind-3.4.1-dwarf3.patch 13 Jul 2009 11:41:40 -0000 1.2 @@ -1,7 +1,7 @@ --- valgrind/coregrind/m_debuginfo/readdwarf3.c.jj 2009-07-13 12:15:20.000000000 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf3.c 2009-07-13 13:16:23.000000000 +0200 -@@ -1322,8 +1322,8 @@ void read_filename_table( /*MOD*/D3VarPa - get_Initial_Length( &is_dw64, &c, +@@ -1415,8 +1415,8 @@ void read_filename_table( /*MOD*/D3VarPa + = get_Initial_Length( &is_dw64, &c, "read_filename_table: invalid initial-length field" ); version = get_UShort( &c ); - if (version != 2) @@ -9,8 +9,8 @@ + if (version != 2 && version != 3) + cc->barf("read_filename_table: Only DWARF version 2 and 3 line info " "is currently supported."); - /*header_length = (ULong)*/ get_Dwarfish_UWord( &c, is_dw64 ); - /*minimum_instruction_length = */ get_UChar( &c ); + header_length = (ULong)get_Dwarfish_UWord( &c, is_dw64 ); + minimum_instruction_length = get_UChar( &c ); --- valgrind/coregrind/m_debuginfo/readdwarf.c.jj 2009-07-13 12:15:20.000000000 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf.c 2009-07-13 13:17:52.000000000 +0200 @@ -512,9 +512,9 @@ void read_dwarf2_lineblock ( struct _Deb From msivak at fedoraproject.org Mon Jul 13 11:48:55 2009 From: msivak at fedoraproject.org (=?utf-8?q?Martin_Siv=C3=A1k?=) Date: Mon, 13 Jul 2009 11:48:55 +0000 (UTC) Subject: rpms/firstaidkit/devel .cvsignore, 1.6, 1.7 firstaidkit.spec, 1.22, 1.23 sources, 1.6, 1.7 Message-ID: <20090713114855.45EB811C0493@cvs1.fedora.phx.redhat.com> Author: msivak Update of /cvs/extras/rpms/firstaidkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27412 Modified Files: .cvsignore firstaidkit.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 27 Nov 2008 13:42:58 -0000 1.6 +++ .cvsignore 13 Jul 2009 11:48:54 -0000 1.7 @@ -1 +1 @@ -firstaidkit-0.2.2.tar.bz2 +firstaidkit-0.2.3.tar.bz2 Index: firstaidkit.spec =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/firstaidkit.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- firstaidkit.spec 29 Jun 2009 11:04:07 -0000 1.22 +++ firstaidkit.spec 13 Jul 2009 11:48:54 -0000 1.23 @@ -3,8 +3,8 @@ %define _unpackaged_files_terminate_build 0 Name: firstaidkit -Version: 0.2.2 -Release: 10%{?dist} +Version: 0.2.3 +Release: 1%{?dist} Summary: System Rescue Tool Group: Applications/System @@ -18,6 +18,7 @@ BuildRequires: desktop-file-utils BuildRequires: python-devel BuildRequires: python-setuptools-devel BuildArch: noarch +Requires: dialog %description A tool that automates simple and common system recovery tasks. @@ -36,19 +37,31 @@ Provides the examples and requires first Group: Applications/System Summary: All firstaidkit plugins, and the gui Requires: %{name} = %{version}-%{release} -%ifnarch s390 s390x ppc64 ppc -Requires: %{name}-plugin-grub -%endif Requires: %{name}-plugin-passwd Requires: %{name}-plugin-xserver -Requires: %{name}-plugin-mdadm-conf +%ifnarch s390 s390x ppc64 ppc sparc +Requires: %{name}-plugin-grub +%endif Requires: %{name}-gui +Requires: %{name}-plugin-mdadm-conf +#Requires: %{name}-plugin-undelete-partitions +#Requires: %{name}-plugin-rpm + %description plugin-all This package provides all the necessary firstaidkit plugins. It probes the system and according to what it finds, it installs the needed firstaidkit plugins. +%package gui +Group: Applications/System +Summary: FirstAidKit GUI +Requires: %{name} = %{version}-%{release} +Requires: pygtk2, pygtk2-libglade + +%description gui +This package contains the Gtk based FirstAidKit GUI + %package plugin-passwd Group: Applications/System @@ -69,15 +82,6 @@ Requires: %{name} = %{version}-%{r This FirstAidKit plugin automates the recovery of the xserver configuration file xorg.conf. -%package plugin-mdadm-conf -Group: Applications/System -Summary: Firstaidkit plugin to diagnose software raid configuration file -Requires: %{name} = %{version}-%{release} -Requires: mdadm - -%description plugin-mdadm-conf -This plugin will assess the validity and existence of the mdadm.conf file. -The file will get replaced if any inconsistencies are found. %package plugin-grub Group: Applications/System @@ -86,20 +90,42 @@ Requires: %{name} = %{version}-%{r Requires: dbus-python Requires: grub Requires: pyparted -ExcludeArch: ppc ppc64 s390 s390x +ExcludeArch: ppc ppc64 s390 s390x sparc %description plugin-grub This FirstAidKit plugin automates the recovery from the GRUB bootloader problems. -%package gui +%package plugin-mdadm-conf Group: Applications/System -Summary: FirstAidKit GUI +Summary: Firstaidkit plugin to diagnose software raid configuration file Requires: %{name} = %{version}-%{release} -Requires: pygtk2, pygtk2-libglade +Requires: mdadm -%description gui -This package contains the Gtk based FirstAidKit GUI +%description plugin-mdadm-conf +This plugin will assess the validity and existence of the mdadm.conf file. +The file will get replaced if any inconsistencies are found. + + +#%package plugin-rpm +#Group: Applications/System +#Summary: FirstAidKit plugin to diagnose or repair the RPM packaging system +#Requires: %{name} = %{version}-%{release} +#Requires: rpm, rpm-python +# +#%description plugin-rpm +#This FirstAidKit plugin automates the tasks related to RPM problems. +#For example: corrupted database or important system packages missing. +# +#%package plugin-undelete-partitions +#Group: Applications/System +#Summary: FirstAidKit plugin to recover erased partitions +#BuildRequires: python-devel, parted-devel, pkgconfig +#Requires: %{name} = %{version}-%{release} +#Requires: parted +# +#%description plugin-undelete-partitions +#This FirstAidKit plugin automates the recovery of erased partitions. %prep @@ -109,7 +135,7 @@ This package contains the Gtk based Firs %build %{__python} setup.py build -%{__make} about +%{__make} build %install @@ -141,21 +167,26 @@ desktop-file-install --vendor="fedora" - #plugins %{__cp} -f plugins/passwd.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/ %{__cp} -f plugins/xserver.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/ -%{__cp} -f plugins/mdadm_conf.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/ %{__install} -d $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/grub %{__cp} -f plugins/grub/*.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/grub - +%{__cp} -f plugins/mdadm_conf.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/ +#%{__install} -d $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/undelparts +#%{__cp} -f plugins/undelparts/{*.py,_undelpart.so} $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/undelparts/ +#%{__install} -d $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/rpm +#%{__cp} -f plugins/rpm/*.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/rpm/ +#%{__install} -d $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/rpm_lowlevel +#%{__cp} -f plugins/rpm_lowlevel/*.py $RPM_BUILD_ROOT%{_libdir}/firstaidkit/plugins/rpm_lowlevel/ %clean %{__rm} -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) # For noarch packages: sitelib %{python_sitelib}/pyfirstaidkit %{python_sitelib}/%{name}-%{version}-py?.?.egg-info %{_bindir}/firstaidkit +%{_bindir}/firstaidkit-qs %dir %{_bindir}/firstaidkit %{_bindir}/firstaidkitrevert %config(noreplace) %{_sysconfdir}/firstaidkit/firstaidkit.conf @@ -165,7 +196,6 @@ desktop-file-install --vendor="fedora" - %dir %{_libdir}/firstaidkit %dir %{_libdir}/firstaidkit/plugins %dir %{_datadir}/doc/%name-%version -%dir %{_sysconfdir}/firstaidkit %files gui %{_libdir}/firstaidkit/frontend/*.py* @@ -186,14 +216,26 @@ desktop-file-install --vendor="fedora" - %files plugin-xserver %{_libdir}/firstaidkit/plugins/xserver.py* +%files plugin-grub +%{_libdir}/firstaidkit/plugins/grub/* +%dir %{_libdir}/firstaidkit/plugins/grub/* + %files plugin-mdadm-conf %{_libdir}/firstaidkit/plugins/mdadm_conf.py* -%files plugin-grub -%{_libdir}/firstaidkit/plugins/grub/* -%dir %{_libdir}/firstaidkit/plugins/grub +#%files plugin-undelete-partitions +#%{_libdir}/firstaidkit/plugins/undelparts/*.py* +#%{_libdir}/firstaidkit/plugins/undelparts/*.so +# +#%files plugin-rpm +#%{_libdir}/firstaidkit/plugins/rpm_lowlevel/* +#%{_libdir}/firstaidkit/plugins/rpm/* %changelog +* Mon Jul 13 2009 Martin Sivak - 0.2.3-1 +- Add firstaidkit-qs script +- Do not build undelparts plugin since we ignore it anyways + * Mon Jun 29 2009 Martin Sivak - 0.2.2-10 - Exclude grub plugin from s390 archs Index: sources =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 27 Nov 2008 13:42:58 -0000 1.6 +++ sources 13 Jul 2009 11:48:54 -0000 1.7 @@ -1 +1 @@ -039e9a1e1837cbf741359429190ce5e0 firstaidkit-0.2.2.tar.bz2 +0465757e71024cc415b9ac9e1cea80bb firstaidkit-0.2.3.tar.bz2 From jussilehtola at fedoraproject.org Mon Jul 13 11:52:57 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Mon, 13 Jul 2009 11:52:57 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.85,1.86 Message-ID: <20090713115257.61B0811C0493@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28300 Modified Files: octave.spec Log Message: * Mon Jul 13 2009 Jussi Lehtola - 6:3.2.0-2 - Added BR: ftgl-devel for native graphics. - Dropped obsolete X-Fedora category from desktop file. - Macro use unifications. - Branch documentation into its own subpackage. Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- octave.spec 11 Jul 2009 21:01:08 -0000 1.85 +++ octave.spec 13 Jul 2009 11:52:26 -0000 1.86 @@ -3,7 +3,7 @@ Name: octave Version: 3.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level language for numerical computations Epoch: 6 Group: Applications/Engineering @@ -19,7 +19,7 @@ BuildRequires: ncurses-devel zlib-devel BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript BuildRequires: curl-devel pcre-devel texinfo-tex arpack-devel libX11-devel BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils -BuildRequires: GraphicsMagick-c++-devel fltk-devel qrupdate-devel +BuildRequires: GraphicsMagick-c++-devel fltk-devel ftgl-devel qrupdate-devel Requires: gnuplot gnuplot-common less info texinfo Requires(post): info @@ -53,6 +53,16 @@ The octave-devel package contains files applications which use GNU Octave. +%package doc +Summary: Documentation for Octave +Group: Documentation +%if 0%{?fedora} > 10 || 0%{?rhel} > 5 +BuildArch: noarch +%endif + +%description doc +This package contains documentation for Octave. + %prep %setup -q # Check that octave_api is set correctly @@ -66,24 +76,25 @@ fi %global enable64 no export CPPFLAGS="-DH5_USE_16_API" %configure --enable-shared --disable-static --enable-64=%enable64 F77=gfortran +# SMP make doesn't work in Octave 3.2.0 #make %{?_smp_mflags} OCTAVE_RELEASE="Fedora %{version}-%{release}" make OCTAVE_RELEASE="Fedora %{version}-%{release}" %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +rm -f %{buildroot}%{_infodir}/dir # Make library links -mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d -echo "%{_libdir}/octave-%{version}" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/octave-%{_arch}.conf +mkdir -p %{buildroot}/etc/ld.so.conf.d +echo "%{_libdir}/octave-%{version}" > %{buildroot}/etc/ld.so.conf.d/octave-%{_arch}.conf # Remove RPM_BUILD_ROOT from ls-R files -perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_libexecdir}/%{name}/ls-R -perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_datadir}/%{name}/ls-R +perl -pi -e "s,%{buildroot},," %{buildroot}%{_libexecdir}/%{name}/ls-R +perl -pi -e "s,%{buildroot},," %{buildroot}%{_datadir}/%{name}/ls-R # Make sure ls-R exists -touch $RPM_BUILD_ROOT%{_datadir}/%{name}/ls-R +touch %{buildroot}%{_datadir}/%{name}/ls-R # Clean doc directory pushd doc @@ -92,20 +103,23 @@ pushd doc popd # Create desktop file -rm $RPM_BUILD_ROOT%{_datadir}/applications/www.octave.org-octave.desktop -desktop-file-install --vendor fedora --add-category X-Fedora --remove-category Development \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications examples/octave.desktop +rm %{buildroot}%{_datadir}/applications/www.octave.org-octave.desktop +desktop-file-install --vendor fedora --remove-category Development \ + --dir %{buildroot}%{_datadir}/applications examples/octave.desktop # Create directories for add-on packages -HOST_TYPE=`$RPM_BUILD_ROOT%{_bindir}/octave-config -p CANONICAL_HOST_TYPE` -mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/%{name}/site/oct/%{octave_api}/$HOST_TYPE -mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/%{name}/site/oct/$HOST_TYPE -mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/packages -touch $RPM_BUILD_ROOT%{_datadir}/%{name}/octave_packages - +HOST_TYPE=`%{buildroot}%{_bindir}/octave-config -p CANONICAL_HOST_TYPE` +mkdir -p %{buildroot}%{_libexecdir}/%{name}/site/oct/%{octave_api}/$HOST_TYPE +mkdir -p %{buildroot}%{_libexecdir}/%{name}/site/oct/$HOST_TYPE +mkdir -p %{buildroot}%{_datadir}/%{name}/packages +touch %{buildroot}%{_datadir}/%{name}/octave_packages + +# Create interpreter documentation directory +mkdir interpreter +cp -a doc/interpreter/*.pdf doc/interpreter/HTML/ interpreter/ %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post /sbin/ldconfig @@ -122,8 +136,8 @@ fi %files %defattr(-,root,root,-) %doc COPYING NEWS* PROJECTS README README.Linux README.kpathsea ROADMAP -%doc SENDING-PATCHES emacs/ examples/ doc/interpreter/octave.pdf -%doc doc/faq/ doc/interpreter/HTML/ doc/refcard/ +%doc SENDING-PATCHES emacs/ +# FIXME: Create an -emacs package that has the emacs addon %config /etc/ld.so.conf.d/octave-*.conf %{_bindir}/octave* %{_libdir}/octave-%{version}/ @@ -139,17 +153,27 @@ fi %{_datadir}/octave/packages/ %{_datadir}/octave/site/ - %files devel %defattr(-,root,root,-) -%doc doc/liboctave/HTML/ doc/liboctave/liboctave.pdf %{_bindir}/mkoctfile %{_bindir}/mkoctfile-%{version} %{_includedir}/octave-%{version}/ %{_mandir}/man1/mkoctfile.1.* +%files doc +%defattr(-,root,root,-) +%doc doc/liboctave/HTML/ doc/liboctave/liboctave.pdf +%doc doc/faq/Octave-FAQ.pdf doc/refcard/*.pdf +%doc examples/ interpreter + %changelog +* Mon Jul 13 2009 Jussi Lehtola - 6:3.2.0-2 +- Added BR: ftgl-devel for native graphics. +- Dropped obsolete X-Fedora category from desktop file. +- Macro use unifications. +- Branch documentation into its own subpackage. + * Sat Jul 11 2009 Jussi Lehtola - 6:3.2.0-1 - Update to latest upstream (3.2.0). @@ -318,7 +342,7 @@ fi * Fri Nov 11 2005 Quentin Spencer 2.9.4-1 - New upstream release. - Patch to make sure all headers are included in -devel. -- PKG_ADD file now needs $RPM_BUILD_ROOT stripped from it. +- PKG_ADD file now needs %{buildroot} stripped from it. - Cleanup errors in dependencies. * Tue Oct 25 2005 Quentin Spencer 2.9.3-6 From hno at fedoraproject.org Mon Jul 13 11:54:28 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 11:54:28 +0000 (UTC) Subject: rpms/squid/F-11 .cvsignore, 1.41, 1.42 sources, 1.44, 1.45 squid.spec, 1.121, 1.122 Message-ID: <20090713115428.40AFA11C0493@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28721 Modified Files: .cvsignore sources squid.spec Log Message: 3.0.STABLE16 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 9 May 2009 22:06:08 -0000 1.41 +++ .cvsignore 13 Jul 2009 11:53:57 -0000 1.42 @@ -1 +1,3 @@ -squid-3.0.STABLE15.tar.bz2 +squid-3.0.STABLE16.tar.bz2 +b9052.patch +b9053.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 9 May 2009 22:06:08 -0000 1.44 +++ sources 13 Jul 2009 11:53:57 -0000 1.45 @@ -1 +1,3 @@ -5830a3c8e8d64f3483b38093da2a96fa squid-3.0.STABLE15.tar.bz2 +aa039a2c75404a496f0e99a278599e00 squid-3.0.STABLE16.tar.bz2 +8039be92fb6ca5a71dd11b7d99c841fa b9052.patch +edcea01a412a23fb0ceaddf0eaa16c8b b9053.patch Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-11/squid.spec,v retrieving revision 1.121 retrieving revision 1.122 diff -u -p -r1.121 -r1.122 --- squid.spec 23 May 2009 11:52:39 -0000 1.121 +++ squid.spec 13 Jul 2009 11:53:57 -0000 1.122 @@ -3,7 +3,7 @@ ## % define __find_requires %{SOURCE99} Name: squid -Version: 3.0.STABLE15 +Version: 3.0.STABLE16 Release: 2%{?dist} Summary: The Squid proxy caching server Epoch: 7 @@ -22,6 +22,8 @@ Source98: perl-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/bXXXX.patch +Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9052.patch +Patch002: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9053.patch # External patches @@ -34,7 +36,6 @@ Patch203: squid-3.0.STABLE1-build.patch Patch204: squid-3.0.STABLE1-perlpath.patch Patch205: squid-3.0.STABLE15-smb-path.patch Patch208: squid-3.0.STABLE7-from_manpg.patch -Patch209: squid-3.0.STABLE13-gcc44.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: bash >= 2.0 @@ -60,13 +61,14 @@ lookup program (dnsserver), a program fo %prep %setup -q +%patch001 -p0 -b .b9052 +%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build %patch204 -p1 -b .perlpath %patch205 -p1 -b .smb-path %patch208 -p1 -b .from_manpg -%patch209 -p1 -b .gcc44 %build export CXXFLAGS="-fPIE %{optflags}" ; export CFLAGS="-fPIE -Os -g -pipe -fsigned-char %{optflags}" ; export LDFLAGS="-pie" ; @@ -342,6 +344,12 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 +- fixed patch parameter of bXXX patches + +* Mon Jun 29 2009 Henrik Nordstrom 3.0.STABLE16-1 +- Upgrade to 3.0.STABLE16 + * Sat May 23 2009 Henrik Nordstrom - 3.0.STABLE15-2 - Bug #453304 - Squid requires restart after Network Manager connection setup From hno at fedoraproject.org Mon Jul 13 11:55:58 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 11:55:58 +0000 (UTC) Subject: rpms/squid/F-10 .cvsignore, 1.39, 1.40 sources, 1.43, 1.44 squid.spec, 1.116, 1.117 Message-ID: <20090713115558.E008E11C0493@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29154 Modified Files: .cvsignore sources squid.spec Log Message: 3.0.STABLE16 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 23 May 2009 12:05:17 -0000 1.39 +++ .cvsignore 13 Jul 2009 11:55:28 -0000 1.40 @@ -1 +1,3 @@ -squid-3.0.STABLE15.tar.bz2 +squid-3.0.STABLE16.tar.bz2 +b9052.patch +b9053.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 23 May 2009 12:05:17 -0000 1.43 +++ sources 13 Jul 2009 11:55:28 -0000 1.44 @@ -1 +1,3 @@ -5830a3c8e8d64f3483b38093da2a96fa squid-3.0.STABLE15.tar.bz2 +aa039a2c75404a496f0e99a278599e00 squid-3.0.STABLE16.tar.bz2 +8039be92fb6ca5a71dd11b7d99c841fa b9052.patch +edcea01a412a23fb0ceaddf0eaa16c8b b9053.patch Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/squid.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- squid.spec 23 May 2009 12:05:17 -0000 1.116 +++ squid.spec 13 Jul 2009 11:55:28 -0000 1.117 @@ -3,7 +3,7 @@ ## % define __find_requires %{SOURCE99} Name: squid -Version: 3.0.STABLE15 +Version: 3.0.STABLE16 Release: 2%{?dist} Summary: The Squid proxy caching server Epoch: 7 @@ -22,6 +22,8 @@ Source98: perl-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/bXXXX.patch +Patch001: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9052.patch +Patch002: http://www.squid-cache.org/Versions/v3/3.0/changesets/b9053.patch # External patches @@ -59,6 +61,8 @@ lookup program (dnsserver), a program fo %prep %setup -q +%patch001 -p0 -b .b9052 +%patch002 -p0 -b .b9053 %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build @@ -340,7 +344,10 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog -* Sat May 23 2009 Henrik Nordstrom - 3.0.STABLE15-2 +* Mon Jul 13 2009 Henrik Nordstrom - 7:3.0.STABLE16-2 +- Upgrade to latest upstream + +* Sat May 23 2009 Henrik Nordstrom - 7:3.0.STABLE15-2 - Upgrade to 3.0.STABLE15 - Bug #453304 - Squid requires restart after Network Manager connection setup From hno at fedoraproject.org Mon Jul 13 11:57:06 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 11:57:06 +0000 (UTC) Subject: rpms/squid/F-10 branch,1.1,1.2 Message-ID: <20090713115706.154E211C0493@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29525 Modified Files: branch Log Message: 3.0.STABLE16 Index: branch =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/branch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- branch 7 Nov 2008 04:18:07 -0000 1.1 +++ branch 13 Jul 2009 11:57:05 -0000 1.2 @@ -1 +1 @@ -F-10 +F-11 From hno at fedoraproject.org Mon Jul 13 11:57:58 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 11:57:58 +0000 (UTC) Subject: rpms/squid/F-10 branch,1.2,1.3 Message-ID: <20090713115758.9897D11C0493@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29618 Modified Files: branch Log Message: 3.0.STABLE16 Index: branch =================================================================== RCS file: /cvs/pkgs/rpms/squid/F-10/branch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- branch 13 Jul 2009 11:57:05 -0000 1.2 +++ branch 13 Jul 2009 11:57:28 -0000 1.3 @@ -1 +1 @@ -F-11 +F-10 From pkgdb at fedoraproject.org Mon Jul 13 12:20:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:20:57 +0000 Subject: [pkgdb] mbuffer: fab has requested watchcommits Message-ID: <20090713122057.9557810F85A@bastion2.fedora.phx.redhat.com> fab has requested the watchcommits acl on mbuffer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:20:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:20:58 +0000 Subject: [pkgdb] mbuffer: fab has requested commit Message-ID: <20090713122058.1EA4210F888@bastion2.fedora.phx.redhat.com> fab has requested the commit acl on mbuffer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:20:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:20:58 +0000 Subject: [pkgdb] mbuffer: fab has requested approveacls Message-ID: <20090713122058.B3D4810F89A@bastion2.fedora.phx.redhat.com> fab has requested the approveacls acl on mbuffer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:21:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:21:03 +0000 Subject: [pkgdb] mbuffer: fab has requested watchbugzilla Message-ID: <20090713122103.65D2110F8AD@bastion2.fedora.phx.redhat.com> fab has requested the watchbugzilla acl on mbuffer (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:21:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:21:10 +0000 Subject: [pkgdb] mbuffer: fab has requested watchcommits Message-ID: <20090713122110.3D6D510F85A@bastion2.fedora.phx.redhat.com> fab has requested the watchcommits acl on mbuffer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:21:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:21:11 +0000 Subject: [pkgdb] mbuffer: fab has requested commit Message-ID: <20090713122111.58E3910F8B2@bastion2.fedora.phx.redhat.com> fab has requested the commit acl on mbuffer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:21:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:21:13 +0000 Subject: [pkgdb] mbuffer: fab has requested approveacls Message-ID: <20090713122113.9890F10F8B5@bastion2.fedora.phx.redhat.com> fab has requested the approveacls acl on mbuffer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Mon Jul 13 12:21:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 12:21:15 +0000 Subject: [pkgdb] mbuffer: fab has requested watchbugzilla Message-ID: <20090713122115.BC0AE10F8B9@bastion2.fedora.phx.redhat.com> fab has requested the watchbugzilla acl on mbuffer (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From atkac at fedoraproject.org Mon Jul 13 12:57:58 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Mon, 13 Jul 2009 12:57:58 +0000 (UTC) Subject: rpms/bind/F-11 bind.spec, 1.317, 1.318 named.init, 1.72, 1.73 named.sysconfig, 1.10, 1.11 Message-ID: <20090713125758.E60A911C0493@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10689 Modified Files: bind.spec named.init named.sysconfig Log Message: - fix broken symlinks in bind-libs (#509635) - fix typos in /etc/sysconfig/named (#509650) - add DEBUG option to /etc/sysconfig/named (#510283) Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/bind.spec,v retrieving revision 1.317 retrieving revision 1.318 diff -u -p -r1.317 -r1.318 --- bind.spec 24 Jun 2009 14:51:46 -0000 1.317 +++ bind.spec 13 Jul 2009 12:57:28 -0000 1.318 @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -426,6 +426,12 @@ fi %postun libs -p /sbin/ldconfig +# bind-libs between 32:9.6.1-0.1.b1 and 32:9.6.1-0.4.rc1 have bigger SOnames +# than current bind - https://bugzilla.redhat.com/show_bug.cgi?id=509635. +# Remove this trigger when SOnames get bigger. +%triggerpostun -n bind-libs -- bind-libs > 32:9.6.1-0.1.b1 +/sbin/ldconfig + %post chroot if [ "$1" -gt 0 ]; then [ -e %{chroot_prefix}/dev/random ] || \ @@ -577,6 +583,11 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Mon Jul 13 2009 Adam Tkac 32:9.6.1-3 +- fix broken symlinks in bind-libs (#509635) +- fix typos in /etc/sysconfig/named (#509650) +- add DEBUG option to /etc/sysconfig/named (#510283) + * Wed Jun 24 2009 Adam Tkac 32:9.6.1-2 - improved "chroot automount" patches (#504596) - host should fail if specified server doesn't respond (#507469) Index: named.init =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/named.init,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- named.init 24 Jun 2009 14:51:47 -0000 1.72 +++ named.init 13 Jul 2009 12:57:28 -0000 1.73 @@ -47,6 +47,17 @@ fi [ /etc/sysconfig/dnssec -nt /etc/named.conf ] && \ /usr/sbin/dnssec-configure -b --norestart --dnssec="$DNSSEC" --dlv="$DLV" +# Enable/disable debugging +if [ "x$DEBUG" = 'xyes' ]; then + chown named.named /var/named + [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && + setsebool named_write_master_zones 1 +else + chown root.named /var/named + [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && + setsebool named_write_master_zones 0 +fi + ROOTDIR_MOUNT='/etc/named /etc/pki/dnssec-keys /var/named /etc/named.conf /etc/named.dnssec.keys /etc/named.rfc1912.zones /etc/rndc.conf /etc/rndc.key /usr/lib64/bind /usr/lib/bind' Index: named.sysconfig =================================================================== RCS file: /cvs/pkgs/rpms/bind/F-11/named.sysconfig,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- named.sysconfig 24 Jun 2009 14:51:47 -0000 1.10 +++ named.sysconfig 13 Jul 2009 12:57:28 -0000 1.11 @@ -13,7 +13,7 @@ # - /var/named # - /etc/pki/dnssec-keys # - /etc/named -# - /usr/lib64/bind of /usr/lib/bind (architecture dependant) +# - /usr/lib64/bind or /usr/lib/bind (architecture dependent) # # Those files are mounted as well if target file doesn't exist in # chroot. @@ -28,3 +28,8 @@ # at startup. Don't add -t here, use ROOTDIR instead. # # KEYTAB_FILE="/dir/file" -- Specify named service keytab file (for GSS-TSIG) +# +# DEBUG="yes|no" -- This option controls if you would like to debug +# named process. If you set this option to "yes" then +# /var/named/ directory become writable by named user +# and named will be able to write core dumps there. From mmaslano at fedoraproject.org Mon Jul 13 13:02:36 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 13 Jul 2009 13:02:36 +0000 (UTC) Subject: rpms/anacron/F-11 anacron.spec,1.65,1.66 Message-ID: <20090713130236.0F3CA11C0493@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/anacron/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11747 Modified Files: anacron.spec Log Message: * Tue Jun 23 2009 Marcela Ma??l????ov?? 2.3-76 - 507598 test whether /var/spool/anacron/cron.daily exists Index: anacron.spec =================================================================== RCS file: /cvs/pkgs/rpms/anacron/F-11/anacron.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- anacron.spec 15 May 2009 12:12:52 -0000 1.65 +++ anacron.spec 13 Jul 2009 13:02:05 -0000 1.66 @@ -1,7 +1,7 @@ Summary: A cron-like program that can run jobs lost during downtime Name: anacron Version: 2.3 -Release: 75%{?dist} +Release: 76%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://packages.debian.org/stable/source/anacron @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) /etc/cron.hourly/0anacron %changelog +* Tue Jun 23 2009 Marcela Ma??l????ov?? 2.3-76 +- 507598 test whether /var/spool/anacron/cron.daily exists + * Fri May 15 2009 Marcela Ma??l????ov?? 2.3-75 - 500694 missing enviroments values in crontab, which runs cron.{daily,weekly...} From atkac at fedoraproject.org Mon Jul 13 13:03:12 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Mon, 13 Jul 2009 13:03:12 +0000 (UTC) Subject: rpms/bind/devel bind.spec, 1.317, 1.318 named.init, 1.72, 1.73 named.sysconfig, 1.10, 1.11 Message-ID: <20090713130312.510F711C0493@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11902 Modified Files: bind.spec named.init named.sysconfig Log Message: - fix broken symlinks in bind-libs (#509635) - fix typos in /etc/sysconfig/named (#509650) - add DEBUG option to /etc/sysconfig/named (#510283) Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/bind.spec,v retrieving revision 1.317 retrieving revision 1.318 diff -u -p -r1.317 -r1.318 --- bind.spec 24 Jun 2009 14:51:55 -0000 1.317 +++ bind.spec 13 Jul 2009 13:02:41 -0000 1.318 @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -426,6 +426,12 @@ fi %postun libs -p /sbin/ldconfig +# bind-libs between 32:9.6.1-0.1.b1 and 32:9.6.1-0.4.rc1 have bigger SOnames +# than current bind - https://bugzilla.redhat.com/show_bug.cgi?id=509635. +# Remove this trigger when SOnames get bigger. +%triggerpostun -n bind-libs -- bind-libs > 32:9.6.1-0.1.b1 +/sbin/ldconfig + %post chroot if [ "$1" -gt 0 ]; then [ -e %{chroot_prefix}/dev/random ] || \ @@ -577,6 +583,11 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Mon Jul 13 2009 Adam Tkac 32:9.6.1-3 +- fix broken symlinks in bind-libs (#509635) +- fix typos in /etc/sysconfig/named (#509650) +- add DEBUG option to /etc/sysconfig/named (#510283) + * Wed Jun 24 2009 Adam Tkac 32:9.6.1-2 - improved "chroot automount" patches (#504596) - host should fail if specified server doesn't respond (#507469) Index: named.init =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/named.init,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- named.init 24 Jun 2009 14:51:55 -0000 1.72 +++ named.init 13 Jul 2009 13:02:42 -0000 1.73 @@ -47,6 +47,17 @@ fi [ /etc/sysconfig/dnssec -nt /etc/named.conf ] && \ /usr/sbin/dnssec-configure -b --norestart --dnssec="$DNSSEC" --dlv="$DLV" +# Enable/disable debugging +if [ "x$DEBUG" = 'xyes' ]; then + chown named.named /var/named + [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && + setsebool named_write_master_zones 1 +else + chown root.named /var/named + [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && + setsebool named_write_master_zones 0 +fi + ROOTDIR_MOUNT='/etc/named /etc/pki/dnssec-keys /var/named /etc/named.conf /etc/named.dnssec.keys /etc/named.rfc1912.zones /etc/rndc.conf /etc/rndc.key /usr/lib64/bind /usr/lib/bind' Index: named.sysconfig =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/named.sysconfig,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- named.sysconfig 24 Jun 2009 14:51:55 -0000 1.10 +++ named.sysconfig 13 Jul 2009 13:02:42 -0000 1.11 @@ -13,7 +13,7 @@ # - /var/named # - /etc/pki/dnssec-keys # - /etc/named -# - /usr/lib64/bind of /usr/lib/bind (architecture dependant) +# - /usr/lib64/bind or /usr/lib/bind (architecture dependent) # # Those files are mounted as well if target file doesn't exist in # chroot. @@ -28,3 +28,8 @@ # at startup. Don't add -t here, use ROOTDIR instead. # # KEYTAB_FILE="/dir/file" -- Specify named service keytab file (for GSS-TSIG) +# +# DEBUG="yes|no" -- This option controls if you would like to debug +# named process. If you set this option to "yes" then +# /var/named/ directory become writable by named user +# and named will be able to write core dumps there. From msivak at fedoraproject.org Mon Jul 13 13:24:39 2009 From: msivak at fedoraproject.org (=?utf-8?q?Martin_Siv=C3=A1k?=) Date: Mon, 13 Jul 2009 13:24:39 +0000 (UTC) Subject: rpms/firstaidkit/devel firstaidkit.spec,1.23,1.24 sources,1.7,1.8 Message-ID: <20090713132439.D358511C0497@cvs1.fedora.phx.redhat.com> Author: msivak Update of /cvs/extras/rpms/firstaidkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17254 Modified Files: firstaidkit.spec sources Log Message: new version Index: firstaidkit.spec =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/firstaidkit.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- firstaidkit.spec 13 Jul 2009 11:48:54 -0000 1.23 +++ firstaidkit.spec 13 Jul 2009 13:24:39 -0000 1.24 @@ -4,7 +4,7 @@ Name: firstaidkit Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: System Rescue Tool Group: Applications/System @@ -232,6 +232,9 @@ desktop-file-install --vendor="fedora" - #%{_libdir}/firstaidkit/plugins/rpm/* %changelog +* Mon Jul 13 2009 Martin Sivak - 0.2.3-2 +- Fixed firstaidkit-qs included.. + * Mon Jul 13 2009 Martin Sivak - 0.2.3-1 - Add firstaidkit-qs script - Do not build undelparts plugin since we ignore it anyways Index: sources =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 13 Jul 2009 11:48:54 -0000 1.7 +++ sources 13 Jul 2009 13:24:39 -0000 1.8 @@ -1 +1 @@ -0465757e71024cc415b9ac9e1cea80bb firstaidkit-0.2.3.tar.bz2 +2a16feb6d90613c7a8782928932e30a6 firstaidkit-0.2.3.tar.bz2 From mclasen at fedoraproject.org Mon Jul 13 13:27:01 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 13 Jul 2009 13:27:01 +0000 (UTC) Subject: rpms/gtk2/devel entry-include-fix.patch, NONE, 1.1 gtk2.spec, 1.385, 1.386 Message-ID: <20090713132701.5B18E11C0497@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17077 Modified Files: gtk2.spec Added Files: entry-include-fix.patch Log Message: fix a problem with gtkentry.h entry-include-fix.patch: --- NEW FILE entry-include-fix.patch --- diff --git a/gtk/gtkentrybuffer.h b/gtk/gtkentrybuffer.h index cf2ddda..275aaa1 100644 --- a/gtk/gtkentrybuffer.h +++ b/gtk/gtkentrybuffer.h @@ -17,7 +17,7 @@ * Boston, MA 02111-1307, USA. */ -#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.385 retrieving revision 1.386 diff -u -p -r1.385 -r1.386 --- gtk2.spec 11 Jul 2009 01:23:45 -0000 1.385 +++ gtk2.spec 13 Jul 2009 13:27:01 -0000 1.386 @@ -17,7 +17,7 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -29,6 +29,8 @@ Source3: im-cedilla.conf Patch0: gtk+-2.13.5-lib64.patch # http://bugzilla.redhat.com/show_bug.cgi?id=478400 Patch1: default_printer.patch +# from upstream +Patch2: entry-include-fix.patch BuildRequires: atk-devel >= %{atk_version} BuildRequires: pango-devel >= %{pango_version} @@ -141,6 +143,7 @@ This package contains developer document %patch0 -p1 -b .lib64 %patch1 -p0 -b .default-printer +%patch2 -p1 -b .entry-include-fix # make sure that gtkmarshalers.{c, h} get regenerated during the build # - caused by print_authentication.patch @@ -376,6 +379,9 @@ fi %changelog +* Mon Jul 13 2009 Matthias Clasen - 2.17.4-2 +- Fix a problem with gtkentry.h + * Fri Jul 10 2009 Matthias Clasen - 2.17.4-1 - Update to 2.17.4 From msivak at fedoraproject.org Mon Jul 13 13:39:32 2009 From: msivak at fedoraproject.org (=?utf-8?q?Martin_Siv=C3=A1k?=) Date: Mon, 13 Jul 2009 13:39:32 +0000 (UTC) Subject: rpms/firstaidkit/devel firstaidkit.spec,1.24,1.25 sources,1.8,1.9 Message-ID: <20090713133932.8697211C0497@cvs1.fedora.phx.redhat.com> Author: msivak Update of /cvs/extras/rpms/firstaidkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20472 Modified Files: firstaidkit.spec sources Log Message: new version Index: firstaidkit.spec =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/firstaidkit.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- firstaidkit.spec 13 Jul 2009 13:24:39 -0000 1.24 +++ firstaidkit.spec 13 Jul 2009 13:39:01 -0000 1.25 @@ -4,7 +4,7 @@ Name: firstaidkit Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: System Rescue Tool Group: Applications/System @@ -232,6 +232,9 @@ desktop-file-install --vendor="fedora" - #%{_libdir}/firstaidkit/plugins/rpm/* %changelog +* Mon Jul 13 2009 Martin Sivak - 0.2.3-3 +- Add timeout to firstaidkit-qs + * Mon Jul 13 2009 Martin Sivak - 0.2.3-2 - Fixed firstaidkit-qs included.. Index: sources =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Jul 2009 13:24:39 -0000 1.8 +++ sources 13 Jul 2009 13:39:01 -0000 1.9 @@ -1 +1 @@ -2a16feb6d90613c7a8782928932e30a6 firstaidkit-0.2.3.tar.bz2 +8f6b71d0d8089553d27ded79ca1ed991 firstaidkit-0.2.3.tar.bz2 From mbarnes at fedoraproject.org Mon Jul 13 13:49:51 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 13:49:51 +0000 (UTC) Subject: rpms/gtkhtml3/devel .cvsignore, 1.97, 1.98 gtkhtml3.spec, 1.153, 1.154 sources, 1.97, 1.98 Message-ID: <20090713134951.F2F2D11C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gtkhtml3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22939 Modified Files: .cvsignore gtkhtml3.spec sources Log Message: * Mon Jul 13 2009 Matthew Barnes - 3.27.4-1.fc12 - Update to 3.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/.cvsignore,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- .cvsignore 15 Jun 2009 15:17:57 -0000 1.97 +++ .cvsignore 13 Jul 2009 13:49:21 -0000 1.98 @@ -1 +1 @@ -gtkhtml-3.27.3.tar.bz2 +gtkhtml-3.27.4.tar.bz2 Index: gtkhtml3.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/gtkhtml3.spec,v retrieving revision 1.153 retrieving revision 1.154 diff -u -p -r1.153 -r1.154 --- gtkhtml3.spec 1 Jul 2009 10:41:21 -0000 1.153 +++ gtkhtml3.spec 13 Jul 2009 13:49:21 -0000 1.154 @@ -6,8 +6,8 @@ ### Abstract ### Name: gtkhtml3 -Version: 3.27.3 -Release: 2%{?dist} +Version: 3.27.4 +Release: 1%{?dist} Group: System Environment/Libraries Summary: GtkHTML library License: LGPLv2+ and GPLv2 @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jul 13 2009 Matthew Barnes - 3.27.4-1.fc12 +- Update to 3.27.4 + * Wed Jul 01 2009 Milan Crha - 3.27.3-2.fc12 - Rebuild against newer gcc Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/sources,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- sources 15 Jun 2009 15:17:57 -0000 1.97 +++ sources 13 Jul 2009 13:49:21 -0000 1.98 @@ -1 +1 @@ -bcd51a6ccf3bdae9adcdd0940586de50 gtkhtml-3.27.3.tar.bz2 +a6d9698d337dcbf640ff002d11e5bdd0 gtkhtml-3.27.4.tar.bz2 From mbarnes at fedoraproject.org Mon Jul 13 13:50:13 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 13:50:13 +0000 (UTC) Subject: rpms/evolution-exchange/devel .cvsignore, 1.44, 1.45 evolution-exchange.spec, 1.64, 1.65 sources, 1.44, 1.45 Message-ID: <20090713135013.CF5FC11C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-exchange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23238 Modified Files: .cvsignore evolution-exchange.spec sources Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/.cvsignore,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- .cvsignore 15 Jun 2009 15:48:51 -0000 1.44 +++ .cvsignore 13 Jul 2009 13:49:43 -0000 1.45 @@ -1 +1 @@ -evolution-exchange-2.27.3.tar.bz2 +evolution-exchange-2.27.4.tar.bz2 Index: evolution-exchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/evolution-exchange.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- evolution-exchange.spec 1 Jul 2009 11:10:15 -0000 1.64 +++ evolution-exchange.spec 13 Jul 2009 13:49:43 -0000 1.65 @@ -17,8 +17,8 @@ ### Abstract ### Name: evolution-exchange -Version: 2.27.3 -Release: 2%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Group: Applications/Productivity Summary: Evolution plugin to interact with MS Exchange Server License: GPLv2+ @@ -121,6 +121,9 @@ gconftool-2 --makefile-install-rule %{_s %{_sysconfdir}/gconf/schemas/apps_exchange_addressbook-%{evo_major}.schemas %changelog +* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 +- Update to 2.27.4 + * Wed Jul 01 2009 Milan Crha - 2.27.3-2.fc12 - Rebuild against newer gcc Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 15 Jun 2009 15:48:51 -0000 1.44 +++ sources 13 Jul 2009 13:49:43 -0000 1.45 @@ -1 +1 @@ -2f3af44b63e4d950cda26cba62576402 evolution-exchange-2.27.3.tar.bz2 +db9fbce92407af0af5a14c167c2b3e5c evolution-exchange-2.27.4.tar.bz2 From ausil at fedoraproject.org Mon Jul 13 13:50:27 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Mon, 13 Jul 2009 13:50:27 +0000 (UTC) Subject: rpms/fedora-packager/devel .cvsignore, 1.7, 1.8 fedora-packager.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090713135027.716A811C0497@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23672 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 24 Jun 2009 05:34:24 -0000 1.7 +++ .cvsignore 13 Jul 2009 13:49:57 -0000 1.8 @@ -1 +1 @@ -fedora-packager-0.3.4.tar.bz2 +fedora-packager-0.3.5.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/fedora-packager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fedora-packager.spec 6 Jul 2009 20:37:29 -0000 1.9 +++ fedora-packager.spec 13 Jul 2009 13:49:57 -0000 1.10 @@ -1,6 +1,6 @@ Name: fedora-packager -Version: 0.3.4 -Release: 3%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -45,9 +45,14 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fedoradev-pkgowners %{_bindir}/fedora-cert %{_bindir}/fedora-getsvn +%{_bindir}/rpmbuild-md5 %changelog +* Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 +- add new rpmbuild-md5 script to build old style hash srpms +- it is a wrapper around rpmbuild + * Mon Jul 6 2009 Tom "spot" Callaway - 0.3.4-3 - add Requires: redhat-rpm-config to be sure fedora packagers are using all available macros Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 05:34:24 -0000 1.7 +++ sources 13 Jul 2009 13:49:57 -0000 1.8 @@ -1 +1 @@ -b464499e044ed8318cd3bc2951e07b8c fedora-packager-0.3.4.tar.bz2 +fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 From mbarnes at fedoraproject.org Mon Jul 13 13:50:19 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 13:50:19 +0000 (UTC) Subject: rpms/evolution-mapi/devel .cvsignore, 1.9, 1.10 evolution-mapi.spec, 1.11, 1.12 sources, 1.9, 1.10 evolution-mapi-0.27.3-fix-pkg-config.patch, 1.2, NONE Message-ID: <20090713135019.16A0511C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23333 Modified Files: .cvsignore evolution-mapi.spec sources Removed Files: evolution-mapi-0.27.3-fix-pkg-config.patch Log Message: * Mon Jul 13 2009 Matthew Barnes - 0.27.4-1 - Update to 0.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 15 Jun 2009 15:49:09 -0000 1.9 +++ .cvsignore 13 Jul 2009 13:49:48 -0000 1.10 @@ -1 +1 @@ -evolution-mapi-0.27.3.tar.bz2 +evolution-mapi-0.27.4.tar.bz2 Index: evolution-mapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- evolution-mapi.spec 3 Jul 2009 00:22:01 -0000 1.11 +++ evolution-mapi.spec 13 Jul 2009 13:49:48 -0000 1.12 @@ -11,8 +11,8 @@ ### Abstract ### Name: evolution-mapi -Version: 0.27.3 -Release: 4%{?dist} +Version: 0.27.4 +Release: 1%{?dist} Group: Applications/Productivity Summary: Evolution extension for MS Exchange 2007 servers License: LGPLv2+ @@ -20,11 +20,6 @@ URL: http://www.gnome.org/projects/evolu Source: http://ftp.gnome.org/pub/gnome/sources/evolution-mapi/0.25/evolution-mapi-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -### Patches ### - -# Remove redundant library flag from pkg-config file. */ -Patch1: evolution-mapi-0.27.3-fix-pkg-config.patch - ### Dependencies ### Requires: evolution >= %{evo_version} @@ -56,7 +51,6 @@ Development files needed for building th %prep %setup -q -%patch1 -p1 -b .fix-pkg-config %build @@ -113,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexchangemapi-1.0.pc %changelog +* Mon Jul 13 2009 Matthew Barnes - 0.27.4-1 +- Update to 0.27.4 + * Thu Jul 02 2009 Matthew Barnes - 0.27.3-4 - Remove redundant library flag from pkg-config file. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 15 Jun 2009 15:49:09 -0000 1.9 +++ sources 13 Jul 2009 13:49:48 -0000 1.10 @@ -1 +1 @@ -ab34ea1c1925e73856e0af25e5932a84 evolution-mapi-0.27.3.tar.bz2 +48956fb9027cb06ec8acde465c5b6aac evolution-mapi-0.27.4.tar.bz2 --- evolution-mapi-0.27.3-fix-pkg-config.patch DELETED --- From npajkovs at fedoraproject.org Mon Jul 13 13:54:00 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Mon, 13 Jul 2009 13:54:00 +0000 (UTC) Subject: rpms/inn/devel inn.spec,1.65,1.66 innd.init,1.7,1.8 Message-ID: <20090713135400.4C20A11C0497@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/inn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24765 Modified Files: inn.spec innd.init Log Message: fix ugly inn.spec and init script Index: inn.spec =================================================================== RCS file: /cvs/extras/rpms/inn/devel/inn.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- inn.spec 24 Jun 2009 08:37:25 -0000 1.65 +++ inn.spec 13 Jul 2009 13:53:29 -0000 1.66 @@ -1,7 +1,7 @@ Summary: The InterNetNews system, an Usenet news server Name: inn Version: 2.5.0 -Release: 2 +Release: 3%{?dist} #see LICENSE file for details License: GPL+ and BSD and MIT and Public Domain Group: System Environment/Daemons @@ -28,7 +28,8 @@ BuildRequires: perl(ExtUtils::Embed) Requires(pre): shadow-utils Requires: chkconfig, grep, coreutils, sed Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -Requires: bash >= 2.0, inews +Requires: bash >= 2.0 +Requires(post): inews # XXX white out bogus perl requirement for now Provides: perl(::usr/lib/innshellvars.pl) = %{version}-%{release} @@ -193,30 +194,8 @@ mkdir $RPM_BUILD_ROOT/%{_sysconfdir}/ld. echo '%{_libdir}/news/lib' > $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d/inn-%{_arch}.conf - -#Build filelist rm -rf $RPM_BUILD_ROOT/usr/lib/news/include -echo "%defattr(-,news,news)" > files.list -find $RPM_BUILD_ROOT -type f -or -type l | \ - sed -e "s|$RPM_BUILD_ROOT||g" | \ - sed 's|^/etc/cron|%config(noreplace) %attr(-,root,root) &|' | \ - sed 's|^/etc/rc.d|%config(noreplace) %attr(-,root,root) &|' | \ - sed 's|^/etc|%config(noreplace) &|' | \ - sed 's|^/etc/news|%config(noreplace) %attr(0640,news,news) &|' | \ - sed 's|^/var/lib/news/|%config(noreplace) &|' | \ - sed 's|.*innshellvar|%config(noreplace) &|' | \ - sed 's|/var/log/news|%ghost &|' | \ - sed 's|/usr/lib/news/bin/inndstart$|%attr(4550,root,news) /usr/lib/news/bin/inndstart|' | \ - sed 's|/usr/lib/news/bin/startinnfeed$|%attr(4550,root,news) /usr/lib/news/bin/startinnfeed|' | \ - sed 's|/usr/lib/news/bin/rnews$|%attr(4550,uucp,news) /usr/lib/news/bin/rnews|' > files.list -# echo "/usr/lib/news/bin/filter/*.pyc" >> files.list -# echo "/usr/lib/news/bin/filter/*.pyo" >> files.list - (echo "%defattr(-,news,news)" ; grep -v inews files.list | \ - egrep -v "\.(h|so|a|la)$" | \ - grep -v "news/inn.conf" | \ - grep -v "/man/") > files.main - echo "%defattr(-,root,root)" > files.devel - egrep "\.(h|so)$" files.list >> files.devel + %clean rm -rf $RPM_BUILD_ROOT @@ -225,6 +204,7 @@ rm -f files.list files.main files.devel %post /sbin/ldconfig /sbin/chkconfig --add innd +#su -m news -c '/usr/lib/news/bin/makehistory' su -m news -c '/usr/lib/news/bin/makedbz -i -o' umask 002 @@ -302,22 +282,220 @@ if [ "$1" -ge 1 ]; then fi exit 0 -%files -f files.main +%files %defattr(-,news,news,-) +/usr/bin/rnews + +# /etc config files plus cron config +%config(noreplace) /etc/rc.news +%config(noreplace) /etc/ld.so.conf.d/inn-%{_arch}.conf +%config(noreplace) %attr(-,root,root) /etc/rc.d/init.d/innd +%config(noreplace) %attr(-,root,root) /etc/cron.hourly/inn-cron-rnews +%config(noreplace) %attr(-,root,root) /etc/cron.hourly/inn-cron-nntpsend +%config(noreplace) %attr(-,root,root) /etc/cron.daily/inn-cron-expire + +# /etc/news config files +%dir %{_sysconfdir}/news +%config(noreplace) %{_sysconfdir}/news/passwd.nntp +%config(noreplace) %{_sysconfdir}/news/send-uucp.cf +%config(noreplace) %{_sysconfdir}/news/actsync.cfg +%config(noreplace) %{_sysconfdir}/news/motd.news +%config(noreplace) %{_sysconfdir}/news/expire.ctl +%config(noreplace) %{_sysconfdir}/news/actsync.ign +%config(noreplace) %{_sysconfdir}/news/innreport.conf +%config(noreplace) %{_sysconfdir}/news/distrib.pats +%config(noreplace) %{_sysconfdir}/news/buffindexed.conf +%config(noreplace) %{_sysconfdir}/news/innwatch.ctl +%config(noreplace) %{_sysconfdir}/news/nntpsend.ctl +%config(noreplace) %{_sysconfdir}/news/innfeed.conf +%config(noreplace) %{_sysconfdir}/news/nnrpd.track +%config(noreplace) %{_sysconfdir}/news/control.ctl.local +%config(noreplace) %{_sysconfdir}/news/storage.conf +%config(noreplace) %{_sysconfdir}/news/moderators +%config(noreplace) %{_sysconfdir}/news/news2mail.cf +%config(noreplace) %{_sysconfdir}/news/cycbuff.conf +%config(noreplace) %{_sysconfdir}/news/subscriptions +%config(noreplace) %{_sysconfdir}/news/control.ctl +%config(noreplace) %{_sysconfdir}/news/localgroups +%config(noreplace) %{_sysconfdir}/news/.profile +%config(noreplace) %{_sysconfdir}/news/nocem.ctl +%config(noreplace) %{_sysconfdir}/news/incoming.conf +%config(noreplace) %{_sysconfdir}/news/radius.conf +%config(noreplace) %{_sysconfdir}/news/ovdb.conf +%config(noreplace) %{_sysconfdir}/news/newsfeeds +%config(noreplace) %{_sysconfdir}/news/readers.conf + +%dir /var/lib/news +%config(noreplace) /var/lib/news/active.times +%config(noreplace) /var/lib/news/distributions +%config(noreplace) /var/lib/news/newsgroups +%config(noreplace) /var/lib/news/active +%config(noreplace) /var/lib/news/subscriptions +%config(noreplace) /var/lib/news/history + %dir /usr/lib/news %dir /usr/lib/news/bin -%dir /usr/lib/news/doc -%dir /usr/lib/news/lib -%dir /usr/lib/news/bin/rnews.libexec +/usr/lib/news/bin/controlbatch +%attr(4510,root,news) /usr/lib/news/bin/innbind +/usr/lib/news/bin/docheckgroups +/usr/lib/news/bin/imapfeed +/usr/lib/news/bin/send-nntp +/usr/lib/news/bin/actmerge +/usr/lib/news/bin/ovdb_server +/usr/lib/news/bin/filechan +/usr/lib/news/bin/ninpaths +/usr/lib/news/bin/mod-active +/usr/lib/news/bin/news2mail +/usr/lib/news/bin/innconfval +/usr/lib/news/bin/shlock +/usr/lib/news/bin/nnrpd +/usr/lib/news/bin/controlchan +/usr/lib/news/bin/procbatch +/usr/lib/news/bin/expire +/usr/lib/news/bin/convdate +/usr/lib/news/bin/pullnews +/usr/lib/news/bin/archive +/usr/lib/news/bin/cnfsstat +/usr/lib/news/bin/grephistory +/usr/lib/news/bin/send-ihave +/usr/lib/news/bin/tinyleaf +/usr/lib/news/bin/cvtbatch +/usr/lib/news/bin/expirerm +%attr(4550,uucp,news) /usr/lib/news/bin/rnews +/usr/lib/news/bin/innxmit +/usr/lib/news/bin/actsyncd +/usr/lib/news/bin/shrinkfile +/usr/lib/news/bin/makedbz +/usr/lib/news/bin/actsync +/usr/lib/news/bin/pgpverify +/usr/lib/news/bin/inndf +/usr/lib/news/bin/scanlogs +/usr/lib/news/bin/simpleftp +/usr/lib/news/bin/ovdb_init +/usr/lib/news/bin/ctlinnd +/usr/lib/news/bin/innstat +/usr/lib/news/bin/send-uucp +/usr/lib/news/bin/buffchan +/usr/lib/news/bin/perl-nocem +/usr/lib/news/bin/scanspool +/usr/lib/news/bin/expireover +/usr/lib/news/bin/batcher +/usr/lib/news/bin/fastrm +/usr/lib/news/bin/innmail +/usr/lib/news/bin/innxbatch +/usr/lib/news/bin/buffindexed_d +/usr/lib/news/bin/nntpget +/usr/lib/news/bin/cnfsheadconf +/usr/lib/news/bin/ovdb_stat +/usr/lib/news/bin/prunehistory +/usr/lib/news/bin/innreport +/usr/lib/news/bin/getlist +/usr/lib/news/bin/innd +/usr/lib/news/bin/innupgrade +/usr/lib/news/bin/news.daily +/usr/lib/news/bin/sm +/usr/lib/news/bin/innwatch +/usr/lib/news/bin/inncheck +/usr/lib/news/bin/writelog +/usr/lib/news/bin/signcontrol +/usr/lib/news/bin/tdx-util +/usr/lib/news/bin/tally.control +/usr/lib/news/bin/overchan +/usr/lib/news/bin/sendinpaths +/usr/lib/news/bin/makehistory +/usr/lib/news/bin/nntpsend +/usr/lib/news/bin/mailpost +/usr/lib/news/bin/innfeed +/usr/lib/news/bin/ovdb_monitor +/usr/lib/news/bin/sendxbatches + +%dir /usr/lib/news/bin/filter +/usr/lib/news/bin/filter/filter_nnrpd.pl +/usr/lib/news/bin/filter/nnrpd_access.pl +/usr/lib/news/bin/filter/startup_innd.pl +/usr/lib/news/bin/filter/nnrpd_auth.py +/usr/lib/news/bin/filter/nnrpd_access.py +/usr/lib/news/bin/filter/nnrpd_auth.pl +/usr/lib/news/bin/filter/INN.py +/usr/lib/news/bin/filter/nnrpd.py +/usr/lib/news/bin/filter/filter_innd.py +/usr/lib/news/bin/filter/nnrpd_dynamic.py + %dir /usr/lib/news/bin/auth %dir /usr/lib/news/bin/auth/passwd +/usr/lib/news/bin/auth/passwd/radius +/usr/lib/news/bin/auth/passwd/ckpasswd + %dir /usr/lib/news/bin/auth/resolv -%dir /usr/lib/news/bin/filter +/usr/lib/news/bin/auth/resolv/domain +/usr/lib/news/bin/auth/resolv/ident + %dir /usr/lib/news/bin/control +/usr/lib/news/bin/control/version.pl +/usr/lib/news/bin/control/ihave.pl +/usr/lib/news/bin/control/sendsys.pl +/usr/lib/news/bin/control/sendme.pl +/usr/lib/news/bin/control/checkgroups.pl +/usr/lib/news/bin/control/senduuname.pl +/usr/lib/news/bin/control/newgroup.pl +/usr/lib/news/bin/control/rmgroup.pl + +%dir /usr/lib/news/bin/rnews.libexec +/usr/lib/news/bin/rnews.libexec/encode +/usr/lib/news/bin/rnews.libexec/gunbatch +/usr/lib/news/bin/rnews.libexec/decode +/usr/lib/news/bin/rnews.libexec/bunbatch +/usr/lib/news/bin/rnews.libexec/c7unbatch + +%dir /usr/lib/news/lib +/usr/lib/news/lib/innreport_inn.pm +/usr/lib/news/lib/libinnhist.so.2 +/usr/lib/news/lib/libstorage.so.2.0.0 +/usr/lib/news/lib/libstorage.so.2 +%config(noreplace) /usr/lib/news/lib/innshellvars.pl +%config(noreplace) /usr/lib/news/lib/innshellvars +%config(noreplace) /usr/lib/news/lib/innshellvars.tcl +/usr/lib/news/lib/libinn.so.2 +/usr/lib/news/lib/libinn.so.2.0.0 +/usr/lib/news/lib/libinnhist.so.2.0.0 + +%dir /usr/lib/news/doc +/usr/lib/news/doc/LICENSE +/usr/lib/news/doc/config-design +/usr/lib/news/doc/history-innfeed +/usr/lib/news/doc/GPL +/usr/lib/news/doc/sample-control +/usr/lib/news/doc/config-semantics +/usr/lib/news/doc/CONTRIBUTORS +/usr/lib/news/doc/external-auth +/usr/lib/news/doc/TODO +/usr/lib/news/doc/README +/usr/lib/news/doc/NEWS +/usr/lib/news/doc/HACKING +/usr/lib/news/doc/hook-python +/usr/lib/news/doc/config-syntax +/usr/lib/news/doc/hook-perl +/usr/lib/news/doc/INSTALL +/usr/lib/news/doc/history + +%dir /usr/lib/news/http +/usr/lib/news/http/innreport.css + +%dir /usr/lib/news/lib/perl +%dir /usr/lib/news/lib/perl/INN +/usr/lib/news/lib/perl/INN/Config.pm + +# %dir /var/log/news +# %config(noreplace) /var/lib/news/active.times +# %config(noreplace) /var/lib/news/distributions +# %config(noreplace) /var/lib/news/newsgroups +# %config(noreplace) /var/lib/news/active +# %config(noreplace) /var/lib/news/subscriptions +# %config(noreplace) /var/lib/news/history + %if "%{_libdir}" != "/usr/lib" %dir %{_libdir}/news %endif -%dir /etc/news/ %dir /var/spool/news %dir /var/spool/news/archive %dir /var/spool/news/articles @@ -326,9 +504,7 @@ exit 0 %dir /var/spool/news/innfeed %dir /var/spool/news/outgoing %dir /var/spool/news/overview -%dir /var/log/news %dir /var/log/news/OLD -%dir /var/lib/news %dir /var/lib/news/tmp %dir /var/run/news %defattr(-,root,root) @@ -344,19 +520,33 @@ exit 0 %doc NEWS README* ChangeLog CONTRIBUTORS LICENSE INSTALL FAQ.html %doc %dir samples -%files devel -f files.devel +%files devel %defattr(-,root,root) %dir /usr/include/inn +/usr/include/inn/clibrary.h +/usr/include/inn/config.h +/usr/include/inn/dbz.h +/usr/include/inn/defines.h +/usr/include/inn/libinn.h +/usr/include/inn/storage.h +/usr/include/inn/system.h +/usr/lib/news/lib/libstorage.so +/usr/lib/news/lib/libinn.so +/usr/lib/news/lib/libinnhist.so %{_mandir}/man3/* %files -n inews %defattr(-,root,root) -%config(noreplace) /etc/news/inn.conf +%config(noreplace) %attr(-,news,news) /etc/news/inn.conf /usr/bin/inews %attr(0755,root,root) /usr/lib/news/bin/inews %{_mandir}/man1/inews* %changelog +* Mon Jul 13 2009 Nikola Pajkovsky 2.5.0-3 +- ugly sed script for file section was deleted and rewrite in classic style +- fix init script(does not start correctly and shutdown when pid does not exist when service run) + * Wed Jun 24 2009 Ondrej Vasik - 2.5.0-2 - add support for load average to makehistory(#276061) - update faq, ship it in %doc Index: innd.init =================================================================== RCS file: /cvs/extras/rpms/inn/devel/innd.init,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- innd.init 7 Jan 2008 16:22:07 -0000 1.7 +++ innd.init 13 Jul 2009 13:53:29 -0000 1.8 @@ -35,12 +35,11 @@ RETVAL=0 start() { # Check that networking is up. [ "${NETWORKING}" = "no" ] && exit 1 - [ -d "$SPOOLBASE" ] || exit 1 + [ -d "$SPOOLDIR" ] || exit 1 [ -f "$HISTORY" -a -f "$HISTORY.hash" ] || { echo $"Please run makehistory and/or makedbz before starting innd." >&2 exit 1 } - echo -n $"Starting INND system: " # INN uses too many un-checked shell scripts unset LANG @@ -63,6 +62,11 @@ stop() { echo -n $"Stopping INND service (the hard way): " killproc innd fi + else + if ps -U news | grep innd > /dev/null; then + echo $"Stopping INND service (PID not found, the hard way): " + killproc innd + fi RETVAL=$? [ $RETVAL -eq 0 ] && rm -f /var/run/news/innd.pid echo @@ -99,7 +103,7 @@ reload() { restart() { stop - start + start } # See how we were called. From ausil at fedoraproject.org Mon Jul 13 13:58:26 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Mon, 13 Jul 2009 13:58:26 +0000 (UTC) Subject: rpms/fedora-packager/F-11 .cvsignore, 1.6, 1.7 fedora-packager.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090713135826.9BD8811C0497@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25782 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 2 Mar 2009 22:36:05 -0000 1.6 +++ .cvsignore 13 Jul 2009 13:57:56 -0000 1.7 @@ -1 +1 @@ -fedora-packager-0.3.3.tar.bz2 +fedora-packager-0.3.5.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/fedora-packager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fedora-packager.spec 6 Jul 2009 20:37:29 -0000 1.8 +++ fedora-packager.spec 13 Jul 2009 13:57:56 -0000 1.9 @@ -1,6 +1,6 @@ Name: fedora-packager -Version: 0.3.4 -Release: 3%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -45,9 +45,14 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fedoradev-pkgowners %{_bindir}/fedora-cert %{_bindir}/fedora-getsvn +%{_bindir}/rpmbuild-md5 %changelog +* Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 +- add new rpmbuild-md5 script to build old style hash srpms +- it is a wrapper around rpmbuild + * Mon Jul 6 2009 Tom "spot" Callaway - 0.3.4-3 - add Requires: redhat-rpm-config to be sure fedora packagers are using all available macros Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 05:47:03 -0000 1.7 +++ sources 13 Jul 2009 13:57:56 -0000 1.8 @@ -1 +1 @@ -b464499e044ed8318cd3bc2951e07b8c fedora-packager-0.3.4.tar.bz2 +fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 From mjakubicek at fedoraproject.org Mon Jul 13 13:58:37 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Mon, 13 Jul 2009 13:58:37 +0000 (UTC) Subject: rpms/orsa/devel orsa.spec,1.7,1.8 Message-ID: <20090713135837.B1A2311C0497@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/orsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25875 Modified Files: orsa.spec Log Message: - Rebuilt against new cln 1.3.0 Index: orsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/orsa/devel/orsa.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- orsa.spec 12 Apr 2009 22:11:44 -0000 1.7 +++ orsa.spec 13 Jul 2009 13:58:07 -0000 1.8 @@ -1,6 +1,6 @@ Name: orsa Version: 0.7.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Orbit Reconstruction, Simulation and Analysis Group: Amusements/Graphics @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libxorsa.so %changelog +* Mon Jul 13 2009 Milos Jakubicek - 0.7.0-9 +- Rebuilt against new cln 1.3.0 + * Sun Apr 12 2009 Milos Jakubicek - 0.7.0-8 - Do not complain at all if the configuration file is missing. From ausil at fedoraproject.org Mon Jul 13 13:59:37 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Mon, 13 Jul 2009 13:59:37 +0000 (UTC) Subject: rpms/fedora-packager/F-10 .cvsignore, 1.6, 1.7 fedora-packager.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090713135937.867FA11C0497@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26102 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 2 Mar 2009 22:56:02 -0000 1.6 +++ .cvsignore 13 Jul 2009 13:59:07 -0000 1.7 @@ -1 +1 @@ -fedora-packager-0.3.3.tar.bz2 +fedora-packager-0.3.5.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/fedora-packager.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fedora-packager.spec 6 Jul 2009 20:37:28 -0000 1.7 +++ fedora-packager.spec 13 Jul 2009 13:59:07 -0000 1.8 @@ -1,6 +1,6 @@ Name: fedora-packager -Version: 0.3.4 -Release: 3%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -45,9 +45,14 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fedoradev-pkgowners %{_bindir}/fedora-cert %{_bindir}/fedora-getsvn +%{_bindir}/rpmbuild-md5 %changelog +* Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 +- add new rpmbuild-md5 script to build old style hash srpms +- it is a wrapper around rpmbuild + * Mon Jul 6 2009 Tom "spot" Callaway - 0.3.4-3 - add Requires: redhat-rpm-config to be sure fedora packagers are using all available macros Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 24 Jun 2009 05:59:54 -0000 1.7 +++ sources 13 Jul 2009 13:59:07 -0000 1.8 @@ -1 +1 @@ -b464499e044ed8318cd3bc2951e07b8c fedora-packager-0.3.4.tar.bz2 +fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 From ausil at fedoraproject.org Mon Jul 13 14:02:50 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Mon, 13 Jul 2009 14:02:50 +0000 (UTC) Subject: rpms/fedora-packager/EL-5 .cvsignore, 1.4, 1.5 fedora-packager.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090713140250.986FA11C0497@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/rpms/fedora-packager/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27000 Modified Files: .cvsignore fedora-packager.spec sources Log Message: * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 2 Mar 2009 23:16:35 -0000 1.4 +++ .cvsignore 13 Jul 2009 14:02:20 -0000 1.5 @@ -1 +1 @@ -fedora-packager-0.3.3.tar.bz2 +fedora-packager-0.3.5.tar.bz2 Index: fedora-packager.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/fedora-packager.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fedora-packager.spec 7 Jul 2009 22:14:51 -0000 1.7 +++ fedora-packager.spec 13 Jul 2009 14:02:20 -0000 1.8 @@ -1,6 +1,6 @@ Name: fedora-packager -Version: 0.3.4 -Release: 3%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -45,9 +45,14 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fedoradev-pkgowners %{_bindir}/fedora-cert %{_bindir}/fedora-getsvn +%{_bindir}/rpmbuild-md5 %changelog +* Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 +- add new rpmbuild-md5 script to build old style hash srpms +- it is a wrapper around rpmbuild + * Mon Jul 6 2009 Tom "spot" Callaway - 0.3.4-3 - add Requires: redhat-rpm-config to be sure fedora packagers are using all available macros Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-packager/EL-5/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Jun 2009 06:15:35 -0000 1.5 +++ sources 13 Jul 2009 14:02:20 -0000 1.6 @@ -1 +1 @@ -b464499e044ed8318cd3bc2951e07b8c fedora-packager-0.3.4.tar.bz2 +fdf7277c4934ad0b03e82a1181f69ac9 fedora-packager-0.3.5.tar.bz2 From dcbw at fedoraproject.org Mon Jul 13 14:14:09 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Mon, 13 Jul 2009 14:14:09 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/devel .cvsignore, 1.15, 1.16 NetworkManager-openvpn.spec, 1.32, 1.33 sources, 1.19, 1.20 Message-ID: <20090713141409.C359911C0497@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager-openvpn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29873 Modified Files: .cvsignore NetworkManager-openvpn.spec sources Log Message: * Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 - Update to 0.7.1 - Translation updates Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 5 Mar 2009 19:20:46 -0000 1.15 +++ .cvsignore 13 Jul 2009 14:13:39 -0000 1.16 @@ -10,3 +10,4 @@ NetworkManager-openvpn-0.7.0.svn4326.tar NetworkManager-openvpn-0.7.0.svn11.tar.gz NetworkManager-openvpn-0.7.0.97.tar.gz NetworkManager-openvpn-0.7.0.99.tar.gz +NetworkManager-openvpn-0.7.1.tar.bz2 Index: NetworkManager-openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/NetworkManager-openvpn.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- NetworkManager-openvpn.spec 5 Mar 2009 19:20:46 -0000 1.32 +++ NetworkManager-openvpn.spec 13 Jul 2009 14:13:39 -0000 1.33 @@ -1,26 +1,25 @@ -%define nm_version 1:0.7.0.99-1 +%define nm_version 1:0.7.1-1 %define dbus_version 1.1 %define gtk2_version 2.10.0 %define openvpn_version 2.1 %define shared_mime_version 0.16-3 -%define svn_snapshot %{nil} +%define snapshot .git20090713 Summary: NetworkManager VPN plugin for OpenVPN Name: NetworkManager-openvpn Epoch: 1 -Version: 0.7.0.99 -Release: 1%{svn_snapshot}%{?dist} +Version: 0.7.1 +Release: 1%{snapshot}%{?dist} License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ Group: System Environment/Base # How to build the source package: -# - Check out NetworkManager from Gnome SVN, currently trunk is used -# - cd NetworkManager/vpn-daemons/openvpn +# - Check out NetworkManager from Gnome git, currently NETWORKMANAGER_0_7 is used # - ./autogen.sh --prefix=/usr --sysconfdir=/etc # - make distcheck -# - use generated NetworkManager-openvpn-0.7.0.tar.gz -Source: %{name}-%{version}%{svn_snapshot}.tar.gz +# - use generated NetworkManager-openvpn-0.7.1.tar.bz2 +Source: %{name}-%{version}%{snapshot}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: gtk2-devel >= %{gtk2_version} @@ -34,7 +33,6 @@ BuildRequires: libglade2-devel BuildRequires: perl-XML-Parser BuildRequires: libtool intltool gettext BuildRequires: perl -BuildRequires: gnome-common Requires(post): %{_bindir}/update-desktop-database Requires(postun): %{_bindir}/update-desktop-database Requires(post): /sbin/ldconfig @@ -105,6 +103,10 @@ fi %dir %{_datadir}/gnome-vpn-properties/openvpn %changelog +* Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 +- Update to 0.7.1 +- Translation updates + * Thu Mar 5 2009 Dan Williams 1:0.7.0.99-1 - Update to 0.7.1rc3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 5 Mar 2009 19:20:46 -0000 1.19 +++ sources 13 Jul 2009 14:13:39 -0000 1.20 @@ -1 +0,0 @@ -b38bf19fb7b7cd62ea7ed9143ea02233 NetworkManager-openvpn-0.7.0.99.tar.gz From dcbw at fedoraproject.org Mon Jul 13 14:16:32 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Mon, 13 Jul 2009 14:16:32 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/devel .cvsignore, 1.16, 1.17 sources, 1.20, 1.21 Message-ID: <20090713141632.2C62C11C0497@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager-openvpn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30662 Modified Files: .cvsignore sources Log Message: Upload the right sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 13 Jul 2009 14:13:39 -0000 1.16 +++ .cvsignore 13 Jul 2009 14:16:31 -0000 1.17 @@ -11,3 +11,4 @@ NetworkManager-openvpn-0.7.0.svn11.tar.g NetworkManager-openvpn-0.7.0.97.tar.gz NetworkManager-openvpn-0.7.0.99.tar.gz NetworkManager-openvpn-0.7.1.tar.bz2 +NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 13 Jul 2009 14:13:39 -0000 1.20 +++ sources 13 Jul 2009 14:16:31 -0000 1.21 @@ -0,0 +1 @@ +94227516db7c88a001b737fdec4604a2 NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 From jakub at fedoraproject.org Mon Jul 13 14:17:46 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Mon, 13 Jul 2009 14:17:46 +0000 (UTC) Subject: rpms/valgrind/devel valgrind-3.4.1-dwarf-cfa-remember-state1.patch, NONE, 1.1 valgrind-3.4.1-dwarf-cfa-remember-state2.patch, NONE, 1.1 valgrind.spec, 1.63, 1.64 Message-ID: <20090713141746.913C411C0497@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31097 Modified Files: valgrind.spec Added Files: valgrind-3.4.1-dwarf-cfa-remember-state1.patch valgrind-3.4.1-dwarf-cfa-remember-state2.patch Log Message: 3.4.1-5 valgrind-3.4.1-dwarf-cfa-remember-state1.patch: --- NEW FILE valgrind-3.4.1-dwarf-cfa-remember-state1.patch --- --- valgrind/coregrind/m_debuginfo/readdwarf.c.jj 2009-07-13 14:09:14.478329957 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf.c 2009-07-13 15:18:35.596080042 +0200 @@ -1923,6 +1923,11 @@ static void ppRegRule ( XArray* exprs, R } +/* Size of the stack of register unwind rules. This is only + exceedingly rarely used, so a stack of size 1 should actually work + with almost all compiler-generated CFA. */ +#define N_RR_STACK 4 + typedef struct { /* Read-only fields (set by the CIE) */ @@ -1939,8 +1944,12 @@ typedef Int cfa_reg; Int cfa_off; /* in bytes */ Int cfa_expr_ix; /* index into cfa_exprs */ - /* register unwind rules */ - RegRule reg[N_CFI_REGS]; + /* A stack of register unwind rules. We need a stack of them, + rather than just one set of rules, in order to handle + DW_CFA_{remember,restore}_state. */ + RegRule reg[N_RR_STACK][N_CFI_REGS]; + Int reg_sp; /* 0 <= reg_sp < N_RR_STACK; points at the + currently-in-use rule set. */ /* array of CfiExpr, shared by reg[] and cfa_expr_ix */ XArray* exprs; } @@ -1948,7 +1957,7 @@ typedef static void ppUnwindContext ( UnwindContext* ctx ) { - Int i; + Int j, i; VG_(printf)("0x%llx: ", (ULong)ctx->loc); if (ctx->cfa_is_regoff) { VG_(printf)("%d(r%d) ", ctx->cfa_off, ctx->cfa_reg); @@ -1958,14 +1967,19 @@ static void ppUnwindContext ( UnwindCont ML_(ppCfiExpr)( ctx->exprs, ctx->cfa_expr_ix ); VG_(printf)("} "); } - for (i = 0; i < N_CFI_REGS; i++) - ppRegRule(ctx->exprs, &ctx->reg[i]); + for (j = 0; j <= ctx->reg_sp; j++) { + VG_(printf)("%s[%d]={ ", j > 0 ? " " : "", j); + for (i = 0; i < N_CFI_REGS; i++) + ppRegRule(ctx->exprs, &ctx->reg[j][i]); + VG_(printf)("}"); + } VG_(printf)("\n"); } static void initUnwindContext ( /*OUT*/UnwindContext* ctx ) { - Int i; + Int j, i; + VG_(memset)(ctx, 0, sizeof(*ctx)); ctx->code_a_f = 0; ctx->data_a_f = 0; ctx->initloc = 0; @@ -1976,9 +1990,12 @@ static void initUnwindContext ( /*OUT*/U ctx->cfa_off = 0; ctx->cfa_expr_ix = 0; ctx->exprs = NULL; - for (i = 0; i < N_CFI_REGS; i++) { - ctx->reg[i].tag = RR_Undef; - ctx->reg[i].arg = 0; + ctx->reg_sp = 0; + for (j = 0; j < N_RR_STACK; j++) { + for (i = 0; i < N_CFI_REGS; i++) { + ctx->reg[j][i].tag = RR_Undef; + ctx->reg[j][i].arg = 0; + } } } @@ -2104,8 +2121,15 @@ static Bool summarise_context( /*OUT*/Di why = 2; goto failed; /* otherwise give up */ \ } - SUMMARISE_HOW(si->ra_how, si->ra_off, ctx->reg[ctx->ra_reg] ); - SUMMARISE_HOW(si->fp_how, si->fp_off, ctx->reg[FP_REG] ); + /* Guard against obviously stupid settings of the reg-rule stack + pointer. */ + if (ctx->reg_sp < 0) { why = 8; goto failed; } + if (ctx->reg_sp >= N_RR_STACK) { why = 9; goto failed; } + + SUMMARISE_HOW(si->ra_how, si->ra_off, + ctx->reg[ctx->reg_sp][ctx->ra_reg] ); + SUMMARISE_HOW(si->fp_how, si->fp_off, + ctx->reg[ctx->reg_sp][FP_REG] ); # undef SUMMARISE_HOW @@ -2116,7 +2140,7 @@ static Bool summarise_context( /*OUT*/Di /* also, gcc says "Undef" for %{e,r}bp when it is unchanged. So .. */ - if (ctx->reg[FP_REG].tag == RR_Undef) + if (ctx->reg[ctx->reg_sp][FP_REG].tag == RR_Undef) si->fp_how = CFIR_SAME; /* knock out some obviously stupid cases */ @@ -2215,10 +2239,10 @@ static void ppUnwindContext_summary ( Un } VG_(printf)("RA="); - ppRegRule( ctx->exprs, &ctx->reg[ctx->ra_reg] ); + ppRegRule( ctx->exprs, &ctx->reg[ctx->reg_sp][ctx->ra_reg] ); VG_(printf)("FP="); - ppRegRule( ctx->exprs, &ctx->reg[FP_REG] ); + ppRegRule( ctx->exprs, &ctx->reg[ctx->reg_sp][FP_REG] ); VG_(printf)("\n"); } @@ -2664,6 +2688,9 @@ static Int run_CF_instruction ( /*MOD*/U Addr printing_bias = ((Addr)ctx->initloc) - ((Addr)di->text_bias); i++; + if (ctx->reg_sp < 0 || ctx->reg_sp >= N_RR_STACK) + return 0; /* bogus reg-rule stack pointer */ + if (hi2 == DW_CFA_advance_loc) { delta = (UInt)lo6; ctx->loc += delta; @@ -2680,12 +2707,13 @@ static Int run_CF_instruction ( /*MOD*/U reg = (Int)lo6; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAOff; - ctx->reg[reg].arg = off * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; + ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" DW_CFA_offset: r%d at cfa%s%d\n", - (Int)reg, ctx->reg[reg].arg < 0 ? "" : "+", - (Int)ctx->reg[reg].arg ); + (Int)reg, + ctx->reg[ctx->reg_sp][reg].arg < 0 ? "" : "+", + (Int)ctx->reg[ctx->reg_sp][reg].arg ); return i; } @@ -2695,7 +2723,7 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (restore_ctx == NULL) return 0; /* fail */ - ctx->reg[reg] = restore_ctx->reg[reg]; + ctx->reg[ctx->reg_sp][reg] = restore_ctx->reg[ctx->reg_sp][reg]; if (di->ddump_frames) VG_(printf)(" DW_CFA_restore: r%d\n", (Int)reg); return i; @@ -2781,8 +2809,8 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (reg2 < 0 || reg2 >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_Reg; - ctx->reg[reg].arg = reg2; + ctx->reg[ctx->reg_sp][reg].tag = RR_Reg; + ctx->reg[ctx->reg_sp][reg].arg = reg2; if (di->ddump_frames) VG_(printf)(" DW_CFA_register: r%d in r%d\n", (Int)reg, (Int)reg2); @@ -2795,8 +2823,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAOff; - ctx->reg[reg].arg = off * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; + ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_offset_extended\n"); break; @@ -2808,12 +2836,13 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAOff; - ctx->reg[reg].arg = off * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; + ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" DW_CFA_offset_extended_sf: r%d at cfa%s%d\n", - reg, ctx->reg[reg].arg < 0 ? "" : "+", - (Int)ctx->reg[reg].arg); + reg, + ctx->reg[ctx->reg_sp][reg].arg < 0 ? "" : "+", + (Int)ctx->reg[ctx->reg_sp][reg].arg); break; case DW_CFA_GNU_negative_offset_extended: @@ -2823,8 +2852,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAOff; - ctx->reg[reg].arg = (-off) * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; + ctx->reg[ctx->reg_sp][reg].arg = (-off) * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_GNU_negative_offset_extended\n"); break; @@ -2836,7 +2865,7 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (restore_ctx == NULL) return 0; /* fail */ - ctx->reg[reg] = restore_ctx->reg[reg]; + ctx->reg[ctx->reg_sp][reg] = restore_ctx->reg[ctx->reg_sp][reg]; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_restore_extended\n"); break; @@ -2848,8 +2877,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAValOff; - ctx->reg[reg].arg = off * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAValOff; + ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_val_offset\n"); break; @@ -2861,8 +2890,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_CFAValOff; - ctx->reg[reg].arg = off * ctx->data_a_f; + ctx->reg[ctx->reg_sp][reg].tag = RR_CFAValOff; + ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_val_offset_sf\n"); break; @@ -2907,8 +2936,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[reg].tag = RR_Undef; - ctx->reg[reg].arg = 0; + ctx->reg[ctx->reg_sp][reg].tag = RR_Undef; + ctx->reg[ctx->reg_sp][reg].arg = 0; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_undefined\n"); break; @@ -2952,8 +2981,8 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ /* Add an extra dereference */ j = ML_(CfiExpr_Deref)( ctx->exprs, j ); - ctx->reg[reg].tag = RR_ValExpr; - ctx->reg[reg].arg = j; + ctx->reg[ctx->reg_sp][reg].tag = RR_ValExpr; + ctx->reg[ctx->reg_sp][reg].arg = j; break; case DW_CFA_val_expression: @@ -2981,8 +3010,8 @@ static Int run_CF_instruction ( /*MOD*/U } if (j == -1) return 0; /* fail */ - ctx->reg[reg].tag = RR_ValExpr; - ctx->reg[reg].arg = j; + ctx->reg[ctx->reg_sp][reg].tag = RR_ValExpr; + ctx->reg[ctx->reg_sp][reg].arg = j; break; case DW_CFA_def_cfa_expression: @@ -3008,7 +3037,39 @@ static Int run_CF_instruction ( /*MOD*/U /* Ignored. This appears to be sparc-specific; quite why it turns up in SuSE-supplied x86 .so's beats me. */ if (di->ddump_frames) - VG_(printf)("DW_CFA_GNU_window_save\n"); + VG_(printf)(" DW_CFA_GNU_window_save\n"); + break; + + case DW_CFA_remember_state: + if (di->ddump_frames) + VG_(printf)(" DW_CFA_remember_state\n"); + /* we just checked this at entry, so: */ + vg_assert(ctx->reg_sp >= 0 && ctx->reg_sp < N_RR_STACK); + ctx->reg_sp++; + if (ctx->reg_sp == N_RR_STACK) { + /* stack overflow. We're hosed. */ + VG_(message)(Vg_DebugMsg, "DWARF2 CFI reader: N_RR_STACK is " + "too low; increase and recompile."); + i = 0; /* indicate failure */ + } else { + VG_(memcpy)(/*dst*/&ctx->reg[ctx->reg_sp], + /*src*/&ctx->reg[ctx->reg_sp - 1], + sizeof(ctx->reg[ctx->reg_sp]) ); + } + break; + + case DW_CFA_restore_state: + if (di->ddump_frames) + VG_(printf)(" DW_CFA_restore_state\n"); + /* we just checked this at entry, so: */ + vg_assert(ctx->reg_sp >= 0 && ctx->reg_sp < N_RR_STACK); + if (ctx->reg_sp == 0) { + /* stack overflow. Give up. */ + i = 0; /* indicate failure */ + } else { + /* simply fall back to previous entry */ + ctx->reg_sp--; + } break; default: valgrind-3.4.1-dwarf-cfa-remember-state2.patch: --- NEW FILE valgrind-3.4.1-dwarf-cfa-remember-state2.patch --- --- valgrind/coregrind/m_debuginfo/readdwarf.c.jj 2009-07-13 15:18:35.596080042 +0200 +++ valgrind/coregrind/m_debuginfo/readdwarf.c 2009-07-13 15:54:43.576955651 +0200 @@ -1939,17 +1939,20 @@ typedef run_CF_instruction. */ /* The LOC entry */ Addr loc; - /* The CFA entry. This can be either reg+/-offset or an expr. */ - Bool cfa_is_regoff; /* True=>is reg+offset; False=>is expr */ - Int cfa_reg; - Int cfa_off; /* in bytes */ - Int cfa_expr_ix; /* index into cfa_exprs */ - /* A stack of register unwind rules. We need a stack of them, - rather than just one set of rules, in order to handle + /* We need a stack of these in order to handle DW_CFA_{remember,restore}_state. */ - RegRule reg[N_RR_STACK][N_CFI_REGS]; - Int reg_sp; /* 0 <= reg_sp < N_RR_STACK; points at the - currently-in-use rule set. */ + struct UnwindContextState { + /* The CFA entry. This can be either reg+/-offset or an expr. */ + Bool cfa_is_regoff; /* True=>is reg+offset; False=>is expr */ + Int cfa_reg; + Int cfa_off; /* in bytes */ + Int cfa_expr_ix; /* index into cfa_exprs */ + /* Register unwind rules. */ + RegRule reg[N_CFI_REGS]; + } + state[N_RR_STACK]; + Int state_sp; /* 0 <= state_sp < N_RR_STACK; points at the + currently-in-use rule set. */ /* array of CfiExpr, shared by reg[] and cfa_expr_ix */ XArray* exprs; } @@ -1959,18 +1962,20 @@ static void ppUnwindContext ( UnwindCont { Int j, i; VG_(printf)("0x%llx: ", (ULong)ctx->loc); - if (ctx->cfa_is_regoff) { - VG_(printf)("%d(r%d) ", ctx->cfa_off, ctx->cfa_reg); - } else { - vg_assert(ctx->exprs); - VG_(printf)("{"); - ML_(ppCfiExpr)( ctx->exprs, ctx->cfa_expr_ix ); - VG_(printf)("} "); - } - for (j = 0; j <= ctx->reg_sp; j++) { + for (j = 0; j <= ctx->state_sp; j++) { + struct UnwindContextState* ctxs = &ctx->state[j]; VG_(printf)("%s[%d]={ ", j > 0 ? " " : "", j); + if (ctxs->cfa_is_regoff) { + VG_(printf)("%d(r%d) ", ctxs->cfa_off, ctxs->cfa_reg); + } else { + vg_assert(ctx->exprs); + VG_(printf)("{"); + ML_(ppCfiExpr)( ctx->exprs, ctxs->cfa_expr_ix ); + VG_(printf)("} "); + } + VG_(printf)("{ "); for (i = 0; i < N_CFI_REGS; i++) - ppRegRule(ctx->exprs, &ctx->reg[j][i]); + ppRegRule(ctx->exprs, &ctxs->reg[i]); VG_(printf)("}"); } VG_(printf)("\n"); @@ -1980,21 +1985,22 @@ static void initUnwindContext ( /*OUT*/U { Int j, i; VG_(memset)(ctx, 0, sizeof(*ctx)); - ctx->code_a_f = 0; + /* ctx->code_a_f = 0; ctx->data_a_f = 0; - ctx->initloc = 0; + ctx->initloc = 0; */ ctx->ra_reg = RA_REG_DEFAULT; - ctx->loc = 0; - ctx->cfa_is_regoff = True; - ctx->cfa_reg = 0; - ctx->cfa_off = 0; - ctx->cfa_expr_ix = 0; + /* ctx->loc = 0; ctx->exprs = NULL; - ctx->reg_sp = 0; + ctx->state_sp = 0; */ for (j = 0; j < N_RR_STACK; j++) { + ctx->state[j].cfa_is_regoff = True; + /* ctx->state[j].cfa_reg = 0; + ctx->state[j].cfa_off = 0; + ctx->state[j].cfa_expr_ix = 0; */ for (i = 0; i < N_CFI_REGS; i++) { - ctx->reg[j][i].tag = RR_Undef; - ctx->reg[j][i].arg = 0; + if (RR_Undef != 0) + ctx->state[j].reg[i].tag = RR_Undef; + /* ctx->state[j].reg[i].arg = 0; */ } } } @@ -2048,10 +2054,17 @@ static Bool summarise_context( /*OUT*/Di struct _DebugInfo* debuginfo ) { Int why = 0; + struct UnwindContextState* ctxs; initCfiSI(si); + /* Guard against obviously stupid settings of the reg-rule stack + pointer. */ + if (ctx->state_sp < 0) { why = 8; goto failed; } + if (ctx->state_sp >= N_RR_STACK) { why = 9; goto failed; } + ctxs = &ctx->state[ctx->state_sp]; + /* How to generate the CFA */ - if (!ctx->cfa_is_regoff) { + if (!ctxs->cfa_is_regoff) { /* it was set by DW_CFA_def_cfa_expression; try to convert */ XArray *src, *dst; Int conv; @@ -2064,7 +2077,7 @@ static Bool summarise_context( /*OUT*/Di debuginfo->cfsi_exprs = dst; } conv = copy_convert_CfiExpr_tree - ( dst, ctx, ctx->cfa_expr_ix ); + ( dst, ctx, ctxs->cfa_expr_ix ); vg_assert(conv >= -1); if (conv == -1) { why = 6; goto failed; } si->cfa_how = CFIC_EXPR; @@ -2072,13 +2085,13 @@ static Bool summarise_context( /*OUT*/Di if (0 && debuginfo->ddump_frames) ML_(ppCfiExpr)(dst, conv); } else - if (ctx->cfa_is_regoff && ctx->cfa_reg == SP_REG) { + if (ctxs->cfa_is_regoff && ctxs->cfa_reg == SP_REG) { si->cfa_how = CFIC_SPREL; - si->cfa_off = ctx->cfa_off; + si->cfa_off = ctxs->cfa_off; } else - if (ctx->cfa_is_regoff && ctx->cfa_reg == FP_REG) { + if (ctxs->cfa_is_regoff && ctxs->cfa_reg == FP_REG) { si->cfa_how = CFIC_FPREL; - si->cfa_off = ctx->cfa_off; + si->cfa_off = ctxs->cfa_off; } else { why = 1; goto failed; @@ -2121,15 +2134,10 @@ static Bool summarise_context( /*OUT*/Di why = 2; goto failed; /* otherwise give up */ \ } - /* Guard against obviously stupid settings of the reg-rule stack - pointer. */ - if (ctx->reg_sp < 0) { why = 8; goto failed; } - if (ctx->reg_sp >= N_RR_STACK) { why = 9; goto failed; } - SUMMARISE_HOW(si->ra_how, si->ra_off, - ctx->reg[ctx->reg_sp][ctx->ra_reg] ); + ctxs->reg[ctx->ra_reg] ); SUMMARISE_HOW(si->fp_how, si->fp_off, - ctx->reg[ctx->reg_sp][FP_REG] ); + ctxs->reg[FP_REG] ); # undef SUMMARISE_HOW @@ -2140,7 +2148,7 @@ static Bool summarise_context( /*OUT*/Di /* also, gcc says "Undef" for %{e,r}bp when it is unchanged. So .. */ - if (ctx->reg[ctx->reg_sp][FP_REG].tag == RR_Undef) + if (ctxs->reg[FP_REG].tag == RR_Undef) si->fp_how = CFIR_SAME; /* knock out some obviously stupid cases */ @@ -2227,22 +2235,24 @@ static Int copy_convert_CfiExpr_tree ( X static void ppUnwindContext_summary ( UnwindContext* ctx ) { + struct UnwindContextState* ctxs = &ctx->state[ctx->state_sp]; + VG_(printf)("0x%llx-1: ", (ULong)ctx->loc); - if (ctx->cfa_reg == SP_REG) { - VG_(printf)("SP/CFA=%d+SP ", ctx->cfa_off); + if (ctxs->cfa_reg == SP_REG) { + VG_(printf)("SP/CFA=%d+SP ", ctxs->cfa_off); } else - if (ctx->cfa_reg == FP_REG) { - VG_(printf)("SP/CFA=%d+FP ", ctx->cfa_off); + if (ctxs->cfa_reg == FP_REG) { + VG_(printf)("SP/CFA=%d+FP ", ctxs->cfa_off); } else { VG_(printf)("SP/CFA=unknown "); } VG_(printf)("RA="); - ppRegRule( ctx->exprs, &ctx->reg[ctx->reg_sp][ctx->ra_reg] ); + ppRegRule( ctx->exprs, &ctxs->reg[ctx->ra_reg] ); VG_(printf)("FP="); - ppRegRule( ctx->exprs, &ctx->reg[ctx->reg_sp][FP_REG] ); + ppRegRule( ctx->exprs, &ctxs->reg[FP_REG] ); VG_(printf)("\n"); } @@ -2510,6 +2520,7 @@ static Int dwarfexpr_to_dag ( UnwindCont Int sp; /* # of top element: valid is -1 .. N_EXPR_STACK-1 */ Int stack[N_EXPR_STACK]; /* indices into ctx->exprs */ + struct UnwindContextState* ctxs = &ctx->state[ctx->state_sp]; XArray* dst = ctx->exprs; UChar* limit = expr + exprlen; @@ -2521,17 +2532,17 @@ static Int dwarfexpr_to_dag ( UnwindCont /* Synthesise the CFA as a CfiExpr */ if (push_cfa_at_start) { - if (ctx->cfa_is_regoff) { + if (ctxs->cfa_is_regoff) { /* cfa is reg +/- offset */ ix = ML_(CfiExpr_Binop)( dst, Cop_Add, - ML_(CfiExpr_DwReg)( dst, ctx->cfa_reg ), - ML_(CfiExpr_Const)( dst, (UWord)(Word)ctx->cfa_off ) + ML_(CfiExpr_DwReg)( dst, ctxs->cfa_reg ), + ML_(CfiExpr_Const)( dst, (UWord)(Word)ctxs->cfa_off ) ); PUSH(ix); } else { /* CFA is already an expr; use its root node */ - PUSH(ctx->cfa_expr_ix); + PUSH(ctxs->cfa_expr_ix); } } @@ -2686,11 +2697,13 @@ static Int run_CF_instruction ( /*MOD*/U UChar hi2 = (instr[i] >> 6) & 3; UChar lo6 = instr[i] & 0x3F; Addr printing_bias = ((Addr)ctx->initloc) - ((Addr)di->text_bias); + struct UnwindContextState* ctxs; i++; - if (ctx->reg_sp < 0 || ctx->reg_sp >= N_RR_STACK) + if (ctx->state_sp < 0 || ctx->state_sp >= N_RR_STACK) return 0; /* bogus reg-rule stack pointer */ + ctxs = &ctx->state[ctx->state_sp]; if (hi2 == DW_CFA_advance_loc) { delta = (UInt)lo6; ctx->loc += delta; @@ -2707,13 +2720,13 @@ static Int run_CF_instruction ( /*MOD*/U reg = (Int)lo6; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; - ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAOff; + ctxs->reg[reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" DW_CFA_offset: r%d at cfa%s%d\n", (Int)reg, - ctx->reg[ctx->reg_sp][reg].arg < 0 ? "" : "+", - (Int)ctx->reg[ctx->reg_sp][reg].arg ); + ctxs->reg[reg].arg < 0 ? "" : "+", + (Int)ctxs->reg[reg].arg ); return i; } @@ -2723,7 +2736,7 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (restore_ctx == NULL) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg] = restore_ctx->reg[ctx->reg_sp][reg]; + ctxs->reg[reg] = restore_ctx->state[restore_ctx->state_sp].reg[reg]; if (di->ddump_frames) VG_(printf)(" DW_CFA_restore: r%d\n", (Int)reg); return i; @@ -2777,10 +2791,10 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->cfa_is_regoff = True; - ctx->cfa_expr_ix = 0; - ctx->cfa_reg = reg; - ctx->cfa_off = off; + ctxs->cfa_is_regoff = True; + ctxs->cfa_expr_ix = 0; + ctxs->cfa_reg = reg; + ctxs->cfa_off = off; if (di->ddump_frames) VG_(printf)(" DW_CFA_def_cfa: r%d ofs %d\n", (Int)reg, (Int)off); break; @@ -2792,10 +2806,10 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->cfa_is_regoff = True; - ctx->cfa_expr_ix = 0; - ctx->cfa_reg = reg; - ctx->cfa_off = off * ctx->data_a_f; + ctxs->cfa_is_regoff = True; + ctxs->cfa_expr_ix = 0; + ctxs->cfa_reg = reg; + ctxs->cfa_off = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_def_cfa_sf\n"); break; @@ -2809,8 +2823,8 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (reg2 < 0 || reg2 >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_Reg; - ctx->reg[ctx->reg_sp][reg].arg = reg2; + ctxs->reg[reg].tag = RR_Reg; + ctxs->reg[reg].arg = reg2; if (di->ddump_frames) VG_(printf)(" DW_CFA_register: r%d in r%d\n", (Int)reg, (Int)reg2); @@ -2823,8 +2837,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; - ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAOff; + ctxs->reg[reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_offset_extended\n"); break; @@ -2836,13 +2850,13 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; - ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAOff; + ctxs->reg[reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" DW_CFA_offset_extended_sf: r%d at cfa%s%d\n", reg, - ctx->reg[ctx->reg_sp][reg].arg < 0 ? "" : "+", - (Int)ctx->reg[ctx->reg_sp][reg].arg); + ctxs->reg[reg].arg < 0 ? "" : "+", + (Int)ctxs->reg[reg].arg); break; case DW_CFA_GNU_negative_offset_extended: @@ -2852,8 +2866,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAOff; - ctx->reg[ctx->reg_sp][reg].arg = (-off) * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAOff; + ctxs->reg[reg].arg = (-off) * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_GNU_negative_offset_extended\n"); break; @@ -2865,7 +2879,7 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ if (restore_ctx == NULL) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg] = restore_ctx->reg[ctx->reg_sp][reg]; + ctxs->reg[reg] = restore_ctx->state[restore_ctx->state_sp].reg[reg]; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_restore_extended\n"); break; @@ -2877,8 +2891,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAValOff; - ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAValOff; + ctxs->reg[reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_val_offset\n"); break; @@ -2890,8 +2904,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_CFAValOff; - ctx->reg[ctx->reg_sp][reg].arg = off * ctx->data_a_f; + ctxs->reg[reg].tag = RR_CFAValOff; + ctxs->reg[reg].arg = off * ctx->data_a_f; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_val_offset_sf\n"); break; @@ -2901,9 +2915,9 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->cfa_is_regoff = True; - ctx->cfa_expr_ix = 0; - ctx->cfa_reg = reg; + ctxs->cfa_is_regoff = True; + ctxs->cfa_expr_ix = 0; + ctxs->cfa_reg = reg; /* ->cfa_off unchanged */ if (di->ddump_frames) VG_(printf)(" DW_CFA_def_cfa_reg: r%d\n", (Int)reg ); @@ -2912,10 +2926,10 @@ static Int run_CF_instruction ( /*MOD*/U case DW_CFA_def_cfa_offset: off = read_leb128( &instr[i], &nleb, 0); i += nleb; - ctx->cfa_is_regoff = True; - ctx->cfa_expr_ix = 0; + ctxs->cfa_is_regoff = True; + ctxs->cfa_expr_ix = 0; /* ->reg is unchanged */ - ctx->cfa_off = off; + ctxs->cfa_off = off; if (di->ddump_frames) VG_(printf)(" DW_CFA_def_cfa_offset: %d\n", (Int)off); break; @@ -2923,12 +2937,12 @@ static Int run_CF_instruction ( /*MOD*/U case DW_CFA_def_cfa_offset_sf: off = read_leb128( &instr[i], &nleb, 1); i += nleb; - ctx->cfa_is_regoff = True; - ctx->cfa_expr_ix = 0; + ctxs->cfa_is_regoff = True; + ctxs->cfa_expr_ix = 0; /* ->reg is unchanged */ - ctx->cfa_off = off * ctx->data_a_f; + ctxs->cfa_off = off * ctx->data_a_f; if (di->ddump_frames) - VG_(printf)(" DW_CFA_def_cfa_offset_sf: %d\n", ctx->cfa_off); + VG_(printf)(" DW_CFA_def_cfa_offset_sf: %d\n", ctxs->cfa_off); break; case DW_CFA_undefined: @@ -2936,8 +2950,8 @@ static Int run_CF_instruction ( /*MOD*/U i += nleb; if (reg < 0 || reg >= N_CFI_REGS) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_Undef; - ctx->reg[ctx->reg_sp][reg].arg = 0; + ctxs->reg[reg].tag = RR_Undef; + ctxs->reg[reg].arg = 0; if (di->ddump_frames) VG_(printf)(" rci:DW_CFA_undefined\n"); break; @@ -2981,8 +2995,8 @@ static Int run_CF_instruction ( /*MOD*/U return 0; /* fail */ /* Add an extra dereference */ j = ML_(CfiExpr_Deref)( ctx->exprs, j ); - ctx->reg[ctx->reg_sp][reg].tag = RR_ValExpr; - ctx->reg[ctx->reg_sp][reg].arg = j; + ctxs->reg[reg].tag = RR_ValExpr; + ctxs->reg[reg].arg = j; break; case DW_CFA_val_expression: @@ -3010,8 +3024,8 @@ static Int run_CF_instruction ( /*MOD*/U } if (j == -1) return 0; /* fail */ - ctx->reg[ctx->reg_sp][reg].tag = RR_ValExpr; - ctx->reg[ctx->reg_sp][reg].arg = j; + ctxs->reg[reg].tag = RR_ValExpr; + ctxs->reg[reg].arg = j; break; case DW_CFA_def_cfa_expression: @@ -3027,10 +3041,10 @@ static Int run_CF_instruction ( /*MOD*/U di->ddump_frames); if (di->ddump_frames) VG_(printf)(")\n"); - ctx->cfa_is_regoff = False; - ctx->cfa_reg = 0; - ctx->cfa_off = 0; - ctx->cfa_expr_ix = j; + ctxs->cfa_is_regoff = False; + ctxs->cfa_reg = 0; + ctxs->cfa_off = 0; + ctxs->cfa_expr_ix = j; break; case DW_CFA_GNU_window_save: @@ -3044,17 +3058,17 @@ static Int run_CF_instruction ( /*MOD*/U if (di->ddump_frames) VG_(printf)(" DW_CFA_remember_state\n"); /* we just checked this at entry, so: */ - vg_assert(ctx->reg_sp >= 0 && ctx->reg_sp < N_RR_STACK); - ctx->reg_sp++; - if (ctx->reg_sp == N_RR_STACK) { + vg_assert(ctx->state_sp >= 0 && ctx->state_sp < N_RR_STACK); + ctx->state_sp++; + if (ctx->state_sp == N_RR_STACK) { /* stack overflow. We're hosed. */ VG_(message)(Vg_DebugMsg, "DWARF2 CFI reader: N_RR_STACK is " "too low; increase and recompile."); i = 0; /* indicate failure */ } else { - VG_(memcpy)(/*dst*/&ctx->reg[ctx->reg_sp], - /*src*/&ctx->reg[ctx->reg_sp - 1], - sizeof(ctx->reg[ctx->reg_sp]) ); + VG_(memcpy)(/*dst*/&ctx->state[ctx->state_sp], + /*src*/&ctx->state[ctx->state_sp - 1], + sizeof(ctx->state[ctx->state_sp]) ); } break; @@ -3062,13 +3076,13 @@ static Int run_CF_instruction ( /*MOD*/U if (di->ddump_frames) VG_(printf)(" DW_CFA_restore_state\n"); /* we just checked this at entry, so: */ - vg_assert(ctx->reg_sp >= 0 && ctx->reg_sp < N_RR_STACK); - if (ctx->reg_sp == 0) { + vg_assert(ctx->state_sp >= 0 && ctx->state_sp < N_RR_STACK); + if (ctx->state_sp == 0) { /* stack overflow. Give up. */ i = 0; /* indicate failure */ } else { /* simply fall back to previous entry */ - ctx->reg_sp--; + ctx->state_sp--; } break; Index: valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/valgrind/devel/valgrind.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- valgrind.spec 13 Jul 2009 11:30:48 -0000 1.63 +++ valgrind.spec 13 Jul 2009 14:17:46 -0000 1.64 @@ -1,7 +1,7 @@ Summary: Tool for finding memory management bugs in programs Name: valgrind Version: 3.4.1 -Release: 4 +Release: 5 Epoch: 1 Source0: http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2 Patch1: valgrind-3.4.1-cachegrind-improvements.patch @@ -9,6 +9,8 @@ Patch2: valgrind-3.4.1-openat.patch Patch3: valgrind-3.4.1-x86_64-ldso-strlen.patch Patch4: valgrind-3.4.1-glibc-2.10.1.patch Patch5: valgrind-3.4.1-dwarf3.patch +Patch6: valgrind-3.4.1-dwarf-cfa-remember-state1.patch +Patch7: valgrind-3.4.1-dwarf-cfa-remember-state2.patch License: GPLv2 URL: http://www.valgrind.org/ Group: Development/Debuggers @@ -67,6 +69,8 @@ or valgrind plugins. %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 +%patch7 -p1 %build %ifarch x86_64 ppc64 @@ -157,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Mon Jul 13 2009 Jakub Jelinek 3.4.1-5 +- add support for DW_CFA_{remember,restore}_state + * Mon Jul 13 2009 Jakub Jelinek 3.4.1-4 - handle version 3 .debug_frame, .eh_frame, .debug_info and .debug_line (#509197) From dcbw at fedoraproject.org Mon Jul 13 14:18:27 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Mon, 13 Jul 2009 14:18:27 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/F-11 NetworkManager-openvpn.spec, 1.32, 1.33 sources, 1.19, 1.20 Message-ID: <20090713141827.972A011C0497@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager-openvpn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31166 Modified Files: NetworkManager-openvpn.spec sources Log Message: * Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 - Update to 0.7.1 - Translation updates Index: NetworkManager-openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/F-11/NetworkManager-openvpn.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- NetworkManager-openvpn.spec 5 Mar 2009 19:20:46 -0000 1.32 +++ NetworkManager-openvpn.spec 13 Jul 2009 14:17:57 -0000 1.33 @@ -1,26 +1,25 @@ -%define nm_version 1:0.7.0.99-1 +%define nm_version 1:0.7.1-1 %define dbus_version 1.1 %define gtk2_version 2.10.0 %define openvpn_version 2.1 %define shared_mime_version 0.16-3 -%define svn_snapshot %{nil} +%define snapshot .git20090713 Summary: NetworkManager VPN plugin for OpenVPN Name: NetworkManager-openvpn Epoch: 1 -Version: 0.7.0.99 -Release: 1%{svn_snapshot}%{?dist} +Version: 0.7.1 +Release: 1%{snapshot}%{?dist} License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ Group: System Environment/Base # How to build the source package: -# - Check out NetworkManager from Gnome SVN, currently trunk is used -# - cd NetworkManager/vpn-daemons/openvpn +# - Check out NetworkManager from Gnome git, currently NETWORKMANAGER_0_7 is used # - ./autogen.sh --prefix=/usr --sysconfdir=/etc # - make distcheck -# - use generated NetworkManager-openvpn-0.7.0.tar.gz -Source: %{name}-%{version}%{svn_snapshot}.tar.gz +# - use generated NetworkManager-openvpn-0.7.1.tar.bz2 +Source: %{name}-%{version}%{snapshot}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: gtk2-devel >= %{gtk2_version} @@ -34,7 +33,6 @@ BuildRequires: libglade2-devel BuildRequires: perl-XML-Parser BuildRequires: libtool intltool gettext BuildRequires: perl -BuildRequires: gnome-common Requires(post): %{_bindir}/update-desktop-database Requires(postun): %{_bindir}/update-desktop-database Requires(post): /sbin/ldconfig @@ -105,6 +103,10 @@ fi %dir %{_datadir}/gnome-vpn-properties/openvpn %changelog +* Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 +- Update to 0.7.1 +- Translation updates + * Thu Mar 5 2009 Dan Williams 1:0.7.0.99-1 - Update to 0.7.1rc3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 5 Mar 2009 19:20:46 -0000 1.19 +++ sources 13 Jul 2009 14:17:57 -0000 1.20 @@ -1 +1 @@ -b38bf19fb7b7cd62ea7ed9143ea02233 NetworkManager-openvpn-0.7.0.99.tar.gz +94227516db7c88a001b737fdec4604a2 NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 From dcbw at fedoraproject.org Mon Jul 13 14:21:59 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Mon, 13 Jul 2009 14:21:59 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/F-10 NetworkManager-openvpn.spec, 1.32, 1.33 sources, 1.19, 1.20 Message-ID: <20090713142159.2B30611C0497@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager-openvpn/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv343 Modified Files: NetworkManager-openvpn.spec sources Log Message: * Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 - Update to 0.7.1 - Translation updates Index: NetworkManager-openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/F-10/NetworkManager-openvpn.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- NetworkManager-openvpn.spec 5 Mar 2009 19:25:49 -0000 1.32 +++ NetworkManager-openvpn.spec 13 Jul 2009 14:21:28 -0000 1.33 @@ -1,26 +1,25 @@ -%define nm_version 1:0.7.0.99-1 +%define nm_version 1:0.7.1-1 %define dbus_version 1.1 %define gtk2_version 2.10.0 %define openvpn_version 2.1 %define shared_mime_version 0.16-3 -%define svn_snapshot %{nil} +%define snapshot .git20090713 Summary: NetworkManager VPN plugin for OpenVPN Name: NetworkManager-openvpn Epoch: 1 -Version: 0.7.0.99 -Release: 1%{svn_snapshot}%{?dist} +Version: 0.7.1 +Release: 1%{snapshot}%{?dist} License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ Group: System Environment/Base # How to build the source package: -# - Check out NetworkManager from Gnome SVN, currently trunk is used -# - cd NetworkManager/vpn-daemons/openvpn +# - Check out NetworkManager from Gnome git, currently NETWORKMANAGER_0_7 is used # - ./autogen.sh --prefix=/usr --sysconfdir=/etc # - make distcheck -# - use generated NetworkManager-openvpn-0.7.0.tar.gz -Source: %{name}-%{version}%{svn_snapshot}.tar.gz +# - use generated NetworkManager-openvpn-0.7.1.tar.bz2 +Source: %{name}-%{version}%{snapshot}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: gtk2-devel >= %{gtk2_version} @@ -34,7 +33,6 @@ BuildRequires: libglade2-devel BuildRequires: perl-XML-Parser BuildRequires: libtool intltool gettext BuildRequires: perl -BuildRequires: gnome-common Requires(post): %{_bindir}/update-desktop-database Requires(postun): %{_bindir}/update-desktop-database Requires(post): /sbin/ldconfig @@ -105,6 +103,10 @@ fi %dir %{_datadir}/gnome-vpn-properties/openvpn %changelog +* Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 +- Update to 0.7.1 +- Translation updates + * Thu Mar 5 2009 Dan Williams 1:0.7.0.99-1 - Update to 0.7.1rc3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/F-10/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 5 Mar 2009 19:25:49 -0000 1.19 +++ sources 13 Jul 2009 14:21:28 -0000 1.20 @@ -1 +1 @@ -b38bf19fb7b7cd62ea7ed9143ea02233 NetworkManager-openvpn-0.7.0.99.tar.gz +94227516db7c88a001b737fdec4604a2 NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 From mbarnes at fedoraproject.org Mon Jul 13 14:27:54 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 14:27:54 +0000 (UTC) Subject: rpms/evolution-data-server/devel .cvsignore, 1.109, 1.110 evolution-data-server.spec, 1.266, 1.267 sources, 1.109, 1.110 evolution-data-server-2.27.3-category-crash.patch, 1.1, NONE Message-ID: <20090713142754.AB8CD11C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2059 Modified Files: .cvsignore evolution-data-server.spec sources Removed Files: evolution-data-server-2.27.3-category-crash.patch Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 - Remove patch for RH bug #505661 (fixed upstream). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/.cvsignore,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- .cvsignore 15 Jun 2009 15:45:49 -0000 1.109 +++ .cvsignore 13 Jul 2009 14:27:24 -0000 1.110 @@ -1 +1 @@ -evolution-data-server-2.27.3.tar.bz2 +evolution-data-server-2.27.4.tar.bz2 Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v retrieving revision 1.266 retrieving revision 1.267 diff -u -p -r1.266 -r1.267 --- evolution-data-server.spec 3 Jul 2009 02:26:15 -0000 1.266 +++ evolution-data-server.spec 13 Jul 2009 14:27:24 -0000 1.267 @@ -27,8 +27,8 @@ ### Abstract ### Name: evolution-data-server -Version: 2.27.3 -Release: 3%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -50,9 +50,6 @@ Patch11: evolution-data-server-1.10.1-ca # RH bug #243296 Patch12: evolution-data-server-1.11.5-fix-64bit-acinclude.patch -# RH bug #505661 / GNOME bug #587165 -Patch13: evolution-data-server-2.27.3-category-crash.patch - ### Build Dependencies ### BuildRequires: GConf2-devel @@ -136,7 +133,6 @@ This package contains developer document %patch10 -p1 -b .fix-ldap-query %patch11 -p1 -b .camel-folder-summary-crash %patch12 -p1 -b .fix-64bit-acinclude -%patch13 -p1 -b .category-crash mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -365,6 +361,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 +- Update to 2.27.4 +- Remove patch for RH bug #505661 (fixed upstream). + * Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.fc12 - Add patch for RH bug #505661 (crash on startup). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/sources,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- sources 15 Jun 2009 15:45:50 -0000 1.109 +++ sources 13 Jul 2009 14:27:24 -0000 1.110 @@ -1 +1 @@ -9945260a68c91d8d088b8bbcf75ccd9a evolution-data-server-2.27.3.tar.bz2 +1b4fea1245774c4e2ee56f90eeb28580 evolution-data-server-2.27.4.tar.bz2 --- evolution-data-server-2.27.3-category-crash.patch DELETED --- From mbarnes at fedoraproject.org Mon Jul 13 14:33:17 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 14:33:17 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116, 1.117 evolution.spec, 1.402, 1.403 sources, 1.116, 1.117 evolution-2.27.3-anjal-support.patch, 1.1, NONE Message-ID: <20090713143317.6F01111C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3338 Modified Files: .cvsignore evolution.spec sources Removed Files: evolution-2.27.3-anjal-support.patch Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- .cvsignore 15 Jun 2009 15:48:28 -0000 1.116 +++ .cvsignore 13 Jul 2009 14:32:46 -0000 1.117 @@ -1 +1 @@ -evolution-2.27.3.tar.bz2 +evolution-2.27.4.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.402 retrieving revision 1.403 diff -u -p -r1.402 -r1.403 --- evolution.spec 10 Jul 2009 15:35:27 -0000 1.402 +++ evolution.spec 13 Jul 2009 14:32:47 -0000 1.403 @@ -42,8 +42,8 @@ ### Abstract ### Name: evolution -Version: 2.27.3 -Release: 5%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -66,9 +66,6 @@ Patch11: evolution-2.5.4-fix-conduit-dir # RH bug #176400 Patch12: evolution-2.9.1-im-context-reset.patch -# Support for building Anjal. -Patch13: evolution-2.27.3-anjal-support.patch - # Let the pst-import plugin work with current libpst. Patch14: evolution-2.27.3-pst-import.patch @@ -245,7 +242,6 @@ This package contains the plugin to impo %patch10 -p1 -b .ldaphack %patch11 -p1 -b .fix-conduit-dir %patch12 -p1 -b .im-context-reset -%patch13 -p1 -b .anjal-support %patch14 -p1 -b .pst-import mkdir -p krb5-fakeprefix/include @@ -701,7 +697,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Fri Jul 10 2009 Matthew Barnes - 2.26.3-2.fc11 +* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 +- Update to 2.27.4 + +* Fri Jul 10 2009 Matthew Barnes - 2.27.3-5.fc11 - Add an evolution-pst subpackage for the PST importer plugin. - Disabled until libpst settles on an API. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- sources 15 Jun 2009 15:48:29 -0000 1.116 +++ sources 13 Jul 2009 14:32:47 -0000 1.117 @@ -1 +1 @@ -31d95df4c3a8f078443ec22a57742aea evolution-2.27.3.tar.bz2 +4fc469d16b3fe8eefbb313f83f7a3f74 evolution-2.27.4.tar.bz2 --- evolution-2.27.3-anjal-support.patch DELETED --- From mhlavink at fedoraproject.org Mon Jul 13 14:33:17 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 13 Jul 2009 14:33:17 +0000 (UTC) Subject: rpms/dovecot/devel .cvsignore, 1.52, 1.53 dovecot-1.1-default-settings.patch, 1.6, 1.7 dovecot.spec, 1.127, 1.128 sources, 1.56, 1.57 Message-ID: <20090713143317.A0E3E11C0497@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3452 Modified Files: .cvsignore dovecot-1.1-default-settings.patch dovecot.spec sources Log Message: update to 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/.cvsignore,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- .cvsignore 6 Apr 2009 08:55:27 -0000 1.52 +++ .cvsignore 13 Jul 2009 14:33:17 -0000 1.53 @@ -1,4 +1,4 @@ -dovecot-1.2-managesieve-0.11.3.tar.gz -dovecot-1.2.rc2.tar.gz -dovecot-1.2.rc2-managesieve-0.11.3.diff.gz -dovecot-sieve-1.1.6.tar.gz +dovecot-1.2.1.tar.gz +dovecot-1.2-managesieve-0.11.7.tar.gz +dovecot-1.2.1-managesieve-0.11.7.diff.gz +dovecot-1.2-sieve-0.1.8.tar.gz dovecot-1.1-default-settings.patch: Index: dovecot-1.1-default-settings.patch =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/dovecot-1.1-default-settings.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dovecot-1.1-default-settings.patch 6 Apr 2009 08:55:28 -0000 1.6 +++ dovecot-1.1-default-settings.patch 13 Jul 2009 14:33:17 -0000 1.7 @@ -1,14 +1,15 @@ -diff -up dovecot-1.2.rc2/dovecot-example.conf.default-settings dovecot-1.2.rc2/dovecot-example.conf ---- dovecot-1.2.rc2/dovecot-example.conf.default-settings 2009-04-06 10:45:53.519651253 +0200 -+++ dovecot-1.2.rc2/dovecot-example.conf 2009-04-06 10:45:53.525647967 +0200 -@@ -10,17 +10,14 @@ +diff -up dovecot-1.2.1/dovecot-example.conf.default-settings dovecot-1.2.1/dovecot-example.conf +--- dovecot-1.2.1/dovecot-example.conf.default-settings 2009-07-13 09:05:54.735890052 +0200 ++++ dovecot-1.2.1/dovecot-example.conf 2009-07-13 09:09:23.309020322 +0200 +@@ -10,18 +10,14 @@ # value inside quotes, eg.: key = "# char and trailing whitespace " # Default values are shown for each setting, it's not required to uncomment --# any of the lines. Exception to this are paths, they're just examples with --# the real defaults being based on configure options. The paths listed here --# are for configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --# --with-ssldir=/etc/ssl +-# those. These are exceptions to this though: No sections (e.g. namespace {}) +-# or plugin settings are added by default, they're listed only as examples. +-# Paths are also just examples with the real defaults being based on configure +-# options. The paths listed here are for configure --prefix=/usr +-# --sysconfdir=/etc --localstatedir=/var --with-ssldir=/etc/ssl +# any of the lines. # Base directory where to store runtime data. @@ -21,7 +22,7 @@ diff -up dovecot-1.2.rc2/dovecot-example # A space separated list of IP or host addresses where to listen in for # connections. "*" listens in all IPv4 interfaces. "[::]" listens in all IPv6 -@@ -42,13 +39,13 @@ +@@ -43,13 +39,13 @@ # listen = *:12000 # .. # } @@ -37,7 +38,7 @@ diff -up dovecot-1.2.rc2/dovecot-example # Should all IMAP and POP3 processes be killed when Dovecot master process # shuts down. Setting this to "no" means that Dovecot can be upgraded without -@@ -95,8 +92,8 @@ +@@ -96,8 +92,8 @@ # dropping root privileges, so keep the key file unreadable by anyone but # root. Included doc/mkcert.sh can be used to easily generate self-signed # certificate, just make sure to update the domains in dovecot-openssl.cnf @@ -48,7 +49,7 @@ diff -up dovecot-1.2.rc2/dovecot-example # If key file is password protected, give the password here. Alternatively # give it when starting dovecot with -p parameter. Since this file is often -@@ -485,7 +482,7 @@ +@@ -486,7 +482,7 @@ # locking methods as well. Some operating systems don't allow using some of # them simultaneously. #mbox_read_locks = fcntl @@ -57,9 +58,9 @@ diff -up dovecot-1.2.rc2/dovecot-example # Maximum time in seconds to wait for lock (all of them) before aborting. #mbox_lock_timeout = 300 -diff -up dovecot-1.2.rc2/src/master/master-settings.c.default-settings dovecot-1.2.rc2/src/master/master-settings.c ---- dovecot-1.2.rc2/src/master/master-settings.c.default-settings 2009-04-06 10:45:53.523648309 +0200 -+++ dovecot-1.2.rc2/src/master/master-settings.c 2009-04-06 10:48:05.630586332 +0200 +diff -up dovecot-1.2.1/src/master/master-settings.c.default-settings dovecot-1.2.1/src/master/master-settings.c +--- dovecot-1.2.1/src/master/master-settings.c.default-settings 2009-07-13 09:05:54.738890180 +0200 ++++ dovecot-1.2.1/src/master/master-settings.c 2009-07-13 09:05:54.742889890 +0200 @@ -178,8 +178,8 @@ struct settings default_settings = { MEMBER(syslog_facility) "mail", Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/dovecot.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- dovecot.spec 20 Apr 2009 08:57:40 -0000 1.127 +++ dovecot.spec 13 Jul 2009 14:33:17 -0000 1.128 @@ -1,9 +1,8 @@ Summary: Secure imap and pop3 server Name: dovecot Epoch: 1 -Version: 1.2 -%define betaver rc3 -Release: 0.%{betaver}.1%{?dist} +Version: 1.2.1 +Release: 1%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -15,13 +14,14 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 1.1.6 -%define sieve_name dovecot-sieve -%define managesieve_version 0.11.4 -%define managesieve_name dovecot-%{version}-managesieve +%define sieve_version 0.1.8 +%define sieve_name dovecot-1.2-sieve +%define managesieve_version 0.11.7 +#define managesieve_name dovecot-%{version}-managesieve +%define managesieve_name dovecot-1.2-managesieve URL: http://www.dovecot.org/ -Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.%{betaver}.tar.gz +Source: http://www.dovecot.org/releases/1.2/%{name}-%{version}.tar.gz Source1: dovecot.init Source2: dovecot.pam Source3: maildir-migration.txt @@ -29,10 +29,11 @@ Source4: migrate-folders Source5: migrate-users Source6: perfect_maildir.pl Source7: dovecot-REDHAT-FAQ.txt -Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz +#Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz +Source8: http://www.rename-it.nl/dovecot/1.2/%{sieve_name}-%{sieve_version}.tar.gz Source9: dovecot.sysconfig Source10: http://www.rename-it.nl/dovecot/1.2/%{managesieve_name}-%{managesieve_version}.tar.gz -Source11: http://www.rename-it.nl/dovecot/1.2/dovecot-%{version}.%{betaver}-managesieve-%{managesieve_version}.diff.gz +Source11: http://www.rename-it.nl/dovecot/1.2/dovecot-%{version}-managesieve-%{managesieve_version}.diff.gz # 3x Fedora specific Patch1: dovecot-1.1-default-settings.patch @@ -162,10 +163,8 @@ Group: Development/Libraries %description devel This package provides the development files for dovecot. - %prep - -%setup -q -n %{name}-%{version}.%{betaver} +%setup -q zcat %{SOURCE11} | patch -p1 --fuzz=0 -s %patch1 -p1 -b .default-settings @@ -173,11 +172,11 @@ zcat %{SOURCE11} | patch -p1 --fuzz=0 -s %patch3 -p1 -b .mkcert-paths %if %{build_sieve} -%setup -q -n %{name}-%{version}.%{betaver} -D -T -a 8 +%setup -q -D -T -a 8 %endif %if %{build_managesieve} -%setup -q -n %{name}-%{version}.%{betaver} -D -T -a 10 +%setup -q -D -T -a 10 %endif %build @@ -376,7 +375,14 @@ fi %if %{build_sieve} %files sieve %defattr(-,root,root,-) -%{_libdir}/%{name}/lda/lib90_cmusieve_plugin.so +#%{_libdir}/%{name}/lda/lib90_cmusieve_plugin.so +%{_bindir}/sieve-filter +%{_bindir}/sieve-test +%{_bindir}/sievec +%{_bindir}/sieved +%{_mandir}/man1/sieve-test.1.gz +%{_mandir}/man1/sievec.1.gz +%{_mandir}/man1/sieved.1.gz %endif %if %{build_managesieve} @@ -429,6 +435,13 @@ fi %changelog +* Mon Jul 13 2009 Michal Hlavinka - 1:1.2.1-1 +- updated to 1.2.1 +- GSSAPI authentication is fixed (#506782) +- logins now fail if home directory path is relative, because it was + not working correctly and never was expected to work +- sieve and managesieve update + * Mon Apr 20 2009 Michal Hlavinka - 1:1.2-0.rc3.1 - updated to 1.2.rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/sources,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- sources 20 Apr 2009 07:51:18 -0000 1.56 +++ sources 13 Jul 2009 14:33:17 -0000 1.57 @@ -1,4 +1,4 @@ -66ce5ff7faff318a943a1b62b765c127 dovecot-1.2-managesieve-0.11.4.tar.gz -5ef845d0c137a6fd4cca8453073cd6b4 dovecot-1.2.rc3.tar.gz -50e849383089b4abb2718e8aa004f3be dovecot-1.2.rc3-managesieve-0.11.4.diff.gz -7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz +c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz +61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz +a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz +364ca99ec75d7c149ed2f2de15debf8a dovecot-1.2-sieve-0.1.8.tar.gz From sgrubb at fedoraproject.org Mon Jul 13 14:38:18 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Mon, 13 Jul 2009 14:38:18 +0000 (UTC) Subject: rpms/libpreludedb/devel .cvsignore, 1.6, 1.7 libpreludedb.spec, 1.20, 1.21 sources, 1.6, 1.7 libpreludedb-x86_64-sqlite3.patch, 1.5, NONE Message-ID: <20090713143818.BF06411C0497@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/libpreludedb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4674 Modified Files: .cvsignore libpreludedb.spec sources Removed Files: libpreludedb-x86_64-sqlite3.patch Log Message: * Mon Jul 13 2009 Steve Grubb 0.9.15.2-1 - new upstream bugfix release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libpreludedb/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 14 Sep 2008 12:11:14 -0000 1.6 +++ .cvsignore 13 Jul 2009 14:37:48 -0000 1.7 @@ -2,3 +2,4 @@ libpreludedb-0.9.11.1.tar.gz libpreludedb-0.9.14.1.tar.gz libpreludedb-0.9.15.tar.gz libpreludedb-0.9.15.1.tar.gz +libpreludedb-0.9.15.2.tar.gz Index: libpreludedb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpreludedb/devel/libpreludedb.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libpreludedb.spec 25 Feb 2009 17:36:09 -0000 1.20 +++ libpreludedb.spec 13 Jul 2009 14:37:48 -0000 1.21 @@ -2,15 +2,14 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libpreludedb -Version: 0.9.15.1 -Release: 4%{?dist} +Version: 0.9.15.2 +Release: 1%{?dist} Summary: Provide the framework for easy access to the Prelude database Group: System Environment/Libraries License: GPLv2+ URL: http://prelude-ids.org/ Source0: http://prelude-ids.org/download/releases/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch1: %{name}-x86_64-sqlite3.patch BuildRequires: libprelude, libprelude-devel, mysql-devel, postgresql-devel, python-devel, sqlite-devel, perl-devel @@ -77,7 +76,6 @@ Perl bindings for libpreludedb. %prep %setup -q -%patch1 -p1 %build @@ -165,6 +163,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Steve Grubb 0.9.15.2-1 +- new upstream bugfix release + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.15.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libpreludedb/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 14 Sep 2008 12:11:15 -0000 1.6 +++ sources 13 Jul 2009 14:37:48 -0000 1.7 @@ -1 +1 @@ -792b6ce058e4b9db44279409dbc662a3 libpreludedb-0.9.15.1.tar.gz +ff3ed03dcb64a418f4c362a9bf86099b libpreludedb-0.9.15.2.tar.gz --- libpreludedb-x86_64-sqlite3.patch DELETED --- From than at fedoraproject.org Mon Jul 13 14:39:10 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 13 Jul 2009 14:39:10 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs-4.2.96-parallel_devel.patch, NONE, 1.1 kdelibs.spec, 1.487, 1.488 kdelibs-4.1.96-parallel_devel.patch, 1.3, NONE Message-ID: <20090713143910.5347911C0497@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4911 Modified Files: kdelibs.spec Added Files: kdelibs-4.2.96-parallel_devel.patch Removed Files: kdelibs-4.1.96-parallel_devel.patch Log Message: adapt parallel_devel patch kdelibs-4.2.96-parallel_devel.patch: --- NEW FILE kdelibs-4.2.96-parallel_devel.patch --- diff -up kdelibs-4.2.96/cmake/modules/FindKDE4Internal.cmake.parallel_devel kdelibs-4.2.96/cmake/modules/FindKDE4Internal.cmake --- kdelibs-4.2.96/cmake/modules/FindKDE4Internal.cmake.parallel_devel 2009-07-08 16:41:09.000000000 +0200 +++ kdelibs-4.2.96/cmake/modules/FindKDE4Internal.cmake 2009-07-13 16:32:48.000000000 +0200 @@ -15,10 +15,10 @@ # The following variables are defined for the various tools required to # compile KDE software: # -# KDE4_KCFGC_EXECUTABLE - the kconfig_compiler executable +# KDE4_KCFGC_EXECUTABLE - the kconfig_compiler4 executable # KDE4_AUTOMOC_EXECUTABLE - the kde4automoc executable, deprecated, use AUTOMOC4_EXECUTABLE instead # KDE4_MEINPROC_EXECUTABLE - the meinproc4 executable -# KDE4_MAKEKDEWIDGETS_EXECUTABLE - the makekdewidgets executable +# KDE4_MAKEKDEWIDGETS_EXECUTABLE - the makekdewidgets4 executable # # The following variables point to the location of the KDE libraries, # but shouldn't be used directly: @@ -129,7 +129,7 @@ # Use optional GENERATE_MOC to generate moc if you use signals in your kcfg files. # # KDE4_ADD_WIDGET_FILES (SRCS_VAR file1.widgets ... fileN.widgets) -# Use this to add widget description files for the makekdewidgets code generator +# Use this to add widget description files for the makekdewidgets4 code generator # for Qt Designer plugins. # # KDE4_CREATE_FINAL_FILES (filename_CXX filename_C file1 ... fileN) @@ -383,23 +383,23 @@ if (_kdeBootStrapping) if (WIN32) set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH} ) # CMAKE_CFG_INTDIR is the output subdirectory created e.g. by XCode and MSVC - set(KDE4_KCFGC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/kconfig_compiler ) + set(KDE4_KCFGC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/kconfig_compiler4 ) set(KDE4_MEINPROC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/meinproc4 ) - set(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/makekdewidgets ) + set(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/makekdewidgets4 ) else (WIN32) set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib ) - set(KDE4_KCFGC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/kconfig_compiler.shell ) + set(KDE4_KCFGC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/kconfig_compiler4.shell ) set(KDE4_MEINPROC_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/meinproc4.shell ) - set(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/makekdewidgets.shell ) + set(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}/makekdewidgets4.shell ) endif (WIN32) set(KDE4_LIB_DIR ${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}) # when building kdelibs, make the kcfg rules depend on the binaries... - set( _KDE4_KCONFIG_COMPILER_DEP kconfig_compiler) - set( _KDE4_MAKEKDEWIDGETS_DEP makekdewidgets) + set( _KDE4_KCONFIG_COMPILER_DEP kconfig_compiler4) + set( _KDE4_MAKEKDEWIDGETS_DEP makekdewidgets4) set( _KDE4_MEINPROC_EXECUTABLE_DEP meinproc4) set(KDE4_INSTALLED_VERSION_OK TRUE) @@ -497,7 +497,8 @@ else (_kdeBootStrapping) # KDE4_LIB_INSTALL_DIR and KDE4_INCLUDE_INSTALL_DIR are set in KDELibsDependencies.cmake, # use them to set the KDE4_LIB_DIR and KDE4_INCLUDE_DIR "public interface" variables - set(KDE4_LIB_DIR ${KDE4_LIB_INSTALL_DIR} ) + set(KDE4_LIB_DIR ${KDE4_LIB_INSTALL_DIR}/kde4/devel ) + link_directories("${KDE4_LIB_DIR}") set(KDE4_INCLUDE_DIR ${KDE4_INCLUDE_INSTALL_DIR} ) @@ -510,12 +511,12 @@ else (_kdeBootStrapping) # get the build CONFIGURATIONS which were exported in this file, and use just the first # of them to get the location of the installed executables - get_target_property(_importedConfigurations ${KDE4_TARGET_PREFIX}kconfig_compiler IMPORTED_CONFIGURATIONS ) + get_target_property(_importedConfigurations ${KDE4_TARGET_PREFIX}kconfig_compiler4 IMPORTED_CONFIGURATIONS ) list(GET _importedConfigurations 0 _firstConfig) - get_target_property(KDE4_KCFGC_EXECUTABLE ${KDE4_TARGET_PREFIX}kconfig_compiler LOCATION_${_firstConfig}) + get_target_property(KDE4_KCFGC_EXECUTABLE ${KDE4_TARGET_PREFIX}kconfig_compiler4 LOCATION_${_firstConfig}) get_target_property(KDE4_MEINPROC_EXECUTABLE ${KDE4_TARGET_PREFIX}meinproc4 LOCATION_${_firstConfig}) - get_target_property(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${KDE4_TARGET_PREFIX}makekdewidgets LOCATION_${_firstConfig}) + get_target_property(KDE4_MAKEKDEWIDGETS_EXECUTABLE ${KDE4_TARGET_PREFIX}makekdewidgets4 LOCATION_${_firstConfig}) # allow searching cmake modules in all given kde install locations (KDEDIRS based) execute_process(COMMAND "${KDE4_KDECONFIG_EXECUTABLE}" --path data OUTPUT_VARIABLE _data_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) @@ -782,7 +783,8 @@ set(CMAKE_SYSTEM_INCLUDE_PATH ${CMAKE_SY set(CMAKE_SYSTEM_PROGRAM_PATH ${CMAKE_SYSTEM_PROGRAM_PATH} "${KDE4_BIN_INSTALL_DIR}" ) -set(CMAKE_SYSTEM_LIBRARY_PATH ${CMAKE_SYSTEM_LIBRARY_PATH} +set(CMAKE_SYSTEM_LIBRARY_PATH "${KDE4_LIB_INSTALL_DIR}/kde4/devel" + ${CMAKE_SYSTEM_LIBRARY_PATH} "${KDE4_LIB_INSTALL_DIR}" ) # under Windows dlls may be also installed in bin/ @@ -1166,9 +1168,9 @@ macro (KDE4_PRINT_RESULTS) endif (NOT _kdeBootStrapping) if(KDE4_KCFGC_EXECUTABLE) - message(STATUS "Found the KDE4 kconfig_compiler preprocessor: ${KDE4_KCFGC_EXECUTABLE}") + message(STATUS "Found the KDE4 kconfig_compiler4 preprocessor: ${KDE4_KCFGC_EXECUTABLE}") else(KDE4_KCFGC_EXECUTABLE) - message(STATUS "Didn't find the KDE4 kconfig_compiler preprocessor") + message(STATUS "Didn't find the KDE4 kconfig_compiler4 preprocessor") endif(KDE4_KCFGC_EXECUTABLE) if(AUTOMOC4_EXECUTABLE) @@ -1187,7 +1189,7 @@ if (KDE4Internal_FIND_REQUIRED AND NOT K endif (NOT KDE4_INSTALLED_VERSION_OK) if (NOT KDE4_KCFGC_EXECUTABLE) - message(FATAL_ERROR "ERROR: could not detect a usable kconfig_compiler") + message(FATAL_ERROR "ERROR: could not detect a usable kconfig_compiler4") endif (NOT KDE4_KCFGC_EXECUTABLE) message(FATAL_ERROR "ERROR: could NOT find everything required for compiling KDE 4 programs") diff -up kdelibs-4.2.96/doc/api/doxygen-preprocess-kcfg.sh.parallel_devel kdelibs-4.2.96/doc/api/doxygen-preprocess-kcfg.sh --- kdelibs-4.2.96/doc/api/doxygen-preprocess-kcfg.sh.parallel_devel 2008-05-21 13:07:26.000000000 +0200 +++ kdelibs-4.2.96/doc/api/doxygen-preprocess-kcfg.sh 2009-07-13 16:26:04.000000000 +0200 @@ -2,9 +2,9 @@ # Generates and cleans KConfigXT source code during a API dox build # -kcfg_compiler="`kde4-config --prefix`/bin/kconfig_compiler" +kcfg_compiler="`kde4-config --prefix`/bin/kconfig_compiler4" if test -z "$kcfg_compiler"; then - echo "kconfig_compiler not found!" + echo "kconfig_compiler4 not found!" exit 1; fi diff -up kdelibs-4.2.96/kdecore/kconfig_compiler/checkkcfg.pl.parallel_devel kdelibs-4.2.96/kdecore/kconfig_compiler/checkkcfg.pl --- kdelibs-4.2.96/kdecore/kconfig_compiler/checkkcfg.pl.parallel_devel 2008-05-21 13:09:13.000000000 +0200 +++ kdelibs-4.2.96/kdecore/kconfig_compiler/checkkcfg.pl 2009-07-13 16:26:04.000000000 +0200 @@ -15,12 +15,12 @@ $file_cpp = "$filebase.cpp"; $kcfgc = $file . "c"; -$cmd = "./kconfig_compiler $file $kcfgc"; +$cmd = "./kconfig_compiler4 $file $kcfgc"; #print "CMD $cmd\n"; if ( system( $cmd ) != 0 ) { - print STDERR "Unable to run kconfig_compiler\n"; + print STDERR "Unable to run kconfig_compiler4\n"; exit 1; } diff -up kdelibs-4.2.96/kdecore/kconfig_compiler/CMakeLists.txt.parallel_devel kdelibs-4.2.96/kdecore/kconfig_compiler/CMakeLists.txt --- kdelibs-4.2.96/kdecore/kconfig_compiler/CMakeLists.txt.parallel_devel 2009-01-06 18:27:49.000000000 +0100 +++ kdelibs-4.2.96/kdecore/kconfig_compiler/CMakeLists.txt 2009-07-13 16:26:04.000000000 +0200 @@ -8,13 +8,13 @@ add_subdirectory( example ) set(kconfig_compiler_SRCS kconfig_compiler.cpp) -kde4_add_executable(kconfig_compiler NOGUI RUN_UNINSTALLED ${kconfig_compiler_SRCS}) +kde4_add_executable(kconfig_compiler4 NOGUI RUN_UNINSTALLED ${kconfig_compiler_SRCS}) -target_link_libraries(kconfig_compiler ${QT_QTCORE_LIBRARY} ${QT_QTXML_LIBRARY} ) +target_link_libraries(kconfig_compiler4 ${QT_QTCORE_LIBRARY} ${QT_QTXML_LIBRARY} ) # "export" this target too so we can use the LOCATION property of the imported target in # FindKDE4Internal.cmake to get the full path to the installed executable instead of using FIND_PROGRAM(), Alex -install(TARGETS kconfig_compiler EXPORT kdelibsToolsTargets ${INSTALL_TARGETS_DEFAULT_ARGS} ) +install(TARGETS kconfig_compiler4 EXPORT kdelibsToolsTargets ${INSTALL_TARGETS_DEFAULT_ARGS} ) ########### install files ############### diff -up kdelibs-4.2.96/kdeui/tests/kconfig_compiler/CMakeLists.txt.parallel_devel kdelibs-4.2.96/kdeui/tests/kconfig_compiler/CMakeLists.txt --- kdelibs-4.2.96/kdeui/tests/kconfig_compiler/CMakeLists.txt.parallel_devel 2008-05-21 13:08:30.000000000 +0200 +++ kdelibs-4.2.96/kdeui/tests/kconfig_compiler/CMakeLists.txt 2009-07-13 16:26:04.000000000 +0200 @@ -9,7 +9,7 @@ macro(GEN_KCFG_TEST_SOURCE _testName _sr add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_testName}.cpp ${CMAKE_CURRENT_BINARY_DIR}/${_testName}.h COMMAND ${KDE4_KCFGC_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfg ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfgc - DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfg ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfgc kconfig_compiler) + DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfg ${CMAKE_CURRENT_SOURCE_DIR}/${_testName}.kcfgc kconfig_compiler4) # set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${_testName}.h PROPERTIES GENERATED TRUE) qt4_generate_moc(${CMAKE_CURRENT_BINARY_DIR}/${_testName}.h ${CMAKE_CURRENT_BINARY_DIR}/${_testName}.moc ) diff -up kdelibs-4.2.96/kdewidgets/CMakeLists.txt.parallel_devel kdelibs-4.2.96/kdewidgets/CMakeLists.txt --- kdelibs-4.2.96/kdewidgets/CMakeLists.txt.parallel_devel 2009-01-06 18:27:44.000000000 +0100 +++ kdelibs-4.2.96/kdewidgets/CMakeLists.txt 2009-07-13 16:26:04.000000000 +0200 @@ -14,24 +14,24 @@ include_directories( set(makekdewidgets_SRCS makekdewidgets.cpp ) -kde4_add_executable(makekdewidgets NOGUI RUN_UNINSTALLED ${makekdewidgets_SRCS}) +kde4_add_executable(makekdewidgets4 NOGUI RUN_UNINSTALLED ${makekdewidgets_SRCS}) -target_link_libraries(makekdewidgets ${KDE4_KDECORE_LIBS} ) +target_link_libraries(makekdewidgets4 ${KDE4_KDECORE_LIBS} ) # "export" this target too so we can use the LOCATION property of the imported target in # FindKDE4Internal.cmake to get the full path to the installed executable instead of using FIND_PROGRAM(), Alex -install(TARGETS makekdewidgets EXPORT kdelibsToolsTargets ${INSTALL_TARGETS_DEFAULT_ARGS} ) +install(TARGETS makekdewidgets4 EXPORT kdelibsToolsTargets ${INSTALL_TARGETS_DEFAULT_ARGS} ) ########### next target ############### # get the name of the generated wrapper script (which sets up LD_LIBRARY_PATH) -get_target_property(MAKEKDEWIDGETS_EXECUTABLE makekdewidgets WRAPPER_SCRIPT) +get_target_property(MAKEKDEWIDGETS_EXECUTABLE makekdewidgets4 WRAPPER_SCRIPT) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kdewidgets.cpp COMMAND "${MAKEKDEWIDGETS_EXECUTABLE}" -o ${CMAKE_CURRENT_BINARY_DIR}/kdewidgets.cpp ${CMAKE_CURRENT_SOURCE_DIR}/kde.widgets - MAIN_DEPENDENCY kde.widgets DEPENDS makekdewidgets) + MAIN_DEPENDENCY kde.widgets DEPENDS makekdewidgets4) set(kdewidgets_PART_SRCS classpreviews.cpp @@ -66,7 +66,7 @@ if (QT_QT3SUPPORT_FOUND) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp COMMAND "${MAKEKDEWIDGETS_EXECUTABLE}" -o ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp ${CMAKE_CURRENT_SOURCE_DIR}/kde3support.widgets - MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets) + MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets4) set(kde3supportwidgets_PART_SRCS classpreviews.cpp Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.487 retrieving revision 1.488 diff -u -p -r1.487 -r1.488 --- kdelibs.spec 13 Jul 2009 05:24:49 -0000 1.487 +++ kdelibs.spec 13 Jul 2009 14:39:09 -0000 1.488 @@ -58,7 +58,7 @@ Source1: kde4.sh Source2: kde4.csh # make -devel packages parallel-installable -Patch0: kdelibs-4.1.96-parallel_devel.patch +Patch0: kdelibs-4.2.96-parallel_devel.patch # fix kde#149705 Patch2: kdelibs-4.2.85-kde149705.patch # Hunspell support for K3Spell --- kdelibs-4.1.96-parallel_devel.patch DELETED --- From tgl at fedoraproject.org Mon Jul 13 14:40:28 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Mon, 13 Jul 2009 14:40:28 +0000 (UTC) Subject: rpms/libtiff/devel libtiff-3.8.2-CVE-2009-2347.patch, NONE, 1.1 libtiff.spec, 1.54, 1.55 Message-ID: <20090713144028.C5F6711C0497@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5496 Modified Files: libtiff.spec Added Files: libtiff-3.8.2-CVE-2009-2347.patch Log Message: Fix CVE-2009-2347 libtiff-3.8.2-CVE-2009-2347.patch: --- NEW FILE libtiff-3.8.2-CVE-2009-2347.patch --- Fix several places in tiff2rgba and rgb2ycbcr that were being careless about possible integer overflow in calculation of buffer sizes. CVE-2009-2347 diff -Naur tiff-3.8.2.orig/tools/rgb2ycbcr.c tiff-3.8.2/tools/rgb2ycbcr.c --- tiff-3.8.2.orig/tools/rgb2ycbcr.c 2004-09-03 03:57:13.000000000 -0400 +++ tiff-3.8.2/tools/rgb2ycbcr.c 2009-07-10 17:12:32.000000000 -0400 @@ -202,6 +202,17 @@ #undef LumaBlue #undef V2Code +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + /* * Convert a strip of RGB data to YCbCr and * sample to generate the output data. @@ -278,10 +289,19 @@ float floatv; char *stringv; uint32 longv; + tsize_t raster_size; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); diff -Naur tiff-3.8.2.orig/tools/tiff2rgba.c tiff-3.8.2/tools/tiff2rgba.c --- tiff-3.8.2.orig/tools/tiff2rgba.c 2004-11-07 06:08:37.000000000 -0500 +++ tiff-3.8.2/tools/tiff2rgba.c 2009-07-10 17:06:42.000000000 -0400 @@ -124,6 +124,17 @@ return (0); } +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + static int cvt_by_tile( TIFF *in, TIFF *out ) @@ -133,6 +144,7 @@ uint32 tile_width, tile_height; uint32 row, col; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -150,7 +162,14 @@ /* * Allocate tile buffer */ - raster = (uint32*)_TIFFmalloc(tile_width * tile_height * sizeof (uint32)); + raster_size = multiply(multiply(tile_width, tile_height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) tile_width, (unsigned long) tile_height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -158,7 +177,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(tile_width * sizeof (uint32)); if (!wrk_line) { @@ -226,6 +245,7 @@ uint32 width, height; /* image width & height */ uint32 row; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -241,7 +261,14 @@ /* * Allocate strip buffer */ - raster = (uint32*)_TIFFmalloc(width * rowsperstrip * sizeof (uint32)); + raster_size = multiply(multiply(width, rowsperstrip), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) rowsperstrip); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -249,7 +276,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(width * sizeof (uint32)); if (!wrk_line) { @@ -328,14 +355,22 @@ uint32* raster; /* retrieve RGBA image */ uint32 width, height; /* image width & height */ uint32 row; - + tsize_t raster_size; + TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); rowsperstrip = TIFFDefaultStripSize(out, rowsperstrip); TIFFSetField(out, TIFFTAG_ROWSPERSTRIP, rowsperstrip); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -353,7 +388,7 @@ */ if( no_alpha ) { - int pixel_count = width * height; + tsize_t pixel_count = (tsize_t) width * (tsize_t) height; unsigned char *src, *dst; src = (unsigned char *) raster; Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/devel/libtiff.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- libtiff.spec 1 Jul 2009 14:53:40 -0000 1.54 +++ libtiff.spec 13 Jul 2009 14:39:58 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 13%{?dist} +Release: 14%{?dist} License: libtiff Group: System Environment/Libraries URL: http://www.remotesensing.org/libtiff/ @@ -12,6 +12,7 @@ Patch1: libtiff-3.8.2-ormandy.patch Patch2: libtiff-3.8.2-CVE-2006-2193.patch Patch3: libtiff-3.8.2-mantypo.patch Patch4: libtiff-3.8.2-lzw-bugs.patch +Patch5: libtiff-3.8.2-CVE-2009-2347.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: zlib-devel libjpeg-devel @@ -58,6 +59,7 @@ necessary for some boot packages. %patch2 -p1 -b .CVE-2006-2193 %patch3 -p1 -b .mantypo %patch4 -p1 +%patch5 -p1 %build export CFLAGS="%{optflags} -fno-strict-aliasing" @@ -157,6 +159,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Mon Jul 13 2009 Tom Lane 3.8.2-14 +- Fix buffer overrun risks caused by unchecked integer overflow (CVE-2009-2347) +Related: #510041 + * Wed Jul 1 2009 Tom Lane 3.8.2-13 - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #507465 From tgl at fedoraproject.org Mon Jul 13 14:42:40 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Mon, 13 Jul 2009 14:42:40 +0000 (UTC) Subject: rpms/libtiff/F-11 libtiff-3.8.2-CVE-2009-2347.patch, NONE, 1.1 libtiff.spec, 1.54, 1.55 Message-ID: <20090713144240.D068A11C0497@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6146 Modified Files: libtiff.spec Added Files: libtiff-3.8.2-CVE-2009-2347.patch Log Message: Fix CVE-2009-2347 libtiff-3.8.2-CVE-2009-2347.patch: --- NEW FILE libtiff-3.8.2-CVE-2009-2347.patch --- Fix several places in tiff2rgba and rgb2ycbcr that were being careless about possible integer overflow in calculation of buffer sizes. CVE-2009-2347 diff -Naur tiff-3.8.2.orig/tools/rgb2ycbcr.c tiff-3.8.2/tools/rgb2ycbcr.c --- tiff-3.8.2.orig/tools/rgb2ycbcr.c 2004-09-03 03:57:13.000000000 -0400 +++ tiff-3.8.2/tools/rgb2ycbcr.c 2009-07-10 17:12:32.000000000 -0400 @@ -202,6 +202,17 @@ #undef LumaBlue #undef V2Code +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + /* * Convert a strip of RGB data to YCbCr and * sample to generate the output data. @@ -278,10 +289,19 @@ float floatv; char *stringv; uint32 longv; + tsize_t raster_size; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); diff -Naur tiff-3.8.2.orig/tools/tiff2rgba.c tiff-3.8.2/tools/tiff2rgba.c --- tiff-3.8.2.orig/tools/tiff2rgba.c 2004-11-07 06:08:37.000000000 -0500 +++ tiff-3.8.2/tools/tiff2rgba.c 2009-07-10 17:06:42.000000000 -0400 @@ -124,6 +124,17 @@ return (0); } +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + static int cvt_by_tile( TIFF *in, TIFF *out ) @@ -133,6 +144,7 @@ uint32 tile_width, tile_height; uint32 row, col; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -150,7 +162,14 @@ /* * Allocate tile buffer */ - raster = (uint32*)_TIFFmalloc(tile_width * tile_height * sizeof (uint32)); + raster_size = multiply(multiply(tile_width, tile_height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) tile_width, (unsigned long) tile_height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -158,7 +177,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(tile_width * sizeof (uint32)); if (!wrk_line) { @@ -226,6 +245,7 @@ uint32 width, height; /* image width & height */ uint32 row; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -241,7 +261,14 @@ /* * Allocate strip buffer */ - raster = (uint32*)_TIFFmalloc(width * rowsperstrip * sizeof (uint32)); + raster_size = multiply(multiply(width, rowsperstrip), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) rowsperstrip); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -249,7 +276,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(width * sizeof (uint32)); if (!wrk_line) { @@ -328,14 +355,22 @@ uint32* raster; /* retrieve RGBA image */ uint32 width, height; /* image width & height */ uint32 row; - + tsize_t raster_size; + TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); rowsperstrip = TIFFDefaultStripSize(out, rowsperstrip); TIFFSetField(out, TIFFTAG_ROWSPERSTRIP, rowsperstrip); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -353,7 +388,7 @@ */ if( no_alpha ) { - int pixel_count = width * height; + tsize_t pixel_count = (tsize_t) width * (tsize_t) height; unsigned char *src, *dst; src = (unsigned char *) raster; Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-11/libtiff.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- libtiff.spec 1 Jul 2009 15:13:39 -0000 1.54 +++ libtiff.spec 13 Jul 2009 14:42:10 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 13%{?dist} +Release: 14%{?dist} License: libtiff Group: System Environment/Libraries URL: http://www.remotesensing.org/libtiff/ @@ -12,6 +12,7 @@ Patch1: libtiff-3.8.2-ormandy.patch Patch2: libtiff-3.8.2-CVE-2006-2193.patch Patch3: libtiff-3.8.2-mantypo.patch Patch4: libtiff-3.8.2-lzw-bugs.patch +Patch5: libtiff-3.8.2-CVE-2009-2347.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: zlib-devel libjpeg-devel @@ -58,6 +59,7 @@ necessary for some boot packages. %patch2 -p1 -b .CVE-2006-2193 %patch3 -p1 -b .mantypo %patch4 -p1 +%patch5 -p1 %build export CFLAGS="%{optflags} -fno-strict-aliasing" @@ -157,6 +159,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Mon Jul 13 2009 Tom Lane 3.8.2-14 +- Fix buffer overrun risks caused by unchecked integer overflow (CVE-2009-2347) +Related: #510041 + * Wed Jul 1 2009 Tom Lane 3.8.2-13 - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #507465 From mjakubicek at fedoraproject.org Mon Jul 13 14:43:21 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Mon, 13 Jul 2009 14:43:21 +0000 (UTC) Subject: rpms/orsa/devel orsa.spec,1.8,1.9 Message-ID: <20090713144321.96C9C11C0497@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/orsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6496 Modified Files: orsa.spec Log Message: - Temporarily disabled MPI support as current openmpi builds do not ship -devel, nor its previous content in the main package Index: orsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/orsa/devel/orsa.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- orsa.spec 13 Jul 2009 13:58:07 -0000 1.8 +++ orsa.spec 13 Jul 2009 14:43:21 -0000 1.9 @@ -32,7 +32,8 @@ BuildRequires: fftw2-devel BuildRequires: gsl-devel BuildRequires: cln-devel BuildRequires: ginac-devel -BuildRequires: openmpi-devel +# Temporarily disabled as current openmpi builds do not ship -devel, nor its previous content in the main package +# BuildRequires: openmpi-devel %description ORSA is an interactive tool for scientific grade Celestial Mechanics @@ -95,6 +96,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Mon Jul 13 2009 Milos Jakubicek - 0.7.0-9 - Rebuilt against new cln 1.3.0 +- Temporarily disabled MPI support as current openmpi builds do not ship -devel, + nor its previous content in the main package * Sun Apr 12 2009 Milos Jakubicek - 0.7.0-8 - Do not complain at all if the configuration file is missing. From tgl at fedoraproject.org Mon Jul 13 14:44:47 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Mon, 13 Jul 2009 14:44:47 +0000 (UTC) Subject: rpms/libtiff/F-10 libtiff-3.8.2-CVE-2009-2347.patch, NONE, 1.1 libtiff.spec, 1.53, 1.54 Message-ID: <20090713144447.E8C0D11C0497@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/libtiff/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6916 Modified Files: libtiff.spec Added Files: libtiff-3.8.2-CVE-2009-2347.patch Log Message: Fix CVE-2009-2347 libtiff-3.8.2-CVE-2009-2347.patch: --- NEW FILE libtiff-3.8.2-CVE-2009-2347.patch --- Fix several places in tiff2rgba and rgb2ycbcr that were being careless about possible integer overflow in calculation of buffer sizes. CVE-2009-2347 diff -Naur tiff-3.8.2.orig/tools/rgb2ycbcr.c tiff-3.8.2/tools/rgb2ycbcr.c --- tiff-3.8.2.orig/tools/rgb2ycbcr.c 2004-09-03 03:57:13.000000000 -0400 +++ tiff-3.8.2/tools/rgb2ycbcr.c 2009-07-10 17:12:32.000000000 -0400 @@ -202,6 +202,17 @@ #undef LumaBlue #undef V2Code +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + /* * Convert a strip of RGB data to YCbCr and * sample to generate the output data. @@ -278,10 +289,19 @@ float floatv; char *stringv; uint32 longv; + tsize_t raster_size; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); diff -Naur tiff-3.8.2.orig/tools/tiff2rgba.c tiff-3.8.2/tools/tiff2rgba.c --- tiff-3.8.2.orig/tools/tiff2rgba.c 2004-11-07 06:08:37.000000000 -0500 +++ tiff-3.8.2/tools/tiff2rgba.c 2009-07-10 17:06:42.000000000 -0400 @@ -124,6 +124,17 @@ return (0); } +static tsize_t +multiply(tsize_t m1, tsize_t m2) +{ + tsize_t prod = m1 * m2; + + if (m1 && prod / m1 != m2) + prod = 0; /* overflow */ + + return prod; +} + static int cvt_by_tile( TIFF *in, TIFF *out ) @@ -133,6 +144,7 @@ uint32 tile_width, tile_height; uint32 row, col; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -150,7 +162,14 @@ /* * Allocate tile buffer */ - raster = (uint32*)_TIFFmalloc(tile_width * tile_height * sizeof (uint32)); + raster_size = multiply(multiply(tile_width, tile_height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) tile_width, (unsigned long) tile_height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -158,7 +177,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(tile_width * sizeof (uint32)); if (!wrk_line) { @@ -226,6 +245,7 @@ uint32 width, height; /* image width & height */ uint32 row; uint32 *wrk_line; + tsize_t raster_size; int ok = 1; TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); @@ -241,7 +261,14 @@ /* * Allocate strip buffer */ - raster = (uint32*)_TIFFmalloc(width * rowsperstrip * sizeof (uint32)); + raster_size = multiply(multiply(width, rowsperstrip), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) rowsperstrip); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -249,7 +276,7 @@ /* * Allocate a scanline buffer for swapping during the vertical - * mirroring pass. + * mirroring pass. (Request can't overflow given prior checks.) */ wrk_line = (uint32*)_TIFFmalloc(width * sizeof (uint32)); if (!wrk_line) { @@ -328,14 +355,22 @@ uint32* raster; /* retrieve RGBA image */ uint32 width, height; /* image width & height */ uint32 row; - + tsize_t raster_size; + TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(in, TIFFTAG_IMAGELENGTH, &height); rowsperstrip = TIFFDefaultStripSize(out, rowsperstrip); TIFFSetField(out, TIFFTAG_ROWSPERSTRIP, rowsperstrip); - raster = (uint32*)_TIFFmalloc(width * height * sizeof (uint32)); + raster_size = multiply(multiply(width, height), sizeof (uint32)); + if (!raster_size) { + TIFFError(TIFFFileName(in), + "Can't allocate buffer for raster of size %lux%lu", + (unsigned long) width, (unsigned long) height); + return (0); + } + raster = (uint32*)_TIFFmalloc(raster_size); if (raster == 0) { TIFFError(TIFFFileName(in), "No space for raster buffer"); return (0); @@ -353,7 +388,7 @@ */ if( no_alpha ) { - int pixel_count = width * height; + tsize_t pixel_count = (tsize_t) width * (tsize_t) height; unsigned char *src, *dst; src = (unsigned char *) raster; Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/F-10/libtiff.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- libtiff.spec 1 Jul 2009 15:29:03 -0000 1.53 +++ libtiff.spec 13 Jul 2009 14:44:17 -0000 1.54 @@ -1,7 +1,7 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 13%{?dist} +Release: 14%{?dist} License: libtiff Group: System Environment/Libraries URL: http://www.remotesensing.org/libtiff/ @@ -12,6 +12,7 @@ Patch1: libtiff-3.8.2-ormandy.patch Patch2: libtiff-3.8.2-CVE-2006-2193.patch Patch3: libtiff-3.8.2-mantypo.patch Patch4: libtiff-3.8.2-lzw-bugs.patch +Patch5: libtiff-3.8.2-CVE-2009-2347.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: zlib-devel libjpeg-devel @@ -58,6 +59,7 @@ necessary for some boot packages. %patch2 -p1 -b .CVE-2006-2193 %patch3 -p1 -b .mantypo %patch4 -p1 +%patch5 -p1 %build export CFLAGS="%{optflags} -fno-strict-aliasing" @@ -157,6 +159,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Mon Jul 13 2009 Tom Lane 3.8.2-14 +- Fix buffer overrun risks caused by unchecked integer overflow (CVE-2009-2347) +Related: #510041 + * Wed Jul 1 2009 Tom Lane 3.8.2-13 - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #507465 From remi at fedoraproject.org Mon Jul 13 14:45:21 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 14:45:21 +0000 (UTC) Subject: rpms/ice/devel ice-php53.patch,NONE,1.1 ice.spec,1.31,1.32 Message-ID: <20090713144521.461C011C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/ice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7267 Modified Files: ice.spec Added Files: ice-php53.patch Log Message: PHP 5.3.0 build ice-php53.patch: --- NEW FILE ice-php53.patch --- diff -up Ice-3.3.1/php/src/IcePHP/Marshal.cpp.php53 Ice-3.3.1/php/src/IcePHP/Marshal.cpp --- Ice-3.3.1/php/src/IcePHP/Marshal.cpp.php53 2009-07-13 16:25:34.000000000 +0200 +++ Ice-3.3.1/php/src/IcePHP/Marshal.cpp 2009-07-13 16:26:58.000000000 +0200 @@ -1929,7 +1929,7 @@ IcePHP::ObjectReader::ObjectReader(zval* this->TSRMLS_C = TSRMLS_C; #endif - ZVAL_ADDREF(_value); + Z_ADDREF_P(_value); _class = Z_OBJCE_P(_value); } Index: ice.spec =================================================================== RCS file: /cvs/extras/rpms/ice/devel/ice.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- ice.spec 8 Jul 2009 09:24:48 -0000 1.31 +++ ice.spec 13 Jul 2009 14:45:21 -0000 1.32 @@ -2,9 +2,12 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e 'puts Config::CONFIG["sitearchdir"]')} +%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4) +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) + Name: ice Version: 3.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Ice base runtime and services Group: System Environment/Libraries @@ -31,6 +34,8 @@ Patch4: slice.patch.txt # http://www.zeroc.com/forums/patches/4423-patch-3-ice-3-3-1-net-only-fix-random-endpoint-selection.html Patch5: patch-rand.txt +Patch6: ice-php53.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Ice doesn't officially support ppc64 at all @@ -161,7 +166,14 @@ Tools for developing Ice applications in %package php Summary: The Ice runtime for PHP applications Group: System Environment/Libraries -Requires: ice = %{version}-%{release}, php >= 5.1.4 +Requires: ice = %{version}-%{release} +%if %{?php_zend_api}0 +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif + %description php The Ice runtime for PHP applications. @@ -173,6 +185,7 @@ The Ice runtime for PHP applications. %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %setup -q -n Ice-rpmbuild-%{version} -T -b 1 %setup -q -n Ice-3.3.0-man-pages -T -b 2 @@ -284,8 +297,8 @@ done # Put the PHP stuff into the right place mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/php.d mv $RPM_BUILD_ROOT/ice.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.d -mkdir -p ${RPM_BUILD_ROOT}%{_libdir}/php/modules -mv ${RPM_BUILD_ROOT}%{_libdir}/IcePHP.so ${RPM_BUILD_ROOT}%{_libdir}/php/modules +mkdir -p ${RPM_BUILD_ROOT}%{php_extdir} +mv ${RPM_BUILD_ROOT}%{_libdir}/IcePHP.so ${RPM_BUILD_ROOT}%{php_extdir} # Also Ruby and Python -- remove all shebang lines while we're at it for f in $RPM_BUILD_ROOT/python/Ice.py $RPM_BUILD_ROOT/ruby/*.rb; @@ -530,10 +543,15 @@ fi %files php %defattr(-,root,root,-) -%{_libdir}/php/modules/IcePHP.so +%{php_extdir}/IcePHP.so %config(noreplace) %{_sysconfdir}/php.d/ice.ini %changelog +* Mon Jul 13 2009 Remi Collet - 3.3.1-3 +- rebuild for new PHP 5.3.0 ABI (20090626) + ice-php53.patch +- add PHP ABI check +- use php_extdir + * Wed Jul 8 2009 Mary Ellen Foster - 3.3.1-2 - Include upstream patches: - slice2html creates bad links From pkgdb at fedoraproject.org Mon Jul 13 14:50:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:14 +0000 Subject: [pkgdb] tuned: plautrba has requested watchbugzilla Message-ID: <20090713145014.232C810F874@bastion2.fedora.phx.redhat.com> plautrba has requested the watchbugzilla acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:50:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:14 +0000 Subject: [pkgdb] tuned: plautrba has requested watchcommits Message-ID: <20090713145015.7EB7F10F899@bastion2.fedora.phx.redhat.com> plautrba has requested the watchcommits acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:50:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:16 +0000 Subject: [pkgdb] tuned: plautrba has requested commit Message-ID: <20090713145017.1C6CA10F89F@bastion2.fedora.phx.redhat.com> plautrba has requested the commit acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:50:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:24 +0000 Subject: [pkgdb] tuned: plautrba has requested watchbugzilla Message-ID: <20090713145024.6BF4610F8A6@bastion2.fedora.phx.redhat.com> plautrba has requested the watchbugzilla acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:50:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:24 +0000 Subject: [pkgdb] tuned: plautrba has requested watchcommits Message-ID: <20090713145024.D4BE310F8AA@bastion2.fedora.phx.redhat.com> plautrba has requested the watchcommits acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:50:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:50:26 +0000 Subject: [pkgdb] tuned: plautrba has requested commit Message-ID: <20090713145026.BCC7710F874@bastion2.fedora.phx.redhat.com> plautrba has requested the commit acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:06 +0000 Subject: [pkgdb] tuned: mmaslano has requested commit Message-ID: <20090713145106.1B0BE10F8B1@bastion2.fedora.phx.redhat.com> mmaslano has requested the commit acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:06 +0000 Subject: [pkgdb] tuned: mmaslano has requested commit Message-ID: <20090713145106.BD20210F8B3@bastion2.fedora.phx.redhat.com> mmaslano has requested the commit acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:07 +0000 Subject: [pkgdb] tuned: mmaslano has requested watchcommits Message-ID: <20090713145107.C683710F8B5@bastion2.fedora.phx.redhat.com> mmaslano has requested the watchcommits acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:08 +0000 Subject: [pkgdb] tuned: mmaslano has requested watchcommits Message-ID: <20090713145108.8627D10F8B8@bastion2.fedora.phx.redhat.com> mmaslano has requested the watchcommits acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:10 +0000 Subject: [pkgdb] tuned: mmaslano has requested watchbugzilla Message-ID: <20090713145110.507FD10F8BB@bastion2.fedora.phx.redhat.com> mmaslano has requested the watchbugzilla acl on tuned (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 14:51:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 14:51:11 +0000 Subject: [pkgdb] tuned: mmaslano has requested watchbugzilla Message-ID: <20090713145111.680CC10F8BA@bastion2.fedora.phx.redhat.com> mmaslano has requested the watchbugzilla acl on tuned (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From jreznik at fedoraproject.org Mon Jul 13 14:59:24 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Mon, 13 Jul 2009 14:59:24 +0000 (UTC) Subject: rpms/solar-kde-theme/F-11 solar-kde-theme.spec,1.23,1.24 Message-ID: <20090713145924.7BF9A11C0497@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/solar-kde-theme/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11349 Modified Files: solar-kde-theme.spec Log Message: * Mon Jul 13 2009 Jaroslav Reznik - 0.1.17-5 - Link to F11 system logo Index: solar-kde-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/solar-kde-theme/F-11/solar-kde-theme.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- solar-kde-theme.spec 8 Apr 2009 20:49:54 -0000 1.23 +++ solar-kde-theme.spec 13 Jul 2009 14:58:53 -0000 1.24 @@ -1,6 +1,6 @@ Name: solar-kde-theme Version: 0.1.17 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Solar KDE Theme Group: User Interface/Desktops @@ -14,6 +14,8 @@ BuildRequires: kde-filesystem Requires: kde-filesystem Requires: system-logos Requires: solar-backgrounds-common >= 0.91.0 +# for Leonidas system logo +Requires: leonidas-kde-theme %description @@ -87,6 +89,9 @@ mkdir %{buildroot}%{_kde4_appsdir}/kspla ln -s ../../../../../../wallpapers/solar_wide.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1920x1200/solar.png ln -s ../../../../../../wallpapers/solar_high.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1280x1024/solar.png +# we have to drag Leonidas ksplash theme directory for F11 +ln -s %{_kde4_appsdir}/ksplash/Themes/Leonidas/2048x1536/logo.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1280x1024/logo.png + # KDE 4 wallpapers theme mkdir -p %{buildroot}%{_kde4_datadir}/wallpapers/Solar/contents/images cp -rp wallpapers/Solar/metadata.desktop %{buildroot}%{_kde4_datadir}/wallpapers/Solar @@ -141,6 +146,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Jaroslav Reznik - 0.1.17-5 +- Link to F11 system logo + * Wed Apr 08 2009 Jesse Keating - 0.1.17-4 - Drop the version requirement on system-logos, causes problems with other logo packages. From sgrubb at fedoraproject.org Mon Jul 13 15:02:10 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Mon, 13 Jul 2009 15:02:10 +0000 (UTC) Subject: rpms/prelude-correlator/devel prelude-correlator-0.9.0-beta6-dshield.patch, NONE, 1.1 prelude-correlator.spec, 1.10, 1.11 Message-ID: <20090713150210.3C90911C0497@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/prelude-correlator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12264 Modified Files: prelude-correlator.spec Added Files: prelude-correlator-0.9.0-beta6-dshield.patch Log Message: * Fri Jul 10 2009 Steve Grubb 0.9.0-0.8.beta6 - New beta release prelude-correlator-0.9.0-beta6-dshield.patch: --- NEW FILE prelude-correlator-0.9.0-beta6-dshield.patch --- diff -ur prelude-correlator-0.9.0-beta6.orig/setup.py prelude-correlator-0.9.0-beta6/setup.py --- prelude-correlator-0.9.0-beta6.orig/setup.py 2009-07-10 11:31:34.000000000 -0400 +++ prelude-correlator-0.9.0-beta6/setup.py 2009-07-13 10:54:54.000000000 -0400 @@ -11,31 +11,6 @@ PRELUDE_CORRELATOR_VERSION = "0.9.0-beta6" -class my_sdist(sdist): - def __init__(self, *args, **kwargs): - import httplib - - fin = os.popen('git log --summary --stat --no-merges --date=short', 'r') - fout = open('ChangeLog', 'w') - fout.write(fin.read()) - fout.close() - - print "Downloading DShield database, this might take a while..." - - con = httplib.HTTPConnection("www.dshield.org") - con.request("GET", "/ipsascii.html?limit=10000") - r = con.getresponse() - if r.status != 200: - raise Exception, "Could not download DShield host list, error %d" % r.status - - fd = open("PreludeCorrelator/plugins/dshield.dat", "w") - fd.write(r.read()) - fd.close() - - sdist.__init__(self, *args) - - - class my_install(install): def __install_data(self): data_files = self.distribution.data_files @@ -145,5 +120,5 @@ data_files = data_files, package_data = package_data, - cmdclass = { 'sdist': my_sdist, 'install': my_install } + cmdclass = { 'install': my_install } ) Index: prelude-correlator.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-correlator/devel/prelude-correlator.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- prelude-correlator.spec 10 Jul 2009 16:01:37 -0000 1.10 +++ prelude-correlator.spec 13 Jul 2009 15:02:09 -0000 1.11 @@ -14,9 +14,10 @@ URL: http://www.prelude-ids.com Source0: http://www.prelude-ids.com/download/releases/prelude-correlator/%{name}-%{version}-%{prelude_rel}.tar.gz Source1: prelude-correlator.init Patch1: prelude-correlator-0.9.0-beta6-setup.patch +Patch2: prelude-correlator-0.9.0-beta6-dshield.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel +BuildRequires: python-devel python-setuptools Requires(pre) : /usr/sbin/useradd Requires(post) : /sbin/chkconfig Requires(preun) : /sbin/chkconfig @@ -38,6 +39,7 @@ correlation rules. %prep %setup -q -n %{name}-%{version}-%{prelude_rel} %patch1 -p1 +%patch2 -p1 %build From jreznik at fedoraproject.org Mon Jul 13 15:10:35 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Mon, 13 Jul 2009 15:10:35 +0000 (UTC) Subject: rpms/solar-kde-theme/devel solar-kde-theme.spec,1.23,1.24 Message-ID: <20090713151035.CA58811C0497@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/solar-kde-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13557 Modified Files: solar-kde-theme.spec Log Message: * Mon Jul 13 2009 Jaroslav Reznik - 0.1.17-5 - Link to F11 system logo Index: solar-kde-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/solar-kde-theme/devel/solar-kde-theme.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- solar-kde-theme.spec 8 Apr 2009 20:49:54 -0000 1.23 +++ solar-kde-theme.spec 13 Jul 2009 15:10:04 -0000 1.24 @@ -1,6 +1,6 @@ Name: solar-kde-theme Version: 0.1.17 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Solar KDE Theme Group: User Interface/Desktops @@ -14,6 +14,8 @@ BuildRequires: kde-filesystem Requires: kde-filesystem Requires: system-logos Requires: solar-backgrounds-common >= 0.91.0 +# for Leonidas system logo +Requires: leonidas-kde-theme %description @@ -87,6 +89,9 @@ mkdir %{buildroot}%{_kde4_appsdir}/kspla ln -s ../../../../../../wallpapers/solar_wide.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1920x1200/solar.png ln -s ../../../../../../wallpapers/solar_high.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1280x1024/solar.png +# we have to drag Leonidas ksplash theme directory for F11 +ln -s %{_kde4_appsdir}/ksplash/Themes/Leonidas/2048x1536/logo.png %{buildroot}%{_kde4_appsdir}/ksplash/Themes/SolarComet/1280x1024/logo.png + # KDE 4 wallpapers theme mkdir -p %{buildroot}%{_kde4_datadir}/wallpapers/Solar/contents/images cp -rp wallpapers/Solar/metadata.desktop %{buildroot}%{_kde4_datadir}/wallpapers/Solar @@ -141,6 +146,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Jaroslav Reznik - 0.1.17-5 +- Link to F11 system logo + * Wed Apr 08 2009 Jesse Keating - 0.1.17-4 - Drop the version requirement on system-logos, causes problems with other logo packages. From ajax at fedoraproject.org Mon Jul 13 15:23:19 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 13 Jul 2009 15:23:19 +0000 (UTC) Subject: rpms/libvorbis/devel .cvsignore, 1.11, 1.12 libvorbis.spec, 1.37, 1.38 sources, 1.11, 1.12 libvorbis-1.2.2-svn16228.patch, 1.1, NONE Message-ID: <20090713152319.6C0BC11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libvorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16351 Modified Files: .cvsignore libvorbis.spec sources Removed Files: libvorbis-1.2.2-svn16228.patch Log Message: * Mon Jul 13 2009 Adam Jackson 1.2.3-1 - libvorbis 1.2.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 2 Jul 2009 17:02:51 -0000 1.11 +++ .cvsignore 13 Jul 2009 15:22:49 -0000 1.12 @@ -1,3 +1 @@ -libvorbis-1.2.0.tar.bz2 -libvorbis-1.2.2rc1.tar.bz2 -libvorbis-1.2.2.tar.bz2 +libvorbis-1.2.3.tar.bz2 Index: libvorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/libvorbis.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- libvorbis.spec 8 Jul 2009 19:13:16 -0000 1.37 +++ libvorbis.spec 13 Jul 2009 15:22:49 -0000 1.38 @@ -1,7 +1,7 @@ Summary: The Vorbis General Audio Compression Codec. Name: libvorbis -Version: 1.2.2 -Release: 2%{?dist} +Version: 1.2.3 +Release: 1%{?dist} Epoch: 1 Group: System Environment/Libraries License: BSD @@ -10,8 +10,6 @@ Source: http://downloads.xiph.org/relea BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libogg-devel >= 2:1.1 -Patch0: libvorbis-1.2.2-svn16228.patch - %description Ogg Vorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed @@ -42,7 +40,6 @@ Documentation for developing application %prep %setup -q -%patch0 -p1 -b .svn sed -i "s/-O20/$RPM_OPT_FLAGS/" configure sed -i "s/-ffast-math//" configure @@ -85,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Mon Jul 13 2009 Adam Jackson 1.2.3-1 +- libvorbis 1.2.3 + * Wed Jul 08 2009 Adam Jackson 1.2.2-2 - libvorbis-1.2.2-svn16228.patch: Backport a fix from pre-1.2.3 to hopefully fix small sound file playback. (#505610) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 2 Jul 2009 17:02:52 -0000 1.11 +++ sources 13 Jul 2009 15:22:49 -0000 1.12 @@ -1 +1 @@ -7a38198f40efb9e463af5d29083f1a23 libvorbis-1.2.2.tar.bz2 +67beb237faf97d74782ec7071756b2b6 libvorbis-1.2.3.tar.bz2 --- libvorbis-1.2.2-svn16228.patch DELETED --- From mmaslano at fedoraproject.org Mon Jul 13 15:27:50 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 13 Jul 2009 15:27:50 +0000 (UTC) Subject: rpms/tuned/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 tuned.spec, 1.3, 1.4 Message-ID: <20090713152750.5899511C0497@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/tuned/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17446 Modified Files: .cvsignore sources tuned.spec Log Message: * Mon Jul 13 2009 Marcela Ma??l????ov?? - 0.1.6-1 - on popular demand update to the latest release with brand new scomes and varnetload Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tuned/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Apr 2009 23:04:28 -0000 1.4 +++ .cvsignore 13 Jul 2009 15:27:49 -0000 1.5 @@ -1 +1 @@ -tuned-0.1.5.tar.bz2 +tuned-0.1.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tuned/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Apr 2009 23:04:28 -0000 1.4 +++ sources 13 Jul 2009 15:27:50 -0000 1.5 @@ -1 +1 @@ -22402df3afd6f2eda20d3c61c9b3149d tuned-0.1.5.tar.bz2 +e19139f31271496607e8c4f368b7b365 tuned-0.1.6.tar.bz2 Index: tuned.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuned/devel/tuned.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tuned.spec 10 Apr 2009 23:04:28 -0000 1.3 +++ tuned.spec 13 Jul 2009 15:27:50 -0000 1.4 @@ -1,6 +1,6 @@ Summary: A dynamic adaptive system tuning daemon Name: tuned -Version: 0.1.5 +Version: 0.1.6 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Daemons @@ -79,9 +79,14 @@ fi %doc doc/README.utils %{_sbindir}/netdevstat %{_sbindir}/diskdevstat - +%{_sbindir}/scomes +%{_sbindir}/varnetload %changelog +* Mon Jul 13 2009 Marcela Ma??l????ov?? - 0.1.6-1 +- on popular demand update to the latest release with brand new scomes + and varnetload + * Wed Mar 25 2009 Phil Knirsch - 0.1.5-1 - Updated documentation, thanks to Marcela Maslanova! - Updated diskdevstat and netdevstat to have command line arguments From kyle at fedoraproject.org Mon Jul 13 15:30:14 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Mon, 13 Jul 2009 15:30:14 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc2-git9.bz2.sign, NONE, 1.1 .cvsignore, 1.1096, 1.1097 config-generic, 1.302, 1.303 kernel.spec, 1.1629, 1.1630 sources, 1.1054, 1.1055 upstream, 1.968, 1.969 patch-2.6.31-rc2-git6.bz2.sign, 1.1, NONE Message-ID: <20090713153014.6F1B011C0497@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17936 Modified Files: .cvsignore config-generic kernel.spec sources upstream Added Files: patch-2.6.31-rc2-git9.bz2.sign Removed Files: patch-2.6.31-rc2-git6.bz2.sign Log Message: * Mon Jul 13 2009 Kyle McMartin 2.6.31-0.67.rc2.git9 - 2.6.31-rc2-git9 - config changes: - BLK_DEV_OSD=m --- NEW FILE patch-2.6.31-rc2-git9.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKWnw+yGugalF9Dw4RAoESAJsEiqggF2g9b8yON77S4ueRkbclhwCfRVRE vYC6e6U8IrLn2WxZaKMkKtU= =yVwm -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1096 retrieving revision 1.1097 diff -u -p -r1.1096 -r1.1097 --- .cvsignore 11 Jul 2009 00:30:33 -0000 1.1096 +++ .cvsignore 13 Jul 2009 15:29:43 -0000 1.1097 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git6.bz2 +patch-2.6.31-rc2-git9.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.302 retrieving revision 1.303 diff -u -p -r1.302 -r1.303 --- config-generic 10 Jul 2009 00:04:55 -0000 1.302 +++ config-generic 13 Jul 2009 15:29:43 -0000 1.303 @@ -356,6 +356,7 @@ CONFIG_BLK_DEV_UMEM=m CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_CRYPTOLOOP=m CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_OSD=m CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1629 retrieving revision 1.1630 diff -u -p -r1.1629 -r1.1630 --- kernel.spec 13 Jul 2009 06:42:42 -0000 1.1629 +++ kernel.spec 13 Jul 2009 15:29:43 -0000 1.1630 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 2 # The git snapshot level -%define gitrev 6 +%define gitrev 9 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -1868,6 +1868,11 @@ fi # and build. %changelog +* Mon Jul 13 2009 Kyle McMartin 2.6.31-0.67.rc2.git9 +- 2.6.31-rc2-git9 +- config changes: + - BLK_DEV_OSD=m + * Mon Jul 13 2009 Ben Skeggs - drm-nouveau.patch: update from upstream Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1054 retrieving revision 1.1055 diff -u -p -r1.1054 -r1.1055 --- sources 11 Jul 2009 00:30:34 -0000 1.1054 +++ sources 13 Jul 2009 15:29:44 -0000 1.1055 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -5519619c3d68f3db554562e646db54b1 patch-2.6.31-rc2-git6.bz2 +abca2af1027708479975f1f92baa913f patch-2.6.31-rc2-git9.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.968 retrieving revision 1.969 diff -u -p -r1.968 -r1.969 --- upstream 11 Jul 2009 00:30:34 -0000 1.968 +++ upstream 13 Jul 2009 15:29:44 -0000 1.969 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git6.bz2 +patch-2.6.31-rc2-git9.bz2 --- patch-2.6.31-rc2-git6.bz2.sign DELETED --- From caolanm at fedoraproject.org Mon Jul 13 15:30:34 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 13 Jul 2009 15:30:34 +0000 (UTC) Subject: rpms/mythes-fr/devel mythes-fr.spec,1.3,1.4 Message-ID: <20090713153034.F129111C0497@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18187 Modified Files: mythes-fr.spec Log Message: tidy spec Index: mythes-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-fr/devel/mythes-fr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-fr.spec 23 May 2009 16:31:52 -0000 1.3 +++ mythes-fr.spec 13 Jul 2009 15:30:34 -0000 1.4 @@ -1,7 +1,7 @@ Name: mythes-fr Summary: French thesaurus Version: 2.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://download.tuxfamily.org/dicollecte2/thesaurus_2-1.zip Group: Applications/Text URL: http://dicollecte.tuxfamily.org/home.php?prj=fr @@ -16,8 +16,16 @@ French thesaurus. %setup -q -c %build -iconv -f ISO-8859-1 -t UTF-8 README_th_fr_FR_v2.txt > README_th_fr_FR_v2.txt.new -mv -f README_th_fr_FR_v2.txt.new README_th_fr_FR_v2.txt +for i in README_th_fr_FR_v2.txt; do + if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then + iconv -f ISO-8859-1 -t UTF-8 $i > $i.new + touch -r $i $i.new + mv -f $i.new $i + fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i +done %install rm -rf $RPM_BUILD_ROOT @@ -34,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Mon Jul 13 2009 Caolan McNamara - 2.1-4 +- tidy spec + * Sat May 23 2009 Caolan McNamara - 2.1-3 - update to new location From buc at fedoraproject.org Mon Jul 13 15:34:52 2009 From: buc at fedoraproject.org (Dmitry Butskoy) Date: Mon, 13 Jul 2009 15:34:52 +0000 (UTC) Subject: rpms/gnome-translate/devel gnome-translate-0.99-enchant.patch, NONE, 1.1 gnome-translate.spec, 1.15, 1.16 Message-ID: <20090713153452.964B211C0497@cvs1.fedora.phx.redhat.com> Author: buc Update of /cvs/extras/rpms/gnome-translate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19053 Modified Files: gnome-translate.spec Added Files: gnome-translate-0.99-enchant.patch Log Message: gnome-translate-0.99-enchant.patch: --- NEW FILE gnome-translate-0.99-enchant.patch --- diff -ru gnome-translate-0.99.orig/configure.ac gnome-translate-0.99/configure.ac --- gnome-translate-0.99.orig/configure.ac 2009-06-29 11:16:34.000000000 +0100 +++ gnome-translate-0.99/configure.ac 2009-06-29 12:42:31.000000000 +0100 @@ -56,7 +56,7 @@ AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal) if GT_FEATURE_ENABLED(language-detection); then - AM_PATH_ASPELL(, [GT_FEATURE_DISABLE(language-detection, [Aspell not found])]) + PKG_CHECK_MODULES(ENCHANT, [enchant],, [AC_MSG_ERROR([unable to find enchant])]) fi ### Automake conditionals @@ -74,7 +74,6 @@ data/Makefile help/Makefile help/C/Makefile - m4/Makefile po/Makefile.in src/Makefile ui/Makefile) diff -ru gnome-translate-0.99.orig/INSTALL gnome-translate-0.99/INSTALL --- gnome-translate-0.99.orig/INSTALL 2009-06-29 11:16:34.000000000 +0100 +++ gnome-translate-0.99/INSTALL 2009-06-29 12:42:31.000000000 +0100 @@ -35,8 +35,8 @@ * for language detection: - GNU Aspell - http://aspell.sourceforge.net/ + enchant + http://www.abisource.com/projects/enchant/ 2. Instructions diff -ru gnome-translate-0.99.orig/Makefile.am gnome-translate-0.99/Makefile.am --- gnome-translate-0.99.orig/Makefile.am 2009-06-29 11:16:34.000000000 +0100 +++ gnome-translate-0.99/Makefile.am 2009-06-29 12:42:31.000000000 +0100 @@ -1,4 +1,4 @@ -SUBDIRS = art data help m4 po src ui +SUBDIRS = art data help po src ui EXTRA_DIST = \ autogen.sh \ diff -ru gnome-translate-0.99.orig/src/gt-language-detection.c gnome-translate-0.99/src/gt-language-detection.c --- gnome-translate-0.99.orig/src/gt-language-detection.c 2009-06-29 11:16:34.000000000 +0100 +++ gnome-translate-0.99/src/gt-language-detection.c 2009-06-29 21:13:39.000000000 +0100 @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include "gt-language-detection.h" #include "gt-app.h" #include "gt-util.h" @@ -32,7 +32,7 @@ { int ref_count; char *tag; - AspellSpeller *speller; + EnchantDict *speller; int score; } Speller; @@ -51,6 +51,7 @@ G_LOCK_DEFINE_STATIC(self); +static EnchantBroker *broker = NULL; static GSList *spellers = NULL; static GAsyncQueue *detect_queue = NULL; @@ -71,7 +72,7 @@ static void gt_language_detection_enable (void); static void gt_language_detection_disable (void); -static Speller *gt_language_detection_speller_new (const char *tag, GError **err); +static Speller *gt_language_detection_speller_new (const char *tag); static Speller *gt_language_detection_speller_ref (Speller *speller); static void gt_language_detection_speller_unref (Speller *speller); @@ -115,6 +116,9 @@ { TranslateSession *session; + if (!broker) + broker = enchant_broker_init(); + session = gt_shell_get_translate_session(gt_shell); gt_thread_create(gt_app_window, gt_language_detection_create_spellers_thread, g_object_ref(session)); } @@ -123,54 +127,34 @@ gt_language_detection_create_spellers_thread (gpointer data) { TranslateSession *session = data; - AspellConfig *config; - AspellDictInfoList *dict_list; - AspellDictInfoEnumeration *dict_enum; + GSList *next; GSList *pairs; - const AspellDictInfo *dict_info; GSList *new_spellers = NULL; + GHashTable *from_targets; - config = new_aspell_config(); - dict_list = get_aspell_dict_info_list(config); - delete_aspell_config(config); + from_targets = g_hash_table_new(g_str_hash, g_str_equal); - dict_enum = aspell_dict_info_list_elements(dict_list); pairs = translate_session_get_pairs(session); - while ((dict_info = aspell_dict_info_enumeration_next(dict_enum))) + for (next = g_slist_next(pairs); next != NULL; next = g_slist_next (next)) { - TranslatePair *pair = translate_pairs_find(pairs, dict_info->code, NULL); + TranslatePair *pair = next->data; + const char *lang_code; + + lang_code = pair ? translate_pair_get_from(pair) : NULL; - if (pair - && translate_pair_get_flags(pair) & TRANSLATE_PAIR_TEXT - && ! g_slist_find_custom(new_spellers, - dict_info->code, - (GCompareFunc) gt_language_detection_speller_compare_tag)) + if (lang_code + && (translate_pair_get_flags(pair) & TRANSLATE_PAIR_TEXT) + && ! g_hash_table_lookup(from_targets, lang_code)) { - Speller *speller; - GError *err = NULL; - - speller = gt_language_detection_speller_new(dict_info->code, &err); + Speller *speller = gt_language_detection_speller_new(lang_code); if (speller) new_spellers = g_slist_append(new_spellers, speller); - else - { - char *primary; - - primary = g_strdup_printf(_("Unable to use %s dictionary"), translate_get_language_name(dict_info->code)); - - GDK_THREADS_ENTER(); - gt_error_dialog(gt_app_window, primary, "%s", err->message); - gdk_flush(); - GDK_THREADS_LEAVE(); - - g_free(primary); - g_error_free(err); - } + g_hash_table_insert(from_targets, (gpointer) lang_code, (gpointer)1); } } - delete_aspell_dict_info_enumeration(dict_enum); + g_hash_table_destroy(from_targets); gt_g_object_slist_free(pairs); G_LOCK(self); @@ -185,7 +169,7 @@ GDK_THREADS_ENTER(); gt_error_dialog(gt_app_window, _("Language detection not available"), - _("Less than two languages or Aspell dictionaries are available.")); + _("Less than two languages or spelling dictionaries are available.")); gdk_flush(); GDK_THREADS_LEAVE(); @@ -236,37 +220,27 @@ detect_queue = NULL; /* unreffed by thread */ eel_g_slist_free_deep_custom(spellers, (GFunc) gt_language_detection_speller_unref, NULL); spellers = NULL; + if (broker) + { + enchant_broker_free(broker); + broker = NULL; + } } } static Speller * -gt_language_detection_speller_new (const char *tag, GError **err) +gt_language_detection_speller_new (const char *tag) { - AspellConfig *config; Speller *speller = NULL; + EnchantDict *dict; - config = new_aspell_config(); - - if (aspell_config_replace(config, "encoding", "utf-8") - && aspell_config_replace(config, "master", tag)) + if ((dict = enchant_broker_request_dict(broker, tag))) { - AspellCanHaveError *possible_err; - - possible_err = new_aspell_speller(config); - if (aspell_error_number(possible_err) == 0) - { - speller = g_new0(Speller, 1); - speller->ref_count = 1; - speller->tag = g_strdup(tag); - speller->speller = to_aspell_speller(possible_err); - } - else - g_set_error(err, 0, 0, "%s", aspell_error_message(possible_err)); + speller = g_new0(Speller, 1); + speller->ref_count = 1; + speller->tag = g_strdup(tag); + speller->speller = dict; } - else - g_set_error(err, 0, 0, "%s", aspell_config_error_message(config)); - - delete_aspell_config(config); return speller; } @@ -289,7 +263,7 @@ if (g_atomic_int_dec_and_test(&speller->ref_count)) { g_free(speller->tag); - delete_aspell_speller(speller->speller); + enchant_broker_free_dict(broker, speller->speller); g_free(speller); } } @@ -368,7 +342,7 @@ request = g_async_queue_pop(queue); start: - if (request->type == REQUEST_DETECT_LANGUAGE) + if (request->type == REQUEST_DETECT_LANGUAGE && request->spellers) { GSList *l; Speller *speller1; @@ -397,7 +371,7 @@ goto start; } - if (aspell_speller_check(speller->speller, word, -1) == 1) + if (enchant_dict_check(speller->speller, word, strlen(word)) == 0) speller->score++; } @@ -414,7 +388,7 @@ if (speller1->score - speller2->score >= 10) break; } - + /* we only give an opinion if there is no tie */ if (speller1->score != speller2->score) result_func(speller1->tag, result_user_data); @@ -443,12 +417,6 @@ } static int -gt_language_detection_speller_compare_tag (const Speller *a, const char *tag) -{ - return g_ascii_strcasecmp(a->tag, tag); -} - -static int gt_language_detection_speller_compare_score (const Speller *a, const Speller *b) { return a->score - b->score; diff -ru gnome-translate-0.99.orig/src/Makefile.am gnome-translate-0.99/src/Makefile.am --- gnome-translate-0.99.orig/src/Makefile.am 2009-06-29 11:16:34.000000000 +0100 +++ gnome-translate-0.99/src/Makefile.am 2009-06-29 12:42:31.000000000 +0100 @@ -37,7 +37,7 @@ gt-util.c \ gt-util.h -AM_CPPFLAGS = $(WARN_CFLAGS) $(GNOME_CFLAGS) $(LIBTRANSLATE_CFLAGS) $(ASPELL_CFLAGS) \ +AM_CPPFLAGS = $(WARN_CFLAGS) $(GNOME_CFLAGS) $(LIBTRANSLATE_CFLAGS) $(ENCHANT_CFLAGS) \ -I$(top_srcdir) \ -DPREFIX="\"$(prefix)\"" \ -DSYSCONFDIR="\"$(sysconfdir)\"" \ @@ -46,7 +46,7 @@ -DGNOMELOCALEDIR="\"$(datadir)/locale\"" \ -DUIDIR="\"$(pkgdatadir)/ui\"" \ -DG_LOG_DOMAIN="\"$(PACKAGE)\"" -AM_LDFLAGS = $(INTLLIBS) $(GNOME_LIBS) $(LIBTRANSLATE_LIBS) $(ASPELL_LIBS) +AM_LDFLAGS = $(INTLLIBS) $(GNOME_LIBS) $(LIBTRANSLATE_LIBS) $(ENCHANT_LIBS) EXTRA_DIST = eggmarshalers.list MAINTAINERCLEANFILES = $(BUILT_SOURCES) Index: gnome-translate.spec =================================================================== RCS file: /cvs/extras/rpms/gnome-translate/devel/gnome-translate.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gnome-translate.spec 24 Feb 2009 23:35:00 -0000 1.15 +++ gnome-translate.spec 13 Jul 2009 15:34:51 -0000 1.16 @@ -1,19 +1,20 @@ Name: gnome-translate Summary: GNOME interface to libtranslate -- Natural language translator Version: 0.99 -Release: 13%{?dist} +Release: 14%{?dist} Group: User Interface/Desktops License: GPLv2+ URL: http://www.nongnu.org/libtranslate/gnome-translate Source: http://savannah.nongnu.org/download/libtranslate/gnome-translate-%{version}.tar.gz Patch0: gnome-translate-0.99-eel2.patch Patch1: gnome-translate-0.99-selected_tag.patch +Patch2: gnome-translate-0.99-enchant.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: gtk2 >= 2.4.0, GConf2 >= 2.4.0, eel2 >= 2.6.0, pango >= 1.2.0 BuildRequires: gtk2-devel >= 2.4.0, GConf2-devel >= 2.4.0 -BuildRequires: eel2-devel >= 2.13.0, libtranslate-devel, aspell-devel +BuildRequires: eel2-devel >= 2.13.0, libtranslate-devel, enchant-devel BuildRequires: desktop-file-utils >= 0.2.90 BuildRequires: startup-notification-devel >= 0.5 @@ -38,6 +39,7 @@ and it can automatically detect the sour %setup -q %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build @@ -119,6 +121,10 @@ scrollkeeper-update -q || : %changelog +* Mon Jul 13 2009 Dmitry Butskoy - 0.99-14 +- Use enchant instead of aspell for language autodetection + (#477274, patch by Caolan McNamara ) + * Tue Feb 24 2009 Fedora Release Engineering - 0.99-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Mon Jul 13 15:37:48 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 13 Jul 2009 15:37:48 +0000 (UTC) Subject: rpms/startup-notification/devel startup-notification.spec, 1.23, 1.24 Message-ID: <20090713153748.300B511C0497@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/startup-notification/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19522 Modified Files: startup-notification.spec Log Message: 0.10 Index: startup-notification.spec =================================================================== RCS file: /cvs/pkgs/rpms/startup-notification/devel/startup-notification.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- startup-notification.spec 26 Feb 2009 03:08:34 -0000 1.23 +++ startup-notification.spec 13 Jul 2009 15:37:17 -0000 1.24 @@ -1,14 +1,15 @@ Summary: Library for tracking application startup Name: startup-notification -Version: 0.9 -Release: 6%{?dist} +Version: 0.10 +Release: 1%{?dist} URL: http://www.freedesktop.org/software/startup-notification/ -Source0: http://download.gnome.org/sources/%{name}/%{version}/%{name}-%{version}.tar.bz2 +Source0: http://www.freedesktop.org/software/startup-notification/releases/%{name}-%{version}.tar.gz License: LGPLv2 Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel BuildRequires: libXt-devel +BuildRequires: xcb-util-devel %description This package contains libstartup-notification which implements a @@ -60,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Mon Jul 13 2009 Matthias Clasen 0.10-1 +- Update to 0.10 + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Mon Jul 13 15:47:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 13 Jul 2009 15:47:58 +0000 (UTC) Subject: rpms/startup-notification/devel .cvsignore,1.6,1.7 sources,1.6,1.7 Message-ID: <20090713154758.E8CB911C0497@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/startup-notification/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21221 Modified Files: .cvsignore sources Log Message: sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/startup-notification/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 19 Mar 2007 01:21:21 -0000 1.6 +++ .cvsignore 13 Jul 2009 15:47:28 -0000 1.7 @@ -1 +1 @@ -startup-notification-0.9.tar.bz2 +startup-notification-0.10.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/startup-notification/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 19 Mar 2007 01:21:21 -0000 1.6 +++ sources 13 Jul 2009 15:47:28 -0000 1.7 @@ -1 +1 @@ -624b42f1fac5a12c543a079e2cd3b366 startup-notification-0.9.tar.bz2 +bca0ed1c74bc4e483ea2ed12a5717354 startup-notification-0.10.tar.gz From mmaslano at fedoraproject.org Mon Jul 13 15:52:52 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 13 Jul 2009 15:52:52 +0000 (UTC) Subject: rpms/tuned/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 tuned.spec, 1.3, 1.4 Message-ID: <20090713155252.6F27C11C0497@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/tuned/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22129 Modified Files: .cvsignore sources tuned.spec Log Message: * Mon Jul 13 2009 Marcela Ma??l????ov?? - 0.1.6-1 - on popular demand update to the latest release with brand new scomes and varnetload Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tuned/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Apr 2009 23:04:28 -0000 1.4 +++ .cvsignore 13 Jul 2009 15:52:22 -0000 1.5 @@ -1 +1 @@ -tuned-0.1.5.tar.bz2 +tuned-0.1.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tuned/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Apr 2009 23:04:28 -0000 1.4 +++ sources 13 Jul 2009 15:52:22 -0000 1.5 @@ -1 +1 @@ -22402df3afd6f2eda20d3c61c9b3149d tuned-0.1.5.tar.bz2 +e19139f31271496607e8c4f368b7b365 tuned-0.1.6.tar.bz2 Index: tuned.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuned/F-11/tuned.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tuned.spec 10 Apr 2009 23:04:28 -0000 1.3 +++ tuned.spec 13 Jul 2009 15:52:22 -0000 1.4 @@ -1,6 +1,6 @@ Summary: A dynamic adaptive system tuning daemon Name: tuned -Version: 0.1.5 +Version: 0.1.6 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Daemons @@ -79,9 +79,14 @@ fi %doc doc/README.utils %{_sbindir}/netdevstat %{_sbindir}/diskdevstat - +%{_sbindir}/scomes +%{_sbindir}/varnetload %changelog +* Mon Jul 13 2009 Marcela Ma??l????ov?? - 0.1.6-1 +- on popular demand update to the latest release with brand new scomes + and varnetload + * Wed Mar 25 2009 Phil Knirsch - 0.1.5-1 - Updated documentation, thanks to Marcela Maslanova! - Updated diskdevstat and netdevstat to have command line arguments From remi at fedoraproject.org Mon Jul 13 15:55:16 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 15:55:16 +0000 (UTC) Subject: rpms/graphviz/devel graphviz.spec,1.55,1.56 Message-ID: <20090713155516.17C1D11C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/graphviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23226 Modified Files: graphviz.spec Log Message: PHP 5.3.0 build + spec cleanup Index: graphviz.spec =================================================================== RCS file: /cvs/extras/rpms/graphviz/devel/graphviz.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- graphviz.spec 3 Mar 2009 01:59:37 -0000 1.55 +++ graphviz.spec 13 Jul 2009 15:54:45 -0000 1.56 @@ -1,7 +1,10 @@ +%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4) +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) + Name: graphviz Summary: Graph Visualization Tools Version: 2.20.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Multimedia License: CPL URL: http://www.graphviz.org/ @@ -139,7 +142,13 @@ Perl extension for graphviz. %package php Group: Applications/Multimedia Summary: PHP extension for graphviz -Requires: %{name} = %{version}-%{release}, php +Requires: %{name} = %{version}-%{release} +%if %{?php_zend_api}0 +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %description php PHP extension for graphviz. @@ -223,11 +232,18 @@ chmod -x %{buildroot}%{_datadir}/%{name} cp -a %{buildroot}%{_datadir}/%{name}/doc __doc rm -rf %{buildroot}%{_datadir}/%{name}/doc +# PHP configuration file +%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d +%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini +; Enable %{name} extension module +extension=gv.so +__EOF__ + %check %ifnarch ppc64 ppc # regression test, segfaults on ppc/ppc64, possible endian issues? cd rtest -make rtest +LANG=C make rtest %endif %clean @@ -350,8 +366,9 @@ fi %files php %defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini %{_libdir}/graphviz/php/ -%{_libdir}/php*/* +%{php_extdir}/gv.so %{_datadir}/php*/* %{_mandir}/mann/gv_php.n* @@ -391,6 +408,12 @@ fi %changelog +* Mon Jul 13 2009 Remi Collet 2.20.3-4 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add PHP ABI check +- use php_extdir (and don't own it) +- add php configuration file (/etc/php.d/graphviz.ini) + * Mon Mar 2 2009 Tom "spot" Callaway 2.20.3-3 - this spec makes baby animals cry... massively clean it up - hack in java includes to build against openjdk From pkgdb at fedoraproject.org Mon Jul 13 16:03:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:16 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160316.F1BA310F888@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on tuned (Fedora devel) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:17 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160317.6046E10F89A@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on tuned (Fedora devel) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:18 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160318.70CFC10F8A5@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on tuned (Fedora devel) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:19 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160319.CA48410F8A8@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on tuned (Fedora devel) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:20 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160320.B985F10F8AB@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on tuned (Fedora devel) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:22 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160322.600A210F8AF@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on tuned (Fedora devel) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:24 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160324.EA00E10F8B4@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on tuned (Fedora 11) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:25 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160325.63F4210F8B7@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on tuned (Fedora 11) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:26 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160326.22B2710F8BA@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on tuned (Fedora 11) to Approved for mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:27 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160327.9940A10F8BC@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on tuned (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:28 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160328.4C29210F8BF@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on tuned (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From pkgdb at fedoraproject.org Mon Jul 13 16:03:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 13 Jul 2009 16:03:29 +0000 Subject: [pkgdb] tuned had acl change status Message-ID: <20090713160329.AAF7510F8C1@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on tuned (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tuned From itamarjp at fedoraproject.org Mon Jul 13 16:06:50 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Mon, 13 Jul 2009 16:06:50 +0000 (UTC) Subject: rpms/qt-creator/devel qt-creator-1.2.0-qtcreatorwidgets_pro.patch, NONE, 1.1 import.log, 1.4, 1.5 qt-creator.spec, 1.4, 1.5 qt-creator-1.2.0-lib64.patch, 1.1, NONE Message-ID: <20090713160650.220B111C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24650/devel Modified Files: import.log qt-creator.spec Added Files: qt-creator-1.2.0-qtcreatorwidgets_pro.patch Removed Files: qt-creator-1.2.0-lib64.patch Log Message: fix bug 498563 qt-creator-1.2.0-qtcreatorwidgets_pro.patch: --- NEW FILE qt-creator-1.2.0-qtcreatorwidgets_pro.patch --- >From 8f2d0094fd4e8ec929d804f79f1db3136f016b27 Mon Sep 17 00:00:00 2001 From: dt Date: Mon, 29 Jun 2009 12:26:53 +0200 Subject: [PATCH] Fix qtcreatorwidgets.pro to use the same logic as qtcreator.pri --- src/tools/qtcreatorwidgets/qtcreatorwidgets.pro | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro index ad78021..1668c4a 100644 --- a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro +++ b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro @@ -9,16 +9,17 @@ SOURCES = customwidgets.cpp # Link against the qtcreator utils lib +isEmpty(IDE_LIBRARY_BASENAME) { + IDE_LIBRARY_BASENAME = lib +} + linux-* { # form abs path to qtcreator lib dir QTC_LIBS=$$dirname(PWD) QTC_LIBS=$$dirname(QTC_LIBS) QTC_LIBS=$$dirname(QTC_LIBS) - linux-*64 { - QTC_LIBS=$$QTC_LIBS/lib64/qtcreator - } else { - QTC_LIBS=$$QTC_LIBS/lib/qtcreator - } + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator QMAKE_RPATHDIR *= $$QTC_LIBS } -- 1.6.1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 28 Jun 2009 23:33:09 -0000 1.4 +++ import.log 13 Jul 2009 16:06:19 -0000 1.5 @@ -2,3 +2,4 @@ qt-creator-1_0_0-4_fc11:HEAD:qt-creator- qt-creator-1_1_0-1_fc11:HEAD:qt-creator-1.1.0-1.fc11.src.rpm:1240510779 qt-creator-1_1_0-2_fc11:HEAD:qt-creator-1.1.0-2.fc11.src.rpm:1240702375 qt-creator-1_2_0-1_fc11:HEAD:qt-creator-1.2.0-1.fc11.src.rpm:1246231788 +qt-creator-1_2_0-2_fc11:HEAD:qt-creator-1.2.0-2.fc11.src.rpm:1247501081 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/qt-creator.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qt-creator.spec 28 Jun 2009 23:33:09 -0000 1.4 +++ qt-creator.spec 13 Jul 2009 16:06:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: qt-creator Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -11,11 +11,11 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Source1: qtcreator.desktop +# make it install into lib/lib64 +Patch0: qt-creator-1.2.0-qtcreatorwidgets_pro.patch #fix qdoc3 executable location in fedora -Patch0: qt-creator-1.2.0-lib64.patch Patch1: qtdoc3_location.patch -#temporary disabled docs Requires: hicolor-icon-theme BuildRequires: qt4-devel >= 4.5.0 BuildRequires: desktop-file-utils @@ -28,12 +28,13 @@ even faster and easier. %prep %setup -q -n %name-%version-src +%patch0 -p1 %patch1 -p0 #make it install into lib64 -%if "%{_lib}" == "lib64" -%patch0 -p2 -%endif +#%if "%{_lib}" == "lib64" +#%patch0 -p2 +#%endif %build @@ -43,14 +44,14 @@ CFLAGS="${CFLAGS:-%optflags}" ; export C CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ -qmake-qt4 +qmake-qt4 -r IDE_LIBRARY_BASENAME=%{_lib} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT/%{_prefix} -for i in 16 24 32 48 64 128 +for i in 16 24 32 48 64 128 256 do mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/${i}x${i}/apps # link it to %{_datadir}/pixmaps/qtcreator_logo_${i}.png @@ -68,6 +69,20 @@ desktop-file-install rm -rf $RPM_BUILD_ROOT +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + + %files %defattr(-,root,root,-) %doc README LICENSE.LGPL LGPL_EXCEPTION.TXT @@ -81,6 +96,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 +- fix BZ #498563 patch from Michel Salim +- Update GTK icon cache + * Sun Jun 28 2009 Itamar Reis Peixoto - 1.2.0-1 - new version 1.2.0 --- qt-creator-1.2.0-lib64.patch DELETED --- From itamarjp at fedoraproject.org Mon Jul 13 16:10:32 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Mon, 13 Jul 2009 16:10:32 +0000 (UTC) Subject: rpms/qt-creator/F-10 qt-creator-1.2.0-qtcreatorwidgets_pro.patch, NONE, 1.1 import.log, 1.5, 1.6 qt-creator.spec, 1.4, 1.5 qt-creator-1.2.0-lib64.patch, 1.1, NONE Message-ID: <20090713161032.704C011C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25052/F-10 Modified Files: import.log qt-creator.spec Added Files: qt-creator-1.2.0-qtcreatorwidgets_pro.patch Removed Files: qt-creator-1.2.0-lib64.patch Log Message: fix BZ #498563 qt-creator-1.2.0-qtcreatorwidgets_pro.patch: --- NEW FILE qt-creator-1.2.0-qtcreatorwidgets_pro.patch --- >From 8f2d0094fd4e8ec929d804f79f1db3136f016b27 Mon Sep 17 00:00:00 2001 From: dt Date: Mon, 29 Jun 2009 12:26:53 +0200 Subject: [PATCH] Fix qtcreatorwidgets.pro to use the same logic as qtcreator.pri --- src/tools/qtcreatorwidgets/qtcreatorwidgets.pro | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro index ad78021..1668c4a 100644 --- a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro +++ b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro @@ -9,16 +9,17 @@ SOURCES = customwidgets.cpp # Link against the qtcreator utils lib +isEmpty(IDE_LIBRARY_BASENAME) { + IDE_LIBRARY_BASENAME = lib +} + linux-* { # form abs path to qtcreator lib dir QTC_LIBS=$$dirname(PWD) QTC_LIBS=$$dirname(QTC_LIBS) QTC_LIBS=$$dirname(QTC_LIBS) - linux-*64 { - QTC_LIBS=$$QTC_LIBS/lib64/qtcreator - } else { - QTC_LIBS=$$QTC_LIBS/lib/qtcreator - } + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator QMAKE_RPATHDIR *= $$QTC_LIBS } -- 1.6.1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 29 Jun 2009 00:18:30 -0000 1.5 +++ import.log 13 Jul 2009 16:10:01 -0000 1.6 @@ -3,3 +3,4 @@ qt-creator-1_1_0-1_fc11:HEAD:qt-creator- qt-creator-1_1_0-2_fc11:HEAD:qt-creator-1.1.0-2.fc11.src.rpm:1240702375 qt-creator-1_1_0-2_fc11:F-10:qt-creator-1.1.0-2.fc11.src.rpm:1240850030 qt-creator-1_2_0-1_fc11:F-10:qt-creator-1.2.0-1.fc11.src.rpm:1246234638 +qt-creator-1_2_0-2_fc11:F-10:qt-creator-1.2.0-2.fc11.src.rpm:1247501254 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/qt-creator.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qt-creator.spec 29 Jun 2009 00:18:30 -0000 1.4 +++ qt-creator.spec 13 Jul 2009 16:10:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: qt-creator Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -11,11 +11,11 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Source1: qtcreator.desktop +# make it install into lib/lib64 +Patch0: qt-creator-1.2.0-qtcreatorwidgets_pro.patch #fix qdoc3 executable location in fedora -Patch0: qt-creator-1.2.0-lib64.patch Patch1: qtdoc3_location.patch -#temporary disabled docs Requires: hicolor-icon-theme BuildRequires: qt4-devel >= 4.5.0 BuildRequires: desktop-file-utils @@ -28,12 +28,13 @@ even faster and easier. %prep %setup -q -n %name-%version-src +%patch0 -p1 %patch1 -p0 #make it install into lib64 -%if "%{_lib}" == "lib64" -%patch0 -p2 -%endif +#%if "%{_lib}" == "lib64" +#%patch0 -p2 +#%endif %build @@ -43,14 +44,14 @@ CFLAGS="${CFLAGS:-%optflags}" ; export C CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ -qmake-qt4 +qmake-qt4 -r IDE_LIBRARY_BASENAME=%{_lib} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT/%{_prefix} -for i in 16 24 32 48 64 128 +for i in 16 24 32 48 64 128 256 do mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/${i}x${i}/apps # link it to %{_datadir}/pixmaps/qtcreator_logo_${i}.png @@ -68,6 +69,20 @@ desktop-file-install rm -rf $RPM_BUILD_ROOT +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + + %files %defattr(-,root,root,-) %doc README LICENSE.LGPL LGPL_EXCEPTION.TXT @@ -81,6 +96,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 +- fix BZ #498563 patch from Michel Salim +- Update GTK icon cache + * Sun Jun 28 2009 Itamar Reis Peixoto - 1.2.0-1 - new version 1.2.0 --- qt-creator-1.2.0-lib64.patch DELETED --- From itamarjp at fedoraproject.org Mon Jul 13 16:12:24 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Mon, 13 Jul 2009 16:12:24 +0000 (UTC) Subject: rpms/qt-creator/F-11 qt-creator-1.2.0-qtcreatorwidgets_pro.patch, NONE, 1.1 import.log, 1.3, 1.4 qt-creator.spec, 1.3, 1.4 qt-creator-1.2.0-lib64.patch, 1.1, NONE Message-ID: <20090713161224.9AF8311C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25609/F-11 Modified Files: import.log qt-creator.spec Added Files: qt-creator-1.2.0-qtcreatorwidgets_pro.patch Removed Files: qt-creator-1.2.0-lib64.patch Log Message: fix BZ #498563 qt-creator-1.2.0-qtcreatorwidgets_pro.patch: --- NEW FILE qt-creator-1.2.0-qtcreatorwidgets_pro.patch --- >From 8f2d0094fd4e8ec929d804f79f1db3136f016b27 Mon Sep 17 00:00:00 2001 From: dt Date: Mon, 29 Jun 2009 12:26:53 +0200 Subject: [PATCH] Fix qtcreatorwidgets.pro to use the same logic as qtcreator.pri --- src/tools/qtcreatorwidgets/qtcreatorwidgets.pro | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro index ad78021..1668c4a 100644 --- a/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro +++ b/src/tools/qtcreatorwidgets/qtcreatorwidgets.pro @@ -9,16 +9,17 @@ SOURCES = customwidgets.cpp # Link against the qtcreator utils lib +isEmpty(IDE_LIBRARY_BASENAME) { + IDE_LIBRARY_BASENAME = lib +} + linux-* { # form abs path to qtcreator lib dir QTC_LIBS=$$dirname(PWD) QTC_LIBS=$$dirname(QTC_LIBS) QTC_LIBS=$$dirname(QTC_LIBS) - linux-*64 { - QTC_LIBS=$$QTC_LIBS/lib64/qtcreator - } else { - QTC_LIBS=$$QTC_LIBS/lib/qtcreator - } + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator + QTC_LIBS=$$QTC_LIBS/$$IDE_LIBRARY_BASENAME/qtcreator QMAKE_RPATHDIR *= $$QTC_LIBS } -- 1.6.1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 29 Jun 2009 00:15:34 -0000 1.3 +++ import.log 13 Jul 2009 16:12:24 -0000 1.4 @@ -1,3 +1,4 @@ qt-creator-1_0_0-4_fc11:HEAD:qt-creator-1.0.0-4.fc11.src.rpm:1238900717 qt-creator-1_1_0-2_fc11:F-11:qt-creator-1.1.0-2.fc11.src.rpm:1240704397 qt-creator-1_2_0-1_fc11:F-11:qt-creator-1.2.0-1.fc11.src.rpm:1246234357 +qt-creator-1_2_0-2_fc11:F-11:qt-creator-1.2.0-2.fc11.src.rpm:1247501474 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/qt-creator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qt-creator.spec 29 Jun 2009 00:15:34 -0000 1.3 +++ qt-creator.spec 13 Jul 2009 16:12:24 -0000 1.4 @@ -1,6 +1,6 @@ Name: qt-creator Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -11,11 +11,11 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Source1: qtcreator.desktop +# make it install into lib/lib64 +Patch0: qt-creator-1.2.0-qtcreatorwidgets_pro.patch #fix qdoc3 executable location in fedora -Patch0: qt-creator-1.2.0-lib64.patch Patch1: qtdoc3_location.patch -#temporary disabled docs Requires: hicolor-icon-theme BuildRequires: qt4-devel >= 4.5.0 BuildRequires: desktop-file-utils @@ -28,12 +28,13 @@ even faster and easier. %prep %setup -q -n %name-%version-src +%patch0 -p1 %patch1 -p0 #make it install into lib64 -%if "%{_lib}" == "lib64" -%patch0 -p2 -%endif +#%if "%{_lib}" == "lib64" +#%patch0 -p2 +#%endif %build @@ -43,14 +44,14 @@ CFLAGS="${CFLAGS:-%optflags}" ; export C CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ -qmake-qt4 +qmake-qt4 -r IDE_LIBRARY_BASENAME=%{_lib} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT/%{_prefix} -for i in 16 24 32 48 64 128 +for i in 16 24 32 48 64 128 256 do mkdir -p $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/${i}x${i}/apps # link it to %{_datadir}/pixmaps/qtcreator_logo_${i}.png @@ -68,6 +69,20 @@ desktop-file-install rm -rf $RPM_BUILD_ROOT +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + + %files %defattr(-,root,root,-) %doc README LICENSE.LGPL LGPL_EXCEPTION.TXT @@ -81,6 +96,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 +- fix BZ #498563 patch from Michel Salim +- Update GTK icon cache + * Sun Jun 28 2009 Itamar Reis Peixoto - 1.2.0-1 - new version 1.2.0 --- qt-creator-1.2.0-lib64.patch DELETED --- From lkundrak at fedoraproject.org Mon Jul 13 16:14:06 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 13 Jul 2009 16:14:06 +0000 (UTC) Subject: rpms/perl-TAP-Harness-JUnit/devel .cvsignore, 1.5, 1.6 perl-TAP-Harness-JUnit.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090713161406.3EDFF11C0497@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25870 Modified Files: .cvsignore perl-TAP-Harness-JUnit.spec sources Log Message: * Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.32-1 - New upstream release. Stupid, Lubomir, stupid. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 13 Jul 2009 10:59:09 -0000 1.5 +++ .cvsignore 13 Jul 2009 16:13:35 -0000 1.6 @@ -1 +1 @@ -TAP-Harness-JUnit-0.31.tar.gz +TAP-Harness-JUnit-0.32.tar.gz Index: perl-TAP-Harness-JUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/perl-TAP-Harness-JUnit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-TAP-Harness-JUnit.spec 13 Jul 2009 10:59:09 -0000 1.7 +++ perl-TAP-Harness-JUnit.spec 13 Jul 2009 16:13:35 -0000 1.8 @@ -1,5 +1,5 @@ Name: perl-TAP-Harness-JUnit -Version: 0.31 +Version: 0.32 Release: 1%{?dist} Summary: Generate JUnit compatible output from TAP results License: GPL+ or Artistic @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.32-1 +- New upstream release. Stupid, Lubomir, stupid. + * Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.31-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 13 Jul 2009 10:59:09 -0000 1.5 +++ sources 13 Jul 2009 16:13:35 -0000 1.6 @@ -1 +1 @@ -54eb8033c8511b62dcf2a44278a1926a TAP-Harness-JUnit-0.31.tar.gz +fd153fcec629a26ea36d3f1e2c56bd7a TAP-Harness-JUnit-0.32.tar.gz From jgranado at fedoraproject.org Mon Jul 13 16:30:15 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Mon, 13 Jul 2009 16:30:15 +0000 (UTC) Subject: rpms/parted/F-11 parted-1.9.0-appletv-support.patch, NONE, 1.1 parted-1.9.0-device-path.patch, NONE, 1.1 parted-1.9.0-extended-mbr.patch, NONE, 1.1 parted-1.9.0-extra-var.patch, NONE, 1.1 parted-1.9.0-move-function-declarations.patch, NONE, 1.1 parted-1.9.0-no-cylinder-align.patch, NONE, 1.1 parted-1.9.0-noheaders.patch, NONE, 1.1 parted-1.9.0-pop-push-error.patch, NONE, 1.1 parted-1.9.0-preserve-pmbr.patch, NONE, 1.1 parted-1.9.0-remove-struct-elem.patch, NONE, 1.1 parted-1.9.0-swap-flag.patch, NONE, 1.1 parted-1.9.0-use-linuxh.patch, NONE, 1.1 parted.spec, 1.133, 1.134 Message-ID: <20090713163015.B263511C0497@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28234 Modified Files: parted.spec Added Files: parted-1.9.0-appletv-support.patch parted-1.9.0-device-path.patch parted-1.9.0-extended-mbr.patch parted-1.9.0-extra-var.patch parted-1.9.0-move-function-declarations.patch parted-1.9.0-no-cylinder-align.patch parted-1.9.0-noheaders.patch parted-1.9.0-pop-push-error.patch parted-1.9.0-preserve-pmbr.patch parted-1.9.0-remove-struct-elem.patch parted-1.9.0-swap-flag.patch parted-1.9.0-use-linuxh.patch Log Message: Include the new parted version in F11 for s390 testing. parted-1.9.0-appletv-support.patch: --- NEW FILE parted-1.9.0-appletv-support.patch --- >From fc419e55f358fae46ca24f15f5ce2bc7ff1b9e4a Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 16:06:43 +0200 Subject: [PATCH] Add support for appletv partitions. --- include/parted/disk.h | 5 ++- libparted/disk.c | 2 + libparted/labels/gpt.c | 50 ++++++++++++++++++++++++++++++++++++++--------- 3 files changed, 45 insertions(+), 12 deletions(-) diff --git a/include/parted/disk.h b/include/parted/disk.h index 691f413..5207e0b 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -53,10 +53,11 @@ enum _PedPartitionFlag { PED_PARTITION_PALO=9, PED_PARTITION_PREP=10, PED_PARTITION_MSFT_RESERVED=11, - PED_PARTITION_BIOS_GRUB=12 + PED_PARTITION_BIOS_GRUB=12, + PED_PARTITION_APPLE_TV_RECOVERY=13 }; #define PED_PARTITION_FIRST_FLAG PED_PARTITION_BOOT -#define PED_PARTITION_LAST_FLAG PED_PARTITION_BIOS_GRUB +#define PED_PARTITION_LAST_FLAG PED_PARTITION_APPLE_TV_RECOVERY enum _PedDiskTypeFeature { PED_DISK_TYPE_EXTENDED=1, /**< supports extended partitions */ diff --git a/libparted/disk.c b/libparted/disk.c index 5fb8060..3269b9d 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -2246,6 +2246,8 @@ ped_partition_flag_get_name (PedPartitionFlag flag) return N_("prep"); case PED_PARTITION_MSFT_RESERVED: return N_("msftres"); + case PED_PARTITION_APPLE_TV_RECOVERY: + return N_("atvrecv"); default: ped_exception_throw ( diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 536e06a..73bdbb2 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -127,6 +127,10 @@ typedef struct { ((efi_guid_t) { PED_CPU_TO_LE32 (0x48465300), PED_CPU_TO_LE16 (0x0000), \ PED_CPU_TO_LE16 (0x11AA), 0xaa, 0x11, \ { 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC }}) +#define PARTITION_APPLE_TV_RECOVERY_GUID \ + ((efi_guid_t) { PED_CPU_TO_LE32 (0x5265636F), PED_CPU_TO_LE16 (0x7665), \ + PED_CPU_TO_LE16 (0x11AA), 0xaa, 0x11, \ + { 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC }}) struct __attribute__ ((packed)) _GuidPartitionTableHeader_t { uint64_t Signature; @@ -254,6 +258,7 @@ typedef struct _GPTPartitionData { int hp_service; int hidden; int msftres; + int atvrecv; } GPTPartitionData; static PedDiskType gpt_disk_type; @@ -768,7 +773,7 @@ _parse_part_entry (PedDisk* disk, GuidPartitionEntry_t* pte) gpt_part_data->lvm = gpt_part_data->raid = gpt_part_data->boot = gpt_part_data->hp_service = gpt_part_data->hidden = gpt_part_data->msftres - = gpt_part_data->bios_grub = 0; + = gpt_part_data->bios_grub = gpt_part_data->atvrecv = 0; if (pte->Attributes.RequiredToFunction & 0x1) gpt_part_data->hidden = 1; @@ -783,9 +788,11 @@ _parse_part_entry (PedDisk* disk, GuidPartitionEntry_t* pte) gpt_part_data->lvm = 1; else if (!guid_cmp (gpt_part_data->type, PARTITION_HPSERVICE_GUID)) gpt_part_data->hp_service = 1; - else if (!guid_cmp (gpt_part_data->type, PARTITION_MSFT_RESERVED_GUID)) - gpt_part_data->msftres = 1; - + else if (!guid_cmp (gpt_part_data->type, PARTITION_MSFT_RESERVED_GUID)) + gpt_part_data->msftres = 1; + else if (!guid_cmp (gpt_part_data->type, PARTITION_APPLE_TV_RECOVERY_GUID)) + gpt_part_data->atvrecv = 1; + return part; } @@ -1182,6 +1189,7 @@ gpt_partition_new (const PedDisk* disk, gpt_part_data->hp_service = 0; gpt_part_data->hidden = 0; gpt_part_data->msftres = 0; + gpt_part_data->atvrecv = 0; uuid_generate ((unsigned char*) &gpt_part_data->uuid); swap_uuid_and_efi_guid((unsigned char*)(&gpt_part_data->uuid)); memset (gpt_part_data->name, 0, sizeof gpt_part_data->name); @@ -1269,6 +1277,11 @@ gpt_partition_set_system (PedPartition* part, const PedFileSystemType* fs_type) gpt_part_data->type = PARTITION_MSFT_RESERVED_GUID; return 1; } + if (gpt_part_data->atvrecv) { + gpt_part_data->type = PARTITION_APPLE_TV_RECOVERY_GUID; + return 1; + } + if (fs_type) { if (strncmp (fs_type->name, "fat", 3) == 0 @@ -1361,7 +1374,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_BIOS_GRUB: gpt_part_data->bios_grub = state; @@ -1370,7 +1384,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->boot = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_RAID: gpt_part_data->raid = state; @@ -1379,7 +1394,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->lvm = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_LVM: gpt_part_data->lvm = state; @@ -1388,7 +1404,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->bios_grub = gpt_part_data->hp_service - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_HPSERVICE: gpt_part_data->hp_service = state; @@ -1397,7 +1414,8 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->lvm = gpt_part_data->bios_grub - = gpt_part_data->msftres = 0; + = gpt_part_data->msftres + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); case PED_PARTITION_MSFT_RESERVED: gpt_part_data->msftres = state; @@ -1406,8 +1424,17 @@ gpt_partition_set_flag(PedPartition *part, = gpt_part_data->raid = gpt_part_data->lvm = gpt_part_data->bios_grub - = gpt_part_data->hp_service = 0; + = gpt_part_data->hp_service + = gpt_part_data->atvrecv = 0; return gpt_partition_set_system (part, part->fs_type); + case PED_PARTITION_APPLE_TV_RECOVERY: + gpt_part_data->atvrecv = state; + if (state) + gpt_part_data->boot + = gpt_part_data->raid + = gpt_part_data->lvm + = gpt_part_data->hp_service + = gpt_part_data->msftres = 0; case PED_PARTITION_HIDDEN: gpt_part_data->hidden = state; return 1; @@ -1440,6 +1467,8 @@ gpt_partition_get_flag(const PedPartition *part, PedPartitionFlag flag) return gpt_part_data->hp_service; case PED_PARTITION_MSFT_RESERVED: return gpt_part_data->msftres; + case PED_PARTITION_APPLE_TV_RECOVERY: + return gpt_part_data->atvrecv; case PED_PARTITION_HIDDEN: return gpt_part_data->hidden; case PED_PARTITION_SWAP: @@ -1462,6 +1491,7 @@ gpt_partition_is_flag_available(const PedPartition * part, case PED_PARTITION_BIOS_GRUB: case PED_PARTITION_HPSERVICE: case PED_PARTITION_MSFT_RESERVED: + case PED_PARTITION_APPLE_TV_RECOVERY: case PED_PARTITION_HIDDEN: return 1; case PED_PARTITION_SWAP: -- 1.6.0.6 parted-1.9.0-device-path.patch: --- NEW FILE parted-1.9.0-device-path.patch --- >From 4d7e16d3a36ce3875b9f34a04f4078cc5b935417 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Tue, 30 Jun 2009 17:07:06 +0200 Subject: [PATCH] Identify the device by path. * libparted/labels/dasd.c (dasd_probe): The element name is not defined in the dev structure. --- libparted/labels/dasd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index e3e5d1b..40c0546 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -166,7 +166,7 @@ dasd_probe (const PedDevice *dev) error_cleanup: fdasd_cleanup(&anchor); ped_exception_throw(PED_EXCEPTION_ERROR,PED_EXCEPTION_IGNORE_CANCEL, - "Error while probing device %s.", dev->name); + "Error while probing device %s.", dev->path); return 0; } -- 1.6.0.6 parted-1.9.0-extended-mbr.patch: --- NEW FILE parted-1.9.0-extended-mbr.patch --- >From f515b5a54a929896c9ad1482f05c060f4a1b9893 Mon Sep 17 00:00:00 2001 From: Petr Uzel Date: Fri, 5 Jun 2009 14:14:11 +0200 Subject: [PATCH] do not discard bootcode from extended partition * libparted/labels/dos.c (write_ext_table): Do not discard bootcode from extended partition on msdos label when some of the logical partitions are changed. Signed-off-by: Petr Uzel --- libparted/labels/dos.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index b4cd23a..fc54339 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1060,7 +1060,8 @@ write_ext_table (const PedDisk* disk, lba_offset = ped_disk_extended_partition (disk)->geom.start; - memset (&table, 0, sizeof (DosRawTable)); + ped_device_read (disk->dev, &table, sector, 1); + memset (&(table.partitions), 0, 4 * sizeof(DosRawPartition)); table.magic = PED_CPU_TO_LE16 (MSDOS_MAGIC); if (!fill_raw_part (&table.partitions[0], logical, sector)) @@ -1094,7 +1095,8 @@ write_empty_table (const PedDisk* disk, PedSector sector) PED_ASSERT (disk != NULL, return 0); - memset (&table, 0, sizeof (DosRawTable)); + ped_device_read (disk->dev, &table, sector, 1); + memset (&(table.partitions), 0, 4 * sizeof(DosRawPartition)); table.magic = PED_CPU_TO_LE16 (MSDOS_MAGIC); return ped_device_write (disk->dev, (void*) &table, sector, 1); -- 1.6.0.6 parted-1.9.0-extra-var.patch: --- NEW FILE parted-1.9.0-extra-var.patch --- >From c3bd7f40c18197d8092b80f0975d1e0486b686c7 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 17:33:42 +0200 Subject: [PATCH] Remove unnecessary variable. * libparted/labels/fdasd.c (fdasd_get_geometry): The variable "s" is not used in the function. --- libparted/labels/fdasd.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/libparted/labels/fdasd.c b/libparted/labels/fdasd.c index 40ba8c9..4cf4eb0 100644 --- a/libparted/labels/fdasd.c +++ b/libparted/labels/fdasd.c @@ -773,7 +773,6 @@ fdasd_get_geometry (fdasd_anchor_t *anc, int f) PDEBUG int blksize = 0; dasd_information_t dasd_info; - char s[LINE_LENGTH]; if (ioctl(f, HDIO_GETGEO, &anc->geo) != 0) fdasd_error(anc, unable_to_ioctl, -- 1.6.0.6 parted-1.9.0-move-function-declarations.patch: --- NEW FILE parted-1.9.0-move-function-declarations.patch --- >From cd5dd183b4810de2160c433544541c852ca1877d Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Mon, 29 Jun 2009 13:44:10 +0200 Subject: [PATCH] Put the dasd function definitions at the end of the file. All label types define the label functions at the end of the file. Be consistent with this characteristic. The function declarations are no longer needed. * libparted/labels/dasd.c (dasd_disk_ops, dasd_disk_type) (ped_disk_dasd_init, ped_disk_dasd_done): Move the specifications of the functions the end of the file. Remove function declarations. --- libparted/labels/dasd.c | 125 ++++++++++++++++++----------------------------- 1 files changed, 48 insertions(+), 77 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index 3a0bb32..e3e5d1b 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -76,70 +76,7 @@ typedef struct { struct fdasd_anchor *anchor; } DasdDiskSpecific; -static int dasd_probe (const PedDevice *dev); -static int dasd_clobber (PedDevice* dev); -static int dasd_read (PedDisk* disk); -static int dasd_write (const PedDisk* disk); - -static PedPartition* dasd_partition_new (const PedDisk* disk, - PedPartitionType part_type, - const PedFileSystemType* fs_type, - PedSector start, - PedSector end); -static void dasd_partition_destroy (PedPartition* part); -static int dasd_partition_set_flag (PedPartition* part, - PedPartitionFlag flag, - int state); -static int dasd_partition_get_flag (const PedPartition* part, - PedPartitionFlag flag); -static int dasd_partition_is_flag_available (const PedPartition* part, - PedPartitionFlag flag); -static int dasd_partition_align (PedPartition* part, - const PedConstraint* constraint); -static int dasd_partition_enumerate (PedPartition* part); -static int dasd_get_max_primary_partition_count (const PedDisk* disk); - -static PedDisk* dasd_alloc (const PedDevice* dev); -static PedDisk* dasd_duplicate (const PedDisk* disk); -static void dasd_free (PedDisk* disk); -static int dasd_partition_set_system (PedPartition* part, - const PedFileSystemType* fs_type); -static int dasd_alloc_metadata (PedDisk* disk); - -static PedDiskOps dasd_disk_ops = { - probe: dasd_probe, - clobber: dasd_clobber, - read: dasd_read, - write: dasd_write, - - alloc: dasd_alloc, - duplicate: dasd_duplicate, - free: dasd_free, - partition_set_system: dasd_partition_set_system, - - partition_new: dasd_partition_new, - partition_destroy: dasd_partition_destroy, - partition_set_flag: dasd_partition_set_flag, - partition_get_flag: dasd_partition_get_flag, - partition_is_flag_available: dasd_partition_is_flag_available, - partition_set_name: NULL, - partition_get_name: NULL, - partition_align: dasd_partition_align, - partition_enumerate: dasd_partition_enumerate, - - alloc_metadata: dasd_alloc_metadata, - get_max_primary_partition_count: dasd_get_max_primary_partition_count, - get_max_supported_partition_count: dasd_get_max_supported_partition_count, - - partition_duplicate: NULL -}; - -static PedDiskType dasd_disk_type = { - next: NULL, - name: "dasd", - ops: &dasd_disk_ops, - features: 0 -}; +static PedDiskType dasd_disk_type; static PedDisk* dasd_alloc (const PedDevice* dev) @@ -199,19 +136,6 @@ dasd_free (PedDisk* disk) _ped_disk_free(disk); } - -void -ped_disk_dasd_init () -{ - ped_disk_type_register(&dasd_disk_type); -} - -void -ped_disk_dasd_done () -{ - ped_disk_type_unregister(&dasd_disk_type); -} - static int dasd_probe (const PedDevice *dev) { @@ -881,3 +805,50 @@ error: ped_constraint_destroy (constraint_any); return 0; } + +static PedDiskOps dasd_disk_ops = { + probe: dasd_probe, + clobber: dasd_clobber, + read: dasd_read, + write: dasd_write, + + alloc: dasd_alloc, + duplicate: dasd_duplicate, + free: dasd_free, + partition_set_system: dasd_partition_set_system, + + partition_new: dasd_partition_new, + partition_destroy: dasd_partition_destroy, + partition_set_flag: dasd_partition_set_flag, + partition_get_flag: dasd_partition_get_flag, + partition_is_flag_available: dasd_partition_is_flag_available, + partition_set_name: NULL, + partition_get_name: NULL, + partition_align: dasd_partition_align, + partition_enumerate: dasd_partition_enumerate, + + alloc_metadata: dasd_alloc_metadata, + get_max_primary_partition_count: dasd_get_max_primary_partition_count, + get_max_supported_partition_count: dasd_get_max_supported_partition_count, + + partition_duplicate: NULL +}; + +static PedDiskType dasd_disk_type = { + next: NULL, + name: "dasd", + ops: &dasd_disk_ops, + features: 0 +}; + +void +ped_disk_dasd_init () +{ + ped_disk_type_register(&dasd_disk_type); +} + +void +ped_disk_dasd_done () +{ + ped_disk_type_unregister(&dasd_disk_type); +} -- 1.6.0.6 parted-1.9.0-no-cylinder-align.patch: --- NEW FILE parted-1.9.0-no-cylinder-align.patch --- commit 0098e7bdb80fb7ffe55b8bc9086a16d0a65898e5 Author: Joel Granados Moreno Date: Mon Jun 22 11:37:26 2009 +0200 Add mechanism to avoid cylinder alignments. diff --git a/include/parted/disk.h b/include/parted/disk.h index 172fbee..664c388 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -263,7 +263,8 @@ extern int ped_disk_get_last_partition_num (const PedDisk* disk); extern int ped_disk_get_max_primary_partition_count (const PedDisk* disk); extern bool ped_disk_get_max_supported_partition_count(const PedDisk* disk, int* supported); - +extern int ped_disk_align_to_cylinders_on(); +extern int ped_disk_align_to_cylinders_toggle(); /** @} */ /** diff --git a/libparted/disk.c b/libparted/disk.c index 6884c83..44a2f2f 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -65,6 +65,23 @@ static int _disk_raw_add (PedDisk* disk, PedPartition* part); static PedDiskType* disk_types = NULL; +int ped_disk_align_to_cylinders = 1; + +int +ped_disk_align_to_cylinders_toggle () +{ + if (ped_disk_align_to_cylinders == 1) + return ped_disk_align_to_cylinders = 0; + else + return ped_disk_align_to_cylinders = 1; +} + +int +ped_disk_align_to_cylinders_on () +{ + return ped_disk_align_to_cylinders; +} + void ped_disk_type_register (PedDiskType* disk_type) { diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index fc54339..e7d416d 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -2005,8 +2005,9 @@ msdos_partition_align (PedPartition* part, const PedConstraint* constraint) partition_probe_bios_geometry (part, &bios_geom); - if (_align (part, &bios_geom, constraint)) - return 1; + if (ped_disk_align_to_cylinders_on()) + if (_align (part, &bios_geom, constraint)) + return 1; if (_align_no_geom (part, constraint)) return 1; parted-1.9.0-noheaders.patch: --- NEW FILE parted-1.9.0-noheaders.patch --- >From 1dd152a33813406e91261db1f59a9a9dacf4bff6 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 16:20:45 +0200 Subject: [PATCH] No include headers. --- include/parted/Makefile.am | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/parted/Makefile.am b/include/parted/Makefile.am index a1ba960..022373f 100644 --- a/include/parted/Makefile.am +++ b/include/parted/Makefile.am @@ -16,10 +16,10 @@ partedinclude_HEADERS = constraint.h \ natmath.h \ timer.h \ unit.h \ - parted.h \ - $(S390_HDRS) + parted.h noinst_HEADERS = crc32.h \ - endian.h + endian.h \ + $(S390_HDRS) MAINTAINERCLEANFILES = Makefile.in -- 1.6.0.6 parted-1.9.0-pop-push-error.patch: --- NEW FILE parted-1.9.0-pop-push-error.patch --- >From fd2df92bbaaa5926b0c67916a5947af102cac20c Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 17:05:39 +0200 Subject: [PATCH] return errro on push or pop update mode. --- libparted/disk.c | 85 +++++++++++++++++++++++++++++++++++------------------ 1 files changed, 56 insertions(+), 29 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 3269b9d..6884c83 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -54,8 +54,8 @@ #ifdef DEBUG static int _disk_check_sanity (PedDisk* disk); #endif -static void _disk_push_update_mode (PedDisk* disk); -static void _disk_pop_update_mode (PedDisk* disk); +static int _disk_push_update_mode (PedDisk* disk); +static int _disk_pop_update_mode (PedDisk* disk); static int _disk_raw_insert_before (PedDisk* disk, PedPartition* loc, PedPartition* part); static int _disk_raw_insert_after (PedDisk* disk, PedPartition* loc, @@ -215,9 +215,11 @@ _add_duplicate_part (PedDisk* disk, PedPartition* old_part) goto error; new_part->disk = disk; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + goto error_destroy_new_part; ret = _disk_raw_add (disk, new_part); - _disk_pop_update_mode (disk); + if (_disk_pop_update_mode (disk)) + goto error_destroy_new_part; if (!ret) goto error_destroy_new_part; #ifdef DEBUG @@ -253,7 +255,8 @@ ped_disk_duplicate (const PedDisk* old_disk) if (!new_disk) goto error; - _disk_push_update_mode (new_disk); + if (!_disk_push_update_mode (new_disk)) + goto error_destroy_new_disk; for (old_part = ped_disk_next_partition (old_disk, NULL); old_part; old_part = ped_disk_next_partition (old_disk, old_part)) { if (ped_partition_is_active (old_part)) { @@ -261,7 +264,8 @@ ped_disk_duplicate (const PedDisk* old_disk) goto error_destroy_new_disk; } } - _disk_pop_update_mode (new_disk); + if (!_disk_pop_update_mode (new_disk)) + goto error_destroy_new_disk; return new_disk; error_destroy_new_disk: @@ -349,7 +353,8 @@ ped_disk_new_fresh (PedDevice* dev, const PedDiskType* type) disk = type->ops->alloc (dev); if (!disk) goto error; - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + goto error_destroy_disk; PED_ASSERT (disk->update_mode == 0, goto error_destroy_disk); disk->needs_clobber = 1; @@ -914,12 +919,13 @@ _disk_alloc_freespace (PedDisk* disk) * partitions are removed, making it much easier for various manipulation * routines... */ -static void +static int _disk_push_update_mode (PedDisk* disk) { if (!disk->update_mode) { #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif _disk_remove_freespace (disk); @@ -927,24 +933,27 @@ _disk_push_update_mode (PedDisk* disk) _disk_remove_metadata (disk); #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif } else { disk->update_mode++; } + return 1; } -static void +static int _disk_pop_update_mode (PedDisk* disk) { - PED_ASSERT (disk->update_mode, return); + PED_ASSERT (disk->update_mode, return 0); if (disk->update_mode == 1) { /* re-allocate metadata BEFORE leaving update mode, to prevent infinite * recursion (metadata allocation requires update mode) */ #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif _disk_alloc_metadata (disk); @@ -952,11 +961,13 @@ _disk_pop_update_mode (PedDisk* disk) _disk_alloc_freespace (disk); #ifdef DEBUG - _disk_check_sanity (disk); + if (!_disk_check_sanity (disk)) + return 0; #endif } else { disk->update_mode--; } + return 1; } /** @} */ @@ -1826,7 +1837,8 @@ ped_disk_add_partition (PedDisk* disk, PedPartition* part, if (!_partition_check_basic_sanity (disk, part)) return 0; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (ped_partition_is_active (part)) { overlap_constraint @@ -1854,7 +1866,8 @@ ped_disk_add_partition (PedDisk* disk, PedPartition* part, ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; #ifdef DEBUG if (!_disk_check_sanity (disk)) return 0; @@ -1883,10 +1896,12 @@ ped_disk_remove_partition (PedDisk* disk, PedPartition* part) PED_ASSERT (disk != NULL, return 0); PED_ASSERT (part != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; PED_ASSERT (part->part_list == NULL, goto error); _disk_raw_remove (disk, part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; ped_disk_enumerate_partitions (disk); return 1; @@ -1909,12 +1924,14 @@ ped_disk_delete_partition (PedDisk* disk, PedPartition* part) PED_ASSERT (disk != NULL, return 0); PED_ASSERT (part != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (part->type == PED_PARTITION_EXTENDED) ped_disk_delete_all_logical (disk); ped_disk_remove_partition (disk, part); ped_partition_destroy (part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; } @@ -1952,7 +1969,8 @@ ped_disk_delete_all (PedDisk* disk) PED_ASSERT (disk != NULL, return 0); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; for (walk = disk->part_list; walk; walk = next) { next = walk->next; @@ -1961,7 +1979,8 @@ ped_disk_delete_all (PedDisk* disk) return 0; } - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; } @@ -1995,7 +2014,8 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, old_geom = part->geom; ped_geometry_init (&new_geom, part->geom.dev, start, end - start + 1); - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; overlap_constraint = _partition_get_overlap_constraint (part, &new_geom); @@ -2018,7 +2038,8 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, _disk_raw_remove (disk, part); _disk_raw_add (disk, part); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + goto error; ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); @@ -2026,6 +2047,7 @@ ped_disk_set_partition_geom (PedDisk* disk, PedPartition* part, error_pop_update_mode: _disk_pop_update_mode (disk); +error: ped_constraint_destroy (overlap_constraint); ped_constraint_destroy (constraints); part->geom = old_geom; @@ -2064,7 +2086,8 @@ ped_disk_maximize_partition (PedDisk* disk, PedPartition* part, old_geom = part->geom; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; if (part->prev) new_start = part->prev->geom.end + 1; @@ -2080,7 +2103,8 @@ ped_disk_maximize_partition (PedDisk* disk, PedPartition* part, new_end)) goto error; - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return 1; error: @@ -2152,11 +2176,13 @@ ped_disk_minimize_extended_partition (PedDisk* disk) if (!ext_part) return 1; - _disk_push_update_mode (disk); + if (!_disk_push_update_mode (disk)) + return 0; first_logical = ext_part->part_list; if (!first_logical) { - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return ped_disk_delete_partition (disk, ext_part); } @@ -2169,7 +2195,8 @@ ped_disk_minimize_extended_partition (PedDisk* disk) last_logical->geom.end); ped_constraint_destroy (constraint); - _disk_pop_update_mode (disk); + if (!_disk_pop_update_mode (disk)) + return 0; return status; } -- 1.6.0.6 parted-1.9.0-preserve-pmbr.patch: --- NEW FILE parted-1.9.0-preserve-pmbr.patch --- >From 456b8c4d2424e52f7861e14d667ba7c26ca1cce3 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Fri, 5 Jun 2009 14:14:08 +0200 Subject: [PATCH] Preserve first 446 bytes of the pmbr in gpt. * libparted/label/gpt.c (_write_pmbr) : Make sure we read the first 446 bytes of the device when we are creating the pmbr. --- libparted/labels/gpt.c | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 73bdbb2..f1c4f69 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -982,7 +982,18 @@ _write_pmbr (PedDevice * dev) { LegacyMBR_t pmbr; - memset(&pmbr, 0, sizeof(pmbr)); + /* The UEFI spec is not clear about what to do with the following + * elements of the Protective MBR (pmbr): BootCode (0-440B), + * UniqueMBRSignature (440B-444B) and Unknown (444B-446B). + * With this in mind, we try not to modify these elements. + */ + if(ped_device_read(dev, &pmbr, 0, GPT_PMBR_SECTORS) < GPT_PMBR_SECTORS) + memset(&pmbr, 0, sizeof(pmbr)); + + /* Make sure we zero out all the legacy partitions. + * There are 4 PartitionRecords. */ + memset(&(pmbr.PartitionRecord), 0, sizeof(PartitionRecord_t) * 4); + pmbr.Signature = PED_CPU_TO_LE16(MSDOS_MBR_SIGNATURE); pmbr.PartitionRecord[0].OSType = EFI_PMBR_OSTYPE_EFI; pmbr.PartitionRecord[0].StartSector = 1; -- 1.6.0.6 parted-1.9.0-remove-struct-elem.patch: --- NEW FILE parted-1.9.0-remove-struct-elem.patch --- commit 9a4166aa0420ca16c73ba11e0cb7bce4d326cbdf Author: Joel Granados Moreno Date: Fri Jun 12 14:41:53 2009 +0200 Remove unneeded struct element. diff --git a/include/parted/disk.h b/include/parted/disk.h index 5207e0b..172fbee 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -157,7 +157,7 @@ struct _PedDisk { PedDevice* dev; /**< the device where the partition table lies */ const PedDiskType* type; /**< type of disk label */ - const int* block_sizes; /**< block sizes supported + /*const int* block_sizes; **< block sizes supported by this label */ PedPartition* part_list; /**< list of partitions. Access with ped_disk_next_partition() */ parted-1.9.0-swap-flag.patch: --- NEW FILE parted-1.9.0-swap-flag.patch --- >From ae78428ae1bc521a11be60b6acdb511a6e7aee21 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 18:34:46 +0200 Subject: [PATCH] Use the swap flag. * libparted/labels/dos.c (msdos_partition_set_flag): Set the partition type if the user sets the swap flag. --- libparted/labels/dos.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index f219e7d..b4cd23a 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1413,6 +1413,11 @@ msdos_partition_set_flag (PedPartition* part, dos_data->prep = state; return ped_partition_set_system (part, part->fs_type); + case PED_PARTITION_SWAP: + if (state) { + return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); + } + default: return 0; } -- 1.6.0.6 parted-1.9.0-use-linuxh.patch: --- NEW FILE parted-1.9.0-use-linuxh.patch --- >From 2f0d94d200fb8822a9f8699e93b65c2d5476b087 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Tue, 30 Jun 2009 16:21:02 +0200 Subject: [PATCH] The file include/parted/linux.h is needed by dasd.c * include/parted/linux.h (PED_LINUX_H_INCLUDED, LINUX_SPECIFIC) (LinuxSpecific, _LinuxSpecific, fd, dmtype, real_sector_size, anchor): New file. * libparted/arch/linux.c (PROC_DEVICES_BUFSIZ, LINUX_SPECIFIC) (LinuxSpecific, RW_MODE, _LinuxSpecific, anchor, dmtype, fd) (real_sector_size): User new header file. --- include/parted/linux.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ libparted/arch/linux.c | 19 +------------------ 2 files changed, 45 insertions(+), 18 deletions(-) create mode 100644 include/parted/linux.h diff --git a/include/parted/linux.h b/include/parted/linux.h new file mode 100644 index 0000000..1a4171d --- /dev/null +++ b/include/parted/linux.h @@ -0,0 +1,44 @@ +/* + libparted - a library for manipulating disk partitions + Copyright (C) 2001, 2007 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#ifndef PED_LINUX_H_INCLUDED +#define PED_LINUX_H_INCLUDED + +#include +#include + +#if defined(__s390__) || defined(__s390x__) +# include +#endif + +#define LINUX_SPECIFIC(dev) ((LinuxSpecific*) (dev)->arch_specific) + +typedef struct _LinuxSpecific LinuxSpecific; + +struct _LinuxSpecific { + int fd; + char* dmtype; /**< device map target type */ +#if defined(__s390__) || defined(__s390x__) + unsigned int real_sector_size; + /* IBM internal dasd structure (i guess ;), required. */ + struct fdasd_anchor *anchor; +#endif +}; + +#endif /* PED_LINUX_H_INCLUDED */ + diff --git a/libparted/arch/linux.c b/libparted/arch/linux.c index 66fdd37..92c8f31 100644 --- a/libparted/arch/linux.c +++ b/libparted/arch/linux.c @@ -21,6 +21,7 @@ #include #include +#include #include #include @@ -75,24 +76,6 @@ #define RW_MODE (O_RDWR) #endif -#if defined(__s390__) || defined(__s390x__) -# include -#endif - -#define LINUX_SPECIFIC(dev) ((LinuxSpecific*) (dev)->arch_specific) - -typedef struct _LinuxSpecific LinuxSpecific; - -struct _LinuxSpecific { - int fd; - char* dmtype; /**< device map target type */ -#if defined(__s390__) || defined(__s390x__) - unsigned int real_sector_size; - /* IBM internal dasd structure (i guess ;), required. */ - struct fdasd_anchor *anchor; -#endif -}; - struct hd_geometry { unsigned char heads; unsigned char sectors; -- 1.6.0.6 Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted.spec,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- parted.spec 8 May 2009 14:50:17 -0000 1.133 +++ parted.spec 13 Jul 2009 16:30:15 -0000 1.134 @@ -3,30 +3,24 @@ Summary: The GNU disk partition manipulation program Name: parted -Version: 1.8.8 -Release: 17%{?dist} +Version: 1.9.0 +Release: 1%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted -Source: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-1.8.8-xvd.patch -Patch1: %{name}-1.8.8-devmapper-header.patch -Patch2: %{name}-1.8.8-noinst-headers.patch -Patch3: %{name}-1.8.8-manpage.patch -Patch4: %{name}-1.8.8-gcc-4.3.patch -Patch5: %{name}-1.8.8-nofixgpt.patch -Patch6: %{name}-1.8.8-alpha.patch -Patch7: %{name}-1.8.8-dospartrec.patch -Patch8: %{name}-1.8.8-appletv.patch -Patch9: %{name}-1.8.8-s390-compile.patch -Patch10: %{name}-1.8.8-sparc-enableraid.patch -Patch11: %{name}-1.8.8-avoid-none-stat.patch -Patch12: %{name}-1.8.8-newgcc4.4.patch -Patch13: %{name}-1.8.8-return-error-update-mode.patch -Patch14: %{name}-1.8.8-virtio.patch -Patch15: %{name}-1.8.8-dos-label-swap.patch -Patch16: %{name}-1.8.8-msdos-metadata.patch +Source: %{name}/%{name}-%{version}.tar.gz +Patch1: %{name}-1.9.0-appletv-support.patch +Patch2: %{name}-1.9.0-extended-mbr.patch +Patch3: %{name}-1.9.0-extra-var.patch +Patch4: %{name}-1.9.0-noheaders.patch +Patch5: %{name}-1.9.0-pop-push-error.patch +Patch6: %{name}-1.9.0-no-cylinder-align.patch +Patch7: %{name}-1.9.0-swap-flag.patch +Patch8: %{name}-1.9.0-remove-struct-elem.patch +Patch9: %{name}-1.9.0-move-function-declarations.patch +Patch10: %{name}-1.9.0-use-linuxh.patch +Patch11: %{name}-1.9.0-device-path.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -37,6 +31,9 @@ BuildRequires: gettext-devel BuildRequires: texinfo BuildRequires: device-mapper-devel BuildRequires: libselinux-devel +%ifnarch s390 s390x +BuildRequires: libuuid-devel +%endif Requires(post): /sbin/ldconfig Requires(post): /sbin/install-info @@ -62,27 +59,21 @@ partitions and filesystems using the rou Parted library, you need to install this package. %prep -%setup -q -%patch0 -p1 -b .xvd -%patch1 -p1 -b .devmapper -%patch2 -p1 -b .noinst -%patch3 -p1 -b .manpage -%patch4 -p1 -b .gcc43 -%patch5 -p1 -b .nofixgpt -%patch6 -p1 -b .alpha -%patch7 -p1 -b .dospartrec -%patch8 -p1 -b .appletv -%patch9 -p1 -b .s390-compile -%patch10 -p1 -b .sparc-raid -%patch11 -p1 -b .avoid-none-stat -%patch12 -p1 -b .newgcc4.4 -%patch13 -p1 -b .return-error-update-mode -%patch14 -p1 -b .virtio -%patch15 -p1 -b .dos-label-swap -%patch16 -p1 -b .msdos-metadata +%setup -q -n %{name}-%{version} +%patch1 -p1 -b .appletv +%patch2 -p1 -b .extended-mbr +%patch3 -p1 -b .extra-var +%patch4 -p1 -b .noheaders +%patch5 -p1 -b .pop-push-error +%patch6 -p1 -b .no-cylinder-align +%patch7 -p1 -b .swap-flag +%patch8 -p1 -b .remove-struct-elem +%patch9 -p1 -b .move-function-declarations +%patch10 -p1 -b .use-linuxh +%patch11 -p1 -b .device-path %build -%configure --enable-device-mapper --enable-selinux --disable-static +%configure --enable-selinux --disable-static %{__make} %{?_smp_mflags} %install @@ -137,8 +128,8 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Fri May 8 2009 Joel Granados - 1.8.8-17 -- Be consistent in the creation of metadata partitions for msdos labels (#498137) +* Wed Jul 10 2009 Joel Granados - 1.9.0-1 +- New version. * Thu Mar 26 2009 Joel Granados - 1.8.8-15 - Begin to identify virtio devices. From drago01 at fedoraproject.org Mon Jul 13 16:30:43 2009 From: drago01 at fedoraproject.org (drago01) Date: Mon, 13 Jul 2009 16:30:43 +0000 (UTC) Subject: rpms/compiz-fusion/devel compiz-fusion.spec,1.51,1.52 Message-ID: <20090713163043.541C711C0497@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/compiz-fusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28478 Modified Files: compiz-fusion.spec Log Message: fix conflict Index: compiz-fusion.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-fusion/devel/compiz-fusion.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- compiz-fusion.spec 10 Jul 2009 21:27:27 -0000 1.51 +++ compiz-fusion.spec 13 Jul 2009 16:30:43 -0000 1.52 @@ -1,8 +1,8 @@ -%define plugins animation bs colorfilter expo ezoom jpeg mag mousepoll neg opacify put resizeinfo ring scaleaddon session shift snap staticswitcher text thumbnail vpswitch wall winrules workarounds +%define plugins animation bs colorfilter expo ezoom jpeg mag mousepoll neg opacify put resizeinfo ring scaleaddon session shift snap staticswitcher text thumbnail vpswitch winrules workarounds Name: compiz-fusion Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of Compiz Fusion plugins for Compiz Group: User Interface/Desktops @@ -82,6 +82,7 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/* # remove wall plugin rm -f $RPM_BUILD_ROOT%{_datadir}/compiz/wall.xml rm -f $RPM_BUILD_ROOT%{_libdir}/compiz/libwall.so +rm -f $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas/compiz-wall.schemas %find_lang compiz-plugins-main @@ -139,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Adel Gadllah 0.8.2-3 +- Remove the wall gconf schema (conflicts with the one in compiz) + * Fri Jul 10 2009 Adel Gadllah 0.8.2-2 - Don't ship the wall plugin, moved to the compiz package From remi at fedoraproject.org Mon Jul 13 16:37:25 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 16:37:25 +0000 (UTC) Subject: rpms/graphviz/devel graphviz.spec,1.56,1.57 Message-ID: <20090713163725.AD9B811C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/graphviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29320 Modified Files: graphviz.spec Log Message: fix previous Index: graphviz.spec =================================================================== RCS file: /cvs/extras/rpms/graphviz/devel/graphviz.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- graphviz.spec 13 Jul 2009 15:54:45 -0000 1.56 +++ graphviz.spec 13 Jul 2009 16:36:55 -0000 1.57 @@ -4,7 +4,7 @@ Name: graphviz Summary: Graph Visualization Tools Version: 2.20.3 -Release: 4%{?dist} +Release: 4%{?dist}.1 Group: Applications/Multimedia License: CPL URL: http://www.graphviz.org/ @@ -243,7 +243,7 @@ __EOF__ %ifnarch ppc64 ppc # regression test, segfaults on ppc/ppc64, possible endian issues? cd rtest -LANG=C make rtest +make rtest %endif %clean @@ -408,6 +408,9 @@ fi %changelog +* Mon Jul 13 2009 Remi Collet 2.20.3-4.1 +- fix mistake in make rtest fix + * Mon Jul 13 2009 Remi Collet 2.20.3-4 - rebuild for new PHP 5.3.0 ABI (20090626) - add PHP ABI check From buc at fedoraproject.org Mon Jul 13 16:57:17 2009 From: buc at fedoraproject.org (Dmitry Butskoy) Date: Mon, 13 Jul 2009 16:57:17 +0000 (UTC) Subject: rpms/dvdisaster/devel .cvsignore, 1.8, 1.9 dvdisaster.spec, 1.27, 1.28 sources, 1.11, 1.12 dvdisaster-xdg-open.patch, 1.1, NONE Message-ID: <20090713165717.25D0611C0497@cvs1.fedora.phx.redhat.com> Author: buc Update of /cvs/extras/rpms/dvdisaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31753 Modified Files: .cvsignore dvdisaster.spec sources Removed Files: dvdisaster-xdg-open.patch Log Message: Upgrade to 0.72 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dvdisaster/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 8 Apr 2008 12:50:34 -0000 1.8 +++ .cvsignore 13 Jul 2009 16:56:46 -0000 1.9 @@ -1 +1 @@ -dvdisaster-0.70.6.tar.bz2 +dvdisaster-0.72.tar.bz2 Index: dvdisaster.spec =================================================================== RCS file: /cvs/extras/rpms/dvdisaster/devel/dvdisaster.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- dvdisaster.spec 24 Feb 2009 13:05:47 -0000 1.27 +++ dvdisaster.spec 13 Jul 2009 16:56:46 -0000 1.28 @@ -1,12 +1,11 @@ Summary: Additional error protection for CD/DVD media Name: dvdisaster -Version: 0.70.6 -Release: 2%{?dist} +Version: 0.72 +Release: 1%{?dist} Group: Applications/Archiving License: GPLv2+ URL: http://www.dvdisaster.com Source0: http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-xdg-open.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,18 +41,13 @@ po??kod??. %prep %setup -q -%patch0 -p1 %build %configure \ --docdir=%{_docdir} \ - --docsubdir=%{name}-%{version} \ - --localedir=%{_datadir}/locale \ - --with-nls=yes - -#make show + --localedir=%{_datadir}/locale # can not build locales with %{?_smp_mflags} make @@ -62,22 +56,10 @@ make %install rm -rf $RPM_BUILD_ROOT -make install \ - BINDIR=$RPM_BUILD_ROOT%{_bindir} \ - DOCSUBDIR=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} \ - MANDIR=$RPM_BUILD_ROOT%{_mandir} \ - LOCALEDIR=$RPM_BUILD_ROOT%{_prefix}/share/locale +make install BUILDROOT=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT%{_bindir}/*-uninstall.sh -pushd $RPM_BUILD_ROOT%{_mandir} -for i in `find . -type f -name "*.[1-9]"` -do - sed -i "s,$RPM_BUILD_ROOT,,g" $i -done -popd - - install -d $RPM_BUILD_ROOT%{_datadir}/pixmaps install -p -m644 contrib/dvdisaster48.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/ @@ -108,8 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/%{name}-%{version}/TODO %{_docdir}/%{name}-%{version}/en %lang(de) %{_docdir}/%{name}-%{version}/de -%lang(cs) %{_docdir}/%{name}-%{version}/cs +%lang(ru) %{_docdir}/%{name}-%{version}/ru %{_docdir}/%{name}-%{version}/images +%{_docdir}/%{name}-%{version}/include %{_mandir}/man1/* %lang(de) %{_mandir}/de/man1/* @@ -118,14 +101,14 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Feb 24 2009 Fedora Release Engineering - 0.70.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Mon Jul 13 2009 Dmitry Butskoy - 0.72-1 +- Upgrade to 0.72 * Tue Apr 8 2008 Dmitry Butskoy - 0.70.6-1 -- update to 0.70.6 +- Update to 0.70.6 * Tue Mar 4 2008 Dmitry Butskoy - 0.70.5-1 -- update to 0.70.5 +- Update to 0.70.5 * Mon Feb 18 2008 Fedora Release Engineering - 0.70.4-4 - Autorebuild for GCC 4.3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dvdisaster/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 8 Apr 2008 12:50:34 -0000 1.11 +++ sources 13 Jul 2009 16:56:46 -0000 1.12 @@ -1 +1 @@ -c6d2215d7dd582475b19593dfa4fbdc2 dvdisaster-0.70.6.tar.bz2 +efa35607d91412a7ff185722f270fb8a dvdisaster-0.72.tar.bz2 --- dvdisaster-xdg-open.patch DELETED --- From mbarnes at fedoraproject.org Mon Jul 13 17:14:41 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 17:14:41 +0000 (UTC) Subject: rpms/pygtk2/devel pygtk-2.15.2-gtk-2.16.defs.patch, NONE, 1.1 pygtk2.spec, 1.28, 1.29 Message-ID: <20090713171441.BCC5C11C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/pygtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2296 Modified Files: pygtk2.spec Added Files: pygtk-2.15.2-gtk-2.16.defs.patch Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.15.2-2.fc12 - Add patch for RH bug #511082 (missing gtk-2.16-types.defs). pygtk-2.15.2-gtk-2.16.defs.patch: --- NEW FILE pygtk-2.15.2-gtk-2.16.defs.patch --- diff -up pygtk-2.15.2/gtk/gtk-2.16.defs.gtk-2.16.defs pygtk-2.15.2/gtk/gtk-2.16.defs --- pygtk-2.15.2/gtk/gtk-2.16.defs.gtk-2.16.defs 2009-06-17 16:49:39.000000000 -0400 +++ pygtk-2.15.2/gtk/gtk-2.16.defs 2009-07-13 13:09:37.000000000 -0400 @@ -1,6 +1,6 @@ ;; -*- scheme -*- - +(include "gtk-2.16-types.defs") ;; From gtkaction.h Index: pygtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygtk2/devel/pygtk2.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- pygtk2.spec 21 Jun 2009 11:59:31 -0000 1.28 +++ pygtk2.spec 13 Jul 2009 17:14:41 -0000 1.29 @@ -15,7 +15,7 @@ Name: pygtk2 Version: 2.15.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Languages Summary: Python bindings for GTK+ @@ -30,6 +30,9 @@ Patch0: pygtk-nodisplay-exception.patch # RH bug #379051 / GNOME bug #523001 Patch1: pygtk2-2.12.1-pygtk-generic-cell-renderer-activate.patch +# RH bug #511082 +Patch2: pygtk-2.15.2-gtk-2.16.defs.patch + ### Dependencies ### # Leave these requirements alone! RPM isn't smart enough @@ -102,6 +105,7 @@ This package contains documentation file %setup -q -n pygtk-%{version} %patch0 -p1 %patch1 -p1 -b .pygtk-generic-cell-renderer-activate +%patch2 -p1 -b .gtk-2.16-types.defs %build %configure --enable-thread --enable-numpy @@ -163,6 +167,9 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/pygtk %changelog +* Mon Jul 13 2009 Matthew Barnes - 2.15.2-2.fc12 +- Add patch for RH bug #511082 (missing gtk-2.16-types.defs). + * Sun Jun 21 2009 Matthew Barnes - 2.15.2-1.fc12 - Update to 2.15.2 From remi at fedoraproject.org Mon Jul 13 17:24:37 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 17:24:37 +0000 (UTC) Subject: rpms/cups/devel cups.spec,1.482,1.483 Message-ID: <20090713172437.664DB11C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4096 Modified Files: cups.spec Log Message: PHP 5.3.0 Build - Bug #511106 Index: cups.spec =================================================================== RCS file: /cvs/extras/rpms/cups/devel/cups.spec,v retrieving revision 1.482 retrieving revision 1.483 diff -u -p -r1.482 -r1.483 --- cups.spec 10 Jul 2009 15:26:18 -0000 1.482 +++ cups.spec 13 Jul 2009 17:24:07 -0000 1.483 @@ -1,3 +1,6 @@ +%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4) +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) + %define pre rc1 %define initdir /etc/rc.d/init.d %define use_alternatives 1 @@ -7,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.8%{?dist} +Release: 0.%{pre}.9%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -133,7 +136,12 @@ Requires: xinetd Summary: Common Unix Printing System - php module Group: Development/Languages Requires: %{name} = %{epoch}:%{version}-%{release} -Requires: php-common +%if 0%{?php_zend_api} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %description @@ -305,6 +313,14 @@ rm -rf $RPM_BUILD_ROOT%{_mandir}/cat? $R rm -f $RPM_BUILD_ROOT%{_datadir}/applications/cups.desktop rm -rf $RPM_BUILD_ROOT%{_datadir}/icons +# Put the php config bit into place +%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d +%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini +; Enable %{name} extension module +extension=phpcups.so +__EOF__ + + %post /sbin/chkconfig --del cupsd 2>/dev/null || true # Make sure old versions aren't there anymore /sbin/chkconfig --add cups || true @@ -473,9 +489,16 @@ rm -rf $RPM_BUILD_ROOT %files php %defattr(-,root,root) -%{_libdir}/php/modules/*.so +%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini +%{php_extdir}/phpcups.so %changelog +* Mon Jul 13 2009 Remi Collet 1:1.4-0.rc1.9 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add PHP ABI check +- use php_extdir +- add php configuration file (/etc/php.d/cups.ini) + * Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 - Build does not require aspell-devel (bug #510405). From mbarnes at fedoraproject.org Mon Jul 13 17:32:32 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 17:32:32 +0000 (UTC) Subject: rpms/libsoup/devel libsoup.spec,1.94,1.95 Message-ID: <20090713173232.7C9F611C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/libsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6320 Modified Files: libsoup.spec Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1 - Update to 2.27.4 Index: libsoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/libsoup.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- libsoup.spec 17 Jun 2009 18:00:34 -0000 1.94 +++ libsoup.spec 13 Jul 2009 17:32:32 -0000 1.95 @@ -3,7 +3,7 @@ ### Abstract ### Name: libsoup -Version: 2.27.2 +Version: 2.27.4 Release: 1%{?dist} License: LGPLv2 Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/%{name}-2.4 %changelog +* Mon Jul 13 2009 Matthew Barnes - 2.27.4-1 +- Update to 2.27.4 + * Wed Jun 17 2009 Matthias Clasen - 2.27.2-1 - Update to 2.27.2 From jgranado at fedoraproject.org Mon Jul 13 17:37:54 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Mon, 13 Jul 2009 17:37:54 +0000 (UTC) Subject: rpms/parted/F-11 .cvsignore,1.32,1.33 sources,1.36,1.37 Message-ID: <20090713173754.D163711C0497@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7264 Modified Files: .cvsignore sources Log Message: Make sure the tar.gz file is present. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/.cvsignore,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- .cvsignore 3 Jan 2008 02:26:18 -0000 1.32 +++ .cvsignore 13 Jul 2009 17:37:24 -0000 1.33 @@ -1 +1 @@ -parted-1.8.8.tar.bz2 +parted-1.9.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 3 Jan 2008 02:26:18 -0000 1.36 +++ sources 13 Jul 2009 17:37:24 -0000 1.37 @@ -1 +1 @@ -607ab4c3cfd8455af6588b97d99ad0ba parted-1.8.8.tar.bz2 +ba0122a5ab71cb3b040d6193532f1aed parted-1.9.0.tar.gz From remi at fedoraproject.org Mon Jul 13 17:40:04 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 17:40:04 +0000 (UTC) Subject: rpms/php-suhosin/devel php-suhosin.spec,1.4,1.5 Message-ID: <20090713174005.015A311C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-suhosin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7715 Modified Files: php-suhosin.spec Log Message: PHP 5.3.0 Build Index: php-suhosin.spec =================================================================== RCS file: /cvs/extras/rpms/php-suhosin/devel/php-suhosin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-suhosin.spec 26 Feb 2009 22:44:32 -0000 1.4 +++ php-suhosin.spec 13 Jul 2009 17:39:34 -0000 1.5 @@ -4,7 +4,7 @@ Name: php-suhosin Version: 0.9.27 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Suhosin is an advanced protection system for PHP installations Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/suhosin.so %changelog +* Mon Jul 13 2009 Remi Collet - 0.9.27-3 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.27-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mbarnes at fedoraproject.org Mon Jul 13 17:48:35 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 17:48:35 +0000 (UTC) Subject: rpms/libsoup/devel .cvsignore,1.51,1.52 sources,1.51,1.52 Message-ID: <20090713174835.23E5511C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/libsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9476 Modified Files: .cvsignore sources Log Message: Bah... Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 17 Jun 2009 18:00:34 -0000 1.51 +++ .cvsignore 13 Jul 2009 17:48:34 -0000 1.52 @@ -1 +1 @@ -libsoup-2.27.2.tar.bz2 +libsoup-2.27.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 17 Jun 2009 18:00:34 -0000 1.51 +++ sources 13 Jul 2009 17:48:34 -0000 1.52 @@ -1 +1 @@ -6ea5e7780488efe4565790cf4937cce3 libsoup-2.27.2.tar.bz2 +c9b676621f1b89245ec5cec0c67198b7 libsoup-2.27.4.tar.bz2 From ajax at fedoraproject.org Mon Jul 13 17:53:38 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 13 Jul 2009 17:53:38 +0000 (UTC) Subject: rpms/libxcb/devel libxcb.spec,1.24,1.25 Message-ID: <20090713175338.4317B11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10478 Modified Files: libxcb.spec Log Message: * Mon Jul 13 2009 Adam Jackson 1.2-8 - Really fix xpyb build. Index: libxcb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/libxcb.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libxcb.spec 6 Jul 2009 14:54:48 -0000 1.24 +++ libxcb.spec 13 Jul 2009 17:53:08 -0000 1.25 @@ -7,7 +7,7 @@ Name: libxcb Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A C binding to the X11 protocol Group: System Environment/Libraries @@ -31,7 +31,7 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: libXau-devel BuildRequires: libxslt -BuildRequires: python +BuildRequires: python-devel BuildRequires: xcb-proto >= 1.5 BuildRequires: xorg-x11-proto-devel BuildRequires: xorg-x11-util-macros @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 13 2009 Adam Jackson 1.2-8 +- Really fix xpyb build. + * Mon Jul 06 2009 Adam Jackson 1.2-7 - Fix xpyb build From slankes at fedoraproject.org Mon Jul 13 18:01:20 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Mon, 13 Jul 2009 18:01:20 +0000 (UTC) Subject: rpms/psi/devel .cvsignore, 1.14, 1.15 psi.spec, 1.32, 1.33 sources, 1.16, 1.17 psi-0.12-qt-4_5-compatibility.patch, 1.1, NONE Message-ID: <20090713180120.7D71811C0497@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12949 Modified Files: .cvsignore psi.spec sources Removed Files: psi-0.12-qt-4_5-compatibility.patch Log Message: * Mon Jul 13 2009 Sven Lankes 0.13-0.2.rc3 - 0.13 rc3 - remove qt 4.5 patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 2 Jul 2009 20:51:53 -0000 1.14 +++ .cvsignore 13 Jul 2009 18:00:48 -0000 1.15 @@ -1 +1 @@ -psi-0.13-rc2.tar.bz2 +psi-0.13-rc3.tar.bz2 Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- psi.spec 5 Jul 2009 20:17:28 -0000 1.32 +++ psi.spec 13 Jul 2009 18:00:49 -0000 1.33 @@ -1,13 +1,12 @@ Name: psi Version: 0.13 -Release: 0.2.rc2%{?dist} +Release: 0.2.rc3%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org -Source0: http://dl.sf.net/psi/psi-%{version}-rc2.tar.bz2 +Source0: http://dl.sf.net/psi/psi-%{version}-rc3.tar.bz2 Patch0: psi-0.12-qca.patch -Patch1: psi-0.12-qt-4_5-compatibility.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -67,9 +66,8 @@ More icons can be found on http://jisp.n %prep -%setup -q -n %{name}-%{version}-rc2 +%setup -q -n %{name}-%{version}-rc3 %patch0 -p0 -b .qca -#??%patch1 -p0 -b .qt45 %build unset QTDIR @@ -147,6 +145,10 @@ fi %changelog +* Mon Jul 13 2009 Sven Lankes 0.13-0.2.rc3 +- 0.13 rc3 +- remove qt 4.5 patch + * Thu Jul 05 2009 Sven Lankes 0.13-0.2.rc2 - own plugin directories (bz #509683) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 2 Jul 2009 20:51:53 -0000 1.16 +++ sources 13 Jul 2009 18:00:49 -0000 1.17 @@ -1,4 +1 @@ -86b7c60cfb3e0b09c8c603b22deaae3f psi-0.13-rc2.tar.bz2 -1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz -054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz -51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz +8632e1d1940f5b153876bbb93c565a4e psi-0.13-rc3.tar.bz2 --- psi-0.12-qt-4_5-compatibility.patch DELETED --- From steved at fedoraproject.org Mon Jul 13 18:04:54 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Mon, 13 Jul 2009 18:04:54 +0000 (UTC) Subject: rpms/nfs-utils/devel nfs-utils-1.2.0-proots-rel5.patch, NONE, 1.1 nfs-utils.spec, 1.235, 1.236 Message-ID: <20090713180454.C45F211C0497@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/nfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13906 Modified Files: nfs-utils.spec Added Files: nfs-utils-1.2.0-proots-rel5.patch Log Message: - Added NFSD v4 dynamic pseudo root patch which allows NFS v3 exports to be mounted by v4 clients. nfs-utils-1.2.0-proots-rel5.patch: --- NEW FILE nfs-utils-1.2.0-proots-rel5.patch --- diff -up nfs-utils-1.2.0/support/export/xtab.c.save nfs-utils-1.2.0/support/export/xtab.c --- nfs-utils-1.2.0/support/export/xtab.c.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/support/export/xtab.c 2009-07-13 13:50:38.000000000 -0400 @@ -19,7 +19,9 @@ #include "exportfs.h" #include "xio.h" #include "xlog.h" +#include "v4root.h" +int v4root_needed; static void cond_rename(char *newfile, char *oldfile); static int @@ -36,6 +38,8 @@ xtab_read(char *xtab, char *lockfn, int if ((lockid = xflock(lockfn, "r")) < 0) return 0; setexportent(xtab, "r"); + if (is_export == 1) + v4root_needed = 1; while ((xp = getexportent(is_export==0, 0)) != NULL) { if (!(exp = export_lookup(xp->e_hostname, xp->e_path, is_export != 1)) && !(exp = export_create(xp, is_export!=1))) { @@ -48,6 +52,8 @@ xtab_read(char *xtab, char *lockfn, int case 1: exp->m_xtabent = 1; exp->m_mayexport = 1; + if ((xp->e_flags & NFSEXP_FSID) && xp->e_fsid == 0) + v4root_needed = 0; break; case 2: exp->m_exported = -1;/* may be exported */ diff -up nfs-utils-1.2.0/support/include/exportfs.h.save nfs-utils-1.2.0/support/include/exportfs.h --- nfs-utils-1.2.0/support/include/exportfs.h.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/support/include/exportfs.h 2009-07-13 13:49:51.000000000 -0400 @@ -12,6 +12,17 @@ #include #include "nfslib.h" +enum nfsd_fsid { + FSID_DEV = 0, + FSID_NUM, + FSID_MAJOR_MINOR, + FSID_ENCODE_DEV, + FSID_UUID4_INUM, + FSID_UUID8, + FSID_UUID16, + FSID_UUID16_INUM, +}; + enum { MCL_FQDN = 0, MCL_SUBNETWORK, diff -up nfs-utils-1.2.0/support/include/nfs/export.h.save nfs-utils-1.2.0/support/include/nfs/export.h --- nfs-utils-1.2.0/support/include/nfs/export.h.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/support/include/nfs/export.h 2009-07-13 13:49:51.000000000 -0400 @@ -24,6 +24,7 @@ #define NFSEXP_FSID 0x2000 #define NFSEXP_CROSSMOUNT 0x4000 #define NFSEXP_NOACL 0x8000 /* reserved for possible ACL related use */ -#define NFSEXP_ALLFLAGS 0xFFFF +#define NFSEXP_V4ROOT 0x10000 +#define NFSEXP_ALLFLAGS 0x1FFFF #endif /* _NSF_EXPORT_H */ diff -up nfs-utils-1.2.0/support/include/nfslib.h.save nfs-utils-1.2.0/support/include/nfslib.h --- nfs-utils-1.2.0/support/include/nfslib.h.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/support/include/nfslib.h 2009-07-13 13:49:51.000000000 -0400 @@ -88,6 +88,7 @@ struct exportent { int e_fslocmethod; char * e_fslocdata; char * e_uuid; + void * e_v4root; struct sec_entry e_secinfo[SECFLAVOR_COUNT+1]; }; diff -up /dev/null nfs-utils-1.2.0/support/include/v4root.h --- /dev/null 2009-07-13 07:44:43.606003629 -0400 +++ nfs-utils-1.2.0/support/include/v4root.h 2009-07-13 13:49:57.000000000 -0400 @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2009 Red Hat + * support/include/v4root.h + * + * Support routines for dynamic pseudo roots. + * + */ + +#ifndef V4ROOT_H +#define V4ROOT_H + +extern int v4root_needed; + +extern struct exportent *v4root_chkroot(int , unsigned int , char *); +extern struct exportent *v4root_export(char *, int); +extern struct exportent *v4root_create(char *, nfs_export *, int); +extern void v4root_free(struct exportent *); +extern void v4root_unset(void), v4root_set(void); + +#endif /* V4ROOT_H */ diff -up nfs-utils-1.2.0/utils/mountd/auth.c.save nfs-utils-1.2.0/utils/mountd/auth.c --- nfs-utils-1.2.0/utils/mountd/auth.c.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/utils/mountd/auth.c 2009-07-13 13:50:38.000000000 -0400 @@ -20,6 +20,7 @@ #include "exportfs.h" #include "mountd.h" #include "xmalloc.h" +#include "v4root.h" enum auth_error { @@ -98,10 +99,13 @@ auth_reload() last_inode = stb.st_ino; } + v4root_unset(); export_freeall(); memset(&my_client, 0, sizeof(my_client)); xtab_export_read(); check_useipaddr(); + v4root_set(); + ++counter; return counter; diff -up nfs-utils-1.2.0/utils/mountd/cache.c.save nfs-utils-1.2.0/utils/mountd/cache.c --- nfs-utils-1.2.0/utils/mountd/cache.c.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/utils/mountd/cache.c 2009-07-13 13:50:33.000000000 -0400 @@ -32,23 +32,12 @@ #include "xmalloc.h" #include "fsloc.h" #include "pseudoflavors.h" +#include "v4root.h" #ifdef USE_BLKID #include "blkid/blkid.h" #endif - -enum nfsd_fsid { - FSID_DEV = 0, - FSID_NUM, - FSID_MAJOR_MINOR, - FSID_ENCODE_DEV, - FSID_UUID4_INUM, - FSID_UUID8, - FSID_UUID16, - FSID_UUID16_INUM, -}; - /* * Support routines for text-based upcalls. * Fields are separated by spaces. @@ -135,6 +124,8 @@ void auth_unix_gid(FILE *f) if (readline(fileno(f), &lbuf, &lbuflen) != 1) return; + xlog(D_CALL, "auth_unix_gid: '%s'", lbuf); + cp = lbuf; if (qword_get_int(&cp, &uid) != 0) return; @@ -391,6 +382,12 @@ void nfsd_fh(FILE *f) auth_reload(); + /* Check to see if the kenel is looking for the pseudo root */ + if ((found = v4root_chkroot(fsidtype, fsidnum, fhuuid))) { + found_path = strdup(found->e_path); + goto found; + } + /* Now determine export point for this fsid/domain */ for (i=0 ; i < MCL_MAXTYPES; i++) { nfs_export *next_exp; @@ -511,7 +508,23 @@ void nfsd_fh(FILE *f) */ goto out; } + if (!found) { + /* + * See if this is a pesudo export + */ + switch(fsidtype) { + case FSID_UUID4_INUM: + case FSID_UUID8: + case FSID_UUID16: + case FSID_UUID16_INUM: + found = v4root_export(fhuuid, uuidlen); + break; + } + if (found) + found_path = strdup(found->e_path); + } +found: if (found) if (cache_export_ent(dom, found, found_path) < 0) found = 0; @@ -590,7 +603,7 @@ static int dump_to_cache(FILE *f, char * qword_printint(f, time(0)+30*60); if (exp) { int different_fs = strcmp(path, exp->e_path) != 0; - + if (different_fs) qword_printint(f, exp->e_flags & ~NFSEXP_FSID); else @@ -631,6 +644,7 @@ void nfsd_export(FILE *f) int found_type = 0; struct in_addr addr; struct hostent *he = NULL; + struct exportent *v4root = NULL; if (readline(fileno(f), &lbuf, &lbuflen) != 1) @@ -665,10 +679,18 @@ void nfsd_export(FILE *f) path[l] == '/' && is_mountpoint(path))) /* ok */; - else + else { + /* See if the path is part of the psuedo root */ + if (v4root_needed && !v4root) + v4root = v4root_create(path, exp, TRUE); continue; - } else if (strcmp(path, exp->m_export.e_path) != 0) + } + } else if (strcmp(path, exp->m_export.e_path) != 0) { + /* See if the path is part of the psuedo root */ + if (v4root_needed && !v4root) + v4root = v4root_create(path, exp, TRUE); continue; + } if (use_ipaddr) { if (he == NULL) { if (!inet_aton(dom, &addr)) @@ -707,17 +729,28 @@ void nfsd_export(FILE *f) } if (found) { + xlog(D_CALL, "nfsd_export: found: path %s", path); if (dump_to_cache(f, dom, path, &found->m_export) < 0) { xlog(L_WARNING, "Cannot export %s, possibly unsupported filesystem" " or fsid= required", path); dump_to_cache(f, dom, path, NULL); } - } else { + } else if (v4root) { + xlog(D_CALL, "nfsd_export: vroot: path %s", path); + dump_to_cache(f, dom, path, v4root); + found = (nfs_export *)v4root; + } else { dump_to_cache(f, dom, path, NULL); } out: - xlog(D_CALL, "nfsd_export: found %p path %s", found, path ? path : NULL); + /* + * If a psuedo export was create and its not needed + * free it up. + */ + if (v4root && found != (nfs_export *)v4root) + v4root_free(v4root); + if (dom) free(dom); if (path) free(path); if (he) free(he); @@ -745,7 +778,9 @@ void cache_open(void) if (!manage_gids && cachelist[i].cache_handle == auth_unix_gid) continue; sprintf(path, "/proc/net/rpc/%s/channel", cachelist[i].cache_name); - cachelist[i].f = fopen(path, "r+"); + if ((cachelist[i].f = fopen(path, "r+")) == NULL) + xlog(L_ERROR, "cache_open: Unable to open '%s': errno %d (%s)", + path, errno, strerror(errno)); } } diff -up nfs-utils-1.2.0/utils/mountd/Makefile.am.save nfs-utils-1.2.0/utils/mountd/Makefile.am --- nfs-utils-1.2.0/utils/mountd/Makefile.am.save 2009-07-13 13:49:23.000000000 -0400 +++ nfs-utils-1.2.0/utils/mountd/Makefile.am 2009-07-13 13:49:57.000000000 -0400 @@ -8,7 +8,7 @@ KPREFIX = @kprefix@ sbin_PROGRAMS = mountd mountd_SOURCES = mountd.c mount_dispatch.c auth.c rmtab.c cache.c \ - svc_run.c fsloc.c mountd.h + svc_run.c fsloc.c v4root.c mountd.h mountd_LDADD = ../../support/export/libexport.a \ ../../support/nfs/libnfs.a \ ../../support/misc/libmisc.a \ diff -up /dev/null nfs-utils-1.2.0/utils/mountd/v4root.c --- /dev/null 2009-07-13 07:44:43.606003629 -0400 +++ nfs-utils-1.2.0/utils/mountd/v4root.c 2009-07-13 13:50:44.000000000 -0400 @@ -0,0 +1,409 @@ +/* + * Copyright (C) 2009 Red Hat + * + * support/export/v4root.c + * + * Routines used to support NFSv4 pseudo roots + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "xlog.h" +#include "exportfs.h" +#include "nfslib.h" +#include "misc.h" +#include "v4root.h" + +#ifndef _PATH_PSEUDO_ROOT +#define _PATH_PSEUDO_ROOT "/" +#endif + +#ifndef _PSEUDO_ROOT_FSID +#define _PSEUDO_ROOT_FSID 0 +#endif + +extern int get_uuid(char *path, char *uuid, int uuidlen, char *u); + +typedef struct _exports_t { + TAILQ_ENTRY(_exports_t) list; + char *path; + void *head; + char uuid_len; + char uuid[sizeof(uuid_t)]; + struct exportent p_export; +} exports_t; + +#define HASH_TABLE_SIZE 1021 +typedef struct _hash_head { + TAILQ_HEAD(export_list, _exports_t) h_head; +} hash_head; +hash_head exports_tbl[HASH_TABLE_SIZE]; + + +static exports_t *hash_export_lookup(char *, unsigned int); +static void hash_export_add(struct _exports_t *, int); +static void hash_mount_free(void); + +static inline unsigned int strtoint(char *str, int len) +{ + unsigned int n = 0; + int i; + + for (i=0; i < len; i++) + n+=((int)str[i])*i; + return n; +} +static inline int hashint(unsigned int num) +{ + return num % HASH_TABLE_SIZE; +} +#define HASH(_s, _l) hashint(strtoint((_s), (_l))) +void v4root_set(void); +void v4root_unset(void); + +int v4root_needed; + +static nfs_export pr_export = { + .m_next = NULL, + .m_client = NULL, + .m_export = { + .e_hostname = "*", + .e_path = _PATH_PSEUDO_ROOT, + .e_flags = NFSEXP_READONLY | NFSEXP_ROOTSQUASH + | NFSEXP_NOSUBTREECHECK | NFSEXP_FSID + | NFSEXP_CROSSMOUNT | NFSEXP_V4ROOT, + .e_anonuid = 65534, + .e_anongid = 65534, + .e_squids = NULL, + .e_nsquids = 0, + .e_sqgids = NULL, + .e_nsqgids = 0, + .e_fsid = 0, + .e_mountpoint = NULL, + }, + .m_exported = 0, + .m_xtabent = 1, + .m_mayexport = 1, + .m_changed = 0, + .m_warned = 0, +}; +static nfs_export *pseudo_root; + +/* + * Return the number '/' in the path + */ +inline static int slash_count(char *path) +{ + int i, slashs=0; + + for (i=0; i < strlen(path); i++) { + if (path[i] == '/') + slashs++; + } + return slashs; +} +/* + * Make sure the kernel has pseudo root support. + */ +static int +v4root_support() +{ + static int kernel_support = -1; + char *ptr, version[64]; + int major, minor; + FILE *fp; + + if (kernel_support != -1) + return kernel_support; + + kernel_support = 0; + fp = fopen("/proc/fs/nfsd/exports", "r"); + if (fp == NULL) + goto out; + + ptr = fgets(version, 64, fp); + fclose(fp); + if (ptr == NULL) + goto out; + + while(*ptr && isdigit(*ptr) == 0) + ptr++; + if (*ptr == '\0') + goto out; + + major = minor = 0; + sscanf(ptr, " %d.%d",&major, &minor); + if (major >= 1 && minor >= 2) + kernel_support = 1; +out: + if (!kernel_support) { + xlog(L_WARNING, "Kernel does not have psuedo root support."); + xlog(L_WARNING, "NFS v4 mounts will be disabled unless fsid=0"); + xlog(L_WARNING, "is specfied in /etc/exports file."); + } + + return kernel_support; +} +/* + * Build a table of pseudo exports by running through + * the real export looking at the components of the path + * that make up the export. Those path components, if not + * not exported, will be come pseudo exports allow them + * to be found when the kernel does an upcall looking for + * components of the v4 mount. + */ +void +v4root_set() +{ + nfs_export *exp, *nxt; + int i, slcnt; + char *e_path, *path, *ptr, *comp; + char *hostname; + + if (!v4root_needed) + return; + + if (!v4root_support()) + return; + + pseudo_root = &pr_export; + + for (i = 0; i < MCL_MAXTYPES; i++) { + for (exp = exportlist[i].p_head; exp; exp = nxt) { + nxt = exp->m_next; + e_path = exp->m_export.e_path; + hostname = exp->m_export.e_hostname; + + if ((slcnt = slash_count(e_path)) < 2) + continue; + slcnt--; /* knock off the leanding '/' */ + + path = strdup(e_path); + if ((ptr = strrchr(path, '/')) != NULL) + *ptr = '\0'; + + /* + * Run through each component of the path to + * see if a pseudo export should be create. + */ + comp = path+1; + do { + if ((ptr = strchr(comp, '/')) != NULL) + *ptr = '\0'; + + if (export_lookup(hostname, path, 0) == NULL) + v4root_create(path, exp, FALSE); + + if (ptr) { + *ptr = '/'; + comp = ptr+1; + } + } while (--slcnt > 0); + } + } +} + +/* + * Unset the pseudo root export + */ +void +v4root_unset() +{ + pseudo_root = NULL; + hash_mount_free(); +} + +/* + * The kernel will do an upcall looking for the pseudo + * root via its fsid. When the wanted fsid equals + * PSEUDO_ROOT_FSID return the pseudo root export. + */ +struct exportent * +v4root_chkroot(int fsidtype, unsigned int fsidnum, char *fhuuid) +{ + struct exportent *p_export = NULL; + + if (pseudo_root == NULL) + return NULL; + + switch(fsidtype) { + case FSID_NUM: + if (fsidnum == _PSEUDO_ROOT_FSID) { + p_export = &pseudo_root->m_export; + strncpy(p_export->e_path, _PATH_PSEUDO_ROOT, + NFS_MAXPATHLEN); + } + break; + } + + return p_export; +} + +/* + * Create a psuedo export, if one does not + * already exist. + */ +struct exportent * +v4root_create(char *path, nfs_export *exp, int docheck) +{ + static struct exportent *p_export = NULL; + exports_t *pexp; + char *epath = exp->m_export.e_path; + char *hostname = exp->m_export.e_hostname; + int elen, plen, i; + char uuid_len = sizeof(uuid_t); + char uuid[sizeof(uuid_t)]; + + if (pseudo_root == NULL) + return NULL; + + if (docheck) { + + /* Path needs to be an subset of e_path */ + elen = strlen(epath); + plen = strlen(path); + if (plen >= elen) + return NULL; + + for (i=0; i < plen; i++) { + if (path[i] != epath[i]) + return NULL; + } + } + + /* Check to see if the export already exists */ + get_uuid(path, NULL, uuid_len, uuid); + if ((p_export = v4root_export(uuid, uuid_len)) != NULL) + return p_export; + + pexp = (exports_t *)malloc(sizeof(exports_t)); + if (pexp == NULL) { + xlog(L_WARNING, "v4root_create: No memory for psuedo export"); + return NULL; + } + p_export = &pexp->p_export; + pexp->path = strdup(path); + + pexp->uuid_len = uuid_len; + memcpy(pexp->uuid, uuid, uuid_len); + + memcpy(&pexp->p_export, &pr_export.m_export, + sizeof(struct exportent)); + strcpy(p_export->e_path, path); + p_export->e_flags &= ~NFSEXP_FSID; + p_export->e_v4root = (void *)pexp; + + hash_export_add(pexp, HASH(pexp->uuid, sizeof(uuid_t))); + + xlog(D_CALL, "v4root_create: path '%s'", p_export->e_path); + + return p_export; +} + +/* + * Free a psuedo export + */ +void +v4root_free(struct exportent *p_export) +{ + exports_t *pexp = (exports_t *)p_export->e_v4root; + hash_head *head = (hash_head *)pexp->head; + + free(pexp->path); + TAILQ_REMOVE(&head->h_head, pexp, list); +} + +/* + * Return a psuedo export that match the given uuid + */ +struct exportent * +v4root_export(char *fhuuid, int uuidlen) +{ + struct exportent *p_export = NULL; + exports_t *pexp; + int len = MIN(uuidlen, sizeof(uuid_t)); + + if (pseudo_root == NULL) + return NULL; + + pexp = hash_export_lookup(fhuuid, len); + if (pexp) { + p_export = &pexp->p_export; + xlog(D_CALL, "v4root_export: path %s", p_export->e_path); + } + return p_export; +} + +/* + * Add psuedo export to export table + */ +static void hash_export_add(struct _exports_t *exp, int hash) +{ + hash_head *head; + + head = &(exports_tbl[hash]); + exp->head = head; + + if (TAILQ_EMPTY(&head->h_head)) + TAILQ_INSERT_HEAD(&head->h_head, exp, list); + else + TAILQ_INSERT_TAIL(&head->h_head, exp, list); +} + +/* + * Lookup a psuedo export using the uuid and inode number + */ +static exports_t * +hash_export_lookup(char *uuid, unsigned int uuidlen) +{ + exports_t *pexp; + hash_head *head; + int hash = HASH(uuid, uuidlen); + + head = &(exports_tbl[hash]); + + TAILQ_FOREACH(pexp, &head->h_head, list) { + if (memcmp(pexp->uuid, uuid, uuidlen) == 0) + return pexp; + } + return NULL; + +} + +/* + * Free up psuedo export table + */ +static void hash_mount_free() +{ + hash_head *head; + exports_t *e1, *e2; + int hash; + + for (hash=0; hash < HASH_TABLE_SIZE; hash++) { + head = &(exports_tbl[hash]); + if (head == NULL) + continue; + e1 = TAILQ_FIRST(&head->h_head); + while (e1 != NULL) { + free(e1->path); + e2 = TAILQ_NEXT(e1, list); + TAILQ_REMOVE(&head->h_head, e1, list); + free(e1); + e1 = e2; + } + TAILQ_INIT(&head->h_head); + } +} Index: nfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs-utils/devel/nfs-utils.spec,v retrieving revision 1.235 retrieving revision 1.236 diff -u -p -r1.235 -r1.236 --- nfs-utils.spec 29 Jun 2009 18:51:23 -0000 1.235 +++ nfs-utils.spec 13 Jul 2009 18:04:54 -0000 1.236 @@ -2,7 +2,7 @@ Summary: NFS utilities and supporting cl Name: nfs-utils URL: http://sourceforge.net/projects/nfs Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 # group all 32bit related archs @@ -24,6 +24,7 @@ Patch02: nfs-utils-1.1.0-exp-subtree-war Patch100: nfs-utils-1.2.1-rc1.patch Patch101: nfs-utils-1.2.1-mydaemon.patch +Patch102: nfs-utils-1.2.0-proots-rel5.patch Group: System Environment/Daemons Provides: exportfs = %{epoch}:%{version}-%{release} @@ -77,6 +78,7 @@ This package also contains the mount.nfs %patch100 -p1 %patch101 -p1 +%patch102 -p1 # Remove .orig files find . -name "*.orig" | xargs rm -f @@ -245,6 +247,10 @@ fi %attr(4755,root,root) /sbin/umount.nfs4 %changelog +* Mon Jul 13 2009 1.2.0-6 +- Added NFSD v4 dynamic pseudo root patch which allows + NFS v3 exports to be mounted by v4 clients. + * Mon Jun 29 2009 1.2.0-5 - Stopped rpc.idmapd from spinning (bz 508221) From slankes at fedoraproject.org Mon Jul 13 18:14:08 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Mon, 13 Jul 2009 18:14:08 +0000 (UTC) Subject: rpms/psi/devel sources,1.17,1.18 Message-ID: <20090713181409.5375911C0497@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15929 Modified Files: sources Log Message: re-add missing files Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 13 Jul 2009 18:00:49 -0000 1.17 +++ sources 13 Jul 2009 18:13:37 -0000 1.18 @@ -1 +1,4 @@ 8632e1d1940f5b153876bbb93c565a4e psi-0.13-rc3.tar.bz2 +1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz +054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz +51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz From jgranado at fedoraproject.org Mon Jul 13 18:14:45 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Mon, 13 Jul 2009 18:14:45 +0000 (UTC) Subject: rpms/parted/F-11 parted.spec,1.134,1.135 Message-ID: <20090713181445.9B5B511C0497@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16136 Modified Files: parted.spec Log Message: Correctly number the snapshot. Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- parted.spec 13 Jul 2009 16:30:15 -0000 1.134 +++ parted.spec 13 Jul 2009 18:14:45 -0000 1.135 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 1%{?dist} +Release: 2.20090610git32dc%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -128,7 +128,10 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Wed Jul 10 2009 Joel Granados - 1.9.0-1 +* Mon Jul 13 2009 Joel Granados - 1.9.0-2.20090610git32dc +- Correctly number the snapshot. + +* Fri Jul 10 2009 Joel Granados - 1.9.0-1 - New version. * Thu Mar 26 2009 Joel Granados - 1.8.8-15 From jgranado at fedoraproject.org Mon Jul 13 18:18:16 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Mon, 13 Jul 2009 18:18:16 +0000 (UTC) Subject: rpms/parted/devel parted.spec,1.134,1.135 Message-ID: <20090713181816.D1F2A11C0497@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16913 Modified Files: parted.spec Log Message: Correctly number the snapshot. Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- parted.spec 10 Jul 2009 13:18:12 -0000 1.134 +++ parted.spec 13 Jul 2009 18:18:16 -0000 1.135 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 1%{?dist} +Release: 2.20090610git32dc%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -128,7 +128,10 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Wed Jul 10 2009 Joel Granados - 1.9.0-1 +* Mon Jul 13 2009 Joel Granados - 1.9.0-2.20090610git32dc +- Correctly number the snapshot. + +* Fri Jul 10 2009 Joel Granados - 1.9.0-1 - New version. * Thu Mar 26 2009 Joel Granados - 1.8.8-15 From mbarnes at fedoraproject.org Mon Jul 13 18:34:20 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Mon, 13 Jul 2009 18:34:20 +0000 (UTC) Subject: rpms/evolution/devel evolution-2.27.4-gmount-deprecation.patch, NONE, 1.1 evolution.spec, 1.403, 1.404 Message-ID: <20090713183420.AF5E511C0497@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21548 Modified Files: evolution.spec Added Files: evolution-2.27.4-gmount-deprecation.patch Log Message: * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 - Work around deprecation of g_mount_unmount(). evolution-2.27.4-gmount-deprecation.patch: --- NEW FILE evolution-2.27.4-gmount-deprecation.patch --- diff -up evolution-2.27.4/plugins/publish-calendar/publish-calendar.c.gmount-deprecation evolution-2.27.4/plugins/publish-calendar/publish-calendar.c --- evolution-2.27.4/plugins/publish-calendar/publish-calendar.c.gmount-deprecation 2009-07-13 03:45:13.000000000 -0400 +++ evolution-2.27.4/plugins/publish-calendar/publish-calendar.c 2009-07-13 14:32:58.000000000 -0400 @@ -129,7 +129,11 @@ unmount_done_cb (GObject *source_object, { GError *error = NULL; +#if GLIB_CHECK_VERSION(2,21,4) + g_mount_unmount_with_operation_finish (G_MOUNT (source_object), res, &error); +#else g_mount_unmount_finish (G_MOUNT (source_object), res, &error); +#endif if (error) { g_warning ("Unmount failed: %s", error->message); @@ -177,7 +181,11 @@ mount_ready_cb (GObject *source_object, mount = g_file_find_enclosing_mount (G_FILE (source_object), NULL, NULL); if (mount) +#if GLIB_CHECK_VERSION(2,21,4) + g_mount_unmount_with_operation (mount, G_MOUNT_UNMOUNT_NONE, NULL, NULL, unmount_done_cb, NULL); +#else g_mount_unmount (mount, G_MOUNT_UNMOUNT_NONE, NULL, unmount_done_cb, NULL); +#endif g_object_unref (source_object); } Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.403 retrieving revision 1.404 diff -u -p -r1.403 -r1.404 --- evolution.spec 13 Jul 2009 14:32:47 -0000 1.403 +++ evolution.spec 13 Jul 2009 18:34:19 -0000 1.404 @@ -69,6 +69,9 @@ Patch12: evolution-2.9.1-im-context-rese # Let the pst-import plugin work with current libpst. Patch14: evolution-2.27.3-pst-import.patch +# Work around deprecation of g_mount_unmount(). +Patch15: evolution-2.27.4-gmount-deprecation.patch + ## Dependencies ### Requires(post): GConf2 @@ -243,6 +246,7 @@ This package contains the plugin to impo %patch11 -p1 -b .fix-conduit-dir %patch12 -p1 -b .im-context-reset %patch14 -p1 -b .pst-import +%patch15 -p1 -b .gmount-deprecation mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -699,6 +703,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 +- Work around deprecation of g_mount_unmount(). * Fri Jul 10 2009 Matthew Barnes - 2.27.3-5.fc11 - Add an evolution-pst subpackage for the PST importer plugin. From remi at fedoraproject.org Mon Jul 13 18:35:32 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 18:35:32 +0000 (UTC) Subject: rpms/uuid/devel uuid.spec,1.15,1.16 Message-ID: <20090713183532.B141111C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/uuid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21861 Modified Files: uuid.spec Log Message: PHP 5.3.0 build - Bug #511115 Index: uuid.spec =================================================================== RCS file: /cvs/extras/rpms/uuid/devel/uuid.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- uuid.spec 7 May 2009 15:30:48 -0000 1.15 +++ uuid.spec 13 Jul 2009 18:35:02 -0000 1.16 @@ -1,6 +1,9 @@ +%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4) +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) + Name: uuid Version: 1.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Universally Unique Identifier library License: MIT Group: System Environment/Libraries @@ -62,8 +65,13 @@ Perl OSSP uuid modules, which includes a Summary: PHP support for Universally Unique Identifier library Group: Development/Libraries BuildRequires: php-devel -Requires: %{_libdir}/php/modules Requires: %{name} = %{version}-%{release} +%if 0%{?php_zend_api} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %description php PHP OSSP uuid module. @@ -126,11 +134,11 @@ popd # Build the PHP module. pushd php +export PHP_RPATH=no phpize CFLAGS="$RPM_OPT_FLAGS -I.. -L.. -L../.libs" %configure --enable-uuid -sed -i -e '/^LDFLAGS =/s/-Wl,-rpath,[^[:space:]]*//' Makefile -make LIBTOOL=/usr/bin/libtool %{?_smp_mflags} +make %{?_smp_mflags} popd %install @@ -154,9 +162,18 @@ popd # Install the PHP module. pushd php make install INSTALL_ROOT=$RPM_BUILD_ROOT -rm -f $RPM_BUILD_ROOT%{_libdir}/php/modules/*.a +rm -f $RPM_BUILD_ROOT%{php_extdir}/*.a popd +# Put the php config bit into place +%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d +%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini +; Enable %{name} extension module +extension=%{name}.so +__EOF__ + + + %check make check @@ -218,7 +235,8 @@ rm -rf $RPM_BUILD_ROOT %files php %defattr(-,root,root,-) -%{_libdir}/php/modules/* +%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini +%{php_extdir}/%{name}.so %files pgsql %defattr(-,root,root,-) @@ -235,6 +253,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libossp-uuid_dce.so %changelog +* Mon Jul 13 2009 Remi Collet - 1.6.1-7 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add PHP ABI check +- use php_extdir +- add php configuration file (/etc/php.d/uuid.ini) + * Thu May 7 2009 Michael Schwendt - 1.6.1-6 - Using plain old "Requires: pkgconfig" instead -- see my post to fedora-devel-list made today. From ajax at fedoraproject.org Mon Jul 13 18:45:36 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 13 Jul 2009 18:45:36 +0000 (UTC) Subject: rpms/libxcb/devel libxcb.spec,1.25,1.26 Message-ID: <20090713184536.3647C11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24134 Modified Files: libxcb.spec Log Message: python me harder Index: libxcb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/libxcb.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libxcb.spec 13 Jul 2009 17:53:08 -0000 1.25 +++ libxcb.spec 13 Jul 2009 18:45:05 -0000 1.26 @@ -78,6 +78,13 @@ Python bindings for %{name}. %patch1 -p1 -b .git %patch2 -p1 -b .no-nagle +%if !0%{?bootstrap} +pushd ../xpyb-%{xpyb_version} +# XXX fix me upstream please +sed -i 's@$(pythondir)@$(pyexecdir)@' src/Makefile.am +popd +%endif + %build autoreconf -v --install %configure --disable-static --docdir=%{_datadir}/doc/%{name}-%{version} \ @@ -86,6 +93,7 @@ make %{?_smp_mflags} %if !0%{?bootstrap} pushd ../xpyb-%{xpyb_version} +autoreconf -v --install %configure make %{?_smp_mflags} popd From ajax at fedoraproject.org Mon Jul 13 19:23:01 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 13 Jul 2009 19:23:01 +0000 (UTC) Subject: rpms/xcb-util/devel xcb-util.spec,1.8,1.9 Message-ID: <20090713192301.DE85A11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv390 Modified Files: xcb-util.spec Log Message: * Mon Jul 13 2009 Adam Jackson 0.3.5-1 - xcb-util 0.3.5 Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/xcb-util.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xcb-util.spec 6 Jul 2009 15:14:25 -0000 1.8 +++ xcb-util.spec 13 Jul 2009 19:23:00 -0000 1.9 @@ -1,6 +1,6 @@ Name: xcb-util -Version: 0.3.4 -Release: 2%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Convenience libraries sitting on top of libxcb Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Adam Jackson 0.3.5-1 +- xcb-util 0.3.5 + * Mon Jul 06 2009 Adam Jackson 0.3.4-2 - Explicitly list DSOs so we're notified of version changes. From ajax at fedoraproject.org Mon Jul 13 19:25:40 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 13 Jul 2009 19:25:40 +0000 (UTC) Subject: rpms/xcb-util/devel .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090713192540.5AA0C11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xcb-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1120 Modified Files: .cvsignore sources Log Message: * Mon Jul 13 2009 Adam Jackson 0.3.5-1 - xcb-util 0.3.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 11 May 2009 11:11:01 -0000 1.5 +++ .cvsignore 13 Jul 2009 19:25:10 -0000 1.6 @@ -1 +1 @@ -xcb-util-0.3.4.tar.bz2 +xcb-util-0.3.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 11 May 2009 11:11:02 -0000 1.5 +++ sources 13 Jul 2009 19:25:10 -0000 1.6 @@ -1 +1 @@ -015314fe5e97d9390024275c6a3699a4 xcb-util-0.3.4.tar.bz2 +13649baa059dcea7779d2b9ff3843888 xcb-util-0.3.5.tar.bz2 From remi at fedoraproject.org Mon Jul 13 19:26:46 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 19:26:46 +0000 (UTC) Subject: rpms/sipwitch/devel sipwitch.spec,1.3,1.4 Message-ID: <20090713192646.15FAF11C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/sipwitch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1571 Modified Files: sipwitch.spec Log Message: PHP 5.3.0 stuff (not working) - Bug #511123 Index: sipwitch.spec =================================================================== RCS file: /cvs/extras/rpms/sipwitch/devel/sipwitch.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sipwitch.spec 4 Jul 2009 20:15:14 -0000 1.3 +++ sipwitch.spec 13 Jul 2009 19:26:45 -0000 1.4 @@ -11,11 +11,12 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %{!?php_extdir: %global %(php-config --extension-dir)} +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) Name: sipwitch Summary: SIP telephony server for secure phone systems Version: 0.5.6 -Release: 0%{?dist} +Release: 1%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/sipwitch Group: Applications/Communications @@ -59,9 +60,14 @@ Requires: %{name} = %{version}-%{release Summary: Python package to control sipwitch server %package php-swig -Requires: php -Requires: %{name} = %{version}-%{release} Summary: PHP package to control sipwitch server +Requires: %{name} = %{version}-%{release} +%if 0%{?php_zend_api} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %package plugin-scripting Requires: %{name} = %{version}-%{release} @@ -157,6 +163,14 @@ remote voip service provider. %{__rm} -f %{buildroot}/%{_libdir}/*.la %{__rm} -f %{buildroot}/%{_libdir}/sipwitch/*.la +# Put the php config bit into place +%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d +%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini +; Enable %{name} extension module +extension=%{name}.so +__EOF__ + + %clean %{__rm} -rf %{buildroot} @@ -194,6 +208,7 @@ remote voip service provider. %files php-swig %defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini %{php_extdir}/sipwitch.so %files plugin-forward @@ -231,6 +246,11 @@ fi /sbin/ldconfig %changelog +* Mon Jul 13 2009 Remi Collet - 0.5.6-1 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add PHP ABI check +- add php configuration file (/etc/php.d/sipwitch.ini) + * Sat Jul 04 2009 - David Sugar - 0.5.6-0 - split runtime from server to build plugins without requiring server. - removed separate rtp proxy, functionality will be integrated into server. From mcepl at fedoraproject.org Mon Jul 13 20:07:06 2009 From: mcepl at fedoraproject.org (Matej Cepl) Date: Mon, 13 Jul 2009 20:07:06 +0000 (UTC) Subject: rpms/jbrout/devel jbrout.spec,1.6,1.7 Message-ID: <20090713200706.E495211C0497@cvs1.fedora.phx.redhat.com> Author: mcepl Update of /cvs/pkgs/rpms/jbrout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11446 Modified Files: jbrout.spec Log Message: - Use hashlib if possible. Index: jbrout.spec =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/devel/jbrout.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jbrout.spec 21 Mar 2009 12:31:30 -0000 1.6 +++ jbrout.spec 13 Jul 2009 20:06:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: jbrout Version: 0.3.174 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Photo manager, written in python/pygtk Group: Applications/Multimedia License: GPLv2 @@ -11,6 +11,7 @@ Source1: jbrout-Makefile Source2: jbrout.desktop Source3: jbrout-usr_bin Source4: jbrout-install.sh +Patch0: jbrout-hashlib.patch BuildArch: noarch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: python >= 2.4, python-lxml, pygtk2 >= 2.6 @@ -39,6 +40,7 @@ jBrout is able to : %prep %setup -q -n jbrout +%patch0 -p1 -b .hashlib cd jbrout/ TEMPFILE=$(mktemp %{_tmppath}/jbrout-build.XXXXXX) @@ -90,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/jbrout.desktop %changelog +* Mon Jul 13 2009 Mat??j Cepl - 0.3.174-2 +- Use hashlib if possible. + * Sat Mar 21 2009 Matej Cepl 0.3.174-1 - New upstream release From remi at fedoraproject.org Mon Jul 13 20:26:55 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 20:26:55 +0000 (UTC) Subject: rpms/php-pear-Net-DNS/devel .cvsignore, 1.2, 1.3 php-pear-Net-DNS.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090713202655.876D911C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-DNS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15897 Modified Files: .cvsignore php-pear-Net-DNS.spec sources Log Message: Update to 1.0.1, don't require mhash, fix broken deps Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-DNS/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jul 2008 11:02:18 -0000 1.2 +++ .cvsignore 13 Jul 2009 20:26:25 -0000 1.3 @@ -1 +1 @@ -Net_DNS-1.0.0.tgz +Net_DNS-1.0.1.tgz Index: php-pear-Net-DNS.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-DNS/devel/php-pear-Net-DNS.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Net-DNS.spec 26 Feb 2009 21:46:00 -0000 1.2 +++ php-pear-Net-DNS.spec 13 Jul 2009 20:26:25 -0000 1.3 @@ -2,8 +2,8 @@ %define pear_name Net_DNS Name: php-pear-Net-DNS -Version: 1.0.0 -Release: 3%{?dist} +Version: 1.0.1 +Release: 1%{?dist} Summary: Resolver library used to communicate with a DNS server Group: Development/Libraries @@ -15,7 +15,6 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: php-pear >= 1:1.4.9-1.2 BuildArch: noarch Requires: php-pear(PEAR) -Requires: php-mhash Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} @@ -30,8 +29,8 @@ resolver library and communicates direct %prep %setup -qc -%{__pear} convert package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +# Package.xml is V2 +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -43,14 +42,14 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Clean up unnecessary files rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??* # Install XML package description install -d $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -59,7 +58,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -70,14 +69,18 @@ fi %files %defattr(-,root,root,-) -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %dir %{pear_phpdir}/Net -%dir %{pear_phpdir}/Net/DNS %{pear_phpdir}/Net/DNS %{pear_phpdir}/Net/DNS.php - +%exclude %{pear_phpdir}/Net/generate_package_xml.php %changelog +* Mon Jul 13 2009 Remi Collet - 1.0.1-1 +- update to 1.0.1 +- remove mhash dependency (now optional, and not provided by php 5.3.0) +- rename Net_DNS.xml to php-pear-Net-DNS.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-DNS/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jul 2008 11:02:18 -0000 1.2 +++ sources 13 Jul 2009 20:26:25 -0000 1.3 @@ -1 +1 @@ -1cc082bec28189847083e2c42c2d9b2d Net_DNS-1.0.0.tgz +04d403057c787d19dd3d06b2f093e4b6 Net_DNS-1.0.1.tgz From mcepl at fedoraproject.org Mon Jul 13 20:27:53 2009 From: mcepl at fedoraproject.org (Matej Cepl) Date: Mon, 13 Jul 2009 20:27:53 +0000 (UTC) Subject: rpms/jbrout/devel jbrout-hashlib.patch,NONE,1.1 Message-ID: <20090713202753.61F5311C0497@cvs1.fedora.phx.redhat.com> Author: mcepl Update of /cvs/pkgs/rpms/jbrout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16241 Added Files: jbrout-hashlib.patch Log Message: Forgot to add patch. jbrout-hashlib.patch: --- NEW FILE jbrout-hashlib.patch --- diff -up jbrout/jbrout/plugins/multiexport/libs/flickr.py.hashlib jbrout/jbrout/plugins/multiexport/libs/flickr.py --- jbrout/jbrout/plugins/multiexport/libs/flickr.py.hashlib 2009-07-13 21:29:09.214035838 +0200 +++ jbrout/jbrout/plugins/multiexport/libs/flickr.py 2009-07-13 22:00:54.242161317 +0200 @@ -11,7 +11,11 @@ ## GNU General Public License for more details. ## -import urllib, urllib2, md5, mimetools, mimetypes, os.path +import urllib, urllib2, mimetools, mimetypes, os.path +try: + import hashlib +except ImportError: + import md5 as hashlib from xml.dom import minidom class FlickrAPI: @@ -166,7 +170,7 @@ class FlickrAPI: sig_str = self.secret for key in keys: sig_str += key + str(args[key]) - return md5.new(sig_str).hexdigest() + return hashlib.md5(sig_str).hexdigest() class FlickrUploader: def __init__(self, conf,showAuthWin): From tanguy at fedoraproject.org Mon Jul 13 20:34:19 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Mon, 13 Jul 2009 20:34:19 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis-0.2.0-pro.patch, 1.1, 1.2 scidavis.spec, 1.19, 1.20 Message-ID: <20090713203419.6ADC511C0497@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18556 Modified Files: scidavis-0.2.0-pro.patch scidavis.spec Log Message: scidavis-0.2.0-pro.patch: Index: scidavis-0.2.0-pro.patch =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis-0.2.0-pro.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- scidavis-0.2.0-pro.patch 11 Apr 2009 08:59:35 -0000 1.1 +++ scidavis-0.2.0-pro.patch 13 Jul 2009 20:34:19 -0000 1.2 @@ -14,7 +14,7 @@ ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. -# manual.path = $$INSTALLBASE/share/doc/scidavis/manual -+manual.path = $$INSTALLBASE/share/doc/scidavis-manual-0.2.0 ++manual.path = $$INSTALLBASE/share/doc/scidavis-manual-0.2.3 ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- scidavis.spec 5 Jul 2009 18:49:53 -0000 1.19 +++ scidavis.spec 13 Jul 2009 20:34:19 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.0-pro.patch @@ -98,6 +98,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Mon Jul 13 2009 Eric Tanguy - 0.2.3-2 +- BZ #510968 + * Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 - Update to 0.2.3 From athimm at fedoraproject.org Mon Jul 13 20:34:15 2009 From: athimm at fedoraproject.org (athimm) Date: Mon, 13 Jul 2009 20:34:15 +0000 (UTC) Subject: rpms/mediawiki/F-11 .cvsignore, 1.21, 1.22 mediawiki.spec, 1.31, 1.32 sources, 1.22, 1.23 Message-ID: <20090713203415.18C4611C0497@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18371/F-11 Modified Files: .cvsignore mediawiki.spec sources Log Message: Update to 1.15.1. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 11 Jul 2009 20:37:45 -0000 1.21 +++ .cvsignore 13 Jul 2009 20:33:44 -0000 1.22 @@ -1 +1 @@ -mediawiki-1.15.0.tar.gz +mediawiki-1.15.1.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/mediawiki.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mediawiki.spec 11 Jul 2009 20:37:45 -0000 1.31 +++ mediawiki.spec 13 Jul 2009 20:33:44 -0000 1.32 @@ -1,7 +1,7 @@ Summary: A wiki engine Name: mediawiki -Version: 1.15.0 -Release: 47%{?dist} +Version: 1.15.1 +Release: 48%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ @@ -113,6 +113,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Axel Thimm - 1.15.1-48 +- Update to 1.15.1 (Fixes XSS vulnerability). + * Sat Jul 11 2009 Axel Thimm - 1.15.0-47 - Fix api.php breakage. Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 11 Jul 2009 20:37:45 -0000 1.22 +++ sources 13 Jul 2009 20:33:44 -0000 1.23 @@ -1 +1 @@ -fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz +834cef60ef3fd47162420fa25abf2dff mediawiki-1.15.1.tar.gz From athimm at fedoraproject.org Mon Jul 13 20:34:15 2009 From: athimm at fedoraproject.org (athimm) Date: Mon, 13 Jul 2009 20:34:15 +0000 (UTC) Subject: rpms/mediawiki/devel .cvsignore, 1.21, 1.22 mediawiki.spec, 1.32, 1.33 sources, 1.22, 1.23 Message-ID: <20090713203415.5167E11C0497@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18371/devel Modified Files: .cvsignore mediawiki.spec sources Log Message: Update to 1.15.1. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 11 Jul 2009 20:37:46 -0000 1.21 +++ .cvsignore 13 Jul 2009 20:33:45 -0000 1.22 @@ -1 +1 @@ -mediawiki-1.15.0.tar.gz +mediawiki-1.15.1.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/mediawiki.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- mediawiki.spec 11 Jul 2009 20:37:46 -0000 1.32 +++ mediawiki.spec 13 Jul 2009 20:33:45 -0000 1.33 @@ -1,7 +1,7 @@ Summary: A wiki engine Name: mediawiki -Version: 1.15.0 -Release: 47%{?dist} +Version: 1.15.1 +Release: 48%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ @@ -113,6 +113,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Axel Thimm - 1.15.1-48 +- Update to 1.15.1 (Fixes XSS vulnerability). + * Sat Jul 11 2009 Axel Thimm - 1.15.0-47 - Fix api.php breakage. Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 11 Jul 2009 20:37:46 -0000 1.22 +++ sources 13 Jul 2009 20:33:45 -0000 1.23 @@ -1 +1 @@ -fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz +834cef60ef3fd47162420fa25abf2dff mediawiki-1.15.1.tar.gz From athimm at fedoraproject.org Mon Jul 13 20:34:14 2009 From: athimm at fedoraproject.org (athimm) Date: Mon, 13 Jul 2009 20:34:14 +0000 (UTC) Subject: rpms/mediawiki/F-10 .cvsignore, 1.21, 1.22 mediawiki.spec, 1.30, 1.31 sources, 1.22, 1.23 Message-ID: <20090713203414.E995011C0497@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18371/F-10 Modified Files: .cvsignore mediawiki.spec sources Log Message: Update to 1.15.1. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 11 Jul 2009 20:37:45 -0000 1.21 +++ .cvsignore 13 Jul 2009 20:33:44 -0000 1.22 @@ -1 +1 @@ -mediawiki-1.15.0.tar.gz +mediawiki-1.15.1.tar.gz Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/mediawiki.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mediawiki.spec 11 Jul 2009 20:37:45 -0000 1.30 +++ mediawiki.spec 13 Jul 2009 20:33:44 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A wiki engine Name: mediawiki -Version: 1.15.0 -Release: 47%{?dist} +Version: 1.15.1 +Release: 48%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ @@ -113,6 +113,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Axel Thimm - 1.15.1-48 +- Update to 1.15.1 (Fixes XSS vulnerability). + * Sat Jul 11 2009 Axel Thimm - 1.15.0-47 - Fix api.php breakage. Index: sources =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 11 Jul 2009 20:37:45 -0000 1.22 +++ sources 13 Jul 2009 20:33:44 -0000 1.23 @@ -1 +1 @@ -fbe377a9df823de5b223818a260b51b1 mediawiki-1.15.0.tar.gz +834cef60ef3fd47162420fa25abf2dff mediawiki-1.15.1.tar.gz From pwouters at fedoraproject.org Mon Jul 13 20:34:48 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Mon, 13 Jul 2009 20:34:48 +0000 (UTC) Subject: rpms/ldns/devel ldns-ssl.patch,1.1,1.2 ldns.spec,1.45,1.46 Message-ID: <20090713203448.1772711C0497@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/ldns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18747 Modified Files: ldns-ssl.patch ldns.spec Log Message: * Mon Jul 13 2009 Paul Wouters - 1.6.0-4 - Fixed the ssl patch so it can now compile --without-ssl ldns-ssl.patch: Index: ldns-ssl.patch =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/ldns-ssl.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 Binary files /tmp/cvsRfEFaI and /tmp/cvsL3XZP6 differ Index: ldns.spec =================================================================== RCS file: /cvs/extras/rpms/ldns/devel/ldns.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- ldns.spec 11 Jul 2009 04:45:14 -0000 1.45 +++ ldns.spec 13 Jul 2009 20:34:47 -0000 1.46 @@ -1,7 +1,7 @@ Summary: Lowlevel DNS(SEC) library with API Name: ldns Version: 1.6.0 -Release: 2%{?dist} +Release: 4%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz @@ -9,7 +9,7 @@ Patch0: ldns-ssl.patch Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool, autoconf, automake, gcc-c++, doxygen, -BuildRequires: perl, libpcap-devel, openssl-devel +BuildRequires: perl, libpcap-devel %description ldns is a library with the aim to simplify DNS programing in C. All @@ -35,10 +35,10 @@ The devel package contains the ldns libr %patch0 -p1 %build -%configure --disable-rpath --with-sha2 +%configure --disable-rpath --with-sha2 --without-ssl make %{?_smp_mflags} -(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ ) -(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ ) +(cd drill ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ --without-ssl) +(cd examples ; %configure --disable-rpath --with-ldns=%{buildroot}/lib/ --without-ssl) ( cd drill ; make %{?_smp_mflags} ) ( cd examples ; make %{?_smp_mflags} ) make %{?_smp_mflags} doc @@ -90,6 +90,14 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Mon Jul 13 2009 Paul Wouters - 1.6.0-4 +- Fixed the ssl patch so it can now compile --without-ssl + +* Sat Jul 11 2009 Paul Wouters - 1.6.0-3 +- Added patch to compile with --without-ssl +- Removed openssl dependancies +- Recompiled with --without-ssl + * Sat Jul 11 2009 Paul Wouters - 1.6.0-2 - Updated to 1.6.0 - (did not yet compile with --without-ssl due to compile failures) From mcepl at fedoraproject.org Mon Jul 13 20:35:34 2009 From: mcepl at fedoraproject.org (Matej Cepl) Date: Mon, 13 Jul 2009 20:35:34 +0000 (UTC) Subject: rpms/jbrout/F-11 jbrout-hashlib.patch,NONE,1.1 jbrout.spec,1.6,1.7 Message-ID: <20090713203534.49D0F11C0497@cvs1.fedora.phx.redhat.com> Author: mcepl Update of /cvs/pkgs/rpms/jbrout/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18957 Modified Files: jbrout.spec Added Files: jbrout-hashlib.patch Log Message: Use hashlib if possible. jbrout-hashlib.patch: --- NEW FILE jbrout-hashlib.patch --- diff -up jbrout/jbrout/plugins/multiexport/libs/flickr.py.hashlib jbrout/jbrout/plugins/multiexport/libs/flickr.py --- jbrout/jbrout/plugins/multiexport/libs/flickr.py.hashlib 2009-07-13 21:29:09.214035838 +0200 +++ jbrout/jbrout/plugins/multiexport/libs/flickr.py 2009-07-13 22:00:54.242161317 +0200 @@ -11,7 +11,11 @@ ## GNU General Public License for more details. ## -import urllib, urllib2, md5, mimetools, mimetypes, os.path +import urllib, urllib2, mimetools, mimetypes, os.path +try: + import hashlib +except ImportError: + import md5 as hashlib from xml.dom import minidom class FlickrAPI: @@ -166,7 +170,7 @@ class FlickrAPI: sig_str = self.secret for key in keys: sig_str += key + str(args[key]) - return md5.new(sig_str).hexdigest() + return hashlib.md5(sig_str).hexdigest() class FlickrUploader: def __init__(self, conf,showAuthWin): Index: jbrout.spec =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/F-11/jbrout.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jbrout.spec 21 Mar 2009 12:31:30 -0000 1.6 +++ jbrout.spec 13 Jul 2009 20:35:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: jbrout Version: 0.3.174 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Photo manager, written in python/pygtk Group: Applications/Multimedia License: GPLv2 @@ -11,6 +11,7 @@ Source1: jbrout-Makefile Source2: jbrout.desktop Source3: jbrout-usr_bin Source4: jbrout-install.sh +Patch0: jbrout-hashlib.patch BuildArch: noarch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: python >= 2.4, python-lxml, pygtk2 >= 2.6 @@ -39,6 +40,7 @@ jBrout is able to : %prep %setup -q -n jbrout +%patch0 -p1 -b .hashlib cd jbrout/ TEMPFILE=$(mktemp %{_tmppath}/jbrout-build.XXXXXX) @@ -90,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/jbrout.desktop %changelog +* Mon Jul 13 2009 Mat??j Cepl - 0.3.174-2 +- Use hashlib if possible. + * Sat Mar 21 2009 Matej Cepl 0.3.174-1 - New upstream release From remi at fedoraproject.org Mon Jul 13 21:05:41 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 21:05:41 +0000 (UTC) Subject: rpms/php-pear-Auth-RADIUS/devel php-pear-Auth-RADIUS.spec,1.2,1.3 Message-ID: <20090713210541.6B0B411C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Auth-RADIUS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26544 Modified Files: php-pear-Auth-RADIUS.spec Log Message: don't require mhash (optional), fix broken deps Index: php-pear-Auth-RADIUS.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Auth-RADIUS/devel/php-pear-Auth-RADIUS.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Auth-RADIUS.spec 26 Feb 2009 20:42:55 -0000 1.2 +++ php-pear-Auth-RADIUS.spec 13 Jul 2009 21:05:11 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Auth-RADIUS Version: 1.0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Wrapper Classes for the RADIUS PECL Group: Development/Libraries @@ -15,7 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires: php-pear(PEAR) -Requires(hint): php-pear(Crypt_CHAP) php-mhash php-mcrypt +Requires(hint): php-pear(Crypt_CHAP) php-mcrypt Requires: php-pecl(radius) >= 1.2.5 Requires(post): %{__pear} Requires(postun): %{__pear} @@ -28,7 +28,7 @@ Provides: php-pear(%{pear_name}) = %prep %setup -qc [ -f package2.xml ] || mv package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package2.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -40,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Move documentation mkdir -p docdir @@ -51,7 +51,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description install -d $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -60,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -72,12 +72,16 @@ fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/docdir/%{pear_name}/* -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %dir %{pear_phpdir}/Auth %{pear_phpdir}/Auth/* %changelog +* Mon Jul 13 2009 Remi Collet - 1.0.6-3 +- remove mhash dependency (optional, and not provided by php 5.3.0) +- rename Auth_RADIUS.xml to php-pear-Auth-RADIUS.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From remi at fedoraproject.org Mon Jul 13 21:00:14 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 13 Jul 2009 21:00:14 +0000 (UTC) Subject: rpms/php-pear-Crypt-CHAP/devel php-pear-Crypt-CHAP.spec,1.3,1.4 Message-ID: <20090713210014.6F4A611C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Crypt-CHAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24609 Modified Files: php-pear-Crypt-CHAP.spec Log Message: don't require mhash (optional), fix broken deps Index: php-pear-Crypt-CHAP.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Crypt-CHAP/devel/php-pear-Crypt-CHAP.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Crypt-CHAP.spec 26 Feb 2009 20:51:08 -0000 1.3 +++ php-pear-Crypt-CHAP.spec 13 Jul 2009 21:00:14 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Crypt-CHAP Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class to generate CHAP packets Group: Development/Languages @@ -14,7 +14,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 -Requires: php-pear(PEAR) php-mhash php-mcrypt +Requires: php-pear(PEAR) php-mcrypt Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} @@ -28,7 +28,7 @@ mhash and mcrypt extensions must be load %prep %setup -qc [ -f package2.xml ] || mv package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package2.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -40,7 +40,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Clean up unnecessary files @@ -48,7 +48,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -57,7 +57,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -68,12 +68,16 @@ fi %files %defattr(-,root,root,-) -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_testdir}/%{pear_name} %{pear_phpdir}/Crypt %changelog +* Mon Jul 13 2009 Remi Collet - 1.0.1-3 +- remove mhash dependency (optional, and not provided by php 5.3.0) +- rename Crypt_CHAP.xml to php-pear-Crypt-CHAP.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rishi at fedoraproject.org Mon Jul 13 22:15:15 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Mon, 13 Jul 2009 22:15:15 +0000 (UTC) Subject: rpms/anjuta/F-11 .cvsignore, 1.19, 1.20 anjuta.spec, 1.73, 1.74 sources, 1.19, 1.20 Message-ID: <20090713221515.21C3011C00D7@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11370 Modified Files: .cvsignore anjuta.spec sources Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 - Version bump to 2.26.2.2. * Git plugin: + Fixed a crash. (GNOME Bugzilla #584347) * Project manager plugin: + Fixed segmentation fault when adding a file to a project. (GNOME Bugzilla #579118) + Make gbf-am-parse work with subdirectory targets. (GNOME Bugzilla #580247) * Subversion plugin: + Do not show a commit number in the info pane if no files are given. + Do not crash if no paths are selected for committing. * Symbol-db plugin: + Fixed viewing of local symbols. + Plugged a memory leak that broke completion. (GNOME Bugzilla #585498) * Tools plugin: + Handle patch files with whitespaces in their names. (GNOME Bugzilla #580013) - Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/F-11/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 15 Apr 2009 19:16:35 -0000 1.19 +++ .cvsignore 13 Jul 2009 22:15:13 -0000 1.20 @@ -1 +1 @@ -anjuta-2.26.1.0.tar.gz +anjuta-2.26.2.2.tar.gz Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/F-11/anjuta.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- anjuta.spec 15 Apr 2009 19:16:36 -0000 1.73 +++ anjuta.spec 13 Jul 2009 22:15:13 -0000 1.74 @@ -1,7 +1,7 @@ Summary: A GNOME development IDE for C/C++ Name: anjuta Epoch: 1 -Version: 2.26.1.0 +Version: 2.26.2.2 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -118,6 +118,7 @@ EOF chmod +x %{__perl_requires} # Suppress rpmlint error. +chmod 644 `find . -name "*.c" -perm /111 -print` chmod 644 `find . -name "*.cxx" -perm /111 -print` chmod 644 `find . -name "*.h" -perm /111 -print` iconv --from-code ISO8859-1 --to-code UTF-8 ./THANKS \ @@ -141,6 +142,7 @@ export PKG_CONFIG_PATH="./PKGCONFIG" --enable-plugin-devhelp --enable-graphviz --enable-plugin-glade \ --enable-plugin-scintilla --enable-plugin-sourceview \ --enable-plugin-subversion --enable-plugin-valgrind \ + --docdir=%{_docdir}/%{name}-%{version} \ --with-svn-lib=%{_libdir} # Omit unused direct shared library dependencies. @@ -322,6 +324,26 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 +- Version bump to 2.26.2.2. + * Git plugin: + + Fixed a crash. (GNOME Bugzilla #584347) + * Project manager plugin: + + Fixed segmentation fault when adding a file to a project. (GNOME + Bugzilla #579118) + + Make gbf-am-parse work with subdirectory targets. (GNOME Bugzilla + #580247) + * Subversion plugin: + + Do not show a commit number in the info pane if no files are given. + + Do not crash if no paths are selected for committing. + * Symbol-db plugin: + + Fixed viewing of local symbols. + + Plugged a memory leak that broke completion. (GNOME Bugzilla #585498) + * Tools plugin: + + Handle patch files with whitespaces in their names. (GNOME Bugzilla + #580013) +- Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. + * Wed Apr 15 2009 Debarshi Ray - 1:2.26.1.0-1 - Version bump to 2.26.1.0. * New animation to identify running builds. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 15 Apr 2009 19:16:36 -0000 1.19 +++ sources 13 Jul 2009 22:15:14 -0000 1.20 @@ -1 +1 @@ -2b3efb990b6e0ead28ea5e9be460f578 anjuta-2.26.1.0.tar.gz +03191602895a4b0dd15a8298fc255657 anjuta-2.26.2.2.tar.gz From rishi at fedoraproject.org Mon Jul 13 22:17:22 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Mon, 13 Jul 2009 22:17:22 +0000 (UTC) Subject: rpms/anjuta/devel .cvsignore, 1.19, 1.20 anjuta.spec, 1.73, 1.74 sources, 1.19, 1.20 Message-ID: <20090713221722.DD0E311C00D7@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11815 Modified Files: .cvsignore anjuta.spec sources Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 - Version bump to 2.26.2.2. * Git plugin: + Fixed a crash. (GNOME Bugzilla #584347) * Project manager plugin: + Fixed segmentation fault when adding a file to a project. (GNOME Bugzilla #579118) + Make gbf-am-parse work with subdirectory targets. (GNOME Bugzilla #580247) * Subversion plugin: + Do not show a commit number in the info pane if no files are given. + Do not crash if no paths are selected for committing. * Symbol-db plugin: + Fixed viewing of local symbols. + Plugged a memory leak that broke completion. (GNOME Bugzilla #585498) * Tools plugin: + Handle patch files with whitespaces in their names. (GNOME Bugzilla #580013) - Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 15 Apr 2009 19:21:14 -0000 1.19 +++ .cvsignore 13 Jul 2009 22:16:52 -0000 1.20 @@ -1 +1 @@ -anjuta-2.26.1.0.tar.gz +anjuta-2.26.2.2.tar.gz Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- anjuta.spec 15 Apr 2009 19:21:14 -0000 1.73 +++ anjuta.spec 13 Jul 2009 22:16:52 -0000 1.74 @@ -1,7 +1,7 @@ Summary: A GNOME development IDE for C/C++ Name: anjuta Epoch: 1 -Version: 2.26.1.0 +Version: 2.26.2.2 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools @@ -118,6 +118,7 @@ EOF chmod +x %{__perl_requires} # Suppress rpmlint error. +chmod 644 `find . -name "*.c" -perm /111 -print` chmod 644 `find . -name "*.cxx" -perm /111 -print` chmod 644 `find . -name "*.h" -perm /111 -print` iconv --from-code ISO8859-1 --to-code UTF-8 ./THANKS \ @@ -141,6 +142,7 @@ export PKG_CONFIG_PATH="./PKGCONFIG" --enable-plugin-devhelp --enable-graphviz --enable-plugin-glade \ --enable-plugin-scintilla --enable-plugin-sourceview \ --enable-plugin-subversion --enable-plugin-valgrind \ + --docdir=%{_docdir}/%{name}-%{version} \ --with-svn-lib=%{_libdir} # Omit unused direct shared library dependencies. @@ -322,6 +324,26 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 +- Version bump to 2.26.2.2. + * Git plugin: + + Fixed a crash. (GNOME Bugzilla #584347) + * Project manager plugin: + + Fixed segmentation fault when adding a file to a project. (GNOME + Bugzilla #579118) + + Make gbf-am-parse work with subdirectory targets. (GNOME Bugzilla + #580247) + * Subversion plugin: + + Do not show a commit number in the info pane if no files are given. + + Do not crash if no paths are selected for committing. + * Symbol-db plugin: + + Fixed viewing of local symbols. + + Plugged a memory leak that broke completion. (GNOME Bugzilla #585498) + * Tools plugin: + + Handle patch files with whitespaces in their names. (GNOME Bugzilla + #580013) +- Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. + * Wed Apr 15 2009 Debarshi Ray - 1:2.26.1.0-1 - Version bump to 2.26.1.0. * New animation to identify running builds. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 15 Apr 2009 19:21:14 -0000 1.19 +++ sources 13 Jul 2009 22:16:52 -0000 1.20 @@ -1 +1 @@ -2b3efb990b6e0ead28ea5e9be460f578 anjuta-2.26.1.0.tar.gz +03191602895a4b0dd15a8298fc255657 anjuta-2.26.2.2.tar.gz From chitlesh at fedoraproject.org Mon Jul 13 22:25:00 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Mon, 13 Jul 2009 22:25:00 +0000 (UTC) Subject: rpms/iverilog/F-10 .cvsignore, 1.9, 1.10 import.log, 1.2, 1.3 iverilog.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090713222500.4CEC211C00D7@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/iverilog/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13595/F-10 Modified Files: .cvsignore import.log iverilog.spec sources Log Message: vpi support Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-10/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 7 Dec 2008 09:17:41 -0000 1.9 +++ .cvsignore 13 Jul 2009 22:24:29 -0000 1.10 @@ -1 +1 @@ -verilog-20081118.tar.gz +verilog-0.9.1.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 7 Dec 2008 09:17:41 -0000 1.2 +++ import.log 13 Jul 2009 22:24:29 -0000 1.3 @@ -1,2 +1,3 @@ iverilog-0_9_20080905-1_fc10:HEAD:iverilog-0.9.20080905-1.fc10.src.rpm:1221210397 iverilog-0_9_20081118-1_fc11:F-10:iverilog-0.9.20081118-1.fc11.src.rpm:1228641426 +iverilog-0_9_20090423-5_fc11:F-10:iverilog-0.9.20090423-5.fc11.src.rpm:1247523769 Index: iverilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-10/iverilog.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- iverilog.spec 7 Dec 2008 09:17:41 -0000 1.9 +++ iverilog.spec 13 Jul 2009 22:24:29 -0000 1.10 @@ -1,13 +1,13 @@ -%define snapshot 20081118 +%define snapshot 20090423 Name: iverilog Version: 0.9.%{snapshot} -Release: 1%{?dist} +Release: 5%{?dist} Summary: Icarus Verilog is a verilog compiler and simulator Group: Applications/Engineering License: GPLv2 URL: http://www.icarus.com/eda/verilog/index.html -Source0: ftp://icarus.com/pub/eda/verilog/snapshots/verilog-%{snapshot}.tar.gz +Source0: ftp://icarus.com/pub/eda/verilog/snapshots/verilog-0.9.1.tar.gz Patch0: %{name}-pagesize.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -27,7 +27,7 @@ Requires: %{name} = %{version}-%{rele Icarus Verilog devel files. %prep -%setup -q -n verilog-%{snapshot} +%setup -q -n verilog-0.9.1 %patch0 -p0 -b .pagesize~ # clean junks from tarball @@ -37,7 +37,7 @@ rm -rf `find . -type d -name "autom4te.c %build CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" \ -%configure --disable-vvp32 +%configure make %{?_smp_mflags} @@ -53,6 +53,9 @@ rm -rf %{buildroot} vpidir=%{buildroot}%{_libdir}/ivl/ \ INSTALL="install -p" \ install + + + %check make check @@ -61,20 +64,32 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING README.txt BUGS.txt QUICK_START.txt ieee1364-notes.txt -%doc swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt -%doc cadpli/cadpli.txt xilinx-hint.txt examples/* +# contents of QUICK_START.txt can be found also on README.txt, hence omitted +%doc attributes.txt BUGS.txt COPYING extensions.txt glossary.txt ieee1364-notes.txt +%doc README.txt swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt +%doc va_math.txt cadpli/cadpli.txt xilinx-hint.txt examples/ %{_bindir}/* -%dir %{_libdir}/ivl -%{_libdir}/ivl/* +%{_libdir}/ivl %{_mandir}/man1/* %files devel %defattr(-,root,root,-) +# headers for PLI: This is intended to be used by the user. %{_includedir}/*.h -%exclude %{_libdir}/*.a +# RHBZ 480531 +%{_libdir}/*.a + %changelog +* Mon Jun 13 2009 Chitlesh Goorah - 0.9.20090423-5 +- Improved VPI support + +* Mon Mar 23 2009 Chitlesh Goorah - 0.9.20081118-4 +- new development release + +* Wed Feb 25 2009 Fedora Release Engineering - 0.9.20081118-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Dec 07 2008 Balint Cristian 0.9.20081118-1 - new snapshot release upstream. @@ -98,7 +113,7 @@ rm -rf %{buildroot} - new snapshot release upstream. * Thu Feb 27 2007 Balint Cristian 0.9.20070227-1 -- new snapshoot release. +- new snapshot release. * Thu Feb 27 2007 Balint Cristian 0.9.20070123-5 - clean junks from tarball @@ -122,4 +137,4 @@ rm -rf %{buildroot} - dont use libdir macro, all library always will be 32 bit * Thu Feb 22 2007 Balint Cristian 20070123-1 -- initial release \ No newline at end of file +- initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 7 Dec 2008 09:17:41 -0000 1.9 +++ sources 13 Jul 2009 22:24:29 -0000 1.10 @@ -1 +1 @@ -db61b902f777ec0587875023c9d23e63 verilog-20081118.tar.gz +91e8f40d995bf5ded7b847fcc02a98bf verilog-0.9.1.tar.gz From chitlesh at fedoraproject.org Mon Jul 13 22:26:25 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Mon, 13 Jul 2009 22:26:25 +0000 (UTC) Subject: rpms/iverilog/F-11 import.log, 1.3, 1.4 iverilog.spec, 1.11, 1.12 sources, 1.10, 1.11 Message-ID: <20090713222625.201E811C00D7@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/iverilog/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14138/F-11 Modified Files: import.log iverilog.spec sources Log Message: vpi support Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 23 Mar 2009 22:57:24 -0000 1.3 +++ import.log 13 Jul 2009 22:26:24 -0000 1.4 @@ -1,3 +1,4 @@ iverilog-0_9_20080905-1_fc10:HEAD:iverilog-0.9.20080905-1.fc10.src.rpm:1221210397 iverilog-0_9_20081118-1_fc11:HEAD:iverilog-0.9.20081118-1.fc11.src.rpm:1228641275 iverilog-0_9_20090423-4__fc10:HEAD:iverilog-0.9.20090423-4..fc10.src.rpm:1237848668 +iverilog-0_9_20090423-5_fc11:F-11:iverilog-0.9.20090423-5.fc11.src.rpm:1247523896 Index: iverilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-11/iverilog.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- iverilog.spec 23 Mar 2009 22:57:24 -0000 1.11 +++ iverilog.spec 13 Jul 2009 22:26:24 -0000 1.12 @@ -2,7 +2,7 @@ Name: iverilog Version: 0.9.%{snapshot} -Release: 4.%{?dist} +Release: 5%{?dist} Summary: Icarus Verilog is a verilog compiler and simulator Group: Applications/Engineering License: GPLv2 @@ -54,6 +54,8 @@ rm -rf %{buildroot} INSTALL="install -p" \ install + + %check make check @@ -62,20 +64,26 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING README.txt BUGS.txt QUICK_START.txt ieee1364-notes.txt -%doc swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt -%doc cadpli/cadpli.txt xilinx-hint.txt examples/* +# contents of QUICK_START.txt can be found also on README.txt, hence omitted +%doc attributes.txt BUGS.txt COPYING extensions.txt glossary.txt ieee1364-notes.txt +%doc README.txt swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt +%doc va_math.txt cadpli/cadpli.txt xilinx-hint.txt examples/ %{_bindir}/* -%dir %{_libdir}/ivl -%{_libdir}/ivl/* +%{_libdir}/ivl %{_mandir}/man1/* %files devel %defattr(-,root,root,-) +# headers for PLI: This is intended to be used by the user. %{_includedir}/*.h -%exclude %{_libdir}/*.a +# RHBZ 480531 +%{_libdir}/*.a + %changelog +* Mon Jun 13 2009 Chitlesh Goorah - 0.9.20090423-5 +- Improved VPI support + * Mon Mar 23 2009 Chitlesh Goorah - 0.9.20081118-4 - new development release @@ -129,4 +137,4 @@ rm -rf %{buildroot} - dont use libdir macro, all library always will be 32 bit * Thu Feb 22 2007 Balint Cristian 20070123-1 -- initial release \ No newline at end of file +- initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 23 Mar 2009 22:57:24 -0000 1.10 +++ sources 13 Jul 2009 22:26:24 -0000 1.11 @@ -1 +1 @@ -8268d1f2f5d8cca43396f75fa88e7fac verilog-0.9.1.tar.gz +91e8f40d995bf5ded7b847fcc02a98bf verilog-0.9.1.tar.gz From chitlesh at fedoraproject.org Mon Jul 13 22:29:47 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Mon, 13 Jul 2009 22:29:47 +0000 (UTC) Subject: rpms/iverilog/devel import.log, 1.3, 1.4 iverilog.spec, 1.11, 1.12 sources, 1.10, 1.11 Message-ID: <20090713222947.9E10211C00D7@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/iverilog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14884/devel Modified Files: import.log iverilog.spec sources Log Message: vpi support Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 23 Mar 2009 22:57:24 -0000 1.3 +++ import.log 13 Jul 2009 22:29:17 -0000 1.4 @@ -1,3 +1,4 @@ iverilog-0_9_20080905-1_fc10:HEAD:iverilog-0.9.20080905-1.fc10.src.rpm:1221210397 iverilog-0_9_20081118-1_fc11:HEAD:iverilog-0.9.20081118-1.fc11.src.rpm:1228641275 iverilog-0_9_20090423-4__fc10:HEAD:iverilog-0.9.20090423-4..fc10.src.rpm:1237848668 +iverilog-0_9_20090423-5_fc11:HEAD:iverilog-0.9.20090423-5.fc11.src.rpm:1247523987 Index: iverilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/devel/iverilog.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- iverilog.spec 23 Mar 2009 22:57:24 -0000 1.11 +++ iverilog.spec 13 Jul 2009 22:29:17 -0000 1.12 @@ -2,7 +2,7 @@ Name: iverilog Version: 0.9.%{snapshot} -Release: 4.%{?dist} +Release: 5%{?dist} Summary: Icarus Verilog is a verilog compiler and simulator Group: Applications/Engineering License: GPLv2 @@ -54,6 +54,8 @@ rm -rf %{buildroot} INSTALL="install -p" \ install + + %check make check @@ -62,20 +64,26 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING README.txt BUGS.txt QUICK_START.txt ieee1364-notes.txt -%doc swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt -%doc cadpli/cadpli.txt xilinx-hint.txt examples/* +# contents of QUICK_START.txt can be found also on README.txt, hence omitted +%doc attributes.txt BUGS.txt COPYING extensions.txt glossary.txt ieee1364-notes.txt +%doc README.txt swift.txt netlist.txt t-dll.txt vpi.txt tgt-fpga/fpga.txt +%doc va_math.txt cadpli/cadpli.txt xilinx-hint.txt examples/ %{_bindir}/* -%dir %{_libdir}/ivl -%{_libdir}/ivl/* +%{_libdir}/ivl %{_mandir}/man1/* %files devel %defattr(-,root,root,-) +# headers for PLI: This is intended to be used by the user. %{_includedir}/*.h -%exclude %{_libdir}/*.a +# RHBZ 480531 +%{_libdir}/*.a + %changelog +* Mon Jun 13 2009 Chitlesh Goorah - 0.9.20090423-5 +- Improved VPI support + * Mon Mar 23 2009 Chitlesh Goorah - 0.9.20081118-4 - new development release @@ -129,4 +137,4 @@ rm -rf %{buildroot} - dont use libdir macro, all library always will be 32 bit * Thu Feb 22 2007 Balint Cristian 20070123-1 -- initial release \ No newline at end of file +- initial release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 23 Mar 2009 22:57:24 -0000 1.10 +++ sources 13 Jul 2009 22:29:17 -0000 1.11 @@ -1 +1 @@ -8268d1f2f5d8cca43396f75fa88e7fac verilog-0.9.1.tar.gz +91e8f40d995bf5ded7b847fcc02a98bf verilog-0.9.1.tar.gz From plouj at fedoraproject.org Mon Jul 13 23:09:31 2009 From: plouj at fedoraproject.org (plouj) Date: Mon, 13 Jul 2009 23:09:31 +0000 (UTC) Subject: rpms/mingw32-libtiff/devel libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 mingw32-libtiff.spec, 1.2, 1.3 Message-ID: <20090713230931.B41A411C00D7@cvs1.fedora.phx.redhat.com> Author: plouj Update of /cvs/pkgs/rpms/mingw32-libtiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24926 Modified Files: libtiff-3.8.2-lzw-bugs.patch mingw32-libtiff.spec Log Message: * Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 - update upstream URL - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #511015 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/devel/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 8 Jun 2009 22:29:00 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 13 Jul 2009 23:09:30 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: mingw32-libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/devel/mingw32-libtiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libtiff.spec 9 Jun 2009 01:58:34 -0000 1.2 +++ mingw32-libtiff.spec 13 Jul 2009 23:09:30 -0000 1.3 @@ -7,10 +7,10 @@ Summary: MinGW Windows port of the LibTIFF library Name: mingw32-libtiff Version: 3.8.2 -Release: 16%{?dist} +Release: 17%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -77,6 +77,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 +- update upstream URL +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #511015 + * Mon Jun 8 2009 Michael Ploujnikov - 3.8.2-16 - add mingw32-gcc-c++ to the BuildRequirements From plouj at fedoraproject.org Mon Jul 13 23:11:02 2009 From: plouj at fedoraproject.org (plouj) Date: Mon, 13 Jul 2009 23:11:02 +0000 (UTC) Subject: rpms/mingw32-libtiff/F-10 libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 mingw32-libtiff.spec, 1.2, 1.3 Message-ID: <20090713231102.4FA4D11C00D7@cvs1.fedora.phx.redhat.com> Author: plouj Update of /cvs/pkgs/rpms/mingw32-libtiff/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25503 Modified Files: libtiff-3.8.2-lzw-bugs.patch mingw32-libtiff.spec Log Message: * Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 - update upstream URL - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #511015 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/F-10/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 8 Jun 2009 22:32:20 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 13 Jul 2009 23:11:01 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: mingw32-libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/F-10/mingw32-libtiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libtiff.spec 9 Jun 2009 02:13:43 -0000 1.2 +++ mingw32-libtiff.spec 13 Jul 2009 23:11:02 -0000 1.3 @@ -7,10 +7,10 @@ Summary: MinGW Windows port of the LibTIFF library Name: mingw32-libtiff Version: 3.8.2 -Release: 16%{?dist} +Release: 17%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -77,6 +77,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 +- update upstream URL +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #511015 + * Mon Jun 8 2009 Michael Ploujnikov - 3.8.2-16 - add mingw32-gcc-c++ to the BuildRequirements From plouj at fedoraproject.org Mon Jul 13 23:11:47 2009 From: plouj at fedoraproject.org (plouj) Date: Mon, 13 Jul 2009 23:11:47 +0000 (UTC) Subject: rpms/mingw32-libtiff/F-11 libtiff-3.8.2-lzw-bugs.patch, 1.1, 1.2 mingw32-libtiff.spec, 1.2, 1.3 Message-ID: <20090713231147.103A811C00D7@cvs1.fedora.phx.redhat.com> Author: plouj Update of /cvs/pkgs/rpms/mingw32-libtiff/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25751 Modified Files: libtiff-3.8.2-lzw-bugs.patch mingw32-libtiff.spec Log Message: * Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 - update upstream URL - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) Related: #511015 libtiff-3.8.2-lzw-bugs.patch: Index: libtiff-3.8.2-lzw-bugs.patch =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/F-11/libtiff-3.8.2-lzw-bugs.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libtiff-3.8.2-lzw-bugs.patch 8 Jun 2009 22:35:00 -0000 1.1 +++ libtiff-3.8.2-lzw-bugs.patch 13 Jul 2009 23:11:46 -0000 1.2 @@ -1,4 +1,4 @@ -Fixes for CVE-2008-2327 +Fixes for CVE-2008-2327 and CVE-2009-2285 diff -Naur tiff-3.8.2.orig/libtiff/tif_lzw.c tiff-3.8.2/libtiff/tif_lzw.c @@ -27,7 +27,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCode); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecode: Corrupted LZW table at scanline %d", + tif->tif_row); @@ -47,7 +47,7 @@ diff -Naur tiff-3.8.2.orig/libtiff/tif_l NextCode(tif, sp, bp, code, GetNextCodeCompat); if (code == CODE_EOI) break; -+ if (code == CODE_CLEAR) { ++ if (code >= CODE_CLEAR) { + TIFFErrorExt(tif->tif_clientdata, tif->tif_name, + "LZWDecodeCompat: Corrupted LZW table at scanline %d", + tif->tif_row); Index: mingw32-libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/F-11/mingw32-libtiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libtiff.spec 9 Jun 2009 02:32:37 -0000 1.2 +++ mingw32-libtiff.spec 13 Jul 2009 23:11:46 -0000 1.3 @@ -7,10 +7,10 @@ Summary: MinGW Windows port of the LibTIFF library Name: mingw32-libtiff Version: 3.8.2 -Release: 16%{?dist} +Release: 17%{?dist} License: libtiff Group: System Environment/Libraries -URL: http://www.libtiff.org/ +URL: http://www.remotesensing.org/libtiff/ Source: ftp://ftp.remotesensing.org/pub/libtiff/tiff-%{version}.tar.gz Patch0: tiffsplit-overflow.patch @@ -77,6 +77,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 +- update upstream URL +- Fix some more LZW decoding vulnerabilities (CVE-2009-2285) +Related: #511015 + * Mon Jun 8 2009 Michael Ploujnikov - 3.8.2-16 - add mingw32-gcc-c++ to the BuildRequirements From hno at fedoraproject.org Mon Jul 13 23:50:53 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 13 Jul 2009 23:50:53 +0000 (UTC) Subject: rpms/bzrtools/devel .cvsignore, 1.30, 1.31 bzrtools.spec, 1.48, 1.49 sources, 1.31, 1.32 Message-ID: <20090713235053.41AD411C00D7@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/bzrtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2122 Modified Files: .cvsignore bzrtools.spec sources Log Message: 1.17.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/devel/.cvsignore,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- .cvsignore 12 Jun 2009 23:01:20 -0000 1.30 +++ .cvsignore 13 Jul 2009 23:50:22 -0000 1.31 @@ -1,2 +1,2 @@ -bzrtools-1.16.0.tar.gz -bzrtools-1.16.0.tar.gz.sig +bzrtools-1.17.0.tar.gz +bzrtools-1.17.0.tar.gz.sig Index: bzrtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/devel/bzrtools.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- bzrtools.spec 12 Jun 2009 23:01:21 -0000 1.48 +++ bzrtools.spec 13 Jul 2009 23:50:22 -0000 1.49 @@ -5,8 +5,8 @@ # (bzrlib is arch dependent. Thus bzrlib plugins are also arch dependent.) %define debug_package %{nil} -%define bzrver 1.16 -%define bzrnextver 1.17 +%define bzrver 1.17 +%define bzrnextver 1.18 Name: bzrtools Version: %{bzrver}.0 @@ -16,8 +16,8 @@ Summary: A collection of utilitie Group: Development/Tools License: GPLv2+ URL: http://bazaar-vcs.org/BzrTools -Source0: https://launchpad.net/bzrtools/stable/%{version}/+download/%{name}-%{version}.tar.gz -Source1: https://launchpad.net/bzrtools/stable/%{version}/+download/%{name}-%{version}.tar.gz.sig +Source0: https://launchpad.net/bzrtools/stable/%{bzrver}/+download/%{name}-%{version}.tar.gz +Source1: https://launchpad.net/bzrtools/stable/%{bzrver}/+download/%{name}-%{version}.tar.gz.sig BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 14 2009 Henrik Nordstrom - 1.17.0-1 +- Update to 1.17.0 + * Sat Jun 13 2009 Henrik Nordstrom 1.16.0-1 - Update to 1.16.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 12 Jun 2009 23:01:21 -0000 1.31 +++ sources 13 Jul 2009 23:50:22 -0000 1.32 @@ -1,2 +1,2 @@ -9d0b7ad49570631ff5847cf7a74d2af7 bzrtools-1.16.0.tar.gz -19d1b7d2f0612495cb5fc5d1330eb192 bzrtools-1.16.0.tar.gz.sig +e03c8528ca5f455968957c44d72a6f61 bzrtools-1.17.0.tar.gz +49490b59ffc054752a3c078fa92881b7 bzrtools-1.17.0.tar.gz.sig From pkgdb at fedoraproject.org Tue Jul 14 00:27:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:27:08 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714002708.6C1CA10F89A@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:27:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:27:16 +0000 Subject: [pkgdb] man-pages-es: dchen has given up watchbugzilla Message-ID: <20090714002716.DE41310F89C@bastion2.fedora.phx.redhat.com> dchen has given up the watchbugzilla acl on man-pages-es (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:31:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:31:44 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003144.9162810F874@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 7 was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:33:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:33:01 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714003301.16D7010F862@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:33:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:33:05 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchcommits Message-ID: <20090714003305.ED17810F88D@bastion2.fedora.phx.redhat.com> dchen has requested the watchcommits acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:33:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:33:14 +0000 Subject: [pkgdb] man-pages-es: dchen has requested commit Message-ID: <20090714003314.1B82A10F862@bastion2.fedora.phx.redhat.com> dchen has requested the commit acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:33:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:33:49 +0000 Subject: [pkgdb] man-pages-es: dchen has requested approveacls Message-ID: <20090714003349.9ADA310F899@bastion2.fedora.phx.redhat.com> dchen has requested the approveacls acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:26 +0000 Subject: [pkgdb] man-pages-es: dchen has given up watchbugzilla Message-ID: <20090714003526.33E0E10F862@bastion2.fedora.phx.redhat.com> dchen has given up the watchbugzilla acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:28 +0000 Subject: [pkgdb] man-pages-es: dchen has given up commit Message-ID: <20090714003528.8BB4D10F899@bastion2.fedora.phx.redhat.com> dchen has given up the commit acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:26 +0000 Subject: [pkgdb] man-pages-es: dchen has given up watchcommits Message-ID: <20090714003526.F372110F888@bastion2.fedora.phx.redhat.com> dchen has given up the watchcommits acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:30 +0000 Subject: [pkgdb] man-pages-es: dchen has given up approveacls Message-ID: <20090714003530.458EA10F89C@bastion2.fedora.phx.redhat.com> dchen has given up the approveacls acl on man-pages-es (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:51 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003551.9AD1610F862@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 8 was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:35:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:35:51 +0000 Subject: [pkgdb] man-pages-es (un)retirement Message-ID: <20090714003551.ADF2D10F888@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 8 has been retired by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:38:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:38:52 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003852.2527A10F89C@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 9 was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:01 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714003901.8A50210F888@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:02 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchcommits Message-ID: <20090714003902.8C7F510F8A5@bastion2.fedora.phx.redhat.com> dchen has requested the watchcommits acl on man-pages-es (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:04 +0000 Subject: [pkgdb] man-pages-es: dchen has requested commit Message-ID: <20090714003904.B173E10F8A8@bastion2.fedora.phx.redhat.com> dchen has requested the commit acl on man-pages-es (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:12 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003912.6EB2010F862@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 10 was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:16 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchcommits Message-ID: <20090714003916.635FD10F89A@bastion2.fedora.phx.redhat.com> dchen has requested the watchcommits acl on man-pages-es (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:24 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714003924.A90DB10F888@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:22 +0000 Subject: [pkgdb] man-pages-es: dchen has requested commit Message-ID: <20090714003922.E0BBA10F89C@bastion2.fedora.phx.redhat.com> dchen has requested the commit acl on man-pages-es (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:32 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003932.E4F9110F8AB@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 11 was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:38 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714003938.36BA110F8B0@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:38 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchcommits Message-ID: <20090714003938.81F7B10F8B2@bastion2.fedora.phx.redhat.com> dchen has requested the watchcommits acl on man-pages-es (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:39 +0000 Subject: [pkgdb] man-pages-es: dchen has requested commit Message-ID: <20090714003940.083D410F8B5@bastion2.fedora.phx.redhat.com> dchen has requested the commit acl on man-pages-es (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:48 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchbugzilla Message-ID: <20090714003948.B989110F888@bastion2.fedora.phx.redhat.com> dchen has requested the watchbugzilla acl on man-pages-es (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:49 +0000 Subject: [pkgdb] man-pages-es: dchen has requested watchcommits Message-ID: <20090714003949.588AB10F89C@bastion2.fedora.phx.redhat.com> dchen has requested the watchcommits acl on man-pages-es (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:50 +0000 Subject: [pkgdb] man-pages-es: dchen has requested commit Message-ID: <20090714003950.4E64910F8B7@bastion2.fedora.phx.redhat.com> dchen has requested the commit acl on man-pages-es (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 00:39:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 00:39:55 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714003955.F1ACE10F8BB@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora devel was orphaned by dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From cchance at fedoraproject.org Tue Jul 14 00:56:22 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Tue, 14 Jul 2009 00:56:22 +0000 (UTC) Subject: rpms/liberation-fonts/devel liberation-fonts.spec,1.40,1.41 Message-ID: <20090714005622.F3B1E11C00D7@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/liberation-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16942 Modified Files: liberation-fonts.spec Log Message: - Required fontforge ver 20090408 which supports generation with traditional kern table. (rhbz#503430) Index: liberation-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/liberation-fonts.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- liberation-fonts.spec 13 Jul 2009 06:31:40 -0000 1.40 +++ liberation-fonts.spec 14 Jul 2009 00:55:52 -0000 1.41 @@ -10,7 +10,7 @@ New. Name: %{fontname}-fonts Summary: Fonts to replace commonly used Microsoft Windows fonts Version: 1.05.1.20090713 -Release: 1%{?dist} +Release: 2%{?dist} # The license of the Liberation Fonts is a EULA that contains GPLv2 and two # exceptions: # The first exception is the standard FSF font exception. @@ -24,7 +24,7 @@ Source0: https://fedorahosted.o BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel >= 1.13, xorg-x11-font-utils -BuildRequires: fontforge >= 20090224 +BuildRequires: fontforge >= 20090408 %description %common_desc @@ -112,6 +112,10 @@ mkfontscale %{buildroot}%{_fontdir} rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Caius 'kaio' Chance - 1.05.1.20090713-2.fc12 +- Required fontforge ver 20090408 which supports generation with traditional + kern table. (rhbz#503430) + * Mon Jul 13 2009 Caius 'kaio' Chance - 1.05.1.20090713-1.fc12 - Updated to upstream 1.05.1.20090713. - Generate TTFs with traditional kern table via fontforge scripts. (rh#503430) From pkgdb at fedoraproject.org Tue Jul 14 01:08:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:00 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714010800.5076310F899@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 10 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:07:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:07:55 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714010755.1AE2410F888@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora devel is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:01 +0000 Subject: [pkgdb] man-pages-es ownership updated Message-ID: <20090714010801.8634C10F89F@bastion2.fedora.phx.redhat.com> Package man-pages-es in Fedora 11 is now owned by pgordon To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:07 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010807.8238A10F862@bastion2.fedora.phx.redhat.com> pgordon has set the watchbugzilla acl on man-pages-es (Fedora devel) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:07 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010807.B391410F8A8@bastion2.fedora.phx.redhat.com> pgordon has set the watchcommits acl on man-pages-es (Fedora devel) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:08 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010808.DA90710F8AC@bastion2.fedora.phx.redhat.com> pgordon has set the commit acl on man-pages-es (Fedora devel) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:14 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010814.8482C10F8B0@bastion2.fedora.phx.redhat.com> pgordon has set the watchbugzilla acl on man-pages-es (Fedora 10) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:16 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010816.8307E10F8B6@bastion2.fedora.phx.redhat.com> pgordon has set the commit acl on man-pages-es (Fedora 10) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:15 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010815.6AEF010F8B3@bastion2.fedora.phx.redhat.com> pgordon has set the watchcommits acl on man-pages-es (Fedora 10) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:19 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010819.38E7910F89A@bastion2.fedora.phx.redhat.com> pgordon has set the watchcommits acl on man-pages-es (Fedora 11) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:17 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010817.EE1EE10F888@bastion2.fedora.phx.redhat.com> pgordon has set the commit acl on man-pages-es (Fedora 11) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From pkgdb at fedoraproject.org Tue Jul 14 01:08:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 01:08:20 +0000 Subject: [pkgdb] man-pages-es had acl change status Message-ID: <20090714010820.B9A7110F8BA@bastion2.fedora.phx.redhat.com> pgordon has set the watchbugzilla acl on man-pages-es (Fedora 11) to Approved for dchen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/man-pages-es From lutter at fedoraproject.org Tue Jul 14 02:54:12 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 02:54:12 +0000 (UTC) Subject: rpms/augeas/EL-4 .cvsignore, 1.18, 1.19 augeas.spec, 1.20, 1.21 sources, 1.18, 1.19 Message-ID: <20090714025412.B45B911C00D7@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/augeas/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/EL-4 Modified Files: .cvsignore augeas.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-4/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 9 Jun 2009 23:37:10 -0000 1.18 +++ .cvsignore 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -augeas-0.5.1.tar.gz +augeas-0.5.2.tar.gz Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-4/augeas.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- augeas.spec 9 Jun 2009 23:37:10 -0000 1.20 +++ augeas.spec 14 Jul 2009 02:53:42 -0000 1.21 @@ -1,5 +1,5 @@ Name: augeas -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} Summary: A library for changing configuration files @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Mon Jul 13 2009 David Lutterkort - 0.5.2-1 +- New version + * Fri Jun 5 2009 David Lutterkort - 0.5.1-1 - Install fadot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-4/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 9 Jun 2009 23:37:10 -0000 1.18 +++ sources 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -01d6baed0df9a4f2fa4d46ae91d896f7 augeas-0.5.1.tar.gz +83937c683999d7f53d91df56750e3b66 augeas-0.5.2.tar.gz From lutter at fedoraproject.org Tue Jul 14 02:54:12 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 02:54:12 +0000 (UTC) Subject: rpms/augeas/EL-5 .cvsignore, 1.18, 1.19 augeas.spec, 1.19, 1.20 sources, 1.18, 1.19 Message-ID: <20090714025412.EA90011C00D7@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/augeas/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/EL-5 Modified Files: .cvsignore augeas.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-5/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 9 Jun 2009 23:37:10 -0000 1.18 +++ .cvsignore 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -augeas-0.5.1.tar.gz +augeas-0.5.2.tar.gz Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-5/augeas.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- augeas.spec 9 Jun 2009 23:37:10 -0000 1.19 +++ augeas.spec 14 Jul 2009 02:53:42 -0000 1.20 @@ -1,5 +1,5 @@ Name: augeas -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} Summary: A library for changing configuration files @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Mon Jul 13 2009 David Lutterkort - 0.5.2-1 +- New version + * Fri Jun 5 2009 David Lutterkort - 0.5.1-1 - Install fadot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/augeas/EL-5/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 9 Jun 2009 23:37:10 -0000 1.18 +++ sources 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -01d6baed0df9a4f2fa4d46ae91d896f7 augeas-0.5.1.tar.gz +83937c683999d7f53d91df56750e3b66 augeas-0.5.2.tar.gz From lutter at fedoraproject.org Tue Jul 14 02:54:13 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 02:54:13 +0000 (UTC) Subject: rpms/augeas/F-10 .cvsignore, 1.18, 1.19 augeas.spec, 1.18, 1.19 sources, 1.18, 1.19 Message-ID: <20090714025413.24E0611C00D7@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/augeas/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/F-10 Modified Files: .cvsignore augeas.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-10/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 9 Jun 2009 23:37:10 -0000 1.18 +++ .cvsignore 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -augeas-0.5.1.tar.gz +augeas-0.5.2.tar.gz Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-10/augeas.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- augeas.spec 9 Jun 2009 23:37:10 -0000 1.18 +++ augeas.spec 14 Jul 2009 02:53:42 -0000 1.19 @@ -1,5 +1,5 @@ Name: augeas -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} Summary: A library for changing configuration files @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Mon Jul 13 2009 David Lutterkort - 0.5.2-1 +- New version + * Fri Jun 5 2009 David Lutterkort - 0.5.1-1 - Install fadot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-10/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 9 Jun 2009 23:37:10 -0000 1.18 +++ sources 14 Jul 2009 02:53:42 -0000 1.19 @@ -1 +1 @@ -01d6baed0df9a4f2fa4d46ae91d896f7 augeas-0.5.1.tar.gz +83937c683999d7f53d91df56750e3b66 augeas-0.5.2.tar.gz From lutter at fedoraproject.org Tue Jul 14 02:54:13 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 02:54:13 +0000 (UTC) Subject: rpms/augeas/F-11 .cvsignore, 1.18, 1.19 augeas.spec, 1.19, 1.20 sources, 1.18, 1.19 Message-ID: <20090714025413.73F3B11C00D7@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/augeas/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/F-11 Modified Files: .cvsignore augeas.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 9 Jun 2009 23:37:11 -0000 1.18 +++ .cvsignore 14 Jul 2009 02:53:43 -0000 1.19 @@ -1 +1 @@ -augeas-0.5.1.tar.gz +augeas-0.5.2.tar.gz Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-11/augeas.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- augeas.spec 9 Jun 2009 23:37:11 -0000 1.19 +++ augeas.spec 14 Jul 2009 02:53:43 -0000 1.20 @@ -1,5 +1,5 @@ Name: augeas -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} Summary: A library for changing configuration files @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Mon Jul 13 2009 David Lutterkort - 0.5.2-1 +- New version + * Fri Jun 5 2009 David Lutterkort - 0.5.1-1 - Install fadot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/augeas/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 9 Jun 2009 23:37:11 -0000 1.18 +++ sources 14 Jul 2009 02:53:43 -0000 1.19 @@ -1 +1 @@ -01d6baed0df9a4f2fa4d46ae91d896f7 augeas-0.5.1.tar.gz +83937c683999d7f53d91df56750e3b66 augeas-0.5.2.tar.gz From lutter at fedoraproject.org Tue Jul 14 02:54:13 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 02:54:13 +0000 (UTC) Subject: rpms/augeas/devel .cvsignore, 1.18, 1.19 augeas.spec, 1.19, 1.20 sources, 1.18, 1.19 Message-ID: <20090714025413.A14E911C00D7@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/devel Modified Files: .cvsignore augeas.spec sources Log Message: New version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/augeas/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 9 Jun 2009 23:37:11 -0000 1.18 +++ .cvsignore 14 Jul 2009 02:53:43 -0000 1.19 @@ -1 +1 @@ -augeas-0.5.1.tar.gz +augeas-0.5.2.tar.gz Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/devel/augeas.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- augeas.spec 9 Jun 2009 23:37:11 -0000 1.19 +++ augeas.spec 14 Jul 2009 02:53:43 -0000 1.20 @@ -1,5 +1,5 @@ Name: augeas -Version: 0.5.1 +Version: 0.5.2 Release: 1%{?dist} Summary: A library for changing configuration files @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Mon Jul 13 2009 David Lutterkort - 0.5.2-1 +- New version + * Fri Jun 5 2009 David Lutterkort - 0.5.1-1 - Install fadot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/augeas/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 9 Jun 2009 23:37:11 -0000 1.18 +++ sources 14 Jul 2009 02:53:43 -0000 1.19 @@ -1 +1 @@ -01d6baed0df9a4f2fa4d46ae91d896f7 augeas-0.5.1.tar.gz +83937c683999d7f53d91df56750e3b66 augeas-0.5.2.tar.gz From ianweller at fedoraproject.org Tue Jul 14 02:59:01 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Tue, 14 Jul 2009 02:59:01 +0000 (UTC) Subject: rpms/gwibber/F-10 .cvsignore, 1.16, 1.17 gwibber.spec, 1.20, 1.21 sources, 1.16, 1.17 Message-ID: <20090714025901.8171311C00D7@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/gwibber/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14356 Modified Files: .cvsignore gwibber.spec sources Log Message: r349 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-10/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 24 Jun 2009 01:42:54 -0000 1.16 +++ .cvsignore 14 Jul 2009 02:59:00 -0000 1.17 @@ -1 +1 @@ -gwibber-345bzr.tar.gz +gwibber-349bzr.tar.gz Index: gwibber.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-10/gwibber.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gwibber.spec 24 Jun 2009 01:42:54 -0000 1.20 +++ gwibber.spec 14 Jul 2009 02:59:01 -0000 1.21 @@ -1,10 +1,10 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define bzr_rev 345 +%define bzr_rev 349 Name: gwibber Version: 1.2.0 -Release: 1.%{bzr_rev}bzr%{?dist} +Release: 2.%{bzr_rev}bzr%{?dist} Epoch: 1 Summary: An open source microblogging client for GNOME developed with Python and GTK @@ -12,10 +12,8 @@ Group: Applications/Internet License: GPLv2+ URL: https://launchpad.net/gwibber # The source for this package was pulled from upstream's vcs. Use the -# following commands to generate the tarball: -# bzr branch -r %{bzr_rev} lp:gwibber gwibber -# rm -rf gwibber/.bzr* -# tar -czvf gwibber-%{bzr_rev}bzr.tar.gz gwibber +# following command to generate the tarball: +# bzr export -r %{bzr_rev} gwibber-%{bzr_rev}bzr.tar.gz lp:gwibber Source0: %{name}-%{bzr_rev}bzr.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -32,7 +30,7 @@ and GTK. It supports Twitter, Jaiku, Ide %prep -%setup -q -n gwibber +%setup -q -n gwibber-%{bzr_rev}bzr sed -i -e '/^#! \?\//, 1d' $(find %{name} | grep "\.py$") %build @@ -68,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Ian Weller - 1:1.2.0-2.349bzr +- update to r349, bugfixes + * Tue Jun 23 2009 Ian Weller - 1:1.2.0-1.345bzr - update to r345 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-10/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 24 Jun 2009 01:42:54 -0000 1.16 +++ sources 14 Jul 2009 02:59:01 -0000 1.17 @@ -1 +1 @@ -f2ef0e741b9ac1f2613c5ffdd8d5001c gwibber-345bzr.tar.gz +611d22ed3ca2ebf8c8e097d2ab006227 gwibber-349bzr.tar.gz From ianweller at fedoraproject.org Tue Jul 14 02:59:27 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Tue, 14 Jul 2009 02:59:27 +0000 (UTC) Subject: rpms/gwibber/F-11 .cvsignore, 1.17, 1.18 gwibber.spec, 1.26, 1.27 sources, 1.17, 1.18 Message-ID: <20090714025927.E6A2F11C00D7@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/gwibber/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14325 Modified Files: .cvsignore gwibber.spec sources Log Message: r349 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-11/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 24 Jun 2009 01:41:18 -0000 1.17 +++ .cvsignore 14 Jul 2009 02:58:57 -0000 1.18 @@ -1 +1 @@ -gwibber-345bzr.tar.gz +gwibber-349bzr.tar.gz Index: gwibber.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-11/gwibber.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- gwibber.spec 24 Jun 2009 01:41:18 -0000 1.26 +++ gwibber.spec 14 Jul 2009 02:58:57 -0000 1.27 @@ -1,10 +1,10 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define bzr_rev 345 +%define bzr_rev 349 Name: gwibber Version: 1.2.0 -Release: 1.%{bzr_rev}bzr%{?dist} +Release: 2.%{bzr_rev}bzr%{?dist} Epoch: 1 Summary: An open source microblogging client for GNOME developed with Python and GTK @@ -12,10 +12,8 @@ Group: Applications/Internet License: GPLv2+ URL: https://launchpad.net/gwibber # The source for this package was pulled from upstream's vcs. Use the -# following commands to generate the tarball: -# bzr branch -r %{bzr_rev} lp:gwibber gwibber -# rm -rf gwibber/.bzr* -# tar -czvf gwibber-%{bzr_rev}bzr.tar.gz gwibber +# following command to generate the tarball: +# bzr export -r %{bzr_rev} gwibber-%{bzr_rev}bzr.tar.gz lp:gwibber Source0: %{name}-%{bzr_rev}bzr.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -32,7 +30,7 @@ and GTK. It supports Twitter, Jaiku, Ide %prep -%setup -q -n gwibber +%setup -q -n gwibber-%{bzr_rev}bzr sed -i -e '/^#! \?\//, 1d' $(find %{name} | grep "\.py$") %build @@ -68,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Ian Weller - 1:1.2.0-2.349bzr +- update to r349, bugfixes + * Tue Jun 23 2009 Ian Weller - 1:1.2.0-1.345bzr - update to r345 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 24 Jun 2009 01:41:18 -0000 1.17 +++ sources 14 Jul 2009 02:58:57 -0000 1.18 @@ -1 +1 @@ -f2ef0e741b9ac1f2613c5ffdd8d5001c gwibber-345bzr.tar.gz +611d22ed3ca2ebf8c8e097d2ab006227 gwibber-349bzr.tar.gz From ianweller at fedoraproject.org Tue Jul 14 02:59:23 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Tue, 14 Jul 2009 02:59:23 +0000 (UTC) Subject: rpms/gwibber/devel .cvsignore, 1.17, 1.18 gwibber.spec, 1.27, 1.28 sources, 1.18, 1.19 Message-ID: <20090714025923.663F911C00D7@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/gwibber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14290 Modified Files: .cvsignore gwibber.spec sources Log Message: r349 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 24 Jun 2009 01:40:06 -0000 1.17 +++ .cvsignore 14 Jul 2009 02:58:53 -0000 1.18 @@ -1 +1 @@ -gwibber-345bzr.tar.gz +gwibber-349bzr.tar.gz Index: gwibber.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/devel/gwibber.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gwibber.spec 24 Jun 2009 01:40:06 -0000 1.27 +++ gwibber.spec 14 Jul 2009 02:58:53 -0000 1.28 @@ -1,10 +1,10 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define bzr_rev 345 +%define bzr_rev 349 Name: gwibber Version: 1.2.0 -Release: 1.%{bzr_rev}bzr%{?dist} +Release: 2.%{bzr_rev}bzr%{?dist} Epoch: 1 Summary: An open source microblogging client for GNOME developed with Python and GTK @@ -12,10 +12,8 @@ Group: Applications/Internet License: GPLv2+ URL: https://launchpad.net/gwibber # The source for this package was pulled from upstream's vcs. Use the -# following commands to generate the tarball: -# bzr branch -r %{bzr_rev} lp:gwibber gwibber -# rm -rf gwibber/.bzr* -# tar -czvf gwibber-%{bzr_rev}bzr.tar.gz gwibber +# following command to generate the tarball: +# bzr export -r %{bzr_rev} gwibber-%{bzr_rev}bzr.tar.gz lp:gwibber Source0: %{name}-%{bzr_rev}bzr.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -32,7 +30,7 @@ and GTK. It supports Twitter, Jaiku, Ide %prep -%setup -q -n gwibber +%setup -q -n gwibber-%{bzr_rev}bzr sed -i -e '/^#! \?\//, 1d' $(find %{name} | grep "\.py$") %build @@ -68,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Ian Weller - 1:1.2.0-2.349bzr +- update to r349, bugfixes + * Tue Jun 23 2009 Ian Weller - 1:1.2.0-1.345bzr - update to r345 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 24 Jun 2009 01:40:06 -0000 1.18 +++ sources 14 Jul 2009 02:58:53 -0000 1.19 @@ -1 +1 @@ -f2ef0e741b9ac1f2613c5ffdd8d5001c gwibber-345bzr.tar.gz +611d22ed3ca2ebf8c8e097d2ab006227 gwibber-349bzr.tar.gz From mclasen at fedoraproject.org Tue Jul 14 03:08:46 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:08:46 +0000 (UTC) Subject: rpms/gvfs/devel gvfs-archive-integration.patch, NONE, 1.1 .cvsignore, 1.42, 1.43 gvfs.spec, 1.136, 1.137 sources, 1.42, 1.43 0001-FTP-prepare-the-code-for-active-FTP-support.patch, 1.1, NONE 0002-FTP-Bug-516704-Be-able-to-connect-to-an-Active-FTP-S.patch, 1.1, NONE 0004-FTP-add-the-error-code-for-EPRT-s-522-error.patch, 1.1, NONE 0005-FTP-add-EPRT-support.patch, 1.1, NONE 0006-Bug-582772-gvfsd-computer-crashes-with-SEGSEV-in-rec.patch, 1.1, NONE 0007-Better-handling-of-PC-floppy-drives.patch, 1.1, NONE 0008-FTP-use-the-EPRT-feature-response-for-EPRT-support-n.patch, 1.1, NONE 0009-FTP-remove-EPSV-as-default-feature.patch, 1.1, NONE gvfs-0.99.2-archive-integration.patch, 1.3, NONE gvfs-1.1.7-gdu-computer-expose-devices.patch, 1.1, NONE Message-ID: <20090714030846.5AFB611C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17086 Modified Files: .cvsignore gvfs.spec sources Added Files: gvfs-archive-integration.patch Removed Files: 0001-FTP-prepare-the-code-for-active-FTP-support.patch 0002-FTP-Bug-516704-Be-able-to-connect-to-an-Active-FTP-S.patch 0004-FTP-add-the-error-code-for-EPRT-s-522-error.patch 0005-FTP-add-EPRT-support.patch 0006-Bug-582772-gvfsd-computer-crashes-with-SEGSEV-in-rec.patch 0007-Better-handling-of-PC-floppy-drives.patch 0008-FTP-use-the-EPRT-feature-response-for-EPRT-support-n.patch 0009-FTP-remove-EPSV-as-default-feature.patch gvfs-0.99.2-archive-integration.patch gvfs-1.1.7-gdu-computer-expose-devices.patch Log Message: 1.3.2 gvfs-archive-integration.patch: --- NEW FILE gvfs-archive-integration.patch --- diff -up gvfs-1.3.2/Makefile.am.archive-integration gvfs-1.3.2/Makefile.am --- gvfs-1.3.2/Makefile.am.archive-integration 2009-06-25 19:55:39.000000000 -0400 +++ gvfs-1.3.2/Makefile.am 2009-07-13 22:51:52.480693853 -0400 @@ -1,5 +1,19 @@ NULL = + at INTLTOOL_DESKTOP_RULE@ + +desktop_in_files = mount-archive.desktop.in + +mount-archive.desktop.in: mount-archive.desktop.in.in + sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + +desktopdir = $(datadir)/applications +if HAVE_ARCHIVE +desktop_DATA = mount-archive.desktop +else +desktop_DATA = +endif + SUBDIRS = \ common \ metadata \ @@ -19,6 +33,8 @@ EXTRA_DIST = \ gvfs.doap \ README.commits \ MAINTAINERS \ + mount-archive.desktop.in.in \ + $(desktop_in_files) \ $(NULL) DISTCLEANFILES = \ diff -up /dev/null gvfs-1.3.2/mount-archive.desktop.in.in --- /dev/null 2009-07-13 16:21:55.049012465 -0400 +++ gvfs-1.3.2/mount-archive.desktop.in.in 2009-07-13 22:39:14.844931097 -0400 @@ -0,0 +1,14 @@ +[Desktop Entry] +Encoding=UTF-8 +_Name=Archive Mounter +Exec=@libexecdir@/gvfsd-archive file=%u +X-Gnome-Vfs-System=gio +MimeType=application/x-cd-image;application/x-bzip-compressed-tar;application/x-compressed-tar;application/x-tar;application/x-cpio;application/x-zip;application/zip;application/x-lzma-compressed-tar; +Terminal=false +StartupNotify=false +Type=Application +NoDisplay=true +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=gvfs +X-GNOME-Bugzilla-Component=archive-backend +X-GNOME-Bugzilla-Version=@VERSION@ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 16 Jun 2009 03:50:56 -0000 1.42 +++ .cvsignore 14 Jul 2009 03:08:45 -0000 1.43 @@ -1 +1 @@ -gvfs-1.3.1.tar.bz2 +gvfs-1.3.2.tar.bz2 Index: gvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/gvfs.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- gvfs.spec 22 Jun 2009 13:46:12 -0000 1.136 +++ gvfs.spec 14 Jul 2009 03:08:46 -0000 1.137 @@ -1,7 +1,7 @@ Summary: Backends for the gio framework in GLib Name: gvfs -Version: 1.3.1 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -33,26 +33,13 @@ Requires(postun): desktop-file-utils BuildRequires: automake autoconf BuildRequires: libtool # http://bugzilla.gnome.org/show_bug.cgi?id=567235 -Patch1: gvfs-0.99.2-archive-integration.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=573826 -Patch2: gvfs-1.1.7-gdu-computer-expose-devices.patch +Patch1: gvfs-archive-integration.patch # https://bugzilla.redhat.com/show_bug.cgi?id=497631 Patch8: gvfs-1.2.2-dnssd-deadlock.patch # https://bugzilla.redhat.com/show_bug.cgi?id=504339 Patch9: gvfs-1.2.3-sftp-40sec-timeout.patch -# Backports from trunk -Patch100: 0001-FTP-prepare-the-code-for-active-FTP-support.patch -Patch101: 0002-FTP-Bug-516704-Be-able-to-connect-to-an-Active-FTP-S.patch -Patch102: 0004-FTP-add-the-error-code-for-EPRT-s-522-error.patch -Patch103: 0005-FTP-add-EPRT-support.patch -Patch104: 0006-Bug-582772-gvfsd-computer-crashes-with-SEGSEV-in-rec.patch -Patch105: 0007-Better-handling-of-PC-floppy-drives.patch -Patch106: 0008-FTP-use-the-EPRT-feature-response-for-EPRT-support-n.patch -Patch107: 0009-FTP-remove-EPSV-as-default-feature.patch - - %description The gvfs package provides backend implementations for the gio framework in GLib. It includes ftp, sftp, cifs. @@ -134,20 +121,10 @@ media players (Media Transfer Protocol) %prep %setup -q -%patch1 -p0 -b .archive-integration -%patch2 -p1 -b .computer-expose-devices +%patch1 -p1 -b .archive-integration %patch8 -p1 -b .dnssd-deadlock %patch9 -p1 -b .sftp-timeout -%patch100 -p1 -%patch101 -p1 -%patch102 -p1 -%patch103 -p1 -%patch104 -p1 -%patch105 -p1 -%patch106 -p1 -%patch107 -p1 - %build # Needed for gvfs-0.2.1-archive-integration.patch @@ -203,6 +180,7 @@ update-desktop-database &> /dev/null ||: %{_datadir}/gvfs/mounts/network.mount %{_datadir}/gvfs/mounts/ftp.mount %{_datadir}/dbus-1/services/gvfs-daemon.service +%{_datadir}/dbus-1/services/gvfs-metadata.service %{_datadir}/dbus-1/services/org.gtk.Private.HalVolumeMonitor.service %{_datadir}/dbus-1/services/org.gtk.Private.GduVolumeMonitor.service %{_datadir}/gvfs/remote-volume-monitors/hal.monitor @@ -225,6 +203,7 @@ update-desktop-database &> /dev/null ||: %{_libexecdir}/gvfsd-burn %{_libexecdir}/gvfsd-dnssd %{_libexecdir}/gvfsd-network +%{_libexecdir}/gvfsd-metadata %{_libexecdir}/gvfs-hal-volume-monitor %{_libexecdir}/gvfs-gdu-volume-monitor %{_bindir}/gvfs-cat @@ -243,6 +222,7 @@ update-desktop-database &> /dev/null ||: %{_bindir}/gvfs-save %{_bindir}/gvfs-trash %{_bindir}/gvfs-tree +%{_bindir}/gvfs-set-attribute %files devel %defattr(-, root, root, -) @@ -290,6 +270,10 @@ update-desktop-database &> /dev/null ||: %changelog +* Mon Jul 13 2009 Matthias Clasen - 1.3.2-1 +- Update to 1.3.2 +- Drop upstreamed patches + * Mon Jun 22 2009 Tomas Bzatek - 1.3.1-2 - Bump version requirements - Backport FTP and Computer backend patches from master Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 16 Jun 2009 03:50:56 -0000 1.42 +++ sources 14 Jul 2009 03:08:46 -0000 1.43 @@ -1 +1 @@ -78f5b53fb965e3daefb54dcc6f27900c gvfs-1.3.1.tar.bz2 +73a7aecfba767f80146cbd5d37598e8b gvfs-1.3.2.tar.bz2 --- 0001-FTP-prepare-the-code-for-active-FTP-support.patch DELETED --- --- 0002-FTP-Bug-516704-Be-able-to-connect-to-an-Active-FTP-S.patch DELETED --- --- 0004-FTP-add-the-error-code-for-EPRT-s-522-error.patch DELETED --- --- 0005-FTP-add-EPRT-support.patch DELETED --- --- 0006-Bug-582772-gvfsd-computer-crashes-with-SEGSEV-in-rec.patch DELETED --- --- 0007-Better-handling-of-PC-floppy-drives.patch DELETED --- --- 0008-FTP-use-the-EPRT-feature-response-for-EPRT-support-n.patch DELETED --- --- 0009-FTP-remove-EPSV-as-default-feature.patch DELETED --- --- gvfs-0.99.2-archive-integration.patch DELETED --- --- gvfs-1.1.7-gdu-computer-expose-devices.patch DELETED --- From sparks at fedoraproject.org Tue Jul 14 03:15:19 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 03:15:19 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/F-11 fedora-security-guide-en-US.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714031519.34EDB11C00D7@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19276/F-11 Modified Files: .cvsignore sources Added Files: fedora-security-guide-en-US.spec import.log Log Message: Initial entry! --- NEW FILE fedora-security-guide-en-US.spec --- # Documentation Specfile %define HTMLVIEW %(eval 'if [ "%{?dist}" = ".el5" ]; then echo "1"; else echo "0"; fi') %define viewer xdg-open %if %{HTMLVIEW} %define viewer htmlview %define vendor redhat- %define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US Version: 1.0 Release: 14%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: publican BuildRequires: publican-fedora %if %{HTMLVIEW} Requires: htmlview %else Requires: xdg-utils %endif %description The Linux Security Guide is designed to assist users of Linux in learning the processes and practices of securing workstations and servers against local and remote intrusion, exploitation, and malicious activity. The Linux Security Guide details the planning and the tools involved in creating a secured computing environment for the data center, workplace, and home. With proper administrative knowledge, vigilance, and tools, systems running Linux can be both fully functional and secured from most common intrusion and exploit methods. %prep %setup -q %build %{__make} html-desktop-en-US %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications cat > %{name}.desktop <<'EOF' [Desktop Entry] Name=fedora 11: security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg Categories=Documentation;X-Red-Hat-Base; Type=Application Encoding=UTF-8 Terminal=false EOF desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* %{_datadir}/applications/%{?vendor}%{name}.desktop %changelog * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push * Mon Mar 2 2009 Scott Radvan sradvan at redhat.com 1.0-13 - Lots of minor fixes * Wed Feb 11 2009 Scott Radvan sradvan at redhat.com 1.0-12 - new screenshots from F11 replacing existing/older ones * Tue Feb 03 2009 Scott Radvan sradvan at redhat.com 1.0-11 - LUKS specifics to Fedora 9 modified to include later releases as well. - Fix 404s in reference section, mainly bad NSA links. - minor formatting changes. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-10 - Fixed missing firewall setup screenshot. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-9 - Repaired items found to be incorrect during validation. Many Red Hat references have been changed to Fedora references. --- NEW FILE import.log --- fedora-security-guide-en-US-1_0-14_fc11:F-11:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247541206 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:42:03 -0000 1.1 +++ .cvsignore 14 Jul 2009 03:14:48 -0000 1.2 @@ -0,0 +1 @@ +fedora-security-guide-en-US-1.0.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:42:03 -0000 1.1 +++ sources 14 Jul 2009 03:14:48 -0000 1.2 @@ -0,0 +1 @@ +87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz From sparks at fedoraproject.org Tue Jul 14 03:17:00 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 03:17:00 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/F-10 fedora-security-guide-en-US.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714031700.E7ABF11C00D7@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20226/F-10 Modified Files: .cvsignore sources Added Files: fedora-security-guide-en-US.spec import.log Log Message: Initial entry in F10 branch. --- NEW FILE fedora-security-guide-en-US.spec --- # Documentation Specfile %define HTMLVIEW %(eval 'if [ "%{?dist}" = ".el5" ]; then echo "1"; else echo "0"; fi') %define viewer xdg-open %if %{HTMLVIEW} %define viewer htmlview %define vendor redhat- %define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US Version: 1.0 Release: 14%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: publican BuildRequires: publican-fedora %if %{HTMLVIEW} Requires: htmlview %else Requires: xdg-utils %endif %description The Linux Security Guide is designed to assist users of Linux in learning the processes and practices of securing workstations and servers against local and remote intrusion, exploitation, and malicious activity. The Linux Security Guide details the planning and the tools involved in creating a secured computing environment for the data center, workplace, and home. With proper administrative knowledge, vigilance, and tools, systems running Linux can be both fully functional and secured from most common intrusion and exploit methods. %prep %setup -q %build %{__make} html-desktop-en-US %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications cat > %{name}.desktop <<'EOF' [Desktop Entry] Name=fedora 11: security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg Categories=Documentation;X-Red-Hat-Base; Type=Application Encoding=UTF-8 Terminal=false EOF desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* %{_datadir}/applications/%{?vendor}%{name}.desktop %changelog * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push * Mon Mar 2 2009 Scott Radvan sradvan at redhat.com 1.0-13 - Lots of minor fixes * Wed Feb 11 2009 Scott Radvan sradvan at redhat.com 1.0-12 - new screenshots from F11 replacing existing/older ones * Tue Feb 03 2009 Scott Radvan sradvan at redhat.com 1.0-11 - LUKS specifics to Fedora 9 modified to include later releases as well. - Fix 404s in reference section, mainly bad NSA links. - minor formatting changes. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-10 - Fixed missing firewall setup screenshot. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-9 - Repaired items found to be incorrect during validation. Many Red Hat references have been changed to Fedora references. --- NEW FILE import.log --- fedora-security-guide-en-US-1_0-14_fc11:F-10:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247541394 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:42:03 -0000 1.1 +++ .cvsignore 14 Jul 2009 03:17:00 -0000 1.2 @@ -0,0 +1 @@ +fedora-security-guide-en-US-1.0.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:42:03 -0000 1.1 +++ sources 14 Jul 2009 03:17:00 -0000 1.2 @@ -0,0 +1 @@ +87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz From mclasen at fedoraproject.org Tue Jul 14 03:20:04 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:20:04 +0000 (UTC) Subject: rpms/evince/devel .cvsignore, 1.64, 1.65 evince.spec, 1.165, 1.166 sources, 1.63, 1.64 Message-ID: <20090714032004.29A9B11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/evince/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20914 Modified Files: .cvsignore evince.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evince/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 16 Jun 2009 05:21:03 -0000 1.64 +++ .cvsignore 14 Jul 2009 03:19:33 -0000 1.65 @@ -1 +1 @@ -evince-2.27.3.tar.bz2 +evince-2.27.4.tar.bz2 Index: evince.spec =================================================================== RCS file: /cvs/pkgs/rpms/evince/devel/evince.spec,v retrieving revision 1.165 retrieving revision 1.166 diff -u -p -r1.165 -r1.166 --- evince.spec 16 Jun 2009 05:21:03 -0000 1.165 +++ evince.spec 14 Jul 2009 03:19:33 -0000 1.166 @@ -5,7 +5,7 @@ %define theme_version 2.17.1 Name: evince -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} Summary: Document viewer @@ -257,6 +257,9 @@ fi %{_libdir}/evince/1/backends/djvudocument.evince-backend %changelog +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evince/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 16 Jun 2009 05:21:03 -0000 1.63 +++ sources 14 Jul 2009 03:19:33 -0000 1.64 @@ -1 +1 @@ -5f27b150d6115a50d865a75bee422452 evince-2.27.3.tar.bz2 +bfd1488d0c8d41d9c54bc2b69946bb65 evince-2.27.4.tar.bz2 From seanf at fedoraproject.org Tue Jul 14 03:22:16 2009 From: seanf at fedoraproject.org (Sean Flanigan) Date: Tue, 14 Jul 2009 03:22:16 +0000 (UTC) Subject: rpms/eclipse-nls/F-10 fetch-babel.sh, 1.2, 1.3 .cvsignore, 1.4, 1.5 eclipse-nls.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090714032216.A20A811C00D7@cvs1.fedora.phx.redhat.com> Author: seanf Update of /cvs/pkgs/rpms/eclipse-nls/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20899 Modified Files: .cvsignore eclipse-nls.spec sources Added Files: fetch-babel.sh Log Message: - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads - Fixed names/descriptions for languages with two word names such as "Portuguese (Brazilian)". Index: fetch-babel.sh =================================================================== RCS file: fetch-babel.sh diff -N fetch-babel.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ fetch-babel.sh 14 Jul 2009 03:21:46 -0000 1.3 @@ -0,0 +1,26 @@ +#!/bin/bash -e +LANGPACKS=http://download.eclipse.org/technology/babel/babel_language_packs +ZIP_DOWNLOAD_PAGE=$LANGPACKS/ganymede.php + +CURL='curl -H Pragma: --remote-time --show-error --silent' +#CURL='curl --remote-time --show-error' +WORKDIR=eclipse-nls +mkdir -p $WORKDIR +cd $WORKDIR +$CURL $ZIP_DOWNLOAD_PAGE -o index.html +ziplist=`mktemp --tmpdir -t` +sed -n 's/.*.*/\1/p' index.html > $ziplist +version=`sed -n 's/.*_\([^_]*\)\.zip.*/\1/p' $ziplist|head -1` +echo "Langpack version: $version" + +for zip in `cat $ziplist`; do + zipbase=`basename $zip` + if [ ! -r $zipbase ]; then + echo "Downloading $zipbase" + $CURL -o $zipbase.tmp -C - $LANGPACKS/$zip + mv $zipbase.tmp $zipbase + fi +done +rm -f $ziplist +cd .. +tar cjf BabelLanguagePack-$version.tar.bz2 $WORKDIR Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 Apr 2009 03:11:57 -0000 1.4 +++ .cvsignore 14 Jul 2009 03:21:45 -0000 1.5 @@ -1 +1 @@ -BabelLanguagePack-3.4.0.v20090423085802.tar.bz2 +BabelLanguagePack-3.4.0.v20090620043401.tar.bz2 Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-10/eclipse-nls.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eclipse-nls.spec 28 Apr 2009 03:11:57 -0000 1.3 +++ eclipse-nls.spec 14 Jul 2009 03:21:45 -0000 1.4 @@ -9,11 +9,15 @@ Group: Text Editors/Integrated Developme License: EPL URL: http://babel.eclipse.org/ -Version: 3.4.0.v20090423085802 +Version: 3.4.0.v20090620043401 Release: 1%{?dist} -## The source for this package is taken from -# http://download.eclipse.org/technology/babel/babel_language_packs/ *.zip -# http://download.eclipse.org/releases/ganymede/site.xml +## The source for this package is taken from the Babel project's update site. +## http://download.eclipse.org/technology/babel/babel_language_packs/.php *.zip +## Use the following commands to download the langpack zips and generate the tarball: +# sudo yum install curl +# mkdir temp && cd temp +# sh ../fetch-babel.sh +# mv BabelLanguagePack-%{version}.tar.bz2 .. && cd .. Source0: BabelLanguagePack-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -66,14 +70,16 @@ have a translation for a given string. \ # with licence information, and these jars are placed in the # dropins/babel/eclipse/plugins directory above. +%define spc() %(echo -n ' ') + %lang_meta_pkg ar ar Arabic %lang_meta_pkg bg bg Bulgarian -%lang_meta_pkg zh zh "Chinese (Simplified)" -%lang_meta_pkg zh_TW zh_TW "Chinese (Traditional)" +%lang_meta_pkg zh zh Chinese%{spc}(Simplified) +%lang_meta_pkg zh_TW zh_TW Chinese%{spc}(Traditional) %lang_meta_pkg cs cs Czech %lang_meta_pkg da da Danish %lang_meta_pkg nl nl Dutch -%lang_meta_pkg en_AU en_AU "English (Australian)" +%lang_meta_pkg en_AU en_AU English%{spc}(Australian) %lang_meta_pkg et et Estonian %lang_meta_pkg fi fi Finnish %lang_meta_pkg fr fr French @@ -93,14 +99,14 @@ have a translation for a given string. \ %lang_meta_pkg no no Norwegian %lang_meta_pkg pl pl Polish %lang_meta_pkg pt pt Portuguese -%lang_meta_pkg pt_BR pt_BR "Portuguese (Brazilian)" +%lang_meta_pkg pt_BR pt_BR Portuguese%{spc}(Brazilian) %lang_meta_pkg ro ro Romanian %lang_meta_pkg ru ru Russian %lang_meta_pkg es es Spanish %lang_meta_pkg sv sv Swedish %lang_meta_pkg tr tr Turkish %lang_meta_pkg uk uk Ukrainian -%lang_meta_pkg en_AA en_AA "Pseudo Translations" +%lang_meta_pkg en_AA en_AA Pseudo%{spc}Translations %prep # extract langpack zips from tarball @@ -117,6 +123,7 @@ for f in Babel*.zip; do rm $f done #mv artifacts.jar content.jar eclipse +rm -rf eclipse/features %build # nothing to build @@ -131,6 +138,11 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Sean Flanigan - 3.4.0.v20090620043401-1 +- Updated to Babel's release "0.7" +- Created a new fetch-babel.sh to automate the zip downloads +- Fixed names/descriptions for languages with two word names such as "Portuguese (Brazilian)". + * Tue Apr 28 2009 Sean Flanigan - 3.4.0.v20090423085802-1 - Upstream langpack have working downloads again - updated to latest version - Added subpackages for en_AU, et, hi and mn langpacks Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 28 Apr 2009 03:11:57 -0000 1.4 +++ sources 14 Jul 2009 03:21:46 -0000 1.5 @@ -1 +1 @@ -5abd9072331ccce3f0eb7f97ccb9e612 BabelLanguagePack-3.4.0.v20090423085802.tar.bz2 +5c573ad69d907530e0403eac78c12596 BabelLanguagePack-3.4.0.v20090620043401.tar.bz2 From seanf at fedoraproject.org Tue Jul 14 03:22:23 2009 From: seanf at fedoraproject.org (Sean Flanigan) Date: Tue, 14 Jul 2009 03:22:23 +0000 (UTC) Subject: rpms/eclipse-nls/F-11 fetch-babel.sh, 1.2, 1.3 .cvsignore, 1.4, 1.5 eclipse-nls.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090714032223.1036011C00D7@cvs1.fedora.phx.redhat.com> Author: seanf Update of /cvs/pkgs/rpms/eclipse-nls/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21035 Modified Files: .cvsignore eclipse-nls.spec sources Added Files: fetch-babel.sh Log Message: - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads Index: fetch-babel.sh =================================================================== RCS file: fetch-babel.sh diff -N fetch-babel.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ fetch-babel.sh 14 Jul 2009 03:22:22 -0000 1.3 @@ -0,0 +1,26 @@ +#!/bin/bash -e +LANGPACKS=http://download.eclipse.org/technology/babel/babel_language_packs +ZIP_DOWNLOAD_PAGE=$LANGPACKS/ganymede.php + +CURL='curl -H Pragma: --remote-time --show-error --silent' +#CURL='curl --remote-time --show-error' +WORKDIR=eclipse-nls +mkdir -p $WORKDIR +cd $WORKDIR +$CURL $ZIP_DOWNLOAD_PAGE -o index.html +ziplist=`mktemp --tmpdir -t` +sed -n 's/.*.*/\1/p' index.html > $ziplist +version=`sed -n 's/.*_\([^_]*\)\.zip.*/\1/p' $ziplist|head -1` +echo "Langpack version: $version" + +for zip in `cat $ziplist`; do + zipbase=`basename $zip` + if [ ! -r $zipbase ]; then + echo "Downloading $zipbase" + $CURL -o $zipbase.tmp -C - $LANGPACKS/$zip + mv $zipbase.tmp $zipbase + fi +done +rm -f $ziplist +cd .. +tar cjf BabelLanguagePack-$version.tar.bz2 $WORKDIR Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 Apr 2009 03:25:03 -0000 1.4 +++ .cvsignore 14 Jul 2009 03:22:22 -0000 1.5 @@ -1 +1 @@ -BabelLanguagePack-3.4.0.v20090423085802.tar.bz2 +BabelLanguagePack-3.4.0.v20090620043401.tar.bz2 Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-11/eclipse-nls.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- eclipse-nls.spec 27 May 2009 04:02:04 -0000 1.5 +++ eclipse-nls.spec 14 Jul 2009 03:22:22 -0000 1.6 @@ -9,12 +9,17 @@ Group: Text Editors/Integrated Developme License: EPL URL: http://babel.eclipse.org/ -Version: 3.4.0.v20090423085802 -Release: 2%{?dist} -## The source for this package is taken from -# http://download.eclipse.org/technology/babel/babel_language_packs/ *.zip -# http://download.eclipse.org/releases/ganymede/site.xml +Version: 3.4.0.v20090620043401 +Release: 1%{?dist} +## The source for this package is taken from the Babel project's update site. +## http://download.eclipse.org/technology/babel/babel_language_packs/.php *.zip +## Use the following commands to download the langpack zips and generate the tarball: +# sudo yum install curl +# mkdir temp && cd temp +# sh ../fetch-babel.sh +# mv BabelLanguagePack-%{version}.tar.bz2 .. && cd .. Source0: BabelLanguagePack-%{version}.tar.bz2 +Source1: fetch-babel.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -119,6 +124,7 @@ for f in Babel*.zip; do rm $f done #mv artifacts.jar content.jar eclipse +rm -rf eclipse/features %build # nothing to build @@ -133,6 +139,10 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Sean Flanigan - 3.4.0.v20090620043401-1 +- Updated to Babel's release "0.7" +- Created a new fetch-babel.sh to automate the zip downloads + * Wed May 27 2009 Sean Flanigan - 3.4.0.v20090423085802-2 - Fixed names/descriptions for languages with two word names such as "Portuguese (Brazilian)". Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 28 Apr 2009 03:25:03 -0000 1.4 +++ sources 14 Jul 2009 03:22:22 -0000 1.5 @@ -1 +1 @@ -5abd9072331ccce3f0eb7f97ccb9e612 BabelLanguagePack-3.4.0.v20090423085802.tar.bz2 +5c573ad69d907530e0403eac78c12596 BabelLanguagePack-3.4.0.v20090620043401.tar.bz2 From seanf at fedoraproject.org Tue Jul 14 03:22:29 2009 From: seanf at fedoraproject.org (Sean Flanigan) Date: Tue, 14 Jul 2009 03:22:29 +0000 (UTC) Subject: rpms/eclipse-nls/devel fetch-babel.sh, 1.2, 1.3 .cvsignore, 1.4, 1.5 eclipse-nls.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090714032229.3E25211C00D7@cvs1.fedora.phx.redhat.com> Author: seanf Update of /cvs/pkgs/rpms/eclipse-nls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21051 Modified Files: .cvsignore eclipse-nls.spec sources Added Files: fetch-babel.sh Log Message: - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads Index: fetch-babel.sh =================================================================== RCS file: fetch-babel.sh diff -N fetch-babel.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ fetch-babel.sh 14 Jul 2009 03:22:28 -0000 1.3 @@ -0,0 +1,26 @@ +#!/bin/bash -e +LANGPACKS=http://download.eclipse.org/technology/babel/babel_language_packs +ZIP_DOWNLOAD_PAGE=$LANGPACKS/galileo.php + +CURL='curl -H Pragma: --remote-time --show-error --silent' +#CURL='curl --remote-time --show-error' +WORKDIR=eclipse-nls +mkdir -p $WORKDIR +cd $WORKDIR +$CURL $ZIP_DOWNLOAD_PAGE -o index.html +ziplist=`mktemp --tmpdir -t` +sed -n 's/.*.*/\1/p' index.html > $ziplist +version=`sed -n 's/.*_\([^_]*\)\.zip.*/\1/p' $ziplist|head -1` +echo "Langpack version: $version" + +for zip in `cat $ziplist`; do + zipbase=`basename $zip` + if [ ! -r $zipbase ]; then + echo "Downloading $zipbase" + $CURL -o $zipbase.tmp -C - $LANGPACKS/$zip + mv $zipbase.tmp $zipbase + fi +done +rm -f $ziplist +cd .. +tar cjf BabelLanguagePack-$version.tar.bz2 $WORKDIR Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 27 May 2009 05:17:37 -0000 1.4 +++ .cvsignore 14 Jul 2009 03:22:28 -0000 1.5 @@ -1 +1 @@ -BabelLanguagePack-3.5.0.v20090423085802.tar.bz2 +BabelLanguagePack-3.5.0.v20090620043401.tar.bz2 Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/devel/eclipse-nls.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-nls.spec 27 May 2009 05:17:37 -0000 1.4 +++ eclipse-nls.spec 14 Jul 2009 03:22:28 -0000 1.5 @@ -9,7 +9,7 @@ Group: Text Editors/Integrated Developme License: EPL URL: http://babel.eclipse.org/ -Version: 3.5.0.v20090423085802 +Version: 3.5.0.v20090620043401 Release: 1%{?dist} ## The source for this package is taken from # http://download.eclipse.org/technology/babel/babel_language_packs/ *.zip @@ -138,6 +138,10 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Sean Flanigan - 3.5.0.v20090620043401-1 +- Updated to Babel's release "0.7" +- Created a new fetch-babel.sh to automate the zip downloads + * Wed May 27 2009 Sean Flanigan - 3.5.0.v20090423085802-1 - Updated from upstream; added Estonian. - Fixed names/descriptions for languages with two word names such as "Portuguese (Brazilian)". Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 27 May 2009 05:17:37 -0000 1.4 +++ sources 14 Jul 2009 03:22:29 -0000 1.5 @@ -1 +1 @@ -7260aaac0acd3f25fdd4049f6146f67b BabelLanguagePack-3.5.0.v20090423085802.tar.bz2 +6a0caafe21af677e7d0f0301484ac4dd BabelLanguagePack-3.5.0.v20090620043401.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 03:25:52 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:25:52 +0000 (UTC) Subject: rpms/file-roller/devel .cvsignore, 1.87, 1.88 file-roller.spec, 1.148, 1.149 sources, 1.87, 1.88 Message-ID: <20090714032552.7925A11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/file-roller/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22777 Modified Files: .cvsignore file-roller.spec sources Log Message: 2.27.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/.cvsignore,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- .cvsignore 16 Jun 2009 05:48:50 -0000 1.87 +++ .cvsignore 14 Jul 2009 03:25:22 -0000 1.88 @@ -1 +1 @@ -file-roller-2.27.1.tar.bz2 +file-roller-2.27.2.tar.bz2 Index: file-roller.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/file-roller.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- file-roller.spec 16 Jun 2009 05:48:50 -0000 1.148 +++ file-roller.spec 14 Jul 2009 03:25:22 -0000 1.149 @@ -10,7 +10,7 @@ Summary: Tool for viewing and creating archives Name: file-roller -Version: 2.27.1 +Version: 2.27.2 Release: 1%{?dist} License: GPLv2+ Group: Applications/Archiving @@ -128,6 +128,9 @@ fi %{_datadir}/icons/hicolor/scalable/apps/file-roller.svg %changelog +* Mon Jul 13 2009 Matthias Clasen 2.27.2-1 +- Update to 2.27.2 + * Tue Jun 16 2009 Matthias Clasen 2.27.1-1 - Update to 2.27.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/sources,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- sources 16 Jun 2009 05:48:50 -0000 1.87 +++ sources 14 Jul 2009 03:25:22 -0000 1.88 @@ -1 +1 @@ -06c2647248b8a43bab8e53686ce63324 file-roller-2.27.1.tar.bz2 +ccaff12d5242a5856079ff55a5c97020 file-roller-2.27.2.tar.bz2 From sparks at fedoraproject.org Tue Jul 14 03:34:43 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 03:34:43 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714033443.A1EEE11C00D7@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24903/devel Modified Files: .cvsignore sources Added Files: fedora-security-guide-en-US.spec import.log Log Message: Rawhide initial. --- NEW FILE fedora-security-guide-en-US.spec --- # Documentation Specfile %define HTMLVIEW %(eval 'if [ "%{?dist}" = ".el5" ]; then echo "1"; else echo "0"; fi') %define viewer xdg-open %if %{HTMLVIEW} %define viewer htmlview %define vendor redhat- %define vendoropt --vendor="redhat" %endif Name: fedora-security-guide-en-US Version: 1.0 Release: 14%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication URL: http://docs.fedoraproject.org Source: %{name}-%{version}.tgz BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: publican BuildRequires: publican-fedora %if %{HTMLVIEW} Requires: htmlview %else Requires: xdg-utils %endif %description The Linux Security Guide is designed to assist users of Linux in learning the processes and practices of securing workstations and servers against local and remote intrusion, exploitation, and malicious activity. The Linux Security Guide details the planning and the tools involved in creating a secured computing environment for the data center, workplace, and home. With proper administrative knowledge, vigilance, and tools, systems running Linux can be both fully functional and secured from most common intrusion and exploit methods. %prep %setup -q %build %{__make} html-desktop-en-US %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications cat > %{name}.desktop <<'EOF' [Desktop Entry] Name=fedora 11: security-guide Comment=A Guide to Securing Fedora Linux Exec=%{viewer} %{_docdir}/%{name}-%{version}/index.html Icon=%{_docdir}/%{name}-%{version}/images/icon.svg Categories=Documentation;X-Red-Hat-Base; Type=Application Encoding=UTF-8 Terminal=false EOF desktop-file-install %{?vendoropt} --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{name}.desktop %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc tmp/en-US/html-desktop/* %{_datadir}/applications/%{?vendor}%{name}.desktop %changelog * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push * Mon Mar 2 2009 Scott Radvan sradvan at redhat.com 1.0-13 - Lots of minor fixes * Wed Feb 11 2009 Scott Radvan sradvan at redhat.com 1.0-12 - new screenshots from F11 replacing existing/older ones * Tue Feb 03 2009 Scott Radvan sradvan at redhat.com 1.0-11 - LUKS specifics to Fedora 9 modified to include later releases as well. - Fix 404s in reference section, mainly bad NSA links. - minor formatting changes. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-10 - Fixed missing firewall setup screenshot. * Wed Jan 27 2009 Eric Christensen sparks at fedoraproject.org 1.0-9 - Repaired items found to be incorrect during validation. Many Red Hat references have been changed to Fedora references. --- NEW FILE import.log --- fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247542430 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 03:42:03 -0000 1.1 +++ .cvsignore 14 Jul 2009 03:34:42 -0000 1.2 @@ -0,0 +1 @@ +fedora-security-guide-en-US-1.0.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 10 Jul 2009 03:42:03 -0000 1.1 +++ sources 14 Jul 2009 03:34:42 -0000 1.2 @@ -0,0 +1 @@ +87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz From mclasen at fedoraproject.org Tue Jul 14 03:36:37 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:36:37 +0000 (UTC) Subject: rpms/gnome-keyring/devel .cvsignore, 1.61, 1.62 gnome-keyring.spec, 1.124, 1.125 sources, 1.61, 1.62 Message-ID: <20090714033637.26BAB11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25274 Modified Files: .cvsignore gnome-keyring.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 13 Apr 2009 03:20:53 -0000 1.61 +++ .cvsignore 14 Jul 2009 03:36:06 -0000 1.62 @@ -1 +1 @@ -gnome-keyring-2.26.1.tar.bz2 +gnome-keyring-2.27.4.tar.bz2 Index: gnome-keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/gnome-keyring.spec,v retrieving revision 1.124 retrieving revision 1.125 diff -u -p -r1.124 -r1.125 --- gnome-keyring.spec 2 Jul 2009 16:12:38 -0000 1.124 +++ gnome-keyring.spec 14 Jul 2009 03:36:06 -0000 1.125 @@ -7,11 +7,11 @@ Summary: Framework for managing passwords and other secrets Name: gnome-keyring -Version: 2.26.1 -Release: 2%{?dist} +Version: 2.27.4 +Release: 1%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries -Source: http://download.gnome.org/sources/gnome-keyring/2.26/gnome-keyring-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/gnome-keyring/2.27/gnome-keyring-%{version}.tar.bz2 URL: http://www.gnome.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -142,6 +142,9 @@ fi %changelog +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Thu Jul 2 2009 Matthias Clasen - 2.26.1-2 - Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/sources,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sources 13 Apr 2009 03:20:53 -0000 1.61 +++ sources 14 Jul 2009 03:36:06 -0000 1.62 @@ -1 +1 @@ -060b349a0aae130fdd3cd0a9827258c6 gnome-keyring-2.26.1.tar.bz2 +04a94e96f75805e47a6b90a938a7862e gnome-keyring-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 03:39:52 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:39:52 +0000 (UTC) Subject: rpms/cheese/devel .cvsignore, 1.30, 1.31 cheese.spec, 1.54, 1.55 sources, 1.30, 1.31 Message-ID: <20090714033952.18B1F11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/cheese/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26193 Modified Files: .cvsignore cheese.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/.cvsignore,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- .cvsignore 16 Jun 2009 05:35:15 -0000 1.30 +++ .cvsignore 14 Jul 2009 03:39:51 -0000 1.31 @@ -1 +1 @@ -cheese-2.27.3.tar.bz2 +cheese-2.27.4.tar.bz2 Index: cheese.spec =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/cheese.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- cheese.spec 16 Jun 2009 05:35:15 -0000 1.54 +++ cheese.spec 14 Jul 2009 03:39:51 -0000 1.55 @@ -1,5 +1,5 @@ Name: cheese -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} Summary: Application for taking pictures and movies from a webcam @@ -9,7 +9,7 @@ URL: http://projects.gnome.or Source0: http://download.gnome.org/sources/cheese/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gtk2-devel >= 2.10.0 +BuildRequires: gtk2-devel >= 2.17.3 BuildRequires: libglade2-devel >= 2.6.0 BuildRequires: dbus-devel BuildRequires: dbus-glib-devel @@ -123,6 +123,9 @@ fi %{_datadir}/dbus-1/services/org.gnome.Cheese.service %changelog +* Mon Jul 13 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/sources,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sources 16 Jun 2009 05:35:15 -0000 1.30 +++ sources 14 Jul 2009 03:39:51 -0000 1.31 @@ -1 +1 @@ -ede494f60f1c480ec2ebd716d53ce87b cheese-2.27.3.tar.bz2 +f6062cced52a8ace0ed60c172fdc39d3 cheese-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 03:48:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 03:48:32 +0000 (UTC) Subject: rpms/gnome-themes/devel .cvsignore, 1.79, 1.80 gnome-themes.spec, 1.141, 1.142 sources, 1.84, 1.85 Message-ID: <20090714034832.4F41111C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28763 Modified Files: .cvsignore gnome-themes.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/devel/.cvsignore,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- .cvsignore 16 Jun 2009 05:00:15 -0000 1.79 +++ .cvsignore 14 Jul 2009 03:48:01 -0000 1.80 @@ -1 +1 @@ -gnome-themes-2.27.3.tar.bz2 +gnome-themes-2.27.4.tar.bz2 Index: gnome-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/devel/gnome-themes.spec,v retrieving revision 1.141 retrieving revision 1.142 diff -u -p -r1.141 -r1.142 --- gnome-themes.spec 16 Jun 2009 05:00:15 -0000 1.141 +++ gnome-themes.spec 14 Jul 2009 03:48:02 -0000 1.142 @@ -1,6 +1,6 @@ Summary: Themes for GNOME Name: gnome-themes -Version: 2.27.3 +Version: 2.27.4 Release:1%{?dist} URL: http://download.gnome.org/sources/gnome-themes/ Source: http://download.gnome.org/sources/gnome-themes/2.27/%{name}-%{version}.tar.bz2 @@ -100,6 +100,9 @@ done %doc AUTHORS COPYING NEWS README %changelog +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/devel/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 16 Jun 2009 05:00:15 -0000 1.84 +++ sources 14 Jul 2009 03:48:02 -0000 1.85 @@ -1 +1 @@ -c30820db995f38746d167a874db86c84 gnome-themes-2.27.3.tar.bz2 +05b17f77d7c9837260637e59148574d0 gnome-themes-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 04:01:53 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:01:53 +0000 (UTC) Subject: rpms/gnome-themes/devel gnome-themes.spec, 1.142, 1.143 duplicate-icons.patch, 1.1, NONE Message-ID: <20090714040153.5A47211C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30679 Modified Files: gnome-themes.spec Removed Files: duplicate-icons.patch Log Message: 2.27.4 Index: gnome-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/devel/gnome-themes.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- gnome-themes.spec 14 Jul 2009 03:48:02 -0000 1.142 +++ gnome-themes.spec 14 Jul 2009 04:01:23 -0000 1.143 @@ -8,8 +8,6 @@ License: LGPLv2 and GPLv2 Group: User Interface/Desktops BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# http://bugzilla.gnome.org/show_bug.cgi?id=584403 -Patch0: duplicate-icons.patch Requires: gtk2-engines >= 2.15.3 Requires: gnome-icon-theme @@ -32,7 +30,6 @@ borders, cursors, etc. %prep %setup -q -%patch0 -p1 -b .duplicate-icons find . -exec touch \{\} \; autoreconf -f -i --- duplicate-icons.patch DELETED --- From mclasen at fedoraproject.org Tue Jul 14 04:07:00 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:07:00 +0000 (UTC) Subject: rpms/nautilus/devel .cvsignore, 1.97, 1.98 nautilus.spec, 1.275, 1.276 sources, 1.102, 1.103 Message-ID: <20090714040700.8EF1D11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/nautilus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17212 Modified Files: .cvsignore nautilus.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus/devel/.cvsignore,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- .cvsignore 15 Jun 2009 09:33:02 -0000 1.97 +++ .cvsignore 14 Jul 2009 04:06:30 -0000 1.98 @@ -1 +1 @@ -nautilus-2.27.2.tar.bz2 +nautilus-2.27.4.tar.bz2 Index: nautilus.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus/devel/nautilus.spec,v retrieving revision 1.275 retrieving revision 1.276 diff -u -p -r1.275 -r1.276 --- nautilus.spec 15 Jun 2009 09:33:02 -0000 1.275 +++ nautilus.spec 14 Jul 2009 04:06:30 -0000 1.276 @@ -1,6 +1,6 @@ -%define glib2_version 2.19.2 +%define glib2_version 2.21.3 %define pango_version 1.1.3 -%define gtk2_version 2.13.0 +%define gtk2_version 2.16.0 %define gnome_icon_theme_version 1.1.5 %define libxml2_version 2.4.20 %define desktop_backgrounds_version 2.0-4 @@ -15,11 +15,11 @@ Name: nautilus Summary: File manager for GNOME -Version: 2.27.2 +Version: 2.27.4 Release: 1%{?dist} License: GPLv2+ Group: User Interface/Desktops -Source: http://download.gnome.org/sources/%{name}/2.26/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 URL: http://projects.gnome.org/nautilus/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -263,6 +263,9 @@ fi %changelog +* Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Mon Jun 15 2009 Tomas Bzatek - 2.27.2-1 - Update to 2.27.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus/devel/sources,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- sources 15 Jun 2009 09:33:03 -0000 1.102 +++ sources 14 Jul 2009 04:06:30 -0000 1.103 @@ -1 +1 @@ -0cd5c1f6ecd9ce52affb9144c18dff5e nautilus-2.27.2.tar.bz2 +17fefc8d3f65cd5349213cd70c25c44f nautilus-2.27.4.tar.bz2 From wart at fedoraproject.org Tue Jul 14 04:08:42 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Tue, 14 Jul 2009 04:08:42 +0000 (UTC) Subject: rpms/spr/devel SPR-3.3.2-stdio.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 spr.spec, 1.9, 1.10 spr-07.08.00-cflags.patch, 1.1, NONE Message-ID: <20090714040842.EB44C11C0095@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20846 Modified Files: .cvsignore sources spr.spec Added Files: SPR-3.3.2-stdio.patch Removed Files: spr-07.08.00-cflags.patch Log Message: Update to latest release SPR-3.3.2-stdio.patch: --- NEW FILE SPR-3.3.2-stdio.patch --- --- SPR-3.3.2/src/SprAddColumnsForMCLApp.cc.orig 2009-07-13 16:50:41.000000000 -0700 +++ SPR-3.3.2/src/SprAddColumnsForMCLApp.cc 2009-07-13 16:50:47.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprMultiClassReader.hh" #include "StatPatternRecognition/SprTrainedMultiClassLearner.hh" +#include #include #include #include --- SPR-3.3.2/src/SprIndicatorMatrixApp.cc.orig 2009-07-13 17:07:12.000000000 -0700 +++ SPR-3.3.2/src/SprIndicatorMatrixApp.cc 2009-07-13 17:07:20.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprIndicatorMatrix.hh" #include "StatPatternRecognition/SprConfig.hh" +#include #include #include #include Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spr/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 18 Mar 2008 17:29:15 -0000 1.7 +++ .cvsignore 14 Jul 2009 04:08:42 -0000 1.8 @@ -1 +1 @@ -SPR-07-15-00.tar.gz +SPR-3.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spr/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 18 Mar 2008 17:29:15 -0000 1.7 +++ sources 14 Jul 2009 04:08:42 -0000 1.8 @@ -1 +1 @@ -43ac6925212235f506287b5601634b42 SPR-07-15-00.tar.gz +79afa6a1a42ec1d169f5bcba0acedfe7 SPR-3.3.2.tar.gz Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/devel/spr.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- spr.spec 28 Feb 2009 13:17:59 -0000 1.9 +++ spr.spec 14 Jul 2009 04:08:42 -0000 1.10 @@ -1,14 +1,14 @@ Name: spr -Version: 07.15.00 -Release: 3%{?dist} +Version: 3.3.2 +Release: 1%{?dist} Summary: Library for categorization of data Group: Development/Libraries License: GPL+ URL: http://www.hep.caltech.edu/~narsky/spr.html -Patch0: spr-07.08.00-cflags.patch -Patch1: spr-07.08.00-getopt_ret.patch -Source0: http://downloads.sourceforge.net/statpatrec/SPR-07-15-00.tar.gz +Patch0: spr-07.08.00-getopt_ret.patch +Patch1: SPR-3.3.2-stdio.patch +Source0: http://downloads.sourceforge.net/statpatrec/SPR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libstdc++-devel @@ -25,16 +25,17 @@ Requires: %{name} = %{version}-%{release %{summary}. %prep -%setup -q -n StatPatternRecognition -touch -r configure.ac configure.ac.stamp +%setup -q -n SPR-%{version} %patch0 -p1 %patch1 -p1 -touch -r configure.ac.stamp configure.ac %build -%configure --without-root --disable-static --datadir=%{_datadir}/%{name} \ - --includedir=%{_includedir}/%{name} +%configure --without-root --disable-static --disable-rpath \ + --datadir=%{_datadir}/%{name} --includedir=%{_includedir}/%{name} +# Get rid of rpath turds +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Remove this gcc34-ism. Upstream is aware of this and needs time to # find a fix. @@ -42,7 +43,7 @@ sed -i -e 's/ -lg2c//' src/Makefile # Parallel builds currently not supported. Upstream is aware of this # and needs time to find a fix. -make +make %{?smp_mflags} %install @@ -62,20 +63,23 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README +%doc AUTHORS COPYING TODO README ChangeLog %{_bindir}/* %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README src/example*.cc +%doc AUTHORS COPYING TODO README ChangeLog src/example*.cc %{_includedir}/%{name} %{_libdir}/*.so %changelog +* Mon Jul 13 2009 Wart - 3.3.2-1 +- Update to latest release + * Sat Feb 28 2009 Caol??n McNamara - 07.15.00-3 - comparing getopt ret to EOF requires stdio.h, or use just -1 (man 3p getopt) --- spr-07.08.00-cflags.patch DELETED --- From mclasen at fedoraproject.org Tue Jul 14 04:09:21 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:09:21 +0000 (UTC) Subject: rpms/orca/devel .cvsignore, 1.53, 1.54 orca.spec, 1.87, 1.88 sources, 1.54, 1.55 Message-ID: <20090714040921.8995D11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/orca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21066 Modified Files: .cvsignore orca.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/.cvsignore,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- .cvsignore 16 Jun 2009 05:21:24 -0000 1.53 +++ .cvsignore 14 Jul 2009 04:09:21 -0000 1.54 @@ -1 +1 @@ -orca-2.27.3.tar.bz2 +orca-2.27.4.tar.bz2 Index: orca.spec =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/orca.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- orca.spec 18 Jun 2009 05:19:46 -0000 1.87 +++ orca.spec 14 Jul 2009 04:09:21 -0000 1.88 @@ -17,8 +17,8 @@ %define control_center_version 2.16.0-5 Name: orca -Version: 2.27.3 -Release: 2%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Summary: Assistive technology for people with visual impairments Group: User Interface/Desktops @@ -106,6 +106,9 @@ fi %changelog +* Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Thu Jun 18 2009 Matthias Clasen - 2.27.3-2 - We don't have debuginfo Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 16 Jun 2009 05:21:24 -0000 1.54 +++ sources 14 Jul 2009 04:09:21 -0000 1.55 @@ -1 +1 @@ -27e4eae136cd56254b0e4c522f939802 orca-2.27.3.tar.bz2 +291447d37309306b9fa5725e952e5eaf orca-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 04:12:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:12:32 +0000 (UTC) Subject: rpms/gok/devel .cvsignore, 1.40, 1.41 gok.spec, 1.81, 1.82 sources, 1.40, 1.41 Message-ID: <20090714041232.7ED8E11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22260 Modified Files: .cvsignore gok.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 16 Jun 2009 05:05:56 -0000 1.40 +++ .cvsignore 14 Jul 2009 04:12:02 -0000 1.41 @@ -1 +1 @@ -gok-2.27.3.tar.bz2 +gok-2.27.4.tar.bz2 Index: gok.spec =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/gok.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- gok.spec 16 Jun 2009 05:05:56 -0000 1.81 +++ gok.spec 14 Jul 2009 04:12:02 -0000 1.82 @@ -2,7 +2,7 @@ Summary: GNOME Onscreen Keyboard Name: gok -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} License: LGPLv2+ Group: User Interface/Desktops @@ -150,6 +150,9 @@ scrollkeeper-update -q %{_datadir}/gtk-doc/html/gok %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 16 Jun 2009 05:05:56 -0000 1.40 +++ sources 14 Jul 2009 04:12:02 -0000 1.41 @@ -1 +1 @@ -7ccc2048a01b0a5c0684ccc687a365f3 gok-2.27.3.tar.bz2 +c8eebe2bb5d58f8cb08194f5f2aee8fd gok-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 04:14:03 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:14:03 +0000 (UTC) Subject: rpms/mousetweaks/devel .cvsignore, 1.23, 1.24 mousetweaks.spec, 1.29, 1.30 sources, 1.23, 1.24 Message-ID: <20090714041403.5356411C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/mousetweaks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23025 Modified Files: .cvsignore mousetweaks.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 15 Jun 2009 03:28:05 -0000 1.23 +++ .cvsignore 14 Jul 2009 04:14:02 -0000 1.24 @@ -1 +1 @@ -mousetweaks-2.27.3.tar.bz2 +mousetweaks-2.27.4.tar.bz2 Index: mousetweaks.spec =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/mousetweaks.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mousetweaks.spec 15 Jun 2009 03:28:05 -0000 1.29 +++ mousetweaks.spec 14 Jul 2009 04:14:03 -0000 1.30 @@ -1,5 +1,5 @@ Name: mousetweaks -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} Summary: Mouse accessibility support for the GNOME desktop Group: User Interface/Desktops @@ -108,6 +108,9 @@ fi %doc %{_mandir}/man1/* %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Sun Jun 14 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 15 Jun 2009 03:28:05 -0000 1.23 +++ sources 14 Jul 2009 04:14:03 -0000 1.24 @@ -1 +1 @@ -877918a33bfc5f360d4a3df458cc5f81 mousetweaks-2.27.3.tar.bz2 +1af4064568d9fc7aeed78cf232f81dd6 mousetweaks-2.27.4.tar.bz2 From lutter at fedoraproject.org Tue Jul 14 04:17:33 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Tue, 14 Jul 2009 04:17:33 +0000 (UTC) Subject: rpms/netcf/devel import.log, NONE, 1.1 netcf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714041734.0319B11C0095@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/netcf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23884/devel Modified Files: .cvsignore sources Added Files: import.log netcf.spec Log Message: Initial import --- NEW FILE import.log --- netcf-0_1_0-1_fc10:HEAD:netcf-0.1.0-1.fc10.src.rpm:1247544997 --- NEW FILE netcf.spec --- Name: netcf Version: 0.1.0 Release: 1%{?dist}%{?extra_release} Summary: Cross-platform network configuration library Group: System Environment/Libraries License: LGPLv2+ URL: https://fedorahosted.org/netcf/ Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel augeas-devel >= 0.5.2 BuildRequires: libxml2-devel libxslt-devel Requires: %{name}-libs = %{version}-%{release} %description A library for modifying the network configuration of a system. Network configurations are expresed in a platform-independent XML format, which netcf translates into changes to the system's 'native' network configuration files. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package libs Summary: Libraries for %{name} Group: System Environment/Libraries %description libs The libraries for %{name}. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %{_bindir}/ncftool %files libs %defattr(-,root,root,-) %{_datadir}/netcf %{_libdir}/*.so.* %doc AUTHORS COPYING NEWS %files devel %defattr(-,root,root,-) %doc %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/netcf.pc %changelog * Mon Jul 13 2009 David Lutterkort - 0.1.0-1 - BR on augeas-0.5.2 - Drop explicit requires for augeas-libs * Wed Apr 15 2009 David Lutterkort - 0.0.2-1 - Updates acording to Fedora review * Fri Feb 27 2009 David Lutterkort - 0.0.1-1 - Initial specfile Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netcf/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Apr 2009 21:32:04 -0000 1.1 +++ .cvsignore 14 Jul 2009 04:17:03 -0000 1.2 @@ -0,0 +1 @@ +netcf-0.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netcf/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Apr 2009 21:32:04 -0000 1.1 +++ sources 14 Jul 2009 04:17:03 -0000 1.2 @@ -0,0 +1 @@ +6172c399b47a5311ff8d70fd2efd1823 netcf-0.1.0.tar.gz From mclasen at fedoraproject.org Tue Jul 14 04:24:31 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:24:31 +0000 (UTC) Subject: rpms/gnome-games/devel .cvsignore, 1.100, 1.101 gnome-games.spec, 1.213, 1.214 sources, 1.105, 1.106 Message-ID: <20090714042431.C02BA11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25494 Modified Files: .cvsignore gnome-games.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/.cvsignore,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- .cvsignore 20 Jun 2009 20:39:48 -0000 1.100 +++ .cvsignore 14 Jul 2009 04:24:01 -0000 1.101 @@ -1 +1 @@ -gnome-games-2.27.3.tar.bz2 +gnome-games-2.27.4.tar.bz2 Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.213 retrieving revision 1.214 diff -u -p -r1.213 -r1.214 --- gnome-games.spec 20 Jun 2009 20:39:48 -0000 1.213 +++ gnome-games.spec 14 Jul 2009 04:24:01 -0000 1.214 @@ -43,7 +43,7 @@ Summary: Games for the GNOME desktop Name: gnome-games -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL @@ -357,6 +357,9 @@ fi %{_datadir}/omf/* %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Sat Jun 20 2009 Bastien Nocera 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/sources,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- sources 20 Jun 2009 20:39:48 -0000 1.105 +++ sources 14 Jul 2009 04:24:01 -0000 1.106 @@ -1 +1 @@ -18d59076dad3823ce9cc008e48f8dda4 gnome-games-2.27.3.tar.bz2 +36888f5825fbee4d0c8ffda3dcc82b5c gnome-games-2.27.4.tar.bz2 From seanf at fedoraproject.org Tue Jul 14 04:26:38 2009 From: seanf at fedoraproject.org (Sean Flanigan) Date: Tue, 14 Jul 2009 04:26:38 +0000 (UTC) Subject: rpms/eclipse-nls/F-11 eclipse-nls.spec,1.6,1.7 Message-ID: <20090714042638.2EEBF11C0095@cvs1.fedora.phx.redhat.com> Author: seanf Update of /cvs/pkgs/rpms/eclipse-nls/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26125 Modified Files: eclipse-nls.spec Log Message: - Fixed % files Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-11/eclipse-nls.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- eclipse-nls.spec 14 Jul 2009 03:22:22 -0000 1.6 +++ eclipse-nls.spec 14 Jul 2009 04:26:07 -0000 1.7 @@ -10,7 +10,7 @@ License: EPL URL: http://babel.eclipse.org/ Version: 3.4.0.v20090620043401 -Release: 1%{?dist} +Release: 2%{?dist} ## The source for this package is taken from the Babel project's update site. ## http://download.eclipse.org/technology/babel/babel_language_packs/.php *.zip ## Use the following commands to download the langpack zips and generate the tarball: @@ -35,7 +35,7 @@ Eclipse-related packages. %dir %{eclipse_data}/dropins/babel/eclipse #%{eclipse_data}/dropins/babel/eclipse/artifacts.jar #%{eclipse_data}/dropins/babel/eclipse/content.jar -%dir %{eclipse_data}/dropins/babel/eclipse/features +#% dir %{eclipse_data}/dropins/babel/eclipse/features %dir %{eclipse_data}/dropins/babel/eclipse/plugins @@ -60,7 +60,7 @@ have a translation for a given string. \ \ %files %1 \ %defattr(-,root,root,-) \ -%{eclipse_data}/dropins/babel/eclipse/features/org.eclipse.babel.nls_*_%{2}_%{version} \ +#% {eclipse_data}/dropins/babel/eclipse/features/org.eclipse.babel.nls_*_%{2}_%{version} \ %{eclipse_data}/dropins/babel/eclipse/plugins/*.nl_%{2}_%{version}.jar @@ -139,6 +139,9 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Sean Flanigan - 3.4.0.v20090620043401-2 +- Fixed % files + * Mon Jul 13 2009 Sean Flanigan - 3.4.0.v20090620043401-1 - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads From mclasen at fedoraproject.org Tue Jul 14 04:27:52 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:27:52 +0000 (UTC) Subject: rpms/gnome-system-monitor/devel .cvsignore, 1.79, 1.80 gnome-system-monitor.spec, 1.144, 1.145 sources, 1.79, 1.80 Message-ID: <20090714042752.B43FB11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-system-monitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26450 Modified Files: .cvsignore gnome-system-monitor.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/.cvsignore,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- .cvsignore 1 Jul 2009 14:48:41 -0000 1.79 +++ .cvsignore 14 Jul 2009 04:27:22 -0000 1.80 @@ -1 +1 @@ -gnome-system-monitor-2.27.3.tar.bz2 +gnome-system-monitor-2.27.4.tar.bz2 Index: gnome-system-monitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/gnome-system-monitor.spec,v retrieving revision 1.144 retrieving revision 1.145 diff -u -p -r1.144 -r1.145 --- gnome-system-monitor.spec 1 Jul 2009 14:48:41 -0000 1.144 +++ gnome-system-monitor.spec 14 Jul 2009 04:27:22 -0000 1.145 @@ -11,12 +11,12 @@ Summary: Process and resource monitor Name: gnome-system-monitor -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.gnome.org/ -Source: http://download.gnome.org/sources/gnome-system-monitor/2.26/%{name}-%{version}.tar.bz2 +Source: http://download.gnome.org/sources/gnome-system-monitor/2.27/%{name}-%{version}.tar.bz2 Source1: about-this-computer.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: GConf2-devel @@ -147,6 +147,9 @@ scrollkeeper-update -q %changelog +* Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Wed Jul 1 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/sources,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- sources 1 Jul 2009 14:48:41 -0000 1.79 +++ sources 14 Jul 2009 04:27:22 -0000 1.80 @@ -1 +1 @@ -2d1689f88483b5d53e27a578cd73ade9 gnome-system-monitor-2.27.3.tar.bz2 +c7bbae45719f8b1a167c0c0763ffe68a gnome-system-monitor-2.27.4.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 14 04:28:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:28:05 +0000 Subject: [pkgdb] pathfinder was added for icon Message-ID: <20090714042805.DCBAC10F862@bastion2.fedora.phx.redhat.com> kevin has added Package pathfinder with summary X.509 Path Discovery and Validation kevin has approved Package pathfinder kevin has added a Fedora devel branch for pathfinder with an owner of icon kevin has approved pathfinder in Fedora devel kevin has approved Package pathfinder kevin has set commit to Approved for 107427 on pathfinder (Fedora devel) kevin has set checkout to Approved for 107427 on pathfinder (Fedora devel) kevin has set build to Approved for 107427 on pathfinder (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pathfinder From kevin at fedoraproject.org Tue Jul 14 04:28:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:28:15 +0000 (UTC) Subject: rpms/pathfinder - New directory Message-ID: <20090714042815.1603211C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pathfinder In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsY26703/rpms/pathfinder Log Message: Directory /cvs/pkgs/rpms/pathfinder added to the repository From kevin at fedoraproject.org Tue Jul 14 04:28:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:28:15 +0000 (UTC) Subject: rpms/pathfinder/devel - New directory Message-ID: <20090714042815.37A7711C02C4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pathfinder/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsY26703/rpms/pathfinder/devel Log Message: Directory /cvs/pkgs/rpms/pathfinder/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 14 04:28:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:28:07 +0000 Subject: [pkgdb] pathfinder summary updated by kevin Message-ID: <20090714042807.9109C10F89A@bastion2.fedora.phx.redhat.com> kevin set package pathfinder summary to X.509 Path Discovery and Validation To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pathfinder From kevin at fedoraproject.org Tue Jul 14 04:28:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:28:20 +0000 (UTC) Subject: rpms/pathfinder Makefile,NONE,1.1 Message-ID: <20090714042820.D1CED11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pathfinder In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsY26703/rpms/pathfinder Added Files: Makefile Log Message: Setup of module pathfinder --- NEW FILE Makefile --- # Top level Makefile for module pathfinder all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:28:21 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:28:21 +0000 (UTC) Subject: rpms/pathfinder/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714042821.2273C11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pathfinder/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsY26703/rpms/pathfinder/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pathfinder --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pathfinder # $Id: Makefile,v 1.1 2009/07/14 04:28:20 kevin Exp $ NAME := pathfinder SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mclasen at fedoraproject.org Tue Jul 14 04:30:11 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:30:11 +0000 (UTC) Subject: rpms/gnome-media/devel .cvsignore, 1.54, 1.55 gnome-media.spec, 1.171, 1.172 sources, 1.53, 1.54 Message-ID: <20090714043011.B993411C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27079 Modified Files: .cvsignore gnome-media.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 1 Jul 2009 09:10:58 -0000 1.54 +++ .cvsignore 14 Jul 2009 04:29:41 -0000 1.55 @@ -1 +1 @@ -gnome-media-2.27.3.1.tar.bz2 +gnome-media-2.27.4.tar.bz2 Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.171 retrieving revision 1.172 diff -u -p -r1.171 -r1.172 --- gnome-media.spec 1 Jul 2009 09:10:58 -0000 1.171 +++ gnome-media.spec 14 Jul 2009 04:29:41 -0000 1.172 @@ -13,7 +13,7 @@ Summary: GNOME media programs Name: gnome-media -Version: 2.27.3.1 +Version: 2.27.4 Release: 1%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia @@ -44,6 +44,7 @@ BuildRequires: libcanberra-devel BuildRequires: pulseaudio-libs-devel BuildRequires: gnome-doc-utils BuildRequires: intltool +BuildRequires: automake autoconf libtool BuildRequires: unique-devel %description @@ -75,6 +76,11 @@ in GNOME media applications. %prep %setup -q +# force regeneration +rm profiles/gnome-audio-profiles.schemas + +autoreconf -i -f + %build # try to work around a problem where gst-inspect does # not find playbin the first time around @@ -247,6 +253,12 @@ scrollkeeper-update -q || : %{_libdir}/pkgconfig/* %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + +* Thu Jul 2 2009 Matthias Clasen 2.27.3.1-2 +- Shrink GConf schemas + * Wed Jul 01 2009 Bastien Nocera 2.27.3.1-1 - Update to 2.27.3.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/sources,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- sources 1 Jul 2009 09:10:58 -0000 1.53 +++ sources 14 Jul 2009 04:29:41 -0000 1.54 @@ -1 +1 @@ -426bb62bf75898a95458ce8438c35e83 gnome-media-2.27.3.1.tar.bz2 +a075d1ffe8af9665fdd3a41aa4e6befb gnome-media-2.27.4.tar.bz2 From seanf at fedoraproject.org Tue Jul 14 04:31:40 2009 From: seanf at fedoraproject.org (Sean Flanigan) Date: Tue, 14 Jul 2009 04:31:40 +0000 (UTC) Subject: rpms/eclipse-nls/F-10 eclipse-nls.spec,1.4,1.5 Message-ID: <20090714043140.3909311C0095@cvs1.fedora.phx.redhat.com> Author: seanf Update of /cvs/pkgs/rpms/eclipse-nls/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27624 Modified Files: eclipse-nls.spec Log Message: - Fixed % files Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/F-10/eclipse-nls.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-nls.spec 14 Jul 2009 03:21:45 -0000 1.4 +++ eclipse-nls.spec 14 Jul 2009 04:31:10 -0000 1.5 @@ -10,7 +10,7 @@ License: EPL URL: http://babel.eclipse.org/ Version: 3.4.0.v20090620043401 -Release: 1%{?dist} +Release: 2%{?dist} ## The source for this package is taken from the Babel project's update site. ## http://download.eclipse.org/technology/babel/babel_language_packs/.php *.zip ## Use the following commands to download the langpack zips and generate the tarball: @@ -19,6 +19,7 @@ Release: 1%{?dist} # sh ../fetch-babel.sh # mv BabelLanguagePack-%{version}.tar.bz2 .. && cd .. Source0: BabelLanguagePack-%{version}.tar.bz2 +Source1: fetch-babel.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -34,7 +35,7 @@ Eclipse-related packages. %dir %{eclipse_data}/dropins/babel/eclipse #%{eclipse_data}/dropins/babel/eclipse/artifacts.jar #%{eclipse_data}/dropins/babel/eclipse/content.jar -%dir %{eclipse_data}/dropins/babel/eclipse/features +#% dir %{eclipse_data}/dropins/babel/eclipse/features %dir %{eclipse_data}/dropins/babel/eclipse/plugins @@ -59,7 +60,7 @@ have a translation for a given string. \ \ %files %1 \ %defattr(-,root,root,-) \ -%{eclipse_data}/dropins/babel/eclipse/features/org.eclipse.babel.nls_*_%{2}_%{version} \ +#% {eclipse_data}/dropins/babel/eclipse/features/org.eclipse.babel.nls_*_%{2}_%{version} \ %{eclipse_data}/dropins/babel/eclipse/plugins/*.nl_%{2}_%{version}.jar @@ -138,13 +139,18 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Sean Flanigan - 3.4.0.v20090620043401-2 +- Fixed % files + * Mon Jul 13 2009 Sean Flanigan - 3.4.0.v20090620043401-1 - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads + +* Wed May 27 2009 Sean Flanigan - 3.4.0.v20090423085802-2 - Fixed names/descriptions for languages with two word names such as "Portuguese (Brazilian)". * Tue Apr 28 2009 Sean Flanigan - 3.4.0.v20090423085802-1 -- Upstream langpack have working downloads again - updated to latest version +- Upstream has working langpack downloads again - updated to latest version - Added subpackages for en_AU, et, hi and mn langpacks - Changed filenames back to newer format (as in rawhide spec) - Made base package eclipse-nls owner of babel dropins directories From pkgdb at fedoraproject.org Tue Jul 14 04:32:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:17 +0000 Subject: [pkgdb] zikula-module-MultiHook was added for sparks Message-ID: <20090714043217.B3FAC10F89A@bastion2.fedora.phx.redhat.com> kevin has added Package zikula-module-MultiHook with summary MultiHook is a simple replacement for the old AutoLinks module for Zikula kevin has approved Package zikula-module-MultiHook kevin has added a Fedora devel branch for zikula-module-MultiHook with an owner of sparks kevin has approved zikula-module-MultiHook in Fedora devel kevin has approved Package zikula-module-MultiHook kevin has set commit to Approved for 107427 on zikula-module-MultiHook (Fedora devel) kevin has set checkout to Approved for 107427 on zikula-module-MultiHook (Fedora devel) kevin has set build to Approved for 107427 on zikula-module-MultiHook (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From pkgdb at fedoraproject.org Tue Jul 14 04:32:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:20 +0000 Subject: [pkgdb] zikula-module-MultiHook summary updated by kevin Message-ID: <20090714043220.4C97610F8A6@bastion2.fedora.phx.redhat.com> kevin set package zikula-module-MultiHook summary to MultiHook is a simple replacement for the old AutoLinks module for Zikula To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From pkgdb at fedoraproject.org Tue Jul 14 04:32:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:20 +0000 Subject: [pkgdb] zikula-module-MultiHook (Fedora EPEL, 5) updated by kevin Message-ID: <20090714043220.53FB010F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for zikula-module-MultiHook kevin has set commit to Approved for 107427 on zikula-module-MultiHook (Fedora 10) kevin has set checkout to Approved for 107427 on zikula-module-MultiHook (Fedora 10) kevin has set build to Approved for 107427 on zikula-module-MultiHook (Fedora 10) kevin approved watchbugzilla on zikula-module-MultiHook (Fedora 10) for ke4qqq kevin approved watchcommits on zikula-module-MultiHook (Fedora 10) for ke4qqq kevin approved commit on zikula-module-MultiHook (Fedora 10) for ke4qqq kevin approved build on zikula-module-MultiHook (Fedora 10) for ke4qqq kevin approved approveacls on zikula-module-MultiHook (Fedora 10) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From pkgdb at fedoraproject.org Tue Jul 14 04:32:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:20 +0000 Subject: [pkgdb] zikula-module-MultiHook (Fedora EPEL, 5) updated by kevin Message-ID: <20090714043220.61C1610F8B0@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for zikula-module-MultiHook kevin has set commit to Approved for 107427 on zikula-module-MultiHook (Fedora 11) kevin has set checkout to Approved for 107427 on zikula-module-MultiHook (Fedora 11) kevin has set build to Approved for 107427 on zikula-module-MultiHook (Fedora 11) kevin approved watchbugzilla on zikula-module-MultiHook (Fedora 11) for ke4qqq kevin approved watchcommits on zikula-module-MultiHook (Fedora 11) for ke4qqq kevin approved commit on zikula-module-MultiHook (Fedora 11) for ke4qqq kevin approved build on zikula-module-MultiHook (Fedora 11) for ke4qqq kevin approved approveacls on zikula-module-MultiHook (Fedora 11) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From pkgdb at fedoraproject.org Tue Jul 14 04:32:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:20 +0000 Subject: [pkgdb] zikula-module-MultiHook (Fedora EPEL, 5) updated by kevin Message-ID: <20090714043220.72B8910F8B4@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for zikula-module-MultiHook kevin has set commit to Approved for 107427 on zikula-module-MultiHook (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on zikula-module-MultiHook (Fedora EPEL 5) kevin has set build to Approved for 107427 on zikula-module-MultiHook (Fedora EPEL 5) kevin approved watchbugzilla on zikula-module-MultiHook (Fedora EPEL 5) for ke4qqq kevin approved watchcommits on zikula-module-MultiHook (Fedora EPEL 5) for ke4qqq kevin approved commit on zikula-module-MultiHook (Fedora EPEL 5) for ke4qqq kevin approved build on zikula-module-MultiHook (Fedora EPEL 5) for ke4qqq kevin approved approveacls on zikula-module-MultiHook (Fedora EPEL 5) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From kevin at fedoraproject.org Tue Jul 14 04:32:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:32:28 +0000 (UTC) Subject: rpms/zikula-module-MultiHook - New directory Message-ID: <20090714043228.2483311C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-MultiHook In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvss27975/rpms/zikula-module-MultiHook Log Message: Directory /cvs/pkgs/rpms/zikula-module-MultiHook added to the repository From pkgdb at fedoraproject.org Tue Jul 14 04:32:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:32:20 +0000 Subject: [pkgdb] zikula-module-MultiHook (Fedora EPEL, 5) updated by kevin Message-ID: <20090714043220.8580310F8B8@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on zikula-module-MultiHook (Fedora devel) for ke4qqq kevin approved watchcommits on zikula-module-MultiHook (Fedora devel) for ke4qqq kevin approved commit on zikula-module-MultiHook (Fedora devel) for ke4qqq kevin approved build on zikula-module-MultiHook (Fedora devel) for ke4qqq kevin approved approveacls on zikula-module-MultiHook (Fedora devel) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-MultiHook From kevin at fedoraproject.org Tue Jul 14 04:32:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:32:28 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/devel - New directory Message-ID: <20090714043228.42E4A11C02C4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-MultiHook/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvss27975/rpms/zikula-module-MultiHook/devel Log Message: Directory /cvs/pkgs/rpms/zikula-module-MultiHook/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:32:34 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:32:34 +0000 (UTC) Subject: rpms/zikula-module-MultiHook Makefile,NONE,1.1 Message-ID: <20090714043234.D3EDD11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-MultiHook In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvss27975/rpms/zikula-module-MultiHook Added Files: Makefile Log Message: Setup of module zikula-module-MultiHook --- NEW FILE Makefile --- # Top level Makefile for module zikula-module-MultiHook all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:32:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:32:35 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714043235.5697111C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-MultiHook/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvss27975/rpms/zikula-module-MultiHook/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module zikula-module-MultiHook --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: zikula-module-MultiHook # $Id: Makefile,v 1.1 2009/07/14 04:32:35 kevin Exp $ NAME := zikula-module-MultiHook SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:35:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:35:32 +0000 Subject: [pkgdb] rubygem-state_machine was added for mcpierce Message-ID: <20090714043532.554C110F86B@bastion2.fedora.phx.redhat.com> kevin has added Package rubygem-state_machine with summary Adds support for creating state machines for attributes on any Ruby class kevin has approved Package rubygem-state_machine kevin has added a Fedora devel branch for rubygem-state_machine with an owner of mcpierce kevin has approved rubygem-state_machine in Fedora devel kevin has approved Package rubygem-state_machine kevin has set commit to Approved for 107427 on rubygem-state_machine (Fedora devel) kevin has set checkout to Approved for 107427 on rubygem-state_machine (Fedora devel) kevin has set build to Approved for 107427 on rubygem-state_machine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-state_machine From pkgdb at fedoraproject.org Tue Jul 14 04:35:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:35:34 +0000 Subject: [pkgdb] rubygem-state_machine summary updated by kevin Message-ID: <20090714043534.9A92010F899@bastion2.fedora.phx.redhat.com> kevin set package rubygem-state_machine summary to Adds support for creating state machines for attributes on any Ruby class To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-state_machine From pkgdb at fedoraproject.org Tue Jul 14 04:35:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:35:34 +0000 Subject: [pkgdb] rubygem-state_machine (Fedora, 10) updated by kevin Message-ID: <20090714043534.A295210F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for rubygem-state_machine kevin has set commit to Approved for 107427 on rubygem-state_machine (Fedora 10) kevin has set checkout to Approved for 107427 on rubygem-state_machine (Fedora 10) kevin has set build to Approved for 107427 on rubygem-state_machine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-state_machine From pkgdb at fedoraproject.org Tue Jul 14 04:35:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:35:34 +0000 Subject: [pkgdb] rubygem-state_machine (Fedora, 10) updated by kevin Message-ID: <20090714043534.AC2A710F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for rubygem-state_machine kevin has set commit to Approved for 107427 on rubygem-state_machine (Fedora 11) kevin has set checkout to Approved for 107427 on rubygem-state_machine (Fedora 11) kevin has set build to Approved for 107427 on rubygem-state_machine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-state_machine From kevin at fedoraproject.org Tue Jul 14 04:35:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:35:44 +0000 (UTC) Subject: rpms/rubygem-state_machine - New directory Message-ID: <20090714043544.1760211C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-state_machine In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB28886/rpms/rubygem-state_machine Log Message: Directory /cvs/pkgs/rpms/rubygem-state_machine added to the repository From kevin at fedoraproject.org Tue Jul 14 04:35:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:35:44 +0000 (UTC) Subject: rpms/rubygem-state_machine/devel - New directory Message-ID: <20090714043544.3F3BE11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-state_machine/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB28886/rpms/rubygem-state_machine/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-state_machine/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:35:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:35:50 +0000 (UTC) Subject: rpms/rubygem-state_machine Makefile,NONE,1.1 Message-ID: <20090714043550.2880511C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-state_machine In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB28886/rpms/rubygem-state_machine Added Files: Makefile Log Message: Setup of module rubygem-state_machine --- NEW FILE Makefile --- # Top level Makefile for module rubygem-state_machine all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:35:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:35:50 +0000 (UTC) Subject: rpms/rubygem-state_machine/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714043550.AE76011C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-state_machine/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB28886/rpms/rubygem-state_machine/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-state_machine --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-state_machine # $Id: Makefile,v 1.1 2009/07/14 04:35:50 kevin Exp $ NAME := rubygem-state_machine SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From rishi at fedoraproject.org Tue Jul 14 04:37:41 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 04:37:41 +0000 (UTC) Subject: rpms/anjuta/F-11 anjuta-2.26.2.2-docdir.patch, NONE, 1.1 anjuta.spec, 1.74, 1.75 Message-ID: <20090714043741.9297D11C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29444 Modified Files: anjuta.spec Added Files: anjuta-2.26.2.2-docdir.patch Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-2 - Fixed the value of PACKAGE_DOC_DIR. (GNOME Bugzilla #588506) anjuta-2.26.2.2-docdir.patch: --- NEW FILE anjuta-2.26.2.2-docdir.patch --- diff -urNp anjuta-2.26.2.2.orig/libanjuta/Makefile.in anjuta-2.26.2.2/libanjuta/Makefile.in --- anjuta-2.26.2.2.orig/libanjuta/Makefile.in 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/libanjuta/Makefile.in 2009-07-14 09:45:46.000000000 +0530 @@ -379,7 +379,7 @@ AM_CPPFLAGS = \ -DPACKAGE_PIXMAPS_DIR="\"$(datadir)/pixmaps/$(PACKAGE)\"" \ -DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \ -DPACKAGE_HELP_DIR="\"$(datadir)/gnome/help/$(PACKAGE)\"" \ - -DPACKAGE_DOC_DIR="\"$(datadir)/doc/$(PACKAGE)\"" \ + -DPACKAGE_DOC_DIR="\"$(docdir)\"" \ -DG_LOG_DOMAIN=\"libanjuta\" lib_LTLIBRARIES = libanjuta.la diff -urNp anjuta-2.26.2.2.orig/src/Makefile.in anjuta-2.26.2.2/src/Makefile.in --- anjuta-2.26.2.2.orig/src/Makefile.in 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/src/Makefile.in 2009-07-14 09:46:13.000000000 +0530 @@ -357,7 +357,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)\ -I.. -I. -DPACKAGE_BIN_DIR=\"$(bindir)\" \ -DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \ - -DPACKAGE_DOC_DIR=\"$(datadir)/doc/$(PACKAGE)\" \ + -DPACKAGE_DOC_DIR=\"$(docdir)\" \ -DPACKAGE_PIXMAPS_DIR=\"$(datadir)/pixmaps/$(PACKAGE)\" \ -DPACKAGE_PLUGIN_DIR=\"$(libdir)/$(PACKAGE)\" \ -DPACKAGE_LOCALE_DIR=\"$(datadir)/locale\" \ Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/F-11/anjuta.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- anjuta.spec 13 Jul 2009 22:15:13 -0000 1.74 +++ anjuta.spec 14 Jul 2009 04:37:11 -0000 1.75 @@ -2,12 +2,15 @@ Summary: A GNOME development IDE for C/C Name: anjuta Epoch: 1 Version: 2.26.2.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.anjuta.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/%{name}-%{version}.tar.gz +# http://bugzilla.gnome.org/588506 +Patch0: %{name}-%{version}-docdir.patch + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Obsoletes: gnome-build <= 2.24.1-1.fc10 @@ -90,6 +93,7 @@ Documentation for Anjuta DevStudio provi %prep %setup -q +%patch0 -p1 # Filter unwanted Provides. cat << \EOF > %{name}-prov @@ -324,6 +328,9 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-2 +- Fixed the value of PACKAGE_DOC_DIR. (GNOME Bugzilla #588506) + * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 - Version bump to 2.26.2.2. * Git plugin: From mclasen at fedoraproject.org Tue Jul 14 04:39:08 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 04:39:08 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.214,1.215 Message-ID: <20090714043908.3E23B11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29701 Modified Files: gnome-games.spec Log Message: fix file lists Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- gnome-games.spec 14 Jul 2009 04:24:01 -0000 1.214 +++ gnome-games.spec 14 Jul 2009 04:38:38 -0000 1.215 @@ -294,7 +294,6 @@ fi %{_datadir}/applications/* %{_datadir}/gnome-games %{_datadir}/gnome-games-common -%{_datadir}/pixmaps/* %{_datadir}/glchess %{_datadir}/gnome-sudoku %{_datadir}/icons/hicolor/*/*/* From pkgdb at fedoraproject.org Tue Jul 14 04:39:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:39:03 +0000 Subject: [pkgdb] compat-readline5 was added for mlichvar Message-ID: <20090714043903.41F5D10F86B@bastion2.fedora.phx.redhat.com> kevin has added Package compat-readline5 with summary A library for editing typed command lines kevin has approved Package compat-readline5 kevin has added a Fedora devel branch for compat-readline5 with an owner of mlichvar kevin has approved compat-readline5 in Fedora devel kevin has approved Package compat-readline5 kevin has set commit to Approved for 107427 on compat-readline5 (Fedora devel) kevin has set checkout to Approved for 107427 on compat-readline5 (Fedora devel) kevin has set build to Approved for 107427 on compat-readline5 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-readline5 From kevin at fedoraproject.org Tue Jul 14 04:39:26 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:39:26 +0000 (UTC) Subject: rpms/compat-readline5 - New directory Message-ID: <20090714043926.157DA11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-readline5 In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsa30017/rpms/compat-readline5 Log Message: Directory /cvs/pkgs/rpms/compat-readline5 added to the repository From kevin at fedoraproject.org Tue Jul 14 04:39:26 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:39:26 +0000 (UTC) Subject: rpms/compat-readline5/devel - New directory Message-ID: <20090714043926.4D13611C02C4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-readline5/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsa30017/rpms/compat-readline5/devel Log Message: Directory /cvs/pkgs/rpms/compat-readline5/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 14 04:39:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:39:04 +0000 Subject: [pkgdb] compat-readline5 summary updated by kevin Message-ID: <20090714043904.AB6F310F899@bastion2.fedora.phx.redhat.com> kevin set package compat-readline5 summary to A library for editing typed command lines To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-readline5 From kevin at fedoraproject.org Tue Jul 14 04:39:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:39:31 +0000 (UTC) Subject: rpms/compat-readline5 Makefile,NONE,1.1 Message-ID: <20090714043931.AADB211C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-readline5 In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsa30017/rpms/compat-readline5 Added Files: Makefile Log Message: Setup of module compat-readline5 --- NEW FILE Makefile --- # Top level Makefile for module compat-readline5 all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:39:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:39:31 +0000 (UTC) Subject: rpms/compat-readline5/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714043931.E9D6411C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-readline5/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsa30017/rpms/compat-readline5/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module compat-readline5 --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: compat-readline5 # $Id: Makefile,v 1.1 2009/07/14 04:39:31 kevin Exp $ NAME := compat-readline5 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:42:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:42:30 +0000 Subject: [pkgdb] perl-accessors was added for berrange Message-ID: <20090714044230.EB2B510F86B@bastion2.fedora.phx.redhat.com> kevin has added Package perl-accessors with summary Create accessor methods in caller's package kevin has approved Package perl-accessors kevin has added a Fedora devel branch for perl-accessors with an owner of berrange kevin has approved perl-accessors in Fedora devel kevin has approved Package perl-accessors kevin has set commit to Approved for 107427 on perl-accessors (Fedora devel) kevin has set checkout to Approved for 107427 on perl-accessors (Fedora devel) kevin has set build to Approved for 107427 on perl-accessors (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-accessors From pkgdb at fedoraproject.org Tue Jul 14 04:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:42:32 +0000 Subject: [pkgdb] perl-accessors summary updated by kevin Message-ID: <20090714044232.6F30610F899@bastion2.fedora.phx.redhat.com> kevin set package perl-accessors summary to Create accessor methods in caller's package To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-accessors From pkgdb at fedoraproject.org Tue Jul 14 04:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:42:32 +0000 Subject: [pkgdb] perl-accessors (Fedora, 11) updated by kevin Message-ID: <20090714044232.749AC10F89F@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-accessors (Fedora devel) for perl-sig kevin approved watchcommits on perl-accessors (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-accessors From pkgdb at fedoraproject.org Tue Jul 14 04:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:42:32 +0000 Subject: [pkgdb] perl-accessors (Fedora, 11) updated by kevin Message-ID: <20090714044232.7E19510F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-accessors kevin has set commit to Approved for 107427 on perl-accessors (Fedora 11) kevin has set checkout to Approved for 107427 on perl-accessors (Fedora 11) kevin has set build to Approved for 107427 on perl-accessors (Fedora 11) kevin approved watchbugzilla on perl-accessors (Fedora 11) for perl-sig kevin approved watchcommits on perl-accessors (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-accessors From kevin at fedoraproject.org Tue Jul 14 04:42:41 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:42:41 +0000 (UTC) Subject: rpms/perl-accessors/devel - New directory Message-ID: <20090714044241.464C611C0497@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-accessors/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsi31380/rpms/perl-accessors/devel Log Message: Directory /cvs/pkgs/rpms/perl-accessors/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:42:41 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:42:41 +0000 (UTC) Subject: rpms/perl-accessors - New directory Message-ID: <20090714044241.23B5611C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-accessors In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsi31380/rpms/perl-accessors Log Message: Directory /cvs/pkgs/rpms/perl-accessors added to the repository From kevin at fedoraproject.org Tue Jul 14 04:42:47 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:42:47 +0000 (UTC) Subject: rpms/perl-accessors Makefile,NONE,1.1 Message-ID: <20090714044247.82ED211C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-accessors In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsi31380/rpms/perl-accessors Added Files: Makefile Log Message: Setup of module perl-accessors --- NEW FILE Makefile --- # Top level Makefile for module perl-accessors all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:42:47 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:42:47 +0000 (UTC) Subject: rpms/perl-accessors/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714044247.D719911C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-accessors/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsi31380/rpms/perl-accessors/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-accessors --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-accessors # $Id: Makefile,v 1.1 2009/07/14 04:42:47 kevin Exp $ NAME := perl-accessors SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:44:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:44:01 +0000 Subject: [pkgdb] gnujump was added for bonii Message-ID: <20090714044401.CA6D910F86B@bastion2.fedora.phx.redhat.com> kevin has added Package gnujump with summary A jumping game which is a clone of xjump kevin has approved Package gnujump kevin has added a Fedora devel branch for gnujump with an owner of bonii kevin has approved gnujump in Fedora devel kevin has approved Package gnujump kevin has set commit to Approved for 107427 on gnujump (Fedora devel) kevin has set checkout to Approved for 107427 on gnujump (Fedora devel) kevin has set build to Approved for 107427 on gnujump (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnujump From pkgdb at fedoraproject.org Tue Jul 14 04:44:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:44:03 +0000 Subject: [pkgdb] gnujump summary updated by kevin Message-ID: <20090714044403.76FCD10F899@bastion2.fedora.phx.redhat.com> kevin set package gnujump summary to A jumping game which is a clone of xjump To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnujump From pkgdb at fedoraproject.org Tue Jul 14 04:44:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:44:03 +0000 Subject: [pkgdb] gnujump (Fedora, 10) updated by kevin Message-ID: <20090714044403.800E310F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for gnujump kevin has set commit to Approved for 107427 on gnujump (Fedora 10) kevin has set checkout to Approved for 107427 on gnujump (Fedora 10) kevin has set build to Approved for 107427 on gnujump (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnujump From kevin at fedoraproject.org Tue Jul 14 04:44:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:44:10 +0000 (UTC) Subject: rpms/gnujump - New directory Message-ID: <20090714044410.26F4111C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnujump In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO32019/rpms/gnujump Log Message: Directory /cvs/pkgs/rpms/gnujump added to the repository From kevin at fedoraproject.org Tue Jul 14 04:44:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:44:10 +0000 (UTC) Subject: rpms/gnujump/devel - New directory Message-ID: <20090714044410.6656A11C049C@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnujump/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO32019/rpms/gnujump/devel Log Message: Directory /cvs/pkgs/rpms/gnujump/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:44:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:44:16 +0000 (UTC) Subject: rpms/gnujump Makefile,NONE,1.1 Message-ID: <20090714044416.BC20B11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnujump In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO32019/rpms/gnujump Added Files: Makefile Log Message: Setup of module gnujump --- NEW FILE Makefile --- # Top level Makefile for module gnujump all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:44:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:44:16 +0000 (UTC) Subject: rpms/gnujump/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714044416.F24F511C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnujump/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO32019/rpms/gnujump/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module gnujump --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: gnujump # $Id: Makefile,v 1.1 2009/07/14 04:44:16 kevin Exp $ NAME := gnujump SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:44:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:44:03 +0000 Subject: [pkgdb] gnujump (Fedora, 10) updated by kevin Message-ID: <20090714044403.88D8210F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for gnujump kevin has set commit to Approved for 107427 on gnujump (Fedora 11) kevin has set checkout to Approved for 107427 on gnujump (Fedora 11) kevin has set build to Approved for 107427 on gnujump (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnujump From pkgdb at fedoraproject.org Tue Jul 14 04:45:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:45:00 +0000 Subject: [pkgdb] javanotes was added for lonetwin Message-ID: <20090714044500.D0DCB10F888@bastion2.fedora.phx.redhat.com> kevin has added Package javanotes with summary Introduction to Programming Using Java, By David J. Eck kevin has approved Package javanotes kevin has added a Fedora devel branch for javanotes with an owner of lonetwin kevin has approved javanotes in Fedora devel kevin has approved Package javanotes kevin has set commit to Approved for 107427 on javanotes (Fedora devel) kevin has set checkout to Approved for 107427 on javanotes (Fedora devel) kevin has set build to Approved for 107427 on javanotes (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/javanotes From pkgdb at fedoraproject.org Tue Jul 14 04:45:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:45:02 +0000 Subject: [pkgdb] javanotes summary updated by kevin Message-ID: <20090714044502.B92D810F89A@bastion2.fedora.phx.redhat.com> kevin set package javanotes summary to Introduction to Programming Using Java, By David J. Eck To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/javanotes From pkgdb at fedoraproject.org Tue Jul 14 04:45:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:45:02 +0000 Subject: [pkgdb] javanotes (Fedora, 10) updated by kevin Message-ID: <20090714044502.C55A610F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for javanotes kevin has set commit to Approved for 107427 on javanotes (Fedora 10) kevin has set checkout to Approved for 107427 on javanotes (Fedora 10) kevin has set build to Approved for 107427 on javanotes (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/javanotes From pkgdb at fedoraproject.org Tue Jul 14 04:45:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:45:02 +0000 Subject: [pkgdb] javanotes (Fedora, 10) updated by kevin Message-ID: <20090714044502.CE17710F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for javanotes kevin has set commit to Approved for 107427 on javanotes (Fedora 11) kevin has set checkout to Approved for 107427 on javanotes (Fedora 11) kevin has set build to Approved for 107427 on javanotes (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/javanotes From kevin at fedoraproject.org Tue Jul 14 04:45:09 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:45:09 +0000 (UTC) Subject: rpms/javanotes - New directory Message-ID: <20090714044509.21E9411C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/javanotes In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV32378/rpms/javanotes Log Message: Directory /cvs/pkgs/rpms/javanotes added to the repository From kevin at fedoraproject.org Tue Jul 14 04:45:09 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:45:09 +0000 (UTC) Subject: rpms/javanotes/devel - New directory Message-ID: <20090714044509.43D4511C02C4@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/javanotes/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV32378/rpms/javanotes/devel Log Message: Directory /cvs/pkgs/rpms/javanotes/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:45:14 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:45:14 +0000 (UTC) Subject: rpms/javanotes Makefile,NONE,1.1 Message-ID: <20090714044514.DB81A11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/javanotes In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV32378/rpms/javanotes Added Files: Makefile Log Message: Setup of module javanotes --- NEW FILE Makefile --- # Top level Makefile for module javanotes all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:45:15 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:45:15 +0000 (UTC) Subject: rpms/javanotes/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714044515.3D34E11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/javanotes/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsV32378/rpms/javanotes/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module javanotes --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: javanotes # $Id: Makefile,v 1.1 2009/07/14 04:45:15 kevin Exp $ NAME := javanotes SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:46:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:09 +0000 Subject: [pkgdb] pypoppler was added for fab Message-ID: <20090714044609.B78AE10F899@bastion2.fedora.phx.redhat.com> kevin has added Package pypoppler with summary Python bindings for the Poppler PDF rendering library kevin has approved Package pypoppler kevin has added a Fedora devel branch for pypoppler with an owner of fab kevin has approved pypoppler in Fedora devel kevin has approved Package pypoppler kevin has set commit to Approved for 107427 on pypoppler (Fedora devel) kevin has set checkout to Approved for 107427 on pypoppler (Fedora devel) kevin has set build to Approved for 107427 on pypoppler (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pypoppler From pkgdb at fedoraproject.org Tue Jul 14 04:46:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:11 +0000 Subject: [pkgdb] pypoppler summary updated by kevin Message-ID: <20090714044611.425C310F8A5@bastion2.fedora.phx.redhat.com> kevin set package pypoppler summary to Python bindings for the Poppler PDF rendering library To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pypoppler From pkgdb at fedoraproject.org Tue Jul 14 04:46:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:11 +0000 Subject: [pkgdb] pypoppler (Fedora, 10) updated by kevin Message-ID: <20090714044611.57CCC10F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for pypoppler kevin has set commit to Approved for 107427 on pypoppler (Fedora 10) kevin has set checkout to Approved for 107427 on pypoppler (Fedora 10) kevin has set build to Approved for 107427 on pypoppler (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pypoppler From pkgdb at fedoraproject.org Tue Jul 14 04:46:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:11 +0000 Subject: [pkgdb] pypoppler (Fedora, 10) updated by kevin Message-ID: <20090714044611.77C8210F802@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for pypoppler kevin has set commit to Approved for 107427 on pypoppler (Fedora 11) kevin has set checkout to Approved for 107427 on pypoppler (Fedora 11) kevin has set build to Approved for 107427 on pypoppler (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pypoppler From pkgdb at fedoraproject.org Tue Jul 14 04:46:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:55 +0000 Subject: [pkgdb] compat-libgdamm was added for hicham Message-ID: <20090714044655.8E3DC10F86B@bastion2.fedora.phx.redhat.com> kevin has added Package compat-libgdamm with summary C++ wrappers for libgda3 kevin has approved Package compat-libgdamm kevin has added a Fedora devel branch for compat-libgdamm with an owner of hicham kevin has approved compat-libgdamm in Fedora devel kevin has approved Package compat-libgdamm kevin has set commit to Approved for 107427 on compat-libgdamm (Fedora devel) kevin has set checkout to Approved for 107427 on compat-libgdamm (Fedora devel) kevin has set build to Approved for 107427 on compat-libgdamm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-libgdamm From pkgdb at fedoraproject.org Tue Jul 14 04:46:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:56 +0000 Subject: [pkgdb] compat-libgdamm summary updated by kevin Message-ID: <20090714044656.E472F10F89A@bastion2.fedora.phx.redhat.com> kevin set package compat-libgdamm summary to C++ wrappers for libgda3 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-libgdamm From pkgdb at fedoraproject.org Tue Jul 14 04:46:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:46:56 +0000 Subject: [pkgdb] compat-libgdamm (Fedora, 11) updated by kevin Message-ID: <20090714044656.F1E5510F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for compat-libgdamm kevin has set commit to Approved for 107427 on compat-libgdamm (Fedora 11) kevin has set checkout to Approved for 107427 on compat-libgdamm (Fedora 11) kevin has set build to Approved for 107427 on compat-libgdamm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-libgdamm From kevin at fedoraproject.org Tue Jul 14 04:47:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:47:04 +0000 (UTC) Subject: rpms/compat-libgdamm - New directory Message-ID: <20090714044704.1DCC711C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-libgdamm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsCss470/rpms/compat-libgdamm Log Message: Directory /cvs/pkgs/rpms/compat-libgdamm added to the repository From kevin at fedoraproject.org Tue Jul 14 04:47:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:47:04 +0000 (UTC) Subject: rpms/compat-libgdamm/devel - New directory Message-ID: <20090714044704.397BA11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsCss470/rpms/compat-libgdamm/devel Log Message: Directory /cvs/pkgs/rpms/compat-libgdamm/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:47:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:47:10 +0000 (UTC) Subject: rpms/compat-libgdamm Makefile,NONE,1.1 Message-ID: <20090714044710.97BB711C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-libgdamm In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsCss470/rpms/compat-libgdamm Added Files: Makefile Log Message: Setup of module compat-libgdamm --- NEW FILE Makefile --- # Top level Makefile for module compat-libgdamm all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:47:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:47:10 +0000 (UTC) Subject: rpms/compat-libgdamm/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714044710.CF6D611C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/compat-libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsCss470/rpms/compat-libgdamm/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module compat-libgdamm --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: compat-libgdamm # $Id: Makefile,v 1.1 2009/07/14 04:47:10 kevin Exp $ NAME := compat-libgdamm SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 14 04:48:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:48:29 +0000 Subject: [pkgdb] rubygem-test-spec was added for lkundrak Message-ID: <20090714044830.0F49410F862@bastion2.fedora.phx.redhat.com> kevin has added Package rubygem-test-spec with summary Behaviour Driven Development interface for Test::Unit kevin has approved Package rubygem-test-spec kevin has added a Fedora devel branch for rubygem-test-spec with an owner of lkundrak kevin has approved rubygem-test-spec in Fedora devel kevin has approved Package rubygem-test-spec kevin has set commit to Approved for 107427 on rubygem-test-spec (Fedora devel) kevin has set checkout to Approved for 107427 on rubygem-test-spec (Fedora devel) kevin has set build to Approved for 107427 on rubygem-test-spec (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-test-spec From pkgdb at fedoraproject.org Tue Jul 14 04:48:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:48:31 +0000 Subject: [pkgdb] rubygem-test-spec summary updated by kevin Message-ID: <20090714044831.CC6AD10F88D@bastion2.fedora.phx.redhat.com> kevin set package rubygem-test-spec summary to Behaviour Driven Development interface for Test::Unit To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-test-spec From pkgdb at fedoraproject.org Tue Jul 14 04:48:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:48:31 +0000 Subject: [pkgdb] rubygem-test-spec (Fedora EPEL, 5) updated by kevin Message-ID: <20090714044831.D5E5010F89C@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for rubygem-test-spec kevin has set commit to Approved for 107427 on rubygem-test-spec (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on rubygem-test-spec (Fedora EPEL 5) kevin has set build to Approved for 107427 on rubygem-test-spec (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-test-spec From pkgdb at fedoraproject.org Tue Jul 14 04:48:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 04:48:31 +0000 Subject: [pkgdb] rubygem-test-spec (Fedora EPEL, 5) updated by kevin Message-ID: <20090714044831.DE9A810F8A6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for rubygem-test-spec kevin has set commit to Approved for 107427 on rubygem-test-spec (Fedora 11) kevin has set checkout to Approved for 107427 on rubygem-test-spec (Fedora 11) kevin has set build to Approved for 107427 on rubygem-test-spec (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-test-spec From kevin at fedoraproject.org Tue Jul 14 04:48:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:48:49 +0000 (UTC) Subject: rpms/rubygem-test-spec - New directory Message-ID: <20090714044849.1AB7E11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-test-spec In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsVsm920/rpms/rubygem-test-spec Log Message: Directory /cvs/pkgs/rpms/rubygem-test-spec added to the repository From kevin at fedoraproject.org Tue Jul 14 04:48:49 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:48:49 +0000 (UTC) Subject: rpms/rubygem-test-spec/devel - New directory Message-ID: <20090714044849.3A22611C0497@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-test-spec/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsVsm920/rpms/rubygem-test-spec/devel Log Message: Directory /cvs/pkgs/rpms/rubygem-test-spec/devel added to the repository From kevin at fedoraproject.org Tue Jul 14 04:48:55 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:48:55 +0000 (UTC) Subject: rpms/rubygem-test-spec Makefile,NONE,1.1 Message-ID: <20090714044855.E73EB11C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-test-spec In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsVsm920/rpms/rubygem-test-spec Added Files: Makefile Log Message: Setup of module rubygem-test-spec --- NEW FILE Makefile --- # Top level Makefile for module rubygem-test-spec all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Tue Jul 14 04:48:56 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 04:48:56 +0000 (UTC) Subject: rpms/rubygem-test-spec/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714044856.5469411C0095@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/rubygem-test-spec/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsVsm920/rpms/rubygem-test-spec/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rubygem-test-spec --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rubygem-test-spec # $Id: Makefile,v 1.1 2009/07/14 04:48:56 kevin Exp $ NAME := rubygem-test-spec SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From ssp at fedoraproject.org Tue Jul 14 04:54:26 2009 From: ssp at fedoraproject.org (Soren Sandmann Pedersen) Date: Tue, 14 Jul 2009 04:54:26 +0000 (UTC) Subject: rpms/pixman/devel .cvsignore, 1.23, 1.24 pixman.spec, 1.37, 1.38 sources, 1.25, 1.26 Message-ID: <20090714045426.6CAB511C0095@cvs1.fedora.phx.redhat.com> Author: ssp Update of /cvs/pkgs/rpms/pixman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2137 Modified Files: .cvsignore pixman.spec sources Log Message: pixman 0.15.16 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 24 Jun 2009 17:15:50 -0000 1.23 +++ .cvsignore 14 Jul 2009 04:53:56 -0000 1.24 @@ -7,3 +7,4 @@ pixman-0.15.8.tar.gz pixman-0.15.10.tar.gz pixman-0.15.12.tar.gz pixman-0.15.14.tar.gz +pixman-0.15.16.tar.gz Index: pixman.spec =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/pixman.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- pixman.spec 24 Jun 2009 17:15:50 -0000 1.37 +++ pixman.spec 14 Jul 2009 04:53:56 -0000 1.38 @@ -2,7 +2,7 @@ %define gitrev 8ff7213f39edc1b2b8b60d6b0cc5d5f14ca1928d Name: pixman -Version: 0.15.14 +Version: 0.15.16 Release: 1%{?dist} Summary: Pixel manipulation library @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pixman-1.pc %changelog +* Mon Jul 13 2009 Soren Sandmann 0.15.16-1 +- pixman 0.15.16 + * Wed Jun 24 2009 Soren Sandmann 0.15.14-1 - pixman 0.15.14 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 24 Jun 2009 17:15:50 -0000 1.25 +++ sources 14 Jul 2009 04:53:56 -0000 1.26 @@ -1 +1,2 @@ bfbb075dd60402e86528add13f8e27ad pixman-0.15.14.tar.gz +831b846d23e7b90abd56b4f614101542 pixman-0.15.16.tar.gz From mclasen at fedoraproject.org Tue Jul 14 05:08:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 05:08:32 +0000 (UTC) Subject: rpms/brasero/devel .cvsignore, 1.23, 1.24 brasero.spec, 1.50, 1.51 sources, 1.23, 1.24 Message-ID: <20090714050832.0947411C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5111 Modified Files: .cvsignore brasero.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 16 Jun 2009 06:12:21 -0000 1.23 +++ .cvsignore 14 Jul 2009 05:08:01 -0000 1.24 @@ -1 +1 @@ -brasero-2.27.3.tar.bz2 +brasero-2.27.4.tar.bz2 Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- brasero.spec 16 Jun 2009 06:12:21 -0000 1.50 +++ brasero.spec 14 Jul 2009 05:08:01 -0000 1.51 @@ -1,6 +1,6 @@ Name: brasero -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} Summary: Gnome CD/DVD burning application Group: Applications/Multimedia @@ -13,7 +13,6 @@ BuildRequires: glib2-devel >= 2.15.6 BuildRequires: gettext intltool gtk-doc BuildRequires: desktop-file-utils BuildRequires: GConf2-devel >= 2.0.0 -BuildRequires: hal-devel >= 0.5 BuildRequires: libgnomeui-devel >= 2.10.0 BuildRequires: gstreamer-devel >= 0.10.15 BuildRequires: gstreamer-plugins-base-devel >= 0.10.0 @@ -30,7 +29,6 @@ BuildRequires: libxslt BuildRequires: libburn-devel >= 0.4.0 BuildRequires: libisofs-devel >= 0.6.4 BuildRequires: nautilus-devel >= 2.22.2 -BuildRequires: eel2-devel >= 2.13.3 BuildRequires: libSM-devel BuildRequires: unique-devel @@ -176,7 +174,6 @@ fi %{_libdir}/%{name} %{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop -%{_datadir}/applications/%{name}-open-*.desktop %{_datadir}/applications/%{name}-copy-*.desktop %{_datadir}/gnome/help/%{name} %{_datadir}/omf/%{name} @@ -205,6 +202,9 @@ fi %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 16 Jun 2009 06:12:21 -0000 1.23 +++ sources 14 Jul 2009 05:08:01 -0000 1.24 @@ -1 +1 @@ -5e7f288caa76cfe10949f1213b6f3f7a brasero-2.27.3.tar.bz2 +825e3b34232cf9dc2d6100a6bf6b80f6 brasero-2.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 05:23:06 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 05:23:06 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.215,1.216 Message-ID: <20090714052306.B70FE11C0095@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9023 Modified Files: gnome-games.spec Log Message: fix file lists Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- gnome-games.spec 14 Jul 2009 04:38:38 -0000 1.215 +++ gnome-games.spec 14 Jul 2009 05:22:36 -0000 1.216 @@ -222,6 +222,7 @@ gconftool-2 --makefile-install-rule \ iagno.schemas \ mahjongg.schemas \ same-gnome.schemas \ + gnome-sudoku.schemas \ > /dev/null || : ) touch %{_datadir}/icons/hicolor @@ -274,6 +275,7 @@ if [ "$1" -eq 0 ]; then iagno.schemas \ mahjongg.schemas \ same-gnome.schemas \ + gnome-sudoku.schemas \ > /dev/null || : ) ggz-config -r -m %{_datadir}/ggz/gnect-client.dsc >& /dev/null || : @@ -324,6 +326,7 @@ fi %{_sysconfdir}/gconf/schemas/mahjongg.schemas %{_sysconfdir}/gconf/schemas/same-gnome.schemas %{_sysconfdir}/gconf/schemas/glchess.schemas +%{_sysconfdir}/gconf/schemas/gnome-sudoku.schemas # these are not setgid games %{_bindir}/gnect @@ -352,8 +355,6 @@ fi %attr(2551, root, games) %{_bindir}/iagno %files help -f help.lang -%defattr(-, root, root) -%{_datadir}/omf/* %changelog * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 From rishi at fedoraproject.org Tue Jul 14 05:30:10 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 05:30:10 +0000 (UTC) Subject: rpms/anjuta/devel anjuta-2.27.3.0-class-gen-templates.patch, NONE, 1.1 anjuta-2.27.3.0-docdir.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 anjuta.spec, 1.74, 1.75 sources, 1.20, 1.21 Message-ID: <20090714053010.F16FB11C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10533 Modified Files: .cvsignore anjuta.spec sources Added Files: anjuta-2.27.3.0-class-gen-templates.patch anjuta-2.27.3.0-docdir.patch Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) - Do not drop schemas translations from po files. - Removed 'Requires: libglade2 >= 2.6.3-2'. anjuta-2.27.3.0-class-gen-templates.patch: --- NEW FILE anjuta-2.27.3.0-class-gen-templates.patch --- diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifndef _[+NameCUpper+]_H_ diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ using GLib; diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/cpp/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/cpp/src/main.cc --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/cpp/src/main.cc 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/cpp/src/main.cc 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.cc" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gnome-applet/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/gnome-applet/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gnome-applet/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/gnome-applet/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.c anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.c 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "callbacks.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "callbacks.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "callbacks.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.h anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.h --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/callbacks.h 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/callbacks.h 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "callbacks.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "callbacks.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "callbacks.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtk/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtk/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtkmm/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/gtkmm/src/main.cc --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/gtkmm/src/main.cc 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/gtkmm/src/main.cc 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.cc" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/java/src/main.java anjuta-2.27.3.0/plugins/project-wizard/templates/java/src/main.java --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/java/src/main.java 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/java/src/main.java 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.java" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.java" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.java" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ class [+MainClass+] { diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/python/src/main.py anjuta-2.27.3.0/plugins/project-wizard/templates/python/src/main.py --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/python/src/main.py 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/python/src/main.py 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ # Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> # [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.py" (get "Author") "# ")+] -[+ == "LGPL" +][+(lgpl "main.py" (get "Author") "# ")+] -[+ == "GPL" +][+(gpl "main.py" "# ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "# ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "# ")+] +[+ == "GPL" +][+(gpl (get "Name") "# ")+] [+ESAC+] print "Hello World!" diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/sdl/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/sdl/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/sdl/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/sdl/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /*Program closes with a mouse click or keypress */ diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/terminal/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/terminal/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/terminal/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/terminal/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/wxwin/src/main.cc anjuta-2.27.3.0/plugins/project-wizard/templates/wxwin/src/main.cc --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/wxwin/src/main.cc 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/wxwin/src/main.cc 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.cc" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /*Program closes with a mouse click or keypress */ diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/main.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/main.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/main.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/main.c 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "wmgeneral.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "wmgeneral.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "wmgeneral.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /* wmgeneral was taken from wmppp. diff -urNp anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h --- anjuta-2.27.3.0.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h 2009-07-14 10:44:03.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "wmgeneral.h" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "wmgeneral.h" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "wmgeneral.h" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifndef WMGENERAL_H_INCLUDED anjuta-2.27.3.0-docdir.patch: --- NEW FILE anjuta-2.27.3.0-docdir.patch --- diff -urNp anjuta-2.27.3.0.orig/libanjuta/Makefile.in anjuta-2.27.3.0/libanjuta/Makefile.in --- anjuta-2.27.3.0.orig/libanjuta/Makefile.in 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/libanjuta/Makefile.in 2009-07-14 10:11:10.000000000 +0530 @@ -360,7 +360,7 @@ AM_CPPFLAGS = \ -DPACKAGE_PIXMAPS_DIR="\"$(datadir)/pixmaps/$(PACKAGE)\"" \ -DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \ -DPACKAGE_HELP_DIR="\"$(datadir)/gnome/help/$(PACKAGE)\"" \ - -DPACKAGE_DOC_DIR="\"$(datadir)/doc/$(PACKAGE)\"" \ + -DPACKAGE_DOC_DIR="\"$(docdir)\"" \ -DG_LOG_DOMAIN=\"libanjuta\" lib_LTLIBRARIES = libanjuta.la diff -urNp anjuta-2.27.3.0.orig/src/Makefile.in anjuta-2.27.3.0/src/Makefile.in --- anjuta-2.27.3.0.orig/src/Makefile.in 2009-07-14 10:10:58.000000000 +0530 +++ anjuta-2.27.3.0/src/Makefile.in 2009-07-14 10:11:10.000000000 +0530 @@ -339,7 +339,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)\ -I.. -I. -DPACKAGE_BIN_DIR=\"$(bindir)\" \ -DPACKAGE_DATA_DIR="\"$(datadir)/$(PACKAGE)\"" \ - -DPACKAGE_DOC_DIR=\"$(datadir)/doc/$(PACKAGE)\" \ + -DPACKAGE_DOC_DIR=\"$(docdir)\" \ -DPACKAGE_PIXMAPS_DIR=\"$(datadir)/pixmaps/$(PACKAGE)\" \ -DPACKAGE_PLUGIN_DIR=\"$(libdir)/$(PACKAGE)\" \ -DPACKAGE_LOCALE_DIR=\"$(datadir)/locale\" \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 13 Jul 2009 22:16:52 -0000 1.20 +++ .cvsignore 14 Jul 2009 05:29:40 -0000 1.21 @@ -1 +1 @@ -anjuta-2.26.2.2.tar.gz +anjuta-2.27.3.0.tar.gz Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- anjuta.spec 13 Jul 2009 22:16:52 -0000 1.74 +++ anjuta.spec 14 Jul 2009 05:29:40 -0000 1.75 @@ -1,12 +1,17 @@ Summary: A GNOME development IDE for C/C++ Name: anjuta Epoch: 1 -Version: 2.26.2.2 +Version: 2.27.3.0 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.anjuta.org/ -Source0: http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/%{name}-%{version}.tar.gz +Source0: http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.27/%{name}-%{version}.tar.gz + +# http://bugzilla.gnome.org/575147 +Patch0: %{name}-%{version}-class-gen-templates.patch +# http://bugzilla.gnome.org/588506 +Patch1: %{name}-%{version}-docdir.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -21,7 +26,6 @@ Requires: glade3-libgladeui >= 3.5.7 Requires: gnome-icon-theme Requires: hicolor-icon-theme Requires: libgda-sqlite >= 3.99.7 -Requires: libglade2 >= 2.6.3-2 Requires(pre): GConf2 Requires(post): GConf2 Requires(post): /sbin/ldconfig @@ -90,6 +94,8 @@ Documentation for Anjuta DevStudio provi %prep %setup -q +%patch0 -p1 +%patch1 -p1 # Filter unwanted Provides. cat << \EOF > %{name}-prov @@ -154,7 +160,7 @@ make %{?_smp_mflags} # http://bugzilla.gnome.org/474987 pushd ./po grep --invert-match \ - ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$\|.*[.]schemas[.]in$" \ + ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \ POTFILES.in > POTFILES.keep mv POTFILES.keep POTFILES.in intltool-update --pot @@ -324,6 +330,36 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 +- Version bump to 2.27.3.0. + Improvements in auto-completion speed. + Improvements in Git and Subversion plugins. + Ported to GtkBuilder. (GNOME Bugzilla #530740) + * Git plugin: + + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) + * GTodo plugin: + + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) + * Language support (C, C++, Java) plugin: + + Fixed crash when dismissing auto-completion popup and deleting some + characters. (GNOME Bugzilla #582464) + * Project wizard plugin: + + Infer project name from project path. (GNOME Bugzilla #568779) + + wxWidget projects should not depend on libglade and Gtk+. (GNOME + Bugzilla #581074) + * Scintilla editor plugin: + + Fixed position of tooltips. (GNOME Bugzilla #577721) + * Search plugin: + + Point to correct line number. (GNOME Bugzilla #576959) +- Do not drop schemas translations from po files. +- Removed 'Requires: libglade2 >= 2.6.3-2'. + +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-3 +- Added patch against class generator plugin to fix wrong copyright and + license notices. (GNOME Bugzilla #575147) + +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-2 +- Fixed the value of PACKAGE_DOC_DIR. (GNOME Bugzilla #588506) + * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-1 - Version bump to 2.26.2.2. * Git plugin: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 13 Jul 2009 22:16:52 -0000 1.20 +++ sources 14 Jul 2009 05:29:40 -0000 1.21 @@ -1 +1 @@ -03191602895a4b0dd15a8298fc255657 anjuta-2.26.2.2.tar.gz +79931581f77c42e7468a3ee20fc275bd anjuta-2.27.3.0.tar.gz From rishi at fedoraproject.org Tue Jul 14 05:36:06 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 05:36:06 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.75,1.76 Message-ID: <20090714053606.7AB3A11C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11763 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- anjuta.spec 14 Jul 2009 05:29:40 -0000 1.75 +++ anjuta.spec 14 Jul 2009 05:35:36 -0000 1.76 @@ -350,6 +350,8 @@ scrollkeeper-update -q || : + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Removed 'Requires: libglade2 >= 2.6.3-2'. @@ -378,6 +380,9 @@ scrollkeeper-update -q || : * Tools plugin: + Handle patch files with whitespaces in their names. (GNOME Bugzilla #580013) + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.2.news + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.1.news + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.0.news - Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. * Wed Apr 15 2009 Debarshi Ray - 1:2.26.1.0-1 From wart at fedoraproject.org Tue Jul 14 05:36:35 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Tue, 14 Jul 2009 05:36:35 +0000 (UTC) Subject: rpms/spr/F-11 SPR-3.3.2-stdio.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 spr.spec, 1.9, 1.10 spr-07.08.00-cflags.patch, 1.1, NONE Message-ID: <20090714053635.28E5C11C0095@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11863 Modified Files: .cvsignore sources spr.spec Added Files: SPR-3.3.2-stdio.patch Removed Files: spr-07.08.00-cflags.patch Log Message: Update to latest release SPR-3.3.2-stdio.patch: --- NEW FILE SPR-3.3.2-stdio.patch --- --- SPR-3.3.2/src/SprAddColumnsForMCLApp.cc.orig 2009-07-13 16:50:41.000000000 -0700 +++ SPR-3.3.2/src/SprAddColumnsForMCLApp.cc 2009-07-13 16:50:47.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprMultiClassReader.hh" #include "StatPatternRecognition/SprTrainedMultiClassLearner.hh" +#include #include #include #include --- SPR-3.3.2/src/SprIndicatorMatrixApp.cc.orig 2009-07-13 17:07:12.000000000 -0700 +++ SPR-3.3.2/src/SprIndicatorMatrixApp.cc 2009-07-13 17:07:20.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprIndicatorMatrix.hh" #include "StatPatternRecognition/SprConfig.hh" +#include #include #include #include Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spr/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 18 Mar 2008 17:29:15 -0000 1.7 +++ .cvsignore 14 Jul 2009 05:36:04 -0000 1.8 @@ -1 +1 @@ -SPR-07-15-00.tar.gz +SPR-3.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spr/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 18 Mar 2008 17:29:15 -0000 1.7 +++ sources 14 Jul 2009 05:36:04 -0000 1.8 @@ -1 +1 @@ -43ac6925212235f506287b5601634b42 SPR-07-15-00.tar.gz +79afa6a1a42ec1d169f5bcba0acedfe7 SPR-3.3.2.tar.gz Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/F-11/spr.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- spr.spec 28 Feb 2009 13:17:59 -0000 1.9 +++ spr.spec 14 Jul 2009 05:36:04 -0000 1.10 @@ -1,14 +1,14 @@ Name: spr -Version: 07.15.00 -Release: 3%{?dist} +Version: 3.3.2 +Release: 1%{?dist} Summary: Library for categorization of data Group: Development/Libraries License: GPL+ URL: http://www.hep.caltech.edu/~narsky/spr.html -Patch0: spr-07.08.00-cflags.patch -Patch1: spr-07.08.00-getopt_ret.patch -Source0: http://downloads.sourceforge.net/statpatrec/SPR-07-15-00.tar.gz +Patch0: spr-07.08.00-getopt_ret.patch +Patch1: SPR-3.3.2-stdio.patch +Source0: http://downloads.sourceforge.net/statpatrec/SPR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libstdc++-devel @@ -25,16 +25,17 @@ Requires: %{name} = %{version}-%{release %{summary}. %prep -%setup -q -n StatPatternRecognition -touch -r configure.ac configure.ac.stamp +%setup -q -n SPR-%{version} %patch0 -p1 %patch1 -p1 -touch -r configure.ac.stamp configure.ac %build -%configure --without-root --disable-static --datadir=%{_datadir}/%{name} \ - --includedir=%{_includedir}/%{name} +%configure --without-root --disable-static --disable-rpath \ + --datadir=%{_datadir}/%{name} --includedir=%{_includedir}/%{name} +# Get rid of rpath turds +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Remove this gcc34-ism. Upstream is aware of this and needs time to # find a fix. @@ -42,7 +43,7 @@ sed -i -e 's/ -lg2c//' src/Makefile # Parallel builds currently not supported. Upstream is aware of this # and needs time to find a fix. -make +make %{?smp_mflags} %install @@ -62,20 +63,23 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README +%doc AUTHORS COPYING TODO README ChangeLog %{_bindir}/* %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README src/example*.cc +%doc AUTHORS COPYING TODO README ChangeLog src/example*.cc %{_includedir}/%{name} %{_libdir}/*.so %changelog +* Mon Jul 13 2009 Wart - 3.3.2-1 +- Update to latest release + * Sat Feb 28 2009 Caol??n McNamara - 07.15.00-3 - comparing getopt ret to EOF requires stdio.h, or use just -1 (man 3p getopt) --- spr-07.08.00-cflags.patch DELETED --- From rishi at fedoraproject.org Tue Jul 14 05:43:56 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 05:43:56 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.76,1.77 Message-ID: <20090714054356.E574511C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13510 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- anjuta.spec 14 Jul 2009 05:35:36 -0000 1.76 +++ anjuta.spec 14 Jul 2009 05:43:26 -0000 1.77 @@ -125,7 +125,6 @@ chmod +x %{__perl_requires} # Suppress rpmlint error. chmod 644 `find . -name "*.c" -perm /111 -print` -chmod 644 `find . -name "*.cxx" -perm /111 -print` chmod 644 `find . -name "*.h" -perm /111 -print` iconv --from-code ISO8859-1 --to-code UTF-8 ./THANKS \ --output THANKS.utf-8 && mv THANKS.utf-8 ./THANKS From rishi at fedoraproject.org Tue Jul 14 06:04:24 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 06:04:24 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.77,1.78 Message-ID: <20090714060424.61A2011C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18533 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Replaced 'BuildRequires: e2fsprogs-devel' with 'BuildRequires: e2fsprogs-libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- anjuta.spec 14 Jul 2009 05:43:26 -0000 1.77 +++ anjuta.spec 14 Jul 2009 06:03:52 -0000 1.78 @@ -36,7 +36,7 @@ BuildRequires: autogen BuildRequires: binutils-devel BuildRequires: desktop-file-utils BuildRequires: devhelp-devel >= 0.22 -BuildRequires: e2fsprogs-devel +BuildRequires: e2fsprogs-libuuid-devel BuildRequires: gettext BuildRequires: glade3-libgladeui-devel >= 3.6.0 BuildRequires: gnome-doc-utils @@ -352,6 +352,8 @@ scrollkeeper-update -q || : * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. +- Replaced 'BuildRequires: e2fsprogs-devel' with + 'BuildRequires: e2fsprogs-libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-3 From rishi at fedoraproject.org Tue Jul 14 06:18:45 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 06:18:45 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.78,1.79 Message-ID: <20090714061845.4171211C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22558 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Replaced 'BuildRequires: e2fsprogs-devel' with 'BuildRequires: libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- anjuta.spec 14 Jul 2009 06:03:52 -0000 1.78 +++ anjuta.spec 14 Jul 2009 06:18:43 -0000 1.79 @@ -36,7 +36,7 @@ BuildRequires: autogen BuildRequires: binutils-devel BuildRequires: desktop-file-utils BuildRequires: devhelp-devel >= 0.22 -BuildRequires: e2fsprogs-libuuid-devel +BuildRequires: libuuid-devel BuildRequires: gettext BuildRequires: glade3-libgladeui-devel >= 3.6.0 BuildRequires: gnome-doc-utils @@ -353,7 +353,7 @@ scrollkeeper-update -q || : * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Replaced 'BuildRequires: e2fsprogs-devel' with - 'BuildRequires: e2fsprogs-libuuid-devel'. + 'BuildRequires: libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-3 From remi at fedoraproject.org Tue Jul 14 06:22:08 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 06:22:08 +0000 (UTC) Subject: rpms/syck/devel syck-nan.patch,NONE,1.1 syck.spec,1.29,1.30 Message-ID: <20090714062208.43B2411C0095@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/syck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23375 Modified Files: syck.spec Added Files: syck-nan.patch Log Message: PHP 5.3.0 build - Bug #511018 syck-nan.patch: --- NEW FILE syck-nan.patch --- diff -up ext/php/phpext.c.php53 ext/php/phpext.c --- ext/php/phpext.c.php53 2009-07-14 08:03:44.000000000 +0200 +++ ext/php/phpext.c 2009-07-14 08:08:36.000000000 +0200 @@ -21,7 +21,7 @@ static double zero() { return 0.0; } static double one() { return 1.0; } static double inf() { return one() / zero(); } -static double nan() { return zero() / zero(); } +static double mynan() { return zero() / zero(); } /* {{{ syck_functions[] * @@ -220,7 +220,7 @@ php_syck_handler(p, n) } else if ( strcmp( n->type_id, "float#nan" ) == 0 ) { - ZVAL_DOUBLE( o, nan() ); + ZVAL_DOUBLE( o, mynan() ); } else if ( strcmp( n->type_id, "float#inf" ) == 0 ) { diff -up ext/php/php_syck.h.php53 ext/php/php_syck.h Index: syck.spec =================================================================== RCS file: /cvs/extras/rpms/syck/devel/syck.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- syck.spec 26 Feb 2009 04:34:41 -0000 1.29 +++ syck.spec 14 Jul 2009 06:21:37 -0000 1.30 @@ -6,7 +6,7 @@ Name: syck Summary: YAML for C, Python, and PHP Version: 0.61 -Release: 8.2%{?dist} +Release: 8.3%{?dist} License: BSD Group: System Environment/Libraries @@ -16,6 +16,7 @@ Source0: http://pyyaml.org/download/pysy Source1: syck.ini Patch0: syck-0.55-libtool.patch +Patch1: syck-nan.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gawk bison flex libtool @@ -108,6 +109,7 @@ Syck. %prep %setup -q -n syck-0.61+svn231+patches %patch0 -p1 +%patch1 -p0 %build libtoolize --force --copy && aclocal && automake --add-missing && autoconf @@ -192,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/php.d/syck.ini %changelog +* Tue Jul 14 2009 Remi Collet - 0.61-8.3 +- rebuild for new PHP 5.3.0 ABI (20090626) +- add syck-nan.patch + * Wed Feb 25 2009 Fedora Release Engineering - 0.61-8.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From wart at fedoraproject.org Tue Jul 14 06:30:08 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Tue, 14 Jul 2009 06:30:08 +0000 (UTC) Subject: rpms/spr/EL-5 SPR-3.3.2-stdio.patch, NONE, 1.1 spr-07.08.00-getopt_ret.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 spr.spec, 1.2, 1.3 spr-07.08.00-cflags.patch, 1.1, NONE Message-ID: <20090714063008.87D4811C049F@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25364 Modified Files: .cvsignore sources spr.spec Added Files: SPR-3.3.2-stdio.patch spr-07.08.00-getopt_ret.patch Removed Files: spr-07.08.00-cflags.patch Log Message: Update to latest release SPR-3.3.2-stdio.patch: --- NEW FILE SPR-3.3.2-stdio.patch --- --- SPR-3.3.2/src/SprAddColumnsForMCLApp.cc.orig 2009-07-13 16:50:41.000000000 -0700 +++ SPR-3.3.2/src/SprAddColumnsForMCLApp.cc 2009-07-13 16:50:47.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprMultiClassReader.hh" #include "StatPatternRecognition/SprTrainedMultiClassLearner.hh" +#include #include #include #include --- SPR-3.3.2/src/SprIndicatorMatrixApp.cc.orig 2009-07-13 17:07:12.000000000 -0700 +++ SPR-3.3.2/src/SprIndicatorMatrixApp.cc 2009-07-13 17:07:20.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprIndicatorMatrix.hh" #include "StatPatternRecognition/SprConfig.hh" +#include #include #include #include spr-07.08.00-getopt_ret.patch: --- NEW FILE spr-07.08.00-getopt_ret.patch --- --- StatPatternRecognition.orig/src/SprAddBaggersApp.cc 2009-02-28 12:59:54.000000000 +0000 +++ StatPatternRecognition/src/SprAddBaggersApp.cc 2009-02-28 13:00:00.000000000 +0000 @@ -44,7 +44,7 @@ int c; extern char* optarg; // extern int optind; - while((c = getopt(argc,argv,"hv:")) != EOF ) { + while((c = getopt(argc,argv,"hv:")) != -1 ) { switch( c ) { case 'h' : Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Feb 2008 00:56:07 -0000 1.3 +++ .cvsignore 14 Jul 2009 06:29:37 -0000 1.4 @@ -1 +1 @@ -SPR-07-12-01.tar.gz +SPR-3.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Feb 2008 00:56:07 -0000 1.3 +++ sources 14 Jul 2009 06:29:37 -0000 1.4 @@ -1 +1 @@ -6469254004c8f619cc281211c6544a04 SPR-07-12-01.tar.gz +79afa6a1a42ec1d169f5bcba0acedfe7 SPR-3.3.2.tar.gz Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-5/spr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spr.spec 19 Feb 2008 00:56:07 -0000 1.2 +++ spr.spec 14 Jul 2009 06:29:37 -0000 1.3 @@ -1,13 +1,14 @@ Name: spr -Version: 07.12.01 +Version: 3.3.2 Release: 1%{?dist} Summary: Library for categorization of data Group: Development/Libraries License: GPL+ URL: http://www.hep.caltech.edu/~narsky/spr.html -Patch0: spr-07.08.00-cflags.patch -Source0: http://downloads.sourceforge.net/statpatrec/SPR-07-12-01.tar.gz +Patch0: spr-07.08.00-getopt_ret.patch +Patch1: SPR-3.3.2-stdio.patch +Source0: http://downloads.sourceforge.net/statpatrec/SPR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libstdc++-devel @@ -24,15 +25,17 @@ Requires: %{name} = %{version}-%{release %{summary}. %prep -%setup -q -n StatPatternRecognition -touch -r configure.ac configure.ac.stamp +%setup -q -n SPR-%{version} %patch0 -p1 -touch -r configure.ac.stamp configure.ac +%patch1 -p1 %build -%configure --without-root --disable-static --datadir=%{_datadir}/%{name} \ - --includedir=%{_includedir}/%{name} +%configure --without-root --disable-static --disable-rpath \ + --datadir=%{_datadir}/%{name} --includedir=%{_includedir}/%{name} +# Get rid of rpath turds +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Remove this gcc34-ism. Upstream is aware of this and needs time to # find a fix. @@ -60,22 +63,48 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README +%doc AUTHORS COPYING TODO README ChangeLog %{_bindir}/* %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) +%doc AUTHORS COPYING TODO README ChangeLog src/example*.cc %{_includedir}/%{name} %{_libdir}/*.so %changelog -* Mon Feb 18 2008 Wart 07.12.01-1 +* Mon Jul 13 2009 Wart - 3.3.2-1 +- Update to latest release; rebase to Fedora version + +* Sat Feb 28 2009 Caol??n McNamara - 07.15.00-3 +- comparing getopt ret to EOF requires stdio.h, or use just -1 (man 3p getopt) + +* Wed Feb 25 2009 Fedora Release Engineering - 07.15.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Mar 17 2008 Wart 07.15.00-1 +- Upgrade to 07.15.00 +- Add example program sources to -devel documentation + +* Thu Feb 14 2008 Wart 07.12.01-1 - Upgrade to 07.12.01 +* Sun Feb 10 2008 Wart 07.08.00-1 +- Upgrade to 07.08.00 +- Add patch for building with gcc 4.3 + +* Tue Aug 21 2007 Wart 07.00.00-1 +- Update to latest release +- License tag clarification + +* Tue May 15 2007 Wart 05.02.00-1 +- Update to 05.02.00 +- Remove patch that was accepted upstream + * Mon Apr 23 2007 Michael Thomas 05.01.00-3 - Fix ownership of header directory in -devel subpackage --- spr-07.08.00-cflags.patch DELETED --- From rishi at fedoraproject.org Tue Jul 14 06:43:09 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 06:43:09 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.79,1.80 Message-ID: <20090714064309.8D72D11C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28500 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Replaced 'BuildRequires: e2fsprogs-devel' with 'BuildRequires: libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- anjuta.spec 14 Jul 2009 06:18:43 -0000 1.79 +++ anjuta.spec 14 Jul 2009 06:42:38 -0000 1.80 @@ -289,7 +289,6 @@ scrollkeeper-update -q || : %{_libdir}/libanjuta.so.* # Symlink to libanjuta.so.*. %{_libdir}/libglade/2.0/libanjuta.so -%{_sysconfdir}/gconf/schemas/%{name}.schemas %{_sysconfdir}/gconf/schemas/%{name}-*.schemas %dir %{_datadir}/%{name} From rishi at fedoraproject.org Tue Jul 14 06:45:38 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 06:45:38 +0000 (UTC) Subject: rpms/anjuta/F-11 anjuta-2.26.2.2-class-gen-templates.patch, NONE, 1.1 anjuta-2.26.2.2-reduce-wakeups.patch, NONE, 1.1 anjuta-2.26.2.2-wxwidgets-project.patch, NONE, 1.1 anjuta.spec, 1.75, 1.76 Message-ID: <20090714064538.BF27F11C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29349 Modified Files: anjuta.spec Added Files: anjuta-2.26.2.2-class-gen-templates.patch anjuta-2.26.2.2-reduce-wakeups.patch anjuta-2.26.2.2-wxwidgets-project.patch Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-4 - Backported fix to prevent wxWidget projects from depending on libglade and Gtk+. (GNOME Bugzilla #581074) - Backported fix to use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) anjuta-2.26.2.2-class-gen-templates.patch: --- NEW FILE anjuta-2.26.2.2-class-gen-templates.patch --- diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin/src/plugin.c 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin/src/plugin.h 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifndef _[+NameCUpper+]_H_ diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin-vala/src/config.vapi 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/anjuta-plugin-vala/src/plugin.vala 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "plugin.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "plugin.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "plugin.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ using GLib; diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/cpp/src/main.cc anjuta-2.26.2.2/plugins/project-wizard/templates/cpp/src/main.cc --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/cpp/src/main.cc 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/cpp/src/main.cc 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.cc" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gnome-applet/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/gnome-applet/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gnome-applet/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/gnome-applet/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/callbacks.c anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/callbacks.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/callbacks.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/callbacks.c 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "callbacks.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "callbacks.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "callbacks.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/callbacks.h anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/callbacks.h --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/callbacks.h 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/callbacks.h 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "callbacks.h" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "callbacks.h" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "callbacks.h" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtk/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/gtk/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtkmm/src/main.cc anjuta-2.26.2.2/plugins/project-wizard/templates/gtkmm/src/main.cc --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/gtkmm/src/main.cc 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/gtkmm/src/main.cc 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.cc" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/java/src/main.java anjuta-2.26.2.2/plugins/project-wizard/templates/java/src/main.java --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/java/src/main.java 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/java/src/main.java 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.java" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.java" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.java" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ class [+MainClass+] { diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/python/src/main.py anjuta-2.26.2.2/plugins/project-wizard/templates/python/src/main.py --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/python/src/main.py 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/python/src/main.py 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ # Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> # [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.py" (get "Author") "# ")+] -[+ == "LGPL" +][+(lgpl "main.py" (get "Author") "# ")+] -[+ == "GPL" +][+(gpl "main.py" "# ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "# ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "# ")+] +[+ == "GPL" +][+(gpl (get "Name") "# ")+] [+ESAC+] print "Hello World!" diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/sdl/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/sdl/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/sdl/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/sdl/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /*Program closes with a mouse click or keypress */ diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/terminal/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/terminal/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/terminal/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/terminal/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -5,9 +5,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") " * ")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") " * ")+] -[+ == "GPL" +][+(gpl "main.c" " * ")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") " * ")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") " * ")+] +[+ == "GPL" +][+(gpl (get "Name") " * ")+] [+ESAC+] */ #include diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/wxwin/src/main.cc anjuta-2.26.2.2/plugins/project-wizard/templates/wxwin/src/main.cc --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/wxwin/src/main.cc 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/wxwin/src/main.cc 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.cc" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.cc" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.cc" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/xlib/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/xlib/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /*Program closes with a mouse click or keypress */ diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/main.c anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/main.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/main.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/main.c 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "main.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "main.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "main.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifdef HAVE_CONFIG_H diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.c 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "wmgeneral.c" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "wmgeneral.c" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "wmgeneral.c" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ /* wmgeneral was taken from wmppp. diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/xlib-dock/src/wmgeneral.h 2009-07-14 10:45:51.000000000 +0530 @@ -4,9 +4,9 @@ * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]> * [+CASE (get "License") +] -[+ == "BSD" +][+(bsd "wmgeneral.h" (get "Author") "\t")+] -[+ == "LGPL" +][+(lgpl "wmgeneral.h" (get "Author") "\t")+] -[+ == "GPL" +][+(gpl "wmgeneral.h" "\t")+] +[+ == "BSD" +][+(bsd (get "Name") (get "Author") "\t")+] +[+ == "LGPL" +][+(lgpl (get "Name") (get "Author") "\t")+] +[+ == "GPL" +][+(gpl (get "Name") "\t")+] [+ESAC+] */ #ifndef WMGENERAL_H_INCLUDED anjuta-2.26.2.2-reduce-wakeups.patch: --- NEW FILE anjuta-2.26.2.2-reduce-wakeups.patch --- diff -urNp anjuta-2.26.2.2.orig/plugins/gbf-am/test.c anjuta-2.26.2.2/plugins/gbf-am/test.c --- anjuta-2.26.2.2.orig/plugins/gbf-am/test.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/gbf-am/test.c 2009-07-14 11:21:01.000000000 +0530 @@ -209,7 +209,7 @@ main (int argc, char *argv[]) g_free (file); } - g_timeout_add (3000, (GSourceFunc) gtk_main_quit, NULL); + g_timeout_add_seconds (3, (GSourceFunc) gtk_main_quit, NULL); gtk_main (); out: diff -urNp anjuta-2.26.2.2.orig/plugins/gtodo/interface.c anjuta-2.26.2.2/plugins/gtodo/interface.c --- anjuta-2.26.2.2.orig/plugins/gtodo/interface.c 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/gtodo/interface.c 2009-07-14 11:21:01.000000000 +0530 @@ -104,7 +104,7 @@ void gtodo_update_settings() } gtodo_client_set_changed_callback(cl,(void *)backend_changed ,NULL); - g_timeout_add(300000, (GSourceFunc)check_for_notification_event, NULL); + g_timeout_add_seconds (300, (GSourceFunc)check_for_notification_event, NULL); check_for_notification_event(); } anjuta-2.26.2.2-wxwidgets-project.patch: --- NEW FILE anjuta-2.26.2.2-wxwidgets-project.patch --- diff -urNp anjuta-2.26.2.2.orig/plugins/project-wizard/templates/wxwin.wiz anjuta-2.26.2.2/plugins/project-wizard/templates/wxwin.wiz --- anjuta-2.26.2.2.orig/plugins/project-wizard/templates/wxwin.wiz 2009-07-14 09:43:06.000000000 +0530 +++ anjuta-2.26.2.2/plugins/project-wizard/templates/wxwin.wiz 2009-07-14 11:24:53.000000000 +0530 @@ -21,8 +21,6 @@ - - Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/F-11/anjuta.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- anjuta.spec 14 Jul 2009 04:37:11 -0000 1.75 +++ anjuta.spec 14 Jul 2009 06:45:38 -0000 1.76 @@ -2,14 +2,20 @@ Summary: A GNOME development IDE for C/C Name: anjuta Epoch: 1 Version: 2.26.2.2 -Release: 2%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.anjuta.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/%{name}-%{version}.tar.gz +# http://bugzilla.gnome.org/575147 +Patch0: %{name}-%{version}-class-gen-templates.patch +# http://bugzilla.gnome.org/581074 +Patch1: %{name}-%{version}-wxwidgets-project.patch +# http://bugzilla.gnome.org/582710 +Patch2: %{name}-%{version}-reduce-wakeups.patch # http://bugzilla.gnome.org/588506 -Patch0: %{name}-%{version}-docdir.patch +Patch3: %{name}-%{version}-docdir.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -94,6 +100,9 @@ Documentation for Anjuta DevStudio provi %prep %setup -q %patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 # Filter unwanted Provides. cat << \EOF > %{name}-prov @@ -328,6 +337,16 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-4 +- Backported fix to prevent wxWidget projects from depending on libglade and + Gtk+. (GNOME Bugzilla #581074) +- Backported fix to use g_timeout_add_seconds to reduce wakeups. (GNOME + Bugzilla #582710) + +* Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-3 +- Added patch against class generator plugin to fix wrong copyright and + license notices. (GNOME Bugzilla #575147) + * Tue Jul 14 2009 Debarshi Ray - 1:2.26.2.2-2 - Fixed the value of PACKAGE_DOC_DIR. (GNOME Bugzilla #588506) @@ -349,6 +368,9 @@ scrollkeeper-update -q || : * Tools plugin: + Handle patch files with whitespaces in their names. (GNOME Bugzilla #580013) + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.2.news + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.1.news + * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.26.2.0.news - Explicitly set docdir to /usr/share/doc/anjuta-2.26.2.2. * Wed Apr 15 2009 Debarshi Ray - 1:2.26.1.0-1 From rishi at fedoraproject.org Tue Jul 14 07:01:52 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Tue, 14 Jul 2009 07:01:52 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.80,1.81 Message-ID: <20090714070152.E793111C0095@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1746 Modified Files: anjuta.spec Log Message: * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. Improvements in Git and Subversion plugins. Ported to GtkBuilder. (GNOME Bugzilla #530740) * Git plugin: + Commit dialog should have the "amend" option. (GNOME Bugzilla #580340) * GTodo plugin: + Use g_timeout_add_seconds to reduce wakeups. (GNOME Bugzilla #582710) * Language support (C, C++, Java) plugin: + Fixed crash when dismissing auto-completion popup and deleting some characters. (GNOME Bugzilla #582464) * Project wizard plugin: + Infer project name from project path. (GNOME Bugzilla #568779) + wxWidget projects should not depend on libglade and Gtk+. (GNOME Bugzilla #581074) * Scintilla editor plugin: + Fixed position of tooltips. (GNOME Bugzilla #577721) * Search plugin: + Point to correct line number. (GNOME Bugzilla #576959) * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.3.0.news * http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.26/anjuta-2.27.2.0.news - Do not drop schemas translations from po files. - Replaced 'BuildRequires: e2fsprogs-devel' with 'BuildRequires: libuuid-devel'. - Removed 'Requires: libglade2 >= 2.6.3-2'. Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- anjuta.spec 14 Jul 2009 06:42:38 -0000 1.80 +++ anjuta.spec 14 Jul 2009 07:01:21 -0000 1.81 @@ -289,7 +289,9 @@ scrollkeeper-update -q || : %{_libdir}/libanjuta.so.* # Symlink to libanjuta.so.*. %{_libdir}/libglade/2.0/libanjuta.so +%{_sysconfdir}/gconf/schemas/file-manager.schemas %{_sysconfdir}/gconf/schemas/%{name}-*.schemas +%{_sysconfdir}/gconf/schemas/preferences.schemas %dir %{_datadir}/%{name} %{_datadir}/%{name}/* From wart at fedoraproject.org Tue Jul 14 07:09:04 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Tue, 14 Jul 2009 07:09:04 +0000 (UTC) Subject: rpms/spr/EL-4 SPR-3.3.2-stdio.patch, NONE, 1.1 spr-07.08.00-getopt_ret.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 spr.spec, 1.2, 1.3 spr-07.08.00-cflags.patch, 1.1, NONE Message-ID: <20090714070904.D1FDF11C0095@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3595 Modified Files: .cvsignore sources spr.spec Added Files: SPR-3.3.2-stdio.patch spr-07.08.00-getopt_ret.patch Removed Files: spr-07.08.00-cflags.patch Log Message: Update to latest release SPR-3.3.2-stdio.patch: --- NEW FILE SPR-3.3.2-stdio.patch --- --- SPR-3.3.2/src/SprAddColumnsForMCLApp.cc.orig 2009-07-13 16:50:41.000000000 -0700 +++ SPR-3.3.2/src/SprAddColumnsForMCLApp.cc 2009-07-13 16:50:47.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprMultiClassReader.hh" #include "StatPatternRecognition/SprTrainedMultiClassLearner.hh" +#include #include #include #include --- SPR-3.3.2/src/SprIndicatorMatrixApp.cc.orig 2009-07-13 17:07:12.000000000 -0700 +++ SPR-3.3.2/src/SprIndicatorMatrixApp.cc 2009-07-13 17:07:20.000000000 -0700 @@ -4,6 +4,7 @@ #include "StatPatternRecognition/SprIndicatorMatrix.hh" #include "StatPatternRecognition/SprConfig.hh" +#include #include #include #include spr-07.08.00-getopt_ret.patch: --- NEW FILE spr-07.08.00-getopt_ret.patch --- --- StatPatternRecognition.orig/src/SprAddBaggersApp.cc 2009-02-28 12:59:54.000000000 +0000 +++ StatPatternRecognition/src/SprAddBaggersApp.cc 2009-02-28 13:00:00.000000000 +0000 @@ -44,7 +44,7 @@ int c; extern char* optarg; // extern int optind; - while((c = getopt(argc,argv,"hv:")) != EOF ) { + while((c = getopt(argc,argv,"hv:")) != -1 ) { switch( c ) { case 'h' : Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 Feb 2008 01:25:42 -0000 1.3 +++ .cvsignore 14 Jul 2009 07:08:53 -0000 1.4 @@ -1 +1 @@ -SPR-07-12-01.tar.gz +SPR-3.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 Feb 2008 01:25:42 -0000 1.3 +++ sources 14 Jul 2009 07:08:57 -0000 1.4 @@ -1 +1 @@ -6469254004c8f619cc281211c6544a04 SPR-07-12-01.tar.gz +79afa6a1a42ec1d169f5bcba0acedfe7 SPR-3.3.2.tar.gz Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/spr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spr.spec 19 Feb 2008 01:25:42 -0000 1.2 +++ spr.spec 14 Jul 2009 07:08:59 -0000 1.3 @@ -1,13 +1,14 @@ Name: spr -Version: 07.12.01 +Version: 3.3.2 Release: 1%{?dist} Summary: Library for categorization of data Group: Development/Libraries License: GPL+ URL: http://www.hep.caltech.edu/~narsky/spr.html -Patch0: spr-07.08.00-cflags.patch -Source0: http://downloads.sourceforge.net/statpatrec/SPR-07-12-01.tar.gz +Patch0: spr-07.08.00-getopt_ret.patch +Patch1: SPR-3.3.2-stdio.patch +Source0: http://downloads.sourceforge.net/statpatrec/SPR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libstdc++-devel @@ -24,15 +25,17 @@ Requires: %{name} = %{version}-%{release %{summary}. %prep -%setup -q -n StatPatternRecognition -touch -r configure.ac configure.ac.stamp +%setup -q -n SPR-%{version} %patch0 -p1 -touch -r configure.ac.stamp configure.ac +%patch1 -p1 %build -%configure --without-root --disable-static --datadir=%{_datadir}/%{name} \ - --includedir=%{_includedir}/%{name} +%configure --without-root --disable-static --disable-rpath \ + --datadir=%{_datadir}/%{name} --includedir=%{_includedir}/%{name} +# Get rid of rpath turds +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Remove this gcc34-ism. Upstream is aware of this and needs time to # find a fix. @@ -60,22 +63,48 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc AUTHORS COPYING HISTORY README +%doc AUTHORS COPYING TODO README ChangeLog %{_bindir}/* %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) +%doc AUTHORS COPYING TODO README ChangeLog src/example*.cc %{_includedir}/%{name} %{_libdir}/*.so %changelog -* Mon Feb 18 2008 Wart 07.12.01-1 +* Mon Jul 13 2009 Wart - 3.3.2-1 +- Update to latest release; rebase to Fedora version + +* Sat Feb 28 2009 Caol??n McNamara - 07.15.00-3 +- comparing getopt ret to EOF requires stdio.h, or use just -1 (man 3p getopt) + +* Wed Feb 25 2009 Fedora Release Engineering - 07.15.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Mar 17 2008 Wart 07.15.00-1 +- Upgrade to 07.15.00 +- Add example program sources to -devel documentation + +* Thu Feb 14 2008 Wart 07.12.01-1 - Upgrade to 07.12.01 +* Sun Feb 10 2008 Wart 07.08.00-1 +- Upgrade to 07.08.00 +- Add patch for building with gcc 4.3 + +* Tue Aug 21 2007 Wart 07.00.00-1 +- Update to latest release +- License tag clarification + +* Tue May 15 2007 Wart 05.02.00-1 +- Update to 05.02.00 +- Remove patch that was accepted upstream + * Mon Apr 23 2007 Michael Thomas 05.01.00-3 - Fix ownership of header directory in -devel subpackage --- spr-07.08.00-cflags.patch DELETED --- From remi at fedoraproject.org Tue Jul 14 08:17:44 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 08:17:44 +0000 (UTC) Subject: rpms/php-pear-Net-SMTP/devel .cvsignore, 1.7, 1.8 php-pear-Net-SMTP.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090714081745.2145511C0095@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-SMTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19318 Modified Files: .cvsignore php-pear-Net-SMTP.spec sources Log Message: update to 1.3.3 (bugfix) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 21 Dec 2008 09:12:03 -0000 1.7 +++ .cvsignore 14 Jul 2009 08:17:13 -0000 1.8 @@ -1 +1 @@ -Net_SMTP-1.3.2.tgz +Net_SMTP-1.3.3.tgz Index: php-pear-Net-SMTP.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/devel/php-pear-Net-SMTP.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-pear-Net-SMTP.spec 26 Feb 2009 21:50:32 -0000 1.8 +++ php-pear-Net-SMTP.spec 14 Jul 2009 08:17:13 -0000 1.9 @@ -2,8 +2,8 @@ %define pear_name Net_SMTP Name: php-pear-Net-SMTP -Version: 1.3.2 -Release: 2%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Summary: Provides an implementation of the SMTP protocol Summary(fr): Fournit une mise en oeuvre du protocol SMTP @@ -38,9 +38,10 @@ l'extension "php-pear-Auth-SASL". %prep %setup -q -c +# Package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml %build @@ -52,14 +53,14 @@ cd %{pear_name}-%{version} rm -rf %{buildroot} docdir pushd %{pear_name}-%{version} -%{__pear} install --nodeps --packagingroot %{buildroot} %{pear_name}.xml +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml # Clean up unnecessary files rm -rf %{buildroot}%{pear_phpdir}/.??* # Install XML package description %{__mkdir_p} %{buildroot}%{pear_xmldir} -%{__install} -pm 644 Net_SMTP.xml %{buildroot}%{pear_xmldir} +%{__install} -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} popd # Sort out documentation @@ -89,7 +90,7 @@ rm -rf %{buildroot} %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -104,10 +105,14 @@ fi %doc CHANGELOG docdir/%{pear_name}/docs/* %{pear_phpdir}/Net/* %{pear_testdir}/%{pear_name} -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %changelog +* Tue Jul 14 2009 Remi Collet 1.3.3-1 +- update to 1.3.3 +- rename Net_SMTP.xml to php-pear-Net-SMTP.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 21 Dec 2008 09:12:04 -0000 1.7 +++ sources 14 Jul 2009 08:17:13 -0000 1.8 @@ -1 +1 @@ -b8d691948add6b8b1493c9a499c8af7c Net_SMTP-1.3.2.tgz +2b659b953a421c944e8f989484712abd Net_SMTP-1.3.3.tgz From hicham at fedoraproject.org Tue Jul 14 08:18:05 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 08:18:05 +0000 (UTC) Subject: rpms/compat-libgdamm/F-11 compat-libgdamm.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714081805.6784311C0095@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/compat-libgdamm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19434/F-11 Modified Files: .cvsignore sources Added Files: compat-libgdamm.spec import.log Log Message: --- NEW FILE compat-libgdamm.spec --- %define name_ libgdamm Name: compat-libgdamm Version: 3.0.1 Release: 2%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ URL: http://www.gtkmm.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/libgdamm/3.0/%{name_}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glibmm24-devel BuildRequires: compat-libgda-devel >= 3.0.0 Requires: compat-libgda >= 3.0.0 %description C++ wrappers for libgda. libgdamm is part of a set of powerful C++ bindings for the GNOME libraries, which provide additional functionality above GTK+/gtkmm. This package provide compatibility libs for programs relying on version 3 of libgdamm. %package devel Summary: Headers/Libraries for developing programs that use libgdamm Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: glibmm24-devel, compat-libgda-devel, pkgconfig %description devel This package contains headers and libraries that programmers will need to develop applications which use libgdamm. %prep cp %{_topdir}/SOURCES/%{name_}-%{version}.tar.bz2 %{_topdir}/SOURCES/%{name}-%{version}.tar.bz2 %setup -q -n %{name_}-%{version} %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=${RPM_BUILD_ROOT} install find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-, root, root, -) %doc AUTHORS COPYING ChangeLog NEWS %{_libdir}/*.so.* %files devel %defattr(-, root, root, -) %{_includedir}/libgdamm-3.0 %{_libdir}/*.so %{_libdir}/libgdamm-3.0 %{_libdir}/pkgconfig/*.pc %changelog * Fri Jun 3 2009 Hicham HAOUARI 3.0.1-2 - Compatibility package for old programs on Fedora 11. * Fri Oct 3 2008 Denis Leroy - 3.0.1-1 - Update to upstream 3.0.1, bugfix release * Mon Mar 17 2008 Denis Leroy - 3.0.0-1 - Update to upstream 3.0.0 * Tue Feb 19 2008 Fedora Release Engineering - 2.9.81-2 - Autorebuild for GCC 4.3 * Sat Jan 26 2008 Denis Leroy - 2.9.81-1 - Update to upstream 2.9.81, needed a rebuild for libgda anyway * Wed Sep 12 2007 Denis Leroy - 2.9.8-1 - Update to 2.9.8, a bugfix release * Thu Aug 23 2007 Tom "spot" Callaway 2.9.7-2 - rebuild for license tag, ppc32 * Mon Jul 23 2007 Tom "spot" Callaway 2.9.7-1 - back from the dead * Mon Sep 11 2006 Tom "spot" Callaway 1.3.7-4 - look who's alive again! * Tue Feb 28 2006 Tom "spot" Callaway 1.3.7-3 - FC5 time * Thu Aug 11 2005 Tom "spot" Callaway 1.3.7-2 - cleanups, additional devel Requires * Sat Aug 6 2005 Tom "spot" Callaway 1.3.7-1 - initial package for Fedora Extras --- NEW FILE import.log --- compat-libgdamm-3_0_1-2_fc11:F-11:compat-libgdamm-3.0.1-2.fc11.src.rpm:1247559416 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:47:10 -0000 1.1 +++ .cvsignore 14 Jul 2009 08:18:05 -0000 1.2 @@ -0,0 +1 @@ +libgdamm-3.0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:47:10 -0000 1.1 +++ sources 14 Jul 2009 08:18:05 -0000 1.2 @@ -0,0 +1 @@ +63583ec970e643962474401400e19994 libgdamm-3.0.1.tar.bz2 From salimma at fedoraproject.org Tue Jul 14 08:20:20 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:20:20 +0000 (UTC) Subject: rpms/gtksourcecompletion/F-11 .cvsignore, 1.2, 1.3 gtksourcecompletion.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090714082020.636EF11C049F@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/gtksourcecompletion/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20582/F-11 Modified Files: .cvsignore gtksourcecompletion.spec sources Log Message: * Tue Jul 14 2009 Michel Salim - 0.7.0-1 - Update to 0.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Feb 2009 01:35:26 -0000 1.2 +++ .cvsignore 14 Jul 2009 08:19:49 -0000 1.3 @@ -1 +1 @@ -gtksourcecompletion-0.5.2.tar.gz +gtksourcecompletion-0.7.0.tar.gz Index: gtksourcecompletion.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/F-11/gtksourcecompletion.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gtksourcecompletion.spec 25 Feb 2009 02:27:11 -0000 1.2 +++ gtksourcecompletion.spec 14 Jul 2009 08:19:50 -0000 1.3 @@ -1,14 +1,13 @@ Name: gtksourcecompletion -Version: 0.5.2 -Release: 2%{?dist} +Version: 0.7.0 +Release: 1%{?dist} Summary: Completion support for GtkSourceView Group: System Environment/Libraries -# Note: wrong license file supplied -# https://sourceforge.net/tracker2/?func=detail&aid=2582250&group_id=212508&atid=1022021 -License: LGPLv2+ +# Note: mix of LGPLv2+ and LGPLv3+ files +License: LGPLv3+ URL: http://gtksourcecomple.sourceforge.net/ -Source0: http://dl.sourceforge.net/gtksourcecomple/gtksourcecompletion-%{version}.tar.gz +Source0: http://cloud.github.com/downloads/chuchiperriman/gtksourcecompletion/gtksourcecompletion-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtksourceview2-devel libglade2-devel @@ -51,6 +50,10 @@ GtkSourceCompletion. %build %configure --disable-static +# remove hardcoded RPATHs +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + make %{?_smp_mflags} @@ -58,7 +61,7 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -%find_lang %{name} +%find_lang %{name}-2.0 %clean @@ -70,27 +73,32 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig -%files -f %{name}.lang +%files -f %{name}-2.0.lang %defattr(-,root,root,-) # COPYING is wrong, not bundling for now -%doc AUTHORS ChangeLog README TODO +%doc AUTHORS ChangeLog COPYING NEWS README TODO +%{_bindir}/completion-* %{_libdir}/*.so.* %{_datadir}/gtksourcecompletion %files devel %defattr(-,root,root,-) %doc -%{_includedir}/gtksourcecompletion-1.0 +%{_bindir}/gio-test +%{_includedir}/gtksourcecompletion-2.0 %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %files doc %defattr(-,root,root,-) %doc -%{_datadir}/gtk-doc/html/gtksourcecompletion-1.0 +%{_datadir}/gtk-doc/html/gtksourcecompletion-2.0 %changelog +* Tue Jul 14 2009 Michel Salim - 0.7.0-1 +- Update to 0.7.0 + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Feb 2009 01:35:26 -0000 1.2 +++ sources 14 Jul 2009 08:19:50 -0000 1.3 @@ -1 +1 @@ -b031896ce03bef4ca711f9b1e0a34544 gtksourcecompletion-0.5.2.tar.gz +dd86f6c211dc4d8a305126f700869679 gtksourcecompletion-0.7.0.tar.gz From salimma at fedoraproject.org Tue Jul 14 08:20:20 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:20:20 +0000 (UTC) Subject: rpms/gtksourcecompletion/devel .cvsignore, 1.2, 1.3 gtksourcecompletion.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090714082020.B41D111C049F@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/gtksourcecompletion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20582/devel Modified Files: .cvsignore gtksourcecompletion.spec sources Log Message: * Tue Jul 14 2009 Michel Salim - 0.7.0-1 - Update to 0.7.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Feb 2009 01:35:26 -0000 1.2 +++ .cvsignore 14 Jul 2009 08:19:50 -0000 1.3 @@ -1 +1 @@ -gtksourcecompletion-0.5.2.tar.gz +gtksourcecompletion-0.7.0.tar.gz Index: gtksourcecompletion.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/devel/gtksourcecompletion.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gtksourcecompletion.spec 25 Feb 2009 02:27:11 -0000 1.2 +++ gtksourcecompletion.spec 14 Jul 2009 08:19:50 -0000 1.3 @@ -1,14 +1,13 @@ Name: gtksourcecompletion -Version: 0.5.2 -Release: 2%{?dist} +Version: 0.7.0 +Release: 1%{?dist} Summary: Completion support for GtkSourceView Group: System Environment/Libraries -# Note: wrong license file supplied -# https://sourceforge.net/tracker2/?func=detail&aid=2582250&group_id=212508&atid=1022021 -License: LGPLv2+ +# Note: mix of LGPLv2+ and LGPLv3+ files +License: LGPLv3+ URL: http://gtksourcecomple.sourceforge.net/ -Source0: http://dl.sourceforge.net/gtksourcecomple/gtksourcecompletion-%{version}.tar.gz +Source0: http://cloud.github.com/downloads/chuchiperriman/gtksourcecompletion/gtksourcecompletion-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtksourceview2-devel libglade2-devel @@ -51,6 +50,10 @@ GtkSourceCompletion. %build %configure --disable-static +# remove hardcoded RPATHs +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + make %{?_smp_mflags} @@ -58,7 +61,7 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -%find_lang %{name} +%find_lang %{name}-2.0 %clean @@ -70,27 +73,32 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig -%files -f %{name}.lang +%files -f %{name}-2.0.lang %defattr(-,root,root,-) # COPYING is wrong, not bundling for now -%doc AUTHORS ChangeLog README TODO +%doc AUTHORS ChangeLog COPYING NEWS README TODO +%{_bindir}/completion-* %{_libdir}/*.so.* %{_datadir}/gtksourcecompletion %files devel %defattr(-,root,root,-) %doc -%{_includedir}/gtksourcecompletion-1.0 +%{_bindir}/gio-test +%{_includedir}/gtksourcecompletion-2.0 %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %files doc %defattr(-,root,root,-) %doc -%{_datadir}/gtk-doc/html/gtksourcecompletion-1.0 +%{_datadir}/gtk-doc/html/gtksourcecompletion-2.0 %changelog +* Tue Jul 14 2009 Michel Salim - 0.7.0-1 +- Update to 0.7.0 + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Feb 2009 01:35:26 -0000 1.2 +++ sources 14 Jul 2009 08:19:50 -0000 1.3 @@ -1 +1 @@ -b031896ce03bef4ca711f9b1e0a34544 gtksourcecompletion-0.5.2.tar.gz +dd86f6c211dc4d8a305126f700869679 gtksourcecompletion-0.7.0.tar.gz From salimma at fedoraproject.org Tue Jul 14 08:22:55 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:22:55 +0000 (UTC) Subject: rpms/vala/F-10 vala-0.7.4-moduleinit.patch, NONE, 1.1 vala.spec, 1.36, 1.37 Message-ID: <20090714082255.62E5811C0095@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21566/F-10 Modified Files: vala.spec Added Files: vala-0.7.4-moduleinit.patch Log Message: * Tue Jul 14 2009 Michel Salim - 0.7.4-2 - Patch broken ModuleInit attribute (upstream bug 587444) vala-0.7.4-moduleinit.patch: --- NEW FILE vala-0.7.4-moduleinit.patch --- --- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 +++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 @@ -62,7 +62,7 @@ if (!plugin) { type_block.add_statement (cdecl); } else { - definition_fragment.append (cdecl); + declaration_fragment.append (cdecl); } CCodeFunction fun; Index: vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/vala/F-10/vala.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- vala.spec 7 Jul 2009 19:31:09 -0000 1.36 +++ vala.spec 14 Jul 2009 08:22:25 -0000 1.37 @@ -15,7 +15,7 @@ Name: vala Version: 0.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A modern programming language for GNOME Group: Development/Languages @@ -25,6 +25,8 @@ URL: http://live.gnome.org/Va Source0: http://download.gnome.org/sources/vala/0.7/vala-%{version}.tar.bz2 Source1: vala-mode.el Source2: vala-init.el +# http://bugzilla.gnome.org/show_bug.cgi?id=587444 +Patch0: vala-0.7.4-moduleinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel flex bison devhelp gecko-libs >= 1.9 @@ -114,10 +116,11 @@ An Emacs mode for editing Vala source co %prep %setup -q +%patch0 -p1 -b .moduleinit %build -%configure --enable-vapigen --enable-gen-project +%configure --enable-vapigen # Don't use rpath! sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -184,6 +187,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Michel Salim - 0.7.4-2 +- Patch broken ModuleInit attribute (upstream bug 587444) + * Tue Jul 7 2009 Michel Salim - 0.7.4-1 - Update to 0.7.4 From salimma at fedoraproject.org Tue Jul 14 08:22:55 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:22:55 +0000 (UTC) Subject: rpms/vala/F-11 vala-0.7.4-moduleinit.patch, NONE, 1.1 vala.spec, 1.38, 1.39 Message-ID: <20090714082255.ADC2E11C0095@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21566/F-11 Modified Files: vala.spec Added Files: vala-0.7.4-moduleinit.patch Log Message: * Tue Jul 14 2009 Michel Salim - 0.7.4-2 - Patch broken ModuleInit attribute (upstream bug 587444) vala-0.7.4-moduleinit.patch: --- NEW FILE vala-0.7.4-moduleinit.patch --- --- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 +++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 @@ -62,7 +62,7 @@ if (!plugin) { type_block.add_statement (cdecl); } else { - definition_fragment.append (cdecl); + declaration_fragment.append (cdecl); } CCodeFunction fun; Index: vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/vala/F-11/vala.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- vala.spec 7 Jul 2009 19:31:09 -0000 1.38 +++ vala.spec 14 Jul 2009 08:22:25 -0000 1.39 @@ -15,7 +15,7 @@ Name: vala Version: 0.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A modern programming language for GNOME Group: Development/Languages @@ -25,6 +25,8 @@ URL: http://live.gnome.org/Va Source0: http://download.gnome.org/sources/vala/0.7/vala-%{version}.tar.bz2 Source1: vala-mode.el Source2: vala-init.el +# http://bugzilla.gnome.org/show_bug.cgi?id=587444 +Patch0: vala-0.7.4-moduleinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel flex bison devhelp gecko-libs >= 1.9 @@ -114,10 +116,11 @@ An Emacs mode for editing Vala source co %prep %setup -q +%patch0 -p1 -b .moduleinit %build -%configure --enable-vapigen --enable-gen-project +%configure --enable-vapigen # Don't use rpath! sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -184,6 +187,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Michel Salim - 0.7.4-2 +- Patch broken ModuleInit attribute (upstream bug 587444) + * Tue Jul 7 2009 Michel Salim - 0.7.4-1 - Update to 0.7.4 From remi at fedoraproject.org Tue Jul 14 08:23:07 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 08:23:07 +0000 (UTC) Subject: rpms/php-pear-Net-SMTP/F-11 php-pear-Net-SMTP.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090714082307.7839511C0095@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-SMTP/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22017 Modified Files: php-pear-Net-SMTP.spec sources Log Message: update to 1.3.3 (bugfix) Index: php-pear-Net-SMTP.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/F-11/php-pear-Net-SMTP.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-pear-Net-SMTP.spec 26 Feb 2009 21:50:32 -0000 1.8 +++ php-pear-Net-SMTP.spec 14 Jul 2009 08:23:07 -0000 1.9 @@ -2,8 +2,8 @@ %define pear_name Net_SMTP Name: php-pear-Net-SMTP -Version: 1.3.2 -Release: 2%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Summary: Provides an implementation of the SMTP protocol Summary(fr): Fournit une mise en oeuvre du protocol SMTP @@ -38,9 +38,10 @@ l'extension "php-pear-Auth-SASL". %prep %setup -q -c +# Package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml %build @@ -52,14 +53,14 @@ cd %{pear_name}-%{version} rm -rf %{buildroot} docdir pushd %{pear_name}-%{version} -%{__pear} install --nodeps --packagingroot %{buildroot} %{pear_name}.xml +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml # Clean up unnecessary files rm -rf %{buildroot}%{pear_phpdir}/.??* # Install XML package description %{__mkdir_p} %{buildroot}%{pear_xmldir} -%{__install} -pm 644 Net_SMTP.xml %{buildroot}%{pear_xmldir} +%{__install} -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} popd # Sort out documentation @@ -89,7 +90,7 @@ rm -rf %{buildroot} %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -104,10 +105,14 @@ fi %doc CHANGELOG docdir/%{pear_name}/docs/* %{pear_phpdir}/Net/* %{pear_testdir}/%{pear_name} -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %changelog +* Tue Jul 14 2009 Remi Collet 1.3.3-1 +- update to 1.3.3 +- rename Net_SMTP.xml to php-pear-Net-SMTP.xml + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 21 Dec 2008 09:12:04 -0000 1.7 +++ sources 14 Jul 2009 08:23:07 -0000 1.8 @@ -1 +1 @@ -b8d691948add6b8b1493c9a499c8af7c Net_SMTP-1.3.2.tgz +2b659b953a421c944e8f989484712abd Net_SMTP-1.3.3.tgz From salimma at fedoraproject.org Tue Jul 14 08:22:56 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:22:56 +0000 (UTC) Subject: rpms/vala/devel vala-0.7.4-moduleinit.patch, NONE, 1.1 vala.spec, 1.39, 1.40 Message-ID: <20090714082256.03BF611C0095@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21566/devel Modified Files: vala.spec Added Files: vala-0.7.4-moduleinit.patch Log Message: * Tue Jul 14 2009 Michel Salim - 0.7.4-2 - Patch broken ModuleInit attribute (upstream bug 587444) vala-0.7.4-moduleinit.patch: --- NEW FILE vala-0.7.4-moduleinit.patch --- --- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 +++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 @@ -62,7 +62,7 @@ if (!plugin) { type_block.add_statement (cdecl); } else { - definition_fragment.append (cdecl); + declaration_fragment.append (cdecl); } CCodeFunction fun; Index: vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/vala/devel/vala.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- vala.spec 7 Jul 2009 19:31:09 -0000 1.39 +++ vala.spec 14 Jul 2009 08:22:25 -0000 1.40 @@ -15,7 +15,7 @@ Name: vala Version: 0.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A modern programming language for GNOME Group: Development/Languages @@ -25,6 +25,8 @@ URL: http://live.gnome.org/Va Source0: http://download.gnome.org/sources/vala/0.7/vala-%{version}.tar.bz2 Source1: vala-mode.el Source2: vala-init.el +# http://bugzilla.gnome.org/show_bug.cgi?id=587444 +Patch0: vala-0.7.4-moduleinit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel flex bison devhelp gecko-libs >= 1.9 @@ -114,10 +116,11 @@ An Emacs mode for editing Vala source co %prep %setup -q +%patch0 -p1 -b .moduleinit %build -%configure --enable-vapigen --enable-gen-project +%configure --enable-vapigen # Don't use rpath! sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -184,6 +187,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Michel Salim - 0.7.4-2 +- Patch broken ModuleInit attribute (upstream bug 587444) + * Tue Jul 7 2009 Michel Salim - 0.7.4-1 - Update to 0.7.4 From salimma at fedoraproject.org Tue Jul 14 08:26:21 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:26:21 +0000 (UTC) Subject: rpms/gedit-vala/F-10 .cvsignore, 1.3, 1.4 gedit-vala.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090714082621.111CE11C0497@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/gedit-vala/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22951/F-10 Modified Files: .cvsignore gedit-vala.spec sources Log Message: * Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} - Update to SVN rev 319 (needed to build against vala 0.7.x) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Feb 2009 14:07:26 -0000 1.3 +++ .cvsignore 14 Jul 2009 08:25:50 -0000 1.4 @@ -1 +1 @@ -vtg-0.4.1.tar.bz2 +vtg-r319.tar.bz2 Index: gedit-vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-10/gedit-vala.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gedit-vala.spec 25 Feb 2009 04:16:14 -0000 1.6 +++ gedit-vala.spec 14 Jul 2009 08:25:50 -0000 1.7 @@ -1,21 +1,26 @@ %define upstream_name vtg +%define svn_rev r319 Name: gedit-vala -Version: 0.4.1 -Release: 2%{?dist} +Version: 0.5.0 +Release: 0.1.%{svn_rev}svn%{?dist} Summary: Vala Toys for gEdit Group: Applications/Editors License: GPLv2+ URL: http://code.google.com/p/vtg/ -Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +#Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +Source0: vtg-%{svn_rev}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# For SVN checkout only +BuildRequires: gnome-common autoconf automake libtool +# end SVN BuildRequires: gedit-devel vala-devel GConf2-devel # GConf2-devel ought to depend on dbus-devel: # https://bugzilla.redhat.com/show_bug.cgi?id=485667 BuildRequires: dbus-devel -BuildRequires: gtksourcecompletion-devel +BuildRequires: gtksourcecompletion-devel >= 0.7.0 BuildRequires: intltool perl(XML::Parser) BuildRequires: readline-devel Requires: gedit vala @@ -41,11 +46,14 @@ with four modules: %prep -%setup -q -n %{upstream_name}-%{version} +#setup -q -n %{upstream_name}-%{version} +%setup -q -n %{upstream_name} %build -%configure +NOCONFIGURE=1 ./autogen.sh +# http://code.google.com/p/vtg/issues/detail?id=67 +%configure --disable-vsc-shell # this switch is ignored right now # --docdir=%{_docdir}/%{name}-%{version} make %{?_smp_mflags} @@ -72,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} +- Update to SVN rev 319 (needed to build against vala 0.7.x) + * Tue Feb 24 2009 Michel Salim - 0.4.1-2 - Add requirements needed to build sample projects Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Feb 2009 14:07:26 -0000 1.3 +++ sources 14 Jul 2009 08:25:50 -0000 1.4 @@ -1 +1 @@ -047d96fd651bb268779dad5aeaa8f558 vtg-0.4.1.tar.bz2 +8b9ce25d6391d8da04df3033e6f988ef vtg-r319.tar.bz2 From salimma at fedoraproject.org Tue Jul 14 08:26:21 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:26:21 +0000 (UTC) Subject: rpms/gedit-vala/F-11 .cvsignore, 1.3, 1.4 gedit-vala.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090714082621.A93FB11C0497@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/gedit-vala/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22951/F-11 Modified Files: .cvsignore gedit-vala.spec sources Log Message: * Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} - Update to SVN rev 319 (needed to build against vala 0.7.x) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Feb 2009 14:07:27 -0000 1.3 +++ .cvsignore 14 Jul 2009 08:25:50 -0000 1.4 @@ -1 +1 @@ -vtg-0.4.1.tar.bz2 +vtg-r319.tar.bz2 Index: gedit-vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-11/gedit-vala.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gedit-vala.spec 25 Feb 2009 04:16:15 -0000 1.5 +++ gedit-vala.spec 14 Jul 2009 08:25:51 -0000 1.6 @@ -1,21 +1,26 @@ %define upstream_name vtg +%define svn_rev r319 Name: gedit-vala -Version: 0.4.1 -Release: 2%{?dist} +Version: 0.5.0 +Release: 0.1.%{svn_rev}svn%{?dist} Summary: Vala Toys for gEdit Group: Applications/Editors License: GPLv2+ URL: http://code.google.com/p/vtg/ -Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +#Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +Source0: vtg-%{svn_rev}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# For SVN checkout only +BuildRequires: gnome-common autoconf automake libtool +# end SVN BuildRequires: gedit-devel vala-devel GConf2-devel # GConf2-devel ought to depend on dbus-devel: # https://bugzilla.redhat.com/show_bug.cgi?id=485667 BuildRequires: dbus-devel -BuildRequires: gtksourcecompletion-devel +BuildRequires: gtksourcecompletion-devel >= 0.7.0 BuildRequires: intltool perl(XML::Parser) BuildRequires: readline-devel Requires: gedit vala @@ -41,11 +46,14 @@ with four modules: %prep -%setup -q -n %{upstream_name}-%{version} +#setup -q -n %{upstream_name}-%{version} +%setup -q -n %{upstream_name} %build -%configure +NOCONFIGURE=1 ./autogen.sh +# http://code.google.com/p/vtg/issues/detail?id=67 +%configure --disable-vsc-shell # this switch is ignored right now # --docdir=%{_docdir}/%{name}-%{version} make %{?_smp_mflags} @@ -72,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} +- Update to SVN rev 319 (needed to build against vala 0.7.x) + * Tue Feb 24 2009 Michel Salim - 0.4.1-2 - Add requirements needed to build sample projects Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Feb 2009 14:07:27 -0000 1.3 +++ sources 14 Jul 2009 08:25:51 -0000 1.4 @@ -1 +1 @@ -047d96fd651bb268779dad5aeaa8f558 vtg-0.4.1.tar.bz2 +8b9ce25d6391d8da04df3033e6f988ef vtg-r319.tar.bz2 From salimma at fedoraproject.org Tue Jul 14 08:26:21 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 08:26:21 +0000 (UTC) Subject: rpms/gedit-vala/devel .cvsignore, 1.3, 1.4 gedit-vala.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090714082621.ED80711C0497@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/gedit-vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22951/devel Modified Files: .cvsignore gedit-vala.spec sources Log Message: * Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} - Update to SVN rev 319 (needed to build against vala 0.7.x) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 24 Feb 2009 14:07:27 -0000 1.3 +++ .cvsignore 14 Jul 2009 08:25:51 -0000 1.4 @@ -1 +1 @@ -vtg-0.4.1.tar.bz2 +vtg-r319.tar.bz2 Index: gedit-vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/devel/gedit-vala.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gedit-vala.spec 7 Jul 2009 19:33:21 -0000 1.6 +++ gedit-vala.spec 14 Jul 2009 08:25:51 -0000 1.7 @@ -1,21 +1,26 @@ %define upstream_name vtg +%define svn_rev r319 Name: gedit-vala -Version: 0.4.1 -Release: 3%{?dist} +Version: 0.5.0 +Release: 0.1.%{svn_rev}svn%{?dist} Summary: Vala Toys for gEdit Group: Applications/Editors License: GPLv2+ URL: http://code.google.com/p/vtg/ -Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +#Source0: http://vtg.googlecode.com/files/vtg-%{version}.tar.bz2 +Source0: vtg-%{svn_rev}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# For SVN checkout only +BuildRequires: gnome-common autoconf automake libtool +# end SVN BuildRequires: gedit-devel vala-devel GConf2-devel # GConf2-devel ought to depend on dbus-devel: # https://bugzilla.redhat.com/show_bug.cgi?id=485667 BuildRequires: dbus-devel -BuildRequires: gtksourcecompletion-devel +BuildRequires: gtksourcecompletion-devel >= 0.7.0 BuildRequires: intltool perl(XML::Parser) BuildRequires: readline-devel Requires: gedit vala @@ -41,11 +46,14 @@ with four modules: %prep -%setup -q -n %{upstream_name}-%{version} +#setup -q -n %{upstream_name}-%{version} +%setup -q -n %{upstream_name} %build -%configure +NOCONFIGURE=1 ./autogen.sh +# http://code.google.com/p/vtg/issues/detail?id=67 +%configure --disable-vsc-shell # this switch is ignored right now # --docdir=%{_docdir}/%{name}-%{version} make %{?_smp_mflags} @@ -72,8 +80,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 7 2009 Michel Salim - 0.4.1-3 -- Rebuild for new Vala +* Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} +- Update to SVN rev 319 (needed to build against vala 0.7.x) * Tue Feb 24 2009 Michel Salim - 0.4.1-2 - Add requirements needed to build sample projects Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Feb 2009 14:07:27 -0000 1.3 +++ sources 14 Jul 2009 08:25:51 -0000 1.4 @@ -1 +1 @@ -047d96fd651bb268779dad5aeaa8f558 vtg-0.4.1.tar.bz2 +8b9ce25d6391d8da04df3033e6f988ef vtg-r319.tar.bz2 From remi at fedoraproject.org Tue Jul 14 08:29:11 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 08:29:11 +0000 (UTC) Subject: rpms/php-pear-Net-SMTP/F-10 php-pear-Net-SMTP.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090714082911.8AA6811C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-SMTP/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23978 Modified Files: php-pear-Net-SMTP.spec sources Log Message: update to 1.3.3 (bugfix) Index: php-pear-Net-SMTP.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/F-10/php-pear-Net-SMTP.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Net-SMTP.spec 21 Dec 2008 09:19:23 -0000 1.7 +++ php-pear-Net-SMTP.spec 14 Jul 2009 08:28:41 -0000 1.8 @@ -2,7 +2,7 @@ %define pear_name Net_SMTP Name: php-pear-Net-SMTP -Version: 1.3.2 +Version: 1.3.3 Release: 1%{?dist} Summary: Provides an implementation of the SMTP protocol Summary(fr): Fournit une mise en oeuvre du protocol SMTP @@ -38,9 +38,10 @@ l'extension "php-pear-Auth-SASL". %prep %setup -q -c +# Package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml %build @@ -52,14 +53,14 @@ cd %{pear_name}-%{version} rm -rf %{buildroot} docdir pushd %{pear_name}-%{version} -%{__pear} install --nodeps --packagingroot %{buildroot} %{pear_name}.xml +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml # Clean up unnecessary files rm -rf %{buildroot}%{pear_phpdir}/.??* # Install XML package description %{__mkdir_p} %{buildroot}%{pear_xmldir} -%{__install} -pm 644 Net_SMTP.xml %{buildroot}%{pear_xmldir} +%{__install} -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} popd # Sort out documentation @@ -89,7 +90,7 @@ rm -rf %{buildroot} %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -104,10 +105,14 @@ fi %doc CHANGELOG docdir/%{pear_name}/docs/* %{pear_phpdir}/Net/* %{pear_testdir}/%{pear_name} -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %changelog +* Tue Jul 14 2009 Remi Collet 1.3.3-1 +- update to 1.3.3 +- rename Net_SMTP.xml to php-pear-Net-SMTP.xml + * Sun Dec 21 2008 Remi Collet 1.3.2-1 - update to 1.3.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 21 Dec 2008 09:19:23 -0000 1.7 +++ sources 14 Jul 2009 08:28:41 -0000 1.8 @@ -1 +1 @@ -b8d691948add6b8b1493c9a499c8af7c Net_SMTP-1.3.2.tgz +2b659b953a421c944e8f989484712abd Net_SMTP-1.3.3.tgz From remi at fedoraproject.org Tue Jul 14 08:36:38 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 08:36:38 +0000 (UTC) Subject: rpms/php-pear-Net-SMTP/EL-5 php-pear-Net-SMTP.spec, 1.6, 1.7 sources, 1.6, 1.7 Message-ID: <20090714083638.369D111C0497@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-Net-SMTP/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26064 Modified Files: php-pear-Net-SMTP.spec sources Log Message: update to 1.3.3 (bugfix) Index: php-pear-Net-SMTP.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/EL-5/php-pear-Net-SMTP.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Net-SMTP.spec 21 Dec 2008 09:30:38 -0000 1.6 +++ php-pear-Net-SMTP.spec 14 Jul 2009 08:36:07 -0000 1.7 @@ -2,7 +2,7 @@ %define pear_name Net_SMTP Name: php-pear-Net-SMTP -Version: 1.3.2 +Version: 1.3.3 Release: 1%{?dist} Summary: Provides an implementation of the SMTP protocol Summary(fr): Fournit une mise en oeuvre du protocol SMTP @@ -38,9 +38,10 @@ l'extension "php-pear-Auth-SASL". %prep %setup -q -c +# Package.xml is V2 %{_bindir}/php -n %{SOURCE2} package.xml >CHANGELOG -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml %build @@ -52,14 +53,14 @@ cd %{pear_name}-%{version} rm -rf %{buildroot} docdir pushd %{pear_name}-%{version} -%{__pear} install --nodeps --packagingroot %{buildroot} %{pear_name}.xml +%{__pear} install --nodeps --packagingroot %{buildroot} %{name}.xml # Clean up unnecessary files rm -rf %{buildroot}%{pear_phpdir}/.??* # Install XML package description %{__mkdir_p} %{buildroot}%{pear_xmldir} -%{__install} -pm 644 Net_SMTP.xml %{buildroot}%{pear_xmldir} +%{__install} -pm 644 %{name}.xml %{buildroot}%{pear_xmldir} popd # Sort out documentation @@ -89,7 +90,7 @@ rm -rf %{buildroot} %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun @@ -104,10 +105,14 @@ fi %doc CHANGELOG docdir/%{pear_name}/docs/* %{pear_phpdir}/Net/* %{pear_testdir}/%{pear_name} -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %changelog +* Tue Jul 14 2009 Remi Collet 1.3.3-1 +- update to 1.3.3 +- rename Net_SMTP.xml to php-pear-Net-SMTP.xml + * Sun Dec 21 2008 Remi Collet 1.3.2-1 - update to 1.3.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-pear-Net-SMTP/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 21 Dec 2008 09:30:38 -0000 1.6 +++ sources 14 Jul 2009 08:36:07 -0000 1.7 @@ -1 +1 @@ -b8d691948add6b8b1493c9a499c8af7c Net_SMTP-1.3.2.tgz +2b659b953a421c944e8f989484712abd Net_SMTP-1.3.3.tgz From jwrdegoede at fedoraproject.org Tue Jul 14 08:37:11 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Tue, 14 Jul 2009 08:37:11 +0000 (UTC) Subject: rpms/maniadrive/devel maniadrive.spec,1.14,1.15 Message-ID: <20090714083711.EEF9811C0497@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/maniadrive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26199 Modified Files: maniadrive.spec Log Message: * Tue Jul 14 2009 Hans de Goede 1.2-16 - Rebuild for new php 5.3.0 Index: maniadrive.spec =================================================================== RCS file: /cvs/extras/rpms/maniadrive/devel/maniadrive.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- maniadrive.spec 25 Jun 2009 16:53:44 -0000 1.14 +++ maniadrive.spec 14 Jul 2009 08:36:41 -0000 1.15 @@ -1,6 +1,6 @@ Name: maniadrive Version: 1.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: 3D stunt driving game Group: Amusements/Games License: GPLv2+ @@ -165,6 +165,9 @@ fi %changelog +* Tue Jul 14 2009 Hans de Goede 1.2-16 +- Rebuild for new php 5.3.0 + * Thu Jun 25 2009 Remi Collet 1.2-15 - Rebuild for new php 5.2.10 From hicham at fedoraproject.org Tue Jul 14 09:22:57 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 09:22:57 +0000 (UTC) Subject: rpms/compat-libgdamm/devel compat-libgdamm.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714092257.8A42311C0497@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/compat-libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5435/devel Modified Files: .cvsignore sources Added Files: compat-libgdamm.spec import.log Log Message: --- NEW FILE compat-libgdamm.spec --- %define name_ libgdamm Name: compat-libgdamm Version: 3.0.1 Release: 2%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ URL: http://www.gtkmm.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/libgdamm/3.0/%{name_}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glibmm24-devel BuildRequires: compat-libgda-devel >= 3.0.0 Requires: compat-libgda >= 3.0.0 %description C++ wrappers for libgda. libgdamm is part of a set of powerful C++ bindings for the GNOME libraries, which provide additional functionality above GTK+/gtkmm. This package provide compatibility libs for programs relying on version 3 of libgdamm. %package devel Summary: Headers/Libraries for developing programs that use libgdamm Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: glibmm24-devel, compat-libgda-devel, pkgconfig %description devel This package contains headers and libraries that programmers will need to develop applications which use libgdamm. %prep cp %{_topdir}/SOURCES/%{name_}-%{version}.tar.bz2 %{_topdir}/SOURCES/%{name}-%{version}.tar.bz2 %setup -q -n %{name_}-%{version} %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=${RPM_BUILD_ROOT} install find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-, root, root, -) %doc AUTHORS COPYING ChangeLog NEWS %{_libdir}/*.so.* %files devel %defattr(-, root, root, -) %{_includedir}/libgdamm-3.0 %{_libdir}/*.so %{_libdir}/libgdamm-3.0 %{_libdir}/pkgconfig/*.pc %changelog * Fri Jun 3 2009 Hicham HAOUARI 3.0.1-2 - Compatibility package for old programs on Fedora 11. * Fri Oct 3 2008 Denis Leroy - 3.0.1-1 - Update to upstream 3.0.1, bugfix release * Mon Mar 17 2008 Denis Leroy - 3.0.0-1 - Update to upstream 3.0.0 * Tue Feb 19 2008 Fedora Release Engineering - 2.9.81-2 - Autorebuild for GCC 4.3 * Sat Jan 26 2008 Denis Leroy - 2.9.81-1 - Update to upstream 2.9.81, needed a rebuild for libgda anyway * Wed Sep 12 2007 Denis Leroy - 2.9.8-1 - Update to 2.9.8, a bugfix release * Thu Aug 23 2007 Tom "spot" Callaway 2.9.7-2 - rebuild for license tag, ppc32 * Mon Jul 23 2007 Tom "spot" Callaway 2.9.7-1 - back from the dead * Mon Sep 11 2006 Tom "spot" Callaway 1.3.7-4 - look who's alive again! * Tue Feb 28 2006 Tom "spot" Callaway 1.3.7-3 - FC5 time * Thu Aug 11 2005 Tom "spot" Callaway 1.3.7-2 - cleanups, additional devel Requires * Sat Aug 6 2005 Tom "spot" Callaway 1.3.7-1 - initial package for Fedora Extras --- NEW FILE import.log --- compat-libgdamm-3_0_1-2_fc11:HEAD:compat-libgdamm-3.0.1-2.fc11.src.rpm:1247563327 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:47:10 -0000 1.1 +++ .cvsignore 14 Jul 2009 09:22:26 -0000 1.2 @@ -0,0 +1 @@ +libgdamm-3.0.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:47:10 -0000 1.1 +++ sources 14 Jul 2009 09:22:27 -0000 1.2 @@ -0,0 +1 @@ +63583ec970e643962474401400e19994 libgdamm-3.0.1.tar.bz2 From berrange at fedoraproject.org Tue Jul 14 09:36:27 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Tue, 14 Jul 2009 09:36:27 +0000 (UTC) Subject: rpms/perl-accessors/devel perl-accessors.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714093627.879B711C0497@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-accessors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8488 Modified Files: .cvsignore sources Added Files: perl-accessors.spec Log Message: Initial import after review (rhbz #511081) --- NEW FILE perl-accessors.spec --- Name: perl-accessors Version: 1.01 Release: 1%{?dist} Summary: Create accessor methods in caller's package License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/accessors/ Source0: http://www.cpan.org/authors/id/S/SP/SPURKIS/accessors-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.6.0 BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) >= 0.01 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The accessors pragma lets you create simple accessors at compile-time. %prep %setup -q -n accessors-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* # A few of the .pm modules have bogus execute permission find $RPM_BUILD_ROOT%{perl_vendorlib} -name *.pm | xargs chmod a-x %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jul 06 2009 Daniel P. Berrange 1.01-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-accessors/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:42:47 -0000 1.1 +++ .cvsignore 14 Jul 2009 09:35:57 -0000 1.2 @@ -0,0 +1,4 @@ +accessors-1.01.tar.gz +.build*.log +*.rpm +noarch Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-accessors/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:42:47 -0000 1.1 +++ sources 14 Jul 2009 09:35:57 -0000 1.2 @@ -0,0 +1 @@ +fc764c9cbfd03762c0d4f8ffaabaecb0 accessors-1.01.tar.gz From berrange at fedoraproject.org Tue Jul 14 09:44:12 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Tue, 14 Jul 2009 09:44:12 +0000 (UTC) Subject: rpms/perl-accessors/F-11 perl-accessors.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714094412.28EB511C0497@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-accessors/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10319 Modified Files: .cvsignore sources Added Files: perl-accessors.spec Log Message: Initial import after review (rhbz #511081) --- NEW FILE perl-accessors.spec --- Name: perl-accessors Version: 1.01 Release: 1%{?dist} Summary: Create accessor methods in caller's package License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/accessors/ Source0: http://www.cpan.org/authors/id/S/SP/SPURKIS/accessors-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.6.0 BuildRequires: perl(Module::Build) BuildRequires: perl(Test::More) >= 0.01 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The accessors pragma lets you create simple accessors at compile-time. %prep %setup -q -n accessors-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* # A few of the .pm modules have bogus execute permission find $RPM_BUILD_ROOT%{perl_vendorlib} -name *.pm | xargs chmod a-x %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README TODO %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jul 06 2009 Daniel P. Berrange 1.01-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-accessors/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:42:47 -0000 1.1 +++ .cvsignore 14 Jul 2009 09:43:41 -0000 1.2 @@ -0,0 +1,4 @@ +accessors-1.01.tar.gz +.build*.log +*.rpm +noarch Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-accessors/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:42:47 -0000 1.1 +++ sources 14 Jul 2009 09:43:41 -0000 1.2 @@ -0,0 +1 @@ +fc764c9cbfd03762c0d4f8ffaabaecb0 accessors-1.01.tar.gz From atorkhov at fedoraproject.org Tue Jul 14 09:46:10 2009 From: atorkhov at fedoraproject.org (Alexey Torkhov) Date: Tue, 14 Jul 2009 09:46:10 +0000 (UTC) Subject: rpms/gtranslator/devel gtranslator.spec,1.26,1.27 Message-ID: <20090714094610.5D81211C0497@cvs1.fedora.phx.redhat.com> Author: atorkhov Update of /cvs/pkgs/rpms/gtranslator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10868 Modified Files: gtranslator.spec Log Message: * Tue Jul 14 2009 Alexey Torkhov - 1.9.5-2 - Update for new gdl and requiring libuuid directly Index: gtranslator.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtranslator/devel/gtranslator.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- gtranslator.spec 4 Jun 2009 21:18:13 -0000 1.26 +++ gtranslator.spec 14 Jul 2009 09:46:09 -0000 1.27 @@ -1,6 +1,6 @@ Name: gtranslator Version: 1.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gettext po file editor for GNOME Group: Development/Tools @@ -9,6 +9,8 @@ URL: http://gtranslator.sourc Source0: http://ftp.gnome.org/pub/GNOME/sources/gtranslator/1.9/%{name}-%{version}.tar.bz2 # Bug reported: http://bugzilla.gnome.org/show_bug.cgi?id=584608 Patch0: %{name}-1.9.5-fix-update-desktop-database.patch +# Compatibility with new gdl, may not be suitable for upstream +Patch1: %{name}-1.9.5-gdl2.27.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gettext @@ -21,8 +23,7 @@ BuildRequires: perl(XML::Parser) BuildRequires: desktop-file-utils BuildRequires: scrollkeeper, intltool BuildRequires: gnome-doc-utils -# For libuuid: -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel Requires: yelp Requires: which @@ -54,6 +55,7 @@ developing applications that use %{name} %prep %setup -q %patch0 -p1 -z .fix-update +%patch1 -p1 -z .gdl %build @@ -130,6 +132,9 @@ update-desktop-database &> /dev/null || %changelog +* Tue Jul 14 2009 Alexey Torkhov - 1.9.5-2 +- Update for new gdl and requiring libuuid directly + * Sat May 30 2009 Alexey Torkhov - 1.9.5-1 - Update to 1.9.5 with help of patch by Arkady Shane. New version required a bunch of changes: - Dropped old patches From atorkhov at fedoraproject.org Tue Jul 14 09:46:54 2009 From: atorkhov at fedoraproject.org (Alexey Torkhov) Date: Tue, 14 Jul 2009 09:46:54 +0000 (UTC) Subject: rpms/gtranslator/devel gtranslator-1.9.5-gdl2.27.patch,NONE,1.1 Message-ID: <20090714094654.8D02F11C0497@cvs1.fedora.phx.redhat.com> Author: atorkhov Update of /cvs/pkgs/rpms/gtranslator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11154 Added Files: gtranslator-1.9.5-gdl2.27.patch Log Message: * Tue Jul 14 2009 Alexey Torkhov - 1.9.5-2 - Update for new gdl and requiring libuuid directly gtranslator-1.9.5-gdl2.27.patch: --- NEW FILE gtranslator-1.9.5-gdl2.27.patch --- diff -ur gtranslator-1.9.5.orig/src/prefs-manager-app.c gtranslator-1.9.5/src/prefs-manager-app.c --- gtranslator-1.9.5.orig/src/prefs-manager-app.c 2009-03-09 08:23:15.000000000 +0300 +++ gtranslator-1.9.5/src/prefs-manager-app.c 2009-07-14 13:31:50.000000000 +0400 @@ -28,7 +28,7 @@ #include #include -#include +#include #include "prefs-manager.h" #include "prefs-manager-private.h" diff -ur gtranslator-1.9.5.orig/src/prefs-manager.h gtranslator-1.9.5/src/prefs-manager.h --- gtranslator-1.9.5.orig/src/prefs-manager.h 2009-03-09 08:23:16.000000000 +0300 +++ gtranslator-1.9.5/src/prefs-manager.h 2009-07-14 13:31:36.000000000 +0400 @@ -33,7 +33,7 @@ #include -#include +#include /* Useful enum for sort order pref */ typedef enum diff -ur gtranslator-1.9.5.orig/src/window.c gtranslator-1.9.5/src/window.c --- gtranslator-1.9.5.orig/src/window.c 2009-04-11 05:03:51.000000000 +0400 +++ gtranslator-1.9.5/src/window.c 2009-07-14 13:32:01.000000000 +0400 @@ -43,7 +43,7 @@ #include #include #include -#include +#include #include #include From nickc at fedoraproject.org Tue Jul 14 09:48:33 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Tue, 14 Jul 2009 09:48:33 +0000 (UTC) Subject: rpms/binutils/devel binutils-2.19.51.0.10-build-id.patch, 1.1, 1.2 binutils.spec, 1.167, 1.168 Message-ID: <20090714094833.1B59411C0497@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11489 Modified Files: binutils-2.19.51.0.10-build-id.patch binutils.spec Log Message: Fix build-id patch to avoid memory corruption. (BZ 501582) binutils-2.19.51.0.10-build-id.patch: Index: binutils-2.19.51.0.10-build-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils-2.19.51.0.10-build-id.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- binutils-2.19.51.0.10-build-id.patch 22 Jun 2009 16:18:17 -0000 1.1 +++ binutils-2.19.51.0.10-build-id.patch 14 Jul 2009 09:48:32 -0000 1.2 @@ -1,7 +1,7 @@ -diff -rup ../binutils-2.19.51.0.10.orig/bfd/elfcode.h ./bfd/elfcode.h ---- ../binutils-2.19.51.0.10.orig/bfd/elfcode.h 2009-06-22 16:16:08.000000000 +0100 -+++ ./bfd/elfcode.h 2009-06-22 16:20:00.000000000 +0100 -@@ -1170,6 +1170,20 @@ elf_checksum_contents (bfd *abfd, +diff -rup ../binutils-2.19.51.0.11.orig/bfd/elfcode.h bfd/elfcode.h +--- ../binutils-2.19.51.0.11.orig/bfd/elfcode.h 2009-07-14 11:23:27.000000000 +0100 ++++ bfd/elfcode.h 2009-07-14 11:33:56.000000000 +0100 +@@ -1170,6 +1170,24 @@ elf_checksum_contents (bfd *abfd, if (i_shdr.contents) (*process) (i_shdr.contents, i_shdr.sh_size, arg); @@ -12,9 +12,13 @@ diff -rup ../binutils-2.19.51.0.10.orig/ + sec = bfd_section_from_elf_index (abfd, count); + if (sec != NULL) + { -+ if (sec->contents == NULL -+ && ! bfd_malloc_and_get_section (abfd, sec, & sec->contents)) -+ continue; ++ if (sec->contents == NULL) ++ { ++ /* Force rereading from file. */ ++ sec->flags &= ~SEC_IN_MEMORY; ++ if (! bfd_malloc_and_get_section (abfd, sec, & sec->contents)) ++ continue; ++ } + if (sec->contents != NULL) + (*process) (sec->contents, i_shdr.sh_size, arg); + } @@ -22,9 +26,9 @@ diff -rup ../binutils-2.19.51.0.10.orig/ } return TRUE; -diff -rup ../binutils-2.19.51.0.10.orig/bfd/section.c ./bfd/section.c ---- ../binutils-2.19.51.0.10.orig/bfd/section.c 2009-06-22 16:16:08.000000000 +0100 -+++ ./bfd/section.c 2009-06-22 16:20:42.000000000 +0100 +diff -rup ../binutils-2.19.51.0.11.orig/bfd/section.c bfd/section.c +--- ../binutils-2.19.51.0.11.orig/bfd/section.c 2009-07-14 11:23:27.000000000 +0100 ++++ bfd/section.c 2009-07-14 11:33:26.000000000 +0100 @@ -1477,7 +1477,7 @@ bfd_malloc_and_get_section (bfd *abfd, s if (sz == 0) return TRUE; Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.167 retrieving revision 1.168 diff -u -p -r1.167 -r1.168 --- binutils.spec 11 Jul 2009 21:25:27 -0000 1.167 +++ binutils.spec 14 Jul 2009 09:48:32 -0000 1.168 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.11 -Release: 24%{?dist} +Release: 25%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -351,6 +351,9 @@ fi %endif # %{isnative} %changelog +* Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-25 +- Fix build-id patch to avoid memory corruption. (BZ 501582) + * Sat Jul 11 2009 Jan Kratochvil 2.19.51.0.11-24 - Provide uuencode output of the testsuite results. From nickc at fedoraproject.org Tue Jul 14 10:00:42 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Tue, 14 Jul 2009 10:00:42 +0000 (UTC) Subject: rpms/binutils/devel binutils-2.19.51.0.11-orphan-section-placement.patch, NONE, 1.1 binutils.spec, 1.168, 1.169 Message-ID: <20090714100042.D25B411C0497@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14845 Modified Files: binutils.spec Added Files: binutils-2.19.51.0.11-orphan-section-placement.patch Log Message: Import orphan section placement patch from mainline. (BZ 510384) binutils-2.19.51.0.11-orphan-section-placement.patch: --- NEW FILE binutils-2.19.51.0.11-orphan-section-placement.patch --- --- ../binutils-2.19.51.0.11.orig/ld/ldlang.c 2009-07-14 11:42:46.000000000 +0100 +++ ld/ldlang.c 2009-07-14 11:55:01.000000000 +0100 @@ -1615,10 +1615,12 @@ output_prev_sec_find (lang_output_sectio idea is to skip over anything that might be inside a SECTIONS {} statement in a script, before we find another output section statement. Assignments to "dot" before an output section statement - are assumed to belong to it. An exception to this rule is made for - the first assignment to dot, otherwise we might put an orphan - before . = . + SIZEOF_HEADERS or similar assignments that set the - initial address. */ + are assumed to belong to it, except in two cases; The first + assignment to dot, and assignments before non-alloc sections. + Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or + similar assignments that set the initial address, or we might + insert non-alloc note sections among assignments setting end of + image symbols. */ static lang_statement_union_type ** insert_os_after (lang_output_section_statement_type *after) @@ -1662,7 +1664,12 @@ insert_os_after (lang_output_section_sta continue; case lang_output_section_statement_enum: if (assign != NULL) - where = assign; + { + asection *s = (*where)->output_section_statement.bfd_section; + + if (s == NULL || (s->flags & SEC_ALLOC) != 0) + where = assign; + } break; case lang_input_statement_enum: case lang_address_statement_enum: Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.168 retrieving revision 1.169 diff -u -p -r1.168 -r1.169 --- binutils.spec 14 Jul 2009 09:48:32 -0000 1.168 +++ binutils.spec 14 Jul 2009 10:00:42 -0000 1.169 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.11 -Release: 25%{?dist} +Release: 26%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -30,6 +30,7 @@ Patch04: binutils-2.19.51.0.10-envvar-re Patch05: binutils-2.19.51.0.10-version.patch Patch06: binutils-2.19.51.0.10-set-long-long.patch Patch07: binutils-2.19.51.0.10-build-id.patch +Patch08: binutils-2.19.51.0.11-orphan-section-placement.patch %if 0%{?_with_debug:1} # Define this if you want to skip the strip step and preserve debug info. @@ -101,6 +102,7 @@ to consider using libelf instead of BFD. %patch05 -p0 -b .version~ %patch06 -p0 -b .set-long-long~ %patch07 -p0 -b .build-id~ +%patch08 -p0 -b .orphan-section-placement~ # We cannot run autotools as there is an exact requirement of autoconf-2.59. @@ -351,6 +353,9 @@ fi %endif # %{isnative} %changelog +* Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-26 +- Import orphan section placement patch from mainline. (BZ 510384) + * Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-25 - Fix build-id patch to avoid memory corruption. (BZ 501582) From harald at fedoraproject.org Tue Jul 14 10:06:45 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Tue, 14 Jul 2009 10:06:45 +0000 (UTC) Subject: rpms/udev/F-11 start_udev,1.82,1.83 udev.spec,1.274,1.275 Message-ID: <20090714100645.BBA8E11C0497@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16532 Modified Files: start_udev udev.spec Log Message: * Tue Jul 14 2009 Harald Hoyer 141-5 - add /dev/fuse to be created by start_udev - add "udevlog" kernel command line option to redirect the output of udevd to /dev/.udev/udev.log Index: start_udev =================================================================== RCS file: /cvs/pkgs/rpms/udev/F-11/start_udev,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- start_udev 3 Mar 2009 13:11:08 -0000 1.82 +++ start_udev 14 Jul 2009 10:06:45 -0000 1.83 @@ -99,36 +99,27 @@ make_extra_nodes () { USE_MD5="false" [ -x /usr/bin/md5sum -a "$UDEV_USE_MAKEDEV_CACHE" == "yes" ] && USE_MD5="true" + for i in 0 1 2 3 4 5 6 7; do + [ -b /dev/loop$i ] || /bin/mknod -m 0640 /dev/loop$i b 7 $i + /bin/chown root:disk /dev/loop$i + done + + for i in 0 1 2 3; do + [ -c /dev/lp$i ] || /bin/mknod -m 0660 /dev/lp$i c 6 $i + /bin/chown root:lp /dev/lp$i + done + [ -d /dev/net ] || mkdir -p /dev/net - /bin/mknod -m 0640 /dev/loop0 b 7 0 - /bin/chown root:disk /dev/loop0 - /bin/mknod -m 0640 /dev/loop1 b 7 1 - /bin/chown root:disk /dev/loop1 - /bin/mknod -m 0640 /dev/loop2 b 7 2 - /bin/chown root:disk /dev/loop2 - /bin/mknod -m 0640 /dev/loop3 b 7 3 - /bin/chown root:disk /dev/loop3 - /bin/mknod -m 0640 /dev/loop4 b 7 4 - /bin/chown root:disk /dev/loop4 - /bin/mknod -m 0640 /dev/loop5 b 7 5 - /bin/chown root:disk /dev/loop5 - /bin/mknod -m 0640 /dev/loop6 b 7 6 - /bin/chown root:disk /dev/loop6 - /bin/mknod -m 0640 /dev/loop7 b 7 7 - /bin/chown root:disk /dev/loop7 - /bin/mknod -m 0600 /dev/net/tun c 10 200 - /bin/chown root:root /dev/net/tun - /bin/mknod -m 0600 /dev/ppp c 108 0 - /bin/chown root:root /dev/ppp - /bin/mknod -m 0660 /dev/lp0 c 6 0 - /bin/chown root:lp /dev/lp0 - /bin/mknod -m 0660 /dev/lp1 c 6 1 - /bin/chown root:lp /dev/lp1 - /bin/mknod -m 0660 /dev/lp2 c 6 2 - /bin/chown root:lp /dev/lp2 - /bin/mknod -m 0660 /dev/lp3 c 6 3 - /bin/chown root:lp /dev/lp3 - [ -x /sbin/restorecon ] && /sbin/restorecon /dev/loop0 /dev/loop1 /dev/loop2 /dev/loop3 /dev/loop4 /dev/loop5 /dev/loop6 /dev/loop7 /dev/net/tun /dev/ppp /dev/lp0 /dev/lp1 /dev/lp2 /dev/lp3 + [ -c /dev/net/tun ] || /bin/mknod -m 0600 /dev/net/tun c 10 200 + #/bin/chown root:root /dev/net/tun + + [ -c /dev/ppp ] || /bin/mknod -m 0600 /dev/ppp c 108 0 + #/bin/chown root:root /dev/ppp + + [ -c /dev/fuse ] || /bin/mknod -m 0666 /dev/fuse c 10 229 + #/bin/chown root:root /dev/fuse + + [ -x /sbin/restorecon ] && /sbin/restorecon /dev/loop0 /dev/loop1 /dev/loop2 /dev/loop3 /dev/loop4 /dev/loop5 /dev/loop6 /dev/loop7 /dev/net/tun /dev/ppp /dev/lp0 /dev/lp1 /dev/lp2 /dev/lp3 /dev/fuse if [ -x "$MAKEDEV" ]; then for i in /etc/udev/makedev.d/*.nodes; do @@ -258,6 +249,7 @@ make_extra_nodes & cmdline=$(cat /proc/cmdline) kill_udevd > "$udev_root/null" 2>&1 rm -fr $udev_root/.udev > "$udev_root/null" 2>&1 +mkdir -p $udev_root/.udev > "$udev_root/null" 2>&1 UDEV_OPTS="" if [ -f "/sys/class/tty/console/uevent" ]; then # trigger the sorted events @@ -266,7 +258,14 @@ if [ -f "/sys/class/tty/console/uevent" if strstr "$cmdline" udevtrace; then UDEV_OPTS="$UDEV_OPTS --debug-trace" fi - /sbin/udevd -d $UDEV_OPTS + if strstr "$cmdline" udevlog; then + UDEV_OPTS="$UDEV_OPTS --debug" + /sbin/udevd -d $UDEV_OPTS 2>$udev_root/.udev/udev.log + else + /sbin/udevd -d $UDEV_OPTS $UDEV_REDIR + fi + + wait ret=$[$ret + $?] Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/F-11/udev.spec,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- udev.spec 30 Jun 2009 11:46:28 -0000 1.274 +++ udev.spec 14 Jul 2009 10:06:45 -0000 1.275 @@ -6,7 +6,7 @@ Summary: A userspace implementation of devfs Name: udev Version: 141 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: System Environment/Base Provides: udev-persistent = %{version}-%{release} @@ -408,6 +408,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Harald Hoyer 141-5 +- add /dev/fuse to be created by start_udev +- add "udevlog" kernel command line option to redirect the + output of udevd to /dev/.udev/udev.log + * Tue Jun 30 2009 Harald Hoyer 141-4 - really try to kill udevd in %post (bug #481075) - show "isw_raid_member" before "linux_raid_member" with vol_id (bug #499246) From ruben at fedoraproject.org Tue Jul 14 10:06:40 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Tue, 14 Jul 2009 10:06:40 +0000 (UTC) Subject: rpms/sendxmpp/devel import.log, NONE, 1.1 sendxmpp.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714100640.A23E911C0497@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/sendxmpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16439/devel Modified Files: .cvsignore sources Added Files: import.log sendxmpp.spec Log Message: Initial import --- NEW FILE import.log --- sendxmpp-0_0_8-2_fc11:HEAD:sendxmpp-0.0.8-2.fc11.src.rpm:1247565980 --- NEW FILE sendxmpp.spec --- Name: sendxmpp Version: 0.0.8 Release: 2%{?dist} Summary: A perl script to send xmpp messages Group: Applications/Communications License: GPLv2 URL: http://sendxmpp.platon.sk/ Source0: http://sendxmpp.platon.sk/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker), perl(Net::XMPP) %description A perl script to send xmpp messages. %prep %setup -q %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' chmod -R u+w %{buildroot}/* %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_mandir}/man1/%{name}.1* %changelog * Tue Jun 09 2009 Ruben Kerkhof 0.0.8-2 - Review fixes (#504641) * Mon Jun 08 2009 Ruben Kerkhof 0.0.8-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:25:01 -0000 1.1 +++ .cvsignore 14 Jul 2009 10:06:40 -0000 1.2 @@ -0,0 +1 @@ +sendxmpp-0.0.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:25:02 -0000 1.1 +++ sources 14 Jul 2009 10:06:40 -0000 1.2 @@ -0,0 +1 @@ +8a041f4940274f4d1e72e76fcc95e689 sendxmpp-0.0.8.tar.gz From npajkovs at fedoraproject.org Tue Jul 14 10:12:21 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Tue, 14 Jul 2009 10:12:21 +0000 (UTC) Subject: rpms/inn/devel inn.spec,1.66,1.67 Message-ID: <20090714101221.7BA1F11C0497@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/inn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17615 Modified Files: inn.spec Log Message: fix comiplation problem Index: inn.spec =================================================================== RCS file: /cvs/extras/rpms/inn/devel/inn.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- inn.spec 13 Jul 2009 13:53:29 -0000 1.66 +++ inn.spec 14 Jul 2009 10:11:51 -0000 1.67 @@ -449,15 +449,19 @@ exit 0 %dir /usr/lib/news/lib /usr/lib/news/lib/innreport_inn.pm -/usr/lib/news/lib/libinnhist.so.2 -/usr/lib/news/lib/libstorage.so.2.0.0 -/usr/lib/news/lib/libstorage.so.2 +%{_libdir}/news/lib/libinnhist.so.2 +%{_libdir}/news/lib/libinnhist.so.2.0.0 +%{_libdir}/news/lib/libinnhist.so +%{_libdir}/news/lib/libstorage.so +%{_libdir}/news/lib/libstorage.so.2 +%{_libdir}/news/lib/libstorage.so.2.0.0 +%{_libdir}/news/lib/libinn.so +%{_libdir}/news/lib/libinn.so.2 +%{_libdir}/news/lib/libinn.so.2.0.0 + %config(noreplace) /usr/lib/news/lib/innshellvars.pl %config(noreplace) /usr/lib/news/lib/innshellvars %config(noreplace) /usr/lib/news/lib/innshellvars.tcl -/usr/lib/news/lib/libinn.so.2 -/usr/lib/news/lib/libinn.so.2.0.0 -/usr/lib/news/lib/libinnhist.so.2.0.0 %dir /usr/lib/news/doc /usr/lib/news/doc/LICENSE @@ -530,9 +534,9 @@ exit 0 /usr/include/inn/libinn.h /usr/include/inn/storage.h /usr/include/inn/system.h -/usr/lib/news/lib/libstorage.so -/usr/lib/news/lib/libinn.so -/usr/lib/news/lib/libinnhist.so +%{_libdir}/news/lib/libstorage.so +%{_libdir}/news/lib/libinn.so +%{_libdir}/news/lib/libinnhist.so %{_mandir}/man3/* %files -n inews From denisarnaud at fedoraproject.org Tue Jul 14 10:28:03 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Tue, 14 Jul 2009 10:28:03 +0000 (UTC) Subject: rpms/R-msm/devel R-msm.spec,1.2,1.3 import.log,1.2,1.3 Message-ID: <20090714102803.C6DAF11C0497@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-msm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21635/devel Modified Files: R-msm.spec import.log Log Message: * Tue Jul 14 2009 Denis Arnaud 0.9.1-2 - Suppressed the unused definition of the packrel variable Index: R-msm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/devel/R-msm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-msm.spec 12 Jun 2009 14:31:57 -0000 1.2 +++ R-msm.spec 14 Jul 2009 10:27:33 -0000 1.3 @@ -1,9 +1,8 @@ %global packname msm -%global packrel 1 Name: R-%{packname} Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/web/packages/msm/ @@ -82,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/libs/%{packname}.so %changelog +* Tue Jul 14 2009 Denis Arnaud 0.9.1-2 +- Suppressed the unused definition of the packrel variable + * Fri Jun 12 2009 Denis Arnaud 0.9.1-1 - Integrated the new upstream (0.9.1) version Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 12 Jun 2009 14:31:57 -0000 1.2 +++ import.log 14 Jul 2009 10:27:33 -0000 1.3 @@ -1,2 +1,3 @@ R-msm-0_8_2-2_fc10:HEAD:R-msm-0.8.2-2.fc10.src.rpm:1244670809 R-msm-0_9_1-1_fc10:HEAD:R-msm-0.9.1-1.fc10.src.rpm:1244817014 +R-msm-0_9_1-2_fc11:HEAD:R-msm-0.9.1-2.fc11.src.rpm:1247567225 From jskala at fedoraproject.org Tue Jul 14 10:28:08 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 10:28:08 +0000 (UTC) Subject: rpms/bltk/devel bltk-1.0.9-all.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 bltk.spec, 1.2, 1.3 sources, 1.2, 1.3 bltk-1.0.8-all.patch, 1.2, NONE Message-ID: <20090714102808.2EF6D11C0497@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/bltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21677 Modified Files: .cvsignore bltk.spec sources Added Files: bltk-1.0.9-all.patch Removed Files: bltk-1.0.8-all.patch Log Message: * Tue Jul 14 2009 Jiri Skala 1.0.9-1 - merged with latest upstream sources bltk-1.0.9-all.patch: --- NEW FILE bltk-1.0.9-all.patch --- --- orig-1.0.9/tools/bltk/main.c 2009-04-10 09:14:20.000000000 +0200 +++ curr-1.0.9/tools/bltk/main.c 2009-07-13 15:39:08.302608302 +0200 @@ -57,6 +57,7 @@ #include #include "bltk.h" +#include "parseconf.h" #define OUTPUT_CONSOLE 10 #define OUTPUT_FILE 20 @@ -206,6 +207,7 @@ char *bltk_dirname = NULL; char bltk_root[STR_LEN]; +//char bltk_home[STR_LEN]; char bltk_extern[STR_LEN]; char *workload = NULL; @@ -328,6 +330,7 @@ static void get_info(int no); static int sig_abort_flg = 0; +static int sig_hup_flg = 0; static int help_cnt = 0; static int version_flg = 0; @@ -539,7 +542,16 @@ turn_off_stat_memory(); if (sig == SIGHUP) { - set_signal(SIGHUP); + create_stop_file(); +/* if (!stat_log_proc_flg) { + create_stop_file(); + save_sys_info_2(); + sig_hup_flg = 1; + sync(); + if (pid_stat_log != EMPTY_VALUE) + (void)kill(pid_stat_log, SIGHUP); + } + prog_exit(0);*/ return; } @@ -960,12 +972,13 @@ char str[STR_LEN]; int ret, i; - (void)unlink(LAST_RESULTS); - ret = symlink(results, LAST_RESULTS); + sprintf(str, "%s/%s", bltk_home, LAST_RESULTS); + (void)unlink(str); + ret = symlink(results, str); if (ret != 0) { (void)sprintf(prt_str, "symlink(%s, %s) failed, " "errno %d (%s)\n", - results, LAST_RESULTS, errno, strerror(errno)); + results, str, errno, strerror(errno)); write_to_err_log(prt_str); prog_exit(1); } @@ -987,6 +1000,7 @@ (void)sprintf(fail_fname, "%s/fail", results); (void)sprintf(pass_fname, "%s/pass", results); prog_putenv("BLTK_FAIL_FNAME", fail_fname); + prog_putenv("BLTK_STOP_FNAME", stop_fname); prog_putenv("BLTK_PASS_FNAME", pass_fname); (void)sprintf(err_log_fname, "%s/err.log", results); @@ -1041,10 +1055,12 @@ } (void)strcat(cmdline, "'"); - (void)sprintf(cmd, "%s >>history", cmdline); + sprintf(str, "%s/%s", bltk_home, HISTORY); + (void)sprintf(cmd, "%s >>%s", cmdline, str); (void)prog_system(cmd); - (void)sprintf(cmd, "%s >last_cmd", cmdline); + sprintf(str, "%s/%s", bltk_home, LAST_CMD); + (void)sprintf(cmd, "%s >%s", cmdline, str); (void)prog_system(cmd); (void)sprintf(cmd, "%s >%s/cmd", cmdline, results); @@ -1078,7 +1094,7 @@ set_signal(SIGUSR2); set_signal(SIGHUP); - (void)sprintf(cmd, "mkdir -p -m 0777 %s/tmp", bltk_root); + (void)sprintf(cmd, "mkdir -p -m 0777 %s/tmp", bltk_home); ret = prog_system(cmd); if (ret != 0) { (void)sprintf(prt_str, "%s failed\n", cmd); @@ -1608,6 +1624,28 @@ return (wp1); } +static char *get_bltk_root_by_proc() +{ + char str[256], *path, *ret=NULL; + + snprintf(str, sizeof str, "/proc/%d/exe", getpid()); + if (readlink(str, str, sizeof str) > -1) + { + if ((path = dirname(str))) + { + // take one folder higher + ret = strrchr(path, '/'); + if (ret != NULL) + { + *ret = 0; + ret = path; + } + } + } + + return ret ? strdup(ret) : ret; +} + static char *get_bltk_root_by_path(char *argv0) { char *path, *dpath, *res; @@ -1648,7 +1686,8 @@ int ret; char cwd[STR_LEN]; - wp1 = check_bltk_root("."); + //wp1 = check_bltk_root("."); + wp1 = get_bltk_root_by_proc(); if (wp1 == NULL) { wp1 = get_bltk_root_by_argv0(argv0); } @@ -1792,6 +1831,12 @@ (void)umask(0); (void)set_path(0); + param_init(); + + prog_putenv("BLTK_HOME", bltk_home); + prog_putenv("WL_OFFICE_WORKING_DIR", wl_office_working_dir); + prog_putenv("WL_READER_WORKING_DIR", wl_office_working_dir); + time_start = time_prev = prog_time(); (void)prog_system("xset dpms 0 0 0 >/dev/null 2>&1"); @@ -2125,7 +2170,7 @@ ("getcwd() failed, cannot continue the test\n"); prog_exit(1); } - (void)sprintf(results_str, "%s/%s", results_parent, results); + (void)sprintf(results_str, "%s/%s", bltk_home, results); results = results_str; } --- orig-1.0.9/tools/bltk/parseconf.c 1970-01-01 01:00:00.000000000 +0100 +++ curr-1.0.9/tools/bltk/parseconf.c 2009-07-13 10:04:45.480608150 +0200 @@ -0,0 +1,299 @@ +/* + * Copyright (c) 2009 Red Hat Inc. + * Copyright (c) 2009 Jiri Skala + * All rights reserved. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * + * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + */ + +#include +#include +#include +#include [...1940 lines suppressed...] +++ curr-1.0.9/wl_office/scen 2009-07-13 10:04:45.497608395 +0200 @@ -20,9 +20,8 @@ PRESSKEY 0 2 3000 Return DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 e -#PRESSKEY 0 11 150 Down -PRESSKEY C 0 1000 f +PRESSKEY A 0 1000 e +PRESSKEY 0 0 150 f DELAY 0 0 2000 0 PRESSKEY 0 0 2000 Return @@ -35,7 +34,7 @@ DELAY 0 0 2000 0 PRESSKEY A 0 3000 l -SETWINDOW 0 0 0 \"OpenOffice.org 3.0 \": +SETWINDOW 0 0 0 \"OpenOffice.org .* \": FOCUSIN 0 0 150 0 DELAY 0 0 3000 0 @@ -43,7 +42,7 @@ RELEASEKEY 0 0 1000 Return DELAY 0 0 2000 0 -ENDWINDOW 0 0 0 \"OpenOffice.org 3.0 \": +ENDWINDOW 0 0 0 \"OpenOffice.org .* \": SETWINDOW 0 0 0 Find & Replace @@ -63,14 +62,12 @@ PRESSKEY 0 2 3000 Return DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 f -#PRESSKEY 0 4 150 Down -PRESSKEY C 0 1000 s +PRESSKEY A 0 1000 f +PRESSKEY 0 0 150 s DELAY 0 0 2000 0 PRESSKEY A 0 1000 f -PRESSKEY 0 18 150 Down +PRESSKEY 0 0 150 x DELAY 0 0 3000 0 -PRESSKEY 0 0 6000 Return ENDWINDOW 0 0 0 OOWRITER_FILE.odt @@ -156,14 +153,13 @@ TYPETEXT 0 0 150 Total Pays DELAY 0 0 3000 0 -#PRESSKEY A 0 1000 f -#PRESSKEY 0 4 150 Down -PRESSKEY C 0 1000 s +PRESSKEY A 0 1000 f +PRESSKEY 0 0 150 s DELAY 0 0 2000 0 +DELAY 0 0 3000 0 PRESSKEY A 0 1000 f -PRESSKEY 0 18 150 Down +PRESSKEY 0 0 150 x DELAY 0 0 3000 0 -PRESSKEY 0 0 5000 Return ENDWINDOW 0 0 0 OOCALC_FILE.ods @@ -187,7 +183,7 @@ PRESSKEY 0 0 1000 Tab PRESSKEY A 0 1000 e -PRESSKEY 0 5 150 Down +PRESSKEY 0 0 150 e DELAY 0 0 1000 0 PRESSKEY 0 0 500 Return @@ -224,116 +220,27 @@ DELAY 0 0 3000 0 PRESSKEY A 0 1000 v -DELAY 0 0 2000 0 -PRESSKEY 0 0 1000 z -PRESSKEY 0 0 500 Return +PRESSKEY 0 0 500 z -SETWINDOW 0 0 0 Zoom & View Layout +SETWINDOW 0 0 0 Zoom FOCUSIN 0 0 150 0 DELAY 0 0 1000 0 PRESSKEY S 5 150 Right -TYPETEXT 0 0 150 150 +TYPETEXT 0 0 150 100 PRESSKEY 0 0 500 Return -RELEASEKEY 0 0 1000 Return +RELEASEKEY 0 0 500 Return -ENDWINDOW 0 0 0 Zoom & View Layout +ENDWINDOW 0 0 0 Zoom SETWINDOW 0 0 0 OODRAW_FILE.odg FOCUSIN 0 0 150 0 DELAY 0 0 2000 0 -PRESSKEY A 0 1000 i -PRESSKEY 0 0 150 o -DELAY 0 0 1000 0 -PRESSKEY 0 0 150 o -DELAY 0 0 1000 0 -PRESSKEY 0 1 500 Return - -SETWINDOW 0 0 0 Insert OLE Object - -FOCUSIN 0 0 150 0 -PRESSKEY 0 0 500 Return -RELEASEKEY 0 0 1000 Return - -ENDWINDOW 0 0 0 Insert OLE Object - -SETWINDOW 0 0 0 OODRAW_FILE.odg - -FOCUSIN 0 0 150 0 -TYPETEXT 0 0 150 Name -PRESSKEY 0 0 1000 Right -TYPETEXT 0 0 150 Workdays -PRESSKEY 0 0 1000 Right -TYPETEXT 0 0 150 Pay Rate -PRESSKEY 0 0 1000 Right -TYPETEXT 0 0 150 Salary -PRESSKEY 0 0 1000 Down -PRESSKEY 0 3 500 Left - -DELAY 0 0 3000 0 -TYPETEXT 0 0 150 John -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 Jane -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 Sam -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 Sarah -PRESSKEY 0 0 1000 Right -PRESSKEY 0 3 500 Up - -DELAY 0 0 3000 0 -TYPETEXT 0 0 150 12 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 20 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 15 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 10 -PRESSKEY 0 0 1000 Right -PRESSKEY 0 3 500 Up - -DELAY 0 0 3000 0 -TYPETEXT 0 0 150 25 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 20 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 25 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 150 40 -PRESSKEY 0 0 1000 Right -PRESSKEY 0 3 500 Up - -DELAY 0 0 3000 0 -TYPETEXT 0 0 300 =b2*c2 -DELAY 0 0 1000 0 -PRESSKEY 0 0 1000 Return -PRESSKEY 0 0 1000 Up -PRESSKEY C 0 1000 c -PRESSKEY 0 0 200 Down -PRESSKEY S 2 500 Down -PRESSKEY C 0 1000 v - -DELAY 0 0 3000 0 -PRESSKEY 0 0 1000 Down -TYPETEXT 0 0 300 =sum( -PRESSKEY 0 0 500 Up -PRESSKEY S 3 500 Up -TYPETEXT 0 0 500 ) -DELAY 0 0 1000 0 -PRESSKEY 0 0 1000 Return - -DELAY 0 0 3000 0 -PRESSKEY 0 0 1000 Left -PRESSKEY 0 0 1000 Up -TYPETEXT 0 0 150 Total Pays - -DELAY 0 0 3000 0 -PRESSKEY 0 3 3000 Esc PRESSKEY A 0 1000 f PRESSKEY 0 0 150 s -DELAY 0 0 3000 0 +DELAY 0 0 2000 0 PRESSKEY A 0 1000 f PRESSKEY 0 0 150 x Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 Mar 2009 08:51:16 -0000 1.2 +++ .cvsignore 14 Jul 2009 10:27:37 -0000 1.3 @@ -1 +1 @@ -bltk-1.0.8.tar.gz +bltk-1.0.9.tar.gz Index: bltk.spec =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bltk.spec 10 Apr 2009 13:20:48 -0000 1.2 +++ bltk.spec 14 Jul 2009 10:27:38 -0000 1.3 @@ -1,6 +1,6 @@ -Name: bltk -Version: 1.0.8 -Release: 2%{?dist} +Name: bltk +Version: 1.0.9 +Release: 1%{?dist} Summary: The BLTK measures notebook battery life under any workload Group: Applications/System @@ -12,7 +12,7 @@ Source2: OOCALC_FILE_SAMPLE.ods Source3: OODRAW_FILE_SAMPLE.odg Source4: OOWRITER_FILE_SAMPLE.odt -Patch0: bltk-1.0.8-all.patch +Patch0: bltk-1.0.9-all.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -194,6 +194,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/bltk/wl_reader/war_and_peace.html %changelog +* Tue Jul 14 2009 Jiri Skala 1.0.9-1 +- merged with latest upstream sources + * Fri Apr 10 2009 Jiri Skala 1.0.8-2 - optimized bltk.conf - SOFFICE_PROG - fixed working dir in reports Index: sources =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 Mar 2009 08:51:16 -0000 1.2 +++ sources 14 Jul 2009 10:27:38 -0000 1.3 @@ -1 +1 @@ -790f76ec479abb166b4c5fcb98106d87 bltk-1.0.8.tar.gz +d4b3d79cd6ff11fa1fcd8a4abcdb6882 bltk-1.0.9.tar.gz --- bltk-1.0.8-all.patch DELETED --- From denisarnaud at fedoraproject.org Tue Jul 14 10:29:36 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Tue, 14 Jul 2009 10:29:36 +0000 (UTC) Subject: rpms/R-msm/EL-5 R-msm.spec,1.2,1.3 import.log,1.2,1.3 Message-ID: <20090714102936.6174711C0497@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-msm/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22341/EL-5 Modified Files: R-msm.spec import.log Log Message: * Tue Jul 14 2009 Denis Arnaud 0.9.1-2 - Suppressed the unused definition of the packrel variable Index: R-msm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/EL-5/R-msm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-msm.spec 12 Jun 2009 14:45:50 -0000 1.2 +++ R-msm.spec 14 Jul 2009 10:29:36 -0000 1.3 @@ -1,9 +1,8 @@ %global packname msm -%global packrel 1 Name: R-%{packname} Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/web/packages/msm/ @@ -82,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/libs/%{packname}.so %changelog +* Tue Jul 14 2009 Denis Arnaud 0.9.1-2 +- Suppressed the unused definition of the packrel variable + * Fri Jun 12 2009 Denis Arnaud 0.9.1-1 - Integrated the new upstream (0.9.1) version Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/EL-5/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 12 Jun 2009 14:45:50 -0000 1.2 +++ import.log 14 Jul 2009 10:29:36 -0000 1.3 @@ -1,2 +1,3 @@ R-msm-0_8_2-2_fc10:EL-5:R-msm-0.8.2-2.fc10.src.rpm:1244671685 R-msm-0_9_1-1_fc10:EL-5:R-msm-0.9.1-1.fc10.src.rpm:1244817898 +R-msm-0_9_1-2_fc11:EL-5:R-msm-0.9.1-2.fc11.src.rpm:1247567348 From harald at fedoraproject.org Tue Jul 14 10:33:25 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Tue, 14 Jul 2009 10:33:25 +0000 (UTC) Subject: rpms/udev/devel udev-145.tar.bz2.sign, NONE, 1.1 start_udev, 1.83, 1.84 udev.spec, 1.284, 1.285 upstream, 1.11, 1.12 udev-143.tar.bz2.sign, 1.1, NONE Message-ID: <20090714103325.5317B11C0497@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23296 Modified Files: start_udev udev.spec upstream Added Files: udev-145.tar.bz2.sign Removed Files: udev-143.tar.bz2.sign Log Message: * Tue Jul 14 2009 Harald Hoyer 145-1 - version 145 - add "udevlog" kernel command line option to redirect the output of udevd to /dev/.udev/udev.log --- NEW FILE udev-145.tar.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKWxhnyGugalF9Dw4RAvvjAJ9ed+RMRi8gXcFyTPxXsHZpbLSROgCfdpCc lr5nSwsGGO9e0+wBbD7WDoc= =5/z0 -----END PGP SIGNATURE----- Index: start_udev =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/start_udev,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- start_udev 15 May 2009 14:39:37 -0000 1.83 +++ start_udev 14 Jul 2009 10:32:54 -0000 1.84 @@ -99,37 +99,25 @@ make_extra_nodes () { USE_MD5="false" [ -x /usr/bin/md5sum -a "$UDEV_USE_MAKEDEV_CACHE" == "yes" ] && USE_MD5="true" + for i in 0 1 2 3 4 5 6 7; do + [ -b /dev/loop$i ] || /bin/mknod -m 0640 /dev/loop$i b 7 $i + /bin/chown root:disk /dev/loop$i + done + + for i in 0 1 2 3; do + [ -c /dev/lp$i ] || /bin/mknod -m 0660 /dev/lp$i c 6 $i + /bin/chown root:lp /dev/lp$i + done + [ -d /dev/net ] || mkdir -p /dev/net - /bin/mknod -m 0640 /dev/loop0 b 7 0 - /bin/chown root:disk /dev/loop0 - /bin/mknod -m 0640 /dev/loop1 b 7 1 - /bin/chown root:disk /dev/loop1 - /bin/mknod -m 0640 /dev/loop2 b 7 2 - /bin/chown root:disk /dev/loop2 - /bin/mknod -m 0640 /dev/loop3 b 7 3 - /bin/chown root:disk /dev/loop3 - /bin/mknod -m 0640 /dev/loop4 b 7 4 - /bin/chown root:disk /dev/loop4 - /bin/mknod -m 0640 /dev/loop5 b 7 5 - /bin/chown root:disk /dev/loop5 - /bin/mknod -m 0640 /dev/loop6 b 7 6 - /bin/chown root:disk /dev/loop6 - /bin/mknod -m 0640 /dev/loop7 b 7 7 - /bin/chown root:disk /dev/loop7 - /bin/mknod -m 0600 /dev/net/tun c 10 200 - /bin/chown root:root /dev/net/tun - /bin/mknod -m 0600 /dev/ppp c 108 0 - /bin/chown root:root /dev/ppp - /bin/mknod -m 0660 /dev/lp0 c 6 0 - /bin/chown root:lp /dev/lp0 - /bin/mknod -m 0660 /dev/lp1 c 6 1 - /bin/chown root:lp /dev/lp1 - /bin/mknod -m 0660 /dev/lp2 c 6 2 - /bin/chown root:lp /dev/lp2 - /bin/mknod -m 0660 /dev/lp3 c 6 3 - /bin/chown root:lp /dev/lp3 - /bin/mknod -m 0666 /dev/fuse c 10 229 - /bin/chown root:root /dev/fuse + [ -c /dev/net/tun ] || /bin/mknod -m 0600 /dev/net/tun c 10 200 + #/bin/chown root:root /dev/net/tun + + [ -c /dev/ppp ] || /bin/mknod -m 0600 /dev/ppp c 108 0 + #/bin/chown root:root /dev/ppp + + [ -c /dev/fuse ] || /bin/mknod -m 0666 /dev/fuse c 10 229 + #/bin/chown root:root /dev/fuse [ -x /sbin/restorecon ] && /sbin/restorecon /dev/loop0 /dev/loop1 /dev/loop2 /dev/loop3 /dev/loop4 /dev/loop5 /dev/loop6 /dev/loop7 /dev/net/tun /dev/ppp /dev/lp0 /dev/lp1 /dev/lp2 /dev/lp3 /dev/fuse @@ -261,6 +249,7 @@ make_extra_nodes & cmdline=$(cat /proc/cmdline) kill_udevd > "$udev_root/null" 2>&1 rm -fr $udev_root/.udev > "$udev_root/null" 2>&1 +mkdir -p $udev_root/.udev > "$udev_root/null" 2>&1 UDEV_OPTS="" if [ -f "/sys/class/tty/console/uevent" ]; then # trigger the sorted events @@ -269,7 +258,14 @@ if [ -f "/sys/class/tty/console/uevent" if strstr "$cmdline" udevtrace; then UDEV_OPTS="$UDEV_OPTS --debug-trace" fi - /sbin/udevd -d $UDEV_OPTS + + if strstr "$cmdline" udevlog; then + UDEV_OPTS="$UDEV_OPTS --debug" + /sbin/udevd -d $UDEV_OPTS 2>$udev_root/.udev/udev.log + else + /sbin/udevd -d $UDEV_OPTS + fi + wait ret=$[$ret + $?] Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v retrieving revision 1.284 retrieving revision 1.285 diff -u -p -r1.284 -r1.285 --- udev.spec 3 Jul 2009 13:48:12 -0000 1.284 +++ udev.spec 14 Jul 2009 10:32:55 -0000 1.285 @@ -4,8 +4,8 @@ Summary: A userspace implementation of devfs Name: udev -Version: 143 -Release: 2%{?dist} +Version: 145 +Release: 1%{?dist} License: GPLv2 Group: System Environment/Base Provides: udev-persistent = %{version}-%{release} @@ -336,6 +336,11 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{_libdir}/pkgconfig/gudev-1.0* %changelog +* Tue Jul 14 2009 Harald Hoyer 145-1 +- version 145 +- add "udevlog" kernel command line option to redirect the + output of udevd to /dev/.udev/udev.log + * Fri Jul 03 2009 Harald Hoyer 143-2 - add acpi floppy modalias - add retrigger of failed events in udev-post.init Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/upstream,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- upstream 22 Jun 2009 09:59:16 -0000 1.11 +++ upstream 14 Jul 2009 10:32:55 -0000 1.12 @@ -1 +1 @@ -udev-143.tar.bz2 +udev-145.tar.bz2 --- udev-143.tar.bz2.sign DELETED --- From hicham at fedoraproject.org Tue Jul 14 10:33:35 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 10:33:35 +0000 (UTC) Subject: rpms/compat-libgdamm/devel compat-libgdamm.spec, 1.1, 1.2 import.log, 1.1, 1.2 Message-ID: <20090714103335.DEE3E11C0497@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/compat-libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23314/devel Modified Files: compat-libgdamm.spec import.log Log Message: Index: compat-libgdamm.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/devel/compat-libgdamm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compat-libgdamm.spec 14 Jul 2009 09:22:26 -0000 1.1 +++ compat-libgdamm.spec 14 Jul 2009 10:33:05 -0000 1.2 @@ -1,7 +1,7 @@ %define name_ libgdamm Name: compat-libgdamm Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ @@ -58,12 +58,16 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-, root, root, -) +%doc AUTHORS COPYING ChangeLog NEWS %{_includedir}/libgdamm-3.0 %{_libdir}/*.so %{_libdir}/libgdamm-3.0 %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jun 14 2009 Hicham HAOUARI 3.0.1-3 +- Bump release + * Fri Jun 3 2009 Hicham HAOUARI 3.0.1-2 - Compatibility package for old programs on Fedora 11. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Jul 2009 09:22:26 -0000 1.1 +++ import.log 14 Jul 2009 10:33:05 -0000 1.2 @@ -1 +1,2 @@ compat-libgdamm-3_0_1-2_fc11:HEAD:compat-libgdamm-3.0.1-2.fc11.src.rpm:1247563327 +compat-libgdamm-3_0_1-3_fc11:HEAD:compat-libgdamm-3.0.1-3.fc11.src.rpm:1247567536 From hicham at fedoraproject.org Tue Jul 14 10:35:44 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 10:35:44 +0000 (UTC) Subject: rpms/compat-libgdamm/F-11 compat-libgdamm.spec, 1.1, 1.2 import.log, 1.1, 1.2 Message-ID: <20090714103544.41D8C11C0497@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/compat-libgdamm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23945/F-11 Modified Files: compat-libgdamm.spec import.log Log Message: Index: compat-libgdamm.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/F-11/compat-libgdamm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compat-libgdamm.spec 14 Jul 2009 08:18:05 -0000 1.1 +++ compat-libgdamm.spec 14 Jul 2009 10:35:13 -0000 1.2 @@ -1,7 +1,7 @@ %define name_ libgdamm Name: compat-libgdamm Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ @@ -58,12 +58,16 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-, root, root, -) +%doc AUTHORS COPYING ChangeLog NEWS %{_includedir}/libgdamm-3.0 %{_libdir}/*.so %{_libdir}/libgdamm-3.0 %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jun 14 2009 Hicham HAOUARI 3.0.1-3 +- Bump release + * Fri Jun 3 2009 Hicham HAOUARI 3.0.1-2 - Compatibility package for old programs on Fedora 11. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Jul 2009 08:18:05 -0000 1.1 +++ import.log 14 Jul 2009 10:35:14 -0000 1.2 @@ -1 +1,2 @@ compat-libgdamm-3_0_1-2_fc11:F-11:compat-libgdamm-3.0.1-2.fc11.src.rpm:1247559416 +compat-libgdamm-3_0_1-3_fc11:F-11:compat-libgdamm-3.0.1-3.fc11.src.rpm:1247567682 From mschwendt at fedoraproject.org Tue Jul 14 10:35:58 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Tue, 14 Jul 2009 10:35:58 +0000 (UTC) Subject: rpms/bchunk/devel .cvsignore, 1.2, NONE bchunk-1.1.1-CFLAGS.patch, 1.1, NONE bchunk.spec, 1.14, NONE sources, 1.2, NONE Message-ID: <20090714103558.E3C8111C0497@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/bchunk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24204 Removed Files: .cvsignore bchunk-1.1.1-CFLAGS.patch bchunk.spec sources Log Message: Unmaintained, and "shntool" is said to be superior. See e.g. https://bugzilla.redhat.com/439661 --- .cvsignore DELETED --- --- bchunk-1.1.1-CFLAGS.patch DELETED --- --- bchunk.spec DELETED --- --- sources DELETED --- From nickc at fedoraproject.org Tue Jul 14 10:40:38 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Tue, 14 Jul 2009 10:40:38 +0000 (UTC) Subject: rpms/binutils/devel binutils-2.19.51.0.11-moxie.patch, NONE, 1.1 binutils.spec, 1.169, 1.170 Message-ID: <20090714104038.8406211C0497@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24981 Modified Files: binutils.spec Added Files: binutils-2.19.51.0.11-moxie.patch Log Message: Add patch to allow moxie target to build, and hence --enable-targets=all to work. binutils-2.19.51.0.11-moxie.patch: --- NEW FILE binutils-2.19.51.0.11-moxie.patch --- --- ../binutils-2.19.51.0.11.orig/bfd/elf32-moxie.c 2009-07-14 11:42:48.000000000 +0100 +++ bfd/elf32-moxie.c 2009-07-14 12:28:32.000000000 +0100 @@ -242,12 +242,12 @@ moxie_elf_relocate_section (bfd *output_ } else { - bfd_boolean unresolved_reloc, warned; + bfd_boolean unresolved_reloc, warned, ignored; RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel, r_symndx, symtab_hdr, sym_hashes, h, sec, relocation, - unresolved_reloc, warned); + unresolved_reloc, warned, ignored); name = h->root.root.string; } Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- binutils.spec 14 Jul 2009 10:00:42 -0000 1.169 +++ binutils.spec 14 Jul 2009 10:40:08 -0000 1.170 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.11 -Release: 26%{?dist} +Release: 27%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -31,6 +31,7 @@ Patch05: binutils-2.19.51.0.10-version.p Patch06: binutils-2.19.51.0.10-set-long-long.patch Patch07: binutils-2.19.51.0.10-build-id.patch Patch08: binutils-2.19.51.0.11-orphan-section-placement.patch +Patch09: binutils-2.19.51.0.11-moxie.patch %if 0%{?_with_debug:1} # Define this if you want to skip the strip step and preserve debug info. @@ -103,6 +104,7 @@ to consider using libelf instead of BFD. %patch06 -p0 -b .set-long-long~ %patch07 -p0 -b .build-id~ %patch08 -p0 -b .orphan-section-placement~ +%patch09 -p0 -b .moxie~ # We cannot run autotools as there is an exact requirement of autoconf-2.59. @@ -353,6 +355,9 @@ fi %endif # %{isnative} %changelog +* Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-27 +- Add patch to allow moxie target to build, and hence --enable-targets=all to work. + * Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-26 - Import orphan section placement patch from mainline. (BZ 510384) From denisarnaud at fedoraproject.org Tue Jul 14 10:43:17 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Tue, 14 Jul 2009 10:43:17 +0000 (UTC) Subject: rpms/R-msm/EL-4 R-msm.spec,1.2,1.3 import.log,1.2,1.3 Message-ID: <20090714104317.2FA9D11C0497@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-msm/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25712/EL-4 Modified Files: R-msm.spec import.log Log Message: * Tue Jul 14 2009 Denis Arnaud 0.9.1-2 - Suppressed the unused definition of the packrel variable Index: R-msm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/EL-4/R-msm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-msm.spec 12 Jun 2009 14:48:07 -0000 1.2 +++ R-msm.spec 14 Jul 2009 10:42:46 -0000 1.3 @@ -1,9 +1,8 @@ %global packname msm -%global packrel 1 Name: R-%{packname} Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/web/packages/msm/ @@ -82,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/libs/%{packname}.so %changelog +* Tue Jul 14 2009 Denis Arnaud 0.9.1-2 +- Suppressed the unused definition of the packrel variable + * Fri Jun 12 2009 Denis Arnaud 0.9.1-1 - Integrated the new upstream (0.9.1) version Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/EL-4/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 12 Jun 2009 14:48:07 -0000 1.2 +++ import.log 14 Jul 2009 10:42:46 -0000 1.3 @@ -1,2 +1,3 @@ R-msm-0_8_2-2_fc10:EL-4:R-msm-0.8.2-2.fc10.src.rpm:1244671932 R-msm-0_9_1-1_fc10:EL-4:R-msm-0.9.1-1.fc10.src.rpm:1244818035 +R-msm-0_9_1-2_fc11:EL-4:R-msm-0.9.1-2.fc11.src.rpm:1247568135 From than at fedoraproject.org Tue Jul 14 10:46:50 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 14 Jul 2009 10:46:50 +0000 (UTC) Subject: rpms/kde-l10n/devel .cvsignore, 1.24, 1.25 kde-l10n.spec, 1.83, 1.84 sources, 1.27, 1.28 Message-ID: <20090714104650.AAE5A11C0497@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26536 Modified Files: .cvsignore kde-l10n.spec sources Log Message: 4.3rc2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 30 Jun 2009 16:41:39 -0000 1.24 +++ .cvsignore 14 Jul 2009 10:46:20 -0000 1.25 @@ -110,3 +110,59 @@ kde-l10n-uk-4.2.95.tar.bz2 kde-l10n-wa-4.2.95.tar.bz2 kde-l10n-zh_CN-4.2.95.tar.bz2 kde-l10n-zh_TW-4.2.95.tar.bz2 +kde-l10n-ar-4.2.96.tar.bz2 +kde-l10n-bg-4.2.96.tar.bz2 +kde-l10n-bn_IN-4.2.96.tar.bz2 +kde-l10n-ca-4.2.96.tar.bz2 +kde-l10n-csb-4.2.96.tar.bz2 +kde-l10n-cs-4.2.96.tar.bz2 +kde-l10n-da-4.2.96.tar.bz2 +kde-l10n-de-4.2.96.tar.bz2 +kde-l10n-el-4.2.96.tar.bz2 +kde-l10n-en_GB-4.2.96.tar.bz2 +kde-l10n-es-4.2.96.tar.bz2 +kde-l10n-et-4.2.96.tar.bz2 +kde-l10n-eu-4.2.96.tar.bz2 +kde-l10n-fi-4.2.96.tar.bz2 +kde-l10n-fr-4.2.96.tar.bz2 +kde-l10n-ga-4.2.96.tar.bz2 +kde-l10n-gl-4.2.96.tar.bz2 +kde-l10n-gu-4.2.96.tar.bz2 +kde-l10n-he-4.2.96.tar.bz2 +kde-l10n-hi-4.2.96.tar.bz2 +kde-l10n-hu-4.2.96.tar.bz2 +kde-l10n-is-4.2.96.tar.bz2 +kde-l10n-it-4.2.96.tar.bz2 +kde-l10n-ja-4.2.96.tar.bz2 +kde-l10n-kk-4.2.96.tar.bz2 +kde-l10n-km-4.2.96.tar.bz2 +kde-l10n-kn-4.2.96.tar.bz2 +kde-l10n-ko-4.2.96.tar.bz2 +kde-l10n-ku-4.2.96.tar.bz2 +kde-l10n-lt-4.2.96.tar.bz2 +kde-l10n-lv-4.2.96.tar.bz2 +kde-l10n-mai-4.2.96.tar.bz2 +kde-l10n-mk-4.2.96.tar.bz2 +kde-l10n-ml-4.2.96.tar.bz2 +kde-l10n-mr-4.2.96.tar.bz2 +kde-l10n-nb-4.2.96.tar.bz2 +kde-l10n-nds-4.2.96.tar.bz2 +kde-l10n-nl-4.2.96.tar.bz2 +kde-l10n-nn-4.2.96.tar.bz2 +kde-l10n-pa-4.2.96.tar.bz2 +kde-l10n-pl-4.2.96.tar.bz2 +kde-l10n-pt_BR-4.2.96.tar.bz2 +kde-l10n-pt-4.2.96.tar.bz2 +kde-l10n-ro-4.2.96.tar.bz2 +kde-l10n-ru-4.2.96.tar.bz2 +kde-l10n-sk-4.2.96.tar.bz2 +kde-l10n-sl-4.2.96.tar.bz2 +kde-l10n-sr-4.2.96.tar.bz2 +kde-l10n-sv-4.2.96.tar.bz2 +kde-l10n-tg-4.2.96.tar.bz2 +kde-l10n-th-4.2.96.tar.bz2 +kde-l10n-tr-4.2.96.tar.bz2 +kde-l10n-uk-4.2.96.tar.bz2 +kde-l10n-wa-4.2.96.tar.bz2 +kde-l10n-zh_CN-4.2.96.tar.bz2 +kde-l10n-zh_TW-4.2.96.tar.bz2 Index: kde-l10n.spec =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/kde-l10n.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- kde-l10n.spec 7 Jul 2009 19:38:09 -0000 1.83 +++ kde-l10n.spec 14 Jul 2009 10:46:20 -0000 1.84 @@ -1,8 +1,8 @@ %define buildall 0 Name: kde-l10n -Version: 4.2.95 -Release: 2%{dist} +Version: 4.2.96 +Release: 1%{dist} Url: http://www.kde.org Summary: Internationalization support for KDE Group: User Interface/Desktops @@ -1491,6 +1491,9 @@ rm -rf %{buildroot} %lang(zh_TW) %{_kde4_docdir}/HTML/zh_TW %changelog +* Tue Jul 14 2009 Than Ngo - 4.2.96-1 +- 4.3rc2 + * Tue Jul 7 2009 Tom "spot" Callaway - 4.2.95-2 - fix duplicate directory ownership (/usr/share/locale/*/LC_MESSAGES) Index: sources =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 30 Jun 2009 16:41:39 -0000 1.27 +++ sources 14 Jul 2009 10:46:20 -0000 1.28 @@ -1,56 +1,56 @@ -fb5af5d9635ac1b50747410fb88876f9 kde-l10n-ar-4.2.95.tar.bz2 -f42b57420b43616131a02267ecc0153e kde-l10n-bg-4.2.95.tar.bz2 -763f7f5bdc05c6f68630a8e3c79be72f kde-l10n-bn_IN-4.2.95.tar.bz2 -8707b3e92a8d470939686a1396a5ca64 kde-l10n-ca-4.2.95.tar.bz2 -b5869fac4476a44e69f2c761c4102c7a kde-l10n-csb-4.2.95.tar.bz2 -9849a071d4fa6ecba28810dbd979c0a3 kde-l10n-cs-4.2.95.tar.bz2 -04e842b4818fc4eb019ccec53b3a7ca8 kde-l10n-da-4.2.95.tar.bz2 -16242b21437de8646195a89ccfbd8bf6 kde-l10n-de-4.2.95.tar.bz2 -a6246b5a5e470ed1268e77be0513b424 kde-l10n-el-4.2.95.tar.bz2 -f7611734c9e04173a41eabc90973f21c kde-l10n-en_GB-4.2.95.tar.bz2 -0a458fa83e25fd58cbccc4f2e21e1b77 kde-l10n-es-4.2.95.tar.bz2 -d3a7b32d23e592c6ea95c6f62b8d035c kde-l10n-et-4.2.95.tar.bz2 -c6e3b6a01ab5746edd70ff887d5d65f1 kde-l10n-eu-4.2.95.tar.bz2 -6aed14e8ae7c80a085ee983656ef443f kde-l10n-fi-4.2.95.tar.bz2 -90584a24688628233fb6fcb7121b579c kde-l10n-fr-4.2.95.tar.bz2 -ad039aeee8a69159bbcee48452027d08 kde-l10n-ga-4.2.95.tar.bz2 -931ca706b76b20b5e5f0442ac90b8868 kde-l10n-gl-4.2.95.tar.bz2 -2c90712d98530a65e7e5d691737eace7 kde-l10n-gu-4.2.95.tar.bz2 -a00797f9604b300a7f110186907663c5 kde-l10n-he-4.2.95.tar.bz2 -ffa044fb8ee9a2b58986170b0a88c721 kde-l10n-hi-4.2.95.tar.bz2 -8246b7507d2412b00a41e89261231d8d kde-l10n-hu-4.2.95.tar.bz2 -73730f2c403623a68a04b84e583c1969 kde-l10n-is-4.2.95.tar.bz2 -e28186f823a945e425319e3c97fb3f15 kde-l10n-it-4.2.95.tar.bz2 -c4499a2a8b1fb53ee7701237ea4d6191 kde-l10n-ja-4.2.95.tar.bz2 -81f1f3276bfca7c77dc20f5886b88f80 kde-l10n-kk-4.2.95.tar.bz2 -8088cf66801104e9b0773c1c0188255e kde-l10n-km-4.2.95.tar.bz2 -a958cbed13feaeb3b9bab88dae7efa98 kde-l10n-kn-4.2.95.tar.bz2 -62f977920ffdcaa46fd9b6f278d29549 kde-l10n-ko-4.2.95.tar.bz2 -9a1f185d203243f3aedf496c05fa6754 kde-l10n-ku-4.2.95.tar.bz2 -04fb17f4113a7d60e8953d96b82bddc1 kde-l10n-lt-4.2.95.tar.bz2 -87103ddc8eeba00adb50b31517dde549 kde-l10n-lv-4.2.95.tar.bz2 -5eb319c9510138d9cda0fa2049cac73b kde-l10n-mai-4.2.95.tar.bz2 -dbb371a2b51cec9640cd3b9438ef24d3 kde-l10n-mk-4.2.95.tar.bz2 -47aeffd3e6a2e561c3f0348f308a91a3 kde-l10n-ml-4.2.95.tar.bz2 -71732f07b4d018cf9bd79cff6032daad kde-l10n-mr-4.2.95.tar.bz2 -6a342fede23161d22356561bdaa8c86a kde-l10n-nb-4.2.95.tar.bz2 -2566a074d634a3619848102a7ac9773c kde-l10n-nds-4.2.95.tar.bz2 -2f5236b082ef38997c1ca901d48d464e kde-l10n-nl-4.2.95.tar.bz2 -9aed9297223ba3ebed3af0c20e7a7040 kde-l10n-nn-4.2.95.tar.bz2 -9a3cfbdf00c2df6f3647d9a49f59349e kde-l10n-pa-4.2.95.tar.bz2 -57b127cb5df8ba7fa15fb581763ab1f0 kde-l10n-pl-4.2.95.tar.bz2 -066e76a2c08430e14bd471c43cf69f31 kde-l10n-pt_BR-4.2.95.tar.bz2 -1aa237f210de3bff43f103c18ab3d572 kde-l10n-pt-4.2.95.tar.bz2 -802cb24211f6df90c68da332dac1db98 kde-l10n-ro-4.2.95.tar.bz2 -6776abca45a64daf20e06ec394fb4f97 kde-l10n-ru-4.2.95.tar.bz2 -dd3bec8696ef4ace51c388ee96638ae6 kde-l10n-sk-4.2.95.tar.bz2 -ce3d7a6f0c319fd6336e5709d5835a0b kde-l10n-sl-4.2.95.tar.bz2 -1b36bfcf37fb862b8916ab2a977455a0 kde-l10n-sr-4.2.95.tar.bz2 -ca2acf97203f54d166a6f3c5b61c6766 kde-l10n-sv-4.2.95.tar.bz2 -229c800b0bdd6b95f91a962fe0449179 kde-l10n-tg-4.2.95.tar.bz2 -6b7fa7f49a324538c3b16c7db45655af kde-l10n-th-4.2.95.tar.bz2 -ee1e41ff0f407f200ade1b52cd1c96f6 kde-l10n-tr-4.2.95.tar.bz2 -b9b7b7f4847f8064e8957dfee186df12 kde-l10n-uk-4.2.95.tar.bz2 -6dacccb5592c0376ce304aae555067db kde-l10n-wa-4.2.95.tar.bz2 -b58b9ffc493e6ee1f5af8bf9b452390c kde-l10n-zh_CN-4.2.95.tar.bz2 -9e4a55a224af0d4d33d44f586f9fee0b kde-l10n-zh_TW-4.2.95.tar.bz2 +c0915f33591d3e9c85fd7ce726e2015f kde-l10n-ar-4.2.96.tar.bz2 +88d2c749a4887d3dad1276d6ba4384c7 kde-l10n-bg-4.2.96.tar.bz2 +8bf73cc8bbe3680e47dbfdb7e00a8abc kde-l10n-bn_IN-4.2.96.tar.bz2 +9af36613c91d79cfbe05a9502ea8abbe kde-l10n-ca-4.2.96.tar.bz2 +53ede08114e9376e19e48ff77f098e7a kde-l10n-csb-4.2.96.tar.bz2 +f75364843378e4b3c83adc2f10841ce7 kde-l10n-cs-4.2.96.tar.bz2 +ba1924fdb1c94084a254e14a9b9bb214 kde-l10n-da-4.2.96.tar.bz2 +a51c3b329791ff2461b679b72413cb2d kde-l10n-de-4.2.96.tar.bz2 +33d6e9dc0dec9975895e961dc2e3632b kde-l10n-el-4.2.96.tar.bz2 +76560f5da2adc3819efe4c285ba6e429 kde-l10n-en_GB-4.2.96.tar.bz2 +b725a171de57e6e92ba8f1fc8aeab81a kde-l10n-es-4.2.96.tar.bz2 +4a7172062d85d36da7ce5663830e7d1b kde-l10n-et-4.2.96.tar.bz2 +1aa50185e93c2e608473453c7d855710 kde-l10n-eu-4.2.96.tar.bz2 +8e3a1fafabcdd08483214e104e17f659 kde-l10n-fi-4.2.96.tar.bz2 +3d7adaaf6b0251e3b213bcc983380ae3 kde-l10n-fr-4.2.96.tar.bz2 +0e3501cabfcaf853264435e5c6e786b0 kde-l10n-ga-4.2.96.tar.bz2 +88cb52beefd54033b74e1cf4afc7ae16 kde-l10n-gl-4.2.96.tar.bz2 +0e289fc862116576adb02803cd0bbe1c kde-l10n-gu-4.2.96.tar.bz2 +b56f7989937cee9eaa39a1816d9430a8 kde-l10n-he-4.2.96.tar.bz2 +1f89396e8f7d1f731cd01c0dc1c283d2 kde-l10n-hi-4.2.96.tar.bz2 +2dd7fa902de8d924ecd2baf95b9aca66 kde-l10n-hu-4.2.96.tar.bz2 +cf99687ecb07d2174011da8ce700bf64 kde-l10n-is-4.2.96.tar.bz2 +ad6bbf8094021407a0962f3d2ce21cb1 kde-l10n-it-4.2.96.tar.bz2 +d1d2ec707a7e44b55f93205c6bdc5cef kde-l10n-ja-4.2.96.tar.bz2 +ad2358af593fb04a542395f363f09595 kde-l10n-kk-4.2.96.tar.bz2 +120fca612f7b584d209a267458c1cb2a kde-l10n-km-4.2.96.tar.bz2 +433a62309606cbeb663cc7012e371581 kde-l10n-kn-4.2.96.tar.bz2 +00ba8b737ece7bfb2d1feffd5be360c1 kde-l10n-ko-4.2.96.tar.bz2 +0fa59ee213d3df997a00f291e93c50a9 kde-l10n-ku-4.2.96.tar.bz2 +d0b754baef2f743564523286eba0b431 kde-l10n-lt-4.2.96.tar.bz2 +063b837e00fffe0f40f2bfd71127fedc kde-l10n-lv-4.2.96.tar.bz2 +95da02c406ae83863225b9934040ad4d kde-l10n-mai-4.2.96.tar.bz2 +94d61aaad97ef702671592d7e22e1ac6 kde-l10n-mk-4.2.96.tar.bz2 +696ff19cde16d783b96073085fda6539 kde-l10n-ml-4.2.96.tar.bz2 +8f6469f95288e37fe0ebf076e2567995 kde-l10n-mr-4.2.96.tar.bz2 +9f3470582d08d86e0868f74f0006c25a kde-l10n-nb-4.2.96.tar.bz2 +cc6f0720d3edd9444d8a676da38a6a7e kde-l10n-nds-4.2.96.tar.bz2 +b809dc5222c0cdc18274d51d8826fd30 kde-l10n-nl-4.2.96.tar.bz2 +6cd9eaafb9a0f7e5bd818541cb5ddfca kde-l10n-nn-4.2.96.tar.bz2 +c56675a77f2d49ef5ed3fdc918ef5eda kde-l10n-pa-4.2.96.tar.bz2 +369b2b3ff274230249698e83889069fd kde-l10n-pl-4.2.96.tar.bz2 +2f77c9b17c94aab142ab8f7c15f8d443 kde-l10n-pt_BR-4.2.96.tar.bz2 +ab229e8e9f29c77038d80b5a6d7c3393 kde-l10n-pt-4.2.96.tar.bz2 +73576dc86feb193f464e5641c6dc30cc kde-l10n-ro-4.2.96.tar.bz2 +d9dc4a53c50c5efab4829ee45bd3f60f kde-l10n-ru-4.2.96.tar.bz2 +2561b3bc079c3427696f4f087f5c3e2e kde-l10n-sk-4.2.96.tar.bz2 +8668b874b6b339486c25c5a12ec8df89 kde-l10n-sl-4.2.96.tar.bz2 +ab66a3b1511fe5f76116ddd30f7b396b kde-l10n-sr-4.2.96.tar.bz2 +a04b93aa5bc356640bb020dabca967d6 kde-l10n-sv-4.2.96.tar.bz2 +f5754a235ebcee07a02753837507cde4 kde-l10n-tg-4.2.96.tar.bz2 +649b61902d49cdd5b0ab04e790b29eaa kde-l10n-th-4.2.96.tar.bz2 +5dbd2f78ec4511f337cf1e004d853156 kde-l10n-tr-4.2.96.tar.bz2 +8f98e17660ceb9149e9a5d8cf64f647f kde-l10n-uk-4.2.96.tar.bz2 +2749128bd02f07ac872e69f841f3e664 kde-l10n-wa-4.2.96.tar.bz2 +97bef354d21bb9abbeae44d93634a663 kde-l10n-zh_CN-4.2.96.tar.bz2 +5160f3b255fb4f8839c1ae3603ea09d9 kde-l10n-zh_TW-4.2.96.tar.bz2 From pbrobinson at fedoraproject.org Tue Jul 14 10:52:18 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Tue, 14 Jul 2009 10:52:18 +0000 (UTC) Subject: rpms/rest/devel .cvsignore, 1.3, 1.4 rest.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090714105218.41BE911C0497@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/rest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27708 Modified Files: .cvsignore rest.spec sources Log Message: - Update to 0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rest/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 22 Jun 2009 11:45:01 -0000 1.3 +++ .cvsignore 14 Jul 2009 10:51:47 -0000 1.4 @@ -1 +1 @@ -librest-0.4.tar.bz2 +librest-0.5.tar.bz2 Index: rest.spec =================================================================== RCS file: /cvs/pkgs/rpms/rest/devel/rest.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rest.spec 22 Jun 2009 11:45:01 -0000 1.2 +++ rest.spec 14 Jul 2009 10:51:47 -0000 1.3 @@ -1,5 +1,5 @@ Name: rest -Version: 0.4 +Version: 0.5 Release: 1%{?dist} Summary: A library for access to RESTful web services @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/rest %changelog +* Tue Jul 14 2009 Peter Robinson 0.5-1 +- Update to 0.5 + * Mon Jun 22 2009 Peter Robinson 0.4-1 - Update to 0.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rest/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Jun 2009 11:45:01 -0000 1.3 +++ sources 14 Jul 2009 10:51:48 -0000 1.4 @@ -1 +1 @@ -830a95e880d192cecf45a48376315890 librest-0.4.tar.bz2 +294635fe499313b92a371a9c6dd55e2c librest-0.5.tar.bz2 From rjones at fedoraproject.org Tue Jul 14 10:55:41 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 10:55:41 +0000 (UTC) Subject: rpms/libguestfs/F-11 libguestfs.spec,1.41,1.42 Message-ID: <20090714105541.D448811C049C@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28886/F-11 Modified Files: libguestfs.spec Log Message: guestfish should runtime-require virt-inspector (for -i option). Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- libguestfs.spec 10 Jul 2009 22:18:50 -0000 1.41 +++ libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.42 @@ -128,6 +128,7 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: /usr/bin/pod2text +Requires: virt-inspector %description -n guestfish From rjones at fedoraproject.org Tue Jul 14 10:55:41 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 10:55:41 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.38,1.39 Message-ID: <20090714105541.C22DA11C0497@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28886/EL-5 Modified Files: libguestfs.spec Log Message: guestfish should runtime-require virt-inspector (for -i option). Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- libguestfs.spec 10 Jul 2009 22:18:51 -0000 1.38 +++ libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.39 @@ -143,6 +143,7 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: /usr/bin/pod2text +Requires: virt-inspector %description -n guestfish From rjones at fedoraproject.org Tue Jul 14 10:55:41 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 10:55:41 +0000 (UTC) Subject: rpms/libguestfs/devel libguestfs.spec,1.71,1.72 Message-ID: <20090714105541.F03F811C049D@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28886/devel Modified Files: libguestfs.spec Log Message: guestfish should runtime-require virt-inspector (for -i option). Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- libguestfs.spec 10 Jul 2009 22:18:53 -0000 1.71 +++ libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.72 @@ -126,6 +126,7 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: /usr/bin/pod2text +Requires: virt-inspector %description -n guestfish From ruben at fedoraproject.org Tue Jul 14 10:57:25 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Tue, 14 Jul 2009 10:57:25 +0000 (UTC) Subject: rpms/sendxmpp/F-11 import.log, NONE, 1.1 sendxmpp.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714105725.A2D4611C0497@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/sendxmpp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29278/F-11 Modified Files: .cvsignore sources Added Files: import.log sendxmpp.spec Log Message: Initial import --- NEW FILE import.log --- sendxmpp-0_0_8-2_fc11:F-11:sendxmpp-0.0.8-2.fc11.src.rpm:1247568996 --- NEW FILE sendxmpp.spec --- Name: sendxmpp Version: 0.0.8 Release: 2%{?dist} Summary: A perl script to send xmpp messages Group: Applications/Communications License: GPLv2 URL: http://sendxmpp.platon.sk/ Source0: http://sendxmpp.platon.sk/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker), perl(Net::XMPP) %description A perl script to send xmpp messages. %prep %setup -q %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' chmod -R u+w %{buildroot}/* %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_mandir}/man1/%{name}.1* %changelog * Tue Jun 09 2009 Ruben Kerkhof 0.0.8-2 - Review fixes (#504641) * Mon Jun 08 2009 Ruben Kerkhof 0.0.8-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:25:01 -0000 1.1 +++ .cvsignore 14 Jul 2009 10:56:55 -0000 1.2 @@ -0,0 +1 @@ +sendxmpp-0.0.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:25:02 -0000 1.1 +++ sources 14 Jul 2009 10:56:55 -0000 1.2 @@ -0,0 +1 @@ +8a041f4940274f4d1e72e76fcc95e689 sendxmpp-0.0.8.tar.gz From dcbw at fedoraproject.org Tue Jul 14 10:59:41 2009 From: dcbw at fedoraproject.org (Daniel Williams) Date: Tue, 14 Jul 2009 10:59:41 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/devel .cvsignore, 1.17, 1.18 NetworkManager-openvpn.spec, 1.33, 1.34 sources, 1.21, 1.22 Message-ID: <20090714105941.7EF6011C0497@cvs1.fedora.phx.redhat.com> Author: dcbw Update of /cvs/pkgs/rpms/NetworkManager-openvpn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29933 Modified Files: .cvsignore NetworkManager-openvpn.spec sources Log Message: * Tue Jul 14 2009 Dan Williams - 1:0.7.1-1.20090714 - Fix a misconfiguration with 'subnet' topology - Fix detection of password requests by the OpenVPN management interface Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 13 Jul 2009 14:16:31 -0000 1.17 +++ .cvsignore 14 Jul 2009 10:59:41 -0000 1.18 @@ -12,3 +12,4 @@ NetworkManager-openvpn-0.7.0.97.tar.gz NetworkManager-openvpn-0.7.0.99.tar.gz NetworkManager-openvpn-0.7.1.tar.bz2 NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 +NetworkManager-openvpn-0.7.1.git20090714.tar.bz2 Index: NetworkManager-openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/NetworkManager-openvpn.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- NetworkManager-openvpn.spec 13 Jul 2009 14:13:39 -0000 1.33 +++ NetworkManager-openvpn.spec 14 Jul 2009 10:59:41 -0000 1.34 @@ -4,7 +4,7 @@ %define openvpn_version 2.1 %define shared_mime_version 0.16-3 -%define snapshot .git20090713 +%define snapshot .git20090714 Summary: NetworkManager VPN plugin for OpenVPN Name: NetworkManager-openvpn @@ -103,6 +103,10 @@ fi %dir %{_datadir}/gnome-vpn-properties/openvpn %changelog +* Tue Jul 14 2009 Dan Williams - 1:0.7.1-1.20090714 +- Fix a misconfiguration with 'subnet' topology +- Fix detection of password requests by the OpenVPN management interface + * Mon Jul 13 2009 Dan Williams - 1:0.7.1-1.20090713 - Update to 0.7.1 - Translation updates Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 13 Jul 2009 14:16:31 -0000 1.21 +++ sources 14 Jul 2009 10:59:41 -0000 1.22 @@ -1 +1 @@ -94227516db7c88a001b737fdec4604a2 NetworkManager-openvpn-0.7.1.git20090713.tar.bz2 +2c9e6819d2628c0890eade41ecf151d6 NetworkManager-openvpn-0.7.1.git20090714.tar.bz2 From ruben at fedoraproject.org Tue Jul 14 11:18:49 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Tue, 14 Jul 2009 11:18:49 +0000 (UTC) Subject: rpms/sendxmpp/F-10 import.log, NONE, 1.1 sendxmpp.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714111849.7503111C0497@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/sendxmpp/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv558/F-10 Modified Files: .cvsignore sources Added Files: import.log sendxmpp.spec Log Message: Initial import --- NEW FILE import.log --- sendxmpp-0_0_8-2_fc11:F-10:sendxmpp-0.0.8-2.fc11.src.rpm:1247569649 --- NEW FILE sendxmpp.spec --- Name: sendxmpp Version: 0.0.8 Release: 2%{?dist} Summary: A perl script to send xmpp messages Group: Applications/Communications License: GPLv2 URL: http://sendxmpp.platon.sk/ Source0: http://sendxmpp.platon.sk/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker), perl(Net::XMPP) %description A perl script to send xmpp messages. %prep %setup -q %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} ';' chmod -R u+w %{buildroot}/* %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_mandir}/man1/%{name}.1* %changelog * Tue Jun 09 2009 Ruben Kerkhof 0.0.8-2 - Review fixes (#504641) * Mon Jun 08 2009 Ruben Kerkhof 0.0.8-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:25:01 -0000 1.1 +++ .cvsignore 14 Jul 2009 11:18:17 -0000 1.2 @@ -0,0 +1 @@ +sendxmpp-0.0.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:25:02 -0000 1.1 +++ sources 14 Jul 2009 11:18:17 -0000 1.2 @@ -0,0 +1 @@ +8a041f4940274f4d1e72e76fcc95e689 sendxmpp-0.0.8.tar.gz From jskala at fedoraproject.org Tue Jul 14 11:23:40 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 11:23:40 +0000 (UTC) Subject: rpms/quagga/F-10 quagga.spec,1.48,1.49 Message-ID: <20090714112340.8643D11C0497@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/quagga/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1371 Modified Files: quagga.spec Log Message: * Tue Jul 14 2009 Jiri Skala - 0.99.12-2 - changed Obsoletes directive to Conflicts Index: quagga.spec =================================================================== RCS file: /cvs/extras/rpms/quagga/F-10/quagga.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- quagga.spec 20 May 2009 13:30:41 -0000 1.48 +++ quagga.spec 14 Jul 2009 11:23:09 -0000 1.49 @@ -32,7 +32,7 @@ Summary: Routing daemon Name: quagga Version: 0.99.12 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 License: GPLv2+ Group: System Environment/Daemons @@ -60,7 +60,8 @@ Requires(post): /sbin/install-info Requires(preun): /sbin/install-info Provides: routingdaemon BuildRoot: %{_tmppath}/%{name}-%{version}-root -Obsoletes: bird gated mrt zebra +# Obsoletes: bird gated mrt zebra +Conflicts: bird gated mrt zebra %description Quagga is a free software that manages TCP/IP based routing @@ -345,6 +346,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 14 2009 Jiri Skala - 0.99.12-2 +- changed Obsoletes directive to Conflicts + * Wed May 20 2009 Jiri Skala - 0.99.12-1 - update to latest upstream version - fix #499960 - BGPd in Quagga prior to 0.99.12 has a serious assert problem crashing with ASN4's From pkgdb at fedoraproject.org Tue Jul 14 11:24:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 11:24:58 +0000 Subject: [pkgdb] R-mvtnorm: denisarnaud has requested commit Message-ID: <20090714112459.2DD4A10F888@bastion2.fedora.phx.redhat.com> denisarnaud has requested the commit acl on R-mvtnorm (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-mvtnorm From aleksey2005 at fedoraproject.org Tue Jul 14 11:35:08 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:35:08 +0000 (UTC) Subject: rpms/openscada/devel openscada.spec,1.7,1.8 Message-ID: <20090714113508.55ABF11C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4507/devel Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/devel/openscada.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- openscada.spec 30 Jun 2009 11:51:27 -0000 1.7 +++ openscada.spec 14 Jul 2009 11:35:08 -0000 1.8 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 8%{?dist} +Release: 9%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,10 +931,12 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif +%find_lang {name} --all-name + %clean %{__rm} -rf %{buildroot} -%files +%files -f {name}.lang %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -984,9 +986,6 @@ desktop-file-install --dir=%{buildroot}% %{?with_flibsys: %exclude %{_libdir}/openscada/spec_FLibSYS.so} %{?with_systemtests: %exclude %{_libdir}/openscada/spec_SystemTests.so} -%lang(de) %{_datadir}/locale/de/LC_MESSAGES/* -%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/* -%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/* %{_localstatedir}/spool/openscada/DATA/info %{_localstatedir}/spool/openscada/icons/* %{_localstatedir}/spool/openscada/ARCHIVES/MESS/info @@ -1209,6 +1208,10 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 +- Adding %find_lang macros by Peter Lemenkov +- Somes cosmetics. + * Tue Jun 30 2009 Popkov Aleksey 0.6.3.3-8 - Added of dependences in to self package demo - Fixed %preun section by Peter Lemenkov From aleksey2005 at fedoraproject.org Tue Jul 14 11:35:37 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:35:37 +0000 (UTC) Subject: rpms/openscada/EL-5 openscada.spec,1.5,1.6 Message-ID: <20090714113537.B722911C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4507/EL-5 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/EL-5/openscada.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openscada.spec 30 Jun 2009 11:51:26 -0000 1.5 +++ openscada.spec 14 Jul 2009 11:35:07 -0000 1.6 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 8%{?dist} +Release: 9%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,10 +931,12 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif +%find_lang {name} --all-name + %clean %{__rm} -rf %{buildroot} -%files +%files -f {name}.lang %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -984,9 +986,6 @@ desktop-file-install --dir=%{buildroot}% %{?with_flibsys: %exclude %{_libdir}/openscada/spec_FLibSYS.so} %{?with_systemtests: %exclude %{_libdir}/openscada/spec_SystemTests.so} -%lang(de) %{_datadir}/locale/de/LC_MESSAGES/* -%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/* -%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/* %{_localstatedir}/spool/openscada/DATA/info %{_localstatedir}/spool/openscada/icons/* %{_localstatedir}/spool/openscada/ARCHIVES/MESS/info @@ -1209,6 +1208,10 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 +- Adding %find_lang macros by Peter Lemenkov +- Somes cosmetics. + * Tue Jun 30 2009 Popkov Aleksey 0.6.3.3-8 - Added of dependences in to self package demo - Fixed %preun section by Peter Lemenkov From aleksey2005 at fedoraproject.org Tue Jul 14 11:35:37 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:35:37 +0000 (UTC) Subject: rpms/openscada/EL-4 openscada.spec,1.4,1.5 Message-ID: <20090714113537.8E75311C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4507/EL-4 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/EL-4/openscada.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openscada.spec 30 Jun 2009 11:51:26 -0000 1.4 +++ openscada.spec 14 Jul 2009 11:35:07 -0000 1.5 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 8%{?dist} +Release: 9%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,10 +931,12 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif +%find_lang {name} --all-name + %clean %{__rm} -rf %{buildroot} -%files +%files -f {name}.lang %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -984,9 +986,6 @@ desktop-file-install --dir=%{buildroot}% %{?with_flibsys: %exclude %{_libdir}/openscada/spec_FLibSYS.so} %{?with_systemtests: %exclude %{_libdir}/openscada/spec_SystemTests.so} -%lang(de) %{_datadir}/locale/de/LC_MESSAGES/* -%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/* -%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/* %{_localstatedir}/spool/openscada/DATA/info %{_localstatedir}/spool/openscada/icons/* %{_localstatedir}/spool/openscada/ARCHIVES/MESS/info @@ -1209,6 +1208,10 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 +- Adding %find_lang macros by Peter Lemenkov +- Somes cosmetics. + * Tue Jun 30 2009 Popkov Aleksey 0.6.3.3-8 - Added of dependences in to self package demo - Fixed %preun section by Peter Lemenkov From aleksey2005 at fedoraproject.org Tue Jul 14 11:35:37 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:35:37 +0000 (UTC) Subject: rpms/openscada/F-10 openscada.spec,1.7,1.8 Message-ID: <20090714113537.EBF2111C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4507/F-10 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/F-10/openscada.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- openscada.spec 30 Jun 2009 11:51:26 -0000 1.7 +++ openscada.spec 14 Jul 2009 11:35:07 -0000 1.8 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 8%{?dist} +Release: 9%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,10 +931,12 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif +%find_lang {name} --all-name + %clean %{__rm} -rf %{buildroot} -%files +%files -f {name}.lang %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -984,9 +986,6 @@ desktop-file-install --dir=%{buildroot}% %{?with_flibsys: %exclude %{_libdir}/openscada/spec_FLibSYS.so} %{?with_systemtests: %exclude %{_libdir}/openscada/spec_SystemTests.so} -%lang(de) %{_datadir}/locale/de/LC_MESSAGES/* -%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/* -%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/* %{_localstatedir}/spool/openscada/DATA/info %{_localstatedir}/spool/openscada/icons/* %{_localstatedir}/spool/openscada/ARCHIVES/MESS/info @@ -1209,6 +1208,10 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 +- Adding %find_lang macros by Peter Lemenkov +- Somes cosmetics. + * Tue Jun 30 2009 Popkov Aleksey 0.6.3.3-8 - Added of dependences in to self package demo - Fixed %preun section by Peter Lemenkov From aleksey2005 at fedoraproject.org Tue Jul 14 11:35:38 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:35:38 +0000 (UTC) Subject: rpms/openscada/F-11 openscada.spec,1.7,1.8 Message-ID: <20090714113538.1E06611C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4507/F-11 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/F-11/openscada.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- openscada.spec 30 Jun 2009 11:51:27 -0000 1.7 +++ openscada.spec 14 Jul 2009 11:35:07 -0000 1.8 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 8%{?dist} +Release: 9%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,10 +931,12 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif +%find_lang {name} --all-name + %clean %{__rm} -rf %{buildroot} -%files +%files -f {name}.lang %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -984,9 +986,6 @@ desktop-file-install --dir=%{buildroot}% %{?with_flibsys: %exclude %{_libdir}/openscada/spec_FLibSYS.so} %{?with_systemtests: %exclude %{_libdir}/openscada/spec_SystemTests.so} -%lang(de) %{_datadir}/locale/de/LC_MESSAGES/* -%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/* -%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/* %{_localstatedir}/spool/openscada/DATA/info %{_localstatedir}/spool/openscada/icons/* %{_localstatedir}/spool/openscada/ARCHIVES/MESS/info @@ -1209,6 +1208,10 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 +- Adding %find_lang macros by Peter Lemenkov +- Somes cosmetics. + * Tue Jun 30 2009 Popkov Aleksey 0.6.3.3-8 - Added of dependences in to self package demo - Fixed %preun section by Peter Lemenkov From aleksey2005 at fedoraproject.org Tue Jul 14 11:43:17 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Tue, 14 Jul 2009 11:43:17 +0000 (UTC) Subject: rpms/openscada/F-11 import.log,1.6,1.7 Message-ID: <20090714114317.6A21A11C0497@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6170/F-11 Modified Files: import.log Log Message: Some fixed Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/openscada/F-11/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 19 Jun 2009 20:51:28 -0000 1.6 +++ import.log 14 Jul 2009 11:42:47 -0000 1.7 @@ -4,3 +4,4 @@ openscada-0_6_3_3-3_fc10:F-11:openscada- openscada-0_6_3_3-5_fc10:F-11:openscada-0.6.3.3-5.fc10.src.rpm:1245267167 openscada-0_6_3_3-6_fc10:F-11:openscada-0.6.3.3-6.fc10.src.rpm:1245335744 openscada-0_6_3_3-7_fc10:F-11:openscada-0.6.3.3-7.fc10.src.rpm:1245444490 +openscada-0_6_3_3-9_fc11:F-11:openscada-0.6.3.3-9.fc11.src.rpm:1247571822 From caolanm at fedoraproject.org Tue Jul 14 11:44:13 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 14 Jul 2009 11:44:13 +0000 (UTC) Subject: rpms/icu/devel icu.spec, 1.96, 1.97 sources, 1.20, 1.21 icu.icu6213.worstcase.patch, 1.2, NONE icu.icuXXXX.virama.prevnext.patch, 1.3, NONE Message-ID: <20090714114413.6F0A811C0497@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6504 Modified Files: icu.spec sources Removed Files: icu.icu6213.worstcase.patch icu.icuXXXX.virama.prevnext.patch Log Message: rpmlint warnings Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- icu.spec 4 Jul 2009 08:06:22 -0000 1.96 +++ icu.spec 14 Jul 2009 11:44:13 -0000 1.97 @@ -1,6 +1,6 @@ Name: icu Version: 4.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: International Components for Unicode Group: Development/Tools License: MIT @@ -13,9 +13,7 @@ Requires: lib%{name} = %{version}-%{rele Patch1: icu-3.4-multiarchdevel.patch Patch2: icu.icu6284.strictalias.patch -Patch3: icu.icuXXXX.virama.prevnext.patch -Patch4: icu.icu6213.worstcase.patch -Patch5: icu.6995.kannada.patch +Patch3: icu.6995.kannada.patch %description Tools and utilities for developing with icu. @@ -56,10 +54,7 @@ Group: Documentation %setup -q -n %{name} %patch1 -p1 -b .multiarchdevel %patch2 -p1 -b .icu6284.strictalias.patch -#let's skip these for now, hopefully unneccessary -#%patch3 -p1 -b .icuXXXX.virama.prevnext.patch -#%patch4 -p1 -b .icu6213.worstcase.patch -%patch5 -p1 -b .icu.6995.kannada.patch +%patch3 -p1 -b .icu.6995.kannada.patch %build cd source @@ -135,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %doc source/__docs/%{name}/html/* %changelog +* Tue Jul 14 2009 Caolan McNamara - 4.2.1-2 +- rpmlint warnings + * Fri Jul 03 2009 Caolan McNamara - 4.2.1-1 - 4.2.1 release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 3 Jul 2009 20:06:44 -0000 1.20 +++ sources 14 Jul 2009 11:44:13 -0000 1.21 @@ -1,2 +1,2 @@ -89354abfe0d663d6b7b9274c6cd35238 icu-config e3738abd0d3ce1870dc1fd1f22bba5b1 icu4c-4_2_1-src.tgz +d254b3d49f4c343fa1a7aae70a32fb2d icu-config --- icu.icu6213.worstcase.patch DELETED --- --- icu.icuXXXX.virama.prevnext.patch DELETED --- From mlichvar at fedoraproject.org Tue Jul 14 11:49:17 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Tue, 14 Jul 2009 11:49:17 +0000 (UTC) Subject: rpms/compat-readline5/devel compat-readline5.spec, NONE, 1.1 readline-5.2-redisplay-sigint.patch, NONE, 1.1 readline-5.2-shlib.patch, NONE, 1.1 readline52-001, NONE, 1.1 readline52-002, NONE, 1.1 readline52-003, NONE, 1.1 readline52-004, NONE, 1.1 readline52-005, NONE, 1.1 readline52-006, NONE, 1.1 readline52-007, NONE, 1.1 readline52-008, NONE, 1.1 readline52-009, NONE, 1.1 readline52-010, NONE, 1.1 readline52-011, NONE, 1.1 readline52-013, NONE, 1.1 readline52-014, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714114917.1F96B11C0497@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/compat-readline5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6351 Modified Files: .cvsignore sources Added Files: compat-readline5.spec readline-5.2-redisplay-sigint.patch readline-5.2-shlib.patch readline52-001 readline52-002 readline52-003 readline52-004 readline52-005 readline52-006 readline52-007 readline52-008 readline52-009 readline52-010 readline52-011 readline52-013 readline52-014 Log Message: - import package --- NEW FILE compat-readline5.spec --- Summary: A library for editing typed command lines Name: compat-readline5 Version: 5.2 Release: 16%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html Source: ftp://ftp.gnu.org/gnu/readline/readline-%{version}.tar.gz Patch1: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-001 Patch2: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-002 Patch3: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-003 Patch4: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-004 Patch5: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-005 Patch6: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-006 Patch7: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-007 Patch8: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-008 Patch9: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-009 Patch10: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-010 Patch11: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-011 Patch12: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-013 Patch13: ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-014 # fix file permissions, remove RPATH, use CFLAGS Patch20: readline-5.2-shlib.patch # fixed in readline-6.0 Patch21: readline-5.2-redisplay-sigint.patch BuildRequires: ncurses-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description The Readline library provides a set of functions that allow users to edit command lines. Both Emacs and vi editing modes are available. The Readline library includes additional functions for maintaining a list of previously-entered command lines for recalling or editing those lines, and for performing csh-like history expansion on previous commands. %package devel Summary: Files needed to develop programs which use the readline library Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: ncurses-devel %description devel The Readline library provides a set of functions that allow users to edit typed command lines. If you want to develop programs that will use the readline library, you need to have the readline-devel package installed. You also need to have the readline package installed. %package static Summary: Static libraries for the readline library Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} %description static The readline-static package contains the static version of the readline library. %prep %setup -q -n readline-%{version} %patch1 -p0 -b .001 %patch2 -p0 -b .002 %patch3 -p0 -b .003 %patch4 -p0 -b .004 %patch5 -p0 -b .005 %patch6 -p0 -b .006 %patch7 -p0 -b .007 %patch8 -p0 -b .008 %patch9 -p0 -b .009 %patch10 -p0 -b .010 %patch11 -p0 -b .011 %patch12 -p0 -b .013 %patch13 -p0 -b .014 %patch20 -p1 -b .shlib %patch21 -p1 -b .redisplay-sigint %build export CPPFLAGS="-I%{_includedir}/ncurses" %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install mkdir -p $RPM_BUILD_ROOT{/%{_lib},%{_libdir}/readline5} mv $RPM_BUILD_ROOT%{_libdir}/libreadline.so.* $RPM_BUILD_ROOT/%{_lib} mv $RPM_BUILD_ROOT%{_libdir}/lib*.a $RPM_BUILD_ROOT%{_libdir}/readline5 rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.so ln -sf ../../../%{_lib}/libreadline.so.5 $RPM_BUILD_ROOT%{_libdir}/readline5/libreadline.so ln -sf ../libhistory.so.5 $RPM_BUILD_ROOT%{_libdir}/readline5/libhistory.so mkdir $RPM_BUILD_ROOT%{_includedir}/readline5 mv $RPM_BUILD_ROOT%{_includedir}/readline{,5} rm -rf $RPM_BUILD_ROOT%{_infodir} rm -rf $RPM_BUILD_ROOT%{_mandir} %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc CHANGES COPYING NEWS README USAGE /%{_lib}/libreadline*.so.* %{_libdir}/libhistory*.so.* %files devel %defattr(-,root,root,-) %{_includedir}/readline5 %dir %{_libdir}/readline5 %{_libdir}/readline5/lib*.so %files static %defattr(-,root,root,-) %{_libdir}/readline5/lib*.a %changelog * Wed Jul 08 2009 Miroslav Lichvar 5.2-16 - review fixes (#510022) * Thu Jul 07 2009 Miroslav Lichvar 5.2-15 - make compat package - include upstream patches 013, 014 * Wed Feb 25 2009 Fedora Release Engineering - 5.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Mar 23 2008 Jan Kratochvil - 5.2-13 - Fix the previous %%changelog entry authorship. * Sun Mar 23 2008 Jan Kratochvil - 5.2-12 - Fix excessive prompts on CTRL-C abort while the prompt is being printed. * Tue Feb 19 2008 Fedora Release Engineering - 5.2-11 - Autorebuild for GCC 4.3 * Fri Jan 18 2008 Miroslav Lichvar 5.2-10 - move libreadline to /lib * Thu Jan 03 2008 Miroslav Lichvar 5.2-9 - include upstream patches 008-011 * Mon Nov 05 2007 Miroslav Lichvar 5.2-8 - fix cursor position when prompt has one invisible character (#358231) - merge review fixes (#226361) - fix source URL * Mon Aug 27 2007 Miroslav Lichvar 5.2-7 - include patches 005, 006, 007 * Wed Aug 22 2007 Miroslav Lichvar 5.2-6 - update license tag * Tue May 29 2007 Miroslav Lichvar 5.2-5 - include patches 5.2-003, 5.2-004 * Thu Mar 22 2007 Miroslav Lichvar 5.2-4 - apply 5.2-002 patch * Thu Mar 15 2007 Miroslav Lichvar 5.2-3 - link libreadline with libtinfo (#232277) - include upstream 5.2-001 patch - move static libraries to -static subpackage, spec cleanup * Thu Nov 30 2006 Miroslav Lichvar 5.2-2 - require ncurses-devel instead of libtermcap-devel * Mon Nov 13 2006 Miroslav Lichvar 5.2-1 - update to 5.2 (#213795) - use CFLAGS when linking (#199374) - package docs and examples (#172497) - spec cleanup * Wed Jul 12 2006 Jesse Keating - 5.1-1.1 - rebuild * Mon Jul 10 2006 Jindrich Novy 5.1-1 - update to readline-5.1 - apply new proposed upstream patches for 5.1 (001-004) - drop "read -e" patch, applied upstream * Fri Feb 10 2006 Jesse Keating - 5.0-3.2.1 - bump again for double-long bug on ppc(64) * Tue Feb 07 2006 Jesse Keating - 5.0-3.2 - rebuilt for new gcc4.1 snapshot and glibc changes * Fri Dec 09 2005 Jesse Keating - rebuilt * Wed Mar 2 2005 Tim Waugh 5.0-3 - Rebuild for new GCC. * Tue Jan 18 2005 Tim Waugh 5.0-2 - Fix line-wrapping (bug #145329). - Apply "read -e" patch from bash package. * Wed Jan 12 2005 Tim Waugh 5.0-1 - 5.0 (bug #144835). * Mon Nov 29 2004 Tim Waugh 4.3-14 - Added URL tag (bug #141106). * Thu Sep 2 2004 Jeremy Katz - 4.3-13 - rebuild so that static linking against readline will work on ppc64 without dot symbols * Mon Jun 28 2004 Tim Waugh 4.3-12 - Build requires libtool (bug #126589). * Tue Jun 15 2004 Elliot Lee - rebuilt * Tue Mar 02 2004 Elliot Lee - rebuilt * Fri Feb 13 2004 Elliot Lee - rebuilt * Fri Nov 28 2003 Thomas Woerner 4.3-9 - removed rpath * Thu Nov 6 2003 Tim Waugh 4.3-8 - Apply upstream patches (bug #109240 among others). * Wed Jun 25 2003 Tim Waugh - devel package requires libtermcap-devel (bug #98015). * Wed Jun 25 2003 Tim Waugh 4.3-7 - Fixed recursion loop (bug #92372). * Wed Jun 04 2003 Elliot Lee - rebuilt * Wed Jan 22 2003 Tim Powers - rebuilt * Wed Nov 20 2002 Tim Powers - rebuild in current collinst - BuildRequires autoconf only * Wed Aug 07 2002 Phil Knirsch 4.3-3 - Fixed Esc-O-M stack overflow bug. * Mon Jul 22 2002 Phil Knirsch 4.3-1 - Updated to latest readline release 4.3 * Thu Jul 11 2002 Phil Knirsch 4.2a-7 - Fixed problem with alpha build. * Wed Jul 10 2002 Phil Knirsch - Fixed utf8 problem (originally observed in bash). * Fri Jun 21 2002 Tim Powers 4.2a-6 - automated rebuild * Thu May 23 2002 Tim Powers 4.2a-5 - automated rebuild * Wed Mar 20 2002 Trond Eivind Glomsr??d 4.2a-4 - Use autoconf 2.53, not 2.52 * Mon Mar 4 2002 Bernhard Rosenkraenzer 4.2a-3 - Rebuild * Mon Nov 26 2001 Matt Wilson 4.2a-2 - removed the manual symlinking of .so, readline handles this by itself - call only %%makeinstall, not %%makeinstall install install-shared as this makes bogus .old files in the buildroot * Tue Nov 20 2001 Bernhard Rosenkraenzer 4.2a-1 - 4.2a * Tue Oct 2 2001 Bernhard Rosenkraenzer 4.2-4 - Work around autoconf bug * Mon Oct 1 2001 Bernhard Rosenkraenzer 4.2-3 - Don't use readline's internal re-implementation of strpbrk on systems that have strpbrk - the system implementation is faster and better maintained. * Tue Aug 7 2001 Bernhard Rosenkraenzer 4.2-2 - Make sure headers can be included from C++ applications (#51131) (Patch based on Debian's with the bugs removed ;) ) * Wed May 09 2001 Florian La Roche - update to 4.2 and adapt patches * Fri Apr 6 2001 Nalin Dahyabhai - change the paths listed for the header files in the man page to reflect the location changes from previous versions (#35073) - note that "on" is acceptable instead of "On" in the man page (#21327) * Thu Mar 8 2001 Preston Brown - fix reading of end key termcap value (@7 is correct, was kH) (#30884) * Tue Jan 30 2001 Nalin Dahyabhai - mark the man page as currently out-of-date (#25294) * Thu Sep 7 2000 Jeff Johnson - FHS packaging (64bit systems need to use libdir). * Thu Aug 17 2000 Jeff Johnson - summaries from specspo. * Wed Aug 2 2000 Florian La Roche - use "rm -f" in specfile * Wed Jul 12 2000 Prospector - automatic rebuild * Mon Jun 5 2000 Jeff Johnson - FHS packaging. * Tue Mar 21 2000 Bernhard Rosenkraenzer - 4.1 * Thu Feb 03 2000 Nalin Dahyabhai - update to 4.0 * Fri Apr 09 1999 Michael K. Johnson - added guard patch from Taneli Huuskonen * Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 4) * Sun Jul 26 1998 Jeff Johnson - updated to 2.2.1 * Wed May 06 1998 Prospector System - translations modified for de, fr, tr * Wed May 06 1998 Cristian Gafton - don't package /usr/info/dir * Thu Apr 30 1998 Cristian Gafton - devel package moved to Development/Libraries * Tue Apr 21 1998 Cristian Gafton - updated to 2.2 * Tue Oct 14 1997 Donnie Barnes - spec file cleanups * Fri Oct 10 1997 Erik Troan - added proper sonames * Tue Jul 08 1997 Erik Troan - updated to readline 2.1 * Tue Jun 03 1997 Erik Troan - built against glibc readline-5.2-redisplay-sigint.patch: --- NEW FILE readline-5.2-redisplay-sigint.patch --- GDB PR 544: gdb.cp/annota2.exp and gdb.cp/annota3.exp sometimes FAIL with: FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1) One can put `sleep (1)' at the end of _RL_OUTPUT_SOME_CHARS and type p 1 to abort the prompt printing. Before the patch: (gdb) p 1 $1 = 1 Quit) (gdb) (gdb) _ After the patch: [bash]jkratoch at host0.dyn.jankratochvil.net:/home/jkratoch/redhat/sources/readline# ../gdb/gdb -nx -silent(gdb) p 1 $1 = 1 (gdb) Quit (gdb) _ The readline patch posted upstream: http://sourceware.org/ml/gdb-patches/2008-03/msg00317.html On Fri, 21 Mar 2008 19:37:31 +0100, Chet Ramey wrote: > I will add something like your block_sigint/release_sigint changes around > the guts of rl_redisplay. That's the right thing to do anyway. It will > probably not come out as a patch for readline-5.2; you can use your > current patch (though the names will change to _rl_block_sigint and > _rl_release_sigint -- fair warning). Application cannot easily supply its own RL_REDISPLAY_FUNCTION as a custom function there changes the readline behavior: http://sourceware.org/ml/gdb-patches/2008-03/msg00340.html BLOCK_SIGINT / RELEASE_SIGINT: Make it public and prefix it by `_rl_'. RL_REDISPLAY: Wrap it by _RL_BLOCK_SIGINT / _RL_RELEASE_SIGINT. --- readline-5.2-orig/display.c 2008-03-23 20:52:12.000000000 +0100 +++ readline-5.2/display.c 2008-03-23 20:56:58.000000000 +0100 @@ -472,6 +472,10 @@ rl_redisplay () if (!readline_echoing_p) return; + /* Signals are blocked through this function as the global data structures + could get corrupted upon modifications from an invoked signal handler. */ + _rl_block_sigint (); + if (!rl_display_prompt) rl_display_prompt = ""; @@ -1180,6 +1184,8 @@ rl_redisplay () else visible_wrap_offset = wrap_offset; } + + _rl_release_sigint (); } /* PWP: update_line() is based on finding the middle difference of each --- readline-5.2-orig/rltty.c 2005-12-26 23:21:50.000000000 +0100 +++ readline-5.2/rltty.c 2008-03-23 20:57:26.000000000 +0100 @@ -52,8 +52,8 @@ extern int errno; rl_vintfunc_t *rl_prep_term_function = rl_prep_terminal; rl_voidfunc_t *rl_deprep_term_function = rl_deprep_terminal; -static void block_sigint PARAMS((void)); -static void release_sigint PARAMS((void)); +void _rl_block_sigint PARAMS((void)); +void _rl_release_sigint PARAMS((void)); static void set_winsize PARAMS((int)); @@ -74,9 +74,9 @@ static int sigint_oldmask; static int sigint_blocked; /* Cause SIGINT to not be delivered until the corresponding call to - release_sigint(). */ -static void -block_sigint () + _rl_release_sigint(). */ +void +_rl_block_sigint () { if (sigint_blocked) return; @@ -100,8 +100,8 @@ block_sigint () } /* Allow SIGINT to be delivered. */ -static void -release_sigint () +void +_rl_release_sigint () { if (sigint_blocked == 0) return; @@ -663,7 +663,7 @@ rl_prep_terminal (meta_flag) return; /* Try to keep this function from being INTerrupted. */ - block_sigint (); + _rl_block_sigint (); tty = fileno (rl_instream); @@ -676,7 +676,7 @@ rl_prep_terminal (meta_flag) if (errno == ENOTTY) #endif readline_echoing_p = 1; /* XXX */ - release_sigint (); + _rl_release_sigint (); return; } @@ -711,7 +711,7 @@ rl_prep_terminal (meta_flag) if (set_tty_settings (tty, &tio) < 0) { - release_sigint (); + _rl_release_sigint (); return; } @@ -722,7 +722,7 @@ rl_prep_terminal (meta_flag) terminal_prepped = 1; RL_SETSTATE(RL_STATE_TERMPREPPED); - release_sigint (); + _rl_release_sigint (); } /* Restore the terminal's normal settings and modes. */ @@ -735,7 +735,7 @@ rl_deprep_terminal () return; /* Try to keep this function from being interrupted. */ - block_sigint (); + _rl_block_sigint (); tty = fileno (rl_instream); @@ -746,14 +746,14 @@ rl_deprep_terminal () if (set_tty_settings (tty, &otio) < 0) { - release_sigint (); + _rl_release_sigint (); return; } terminal_prepped = 0; RL_UNSETSTATE(RL_STATE_TERMPREPPED); - release_sigint (); + _rl_release_sigint (); } #endif /* !NO_TTY_DRIVER */ --- readline-5.2-orig/rltty.h 2003-02-01 04:43:11.000000000 +0100 +++ readline-5.2/rltty.h 2008-03-23 20:57:30.000000000 +0100 @@ -79,4 +79,7 @@ typedef struct _rl_tty_chars { unsigned char t_status; } _RL_TTY_CHARS; +extern void _rl_block_sigint PARAMS((void)); +extern void _rl_release_sigint PARAMS((void)); + #endif /* _RLTTY_H_ */ readline-5.2-shlib.patch: --- NEW FILE readline-5.2-shlib.patch --- --- readline-5.2/support/shlib-install.shlib 2006-01-03 20:06:27.000000000 +0100 +++ readline-5.2/support/shlib-install 2006-11-13 13:51:02.000000000 +0100 @@ -71,7 +71,7 @@ case "$host_os" in hpux*|darwin*|macosx*|linux*) if [ -z "$uninstall" ]; then - chmod 555 ${INSTALLDIR}/${LIBNAME} + chmod 755 ${INSTALLDIR}/${LIBNAME} fi ;; cygwin*) IMPLIBNAME=`echo ${LIBNAME} \ --- readline-5.2/support/shobj-conf.shlib 2006-04-11 15:15:43.000000000 +0200 +++ readline-5.2/support/shobj-conf 2007-03-15 14:11:36.000000000 +0100 @@ -108,10 +108,11 @@ linux*-*|gnu*-*|k*bsd*-gnu-*) SHOBJ_CFLAGS=-fPIC SHOBJ_LD='${CC}' - SHOBJ_LDFLAGS='-shared -Wl,-soname,$@' + SHOBJ_LDFLAGS='$(CFLAGS) -shared -Wl,-soname,$@' - SHLIB_XLDFLAGS='-Wl,-rpath,$(libdir) -Wl,-soname,`basename $@ $(SHLIB_MINOR)`' + SHLIB_XLDFLAGS='-Wl,-soname,`basename $@ $(SHLIB_MINOR)`' SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)' + SHLIB_LIBS='-ltinfo' ;; freebsd2* | netbsd*) --- readline-5.2/shlib/Makefile.in.shlib 2005-08-12 05:56:10.000000000 +0200 +++ readline-5.2/shlib/Makefile.in 2007-11-05 18:59:14.000000000 +0100 @@ -168,7 +168,7 @@ $(SHARED_READLINE): $(SHARED_OBJ) $(SHARED_HISTORY): $(SHARED_HISTOBJ) xmalloc.so $(RM) $@ - $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so $(SHLIB_LIBS) + $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so # Since tilde.c is shared between readline and bash, make sure we compile # it with the right flags when it's built as part of readline --- NEW FILE readline52-001 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-001 Bug-Reported-by: ebb9 at byu.net Bug-Reference-ID: <45540862.9030900 at byu.net> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00017.html http://lists.gnu.org/archive/html/bug-bash/2006-11/msg00016.html Bug-Description: In some cases, code that is intended to be used in the presence of multibyte characters is called when no such characters are present, leading to incorrect display position calculations and incorrect redisplay. Patch: *** ../readline-5.2/display.c Thu Sep 14 14:20:12 2006 --- display.c Mon Nov 13 17:55:57 2006 *************** *** 2381,2384 **** --- 2409,2414 ---- if (end <= start) return 0; + if (MB_CUR_MAX == 1 || rl_byte_oriented) + return (end - start); memset (&ps, 0, sizeof (mbstate_t)); --- NEW FILE readline52-002 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-002 Bug-Reported-by: Magnus Svensson Bug-Reference-ID: <45BDC44D.80609 at mysql.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-readline/2007-01/msg00002.html Bug-Description: Readline neglects to reallocate the array it uses to keep track of wrapped screen lines when increasing its size. This will eventually result in segmentation faults when given sufficiently long input. Patch: *** ../readline-5.2-patched/display.c Thu Sep 14 14:20:12 2006 --- display.c Fri Feb 2 20:23:17 2007 *************** *** 561,574 **** --- 561,586 ---- wrap_offset = prompt_invis_chars_first_line = 0; } + #if defined (HANDLE_MULTIBYTE) #define CHECK_INV_LBREAKS() \ do { \ if (newlines >= (inv_lbsize - 2)) \ { \ inv_lbsize *= 2; \ inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \ + _rl_wrapped_line = (int *)xrealloc (_rl_wrapped_line, inv_lbsize * sizeof (int)); \ } \ } while (0) + #else + #define CHECK_INV_LBREAKS() \ + do { \ + if (newlines >= (inv_lbsize - 2)) \ + { \ + inv_lbsize *= 2; \ + inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \ + } \ + } while (0) + #endif /* HANDLE_MULTIBYTE */ #if defined (HANDLE_MULTIBYTE) #define CHECK_LPOS() \ --- NEW FILE readline52-003 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-003 Bug-Reported-by: Peter Volkov Bug-Reference-ID: <1171795523.8021.18.camel at localhost> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-02/msg00054.html Bug-Description: When moving the cursor, bash sometimes misplaces the cursor when the prompt contains two or more multibyte characters. The particular circumstance that uncovered the problem was having the (multibyte) current directory name in the prompt string. Patch: *** ../readline-5.2.2/display.c Fri Jan 19 13:34:50 2007 --- display.c Sat Mar 10 17:25:44 2007 *************** *** 1745,1749 **** { dpos = _rl_col_width (data, 0, new); ! if (dpos > prompt_last_invisible) /* XXX - don't use woff here */ { dpos -= woff; --- 1745,1752 ---- { dpos = _rl_col_width (data, 0, new); ! /* Use NEW when comparing against the last invisible character in the ! prompt string, since they're both buffer indices and DPOS is a ! desired display position. */ ! if (new > prompt_last_invisible) /* XXX - don't use woff here */ { dpos -= woff; --- NEW FILE readline52-004 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-004 Bug-Reported-by: Peter Volkov Bug-Reference-ID: <1173636022.7039.36.camel at localhost> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-03/msg00039.html Bug-Description: When restoring the original prompt after finishing an incremental search, bash sometimes places the cursor incorrectly if the primary prompt contains invisible characters. Patch: *** ../readline-5.2.3/display.c Fri Apr 20 13:30:16 2007 --- display.c Fri Apr 20 15:17:01 2007 *************** *** 1599,1604 **** if (temp > 0) { _rl_output_some_chars (nfd, temp); ! _rl_last_c_pos += _rl_col_width (nfd, 0, temp);; } } --- 1599,1618 ---- if (temp > 0) { + /* If nfd begins at the prompt, or before the invisible + characters in the prompt, we need to adjust _rl_last_c_pos + in a multibyte locale to account for the wrap offset and + set cpos_adjusted accordingly. */ _rl_output_some_chars (nfd, temp); ! if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) ! { ! _rl_last_c_pos += _rl_col_width (nfd, 0, temp); ! if (current_line == 0 && wrap_offset && ((nfd - new) <= prompt_last_invisible)) ! { ! _rl_last_c_pos -= wrap_offset; ! cpos_adjusted = 1; ! } ! } ! else ! _rl_last_c_pos += temp; } } *************** *** 1608,1613 **** --- 1622,1639 ---- if (temp > 0) { + /* If nfd begins at the prompt, or before the invisible + characters in the prompt, we need to adjust _rl_last_c_pos + in a multibyte locale to account for the wrap offset and + set cpos_adjusted accordingly. */ _rl_output_some_chars (nfd, temp); _rl_last_c_pos += col_temp; /* XXX */ + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) + { + if (current_line == 0 && wrap_offset && ((nfd - new) <= prompt_last_invisible)) + { + _rl_last_c_pos -= wrap_offset; + cpos_adjusted = 1; + } + } } lendiff = (oe - old) - (ne - new); --- NEW FILE readline52-005 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-005 Bug-Reported-by: Thomas Loeber Bug-Reference-ID: <200703082223.08919.ifp at loeber1.de> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-03/msg00036.html Bug-Description: When rl_read_key returns -1, indicating that readline's controlling terminal has been invalidated for some reason (e.g., receiving a SIGHUP), the error status was not reported correctly to the caller. This could cause input loops. Patch: *** ../readline-5.2/complete.c Fri Jul 28 11:35:49 2006 --- complete.c Tue Mar 13 08:50:16 2007 *************** *** 429,433 **** if (c == 'n' || c == 'N' || c == RUBOUT) return (0); ! if (c == ABORT_CHAR) _rl_abort_internal (); if (for_pager && (c == NEWLINE || c == RETURN)) --- 440,444 ---- if (c == 'n' || c == 'N' || c == RUBOUT) return (0); ! if (c == ABORT_CHAR || c < 0) _rl_abort_internal (); if (for_pager && (c == NEWLINE || c == RETURN)) *** ../readline-5.2/input.c Wed Aug 16 15:15:16 2006 --- input.c Wed May 2 16:07:59 2007 *************** *** 514,518 **** int size; { ! int mb_len = 0; size_t mbchar_bytes_length; wchar_t wc; --- 522,526 ---- int size; { ! int mb_len, c; size_t mbchar_bytes_length; wchar_t wc; *************** *** 521,531 **** memset(&ps, 0, sizeof (mbstate_t)); memset(&ps_back, 0, sizeof (mbstate_t)); ! while (mb_len < size) { RL_SETSTATE(RL_STATE_MOREINPUT); ! mbchar[mb_len++] = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); mbchar_bytes_length = mbrtowc (&wc, mbchar, mb_len, &ps); if (mbchar_bytes_length == (size_t)(-1)) --- 529,545 ---- memset(&ps, 0, sizeof (mbstate_t)); memset(&ps_back, 0, sizeof (mbstate_t)); ! ! mb_len = 0; while (mb_len < size) { RL_SETSTATE(RL_STATE_MOREINPUT); ! c = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + break; + + mbchar[mb_len++] = c; + mbchar_bytes_length = mbrtowc (&wc, mbchar, mb_len, &ps); if (mbchar_bytes_length == (size_t)(-1)) *************** *** 565,569 **** c = first; memset (mb, 0, mlen); ! for (i = 0; i < mlen; i++) { mb[i] = (char)c; --- 579,583 ---- c = first; memset (mb, 0, mlen); ! for (i = 0; c >= 0 && i < mlen; i++) { mb[i] = (char)c; *** ../readline-5.2/isearch.c Mon Dec 26 17:18:53 2005 --- isearch.c Fri Mar 9 14:30:59 2007 *************** *** 328,333 **** f = (rl_command_func_t *)NULL; ! ! /* Translate the keys we do something with to opcodes. */ if (c >= 0 && _rl_keymap[c].type == ISFUNC) { --- 328,340 ---- f = (rl_command_func_t *)NULL; ! ! if (c < 0) ! { ! cxt->sflags |= SF_FAILED; ! cxt->history_pos = cxt->last_found_line; ! return -1; ! } ! ! /* Translate the keys we do something with to opcodes. */ if (c >= 0 && _rl_keymap[c].type == ISFUNC) { *** ../readline-5.2/misc.c Mon Dec 26 17:20:46 2005 --- misc.c Fri Mar 9 14:44:11 2007 *************** *** 147,150 **** --- 147,152 ---- rl_clear_message (); RL_UNSETSTATE(RL_STATE_NUMERICARG); + if (key < 0) + return -1; return (_rl_dispatch (key, _rl_keymap)); } *** ../readline-5.2/readline.c Wed Aug 16 15:00:36 2006 --- readline.c Fri Mar 9 14:47:24 2007 *************** *** 646,649 **** --- 669,677 ---- { nkey = _rl_subseq_getchar (cxt->okey); + if (nkey < 0) + { + _rl_abort_internal (); + return -1; + } r = _rl_dispatch_subseq (nkey, cxt->dmap, cxt->subseq_arg); cxt->flags |= KSEQ_DISPATCHED; *** ../readline-5.2/text.c Fri Jul 28 11:55:27 2006 --- text.c Sun Mar 25 13:41:38 2007 *************** *** 858,861 **** --- 864,870 ---- RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + return -1; + #if defined (HANDLE_SIGNALS) if (RL_ISSTATE (RL_STATE_CALLBACK) == 0) *************** *** 1521,1524 **** --- 1530,1536 ---- mb_len = _rl_read_mbchar (mbchar, MB_LEN_MAX); + if (mb_len <= 0) + return -1; + if (count < 0) return (_rl_char_search_internal (-count, bdir, mbchar, mb_len)); *************** *** 1537,1540 **** --- 1549,1555 ---- RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + return -1; + if (count < 0) return (_rl_char_search_internal (-count, bdir, c)); *** ../readline-5.2/vi_mode.c Sat Jul 29 16:42:28 2006 --- vi_mode.c Fri Mar 9 15:02:11 2007 *************** *** 887,890 **** --- 887,897 ---- c = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); + + if (c < 0) + { + *nextkey = 0; + return -1; + } + *nextkey = c; *************** *** 903,906 **** --- 910,918 ---- c = rl_read_key (); /* real command */ RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + { + *nextkey = 0; + return -1; + } *nextkey = c; } *************** *** 1225,1236 **** _rl_callback_generic_arg *data; { #if defined (HANDLE_MULTIBYTE) ! _rl_vi_last_search_mblen = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX); #else RL_SETSTATE(RL_STATE_MOREINPUT); ! _rl_vi_last_search_char = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); #endif _rl_callback_func = 0; _rl_want_redisplay = 1; --- 1243,1262 ---- _rl_callback_generic_arg *data; { + int c; #if defined (HANDLE_MULTIBYTE) ! c = _rl_vi_last_search_mblen = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX); #else RL_SETSTATE(RL_STATE_MOREINPUT); ! c = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); #endif + if (c <= 0) + return -1; + + #if !defined (HANDLE_MULTIBYTE) + _rl_vi_last_search_char = c; + #endif + _rl_callback_func = 0; _rl_want_redisplay = 1; *************** *** 1248,1251 **** --- 1274,1278 ---- int count, key; { + int c; #if defined (HANDLE_MULTIBYTE) static char *target; *************** *** 1294,1302 **** { #if defined (HANDLE_MULTIBYTE) ! _rl_vi_last_search_mblen = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX); #else RL_SETSTATE(RL_STATE_MOREINPUT); ! _rl_vi_last_search_char = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); #endif } --- 1321,1335 ---- { #if defined (HANDLE_MULTIBYTE) ! c = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX); ! if (c <= 0) ! return -1; ! _rl_vi_last_search_mblen = c; #else RL_SETSTATE(RL_STATE_MOREINPUT); ! c = rl_read_key (); RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + return -1; + _rl_vi_last_search_char = c; #endif } *************** *** 1468,1471 **** --- 1501,1507 ---- RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (c < 0) + return -1; + #if defined (HANDLE_MULTIBYTE) if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) *************** *** 1486,1489 **** --- 1522,1528 ---- _rl_vi_last_replacement = c = _rl_vi_callback_getchar (mb, MB_LEN_MAX); + if (c < 0) + return -1; + _rl_callback_func = 0; _rl_want_redisplay = 1; *************** *** 1517,1520 **** --- 1556,1562 ---- _rl_vi_last_replacement = c = _rl_vi_callback_getchar (mb, MB_LEN_MAX); + if (c < 0) + return -1; + return (_rl_vi_change_char (count, c, mb)); } *************** *** 1651,1655 **** RL_UNSETSTATE(RL_STATE_MOREINPUT); ! if (ch < 'a' || ch > 'z') { rl_ding (); --- 1693,1697 ---- RL_UNSETSTATE(RL_STATE_MOREINPUT); ! if (ch < 0 || ch < 'a' || ch > 'z') /* make test against 0 explicit */ { rl_ding (); *************** *** 1703,1707 **** return 0; } ! else if (ch < 'a' || ch > 'z') { rl_ding (); --- 1745,1749 ---- return 0; } ! else if (ch < 0 || ch < 'a' || ch > 'z') /* make test against 0 explicit */ { rl_ding (); --- NEW FILE readline52-006 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-006 Bug-Reported-by: Peter Volkov Bug-Reference-ID: <1178376645.9063.25.camel at localhost> Bug-Reference-URL: http://bugs.gentoo.org/177095 Bug-Description: The readline display code miscalculated the screen position when performing a redisplay in which the new text occupies more screen space that the old, but takes fewer bytes to do so (e.g., when replacing a shorter string containing multibyte characters with a longer one containing only ASCII). Patch: *** ../readline-5.2/display.c Thu Apr 26 11:38:22 2007 --- display.c Thu Jul 12 23:10:10 2007 *************** *** 1519,1527 **** /* Non-zero if we're increasing the number of lines. */ int gl = current_line >= _rl_vis_botlin && inv_botlin > _rl_vis_botlin; /* Sometimes it is cheaper to print the characters rather than use the terminal's capabilities. If we're growing the number of lines, make sure we actually cause the new line to wrap around on auto-wrapping terminals. */ ! if (_rl_terminal_can_insert && ((2 * col_temp) >= col_lendiff || _rl_term_IC) && (!_rl_term_autowrap || !gl)) { /* If lendiff > prompt_visible_length and _rl_last_c_pos == 0 and --- 1568,1596 ---- /* Non-zero if we're increasing the number of lines. */ int gl = current_line >= _rl_vis_botlin && inv_botlin > _rl_vis_botlin; + /* If col_lendiff is > 0, implying that the new string takes up more + screen real estate than the old, but lendiff is < 0, meaning that it + takes fewer bytes, we need to just output the characters starting + from the first difference. These will overwrite what is on the + display, so there's no reason to do a smart update. This can really + only happen in a multibyte environment. */ + if (lendiff < 0) + { + _rl_output_some_chars (nfd, temp); + _rl_last_c_pos += _rl_col_width (nfd, 0, temp); + /* If nfd begins before any invisible characters in the prompt, + adjust _rl_last_c_pos to account for wrap_offset and set + cpos_adjusted to let the caller know. */ + if (current_line == 0 && wrap_offset && ((nfd - new) <= prompt_last_invisible)) + { + _rl_last_c_pos -= wrap_offset; + cpos_adjusted = 1; + } + return; + } /* Sometimes it is cheaper to print the characters rather than use the terminal's capabilities. If we're growing the number of lines, make sure we actually cause the new line to wrap around on auto-wrapping terminals. */ ! else if (_rl_terminal_can_insert && ((2 * col_temp) >= col_lendiff || _rl_term_IC) && (!_rl_term_autowrap || !gl)) { /* If lendiff > prompt_visible_length and _rl_last_c_pos == 0 and --- NEW FILE readline52-007 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-007 Bug-Reported-by: Tom Bjorkholm Bug-Reference-ID: Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-readline/2007-04/msg00004.html Bug-Description: An off-by-one error in readline's input buffering caused readline to drop each 511th character of buffered input (e.g., when pasting a large amount of data into a terminal window). Patch: *** ../readline-5.2/input.c Wed Aug 16 15:15:16 2006 --- input.c Tue Jul 17 09:24:21 2007 *************** *** 134,139 **** *key = ibuffer[pop_index++]; ! if (pop_index >= ibuffer_len) pop_index = 0; --- 134,142 ---- *key = ibuffer[pop_index++]; ! #if 0 if (pop_index >= ibuffer_len) + #else + if (pop_index > ibuffer_len) + #endif pop_index = 0; *************** *** 251,255 **** { k = (*rl_getc_function) (rl_instream); ! rl_stuff_char (k); if (k == NEWLINE || k == RETURN) break; --- 254,259 ---- { k = (*rl_getc_function) (rl_instream); ! if (rl_stuff_char (k) == 0) ! break; /* some problem; no more room */ if (k == NEWLINE || k == RETURN) break; *************** *** 374,378 **** --- 378,386 ---- } ibuffer[push_index++] = key; + #if 0 if (push_index >= ibuffer_len) + #else + if (push_index > ibuffer_len) + #endif push_index = 0; --- NEW FILE readline52-008 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-008 Bug-Reported-by: dAniel hAhler Bug-Reference-ID: <4702ED8A.5000503 at thequod.de> Bug-Reference-URL: https://bugs.launchpad.net/ubuntu/+source/bash/+bug/119938 Bug-Description: When updating the display after displaying, for instance, a list of possible completions, readline will place the cursor at the wrong position if the prompt contains invisible characters and a newline. Patch: *** ../readline-5.2-patched/display.c Mon Aug 6 14:26:29 2007 --- display.c Wed Oct 10 22:43:58 2007 *************** *** 1049,1053 **** else tx = nleft; ! if (_rl_last_c_pos > tx) { _rl_backspace (_rl_last_c_pos - tx); /* XXX */ --- 1049,1053 ---- else tx = nleft; ! if (tx >= 0 && _rl_last_c_pos > tx) { _rl_backspace (_rl_last_c_pos - tx); /* XXX */ *************** *** 1205,1209 **** { register char *ofd, *ols, *oe, *nfd, *nls, *ne; ! int temp, lendiff, wsatend, od, nd; int current_invis_chars; int col_lendiff, col_temp; --- 1205,1209 ---- { register char *ofd, *ols, *oe, *nfd, *nls, *ne; ! int temp, lendiff, wsatend, od, nd, o_cpos; int current_invis_chars; int col_lendiff, col_temp; *************** *** 1466,1469 **** --- 1466,1471 ---- } + o_cpos = _rl_last_c_pos; + /* When this function returns, _rl_last_c_pos is correct, and an absolute cursor postion in multibyte mode, but a buffer index when not in a *************** *** 1475,1479 **** invisible characters in the prompt string. Let's see if setting this when we make sure we're at the end of the drawn prompt string works. */ ! if (current_line == 0 && MB_CUR_MAX > 1 && rl_byte_oriented == 0 && _rl_last_c_pos == prompt_physical_chars) cpos_adjusted = 1; #endif --- 1477,1483 ---- invisible characters in the prompt string. Let's see if setting this when we make sure we're at the end of the drawn prompt string works. */ ! if (current_line == 0 && MB_CUR_MAX > 1 && rl_byte_oriented == 0 && ! (_rl_last_c_pos > 0 || o_cpos > 0) && ! _rl_last_c_pos == prompt_physical_chars) cpos_adjusted = 1; #endif --- NEW FILE readline52-009 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-009 Bug-Reported-by: dAniel hAhler Bug-Reference-ID: Bug-Reference-URL: Bug-Description: Under some circumstances, readline will incorrectly display a prompt string containing invisible characters after the final newline. Patch: *** ../readline-5.2-patched/display.c 2007-08-25 13:47:08.000000000 -0400 --- display.c 2007-11-10 17:51:29.000000000 -0500 *************** *** 392,396 **** local_prompt = expand_prompt (p, &prompt_visible_length, &prompt_last_invisible, ! (int *)NULL, &prompt_physical_chars); c = *t; *t = '\0'; --- 420,424 ---- local_prompt = expand_prompt (p, &prompt_visible_length, &prompt_last_invisible, ! &prompt_invis_chars_first_line, &prompt_physical_chars); c = *t; *t = '\0'; *************** *** 399,403 **** local_prompt_prefix = expand_prompt (prompt, &prompt_prefix_length, (int *)NULL, ! &prompt_invis_chars_first_line, (int *)NULL); *t = c; --- 427,431 ---- local_prompt_prefix = expand_prompt (prompt, &prompt_prefix_length, (int *)NULL, ! (int *)NULL, (int *)NULL); *t = c; --- NEW FILE readline52-010 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-010 Bug-Reported-by: Miroslav Lichvar Bug-Reference-ID: Fri, 02 Nov 2007 14:07:45 +0100 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-readline/2007-11/msg00000.html Bug-Description: In certain cases when outputting characters at the end of the line, e.g., when displaying the prompt string, readline positions the cursor incorrectly if the prompt string contains invisible characters and the text being drawn begins before the last invisible character in the line. Patch: *** ../readline-5.2-patched/display.c 2007-08-25 13:47:08.000000000 -0400 --- display.c 2007-11-10 17:51:29.000000000 -0500 *************** *** 1566,1574 **** else { - /* We have horizontal scrolling and we are not inserting at - the end. We have invisible characters in this line. This - is a dumb update. */ _rl_output_some_chars (nfd, temp); _rl_last_c_pos += col_temp; return; } --- 1619,1632 ---- else { _rl_output_some_chars (nfd, temp); _rl_last_c_pos += col_temp; + /* If nfd begins before any invisible characters in the prompt, + adjust _rl_last_c_pos to account for wrap_offset and set + cpos_adjusted to let the caller know. */ + if (current_line == 0 && wrap_offset && ((nfd - new) <= prompt_last_invisible)) + { + _rl_last_c_pos -= wrap_offset; + cpos_adjusted = 1; + } return; } --- NEW FILE readline52-011 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-011 Bug-Reported-by: Uwe Doering Bug-Reference-ID: <46F3DD72.2090801 at geminix.org> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html Bug-Description: There is an off-by-one error in the code that buffers characters received very quickly in succession, causing characters to be dropped. Patch: *** ../readline-5.2-patched/input.c 2007-08-25 13:47:10.000000000 -0400 --- input.c 2007-10-12 22:55:25.000000000 -0400 *************** *** 155,159 **** pop_index--; if (pop_index < 0) ! pop_index = ibuffer_len - 1; ibuffer[pop_index] = key; return (1); --- 155,159 ---- pop_index--; if (pop_index < 0) ! pop_index = ibuffer_len; ibuffer[pop_index] = key; return (1); --- NEW FILE readline52-013 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-013 Bug-Reported-by: slinkp Bug-Reference-ID: Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2008-05/msg00085.html Bug-Description: The presence of invisible characters in a prompt longer than the screenwidth with invisible characters on the first and last prompt lines caused readline to place the cursor in the wrong physical location. Patch: *** ../readline-5.2-patched/display.c 2007-12-14 21:12:40.000000000 -0500 --- display.c 2008-10-23 09:39:46.000000000 -0400 *************** *** 911,914 **** --- 944,951 ---- OFFSET (which has already been calculated above). */ + #define INVIS_FIRST() (prompt_physical_chars > _rl_screenwidth ? prompt_invis_chars_first_line : wrap_offset) + #define WRAP_OFFSET(line, offset) ((line == 0) \ + ? (offset ? INVIS_FIRST() : 0) \ + : ((line == prompt_last_screen_line) ? wrap_offset-prompt_invis_chars_first_line : 0)) #define W_OFFSET(line, offset) ((line) == 0 ? offset : 0) #define VIS_LLEN(l) ((l) > _rl_vis_botlin ? 0 : (vis_lbreaks[l+1] - vis_lbreaks[l])) *************** *** 945,949 **** _rl_last_c_pos > wrap_offset && o_cpos < prompt_last_invisible) ! _rl_last_c_pos -= wrap_offset; /* If this is the line with the prompt, we might need to --- 982,992 ---- _rl_last_c_pos > wrap_offset && o_cpos < prompt_last_invisible) ! _rl_last_c_pos -= prompt_invis_chars_first_line; /* XXX - was wrap_offset */ ! else if (linenum == prompt_last_screen_line && prompt_physical_chars > _rl_screenwidth && ! (MB_CUR_MAX > 1 && rl_byte_oriented == 0) && ! cpos_adjusted == 0 && ! _rl_last_c_pos != o_cpos && ! _rl_last_c_pos > (prompt_last_invisible - _rl_screenwidth - prompt_invis_chars_first_line)) ! _rl_last_c_pos -= (wrap_offset-prompt_invis_chars_first_line); /* If this is the line with the prompt, we might need to *************** *** 1205,1209 **** { register char *ofd, *ols, *oe, *nfd, *nls, *ne; ! int temp, lendiff, wsatend, od, nd, o_cpos; int current_invis_chars; int col_lendiff, col_temp; --- 1264,1268 ---- { register char *ofd, *ols, *oe, *nfd, *nls, *ne; ! int temp, lendiff, wsatend, od, nd, twidth, o_cpos; int current_invis_chars; int col_lendiff, col_temp; *************** *** 1221,1225 **** temp = _rl_last_c_pos; else ! temp = _rl_last_c_pos - W_OFFSET(_rl_last_v_pos, visible_wrap_offset); if (temp == _rl_screenwidth && _rl_term_autowrap && !_rl_horizontal_scroll_mode && _rl_last_v_pos == current_line - 1) --- 1280,1284 ---- temp = _rl_last_c_pos; else ! temp = _rl_last_c_pos - WRAP_OFFSET (_rl_last_v_pos, visible_wrap_offset); if (temp == _rl_screenwidth && _rl_term_autowrap && !_rl_horizontal_scroll_mode && _rl_last_v_pos == current_line - 1) *************** *** 1587,1599 **** { _rl_output_some_chars (nfd + lendiff, temp - lendiff); - #if 1 /* XXX -- this bears closer inspection. Fixes a redisplay bug reported against bash-3.0-alpha by Andreas Schwab involving multibyte characters and prompt strings with invisible characters, but was previously disabled. */ ! _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); ! #else ! _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff); ! #endif } } --- 1648,1660 ---- { _rl_output_some_chars (nfd + lendiff, temp - lendiff); /* XXX -- this bears closer inspection. Fixes a redisplay bug reported against bash-3.0-alpha by Andreas Schwab involving multibyte characters and prompt strings with invisible characters, but was previously disabled. */ ! if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) ! twidth = _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); ! else ! twidth = temp - lendiff; ! _rl_last_c_pos += twidth; } } *************** *** 1789,1793 **** int cpos, dpos; /* current and desired cursor positions */ ! woff = W_OFFSET (_rl_last_v_pos, wrap_offset); cpos = _rl_last_c_pos; #if defined (HANDLE_MULTIBYTE) --- 1850,1854 ---- int cpos, dpos; /* current and desired cursor positions */ ! woff = WRAP_OFFSET (_rl_last_v_pos, wrap_offset); cpos = _rl_last_c_pos; #if defined (HANDLE_MULTIBYTE) *************** *** 1803,1807 **** prompt string, since they're both buffer indices and DPOS is a desired display position. */ ! if (new > prompt_last_invisible) /* XXX - don't use woff here */ { dpos -= woff; --- 1864,1872 ---- prompt string, since they're both buffer indices and DPOS is a desired display position. */ ! if ((new > prompt_last_invisible) || /* XXX - don't use woff here */ ! (prompt_physical_chars > _rl_screenwidth && ! _rl_last_v_pos == prompt_last_screen_line && ! wrap_offset != woff && ! new > (prompt_last_invisible-_rl_screenwidth-wrap_offset))) { dpos -= woff; --- NEW FILE readline52-014 --- READLINE PATCH REPORT ===================== Readline-Release: 5.2 Patch-ID: readline52-014 Bug-Reported-by: Len Lattanzi Bug-Reference-ID: <52B1297F-6675-45CC-B63E-24745337D006 at apple.com> Bug-Reference-URL: Bug-Description: On systems where mbrtowc() returns -2 when passed a length argument with value 0, when using a multibyte locale, Readline's emacs-mode forward-char at the end of a line will leave the point beyond the end of the line. Patch: *** ../readline-5.2-patched/mbutil.c 2009-05-29 23:09:26.000000000 -0400 --- mbutil.c 2009-05-29 23:10:12.000000000 -0400 *************** *** 78,82 **** int seed, count, find_non_zero; { ! size_t tmp; mbstate_t ps; int point; --- 78,82 ---- int seed, count, find_non_zero; { ! size_t tmp, len; mbstate_t ps; int point; *************** *** 99,103 **** while (count > 0) { ! tmp = mbrtowc (&wc, string+point, strlen(string + point), &ps); if (MB_INVALIDCH ((size_t)tmp)) { --- 99,106 ---- while (count > 0) { ! len = strlen (string + point); ! if (len == 0) ! break; ! tmp = mbrtowc (&wc, string+point, len, &ps); if (MB_INVALIDCH ((size_t)tmp)) { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compat-readline5/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:39:31 -0000 1.1 +++ .cvsignore 14 Jul 2009 11:49:16 -0000 1.2 @@ -0,0 +1 @@ +readline-5.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compat-readline5/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:39:31 -0000 1.1 +++ sources 14 Jul 2009 11:49:16 -0000 1.2 @@ -0,0 +1 @@ +e39331f32ad14009b9ff49cc10c5e751 readline-5.2.tar.gz From pbrobinson at fedoraproject.org Tue Jul 14 11:52:19 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Tue, 14 Jul 2009 11:52:19 +0000 (UTC) Subject: rpms/mojito/devel .cvsignore, 1.3, 1.4 mojito.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090714115219.70C8511C0497@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8747 Modified Files: .cvsignore mojito.spec sources Log Message: - Update to 0.18.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 6 Jul 2009 09:23:28 -0000 1.3 +++ .cvsignore 14 Jul 2009 11:52:19 -0000 1.4 @@ -1 +1 @@ -mojito-0.17.tar.bz2 +mojito-0.18.1.tar.bz2 Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mojito.spec 6 Jul 2009 10:07:40 -0000 1.4 +++ mojito.spec 14 Jul 2009 11:52:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: mojito -Version: 0.17 -Release: 3%{?dist} +Version: 0.18.1 +Release: 1%{?dist} Summary: A social network data aggregator Group: Applications/Internet @@ -103,6 +103,9 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog +* Mon Jul 6 2009 Peter Robinson 0.18.1-1 +- Update to 0.18.1 + * Mon Jul 6 2009 Peter Robinson 0.17-3 - Add some additional buildreqs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Jul 2009 09:23:28 -0000 1.3 +++ sources 14 Jul 2009 11:52:19 -0000 1.4 @@ -1 +1 @@ -c5af18f5d0a02da8a81562cbe3e7b91f mojito-0.17.tar.bz2 +da9d1aef51a111a6d256ae968b05910b mojito-0.18.1.tar.bz2 From jskala at fedoraproject.org Tue Jul 14 11:55:37 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 11:55:37 +0000 (UTC) Subject: rpms/quagga/F-11 quagga.spec,1.50,1.51 Message-ID: <20090714115537.976DA11C0497@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/quagga/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10478 Modified Files: quagga.spec Log Message: * Tue Jul 14 2009 Jiri Skala - 0.99.12-2 - changed Obsoletes directive to Conflicts Index: quagga.spec =================================================================== RCS file: /cvs/extras/rpms/quagga/F-11/quagga.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- quagga.spec 20 May 2009 13:34:15 -0000 1.50 +++ quagga.spec 14 Jul 2009 11:55:37 -0000 1.51 @@ -32,7 +32,7 @@ Summary: Routing daemon Name: quagga Version: 0.99.12 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 License: GPLv2+ Group: System Environment/Daemons @@ -60,7 +60,7 @@ Requires(post): /sbin/install-info Requires(preun): /sbin/install-info Provides: routingdaemon BuildRoot: %{_tmppath}/%{name}-%{version}-root -Obsoletes: bird gated mrt zebra +Conflicts: bird gated mrt zebra %description Quagga is a free software that manages TCP/IP based routing @@ -345,6 +345,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 14 2009 Jiri Skala - 0.99.12-2 +- changed Obsoletes directive to Conflicts + * Wed May 20 2009 Jiri Skala - 0.99.12-1 - update to latest upstream version - fix #499960 - BGPd in Quagga prior to 0.99.12 has a serious assert problem crashing with ASN4's From pfrields at fedoraproject.org Tue Jul 14 12:00:02 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Tue, 14 Jul 2009 12:00:02 +0000 (UTC) Subject: rpms/nautilus-open-terminal/devel nautilus-open-terminal-0.13-header+vars.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 nautilus-open-terminal.spec, 1.30, 1.31 sources, 1.8, 1.9 Message-ID: <20090714120002.EDD0411C0497@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-open-terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11676 Modified Files: .cvsignore nautilus-open-terminal.spec sources Added Files: nautilus-open-terminal-0.13-header+vars.patch Log Message: Update to upstream 0.13 nautilus-open-terminal-0.13-header+vars.patch: --- NEW FILE nautilus-open-terminal-0.13-header+vars.patch --- diff -uNr nautilus-open-terminal-0.13-orig/src/nautilus-open-terminal.c nautilus-open-terminal-0.13/src/nautilus-open-terminal.c --- nautilus-open-terminal-0.13-orig/src/nautilus-open-terminal.c 2009-05-23 05:15:17.000000000 -0400 +++ nautilus-open-terminal-0.13/src/nautilus-open-terminal.c 2009-07-14 07:49:09.000000000 -0400 @@ -42,6 +42,7 @@ #include #include /* for strcmp */ #include /* for chdir */ +#include /* for atoi */ #include static void nautilus_open_terminal_instance_init (NautilusOpenTerminal *cvs); @@ -125,8 +126,6 @@ { char *tmp, *save; char *uri; - char *u, *h, *s, *p; - char *h_end; uri = g_file_get_uri (file); g_assert (uri != NULL); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-open-terminal/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 21 May 2009 14:13:29 -0000 1.8 +++ .cvsignore 14 Jul 2009 11:59:32 -0000 1.9 @@ -1 +1 @@ -nautilus-open-terminal-0.12.tar.bz2 +nautilus-open-terminal-0.13.tar.bz2 Index: nautilus-open-terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-open-terminal/devel/nautilus-open-terminal.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- nautilus-open-terminal.spec 21 May 2009 14:13:29 -0000 1.30 +++ nautilus-open-terminal.spec 14 Jul 2009 11:59:32 -0000 1.31 @@ -1,5 +1,5 @@ Name: nautilus-open-terminal -Version: 0.12 +Version: 0.13 Release: 1%{?dist} Summary: Nautilus extension for an open terminal shortcut @@ -8,6 +8,7 @@ License: GPLv2+ URL: http://download.gnome.org/sources/%{name}/ Source0: http://download.gnome.org/sources/%{name}/%{version}/%{name}-%{version}.tar.bz2 Patch0: nautilus-open-terminal-0.12-eelheader.patch +Patch1: nautilus-open-terminal-0.13-header+vars.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gnome-desktop-devel @@ -24,6 +25,7 @@ Terminal" option for nautilus users who %prep %setup -q %patch0 -p1 -b .eelheader +%patch1 -p1 -b .headervars libtoolize --force --copy autoreconf @@ -59,6 +61,9 @@ gconftool-2 \ %{_libdir}/nautilus/extensions-2.0/*.so* %changelog +* Tue Jul 14 2009 Paul W. Frields - 0.13-1 +- Update to upstream 0.13 + * Thu May 21 2009 Paul W. Frields - 0.12-1 - Update to upstream 0.12 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-open-terminal/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 21 May 2009 14:13:29 -0000 1.8 +++ sources 14 Jul 2009 11:59:32 -0000 1.9 @@ -1 +1 @@ -4c1e1674282836de718e7537da748d81 nautilus-open-terminal-0.12.tar.bz2 +412d61dc1a6c70235afd3735476f3401 nautilus-open-terminal-0.13.tar.bz2 From harald at fedoraproject.org Tue Jul 14 12:05:12 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Tue, 14 Jul 2009 12:05:12 +0000 (UTC) Subject: rpms/udev/devel udev.spec,1.285,1.286 Message-ID: <20090714120512.CF9EF11C0497@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13239 Modified Files: udev.spec Log Message: * Tue Jul 14 2009 Harald Hoyer 145-1 - version 145 - add "udevlog" kernel command line option to redirect the output of udevd to /dev/.udev/udev.log Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v retrieving revision 1.285 retrieving revision 1.286 diff -u -p -r1.285 -r1.286 --- udev.spec 14 Jul 2009 10:32:55 -0000 1.285 +++ udev.spec 14 Jul 2009 12:05:12 -0000 1.286 @@ -110,11 +110,13 @@ mkdir -p $RPM_BUILD_ROOT%{_sbindir} make install DESTDIR=$RPM_BUILD_ROOT rm -fr $RPM_BUILD_ROOT%{_docdir}/udev +rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la # Deprecated, but keep the ownership mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/{rules.d,makedev.d,scripts,devices} mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/dev.d mkdir -p $RPM_BUILD_ROOT%{_bindir} +touch $RPM_BUILD_ROOT%{_sysconfdir}/scsi_id.config # force relative symlinks ln -sf ..%{udev_scriptdir}/scsi_id $RPM_BUILD_ROOT/sbin/scsi_id @@ -279,8 +281,7 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/udev/udev.conf %attr(0644,root,root) %{udev_scriptdir}/rules.d/*.rules -#%config(missingok) %{_sysconfdir}/hotplug.d/default/10-udev.hotplug -%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/scsi_id.config +%ghost %config(noreplace,missingok) %attr(0644,root,root) %{_sysconfdir}/scsi_id.config %config %attr(0644,root,root) %{_sysconfdir}/modprobe.d/floppy-pnp.conf @@ -324,11 +325,12 @@ rm -rf $RPM_BUILD_ROOT %files -n libgudev1 %defattr(0644, root, root, 0755) -%attr(0755,root,root) %{_libdir}/libgudev-1.0* +%attr(0755,root,root) %{_libdir}/libgudev-1.0.so.* %attr(0644,root,root) %{_libdir}/girepository-1.0/GUdev-1.0.typelib %files -n libgudev1-devel %defattr(0644, root, root, 0755) +%attr(0755,root,root) %{_libdir}/libgudev-1.0.so %attr(0644,root,root) %{_includedir}/gudev-1.0/gudev/*.h %attr(0644,root,root) %{_datadir}/gir-1.0/GUdev-1.0.gir %dir %{_datadir}/gtk-doc/html/gudev From harald at fedoraproject.org Tue Jul 14 12:09:02 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Tue, 14 Jul 2009 12:09:02 +0000 (UTC) Subject: rpms/udev/devel .cvsignore,1.61,1.62 sources,1.61,1.62 Message-ID: <20090714120902.479F111C0497@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14311 Modified Files: .cvsignore sources Log Message: * Tue Jul 14 2009 Harald Hoyer 145-1 - version 145 - add "udevlog" kernel command line option to redirect the output of udevd to /dev/.udev/udev.log Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 22 Jun 2009 09:59:15 -0000 1.61 +++ .cvsignore 14 Jul 2009 12:09:01 -0000 1.62 @@ -1 +1 @@ -udev-143.tar.bz2 +udev-145.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/sources,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sources 22 Jun 2009 09:59:15 -0000 1.61 +++ sources 14 Jul 2009 12:09:01 -0000 1.62 @@ -1 +1 @@ -d15d1886c0bfa756969f25ddaecf34da udev-143.tar.bz2 +b3d3b5f88c7b81e7615700a04db685e1 udev-145.tar.bz2 From sparks at fedoraproject.org Tue Jul 14 12:12:31 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 12:12:31 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/devel import.log, NONE, 1.1 zikula-module-MultiHook.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714121231.3A30D11C0497@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-MultiHook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15072/devel Modified Files: .cvsignore sources Added Files: import.log zikula-module-MultiHook.spec Log Message: New MultiHook package. --- NEW FILE import.log --- zikula-module-MultiHook-5_0-4_fc11:HEAD:zikula-module-MultiHook-5.0-4.fc11.src.rpm:1247573516 --- NEW FILE zikula-module-MultiHook.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname MultiHook Name: zikula-module-%{zikula_modname} Version: 5.0 Release: 4%{?dist} Summary: MultiHook is a simple replacement for the old AutoLinks module for Zikula Group: Applications/Publishing License: GPLv2+ URL: http://code.zikula.org/multihook/ #http://code.zikula.org/multihook/downloads/4 Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description MultiHook started as a simple replacement for the old AutoLinks module (replacing normal text with links), but in the meantime it can handle also abbreviations and acronyms (replacing text with abbr and acronym-tags) and it can also censor if wanted (replacing bad words with ***). Links, abbreviations, acronyms and bad words can be easily defined with some helpful Ajax functionality. MultiHook was the first module in the Zikula world to use Ajax for convenience. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f %build # Fixing wrong-file-end-of-line-encoding errors cd pndocs sed -i 's/\r//' license.txt sed -i 's/\r//' install.txt sed -i 's/\r//' needles_howto.txt sed -i 's/\r//' credits.txt sed -i 's/\r//' changelog.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/license.txt pndocs/credits.txt pndocs/help.txt pndocs/install.txt pndocs/needles_howto.txt %{zikula_moddir}/%{zikula_modname} %changelog * Mon Jul 13 2009 Eric "Sparks" Christensen - 5.0-4 - Fixed license in SPEC. * Thu Jul 09 2009 Eric "Sparks" Christensen - 5.0-3 - Fixed wrong-file-end-of-line-encoding errors * Sun Jun 15 2009 Eric "Sparks" Christensen - 5.0-2 - Added docs to the SPEC - Fixed mix of spaces and tabs in SPEC * Sun Jun 14 2009 Eric "Sparks" Christensen - 5.0-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:32:34 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:12:30 -0000 1.2 @@ -0,0 +1 @@ +MultiHook_5.0.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:32:35 -0000 1.1 +++ sources 14 Jul 2009 12:12:31 -0000 1.2 @@ -0,0 +1 @@ +7bcef21d80df346133ce6742b9b7bbb6 MultiHook_5.0.zip From jskala at fedoraproject.org Tue Jul 14 12:13:02 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 12:13:02 +0000 (UTC) Subject: rpms/quagga/devel quagga.spec,1.51,1.52 Message-ID: <20090714121302.A8CF711C0497@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/quagga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15104 Modified Files: quagga.spec Log Message: * Tue Jul 14 2009 Jiri Skala - 0.99.12-2 - replaced Obsoletes by Conflicts Index: quagga.spec =================================================================== RCS file: /cvs/extras/rpms/quagga/devel/quagga.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- quagga.spec 20 May 2009 12:38:58 -0000 1.51 +++ quagga.spec 14 Jul 2009 12:12:32 -0000 1.52 @@ -32,7 +32,7 @@ Summary: Routing daemon Name: quagga Version: 0.99.12 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 License: GPLv2+ Group: System Environment/Daemons @@ -60,7 +60,7 @@ Requires(post): /sbin/install-info Requires(preun): /sbin/install-info Provides: routingdaemon BuildRoot: %{_tmppath}/%{name}-%{version}-root -Obsoletes: bird gated mrt zebra +Conflicts: bird gated mrt zebra %description Quagga is a free software that manages TCP/IP based routing @@ -345,6 +345,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 14 2009 Jiri Skala - 0.99.12-2 +- replaced Obsoletes by Conflicts + * Wed May 20 2009 Jiri Skala - 0.99.12-1 - update to latest upstream version - fix #499960 - BGPd in Quagga prior to 0.99.12 has a serious assert problem crashing with ASN4's From sparks at fedoraproject.org Tue Jul 14 12:14:15 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 12:14:15 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/F-10 import.log, NONE, 1.1 zikula-module-MultiHook.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714121415.53B7F11C0497@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-MultiHook/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15457/F-10 Modified Files: .cvsignore sources Added Files: import.log zikula-module-MultiHook.spec Log Message: Initial package for F-10 for Multihook. --- NEW FILE import.log --- zikula-module-MultiHook-5_0-4_fc11:F-10:zikula-module-MultiHook-5.0-4.fc11.src.rpm:1247573596 --- NEW FILE zikula-module-MultiHook.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname MultiHook Name: zikula-module-%{zikula_modname} Version: 5.0 Release: 4%{?dist} Summary: MultiHook is a simple replacement for the old AutoLinks module for Zikula Group: Applications/Publishing License: GPLv2+ URL: http://code.zikula.org/multihook/ #http://code.zikula.org/multihook/downloads/4 Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description MultiHook started as a simple replacement for the old AutoLinks module (replacing normal text with links), but in the meantime it can handle also abbreviations and acronyms (replacing text with abbr and acronym-tags) and it can also censor if wanted (replacing bad words with ***). Links, abbreviations, acronyms and bad words can be easily defined with some helpful Ajax functionality. MultiHook was the first module in the Zikula world to use Ajax for convenience. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f %build # Fixing wrong-file-end-of-line-encoding errors cd pndocs sed -i 's/\r//' license.txt sed -i 's/\r//' install.txt sed -i 's/\r//' needles_howto.txt sed -i 's/\r//' credits.txt sed -i 's/\r//' changelog.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/license.txt pndocs/credits.txt pndocs/help.txt pndocs/install.txt pndocs/needles_howto.txt %{zikula_moddir}/%{zikula_modname} %changelog * Mon Jul 13 2009 Eric "Sparks" Christensen - 5.0-4 - Fixed license in SPEC. * Thu Jul 09 2009 Eric "Sparks" Christensen - 5.0-3 - Fixed wrong-file-end-of-line-encoding errors * Sun Jun 15 2009 Eric "Sparks" Christensen - 5.0-2 - Added docs to the SPEC - Fixed mix of spaces and tabs in SPEC * Sun Jun 14 2009 Eric "Sparks" Christensen - 5.0-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:32:34 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:13:44 -0000 1.2 @@ -0,0 +1 @@ +MultiHook_5.0.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:32:35 -0000 1.1 +++ sources 14 Jul 2009 12:13:45 -0000 1.2 @@ -0,0 +1 @@ +7bcef21d80df346133ce6742b9b7bbb6 MultiHook_5.0.zip From sparks at fedoraproject.org Tue Jul 14 12:15:38 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 12:15:38 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/F-11 import.log, NONE, 1.1 zikula-module-MultiHook.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714121538.B982C11C0497@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-MultiHook/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15869/F-11 Modified Files: .cvsignore sources Added Files: import.log zikula-module-MultiHook.spec Log Message: Initial build for F-11 for Multihook. --- NEW FILE import.log --- zikula-module-MultiHook-5_0-4_fc11:F-11:zikula-module-MultiHook-5.0-4.fc11.src.rpm:1247573683 --- NEW FILE zikula-module-MultiHook.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname MultiHook Name: zikula-module-%{zikula_modname} Version: 5.0 Release: 4%{?dist} Summary: MultiHook is a simple replacement for the old AutoLinks module for Zikula Group: Applications/Publishing License: GPLv2+ URL: http://code.zikula.org/multihook/ #http://code.zikula.org/multihook/downloads/4 Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description MultiHook started as a simple replacement for the old AutoLinks module (replacing normal text with links), but in the meantime it can handle also abbreviations and acronyms (replacing text with abbr and acronym-tags) and it can also censor if wanted (replacing bad words with ***). Links, abbreviations, acronyms and bad words can be easily defined with some helpful Ajax functionality. MultiHook was the first module in the Zikula world to use Ajax for convenience. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f %build # Fixing wrong-file-end-of-line-encoding errors cd pndocs sed -i 's/\r//' license.txt sed -i 's/\r//' install.txt sed -i 's/\r//' needles_howto.txt sed -i 's/\r//' credits.txt sed -i 's/\r//' changelog.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/license.txt pndocs/credits.txt pndocs/help.txt pndocs/install.txt pndocs/needles_howto.txt %{zikula_moddir}/%{zikula_modname} %changelog * Mon Jul 13 2009 Eric "Sparks" Christensen - 5.0-4 - Fixed license in SPEC. * Thu Jul 09 2009 Eric "Sparks" Christensen - 5.0-3 - Fixed wrong-file-end-of-line-encoding errors * Sun Jun 15 2009 Eric "Sparks" Christensen - 5.0-2 - Added docs to the SPEC - Fixed mix of spaces and tabs in SPEC * Sun Jun 14 2009 Eric "Sparks" Christensen - 5.0-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:32:34 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:15:08 -0000 1.2 @@ -0,0 +1 @@ +MultiHook_5.0.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:32:35 -0000 1.1 +++ sources 14 Jul 2009 12:15:08 -0000 1.2 @@ -0,0 +1 @@ +7bcef21d80df346133ce6742b9b7bbb6 MultiHook_5.0.zip From sparks at fedoraproject.org Tue Jul 14 12:17:07 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 12:17:07 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/EL-5 import.log, NONE, 1.1 zikula-module-MultiHook.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714121707.D20B511C0497@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-MultiHook/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16208/EL-5 Modified Files: .cvsignore sources Added Files: import.log zikula-module-MultiHook.spec Log Message: Initial package for EL-5 for MultiHook. --- NEW FILE import.log --- zikula-module-MultiHook-5_0-4_fc11:EL-5:zikula-module-MultiHook-5.0-4.fc11.src.rpm:1247573767 --- NEW FILE zikula-module-MultiHook.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname MultiHook Name: zikula-module-%{zikula_modname} Version: 5.0 Release: 4%{?dist} Summary: MultiHook is a simple replacement for the old AutoLinks module for Zikula Group: Applications/Publishing License: GPLv2+ URL: http://code.zikula.org/multihook/ #http://code.zikula.org/multihook/downloads/4 Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description MultiHook started as a simple replacement for the old AutoLinks module (replacing normal text with links), but in the meantime it can handle also abbreviations and acronyms (replacing text with abbr and acronym-tags) and it can also censor if wanted (replacing bad words with ***). Links, abbreviations, acronyms and bad words can be easily defined with some helpful Ajax functionality. MultiHook was the first module in the Zikula world to use Ajax for convenience. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f %build # Fixing wrong-file-end-of-line-encoding errors cd pndocs sed -i 's/\r//' license.txt sed -i 's/\r//' install.txt sed -i 's/\r//' needles_howto.txt sed -i 's/\r//' credits.txt sed -i 's/\r//' changelog.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/license.txt pndocs/credits.txt pndocs/help.txt pndocs/install.txt pndocs/needles_howto.txt %{zikula_moddir}/%{zikula_modname} %changelog * Mon Jul 13 2009 Eric "Sparks" Christensen - 5.0-4 - Fixed license in SPEC. * Thu Jul 09 2009 Eric "Sparks" Christensen - 5.0-3 - Fixed wrong-file-end-of-line-encoding errors * Sun Jun 15 2009 Eric "Sparks" Christensen - 5.0-2 - Added docs to the SPEC - Fixed mix of spaces and tabs in SPEC * Sun Jun 14 2009 Eric "Sparks" Christensen - 5.0-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:32:34 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:16:37 -0000 1.2 @@ -0,0 +1 @@ +MultiHook_5.0.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:32:35 -0000 1.1 +++ sources 14 Jul 2009 12:16:37 -0000 1.2 @@ -0,0 +1 @@ +7bcef21d80df346133ce6742b9b7bbb6 MultiHook_5.0.zip From caolanm at fedoraproject.org Tue Jul 14 12:28:16 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 14 Jul 2009 12:28:16 +0000 (UTC) Subject: rpms/mythes-pl/devel mythes-pl.spec,1.5,1.6 Message-ID: <20090714122816.8AC3F11C0497@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19430 Modified Files: mythes-pl.spec Log Message: for consistency Index: mythes-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-pl/devel/mythes-pl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-pl.spec 10 Jul 2009 15:46:56 -0000 1.5 +++ mythes-pl.spec 14 Jul 2009 12:27:46 -0000 1.6 @@ -19,10 +19,13 @@ Polish thesaurus. %build for i in README_th_pl_PL_v2.txt; do if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then - iconv -f ISO-8859-2 -t UTF-8 $i | tr -d '\r' > $i.new + iconv -f ISO-8859-2 -t UTF-8 $i > $i.new touch -r $i $i.new mv -f $i.new $i fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done %install From nim at fedoraproject.org Tue Jul 14 12:02:00 2009 From: nim at fedoraproject.org (nim) Date: Tue, 14 Jul 2009 12:02:00 +0000 (UTC) Subject: rpms/xgridfit/devel xgridfit-1.19-1.b.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 import.log, 1.5, 1.6 sources, 1.7, 1.8 xgridfit.spec, 1.12, 1.13 Message-ID: <20090714120200.368EB11C0497@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/xgridfit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12227/devel Modified Files: .cvsignore import.log sources xgridfit.spec Added Files: xgridfit-1.19-1.b.patch Log Message: 1.19.b xgridfit-1.19-1.b.patch: --- NEW FILE xgridfit-1.19-1.b.patch --- diff -uNr xgridfit.orig/Makefile xgridfit/Makefile --- xgridfit.orig/Makefile 2008-12-20 02:52:29.000000000 +0100 +++ xgridfit/Makefile 2009-07-14 13:48:18.291212236 +0200 @@ -8,45 +8,44 @@ DESTDIR = PREFIX = /usr/local +# %{_bindir} in rpm speak +BINDIR = $(PREFIX)/bin + +# Should be /usr/share/xml as per +# http://www.pathname.com/fhs/pub/fhs-2.3.html#AEN2007 +# %{_datadir}/xml in rpm speak +XMLDIR = $(PREFIX)/share + +#%{_mandir} in rpm speak +MANDIR = $(PREFIX)/share/man + +# Could be changed to $(XMLDIR)/$(PACKAGE)-$(VERSION) +MAINDIR = $(XMLDIR)/$(PACKAGE) install: - mkdir -p $(DESTDIR)$(PREFIX)/bin + install -d -m 0755 $(DESTDIR)$(BINDIR) + install -p -m 0755 bin/* $(DESTDIR)$(BINDIR) - sed "s|@xslt_prefix@|${PREFIX}|g" \ - bin/xgridfit > $(DESTDIR)$(PREFIX)/bin/xgridfit; \ - sed "s|@xslt_prefix@|${PREFIX}|g" \ - bin/xgfupdate > $(DESTDIR)$(PREFIX)/bin/xgfupdate; \ - sed "s|@xslt_prefix@|${PREFIX}|g" \ - bin/ttx2xgf > $(DESTDIR)$(PREFIX)/bin/ttx2xgf; \ - sed "s|@xslt_prefix@|${PREFIX}|g" \ - bin/xgfconfig > $(DESTDIR)$(PREFIX)/bin/xgfconfig; \ - sed "s|@xslt_prefix@|${PREFIX}|g" \ - bin/xgfmerge > $(DESTDIR)$(PREFIX)/bin/xgfmerge; \ - - chmod 0755 $(DESTDIR)$(PREFIX)/bin/xgridfit - chmod 0755 $(DESTDIR)$(PREFIX)/bin/xgfupdate - chmod 0755 $(DESTDIR)$(PREFIX)/bin/ttx2xgf - chmod 0755 $(DESTDIR)$(PREFIX)/bin/xgfconfig - chmod 0755 $(DESTDIR)$(PREFIX)/bin/xgfmerge - - mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/lib - cp lib/* $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/lib - - mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas - cp schemas/* $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas - - mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/utils - cp utils/* $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/utils - - mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 - cp man/*.1 $(DESTDIR)$(PREFIX)/share/man/man1 - -# If replacing an older version of Xgridfit, these are obsolete. - rm -f $(DESTDIR)$(PREFIX)/share/man/man1/xgridfit-ttx.1 - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/lib/xgridfit-ttx.xsl - rm -f $(DESTDIR)$(PREFIX)/bin/xgridfit-ttx - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas/xgridfit-strict.* - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas/xgridfit-transitional.* + for file in $(DESTDIR)$(BINDIR)/* ; do \ + sed -i "s|@xslt_prefix@/share/${PACKAGE}|${MAINDIR}|g" $$file ;\ + done + + install -d -m 0755 $(DESTDIR)$(MAINDIR)/{lib,schemas,utils} + for dir in lib schemas utils ; do \ + install -p -m 0644 $$dir/* $(DESTDIR)$(MAINDIR)/$$dir ;\ + done + # If xgridfit had a namespace the schemas could also be registered in + # system xml catalogs + + install -d -m 0755 $(DESTDIR)$(MANDIR)/man1 + install -p -m 0644 man/*.1 $(DESTDIR)$(MANDIR)/man1 + + # If replacing an older version of Xgridfit, these are obsolete. + rm -f $(DESTDIR)$(MANDIR)/man1/$(PACKAGE)-ttx.1 + rm -f $(DESTDIR)$(BINDIR)/$(PACKAGE)-ttx + rm -f $(DESTDIR)$(MAINDIR)/lib/$(PACKAGE)-ttx.xsl + rm -f $(DESTDIR)$(MAINDIR)/schemas/$(PACKAGE)-strict.* + rm -f $(DESTDIR)$(MAINDIR)/schemas/$(PACKAGE)-transitional.* install-docs: @@ -60,22 +59,22 @@ uninstall: - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/lib/* - rmdir $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/lib - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas/* - rmdir $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/schemas - rm -f $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/utils/* - rmdir $(DESTDIR)$(PREFIX)/share/$(PACKAGE)/utils - rmdir $(DESTDIR)$(PREFIX)/share/$(PACKAGE) - rm -f $(DESTDIR)$(PREFIX)/share/man/man1/xgridfit.1* - rm -f $(DESTDIR)$(PREFIX)/share/man/man1/xgfupdate.1* - rm -f $(DESTDIR)$(PREFIX)/share/man/man1/ttx2xgf.1* - rm -f $(DESTDIR)$(PREFIX)/share/man/man1/xgfconfig.1* - rm -f $(DESTDIR)$(PREFIX)/bin/xgridfit - rm -f $(DESTDIR)$(PREFIX)/bin/xgfupdate - rm -f $(DESTDIR)$(PREFIX)/bin/ttx2xgf - rm -f $(DESTDIR)$(PREFIX)/bin/xgfconfig - rm -f $(DESTDIR)$(PREFIX)/bin/xgfmerge + rm -f $(DESTDIR)$(MAINDIR)/lib/* + rmdir $(DESTDIR)$(MAINDIR)/lib + rm -f $(DESTDIR)$(MAINDIR)/schemas/* + rmdir $(DESTDIR)$(MAINDIR)/schemas + rm -f $(DESTDIR)$(MAINDIR)/utils/* + rmdir $(DESTDIR)$(MAINDIR)/utils + rmdir $(DESTDIR)$(MAINDIR) + rm -f $(DESTDIR)$(MANDIR)/man1/$(PACKAGE).1* + rm -f $(DESTDIR)$(MANDIR)/man1/xgfupdate.1* + rm -f $(DESTDIR)$(MANDIR)/man1/ttx2xgf.1* + rm -f $(DESTDIR)$(MANDIR)/man1/xgfconfig.1* + rm -f $(DESTDIR)$(BINDIR)/$(PACKAGE) + rm -f $(DESTDIR)$(BINDIR)/xgfupdate + rm -f $(DESTDIR)$(BINDIR)/ttx2xgf + rm -f $(DESTDIR)$(BINDIR)/xgfconfig + rm -f $(DESTDIR)$(BINDIR)/xgfmerge uninstall-docs: @@ -93,7 +92,7 @@ $(MAKE) -f Makefile clean tar -C .. -zcvf $(PACKAGE)-$(VERSION).tar.gz \ --exclude=CVS --exclude=*.tar.bz2 --exclude=.* --exclude=*.*~ \ - --exclude=*~ --exclude=*.tar.gz xgridfit + --exclude=*~ --exclude=*.tar.gz $(PACKAGE) clean: rm -f *.tar.gz *.*~ *~ Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/xgridfit/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Feb 2009 23:26:32 -0000 1.7 +++ .cvsignore 14 Jul 2009 12:01:29 -0000 1.8 @@ -1 +1 @@ -xgridfit-1-17a.tar.gz +xgridfit-1-19b.tar.gz Index: import.log =================================================================== RCS file: /cvs/extras/rpms/xgridfit/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 23 Feb 2009 09:03:38 -0000 1.5 +++ import.log 14 Jul 2009 12:01:29 -0000 1.6 @@ -3,3 +3,4 @@ xgridfit-1_11-1_a_fc11:HEAD:xgridfit-1.1 xgridfit-1_17-1_fc11:HEAD:xgridfit-1.17-1.fc11.src.rpm:1233346359 xgridfit-1_17-2_a_fc11:HEAD:xgridfit-1.17-2.a.fc11.src.rpm:1234826759 xgridfit-1_17-3_a_fc11:HEAD:xgridfit-1.17-3.a.fc11.src.rpm:1235379796 +xgridfit-1_19-1_b_fc12:HEAD:xgridfit-1.19-1.b.fc12.src.rpm:1247572850 Index: sources =================================================================== RCS file: /cvs/extras/rpms/xgridfit/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Feb 2009 23:26:32 -0000 1.7 +++ sources 14 Jul 2009 12:01:29 -0000 1.8 @@ -1 +1 @@ -943b0540441d7184977f60b1b0dc4a59 xgridfit-1-17a.tar.gz +1cbaa3148950356777b470eca29a9cac xgridfit-1-19b.tar.gz Index: xgridfit.spec =================================================================== RCS file: /cvs/extras/rpms/xgridfit/devel/xgridfit.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xgridfit.spec 26 Feb 2009 09:34:37 -0000 1.12 +++ xgridfit.spec 14 Jul 2009 12:01:29 -0000 1.13 @@ -1,8 +1,8 @@ -%global archivever 1-17a +%global archivever 1-19b Name: xgridfit -Version: 1.17 -Release: 4.a%{?dist} +Version: 1.19 +Release: 1.b%{?dist} Summary: Font hinting tool # This is where we drop fontforge @@ -10,11 +10,12 @@ Group: Applications/Publishing License: LGPLv2 URL: http://%{name}.sf.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{archivever}.tar.gz +Patch0: xgridfit-1.19-1.b.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -Requires: %{_bindir}/xsltproc +Requires: %{_bindir}/xsltproc %description Xgridfit is a high-level, XML-based language for gridfitting, or ???hinting???, @@ -37,6 +38,7 @@ Xgridfit font hinting tool user document %prep %setup -q -n %{name} +%patch0 -p1 %build @@ -44,23 +46,10 @@ Xgridfit font hinting tool user document %install rm -fr %{buildroot} -install -d -m 0755 %{buildroot}/%{_bindir} -sed 's+^XSLT_DIR=\(.*\)$+XSLT_DIR=%{_datadir}/xml/%{name}/lib/+g' \ - bin/xgridfit > %{buildroot}/%{_bindir}/xgridfit -sed 's+^XSLT_DIR=\(.*\)$+XSLT_DIR=%{_datadir}/xml/%{name}/utils/+g' \ - bin/xgfupdate > %{buildroot}/%{_bindir}/xgfupdate -sed 's+^XSLT_DIR=\(.*\)$+XSLT_DIR=%{_datadir}/xml/%{name}/utils/+g' \ - bin/ttx2xgf > %{buildroot}/%{_bindir}/ttx2xgf - - -install -d -m 0755 %{buildroot}/%{_datadir}/xml/%{name}/{lib,utils,schemas} -for dir in lib schemas utils ; do - install -p -m 0644 $dir/* %{buildroot}/%{_datadir}/xml/%{name}/$dir -done - -install -d -m 0755 %{buildroot}/%{_mandir}/man1 -install -p -m 0644 man/*.1 %{buildroot}/%{_mandir}/man1 - +make install DESTDIR=%{buildroot} \ + BINDIR=%{_bindir} \ + MANDIR=%{_mandir} \ + MAINDIR=%{_datadir}/xml/%{name}-%{version} %clean rm -fr %{buildroot} @@ -70,7 +59,7 @@ rm -fr %{buildroot} %defattr(0644,root,root,0755) %doc COPYING ChangeLog -%{_datadir}/xml/%{name} +%{_datadir}/xml/%{name}-%{version} %{_mandir}/man1/* %defattr(0755,root,root,0755) @@ -79,12 +68,17 @@ rm -fr %{buildroot} %files doc %defattr(0644,root,root,0755) -%doc docs/* ChangeLog +%doc docs/* %changelog -* Thu Feb 26 2009 Fedora Release Engineering - 1.17-4.a -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Tue Jul 14 2009 Nicolas Mailhot +- 1.19-1.b +??? Rework to use upstream makefile now there is one + +* Thu Feb 26 2009 Fedora Release Engineering +- 1.17-4.a +??? Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Mon Feb 23 2009 Nicolas Mailhot - 1.17-3.a From lonetwin at fedoraproject.org Tue Jul 14 12:40:58 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Tue, 14 Jul 2009 12:40:58 +0000 (UTC) Subject: rpms/javanotes/devel import.log, NONE, 1.1 javanotes.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714124058.88B0A11C0497@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/javanotes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22217/devel Modified Files: .cvsignore sources Added Files: import.log javanotes.spec Log Message: Initial import --- NEW FILE import.log --- javanotes-5_1-2_fc10:HEAD:javanotes-5.1-2.fc10.src.rpm:1247575213 --- NEW FILE javanotes.spec --- Name: javanotes Version: 5.1 Release: 2%{?dist} Summary: Introduction to Programming Using Java, By David J. Eck Group: Documentation License: CC-BY-SA URL: http://math.hws.edu/javanotes/ Source0: http://math.hws.edu/eck/cs124/downloads/%{name}5.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The fifth edition of Introduction to Programming Using Java, a free, on-line textbook on introductory programming, which uses Java as the language of instruction. This book is directed mainly towards beginning programmers, although it might also be useful for experienced programmers who want to learn something about Java. It is certainly not meant to provide complete coverage of the Java language. The fifth edition covers Java 5.0 and can also be used with later versions of Java. You will find many Java applets on the web pages that make up this book, and many of those applets require Java 5.0 or higher to function. Earlier editions, which covered earlier versions of Java, are still available; see the preface for links. This is the html version, start with index.html in the main directory. %prep %setup -q -n %{name}%{version} %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT find -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Thu Jul 02 2009 Steven Fernandez 5.1-2 - Added version to install directory and dist tag to package name * Sun Jun 23 2009 Steven Fernandez 5.1-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:45:14 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:40:58 -0000 1.2 @@ -0,0 +1 @@ +javanotes5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:45:15 -0000 1.1 +++ sources 14 Jul 2009 12:40:58 -0000 1.2 @@ -0,0 +1 @@ +c34144829523157c09bcf13db11de378 javanotes5.tar.bz2 From lonetwin at fedoraproject.org Tue Jul 14 12:48:20 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Tue, 14 Jul 2009 12:48:20 +0000 (UTC) Subject: rpms/javanotes/F-10 import.log, NONE, 1.1 javanotes.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714124820.E6C4611C0497@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/javanotes/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23965/F-10 Modified Files: .cvsignore sources Added Files: import.log javanotes.spec Log Message: Initial import --- NEW FILE import.log --- javanotes-5_1-2_fc10:F-10:javanotes-5.1-2.fc10.src.rpm:1247575644 --- NEW FILE javanotes.spec --- Name: javanotes Version: 5.1 Release: 2%{?dist} Summary: Introduction to Programming Using Java, By David J. Eck Group: Documentation License: CC-BY-SA URL: http://math.hws.edu/javanotes/ Source0: http://math.hws.edu/eck/cs124/downloads/%{name}5.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The fifth edition of Introduction to Programming Using Java, a free, on-line textbook on introductory programming, which uses Java as the language of instruction. This book is directed mainly towards beginning programmers, although it might also be useful for experienced programmers who want to learn something about Java. It is certainly not meant to provide complete coverage of the Java language. The fifth edition covers Java 5.0 and can also be used with later versions of Java. You will find many Java applets on the web pages that make up this book, and many of those applets require Java 5.0 or higher to function. Earlier editions, which covered earlier versions of Java, are still available; see the preface for links. This is the html version, start with index.html in the main directory. %prep %setup -q -n %{name}%{version} %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT find -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Thu Jul 02 2009 Steven Fernandez 5.1-2 - Added version to install directory and dist tag to package name * Sun Jun 23 2009 Steven Fernandez 5.1-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:45:14 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:47:50 -0000 1.2 @@ -0,0 +1 @@ +javanotes5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:45:15 -0000 1.1 +++ sources 14 Jul 2009 12:47:50 -0000 1.2 @@ -0,0 +1 @@ +c34144829523157c09bcf13db11de378 javanotes5.tar.bz2 From lonetwin at fedoraproject.org Tue Jul 14 12:50:42 2009 From: lonetwin at fedoraproject.org (Steven Fernandez) Date: Tue, 14 Jul 2009 12:50:42 +0000 (UTC) Subject: rpms/javanotes/F-11 import.log, NONE, 1.1 javanotes.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714125042.AEF6E11C0497@cvs1.fedora.phx.redhat.com> Author: lonetwin Update of /cvs/pkgs/rpms/javanotes/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24564/F-11 Modified Files: .cvsignore sources Added Files: import.log javanotes.spec Log Message: Initial import --- NEW FILE import.log --- javanotes-5_1-2_fc10:F-11:javanotes-5.1-2.fc10.src.rpm:1247575736 --- NEW FILE javanotes.spec --- Name: javanotes Version: 5.1 Release: 2%{?dist} Summary: Introduction to Programming Using Java, By David J. Eck Group: Documentation License: CC-BY-SA URL: http://math.hws.edu/javanotes/ Source0: http://math.hws.edu/eck/cs124/downloads/%{name}5.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description The fifth edition of Introduction to Programming Using Java, a free, on-line textbook on introductory programming, which uses Java as the language of instruction. This book is directed mainly towards beginning programmers, although it might also be useful for experienced programmers who want to learn something about Java. It is certainly not meant to provide complete coverage of the Java language. The fifth edition covers Java 5.0 and can also be used with later versions of Java. You will find many Java applets on the web pages that make up this book, and many of those applets require Java 5.0 or higher to function. Earlier editions, which covered earlier versions of Java, are still available; see the preface for links. This is the html version, start with index.html in the main directory. %prep %setup -q -n %{name}%{version} %build # empty but exists to keep rpmlint happy %install rm -rf $RPM_BUILD_ROOT find -type d -exec install -m 755 -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' find -type f -exec install -m 644 {} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{} ';' %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc %{_docdir}/%{name}-%{version}/ %changelog * Thu Jul 02 2009 Steven Fernandez 5.1-2 - Added version to install directory and dist tag to package name * Sun Jun 23 2009 Steven Fernandez 5.1-1 - First build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:45:14 -0000 1.1 +++ .cvsignore 14 Jul 2009 12:50:12 -0000 1.2 @@ -0,0 +1 @@ +javanotes5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:45:15 -0000 1.1 +++ sources 14 Jul 2009 12:50:12 -0000 1.2 @@ -0,0 +1 @@ +c34144829523157c09bcf13db11de378 javanotes5.tar.bz2 From mcpierce at fedoraproject.org Tue Jul 14 13:16:48 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 13:16:48 +0000 (UTC) Subject: rpms/rubygem-state_machine/devel rubygem-state_machine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714131648.E580711C0497@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-state_machine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31809 Modified Files: .cvsignore sources Added Files: rubygem-state_machine.spec Log Message: Release 0.7.6 of state_machine. --- NEW FILE rubygem-state_machine.spec --- # Generated from state_machine-0.7.4.gem by gem2rpm -*- rpm-spec -*- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname state_machine %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Adds support for creating state machines for attributes on any Ruby class Name: rubygem-%{gemname} Version: 0.7.6 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://www.pluginaweek.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Adds support for creating state machines for attributes on any Ruby class %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{geminstdir}/examples %{geminstdir}/lib %{geminstdir}/tasks %{geminstdir}/test %dir %{geminstdir} %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/init.rb %doc %{geminstdir}/CHANGELOG.rdoc %doc %{geminstdir}/LICENSE %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README.rdoc %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Tue Jul 14 2009 Darryl Pierce - 0.7.6-1 - First official release for Fedora. * Mon Jul 13 2009 Darryl Pierce - 0.7.4-4 - Fixed ownership of install directory. * Fri Jul 10 2009 Darryl Pierce - 0.7.4-3 - Fixed double-listing of files. * Wed Jul 1 2009 Darryl Pierce - 0.7.4-2 - Fixed license to be MIT. - Added ruby(abi) requirement. * Sat May 23 2009 Darryl Pierce - 0.7.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:35:50 -0000 1.1 +++ .cvsignore 14 Jul 2009 13:16:18 -0000 1.2 @@ -0,0 +1 @@ +state_machine-0.7.6.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:35:50 -0000 1.1 +++ sources 14 Jul 2009 13:16:18 -0000 1.2 @@ -0,0 +1 @@ +14fb2917a858b196f5c8f5048eafdf35 state_machine-0.7.6.gem From bbbush at fedoraproject.org Tue Jul 14 13:22:45 2009 From: bbbush at fedoraproject.org (Yuan Yijun) Date: Tue, 14 Jul 2009 13:22:45 +0000 (UTC) Subject: rpms/chmsee/F-11 chmsee-1.0.6-disable-libxul-maxver.patch, 1.1, 1.2 chmsee.spec, 1.31, 1.32 Message-ID: <20090714132245.BC8A111C0497@cvs1.fedora.phx.redhat.com> Author: bbbush Update of /cvs/pkgs/rpms/chmsee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv500 Modified Files: chmsee-1.0.6-disable-libxul-maxver.patch chmsee.spec Log Message: chmsee: update libxul-maxver patch chmsee-1.0.6-disable-libxul-maxver.patch: Index: chmsee-1.0.6-disable-libxul-maxver.patch =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/chmsee-1.0.6-disable-libxul-maxver.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chmsee-1.0.6-disable-libxul-maxver.patch 13 Jul 2009 01:42:35 -0000 1.1 +++ chmsee-1.0.6-disable-libxul-maxver.patch 14 Jul 2009 13:22:45 -0000 1.2 @@ -1,13 +1,24 @@ -diff -up chmsee-1.0.6/CMakeLists.txt.orig chmsee-1.0.6/CMakeLists.txt ---- chmsee-1.0.6/CMakeLists.txt.orig 2009-07-12 23:06:05.403162880 +0800 -+++ chmsee-1.0.6/CMakeLists.txt 2009-07-12 23:06:24.191893761 +0800 -@@ -2,7 +2,8 @@ project(chmsee) +diff -up chmsee-1.0.6/CMakeLists.txt.libxul-maxver chmsee-1.0.6/CMakeLists.txt +--- chmsee-1.0.6/CMakeLists.txt.libxul-maxver 2009-07-12 11:02:53.000000000 +0800 ++++ chmsee-1.0.6/CMakeLists.txt 2009-07-14 21:18:46.082878896 +0800 +@@ -2,7 +2,7 @@ project(chmsee) cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR) set(PACKAGE_VERSION "1.0.6" ) find_package(PkgConfig) -pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 libglade-2.0 libxul-embedding-unstable>=1.9 libxul-embedding-unstable<=1.9.0.999) -+pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 -+libglade-2.0 libxul-embedding-unstable>=1.9) ++pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 libglade-2.0 libxul-embedding-unstable>=1.9 libxul-embedding-unstable<=1.9.1) set(CHMSEE_BOOKMARK_FILE "chmsee_bookmarks") set(CHMSEE_BOOKINFO_FILE "chmsee_bookinfo") +diff -up chmsee-1.0.6/src/gecko_utils.cpp.libxul-maxver chmsee-1.0.6/src/gecko_utils.cpp +--- chmsee-1.0.6/src/gecko_utils.cpp.libxul-maxver 2009-07-14 21:14:56.860644956 +0800 ++++ chmsee-1.0.6/src/gecko_utils.cpp 2009-07-14 21:17:21.613628198 +0800 +@@ -207,7 +207,7 @@ gecko_utils_init(void) + + static const GREVersionRange greVersion = { + "1.9a", PR_TRUE, +- "1.9.1", PR_FALSE ++ "1.9.1", PR_TRUE + }; + + char xpcomLocation[4096]; Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/chmsee.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- chmsee.spec 13 Jul 2009 01:42:35 -0000 1.31 +++ chmsee.spec 14 Jul 2009 13:22:45 -0000 1.32 @@ -57,7 +57,7 @@ only current file's. %patch0 -p1 -b .libxul-maxver %build -%cmake . +%cmake . -DGECKO_LIB_ROOT=`pkg-config --variable=libdir libxul` make VERBOSE=1 %{?_smp_mflags} %install From bbbush at fedoraproject.org Tue Jul 14 13:23:00 2009 From: bbbush at fedoraproject.org (Yuan Yijun) Date: Tue, 14 Jul 2009 13:23:00 +0000 (UTC) Subject: rpms/chmsee/devel chmsee-1.0.6-disable-libxul-maxver.patch,1.1,1.2 Message-ID: <20090714132300.CC6EF11C0497@cvs1.fedora.phx.redhat.com> Author: bbbush Update of /cvs/pkgs/rpms/chmsee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv561 Modified Files: chmsee-1.0.6-disable-libxul-maxver.patch Log Message: chmsee: update libxul-maxver patch chmsee-1.0.6-disable-libxul-maxver.patch: Index: chmsee-1.0.6-disable-libxul-maxver.patch =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/devel/chmsee-1.0.6-disable-libxul-maxver.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chmsee-1.0.6-disable-libxul-maxver.patch 12 Jul 2009 15:11:08 -0000 1.1 +++ chmsee-1.0.6-disable-libxul-maxver.patch 14 Jul 2009 13:23:00 -0000 1.2 @@ -1,13 +1,24 @@ -diff -up chmsee-1.0.6/CMakeLists.txt.orig chmsee-1.0.6/CMakeLists.txt ---- chmsee-1.0.6/CMakeLists.txt.orig 2009-07-12 23:06:05.403162880 +0800 -+++ chmsee-1.0.6/CMakeLists.txt 2009-07-12 23:06:24.191893761 +0800 -@@ -2,7 +2,8 @@ project(chmsee) +diff -up chmsee-1.0.6/CMakeLists.txt.libxul-maxver chmsee-1.0.6/CMakeLists.txt +--- chmsee-1.0.6/CMakeLists.txt.libxul-maxver 2009-07-12 11:02:53.000000000 +0800 ++++ chmsee-1.0.6/CMakeLists.txt 2009-07-14 21:18:46.082878896 +0800 +@@ -2,7 +2,7 @@ project(chmsee) cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR) set(PACKAGE_VERSION "1.0.6" ) find_package(PkgConfig) -pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 libglade-2.0 libxul-embedding-unstable>=1.9 libxul-embedding-unstable<=1.9.0.999) -+pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 -+libglade-2.0 libxul-embedding-unstable>=1.9) ++pkg_check_modules (CHMSEE REQUIRED gthread-2.0 glib-2.0 libxml-2.0 gtk+-2.0 libglade-2.0 libxul-embedding-unstable>=1.9 libxul-embedding-unstable<=1.9.1) set(CHMSEE_BOOKMARK_FILE "chmsee_bookmarks") set(CHMSEE_BOOKINFO_FILE "chmsee_bookinfo") +diff -up chmsee-1.0.6/src/gecko_utils.cpp.libxul-maxver chmsee-1.0.6/src/gecko_utils.cpp +--- chmsee-1.0.6/src/gecko_utils.cpp.libxul-maxver 2009-07-14 21:14:56.860644956 +0800 ++++ chmsee-1.0.6/src/gecko_utils.cpp 2009-07-14 21:17:21.613628198 +0800 +@@ -207,7 +207,7 @@ gecko_utils_init(void) + + static const GREVersionRange greVersion = { + "1.9a", PR_TRUE, +- "1.9.1", PR_FALSE ++ "1.9.1", PR_TRUE + }; + + char xpcomLocation[4096]; From bbbush at fedoraproject.org Tue Jul 14 13:24:27 2009 From: bbbush at fedoraproject.org (Yuan Yijun) Date: Tue, 14 Jul 2009 13:24:27 +0000 (UTC) Subject: rpms/chmsee/F-11 chmsee.spec,1.32,1.33 Message-ID: <20090714132427.C57FA11C0497@cvs1.fedora.phx.redhat.com> Author: bbbush Update of /cvs/pkgs/rpms/chmsee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv725 Modified Files: chmsee.spec Log Message: chmsee: revert mis-edited .spec file Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/chmsee.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- chmsee.spec 14 Jul 2009 13:22:45 -0000 1.32 +++ chmsee.spec 14 Jul 2009 13:23:57 -0000 1.33 @@ -57,7 +57,7 @@ only current file's. %patch0 -p1 -b .libxul-maxver %build -%cmake . -DGECKO_LIB_ROOT=`pkg-config --variable=libdir libxul` +%cmake . make VERBOSE=1 %{?_smp_mflags} %install From pvrabec at fedoraproject.org Tue Jul 14 13:26:02 2009 From: pvrabec at fedoraproject.org (Peter Vrabec) Date: Tue, 14 Jul 2009 13:26:02 +0000 (UTC) Subject: rpms/sectool/devel sectool-0.9.3-ext4.patch, NONE, 1.1 sectool.spec, 1.29, 1.30 Message-ID: <20090714132602.76B7411C0497@cvs1.fedora.phx.redhat.com> Author: pvrabec Update of /cvs/extras/rpms/sectool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1217 Modified Files: sectool.spec Added Files: sectool-0.9.3-ext4.patch Log Message: handle ext4 fs in filesystem test (#510646) sectool-0.9.3-ext4.patch: --- NEW FILE sectool-0.9.3-ext4.patch --- diff -up sectool-0.9.3/tests/03_filesystem.dsc.ext4 sectool-0.9.3/tests/03_filesystem.dsc --- sectool-0.9.3/tests/03_filesystem.dsc.ext4 2009-07-14 15:18:11.472860778 +0200 +++ sectool-0.9.3/tests/03_filesystem.dsc 2009-07-14 15:18:32.558798787 +0200 @@ -15,7 +15,7 @@ GROUPS="filesystem packages selinux" AUTHOR="Dan Kopecek " [DEFAULT] -FSTYPES="ext2 ext3 reiserfs xfs" +FSTYPES="ext2 ext3 ext4 reiserfs xfs" EXCLUDE="/var/lib/misc /var/lib/mock" INCLUDE="/bin Index: sectool.spec =================================================================== RCS file: /cvs/extras/rpms/sectool/devel/sectool.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sectool.spec 3 Jun 2009 10:36:18 -0000 1.29 +++ sectool.spec 14 Jul 2009 13:26:02 -0000 1.30 @@ -1,11 +1,12 @@ Summary: A security audit system and intrusion detection system Name: sectool Version: 0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://hosted.fedoraproject.org/sectool/wiki/WikiStart Source0: %{name}-%{version}.tar.bz2 Source1: sectool.log Patch1: sectool-0.9.2-optflags.patch +Patch2: sectool-0.9.3-ext4.patch License: GPLv2+ Group: Applications/System Requires: gettext coreutils libselinux @@ -36,6 +37,7 @@ sectool-gui provides a GTK-based graphic %prep %setup -q %patch1 -p1 -b .optflags +%patch2 -p1 -b .ext4 %build make %{?_smp_mflags} @@ -100,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Peter Vrabec - 0.9.3-2 +- handle ext4 fs in filesystem test (#510646) + * Wed Jun 03 2009 Peter Vrabec - 0.9.3-1 - upgrade, bugfix release From pkgdb at fedoraproject.org Tue Jul 14 13:26:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 13:26:43 +0000 Subject: [pkgdb] R-mvtnorm: denisarnaud has requested commit Message-ID: <20090714132643.513A010F888@bastion2.fedora.phx.redhat.com> denisarnaud has requested the commit acl on R-mvtnorm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-mvtnorm From mcpierce at fedoraproject.org Tue Jul 14 13:27:29 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 13:27:29 +0000 (UTC) Subject: rpms/rubygem-state_machine/F-10 rubygem-state_machine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714132729.41CA111C0497@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-state_machine/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2008 Modified Files: .cvsignore sources Added Files: rubygem-state_machine.spec Log Message: Release 0.7.6 of state_machine. --- NEW FILE rubygem-state_machine.spec --- # Generated from state_machine-0.7.4.gem by gem2rpm -*- rpm-spec -*- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname state_machine %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Adds support for creating state machines for attributes on any Ruby class Name: rubygem-%{gemname} Version: 0.7.6 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://www.pluginaweek.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Adds support for creating state machines for attributes on any Ruby class %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{geminstdir}/examples %{geminstdir}/lib %{geminstdir}/tasks %{geminstdir}/test %dir %{geminstdir} %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/init.rb %doc %{geminstdir}/CHANGELOG.rdoc %doc %{geminstdir}/LICENSE %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README.rdoc %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Tue Jul 14 2009 Darryl Pierce - 0.7.6-1 - First official release for Fedora. * Mon Jul 13 2009 Darryl Pierce - 0.7.4-4 - Fixed ownership of install directory. * Fri Jul 10 2009 Darryl Pierce - 0.7.4-3 - Fixed double-listing of files. * Wed Jul 1 2009 Darryl Pierce - 0.7.4-2 - Fixed license to be MIT. - Added ruby(abi) requirement. * Sat May 23 2009 Darryl Pierce - 0.7.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:35:50 -0000 1.1 +++ .cvsignore 14 Jul 2009 13:27:28 -0000 1.2 @@ -0,0 +1 @@ +state_machine-0.7.6.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:35:50 -0000 1.1 +++ sources 14 Jul 2009 13:27:29 -0000 1.2 @@ -0,0 +1 @@ +14fb2917a858b196f5c8f5048eafdf35 state_machine-0.7.6.gem From limb at fedoraproject.org Tue Jul 14 13:03:24 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 14 Jul 2009 13:03:24 +0000 (UTC) Subject: rpms/lilypond/F-10 lilypond-2.21.2-gcc44-relocate.patch, NONE, 1.1 lilypond-consts.patch, NONE, 1.1 lilypond.spec, 1.28, 1.29 sources, 1.21, 1.22 Message-ID: <20090714130324.804B211C0497@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/lilypond/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28427 Modified Files: lilypond.spec sources Added Files: lilypond-2.21.2-gcc44-relocate.patch lilypond-consts.patch Log Message: Backport F-11 font changes, BZ 477416 lilypond-2.21.2-gcc44-relocate.patch: --- NEW FILE lilypond-2.21.2-gcc44-relocate.patch --- --- lily/relocate.cc.orig 2009-02-20 08:23:11.000000000 -0600 +++ lily/relocate.cc 2009-02-20 08:23:11.000000000 -0600 @@ -18,0 +19 @@ +#include lilypond-consts.patch: --- NEW FILE lilypond-consts.patch --- diff -ru lilypond-2.12.2.orig/lily/relocate.cc lilypond-2.12.2/lily/relocate.cc --- lilypond-2.12.2.orig/lily/relocate.cc 2009-03-04 15:27:38.000000000 +0000 +++ lilypond-2.12.2/lily/relocate.cc 2009-03-04 15:28:14.000000000 +0000 @@ -276,13 +276,13 @@ string out; while (ptr < start_ptr + len) { - char *dollar = strchr (ptr, '$'); + const char *dollar = strchr (ptr, '$'); if (dollar != NULL) { - char *start_var = dollar + 1; - char *end_var = start_var; - char *start_next = end_var; + const char *start_var = dollar + 1; + const char *end_var = start_var; + const char *start_next = end_var; out += string (ptr, dollar - ptr); ptr = dollar; Index: lilypond.spec =================================================================== RCS file: /cvs/pkgs/rpms/lilypond/F-10/lilypond.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- lilypond.spec 15 Jun 2009 16:52:21 -0000 1.28 +++ lilypond.spec 14 Jul 2009 13:03:24 -0000 1.29 @@ -1,6 +1,6 @@ Name: lilypond -Version: 2.12.0 -Release: 2%{?dist} +Version: 2.12.2 +Release: 4%{?dist} Summary: A typesetting system for music notation Group: Applications/Publishing @@ -9,11 +9,21 @@ URL: http://www.lilypond.org Source0: http://download.linuxaudio.org/lilypond/sources/v2.12/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: lilypond-2.11.65-python26.patch -Patch1: lilypond-2.12.0-parse-scm.patch +#Patch1: lilypond-2.12.0-parse-scm.patch +Patch2: lilypond-2.21.2-gcc44-relocate.patch +Patch3: lilypond-consts.patch Requires: ghostscript >= 8.15 Requires(post): /sbin/install-info Requires(preun): /sbin/install-info +Obsoletes: lilypond-fonts <= 2.12.1-1 +Requires: lilypond-aybabtu-fonts = %{version}-%{release} +Requires: lilypond-century-schoolbook-l-fonts = %{version}-%{release} +Requires: lilypond-emmentaler-fonts = %{version}-%{release} +Requires: lilypond-feta-fonts = %{version}-%{release} +Requires: lilypond-feta-alphabet-fonts = %{version}-%{release} +Requires: lilypond-feta-braces-fonts = %{version}-%{release} +Requires: lilypond-parmesan-fonts = %{version}-%{release} Buildrequires: t1utils bison flex ImageMagick gettext tetex BuildRequires: python-devel >= 2.4.0 @@ -22,18 +32,125 @@ BuildRequires: texinfo >= 4.8 BuildRequires: guile-devel >= 1.8 BuildRequires: ghostscript >= 8.15 BuildRequires: pango-devel >= 1.12.0 +BuildRequires: fontpackages-devel %description LilyPond is an automated music engraving system. It formats music beautifully and automatically, and has a friendly syntax for its input files. +%package aybabtu-fonts +Summary: Lilypond aybabtu font +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description aybabtu-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +This is the aybabtu font included in the package. + +%package century-schoolbook-l-fonts +Summary: Lilypond Century Schoolbook L fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} +Obsoletes: lilypond-centuryschl-fonts <= 2.12.1-3 + +%description century-schoolbook-l-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the Century Schoolbook L fonts included in the package. + +%package emmentaler-fonts +Summary: Lilypond emmentaler fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description emmentaler-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the emmentaler fonts included in the package. + +%package feta-fonts +Summary: Lilypond feta fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description feta-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the feta fonts included in the package. + +%package feta-alphabet-fonts +Summary: Lilypond feta-alphabet fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description feta-alphabet-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the feta-alphabet fonts included in the package. + +%package feta-braces-fonts +Summary: Lilypond feta-braces fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description feta-braces-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the feta-braces fonts included in the package. + +%package parmesan-fonts +Summary: Lilypond parmesan fonts +Group: User Interface/X +Requires: fontpackages-filesystem +Requires: lilypond-fonts-common = %{version}-%{release} + +%description parmesan-fonts +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +These are the parmesan fonts included in the package. + +%package fonts-common +Summary: Lilypond fonts common dir +Group: User Interface/X +Requires: fontpackages-filesystem + + +%description fonts-common +LilyPond is an automated music engraving system. It formats music +beautifully and automatically, and has a friendly syntax for its input +files. + +This contains the directory common to all lilypond fonts. %prep %setup -q %patch0 -p0 -%patch1 -p0 +#%patch1 -p0 +%patch2 -p0 +%patch3 -p1 %build %configure --without-kpathsea --disable-checking \ @@ -65,6 +182,14 @@ rm -f $RPM_BUILD_ROOT%{_infodir}/dir %find_lang %{name} +mkdir -p $RPM_BUILD_ROOT%{_fontdir} +mv $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/otf/*.otf $RPM_BUILD_ROOT%{_fontdir} +mv $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/type1/*.pfb $RPM_BUILD_ROOT%{_fontdir} +rmdir $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/otf +rmdir $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/type1 +ln -s %{_fontdir} $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/otf +ln -s %{_fontdir} $RPM_BUILD_ROOT%{_datadir}/lilypond/%{version}/fonts/type1 + %clean rm -rf $RPM_BUILD_ROOT @@ -94,11 +219,66 @@ fi %{_mandir}/man1/* %{_datadir}/omf/lilypond +%_font_pkg -n aybabtu aybabtu.otf + +%_font_pkg -n century-schoolbook-l CenturySchL*otf + +%_font_pkg -n emmentaler emmentaler*otf + +%_font_pkg -n feta feta1*pfb feta2*pfb + +%_font_pkg -n feta-alphabet feta-alphabet*pfb + +%_font_pkg -n feta-braces feta-braces*pfb + +%_font_pkg -n parmesan parmesan*pfb + + +%files fonts-common +%defattr(0644,root,root,0755) + +%dir %{_fontdir} + %changelog -* Mon Jun 15 2009 Jon Ciesla - 2.12.0-2 +* Mon Jun 01 2009 Jon Ciesla - 2.12.2-4 - Update for vim 7.2, BZ 503429. +* Wed Mar 04 2009 Caol??n McNamara - 2.12.2-3 +- fix up strchr const rets for const arg + +* Wed Feb 25 2009 Fedora Release Engineering - 2.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 19 2009 Jon Ciesla - 2.12.2-1 +- Update to 2.12.2. +- Patch for gcc 4.4. + +* Thu Feb 19 2009 Jon Ciesla - 2.12.1-6 +- Split out feta and parmesan type1 fonts. + +* Fri Jan 23 2009 Jon Ciesla - 2.12.1-5 +- Final font corrections. + +* Thu Jan 22 2009 Jon Ciesla - 2.12.1-4 +- More font refinements. + +* Wed Jan 21 2009 Jon Ciesla - 2.12.1-3 +- Drop feta-fonts package cruft. + +* Wed Jan 14 2009 Jon Ciesla - 2.12.1-2 +- Implementing font_pkg. + +* Tue Jan 06 2009 Jon Ciesla - 2.12.1-1 +- Update to 2.12.1. +- Droppedn parse-scm patch, applied upstream. + +* Tue Dec 30 2008 Jon Ciesla - 2.12.0-3 +- Split out fonts subpackage, BZ 477416. + +* Tue Dec 30 2008 Jon Ciesla - 2.12.0-2 +- Re-fix Source0 URL. + * Wed Dec 17 2008 Jon Ciesla - 2.12.0-1 - New upstream, BZ 476836. - Fixed Source0 URL. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lilypond/F-10/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 30 Dec 2008 12:59:42 -0000 1.21 +++ sources 14 Jul 2009 13:03:24 -0000 1.22 @@ -1 +1 @@ -592581b3e8e022a8152d3325eefd9e88 lilypond-2.12.0.tar.gz +681dfbecf8a3710d1400cf9488be716b lilypond-2.12.2.tar.gz From pvrabec at fedoraproject.org Tue Jul 14 13:43:57 2009 From: pvrabec at fedoraproject.org (Peter Vrabec) Date: Tue, 14 Jul 2009 13:43:57 +0000 (UTC) Subject: rpms/sectool/F-11 sectool-0.9.3-ext4.patch, NONE, 1.1 sectool.spec, 1.27, 1.28 Message-ID: <20090714134357.D575111C0497@cvs1.fedora.phx.redhat.com> Author: pvrabec Update of /cvs/extras/rpms/sectool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6400 Modified Files: sectool.spec Added Files: sectool-0.9.3-ext4.patch Log Message: handle ext4 fs in filesystem test (#510646) sectool-0.9.3-ext4.patch: --- NEW FILE sectool-0.9.3-ext4.patch --- diff -up sectool-0.9.3/tests/03_filesystem.dsc.ext4 sectool-0.9.3/tests/03_filesystem.dsc --- sectool-0.9.3/tests/03_filesystem.dsc.ext4 2009-07-14 15:18:11.472860778 +0200 +++ sectool-0.9.3/tests/03_filesystem.dsc 2009-07-14 15:18:32.558798787 +0200 @@ -15,7 +15,7 @@ GROUPS="filesystem packages selinux" AUTHOR="Dan Kopecek " [DEFAULT] -FSTYPES="ext2 ext3 reiserfs xfs" +FSTYPES="ext2 ext3 ext4 reiserfs xfs" EXCLUDE="/var/lib/misc /var/lib/mock" INCLUDE="/bin Index: sectool.spec =================================================================== RCS file: /cvs/extras/rpms/sectool/F-11/sectool.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sectool.spec 3 Jun 2009 10:42:13 -0000 1.27 +++ sectool.spec 14 Jul 2009 13:43:27 -0000 1.28 @@ -1,11 +1,12 @@ Summary: A security audit system and intrusion detection system Name: sectool Version: 0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://hosted.fedoraproject.org/sectool/wiki/WikiStart Source0: %{name}-%{version}.tar.bz2 Source1: sectool.log Patch1: sectool-0.9.2-optflags.patch +Patch2: sectool-0.9.3-ext4.patch License: GPLv2+ Group: Applications/System Requires: gettext coreutils libselinux @@ -36,6 +37,7 @@ sectool-gui provides a GTK-based graphic %prep %setup -q %patch1 -p1 -b .optflags +%patch2 -p1 -b .ext4 %build make %{?_smp_mflags} @@ -100,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Peter Vrabec - 0.9.3-2 +- handle ext4 fs in filesystem test (#510646) + * Wed Jun 03 2009 Peter Vrabec - 0.9.3-1 - upgrade, bugfix release From ajax at fedoraproject.org Tue Jul 14 13:47:08 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 13:47:08 +0000 (UTC) Subject: rpms/x86info/devel x86info-1.24-make-j.patch, NONE, 1.1 x86info.spec, 1.41, 1.42 Message-ID: <20090714134708.A23B311C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/x86info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6854 Modified Files: x86info.spec Added Files: x86info-1.24-make-j.patch Log Message: * Tue Jul 14 2009 Adam Jackson - Fix parallel build. x86info-1.24-make-j.patch: --- NEW FILE x86info-1.24-make-j.patch --- diff -up x86info-1.24/Makefile.jx x86info-1.24/Makefile --- x86info-1.24/Makefile.jx 2009-02-06 12:10:58.000000000 -0500 +++ x86info-1.24/Makefile 2009-07-14 09:43:52.000000000 -0400 @@ -30,6 +30,8 @@ LSMSR_SRC =\ LSMSR_OBJS = $(LSMSR_SRC:%.c=%.o) +lsmsr.c: $(LSMSR_TMP_HEADERS) + lsmsr: $(LSMSR_TMP_HEADERS) $(LSMSR_OBJS) $(CC) $(CFLAGS) -o lsmsr $(LSMSR_OBJS) Index: x86info.spec =================================================================== RCS file: /cvs/pkgs/rpms/x86info/devel/x86info.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- x86info.spec 26 Feb 2009 07:34:13 -0000 1.41 +++ x86info.spec 14 Jul 2009 13:47:08 -0000 1.42 @@ -1,7 +1,7 @@ Summary: x86 processor information tool. Name: x86info Version: 1.24 -Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist}.1 +Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -13,17 +13,18 @@ BuildRequires: python Obsoletes: kernel-utils +Patch0: x86info-1.24-make-j.patch + %description x86info displays diagnostic information about x86 processors, such as cache configuration and supported features. %prep %setup -q -n %{name}-%{version} +%patch0 -p1 -b .make-j %build -# disable %{?_smp_mflags} until I get some dependancies fixed upstream. -# lsmsr.c tries to build before generic_msr.h is generated. -make CFLAGS="$RPM_OPT_FLAGS" +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install rm -rf %{buildroot} @@ -46,6 +47,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/*/* %changelog +* Tue Jul 14 2009 Adam Jackson +- Fix parallel build. + * Wed Feb 25 2009 Fedora Release Engineering - 1:1.24-1.40.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From deji at fedoraproject.org Tue Jul 14 13:50:43 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Tue, 14 Jul 2009 13:50:43 +0000 (UTC) Subject: rpms/gparted/devel gparted.spec,1.51,1.52 Message-ID: <20090714135043.CE2CB11C0497@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/gparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7202 Modified Files: gparted.spec Log Message: Bump and rebuild again Index: gparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/gparted/devel/gparted.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gparted.spec 10 Jul 2009 14:06:07 -0000 1.51 +++ gparted.spec 14 Jul 2009 13:50:43 -0000 1.52 @@ -1,7 +1,7 @@ Summary: Gnome Partition Editor Name: gparted Version: 0.4.5 -Release: 2%{?dist} +Release: 2%{?dist}.1 Group: Applications/System License: GPLv2+ URL: http://gparted.sourceforge.net From mclasen at fedoraproject.org Tue Jul 14 13:51:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 13:51:32 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel .cvsignore, 1.28, 1.29 gnome-settings-daemon.spec, 1.108, 1.109 sources, 1.29, 1.30 Message-ID: <20090714135132.11A3A11C0497@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7331 Modified Files: .cvsignore gnome-settings-daemon.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 16 Jun 2009 04:13:01 -0000 1.28 +++ .cvsignore 14 Jul 2009 13:51:31 -0000 1.29 @@ -1 +1 @@ -gnome-settings-daemon-2.27.3.tar.bz2 +gnome-settings-daemon-2.27.4.tar.bz2 Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- gnome-settings-daemon.spec 1 Jul 2009 13:45:03 -0000 1.108 +++ gnome-settings-daemon.spec 14 Jul 2009 13:51:31 -0000 1.109 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon -Version: 2.27.3 -Release: 2%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -173,6 +173,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update ot 2.27.4 + * Tue Jun 30 2009 Matthias Clasen 2.27.3-2 - Rebuild against new libxklavier Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 16 Jun 2009 04:13:01 -0000 1.29 +++ sources 14 Jul 2009 13:51:31 -0000 1.30 @@ -1 +1 @@ -11f9fbc862a1f5ce37620c8ea4d9204e gnome-settings-daemon-2.27.3.tar.bz2 +edaae22cdd76a5617036d8742f94b365 gnome-settings-daemon-2.27.4.tar.bz2 From mcpierce at fedoraproject.org Tue Jul 14 13:51:50 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 13:51:50 +0000 (UTC) Subject: rpms/rubygem-state_machine/F-11 rubygem-state_machine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714135150.02DD811C0497@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-state_machine/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7411 Modified Files: .cvsignore sources Added Files: rubygem-state_machine.spec Log Message: Release 0.7.6 of state_machine. --- NEW FILE rubygem-state_machine.spec --- # Generated from state_machine-0.7.4.gem by gem2rpm -*- rpm-spec -*- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname state_machine %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Adds support for creating state machines for attributes on any Ruby class Name: rubygem-%{gemname} Version: 0.7.6 Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://www.pluginaweek.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Adds support for creating state machines for attributes on any Ruby class %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{geminstdir}/examples %{geminstdir}/lib %{geminstdir}/tasks %{geminstdir}/test %dir %{geminstdir} %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/init.rb %doc %{geminstdir}/CHANGELOG.rdoc %doc %{geminstdir}/LICENSE %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README.rdoc %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Tue Jul 14 2009 Darryl Pierce - 0.7.6-1 - First official release for Fedora. * Mon Jul 13 2009 Darryl Pierce - 0.7.4-4 - Fixed ownership of install directory. * Fri Jul 10 2009 Darryl Pierce - 0.7.4-3 - Fixed double-listing of files. * Wed Jul 1 2009 Darryl Pierce - 0.7.4-2 - Fixed license to be MIT. - Added ruby(abi) requirement. * Sat May 23 2009 Darryl Pierce - 0.7.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:35:50 -0000 1.1 +++ .cvsignore 14 Jul 2009 13:51:19 -0000 1.2 @@ -0,0 +1 @@ +state_machine-0.7.6.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:35:50 -0000 1.1 +++ sources 14 Jul 2009 13:51:19 -0000 1.2 @@ -0,0 +1 @@ +14fb2917a858b196f5c8f5048eafdf35 state_machine-0.7.6.gem From theinric at fedoraproject.org Tue Jul 14 13:52:38 2009 From: theinric at fedoraproject.org (Tomas Heinrich) Date: Tue, 14 Jul 2009 13:52:38 +0000 (UTC) Subject: rpms/rsyslog/devel .cvsignore, 1.31, 1.32 rsyslog.spec, 1.59, 1.60 rsyslog.sysconfig, 1.1, 1.2 sources, 1.33, 1.34 rsyslog-3.21.11-HUPisRestart.patch, 1.1, NONE Message-ID: <20090714135238.9D5B711C0497@cvs1.fedora.phx.redhat.com> Author: theinric Update of /cvs/extras/rpms/rsyslog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7549 Modified Files: .cvsignore rsyslog.spec rsyslog.sysconfig sources Removed Files: rsyslog-3.21.11-HUPisRestart.patch Log Message: upgrade to rsyslog-4.2.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rsyslog/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 13 Apr 2009 15:21:14 -0000 1.31 +++ .cvsignore 14 Jul 2009 13:52:38 -0000 1.32 @@ -1 +1 @@ -rsyslog-3.21.11.tar.gz +rsyslog-4.2.0.tar.gz Index: rsyslog.spec =================================================================== RCS file: /cvs/extras/rpms/rsyslog/devel/rsyslog.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- rsyslog.spec 13 Apr 2009 15:21:15 -0000 1.59 +++ rsyslog.spec 14 Jul 2009 13:52:38 -0000 1.60 @@ -2,7 +2,7 @@ Summary: Enhanced system logging and kernel message trapping daemons Name: rsyslog -Version: 3.21.11 +Version: 4.2.0 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -12,7 +12,6 @@ Source1: rsyslog.init Source2: rsyslog.conf Source3: rsyslog.sysconfig Source4: rsyslog.log -Patch0: rsyslog-3.21.11-HUPisRestart.patch BuildRequires: zlib-devel BuildRequires: autoconf automake Requires: logrotate >= 3.5.2 @@ -88,7 +87,6 @@ IETF standard protocol. %prep %setup -q -%patch0 -p1 -b .HUPisRestart %build export CFLAGS="$RPM_OPT_FLAGS -DSYSLOGD_PIDNAME=\\\"syslogd.pid\\\"" @@ -194,6 +192,9 @@ fi %{_libdir}/rsyslog/lmnsd_gtls.so %changelog +* Tue Jul 14 2009 Tomas Heinrich 4.2.0-1 +- upgrade + * Mon Apr 13 2009 Tomas Heinrich 3.21.11-1 - upgrade Index: rsyslog.sysconfig =================================================================== RCS file: /cvs/extras/rpms/rsyslog/devel/rsyslog.sysconfig,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rsyslog.sysconfig 11 Jul 2008 11:37:05 -0000 1.1 +++ rsyslog.sysconfig 14 Jul 2009 13:52:38 -0000 1.2 @@ -1,5 +1,5 @@ # Options to syslogd -# syslogd options are deprecated in rsyslog v3 +# syslogd options are deprecated since rsyslog v3 # if you want to use them, switch to compatibility mode 2 by "-c 2" -SYSLOGD_OPTIONS="-c 3" +SYSLOGD_OPTIONS="-c 4" Index: sources =================================================================== RCS file: /cvs/extras/rpms/rsyslog/devel/sources,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sources 13 Apr 2009 15:21:15 -0000 1.33 +++ sources 14 Jul 2009 13:52:38 -0000 1.34 @@ -1 +1 @@ -fd796e15e780c954d43adc9680378403 rsyslog-3.21.11.tar.gz +c66650e961f23253fc926da5d35bd71f rsyslog-4.2.0.tar.gz --- rsyslog-3.21.11-HUPisRestart.patch DELETED --- From hicham at fedoraproject.org Tue Jul 14 14:04:09 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 14:04:09 +0000 (UTC) Subject: rpms/solang/devel import.log, NONE, 1.1 main-window.cpp.patch, NONE, 1.1 solang.desktop, NONE, 1.1 solang.png, NONE, 1.1 solang.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714140409.1FEAC11C0497@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/solang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10213/devel Modified Files: .cvsignore sources Added Files: import.log main-window.cpp.patch solang.desktop solang.png solang.spec Log Message: --- NEW FILE import.log --- solang-0_2-2_fc11:HEAD:solang-0.2-2.fc11.src.rpm:1247580220 main-window.cpp.patch: --- NEW FILE main-window.cpp.patch --- diff -up Solang-0.2/src/application/main-window.cpp.orig Solang-0.2/src/application/main-window.cpp --- Solang-0.2/src/application/main-window.cpp.orig 2009-07-09 16:53:04.487129741 +0100 +++ Solang-0.2/src/application/main-window.cpp 2009-07-09 16:58:33.265129628 +0100 @@ -200,8 +200,10 @@ MainWindow::MainWindow() throw() : dockObjectsLeftBottom_(), dockObjectsCenter_() { + set_default_icon_from_file("/usr/share/pixmaps/solang.png"); set_title("Solang"); set_default_size(800, 600); + maximize(); add(vBox_); actionGroup_->add( --- NEW FILE solang.desktop --- [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Solang Photo Manager Categories=GNOME;GTK;Graphics;Viewer;RasterGraphics;2DGraphics;Photography; Exec=solang Icon=solang MimeType=image/bmp;image/jpeg;image/gif;image/png;image/tiff;image/x-bmp;image/x-ico;image/x-png;image/x-pcx;image/x-tga;image/xpm;image/svg+xml; StartupNotify=true Terminal=false Type=Application --- NEW FILE solang.spec --- Name: solang Version: 0.2 Release: 2%{?dist} Summary: A photo manager for GNOME %define name_ Solang Group: Applications/Multimedia License: GPLv3+ URL: https://savannah.nongnu.org/projects/solang/ Source0: http://download.savannah.gnu.org/releases-noredirect/solang/%{name_}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: solang.desktop Source2: solang.png #Patch0: adds icon to main window, and starts the main window maximized Patch0: main-window.cpp.patch BuildRequires: intltool BuildRequires: cairomm-devel BuildRequires: exiv2-devel BuildRequires: compat-libgdamm-devel BuildRequires: compat-libgda-sqlite-devel BuildRequires: libgdl-devel BuildRequires: glibmm24-devel BuildRequires: libgphoto2-devel BuildRequires: gtkimageview-devel BuildRequires: gtkmm24-devel BuildRequires: desktop-file-utils BuildRequires: flickcurl-devel BuildRequires: libsoup-devel BuildRequires: webkitgtk-devel Requires: compat-libgda-sqlite %description Solang is a free photo manager that will act as a front-end for directory based local storage as well as remote photo-storage systems, as can be said, on the "Cloud". Basic editing support is also planned as well as a small pipelaine for RAW processing. The aim of this project is to break the performance charecteristics of current popular photo management softwares and provide a fast and reliable alternative that does not place humongous demands on user's hardware resources even to meet basic functionality. %prep %setup -q -n %{name_}-%{version} %patch0 -p1 -b %{name_}-%{version} %build %configure --docdir=%{_docdir}/%{name}-%{version} make %{?smp_flags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" %{__mkdir_p} $RPM_BUILD_ROOT{%{_datadir}/applications,%{_datadir}/pixmaps} %{__install} -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README %{_bindir}/%{name} %{_datadir}/%{name}/solang-layout.xml %{_datadir}/%{name}/ui %{_datadir}/%{name}/pixmaps %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/%{name}.desktop %changelog * Thu Jul 11 2009 Hicham HAOUARI - 0.2-2 - Cleaned up the dependencies * Thu Jul 09 2009 Hicham HAOUARI - 0.2-1 - New upstream release * Wed Jul 08 2009 Hicham HAOUARI - 0.2-0.1.20090707 - New upstream tarball * Tue Jul 07 2009 Hicham HAOUARI - 0.1-2.20090707git - New git snapshot * Wed Jun 24 2009 Hicham HAOUARI - 0.1-1.20090624git - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/solang/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:00:24 -0000 1.1 +++ .cvsignore 14 Jul 2009 14:04:08 -0000 1.2 @@ -0,0 +1 @@ +Solang-0.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/solang/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:00:24 -0000 1.1 +++ sources 14 Jul 2009 14:04:08 -0000 1.2 @@ -0,0 +1 @@ +20a05edee2137c76add270452a1ab4d7 Solang-0.2.tar.gz From hicham at fedoraproject.org Tue Jul 14 14:07:45 2009 From: hicham at fedoraproject.org (Hicham HAOUARI) Date: Tue, 14 Jul 2009 14:07:45 +0000 (UTC) Subject: rpms/solang/F-11 import.log, NONE, 1.1 main-window.cpp.patch, NONE, 1.1 solang.desktop, NONE, 1.1 solang.png, NONE, 1.1 solang.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714140745.2B07F11C0497@cvs1.fedora.phx.redhat.com> Author: hicham Update of /cvs/pkgs/rpms/solang/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10876/F-11 Modified Files: .cvsignore sources Added Files: import.log main-window.cpp.patch solang.desktop solang.png solang.spec Log Message: --- NEW FILE import.log --- solang-0_2-2_fc11:F-11:solang-0.2-2.fc11.src.rpm:1247580426 main-window.cpp.patch: --- NEW FILE main-window.cpp.patch --- diff -up Solang-0.2/src/application/main-window.cpp.orig Solang-0.2/src/application/main-window.cpp --- Solang-0.2/src/application/main-window.cpp.orig 2009-07-09 16:53:04.487129741 +0100 +++ Solang-0.2/src/application/main-window.cpp 2009-07-09 16:58:33.265129628 +0100 @@ -200,8 +200,10 @@ MainWindow::MainWindow() throw() : dockObjectsLeftBottom_(), dockObjectsCenter_() { + set_default_icon_from_file("/usr/share/pixmaps/solang.png"); set_title("Solang"); set_default_size(800, 600); + maximize(); add(vBox_); actionGroup_->add( --- NEW FILE solang.desktop --- [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Solang Photo Manager Categories=GNOME;GTK;Graphics;Viewer;RasterGraphics;2DGraphics;Photography; Exec=solang Icon=solang MimeType=image/bmp;image/jpeg;image/gif;image/png;image/tiff;image/x-bmp;image/x-ico;image/x-png;image/x-pcx;image/x-tga;image/xpm;image/svg+xml; StartupNotify=true Terminal=false Type=Application --- NEW FILE solang.spec --- Name: solang Version: 0.2 Release: 2%{?dist} Summary: A photo manager for GNOME %define name_ Solang Group: Applications/Multimedia License: GPLv3+ URL: https://savannah.nongnu.org/projects/solang/ Source0: http://download.savannah.gnu.org/releases-noredirect/solang/%{name_}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: solang.desktop Source2: solang.png #Patch0: adds icon to main window, and starts the main window maximized Patch0: main-window.cpp.patch BuildRequires: intltool BuildRequires: cairomm-devel BuildRequires: exiv2-devel BuildRequires: compat-libgdamm-devel BuildRequires: compat-libgda-sqlite-devel BuildRequires: libgdl-devel BuildRequires: glibmm24-devel BuildRequires: libgphoto2-devel BuildRequires: gtkimageview-devel BuildRequires: gtkmm24-devel BuildRequires: desktop-file-utils BuildRequires: flickcurl-devel BuildRequires: libsoup-devel BuildRequires: webkitgtk-devel Requires: compat-libgda-sqlite %description Solang is a free photo manager that will act as a front-end for directory based local storage as well as remote photo-storage systems, as can be said, on the "Cloud". Basic editing support is also planned as well as a small pipelaine for RAW processing. The aim of this project is to break the performance charecteristics of current popular photo management softwares and provide a fast and reliable alternative that does not place humongous demands on user's hardware resources even to meet basic functionality. %prep %setup -q -n %{name_}-%{version} %patch0 -p1 -b %{name_}-%{version} %build %configure --docdir=%{_docdir}/%{name}-%{version} make %{?smp_flags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" %{__mkdir_p} $RPM_BUILD_ROOT{%{_datadir}/applications,%{_datadir}/pixmaps} %{__install} -p -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README %{_bindir}/%{name} %{_datadir}/%{name}/solang-layout.xml %{_datadir}/%{name}/ui %{_datadir}/%{name}/pixmaps %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/%{name}.desktop %changelog * Thu Jul 11 2009 Hicham HAOUARI - 0.2-2 - Cleaned up the dependencies * Thu Jul 09 2009 Hicham HAOUARI - 0.2-1 - New upstream release * Wed Jul 08 2009 Hicham HAOUARI - 0.2-0.1.20090707 - New upstream tarball * Tue Jul 07 2009 Hicham HAOUARI - 0.1-2.20090707git - New git snapshot * Wed Jun 24 2009 Hicham HAOUARI - 0.1-1.20090624git - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/solang/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:00:24 -0000 1.1 +++ .cvsignore 14 Jul 2009 14:07:44 -0000 1.2 @@ -0,0 +1 @@ +Solang-0.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/solang/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:00:24 -0000 1.1 +++ sources 14 Jul 2009 14:07:44 -0000 1.2 @@ -0,0 +1 @@ +20a05edee2137c76add270452a1ab4d7 Solang-0.2.tar.gz From bbbush at fedoraproject.org Tue Jul 14 14:13:55 2009 From: bbbush at fedoraproject.org (Yuan Yijun) Date: Tue, 14 Jul 2009 14:13:55 +0000 (UTC) Subject: rpms/chmsee/F-11 chmsee-1.0.1-desktop-icon.patch, 1.2, 1.3 chmsee-1.0.1-xulrunner-1.9.patch, 1.3, 1.4 chmsee.spec, 1.33, 1.34 sources, 1.6, 1.7 Message-ID: <20090714141355.7076F11C0497@cvs1.fedora.phx.redhat.com> Author: bbbush Update of /cvs/pkgs/rpms/chmsee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11770 Modified Files: chmsee.spec sources Added Files: chmsee-1.0.1-desktop-icon.patch chmsee-1.0.1-xulrunner-1.9.patch Log Message: chmsee: revert to 1.0.1 because latest version does not support xulrunner-1.9.1 chmsee-1.0.1-desktop-icon.patch: Index: chmsee-1.0.1-desktop-icon.patch =================================================================== RCS file: chmsee-1.0.1-desktop-icon.patch diff -N chmsee-1.0.1-desktop-icon.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ chmsee-1.0.1-desktop-icon.patch 14 Jul 2009 14:13:54 -0000 1.3 @@ -0,0 +1,18 @@ +diff -up chmsee-1.0.0-beta2/chmsee.desktop.in.orig chmsee-1.0.0-beta2/chmsee.desktop.in +--- chmsee-1.0.0-beta2/chmsee.desktop.in.orig 2007-04-06 17:01:16.000000000 +0800 ++++ chmsee-1.0.0-beta2/chmsee.desktop.in 2007-07-21 10:22:44.000000000 +0800 +@@ -1,12 +1,12 @@ + [Desktop Entry] +-Version=1.0.1 ++Version=1.0 + Encoding=UTF-8 + _Name=ChmSee + _Comment=HTML Help(CHM) viewer + Exec=chmsee %f + Terminal=false + Type=Application +-Icon=chmsee-icon.png ++Icon=chmsee + StartupNotify=true + Categories=Utility; + MimeType=application/x-chm; chmsee-1.0.1-xulrunner-1.9.patch: Index: chmsee-1.0.1-xulrunner-1.9.patch =================================================================== RCS file: chmsee-1.0.1-xulrunner-1.9.patch diff -N chmsee-1.0.1-xulrunner-1.9.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ chmsee-1.0.1-xulrunner-1.9.patch 14 Jul 2009 14:13:55 -0000 1.4 @@ -0,0 +1,30 @@ +diff -up chmsee-1.0.1/configure.xulrunner-1.9 chmsee-1.0.1/configure +--- chmsee-1.0.1/configure.xulrunner-1.9 2008-05-17 16:42:35.000000000 +0800 ++++ chmsee-1.0.1/configure 2008-06-01 15:44:48.000000000 +0800 +@@ -5835,7 +5835,7 @@ if test -n "$GECKO_CFLAGS"; then + ac_status=$? + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- pkg_cv_GECKO_CFLAGS=`$PKG_CONFIG --cflags "$gecko_provider" 2>/dev/null` ++ pkg_cv_GECKO_CFLAGS=`$PKG_CONFIG --cflags "$gecko_provider" --cflags nspr 2>/dev/null` + else + pkg_failed=yes + fi +@@ -5851,7 +5851,7 @@ if test -n "$GECKO_LIBS"; then + ac_status=$? + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- pkg_cv_GECKO_LIBS=`$PKG_CONFIG --libs "$gecko_provider" 2>/dev/null` ++ pkg_cv_GECKO_LIBS=`$PKG_CONFIG --libs "$gecko_provider" --libs nspr 2>/dev/null` + else + pkg_failed=yes + fi +@@ -5901,7 +5901,7 @@ fi + if test "x$enable_gecko" != "xno" ; then + + GECKO_INCLUDE_ROOT=`$PKG_CONFIG --cflags-only-I $gecko_provider | awk '{print $1}' | sed "s/^-I//"` +- GECKO_LIB_ROOT=`$PKG_CONFIG --libs-only-L $gecko_provider | awk '{print $1}' | cut -c 3-` ++ GECKO_LIB_ROOT=`$PKG_CONFIG --variable=libdir $gecko_provider-gtkmozembed` + GECKO_INCLUDE_ROOT=`dirname $GECKO_INCLUDE_ROOT` + GECKO_FLAVOUR=$with_gecko + Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/chmsee.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- chmsee.spec 14 Jul 2009 13:23:57 -0000 1.33 +++ chmsee.spec 14 Jul 2009 14:13:55 -0000 1.34 @@ -1,6 +1,6 @@ Name: chmsee -Version: 1.0.6 -Release: 1%{?dist} +Version: 1.0.1 +Release: 8%{?dist} Summary(zh_CN): CHM ??????????????????, ?????? Gtk2+ Summary: A Gtk+2 CHM document viewer Group: Applications/Publishing @@ -9,7 +9,8 @@ URL: http://code.google.com/p/chmsee Source0: http://chmsee.googlecode.com/files/%{name}-%{version}.tar.gz # this file comes from gnochm package Source1: gnochm-chmfile.png -Patch0: chmsee-1.0.6-disable-libxul-maxver.patch +Patch1: chmsee-1.0.1-desktop-icon.patch +Patch2: chmsee-1.0.1-xulrunner-1.9.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: intltool >= 0.34 pkgconfig >= 0.9 gettext cmake @@ -54,16 +55,17 @@ only current file's. %prep %setup -q -%patch0 -p1 -b .libxul-maxver +%patch1 -p1 -b .desktop-mimetype +%patch2 -p1 -b .xulrunner-1.9 %build -%cmake . +%configure --with-gecko=libxul make VERBOSE=1 %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -install -p -m 644 -D data/chmsee-icon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/chmsee-icon.png +install -p -m 644 -D chmsee-icon.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/chmsee.png # this file comes from gnochm package. Take care and avoid conflict (cp -p). install -p -m 644 -D %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/icons/gnome/48x48/mimetypes/application-x-chm.png ln -s application-x-chm.png $RPM_BUILD_ROOT%{_datadir}/icons/gnome/48x48/mimetypes/gnome-mime-application-x-chm.png @@ -94,18 +96,21 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS ChangeLog* COPYING NEWS README +%doc README* COPYING AUTHORS ChangeLog NEWS* TODO %{_bindir}/chmsee -%{_datadir}/applications/*.desktop +%{_mandir}/man1/chmsee*.1* %{_datadir}/chmsee/ -%{_datadir}/icons/gnome/*/mimetypes/*.png -%{_datadir}/icons/hicolor/*/apps/chmsee-icon.png -%{_datadir}/mime-info/chmsee.keys -%{_datadir}/mime-info/chmsee.mime %{_datadir}/pixmaps/chmsee-icon.png -#{_mandir}/man1/chmsee*.1* +%{_datadir}/applications/*.desktop +%{_datadir}/mime-info/chmsee.mime +%{_datadir}/mime-info/chmsee.keys +%{_datadir}/icons/gnome/*/mimetypes/*.png +%{_datadir}/icons/hicolor/*/apps/chmsee.png %changelog +* Tue Jul 14 2009 bbbush - 1.0.1-8 +- revert to 1.0.1 as latest version crash on xulrunner-1.9.1 + * Sun Jul 12 2009 bbbush - 1.0.6-1 - update to 1.0.6 - update project location. Chmsee moved to google code since 2009-01-05, Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 13 Jul 2009 01:42:35 -0000 1.6 +++ sources 14 Jul 2009 14:13:55 -0000 1.7 @@ -1 +1 @@ -7a42795038e138ee233952b525373b08 chmsee-1.0.6.tar.gz +0ea3d439ab240f12bc0f35632bbe114d chmsee-1.0.1.tar.gz From ajax at fedoraproject.org Tue Jul 14 14:15:12 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 14:15:12 +0000 (UTC) Subject: rpms/xorg-x11-drv-intel/devel intel-2.8.0-kms-get-crtc.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 copy-fb.patch, 1.4, 1.5 sources, 1.5, 1.6 xorg-x11-drv-intel.spec, 1.14, 1.15 intel-2.6.99.902-kms-get-crtc.patch, 1.2, NONE intel-2.7-dont-vsync-xv.patch, 1.1, NONE intel-2.7.0-lvds-default-modes.patch, 1.1, NONE Message-ID: <20090714141512.F216A11C0497@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-intel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12015 Modified Files: .cvsignore copy-fb.patch sources xorg-x11-drv-intel.spec Added Files: intel-2.8.0-kms-get-crtc.patch Removed Files: intel-2.6.99.902-kms-get-crtc.patch intel-2.7-dont-vsync-xv.patch intel-2.7.0-lvds-default-modes.patch Log Message: * Tue Jul 14 2009 Adam Jackson 2.8.0-0.2 - Today's git snapshots (driver and gpu tools) - intel-2.7-dont-vsync-xv.patch: Drop, should be working now. intel-2.8.0-kms-get-crtc.patch: --- NEW FILE intel-2.8.0-kms-get-crtc.patch --- diff -up xf86-video-intel-20090714/src/drmmode_display.c.jx xf86-video-intel-20090714/src/drmmode_display.c --- xf86-video-intel-20090714/src/drmmode_display.c.jx 2009-07-14 10:13:10.000000000 -0400 +++ xf86-video-intel-20090714/src/drmmode_display.c 2009-07-14 10:13:28.000000000 -0400 @@ -923,8 +923,19 @@ drmmode_output_set_property(xf86OutputPt return TRUE; } +#ifdef RANDR_GET_CRTC_INTERFACE +static xf86CrtcPtr +drmmode_get_crtc(xf86OutputPtr output) +{ + return output->crtc; +} +#endif + static const xf86OutputFuncsRec drmmode_output_funcs = { .create_resources = drmmode_output_create_resources, +#ifdef RANDR_GET_CRTC_INTERFACE + .get_crtc = drmmode_get_crtc, +#endif #ifdef RANDR_12_INTERFACE .set_property = drmmode_output_set_property, #endif Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Jun 2009 18:31:04 -0000 1.4 +++ .cvsignore 14 Jul 2009 14:15:12 -0000 1.5 @@ -1,3 +1,5 @@ xf86-video-intel-2.6.99.902.tar.bz2 intel-gpu-tools-20090624.tar.bz2 xf86-video-intel-20090624.tar.bz2 +intel-gpu-tools-20090714.tar.bz2 +xf86-video-intel-20090714.tar.bz2 copy-fb.patch: Index: copy-fb.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/copy-fb.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- copy-fb.patch 24 Jun 2009 18:31:04 -0000 1.4 +++ copy-fb.patch 14 Jul 2009 14:15:12 -0000 1.5 @@ -1,16 +1,16 @@ -diff -up xf86-video-intel-20090624/src/drmmode_display.c.jx xf86-video-intel-20090624/src/drmmode_display.c ---- xf86-video-intel-20090624/src/drmmode_display.c.jx 2009-06-24 13:57:46.000000000 -0400 -+++ xf86-video-intel-20090624/src/drmmode_display.c 2009-06-24 13:59:20.000000000 -0400 -@@ -29,6 +29,8 @@ - #include "config.h" - #endif +diff -up xf86-video-intel-20090714/src/drmmode_display.c.jx xf86-video-intel-20090714/src/drmmode_display.c +--- xf86-video-intel-20090714/src/drmmode_display.c.jx 2009-07-14 10:10:48.000000000 -0400 ++++ xf86-video-intel-20090714/src/drmmode_display.c 2009-07-14 10:10:58.000000000 -0400 +@@ -31,6 +31,8 @@ + + #include +#include + #include "xorgVersion.h" #include "i830.h" -@@ -163,7 +165,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, +@@ -165,7 +167,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, unsigned int pitch = pScrn->displayWidth * pI830->cpp; if (drmmode->fb_id == 0) { @@ -19,7 +19,7 @@ diff -up xf86-video-intel-20090624/src/d pScrn->virtualX, pScrn->virtualY, pScrn->depth, pScrn->bitsPerPixel, pitch, pI830->front_buffer->bo->handle, -@@ -728,6 +730,13 @@ drmmode_output_dpms(xf86OutputPtr output +@@ -736,6 +738,13 @@ drmmode_output_dpms(xf86OutputPtr output drmmode_ptr drmmode = drmmode_output->drmmode; int i; drmModePropertyPtr props; @@ -33,7 +33,7 @@ diff -up xf86-video-intel-20090624/src/d for (i = 0; i < koutput->count_props; i++) { props = drmModeGetProperty(drmmode->fd, koutput->props[i]); -@@ -1073,6 +1082,8 @@ drmmode_xf86crtc_resize (ScrnInfoPtr scr +@@ -1087,6 +1096,8 @@ drmmode_xf86crtc_resize (ScrnInfoPtr scr if (old_front) i830_free_memory(scrn, old_front); @@ -42,7 +42,7 @@ diff -up xf86-video-intel-20090624/src/d return TRUE; fail: -@@ -1129,3 +1140,98 @@ drmmode_get_pipe_from_crtc_id(drm_intel_ +@@ -1146,3 +1157,98 @@ drmmode_get_pipe_from_crtc_id(drm_intel_ return drm_intel_get_pipe_from_crtc_id (bufmgr, drmmode_crtc->mode_crtc->crtc_id); } @@ -141,10 +141,10 @@ diff -up xf86-video-intel-20090624/src/d + (*pScreen->DestroyPixmap)(dst); +} + -diff -up xf86-video-intel-20090624/src/i830_driver.c.jx xf86-video-intel-20090624/src/i830_driver.c ---- xf86-video-intel-20090624/src/i830_driver.c.jx 2009-06-23 18:35:41.000000000 -0400 -+++ xf86-video-intel-20090624/src/i830_driver.c 2009-06-24 13:57:58.000000000 -0400 -@@ -3097,6 +3097,8 @@ I830EnterVT(int scrnIndex, int flags) +diff -up xf86-video-intel-20090714/src/i830_driver.c.jx xf86-video-intel-20090714/src/i830_driver.c +--- xf86-video-intel-20090714/src/i830_driver.c.jx 2009-07-13 19:38:34.000000000 -0400 ++++ xf86-video-intel-20090714/src/i830_driver.c 2009-07-14 10:10:58.000000000 -0400 +@@ -3057,6 +3057,8 @@ I830EnterVT(int scrnIndex, int flags) /* Clear the framebuffer */ memset(pI830->FbBase + pScrn->fbOffset, 0, pScrn->virtualY * pScrn->displayWidth * pI830->cpp); @@ -153,14 +153,14 @@ diff -up xf86-video-intel-20090624/src/i } if (!xf86SetDesiredModes (pScrn)) -diff -up xf86-video-intel-20090624/src/i830.h.jx xf86-video-intel-20090624/src/i830.h ---- xf86-video-intel-20090624/src/i830.h.jx 2009-06-23 18:35:41.000000000 -0400 -+++ xf86-video-intel-20090624/src/i830.h 2009-06-24 13:59:49.000000000 -0400 -@@ -691,6 +691,7 @@ void I830DRI2CloseScreen(ScreenPtr pScre - +diff -up xf86-video-intel-20090714/src/i830.h.jx xf86-video-intel-20090714/src/i830.h +--- xf86-video-intel-20090714/src/i830.h.jx 2009-07-13 19:38:34.000000000 -0400 ++++ xf86-video-intel-20090714/src/i830.h 2009-07-14 10:11:17.000000000 -0400 +@@ -685,6 +685,7 @@ void I830DRI2CloseScreen(ScreenPtr pScre extern Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp); extern int drmmode_get_pipe_from_crtc_id(drm_intel_bufmgr *bufmgr, xf86CrtcPtr crtc); + extern int drmmode_output_dpms_status(xf86OutputPtr output); +extern void drmmode_copy_fb(ScrnInfoPtr pScrn); - extern Bool I830AccelInit(ScreenPtr pScreen); - extern void I830SetupForScreenToScreenCopy(ScrnInfoPtr pScrn, int xdir, + extern Bool i830_crtc_on(xf86CrtcPtr crtc); + extern int i830_crtc_to_pipe(xf86CrtcPtr crtc); Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Jun 2009 18:31:04 -0000 1.5 +++ sources 14 Jul 2009 14:15:12 -0000 1.6 @@ -1,2 +1,2 @@ -df3d898b00c84228c37ecb454a6e63e7 intel-gpu-tools-20090624.tar.bz2 -2892648278871dad4d2d151534d4c596 xf86-video-intel-20090624.tar.bz2 +9a71381224168221894ec723bf6a98e0 intel-gpu-tools-20090714.tar.bz2 +113887c4aed49f05647e351055051d8b xf86-video-intel-20090714.tar.bz2 Index: xorg-x11-drv-intel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/xorg-x11-drv-intel.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xorg-x11-drv-intel.spec 24 Jun 2009 18:31:04 -0000 1.14 +++ xorg-x11-drv-intel.spec 14 Jul 2009 14:15:12 -0000 1.15 @@ -2,13 +2,13 @@ %define legacyver 2.6.0-8 %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/drivers -%define gputoolsdate 20090624 -%define gitdate 20090624 +%define gputoolsdate 20090714 +%define gitdate 20090714 Summary: Xorg X11 Intel video driver Name: xorg-x11-drv-intel Version: 2.8.0 -Release: 0.1%{?dist} +Release: 0.2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -25,11 +25,7 @@ Patch1: kill-svideo.patch Patch2: copy-fb.patch # needs to be upstreamed -Patch20: intel-2.6.99.902-kms-get-crtc.patch -Patch21: intel-2.7.0-lvds-default-modes.patch - -# Disable xv vsync, it locks up the GPU -Patch22: intel-2.7-dont-vsync-xv.patch +Patch20: intel-2.8.0-kms-get-crtc.patch ExclusiveArch: %{ix86} x86_64 ia64 @@ -74,13 +70,6 @@ Debugging tools for Intel graphics chips %patch2 -p1 -b .copy-fb %patch20 -p1 -b .get-crtc -# notyet. we don't handle switching in and out of tiled front buffer -# correctly yet, so let's not have people stumble into it more than -# they have to. -#patch21 -p1 -b .jx - -%patch22 -p1 -b .xv-vsync - %build %if 0%{?gitdate} @@ -135,6 +124,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/intel_*.1* %changelog +* Tue Jul 14 2009 Adam Jackson 2.8.0-0.2 +- Today's git snapshots (driver and gpu tools) +- intel-2.7-dont-vsync-xv.patch: Drop, should be working now. + * Wed Jun 24 2009 Adam Jackson 2.8.0-0.1 - Today's git snapshots (driver and gpu tools) --- intel-2.6.99.902-kms-get-crtc.patch DELETED --- --- intel-2.7-dont-vsync-xv.patch DELETED --- --- intel-2.7.0-lvds-default-modes.patch DELETED --- From icon at fedoraproject.org Tue Jul 14 14:21:23 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Tue, 14 Jul 2009 14:21:23 +0000 (UTC) Subject: rpms/python-setuptools/devel svn_versioning_4.patch, NONE, 1.1 python-setuptools.spec, 1.19, 1.20 Message-ID: <20090714142123.680C611C0497@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/python-setuptools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12881/devel Modified Files: python-setuptools.spec Added Files: svn_versioning_4.patch Log Message: Apply patch to fix SVN-1.6 versioning problem. see #511021 svn_versioning_4.patch: --- NEW FILE svn_versioning_4.patch --- Index: setuptools/svn_util.py =================================================================== --- setuptools/svn_util.py (revision 0) +++ setuptools/svn_util.py (revision 0) @@ -0,0 +1,109 @@ +import os +import re + +def get_entries_files(base, recurse=True): + for base,dirs,files in os.walk(os.curdir): + if '.svn' not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove('.svn') + f = open(os.path.join(base,'.svn','entries')) + yield f.read() + f.close() + +class SVNEntries(object): + def __init__(self, data): + self.data = data + + @classmethod + def load(class_, base): + filename = os.path.join(base, '.svn', 'entries') + f = open(filename) + result = SVNEntries.read(f) + f.close() + return result + + @classmethod + def read(class_, file): + data = file.read() + is_xml = data.startswith('revision_line_number + and section[revision_line_number] + ] + return rev_numbers + + def get_undeleted_records(self): + undeleted = lambda s: s and s[0] and (len(s) < 6 or s[5] != 'delete') + result = [ + section[0] + for section in self.get_sections() + if undeleted(section) + ] + return result + +class SVNEntriesXML(SVNEntries): + def is_valid(self): + return True + + def get_url(self): + "Get repository URL" + urlre = re.compile('url="([^"]+)"') + return urlre.search(self.data).group(1) + + def parse_revision_numbers(self): + revre = re.compile('committed-rev="(\d+)"') + return [ + int(m.group(1)) + for m in revre.finditer(self.data) + ] + + def get_undeleted_records(self): + entries_pattern = re.compile(r'name="([^"]+)"(?![^>]+deleted="true")', re.I) + results = [ + unescape(match.group(1)) + for match in entries_pattern.finditer(self.data) + ] + return results Property changes on: setuptools/svn_util.py ___________________________________________________________________ Name: svn:keywords + Id Rev Author Date Name: svn:eol-style + native Index: setuptools/command/egg_info.py =================================================================== --- setuptools/command/egg_info.py (revision 72970) +++ setuptools/command/egg_info.py (working copy) @@ -8,6 +8,7 @@ from distutils.errors import * from distutils import log from setuptools.command.sdist import sdist +from setuptools import svn_util from distutils.util import convert_path from distutils.filelist import FileList from pkg_resources import parse_requirements, safe_name, parse_version, \ @@ -205,30 +206,20 @@ def get_svn_revision(self): revision = 0 - urlre = re.compile('url="([^"]+)"') - revre = re.compile('committed-rev="(\d+)"') for base,dirs,files in os.walk(os.curdir): if '.svn' not in dirs: dirs[:] = [] continue # no sense walking uncontrolled subdirs dirs.remove('.svn') - f = open(os.path.join(base,'.svn','entries')) - data = f.read() - f.close() - - if data.startswith('9') or data.startswith('8'): - data = map(str.splitlines,data.split('\n\x0c\n')) - del data[0][0] # get rid of the '8' or '9' - dirurl = data[0][3] - localrev = max([int(d[9]) for d in data if len(d)>9 and d[9]]+[0]) - elif data.startswith('"), (""", '"'), ("'", "'"), @@ -80,24 +81,11 @@ yield joinpath(dirname, parts[0]) -entries_pattern = re.compile(r'name="([^"]+)"(?![^>]+deleted="true")', re.I) def entries_finder(dirname, filename): - f = open(filename,'rU') - data = f.read() - f.close() - if data.startswith('9') or data.startswith('8'): # subversion 1.5/1.4 - for record in map(str.splitlines, data.split('\n\x0c\n')[1:]): - if not record or len(record)>=6 and record[5]=="delete": - continue # skip deleted - yield joinpath(dirname, record[0]) - elif data.startswith(' - 0.6c9-4 +- Apply SVN-1.6 versioning patch (rhbz #511021) + * Thu Feb 26 2009 Fedora Release Engineering - 0.6c9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From icon at fedoraproject.org Tue Jul 14 14:21:23 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Tue, 14 Jul 2009 14:21:23 +0000 (UTC) Subject: rpms/python-setuptools/F-11 svn_versioning_4.patch, NONE, 1.1 python-setuptools.spec, 1.19, 1.20 Message-ID: <20090714142123.4C61211C0497@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/python-setuptools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12881/F-11 Modified Files: python-setuptools.spec Added Files: svn_versioning_4.patch Log Message: Apply patch to fix SVN-1.6 versioning problem. see #511021 svn_versioning_4.patch: --- NEW FILE svn_versioning_4.patch --- Index: setuptools/svn_util.py =================================================================== --- setuptools/svn_util.py (revision 0) +++ setuptools/svn_util.py (revision 0) @@ -0,0 +1,109 @@ +import os +import re + +def get_entries_files(base, recurse=True): + for base,dirs,files in os.walk(os.curdir): + if '.svn' not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove('.svn') + f = open(os.path.join(base,'.svn','entries')) + yield f.read() + f.close() + +class SVNEntries(object): + def __init__(self, data): + self.data = data + + @classmethod + def load(class_, base): + filename = os.path.join(base, '.svn', 'entries') + f = open(filename) + result = SVNEntries.read(f) + f.close() + return result + + @classmethod + def read(class_, file): + data = file.read() + is_xml = data.startswith('revision_line_number + and section[revision_line_number] + ] + return rev_numbers + + def get_undeleted_records(self): + undeleted = lambda s: s and s[0] and (len(s) < 6 or s[5] != 'delete') + result = [ + section[0] + for section in self.get_sections() + if undeleted(section) + ] + return result + +class SVNEntriesXML(SVNEntries): + def is_valid(self): + return True + + def get_url(self): + "Get repository URL" + urlre = re.compile('url="([^"]+)"') + return urlre.search(self.data).group(1) + + def parse_revision_numbers(self): + revre = re.compile('committed-rev="(\d+)"') + return [ + int(m.group(1)) + for m in revre.finditer(self.data) + ] + + def get_undeleted_records(self): + entries_pattern = re.compile(r'name="([^"]+)"(?![^>]+deleted="true")', re.I) + results = [ + unescape(match.group(1)) + for match in entries_pattern.finditer(self.data) + ] + return results Property changes on: setuptools/svn_util.py ___________________________________________________________________ Name: svn:keywords + Id Rev Author Date Name: svn:eol-style + native Index: setuptools/command/egg_info.py =================================================================== --- setuptools/command/egg_info.py (revision 72970) +++ setuptools/command/egg_info.py (working copy) @@ -8,6 +8,7 @@ from distutils.errors import * from distutils import log from setuptools.command.sdist import sdist +from setuptools import svn_util from distutils.util import convert_path from distutils.filelist import FileList from pkg_resources import parse_requirements, safe_name, parse_version, \ @@ -205,30 +206,20 @@ def get_svn_revision(self): revision = 0 - urlre = re.compile('url="([^"]+)"') - revre = re.compile('committed-rev="(\d+)"') for base,dirs,files in os.walk(os.curdir): if '.svn' not in dirs: dirs[:] = [] continue # no sense walking uncontrolled subdirs dirs.remove('.svn') - f = open(os.path.join(base,'.svn','entries')) - data = f.read() - f.close() - - if data.startswith('9') or data.startswith('8'): - data = map(str.splitlines,data.split('\n\x0c\n')) - del data[0][0] # get rid of the '8' or '9' - dirurl = data[0][3] - localrev = max([int(d[9]) for d in data if len(d)>9 and d[9]]+[0]) - elif data.startswith('"), (""", '"'), ("'", "'"), @@ -80,24 +81,11 @@ yield joinpath(dirname, parts[0]) -entries_pattern = re.compile(r'name="([^"]+)"(?![^>]+deleted="true")', re.I) def entries_finder(dirname, filename): - f = open(filename,'rU') - data = f.read() - f.close() - if data.startswith('9') or data.startswith('8'): # subversion 1.5/1.4 - for record in map(str.splitlines, data.split('\n\x0c\n')[1:]): - if not record or len(record)>=6 and record[5]=="delete": - continue # skip deleted - yield joinpath(dirname, record[0]) - elif data.startswith(' - 0.6c9-4 +- Apply SVN-1.6 versioning patch (rhbz #511021) + * Thu Feb 26 2009 Fedora Release Engineering - 0.6c9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From itamarjp at fedoraproject.org Tue Jul 14 14:27:14 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 14 Jul 2009 14:27:14 +0000 (UTC) Subject: rpms/qt-creator/devel .cvsignore, 1.4, 1.5 import.log, 1.5, 1.6 qt-creator.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090714142714.18DE911C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13785/devel Modified Files: .cvsignore import.log qt-creator.spec sources Log Message: - new version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 28 Jun 2009 23:33:09 -0000 1.4 +++ .cvsignore 14 Jul 2009 14:26:43 -0000 1.5 @@ -1 +1 @@ -qt-creator-1.2.0-src.zip +qt-creator-1.2.1-src.zip Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 13 Jul 2009 16:06:19 -0000 1.5 +++ import.log 14 Jul 2009 14:26:43 -0000 1.6 @@ -3,3 +3,4 @@ qt-creator-1_1_0-1_fc11:HEAD:qt-creator- qt-creator-1_1_0-2_fc11:HEAD:qt-creator-1.1.0-2.fc11.src.rpm:1240702375 qt-creator-1_2_0-1_fc11:HEAD:qt-creator-1.2.0-1.fc11.src.rpm:1246231788 qt-creator-1_2_0-2_fc11:HEAD:qt-creator-1.2.0-2.fc11.src.rpm:1247501081 +qt-creator-1_2_1-1_fc11:HEAD:qt-creator-1.2.1-1.fc11.src.rpm:1247581546 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/qt-creator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qt-creator.spec 13 Jul 2009 16:06:19 -0000 1.5 +++ qt-creator.spec 14 Jul 2009 14:26:43 -0000 1.6 @@ -1,6 +1,6 @@ Name: qt-creator -Version: 1.2.0 -Release: 2%{?dist} +Version: 1.2.1 +Release: 1%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -96,6 +96,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Tue Jul 14 2009 Itamar Reis Peixoto - 1.2.1-1 +- new version 1.2.1 + * Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 - fix BZ #498563 patch from Michel Salim - Update GTK icon cache Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 28 Jun 2009 23:33:10 -0000 1.4 +++ sources 14 Jul 2009 14:26:43 -0000 1.5 @@ -1 +1 @@ -87315f83e37dc92dfb5730282d5ecb56 qt-creator-1.2.0-src.zip +41f044cf567db09153161403fbab4076 qt-creator-1.2.1-src.zip From rjones at fedoraproject.org Tue Jul 14 14:28:56 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 14:28:56 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.38, 1.39 libguestfs.spec, 1.72, 1.73 sources, 1.38, 1.39 Version.java, 1.1, NONE Message-ID: <20090714142856.19EC011C049C@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14772 Modified Files: .cvsignore libguestfs.spec sources Removed Files: Version.java Log Message: Version 1.0.59 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 10 Jul 2009 21:54:54 -0000 1.38 +++ .cvsignore 14 Jul 2009 14:28:55 -0000 1.39 @@ -1 +1 @@ -libguestfs-1.0.58.tar.gz +libguestfs-1.0.59.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.72 +++ libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.73 @@ -3,16 +3,14 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.58 -Release: 2%{?dist} +Version: 1.0.59 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Source1: Version.java - # Basic build requirements: BuildRequires: /usr/bin/pod2man BuildRequires: /usr/bin/pod2text @@ -273,9 +271,6 @@ Requires: jpackage-utils %prep %setup -q -# Accidentally missed from 1.0.58, remove in 1.0.59+ -cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ - mkdir -p daemon/m4 @@ -531,6 +526,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 +- New upstream release 1.0.59. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 10 Jul 2009 21:54:54 -0000 1.38 +++ sources 14 Jul 2009 14:28:55 -0000 1.39 @@ -1 +1 @@ -58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz +2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz --- Version.java DELETED --- From rjones at fedoraproject.org Tue Jul 14 14:28:56 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 14:28:56 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.20, 1.21 libguestfs.spec, 1.39, 1.40 sources, 1.20, 1.21 Version.java, 1.1, NONE Message-ID: <20090714142856.0A3B411C0497@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14669 Modified Files: .cvsignore libguestfs.spec sources Removed Files: Version.java Log Message: Version 1.0.59 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 10 Jul 2009 21:54:56 -0000 1.20 +++ .cvsignore 14 Jul 2009 14:28:55 -0000 1.21 @@ -1 +1 @@ -libguestfs-1.0.58.tar.gz +libguestfs-1.0.59.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.39 +++ libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.40 @@ -3,16 +3,14 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.58 -Release: 2%{?dist} +Version: 1.0.59 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Source1: Version.java - # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -287,9 +285,6 @@ Requires: jpackage-utils %prep %setup -q -# Accidentally missed from 1.0.58, remove in 1.0.59+ -cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ - mkdir -p daemon/m4 @@ -517,6 +512,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 +- New upstream release 1.0.59. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 10 Jul 2009 21:54:56 -0000 1.20 +++ sources 14 Jul 2009 14:28:55 -0000 1.21 @@ -1 +1 @@ -58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz +2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz --- Version.java DELETED --- From rjones at fedoraproject.org Tue Jul 14 14:28:55 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 14:28:55 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.26, 1.27 libguestfs.spec, 1.42, 1.43 sources, 1.26, 1.27 Version.java, 1.1, NONE Message-ID: <20090714142855.CD1CA11C0497@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14813 Modified Files: .cvsignore libguestfs.spec sources Removed Files: Version.java Log Message: Version 1.0.59 Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- libguestfs.spec 14 Jul 2009 10:55:11 -0000 1.42 +++ libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.43 @@ -3,16 +3,14 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.58 -Release: 2%{?dist} +Version: 1.0.59 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Source1: Version.java - # Basic build requirements: BuildRequires: /usr/bin/pod2man BuildRequires: /usr/bin/pod2text @@ -275,9 +273,6 @@ Requires: jpackage-utils %prep %setup -q -# Accidentally missed from 1.0.58, remove in 1.0.59+ -cp -i %{SOURCE1} java/com/redhat/et/libguestfs/ - mkdir -p daemon/m4 @@ -533,6 +528,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 +- New upstream release 1.0.59. + * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 10 Jul 2009 21:54:57 -0000 1.26 +++ sources 14 Jul 2009 14:28:55 -0000 1.27 @@ -1 +1 @@ -58f083d27b10fbd22aa95328278237de libguestfs-1.0.58.tar.gz +2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz --- Version.java DELETED --- From itamarjp at fedoraproject.org Tue Jul 14 14:29:36 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 14 Jul 2009 14:29:36 +0000 (UTC) Subject: rpms/qt-creator/F-11 .cvsignore, 1.4, 1.5 import.log, 1.4, 1.5 qt-creator.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090714142936.3B2E911C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15269/F-11 Modified Files: .cvsignore import.log qt-creator.spec sources Log Message: - new version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 29 Jun 2009 00:15:34 -0000 1.4 +++ .cvsignore 14 Jul 2009 14:29:35 -0000 1.5 @@ -1 +1 @@ -qt-creator-1.2.0-src.zip +qt-creator-1.2.1-src.zip Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 13 Jul 2009 16:12:24 -0000 1.4 +++ import.log 14 Jul 2009 14:29:35 -0000 1.5 @@ -2,3 +2,4 @@ qt-creator-1_0_0-4_fc11:HEAD:qt-creator- qt-creator-1_1_0-2_fc11:F-11:qt-creator-1.1.0-2.fc11.src.rpm:1240704397 qt-creator-1_2_0-1_fc11:F-11:qt-creator-1.2.0-1.fc11.src.rpm:1246234357 qt-creator-1_2_0-2_fc11:F-11:qt-creator-1.2.0-2.fc11.src.rpm:1247501474 +qt-creator-1_2_1-1_fc11:F-11:qt-creator-1.2.1-1.fc11.src.rpm:1247581718 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/qt-creator.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qt-creator.spec 13 Jul 2009 16:12:24 -0000 1.4 +++ qt-creator.spec 14 Jul 2009 14:29:36 -0000 1.5 @@ -1,6 +1,6 @@ Name: qt-creator -Version: 1.2.0 -Release: 2%{?dist} +Version: 1.2.1 +Release: 1%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -96,6 +96,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Tue Jul 14 2009 Itamar Reis Peixoto - 1.2.1-1 +- new version 1.2.1 + * Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 - fix BZ #498563 patch from Michel Salim - Update GTK icon cache Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 29 Jun 2009 00:15:34 -0000 1.4 +++ sources 14 Jul 2009 14:29:36 -0000 1.5 @@ -1 +1 @@ -87315f83e37dc92dfb5730282d5ecb56 qt-creator-1.2.0-src.zip +41f044cf567db09153161403fbab4076 qt-creator-1.2.1-src.zip From itamarjp at fedoraproject.org Tue Jul 14 14:30:43 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Tue, 14 Jul 2009 14:30:43 +0000 (UTC) Subject: rpms/qt-creator/F-10 .cvsignore, 1.4, 1.5 import.log, 1.6, 1.7 qt-creator.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090714143043.8134A11C0497@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/qt-creator/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15625/F-10 Modified Files: .cvsignore import.log qt-creator.spec sources Log Message: - new version 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 29 Jun 2009 00:18:30 -0000 1.4 +++ .cvsignore 14 Jul 2009 14:30:43 -0000 1.5 @@ -1 +1 @@ -qt-creator-1.2.0-src.zip +qt-creator-1.2.1-src.zip Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 13 Jul 2009 16:10:01 -0000 1.6 +++ import.log 14 Jul 2009 14:30:43 -0000 1.7 @@ -4,3 +4,4 @@ qt-creator-1_1_0-2_fc11:HEAD:qt-creator- qt-creator-1_1_0-2_fc11:F-10:qt-creator-1.1.0-2.fc11.src.rpm:1240850030 qt-creator-1_2_0-1_fc11:F-10:qt-creator-1.2.0-1.fc11.src.rpm:1246234638 qt-creator-1_2_0-2_fc11:F-10:qt-creator-1.2.0-2.fc11.src.rpm:1247501254 +qt-creator-1_2_1-1_fc11:F-10:qt-creator-1.2.1-1.fc11.src.rpm:1247581812 Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/qt-creator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qt-creator.spec 13 Jul 2009 16:10:02 -0000 1.5 +++ qt-creator.spec 14 Jul 2009 14:30:43 -0000 1.6 @@ -1,6 +1,6 @@ Name: qt-creator -Version: 1.2.0 -Release: 2%{?dist} +Version: 1.2.1 +Release: 1%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -96,6 +96,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Tue Jul 14 2009 Itamar Reis Peixoto - 1.2.1-1 +- new version 1.2.1 + * Mon Jul 13 2009 Itamar Reis Peixoto - 1.2.0-2 - fix BZ #498563 patch from Michel Salim - Update GTK icon cache Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 29 Jun 2009 00:18:30 -0000 1.4 +++ sources 14 Jul 2009 14:30:43 -0000 1.5 @@ -1 +1 @@ -87315f83e37dc92dfb5730282d5ecb56 qt-creator-1.2.0-src.zip +41f044cf567db09153161403fbab4076 qt-creator-1.2.1-src.zip From mclasen at fedoraproject.org Tue Jul 14 14:40:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 14:40:18 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel gnome-settings-daemon.spec, 1.109, 1.110 Message-ID: <20090714144018.7395011C0497@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16973 Modified Files: gnome-settings-daemon.spec Log Message: 2.27.4 Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- gnome-settings-daemon.spec 14 Jul 2009 13:51:31 -0000 1.109 +++ gnome-settings-daemon.spec 14 Jul 2009 14:39:48 -0000 1.110 @@ -32,14 +32,9 @@ BuildRequires: gettext BuildRequires: autoconf, automake, libtool, intltool BuildRequires: fontconfig-devel -# http://bugzilla.gnome.org/show_bug.cgi?id=578444 -Patch11: gnome-settings-daemon-2.26.0-support-touchpads.patch - # https://bugzilla.redhat.com/show_bug.cgi?id=483639 Patch12: gnome-settings-daemon-2.26.1-fix-touchpad.patch -Patch13: xklavier4.patch - %description A daemon to share settings from GNOME to other applications. It also handles global keybindings, as well as a number of desktop-wide settings. @@ -58,9 +53,7 @@ developing applications that use %{name} %prep %setup -q -%patch11 -p1 -b .support-touchpads %patch12 -p1 -b .lefthand-touchpad -%patch13 -p1 -b .xklavier4 autoreconf -i -f From caolanm at fedoraproject.org Tue Jul 14 14:52:17 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 14 Jul 2009 14:52:17 +0000 (UTC) Subject: rpms/bmpx/devel bmpx-compile.patch,1.1,1.2 bmpx.spec,1.20,1.21 Message-ID: <20090714145217.0907511C0497@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/bmpx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18298 Modified Files: bmpx-compile.patch bmpx.spec Log Message: Resolves: rhbz#489552 fix to compile bmpx-compile.patch: Index: bmpx-compile.patch =================================================================== RCS file: /cvs/pkgs/rpms/bmpx/devel/bmpx-compile.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bmpx-compile.patch 5 Mar 2009 08:45:59 -0000 1.1 +++ bmpx-compile.patch 14 Jul 2009 14:52:16 -0000 1.2 @@ -1,4 +1,4 @@ ---- bmpx-0.40.14/src/uri.cc.orig 2008-04-06 01:49:24.000000000 +0200 +--- bmpx-0.40.14.orig/src/uri.cc 2008-04-06 01:49:24.000000000 +0200 +++ bmpx-0.40.14/src/uri.cc 2009-02-23 19:23:56.000000000 +0100 @@ -35,6 +35,7 @@ // BMPx is covered by. @@ -8,3 +8,34 @@ #include #include #include +--- bmpx-0.40.14.orig/widgets/popup.cc 2009-03-10 16:01:16.000000000 +0000 ++++ bmpx-0.40.14/widgets/popup.cc 2009-03-10 16:01:30.000000000 +0000 +@@ -308,7 +308,7 @@ + + if (m_location == ARROW_TOP) + { +- Cairo::Matrix matrix = { 1, 0, 0, -1, 0, h }; ++ Cairo::Matrix matrix(1, 0, 0, -1, 0, h); + cr->set_matrix (matrix); + } + +--- bmpx-0.40.14.orig/src/ui-part-library.cc 2009-03-10 16:31:30.000000000 +0000 ++++ bmpx-0.40.14/src/ui-part-library.cc 2009-03-10 16:32:26.000000000 +0000 +@@ -509,8 +509,8 @@ + if( node != NODE_BRANCH ) + { + // Clone this node as one child row +- UID uid (Bmp::AlbumArtist ((*i_toplevel)[mStoreArtistCR.artist]).bmpx_album_artist_id); + Bmp::AlbumArtist aa ((*i_toplevel)[mStoreArtistCR.artist]); ++ UID uid (aa.bmpx_album_artist_id); + + UidIterMapIter uid_i = mUidIterMap.find (uid); + if( uid_i != mUidIterMap.end() ) +--- bmpx-0.40.14.orig/docs/images/Makefile.am 2009-07-14 08:40:53.000000000 +0100 ++++ bmpx-0.40.14/docs/images/Makefile.am 2009-07-14 09:57:46.000000000 +0100 +@@ -1,4 +1,4 @@ +-image_DATA=main-window.png bmp.png active-source.png playing-source.png important.png tip.png favicon.ico bmp-logo-small.png gradient.png rect1869.png favicon.ico ++image_DATA=main-window.png bmp.png active-source.png playing-source.png important.png tip.png favicon.ico bmp-logo-small.png gradient.png rect1869.png + imagedir=$(prefix)/share/doc/@PACKAGE@/images + + EXTRA_DIST=$(image_DATA) Index: bmpx.spec =================================================================== RCS file: /cvs/pkgs/rpms/bmpx/devel/bmpx.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- bmpx.spec 5 Mar 2009 08:49:24 -0000 1.20 +++ bmpx.spec 14 Jul 2009 14:52:16 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Beep Media Player eXperimental Name: bmpx Version: 0.40.14 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Group: Applications/Multimedia @@ -183,6 +183,9 @@ fi %changelog +* Tue Jul 14 2009 Caol??n McNamara - 0.40.14-14 +- Resolves: rhbz#489552 fix to compile + * Thu Mar 5 2009 josef radinger - 0.40.14-13 - needs even more - and i forgot to update the version-number From ruben at fedoraproject.org Tue Jul 14 14:55:27 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Tue, 14 Jul 2009 14:55:27 +0000 (UTC) Subject: rpms/gearmand/devel .cvsignore, 1.4, 1.5 gearmand.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090714145527.B3EF511C0497@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/gearmand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18685 Modified Files: .cvsignore gearmand.spec sources Log Message: * Tue Jul 14 2009 Ruben Kerkhof 0.8-1 - Upstream released new version - Enable libmemcached backend Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 Jun 2009 11:36:56 -0000 1.4 +++ .cvsignore 14 Jul 2009 14:54:57 -0000 1.5 @@ -1 +1 @@ -gearmand-0.7.tar.gz +gearmand-0.8.tar.gz Index: gearmand.spec =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/gearmand.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gearmand.spec 22 Jun 2009 11:36:56 -0000 1.6 +++ gearmand.spec 14 Jul 2009 14:54:57 -0000 1.7 @@ -1,5 +1,5 @@ Name: gearmand -Version: 0.7 +Version: 0.8 Release: 1%{?dist} Summary: A distributed job system @@ -11,13 +11,13 @@ Source1: gearmand.init Source2: gearmand.sysconfig BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libevent-devel, e2fsprogs-devel +BuildRequires: libevent-devel, libuuid-devel, libmemcached-devel, memcached %ifnarch ppc64 sparc64 # no google perftools BuildRequires: google-perftools-devel %endif -Requires(pre): %{_sbindir}/useradd +Requires(pre): shadow-utils Requires(post): chkconfig Requires(preun): chkconfig, initscripts Requires: procps @@ -78,6 +78,7 @@ mkdir -p %{buildroot}/var/run/gearmand %clean rm -rf %{buildroot} + %pre getent group gearmand >/dev/null || groupadd -r gearmand getent passwd gearmand >/dev/null || \ @@ -129,6 +130,10 @@ fi %changelog +* Tue Jul 14 2009 Ruben Kerkhof 0.8-1 +- Upstream released new version +- Enable libmemcached backend + * Mon Jun 22 2009 Ruben Kerkhof 0.7-1 - Upstream released new version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 Jun 2009 11:36:56 -0000 1.4 +++ sources 14 Jul 2009 14:54:57 -0000 1.5 @@ -1 +1 @@ -6c799135cf00f3a7cfe9a39d51856b89 gearmand-0.7.tar.gz +2118ad03aa055d22374d3a095554e54a gearmand-0.8.tar.gz From drago01 at fedoraproject.org Tue Jul 14 15:15:28 2009 From: drago01 at fedoraproject.org (drago01) Date: Tue, 14 Jul 2009 15:15:28 +0000 (UTC) Subject: rpms/control-center/F-11 control-center.spec, 1.450, 1.451 default-applications.patch, 1.3, 1.4 Message-ID: <20090714151528.C943111C0497@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/control-center/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21379 Modified Files: control-center.spec default-applications.patch Log Message: Reenable firefox options in the default applications capplet Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/F-11/control-center.spec,v retrieving revision 1.450 retrieving revision 1.451 diff -u -p -r1.450 -r1.451 --- control-center.spec 5 Jun 2009 14:12:21 -0000 1.450 +++ control-center.spec 14 Jul 2009 15:14:58 -0000 1.451 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.26.0 -Release: 9%{?dist} +Release: 10%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -375,6 +375,10 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog +* Tue Jul 14 2009 Adel Gadllah - 2.26.0-10 +- Reenable firefox options in the default applications capplet + (RH #509565) + * Fri Jun 05 2009 Bastien Nocera 2.26.0-9 - Add arora to the list of browsers (#497610) default-applications.patch: Index: default-applications.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/F-11/default-applications.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- default-applications.patch 26 Feb 2008 17:25:42 -0000 1.3 +++ default-applications.patch 14 Jul 2009 15:14:58 -0000 1.4 @@ -1,7 +1,7 @@ -diff -up gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in.default-apps gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in ---- gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in.default-apps 2008-02-24 18:36:53.000000000 -0500 -+++ gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in 2008-02-26 12:23:53.000000000 -0500 -@@ -44,62 +44,22 @@ +diff -upNr gnome-control-center-2.26.0.orign/capplets/default-applications/gnome-default-applications.xml.in gnome-control-center-2.26.0/capplets/default-applications/gnome-default-applications.xml.in +--- gnome-control-center-2.26.0.orign/capplets/default-applications/gnome-default-applications.xml.in 2008-11-04 17:09:46.000000000 +0100 ++++ gnome-control-center-2.26.0/capplets/default-applications/gnome-default-applications.xml.in 2009-07-14 17:12:37.617845586 +0200 +@@ -44,24 +44,6 @@ galeon -w %s @@ -26,11 +26,7 @@ diff -up gnome-control-center-2.21.92/ca <_name>Firefox firefox firefox %s - firefox - false -- true -+ false - firefox -new-tab "%s" +@@ -72,34 +54,12 @@ firefox -new-window "%s" From bonii at fedoraproject.org Tue Jul 14 15:15:44 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Tue, 14 Jul 2009 15:15:44 +0000 (UTC) Subject: rpms/gnujump/devel gnujump.desktop, NONE, 1.1 gnujump.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714151544.5E09211C0497@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnujump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21463/devel Modified Files: .cvsignore sources Added Files: gnujump.desktop gnujump.spec import.log Log Message: Initial Import into repository --- NEW FILE gnujump.desktop --- [Desktop Entry] Encoding=UTF-8 Name=Gnujump GenericName=A clone jumping game of xjump Comment=Keep jumping to stay alive Exec=gnujump Icon=/usr/share/gnujump/skins/default/hero1.0.png Terminal=false Type=Application Categories=Game;ArcadeGame; --- NEW FILE gnujump.spec --- Name: gnujump Version: 1.0.6 Release: 2%{?dist} Summary: A jumping game which is a clone of xjump Group: Amusements/Games License: GPLv3+ URL: http://gnu.org/software/%{name} Source0: http://ftp.gnu.org/gnu/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel >= 1.2, SDL_mixer-devel, SDL_image-devel BuildRequires: desktop-file-utils %description GNUjump is a clone of the simple yet addictive game Xjump, adding new features like multiplaying, unlimited FPS, smooth floor falling, themable graphics, sounds,replays, etc. The goal in this game is to jump to the next floor trying not to fall down. As you go upper in the Falling Tower the floors will fall faster. Try to survive longer get upper than anyone. It might seem too simple but once you've tried you'll realize how addictive this is. %prep %setup -q %build %configure make %{?_smp_mflags} %check make check %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ABOUT-NLS COPYING README %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man6/%{name}.6* %{_datadir}/applications/%{name}.desktop %changelog * Sun Jul 12 2009 Vivek Shah 1.0.6-2 - Removed vendor tag from desktop-file-install - Added ownership for unowned directories - Fixed license to GPLv3+ * Sat Jul 4 2009 Vivek Shah 1.0.6-1 - Updated to new upstream version - Updated URL for consistency with name macro - Added subcategory in menu entry in desktop file * Sat Aug 30 2008 Vivek Shah 1.0.5-1 - Added desktop file and entry - Initial Package --- NEW FILE import.log --- gnujump-1_0_6-2_fc9:HEAD:gnujump-1.0.6-2.fc9.src.rpm:1247584636 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:44:16 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:15:43 -0000 1.2 @@ -0,0 +1 @@ +gnujump-1.0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:44:16 -0000 1.1 +++ sources 14 Jul 2009 15:15:44 -0000 1.2 @@ -0,0 +1 @@ +8433eee5d2d54104bc686d57c2a1deba gnujump-1.0.6.tar.gz From bonii at fedoraproject.org Tue Jul 14 15:22:05 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Tue, 14 Jul 2009 15:22:05 +0000 (UTC) Subject: rpms/gnujump/F-10 gnujump.desktop, NONE, 1.1 gnujump.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714152205.AB41E11C0497@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnujump/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22337/F-10 Modified Files: .cvsignore sources Added Files: gnujump.desktop gnujump.spec import.log Log Message: Initial Import into repository --- NEW FILE gnujump.desktop --- [Desktop Entry] Encoding=UTF-8 Name=Gnujump GenericName=A clone jumping game of xjump Comment=Keep jumping to stay alive Exec=gnujump Icon=/usr/share/gnujump/skins/default/hero1.0.png Terminal=false Type=Application Categories=Game;ArcadeGame; --- NEW FILE gnujump.spec --- Name: gnujump Version: 1.0.6 Release: 2%{?dist} Summary: A jumping game which is a clone of xjump Group: Amusements/Games License: GPLv3+ URL: http://gnu.org/software/%{name} Source0: http://ftp.gnu.org/gnu/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel >= 1.2, SDL_mixer-devel, SDL_image-devel BuildRequires: desktop-file-utils %description GNUjump is a clone of the simple yet addictive game Xjump, adding new features like multiplaying, unlimited FPS, smooth floor falling, themable graphics, sounds,replays, etc. The goal in this game is to jump to the next floor trying not to fall down. As you go upper in the Falling Tower the floors will fall faster. Try to survive longer get upper than anyone. It might seem too simple but once you've tried you'll realize how addictive this is. %prep %setup -q %build %configure make %{?_smp_mflags} %check make check %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ABOUT-NLS COPYING README %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man6/%{name}.6* %{_datadir}/applications/%{name}.desktop %changelog * Sun Jul 12 2009 Vivek Shah 1.0.6-2 - Removed vendor tag from desktop-file-install - Added ownership for unowned directories - Fixed license to GPLv3+ * Sat Jul 4 2009 Vivek Shah 1.0.6-1 - Updated to new upstream version - Updated URL for consistency with name macro - Added subcategory in menu entry in desktop file * Sat Aug 30 2008 Vivek Shah 1.0.5-1 - Added desktop file and entry - Initial Package --- NEW FILE import.log --- gnujump-1_0_6-2_fc9:F-10:gnujump-1.0.6-2.fc9.src.rpm:1247584908 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:44:16 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:21:35 -0000 1.2 @@ -0,0 +1 @@ +gnujump-1.0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:44:16 -0000 1.1 +++ sources 14 Jul 2009 15:21:35 -0000 1.2 @@ -0,0 +1 @@ +8433eee5d2d54104bc686d57c2a1deba gnujump-1.0.6.tar.gz From bonii at fedoraproject.org Tue Jul 14 15:24:23 2009 From: bonii at fedoraproject.org (Vivek Shah) Date: Tue, 14 Jul 2009 15:24:23 +0000 (UTC) Subject: rpms/gnujump/F-11 gnujump.desktop, NONE, 1.1 gnujump.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714152423.2617711C0497@cvs1.fedora.phx.redhat.com> Author: bonii Update of /cvs/pkgs/rpms/gnujump/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22856/F-11 Modified Files: .cvsignore sources Added Files: gnujump.desktop gnujump.spec import.log Log Message: Initial Import into repository --- NEW FILE gnujump.desktop --- [Desktop Entry] Encoding=UTF-8 Name=Gnujump GenericName=A clone jumping game of xjump Comment=Keep jumping to stay alive Exec=gnujump Icon=/usr/share/gnujump/skins/default/hero1.0.png Terminal=false Type=Application Categories=Game;ArcadeGame; --- NEW FILE gnujump.spec --- Name: gnujump Version: 1.0.6 Release: 2%{?dist} Summary: A jumping game which is a clone of xjump Group: Amusements/Games License: GPLv3+ URL: http://gnu.org/software/%{name} Source0: http://ftp.gnu.org/gnu/%{name}/%{version}/%{name}-%{version}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel >= 1.2, SDL_mixer-devel, SDL_image-devel BuildRequires: desktop-file-utils %description GNUjump is a clone of the simple yet addictive game Xjump, adding new features like multiplaying, unlimited FPS, smooth floor falling, themable graphics, sounds,replays, etc. The goal in this game is to jump to the next floor trying not to fall down. As you go upper in the Falling Tower the floors will fall faster. Try to survive longer get upper than anyone. It might seem too simple but once you've tried you'll realize how addictive this is. %prep %setup -q %build %configure make %{?_smp_mflags} %check make check %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ABOUT-NLS COPYING README %{_bindir}/%{name} %{_datadir}/%{name}/ %{_mandir}/man6/%{name}.6* %{_datadir}/applications/%{name}.desktop %changelog * Sun Jul 12 2009 Vivek Shah 1.0.6-2 - Removed vendor tag from desktop-file-install - Added ownership for unowned directories - Fixed license to GPLv3+ * Sat Jul 4 2009 Vivek Shah 1.0.6-1 - Updated to new upstream version - Updated URL for consistency with name macro - Added subcategory in menu entry in desktop file * Sat Aug 30 2008 Vivek Shah 1.0.5-1 - Added desktop file and entry - Initial Package --- NEW FILE import.log --- gnujump-1_0_6-2_fc9:F-11:gnujump-1.0.6-2.fc9.src.rpm:1247585169 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:44:16 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:24:22 -0000 1.2 @@ -0,0 +1 @@ +gnujump-1.0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:44:16 -0000 1.1 +++ sources 14 Jul 2009 15:24:22 -0000 1.2 @@ -0,0 +1 @@ +8433eee5d2d54104bc686d57c2a1deba gnujump-1.0.6.tar.gz From kyle at fedoraproject.org Tue Jul 14 15:29:35 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Tue, 14 Jul 2009 15:29:35 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc3.bz2.sign, NONE, 1.1 .cvsignore, 1.1097, 1.1098 config-generic, 1.303, 1.304 kernel.spec, 1.1630, 1.1631 sources, 1.1055, 1.1056 upstream, 1.969, 1.970 patch-2.6.31-rc2-git9.bz2.sign, 1.1, NONE patch-2.6.31-rc2.bz2.sign, 1.1, NONE Message-ID: <20090714152935.7C6ED11C0497@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23743 Modified Files: .cvsignore config-generic kernel.spec sources upstream Added Files: patch-2.6.31-rc3.bz2.sign Removed Files: patch-2.6.31-rc2-git9.bz2.sign patch-2.6.31-rc2.bz2.sign Log Message: * Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 - 2.6.31-rc3 - config changes: - RTL8192SU is not set, (staging) --- NEW FILE patch-2.6.31-rc3.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKW+DRyGugalF9Dw4RAsIPAJ9AM7RKZ20g4JmawZnqs+g7muodKgCghTQa 1R44RsEbaiDeFRCLS2WTn1A= =ubmU -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1097 retrieving revision 1.1098 diff -u -p -r1.1097 -r1.1098 --- .cvsignore 13 Jul 2009 15:29:43 -0000 1.1097 +++ .cvsignore 14 Jul 2009 15:29:04 -0000 1.1098 @@ -5,5 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 -patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git9.bz2 +patch-2.6.31-rc3.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.303 retrieving revision 1.304 diff -u -p -r1.303 -r1.304 --- config-generic 13 Jul 2009 15:29:43 -0000 1.303 +++ config-generic 14 Jul 2009 15:29:04 -0000 1.304 @@ -3967,6 +3967,7 @@ CONFIG_USB_ATMEL=m # CONFIG_LINE6_USB is not set # CONFIG_USB_SERIAL_QUATECH_ESU100 is not set # CONFIG_RT3070 is not set +# CONFIG_RTL8192SU is not set # # Android Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1630 retrieving revision 1.1631 diff -u -p -r1.1630 -r1.1631 --- kernel.spec 13 Jul 2009 15:29:43 -0000 1.1630 +++ kernel.spec 14 Jul 2009 15:29:04 -0000 1.1631 @@ -56,9 +56,9 @@ Summary: The Linux kernel # The next upstream release sublevel (base_sublevel+1) %define upstream_sublevel %(echo $((%{base_sublevel} + 1))) # The rc snapshot level -%define rcrev 2 +%define rcrev 3 # The git snapshot level -%define gitrev 9 +%define gitrev 0 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -106,7 +106,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 1 +%define rawhide_skip_docs 0 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1868,6 +1868,11 @@ fi # and build. %changelog +* Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 +- 2.6.31-rc3 +- config changes: + - RTL8192SU is not set, (staging) + * Mon Jul 13 2009 Kyle McMartin 2.6.31-0.67.rc2.git9 - 2.6.31-rc2-git9 - config changes: Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1055 retrieving revision 1.1056 diff -u -p -r1.1055 -r1.1056 --- sources 13 Jul 2009 15:29:44 -0000 1.1055 +++ sources 14 Jul 2009 15:29:05 -0000 1.1056 @@ -1,3 +1,2 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 -a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -abca2af1027708479975f1f92baa913f patch-2.6.31-rc2-git9.bz2 +39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.969 retrieving revision 1.970 diff -u -p -r1.969 -r1.970 --- upstream 13 Jul 2009 15:29:44 -0000 1.969 +++ upstream 14 Jul 2009 15:29:05 -0000 1.970 @@ -1,4 +1,3 @@ linux-2.6.30.tar.bz2 -patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git9.bz2 +patch-2.6.31-rc3.bz2 --- patch-2.6.31-rc2-git9.bz2.sign DELETED --- --- patch-2.6.31-rc2.bz2.sign DELETED --- From dwalsh at fedoraproject.org Tue Jul 14 15:30:25 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 14 Jul 2009 15:30:25 +0000 (UTC) Subject: rpms/libselinux/devel .cvsignore, 1.185, 1.186 libselinux-rhat.patch, 1.196, 1.197 libselinux.spec, 1.373, 1.374 sources, 1.188, 1.189 libselinux-2.0.77-nlfd.patch, 1.1, NONE Message-ID: <20090714153025.D2B6511C0099@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/libselinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23874 Modified Files: .cvsignore libselinux-rhat.patch libselinux.spec sources Removed Files: libselinux-2.0.77-nlfd.patch Log Message: * Tue Jul 7 2009 Dan Walsh - 2.0.85-1 - Update to upstream * Reverted Tomas Mraz's fix for freeing thread local storage to avoid pthread dependency. * Removed fini_context_translations() altogether. * Merged lazy init patch from Stephen Smalley based on original patch by Steve Grubb. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libselinux/devel/.cvsignore,v retrieving revision 1.185 retrieving revision 1.186 diff -u -p -r1.185 -r1.186 --- .cvsignore 7 Jul 2009 16:26:10 -0000 1.185 +++ .cvsignore 14 Jul 2009 15:29:54 -0000 1.186 @@ -168,3 +168,4 @@ libselinux-2.0.81.tgz libselinux-2.0.82.tgz libselinux-2.0.83.tgz libselinux-2.0.84.tgz +libselinux-2.0.85.tgz libselinux-rhat.patch: Index: libselinux-rhat.patch =================================================================== RCS file: /cvs/extras/rpms/libselinux/devel/libselinux-rhat.patch,v retrieving revision 1.196 retrieving revision 1.197 diff -u -p -r1.196 -r1.197 --- libselinux-rhat.patch 7 Jul 2009 16:26:10 -0000 1.196 +++ libselinux-rhat.patch 14 Jul 2009 15:29:54 -0000 1.197 @@ -1,6 +1,6 @@ -diff --exclude-from=exclude -N -u -r nsalibselinux/man/man8/selinuxconlist.8 libselinux-2.0.83/man/man8/selinuxconlist.8 +diff --exclude-from=exclude -N -u -r nsalibselinux/man/man8/selinuxconlist.8 libselinux-2.0.82/man/man8/selinuxconlist.8 --- nsalibselinux/man/man8/selinuxconlist.8 1969-12-31 19:00:00.000000000 -0500 -+++ libselinux-2.0.83/man/man8/selinuxconlist.8 2009-07-07 12:22:39.298209000 -0400 ++++ libselinux-2.0.82/man/man8/selinuxconlist.8 2009-06-23 15:49:12.000000000 -0400 @@ -0,0 +1,18 @@ +.TH "selinuxconlist" "1" "7 May 2008" "dwalsh at redhat.com" "SELinux Command Line documentation" +.SH "NAME" @@ -20,9 +20,9 @@ diff --exclude-from=exclude -N -u -r nsa + +.SH "SEE ALSO" +secon(8), selinuxdefcon(8) -diff --exclude-from=exclude -N -u -r nsalibselinux/man/man8/selinuxdefcon.8 libselinux-2.0.83/man/man8/selinuxdefcon.8 +diff --exclude-from=exclude -N -u -r nsalibselinux/man/man8/selinuxdefcon.8 libselinux-2.0.82/man/man8/selinuxdefcon.8 --- nsalibselinux/man/man8/selinuxdefcon.8 1969-12-31 19:00:00.000000000 -0500 -+++ libselinux-2.0.83/man/man8/selinuxdefcon.8 2009-07-07 12:22:39.309211000 -0400 ++++ libselinux-2.0.82/man/man8/selinuxdefcon.8 2009-06-23 15:49:12.000000000 -0400 @@ -0,0 +1,19 @@ +.TH "selinuxdefcon" "1" "7 May 2008" "dwalsh at redhat.com" "SELinux Command Line documentation" +.SH "NAME" @@ -43,9 +43,9 @@ diff --exclude-from=exclude -N -u -r nsa + +.SH "SEE ALSO" +secon(8), selinuxconlist(8) -diff --exclude-from=exclude -N -u -r nsalibselinux/src/callbacks.c libselinux-2.0.83/src/callbacks.c ---- nsalibselinux/src/callbacks.c 2009-07-07 11:10:42.003951000 -0400 -+++ libselinux-2.0.83/src/callbacks.c 2009-07-07 12:22:39.312210000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/callbacks.c libselinux-2.0.82/src/callbacks.c +--- nsalibselinux/src/callbacks.c 2009-04-08 09:06:23.000000000 -0400 ++++ libselinux-2.0.82/src/callbacks.c 2009-06-23 15:49:12.000000000 -0400 @@ -16,6 +16,7 @@ { int rc; @@ -54,9 +54,9 @@ diff --exclude-from=exclude -N -u -r nsa va_start(ap, fmt); rc = vfprintf(stderr, fmt, ap); va_end(ap); -diff --exclude-from=exclude -N -u -r nsalibselinux/src/exception.sh libselinux-2.0.83/src/exception.sh +diff --exclude-from=exclude -N -u -r nsalibselinux/src/exception.sh libselinux-2.0.82/src/exception.sh --- nsalibselinux/src/exception.sh 1969-12-31 19:00:00.000000000 -0500 -+++ libselinux-2.0.83/src/exception.sh 2009-07-07 12:22:39.318209000 -0400 ++++ libselinux-2.0.82/src/exception.sh 2009-06-23 15:49:12.000000000 -0400 @@ -0,0 +1,12 @@ +function except() { +echo " @@ -70,11 +70,15 @@ diff --exclude-from=exclude -N -u -r nsa +" +} +for i in `grep "extern *int" ../include/selinux/selinux.h | awk '{ print $3 }' | cut -d '(' -f 1`; do except $i ; done -diff --exclude-from=exclude -N -u -r nsalibselinux/src/Makefile libselinux-2.0.83/src/Makefile ---- nsalibselinux/src/Makefile 2009-07-07 11:10:41.995958000 -0400 -+++ libselinux-2.0.83/src/Makefile 2009-07-07 12:22:39.322212000 -0400 -@@ -82,6 +82,9 @@ - $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -ldl -lpthread -L$(LIBDIR) -Wl,-soname,$(LIBSO),-z,defs,-z,relro +diff --exclude-from=exclude -N -u -r nsalibselinux/src/Makefile libselinux-2.0.82/src/Makefile +--- nsalibselinux/src/Makefile 2009-07-14 11:16:03.000000000 -0400 ++++ libselinux-2.0.82/src/Makefile 2009-06-23 15:50:58.000000000 -0400 +@@ -79,9 +79,12 @@ + $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -L. -lselinux -L$(LIBDIR) -Wl,-soname,$@ + + $(LIBSO): $(LOBJS) +- $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -ldl -L$(LIBDIR) -Wl,-soname,$(LIBSO),-z,defs,-z,relro ++ $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -ldl -lpthread -L$(LIBDIR) -Wl,-soname,$(LIBSO),-z,defs,-z,relro ln -sf $@ $(TARGET) +selinuxswig_exception.i: ../include/selinux/selinux.h @@ -103,9 +107,9 @@ diff --exclude-from=exclude -N -u -r nsa distclean: clean rm -f $(GENERATED) $(SWIGFILES) -diff --exclude-from=exclude -N -u -r nsalibselinux/src/matchpathcon.c libselinux-2.0.83/src/matchpathcon.c ---- nsalibselinux/src/matchpathcon.c 2008-08-28 09:34:24.000000000 -0400 -+++ libselinux-2.0.83/src/matchpathcon.c 2009-07-07 12:22:39.328209000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/matchpathcon.c libselinux-2.0.82/src/matchpathcon.c +--- nsalibselinux/src/matchpathcon.c 2009-03-06 14:41:45.000000000 -0500 ++++ libselinux-2.0.82/src/matchpathcon.c 2009-06-23 15:49:12.000000000 -0400 @@ -2,6 +2,7 @@ #include #include @@ -123,9 +127,9 @@ diff --exclude-from=exclude -N -u -r nsa va_end(ap); } -diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinux.py libselinux-2.0.83/src/selinux.py ---- nsalibselinux/src/selinux.py 2009-01-13 08:09:54.000000000 -0500 -+++ libselinux-2.0.83/src/selinux.py 2009-07-07 12:22:39.337212000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinux.py libselinux-2.0.82/src/selinux.py +--- nsalibselinux/src/selinux.py 2009-03-06 14:41:45.000000000 -0500 ++++ libselinux-2.0.82/src/selinux.py 2009-06-23 15:49:12.000000000 -0400 @@ -1,12 +1,26 @@ # This file was automatically generated by SWIG (http://www.swig.org). -# Version 1.3.35 @@ -2337,9 +2341,9 @@ diff --exclude-from=exclude -N -u -r nsa +selinux_lsetfilecon_default = _selinux.selinux_lsetfilecon_default -diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig.i libselinux-2.0.83/src/selinuxswig.i ---- nsalibselinux/src/selinuxswig.i 2009-07-07 11:10:42.024956000 -0400 -+++ libselinux-2.0.83/src/selinuxswig.i 2009-07-07 12:22:39.343210000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig.i libselinux-2.0.82/src/selinuxswig.i +--- nsalibselinux/src/selinuxswig.i 2009-03-12 08:48:48.000000000 -0400 ++++ libselinux-2.0.82/src/selinuxswig.i 2009-06-23 15:49:12.000000000 -0400 @@ -4,11 +4,14 @@ %module selinux @@ -2373,9 +2377,9 @@ diff --exclude-from=exclude -N -u -r nsa +%include "../include/selinux/get_default_type.h" +%include "../include/selinux/label.h" +%include "../include/selinux/selinux.h" -diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig_python.i libselinux-2.0.83/src/selinuxswig_python.i ---- nsalibselinux/src/selinuxswig_python.i 2009-01-13 08:09:54.000000000 -0500 -+++ libselinux-2.0.83/src/selinuxswig_python.i 2009-07-07 12:22:39.355211000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig_python.i libselinux-2.0.82/src/selinuxswig_python.i +--- nsalibselinux/src/selinuxswig_python.i 2009-03-06 14:41:45.000000000 -0500 ++++ libselinux-2.0.82/src/selinuxswig_python.i 2009-06-23 15:49:12.000000000 -0400 @@ -21,6 +21,15 @@ map(restorecon, [os.path.join(dirname, fname) for fname in fnames]), None) @@ -2398,9 +2402,9 @@ diff --exclude-from=exclude -N -u -r nsa +%include "selinuxswig_exception.i" %include "selinuxswig.i" -diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig_wrap.c libselinux-2.0.83/src/selinuxswig_wrap.c ---- nsalibselinux/src/selinuxswig_wrap.c 2009-01-13 08:09:54.000000000 -0500 -+++ libselinux-2.0.83/src/selinuxswig_wrap.c 2009-07-07 12:22:39.385216000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig_wrap.c libselinux-2.0.82/src/selinuxswig_wrap.c +--- nsalibselinux/src/selinuxswig_wrap.c 2009-03-06 14:41:45.000000000 -0500 ++++ libselinux-2.0.82/src/selinuxswig_wrap.c 2009-06-23 15:49:12.000000000 -0400 @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). @@ -16786,9 +16790,9 @@ diff --exclude-from=exclude -N -u -r nsa +#endif } -diff --exclude-from=exclude -N -u -r nsalibselinux/utils/matchpathcon.c libselinux-2.0.83/utils/matchpathcon.c ---- nsalibselinux/utils/matchpathcon.c 2009-07-07 11:10:42.033956000 -0400 -+++ libselinux-2.0.83/utils/matchpathcon.c 2009-07-07 12:22:39.395209000 -0400 +diff --exclude-from=exclude -N -u -r nsalibselinux/utils/matchpathcon.c libselinux-2.0.82/utils/matchpathcon.c +--- nsalibselinux/utils/matchpathcon.c 2009-05-18 13:53:14.000000000 -0400 ++++ libselinux-2.0.82/utils/matchpathcon.c 2009-06-23 15:49:12.000000000 -0400 @@ -22,9 +22,13 @@ char *buf; int rc = matchpathcon(path, mode, &buf); Index: libselinux.spec =================================================================== RCS file: /cvs/extras/rpms/libselinux/devel/libselinux.spec,v retrieving revision 1.373 retrieving revision 1.374 diff -u -p -r1.373 -r1.374 --- libselinux.spec 7 Jul 2009 16:26:11 -0000 1.373 +++ libselinux.spec 14 Jul 2009 15:29:55 -0000 1.374 @@ -4,7 +4,7 @@ Summary: SELinux library and simple utilities Name: libselinux -Version: 2.0.84 +Version: 2.0.85 Release: 1%{?dist} License: Public Domain Group: System Environment/Libraries @@ -165,6 +165,14 @@ exit 0 %{ruby_sitearch}/selinux.so %changelog +* Tue Jul 7 2009 Dan Walsh - 2.0.85-1 +- Update to upstream + * Reverted Tomas Mraz's fix for freeing thread local storage to avoid + pthread dependency. + * Removed fini_context_translations() altogether. + * Merged lazy init patch from Stephen Smalley based on original patch + by Steve Grubb. + * Tue Jul 7 2009 Dan Walsh - 2.0.84-1 - Update to upstream * Add per-service seuser support from Dan Walsh. Index: sources =================================================================== RCS file: /cvs/extras/rpms/libselinux/devel/sources,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- sources 7 Jul 2009 16:26:11 -0000 1.188 +++ sources 14 Jul 2009 15:29:55 -0000 1.189 @@ -1 +1 @@ -952674efe604477d00b787c262da17e2 libselinux-2.0.84.tgz +c014e9527a14fbd38c784b01124cee7d libselinux-2.0.85.tgz --- libselinux-2.0.77-nlfd.patch DELETED --- From rjones at fedoraproject.org Tue Jul 14 15:31:20 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 15:31:20 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.21, 1.22 libguestfs.spec, 1.40, 1.41 sources, 1.21, 1.22 Message-ID: <20090714153120.9C74F11C0099@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24897 Modified Files: .cvsignore libguestfs.spec sources Log Message: Newer upstream release 1.0.60. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 14 Jul 2009 14:28:55 -0000 1.21 +++ .cvsignore 14 Jul 2009 15:31:20 -0000 1.22 @@ -1 +1 @@ -libguestfs-1.0.59.tar.gz +libguestfs-1.0.60.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.40 +++ libguestfs.spec 14 Jul 2009 15:31:20 -0000 1.41 @@ -3,7 +3,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.59 +Version: 1.0.60 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -512,8 +512,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 -- New upstream release 1.0.59. +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 +- New upstream release 1.0.60. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 14 Jul 2009 14:28:55 -0000 1.21 +++ sources 14 Jul 2009 15:31:20 -0000 1.22 @@ -1 +1 @@ -2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz +978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz From rjones at fedoraproject.org Tue Jul 14 15:31:49 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 15:31:49 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.39, 1.40 libguestfs.spec, 1.73, 1.74 sources, 1.39, 1.40 Message-ID: <20090714153149.27FFD11C0099@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24882 Modified Files: .cvsignore libguestfs.spec sources Log Message: Newer upstream release 1.0.60. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 14 Jul 2009 14:28:55 -0000 1.39 +++ .cvsignore 14 Jul 2009 15:31:18 -0000 1.40 @@ -1 +1 @@ -libguestfs-1.0.59.tar.gz +libguestfs-1.0.60.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.73 +++ libguestfs.spec 14 Jul 2009 15:31:18 -0000 1.74 @@ -3,7 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.59 +Epoch: 1 +Version: 1.0.60 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -149,17 +150,15 @@ whether the virtual machine is fully vir para-virtualized (PV), what applications are installed and more. -%package -n virt-df2 +%package -n virt-df Summary: Display free space on virtual filesystems Group: Development/Tools License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: perl-Sys-Virt -Obsoletes: virt-df -Provides: virt-df -%description -n virt-df2 +%description -n virt-df "virt-df" is a command line tool to display free space on virtual machine filesystems. Unlike other tools, it doesn???t just display the amount of space allocated to a virtual machine, but can look inside @@ -455,7 +454,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/virt-inspector.1* -%files -n virt-df2 +%files -n virt-df %defattr(-,root,root,-) %{_bindir}/virt-df %{_mandir}/man1/virt-df.1* @@ -526,8 +525,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 -- New upstream release 1.0.59. +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 +- New upstream release 1.0.60. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 14 Jul 2009 14:28:55 -0000 1.39 +++ sources 14 Jul 2009 15:31:18 -0000 1.40 @@ -1 +1 @@ -2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz +978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz From rjones at fedoraproject.org Tue Jul 14 15:31:52 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Tue, 14 Jul 2009 15:31:52 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.27, 1.28 libguestfs.spec, 1.43, 1.44 sources, 1.27, 1.28 Message-ID: <20090714153152.DD2C211C0099@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24926 Modified Files: .cvsignore libguestfs.spec sources Log Message: Newer upstream release 1.0.60. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 14 Jul 2009 14:28:55 -0000 1.27 +++ .cvsignore 14 Jul 2009 15:31:22 -0000 1.28 @@ -1 +1 @@ -libguestfs-1.0.59.tar.gz +libguestfs-1.0.60.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- libguestfs.spec 14 Jul 2009 14:28:55 -0000 1.43 +++ libguestfs.spec 14 Jul 2009 15:31:22 -0000 1.44 @@ -3,7 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.59 +Epoch: 1 +Version: 1.0.60 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -151,17 +152,15 @@ whether the virtual machine is fully vir para-virtualized (PV), what applications are installed and more. -%package -n virt-df2 +%package -n virt-df Summary: Display free space on virtual filesystems Group: Development/Tools License: GPLv2+ Requires: %{name} = %{version}-%{release} Requires: perl-Sys-Virt -Obsoletes: virt-df -Provides: virt-df -%description -n virt-df2 +%description -n virt-df "virt-df" is a command line tool to display free space on virtual machine filesystems. Unlike other tools, it doesn???t just display the amount of space allocated to a virtual machine, but can look inside @@ -457,7 +456,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/virt-inspector.1* -%files -n virt-df2 +%files -n virt-df %defattr(-,root,root,-) %{_bindir}/virt-df %{_mandir}/man1/virt-df.1* @@ -528,8 +527,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 14 2009 Richard W.M. Jones - 1.0.59-1 -- New upstream release 1.0.59. +* Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 +- New upstream release 1.0.60. * Fri Jul 10 2009 Richard W.M. Jones - 1.0.58-2 - New upstream release 1.0.58. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 14 Jul 2009 14:28:55 -0000 1.27 +++ sources 14 Jul 2009 15:31:22 -0000 1.28 @@ -1 +1 @@ -2c30f1c984c56ad19684e590f6b82718 libguestfs-1.0.59.tar.gz +978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz From mso at fedoraproject.org Tue Jul 14 15:34:53 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Tue, 14 Jul 2009 15:34:53 +0000 (UTC) Subject: rpms/ruby-icon-artist/F-11 ruby-icon-artist-iconname.patch, NONE, 1.1 ruby-icon-artist.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714153453.4D44911C0099@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/ruby-icon-artist/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25709/F-11 Modified Files: .cvsignore sources Added Files: ruby-icon-artist-iconname.patch ruby-icon-artist.spec Log Message: Add the package to stable fedora releases. ruby-icon-artist-iconname.patch: --- NEW FILE ruby-icon-artist-iconname.patch --- diff -up icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname icon-artist-0.1.90/lib/icon-artist/icon.rb --- icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname 2009-02-04 16:19:02.000000000 +0100 +++ icon-artist-0.1.90/lib/icon-artist/icon.rb 2009-07-13 13:30:07.000000000 +0200 @@ -59,7 +59,7 @@ module IconArtist def Icon.check_document_metadata(svg, filename) # Check for icon name - element = svg.root.elements['//dc:title'] + element = svg.root.elements['//cc:Work/dc:title'] if element title = element.text if !title --- NEW FILE ruby-icon-artist.spec --- %{!?ruby_sitelib: %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']")} Name: ruby-icon-artist Version: 0.1.90 Release: 2%{?dist} Summary: Supporting libraries for icon artists Group: Development/Languages License: LGPLv2+ URL: https://fedorahosted.org/echo-icon-theme/ Source0: https://fedorahosted.org/releases/e/c/echo-icon-theme/icon-artist-%{version}.tar.bz2 Patch0: %{name}-iconname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: ruby Requires: ruby(abi) = 1.8 Requires: rubygem(git) Requires: inkscape Provides: ruby(icon-artist) = %{version} %description Supporting libraries for icon artist scripts. It contains support for generating new icons from templates, exporting PNGs and SVGs from one canvas SVG, creating new icon theme and managing icon theme buildsys. %prep %setup -q -n icon-artist-%{version} %patch0 -p1 -b .iconname %build export CFLAGS="$RPM_OPT_FLAGS" %install rm -rf %{buildroot} DESTDIR=%{buildroot} ./install.rb %check %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc doc/* %{ruby_sitelib}/* %{_datadir}/icon-artist %changelog * Mon Jul 13 2009 Martin Sourada - 0.1.90-2 - Backport fix for correct checking of icon name from git * Thu Feb 05 2009 Martin Sourada - 0.1.90-1 - Initial rpm packaging Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-icon-artist/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:01:54 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:34:53 -0000 1.2 @@ -0,0 +1 @@ +icon-artist-0.1.90.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-icon-artist/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:01:54 -0000 1.1 +++ sources 14 Jul 2009 15:34:53 -0000 1.2 @@ -0,0 +1 @@ +f5ebfea7ab6ecd4d97b1953f6cb53e97 icon-artist-0.1.90.tar.bz2 From mso at fedoraproject.org Tue Jul 14 15:35:23 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Tue, 14 Jul 2009 15:35:23 +0000 (UTC) Subject: rpms/ruby-icon-artist/F-10 ruby-icon-artist-iconname.patch, NONE, 1.1 ruby-icon-artist.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714153523.0777811C0099@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/ruby-icon-artist/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25709/F-10 Modified Files: .cvsignore sources Added Files: ruby-icon-artist-iconname.patch ruby-icon-artist.spec Log Message: Add the package to stable fedora releases. ruby-icon-artist-iconname.patch: --- NEW FILE ruby-icon-artist-iconname.patch --- diff -up icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname icon-artist-0.1.90/lib/icon-artist/icon.rb --- icon-artist-0.1.90/lib/icon-artist/icon.rb.iconname 2009-02-04 16:19:02.000000000 +0100 +++ icon-artist-0.1.90/lib/icon-artist/icon.rb 2009-07-13 13:30:07.000000000 +0200 @@ -59,7 +59,7 @@ module IconArtist def Icon.check_document_metadata(svg, filename) # Check for icon name - element = svg.root.elements['//dc:title'] + element = svg.root.elements['//cc:Work/dc:title'] if element title = element.text if !title --- NEW FILE ruby-icon-artist.spec --- %{!?ruby_sitelib: %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']")} Name: ruby-icon-artist Version: 0.1.90 Release: 2%{?dist} Summary: Supporting libraries for icon artists Group: Development/Languages License: LGPLv2+ URL: https://fedorahosted.org/echo-icon-theme/ Source0: https://fedorahosted.org/releases/e/c/echo-icon-theme/icon-artist-%{version}.tar.bz2 Patch0: %{name}-iconname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: ruby Requires: ruby(abi) = 1.8 Requires: rubygem(git) Requires: inkscape Provides: ruby(icon-artist) = %{version} %description Supporting libraries for icon artist scripts. It contains support for generating new icons from templates, exporting PNGs and SVGs from one canvas SVG, creating new icon theme and managing icon theme buildsys. %prep %setup -q -n icon-artist-%{version} %patch0 -p1 -b .iconname %build export CFLAGS="$RPM_OPT_FLAGS" %install rm -rf %{buildroot} DESTDIR=%{buildroot} ./install.rb %check %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc doc/* %{ruby_sitelib}/* %{_datadir}/icon-artist %changelog * Mon Jul 13 2009 Martin Sourada - 0.1.90-2 - Backport fix for correct checking of icon name from git * Thu Feb 05 2009 Martin Sourada - 0.1.90-1 - Initial rpm packaging Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ruby-icon-artist/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 17:01:54 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:34:52 -0000 1.2 @@ -0,0 +1 @@ +icon-artist-0.1.90.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ruby-icon-artist/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 12 Jul 2009 17:01:54 -0000 1.1 +++ sources 14 Jul 2009 15:34:52 -0000 1.2 @@ -0,0 +1 @@ +f5ebfea7ab6ecd4d97b1953f6cb53e97 icon-artist-0.1.90.tar.bz2 From jskala at fedoraproject.org Tue Jul 14 15:36:57 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 15:36:57 +0000 (UTC) Subject: rpms/netatalk/devel netatalk-2.0.4-db4_2-db4_3.patch, NONE, 1.1 netatalk-2.0.4-extern_ucreator.patch, NONE, 1.1 netatalk-2.0.4-open_call.patch, NONE, 1.1 netatalk.spec, 1.52, 1.53 netatalk-1.6.3-norc.patch, 1.1, NONE netatalk-2.0.2-db4_2-db4_3.patch, 1.2, NONE netatalk-2.0.2-extern_ucreator.patch, 1.2, NONE netatalk-2.0.3-chmod.patch, 1.2, NONE netatalk-2.0.3-db4_5.patch, 1.3, NONE netatalk-2.0.3-log_stderr.patch, 1.2, NONE netatalk-2.0.3-lsb.patch, 1.1, NONE netatalk-2.0.3-maxsrv.patch, 1.2, NONE netatalk-2.0.3-multiarch.patch, 1.2, NONE netatalk-2.0.3-open_call.patch, 1.2, NONE netatalk-2.0.3-papd_cmds.patch, 1.1, NONE Message-ID: <20090714153657.3685811C0099@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/netatalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26129 Modified Files: netatalk.spec Added Files: netatalk-2.0.4-db4_2-db4_3.patch netatalk-2.0.4-extern_ucreator.patch netatalk-2.0.4-open_call.patch Removed Files: netatalk-1.6.3-norc.patch netatalk-2.0.2-db4_2-db4_3.patch netatalk-2.0.2-extern_ucreator.patch netatalk-2.0.3-chmod.patch netatalk-2.0.3-db4_5.patch netatalk-2.0.3-log_stderr.patch netatalk-2.0.3-lsb.patch netatalk-2.0.3-maxsrv.patch netatalk-2.0.3-multiarch.patch netatalk-2.0.3-open_call.patch netatalk-2.0.3-papd_cmds.patch Log Message: * Tue Jul 14 2009 Jiri Skala - 4:2.0.4-1 - updated to latest upstream version netatalk-2.0.4-db4_2-db4_3.patch: --- NEW FILE netatalk-2.0.4-db4_2-db4_3.patch --- diff -up netatalk-2.0.4/bin/cnid/cnid_index.c.db4_2-db4_3 netatalk-2.0.4/bin/cnid/cnid_index.c --- netatalk-2.0.4/bin/cnid/cnid_index.c.db4_2-db4_3 2009-07-14 15:54:50.444609410 +0200 +++ netatalk-2.0.4/bin/cnid/cnid_index.c 2009-07-14 15:58:10.143829111 +0200 @@ -277,11 +277,11 @@ static int dbif_count(const int dbi, u_i #if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3) ret = db->stat(db, db_txn, &sp, 0); #else - ret = db->stat(db, &sp, 0); + ret = db->stat(db, (DB_TXN*)0L, &sp, 0); #endif if (ret) { - LOG(log_error, logtype_cnid, "error getting stat infotmation on database: %s", db_strerror(errno)); + LOG(log_error, logtype_cnid, "error getting stat information on database: %s", db_strerror(errno)); return -1; } diff -up netatalk-2.0.4/etc/cnid_dbd/dbif.c.db4_2-db4_3 netatalk-2.0.4/etc/cnid_dbd/dbif.c --- netatalk-2.0.4/etc/cnid_dbd/dbif.c.db4_2-db4_3 2009-07-14 15:55:16.428613311 +0200 +++ netatalk-2.0.4/etc/cnid_dbd/dbif.c 2009-07-14 15:57:17.038828997 +0200 @@ -516,11 +516,11 @@ int dbif_count(const int dbi, u_int32_t #if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3) ret = db->stat(db, db_txn, &sp, 0); #else - ret = db->stat(db, &sp, 0); + ret = db->stat(db, (DB_TXN*)0L, &sp, 0); #endif if (ret) { - LOG(log_error, logtype_cnid, "error getting stat infotmation on database: %s", db_strerror(errno)); + LOG(log_error, logtype_cnid, "error getting stat information on database: %s", db_strerror(errno)); return -1; } netatalk-2.0.4-extern_ucreator.patch: --- NEW FILE netatalk-2.0.4-extern_ucreator.patch --- diff -up netatalk-2.0.4/etc/afpd/desktop.c.extern_ucreator netatalk-2.0.4/etc/afpd/desktop.c --- netatalk-2.0.4/etc/afpd/desktop.c.extern_ucreator 2009-07-14 16:26:36.984610055 +0200 +++ netatalk-2.0.4/etc/afpd/desktop.c 2009-07-14 16:27:01.607580009 +0200 @@ -312,7 +312,7 @@ addicon_err: } static const u_char utag[] = { 0, 0, 0, 0 }; -static const u_char ucreator[] = { 0, 0, 0, 0 };/* { 'U', 'N', 'I', 'X' };*/ +u_char ucreator[] = { 0, 0, 0, 0 };/* { 'U', 'N', 'I', 'X' };*/ static const u_char utype[] = { 0, 0, 0, 0 };/* { 'T', 'E', 'X', 'T' };*/ static const short usize = 256; netatalk-2.0.4-open_call.patch: --- NEW FILE netatalk-2.0.4-open_call.patch --- diff -up netatalk-2.0.4/bin/cnid/cnid_index.c.open_call netatalk-2.0.4/bin/cnid/cnid_index.c --- netatalk-2.0.4/bin/cnid/cnid_index.c.open_call 2009-07-14 16:31:13.662612798 +0200 +++ netatalk-2.0.4/bin/cnid/cnid_index.c 2009-07-14 16:32:12.494829074 +0200 @@ -356,7 +356,7 @@ static int dbif_env_init(void) if (db_errlog != NULL) db_env->set_errfile(db_env, db_errlog); db_env->set_verbose(db_env, DB_VERB_RECOVERY, 1); - if ((ret = db_env->open(db_env, ".", DBOPTIONS | DB_PRIVATE | DB_RECOVER, 0))) { + if ((ret = (db_env->open)(db_env, ".", DBOPTIONS | DB_PRIVATE | DB_RECOVER, 0))) { LOG(log_error, logtype_cnid, "error opening DB environment: %s", db_strerror(ret)); db_env->close(db_env, 0); diff -up netatalk-2.0.4/etc/cnid_dbd/dbif.c.open_call netatalk-2.0.4/etc/cnid_dbd/dbif.c --- netatalk-2.0.4/etc/cnid_dbd/dbif.c.open_call 2009-07-14 16:27:46.905837395 +0200 +++ netatalk-2.0.4/etc/cnid_dbd/dbif.c 2009-07-14 16:33:31.712829253 +0200 @@ -77,9 +77,9 @@ static int db_compat_open(DB *db, char * int ret; #if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) - ret = db->open(db, db_txn, file, name, type, DB_CREATE, mode); + ret = (db->open)(db, db_txn, file, name, type, DB_CREATE, mode); #else - ret = db->open(db, file, name, type, DB_CREATE, mode); + ret = (db->open)(db, file, name, type, DB_CREATE, mode); #endif if (ret) { @@ -163,7 +163,7 @@ int dbif_env_init(struct db_param *dbp) if (db_errlog != NULL) db_env->set_errfile(db_env, db_errlog); db_env->set_verbose(db_env, DB_VERB_RECOVERY, 1); - if ((ret = db_env->open(db_env, ".", DBOPTIONS | DB_PRIVATE | DB_RECOVER, 0))) { + if ((ret = (db_env->open)(db_env, ".", DBOPTIONS | DB_PRIVATE | DB_RECOVER, 0))) { LOG(log_error, logtype_cnid, "error opening DB environment: %s", db_strerror(ret)); db_env->close(db_env, 0); @@ -197,7 +197,7 @@ int dbif_env_init(struct db_param *dbp) if (db_errlog != NULL) db_env->set_errfile(db_env, db_errlog); - if ((ret = db_env->open(db_env, ".", DBOPTIONS , 0))) { + if ((ret = (db_env->open)(db_env, ".", DBOPTIONS , 0))) { LOG(log_error, logtype_cnid, "error opening DB environment after recovery: %s", db_strerror(ret)); db_env->close(db_env, 0); diff -up netatalk-2.0.4/libatalk/cnid/cdb/cnid_cdb_open.c.open_call netatalk-2.0.4/libatalk/cnid/cdb/cnid_cdb_open.c --- netatalk-2.0.4/libatalk/cnid/cdb/cnid_cdb_open.c.open_call 2009-03-29 09:23:23.000000000 +0200 +++ netatalk-2.0.4/libatalk/cnid/cdb/cnid_cdb_open.c 2009-07-14 16:27:46.924861205 +0200 @@ -131,9 +131,9 @@ static int my_associate (DB *p, DB *s, static int my_open(DB * p, const char *f, const char *d, DBTYPE t, u_int32_t flags, int mode) { #if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) - return p->open(p, NULL, f, d, t, flags, mode); + return (p->open)(p, NULL, f, d, t, flags, mode); #else - return p->open(p, f, d, t, flags, mode); + return (p->open)(p, f, d, t, flags, mode); #endif } @@ -275,7 +275,7 @@ struct _cnid_db *cnid_cdb_open(const cha } /* Open the database environment. */ - if ((rc = db->dbenv->open(db->dbenv, path, DBOPTIONS, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, DBOPTIONS, 0666 & ~mask)) != 0) { LOG(log_error, logtype_default, "cnid_open: dbenv->open (rw) of %s failed: %s", path, db_strerror(rc)); /* FIXME: This should probably go. Even if it worked, any use for a read-only DB? Didier? */ if (rc == DB_RUNRECOVERY) { @@ -288,10 +288,10 @@ struct _cnid_db *cnid_cdb_open(const cha /* We can't get a full transactional environment, so multi-access * is out of the question. Let's assume a read-only environment, * and try to at least get a shared memory pool. */ - if ((rc = db->dbenv->open(db->dbenv, path, DB_INIT_MPOOL, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, DB_INIT_MPOOL, 0666 & ~mask)) != 0) { /* Nope, not a MPOOL, either. Last-ditch effort: we'll try to * open the environment with no flags. */ - if ((rc = db->dbenv->open(db->dbenv, path, 0, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, 0, 0666 & ~mask)) != 0) { LOG(log_error, logtype_default, "cnid_open: dbenv->open of %s failed: %s", path, db_strerror(rc)); goto fail_lock; } diff -up netatalk-2.0.4/libatalk/cnid/db3/cnid_db3_open.c.open_call netatalk-2.0.4/libatalk/cnid/db3/cnid_db3_open.c --- netatalk-2.0.4/libatalk/cnid/db3/cnid_db3_open.c.open_call 2009-03-29 09:23:24.000000000 +0200 +++ netatalk-2.0.4/libatalk/cnid/db3/cnid_db3_open.c 2009-07-14 16:27:46.928827444 +0200 @@ -133,9 +133,9 @@ static int my_yield(void) static int my_open(DB * p, const char *f, const char *d, DBTYPE t, u_int32_t flags, int mode) { #if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) - return p->open(p, NULL, f, d, t, flags | DB_AUTO_COMMIT, mode); + return (p->open)(p, NULL, f, d, t, flags | DB_AUTO_COMMIT, mode); #else - return p->open(p, f, d, t, flags, mode); + return (p->open)(p, f, d, t, flags, mode); #endif } @@ -350,7 +350,7 @@ struct _cnid_db *cnid_db3_open(const cha #endif /* DB_VERSION_MINOR > 1 */ /* Open the database environment. */ - if ((rc = db->dbenv->open(db->dbenv, path, DBOPTIONS, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, DBOPTIONS, 0666 & ~mask)) != 0) { if (rc == DB_RUNRECOVERY) { /* This is the mother of all errors. We _must_ fail here. */ LOG(log_error, logtype_default, @@ -361,10 +361,10 @@ struct _cnid_db *cnid_db3_open(const cha /* We can't get a full transactional environment, so multi-access * is out of the question. Let's assume a read-only environment, * and try to at least get a shared memory pool. */ - if ((rc = db->dbenv->open(db->dbenv, path, DB_INIT_MPOOL, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, DB_INIT_MPOOL, 0666 & ~mask)) != 0) { /* Nope, not a MPOOL, either. Last-ditch effort: we'll try to * open the environment with no flags. */ - if ((rc = db->dbenv->open(db->dbenv, path, 0, 0666 & ~mask)) != 0) { + if ((rc = (db->dbenv->open)(db->dbenv, path, 0, 0666 & ~mask)) != 0) { LOG(log_error, logtype_default, "cnid_open: dbenv->open of %s failed: %s", path, db_strerror(rc)); goto fail_lock; } Index: netatalk.spec =================================================================== RCS file: /cvs/extras/rpms/netatalk/devel/netatalk.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- netatalk.spec 26 Feb 2009 04:58:22 -0000 1.52 +++ netatalk.spec 14 Jul 2009 15:36:57 -0000 1.53 @@ -1,24 +1,18 @@ Summary: AppleTalk networking programs Name: netatalk -Version: 2.0.3 -Release: 27%{?dist} +Version: 2.0.4 +Release: 1%{?dist} Epoch: 4 License: GPLv2+ Group: System Environment/Daemons Source0: http://download.sourceforge.net/netatalk/netatalk-%{version}.tar.bz2 Source1: atalk.init Source2: netatalk.pam-system-auth -Patch0: netatalk-2.0.3-db4_5.patch -Patch1: netatalk-2.0.2-db4_2-db4_3.patch +Patch1: netatalk-2.0.4-db4_2-db4_3.patch Patch2: netatalk-2.0.2-uams_no_pie.patch -Patch3: netatalk-2.0.2-extern_ucreator.patch +Patch3: netatalk-2.0.4-extern_ucreator.patch Patch4: netatalk-2.0.3-nodefault.patch -Patch5: netatalk-2.0.3-open_call.patch -Patch6: netatalk-2.0.3-chmod.patch -Patch7: netatalk-2.0.3-maxsrv.patch -Patch8: netatalk-2.0.3-log_stderr.patch -Patch9: netatalk-2.0.3-multiarch.patch -Patch10: netatalk-2.0.3-papd_cmds.patch +Patch5: netatalk-2.0.4-open_call.patch Url: http://netatalk.sourceforge.net/ Requires: pam Requires(post): /sbin/chkconfig /sbin/ldconfig @@ -32,16 +26,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version This package enables Linux to talk to Macintosh computers via the AppleTalk networking protocol. It includes a daemon to allow Linux to act as a file server over EtherTalk or IP for Mac's. -The systems without coreutils 7.0 and later require netatalk-timeout package. - -%package timeout -Summary: Timeout utility for the systems without coreutils -Group: System Environment/Daemons -Requires: %{name} = %{epoch}:%{version}-%{release} -Conflicts: coreutils >= 7.0 - -%description timeout -The package contains the timeout utility that was a part of netatalk earlier. The coreutils 7.0 and later contains this utility too therefore the timeout is separated to sub-package for usage on the systems without coreutils. %package devel Summary: Headers for Appletalk development @@ -53,17 +37,11 @@ programs. %prep %setup -q -%patch0 -p1 -b .db4_5 %patch1 -p1 -b .db4_2-db4_3 %patch2 -p1 -b .uams_no_pie %patch3 -p1 -b .extern_ucreator %patch4 -p1 %patch5 -p1 -b .open_call -%patch6 -p1 -b .chmod -%patch7 -p1 -b .maxsrv -%patch8 -p1 -b .log_stderr -%patch9 -p1 -b .multiarch -%patch10 -p1 -b .papd_cmds ln -s ./NEWS ChangeLog @@ -186,19 +164,13 @@ fi %{_sbindir}/* %{_bindir}/* %exclude %{_bindir}/netatalk-config -%exclude %{_bindir}/timeout %{_mandir}/man*/* %exclude %{_mandir}/man*/netatalk-config* -%exclude %{_mandir}/man1/timeout.1.gz %{_datadir}/netatalk %dir %{_libdir}/atalk %{_libdir}/atalk/*.so %{_libexecdir}/* -%files timeout -%{_bindir}/timeout -%{_mandir}/man1/timeout.1.gz - %files devel %defattr(-,root,root) %dir %{_includedir}/atalk @@ -210,6 +182,9 @@ fi %{_mandir}/man*/netatalk-config.1* %changelog +* Tue Jul 14 2009 Jiri Skala - 4:2.0.4-1 +- updated to latest upstream version + * Wed Feb 25 2009 Fedora Release Engineering - 4:2.0.3-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- netatalk-1.6.3-norc.patch DELETED --- --- netatalk-2.0.2-db4_2-db4_3.patch DELETED --- --- netatalk-2.0.2-extern_ucreator.patch DELETED --- --- netatalk-2.0.3-chmod.patch DELETED --- --- netatalk-2.0.3-db4_5.patch DELETED --- --- netatalk-2.0.3-log_stderr.patch DELETED --- --- netatalk-2.0.3-lsb.patch DELETED --- --- netatalk-2.0.3-maxsrv.patch DELETED --- --- netatalk-2.0.3-multiarch.patch DELETED --- --- netatalk-2.0.3-open_call.patch DELETED --- --- netatalk-2.0.3-papd_cmds.patch DELETED --- From icon at fedoraproject.org Tue Jul 14 15:37:25 2009 From: icon at fedoraproject.org (Konstantin Ryabitsev) Date: Tue, 14 Jul 2009 15:37:25 +0000 (UTC) Subject: rpms/pathfinder/devel import.log, NONE, 1.1 pathfinder-1.0.0-gcc44.patch, NONE, 1.1 pathfinder-1.0.0-wvargs.patch, NONE, 1.1 pathfinder.spec, NONE, 1.1 pathfinderd.ini, NONE, 1.1 pathfinderd.init, NONE, 1.1 wvstreams.supp, NONE, 1.1 wvtestrunner.pl, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090714153725.69DDA11C0099@cvs1.fedora.phx.redhat.com> Author: icon Update of /cvs/extras/rpms/pathfinder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26208/devel Modified Files: .cvsignore sources Added Files: import.log pathfinder-1.0.0-gcc44.patch pathfinder-1.0.0-wvargs.patch pathfinder.spec pathfinderd.ini pathfinderd.init wvstreams.supp wvtestrunner.pl Log Message: Initial import --- NEW FILE import.log --- pathfinder-1_0_0-1_fc11:HEAD:pathfinder-1.0.0-1.fc11.src.rpm:1247585799 pathfinder-1.0.0-gcc44.patch: --- NEW FILE pathfinder-1.0.0-gcc44.patch --- diff -ur pathfinder-1.0.0.orig/pathfinder.h pathfinder-1.0.0/pathfinder.h --- pathfinder-1.0.0.orig/pathfinder.h 2008-10-17 12:25:59.000000000 -0400 +++ pathfinder-1.0.0/pathfinder.h 2009-06-28 10:31:07.977476739 -0400 @@ -18,6 +18,8 @@ #include #include +#include + #include "downloader.h" #include "revocationfinder.h" #include "wvcrlcache.h" diff -ur pathfinder-1.0.0.orig/x509path/wvx509store.h pathfinder-1.0.0/x509path/wvx509store.h --- pathfinder-1.0.0.orig/x509path/wvx509store.h 2008-10-10 13:11:12.000000000 -0400 +++ pathfinder-1.0.0/x509path/wvx509store.h 2009-06-28 10:32:14.398477536 -0400 @@ -16,6 +16,7 @@ #include #include #include +#include typedef std::list< boost::shared_ptr > WvX509List; pathfinder-1.0.0-wvargs.patch: --- NEW FILE pathfinder-1.0.0-wvargs.patch --- diff -ur pathfinder-1.0.0.orig/pathfinderd.cc pathfinder-1.0.0/pathfinderd.cc --- pathfinder-1.0.0.orig/pathfinderd.cc 2008-12-17 12:29:53.000000000 -0500 +++ pathfinder-1.0.0/pathfinderd.cc 2009-06-28 10:41:11.750477319 -0400 @@ -47,7 +47,7 @@ "%s)", DEFAULT_DBUS_MONIKER), "MONIKER", dbusmoniker); #ifdef OPENSSL_FIPS - args.set_bool_option('f', "fips", WvString("Enable FIPS mode crypto " + args.add_set_bool_option('f', "fips", WvString("Enable FIPS mode crypto " "(default: OFF)"), fips_mode); #endif } --- NEW FILE pathfinder.spec --- %define daemon_user pathfinderd Name: pathfinder Version: 1.0.0 Release: 1%{?dist} Summary: X.509 Path Discovery and Validation Group: Applications/Internet License: LGPLv2+ URL: http://code.google.com/p/pathfinder-pki/ Source0: http://pathfinder-pki.googlecode.com/files/pathfinder-%{version}-Source.tar.gz Source1: pathfinderd.init Source2: pathfinderd.ini Source3: wvtestrunner.pl Source4: wvstreams.supp Patch0: pathfinder-1.0.0-gcc44.patch Patch1: pathfinder-1.0.0-wvargs.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake, libwvstreams-devel >= 4.6-3, boost-devel, valgrind BuildRequires: openssl-devel, nss-devel, dbus-devel %description Pathfinder is designed to provide a mechanism for any program to perform RFC3280-compliant path validation of X.509 certificates, even when some of the intermediate certificates are not present on the local machine. It will automatically download any such certificates (and their CRLs) from the Internet as needed using the AIA and CRL distribution point extensions of the certificate it is processing. %package -n pathfinderd Summary: X.509 Path Discovery and Validation Server Group: System Environment/Daemons Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service %description -n pathfinderd This package includes the server daemon for the pathfinder. %package devel Summary: Development libraries for Pathfinder Group: Development/Libraries Requires: libwvstreams-devel >= 4.6-3, boost-devel %description devel This package includes development files for pathfinder. %package -n libpathfinder-openssl Summary: Pathfinder libraries based on OpenSSL Group: System Environment/Libraries %description -n libpathfinder-openssl This package includes the libraries linking to OpenSSL %package -n libpathfinder-openssl-devel Summary: Pathfinder development libraries based on OpenSSL Group: Development/Libraries Requires: pathfinder-devel, pkgconfig, openssl-devel Requires: libpathfinder-openssl = %{version} %description -n libpathfinder-openssl-devel This package includes the development libraries linking to OpenSSL %package -n libpathfinder-nss Summary: Pathfinder libraries based on NSS Group: System Environment/Libraries %description -n libpathfinder-nss This package includes the libraries linking to NSS. %package -n libpathfinder-nss-devel Summary: Pathfinder development libraries based on NSS Group: Development/Libraries Requires: pathfinder-devel, pkgconfig, nss-devel Requires: libpathfinder-nss = %{version} %description -n libpathfinder-nss-devel This package includes the development libraries linking to NSS. %prep %setup -q %patch0 -p1 -b .gcc44 %patch1 -p1 -b .wvargs %build %cmake . make VERBOSE=1 %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # Remove docs -- we repackage them later rm -rf $RPM_BUILD_ROOT%{_docdir} # Remove static libs rm -rf $RPM_BUILD_ROOT%{_libdir}/*.a # Create /etc/pki/pathfinderd/trusted-certs mkdir -p -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/pki/pathfinderd/trusted-certs # Install init file mkdir -p -m 0755 $RPM_BUILD_ROOT%{_initrddir} install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/pathfinderd # Install config file install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/ # Create an empty /etc/sysconfig/pathfinderd mkdir -p -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig touch -m 0644 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/pathfinderd echo "RUNUSER=\"%{daemon_user}\"" \ > $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/pathfinderd echo "RUNFLAGS=\"-c ini:%{_sysconfdir}/pathfinderd.ini -d\"" \ >> $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/pathfinderd mkdir -p -m 0755 $RPM_BUILD_ROOT%{_localstatedir}/run/pathfinderd %check # tests are failing on ppc %ifnarch ppc ppc64 # test suite depends on external files from wvstreams # we bundle them with this package install -m 0755 %{SOURCE3} . install -m 0644 %{SOURCE4} . export WVSTREAMS_SRC="`pwd`" make test %endif %clean rm -rf $RPM_BUILD_ROOT %pre -n pathfinderd getent group %{daemon_user} >/dev/null || groupadd -r %{daemon_user} getent passwd %{daemon_user} >/dev/null || \ useradd -r -g %{daemon_user} -d %{_localstatedir}/run/pathfinderd \ -s /sbin/nologin -c "Pathfinder daemon user" %{daemon_user} exit 0 %post -n pathfinderd /sbin/chkconfig --add pathfinderd || : exit 0 %preun -n pathfinderd if [ $1 = 0 ]; then /sbin/service pathfinderd stop >/dev/null 2>&1 || : /sbin/chkconfig --del pathfinderd || : fi exit 0 %post -n libpathfinder-openssl -p /sbin/ldconfig %postun -n libpathfinder-openssl -p /sbin/ldconfig %post -n libpathfinder-nss -p /sbin/ldconfig %postun -n libpathfinder-nss -p /sbin/ldconfig %files -n pathfinderd %defattr(-,root,root,-) %doc LICENSE AUTHORS README %config %dir %{_sysconfdir}/pki/pathfinderd %config(noreplace) %{_sysconfdir}/pathfinderd.ini %config(noreplace) %{_sysconfdir}/sysconfig/pathfinderd %config(noreplace) %{_sysconfdir}/dbus-1/system.d/pathfinderd.conf %{_initrddir}/pathfinderd %{_sbindir}/pathfinderd %{_bindir}/pathclient %{_bindir}/pathverify %{_mandir}/man3/pathclient.3* %{_mandir}/man3/pathverify.3* %{_mandir}/man8/pathfinderd.8* %dir %attr(-,%{daemon_user},%{daemon_user}) %{_localstatedir}/run/pathfinderd %files devel %defattr(-,root,root,-) %doc LICENSE %dir %{_includedir}/pathfinder-1 %{_includedir}/pathfinder-1/libpathfinder.h %files -n libpathfinder-openssl %defattr(-,root,root,-) %doc LICENSE %{_libdir}/libpathfinder-openssl-1.so.1* %files -n libpathfinder-openssl-devel %defattr(-,root,root,-) %doc LICENSE %{_libdir}/libpathfinder-openssl-1.so %{_libdir}/pkgconfig/pathfinder-openssl.pc %{_includedir}/pathfinder-1/libpathfinder-openssl.h %files -n libpathfinder-nss %defattr(-,root,root,-) %doc LICENSE %{_libdir}/libpathfinder-nss-1.so.1* %files -n libpathfinder-nss-devel %defattr(-,root,root,-) %doc LICENSE %{_libdir}/libpathfinder-nss-1.so %{_libdir}/pkgconfig/pathfinder-nss.pc %{_includedir}/pathfinder-1/libpathfinder-nss.h %changelog * Tue Jul 14 2009 Konstantin Ryabitsev - 1.0.0-1 - Import into fedora cvs. * Sat Jul 11 2009 Konstantin Ryabitsev - 1.0.0-0.3 - Do not run checks on ppc platforms (failing, upstream http://code.google.com/p/pathfinder-pki/issues/detail?id=21) * Sun Jun 28 2009 Konstantin Ryabitsev - 1.0.0-0.2 - Upstream 1.0.0 - Patch to work with gcc-4.4 * Fri Jul 25 2008 Konstantin Ryabitsev - 0.2.6-0.2 - Move trusted-certs dir into /etc/pki/pathfinder/trusted-certs * Thu Jul 24 2008 Konstantin Ryabitsev - 0.2.6-0.1 - Initial packaging. --- NEW FILE pathfinderd.ini --- [Trusted directories] Extra certs = /etc/pki/pathfinderd/trusted-certs --- NEW FILE pathfinderd.init --- #!/bin/sh # # pathfinderd X.509 Path Discovery and Validation Server # # chkconfig: - 80 30 # description: Pathfinder is designed to provide a mechanism for any program \ # to perform RFC3280-compliant path validation of X.509 \ # certificates, even when some of the intermediate certificates \ # are not present on the local machine. It will automatically \ # download any such certificates (and their CRLs) from the \ # Internet as needed using the AIA and CRL distribution point \ # extensions of the certificate it is processing. ### BEGIN INIT INFO # Provides: pathfinderd # Required-Start: $network $named # Required-Stop: $network $named # Should-Start: # Should-Stop: 0 1 2 3 4 5 6 # Default-Start: # Default-Stop: # Short-Description: start|stop|restart|condrestart pathfinderd # Description: Controls the X.509 certificate validation server ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec="/usr/sbin/pathfinderd" prog="pathfinderd" [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 echo -n $"Starting $prog: " runuser -l -s /bin/sh $RUNUSER -c "$exec $RUNFLAGS" retval=$? [ $retval -eq 0 ] && success && touch $lockfile echo return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE wvstreams.supp --- # valgrind suppressions file for known and unfixable errors caused by # wvstreams' interactions with other libraries. { zlib_deflate_error Memcheck:Cond fun:_tr_flush_block obj:/usr/lib/libz.so* fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_deflate_error_2 Memcheck:Cond obj:/usr/lib/libz.so* fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_deflate_error_3 Memcheck:Cond fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_deflate_error_4 Memcheck:Value4 obj:/usr/lib/libz.so* fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_deflate_error_5 Memcheck:Value4 obj:/usr/lib/libz.so* obj:/usr/lib/libz.so* obj:/usr/lib/libz.so* fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_deflate_error_6 Memcheck:Value4 obj:/usr/lib/libz.so* obj:/usr/lib/libz.so* obj:/usr/lib/libz.so* fun:deflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_inflate_error Memcheck:Value4 obj:/usr/lib/libz.so* fun:inflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_inflate_error_2 Memcheck:Cond obj:/usr/lib/libz.so* fun:inflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { zlib_inflate_error_3 Memcheck:Cond fun:inflate fun:_ZN13WvGzipEncoder7processER9WvBufBaseIhEbb } { stupid_libdl_error Memcheck:Cond fun:_dl_relocate_object fun:dl_open_worker fun:_dl_catch_error fun:__GI__dl_open } { stupid_libdl_error_2 Memcheck:Cond fun:_dl_relocate_object obj:/lib/libc-2.3.*.so fun:_dl_catch_error fun:_dl_open } { stupid_ld_error Memcheck:Cond obj:/lib/ld-2.3.*.so } { stupid_ld_error_2 Memcheck:Cond obj:/lib/ld-2.5*.so } { stupid_ld_error_3 Memcheck:Addr4 obj:/lib/ld-2.5*.so } { stupid_ld_error_4 Memcheck:Cond obj:/lib/ld-2.6*.so } { stupid_ld_error_5 Memcheck:Addr4 obj:/lib/ld-2.6*.so } { stupid_ld_error_6 Memcheck:Cond obj:/lib/ld-2.7*.so } { stupid_ld_error_7 Memcheck:Addr4 obj:/lib/ld-2.7*.so } { stupid_ecard_stuff Memcheck:Leak fun:malloc obj:/usr/lib/evolution/1.4/libicalvcal-evolution.so.0.0.0 fun:lookupStr fun:lookupProp fun:addGroup obj:/usr/lib/evolution/1.4/libicalvcal-evolution.so.0.0.0 fun:mime_parse obj:/usr/lib/evolution/1.4/libicalvcal-evolution.so.0.0.0 fun:e_card_new_with_default_charset fun:e_card_new } { stupid_elist_stuff Memcheck:Leak fun:calloc fun:g_malloc0 fun:g_type_create_instance obj:/usr/lib/libgobject-2.0.* fun:g_object_newv fun:g_object_new_valist fun:e_list_new } { stupid_libc_stuff Memcheck:Leak fun:malloc fun:my_malloc fun:get_or_allocate_specifics_ptr fun:pthread_key_create obj:/lib/libdl-2.3.*.so fun:pthread_once obj:/lib/libdl-2.3.*.so fun:dlvsym fun:__errno_location fun:_IOvfprintf } { stupid_zlib_stuff Memcheck:Cond obj:/usr/lib/libz.so* obj:/usr/lib/libz.so* fun:deflate } { sigaction_bites_my_nuts Memcheck:Param sigaction(act) fun:__libc_sigaction } { more_fun_libcrypto_junk Memcheck:Value4 fun:BF_encrypt } { more_fun_libcrypto_junk_2 Memcheck:Value4 fun:AES_encrypt } { more_fun_licrypto_junk_3 Memcheck:Addr4 fun:AES_cbc_encrypt } { more_fun_licrypto_junk_4 Memcheck:Value4 fun:_x86_AES_encrypt } { WvInterface has a static WvInterfaceDict Memcheck:Leak fun:__builtin_vec_new fun:__t11WvHashTable4Z11WvInterfaceZ8WvStringZt27WvInterfaceDictBaseAccessor2Z11WvInterfaceZ8WvStringz1Z8OpEqCompUi fun:__static_initialization_and_destruction_0 fun:_GLOBAL_.I._15WvInterfaceDict.links } { statfs_has_issues Memcheck:Param statfs64(buf) fun:statfs64 } { popt_is_leaky Memcheck:Leak fun:realloc fun:expandNextArg fun:poptGetNextOpt } { getgrnam_is_leaky Memcheck:Leak fun:malloc obj:/lib/tls/i686/cmov/libc-2.6.1.so fun:__nss_database_lookup obj:* obj:* fun:getgrnam_r fun:getgrnam } { WvHashTableBase_has_issues Memcheck:Cond fun:_ZN15WvHashTableBaseC2Ej } { WvHashTable_confuses_valgrind Memcheck:Leak fun:_Znaj fun:_ZN11WvHashTable* } { UniConfKey_has_a_static_element Memcheck:Leak fun:_Znaj fun:_ZN10UniConfKey13SegmentVectorC1Ei fun:_ZN10UniConfKey5StoreC1EiiRK12WvFastString fun:_Z41__static_initialization_and_destruction_0ii } { libdl_invalid_read Memcheck:Addr4 obj:/lib/ld-2.3.6.so } --- NEW FILE wvtestrunner.pl --- #!/usr/bin/perl -w # # WvTest: # Copyright (C)2007-2009 Versabanq Innovations Inc. and contributors. # Licensed under the GNU Library General Public License, version 2. # See the included file named LICENSE for license information. # use strict; use Time::HiRes qw(time); # always flush $| = 1; if (@ARGV < 1) { print STDERR "Usage: $0 \n"; exit 127; } print STDERR "Testing \"all\" in @ARGV:\n"; my $pid = open(my $fh, "-|"); if (!$pid) { # child setpgrp(); open STDERR, '>&STDOUT' or die("Can't dup stdout: $!\n"); exec(@ARGV); exit 126; # just in case } my $istty = -t STDOUT; my @log = (); my ($gpasses, $gfails) = (0,0); sub bigkill($) { my $pid = shift; if (@log) { print "\n" . join("\n", @log) . "\n"; } print STDERR "\n! Killed by signal FAILED\n"; ($pid > 0) || die("pid is '$pid'?!\n"); local $SIG{CHLD} = sub { }; # this will wake us from sleep() faster kill 15, $pid; sleep(2); if ($pid > 1) { kill 9, -$pid; } kill 9, $pid; exit(125); } # parent local $SIG{INT} = sub { bigkill($pid); }; local $SIG{TERM} = sub { bigkill($pid); }; local $SIG{ALRM} = sub { print STDERR "Alarm timed out! No test results for too long.\n"; bigkill($pid); }; sub colourize($) { my $result = shift; my $pass = ($result eq "ok"); if ($istty) { my $colour = $pass ? "\e[32;1m" : "\e[31;1m"; return "$colour$result\e[0m"; } else { return $result; } } sub mstime($$$) { my ($floatsec, $warntime, $badtime) = @_; my $ms = int($floatsec * 1000); my $str = sprintf("%d.%03ds", $ms/1000, $ms % 1000); if ($istty && $ms > $badtime) { return "\e[31;1m$str\e[0m"; } elsif ($istty && $ms > $warntime) { return "\e[33;1m$str\e[0m"; } else { return "$str"; } } sub resultline($$) { my ($name, $result) = @_; return sprintf("! %-65s %s", $name, colourize($result)); } my $allstart = time(); my ($start, $stop); sub endsect() { $stop = time(); if ($start) { printf " %s %s\n", mstime($stop - $start, 500, 1000), colourize("ok"); } } while (<$fh>) { chomp; s/\r//g; if (/^\s*Testing "(.*)" in (.*):\s*$/) { alarm(120); my ($sect, $file) = ($1, $2); endsect(); printf("! %s %s: ", $file, $sect); @log = (); $start = $stop; } elsif (/^!\s*(.*?)\s+(\S+)\s*$/) { alarm(120); my ($name, $result) = ($1, $2); my $pass = ($result eq "ok"); if (!$start) { printf("\n! Startup: "); $start = time(); } push @log, resultline($name, $result); if (!$pass) { $gfails++; if (@log) { print "\n" . join("\n", @log) . "\n"; @log = (); } } else { $gpasses++; print "."; } } else { push @log, $_; } } endsect(); my $newpid = waitpid($pid, 0); if ($newpid != $pid) { die("waitpid returned '$newpid', expected '$pid'\n"); } my $code = $?; my $ret = ($code >> 8); # return death-from-signal exits as >128. This is what bash does if you ran # the program directly. if ($code && !$ret) { $ret = $code | 128; } if ($ret && @log) { print "\n" . join("\n", @log) . "\n"; } if ($code != 0) { print resultline("Program returned non-zero exit code ($ret)", "FAILED"); } my $gtotal = $gpasses+$gfails; printf("\nWvTest: %d test%s, %d failure%s, total time %s.\n", $gtotal, $gtotal==1 ? "" : "s", $gfails, $gfails==1 ? "" : "s", mstime(time() - $allstart, 2000, 5000)); print STDERR "\nWvTest result code: $ret\n"; exit( $ret ? $ret : ($gfails ? 125 : 0) ); Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pathfinder/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:28:20 -0000 1.1 +++ .cvsignore 14 Jul 2009 15:37:24 -0000 1.2 @@ -0,0 +1 @@ +pathfinder-1.0.0-Source.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/pathfinder/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:28:21 -0000 1.1 +++ sources 14 Jul 2009 15:37:24 -0000 1.2 @@ -0,0 +1 @@ +ba75f8482a96d4ce8ffd00cffd147d62 pathfinder-1.0.0-Source.tar.gz From jskala at fedoraproject.org Tue Jul 14 15:38:28 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Tue, 14 Jul 2009 15:38:28 +0000 (UTC) Subject: rpms/netatalk/devel .cvsignore,1.7,1.8 sources,1.7,1.8 Message-ID: <20090714153828.88A3D11C0099@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/netatalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26467 Modified Files: .cvsignore sources Log Message: * Tue Jul 14 2009 Jiri Skala - 4:2.0.4-1 - updated to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/netatalk/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Jun 2005 21:08:02 -0000 1.7 +++ .cvsignore 14 Jul 2009 15:37:58 -0000 1.8 @@ -1,3 +1 @@ -netatalk-1.6.4.tar.bz2 -netatalk-2.0.2.tar.bz2 -netatalk-2.0.3.tar.bz2 +netatalk-2.0.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/netatalk/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Jun 2005 21:08:02 -0000 1.7 +++ sources 14 Jul 2009 15:37:58 -0000 1.8 @@ -1 +1 @@ -28092763085783805dc2f00aa2127a3e netatalk-2.0.3.tar.bz2 +6f2f40b51ab9268836ef89a7dffaccb0 netatalk-2.0.4.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 14 15:39:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 15:39:20 +0000 Subject: [pkgdb] R-mvtnorm had acl change status Message-ID: <20090714153920.9B01510F8A6@bastion2.fedora.phx.redhat.com> orion has set the commit acl on R-mvtnorm (Fedora devel) to Approved for denisarnaud To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-mvtnorm From pkgdb at fedoraproject.org Tue Jul 14 15:39:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 15:39:25 +0000 Subject: [pkgdb] R-mvtnorm had acl change status Message-ID: <20090714153925.53AE910F8A9@bastion2.fedora.phx.redhat.com> orion has set the commit acl on R-mvtnorm (Fedora EPEL 5) to Approved for denisarnaud To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/R-mvtnorm From drago01 at fedoraproject.org Tue Jul 14 15:12:11 2009 From: drago01 at fedoraproject.org (drago01) Date: Tue, 14 Jul 2009 15:12:11 +0000 (UTC) Subject: rpms/control-center/devel control-center.spec, 1.453, 1.454 default-applications.patch, 1.3, 1.4 Message-ID: <20090714151211.B0AEC11C0497@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20929 Modified Files: control-center.spec default-applications.patch Log Message: Reenable firefox options in the default applications capplet Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.453 retrieving revision 1.454 diff -u -p -r1.453 -r1.454 --- control-center.spec 9 Jul 2009 15:43:14 -0000 1.453 +++ control-center.spec 14 Jul 2009 15:11:39 -0000 1.454 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.27.3 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -365,6 +365,9 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog +* Tue Jul 14 2009 Adel Gadllah - 2.27.3-3 +- Reenable firefox options in the default applications capplet + (RH #509565) * Thu Jul 9 2009 Matthias Clasen - 2.27.3-2 - Improve theme rendering in the appearance capplet default-applications.patch: Index: default-applications.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/default-applications.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- default-applications.patch 26 Feb 2008 17:25:42 -0000 1.3 +++ default-applications.patch 14 Jul 2009 15:11:40 -0000 1.4 @@ -1,7 +1,7 @@ -diff -up gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in.default-apps gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in ---- gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in.default-apps 2008-02-24 18:36:53.000000000 -0500 -+++ gnome-control-center-2.21.92/capplets/default-applications/gnome-default-applications.xml.in 2008-02-26 12:23:53.000000000 -0500 -@@ -44,62 +44,22 @@ +diff -upNr gnome-control-center-2.27.3.orign/capplets/default-applications/gnome-default-applications.xml.in gnome-control-center-2.27.3/capplets/default-applications/gnome-default-applications.xml.in +--- gnome-control-center-2.27.3.orign/capplets/default-applications/gnome-default-applications.xml.in 2009-05-03 20:30:56.000000000 +0200 ++++ gnome-control-center-2.27.3/capplets/default-applications/gnome-default-applications.xml.in 2009-07-14 17:07:43.635848437 +0200 +@@ -44,24 +44,6 @@ galeon -w %s @@ -26,11 +26,7 @@ diff -up gnome-control-center-2.21.92/ca <_name>Firefox firefox firefox %s - firefox - false -- true -+ false - firefox -new-tab "%s" +@@ -72,34 +54,12 @@ firefox -new-window "%s" From jorton at fedoraproject.org Tue Jul 14 15:45:11 2009 From: jorton at fedoraproject.org (jorton) Date: Tue, 14 Jul 2009 15:45:11 +0000 (UTC) Subject: rpms/php/devel php-5.3.0-systzdata-v5.patch, NONE, 1.1 php.spec, 1.177, 1.178 php-5.2.5-systzdata.patch, 1.4, NONE php-5.2.6-systzdata.patch, 1.2, NONE php-5.3.0-systzdata.patch, 1.1, NONE Message-ID: <20090714154511.1373811C0099@cvs1.fedora.phx.redhat.com> Author: jorton Update of /cvs/extras/rpms/php/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27186 Modified Files: php.spec Added Files: php-5.3.0-systzdata-v5.patch Removed Files: php-5.2.5-systzdata.patch php-5.2.6-systzdata.patch php-5.3.0-systzdata.patch Log Message: * Tue Jul 14 2009 Joe Orton 5.3.0-2 - update to v5 of systzdata patch; parses zone.tab and extracts timezone->{country-code,long/lat,comment} mapping table php-5.3.0-systzdata-v5.patch: --- NEW FILE php-5.3.0-systzdata-v5.patch --- Add support for use of the system timezone database, rather than embedding a copy. Discussed upstream but was not desired. History: r5: reverts addition of "System/Localtime" fake tzname. updated for 5.3.0, parses zone.tab to pick up mapping between timezone name, country code and long/lat coords r4: added "System/Localtime" tzname which uses /etc/localtime r3: fix a crash if /usr/share/zoneinfo doesn't exist (Raphael Geissert) r2: add filesystem trawl to set up name alias index r1: initial revision --- php-5.3.0/ext/date/lib/parse_tz.c.systzdata +++ php-5.3.0/ext/date/lib/parse_tz.c @@ -20,6 +20,16 @@ #include "timelib.h" +#ifdef HAVE_SYSTEM_TZDATA +#include +#include +#include +#include +#include + +#include "php_scandir.h" +#endif + #include #ifdef HAVE_LOCALE_H @@ -31,7 +41,12 @@ #else #include #endif + +#ifndef HAVE_SYSTEM_TZDATA #include "timezonedb.h" +#endif + +#include #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) # if defined(__LITTLE_ENDIAN__) @@ -253,6 +268,427 @@ void timelib_dump_tzinfo(timelib_tzinfo } } +#ifdef HAVE_SYSTEM_TZDATA + +#ifdef HAVE_SYSTEM_TZDATA_PREFIX +#define ZONEINFO_PREFIX HAVE_SYSTEM_TZDATA_PREFIX +#else +#define ZONEINFO_PREFIX "/usr/share/zoneinfo" +#endif + +/* System timezone database pointer. */ +static const timelib_tzdb *timezonedb_system = NULL; + +/* Hash table entry for the cache of the zone.tab mapping table. */ +struct location_info { + char code[2]; + double latitude, longitude; + char name[64]; + char *comment; + struct location_info *next; +}; + +/* Cache of zone.tab. */ +static struct location_info **system_zone_info; + +/* Size of the zone.tab hash table; a random-ish prime big enough to + * prevent too many collisions. */ +#define LOCINFO_HASH_SIZE (1021) + +static uint32_t tz_hash(const char *str) +{ + const unsigned char *p = (const unsigned char *)str; + uint32_t hash = 5381; + int c; + + while ((c = *p++) != '\0') { + hash = (hash << 5) ^ hash ^ c; + } + + return hash % LOCINFO_HASH_SIZE; +} + +/* Parse an ISO-6709 date as used in zone.tab. Returns end of the + * parsed string on success, or NULL on parse error. On success, + * writes the parsed number to *result. */ +static char *parse_iso6709(char *p, double *result) +{ + double v, sign; + char *pend; + size_t len; + + if (*p == '+') + sign = 1.0; + else if (*p == '-') + sign = -1.0; + else + return NULL; + + p++; + for (pend = p; *pend >= '0' && *pend <= '9'; pend++) + ;; + + /* Annoying encoding used by zone.tab has no decimal point, so use + * the length to determine the format: + * + * 4 = DDMM + * 5 = DDDMM + * 6 = DDMMSS + * 7 = DDDMMSS + */ + len = pend - p; + if (len < 4 || len > 7) { + return NULL; + } + + /* p => [D]DD */ + v = (p[0] - '0') * 10.0 + (p[1] - '0'); + p += 2; + if (len == 5 || len == 7) + v = v * 10.0 + (*p++ - '0'); + /* p => MM[SS] */ + v += (10.0 * (p[0] - '0') + + p[1] - '0') / 60.0; + p += 2; + /* p => [SS] */ + if (len > 5) { + v += (10.0 * (p[0] - '0') + + p[1] - '0') / 3600.0; + p += 2; + } + + /* Round to 3 decimal places. */ + *result = round(v * sign * 1000.00)/1000.00; + + return p; +} + +/* This function parses the zone.tab file to build up the mapping of + * timezone to country code and geographic location, and returns a + * hash table. The hash table is indexed by the function: + * + * tz_hash(timezone-name) + */ +static struct location_info **load_zone_table(void) +{ + struct location_info **li, *i; + char zone_tab[PATH_MAX]; + char line[512]; + FILE *fp; + + strncpy(zone_tab, ZONEINFO_PREFIX "/zone.tab", sizeof zone_tab); + + fp = fopen(zone_tab, "r"); + if (!fp) { + return NULL; + } + + li = calloc(LOCINFO_HASH_SIZE, sizeof *li); + + while (fgets(line, sizeof line, fp)) { + char *p = line, *code, *name, *comment; + uint32_t hash; + double latitude, longitude; + + while (isspace(*p)) + p++; + + if (*p == '#' || *p == '\0' || *p == '\n') + continue; + + if (!isalpha(p[0]) || !isalpha(p[1]) || p[2] != '\t') + continue; + + /* code => AA */ + code = p; + p[2] = 0; + p += 3; + + /* coords => [+-][D]DDMM[SS][+-][D]DDMM[SS] */ + p = parse_iso6709(p, &latitude); + if (!p) { + continue; + } + p = parse_iso6709(p, &longitude); + if (!p) { + continue; + } + + if (!p || *p != '\t') { + continue; + } + + /* name = string */ + name = ++p; + while (*p != '\t' && *p && *p != '\n') + p++; + + *p++ = '\0'; + + /* comment = string */ + comment = p; + while (*p != '\t' && *p && *p != '\n') + p++; + + if (*p == '\n' || *p == '\t') + *p = '\0'; + + hash = tz_hash(name); + i = malloc(sizeof *i); + memcpy(i->code, code, 2); + strncpy(i->name, name, sizeof i->name); + i->comment = strdup(comment); + i->longitude = longitude; + i->latitude = latitude; + i->next = li[hash]; + li[hash] = i; + /* printf("%s [%u, %f, %f]\n", name, hash, longitude, latitude); */ + } + + return li; +} + +/* Return location info from hash table, using given timezone name. + * Returns NULL if the name could not be found. */ +const struct location_info *find_zone_info(struct location_info **li, + const char *name) +{ + uint32_t hash = tz_hash(name); + const struct location_info *l; + + if (!li) { + return NULL; + } + + for (l = li[hash]; l; l = l->next) { + if (strcasecmp(l->name, name) == 0) + return l; + } + + return NULL; +} + +/* Since 5.3, php_date.c:timezone_identifiers_list() peeks directly + * into the data array at position + 4, which is the BC flag, so, we + * need to fake one up. For each timezone entry, the 'pos' entry will + * be set to either 0 or 1. pos + 4 will hence be either \1 or \0, + * respectively. Somewhat gross, but means we can avoid patching + * php_date.c. */ +static const unsigned char system_fake_data[] = "1234\1\0"; +#define SYSTEM_FAKE_BC_POS (0) +#define SYSTEM_FAKE_NONBC_POS (1) + +/* Filter out some non-tzdata files and the posix/right databases, if + * present. */ +static int index_filter(const struct dirent *ent) +{ + return strcmp(ent->d_name, ".") != 0 + && strcmp(ent->d_name, "..") != 0 + && strcmp(ent->d_name, "posix") != 0 + && strcmp(ent->d_name, "posixrules") != 0 + && strcmp(ent->d_name, "right") != 0 + && strstr(ent->d_name, ".tab") == NULL; +} + +/* Create the zone identifier index by trawling the filesystem. */ +static void create_zone_index(timelib_tzdb *db) +{ + size_t dirstack_size, dirstack_top; + size_t index_size, index_next; + timelib_tzdb_index_entry *db_index; + char **dirstack; + + /* LIFO stack to hold directory entries to scan; each slot is a + * directory name relative to the zoneinfo prefix. */ + dirstack_size = 32; + dirstack = malloc(dirstack_size * sizeof *dirstack); + dirstack_top = 1; + dirstack[0] = strdup(""); + + /* Index array. */ + index_size = 64; + db_index = malloc(index_size * sizeof *db_index); + index_next = 0; + + do { + struct dirent **ents; + char name[PATH_MAX], *top; + int count; + + /* Pop the top stack entry, and iterate through its contents. */ + top = dirstack[--dirstack_top]; + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s", top); + + count = php_scandir(name, &ents, index_filter, php_alphasort); + + while (count > 0) { + struct stat st; + const char *leaf = ents[count - 1]->d_name; + + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s/%s", + top, leaf); + + if (strlen(name) && stat(name, &st) == 0) { + /* Name, relative to the zoneinfo prefix. */ + const char *root = top; + + if (root[0] == '/') root++; + + snprintf(name, sizeof name, "%s%s%s", root, + *root ? "/": "", leaf); + + if (S_ISDIR(st.st_mode)) { + if (dirstack_top == dirstack_size) { + dirstack_size *= 2; + dirstack = realloc(dirstack, + dirstack_size * sizeof *dirstack); + } + dirstack[dirstack_top++] = strdup(name); + } + else { + const struct location_info *li; + + if (index_next == index_size) { + index_size *= 2; + db_index = realloc(db_index, + index_size * sizeof *db_index); + } + + db_index[index_next].id = strdup(name); + + /* Look up the timezone in the zone.tab cache, and see + * whether this is a "BC" name or not; fake the pos + * pointer appropriately. */ + li = find_zone_info(system_zone_info, name); + if (li) { + db_index[index_next].pos = SYSTEM_FAKE_NONBC_POS; + } + else { + db_index[index_next].pos = SYSTEM_FAKE_BC_POS; + } + + index_next++; + } + } + + free(ents[--count]); + } + + if (count != -1) free(ents); + free(top); + } while (dirstack_top); + + db->index = db_index; + db->index_size = index_next; + db->data = system_fake_data; + + free(dirstack); +} + +/* Return the mmap()ed tzfile if found, else NULL. On success, the + * length of the mapped data is placed in *length. */ +static char *map_tzfile(const char *timezone, size_t *length) +{ + char fname[PATH_MAX]; + struct stat st; + char *p; + int fd; + + if (strstr(timezone, "..") != NULL) { + return NULL; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + + fd = open(fname, O_RDONLY); + if (fd == -1) { + return NULL; + } else if (fstat(fd, &st) != 0 || st.st_size < 21) { + close(fd); + return NULL; + } + + *length = st.st_size; + p = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); + close(fd); + + return p != MAP_FAILED ? p : NULL; +} + +const timelib_tzdb *timelib_builtin_db(void) +{ + if (timezonedb_system == NULL) { + timelib_tzdb *tmp = malloc(sizeof *tmp); + + tmp->version = "0.system"; + tmp->data = NULL; + create_zone_index(tmp); + system_zone_info = load_zone_table(); + timezonedb_system = tmp; + } + + return timezonedb_system; +} + +const timelib_tzdb_index_entry *timelib_timezone_builtin_identifiers_list(int *count) +{ + *count = timezonedb_system->index_size; + return timezonedb_system->index; +} + +int timelib_timezone_id_is_valid(char *timezone, const timelib_tzdb *tzdb) +{ + char fname[PATH_MAX]; + + if (strstr(timezone, "..") != NULL) { + return 0; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + + return access(fname, R_OK) == 0 ? 1 : 0; +} + +timelib_tzinfo *timelib_parse_tzfile(char *timezone, const timelib_tzdb *tzdb) +{ + char *orig; + const unsigned char *tzf; + timelib_tzinfo *tmp; + size_t len; + const struct location_info *li; + + orig = map_tzfile(timezone, &len); + if (orig == NULL) { + return NULL; + } + + tmp = timelib_tzinfo_ctor(timezone); + + tzf = (const unsigned char *)orig + 20; + read_header(&tzf, tmp); + read_transistions(&tzf, tmp); + read_types(&tzf, tmp); + + if ((li = find_zone_info(system_zone_info, timezone)) != NULL) { + tmp->location.comments = strdup(li->comment); + strncpy(tmp->location.country_code, li->code, 2); + tmp->location.longitude = li->longitude; + tmp->location.latitude = li->latitude; + tmp->bc = 1; + } + else { + strcpy(tmp->location.country_code, "??"); + tmp->bc = 0; + tmp->location.comments = strdup(""); + } + + munmap(orig, len); + + return tmp; +} + +#else /* !HAVE_SYSTEM_TZDATA */ + static int seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) { int left = 0, right = tzdb->index_size - 1; @@ -328,6 +764,7 @@ timelib_tzinfo *timelib_parse_tzfile(cha return tmp; } +#endif static ttinfo* fetch_timezone_offset(timelib_tzinfo *tz, timelib_sll ts, timelib_sll *transition_time) { --- php-5.3.0/ext/date/lib/timelib.m4.systzdata +++ php-5.3.0/ext/date/lib/timelib.m4 @@ -78,3 +78,17 @@ stdlib.h dnl Check for strtoll, atoll AC_CHECK_FUNCS(strtoll atoll strftime) + +PHP_ARG_WITH(system-tzdata, for use of system timezone data, +[ --with-system-tzdata[=DIR] to specify use of system timezone data], +no, no) + +if test "$PHP_SYSTEM_TZDATA" != "no"; then + AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) + + if test "$PHP_SYSTEM_TZDATA" != "yes"; then + AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", + [Define for location of system timezone data]) + fi +fi + Index: php.spec =================================================================== RCS file: /cvs/extras/rpms/php/devel/php.spec,v retrieving revision 1.177 retrieving revision 1.178 diff -u -p -r1.177 -r1.178 --- php.spec 12 Jul 2009 16:47:14 -0000 1.177 +++ php.spec 14 Jul 2009 15:45:10 -0000 1.178 @@ -13,7 +13,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.3.0 -Release: 1%{?dist} +Release: 2%{?dist} License: PHP Group: Development/Languages URL: http://www.php.net/ @@ -39,7 +39,7 @@ Patch21: php-5.2.3-macropen.patch # Functional changes Patch40: php-5.0.4-dlopen.patch Patch41: php-5.3.0-easter.patch -Patch42: php-5.2.5-systzdata.patch +Patch42: php-5.3.0-systzdata-v5.patch # Fixes for tests Patch61: php-5.0.4-tests-wddx.patch @@ -843,6 +843,10 @@ rm files.* macros.php %files enchant -f files.enchant %changelog +* Tue Jul 14 2009 Joe Orton 5.3.0-2 +- update to v5 of systzdata patch; parses zone.tab and extracts + timezone->{country-code,long/lat,comment} mapping table + * Sun Jul 12 2009 Remi Collet 5.3.0-1 - update to 5.3.0 - remove ncurses, dbase, mhash extensions --- php-5.2.5-systzdata.patch DELETED --- --- php-5.2.6-systzdata.patch DELETED --- --- php-5.3.0-systzdata.patch DELETED --- From ajax at fedoraproject.org Tue Jul 14 15:54:53 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 15:54:53 +0000 (UTC) Subject: rpms/libxcb/devel libxcb-1.1-no-pthread-stubs.patch, 1.1, 1.2 libxcb.spec, 1.26, 1.27 Message-ID: <20090714155453.3778311C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28149 Modified Files: libxcb-1.1-no-pthread-stubs.patch libxcb.spec Log Message: * Tue Jul 14 2009 Adam Jackson 1.3-1 - libxcb 1.3 - List DSO versions explicitly. - Don't package any xprint bits. Seriously, no. libxcb-1.1-no-pthread-stubs.patch: From ajax at fedoraproject.org Tue Jul 14 15:56:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 15:56:23 +0000 (UTC) Subject: rpms/libxcb/devel .cvsignore,1.7,1.8 sources,1.7,1.8 Message-ID: <20090714155623.0BD4511C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28304 Modified Files: .cvsignore sources Log Message: * Tue Jul 14 2009 Adam Jackson 1.3-1 - libxcb 1.3 - List DSO versions explicitly. - Don't package any xprint bits. Seriously, no. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 19 May 2009 18:29:36 -0000 1.7 +++ .cvsignore 14 Jul 2009 15:55:52 -0000 1.8 @@ -1,2 +1,3 @@ libxcb-1.2.tar.bz2 xpyb-1.1.tar.bz2 +libxcb-1.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 19 May 2009 18:29:36 -0000 1.7 +++ sources 14 Jul 2009 15:55:52 -0000 1.8 @@ -1,2 +1,3 @@ ae32b7846a7d83f5ec542a5431117564 libxcb-1.2.tar.bz2 0d82bbaa97f89e41aada9fab5630147a xpyb-1.1.tar.bz2 +74b18b863df6dd669e1df9854f96c329 libxcb-1.3.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 16:06:55 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 16:06:55 +0000 (UTC) Subject: rpms/gcalctool/devel .cvsignore, 1.62, 1.63 gcalctool.spec, 1.92, 1.93 sources, 1.63, 1.64 Message-ID: <20090714160655.BE7A811C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gcalctool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29903 Modified Files: .cvsignore gcalctool.spec sources Log Message: 5.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 16 Jun 2009 14:30:18 -0000 1.62 +++ .cvsignore 14 Jul 2009 16:06:55 -0000 1.63 @@ -1 +1 @@ -gcalctool-5.27.3.tar.bz2 +gcalctool-5.27.4.tar.bz2 Index: gcalctool.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/gcalctool.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- gcalctool.spec 16 Jun 2009 14:30:18 -0000 1.92 +++ gcalctool.spec 14 Jul 2009 16:06:55 -0000 1.93 @@ -1,5 +1,5 @@ Name: gcalctool -Version: 5.27.3 +Version: 5.27.4 Release: 1%{?dist} Summary: A desktop calculator @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Matthias Clasen - 5.27.4-1 +- Update ot 5.27.4 + * Tue Jun 16 2009 Matthias Clasen - 5.27.3-1 - Update to 5.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 16 Jun 2009 14:30:19 -0000 1.63 +++ sources 14 Jul 2009 16:06:55 -0000 1.64 @@ -1 +1 @@ -c8f67ae5c107fb513bec4dc07ce5425d gcalctool-5.27.3.tar.bz2 +e06916d4e1fd65428e59585626d085f7 gcalctool-5.27.4.tar.bz2 From mclasen at fedoraproject.org Tue Jul 14 16:12:34 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 16:12:34 +0000 (UTC) Subject: rpms/eog/devel .cvsignore, 1.84, 1.85 eog.spec, 1.146, 1.147 sources, 1.84, 1.85 Message-ID: <20090714161234.D21EB11C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/eog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30455 Modified Files: .cvsignore eog.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/.cvsignore,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- .cvsignore 16 Jun 2009 14:37:50 -0000 1.84 +++ .cvsignore 14 Jul 2009 16:12:04 -0000 1.85 @@ -1 +1 @@ -eog-2.27.3.tar.bz2 +eog-2.27.4.tar.bz2 Index: eog.spec =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/eog.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- eog.spec 16 Jun 2009 14:37:50 -0000 1.146 +++ eog.spec 14 Jul 2009 16:12:04 -0000 1.147 @@ -11,7 +11,7 @@ Summary: Eye of GNOME image viewer Name: eog -Version: 2.27.3 +Version: 2.27.4 Release: 1%{?dist} URL: http://projects.gnome.org/eog/ Source: http://download.gnome.org/sources/eog/2.27/%{name}-%{version}.tar.bz2 @@ -170,6 +170,9 @@ fi %{_datadir}/gtk-doc/html/eog %changelog +* Tue Jul 14 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 16 2009 Matthias Clasen 2.27.3-1 - Update to 2.27.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 16 Jun 2009 14:37:50 -0000 1.84 +++ sources 14 Jul 2009 16:12:04 -0000 1.85 @@ -1 +1 @@ -0689bf6635110be29f37a6aa59d15f55 eog-2.27.3.tar.bz2 +4d7ee8a76a62aca29086cc26b1bc4344 eog-2.27.4.tar.bz2 From denisarnaud at fedoraproject.org Tue Jul 14 16:16:47 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Tue, 14 Jul 2009 16:16:47 +0000 (UTC) Subject: rpms/R-mvtnorm/devel import.log, NONE, 1.1 .cvsignore, 1.5, 1.6 R-mvtnorm.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090714161647.8C15D11C0099@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-mvtnorm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30920/devel Modified Files: .cvsignore R-mvtnorm.spec sources Added Files: import.log Log Message: * Tue Jul 14 2009 Denis Arnaud - 0.9-7 - Update to 0.9-7 --- NEW FILE import.log --- R-mvtnorm-0_9-7_fc11:HEAD:R-mvtnorm-0.9-7.fc11.src.rpm:1247588146 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 4 Sep 2008 15:49:57 -0000 1.5 +++ .cvsignore 14 Jul 2009 16:16:17 -0000 1.6 @@ -1 +1 @@ -mvtnorm_0.9-2.tar.gz +mvtnorm_0.9-7.tar.gz Index: R-mvtnorm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/devel/R-mvtnorm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- R-mvtnorm.spec 23 Feb 2009 23:06:35 -0000 1.9 +++ R-mvtnorm.spec 14 Jul 2009 16:16:17 -0000 1.10 @@ -1,19 +1,19 @@ -%define packname mvtnorm -%define packrel 2 +%define packname mvtnorm +%define packrel 7 Summary: Multivariate normal and T distribution R Package Name: R-%{packname} Version: 0.9 -Release: 2%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/Engineering Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz URL: http://cran.r-project.org/contrib/main/Descriptions/mvtnorm.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: R-devel, tetex-latex, gcc-gfortran -Requires(post): R -Requires(postun): R -Requires: R +Requires(post): R +Requires(postun): R +Requires: R %description @@ -62,6 +62,7 @@ rm -rf %{buildroot} %doc %{_libdir}/R/library/%{packname}/man %doc %{_libdir}/R/library/%{packname}/CHANGES %doc %{_libdir}/R/library/%{packname}/DESCRIPTION +%doc %{_libdir}/R/library/%{packname}/CITATION %{_libdir}/R/library/%{packname}/CONTENTS %{_libdir}/R/library/%{packname}/INDEX %{_libdir}/R/library/%{packname}/NAMESPACE @@ -73,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Denis Arnaud - 0.9-7 +- Update to 0.9-7 + * Mon Feb 23 2009 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild @@ -97,3 +101,4 @@ rm -rf %{buildroot} * Mon Mar 19 2007 Orion Poplawski - 0.7-1 - Initial package + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 4 Sep 2008 15:49:57 -0000 1.5 +++ sources 14 Jul 2009 16:16:17 -0000 1.6 @@ -1 +1 @@ -71fc2bf523ef749c8e2f3cfb0501ce8c mvtnorm_0.9-2.tar.gz +8ad56367c8ea94ad6971b94d7ffbf71e mvtnorm_0.9-7.tar.gz From cwickert at fedoraproject.org Tue Jul 14 16:17:10 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 14 Jul 2009 16:17:10 +0000 (UTC) Subject: comps comps-f12.xml.in,1.36,1.37 Message-ID: <20090714161710.4658511C0099@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30947 Modified Files: comps-f12.xml.in Log Message: add javanotes to the 'books' group Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- comps-f12.xml.in 13 Jul 2009 05:49:31 -0000 1.36 +++ comps-f12.xml.in 14 Jul 2009 16:16:39 -0000 1.37 @@ -1,4 +1,4 @@ - +b @@ -542,6 +542,7 @@ true diveintopython + javanotes ldd-pdf From denisarnaud at fedoraproject.org Tue Jul 14 16:18:26 2009 From: denisarnaud at fedoraproject.org (Denis Arnaud) Date: Tue, 14 Jul 2009 16:18:26 +0000 (UTC) Subject: rpms/R-mvtnorm/EL-5 import.log, NONE, 1.1 .cvsignore, 1.4, 1.5 R-mvtnorm.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090714161826.6860511C0099@cvs1.fedora.phx.redhat.com> Author: denisarnaud Update of /cvs/pkgs/rpms/R-mvtnorm/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31203/EL-5 Modified Files: .cvsignore R-mvtnorm.spec sources Added Files: import.log Log Message: * Tue Jul 14 2009 Denis Arnaud - 0.9-7 - Update to 0.9-7 --- NEW FILE import.log --- R-mvtnorm-0_9-7_fc11:EL-5:R-mvtnorm-0.9-7.fc11.src.rpm:1247588251 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/EL-5/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Jul 2007 21:26:33 -0000 1.4 +++ .cvsignore 14 Jul 2009 16:17:56 -0000 1.5 @@ -1 +1 @@ -mvtnorm_0.8-1.tar.gz +mvtnorm_0.9-7.tar.gz Index: R-mvtnorm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/EL-5/R-mvtnorm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-mvtnorm.spec 24 Jul 2007 21:26:33 -0000 1.3 +++ R-mvtnorm.spec 14 Jul 2009 16:17:56 -0000 1.4 @@ -1,19 +1,19 @@ -%define packname mvtnorm -%define packrel 1 +%define packname mvtnorm +%define packrel 7 Summary: Multivariate normal and T distribution R Package Name: R-%{packname} -Version: 0.8 -Release: 2%{?dist} -License: GPL +Version: 0.9 +Release: 7%{?dist} +License: GPLv2 Group: Applications/Engineering Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz -URL: http://cran.r-project.org/contrib/Descriptions/%{packname}.html +URL: http://cran.r-project.org/contrib/main/Descriptions/mvtnorm.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: R-devel, tetex-latex, gcc-gfortran -Requires(post): R -Requires(postun): R -Requires: R +Requires(post): R +Requires(postun): R +Requires: R %description @@ -23,8 +23,6 @@ and densities. %prep %setup -q -c -n %{packname} -#Don't install todo -rm -r %{packname}/inst/todo %build @@ -62,7 +60,9 @@ rm -rf %{buildroot} %doc %{_libdir}/R/library/%{packname}/doc %doc %{_libdir}/R/library/%{packname}/html %doc %{_libdir}/R/library/%{packname}/man +%doc %{_libdir}/R/library/%{packname}/CHANGES %doc %{_libdir}/R/library/%{packname}/DESCRIPTION +%doc %{_libdir}/R/library/%{packname}/CITATION %{_libdir}/R/library/%{packname}/CONTENTS %{_libdir}/R/library/%{packname}/INDEX %{_libdir}/R/library/%{packname}/NAMESPACE @@ -74,6 +74,22 @@ rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Denis Arnaud - 0.9-7 +- Update to 0.9-7 + +* Mon Feb 23 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Sep 4 2008 Orion Poplawski - 0.9-1 +- Update to 0.9-2 + +* Sat Feb 9 2008 Orion Poplawski - 0.8-4 +- Rebuild for gcc 3.4 + +* Thu Aug 23 2007 Orion Poplawski - 0.8-3 +- Update license tag to GPLv2 +- Rebuild for ppc32 + * Tue Jul 24 2007 Orion Poplawski - 0.8-2 - Update to 0.8-1, fixes test @@ -85,3 +101,4 @@ rm -rf %{buildroot} * Mon Mar 19 2007 Orion Poplawski - 0.7-1 - Initial package + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 Jul 2007 21:26:33 -0000 1.4 +++ sources 14 Jul 2009 16:17:56 -0000 1.5 @@ -1 +1 @@ -acfa1f695584341613cdfc8bd35274c0 mvtnorm_0.8-1.tar.gz +8ad56367c8ea94ad6971b94d7ffbf71e mvtnorm_0.9-7.tar.gz From kevin at fedoraproject.org Tue Jul 14 16:21:54 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 16:21:54 +0000 (UTC) Subject: rpms/fontforge/devel fontforge.spec, 1.45, 1.46 sources, 1.26, 1.27 .cvsignore, 1.26, 1.27 Message-ID: <20090714162154.A51AB11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/fontforge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31613 Modified Files: fontforge.spec sources .cvsignore Log Message: Upgrade to 20090622 Index: fontforge.spec =================================================================== RCS file: /cvs/extras/rpms/fontforge/devel/fontforge.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- fontforge.spec 10 Jun 2009 19:42:02 -0000 1.45 +++ fontforge.spec 14 Jul 2009 16:21:54 -0000 1.46 @@ -1,10 +1,10 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%global docs_version 20090408 +%global docs_version 20090622 %global gettext_package FontForge Name: fontforge -Version: 20090408 +Version: 20090622 Release: 1%{?dist} Summary: Outline and bitmap font editor @@ -147,6 +147,9 @@ update-mime-database %{_datadir}/mime &> %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 16 2009 Kevin Fenzi - 20090622-1 +- Upgrade to 20090622 + * Thu Apr 16 2009 Kevin Fenzi - 20090408-1 - Upgrade to 20090408 Index: sources =================================================================== RCS file: /cvs/extras/rpms/fontforge/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 10 Jun 2009 19:42:02 -0000 1.26 +++ sources 14 Jul 2009 16:21:54 -0000 1.27 @@ -1,2 +1,2 @@ -5a85abd05b8dcefcb5e21e24d99299f9 fontforge_full-20090408.tar.bz2 -5b21e4b9630a33d6a989d869178be7ca fontforge_htdocs-20090408.tar.bz2 +3f4ff2d2dab200f47595bff38baa13ca fontforge_full-20090622.tar.bz2 +db6003b077e9fe6b9ba1d9f64dbe3569 fontforge_htdocs-20090622.tar.bz2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fontforge/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 10 Jun 2009 19:42:02 -0000 1.26 +++ .cvsignore 14 Jul 2009 16:21:54 -0000 1.27 @@ -1,2 +1,2 @@ -fontforge_full-20090408.tar.bz2 -fontforge_htdocs-20090408.tar.bz2 +fontforge_full-20090622.tar.bz2 +fontforge_htdocs-20090622.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 14 16:28:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 16:28:48 +0000 Subject: [pkgdb] beagle ownership updated Message-ID: <20090714162848.8431310F89F@bastion2.fedora.phx.redhat.com> Package beagle in Fedora devel is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From cwickert at fedoraproject.org Tue Jul 14 16:31:05 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 14 Jul 2009 16:31:05 +0000 (UTC) Subject: comps comps-f12.xml.in,1.37,1.38 Message-ID: <20090714163105.ED66C11C0099@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32638 Modified Files: comps-f12.xml.in Log Message: Update LXDE description to no longer be the same as Xfce Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- comps-f12.xml.in 14 Jul 2009 16:16:39 -0000 1.37 +++ comps-f12.xml.in 14 Jul 2009 16:31:05 -0000 1.38 @@ -3932,7 +3932,7 @@ b lxde-desktop <_name>LXDE - <_description>A lightweight desktop environment that works well on low end machines. + <_description>LXDE is a lightweight X11 desktop environment designed for computers with low hardware specifications like netbooks, mobile devices or older computers. false true From lkundrak at fedoraproject.org Tue Jul 14 16:33:20 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Tue, 14 Jul 2009 16:33:20 +0000 (UTC) Subject: rpms/afpfs-ng/F-11 afpfs-ng.spec,1.1,1.2 Message-ID: <20090714163320.4297911C0099@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/afpfs-ng/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1140 Modified Files: afpfs-ng.spec Log Message: * Tue Jul 14 2009 Lubomir Rintel - 0.8.1-3 - Fix up license tag Index: afpfs-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/afpfs-ng/F-11/afpfs-ng.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- afpfs-ng.spec 24 Mar 2009 17:49:10 -0000 1.1 +++ afpfs-ng.spec 14 Jul 2009 16:32:49 -0000 1.2 @@ -5,11 +5,11 @@ Name: afpfs-ng Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Apple Filing Protocol client Group: System Environment/Base -License: GPLv2 +License: GPL+ URL: http://alexthepuffin.googlepages.com/home Source0: http://downloads.sourceforge.net/afpfs-ng/%{name}-%{version}.tar.bz2 Patch0: afpfs-ng-0.8.1-overflows.patch @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Lubomir Rintel - 0.8.1-3 +- Fix up license tag + * Thu Mar 19 2009 Lubomir Rintel - 0.8.1-2 - Add more include files (Jan F. Chadima) - Don't needlessly build static library (Stefan Kasal) From orion at fedoraproject.org Tue Jul 14 16:33:44 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 14 Jul 2009 16:33:44 +0000 (UTC) Subject: rpms/R-mvtnorm/devel R-mvtnorm.spec,1.10,1.11 Message-ID: <20090714163344.3E76011C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/R-mvtnorm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1174 Modified Files: R-mvtnorm.spec Log Message: Update URL, latex BR Index: R-mvtnorm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/devel/R-mvtnorm.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- R-mvtnorm.spec 14 Jul 2009 16:16:17 -0000 1.10 +++ R-mvtnorm.spec 14 Jul 2009 16:33:13 -0000 1.11 @@ -8,9 +8,9 @@ Release: 7%{?dist} License: GPLv2 Group: Applications/Engineering Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz -URL: http://cran.r-project.org/contrib/main/Descriptions/mvtnorm.html +URL: http://cran.r-project.org/web/packages/mvtnorm/index.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: R-devel, tetex-latex, gcc-gfortran +BuildRequires: R-devel, tex(latex), gcc-gfortran Requires(post): R Requires(postun): R Requires: R From lkundrak at fedoraproject.org Tue Jul 14 16:37:23 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Tue, 14 Jul 2009 16:37:23 +0000 (UTC) Subject: rpms/afpfs-ng/devel afpfs-ng.spec,1.1,1.2 Message-ID: <20090714163723.302E511C0099@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/afpfs-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1490 Modified Files: afpfs-ng.spec Log Message: * Tue Jul 14 2009 Lubomir Rintel - 0.8.1-3 - Fix up license tag Index: afpfs-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/afpfs-ng/devel/afpfs-ng.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- afpfs-ng.spec 24 Mar 2009 17:49:10 -0000 1.1 +++ afpfs-ng.spec 14 Jul 2009 16:36:52 -0000 1.2 @@ -5,11 +5,11 @@ Name: afpfs-ng Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Apple Filing Protocol client Group: System Environment/Base -License: GPLv2 +License: GPL+ URL: http://alexthepuffin.googlepages.com/home Source0: http://downloads.sourceforge.net/afpfs-ng/%{name}-%{version}.tar.bz2 Patch0: afpfs-ng-0.8.1-overflows.patch @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Lubomir Rintel - 0.8.1-3 +- Fix up license tag + * Thu Mar 19 2009 Lubomir Rintel - 0.8.1-2 - Add more include files (Jan F. Chadima) - Don't needlessly build static library (Stefan Kasal) From mlichvar at fedoraproject.org Tue Jul 14 16:46:44 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Tue, 14 Jul 2009 16:46:44 +0000 (UTC) Subject: rpms/readline/devel readline-6.0-shlib.patch, NONE, 1.1 readline60-001, NONE, 1.1 readline60-002, NONE, 1.1 readline60-003, NONE, 1.1 .cvsignore, 1.8, 1.9 readline.spec, 1.42, 1.43 sources, 1.8, 1.9 readline-5.2-001.patch, 1.1, NONE readline-5.2-002.patch, 1.1, NONE readline-5.2-003.patch, 1.1, NONE readline-5.2-004.patch, 1.1, NONE readline-5.2-005.patch, 1.1, NONE readline-5.2-006.patch, 1.1, NONE readline-5.2-007.patch, 1.1, NONE readline-5.2-008.patch, 1.1, NONE readline-5.2-009.patch, 1.1, NONE readline-5.2-010.patch, 1.1, NONE readline-5.2-011.patch, 1.1, NONE readline-5.2-redisplay-sigint.patch, 1.1, NONE readline-5.2-shlib.patch, 1.3, NONE Message-ID: <20090714164644.C62D911C0099@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/readline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2396 Modified Files: .cvsignore readline.spec sources Added Files: readline-6.0-shlib.patch readline60-001 readline60-002 readline60-003 Removed Files: readline-5.2-001.patch readline-5.2-002.patch readline-5.2-003.patch readline-5.2-004.patch readline-5.2-005.patch readline-5.2-006.patch readline-5.2-007.patch readline-5.2-008.patch readline-5.2-009.patch readline-5.2-010.patch readline-5.2-011.patch readline-5.2-redisplay-sigint.patch readline-5.2-shlib.patch Log Message: - update to 6.0 - include patches 001, 002, 003 readline-6.0-shlib.patch: --- NEW FILE readline-6.0-shlib.patch --- diff -up readline-6.0/shlib/Makefile.in.shlib readline-6.0/shlib/Makefile.in --- readline-6.0/shlib/Makefile.in.shlib 2009-01-06 18:03:22.000000000 +0100 +++ readline-6.0/shlib/Makefile.in 2009-07-02 14:36:15.000000000 +0200 @@ -169,7 +169,7 @@ $(SHARED_READLINE): $(SHARED_OBJ) $(SHARED_HISTORY): $(SHARED_HISTOBJ) xmalloc.so $(RM) $@ - $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so $(SHLIB_LIBS) + $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so # Since tilde.c is shared between readline and bash, make sure we compile # it with the right flags when it's built as part of readline diff -up readline-6.0/support/shlib-install.shlib readline-6.0/support/shlib-install --- readline-6.0/support/shlib-install.shlib 2008-07-20 01:16:05.000000000 +0200 +++ readline-6.0/support/shlib-install 2009-07-02 14:37:59.000000000 +0200 @@ -71,7 +71,7 @@ fi case "$host_os" in hpux*|darwin*|macosx*|linux*) if [ -z "$uninstall" ]; then - chmod 555 ${INSTALLDIR}/${LIBNAME} + chmod 755 ${INSTALLDIR}/${LIBNAME} fi ;; cygwin*|mingw*) IMPLIBNAME=`echo ${LIBNAME} \ diff -up readline-6.0/support/shobj-conf.shlib readline-6.0/support/shobj-conf --- readline-6.0/support/shobj-conf.shlib 2009-01-04 20:32:42.000000000 +0100 +++ readline-6.0/support/shobj-conf 2009-07-02 14:40:06.000000000 +0200 @@ -112,10 +112,11 @@ sunos5*|solaris2*) linux*-*|gnu*-*|k*bsd*-gnu-*) SHOBJ_CFLAGS=-fPIC SHOBJ_LD='${CC}' - SHOBJ_LDFLAGS='-shared -Wl,-soname,$@' + SHOBJ_LDFLAGS='$(CFLAGS) -shared -Wl,-soname,$@' - SHLIB_XLDFLAGS='-Wl,-rpath,$(libdir) -Wl,-soname,`basename $@ $(SHLIB_MINOR)`' + SHLIB_XLDFLAGS='-Wl,-soname,`basename $@ $(SHLIB_MINOR)`' SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)' + SHLIB_LIBS='-ltinfo' ;; freebsd2*) --- NEW FILE readline60-001 --- READLINE PATCH REPORT ===================== Readline-Release: 6.0 Patch-ID: readline60-001 Bug-Reported-by: Nicolai Lissner Bug-Reference-ID: <20090412020510.GA29658 at lilith> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-04/msg00104.html Bug-Description: If a SIGWINCH arrives while bash is performing redisplay, multi-line prompts are displayed incorrectly due to the display code being called recursively. Patch: *** ../readline-6.0/readline.h 2009-01-04 14:32:33.000000000 -0500 --- readline.h 2009-04-13 08:47:00.000000000 -0400 *************** *** 815,820 **** #define RL_STATE_MULTIKEY 0x200000 /* reading multiple-key command */ #define RL_STATE_VICMDONCE 0x400000 /* entered vi command mode at least once */ ! #define RL_STATE_DONE 0x800000 /* done; accepted line */ #define RL_SETSTATE(x) (rl_readline_state |= (x)) --- 815,821 ---- #define RL_STATE_MULTIKEY 0x200000 /* reading multiple-key command */ #define RL_STATE_VICMDONCE 0x400000 /* entered vi command mode at least once */ + #define RL_STATE_REDISPLAYING 0x800000 /* updating terminal display */ ! #define RL_STATE_DONE 0x1000000 /* done; accepted line */ #define RL_SETSTATE(x) (rl_readline_state |= (x)) *** ../readline-6.0/display.c 2009-01-04 14:32:32.000000000 -0500 --- display.c 2009-04-13 08:29:54.000000000 -0400 *************** *** 513,516 **** --- 513,517 ---- data structures. */ _rl_block_sigint (); + RL_SETSTATE (RL_STATE_REDISPLAYING); if (!rl_display_prompt) *************** *** 1237,1240 **** --- 1238,1242 ---- } + RL_UNSETSTATE (RL_STATE_REDISPLAYING); _rl_release_sigint (); } *** ../readline-6.0/terminal.c 2009-01-04 14:32:34.000000000 -0500 --- terminal.c 2009-04-13 08:43:00.000000000 -0400 *************** *** 356,360 **** if (CUSTOM_REDISPLAY_FUNC ()) rl_forced_update_display (); ! else _rl_redisplay_after_sigwinch (); } --- 356,360 ---- if (CUSTOM_REDISPLAY_FUNC ()) rl_forced_update_display (); ! else if (RL_ISSTATE(RL_STATE_REDISPLAYING) == 0) _rl_redisplay_after_sigwinch (); } *** ../readline-6.0/patchlevel 2008-11-18 11:01:14.000000000 -0500 --- patchlevel 2009-05-09 12:01:06.000000000 -0400 *************** *** 1,3 **** # Do not edit -- exists only for use by patch ! 0 --- 1,3 ---- # Do not edit -- exists only for use by patch ! 1 --- NEW FILE readline60-002 --- READLINE PATCH REPORT ===================== Readline-Release: 6.0 Patch-ID: readline60-002 Bug-Reported-by: Matt Zyzik Bug-Reference-ID: <20090319015542.696F62B8E8 at ice.filescope.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-03/msg00149.html Bug-Description: When not in a locale supporting multibyte characters, readline will occasionally not erase characters between the cursor position and the end of the line when killing text backwards. Patch: *** ../readline-6.0/display.c 2009-01-04 14:32:32.000000000 -0500 --- display.c 2009-04-14 14:00:18.000000000 -0400 *************** *** 1775,1779 **** adjust col_lendiff based on the difference between _rl_last_c_pos and _rl_screenwidth */ ! if (col_lendiff && (_rl_last_c_pos < _rl_screenwidth)) #endif { --- 1775,1779 ---- adjust col_lendiff based on the difference between _rl_last_c_pos and _rl_screenwidth */ ! if (col_lendiff && ((MB_CUR_MAX == 1 || rl_byte_oriented) || (_rl_last_c_pos < _rl_screenwidth))) #endif { *** ../readline-6.0/patchlevel 2008-11-18 11:01:14.000000000 -0500 --- patchlevel 2009-05-09 12:01:06.000000000 -0400 *************** *** 1,3 **** # Do not edit -- exists only for use by patch ! 1 --- 1,3 ---- # Do not edit -- exists only for use by patch ! 2 --- NEW FILE readline60-003 --- READLINE PATCH REPORT ===================== Readline-Release: 6.0 Patch-ID: readline60-003 Bug-Reported-by: Andreas Schwab Bug-Reference-ID: Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-04/msg00160.html Bug-Description: If the prompt length exactly matches the screen width, and the prompt ends with invisible characters, readline positions the cursor incorrectly. Patch: *** ../readline-6.0/display.c 2009-01-04 14:32:32.000000000 -0500 --- display.c 2009-04-25 21:42:18.000000000 -0400 *************** *** 1895,1898 **** --- 1897,1904 ---- woff = WRAP_OFFSET (_rl_last_v_pos, wrap_offset); cpos = _rl_last_c_pos; + + if (cpos == 0 && cpos == new) + return; + #if defined (HANDLE_MULTIBYTE) /* If we have multibyte characters, NEW is indexed by the buffer point in *************** *** 1908,1914 **** desired display position. */ if ((new > prompt_last_invisible) || /* XXX - don't use woff here */ ! (prompt_physical_chars > _rl_screenwidth && _rl_last_v_pos == prompt_last_screen_line && ! wrap_offset >= woff && new > (prompt_last_invisible-(_rl_screenwidth*_rl_last_v_pos)-wrap_offset))) /* XXX last comparison might need to be >= */ --- 1914,1920 ---- desired display position. */ if ((new > prompt_last_invisible) || /* XXX - don't use woff here */ ! (prompt_physical_chars >= _rl_screenwidth && _rl_last_v_pos == prompt_last_screen_line && ! wrap_offset >= woff && dpos >= woff && new > (prompt_last_invisible-(_rl_screenwidth*_rl_last_v_pos)-wrap_offset))) /* XXX last comparison might need to be >= */ *** ../readline-6.0/patchlevel 2008-11-18 11:01:14.000000000 -0500 --- patchlevel 2009-05-09 12:01:06.000000000 -0400 *************** *** 1,3 **** # Do not edit -- exists only for use by patch ! 2 --- 1,3 ---- # Do not edit -- exists only for use by patch ! 3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/readline/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 13 Nov 2006 14:33:06 -0000 1.8 +++ .cvsignore 14 Jul 2009 16:46:12 -0000 1.9 @@ -1 +1 @@ -readline-5.2.tar.gz +readline-6.0.tar.gz Index: readline.spec =================================================================== RCS file: /cvs/pkgs/rpms/readline/devel/readline.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- readline.spec 25 Feb 2009 19:24:10 -0000 1.42 +++ readline.spec 14 Jul 2009 16:46:14 -0000 1.43 @@ -1,24 +1,16 @@ Summary: A library for editing typed command lines Name: readline -Version: 5.2 -Release: 14%{?dist} -License: GPLv2+ +Version: 6.0 +Release: 1%{?dist} +License: GPLv3+ Group: System Environment/Libraries URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html Source: ftp://ftp.gnu.org/gnu/readline/readline-%{version}.tar.gz -Patch1: readline-5.2-shlib.patch -Patch2: readline-5.2-001.patch -Patch3: readline-5.2-002.patch -Patch4: readline-5.2-003.patch -Patch5: readline-5.2-004.patch -Patch6: readline-5.2-005.patch -Patch7: readline-5.2-006.patch -Patch8: readline-5.2-007.patch -Patch9: readline-5.2-008.patch -Patch10: readline-5.2-009.patch -Patch11: readline-5.2-010.patch -Patch12: readline-5.2-011.patch -Patch13: readline-5.2-redisplay-sigint.patch +Patch1: ftp://ftp.gnu.org/gnu/readline/readline-6.0-patches/readline60-001 +Patch2: ftp://ftp.gnu.org/gnu/readline/readline-6.0-patches/readline60-002 +Patch3: ftp://ftp.gnu.org/gnu/readline/readline-6.0-patches/readline60-003 +# fix file permissions, remove RPATH, use CFLAGS +Patch20: readline-6.0-shlib.patch Requires(post): /sbin/install-info Requires(preun): /sbin/install-info BuildRequires: ncurses-devel @@ -57,19 +49,10 @@ library. %prep %setup -q -%patch1 -p1 -b .shlib -%patch2 -p0 -b .001 -%patch3 -p0 -b .002 -%patch4 -p0 -b .003 -%patch5 -p0 -b .004 -%patch6 -p0 -b .005 -%patch7 -p0 -b .006 -%patch8 -p0 -b .007 -%patch9 -p0 -b .008 -%patch10 -p0 -b .009 -%patch11 -p0 -b .010 -%patch12 -p0 -b .011 -%patch13 -p1 -b .redisplay-sigint +%patch1 -p0 -b .001 +%patch2 -p0 -b .002 +%patch3 -p0 -b .003 +%patch20 -p1 -b .shlib pushd examples rm -f rlfe/configure @@ -95,6 +78,7 @@ for l in $RPM_BUILD_ROOT%{_libdir}/libre sed 's,\(^/\|\)[^/][^/]*,..,g')/%{_lib}/$(readlink $l) $l done +rm -rf $RPM_BUILD_ROOT%{_datadir}/readline rm -f $RPM_BUILD_ROOT%{_infodir}/dir %clean @@ -146,6 +130,10 @@ fi %{_libdir}/lib*.a %changelog +* Tue Jul 14 2009 Miroslav Lichvar 6.0-1 +- update to 6.0 +- include patches 001, 002, 003 + * Wed Feb 25 2009 Fedora Release Engineering - 5.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/readline/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Nov 2006 14:33:06 -0000 1.8 +++ sources 14 Jul 2009 16:46:14 -0000 1.9 @@ -1 +1 @@ -e39331f32ad14009b9ff49cc10c5e751 readline-5.2.tar.gz +b7f65a48add447693be6e86f04a63019 readline-6.0.tar.gz --- readline-5.2-001.patch DELETED --- --- readline-5.2-002.patch DELETED --- --- readline-5.2-003.patch DELETED --- --- readline-5.2-004.patch DELETED --- --- readline-5.2-005.patch DELETED --- --- readline-5.2-006.patch DELETED --- --- readline-5.2-007.patch DELETED --- --- readline-5.2-008.patch DELETED --- --- readline-5.2-009.patch DELETED --- --- readline-5.2-010.patch DELETED --- --- readline-5.2-011.patch DELETED --- --- readline-5.2-redisplay-sigint.patch DELETED --- --- readline-5.2-shlib.patch DELETED --- From limb at fedoraproject.org Tue Jul 14 17:07:13 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 14 Jul 2009 17:07:13 +0000 (UTC) Subject: rpms/limph/devel .cvsignore, 1.3, 1.4 limph.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090714170714.0E3F311C0099@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/limph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5165 Modified Files: .cvsignore limph.spec sources Log Message: New upstream to move from deprecated mhash to hash. Dropped php-mhash requires. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/limph/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Aug 2007 16:41:54 -0000 1.3 +++ .cvsignore 14 Jul 2009 17:06:43 -0000 1.4 @@ -1 +1 @@ -limph-1.9.5.tar.gz +limph-1.9.6.tar.gz Index: limph.spec =================================================================== RCS file: /cvs/pkgs/rpms/limph/devel/limph.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- limph.spec 25 Feb 2009 20:23:54 -0000 1.6 +++ limph.spec 14 Jul 2009 17:06:43 -0000 1.7 @@ -1,6 +1,6 @@ %define limphdir %{_datadir}/limph Name: limph -Version: 1.9.5 +Version: 1.9.6 Release: 4%{?dist} Summary: A PHP5-compatible network host/service poller with web interface @@ -14,7 +14,6 @@ Source2: limph-hostagent BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root%(%{__id_u} -n) Requires: limph-common = %{version}-%{release} -Requires: php-mhash Requires: php-mcrypt Requires: php-mysql Requires: php-pear-Net-Ping @@ -93,6 +92,10 @@ rm -rf %{buildroot} %{limphdir}/config.php %changelog +* Tue Jul 14 2009 Jon Ciesla - 1.9.6-1 +- New upstream to move from deprecated mhash to hash. +- Dropped php-mhash requires. + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/limph/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Aug 2007 17:50:05 -0000 1.4 +++ sources 14 Jul 2009 17:06:43 -0000 1.5 @@ -1 +1 @@ -28adcc2e03c0b4cf9a68ab535c5a99dd limph-1.9.5.tar.gz +02ef32a91094ff36a539e6e0d0a214f1 limph-1.9.6.tar.gz From mschwendt at fedoraproject.org Tue Jul 14 17:09:26 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Tue, 14 Jul 2009 17:09:26 +0000 (UTC) Subject: rpms/audacious/devel .cvsignore, 1.14, 1.15 audacious.spec, 1.48, 1.49 sources, 1.14, 1.15 audacious-1.5.1-default-skin.patch, 1.1, NONE audacious-1.5.1-desktop-name.patch, 1.1, NONE audacious-1.5.1-libsad-header.patch, 1.1, NONE audacious-1.5.1-playlist-length.patch, 1.1, NONE audacious-1.5.1-playlist-play-clicked.patch, 1.1, NONE audacious-1.5.1-xmms-skins.patch, 1.1, NONE Message-ID: <20090714170926.850DB11C0099@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5427 Modified Files: .cvsignore audacious.spec sources Removed Files: audacious-1.5.1-default-skin.patch audacious-1.5.1-desktop-name.patch audacious-1.5.1-libsad-header.patch audacious-1.5.1-playlist-length.patch audacious-1.5.1-playlist-play-clicked.patch audacious-1.5.1-xmms-skins.patch Log Message: fresh package for Audacious 2.1 final - skip 2.0.1 because it doesn't include alsa-ng (like our patched 1.5.1 pkgs) and suffers from bugs and race conditions which are fixed in 2.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audacious/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 7 Jun 2008 20:54:14 -0000 1.14 +++ .cvsignore 14 Jul 2009 17:09:26 -0000 1.15 @@ -1 +1 @@ -audacious-1.5.1.tgz +audacious-2.1.tgz Index: audacious.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious/devel/audacious.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- audacious.spec 6 Jun 2009 16:42:42 -0000 1.48 +++ audacious.spec 14 Jul 2009 17:09:26 -0000 1.49 @@ -1,98 +1,79 @@ # Minimum audacious/audacious-plugins version in inter-package -# dependencies. We have 1.5.1 for both, so we enforce 1.5.1. -%define aud_ver 1.5.1 +# dependencies. +# We enforce 2.1 as 2.0.1 or older is insufficient. +%define aud_ver 2.1 + +Name: audacious +Version: 2.1 +Release: 1%{?dist} + +License: GPLv3 +Summary: GTK2 based media player similar to XMMS +URL: http://audacious-media-player.org/ +Group: Applications/Multimedia + +Source0: http://distfiles.atheme.org/audacious-%{version}.tgz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: gettext +BuildRequires: glib2-devel +BuildRequires: gtk2-devel +BuildRequires: libmowgli-devel +BuildRequires: mcs-devel +BuildRequires: libxml2-devel +BuildRequires: dbus-devel dbus-glib-devel +BuildRequires: libSM-devel +BuildRequires: desktop-file-utils + +# disabled by default +#BuildRequires: libsamplerate-devel + +# The automatic SONAME dependency is not enough +# during version upgrades. +Requires: audacious-libs = %{version}-%{release} -Name: audacious -Version: 1.5.1 -Release: 9%{?dist} -Summary: GTK2 based media player similar to XMMS - -Group: Applications/Multimedia -License: GPLv2 -URL: http://audacious-media-player.org/ - -Source0: http://distfiles.atheme.org/audacious-%{version}.tgz -Patch0: audacious-1.5.1-xmms-skins.patch -Patch1: audacious-1.5.1-default-skin.patch -Patch10: audacious-1.5.1-libsad-header.patch -Patch11: audacious-1.5.1-playlist-length.patch -Patch12: audacious-1.5.1-playlist-play-clicked.patch -Patch13: audacious-1.5.1-desktop-name.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: gtk2-devel >= 2.6 -BuildRequires: zlib-devel, desktop-file-utils >= 0.9 -BuildRequires: libglade2-devel >= 2.4 -BuildRequires: gettext -BuildRequires: mcs-devel >= 0.7 -BuildRequires: libmowgli-devel >= 0.4 -BuildRequires: dbus-devel >= 0.60, dbus-glib-devel >= 0.60 - -Requires: audacious-plugins >= %{aud_ver} - -# last tagged f8-final -Provides: audacious-docklet -Obsoletes: audacious-docklet < 0.1.1-3 +Requires: audacious-plugins >= %{aud_ver} # Skin packages can require this from xmms and all GUI compatible players -Provides: xmms-gui +Provides: xmms-gui %description Audacious is a media player that currently uses a skinned user interface -based on Winamp 2.x skins. It is based on ("forked off") BMP. +based on Winamp 2.x skins. -%package libs -Summary: Library files for the Audacious media player -Group: System Environment/Libraries +%package libs +Summary: Library files for the Audacious media player +Group: System Environment/Libraries -%description libs +%description libs Library files for the Audacious media player. -%package devel -Summary: Development files for the Audacious media player -Group: Development/Libraries -Requires: %{name}-libs = %{version}-%{release} -Requires: glib2-devel, gtk2-devel >= 2.6, libglade2-devel >= 2.4 -Requires: mcs-devel -Requires: libmowgli-devel -Requires: pkgconfig -Requires: dbus-glib-devel >= 0.60 +%package devel +Summary: Development files for the Audacious media player +Group: Development/Libraries +Requires: %{name}-libs = %{version}-%{release} +Requires: glib2-devel gtk2-devel +Requires: dbus-glib-devel +Requires: mcs-devel +Requires: libmowgli-devel +Requires: pkgconfig -%description devel +%description devel Files needed when building software for the Audacious media player. %prep -%setup -q - -# Read xmms skins directory -%patch0 -p1 -b .xmms-skins - -# Use bluecurve as default skin -%patch1 -p1 -b .default-skin - -# Remove libSAD references from the public headers -%patch10 -p1 -b libsad-header - -# Fix segfaults if no playlist exists -%patch11 -p1 -b playlist-length - -# When passing a file on the command line, play the file, not the first playlist entry -%patch12 -p1 -b playlist-play-clicked - -# /usr/bin/audacious looks for the fedora-audacious.desktop file -%patch13 -p1 -b .desktop-name +%setup -q -n %{name}-%{version} sed -i '\,^.SILENT:,d' buildsys.mk.in %build -%configure \ +%configure \ + --disable-sse2 \ --disable-rpath \ - --enable-chardet \ - --enable-dbus \ - --disable-sse2 \ --disable-dependency-tracking make %{?_smp_mflags} @@ -100,29 +81,25 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' + %find_lang %{name} -desktop-file-install --vendor fedora \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ - --delete-original \ - --remove-mime-type audio/x-scpls \ - --remove-mime-type audio/x-mpegurl \ - --remove-mime-type audio/mpegurl \ - --remove-mime-type audio/mp3 \ - --remove-mime-type audio/x-mp3 \ - --remove-mime-type audio/mpeg \ - --remove-mime-type audio/x-mpeg \ - --remove-mime-type audio/x-wav \ - --remove-mime-type application/x-ogg \ - --remove-category Application \ - $RPM_BUILD_ROOT%{_datadir}/applications/audacious.desktop - -install -m 755 -d $RPM_BUILD_ROOT%{_libdir}/audacious -install -m 755 -d $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps -mv $RPM_BUILD_ROOT%{_datadir}/pixmaps/audacious.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps +desktop-file-install \ + --dir $RPM_BUILD_ROOT%{_datadir}/applications \ + --remove-mime-type audio/mp3 \ + --remove-mime-type audio/mpeg \ + --remove-mime-type audio/mpegurl \ + --remove-mime-type audio/x-mp3 \ + --remove-mime-type audio/x-mpeg \ + --remove-mime-type audio/x-mpegurl \ + --remove-mime-type audio/x-ms-wma \ + --remove-mime-type audio/x-scpls \ + --remove-category Application \ + $RPM_BUILD_ROOT%{_datadir}/applications/audacious2.desktop -find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' -rm -rf $RPM_BUILD_ROOT%{_includedir}/libSAD +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps +mv $RPM_BUILD_ROOT%{_datadir}/pixmaps/audacious2.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps %clean @@ -151,153 +128,34 @@ gtk-update-icon-cache %{_datadir}/icons/ %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS README -%{_bindir}/audacious -%{_bindir}/audtool +%{_bindir}/audacious2 +%{_bindir}/audtool2 %{_datadir}/audacious/ %{_mandir}/man[^3]/* -%{_datadir}/applications/* +%{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/48x48/apps/* %files libs %defattr(-,root,root,-) -%{_libdir}/audacious/ %{_libdir}/*.so.* %files devel %defattr(-,root,root,-) %{_includedir}/audacious/ +%{_includedir}/libaudcore/ +%{_includedir}/libSAD/ %{_libdir}/*.so -%{_libdir}/pkgconfig/* +%{_libdir}/pkgconfig/*.pc %changelog -* Sat Jun 6 2009 Michael Schwendt -- Remove unapplied patches and verify that they have been merged. - -* Fri Jun 5 2009 Michael Schwendt - 1.5.1-9 -- update post/postun/posttrans scriptlets to match guidelines -- drop BR GConf2-devel -- drop obsolete configure options -- drop ancient Obsoletes/Provides for BMP -- minor spec updates - -* Thu Jun 4 2009 Michael Schwendt -- Patch /usr/bin/audacious to find fedora-audacious.desktop file. - -* Fri May 01 2009 Ralf Ertzinger 1.5.1-8 -- Fix for "segfault with no playlist present" (BZ#475691) -- Fix for broken playlist handling (BZ#475691), patch from - http://launchpadlibrarian.net/19179891/audacious_1.5.1-3ubuntu1.1.debdiff - -* Sun Apr 12 2009 Matthias Saou 1.5.1-7 -- Add "xmms-gui" provides, to be required from xmms-skins package (#470135). - -* Mon Feb 23 2009 Fedora Release Engineering - 1.5.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Nov 17 2008 Ralf Ertzinger 1.5.1-5 -- Disable SSE2 - -* Mon Oct 13 2008 Ralf Ertzinger 1.5.1-4 -- Remove lingering references to libSAD from the installed - headers - -* Sat Sep 06 2008 Ralf Ertzinger 1.5.1-3 -- Remove libSAD headers from devel package, they were not meant - to be public - -* Fri Jun 27 2008 Ralf Ertzinger 1.5.1-2 -- Add Requires: dbus-glib-devel to audacious-devel - -* Sat Jun 07 2008 Ralf Ertzinger 1.5.1-1 -- Update to 1.5.1 - -* Mon Apr 07 2008 Ralf Ertzinger 1.5.0-1 -- Update to 1.5.0 - -* Mon Feb 11 2008 Ralf Ertzinger 1.4.6-1 -- Update to 1.4.6 - -* Sat Dec 29 2007 Ralf Ertzinger 1.4.5-1 -- Update to 1.4.5 - -* Mon Dec 03 2007 Ralf Ertzinger 1.4.4-1 -- Update to 1.4.4 - -* Sat Dec 01 2007 Ralf Ertzinger 1.4.2-3 -- Add patch to fix streams sometimes being left open -- Obsolete: audacious-docklet - -* Thu Nov 19 2007 Ralf Ertzinger 1.4.2-2 -- Update to 1.4.2 - -* Tue Aug 28 2007 Fedora Release Engineering - 1.3.2-3 -- Rebuild for selinux ppc32 issue. - -* Sat Aug 25 2007 Ralf Ertzinger 1.3.2-2 -- Clarify License: tag - -* Sat Apr 07 2007 Ralf Ertzinger 1.3.2-1.fc7 -- Update to 1.3.2 - -* Mon Apr 02 2007 Ralf Ertzinger 1.3.1-2.fc7 -- Add missing Requires: to -devel package - -* Mon Apr 02 2007 Ralf Ertzinger 1.3.1-1.fc7 -- Update to 1.3.1 -- Rebase still necessary patches - -* Sun Dec 24 2006 Ralf Ertzinger 1.2.2-2.fc7 -- Remove audacious-1.1.1-controlsocket-name.patch due to request - from upstream, xmms and audacious are not entirely compatible - -* Sun Nov 30 2006 Ralf Ertzinger 1.2.2-1.fc7 -- Update to 1.2.2 - -* Sun Nov 26 2006 Ralf Ertzinger 1.2.1-1.fc7 -- Update to 1.2.1 -- Split off libaudacious into a separate package to handle the - (now externally provided and built) plugins better - -* Wed Oct 18 2006 Ralf Ertzinger 1.1.2-2.fc6 -- Add Obsoletes/Provides for BMP - -* Wed Sep 06 2006 Ralf Ertzinger 1.1.2-1.fc6 -- Update to 1.1.2 - -* Thu Aug 17 2006 Ralf Ertzinger 1.1.1-6.fc6 -- Another go at the %%20 problem - -* Mon Aug 14 2006 Ralf Ertzinger 1.1.1-4.fc6 -- Fix %%20 in playlist entries - -* Sun Jul 30 2006 Ralf Ertzinger 1.1.1-3.fc6 -- Bump for rebuild - -* Sun Jul 30 2006 Ralf Ertzinger 1.1.1-2.fc6 -- Change the name of the control socket to "xmms" instead of - audacious. This makes programs that remote control xmms - (and compatibles) work. - -* Sun Jul 30 2006 Ralf Ertzinger 1.1.1-1.fc6 -- Update to 1.1.1 -- Drop amidi path patch -- Add shaded playlist skin patch (seems like audacious needs it, - too) - -* Fri Jul 21 2006 Ralf Ertzinger 1.1.0-1.fc6 -- Update to 1.1.0 final -- Rediff some patches - -* Sun Jul 9 2006 Ralf Ertzinger 1.1.0-0.2.dr2.fc6 -- Fix quoting of filenames - -* Thu Jun 29 2006 Ralf Ertzinger 1.1.0-0.1.dr2.fc6 -- Fixed version for Extras review - - Build OSS, arts and jack output plugins - - Split esd, arts and jack into separate packages - - Fix rpath issue - - Fix absolute symlinks +* Tue Jul 14 2009 Michael Schwendt - 2.1-1 +- Upgrade to 2.1 final. -* Sat Jun 24 2006 Ralf Ertzinger 1.1.0-0.0.dr2.fc6 -- Initial build for Fedora Extras +* Mon Jun 29 2009 Michael Schwendt - 2.1-0.1.beta1 +- Upgrade to 2.1beta1. +- Drop obsolete patches. + +* Fri Jun 5 2009 Michael Schwendt - 2.0.1-0.1 +- Initial package for Audacious 2.0.1 + based on a major spec overhaul of the older Fedora packages. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audacious/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 7 Jun 2008 20:54:14 -0000 1.14 +++ sources 14 Jul 2009 17:09:26 -0000 1.15 @@ -1 +1 @@ -3c206a6d06d49d8a68f0edd9933d2219 audacious-1.5.1.tgz +03ab6a062e5909214841f90f767f1147 audacious-2.1.tgz --- audacious-1.5.1-default-skin.patch DELETED --- --- audacious-1.5.1-desktop-name.patch DELETED --- --- audacious-1.5.1-libsad-header.patch DELETED --- --- audacious-1.5.1-playlist-length.patch DELETED --- --- audacious-1.5.1-playlist-play-clicked.patch DELETED --- --- audacious-1.5.1-xmms-skins.patch DELETED --- From ajax at fedoraproject.org Tue Jul 14 17:10:59 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 17:10:59 +0000 (UTC) Subject: rpms/libxcb/devel libxcb-1.3-to-git-e06955.patch,NONE,1.1 Message-ID: <20090714171059.A72FA11C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5666 Added Files: libxcb-1.3-to-git-e06955.patch Log Message: * Tue Jul 14 2009 Adam Jackson 1.3-1 - libxcb 1.3 - List DSO versions explicitly. - Don't package any xprint bits. Seriously, no. libxcb-1.3-to-git-e06955.patch: --- NEW FILE libxcb-1.3-to-git-e06955.patch --- diff --git a/src/Makefile.am b/src/Makefile.am index e13092a..5de3b09 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -75,7 +75,7 @@ EXTSOURCES += randr.c EXTENSION_XML += randr.xml if BUILD_RANDR lib_LTLIBRARIES += libxcb-randr.la -libxcb_randr_la_LDFLAGS = -version-info 1:0:0 +libxcb_randr_la_LDFLAGS = -version-info 1:0:1 libxcb_randr_la_LIBADD = $(XCB_LIBS) nodist_libxcb_randr_la_SOURCES = randr.c randr.h endif diff --git a/src/xcb_out.c b/src/xcb_out.c index 4c6ab13..b3050fe 100644 --- a/src/xcb_out.c +++ b/src/xcb_out.c @@ -242,7 +242,7 @@ unsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vect vector[1].iov_base = (uint32_t *) vector[1].iov_base + 1; vector[1].iov_len -= sizeof(uint32_t); } - vector[0].iov_len = sizeof(uint32_t) * (prefix[0] ? 1 : 0 | prefix[2] ? 2 : 0); + vector[0].iov_len = sizeof(uint32_t) * ((prefix[0] ? 1 : 0) + (prefix[2] ? 2 : 0)); vector[0].iov_base = prefix + !prefix[0]; } From mschwendt at fedoraproject.org Tue Jul 14 17:24:08 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Tue, 14 Jul 2009 17:24:08 +0000 (UTC) Subject: rpms/audacious-plugins/devel audacious-plugins-2.0.1-xmms-skindir.patch, NONE, 1.1 .cvsignore, 1.18, 1.19 audacious-plugins.spec, 1.47, 1.48 sources, 1.19, 1.20 audacious-plugins-1.5.1-alsa-ng.patch, 1.1, NONE audacious-plugins-1.5.1-alsaplug-id.patch, 1.1, NONE audacious-plugins-1.5.1-amidi-symbol.patch, 1.1, NONE audacious-plugins-1.5.1-libmtp.patch, 1.1, NONE audacious-plugins-1.5.1-mixer-not-ready.patch, 1.2, NONE audacious-plugins-1.5.1-neon-reader-error-crash.patch, 1.1, NONE audacious-plugins-1.5.1-sndfile-cleanup.patch, 1.2, NONE audacious-plugins-1.5.1-vorbis-oga.patch, 1.1, NONE audacious-plugins.desktop, 1.2, NONE Message-ID: <20090714172408.9EE8411C0099@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7726 Modified Files: .cvsignore audacious-plugins.spec sources Added Files: audacious-plugins-2.0.1-xmms-skindir.patch Removed Files: audacious-plugins-1.5.1-alsa-ng.patch audacious-plugins-1.5.1-alsaplug-id.patch audacious-plugins-1.5.1-amidi-symbol.patch audacious-plugins-1.5.1-libmtp.patch audacious-plugins-1.5.1-mixer-not-ready.patch audacious-plugins-1.5.1-neon-reader-error-crash.patch audacious-plugins-1.5.1-sndfile-cleanup.patch audacious-plugins-1.5.1-vorbis-oga.patch audacious-plugins.desktop Log Message: fresh package for Audacious 2.1 final - skip 2.0.1 because it doesn't include alsa-ng (like our patched 1.5.1 pkgs) and suffers from bugs and race conditions which are fixed in 2.1 audacious-plugins-2.0.1-xmms-skindir.patch: --- NEW FILE audacious-plugins-2.0.1-xmms-skindir.patch --- diff -Nur audacious-plugins-2.0.1-orig/src/skins/ui_skinselector.c audacious-plugins-2.0.1/src/skins/ui_skinselector.c --- audacious-plugins-2.0.1-orig/src/skins/ui_skinselector.c 2009-05-14 04:42:00.000000000 +0200 +++ audacious-plugins-2.0.1/src/skins/ui_skinselector.c 2009-06-05 20:01:29.000000000 +0200 @@ -251,11 +251,15 @@ skinlist_update(void) { gchar *skinsdir; + gchar xmmsskinsdir[] = "/usr/share/xmms/Skins"; skinlist_clear(); scan_skindir(skins_paths[SKINS_PATH_USER_SKIN_DIR]); scan_skindir(DATA_DIR G_DIR_SEPARATOR_S "Skins"); + if (g_file_test(xmmsskinsdir, G_FILE_TEST_IS_DIR)) { + scan_skindir( xmmsskinsdir ); + } skinsdir = getenv("SKINSDIR"); if (skinsdir) { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 30 Jun 2009 13:34:10 -0000 1.18 +++ .cvsignore 14 Jul 2009 17:24:08 -0000 1.19 @@ -1 +1 @@ -audacious-plugins-fedora-1.5.1.tar.gz +audacious-plugins-fedora-2.1.tar.bz2 Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/audacious-plugins.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- audacious-plugins.spec 2 Jul 2009 08:59:14 -0000 1.47 +++ audacious-plugins.spec 14 Jul 2009 17:24:08 -0000 1.48 @@ -1,66 +1,69 @@ # Minimum audacious/audacious-plugins version in inter-package -# dependencies. We have 1.5.1 for both, so we enforce 1.5.1. -%define aud_ver 1.5.1 - -Name: audacious-plugins -Version: 1.5.1 -Release: 10%{?dist} -Summary: Plugins for the Audacious media player -Group: Applications/Multimedia +# dependencies. +# We need 2.1 as 2.0.1 is insufficient. +%define aud_ver 2.1 + +Name: audacious-plugins +Version: 2.1 +Release: 1%{?dist} +Summary: Plugins for the Audacious media player +Group: Applications/Multimedia +URL: http://audacious-media-player.org/ # LGPLv2+: adplug, bio2jack, rocklight # MIT: crystalizer, dockalbumart # BSD: lastfm -License: GPLv2 and GPLv2+ and LGPLv2+ and MIT and BSD +License: GPLv2 and GPLv2+ and LGPLv2+ and MIT and BSD -URL: http://audacious-media-player.org/ -# The original source files contain various codecs which clash -# with the FE license guidelines. They are removed in the -fedora- -# file. -# Source0: http://distfiles.atheme.org/audacious-plugins-%{version}.tgz -Source0: audacious-plugins-fedora-%{version}.tar.gz -Source1: audacious-plugins.desktop -Patch3: audacious-plugins-1.5.1-libmtp.patch -Patch4: audacious-plugins-1.5.1-vorbis-oga.patch -Patch5: audacious-plugins-1.5.1-timidity-cfg.patch -Patch6: audacious-plugins-1.5.1-amidi-symbol.patch -Patch7: audacious-plugins-1.5.1-neon-reader-error-crash.patch -Patch8: audacious-plugins-1.5.1-sndfile-cleanup.patch - -# alsa-ng plugin from 2.1 devel -Patch50: audacious-plugins-1.5.1-alsa-ng.patch -Patch51: audacious-plugins-1.5.1-alsaplug-id.patch -Patch52: audacious-plugins-1.5.1-mixer-not-ready.patch - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: audacious-devel >= %{aud_ver}, esound-devel >= 0.2, libvorbis-devel >= 1.0 -BuildRequires: zlib-devel, desktop-file-utils >= 0.9, alsa-lib-devel -BuildRequires: libsidplay-devel, libnotify-devel -BuildRequires: libmpcdec-devel, libmusicbrainz-devel -BuildRequires: taglib-devel >= 1.4, libogg-devel >= 1.0, flac-devel >= 1.1.2 -BuildRequires: libvisual-devel >= 0.2, SDL-devel >= 1.2.9 -BuildRequires: gettext, libbinio-devel, curl-devel -BuildRequires: arts-devel, libmodplug-devel, lirc-devel -BuildRequires: jack-audio-connection-kit-devel, libsamplerate-devel -BuildRequires: pulseaudio-libs-devel, fluidsynth-devel -BuildRequires: wavpack-devel >= 4.31 -BuildRequires: libXcomposite-devel -BuildRequires: libmtp-devel -BuildRequires: libmowgli-devel >= 0.5.0 -BuildRequires: mcs-devel >= 0.6.0 -BuildRequires: libcdio-devel >= 0.70 -BuildRequires: libcddb-devel >= 1.2.1 -BuildRequires: libsndfile-devel +# Modified source tarball to remove problematic files. +# Removed: aac alc demac tta wma +# Not removed (no codec included): madplug mms +# Disabled via options where possible, see %%build. +Source0: audacious-plugins-fedora-%{version}.tar.bz2 +#Source0: http://distfiles.atheme.org/audacious-plugins-%{version}.tgz + +Patch1: audacious-plugins-1.5.1-timidity-cfg.patch +Patch2: audacious-plugins-2.0.1-xmms-skindir.patch + +BuildRequires: audacious-devel >= %{aud_ver} +BuildRequires: jack-audio-connection-kit-devel libsamplerate-devel +BuildRequires: alsa-lib-devel +BuildRequires: pulseaudio-libs-devel +BuildRequires: esound-devel +BuildRequires: libsndfile-devel +BuildRequires: taglib-devel +BuildRequires: wavpack-devel +BuildRequires: libsidplay-devel +BuildRequires: libogg-devel libvorbis-devel +BuildRequires: flac-devel +BuildRequires: libmodplug-devel +BuildRequires: fluidsynth-devel +BuildRequires: libshout-devel +BuildRequires: libmpcdec-devel +BuildRequires: libtimidity-devel +BuildRequires: curl-devel +BuildRequires: libbinio-devel +BuildRequires: libcdio-devel +BuildRequires: SDL-devel +BuildRequires: lirc-devel +BuildRequires: bluez-libs-devel +BuildRequires: libXcomposite-devel +BuildRequires: libcddb-devel +BuildRequires: libmtp-devel +BuildRequires: libxml2-devel +BuildRequires: gettext # experimental, disabled by default -BuildRequires: neon-devel >= 0.25 +BuildRequires: neon-devel + +Requires: audacious >= %{aud_ver} -Requires: audacious >= %{aud_ver} +# last in 1.5.1 +Obsoletes: audacious-plugins-arts # last tagged f8-final -Obsoletes: audacious-plugins-pulseaudio <= 1.3.5 -Provides: audacious-plugins-pulseaudio = %{version} +Obsoletes: audacious-plugins-pulseaudio <= 1.3.5 +Provides: audacious-plugins-pulseaudio = %{version} %description Audacious is a media player that currently uses a skinned user interface @@ -70,85 +73,69 @@ This package provides essential plugins visualization. -%package jack -Summary: Audacious output plugin for JACK sound service -Group: Applications/Multimedia -Obsoletes: audacious-jack <= 1.1.2 +%package jack +Summary: Audacious output plugin for JACK sound service +Group: Applications/Multimedia +# ancient +#Obsoletes: audacious-jack <= 1.1.2 +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} - -%description jack +%description jack This package provides an Audacious output plugin that uses the JACK sound service. -%package esd -Summary: Audacious output plugin for esd sound service -Group: Applications/Multimedia -Obsoletes: audacious-esd <= 1.1.2 - -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} +%package esd +Summary: Audacious output plugin for esd sound service +Group: Applications/Multimedia +# ancient +#Obsoletes: audacious-esd <= 1.1.2 +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -%description esd +%description esd This package provides an Audacious output plugin that uses the ESD sound server. -%package arts -Summary: Audacious output plugin for KDE arts sound service -Group: Applications/Multimedia -Obsoletes: audacious-arts <= 1.1.2 - -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} - -%description arts -This package provides an Audacious output plugin that uses the -KDE arts sound server. - +%package amidi +Summary: Audacious input plugin for amidi +Group: Applications/Multimedia +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -%package amidi -Summary: Audacious input plugin for amidi -Group: Applications/Multimedia - -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} - -%description amidi +%description amidi This package provides an Audacious input plugin that uses the amidi sound service. -%package wavpack -Summary: Audacious input plugin for wavpack -Group: Applications/Multimedia +%package wavpack +Summary: Audacious input plugin for wavpack +Group: Applications/Multimedia +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} - -%description wavpack +%description wavpack This package provides an Audacious input plugin that reads WavPack compressed files. -%package metronome -Summary: Audacious input plugin simulating a metronome -Group: Applications/Multimedia - -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} +%package metronome +Summary: Audacious input plugin simulating a metronome +Group: Applications/Multimedia +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -%description metronome +%description metronome This package provides an Audacious input plugin that simulates a metronome. -%package vortex -Summary: Audacious input plugin for vortex audio files -Group: Applications/Multimedia +%package vortex +Summary: Audacious input plugin for vortex audio files +Group: Applications/Multimedia +Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} -Requires: audacious >= %{aud_ver}, audacious-plugins >= %{aud_ver} - -%description vortex +%description vortex This package provides an Audacious input plugin that reads vortex compressed files. @@ -157,42 +144,32 @@ vortex compressed files. %prep %setup -q -n audacious-plugins-fedora-%{version} -# Use libmtp 0.3 -%patch3 -p1 -b .libmtp - -# accept .oga files -%patch4 -p1 -b vorbis-oga - -# look for timidity.cfg in /etc -%patch5 -p1 -b timidity-cfg - -# fix missing symbols in amidi -%patch6 -p1 -b amidi-symbols - -# Patch possible neon crash on buffer underrun -%patch7 -p1 -b neon-reader-error-crash - -# pause and seek for libsndfile input plugin -%patch8 -p1 -b .sndfile-cleanup - -%patch50 -p1 -b .alsa-ng -%patch51 -p1 -b .alsa-ng2 -%patch52 -p1 -b .mixer-not-ready +%patch1 -p1 -b .timidity-cfg +%patch2 -p1 -b .xmms-skindir sed -i '\,^.SILENT:,d' buildsys.mk.in %build -%configure \ - --disable-rpath \ - --enable-chardet \ - --disable-dependency-tracking \ - --enable-amidiplug \ - --disable-amidiplug-dummy \ - --disable-sse2 \ - --disable-rootvis \ - --disable-projectm \ - --enable-neon - +# --disable-esd +# --enable-neon : experimental, disabled by default +%configure \ + --enable-chardet \ + --enable-amidiplug \ + --enable-neon \ + \ + --disable-aac \ + --disable-ape \ + --disable-mp3 \ + --disable-mms \ + --disable-tta \ + --disable-wma \ + --disable-libmadtest \ + \ + --disable-oss \ + --disable-projectm \ + --disable-sse2 \ + --disable-rpath \ + --disable-dependency-tracking make %{?_smp_mflags} @@ -201,25 +178,14 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" %find_lang %{name} -desktop-file-install --vendor fedora \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ - %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT -%post -update-desktop-database &> /dev/null || : - - -%postun -update-desktop-database &> /dev/null || : - - %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS COPYING NEWS +%doc AUTHORS COPYING %{_libdir}/audacious/Input/ %{_libdir}/audacious/Output/ %{_libdir}/audacious/Container/ @@ -233,22 +199,13 @@ update-desktop-database &> /dev/null || %exclude %{_libdir}/audacious/Input/metronom.so %exclude %{_libdir}/audacious/Input/vtx.so %exclude %{_libdir}/audacious/Output/jackout.so -%exclude %{_libdir}/audacious/Output/arts.so %exclude %{_libdir}/audacious/Output/ESD.so -%{_datadir}/applications/fedora-audacious-plugins.desktop -%{_datadir}/audacious/images/audioscrobbler.png -%{_datadir}/audacious/images/audioscrobbler_badge.png -%{_datadir}/audacious/paranormal/ +%{_datadir}/audacious/ %files jack %defattr(-,root,root,-) %{_libdir}/audacious/Output/jackout.so -%files arts -%defattr(-,root,root,-) -%{_bindir}/audacious-arts-helper -%{_libdir}/audacious/Output/arts.so - %files esd %defattr(-,root,root,-) %{_libdir}/audacious/Output/ESD.so @@ -272,127 +229,27 @@ update-desktop-database &> /dev/null || %changelog -* Thu Jul 2 2009 Michael Schwendt - 1.5.1-10 -- Prevent alsalib mixer crash if mixer isn't ready. +* Tue Jul 14 2009 Michael Schwendt - 2.1-1 +- Upgrade to 2.1 final. -* Mon Jun 29 2009 Michael Schwendt - 1.5.1-9 -- Use old "ALSA" plugin id for config file. -- Keep old mixer level even if mixer isn't ready. - -* Mon Jun 29 2009 Michael Schwendt - 1.5.1-8 -- Replace old ALSA output plugin and related patches with the - "alsa-ng" code from Audacious 2.1 development. This is supposed to - get rid of old cruft and mutex-locking overhead that cause performance - regression in 1.5.1-6. - -* Fri Jun 5 2009 Michael Schwendt - 1.5.1-7 -- Remove unapplied patches and verify that they have been merged. +* Mon Jun 29 2009 Michael Schwendt - 2.1-0.1.beta1 +- Upgrade to 2.1beta1. +- Drop merged/obsolete patches. + +* Sat Jun 6 2009 Michael Schwendt - 2.0.1-0.3 +- Make libtimidity not try to open non-existing files. +- Fix non-top-level configure dialogs. + +* Sat Jun 6 2009 Michael Schwendt - 2.0.1-0.1 +- Upgrade to 2.0.1. +- Fix sndfile plugin cleanup crash. +- Major spec overhaul, and drop old %%changelog entries. +- Obsolete -arts plugin. - Multiple different licenses are used for the individual plugins. - Move amidi-plug directory to amidi subpackage. - -* Thu Jun 4 2009 Michael Schwendt - 1.5.1-6 -- Apply ALSA driver patches by Hans de Goede (#499942). -- Minor spec updates. -- Update scriptlets in accordance with guidelines. - Build with libsndfile plugin for advanced formats in WAV and patch it for pause and seek (also fixes #501007). * Wed May 06 2009 Ralf Ertzinger 1.5.1-5 - Fix possible crash on neon buffer underrun (BZ#496413) -* Fri May 01 2009 Ralf Ertzinger 1.5.1-4 -- Accept .oga files (BZ#479120) -- Look for timitidy.cfg in /etc (BZ#450933) -- Fix missing symbols in amidi-plugin (BZ#478557) -- Include CD-audio plugin (BZ#442921) - -* Mon Feb 23 2009 Fedora Release Engineering - 1.5.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sat Sep 06 2008 Ralf Ertzinger 1.5.1-2 -- Incorporate libmtp patch by Linus Walleij (BZ#459293) - -* Sun Jun 08 2008 Ralf Ertzinger 1.5.1-1 -- Update to 1.5.1 - -* Mon Feb 11 2008 Ralf Ertzinger 1.4.5-1 -- Update to 1.4.5 - -* Fri Jan 02 2008 Ralf Ertzinger 1.4.4-2 -- Fix compilation with GCC 4.3 - -* Wed Jan 02 2008 Ralf Ertzinger 1.4.4-1 -- Update to 1.4.4 - -* Mon Dec 31 2007 Ralf Ertzinger 1.4.3.2-1 -- Update to 1.4.3.2 - -* Sun Dec 29 2007 Ralf Ertzinger 1.4.3.1-1 -- Update to 1.4.3.1 - -* Sat Dec 29 2007 Ralf Ertzinger 1.4.3-1 -- Update to 1.4.3 - -* Thu Dec 04 2007 Ralf Ertzinger 1.4.2-1 -- Update to 1.4.2 - -* Thu Nov 22 2007 Ralf Ertzinger 1.4.1-3 -- Fix some locking issues in the neon (HTTP/HTTPS stream) plugin - -* Mon Nov 19 2007 Ralf Ertzinger 1.4.1-1 -- Update to 1.4.1 - -* Mon Oct 15 2007 Lubomir Kundrak 1.3.5-2 -- Rebuild for clean upgrade path - -* Sat Jun 9 2007 Ralf Ertzinger 1.3.5-1.fc8 -- Update to 1.3.5 - -* Sat May 26 2007 Ralf Ertzinger 1.3.4-2.fc8 -- Bump tag for rebuild - -* Wed May 16 2007 Ralf Ertzinger 1.3.4-1.fc7 -- Update to 1.3.4 - -* Sun Apr 22 2007 Ralf Ertzinger 1.3.3-2.fc7 -- Introduce aud_ver variable into specfile - -* Fri Apr 20 2007 Ralf Ertzinger 1.3.3-1.fc7 -- Update to 1.3.3 - -* Sat Apr 07 2007 Ralf Ertzinger 1.3.2-1.fc7 -- Update to 1.3.2 - -* Fri Apr 06 2007 Ralf Ertzinger 1.3.1-2.fc7 -- Own %%{_datadir}/audacious - -* Mon Apr 02 2007 Ralf Ertzinger 1.3.1-1.fc7 -- Update to 1.3.1 - -* Sun Feb 18 2007 Ralf Ertzinger 1.2.5-6.fc7 -- Rebuild against new FLAC libraries (for real, this time) - -* Thu Feb 15 2007 Ralf Ertzinger 1.2.5-5.fc7 -- Rebuild against new FLAC libraries - -* Mon Jan 15 2007 Ralf Ertzinger 1.2.5-4.fc7 -- Fix typo in BuildRequires - -* Sat Dec 16 2006 Ralf Ertzinger 1.2.5-3.fc7 -- Rebuild for new wavpack - -* Sun Dec 03 2006 Ralf Ertzinger 1.2.5-2.fc7 -- Disable sndfile, which causes a non-pausable wav plugin to - be built - -* Thu Nov 30 2006 Ralf Ertzinger 1.2.5-1.fc7 -- Update to 1.2.5 -- Add audacious-plugins-wavpack for WavPack input plugin -- Drop cddb patch, included upstream - -* Sun Nov 26 2006 Ralf Ertzinger 1.2.2-1.fc7 -- Initial RPM build for FE Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 30 Jun 2009 13:34:10 -0000 1.19 +++ sources 14 Jul 2009 17:24:08 -0000 1.20 @@ -1 +1 @@ -41cd1e4bf7ba15fff449e877f9be2d7f audacious-plugins-fedora-1.5.1.tar.gz +199dfef2aa2020f0405d54b67e6540f7 audacious-plugins-fedora-2.1.tar.bz2 --- audacious-plugins-1.5.1-alsa-ng.patch DELETED --- --- audacious-plugins-1.5.1-alsaplug-id.patch DELETED --- --- audacious-plugins-1.5.1-amidi-symbol.patch DELETED --- --- audacious-plugins-1.5.1-libmtp.patch DELETED --- --- audacious-plugins-1.5.1-mixer-not-ready.patch DELETED --- --- audacious-plugins-1.5.1-neon-reader-error-crash.patch DELETED --- --- audacious-plugins-1.5.1-sndfile-cleanup.patch DELETED --- --- audacious-plugins-1.5.1-vorbis-oga.patch DELETED --- --- audacious-plugins.desktop DELETED --- From stahnma at fedoraproject.org Tue Jul 14 17:31:31 2009 From: stahnma at fedoraproject.org (Michael Stahnke) Date: Tue, 14 Jul 2009 17:31:31 +0000 (UTC) Subject: rpms/epel-release/devel dead.package, NONE, 1.1 GPL, 1.1, NONE RPM-GPG-KEY-EPEL, 1.1, NONE epel-testing.repo, 1.2, NONE epel.repo, 1.2, NONE Message-ID: <20090714173131.747B011C0099@cvs1.fedora.phx.redhat.com> Author: stahnma Update of /cvs/pkgs/rpms/epel-release/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8629 Added Files: dead.package Removed Files: GPL RPM-GPG-KEY-EPEL epel-testing.repo epel.repo Log Message: Marking epel-release as invalid in devel --- NEW FILE dead.package --- epel-release does not need to be in devel branch. Is obviously only used for EPEL and not rawhide. --- GPL DELETED --- --- RPM-GPG-KEY-EPEL DELETED --- --- epel-testing.repo DELETED --- --- epel.repo DELETED --- From mcpierce at fedoraproject.org Tue Jul 14 17:37:24 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 17:37:24 +0000 (UTC) Subject: rpms/rubygem-RedCloth/devel rubygem-RedCloth.spec,1.1,1.2 Message-ID: <20090714173724.DFABE11C0099@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10118 Modified Files: rubygem-RedCloth.spec Log Message: * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/devel/rubygem-RedCloth.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-RedCloth.spec 1 May 2009 20:56:34 -0000 1.1 +++ rubygem-RedCloth.spec 14 Jul 2009 17:36:54 -0000 1.2 @@ -11,7 +11,7 @@ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -39,9 +39,10 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} - +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" gem install --local --install-dir %{buildroot}%{gemdir} \ --force -V --rdoc %{SOURCE0} + mkdir -p %{buildroot}/%{_bindir} cp -a %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} @@ -76,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + * Fri May 1 2009 Darryl Pierce - 4.1.9-4 - First official build for Fedora. From cwickert at fedoraproject.org Tue Jul 14 17:38:43 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 14 Jul 2009 17:38:43 +0000 (UTC) Subject: rpms/xfce4-xmms-plugin/devel dead.package, NONE, 1.1 .cvsignore, 1.4, NONE Makefile, 1.1, NONE sources, 1.4, NONE xfce4-xmms-plugin.spec, 1.9, NONE Message-ID: <20090714173843.05D5511C0099@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-xmms-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10402 Added Files: dead.package Removed Files: .cvsignore Makefile sources xfce4-xmms-plugin.spec Log Message: RIP xfce4-xmms-plugin --- NEW FILE dead.package --- Dead upstream, if it will be revived, the new name will be xfce4-playercontrol-plugin. But even this seems orphaned. --- .cvsignore DELETED --- --- Makefile DELETED --- --- sources DELETED --- --- xfce4-xmms-plugin.spec DELETED --- From pkgdb at fedoraproject.org Tue Jul 14 17:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:39:43 +0000 Subject: [pkgdb] php-eaccelerator: remi has requested watchcommits Message-ID: <20090714173943.493E810F8A6@bastion2.fedora.phx.redhat.com> remi has requested the watchcommits acl on php-eaccelerator (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Tue Jul 14 17:39:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:39:40 +0000 Subject: [pkgdb] php-eaccelerator: remi has requested watchbugzilla Message-ID: <20090714173940.8E3D410F89C@bastion2.fedora.phx.redhat.com> remi has requested the watchbugzilla acl on php-eaccelerator (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Tue Jul 14 17:39:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:39:45 +0000 Subject: [pkgdb] php-eaccelerator: remi has requested commit Message-ID: <20090714173945.04E4510F8B7@bastion2.fedora.phx.redhat.com> remi has requested the commit acl on php-eaccelerator (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Tue Jul 14 17:40:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:40:21 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090714174021.47DBC10F8A6@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora devel is now owned by chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Tue Jul 14 17:41:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:41:06 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090714174106.A497410F8A3@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 11 is now owned by chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From pkgdb at fedoraproject.org Tue Jul 14 17:41:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 17:41:49 +0000 Subject: [pkgdb] f-spot ownership updated Message-ID: <20090714174149.4B8BB10F8B3@bastion2.fedora.phx.redhat.com> Package f-spot in Fedora 10 is now owned by chkr To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/f-spot From remi at fedoraproject.org Tue Jul 14 17:45:03 2009 From: remi at fedoraproject.org (Remi Collet) Date: Tue, 14 Jul 2009 17:45:03 +0000 (UTC) Subject: rpms/php-eaccelerator/devel eaccelerator-nophpversioncheck.patch, NONE, 1.1 .cvsignore, 1.11, 1.12 php-eaccelerator.spec, 1.42, 1.43 sources, 1.11, 1.12 eaccelerator-0.9.5.1-nophpversioncheck.patch, 1.1, NONE Message-ID: <20090714174503.399C511C0099@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-eaccelerator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10892 Modified Files: .cvsignore php-eaccelerator.spec sources Added Files: eaccelerator-nophpversioncheck.patch Removed Files: eaccelerator-0.9.5.1-nophpversioncheck.patch Log Message: update to 0.9.6 SVN snapshot, PHP 5.3.0 build, fix broken dep, Bug #511127 eaccelerator-nophpversioncheck.patch: --- NEW FILE eaccelerator-nophpversioncheck.patch --- --- eaccelerator-svn355/eaccelerator.c.nophpversioncheck 2008-06-20 19:35:26.000000000 +0200 +++ eaccelerator-svn355/eaccelerator.c 2009-07-13 22:06:44.000000000 +0200 @@ -1722,26 +1722,6 @@ static void register_eaccelerator_as_zend_extension(); -static int eaccelerator_check_php_version(TSRMLS_D) { - zval v; - int ret = 0; - if (zend_get_constant("PHP_VERSION", sizeof("PHP_VERSION")-1, &v TSRMLS_CC)) { - if (Z_TYPE(v) == IS_STRING && - Z_STRLEN(v) == sizeof(PHP_VERSION)-1 && - strcmp(Z_STRVAL(v),PHP_VERSION) == 0) { - ret = 1; - } else { - ea_debug_error("[%s] This build of \"%s\" was compiled for PHP version %s. Rebuild it for your PHP version (%s) or download precompiled binaries.\n", - EACCELERATOR_EXTENSION_NAME, EACCELERATOR_EXTENSION_NAME,PHP_VERSION,Z_STRVAL(v)); - } - zval_dtor(&v); - } else { - ea_debug_error("[%s] This build of \"%s\" was compiled for PHP version %s. Rebuild it for your PHP version.\n", - EACCELERATOR_EXTENSION_NAME, EACCELERATOR_EXTENSION_NAME, PHP_VERSION); - } - return ret; -} - static void make_hash_dirs(char *fullpath, int lvl) { int j; int n = strlen(fullpath); @@ -1775,13 +1755,6 @@ } #endif } - if (!eaccelerator_check_php_version(TSRMLS_C)) { - /* - * do not return FAILURE, because it causes PHP to completely fail. - * Just disable eAccelerator instead of making eA fail starting php - */ - return SUCCESS; - } ZEND_INIT_MODULE_GLOBALS(eaccelerator, eaccelerator_init_globals, NULL); REGISTER_INI_ENTRIES(); REGISTER_STRING_CONSTANT("EACCELERATOR_VERSION", EACCELERATOR_VERSION, CONST_CS | CONST_PERSISTENT); Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/php-eaccelerator/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 22 Dec 2008 18:43:18 -0000 1.11 +++ .cvsignore 14 Jul 2009 17:45:02 -0000 1.12 @@ -1 +1 @@ -eaccelerator-0.9.5.3.tar.bz2 +eaccelerator-svn358.tar.gz Index: php-eaccelerator.spec =================================================================== RCS file: /cvs/extras/rpms/php-eaccelerator/devel/php-eaccelerator.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- php-eaccelerator.spec 26 Feb 2009 20:32:09 -0000 1.42 +++ php-eaccelerator.spec 14 Jul 2009 17:45:02 -0000 1.43 @@ -3,22 +3,28 @@ # This is the apache userid, used for sysvipc semaphores which is the default # on ppc since spinlock is not detected (not supported?) # We also use it for the default ownership of the cache directory -%define apache 48 +%global apache 48 +%global svn 358 Summary: PHP accelerator, optimizer, encoder and dynamic content cacher Name: php-eaccelerator -Version: 0.9.5.3 -Release: 3%{?dist} +Version: 0.9.6 +Release: 0.1%{?svn:.svn%{svn}}%{?dist} Epoch: 1 # The eaccelerator module itself is GPLv2+ # The PHP control panel is under the Zend license (control.php and dasm.php) License: GPLv2+ and Zend Group: Development/Languages URL: http://eaccelerator.net/ +%if 0%{svn} +Source0: http://snapshots.eaccelerator.net/eaccelerator-svn%{svn}.tar.gz +%else Source0: http://bart.eaccelerator.net/source/%{version}/eaccelerator-%{version}.tar.bz2 +%endif Source1: php-eaccelerator.cron Patch0: eaccelerator-0.9.5-rc1-config.patch -Patch1: eaccelerator-0.9.5.1-nophpversioncheck.patch +Patch1: eaccelerator-nophpversioncheck.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} @@ -35,9 +41,15 @@ that the overhead of compiling is almost %prep +%if 0%{svn} +%setup -q -n eaccelerator-svn%{svn} +%else %setup -q -n eaccelerator-%{version} -%patch0 -p1 -b .config +%endif + +#patch0 -p1 -b .config %patch1 -p1 -b .nophpversioncheck + # Change paths in the example config, other values are changed by a patch %{__sed} -i 's|/usr/lib/php4/|%{php_extdir}/|g; s|/tmp/eaccelerator|%{_var}/cache/php-eaccelerator|g' \ @@ -48,11 +60,9 @@ that the overhead of compiling is almost phpize %configure \ %ifnarch %{ix86} x86_64 - --with-eaccelerator-userid="%{apache}" \ + --with-eaccelerator-userid="%{apache}" %endif - --with-eaccelerator-shared-memory \ - --with-eaccelerator-sessions \ - --with-eaccelerator-content-caching + %{__make} %{?_smp_mflags} @@ -113,6 +123,11 @@ fi %changelog +* Tue Jul 14 2009 Remi Collet - 1:0.9.6-0.1.svn358 +- rebuild for new PHP 5.3.0 ABI (20090626) +- update to latest SVN snapshot +- remove shared-memory, sessions and content-caching options + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.9.5.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/php-eaccelerator/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 22 Dec 2008 18:43:18 -0000 1.11 +++ sources 14 Jul 2009 17:45:02 -0000 1.12 @@ -1 +1 @@ -caf797223739516882f870342f74b935 eaccelerator-0.9.5.3.tar.bz2 +ebae9587e9ecdd3537b8e78d4f58fce5 eaccelerator-svn358.tar.gz --- eaccelerator-0.9.5.1-nophpversioncheck.patch DELETED --- From mclasen at fedoraproject.org Tue Jul 14 17:46:34 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 14 Jul 2009 17:46:34 +0000 (UTC) Subject: rpms/webkitgtk/devel .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 webkitgtk.spec, 1.10, 1.11 Message-ID: <20090714174634.216BC11C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10994 Modified Files: .cvsignore sources webkitgtk.spec Log Message: 1.1.11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Jun 2009 02:50:27 -0000 1.6 +++ .cvsignore 14 Jul 2009 17:46:03 -0000 1.7 @@ -1 +1 @@ -webkit-1.1.10.tar.gz +webkit-1.1.11.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Jun 2009 02:50:27 -0000 1.6 +++ sources 14 Jul 2009 17:46:03 -0000 1.7 @@ -1 +1 @@ -b852753b3e21f010f565312132f88311 webkit-1.1.10.tar.gz +022a72ba5b7fa9e29553c03bf027215f webkit-1.1.11.tar.gz Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- webkitgtk.spec 8 Jul 2009 19:52:54 -0000 1.10 +++ webkitgtk.spec 14 Jul 2009 17:46:03 -0000 1.11 @@ -34,8 +34,8 @@ %bcond_with wml Name: webkitgtk -Version: 1.1.10 -Release: 3%{?dist} +Version: 1.1.11 +Release: 1%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -185,6 +185,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 13 2009 Matthias Clasen - 1.1.11-1 +- Update to 1.1.11 + * Wed Jul 08 2009 Peter Gordon - 1.1.10-3 - Move jsc to the -devel subpackage (#510355). From pwouters at fedoraproject.org Tue Jul 14 18:04:46 2009 From: pwouters at fedoraproject.org (Paul Wouters) Date: Tue, 14 Jul 2009 18:04:46 +0000 (UTC) Subject: rpms/unbound/devel sources,1.11,1.12 Message-ID: <20090714180446.8995C11C0099@cvs1.fedora.phx.redhat.com> Author: pwouters Update of /cvs/extras/rpms/unbound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13497 Modified Files: sources Log Message: new sources Index: sources =================================================================== RCS file: /cvs/extras/rpms/unbound/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 21 Jun 2009 04:14:53 -0000 1.11 +++ sources 14 Jul 2009 18:04:45 -0000 1.12 @@ -1 +1,4 @@ +d2eb61c10c72de752aef2f77850d4f53 unbound-1.3.1rc2.tar.gz 783325c26ae1a47be0e496c94f3e1cca unbound-1.3.0.tar.gz +1aa735c95cff3d8bdec39b54ced7dd3d unbound-1.3.2.tar.gz +6feffef1e6ce315e465b5f747af76494 unbound-1.3.1.tar.gz From mbarnes at fedoraproject.org Tue Jul 14 18:13:08 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 14 Jul 2009 18:13:08 +0000 (UTC) Subject: rpms/evolution-data-server/F-11 evolution-data-server-2.26.3-camel-vee-folder.patch, NONE, 1.1 evolution-data-server.spec, 1.262, 1.263 Message-ID: <20090714181308.973E411C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-data-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14245 Modified Files: evolution-data-server.spec Added Files: evolution-data-server-2.26.3-camel-vee-folder.patch Log Message: * Tue Jul 14 2009 Matthew Barnes - 2.26.3-2.fc11 - Add patch for RH bug #511079 (search folders hanging). evolution-data-server-2.26.3-camel-vee-folder.patch: --- NEW FILE evolution-data-server-2.26.3-camel-vee-folder.patch --- diff -up evolution-data-server-2.26.3/camel/camel-vee-folder.c.camel-vee-folder evolution-data-server-2.26.3/camel/camel-vee-folder.c --- evolution-data-server-2.26.3/camel/camel-vee-folder.c.camel-vee-folder 2009-06-26 08:36:57.000000000 -0400 +++ evolution-data-server-2.26.3/camel/camel-vee-folder.c 2009-07-14 14:10:51.000000000 -0400 @@ -1533,12 +1533,14 @@ folder_changed_change(CamelSession *sess } CAMEL_VEE_FOLDER_LOCK(vf, summary_lock); - if (matches_changed || matches_added || changes->uid_removed->len||present) - camel_db_begin_transaction (folder->parent_store->cdb_w, NULL); if (folder_unmatched != NULL) CAMEL_VEE_FOLDER_LOCK(folder_unmatched, summary_lock); + if (matches_changed || matches_added || changes->uid_removed->len||present) + camel_db_begin_transaction (folder->parent_store->cdb_w, NULL); + + dd(printf("Vfolder '%s' subfolder changed '%s'\n", folder->full_name, sub->full_name)); dd(printf(" changed %u added %u removed %u\n", changes->uid_changed->len, changes->uid_added->len, changes->uid_removed->len)); Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/F-11/evolution-data-server.spec,v retrieving revision 1.262 retrieving revision 1.263 diff -u -p -r1.262 -r1.263 --- evolution-data-server.spec 29 Jun 2009 13:18:51 -0000 1.262 +++ evolution-data-server.spec 14 Jul 2009 18:13:08 -0000 1.263 @@ -31,7 +31,7 @@ Name: evolution-data-server Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -53,6 +53,9 @@ Patch11: evolution-data-server-1.10.1-ca # RH bug #243296 Patch12: evolution-data-server-1.11.5-fix-64bit-acinclude.patch +# RH bug 511079 / GNOME bug #583507 +Patch13: evolution-data-server-2.26.3-camel-vee-folder.patch + ### Build Dependencies ### BuildRequires: GConf2-devel @@ -136,6 +139,7 @@ This package contains developer document %patch10 -p1 -b .fix-ldap-query %patch11 -p1 -b .camel-folder-summary-crash %patch12 -p1 -b .fix-64bit-acinclude +%patch13 -p1 -b .camel-vee-folder mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -381,6 +385,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Tue Jul 14 2009 Matthew Barnes - 2.26.3-2.fc11 +- Add patch for RH bug #511079 (search folders hanging). + * Mon Jun 29 2009 Matthew Barnes - 2.26.3-1.fc11 - Update to 2.26.3 From pkgdb at fedoraproject.org Tue Jul 14 18:17:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:17:01 +0000 Subject: [pkgdb] gtk-murrine-engine ownership updated Message-ID: <20090714181702.07ED810F899@bastion2.fedora.phx.redhat.com> Package gtk-murrine-engine in Fedora devel is now owned by mso To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Tue Jul 14 18:17:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:17:20 +0000 Subject: [pkgdb] gtk-murrine-engine ownership updated Message-ID: <20090714181720.8655110F888@bastion2.fedora.phx.redhat.com> Package gtk-murrine-engine in Fedora 10 is now owned by mso To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Tue Jul 14 18:17:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:17:24 +0000 Subject: [pkgdb] gtk-murrine-engine ownership updated Message-ID: <20090714181724.C18D210F899@bastion2.fedora.phx.redhat.com> Package gtk-murrine-engine in Fedora 11 is now owned by mso To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Tue Jul 14 18:22:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:22:42 +0000 Subject: [pkgdb] pyusb ownership updated Message-ID: <20090714182242.C23F310F888@bastion2.fedora.phx.redhat.com> Package pyusb in Fedora devel was orphaned by katzj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyusb From pkgdb at fedoraproject.org Tue Jul 14 18:22:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:22:46 +0000 Subject: [pkgdb] garmin-sync ownership updated Message-ID: <20090714182246.6130410F899@bastion2.fedora.phx.redhat.com> Package garmin-sync in Fedora devel was orphaned by katzj To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/garmin-sync From ausil at fedoraproject.org Tue Jul 14 18:24:15 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Tue, 14 Jul 2009 18:24:15 +0000 (UTC) Subject: rpms/webkitgtk/devel webkit-1.1.11-atomic-word.patch, NONE, 1.1 webkitgtk.spec, 1.11, 1.12 webkit-1.1.8-atomic-word.patch, 1.2, NONE Message-ID: <20090714182415.6D5BC11C0099@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15288 Modified Files: webkitgtk.spec Added Files: webkit-1.1.11-atomic-word.patch Removed Files: webkit-1.1.8-atomic-word.patch Log Message: update the attomic word patch for webkit 1.1.11 webkit-1.1.11-atomic-word.patch: --- NEW FILE webkit-1.1.11-atomic-word.patch --- --- webkit-1.1.11/JavaScriptCore/wtf/Platform.h.orig 2009-07-14 13:01:51.000000000 -0500 +++ webkit-1.1.11/JavaScriptCore/wtf/Platform.h 2009-07-14 13:04:59.000000000 -0500 @@ -272,9 +272,16 @@ #endif /* PLATFORM(SPARC64) */ -#if defined(__sparc64__) +#if defined(__sparc64__)\ + || defined(__sparc__) && defined(_arch64__) #define WTF_PLATFORM_SPARC64 1 #define WTF_PLATFORM_BIG_ENDIAN 1 +#else +/* PLATFORM(SPARC) */ +#if defined(__sparc__) +#define WTF_PLATFORM_SPARC 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif #endif /* PLATFORM(WINCE) && PLATFORM(QT) diff -uNr webkit-1.1.8-orig/JavaScriptCore/wtf/Threading.h webkit-1.1.8/JavaScriptCore/wtf/Threading.h --- webkit-1.1.8-orig/JavaScriptCore/wtf/Threading.h 2009-05-14 10:25:19.000000000 -0500 +++ webkit-1.1.8/JavaScriptCore/wtf/Threading.h 2009-06-13 12:59:06.000000000 -0500 @@ -207,14 +207,14 @@ #elif COMPILER(GCC) #define WTF_USE_LOCKFREE_THREADSAFESHARED 1 -inline void atomicIncrement(int volatile* addend) { __gnu_cxx::__atomic_add(addend, 1); } -inline int atomicDecrement(int volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, -1) - 1; } +inline void atomicIncrement(_Atomic_word volatile* addend) { __gnu_cxx::__atomic_add(addend, 1); } +inline _Atomic_word atomicDecrement(_Atomic_word volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, -1) - 1; } #endif class ThreadSafeSharedBase : Noncopyable { public: - ThreadSafeSharedBase(int initialRefCount = 1) + ThreadSafeSharedBase(_Atomic_word initialRefCount = 1) : m_refCount(initialRefCount) { } @@ -234,12 +234,12 @@ return refCount() == 1; } - int refCount() const + _Atomic_word refCount() const { #if !USE(LOCKFREE_THREADSAFESHARED) MutexLocker locker(m_mutex); #endif - return static_cast(m_refCount); + return static_cast<_Atomic_word const volatile &>(m_refCount); } protected: @@ -266,7 +266,7 @@ template friend class CrossThreadRefCounted; - int m_refCount; + _Atomic_word m_refCount; #if !USE(LOCKFREE_THREADSAFESHARED) mutable Mutex m_mutex; #endif @@ -274,7 +274,7 @@ template class ThreadSafeShared : public ThreadSafeSharedBase { public: - ThreadSafeShared(int initialRefCount = 1) + ThreadSafeShared(_Atomic_word initialRefCount = 1) : ThreadSafeSharedBase(initialRefCount) { } Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- webkitgtk.spec 14 Jul 2009 17:46:03 -0000 1.11 +++ webkitgtk.spec 14 Jul 2009 18:23:45 -0000 1.12 @@ -46,7 +46,7 @@ License: LGPLv2+ and BSD URL: http://www.webkitgtk.org/ Source0: http://www.webkitgtk.org/webkit-%{version}.tar.gz -Patch0: webkit-1.1.8-atomic-word.patch +Patch0: webkit-1.1.11-atomic-word.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- webkit-1.1.8-atomic-word.patch DELETED --- From mcpierce at fedoraproject.org Tue Jul 14 18:26:06 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 18:26:06 +0000 (UTC) Subject: rpms/rubygem-RedCloth/devel rubygem-RedCloth.spec,1.2,1.3 Message-ID: <20090714182606.CBD8D11C0099@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15571 Modified Files: rubygem-RedCloth.spec Log Message: * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/devel/rubygem-RedCloth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-RedCloth.spec 14 Jul 2009 17:36:54 -0000 1.2 +++ rubygem-RedCloth.spec 14 Jul 2009 18:25:36 -0000 1.3 @@ -1,12 +1,13 @@ # Generated from RedCloth-4.1.9.gem by gem2rpm -*- rpm-spec -*- -%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") -%define ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") -%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) -%define gemname RedCloth -%define gemlibname redcloth_scan.so -%define geminstdir %{gemdir}/gems/%{gemname}-%{version} -%define installroot %{buildroot}%{geminstdir} -%define extensionddir %{installroot}/ext/redcloth_scan/ +%global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") +%global ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") +%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) +%global gemname RedCloth +%global gemlibname redcloth_scan.so +%global workdir %(mktemp -d) +%global geminstdir %{gemdir}/gems/%{gemname}-%{version} +%global installroot %{buildroot}%{geminstdir} +%global extensionddir %{installroot}/ext/redcloth_scan/ Summary: Textile parser for Ruby Name: rubygem-%{gemname} @@ -40,15 +41,17 @@ install -d -m0755 %{buildroot}%{ruby_sit install -d -m0755 %{buildroot}%{ruby_sitearch} export CONFIGURE_ARGS="--with-cflags='%{optflags}'" -gem install --local --install-dir %{buildroot}%{gemdir} \ +gem install --local --install-dir %{workdir} \ --force -V --rdoc %{SOURCE0} +cp -ra %{workdir}/* %{buildroot}%{gemdir} + mkdir -p %{buildroot}/%{_bindir} cp -a %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} mv %{extensionddir}%{gemlibname} %{buildroot}%{ruby_sitearch}/%{gemlibname} rm -rf %{extensionddir} -strip %{buildroot}%{ruby_sitearch}/%{gemlibname} + rm %{installroot}/lib/%{gemlibname} cp %{installroot}/lib/redcloth.rb %{buildroot}%{ruby_sitelib}/redcloth.rb rm -rf %{buildroot}%{gemdir}/bin From pkgdb at fedoraproject.org Tue Jul 14 18:26:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:21 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchbugzilla Message-ID: <20090714182622.0C8B610F89A@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchbugzilla acl on trac-spamfilter-plugin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:28 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchcommits Message-ID: <20090714182628.EEF5610F8A8@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchcommits acl on trac-spamfilter-plugin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:36 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchbugzilla Message-ID: <20090714182636.D5EA810F89A@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchbugzilla acl on trac-spamfilter-plugin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:37 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchcommits Message-ID: <20090714182637.A718510F8AA@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchcommits acl on trac-spamfilter-plugin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:39 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested commit Message-ID: <20090714182639.0B68810F8AF@bastion2.fedora.phx.redhat.com> pghmcfc has requested the commit acl on trac-spamfilter-plugin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:47 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchbugzilla Message-ID: <20090714182647.8FA3610F89C@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchbugzilla acl on trac-spamfilter-plugin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:48 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchcommits Message-ID: <20090714182648.468D310F8B0@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchcommits acl on trac-spamfilter-plugin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:50 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested commit Message-ID: <20090714182650.87B9210F8B3@bastion2.fedora.phx.redhat.com> pghmcfc has requested the commit acl on trac-spamfilter-plugin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:54 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchbugzilla Message-ID: <20090714182654.E88AE10F8A8@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchbugzilla acl on trac-spamfilter-plugin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:55 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested watchcommits Message-ID: <20090714182655.AF2E310F8B6@bastion2.fedora.phx.redhat.com> pghmcfc has requested the watchcommits acl on trac-spamfilter-plugin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:26:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:57 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested commit Message-ID: <20090714182657.32D7410F8B7@bastion2.fedora.phx.redhat.com> pghmcfc has requested the commit acl on trac-spamfilter-plugin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 18:28:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:28:34 +0000 Subject: [pkgdb] glipper ownership updated Message-ID: <20090714182835.287C310F89C@bastion2.fedora.phx.redhat.com> Package glipper in Fedora devel is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glipper From mbarnes at fedoraproject.org Tue Jul 14 18:29:10 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 14 Jul 2009 18:29:10 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.6, 1.116.2.7 evolution.spec, 1.394.2.16, 1.394.2.17 sources, 1.116.2.10, 1.116.2.11 Message-ID: <20090714182910.CA22E11C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15933 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Log Message: * Tue Jul 14 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit 6d9e836. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.6 retrieving revision 1.116.2.7 diff -u -p -r1.116.2.6 -r1.116.2.7 --- .cvsignore 2 Jul 2009 19:21:25 -0000 1.116.2.6 +++ .cvsignore 14 Jul 2009 18:28:40 -0000 1.116.2.7 @@ -1 +1 @@ -evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 +evolution-2.27.4-kill-bonobo-6d9e836.tar.gz Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.16 retrieving revision 1.394.2.17 diff -u -p -r1.394.2.16 -r1.394.2.17 --- evolution.spec 2 Jul 2009 22:23:56 -0000 1.394.2.16 +++ evolution.spec 14 Jul 2009 18:28:40 -0000 1.394.2.17 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash b2f2de3 +%define hash 6d9e836 %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -44,8 +44,8 @@ ### Abstract ### Name: evolution -Version: 2.27.3 -Release: 3.kb.1%{?dist} +Version: 2.27.4 +Release: 1.kb.1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -669,6 +669,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Tue Jul 14 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 +- Snapshot of "kill-bonobo" branch at commit 6d9e836. + * Thu Jul 02 2009 Matthew Barnes - 2.27.3-3.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit b2f2de3. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.10 retrieving revision 1.116.2.11 diff -u -p -r1.116.2.10 -r1.116.2.11 --- sources 2 Jul 2009 21:39:46 -0000 1.116.2.10 +++ sources 14 Jul 2009 18:28:40 -0000 1.116.2.11 @@ -1 +1 @@ -acab52b736d636bdb65f1160d9c81145 evolution-2.27.3-kill-bonobo-b2f2de3.tar.bz2 +4f6ef891c37e619cc8f4ebbd325d94c7 evolution-2.27.4-kill-bonobo-6d9e836.tar.gz From pkgdb at fedoraproject.org Tue Jul 14 18:31:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:31:15 +0000 Subject: [pkgdb] glipper ownership updated Message-ID: <20090714183115.5CEE810F888@bastion2.fedora.phx.redhat.com> Package glipper in Fedora 11 is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glipper From maxx at fedoraproject.org Tue Jul 14 18:33:53 2009 From: maxx at fedoraproject.org (Mads Villadsen) Date: Tue, 14 Jul 2009 18:33:53 +0000 (UTC) Subject: rpms/hamster-applet/devel .cvsignore, 1.18, 1.19 hamster-applet.spec, 1.26, 1.27 sources, 1.18, 1.19 Message-ID: <20090714183353.506F511C0099@cvs1.fedora.phx.redhat.com> Author: maxx Update of /cvs/pkgs/rpms/hamster-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16535 Modified Files: .cvsignore hamster-applet.spec sources Log Message: * Tue Jul 14 2009 Mads Villadsen - 2.27.4-1 - Update to latest development release - Better autocompletion - Better dbus-support - Export to different formats (TSV, XML, iCal) - Task filtering - Better statistics Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 16 Mar 2009 19:48:34 -0000 1.18 +++ .cvsignore 14 Jul 2009 18:33:22 -0000 1.19 @@ -1 +1 @@ -hamster-applet-2.26.0.tar.bz2 +hamster-applet-2.27.4.tar.bz2 Index: hamster-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/hamster-applet.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- hamster-applet.spec 16 Mar 2009 19:48:34 -0000 1.26 +++ hamster-applet.spec 14 Jul 2009 18:33:23 -0000 1.27 @@ -2,14 +2,14 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: hamster-applet -Version: 2.26.0 +Version: 2.27.4 Release: 1%{?dist} Summary: Time tracking applet Group: Development/Languages License: GPLv3+ URL: http://code.google.com/p/projecthamster/ -Source0: http://ftp.gnome.org/pub/GNOME/sources/hamster-applet/2.26/%{name}-%{version}.tar.bz2 +Source0: http://ftp.gnome.org/pub/GNOME/sources/hamster-applet/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel pygtk2-devel pygobject2-devel gnome-python2-devel @@ -21,7 +21,7 @@ BuildRequires: control-center >= 2.19.4 Requires: hicolor-icon-theme Requires: pygtk2, pygobject2, gnome-python2-applet, python-sqlite2 Requires: gnome-python2-gnome, gnome-python2-canvas, gnome-python2-gnomevfs -Requires: gnome-python2-gconf, gnome-python2-evolution, pygtk2-libglade, pycairo +Requires: gnome-python2-gconf, gnome-python2-evolution, pycairo # for /usr/share/control-center/keybindings Requires: control-center-filesystem @@ -98,6 +98,18 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Mads Villadsen - 2.27.4-1 +- Update to latest development release +- Better autocompletion +- Better dbus-support +- Export to different formats (TSV, XML, iCal) +- Task filtering +- Better statistics + +* Thu May 14 2009 Mads Villadsen - 2.27.1-1 +- Update to latest development release +- Remove pygtk2-libglade from Requires as hamster-applet has been ported to gtkbuilder + * Mon Mar 16 2009 Mads Villadsen - 2.26.0-1 - Update to new stable version - Final fixes to utf-8 and Python 2.6 sqlite Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 16 Mar 2009 19:48:34 -0000 1.18 +++ sources 14 Jul 2009 18:33:23 -0000 1.19 @@ -1 +1 @@ -4e2e5853b1101fa98e69c231a2378ae5 hamster-applet-2.26.0.tar.bz2 +26066cecda500325ede656de930de466 hamster-applet-2.27.4.tar.bz2 From maxx at fedoraproject.org Tue Jul 14 18:36:06 2009 From: maxx at fedoraproject.org (Mads Villadsen) Date: Tue, 14 Jul 2009 18:36:06 +0000 (UTC) Subject: rpms/hamster-applet/F-11 .cvsignore, 1.18, 1.19 hamster-applet.spec, 1.26, 1.27 sources, 1.18, 1.19 Message-ID: <20090714183606.931F111C0099@cvs1.fedora.phx.redhat.com> Author: maxx Update of /cvs/pkgs/rpms/hamster-applet/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17556 Modified Files: .cvsignore hamster-applet.spec sources Log Message: * Tue Jul 14 2009 Mads Villadsen - 2.26.3-1 - Update to new stable version - Fixes for utf-8 problems - Evolution task import is reenabled Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 16 Mar 2009 19:48:34 -0000 1.18 +++ .cvsignore 14 Jul 2009 18:35:36 -0000 1.19 @@ -1 +1 @@ -hamster-applet-2.26.0.tar.bz2 +hamster-applet-2.26.3.tar.bz2 Index: hamster-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/F-11/hamster-applet.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- hamster-applet.spec 16 Mar 2009 19:48:34 -0000 1.26 +++ hamster-applet.spec 14 Jul 2009 18:35:36 -0000 1.27 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: hamster-applet -Version: 2.26.0 +Version: 2.26.3 Release: 1%{?dist} Summary: Time tracking applet @@ -98,6 +98,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Mads Villadsen - 2.26.3-1 +- Update to new stable version +- Fixes for utf-8 problems +- Evolution task import is reenabled + * Mon Mar 16 2009 Mads Villadsen - 2.26.0-1 - Update to new stable version - Final fixes to utf-8 and Python 2.6 sqlite Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 16 Mar 2009 19:48:34 -0000 1.18 +++ sources 14 Jul 2009 18:35:36 -0000 1.19 @@ -1 +1 @@ -4e2e5853b1101fa98e69c231a2378ae5 hamster-applet-2.26.0.tar.bz2 +bc40602ef88e23e0a8c37c7086e953e7 hamster-applet-2.26.3.tar.bz2 From mcpierce at fedoraproject.org Tue Jul 14 18:39:42 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 18:39:42 +0000 (UTC) Subject: rpms/rubygem-RedCloth/F-10 rubygem-RedCloth.spec,1.1,1.2 Message-ID: <20090714183942.ED0C411C0099@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18040 Modified Files: rubygem-RedCloth.spec Log Message: * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/F-10/rubygem-RedCloth.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-RedCloth.spec 1 May 2009 21:03:17 -0000 1.1 +++ rubygem-RedCloth.spec 14 Jul 2009 18:39:12 -0000 1.2 @@ -1,17 +1,18 @@ # Generated from RedCloth-4.1.9.gem by gem2rpm -*- rpm-spec -*- -%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") -%define ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") -%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) -%define gemname RedCloth -%define gemlibname redcloth_scan.so -%define geminstdir %{gemdir}/gems/%{gemname}-%{version} -%define installroot %{buildroot}%{geminstdir} -%define extensionddir %{installroot}/ext/redcloth_scan/ +%global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") +%global ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") +%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) +%global gemname RedCloth +%global gemlibname redcloth_scan.so +%global workdir %(mktemp -d) +%global geminstdir %{gemdir}/gems/%{gemname}-%{version} +%global installroot %{buildroot}%{geminstdir} +%global extensionddir %{installroot}/ext/redcloth_scan/ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -39,15 +40,18 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} - -gem install --local --install-dir %{buildroot}%{gemdir} \ +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" +gem install --local --install-dir %{workdir} \ --force -V --rdoc %{SOURCE0} + +cp -ra %{workdir}/* %{buildroot}%{gemdir} + mkdir -p %{buildroot}/%{_bindir} cp -a %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} mv %{extensionddir}%{gemlibname} %{buildroot}%{ruby_sitearch}/%{gemlibname} rm -rf %{extensionddir} -strip %{buildroot}%{ruby_sitearch}/%{gemlibname} + rm %{installroot}/lib/%{gemlibname} cp %{installroot}/lib/redcloth.rb %{buildroot}%{ruby_sitelib}/redcloth.rb rm -rf %{buildroot}%{gemdir}/bin @@ -76,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + * Fri May 1 2009 Darryl Pierce - 4.1.9-4 - First official build for Fedora. From mbarnes at fedoraproject.org Tue Jul 14 18:47:41 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 14 Jul 2009 18:47:41 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.7, 1.116.2.8 sources, 1.116.2.11, 1.116.2.12 Message-ID: <20090714184741.B69C611C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18834 Modified Files: Tag: private-mbarnes-kb .cvsignore sources Log Message: Fix sources. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.7 retrieving revision 1.116.2.8 diff -u -p -r1.116.2.7 -r1.116.2.8 --- .cvsignore 14 Jul 2009 18:28:40 -0000 1.116.2.7 +++ .cvsignore 14 Jul 2009 18:47:11 -0000 1.116.2.8 @@ -1 +1 @@ -evolution-2.27.4-kill-bonobo-6d9e836.tar.gz +evolution-2.27.4-kill-bonobo-6d9e836.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.11 retrieving revision 1.116.2.12 diff -u -p -r1.116.2.11 -r1.116.2.12 --- sources 14 Jul 2009 18:28:40 -0000 1.116.2.11 +++ sources 14 Jul 2009 18:47:11 -0000 1.116.2.12 @@ -1 +1 @@ -4f6ef891c37e619cc8f4ebbd325d94c7 evolution-2.27.4-kill-bonobo-6d9e836.tar.gz +08c8cab2dbc6ac591ce8f9bf0d10b208 evolution-2.27.4-kill-bonobo-6d9e836.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 14 18:47:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:47:34 +0000 Subject: [pkgdb] js ownership updated Message-ID: <20090714184734.DB17F10F88D@bastion2.fedora.phx.redhat.com> Package js in Fedora devel is now owned by hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/js From pkgdb at fedoraproject.org Tue Jul 14 18:47:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:47:43 +0000 Subject: [pkgdb] js ownership updated Message-ID: <20090714184743.371F510F89A@bastion2.fedora.phx.redhat.com> Package js in Fedora EPEL 5 is now owned by hubbitus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/js From ajax at fedoraproject.org Tue Jul 14 18:51:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 14 Jul 2009 18:51:22 +0000 (UTC) Subject: rpms/xorg-x11-server/devel .cvsignore, 1.61, 1.62 commitid, 1.24, 1.25 sources, 1.56, 1.57 xorg-x11-server.spec, 1.445, 1.446 Message-ID: <20090714185122.1F34F11C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19291 Modified Files: .cvsignore commitid sources xorg-x11-server.spec Log Message: * Tue Jul 14 2009 Adam Jackson 1.6.99-12.20090714 - Today's git snapshot. - Drop the %pre script for Xorg, everyone ought to be migrated by now. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 7 Jul 2009 20:21:37 -0000 1.61 +++ .cvsignore 14 Jul 2009 18:50:51 -0000 1.62 @@ -1,2 +1 @@ -xorg-server-20090706.tar.bz2 -xorg-server-20090707.tar.bz2 +xorg-server-20090714.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/commitid,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- commitid 10 Jul 2009 04:41:40 -0000 1.24 +++ commitid 14 Jul 2009 18:50:51 -0000 1.25 @@ -1 +1 @@ -3711d68f657c77b947cc4670cc4eac4f62de3af8 +686e4867302a741f3029c4105b997d0f0ac7c13c Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/sources,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- sources 7 Jul 2009 20:21:37 -0000 1.56 +++ sources 14 Jul 2009 18:50:51 -0000 1.57 @@ -1 +1 @@ -c635400ae9b5a4ffb1fa1a6cb4377952 xorg-server-20090707.tar.bz2 +1be9eeb4f40a1d8c90f146a3ddff246f xorg-server-20090714.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.445 retrieving revision 1.446 diff -u -p -r1.445 -r1.446 --- xorg-x11-server.spec 10 Jul 2009 04:41:40 -0000 1.445 +++ xorg-x11-server.spec 14 Jul 2009 18:50:51 -0000 1.446 @@ -14,12 +14,12 @@ # Fix rhpxl to no longer need vesamodes/extramodes %define pkgname xorg-server -%define gitdate 20090710 +%define gitdate 20090714 Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 11.%{gitdate}%{?dist} +Release: 12.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -90,8 +90,8 @@ Patch6042: xserver-1.6.1-proc-cmdline.pa %endif %define kdrive --enable-kdrive --enable-xephyr --disable-xsdl --disable-xfake --disable-xfbdev +# XXX dmx %define xservers --enable-xvfb --enable-xnest %{kdrive} %{enable_xorg} -# FIXME: dmx is broken, no --enable-dmx for you BuildRequires: git-core BuildRequires: automake autoconf libtool pkgconfig @@ -196,7 +196,7 @@ but it is an X server itself in which yo is a very useful tool for developers who wish to test their applications without running them on their real X server. - +%if 0 %package Xdmx Summary: Distributed Multihead X Server and utilities Group: User Interface/X @@ -213,7 +213,7 @@ for Xdmx would be to provide multi-head each of which has a single display device attached to it. A complex application for Xdmx would be to unify a 4 by 4 grid of 1280x1024 displays (each attached to one of 16 computers) into a unified 5120x4096 display. - +%endif %package Xvfb Summary: A X Windows System virtual framebuffer X server. @@ -394,21 +394,6 @@ xargs tar cf - | (cd %{inst_srcdir} && t %clean rm -rf $RPM_BUILD_ROOT -%if %{with_hw_servers} -%pre Xorg -{ - pushd /etc/X11 - - [ -e xorg.conf ] || return 0 - - sed -i 's/^.*Load.*"(pex5|xie|xtt).*\n$"//gi' xorg.conf - sed -i 's/^\s*Driver(.*)"keyboard"/Driver\1"kbd"/gi' xorg.conf - sed -i 's/^.*Option.*"XkbRules".*"(xfree86|xorg)".*\n$//gi' xorg.conf - sed -i 's#^\s*RgbPath.*$##gi' xorg.conf - - popd -} &> /dev/null || : -%endif %files common %defattr(-,root,root,-) @@ -473,26 +458,26 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/Xnest %{_mandir}/man1/Xnest.1* - -#%files Xdmx -#%defattr(-,root,root,-) -#%{_bindir}/Xdmx -#%{_bindir}/dmxaddinput -#%{_bindir}/dmxaddscreen -#%{_bindir}/dmxreconfig -#%{_bindir}/dmxresize -#%{_bindir}/dmxrminput -#%{_bindir}/dmxrmscreen -#%{_bindir}/dmxtodmx -#%{_bindir}/dmxwininfo -#%{_bindir}/vdltodmx -#%{_bindir}/xdmx -#%{_bindir}/xdmxconfig -#%{_mandir}/man1/Xdmx.1* -#%{_mandir}/man1/dmxtodmx.1* -#%{_mandir}/man1/vdltodmx.1* -#%{_mandir}/man1/xdmxconfig.1* - +%if 0 +%files Xdmx +%defattr(-,root,root,-) +%{_bindir}/Xdmx +%{_bindir}/dmxaddinput +%{_bindir}/dmxaddscreen +%{_bindir}/dmxreconfig +%{_bindir}/dmxresize +%{_bindir}/dmxrminput +%{_bindir}/dmxrmscreen +%{_bindir}/dmxtodmx +%{_bindir}/dmxwininfo +%{_bindir}/vdltodmx +%{_bindir}/xdmx +%{_bindir}/xdmxconfig +%{_mandir}/man1/Xdmx.1* +%{_mandir}/man1/dmxtodmx.1* +%{_mandir}/man1/vdltodmx.1* +%{_mandir}/man1/xdmxconfig.1* +%endif %files Xvfb %defattr(-,root,root,-) @@ -524,8 +509,7 @@ rm -rf $RPM_BUILD_ROOT %files -n libxf86config %defattr(-, root, root, -) -%{_libdir}/libxf86config.so.0 -%{_libdir}/libxf86config.so.0.0.0 +%{_libdir}/libxf86config.so.0* %files -n libxf86config-devel @@ -534,6 +518,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Adam Jackson 1.6.99-12.20090714 +- Today's git snapshot. +- Drop the %%pre script for Xorg, everyone ought to be migrated by now. + * Fri Jul 10 2009 Peter Hutterer 1.6.99-11.20090710 - Today's git snapshot. - xserver-1.6.0-no-i810.patch: Drop. From cwickert at fedoraproject.org Tue Jul 14 18:54:05 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 14 Jul 2009 18:54:05 +0000 (UTC) Subject: rpms/lxsession-lite/devel dead.package, NONE, 1.1 .cvsignore, 1.2, NONE Makefile, 1.1, NONE import.log, 1.1, NONE lxsession-lite-0.3.6-icon_search_path_fix-1.patch, 1.1, NONE lxsession-lite-0.3.6-new-gdm.patch, 1.1, NONE lxsession-lite-0.3.6-session_name_fix.patch, 1.1, NONE lxsession-lite.spec, 1.5, NONE sources, 1.2, NONE Message-ID: <20090714185405.9C42D11C0099@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxsession-lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19829 Added Files: dead.package Removed Files: .cvsignore Makefile import.log lxsession-lite-0.3.6-icon_search_path_fix-1.patch lxsession-lite-0.3.6-new-gdm.patch lxsession-lite-0.3.6-session_name_fix.patch lxsession-lite.spec sources Log Message: orphan lxsession-lite, merged back into lxsession --- NEW FILE dead.package --- Merged back into lxsession upstream in 0.3.8. --- .cvsignore DELETED --- --- Makefile DELETED --- --- import.log DELETED --- --- lxsession-lite-0.3.6-icon_search_path_fix-1.patch DELETED --- --- lxsession-lite-0.3.6-new-gdm.patch DELETED --- --- lxsession-lite-0.3.6-session_name_fix.patch DELETED --- --- lxsession-lite.spec DELETED --- --- sources DELETED --- From pkgdb at fedoraproject.org Tue Jul 14 18:54:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:54:55 +0000 Subject: [pkgdb] lxsession-lite ownership updated Message-ID: <20090714185456.0717310F888@bastion2.fedora.phx.redhat.com> Package lxsession-lite in Fedora devel was orphaned by cwickert To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxsession-lite From mcpierce at fedoraproject.org Tue Jul 14 18:55:16 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Tue, 14 Jul 2009 18:55:16 +0000 (UTC) Subject: rpms/rubygem-RedCloth/F-11 rubygem-RedCloth.spec,1.1,1.2 Message-ID: <20090714185516.EDC9B11C0099@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-RedCloth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19975 Modified Files: rubygem-RedCloth.spec Log Message: * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/F-11/rubygem-RedCloth.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-RedCloth.spec 1 May 2009 21:11:54 -0000 1.1 +++ rubygem-RedCloth.spec 14 Jul 2009 18:54:46 -0000 1.2 @@ -1,17 +1,18 @@ # Generated from RedCloth-4.1.9.gem by gem2rpm -*- rpm-spec -*- -%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") -%define ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") -%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) -%define gemname RedCloth -%define gemlibname redcloth_scan.so -%define geminstdir %{gemdir}/gems/%{gemname}-%{version} -%define installroot %{buildroot}%{geminstdir} -%define extensionddir %{installroot}/ext/redcloth_scan/ +%global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") +%global ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']") +%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) +%global gemname RedCloth +%global gemlibname redcloth_scan.so +%global workdir %(mktemp -d) +%global geminstdir %{gemdir}/gems/%{gemname}-%{version} +%global installroot %{buildroot}%{geminstdir} +%global extensionddir %{installroot}/ext/redcloth_scan/ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -39,15 +40,18 @@ install -d -m0755 %{buildroot}%{gemdir} install -d -m0755 %{buildroot}%{ruby_sitelib} install -d -m0755 %{buildroot}%{ruby_sitearch} - -gem install --local --install-dir %{buildroot}%{gemdir} \ +export CONFIGURE_ARGS="--with-cflags='%{optflags}'" +gem install --local --install-dir %{workdir} \ --force -V --rdoc %{SOURCE0} + +cp -ra %{workdir}/* %{buildroot}%{gemdir} + mkdir -p %{buildroot}/%{_bindir} cp -a %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} mv %{extensionddir}%{gemlibname} %{buildroot}%{ruby_sitearch}/%{gemlibname} rm -rf %{extensionddir} -strip %{buildroot}%{ruby_sitearch}/%{gemlibname} + rm %{installroot}/lib/%{gemlibname} cp %{installroot}/lib/redcloth.rb %{buildroot}%{ruby_sitelib}/redcloth.rb rm -rf %{buildroot}%{gemdir}/bin @@ -76,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 +- Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries + * Fri May 1 2009 Darryl Pierce - 4.1.9-4 - First official build for Fedora. From nalin at fedoraproject.org Tue Jul 14 18:56:43 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Tue, 14 Jul 2009 18:56:43 +0000 (UTC) Subject: rpms/slapi-nis/devel slapi-nis.spec,1.12,1.13 Message-ID: <20090714185643.912EB11C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/slapi-nis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20240 Modified Files: slapi-nis.spec Log Message: fixup changelog entries that resemble macro invocations Index: slapi-nis.spec =================================================================== RCS file: /cvs/pkgs/rpms/slapi-nis/devel/slapi-nis.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- slapi-nis.spec 14 May 2009 21:34:23 -0000 1.12 +++ slapi-nis.spec 14 Jul 2009 18:56:43 -0000 1.13 @@ -1,6 +1,6 @@ Name: slapi-nis Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: NIS Server and Schema Compatibility plugins for Directory Server Group: System Environment/Daemons License: GPLv2 @@ -54,14 +54,14 @@ rm -rf $RPM_BUILD_ROOT we're using portmap instead of rpcbind (#500903) * Fri May 8 2009 Nalin Dahyabhai - 0.15-1 -- fix %deref and %referred to fail rather than return a valid-but-empty +- fix %%deref and %%referred to fail rather than return a valid-but-empty result when they fail to evaluate (reported by Rob Crittenden) * Wed May 6 2009 Nalin Dahyabhai - 0.14-1 - correctly handle being loaded but disabled (#499404) * Thu Apr 30 2009 Nalin Dahyabhai - 0.13-1 -- update to 0.13, reworking %link() to correct some bugs (#498432) +- update to 0.13, reworking %%link() to correct some bugs (#498432) * Thu Apr 30 2009 Nalin Dahyabhai - 0.12-1 - correct test suite failures that 0.11 started triggering From nalin at fedoraproject.org Tue Jul 14 18:58:32 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Tue, 14 Jul 2009 18:58:32 +0000 (UTC) Subject: rpms/slapi-nis/devel slapi-nis.spec,1.13,1.14 Message-ID: <20090714185832.61A1E11C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/slapi-nis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20701 Modified Files: slapi-nis.spec Log Message: don't forget that last change Index: slapi-nis.spec =================================================================== RCS file: /cvs/pkgs/rpms/slapi-nis/devel/slapi-nis.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- slapi-nis.spec 14 Jul 2009 18:56:43 -0000 1.13 +++ slapi-nis.spec 14 Jul 2009 18:58:02 -0000 1.14 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/nisserver-plugin-defs %changelog +* Tue Jul 14 2009 Nalin Dahyabhai - 0.17-2 +- fixup changelog entries that resemble possible macro invocations + * Thu May 14 2009 Nalin Dahyabhai - 0.17-1 - actually send portmap registrations to the right server From pkgdb at fedoraproject.org Tue Jul 14 18:26:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 18:26:27 +0000 Subject: [pkgdb] trac-spamfilter-plugin: pghmcfc has requested commit Message-ID: <20090714182627.6C77D10F89C@bastion2.fedora.phx.redhat.com> pghmcfc has requested the commit acl on trac-spamfilter-plugin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:01:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:01:37 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714190137.A12F110F888@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora devel is now owned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From pkgdb at fedoraproject.org Tue Jul 14 19:01:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:01:46 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714190146.68C8410F89F@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora 10 is now owned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From pkgdb at fedoraproject.org Tue Jul 14 19:01:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:01:52 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714190152.6424510F888@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora 11 is now owned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From pkgdb at fedoraproject.org Tue Jul 14 19:08:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:30 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190830.1CD4B10F89A@bastion2.fedora.phx.redhat.com> jkeating has set the watchbugzilla acl on trac-spamfilter-plugin (Fedora devel) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:30 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190830.5941810F8A3@bastion2.fedora.phx.redhat.com> jkeating has set the watchcommits acl on trac-spamfilter-plugin (Fedora devel) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:32 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190832.1459110F8A8@bastion2.fedora.phx.redhat.com> jkeating has set the commit acl on trac-spamfilter-plugin (Fedora devel) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:36 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190836.9724310F8A9@bastion2.fedora.phx.redhat.com> jkeating has set the watchbugzilla acl on trac-spamfilter-plugin (Fedora EPEL 5) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:38 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190838.66C6F10F8AC@bastion2.fedora.phx.redhat.com> jkeating has set the watchcommits acl on trac-spamfilter-plugin (Fedora EPEL 5) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:40 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190840.B058110F8B1@bastion2.fedora.phx.redhat.com> jkeating has set the commit acl on trac-spamfilter-plugin (Fedora EPEL 5) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:45 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190845.5CEE710F89C@bastion2.fedora.phx.redhat.com> jkeating has set the watchbugzilla acl on trac-spamfilter-plugin (Fedora 10) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:48 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190848.0FEA010F8B3@bastion2.fedora.phx.redhat.com> jkeating has set the watchcommits acl on trac-spamfilter-plugin (Fedora 10) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:49 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190849.DC5A310F8B6@bastion2.fedora.phx.redhat.com> jkeating has set the commit acl on trac-spamfilter-plugin (Fedora 10) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:52 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190852.D4D0110F8B9@bastion2.fedora.phx.redhat.com> jkeating has set the watchbugzilla acl on trac-spamfilter-plugin (Fedora 11) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:53 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190853.9427210F8BC@bastion2.fedora.phx.redhat.com> jkeating has set the watchcommits acl on trac-spamfilter-plugin (Fedora 11) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From pkgdb at fedoraproject.org Tue Jul 14 19:08:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:08:54 +0000 Subject: [pkgdb] trac-spamfilter-plugin had acl change status Message-ID: <20090714190854.ABCCF10F8BE@bastion2.fedora.phx.redhat.com> jkeating has set the commit acl on trac-spamfilter-plugin (Fedora 11) to Approved for pghmcfc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/trac-spamfilter-plugin From kevin at fedoraproject.org Tue Jul 14 19:12:13 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Tue, 14 Jul 2009 19:12:13 +0000 (UTC) Subject: rpms/ratpoison/devel ratpoison.spec,1.13,1.14 Message-ID: <20090714191213.48FFC11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/ratpoison/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23929 Modified Files: ratpoison.spec Log Message: Add libXi-devel to BuildRequires Index: ratpoison.spec =================================================================== RCS file: /cvs/extras/rpms/ratpoison/devel/ratpoison.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ratpoison.spec 16 Jun 2009 18:28:03 -0000 1.13 +++ ratpoison.spec 14 Jul 2009 19:12:12 -0000 1.14 @@ -2,7 +2,7 @@ Name: ratpoison Version: 1.4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Minimalistic window manager Group: Applications/Productivity License: GPLv2+ @@ -10,7 +10,7 @@ URL: http://www.nongnu.org/ra Source0: http://savannah.nongnu.org/download/ratpoison/%{name}-%{version}.tar.gz Source1: %{name}.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libXft-devel, libX11-devel, readline-devel, libXt-devel, libXinerama-devel, libXtst-devel +BuildRequires: libXft-devel, libX11-devel, readline-devel, libXt-devel, libXinerama-devel, libXtst-devel, libXi-devel Requires(post): /sbin/install-info Requires(preun): /sbin/install-info @@ -63,6 +63,9 @@ fi %{_datadir}/xsessions/ratpoison.desktop %changelog +* Tue Jul 14 2009 Kevin Fenzi - 1.4.4-4 +- Add libXi-devel to BuildRequires + * Tue Jun 16 2009 Kevin Fenzi - 1.4.4-3 - Rebuild again now that bug #505774 is fixed. From pkgdb at fedoraproject.org Tue Jul 14 19:17:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:17:19 +0000 Subject: [pkgdb] glipper ownership updated Message-ID: <20090714191719.D47B610F89C@bastion2.fedora.phx.redhat.com> Package glipper in Fedora devel was orphaned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glipper From pkgdb at fedoraproject.org Tue Jul 14 19:17:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:17:25 +0000 Subject: [pkgdb] glipper ownership updated Message-ID: <20090714191725.C993710F8A8@bastion2.fedora.phx.redhat.com> Package glipper in Fedora 11 was orphaned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glipper From salimma at fedoraproject.org Tue Jul 14 19:22:39 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 19:22:39 +0000 (UTC) Subject: rpms/vala/F-11 vala-0.7.4-moduleinit.patch,1.1,1.2 Message-ID: <20090714192239.5EC1411C0099@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25598/F-11 Modified Files: vala-0.7.4-moduleinit.patch Log Message: Modify patch to affect the pregenerated C file, not the original Vala source, as during build Vala is not installed yet vala-0.7.4-moduleinit.patch: Index: vala-0.7.4-moduleinit.patch =================================================================== RCS file: /cvs/pkgs/rpms/vala/F-11/vala-0.7.4-moduleinit.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vala-0.7.4-moduleinit.patch 14 Jul 2009 08:22:25 -0000 1.1 +++ vala-0.7.4-moduleinit.patch 14 Jul 2009 19:22:09 -0000 1.2 @@ -1,11 +1,11 @@ ---- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 -+++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 -@@ -62,7 +62,7 @@ - if (!plugin) { - type_block.add_statement (cdecl); - } else { -- definition_fragment.append (cdecl); -+ declaration_fragment.append (cdecl); - } - - CCodeFunction fun; +--- vala-0.7.4/codegen/valatyperegisterfunction.c.moduleinit 2009-06-14 12:53:17.000000000 -0400 ++++ vala-0.7.4/codegen/valatyperegisterfunction.c 2009-07-14 15:16:16.546338051 -0400 +@@ -238,7 +238,7 @@ + if (!plugin) { + vala_ccode_block_add_statement (type_block, (ValaCCodeNode*) _cdecl_); + } else { +- vala_ccode_fragment_append (self->priv->definition_fragment, (ValaCCodeNode*) _cdecl_); ++ vala_ccode_fragment_append (self->priv->declaration_fragment, (ValaCCodeNode*) _cdecl_); + } + fun = NULL; + if (!plugin) { From salimma at fedoraproject.org Tue Jul 14 19:22:39 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 19:22:39 +0000 (UTC) Subject: rpms/vala/F-10 vala-0.7.4-moduleinit.patch,1.1,1.2 Message-ID: <20090714192239.2ED2311C0099@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25598/F-10 Modified Files: vala-0.7.4-moduleinit.patch Log Message: Modify patch to affect the pregenerated C file, not the original Vala source, as during build Vala is not installed yet vala-0.7.4-moduleinit.patch: Index: vala-0.7.4-moduleinit.patch =================================================================== RCS file: /cvs/pkgs/rpms/vala/F-10/vala-0.7.4-moduleinit.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vala-0.7.4-moduleinit.patch 14 Jul 2009 08:22:24 -0000 1.1 +++ vala-0.7.4-moduleinit.patch 14 Jul 2009 19:22:08 -0000 1.2 @@ -1,11 +1,11 @@ ---- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 -+++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 -@@ -62,7 +62,7 @@ - if (!plugin) { - type_block.add_statement (cdecl); - } else { -- definition_fragment.append (cdecl); -+ declaration_fragment.append (cdecl); - } - - CCodeFunction fun; +--- vala-0.7.4/codegen/valatyperegisterfunction.c.moduleinit 2009-06-14 12:53:17.000000000 -0400 ++++ vala-0.7.4/codegen/valatyperegisterfunction.c 2009-07-14 15:16:16.546338051 -0400 +@@ -238,7 +238,7 @@ + if (!plugin) { + vala_ccode_block_add_statement (type_block, (ValaCCodeNode*) _cdecl_); + } else { +- vala_ccode_fragment_append (self->priv->definition_fragment, (ValaCCodeNode*) _cdecl_); ++ vala_ccode_fragment_append (self->priv->declaration_fragment, (ValaCCodeNode*) _cdecl_); + } + fun = NULL; + if (!plugin) { From mbarnes at fedoraproject.org Tue Jul 14 19:26:39 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Tue, 14 Jul 2009 19:26:39 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.394.2.17,1.394.2.18 Message-ID: <20090714192639.4C0EC11C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26673 Modified Files: Tag: private-mbarnes-kb evolution.spec Log Message: Fix file list. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.17 retrieving revision 1.394.2.18 diff -u -p -r1.394.2.17 -r1.394.2.18 --- evolution.spec 14 Jul 2009 18:28:40 -0000 1.394.2.17 +++ evolution.spec 14 Jul 2009 19:26:38 -0000 1.394.2.18 @@ -450,6 +450,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/evolution/%{evo_major}/libeconduit.so.* %{_libdir}/evolution/%{evo_major}/libecontacteditor.so.* %{_libdir}/evolution/%{evo_major}/libecontactlisteditor.so.* +%{_libdir}/evolution/%{evo_major}/libemformat.so.* %{_libdir}/evolution/%{evo_major}/libemiscwidgets.so.* %{_libdir}/evolution/%{evo_major}/libeshell.so.* %{_libdir}/evolution/%{evo_major}/libessmime.so.* @@ -608,17 +609,18 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/eshell %{_includedir}/evolution-%{evo_major} %{_libdir}/pkgconfig/evolution-plugin.pc -%{_libdir}/pkgconfig/evolution-shell.pc +#%{_libdir}/evolution/%{evo_major}/libefilterbar.so %{_libdir}/evolution/%{evo_major}/libeabutil.so %{_libdir}/evolution/%{evo_major}/libeconduit.so %{_libdir}/evolution/%{evo_major}/libecontacteditor.so %{_libdir}/evolution/%{evo_major}/libecontactlisteditor.so -#%{_libdir}/evolution/%{evo_major}/libefilterbar.so +%{_libdir}/evolution/%{evo_major}/libemformat.so %{_libdir}/evolution/%{evo_major}/libemiscwidgets.so %{_libdir}/evolution/%{evo_major}/libeshell.so %{_libdir}/evolution/%{evo_major}/libessmime.so %{_libdir}/evolution/%{evo_major}/libetable.so %{_libdir}/evolution/%{evo_major}/libetext.so +%{_libdir}/pkgconfig/evolution-shell.pc %{_libdir}/evolution/%{evo_major}/libetimezonedialog.so %{_libdir}/evolution/%{evo_major}/libeutil.so %{_libdir}/evolution/%{evo_major}/libevolution-a11y.so From pkgdb at fedoraproject.org Tue Jul 14 19:27:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:12 +0000 Subject: [pkgdb] jakarta-commons-codec ownership updated Message-ID: <20090714192713.7DBBC10F8B0@bastion2.fedora.phx.redhat.com> Package jakarta-commons-codec in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-codec From pkgdb at fedoraproject.org Tue Jul 14 19:27:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:14 +0000 Subject: [pkgdb] jakarta-commons-digester ownership updated Message-ID: <20090714192714.2BB2510F89C@bastion2.fedora.phx.redhat.com> Package jakarta-commons-digester in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-digester From pkgdb at fedoraproject.org Tue Jul 14 19:27:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:16 +0000 Subject: [pkgdb] jakarta-commons-launcher ownership updated Message-ID: <20090714192716.98ADB10F8A5@bastion2.fedora.phx.redhat.com> Package jakarta-commons-launcher in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-launcher From pkgdb at fedoraproject.org Tue Jul 14 19:27:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:19 +0000 Subject: [pkgdb] jakarta-commons-modeler ownership updated Message-ID: <20090714192719.2D90F10F8A8@bastion2.fedora.phx.redhat.com> Package jakarta-commons-modeler in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-modeler From pkgdb at fedoraproject.org Tue Jul 14 19:27:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:22 +0000 Subject: [pkgdb] xerces-j2 ownership updated Message-ID: <20090714192722.635E710F8A9@bastion2.fedora.phx.redhat.com> Package xerces-j2 in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xerces-j2 From pkgdb at fedoraproject.org Tue Jul 14 19:27:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:26 +0000 Subject: [pkgdb] xml-commons-apis ownership updated Message-ID: <20090714192726.B6B7910F8AA@bastion2.fedora.phx.redhat.com> Package xml-commons-apis in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xml-commons-apis From pkgdb at fedoraproject.org Tue Jul 14 19:27:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:45 +0000 Subject: [pkgdb] jakarta-commons-digester ownership updated Message-ID: <20090714192745.B91AB10F8A3@bastion2.fedora.phx.redhat.com> Package jakarta-commons-digester in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-digester From pkgdb at fedoraproject.org Tue Jul 14 19:27:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:52 +0000 Subject: [pkgdb] jakarta-commons-codec ownership updated Message-ID: <20090714192752.9BBD610F8A9@bastion2.fedora.phx.redhat.com> Package jakarta-commons-codec in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-codec From pkgdb at fedoraproject.org Tue Jul 14 19:27:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:27:57 +0000 Subject: [pkgdb] jakarta-commons-launcher ownership updated Message-ID: <20090714192757.251A810F899@bastion2.fedora.phx.redhat.com> Package jakarta-commons-launcher in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-launcher From pkgdb at fedoraproject.org Tue Jul 14 19:28:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:28:01 +0000 Subject: [pkgdb] jakarta-commons-modeler ownership updated Message-ID: <20090714192801.27C2F10F88D@bastion2.fedora.phx.redhat.com> Package jakarta-commons-modeler in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-modeler From pkgdb at fedoraproject.org Tue Jul 14 19:28:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:28:04 +0000 Subject: [pkgdb] xerces-j2 ownership updated Message-ID: <20090714192804.2643F10F8AD@bastion2.fedora.phx.redhat.com> Package xerces-j2 in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xerces-j2 From pkgdb at fedoraproject.org Tue Jul 14 19:28:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:28:08 +0000 Subject: [pkgdb] xml-commons-apis ownership updated Message-ID: <20090714192808.3693E10F8B0@bastion2.fedora.phx.redhat.com> Package xml-commons-apis in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xml-commons-apis From timfenn at fedoraproject.org Tue Jul 14 19:28:46 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Tue, 14 Jul 2009 19:28:46 +0000 (UTC) Subject: rpms/clipper/devel .cvsignore, 1.7, 1.8 clipper.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090714192846.DA61C11C0099@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/clipper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26995 Modified Files: .cvsignore clipper.spec sources Log Message: * Tue Jul 14 2009 Tim Fenn - 2.1-8.20090714cvs - update to 090714 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 May 2009 21:53:04 -0000 1.7 +++ .cvsignore 14 Jul 2009 19:28:16 -0000 1.8 @@ -1,3 +1,2 @@ -clipper-2.1-090522-ac.tar.gz +clipper-2.1-090714-ac.tar.gz clipper-patches-2.1.tar.gz -clipper-stdio_fixes.patch Index: clipper.spec =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/clipper.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- clipper.spec 25 May 2009 21:53:04 -0000 1.8 +++ clipper.spec 14 Jul 2009 19:28:16 -0000 1.9 @@ -2,11 +2,10 @@ Name: clipper Summary: Clipper C++ crystallographic library URL: http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper.html Version: 2.1 -Release: 7.20090522cvs%{?dist} +Release: 8.20090714cvs%{?dist} License: LGPLv2+ -Source0: http://www.ysbl.york.ac.uk/~cowtan/%{name}/%{name}-%{version}-090522-ac.tar.gz +Source0: http://www.ysbl.york.ac.uk/~cowtan/%{name}/%{name}-%{version}-090714-ac.tar.gz Source1: clipper-patches-2.1.tar.gz -Patch0: clipper-stdio_fixes.patch Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf @@ -44,7 +43,6 @@ crystallographic library. %prep %setup -q -a 1 -%patch0 -p0 ./autogen.sh sed -i 's/\r//' dox/coordtypes.dox @@ -72,23 +70,7 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc NEWS README AUTHORS COPYING -%{_bindir}/caniso -%{_bindir}/cecalc -%{_bindir}/cfft -%{_bindir}/chltofom -%{_bindir}/cinvfft -%{_bindir}/convert2mtz -%{_bindir}/cpatterson -%{_bindir}/cphasecombine -%{_bindir}/cphasematch -%{_bindir}/csfcalc -%{_bindir}/csigmaa -%{_bindir}/cmakereference -%{_bindir}/ciftophs -%{_bindir}/cmaplocal -%{_bindir}/cmodeltoseq -%{_bindir}/cncsfrommodel -%{_bindir}/csymmatch +%{_bindir}/* %{_libdir}/libclipper.so.* %files devel @@ -99,6 +81,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/clipper.pc %changelog +* Tue Jul 14 2009 Tim Fenn - 2.1-8.20090714cvs +- update to 090714 + * Mon May 25 2009 Tim Fenn - 2.1-7.20090522cvs - change to pre-release naming/numbering scheme - update to 090522 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 21:53:04 -0000 1.7 +++ sources 14 Jul 2009 19:28:16 -0000 1.8 @@ -1,3 +1,2 @@ -07b7fac623212b08cd6e19bc59201bb5 clipper-2.1-090522-ac.tar.gz -f9b551d4c005bf679fa2fa724d6fe977 clipper-patches-2.1.tar.gz -62bbe2aaeee4b30066df8b7bf8f506c1 clipper-stdio_fixes.patch +25124efb8d251cedfbd23f4b06851e47 clipper-2.1-090714-ac.tar.gz +56b75cfde2599264a1c17fa4e2aa4539 clipper-patches-2.1.tar.gz From salimma at fedoraproject.org Tue Jul 14 19:22:09 2009 From: salimma at fedoraproject.org (Michel Alexandre Salim) Date: Tue, 14 Jul 2009 19:22:09 +0000 (UTC) Subject: rpms/vala/devel vala-0.7.4-moduleinit.patch,1.1,1.2 Message-ID: <20090714192209.85A3711C0099@cvs1.fedora.phx.redhat.com> Author: salimma Update of /cvs/pkgs/rpms/vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25598/devel Modified Files: vala-0.7.4-moduleinit.patch Log Message: Modify patch to affect the pregenerated C file, not the original Vala source, as during build Vala is not installed yet vala-0.7.4-moduleinit.patch: Index: vala-0.7.4-moduleinit.patch =================================================================== RCS file: /cvs/pkgs/rpms/vala/devel/vala-0.7.4-moduleinit.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vala-0.7.4-moduleinit.patch 14 Jul 2009 08:22:25 -0000 1.1 +++ vala-0.7.4-moduleinit.patch 14 Jul 2009 19:22:09 -0000 1.2 @@ -1,11 +1,11 @@ ---- vala-0.7.4/codegen/valatyperegisterfunction.vala.moduleinit 2009-05-09 13:22:22.000000000 -0400 -+++ vala-0.7.4/codegen/valatyperegisterfunction.vala 2009-07-14 03:34:59.236422291 -0400 -@@ -62,7 +62,7 @@ - if (!plugin) { - type_block.add_statement (cdecl); - } else { -- definition_fragment.append (cdecl); -+ declaration_fragment.append (cdecl); - } - - CCodeFunction fun; +--- vala-0.7.4/codegen/valatyperegisterfunction.c.moduleinit 2009-06-14 12:53:17.000000000 -0400 ++++ vala-0.7.4/codegen/valatyperegisterfunction.c 2009-07-14 15:16:16.546338051 -0400 +@@ -238,7 +238,7 @@ + if (!plugin) { + vala_ccode_block_add_statement (type_block, (ValaCCodeNode*) _cdecl_); + } else { +- vala_ccode_fragment_append (self->priv->definition_fragment, (ValaCCodeNode*) _cdecl_); ++ vala_ccode_fragment_append (self->priv->declaration_fragment, (ValaCCodeNode*) _cdecl_); + } + fun = NULL; + if (!plugin) { From pkgdb at fedoraproject.org Tue Jul 14 19:31:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:31:46 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714193146.9A3AA10F8A3@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora 10 was orphaned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From pkgdb at fedoraproject.org Tue Jul 14 19:31:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:31:49 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714193149.2F89A10F8A6@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora 11 was orphaned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From caolanm at fedoraproject.org Tue Jul 14 19:35:14 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 14 Jul 2009 19:35:14 +0000 (UTC) Subject: rpms/hyphen-hsb/devel hyphen-hsb.spec,1.1,1.2 Message-ID: <20090714193514.7833811C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen-hsb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28591 Modified Files: hyphen-hsb.spec Log Message: links doesn't have a -no-references mode anymore Index: hyphen-hsb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-hsb/devel/hyphen-hsb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-hsb.spec 28 Mar 2009 16:00:01 -0000 1.1 +++ hyphen-hsb.spec 14 Jul 2009 19:35:14 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-hsb Summary: Upper Sorbian hyphenation rules %define upstreamid 20080619 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-hsb.tex Source1: http://www.tug.org/pipermail/tex-live/2005-June/008156.html Group: Applications/Text @@ -10,7 +10,7 @@ URL: http://tug.org/tex-hyphen BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: LPPL BuildArch: noarch -BuildRequires: hyphen-devel, links +BuildRequires: hyphen-devel, elinks Requires: hyphen Patch0: hyphen-hsb-cleantex.patch @@ -31,7 +31,7 @@ echo "See 008156.html (http://www.tug.or echo "---" >> README head -n 61 hyph-hsb.tex >> README -links -dump 008156.html -no-references > COPYING +elinks -dump 008156.html -no-references > COPYING %install rm -rf $RPM_BUILD_ROOT @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Tue Jul 14 2009 Caolan McNamara - 0.20080619-2 +- links doesn't have a -no-references mode anymore + * Mon Mar 23 2009 Caolan McNamara - 0.20080619-1 - initial version From pkgdb at fedoraproject.org Tue Jul 14 19:31:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 19:31:41 +0000 Subject: [pkgdb] pam_keyring ownership updated Message-ID: <20090714193142.0F87410F888@bastion2.fedora.phx.redhat.com> Package pam_keyring in Fedora devel was orphaned by dcbw To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_keyring From pghmcfc at fedoraproject.org Tue Jul 14 20:33:44 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Tue, 14 Jul 2009 20:33:44 +0000 (UTC) Subject: rpms/trac-spamfilter-plugin/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 trac-spamfilter-plugin.spec, 1.4, 1.5 Message-ID: <20090714203344.9222A11C0099@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/trac-spamfilter-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9076 Modified Files: .cvsignore sources trac-spamfilter-plugin.spec Log Message: Update to rev8330, addresses upstream tickets #6130, #7627, #8032, #8121, #8257 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Jun 2008 20:53:07 -0000 1.2 +++ .cvsignore 14 Jul 2009 20:33:13 -0000 1.3 @@ -1 +1 @@ -TracSpamFilter-0.2.1dev-r6990.tar.gz +TracSpamFilter-0.2.1dev-r8330.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Jun 2008 20:53:07 -0000 1.2 +++ sources 14 Jul 2009 20:33:14 -0000 1.3 @@ -1 +1 @@ -2e0f0bf135094d12b209e59d7aa16d60 TracSpamFilter-0.2.1dev-r6990.tar.gz +933fa87bd73611f2d7516607122e1975 TracSpamFilter-0.2.1dev-r8330.tar.gz Index: trac-spamfilter-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/devel/trac-spamfilter-plugin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- trac-spamfilter-plugin.spec 25 Feb 2009 21:38:08 -0000 1.4 +++ trac-spamfilter-plugin.spec 14 Jul 2009 20:33:14 -0000 1.5 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 6990 +%define svnrev 8330 Name: trac-spamfilter-plugin Version: 0.2.1 -Release: 0.4.20080603svn%{svnrev}%{?dist} +Release: 0.5.20090714svn%{svnrev}%{?dist} Summary: Spam-Filter plugin for Trac Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Paul Howarth - 0.2.1-0.5.20090714svn8330 +- Update to rev8330, addresses upstream tickets #6130, #7627, #8032, #8121, #8257 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-0.4.20080603svn6990 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pghmcfc at fedoraproject.org Tue Jul 14 20:41:35 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Tue, 14 Jul 2009 20:41:35 +0000 (UTC) Subject: rpms/trac-spamfilter-plugin/F-11 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 trac-spamfilter-plugin.spec, 1.4, 1.5 Message-ID: <20090714204135.E1C7511C0099@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/trac-spamfilter-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11558 Modified Files: .cvsignore sources trac-spamfilter-plugin.spec Log Message: Update to rev8330, addresses upstream tickets #6130, #7627, #8032, #8121, #8257 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Jun 2008 20:53:07 -0000 1.2 +++ .cvsignore 14 Jul 2009 20:41:05 -0000 1.3 @@ -1 +1 @@ -TracSpamFilter-0.2.1dev-r6990.tar.gz +TracSpamFilter-0.2.1dev-r8330.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Jun 2008 20:53:07 -0000 1.2 +++ sources 14 Jul 2009 20:41:05 -0000 1.3 @@ -1 +1 @@ -2e0f0bf135094d12b209e59d7aa16d60 TracSpamFilter-0.2.1dev-r6990.tar.gz +933fa87bd73611f2d7516607122e1975 TracSpamFilter-0.2.1dev-r8330.tar.gz Index: trac-spamfilter-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/F-11/trac-spamfilter-plugin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- trac-spamfilter-plugin.spec 25 Feb 2009 21:38:08 -0000 1.4 +++ trac-spamfilter-plugin.spec 14 Jul 2009 20:41:05 -0000 1.5 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 6990 +%define svnrev 8330 Name: trac-spamfilter-plugin Version: 0.2.1 -Release: 0.4.20080603svn%{svnrev}%{?dist} +Release: 0.5.20090714svn%{svnrev}%{?dist} Summary: Spam-Filter plugin for Trac Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Paul Howarth - 0.2.1-0.5.20090714svn8330 +- Update to rev8330, addresses upstream tickets #6130, #7627, #8032, #8121, #8257 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-0.4.20080603svn6990 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From tibbs at fedoraproject.org Tue Jul 14 21:02:11 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 14 Jul 2009 21:02:11 +0000 (UTC) Subject: rpms/pypoppler - New directory Message-ID: <20090714210211.1DFF411C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pypoppler In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm15949/rpms/pypoppler Log Message: Directory /cvs/pkgs/rpms/pypoppler added to the repository From tibbs at fedoraproject.org Tue Jul 14 21:02:11 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 14 Jul 2009 21:02:11 +0000 (UTC) Subject: rpms/pypoppler/devel - New directory Message-ID: <20090714210211.3C18011C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pypoppler/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm15949/rpms/pypoppler/devel Log Message: Directory /cvs/pkgs/rpms/pypoppler/devel added to the repository From tibbs at fedoraproject.org Tue Jul 14 21:02:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 14 Jul 2009 21:02:16 +0000 (UTC) Subject: rpms/pypoppler Makefile,NONE,1.1 Message-ID: <20090714210216.B53B311C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pypoppler In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm15949/rpms/pypoppler Added Files: Makefile Log Message: Setup of module pypoppler --- NEW FILE Makefile --- # Top level Makefile for module pypoppler all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 14 21:02:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 14 Jul 2009 21:02:17 +0000 (UTC) Subject: rpms/pypoppler/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090714210217.5772A11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pypoppler/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm15949/rpms/pypoppler/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pypoppler --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pypoppler # $Id: Makefile,v 1.1 2009/07/14 21:02:17 tibbs Exp $ NAME := pypoppler SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From ndim at fedoraproject.org Tue Jul 14 21:26:20 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Tue, 14 Jul 2009 21:26:20 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/devel .cvsignore, 1.47, 1.48 sources, 1.47, 1.48 xorg-x11-drv-radeonhd-README.fedora, 1.47, 1.48 xorg-x11-drv-radeonhd.spec, 1.60, 1.61 Message-ID: <20090714212620.685F911C0099@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21466 Modified Files: .cvsignore sources xorg-x11-drv-radeonhd-README.fedora xorg-x11-drv-radeonhd.spec Log Message: * Tue Jul 14 2009 Hans Ulrich Niedermann - 1.2.5-2.9.20090714git - New snapshot (upstream commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83): For details, run git log. Short summary: - Build fixes - initial power management support - man page improvements - misc bugs fixes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/.cvsignore,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- .cvsignore 11 Apr 2009 14:17:13 -0000 1.47 +++ .cvsignore 14 Jul 2009 21:26:19 -0000 1.48 @@ -1 +1 @@ -xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 11 Apr 2009 14:17:13 -0000 1.47 +++ sources 14 Jul 2009 21:26:20 -0000 1.48 @@ -1 +1 @@ -7ca12bf3def9a3e0353563ad3ca177f5 xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +b66f7e157e5ab5404e62f69184b9d3c5 xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: xorg-x11-drv-radeonhd-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/xorg-x11-drv-radeonhd-README.fedora,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- xorg-x11-drv-radeonhd-README.fedora 11 Apr 2009 14:17:14 -0000 1.47 +++ xorg-x11-drv-radeonhd-README.fedora 14 Jul 2009 21:26:20 -0000 1.48 @@ -11,7 +11,7 @@ quickly (and releases happen too infrequ package tarball releases. For this reason, we are packaging selected snapshots of upstream's git repository here. -Latest upstream commit: cb54f48b212d5ae54e13bbdf24575b6163798c0d +Latest upstream commit: bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 Contents Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- xorg-x11-drv-radeonhd.spec 11 Apr 2009 14:17:14 -0000 1.60 +++ xorg-x11-drv-radeonhd.spec 14 Jul 2009 21:26:20 -0000 1.61 @@ -20,8 +20,8 @@ %endif %if %{snapshot} -%define date 20090411 -%define git_commit cb54f48b212d5ae54e13bbdf24575b6163798c0d +%define date 20090714 +%define git_commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 %define alphatag .%{date}git %define tarball %{tarname}-%{version}-%{date}git %define ship_utils 1 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 2.8%{?alphatag}%{?dist} +Release: 2.9%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -164,6 +164,14 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Tue Jul 14 2009 Hans Ulrich Niedermann - 1.2.5-2.9.20090714git +- New snapshot (upstream commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83): + For details, run git log. Short summary: + - Build fixes + - initial power management support + - man page improvements + - misc bugs fixes + * Sat Apr 11 2009 Hans Ulrich Niedermann - 1.2.5-2.8.20090411git - Updated README.fedora with new feature set (2D+XVideo on R[67]xx) - This snapshot is the 1.2.5 release. From mcepl at fedoraproject.org Tue Jul 14 21:32:24 2009 From: mcepl at fedoraproject.org (Matej Cepl) Date: Tue, 14 Jul 2009 21:32:24 +0000 (UTC) Subject: rpms/jbrout/devel .cvsignore, 1.4, 1.5 jbrout.spec, 1.7, 1.8 sources, 1.4, 1.5 jbrout-hashlib.patch, 1.1, NONE Message-ID: <20090714213224.1E9A911C0099@cvs1.fedora.phx.redhat.com> Author: mcepl Update of /cvs/pkgs/rpms/jbrout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22909 Modified Files: .cvsignore jbrout.spec sources Removed Files: jbrout-hashlib.patch Log Message: New SVN checkout (fixes bug 510642) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Mar 2009 12:31:30 -0000 1.4 +++ .cvsignore 14 Jul 2009 21:31:53 -0000 1.5 @@ -1 +1 @@ -jbrout_0.3.174.tar.gz +jbrout.tar.bz2 Index: jbrout.spec =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/devel/jbrout.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jbrout.spec 13 Jul 2009 20:06:36 -0000 1.7 +++ jbrout.spec 14 Jul 2009 21:31:53 -0000 1.8 @@ -1,17 +1,16 @@ Name: jbrout Version: 0.3.174 -Release: 2%{?dist} +Release: 3.0.20090714svn223.1%{?dist} Summary: Photo manager, written in python/pygtk Group: Applications/Multimedia License: GPLv2 URL: http://jbrout.python-hosting.com/wiki -# 159 -Source0: http://jbrout.free.fr/download/sources/jbrout_%{version}.tar.gz +# SVN root http://jbrout.googlecode.com/svn/trunk, revision 223 +Source0: jbrout.tar.bz2 Source1: jbrout-Makefile Source2: jbrout.desktop Source3: jbrout-usr_bin Source4: jbrout-install.sh -Patch0: jbrout-hashlib.patch BuildArch: noarch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: python >= 2.4, python-lxml, pygtk2 >= 2.6 @@ -40,9 +39,10 @@ jBrout is able to : %prep %setup -q -n jbrout -%patch0 -p1 -b .hashlib cd jbrout/ +rm -v plugins/multiexport/libs/picasaweb/gdata/tlslite/utils/*.c +rm -v data/tools/*.exe TEMPFILE=$(mktemp %{_tmppath}/jbrout-build.XXXXXX) find libs plugins jbrout data -type f -a ! -name \*.png \ | while read FILE ; do \ @@ -54,14 +54,12 @@ find libs plugins jbrout data -type f -a chmod -x $FILE done unset TEMPFILE -#sed -i -e '1d' trackertag.py -#chmod -x SciTE.properties install -p %{SOURCE1} Makefile install -p -m a+rx,u+w %{SOURCE4} install-script %build cd jbrout -make DESTDIR=$RPM_BUILD_ROOT +make %install rm -rf $RPM_BUILD_ROOT @@ -84,7 +82,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/jbrout -%doc +%doc readme.txt %{_datadir}/jbrout/ %exclude %{_datadir}/jbrout/plugins/*/po/*/LC_MESSAGES/plugin.mo %lang(fr) %{_datadir}/jbrout/plugins/*/po/fr/LC_MESSAGES/plugin.mo @@ -92,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/jbrout.desktop %changelog +* Tue Jul 14 2009 Mat??j Cepl 0.3.174-3.0.20090714svn223.1 +- Attempt to build a new upstream SVN checkout. Fixes bug 510642 +- Remove unneeded files (*.exe, *.c) + * Mon Jul 13 2009 Mat??j Cepl - 0.3.174-2 - Use hashlib if possible. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Mar 2009 12:31:30 -0000 1.4 +++ sources 14 Jul 2009 21:31:53 -0000 1.5 @@ -1 +1 @@ -90a44be6fc3601399f7ce1ea44d6a112 jbrout_0.3.174.tar.gz +809dc14016dafb099c9cf56cb5a72555 jbrout.tar.bz2 --- jbrout-hashlib.patch DELETED --- From mcepl at fedoraproject.org Tue Jul 14 21:37:40 2009 From: mcepl at fedoraproject.org (Matej Cepl) Date: Tue, 14 Jul 2009 21:37:40 +0000 (UTC) Subject: rpms/jbrout/F-11 .cvsignore, 1.4, 1.5 jbrout.spec, 1.7, 1.8 sources, 1.4, 1.5 jbrout-hashlib.patch, 1.1, NONE Message-ID: <20090714213740.F180111C0099@cvs1.fedora.phx.redhat.com> Author: mcepl Update of /cvs/pkgs/rpms/jbrout/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23892 Modified Files: .cvsignore jbrout.spec sources Removed Files: jbrout-hashlib.patch Log Message: Building upstream SVN checkout (fix bug# 510642) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Mar 2009 12:31:30 -0000 1.4 +++ .cvsignore 14 Jul 2009 21:37:40 -0000 1.5 @@ -1 +1 @@ -jbrout_0.3.174.tar.gz +jbrout.tar.bz2 Index: jbrout.spec =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/F-11/jbrout.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jbrout.spec 13 Jul 2009 20:35:04 -0000 1.7 +++ jbrout.spec 14 Jul 2009 21:37:40 -0000 1.8 @@ -1,17 +1,16 @@ Name: jbrout Version: 0.3.174 -Release: 2%{?dist} +Release: 3.0.20090714svn223.1%{?dist} Summary: Photo manager, written in python/pygtk Group: Applications/Multimedia License: GPLv2 URL: http://jbrout.python-hosting.com/wiki -# 159 -Source0: http://jbrout.free.fr/download/sources/jbrout_%{version}.tar.gz +# SVN root http://jbrout.googlecode.com/svn/trunk, revision 223 +Source0: jbrout.tar.bz2 Source1: jbrout-Makefile Source2: jbrout.desktop Source3: jbrout-usr_bin Source4: jbrout-install.sh -Patch0: jbrout-hashlib.patch BuildArch: noarch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: python >= 2.4, python-lxml, pygtk2 >= 2.6 @@ -40,9 +39,10 @@ jBrout is able to : %prep %setup -q -n jbrout -%patch0 -p1 -b .hashlib cd jbrout/ +rm -v plugins/multiexport/libs/picasaweb/gdata/tlslite/utils/*.c +rm -v data/tools/*.exe TEMPFILE=$(mktemp %{_tmppath}/jbrout-build.XXXXXX) find libs plugins jbrout data -type f -a ! -name \*.png \ | while read FILE ; do \ @@ -54,14 +54,12 @@ find libs plugins jbrout data -type f -a chmod -x $FILE done unset TEMPFILE -#sed -i -e '1d' trackertag.py -#chmod -x SciTE.properties install -p %{SOURCE1} Makefile install -p -m a+rx,u+w %{SOURCE4} install-script %build cd jbrout -make DESTDIR=$RPM_BUILD_ROOT +make %install rm -rf $RPM_BUILD_ROOT @@ -84,7 +82,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_bindir}/jbrout -%doc +%doc readme.txt %{_datadir}/jbrout/ %exclude %{_datadir}/jbrout/plugins/*/po/*/LC_MESSAGES/plugin.mo %lang(fr) %{_datadir}/jbrout/plugins/*/po/fr/LC_MESSAGES/plugin.mo @@ -92,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/jbrout.desktop %changelog +* Tue Jul 14 2009 Mat??j Cepl 0.3.174-3.0.20090714svn223.1 +- Attempt to build a new upstream SVN checkout. Fixes bug 510642 +- Remove unneeded files (*.exe, *.c) + * Mon Jul 13 2009 Mat??j Cepl - 0.3.174-2 - Use hashlib if possible. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Mar 2009 12:31:30 -0000 1.4 +++ sources 14 Jul 2009 21:37:40 -0000 1.5 @@ -1 +1 @@ -90a44be6fc3601399f7ce1ea44d6a112 jbrout_0.3.174.tar.gz +809dc14016dafb099c9cf56cb5a72555 jbrout.tar.bz2 --- jbrout-hashlib.patch DELETED --- From oget at fedoraproject.org Tue Jul 14 21:59:43 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 14 Jul 2009 21:59:43 +0000 (UTC) Subject: rpms/lash/devel lash.spec,1.22,1.23 Message-ID: <20090714215943.5231B11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/lash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28800 Modified Files: lash.spec Log Message: * Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 - Build against libuuid on F-12 (e2fsprogs got split up) Index: lash.spec =================================================================== RCS file: /cvs/pkgs/rpms/lash/devel/lash.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lash.spec 15 Jun 2009 20:59:14 -0000 1.22 +++ lash.spec 14 Jul 2009 21:59:42 -0000 1.23 @@ -3,7 +3,7 @@ Summary: LASH Audio Session Handler Name: lash Version: 0.5.4 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.nongnu.org/lash/ @@ -11,12 +11,21 @@ Source0: http://download.savannah.g Patch0: lash-0.5.3-no-static-lib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: alsa-lib-devel, e2fsprogs-devel, gtk2-devel +BuildRequires: alsa-lib-devel +BuildRequires: desktop-file-utils +BuildRequires: gtk2-devel BuildRequires: jack-audio-connection-kit-devel -BuildRequires: libxml2-devel, readline-devel, texi2html -BuildRequires: python-devel swig - -BuildRequires: desktop-file-utils +BuildRequires: libxml2-devel +BuildRequires: python-devel +BuildRequires: readline-devel +BuildRequires: swig +BuildRequires: texi2html + +%if 0%{?fedora} < 11 +BuildRequires: e2fsprogs-devel +%else +BuildRequires: libuuid-devel +%endif %description LASH is a session management system for JACK and ALSA audio applications on @@ -28,9 +37,16 @@ patches) and the connections between the Summary: Development files for LASH Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: jack-audio-connection-kit-devel alsa-lib-devel e2fsprogs-devel +Requires: alsa-lib-devel +Requires: jack-audio-connection-kit-devel Requires: pkgconfig +%if 0%{?fedora} < 11 +Requires: e2fsprogs-devel +%else +Requires: libuuid-devel +%endif + %description devel Development files for the LASH library. @@ -155,6 +171,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitearch}/lash.py* %changelog +* Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 +- Build against libuuid on F-12 (e2fsprogs got split up) + * Sat Jun 13 2009 Orcan Ogetbil - 0.5.4-5 - Re-enable python package - Some macro consistency cleanup From oget at fedoraproject.org Tue Jul 14 22:01:59 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 14 Jul 2009 22:01:59 +0000 (UTC) Subject: rpms/lash/F-11 lash.spec,1.22,1.23 Message-ID: <20090714220159.5477811C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/lash/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29230 Modified Files: lash.spec Log Message: * Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 - Build against libuuid on F-12 (e2fsprogs got split up) Index: lash.spec =================================================================== RCS file: /cvs/pkgs/rpms/lash/F-11/lash.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lash.spec 15 Jun 2009 21:13:39 -0000 1.22 +++ lash.spec 14 Jul 2009 22:01:28 -0000 1.23 @@ -3,7 +3,7 @@ Summary: LASH Audio Session Handler Name: lash Version: 0.5.4 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.nongnu.org/lash/ @@ -11,12 +11,21 @@ Source0: http://download.savannah.g Patch0: lash-0.5.3-no-static-lib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: alsa-lib-devel, e2fsprogs-devel, gtk2-devel +BuildRequires: alsa-lib-devel +BuildRequires: desktop-file-utils +BuildRequires: gtk2-devel BuildRequires: jack-audio-connection-kit-devel -BuildRequires: libxml2-devel, readline-devel, texi2html -BuildRequires: python-devel swig - -BuildRequires: desktop-file-utils +BuildRequires: libxml2-devel +BuildRequires: python-devel +BuildRequires: readline-devel +BuildRequires: swig +BuildRequires: texi2html + +%if 0%{?fedora} < 11 +BuildRequires: e2fsprogs-devel +%else +BuildRequires: libuuid-devel +%endif %description LASH is a session management system for JACK and ALSA audio applications on @@ -28,9 +37,16 @@ patches) and the connections between the Summary: Development files for LASH Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: jack-audio-connection-kit-devel alsa-lib-devel e2fsprogs-devel +Requires: alsa-lib-devel +Requires: jack-audio-connection-kit-devel Requires: pkgconfig +%if 0%{?fedora} < 11 +Requires: e2fsprogs-devel +%else +Requires: libuuid-devel +%endif + %description devel Development files for the LASH library. @@ -155,6 +171,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitearch}/lash.py* %changelog +* Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 +- Build against libuuid on F-12 (e2fsprogs got split up) + * Sat Jun 13 2009 Orcan Ogetbil - 0.5.4-5 - Re-enable python package - Some macro consistency cleanup From oget at fedoraproject.org Tue Jul 14 22:03:02 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 14 Jul 2009 22:03:02 +0000 (UTC) Subject: rpms/lash/F-10 lash.spec,1.20,1.21 Message-ID: <20090714220302.3E9BA11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/lash/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29417 Modified Files: lash.spec Log Message: * Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 - Build against libuuid on F-12 (e2fsprogs got split up) Index: lash.spec =================================================================== RCS file: /cvs/pkgs/rpms/lash/F-10/lash.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- lash.spec 15 Jun 2009 21:17:16 -0000 1.20 +++ lash.spec 14 Jul 2009 22:02:31 -0000 1.21 @@ -3,7 +3,7 @@ Summary: LASH Audio Session Handler Name: lash Version: 0.5.4 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.nongnu.org/lash/ @@ -11,12 +11,21 @@ Source0: http://download.savannah.g Patch0: lash-0.5.3-no-static-lib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: alsa-lib-devel, e2fsprogs-devel, gtk2-devel +BuildRequires: alsa-lib-devel +BuildRequires: desktop-file-utils +BuildRequires: gtk2-devel BuildRequires: jack-audio-connection-kit-devel -BuildRequires: libxml2-devel, readline-devel, texi2html -BuildRequires: python-devel swig - -BuildRequires: desktop-file-utils +BuildRequires: libxml2-devel +BuildRequires: python-devel +BuildRequires: readline-devel +BuildRequires: swig +BuildRequires: texi2html + +%if 0%{?fedora} < 11 +BuildRequires: e2fsprogs-devel +%else +BuildRequires: libuuid-devel +%endif %description LASH is a session management system for JACK and ALSA audio applications on @@ -28,9 +37,16 @@ patches) and the connections between the Summary: Development files for LASH Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: jack-audio-connection-kit-devel alsa-lib-devel e2fsprogs-devel +Requires: alsa-lib-devel +Requires: jack-audio-connection-kit-devel Requires: pkgconfig +%if 0%{?fedora} < 11 +Requires: e2fsprogs-devel +%else +Requires: libuuid-devel +%endif + %description devel Development files for the LASH library. @@ -155,6 +171,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitearch}/lash.py* %changelog +* Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 +- Build against libuuid on F-12 (e2fsprogs got split up) + * Sat Jun 13 2009 Orcan Ogetbil - 0.5.4-5 - Re-enable python package - Some macro consistency cleanup From mbooth at fedoraproject.org Tue Jul 14 22:11:51 2009 From: mbooth at fedoraproject.org (mbooth) Date: Tue, 14 Jul 2009 22:11:51 +0000 (UTC) Subject: rpms/eclipse-dtp/devel eclipse-dtp-remove-duplicate-plugin.patch, NONE, 1.1 eclipse-dtp.spec, 1.7, 1.8 Message-ID: <20090714221151.897AA11C0099@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/eclipse-dtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31624/eclipse-dtp/devel Modified Files: eclipse-dtp.spec Added Files: eclipse-dtp-remove-duplicate-plugin.patch Log Message: * Tue Jul 14 2009 Mat Booth 1.7.0-3 - Disable jar repacking because of a bug in redhat-rpm-config, see #461854. - Update dependency on wsdl4j. * Sun Jul 05 2009 Mat Booth 1.7.0-2 - Build all features. - Add dependency on LPG. eclipse-dtp-remove-duplicate-plugin.patch: --- NEW FILE eclipse-dtp-remove-duplicate-plugin.patch --- --- org.eclipse.datatools.sqldevtools.feature/feature.xml 2009-04-24 10:39:24.000000000 +0100 +++ org.eclipse.datatools.sqldevtools.feature/feature.xml 2009-07-05 21:56:31.156615551 +0100 @@ -118,13 +118,6 @@ unpack="false"/> - - - - Index: eclipse-dtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/eclipse-dtp.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- eclipse-dtp.spec 2 Jul 2009 20:00:40 -0000 1.7 +++ eclipse-dtp.spec 14 Jul 2009 22:11:21 -0000 1.8 @@ -1,9 +1,13 @@ %global eclipse_base %{_libdir}/eclipse %global eclipse_dropin %{_datadir}/eclipse/dropins +# temporarily disable jar repacking because of a bug in redhat-rpm-config, see: +# https://bugzilla.redhat.com/show_bug.cgi?id=461854 +%define __jar_repack %{nil} + Name: eclipse-dtp Version: 1.7.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Eclipse Data Tools Platform Group: System Environment/Libraries License: EPL @@ -17,6 +21,10 @@ Source1: get-dtp.sh Patch0: %{name}-java6.patch +# remove duplicate plugin from sqltools features (it's actually built in the +# connectivity feature) +Patch1: %{name}-remove-duplicate-plugin.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -26,22 +34,24 @@ BuildRequires: jpackage-utils BuildRequires: eclipse-pde >= 1:3.4.2 BuildRequires: eclipse-emf BuildRequires: eclipse-gef -BuildRequires: wsdl4j >= 1.5.2-5.5 +BuildRequires: wsdl4j >= 1.5.2-6.6 BuildRequires: xerces-j2 >= 2.7.1-10.3 BuildRequires: xml-commons-resolver >= 1.1-2.15 BuildRequires: xalan-j2 >= 2.7.0-7.5 BuildRequires: xml-commons-apis >= 1.3.04-1.4 +BuildRequires: lpg-java-compat = 1.1.0 Requires: java Requires: jpackage-utils Requires: eclipse-platform >= 1:3.4.2 Requires: eclipse-emf Requires: eclipse-gef -Requires: wsdl4j >= 1.5.2-5.5 +Requires: wsdl4j >= 1.5.2-6.6 Requires: xerces-j2 >= 2.7.1-10.3 Requires: xml-commons-resolver >= 1.1-2.15 Requires: xalan-j2 >= 2.7.0-7.5 Requires: xml-commons-apis >= 1.3.04-1.4 +Requires: lpg-java-compat = 1.1.0 %description The Eclipse Data Tools Platform provides extensible frameworks and exemplary @@ -50,11 +60,10 @@ data-centric technologies and supported %prep %setup -q -n dtp-%{version} -%patch0 -# remove unneeded import on sun.misc.Compare which broke compilation on non-Sun jvm -sed -i 's/import sun\.misc\.Compare;/ /' \ - org.eclipse.datatools.connectivity/src/org/eclipse/datatools/connectivity/drivers/models/OverrideTemplateDescriptor.java +# apply patches +%patch0 +%patch1 # make sure upstream hasn't sneaked in any jars we don't know about JARS="" @@ -75,37 +84,48 @@ ln -s %{_javadir}/xalan-j2-serializer.ja ln -s %{_javadir}/xml-commons-resolver.jar org.apache.xml.resolver_1.2.0.jar ln -s %{_javadir}/xml-commons-apis.jar javax.xml_1.3.4.jar ln -s %{_javadir}/wsdl4j.jar javax.wsdl_1.5.0.jar +ln -s %{_javadir}/lpgjavaruntime.jar net.sourceforge.lpg.lpgjavaruntime_1.1.0.jar popd %build -# build a subset of the features until dependencies and build issues are fixed +# Note: Use date from the cvs tag as the context qualifier. +OPTIONS="-DjavacTarget=1.5 -DjavacSource=1.5 -DforceContextQualifier=v200906151043" + +# build all features except for documentation and SDK features TODO: build everything %{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.modelbase.feature \ - -d "emf gef" -o `pwd`/orbitDeps + -d "emf gef" -o `pwd`/orbitDeps -a "$OPTIONS" %{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.connectivity.feature \ - -d "emf gef" -o `pwd`/orbitDeps -%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.enablement.oda.feature \ - -d "emf gef" -o `pwd`/orbitDeps + -d "emf gef" -o `pwd`/orbitDeps -a "$OPTIONS" +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.sqldevtools.feature \ + -d "emf gef" -o `pwd`/orbitDeps -a "$OPTIONS" +%{eclipse_base}/buildscripts/pdebuild -f org.eclipse.datatools.enablement.feature \ + -d "emf gef" -o `pwd`/orbitDeps -a "$OPTIONS" %install rm -rf %{buildroot} install -d -m 755 %{buildroot}%{eclipse_dropin} unzip -q -d %{buildroot}%{eclipse_dropin}/dtp-modelbase build/rpmBuild/org.eclipse.datatools.modelbase.feature.zip unzip -q -d %{buildroot}%{eclipse_dropin}/dtp-connectivity build/rpmBuild/org.eclipse.datatools.connectivity.feature.zip -unzip -q -d %{buildroot}%{eclipse_dropin}/dtp-enablement-oda build/rpmBuild/org.eclipse.datatools.enablement.oda.feature.zip +unzip -q -d %{buildroot}%{eclipse_dropin}/dtp-sqldevtools build/rpmBuild/org.eclipse.datatools.sqldevtools.feature.zip +unzip -q -d %{buildroot}%{eclipse_dropin}/dtp-enablement build/rpmBuild/org.eclipse.datatools.enablement.feature.zip # use system bundles -pushd %{buildroot}%{eclipse_dropin}/dtp-enablement-oda/eclipse/plugins -rm -fr org.apache.xerces_*.jar +pushd %{buildroot}%{eclipse_dropin}/dtp-enablement/eclipse/plugins +rm org.apache.xerces_*.jar ln -s ../../../../../java/xerces-j2.jar org.apache.xerces_2.9.0.jar -rm -fr org.apache.xml.serializer_*.jar +rm org.apache.xml.serializer_*.jar ln -s ../../../../../java/xalan-j2-serializer.jar org.apache.xml.serializer_2.7.1.jar -rm -fr org.apache.xml.resolver_*.jar +rm org.apache.xml.resolver_*.jar ln -s ../../../../../java/xml-commons-resolver.jar org.apache.xml.resolver_1.2.0.jar -rm -fr javax.xml_*.jar +rm javax.xml_*.jar ln -s ../../../../../java/xml-commons-apis.jar javax.xml_1.3.4.jar -rm -fr javax.wsdl_*.jar +rm javax.wsdl_*.jar ln -s ../../../../../java/wsdl4j.jar javax.wsdl_1.5.0.jar popd +pushd %{buildroot}%{eclipse_dropin}/dtp-sqldevtools/eclipse/plugins +rm net.sourceforge.lpg.lpgjavaruntime_*.jar +ln -s ../../../../../java/lpgjavaruntime.jar net.sourceforge.lpg.lpgjavaruntime_1.1.0.jar +popd %clean rm -rf %{buildroot} @@ -114,10 +134,19 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %{eclipse_dropin}/dtp-modelbase %{eclipse_dropin}/dtp-connectivity -%{eclipse_dropin}/dtp-enablement-oda -%doc org.eclipse.datatools.enablement.oda.feature/license.html +%{eclipse_dropin}/dtp-sqldevtools +%{eclipse_dropin}/dtp-enablement +%doc org.eclipse.datatools.sdk-all.feature/rootfiles/* %changelog +* Tue Jul 14 2009 Mat Booth 1.7.0-3 +- Disable jar repacking because of a bug in redhat-rpm-config, see #461854. +- Update dependency on wsdl4j. + +* Sun Jul 05 2009 Mat Booth 1.7.0-2 +- Build all features. +- Add dependency on LPG. + * Thu Jul 02 2009 Mat Booth 1.7.0-1 - Update to 1.7.0 final release (Galileo). - Get map files from CVS instead of maintaining our own. From nim at fedoraproject.org Tue Jul 14 22:17:22 2009 From: nim at fedoraproject.org (nim) Date: Tue, 14 Jul 2009 22:17:22 +0000 (UTC) Subject: rpms/apanov-heuristica-fonts/devel .cvsignore, 1.3, 1.4 apanov-heuristica-fonts.spec, 1.8, 1.9 import.log, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090714221722.E7D7111C0099@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/apanov-heuristica-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv361/devel Modified Files: .cvsignore apanov-heuristica-fonts.spec import.log sources Log Message: 20090507 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/apanov-heuristica-fonts/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 30 Jan 2009 20:04:27 -0000 1.3 +++ .cvsignore 14 Jul 2009 22:16:52 -0000 1.4 @@ -1 +1 @@ -heuristica-src-20090125.tar.bz2 +heuristica-src-20090507.tar.bz2 Index: apanov-heuristica-fonts.spec =================================================================== RCS file: /cvs/extras/rpms/apanov-heuristica-fonts/devel/apanov-heuristica-fonts.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- apanov-heuristica-fonts.spec 15 Mar 2009 20:04:01 -0000 1.8 +++ apanov-heuristica-fonts.spec 14 Jul 2009 22:16:52 -0000 1.9 @@ -4,8 +4,8 @@ %global archivename heuristica-src-%{version} Name: %{fontname}-fonts -Version: 20090125 -Release: 5%{?dist} +Version: 20090507 +Release: 1%{?dist} Summary: Heuristica font Group: User Interface/X @@ -16,7 +16,7 @@ Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -BuildRequires: fontforge +BuildRequires: fontforge, fonttools, xgridfit BuildRequires: fontpackages-devel Requires: fontpackages-filesystem @@ -30,7 +30,8 @@ font that was released to the TeX Users %build -make %{?_smp_mflags} all +make %{?_smp_mflags} Heuristica-Regular.otf Heuristica-Bold.otf \ + Heuristica-Italic.otf Heuristica-BoldItalic.otf %install @@ -58,11 +59,16 @@ rm -fr %{buildroot} %changelog -* Sun Mar 15 2009 Nicolas Mailhot - 20090125-5 +* Tue Jul 14 2009 Nicolas Mailhot +- 20090507-1 + +* Sun Mar 15 2009 Nicolas Mailhot +- 20090125-5 ??? Make sure F11 font packages have been built with F11 fontforge -* Mon Feb 23 2009 Fedora Release Engineering - 20090125-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Mon Feb 23 2009 Fedora Release Engineering +- 20090125-4 +??? Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Feb 22 2009 Nicolas Mailhot - 20090125-3 Index: import.log =================================================================== RCS file: /cvs/extras/rpms/apanov-heuristica-fonts/devel/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 15 Mar 2009 20:04:01 -0000 1.6 +++ import.log 14 Jul 2009 22:16:52 -0000 1.7 @@ -4,3 +4,4 @@ apanov-heuristica-fonts-20090125-1_fc11: apanov-heuristica-fonts-20090125-3_fc11:HEAD:apanov-heuristica-fonts-20090125-3.fc11.src.rpm:1235299849 apanov-heuristica-fonts-20090125-3_fc11:HEAD:apanov-heuristica-fonts-20090125-3.fc11.src.rpm:1235377618 apanov-heuristica-fonts-20090125-5_fc11:HEAD:apanov-heuristica-fonts-20090125-5.fc11.src.rpm:1237147311 +apanov-heuristica-fonts-20090507-1_fc12:HEAD:apanov-heuristica-fonts-20090507-1.fc12.src.rpm:1247609683 Index: sources =================================================================== RCS file: /cvs/extras/rpms/apanov-heuristica-fonts/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 30 Jan 2009 20:04:27 -0000 1.3 +++ sources 14 Jul 2009 22:16:52 -0000 1.4 @@ -1 +1 @@ -316d7eaf64b4deb8e39eaeed76eaf5d6 heuristica-src-20090125.tar.bz2 +0c395cbb906b7a82467bd90a88a4671a heuristica-src-20090507.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 14 22:27:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:27:52 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested watchcommits Message-ID: <20090714222752.3F88C10F888@bastion2.fedora.phx.redhat.com> kylev has requested the watchcommits acl on python-peak-util-addons (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:27:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:27:52 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested watchbugzilla Message-ID: <20090714222752.C7A4310F89A@bastion2.fedora.phx.redhat.com> kylev has requested the watchbugzilla acl on python-peak-util-addons (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:27:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:27:55 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested commit Message-ID: <20090714222755.EC05A10F8A3@bastion2.fedora.phx.redhat.com> kylev has requested the commit acl on python-peak-util-addons (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:27:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:27:58 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested approveacls Message-ID: <20090714222758.48EB310F8A8@bastion2.fedora.phx.redhat.com> kylev has requested the approveacls acl on python-peak-util-addons (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:28:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:28:07 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested watchbugzilla Message-ID: <20090714222807.C6DD710F888@bastion2.fedora.phx.redhat.com> kylev has requested the watchbugzilla acl on python-peak-util-addons (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:28:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:28:09 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested watchcommits Message-ID: <20090714222809.C661310F8AC@bastion2.fedora.phx.redhat.com> kylev has requested the watchcommits acl on python-peak-util-addons (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:28:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:28:11 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested commit Message-ID: <20090714222811.5716610F8B1@bastion2.fedora.phx.redhat.com> kylev has requested the commit acl on python-peak-util-addons (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 22:28:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 22:28:13 +0000 Subject: [pkgdb] python-peak-util-addons: kylev has requested approveacls Message-ID: <20090714222813.411B910F8B4@bastion2.fedora.phx.redhat.com> kylev has requested the approveacls acl on python-peak-util-addons (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From jlblanco at fedoraproject.org Tue Jul 14 22:31:31 2009 From: jlblanco at fedoraproject.org (Jose Luis Blanco) Date: Tue, 14 Jul 2009 22:31:31 +0000 (UTC) Subject: rpms/mrpt/devel .cvsignore, 1.2, 1.3 mrpt.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090714223131.4B12611C0099@cvs1.fedora.phx.redhat.com> Author: jlblanco Update of /cvs/pkgs/rpms/mrpt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2680/devel Modified Files: .cvsignore mrpt.spec sources Log Message: New upstream release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 Feb 2009 15:38:56 -0000 1.2 +++ .cvsignore 14 Jul 2009 22:31:29 -0000 1.3 @@ -1 +1 @@ -mrpt-0.6.5-20090213svn807.tar.gz +mrpt-0.7.0-20090529svn1047.tar.gz Index: mrpt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/devel/mrpt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mrpt.spec 26 Feb 2009 03:00:30 -0000 1.2 +++ mrpt.spec 14 Jul 2009 22:31:29 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Libraries and programs for mobile robot SLAM and navigation Name: mrpt -Version: 0.6.5 -Release: 0.4.20090213svn807%{?dist} +Version: 0.7.0 +Release: 0.1.20090529svn1047%{?dist} License: GPLv3+ Group: Development/Libraries URL: http://babel.isa.uma.es/mrpt/ @@ -13,9 +13,9 @@ URL: http://babel.isa.uma.es/mrpt/ # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.6.5 mrpt-0.6.5 -# tar -czvf mrpt-0.6.5-20090213svn807.tar.gz mrpt-0.6.5 -Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.6.5-20090213svn807.tar.gz +# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.7.0 mrpt-0.7.0 +# tar -czvf mrpt-0.7.0-20090529svn1047.tar.gz mrpt-0.70 +Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.7.0-20090529svn1047.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -306,6 +306,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Tue Jul 14 2009 - Jose Luis Blanco 0.7.0-0.1.20090529svn1047 +- Packaging of new upstream version 0.7.0. + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-0.4.20090213svn807 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Feb 2009 15:38:56 -0000 1.2 +++ sources 14 Jul 2009 22:31:29 -0000 1.3 @@ -1 +1 @@ -15796776b1d905fa97556f6642380f1d mrpt-0.6.5-20090213svn807.tar.gz +b483f12657ff968220cec6697a050c52 mrpt-0.7.0-20090529svn1047.tar.gz From oget at fedoraproject.org Tue Jul 14 22:36:24 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 14 Jul 2009 22:36:24 +0000 (UTC) Subject: rpms/bouncycastle-mail/devel bouncycastle-mail.spec,1.7,1.8 Message-ID: <20090714223624.96B2711C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3524 Modified Files: bouncycastle-mail.spec Log Message: * Tue Jul 13 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-mail/devel/bouncycastle-mail.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bouncycastle-mail.spec 20 Apr 2009 22:21:18 -0000 1.7 +++ bouncycastle-mail.spec 14 Jul 2009 22:35:54 -0000 1.8 @@ -1,10 +1,10 @@ -%define with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} -%define archivever jdk16-143 +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} +%global archivever jdk16-143 Summary: S/MIME and CMS libraries for Bouncy Castle Name: bouncycastle-mail Version: 1.43 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -77,11 +77,11 @@ install -pm 644 bcmail-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bcmail-%{version}.jar bcmail.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bcmail-%{version}.jar bcmail-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -111,9 +111,9 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bcmail.jar %{_javadir}/bcmail-%{version}.jar +%{_javadir}/gcj-endorsed/bcmail-%{version}.jar %if %{with_gcj} - %{_javadir}/gcj-endorsed/bcmail-%{version}.jar - %{_libdir}/gcj/%{name} + %{_libdir}/gcj/%{name}/ %endif %files javadoc @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Tue Jul 13 2009 Orcan Ogetbil - 1.43-2 +- Re-enable AOT bits thanks to Andrew Haley. + * Mon Apr 20 2009 Orcan Ogetbil - 1.43-1 - Import Bouncy Castle 1.43. From oget at fedoraproject.org Tue Jul 14 22:37:49 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Tue, 14 Jul 2009 22:37:49 +0000 (UTC) Subject: rpms/bouncycastle-mail/F-11 bouncycastle-mail.spec,1.7,1.8 Message-ID: <20090714223749.51B4E11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle-mail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3870 Modified Files: bouncycastle-mail.spec Log Message: * Tue Jul 13 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-mail/F-11/bouncycastle-mail.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bouncycastle-mail.spec 20 Apr 2009 23:39:09 -0000 1.7 +++ bouncycastle-mail.spec 14 Jul 2009 22:37:19 -0000 1.8 @@ -1,10 +1,10 @@ -%define with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} -%define archivever jdk16-143 +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} +%global archivever jdk16-143 Summary: S/MIME and CMS libraries for Bouncy Castle Name: bouncycastle-mail Version: 1.43 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -77,11 +77,11 @@ install -pm 644 bcmail-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bcmail-%{version}.jar bcmail.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bcmail-%{version}.jar bcmail-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -111,9 +111,9 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bcmail.jar %{_javadir}/bcmail-%{version}.jar +%{_javadir}/gcj-endorsed/bcmail-%{version}.jar %if %{with_gcj} - %{_javadir}/gcj-endorsed/bcmail-%{version}.jar - %{_libdir}/gcj/%{name} + %{_libdir}/gcj/%{name}/ %endif %files javadoc @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Tue Jul 13 2009 Orcan Ogetbil - 1.43-2 +- Re-enable AOT bits thanks to Andrew Haley. + * Mon Apr 20 2009 Orcan Ogetbil - 1.43-1 - Import Bouncy Castle 1.43. From jlblanco at fedoraproject.org Tue Jul 14 22:38:19 2009 From: jlblanco at fedoraproject.org (Jose Luis Blanco) Date: Tue, 14 Jul 2009 22:38:19 +0000 (UTC) Subject: rpms/mrpt/F-10 .cvsignore, 1.2, 1.3 mrpt.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090714223819.14BEE11C0099@cvs1.fedora.phx.redhat.com> Author: jlblanco Update of /cvs/pkgs/rpms/mrpt/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3888/F-10 Modified Files: .cvsignore mrpt.spec sources Log Message: Updates for F9 and F10. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 Feb 2009 17:13:04 -0000 1.2 +++ .cvsignore 14 Jul 2009 22:37:48 -0000 1.3 @@ -1 +1,2 @@ mrpt-0.6.5-20090213svn807.tar.gz +mrpt-0.7.0-20090529svn1047.tar.gz Index: mrpt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-10/mrpt.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mrpt.spec 23 Feb 2009 17:13:04 -0000 1.1 +++ mrpt.spec 14 Jul 2009 22:37:48 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Libraries and programs for mobile robot SLAM and navigation Name: mrpt -Version: 0.6.5 -Release: 0.3.20090213svn807%{?dist} +Version: 0.7.0 +Release: 0.1.20090529svn1047%{?dist} License: GPLv3+ Group: Development/Libraries URL: http://babel.isa.uma.es/mrpt/ @@ -13,9 +13,9 @@ URL: http://babel.isa.uma.es/mrpt/ # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.6.5 mrpt-0.6.5 -# tar -czvf mrpt-0.6.5-20090213svn807.tar.gz mrpt-0.6.5 -Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.6.5-20090213svn807.tar.gz +# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.7.0 mrpt-0.7.0 +# tar -czvf mrpt-0.7.0-20090529svn1047.tar.gz mrpt-0.70 +Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.7.0-20090529svn1047.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -306,6 +306,12 @@ update-mime-database %{_datadir}/mime &> %changelog +* Tue Jul 14 2009 - Jose Luis Blanco 0.7.0-0.1.20090529svn1047 +- Packaging of new upstream version 0.7.0. + +* Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-0.4.20090213svn807 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Feb 19 2009 - Jose Luis Blanco 0.6.5-0.3.20090213svn807 - Fixed ownship of datadir/mrpt/config_files/ by two sub-packages. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Feb 2009 17:13:04 -0000 1.2 +++ sources 14 Jul 2009 22:37:48 -0000 1.3 @@ -1 +1,2 @@ 15796776b1d905fa97556f6642380f1d mrpt-0.6.5-20090213svn807.tar.gz +b483f12657ff968220cec6697a050c52 mrpt-0.7.0-20090529svn1047.tar.gz From jlblanco at fedoraproject.org Tue Jul 14 22:38:19 2009 From: jlblanco at fedoraproject.org (Jose Luis Blanco) Date: Tue, 14 Jul 2009 22:38:19 +0000 (UTC) Subject: rpms/mrpt/F-9 .cvsignore,1.2,1.3 mrpt.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090714223819.8512011C0099@cvs1.fedora.phx.redhat.com> Author: jlblanco Update of /cvs/pkgs/rpms/mrpt/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3888/F-9 Modified Files: .cvsignore mrpt.spec sources Log Message: Updates for F9 and F10. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 Feb 2009 18:12:11 -0000 1.2 +++ .cvsignore 14 Jul 2009 22:37:49 -0000 1.3 @@ -1 +1,2 @@ mrpt-0.6.5-20090213svn807.tar.gz +mrpt-0.7.0-20090529svn1047.tar.gz Index: mrpt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-9/mrpt.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mrpt.spec 23 Feb 2009 18:12:11 -0000 1.1 +++ mrpt.spec 14 Jul 2009 22:37:49 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Libraries and programs for mobile robot SLAM and navigation Name: mrpt -Version: 0.6.5 -Release: 0.3.20090213svn807%{?dist} +Version: 0.7.0 +Release: 0.1.20090529svn1047%{?dist} License: GPLv3+ Group: Development/Libraries URL: http://babel.isa.uma.es/mrpt/ @@ -13,9 +13,9 @@ URL: http://babel.isa.uma.es/mrpt/ # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.6.5 mrpt-0.6.5 -# tar -czvf mrpt-0.6.5-20090213svn807.tar.gz mrpt-0.6.5 -Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.6.5-20090213svn807.tar.gz +# svn export http://babel.isa.uma.es/mrpt-browse-code/mrpt-0.7.0 mrpt-0.7.0 +# tar -czvf mrpt-0.7.0-20090529svn1047.tar.gz mrpt-0.70 +Source: http://babel.isa.uma.es/mrpt/src-repo/mrpt-0.7.0-20090529svn1047.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -306,6 +306,12 @@ update-mime-database %{_datadir}/mime &> %changelog +* Tue Jul 14 2009 - Jose Luis Blanco 0.7.0-0.1.20090529svn1047 +- Packaging of new upstream version 0.7.0. + +* Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-0.4.20090213svn807 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Feb 19 2009 - Jose Luis Blanco 0.6.5-0.3.20090213svn807 - Fixed ownship of datadir/mrpt/config_files/ by two sub-packages. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Feb 2009 18:12:11 -0000 1.2 +++ sources 14 Jul 2009 22:37:49 -0000 1.3 @@ -1 +1,2 @@ 15796776b1d905fa97556f6642380f1d mrpt-0.6.5-20090213svn807.tar.gz +b483f12657ff968220cec6697a050c52 mrpt-0.7.0-20090529svn1047.tar.gz From gd at fedoraproject.org Tue Jul 14 23:03:40 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Tue, 14 Jul 2009 23:03:40 +0000 (UTC) Subject: rpms/samba/devel samba-3.4.0-build.patch, NONE, 1.1 .cvsignore, 1.64, 1.65 samba.spec, 1.188, 1.189 sources, 1.68, 1.69 Message-ID: <20090714230340.CD22911C0099@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8641 Modified Files: .cvsignore samba.spec sources Added Files: samba-3.4.0-build.patch Log Message: Update to 3.4.0 final. Guenther samba-3.4.0-build.patch: --- NEW FILE samba-3.4.0-build.patch --- commit 3b0bd19570894e5219878102a2564a08095f26cd Author: Jelmer Vernooij AuthorDate: Thu Jun 11 04:57:58 2009 +0200 Commit: G??nther Deschner CommitDate: Tue Jul 14 23:51:24 2009 +0200 Fix build with external talloc. --- source3/configure.in | 29 +++++++++++++++++++++++++++-- source3/samba4.m4 | 4 ++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 111e89d..fc41b35 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -77,7 +77,6 @@ done AC_SUBST(LIBTDB_OBJ0) SAMBA_CPPFLAGS="-Iinclude -I${srcdir-.}/include -I. -I${srcdir-.}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/../lib/replace" -SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TALLOC_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TEVENT_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TDB_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/libaddns" @@ -4748,7 +4747,33 @@ LINK_LIBSMBCLIENT=STATIC # TODO: for talloc and tdb (at least), these should # be extracted from their respective source directories # -SMB_LIBRARY(talloc, 1) +AC_ARG_ENABLE(external_libtalloc, [AS_HELP_STRING([--enable-external-libtalloc], [Enable external talloc [default=auto]])], +[ enable_external_libtalloc=$enableval ], [ enable_external_libtalloc=auto ]) + +if test "x$enable_external_libtalloc" != xno +then + PKG_CHECK_MODULES(LIBTALLOC, talloc >= 1.3.0, + [ enable_external_libtalloc=yes ], + [ if test x$enable_external_libtalloc = xyes; then + AC_MSG_ERROR([Unable to find libtalloc]) + else + enable_external_libtalloc=no + fi + ]) +fi + +if test "x$enable_external_libtalloc" = xno +then + m4_include(../lib/talloc/libtalloc.m4) + SMB_LIBRARY(talloc, 1) + LIBTALLOC_OBJ0="" + for obj in ${TALLOC_OBJ}; do + LIBTALLOC_OBJ0="${LIBTALLOC_OBJ0} ${tallocdir}/${obj}" + done + SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TALLOC_CFLAGS}" + AC_SUBST(LIBTALLOC_OBJ0) +fi + SMB_LIBRARY(tdb, 1) SMB_LIBRARY(netapi, 0) SMB_LIBRARY(smbclient, 0) diff --git a/source3/samba4.m4 b/source3/samba4.m4 index b5c7c74..0ea40db 100644 --- a/source3/samba4.m4 +++ b/source3/samba4.m4 @@ -75,6 +75,10 @@ SMB_EXT_LIB_FROM_PKGCONFIG(LIBTALLOC, talloc >= $TALLOC_MIN_VERSION, SMB_INCLUDE_MK(../lib/talloc/config.mk) ] ) +# Tallocdir isn't always set by the Samba3 c +tallocdir=../lib/talloc +AC_SUBST(tallocdir) +CFLAGS="$CFLAGS -I../lib/talloc" SMB_EXT_LIB_FROM_PKGCONFIG(LIBTDB, tdb >= $TDB_MIN_VERSION, [], Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 19 Jun 2009 10:36:48 -0000 1.64 +++ .cvsignore 14 Jul 2009 23:03:08 -0000 1.65 @@ -1 +1 @@ -samba-3.4.0rc1.tar.gz +samba-3.4.0.tar.gz Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/samba.spec,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- samba.spec 19 Jun 2009 10:36:48 -0000 1.188 +++ samba.spec 14 Jul 2009 23:03:09 -0000 1.189 @@ -1,9 +1,9 @@ -%define main_release 38 +%define main_release 40 %define samba_version 3.4.0 %define tdb_version 1.1.3 %define talloc_version 1.2.0 -#%define pre_release %nil -%define pre_release rc1 +#%define pre_release rc1 +%define pre_release %nil %define samba_release 0%{pre_release}.%{main_release}%{?dist} @@ -48,6 +48,7 @@ Patch104: samba-3.0.0rc3-nmbd-netbiosnam # The passwd part has been applied, but not the group part Patch107: samba-3.2.0pre1-grouppwd.patch Patch200: samba-3.2.5-inotify.patch +Patch201: samba-3.4.0-build.patch Requires(pre): samba-common = %{epoch}:%{samba_version}-%{release} Requires: pam >= 0:0.64 @@ -56,7 +57,7 @@ BuildRoot: %{_tmppath}/%{name}-%{samba_v Requires(post): /sbin/chkconfig, /sbin/service Requires(preun): /sbin/chkconfig, /sbin/service BuildRequires: pam-devel, readline-devel, ncurses-devel, libacl-devel, krb5-devel, openldap-devel, openssl-devel, cups-devel, ctdb-devel -BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel +BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel, libuuid-devel %if ! %enable_talloc BuildRequires: libtalloc-devel %endif @@ -258,6 +259,7 @@ cp %{SOURCE11} packaging/Fedora/ #%patch104 -p1 -b .nmbd-netbiosname # FIXME: does not apply %patch107 -p1 -b .grouppwd %patch200 -p0 -b .inotify +%patch201 -p1 -b .build mv %samba_source/VERSION %samba_source/VERSION.orig sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{samba_release}\"/' < %samba_source/VERSION.orig > %samba_source/VERSION @@ -312,7 +314,6 @@ CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DL --with-shared-modules=idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2 \ --with-cifsupcall \ --with-cluster-support - # --with-aio-support \ @@ -885,6 +886,9 @@ exit 0 %{_datadir}/pixmaps/samba/logo-small.png %changelog +* Fri Jul 03 2009 Guenther Deschner - 3.4.0-0.40 +- Update to 3.4.0 + * Fri Jun 19 2009 Guenther Deschner - 3.4.0rc1-0.39 - Update to 3.4.0rc1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/sources,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sources 19 Jun 2009 10:36:49 -0000 1.68 +++ sources 14 Jul 2009 23:03:09 -0000 1.69 @@ -1 +1 @@ -fa8cae4264144b9690f197307ef14e34 samba-3.4.0rc1.tar.gz +a7137736379daf9855814ae14c2c5e22 samba-3.4.0.tar.gz From pkgdb at fedoraproject.org Tue Jul 14 23:05:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:05:52 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230552.6438010F899@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on python-peak-util-addons (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:05:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:05:52 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230552.E587510F89F@bastion2.fedora.phx.redhat.com> lmacken has set the watchcommits acl on python-peak-util-addons (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:05:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:05:53 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230554.025EA10F8A6@bastion2.fedora.phx.redhat.com> lmacken has set the commit acl on python-peak-util-addons (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:05:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:05:55 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230555.47A0910F8AA@bastion2.fedora.phx.redhat.com> lmacken has set the approveacls acl on python-peak-util-addons (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:06:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:06:01 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230601.18B6110F8AD@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on python-peak-util-addons (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:06:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:06:01 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230601.9EE4A10F8B1@bastion2.fedora.phx.redhat.com> lmacken has set the watchcommits acl on python-peak-util-addons (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:06:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:06:02 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230602.4BF2F10F8B3@bastion2.fedora.phx.redhat.com> lmacken has set the commit acl on python-peak-util-addons (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From pkgdb at fedoraproject.org Tue Jul 14 23:06:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 14 Jul 2009 23:06:04 +0000 Subject: [pkgdb] python-peak-util-addons had acl change status Message-ID: <20090714230604.338AC10F8B7@bastion2.fedora.phx.redhat.com> lmacken has set the approveacls acl on python-peak-util-addons (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-peak-util-addons From sparks at fedoraproject.org Tue Jul 14 23:52:44 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Tue, 14 Jul 2009 23:52:44 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090714235244.6B07411C0099@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19093/devel Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Changes made to Publican. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/fedora-security-guide-en-US.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fedora-security-guide-en-US.spec 14 Jul 2009 03:34:42 -0000 1.1 +++ fedora-security-guide-en-US.spec 14 Jul 2009 23:52:13 -0000 1.2 @@ -20,6 +20,7 @@ Source: %{name}-%{version}.tgz BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: publican +BuildRequires: desktop-file-utils BuildRequires: publican-fedora Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 14 Jul 2009 03:34:42 -0000 1.1 +++ import.log 14 Jul 2009 23:52:13 -0000 1.2 @@ -1 +1,2 @@ fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247542430 +fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247615483 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jul 2009 03:34:42 -0000 1.2 +++ sources 14 Jul 2009 23:52:13 -0000 1.3 @@ -1 +1 @@ -87e62acffd88e0b0d5f5ee0dda5d9be6 fedora-security-guide-en-US-1.0.tgz +4b81772e7c2f10644848b699a19b1150 fedora-security-guide-en-US-1.0.tgz From sparks at fedoraproject.org Wed Jul 15 00:01:23 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Wed, 15 Jul 2009 00:01:23 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, 1.2, 1.3 import.log, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090715000123.EB8AF11C0099@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20531/devel Modified Files: fedora-security-guide-en-US.spec import.log sources Log Message: Added BUILDREQUIRES desktop-file-utils to the SPEC file. Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/fedora-security-guide-en-US.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedora-security-guide-en-US.spec 14 Jul 2009 23:52:13 -0000 1.2 +++ fedora-security-guide-en-US.spec 15 Jul 2009 00:01:23 -0000 1.3 @@ -11,7 +11,7 @@ Name: fedora-security-guide-en-US Version: 1.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication @@ -74,6 +74,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{?vendor}%{name}.desktop %changelog +* Tue Jul 14 2009 Eric Christensen sparks at fedoraproject.org 1.0-15 +- Added "desktop-file-utils" to BUILDREQUIRES on the spec + + * Tue Mar 10 2009 Scott Radvan sradvan at redhat.com 1.0-14 - Remove more rhel specifics, major review and remove draft, ready for push Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 14 Jul 2009 23:52:13 -0000 1.2 +++ import.log 15 Jul 2009 00:01:23 -0000 1.3 @@ -1,2 +1,3 @@ fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247542430 fedora-security-guide-en-US-1_0-14_fc11:HEAD:fedora-security-guide-en-US-1.0-14.fc11.src.rpm:1247615483 +fedora-security-guide-en-US-1_0-15_fc11:HEAD:fedora-security-guide-en-US-1.0-15.fc11.src.rpm:1247616043 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Jul 2009 23:52:13 -0000 1.3 +++ sources 15 Jul 2009 00:01:23 -0000 1.4 @@ -1 +1 @@ -4b81772e7c2f10644848b699a19b1150 fedora-security-guide-en-US-1.0.tgz +40b9c81f394472c4df52091a16ae8193 fedora-security-guide-en-US-1.0.tgz From oget at fedoraproject.org Wed Jul 15 01:24:06 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 01:24:06 +0000 (UTC) Subject: rpms/bouncycastle-tsp/devel bouncycastle-tsp.spec,1.1,1.2 Message-ID: <20090715012406.542E211C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle-tsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4092 Modified Files: bouncycastle-tsp.spec Log Message: * Tue Jul 13 2009 Orcan Ogetbil - 1.43-3 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle-tsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-tsp/devel/bouncycastle-tsp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bouncycastle-tsp.spec 23 Jun 2009 02:33:22 -0000 1.1 +++ bouncycastle-tsp.spec 15 Jul 2009 01:24:05 -0000 1.2 @@ -1,10 +1,10 @@ -%global with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %global archivever jdk16-143 Summary: TSP libraries for Bouncy Castle Name: bouncycastle-tsp Version: 1.43 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -74,11 +74,11 @@ install -pm 644 bctsp-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bctsp-%{version}.jar bctsp.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bctsp-%{version}.jar bctsp-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -108,8 +108,8 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bctsp.jar %{_javadir}/bctsp-%{version}.jar +%{_javadir}/gcj-endorsed/bctsp-%{version}.jar %if %{with_gcj} - %{_javadir}/gcj-endorsed/bctsp-%{version}.jar %{_libdir}/gcj/%{name}/ %endif @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}/ %changelog +* Tue Jul 13 2009 Orcan Ogetbil - 1.43-3 +- Re-enable AOT bits thanks to Andrew Haley. + * Sun Jun 21 2009 Orcan Ogetbil - 1.43-2 - Minor cleanup in the spec file From oget at fedoraproject.org Wed Jul 15 01:26:25 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 01:26:25 +0000 (UTC) Subject: rpms/bouncycastle-tsp/F-11 bouncycastle-tsp.spec,1.1,1.2 Message-ID: <20090715012625.8615E11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/bouncycastle-tsp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4463 Modified Files: bouncycastle-tsp.spec Log Message: * Tue Jul 13 2009 Orcan Ogetbil - 1.43-3 - Re-enable AOT bits thanks to Andrew Haley. Index: bouncycastle-tsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-tsp/F-11/bouncycastle-tsp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bouncycastle-tsp.spec 23 Jun 2009 02:31:42 -0000 1.1 +++ bouncycastle-tsp.spec 15 Jul 2009 01:25:55 -0000 1.2 @@ -1,10 +1,10 @@ -%global with_gcj %{!?_with_gcj:0}%{?_with_gcj:1} +%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} %global archivever jdk16-143 Summary: TSP libraries for Bouncy Castle Name: bouncycastle-tsp Version: 1.43 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -74,11 +74,11 @@ install -pm 644 bctsp-%{version}.jar \ pushd $RPM_BUILD_ROOT%{_javadir} ln -sf bctsp-%{version}.jar bctsp.jar popd -%if %{with_gcj} install -dm 755 $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed pushd $RPM_BUILD_ROOT%{_javadir}/gcj-endorsed ln -sf ../bctsp-%{version}.jar bctsp-%{version}.jar popd +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -108,8 +108,8 @@ rm -rf $RPM_BUILD_ROOT %doc *.html %{_javadir}/bctsp.jar %{_javadir}/bctsp-%{version}.jar +%{_javadir}/gcj-endorsed/bctsp-%{version}.jar %if %{with_gcj} - %{_javadir}/gcj-endorsed/bctsp-%{version}.jar %{_libdir}/gcj/%{name}/ %endif @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}/ %changelog +* Tue Jul 13 2009 Orcan Ogetbil - 1.43-3 +- Re-enable AOT bits thanks to Andrew Haley. + * Sun Jun 21 2009 Orcan Ogetbil - 1.43-2 - Minor cleanup in the spec file From mbarnes at fedoraproject.org Wed Jul 15 02:04:43 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 02:04:43 +0000 (UTC) Subject: rpms/gnome-python2-desktop/devel .cvsignore, 1.29, 1.30 gnome-python2-desktop.spec, 1.60, 1.61 sources, 1.29, 1.30 Message-ID: <20090715020443.0A05811C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-python2-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11396 Modified Files: .cvsignore gnome-python2-desktop.spec sources Log Message: * Tue Jul 14 2009 Matthew Barnes - 2.27.2-1.fc12 - Update to 2.27.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-desktop/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 3 May 2009 18:28:01 -0000 1.29 +++ .cvsignore 15 Jul 2009 02:04:12 -0000 1.30 @@ -1 +1 @@ -gnome-python-desktop-2.27.1.tar.bz2 +gnome-python-desktop-2.27.2.tar.bz2 Index: gnome-python2-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-desktop/devel/gnome-python2-desktop.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- gnome-python2-desktop.spec 2 Jun 2009 08:17:03 -0000 1.60 +++ gnome-python2-desktop.spec 15 Jul 2009 02:04:12 -0000 1.61 @@ -28,8 +28,8 @@ ### Abstract ### Name: gnome-python2-desktop -Version: 2.27.1 -Release: 2%{?dist} +Version: 2.27.2 +Release: 1%{?dist} License: GPLv2+ Group: Development/Languages Summary: The sources for additional PyGNOME Python extension modules @@ -344,6 +344,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/gnomekeyring.so %changelog +* Tue Jul 14 2009 Matthew Barnes - 2.27.2-1.fc12 +- Update to 2.27.2 + * Tue Jun 02 2009 Peter Robinson - 2.27.1-2.fc12 - Change gnome-python2-evince to depend on evince-libs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-desktop/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 3 May 2009 18:28:01 -0000 1.29 +++ sources 15 Jul 2009 02:04:12 -0000 1.30 @@ -1 +1 @@ -da0c8ec5a63da4233c99e10568f3a9a0 gnome-python-desktop-2.27.1.tar.bz2 +3e1da41c3223687e812c0b1bd1f0ed55 gnome-python-desktop-2.27.2.tar.bz2 From oget at fedoraproject.org Wed Jul 15 02:15:51 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 02:15:51 +0000 (UTC) Subject: rpms/hydrogen/devel hydrogen.spec,1.10,1.11 Message-ID: <20090715021551.1E18811C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/hydrogen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13528 Modified Files: hydrogen.spec Log Message: * Tue Jul 14 2009 Orcan Ogetbil - 0.9.4-0.4.rc1.1 - Rebuild against new lash build on F-12 due to the e2fsprogs split Index: hydrogen.spec =================================================================== RCS file: /cvs/pkgs/rpms/hydrogen/devel/hydrogen.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hydrogen.spec 14 Apr 2009 19:34:25 -0000 1.10 +++ hydrogen.spec 15 Jul 2009 02:15:50 -0000 1.11 @@ -4,7 +4,7 @@ Summary: Advanced drum machine for GNU/Linux Name: hydrogen Version: 0.9.4 -Release: 0.3.%{prerel}%{?dist} +Release: 0.4.%{prerel}%{?dist} URL: http://www.hydrogen-music.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-%{prerel2}.tar.gz # For convenience, to take the svn snapshot: @@ -46,7 +46,6 @@ scons install DESTDIR=$RPM_BUILD_ROOT # install hydrogen.desktop properly. -#rm $RPM_BUILD_ROOT%{_datadir}/applications/hydrogen.desktop desktop-file-install --vendor fedora \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --add-category X-Drumming \ @@ -57,9 +56,9 @@ desktop-file-install --vendor fedora $RPM_BUILD_ROOT%{_datadir}/applications/hydrogen.desktop # Move the icon to the proper place -mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/ mv $RPM_BUILD_ROOT%{_datadir}/pixmaps/*.svg \ - $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/ # No need to package these (they will not be installed automatically in rc2): rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/{Makefile,README}* \ @@ -92,6 +91,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/scalable/apps/*.svg %changelog +* Tue Jul 14 2009 Orcan Ogetbil - 0.9.4-0.4.rc1.1 +- Rebuild against new lash build on F-12 due to the e2fsprogs split + * Tue Apr 14 2009 Orcan Ogetbil - 0.9.4-0.3.rc1.1 - Update to 0.9.4-rc1-1 From oget at fedoraproject.org Wed Jul 15 02:17:21 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 02:17:21 +0000 (UTC) Subject: rpms/hydrogen/F-11 hydrogen.spec,1.10,1.11 Message-ID: <20090715021721.71DD811C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/hydrogen/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14497 Modified Files: hydrogen.spec Log Message: * Tue Jul 14 2009 Orcan Ogetbil - 0.9.4-0.4.rc1.1 - Rebuild against new lash build on F-12 due to the e2fsprogs split Index: hydrogen.spec =================================================================== RCS file: /cvs/pkgs/rpms/hydrogen/F-11/hydrogen.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hydrogen.spec 14 Apr 2009 19:34:25 -0000 1.10 +++ hydrogen.spec 15 Jul 2009 02:16:51 -0000 1.11 @@ -4,7 +4,7 @@ Summary: Advanced drum machine for GNU/Linux Name: hydrogen Version: 0.9.4 -Release: 0.3.%{prerel}%{?dist} +Release: 0.4.%{prerel}%{?dist} URL: http://www.hydrogen-music.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-%{prerel2}.tar.gz # For convenience, to take the svn snapshot: @@ -46,7 +46,6 @@ scons install DESTDIR=$RPM_BUILD_ROOT # install hydrogen.desktop properly. -#rm $RPM_BUILD_ROOT%{_datadir}/applications/hydrogen.desktop desktop-file-install --vendor fedora \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --add-category X-Drumming \ @@ -57,9 +56,9 @@ desktop-file-install --vendor fedora $RPM_BUILD_ROOT%{_datadir}/applications/hydrogen.desktop # Move the icon to the proper place -mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/ mv $RPM_BUILD_ROOT%{_datadir}/pixmaps/*.svg \ - $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/ # No need to package these (they will not be installed automatically in rc2): rm -f $RPM_BUILD_ROOT%{_datadir}/hydrogen/data/doc/{Makefile,README}* \ @@ -92,6 +91,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/scalable/apps/*.svg %changelog +* Tue Jul 14 2009 Orcan Ogetbil - 0.9.4-0.4.rc1.1 +- Rebuild against new lash build on F-12 due to the e2fsprogs split + * Tue Apr 14 2009 Orcan Ogetbil - 0.9.4-0.3.rc1.1 - Update to 0.9.4-rc1-1 From mbarnes at fedoraproject.org Wed Jul 15 02:18:12 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 02:18:12 +0000 (UTC) Subject: rpms/gnome-python2-desktop/devel gnome-python2-desktop.spec, 1.61, 1.62 Message-ID: <20090715021812.E311911C0099@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-python2-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14635 Modified Files: gnome-python2-desktop.spec Log Message: Fix file list. Index: gnome-python2-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-desktop/devel/gnome-python2-desktop.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- gnome-python2-desktop.spec 15 Jul 2009 02:04:12 -0000 1.61 +++ gnome-python2-desktop.spec 15 Jul 2009 02:17:42 -0000 1.62 @@ -278,6 +278,7 @@ rm -rf $RPM_BUILD_ROOT %files -n gnome-python2-brasero %defattr(-,root,root,-) +%{python_sitearch}/gtk-2.0/braseroburn.so %{python_sitearch}/gtk-2.0/braseromedia.so %files -n gnome-python2-bugbuddy From mclasen at fedoraproject.org Wed Jul 15 02:23:42 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 02:23:42 +0000 (UTC) Subject: rpms/epiphany/devel epiphany.spec,1.234,1.235 Message-ID: <20090715022342.9439311C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15764 Modified Files: epiphany.spec Log Message: 2.27.4 Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/epiphany.spec,v retrieving revision 1.234 retrieving revision 1.235 diff -u -p -r1.234 -r1.235 --- epiphany.spec 13 Jul 2009 05:33:36 -0000 1.234 +++ epiphany.spec 15 Jul 2009 02:23:42 -0000 1.235 @@ -3,7 +3,7 @@ %define gtk2_devel_ver 2.15.1 %define scrollkeeper_ver 0.1.4 %define gnome_doc_utils_ver 0.3.2 -%define webkitgtk_ver 1.1.10 +%define webkitgtk_ver 1.1.11 Summary: Web browser for GNOME Name: epiphany From pkgdb at fedoraproject.org Wed Jul 15 02:29:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:29:55 +0000 Subject: [pkgdb] hunspell-kn was added for ramkrsna Message-ID: <20090715022955.31D4710F88D@bastion2.fedora.phx.redhat.com> tibbs has added Package hunspell-kn with summary Kannada Hunspell Dictionary tibbs has approved Package hunspell-kn tibbs has added a Fedora devel branch for hunspell-kn with an owner of ramkrsna tibbs has approved hunspell-kn in Fedora devel tibbs has approved Package hunspell-kn tibbs has set commit to Approved for 107427 on hunspell-kn (Fedora devel) tibbs has set checkout to Approved for 107427 on hunspell-kn (Fedora devel) tibbs has set build to Approved for 107427 on hunspell-kn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-kn From pkgdb at fedoraproject.org Wed Jul 15 02:29:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:29:56 +0000 Subject: [pkgdb] hunspell-kn summary updated by tibbs Message-ID: <20090715022956.BFE7E10F8A5@bastion2.fedora.phx.redhat.com> tibbs set package hunspell-kn summary to Kannada Hunspell Dictionary To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-kn From pkgdb at fedoraproject.org Wed Jul 15 02:29:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:29:56 +0000 Subject: [pkgdb] hunspell-kn (Fedora, 11) updated by tibbs Message-ID: <20090715022956.DA96E10F8A9@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on hunspell-kn (Fedora devel) for pnemade tibbs approved watchcommits on hunspell-kn (Fedora devel) for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-kn From tibbs at fedoraproject.org Wed Jul 15 02:30:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:02 +0000 (UTC) Subject: rpms/hunspell-kn/devel - New directory Message-ID: <20090715023002.4DA9811C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-kn/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17036/rpms/hunspell-kn/devel Log Message: Directory /cvs/pkgs/rpms/hunspell-kn/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:30:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:02 +0000 (UTC) Subject: rpms/hunspell-kn - New directory Message-ID: <20090715023002.29A8811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-kn In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17036/rpms/hunspell-kn Log Message: Directory /cvs/pkgs/rpms/hunspell-kn added to the repository From pkgdb at fedoraproject.org Wed Jul 15 02:29:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:29:56 +0000 Subject: [pkgdb] hunspell-kn (Fedora, 11) updated by tibbs Message-ID: <20090715022956.EC34B10F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for hunspell-kn tibbs has set commit to Approved for 107427 on hunspell-kn (Fedora 11) tibbs has set checkout to Approved for 107427 on hunspell-kn (Fedora 11) tibbs has set build to Approved for 107427 on hunspell-kn (Fedora 11) tibbs approved watchbugzilla on hunspell-kn (Fedora 11) for pnemade tibbs approved watchcommits on hunspell-kn (Fedora 11) for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hunspell-kn From tibbs at fedoraproject.org Wed Jul 15 02:30:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:07 +0000 (UTC) Subject: rpms/hunspell-kn Makefile,NONE,1.1 Message-ID: <20090715023007.899E811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-kn In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17036/rpms/hunspell-kn Added Files: Makefile Log Message: Setup of module hunspell-kn --- NEW FILE Makefile --- # Top level Makefile for module hunspell-kn all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:30:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:07 +0000 (UTC) Subject: rpms/hunspell-kn/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023007.C8AE711C049D@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/hunspell-kn/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17036/rpms/hunspell-kn/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module hunspell-kn --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: hunspell-kn # $Id: Makefile,v 1.1 2009/07/15 02:30:07 tibbs Exp $ NAME := hunspell-kn SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:30:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:30:41 +0000 Subject: [pkgdb] lpg was added for mbooth Message-ID: <20090715023041.CF78A10F898@bastion2.fedora.phx.redhat.com> tibbs has added Package lpg with summary LALR Parser Generator tibbs has approved Package lpg tibbs has added a Fedora devel branch for lpg with an owner of mbooth tibbs has approved lpg in Fedora devel tibbs has approved Package lpg tibbs has set commit to Approved for 107427 on lpg (Fedora devel) tibbs has set checkout to Approved for 107427 on lpg (Fedora devel) tibbs has set build to Approved for 107427 on lpg (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lpg From pkgdb at fedoraproject.org Wed Jul 15 02:30:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:30:42 +0000 Subject: [pkgdb] lpg summary updated by tibbs Message-ID: <20090715023042.7C73410F8A3@bastion2.fedora.phx.redhat.com> tibbs set package lpg summary to LALR Parser Generator To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lpg From tibbs at fedoraproject.org Wed Jul 15 02:30:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:47 +0000 (UTC) Subject: rpms/lpg - New directory Message-ID: <20090715023047.12F3E11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/lpg In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17312/rpms/lpg Log Message: Directory /cvs/pkgs/rpms/lpg added to the repository From pkgdb at fedoraproject.org Wed Jul 15 02:30:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:30:42 +0000 Subject: [pkgdb] lpg (Fedora, 11) updated by tibbs Message-ID: <20090715023042.876C210F8A8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for lpg tibbs has set commit to Approved for 107427 on lpg (Fedora 11) tibbs has set checkout to Approved for 107427 on lpg (Fedora 11) tibbs has set build to Approved for 107427 on lpg (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lpg From tibbs at fedoraproject.org Wed Jul 15 02:30:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:47 +0000 (UTC) Subject: rpms/lpg/devel - New directory Message-ID: <20090715023047.2DD0711C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/lpg/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17312/rpms/lpg/devel Log Message: Directory /cvs/pkgs/rpms/lpg/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:30:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:52 +0000 (UTC) Subject: rpms/lpg Makefile,NONE,1.1 Message-ID: <20090715023052.4A98611C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/lpg In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17312/rpms/lpg Added Files: Makefile Log Message: Setup of module lpg --- NEW FILE Makefile --- # Top level Makefile for module lpg all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:30:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:30:52 +0000 (UTC) Subject: rpms/lpg/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023052.7D29911C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/lpg/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsE17312/rpms/lpg/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module lpg --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: lpg # $Id: Makefile,v 1.1 2009/07/15 02:30:52 tibbs Exp $ NAME := lpg SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:31:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:15 +0000 Subject: [pkgdb] perl-TAP-Formatter-HTML was added for berrange Message-ID: <20090715023115.E662310F8A6@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-TAP-Formatter-HTML with summary TAP Test Harness output delegate for html output tibbs has approved Package perl-TAP-Formatter-HTML tibbs has added a Fedora devel branch for perl-TAP-Formatter-HTML with an owner of berrange tibbs has approved perl-TAP-Formatter-HTML in Fedora devel tibbs has approved Package perl-TAP-Formatter-HTML tibbs has set commit to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora devel) tibbs has set build to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-TAP-Formatter-HTML From pkgdb at fedoraproject.org Wed Jul 15 02:31:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:16 +0000 Subject: [pkgdb] perl-TAP-Formatter-HTML summary updated by tibbs Message-ID: <20090715023116.F2E4310F8AB@bastion2.fedora.phx.redhat.com> tibbs set package perl-TAP-Formatter-HTML summary to TAP Test Harness output delegate for html output To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-TAP-Formatter-HTML From pkgdb at fedoraproject.org Wed Jul 15 02:31:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:16 +0000 Subject: [pkgdb] perl-TAP-Formatter-HTML (Fedora, 11) updated by tibbs Message-ID: <20090715023117.171A110F8B0@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-TAP-Formatter-HTML (Fedora devel) for perl-sig tibbs approved watchcommits on perl-TAP-Formatter-HTML (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-TAP-Formatter-HTML From pkgdb at fedoraproject.org Wed Jul 15 02:31:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:16 +0000 Subject: [pkgdb] perl-TAP-Formatter-HTML (Fedora, 11) updated by tibbs Message-ID: <20090715023117.23B7710F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-TAP-Formatter-HTML tibbs has set commit to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora 11) tibbs has set build to Approved for 107427 on perl-TAP-Formatter-HTML (Fedora 11) tibbs approved watchbugzilla on perl-TAP-Formatter-HTML (Fedora 11) for perl-sig tibbs approved watchcommits on perl-TAP-Formatter-HTML (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-TAP-Formatter-HTML From tibbs at fedoraproject.org Wed Jul 15 02:31:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:31:22 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML - New directory Message-ID: <20090715023122.1367611C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-TAP-Formatter-HTML In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI17612/rpms/perl-TAP-Formatter-HTML Log Message: Directory /cvs/pkgs/rpms/perl-TAP-Formatter-HTML added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:31:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:31:22 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML/devel - New directory Message-ID: <20090715023122.329E011C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-TAP-Formatter-HTML/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI17612/rpms/perl-TAP-Formatter-HTML/devel Log Message: Directory /cvs/pkgs/rpms/perl-TAP-Formatter-HTML/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:31:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:31:27 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML Makefile,NONE,1.1 Message-ID: <20090715023127.5DF7711C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-TAP-Formatter-HTML In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI17612/rpms/perl-TAP-Formatter-HTML Added Files: Makefile Log Message: Setup of module perl-TAP-Formatter-HTML --- NEW FILE Makefile --- # Top level Makefile for module perl-TAP-Formatter-HTML all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:31:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:31:27 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023127.965C911C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-TAP-Formatter-HTML/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI17612/rpms/perl-TAP-Formatter-HTML/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-TAP-Formatter-HTML --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-TAP-Formatter-HTML # $Id: Makefile,v 1.1 2009/07/15 02:31:27 tibbs Exp $ NAME := perl-TAP-Formatter-HTML SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:31:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:57 +0000 Subject: [pkgdb] moblin-gtk-engine was added for pbrobinson Message-ID: <20090715023158.2C32E10F8C0@bastion2.fedora.phx.redhat.com> tibbs has added Package moblin-gtk-engine with summary GTK engine for Moblin tibbs has approved Package moblin-gtk-engine tibbs has added a Fedora devel branch for moblin-gtk-engine with an owner of pbrobinson tibbs has approved moblin-gtk-engine in Fedora devel tibbs has approved Package moblin-gtk-engine tibbs has set commit to Approved for 107427 on moblin-gtk-engine (Fedora devel) tibbs has set checkout to Approved for 107427 on moblin-gtk-engine (Fedora devel) tibbs has set build to Approved for 107427 on moblin-gtk-engine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/moblin-gtk-engine From pkgdb at fedoraproject.org Wed Jul 15 02:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:59 +0000 Subject: [pkgdb] moblin-gtk-engine summary updated by tibbs Message-ID: <20090715023159.25AE810F8C4@bastion2.fedora.phx.redhat.com> tibbs set package moblin-gtk-engine summary to GTK engine for Moblin To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/moblin-gtk-engine From pkgdb at fedoraproject.org Wed Jul 15 02:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:59 +0000 Subject: [pkgdb] moblin-gtk-engine (Fedora, 10) updated by tibbs Message-ID: <20090715023159.3882310F8C7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for moblin-gtk-engine tibbs has set commit to Approved for 107427 on moblin-gtk-engine (Fedora 10) tibbs has set checkout to Approved for 107427 on moblin-gtk-engine (Fedora 10) tibbs has set build to Approved for 107427 on moblin-gtk-engine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/moblin-gtk-engine From tibbs at fedoraproject.org Wed Jul 15 02:32:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:04 +0000 (UTC) Subject: rpms/moblin-gtk-engine - New directory Message-ID: <20090715023204.13EE811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/moblin-gtk-engine In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj17889/rpms/moblin-gtk-engine Log Message: Directory /cvs/pkgs/rpms/moblin-gtk-engine added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:32:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:04 +0000 (UTC) Subject: rpms/moblin-gtk-engine/devel - New directory Message-ID: <20090715023204.357CF11C049D@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/moblin-gtk-engine/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj17889/rpms/moblin-gtk-engine/devel Log Message: Directory /cvs/pkgs/rpms/moblin-gtk-engine/devel added to the repository From pkgdb at fedoraproject.org Wed Jul 15 02:31:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:31:59 +0000 Subject: [pkgdb] moblin-gtk-engine (Fedora, 10) updated by tibbs Message-ID: <20090715023159.5929310F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for moblin-gtk-engine tibbs has set commit to Approved for 107427 on moblin-gtk-engine (Fedora 11) tibbs has set checkout to Approved for 107427 on moblin-gtk-engine (Fedora 11) tibbs has set build to Approved for 107427 on moblin-gtk-engine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/moblin-gtk-engine From tibbs at fedoraproject.org Wed Jul 15 02:32:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:09 +0000 (UTC) Subject: rpms/moblin-gtk-engine Makefile,NONE,1.1 Message-ID: <20090715023209.AABD511C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/moblin-gtk-engine In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj17889/rpms/moblin-gtk-engine Added Files: Makefile Log Message: Setup of module moblin-gtk-engine --- NEW FILE Makefile --- # Top level Makefile for module moblin-gtk-engine all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:32:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:09 +0000 (UTC) Subject: rpms/moblin-gtk-engine/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023209.E430811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/moblin-gtk-engine/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj17889/rpms/moblin-gtk-engine/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module moblin-gtk-engine --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: moblin-gtk-engine # $Id: Makefile,v 1.1 2009/07/15 02:32:09 tibbs Exp $ NAME := moblin-gtk-engine SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:32:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:32:36 +0000 Subject: [pkgdb] conakry-fonts was added for ankursinha Message-ID: <20090715023236.A247710F8B1@bastion2.fedora.phx.redhat.com> tibbs has added Package conakry-fonts with summary N'Ko font by well-known Unicode.org expert & font designer Michael Everson tibbs has approved Package conakry-fonts tibbs has added a Fedora devel branch for conakry-fonts with an owner of ankursinha tibbs has approved conakry-fonts in Fedora devel tibbs has approved Package conakry-fonts tibbs has set commit to Approved for 107427 on conakry-fonts (Fedora devel) tibbs has set checkout to Approved for 107427 on conakry-fonts (Fedora devel) tibbs has set build to Approved for 107427 on conakry-fonts (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/conakry-fonts From pkgdb at fedoraproject.org Wed Jul 15 02:32:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:32:38 +0000 Subject: [pkgdb] conakry-fonts summary updated by tibbs Message-ID: <20090715023238.1AC3510F8B2@bastion2.fedora.phx.redhat.com> tibbs set package conakry-fonts summary to N'Ko font by well-known Unicode.org expert & font designer Michael Everson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/conakry-fonts From pkgdb at fedoraproject.org Wed Jul 15 02:32:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:32:38 +0000 Subject: [pkgdb] conakry-fonts (Fedora, 11) updated by tibbs Message-ID: <20090715023238.23BB210F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for conakry-fonts tibbs has set commit to Approved for 107427 on conakry-fonts (Fedora 11) tibbs has set checkout to Approved for 107427 on conakry-fonts (Fedora 11) tibbs has set build to Approved for 107427 on conakry-fonts (Fedora 11) tibbs approved watchbugzilla on conakry-fonts (Fedora 11) for fonts-sig tibbs approved watchcommits on conakry-fonts (Fedora 11) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/conakry-fonts From pkgdb at fedoraproject.org Wed Jul 15 02:32:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:32:38 +0000 Subject: [pkgdb] conakry-fonts (Fedora, 11) updated by tibbs Message-ID: <20090715023238.2AE6210F8BD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for conakry-fonts tibbs has set commit to Approved for 107427 on conakry-fonts (Fedora 10) tibbs has set checkout to Approved for 107427 on conakry-fonts (Fedora 10) tibbs has set build to Approved for 107427 on conakry-fonts (Fedora 10) tibbs approved watchbugzilla on conakry-fonts (Fedora 10) for fonts-sig tibbs approved watchcommits on conakry-fonts (Fedora 10) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/conakry-fonts From tibbs at fedoraproject.org Wed Jul 15 02:32:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:43 +0000 (UTC) Subject: rpms/conakry-fonts - New directory Message-ID: <20090715023243.12EDF11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/conakry-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18209/rpms/conakry-fonts Log Message: Directory /cvs/pkgs/rpms/conakry-fonts added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:32:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:43 +0000 (UTC) Subject: rpms/conakry-fonts/devel - New directory Message-ID: <20090715023243.31E0611C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/conakry-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18209/rpms/conakry-fonts/devel Log Message: Directory /cvs/pkgs/rpms/conakry-fonts/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:32:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:48 +0000 (UTC) Subject: rpms/conakry-fonts Makefile,NONE,1.1 Message-ID: <20090715023248.7C26211C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/conakry-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18209/rpms/conakry-fonts Added Files: Makefile Log Message: Setup of module conakry-fonts --- NEW FILE Makefile --- # Top level Makefile for module conakry-fonts all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:32:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:32:48 +0000 (UTC) Subject: rpms/conakry-fonts/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023248.B727D11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/conakry-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsX18209/rpms/conakry-fonts/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module conakry-fonts --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: conakry-fonts # $Id: Makefile,v 1.1 2009/07/15 02:32:48 tibbs Exp $ NAME := conakry-fonts SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:32:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:32:38 +0000 Subject: [pkgdb] conakry-fonts (Fedora, 11) updated by tibbs Message-ID: <20090715023238.371A110F8C1@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on conakry-fonts (Fedora devel) for fonts-sig tibbs approved watchcommits on conakry-fonts (Fedora devel) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/conakry-fonts From pkgdb at fedoraproject.org Wed Jul 15 02:33:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:33:34 +0000 Subject: [pkgdb] yokadi was added for fab Message-ID: <20090715023334.55D9210F8C3@bastion2.fedora.phx.redhat.com> tibbs has added Package yokadi with summary Command line oriented todo list system tibbs has approved Package yokadi tibbs has added a Fedora devel branch for yokadi with an owner of fab tibbs has approved yokadi in Fedora devel tibbs has approved Package yokadi tibbs has set commit to Approved for 107427 on yokadi (Fedora devel) tibbs has set checkout to Approved for 107427 on yokadi (Fedora devel) tibbs has set build to Approved for 107427 on yokadi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/yokadi From pkgdb at fedoraproject.org Wed Jul 15 02:33:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:33:35 +0000 Subject: [pkgdb] yokadi summary updated by tibbs Message-ID: <20090715023335.3580C10F8C6@bastion2.fedora.phx.redhat.com> tibbs set package yokadi summary to Command line oriented todo list system To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/yokadi From pkgdb at fedoraproject.org Wed Jul 15 02:33:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:33:35 +0000 Subject: [pkgdb] yokadi (Fedora, 11) updated by tibbs Message-ID: <20090715023335.4720510F8CC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for yokadi tibbs has set commit to Approved for 107427 on yokadi (Fedora 10) tibbs has set checkout to Approved for 107427 on yokadi (Fedora 10) tibbs has set build to Approved for 107427 on yokadi (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/yokadi From pkgdb at fedoraproject.org Wed Jul 15 02:33:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:33:35 +0000 Subject: [pkgdb] yokadi (Fedora, 11) updated by tibbs Message-ID: <20090715023335.3E60310F8C9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for yokadi tibbs has set commit to Approved for 107427 on yokadi (Fedora 11) tibbs has set checkout to Approved for 107427 on yokadi (Fedora 11) tibbs has set build to Approved for 107427 on yokadi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/yokadi From tibbs at fedoraproject.org Wed Jul 15 02:33:40 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:33:40 +0000 (UTC) Subject: rpms/yokadi - New directory Message-ID: <20090715023340.1487811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/yokadi In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18631/rpms/yokadi Log Message: Directory /cvs/pkgs/rpms/yokadi added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:33:40 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:33:40 +0000 (UTC) Subject: rpms/yokadi/devel - New directory Message-ID: <20090715023340.31F5611C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/yokadi/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18631/rpms/yokadi/devel Log Message: Directory /cvs/pkgs/rpms/yokadi/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:33:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:33:45 +0000 (UTC) Subject: rpms/yokadi Makefile,NONE,1.1 Message-ID: <20090715023345.57C2A11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/yokadi In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18631/rpms/yokadi Added Files: Makefile Log Message: Setup of module yokadi --- NEW FILE Makefile --- # Top level Makefile for module yokadi all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:33:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:33:45 +0000 (UTC) Subject: rpms/yokadi/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023345.90F4E11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/yokadi/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18631/rpms/yokadi/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module yokadi --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: yokadi # $Id: Makefile,v 1.1 2009/07/15 02:33:45 tibbs Exp $ NAME := yokadi SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:34:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:00 +0000 Subject: [pkgdb] klavaro was added for fab Message-ID: <20090715023401.37E3210F8B7@bastion2.fedora.phx.redhat.com> tibbs has added Package klavaro with summary Typing tutor tibbs has approved Package klavaro tibbs has added a Fedora devel branch for klavaro with an owner of fab tibbs has approved klavaro in Fedora devel tibbs has approved Package klavaro tibbs has set commit to Approved for 107427 on klavaro (Fedora devel) tibbs has set checkout to Approved for 107427 on klavaro (Fedora devel) tibbs has set build to Approved for 107427 on klavaro (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 02:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:02 +0000 Subject: [pkgdb] klavaro summary updated by tibbs Message-ID: <20090715023402.2DDF610F8D9@bastion2.fedora.phx.redhat.com> tibbs set package klavaro summary to Typing tutor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 02:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:02 +0000 Subject: [pkgdb] klavaro (Fedora, 11) updated by tibbs Message-ID: <20090715023402.3F07710F8DC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for klavaro tibbs has set commit to Approved for 107427 on klavaro (Fedora 11) tibbs has set checkout to Approved for 107427 on klavaro (Fedora 11) tibbs has set build to Approved for 107427 on klavaro (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 02:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:02 +0000 Subject: [pkgdb] klavaro (Fedora, 11) updated by tibbs Message-ID: <20090715023402.473A010F8DF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for klavaro tibbs has set commit to Approved for 107427 on klavaro (Fedora 10) tibbs has set checkout to Approved for 107427 on klavaro (Fedora 10) tibbs has set build to Approved for 107427 on klavaro (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From tibbs at fedoraproject.org Wed Jul 15 02:34:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:07 +0000 (UTC) Subject: rpms/klavaro - New directory Message-ID: <20090715023407.12A0711C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/klavaro In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18900/rpms/klavaro Log Message: Directory /cvs/pkgs/rpms/klavaro added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:34:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:07 +0000 (UTC) Subject: rpms/klavaro/devel - New directory Message-ID: <20090715023407.3016111C049D@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/klavaro/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18900/rpms/klavaro/devel Log Message: Directory /cvs/pkgs/rpms/klavaro/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:34:12 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:12 +0000 (UTC) Subject: rpms/klavaro Makefile,NONE,1.1 Message-ID: <20090715023412.3CA7511C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/klavaro In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18900/rpms/klavaro Added Files: Makefile Log Message: Setup of module klavaro --- NEW FILE Makefile --- # Top level Makefile for module klavaro all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:34:12 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:12 +0000 (UTC) Subject: rpms/klavaro/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023412.7F67A11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/klavaro/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst18900/rpms/klavaro/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module klavaro --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: klavaro # $Id: Makefile,v 1.1 2009/07/15 02:34:12 tibbs Exp $ NAME := klavaro SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:34:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:25 +0000 Subject: [pkgdb] wacomexpresskeys was added for jwilson Message-ID: <20090715023425.D10C910F8BC@bastion2.fedora.phx.redhat.com> tibbs has added Package wacomexpresskeys with summary Wacom ExpressKeys and Touch Strips configuration utility tibbs has approved Package wacomexpresskeys tibbs has added a Fedora devel branch for wacomexpresskeys with an owner of jwilson tibbs has approved wacomexpresskeys in Fedora devel tibbs has approved Package wacomexpresskeys tibbs has set commit to Approved for 107427 on wacomexpresskeys (Fedora devel) tibbs has set checkout to Approved for 107427 on wacomexpresskeys (Fedora devel) tibbs has set build to Approved for 107427 on wacomexpresskeys (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wacomexpresskeys From pkgdb at fedoraproject.org Wed Jul 15 02:34:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:27 +0000 Subject: [pkgdb] wacomexpresskeys summary updated by tibbs Message-ID: <20090715023427.2EEE410F8E4@bastion2.fedora.phx.redhat.com> tibbs set package wacomexpresskeys summary to Wacom ExpressKeys and Touch Strips configuration utility To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wacomexpresskeys From pkgdb at fedoraproject.org Wed Jul 15 02:34:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:27 +0000 Subject: [pkgdb] wacomexpresskeys (Fedora, 10) updated by tibbs Message-ID: <20090715023427.31A8A10F8E7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for wacomexpresskeys tibbs has set commit to Approved for 107427 on wacomexpresskeys (Fedora 10) tibbs has set checkout to Approved for 107427 on wacomexpresskeys (Fedora 10) tibbs has set build to Approved for 107427 on wacomexpresskeys (Fedora 10) tibbs approved watchbugzilla on wacomexpresskeys (Fedora 10) for arozansk tibbs approved watchcommits on wacomexpresskeys (Fedora 10) for arozansk To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wacomexpresskeys From pkgdb at fedoraproject.org Wed Jul 15 02:34:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:27 +0000 Subject: [pkgdb] wacomexpresskeys (Fedora, 10) updated by tibbs Message-ID: <20090715023427.3E1FF10F8EA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on wacomexpresskeys (Fedora devel) for arozansk tibbs approved watchcommits on wacomexpresskeys (Fedora devel) for arozansk To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wacomexpresskeys From tibbs at fedoraproject.org Wed Jul 15 02:34:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:32 +0000 (UTC) Subject: rpms/wacomexpresskeys - New directory Message-ID: <20090715023432.1330C11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/wacomexpresskeys In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI19148/rpms/wacomexpresskeys Log Message: Directory /cvs/pkgs/rpms/wacomexpresskeys added to the repository From pkgdb at fedoraproject.org Wed Jul 15 02:34:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:34:27 +0000 Subject: [pkgdb] wacomexpresskeys (Fedora, 10) updated by tibbs Message-ID: <20090715023427.4542C10F8EC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for wacomexpresskeys tibbs has set commit to Approved for 107427 on wacomexpresskeys (Fedora 11) tibbs has set checkout to Approved for 107427 on wacomexpresskeys (Fedora 11) tibbs has set build to Approved for 107427 on wacomexpresskeys (Fedora 11) tibbs approved watchbugzilla on wacomexpresskeys (Fedora 11) for arozansk tibbs approved watchcommits on wacomexpresskeys (Fedora 11) for arozansk To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wacomexpresskeys From tibbs at fedoraproject.org Wed Jul 15 02:34:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:32 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel - New directory Message-ID: <20090715023432.3279211C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI19148/rpms/wacomexpresskeys/devel Log Message: Directory /cvs/pkgs/rpms/wacomexpresskeys/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:34:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:37 +0000 (UTC) Subject: rpms/wacomexpresskeys Makefile,NONE,1.1 Message-ID: <20090715023437.4832E11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/wacomexpresskeys In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI19148/rpms/wacomexpresskeys Added Files: Makefile Log Message: Setup of module wacomexpresskeys --- NEW FILE Makefile --- # Top level Makefile for module wacomexpresskeys all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:34:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:34:37 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023437.7FD5A11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsI19148/rpms/wacomexpresskeys/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module wacomexpresskeys --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: wacomexpresskeys # $Id: Makefile,v 1.1 2009/07/15 02:34:37 tibbs Exp $ NAME := wacomexpresskeys SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:35:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:35:24 +0000 Subject: [pkgdb] valide was added for bioinfornatics Message-ID: <20090715023524.9299910F8BF@bastion2.fedora.phx.redhat.com> tibbs has added Package valide with summary An IDE for the Vala programming language tibbs has approved Package valide tibbs has added a Fedora devel branch for valide with an owner of bioinfornatics tibbs has approved valide in Fedora devel tibbs has approved Package valide tibbs has set commit to Approved for 107427 on valide (Fedora devel) tibbs has set checkout to Approved for 107427 on valide (Fedora devel) tibbs has set build to Approved for 107427 on valide (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/valide From pkgdb at fedoraproject.org Wed Jul 15 02:35:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:35:25 +0000 Subject: [pkgdb] valide summary updated by tibbs Message-ID: <20090715023525.D4FD810F8CD@bastion2.fedora.phx.redhat.com> tibbs set package valide summary to An IDE for the Vala programming language To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/valide From pkgdb at fedoraproject.org Wed Jul 15 02:35:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:35:25 +0000 Subject: [pkgdb] valide (Fedora, 11) updated by tibbs Message-ID: <20090715023525.E336810F8D6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for valide tibbs has set commit to Approved for 107427 on valide (Fedora 11) tibbs has set checkout to Approved for 107427 on valide (Fedora 11) tibbs has set build to Approved for 107427 on valide (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/valide From pkgdb at fedoraproject.org Wed Jul 15 02:35:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:35:25 +0000 Subject: [pkgdb] valide (Fedora, 11) updated by tibbs Message-ID: <20090715023525.F044410F8FA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for valide tibbs has set commit to Approved for 107427 on valide (Fedora 10) tibbs has set checkout to Approved for 107427 on valide (Fedora 10) tibbs has set build to Approved for 107427 on valide (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/valide From tibbs at fedoraproject.org Wed Jul 15 02:35:31 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:35:31 +0000 (UTC) Subject: rpms/valide - New directory Message-ID: <20090715023531.13EAA11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/valide In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsN19494/rpms/valide Log Message: Directory /cvs/pkgs/rpms/valide added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:35:31 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:35:31 +0000 (UTC) Subject: rpms/valide/devel - New directory Message-ID: <20090715023531.311B211C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsN19494/rpms/valide/devel Log Message: Directory /cvs/pkgs/rpms/valide/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:35:36 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:35:36 +0000 (UTC) Subject: rpms/valide Makefile,NONE,1.1 Message-ID: <20090715023536.4B32411C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/valide In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsN19494/rpms/valide Added Files: Makefile Log Message: Setup of module valide --- NEW FILE Makefile --- # Top level Makefile for module valide all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:35:36 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:35:36 +0000 (UTC) Subject: rpms/valide/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023536.850BA11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsN19494/rpms/valide/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module valide --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: valide # $Id: Makefile,v 1.1 2009/07/15 02:35:36 tibbs Exp $ NAME := valide SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Wed Jul 15 02:37:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:37:14 +0000 Subject: [pkgdb] mediawiki-rss was added for herlo Message-ID: <20090715023714.D428110F8C3@bastion2.fedora.phx.redhat.com> tibbs has added Package mediawiki-rss with summary Displays an RSS feed on a mediawiki page tibbs has approved Package mediawiki-rss tibbs has added a Fedora devel branch for mediawiki-rss with an owner of herlo tibbs has approved mediawiki-rss in Fedora devel tibbs has approved Package mediawiki-rss tibbs has set commit to Approved for 107427 on mediawiki-rss (Fedora devel) tibbs has set checkout to Approved for 107427 on mediawiki-rss (Fedora devel) tibbs has set build to Approved for 107427 on mediawiki-rss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-rss From pkgdb at fedoraproject.org Wed Jul 15 02:37:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:37:16 +0000 Subject: [pkgdb] mediawiki-rss summary updated by tibbs Message-ID: <20090715023716.8526010F8D2@bastion2.fedora.phx.redhat.com> tibbs set package mediawiki-rss summary to Displays an RSS feed on a mediawiki page To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-rss From pkgdb at fedoraproject.org Wed Jul 15 02:37:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:37:16 +0000 Subject: [pkgdb] mediawiki-rss (Fedora EPEL, 5) updated by tibbs Message-ID: <20090715023716.8AEBA10F8DD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for mediawiki-rss tibbs has set commit to Approved for 107427 on mediawiki-rss (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on mediawiki-rss (Fedora EPEL 5) tibbs has set build to Approved for 107427 on mediawiki-rss (Fedora EPEL 5) tibbs approved watchbugzilla on mediawiki-rss (Fedora EPEL 5) for ianweller tibbs approved watchcommits on mediawiki-rss (Fedora EPEL 5) for ianweller tibbs approved commit on mediawiki-rss (Fedora EPEL 5) for ianweller tibbs approved build on mediawiki-rss (Fedora EPEL 5) for ianweller tibbs approved approveacls on mediawiki-rss (Fedora EPEL 5) for ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-rss From pkgdb at fedoraproject.org Wed Jul 15 02:37:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:37:16 +0000 Subject: [pkgdb] mediawiki-rss (Fedora EPEL, 5) updated by tibbs Message-ID: <20090715023716.A54F810F8E1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for mediawiki-rss tibbs has set commit to Approved for 107427 on mediawiki-rss (Fedora 11) tibbs has set checkout to Approved for 107427 on mediawiki-rss (Fedora 11) tibbs has set build to Approved for 107427 on mediawiki-rss (Fedora 11) tibbs approved watchbugzilla on mediawiki-rss (Fedora 11) for ianweller tibbs approved watchcommits on mediawiki-rss (Fedora 11) for ianweller tibbs approved commit on mediawiki-rss (Fedora 11) for ianweller tibbs approved build on mediawiki-rss (Fedora 11) for ianweller tibbs approved approveacls on mediawiki-rss (Fedora 11) for ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-rss From pkgdb at fedoraproject.org Wed Jul 15 02:37:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:37:16 +0000 Subject: [pkgdb] mediawiki-rss (Fedora EPEL, 5) updated by tibbs Message-ID: <20090715023716.B31D510F8E5@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on mediawiki-rss (Fedora devel) for ianweller tibbs approved watchcommits on mediawiki-rss (Fedora devel) for ianweller tibbs approved commit on mediawiki-rss (Fedora devel) for ianweller tibbs approved build on mediawiki-rss (Fedora devel) for ianweller tibbs approved approveacls on mediawiki-rss (Fedora devel) for ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mediawiki-rss From tibbs at fedoraproject.org Wed Jul 15 02:37:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:37:23 +0000 (UTC) Subject: rpms/mediawiki-rss/devel - New directory Message-ID: <20090715023723.3881E11C02C3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mediawiki-rss/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst20170/rpms/mediawiki-rss/devel Log Message: Directory /cvs/pkgs/rpms/mediawiki-rss/devel added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:37:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:37:23 +0000 (UTC) Subject: rpms/mediawiki-rss - New directory Message-ID: <20090715023723.15AB311C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mediawiki-rss In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst20170/rpms/mediawiki-rss Log Message: Directory /cvs/pkgs/rpms/mediawiki-rss added to the repository From tibbs at fedoraproject.org Wed Jul 15 02:37:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:37:28 +0000 (UTC) Subject: rpms/mediawiki-rss Makefile,NONE,1.1 Message-ID: <20090715023728.7965C11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mediawiki-rss In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst20170/rpms/mediawiki-rss Added Files: Makefile Log Message: Setup of module mediawiki-rss --- NEW FILE Makefile --- # Top level Makefile for module mediawiki-rss all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Wed Jul 15 02:37:28 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 15 Jul 2009 02:37:28 +0000 (UTC) Subject: rpms/mediawiki-rss/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090715023728.D63D811C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mediawiki-rss/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst20170/rpms/mediawiki-rss/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mediawiki-rss --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mediawiki-rss # $Id: Makefile,v 1.1 2009/07/15 02:37:28 tibbs Exp $ NAME := mediawiki-rss SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From adamwill at fedoraproject.org Wed Jul 15 02:39:32 2009 From: adamwill at fedoraproject.org (Adam Williamson) Date: Wed, 15 Jul 2009 02:39:32 +0000 (UTC) Subject: rpms/congruity/devel congruity.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715023932.DF46411C0099@cvs1.fedora.phx.redhat.com> Author: adamwill Update of /cvs/pkgs/rpms/congruity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20476/devel Modified Files: .cvsignore sources Added Files: congruity.spec import.log Log Message: - initial import --- NEW FILE congruity.spec --- Name: congruity Version: 12 Release: 1%{?dist} Summary: Application to program Logitech Harmony universal remote controls Group: Applications/System # Code is GPLv3+, icons are the other three licenses License: GPLv3+ and GPLv2+ and GPL+ and CC-BY-SA URL: http://sourceforge.net/projects/congruity Source0: http://downloads.sourceforge.net/congruity/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: desktop-file-utils Requires: wxPython >= 2.8 Requires: libconcord-python >= 0.20 %description congruity is a GUI application for programming Logitech Harmony universal remote controls. congruity builds upon the work of libconcord, which provides the underlying communication. congruity is configured to handle the configuration files downloaded from the Logitech configuration website. After installing this package you can just use the Logitech configuration website and congruity will launch automatically when appropriate. %prep %setup -q %build %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} PREFIX=/usr MANDIR=%{_mandir} RUN_UPDATE_DESKTOP_DB=0 desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changelog COPYING LICENSE.txt README.txt %{_bindir}/* %{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/*/* %changelog * Thu Jun 18 2009 Adam Williamson - 12-1 - new release 12 - upstream now includes the .desktop file * Thu Jun 18 2009 Adam Williamson - 11-4 - add CC-BY-SA to the license field - don't explicitly specify permissions in file list * Thu Jun 18 2009 Adam Williamson - 11-3 - don't do 'make all', there's nothing to make * Thu Jun 18 2009 Adam Williamson - 11-2 - validate the desktop file on install * Wed Jun 17 2009 Adam Williamson - 11-1 - New release 11 - Drop the .desktop patch (merged upstream) - Include the .desktop file from upstream SVN as a source: it was accidentally left out of the tarball - Disable desktop database update during install - Version the wxPython require * Wed Jun 17 2009 Adam Williamson - 10-1 - New release 10 - Add a .desktop file to associate congruity with appropriate files - take out trademark characters in description, doing this is Bad * Thu Sep 07 2008 Stephen Warren - 9-1 - Initial packaging --- NEW FILE import.log --- congruity-12-1_aw_fc12:HEAD:congruity-12-1.aw_fc12.src.rpm:1247625449 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/congruity/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:00:20 -0000 1.1 +++ .cvsignore 15 Jul 2009 02:39:02 -0000 1.2 @@ -0,0 +1 @@ +congruity-12.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/congruity/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:00:20 -0000 1.1 +++ sources 15 Jul 2009 02:39:02 -0000 1.2 @@ -0,0 +1 @@ +f9bffabe843372a299dddda66576608a congruity-12.tar.bz2 From adamwill at fedoraproject.org Wed Jul 15 02:41:38 2009 From: adamwill at fedoraproject.org (Adam Williamson) Date: Wed, 15 Jul 2009 02:41:38 +0000 (UTC) Subject: rpms/congruity/F-10 congruity.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715024138.D9CA111C0099@cvs1.fedora.phx.redhat.com> Author: adamwill Update of /cvs/pkgs/rpms/congruity/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21338/F-10 Modified Files: .cvsignore sources Added Files: congruity.spec import.log Log Message: - initial import --- NEW FILE congruity.spec --- Name: congruity Version: 12 Release: 1%{?dist} Summary: Application to program Logitech Harmony universal remote controls Group: Applications/System # Code is GPLv3+, icons are the other three licenses License: GPLv3+ and GPLv2+ and GPL+ and CC-BY-SA URL: http://sourceforge.net/projects/congruity Source0: http://downloads.sourceforge.net/congruity/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: desktop-file-utils Requires: wxPython >= 2.8 Requires: libconcord-python >= 0.20 %description congruity is a GUI application for programming Logitech Harmony universal remote controls. congruity builds upon the work of libconcord, which provides the underlying communication. congruity is configured to handle the configuration files downloaded from the Logitech configuration website. After installing this package you can just use the Logitech configuration website and congruity will launch automatically when appropriate. %prep %setup -q %build %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} PREFIX=/usr MANDIR=%{_mandir} RUN_UPDATE_DESKTOP_DB=0 desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changelog COPYING LICENSE.txt README.txt %{_bindir}/* %{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/*/* %changelog * Thu Jun 18 2009 Adam Williamson - 12-1 - new release 12 - upstream now includes the .desktop file * Thu Jun 18 2009 Adam Williamson - 11-4 - add CC-BY-SA to the license field - don't explicitly specify permissions in file list * Thu Jun 18 2009 Adam Williamson - 11-3 - don't do 'make all', there's nothing to make * Thu Jun 18 2009 Adam Williamson - 11-2 - validate the desktop file on install * Wed Jun 17 2009 Adam Williamson - 11-1 - New release 11 - Drop the .desktop patch (merged upstream) - Include the .desktop file from upstream SVN as a source: it was accidentally left out of the tarball - Disable desktop database update during install - Version the wxPython require * Wed Jun 17 2009 Adam Williamson - 10-1 - New release 10 - Add a .desktop file to associate congruity with appropriate files - take out trademark characters in description, doing this is Bad * Thu Sep 07 2008 Stephen Warren - 9-1 - Initial packaging --- NEW FILE import.log --- congruity-12-1_aw_fc12:F-10:congruity-12-1.aw_fc12.src.rpm:1247625630 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/congruity/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:00:20 -0000 1.1 +++ .cvsignore 15 Jul 2009 02:41:08 -0000 1.2 @@ -0,0 +1 @@ +congruity-12.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/congruity/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:00:20 -0000 1.1 +++ sources 15 Jul 2009 02:41:08 -0000 1.2 @@ -0,0 +1 @@ +f9bffabe843372a299dddda66576608a congruity-12.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 15 02:41:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 02:41:36 +0000 Subject: [pkgdb] php-pecl-geoip (Fedora EPEL, 5) updated by tibbs Message-ID: <20090715024136.EEA9110F890@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-pecl-geoip tibbs has set commit to Approved for 107427 on php-pecl-geoip (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-pecl-geoip (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-pecl-geoip (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-geoip From adamwill at fedoraproject.org Wed Jul 15 02:43:42 2009 From: adamwill at fedoraproject.org (Adam Williamson) Date: Wed, 15 Jul 2009 02:43:42 +0000 (UTC) Subject: rpms/congruity/F-11 congruity.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715024342.281E711C0099@cvs1.fedora.phx.redhat.com> Author: adamwill Update of /cvs/pkgs/rpms/congruity/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21920/F-11 Modified Files: .cvsignore sources Added Files: congruity.spec import.log Log Message: - initial import --- NEW FILE congruity.spec --- Name: congruity Version: 12 Release: 1%{?dist} Summary: Application to program Logitech Harmony universal remote controls Group: Applications/System # Code is GPLv3+, icons are the other three licenses License: GPLv3+ and GPLv2+ and GPL+ and CC-BY-SA URL: http://sourceforge.net/projects/congruity Source0: http://downloads.sourceforge.net/congruity/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: desktop-file-utils Requires: wxPython >= 2.8 Requires: libconcord-python >= 0.20 %description congruity is a GUI application for programming Logitech Harmony universal remote controls. congruity builds upon the work of libconcord, which provides the underlying communication. congruity is configured to handle the configuration files downloaded from the Logitech configuration website. After installing this package you can just use the Logitech configuration website and congruity will launch automatically when appropriate. %prep %setup -q %build %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} PREFIX=/usr MANDIR=%{_mandir} RUN_UPDATE_DESKTOP_DB=0 desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop %post update-desktop-database &> /dev/null || : %postun update-desktop-database &> /dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changelog COPYING LICENSE.txt README.txt %{_bindir}/* %{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/*/* %changelog * Thu Jun 18 2009 Adam Williamson - 12-1 - new release 12 - upstream now includes the .desktop file * Thu Jun 18 2009 Adam Williamson - 11-4 - add CC-BY-SA to the license field - don't explicitly specify permissions in file list * Thu Jun 18 2009 Adam Williamson - 11-3 - don't do 'make all', there's nothing to make * Thu Jun 18 2009 Adam Williamson - 11-2 - validate the desktop file on install * Wed Jun 17 2009 Adam Williamson - 11-1 - New release 11 - Drop the .desktop patch (merged upstream) - Include the .desktop file from upstream SVN as a source: it was accidentally left out of the tarball - Disable desktop database update during install - Version the wxPython require * Wed Jun 17 2009 Adam Williamson - 10-1 - New release 10 - Add a .desktop file to associate congruity with appropriate files - take out trademark characters in description, doing this is Bad * Thu Sep 07 2008 Stephen Warren - 9-1 - Initial packaging --- NEW FILE import.log --- congruity-12-1_aw_fc12:F-11:congruity-12-1.aw_fc12.src.rpm:1247625728 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/congruity/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:00:20 -0000 1.1 +++ .cvsignore 15 Jul 2009 02:43:11 -0000 1.2 @@ -0,0 +1 @@ +congruity-12.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/congruity/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:00:20 -0000 1.1 +++ sources 15 Jul 2009 02:43:11 -0000 1.2 @@ -0,0 +1 @@ +f9bffabe843372a299dddda66576608a congruity-12.tar.bz2 From iankent at fedoraproject.org Wed Jul 15 02:44:44 2009 From: iankent at fedoraproject.org (Ian Kent) Date: Wed, 15 Jul 2009 02:44:44 +0000 (UTC) Subject: rpms/autofs/devel autofs-5.0.4-allow-automount-daemon-to-dump-core.patch, NONE, 1.1 autofs-5.0.4-fix-map-type-info-parse-error-update.patch, NONE, 1.1 autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch, NONE, 1.1 autofs-5.0.4-fix-rpc-fd-leak.patch, NONE, 1.1 autofs.spec, 1.281, 1.282 Message-ID: <20090715024444.BF6AE11C0099@cvs1.fedora.phx.redhat.com> Author: iankent Update of /cvs/pkgs/rpms/autofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22436 Modified Files: autofs.spec Added Files: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch autofs-5.0.4-fix-map-type-info-parse-error-update.patch autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch autofs-5.0.4-fix-rpc-fd-leak.patch Log Message: * Wed Jul 15 2009 Ian Kent - 1:5.0.4-32 - fix an RPC fd leak. - don't block signals we expect to dump core. - fix pthread push order in expire_proc_direct(). autofs-5.0.4-allow-automount-daemon-to-dump-core.patch: --- NEW FILE autofs-5.0.4-allow-automount-daemon-to-dump-core.patch --- autofs-5.0.4 - allow the automount daemon to dump core From: Jeff Moyer Right now, the automount daemon blocks all signals. We should at least unblock those that will cause us to dump core. Otherwise, I think the behaviour could be, umm, interesting. I tested this by sending SIGBUS and SIGSEGV to the automount daemon. edit - raven - I changed this a little so that the change to the signals is done in one place and added SIGABRT and SIGTRAP to the list of signals that aren't blocked. Signed-off-by: Jeff Moyer --- CHANGELOG | 1 + daemon/automount.c | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7f27f5e..4b85649 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -57,6 +57,7 @@ - mannual umount recovery fixes. - fix map type info parse error. - fix an RPC fd leak. +- don't block signals we expect to dump core. 4/11/2008 autofs-5.0.4 ----------------------- diff --git a/daemon/automount.c b/daemon/automount.c index 44dcdd6..e7f801b 100644 --- a/daemon/automount.c +++ b/daemon/automount.c @@ -64,6 +64,8 @@ static int st_stat = 1; static int *pst_stat = &st_stat; static pthread_t state_mach_thid; +static sigset_t block_sigs; + /* Pre-calculated kernel packet length */ static size_t kpkt_len; @@ -1321,7 +1323,7 @@ static void *statemachine(void *arg) sigset_t signalset; int sig; - sigfillset(&signalset); + memcpy(&signalset, &block_sigs, sizeof(sigset)); sigdelset(&signalset, SIGCHLD); sigdelset(&signalset, SIGCONT); @@ -1817,7 +1819,6 @@ int main(int argc, char *argv[]) unsigned foreground, have_global_options; time_t timeout; time_t age = time(NULL); - sigset_t allsigs; struct rlimit rlim; static const struct option long_options[] = { {"help", 0, 0, 'h'}, @@ -1837,8 +1838,15 @@ int main(int argc, char *argv[]) {0, 0, 0, 0} }; - sigfillset(&allsigs); - sigprocmask(SIG_BLOCK, &allsigs, NULL); + sigfillset(&block_sigs); + /* allow for the dropping of core files */ + sigdelset(&block_sigs, SIGABRT); + sigdelset(&block_sigs, SIGBUS); + sigdelset(&block_sigs, SIGSEGV); + sigdelset(&block_sigs, SIGILL); + sigdelset(&block_sigs, SIGFPE); + sigdelset(&block_sigs, SIGTRAP); + sigprocmask(SIG_BLOCK, &block_sigs, NULL); program = argv[0]; autofs-5.0.4-fix-map-type-info-parse-error-update.patch: --- NEW FILE autofs-5.0.4-fix-map-type-info-parse-error-update.patch --- autofs-5.0.4 - fix map type info parse error update From: Ian Kent Make parsing map type info more robust. --- lib/parse_subs.c | 123 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 102 insertions(+), 21 deletions(-) diff --git a/lib/parse_subs.c b/lib/parse_subs.c index 0608cb7..2326838 100644 --- a/lib/parse_subs.c +++ b/lib/parse_subs.c @@ -20,6 +20,30 @@ #include #include "automount.h" +struct types { + char *type; + unsigned int len; +}; + +static struct types map_type[] = { + { "file", 4 }, + { "program", 7 }, + { "yp", 2 }, + { "nis", 3 }, + { "nisplus", 7 }, + { "ldap", 4 }, + { "ldaps", 5 }, + { "hesiod", 6 }, + { "userdir", 7 }, +}; +static unsigned int map_type_count = sizeof(map_type)/sizeof(struct types); + +static struct types format_type[] = { + { "sun", 3 }, + { "hesiod", 6 }, +}; +static unsigned int format_type_count = sizeof(format_type)/sizeof(struct types); + /* * Skip whitespace in a string; if we hit a #, consider the rest of the * entry a comment. @@ -315,7 +339,7 @@ struct map_type_info *parse_map_type_info(const char *str) { struct map_type_info *info; char *buf, *type, *fmt, *map, *tmp; - int seen_colon = 0; + char *pos; buf = strdup(str); if (!buf) @@ -328,32 +352,89 @@ struct map_type_info *parse_map_type_info(const char *str) } memset(info, 0, sizeof(struct map_type_info)); - type = fmt = NULL; + type = fmt = map = NULL; + + tmp = strchr(buf, ':'); + if (!tmp) { + pos = buf; + while (*pos == ' ') + *pos++ = '\0'; + map = pos; + } else { + int i, j; + + for (i = 0; i < map_type_count; i++) { + char *m_type = map_type[i].type; + unsigned int m_len = map_type[i].len; + + pos = buf; + + if (strncmp(m_type, pos, m_len)) + continue; + + type = pos; + pos += m_len; + + if (*pos == ' ' || *pos == ':') { + while (*pos == ' ') + *pos++ = '\0'; + if (*pos != ':') { + free(buf); + free(info); + return NULL; + } else { + *pos++ = '\0'; + while (*pos == ' ') + *pos++ = '\0'; + map = pos; + break; + } + } + + if (*pos == ',') { + *pos++ = '\0'; + for (j = 0; j < format_type_count; j++) { + char *f_type = format_type[j].type; + unsigned int f_len = format_type[j].len; + + if (strncmp(f_type, pos, f_len)) + continue; + + fmt = pos; + pos += f_len; + + if (*pos == ' ' || *pos == ':') { + while (*pos == ' ') + *pos++ = '\0'; + if (*pos != ':') { + free(buf); + free(info); + return NULL; + } else { + *pos++ = '\0'; + while (*pos == ' ') + *pos++ = '\0'; + map = pos; + break; + } + } + } + } + } + + if (!type) { + pos = buf; + while (*pos == ' ') + *pos++ = '\0'; + map = pos; + } + } /* Look for space terminator - ignore local options */ - map = buf; for (tmp = buf; *tmp; tmp++) { if (*tmp == ' ') { *tmp = '\0'; break; - } else if (!seen_colon && *tmp == ',') { - type = buf; - *tmp++ = '\0'; - fmt = tmp; - } else if (*tmp == ':') { - seen_colon = 1; - if (!fmt) - type = buf; - *tmp++ = '\0'; - map = tmp; - } else if (*tmp == '[') { - /* - * Unescaped '[' is a syntax error here as only - * an ldap map with a type specified should contain - * them. - */ - free(buf); - return 0; } if (*tmp == '\\') tmp++; autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch: --- NEW FILE autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch --- autofs-5.0.4 - fix pthread push order in expire_proc_direct() From: Ian Kent Apparently the pthread_cleanup_push() has the quite stupid semantic of not working properly if the value of the pointer passed to it changes after it has been called. --- CHANGELOG | 1 + daemon/direct.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) --- autofs-5.0.4.orig/CHANGELOG +++ autofs-5.0.4/CHANGELOG @@ -58,6 +58,7 @@ - fix map type info parse error. - fix an RPC fd leak. - don't block signals we expect to dump core. +- fix pthread push order in expire_proc_direct(). 4/11/2008 autofs-5.0.4 ----------------------- --- autofs-5.0.4.orig/daemon/direct.c +++ autofs-5.0.4/daemon/direct.c @@ -823,8 +823,8 @@ void *expire_proc_direct(void *arg) left = 0; - pthread_cleanup_push(mnts_cleanup, mnts); mnts = tree_make_mnt_tree(_PROC_MOUNTS, "/"); + pthread_cleanup_push(mnts_cleanup, mnts); /* Get a list of mounts select real ones and expire them if possible */ INIT_LIST_HEAD(&list); autofs-5.0.4-fix-rpc-fd-leak.patch: --- NEW FILE autofs-5.0.4-fix-rpc-fd-leak.patch --- autofs-5.0.4 - fix rpc fd leak From: Ian Kent Recent changes which introduced the ability to handle to cope with IPv6 addresses causes a file descriptor leak in the RPC library. --- CHANGELOG | 1 + lib/rpc_subs.c | 11 ----------- 2 files changed, 1 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3fd97d3..9edb113 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -56,6 +56,7 @@ - fix double free in sasl_bind(). - mannual umount recovery fixes. - fix map type info parse error. +- fix an RPC fd leak. 4/11/2008 autofs-5.0.4 ----------------------- diff --git a/lib/rpc_subs.c b/lib/rpc_subs.c index d034b29..cafc775 100644 --- a/lib/rpc_subs.c +++ b/lib/rpc_subs.c @@ -253,17 +253,6 @@ static CLIENT *rpc_do_create_client(struct sockaddr *addr, struct conn_info *inf return NULL; } - if (!info->client) { - *fd = open_sock(addr->sa_family, type, proto); - if (*fd < 0) - return NULL; - - if (bind(*fd, laddr, slen) < 0) { - close(*fd); - return NULL; - } - } - switch (info->proto->p_proto) { case IPPROTO_UDP: if (!info->client) { Index: autofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/autofs/devel/autofs.spec,v retrieving revision 1.281 retrieving revision 1.282 diff -u -p -r1.281 -r1.282 --- autofs.spec 12 Jun 2009 09:06:15 -0000 1.281 +++ autofs.spec 15 Jul 2009 02:44:44 -0000 1.282 @@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4 -Release: 30 +Release: 32 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons @@ -68,6 +68,10 @@ Patch55: autofs-5.0.4-remount-we-created Patch56: autofs-5.0.4-fix-double-free-in-do_sasl_bind.patch Patch57: autofs-5.0.4-manual-umount-recovery-fixes.patch Patch58: autofs-5.0.4-fix-map-type-info-parse-error.patch +Patch59: autofs-5.0.4-fix-map-type-info-parse-error-update.patch +Patch60: autofs-5.0.4-fix-rpc-fd-leak.patch +Patch61: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch +Patch62: autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel module-init-tools util-linux nfs-utils e2fsprogs libtirpc-devel Requires: kernel >= 2.6.17 @@ -167,6 +171,10 @@ echo %{version}-%{release} > .version %patch56 -p1 %patch57 -p1 %patch58 -p1 +%patch59 -p1 +%patch60 -p1 +%patch61 -p1 +%patch62 -p1 %build #CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir} @@ -219,6 +227,11 @@ fi %{_libdir}/autofs/ %changelog +* Wed Jul 15 2009 Ian Kent - 1:5.0.4-32 +- fix an RPC fd leak. +- don't block signals we expect to dump core. +- fix pthread push order in expire_proc_direct(). + * Fri Jun 12 2009 Ian Kent - 1:5.0.4-30 - fix incorrect dclist free. - srv lookup handle endianness. From mclasen at fedoraproject.org Wed Jul 15 02:50:27 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 02:50:27 +0000 (UTC) Subject: rpms/epiphany-extensions/devel .cvsignore, 1.31, 1.32 epiphany-extensions.spec, 1.59, 1.60 sources, 1.31, 1.32 Message-ID: <20090715025027.D327011C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24369 Modified Files: .cvsignore epiphany-extensions.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 13 Apr 2009 05:14:10 -0000 1.31 +++ .cvsignore 15 Jul 2009 02:49:57 -0000 1.32 @@ -1 +1 @@ -epiphany-extensions-2.26.1.tar.bz2 +epiphany-extensions-2.27.4.tar.bz2 Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- epiphany-extensions.spec 28 Apr 2009 03:22:55 -0000 1.59 +++ epiphany-extensions.spec 15 Jul 2009 02:49:57 -0000 1.60 @@ -1,7 +1,6 @@ -%global ephy_major 2.26 -%global ephy_api_version 2.26 +%global ephy_major 2.27 +%global ephy_api_version 2.27 %global ephy_min_version %{ephy_major}.0 -%global gecko_version 1.9.1 Name: epiphany-extensions Version: %{ephy_major}.1 @@ -24,13 +23,8 @@ BuildRequires: intltool BuildRequires: libtool BuildRequires: opensp-devel BuildRequires: pcre-devel -## gecko-devel is not strictly required, as epiphany-devel pulls it in. -## BuildRequire it anyway so we fail if not building against the version -## we are expecting to, and to ensure that we get the unstable headers needed. -BuildRequires: gecko-devel-unstable = %{gecko_version} -Requires: epiphany >= %{ephy_min_version} -Requires: gecko-libs = %{gecko_version} +Requires: epiphany-devel >= %{ephy_min_version} Requires: pygtk2 >= 2.11 Requires(pre): GConf2 @@ -53,7 +47,6 @@ GNOME web browser. %build %configure --disable-scrollkeeper \ - --with-gecko=libxul-embedding \ --with-extensions=really-all %{__make} %{?_smp_mflags} LIBTOOL=%{_bindir}/libtool @@ -113,6 +106,9 @@ scrollkeeper-update -q ||: %changelog +* Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Mon Apr 27 2009 Christopher Aillon - 2.26.1-2 - Rebuild against newer gecko Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 13 Apr 2009 05:14:10 -0000 1.31 +++ sources 15 Jul 2009 02:49:57 -0000 1.32 @@ -1 +1 @@ -bc3044148e915312654f8c82a575e58e epiphany-extensions-2.26.1.tar.bz2 +f234d3c1fa2f17b8a58352e8ad896b8b epiphany-extensions-2.27.4.tar.bz2 From iankent at fedoraproject.org Wed Jul 15 03:03:30 2009 From: iankent at fedoraproject.org (Ian Kent) Date: Wed, 15 Jul 2009 03:03:30 +0000 (UTC) Subject: rpms/autofs/F-11 autofs-5.0.4-allow-automount-daemon-to-dump-core.patch, NONE, 1.1 autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch, NONE, 1.1 autofs-5.0.4-fix-rpc-fd-leak.patch, NONE, 1.1 autofs.spec, 1.285, 1.286 Message-ID: <20090715030330.6D32D11C0099@cvs1.fedora.phx.redhat.com> Author: iankent Update of /cvs/pkgs/rpms/autofs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26976 Modified Files: autofs.spec Added Files: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch autofs-5.0.4-fix-rpc-fd-leak.patch Log Message: * Wed Jul 15 2009 Ian Kent - 1:5.0.4-35 - fix an RPC fd leak. - don't block signals we expect to dump core. - fix pthread push order in expire_proc_direct(). autofs-5.0.4-allow-automount-daemon-to-dump-core.patch: --- NEW FILE autofs-5.0.4-allow-automount-daemon-to-dump-core.patch --- autofs-5.0.4 - allow the automount daemon to dump core From: Jeff Moyer Right now, the automount daemon blocks all signals. We should at least unblock those that will cause us to dump core. Otherwise, I think the behaviour could be, umm, interesting. I tested this by sending SIGBUS and SIGSEGV to the automount daemon. edit - raven - I changed this a little so that the change to the signals is done in one place and added SIGABRT and SIGTRAP to the list of signals that aren't blocked. Signed-off-by: Jeff Moyer --- CHANGELOG | 1 + daemon/automount.c | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7f27f5e..4b85649 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -57,6 +57,7 @@ - mannual umount recovery fixes. - fix map type info parse error. - fix an RPC fd leak. +- don't block signals we expect to dump core. 4/11/2008 autofs-5.0.4 ----------------------- diff --git a/daemon/automount.c b/daemon/automount.c index 44dcdd6..e7f801b 100644 --- a/daemon/automount.c +++ b/daemon/automount.c @@ -64,6 +64,8 @@ static int st_stat = 1; static int *pst_stat = &st_stat; static pthread_t state_mach_thid; +static sigset_t block_sigs; + /* Pre-calculated kernel packet length */ static size_t kpkt_len; @@ -1321,7 +1323,7 @@ static void *statemachine(void *arg) sigset_t signalset; int sig; - sigfillset(&signalset); + memcpy(&signalset, &block_sigs, sizeof(sigset)); sigdelset(&signalset, SIGCHLD); sigdelset(&signalset, SIGCONT); @@ -1817,7 +1819,6 @@ int main(int argc, char *argv[]) unsigned foreground, have_global_options; time_t timeout; time_t age = time(NULL); - sigset_t allsigs; struct rlimit rlim; static const struct option long_options[] = { {"help", 0, 0, 'h'}, @@ -1837,8 +1838,15 @@ int main(int argc, char *argv[]) {0, 0, 0, 0} }; - sigfillset(&allsigs); - sigprocmask(SIG_BLOCK, &allsigs, NULL); + sigfillset(&block_sigs); + /* allow for the dropping of core files */ + sigdelset(&block_sigs, SIGABRT); + sigdelset(&block_sigs, SIGBUS); + sigdelset(&block_sigs, SIGSEGV); + sigdelset(&block_sigs, SIGILL); + sigdelset(&block_sigs, SIGFPE); + sigdelset(&block_sigs, SIGTRAP); + sigprocmask(SIG_BLOCK, &block_sigs, NULL); program = argv[0]; autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch: --- NEW FILE autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch --- autofs-5.0.4 - fix pthread push order in expire_proc_direct() From: Ian Kent Apparently the pthread_cleanup_push() has the quite stupid semantic of not working properly if the value of the pointer passed to it changes after it has been called. --- CHANGELOG | 1 + daemon/direct.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) --- autofs-5.0.4.orig/CHANGELOG +++ autofs-5.0.4/CHANGELOG @@ -58,6 +58,7 @@ - fix map type info parse error. - fix an RPC fd leak. - don't block signals we expect to dump core. +- fix pthread push order in expire_proc_direct(). 4/11/2008 autofs-5.0.4 ----------------------- --- autofs-5.0.4.orig/daemon/direct.c +++ autofs-5.0.4/daemon/direct.c @@ -823,8 +823,8 @@ void *expire_proc_direct(void *arg) left = 0; - pthread_cleanup_push(mnts_cleanup, mnts); mnts = tree_make_mnt_tree(_PROC_MOUNTS, "/"); + pthread_cleanup_push(mnts_cleanup, mnts); /* Get a list of mounts select real ones and expire them if possible */ INIT_LIST_HEAD(&list); autofs-5.0.4-fix-rpc-fd-leak.patch: --- NEW FILE autofs-5.0.4-fix-rpc-fd-leak.patch --- autofs-5.0.4 - fix rpc fd leak From: Ian Kent Recent changes which introduced the ability to handle to cope with IPv6 addresses causes a file descriptor leak in the RPC library. --- CHANGELOG | 1 + lib/rpc_subs.c | 11 ----------- 2 files changed, 1 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3fd97d3..9edb113 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -56,6 +56,7 @@ - fix double free in sasl_bind(). - mannual umount recovery fixes. - fix map type info parse error. +- fix an RPC fd leak. 4/11/2008 autofs-5.0.4 ----------------------- diff --git a/lib/rpc_subs.c b/lib/rpc_subs.c index d034b29..cafc775 100644 --- a/lib/rpc_subs.c +++ b/lib/rpc_subs.c @@ -253,17 +253,6 @@ static CLIENT *rpc_do_create_client(struct sockaddr *addr, struct conn_info *inf return NULL; } - if (!info->client) { - *fd = open_sock(addr->sa_family, type, proto); - if (*fd < 0) - return NULL; - - if (bind(*fd, laddr, slen) < 0) { - close(*fd); - return NULL; - } - } - switch (info->proto->p_proto) { case IPPROTO_UDP: if (!info->client) { Index: autofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/autofs/F-11/autofs.spec,v retrieving revision 1.285 retrieving revision 1.286 diff -u -p -r1.285 -r1.286 --- autofs.spec 22 Jun 2009 03:25:52 -0000 1.285 +++ autofs.spec 15 Jul 2009 03:03:30 -0000 1.286 @@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4 -Release: 33 +Release: 35 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons @@ -69,6 +69,9 @@ Patch56: autofs-5.0.4-fix-double-free-in Patch57: autofs-5.0.4-manual-umount-recovery-fixes.patch Patch58: autofs-5.0.4-fix-map-type-info-parse-error.patch Patch59: autofs-5.0.4-fix-map-type-info-parse-error-update.patch +Patch60: autofs-5.0.4-fix-rpc-fd-leak.patch +Patch61: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch +Patch62: autofs-5.0.4-fix-pthread-push-order-in-expire_proc_direct.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf, hesiod-devel, openldap-devel, bison, flex, libxml2-devel, cyrus-sasl-devel, openssl-devel module-init-tools util-linux nfs-utils e2fsprogs libtirpc-devel Requires: kernel >= 2.6.17 @@ -169,6 +172,9 @@ echo %{version}-%{release} > .version %patch57 -p1 %patch58 -p1 %patch59 -p1 +%patch60 -p1 +%patch61 -p1 +%patch62 -p1 %build #CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --libdir=%{_libdir} @@ -221,6 +227,11 @@ fi %{_libdir}/autofs/ %changelog +* Wed Jul 15 2009 Ian Kent - 1:5.0.4-35 +- fix an RPC fd leak. +- don't block signals we expect to dump core. +- fix pthread push order in expire_proc_direct(). + * Mon Jun 22 2009 Ian Kent - 1:5.0.4-33 - update fix map type info parse error. From ankursinha at fedoraproject.org Wed Jul 15 03:25:33 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Wed, 15 Jul 2009 03:25:33 +0000 (UTC) Subject: rpms/conakry-fonts/devel conakry-fonts-fontconfig.conf, NONE, 1.1 conakry-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715032533.9EC6F11C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/conakry-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31551/devel Modified Files: .cvsignore sources Added Files: conakry-fonts-fontconfig.conf conakry-fonts.spec import.log Log Message: * Wed Jul 15 2009 Ankur Sinha - 20070829-2 - initial cvs commit --- NEW FILE conakry-fonts-fontconfig.conf --- serif conakry conakry serif --- NEW FILE conakry-fonts.spec --- %global fontname conakry %global fontconf 65-%{fontname}.conf #global archivename %{name}-%{version} ??? Name: %{fontname}-fonts Version: 20070829 Release: 2%{?dist} Summary: N'Ko font by Michael Everson Group: User Interface/X License: OFL URL: http://www.evertype.com/fonts/nko/ Source0: http://www.evertype.com/fonts/nko/ConakryFont.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description N'Ko font by well-known Unicode.org expert & font designer Michael Everson %prep %setup -q -n ConakryFont for txt in OFL* ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.txt %changelog * Tue Jul 14 2009 Ankur Sinha - 20070829-2 - made corrections as per bug #511219 * Tue Jul 14 2009 Ankur Sinha - 20070829-1 - initial rpm build --- NEW FILE import.log --- conakry-fonts-20070829-2_fc10:HEAD:conakry-fonts-20070829-2.fc10.src.rpm:1247628299 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:32:48 -0000 1.1 +++ .cvsignore 15 Jul 2009 03:25:01 -0000 1.2 @@ -0,0 +1 @@ +ConakryFont.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:32:48 -0000 1.1 +++ sources 15 Jul 2009 03:25:01 -0000 1.2 @@ -0,0 +1 @@ +8c18f2584fe845fb22aa883ad202eb63 ConakryFont.zip From ankursinha at fedoraproject.org Wed Jul 15 03:30:50 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Wed, 15 Jul 2009 03:30:50 +0000 (UTC) Subject: rpms/conakry-fonts/F-10 conakry-fonts-fontconfig.conf, NONE, 1.1 conakry-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715033050.8525011C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/conakry-fonts/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv453/F-10 Modified Files: .cvsignore sources Added Files: conakry-fonts-fontconfig.conf conakry-fonts.spec import.log Log Message: * Wed Jul 15 2009 Ankur Sinha - 20070829-2 - initial cvs commit --- NEW FILE conakry-fonts-fontconfig.conf --- serif conakry conakry serif --- NEW FILE conakry-fonts.spec --- %global fontname conakry %global fontconf 65-%{fontname}.conf #global archivename %{name}-%{version} ??? Name: %{fontname}-fonts Version: 20070829 Release: 2%{?dist} Summary: N'Ko font by Michael Everson Group: User Interface/X License: OFL URL: http://www.evertype.com/fonts/nko/ Source0: http://www.evertype.com/fonts/nko/ConakryFont.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description N'Ko font by well-known Unicode.org expert & font designer Michael Everson %prep %setup -q -n ConakryFont for txt in OFL* ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.txt %changelog * Tue Jul 14 2009 Ankur Sinha - 20070829-2 - made corrections as per bug #511219 * Tue Jul 14 2009 Ankur Sinha - 20070829-1 - initial rpm build --- NEW FILE import.log --- conakry-fonts-20070829-2_fc10:F-10:conakry-fonts-20070829-2.fc10.src.rpm:1247628633 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:32:48 -0000 1.1 +++ .cvsignore 15 Jul 2009 03:30:49 -0000 1.2 @@ -0,0 +1 @@ +ConakryFont.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:32:48 -0000 1.1 +++ sources 15 Jul 2009 03:30:50 -0000 1.2 @@ -0,0 +1 @@ +8c18f2584fe845fb22aa883ad202eb63 ConakryFont.zip From itamarjp at fedoraproject.org Wed Jul 15 03:33:33 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 15 Jul 2009 03:33:33 +0000 (UTC) Subject: rpms/pg_top/devel import.log,1.1,1.2 pg_top.spec,1.2,1.3 Message-ID: <20090715033333.DB4D111C0099@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/pg_top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1107/devel Modified Files: import.log pg_top.spec Log Message: - fix buildrequires Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jan 2009 15:32:02 -0000 1.1 +++ import.log 15 Jul 2009 03:33:03 -0000 1.2 @@ -1 +1,2 @@ pg_top-3_6_2-3_fc10:HEAD:pg_top-3.6.2-3.fc10.src.rpm:1232983876 +pg_top-3_6_2-5_fc11:HEAD:pg_top-3.6.2-5.fc11.src.rpm:1247628727 Index: pg_top.spec =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/devel/pg_top.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pg_top.spec 26 Feb 2009 19:45:53 -0000 1.2 +++ pg_top.spec 15 Jul 2009 03:33:03 -0000 1.3 @@ -1,7 +1,7 @@ Summary: 'top' for PostgreSQL process Name: pg_top Version: 3.6.2 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1780/%{name}-%{version}.tar.bz2 @@ -9,6 +9,7 @@ URL: http://pgfoundry.org/projects/ptop BuildRequires: postgresql-devel BuildRequires: libtermcap-devel BuildRequires: elfutils-libelf-devel +BuildRequires: systemtap-sdt-devel Requires: postgresql-server BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,6 +41,9 @@ rm -rf %{buildroot} %doc FAQ HISTORY INSTALL LICENSE README TODO Y2K %changelog +* Wed Jul 15 2009 Itamar Reis Peixoto - 3.6.2-5 +- fix buildrequires, systemtap-sdt-devel is required for + * Thu Feb 26 2009 Fedora Release Engineering - 3.6.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From itamarjp at fedoraproject.org Wed Jul 15 03:35:13 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 15 Jul 2009 03:35:13 +0000 (UTC) Subject: rpms/pg_top/F-11 import.log,1.1,1.2 pg_top.spec,1.2,1.3 Message-ID: <20090715033513.CBC7411C0099@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/pg_top/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1692/F-11 Modified Files: import.log pg_top.spec Log Message: - fix buildrequires, systemtap-sdt-devel is required for Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jan 2009 15:32:02 -0000 1.1 +++ import.log 15 Jul 2009 03:34:43 -0000 1.2 @@ -1 +1,2 @@ pg_top-3_6_2-3_fc10:HEAD:pg_top-3.6.2-3.fc10.src.rpm:1232983876 +pg_top-3_6_2-5_fc11:F-11:pg_top-3.6.2-5.fc11.src.rpm:1247628836 Index: pg_top.spec =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/F-11/pg_top.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pg_top.spec 26 Feb 2009 19:45:53 -0000 1.2 +++ pg_top.spec 15 Jul 2009 03:34:43 -0000 1.3 @@ -1,7 +1,7 @@ Summary: 'top' for PostgreSQL process Name: pg_top Version: 3.6.2 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1780/%{name}-%{version}.tar.bz2 @@ -9,6 +9,7 @@ URL: http://pgfoundry.org/projects/ptop BuildRequires: postgresql-devel BuildRequires: libtermcap-devel BuildRequires: elfutils-libelf-devel +BuildRequires: systemtap-sdt-devel Requires: postgresql-server BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,6 +41,9 @@ rm -rf %{buildroot} %doc FAQ HISTORY INSTALL LICENSE README TODO Y2K %changelog +* Wed Jul 15 2009 Itamar Reis Peixoto - 3.6.2-5 +- fix buildrequires, systemtap-sdt-devel is required for + * Thu Feb 26 2009 Fedora Release Engineering - 3.6.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ankursinha at fedoraproject.org Wed Jul 15 03:35:18 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Wed, 15 Jul 2009 03:35:18 +0000 (UTC) Subject: rpms/conakry-fonts/F-11 conakry-fonts-fontconfig.conf, NONE, 1.1 conakry-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715033518.3213E11C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/conakry-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1587/F-11 Modified Files: .cvsignore sources Added Files: conakry-fonts-fontconfig.conf conakry-fonts.spec import.log Log Message: * Wed Jul 15 2009 Ankur Sinha - 20070829-2 - initial cvs commit --- NEW FILE conakry-fonts-fontconfig.conf --- serif conakry conakry serif --- NEW FILE conakry-fonts.spec --- %global fontname conakry %global fontconf 65-%{fontname}.conf #global archivename %{name}-%{version} ??? Name: %{fontname}-fonts Version: 20070829 Release: 2%{?dist} Summary: N'Ko font by Michael Everson Group: User Interface/X License: OFL URL: http://www.evertype.com/fonts/nko/ Source0: http://www.evertype.com/fonts/nko/ConakryFont.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description N'Ko font by well-known Unicode.org expert & font designer Michael Everson %prep %setup -q -n ConakryFont for txt in OFL* ; do sed 's/\r//' $txt > $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.txt %changelog * Tue Jul 14 2009 Ankur Sinha - 20070829-2 - made corrections as per bug #511219 * Tue Jul 14 2009 Ankur Sinha - 20070829-1 - initial rpm build --- NEW FILE import.log --- conakry-fonts-20070829-2_fc10:F-11:conakry-fonts-20070829-2.fc10.src.rpm:1247628904 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:32:48 -0000 1.1 +++ .cvsignore 15 Jul 2009 03:34:47 -0000 1.2 @@ -0,0 +1 @@ +ConakryFont.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:32:48 -0000 1.1 +++ sources 15 Jul 2009 03:34:48 -0000 1.2 @@ -0,0 +1 @@ +8c18f2584fe845fb22aa883ad202eb63 ConakryFont.zip From itamarjp at fedoraproject.org Wed Jul 15 03:37:43 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Wed, 15 Jul 2009 03:37:43 +0000 (UTC) Subject: rpms/pg_top/F-10 import.log,1.1,1.2 pg_top.spec,1.1,1.2 Message-ID: <20090715033743.E999211C0099@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/pg_top/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2309/F-10 Modified Files: import.log pg_top.spec Log Message: - fix buildrequires, systemtap-sdt-devel is required for Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 26 Jan 2009 15:36:04 -0000 1.1 +++ import.log 15 Jul 2009 03:37:43 -0000 1.2 @@ -1 +1,2 @@ pg_top-3_6_2-3_fc10:F-10:pg_top-3.6.2-3.fc10.src.rpm:1232984021 +pg_top-3_6_2-5_fc11:F-10:pg_top-3.6.2-5.fc11.src.rpm:1247629000 Index: pg_top.spec =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/F-10/pg_top.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pg_top.spec 26 Jan 2009 15:36:04 -0000 1.1 +++ pg_top.spec 15 Jul 2009 03:37:43 -0000 1.2 @@ -1,7 +1,7 @@ Summary: 'top' for PostgreSQL process Name: pg_top Version: 3.6.2 -Release: 3%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1780/%{name}-%{version}.tar.bz2 @@ -9,6 +9,7 @@ URL: http://pgfoundry.org/projects/ptop BuildRequires: postgresql-devel BuildRequires: libtermcap-devel BuildRequires: elfutils-libelf-devel +BuildRequires: systemtap-sdt-devel Requires: postgresql-server BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,6 +41,12 @@ rm -rf %{buildroot} %doc FAQ HISTORY INSTALL LICENSE README TODO Y2K %changelog +* Wed Jul 15 2009 Itamar Reis Peixoto - 3.6.2-5 +- fix buildrequires, systemtap-sdt-devel is required for + +* Thu Feb 26 2009 Fedora Release Engineering - 3.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Jan 21 2009 - Itamar Reis Peixoto - 3.6.2-3 - include %%{optflags} during compilation. - include DOC files, including license file From whot at fedoraproject.org Wed Jul 15 04:00:20 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 15 Jul 2009 04:00:20 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.50, 1.51 sources, 1.49, 1.50 xorg-x11-proto-devel.spec, 1.94, 1.95 Message-ID: <20090715040020.88B1011C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7343 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Wed Jul 15 2009 Peter Hutterer 7.4-19 - renderproto 0.11 - inputproto 1.9.99.14 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- .cvsignore 12 Jul 2009 07:38:02 -0000 1.50 +++ .cvsignore 15 Jul 2009 03:59:50 -0000 1.51 @@ -8,7 +8,7 @@ fontsproto-2.0.2.tar.bz2 glproto-1.4.9.tar.bz2 kbproto-1.0.3.tar.bz2 recordproto-1.13.2.tar.bz2 -renderproto-0.9.3.tar.bz2 +renderproto-0.11.tar.bz2 resourceproto-1.0.2.tar.bz2 scrnsaverproto-1.1.0.tar.bz2 videoproto-2.2.2.tar.bz2 @@ -25,4 +25,4 @@ xproxymanagementprotocol-1.0.2.tar.bz2 randrproto-1.2.99.3.tar.bz2 glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 -inputproto-1.9.99.13.tar.bz2 +inputproto-1.9.99.14.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- sources 12 Jul 2009 07:38:03 -0000 1.49 +++ sources 15 Jul 2009 03:59:50 -0000 1.50 @@ -7,7 +7,7 @@ d80acad88411e7944b9b085463d53302 dmxpro c946f166107b016a21cc7a02e1132724 fontsproto-2.0.2.tar.bz2 6092cdb0a1225f95356ddbe6c2abaad5 kbproto-1.0.3.tar.bz2 0ed4706564a34fc2aff724aa16d3ff00 recordproto-1.13.2.tar.bz2 -598bc9a493deee2e48e4434e94467189 renderproto-0.9.3.tar.bz2 +b160a9733fe91b666e74fca284333148 renderproto-0.11.tar.bz2 b823b314e37eb19dae1f297951d2e933 resourceproto-1.0.2.tar.bz2 5d551850e6f4acdf49a13f4eb3a5bbfa scrnsaverproto-1.1.0.tar.bz2 44292d74a9a3c94b1ecb9d77a0da83e8 videoproto-2.2.2.tar.bz2 @@ -24,4 +24,4 @@ d28007a50976204960fc1fc07b4ca093 xproxy d4a7b90d826dfa1c39d41d323ce7366c randrproto-1.2.99.3.tar.bz2 c9f8cebfba72bfab674bc0170551fb8d glproto-1.4.10.tar.bz2 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 -74d5d610defae58ff2c9f9711da94e6e inputproto-1.9.99.13.tar.bz2 +291ba427a40869cf9909b6c950bf6eab inputproto-1.9.99.14.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- xorg-x11-proto-devel.spec 12 Jul 2009 07:38:03 -0000 1.94 +++ xorg-x11-proto-devel.spec 15 Jul 2009 03:59:50 -0000 1.95 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 18%{?dist} +Release: 19%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -23,11 +23,11 @@ Source4: http://www.x.org/pub/individua Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 -Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.13.tar.bz2 +Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.14.tar.bz2 Source10: http://www.x.org/pub/individual/proto/kbproto-1.0.3.tar.bz2 Source13: http://www.x.org/pub/individual/proto/randrproto-1.2.99.3.tar.bz2 Source14: http://www.x.org/pub/individual/proto/recordproto-1.13.2.tar.bz2 -Source15: http://www.x.org/pub/individual/proto/renderproto-0.9.3.tar.bz2 +Source15: http://www.x.org/pub/individual/proto/renderproto-0.11.tar.bz2 Source16: http://www.x.org/pub/individual/proto/resourceproto-1.0.2.tar.bz2 Source17: http://www.x.org/pub/individual/proto/scrnsaverproto-1.1.0.tar.bz2 Source19: http://www.x.org/pub/individual/proto/videoproto-2.2.2.tar.bz2 @@ -260,6 +260,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 15 2009 Peter Hutterer 7.4-19 +- renderproto 0.11 +- inputproto 1.9.99.14 + * Sun Jul 12 2009 Peter Hutterer 7.4-18 - inputproto 1.9.99.13 From kylev at fedoraproject.org Wed Jul 15 04:58:54 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Wed, 15 Jul 2009 04:58:54 +0000 (UTC) Subject: rpms/python-peak-rules/devel python-peak-rules-py26-deprecation.patch, NONE, 1.1 python-peak-rules.spec, 1.10, 1.11 Message-ID: <20090715045854.5C5C211C00DF@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-peak-rules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7111 Modified Files: python-peak-rules.spec Added Files: python-peak-rules-py26-deprecation.patch Log Message: Patch with r2600 from SVN to fix bug 511401 python-peak-rules-py26-deprecation.patch: --- NEW FILE python-peak-rules-py26-deprecation.patch --- --- /PEAK-Rules/peak/rules/indexing.py 2009/02/22 04:20:24 2599 +++ PEAK-Rules/peak/rules/indexing.py 2009/07/15 04:30:57 2600 @@ -217,7 +217,7 @@ def __new__(cls, engine, expr): if cls is BitmapIndex: cls = bitmap_index_type(engine, expr) - return super(BitmapIndex, cls).__new__(cls, engine, expr) + return super(BitmapIndex, cls).__new__(cls) def __init__(self, engine, expr): self.extra = {} Index: python-peak-rules.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-rules/devel/python-peak-rules.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-peak-rules.spec 5 Jun 2009 14:39:09 -0000 1.10 +++ python-peak-rules.spec 15 Jul 2009 04:58:54 -0000 1.11 @@ -13,7 +13,7 @@ Version: 0.5a1.dev # Release:0.3.a1.dev%{devrev}%{?dist} # But we can't do that yet because it breaks the upgrade path. # When version hits 0.5.1 or 0.6 we can correct this. -Release: 7.%{devrev}%{?dist} +Release: 8.%{devrev}%{?dist} Summary: Generic functions and business rules support systems Group: Development/Languages @@ -23,6 +23,7 @@ Source0: http://peak.telecommunit Patch0: %{name}-setup.patch Patch1: %{name}-doctest.patch Patch2: %{name}-x86_64-doctest.patch +Patch3: %{name}-py26-deprecation.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -51,6 +52,7 @@ dispatch engines and custom method combi %patch0 -b .setup %patch1 -p1 -b .test %patch2 -p0 -b .x86_64 +%patch3 -p1 %{__chmod} -x %{docs} %build @@ -75,7 +77,10 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog -* Wed Jun 03 2009 Luke Macken 0.5a1.dev-6.2582 +* Tue Jul 14 2009 Kyle VanderBeek - 0.5a1.dev-8.2582 +- SVN r2600 to fix python 2.6 deprecation warnings from BitmapIndex + +* Wed Jun 03 2009 Luke Macken 0.5a1.dev-7.2582 - Add a patch to get the doctests to work on x86_64 * Wed Apr 15 2009 Karsten Hopp 0.5a1.dev-6.2582 From kylev at fedoraproject.org Wed Jul 15 05:11:21 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Wed, 15 Jul 2009 05:11:21 +0000 (UTC) Subject: rpms/python-peak-rules/F-11 python-peak-rules-py26-deprecation.patch, NONE, 1.1 python-peak-rules-x86_64-doctest.patch, NONE, 1.1 python-peak-rules.spec, 1.8, 1.9 Message-ID: <20090715051121.7C77811C00DF@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-peak-rules/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9594 Modified Files: python-peak-rules.spec Added Files: python-peak-rules-py26-deprecation.patch python-peak-rules-x86_64-doctest.patch Log Message: Backport -8 rev from devel to fix various deprecation warnings. python-peak-rules-py26-deprecation.patch: --- NEW FILE python-peak-rules-py26-deprecation.patch --- --- /PEAK-Rules/peak/rules/indexing.py 2009/02/22 04:20:24 2599 +++ PEAK-Rules/peak/rules/indexing.py 2009/07/15 04:30:57 2600 @@ -217,7 +217,7 @@ def __new__(cls, engine, expr): if cls is BitmapIndex: cls = bitmap_index_type(engine, expr) - return super(BitmapIndex, cls).__new__(cls, engine, expr) + return super(BitmapIndex, cls).__new__(cls) def __init__(self, engine, expr): self.extra = {} python-peak-rules-x86_64-doctest.patch: --- NEW FILE python-peak-rules-x86_64-doctest.patch --- --- Indexing.txt.orig 2009-06-03 07:43:19.000000000 -0400 +++ Indexing.txt 2009-06-03 07:43:54.000000000 -0400 @@ -644,7 +644,7 @@ long integers:: >>> seven_long = to_bits([32,33,34]) - >>> print hex(seven_long) + >>> print hex(long(seven_long)) 0x700000000L >>> list(from_bits(seven_long)) Index: python-peak-rules.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-rules/F-11/python-peak-rules.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-peak-rules.spec 26 Feb 2009 22:48:36 -0000 1.8 +++ python-peak-rules.spec 15 Jul 2009 05:10:51 -0000 1.9 @@ -13,7 +13,7 @@ Version: 0.5a1.dev # Release:0.3.a1.dev%{devrev}%{?dist} # But we can't do that yet because it breaks the upgrade path. # When version hits 0.5.1 or 0.6 we can correct this. -Release: 5.%{devrev}%{?dist} +Release: 8.%{devrev}%{?dist} Summary: Generic functions and business rules support systems Group: Development/Languages @@ -22,6 +22,8 @@ URL: http://pypi.python.org/p Source0: http://peak.telecommunity.com/snapshots/%{packagename}-%{version}-r%{devrev}.tar.gz Patch0: %{name}-setup.patch Patch1: %{name}-doctest.patch +Patch2: %{name}-x86_64-doctest.patch +Patch3: %{name}-py26-deprecation.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -49,6 +51,8 @@ dispatch engines and custom method combi %setup -q -n %{packagename}-%{version}-r%{devrev} %patch0 -b .setup %patch1 -p1 -b .test +%patch2 -p0 -b .x86_64 +%patch3 -p1 %{__chmod} -x %{docs} %build @@ -59,7 +63,10 @@ rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %check +# Disable checks on s390x for now, see bugzilla #495874 +%ifnarch s390x %{__python} setup.py test +%endif %clean rm -rf %{buildroot} @@ -70,6 +77,15 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Tue Jul 14 2009 Kyle VanderBeek - 0.5a1.dev-8.2582 +- SVN r2600 to fix python 2.6 deprecation warnings from BitmapIndex + +* Wed Jun 03 2009 Luke Macken 0.5a1.dev-7.2582 +- Add a patch to get the doctests to work on x86_64 + +* Wed Apr 15 2009 Karsten Hopp 0.5a1.dev-6.2582 +- Disable checks on s390x for now, see bugzilla #495874 + * Thu Feb 26 2009 Fedora Release Engineering - 0.5a1.dev-5.2582 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From oget at fedoraproject.org Wed Jul 15 05:12:36 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 05:12:36 +0000 (UTC) Subject: rpms/calf/devel calf-dssi.desktop, NONE, 1.1 calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch, NONE, 1.1 calf.spec, 1.2, 1.3 Message-ID: <20090715051236.16F4611C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/calf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9920 Modified Files: calf.spec Added Files: calf-dssi.desktop calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 - Add a .desktop file for the DSSI plugin - Add X-Synthesis category to the existing .desktop file of the JACK plugin - Backport the LADSPA URI fix from trunk --- NEW FILE calf-dssi.desktop --- [Desktop Entry] Name=Calf Plugin Pack for DSSI GenericName=Audio Effects Comment=Process and produce sounds using a set of plugins with DSSI interface Icon=calf Type=Application Exec=/usr/bin/calf Terminal=false Categories=Audio;AudioVideo;Midi;X-Synthesis;X-Jack; calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch: --- NEW FILE calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch --- From: Krzysztof Foltman Date: Fri, 19 Jun 2009 18:47:52 +0000 (+0100) Subject: + LV2: use correct LADSPA URIs X-Git-Url: http://repo.or.cz/w/calf.git?a=commitdiff_plain;h=fb526c311c4ab401986b7d559d32732d6acd7cde;hp=b3c1df4210795f0ff962c0866babe7818bf70d31 + LV2: use correct LADSPA URIs --- diff --git a/src/makerdf.cpp b/src/makerdf.cpp index e5afa52..430fb91 100644 --- a/src/makerdf.cpp +++ b/src/makerdf.cpp @@ -555,7 +555,7 @@ void make_ttl(string path_prefix) #endif ttl += " doap:license ;\n"; - ttl += " dc:replaces ;\n"; + ttl += " dc:replaces ;\n"; // XXXKF not really optional for now, to be honest ttl += " lv2:optionalFeature epp:supportsStrictBounds ;\n"; if (pi->is_rt_capable()) Index: calf.spec =================================================================== RCS file: /cvs/pkgs/rpms/calf/devel/calf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- calf.spec 12 Jun 2009 02:49:47 -0000 1.2 +++ calf.spec 15 Jul 2009 05:12:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: calf Version: 0.0.18.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Audio plugins pack Group: Applications/Multimedia # The jackhost code is GPLv2+ @@ -11,6 +11,10 @@ Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ URL: http://calf.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}-dssi.desktop +# LV2: use correct LADSPA URIs +# http://repo.or.cz/w/calf.git?a=commit;h=fb526c311c4ab401986b7d559d32732d6acd7cde +Patch0: %{name}.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -75,6 +79,7 @@ This package contains DSSI synthesizers %prep %setup -q +%patch0 -p1 -b .ladspa_uri # Make sure that optflags are not overriden. sed -i 's|-O3||' configure @@ -94,11 +99,19 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# The Jack host desktop-file-install \ --remove-category="Application" \ + --add-category="X-Synthesis" \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop +# The DSSI host +ln -s jack-dssi-host $RPM_BUILD_ROOT%{_bindir}/%{name} +desktop-file-install \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + %{SOURCE1} + # We don't need this file: rm -f $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/icon-theme.cache @@ -141,10 +154,17 @@ gtk-update-icon-cache %{_datadir}/icons/ %files -n dssi-%{name}-plugins %defattr(-,root,root,-) +%{_bindir}/%{name} +%{_datadir}/applications/%{name}-dssi.desktop %{_libdir}/dssi/%{name}/ %{_libdir}/dssi/%{name}.so %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 +- Add a .desktop file for the DSSI plugin +- Add X-Synthesis category to the existing .desktop file of the JACK plugin +- Backport the LADSPA URI fix from trunk + * Thu Jun 11 2009 Orcan Ogetbil - 0.0.18.5-1 - Update to 0.0.18.5 - Drop upstreamed gcc44 patch From oget at fedoraproject.org Wed Jul 15 05:15:18 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 05:15:18 +0000 (UTC) Subject: rpms/calf/F-11 calf-dssi.desktop, NONE, 1.1 calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch, NONE, 1.1 calf.spec, 1.2, 1.3 Message-ID: <20090715051518.20AA111C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/calf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10652 Modified Files: calf.spec Added Files: calf-dssi.desktop calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 - Add a .desktop file for the DSSI plugin - Add X-Synthesis category to the existing .desktop file of the JACK plugin - Backport the LADSPA URI fix from trunk --- NEW FILE calf-dssi.desktop --- [Desktop Entry] Name=Calf Plugin Pack for DSSI GenericName=Audio Effects Comment=Process and produce sounds using a set of plugins with DSSI interface Icon=calf Type=Application Exec=/usr/bin/calf Terminal=false Categories=Audio;AudioVideo;Midi;X-Synthesis;X-Jack; calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch: --- NEW FILE calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch --- From: Krzysztof Foltman Date: Fri, 19 Jun 2009 18:47:52 +0000 (+0100) Subject: + LV2: use correct LADSPA URIs X-Git-Url: http://repo.or.cz/w/calf.git?a=commitdiff_plain;h=fb526c311c4ab401986b7d559d32732d6acd7cde;hp=b3c1df4210795f0ff962c0866babe7818bf70d31 + LV2: use correct LADSPA URIs --- diff --git a/src/makerdf.cpp b/src/makerdf.cpp index e5afa52..430fb91 100644 --- a/src/makerdf.cpp +++ b/src/makerdf.cpp @@ -555,7 +555,7 @@ void make_ttl(string path_prefix) #endif ttl += " doap:license ;\n"; - ttl += " dc:replaces ;\n"; + ttl += " dc:replaces ;\n"; // XXXKF not really optional for now, to be honest ttl += " lv2:optionalFeature epp:supportsStrictBounds ;\n"; if (pi->is_rt_capable()) Index: calf.spec =================================================================== RCS file: /cvs/pkgs/rpms/calf/F-11/calf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- calf.spec 12 Jun 2009 02:52:42 -0000 1.2 +++ calf.spec 15 Jul 2009 05:15:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: calf Version: 0.0.18.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Audio plugins pack Group: Applications/Multimedia # The jackhost code is GPLv2+ @@ -11,6 +11,10 @@ Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ URL: http://calf.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}-dssi.desktop +# LV2: use correct LADSPA URIs +# http://repo.or.cz/w/calf.git?a=commit;h=fb526c311c4ab401986b7d559d32732d6acd7cde +Patch0: %{name}.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -75,6 +79,7 @@ This package contains DSSI synthesizers %prep %setup -q +%patch0 -p1 -b .ladspa_uri # Make sure that optflags are not overriden. sed -i 's|-O3||' configure @@ -94,11 +99,19 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# The Jack host desktop-file-install \ --remove-category="Application" \ + --add-category="X-Synthesis" \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop +# The DSSI host +ln -s jack-dssi-host $RPM_BUILD_ROOT%{_bindir}/%{name} +desktop-file-install \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + %{SOURCE1} + # We don't need this file: rm -f $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/icon-theme.cache @@ -141,10 +154,17 @@ gtk-update-icon-cache %{_datadir}/icons/ %files -n dssi-%{name}-plugins %defattr(-,root,root,-) +%{_bindir}/%{name} +%{_datadir}/applications/%{name}-dssi.desktop %{_libdir}/dssi/%{name}/ %{_libdir}/dssi/%{name}.so %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 +- Add a .desktop file for the DSSI plugin +- Add X-Synthesis category to the existing .desktop file of the JACK plugin +- Backport the LADSPA URI fix from trunk + * Thu Jun 11 2009 Orcan Ogetbil - 0.0.18.5-1 - Update to 0.0.18.5 - Drop upstreamed gcc44 patch From oget at fedoraproject.org Wed Jul 15 05:16:53 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 05:16:53 +0000 (UTC) Subject: rpms/calf/F-10 calf-dssi.desktop, NONE, 1.1 calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch, NONE, 1.1 calf.spec, 1.2, 1.3 Message-ID: <20090715051653.D101911C00DF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/calf/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10950 Modified Files: calf.spec Added Files: calf-dssi.desktop calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch Log Message: * Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 - Add a .desktop file for the DSSI plugin - Add X-Synthesis category to the existing .desktop file of the JACK plugin - Backport the LADSPA URI fix from trunk --- NEW FILE calf-dssi.desktop --- [Desktop Entry] Name=Calf Plugin Pack for DSSI GenericName=Audio Effects Comment=Process and produce sounds using a set of plugins with DSSI interface Icon=calf Type=Application Exec=/usr/bin/calf Terminal=false Categories=Audio;AudioVideo;Midi;X-Synthesis;X-Jack; calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch: --- NEW FILE calf.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch --- From: Krzysztof Foltman Date: Fri, 19 Jun 2009 18:47:52 +0000 (+0100) Subject: + LV2: use correct LADSPA URIs X-Git-Url: http://repo.or.cz/w/calf.git?a=commitdiff_plain;h=fb526c311c4ab401986b7d559d32732d6acd7cde;hp=b3c1df4210795f0ff962c0866babe7818bf70d31 + LV2: use correct LADSPA URIs --- diff --git a/src/makerdf.cpp b/src/makerdf.cpp index e5afa52..430fb91 100644 --- a/src/makerdf.cpp +++ b/src/makerdf.cpp @@ -555,7 +555,7 @@ void make_ttl(string path_prefix) #endif ttl += " doap:license ;\n"; - ttl += " dc:replaces ;\n"; + ttl += " dc:replaces ;\n"; // XXXKF not really optional for now, to be honest ttl += " lv2:optionalFeature epp:supportsStrictBounds ;\n"; if (pi->is_rt_capable()) Index: calf.spec =================================================================== RCS file: /cvs/pkgs/rpms/calf/F-10/calf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- calf.spec 12 Jun 2009 02:54:09 -0000 1.2 +++ calf.spec 15 Jul 2009 05:16:23 -0000 1.3 @@ -1,6 +1,6 @@ Name: calf Version: 0.0.18.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Audio plugins pack Group: Applications/Multimedia # The jackhost code is GPLv2+ @@ -11,6 +11,10 @@ Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ URL: http://calf.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: %{name}-dssi.desktop +# LV2: use correct LADSPA URIs +# http://repo.or.cz/w/calf.git?a=commit;h=fb526c311c4ab401986b7d559d32732d6acd7cde +Patch0: %{name}.git-fb526c311c4ab401986b7d559d32732d6acd7cde.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -75,6 +79,7 @@ This package contains DSSI synthesizers %prep %setup -q +%patch0 -p1 -b .ladspa_uri # Make sure that optflags are not overriden. sed -i 's|-O3||' configure @@ -94,11 +99,19 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# The Jack host desktop-file-install \ --remove-category="Application" \ + --add-category="X-Synthesis" \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop +# The DSSI host +ln -s jack-dssi-host $RPM_BUILD_ROOT%{_bindir}/%{name} +desktop-file-install \ + --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ + %{SOURCE1} + # We don't need this file: rm -f $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/icon-theme.cache @@ -141,10 +154,17 @@ gtk-update-icon-cache %{_datadir}/icons/ %files -n dssi-%{name}-plugins %defattr(-,root,root,-) +%{_bindir}/%{name} +%{_datadir}/applications/%{name}-dssi.desktop %{_libdir}/dssi/%{name}/ %{_libdir}/dssi/%{name}.so %changelog +* Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 +- Add a .desktop file for the DSSI plugin +- Add X-Synthesis category to the existing .desktop file of the JACK plugin +- Backport the LADSPA URI fix from trunk + * Thu Jun 11 2009 Orcan Ogetbil - 0.0.18.5-1 - Update to 0.0.18.5 - Drop upstreamed gcc44 patch From mclasen at fedoraproject.org Wed Jul 15 05:21:17 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 05:21:17 +0000 (UTC) Subject: rpms/epiphany-extensions/devel epiphany-extensions.spec,1.60,1.61 Message-ID: <20090715052117.13E9211C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11830 Modified Files: epiphany-extensions.spec Log Message: fix spec Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- epiphany-extensions.spec 15 Jul 2009 02:49:57 -0000 1.60 +++ epiphany-extensions.spec 15 Jul 2009 05:21:16 -0000 1.61 @@ -3,7 +3,7 @@ %global ephy_min_version %{ephy_major}.0 Name: epiphany-extensions -Version: %{ephy_major}.1 +Version: %{ephy_major}.4 Release: 2%{?dist} Summary: Extensions for Epiphany, the GNOME web browser From mclasen at fedoraproject.org Wed Jul 15 05:24:33 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 05:24:33 +0000 (UTC) Subject: rpms/epiphany-extensions/devel epiphany-extensions.spec,1.61,1.62 Message-ID: <20090715052433.EBDA211C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13183 Modified Files: epiphany-extensions.spec Log Message: fix rev Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- epiphany-extensions.spec 15 Jul 2009 05:21:16 -0000 1.61 +++ epiphany-extensions.spec 15 Jul 2009 05:24:33 -0000 1.62 @@ -4,7 +4,7 @@ Name: epiphany-extensions Version: %{ephy_major}.4 -Release: 2%{?dist} +Release: 1%{?dist} Summary: Extensions for Epiphany, the GNOME web browser ## The Live HTTP Headers extension is LGPLv2.1+; the Gestures extension is From mclasen at fedoraproject.org Wed Jul 15 05:42:00 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 05:42:00 +0000 (UTC) Subject: rpms/epiphany-extensions/devel epiphany-extensions.spec,1.62,1.63 Message-ID: <20090715054200.7FA6111C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16298 Modified Files: epiphany-extensions.spec Log Message: fix file lists Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- epiphany-extensions.spec 15 Jul 2009 05:24:33 -0000 1.62 +++ epiphany-extensions.spec 15 Jul 2009 05:41:30 -0000 1.63 @@ -66,7 +66,7 @@ if [ "$1" -gt 1 ]; then export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ - %{_sysconfdir}/gconf/schemas/epilicious.schemas > /dev/null ||: + > /dev/null ||: fi @@ -75,7 +75,7 @@ scrollkeeper-update -q -o %{_datadir}/om export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) gconftool-2 --makefile-install-rule \ %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ - %{_sysconfdir}/gconf/schemas/epilicious.schemas > /dev/null ||: + > /dev/null ||: %preun @@ -83,7 +83,7 @@ if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ - %{_sysconfdir}/gconf/schemas/epilicious.schemas > /dev/null ||: + > /dev/null ||: fi @@ -102,7 +102,6 @@ scrollkeeper-update -q ||: %exclude %{_libdir}/epiphany/%{ephy_major}/extensions/*.la %{_libdir}/epiphany/%{ephy_major}/extensions/ %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas -%{_sysconfdir}/gconf/schemas/epilicious.schemas %changelog From kevin at fedoraproject.org Wed Jul 15 06:03:39 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 15 Jul 2009 06:03:39 +0000 (UTC) Subject: rpms/linux-libertine-fonts/devel linux-libertine-fonts-fontconfig.conf, NONE, 1.1 sources, 1.9, 1.10 .cvsignore, 1.9, 1.10 linux-libertine-fonts.spec, 1.12, 1.13 Message-ID: <20090715060339.6F32311C00DF@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/linux-libertine-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21132 Modified Files: sources .cvsignore linux-libertine-fonts.spec Added Files: linux-libertine-fonts-fontconfig.conf Log Message: Upgrade to 4.4.1 Fix to match current font guidelines --- NEW FILE linux-libertine-fonts-fontconfig.conf --- Linux Libertine Linux Libertine O Index: sources =================================================================== RCS file: /cvs/extras/rpms/linux-libertine-fonts/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 21 Nov 2008 13:14:38 -0000 1.9 +++ sources 15 Jul 2009 06:03:06 -0000 1.10 @@ -1 +1 @@ -e7357378dc803cf6a2823cae032caf24 LinLibertineSRC-4.1.8.tgz +a0fc3c60fcfdc6b7261f746043efe980 LinLibertineSRC-4.4.1.tgz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/linux-libertine-fonts/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 21 Nov 2008 13:14:37 -0000 1.9 +++ .cvsignore 15 Jul 2009 06:03:06 -0000 1.10 @@ -1 +1 @@ -LinLibertineSRC-4.1.8.tgz +LinLibertineSRC-4.4.1.tgz Index: linux-libertine-fonts.spec =================================================================== RCS file: /cvs/extras/rpms/linux-libertine-fonts/devel/linux-libertine-fonts.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- linux-libertine-fonts.spec 15 Mar 2009 18:46:06 -0000 1.12 +++ linux-libertine-fonts.spec 15 Jul 2009 06:03:06 -0000 1.13 @@ -1,33 +1,35 @@ -%define archivename LinLibertineSRC -%define fontdir %{_datadir}/fonts/linux-libertine - - -Name: linux-libertine-fonts -Version: 4.1.8 -Release: 3%{?dist} -Summary: Linux Libertine Open Fonts -Group: User Interface/X -License: GPLv2+ with exceptions or OFL -URL: http://linuxlibertine.sf.net -Source: http://dl.sf.net/linuxlibertine/%{archivename}-%{version}.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -BuildRequires: fontforge - +%global fontname linux-libertine +%global fontconf 75-%{fontname}.conf +%global archivename LinLibertineSRC + +Name: %{fontname}-fonts +Version: 4.4.1 +Release: 1%{?dist} +Summary: Linux Libertine Open Fonts + +Group: User Interface/X +License: GPLv2+ with exceptions or OFL +URL: http://linuxlibertine.sf.net +Source0: http://download.sourceforge.net/sourceforge/linuxlibertine/LinLibertineSRC-4.4.1.tgz +Source1: %{name}-fontconfig.conf +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildArch: noarch +BuildRequires: fontpackages-devel +BuildRequires: fontforge +Requires: fontpackages-filesystem %description The Linux Libertine Open Fonts are a TrueType font family for practical use in documents. They were created to provide a free alternative to proprietary standard fonts. - %prep %setup -q -n %{archivename} sed -i -e 's/\r//' OFL.txt - %build -fontforge -script "-" *.sfd < - 4.4.1-1 +- Upgrade to 4.4.1 +- Fix to match current font guidelines + * Sun Mar 15 2009 Nicolas Mailhot - 4.1.8-3 ??? Make sure F11 font packages have been built with F11 fontforge From stransky at fedoraproject.org Wed Jul 15 06:08:49 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Wed, 15 Jul 2009 06:08:49 +0000 (UTC) Subject: rpms/nspluginwrapper/F-11 nspluginwrapper.spec,1.78,1.79 Message-ID: <20090715060849.8158611C00DF@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/nspluginwrapper/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22200 Modified Files: nspluginwrapper.spec Log Message: * Wed Jul 15 2009 Martin Stransky 1.3.0-6 - Package kit plugin is ignored now (#511385) Index: nspluginwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/nspluginwrapper/F-11/nspluginwrapper.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- nspluginwrapper.spec 3 Mar 2009 18:37:52 -0000 1.78 +++ nspluginwrapper.spec 15 Jul 2009 06:08:18 -0000 1.79 @@ -9,7 +9,7 @@ %define plugin_config_binary plugin-config # Excluded plugins (separated by ':') -%define exclude_list "libtotem*:libjavaplugin*:gecko-mediaplayer*:mplayerplug-in*:librhythmbox*" +%define exclude_list "libtotem*:libjavaplugin*:gecko-mediaplayer*:mplayerplug-in*:librhythmbox*:packagekit*" # Target defines %if "%{_target_cpu}" == "i386" @@ -73,7 +73,7 @@ Summary: A compatibility layer for Netscape 4 plugins Name: nspluginwrapper Version: 1.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Source0: %{name}-%{version}%{?svndate:-%{svndate}}.tar.bz2 Source1: %{plugin_config_name}.tar.gz Source2: plugin-config.sh.in @@ -244,6 +244,9 @@ fi; %changelog +* Wed Jul 15 2009 Martin Stransky 1.3.0-6 +- Package kit plugin is ignored now (#511385) + * Tue Mar 03 2009 Warren Togami - 1.3.0-5 - Really Fix x86 32bit build (#488308) From mclasen at fedoraproject.org Wed Jul 15 06:12:09 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 06:12:09 +0000 (UTC) Subject: rpms/epiphany-extensions/devel epiphany-extensions.spec,1.63,1.64 Message-ID: <20090715061209.0C14811C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23127 Modified Files: epiphany-extensions.spec Log Message: more fixing Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- epiphany-extensions.spec 15 Jul 2009 05:41:30 -0000 1.63 +++ epiphany-extensions.spec 15 Jul 2009 06:12:08 -0000 1.64 @@ -66,25 +66,13 @@ if [ "$1" -gt 1 ]; then export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ + %{_sysconfdir}/gconf/schemas/epilicious.schemas \ > /dev/null ||: fi %post scrollkeeper-update -q -o %{_datadir}/omf/%{name} ||: -export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) -gconftool-2 --makefile-install-rule \ - %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ - > /dev/null ||: - - -%preun -if [ "$1" -eq 0 ]; then - export GCONF_CONFIG_SOURCE=$(gconftool-2 --get-default-source) - gconftool-2 --makefile-uninstall-rule \ - %{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas \ - > /dev/null ||: -fi %postun @@ -101,7 +89,6 @@ scrollkeeper-update -q ||: %exclude %{_libdir}/epiphany/%{ephy_major}/extensions/*.a %exclude %{_libdir}/epiphany/%{ephy_major}/extensions/*.la %{_libdir}/epiphany/%{ephy_major}/extensions/ -%{_sysconfdir}/gconf/schemas/smart-bookmarks.schemas %changelog From stransky at fedoraproject.org Wed Jul 15 06:17:14 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Wed, 15 Jul 2009 06:17:14 +0000 (UTC) Subject: rpms/nspluginwrapper/devel nspluginwrapper.spec,1.78,1.79 Message-ID: <20090715061714.6F91E11C00DF@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/nspluginwrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24212 Modified Files: nspluginwrapper.spec Log Message: Package kit plugin is ignored now (#511385) Index: nspluginwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/nspluginwrapper/devel/nspluginwrapper.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- nspluginwrapper.spec 3 Mar 2009 18:37:52 -0000 1.78 +++ nspluginwrapper.spec 15 Jul 2009 06:16:43 -0000 1.79 @@ -9,7 +9,7 @@ %define plugin_config_binary plugin-config # Excluded plugins (separated by ':') -%define exclude_list "libtotem*:libjavaplugin*:gecko-mediaplayer*:mplayerplug-in*:librhythmbox*" +%define exclude_list "libtotem*:libjavaplugin*:gecko-mediaplayer*:mplayerplug-in*:librhythmbox*:packagekit*" # Target defines %if "%{_target_cpu}" == "i386" @@ -73,7 +73,7 @@ Summary: A compatibility layer for Netscape 4 plugins Name: nspluginwrapper Version: 1.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Source0: %{name}-%{version}%{?svndate:-%{svndate}}.tar.bz2 Source1: %{plugin_config_name}.tar.gz Source2: plugin-config.sh.in @@ -244,6 +244,9 @@ fi; %changelog +* Wed Jul 15 2009 Martin Stransky 1.3.0-6 +- Package kit plugin is ignored now (#511385) + * Tue Mar 03 2009 Warren Togami - 1.3.0-5 - Really Fix x86 32bit build (#488308) From cchance at fedoraproject.org Wed Jul 15 06:17:16 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 15 Jul 2009 06:17:16 +0000 (UTC) Subject: rpms/ibus-table-cangjie/F-11 ibus-table-cangjie.spec,1.8,1.9 Message-ID: <20090715061716.E60B811C00DF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24191 Modified Files: ibus-table-cangjie.spec Log Message: refined macro Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/F-11/ibus-table-cangjie.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ibus-table-cangjie.spec 23 Jun 2009 05:51:08 -0000 1.8 +++ ibus-table-cangjie.spec 15 Jul 2009 06:16:46 -0000 1.9 @@ -5,7 +5,6 @@ Summary: Cang Jie input methods for i License: Public Domain and GPLv2+ Group: System Environment/Libraries URL: http://code.google.com/p/ibus/ -# Temporary rollback to 1.1.0.20090316 Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz Source1: COPYING.tables From whot at fedoraproject.org Wed Jul 15 06:20:20 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 15 Jul 2009 06:20:20 +0000 (UTC) Subject: rpms/xorg-x11-server/devel .cvsignore, 1.62, 1.63 commitid, 1.25, 1.26 sources, 1.57, 1.58 xorg-x11-server.spec, 1.446, 1.447 Message-ID: <20090715062020.CB7EE11C00DF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25083 Modified Files: .cvsignore commitid sources xorg-x11-server.spec Log Message: * Wed Jul 15 2009 Peter Hutterer 1.6.99-13.20090715 - Today's git snapshot. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 14 Jul 2009 18:50:51 -0000 1.62 +++ .cvsignore 15 Jul 2009 06:20:20 -0000 1.63 @@ -1 +1 @@ -xorg-server-20090714.tar.bz2 +xorg-server-20090715.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/commitid,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- commitid 14 Jul 2009 18:50:51 -0000 1.25 +++ commitid 15 Jul 2009 06:20:20 -0000 1.26 @@ -1 +1 @@ -686e4867302a741f3029c4105b997d0f0ac7c13c +693babbf12cc7969c3e211c4037c7af0d41c13e9 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/sources,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- sources 14 Jul 2009 18:50:51 -0000 1.57 +++ sources 15 Jul 2009 06:20:20 -0000 1.58 @@ -1 +1 @@ -1be9eeb4f40a1d8c90f146a3ddff246f xorg-server-20090714.tar.bz2 +95878d40ed265bacb65f5c1de9a887bd xorg-server-20090715.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.446 retrieving revision 1.447 diff -u -p -r1.446 -r1.447 --- xorg-x11-server.spec 14 Jul 2009 18:50:51 -0000 1.446 +++ xorg-x11-server.spec 15 Jul 2009 06:20:20 -0000 1.447 @@ -14,12 +14,12 @@ # Fix rhpxl to no longer need vesamodes/extramodes %define pkgname xorg-server -%define gitdate 20090714 +%define gitdate 20090715 Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 12.%{gitdate}%{?dist} +Release: 13.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -97,7 +97,7 @@ BuildRequires: git-core BuildRequires: automake autoconf libtool pkgconfig BuildRequires: xorg-x11-util-macros >= 1.1.5 -BuildRequires: xorg-x11-proto-devel >= 7.4-10 +BuildRequires: xorg-x11-proto-devel >= 7.4-19 BuildRequires: xorg-x11-xtrans-devel >= 1.2.2-1 BuildRequires: libXfont-devel libXau-devel libxkbfile-devel libXres-devel @@ -518,6 +518,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Peter Hutterer 1.6.99-13.20090715 +- Today's git snapshot. + * Tue Jul 14 2009 Adam Jackson 1.6.99-12.20090714 - Today's git snapshot. - Drop the %%pre script for Xorg, everyone ought to be migrated by now. From sharkcz at fedoraproject.org Wed Jul 15 06:30:42 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 06:30:42 +0000 (UTC) Subject: rpms/codeblocks/devel codeblocks-8.02-gsocket.patch, NONE, 1.1 codeblocks.spec, 1.32, 1.33 Message-ID: <20090715063042.95FDF11C00DF@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/extras/rpms/codeblocks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28364 Modified Files: codeblocks.spec Added Files: codeblocks-8.02-gsocket.patch Log Message: * Mon Jun 15 2009 Dan Hor??k 8.02-8 - fix gsocket between glib >= 2.21 and wxGTK in rawhide codeblocks-8.02-gsocket.patch: --- NEW FILE codeblocks-8.02-gsocket.patch --- diff --git a/src/plugins/contrib/codesnippets/codesnippets.cpp b/src/plugins/contrib/codesnippets/codesnippets.cpp index 499c815..fd2ab13 100644 --- a/src/plugins/contrib/codesnippets/codesnippets.cpp +++ b/src/plugins/contrib/codesnippets/codesnippets.cpp @@ -52,8 +52,13 @@ #include "memorymappedfile.h" #if defined(__WXGTK__) + // newer versions of glib define its own GSocket but we unfortunately use this + // name in our own (semi-)public header and so can't change it -- rename glib + // one instead + #define GSocket GlibSocket #include "wx/gtk/win_gtk.h" #include + #undef GlibSocket #endif // The plugin needs a flag ON to enable some code for the plugin diff --git a/src/plugins/contrib/codesnippets/codesnippetstreectrl.cpp b/src/plugins/contrib/codesnippets/codesnippetstreectrl.cpp index d33b08d..6a1905d 100644 --- a/src/plugins/contrib/codesnippets/codesnippetstreectrl.cpp +++ b/src/plugins/contrib/codesnippets/codesnippetstreectrl.cpp @@ -49,8 +49,13 @@ #include "menuidentifiers.h" #include "editsnippetframe.h" #if defined(__WXGTK__) + // newer versions of glib define its own GSocket but we unfortunately use this + // name in our own (semi-)public header and so can't change it -- rename glib + // one instead + #define GSocket GlibSocket #include "wx/gtk/win_gtk.h" #include + #undef GlibSocket #endif IMPLEMENT_DYNAMIC_CLASS(CodeSnippetsTreeCtrl, wxTreeCtrl) Index: codeblocks.spec =================================================================== RCS file: /cvs/extras/rpms/codeblocks/devel/codeblocks.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- codeblocks.spec 28 Feb 2009 09:13:08 -0000 1.32 +++ codeblocks.spec 15 Jul 2009 06:30:11 -0000 1.33 @@ -1,6 +1,6 @@ Name: codeblocks Version: 8.02 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An open source, cross platform, free C++ IDE Group: Development/Tools License: GPLv3+ @@ -23,6 +23,8 @@ Patch3: codeblocks-run.patch Patch4: codeblocks-8.02-gcc-detect.patch # fix for gcc 4.4/glibc 2.9.90 http://developer.berlios.de/patch/index.php?func=detailpatch&patch_id=2699&group_id=5358 Patch5: codeblocks-drop-const.patch +# fix GSocket conflict between glib >= 2.21 and wxGTK +Patch6: codeblocks-8.02-gsocket.patch %description @@ -78,6 +80,7 @@ Additional Code::Blocks plugins. %patch3 -p0 -b .run %patch4 -p0 -b .gcc-detect %patch5 -p1 -b .gcc44 +%patch6 -p1 -b .gsocket # convert EOLs find . -type f -and -not -name "*.cpp" -and -not -name "*.h" -and -not -name "*.png" -and -not -name "*.bmp" -and -not -name "*.c" -and -not -name "*.cxx" -and -not -name "*.ico" | sed "s/.*/\"\\0\"/" | xargs dos2unix --keepdate &> /dev/null @@ -264,6 +267,9 @@ update-mime-database /usr/share/mime &> %changelog +* Mon Jun 15 2009 Dan Hor??k 8.02-8 +- fix gsocket between glib >= 2.21 and wxGTK in rawhide + * Sat Feb 28 2009 Dan Hor??k 8.02-7 - update desktop file (#487796) From sailer at fedoraproject.org Wed Jul 15 06:32:29 2009 From: sailer at fedoraproject.org (sailer) Date: Wed, 15 Jul 2009 06:32:29 +0000 (UTC) Subject: rpms/mingw32-wpcap/devel mingw32-wpcap.spec,1.5,1.6 Message-ID: <20090715063229.3392711C00DF@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/extras/rpms/mingw32-wpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28929 Modified Files: mingw32-wpcap.spec Log Message: add BR: flex Index: mingw32-wpcap.spec =================================================================== RCS file: /cvs/extras/rpms/mingw32-wpcap/devel/mingw32-wpcap.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-wpcap.spec 23 Jun 2009 09:10:44 -0000 1.5 +++ mingw32-wpcap.spec 15 Jul 2009 06:31:58 -0000 1.6 @@ -7,7 +7,7 @@ Name: mingw32-wpcap Version: %{versionmajor}.%{versionminor}.%{versionsuffix} -Release: 6%{?dist} +Release: 7%{?dist} Summary: MinGW user-level packet capture Group: Development/Libraries @@ -25,6 +25,7 @@ BuildRequires: doxygen BuildRequires: unzip BuildRequires: dos2unix BuildRequires: bison +BuildRequires: lex Requires: mingw32-filesystem >= 50 %description @@ -143,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %{wpcapexamples} %changelog +* Wed Jul 15 2009 Thomas Sailer - 4.1.beta5-7 +- fix BR + * Tue Jun 23 2009 Thomas Sailer - 4.1.beta5-6 - fix debuginfo package generation From mmaslano at fedoraproject.org Wed Jul 15 06:44:28 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Wed, 15 Jul 2009 06:44:28 +0000 (UTC) Subject: rpms/tcl/devel tcl.spec, 1.88, 1.89 tcl-8.5.0-autopath.patch, 1.1, NONE tcl-8.5.6-http.pach, 1.1, NONE tcl-8.5.6-http.patch, 1.1, NONE Message-ID: <20090715064428.BEA9911C00DF@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/tcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31503 Modified Files: tcl.spec Removed Files: tcl-8.5.0-autopath.patch tcl-8.5.6-http.pach tcl-8.5.6-http.patch Log Message: * Mon May 18 2009 Marcela Ma??l????ov?? - 1:8.5.7-1 - 489017 update to 8.5.7 with systemtap support Index: tcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl/devel/tcl.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- tcl.spec 18 May 2009 11:27:39 -0000 1.88 +++ tcl.spec 15 Jul 2009 06:43:57 -0000 1.89 @@ -60,11 +60,12 @@ chmod -x generic/tclThreadAlloc.c %build pushd unix autoconf -%configure \ +%configure \ %if %sdt --enable-dtrace \ %endif --disable-threads + make %{?_smp_mflags} TCL_LIBRARY=%{_datadir}/%{name}%{majorver} %check --- tcl-8.5.0-autopath.patch DELETED --- --- tcl-8.5.6-http.pach DELETED --- --- tcl-8.5.6-http.patch DELETED --- From sailer at fedoraproject.org Wed Jul 15 06:45:08 2009 From: sailer at fedoraproject.org (sailer) Date: Wed, 15 Jul 2009 06:45:08 +0000 (UTC) Subject: rpms/mingw32-wpcap/devel mingw32-wpcap.spec,1.6,1.7 Message-ID: <20090715064508.F3A6711C00DF@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/extras/rpms/mingw32-wpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31779 Modified Files: mingw32-wpcap.spec Log Message: fix typo Index: mingw32-wpcap.spec =================================================================== RCS file: /cvs/extras/rpms/mingw32-wpcap/devel/mingw32-wpcap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mingw32-wpcap.spec 15 Jul 2009 06:31:58 -0000 1.6 +++ mingw32-wpcap.spec 15 Jul 2009 06:44:38 -0000 1.7 @@ -7,7 +7,7 @@ Name: mingw32-wpcap Version: %{versionmajor}.%{versionminor}.%{versionsuffix} -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW user-level packet capture Group: Development/Libraries @@ -25,7 +25,7 @@ BuildRequires: doxygen BuildRequires: unzip BuildRequires: dos2unix BuildRequires: bison -BuildRequires: lex +BuildRequires: flex Requires: mingw32-filesystem >= 50 %description @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %{wpcapexamples} %changelog +* Wed Jul 15 2009 Thomas Sailer - 4.1.beta5-8 +- fix BR + * Wed Jul 15 2009 Thomas Sailer - 4.1.beta5-7 - fix BR From harald at fedoraproject.org Wed Jul 15 06:52:06 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Wed, 15 Jul 2009 06:52:06 +0000 (UTC) Subject: rpms/readahead/devel readahead.spec,1.55,1.56 Message-ID: <20090715065206.57F8611C00DF@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/readahead/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv760 Modified Files: readahead.spec Log Message: * Wed Jul 15 2009 Harald Hoyer 1.4.9-2 - add libblkid-devel BuildRequirement Index: readahead.spec =================================================================== RCS file: /cvs/pkgs/rpms/readahead/devel/readahead.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- readahead.spec 5 Mar 2009 18:00:09 -0000 1.55 +++ readahead.spec 15 Jul 2009 06:51:35 -0000 1.56 @@ -1,7 +1,7 @@ Summary: Read a preset list of files into memory Name: readahead Version: 1.4.9 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -15,7 +15,7 @@ Requires(preun): /sbin/chkconfig, /sbin Requires: procps /bin/gawk upstart /usr/bin/ionice BuildRequires: e2fsprogs-devel BuildRequires: audit-libs-devel - +BuildRequires: libblkid-devel %define pkgvardatadir %{_localstatedir}/lib/%{name} @@ -68,6 +68,9 @@ fi /sbin/readahead-collector %changelog +* Wed Jul 15 2009 Harald Hoyer 1.4.9-2 +- add libblkid-devel BuildRequirement + * Thu Mar 05 2009 Harald Hoyer 1.4.9-1 - version 1.4.9 - readahead-collector is now triggered by rpm database changes From bojan at fedoraproject.org Wed Jul 15 07:10:17 2009 From: bojan at fedoraproject.org (bojan) Date: Wed, 15 Jul 2009 07:10:17 +0000 (UTC) Subject: rpms/apr-util/devel apr-util.spec,1.66,1.67 Message-ID: <20090715071018.0F90611C00DF@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5067 Modified Files: apr-util.spec Log Message: Build should depend on libuuid-devel. Index: apr-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/apr-util.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- apr-util.spec 9 Jun 2009 16:01:21 -0000 1.66 +++ apr-util.spec 15 Jul 2009 07:09:35 -0000 1.67 @@ -4,7 +4,7 @@ Summary: Apache Portable Runtime Utility library Name: apr-util Version: 1.3.7 -Release: 4%{?dist} +Release: 5%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -13,7 +13,7 @@ Patch1: apr-util-1.2.7-pkgconf.patch Patch2: apr-util-1.3.7-nodbmdso.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: autoconf, apr-devel >= 1.3.0 -BuildRequires: db4-devel, expat-devel, e2fsprogs-devel +BuildRequires: db4-devel, expat-devel, libuuid-devel %description The mission of the Apache Portable Runtime (APR) is to provide a @@ -188,6 +188,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Wed Jul 15 2009 Bojan Smojver 1.3.7-5 +- BR: +libuuid-devel, -e2fsprogs-devel + * Tue Jun 9 2009 Joe Orton 1.3.7-4 - disable DBM-drivers-as-DSO support - backport r783046 from upstream From whot at fedoraproject.org Wed Jul 15 07:12:35 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 15 Jul 2009 07:12:35 +0000 (UTC) Subject: rpms/xorg-x11-drv-keyboard/devel commitid, NONE, 1.1 xorg-x11-drv-keyboard.spec, 1.29, 1.30 keyboard-1.3.2-terminate.patch, 1.1, NONE Message-ID: <20090715071235.27F9011C00DF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5573 Modified Files: xorg-x11-drv-keyboard.spec Added Files: commitid Removed Files: keyboard-1.3.2-terminate.patch Log Message: * Wed Jul 15 2009 Peter Hutterer 1.3.99-1.20090715 - Today's git snapshot. - keyboard-1.3.2-terminate.patch: Drop. --- NEW FILE commitid --- fe8d1f70fc7edce4f030766159aebae8f8a89ffc Index: xorg-x11-drv-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/xorg-x11-drv-keyboard.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-drv-keyboard.spec 8 Apr 2009 12:26:28 -0000 1.29 +++ xorg-x11-drv-keyboard.spec 15 Jul 2009 07:12:04 -0000 1.30 @@ -2,23 +2,21 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/input -%define gitdate 20081222 +%define gitdate 20090715 Summary: Xorg X11 keyboard input driver Name: xorg-x11-drv-keyboard -Version: 1.3.2 -Release: 3%{?dist} +Version: 1.3.99 +Release: 1.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 -#Source0: %{tarball}-%{gitdate}.tar.bz2 +#Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Source0: %{tarball}-%{gitdate}.tar.bz2 Source1: make-git-snapshot.sh - -# special key handling is removed in git, 1.4 won't need this patch -Patch001: keyboard-1.3.2-terminate.patch +Source2: commitid ExcludeArch: s390 s390x @@ -32,10 +30,8 @@ Requires: xkeyboard-config >= 1.2-2 X.Org X11 keyboard input driver. %prep -#%setup -q -n %{tarball}-%{gitdate} -%setup -q -n %{tarball}-%{version} - -%patch001 -p1 -b .terminate +%setup -q -n %{tarball}-%{gitdate} +#%setup -q -n %{tarball}-%{version} %build autoreconf -v --install || exit 1 @@ -62,6 +58,10 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/keyboard.4* %changelog +* Wed Jul 15 2009 Peter Hutterer 1.3.99-1.20090715 +- Today's git snapshot. +- keyboard-1.3.2-terminate.patch: Drop. + * Wed Apr 08 2009 Peter Hutterer - 1.3.2-3 - keyboard-1.3.2-terminate.patch: dont handle C-A-B zapping in the driver. --- keyboard-1.3.2-terminate.patch DELETED --- From whot at fedoraproject.org Wed Jul 15 07:17:05 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 15 Jul 2009 07:17:05 +0000 (UTC) Subject: rpms/xorg-x11-drv-keyboard/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 xorg-x11-drv-keyboard.spec, 1.30, 1.31 Message-ID: <20090715071705.49EE411C00DF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6796 Modified Files: .cvsignore sources xorg-x11-drv-keyboard.spec Log Message: * Wed Jul 15 2009 Peter Hutterer 1.3.99-2.20090715 - Rebuild, this time with the right tarball. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 8 Jan 2009 00:40:05 -0000 1.12 +++ .cvsignore 15 Jul 2009 07:17:04 -0000 1.13 @@ -1 +1 @@ -xf86-input-keyboard-1.3.2.tar.bz2 +xf86-input-keyboard-20090715.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 8 Jan 2009 00:40:05 -0000 1.12 +++ sources 15 Jul 2009 07:17:04 -0000 1.13 @@ -1 +1 @@ -d6fe929c4f6085d6dd67f197ae9c42f6 xf86-input-keyboard-1.3.2.tar.bz2 +1439c95b1031cc65a77313d9b451648c xf86-input-keyboard-20090715.tar.bz2 Index: xorg-x11-drv-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/xorg-x11-drv-keyboard.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xorg-x11-drv-keyboard.spec 15 Jul 2009 07:12:04 -0000 1.30 +++ xorg-x11-drv-keyboard.spec 15 Jul 2009 07:17:04 -0000 1.31 @@ -7,7 +7,7 @@ Summary: Xorg X11 keyboard input driver Name: xorg-x11-drv-keyboard Version: 1.3.99 -Release: 1.%{gitdate}%{?dist} +Release: 2.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/keyboard.4* %changelog +* Wed Jul 15 2009 Peter Hutterer 1.3.99-2.20090715 +- Rebuild, this time with the right tarball. + * Wed Jul 15 2009 Peter Hutterer 1.3.99-1.20090715 - Today's git snapshot. - keyboard-1.3.2-terminate.patch: Drop. From till at fedoraproject.org Wed Jul 15 07:20:07 2009 From: till at fedoraproject.org (Till Maas) Date: Wed, 15 Jul 2009 07:20:07 +0000 (UTC) Subject: rpms/cryptsetup-luks/devel cryptsetup-luks.spec,1.67,1.68 Message-ID: <20090715072007.799F911C00DF@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/cryptsetup-luks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7495 Modified Files: cryptsetup-luks.spec Log Message: * Wed Jul 15 2009 Till Maas - 1.0.7-0.2 - update BR because of libuuid splitout from e2fsprogs Index: cryptsetup-luks.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptsetup-luks/devel/cryptsetup-luks.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- cryptsetup-luks.spec 22 Jun 2009 15:08:17 -0000 1.67 +++ cryptsetup-luks.spec 15 Jul 2009 07:19:37 -0000 1.68 @@ -1,13 +1,13 @@ Summary: A utility for setting up encrypted filesystems Name: cryptsetup-luks Version: 1.0.7 -Release: 0.1%{?dist} +Release: 0.2%{?dist} License: GPLv2 Group: Applications/System URL: http://cryptsetup.googlecode.com/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libgcrypt-devel, popt-devel, device-mapper-devel -BuildRequires: libgpg-error-devel, e2fsprogs-devel, libsepol-devel +BuildRequires: libgpg-error-devel, libuuid-devel, libsepol-devel BuildRequires: libselinux-devel Provides: cryptsetup = %{version}-%{release} Obsoletes: cryptsetup <= 0.1 @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Till Maas - 1.0.7-0.2 +- update BR because of libuuid splitout from e2fsprogs + * Mon Jun 22 2009 Milan Broz - 1.0.7-0.1 - Update to new upstream 1.0.7-rc1. From cchance at fedoraproject.org Wed Jul 15 07:20:25 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 15 Jul 2009 07:20:25 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel .cvsignore, 1.2, 1.3 ibus-table-wubi.spec, 1.8, 1.9 sources, 1.2, 1.3 Message-ID: <20090715072025.9E50011C00DF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7761 Modified Files: .cvsignore ibus-table-wubi.spec sources Log Message: Rebuilt with ibus and ibus-table 1.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Apr 2009 00:12:05 -0000 1.2 +++ .cvsignore 15 Jul 2009 07:20:25 -0000 1.3 @@ -1 +1 @@ -ibus-table-wubi-1.1.0.20090327.tar.gz +ibus-table-wubi-1.2.0.20090715.tar.gz Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ibus-table-wubi.spec 3 Jul 2009 05:50:57 -0000 1.8 +++ ibus-table-wubi.spec 15 Jul 2009 07:20:25 -0000 1.9 @@ -1,6 +1,6 @@ Name: ibus-table-wubi -Version: 1.1.0.20090327 -Release: 9%{?dist} +Version: 1.2.0.20090715 +Release: 1%{?dist} Summary: Wubi input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -47,6 +47,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/wubi86.svg %changelog +* Wed Jul 15 2009 Caius 'kaio' Chance - 1.2.0.20090715-1.fc12 +- Rebuilt with IBus version 1.2. + * Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090316-9.fc12 - Rebuilt. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Apr 2009 00:12:05 -0000 1.2 +++ sources 15 Jul 2009 07:20:25 -0000 1.3 @@ -1 +1 @@ -8aa15f5b6d1b12068b22ff5e9639a277 ibus-table-wubi-1.1.0.20090327.tar.gz +b4440534079227ebb3958576cebce1e7 ibus-table-wubi-1.2.0.20090715.tar.gz From sharkcz at fedoraproject.org Wed Jul 15 07:32:23 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 07:32:23 +0000 (UTC) Subject: rpms/openhpi/devel openhpi.spec,1.74,1.75 Message-ID: <20090715073223.B635611C00DF@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/openhpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10840 Modified Files: openhpi.spec Log Message: * Wed Jul 14 2009 Dan Horak - 2.14.0-3 - add BR: libuuid-devel Index: openhpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/openhpi/devel/openhpi.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- openhpi.spec 17 Apr 2009 09:11:06 -0000 1.74 +++ openhpi.spec 15 Jul 2009 07:31:52 -0000 1.75 @@ -1,7 +1,7 @@ Summary: Hardware Platform Interface library and tools Name: openhpi Version: 2.14.0 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Base URL: http://www.openhpi.org @@ -10,7 +10,7 @@ Patch0: openhpi-2.14.0-initscript.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsysfs-devel, net-snmp-devel, OpenIPMI-devel, glib2-devel BuildRequires: libtool-ltdl-devel, openssl-devel, ncurses-devel -BuildRequires: libxml2-devel, docbook-utils +BuildRequires: libxml2-devel, docbook-utils, libuuid-devel Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service @@ -140,6 +140,9 @@ fi %changelog +* Wed Jul 14 2009 Dan Horak - 2.14.0-3 +- add BR: libuuid-devel + * Fri Apr 17 2009 Dan Horak - 2.14.0-2 - use upstream default config - libtoolize/autoreconf is not needed From pbrobinson at fedoraproject.org Wed Jul 15 07:42:31 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 15 Jul 2009 07:42:31 +0000 (UTC) Subject: rpms/moblin-gtk-engine/devel import.log, NONE, 1.1 moblin-gtk-engine.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715074231.E2FF211C00DF@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/moblin-gtk-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5782/devel Modified Files: .cvsignore sources Added Files: import.log moblin-gtk-engine.spec Log Message: - Initial import --- NEW FILE import.log --- moblin-gtk-engine-0_3_0-1_fc11:HEAD:moblin-gtk-engine-0.3.0-1.fc11.src.rpm:1247641918 --- NEW FILE moblin-gtk-engine.spec --- Name: moblin-gtk-engine Version: 0.3.0 Release: 1%{?dist} Summary: GTK engine for Moblin Group: User Interface/Desktops License: LGPLv2 URL: http://www.moblin.org/ Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel # Require these because the git tarball doesn't have the configure built BuildRequires: libtool BuildRequires: automake BuildRequires: autoconf BuildRequires: intltool BuildRequires: gettext Requires: gnome-settings-daemon %description GTK engine for Moblin %prep %setup -q %build ./autogen.sh %configure --disable-static make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. rm -rf %{buildroot}/%{_libdir}/*.la rm -rf %{buildroot}/%{_libdir}/gtk-2.0/2.10.0/engines/*.la # Convert to utf-8 for file in README COPYING.LIB AUTHORS NEWS; do iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \ touch -r $file $file.new && \ mv $file.new $file done %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc README COPYING.LIB AUTHORS NEWS %{_libdir}/gtk-2.0/2.10.0/engines/libmoblin-netbook-engine.so %dir %{_datadir}/themes/Moblin-Netbook/ %{_datadir}/themes/Moblin-Netbook/index.theme %{_datadir}/themes/Moblin-Netbook/gtk-2.0 %{_datadir}/themes/Moblin-Netbook/metacity-1 %changelog * Wed Jun 24 2009 Peter Robinson 0.3.0-1 - Update to latest release. Updates from review request * Wed Jun 24 2009 Peter Robinson 0.2.4-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:32:09 -0000 1.1 +++ .cvsignore 15 Jul 2009 07:42:31 -0000 1.2 @@ -0,0 +1 @@ +moblin-gtk-engine-0.3.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:32:09 -0000 1.1 +++ sources 15 Jul 2009 07:42:31 -0000 1.2 @@ -0,0 +1 @@ +1245e89e35def7a162935981fb4fa598 moblin-gtk-engine-0.3.0.tar.bz2 From bojan at fedoraproject.org Wed Jul 15 07:55:08 2009 From: bojan at fedoraproject.org (bojan) Date: Wed, 15 Jul 2009 07:55:08 +0000 (UTC) Subject: rpms/apr/devel apr-1.3.6.tar.bz2.asc, NONE, 1.1 .cvsignore, 1.15, 1.16 apr.spec, 1.85, 1.86 sources, 1.15, 1.16 apr-1.3.5.tar.bz2.asc, 1.1, NONE Message-ID: <20090715075508.75D8511C00DF@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15723 Modified Files: .cvsignore apr.spec sources Added Files: apr-1.3.6.tar.bz2.asc Removed Files: apr-1.3.5.tar.bz2.asc Log Message: Bump up to 1.3.6. --- NEW FILE apr-1.3.6.tar.bz2.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iQIcBAABAgAGBQJKVUvNAAoJEKNIuYR/chSnUqcP+wRTW7yz1TgBXubR0z+j1g/v s5jc0EVRSHjvfPFP6nEJLUkL+ur1P0sJtCdUm9IDeYdZ44pSi1elHCaKxBTU9WtM bk3t6T4Vi1fozykEQmOMJsEdLmqRV1I+HrMWQt+dRDGX6mMO0DVNF0sb2qam3//z SNlkN4I5QN2pvDXqKCDTAgwOTX8REatlrBMgc+0jZc5pln8QswEAGKJoBU60mJTW BQBGr4db3KUzgJKJoBEXZqBiGEBmTOBffV9BXd1dEvis0cWP5VfYu4xFQq4W+Mrs qAZYujRI/gf8W2Z3kOBfoSqBZClTVRkdeH5jLBP/yhvDYV1N83LY6S4itcVuawOt ouLCJuzTuPwBCVN4Vncj/YkLz5S7KxgmqwysRb+BsLq+S8WvkmZrfqGyVPonCini cmdH605vIHpmGppEKbgtwYhHvQIPUI2PjoQ6dq2p9F7DjHOz8KHuZ9rIeP96jRnT 5Ie4mJOJn9fx0O6ifYjted1cut5y8Wm/pqyjhek+b6fB4kdIQ4AGS5Qr+wwa5Im7 lmDgJeDkyrocHdfcLeYDZeeLN9FDGiItHzBkpvwcxtCoPOG087l2clZQKLzk7HG1 0Kl7OJlCCxpJlndw+4njCj1Plif4qRwp0OYKocwWaUoHxlr8M0ebyKFaryIkFyGV 3BO3bNiOvCT9mexKZKNb =Lvuy -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 8 Jun 2009 01:34:32 -0000 1.15 +++ .cvsignore 15 Jul 2009 07:54:36 -0000 1.16 @@ -1 +1 @@ -apr-1.3.5.tar.bz2 +apr-1.3.6.tar.bz2 Index: apr.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/apr.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- apr.spec 30 Jun 2009 09:42:05 -0000 1.85 +++ apr.spec 15 Jul 2009 07:54:36 -0000 1.86 @@ -5,8 +5,8 @@ Summary: Apache Portable Runtime library Name: apr -Version: 1.3.5 -Release: 5%{?dist} +Version: 1.3.6 +Release: 1%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Wed Jul 15 2009 Bojan Smojver - 1.3.6-1 +- bump up to 1.3.6 + * Tue Jun 30 2009 Joe Orton 1.3.5-5 - BR libuuid-devel instead of e2fsprogs-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 8 Jun 2009 01:34:32 -0000 1.15 +++ sources 15 Jul 2009 07:54:36 -0000 1.16 @@ -1 +1 @@ -9ac9a00eaa190937fdbbde7b4f03ac1e apr-1.3.5.tar.bz2 +1893d54f8ef3981c33ad2ad5fdee1f8a apr-1.3.6.tar.bz2 --- apr-1.3.5.tar.bz2.asc DELETED --- From bojan at fedoraproject.org Wed Jul 15 07:57:47 2009 From: bojan at fedoraproject.org (bojan) Date: Wed, 15 Jul 2009 07:57:47 +0000 (UTC) Subject: rpms/apr-util/devel apr-util-1.3.8.tar.bz2.asc, NONE, 1.1 .cvsignore, 1.12, 1.13 apr-util.spec, 1.67, 1.68 sources, 1.14, 1.15 apr-util-1.3.7.tar.bz2.asc, 1.1, NONE Message-ID: <20090715075747.761DB11C00DF@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17221 Modified Files: .cvsignore apr-util.spec sources Added Files: apr-util-1.3.8.tar.bz2.asc Removed Files: apr-util-1.3.7.tar.bz2.asc Log Message: Bump up to 1.3.8. --- NEW FILE apr-util-1.3.8.tar.bz2.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iQIcBAABAgAGBQJKVUuEAAoJEKNIuYR/chSnIZ0P/AjTez6s6wHsR4HN30xDmWHs b6T/RedxtAHm5PIPeQEYsb+R+s3QrAh5vUXElGZd/olivaNv6RMNNxn3ewJn6N/f SpGqRgzTXGDPcQRW/6g2dG9/o/nGf/bBMlOs9hfg7TEwsrR5QbTurG0DF09oLH6z 8+5k+NZB7uzWAN8UiWpMg+Tjwh7QCOFeu0f3WtTT/z+n4VFta8YZDGsN2iUOKyCw WwcyhW/mFMXWkTwuZvA2Rair9OKyf/2a6WRsMCHm+BCFrGaPqkVC+0aeb/F4QaaH epuENbTMjugvfdohCWnYgaj0OkQAHKMNkmJsTrqUa13WP79URaF1TBSuuklDu8TN FZvAcqK9lNoftgEKhpmwE/oVSpqtZoJIAOKjAN2wg3mMHYoPPZf3Xd9a6baG+JuL 5hZ2etPVDR5bX5SJkX1EhK5s3kngUkr27kbdbrzMd2EmGg7sO4SUd4Q3jwrPTRmi /w61BV+IGi55dgaMp7RLF6jywmVrS/A9NevFvajX1m8IvxWvmzbhmFRJCPIYFZ2u 9A8oFrgrDyTje8daDCdWZ+2GU/KPByLdneznWSCytJeWF6Nq7AlXf34riHEdg7LN IshTQx3Y8dXFOKo0dIvvBuzjPQPM3vM3R0XCJUJi46UoNdzmTM2ustcGSHqCgk3j veMY5Y0SI1ZLwY3YIDe8 =NZxG -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 8 Jun 2009 05:25:56 -0000 1.12 +++ .cvsignore 15 Jul 2009 07:57:16 -0000 1.13 @@ -1 +1 @@ -apr-util-1.3.7.tar.bz2 +apr-util-1.3.8.tar.bz2 Index: apr-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/apr-util.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- apr-util.spec 15 Jul 2009 07:09:35 -0000 1.67 +++ apr-util.spec 15 Jul 2009 07:57:17 -0000 1.68 @@ -3,8 +3,8 @@ Summary: Apache Portable Runtime Utility library Name: apr-util -Version: 1.3.7 -Release: 5%{?dist} +Version: 1.3.8 +Release: 1%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -188,6 +188,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Wed Jul 15 2009 Bojan Smojver 1.3.8-1 +- bump up to 1.3.8 + * Wed Jul 15 2009 Bojan Smojver 1.3.7-5 - BR: +libuuid-devel, -e2fsprogs-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 8 Jun 2009 05:25:56 -0000 1.14 +++ sources 15 Jul 2009 07:57:17 -0000 1.15 @@ -1 +1 @@ -2ed3ae6734290296faa193e1177d50e6 apr-util-1.3.7.tar.bz2 +34a0e815cdc2b79bf561468b84ff1aa3 apr-util-1.3.8.tar.bz2 --- apr-util-1.3.7.tar.bz2.asc DELETED --- From giesen at fedoraproject.org Wed Jul 15 07:58:43 2009 From: giesen at fedoraproject.org (giesen) Date: Wed, 15 Jul 2009 07:58:43 +0000 (UTC) Subject: rpms/sipcalc/devel import.log, NONE, 1.1 sipcalc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715075843.4604E11C00DF@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/sipcalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17463/devel Modified Files: .cvsignore sources Added Files: import.log sipcalc.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- sipcalc-1_1_4-3_fc11:HEAD:sipcalc-1.1.4-3.fc11.src.rpm:1247644717 --- NEW FILE sipcalc.spec --- Name: sipcalc Version: 1.1.4 Release: 3%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet License: BSD URL: http://www.routemeister.net/projects/sipcalc Source0: http://www.routemeister.net/projects/%{name}/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Sipcalc is an "advanced" console based ip subnet calculator. %prep %setup0 -q # convert ChangeLog to UTF-8 iconv -f ISO-8859-1 -t UTF-8 ChangeLog > ChangeLog.utf8 && \ touch -r ChangeLog ChangeLog.utf8 && \ mv -f ChangeLog{.utf8,} %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO %doc doc/sipcalc.txt %{_bindir}/sipcalc %{_mandir}/man1/sipcalc.1.* %changelog * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 * Tue Jul 07 2009 Gary T. Giesen 1.1.4-2 - Spec file cleanup. * Mon Jul 06 2009 Gary T. Giesen 1.1.4-1 - Initial spec file creation for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:15 -0000 1.1 +++ .cvsignore 15 Jul 2009 07:58:41 -0000 1.2 @@ -0,0 +1 @@ +sipcalc-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:15 -0000 1.1 +++ sources 15 Jul 2009 07:58:42 -0000 1.2 @@ -0,0 +1 @@ +13b64d56ef669fc519df410609c5ff38 sipcalc-1.1.4.tar.gz From giesen at fedoraproject.org Wed Jul 15 08:08:23 2009 From: giesen at fedoraproject.org (giesen) Date: Wed, 15 Jul 2009 08:08:23 +0000 (UTC) Subject: rpms/sipcalc/F-11 import.log, NONE, 1.1 sipcalc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715080823.6FBB811C00DF@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/sipcalc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19585/F-11 Modified Files: .cvsignore sources Added Files: import.log sipcalc.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- sipcalc-1_1_4-3_fc11:F-11:sipcalc-1.1.4-3.fc11.src.rpm:1247645328 --- NEW FILE sipcalc.spec --- Name: sipcalc Version: 1.1.4 Release: 3%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet License: BSD URL: http://www.routemeister.net/projects/sipcalc Source0: http://www.routemeister.net/projects/%{name}/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Sipcalc is an "advanced" console based ip subnet calculator. %prep %setup0 -q # convert ChangeLog to UTF-8 iconv -f ISO-8859-1 -t UTF-8 ChangeLog > ChangeLog.utf8 && \ touch -r ChangeLog ChangeLog.utf8 && \ mv -f ChangeLog{.utf8,} %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO %doc doc/sipcalc.txt %{_bindir}/sipcalc %{_mandir}/man1/sipcalc.1.* %changelog * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 * Tue Jul 07 2009 Gary T. Giesen 1.1.4-2 - Spec file cleanup. * Mon Jul 06 2009 Gary T. Giesen 1.1.4-1 - Initial spec file creation for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:15 -0000 1.1 +++ .cvsignore 15 Jul 2009 08:07:52 -0000 1.2 @@ -0,0 +1 @@ +sipcalc-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:15 -0000 1.1 +++ sources 15 Jul 2009 08:07:53 -0000 1.2 @@ -0,0 +1 @@ +13b64d56ef669fc519df410609c5ff38 sipcalc-1.1.4.tar.gz From giesen at fedoraproject.org Wed Jul 15 08:10:29 2009 From: giesen at fedoraproject.org (giesen) Date: Wed, 15 Jul 2009 08:10:29 +0000 (UTC) Subject: rpms/sipcalc/F-10 import.log, NONE, 1.1 sipcalc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715081029.45F0911C00DF@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/sipcalc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20213/F-10 Modified Files: .cvsignore sources Added Files: import.log sipcalc.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- sipcalc-1_1_4-3_fc11:F-10:sipcalc-1.1.4-3.fc11.src.rpm:1247645460 --- NEW FILE sipcalc.spec --- Name: sipcalc Version: 1.1.4 Release: 3%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet License: BSD URL: http://www.routemeister.net/projects/sipcalc Source0: http://www.routemeister.net/projects/%{name}/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Sipcalc is an "advanced" console based ip subnet calculator. %prep %setup0 -q # convert ChangeLog to UTF-8 iconv -f ISO-8859-1 -t UTF-8 ChangeLog > ChangeLog.utf8 && \ touch -r ChangeLog ChangeLog.utf8 && \ mv -f ChangeLog{.utf8,} %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO %doc doc/sipcalc.txt %{_bindir}/sipcalc %{_mandir}/man1/sipcalc.1.* %changelog * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 * Tue Jul 07 2009 Gary T. Giesen 1.1.4-2 - Spec file cleanup. * Mon Jul 06 2009 Gary T. Giesen 1.1.4-1 - Initial spec file creation for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:15 -0000 1.1 +++ .cvsignore 15 Jul 2009 08:09:58 -0000 1.2 @@ -0,0 +1 @@ +sipcalc-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:15 -0000 1.1 +++ sources 15 Jul 2009 08:09:58 -0000 1.2 @@ -0,0 +1 @@ +13b64d56ef669fc519df410609c5ff38 sipcalc-1.1.4.tar.gz From twaugh at fedoraproject.org Wed Jul 15 08:12:51 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 08:12:51 +0000 (UTC) Subject: rpms/gutenprint/devel gutenprint.spec,1.47,1.48 Message-ID: <20090715081251.C140811C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20903 Modified Files: gutenprint.spec Log Message: * Wed Jul 15 2009 Tim Waugh 5.2.3-6 - Don't build CUPS PPDs (instead build a CUPS driver that can generate them). Fixes build (bug #511538). Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gutenprint.spec 25 Feb 2009 03:00:52 -0000 1.47 +++ gutenprint.spec 15 Jul 2009 08:12:51 -0000 1.48 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -140,7 +140,7 @@ export CFLAGS="${CFLAGS} -O0" --with-user-guide --with-samples \ --with-escputil --with-test --disable-rpath \ --enable-cups-1_2-enhancements \ - --enable-simplified-cups-ppds + --disable-cups-ppds make %{?_smp_mflags} @@ -254,6 +254,10 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Wed Jul 15 2009 Tim Waugh 5.2.3-6 +- Don't build CUPS PPDs (instead build a CUPS driver that can + generate them). Fixes build (bug #511538). + * Tue Feb 24 2009 Fedora Release Engineering - 5.2.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From verdurin at fedoraproject.org Wed Jul 15 08:15:25 2009 From: verdurin at fedoraproject.org (verdurin) Date: Wed, 15 Jul 2009 08:15:25 +0000 (UTC) Subject: rpms/gnomint/devel gnomint-1.0.0-cflags.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 gnomint.spec, 1.7, 1.8 sources, 1.4, 1.5 gnomint-0.9.1-cflags.patch, 1.3, NONE Message-ID: <20090715081525.0B73911C00DF@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21596 Modified Files: .cvsignore gnomint.spec sources Added Files: gnomint-1.0.0-cflags.patch Removed Files: gnomint-0.9.1-cflags.patch Log Message: Updated CFLAGS patch gnomint-1.0.0-cflags.patch: --- NEW FILE gnomint-1.0.0-cflags.patch --- --- gnomint-1.0.0/configure~ 2009-06-03 22:21:54.000000000 +0100 +++ gnomint-1.0.0/configure 2009-07-15 09:08:18.000000000 +0100 @@ -17446,12 +17446,6 @@ -if test "x$GCC" = "xyes"; then - CFLAGS="-Wall -Werror" - if test "x$use_debug" = "xYes"; then - CFLAGS="$CFLAGS -g -O0" - fi -fi Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Jan 2009 21:23:38 -0000 1.4 +++ .cvsignore 15 Jul 2009 08:15:24 -0000 1.5 @@ -1 +1 @@ -gnomint-0.9.1.tar.gz +gnomint-1.0.0.tar.gz Index: gnomint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/devel/gnomint.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnomint.spec 28 Apr 2009 22:45:06 -0000 1.7 +++ gnomint.spec 15 Jul 2009 08:15:24 -0000 1.8 @@ -1,6 +1,6 @@ Name: gnomint -Version: 0.9.1 -Release: 5%{?dist} +Version: 1.0.0 +Release: 1%{?dist} Summary: Graphical x509 Certification Authority management tool Group: Applications/System @@ -94,6 +94,12 @@ update-desktop-database %{_datadir}/appl %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Wed Jul 15 2009 Adam Huffman - 1.0.0-1 +- new stable upstream release +- added forgotten crlgen function to gnomint-cli text-based interface +- fix compilation with GnuTLS 2.8.0 +- new translations and translation updates + * Tue Apr 28 2009 Adam Huffman - 0.9.1-5 - workaround patch tag problem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Jan 2009 21:23:38 -0000 1.4 +++ sources 15 Jul 2009 08:15:24 -0000 1.5 @@ -1 +1 @@ -a8dd7536131c29a7c4d75f255d7e6b52 gnomint-0.9.1.tar.gz +20de7af89f71ebd6c45b41aeab59207c gnomint-1.0.0.tar.gz --- gnomint-0.9.1-cflags.patch DELETED --- From giesen at fedoraproject.org Wed Jul 15 08:15:22 2009 From: giesen at fedoraproject.org (giesen) Date: Wed, 15 Jul 2009 08:15:22 +0000 (UTC) Subject: rpms/sipcalc/EL-5 import.log, NONE, 1.1 sipcalc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715081522.2808E11C00DF@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/sipcalc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21497/EL-5 Modified Files: .cvsignore sources Added Files: import.log sipcalc.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- sipcalc-1_1_4-3_fc11:EL-5:sipcalc-1.1.4-3.fc11.src.rpm:1247645768 --- NEW FILE sipcalc.spec --- Name: sipcalc Version: 1.1.4 Release: 3%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet License: BSD URL: http://www.routemeister.net/projects/sipcalc Source0: http://www.routemeister.net/projects/%{name}/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Sipcalc is an "advanced" console based ip subnet calculator. %prep %setup0 -q # convert ChangeLog to UTF-8 iconv -f ISO-8859-1 -t UTF-8 ChangeLog > ChangeLog.utf8 && \ touch -r ChangeLog ChangeLog.utf8 && \ mv -f ChangeLog{.utf8,} %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO %doc doc/sipcalc.txt %{_bindir}/sipcalc %{_mandir}/man1/sipcalc.1.* %changelog * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 * Tue Jul 07 2009 Gary T. Giesen 1.1.4-2 - Spec file cleanup. * Mon Jul 06 2009 Gary T. Giesen 1.1.4-1 - Initial spec file creation for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:15 -0000 1.1 +++ .cvsignore 15 Jul 2009 08:14:51 -0000 1.2 @@ -0,0 +1 @@ +sipcalc-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:15 -0000 1.1 +++ sources 15 Jul 2009 08:14:51 -0000 1.2 @@ -0,0 +1 @@ +13b64d56ef669fc519df410609c5ff38 sipcalc-1.1.4.tar.gz From giesen at fedoraproject.org Wed Jul 15 08:16:46 2009 From: giesen at fedoraproject.org (giesen) Date: Wed, 15 Jul 2009 08:16:46 +0000 (UTC) Subject: rpms/sipcalc/EL-4 import.log, NONE, 1.1 sipcalc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715081646.59CA711C00DF@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/sipcalc/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22006/EL-4 Modified Files: .cvsignore sources Added Files: import.log sipcalc.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- sipcalc-1_1_4-3_fc11:EL-4:sipcalc-1.1.4-3.fc11.src.rpm:1247645855 --- NEW FILE sipcalc.spec --- Name: sipcalc Version: 1.1.4 Release: 3%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet License: BSD URL: http://www.routemeister.net/projects/sipcalc Source0: http://www.routemeister.net/projects/%{name}/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Sipcalc is an "advanced" console based ip subnet calculator. %prep %setup0 -q # convert ChangeLog to UTF-8 iconv -f ISO-8859-1 -t UTF-8 ChangeLog > ChangeLog.utf8 && \ touch -r ChangeLog ChangeLog.utf8 && \ mv -f ChangeLog{.utf8,} %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO %doc doc/sipcalc.txt %{_bindir}/sipcalc %{_mandir}/man1/sipcalc.1.* %changelog * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 * Tue Jul 07 2009 Gary T. Giesen 1.1.4-2 - Spec file cleanup. * Mon Jul 06 2009 Gary T. Giesen 1.1.4-1 - Initial spec file creation for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:33:15 -0000 1.1 +++ .cvsignore 15 Jul 2009 08:16:16 -0000 1.2 @@ -0,0 +1 @@ +sipcalc-1.1.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:33:15 -0000 1.1 +++ sources 15 Jul 2009 08:16:16 -0000 1.2 @@ -0,0 +1 @@ +13b64d56ef669fc519df410609c5ff38 sipcalc-1.1.4.tar.gz From rjones at fedoraproject.org Wed Jul 15 08:19:33 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:19:33 +0000 (UTC) Subject: rpms/ocaml-libvirt/devel ocaml-libvirt.spec,1.31,1.32 Message-ID: <20090715081933.5B41311C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22733 Modified Files: ocaml-libvirt.spec Log Message: Force rebuild. Index: ocaml-libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-libvirt/devel/ocaml-libvirt.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- ocaml-libvirt.spec 12 Jun 2009 10:22:38 -0000 1.31 +++ ocaml-libvirt.spec 15 Jul 2009 08:19:03 -0000 1.32 @@ -6,7 +6,7 @@ Name: ocaml-libvirt Version: 0.6.1.0 -Release: 3%{?dist} +Release: 5%{?dist} Summary: OCaml binding for libvirt Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 0.6.1.0-5 +- Force rebuild to test FTBFS issue. + * Fri Jun 12 2009 Richard W.M. Jones - 0.6.1.0-3 - Force rebuild to test FTBFS issue. From bojan at fedoraproject.org Wed Jul 15 08:19:51 2009 From: bojan at fedoraproject.org (bojan) Date: Wed, 15 Jul 2009 08:19:51 +0000 (UTC) Subject: rpms/apr-util/devel apr-util-1.3.7-nodbmdso.patch, 1.1, 1.2 apr-util.spec, 1.68, 1.69 Message-ID: <20090715081951.159B911C00DF@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22981 Modified Files: apr-util-1.3.7-nodbmdso.patch apr-util.spec Log Message: Adjust a patch. apr-util-1.3.7-nodbmdso.patch: Index: apr-util-1.3.7-nodbmdso.patch =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/apr-util-1.3.7-nodbmdso.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- apr-util-1.3.7-nodbmdso.patch 9 Jun 2009 16:01:21 -0000 1.1 +++ apr-util-1.3.7-nodbmdso.patch 15 Jul 2009 08:19:50 -0000 1.2 @@ -1,26 +1,7 @@ --- apr-util-1.3.7/build/dso.m4.nodbmdso +++ apr-util-1.3.7/build/dso.m4 -@@ -27,10 +27,33 @@ AC_DEFUN([APU_CHECK_UTIL_DSO], [ - if test "$enable_util_dso" = "no"; then - apu_dso_build="0" - else -- apr_h="`$apr_config --includedir`/apr.h" -- apu_dso_build="`awk '/^#define APR_HAS_DSO/ { print @S|@3; }' $apr_h`" -+ AC_CACHE_CHECK([whether APR has DSO support], [apu_cv_aprdso], -+ [apu_save_CPPFLAGS=$CPPFLAGS -+ CPPFLAGS="$CPPFLAGS $APR_INCLUDES" -+ AC_EGREP_CPP([yes], [#include "apr.h" -+#if APR_HAS_DSO -+yes -+#endif -+], [apu_cv_aprdso=yes], [apu_cv_aprdso=no]) -+ CPPFLAGS=$apu_save_CPPFLAGS]) -+ -+ if test $apu_cv_aprdso = yes; then -+ apu_dso_build=1 -+ else -+ apu_dso_build=0 -+ fi +@@ -44,6 +44,16 @@ AC_DEFUN([APU_CHECK_UTIL_DSO], [ + fi fi + Index: apr-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/apr-util.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- apr-util.spec 15 Jul 2009 07:57:17 -0000 1.68 +++ apr-util.spec 15 Jul 2009 08:19:50 -0000 1.69 @@ -4,7 +4,7 @@ Summary: Apache Portable Runtime Utility library Name: apr-util Version: 1.3.8 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -188,6 +188,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Wed Jul 15 2009 Bojan Smojver 1.3.8-2 +- adjust apr-util-1.3.7-nodbmdso.patch + * Wed Jul 15 2009 Bojan Smojver 1.3.8-1 - bump up to 1.3.8 From verdurin at fedoraproject.org Wed Jul 15 08:20:48 2009 From: verdurin at fedoraproject.org (verdurin) Date: Wed, 15 Jul 2009 08:20:48 +0000 (UTC) Subject: rpms/gnomint/F-11 .cvsignore, 1.4, 1.5 gnomint.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090715082048.3F42411C00DF@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23038 Modified Files: .cvsignore gnomint.spec sources Log Message: Updated spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Jan 2009 21:23:38 -0000 1.4 +++ .cvsignore 15 Jul 2009 08:20:17 -0000 1.5 @@ -1 +1 @@ -gnomint-0.9.1.tar.gz +gnomint-1.0.0-cflags.patch Index: gnomint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/gnomint.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gnomint.spec 26 Apr 2009 20:50:42 -0000 1.6 +++ gnomint.spec 15 Jul 2009 08:20:17 -0000 1.7 @@ -1,6 +1,6 @@ Name: gnomint -Version: 0.9.1 -Release: 4%{?dist} +Version: 1.0.0 +Release: 1%{?dist} Summary: Graphical x509 Certification Authority management tool Group: Applications/System @@ -94,6 +94,15 @@ update-desktop-database %{_datadir}/appl %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Wed Jul 15 2009 Adam Huffman - 1.0.0-1 +- new stable upstream release +- added forgotten crlgen function to gnomint-cli text-based interface +- fix compilation with GnuTLS 2.8.0 +- new translations and translation updates + +* Tue Apr 28 2009 Adam Huffman - 0.9.1-5 +- workaround patch tag problem + * Sun Apr 26 2009 Adam Huffman - 0.9.1-4 - really fix 496518 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Jan 2009 21:23:38 -0000 1.4 +++ sources 15 Jul 2009 08:20:17 -0000 1.5 @@ -1 +1 @@ -a8dd7536131c29a7c4d75f255d7e6b52 gnomint-0.9.1.tar.gz +499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch From verdurin at fedoraproject.org Wed Jul 15 08:21:58 2009 From: verdurin at fedoraproject.org (verdurin) Date: Wed, 15 Jul 2009 08:21:58 +0000 (UTC) Subject: rpms/gnomint/F-11 gnomint-0.9.1-cflags.patch,1.1,NONE Message-ID: <20090715082158.38D4811C00DF@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23514 Removed Files: gnomint-0.9.1-cflags.patch Log Message: remove old patch --- gnomint-0.9.1-cflags.patch DELETED --- From jussilehtola at fedoraproject.org Wed Jul 15 08:26:43 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Wed, 15 Jul 2009 08:26:43 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui.spec,1.2,1.3 Message-ID: <20090715082643.A901511C00DF@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24359/devel Modified Files: xine-ui.spec Log Message: Fix rawhide build. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xine-ui.spec 18 May 2009 18:14:04 -0000 1.2 +++ xine-ui.spec 15 Jul 2009 08:26:13 -0000 1.3 @@ -3,7 +3,7 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ @@ -32,6 +32,7 @@ BuildRequires: libXxf86vm-devel BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 +BuildRequires: xorg-x11-proto-devel Conflicts: xine-skins <= 1.0 # For dir ownership @@ -145,6 +146,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Wed Jul 15 2009 Jussi Lehtola - 0.99.6-12 +- Added BR: xorg-x11-proto-devel. + * Sun May 17 2009 Jussi Lehtola - 0.99.6-11 - Added missing icon cache update to %%post section. From rjones at fedoraproject.org Wed Jul 15 08:29:10 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:29:10 +0000 (UTC) Subject: rpms/ocaml-pa-do/devel ocaml-pa-do.spec,1.6,1.7 Message-ID: <20090715082910.2A8EF11C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-pa-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25593 Modified Files: ocaml-pa-do.spec Log Message: Force rebuild to test FTBFS issue (RHBZ#511603). Index: ocaml-pa-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-do/devel/ocaml-pa-do.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-pa-do.spec 23 May 2009 11:22:08 -0000 1.6 +++ ocaml-pa-do.spec 15 Jul 2009 08:28:39 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocaml-pa-do Version: 0.8.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml syntax extension for delimited overloading Group: Development/Libraries @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-3 +- Force rebuild to test FTBFS issue (RHBZ#511603). + * Sat May 23 2009 Richard W.M. Jones - 0.8.9-2 - New upstream version 0.8.9. - Rebuild for OCaml 3.11.1. From tmraz at fedoraproject.org Wed Jul 15 08:37:07 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Wed, 15 Jul 2009 08:37:07 +0000 (UTC) Subject: rpms/ipsec-tools/devel ipsec-tools.spec,1.64,1.65 Message-ID: <20090715083707.7E85E11C00DF@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/ipsec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27594 Modified Files: ipsec-tools.spec Log Message: * Wed Jul 15 2009 Tomas Mraz - 0.7.2-2 - fix FTBFS (#511556) - fix some memory leaks and compilation warnings found by review Index: ipsec-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipsec-tools/devel/ipsec-tools.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- ipsec-tools.spec 23 Apr 2009 13:30:13 -0000 1.64 +++ ipsec-tools.spec 15 Jul 2009 08:36:37 -0000 1.65 @@ -1,6 +1,6 @@ Name: ipsec-tools Version: 0.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for configuring and using IPSEC License: BSD Group: System Environment/Base @@ -19,6 +19,9 @@ Patch9: ipsec-tools-0.7-splitcidr.patch Patch10: ipsec-tools-0.7.2-natt-linux.patch Patch11: ipsec-tools-0.7.1-pie.patch Patch13: ipsec-tools-0.7.1-dpd-fixes.patch +Patch14: ipsec-tools-0.7.2-moreleaks.patch +Patch15: ipsec-tools-0.7.2-review.patch +Patch16: ipsec-tools-0.7.2-nodevel.patch BuildRequires: openssl-devel, krb5-devel, bison, flex, automake, libtool BuildRequires: libselinux-devel >= 1.30.28-2 @@ -44,6 +47,9 @@ package builds: %patch10 -p1 -b .natt-linux %patch11 -p1 -b .pie %patch13 -p1 -b .dpd-fixes +%patch14 -p1 -b .moreleaks +%patch15 -p1 -b .review +%patch16 -p1 -b .nodevel ./bootstrap @@ -71,11 +77,6 @@ rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/sbin mkdir -p $RPM_BUILD_ROOT/etc/racoon make install DESTDIR=$RPM_BUILD_ROOT -# no devel stuff for now -rm -rf $RPM_BUILD_ROOT/%{_libdir}/libipsec.{a,la} \ - $RPM_BUILD_ROOT/%{_libdir}/libracoon.{a,la} \ - $RPM_BUILD_ROOT/%{_includedir} \ - $RPM_BUILD_ROOT/%{_mandir}/man3 install -m 600 %{SOURCE1} \ $RPM_BUILD_ROOT/etc/racoon/racoon.conf @@ -122,6 +123,10 @@ fi %config(noreplace) /etc/racoon/racoon.conf %changelog +* Wed Jul 15 2009 Tomas Mraz - 0.7.2-2 +- fix FTBFS (#511556) +- fix some memory leaks and compilation warnings found by review + * Thu Apr 23 2009 Tomas Mraz - 0.7.2-1 - Update to a new upstream version From jkratoch at fedoraproject.org Wed Jul 15 08:40:20 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Wed, 15 Jul 2009 08:40:20 +0000 (UTC) Subject: rpms/libunwind/devel libunwind-disable-setjmp.patch, NONE, 1.1 libunwind.spec, 1.30, 1.31 Message-ID: <20090715084020.4F12311C00DF@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/libunwind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28345 Modified Files: libunwind.spec Added Files: libunwind-disable-setjmp.patch Log Message: * Wed Jul 15 2009 Jan Kratochvil - 0.99-0.11.20090430betagit4b8404d1 - Disable the libunwind-setjmp library as no longer compatible with glibc and no Fedora dependencies on it (FTBSFS BZ 511562). libunwind-disable-setjmp.patch: --- NEW FILE libunwind-disable-setjmp.patch --- At least x86_64 version cannot work, src/setjmp/setjmp.c and src/setjmp/sigsetjmp.c are not even compiled, src/x86_64/longjmp.S does not match src/setjmp/setjmp.c + include/tdep-x86_64/jmpbuf.h . google-perftools link only with libunwind.so.7 . --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,7 +12,7 @@ lib_LTLIBRARIES_cdep_setjmp = else LIBRARIES_cdep = libunwind-ptrace.a lib_LTLIBRARIES_cdep = libunwind.la -lib_LTLIBRARIES_cdep_setjmp = libunwind-setjmp.la +lib_LTLIBRARIES_cdep_setjmp = #libunwind-setjmp.la endif ### libunwind-ptrace: @@ -27,21 +27,21 @@ libunwind_ptrace_a_SOURCES = \ ptrace/_UPT_reg_offset.c ptrace/_UPT_resume.c ### libunwind-setjmp: -libunwind_setjmp_la_LDFLAGS = $(COMMON_SO_LDFLAGS) \ - -version-info $(SETJMP_SO_VERSION) -libunwind_setjmp_la_LIBADD = libunwind-$(arch).la -lc -libunwind_setjmp_la_SOURCES_common = setjmp/setjmp_i.h \ - setjmp/longjmp.c \ - setjmp/siglongjmp.c -libunwind_setjmp_la_SOURCES_arm = arm/siglongjmp.S -libunwind_setjmp_la_SOURCES_ia64 = ia64/setjmp.S ia64/sigsetjmp.S \ - ia64/longjmp.S ia64/siglongjmp.S -libunwind_setjmp_la_SOURCES_hppa = hppa/siglongjmp.S -libunwind_setjmp_la_SOURCES_mips = mips/siglongjmp.S -libunwind_setjmp_la_SOURCES_x86 = x86/longjmp.S x86/siglongjmp.S -libunwind_setjmp_la_SOURCES_x86_64 = x86_64/longjmp.S x86_64/siglongjmp.S -libunwind_setjmp_la_SOURCES_ppc64 = ppc/longjmp.S ppc/siglongjmp.S -libunwind_setjmp_la_SOURCES_ppc32 = ppc/longjmp.S ppc/siglongjmp.S +#libunwind_setjmp_la_LDFLAGS = $(COMMON_SO_LDFLAGS) \ +# -version-info $(SETJMP_SO_VERSION) +#libunwind_setjmp_la_LIBADD = libunwind-$(arch).la -lc +#libunwind_setjmp_la_SOURCES_common = setjmp/setjmp_i.h \ +# setjmp/longjmp.c \ +# setjmp/siglongjmp.c +#libunwind_setjmp_la_SOURCES_arm = arm/siglongjmp.S +#libunwind_setjmp_la_SOURCES_ia64 = ia64/setjmp.S ia64/sigsetjmp.S \ +# ia64/longjmp.S ia64/siglongjmp.S +#libunwind_setjmp_la_SOURCES_hppa = hppa/siglongjmp.S +#libunwind_setjmp_la_SOURCES_mips = mips/siglongjmp.S +#libunwind_setjmp_la_SOURCES_x86 = x86/longjmp.S x86/siglongjmp.S +#libunwind_setjmp_la_SOURCES_x86_64 = x86_64/longjmp.S x86_64/siglongjmp.S +#libunwind_setjmp_la_SOURCES_ppc64 = ppc/longjmp.S ppc/siglongjmp.S +#libunwind_setjmp_la_SOURCES_ppc32 = ppc/longjmp.S ppc/siglongjmp.S ### libunwind: @@ -359,8 +359,8 @@ if ARCH_ARM if !REMOTE_ONLY libunwind_arm_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_arm) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_arm) else if ARCH_IA64 ia64_mk_Gcursor_i_SOURCES = ia64/mk_Gcursor_i.c @@ -378,8 +378,8 @@ Lcursor_i.h: ia64/mk_Lcursor_i if !REMOTE_ONLY libunwind_ia64_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_ia64) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_ia64) else if ARCH_HPPA lib_LTLIBRARIES_arch = libunwind-hppa.la @@ -389,8 +389,8 @@ if ARCH_HPPA if !REMOTE_ONLY libunwind_hppa_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_hppa) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_hppa) else if ARCH_MIPS lib_LTLIBRARIES_arch = libunwind-mips.la @@ -400,8 +400,8 @@ if ARCH_MIPS if !REMOTE_ONLY libunwind_mips_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_mips) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_mips) else if ARCH_X86 lib_LTLIBRARIES_arch = libunwind-x86.la @@ -411,8 +411,8 @@ if ARCH_X86 if !REMOTE_ONLY libunwind_x86_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_x86) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_x86) else if ARCH_X86_64 lib_LTLIBRARIES_arch = libunwind-x86_64.la @@ -422,8 +422,8 @@ if ARCH_X86_64 if !REMOTE_ONLY libunwind_x86_64_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_x86_64) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_x86_64) else if ARCH_PPC32 lib_LTLIBRARIES_arch = libunwind-ppc32.la @@ -433,8 +433,8 @@ if ARCH_PPC32 if !REMOTE_ONLY libunwind_ppc32_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_ppc32) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_ppc32) else if ARCH_PPC64 lib_LTLIBRARIES_arch = libunwind-ppc64.la @@ -444,8 +444,8 @@ if ARCH_PPC64 if !REMOTE_ONLY libunwind_ppc64_la_LIBADD = libunwind.la -lc endif - libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_ppc64) +# libunwind_setjmp_la_SOURCES = $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_ppc64) endif # ARCH_PPC64 endif # ARCH_PPC32 @@ -466,7 +466,7 @@ libunwind_la_LIBADD = -lc $(LIBCRTS) lib_LIBRARIES = $(LIBRARIES_cdep) lib_LTLIBRARIES = $(lib_LTLIBRARIES_cdep) $(lib_LTLIBRARIES_arch) \ - $(lib_LTLIBRARIES_cdep_setjmp) + # $(lib_LTLIBRARIES_cdep_setjmp) AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/include/tdep-$(arch) -I. AM_CCASFLAGS = $(AM_CPPFLAGS) @@ -488,16 +488,16 @@ EXTRA_DIST = elfxx.h elfxx.c unwind/unwind-internal.h \ $(libunwind_mips_la_SOURCES_mips) \ $(libunwind_x86_la_SOURCES_x86) \ $(libunwind_x86_64_la_SOURCES_x86_64) \ - $(libunwind_ptrace_a_SOURCES) \ - $(libunwind_setjmp_la_SOURCES_common) \ - $(libunwind_setjmp_la_SOURCES_arm) \ - $(libunwind_setjmp_la_SOURCES_hppa) \ - $(libunwind_setjmp_la_SOURCES_ia64) \ - $(libunwind_setjmp_la_SOURCES_mips) \ - $(libunwind_setjmp_la_SOURCES_x86) \ - $(libunwind_setjmp_la_SOURCES_x86_64) \ - $(libunwind_setjmp_la_SOURCES_ppc32) \ - $(libunwind_setjmp_la_SOURCES_ppc64) + $(libunwind_ptrace_a_SOURCES) +# $(libunwind_setjmp_la_SOURCES_common) \ +# $(libunwind_setjmp_la_SOURCES_arm) \ +# $(libunwind_setjmp_la_SOURCES_hppa) \ +# $(libunwind_setjmp_la_SOURCES_ia64) \ +# $(libunwind_setjmp_la_SOURCES_mips) \ +# $(libunwind_setjmp_la_SOURCES_x86) \ +# $(libunwind_setjmp_la_SOURCES_x86_64) \ +# $(libunwind_setjmp_la_SOURCES_ppc32) \ +# $(libunwind_setjmp_la_SOURCES_ppc64) # The -version-info flag accepts an argument of the form --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -24,7 +24,8 @@ if ARCH_IA64 Gia64-test-nat Lia64-test-nat \ Gia64-test-rbs Lia64-test-rbs \ Gia64-test-readonly Lia64-test-readonly \ - ia64-test-setjmp ia64-test-sig + ia64-test-sig +# ia64-test-setjmp else if ARCH_PPC64 if USE_ALTIVEC @@ -40,8 +41,9 @@ endif #ARCH_IA64 Gtest-resume-sig Ltest-resume-sig \ Gtest-dyn1 Ltest-dyn1 \ test-async-sig test-flush-cache test-init-remote \ - test-mem test-setjmp test-ptrace \ + test-mem test-ptrace \ Ltest-nomalloc +# test-setjmp noinst_PROGRAMS_cdep = forker mapper test-ptrace-misc test-varargs \ Gperf-simple Lperf-simple @@ -93,8 +95,8 @@ test_ptrace_misc_SOURCES = test-ptrace-misc.c ident.c LIBUNWIND = ../src/libunwind-$(arch).la $(LIBUNWIND_local) LDADD = $(LIBUNWIND) -test_setjmp_LDADD = ../src/libunwind-setjmp.la $(LIBUNWIND_local) -ia64_test_setjmp_LDADD = ../src/libunwind-setjmp.la $(LIBUNWIND_local) +# test_setjmp_LDADD = ../src/libunwind-setjmp.la $(LIBUNWIND_local) +# ia64_test_setjmp_LDADD = ../src/libunwind-setjmp.la $(LIBUNWIND_local) test_ptrace_LDADD = ../src/libunwind-ptrace.a $(LIBUNWIND) Ltest_concurrent_LDADD = $(LIBUNWIND) -lpthread Gtest_concurrent_LDADD = $(LIBUNWIND) -lpthread Index: libunwind.spec =================================================================== RCS file: /cvs/pkgs/rpms/libunwind/devel/libunwind.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libunwind.spec 30 Apr 2009 11:26:05 -0000 1.30 +++ libunwind.spec 15 Jul 2009 08:39:50 -0000 1.31 @@ -9,10 +9,11 @@ Summary: An unwinding library Name: libunwind Version: 0.99 %define snapshot 20090430betagit4b8404d1 -Release: 0.10.%{snapshot}%{?dist} +Release: 0.11.%{snapshot}%{?dist} License: BSD Group: Development/Debuggers Source: libunwind-%{snapshot}.tar.bz2 +Patch1: libunwind-disable-setjmp.patch URL: http://savannah.nongnu.org/projects/libunwind ExclusiveArch: arm hppa ia64 mips ppc ppc64 %{ix86} x86_64 @@ -36,6 +37,7 @@ libunwind. %prep %setup -q -n libunwind-%{snapshot} +%patch1 -p1 %build aclocal @@ -80,6 +82,10 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libunwind*.h %changelog +* Wed Jul 15 2009 Jan Kratochvil - 0.99-0.11.20090430betagit4b8404d1 +- Disable the libunwind-setjmp library as no longer compatible with glibc and + no Fedora dependencies on it (FTBSFS BZ 511562). + * Thu Apr 30 2009 Jan Kratochvil - 0.99-0.10.20090430betagit4b8404d1 - Fix the ia64 variant of GetIPInfo() (BZ 480412). From pghmcfc at fedoraproject.org Wed Jul 15 08:41:59 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Wed, 15 Jul 2009 08:41:59 +0000 (UTC) Subject: rpms/perl-Template-Plugin-Class/devel .cvsignore, 1.3, 1.4 perl-Template-Plugin-Class.spec, 1.9, 1.10 sources, 1.3, 1.4 Message-ID: <20090715084159.7ABD411C00DF@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28781 Modified Files: .cvsignore perl-Template-Plugin-Class.spec sources Log Message: Update to 0.14 (fixes FTBFS #511438) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 Jul 2006 15:23:31 -0000 1.3 +++ .cvsignore 15 Jul 2009 08:41:29 -0000 1.4 @@ -1,2 +1 @@ -Template-Plugin-Class-0.12.tar.gz -Template-Plugin-Class-0.13.tar.gz +Template-Plugin-Class-0.14.tar.gz Index: perl-Template-Plugin-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel/perl-Template-Plugin-Class.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Template-Plugin-Class.spec 27 Feb 2009 02:03:10 -0000 1.9 +++ perl-Template-Plugin-Class.spec 15 Jul 2009 08:41:29 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Template-Plugin-Class -Version: 0.13 -Release: 6%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Allow calling of class methods on arbitrary classes Group: Development/Libraries License: GPL+ or Artistic @@ -10,8 +10,8 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: perl(Template::Plugin), perl(Module::Build), perl(Test::More) -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -Requires: perl(Template::Plugin) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: perl(Template::Plugin) %description %{summary}. @@ -27,7 +27,7 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' -find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' chmod -R u+w $RPM_BUILD_ROOT/* %check @@ -38,12 +38,16 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc Changes README +%doc Changes %{perl_vendorlib}/Template/ %{_mandir}/man3/*.3* %changelog +* Wed Jul 15 2009 Paul Howarth - 0.14-1 +- Update to 0.14 (fixes FTBFS #511438) +- No README in upstream distribution this time + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 Jul 2006 15:23:31 -0000 1.3 +++ sources 15 Jul 2009 08:41:29 -0000 1.4 @@ -1 +1 @@ -455d687e2108fe3ec28ae34fe590285e Template-Plugin-Class-0.13.tar.gz +6bb9ac12814722479fe1462c743c5c51 Template-Plugin-Class-0.14.tar.gz From rjones at fedoraproject.org Wed Jul 15 08:45:03 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:45:03 +0000 (UTC) Subject: rpms/ocaml-pa-do/devel ocaml-pa-do-0.8.9-pdfpagelabels-off.patch, NONE, 1.1 ocaml-pa-do.spec, 1.7, 1.8 ocaml-pa-do-0.8.4-complex.patch, 1.1, NONE ocaml-pa-do-0.8.4-module-name-fix.patch, 1.1, NONE Message-ID: <20090715084503.BACD911C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-pa-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29660 Modified Files: ocaml-pa-do.spec Added Files: ocaml-pa-do-0.8.9-pdfpagelabels-off.patch Removed Files: ocaml-pa-do-0.8.4-complex.patch ocaml-pa-do-0.8.4-module-name-fix.patch Log Message: Add ocaml-pa-do-0.8.9-pdfpagelabels-off.patch. ocaml-pa-do-0.8.9-pdfpagelabels-off.patch: --- NEW FILE ocaml-pa-do-0.8.9-pdfpagelabels-off.patch --- --- ./pa_do-0.8.9.orig/doc/user-meeting09/talk.tex 2009-05-18 10:00:29.000000000 +0100 +++ ./pa_do-0.8.9/doc/user-meeting09/talk.tex 2009-07-15 09:42:57.591730514 +0100 @@ -1,5 +1,5 @@ %\documentclass[handout]{beamer} -\documentclass[compress]{beamer} +\documentclass[compress,hyperref={pdfpagelabels=false}]{beamer} \usepackage[latin1]{inputenc} \usepackage[english]{babel} Index: ocaml-pa-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-do/devel/ocaml-pa-do.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-pa-do.spec 15 Jul 2009 08:28:39 -0000 1.7 +++ ocaml-pa-do.spec 15 Jul 2009 08:45:03 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-pa-do Version: 0.8.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OCaml syntax extension for delimited overloading Group: Development/Libraries @@ -12,6 +12,8 @@ License: LGPLv2+ with exceptions URL: http://forge.ocamlcore.org/projects/pa-do/ Source0: http://forge.ocamlcore.org/frs/download.php/218/pa_do-%{version}.tar.gz +Patch0: ocaml-pa-do-0.8.9-pdfpagelabels-off.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExcludeArch: sparc64 s390 s390x @@ -101,8 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-3 +* Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-4 - Force rebuild to test FTBFS issue (RHBZ#511603). +- Add ocaml-pa-do-0.8.9-pdfpagelabels-off.patch. * Sat May 23 2009 Richard W.M. Jones - 0.8.9-2 - New upstream version 0.8.9. --- ocaml-pa-do-0.8.4-complex.patch DELETED --- --- ocaml-pa-do-0.8.4-module-name-fix.patch DELETED --- From rjones at fedoraproject.org Wed Jul 15 08:45:45 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:45:45 +0000 (UTC) Subject: rpms/ocaml-pa-do/devel ocaml-pa-do.spec,1.8,1.9 Message-ID: <20090715084545.309C611C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-pa-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29720 Modified Files: ocaml-pa-do.spec Log Message: Add ocaml-pa-do-0.8.9-pdfpagelabels-off.patch. Index: ocaml-pa-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-do/devel/ocaml-pa-do.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-pa-do.spec 15 Jul 2009 08:45:03 -0000 1.8 +++ ocaml-pa-do.spec 15 Jul 2009 08:45:14 -0000 1.9 @@ -58,6 +58,8 @@ developing applications that use %{name} %prep %setup -q -n pa_do-%{version} +%patch0 -p1 + %build omake --verbose From rjones at fedoraproject.org Wed Jul 15 08:58:33 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 08:58:33 +0000 (UTC) Subject: rpms/ocaml-pa-do/devel ocaml-pa-do.spec,1.9,1.10 Message-ID: <20090715085833.7F38211C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-pa-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32384 Modified Files: ocaml-pa-do.spec Log Message: Fix the patch. Index: ocaml-pa-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-do/devel/ocaml-pa-do.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-pa-do.spec 15 Jul 2009 08:45:14 -0000 1.9 +++ ocaml-pa-do.spec 15 Jul 2009 08:58:02 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-pa-do Version: 0.8.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OCaml syntax extension for delimited overloading Group: Development/Libraries @@ -58,7 +58,7 @@ developing applications that use %{name} %prep %setup -q -n pa_do-%{version} -%patch0 -p1 +%patch0 -p2 %build @@ -105,7 +105,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-4 +* Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-5 - Force rebuild to test FTBFS issue (RHBZ#511603). - Add ocaml-pa-do-0.8.9-pdfpagelabels-off.patch. From verdurin at fedoraproject.org Wed Jul 15 09:02:25 2009 From: verdurin at fedoraproject.org (verdurin) Date: Wed, 15 Jul 2009 09:02:25 +0000 (UTC) Subject: rpms/gnomint/F-10 .cvsignore, 1.4, 1.5 gnomint.spec, 1.4, 1.5 sources, 1.4, 1.5 gnomint-0.9.1-cflags.patch, 1.1, NONE Message-ID: <20090715090225.DF58011C00DF@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1403 Modified Files: .cvsignore gnomint.spec sources Removed Files: gnomint-0.9.1-cflags.patch Log Message: Update for new release and remove obsolete patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 Jan 2009 21:40:16 -0000 1.4 +++ .cvsignore 15 Jul 2009 09:01:55 -0000 1.5 @@ -1 +1 @@ -gnomint-0.9.1.tar.gz +gnomint-1.0.0-cflags.patch Index: gnomint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/gnomint.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnomint.spec 21 Apr 2009 22:34:01 -0000 1.4 +++ gnomint.spec 15 Jul 2009 09:01:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: gnomint -Version: 0.9.1 -Release: 2%{?dist} +Version: 1.0.0 +Release: 1%{?dist} Summary: Graphical x509 Certification Authority management tool Group: Applications/System @@ -94,9 +94,24 @@ update-desktop-database %{_datadir}/appl %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog -* Tue Apr 21 2009 Adam Huffman - 0.9.1-2 +* Wed Jul 15 2009 Adam Huffman - 1.0.0-1 +- new stable upstream release +- added forgotten crlgen function to gnomint-cli text-based interface +- fix compilation with GnuTLS 2.8.0 +- new translations and translation updates + +* Tue Apr 28 2009 Adam Huffman - 0.9.1-5 +- workaround patch tag problem + +* Sun Apr 26 2009 Adam Huffman - 0.9.1-4 +- really fix 496518 + +* Tue Apr 21 2009 Adam Huffman - 0.9.1-3 - fix for bug 496518 - $RPM_OPT_FLAGS not used +* Tue Feb 24 2009 Fedora Release Engineering - 0.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Jan 21 2009 Adam Huffman - 0.9.1-1 - new upstream release including command-line interface - thanks to Seva Epsteyn for spec patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 Jan 2009 21:40:16 -0000 1.4 +++ sources 15 Jul 2009 09:01:55 -0000 1.5 @@ -1 +1 @@ -a8dd7536131c29a7c4d75f255d7e6b52 gnomint-0.9.1.tar.gz +499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch --- gnomint-0.9.1-cflags.patch DELETED --- From twaugh at fedoraproject.org Wed Jul 15 09:06:19 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 09:06:19 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3258.patch,NONE,1.1 cups.spec,1.483,1.484 Message-ID: <20090715090619.EC11711C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2404 Modified Files: cups.spec Added Files: cups-str3258.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to fix job-hold-until for remote queues (STR #3258, bug #497376). cups-str3258.patch: --- NEW FILE cups-str3258.patch --- diff -up cups-1.4rc1/scheduler/ipp.c.str3258 cups-1.4rc1/scheduler/ipp.c --- cups-1.4rc1/scheduler/ipp.c.str3258 2009-07-15 09:58:15.559299247 +0100 +++ cups-1.4rc1/scheduler/ipp.c 2009-07-15 09:58:47.981299548 +0100 @@ -1721,8 +1721,7 @@ add_job(cupsd_client_t *con, /* I - Cl attr = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD, "job-hold-until", NULL, val); } - if (attr && strcmp(attr->values[0].string.text, "no-hold") && - !(printer->type & CUPS_PRINTER_REMOTE)) + if (attr && strcmp(attr->values[0].string.text, "no-hold")) { /* * Hold job until specified time... diff -up cups-1.4rc1/scheduler/job.c.str3258 cups-1.4rc1/scheduler/job.c --- cups-1.4rc1/scheduler/job.c.str3258 2009-07-15 09:58:15.627173602 +0100 +++ cups-1.4rc1/scheduler/job.c 2009-07-15 09:58:47.984298957 +0100 @@ -3095,7 +3095,8 @@ get_options(cupsd_job_t *job, /* I - Jo attr->value_tag == IPP_TAG_BEGIN_COLLECTION) /* Not yet supported */ continue; - if (!strncmp(attr->name, "time-", 5)) + if (!strncmp(attr->name, "time-", 5) || + !strcmp(attr->name, "job-hold-until")) continue; if (!strncmp(attr->name, "job-", 4) && Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.483 retrieving revision 1.484 diff -u -p -r1.483 -r1.484 --- cups.spec 10 Jul 2009 15:22:45 -0000 1.483 +++ cups.spec 15 Jul 2009 09:06:19 -0000 1.484 @@ -1,3 +1,6 @@ +%define php_extdir %(php-config --extension-dir 2>/dev/null || echo %{_libdir}/php4) +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) + %define pre rc1 %define initdir /etc/rc.d/init.d %define use_alternatives 1 @@ -7,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.8%{?dist} +Release: 0.%{pre}.10%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -48,7 +51,8 @@ Patch24: cups-str3229.patch Patch25: cups-filter-debug.patch Patch26: cups-str3231.patch Patch27: cups-str3244.patch -Patch28: cups-avahi.patch +Patch28: cups-str3258.patch +Patch29: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -133,7 +137,12 @@ Requires: xinetd Summary: Common Unix Printing System - php module Group: Development/Languages Requires: %{name} = %{epoch}:%{version}-%{release} -Requires: php-common +%if 0%{?php_zend_api} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif %description @@ -192,7 +201,8 @@ module. %patch25 -p1 -b .filter-debug %patch26 -p1 -b .str3231 %patch27 -p1 -b .str3244 -#%patch28 -p1 -b .avahi +%patch28 -p1 -b .str3258 +#%patch29 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -305,6 +315,14 @@ rm -rf $RPM_BUILD_ROOT%{_mandir}/cat? $R rm -f $RPM_BUILD_ROOT%{_datadir}/applications/cups.desktop rm -rf $RPM_BUILD_ROOT%{_datadir}/icons +# Put the php config bit into place +%{__mkdir_p} %{buildroot}%{_sysconfdir}/php.d +%{__cat} << __EOF__ > %{buildroot}%{_sysconfdir}/php.d/%{name}.ini +; Enable %{name} extension module +extension=phpcups.so +__EOF__ + + %post /sbin/chkconfig --del cupsd 2>/dev/null || true # Make sure old versions aren't there anymore /sbin/chkconfig --add cups || true @@ -473,9 +491,19 @@ rm -rf $RPM_BUILD_ROOT %files php %defattr(-,root,root) -%{_libdir}/php/modules/*.so +%config(noreplace) %{_sysconfdir}/php.d/%{name}.ini +%{php_extdir}/phpcups.so %changelog +* Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Applied patch to fix job-hold-until for remote queues (STR #3258, + bug #497376). + +* Mon Jul 13 2009 Remi Collet 1:1.4-0.rc1.9 +- add PHP ABI check +- use php_extdir +- add php configuration file (/etc/php.d/cups.ini) + * Fri Jul 10 2009 Tim Waugh 1:1.4-0.rc1.8 - Build does not require aspell-devel (bug #510405). From verdurin at fedoraproject.org Wed Jul 15 09:09:38 2009 From: verdurin at fedoraproject.org (verdurin) Date: Wed, 15 Jul 2009 09:09:38 +0000 (UTC) Subject: rpms/gnomint/F-10 .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090715090938.0939B11C00DF@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3175 Modified Files: .cvsignore sources Log Message: New upstream tarball Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 15 Jul 2009 09:01:55 -0000 1.5 +++ .cvsignore 15 Jul 2009 09:09:37 -0000 1.6 @@ -1 +1 @@ -gnomint-1.0.0-cflags.patch +gnomint-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 15 Jul 2009 09:01:55 -0000 1.5 +++ sources 15 Jul 2009 09:09:37 -0000 1.6 @@ -1 +1 @@ -499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch +20de7af89f71ebd6c45b41aeab59207c gnomint-1.0.0.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 09:12:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 09:12:12 +0000 Subject: [pkgdb] php-eaccelerator had acl change status Message-ID: <20090715091213.022AA10F84C@bastion2.fedora.phx.redhat.com> thias has set the watchbugzilla acl on php-eaccelerator (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Wed Jul 15 09:12:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 09:12:16 +0000 Subject: [pkgdb] php-eaccelerator had acl change status Message-ID: <20090715091217.103D710F8A8@bastion2.fedora.phx.redhat.com> thias has set the commit acl on php-eaccelerator (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From pkgdb at fedoraproject.org Wed Jul 15 09:12:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 09:12:16 +0000 Subject: [pkgdb] php-eaccelerator had acl change status Message-ID: <20090715091217.1170F10F8A9@bastion2.fedora.phx.redhat.com> thias has set the watchcommits acl on php-eaccelerator (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-eaccelerator From twaugh at fedoraproject.org Wed Jul 15 09:12:43 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 09:12:43 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3259.patch,NONE,1.1 cups.spec,1.484,1.485 Message-ID: <20090715091243.CC0D911C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3820 Modified Files: cups.spec Added Files: cups-str3259.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to fix incorrect device URIs (STR #3259, bug #507244). cups-str3259.patch: --- NEW FILE cups-str3259.patch --- diff -up cups-1.4rc1/backend/ieee1284.c.str3259 cups-1.4rc1/backend/ieee1284.c --- cups-1.4rc1/backend/ieee1284.c.str3259 2008-12-11 23:01:44.000000000 +0000 +++ cups-1.4rc1/backend/ieee1284.c 2009-07-15 10:08:13.147173947 +0100 @@ -306,6 +306,14 @@ backendGetDeviceID( mfg = temp; } + if (!strncasecmp(mdl, mfg, strlen(mfg))) + { + mdl += strlen(mfg); + + while (isspace(*mdl & 255)) + mdl ++; + } + /* * Generate the device URI from the manufacturer, make_model, and * serial number strings. Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.484 retrieving revision 1.485 diff -u -p -r1.484 -r1.485 --- cups.spec 15 Jul 2009 09:06:19 -0000 1.484 +++ cups.spec 15 Jul 2009 09:12:13 -0000 1.485 @@ -52,7 +52,8 @@ Patch25: cups-filter-debug.patch Patch26: cups-str3231.patch Patch27: cups-str3244.patch Patch28: cups-str3258.patch -Patch29: cups-avahi.patch +Patch29: cups-str3259.patch +Patch30: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -202,7 +203,8 @@ module. %patch26 -p1 -b .str3231 %patch27 -p1 -b .str3244 %patch28 -p1 -b .str3258 -#%patch29 -p1 -b .avahi +%patch29 -p1 -b .str3259 +#%patch30 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -496,6 +498,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Applied patch to fix incorrect device URIs (STR #3259, bug #507244). - Applied patch to fix job-hold-until for remote queues (STR #3258, bug #497376). From ramkrsna at fedoraproject.org Wed Jul 15 09:25:00 2009 From: ramkrsna at fedoraproject.org (Ramakrishna Reddy) Date: Wed, 15 Jul 2009 09:25:00 +0000 (UTC) Subject: rpms/hunspell-kn/devel hunspell-kn.spec, NONE, 1.1 import.log, NONE, 1.1 kannada.oxt, NONE, 1.1 Message-ID: <20090715092500.6E1A211C00DF@cvs1.fedora.phx.redhat.com> Author: ramkrsna Update of /cvs/pkgs/rpms/hunspell-kn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6194/devel Added Files: hunspell-kn.spec import.log kannada.oxt Log Message: Initial Fedora Release for Hunspell Kannada --- NEW FILE hunspell-kn.spec --- Name: hunspell-kn Summary: Kannada hunspell dictionaries Version: 1.0.3 Release: 1%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/2628/1/kannada.oxt URL: http://extensions.services.openoffice.org/project/kannada BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: GPLv2+ or LGPLv2+ or MPLv1.1 BuildArch: noarch Requires: hunspell %description Kannada hunspell dictionaries. %prep %setup -q -c -n hunspell-kn %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell cp -p kn_IN.* $RPM_BUILD_ROOT/%{_datadir}/myspell/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README_kn_IN.txt COPYING COPYING.MPL COPYING.GPL COPYING.LGPL %{_datadir}/myspell/* %changelog * Thu Jul 09 2009 Ramakrishna Reddy Yekulla - 1.0.3-1 - initial version --- NEW FILE import.log --- hunspell-kn-1_0_3-1_fc10:HEAD:hunspell-kn-1.0.3-1.fc10.src.rpm:1247649791 --- NEW FILE kannada.oxt --- PK TM?#c??p)Fv????4?HY?? ??4??????"?L??Vkhc?I&??5?T???6??4?z!l0M?~o*U(????(?v?'?O?X?LS???f?????#?)?PK ?d ?`????(??#??(i???y?/J^??[?????Qf6uY??&?????l???????G?W?x?"?INL?E?0?\????}Dw?N???}???U,niM`?y??g??H&??A??O^?g}f??b?"??M?0???_??.????2_k?}QU)@???? zH?MwF?#?8K??YW at i????o??}T ?^}??S??z0 ,?J? *????h?b????!?n??????!?[?<75D?o??????r???0%@EA?5???{?FA^?u??zt???&?? n?4?H?lKv ? (t?>??x?M`+??6?T?t???C?CK??{?!??:?V?? ??P??8???_?Q??B?ej?????q?%H?K????(??j??>??? ?@`(??3-??BiHJ???@?DV??3??y? ?vQ?G?`?>???A?y?a?!??X?5????TEw?4???/<(?%?u?%i???R?$T'w???3 ????iQ?lX#?o????q??Bf=?Hp]????4R ????#?#?x???wQ?L?#?S@???AF?L]??????(Hx ??????0 '??p??'w^V?s e???zP?????\@?U6`H?m???z??;?f???Z???7??p??????}b ??( x@???CPev??<?\%??1$% I?R?O|?nX`Sse0fy? ?UF9??P/?l?}?f??FT?X?H??c??X????8Z?5w0??Za??w?= ???s(5o?8?r5+??\Hx???{??3?O?V?#?u??4?IE?gDQ*6R??b??uL????????;e?????-???mtRn(`? ?y?F?P??%?Y?:??$??????|!{??I?=???mX*5??1*7j?-rP??8? ?ae???531%?HP?g?????p?^?2z,?,?1?,?bt4????m,Y??v????^Q????s5Y?4B??I?1m??????C????KRD???? G????G?????#?????KA?Gh???????v???H0+???h???W? ??????? ?@? ?r?? !?7??#????9~?? ??#}???4?? w{x 1|???A Z?u??m??f ?"U6?(q?dT??`???K?a??????#????????5???P?eEC???X??w*??1]???-vN?M-??????m? ??l`??l??&s?x???3u??79'??f????Z?q?d`?3?????4R>??R?????+)?*???D?s?v???Y?:?M?sx8+"Q?0?????m ??????n?hU??.???t?????????U??D?,????9????L????]?? bLi4?fl??i??Du?[??D?Iad?gHZ?!c??li?%3???4?=??U??G$?V?m??????????L9a?*1?`?M???????4q?m&G??:?n???>???t?,?_p??%G?>Q????? ?&~??K?-h?#??k???G??fp??XF?l???hq???3??% ?r B??P?%KUS??~?H^???0?U??R?u??? kt???Le????kx\Y?m3j???0m?j#??as?/ ??g?Q,0?tNU?????iq!?????a?4?K?n=L0?Qu?????n???`??_~??????:??4??Q6??P?j??EcKZ{??'T?w?r?*???\:??s?~????? ??Q??:E?,(O?B??G?>K?.M(??'???`[?O????T_R?;???+e?_ p?Dg?????n'??>wP~:b&08??g???j/?U6}??u??`?NUx?/??????????u????q?W ??????q/? ??>?,??yMtU?`?Zq???e??ne???????: Z??Ev?????sV?n?j???V?? yj ??????\{????*?u??U?s??% ??B???UE????/c,????-????'?N????????Y?????K?5??-?b??f^?'??{?%?Xj CP??Q)|??s?YG?=?z?9 ;?????AZ??????<t]x.??ni????ZV.|`?_???8????c?~??p?-?I???Z??]?=4I??d????y?@z/^@?z5^\N????E??????????X 'c at v8??nGs?|3?^?.?v(?jA?E?g+?? <;\?`????? =@?2-?7yf? ?W?N??@?????>??'!?O5??B?y?T??{??}@T?? ?m/]+/|?G ???? ?m??S??d???8L?&e????UV?V?????? l[?X#CZ?T?I??\??(#?@3?6l??i\4W??-|&,??vF????u?Pi? ^?????(???e)F?????|???? L???????%??j4???`f???????BiH?W?% ??|v?m???Q??~_?h??% ?d?I??|??X.??? Z? g?%???1??oy2?}r? ??D??N.??*???{!????b{?~?x?{??UE??_T??????w???O??)?+S? ?=???????oo1??????PW????m??|??"K?n0??%v??????????q??m???????w???F??? n???q??P??++????????z??r{B ?t?x??vJG?Fc??0G8? ?h??4??Z??A?< ???~|=??????-??V???\??9???????eOd@????]4gR?!..??@???W?w?C??x??>?K|Q?*???F??G??????"?M}'?h??/?p?????? ??@m??W??W????:???eX????Q?!??aEc???yW?7?G??$?(??d??!?^??JM?I?D??? g?????4??p?"?%??gxl??@????? ????A???V,?pfK?)?>|]??A???F&Qr??'?????:??9?p;g"??????w??t?[a??>?@#>U???????wL??9~?Y?????_?i?>???}(????$?x??? PK ????8bG??>-??yT???%i?t(*?d?6*???D???6Q??T?????_?_3b??n?t7VE5????.Zi@?c?5?W?U*??????a?r???i|N?l ??Ev???{4nlX???????A??~??#4t>?6????n?h????Y?? ????? ?;?1?`2?S?e????p??H???@Q8C?S(?????8Y*;???????$?I????FD5??R??~?????????????LJ+????}2?Of^|zs??O2?O4??nK????k-/7?q?CJ?[??'??n?!WI"X4?C^`?`?^(??? D??? ?? Z?mN& ??a?????f???? ??X??G????zc<?g???^? ? ??bv=y}?C? ???X*kd? ?4??c??b?Os?^,%3? z??L?????4??Lm2(???H??"a???X*???,-l+ 3??,?%????h?|j??-W?JM0??? F???????l????f?r?u????q%v?8?? ???4????o?!O?9?j??O?|j???".????K?;?vt4]?>???????3Y?/Fz????]?d????????B??e;??????????k?[7?Dp?^r???$i?;6??S?????tn??w?[J?n???^XJFg?C??8;)??r??e??2W_??????&`??^??lo??????X?????l? ??=??$>???% {????? ???V2|??G?????=/?1e?%????????&?????xY c?V?????m?'???i? ??%XG????o??????M*?U4^eg c?????c ?? l? ???1??4u^C`O?!?T?uL6!???wEK??6{;.?T?-? ??2??????bH???3??))????zKz6?+O?Qn?*{V1???N??A:?qvc?_FZ: ????????C?]2&2:??D?5???^8S?C??x?.??!??t????S0?=?7.???G??,i?Q???)o ?B?????T??2;?1'???)j3E?t???6?^????B?}?p? 7???? ????ZuQ????B?M???`7???TC???}???k??fm?4???? ?z? ;>2P????d?w?%?^[??H???X?S???W? y?{x??c?{W??'??)?T?u?ZY?*?_?yX?(?e?|29*?U??????y?>?,??-???/??m??????%.Q?YJzE4???=Dm??N???\???f ?????????w???v?O? ???He?ai%?liG????T??<]???? 4??O#?4M??b??????? ????>??,???h ?V???W?!T?}??%??6????L?d??r????]?Q??UC?$ ?rm???_!?4^?D?Vz?????+?h&?:? ?e?9/K??L????V ?[???5?? Q?L7Z?O@??????n? ?_?y?l????4??????)? ?????u?%?Q:y?&=??t?????c8?;^s%???~<\*'?????i???S?l??{???? ??@6????#Y?e ? ?+?Fc?,Zo?????? f? ????J???[?#?0?xr? ?P??g?U?g?i/?????Ju?UZ??G?^??Q??f?Q?+43???hG=????.?g?#?Nm ?=?Y_ ?&?PF?pT?? @?)??[!?n???^h???????!???pgW"h??T?aWc^??2N??G???*??1?? &??i???{?6????qU??G?f? 'Z<=?????w&s???N ? ?A????Ji ?? +&?O.???)vC?,?????K???%? ????P]?3S?z?,}MiJio>;?????=L?A?{?plP`??????????????H?Tv???%?E???C?>?$????????b??????8?Rm???#???0?0????!?????z????`???i? ??V??|]l???Fm?^?E]? ?M??DX\X}?F?h??1?6??*??M*??j???~??a: K??#??Hua?g???Wt??3???8???Y???'?:????? ???????w??p?h.6Z?i[?j?S??:r???????C nh?D?95??9?.#?HuVbQ?? rP ?f}??? ? c??:Xt)??uL??????Ib_?z??i*????(????,???`??a??c?>RB W??E??*?EBbt?P.8???l????b,??????Y???|?h????S{z?Z??????:?@?u?N??*+i&????Mg?48?65l?=+C?????Hl???r?J4psi?WOO?{??s?p??/?M?????W??s?R7?+?? u ?=???`??1?j?pxKX???g???%???r???/?Q????Vc??`L?o"????????I??1t???? B? g\;?G?.???T???qWU?LS??)???C?N?g??%n?&??:?<$??????&?+R??? *OJ*?}?????(?#|?f?Z?O????? ????gH?????N??a?/?|?\??R?? H?8??e? ??Q"da)Z???a???>#Pv[{??{2??u? ????i7?????eC??%??TS5{?4:'3????????2Q?? ?o ?H?j? ??f?????5???Bh???<??2?J?????J??J??~???Z?)?????-??,?5]E ?? ???? ~?????2|4? ???z???c??K?>??8 ?J?Kn????{??c?l?b?Z?9?\??? ??bZ?NF??)?.-?|k+Ir?(?????f??~4R??r???V?I??9??I?=?????4???n?? ???? r"u* ZG?????7?b?4y????K$??6]b??}[~?~?H???[??.??8&? ??O{?????5?a????l`?1o?wik?~/6??o?_?G ?Qy(?!~/W??@X>??Xo?n?V N?8&D? ??F?L+~?C??O???B~?^??0???j???I?(?,?R?C?=??yt???g????p?K'?4d[_?t??????^??"??????S??h?"????wF*???G ??Z?? f??0?X7?? e?/X?C?y???[V??Jtd??z??l)y+@???;????$????x??F???7??.r???-*n?R?$? j?? h5?????i%??s?#IP?S i?:? 0i?????9???d????ac?NO*L?j?S???+????E???U0 ??0???????O@%?????C????HYt?|????s???+??l??s0??eY??`?yR[-??????kc?? ?V~?V??%?r????M?? ?$?????(U??*??dc?)?*?>????~b???????$??w?P?????Vl???X??-.?h?-y?Zt@????n???n?? ?6??"????n$P?F????Mc?t'???VF?,???F?????@%v?gT TDU????jJ4?j??\?????T??a'???*?v???h??L??76U??DS.8????q =_??'??TI?? 0?2??xAd????dz9y?tN%??:D????Xo*????d?? ??+??????uWEc-?F??zd;{$????q&d?< ?@)???HM???W????8?c "?[>5?Lv???tUx?z??r? o??a_?/ ???}"9?N&??19?n>AK? N6`T8?d?*/????:?(/?1?]??r?0?(?1?-???g|oTH??????7?iU?/??*?????aq?:??7?'x?5*l??L???????_'Ytp?~r9S????s????0? y?M #u ?E[ic?0??F??6????????5:P????5 N ?Z??`g,?~?Ve?????EEX ??N?f9??l%P??R??i5C d??? [???~?R?/Y????f???T"??n?$d???R~??FJ;????<9?b?g%,??D? ??i?e? ?%?J]?qt??k?u?<<-9?D?HF7??H??????w#M??3??mI?]?;^?I?'3>{Q??? ??wM>?S9??g^?????7?*??C?` ??J?K$????pc? a ? ???????`?-????2?*R;JRrcJ?y!I=?W?/6??d?????fF?1[%[z?C:6?Jn?Xzc?? ?????|0@?S?A ??Mo????v???????OK+?a?X d??Rk5?????U??f+S???l?????Tq??????O* t??~2Zc?$?5????Lf 5?????O[???W =D?????ywr??t(Y.?b?F?+??b?\?)??J ?TjM??i? ???G??X??x???X??lY|7???B?)??@.???3?a= ???N???~+A0?&?uqjl3x??Y_Q?z???f??1?i???*??64??u^?k?????6cp??E??I\S???Jx~???@??B?>H?7m'%`??@?????!E&?"?rY3l?~?:?sj ?+????\???{3Hw??c???k???E[?ob?hzE??G?|????r?s???p@]up?L???????????P????Qv??1Y????H?"?? ?4???uf?R??Y?!|?xQ??yw?~'a???F}?Dl?Y??Q??|?|[????5=???P???D=?d?I???3 k?Q??Gm????j????I?????2????^1????y??G??R?Rd?W? 5~?!?Z??????KD?????g???????pI.?!,?????G, $=k????=??????^?I??7i???????U 4???,?mzO>????{??h?7[???-}?.E?O< ??F? #?????5??{?;\L?i??hj????${#?Kz?.B?i???R?????p?Z?:w~|???7?5?? gn%???? 5ZY)?F`???k?Va?{8G ??????)?AJ?/=0p_?M?=??? $ R?}? ??~?q?l7?6???7jr??YH?a?????@D??%?LS??fT[?8??I??m???????????wQ??` ?i*=?_???bn?"L??d??{??l`n?h?S???Yh????Sn?@5???? ??O?gc??8Z?/?????R^???VhQ2?????? ????cU??l?m???|J ?d?8b????/???v??? Y?)r?,??>???9=??bD????? ??????R???e???,?C?????????q??,3?C?????w??w???2?OE SM??b?~LH??(????mw???????1PBt??*?&?6C?{ ??RU?!?k?# dI???&?X ??)4/?!?? ?O "??L k??Rx???=$?aK?d\?6??tr????1???c??pPR8".ig/ ??;-?/.um+` ??K? k? f m?5E'i??4???f?p????K??O???? ? -?u5???????b???????G/???4w4H?BTx??/Y!?w?mR}UH??}? "R %b?l??S?)??????d?|?%=??X???Y)??B??JpkKV4?????b ??'5??;AQf:?? ?R???D??B?????7x?t?g??~?vJ??)p??=?.?AN?^j??????VFT+?v@????t.?@=z ???]'?QV?{?? /????&????????????2a?S??5??pd?axXW????byfL???T?? ???IMD2ZA?Z' ????W?, &?u!???Z?j)?@???????~???Ep0????!,\?:v'y?yo?/$???E????> ?9?ui???????r?I???L?[9$s??2??????4&???(??????/??????W?P?4??0???E;????Q?N??|\\????g??(?? ???`V?MR'?m????M7e #?@%^??J?%???0???????2????0t21 ?v?*`?=?{K?7?:?=/i  ?e?Q?????T??X?? & K?F?B???c${?';??J??a??K?? ?S??????" ?z??^?f^c??7?F????JG_z?l1?j??0^??j????9?a????]M?U9??k??s?E+#R??"f????5?/p?\t#\{????LmN?G{q??@????"?? ?? 07;Q!??}?dF96 SX W??-?#&?? ???~??????~???8?>??r??Ac-??ZS?F?o?ei????z??q?GX?V?x)?0?????D3??T?? ?m?D?p??????5roy ?@????f?????/?????t?p??|0????y??U+EE????R6?|k?(?? ?? ?]?6?????/??(??U??OcT???u?]J/?!?(??(k?d??,?.?&?G?f ?mQ? ?"????Sa? ??????l d?59?\?i?E]?#??????V???>S?[{ioN? ?y@)S?~7?? pr????X?????6 B????d&M?;??????)Kr?](?s?'_o?? ?C?????$??>?y???f?a=??6?ax]dAA?D??&??d????E????D?K6$9/j~???*?m?3????????I?h ?/8<o ???m*?XD?&?yq??f?x???{???R????YS?.k'? ?|d? J?G.??0?K H?ig6?????????????N$i-@??[W?????B?YB*r????c??j>J?V???1 I?r)/ ,B???E?e*-???x???p4?p??z|j???h??,?^M X???1|?v ?Bg??????????R??? ?e??|*`??@%*??????????*A??}?d???R???U??,?(_???#?pi?4O?KjD????Y?K? ,5???0?L?0?0?UV????????u?\hH?&??Z=???VTh?M?C6?????5??f??Y[?u?8?k?![)Z?JR?????JE e??A5u"1????i??)???p?P`lqi/A??x vekH?\???#=0?????UK?I????N??dR;??????m?gMZ r???[??=/D?oz ????}?H?F??????v????Wp??kmA???]J?>?M???!?.6????f??1?^????????h????_+?Lz????_?7?HUy?4????G?&b??4?b\???_??!?L??'???????h?"??c???Fp't@??????]?????*???g???s ?????:??Wd]??znE*}m+?s?.@??Q? 9M?????^?Z?W?`??X?mD?:?Z??kl ????O? ,1??/%2??p?T=* i;??F?cW=????????ZM??k"Z?G?2??k?>m:;????:C????!??Z3???????g ?z???3y^Vs*=???x~$??(#?z=?\;?yzF??HM8)??|?j???=$[??.?PX??:???o,???>??Y??zB????}?????5??Xb?}?"k?d???b??\??lpF!?Y???8???_????"??zO??Fn??.?????;`??|??a&???AK???a????:??K??~??h12a?5-p??????????'c u????[?.?B??J????%?????X@??yx}??]J?3??i??pD??k????b73x??pf??3i??9?;k??????V?K`*?yldw???z{?0%??????M{? ?L?A?!k?`??W???`G||??(2???6?? q?d,?T-/J4rW ???f@? }{?????6?)?x??\r?+T??[ ????TFQy,?`Ei? ?H?w??K??I? ?E?I????@$??2????\hj`???CC????o?'7???nOj?q???)????F?xU?QK?$ {?????j?hq??'???~?!5.Joz??|XG?Q3n?N\H?????p\ ??,mDx?wW9Y? ?c)???,]6Q?s?2?>?.?p?K???B??R?%????$?k???n??{??? ??? ?d???????US?????ikF?-V? P?y??? ?"?? ??/1|??r?V??j?????,6W??4x!??sTqy?c_| ?A??R=ee ????u??F???/4?=UQ?????P??|3`??i??g?FoE\;?Ra?i??H??%7????^L? W:&?E?5}f?????????0B?+?`?G?43ad??W~?O?8?;??6v??_?9????m??M>??;??&q?v5?%?mIw??&?N?u4g?s??z??M????,??????z/ ??G?<7??????h????D???~??/???? ???V[???Ji$??R??r?U|??p!&S~#?c?\??A???0? ?? x???0?0?UZD0?B?????Y????_yS??4= 0T???>?|,??9?U1JL?p{j?k ????5WZ=?Z??y`jyR????!???BM??y"#?z)?W?????/8~?_iR/~??O5??7??\?'?????????K??I?gr????8?z?6R???vJ??????????*l\?kX?? ????\?jbQ?4??>f?2pD?_????W?]?1???0?IF??@.A?H??P?5F ??sL?L?M??T?9??d??TH] ?Kx????????{S??U6???????????/?_??????I?????\(\?1?m??)?%??g????2j??iW:?&?V? ?f?N?AJ???i??-????I??? ?# (?b?r?J?)? ???^y????????????7??^ ??2'??I?Bn??qc w????xL?? ?A????80???G??o??B#?ja??????-??K???U?i????X??QYZ???R???x?4?x8=-u??O)M-?.??f???+6(??????N|???y????R??????*HW?7R?.i?????;r272?????oxP?lR ?F??a??_?,??V^??%??????????_i7?W?v?e?!??H??(M???D$?K?F?HN???h ????N@??? a?}??g_w???u??_?<-|?;??p?????'`??_?O0??=G?P?G????8??/?|?????Rc?|?EZ?U ???VZ?6??c?c?m?l??SG? M??e?.?]????RKG??S=O]?uNb??b ???@X???0j?2???j[E??????;^????F??,??N??^????^&z??o?? ??6?????`_??O?????+f??????????`H?B????.`U/??8?06urI*n ??Tt????-c?J???#O?i?/?s?+`????@?????pm???w ??Q ?[! ??-????????7a|???@!1;???????8`??a????vfw?QT?2f??mG%??t?+g?X??W ??a??@??-Uc???????????N???,?h>???8 ?O?L[f???? ?Ju???K?@:Y??+T7???????(?/}????^?gd& u9???????/??u?V??Di?2k?8+W"??????ar@?]?a?"wH {_?{dqF?J??%??r????y??T?hu???>!??UR?z??0C??TZ???)X2???F???Ic R???+???kE0=.?J~?j+ex:?@crM;+C9? ??P? ?)?/i?Dt?????Wb??I?????"????_??D???d??^%5y??N???h?a#????o????)?(Tw???P?\??2V ????@E% p?y??K'Due??J;?j???4???4f??????Q?????D!FZd???4K?j I/????????B?????8??$??J]$P?X9????z8b#J?@????H??????x????T{??????? x7?f3?u7??2?C?????m$}????????cx?Qc?C$?7??v(R??=?[G2?'?N*?O??`??J?9??:????k??/EeG=NF?q4?????;??? !@?3D?h???????R??(???g??a?qU???v.?x0??pIN?y-?xrn???? ?S?3#?ue? L9???X?-E? }?`0(??P!?v??Z??l KXg???+?@z}M{? ?n??JfD?(.?P????S?F?????x??L3?j?Ce??? uV_Dc#?????}TG??V????e[??^??~??$H????V|'????~?;?R??.?-b?T???.???4p?@??(??8???????#:iu"]?$??e5???k???#6(??L??5R?b?N???s???9n??h?X??pc?x???V?3p??? Iu?y=ulyFc?eX?"r?(????`?' y?+?m?|?aczFb???????3?c??Q ??DT???D???D?????h????.?>??6)J6Q??O??????/m?zG?fm??tG?3?/????????K:???I??n??? ??Y??5.)???e?????????%?!?? ?????n??????s???U?Q??4Z???H??(????xY= ( ?=o`??e????*[MD???8?5 I????S???:n?q?? \????7z' 9`{q?_&????????L??#%sC????????M???%?r;??????b?Kz9xg???'?y??mE????W?S?I-X?4?0lX)?^i?^Tok???????J??<1T ??0???G????m?'?G??m?RS$ ?@?e?1[?n4J.r?? 1???8?!U ?#???B??y??tZa??#?R;]?g?4:???????|e!???>??f}??_??? ???^]>?H/????? ??R?ybt$???Ba??B??U??Y3???????e?4???2? {M#1}????;?5a???????J?." R?0P?x??????F?-????Nh???]?????C~??2???zQ'f??xm?8ra???O! ???M? ?s?8B?????x; 26?SNNo??G??)?-?m??4[^??7X??lD???T????.??.*%j?H.?????]N??[?S ??#???!Du??S??Ho????vS?%?????? ?*?? 8???4X$?j?6Bu??'???W ?? ??f?-?????J?$??y?,??5>?3??'#??6?%xP?s"`????m(?.$??k3&??X?~???y????4_??O????l????"{??,]????2o???QTxOk????r? ???xE??^??e?????c??Rg?(?<;a?F`???Q??{q??j)fU?r?1??YsuI??? ??8??% b?&???X??iVd?+R[???`K??w?y????~?S?????@J:??[f??_r}???[????l?fq???????4?J?yr@? ?????6? ??C?D?lJ??XK[???9o????g??b???_?!???{2?>??!??b?e??)?;???V?????TK?????`Md??_<a???X??~1??m# S/???aJt???????S?K?r?V0???Z???x????*@??????????? ????/??-?6??]?? c??&??H?R?aVbJmi? ?/?Z1}???(?l???????? ?c?|?au??c?Z?'?? ?fV{<)e'???????uiI:?'!#l ?w?+ ?/??cJ??V???K,??ojI????v???*g;J?u?1????,?\ZI??H?`?+WXZ???;%??t?|d??Ee9?q#???f??dGn=??D?/????I?-???????p6???%??"6Fq????rQ?D?? x+GZ????R?*V'=???%{????T??:sUH?4Me'?%?4??P'?@?gQ$???:LYqxe?76l??B{&M?!-??gZ??k?F??5?y??t???)??-I?=Q?????-G?Va,=??J:???|l?%%? M ?i?J;!, ??~?2g??#t??r:%?G?E/??H?iI[??~ G??Ly???%?=??k?e????l?tC V({W??q????Eg`??!??? ?????%^????pYy?b?q?.???[?ht??+??C?&??????dv?;?u?????n? ?i.?[?q??????I?_???h?????iT9x|2?|?F-??'?f??????.??V??/?0?0?H?~M?A)????'?;0???????????2 ??(?6S?J;?vG??w?E ??u?f#????>??[fg???cs?+????o??6???????O?,;.?? )?'"??x????j?^bc?????#Y???ms?????????g{???>????? ???T5?????*?@V????1??R?FT-??????gB?T??KD%????????F??s94?T???h_???AU?H-z ?????D??W???Gjd??7T?R???_Aa~}R???n???????(???O?[ ?????R???o?F?????~ ??V??h*X9"???l*tv8?\ ?Q?? ?#??????`$?()?Ym????W???t?E?`??;W?????So?qV?d?l%?R |??w?URas~?????$?W?s?????*?ccN'????C??"?pYT?c?XY?Xt?a????H?AxI? ??4??????W?.6????w????Ne?T?? =?L???r???????????;???~A?&???????s??qG?%?o,???o??6y????!?=???x?;kw\f??J?Z?%?+??? ?????B??h? ?EK??????=S?(???? ???????}6??c?8?9F?*??#???;I?o??V???????#?6???)C??q,SI????.?(???????|???|?k??cE8?2?&3???%?????? )?; ????????R??.d`E?"??h;??8?1? ?p?"?7?????A?Vw?(?=!?b? ?????R?????l????X ????7~Y??T???5???????p?//r???9Z?`?V?o??/&?]???8P?iN.tbI?????Xz??:F X`?|?^vP?R?7?s?H??m??????w,??/"I??G????,O?q/ah&?Q?[E8? 6?#6??+?h" !/?????????YT0Pxl?xFqk`l????? qXX??rO??W??#?v????w????0???P??|??/??D???0 ?t???jX???B???D????zsB]??\j#??p?[???r?Jn-?N+?9?~*yvm???4????????G P?????I??A$?`R??S"o?Gn??Tb '?K?F:?????? ????o#??,a?R*????ha)??Z??a?kR ??I\??$5??f????j?u8?(}0???d?d_U??T?????????t??????Yq?a?[Q?? U!?ELR?h2??y??????n??????O[??&????D?[??q?j????E\????:???Bv,z?'fd???$?`K???8??L?%?D?B????\`,?D??t?????1;?a?M ????VG????[??w?SRXt?[$??Y???'??HC?gg??H?????????????? ??1??u?EZ?dC?????^k??{}v\????Q?N??]?)?z?l i?od?? 9???????=y??9?59?\? ???;#=???(??,?B? |M??/0??R?@????:k??N?N s?oJ=uw>?v?xT??????m|????0K?+???6???w?1?=??r?1????c???J?S???#??k+????Eg??????{~?|O?Szw??#_??R5??j??? ?!f?+?ds!7?$tT{Q;v?I??h?????{*?7d?X??d???D[}???????"J/=?,? K?????+???W???d#?x ???.R??'?>~=??LoL??K???JJ?wZ???????d?/r?kQ???of?HLA+????????L?giEX?6?v?u???v=? p p"?i?%??KAw(?I?6d ?"? u?()K????mW?X?~J??%.?HJFh.???:)?:??J?l`U?!???y??I+0? ?? ?{?^ 7?L??p%?^??? hT,"`N?1?p?[cc??8?J?'?pjr??5!`????P???????|????c7TF?,??s? ?. H ?N?xVp?1?!?z???6??s???@??Jd?????;???????k?+?$?? 7?s?*??n>?e2???Wn ?7??'? 5MKC?L??/?? ??-??Gy??MO2??r????pk?f???\ ?????? ?aQ)?Z??Z*?I>6??? ?#uo???:?^?N??p??z?D8?v?|j?f????j?qR??n??????*|?)????r??#?????x#????b?????G?DT??n??N???4???b??4????????????[;???c??$??o???O???????????I?Du??s????dE?O??6??????3m????-X?;?3r?b????A?T??U?8?*??ll?:?X0??Lke??l5Tx?B???/!???t?m?u?? ???/P???U7??6)A?}9??n?|???3???????b???"??2??wYC?t??NK??? l? },??X?s>!??-??-?^?R??{ *??!a?r>?/?????? ?}f=?g?&????????????w?x?.?h?y~?Q/????}\?????a??%?1?????$?#;?(d/4?+y~???????avq?(?l@%??x??????PG??R \?.B???=?H ???oHjX?ZcA???-V??Fd??h?????z?Z&?????~?. ????'?,? ????{???R?? [??i???M?[,????d?7J?2}?&G 60?=7a1?=v i?Vv4??? ?N????o?o???m??????Ru_?????uJ????DzM??Mj2???nP??????y*??M??s[O,?(?G2??lW `????O?/??S?????Q;|?w??)? ??G??iB???_?vo??S ? 3p??? @?+?c????5$?;X?* ?-oD?3?5?>?6?@?MX#m?m????R????n??\??s??8?7`%??R??????o}m ??S"?<>?g????\V]{????M?p?q??y[?E?9]x?97=v2'E??-????????6?~?d????7I????S?,????!5??? ??:U??e???L????:i?Z[?I?[O???????-?_??,??????q ?,1;w1????2?A???xJ@ ?@/?7=?c?????1l?.t?v?b+?M$??l???Sp??% ?vy?"1?Eii???[W??A??9D?0x??`*a?VkC2m?z??'???/???c??!?L?uz????????|???~?~??p?6??~??R)\j?&;?\?5?b? ? ?/Kj??w?=[J???g?Hf? ?%??a7o ??w??Z?)F??vG???U? >-<???}?-???(??=? ??? ???LJs?|???1K??R??%?0W?????&?? ?@-?.*ZW/9@??>>????B_`? E?;%O?????R8t2Po&??&???K?Z.?x?Q?HAl?x??'????)??o?????mR????w?????????Qy?nKk?Ej p??qyx_??y???b?:ivg!??{S?s6???'??} ?????^???? ???mD}????%F3b?MPqX?aS?h.?X??B?J M ???k?eC??,&xG??:E??i>?????@?R?X????R??q??<@~2???*S??? ?????g??{Ss{??????w??7q??D|?c???????d??hm?3s?VE????g?,]?x?????M???i???l9?tSw_t????\??n?>??)?.4??,?of}?^?Y?z????G?????? ?(n?????w??Q???&??(??KB?b5?-??)???y3?? ?f?)t?Q3u?d????r/?1sP??R?q!&kF?O??? M? +??i????Ksu???GQ??Q???_??N0???MD?*???R?'?IU?N???t?V??P?v?e???"???#??V??????????P?I?u\,??????q???? ???e[??;C0B4? \?????fH?+?e 3???EE1V?(\? :??,e?????y at ZO ?Ls??????aF? ???4??=??V?Md7;???6???G????TCwe???Y?????*5z??p4???#?0I?U!F???vR??B??D????? ?Erh"? ???lF???#???/??E?t?????F??5????/a??:?h%E? ?aH"?<4 ?Gz?:????U?[???????f?B[????t????m?r???|?A?k /??~??5]??|???x???Idv ??c?,??]Y ?????$?4?????????? ?*????/vs-s????P??hL?/???l? ??4|U?F?? ???.?"???????4?>? ?^??;?bzW,??I?/???b?5p*$[?Q??b?e????6?"??{??????&v???z?v???,G$?-???{???Y,=~?????H?!'???1??)-K?_??wa?'??&???2???????f??X?wS?Nr\ ????P `[+x??????Bf=T+&?c? |?$? ??|???XT????q????J?!?8??|?????W?????F{???M2z?vFT?_??a???0\?\IM ?]????Q?????R????\?Jp?f?a???fD??????? J?V??x%?3 ?Z??d?,$?Q?GlPI?B ?w3???&??0cF????d^]?}3?}?3${V??V?9qn??c???q???1??????^a~I?-???h'|d~Ll-??dU??p??t??????T?#???N1.A???:? ??????b????*?{????L?a??x???\?i????H?h? RVn??????????O?0?~Fb}????G?Z?@??#s"?)?s?&?g?Q?T?kj??0?B?????Y?J??M??_?+N??em???1?"???I??)??&??P??????&??|?V???.T?_n` ?zWWMyx??2{%?0?>?>??t???f?\?u?? ?[~z?????????x?M?O??X???I'??????ez????9??b?3N?p?u??Y? W%???`?N? \r?'??s???oT??q?/?(??????j? ???Q?Y????bW??8BjE??83?0?u?;???????%?B????#?c;|?a??g?q???M????5?2G C}[=|?YN ?f?(??;? ?D&/??`????b?a?D[??w????U?????b??(Nb?{??WY????|????????h?????bt???k?f8 ?q4?)???U?:/?OSd??B??P>?i??h?R??#3? T]?S ???cV???j???2-_B???X???b??I???x??1??????0=# i?vi???R???/???;,d???SU?n+}I? 'vct?8`???d-?D[?{???}????#7??? Re;????8??h]> g????????"?^?? ?"?Th??????'????? {?$? ?????7?\?F?{y??????2-m?"? ????h??_?????????J'??J??`l.??C??"g?v_w??]?? ???ay,??+/?",c=???t?,???U?v?>,??w?? ?v????w?????4?626DD?0????JI?&e?n?????`/???e?1?Y|?2?Z?b?[C??U?w \??n?HW???J?v>??????X??m'?-?????9??:?W5?'?Ta??@>E?P~C??:?Eyo??!X??7???#?o?!?!?????6 -3?!f?m: ?nz???deS?? f?^????6)??h???f?%?6?Y?O,????l??????#?*mv?,??Y~?=??;????????[au????NUP?????????~Ql2??'&"?~]???????M*??%???6t ???!QIu??:e?}? cj??????Wg?X?I??%N>????????W?6&??}?$??-?3?? ???"?????nBN??7 ???#rE|??d?}n?b??@=\?+??u ???~Q???[??W?=j?U!3????!????????wu????????M??? ?bo"x???.e ????@?e???X?kP3??j?)?`????>?h??w??k"\<??5???'QF???Tz)?7?]???7g?;.??f`7q?{"= ????mL?l?]?Bn?n?$m;Q?????`?? #???+? ??e?Qu7??F??1GM?C???O???Ln!??|(e???k??????K&???0"_:?1?????I?M?x#? ??O?kx???i?y??9?>????S;??>^???B?3*??E??IF?5??|?1?"?H??"?????7?\S ?S????R:qH?^???z??y??b2w?????mTB?v??|?9??_??????3C??? ?.????Mr?f??~??8 ?n ?}?u ???? ?Y/ ?k?,B?#r??8/U?=V?,oG?#?H?E?U?g??^???? ?e/J2+??m?gv???K?/=vb??? ??b?F?3'? ?3???????=F?Z~h?<?z??/???I??83?O??S? l0???J???????? v?a}?v?`?X&?4H%|?????)??????0e;`??=?(||??E?lt [x??F????iF??a?K??qk ???-}?C??5?????J2?m??e??/?.fQ?????$nEgM_?? ?????????>N???z{??n?n????? ?e?a$?????C?-??~???1??W >?U?>a?;?P4?Y?v:Q??(?*?h???@?h??Q3pV?7?'???QE?M?[??0| ?????-?????????W2GtN???s?*:`??/???i{?]?zC+?'c??7?H?Z~WlP????=??9?7?w92??qo??EQq?????MM?Se?0i3??HF?????^R?u?z >??i?? ?F????\?????A"?E?pY?QR?x?Z1? ?y ?c&????\?}?&??,? ?;E"Fjgf?,???2?????uy??b?'????( k0???+??<}K?5X??????v?,33?J??l???&o??B??&??0??^?????@???lgHYbV;6???3??{M?o?F????? ???O???h?{G??Yd??s?X?lo#??8 ?-????^??^??????????4oY???>?NI??P??????>?????????D ?Q5?L?=?Y&?o???#????*??????m?0?L?SY??????K??n?Fa?C;????W??O{???8??(?????????(??????;XDwbS?IN???f?;???"?e???????c?Td\X????h?u??F?s0????????g?q?*?N? ?d[~????????FPQ??+X????b??}H????{?Cd?(????]^?/?e?w{?????U^+??Vf???x?+d;?ux[{??????????{????D61???\???m???]????~r???i:???]a?"?{CH:pi??9FN ?[??1.s???E????.??C?X????????v??j??;?}p#??\Q???{(???6y?=??????()????_??X???R?k&G?n?4?>^??D*?Brz???`3?Y,???p'u??C???7?g? ?=?;S7???_??}????3?^??t?X?xX?)?]??0?H????x?1b+Z?Q?KS???[?a???8???x?????????WhmV????\?:???????|a1[")6?? eq??f$)????? u????????)>??nx??w"???Pp???x???/V???s??K???? ??'?ek??~?????VY????`6??TGH?t???C?D???s?K?????]~????a?>?X6-? ^?w1l6X???7????2r?\?n??X??Y??;?o&???f??j??@[c???Y??Uf?J???`?6Cb???q4? ?Ud.?????BF????*??&lBb?:Qz?!0?S??5???BB??? 7???3?b;[?j??H?1?]c?1?{?E?? ???p=? ??9????[??8??.?F?????M?'==IF?[g??E?zi??@?Z?%cy;+??`}?-????d? ???""? 6Z?3????H?j-?u2?ee??Qg9x&??b??????????q ??? ???L1?i3?E?????I???u??b???????????????)?@ozO??v?`???F??-??D?3w??{?$?;??@?uJ\m?[????b??H?l??Z??W??????F????sr;^?P??&?=?????m??L YCX8?N:??*?$%2?^?F/?q?qoT ??Jf??`???U#[??X] b+?`u??JT?!???????iX\???????_\?y??k?8m??.M?L?_?,???6????????$&? :l?^z??(1?'I?M??h??w?H?]?0????:?Yt?!?I-5???8-????.?r?\6??'?AA?J ??????n4?LC?8,?e?R ? ?*?i ?u?w?W???Kh????u?nu>?[??x?????"Y????w?|s???6a!y%[???:]?0?*P7??}I`?;_AG]M?????,????Nw p ?????:G???3??Qo?)L????$M?"?m?A??W0F^#??P? ???H?s??X_f???D/>??~????b?9`? ???Z?O????h?k??}?z??D??J?b?eT????????`??l5 ?N;??j?H?#??? &?????e??Sx???Y ?I??)?>q?-??h??%??R6?d?????Y??A?0?2s$?9K#?U?Hq;F?lSj?l.C??/F??n??I??f???ak"??WR;???S?pe?Y????l?L?BGFZ????H????Wu??a7?h=????`a?a'?x?? ??cj=)?6????????????{???M??:?q)??p?($3?4?y??????l??? }v?????MS???qi?>?N?oR?*???sI??_??YO}sG???5?rDL?&?#?!?#`p)O~G???1In.?? j$.?-? ]?U ?&F???P&?????????1D?M???pm?7o??7?Y???04?8?;?d?b!????}????E+?+???pq??&?Z?i?6??8}?? v?H???$??Nyb??,?Z?H??%R?A+R??v0???k'?o`??g?s????363??????s/??f?%??????)??f????????;3????? ?x???;T??qn3F??N????]????? ?(*?????N? ?kL????N?? g-cm}?>z?v?J????K??????{????AQd]?"??7X???O??.u???^???P9????D??1?*?T;?0???kd?Z~??U???$?nba)?p??????pG?(????6]? ? *???0??F???????M????x)8\~)h?a.?ir ~p??)?w?`????-?l8q[6?5P??%???C??>?E??????)???>???E?e?]*g?????N?eq?????x9?? ??c?)U??Hd??@4?)?t8?nD?a?f?y?y?5TF??1?U??+?j???q?K?????k??OT?u?2M|@7?#?????p=?2k???%?#??D!M??Uf????K?????u??&?AF????ew ???U\???5?o[jx)???!???^.P??bU??*?yr6>,???\??sU?t??h?Jz?ovD???9??a?o?5p??K???u??????W???&a?u??4?9?T???)??;I?7???}????+??8J9?[Df??k ?1??????,l?u??15F??.?HJ??3?Y?Q?cX.r???%??*UaD??a??????~?N?g?Z?G??Z????????7_??SRy??g?I?VD??'K6? .;????Cu?8?(1"?4??(???N??a?????[X???1h??_??/u+??X}ogZ??*?^?L*:???G?w??????, ??l?}???3??w??L?X??E??? NFTa??s?"???K.?}?cY{^&????,)/?6???5/ Y??:%????l??????J????????tc ?????5IfL??=?%????4??z\??L?8??(_?% ?g?"???f@?_tG%v?2Q?5?8?? -??????4?,?[W?????^7????sR?t^?@j.?#j$>?Z???m?,,?_??H? ?n6?0?????.?o.E??bk??#????[??? ????h?? ??++??.?????7@???U?U?>l?\???6?????c^?+?????w??b.`? ?u?~Xi`????&a ?i?;y?????X?/H~????_5?iM e=???v??hrNE?>?E;??G???v?F?k7F??W????? ? ???z?%?e????1:?e?? ??{9?v >.????=(??-Q?jVF??Z"??1???V???0?@??$N?L??]???l?si???1b?F?z??$??M????d?:?K??F[???f???;???#??F?M??w?-?IG"???!????4??6pi??a???O??X?v????f?zH????n??????B???k??2nqD?7iL at M?r????($~?=:?t(7!5????5????????C?ES;\?+?T?-????.J?M????j?D ?? Q??p???U?p???D?#"???1?????{?f?X???S?'ev: ??e???B?C??2??J???/?J??m,??h?? 8mz??i??>b??%V?H???"??J???-??l???9Lz???PC?????q??L??$)??????;"?l~f???c?8???a#????????c5}???K??????W?1??:I?????x=??????x?6xd??,?O?r????{?? ?n?|r-??&?^?V~?93]O??S\W???D???q??? ?jb???z7zU???DD??eJ??????? ?U??^s???/??uR?t?{??v???????`M????0?w?`2?&??????AJ????s?V?6?????????RwN$????z?????Z ?S1 ?l $?o:??\F????t%??o?V???-??l?Lq?H_?|l at j????????: ?JW G?r???F*[e??/R???? 2??MxyV?w????$>8?8?9??4q?'B??????M)?\Z+r?3O?m9RF>9:?|?4?9??'3S??::?08'?!Z/?Vy??b???a?xI?d?H?p????LvN???K??~??????8??Vq|??V?|?p???u?????}?y????U??Dm??? ??U?? ??k"?hR?A?q??kU???Y'?????????S?/h?t""??7?x}??GZ?J???\?;?R???)A6S38???:p????0?{J-??G?`?wNj??ZS??U?~w????Ul?"^????[ _?27',l?.e???c???*tnB????#t^????????T??w=???.???p?j?4????,?*3???q{???v?z?uU[J]????[a????h?f?|????n?go6/?0?`$?l?8=???8q?[? ???????B???????tl??^h'?%??sc???Q?????c???qV??:-t3 ?)?y??3?8?>f{h???Z??q?T???5?????????b?v?????]??F?D????K?SzsSu? :A??QQ??S?[?F??Re???'?`?;??O??+is wJ?I???~???g?#?Pg?hf?y????8K?I??W?'?lF??????MO?,??L4:?!#)\?????o?*?}9qK???K???????"g?(ov?e??8?8?z?4??Qjx??I?Y8k ???????????W?)[?f?~?G#?.?b???u????V'??jk????? ??z?Z&??,?+??'??a6??m??y??9,L?/???YTV??????L71???G?,?1?Y?sq~??.?O?3?????}u???%u(?S???K??" ?Z??M?u*?<??4???????V?Y?X?V??JmEQQC?p??h?mL??U?!??????>?????????t?_%??hN?#?z?26b????/????%???^?H???Aa???{???_????O??[Ak?X?Q??e ??Q}?w_??R)?? j?m-x?????p??b?S????O???,Ks_?9??H???(??'H????6??Z?,????}?H#P?>?5?i?#???1?H????m?Hj*?(?"?ZV?C???K9'?D????U??H?(?1:NO ????*? I?0??5 ??D5\[???o?? X?z???T?????|$????d? ??|?H??????C=]?l^?|x"?? ? ?X????2????{???? ????&/M}}??P?????:_?>?z???6????z? ?j??L???87p????d\??????[??,`???pr#????????OH?,?]z?]T?]N?F??)????\;?:x??????!???????0?qae???S???pJU?H????f?SU?5x???b?cD?Q?????F?a?g??;?[?B?????D?io?Q?5?1????^7?_0??;R???<$???1?????e???|? W 7?????k9j3???U??M?????j??#?????????D|s???/b\????????p??c d?????m^p??N??o?; ?s? ???????????????? ?S??F?????b)?Q_N??ust?;V?~?Za???????S??s?D???D??t???e???]?.;?V?%??:y?p)]??? ?i?????-??p??\????\A???g????? ??W?????L%?5cfx?E?o?_K~???w*}h??.s?'?[K?2?????M??????????? }7d at R3Nj????$?E?gW4=;?? ^Ju ?0{CP???????????c%????????0????/u?2?=?o?? 0w??>?"?V??n?:???O????e????:W???0???.??9?d???@??3??Fd?F{??? ???g????Mu???????*????;?)m?\???f??&???????*p???????1b]F?&?e???6k?H???~mI? hi?6 ??`'??b?_??k?&?YD????VFZ7e`?-O??6m?9$??`?ml|?????;?w???5????&y??}?I???????}?I????Q????????LG??5 ??e6{???OR?O*]?9???k|??G8DZ?p'??D;??c-???P?S??&*???y??E?I?i?:??? A?o??D?/u????t????)???????F?`u?vyY??A????x?o?k???o ????LE+'??na??e??'?"?? ?>F??i? X?h??P?OtC`?d??(????j???F??+Ve????y??Q=????=e??$?? ??&???Kx????q?{@???-f?(F??????????}?_P?:??+??A3?T??????l???(? a??+Wc????????`?Fi? ?t?o?:?N?#?&????a???4ko*????????W??yv?$?G?S?gR 8P?b&?5V??p???8?ZO(?+???Mvx?I{??$???Q:??? ??2)vHi? ?3? ???"C&?I?N?4???Eq???~??? ??zL??Bi??v?A63?? x?yF??i ?)b1+??1JrZ??p=?gtaN? ?L9? ??q&5?(?[??L?=?[X????&??7???Su??????e?[%?`?<?j? ??????j??'????H??$*?}T???fnM&Y????:w`???[/?j-?O??kl?(??D$}?>N?o???? E?t?c?k?Y/??XJ:?@??TW?W?Q~+??@7b:M????Nz?j?[?Q ??B?D?3l??L?0?+I5??bC??/m}8)G??R??uu#????&s?+i?&???Q?q?q?????8??<"??Gm?3???rXB5';(???;Vu?'?R??$D????e?de?{+??Lti?$1q??o?????FZ????????K"?t ?*p?? ??l?????Ou-?? ?N??8 ???.15????w)??\?[?2v?\?z??/I??:w?N????|????H?????{5?3??????#?Z???1??????%Cf?eD??G.??#xOQ?Kj|\??2?? ??[?g?Y??-???~???Y ??????????,?E9??~??????????o?,?t???::????4i??Z?O?vz"?v2?????M{?L???H??"? p???I??{????Y??&?j??N2??\?????G3??Wq.?Rj?=??Vy(?qU???????/$???E?oe?L??(6??~?????N??{? U???4U?;???']Z-?f???-s?]vc?]?S3??_w?n=???i?H? ??75N???Y??X??G??=O??Ez=U?e????????0?@m&?????I ?S?/??N?t? ????a,?hK?T?!+S?a?i"k??U????v????]?L?\';5FNxT?$q?g?????l??|??A???(?3sO?y?QC??z?H?Vv\????????c???????2????@?e??Y??????1"??qi~ _P??5??? ??_??sY?????t??fq=??????j?Nq???:???j{??T?????\]QycD?W?RA!???l???????????.?^??O?UW??H\ S?j /t?a???7?x??b???g"???C?Nz- ?RNZ?p?????1??'?D???M??8v??4 ??+?????s9^9?^???e ??:?zQ???9)/???w???????I'w????h?N?9u\???E?H?? ?h??)????O"???????H??`?????-?#?r??M?????d?XR?3u?~?D??G??5);?+??CH?!???@c?k u2?????G?????z?r??,?v> u??bd???\?L N2??x?h?,? ??4B??)5???j???f?f??N?31????z*z?@??(^????????mP?2?n??Q?|?T?????[R!??k ?{P?????-F ????]?E???u??G??46?us w2y????????? ????+%????RD??L?? ?O?G?2?4!?vTi??}???+?$?????!k?+??:?????W8??????????k?? ?,Mw????h??? ???2?v7Tz???J^?+c?5?W|hj?????????? ???s?+???????B???/Z?????&?|?UD????v ??nk??@?3??`bn???y ?P?A????x?,?Gw"? yTT?#r ?`?EH??????A??????$I????H?X+??8?f2?~??`!??!????(1^2^???'?)@????v ??8??H?k??R?Z?????-??H&]^>?Z'"?h?f?Q????h??Mj?D=???? ?x?|?`????41gB2??????}$G??U??=???v???a ??????4{pWd???d Ma?G:,??.Bv]"???$?\j/Z\??M? f???\??????S????????????8???W??c8ju@??c???!?%C?u.??m?????c??0[??2?#'K???D???-?6?w???n???????\}????3??0`u??c??&s??r(? ?j?????l?8???*m??v%2? Ptg?`?j?%- at 92}???????[g??C??hiR??"k???7?$?oj???X?/( ??Hw?9??dr 1 v6??(}(oDhxg][?? x?,?/>??f???c}?Y?C`??5Z?f?Sv`?b??X?E???@?y?B???&ea?)??o???Y????????Qt?uZN^???O?4tq?C?? ?s=?l?z}????H?&??b?;??kT?>?????d?|??~?E?(?,GC7&?A??(ua????L?!?{|?c ?N????t?g94d??v?J??r???\^'?q???~1? ??r?????j??k]??3?!|x???(5}5?R????? ???;?F???????c?E;?vh?m?<*??X'Fo?\? ?0?,~[?'e???C???~?]??-?b??? X?????$e??+*O#?)?Ky 1' l???ia?o???????P?E??u7????????SQ???|?^ x?1?? ??j???&??u*??O?ZJ?o0???J???O2E?,?? Mv????CG???? ?=?qK?Tn????R??S]c?-???l?Sy????-fbk?u4???????????????Y?u?4???????0u#w???~A??w????;?2?????z??U"?I??K? ?1??!??o???v????g"?3?? bu?U??vtL??????? ?m??);??0sI"Q?,?#u??E?????y????r.???7qc?c???&?????#?wR5J???? ????e F cNo887??co????H? ?^j?X??Q????????????S|?????Y???F?.UY_?v?s2??????u?95[F??S ???Ax??????q?hgrI(Xz??????F???x??????e E??D???.m?????Tg|q?C???\??d&a?4??s.p?????????2????????)s??1?????2Y?m?^?-)X{@+u?t????B?m??4?7?????%??jd?QL#?"n;??f?J?>8XM?;?& ?4???j#s1?g?????L??j?')??????Q????a?o?c????%??????gj)b?x?-?s1??v?y??z_6??G??F?Q|g?????u??/???0?(F???J?_?????A?n3 at gN1?if )????=??c????W??????dox???"? ??-??}???jm?}????u???D??IU<P??fO ?DK???h?????J?R?=?$??B?`y? ?^s)?a??*R???z????? ?K8xh?????{?}7??????_?vT??l?%78?J??????}v?q??[?5?=?z^10?????.h?]??(?]X??k??a???R??D9_?t??U? ?????????7? @?3??0??? y'????????? ???? ?=??J-???%??QRH?=?yl.?4??k91????&`??kg?Na\???s@?kZ?l?iTiW??xE?????(Jl???S????(?i?? ???)?>\c?C?#?c?1??,?3??@)rNA*??T;??sAE???17??dz?G]????/?? M?????g?????eYqj?o?????%t???r??C???:?m???f?D?? ??k?"????0|?>q???l?H??,?=?????Rm]????1`???'l??U5?=&?j?^:`????Eytc?I??4:??D?'?!?VU?d?02?f????d1?g?C??6???c8???wI+-u?!?|_???? ????U??C?K?~???p{??N???btx??D?Q?i?[??????{-M?;?"o?n?g7?=?!???i?:4??[_3c?l<?v???E? ??t??;?M)????,?o?8?xjO?z?g+??? ?g?x?HO0U? ????=??=????]?z?_?????Z?X]{?????7NZ??????P 3??\?~i[?E??4??????????)????!2??j?S??c?x???Fq?Q??'q ???? ?qd???\?!mpO&??H?? 7??A?M??x??T`?"?.R at 7?L/?N????'J?A%? ?G??n+jN?????C:????u ? -?????d4=??x%????'?6?W2?v>?gb\r ???m??2N?K??$??qu?!??z6?*?V????o??~???????r????????????????(F??J?O'?~?[(??yQ?H?nD?>??,?g????a????????eo_78~??U?e??`??|?????G????l??$s???a/? u?@;??pm4/B???),??5??DqU?????H*????t?/????????Pc??.??????-?HI???>H??Ce?Z???S????ZB?cv?@;Fq?c??5?/??:??????x?v?@V ??"??:???Q=???xn???M???Fm??K??????3???X???%?5?~'?.??*v?S?5??#???(?7???????~V?X????4|?????jXA??Lh??R=?B? ?v??A.????C??})????y?A?(>?PT'????[ ??3??3X9?"?qU?e??V?jq??-????R??????v?U"??? ?"?*?Q?_|???67?H?u$?zh?\J?u$?d??~???f????:?t?4?@1F?HO?HuCu?c4?v?7??q?V`??35q??y?84???S??7?????P????l*??~??o(??T?IOc???????U?????L???'??+??('RH? ?hj???2??7#?~{?B=???????3_?_H???g?? ) R????????U?????I?`e?D???F???e@??zm15 ??u??? ;-g???wC=N????+?lo^?? ?IY??PT?????t??L?o"7Dp7???5k?X?d???$?L~T???|?'???/???'L???????>?????_?p???????M ???d??; ?6F??#??}?nqc? z???W???3Z?!/%??q?#?Z?c??\?6???E?;??OW?95g???,|?J?????Mb?/V?)??[???jaUE????????b?` ????@?FaTs??32LO?]???w?X??;?@=???}+YD\???.??{??V???Y???T'???pJ7???????Z?G??r?!?p???????%?^???^F8[?? L/mO9????N0?????bctg8x??QUD?1??u#1lED:??eY!??,[?5?`_???r??????8????7??:???????Q????nkg?O??% ????t_???` YJEl? 2??????Q??$l???"k ?z7?RqO l?H??9l?V??L?0Ix-+???\?l?U?@??m?8?.M'f?I?#p????q???????_??t??g????f*X??9yi?xM?^???d??'01????d????m0?`????jz???H??? ?V??4??B~?i?????+f?Uo\>????l???k?W??a?????K???????M@|?????????7?E???G?6?r&{??AE?V???????KN ,Bk ?0&???z?D????Q?7?+N??(e? ???k00?Mo?`??.[?G??y????s???#?h? %???j??????@??????????I?d?!??:u?,P?#t*%???K'?ZJ????|??(?{?????4T?({9????<Y?R??FfHxh??S??q6G"????0??i??l???A{4_?d?%??%9 ??-v?n??x?h?e??QiIbs???^???? CV??2???.kY?u??4W:?N?j'Z??i???=?o???!???e?;8C@?g'?e*??Oc??8 ?dx?EU671GR?8K?S??????Z????3V????'??? ??j????oDa?>?c?????LC9xnh???;????Ax?\{?n?5?h??YQM??#iy?db?????,??$G{?T6?p????v:H?cFc;-u????z???n?Sg?:???+?&P??S?>??????2H?L?el?=?uj,E?~s??????tC???bKb???k?e?Gl?8???x??rY??? ?t????e?v?4??????i??!?i?henF?????4w?? $;?l.??TJIi???E???:.??6??JY???rM?9?)??G`g??hpI?? ???G0?J|t cv?????????I??\?J??"???]q ??I+U??-??(???#??f?6u:??F?????\1???!Gj 6??,??{??????bb?????????"?*???I\v?=,???y?'8?^#??????{?w?????Z3?Hv~????>0???O?s? ?|?E/Ud??&??? 3I}+[w>?????o5???v? ?@??T?k_p?z:^???? ?fY?7?????Y????yv???"'?;???w?tk??????}u#???S?????!???>?g??[????T$??1???'?V?8? ^3??F??j?.?j??%)7? ?+?'?*s?S? @???"?lm{'Rk?/a??????????d?R]???E???E?u)??K?? l???k?f??!??t?_???ps?c,*?R5??S {=wj;R?H???"f??K???*?t?&?s?m??p?s"X4#{?????(i??b??{??`???wT;????6 ????U?-Afw??L??\F ??Y?V?9??}????{??TA?P?d)?;vzTy~??uC??=?Yp9/H????f?kH????????H?N?e:??x?*;N????xSU?s}??y'?{Oh??t?MK?+M??1??H?tj?hI?"?;??????,5???Z??0CiL?O ?)?n???? ??i????W?gj??n?w????)F???!?? e??l ,?X?KUt??5&\z?Q???Ro???mj ?6#?b,?????/? T?$??M]?2 ?N0:?.?6???Y??9??cH*}h??29???i?*7S??PR??s7??????Pk ???,??r?L???????#9[??+i =D????????)?K?K??J???\?/|ov){.??y??HY????g?"????A?"?]????h?(M?s??????XU=F?&g?P?C??c??`f^??9{?XK????/???E????)#?,??????s2/q????~H ??x??? ?z??I9?? ???v$?>?5I?w????q???/??h?,???1=$??R??k&?t???Yf?????f??r??*?????|?)2?eq?o2^^N??tI?o??f??y3MH?q???7}G???&?lW$???u??b???S??? V<;?i?"Y{???.)????(??;?????E3GFX??hx?L+[W?{?t?x???_?Z???k????BDp?cT?(?Bux?????????????\?O?? ?? ??????6??cN?@???^????????D?K? ,??Q?>}?????W?\????.?K9S??Ge??yj5?????p?~?? aN?8l??O?5P?Xh=??Gm?s??7d??????a ??L?(-VuE?I???? ???????V??? ????J?A?>??l55?MWe9?Z?p????(?s??EZ?????b#??A)?????`???{????Y?#1?H `?lY?>N?J? ??V?7??''j+y?e-?E? ???5??M???n?F}H?d6J???????3?L?3 7?#?M?~.?9????????0fk?O9|??e???????Pwr?m??????j?,??F?[?G??0R?I????w??? ?Y??t???YVh?3X??o???ERB?S?????(c>???CI???d????? ?X>??{??????)?_??X2?rQ???F??,_????k????%?A6??l????S?J??w0ec???u???F??~??~?:w[r??~N?O2??F????????T)??_?}??f???G? m???v?Hg?e???} ?6,=?]8?h????????C?W?k??"_` ????Vv)?\?? ,????Z??R?o? ??(????62???LE?9?????????0?0$????? 6;????J?*?X?@o??M'9???zS??(?5????$??By??w???E0;?]?\J|?g?98??E??K???N3?s^2s?#?????j??{?L?????-cOv?/???l???_??????Z????E????W;???:????pSNP_?mA??i*??F#???]???+??R??Nz?S?h????mQ#? B?S`?a?g?$??????? ?C7???W?YOm????-?bft*e???D]????????h?`?-?+??yppZmD????w????7#?i0e{ 7 q??t?:A?hn?VQ1-??H ?;?????|? W??B???\k??j???n??]9e.??S?????+? 0?XM?:? ??#X?]:??c4?il??%i9????)?? )?????:?w4?|?R??)H"???????=K?OM??????]?8?????????]?????2?G?FlT|???N?E?????V???!??,>6??6?6??[8PBnQz??????I? ????*?J?? ????m:?:`I?d"??f{??@[x?'~b?'L,??V7? ?#:?*>??eD?3??i4??v?????}?z?[g>??? ??\P-)???????l?>q??-??8v????E?QH]Q?05???5J??D?D?x]?X?gk????ikGUS&~??_??p????8Dv)P)???$AQ ?l?0dP???s7?$?~.T? ??>?l??~ D????.??6np.??7? ?Ee??o??N?{?H?I??b:?H????Lt[??9??????4?z?? ??,??i?7?????zI\S-?6????^????(??(???U?yf`??,????8?"f??D?+?f??O|8?I??'P????"????????mQ???\?m?q|????#J???q y?8?K6S??>?{k?{B?xg]???.??1?H??\W?f?6I????????'??????Dd???!G??.Cf??"m?C?!?q?n??????)??????Zs?V??/.?????rX?9???n#?n???????q3}?6?U??H???j)????? ?g?oS L?D??????%?aX*X????~dB??^?g?'?v???:V??%?{e9?`?? ?????q??3??I??O?q'gX?hKDY?R?????w*G?5??'XA;? ??\?1???1{V??)???"#??Sj?? ? I???W???%????Di??p??(?>V???N ??#????w?z9?{????????i?#o?/w?[D?j?? y?????? X4? l??l?G@{??1 e?_^?@V?T????^?????f?; [?(9?h$"?v?????????H???????rX??T?+t>(@???|???}??By?E??}?w?w?-^??d???xM[??h?VCx?,Y?H9>N?i??J7\?????G?I?.????a>ph?/??7Nie`}??@????0?????a?@?03?H?6??????5^rr??-????e????4????K?????X6?!?????)?v??0>-?q?;?t ????0??:K??v.?I??f10?N?????v59??pXD?m5>sa???h?H????w?4????U?zr???fj?? ?y??#$???9?????I?S?s7????^?"?/??N??)????? ????????O?????i??6/???zz#d?,????#?>???%?[S:???????? ??]??4????Ua>??5I?? ?JZ?kh??7 ????Z???=??I??"????SO]???b??m?????c}6o?g?\??_.X??1?=@??r?!e??F'f?]?1?T??#??-B.M????? =5m??S?*?^?????6?<_^??yJ??????mS ?^??&3 {??!m??e+?????V]q?`??'?Y#??BKK??N5?]???L.??B"?R1?< ?E?g4q$?V? ?????$>????@? ?{r?q?u?q??`????>?o??1?uZ|?>?g??#m?&??1J]?}2:x??? z???ja?/??????n?d?& ?;??am"?!????J ??\J???v??YJ?XoSRXk??f ??u??? ??,????j?-N?J*jVOX?AXIY???c?|????Z???? ???*"Q?4K??j?????$?g7??Ea?JE???K7?; zf?!????/?? ???%dR?x9x?U??uRZ??{????q?E ?????[ ? ???2b??%"??????dfR?A??)???45FN??????Q{??8?kQ?????????Z??'qJ??????(t??K; ???aW????F????d^,?I???[.?????#?"?x [????/?? T|?AE??/???#.???_`?S????s?4 ?|???W(M}?EM???}0??lq*?@??X:??g?V??.?E?E?iol?/??z??V???} P:??8r?]??????0??????F????,9$A??Z??:?.??I"?'??Y_????PX? ????????? ???h _k*(??BC???t???????S -5?v??E?Q?b1??n?:?fU|?f64?*y#]G??X`H!???*o???*}?E]ks?I}[X*ie?@???>M????Q?U??^??3H}6?,??? ??Y???I?????1z2&M?K?j ?E????1????t??$ ???_v$s????|?`?K??Q?W???aKD??C???E??????:??????$Sm?9b??wK???b?{]>????u2X?_???H????t??SI?$???g??r?????Y/?G??,?7y?E?%"????0?8??Y:?3????"I?#????Q??LzV????b?VC??n?w@??V?z?u?6???wt:????X" ?5?3??4????\x??????qQ?~b?E??H?h2?????_(??@??3??;??8????'?'???X0?S???I??d????-??8[?????4k??_???FY??X????? 0i]X?? ?r?/h)ckqM? ?!???2?IQ?8????v?,??0??8????'a???Nk?y?k?????????h?Qk???.????|O??O???U????w #d????i??o??rv??EZ`Uhr?O?????????y5X?*?x????z???G?m???f??(????JW??p??,X-??3?^?7?U??k^0??W?p?q???%/?q??????nw?????v??K3e??l???(??|{S?F???#U#l?:A??X???+a??A##I?? ?????Y?4A?h";??x?Q ?^?0?????j?n0"?%??!??E8,Y a?uT??Rm????Y???'?>?Xr&?L?D4U?n??GESi??k?????S???nuU?g?f???.?L5F6???M?Si??c?9?o?????e<'ZH????q??Mxn????q?1HI?vH5??y(?2?c(??+;q??p?U)i3?Hw?f?(/?c??l1????x??DD??T)?|!v?D?5???3?p ???_?W?TZI???6XR?|]????@+9???7??q,???Z_I6?B?*?mq?????os?????a?t??V+??v f? ?\t?=&h????~W??????A[W??????Z??:?wk??(?K??A^??*????7-?}??A E/|?x?]?L?0????<$??Tk?????/????^5?eg?m"?I" o?T????"?????t??Z???v G?s???>9)????h*?2Y????y ?_j?'i5?;+?i? ???V??0?? ?e???rv?`????Q????N????(?>V4W1p??q}?????d;?.k???Uw.??V3??[,?P;???????b?X?h?W????G????4??y ???$N??M?u??????w?S?0U??K ?|:?,?}5??AX?-?F?JQ?.?fZ???G?N???mR??5?_(f2t?>p?~?3??j???_\? ??a??????#?i~F??|??????:)K?J??Q??CV ??L? ??????0????E??I?W??[G??? ?! ??;???f? ?\Cy;?? ?U?yk?D???}?jS?!?RS??P???gj??D4?????4??D?? f??????0b?I??\? ??h??????ph"c?????MMy~y?E?w)r?\z?#??0?X^??9??s?g??? [K?y??z??p3?L???{+?]fT_???????K?1????1????hZ4&)=?N???->?????#?/-*?????s?pZS????a???B???l7}???&???*?Wp??T]9???l???C0: P???????cG??\??#y?S???????=?z%? ?\??B?%`Qy+?\????`|<L??}??C???s?cb?S^?R??>LZ?H-%l?`Bi?Ix&????)??R?O???lG?????|D?|X)??],???v?k???au?????r?4l???? ;l?q=???? ??f@@R1 o??????K??????????l?4?????nbk?a????o???????&M}??E?????^??????|b}?H??{????e?vNw ???iy?]);?????q1??/wj??Z???;??4'??8?r???T?I? ; ??yu??sO?d??i?U??}?%?h??i?Q?????????^??l??T??? '?vz?Xd?=/l?S???k$M?+u?$??t?T ?????(?4iH?6?l?:??T?;???/?V&?\'?q???P?^H=???a???]?d3 g?s????W?????b?Eus????WE<??a???y??b??c?01f?y5??9Y??yv??Q?9?B?????9?W?q??7????????Q]???T?Q=????V??.??D ?!S?I??Y?2????I?$in??y_5??l@?2??')??1? "?}`,??]??b/????R[?P???5??? ??sb??Z????ma?h?&??P?6 ??I????P???:??~CNJ??gx&???9.??_*^??]/XQ?ki+??dgC!r8#?? /????:p%?q??'?k ?L5?\w?????d???s&il????nb1`??",~D?[????b??3*4???? ?mg??????0A????????L?n???^D)4h??????^???cV???5???+4??B|?MA????F??????V?v?Xy.?K?????ft??e???I6$?C Vzv????u???fp?wY?,]??s??4?x W?K?*?s??we???R??6?b*?e?y??n??6t?{Z?2k?))??zF?KU????B??@???I???^l8:N?4??.????I"???L$/??c??????a/:????:?? ,?#???6? ??9?^??????.???d?/?;??l}I?????G?J?\=?d???i?????V?b3??????R????.??????????ZO?/;??H>?I?8???_5???E??d%???? ???F2??L;)?H?tO??-??v5j??;?_??Lk??E??u??'?f???g?10????W? ?Y?`BuY????H_???????;?D?????????V??Y?K?i???wHWR?N??] ?yPK[??W?I?????~????4iN??E.??? ???W???co??X????2?????!??_J?|ta|j?6?(????2})z?G???????N??$????fl3?&??C}~??WjD?L??T?M ???Gk1?fn?? ????&??1?7!???Z??6??'??'???3?q??k)???^??????M%??7?[-crt ?????P?j?26?e???:?yTO??^d?8M2? .?!}l???7F?E;7?^$W?J?'o?&2RP??FN??iT???4?5???Z ??JG? x??N?LXj?C??O??)?f?&??????hk??J??R???\H???l#NR?|5?Q?O?_W?D;8B?^?@?4^?Z? ??4?'>ROu?E??????fP?6?r??h????????K?,$??q LR??k#=??????*??H??????1?Q]???????a?z?/?????==??4??K??g? ?HQ?c,0?f??q???*?j??????EmX?4>?????9?s ?I???0 ?? ? ?5????k????w?5`???@*???v??53I??d2??(z??s?~??2??j?E??Hlr#?,?#.d???!?^zM??=*?~s??+?M??g+{?RQ~?`???Aj,9;???d?q>`??a????????Kn?\?d c??Por?mQ ???4??yo????M`?^?????C$0?5?B3C? ??^I?L?`?4?}????(??8???m?????K?;?xE?Ow??-?r?R??????Y????jr4?U?????r???*??????rw lt?Re?f?J=?f?TL ?l????? ??+)??? ?R??;???$?9?U(??f?g??7??????b?????~O5?gW??Q?^? J??_???"9???eM??vB?&????1'?.U????e??6?ETr? ?? ?N4jo?@?V1? ?`?my??r????????a?x?_?zrM-??=?&??F???R??XY?|????g??IW?ZNs??Z=?,j?i?F??????7y???\E?t"?i?:????* ???W?P??  d?A??_b?s-??hCc?@N??Xn??????S???????w?=?>{;??@?????*???_?1~??C?X?Y???0H??????%$?7??2U?4??p3????\n?? ?2?y????Q'??A??$ ?9_$`???Ex???&??e???x??T?????X?T2???yo??H?g??Hd???y??;d[?@?????^\?^a??X*7?h??>?7(m???|E?j3??D?>???:?u??\???s??#N??V??S% 3?c???g?c??m"??g?_6?8?@?S?????w?2????]?a/O?bnH????'I?Z? ?d????s at 8?F???|P0l? ?????(??V?????S?J*y?G?1??:?.6`0???[T}???V? Mzcp?wa??d??????????(???k:^??8O_?}??-?A??A?'/=F%bduLJ???????,'?G???'?Z?:t#;?WB? F?? ?ht@?????^?(??g???????F?V?m???7??SUt?~h?2? !c?sI???K?????????w?X?1??????{8?2?;g????~???????04?0??p??1Y ;???m?G_?:?s??1????oe??\>???Z????????????l?=??6??v?/9??_t ? ? ??;???Y?????A????W?7?88??? ????m?????(??4C??W?l???@]D??ne? ????k?[?kR??p?????D??:?;????F??-Y?n???m?]???DD  ??Ay????Y X?L? f 8?????"[??sd? &???{ D>???*?3?@? h??[q-??Ko???w_???g?hw?z?????"??f??{??8?3????,?/S??i???m?>?z7?V?^: ????? ?j?yr0?(I?? ??z??????IH????~dr2 ?fA??????vE????'?|Q?Ou{J?# ?????????T?????2??~??? k?????~O??b?7?_:d??4??JC}[???g[??T0?b??Bd2\???1??~??=?~???# ?J?2?+????_?_p }?kN?????H]?B3????}7????a;???0??2????c2?{4??EV???? KQ?L?5??a ? ???4!Uf????u?N????=_??fl??*?k{?}D???}?u??????E?c???????Q? ??Gqen`m???J?u }?g??0??7????qb+2o?Wy?)C2~??h?jX??WF???I?`?fl?^;Q|????????%,??+??W?!Q??P/~??D????%?D???1j????Z-?#??jh????z??zE at u?????X?U=?5?g.U?[??????{/z??~??X?"??+?c `D^?$ T??g??f??56???x?+??'9N?9??K+0??y?@?????w??O????2lS?W?????x ???p ?@?zF.?????3?>?????P7????Aj.0???!?R? @? ??h~???  ?}?????j,??L????F????[?;?l??????????m????O?B????V"????|??|????_??6????(??g*w?Fb?????9?g?????[s?F???C???e???g&? /$|???E?j\?g:??? ?q??!? e???H8?? %?S ???????? %?i;R5?=X??n?A?V?p ' ?o??U0???!?@M?q1?iTH??EZz?]!;?q?F?3?N??n???p)?bq?????$?"? ?/r?}???dI??M???JeFe??9????1???:]??:?f??????'??UT??????8? _a? ,?Aj~-u???C5}"a?&?-"BZ=???????? ?BR?J?`??Mf@?~?#*?/ ??(?r?@i??+?o|??I[h? ?????? 6?)?????????4???${???????{q???B???]Oc4???/@d????P?(????BI?@)??x?G??Q??\???,?]???,U??!??"? ?c)2?1?MA?j???? ?p1?&U??M?!?!z@{,??9lW?????V?bf?7pX?p<\x;?`r???p???dj]{?7?;_???hS|2lp?c?g??S?? ?h/?? W ?????/+v???B???))????P? ????4??|3B[^~Mm??l??9??z)?'P??x??5????RE??>?1??B?I???s?~??S??vO=AT^?S??[??+???t??VfK78? _f?h?~^x?<?7?????????Wa??9??u???>dg???@1K????w???[o? kwH?i?2/@?k?P8h?????9??o??g(??:??4~???????????? ??@????? ??? ?D??????? ???9?m??a?nI???pb???1???~?u?z*8`?r?v;?y?"$?3j?}???(??CJ?MO4??V?VU@^qH???h??????r R8hV24??"????]????*?m?S??1G???K??????| ????9???L? 3H4W???l?AD?gS???P???,???g?5?b?????%??0??bb2?^4??6?,????}#??,7??????$??r?g???????PFJ?k?P?&??c?,???)?b???%??V$??d??/M??`Y???[? 0 ??X???6~H?w??@3?M??E>Is?a????g*i??~C=????G}?_?#s. !7R?'q?J:tw?eV?OR!?_?I??H?sd at J????z?? ???`H??????5???I?71>?!???rk?t'?d%?KK?s)1????i???(???`?W?d?5 ~??@??9?l2L???j?6UY?????z?VKM??x???+??RK??L;?`???S?z???&?F3???dX???^'???n???/?XJZ-?????Q? ???`?z????????+#?w??E?O6,??i$??,??????N?N?3????nEi??? c???R???8?-??l?R?yo?A????uKJ-v?????' ???P ??{d?cr???an??'(+5?U?z?F???T??0???????;?e???????Fj???A???B??#?b?q???+?E ???h??g??F?a:?_5?yN??`?W7+???;??g???o-x???j???2u?Z????:??D???v"???????? ???ZT?wfe???=?C?y????}6???????- T?X????Y???5??p???x%????hFz ?$9???j????,  ??-0???h?k3E??\????#E$?c?Q?8??4j????\P?g????Zs?u???r?hj??|zF?8???-?X?o?1?DT\w??<??'K???A?@?y???k?? T???j???E??%U??V??l ??? ?? ?V?N?????l K?Cf???`??????4DT?u??t{ {I??Z ??%?L?A???h????R??J???P?e;Y?E??>???z>??K??c???? ?vD$?L??l?I????o???K=?GG??*"??????f?[?j<&Yn??o??? ?`???x? ?*?? ????'GY3-i??pl??????|?[?\?h??0[{#}?y?????"????r?c?-?]????????l??%?????y?@?F8H?v@???C????: ??F?a?1?iC|??N??i?????dp???y??~?2?X?X?[?,b?????1j??-MUV????.'?}/ZF??+??==cJ??0g^Puoo?a????t? ??,????W??3q7?]?.I????@???? ?-??R\?K?????????l?j?G4?u'?#)?%???aQkh??'O]k? lv?+]T?T>?????jh??V9? l??Z?ZJU?D??=??????8??4????????k???A?2????&?J???gb??ubWCu????&?[=g+?????%????Y???=? ?? 8?!?%?e????Q??\???0????-?Qy~H1?K???%7?i#??????-!?W1?'Z???e???c?1??*?D?b Y??.Q3 ?s???7$M=F??T!?|???y{??l???c?P ?|?????]?(?;???m?8W?? d???????;?`]??(?f???}??2????????--??r??9?W~C?"(7&??,???{? XC??eQ?CJW???????fZ??)????S?????(n?? ?C??S????yx?Y??? ?%????)?)???8?z/?$??/t"?,???JA?s?#>}?m3?;???????? ??k?? ?e???$????,???}-l~eca????s?%x??n???7x????T ?++????_??/?????ju??$MD??S??U*?????/?$??M(?I???L?^???? 0??6?R?4!P??r?z?e??IM???r6)4;?|?@I7@??2c??O%5????L???`??:?K?L?l?oUl[?b?^????0? 1p U???u`_??l???rZ??Q??J*??/?FM?`??1??&Y???t?l?????k??SN?????,??d??b?Q???\??U?V?z{?}?F??h?j????%M?X?????0>T? H???0)3?v??!2?B[K3??\?11c#??D????y]??~???P?7???>???"?m??????#?)>??C?d???#?$e??????? J5?=??????,td?.?\? @^6?$i??%I??N?%???\??v?????F?Z?m??]????g?n??n?????I??E@]?I?????..???@/0????b i$^>?;I???%V&??7P??_?L??U?;??4@?i?g??~?Km?J?c?3|????w?[????/?)Bn????'??????1??? GZ&??:?LR???9?$0????i????e?Z????.(9 3P*~OMz??d??BJ???Ox1??????T????vH???&?? ? ?A???z|??S?=0J?????$?????e?????J?!{?1?????[?[?>?X=+?[?QJG??;*??*3 c'?6????? ???5?/A??a???A?z?^?????Z?rAWV?C?O ???w {???%/?C$)?q)+P???i at C?????-o?????t??x????N~??(8?w?t??V?`?pR??X?H??H???wi ???4????i?a???`?^???@n??D7H??x?k????A ?E?N?q????_???O [,b???;u?LP] $)[=??;?%M`x`?3?p?s?????6 ??4$n??4p8:MApF?? r???? ;????>?? ?&??;j?up6???dW????1;?? ?a?,J?? 0???Dm?^??'[?}????s{h?^k????Q??z?>???2SrN???p??v???[?Y?y?e?F]w??.??7?/??s ?=?G?4?-??? ?????Dyh??l?+l? HJ/I??H?a]H??D????~?HFV;?:??cx???F?n?????*~?a^?z?\=??2??????_??8 ??z_???Jrg>kZD?zy?j?ekK?U ?]x??mC?=,??8%?4?xJZm????_???D?4 ?=C*?37??? ?????3????[???9?C18?pl?6? t?"???;~){H@?6?????;JX?*??D"?h ??7F??iO ??<0???s?L?0v?d??3\?$??YW?8?g??A;\X??\????QZM?>???? ?v? *a!J&>C??'L???"?1[?1??W/???M??K??G??A?%?:A!iY?e??!?A??, ???????A? ??{%c????w??@X?In8w 4 ??7_???/^???k??$s"???????h??@???]?Y????t?? ?P ??])???q?-???b<?J9?????"xt? ?Y??c1$?PtB??mmL??? 3`/F?N????*??H?? ?3$5?? ?S ?? ??mC:?????2?\??>U?o??%??BD ??H?6????N???Q???U ??Q?^?w?e??Ql^G?'h?#^??Ivf?o?????)?~?x?I]V?q?iZ??^???i#P?Sd?????)3?eB???????x???[?V?i0??H??3??yi?R?g?9?E??@??)^??????y?-%#+???+??j? ?p(U?Ruip?M?f3[w??$?'z?y??LP??? ?l?????[??Tn???z?k+A???:~???\????{?cuiX???#$t?g}??8?1?N??c? |AK?ZN,??????????V9???R?3?'F8Q ?H?X?.K? ??!W?e?? a???+???6??????IS*?/>1T????EI??+??MV`x$?Hq????F???????f?Y ??W???{???i?a??(??? ?????}?&Ia???????}v?Q??f(?????F#?k?H_E9?5"????T???J??_/!OZ?4??HSTL?y????|?$2 L???S?P?;?d?/|??W9 ??Y???l??7?u??!?????H??ObB??Wi?H?WV&??????????af???N??????????/?????????}=W3?L?E??????2G]??G*QT?? G?C?3??|??J?N??eI???b???)?U?d qgTX???D?|>^???`2?$& n?KO^???,???|j?Ab???N?? ??%??V????7?Iy??3u2?p9?=%???q? |?[?=r?|`I?"????,??????g??? ?~??{???eXvN??m lI??=?1?5?(7??@2?n??6??g?,?????e??Y??)??`???g???}?\??LV????:?$???-?r??[^?m?;?z?? ?f???y??:?/4??]O??????%?d?U??????`?4lk??n????  ?g???;u?veo???????k?????W?"????~?2??'8?S??b?~r??9???@S??i+ ? ??gy??,? ;???4 2?#4? ????4?TA???yiik ???zw~???L?}????-??O?bz)?K???}?????????????P? |6?+r{i?Q~qjO?h?=?????4????g,?!?$?n??q?????>:~?H=?a???V,Qh??\??????>?}?CR????)?Ey??x? I*?????m P??3?s???[?????Y:?dDk???n?H2????Qs????????x?cm2?~V? p??)??_0?b\; ?c??u??gc? fUCb`????Mf9??F=????L&I??|??M??)???[[????? psm?? ??'$??????f?u?,?}?J~S?_?i?S?????#?0;X|]??f?^Q3??L& ?\???4-???`?A?+H?+????????p???jXs)??~??t?mu??G3?????????>BsO??7???*r?h?a??=???????????y&??????t|?3??Y??,?Mk`]?R???u?D?\V??"?V9#UO???)???B???????}3?Q?A2?r?&????? ????-?tg??|P?????OH???/?U? ?/\$??`%?2?\?+UY???K?`???_??!+&m??)F??[DR!??aR?V?~y/?v????Y????,?;^"??Z???e?VK ??Bl?4?? ??v'g????M?'yp(pj?=?z9/Ym? ???4???Y?j?1????gl??3?wW??i??x??xt;?:??SY?x B?RagZ?cs????????,J  ??Do X$?????x??w??:??[&??G)*?![l????V??HN?????;??C?.9<{???gm?!,???????e? ??~4??Z??,W?n ??S?n???;S?? g????\??Y???????M???????2f?"c'mK?? 5?A??rt??d??????yjfG]?T?_e?|?;?[ s??[????X?7?a?d?|l???????*?????F????x?????l????*??~?j?n???? ??Mt0??G_???|???`s?w????A???q; o??VZ???\??|??=?Fg??N??VNz at D?f+???&T???b? m??ZI at .^O????S?P?[?;?4?Ef??C?=?Y???H???|'#t??}} ?W5????P??{Sl??3?wM???p?????iK27???vH????,???L?8????;#?_? i)M???"oJ ???'a>????sR?T o?6R-U????u?@??Z+!m? ?n?$?;gK?PJ?&?1???9?????79_??tYk???????h??>K???.?%?r?#?2??bO ?????8??S"}4)?(6?^?Qg?'?K+?A????Jk?????FoI? ????>??$??sM?a??c??+ ?? ????%H?B??F?????g#7P????`????????HL???,?L??t?????5????^????H??+ZTK??? ????~?C?S?LJ?;%??bAw??!;W%T??O?3?.??N?8?????U?Nk?|.?!??;?^z??X???? ?&?=W?mbm!?V???L??XJ1a?"??^?????$??W??j?'??f?!???1b?,????yv ????MRrST???????@_?r?*???r?? ?y? ???CS?"m????????tc?'9W?m????5,GC?a~?'~?nI??={S%1?B??? ?????"??c?????l????19????????[?w??6??[}??#?(?R?:Jk???$????_ ??0?Q???5???G?N^????i????:?n?AdB+????g91??:C??????Nq????7??9??o`J?f?)!??|??X?^@)?z?L?F8????<^?? ??7E?7lEy??d?"??3:??????t???qQXt#??? ??ST??M?[?Yn0????D"4?????'??????Z4m5L??P??%?,????5????  ?????w???bMV?#?:??????O ?x????B???y>h% K?4???$?w)K??-?{I???~_??????e }|?%?F?y??? W???4Y:???7p=6?5?r??(*?r?#???Ep?1???? ? ?4#???E???x?"(??L????p? ?3??0? ?? ???c?a?????.?/?K? -???3???f??K}?5?2?????? (k ???:?gr$?\&??@~?????Xy?7Z*+e?&?s?zi?*i?|E???? *w???k??6~-??%= ???? c??3??e?KWh???6`??>??'"g%]???p}?'???A9#{?G???? ??????Q???X?>Y[????? 2??????(?????"?MQ?dL????l?h?'?I*?db?C?^????B????fU=ct3#/??a=?I#C?*a??????H??^? E;Y??Zmu?^{7O??!l"?T3?_?D??V????a%"?g-m????????????]??1????? 8???>{?y h???=??-???????Z??;3???gyLG????:t???c+?H?`D?9?F??9???x???8v?R???KR??? ?;Z??Kx???????J?~J?M??D??=Lq9??V ?_:]>?????o?0+"?k??r?t??5X?0?G{Y????P??}?jR?r??! ?@?%?9?^M?4???#L??5j??v?????????9'??Dd?@V?M?NA^????????i_?Z>?H?U?M?R?f???D?*?? uS??f??F`????e?]?? ????a)/??$?E%?P ????dI???N???r"?+?t????L{???c????WZ??I?"?t{??x/?3v?X?r????b?1I,y:$ ^???$[Dae?? ??X??4Q??>?=????f<?hX?P???wh??5??8??/R??????E?z??Jv??l???9D-?]0????G??(???>#q???v PW??p2????d???_I ?E?T7exK??7 X?????=$m??)v?c?? ?g1?b??? ?!Z?[P,??? Q??a[B0=??????Q??e3???????p???????l j}?^T?HAs?]hKR?L???? ??3?.V??a?????ph??T\y0?????To,#i???e ??!(???b???j?8?n??_??h?????hO $????x???jM;????l_v~??3?=j ?h4?8??s7?Y%i%???|P{???F>???l??L??# $??Tk??tI?*uiA??~l{?R?2?G??I???s?????@+?????|kV???gl-]?4?? z??S??#?h$??Q??s?I?F??:?yl??Z$~?p?x? ?z5?*???????C2? ?f_o?}y6~??f?????>??~?/O??6}??:?w???+?????????&Y?rN??? G:?t"?u??"?CLE???i+~??????\????????N?1??t??????f at m??a??>?I?U? ?~+{]???J??$??? ?7???my? 90?5Xk?0?n8??????bo??J%??D ??+??$P<?????8R9????Ia7????-\?2X??R?*E??????O?`????C8??X?A?????1??&2????6??SD????;???+?wT =??%?5???&Y????e~???}?+$???3t?>?W~???Yk_?5?T+???Y?x^al4VU??J~x57&?"I?U??_????2FgV?3?????^????y ???0?%??/P??nQ??c???K?HV?=??@ |????eL??]??}? ?}????@?(/%? ???C?]9L?7??C~?8????x?~7'???G??LF?|??&q????3M? ?t??8?A?X?{'k?u?s??~?>v{N?Lz1??U ?`w??zu??9R?????IDFQ?} ]?N?$???? !?1?{$??M???y?3 ??????@wFr??S???ca????5?(?z???b ???!???/(?????M?=.ag?:?U????oa??`??y???]??s??$Q??l??P???_,?^??????e?`YJ?-1Om???6)?H?^? ?? *???|'?E??Il???x&??w=???#xc?9?????x????z$;???A??r?p?F?si at 6-?J?????>D?????????u?R?~kF?XV`eOI???:?q!?????H?j??N?? ?d?#?v^???W?h? VT?V>(??????? ??????I `??o?????>g?N>f??C???b4!?s??p??2O??????/?^??_????s???????-?W?s,??%?T??c??O?o?q+?g?./ J??$}&?i???d?? ????Z"?;j??)F46e?=??nl???cau??? S??P??????? ?I??d??c??k?JM?g?A#]?6e]?'??a???2a??{?"??Xi2H?|???gSJ?q??7??"`?????>??????r???????R?S>?????????????Nr?q???D H?|??|??]????0pA2k"?RiL???i??\oG?????'?0?\+?m1txTb ?K1@??0F!U  ??\????"?R??%??5w??:??hC?GQ??`???2}???x?zW](Z^_???U??????U?|???????e??A4v:??.???J?-o??0?&{?=??-y ??O?r?*J?z??6??kS?]?qa????2|?R>&???]??????R??T%,???2?)<|?/&??m??^???R'?t?????s??H8? ???#?*?uKD?:%?f?Z????)???+????;T>?0??IZ? ??V??M!? ??K????@?$ ,? ?????$??d??u?\C?%lkK[H ?F?? p?=?k?5? ???.?[??_7??/?JU??Vk?\?O|VD?J8I???h??"}??d?/??*? ??Z*?????gn????`^?%?R?????????u?N?X?A???D[?{-1`?k??c?`?8?v?7y?????Zf?L????Z%?x??f????7z?3?K????C+??Mmu~h~;j;?S 1:???????et;8??o??5/?AQB`?:????&oo??w??wj??j????????kcd?`?????l??*?0U/??6x ??$????0? WM?}Vfo??r@?}???X5????bE]??? ?R???????Xi?/?n??L?\???? #i????6fh??mw????}??????????~6??} aE???4??K ?*?????>%\A?????T??y0???????_??U???p/??!????????????[?????C?????pW` ???????3??>K3@?? ?1??$?}?c??1?N[?Q?m????9???&?I?1?????)E?m?(???t??4??Q?8W???Wt ?-X?Vc[??<?????c ?z6???"'?l?????Vg??????W??H?X%? |v???}v??J??d X'J^ Mv?s-??V?e^??n???M;4?vX?F?'?4i???????4x??0?A:-?%??W???D?N???P????r???{9?B?$u'?uk??_R$x????+;?H??2R[P0???? ??q???-??}?X?2????????)X/??w? ?F4X?7(?41???PQ????.?{?%??5E6?0??V??d[?a]M??x???{W ???J=p???????????^+ ?A????F"? G?^~????9L??y?!?0????H??*f?K?r?U?g !?T@?p ???f???]????j1?b? ?L?S???!?RM?,O9???v'6????:e+?D?I_Q?-????2???]H?K?R^?Io?rY7IM_'q??U?\???8Ie:???????}?}???'?8D^??b?V??1a?????=???c??????c???Z|C?"i???"???j ?!gO?????iL??D??m??,sScc5C?\f????(~,@]*???H????4?c$?h???(??p'???'Mj??????h?,M?q?????;p'????m? ??*E?[,nx ?wf\??7???P[5???&l-DE??e?1[O.?????L5??]????????@ \???}?J?(?V??1R?G??a$)??0??u? ??z(?X?jU ??????8%~ ?????????h{VJU?????????+???l?gy???>k????f?? ?5???Aj99B ?G:F ?!?@?j? ,c????U?ZI???#[???3|?5??o?4???U??#u???_?~????+s? ?d?:!???,?G?k??*?j? ???q0P? ?f`{???Hz???uq$??????H??b??z?VLV????O?Bl??n$????,a?D??N???n4~??"Ui??E?U?????]??Q?????61?s??;?yZ?|??Gn???/?????>?? >$0?g?VP?Xt???????G??y ?????]????gP2?k?g6BBDQ"YC???l? ?f????3????T?=@?????{z??h??=?E ??? ???z??&????????e????=????o%?!?[?#U??????E??@M|a~?Z4??????fz???-Vb8L????+ ?????&???????\?*h5 1?hs/?Qx?y? ?????}fmS"????L?|??? ??]?#??)wF?P?y??)??/Qs?C?,5?????){????????j???J??i??d?L?E?? 2@??5l????=co???~??2?uK???H???iQ?84M??;????=? ????] `???%? ?????-'???_???????L?3`i?H?j J??????3,2c???Ro??? ??00!_?cE???.S??_>Cl?????????g?NET??m???p??????3????G?=??(+???6?????z??&??Jj?J???0p?=?c^???G??}?D?w??K?Buk???z??+? ^c??T?B] ?????X2?!{??{9?9???+?%???9??M1s??e?[2l? `?r x?`??,( 6S?2?O?>?+,??)????w(?????????uC?? ?l!#s?~?Q,?cpZ?$[#?%?R???6??}?i?s?v????a?N??w???0?O???+_?rF?? > ?l?%?k? ?$+k ???x?7??????W]q7?C?xPG??d?I??????<*|?%??LgZ?????1Qp.|W??q???3??!??K??p4?4??x2km@ \?{???,`??0l?? ??^)??JA??-???F?,???Q?a?84?!??G?B?iFZX???L?oJ???+???g?&^?l??^?u? ????>??Q>ot??J?b;??????1?H??M??l??h x?)X$???????Yv??? #z?????m?]?,???????a)9;;?t`"??9???s~????b ???_?????d??>w???)????m'?~??l?$???n?U?P????q??? U?????????n+21O< i??Z??E?c ??c??K???b i?????$;n?&????<\PJ$???l)?[V?0l??????? t?#6\g/I?BQ?Y???x??m>~?0? ?I??v?8\??;????|Z????Z??N /??E h?FA??:pG???|?*???x??q?.???H?V>?C1 ???Y?F?????`m????????y??/?;??'??>???Z???g?N?????0?Q?k????? ?}??,?4???+?????? ??????D?_???b uK??%????????86??yi`?c?(nB ?uJ3hP?O?lM?M?????m ?O??3??e?????3?s????we?/{????}?(~?? ??yCn'7???? ???????7T?M??K???Cv Sc??~?XB ??7c??I;x??[??QTl?? 0?? ?E?I???f???JR?r??0??]?????=K????}r?sj5,)???????????e0???????h?mdi?_???T??~???<5?h[Mh?F/??8@?y????'??l?lO?c??L??1??S?\?]?? OOY??x"??m?F???a????uN?????#R?{?mc?2'9??U???v?s????%??]??tQ???!? ??y??????k?Uv~D?%?,???B???HZl???4???S6:?? 1 [d /-G^5GE?)? 6????j??MD>?h?k?-????a??A\1D? ?f?&j?0???>Gm??????/???v?)???M?'?-??,?|?VH|AK+?I?h??Y=???Nr0???F?????Y?????\u?6? ??/d???Xx7?a?h?z6?0?"t??%A?N ?4??]?????t???4g??0o??????f?.?l[?d ????_?yh?P?$???e,? M?3}O???d?+)??????y?y??5?~???Z?&i]?6?Y>??+A?z wOm???a?"?Q T7i?8???@DVn????n??????????E?C*b|`!???4??T?W~??n?790?@)B??X???2??????o3?????pk????p?7j@?????(?m?A??????$j?^???Y?NFz#???*?g? ??"?r?#(??[ ?Y?j????ls???l????"?\?8??.??3[?????>T?H]??s2{z??G[???Q?O~????, :??p???P at u?a/?T??????2?g68-YSt??/u5V@???4??6H?2D?e,X????????I,????"??;??_?UOsO?????17??H??8?1?.A ??>OD+?q?%)??6??N?b??~????^??4?????D??+;??????[??9???x?R???Q??~e>?????SdWe-?5?fp?????,?????r?UH???gk?)>?Ww4 ????_?T?Fj?????/or??? ?????E??6?z?iF??o??`y? ? ?? :b?c?R?0?T??N}y??>?1? 2?B/???%?C???e+??)?F?5H?D?Z ???vYn?oL?8?=?? ??????s=n%??????Q1?FjY?}????E??????y?)??|??????b"=c??b? Mr-B????\??????Rz?P???%$m?u ^T?w5?c??? ????[?{7??6?%?????? ??+??]?!?d???? ?/m^ `;?\9?La??d>??HM?;?k?]"???e@?3J{??Yr?G:? H;?a&??6????7????}Y??Y???????/X:??m??????P??v??*?&??i :2????Y??R1?}??-#??8?A???k???%$P'?+??p?E_?c?3?|?S?K??S??J)???M?:??Ek??so?????a<??????????7???h?}????????? ??yE/Kl>G???????\?????????]r?+?L??? ?_??]\?"??f?f?????n??L???=?JQ(?O?FZ??Ro???f?o;f??;??xp???xU?q ?M????A~?#?,o ???Q??????l??????\\???/??J???m?h? 3,??Dg$?ElR?????qc?????`8?%?r?? `???l'??h??h??q=??'?&?6?b??? ???@??? ?:?$?{???:??@+E/b3?\??t???3 ????')=??M?B??U X?O? ! ???e?v???GRobn????h?? M]??U$??Rh %?????? ?x8*F?Iq:????*?( \??:? ???4?*t?4???????2)?U??[l??_6?yt??D(???r??Y???e??????U0?-??)??? ?-B??-:????,j[?0???'?vy?Z x??`? ??U?[`p6?}p??z?????p?e??u??i?s$???s+v ~3_?2???? ??Fb?O?bx?G?p?????;?`?%)#o? ???,r??8;?!a|?H?H #?ax?R????"?7??W ??@ 2#%??p??m??V?;??=y=??c&??_??(]<_x_'? Z>g(e.a?G=???????Es?q???Q?W?{?5???????}??Y%(lL??4???{??*?9??????????? ??{0+????J?|?[P???????x ??A???J?p?A?????&??]?J?JC??0?W4??;Rq`????3>?Q=??i???[ [??}/9?C6 ziy????????s?/aX}??_?d=/??????a?)??1\&? 6$?E?#? ?????D?>?????;??g?;?.?~??4????o=??????a????u ?wX?7?????@??????????K?V|?[??`?????.5/?O????R?#2??????-?O-??9/??I??[MC`=f?????HF?yaq???0|??4???x???lV? l?W?A?V?&???{ ????????????2?J?Kr Ig??(???:?B?X??F??}"t????u??????K??d.??gDJu????U?lF???T??????f?W_?&???E$??'?X?j\Z?Sx"?V??R???????U,z l ?????Yz]l?? /???/? F+a?E?Ok^??e??@k???????X?K?06??h?(?`S?yn ?rk?q+4(????4???5 ?Z?IV$+?d`-a???yT?Mb)t? ??Z?j"-\L?[?L?Q?1Z&2v.+???? Yt?E??n 0???Q?1??g? ??+??????*?Q ??Pp?g?v@^Xi????MH??N3\.?~b??'?M?;3#o??E??6??)R?3?=???t??(?c?F???o>2??J?\?g(??Ot+~?8jv?p]?hD?????????Q?2{???8?Cx??36 ?](?K?????~\??ti????7#?eoN=?s%?*?,i+u?G?V?W-W??}]A???uL$?;?Vt(??%p???? O?^?80v?????p????6????^?v??g?????= ?G?d]o?p-?`?_J??3??f??{f?P< z_??????1gc???Y?"Rre?}??????F??M6+?_hc ????H}$|?????@jU?Q? ??0???e???)?????,zo?[?g??B?QW???.??? ???& ?L?m/G)3??????U?%???????dY5?%#V???m???????@? Hi?R???k?^?M?A?????????????URg?:?F?M?>??!O??W??4?????~??????LWT??#??2l?????vh????F]U?B?D'yY???=?k?:c??UB??O?zL??K????7?z? )???????\R_????3?&?%K????3??? ?=?|Nr??1?r?P?Ks??a?w3?3R??/8?=?"?]??&? ??T?1??{ /l???N ??]$j???Y?[?F?????? ? ?k?n/??_?????N?$?u???????n?C?y?T^????? ????y>E?~?????i????????M?)??1O}~p#XnpD ??-??Z?? ??!9 O?EQd??H?d4 ~??|l~?h???????S?p??f\*??xC???:?@~?y???%z'???d?OQP?$???t???4???K?{Cp^? ??\?}?K?W?}0??%?-ES???^?????]'P???Al? L ?y??'???QSi?P?g)?????X???$`k? ?1?o! ??7f??#?i??-b?????aW? 0????c??/? ?.?1?}?]BxMG?m?@?;??}???lM?q?A?O??FK????l??5P)???&lUuX??]?i^V^?0j?n*??v?)I??????7^?"s??0???L??5??*?????cd%'j?6m??y^?????5?*?gw? [?????????e??'J???-????W b?S?8Dw?????j\?^;?#??=niM??7.??9s?}g?9?uh=?>b??>???_????%+????_??[?j????q???{??k??????*_k p?b??~*-?z?h8KO??@???Z?m>???*b???sa?@E"?Y?O??k?:?6??J?D??aB:o?lk-%o?R?? ???u??8v?~???????$???'K |?I?!?3'???7p?>A?{b?Q??.??t???mr?Cb?d?#?$e ???2"?W?-|5??b?? i?[?~?!????S?z(?X2?pe???V.???VA??M?t*??? ??r????"?RYL??2?GSE?.?#|???l?hl)?|?{????#??0E?[????5,$?Pa???J?pY?K???F??dP??? ???(? ?4?|??96??o|??'????z?e3??????<??????_??wfc?X'??????hr??Hd??k?i??Nu?#???z??t???? u??. d??F??M??? ??7<+?? ?$w%P??u??+?@?W*?a?I?$?mG???K? ?I%???n$P_ DN?,o ?+?qf?????J_???????M??g? ??????f?h?7?k+Q??q??d? p2?????.?0???Bo?h0{P???A?Pm5?Z??&}???????s??>??^B?MZ?Z? ??|??]}???Q??>(??????u??%?"?i??`??*????M r??3a?zm?=?3?PX???Cz??H?e??yK??I`??J??]?(VndX??vT&,5?Q???!i{Q???>~??Q@ ??? )S|Du ?????(Q????I? ?S??:??.???;?1???y????/ y??&(G??????Sz?.I?4Xj?dC1?????????Lm??d9???0s?????Z?i_?(?I=?R~?.r??u?w|a???o`q??f???v?T5?,Cf? FKuHk???_????????fa?????L???????Z???Uz?]?????p??[W?o6?,?3???3?3e?????<W}M?j????K???C&?Q?N????|???Gi??Q???V (C??>???t??l?>??????)`?x??Y^'}???q??????~?v^???Fld?m???cS8??*]??8e???\V?T5???(?>?????????I??o=o????=???./?31?LQ?2???+e,??,??^p ?I'??T?i8aYwJx?G|??N??????{Z???Es"??zn?L?? ???|? ?q?I?????c???$????}??(nq?S iZ{??* ???}?0K?S????Q4?|]??(w??]?M???Z?3??????Y????3G?Ngn :k?j?}???F?.? ?????M41B?????????|?a?T????3AF?@?X?W??!0I?u???;??Z????#XG???d=#????)???g??;???k-)?!?xL?u??H"???H1???m#F??y???q5? ??W??p?:???????pk?o??>?C?????1?R??????d????? ?7f:???k$~? ctJ?sf??>?L???J?? >????? ?u?????3?7M??5?e[ ??7??t?9P?????=z'[????]????????H?z??#mVNu?q?0?W.??O?;?I?w?F??'?!???kT?*?I?t1??????????:???s??????2*?f 2??o?????a??~.???f??????K?????4j?????l;q?n???4~s????v?k7I??????2???B???????????>?R???????~?/?3????m????B??a????p???@/???h?U???*v`I[cl_?k??????g6?w?!/???}??&^y?}? X?n??co ?5fp%??'??|? c?W'2 ???Wy?W???B8w??@1h??lb?f?? ?? j??? j+l?+?tm#Us???1???? ??"??bq1????????!??{%??;??????O???????K???F3i????2{?Z?M??*eW?q?????n??????S`?#???%%?q?p,??????+???.k??9?O>,???@V??xbWn?(p1?|??>???&;?i??C?????????n??JZE??a% ? ??<8K????:3}?R?h????7?z ?? lJ??5?p}??I?1lrN\7??K?i???3???xV3DF????6[?k?5??;d?t?=?^?']!??K?i???+e????1uS??rl?i?C{????L??n-r?o???e ???D??^?0????? ?????????%???K?9??bc??u????????NQ??3Y???r?qp;?E???g??,)7??_ ?,??S}?1?u????????}e@:?V~"m?-????y?$????m?^`#?1kkYv^???LN!fR?V?O??L?'???) ?R??u>??\b?.?<$?????E????R?/}????????7??jk3??a%???????,c????\?BP:????????S??????x? ?M?????5oh?F ??n?|??? ?7????{tY??a?????Z??-??z ??9??t0CU?7???zJ?*????? ??Xg at Z$???o???e????? ?LV?u?8?8J?????????Aj/ol??2?3?^?>?| z??D ??sC??M???T????V[&i??N?V???s?< ??)W????gy}????_"Z?? ???+y?HgN????SQ???_?td]?qs%j??n??5????1/~?R?????:????8\??r%5?Q????&?U???V??LN~tM??????2????v:?K??U???k?"????????6H????u`N)?d??x?y????Jm?m|?6H?Yx?(R??3?????????^b ?,T{???+p6??#?!??.????0???H?^0Y0?^?????l??`???\ ???a?????????????^/?2ml????S?z??Ki?;?=g?HT??I5-?@?Y?N]?3$? ????9g?94??h7??JL?+? ????ha??mU=??l?}r;??&????}??????H?u?S???A??k?z???G?{Z*?C?]?m?$???Ma&5  ??k??U?.A8 Vy?l? G?"?K?K??c?zTI!<[??~?u? J7V$Eha??ZF??Q?(??F?>??;:T???y??Q?N???A?????/@???N'?{g?PI)0?c/[???C??N??J}????HFx3V?!??d? ?z#??5M#?????RQ?1????]???(f}??????6??w?Hq$?? )-?f?pb?U?cd?tV??O??]??p?p&W??t??S??????[e?yR?OE?P?SW??l??F???E????(????q&w??d?\???1?>w?m?????T3}l?E?2????????K{?????6?.??? ????%(??#e??Ky???F????=c????????????OE+ ??"`9??v?<=????~ZK?????\mW??ol&=u???+?2?h??3??;?V?N?v??UU2(?c?=X?N!d?lI?????gA???u]??h?~m;?P}??Ir-??/XH??? ????G?s??D????????#???c???1??s?Y????t?? ??)K???-??? ???-???e=???u at I??fR%]A?????????? ???:??o?)?? mUM1??mF?????????W??fC??M?[Y???^?U??OC? ??.????\?3f9????? ?~?? v?o?? ?P?v7u?????Y??b'8?U?? ?];c ??J??M_0????#??,???cS0???M???????"??cTS??(?K?z]w????l???!~??0??k??cV?????Zd??U?(Y|D???X9 [?SE+-E ?-R7?????8T?????m:J P??5????~?/0g???+-?n?(?????Z%;m???m????K? `+?>????? ???_;$?m,?N(??? ?B?u??K?? ?g*l???????]? ???H?P ??2?f???r????G;?n?gL??????A?%x??3???Q????o?h?T???????i-?S??u??E{???D?Y????A= ????IVB?R??8???T_)7????I??b??)??jh?MR{?o???S]*?}19?r?V|k?#????|MC?[???? V?????p??\Du????4?? ;?@????H!,?De~???t????b??q?3?B??1?n4?r?? ???[?X?U?'p???pk?????? 5?RU??r?t?5?Oa?,e??)%???a?j??+7L?Sk}?>CP??]3|0??pLg?p?LNe?9XE?y|?T?o)e?D??a?1?%?T?=o?Z*?z.?c?R9`+??L?m,\? 8??????6?q? \-??? _???@l??v"??Z????L ?1?????ou*!??_?hJ ?#???) ??&m??Km?s*??????E??6?????^t_????$xm?.?L"??C???VI?,h2??(H:??,?r%??8??? ???a?w??l?d????;?sc?J?&?????????u??Q4??2??8?td? ? ?h=3??{?X ??i9o.??[Fb4Q???+J??Y7?` r4?}v. ????W?}????fR??@?6d??b??r:;%?V9f ?@?? ?z??y=?: b=?????|?????c???W*????u?y? ?k? Z??????>L?????{??/?`????\b?]??{?71????jq;- 3n* 2?[[???5Q?Y(>? J/0`"_?p??%^?k?{1???c??$S?#?-?b??e?2?^E???$??m???[?VG`$[~ o&?W?CC??~q0?? )?????&??c?>??N??b???[he???u?g??Yy ??/???-mE????c/?xre??I?????8?l??R???&\?u? =H??ay?^/}>?1???? 7???;"?????b?????8?_hc?)??0~??P/?7T??6+?k????Y??W?FS?^&??-#???!3??n??JM7?mC/???%[??Rs?3:?tq?p????C ??.Ut?pu??}??? ?? ???y???Rt>_K'?n?A?R????&?????V???^?Q?????'v??u"p??c?36?J??:??9???!w?W?b?_{Z?_??Y?lW?6?g7Q|i?I??\J'?HS?????>a??jOz?c??`?????c??4vi??i??n??t&?t???/Q?????E\{?N???\G6??:XS?i????r?~? ??FJ+?Z?) r? C?e????^zz?? %B?p??l?lp/*?t??x5??|?o?[?Gj?E????v,J?=>$?0?&YJR?R?O??1? ???8;??n/?????Jb?'????3?W???v? ??????+1??C??\x "?G????i;h ]J?????8p????i~{???R??wO?^8ERH???tr$?????x'H????? o??Z7?w\?zq?B???|?JxP_???'??"???????PsOb`f????<.?I?q?Ic?????=?&?? ????q??v??v|Y]??x,???R(?g??????????Fy????t+????~-?D?4?????{??2???5??????~*?_?Q4????t???????-?/??_??&?V?U_??L_+?<$??>C?7?????"Cy;"?.???M???p?????o?!v???\?Ot?????f?C????HcwAl?{ ?S?s?{?k? ???U?u?(???5??/?^??????(&?C5p l?{f????Ik?<')@=[?T1s?????????????lm?a7m?^??????z$?? 02???G?QS??~?I??yF'????p?? )??.;/?3?v~??S3Wj?Y?xkGs??|a??3?({??? ????G?w?F/6?&;?"e?R;?????t4??y?9?_??N???z>M?}6???' L+&s[???w?IoHS?' |1??,3?;????Q ???SS?6???%?ewI?kJ}???Q`??=??????Qw/=? ??i??+]?Dx??M*}???-r???????~?#l????K??}?yZ??J|????nt? ????E??Z?E?e['&+??],{HSF??X??I????*][??(???At.??n????CF????DOQ??? V?G???4?Y!9)??=<??_??r??O?A??,????J?a?? o;?t???I?{?????/???J?/r??^k8?/??v?^???????H?Z0??w??fic?6t.???F??=??Ng?????{3?TH??(=? ? ?*u?~R??W???5V?]s???W.q???,:?30f?\?c??I-?4wP??W?pv???]??>??T?r?^?8?>cj?E?_????x? ??????Px#/????????? ???1?YK? ??????:J??u??????"??`m?s??0???>?Y?'[Kg??9?.i?#]?i???Ie????N??1?w??C+????bc??g@?? *M?0???U???gu??j?T?1jO???????????h n??)???X?e?I]X,?pD?[-y?????UU??=?????K[???>Qx?????|8*????,?a???n* ?xn??W?2n????L?S??r>3??????F?g?????B?^??Z??N:??k??l6??E?H?!X?????4V?O?}mwQL??U?G??i,?????E??V?j- eE???7`??\z???C??s?#*?? Ut?w??4??q?A?;8?LJ ?????g ??s?&????"??V?AEa?{??I???????I??u?????8?????7?l;F????B?-?u27?7\jn4??Z ?????hK5??g3/?a~????o?FE?Dm??-?U????&??:D?x??N? ?Sm O????_???%?>|??s^5????Z(???$s?e????9?n^???c?t ?10NL/??5+|Z ?????5^??gcQ?z?N?%Z"E?????T-???ef,???p*X-N?$S>?0\??-????F? ??????s?:??????j?&`??U??????E;?????~?P???_?3VV5??'??/?{?R?W?4??h.k`??7'????C?????????=??x?^???L>?P????p?=%/?Re??u???A?% +????kU?-L?G?>? X/?????QR?`$y??;8~??S 8?$NY}q? |?i?S=?b?????q?rL?=?B5i?f????j?cj?8??"?????V?^?T?+9 cRk-YGh??????????f?\Ce?!R)??th?????????o?M???????e7a??W?k^?????J?\O}??t ?????>i??Z?????E,??????ZVx???S,?B?R:CF?&M?u????4$e0????K?Vje???}5??13E]K?{?? ??????Lja??q??!cq??c? ?????0?+Ys??????w???????8??z????n?.?/toc@????????ZXs??.???????^`cS?????????;???j '????Qz?N}l??h???????Tl{5?6~B~?~=`?g??,?N&u?`S?i????L??y+?$??PD?5??] ?O!YX8??????b|9?]???5?Y??:???.9?X?????p]???D ?[?W9????9?? xs? g??{?????m:???:t27?@?`?o B??6?}?X???vB ???M??n??{??|j?lUy??6????%O~??p??h?D???;*??k ????VZ??%b???E)?}?(?>?O|?TZ????.?+8?AZ75???I]?? Lm?G??VSuo???n???C??;?7?h??0hZw?U?c??mao?&?A?6\,?d:?????.???Q???.i?????b?~%:??O?????FS??O?]B?M?7?Y u???V?~W??|????x?? c?J? ?|Sh ^????0???FU9??\?nu#???xWNq?LQmP??M??cE?]*?????????$e??}?p9*'??Zj@?=?{?gLy?7??????K?^????? ??:???:?.Ti? ?M??%?R#-!?o#?C???-Fj=m?G\??+?F?w?`?? V?m?t=????????1???q???h?r?? ??i?:*?tr???????g?S?????=?!??X[yi???H?I:e?Y???v??a?N L+???,l??????'?>.???+???j ??/????Z??????@Z?????Sz?! 5p&?O7Z??v`?????X"F?{W????????0?^ ?P??+??Ol?J[? MJg?r?~?_?Q???t??)? ^?S?J????~cL?*?s??0?1?????A??oRo????6f$~ou??w????&???9?Ul?,??????x?"??QF+9?s? ??lHl??N(?$?U???h"?HI? ?pct ?????S?p?ld?<9@???1&???+v????8T??U?????[rR?/ ???U?M?uz(?yN?6? ???O?)X??e%uB?h????(?l_?????:??s?sl?"z?Y?k???p??dk0C????? =?Ln?i????P??KVKit??X??Q??"??^???R???h????mG}???D%?~a0??q ?2??.\+P?3??/P?[?r?1?l?r^????:???+?(&?????B9B?[???iX!y?}/)?3X??0q?:? HR{??d ? ?p7??,e ?S??s?? x?2??\q???}6?Y??i+?y??QR?y?z`???7??T?P?M????:X?z??????;?j?V?Wn!?????-p??tJ"[???ja??J ?W??Wd FoGs%?????????q?-? M?[??4????sZ?MW?8???t@?[FDr??;??X??9?1?FCX?r:???d:Vx??T?\;mZ????&@??q????7??lp?/#?jZ?)v?DD?s,k??X?Ox??d?@?[o?te?p?????x?N^????D}??haT ????s?????k;?????O??=????????H??z???6?|mS6??-?j??Q+???#?2???[*D?W??z1???7R????r?L?1!?qI?*P??X?D????????71?H??G#?9??????jF???\nP? ?7?\??l??f?|??E??Fb~?j????????)????? o??q0*r=?I???uj? ???i??N??D?x?$????Y?W??:?u<>?|?2?.Zb ?!?????????C????J1????????IS?q:>??B???@ ?;??K?>@?G?:-L????(????H'?L??x-k?/?R???)k??+? !?fU????$?.???f?h5?6?  o?w?U?t?n??????3??.u???,?/?&????4?P??+|?C??&i???c0??hL??? ?G?\(,???O???v!??????o?>y????GW7 ?&?c????4?(Sk??$???8??eS??"?wv??H?H??H???x!%??0???G?L?*o??2?hx??????jP??JV????HE+?g???????:?6?Y??"c????????S?i????????L?V?????#?b"??s??D??BrX?+z???e?????y?zc?X?f?xi?}???^/GF:u?{?-e??Oaq?$?B? ?_Q?>???????h?:b???3,???????8???"??3?H?A?m?!?i;???Y?6?>???&N??Pm?1?sGk?o?QL?/-{C?????u??? ?uh?A}e??^Nbw????ES?g`?????;?=6N?]~????.??i??V??#?6??1???????"?$?KZ???????'?/??? ?'??urK?????L#V]Bb???T?t ?+?K?.?8?R,MsP?0o?{??{??????&?I,0S?Mg??y????A;????6W??6??+?R<|q?????2b7w?m'Y?7-F??;-F3W?q`?y????:$k????/ ?F?I??5t?s]?????U????H?A????-???J?Y-?8?????+?t^????N???'??6?XX?/?:NF?=N}?2g$?w\??-0B?E? ?)?&1?Ey ?M5zE?+?Rz)?C"?K?? (?W?64???f???m??????_4??a???>??h??????^??s?????F?w~7??E;t21s??!}?iy?^?pq?z&? ?}??D???:&P?z^ZUx??'f?g?a?^T????d8?h?*????r????N O??? ?&/?*???d??F????mU?k"??>?e??Ey#z?????1d5G ???V?????l?F?E?H??0b?()?GxE?q?N?$??? a?U?Q66v????^W?!?TD?Z[???k???_????o ?'????O?w>?o?? ?mr?S?-?O?a?2*=f????$N?????????????Wl?7?)???w?#????*????9??L????}?*????'?Ua?????j?s=???.????(?w?B?.#?T?w8?rK?????t ?W}'? 9????z??}???U???S??i???`???u??I?V??2@?XHJk %;/?.?f???[?~???fXU5??r?Rg?l?c????S? ? ?g???,?S??????hh?{QV'w??????q????f=?x?t>?N?????T?)?0}?ej?[?I {????1B???N{????:? Ik??t????x? } ?3?9?<9?O??Clc?=?b?????u?;??s? ????M1???mi=?????,C?a?eaI?2?????]??t?D??xY?(=????u?'Yy?W<??????1Hr??k"?*Ua?? ?^TE$?Cg?W?j?????r??c???rd430????4????p?0e? ?ZK'm??l??+?~?!g?0????h????/???7??NL.??v????y) ?w?29#3Ouc!a/??l9z?h?Q[??????????G?T?? ???i?T?8?L????o?k&?K???j?? ???????tI ?????$GQ????b??bJ????t?YQ???x?????BIq????,???? ?????X???u?V??}?????zi.???E+??b?y???nN?@?(?L??|>???????T???`p`?Yt?@??7q?&"???9OeI$??0???d?A??e?3b?sM?'?????wsx?6h%8????|\!H~~ ???$????? #??4????m????9@?M?g?+ ?8AF?U?????E????$??;??)iF3w? ??????J ??hX84S??K????????ux':? ?:????H?? ??t??????[-IA+;????L??????<{b?_?:?,??G???9?B?? u??????B??/Z???|??GC??D??7A)?[sp?1?=i???  }?cM????@??b?????'+?b*??'?w?9Y??_?????o?:?????H?8x??t?P,?~?4D?K???'<#?=J%???a A??N at b?#;vy ??qJ????T??^???5???d?R??K???U?H?????vB?Z:#;??swQ_k2?1e?I?QA??G?v?!??t?????{???p??uXD??|???=L??<#???oJ?? ?Q????'?o\w????F.}???9?? ????????rOY}ma????[???l?G??K???? ??Pn??$?3??~#????i????v?2????v???8???G#x?1??? }??B9z?GX at J???Pg?hI???:?Or??????D?A? ?'???Nk\???U??PM:??|T?i????????????????+??1m????w????k???Q??&z??d?^??????? ??8>?zA)??:?I??_?????????R?D?*?J????tG??wX??t???:??aV7????^???U??$+m???@??R=???????c 2??????r?E?????d?$:???b>J?f??c??w?TP??1M??? ? ?<^-V-ed????I??h7?n`L?????1y??U?;?k3???^??y]??spE???N??????nE=Nc?{?(??? ??c|?????;?mUiT ????b??????mU'???>?0o[k??K???1??/???,? ?X?\?;??1)K????;?rX??{?Hy?N+3C?A?|??I?k???e?06V?q?IF?_Z??`/??.?1???????>?B??6{??U??~!???u?P?T??_?D?w?8??U? ?6X??)o.?]?De??? ????F ??4???;p??b?[?s?B???????c ?K?u+zdb??/?A`?????4?#? 2]?uy? ????R??_?x???G?u??n??8g)?O???h? ??Sd?O????@????(T??????+?B/?E?]?????????????S??`V?*?,????jZ??1?_?v???T5?????y&B???F??siyJ?\???????_???r2X?O??3yc???&%????v;?x? ?/?T??&?T%???gz???4yYm?+??mIwR??Qz6\??:??e?4?????(Zc`k?>?k????3V?`A???5????????$??SX??????-??vY^-b?9????!??k????rR_&>?)?+b???????;????,E?????oD?? ?m7???????F4?[? ??(??A^^ \??????0 ?P????To?Y%???bZ$?G?r?Y??G?e?????+zhm???@I????$?C??V??G?j??~m??R??????rvKF:Y?OI?T??zY??]DZ???a??:????[i?[0R??@g14O?*W????Q?y????????H@?SZZ??K0x(X^??!.9?r?A5i???>?lV???:?MC??P??8?R?[s[?2???lR{??&0???0?f??1??????????)?I?y?i_?(??Xu??Ag*P ?7?????$ .3?#K??g???V?]e???s??y. ?0z???s'??u??Si? ?C?,e]E)l?%?l?~???k2??"_{t+??/8viu!?B:c?w?J^^?"?g\?J_???T??e???4_?? T?i\Ie???????oeR?G?M??"*G??@]S?/???g`??3?q0??q???????? ?2?KQ?:?;V?PW?2}+?9c?^6?>t?=?P?p?Q?T?c?H3w??%?????R^????x[???l\???r?? ??Y&q?????u???|NGb6=???aRZ?W??????-????6???b?.??{? ?/t?@??$T???? ????>???qq5??????????& .???af??%??rk??h?C6???=.Pj?m?y????=5??Kdh.;??k??hZ??X?s;9??D??R??M?u?b?>d?P ?S??WQldM??dV,??=???d??f?|?3??,;.u??? I?E&????????(!r???n?}????L ????? J???a???z?)??Az5 q?8l'?q?????yF5g?_Y???3??&??R???1f????w??D??x??3fL??????*??^??>B7s???Ti}jgckGJ???| ?W?x??K^?&m?????i??v?f??g??x?u?&??&9?gy?8?I??& ???-???5?>????^?O??M)?y???-?|?????#?{d>??z?>??+< ??G*? `u?a?n????T???W????,?:>????NG"?M?|EHA???| ??b???~J?N?Q??f?#c??_ ?x?D?"Fx?f1?MfH,OM??2E?S?u?1?v???G???]G??sK???`??M??D???'? 29??SN?? ?\??;????7??'????????ZZ?*[??????FPS??PO??2??i??c_s]0??*ce???????W???T??7??l??????[+?"??f????????Y????Y??^?r?W!~??2*?? ?8??/?b?v3F?O????y??'???3?e????l3????@DR?k??g? ?? ?=?O?'?v?w??t????a4g?Tg?z????i?"??X?(?V? ?k??? ???h?qfP??2?? ?? ~`? ???wM?xc?1W?(????Ej?B?1?? =??aEv?B??^??b?[S?????E?r\???X:> ??$?v?,????.???,????q?M???E?0?????h????????x?)5?!??,v?vx?m???j?Q??J ???7??k??t`x?s?c?gq???|??/"??D????S?qx???\??V??P??G??I????{?ofg??????9?x?]??f??G??L9?]????jx????T.Z6_?k????|?1??'?g??n?V'???????p??z?m?D ???O??? a?????+????_?AnIE?~?$B?D4V|f?bs?aF?n?u?~4o?y??5???4/??k??t????|?W???????9???;???? ? 9?-!??e!??KH?KH?fI?%?Kut??m?<S??w?`.?????????J??c??~???d???@????u??N2v?]?~IL??\s?S?U ??t?n%?H?????Y??|EzB??,??bd?e&?u?Z??]?|??}????Cg????@????0X??F?1??????0t?=?ve ???t?c/F??I?h???\??????u?5?n?O?[?;????TZ??S@???e?_?????????:q}+o??o??h????????r??M?}pRYCMy??*???r???T:J??OI#?-o????????N?????-\????e??E?# ,?????z??(%???%?u???&??/?ZZ?MH????????Qq>????61??L??Mt?>?)?ZV??????q2?KM)i?J-[0+??v ???9?? ? ??????Z??????aZ(???e?~`(??K??VuGy?8?o??f??z?s???j??+l??rP?I??????i9]Pk]??#a???t?A!5??F????1????^;??qZ`S?*0??(v5??s???+\?yUb??B?o?\m??3+?4u???7T5P?|??so/???9'? xqW(z? ^?7y:em??????????R?1#c.?H?F?iR?W?btp??i8?3Zd??????o??q? ???????b/oH?$_?G=7???*???do??'?c? ?4??O?Q???*/??)? ?'3*C?$?3Y??9??J@?u?X: ?a?t ?d}5???????????Hx???)?/Y;???e??????T ?;{??r?????[E??R-???)????R????F`6?y?b?3?@ `8X!??WG%?n&?bF9??@1??????%???&????????,?2??^? ?Y;RQ?{,?F?H?G@ ?l??| ?zf???"}F???,???[^-s?K??b?????LG|? ?S]??#~%"?W?gJ0???t??\)???,??z???Q????^???u??? ?? ???R??SX?_?????>#?hY"?+5?N'^? V???x?????#?(?? ??pI??bT?3?Ig:bt#??s?[Icnb?P?? I??U?R&r?cQ?6/y)??c?Jyk"????v?1???ts?xOG?$??k?4?!?z1?d????C??NY_??qx?06????"??+?p??l L?g??M>]:}m?"?"6@????????6!??z??}??????l?vb;\???<???????I?????(? ???^ .?] \???? 5r??5???@Y?8????????M????Y??/f%1 Pd?Y ? ???Y}?T???F??oE?????#??5??P?? ?YZ???N??8?o[???~*?<[8}??n????k??F??????j???Sy??? V?txU?DDS?_????^"?d?4?AM???6V[???????J?l?? ?"1`?{r*?$?5????x]*o? ??2??w??;`,? ??]?? >????.j???p?eP7?H?*f?Yd?N??s?9e?X??Ae}??????1u?d?6???b`? ??6???=G??0????G"??????????????:?? q??toe^b ????? uK??$-\?4?(C??rf?F:????Jm?.?????]????9?1?+&?9 |);?Gi???g.LBzO??ACol&??|???2$?i?U?I??^??b?==-??_??K???v9??L??q?V??W+=???^???{GDn?rX???G???m>fM??=F???????-??z???$?{??2T7? O???4? \$?^j??i?????? ?C/^?HSK?_?^Xw?9?A???Q"?&"7E"6?i1??m?????:?z?? 4;i+??o?*??f?D?1? ?i&v?????Z??A??mUU????????|?Nt????@y?)?V?????o?????q?+????O?????#???_?=?????(6???m5~?[?p???%? ?Kd??J?:&D??$E?2?}??????O???[=???M?????????L~,?M??UC[n;??eI?L?? [??p?]y??B??l?i??~??????h?2?k????5??????i?AEu3???v?3?????k.? ?? C?+???p??C6???W???3?*o!???>&`E?ts??2???"? O?U#?b|??K?????????_?1??r??????? ????E???????DG???B1??%C??m?m?k????dd????\????????V???W"O????$?.???_???/3? ??aZ??l??? ??O=?z?!?1eZ???????j??P?? {p???&l?????R??}???y?3???'"]???2eD??j7?~%"?? )??a$????P;?id??QO?(?%?M??&:?79R?7 v ??J?@?l?QN5xG??? ?????\,?1????W=:??R?h??=??c??G?\?C?s?T~84`??3? b?$??2?LXT???}?c.?j?C)? ?Q.?Z???????a?c???n$??\?5????????? ??????oQ?ZM=???? ?}%? ?'?&?JUtI>X?e+?????C?e?'i2F/[|?:?W}???*???7Z o??3??V[c??????$?C??~?!?? ????r??H??$?p>???E???w??]?z?? ?Xg ??8+~????owu?KS?=???EI+=??3??PE?)??le??%??????"M??{???t6??jT??k.d??\?!?L??V9??\?8??d????XN??C7???s??E?k? ?s?K??5?fk???)?W???l]f?#???b?`>???????O????H??6?B?}^>x???2|????????U?yT?0Jz,Oq`??>??3?Pujxqw???Y??$?????,????H?Y???????`??????0??? 7?xoJf???8????qK??z???B??9,`??z???O? ?7??/)k??b?lvG*??4????S??vj?u?y???????x??Vl'vV ????ZKU?q??FV%3+Y??t??^???.??l+}?cqz?;??e?K?F^?2L???U???aLc???;??j?=????p?}?6??A??8%3?G?oW?.?PJ? ?????azYH????F??;*)?e??l? fVyF??2??P/3??_?y@?Wr? s?f??"??Imr??a??u?A?_])???O?@???g?U??+LvJ.F ?X?3%t?{?3?A/??????FIf?4:M=????????^?|??????????K?|W^?4?5?H?@K?? ?x??2??????Y?;*?.:????b???d?"?W???-?????vm)?????G???G??? ??q??????)?{Gt?}??M??gZ???}?cl?????O?L'[?]N???????]?3????o? ?g??H???-?H??{$???????#)?v?????)?;???M5?[??qQ?f?H???{R7??D7?f??j???????????,??"????9\??G??'??T5?_j/???&??t ?7d??B???$???$w?fy?x|?cq>??? ??A\D?PE}`~??U??2h?v??????,Q?m?&?q`-?9?,|m?????|?O 0?/;??????^?p??w?i/s$]M~?=??h??????_>I?l?????u???[4??O-M???[ah???-#3? ???0?v??:?Qa?????Y???X??J?C??J?8??Q? ?X??u?????(K?sPy5w???MKX????N??O%DQ[~??+???3??\????Yo??@6??[?>????p6?P?{WH?J??C?{+?6?K??:? ?"z4ch7A?#??He#?T?c?R 69?68= @??`?????(?????B??DDL??g?I???s??1$:???8?@>?r{?M g~?H?9???_????t?{?jf?!? ?? ????}???????g??????????n???hy????lW???)8?'?Xp?,?K???C????>od?|[?????F`^d&?????}??Hf?????,?)? R?n ??A?;+4f4? ?5????????o??r >??kY????p????? N~7?D?E)??!6?N? L,?w????)?T ???17?RF????d?Eh???Q?x :?O_?nt??`Y1?0s?|U??n?U?7????s4??'?_/,??tl&?Q?b+}?%???:o\8? n]??????l?l????kFC????d???????U??c=?aX?|??##?5k ?-r??A???;]????L??o??8?z?,?um??????E??f?6?u?Z*????p????z?Ta?|???? ? ?????g?JII??HTm???JwD?/?Gr0)x???r ?7\w?????:??HF?O+??x???Ro?`?,?{???A??????#????A*?????l?8?z'??7????pI???*B??gJ>???????L-qR?n??????????sqE?4??(?%?y??Z?H??h?xy???`oX?h H??E4?f???!?Y???L"d???gKa???P??}?Us?'g4B??????!)??@:*??b???v??/QO-????XeU?Y?r?|f??o??e?w? ??$?$A??l?R???? ????? c1*sacf3?Y??i[?1??gc??'?b?O~??8?m?R?&?]???V??4l???`T$?3 ?? ?IP_(??)x???1H??G??=??n?axDS?E~??$&???/??r??????S???u^?????W?"I/W?8?v?ZW??k?,c?.?"??Y?lc?u?Q????<c?&?t??F?_,6 2Hq?+?x?* #9?_????'??2??"??.r ?Cxz7a?????h?v? ? ?K??Y s?g_n??0?D-?7??"?K?jF???1h?2????>Qn?)?????????nl*0???????????? _?'?8b?"???HZsiV???*??N?A)??? ???G? ???3k9Fs? v??? < ?t???/??????????7 ???s*? 7??????BQ??IE?Z-p-???M!r??z?????7c]D? ? . |}~0?????????R??Fws(?d?wT3?@;+ g[?C??x??>???1L]??%NQ???m??L????s??x(?cw'~0??10LmlH??I?{? ??e????I??V???O????.]?????sR[??;?/?n_3Y????????u??;I??g(*'?"??F[?E??2????S X????&?~?M?????]$????xr ??8?. 8Lu??? ????Y9??7??|?*{PM??2?:%?G????1?'??{?i?e???R??????o?? x??on'???{????g???_u?[?S?r?zuW???? ZW8????T>?^TG??? 6???? `#????Om?t??????'???1u???D???d\?{?HG?? V]??? !N???%F?n??F???%k3?L??]???N??+z0??z3??X??mp?n????n3??.?|/?^tH??R??r?v??,??????j?E?WVB????n??)???{?U????~?1~?????SO??? !????m???>??g?Q??????YZ??k??G?S[?/=?Fz xu7??>E????????U/Ng ??RG?? ?? _?? #T???x?6w"????????????n`??N? :?mv=?????8???n+??xs?~;e??V?g?YF?glMx?#j???????a?????K??r????)??? ?(??????o\??P???????D? L?Yo??O??j???????#f?0 ?K?|?[??a?E???G?&???????3??l?.s????m???x??v??????Pe?n???????-p?G"??p~??i at Y?^,??#?d?r?'??s???p?K??:?Cr&???W?l????F?Q?I/?????a{"?Y??m????)7 #?d;1??j??? ???w??I4C?Nv1?? ??6~??z?c?????C=??)??G?5???&???^t?? > 4?j??&d"?A?7?X?7???J?????j?&@?3$???l?X??t%X?8??N?1 ???E???????????]???!??[?G?????&:?(n)5??,bGY????????? G*??;\ui?('??|K?"^ ????#9}?Z???buD0e? i??)c?gYH???? ??-??WV;?Dd6Z?Y?<"???a?5?P9#T??9c????]tyy2??*?xH]?????REwI=?n?u?Q^??sx'??bf6A???]??}?}'??7 ?H'"???[?? ?R???o$*u???T?6&??7?o?a??N???AD?u??????????`1Z???.??9????;???#?)?Yv{?????ap?Aa_,?'L??&????????????j??????#??a??c? DO/??VV_???DT W I ?=8?????C???iG?\??????j"?y ???p)s???V?&Z???\N?????a?9=?J"??v~I??IZ????u??%Y???S/??Eo????@??{? kQ%^? $hS?????p?d?????|?U????_?####/e?3??SQ/?a?V<)e????xu??A?% ??`?.??u??k??M??Vgo??]????uv[g?6vaRh????????0z{VbX{?????? W??G???? ?????Jtr{V?u????dz?H? ?,??3D???? BP?05????? &??????x?Zq?0??|???e???<a@}]??L?U?JX? ?i??????????m??:??-+?? ??>?Vv??4l(??7?????? ? ??S?l??`@?C??Nj?|?F?? ??Ks??lX?$?$?W?????????p?q???D ???? ;*???,d,?kU?P??`CR?????Y~k?????7y?1+5?5??$1??@???x8K??=O4?d???|T??x?X?.I???I??W?)L? ?\??????bhI?Q8?P?j'B???J????xtq?? ?Q???j ?3?D?sa?&j_[;tX?W???? Q???????C?,?v????z?~?Wr??3"wb\*u??TdB|??>?????\???5D?ByFK?????5?(W?D+??b?gfCv?d???Ti??x?D???? 9? b???[??Q?)qydN??]? ????N?'??,?O?I$r]6????E5??a??E ??F?f???N?G????????T?H+???c?y ?gJ? ???F????????:?=??0Y???????Gu???L???????iF?$???Q??O(!? ?????$%?*w? ??Y:%-???$ yL?????tu?G?}?????????P{?lR?JT??3??K,?F??4???L%?XxA?N?????GR?'@??scL=???l?c??A&KIR???"K????OxG??F??Z?y?,9???O??{??Y: ?B?t ?g+??(B?'?#?S=cj??-g9&?p?????N!?l?;?)????3}??Z?? ??&??_K?vX ' ?? X???????tu?? ?w???u???a~A?Os????xy???2 ?[7?C^h?x??????E?F??K??K???,?e??2 z+ON0??$??%?#u6??J?|Iipx????????????,??g Rzng???dK4",?ie?^V??ZCT?????K???? ?N???M?4s/|qh???R. ????"??"y?Jc???????+c?a?g??:?*Fh?{??d?v???K?4???t?#Q???LK??????qUO???u`t?I? II?A??|rC?d???W???&??? t z?X^4z\mk??k?WE???????=1M??M?O?_j?bLj??(n?j??????RUdh}?1????????9???`v4?k?1????\?}W??????ZB?h????? ??????z?NtQ???#N]2d??jL?fACu??4:???s?>`yhB?U?0?*?,?W*?cFH??%??tg?fH???X;#?5?)`?? A???A?????;t???s????C??t?|lF??n??B???,p?PSfW?>? ??-??p?q6@???9 ,?J????m u?????????ItE????~?<:;?Q???$??[?C?M??????? ??N40}8?O???s?#N\_?!Y?s????????H ?;??????? ?S|n`v? ?K"??~??W/???x???????? ??)?_Z?ex????6?????*?'??hRUWi?????Q.?i?R#??o??K????^t? E?%??A?Kt? ????m????h???8???-*?%???????)w?Y?xR`??mX??M{,??Ab{w?^?'?v??aR???'/N?????(N?^dn??_k?vb???|O?\??5:??j\????tbV??d?????w ?h?#?5|0?KG??x ?H? ??&? ??d???Y?4x?$?J??x???a!??+???K??^??Lzj#????"??q'??\d?M??w5??:}??ES?????Q????%u??i?? +??PfkvV?q{j???5C?K?y-- ,?wP?x H~`6??? ??`?7#=BY? 4?C Fq]*?E? ?6,$?u???,??Nf??t/?a^?]??d??h??c!V8??^?3?^<}{???`????g?]c:Y????v$???R"?*?X????6?%U?+%??????Q?>?@?g??^??n?i???+gH?!????c,9????????^?K?/?u?t?u?R??????U??ZiP? lz?W?_bD>p?!?.???*O????_^??? ????GPR*`>??q?I???Dn#n??Z???M???e6?s}:8??w?WP?ft ???lc?G?? }???Dg?????????p?t??????O& `g>??r??C ?#1l???:??h?????dUK?f?? ?ic?}4?!i?^???!???????P????Q+???O???????6sK?VT?4E?AN?;L?>q'??? ?Vu?v????-?H?a????[L?Sofp?@ ?w???CP'?i???????????qt?????hE?X+??z?b0??^s?[??S?m?V???7f??jXidD?4???k?n(?S?@ .??|??#?gz???ny"q?ju???z?? ?d?4?6??n?? FM8XI?????????q??T???(1?)PG?'?~+N??~7??.F0?5NfD?'????o???t?M?????0 D??????YM1???N?S?Nc??'????u ?s???_??s????d%?q??0zV??')%N???Zs??1????????? ?lVD??^??p?BX? Y?@????^ V?gJ?gEp?u???????8???'h&#O??Y?a??? ?D?yT??4?@?8{cz ????|???T R4?${??o8?+?U????U?????A??i#??v?ax??????p?>??q]H?-3?z{??????Q}??|???aO??????Q?@5??& ?W:????????](???Q=&6?L?ZG??R"qpa?G?)?2??=?A?a?y&????&0|'???V???q&d??c??wK;cZ ?????}???5^e8m}?[??????XD ???B??U8"@?0? ????ZE.P=8 ?t???&A????????v ny?1?????0???GX?Y?!?{i?j A??<>??$?Uy+??%D?W?b5 ?z?Fu\ ?u?@X+?????A?L?????<}????B?#?h??e?? ??y9?????l,?+?)?yY ?????t8?q?(?4 )?"?]?>??Z;Ph^3?P?TL??i?? j????1qCc????L????v??,??i?"v^yH?DyC? #?m?m?w???hV??d???@@?????b?`? ???A??Z?%??(??Y???a6?/??b|?/?J,??3????O??[??j?$?*Yn?O??C(??/??D??n?????<??<,+u?~?v?p?7`G??0??F7??w?? ? ????6,%?ImdU3? ????0U=???WO L????aw!?? ?Hu'??a?)?a?y???&?????? ?iT???;? ??0??;W"l??????Fz?Dx??????y?k??";R?I???????EG????????d?CW???v?b?'??K????b???_=i???? ?????????N??>???^X?Wi?l?#?[???L%?G??T????/?????? \???????I=kl?|????i?? ?Ab@?i?%?dL?B?? ??????????TH???9?!q?kKN?F??>|??Z? ?dj?M%???W?7Z??yz?0jc??&??n???z?????(????@?y$Ou?b$???M ??l???S??U??z?-?0Pk?ivP?>?A]??o?????Rn x?}?Ci"?C??K??y???O?????hK!P??Y?1u W2H?H??Gn?"v ???V?#?(Z? ?W.?[??2^???Z9??? ? n?$2?c?h?I???-?l?[Y?# ?tR{?T?I??9??????e@?????l?*cr??U?5?#????#?o5? ???f ??hXI??e??v? V?5P???w???$?uGPt???v?t?%????????H??????(?t?l?.???U?m?3??$%?[H??j?8IG??'??u?w<???B???f??KE?1?? tk'?g?????Uz?|?g?@1?&4?g? ??????l???D.?? Wx?}??'0?l??????4??2v?????g? +oj??]J???d_??I?:4??m??R??$o?????8???Lju??y?;E???~???qjs?Dx4?w"?[y?1gj?L????Y?G??????w?;???????f*??????4?;??|?? 4m\????&?~?h1??Z??????pN??j?)?O?l??)??L??2&/???e"O????{??????V?#k??V)? u?&???}??????t,?h???P???!]?'VF?M???W7??'J1"i7 `+kD{???a??p&????0{?? ??N???p?yIz?? U?2?mqVt????8???d???k? ?:??d???'??&??/o????/?7ixBDK?{M?t1+#???h!??}v?l~!??w3c[m I\?8:??{?q???kG*??B??k???&1??u% M*[?I??`???sVnZ?.t???Td+\D?j??yI?;???????:?L???????_???-??Z?x?@??-??m?????1??????k??? Li=Y j??1?q????Y??|L??8????????Y???>???Q?K?f?.kg6 at R^? ?N????S ??q??)gN??#\<??Uq??;)??yC56?BP?{?C?????U???H????{??$%??v?.??[8? ??U???%=}?+?v5K?oQ???Z:1f????sb???R?O?C?$??? ?6&'`'???]Z ;v??1??t??????uX rB?7???t[h???R-+=C?J???1 (??x??;$?`?9?????"U ???J?G???G??lK???;]??J???7b??????nGq????N'y?'!????2q1?gEB7?????Sq??&??X???8&`;?fa??M???????U?a%? $kH??W??K??v?J?LY? b??z'???Ta???:??d:?.???=???d? ?A?? Nz?@?@??oB?E??T?????HnLv????????(??]R?b=?*??'? ??? ???K???/V???j(M??G??&??xRHF???L?Q?<{|?a9?X??????#?_?????r`??h?d?X6??W??q ?c3r?5?D???p?3x??rd????????#@c?Ep????%#^F?~dm? ????{jY ?>)????R?U?5??:????+5}??.?:?s??L???g?vn@???qTW???1;r?????j?s? Q?6??a?? ?lB??&r7???7??,??J~O? D?n?kRL]?S??vH?G?f{1?i?????V]KW??????GZ@??? ?t???????I???|??#?X?? ???d|?F.?G???XM"??`?/s ??????*?????n[?%W?????T?u???G?.~]n2???^L!Y?5l-?? ?1?Mv???????/?h0?9?;?T???6f;?????? ?V??;??_???C????F/yOWw??| /?*,?WS?Vj???aS??0?FZ??1??^??]?? ???u60?$? HF)I????U?H??Hf(?IRM??????VF???W?$?M[??)?@????d??`?q?]?I??}7??~4?d?b*???>???R?f?????Z???g????zZJ_%b-?^????E??!?1?-?w?????-????\"6m??u#[7a?V????i?}Eg? ;???Ri?#??4???V$305??????!?cQ??4?bk??Yoi[?}Y????9??[ ,t!?,;??eZ&?y?HV?????."SZ?;??wU??v??????OQ????|J?????%v??R?[5??_??-??????7???T??!??)Y`*0?r:??MF????s???H%????1?!8?U? Z-?'@r???{??W??{g'9?O?????? C>???B???L$????J?Lz[//?^V??/TR???E?+???v??y6,-&??0Y? ?q??|?fW?0u?&\ ?d???@??d?#?/?1c>b2?\????2{???%?w??(1zyf????ap#?!????V???0??]??VLm"?7?6c??6???O?_,c??dA?????-?-c???0Z9*?:?<6????O?1;Tn????(f7?lzK??OyKk?F$?- ?????$.4M?-?5B+???$??9 ?k!E?2 ?g???d+??? ?b[?%??Jb???W??9!i??^??jx? #?W?? ???t??Y;)@"?3???p?=|??JGZU????????$???W:P?L??LR??_?B??}?%????j?p1-??8`??????S9?a????v?I}F? ?U???`?????G3C?P?`? ????Ho?65?QB!???????d'??N?Kv???N+???A7????(f??Q???O_?#Y??????????????y?d??B?_48?t????W_X5?B}?R?S??x??????q(g<?U??XD???????????Q'??!\?,&?????? _^???&?????R? ???[?l?M?0???~???F??ty?^?c???????????????d??Y?b?)/F??????]a?*????;a???C`y?8?RQ?|'N?^Mt??.?V?(??M8MgWI?????$??????Hj,Y?+y??$????HT!6{??!X??b????}F ???]hg?l?? 9?1oE? ?????-8?$?????s?????u7?C????Oi9v??H????p?m?? 4??? ???t4????5?????L??U ??,3??\?E?b?????g?]g6?i?????Wu??:?p???7^???T??8?KE???&= q5%??A??"??wd??`?Ri/"?-????"???Yih*i D??T??????-??yqS?kW???r???? ??D?v?O??G?????I?SG???????~?F??g??$????RH?V&b?t???I?``?J??G|?$s?:?????N??,?#?1???V?H?????T?V??d? ?????!?N j%?8>e????Y ??4?:??i?z??C??? ??l??X??FV?F u???y???Z?4???????????zZ??F#5d?mV wf????a ??!"?65???3????w??????+?y??.?Y??? q?????h4?N?????Z"??lJq??????!?lk?O:???MgYH??:n????E??Q?B?F????kaRK??/? ???? :?????i??,????"(W ??eD\^m1Y??%???? G??? ?`p??S?d??7Q? ?p9'?Nl ??2?G@ ??V??]??f?.N?????p?w$ ??$?4"????3?V2??J,B?]x?????@??????.=5??P??"Vw????`????E?%?Aj???????Q?&E??M?XF????l*??????a???@??[??Z???Wl-,?n?1?? ?????of??R ???? !???&t?S???;????bx?M)???A:??j8[{) t?????>X()/?E$F???D??o?S?1? c)? (?>?????#:?e?gx?twu &?? ????w?? "DS??xG]A;??JT???}???? ?F???? O?@?0???^???G??-??? ?? ?p6?:?H????????&?????lS1??g_??DW?2c??&?3??=???z4T>???????9??x?X?c?M??? (??$^?~??s?2??????V?`??2?g?n????3I???? u^m?FP?????5????y+??%??+}?c%?>????g?&? ??_? 5^ (????<}6?SJ??n??d?SC?????n2$G??V"??sW@?4?B;wv?su?n???:???g?i?G-?@"q???e{E'?&??PUV???]2VE?T?I??J2K?`??Iu?;???%?+7?L??,pI??S??????KV?4??.&j?t??????? ??-?? l?=???H?/}%??????????=[??EA2O?T??v??D?????J _t?????x?9?U?u?E8[??]7?????x.?DB6n????%tp$W?h?4???k??)???j???h5???Y?z?Gm?????f?8Q?n?=?Q???e??r&? ????0?U??{yfmN??o@? ????D\? ???EgQ???0,??`D??Dl+???H?4?R ??P,??C??A??U?O=?d??#????S???n-?'5^djP?k$??/ &q??S`??i????????j?jZs?Q??Zo????4#?????a?*g??H?????9RR????Bhq?j?S8[K?5.?? 0?Z?+?i?ev?ks/?????"?zZX???JqS??27?????%d??? Re??=???SN??x?|,?k ???-?IhSE???{E??h?????D??a???????%&u??*? ?Q???>?66< q?U;??$"?h?B???%?}l???b????? d?aq?E:?>?z?U?W??K ?? ???????1????/?B?8D< ???????,Ag??dc1??=?6?c???!=?#????dE???Y? v?t *9????????(&kL)?hg7?$???)f????h ?e??????F=Y ??????q???f?)2Nb5?x??KO?z?w#F???p???U?L@?t?T+?p?fF???5Hg?v???L5?+F$|d??fE???EI???z? ???GX2C^x,????????E{?????A???????;?????? G?3?u.S!cRe??y\Q?C????V ??????g??XI?8?Q^P???X??a?q???M?.B???0|?????%1q?$?0=lfE??a???I0??F?^? ?=??B????mU?^?DS??????lY>?MS?naOn????EZ????p???-\??'y?nJU???#*????2>???Y?}r?x???????+d??????>+?[?A{3/???O_??5^??b?^?????1??????S[ *??s'3?'0?-???=?(~?O???G???????T3&??;??0? ???I???.??&??NC*Z?YQ??=V ?#??c???l????i?uP???%}??j??$??e?yb!A?~??:????P +??>????e ?O???J.??????qjJ?q??K? ?Ej???[?C,?QDx'd??;3?/??????0a????ke6`$??N??z(S?w+???? ??T;-???&?"?(???-F??6$??#????C??.???? M2?}6?}jG????6"???O?.?-m?N? ??:/Q????????N???!]?tq?upO????_????EQ???'3??T7W(FC??t?[,?]W???aEJ????\??zQ~???v`?NYvJ]5Ct#1H2SX^?T???M?A?=?????9]???????)U??6Km(?R$U~#c ????K?n?c??Gf???p??(SLT???rt?I+#rL?*???S?W?:D??'jG??x ??B?qg??J'0?!o) ?8Vb?"??????i6???? %&???$.,??????n?s? ^??d ?? ??fo/~H?a%? J?? i v????,%"???q?/????X?E?(?^S ??????W?zC]?????Q????(? !B??*vHl??k?D????Y#b?????M?*? ??????d??4GZ????md`kc???FB??dAv??^An??We???Nm??? 9S?f??_? ???g{F???1?n}{???|??6,???-B??f????1??d{???y M??rY??3?????W"P??????73q`???lG??/???suLj???]?????????????d??????u=?(#??'????{nL?.?[?????*?Y?U?NZ?? ??K?Ff??????Do??U^;?)??)y)??rdY???????/?1???^JG????,%???1???r6~?6???Z?5?6y3UE?Q?????kd?4?????D???r#d#?E ???''??@#o2????2?B>????? ?T?????^?\'+? ?6?t? ~??$c?'->1N??j?7/&o?`?O"Q??x?a?|-? ? ?7U??|WZ/??:?????????=????]?e`; ?f)?AV?5?? ??B?5 ?J?e ??]??L?$A?b$* ??h???/[??^?_9????t??? ???v?|???????1L????????&S%?q-v??v^jK?wP[??,??,????Zrg|'{`'\Q'E??d?D??Z???k9?/?dJ{???8PbdQ2?V??JX+a?s3y??so?S ??3wE]n??u?-]t?^?x{9?o2????{Y????r?'y? D)??W%ne????m??? o'{??@??[/?-9ys@?q+????.?????UN???m^????y???^[?qEn????? le`'X[?Zi???m???Qz?I????L????"?7Y?7u???Z?(ZY????5?VJ?R??,?N6?NVl'?a+UFDu????e??23?^Zi ?r?m??i+??????3v[?A??L?8? J?r?=T??A6??2??A?A?A??Y5?[?+?,???2???? ?,C????-#I {????d?;Y?N??????*t?*t? ]e?w?z?????)0&a????kE?N??^3SDhze;v^?????R????I{????N??:???*?????NH????@%?V:???????????4*??UV?UV?UV?5??????A*?Z?T ???7Ru????TxS?J?? ????kd??q??U??l#???i??Z?p9?7???mZ??6?FA+W???c??Z9?Zh-?x?%??e??????I???%???cO?R???oZS?=Wo???s?????.????m)?R??i)?Bj?h???c????ve?)?k?SLk??5????\(K?l.v?;6?;i?w?;6??M???? ?c??y????$?.??Q???<7???E?j Hf??????>??$??)?O???/?J?O$I ?o????B?????/???>??F??????9L*y??E?1???v?UE~?/ y?: PK ?<[,|?Ro??'N??^??tlN ????t???7<???G??1L????????? ?7?o|{s9mRk??4??I????2?e?'??3?m???h??] ?:?j+kYY?CI?????C?#?? "?u_O'?PK ?Rfjldd?? ??U????D#?X????v??I??WO)???_}?????B?? ?u??wK???f??>?????L ?m"????f?????9???9??PK ?}?7?~??w???oi8zvNSo?e?jc?G????M?pE???\?[W4K???:+Vy??y??????fS>???????E??Y;??Wuc+?qYM??)?xxg?]]??~??Z;? 5?k??H?d??],????/?&?? ?k?D!??T??ov???3????h?s??6i????V????e???????l??#??%???o?.]?? ao?}??????mei?????k~?8????ih????????????????6?>s??? ? ?}? ?/?&_???????9?-???w???e?f?H?x~!??U?\?*??? =M? ?yW????????? T?0p?=?xE??17d?s? ??<%???=??6??y????[??????O??z???]^???T???1????xFu2QP? !"L&?B??= ???\U??~????DM???[??,K?W;????T?q?hD??W??U??8[9?m?;.?? ?|iC!?`?+??X?J?c?,??~??J?TKR?sF?????????7$??A\?d?zbG_??|?7?XG?ue???n????&???m????Mp?=}?~???_;??+??i???l????Qx???y??D???4?6s??p?yK?_??b=b/??T???????_'s*LGq????l`P?P??>??:]L??D??? ??l? D bQ?q?e???1???.??#Ed?eK???L ?]??BB ?dWb? ??H~x??s0:?9???y sXJ?Vf?A} ???'???Z????9 L?T????eB"#?????? ????al/*??s? c ??RY??e??I ????[_6?3`???'v?6^??K5??u?UY!b ?U^?????]T??U?y`Ib?????M?'???M?{7?5P??m?? $ A?\??3???TT0w?L?,I?8K??ok??;8M????i????Z????#?V?`?0??Q#?[>?e???B??.??8?S????j?Useu??I???gA??.??.Hp?????????????????en???.9?_Z???I9??Y????7y?\??? b ?K?K2#Ow?.?D?,?[P< [4?LU?l`9u:??h??@??v?d? X?9???y???PO?u?K??8?V ?\???5??3?N?6??O?"rV/C:D?U??6????o\NV_ ? ?????!???5? V????3Q?{???@???#?zH8 ? ?L??????34??? ??,??lx? =??2?g?????Xj??%F?z{?!g???t?? Nt???? y?8??3?F???U???&????|???y???. M??(?T?`?i?4??8????????w????6 ?=e>n???,$o? ???,????#????p;?????P?|B"??,7,P??????r???+ZZ??] Z???[ 8??/|?@?????y?_%S ??e?????Q?????k???[?-A7???]????.?z#d?A??]!?OvpQ?????Rk??"??NUW??d?V0?O???_?????H=??4?a h*r? ae?Z??X????11b}???????0U?#?W????#}???y?????NP8????}???_a?>????l3????6?5Y%???4????'p?&m?0/KKO???H??t?[=???-?????SWE?F)?p8k??2??9???>???}S=?5j?6t?K~??#-?\???f??"{??U??E?@,?????Pj??HDW[r?4T?h??E?rO??$ ]=??9?z?e?lQ?u?A^?? t????????f}"?$?.&???? `?????P ?9=??????5z????????E??!"???Rj#n788?i????3a?Y?=???8k:??????aj?0P?????????e?8HGw?!??i?G?)??17???r at I????X#??Av?v?g???]?!|????U] &?????Zp?sn?/1?}???N|???]?.M?/??? O?Y??X?9??????A?(=???k9(*y??lK????L"P>T(??Ct?OR!>????,K2????????#?????\?o?????uk???/? ?g?J?f*???d??C? .??vh +??????7P?*D???%?X8??????{?P(?C??GCs4??ehS91?????7p???B???????:0??i???> ????.?XixY????G?x????%??T??????a9)?o$?^????? 4?m?3J???+Jv*? l;??9yj?4i????F9?*{?B?U%9zn?SQ?)???kw"Bh?2????|???????h?75?? W??Qd|#???/z?T?[iL"???7h?{9???MLX??? p?@[????N???????5?j X??+k>C14?V?5,RM?7?,|eN?Q=}Ts???q??????C?s???? |?D??????99?????&/ ??^???32?+?|?u????E?1?????? X?m7??NZ????,?^Z#}O?E? F??x??5#??? S??but?p?????????Q,`????R?rI6?P6??%nS??_=??VQ}? ?]????????y??kNA?k?C????m?VO_g??H9|N??Tw(???e???jM,???B1??_????sb?{??Co%??n?3??7C_Y??r???J9???k ??????U?5?G???)???o?\?D?wIIP????4??<\bzT;??-n?P?^Y?Y??3??????_F???f?????????r?p????c{=y7M?????(???????????8?~??t?'nn???????n????g????O?Mf3??g;????G?????/C3????nf?8????? ?s??????e:?Mn>?x??c:??qf??^_??|???S?/???t6????????tMg?{????2?}?}?>`m?????????Ox???????????&???1}9???~???A??7?3?F??n?3F??????xJ?????M?'4%?y???????P~?p=????????9p?!~O'??????Fa b.??its??*?}?r???.h??W S?????_?&?????4?????~???A???f|I????????%?a:?M??oM?N1???????<?????\?B?????sD0?? ?I????Lhr?????+?E???I?n???g??????i?].?TK;?????k&?!?l???????>?Z??????????I?h???? ???\?j?????@&?!???bSy???e?????]2???????gY???[|??7???w6?`??I??.??Jo???J??mU?rS?????????j??t:)???vLG;????.$??Vya?e?*????????&]???~.=O ??V 3,z???,????????1?H???9I?8???T?Cp?@'????i?D?0gvO??3Mkh?Z??r??vD?#&???>u?S??*(?'R?WZZgK??o?]?%a)???d? ?Ts?^??T,?C?V+?")-???g??v??^'????\??B?M??r?%????[??(A??2????LK?Z?y-??>???&?ee ?9?? y?,[(RV?'?l?n??????|U?T*n???zj*?tV!??yZ3?????6LOl??l??Y?9??"Qu?DcI&???].?%??EqC_??)?t??8H?6??N??IV+?S?S????g??!B?NC~?%s?G???????J?? 3????X??????? , ??}?"?#:}R???]?J?3k? U????( ?+?????9?%???J?ot?????????% ?]??Z??g$??s?&Qdz[e$T?????y!3??g9>????'L4??0????\?sK?Y?'?????? ??XhC??l?^???)??Q?????^??(??%?_! myI?]'??A ?{1??????k?ULn%lRk?+??7??????????7??@>?c???$+???qB??'??* ^????j?@??!?e??3???}?/H?W?]Hm?????a????<9Zr?QN(?????tRB??????d???!???E? ??C?.???p(????OEQ6?]PtA??????A??2??????????#??? ????Y[???[|?E??????????0j???/??????53o;>????t?un?]?? ;?p??%4|R???^Hu% ??"y?? aZ?cSz1??????up?NN? )????g?Q??????8?????? ?@???s?????p?,7?*?)s \?e?z?`&@?IH?l?[mTT??X???;?9Q+?i???7?0? t?]?????w?{b????4???,'?\s?M??5i???6?`??a?8@?T?v?? i?10r.?! ???cm'?X_??"{??+?(F?N??I Z????RIyGO???3?>A ?N?l?:?? /???X??????s??nfF???? ' 1?R? ?/?+^]????=??sZ?A???Y evyc93I?-??/?? ?P|???Lj????????l#el????\??a*?y?????????B?Svc??????~bs??????????P? ?6~?i?? e???3?s:k-a?????4?????!56?@ 7~?v?(FU????? ?q? ???dJ$??`??+??I??fY-??<} ?{?(??G?Pp)???m?1?????)?????"??w?p????SW???q? ?!/W?^_?m?hZ??Yr?=z????C???y??\?2)???g?& '3??*??&l??HAd?N?????[?Nl?????0?????O?F2??}???pb?F>? ??????,??8??c38Ct?+?P?C???????^A???29??$???+?( ?< ?L?8o?????#?_? ?]?3Is????q???F?????????#?y?px?%?O????v;??D?9? ???H?aF??>iq????'? }??3???????`??Sb3Lnw????????dpI? ?-b?]????D%???0y?'???!?A????Y??T??~{?)?????qbk?Cwd?A??????k????;???{?@?h?i_3???? v?qA?5/7?j?(??mnJ????akE9??????v.?F??b??WH1???;???V?X 10\??`R??] ?b_>?7?|I??S?rj?Q???Q?$N?l????qx{???>?1??cAg0\?(23H *!=??c?)??2L???T??L?{??L"?J+0 D}=?????F?:?}n7vNY?o{9L&(?????n????????q??^????~????TN?S?g???wX i????E?s??n??$?? ???????LR?g???.???9q???kS4$0??????s&m?L??????B?6??y?????P?-?v????Yd???TgZ.rW?"???Q?8;:??E?V???7'?5???*pO??u?[7??b??l?BF????\?x.??b[o???mXH??Z?B g??W"Th?????????(?????x???n?P?r?}I?????w????????B?U????PK ?d y?: From mgrepl at fedoraproject.org Wed Jul 15 09:30:43 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Wed, 15 Jul 2009 09:30:43 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.29, 1.30 selinux-policy.spec, 1.885, 1.886 Message-ID: <20090715093043.F346E11C00DF@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8361 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow dhcpc to read users files policy-20090521.patch: Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- policy-20090521.patch 8 Jul 2009 19:31:17 -0000 1.29 +++ policy-20090521.patch 15 Jul 2009 09:30:43 -0000 1.30 @@ -130,8 +130,14 @@ diff -b -B --ignore-all-space --exclude- ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/admin/readahead.te serefpolicy-3.6.12/policy/modules/admin/readahead.te --- nsaserefpolicy/policy/modules/admin/readahead.te 2009-06-25 10:19:43.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/admin/readahead.te 2009-06-25 10:21:01.000000000 +0200 -@@ -55,6 +55,7 @@ ++++ serefpolicy-3.6.12/policy/modules/admin/readahead.te 2009-07-13 11:23:45.000000000 +0200 +@@ -50,11 +50,13 @@ + domain_use_interactive_fds(readahead_t) + domain_read_all_domains_state(readahead_t) + ++files_getattr_all_pipes(readahead_t) + files_dontaudit_getattr_all_sockets(readahead_t) + files_list_non_security(readahead_t) files_read_non_security_files(readahead_t) files_dontaudit_read_security_files(readahead_t) files_dontaudit_getattr_non_security_blk_files(readahead_t) @@ -1939,6 +1945,27 @@ diff -b -B --ignore-all-space --exclude- read_files_pattern(bluetooth_t, bluetooth_conf_t, bluetooth_conf_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/clamav.te serefpolicy-3.6.12/policy/modules/services/clamav.te +--- nsaserefpolicy/policy/modules/services/clamav.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/clamav.te 2009-07-13 11:33:25.000000000 +0200 +@@ -106,6 +106,8 @@ + corenet_tcp_bind_generic_port(clamd_t) + corenet_tcp_connect_generic_port(clamd_t) + ++auth_use_nsswitch(clamd_t) ++ + dev_read_rand(clamd_t) + dev_read_urand(clamd_t) + +@@ -179,6 +181,8 @@ + corenet_tcp_connect_http_port(freshclam_t) + corenet_sendrecv_http_client_packets(freshclam_t) + ++auth_use_nsswitch(freshclam_t) ++ + dev_read_rand(freshclam_t) + dev_read_urand(freshclam_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/consolekit.te serefpolicy-3.6.12/policy/modules/services/consolekit.te --- nsaserefpolicy/policy/modules/services/consolekit.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/consolekit.te 2009-06-25 10:21:01.000000000 +0200 @@ -1961,7 +1988,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cron.if serefpolicy-3.6.12/policy/modules/services/cron.if --- nsaserefpolicy/policy/modules/services/cron.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/cron.if 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/cron.if 2009-07-13 10:01:22.000000000 +0200 @@ -163,27 +163,14 @@ # interface(`cron_unconfined_role',` @@ -1992,6 +2019,15 @@ diff -b -B --ignore-all-space --exclude- optional_policy(` gen_require(` class dbus send_msg; +@@ -282,6 +269,8 @@ + allow $1 crond_t:fd use; + allow $1 crond_t:process sigchld; + ++ dontaudit $1 crond_t:fifo_file rw_fifo_file_perms; ++ + userdom_dontaudit_list_admin_dir($1) + role system_r types $1; + ') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.fc serefpolicy-3.6.12/policy/modules/services/cups.fc --- nsaserefpolicy/policy/modules/services/cups.fc 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/cups.fc 2009-06-25 10:21:01.000000000 +0200 @@ -3178,6 +3214,45 @@ diff -b -B --ignore-all-space --exclude- /usr/sbin/spamd -- gen_context(system_u:object_r:spamd_exec_t,s0) /usr/bin/mimedefang-multiplexor -- gen_context(system_u:object_r:spamd_exec_t,s0) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/spamassassin.te serefpolicy-3.6.12/policy/modules/services/spamassassin.te +--- nsaserefpolicy/policy/modules/services/spamassassin.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/spamassassin.te 2009-07-13 11:32:30.000000000 +0200 +@@ -263,6 +263,7 @@ + corenet_tcp_sendrecv_generic_node(spamc_t) + corenet_tcp_connect_spamd_port(spamc_t) + ++can_exec(spamc_t, spamc_exec_t) + + manage_dirs_pattern(spamc_t, spamc_tmp_t, spamc_tmp_t) + manage_files_pattern(spamc_t, spamc_tmp_t, spamc_tmp_t) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ssh.if serefpolicy-3.6.12/policy/modules/services/ssh.if +--- nsaserefpolicy/policy/modules/services/ssh.if 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/ssh.if 2009-07-13 11:36:29.000000000 +0200 +@@ -685,3 +685,24 @@ + can_exec($1, ssh_agent_exec_t) + ') + ++####################################### ++##

++## Read ssh home directory content ++## ++## ++## ++## Domain allowed access. ++## ++## ++# ++interface(`ssh_read_user_home_files',` ++ gen_require(` ++ type home_ssh_t; ++ ') ++ ++ allow $1 home_ssh_t:dir list_dir_perms; ++ read_files_pattern($1, home_ssh_t, home_ssh_t) ++ read_lnk_files_pattern($1, home_ssh_t, home_ssh_t) ++ userdom_search_user_home_dirs($1) ++') ++ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ssh.te serefpolicy-3.6.12/policy/modules/services/ssh.te --- nsaserefpolicy/policy/modules/services/ssh.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/ssh.te 2009-06-29 22:52:07.000000000 +0200 @@ -3413,7 +3488,7 @@ diff -b -B --ignore-all-space --exclude- -/var/cache/coolkey(/.*)? gen_context(system_u:object_r:auth_cache_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/authlogin.if serefpolicy-3.6.12/policy/modules/system/authlogin.if --- nsaserefpolicy/policy/modules/system/authlogin.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/authlogin.if 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/authlogin.if 2009-07-13 11:37:53.000000000 +0200 @@ -42,8 +42,7 @@ # interface(`auth_login_pgm_domain',` @@ -3445,7 +3520,15 @@ diff -b -B --ignore-all-space --exclude- fprintd_dbus_chat($1) ') -@@ -238,6 +244,96 @@ +@@ -153,6 +159,7 @@ + optional_policy(` + ssh_agent_exec($1) + userdom_read_user_home_content_files($1) ++ ssh_read_user_home_files($1) + ') + + ') +@@ -238,6 +245,96 @@ ######################################## ## @@ -3542,7 +3625,7 @@ diff -b -B --ignore-all-space --exclude- ## Run unix_chkpwd to check a password. ## ## -@@ -726,7 +822,7 @@ +@@ -726,7 +823,7 @@ ######################################## ## @@ -3551,7 +3634,7 @@ diff -b -B --ignore-all-space --exclude- ## ## ## -@@ -1258,6 +1354,25 @@ +@@ -1258,6 +1355,25 @@ ######################################## ## @@ -3577,7 +3660,7 @@ diff -b -B --ignore-all-space --exclude- ## Do not audit attempts to write to ## login records files. ## -@@ -1415,6 +1530,10 @@ +@@ -1415,6 +1531,10 @@ ') optional_policy(` @@ -3588,7 +3671,7 @@ diff -b -B --ignore-all-space --exclude- sssd_stream_connect($1) ') -@@ -1456,99 +1575,3 @@ +@@ -1456,99 +1576,3 @@ typeattribute $1 can_write_shadow_passwords; typeattribute $1 can_relabelto_shadow_passwords; ') @@ -3955,7 +4038,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/libraries.fc serefpolicy-3.6.12/policy/modules/system/libraries.fc --- nsaserefpolicy/policy/modules/system/libraries.fc 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/libraries.fc 2009-07-07 09:20:48.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/libraries.fc 2009-07-15 09:44:42.000000000 +0200 @@ -139,6 +139,7 @@ /usr/lib(64)?/(nvidia/)?libGL(core)?\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/fglrx/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -4026,8 +4109,16 @@ diff -b -B --ignore-all-space --exclude- allow sulogin_t self:capability sys_tty_config; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/sysnetwork.te serefpolicy-3.6.12/policy/modules/system/sysnetwork.te --- nsaserefpolicy/policy/modules/system/sysnetwork.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/sysnetwork.te 2009-06-25 10:21:01.000000000 +0200 -@@ -45,7 +45,7 @@ ++++ serefpolicy-3.6.12/policy/modules/system/sysnetwork.te 2009-07-13 11:39:27.000000000 +0200 +@@ -18,6 +18,7 @@ + type dhcpc_t; + type dhcpc_exec_t; + init_daemon_domain(dhcpc_t,dhcpc_exec_t) ++domain_obj_id_change_exemption(dhcpc_t) + role system_r types dhcpc_t; + + type dhcpc_helper_exec_t; +@@ -45,7 +46,7 @@ # DHCP client local policy # allow dhcpc_t self:capability { dac_override fsetid net_admin net_raw net_bind_service sys_nice sys_resource sys_tty_config }; @@ -4036,6 +4127,14 @@ diff -b -B --ignore-all-space --exclude- # for access("/etc/bashrc", X_OK) on Red Hat dontaudit dhcpc_t self:capability { dac_read_search sys_module }; allow dhcpc_t self:process { setfscreate ptrace signal_perms }; +@@ -125,6 +126,7 @@ + + files_read_etc_files(dhcpc_t) + files_read_etc_runtime_files(dhcpc_t) ++files_read_usr_files(dhcpc_t) + files_search_home(dhcpc_t) + files_search_var_lib(dhcpc_t) + files_dontaudit_search_locks(dhcpc_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.te serefpolicy-3.6.12/policy/modules/system/udev.te --- nsaserefpolicy/policy/modules/system/udev.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/system/udev.te 2009-06-25 10:21:01.000000000 +0200 Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.885 retrieving revision 1.886 diff -u -p -r1.885 -r1.886 --- selinux-policy.spec 8 Jul 2009 19:31:17 -0000 1.885 +++ selinux-policy.spec 15 Jul 2009 09:30:43 -0000 1.886 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 65%{?dist} +Release: 66%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Wed Jul 15 2009 Miroslav Grepl 3.6.12-66 +- Allow dhcpc to read users files + * Wed Jul 8 2009 Miroslav Grepl 3.6.12-65 - Fixes for xguest From ramkrsna at fedoraproject.org Wed Jul 15 09:33:44 2009 From: ramkrsna at fedoraproject.org (Ramakrishna Reddy) Date: Wed, 15 Jul 2009 09:33:44 +0000 (UTC) Subject: rpms/hunspell-kn/F-11 hunspell-kn.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715093344.A89AA11C00DF@cvs1.fedora.phx.redhat.com> Author: ramkrsna Update of /cvs/pkgs/rpms/hunspell-kn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8962 Modified Files: .cvsignore sources Added Files: hunspell-kn.spec Log Message: Initial Release For F-11 --- NEW FILE hunspell-kn.spec --- Name: hunspell-kn Summary: Kannada hunspell dictionaries Version: 1.0.3 Release: 1%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/2628/1/kannada.oxt URL: http://extensions.services.openoffice.org/project/kannada BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: GPLv2+ or LGPLv2+ or MPLv1.1 BuildArch: noarch Requires: hunspell %description Kannada hunspell dictionaries. %prep %setup -q -c -n hunspell-kn %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell cp -p kn_IN.* $RPM_BUILD_ROOT/%{_datadir}/myspell/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README_kn_IN.txt COPYING COPYING.MPL COPYING.GPL COPYING.LGPL %{_datadir}/myspell/* %changelog * Thu Jul 09 2009 Ramakrishna Reddy Yekulla - 1.0.3-1 - initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-kn/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:30:07 -0000 1.1 +++ .cvsignore 15 Jul 2009 09:33:14 -0000 1.2 @@ -0,0 +1 @@ +kannada.oxt Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-kn/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:30:07 -0000 1.1 +++ sources 15 Jul 2009 09:33:14 -0000 1.2 @@ -0,0 +1 @@ +6c9a02867d632dac469d4c9224294f57 kannada.oxt From xhorak at fedoraproject.org Wed Jul 15 09:35:09 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 15 Jul 2009 09:35:09 +0000 (UTC) Subject: rpms/xulrunner/F-11 xulrunner.spec,1.160,1.161 Message-ID: <20090715093509.78F2A11C00DF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9312 Modified Files: xulrunner.spec Log Message: Fixed multilib issues Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-11/xulrunner.spec,v retrieving revision 1.160 retrieving revision 1.161 diff -u -p -r1.160 -r1.161 --- xulrunner.spec 13 Jul 2009 08:55:39 -0000 1.160 +++ xulrunner.spec 15 Jul 2009 09:34:39 -0000 1.161 @@ -12,7 +12,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner Version: 1.9.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -277,6 +277,10 @@ pushd $RPM_BUILD_ROOT/%{_includedir}/${I install_file "jsautocfg" popd +pushd $RPM_BUILD_ROOT/%{_includedir}/${INTERNAL_APP_SDK_NAME}/js +install_file "jsconfig" +popd + %{__install} -p -c -m 755 dist/bin/xpcshell \ dist/bin/xpidl \ dist/bin/xpt_dump \ @@ -448,6 +452,9 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Jul 14 2009 Jan Horak - 1.9.1-4 +- Fixed multilib issues + * Tue Jul 7 2009 Jan Horak - 1.9.1-3 - Fixed wrong version of Firefox when loading 'about:' as location From mbooth at fedoraproject.org Wed Jul 15 09:35:47 2009 From: mbooth at fedoraproject.org (mbooth) Date: Wed, 15 Jul 2009 09:35:47 +0000 (UTC) Subject: rpms/lpg/F-11 lpg-bootstrap-target.patch, NONE, 1.1 lpg-build.xml, NONE, 1.1 lpg-manifest.mf, NONE, 1.1 lpg-osgi-jar.patch, NONE, 1.1 lpg.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715093547.8D8B411C00DF@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/lpg/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9538 Modified Files: .cvsignore sources Added Files: lpg-bootstrap-target.patch lpg-build.xml lpg-manifest.mf lpg-osgi-jar.patch lpg.spec Log Message: Initial commit of LPG package. lpg-bootstrap-target.patch: --- NEW FILE lpg-bootstrap-target.patch --- --- lpg-generator-cpp/src/Makefile 2009-04-27 23:58:38.000000000 +0100 +++ lpg-generator-cpp/src/Makefile 2009-04-27 23:59:28.000000000 +0100 @@ -26,7 +26,7 @@ GEN_FILES=jikespg_sym.h jikespg_def.h jikespg_prs.h jikespg_prs.cpp jikespg_act.h jikespg_act.cpp jikespg_init.cpp bootstrap: jikespg.g - ../bin/lpg jikespg.g + ../bin/$(TARGET) jikespg.g $(RM) jikespg.l # DO NOT DELETE THIS LINE -- make depend depends on it. --- NEW FILE lpg-build.xml --- --- NEW FILE lpg-manifest.mf --- Manifest-Version: 1.0 Bundle-ClassPath: . Bundle-Vendor: Eclipse.org Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3 Bundle-Name: SourceForge LPG Bundle-SymbolicName: net.sourceforge.lpg.lpgjavaruntime Export-Package: lpg.lpgjavaruntime; version="1.1" Bundle-Version: 1.1.0.v200803061910 Bundle-ManifestVersion: 2 lpg-osgi-jar.patch: --- NEW FILE lpg-osgi-jar.patch --- --- lpg-java-runtime/META-INF/MANIFEST.MF 2009-05-18 23:09:59.000000000 +0100 +++ lpg-java-runtime/META-INF/MANIFEST.MF 2009-07-04 16:26:41.204699558 +0100 @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: LPG Java Runtime Bundle-SymbolicName: lpg.runtime -Bundle-ClassPath: lpgruntime.jar +Bundle-ClassPath: . Bundle-Version: 2.0.17 Bundle-Vendor: pcharles at us.ibm.com Bundle-Localization: plugin --- lpg-java-runtime/exportPlugin.xml 2009-02-18 23:14:10.000000000 +0000 +++ lpg-java-runtime/exportPlugin.xml 2009-07-04 16:41:44.509545672 +0100 @@ -70,9 +70,6 @@ - + includes="**/*.class,**/*.properties" manifest="${basedir}/META-INF/MANIFEST.MF"/> --- NEW FILE lpg.spec --- %global _version 2.0.17 %global _compat_version 1.1.0 Name: lpg Version: %{_version} Release: 2%{?dist} Summary: LALR Parser Generator Group: Development/Libraries # although the text of the licence isn't distributed with some of the source, # the author has exlicitly stated that everything is covered under the EPL # see: http://sourceforge.net/forum/forum.php?thread_id=3277926&forum_id=523519 License: EPL URL: http://lpg.sourceforge.net/ Source0: http://downloads.sourceforge.net/lpg/lpg-java-runtime-src-%{version}.zip Source1: http://downloads.sourceforge.net/lpg/lpg-generator-cpp-src-%{version}.zip Source2: http://downloads.sourceforge.net/lpg/lpg-generator-templates-%{version}.zip # source archive for the java compat lib Source3: http://downloads.sourceforge.net/lpg/lpgdistribution-05-16-06.zip # upstream does not provide a build script or manifest file for the java # compat lib Source4: %{name}-build.xml Source5: %{name}-manifest.mf # TODO: drop Source3, 4, 5 and obsolete the java-compat package when dependent # projects are ported to LPG 2.x.x # executable name in the bootstrap make target is wrong; sent upstream, see: # https://sourceforge.net/tracker/?func=detail&aid=2794057&group_id=155963&atid=797881 Patch0: %{name}-bootstrap-target.patch # change build script to build the base jar with osgi bundle info Patch1: %{name}-osgi-jar.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description The LALR Parser Generator (LPG) is a tool for developing scanners and parsers written in Java, C++ or C. Input is specified by BNF rules. LPG supports backtracking (to resolve ambiguity), automatic AST generation and grammar inheritance. %package java Summary: Java runtime library for LPG Group: Development/Libraries BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils BuildRequires: ant Requires: java Requires: jpackage-utils %description java Java runtime library for parsers generated with the LALR Parser Generator (LPG). %package java-compat Version: %{_compat_version} Summary: Compatibility Java runtime library for LPG 1.x Group: Development/Libraries BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils BuildRequires: ant Requires: java Requires: jpackage-utils %description java-compat Compatibility Java runtime library for parsers generated with the LALR Parser Generator (LPG) 1.x. %package manual Summary: Manual for LPG Group: Development/Libraries BuildArch: noarch %description manual Programmer's manual for the LALR Parser Generator (LPG). %prep %setup -q -T -c -n %{name}-%{version} # because you can't use setup to unzip to subdirectories when your source # archives do not create top level directories unzip -qq %{SOURCE0} -d lpg-java-runtime unzip -qq %{SOURCE1} -d lpg-generator-cpp unzip -qq %{SOURCE2} -d lpg-generator-templates chmod -Rf a+rX,u+w,g-w,o-w . # setup java compat stuff %setup -q -D -T -a 3 -n %{name}-%{version} cp -p %{SOURCE4} lpgdistribution/build.xml cp -p %{SOURCE5} lpgdistribution/MANIFEST.MF # apply patches %patch0 -p0 %patch1 -p0 %build # build java stuff (cd lpg-java-runtime && ant -f exportPlugin.xml) # build java compat stuff (cd lpgdistribution && ant) # build native stuff pushd lpg-generator-cpp/src # ARCH just tells us what tools to use, so this can be the same on all arches # we build twice in order to bootstrap the grammar parser make clean install ARCH=linux_x86 \ LOCAL_CFLAGS="%{optflags}" LOCAL_CXXFLAGS="%{optflags}" make bootstrap ARCH=linux_x86 make clean install ARCH=linux_x86 \ LOCAL_CFLAGS="%{optflags}" LOCAL_CXXFLAGS="%{optflags}" popd %install rm -rf %{buildroot} install -pD -T lpg-java-runtime/%{name}runtime.jar \ %{buildroot}%{_javadir}/%{name}runtime-%{_version}.jar install -pD -T lpgdistribution/%{name}javaruntime.jar \ %{buildroot}%{_javadir}/%{name}javaruntime-%{_compat_version}.jar install -pD -T lpg-generator-cpp/bin/%{name}-linux_x86 \ %{buildroot}%{_bindir}/%{name} # create unversioned symlinks to jars (cd %{buildroot}%{_javadir} && for jar in *-%{_version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{_version}||g"`; done) (cd %{buildroot}%{_javadir} && for jar in *-%{_compat_version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{_compat_version}||g"`; done) %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc lpg-generator-templates/docs/* %{_bindir}/%{name} %files java %defattr(-,root,root,-) %doc lpg-java-runtime/Eclipse\ Public\ License\ -\ Version\ 1_0.htm %{_javadir}/%{name}runtime* %files java-compat %defattr(-,root,root,-) %doc lpg-java-runtime/Eclipse\ Public\ License\ -\ Version\ 1_0.htm %{_javadir}/%{name}javaruntime* %changelog * Sun Jul 05 2009 Mat Booth 2.0.17-2 - Add version constants so we get the correct version numbers on the java libraries. * Sat Jul 04 2009 Mat Booth 2.0.17-1 - Update to 2.0.17. - Add OSGI manifest info to the runtime jar. - Bundle generator docs with the generator in the main package. * Tue May 19 2009 Mat Booth 2.0.16-2 - Better document source files/patches. * Tue Apr 28 2009 Mat Booth 2.0.16-1 - Initial release of version 2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lpg/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:30:52 -0000 1.1 +++ .cvsignore 15 Jul 2009 09:35:47 -0000 1.2 @@ -0,0 +1,4 @@ +lpgdistribution-05-16-06.zip +lpg-generator-cpp-src-2.0.17.zip +lpg-generator-templates-2.0.17.zip +lpg-java-runtime-src-2.0.17.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lpg/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:30:52 -0000 1.1 +++ sources 15 Jul 2009 09:35:47 -0000 1.2 @@ -0,0 +1,4 @@ +9aa10697f2124224e771f74231a47dcb lpgdistribution-05-16-06.zip +c1d8b5c1cbf0f18d3e6fe98361808db1 lpg-generator-cpp-src-2.0.17.zip +2b7d752473adb2380b2441dfb3ebc89f lpg-generator-templates-2.0.17.zip +ab8266357cc499ed84f83853e4d73a51 lpg-java-runtime-src-2.0.17.zip From berrange at fedoraproject.org Wed Jul 15 09:36:40 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 15 Jul 2009 09:36:40 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML/F-11 perl-TAP-Formatter-HTML.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715093640.7D5A211C00DF@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-TAP-Formatter-HTML/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9805 Modified Files: .cvsignore sources Added Files: perl-TAP-Formatter-HTML.spec Log Message: Initial import of package after review (rhbz #511094) --- NEW FILE perl-TAP-Formatter-HTML.spec --- Name: perl-TAP-Formatter-HTML Version: 0.07 Release: 1%{?dist} Summary: TAP Test Harness output delegate for html output License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/TAP-Formatter-HTML/ Source0: http://www.cpan.org/authors/id/S/SP/SPURKIS/TAP-Formatter-HTML-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.6.0 BuildRequires: perl(accessors) >= 0.02 BuildRequires: perl(Module::Build) BuildRequires: perl(TAP::Parser) >= 3.10 BuildRequires: perl(Template) >= 2.14 BuildRequires: perl(Test::More) >= 0.01 BuildRequires: perl(URI) >= 1.35 Requires: perl(accessors) >= 0.02 Requires: perl(TAP::Parser) >= 3.10 Requires: perl(Template) >= 2.14 Requires: perl(URI) >= 1.35 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides HTML output formatting for TAP::Harness (a replacement for Test::Harness. It is largely based on ideas from TAP::Test::HTMLMatrix (which was built on Test::Harness and thus had a few limitations - hence this module). For sample output, see: %prep %setup -q -n TAP-Formatter-HTML-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README Todo %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jul 06 2009 Daniel P. Berrange 0.07-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-TAP-Formatter-HTML/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:31:27 -0000 1.1 +++ .cvsignore 15 Jul 2009 09:36:10 -0000 1.2 @@ -0,0 +1,4 @@ +.build*log +*.rpm +noarch +TAP-Formatter-HTML-0.07.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-TAP-Formatter-HTML/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:31:27 -0000 1.1 +++ sources 15 Jul 2009 09:36:10 -0000 1.2 @@ -0,0 +1 @@ +ba7a2ea4fbbc47a2f3e10a66517c927f TAP-Formatter-HTML-0.07.tar.gz From mbooth at fedoraproject.org Wed Jul 15 09:38:37 2009 From: mbooth at fedoraproject.org (mbooth) Date: Wed, 15 Jul 2009 09:38:37 +0000 (UTC) Subject: rpms/lpg/devel lpg-bootstrap-target.patch, NONE, 1.1 lpg-build.xml, NONE, 1.1 lpg-manifest.mf, NONE, 1.1 lpg-osgi-jar.patch, NONE, 1.1 lpg.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715093837.D3F8D11C00DF@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/lpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10323 Modified Files: .cvsignore sources Added Files: lpg-bootstrap-target.patch lpg-build.xml lpg-manifest.mf lpg-osgi-jar.patch lpg.spec Log Message: Initial commit of LPG package. lpg-bootstrap-target.patch: --- NEW FILE lpg-bootstrap-target.patch --- --- lpg-generator-cpp/src/Makefile 2009-04-27 23:58:38.000000000 +0100 +++ lpg-generator-cpp/src/Makefile 2009-04-27 23:59:28.000000000 +0100 @@ -26,7 +26,7 @@ GEN_FILES=jikespg_sym.h jikespg_def.h jikespg_prs.h jikespg_prs.cpp jikespg_act.h jikespg_act.cpp jikespg_init.cpp bootstrap: jikespg.g - ../bin/lpg jikespg.g + ../bin/$(TARGET) jikespg.g $(RM) jikespg.l # DO NOT DELETE THIS LINE -- make depend depends on it. --- NEW FILE lpg-build.xml --- --- NEW FILE lpg-manifest.mf --- Manifest-Version: 1.0 Bundle-ClassPath: . Bundle-Vendor: Eclipse.org Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3 Bundle-Name: SourceForge LPG Bundle-SymbolicName: net.sourceforge.lpg.lpgjavaruntime Export-Package: lpg.lpgjavaruntime; version="1.1" Bundle-Version: 1.1.0.v200803061910 Bundle-ManifestVersion: 2 lpg-osgi-jar.patch: --- NEW FILE lpg-osgi-jar.patch --- --- lpg-java-runtime/META-INF/MANIFEST.MF 2009-05-18 23:09:59.000000000 +0100 +++ lpg-java-runtime/META-INF/MANIFEST.MF 2009-07-04 16:26:41.204699558 +0100 @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: LPG Java Runtime Bundle-SymbolicName: lpg.runtime -Bundle-ClassPath: lpgruntime.jar +Bundle-ClassPath: . Bundle-Version: 2.0.17 Bundle-Vendor: pcharles at us.ibm.com Bundle-Localization: plugin --- lpg-java-runtime/exportPlugin.xml 2009-02-18 23:14:10.000000000 +0000 +++ lpg-java-runtime/exportPlugin.xml 2009-07-04 16:41:44.509545672 +0100 @@ -70,9 +70,6 @@ - + includes="**/*.class,**/*.properties" manifest="${basedir}/META-INF/MANIFEST.MF"/> --- NEW FILE lpg.spec --- %global _version 2.0.17 %global _compat_version 1.1.0 Name: lpg Version: %{_version} Release: 2%{?dist} Summary: LALR Parser Generator Group: Development/Libraries # although the text of the licence isn't distributed with some of the source, # the author has exlicitly stated that everything is covered under the EPL # see: http://sourceforge.net/forum/forum.php?thread_id=3277926&forum_id=523519 License: EPL URL: http://lpg.sourceforge.net/ Source0: http://downloads.sourceforge.net/lpg/lpg-java-runtime-src-%{version}.zip Source1: http://downloads.sourceforge.net/lpg/lpg-generator-cpp-src-%{version}.zip Source2: http://downloads.sourceforge.net/lpg/lpg-generator-templates-%{version}.zip # source archive for the java compat lib Source3: http://downloads.sourceforge.net/lpg/lpgdistribution-05-16-06.zip # upstream does not provide a build script or manifest file for the java # compat lib Source4: %{name}-build.xml Source5: %{name}-manifest.mf # TODO: drop Source3, 4, 5 and obsolete the java-compat package when dependent # projects are ported to LPG 2.x.x # executable name in the bootstrap make target is wrong; sent upstream, see: # https://sourceforge.net/tracker/?func=detail&aid=2794057&group_id=155963&atid=797881 Patch0: %{name}-bootstrap-target.patch # change build script to build the base jar with osgi bundle info Patch1: %{name}-osgi-jar.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description The LALR Parser Generator (LPG) is a tool for developing scanners and parsers written in Java, C++ or C. Input is specified by BNF rules. LPG supports backtracking (to resolve ambiguity), automatic AST generation and grammar inheritance. %package java Summary: Java runtime library for LPG Group: Development/Libraries BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils BuildRequires: ant Requires: java Requires: jpackage-utils %description java Java runtime library for parsers generated with the LALR Parser Generator (LPG). %package java-compat Version: %{_compat_version} Summary: Compatibility Java runtime library for LPG 1.x Group: Development/Libraries BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils BuildRequires: ant Requires: java Requires: jpackage-utils %description java-compat Compatibility Java runtime library for parsers generated with the LALR Parser Generator (LPG) 1.x. %package manual Summary: Manual for LPG Group: Development/Libraries BuildArch: noarch %description manual Programmer's manual for the LALR Parser Generator (LPG). %prep %setup -q -T -c -n %{name}-%{version} # because you can't use setup to unzip to subdirectories when your source # archives do not create top level directories unzip -qq %{SOURCE0} -d lpg-java-runtime unzip -qq %{SOURCE1} -d lpg-generator-cpp unzip -qq %{SOURCE2} -d lpg-generator-templates chmod -Rf a+rX,u+w,g-w,o-w . # setup java compat stuff %setup -q -D -T -a 3 -n %{name}-%{version} cp -p %{SOURCE4} lpgdistribution/build.xml cp -p %{SOURCE5} lpgdistribution/MANIFEST.MF # apply patches %patch0 -p0 %patch1 -p0 %build # build java stuff (cd lpg-java-runtime && ant -f exportPlugin.xml) # build java compat stuff (cd lpgdistribution && ant) # build native stuff pushd lpg-generator-cpp/src # ARCH just tells us what tools to use, so this can be the same on all arches # we build twice in order to bootstrap the grammar parser make clean install ARCH=linux_x86 \ LOCAL_CFLAGS="%{optflags}" LOCAL_CXXFLAGS="%{optflags}" make bootstrap ARCH=linux_x86 make clean install ARCH=linux_x86 \ LOCAL_CFLAGS="%{optflags}" LOCAL_CXXFLAGS="%{optflags}" popd %install rm -rf %{buildroot} install -pD -T lpg-java-runtime/%{name}runtime.jar \ %{buildroot}%{_javadir}/%{name}runtime-%{_version}.jar install -pD -T lpgdistribution/%{name}javaruntime.jar \ %{buildroot}%{_javadir}/%{name}javaruntime-%{_compat_version}.jar install -pD -T lpg-generator-cpp/bin/%{name}-linux_x86 \ %{buildroot}%{_bindir}/%{name} # create unversioned symlinks to jars (cd %{buildroot}%{_javadir} && for jar in *-%{_version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{_version}||g"`; done) (cd %{buildroot}%{_javadir} && for jar in *-%{_compat_version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{_compat_version}||g"`; done) %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc lpg-generator-templates/docs/* %{_bindir}/%{name} %files java %defattr(-,root,root,-) %doc lpg-java-runtime/Eclipse\ Public\ License\ -\ Version\ 1_0.htm %{_javadir}/%{name}runtime* %files java-compat %defattr(-,root,root,-) %doc lpg-java-runtime/Eclipse\ Public\ License\ -\ Version\ 1_0.htm %{_javadir}/%{name}javaruntime* %changelog * Sun Jul 05 2009 Mat Booth 2.0.17-2 - Add version constants so we get the correct version numbers on the java libraries. * Sat Jul 04 2009 Mat Booth 2.0.17-1 - Update to 2.0.17. - Add OSGI manifest info to the runtime jar. - Bundle generator docs with the generator in the main package. * Tue May 19 2009 Mat Booth 2.0.16-2 - Better document source files/patches. * Tue Apr 28 2009 Mat Booth 2.0.16-1 - Initial release of version 2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lpg/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:30:52 -0000 1.1 +++ .cvsignore 15 Jul 2009 09:38:37 -0000 1.2 @@ -0,0 +1,4 @@ +lpgdistribution-05-16-06.zip +lpg-generator-cpp-src-2.0.17.zip +lpg-generator-templates-2.0.17.zip +lpg-java-runtime-src-2.0.17.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lpg/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:30:52 -0000 1.1 +++ sources 15 Jul 2009 09:38:37 -0000 1.2 @@ -0,0 +1,4 @@ +9aa10697f2124224e771f74231a47dcb lpgdistribution-05-16-06.zip +c1d8b5c1cbf0f18d3e6fe98361808db1 lpg-generator-cpp-src-2.0.17.zip +2b7d752473adb2380b2441dfb3ebc89f lpg-generator-templates-2.0.17.zip +ab8266357cc499ed84f83853e4d73a51 lpg-java-runtime-src-2.0.17.zip From topdog at fedoraproject.org Wed Jul 15 09:45:46 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 15 Jul 2009 09:45:46 +0000 (UTC) Subject: rpms/php-pecl-geoip/devel import.log, 1.1, 1.2 php-pecl-geoip.spec, 1.2, 1.3 Message-ID: <20090715094546.CFD0211C00DF@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pecl-geoip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11647/devel Modified Files: import.log php-pecl-geoip.spec Log Message: * Wed Jul 15 2009 Andrew Colin Kissa - 1.5.2-3 - Initialize EL-5 Branch Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-geoip/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 23 Jun 2009 18:06:10 -0000 1.1 +++ import.log 15 Jul 2009 09:45:46 -0000 1.2 @@ -1 +1,2 @@ php-pecl-geoip-1_0_7-2_fc11:HEAD:php-pecl-geoip-1.0.7-2.fc11.src.rpm:1245780244 +php-pecl-geoip-1_0_7-2_fc11:HEAD:php-pecl-geoip-1.0.7-2.fc11.src.rpm:1247650931 Index: php-pecl-geoip.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-geoip/devel/php-pecl-geoip.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-geoip.spec 12 Jul 2009 19:22:02 -0000 1.2 +++ php-pecl-geoip.spec 15 Jul 2009 09:45:46 -0000 1.3 @@ -6,7 +6,7 @@ Name: php-pecl-geoip Version: 1.0.7 -Release: 3%{?dist} +Release: 2%{?dist} Summary: Extension to map IP addresses to geographic places Group: Development/Languages License: PHP @@ -83,9 +83,6 @@ fi %{pecl_xmldir}/%{name}.xml %changelog -* Sun Jul 12 2009 Remi Collet 1.0.7-3 -- rebuild for new PHP 5.3.0 ABI (20090626) - * Mon Jun 22 2009 Andrew Colin Kissa - 1.0.7-2 - Fix timestamps on installed files From berrange at fedoraproject.org Wed Jul 15 09:28:39 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 15 Jul 2009 09:28:39 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML/devel perl-TAP-Formatter-HTML.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715092839.D784F11C00DF@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-TAP-Formatter-HTML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7198 Modified Files: .cvsignore sources Added Files: perl-TAP-Formatter-HTML.spec Log Message: Initial import of package after review (rhbz #511094) --- NEW FILE perl-TAP-Formatter-HTML.spec --- Name: perl-TAP-Formatter-HTML Version: 0.07 Release: 1%{?dist} Summary: TAP Test Harness output delegate for html output License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/TAP-Formatter-HTML/ Source0: http://www.cpan.org/authors/id/S/SP/SPURKIS/TAP-Formatter-HTML-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.6.0 BuildRequires: perl(accessors) >= 0.02 BuildRequires: perl(Module::Build) BuildRequires: perl(TAP::Parser) >= 3.10 BuildRequires: perl(Template) >= 2.14 BuildRequires: perl(Test::More) >= 0.01 BuildRequires: perl(URI) >= 1.35 Requires: perl(accessors) >= 0.02 Requires: perl(TAP::Parser) >= 3.10 Requires: perl(Template) >= 2.14 Requires: perl(URI) >= 1.35 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This module provides HTML output formatting for TAP::Harness (a replacement for Test::Harness. It is largely based on ideas from TAP::Test::HTMLMatrix (which was built on Test::Harness and thus had a few limitations - hence this module). For sample output, see: %prep %setup -q -n TAP-Formatter-HTML-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README Todo %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Jul 06 2009 Daniel P. Berrange 0.07-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-TAP-Formatter-HTML/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:31:27 -0000 1.1 +++ .cvsignore 15 Jul 2009 09:28:39 -0000 1.2 @@ -0,0 +1,4 @@ +.build*log +*.rpm +noarch +TAP-Formatter-HTML-0.07.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-TAP-Formatter-HTML/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:31:27 -0000 1.1 +++ sources 15 Jul 2009 09:28:39 -0000 1.2 @@ -0,0 +1 @@ +ba7a2ea4fbbc47a2f3e10a66517c927f TAP-Formatter-HTML-0.07.tar.gz From kwizart at fedoraproject.org Wed Jul 15 10:03:44 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 15 Jul 2009 10:03:44 +0000 (UTC) Subject: rpms/perl-AnyEvent/devel .cvsignore, 1.11, 1.12 sources, 1.11, 1.12 perl-AnyEvent.spec, 1.14, 1.15 Message-ID: <20090715100344.7E8B511C00DF@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-AnyEvent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16476 Modified Files: .cvsignore sources perl-AnyEvent.spec Log Message: Update to 4.82 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 29 May 2009 08:35:10 -0000 1.11 +++ .cvsignore 15 Jul 2009 10:03:44 -0000 1.12 @@ -1 +1 @@ -AnyEvent-4.41.tar.gz +AnyEvent-4.82.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 29 May 2009 08:35:10 -0000 1.11 +++ sources 15 Jul 2009 10:03:44 -0000 1.12 @@ -1 +1 @@ -56d1083f035d6f8251bbdbcb9ee7668c AnyEvent-4.41.tar.gz +c3b5752fcb356c267f8a3e20fa9d5483 AnyEvent-4.82.tar.gz Index: perl-AnyEvent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/perl-AnyEvent.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-AnyEvent.spec 29 May 2009 08:35:10 -0000 1.14 +++ perl-AnyEvent.spec 15 Jul 2009 10:03:44 -0000 1.15 @@ -1,7 +1,7 @@ -%define version_anyevent 4.41 +%define version_anyevent 4.82 Name: perl-AnyEvent -Version: 4.410 +Version: 4.820 Release: 1%{?dist} Summary: Framework for multiple event loops @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 15 2009 kwizart < kwizart at gmail.com > - 4.820-1 +- Update to 4.82 (rpm version : 4.820 + * Fri May 29 2009 kwizart < kwizart at gmail.com > - 4.410-1 - Update to 4.41 (rpm version : 4.41 ) From kwizart at fedoraproject.org Wed Jul 15 10:07:49 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 15 Jul 2009 10:07:49 +0000 (UTC) Subject: rpms/python-kaa-display/devel import.log, NONE, 1.1 kaa-display-0.1.0-backport.patch, NONE, 1.1 kaa-display-0.1.0-hack_imlib2_x11_support.patch, NONE, 1.1 python-kaa-display.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715100749.2946811C00DF@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-display/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17291/devel Modified Files: .cvsignore sources Added Files: import.log kaa-display-0.1.0-backport.patch kaa-display-0.1.0-hack_imlib2_x11_support.patch python-kaa-display.spec Log Message: Intial import for rawhide --- NEW FILE import.log --- python-kaa-display-0_1_0-1_fc11:HEAD:python-kaa-display-0.1.0-1.fc11.src.rpm:1247652403 kaa-display-0.1.0-backport.patch: --- NEW FILE kaa-display-0.1.0-backport.patch --- diff -ur kaa-display-0.1.0/setup.py kaa/kaa/display/setup.py --- kaa-display-0.1.0/setup.py 2008-11-30 20:36:46.000000000 +0100 +++ kaa/kaa/display/setup.py 2009-07-01 13:00:43.214311858 +0200 @@ -33,7 +33,6 @@ import re import os import sys -import popen2 try: # kaa base imports diff -ur kaa-display-0.1.0/src/x11.c kaa/kaa/display/src/x11.c --- kaa-display-0.1.0/src/x11.c 2008-11-30 20:36:46.000000000 +0100 +++ kaa/kaa/display/src/x11.c 2009-07-01 13:00:43.186561109 +0200 @@ -144,11 +144,13 @@ { NULL } }; -void init_X11(void) +DL_EXPORT (void) +init_X11(void) { PyObject *m, *display_c_api; static void *display_api_ptrs[3]; + PyEval_InitThreads(); m = Py_InitModule("_X11", display_methods); if (PyType_Ready(&X11Display_PyObject_Type) < 0) kaa-display-0.1.0-hack_imlib2_x11_support.patch: --- NEW FILE kaa-display-0.1.0-hack_imlib2_x11_support.patch --- diff -up kaa-display-0.1.0/setup.py~ kaa-display-0.1.0/setup.py --- kaa-display-0.1.0/setup.py~ 2009-07-01 14:38:24.484559168 +0200 +++ kaa-display-0.1.0/setup.py 2009-07-01 15:09:16.804562162 +0200 @@ -95,7 +95,7 @@ if get_library('X11'): imlib2 = get_library('imlib2') if 'imlib2-x11' in disable or 'imlib2' in disable: print '+ X11 (no imlib2)' - elif imlib2 and imlib2.compile([''], 'imlib_context_set_display(NULL);'): + elif imlib2 or 1: config.define('USE_IMLIB2_X11') x11.add_library('imlib2') print '+ X11 (imlib2)' --- NEW FILE python-kaa-display.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-display Version: 0.1.0 Release: 1%{?dist} Summary: Python API providing Low level support for various displays Group: Development/Languages License: LGPLv2+ URL: http://www.freevo.org/kaa Source0: http://downloads.sourceforge.net/freevo/kaa-display-%{version}.tar.gz Patch0: kaa-display-0.1.0-backport.patch Patch1: kaa-display-0.1.0-hack_imlib2_x11_support.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: python-kaa-base >= 0.1.2 BuildRequires: python-kaa-imlib2 >= 0.2.0 BuildRequires: pygame-devel >= 1.6.0 BuildRequires: imlib2-devel >= 1.2.1 BuildRequires: SDL-devel >= 1.2.5 BuildRequires: libXcomposite-devel %description Low level support for various displays, such as X11 or framebuffer. Provides X11Display and X11Window classes for managing X11 windows, with optional support for Imlib2 (render Imlib2 images to X11 windows), and pygame (render Imlib2 images to pygame surfaces). %prep %setup -q -n kaa-display-%{version} %patch0 -p1 -b .backport %patch1 -p1 -b .hack #Fix encoding cp -pr AUTHORS AUTHORS.not-utf8 iconv -f ISO_8859-1 -t UTF8 AUTHORS.not-utf8 > AUTHORS touch -r AUTHORS.not-utf8 AUTHORS rm AUTHORS.not-utf8 %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO %{python_sitearch}/* %changelog * Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.1.0-1 - Initial spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-display/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 07:49:03 -0000 1.1 +++ .cvsignore 15 Jul 2009 10:07:18 -0000 1.2 @@ -0,0 +1 @@ +kaa-display-0.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-display/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 07:49:04 -0000 1.1 +++ sources 15 Jul 2009 10:07:18 -0000 1.2 @@ -0,0 +1 @@ +3a45f583b9b885aab8671b63b0f757cf kaa-display-0.1.0.tar.gz From twaugh at fedoraproject.org Wed Jul 15 10:10:58 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 10:10:58 +0000 (UTC) Subject: rpms/cups/F-11 cups-uri-compat.patch, NONE, 1.1 cups.spec, 1.485, 1.486 Message-ID: <20090715101058.10FCD11C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18545 Modified Files: cups.spec Added Files: cups-uri-compat.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Accept incorrect device URIs in the (non-libusb) usb backend for compatibility with Fedora 11 before bug #507244 was fixed. cups-uri-compat.patch: --- NEW FILE cups-uri-compat.patch --- diff -up cups-1.4rc1/backend/usb-unix.c.uri-compat cups-1.4rc1/backend/usb-unix.c --- cups-1.4rc1/backend/usb-unix.c.uri-compat 2009-07-15 10:48:46.992133677 +0100 +++ cups-1.4rc1/backend/usb-unix.c 2009-07-15 10:49:05.305008114 +0100 @@ -63,11 +63,34 @@ print_device(const char *uri, /* I - De int device_fd; /* USB device */ size_t tbytes; /* Total number of bytes written */ struct termios opts; /* Parallel port options */ + char *fixed_uri = strdup (uri); + char *p; (void)argc; (void)argv; + p = strchr (fixed_uri, ':'); + if (p++ != NULL) + { + char *e; + p += strspn (p, "/"); + e = strchr (p, '/'); + if (e > p) + { + size_t mfrlen = e - p; + e++; + if (!strncasecmp (e, p, mfrlen)) + { + char *x = e + mfrlen; + if (!strncmp (x, "%20", 3)) + /* Take mfr name out of mdl name for compatibility with + * Fedora 11 before bug #507244 was fixed. */ + strcpy (e, x + 3); puts(fixed_uri); + } + } + } + /* * Open the USB port device... */ @@ -107,10 +130,10 @@ print_device(const char *uri, /* I - De strncasecmp(hostname, "Minolta", 7); #endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ || __DragonFly__ */ - if (use_bc && !strncmp(uri, "usb:/dev/", 9)) + if (use_bc && !strncmp(fixed_uri, "usb:/dev/", 9)) use_bc = 0; - if ((device_fd = open_device(uri, &use_bc)) == -1) + if ((device_fd = open_device(fixed_uri, &use_bc)) == -1) { if (getenv("CLASS") != NULL) { Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.485 retrieving revision 1.486 diff -u -p -r1.485 -r1.486 --- cups.spec 15 Jul 2009 09:12:13 -0000 1.485 +++ cups.spec 15 Jul 2009 10:10:57 -0000 1.486 @@ -53,7 +53,8 @@ Patch26: cups-str3231.patch Patch27: cups-str3244.patch Patch28: cups-str3258.patch Patch29: cups-str3259.patch -Patch30: cups-avahi.patch +Patch30: cups-uri-compat.patch +Patch31: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -204,7 +205,8 @@ module. %patch27 -p1 -b .str3244 %patch28 -p1 -b .str3258 %patch29 -p1 -b .str3259 -#%patch30 -p1 -b .avahi +%patch30 -p1 -b .uri-compat +#%patch31 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -498,6 +500,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Accept incorrect device URIs in the (non-libusb) usb backend for + compatibility with Fedora 11 before bug #507244 was fixed. - Applied patch to fix incorrect device URIs (STR #3259, bug #507244). - Applied patch to fix job-hold-until for remote queues (STR #3258, bug #497376). From heffer at fedoraproject.org Wed Jul 15 10:10:59 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Wed, 15 Jul 2009 10:10:59 +0000 (UTC) Subject: rpms/dansguardian/devel dansguardian-clamav095.patch, NONE, 1.1 dansguardian-copyright-notice.patch, NONE, 1.1 dansguardian-gcc44.patch, NONE, 1.1 dansguardian.httpd, NONE, 1.1 dansguardian.init, NONE, 1.1 dansguardian.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715101059.286BC11C00DF@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/dansguardian/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18513/devel Modified Files: .cvsignore sources Added Files: dansguardian-clamav095.patch dansguardian-copyright-notice.patch dansguardian-gcc44.patch dansguardian.httpd dansguardian.init dansguardian.spec import.log Log Message: initial import dansguardian-clamav095.patch: --- NEW FILE dansguardian-clamav095.patch --- # patch by Imre Gergely diff -ruN dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp dansguardian-2.10.0.3/src/contentscanners/clamav.cpp --- dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp 2009-05-09 22:25:45.552238568 +0200 +++ dansguardian-2.10.0.3/src/contentscanners/clamav.cpp 2009-05-09 22:44:06.398108444 +0200 @@ -69,9 +69,11 @@ // virus database root node // Update to support ClamAV 0.90 // Based on patch supplied by Aecio F. Neto - struct cl_engine *root; + struct cl_engine *engine; +#ifndef CL_INIT_DEFAULT // archive limit options struct cl_limits limits; +#endif #ifdef HAVE_CLAMAV_SHM // use POSIX shared memory @@ -100,7 +102,11 @@ // destroy plugin int clamavinstance::quit() { - cl_free(root); +#ifdef CL_INIT_DEFAULT + cl_engine_free(engine); +#else + cl_free(engine); +#endif return DGCS_OK; } @@ -164,7 +170,11 @@ return DGCS_SCANERROR; } - rc = cl_scandesc(fd, &vn, NULL, root, &limits, CL_SCAN_STDOPT); +#ifdef CL_INIT_DEFAULT + rc = cl_scandesc(fd, &vn, NULL, engine, CL_SCAN_STDOPT); +#else + rc = cl_scandesc(fd, &vn, NULL, engine, &limits, CL_SCAN_STDOPT); +#endif close(fd); #ifdef HAVE_CLAMAV_SHM @@ -189,7 +199,11 @@ { lastmessage = lastvirusname = ""; const char *vn = NULL; - int rc = cl_scanfile(filename, &vn, NULL, root, &limits, CL_SCAN_STDOPT ); +#ifdef CL_INIT_DEFAULT + int rc = cl_scanfile(filename, &vn, NULL, engine, CL_SCAN_STDOPT ); +#else + int rc = cl_scanfile(filename, &vn, NULL, engine, &limits, CL_SCAN_STDOPT ); +#endif return doRC(rc, vn); } @@ -220,6 +234,7 @@ // initialise libclamav int clamavinstance::init(void* args) { + int rc; // always include these lists if (!readStandardLists()) { return DGCS_ERROR; @@ -244,18 +259,41 @@ return DGCS_ERROR; } - // set clam's own temp dir - if (cv["tempdir"].length() > 0) - cl_settempdir(cv["tempdir"].toCharArray(), 0); - #ifdef DGDEBUG std::cout << "Scanbuffmethod: " << smethod << std::endl; std::cout << "Scanbuffdir: " << memdir << std::endl; std::cout << "Tempdir: " << cv["tempdir"] << std::endl; #endif +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_init(CL_INIT_DEFAULT)) != CL_SUCCESS ) { + return DGCS_ERROR; + } + if ( !(engine = cl_engine_new()) ) { + return DGCS_ERROR; + } + + // set file, recursion and compression ratio limits for scanning archives + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILES, (long long)cv["maxfiles"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILESIZE, (long long)o.max_content_filecache_scan_size + 1024 * 1024)) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_RECURSION, (long long)cv["maxreclevel"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_SCANSIZE, (long long)cv["maxscansize"].toInteger() * 1024)) ) { + return DGCS_ERROR; + } +// FIXME: need debug output code here + if (cv["tempdir"].length() > 0) + if ( (rc = cl_engine_set_str(engine, CL_ENGINE_TMPDIR, cv["tempdir"].toCharArray())) ) { + return DGCS_ERROR; + } +#else // set file, recursion and compression ratio limits for scanning archives - root = NULL; + engine = NULL; limits.maxfiles = cv["maxfiles"].toInteger(); limits.maxfilesize = o.max_content_filecache_scan_size + 1024 * 1024; limits.maxreclevel = cv["maxreclevel"].toInteger(); @@ -264,12 +302,35 @@ std::cerr << "maxfiles: " << limits.maxfiles << " maxfilesize: " << limits.maxfilesize << " maxreclevel: " << limits.maxreclevel << " maxscansize: " << limits.maxscansize << std::endl; #endif + if (cv["tempdir"].length() > 0) + cl_settempdir(cv["tempdir"].toCharArray(), 0); + +#endif // load virus database - unsigned int virnum = 0; - int rc = cl_load(cl_retdbdir(), &root, &virnum, CL_DB_STDOPT); + unsigned int sigs = 0; +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_load(cl_retdbdir(), engine, &sigs, 0)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error loading clamav db: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); + return DGCS_ERROR; + } +#ifdef DGDEBUG + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; +#endif + if ( (rc = cl_engine_compile(engine)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error preparing clamav engine: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error preparing clamav engine: %s", cl_strerror(rc)); + return DGCS_ERROR; + } + return DGCS_OK; + +#else + rc = cl_load(cl_retdbdir(), &engine, &sigs, CL_DB_STDOPT); #ifdef DGDEBUG - std::cout << "engine: " << root << " virnum: " << virnum << std::endl; + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; #endif if (rc != 0) { if (!is_daemonised) @@ -277,7 +338,7 @@ syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); return DGCS_ERROR; } - rc = cl_build(root); + rc = cl_build(engine); if (rc != 0) { if (!is_daemonised) std::cerr << "Error building clamav db: " << cl_strerror(rc) << std::endl; @@ -285,4 +346,5 @@ return DGCS_ERROR; } return DGCS_OK; +#endif } dansguardian-copyright-notice.patch: --- NEW FILE dansguardian-copyright-notice.patch --- As requested by RH legal: https://bugzilla.redhat.com/show_bug.cgi?id=458643#c8 diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.cpp dansguardian-2.9.9.5/src/Auth.cpp --- dansguardian-2.9.9.5.orig/src/Auth.cpp 2007-11-26 06:59:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/Auth.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.hpp dansguardian-2.9.9.5/src/Auth.hpp --- dansguardian-2.9.9.5.orig/src/Auth.hpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/Auth.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.cpp dansguardian-2.9.9.5/src/BaseSocket.cpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.cpp 2007-11-20 08:26:31.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.cpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,7 +1,6 @@ // Base socket class - inherit this to implement UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.hpp dansguardian-2.9.9.5/src/BaseSocket.hpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.hpp 2007-11-20 08:26:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // BaseSocket class - inherit & implement to make UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.cpp dansguardian-2.9.9.5/src/ConfigVar.cpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConfigVar.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,7 +1,6 @@ //Implements the ConfigVar class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.hpp dansguardian-2.9.9.5/src/ConfigVar.hpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.hpp 2008-03-06 05:25:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/ConfigVar.hpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,8 +1,7 @@ //Defines the ConfigVar class, which implements reading options from a file //into a map -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp dansguardian-2.9.9.5/src/ConnectionHandler.cpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.cpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp dansguardian-2.9.9.5/src/ConnectionHandler.hpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.cpp dansguardian-2.9.9.5/src/ContentScanner.cpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.cpp 2007-07-12 05:05:24.000000000 -0400 +++ dansguardian-2.9.9.5/src/ContentScanner.cpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // Implements CSPlugin class and cs_plugin_loader base class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.hpp dansguardian-2.9.9.5/src/ContentScanner.hpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.hpp 2007-01-09 05:12:30.000000000 -0500 +++ dansguardian-2.9.9.5/src/ContentScanner.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // Defines the class interface to be implemented by ContentScanner plugins -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.cpp dansguardian-2.9.9.5/src/DataBuffer.cpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.cpp 2008-05-22 05:08:26.000000000 -0400 +++ dansguardian-2.9.9.5/src/DataBuffer.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.hpp dansguardian-2.9.9.5/src/DataBuffer.hpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.hpp 2007-12-11 09:22:59.000000000 -0500 +++ dansguardian-2.9.9.5/src/DataBuffer.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.cpp dansguardian-2.9.9.5/src/DownloadManager.cpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.cpp 2007-01-08 07:56:47.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,7 +1,6 @@ // Implements dm_plugin_load and base DMPlugin methods -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.hpp dansguardian-2.9.9.5/src/DownloadManager.hpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.hpp 2005-11-07 10:15:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ //Defines the DMPlugin base class, and dm_plugin_loader function -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp dansguardian-2.9.9.5/src/DynamicIPList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp dansguardian-2.9.9.5/src/DynamicIPList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp dansguardian-2.9.9.5/src/DynamicURLList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp 2007-09-10 09:23:49.000000000 -0400 +++ dansguardian-2.9.9.5/src/DynamicURLList.cpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp dansguardian-2.9.9.5/src/DynamicURLList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp 2006-01-17 11:09:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicURLList.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.cpp dansguardian-2.9.9.5/src/FDFuncs.cpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.cpp 2008-12-21 06:47:01.055671671 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.hpp dansguardian-2.9.9.5/src/FDFuncs.hpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.hpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.cpp dansguardian-2.9.9.5/src/FDTunnel.cpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.cpp 2007-12-11 11:24:48.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.hpp dansguardian-2.9.9.5/src/FDTunnel.hpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.hpp 2007-12-11 10:21:40.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -2,8 +2,7 @@ // that uses blocking select() to be as efficient as possible. It tunnels // between the two supplied FDs. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp dansguardian-2.9.9.5/src/FOptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp 2008-05-22 05:27:41.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.cpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp dansguardian-2.9.9.5/src/FOptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp 2008-05-22 05:27:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.cpp dansguardian-2.9.9.5/src/FatController.cpp --- dansguardian-2.9.9.5.orig/src/FatController.cpp 2008-05-22 05:23:54.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.cpp 2008-12-21 06:47:01.053671291 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.hpp dansguardian-2.9.9.5/src/FatController.hpp --- dansguardian-2.9.9.5.orig/src/FatController.hpp 2005-10-12 07:43:16.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp dansguardian-2.9.9.5/src/HTMLTemplate.cpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp 2006-05-26 04:53:55.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTMLTemplate.cpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ //Implements the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp dansguardian-2.9.9.5/src/HTMLTemplate.hpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp 2006-01-18 12:37:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTMLTemplate.hpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,7 +1,6 @@ //Declares the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp dansguardian-2.9.9.5/src/HTTPHeader.cpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp 2008-04-01 06:36:21.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTTPHeader.cpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp dansguardian-2.9.9.5/src/HTTPHeader.hpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp 2007-12-11 10:20:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTTPHeader.hpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/IPList.hpp dansguardian-2.9.9.5/src/IPList.hpp --- dansguardian-2.9.9.5.orig/src/IPList.hpp 2008-06-05 09:11:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/IPList.hpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.cpp dansguardian-2.9.9.5/src/ImageContainer.cpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.cpp 2006-04-05 12:22:07.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com) but heavily based on code //written by Aecio F. Neto (afn at harvest.com.br). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.hpp dansguardian-2.9.9.5/src/ImageContainer.hpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,7 +1,6 @@ // ImageContainer - container class for custom banned image -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp dansguardian-2.9.9.5/src/LanguageContainer.cpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp dansguardian-2.9.9.5/src/LanguageContainer.hpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.cpp dansguardian-2.9.9.5/src/ListContainer.cpp --- dansguardian-2.9.9.5.orig/src/ListContainer.cpp 2008-04-25 10:16:47.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.cpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // ListContainer - class for both item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.hpp dansguardian-2.9.9.5/src/ListContainer.hpp --- dansguardian-2.9.9.5.orig/src/ListContainer.hpp 2008-05-22 05:04:56.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.hpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ListContainer class - for item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.cpp dansguardian-2.9.9.5/src/ListManager.cpp --- dansguardian-2.9.9.5.orig/src/ListManager.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListManager.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // ListManager - contains the ListContainers for all item and phrase lists, and can create new ones -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.hpp dansguardian-2.9.9.5/src/ListManager.hpp --- dansguardian-2.9.9.5.orig/src/ListManager.hpp 2005-11-17 07:43:45.000000000 -0500 +++ dansguardian-2.9.9.5/src/ListManager.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ // ListManager - for creating & containing all ListContainers of item & phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp dansguardian-2.9.9.5/src/NaughtyFilter.cpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp 2008-05-22 05:06:22.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp dansguardian-2.9.9.5/src/NaughtyFilter.hpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp 2008-05-22 05:06:30.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.cpp dansguardian-2.9.9.5/src/OptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.cpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.cpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.hpp dansguardian-2.9.9.5/src/OptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.hpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.hpp 2008-12-21 06:47:01.058671160 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Plugin.hpp dansguardian-2.9.9.5/src/Plugin.hpp --- dansguardian-2.9.9.5.orig/src/Plugin.hpp 2005-11-03 06:44:13.000000000 -0500 +++ dansguardian-2.9.9.5/src/Plugin.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // the Plugin interface - inherit this to define new plugin types -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.cpp dansguardian-2.9.9.5/src/RegExp.cpp --- dansguardian-2.9.9.5.orig/src/RegExp.cpp 2008-03-06 05:25:56.000000000 -0500 +++ dansguardian-2.9.9.5/src/RegExp.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.hpp dansguardian-2.9.9.5/src/RegExp.hpp --- dansguardian-2.9.9.5.orig/src/RegExp.hpp 2005-10-24 07:37:15.000000000 -0400 +++ dansguardian-2.9.9.5/src/RegExp.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.cpp dansguardian-2.9.9.5/src/Socket.cpp --- dansguardian-2.9.9.5.orig/src/Socket.cpp 2007-11-20 09:20:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.hpp dansguardian-2.9.9.5/src/Socket.hpp --- dansguardian-2.9.9.5.orig/src/Socket.hpp 2007-11-20 09:19:51.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.hpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.cpp dansguardian-2.9.9.5/src/SocketArray.cpp --- dansguardian-2.9.9.5.orig/src/SocketArray.cpp 2006-04-11 05:44:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/SocketArray.cpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.hpp dansguardian-2.9.9.5/src/SocketArray.hpp --- dansguardian-2.9.9.5.orig/src/SocketArray.hpp 2006-01-17 10:24:54.000000000 -0500 +++ dansguardian-2.9.9.5/src/SocketArray.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/String.cpp dansguardian-2.9.9.5/src/String.cpp --- dansguardian-2.9.9.5.orig/src/String.cpp 2008-03-06 05:25:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // String - guess what: it's a string class! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/String.hpp dansguardian-2.9.9.5/src/String.hpp --- dansguardian-2.9.9.5.orig/src/String.hpp 2007-12-13 12:14:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.hpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // String - guess what: it's a string class! Cut down version of Java string // class interface -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.cpp dansguardian-2.9.9.5/src/SysV.cpp --- dansguardian-2.9.9.5.orig/src/SysV.cpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ //jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.hpp dansguardian-2.9.9.5/src/SysV.hpp --- dansguardian-2.9.9.5.orig/src/SysV.hpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.hpp 2008-12-21 06:47:01.029671263 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@?? jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.cpp dansguardian-2.9.9.5/src/UDSocket.cpp --- dansguardian-2.9.9.5.orig/src/UDSocket.cpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.cpp 2008-12-21 06:47:01.051670980 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.hpp dansguardian-2.9.9.5/src/UDSocket.hpp --- dansguardian-2.9.9.5.orig/src/UDSocket.hpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.hpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp dansguardian-2.9.9.5/src/authplugins/digest.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp 2007-11-26 06:57:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/digest.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,8 +1,7 @@ // Digest auth plugin // Based on contribution by Darryl Sutherland -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp dansguardian-2.9.9.5/src/authplugins/ident.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp 2007-03-27 07:36:25.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ident.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Ident server auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp dansguardian-2.9.9.5/src/authplugins/ip.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp 2008-05-22 10:49:14.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ip.cpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ // IP (range, subnet) auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp dansguardian-2.9.9.5/src/authplugins/ntlm.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp 2007-12-11 10:19:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/ntlm.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // NTLM auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp dansguardian-2.9.9.5/src/authplugins/proxy.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/proxy.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Proxy auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp dansguardian-2.9.9.5/src/contentscanners/clamav.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp 2008-04-25 11:21:34.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamav.cpp 2008-12-21 06:47:01.023671379 -0500 @@ -1,7 +1,6 @@ // LibClamAV content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp 2007-10-23 08:04:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // ClamD content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp 2007-11-20 09:36:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Command line content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp 2007-11-20 09:13:55.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ICAP server content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp 2006-12-19 06:16:33.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Kaspersky AV Daemon content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/dansguardian.cpp dansguardian-2.9.9.5/src/dansguardian.cpp --- dansguardian-2.9.9.5.orig/src/dansguardian.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/dansguardian.cpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp dansguardian-2.9.9.5/src/downloadmanagers/default.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp 2007-12-11 10:22:18.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/default.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,7 +1,6 @@ // Default download manager, used when no other plugin matches the user agent -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp 2007-12-24 08:34:07.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp 2007-12-11 10:33:05.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp 2008-12-21 06:47:01.029671263 -0500 @@ -5,8 +5,7 @@ // working, malicious portion sent to the browser before scanning has // completed! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by dansguardian-gcc44.patch: --- NEW FILE dansguardian-gcc44.patch --- diff -ruN dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp dansguardian-2.10.1.1/src/ConnectionHandler.cpp --- dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp 2009-02-25 12:36:22.000000000 +0100 +++ dansguardian-2.10.1.1/src/ConnectionHandler.cpp 2009-07-15 12:02:09.801533048 +0200 @@ -45,6 +45,7 @@ #ifdef ENABLE_ORIG_IP #include +#include #include #endif diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp dansguardian-2.10.1.1/src/contentscanners/clamav.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/clamav.cpp 2009-07-15 11:59:12.316495912 +0200 @@ -26,6 +26,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp 2009-07-15 11:59:12.317495697 +0200 @@ -28,6 +28,7 @@ #include "../OptionContainer.hpp" #include "../RegExp.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp 2009-07-15 11:59:12.318495062 +0200 @@ -29,6 +29,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp --- dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp 2009-07-15 11:59:12.319495964 +0200 @@ -26,6 +26,7 @@ #include "../HTMLTemplate.hpp" #include "../ConnectionHandler.hpp" +#include #include #include #include --- NEW FILE dansguardian.httpd --- ScriptAlias /dansguardian /usr/share/dansguardian/dansguardian.pl order deny,allow deny from all allow from 127.0.0.1 --- NEW FILE dansguardian.init --- #!/bin/bash # # Init file for DansGuardian content filter. # # Written by Dag Wieers . # # chkconfig: - 92 8 # description: DansGuardian content filter. # # processname: dansguardian # config: /etc/dansguardian/dansguardian.conf # pidfile: /var/run/dansguardian source /etc/init.d/functions source /etc/sysconfig/network ### Check that networking is up. [ "${NETWORKING}" == "no" ] && exit 0 [ -x "/usr/sbin/dansguardian" ] || exit 1 [ -r "/etc/dansguardian/dansguardian.conf" ] || exit 1 RETVAL=0 prog="dansguardian" desc="Web Content Filter" start() { echo -n $"Starting $desc ($prog): " daemon $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dansguardian return $RETVAL } stop() { echo -n $"Shutting down $desc ($prog): " killproc $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/dansguardian return $RETVAL } restart() { stop start } reload() { echo -n $"Reloading $desc ($prog): " killproc $prog -HUP RETVAL=$? echo return $RETVAL } case "$1" in start) start ;; stop) stop ;; restart) restart ;; reload) reload ;; condrestart) [ -e /var/lock/subsys/dansguardian ] && restart RETVAL=$? ;; status) status $prog RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart|status}" RETVAL=1 esac exit $RETVAL --- NEW FILE dansguardian.spec --- Name: dansguardian Version: 2.10.1.1 Release: 1%{?dist} Summary: Content filtering web proxy Summary(de): Contentfilter-Proxy Group: System Environment/Daemons # upstream dual-licenses this with GPLv2+ and an own license # for us GPLv2+ applies as stated on http://dansguardian.org/?page=copyright2 # citation: # freely (no cost) downloadable from this site for general purpose unix # distributions like FreeBSD, Debian, Fedora, Ubuntu, etc License: GPLv2+ URL: http://www.dansguardian.org/ Source0: http://dansguardian.org/downloads/2/Stable/%{name}-%{version}.tar.gz Source1: dansguardian.init Source2: dansguardian.httpd # This patch removes the upstream restrictions on the GPLv2+ source Patch0: dansguardian-copyright-notice.patch # Fixes some compilation errors with gcc 4.4 Patch1: dansguardian-gcc44.patch # Adds support for ClamAV > 0.95 Patch2: dansguardian-clamav095.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clamav-devel pcre-devel zlib-devel BuildRequires: pkgconfig Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts %description DansGuardian filters the content of pages based on many methods including phrase matching, PICS filtering and URL filtering. It does not purely filter based on a banned list of sites. It provides real-time virus scanning capabilities for content access. DansGuardian is designed to be completely flexible and allows you to tailor the filtering to your exact needs. It can be as draconian or as unobstructive as you want. The default settings are geared towards what a primary school might want but DansGuardian puts you in control of what you want to block. DansGuardian requires squid or another similar caching proxy server on your local network. %description(de) DansGuardian filtert den Content einer Webseite basierend auf verschiedenen Methoden wie beispielsweise Wortfilter, PICS filtering und URL filtering. Es handelt sich also um ein echtes Content filtering anstatt einfacher Blacklists. Au??erdem bietet DansGuardian die M??glichkeit einen Virenfilter einzubinden. DansGuardian wurde darauf ausgelegt so flexibel wie m??glich zu sein und erlaubt es die Filterregeln exakt auf die eigenen Bed??rfnisse anzupassen. Vorgegeben sind Einstellungen die dem Bedarf einer Grundschule entsprechen. DansGuardian ben??tigt squid oder einen ??hnlichen Caching-Proxy-Server im lokalen Netzwerk. %prep %setup -q %patch0 -p1 %patch1 -p1 %patch2 -p1 sed -i 's|@DGCONFDIR@/lists/|@DGDATADIR@/lists/|' configs/%{name}*.conf.in %build %configure --enable-orig-ip \ --enable-clamav \ --enable-clamd \ --enable-icap \ --enable-kavd \ --enable-commandline \ --enable-trickledm \ --enable-ntlm \ --enable-email make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -Dpm 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts/%{name} \ $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name} # delete the other scripts since they are of no use for Fedora users rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/%{name}.pl # move the lists to the datadir, since they really are data mv $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/lists \ $RPM_BUILD_ROOT%{_datadir}/%{name} # install init script and httpd config install -Dpm 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name} install -Dp -m0644 %{SOURCE2} \ $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/%{name}.conf # we'll install this later within %doc rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name} %clean rm -rf $RPM_BUILD_ROOT %post /sbin/chkconfig --add %{name} %preun if [ $1 = 0 ] ; then /sbin/service %{name} stop >/dev/null 2>&1 /sbin/chkconfig --del %{name} fi %postun if [ "$1" -ge "1" ] ; then /sbin/service %{name} condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc COPYING INSTALL README UPGRADING %doc doc/AuthPlugins doc/ContentScanners doc/DownloadManagers doc/FAQ %doc doc/FAQ.html doc/Plugins %doc %{_mandir}/man?/* %{_sbindir}/%{name} %{_datadir}/%{name} %{_initrddir}/%{name} %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}*.conf %dir %{_sysconfdir}/%{name}/authplugins %config(noreplace) %{_sysconfdir}/%{name}/authplugins/* %dir %{_sysconfdir}/%{name}/contentscanners %config(noreplace) %{_sysconfdir}/%{name}/contentscanners/* %dir %{_sysconfdir}/%{name}/downloadmanagers %config(noreplace) %{_sysconfdir}/%{name}/downloadmanagers/* %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %changelog * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - news upstream version * Fri May 29 2009 Felix Kaechele - 2.10.0.3-2 - added licensing information * Sat May 09 2009 Felix Kaechele - 2.10.0.3-1 - initial build --- NEW FILE import.log --- dansguardian-2_10_1_1-1_fc11:HEAD:dansguardian-2.10.1.1-1.fc11.src.rpm:1247652625 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:06:50 -0000 1.1 +++ .cvsignore 15 Jul 2009 10:10:58 -0000 1.2 @@ -0,0 +1 @@ +dansguardian-2.10.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:06:50 -0000 1.1 +++ sources 15 Jul 2009 10:10:59 -0000 1.2 @@ -0,0 +1 @@ +0987a1c9bfbdf398118386f10279611a dansguardian-2.10.1.1.tar.gz From topdog at fedoraproject.org Wed Jul 15 10:14:17 2009 From: topdog at fedoraproject.org (topdog) Date: Wed, 15 Jul 2009 10:14:17 +0000 (UTC) Subject: rpms/php-pecl-geoip/devel import.log, 1.2, 1.3 php-pecl-geoip.spec, 1.3, 1.4 Message-ID: <20090715101417.AB91511C00DF@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-pecl-geoip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18876/devel Modified Files: import.log php-pecl-geoip.spec Log Message: * Wed Jul 15 2009 Andrew Colin Kissa - 1.0.7-3 - Inadvertently regressed changes made by remi Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-geoip/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 15 Jul 2009 09:45:46 -0000 1.2 +++ import.log 15 Jul 2009 10:13:47 -0000 1.3 @@ -1,2 +1,3 @@ php-pecl-geoip-1_0_7-2_fc11:HEAD:php-pecl-geoip-1.0.7-2.fc11.src.rpm:1245780244 php-pecl-geoip-1_0_7-2_fc11:HEAD:php-pecl-geoip-1.0.7-2.fc11.src.rpm:1247650931 +php-pecl-geoip-1_0_7-3_fc11:HEAD:php-pecl-geoip-1.0.7-3.fc11.src.rpm:1247652692 Index: php-pecl-geoip.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-geoip/devel/php-pecl-geoip.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pecl-geoip.spec 15 Jul 2009 09:45:46 -0000 1.3 +++ php-pecl-geoip.spec 15 Jul 2009 10:13:47 -0000 1.4 @@ -6,7 +6,7 @@ Name: php-pecl-geoip Version: 1.0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extension to map IP addresses to geographic places Group: Development/Languages License: PHP @@ -83,6 +83,9 @@ fi %{pecl_xmldir}/%{name}.xml %changelog +* Sun Jul 12 2009 Remi Collet 1.0.7-3 +- rebuild for new PHP 5.3.0 ABI (20090626) + * Mon Jun 22 2009 Andrew Colin Kissa - 1.0.7-2 - Fix timestamps on installed files From heffer at fedoraproject.org Wed Jul 15 10:14:29 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Wed, 15 Jul 2009 10:14:29 +0000 (UTC) Subject: rpms/dansguardian/F-11 dansguardian-clamav095.patch, NONE, 1.1 dansguardian-copyright-notice.patch, NONE, 1.1 dansguardian-gcc44.patch, NONE, 1.1 dansguardian.httpd, NONE, 1.1 dansguardian.init, NONE, 1.1 dansguardian.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715101429.B707211C00DF@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/dansguardian/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19467 Modified Files: .cvsignore sources Added Files: dansguardian-clamav095.patch dansguardian-copyright-notice.patch dansguardian-gcc44.patch dansguardian.httpd dansguardian.init dansguardian.spec Log Message: * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - new upstream version dansguardian-clamav095.patch: --- NEW FILE dansguardian-clamav095.patch --- # patch by Imre Gergely diff -ruN dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp dansguardian-2.10.0.3/src/contentscanners/clamav.cpp --- dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp 2009-05-09 22:25:45.552238568 +0200 +++ dansguardian-2.10.0.3/src/contentscanners/clamav.cpp 2009-05-09 22:44:06.398108444 +0200 @@ -69,9 +69,11 @@ // virus database root node // Update to support ClamAV 0.90 // Based on patch supplied by Aecio F. Neto - struct cl_engine *root; + struct cl_engine *engine; +#ifndef CL_INIT_DEFAULT // archive limit options struct cl_limits limits; +#endif #ifdef HAVE_CLAMAV_SHM // use POSIX shared memory @@ -100,7 +102,11 @@ // destroy plugin int clamavinstance::quit() { - cl_free(root); +#ifdef CL_INIT_DEFAULT + cl_engine_free(engine); +#else + cl_free(engine); +#endif return DGCS_OK; } @@ -164,7 +170,11 @@ return DGCS_SCANERROR; } - rc = cl_scandesc(fd, &vn, NULL, root, &limits, CL_SCAN_STDOPT); +#ifdef CL_INIT_DEFAULT + rc = cl_scandesc(fd, &vn, NULL, engine, CL_SCAN_STDOPT); +#else + rc = cl_scandesc(fd, &vn, NULL, engine, &limits, CL_SCAN_STDOPT); +#endif close(fd); #ifdef HAVE_CLAMAV_SHM @@ -189,7 +199,11 @@ { lastmessage = lastvirusname = ""; const char *vn = NULL; - int rc = cl_scanfile(filename, &vn, NULL, root, &limits, CL_SCAN_STDOPT ); +#ifdef CL_INIT_DEFAULT + int rc = cl_scanfile(filename, &vn, NULL, engine, CL_SCAN_STDOPT ); +#else + int rc = cl_scanfile(filename, &vn, NULL, engine, &limits, CL_SCAN_STDOPT ); +#endif return doRC(rc, vn); } @@ -220,6 +234,7 @@ // initialise libclamav int clamavinstance::init(void* args) { + int rc; // always include these lists if (!readStandardLists()) { return DGCS_ERROR; @@ -244,18 +259,41 @@ return DGCS_ERROR; } - // set clam's own temp dir - if (cv["tempdir"].length() > 0) - cl_settempdir(cv["tempdir"].toCharArray(), 0); - #ifdef DGDEBUG std::cout << "Scanbuffmethod: " << smethod << std::endl; std::cout << "Scanbuffdir: " << memdir << std::endl; std::cout << "Tempdir: " << cv["tempdir"] << std::endl; #endif +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_init(CL_INIT_DEFAULT)) != CL_SUCCESS ) { + return DGCS_ERROR; + } + if ( !(engine = cl_engine_new()) ) { + return DGCS_ERROR; + } + + // set file, recursion and compression ratio limits for scanning archives + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILES, (long long)cv["maxfiles"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILESIZE, (long long)o.max_content_filecache_scan_size + 1024 * 1024)) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_RECURSION, (long long)cv["maxreclevel"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_SCANSIZE, (long long)cv["maxscansize"].toInteger() * 1024)) ) { + return DGCS_ERROR; + } +// FIXME: need debug output code here + if (cv["tempdir"].length() > 0) + if ( (rc = cl_engine_set_str(engine, CL_ENGINE_TMPDIR, cv["tempdir"].toCharArray())) ) { + return DGCS_ERROR; + } +#else // set file, recursion and compression ratio limits for scanning archives - root = NULL; + engine = NULL; limits.maxfiles = cv["maxfiles"].toInteger(); limits.maxfilesize = o.max_content_filecache_scan_size + 1024 * 1024; limits.maxreclevel = cv["maxreclevel"].toInteger(); @@ -264,12 +302,35 @@ std::cerr << "maxfiles: " << limits.maxfiles << " maxfilesize: " << limits.maxfilesize << " maxreclevel: " << limits.maxreclevel << " maxscansize: " << limits.maxscansize << std::endl; #endif + if (cv["tempdir"].length() > 0) + cl_settempdir(cv["tempdir"].toCharArray(), 0); + +#endif // load virus database - unsigned int virnum = 0; - int rc = cl_load(cl_retdbdir(), &root, &virnum, CL_DB_STDOPT); + unsigned int sigs = 0; +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_load(cl_retdbdir(), engine, &sigs, 0)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error loading clamav db: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); + return DGCS_ERROR; + } +#ifdef DGDEBUG + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; +#endif + if ( (rc = cl_engine_compile(engine)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error preparing clamav engine: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error preparing clamav engine: %s", cl_strerror(rc)); + return DGCS_ERROR; + } + return DGCS_OK; + +#else + rc = cl_load(cl_retdbdir(), &engine, &sigs, CL_DB_STDOPT); #ifdef DGDEBUG - std::cout << "engine: " << root << " virnum: " << virnum << std::endl; + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; #endif if (rc != 0) { if (!is_daemonised) @@ -277,7 +338,7 @@ syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); return DGCS_ERROR; } - rc = cl_build(root); + rc = cl_build(engine); if (rc != 0) { if (!is_daemonised) std::cerr << "Error building clamav db: " << cl_strerror(rc) << std::endl; @@ -285,4 +346,5 @@ return DGCS_ERROR; } return DGCS_OK; +#endif } dansguardian-copyright-notice.patch: --- NEW FILE dansguardian-copyright-notice.patch --- As requested by RH legal: https://bugzilla.redhat.com/show_bug.cgi?id=458643#c8 diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.cpp dansguardian-2.9.9.5/src/Auth.cpp --- dansguardian-2.9.9.5.orig/src/Auth.cpp 2007-11-26 06:59:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/Auth.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.hpp dansguardian-2.9.9.5/src/Auth.hpp --- dansguardian-2.9.9.5.orig/src/Auth.hpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/Auth.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.cpp dansguardian-2.9.9.5/src/BaseSocket.cpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.cpp 2007-11-20 08:26:31.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.cpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,7 +1,6 @@ // Base socket class - inherit this to implement UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.hpp dansguardian-2.9.9.5/src/BaseSocket.hpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.hpp 2007-11-20 08:26:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // BaseSocket class - inherit & implement to make UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.cpp dansguardian-2.9.9.5/src/ConfigVar.cpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConfigVar.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,7 +1,6 @@ //Implements the ConfigVar class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.hpp dansguardian-2.9.9.5/src/ConfigVar.hpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.hpp 2008-03-06 05:25:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/ConfigVar.hpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,8 +1,7 @@ //Defines the ConfigVar class, which implements reading options from a file //into a map -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp dansguardian-2.9.9.5/src/ConnectionHandler.cpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.cpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp dansguardian-2.9.9.5/src/ConnectionHandler.hpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.cpp dansguardian-2.9.9.5/src/ContentScanner.cpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.cpp 2007-07-12 05:05:24.000000000 -0400 +++ dansguardian-2.9.9.5/src/ContentScanner.cpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // Implements CSPlugin class and cs_plugin_loader base class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.hpp dansguardian-2.9.9.5/src/ContentScanner.hpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.hpp 2007-01-09 05:12:30.000000000 -0500 +++ dansguardian-2.9.9.5/src/ContentScanner.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // Defines the class interface to be implemented by ContentScanner plugins -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.cpp dansguardian-2.9.9.5/src/DataBuffer.cpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.cpp 2008-05-22 05:08:26.000000000 -0400 +++ dansguardian-2.9.9.5/src/DataBuffer.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.hpp dansguardian-2.9.9.5/src/DataBuffer.hpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.hpp 2007-12-11 09:22:59.000000000 -0500 +++ dansguardian-2.9.9.5/src/DataBuffer.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.cpp dansguardian-2.9.9.5/src/DownloadManager.cpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.cpp 2007-01-08 07:56:47.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,7 +1,6 @@ // Implements dm_plugin_load and base DMPlugin methods -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.hpp dansguardian-2.9.9.5/src/DownloadManager.hpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.hpp 2005-11-07 10:15:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ //Defines the DMPlugin base class, and dm_plugin_loader function -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp dansguardian-2.9.9.5/src/DynamicIPList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp dansguardian-2.9.9.5/src/DynamicIPList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp dansguardian-2.9.9.5/src/DynamicURLList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp 2007-09-10 09:23:49.000000000 -0400 +++ dansguardian-2.9.9.5/src/DynamicURLList.cpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp dansguardian-2.9.9.5/src/DynamicURLList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp 2006-01-17 11:09:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicURLList.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.cpp dansguardian-2.9.9.5/src/FDFuncs.cpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.cpp 2008-12-21 06:47:01.055671671 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.hpp dansguardian-2.9.9.5/src/FDFuncs.hpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.hpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.cpp dansguardian-2.9.9.5/src/FDTunnel.cpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.cpp 2007-12-11 11:24:48.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.hpp dansguardian-2.9.9.5/src/FDTunnel.hpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.hpp 2007-12-11 10:21:40.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -2,8 +2,7 @@ // that uses blocking select() to be as efficient as possible. It tunnels // between the two supplied FDs. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp dansguardian-2.9.9.5/src/FOptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp 2008-05-22 05:27:41.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.cpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp dansguardian-2.9.9.5/src/FOptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp 2008-05-22 05:27:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.cpp dansguardian-2.9.9.5/src/FatController.cpp --- dansguardian-2.9.9.5.orig/src/FatController.cpp 2008-05-22 05:23:54.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.cpp 2008-12-21 06:47:01.053671291 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.hpp dansguardian-2.9.9.5/src/FatController.hpp --- dansguardian-2.9.9.5.orig/src/FatController.hpp 2005-10-12 07:43:16.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp dansguardian-2.9.9.5/src/HTMLTemplate.cpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp 2006-05-26 04:53:55.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTMLTemplate.cpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ //Implements the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp dansguardian-2.9.9.5/src/HTMLTemplate.hpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp 2006-01-18 12:37:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTMLTemplate.hpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,7 +1,6 @@ //Declares the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp dansguardian-2.9.9.5/src/HTTPHeader.cpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp 2008-04-01 06:36:21.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTTPHeader.cpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp dansguardian-2.9.9.5/src/HTTPHeader.hpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp 2007-12-11 10:20:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTTPHeader.hpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/IPList.hpp dansguardian-2.9.9.5/src/IPList.hpp --- dansguardian-2.9.9.5.orig/src/IPList.hpp 2008-06-05 09:11:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/IPList.hpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.cpp dansguardian-2.9.9.5/src/ImageContainer.cpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.cpp 2006-04-05 12:22:07.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com) but heavily based on code //written by Aecio F. Neto (afn at harvest.com.br). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.hpp dansguardian-2.9.9.5/src/ImageContainer.hpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,7 +1,6 @@ // ImageContainer - container class for custom banned image -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp dansguardian-2.9.9.5/src/LanguageContainer.cpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp dansguardian-2.9.9.5/src/LanguageContainer.hpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.cpp dansguardian-2.9.9.5/src/ListContainer.cpp --- dansguardian-2.9.9.5.orig/src/ListContainer.cpp 2008-04-25 10:16:47.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.cpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // ListContainer - class for both item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.hpp dansguardian-2.9.9.5/src/ListContainer.hpp --- dansguardian-2.9.9.5.orig/src/ListContainer.hpp 2008-05-22 05:04:56.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.hpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ListContainer class - for item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.cpp dansguardian-2.9.9.5/src/ListManager.cpp --- dansguardian-2.9.9.5.orig/src/ListManager.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListManager.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // ListManager - contains the ListContainers for all item and phrase lists, and can create new ones -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.hpp dansguardian-2.9.9.5/src/ListManager.hpp --- dansguardian-2.9.9.5.orig/src/ListManager.hpp 2005-11-17 07:43:45.000000000 -0500 +++ dansguardian-2.9.9.5/src/ListManager.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ // ListManager - for creating & containing all ListContainers of item & phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp dansguardian-2.9.9.5/src/NaughtyFilter.cpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp 2008-05-22 05:06:22.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp dansguardian-2.9.9.5/src/NaughtyFilter.hpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp 2008-05-22 05:06:30.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.cpp dansguardian-2.9.9.5/src/OptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.cpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.cpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.hpp dansguardian-2.9.9.5/src/OptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.hpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.hpp 2008-12-21 06:47:01.058671160 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Plugin.hpp dansguardian-2.9.9.5/src/Plugin.hpp --- dansguardian-2.9.9.5.orig/src/Plugin.hpp 2005-11-03 06:44:13.000000000 -0500 +++ dansguardian-2.9.9.5/src/Plugin.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // the Plugin interface - inherit this to define new plugin types -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.cpp dansguardian-2.9.9.5/src/RegExp.cpp --- dansguardian-2.9.9.5.orig/src/RegExp.cpp 2008-03-06 05:25:56.000000000 -0500 +++ dansguardian-2.9.9.5/src/RegExp.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.hpp dansguardian-2.9.9.5/src/RegExp.hpp --- dansguardian-2.9.9.5.orig/src/RegExp.hpp 2005-10-24 07:37:15.000000000 -0400 +++ dansguardian-2.9.9.5/src/RegExp.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.cpp dansguardian-2.9.9.5/src/Socket.cpp --- dansguardian-2.9.9.5.orig/src/Socket.cpp 2007-11-20 09:20:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.hpp dansguardian-2.9.9.5/src/Socket.hpp --- dansguardian-2.9.9.5.orig/src/Socket.hpp 2007-11-20 09:19:51.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.hpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.cpp dansguardian-2.9.9.5/src/SocketArray.cpp --- dansguardian-2.9.9.5.orig/src/SocketArray.cpp 2006-04-11 05:44:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/SocketArray.cpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.hpp dansguardian-2.9.9.5/src/SocketArray.hpp --- dansguardian-2.9.9.5.orig/src/SocketArray.hpp 2006-01-17 10:24:54.000000000 -0500 +++ dansguardian-2.9.9.5/src/SocketArray.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/String.cpp dansguardian-2.9.9.5/src/String.cpp --- dansguardian-2.9.9.5.orig/src/String.cpp 2008-03-06 05:25:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // String - guess what: it's a string class! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/String.hpp dansguardian-2.9.9.5/src/String.hpp --- dansguardian-2.9.9.5.orig/src/String.hpp 2007-12-13 12:14:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.hpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // String - guess what: it's a string class! Cut down version of Java string // class interface -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.cpp dansguardian-2.9.9.5/src/SysV.cpp --- dansguardian-2.9.9.5.orig/src/SysV.cpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ //jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.hpp dansguardian-2.9.9.5/src/SysV.hpp --- dansguardian-2.9.9.5.orig/src/SysV.hpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.hpp 2008-12-21 06:47:01.029671263 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@?? jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.cpp dansguardian-2.9.9.5/src/UDSocket.cpp --- dansguardian-2.9.9.5.orig/src/UDSocket.cpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.cpp 2008-12-21 06:47:01.051670980 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.hpp dansguardian-2.9.9.5/src/UDSocket.hpp --- dansguardian-2.9.9.5.orig/src/UDSocket.hpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.hpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp dansguardian-2.9.9.5/src/authplugins/digest.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp 2007-11-26 06:57:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/digest.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,8 +1,7 @@ // Digest auth plugin // Based on contribution by Darryl Sutherland -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp dansguardian-2.9.9.5/src/authplugins/ident.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp 2007-03-27 07:36:25.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ident.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Ident server auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp dansguardian-2.9.9.5/src/authplugins/ip.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp 2008-05-22 10:49:14.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ip.cpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ // IP (range, subnet) auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp dansguardian-2.9.9.5/src/authplugins/ntlm.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp 2007-12-11 10:19:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/ntlm.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // NTLM auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp dansguardian-2.9.9.5/src/authplugins/proxy.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/proxy.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Proxy auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp dansguardian-2.9.9.5/src/contentscanners/clamav.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp 2008-04-25 11:21:34.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamav.cpp 2008-12-21 06:47:01.023671379 -0500 @@ -1,7 +1,6 @@ // LibClamAV content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp 2007-10-23 08:04:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // ClamD content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp 2007-11-20 09:36:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Command line content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp 2007-11-20 09:13:55.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ICAP server content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp 2006-12-19 06:16:33.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Kaspersky AV Daemon content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/dansguardian.cpp dansguardian-2.9.9.5/src/dansguardian.cpp --- dansguardian-2.9.9.5.orig/src/dansguardian.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/dansguardian.cpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp dansguardian-2.9.9.5/src/downloadmanagers/default.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp 2007-12-11 10:22:18.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/default.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,7 +1,6 @@ // Default download manager, used when no other plugin matches the user agent -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp 2007-12-24 08:34:07.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp 2007-12-11 10:33:05.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp 2008-12-21 06:47:01.029671263 -0500 @@ -5,8 +5,7 @@ // working, malicious portion sent to the browser before scanning has // completed! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by dansguardian-gcc44.patch: --- NEW FILE dansguardian-gcc44.patch --- diff -ruN dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp dansguardian-2.10.1.1/src/ConnectionHandler.cpp --- dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp 2009-02-25 12:36:22.000000000 +0100 +++ dansguardian-2.10.1.1/src/ConnectionHandler.cpp 2009-07-15 12:02:09.801533048 +0200 @@ -45,6 +45,7 @@ #ifdef ENABLE_ORIG_IP #include +#include #include #endif diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp dansguardian-2.10.1.1/src/contentscanners/clamav.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/clamav.cpp 2009-07-15 11:59:12.316495912 +0200 @@ -26,6 +26,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp 2009-07-15 11:59:12.317495697 +0200 @@ -28,6 +28,7 @@ #include "../OptionContainer.hpp" #include "../RegExp.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp 2009-07-15 11:59:12.318495062 +0200 @@ -29,6 +29,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp --- dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp 2009-07-15 11:59:12.319495964 +0200 @@ -26,6 +26,7 @@ #include "../HTMLTemplate.hpp" #include "../ConnectionHandler.hpp" +#include #include #include #include --- NEW FILE dansguardian.httpd --- ScriptAlias /dansguardian /usr/share/dansguardian/dansguardian.pl order deny,allow deny from all allow from 127.0.0.1 --- NEW FILE dansguardian.init --- #!/bin/bash # # Init file for DansGuardian content filter. # # Written by Dag Wieers . # # chkconfig: - 92 8 # description: DansGuardian content filter. # # processname: dansguardian # config: /etc/dansguardian/dansguardian.conf # pidfile: /var/run/dansguardian source /etc/init.d/functions source /etc/sysconfig/network ### Check that networking is up. [ "${NETWORKING}" == "no" ] && exit 0 [ -x "/usr/sbin/dansguardian" ] || exit 1 [ -r "/etc/dansguardian/dansguardian.conf" ] || exit 1 RETVAL=0 prog="dansguardian" desc="Web Content Filter" start() { echo -n $"Starting $desc ($prog): " daemon $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dansguardian return $RETVAL } stop() { echo -n $"Shutting down $desc ($prog): " killproc $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/dansguardian return $RETVAL } restart() { stop start } reload() { echo -n $"Reloading $desc ($prog): " killproc $prog -HUP RETVAL=$? echo return $RETVAL } case "$1" in start) start ;; stop) stop ;; restart) restart ;; reload) reload ;; condrestart) [ -e /var/lock/subsys/dansguardian ] && restart RETVAL=$? ;; status) status $prog RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart|status}" RETVAL=1 esac exit $RETVAL --- NEW FILE dansguardian.spec --- Name: dansguardian Version: 2.10.1.1 Release: 1%{?dist} Summary: Content filtering web proxy Summary(de): Contentfilter-Proxy Group: System Environment/Daemons # upstream dual-licenses this with GPLv2+ and an own license # for us GPLv2+ applies as stated on http://dansguardian.org/?page=copyright2 # citation: # freely (no cost) downloadable from this site for general purpose unix # distributions like FreeBSD, Debian, Fedora, Ubuntu, etc License: GPLv2+ URL: http://www.dansguardian.org/ Source0: http://dansguardian.org/downloads/2/Stable/%{name}-%{version}.tar.gz Source1: dansguardian.init Source2: dansguardian.httpd # This patch removes the upstream restrictions on the GPLv2+ source Patch0: dansguardian-copyright-notice.patch # Fixes some compilation errors with gcc 4.4 Patch1: dansguardian-gcc44.patch # Adds support for ClamAV > 0.95 Patch2: dansguardian-clamav095.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clamav-devel pcre-devel zlib-devel BuildRequires: pkgconfig Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts %description DansGuardian filters the content of pages based on many methods including phrase matching, PICS filtering and URL filtering. It does not purely filter based on a banned list of sites. It provides real-time virus scanning capabilities for content access. DansGuardian is designed to be completely flexible and allows you to tailor the filtering to your exact needs. It can be as draconian or as unobstructive as you want. The default settings are geared towards what a primary school might want but DansGuardian puts you in control of what you want to block. DansGuardian requires squid or another similar caching proxy server on your local network. %description(de) DansGuardian filtert den Content einer Webseite basierend auf verschiedenen Methoden wie beispielsweise Wortfilter, PICS filtering und URL filtering. Es handelt sich also um ein echtes Content filtering anstatt einfacher Blacklists. Au??erdem bietet DansGuardian die M??glichkeit einen Virenfilter einzubinden. DansGuardian wurde darauf ausgelegt so flexibel wie m??glich zu sein und erlaubt es die Filterregeln exakt auf die eigenen Bed??rfnisse anzupassen. Vorgegeben sind Einstellungen die dem Bedarf einer Grundschule entsprechen. DansGuardian ben??tigt squid oder einen ??hnlichen Caching-Proxy-Server im lokalen Netzwerk. %prep %setup -q %patch0 -p1 %patch1 -p1 %patch2 -p1 sed -i 's|@DGCONFDIR@/lists/|@DGDATADIR@/lists/|' configs/%{name}*.conf.in %build %configure --enable-orig-ip \ --enable-clamav \ --enable-clamd \ --enable-icap \ --enable-kavd \ --enable-commandline \ --enable-trickledm \ --enable-ntlm \ --enable-email make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -Dpm 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts/%{name} \ $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name} # delete the other scripts since they are of no use for Fedora users rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/%{name}.pl # move the lists to the datadir, since they really are data mv $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/lists \ $RPM_BUILD_ROOT%{_datadir}/%{name} # install init script and httpd config install -Dpm 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name} install -Dp -m0644 %{SOURCE2} \ $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/%{name}.conf # we'll install this later within %doc rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name} %clean rm -rf $RPM_BUILD_ROOT %post /sbin/chkconfig --add %{name} %preun if [ $1 = 0 ] ; then /sbin/service %{name} stop >/dev/null 2>&1 /sbin/chkconfig --del %{name} fi %postun if [ "$1" -ge "1" ] ; then /sbin/service %{name} condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc COPYING INSTALL README UPGRADING %doc doc/AuthPlugins doc/ContentScanners doc/DownloadManagers doc/FAQ %doc doc/FAQ.html doc/Plugins %doc %{_mandir}/man?/* %{_sbindir}/%{name} %{_datadir}/%{name} %{_initrddir}/%{name} %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}*.conf %dir %{_sysconfdir}/%{name}/authplugins %config(noreplace) %{_sysconfdir}/%{name}/authplugins/* %dir %{_sysconfdir}/%{name}/contentscanners %config(noreplace) %{_sysconfdir}/%{name}/contentscanners/* %dir %{_sysconfdir}/%{name}/downloadmanagers %config(noreplace) %{_sysconfdir}/%{name}/downloadmanagers/* %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %changelog * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - new upstream version * Fri May 29 2009 Felix Kaechele - 2.10.0.3-2 - added licensing information * Sat May 09 2009 Felix Kaechele - 2.10.0.3-1 - initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:06:50 -0000 1.1 +++ .cvsignore 15 Jul 2009 10:14:29 -0000 1.2 @@ -0,0 +1 @@ +dansguardian-2.10.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:06:50 -0000 1.1 +++ sources 15 Jul 2009 10:14:29 -0000 1.2 @@ -0,0 +1 @@ +0987a1c9bfbdf398118386f10279611a dansguardian-2.10.1.1.tar.gz From kwizart at fedoraproject.org Wed Jul 15 10:14:45 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 15 Jul 2009 10:14:45 +0000 (UTC) Subject: rpms/python-kaa-display/F-11 import.log, NONE, 1.1 kaa-display-0.1.0-backport.patch, NONE, 1.1 kaa-display-0.1.0-hack_imlib2_x11_support.patch, NONE, 1.1 python-kaa-display.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715101445.9FEF811C00DF@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/python-kaa-display/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17923/F-11 Modified Files: .cvsignore sources Added Files: import.log kaa-display-0.1.0-backport.patch kaa-display-0.1.0-hack_imlib2_x11_support.patch python-kaa-display.spec Log Message: Initial import for F-11 --- NEW FILE import.log --- python-kaa-display-0_1_0-1_fc11:F-11:python-kaa-display-0.1.0-1.fc11.src.rpm:1247652542 kaa-display-0.1.0-backport.patch: --- NEW FILE kaa-display-0.1.0-backport.patch --- diff -ur kaa-display-0.1.0/setup.py kaa/kaa/display/setup.py --- kaa-display-0.1.0/setup.py 2008-11-30 20:36:46.000000000 +0100 +++ kaa/kaa/display/setup.py 2009-07-01 13:00:43.214311858 +0200 @@ -33,7 +33,6 @@ import re import os import sys -import popen2 try: # kaa base imports diff -ur kaa-display-0.1.0/src/x11.c kaa/kaa/display/src/x11.c --- kaa-display-0.1.0/src/x11.c 2008-11-30 20:36:46.000000000 +0100 +++ kaa/kaa/display/src/x11.c 2009-07-01 13:00:43.186561109 +0200 @@ -144,11 +144,13 @@ { NULL } }; -void init_X11(void) +DL_EXPORT (void) +init_X11(void) { PyObject *m, *display_c_api; static void *display_api_ptrs[3]; + PyEval_InitThreads(); m = Py_InitModule("_X11", display_methods); if (PyType_Ready(&X11Display_PyObject_Type) < 0) kaa-display-0.1.0-hack_imlib2_x11_support.patch: --- NEW FILE kaa-display-0.1.0-hack_imlib2_x11_support.patch --- diff -up kaa-display-0.1.0/setup.py~ kaa-display-0.1.0/setup.py --- kaa-display-0.1.0/setup.py~ 2009-07-01 14:38:24.484559168 +0200 +++ kaa-display-0.1.0/setup.py 2009-07-01 15:09:16.804562162 +0200 @@ -95,7 +95,7 @@ if get_library('X11'): imlib2 = get_library('imlib2') if 'imlib2-x11' in disable or 'imlib2' in disable: print '+ X11 (no imlib2)' - elif imlib2 and imlib2.compile([''], 'imlib_context_set_display(NULL);'): + elif imlib2 or 1: config.define('USE_IMLIB2_X11') x11.add_library('imlib2') print '+ X11 (imlib2)' --- NEW FILE python-kaa-display.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kaa-display Version: 0.1.0 Release: 1%{?dist} Summary: Python API providing Low level support for various displays Group: Development/Languages License: LGPLv2+ URL: http://www.freevo.org/kaa Source0: http://downloads.sourceforge.net/freevo/kaa-display-%{version}.tar.gz Patch0: kaa-display-0.1.0-backport.patch Patch1: kaa-display-0.1.0-hack_imlib2_x11_support.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: python-kaa-base >= 0.1.2 BuildRequires: python-kaa-imlib2 >= 0.2.0 BuildRequires: pygame-devel >= 1.6.0 BuildRequires: imlib2-devel >= 1.2.1 BuildRequires: SDL-devel >= 1.2.5 BuildRequires: libXcomposite-devel %description Low level support for various displays, such as X11 or framebuffer. Provides X11Display and X11Window classes for managing X11 windows, with optional support for Imlib2 (render Imlib2 images to X11 windows), and pygame (render Imlib2 images to pygame surfaces). %prep %setup -q -n kaa-display-%{version} %patch0 -p1 -b .backport %patch1 -p1 -b .hack #Fix encoding cp -pr AUTHORS AUTHORS.not-utf8 iconv -f ISO_8859-1 -t UTF8 AUTHORS.not-utf8 > AUTHORS touch -r AUTHORS.not-utf8 AUTHORS rm AUTHORS.not-utf8 %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO %{python_sitearch}/* %changelog * Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.1.0-1 - Initial spec file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-display/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 07:49:03 -0000 1.1 +++ .cvsignore 15 Jul 2009 10:14:15 -0000 1.2 @@ -0,0 +1 @@ +kaa-display-0.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-display/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 11 Jul 2009 07:49:04 -0000 1.1 +++ sources 15 Jul 2009 10:14:15 -0000 1.2 @@ -0,0 +1 @@ +3a45f583b9b885aab8671b63b0f757cf kaa-display-0.1.0.tar.gz From twaugh at fedoraproject.org Wed Jul 15 10:16:14 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 10:16:14 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3254.patch,NONE,1.1 cups.spec,1.486,1.487 Message-ID: <20090715101614.9C16D11C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20173 Modified Files: cups.spec Added Files: cups-str3254.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Correctly handle CUPS-Get-PPDs requests for models with '+' in their names (STR #3254, bug #509586). cups-str3254.patch: --- NEW FILE cups-str3254.patch --- diff -up cups-1.4rc1/scheduler/ipp.c.str3254 cups-1.4rc1/scheduler/ipp.c --- cups-1.4rc1/scheduler/ipp.c.str3254 2009-07-15 11:11:32.346008322 +0100 +++ cups-1.4rc1/scheduler/ipp.c 2009-07-15 11:12:14.411132519 +0100 @@ -11170,7 +11170,7 @@ url_encode_string(const char *s, /* I - while (*s && bufptr < bufend) { - if (*s == ' ' || *s == '%') + if (*s == ' ' || *s == '%' || *s == '+') { if (bufptr >= (bufend - 2)) break; Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.486 retrieving revision 1.487 diff -u -p -r1.486 -r1.487 --- cups.spec 15 Jul 2009 10:10:57 -0000 1.486 +++ cups.spec 15 Jul 2009 10:16:14 -0000 1.487 @@ -54,7 +54,8 @@ Patch27: cups-str3244.patch Patch28: cups-str3258.patch Patch29: cups-str3259.patch Patch30: cups-uri-compat.patch -Patch31: cups-avahi.patch +Patch31: cups-str3254.patch +Patch32: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -206,7 +207,8 @@ module. %patch28 -p1 -b .str3258 %patch29 -p1 -b .str3259 %patch30 -p1 -b .uri-compat -#%patch31 -p1 -b .avahi +%patch31 -p1 -b .str3254 +#%patch32 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -500,6 +502,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Correctly handle CUPS-Get-PPDs requests for models with '+' in their + names (STR #3254, bug #509586). - Accept incorrect device URIs in the (non-libusb) usb backend for compatibility with Fedora 11 before bug #507244 was fixed. - Applied patch to fix incorrect device URIs (STR #3259, bug #507244). From gd at fedoraproject.org Wed Jul 15 10:21:15 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Wed, 15 Jul 2009 10:21:15 +0000 (UTC) Subject: rpms/samba/F-11 samba-3.4.0-build.patch, NONE, 1.1 .cvsignore, 1.62, 1.63 samba-3.2.0pre1-grouppwd.patch, 1.2, 1.3 samba-3.2.0pre1-pipedir.patch, 1.1, 1.2 samba-3.2.5-inotify.patch, 1.1, 1.2 samba.spec, 1.186, 1.187 sources, 1.66, 1.67 samba-3.3.5-pam_winbind.diff, 1.1, NONE Message-ID: <20090715102115.87ABB11C00DF@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21156 Modified Files: .cvsignore samba-3.2.0pre1-grouppwd.patch samba-3.2.0pre1-pipedir.patch samba-3.2.5-inotify.patch samba.spec sources Added Files: samba-3.4.0-build.patch Removed Files: samba-3.3.5-pam_winbind.diff Log Message: - Update to 3.4.0 - resolves: #510558 Guenther samba-3.4.0-build.patch: --- NEW FILE samba-3.4.0-build.patch --- commit 3b0bd19570894e5219878102a2564a08095f26cd Author: Jelmer Vernooij AuthorDate: Thu Jun 11 04:57:58 2009 +0200 Commit: G??nther Deschner CommitDate: Tue Jul 14 23:51:24 2009 +0200 Fix build with external talloc. --- source3/configure.in | 29 +++++++++++++++++++++++++++-- source3/samba4.m4 | 4 ++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/source3/configure.in b/source3/configure.in index 111e89d..fc41b35 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -77,7 +77,6 @@ done AC_SUBST(LIBTDB_OBJ0) SAMBA_CPPFLAGS="-Iinclude -I${srcdir-.}/include -I. -I${srcdir-.}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/../lib/replace" -SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TALLOC_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TEVENT_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TDB_CFLAGS}" SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/libaddns" @@ -4748,7 +4747,33 @@ LINK_LIBSMBCLIENT=STATIC # TODO: for talloc and tdb (at least), these should # be extracted from their respective source directories # -SMB_LIBRARY(talloc, 1) +AC_ARG_ENABLE(external_libtalloc, [AS_HELP_STRING([--enable-external-libtalloc], [Enable external talloc [default=auto]])], +[ enable_external_libtalloc=$enableval ], [ enable_external_libtalloc=auto ]) + +if test "x$enable_external_libtalloc" != xno +then + PKG_CHECK_MODULES(LIBTALLOC, talloc >= 1.3.0, + [ enable_external_libtalloc=yes ], + [ if test x$enable_external_libtalloc = xyes; then + AC_MSG_ERROR([Unable to find libtalloc]) + else + enable_external_libtalloc=no + fi + ]) +fi + +if test "x$enable_external_libtalloc" = xno +then + m4_include(../lib/talloc/libtalloc.m4) + SMB_LIBRARY(talloc, 1) + LIBTALLOC_OBJ0="" + for obj in ${TALLOC_OBJ}; do + LIBTALLOC_OBJ0="${LIBTALLOC_OBJ0} ${tallocdir}/${obj}" + done + SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} ${TALLOC_CFLAGS}" + AC_SUBST(LIBTALLOC_OBJ0) +fi + SMB_LIBRARY(tdb, 1) SMB_LIBRARY(netapi, 0) SMB_LIBRARY(smbclient, 0) diff --git a/source3/samba4.m4 b/source3/samba4.m4 index b5c7c74..0ea40db 100644 --- a/source3/samba4.m4 +++ b/source3/samba4.m4 @@ -75,6 +75,10 @@ SMB_EXT_LIB_FROM_PKGCONFIG(LIBTALLOC, talloc >= $TALLOC_MIN_VERSION, SMB_INCLUDE_MK(../lib/talloc/config.mk) ] ) +# Tallocdir isn't always set by the Samba3 c +tallocdir=../lib/talloc +AC_SUBST(tallocdir) +CFLAGS="$CFLAGS -I../lib/talloc" SMB_EXT_LIB_FROM_PKGCONFIG(LIBTDB, tdb >= $TDB_MIN_VERSION, [], Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/.cvsignore,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- .cvsignore 16 Jun 2009 12:38:31 -0000 1.62 +++ .cvsignore 15 Jul 2009 10:21:14 -0000 1.63 @@ -1 +1 @@ -samba-3.3.5.tar.gz +samba-3.4.0.tar.gz samba-3.2.0pre1-grouppwd.patch: Index: samba-3.2.0pre1-grouppwd.patch =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba-3.2.0pre1-grouppwd.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- samba-3.2.0pre1-grouppwd.patch 30 Jan 2009 17:31:45 -0000 1.2 +++ samba-3.2.0pre1-grouppwd.patch 15 Jul 2009 10:21:14 -0000 1.3 @@ -1,5 +1,5 @@ ---- samba-3.2.0pre1/source/winbindd/winbindd_group.c.star 2007-10-03 17:40:31.000000000 -0400 -+++ samba-3.2.0pre1/source/winbindd/winbindd_group.c 2007-10-03 17:40:46.000000000 -0400 +--- samba-3.2.0pre1/source3/winbindd/winbindd_group.c.star 2007-10-03 17:40:31.000000000 -0400 ++++ samba-3.2.0pre1/source3/winbindd/winbindd_group.c 2007-10-03 17:40:46.000000000 -0400 @@ -215,7 +215,7 @@ /* Group name and password */ samba-3.2.0pre1-pipedir.patch: Index: samba-3.2.0pre1-pipedir.patch =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba-3.2.0pre1-pipedir.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- samba-3.2.0pre1-pipedir.patch 8 Oct 2007 21:13:15 -0000 1.1 +++ samba-3.2.0pre1-pipedir.patch 15 Jul 2009 10:21:14 -0000 1.2 @@ -1,5 +1,5 @@ ---- samba-3.2.0pre1/source/nsswitch/winbind_struct_protocol.h.pipedir 2007-10-03 15:32:23.000000000 -0400 -+++ samba-3.2.0pre1/source/nsswitch/winbind_struct_protocol.h 2007-10-03 15:33:13.000000000 -0400 +--- samba-3.2.0pre1/nsswitch/winbind_struct_protocol.h.pipedir 2007-10-03 15:32:23.000000000 -0400 ++++ samba-3.2.0pre1/nsswitch/winbind_struct_protocol.h 2007-10-03 15:33:13.000000000 -0400 @@ -24,7 +24,7 @@ * is needed for launchd support -- jpeach. */ samba-3.2.5-inotify.patch: Index: samba-3.2.5-inotify.patch =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba-3.2.5-inotify.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- samba-3.2.5-inotify.patch 27 Nov 2008 21:19:30 -0000 1.1 +++ samba-3.2.5-inotify.patch 15 Jul 2009 10:21:14 -0000 1.2 @@ -1,6 +1,6 @@ === modified file 'source/smbd/notify_inotify.c' ---- source/smbd/notify_inotify.c 2007-03-09 12:07:58 +0000 -+++ source/smbd/notify_inotify.c 2007-04-10 16:27:47 +0000 +--- source3/smbd/notify_inotify.c 2007-03-09 12:07:58 +0000 ++++ source3/smbd/notify_inotify.c 2007-04-10 16:27:47 +0000 @@ -66,6 +66,7 @@ struct sys_notify_context *ctx; int fd; Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba.spec,v retrieving revision 1.186 retrieving revision 1.187 diff -u -p -r1.186 -r1.187 --- samba.spec 19 Jun 2009 10:55:56 -0000 1.186 +++ samba.spec 15 Jul 2009 10:21:15 -0000 1.187 @@ -1,6 +1,6 @@ -%define main_release 38 -%define samba_version 3.3.5 -%define tdb_version 1.1.2 +%define main_release 39 +%define samba_version 3.4.0 +%define tdb_version 1.1.3 %define talloc_version 1.2.0 %define pre_release %nil @@ -9,6 +9,7 @@ %define enable_talloc 0 %define enable_tdb 0 +%define samba_source source3 Summary: Server and Client software to interoperate with Windows machines Name: samba Epoch: 0 @@ -46,7 +47,7 @@ Patch104: samba-3.0.0rc3-nmbd-netbiosnam # The passwd part has been applied, but not the group part Patch107: samba-3.2.0pre1-grouppwd.patch Patch200: samba-3.2.5-inotify.patch -Patch201: samba-3.3.5-pam_winbind.diff +Patch201: samba-3.4.0-build.patch Requires(pre): samba-common = %{epoch}:%{samba_version}-%{release} Requires: pam >= 0:0.64 @@ -56,6 +57,12 @@ Requires(post): /sbin/chkconfig, /sbin/s Requires(preun): /sbin/chkconfig, /sbin/service BuildRequires: pam-devel, readline-devel, ncurses-devel, libacl-devel, krb5-devel, openldap-devel, openssl-devel, cups-devel, ctdb-devel BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel +%if ! %enable_talloc +BuildRequires: libtalloc-devel +%endif +%if ! %enable_tdb +BuildRequires: libtdb-devel +%endif # Working around perl dependency problem from docs %define __perl_requires %{SOURCE999} @@ -251,11 +258,11 @@ cp %{SOURCE11} packaging/Fedora/ #%patch104 -p1 -b .nmbd-netbiosname # FIXME: does not apply %patch107 -p1 -b .grouppwd %patch200 -p0 -b .inotify -%patch201 -p1 -b .pam_winbind +%patch201 -p1 -b .build -mv source/VERSION source/VERSION.orig -sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{samba_release}\"/' < source/VERSION.orig > source/VERSION -cd source +mv %samba_source/VERSION %samba_source/VERSION.orig +sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{samba_release}\"/' < %samba_source/VERSION.orig > %samba_source/VERSION +cd %samba_source script/mkversion.sh cd .. @@ -264,7 +271,7 @@ rm -fr examples/LDAP/smbldap-tools-*/ %build -cd source +cd %samba_source sh autogen.sh %ifarch i386 sparc RPM_OPT_FLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64" @@ -306,23 +313,20 @@ CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DL --with-shared-modules=idmap_ad,idmap_rid,idmap_adex,idmap_hash,idmap_tdb2 \ --with-cifsupcall \ --with-cluster-support - # --with-aio-support \ -make CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" \ - pch +make pch -make LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}/source/bin \ - CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" %{?_smp_mflags} \ - all nsswitch/libnss_wins.so modules test_pam_modules test_nss_modules test_shlibs +make LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}%{pre_release}/%samba_source/bin \ + %{?_smp_mflags} \ + all ../nsswitch/libnss_wins.so modules test_pam_modules test_nss_modules test_shlibs -make LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}/source/bin \ - CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -DLDAP_DEPRECATED" %{?_smp_mflags} \ +make LD_LIBRARY_PATH=$RPM_BUILD_DIR/%{name}-%{samba_version}%{pre_release}/%samba_source/bin \ + %{?_smp_mflags} \ -C lib/netapi/examples -make CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" \ - debug2html smbfilter bin/cifs.upcall +make debug2html smbfilter bin/cifs.upcall %install @@ -344,7 +348,7 @@ mkdir -p $RPM_BUILD_ROOT/var/run/winbind mkdir -p $RPM_BUILD_ROOT/%{_libdir}/samba mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig -cd source +cd %samba_source %makeinstall \ BINDIR=$RPM_BUILD_ROOT%{_bindir} \ @@ -368,7 +372,7 @@ cd .. # Install other stuff install -m644 packaging/Fedora/smb.conf.default $RPM_BUILD_ROOT%{_sysconfdir}/samba/smb.conf -install -m755 source/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir} +install -m755 %samba_source/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir} install -m644 packaging/Fedora/smbusers $RPM_BUILD_ROOT%{_sysconfdir}/samba/smbusers install -m755 packaging/Fedora/smbprint $RPM_BUILD_ROOT%{_bindir} install -m755 packaging/Fedora/smb.init $RPM_BUILD_ROOT%{_initrddir}/smb @@ -384,39 +388,39 @@ install -m644 examples/LDAP/samba.schema # winbind mkdir -p $RPM_BUILD_ROOT%{_libdir} -install -m 755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/%{_lib}/libnss_winbind.so.2 +install -m 755 nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/%{_lib}/libnss_winbind.so.2 ln -sf /%{_lib}/libnss_winbind.so.2 $RPM_BUILD_ROOT%{_libdir}/libnss_winbind.so -install -m 755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/%{_lib}/libnss_wins.so.2 +install -m 755 nsswitch/libnss_wins.so $RPM_BUILD_ROOT/%{_lib}/libnss_wins.so.2 ln -sf /%{_lib}/libnss_wins.so.2 $RPM_BUILD_ROOT%{_libdir}/libnss_wins.so # libraries { mkdir -p $RPM_BUILD_ROOT%{_libdir} $RPM_BUILD_ROOT%{_includedir} +build_libdir="$RPM_BUILD_ROOT%{_libdir}" %if %enable_talloc # talloc -cd source/lib/talloc +cd lib/talloc # just to get the correct .pc file generated ./autogen.sh && ./configure --prefix=%{_prefix} --libdir=%{_libdir} -cd ../../.. -install -m 644 source/lib/talloc/talloc.pc $build_libdir/pkgconfig/ +cd ../.. +install -m 644 lib/talloc/talloc.pc $build_libdir/pkgconfig/ %endif %if %enable_tdb # tdb -cd source/lib/tdb +cd lib/tdb # just to get the correct .pc file generated ./autogen.sh && ./configure --prefix=%{_prefix} --libdir=%{_libdir} -cd ../../.. -install -m 644 source/lib/tdb/tdb.pc $build_libdir/pkgconfig/ +cd ../.. +install -m 644 lib/tdb/tdb.pc $build_libdir/pkgconfig/ %endif # make install puts libraries in the wrong place # (but at least gets the versioning right now) list="smbclient smbsharemodes netapi talloc tdb wbclient" -build_libdir="$RPM_BUILD_ROOT%{_libdir}" for i in $list; do - install -m 644 source/pkgconfig/$i.pc $build_libdir/pkgconfig/ || true + install -m 644 %samba_source/pkgconfig/$i.pc $build_libdir/pkgconfig/ || true done @@ -432,11 +436,11 @@ install -m644 %{SOURCE4} $RPM_BUILD_ROOT install -m755 $RPM_BUILD_ROOT/usr/sbin/mount.cifs $RPM_BUILD_ROOT/sbin/mount.cifs install -m755 $RPM_BUILD_ROOT/usr/sbin/umount.cifs $RPM_BUILD_ROOT/sbin/umount.cifs -install -m 755 source/lib/netapi/examples/bin/netdomjoin-gui $RPM_BUILD_ROOT/%{_sbindir}/netdomjoin-gui +install -m 755 %samba_source/lib/netapi/examples/bin/netdomjoin-gui $RPM_BUILD_ROOT/%{_sbindir}/netdomjoin-gui mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name} -install -m 644 source/lib/netapi/examples/netdomjoin-gui/samba.ico $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/samba.ico -install -m 644 source/lib/netapi/examples/netdomjoin-gui/logo.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo.png -install -m 644 source/lib/netapi/examples/netdomjoin-gui/logo-small.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo-small.png +install -m 644 %samba_source/lib/netapi/examples/netdomjoin-gui/samba.ico $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/samba.ico +install -m 644 %samba_source/lib/netapi/examples/netdomjoin-gui/logo.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo.png +install -m 644 %samba_source/lib/netapi/examples/netdomjoin-gui/logo-small.png $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}/logo-small.png rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/editreg.1* rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1* @@ -816,8 +820,8 @@ exit 0 %{_initrddir}/winbind %{_mandir}/man1/ntlm_auth.1* %{_mandir}/man1/wbinfo.1* -%{_mandir}/man7/winbind_krb5_locator.7* %{_mandir}/man8/pam_winbind.8* +%{_mandir}/man7/winbind_krb5_locator.7* %{_mandir}/man8/winbindd.8* %{_mandir}/man8/idmap_*.8* %{_datadir}/locale/*/LC_MESSAGES/pam_winbind.mo @@ -881,6 +885,10 @@ exit 0 %{_datadir}/pixmaps/samba/logo-small.png %changelog +* Wed Jul 15 2009 Guenther Deschner - 3.4.0-0.39 +- Update to 3.4.0 +- resolves: #510558 + * Fri Jun 19 2009 Guenther Deschner - 3.3.5-0.38 - Fix password expiry calculation in pam_winbind Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/sources,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- sources 16 Jun 2009 12:38:31 -0000 1.66 +++ sources 15 Jul 2009 10:21:15 -0000 1.67 @@ -1 +1 @@ -8fa0e3c5daaba4c2ce2fb871a5f3157a samba-3.3.5.tar.gz +a7137736379daf9855814ae14c2c5e22 samba-3.4.0.tar.gz --- samba-3.3.5-pam_winbind.diff DELETED --- From heffer at fedoraproject.org Wed Jul 15 10:24:24 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Wed, 15 Jul 2009 10:24:24 +0000 (UTC) Subject: rpms/dansguardian/F-10 dansguardian-clamav095.patch, NONE, 1.1 dansguardian-copyright-notice.patch, NONE, 1.1 dansguardian-gcc44.patch, NONE, 1.1 dansguardian.httpd, NONE, 1.1 dansguardian.init, NONE, 1.1 dansguardian.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715102424.8959D11C00DF@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/dansguardian/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22057 Modified Files: .cvsignore sources Added Files: dansguardian-clamav095.patch dansguardian-copyright-notice.patch dansguardian-gcc44.patch dansguardian.httpd dansguardian.init dansguardian.spec Log Message: * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - new upstream version dansguardian-clamav095.patch: --- NEW FILE dansguardian-clamav095.patch --- # patch by Imre Gergely diff -ruN dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp dansguardian-2.10.0.3/src/contentscanners/clamav.cpp --- dansguardian-2.10.0.3.orig/src/contentscanners/clamav.cpp 2009-05-09 22:25:45.552238568 +0200 +++ dansguardian-2.10.0.3/src/contentscanners/clamav.cpp 2009-05-09 22:44:06.398108444 +0200 @@ -69,9 +69,11 @@ // virus database root node // Update to support ClamAV 0.90 // Based on patch supplied by Aecio F. Neto - struct cl_engine *root; + struct cl_engine *engine; +#ifndef CL_INIT_DEFAULT // archive limit options struct cl_limits limits; +#endif #ifdef HAVE_CLAMAV_SHM // use POSIX shared memory @@ -100,7 +102,11 @@ // destroy plugin int clamavinstance::quit() { - cl_free(root); +#ifdef CL_INIT_DEFAULT + cl_engine_free(engine); +#else + cl_free(engine); +#endif return DGCS_OK; } @@ -164,7 +170,11 @@ return DGCS_SCANERROR; } - rc = cl_scandesc(fd, &vn, NULL, root, &limits, CL_SCAN_STDOPT); +#ifdef CL_INIT_DEFAULT + rc = cl_scandesc(fd, &vn, NULL, engine, CL_SCAN_STDOPT); +#else + rc = cl_scandesc(fd, &vn, NULL, engine, &limits, CL_SCAN_STDOPT); +#endif close(fd); #ifdef HAVE_CLAMAV_SHM @@ -189,7 +199,11 @@ { lastmessage = lastvirusname = ""; const char *vn = NULL; - int rc = cl_scanfile(filename, &vn, NULL, root, &limits, CL_SCAN_STDOPT ); +#ifdef CL_INIT_DEFAULT + int rc = cl_scanfile(filename, &vn, NULL, engine, CL_SCAN_STDOPT ); +#else + int rc = cl_scanfile(filename, &vn, NULL, engine, &limits, CL_SCAN_STDOPT ); +#endif return doRC(rc, vn); } @@ -220,6 +234,7 @@ // initialise libclamav int clamavinstance::init(void* args) { + int rc; // always include these lists if (!readStandardLists()) { return DGCS_ERROR; @@ -244,18 +259,41 @@ return DGCS_ERROR; } - // set clam's own temp dir - if (cv["tempdir"].length() > 0) - cl_settempdir(cv["tempdir"].toCharArray(), 0); - #ifdef DGDEBUG std::cout << "Scanbuffmethod: " << smethod << std::endl; std::cout << "Scanbuffdir: " << memdir << std::endl; std::cout << "Tempdir: " << cv["tempdir"] << std::endl; #endif +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_init(CL_INIT_DEFAULT)) != CL_SUCCESS ) { + return DGCS_ERROR; + } + if ( !(engine = cl_engine_new()) ) { + return DGCS_ERROR; + } + + // set file, recursion and compression ratio limits for scanning archives + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILES, (long long)cv["maxfiles"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_FILESIZE, (long long)o.max_content_filecache_scan_size + 1024 * 1024)) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_RECURSION, (long long)cv["maxreclevel"].toInteger())) ) { + return DGCS_ERROR; + } + if ( (rc = cl_engine_set_num(engine, CL_ENGINE_MAX_SCANSIZE, (long long)cv["maxscansize"].toInteger() * 1024)) ) { + return DGCS_ERROR; + } +// FIXME: need debug output code here + if (cv["tempdir"].length() > 0) + if ( (rc = cl_engine_set_str(engine, CL_ENGINE_TMPDIR, cv["tempdir"].toCharArray())) ) { + return DGCS_ERROR; + } +#else // set file, recursion and compression ratio limits for scanning archives - root = NULL; + engine = NULL; limits.maxfiles = cv["maxfiles"].toInteger(); limits.maxfilesize = o.max_content_filecache_scan_size + 1024 * 1024; limits.maxreclevel = cv["maxreclevel"].toInteger(); @@ -264,12 +302,35 @@ std::cerr << "maxfiles: " << limits.maxfiles << " maxfilesize: " << limits.maxfilesize << " maxreclevel: " << limits.maxreclevel << " maxscansize: " << limits.maxscansize << std::endl; #endif + if (cv["tempdir"].length() > 0) + cl_settempdir(cv["tempdir"].toCharArray(), 0); + +#endif // load virus database - unsigned int virnum = 0; - int rc = cl_load(cl_retdbdir(), &root, &virnum, CL_DB_STDOPT); + unsigned int sigs = 0; +#ifdef CL_INIT_DEFAULT + if ( (rc = cl_load(cl_retdbdir(), engine, &sigs, 0)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error loading clamav db: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); + return DGCS_ERROR; + } +#ifdef DGDEBUG + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; +#endif + if ( (rc = cl_engine_compile(engine)) != CL_SUCCESS ) { + if (!is_daemonised) + std::cerr << "Error preparing clamav engine: " << cl_strerror(rc) << std::endl; + syslog(LOG_ERR, "Error preparing clamav engine: %s", cl_strerror(rc)); + return DGCS_ERROR; + } + return DGCS_OK; + +#else + rc = cl_load(cl_retdbdir(), &engine, &sigs, CL_DB_STDOPT); #ifdef DGDEBUG - std::cout << "engine: " << root << " virnum: " << virnum << std::endl; + std::cout << "engine: " << engine << " sigs: " << sigs << std::endl; #endif if (rc != 0) { if (!is_daemonised) @@ -277,7 +338,7 @@ syslog(LOG_ERR, "Error loading clamav db: %s", cl_strerror(rc)); return DGCS_ERROR; } - rc = cl_build(root); + rc = cl_build(engine); if (rc != 0) { if (!is_daemonised) std::cerr << "Error building clamav db: " << cl_strerror(rc) << std::endl; @@ -285,4 +346,5 @@ return DGCS_ERROR; } return DGCS_OK; +#endif } dansguardian-copyright-notice.patch: --- NEW FILE dansguardian-copyright-notice.patch --- As requested by RH legal: https://bugzilla.redhat.com/show_bug.cgi?id=458643#c8 diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.cpp dansguardian-2.9.9.5/src/Auth.cpp --- dansguardian-2.9.9.5.orig/src/Auth.cpp 2007-11-26 06:59:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/Auth.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Auth.hpp dansguardian-2.9.9.5/src/Auth.hpp --- dansguardian-2.9.9.5.orig/src/Auth.hpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/Auth.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,8 +1,7 @@ // AuthPlugin class - interface for plugins for retrieving client usernames // and filter group membership -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.cpp dansguardian-2.9.9.5/src/BaseSocket.cpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.cpp 2007-11-20 08:26:31.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.cpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,7 +1,6 @@ // Base socket class - inherit this to implement UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/BaseSocket.hpp dansguardian-2.9.9.5/src/BaseSocket.hpp --- dansguardian-2.9.9.5.orig/src/BaseSocket.hpp 2007-11-20 08:26:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/BaseSocket.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // BaseSocket class - inherit & implement to make UNIX/INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.cpp dansguardian-2.9.9.5/src/ConfigVar.cpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConfigVar.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,7 +1,6 @@ //Implements the ConfigVar class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConfigVar.hpp dansguardian-2.9.9.5/src/ConfigVar.hpp --- dansguardian-2.9.9.5.orig/src/ConfigVar.hpp 2008-03-06 05:25:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/ConfigVar.hpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,8 +1,7 @@ //Defines the ConfigVar class, which implements reading options from a file //into a map -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp dansguardian-2.9.9.5/src/ConnectionHandler.cpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.cpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.cpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp dansguardian-2.9.9.5/src/ConnectionHandler.hpp --- dansguardian-2.9.9.5.orig/src/ConnectionHandler.hpp 2008-05-22 05:21:11.000000000 -0400 +++ dansguardian-2.9.9.5/src/ConnectionHandler.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.cpp dansguardian-2.9.9.5/src/ContentScanner.cpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.cpp 2007-07-12 05:05:24.000000000 -0400 +++ dansguardian-2.9.9.5/src/ContentScanner.cpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // Implements CSPlugin class and cs_plugin_loader base class -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/ContentScanner.hpp dansguardian-2.9.9.5/src/ContentScanner.hpp --- dansguardian-2.9.9.5.orig/src/ContentScanner.hpp 2007-01-09 05:12:30.000000000 -0500 +++ dansguardian-2.9.9.5/src/ContentScanner.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // Defines the class interface to be implemented by ContentScanner plugins -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.cpp dansguardian-2.9.9.5/src/DataBuffer.cpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.cpp 2008-05-22 05:08:26.000000000 -0400 +++ dansguardian-2.9.9.5/src/DataBuffer.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DataBuffer.hpp dansguardian-2.9.9.5/src/DataBuffer.hpp --- dansguardian-2.9.9.5.orig/src/DataBuffer.hpp 2007-12-11 09:22:59.000000000 -0500 +++ dansguardian-2.9.9.5/src/DataBuffer.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.cpp dansguardian-2.9.9.5/src/DownloadManager.cpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.cpp 2007-01-08 07:56:47.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,7 +1,6 @@ // Implements dm_plugin_load and base DMPlugin methods -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DownloadManager.hpp dansguardian-2.9.9.5/src/DownloadManager.hpp --- dansguardian-2.9.9.5.orig/src/DownloadManager.hpp 2005-11-07 10:15:21.000000000 -0500 +++ dansguardian-2.9.9.5/src/DownloadManager.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ //Defines the DMPlugin base class, and dm_plugin_loader function -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp dansguardian-2.9.9.5/src/DynamicIPList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.cpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.cpp 2008-12-21 06:47:01.057671214 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp dansguardian-2.9.9.5/src/DynamicIPList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicIPList.hpp 2006-01-23 09:08:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicIPList.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,8 +1,7 @@ // DynamicIPList - maintains a sorted list of IP addresses, for checking & // limiting the number of concurrent proxy users. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp dansguardian-2.9.9.5/src/DynamicURLList.cpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.cpp 2007-09-10 09:23:49.000000000 -0400 +++ dansguardian-2.9.9.5/src/DynamicURLList.cpp 2008-12-21 06:47:01.033671116 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp dansguardian-2.9.9.5/src/DynamicURLList.hpp --- dansguardian-2.9.9.5.orig/src/DynamicURLList.hpp 2006-01-17 11:09:01.000000000 -0500 +++ dansguardian-2.9.9.5/src/DynamicURLList.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.cpp dansguardian-2.9.9.5/src/FDFuncs.cpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.cpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.cpp 2008-12-21 06:47:01.055671671 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDFuncs.hpp dansguardian-2.9.9.5/src/FDFuncs.hpp --- dansguardian-2.9.9.5.orig/src/FDFuncs.hpp 2005-10-13 05:22:08.000000000 -0400 +++ dansguardian-2.9.9.5/src/FDFuncs.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -2,8 +2,7 @@ // and (in future) creating files // Please use *only* for files, not sockets! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.cpp dansguardian-2.9.9.5/src/FDTunnel.cpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.cpp 2007-12-11 11:24:48.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FDTunnel.hpp dansguardian-2.9.9.5/src/FDTunnel.hpp --- dansguardian-2.9.9.5.orig/src/FDTunnel.hpp 2007-12-11 10:21:40.000000000 -0500 +++ dansguardian-2.9.9.5/src/FDTunnel.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -2,8 +2,7 @@ // that uses blocking select() to be as efficient as possible. It tunnels // between the two supplied FDs. -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp dansguardian-2.9.9.5/src/FOptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.cpp 2008-05-22 05:27:41.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.cpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp dansguardian-2.9.9.5/src/FOptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/FOptionContainer.hpp 2008-05-22 05:27:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/FOptionContainer.hpp 2008-12-21 06:47:01.047672035 -0500 @@ -1,8 +1,7 @@ // FOptionContainer class - contains the options for a filter group, // including the banned/grey/exception site lists and the content/site/url regexp lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.cpp dansguardian-2.9.9.5/src/FatController.cpp --- dansguardian-2.9.9.5.orig/src/FatController.cpp 2008-05-22 05:23:54.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.cpp 2008-12-21 06:47:01.053671291 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/FatController.hpp dansguardian-2.9.9.5/src/FatController.hpp --- dansguardian-2.9.9.5.orig/src/FatController.hpp 2005-10-12 07:43:16.000000000 -0400 +++ dansguardian-2.9.9.5/src/FatController.hpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp dansguardian-2.9.9.5/src/HTMLTemplate.cpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.cpp 2006-05-26 04:53:55.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTMLTemplate.cpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ //Implements the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp dansguardian-2.9.9.5/src/HTMLTemplate.hpp --- dansguardian-2.9.9.5.orig/src/HTMLTemplate.hpp 2006-01-18 12:37:39.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTMLTemplate.hpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,7 +1,6 @@ //Declares the HTMLTemplate class, for displaying template-based banned pages to clients -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp dansguardian-2.9.9.5/src/HTTPHeader.cpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.cpp 2008-04-01 06:36:21.000000000 -0400 +++ dansguardian-2.9.9.5/src/HTTPHeader.cpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp dansguardian-2.9.9.5/src/HTTPHeader.hpp --- dansguardian-2.9.9.5.orig/src/HTTPHeader.hpp 2007-12-11 10:20:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/HTTPHeader.hpp 2008-12-21 06:47:01.042671048 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/IPList.hpp dansguardian-2.9.9.5/src/IPList.hpp --- dansguardian-2.9.9.5.orig/src/IPList.hpp 2008-06-05 09:11:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/IPList.hpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.cpp dansguardian-2.9.9.5/src/ImageContainer.cpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.cpp 2006-04-05 12:22:07.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com) but heavily based on code //written by Aecio F. Neto (afn at harvest.com.br). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ImageContainer.hpp dansguardian-2.9.9.5/src/ImageContainer.hpp --- dansguardian-2.9.9.5.orig/src/ImageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/ImageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,7 +1,6 @@ // ImageContainer - container class for custom banned image -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp dansguardian-2.9.9.5/src/LanguageContainer.cpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.cpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp dansguardian-2.9.9.5/src/LanguageContainer.hpp --- dansguardian-2.9.9.5.orig/src/LanguageContainer.hpp 2005-10-12 08:21:33.000000000 -0400 +++ dansguardian-2.9.9.5/src/LanguageContainer.hpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.cpp dansguardian-2.9.9.5/src/ListContainer.cpp --- dansguardian-2.9.9.5.orig/src/ListContainer.cpp 2008-04-25 10:16:47.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.cpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // ListContainer - class for both item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListContainer.hpp dansguardian-2.9.9.5/src/ListContainer.hpp --- dansguardian-2.9.9.5.orig/src/ListContainer.hpp 2008-05-22 05:04:56.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListContainer.hpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ListContainer class - for item and phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.cpp dansguardian-2.9.9.5/src/ListManager.cpp --- dansguardian-2.9.9.5.orig/src/ListManager.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/ListManager.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // ListManager - contains the ListContainers for all item and phrase lists, and can create new ones -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/ jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/ListManager.hpp dansguardian-2.9.9.5/src/ListManager.hpp --- dansguardian-2.9.9.5.orig/src/ListManager.hpp 2005-11-17 07:43:45.000000000 -0500 +++ dansguardian-2.9.9.5/src/ListManager.hpp 2008-12-21 06:47:01.054671865 -0500 @@ -1,7 +1,6 @@ // ListManager - for creating & containing all ListContainers of item & phrase lists -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@/jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp dansguardian-2.9.9.5/src/NaughtyFilter.cpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.cpp 2008-05-22 05:06:22.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.cpp 2008-12-21 06:47:01.050671104 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp dansguardian-2.9.9.5/src/NaughtyFilter.hpp --- dansguardian-2.9.9.5.orig/src/NaughtyFilter.hpp 2008-05-22 05:06:30.000000000 -0400 +++ dansguardian-2.9.9.5/src/NaughtyFilter.hpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.cpp dansguardian-2.9.9.5/src/OptionContainer.cpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.cpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.cpp 2008-12-21 06:47:01.043671273 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/OptionContainer.hpp dansguardian-2.9.9.5/src/OptionContainer.hpp --- dansguardian-2.9.9.5.orig/src/OptionContainer.hpp 2008-05-22 05:26:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/OptionContainer.hpp 2008-12-21 06:47:01.058671160 -0500 @@ -1,6 +1,5 @@ -//Please refer to http://dansguardian.org/?page=copyright2 +//Copyright (C) Daniel Barron. // -//for the license for this code. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Plugin.hpp dansguardian-2.9.9.5/src/Plugin.hpp --- dansguardian-2.9.9.5.orig/src/Plugin.hpp 2005-11-03 06:44:13.000000000 -0500 +++ dansguardian-2.9.9.5/src/Plugin.hpp 2008-12-21 06:47:01.044671289 -0500 @@ -1,7 +1,6 @@ // the Plugin interface - inherit this to define new plugin types -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.cpp dansguardian-2.9.9.5/src/RegExp.cpp --- dansguardian-2.9.9.5.orig/src/RegExp.cpp 2008-03-06 05:25:56.000000000 -0500 +++ dansguardian-2.9.9.5/src/RegExp.cpp 2008-12-21 06:47:01.026671286 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/RegExp.hpp dansguardian-2.9.9.5/src/RegExp.hpp --- dansguardian-2.9.9.5.orig/src/RegExp.hpp 2005-10-24 07:37:15.000000000 -0400 +++ dansguardian-2.9.9.5/src/RegExp.hpp 2008-12-21 06:47:01.032670961 -0500 @@ -1,7 +1,6 @@ // RegExp class - search text using regular expressions -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@// jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.cpp dansguardian-2.9.9.5/src/Socket.cpp --- dansguardian-2.9.9.5.orig/src/Socket.cpp 2007-11-20 09:20:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.cpp 2008-12-21 06:47:01.039671280 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/Socket.hpp dansguardian-2.9.9.5/src/Socket.hpp --- dansguardian-2.9.9.5.orig/src/Socket.hpp 2007-11-20 09:19:51.000000000 -0500 +++ dansguardian-2.9.9.5/src/Socket.hpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // Socket class - implements BaseSocket for INET domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.cpp dansguardian-2.9.9.5/src/SocketArray.cpp --- dansguardian-2.9.9.5.orig/src/SocketArray.cpp 2006-04-11 05:44:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/SocketArray.cpp 2008-12-21 06:47:01.027671791 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/SocketArray.hpp dansguardian-2.9.9.5/src/SocketArray.hpp --- dansguardian-2.9.9.5.orig/src/SocketArray.hpp 2006-01-17 10:24:54.000000000 -0500 +++ dansguardian-2.9.9.5/src/SocketArray.hpp 2008-12-21 06:47:01.038671195 -0500 @@ -1,7 +1,6 @@ // SocketArray - wrapper for clean handling of an array of Sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/String.cpp dansguardian-2.9.9.5/src/String.cpp --- dansguardian-2.9.9.5.orig/src/String.cpp 2008-03-06 05:25:22.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,7 +1,6 @@ // String - guess what: it's a string class! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel at jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/String.hpp dansguardian-2.9.9.5/src/String.hpp --- dansguardian-2.9.9.5.orig/src/String.hpp 2007-12-13 12:14:24.000000000 -0500 +++ dansguardian-2.9.9.5/src/String.hpp 2008-12-21 06:47:01.046670971 -0500 @@ -1,8 +1,7 @@ // String - guess what: it's a string class! Cut down version of Java string // class interface -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ jadeb//.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.cpp dansguardian-2.9.9.5/src/SysV.cpp --- dansguardian-2.9.9.5.orig/src/SysV.cpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.cpp 2008-12-21 06:47:01.028671317 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@ //jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/SysV.hpp dansguardian-2.9.9.5/src/SysV.hpp --- dansguardian-2.9.9.5.orig/src/SysV.hpp 2005-10-12 08:15:57.000000000 -0400 +++ dansguardian-2.9.9.5/src/SysV.hpp 2008-12-21 06:47:01.029671263 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@?? jadeb.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.cpp dansguardian-2.9.9.5/src/UDSocket.cpp --- dansguardian-2.9.9.5.orig/src/UDSocket.cpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.cpp 2008-12-21 06:47:01.051670980 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/UDSocket.hpp dansguardian-2.9.9.5/src/UDSocket.hpp --- dansguardian-2.9.9.5.orig/src/UDSocket.hpp 2005-10-25 10:03:32.000000000 -0400 +++ dansguardian-2.9.9.5/src/UDSocket.hpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,7 +1,6 @@ // UDSocket class - implements BaseSocket for UNIX domain sockets -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp dansguardian-2.9.9.5/src/authplugins/digest.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/digest.cpp 2007-11-26 06:57:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/digest.cpp 2008-12-21 06:47:01.034671761 -0500 @@ -1,8 +1,7 @@ // Digest auth plugin // Based on contribution by Darryl Sutherland -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp dansguardian-2.9.9.5/src/authplugins/ident.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ident.cpp 2007-03-27 07:36:25.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ident.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Ident server auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp dansguardian-2.9.9.5/src/authplugins/ip.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ip.cpp 2008-05-22 10:49:14.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/ip.cpp 2008-12-21 06:47:01.036671443 -0500 @@ -1,7 +1,6 @@ // IP (range, subnet) auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp dansguardian-2.9.9.5/src/authplugins/ntlm.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/ntlm.cpp 2007-12-11 10:19:10.000000000 -0500 +++ dansguardian-2.9.9.5/src/authplugins/ntlm.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // NTLM auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp dansguardian-2.9.9.5/src/authplugins/proxy.cpp --- dansguardian-2.9.9.5.orig/src/authplugins/proxy.cpp 2007-03-19 13:26:06.000000000 -0400 +++ dansguardian-2.9.9.5/src/authplugins/proxy.cpp 2008-12-21 06:47:01.035671078 -0500 @@ -1,7 +1,6 @@ // Proxy auth plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp dansguardian-2.9.9.5/src/contentscanners/clamav.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamav.cpp 2008-04-25 11:21:34.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamav.cpp 2008-12-21 06:47:01.023671379 -0500 @@ -1,7 +1,6 @@ // LibClamAV content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/clamdscan.cpp 2007-10-23 08:04:28.000000000 -0400 +++ dansguardian-2.9.9.5/src/contentscanners/clamdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // ClamD content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/commandlinescan.cpp 2007-11-20 09:36:04.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/commandlinescan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Command line content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/icapscan.cpp 2007-11-20 09:13:55.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/icapscan.cpp 2008-12-21 06:47:01.025671270 -0500 @@ -1,7 +1,6 @@ // ICAP server content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp --- dansguardian-2.9.9.5.orig/src/contentscanners/kavdscan.cpp 2006-12-19 06:16:33.000000000 -0500 +++ dansguardian-2.9.9.5/src/contentscanners/kavdscan.cpp 2008-12-21 06:47:01.024672232 -0500 @@ -1,7 +1,6 @@ // Kaspersky AV Daemon content scanning plugin -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/dansguardian.cpp dansguardian-2.9.9.5/src/dansguardian.cpp --- dansguardian-2.9.9.5.orig/src/dansguardian.cpp 2007-09-10 09:23:50.000000000 -0400 +++ dansguardian-2.9.9.5/src/dansguardian.cpp 2008-12-21 06:47:01.048671072 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. //Written by Daniel Barron (daniel@//jadeb/.com). //For support go to http://groups.yahoo.com/group/dansguardian diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp dansguardian-2.9.9.5/src/downloadmanagers/default.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/default.cpp 2007-12-11 10:22:18.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/default.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,7 +1,6 @@ // Default download manager, used when no other plugin matches the user agent -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/fancy.cpp 2007-12-24 08:34:07.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/fancy.cpp 2008-12-21 06:47:01.030671349 -0500 @@ -1,5 +1,4 @@ -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff -Nrup dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp --- dansguardian-2.9.9.5.orig/src/downloadmanagers/trickle.cpp 2007-12-11 10:33:05.000000000 -0500 +++ dansguardian-2.9.9.5/src/downloadmanagers/trickle.cpp 2008-12-21 06:47:01.029671263 -0500 @@ -5,8 +5,7 @@ // working, malicious portion sent to the browser before scanning has // completed! -//Please refer to http://dansguardian.org/?page=copyright2 -//for the license for this code. +//Copyright (C) Daniel Barron. // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by dansguardian-gcc44.patch: --- NEW FILE dansguardian-gcc44.patch --- diff -ruN dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp dansguardian-2.10.1.1/src/ConnectionHandler.cpp --- dansguardian-2.10.1.1.orig/src/ConnectionHandler.cpp 2009-02-25 12:36:22.000000000 +0100 +++ dansguardian-2.10.1.1/src/ConnectionHandler.cpp 2009-07-15 12:02:09.801533048 +0200 @@ -45,6 +45,7 @@ #ifdef ENABLE_ORIG_IP #include +#include #include #endif diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp dansguardian-2.10.1.1/src/contentscanners/clamav.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/clamav.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/clamav.cpp 2009-07-15 11:59:12.316495912 +0200 @@ -26,6 +26,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/commandlinescan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/commandlinescan.cpp 2009-07-15 11:59:12.317495697 +0200 @@ -28,6 +28,7 @@ #include "../OptionContainer.hpp" #include "../RegExp.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp --- dansguardian-2.10.1.1.orig/src/contentscanners/icapscan.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/contentscanners/icapscan.cpp 2009-07-15 11:59:12.318495062 +0200 @@ -29,6 +29,7 @@ #include "../ContentScanner.hpp" #include "../OptionContainer.hpp" +#include #include #include #include diff -ruN dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp --- dansguardian-2.10.1.1.orig/src/downloadmanagers/fancy.cpp 2008-11-18 12:27:04.000000000 +0100 +++ dansguardian-2.10.1.1/src/downloadmanagers/fancy.cpp 2009-07-15 11:59:12.319495964 +0200 @@ -26,6 +26,7 @@ #include "../HTMLTemplate.hpp" #include "../ConnectionHandler.hpp" +#include #include #include #include --- NEW FILE dansguardian.httpd --- ScriptAlias /dansguardian /usr/share/dansguardian/dansguardian.pl order deny,allow deny from all allow from 127.0.0.1 --- NEW FILE dansguardian.init --- #!/bin/bash # # Init file for DansGuardian content filter. # # Written by Dag Wieers . # # chkconfig: - 92 8 # description: DansGuardian content filter. # # processname: dansguardian # config: /etc/dansguardian/dansguardian.conf # pidfile: /var/run/dansguardian source /etc/init.d/functions source /etc/sysconfig/network ### Check that networking is up. [ "${NETWORKING}" == "no" ] && exit 0 [ -x "/usr/sbin/dansguardian" ] || exit 1 [ -r "/etc/dansguardian/dansguardian.conf" ] || exit 1 RETVAL=0 prog="dansguardian" desc="Web Content Filter" start() { echo -n $"Starting $desc ($prog): " daemon $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dansguardian return $RETVAL } stop() { echo -n $"Shutting down $desc ($prog): " killproc $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/dansguardian return $RETVAL } restart() { stop start } reload() { echo -n $"Reloading $desc ($prog): " killproc $prog -HUP RETVAL=$? echo return $RETVAL } case "$1" in start) start ;; stop) stop ;; restart) restart ;; reload) reload ;; condrestart) [ -e /var/lock/subsys/dansguardian ] && restart RETVAL=$? ;; status) status $prog RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart|status}" RETVAL=1 esac exit $RETVAL --- NEW FILE dansguardian.spec --- Name: dansguardian Version: 2.10.1.1 Release: 1%{?dist} Summary: Content filtering web proxy Summary(de): Contentfilter-Proxy Group: System Environment/Daemons # upstream dual-licenses this with GPLv2+ and an own license # for us GPLv2+ applies as stated on http://dansguardian.org/?page=copyright2 # citation: # freely (no cost) downloadable from this site for general purpose unix # distributions like FreeBSD, Debian, Fedora, Ubuntu, etc License: GPLv2+ URL: http://www.dansguardian.org/ Source0: http://dansguardian.org/downloads/2/Stable/%{name}-%{version}.tar.gz Source1: dansguardian.init Source2: dansguardian.httpd # This patch removes the upstream restrictions on the GPLv2+ source Patch0: dansguardian-copyright-notice.patch # Fixes some compilation errors with gcc 4.4 Patch1: dansguardian-gcc44.patch # Adds support for ClamAV > 0.95 Patch2: dansguardian-clamav095.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clamav-devel pcre-devel zlib-devel BuildRequires: pkgconfig Requires(post): chkconfig Requires(preun): chkconfig Requires(preun): initscripts %description DansGuardian filters the content of pages based on many methods including phrase matching, PICS filtering and URL filtering. It does not purely filter based on a banned list of sites. It provides real-time virus scanning capabilities for content access. DansGuardian is designed to be completely flexible and allows you to tailor the filtering to your exact needs. It can be as draconian or as unobstructive as you want. The default settings are geared towards what a primary school might want but DansGuardian puts you in control of what you want to block. DansGuardian requires squid or another similar caching proxy server on your local network. %description(de) DansGuardian filtert den Content einer Webseite basierend auf verschiedenen Methoden wie beispielsweise Wortfilter, PICS filtering und URL filtering. Es handelt sich also um ein echtes Content filtering anstatt einfacher Blacklists. Au??erdem bietet DansGuardian die M??glichkeit einen Virenfilter einzubinden. DansGuardian wurde darauf ausgelegt so flexibel wie m??glich zu sein und erlaubt es die Filterregeln exakt auf die eigenen Bed??rfnisse anzupassen. Vorgegeben sind Einstellungen die dem Bedarf einer Grundschule entsprechen. DansGuardian ben??tigt squid oder einen ??hnlichen Caching-Proxy-Server im lokalen Netzwerk. %prep %setup -q %patch0 -p1 %patch1 -p1 %patch2 -p1 sed -i 's|@DGCONFDIR@/lists/|@DGDATADIR@/lists/|' configs/%{name}*.conf.in %build %configure --enable-orig-ip \ --enable-clamav \ --enable-clamd \ --enable-icap \ --enable-kavd \ --enable-commandline \ --enable-trickledm \ --enable-ntlm \ --enable-email make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -Dpm 644 $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts/%{name} \ $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name} # delete the other scripts since they are of no use for Fedora users rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/scripts chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/%{name}.pl # move the lists to the datadir, since they really are data mv $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/lists \ $RPM_BUILD_ROOT%{_datadir}/%{name} # install init script and httpd config install -Dpm 755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name} install -Dp -m0644 %{SOURCE2} \ $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/%{name}.conf # we'll install this later within %doc rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name} %clean rm -rf $RPM_BUILD_ROOT %post /sbin/chkconfig --add %{name} %preun if [ $1 = 0 ] ; then /sbin/service %{name} stop >/dev/null 2>&1 /sbin/chkconfig --del %{name} fi %postun if [ "$1" -ge "1" ] ; then /sbin/service %{name} condrestart >/dev/null 2>&1 || : fi %files %defattr(-,root,root,-) %doc COPYING INSTALL README UPGRADING %doc doc/AuthPlugins doc/ContentScanners doc/DownloadManagers doc/FAQ %doc doc/FAQ.html doc/Plugins %doc %{_mandir}/man?/* %{_sbindir}/%{name} %{_datadir}/%{name} %{_initrddir}/%{name} %dir %{_sysconfdir}/%{name} %config(noreplace) %{_sysconfdir}/%{name}/%{name}*.conf %dir %{_sysconfdir}/%{name}/authplugins %config(noreplace) %{_sysconfdir}/%{name}/authplugins/* %dir %{_sysconfdir}/%{name}/contentscanners %config(noreplace) %{_sysconfdir}/%{name}/contentscanners/* %dir %{_sysconfdir}/%{name}/downloadmanagers %config(noreplace) %{_sysconfdir}/%{name}/downloadmanagers/* %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %changelog * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - new upstream version * Fri May 29 2009 Felix Kaechele - 2.10.0.3-2 - added licensing information * Sat May 09 2009 Felix Kaechele - 2.10.0.3-1 - initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 20 Jun 2009 15:06:50 -0000 1.1 +++ .cvsignore 15 Jul 2009 10:24:23 -0000 1.2 @@ -0,0 +1 @@ +dansguardian-2.10.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 20 Jun 2009 15:06:50 -0000 1.1 +++ sources 15 Jul 2009 10:24:24 -0000 1.2 @@ -0,0 +1 @@ +0987a1c9bfbdf398118386f10279611a dansguardian-2.10.1.1.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 10:41:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:41:56 +0000 Subject: [pkgdb] audacious: atkac has requested watchbugzilla Message-ID: <20090715104156.7A63610F888@bastion2.fedora.phx.redhat.com> atkac has requested the watchbugzilla acl on audacious (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 10:41:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:41:59 +0000 Subject: [pkgdb] audacious: atkac has requested watchcommits Message-ID: <20090715104159.0F35B10F89C@bastion2.fedora.phx.redhat.com> atkac has requested the watchcommits acl on audacious (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 10:41:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:41:59 +0000 Subject: [pkgdb] audacious: atkac has requested commit Message-ID: <20090715104159.D03A210F8A5@bastion2.fedora.phx.redhat.com> atkac has requested the commit acl on audacious (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 10:42:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:42:00 +0000 Subject: [pkgdb] audacious: atkac has requested approveacls Message-ID: <20090715104200.9F04F10F8A9@bastion2.fedora.phx.redhat.com> atkac has requested the approveacls acl on audacious (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 10:45:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:45:36 +0000 Subject: [pkgdb] audacious-plugins: atkac has requested watchbugzilla Message-ID: <20090715104536.DA6EF10F888@bastion2.fedora.phx.redhat.com> atkac has requested the watchbugzilla acl on audacious-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 10:45:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:45:37 +0000 Subject: [pkgdb] audacious-plugins: atkac has requested commit Message-ID: <20090715104537.94A9F10F89C@bastion2.fedora.phx.redhat.com> atkac has requested the commit acl on audacious-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 10:45:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:45:38 +0000 Subject: [pkgdb] audacious-plugins: atkac has requested approveacls Message-ID: <20090715104538.479F210F8A5@bastion2.fedora.phx.redhat.com> atkac has requested the approveacls acl on audacious-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 10:45:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 10:45:40 +0000 Subject: [pkgdb] audacious-plugins: atkac has requested watchcommits Message-ID: <20090715104540.6DA9B10F8A9@bastion2.fedora.phx.redhat.com> atkac has requested the watchcommits acl on audacious-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From mbooth at fedoraproject.org Wed Jul 15 10:45:58 2009 From: mbooth at fedoraproject.org (mbooth) Date: Wed, 15 Jul 2009 10:45:58 +0000 (UTC) Subject: rpms/lpg/F-11 lpg.spec,1.1,1.2 Message-ID: <20090715104558.3128811C00DF@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/lpg/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27379/F-11 Modified Files: lpg.spec Log Message: - Add missing build dependency on ant-apache-regexp. - Remove empty sub-package that was accidentally left. Index: lpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpg/F-11/lpg.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lpg.spec 15 Jul 2009 09:35:47 -0000 1.1 +++ lpg.spec 15 Jul 2009 10:45:27 -0000 1.2 @@ -3,7 +3,7 @@ Name: lpg Version: %{_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: LALR Parser Generator Group: Development/Libraries # although the text of the licence isn't distributed with some of the source, @@ -50,7 +50,7 @@ BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils -BuildRequires: ant +BuildRequires: ant-apache-regexp Requires: java Requires: jpackage-utils @@ -75,15 +75,6 @@ Requires: jpackage-utils Compatibility Java runtime library for parsers generated with the LALR Parser Generator (LPG) 1.x. -%package manual -Summary: Manual for LPG -Group: Development/Libraries - -BuildArch: noarch - -%description manual -Programmer's manual for the LALR Parser Generator (LPG). - %prep %setup -q -T -c -n %{name}-%{version} @@ -156,6 +147,10 @@ rm -rf %{buildroot} %{_javadir}/%{name}javaruntime* %changelog +* Wed Jul 15 2009 Mat Booth 2.0.17-3 +- Add missing build dependency on ant-apache-regexp. +- Remove empty sub-package that was accidentally left. + * Sun Jul 05 2009 Mat Booth 2.0.17-2 - Add version constants so we get the correct version numbers on the java libraries. From mbooth at fedoraproject.org Wed Jul 15 10:45:58 2009 From: mbooth at fedoraproject.org (mbooth) Date: Wed, 15 Jul 2009 10:45:58 +0000 (UTC) Subject: rpms/lpg/devel lpg.spec,1.1,1.2 Message-ID: <20090715104558.564B911C00DF@cvs1.fedora.phx.redhat.com> Author: mbooth Update of /cvs/pkgs/rpms/lpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27379/devel Modified Files: lpg.spec Log Message: - Add missing build dependency on ant-apache-regexp. - Remove empty sub-package that was accidentally left. Index: lpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpg/devel/lpg.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lpg.spec 15 Jul 2009 09:38:37 -0000 1.1 +++ lpg.spec 15 Jul 2009 10:45:28 -0000 1.2 @@ -3,7 +3,7 @@ Name: lpg Version: %{_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: LALR Parser Generator Group: Development/Libraries # although the text of the licence isn't distributed with some of the source, @@ -50,7 +50,7 @@ BuildArch: noarch BuildRequires: java-devel BuildRequires: jpackage-utils -BuildRequires: ant +BuildRequires: ant-apache-regexp Requires: java Requires: jpackage-utils @@ -75,15 +75,6 @@ Requires: jpackage-utils Compatibility Java runtime library for parsers generated with the LALR Parser Generator (LPG) 1.x. -%package manual -Summary: Manual for LPG -Group: Development/Libraries - -BuildArch: noarch - -%description manual -Programmer's manual for the LALR Parser Generator (LPG). - %prep %setup -q -T -c -n %{name}-%{version} @@ -156,6 +147,10 @@ rm -rf %{buildroot} %{_javadir}/%{name}javaruntime* %changelog +* Wed Jul 15 2009 Mat Booth 2.0.17-3 +- Add missing build dependency on ant-apache-regexp. +- Remove empty sub-package that was accidentally left. + * Sun Jul 05 2009 Mat Booth 2.0.17-2 - Add version constants so we get the correct version numbers on the java libraries. From twaugh at fedoraproject.org Wed Jul 15 10:55:54 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 10:55:54 +0000 (UTC) Subject: rpms/cups/F-11 cups-str3253.patch,NONE,1.1 cups.spec,1.487,1.488 Message-ID: <20090715105554.E63D711C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29784 Modified Files: cups.spec Added Files: cups-str3253.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to prevent bad job control files crashing cupsd on start-up (STR #3253, bug #509741). cups-str3253.patch: --- NEW FILE cups-str3253.patch --- diff -up cups-1.4rc1/scheduler/job.c.str3253 cups-1.4rc1/scheduler/job.c --- cups-1.4rc1/scheduler/job.c.str3253 2009-07-15 11:19:37.613132688 +0100 +++ cups-1.4rc1/scheduler/job.c 2009-07-15 11:51:42.073132844 +0100 @@ -3443,11 +3443,8 @@ load_job_cache(const char *filename) /* { cupsArrayAdd(Jobs, job); - if (job->state_value <= IPP_JOB_STOPPED) - { - cupsArrayAdd(ActiveJobs, job); - cupsdLoadJob(job); - } + if (job->state_value <= IPP_JOB_STOPPED && cupsdLoadJob(job)) + cupsArrayAdd(ActiveJobs, job); job = NULL; } @@ -3699,18 +3696,19 @@ load_request_root(void) * Load the job... */ - cupsdLoadJob(job); - - /* - * Insert the job into the array, sorting by job priority and ID... - */ + if (cupsdLoadJob(job)) + { + /* + * Insert the job into the array, sorting by job priority and ID... + */ - cupsArrayAdd(Jobs, job); + cupsArrayAdd(Jobs, job); - if (job->state_value <= IPP_JOB_STOPPED) - cupsArrayAdd(ActiveJobs, job); - else - unload_job(job); + if (job->state_value <= IPP_JOB_STOPPED) + cupsArrayAdd(ActiveJobs, job); + else + unload_job(job); + } } cupsDirClose(dir); Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/F-11/cups.spec,v retrieving revision 1.487 retrieving revision 1.488 diff -u -p -r1.487 -r1.488 --- cups.spec 15 Jul 2009 10:16:14 -0000 1.487 +++ cups.spec 15 Jul 2009 10:55:54 -0000 1.488 @@ -55,7 +55,8 @@ Patch28: cups-str3258.patch Patch29: cups-str3259.patch Patch30: cups-uri-compat.patch Patch31: cups-str3254.patch -Patch32: cups-avahi.patch +Patch32: cups-str3253.patch +Patch33: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -208,7 +209,8 @@ module. %patch29 -p1 -b .str3259 %patch30 -p1 -b .uri-compat %patch31 -p1 -b .str3254 -#%patch32 -p1 -b .avahi +%patch32 -p1 -b .str3253 +#%patch33 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -502,6 +504,8 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Applied patch to prevent bad job control files crashing cupsd on + start-up (STR #3253, bug #509741). - Correctly handle CUPS-Get-PPDs requests for models with '+' in their names (STR #3254, bug #509586). - Accept incorrect device URIs in the (non-libusb) usb backend for From pkgdb at fedoraproject.org Wed Jul 15 11:08:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:08:56 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchcommits Message-ID: <20090715110856.64CF710F8A3@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on klavaro (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:03 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchbugzilla Message-ID: <20090715110903.6738610F8A8@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on klavaro (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:05 +0000 Subject: [pkgdb] klavaro: bochecha has requested commit Message-ID: <20090715110905.95C2710F8AD@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on klavaro (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:14 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchbugzilla Message-ID: <20090715110914.9133D10F88D@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on klavaro (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:19 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchcommits Message-ID: <20090715110919.D1EC810F89C@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on klavaro (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:23 +0000 Subject: [pkgdb] klavaro: bochecha has requested commit Message-ID: <20090715110923.DF0E810F8AA@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on klavaro (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:29 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchbugzilla Message-ID: <20090715110930.078CD10F8A9@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on klavaro (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:31 +0000 Subject: [pkgdb] klavaro: bochecha has requested watchcommits Message-ID: <20090715110931.E390110F8B1@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on klavaro (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:09:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:09:34 +0000 Subject: [pkgdb] klavaro: bochecha has requested commit Message-ID: <20090715110934.F25EE10F8AD@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on klavaro (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 11:11:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:11:00 +0000 Subject: [pkgdb] fig2ps ownership updated Message-ID: <20090715111100.DFDD210F8A9@bastion2.fedora.phx.redhat.com> Package fig2ps in Fedora devel is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fig2ps From pkgdb at fedoraproject.org Wed Jul 15 11:11:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:11:13 +0000 Subject: [pkgdb] fig2ps ownership updated Message-ID: <20090715111113.37FB810F888@bastion2.fedora.phx.redhat.com> Package fig2ps in Fedora 11 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fig2ps From pkgdb at fedoraproject.org Wed Jul 15 11:11:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:11:14 +0000 Subject: [pkgdb] fig2ps ownership updated Message-ID: <20090715111114.8E5C310F8A3@bastion2.fedora.phx.redhat.com> Package fig2ps in Fedora 10 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fig2ps From pkgdb at fedoraproject.org Wed Jul 15 11:11:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:11:15 +0000 Subject: [pkgdb] fig2ps ownership updated Message-ID: <20090715111116.06C5E10F8AA@bastion2.fedora.phx.redhat.com> Package fig2ps in Fedora 9 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fig2ps From berrange at fedoraproject.org Wed Jul 15 11:17:35 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 15 Jul 2009 11:17:35 +0000 (UTC) Subject: rpms/virt-viewer/F-11 virt-viewer-0.0.3-keyboard-grab.patch, 1.1, 1.2 virt-viewer.spec, 1.13, 1.14 Message-ID: <20090715111735.CD5A011C00DF@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/virt-viewer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2608 Modified Files: virt-viewer-0.0.3-keyboard-grab.patch virt-viewer.spec Log Message: Fix initialization of GValue & Alt-XX menu accel block (rhbz #499362) virt-viewer-0.0.3-keyboard-grab.patch: Index: virt-viewer-0.0.3-keyboard-grab.patch =================================================================== RCS file: /cvs/pkgs/rpms/virt-viewer/F-11/virt-viewer-0.0.3-keyboard-grab.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- virt-viewer-0.0.3-keyboard-grab.patch 7 May 2009 12:05:18 -0000 1.1 +++ virt-viewer-0.0.3-keyboard-grab.patch 15 Jul 2009 11:17:33 -0000 1.2 @@ -1,8 +1,6 @@ -Only in virt-viewer-0.0.3.orig/src: .#main.c -Only in virt-viewer-0.0.3.orig/src: #main.c# diff -rup virt-viewer-0.0.3.orig/src/main.c virt-viewer-0.0.3.new/src/main.c ---- virt-viewer-0.0.3.orig/src/main.c 2009-05-07 12:40:03.000000000 +0100 -+++ virt-viewer-0.0.3.new/src/main.c 2009-05-07 12:49:34.000000000 +0100 +--- virt-viewer-0.0.3.orig/src/main.c 2009-07-15 11:52:54.000000000 +0100 ++++ virt-viewer-0.0.3.new/src/main.c 2009-07-15 12:15:16.000000000 +0100 @@ -81,16 +81,21 @@ struct menuItem { guint menu; GtkWidget *label; @@ -30,7 +28,7 @@ diff -rup virt-viewer-0.0.3.orig/src/mai static void viewer_set_title(VncDisplay *vnc G_GNUC_UNUSED, GtkWidget *window, gboolean grabbed) { char title[1024]; -@@ -109,24 +114,89 @@ static void viewer_set_title(VncDisplay +@@ -109,24 +114,90 @@ static void viewer_set_title(VncDisplay static void viewer_grab(GtkWidget *vnc, GtkWidget *window) { @@ -42,10 +40,11 @@ diff -rup virt-viewer-0.0.3.orig/src/mai + viewer_set_title(VNC_DISPLAY(vnc), window, FALSE); +} + -+static void viewer_ignore_accel(GtkWidget *menu G_GNUC_UNUSED, -+ GtkWindow *window G_GNUC_UNUSED) ++static gboolean viewer_ignore_accel(GtkWidget *menu G_GNUC_UNUSED, ++ GtkWindow *window G_GNUC_UNUSED) +{ + /* ignore accelerator */ ++ return TRUE; +} + + @@ -127,7 +126,7 @@ diff -rup virt-viewer-0.0.3.orig/src/mai } static void viewer_shutdown(GtkWidget *src G_GNUC_UNUSED, void *dummy G_GNUC_UNUSED, GtkWidget *vnc) -@@ -528,11 +598,19 @@ static GtkWidget *viewer_build_window(Vn +@@ -528,11 +599,22 @@ static GtkWidget *viewer_build_window(Vn gtk_window_set_resizable(GTK_WINDOW(window), TRUE); if (with_menubar) { @@ -138,6 +137,9 @@ diff -rup virt-viewer-0.0.3.orig/src/mai gtk_container_add_with_properties(GTK_CONTAINER(layout), menubar, "expand", FALSE, NULL); gtk_container_add_with_properties(GTK_CONTAINER(layout), GTK_WIDGET(vnc), "expand", TRUE, NULL); + ++ memset(&accelSetting, 0, sizeof accelSetting); ++ g_value_init(&accelSetting, G_TYPE_STRING); ++ + accels = gtk_accel_groups_from_object(G_OBJECT(window)); + for ( ; accels ; accels = accels->next) { + accelList = g_slist_append(accelList, accels->data); @@ -147,7 +149,7 @@ diff -rup virt-viewer-0.0.3.orig/src/mai } else gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(vnc)); -@@ -541,6 +619,11 @@ static GtkWidget *viewer_build_window(Vn +@@ -541,6 +623,11 @@ static GtkWidget *viewer_build_window(Vn gtk_signal_connect(GTK_OBJECT(vnc), "vnc-pointer-ungrab", GTK_SIGNAL_FUNC(viewer_ungrab), window); Index: virt-viewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-viewer/F-11/virt-viewer.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- virt-viewer.spec 7 May 2009 12:05:18 -0000 1.13 +++ virt-viewer.spec 15 Jul 2009 11:17:34 -0000 1.14 @@ -6,7 +6,7 @@ Name: virt-viewer Version: 0.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Virtual Machine Viewer Group: Applications/System License: GPLv2+ @@ -21,7 +21,7 @@ BuildRequires: gtk2-devel BuildRequires: libvirt-devel >= 0.3.1-4.fc8 BuildRequires: libxml2-devel BuildRequires: gtk-vnc-devel >= 0.3.4 -# For /usr/bin/pod2man +# For /usr/bin/pod2man BuildRequires: perl %if %{_with_plugin} %if 0%{?fedora} > 8 @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Jul 15 2009 Daniel P. Berrange - 0.0.3-6.fc11 +- Fix initialization of GValue & Alt-XX menu accel block (rhbz #499362) + * Thu May 7 2009 Daniel P. Berrange - 0.0.3-5.fc11 - Fix auth against libvirt (rhbz #499594) - Fix confusion of VNC credentials (rhbz #499595) From pkgdb at fedoraproject.org Wed Jul 15 11:23:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:23:46 +0000 Subject: [pkgdb] mk-files ownership updated Message-ID: <20090715112346.4854710F88D@bastion2.fedora.phx.redhat.com> Package mk-files in Fedora devel is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mk-files From pkgdb at fedoraproject.org Wed Jul 15 11:23:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:23:52 +0000 Subject: [pkgdb] mk-files ownership updated Message-ID: <20090715112352.ADFF010F84C@bastion2.fedora.phx.redhat.com> Package mk-files in Fedora 11 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mk-files From pkgdb at fedoraproject.org Wed Jul 15 11:23:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:23:55 +0000 Subject: [pkgdb] mk-files ownership updated Message-ID: <20090715112355.637E510F89F@bastion2.fedora.phx.redhat.com> Package mk-files in Fedora 10 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mk-files From pkgdb at fedoraproject.org Wed Jul 15 11:23:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:23:55 +0000 Subject: [pkgdb] mk-files ownership updated Message-ID: <20090715112355.6E02010F8A5@bastion2.fedora.phx.redhat.com> Package mk-files in Fedora 9 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mk-files From grenier at fedoraproject.org Wed Jul 15 11:26:56 2009 From: grenier at fedoraproject.org (Christophe GRENIER) Date: Wed, 15 Jul 2009 11:26:56 +0000 (UTC) Subject: rpms/testdisk/devel testdisk.spec,1.27,1.28 Message-ID: <20090715112656.A3A2311C00DF@cvs1.fedora.phx.redhat.com> Author: grenier Update of /cvs/extras/rpms/testdisk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4530 Modified Files: testdisk.spec Log Message: Add "BuildRequires: libuuid-devel" Index: testdisk.spec =================================================================== RCS file: /cvs/extras/rpms/testdisk/devel/testdisk.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- testdisk.spec 6 May 2009 20:41:05 -0000 1.27 +++ testdisk.spec 15 Jul 2009 11:26:55 -0000 1.28 @@ -4,7 +4,7 @@ Summary(fr.UTF8): Outil pour v??rifier e Summary(ru_RU.UTF8): ?????????????????? ?????? ???????????????? ?? ???????????????????????????? ???????????????? ?????????? Name: testdisk Version: 6.11 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System Source0: http://www.cgsecurity.org/testdisk-%{version}.tar.bz2 @@ -20,6 +20,8 @@ BuildRequires: ntfsprogs-devel %endif BuildRequires: libewf-devel BuildRequires: zlib-devel +BuildRequires: openssl-devel +BuildRequires: libuuid-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -109,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc %changelog +* Wed Jul 15 2009 Christophe Grenier 6.11-4 +- Add "BuildRequires: libuuid-devel" + * Wed May 6 2009 Christophe Grenier 6.11-3 - Use upstream patch v2 From rjones at fedoraproject.org Wed Jul 15 11:31:11 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 11:31:11 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.41,1.42 Message-ID: <20090715113111.0A49011C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5643 Modified Files: libguestfs.spec Log Message: Fix runtime Requires so they use epoch correctly. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- libguestfs.spec 14 Jul 2009 15:31:20 -0000 1.41 +++ libguestfs.spec 15 Jul 2009 11:31:10 -0000 1.42 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.60 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -126,7 +126,7 @@ For Java bindings, see 'libguestfs-java- %package devel Summary: Development tools and libraries for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: pkgconfig @@ -139,7 +139,7 @@ for %{name}. Summary: Shell for accessing and modifying virtual machine disk images Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: /usr/bin/pod2text Requires: virt-inspector @@ -154,7 +154,7 @@ scripts. #Summary: Display OS version, kernel, drivers, etc in a virtual machine #Group: Development/Tools #License: GPLv2+ -#Requires: %{name} = %{version}-%{release} +#Requires: %{name} = %{epoch}:%{version}-%{release} #Requires: guestfish #Requires: perl-Sys-Virt # @@ -169,7 +169,7 @@ scripts. #Summary: Display free space on virtual filesystems #Group: Development/Tools #License: GPLv2+ -#Requires: %{name} = %{version}-%{release} +#Requires: %{name} = %{epoch}:%{version}-%{release} #Requires: perl-Sys-Virt # # @@ -186,7 +186,7 @@ scripts. %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name} @@ -199,7 +199,7 @@ programs which use %{name} you will also %package -n ocaml-%{name}-devel Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: ocaml-%{name} = %{version}-%{release} +Requires: ocaml-%{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name}-devel @@ -210,7 +210,7 @@ required to use the OCaml bindings for % %package -n perl-%{name} Summary: Perl bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -221,7 +221,7 @@ perl-%{name} contains Perl bindings for %package -n python-%{name} Summary: Python bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -233,7 +233,7 @@ python-%{name} contains Python bindings %package -n ruby-%{name} Summary: Ruby bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: ruby(abi) = 1.8 Provides: ruby(guestfs) = %{version} @@ -247,7 +247,7 @@ ruby-%{name} contains Ruby bindings for %package java Summary: Java bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: java >= 1.5.0 Requires: jpackage-utils @@ -261,8 +261,8 @@ you will also need %{name}-java-devel. %package java-devel Summary: Java development package for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} %description java-devel %{name}-java-devel contains the tools for developing Java software @@ -274,8 +274,8 @@ See also %{name}-javadoc. %package javadoc Summary: Java documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} Requires: jpackage-utils %description javadoc @@ -512,6 +512,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 +- Fix runtime Requires so they use epoch correctly. + * Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 - New upstream release 1.0.60. From rjones at fedoraproject.org Wed Jul 15 11:31:13 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 11:31:13 +0000 (UTC) Subject: rpms/libguestfs/F-11 libguestfs.spec,1.44,1.45 Message-ID: <20090715113113.BBBA411C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5664 Modified Files: libguestfs.spec Log Message: Fix runtime Requires so they use epoch correctly. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- libguestfs.spec 14 Jul 2009 15:31:22 -0000 1.44 +++ libguestfs.spec 15 Jul 2009 11:31:13 -0000 1.45 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.60 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -112,7 +112,7 @@ For Java bindings, see 'libguestfs-java- %package devel Summary: Development tools and libraries for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: pkgconfig @@ -125,7 +125,7 @@ for %{name}. Summary: Shell for accessing and modifying virtual machine disk images Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: /usr/bin/pod2text Requires: virt-inspector @@ -140,7 +140,7 @@ scripts. Summary: Display OS version, kernel, drivers, etc in a virtual machine Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: guestfish Requires: perl-Sys-Virt @@ -156,7 +156,7 @@ para-virtualized (PV), what applications Summary: Display free space on virtual filesystems Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl-Sys-Virt @@ -173,7 +173,7 @@ also works for Windows virtual machines. %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name} @@ -186,7 +186,7 @@ programs which use %{name} you will also %package -n ocaml-%{name}-devel Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: ocaml-%{name} = %{version}-%{release} +Requires: ocaml-%{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name}-devel @@ -197,7 +197,7 @@ required to use the OCaml bindings for % %package -n perl-%{name} Summary: Perl bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -208,7 +208,7 @@ perl-%{name} contains Perl bindings for %package -n python-%{name} Summary: Python bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -220,7 +220,7 @@ python-%{name} contains Python bindings %package -n ruby-%{name} Summary: Ruby bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: ruby(abi) = 1.8 Provides: ruby(guestfs) = %{version} @@ -234,7 +234,7 @@ ruby-%{name} contains Ruby bindings for %package java Summary: Java bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: java >= 1.5.0 Requires: jpackage-utils @@ -248,8 +248,8 @@ you will also need %{name}-java-devel. %package java-devel Summary: Java development package for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} %description java-devel %{name}-java-devel contains the tools for developing Java software @@ -261,8 +261,8 @@ See also %{name}-javadoc. %package javadoc Summary: Java documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} Requires: jpackage-utils %description javadoc @@ -527,6 +527,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 +- Fix runtime Requires so they use epoch correctly. + * Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 - New upstream release 1.0.60. From rjones at fedoraproject.org Wed Jul 15 11:31:44 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 11:31:44 +0000 (UTC) Subject: rpms/libguestfs/devel libguestfs.spec,1.74,1.75 Message-ID: <20090715113144.D43A011C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5679 Modified Files: libguestfs.spec Log Message: Fix runtime Requires so they use epoch correctly. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- libguestfs.spec 14 Jul 2009 15:31:18 -0000 1.74 +++ libguestfs.spec 15 Jul 2009 11:31:14 -0000 1.75 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.60 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -110,7 +110,7 @@ For Java bindings, see 'libguestfs-java- %package devel Summary: Development tools and libraries for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: pkgconfig @@ -123,7 +123,7 @@ for %{name}. Summary: Shell for accessing and modifying virtual machine disk images Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: /usr/bin/pod2text Requires: virt-inspector @@ -138,7 +138,7 @@ scripts. Summary: Display OS version, kernel, drivers, etc in a virtual machine Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: guestfish Requires: perl-Sys-Virt @@ -154,7 +154,7 @@ para-virtualized (PV), what applications Summary: Display free space on virtual filesystems Group: Development/Tools License: GPLv2+ -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl-Sys-Virt @@ -171,7 +171,7 @@ also works for Windows virtual machines. %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name} @@ -184,7 +184,7 @@ programs which use %{name} you will also %package -n ocaml-%{name}-devel Summary: OCaml bindings for %{name} Group: Development/Libraries -Requires: ocaml-%{name} = %{version}-%{release} +Requires: ocaml-%{name} = %{epoch}:%{version}-%{release} %description -n ocaml-%{name}-devel @@ -195,7 +195,7 @@ required to use the OCaml bindings for % %package -n perl-%{name} Summary: Perl bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -206,7 +206,7 @@ perl-%{name} contains Perl bindings for %package -n python-%{name} Summary: Python bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -218,7 +218,7 @@ python-%{name} contains Python bindings %package -n ruby-%{name} Summary: Ruby bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: ruby(abi) = 1.8 Provides: ruby(guestfs) = %{version} @@ -232,7 +232,7 @@ ruby-%{name} contains Ruby bindings for %package java Summary: Java bindings for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} Requires: java >= 1.5.0 Requires: jpackage-utils @@ -246,8 +246,8 @@ you will also need %{name}-java-devel. %package java-devel Summary: Java development package for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} %description java-devel %{name}-java-devel contains the tools for developing Java software @@ -259,8 +259,8 @@ See also %{name}-javadoc. %package javadoc Summary: Java documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: %{name}-java = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}-java = %{epoch}:%{version}-%{release} Requires: jpackage-utils %description javadoc @@ -525,6 +525,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 +- Fix runtime Requires so they use epoch correctly. + * Tue Jul 14 2009 Richard W.M. Jones - 1.0.60-1 - New upstream release 1.0.60. From bioinfornatics at fedoraproject.org Wed Jul 15 11:38:10 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 11:38:10 +0000 (UTC) Subject: rpms/valide/devel import.log, NONE, 1.1 valide.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715113810.476B711C00DF@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7932/devel Modified Files: .cvsignore sources Added Files: import.log valide.spec Log Message: --- NEW FILE import.log --- valide-0_5_1-0_11_20090713svn278_fc11:HEAD:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247657817 --- NEW FILE valide.spec --- %global alphatag 20090713 %global svn_revision svn278 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 # tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 Name: valide Version: 0.5.1 Release: 0.11.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools License: GPLv3+ URL: http://www.valaide.org Source0: %{name}-%{alphatag}%{svn_revision}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: vala-devel >= %{vala_version} BuildRequires: sqlite-devel, unique-devel, desktop-file-utils, gtksourceview2-devel, intltool Requires: vala-devel >= %{vala_version} Requires: hicolor-icon-theme %description Val(a)IDE is an Integrated Development Environment for the Vala programming language. %package devel Summary: Support for developing plugins for the Val(a)IDE Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. This package allows you to develop plugins that add new functionality to Val(a)IDE. %prep %setup -q -n %{name}-%{alphatag}%{svn_revision} %build CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" ./waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} ./waf -v %{?_smp_mflags} %install rm -rf %{buildroot} ./waf -v install --destdir=%{buildroot} desktop-file-install --vendor="" \ --mode 0644 \ --dir=%{buildroot}%{_datadir}/applications/ \ %{buildroot}%{_datadir}/applications/%{name}.desktop find %{buildroot}%{_libdir} -name *.so -exec chmod 755 {} \; %find_lang %{name} %clean rm -rf %{buildroot} %post # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %posttrans # update icon themes gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %postun # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING ChangeLog NEWS TODO AUTHORS %{_bindir}/ctags-vala %{_bindir}/valide %{_libdir}/libvalide-*.so.* %{_libdir}/valide/ %{_datadir}/pixmaps/valide/ %{_datadir}/vala/vapi/* %{_datadir}/valide/ %{_datadir}/applications/valide.desktop %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-vide.png %{_datadir}/mime/packages/x-vide.xml %files devel %defattr(-,root,root,-) %{_includedir}/valide-*/ %{_libdir}/libvalide-*.so %changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.10.20090713svn278 - Remove some blank lines * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.9.svn27820090713 - Add %%posttrans section - Change summary - Change description - Add Inttool in BuildEquires - Change %%{_libdir}/libvalide-*.so.* in %%files of the main package - Change %%{_libdir}/libvalide-*.so in %%files of the -devel package - Change %%{_includedir}/valide-0.5/ to %%{_includedir}/valide-*/ * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.8.278svn - Add version the BuildRequires: vala-devel and gtk2-devel * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.7.278svn - Remove %%{_bindir}/valide in %%post and %%postun section * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.6.278svn - Remove --add and --remove option in /sbin/ldconfig * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.5.278svn - Fix %%global variable * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.4.278svn - Use revision 278 - Drop Requires: vala >= %%{vala_version} - Drop Requires: vala-devel >= %%{vala_version} - BuildRequires in two line - Add Comment in %%post and %%postun - Remove some of the empty lines * Mon Jul 13 2009 Jonathan MERCIER 0.5.1-0.3.277svn - Use revision 277 - Fix spec file * Sun Jul 11 2009 Jonathan MERCIER 0.5.1-0.2.275svn - Use revision 275 - Fix spec file * Sun Jul 5 2009 nicolas joseph 0.5.1 - Initial Release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:35:36 -0000 1.1 +++ .cvsignore 15 Jul 2009 11:37:39 -0000 1.2 @@ -0,0 +1 @@ +valide-20090713svn278.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:35:36 -0000 1.1 +++ sources 15 Jul 2009 11:37:39 -0000 1.2 @@ -0,0 +1 @@ +14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz From bioinfornatics at fedoraproject.org Wed Jul 15 11:41:51 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 11:41:51 +0000 (UTC) Subject: rpms/valide/F-11 valide.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715114151.6CDE811C00DF@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8982/F-11 Modified Files: .cvsignore sources Added Files: valide.spec Log Message: --- NEW FILE valide.spec --- %global alphatag 20090713 %global svn_revision svn278 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 # tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 Name: valide Version: 0.5.1 Release: 0.11.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools License: GPLv3+ URL: http://www.valaide.org Source0: %{name}-%{alphatag}%{svn_revision}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: vala-devel >= %{vala_version} BuildRequires: sqlite-devel, unique-devel, desktop-file-utils, gtksourceview2-devel, intltool Requires: vala-devel >= %{vala_version} Requires: hicolor-icon-theme %description Val(a)IDE is an Integrated Development Environment for the Vala programming language. %package devel Summary: Support for developing plugins for the Val(a)IDE Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. This package allows you to develop plugins that add new functionality to Val(a)IDE. %prep %setup -q -n %{name}-%{alphatag}%{svn_revision} %build CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" ./waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} ./waf -v %{?_smp_mflags} %install rm -rf %{buildroot} ./waf -v install --destdir=%{buildroot} desktop-file-install --vendor="" \ --mode 0644 \ --dir=%{buildroot}%{_datadir}/applications/ \ %{buildroot}%{_datadir}/applications/%{name}.desktop find %{buildroot}%{_libdir} -name *.so -exec chmod 755 {} \; %find_lang %{name} %clean rm -rf %{buildroot} %post # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %posttrans # update icon themes gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %postun # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING ChangeLog NEWS TODO AUTHORS %{_bindir}/ctags-vala %{_bindir}/valide %{_libdir}/libvalide-*.so.* %{_libdir}/valide/ %{_datadir}/pixmaps/valide/ %{_datadir}/vala/vapi/* %{_datadir}/valide/ %{_datadir}/applications/valide.desktop %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-vide.png %{_datadir}/mime/packages/x-vide.xml %files devel %defattr(-,root,root,-) %{_includedir}/valide-*/ %{_libdir}/libvalide-*.so %changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.10.20090713svn278 - Remove some blank lines * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.9.svn27820090713 - Add %%posttrans section - Change summary - Change description - Add Inttool in BuildEquires - Change %%{_libdir}/libvalide-*.so.* in %%files of the main package - Change %%{_libdir}/libvalide-*.so in %%files of the -devel package - Change %%{_includedir}/valide-0.5/ to %%{_includedir}/valide-*/ * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.8.278svn - Add version the BuildRequires: vala-devel and gtk2-devel * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.7.278svn - Remove %%{_bindir}/valide in %%post and %%postun section * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.6.278svn - Remove --add and --remove option in /sbin/ldconfig * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.5.278svn - Fix %%global variable * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.4.278svn - Use revision 278 - Drop Requires: vala >= %%{vala_version} - Drop Requires: vala-devel >= %%{vala_version} - BuildRequires in two line - Add Comment in %%post and %%postun - Remove some of the empty lines * Mon Jul 13 2009 Jonathan MERCIER 0.5.1-0.3.277svn - Use revision 277 - Fix spec file * Sun Jul 11 2009 Jonathan MERCIER 0.5.1-0.2.275svn - Use revision 275 - Fix spec file * Sun Jul 5 2009 nicolas joseph 0.5.1 - Initial Release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:35:36 -0000 1.1 +++ .cvsignore 15 Jul 2009 11:41:21 -0000 1.2 @@ -0,0 +1 @@ +valide-20090713svn278.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:35:36 -0000 1.1 +++ sources 15 Jul 2009 11:41:21 -0000 1.2 @@ -0,0 +1 @@ +14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz From bioinfornatics at fedoraproject.org Wed Jul 15 11:44:25 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 11:44:25 +0000 (UTC) Subject: rpms/valide/F-10 valide.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715114425.72CAE11C00DF@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9625/F-10 Modified Files: .cvsignore sources Added Files: valide.spec Log Message: --- NEW FILE valide.spec --- %global alphatag 20090713 %global svn_revision svn278 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 # tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 Name: valide Version: 0.5.1 Release: 0.11.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools License: GPLv3+ URL: http://www.valaide.org Source0: %{name}-%{alphatag}%{svn_revision}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: vala-devel >= %{vala_version} BuildRequires: sqlite-devel, unique-devel, desktop-file-utils, gtksourceview2-devel, intltool Requires: vala-devel >= %{vala_version} Requires: hicolor-icon-theme %description Val(a)IDE is an Integrated Development Environment for the Vala programming language. %package devel Summary: Support for developing plugins for the Val(a)IDE Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. This package allows you to develop plugins that add new functionality to Val(a)IDE. %prep %setup -q -n %{name}-%{alphatag}%{svn_revision} %build CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" ./waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} ./waf -v %{?_smp_mflags} %install rm -rf %{buildroot} ./waf -v install --destdir=%{buildroot} desktop-file-install --vendor="" \ --mode 0644 \ --dir=%{buildroot}%{_datadir}/applications/ \ %{buildroot}%{_datadir}/applications/%{name}.desktop find %{buildroot}%{_libdir} -name *.so -exec chmod 755 {} \; %find_lang %{name} %clean rm -rf %{buildroot} %post # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %posttrans # update icon themes gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %postun # For dynamical link, shared librairy /sbin/ldconfig # Use this because a desktop entry has a 'MimeType key. update-desktop-database &> /dev/null || : # update-mime-database update-mime-database %{_datadir}/mime &> /dev/null || : # update icon themes if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING ChangeLog NEWS TODO AUTHORS %{_bindir}/ctags-vala %{_bindir}/valide %{_libdir}/libvalide-*.so.* %{_libdir}/valide/ %{_datadir}/pixmaps/valide/ %{_datadir}/vala/vapi/* %{_datadir}/valide/ %{_datadir}/applications/valide.desktop %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-vide.png %{_datadir}/mime/packages/x-vide.xml %files devel %defattr(-,root,root,-) %{_includedir}/valide-*/ %{_libdir}/libvalide-*.so %changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.10.20090713svn278 - Remove some blank lines * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.9.svn27820090713 - Add %%posttrans section - Change summary - Change description - Add Inttool in BuildEquires - Change %%{_libdir}/libvalide-*.so.* in %%files of the main package - Change %%{_libdir}/libvalide-*.so in %%files of the -devel package - Change %%{_includedir}/valide-0.5/ to %%{_includedir}/valide-*/ * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.8.278svn - Add version the BuildRequires: vala-devel and gtk2-devel * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.7.278svn - Remove %%{_bindir}/valide in %%post and %%postun section * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.6.278svn - Remove --add and --remove option in /sbin/ldconfig * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.5.278svn - Fix %%global variable * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.4.278svn - Use revision 278 - Drop Requires: vala >= %%{vala_version} - Drop Requires: vala-devel >= %%{vala_version} - BuildRequires in two line - Add Comment in %%post and %%postun - Remove some of the empty lines * Mon Jul 13 2009 Jonathan MERCIER 0.5.1-0.3.277svn - Use revision 277 - Fix spec file * Sun Jul 11 2009 Jonathan MERCIER 0.5.1-0.2.275svn - Use revision 275 - Fix spec file * Sun Jul 5 2009 nicolas joseph 0.5.1 - Initial Release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:35:36 -0000 1.1 +++ .cvsignore 15 Jul 2009 11:43:54 -0000 1.2 @@ -0,0 +1 @@ +valide-20090713svn278.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:35:36 -0000 1.1 +++ sources 15 Jul 2009 11:43:54 -0000 1.2 @@ -0,0 +1 @@ +14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 11:49:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:49:10 +0000 Subject: [pkgdb] bmake ownership updated Message-ID: <20090715114910.9A8ED10F88D@bastion2.fedora.phx.redhat.com> Package bmake in Fedora devel is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmake From pkgdb at fedoraproject.org Wed Jul 15 11:49:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:49:16 +0000 Subject: [pkgdb] bmake ownership updated Message-ID: <20090715114916.7411A10F84C@bastion2.fedora.phx.redhat.com> Package bmake in Fedora 11 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmake From pkgdb at fedoraproject.org Wed Jul 15 11:49:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:49:17 +0000 Subject: [pkgdb] bmake ownership updated Message-ID: <20090715114917.41DC210F89C@bastion2.fedora.phx.redhat.com> Package bmake in Fedora 10 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmake From pkgdb at fedoraproject.org Wed Jul 15 11:49:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 11:49:18 +0000 Subject: [pkgdb] bmake ownership updated Message-ID: <20090715114918.0DE5410F8A3@bastion2.fedora.phx.redhat.com> Package bmake in Fedora 9 is now owned by kasal To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmake From tmraz at fedoraproject.org Wed Jul 15 12:02:16 2009 From: tmraz at fedoraproject.org (=?utf-8?b?VG9tw6HFoSBNcsOheg==?=) Date: Wed, 15 Jul 2009 12:02:16 +0000 (UTC) Subject: rpms/ipsec-tools/devel ipsec-tools-0.7.2-moreleaks.patch, NONE, 1.1 ipsec-tools-0.7.2-nodevel.patch, NONE, 1.1 ipsec-tools-0.7.2-review.patch, NONE, 1.1 Message-ID: <20090715120216.8D9BD11C00DF@cvs1.fedora.phx.redhat.com> Author: tmraz Update of /cvs/pkgs/rpms/ipsec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14450 Added Files: ipsec-tools-0.7.2-moreleaks.patch ipsec-tools-0.7.2-nodevel.patch ipsec-tools-0.7.2-review.patch Log Message: * Wed Jul 15 2009 Tomas Mraz - 0.7.2-2 - fix FTBFS (#511556) - fix some memory leaks and compilation warnings found by review ipsec-tools-0.7.2-moreleaks.patch: --- NEW FILE ipsec-tools-0.7.2-moreleaks.patch --- diff -up ipsec-tools-0.7.2/src/racoon/crypto_openssl.c.moreleaks ipsec-tools-0.7.2/src/racoon/crypto_openssl.c --- ipsec-tools-0.7.2/src/racoon/crypto_openssl.c.moreleaks 2009-04-20 15:33:30.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/crypto_openssl.c 2009-05-13 20:07:27.000000000 +0200 @@ -201,26 +201,24 @@ eay_str2asn1dn(str, len) } i = i2d_X509_NAME(name, NULL); - if (!i) + if (i <= 0) goto err; ret = vmalloc(i); if (!ret) goto err; p = ret->v; i = i2d_X509_NAME(name, (void *)&p); - if (!i) - goto err; - - return ret; + if (i <= 0) { + vfree(ret); + ret = NULL; + } err: if (buf) racoon_free(buf); if (name) X509_NAME_free(name); - if (ret) - vfree(ret); - return NULL; + return ret; } /* ipsec-tools-0.7.2-nodevel.patch: --- NEW FILE ipsec-tools-0.7.2-nodevel.patch --- diff -up ipsec-tools-0.7.2/src/libipsec/Makefile.am.nodevel ipsec-tools-0.7.2/src/libipsec/Makefile.am --- ipsec-tools-0.7.2/src/libipsec/Makefile.am.nodevel 2009-07-15 10:15:40.000000000 +0200 +++ ipsec-tools-0.7.2/src/libipsec/Makefile.am 2009-07-15 10:15:40.000000000 +0200 @@ -1,11 +1,10 @@ #bin_PROGRAMS = test-policy test-policy-priority -lib_LTLIBRARIES = libipsec.la +noinst_LTLIBRARIES = libipsec.la libipsecdir = $(includedir)/libipsec -libipsec_HEADERS = libpfkey.h -man3_MANS = ipsec_set_policy.3 ipsec_strerror.3 +#man3_MANS = ipsec_set_policy.3 ipsec_strerror.3 AM_CFLAGS = @GLIBC_BUGS@ -fPIE AM_YFLAGS = -d -p __libipsec @@ -28,7 +27,7 @@ libipsec_la_SOURCES = \ libipsec_la_LDFLAGS = -version-info 0:1:0 libipsec_la_LIBADD = $(LEXLIB) -noinst_HEADERS = ipsec_strerror.h +noinst_HEADERS = ipsec_strerror.h libpfkey.h #test_policy_SOURCES = test-policy.c #test_policy_LDFLAGS = libipsec.la diff -up ipsec-tools-0.7.2/src/racoon/Makefile.am.nodevel ipsec-tools-0.7.2/src/racoon/Makefile.am --- ipsec-tools-0.7.2/src/racoon/Makefile.am.nodevel 2009-07-15 10:15:40.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/Makefile.am 2009-07-15 10:31:18.000000000 +0200 @@ -2,10 +2,10 @@ sbin_PROGRAMS = racoon racoonctl plainrsa-gen noinst_PROGRAMS = eaytest -include_racoon_HEADERS = racoonctl.h var.h vmbuf.h misc.h gcmalloc.h admin.h \ +racoonhdr = racoonctl.h var.h vmbuf.h misc.h gcmalloc.h admin.h \ schedule.h sockmisc.h vmbuf.h isakmp_var.h isakmp.h isakmp_xauth.h \ isakmp_cfg.h isakmp_unity.h ipsec_doi.h evt.h -lib_LTLIBRARIES = libracoon.la +noinst_LTLIBRARIES = libracoon.la adminsockdir=${localstatedir}/racoon @@ -63,7 +63,7 @@ eaytest_LDADD = crypto_openssl_test.o vm eaytest_DEPENDENCIES = crypto_openssl_test.o vmbuf.o str2val.o \ misc_noplog.o $(CRYPTOBJS) -noinst_HEADERS = \ +noinst_HEADERS = $(racoonhdr) \ admin.h dnssec.h isakmp_base.h oakley.h session.h \ admin_var.h dump.h isakmp_ident.h pfkey.h sockmisc.h \ algorithm.h gcmalloc.h isakmp_inf.h plog.h str2val.h \ ipsec-tools-0.7.2-review.patch: --- NEW FILE ipsec-tools-0.7.2-review.patch --- diff -up ipsec-tools-0.7.2/src/racoon/ipsec_doi.c.review ipsec-tools-0.7.2/src/racoon/ipsec_doi.c --- ipsec-tools-0.7.2/src/racoon/ipsec_doi.c.review 2008-07-03 08:54:08.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/ipsec_doi.c 2009-05-14 16:58:53.000000000 +0200 @@ -750,7 +750,7 @@ t2isakmpsa(trns, sa) int error = -1; iconv_t cd = (iconv_t) -1; size_t srcleft, dstleft, rv; - __iconv_const char *src; + char *src; char *dst; int len = ntohs(d->lorv); @@ -799,13 +799,13 @@ t2isakmpsa(trns, sa) goto out; } - src = (__iconv_const char *)(d + 1); + src = (char *)(d + 1); srcleft = len; dst = sa->gssid->v; dstleft = len / 2; - rv = iconv(cd, (__iconv_const char **)&src, &srcleft, + rv = iconv(cd, &src, &srcleft, &dst, &dstleft); if (rv != 0) { if (rv == -1) { @@ -2880,7 +2880,7 @@ setph1attr(sa, buf) } else { size_t dstleft = sa->gssid->l * 2; size_t srcleft = sa->gssid->l; - const char *src = (const char *)sa->gssid->v; + char *src = (char *)sa->gssid->v; char *odst, *dst = racoon_malloc(dstleft); iconv_t cd; size_t rv; @@ -2896,7 +2896,7 @@ setph1attr(sa, buf) goto gssid_done; } odst = dst; - rv = iconv(cd, (__iconv_const char **)&src, + rv = iconv(cd, &src, &srcleft, &dst, &dstleft); if (rv != 0) { if (rv == -1) { @@ -4381,7 +4381,8 @@ ipsecdoi_id2str(id) char *dat; static char buf[BUFLEN]; struct ipsecdoi_id_b *id_b = (struct ipsecdoi_id_b *)id->v; - struct sockaddr saddr; + union allsaddr saddr; + u_int plen = 0; switch (id_b->type) { @@ -4390,11 +4391,11 @@ ipsecdoi_id2str(id) case IPSECDOI_ID_IPV4_ADDR_RANGE: #ifndef __linux__ - saddr.sa_len = sizeof(struct sockaddr_in); + saddr.sa.sa_len = sizeof(struct sockaddr_in); #endif - saddr.sa_family = AF_INET; - ((struct sockaddr_in *)&saddr)->sin_port = IPSEC_PORT_ANY; - memcpy(&((struct sockaddr_in *)&saddr)->sin_addr, + saddr.sa.sa_family = AF_INET; + saddr.sin.sin_port = IPSEC_PORT_ANY; + memcpy(&saddr.sin.sin_addr, id->v + sizeof(*id_b), sizeof(struct in_addr)); break; #ifdef INET6 @@ -4403,11 +4404,11 @@ ipsecdoi_id2str(id) case IPSECDOI_ID_IPV6_ADDR_RANGE: #ifndef __linux__ - saddr.sa_len = sizeof(struct sockaddr_in6); + saddr.sa.sa_len = sizeof(struct sockaddr_in6); #endif - saddr.sa_family = AF_INET6; - ((struct sockaddr_in6 *)&saddr)->sin6_port = IPSEC_PORT_ANY; - memcpy(&((struct sockaddr_in6 *)&saddr)->sin6_addr, + saddr.sa.sa_family = AF_INET6; + saddr.sin6.sin6_port = IPSEC_PORT_ANY; + memcpy(&saddr.sin6.sin6_addr, id->v + sizeof(*id_b), sizeof(struct in6_addr)); break; #endif @@ -4418,7 +4419,7 @@ ipsecdoi_id2str(id) #ifdef INET6 case IPSECDOI_ID_IPV6_ADDR: #endif - len = snprintf( buf, BUFLEN, "%s", saddrwop2str(&saddr)); + len = snprintf( buf, BUFLEN, "%s", saddrwop2str(&saddr.sa)); break; case IPSECDOI_ID_IPV4_ADDR_SUBNET: @@ -4474,42 +4475,42 @@ ipsecdoi_id2str(id) plen += l; } - len = snprintf( buf, BUFLEN, "%s/%i", saddrwop2str(&saddr), plen); + len = snprintf( buf, BUFLEN, "%s/%i", saddrwop2str(&saddr.sa), plen); } break; case IPSECDOI_ID_IPV4_ADDR_RANGE: - len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr)); + len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr.sa)); #ifndef __linux__ - saddr.sa_len = sizeof(struct sockaddr_in); + saddr.sa.sa_len = sizeof(struct sockaddr_in); #endif - saddr.sa_family = AF_INET; - ((struct sockaddr_in *)&saddr)->sin_port = IPSEC_PORT_ANY; - memcpy(&((struct sockaddr_in *)&saddr)->sin_addr, + saddr.sa.sa_family = AF_INET; + saddr.sin.sin_port = IPSEC_PORT_ANY; + memcpy(&saddr.sin.sin_addr, id->v + sizeof(*id_b) + sizeof(struct in_addr), sizeof(struct in_addr)); - len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr)); + len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr.sa)); break; #ifdef INET6 case IPSECDOI_ID_IPV6_ADDR_RANGE: - len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr)); + len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr.sa)); #ifndef __linux__ - saddr.sa_len = sizeof(struct sockaddr_in6); + saddr.sa.sa_len = sizeof(struct sockaddr_in6); #endif - saddr.sa_family = AF_INET6; - ((struct sockaddr_in6 *)&saddr)->sin6_port = IPSEC_PORT_ANY; - memcpy(&((struct sockaddr_in6 *)&saddr)->sin6_addr, + saddr.sa.sa_family = AF_INET6; + saddr.sin6.sin6_port = IPSEC_PORT_ANY; + memcpy(&saddr.sin6.sin6_addr, id->v + sizeof(*id_b) + sizeof(struct in6_addr), sizeof(struct in6_addr)); - len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr)); + len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr.sa)); break; #endif diff -up ipsec-tools-0.7.2/src/racoon/isakmp.c.review ipsec-tools-0.7.2/src/racoon/isakmp.c --- ipsec-tools-0.7.2/src/racoon/isakmp.c.review 2009-05-14 16:58:53.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/isakmp.c 2009-05-14 16:58:53.000000000 +0200 @@ -198,13 +198,15 @@ isakmp_handler(so_isakmp) union { char buf[sizeof (isakmp) + 4]; u_int32_t non_esp[2]; - char lbuf[sizeof(struct udphdr) + + struct { + struct udphdr udp; #ifdef __linux - sizeof(struct iphdr) + + struct iphdr ip; #else - sizeof(struct ip) + + struct ip ip; #endif - sizeof(isakmp) + 4]; + char buf[sizeof(isakmp) + 4]; + } lbuf; } x; struct sockaddr_storage remote; struct sockaddr_storage local; @@ -240,22 +242,13 @@ isakmp_handler(so_isakmp) /* Lucent IKE in UDP encapsulation */ { - struct udphdr *udp; #ifdef __linux__ - struct iphdr *ip; - - udp = (struct udphdr *)&x.lbuf[0]; - if (ntohs(udp->dest) == 501) { - ip = (struct iphdr *)(x.lbuf + sizeof(*udp)); - extralen += sizeof(*udp) + ip->ihl; + if (ntohs(x.lbuf.udp.dest) == 501) { + extralen += sizeof(x.lbuf.udp) + x.lbuf.ip.ihl; } #else - struct ip *ip; - - udp = (struct udphdr *)&x.lbuf[0]; - if (ntohs(udp->uh_dport) == 501) { - ip = (struct ip *)(x.lbuf + sizeof(*udp)); - extralen += sizeof(*udp) + ip->ip_hl; + if (ntohs(lbuf.udp.uh_dport) == 501) { + extralen += sizeof(x.lbuf.udp) + x.lbuf.ip.ip_hl; } #endif } diff -up ipsec-tools-0.7.2/src/racoon/isakmp_inf.c.review ipsec-tools-0.7.2/src/racoon/isakmp_inf.c --- ipsec-tools-0.7.2/src/racoon/isakmp_inf.c.review 2009-05-14 16:58:53.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/isakmp_inf.c 2009-05-14 16:58:53.000000000 +0200 @@ -136,7 +136,6 @@ isakmp_info_recv(iph1, msg0) struct isakmp_gen *nd; u_int8_t np; int encrypted; - int flag; plog(LLV_DEBUG, LOCATION, NULL, "receive Information.\n"); @@ -313,11 +312,8 @@ isakmp_info_recv(iph1, msg0) "received unexpected payload type %s.\n", s_isakmp_nptype(gen->np)); } - if(error < 0) { + if (error < 0) break; - } else { - flag |= error; - } } end: if (msg != NULL) diff -up ipsec-tools-0.7.2/src/racoon/nattraversal.c.review ipsec-tools-0.7.2/src/racoon/nattraversal.c --- ipsec-tools-0.7.2/src/racoon/nattraversal.c.review 2009-04-20 15:27:12.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/nattraversal.c 2009-05-14 16:58:53.000000000 +0200 @@ -287,7 +287,7 @@ natt_fill_options (struct ph1natt_option void natt_float_ports (struct ph1handle *iph1) { - if (! (iph1->natt_flags && NAT_DETECTED) ) + if (! (iph1->natt_flags & NAT_DETECTED) ) return; if (! iph1->natt_options->float_port){ /* Drafts 00 / 01, just schedule keepalive */ diff -up ipsec-tools-0.7.2/src/racoon/sockmisc.c.review ipsec-tools-0.7.2/src/racoon/sockmisc.c --- ipsec-tools-0.7.2/src/racoon/sockmisc.c.review 2007-08-01 13:52:22.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/sockmisc.c 2009-05-18 14:06:22.000000000 +0200 @@ -317,8 +317,9 @@ recvfromto(s, buf, buflen, flags, from, u_int *tolen; { int otolen; - u_int len; - struct sockaddr_storage ss; + socklen_t slen; + int len; + union allsaddr sa; struct msghdr m; struct cmsghdr *cm; struct iovec iov[2]; @@ -331,8 +332,8 @@ recvfromto(s, buf, buflen, flags, from, struct sockaddr_in6 *sin6; #endif - len = sizeof(ss); - if (getsockname(s, (struct sockaddr *)&ss, &len) < 0) { + slen = sizeof(sa); + if (getsockname(s, &sa.sa, &slen) < 0) { plog(LLV_ERROR, LOCATION, NULL, "getsockname (%s)\n", strerror(errno)); return -1; @@ -365,7 +366,7 @@ recvfromto(s, buf, buflen, flags, from, "cmsg %d %d\n", cm->cmsg_level, cm->cmsg_type);) #endif #if defined(INET6) && defined(INET6_ADVAPI) - if (ss.ss_family == AF_INET6 + if (sa.sa.sa_family == AF_INET6 && cm->cmsg_level == IPPROTO_IPV6 && cm->cmsg_type == IPV6_PKTINFO && otolen >= sizeof(*sin6)) { @@ -384,14 +385,13 @@ recvfromto(s, buf, buflen, flags, from, sin6->sin6_scope_id = pi->ipi6_ifindex; else sin6->sin6_scope_id = 0; - sin6->sin6_port = - ((struct sockaddr_in6 *)&ss)->sin6_port; + sin6->sin6_port = sa.sin6.sin6_port; otolen = -1; /* "to" already set */ continue; } #endif #ifdef __linux__ - if (ss.ss_family == AF_INET + if (sa.sa.sa_family == AF_INET && cm->cmsg_level == IPPROTO_IP && cm->cmsg_type == IP_PKTINFO && otolen >= sizeof(sin)) { @@ -402,14 +402,13 @@ recvfromto(s, buf, buflen, flags, from, sin->sin_family = AF_INET; memcpy(&sin->sin_addr, &pi->ipi_addr, sizeof(sin->sin_addr)); - sin->sin_port = - ((struct sockaddr_in *)&ss)->sin_port; + sin->sin_port = sa.sin.sin_port; otolen = -1; /* "to" already set */ continue; } #endif #if defined(INET6) && defined(IPV6_RECVDSTADDR) - if (ss.ss_family == AF_INET6 + if (sa.sa.sa_family == AF_INET6 && cm->cmsg_level == IPPROTO_IPV6 && cm->cmsg_type == IPV6_RECVDSTADDR && otolen >= sizeof(*sin6)) { @@ -420,14 +419,13 @@ recvfromto(s, buf, buflen, flags, from, sin6->sin6_len = sizeof(*sin6); memcpy(&sin6->sin6_addr, CMSG_DATA(cm), sizeof(sin6->sin6_addr)); - sin6->sin6_port = - ((struct sockaddr_in6 *)&ss)->sin6_port; + sin6->sin6_port = sa.sin6.sin6_port; otolen = -1; /* "to" already set */ continue; } #endif #ifndef __linux__ - if (ss.ss_family == AF_INET + if (sa.sa.sa_family == AF_INET && cm->cmsg_level == IPPROTO_IP && cm->cmsg_type == IP_RECVDSTADDR && otolen >= sizeof(*sin)) { @@ -438,7 +436,7 @@ recvfromto(s, buf, buflen, flags, from, sin->sin_len = sizeof(*sin); memcpy(&sin->sin_addr, CMSG_DATA(cm), sizeof(sin->sin_addr)); - sin->sin_port = ((struct sockaddr_in *)&ss)->sin_port; + sin->sin_port = sa.sin.sin_port; otolen = -1; /* "to" already set */ continue; } @@ -458,7 +456,8 @@ sendfromto(s, buf, buflen, src, dst, cnt struct sockaddr *dst; { struct sockaddr_storage ss; - u_int len; + socklen_t slen; + int len = 0; int i; if (src->sa_family != dst->sa_family) { @@ -467,8 +466,8 @@ sendfromto(s, buf, buflen, src, dst, cnt return -1; } - len = sizeof(ss); - if (getsockname(s, (struct sockaddr *)&ss, &len) < 0) { + slen = sizeof(ss); + if (getsockname(s, (struct sockaddr *)&ss, &slen) < 0) { plog(LLV_ERROR, LOCATION, NULL, "getsockname (%s)\n", strerror(errno)); return -1; diff -up ipsec-tools-0.7.2/src/racoon/sockmisc.h.review ipsec-tools-0.7.2/src/racoon/sockmisc.h --- ipsec-tools-0.7.2/src/racoon/sockmisc.h.review 2006-09-09 18:22:10.000000000 +0200 +++ ipsec-tools-0.7.2/src/racoon/sockmisc.h 2009-05-14 16:58:53.000000000 +0200 @@ -34,12 +34,14 @@ #ifndef _SOCKMISC_H #define _SOCKMISC_H +union allsaddr { + struct sockaddr sa; + struct sockaddr_in sin; + struct sockaddr_in6 sin6; +}; + struct netaddr { - union { - struct sockaddr sa; - struct sockaddr_in sin; - struct sockaddr_in6 sin6; - } sa; + union allsaddr sa; unsigned long prefix; }; From pkgdb at fedoraproject.org Wed Jul 15 12:05:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:05:02 +0000 Subject: [pkgdb] tpm-tools ownership updated Message-ID: <20090715120503.17C0610F888@bastion2.fedora.phx.redhat.com> Package tpm-tools in Fedora devel is now owned by michich To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tpm-tools From kasal at fedoraproject.org Wed Jul 15 12:05:20 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 15 Jul 2009 12:05:20 +0000 (UTC) Subject: rpms/bmake/devel .cvsignore, 1.2, 1.3 bmake.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090715120520.EF23311C00DF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/bmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15863 Modified Files: .cvsignore bmake.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/bmake/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Jul 2008 18:48:59 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:04:50 -0000 1.3 @@ -1 +1 @@ -bmake-20080515.tar.gz +bmake-20090222.tar.gz Index: bmake.spec =================================================================== RCS file: /cvs/extras/rpms/bmake/devel/bmake.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bmake.spec 24 Feb 2009 05:18:26 -0000 1.2 +++ bmake.spec 15 Jul 2009 12:04:50 -0000 1.3 @@ -1,7 +1,7 @@ Summary: The NetBSD make(1) tool Name: bmake -Version: 20080515 -Release: 2%{?dist} +Version: 20090222 +Release: 1%{?dist} License: BSD with advertising Group: Development/Tools URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/ @@ -45,6 +45,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Wed Jul 15 2009 Stepan Kasal - 20090222-1 +- new upstream version + * Mon Feb 23 2009 Fedora Release Engineering - 20080515-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/bmake/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Jul 2008 18:48:59 -0000 1.2 +++ sources 15 Jul 2009 12:04:50 -0000 1.3 @@ -1 +1 @@ -a16b119c5d99dd2ecfdc6307c76fb83c bmake-20080515.tar.gz +d3d62e4b97bf176fd8968e84458a148a bmake-20090222.tar.gz From kasal at fedoraproject.org Wed Jul 15 12:09:09 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 15 Jul 2009 12:09:09 +0000 (UTC) Subject: rpms/mk-files/devel .cvsignore, 1.2, 1.3 mk-files.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090715120909.5361A11C00DF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/mk-files/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17193 Modified Files: .cvsignore mk-files.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mk-files/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 9 Jul 2008 17:22:30 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:09:08 -0000 1.3 @@ -1 +1 @@ -mk-20070430.tar.gz +mk-20081111.tar.gz Index: mk-files.spec =================================================================== RCS file: /cvs/extras/rpms/mk-files/devel/mk-files.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mk-files.spec 26 Feb 2009 01:36:40 -0000 1.2 +++ mk-files.spec 15 Jul 2009 12:09:08 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Support files for bmake, the NetBSD make(1) tool Name: mk-files -Version: 20070430 -Release: 2%{?dist} +Version: 20081111 +Release: 1%{?dist} License: BSD Group: Development/Tools URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/ @@ -38,6 +38,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/mk/* %changelog +* Wed Jul 15 2009 Stepan Kasal - 20081111-1 +- new upstream version + * Wed Feb 25 2009 Fedora Release Engineering - 20070430-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/mk-files/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 9 Jul 2008 17:22:30 -0000 1.2 +++ sources 15 Jul 2009 12:09:08 -0000 1.3 @@ -1 +1 @@ -b8759ef075d7e2cba60e30fa56654af4 mk-20070430.tar.gz +c5d840ebe6e337e617bb756953dcad14 mk-20081111.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 12:12:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:12:43 +0000 Subject: [pkgdb] audacious had acl change status Message-ID: <20090715121243.2862B10F84C@bastion2.fedora.phx.redhat.com> mschwendt has set the watchbugzilla acl on audacious (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 12:12:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:12:44 +0000 Subject: [pkgdb] audacious had acl change status Message-ID: <20090715121244.AE92110F898@bastion2.fedora.phx.redhat.com> mschwendt has set the watchcommits acl on audacious (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 12:12:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:12:45 +0000 Subject: [pkgdb] audacious had acl change status Message-ID: <20090715121245.E3A8C10F8A6@bastion2.fedora.phx.redhat.com> mschwendt has set the commit acl on audacious (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 12:12:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:12:47 +0000 Subject: [pkgdb] audacious had acl change status Message-ID: <20090715121247.3501B10F8AA@bastion2.fedora.phx.redhat.com> mschwendt has set the approveacls acl on audacious (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious From pkgdb at fedoraproject.org Wed Jul 15 12:13:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:13:04 +0000 Subject: [pkgdb] audacious-plugins had acl change status Message-ID: <20090715121304.B165A10F84C@bastion2.fedora.phx.redhat.com> mschwendt has set the watchbugzilla acl on audacious-plugins (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 12:13:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:13:06 +0000 Subject: [pkgdb] audacious-plugins had acl change status Message-ID: <20090715121306.8382110F8AF@bastion2.fedora.phx.redhat.com> mschwendt has set the watchcommits acl on audacious-plugins (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 12:13:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:13:07 +0000 Subject: [pkgdb] audacious-plugins had acl change status Message-ID: <20090715121307.4113010F8B1@bastion2.fedora.phx.redhat.com> mschwendt has set the commit acl on audacious-plugins (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From pkgdb at fedoraproject.org Wed Jul 15 12:13:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:13:08 +0000 Subject: [pkgdb] audacious-plugins had acl change status Message-ID: <20090715121308.7719210F898@bastion2.fedora.phx.redhat.com> mschwendt has set the approveacls acl on audacious-plugins (Fedora devel) to Approved for atkac To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audacious-plugins From mschwendt at fedoraproject.org Wed Jul 15 12:17:29 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 15 Jul 2009 12:17:29 +0000 (UTC) Subject: rpms/audacious-plugin-fc/devel audacious-plugin-fc-0.3-audacious2.patch, NONE, 1.1 audacious-plugin-fc-0.3-dialog.patch, NONE, 1.1 audacious-plugin-fc.spec, 1.13, 1.14 Message-ID: <20090715121729.98C7811C00DF@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacious-plugin-fc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19748 Modified Files: audacious-plugin-fc.spec Added Files: audacious-plugin-fc-0.3-audacious2.patch audacious-plugin-fc-0.3-dialog.patch Log Message: * Sun Jun 7 2009 Michael Schwendt - 0.3-4 - Patch for Audacious 2. audacious-plugin-fc-0.3-audacious2.patch: --- NEW FILE audacious-plugin-fc-0.3-audacious2.patch --- diff -Nur audacious-plugin-fc-0.3-orig/src/Main.cpp audacious-plugin-fc-0.3/src/Main.cpp --- audacious-plugin-fc-0.3-orig/src/Main.cpp 2007-11-21 17:40:43.000000000 +0100 +++ audacious-plugin-fc-0.3/src/Main.cpp 2009-06-07 12:16:04.000000000 +0200 @@ -1,5 +1,5 @@ // -// => basic port to Audacious <= +// => basic port to Audacious 2 <= // // AMIGA Future Composer music player plugin for XMMS // Copyright (C) 2000 Michael Schwendt @@ -23,7 +23,6 @@ { #include #include -#include } #ifdef FC_HAVE_OLD_CPP_HEADERS @@ -94,8 +93,6 @@ ip_pause, ip_seek, - NULL, - ip_get_time, NULL, @@ -108,11 +105,6 @@ NULL, ip_get_song_info, NULL, - - NULL, - - NULL, - NULL, NULL, // 1.3.0 audacious-plugin-fc-0.3-dialog.patch: --- NEW FILE audacious-plugin-fc-0.3-dialog.patch --- diff -Nur audacious-plugin-fc-0.3-orig/src/configure.c audacious-plugin-fc-0.3/src/configure.c --- audacious-plugin-fc-0.3-orig/src/configure.c 2007-11-21 16:24:10.000000000 +0100 +++ audacious-plugin-fc-0.3/src/configure.c 2009-06-07 12:42:25.000000000 +0200 @@ -69,6 +69,7 @@ if (!fc_config_window) { fc_config_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); + gtk_window_set_type_hint(GTK_WINDOW(fc_config_window), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_object_set_data(GTK_OBJECT(fc_config_window), "fc_config_window", fc_config_window); gtk_window_set_title(GTK_WINDOW(fc_config_window), "Future Composer player configuration"); gtk_window_set_policy(GTK_WINDOW(fc_config_window), FALSE, FALSE, FALSE); @@ -81,34 +82,28 @@ notebook1 = gtk_notebook_new(); gtk_object_set_data(GTK_OBJECT(fc_config_window), "notebook1", notebook1); - gtk_widget_show(notebook1); gtk_box_pack_start(GTK_BOX(vbox), notebook1, TRUE, TRUE, 0); gtk_container_border_width(GTK_CONTAINER(notebook1), 3); vbox1 = gtk_vbox_new(FALSE, 0); gtk_object_set_data(GTK_OBJECT(fc_config_window), "vbox1", vbox1); - gtk_widget_show(vbox1); hbox1 = gtk_hbox_new(FALSE, 0); gtk_object_set_data(GTK_OBJECT(fc_config_window), "hbox1", hbox1); - gtk_widget_show(hbox1); gtk_box_pack_start(GTK_BOX(vbox1), hbox1, TRUE, TRUE, 0); bitsPerSample_Frame = gtk_frame_new("Bits per sample:"); gtk_object_set_data(GTK_OBJECT(fc_config_window), "bitsPerSample_Frame", bitsPerSample_Frame); - gtk_widget_show(bitsPerSample_Frame); gtk_box_pack_start(GTK_BOX(hbox1), bitsPerSample_Frame, TRUE, TRUE, 0); gtk_container_set_border_width(GTK_CONTAINER(bitsPerSample_Frame), 5); vbox4 = gtk_vbox_new(FALSE, 0); gtk_object_set_data(GTK_OBJECT(fc_config_window), "vbox4", vbox4); - gtk_widget_show(vbox4); gtk_container_add(GTK_CONTAINER(bitsPerSample_Frame), vbox4); Bits16 = gtk_radio_button_new_with_label(bitsPerSample_group, "16 bit"); bitsPerSample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Bits16)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Bits16", Bits16); - gtk_widget_show(Bits16); gtk_box_pack_start(GTK_BOX(vbox4), Bits16, TRUE, TRUE, 0); if (fc_myConfig.precision == 16) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Bits16), TRUE); @@ -116,26 +111,22 @@ Bits8 = gtk_radio_button_new_with_label(bitsPerSample_group, "8 bit"); bitsPerSample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Bits8)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Bits8", Bits8); - gtk_widget_show(Bits8); gtk_box_pack_start(GTK_BOX(vbox4), Bits8, TRUE, TRUE, 0); if (fc_myConfig.precision == 8) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Bits8), TRUE); Channels_Frame = gtk_frame_new("Channels:"); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Channels_Frame", Channels_Frame); - gtk_widget_show(Channels_Frame); gtk_box_pack_start(GTK_BOX(hbox1), Channels_Frame, TRUE, TRUE, 0); gtk_container_set_border_width(GTK_CONTAINER(Channels_Frame), 5); vbox5 = gtk_vbox_new(FALSE, 0); gtk_object_set_data(GTK_OBJECT(fc_config_window), "vbox5", vbox5); - gtk_widget_show(vbox5); gtk_container_add(GTK_CONTAINER(Channels_Frame), vbox5); Stereo = gtk_radio_button_new_with_label(vbox5_group, "Stereo"); vbox5_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Stereo)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Stereo", Stereo); - gtk_widget_show(Stereo); gtk_box_pack_start(GTK_BOX(vbox5), Stereo, TRUE, TRUE, 0); if (fc_myConfig.channels == 2) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Stereo), TRUE); @@ -143,26 +134,22 @@ Mono = gtk_radio_button_new_with_label(vbox5_group, "Mono"); vbox5_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Mono)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Mono", Mono); - gtk_widget_show(Mono); gtk_box_pack_start(GTK_BOX(vbox5), Mono, TRUE, TRUE, 0); if (fc_myConfig.channels == 1) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Mono), TRUE); frequency_Frame = gtk_frame_new("Sample frequency:"); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Frequency_Frame", frequency_Frame); - gtk_widget_show(frequency_Frame); gtk_box_pack_start(GTK_BOX(vbox1), frequency_Frame, TRUE, TRUE, 0); gtk_container_set_border_width(GTK_CONTAINER(frequency_Frame), 5); vbox3 = gtk_vbox_new(FALSE, 0); gtk_object_set_data(GTK_OBJECT(fc_config_window), "vbox3", vbox3); - gtk_widget_show(vbox3); gtk_container_add(GTK_CONTAINER(frequency_Frame), vbox3); Sample_48 = gtk_radio_button_new_with_label(sample_group, "48000 Hz"); sample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Sample_48)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Sample_48", Sample_48); - gtk_widget_show(Sample_48); gtk_box_pack_start(GTK_BOX(vbox3), Sample_48, TRUE, TRUE, 0); if (fc_myConfig.frequency == FREQ_SAMPLE_48) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Sample_48), TRUE); @@ -170,7 +157,6 @@ Sample_44 = gtk_radio_button_new_with_label(sample_group, "44100 Hz"); sample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Sample_44)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Sample_44", Sample_44); - gtk_widget_show(Sample_44); gtk_box_pack_start(GTK_BOX(vbox3), Sample_44, TRUE, TRUE, 0); if (fc_myConfig.frequency == FREQ_SAMPLE_44) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Sample_44), TRUE); @@ -178,7 +164,6 @@ Sample_22 = gtk_radio_button_new_with_label(sample_group, "22050 Hz"); sample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Sample_22)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Sample_22", Sample_22); - gtk_widget_show(Sample_22); gtk_box_pack_start(GTK_BOX(vbox3), Sample_22, TRUE, TRUE, 0); if (fc_myConfig.frequency == FREQ_SAMPLE_22) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Sample_22), TRUE); @@ -186,14 +171,12 @@ Sample_11 = gtk_radio_button_new_with_label(sample_group, "11025 Hz"); sample_group = gtk_radio_button_group(GTK_RADIO_BUTTON(Sample_11)); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Sample_11", Sample_11); - gtk_widget_show(Sample_11); gtk_box_pack_start(GTK_BOX(vbox3), Sample_11, TRUE, TRUE, 0); if (fc_myConfig.frequency == FREQ_SAMPLE_11) gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(Sample_11), TRUE); Quality_Label = gtk_label_new("Quality"); gtk_object_set_data(GTK_OBJECT(fc_config_window), "Quality_Label", Quality_Label); - gtk_widget_show(Quality_Label); gtk_notebook_append_page(GTK_NOTEBOOK(notebook1), vbox1, Quality_Label); bbox = gtk_hbutton_box_new(); @@ -205,19 +188,14 @@ gtk_signal_connect(GTK_OBJECT(ok), "clicked", GTK_SIGNAL_FUNC(config_ok), NULL); GTK_WIDGET_SET_FLAGS(ok, GTK_CAN_DEFAULT); gtk_box_pack_start(GTK_BOX(bbox), ok, TRUE, TRUE, 0); - gtk_widget_show(ok); gtk_widget_grab_default(ok); cancel = gtk_button_new_with_label("Cancel"); gtk_signal_connect_object(GTK_OBJECT(cancel), "clicked", GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(fc_config_window)); GTK_WIDGET_SET_FLAGS(cancel, GTK_CAN_DEFAULT); gtk_box_pack_start(GTK_BOX(bbox), cancel, TRUE, TRUE, 0); - gtk_widget_show(cancel); - gtk_widget_show(bbox); - - gtk_widget_show(vbox); - gtk_widget_show(fc_config_window); + gtk_widget_show_all(fc_config_window); } else { Index: audacious-plugin-fc.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugin-fc/devel/audacious-plugin-fc.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- audacious-plugin-fc.spec 5 Jun 2009 10:42:14 -0000 1.13 +++ audacious-plugin-fc.spec 15 Jul 2009 12:17:29 -0000 1.14 @@ -1,19 +1,25 @@ +# Minimum audacious/audacious-plugins version in inter-package +# dependencies. We have 2.1 for both, so we enforce 2.1. +%define aud_ver 2.1 + %define plugindir %(pkg-config audacious --variable=input_plugin_dir) Summary: Future Composer input plugin for Audacious Name: audacious-plugin-fc Version: 0.3 -Release: 3 +Release: 4 URL: http://xmms-fc.sourceforge.net/ License: GPLv2+ Source: http://download.sourceforge.net/xmms-fc/audacious-plugin-fc-%{version}.tar.bz2 +Patch0: audacious-plugin-fc-0.3-audacious2.patch +Patch1: audacious-plugin-fc-0.3-dialog.patch Group: Applications/Multimedia Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: audacious-devel >= 1.4 +BuildRequires: audacious-devel >= %{aud_ver} BuildRequires: pkgconfig Provides: audacious-plugins-fc = %{version}-%{release} -Requires: audacious +Requires: audacious >= %{aud_ver} %description @@ -23,6 +29,8 @@ music files from AMIGA. Song-length dete %prep %setup -q +%patch0 -p1 -b .audacious2 +%patch1 -p1 -b .dialog %build @@ -50,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 7 2009 Michael Schwendt - 0.3-4 +- Patch for Audacious 2. + * Fri Jun 5 2009 Michael Schwendt - 0.3-3 - Rebuild for libmowgli SONAME dependency. - Add audacious-plugins-fc Provides. From pkgdb at fedoraproject.org Wed Jul 15 12:18:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:18:07 +0000 Subject: [pkgdb] mftrace ownership updated Message-ID: <20090715121807.9AE7610F80A@bastion2.fedora.phx.redhat.com> Package mftrace in Fedora devel is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mftrace From pkgdb at fedoraproject.org Wed Jul 15 12:18:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:18:15 +0000 Subject: [pkgdb] mftrace ownership updated Message-ID: <20090715121815.2DD8010F898@bastion2.fedora.phx.redhat.com> Package mftrace in Fedora 11 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mftrace From pkgdb at fedoraproject.org Wed Jul 15 12:18:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:18:16 +0000 Subject: [pkgdb] mftrace ownership updated Message-ID: <20090715121816.3DF1110F89F@bastion2.fedora.phx.redhat.com> Package mftrace in Fedora 9 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mftrace From pkgdb at fedoraproject.org Wed Jul 15 12:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 12:18:14 +0000 Subject: [pkgdb] mftrace ownership updated Message-ID: <20090715121814.CD11710F888@bastion2.fedora.phx.redhat.com> Package mftrace in Fedora 10 is now owned by limb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mftrace From jwboyer at fedoraproject.org Wed Jul 15 12:21:47 2009 From: jwboyer at fedoraproject.org (jwboyer) Date: Wed, 15 Jul 2009 12:21:47 +0000 (UTC) Subject: rpms/jfsutils/devel jfsutils.spec,1.27,1.28 Message-ID: <20090715122147.B1A3411C00DF@cvs1.fedora.phx.redhat.com> Author: jwboyer Update of /cvs/pkgs/rpms/jfsutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20896 Modified Files: jfsutils.spec Log Message: Fix rawhide build failure due to e2fsprogs split Index: jfsutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/jfsutils/devel/jfsutils.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- jfsutils.spec 25 Mar 2009 19:03:59 -0000 1.27 +++ jfsutils.spec 15 Jul 2009 12:21:17 -0000 1.28 @@ -1,13 +1,13 @@ Summary: Utilities for managing the JFS filesystem Name: jfsutils Version: 1.1.13 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz URL: http://jfs.sourceforge.net/ Group: System Environment/Base License: GPLv2+ Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -Buildrequires: e2fsprogs-devel +Buildrequires: libuuid-devel %description The jfsutils package contains a number of utilities for creating, @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING NEWS ChangeLog %changelog +* Wed Jul 15 2009 Josh Boyer - 1.1.13-7 +- Update for e2fsprogs package split-up + * Wed Mar 25 2009 Josh Boyer - 1.1.13-6 - Trivialities From chitlesh at fedoraproject.org Wed Jul 15 12:22:00 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Wed, 15 Jul 2009 12:22:00 +0000 (UTC) Subject: rpms/perl-SystemPerl/F-10 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 perl-SystemPerl.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090715122200.7835B11C00DF@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/perl-SystemPerl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21225/F-10 Modified Files: .cvsignore import.log perl-SystemPerl.spec sources Log Message: 1.330 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Jun 2009 17:56:49 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:22:00 -0000 1.3 @@ -1 +1 @@ -SystemPerl-1.321.tar.gz +SystemPerl-1.330.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Jun 2009 17:56:49 -0000 1.1 +++ import.log 15 Jul 2009 12:22:00 -0000 1.2 @@ -1 +1,2 @@ perl-SystemPerl-1_321-1_fc11:F-10:perl-SystemPerl-1.321-1.fc11.src.rpm:1244742733 +perl-SystemPerl-1_330-1_fc11:F-10:perl-SystemPerl-1.330-1.fc11.src.rpm:1247660375 Index: perl-SystemPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-10/perl-SystemPerl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SystemPerl.spec 11 Jun 2009 17:56:49 -0000 1.1 +++ perl-SystemPerl.spec 15 Jul 2009 12:22:00 -0000 1.2 @@ -11,7 +11,7 @@ %endif Name: perl-SystemPerl -Version: 1.321 +Version: 1.330 Release: 1%{?dist} Summary: SystemPerl Perl module @@ -21,7 +21,7 @@ URL: http://search.cpan.org/d Source0: http://www.cpan.org/authors/id/W/WS/WSNYDER/SystemPerl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch: %{name}-example.patch +Patch0: %{name}-example.patch BuildRequires: bison BuildRequires: flex @@ -65,11 +65,11 @@ This package provides emacs support for #Info: SystemC isn't in the environment # Fedora will not shipped SystemC due to licensing issues # SystemC patches for the user -%{__install} -d systemc_patches -%{__cp} -p patch*.diff systemc_patches +#%{__install} -d systemc_patches +#%{__cp} -p patch*.diff systemc_patches #Filtering Requires: and Provides -cat << \EOF > %{name}-prov +cat << EOF > %{name}-prov #!/bin/sh %{__perl_provides} $* |\ sed -e '/perl(SystemC::Netlist::Module)/d' @@ -89,7 +89,7 @@ chmod +x %{__perl_requires} # Prepare Makefile for Chitlesh's private SystemC rpm -%patch -p0 +%patch0 -p0 %build @@ -115,7 +115,7 @@ find $RPM_BUILD_ROOT -type f -name .pack find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; -#%{_fixperms} $RPM_BUILD_ROOT/* +%{_fixperms} $RPM_BUILD_ROOT/* # -devel package and support for SystemC @@ -143,7 +143,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc Changes COPYING README %doc example/ -%doc systemc_patches/ %{_bindir}/sp_includer %{_bindir}/sp_makecheck %{_bindir}/sp_preproc @@ -166,6 +165,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.330-1 +- uint_t bug file #RHBZ 511400 - Header Include Bug +- New upsteam release + * Thu Jun 11 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.321-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Jun 2009 17:56:49 -0000 1.2 +++ sources 15 Jul 2009 12:22:00 -0000 1.3 @@ -1 +1 @@ -7e8787083ea1ed71b5fdbfd580c7b7a7 SystemPerl-1.321.tar.gz +62054d4860b12ef297de75c4cbc68721 SystemPerl-1.330.tar.gz From chitlesh at fedoraproject.org Wed Jul 15 12:23:18 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Wed, 15 Jul 2009 12:23:18 +0000 (UTC) Subject: rpms/perl-SystemPerl/F-11 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 perl-SystemPerl.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090715122318.977C711C00DF@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/perl-SystemPerl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21570/F-11 Modified Files: .cvsignore import.log perl-SystemPerl.spec sources Log Message: 1.330 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Jun 2009 18:11:11 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:22:48 -0000 1.3 @@ -1 +1 @@ -SystemPerl-1.321.tar.gz +SystemPerl-1.330.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Jun 2009 18:11:12 -0000 1.1 +++ import.log 15 Jul 2009 12:22:48 -0000 1.2 @@ -1 +1,2 @@ perl-SystemPerl-1_321-1_fc11:F-11:perl-SystemPerl-1.321-1.fc11.src.rpm:1244743482 +perl-SystemPerl-1_330-1_fc11:F-11:perl-SystemPerl-1.330-1.fc11.src.rpm:1247660495 Index: perl-SystemPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-11/perl-SystemPerl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SystemPerl.spec 11 Jun 2009 18:11:12 -0000 1.1 +++ perl-SystemPerl.spec 15 Jul 2009 12:22:48 -0000 1.2 @@ -11,7 +11,7 @@ %endif Name: perl-SystemPerl -Version: 1.321 +Version: 1.330 Release: 1%{?dist} Summary: SystemPerl Perl module @@ -21,7 +21,7 @@ URL: http://search.cpan.org/d Source0: http://www.cpan.org/authors/id/W/WS/WSNYDER/SystemPerl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch: %{name}-example.patch +Patch0: %{name}-example.patch BuildRequires: bison BuildRequires: flex @@ -65,11 +65,11 @@ This package provides emacs support for #Info: SystemC isn't in the environment # Fedora will not shipped SystemC due to licensing issues # SystemC patches for the user -%{__install} -d systemc_patches -%{__cp} -p patch*.diff systemc_patches +#%{__install} -d systemc_patches +#%{__cp} -p patch*.diff systemc_patches #Filtering Requires: and Provides -cat << \EOF > %{name}-prov +cat << EOF > %{name}-prov #!/bin/sh %{__perl_provides} $* |\ sed -e '/perl(SystemC::Netlist::Module)/d' @@ -89,7 +89,7 @@ chmod +x %{__perl_requires} # Prepare Makefile for Chitlesh's private SystemC rpm -%patch -p0 +%patch0 -p0 %build @@ -115,7 +115,7 @@ find $RPM_BUILD_ROOT -type f -name .pack find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; -#%{_fixperms} $RPM_BUILD_ROOT/* +%{_fixperms} $RPM_BUILD_ROOT/* # -devel package and support for SystemC @@ -143,7 +143,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc Changes COPYING README %doc example/ -%doc systemc_patches/ %{_bindir}/sp_includer %{_bindir}/sp_makecheck %{_bindir}/sp_preproc @@ -166,6 +165,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.330-1 +- uint_t bug file #RHBZ 511400 - Header Include Bug +- New upsteam release + * Thu Jun 11 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.321-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Jun 2009 18:11:12 -0000 1.2 +++ sources 15 Jul 2009 12:22:48 -0000 1.3 @@ -1 +1 @@ -7e8787083ea1ed71b5fdbfd580c7b7a7 SystemPerl-1.321.tar.gz +62054d4860b12ef297de75c4cbc68721 SystemPerl-1.330.tar.gz From chitlesh at fedoraproject.org Wed Jul 15 12:24:31 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Wed, 15 Jul 2009 12:24:31 +0000 (UTC) Subject: rpms/perl-SystemPerl/EL-5 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 perl-SystemPerl.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090715122431.6069A11C00DF@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/perl-SystemPerl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21977/EL-5 Modified Files: .cvsignore import.log perl-SystemPerl.spec sources Log Message: 1.330 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Jun 2009 18:49:39 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:24:01 -0000 1.3 @@ -1 +1 @@ -SystemPerl-1.321.tar.gz +SystemPerl-1.330.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/EL-5/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Jun 2009 18:49:39 -0000 1.1 +++ import.log 15 Jul 2009 12:24:01 -0000 1.2 @@ -1 +1,2 @@ perl-SystemPerl-1_321-1_fc11:EL-5:perl-SystemPerl-1.321-1.fc11.src.rpm:1244746122 +perl-SystemPerl-1_330-1_fc11:EL-5:perl-SystemPerl-1.330-1.fc11.src.rpm:1247660569 Index: perl-SystemPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/EL-5/perl-SystemPerl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SystemPerl.spec 11 Jun 2009 18:49:39 -0000 1.1 +++ perl-SystemPerl.spec 15 Jul 2009 12:24:01 -0000 1.2 @@ -11,7 +11,7 @@ %endif Name: perl-SystemPerl -Version: 1.321 +Version: 1.330 Release: 1%{?dist} Summary: SystemPerl Perl module @@ -21,7 +21,7 @@ URL: http://search.cpan.org/d Source0: http://www.cpan.org/authors/id/W/WS/WSNYDER/SystemPerl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch: %{name}-example.patch +Patch0: %{name}-example.patch BuildRequires: bison BuildRequires: flex @@ -65,11 +65,11 @@ This package provides emacs support for #Info: SystemC isn't in the environment # Fedora will not shipped SystemC due to licensing issues # SystemC patches for the user -%{__install} -d systemc_patches -%{__cp} -p patch*.diff systemc_patches +#%{__install} -d systemc_patches +#%{__cp} -p patch*.diff systemc_patches #Filtering Requires: and Provides -cat << \EOF > %{name}-prov +cat << EOF > %{name}-prov #!/bin/sh %{__perl_provides} $* |\ sed -e '/perl(SystemC::Netlist::Module)/d' @@ -89,7 +89,7 @@ chmod +x %{__perl_requires} # Prepare Makefile for Chitlesh's private SystemC rpm -%patch -p0 +%patch0 -p0 %build @@ -115,7 +115,7 @@ find $RPM_BUILD_ROOT -type f -name .pack find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; -#%{_fixperms} $RPM_BUILD_ROOT/* +%{_fixperms} $RPM_BUILD_ROOT/* # -devel package and support for SystemC @@ -143,7 +143,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc Changes COPYING README %doc example/ -%doc systemc_patches/ %{_bindir}/sp_includer %{_bindir}/sp_makecheck %{_bindir}/sp_preproc @@ -166,6 +165,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.330-1 +- uint_t bug file #RHBZ 511400 - Header Include Bug +- New upsteam release + * Thu Jun 11 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.321-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Jun 2009 18:49:39 -0000 1.2 +++ sources 15 Jul 2009 12:24:01 -0000 1.3 @@ -1 +1 @@ -7e8787083ea1ed71b5fdbfd580c7b7a7 SystemPerl-1.321.tar.gz +62054d4860b12ef297de75c4cbc68721 SystemPerl-1.330.tar.gz From chitlesh at fedoraproject.org Wed Jul 15 12:26:01 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Wed, 15 Jul 2009 12:26:01 +0000 (UTC) Subject: rpms/perl-SystemPerl/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 perl-SystemPerl.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090715122601.6097D11C00DF@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/perl-SystemPerl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22478/devel Modified Files: .cvsignore import.log perl-SystemPerl.spec sources Log Message: 1.330 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Jun 2009 18:29:50 -0000 1.2 +++ .cvsignore 15 Jul 2009 12:25:31 -0000 1.3 @@ -1 +1 @@ -SystemPerl-1.321.tar.gz +SystemPerl-1.330.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Jun 2009 18:29:50 -0000 1.1 +++ import.log 15 Jul 2009 12:25:31 -0000 1.2 @@ -1 +1,2 @@ perl-SystemPerl-1_321-1_fc11:HEAD:perl-SystemPerl-1.321-1.fc11.src.rpm:1244744524 +perl-SystemPerl-1_330-1_fc11:HEAD:perl-SystemPerl-1.330-1.fc11.src.rpm:1247660658 Index: perl-SystemPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/devel/perl-SystemPerl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SystemPerl.spec 11 Jun 2009 18:29:50 -0000 1.1 +++ perl-SystemPerl.spec 15 Jul 2009 12:25:31 -0000 1.2 @@ -11,7 +11,7 @@ %endif Name: perl-SystemPerl -Version: 1.321 +Version: 1.330 Release: 1%{?dist} Summary: SystemPerl Perl module @@ -21,7 +21,7 @@ URL: http://search.cpan.org/d Source0: http://www.cpan.org/authors/id/W/WS/WSNYDER/SystemPerl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch: %{name}-example.patch +Patch0: %{name}-example.patch BuildRequires: bison BuildRequires: flex @@ -65,11 +65,11 @@ This package provides emacs support for #Info: SystemC isn't in the environment # Fedora will not shipped SystemC due to licensing issues # SystemC patches for the user -%{__install} -d systemc_patches -%{__cp} -p patch*.diff systemc_patches +#%{__install} -d systemc_patches +#%{__cp} -p patch*.diff systemc_patches #Filtering Requires: and Provides -cat << \EOF > %{name}-prov +cat << EOF > %{name}-prov #!/bin/sh %{__perl_provides} $* |\ sed -e '/perl(SystemC::Netlist::Module)/d' @@ -89,7 +89,7 @@ chmod +x %{__perl_requires} # Prepare Makefile for Chitlesh's private SystemC rpm -%patch -p0 +%patch0 -p0 %build @@ -115,7 +115,7 @@ find $RPM_BUILD_ROOT -type f -name .pack find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; -#%{_fixperms} $RPM_BUILD_ROOT/* +%{_fixperms} $RPM_BUILD_ROOT/* # -devel package and support for SystemC @@ -143,7 +143,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc Changes COPYING README %doc example/ -%doc systemc_patches/ %{_bindir}/sp_includer %{_bindir}/sp_makecheck %{_bindir}/sp_preproc @@ -166,6 +165,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.330-1 +- uint_t bug file #RHBZ 511400 - Header Include Bug +- New upsteam release + * Thu Jun 11 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.321-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Jun 2009 18:29:50 -0000 1.2 +++ sources 15 Jul 2009 12:25:31 -0000 1.3 @@ -1 +1 @@ -7e8787083ea1ed71b5fdbfd580c7b7a7 SystemPerl-1.321.tar.gz +62054d4860b12ef297de75c4cbc68721 SystemPerl-1.330.tar.gz From ondrejj at fedoraproject.org Wed Jul 15 12:27:44 2009 From: ondrejj at fedoraproject.org (ondrejj) Date: Wed, 15 Jul 2009 12:27:44 +0000 (UTC) Subject: rpms/sems/devel sems.spec,1.5,1.6 Message-ID: <20090715122744.53DA511C00DF@cvs1.fedora.phx.redhat.com> Author: ondrejj Update of /cvs/pkgs/rpms/sems/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22997 Modified Files: sems.spec Log Message: Removed python subpackage. Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/sems.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sems.spec 11 Jul 2009 14:55:08 -0000 1.5 +++ sems.spec 15 Jul 2009 12:27:14 -0000 1.6 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 1%{?dist}.1 +Release: 2%{?dist} URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -123,14 +123,14 @@ Requires: %{name}-ivr = %{version}-%{rel This application collects a PIN and then transfers using a (proprietary) REFER the call. -%package python -Summary: Python bindings for SEMS -Group: Applications/Communications -Requires: python >= 2.3 -Requires: %{name} = %{version}-%{release} +#%package python +#Summary: Python bindings for SEMS +#Group: Applications/Communications +#Requires: python >= 2.3 +#Requires: %{name} = %{version}-%{release} -%description python -Python bindings for SEMS. +#%description python +#Python bindings for SEMS. %package speex Summary: Speex support for SEMS @@ -204,10 +204,9 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/%{n rm -f $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/etc/conf_auth.conf # fix permissions -chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/log.py -chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/log.pyc -chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/py_sems_log.py -chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/py_sems_log.pyc +chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/log.py* +#chmod 644 $RPM_BUILD_ROOT%{_libdir}/%{name}/plug-in/py_sems_log.py* +rm -f $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/etc/py_sems.conf %clean rm -rf $RPM_BUILD_ROOT @@ -526,14 +525,14 @@ fi %{_libdir}/%{name}/ivr/pin_collect.pyc %{_libdir}/%{name}/ivr/pin_collect.pyo -%files python -%defattr(-,root,root) -%config(noreplace) %{_sysconfdir}/%{name}/etc/py_sems.conf -%doc doc/Readme.py_sems -%{_libdir}/%{name}/plug-in/py_sems.so -%{_libdir}/%{name}/plug-in/py_sems_log.py -%{_libdir}/%{name}/plug-in/py_sems_log.pyc -%{_libdir}/%{name}/plug-in/py_sems_log.pyo +#%files python +#%defattr(-,root,root) +#%config(noreplace) %{_sysconfdir}/%{name}/etc/py_sems.conf +#%doc doc/Readme.py_sems +#%{_libdir}/%{name}/plug-in/py_sems.so +#%{_libdir}/%{name}/plug-in/py_sems_log.py +#%{_libdir}/%{name}/plug-in/py_sems_log.pyc +#%{_libdir}/%{name}/plug-in/py_sems_log.pyo %files speex %defattr(-,root,root) @@ -546,6 +545,10 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Wed Jul 15 2009 J??n ONDREJ (SAL) - 1.1.1-2 +- disabled py_sems (python) subpackage until upstream fixes sip-4.8 + compatibility + * Sat Jul 11 2009 Peter Lemenkov 1.1.1-1 - Ver. 1.1.1 From stransky at fedoraproject.org Wed Jul 15 12:59:01 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Wed, 15 Jul 2009 12:59:01 +0000 (UTC) Subject: rpms/nspluginwrapper/devel nspluginwrapper-20090625-fix-npident-array-sending.patch, NONE, 1.1 nspluginwrapper.spec, 1.79, 1.80 Message-ID: <20090715125901.80DF511C00DF@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/nspluginwrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30940 Modified Files: nspluginwrapper.spec Added Files: nspluginwrapper-20090625-fix-npident-array-sending.patch Log Message: NPIdentifiers fix by Tristan Schmelcher (Google) nspluginwrapper-20090625-fix-npident-array-sending.patch: --- NEW FILE nspluginwrapper-20090625-fix-npident-array-sending.patch --- Index: src/npw-viewer.c =================================================================== --- src/npw-viewer.c (revision 942) +++ src/npw-viewer.c (working copy) @@ -2059,7 +2059,7 @@ RPC_METHOD_NPN_INVOKE, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, methodName, + RPC_TYPE_NP_IDENTIFIER, &methodName, RPC_TYPE_ARRAY, RPC_TYPE_NP_VARIANT, argCount, args, RPC_TYPE_INVALID); @@ -2249,7 +2249,7 @@ RPC_METHOD_NPN_GET_PROPERTY, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, propertyName, + RPC_TYPE_NP_IDENTIFIER, &propertyName, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2311,7 +2311,7 @@ RPC_METHOD_NPN_SET_PROPERTY, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, propertyName, + RPC_TYPE_NP_IDENTIFIER, &propertyName, RPC_TYPE_NP_VARIANT, value, RPC_TYPE_INVALID); @@ -2370,7 +2370,7 @@ RPC_METHOD_NPN_REMOVE_PROPERTY, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, propertyName, + RPC_TYPE_NP_IDENTIFIER, &propertyName, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2427,7 +2427,7 @@ RPC_METHOD_NPN_HAS_PROPERTY, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, propertyName, + RPC_TYPE_NP_IDENTIFIER, &propertyName, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2484,7 +2484,7 @@ RPC_METHOD_NPN_HAS_METHOD, RPC_TYPE_NPW_PLUGIN_INSTANCE, plugin, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, methodName, + RPC_TYPE_NP_IDENTIFIER, &methodName, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2780,7 +2780,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPN_IDENTIFIER_IS_STRING, - RPC_TYPE_NP_IDENTIFIER, identifier, + RPC_TYPE_NP_IDENTIFIER, &identifier, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2838,7 +2838,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPN_UTF8_FROM_IDENTIFIER, - RPC_TYPE_NP_IDENTIFIER, identifier, + RPC_TYPE_NP_IDENTIFIER, &identifier, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -2902,7 +2902,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPN_INT_FROM_IDENTIFIER, - RPC_TYPE_NP_IDENTIFIER, identifier, + RPC_TYPE_NP_IDENTIFIER, &identifier, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { Index: src/npw-wrapper.c =================================================================== --- src/npw-wrapper.c (revision 942) +++ src/npw-wrapper.c (working copy) @@ -1528,7 +1528,7 @@ free(name); return rpc_method_send_reply(connection, - RPC_TYPE_NP_IDENTIFIER, ident, + RPC_TYPE_NP_IDENTIFIER, &ident, RPC_TYPE_INVALID); } @@ -1601,7 +1601,7 @@ NPIdentifier ident = g_NPN_GetIntIdentifier(intid); return rpc_method_send_reply(connection, - RPC_TYPE_NP_IDENTIFIER, ident, + RPC_TYPE_NP_IDENTIFIER, &ident, RPC_TYPE_INVALID); } Index: src/npruntime.c =================================================================== --- src/npruntime.c (revision 942) +++ src/npruntime.c (working copy) @@ -221,7 +221,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_HAS_METHOD, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -327,7 +327,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_INVOKE, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_ARRAY, RPC_TYPE_NP_VARIANT, argCount, args, RPC_TYPE_INVALID); @@ -509,7 +509,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_HAS_PROPERTY, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -599,7 +599,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_GET_PROPERTY, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { @@ -684,7 +684,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_SET_PROPERTY, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_NP_VARIANT, value, RPC_TYPE_INVALID); @@ -763,7 +763,7 @@ int error = rpc_method_invoke(g_rpc_connection, RPC_METHOD_NPCLASS_REMOVE_PROPERTY, RPC_TYPE_NP_OBJECT, npobj, - RPC_TYPE_NP_IDENTIFIER, name, + RPC_TYPE_NP_IDENTIFIER, &name, RPC_TYPE_INVALID); if (error != RPC_ERROR_NO_ERROR) { Index: src/npw-rpc.c =================================================================== --- src/npw-rpc.c (revision 942) +++ src/npw-rpc.c (working copy) @@ -1252,7 +1252,7 @@ // the browser side static int do_send_NPIdentifier(rpc_message_t *message, void *p_value) { - NPIdentifier ident = (NPIdentifier)p_value; + NPIdentifier ident = *(NPIdentifier *)p_value; int id = 0; if (ident) { #ifdef BUILD_WRAPPER Index: nspluginwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/nspluginwrapper/devel/nspluginwrapper.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- nspluginwrapper.spec 15 Jul 2009 06:16:43 -0000 1.79 +++ nspluginwrapper.spec 15 Jul 2009 12:58:31 -0000 1.80 @@ -73,7 +73,7 @@ Summary: A compatibility layer for Netscape 4 plugins Name: nspluginwrapper Version: 1.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Source0: %{name}-%{version}%{?svndate:-%{svndate}}.tar.bz2 Source1: %{plugin_config_name}.tar.gz Source2: plugin-config.sh.in @@ -81,6 +81,7 @@ Source3: %{name}.sh.in Patch1: nspluginwrapper-1.3.0-make.patch Patch2: nspluginwrapper-1.3.0-configure.patch Patch3: nspluginwrapper-1.3.0-directory.patch +Patch4: nspluginwrapper-20090625-fix-npident-array-sending.patch Patch100: plugin-config-setuid.patch Patch101: plugin-config-umask.patch Patch102: plugin-config-print.patch @@ -113,6 +114,7 @@ This package consists in: %patch1 -p1 -b .make %patch2 -p1 -b .conf %patch3 -p1 -b .dir +%patch4 -p0 -b .array # Plugin-config patches pushd %plugin_config_name @@ -244,6 +246,9 @@ fi; %changelog +* Wed Jul 15 2009 Martin Stransky 1.3.0-7 +- NPIdentifiers fix by Tristan Schmelcher (Google) + * Wed Jul 15 2009 Martin Stransky 1.3.0-6 - Package kit plugin is ignored now (#511385) From jwilson at fedoraproject.org Wed Jul 15 13:01:50 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 15 Jul 2009 13:01:50 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel import.log, NONE, 1.1 wacomexpresskeys.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090715130150.1A04A11C00DF@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31730/devel Modified Files: .cvsignore sources Added Files: import.log wacomexpresskeys.spec Log Message: wacomexpresskeys: initial checkin to fedora cvs --- NEW FILE import.log --- wacomexpresskeys-0_4_2-1_fc11:HEAD:wacomexpresskeys-0.4.2-1.fc11.src.rpm:1247662808 --- NEW FILE wacomexpresskeys.spec --- %define _x11dir /usr %define _x11libdir %{_x11dir}/%{_lib} %define _x11sdkdir %{_includedir} %define tarname expresskeys Name: wacomexpresskeys Version: 0.4.2 Release: 1%{?dist} Summary: Wacom ExpressKeys and Touch Strips configuration utility Group: System Environment/Base License: GPLv2+ URL: http://expresskeys.ruivo.org/ Source0: http://expresskeys.ruivo.org/%{tarname}-%{version}.tar.gz BuildRequires: libX11-devel, libXi-devel, xorg-x11-server-devel, libXext-devel, libXtst-devel Requires: xorg-x11-server-Xorg, linuxwacom ExcludeArch: s390 s390x %description Configuration utility to bind Wacom tablet's ExpressKeys and Touch Strips to generate other input events. %prep %setup -q -n %{tarname}-%{version} %build #export RPM_LIBDIR=%{_lib} #configure --with-xinc=%{_x11sdkdir} --with-xlib=%{_x11libdir} %configure export CFLAGS="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR="$RPM_BUILD_ROOT" %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS BUGS README TODO ChangeLog NEWS %{_bindir}/expresskeys %changelog * Tue Jul 14 2009 Jarod Wilson 0.4.2-1 - Update to 0.4.2 - Submit for Fedora package review * Wed Apr 09 2008 Aristeu Rozanski 0.4.1-1 - initial version for RHEL-5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:34:37 -0000 1.1 +++ .cvsignore 15 Jul 2009 13:01:49 -0000 1.2 @@ -0,0 +1 @@ +expresskeys-0.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:34:37 -0000 1.1 +++ sources 15 Jul 2009 13:01:49 -0000 1.2 @@ -0,0 +1 @@ +78e062f572e8bd9d7451bb027db01a95 expresskeys-0.4.2.tar.gz From kasal at fedoraproject.org Wed Jul 15 13:01:52 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 15 Jul 2009 13:01:52 +0000 (UTC) Subject: rpms/fig2ps/devel .cvsignore, 1.4, 1.5 fig2ps.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090715130152.D2A7C11C00DF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/fig2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31913 Modified Files: .cvsignore fig2ps.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fig2ps/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 25 Jan 2007 22:23:25 -0000 1.4 +++ .cvsignore 15 Jul 2009 13:01:52 -0000 1.5 @@ -1 +1 @@ -fig2ps-1.3.6.tar.gz +fig2ps-1.4.1.tar.gz Index: fig2ps.spec =================================================================== RCS file: /cvs/extras/rpms/fig2ps/devel/fig2ps.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fig2ps.spec 24 Feb 2009 16:56:51 -0000 1.9 +++ fig2ps.spec 15 Jul 2009 13:01:52 -0000 1.10 @@ -1,6 +1,6 @@ Name: fig2ps -Version: 1.3.6 -Release: 4%{?dist} +Version: 1.4.1 +Release: 1%{?dist} Summary: Utility for converting xfig pictures to PS/PDF Group: Applications/Publishing @@ -9,7 +9,7 @@ URL: http://fig2ps.sourceforg Source0: http://prdownloads.sourceforge.net/fig2ps/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Requires: tetex-latex tetex-dvips ghostscript gv transfig +Requires: texlive-latex texlive-dvips ghostscript gv transfig %description fig2ps is a perl script which converts xfig files to postscript or @@ -28,7 +28,7 @@ mathematical equations) to be included i %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install PREFIX=/usr DESTDIR=$RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT%{_datadir}/doc %clean @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) /etc/fig2ps %changelog +* Wed Jul 15 2009 Stepan Kasal - 1.4.1-1 +- new upstream version + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fig2ps/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Jan 2007 22:23:25 -0000 1.4 +++ sources 15 Jul 2009 13:01:52 -0000 1.5 @@ -1 +1 @@ -ad8156d5177d76bbfb9b84ea3f403453 fig2ps-1.3.6.tar.gz +aa32d465d990e60ac67e9548a0e19539 fig2ps-1.4.1.tar.gz From jwilson at fedoraproject.org Wed Jul 15 13:03:13 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 15 Jul 2009 13:03:13 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel wacomexpresskeys.spec,1.1,1.2 Message-ID: <20090715130313.6FE7211C00DF@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32392 Modified Files: wacomexpresskeys.spec Log Message: drop some commented-out detritus from spec Index: wacomexpresskeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/devel/wacomexpresskeys.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wacomexpresskeys.spec 15 Jul 2009 13:01:49 -0000 1.1 +++ wacomexpresskeys.spec 15 Jul 2009 13:03:13 -0000 1.2 @@ -25,8 +25,6 @@ generate other input events. %setup -q -n %{tarname}-%{version} %build -#export RPM_LIBDIR=%{_lib} -#configure --with-xinc=%{_x11sdkdir} --with-xlib=%{_x11libdir} %configure export CFLAGS="$RPM_OPT_FLAGS" From limb at fedoraproject.org Wed Jul 15 13:03:20 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 15 Jul 2009 13:03:20 +0000 (UTC) Subject: rpms/vym/devel vym-0.10.0-editxlinkdialog-typeinfo.patch, 1.1, NONE vym-0.10.0-mainwindow-typeinfo.patch, 1.1, NONE vym-0.10.0-selection-typeinfo.patch, 1.1, NONE vym-0.10.0-xml-vym-typeinfo.patch, 1.1, NONE vym-1.10.0-dir-vars.patch, 1.1, NONE vym-1.10.0-docdir-searchList.patch, 1.1, NONE vym-1.10.0-ornamentedobj-typeinfo.patch, 1.1, NONE vym-1.10.0-xdg-open.patch, 1.1, NONE vym-mainwindow.patch, 1.1, NONE vym-pro.patch, 1.1, NONE vym-tex.patch, 1.1, NONE Message-ID: <20090715130320.3696C11C00DF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/vym/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32360 Removed Files: vym-0.10.0-editxlinkdialog-typeinfo.patch vym-0.10.0-mainwindow-typeinfo.patch vym-0.10.0-selection-typeinfo.patch vym-0.10.0-xml-vym-typeinfo.patch vym-1.10.0-dir-vars.patch vym-1.10.0-docdir-searchList.patch vym-1.10.0-ornamentedobj-typeinfo.patch vym-1.10.0-xdg-open.patch vym-mainwindow.patch vym-pro.patch vym-tex.patch Log Message: Unused patch removal, BZ 511290. --- vym-0.10.0-editxlinkdialog-typeinfo.patch DELETED --- --- vym-0.10.0-mainwindow-typeinfo.patch DELETED --- --- vym-0.10.0-selection-typeinfo.patch DELETED --- --- vym-0.10.0-xml-vym-typeinfo.patch DELETED --- --- vym-1.10.0-dir-vars.patch DELETED --- --- vym-1.10.0-docdir-searchList.patch DELETED --- --- vym-1.10.0-ornamentedobj-typeinfo.patch DELETED --- --- vym-1.10.0-xdg-open.patch DELETED --- --- vym-mainwindow.patch DELETED --- --- vym-pro.patch DELETED --- --- vym-tex.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 15 13:04:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:04:31 +0000 Subject: [pkgdb] buoh ownership updated Message-ID: <20090715130432.0FE3110F898@bastion2.fedora.phx.redhat.com> Package buoh in Fedora devel is now owned by jdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/buoh From pkgdb at fedoraproject.org Wed Jul 15 13:04:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:04:43 +0000 Subject: [pkgdb] buoh ownership updated Message-ID: <20090715130443.31C4410F888@bastion2.fedora.phx.redhat.com> Package buoh in Fedora 10 is now owned by jdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/buoh From pkgdb at fedoraproject.org Wed Jul 15 13:04:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:04:46 +0000 Subject: [pkgdb] buoh ownership updated Message-ID: <20090715130446.DA8B410F80A@bastion2.fedora.phx.redhat.com> Package buoh in Fedora 9 is now owned by jdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/buoh From pkgdb at fedoraproject.org Wed Jul 15 13:04:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:04:50 +0000 Subject: [pkgdb] buoh ownership updated Message-ID: <20090715130450.D5E5F10F89F@bastion2.fedora.phx.redhat.com> Package buoh in Fedora 11 is now owned by jdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/buoh From pkgdb at fedoraproject.org Wed Jul 15 13:05:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:05:39 +0000 Subject: [pkgdb] strace: schwab has requested watchbugzilla Message-ID: <20090715130539.BD07410F898@bastion2.fedora.phx.redhat.com> schwab has requested the watchbugzilla acl on strace (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Wed Jul 15 13:05:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:05:40 +0000 Subject: [pkgdb] strace: schwab has requested watchcommits Message-ID: <20090715130540.8899410F8A3@bastion2.fedora.phx.redhat.com> schwab has requested the watchcommits acl on strace (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Wed Jul 15 13:05:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:05:41 +0000 Subject: [pkgdb] strace: schwab has requested commit Message-ID: <20090715130541.C1AF910F8A8@bastion2.fedora.phx.redhat.com> schwab has requested the commit acl on strace (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From kasal at fedoraproject.org Wed Jul 15 13:14:23 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 15 Jul 2009 13:14:23 +0000 (UTC) Subject: rpms/bmake/devel import.log,1.1,NONE Message-ID: <20090715131423.C9E7011C00DF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/bmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3409 Removed Files: import.log Log Message: remove import.log --- import.log DELETED --- From deji at fedoraproject.org Wed Jul 15 13:14:45 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Wed, 15 Jul 2009 13:14:45 +0000 (UTC) Subject: rpms/suitesparse/F-10 suitesparse.spec,1.6,1.7 Message-ID: <20090715131445.9351E11C00DF@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/suitesparse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3497 Modified Files: suitesparse.spec Log Message: * Wed Jul 15 2009 Deji Akingunola - 3.1.0-2 - Fix the undefined symbol bug (BZ #475411) in F10 branch Index: suitesparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/suitesparse/F-10/suitesparse.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- suitesparse.spec 3 Mar 2008 17:24:42 -0000 1.6 +++ suitesparse.spec 15 Jul 2009 13:14:45 -0000 1.7 @@ -1,6 +1,6 @@ Name: suitesparse Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of sparse matrix libraries Group: System Environment/Libraries @@ -99,45 +99,78 @@ mkdir Devel Devel/AMD Devel/CHOLMOD Deve pushd AMD pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libamd.so.%{amd_version_major} -o ../Lib/libamd.so.%{amd_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/License Doc/ChangeLog ../Doc/AMD - cp Doc/*.pdf ../Devel/AMD + pushd ../Lib + gcc -shared -Wl,-soname,libamd.so.%{amd_version_major} -o \ + libamd.so.%{amd_version} ../AMD/Lib/*.o -lm + ln -sf libamd.so.%{amd_version} libamd.so.%{amd_version_major} + ln -sf libamd.so.%{amd_version} libamd.so + cp -p ../AMD/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/License Doc/ChangeLog ../Doc/AMD + cp -p Doc/*.pdf ../Devel/AMD popd pushd BTF pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libbtf.so.%{btf_version_major} -o libbtf.so.%{btf_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/* ../Doc/BTF + pushd ../Lib + gcc -shared -Wl,-soname,libbtf.so.%{btf_version_major} -o \ + libbtf.so.%{btf_version} ../BTF/Lib/*.o + ln -sf libbtf.so.%{btf_version} libbtf.so.%{btf_version_major} + ln -sf libbtf.so.%{btf_version} libbtf.so + cp -p ../BTF/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/* ../Doc/BTF popd pushd CAMD pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libcamd.so.%{camd_version_major} -o ../Lib/libcamd.so.%{camd_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/ChangeLog Doc/License ../Doc/CAMD - cp Doc/*.pdf ../Devel/CAMD + pushd ../Lib + gcc -shared -Wl,-soname,libcamd.so.%{camd_version_major} -o \ + libcamd.so.%{camd_version} ../CAMD/Lib/*.o -lm + ln -sf libcamd.so.%{camd_version} libcamd.so.%{camd_version_major} + ln -sf libcamd.so.%{camd_version} libcamd.so + cp -p ../CAMD/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/ChangeLog Doc/License ../Doc/CAMD + cp -p Doc/*.pdf ../Devel/CAMD popd pushd CCOLAMD pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libccolamd.so.%{ccolamd_version_major} -o libccolamd.so.%{ccolamd_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/* ../Doc/CCOLAMD + pushd ../Lib + gcc -shared -Wl,-soname,libccolamd.so.%{ccolamd_version_major} -o \ + libccolamd.so.%{ccolamd_version} ../CCOLAMD/Lib/*.o -lm + ln -sf libccolamd.so.%{ccolamd_version} libccolamd.so.%{ccolamd_version_major} + ln -sf libccolamd.so.%{ccolamd_version} libccolamd.so + cp -p ../CCOLAMD/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/* ../Doc/CCOLAMD popd -pushd Lib + +pushd COLAMD + pushd Lib + make CFLAGS="$RPM_OPT_FLAGS -fPIC" + popd + pushd ../Lib + gcc -shared -Wl,-soname,libcolamd.so.%{colamd_version_major} -o \ + libcolamd.so.%{colamd_version} ../COLAMD/Lib/*.o -lm + ln -sf libcolamd.so.%{colamd_version} libcolamd.so.%{colamd_version_major} + ln -sf libcolamd.so.%{colamd_version} libcolamd.so + cp -p ../COLAMD/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/* ../Doc/COLAMD popd %if "%{?enable_metis}" == "1" @@ -148,112 +181,110 @@ CHOLMOD_FLAGS="$RPM_OPT_FLAGS -DNPARTITI pushd CHOLMOD pushd Lib make CFLAGS="$CHOLMOD_FLAGS" - gcc -shared -Wl,-soname,libcholmod.so.%{cholmod_version_major} -o ../Lib/libcholmod.so.%{cholmod_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt ../Doc/CHOLMOD - cp Cholesky/License.txt ../Doc/CHOLMOD/Cholesky_License.txt - cp Core/License.txt ../Doc/CHOLMOD/Core_License.txt - cp MatrixOps/License.txt ../Doc/CHOLMOD/MatrixOps_License.txt - cp Partition/License.txt ../Doc/CHOLMOD/Partition_License.txt - cp Supernodal/License.txt ../Doc/CHOLMOD/Supernodal_License.txt - cp Doc/*.pdf ../Devel/CHOLMOD -popd - -pushd COLAMD - pushd Lib - make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libcolamd.so.%{colamd_version_major} -o libcolamd.so.%{colamd_version} `ls *.o` - popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/* ../Doc/COLAMD + pushd ../Lib + gcc -shared -Wl,-soname,libcholmod.so.%{cholmod_version_major} -o \ + libcholmod.so.%{cholmod_version} ../CHOLMOD/Lib/*.o \ + -L%{_libdir}/atlas -lcblas -llapack libamd.so.%{amd_version_major} \ + libcamd.so.%{camd_version_major} libcolamd.so.%{colamd_version_major} \ + libccolamd.so.%{ccolamd_version_major} -lm + ln -sf libcholmod.so.%{cholmod_version} libcholmod.so.%{cholmod_version_major} + ln -sf libcholmod.so.%{cholmod_version} libcholmod.so + cp -p ../CHOLMOD/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt ../Doc/CHOLMOD + cp -p Cholesky/License.txt ../Doc/CHOLMOD/Cholesky_License.txt + cp -p Core/License.txt ../Doc/CHOLMOD/Core_License.txt + cp -p MatrixOps/License.txt ../Doc/CHOLMOD/MatrixOps_License.txt + cp -p Partition/License.txt ../Doc/CHOLMOD/Partition_License.txt + cp -p Supernodal/License.txt ../Doc/CHOLMOD/Supernodal_License.txt + cp -p Doc/*.pdf ../Devel/CHOLMOD popd %if "%{?enable_csparse}" == "1" pushd CSparse pushd Source make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libcsparse.so.%{csparse_version_major} -o libcsparse.so.%{csparse_version} `ls *.o` - cp *.a *.so* ../../Lib - cp cs.h ../../Include + cp -p cs.h ../../Include + popd + pushd ../Lib + gcc -shared -Wl,-soname,libcsparse.so.%{csparse_version_major} -o \ + libcsparse.so.%{csparse_version} ../CSparse/Source/*.o -lm + ln -sf libcsparse.so.%{csparse_version} libcsparse.so.%{csparse_version_major} + ln -sf libcsparse.so.%{csparse_version} libcsparse.so + cp -p ../CSparse/Source/*.a ./ popd mkdir ../Doc/CSparse/ - cp Doc/* ../Doc/CSparse + cp -p Doc/* ../Doc/CSparse popd %else pushd CXSparse pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libcxsparse.so.%{cxsparse_version_major} -o libcxsparse.so.%{cxsparse_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/cs.h ../Include + pushd ../Lib + gcc -shared -Wl,-soname,libcxsparse.so.%{cxsparse_version_major} -o \ + libcxsparse.so.%{cxsparse_version} ../CXSparse/Lib/*.o -lm + ln -sf libcxsparse.so.%{cxsparse_version} libcxsparse.so.%{cxsparse_version_major} + ln -sf libcxsparse.so.%{cxsparse_version} libcxsparse.so + cp -p ../CXSparse/Lib/*.a ./ + popd + cp -p Include/cs.h ../Include mkdir ../Doc/CXSparse/ - cp Doc/* ../Doc/CXSparse + cp -p Doc/* ../Doc/CXSparse popd %endif pushd KLU pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libklu.so.%{klu_version_major} -o libklu.so.%{klu_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/lesser.txt ../Doc/KLU + pushd ../Lib + gcc -shared -Wl,-soname,libklu.so.%{klu_version_major} -o \ + libklu.so.%{klu_version} ../KLU/Lib/*.o \ + libamd.so.%{amd_version_major} libcolamd.so.%{colamd_version_major} \ + libbtf.so.%{btf_version_major} libcholmod.so.%{cholmod_version_major} + ln -sf libklu.so.%{klu_version} libklu.so.%{klu_version_major} + ln -sf libklu.so.%{klu_version} libklu.so + cp -p ../KLU/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/lesser.txt ../Doc/KLU popd pushd LDL pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libldl.so.%{ldl_version_major} -o libldl.so.%{ldl_version} `ls *.o` popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/ChangeLog Doc/lesser.txt ../Doc/LDL - cp Doc/*.pdf ../Devel/LDL + pushd ../Lib + gcc -shared -Wl,-soname,libldl.so.%{ldl_version_major} -o \ + libldl.so.%{ldl_version} ../LDL/Lib/*.o + ln -sf libldl.so.%{ldl_version} libldl.so.%{ldl_version_major} + ln -sf libldl.so.%{ldl_version} libldl.so + cp -p ../LDL/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/ChangeLog Doc/lesser.txt ../Doc/LDL + cp -p Doc/*.pdf ../Devel/LDL popd pushd UMFPACK pushd Lib make CFLAGS="$RPM_OPT_FLAGS -fPIC" - gcc -shared -Wl,-soname,libumfpack.so.%{umfpack_version_major} -o ../Lib/libumfpack.so.%{umfpack_version} `ls *.o` -lblas -lm popd - cp Lib/*.a Lib/*.so* ../Lib - cp Include/*.h ../Include - cp README.txt Doc/License Doc/ChangeLog Doc/gpl.txt ../Doc/UMFPACK - cp Doc/*.pdf ../Devel/UMFPACK -popd - -pushd Lib - ln -sf libamd.so.%{amd_version} libamd.so.%{amd_version_major} - ln -sf libamd.so.%{amd_version} libamd.so - ln -sf libbtf.so.%{btf_version} libbtf.so.%{btf_version_major} - ln -sf libbtf.so.%{btf_version} libbtf.so - ln -sf libcamd.so.%{camd_version} libcamd.so.%{camd_version_major} - ln -sf libcamd.so.%{camd_version} libcamd.so - ln -sf libccolamd.so.%{ccolamd_version} libccolamd.so.%{ccolamd_version_major} - ln -sf libccolamd.so.%{ccolamd_version} libccolamd.so - ln -sf libcholmod.so.%{cholmod_version} libcholmod.so.%{cholmod_version_major} - ln -sf libcholmod.so.%{cholmod_version} libcholmod.so - ln -sf libcolamd.so.%{colamd_version} libcolamd.so.%{colamd_version_major} - ln -sf libcolamd.so.%{colamd_version} libcolamd.so -%if "%{?enable_csparse}" == "1" - ln -sf libcsparse.so.%{csparse_version} libcsparse.so.%{csparse_version_major} - ln -sf libcsparse.so.%{csparse_version} libcsparse.so -%else - ln -sf libcxsparse.so.%{cxsparse_version} libcxsparse.so.%{cxsparse_version_major} - ln -sf libcxsparse.so.%{cxsparse_version} libcxsparse.so -%endif - ln -sf libklu.so.%{klu_version} libklu.so.%{klu_version_major} - ln -sf libklu.so.%{klu_version} libklu.so - ln -sf libldl.so.%{ldl_version} libldl.so.%{ldl_version_major} - ln -sf libldl.so.%{ldl_version} libldl.so - ln -sf libumfpack.so.%{umfpack_version} libumfpack.so.%{umfpack_version_major} - ln -sf libumfpack.so.%{umfpack_version} libumfpack.so + pushd ../Lib + gcc -shared -Wl,-soname,libumfpack.so.%{umfpack_version_major} -o \ + libumfpack.so.%{umfpack_version} ../UMFPACK/Lib/*.o \ + -L%{_libdir}/atlas -lcblas -llapack libamd.so.%{amd_version_major} -lm + ln -sf libumfpack.so.%{umfpack_version} libumfpack.so.%{umfpack_version_major} + ln -sf libumfpack.so.%{umfpack_version} libumfpack.so + cp -p ../UMFPACK/Lib/*.a ./ + popd + cp -p Include/*.h ../Include + cp -p README.txt Doc/License Doc/ChangeLog Doc/gpl.txt ../Doc/UMFPACK + cp -p Doc/*.pdf ../Devel/UMFPACK popd cp UFconfig/UFconfig.h Include @@ -298,6 +329,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/lib*.a %changelog +* Wed Jul 15 2009 Deji Akingunola - 3.1.0-2 +- Fix the undefined symbol bug (BZ #475411) in F10 branch + * Mon Mar 3 2008 Quentin Spencer 3.1.0-1 - Update to release 3.1.0. From pkgdb at fedoraproject.org Wed Jul 15 13:16:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:41 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchbugzilla Message-ID: <20090715131641.4B65D10F888@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on foomatic (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:16:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:43 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchcommits Message-ID: <20090715131643.583EC10F89C@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on foomatic (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:16:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:45 +0000 Subject: [pkgdb] foomatic: jpopelka has requested commit Message-ID: <20090715131645.8B62B10F8A3@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on foomatic (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:16:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:52 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchbugzilla Message-ID: <20090715131652.B190010F8A8@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on foomatic (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:16:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:55 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchcommits Message-ID: <20090715131655.273B510F8AA@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on foomatic (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:16:56 +0000 Subject: [pkgdb] foomatic: jpopelka has requested commit Message-ID: <20090715131656.9FFCE10F898@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on foomatic (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:17:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:03 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchcommits Message-ID: <20090715131703.2183E10F8BB@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on foomatic (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:17:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:01 +0000 Subject: [pkgdb] foomatic: jpopelka has requested watchbugzilla Message-ID: <20090715131701.4F50510F8B8@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on foomatic (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:17:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:05 +0000 Subject: [pkgdb] foomatic: jpopelka has requested commit Message-ID: <20090715131705.2333610F8BE@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on foomatic (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:17:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:34 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchbugzilla Message-ID: <20090715131734.9D24610F89C@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on hplip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:36 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchcommits Message-ID: <20090715131736.4304A10F8AA@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on hplip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:38 +0000 Subject: [pkgdb] hplip: jpopelka has requested commit Message-ID: <20090715131738.B82C410F8AD@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on hplip (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:44 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchbugzilla Message-ID: <20090715131744.9DE3710F8B1@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on hplip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:45 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchcommits Message-ID: <20090715131746.14DE510F8C2@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on hplip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:48 +0000 Subject: [pkgdb] hplip: jpopelka has requested commit Message-ID: <20090715131748.399BA10F8C7@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on hplip (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:52 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchbugzilla Message-ID: <20090715131752.5413810F8B6@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on hplip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:54 +0000 Subject: [pkgdb] hplip: jpopelka has requested watchcommits Message-ID: <20090715131754.1BA0310F8CA@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on hplip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:17:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:17:55 +0000 Subject: [pkgdb] hplip: jpopelka has requested commit Message-ID: <20090715131755.8709210F8CD@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on hplip (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:19:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:11 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchbugzilla Message-ID: <20090715131911.51AB710F8AC@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on gtk-murrine-engine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:12 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested commit Message-ID: <20090715131912.1ADDF10F8B0@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on gtk-murrine-engine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:14 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchcommits Message-ID: <20090715131915.0333210F8BD@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on gtk-murrine-engine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:15 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested approveacls Message-ID: <20090715131915.8B7B510F8C2@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on gtk-murrine-engine (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From jwilson at fedoraproject.org Wed Jul 15 13:19:21 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 15 Jul 2009 13:19:21 +0000 (UTC) Subject: rpms/wacomexpresskeys/F-11 wacomexpresskeys.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090715131921.CFFD411C00DF@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/wacomexpresskeys/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4445 Modified Files: sources Added Files: wacomexpresskeys.spec Log Message: populate f11 branch for build --- NEW FILE wacomexpresskeys.spec --- %define _x11dir /usr %define _x11libdir %{_x11dir}/%{_lib} %define _x11sdkdir %{_includedir} %define tarname expresskeys Name: wacomexpresskeys Version: 0.4.2 Release: 1%{?dist} Summary: Wacom ExpressKeys and Touch Strips configuration utility Group: System Environment/Base License: GPLv2+ URL: http://expresskeys.ruivo.org/ Source0: http://expresskeys.ruivo.org/%{tarname}-%{version}.tar.gz BuildRequires: libX11-devel, libXi-devel, xorg-x11-server-devel, libXext-devel, libXtst-devel Requires: xorg-x11-server-Xorg, linuxwacom ExcludeArch: s390 s390x %description Configuration utility to bind Wacom tablet's ExpressKeys and Touch Strips to generate other input events. %prep %setup -q -n %{tarname}-%{version} %build %configure export CFLAGS="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR="$RPM_BUILD_ROOT" %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS BUGS README TODO ChangeLog NEWS %{_bindir}/expresskeys %changelog * Tue Jul 14 2009 Jarod Wilson 0.4.2-1 - Update to 0.4.2 - Submit for Fedora package review * Wed Apr 09 2008 Aristeu Rozanski 0.4.1-1 - initial version for RHEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:34:37 -0000 1.1 +++ sources 15 Jul 2009 13:18:51 -0000 1.2 @@ -0,0 +1 @@ +78e062f572e8bd9d7451bb027db01a95 expresskeys-0.4.2.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 13:19:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:31 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchbugzilla Message-ID: <20090715131931.A507010F8C4@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on gtk-murrine-engine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:34 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchcommits Message-ID: <20090715131934.B25DE10F8C9@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on gtk-murrine-engine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:36 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested commit Message-ID: <20090715131936.ADAD510F8CC@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on gtk-murrine-engine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:37 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested approveacls Message-ID: <20090715131937.1C40E10F8D1@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on gtk-murrine-engine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:44 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchbugzilla Message-ID: <20090715131944.8A30210F8BA@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on gtk-murrine-engine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:45 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested watchcommits Message-ID: <20090715131945.422C010F8D5@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on gtk-murrine-engine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:47 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested commit Message-ID: <20090715131947.F11A210F8D3@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on gtk-murrine-engine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:19:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:19:50 +0000 Subject: [pkgdb] gtk-murrine-engine: sundaram has requested approveacls Message-ID: <20090715131950.8206410F8D9@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on gtk-murrine-engine (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 13:23:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:12 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132312.2A85910F8A5@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on foomatic (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:16 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132316.2826C10F8A9@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on foomatic (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:24 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132324.92D6710F89C@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on foomatic (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:35 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132337.06F0610F8A3@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on foomatic (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:38 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132338.6297C10F8A8@bastion2.fedora.phx.redhat.com> twaugh has set the commit acl on foomatic (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From bioinfornatics at fedoraproject.org Wed Jul 15 13:23:42 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 13:23:42 +0000 (UTC) Subject: rpms/valide/F-10 import.log,NONE,1.1 Message-ID: <20090715132342.30BEB11C00DF@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5715/F-10 Added Files: import.log Log Message: --- NEW FILE import.log --- valide-0_5_1-0_11_20090713svn278_fc11:F-10:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247664182 From pkgdb at fedoraproject.org Wed Jul 15 13:23:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:41 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132341.DA70810F8AF@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on foomatic (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:45 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132345.5D31D10F8AA@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on foomatic (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:23:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:23:47 +0000 Subject: [pkgdb] foomatic had acl change status Message-ID: <20090715132347.676B110F8B2@bastion2.fedora.phx.redhat.com> twaugh has set the commit acl on foomatic (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/foomatic From pkgdb at fedoraproject.org Wed Jul 15 13:24:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:15 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132415.7B27710F8AD@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:16 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132416.75D3010F8B6@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:16 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132416.8A48B10F8BB@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:16 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132416.8CA9D10F8BC@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:30 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132430.F263310F8B1@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:31 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132431.85ED310F8B4@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:34 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132434.7BFE010F8BF@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:35 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132435.0BC5310F8C2@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:38 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132438.AADDE10F89F@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:40 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132440.4923610F8C4@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:42 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132442.247A210F8C9@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:42 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132442.A68CD10F8CC@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:46 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132446.08C8910F8CF@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:48 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132448.4059A10F8D2@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:49 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132449.51FF810F8D3@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:49 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132450.0414810F8D5@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:52 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132452.C430910F8D7@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:52 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132452.D4EAA10F8DA@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:54 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132454.CF69C10F8DD@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:55 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132455.D96D810F8E0@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:24:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:24:58 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchcommits Message-ID: <20090715132458.EF33C10F8E2@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:25:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:02 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested watchbugzilla Message-ID: <20090715132502.B5DB710F8B7@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:25:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:04 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested commit Message-ID: <20090715132504.7B74710F8E5@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:25:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:05 +0000 Subject: [pkgdb] cdrkit: npajkovs has requested approveacls Message-ID: <20090715132505.912A010F8E8@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:25:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:13 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132513.7249110F8BB@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:16 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132516.E310B10F8EC@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:18 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132518.7585B10F8EE@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:20 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132520.2B99D10F8F1@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:23 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132523.EC59610F8F3@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:27 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132527.E374F10F8F9@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:29 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132529.9316010F8FB@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:31 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132531.368E410F8FE@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From kasal at fedoraproject.org Wed Jul 15 13:15:02 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Wed, 15 Jul 2009 13:15:02 +0000 (UTC) Subject: rpms/mk-files/devel import.log,1.1,NONE Message-ID: <20090715131502.A83B311C00DF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/mk-files/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3593 Removed Files: import.log Log Message: remove import.log --- import.log DELETED --- From pkgdb at fedoraproject.org Wed Jul 15 13:25:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:35 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132535.2EBF810F8B4@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:37 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132537.1CF5610F901@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:39 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132539.594F910F905@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:39 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132539.D2E4610F909@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:42 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132542.7DF8310F90D@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:44 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132544.49C5510F90E@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:46 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132546.13D5F10F8C1@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From mclasen at fedoraproject.org Wed Jul 15 13:18:34 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 13:18:34 +0000 (UTC) Subject: rpms/xorg-x11-drv-intel/devel xorg-x11-drv-intel.spec,1.15,1.16 Message-ID: <20090715131834.C462811C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/xorg-x11-drv-intel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4353 Modified Files: xorg-x11-drv-intel.spec Log Message: Rebuild Index: xorg-x11-drv-intel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/xorg-x11-drv-intel.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xorg-x11-drv-intel.spec 14 Jul 2009 14:15:12 -0000 1.15 +++ xorg-x11-drv-intel.spec 15 Jul 2009 13:18:34 -0000 1.16 @@ -8,7 +8,7 @@ Summary: Xorg X11 Intel video driver Name: xorg-x11-drv-intel Version: 2.8.0 -Release: 0.2%{?dist} +Release: 0.3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/intel_*.1* %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.8.0-0.3 +- Rebuild for new API + * Tue Jul 14 2009 Adam Jackson 2.8.0-0.2 - Today's git snapshots (driver and gpu tools) - intel-2.7-dont-vsync-xv.patch: Drop, should be working now. From pkgdb at fedoraproject.org Wed Jul 15 13:25:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:46 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132546.D2A8A10F912@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:49 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132549.97C1010F917@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From jwilson at fedoraproject.org Wed Jul 15 13:25:50 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 15 Jul 2009 13:25:50 +0000 (UTC) Subject: rpms/wacomexpresskeys/F-10 wacomexpresskeys.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090715132550.BA22311C00DF@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/wacomexpresskeys/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6090 Modified Files: sources Added Files: wacomexpresskeys.spec Log Message: populate f10 branch for build --- NEW FILE wacomexpresskeys.spec --- %define _x11dir /usr %define _x11libdir %{_x11dir}/%{_lib} %define _x11sdkdir %{_includedir} %define tarname expresskeys Name: wacomexpresskeys Version: 0.4.2 Release: 1%{?dist} Summary: Wacom ExpressKeys and Touch Strips configuration utility Group: System Environment/Base License: GPLv2+ URL: http://expresskeys.ruivo.org/ Source0: http://expresskeys.ruivo.org/%{tarname}-%{version}.tar.gz BuildRequires: libX11-devel, libXi-devel, xorg-x11-server-devel, libXext-devel, libXtst-devel Requires: xorg-x11-server-Xorg, linuxwacom ExcludeArch: s390 s390x %description Configuration utility to bind Wacom tablet's ExpressKeys and Touch Strips to generate other input events. %prep %setup -q -n %{tarname}-%{version} %build %configure export CFLAGS="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR="$RPM_BUILD_ROOT" %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS BUGS README TODO ChangeLog NEWS %{_bindir}/expresskeys %changelog * Tue Jul 14 2009 Jarod Wilson 0.4.2-1 - Update to 0.4.2 - Submit for Fedora package review * Wed Apr 09 2008 Aristeu Rozanski 0.4.1-1 - initial version for RHEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:34:37 -0000 1.1 +++ sources 15 Jul 2009 13:25:20 -0000 1.2 @@ -0,0 +1 @@ +78e062f572e8bd9d7451bb027db01a95 expresskeys-0.4.2.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 13:25:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:51 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132551.9863D10F91B@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:52 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132552.936CC10F91F@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:59 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested commit Message-ID: <20090715132559.4D5F410F926@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on cdrdao (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:26:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:00 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132600.ED5C410F92A@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:26:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:33 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132633.6F13C10F8CE@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on hplip (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:36 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132636.0B0C110F92C@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on hplip (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:38 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132638.88A5B10F8D1@bastion2.fedora.phx.redhat.com> twaugh has set the commit acl on hplip (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:44 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132644.1D4DA10F930@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on hplip (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:47 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132647.0CA4D10F933@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on hplip (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:49 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132649.2921210F935@bastion2.fedora.phx.redhat.com> twaugh has set the commit acl on hplip (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:51 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132651.C9C6A10F936@bastion2.fedora.phx.redhat.com> twaugh has set the watchbugzilla acl on hplip (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:53 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132653.97D7E10F939@bastion2.fedora.phx.redhat.com> twaugh has set the watchcommits acl on hplip (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:55 +0000 Subject: [pkgdb] hplip had acl change status Message-ID: <20090715132655.7C3A210F93C@bastion2.fedora.phx.redhat.com> twaugh has set the commit acl on hplip (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hplip From pkgdb at fedoraproject.org Wed Jul 15 13:26:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:57 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132657.8169610F93F@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrdao (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:26:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:58 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132658.509E210F942@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrdao (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:26:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:26:58 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132659.0BBF810F945@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrdao (Fedora devel) to Obsolete for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:01 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132701.E9AB810F8D8@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrdao (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:03 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132703.DD06F10F946@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrdao (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:18 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132718.47F4010F951@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrdao (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:19 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132719.6388310F954@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrdao (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:21 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132721.34A6A10F957@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrdao (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From twaugh at fedoraproject.org Wed Jul 15 13:27:21 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 15 Jul 2009 13:27:21 +0000 (UTC) Subject: rpms/cups/devel cups-str3253.patch, NONE, 1.1 cups-str3254.patch, NONE, 1.1 cups-str3258.patch, NONE, 1.1 cups-str3259.patch, NONE, 1.1 cups-uri-compat.patch, NONE, 1.1 cups.spec, 1.483, 1.484 Message-ID: <20090715132721.B7E8611C00DF@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6556 Modified Files: cups.spec Added Files: cups-str3253.patch cups-str3254.patch cups-str3258.patch cups-str3259.patch cups-uri-compat.patch Log Message: * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to prevent bad job control files crashing cupsd on start-up (STR #3253, bug #509741). - Correctly handle CUPS-Get-PPDs requests for models with '+' in their names (STR #3254, bug #509586). - Accept incorrect device URIs in the (non-libusb) usb backend for compatibility with Fedora 11 before bug #507244 was fixed. - Applied patch to fix incorrect device URIs (STR #3259, bug #507244). - Applied patch to fix job-hold-until for remote queues (STR #3258, bug #497376). cups-str3253.patch: --- NEW FILE cups-str3253.patch --- diff -up cups-1.4rc1/scheduler/job.c.str3253 cups-1.4rc1/scheduler/job.c --- cups-1.4rc1/scheduler/job.c.str3253 2009-07-15 11:19:37.613132688 +0100 +++ cups-1.4rc1/scheduler/job.c 2009-07-15 11:51:42.073132844 +0100 @@ -3443,11 +3443,8 @@ load_job_cache(const char *filename) /* { cupsArrayAdd(Jobs, job); - if (job->state_value <= IPP_JOB_STOPPED) - { - cupsArrayAdd(ActiveJobs, job); - cupsdLoadJob(job); - } + if (job->state_value <= IPP_JOB_STOPPED && cupsdLoadJob(job)) + cupsArrayAdd(ActiveJobs, job); job = NULL; } @@ -3699,18 +3696,19 @@ load_request_root(void) * Load the job... */ - cupsdLoadJob(job); - - /* - * Insert the job into the array, sorting by job priority and ID... - */ + if (cupsdLoadJob(job)) + { + /* + * Insert the job into the array, sorting by job priority and ID... + */ - cupsArrayAdd(Jobs, job); + cupsArrayAdd(Jobs, job); - if (job->state_value <= IPP_JOB_STOPPED) - cupsArrayAdd(ActiveJobs, job); - else - unload_job(job); + if (job->state_value <= IPP_JOB_STOPPED) + cupsArrayAdd(ActiveJobs, job); + else + unload_job(job); + } } cupsDirClose(dir); cups-str3254.patch: --- NEW FILE cups-str3254.patch --- diff -up cups-1.4rc1/scheduler/ipp.c.str3254 cups-1.4rc1/scheduler/ipp.c --- cups-1.4rc1/scheduler/ipp.c.str3254 2009-07-15 11:11:32.346008322 +0100 +++ cups-1.4rc1/scheduler/ipp.c 2009-07-15 11:12:14.411132519 +0100 @@ -11170,7 +11170,7 @@ url_encode_string(const char *s, /* I - while (*s && bufptr < bufend) { - if (*s == ' ' || *s == '%') + if (*s == ' ' || *s == '%' || *s == '+') { if (bufptr >= (bufend - 2)) break; cups-str3258.patch: --- NEW FILE cups-str3258.patch --- diff -up cups-1.4rc1/scheduler/ipp.c.str3258 cups-1.4rc1/scheduler/ipp.c --- cups-1.4rc1/scheduler/ipp.c.str3258 2009-07-15 09:58:15.559299247 +0100 +++ cups-1.4rc1/scheduler/ipp.c 2009-07-15 09:58:47.981299548 +0100 @@ -1721,8 +1721,7 @@ add_job(cupsd_client_t *con, /* I - Cl attr = ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_KEYWORD, "job-hold-until", NULL, val); } - if (attr && strcmp(attr->values[0].string.text, "no-hold") && - !(printer->type & CUPS_PRINTER_REMOTE)) + if (attr && strcmp(attr->values[0].string.text, "no-hold")) { /* * Hold job until specified time... diff -up cups-1.4rc1/scheduler/job.c.str3258 cups-1.4rc1/scheduler/job.c --- cups-1.4rc1/scheduler/job.c.str3258 2009-07-15 09:58:15.627173602 +0100 +++ cups-1.4rc1/scheduler/job.c 2009-07-15 09:58:47.984298957 +0100 @@ -3095,7 +3095,8 @@ get_options(cupsd_job_t *job, /* I - Jo attr->value_tag == IPP_TAG_BEGIN_COLLECTION) /* Not yet supported */ continue; - if (!strncmp(attr->name, "time-", 5)) + if (!strncmp(attr->name, "time-", 5) || + !strcmp(attr->name, "job-hold-until")) continue; if (!strncmp(attr->name, "job-", 4) && cups-str3259.patch: --- NEW FILE cups-str3259.patch --- diff -up cups-1.4rc1/backend/ieee1284.c.str3259 cups-1.4rc1/backend/ieee1284.c --- cups-1.4rc1/backend/ieee1284.c.str3259 2008-12-11 23:01:44.000000000 +0000 +++ cups-1.4rc1/backend/ieee1284.c 2009-07-15 10:08:13.147173947 +0100 @@ -306,6 +306,14 @@ backendGetDeviceID( mfg = temp; } + if (!strncasecmp(mdl, mfg, strlen(mfg))) + { + mdl += strlen(mfg); + + while (isspace(*mdl & 255)) + mdl ++; + } + /* * Generate the device URI from the manufacturer, make_model, and * serial number strings. cups-uri-compat.patch: --- NEW FILE cups-uri-compat.patch --- diff -up cups-1.4rc1/backend/usb-unix.c.uri-compat cups-1.4rc1/backend/usb-unix.c --- cups-1.4rc1/backend/usb-unix.c.uri-compat 2009-07-15 10:48:46.992133677 +0100 +++ cups-1.4rc1/backend/usb-unix.c 2009-07-15 10:49:05.305008114 +0100 @@ -63,11 +63,34 @@ print_device(const char *uri, /* I - De int device_fd; /* USB device */ size_t tbytes; /* Total number of bytes written */ struct termios opts; /* Parallel port options */ + char *fixed_uri = strdup (uri); + char *p; (void)argc; (void)argv; + p = strchr (fixed_uri, ':'); + if (p++ != NULL) + { + char *e; + p += strspn (p, "/"); + e = strchr (p, '/'); + if (e > p) + { + size_t mfrlen = e - p; + e++; + if (!strncasecmp (e, p, mfrlen)) + { + char *x = e + mfrlen; + if (!strncmp (x, "%20", 3)) + /* Take mfr name out of mdl name for compatibility with + * Fedora 11 before bug #507244 was fixed. */ + strcpy (e, x + 3); puts(fixed_uri); + } + } + } + /* * Open the USB port device... */ @@ -107,10 +130,10 @@ print_device(const char *uri, /* I - De strncasecmp(hostname, "Minolta", 7); #endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ || __DragonFly__ */ - if (use_bc && !strncmp(uri, "usb:/dev/", 9)) + if (use_bc && !strncmp(fixed_uri, "usb:/dev/", 9)) use_bc = 0; - if ((device_fd = open_device(uri, &use_bc)) == -1) + if ((device_fd = open_device(fixed_uri, &use_bc)) == -1) { if (getenv("CLASS") != NULL) { Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.483 retrieving revision 1.484 diff -u -p -r1.483 -r1.484 --- cups.spec 13 Jul 2009 17:24:07 -0000 1.483 +++ cups.spec 15 Jul 2009 13:27:21 -0000 1.484 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.9%{?dist} +Release: 0.%{pre}.10%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -51,7 +51,12 @@ Patch24: cups-str3229.patch Patch25: cups-filter-debug.patch Patch26: cups-str3231.patch Patch27: cups-str3244.patch -Patch28: cups-avahi.patch +Patch28: cups-str3258.patch +Patch29: cups-str3259.patch +Patch30: cups-uri-compat.patch +Patch31: cups-str3254.patch +Patch32: cups-str3253.patch +Patch33: cups-avahi.patch Patch100: cups-lspp.patch Epoch: 1 Url: http://www.cups.org/ @@ -200,7 +205,12 @@ module. %patch25 -p1 -b .filter-debug %patch26 -p1 -b .str3231 %patch27 -p1 -b .str3244 -#%patch28 -p1 -b .avahi +%patch28 -p1 -b .str3258 +%patch29 -p1 -b .str3259 +%patch30 -p1 -b .uri-compat +%patch31 -p1 -b .str3254 +%patch32 -p1 -b .str3253 +#%patch33 -p1 -b .avahi %if %lspp %patch100 -p1 -b .lspp @@ -493,8 +503,18 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 +- Applied patch to prevent bad job control files crashing cupsd on + start-up (STR #3253, bug #509741). +- Correctly handle CUPS-Get-PPDs requests for models with '+' in their + names (STR #3254, bug #509586). +- Accept incorrect device URIs in the (non-libusb) usb backend for + compatibility with Fedora 11 before bug #507244 was fixed. +- Applied patch to fix incorrect device URIs (STR #3259, bug #507244). +- Applied patch to fix job-hold-until for remote queues (STR #3258, + bug #497376). + * Mon Jul 13 2009 Remi Collet 1:1.4-0.rc1.9 -- rebuild for new PHP 5.3.0 ABI (20090626) - add PHP ABI check - use php_extdir - add php configuration file (/etc/php.d/cups.ini) From pkgdb at fedoraproject.org Wed Jul 15 13:27:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:23 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132723.73A5B10F95B@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrdao (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:24 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132724.46A0510F8E0@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrdao (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:25 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132725.41FEC10F95D@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrdao (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:26 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132726.7897E10F960@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrdao (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:59 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132759.4F2F910F8E6@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrkit (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:27:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:59 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132759.E974310F8E8@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrkit (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:01 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132801.1BE9210F962@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrkit (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:02 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132802.4593310F964@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrkit (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:07 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132807.EAB1210F967@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrkit (Fedora 9) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:08 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132808.322C410F96A@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrkit (Fedora 9) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:09 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132809.794E510F8EC@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrkit (Fedora 9) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:10 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132811.0771910F970@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrkit (Fedora 9) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:13 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132813.8291210F976@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrkit (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:13 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132813.ED8A910F979@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrkit (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:16 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132816.9CB4510F97C@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrkit (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:20 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132820.D505810F97D@bastion2.fedora.phx.redhat.com> rrakus has set the watchcommits acl on cdrkit (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:20 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132820.DD90810F97E@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrkit (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:20 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132820.F025110F981@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrkit (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:21 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132821.C3AD210F984@bastion2.fedora.phx.redhat.com> rrakus has set the commit acl on cdrkit (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From pkgdb at fedoraproject.org Wed Jul 15 13:28:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:28:23 +0000 Subject: [pkgdb] cdrkit had acl change status Message-ID: <20090715132823.37A0610F987@bastion2.fedora.phx.redhat.com> rrakus has set the approveacls acl on cdrkit (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrkit From deji at fedoraproject.org Wed Jul 15 13:29:33 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Wed, 15 Jul 2009 13:29:33 +0000 (UTC) Subject: rpms/suitesparse/F-10 suitesparse.spec,1.7,1.8 Message-ID: <20090715132933.42E0C11C00DF@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/suitesparse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7087 Modified Files: suitesparse.spec Log Message: Link to stock blas library Index: suitesparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/suitesparse/F-10/suitesparse.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- suitesparse.spec 15 Jul 2009 13:14:45 -0000 1.7 +++ suitesparse.spec 15 Jul 2009 13:29:33 -0000 1.8 @@ -1,6 +1,6 @@ Name: suitesparse Version: 3.1.0 -Release: 2%{?dist} +Release: 2%{?dist}.1 Summary: A collection of sparse matrix libraries Group: System Environment/Libraries @@ -9,7 +9,7 @@ URL: http://www.cise.ufl.edu/ Source0: http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: blas-devel +BuildRequires: blas-devel lapack-devel Obsoletes: umfpack <= 5.0.1 Obsoletes: ufsparse <= 2.1.1 Provides: ufsparse = %{version}-%{release} @@ -185,7 +185,7 @@ pushd CHOLMOD pushd ../Lib gcc -shared -Wl,-soname,libcholmod.so.%{cholmod_version_major} -o \ libcholmod.so.%{cholmod_version} ../CHOLMOD/Lib/*.o \ - -L%{_libdir}/atlas -lcblas -llapack libamd.so.%{amd_version_major} \ + -lblas -llapack libamd.so.%{amd_version_major} \ libcamd.so.%{camd_version_major} libcolamd.so.%{colamd_version_major} \ libccolamd.so.%{ccolamd_version_major} -lm ln -sf libcholmod.so.%{cholmod_version} libcholmod.so.%{cholmod_version_major} @@ -277,7 +277,7 @@ pushd UMFPACK pushd ../Lib gcc -shared -Wl,-soname,libumfpack.so.%{umfpack_version_major} -o \ libumfpack.so.%{umfpack_version} ../UMFPACK/Lib/*.o \ - -L%{_libdir}/atlas -lcblas -llapack libamd.so.%{amd_version_major} -lm + -lblas -llapack libamd.so.%{amd_version_major} -lm ln -sf libumfpack.so.%{umfpack_version} libumfpack.so.%{umfpack_version_major} ln -sf libumfpack.so.%{umfpack_version} libumfpack.so cp -p ../UMFPACK/Lib/*.a ./ From pkgdb at fedoraproject.org Wed Jul 15 13:35:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:35:55 +0000 Subject: [pkgdb] tig: tmz has requested watchcommits Message-ID: <20090715133555.E41C010F908@bastion2.fedora.phx.redhat.com> tmz has requested the watchcommits acl on tig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:35:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:35:57 +0000 Subject: [pkgdb] ctrlproxy ownership updated Message-ID: <20090715133557.B244410F90B@bastion2.fedora.phx.redhat.com> Package ctrlproxy in Fedora devel is now owned by jwilson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ctrlproxy From pkgdb at fedoraproject.org Wed Jul 15 13:35:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:35:58 +0000 Subject: [pkgdb] tig: tmz has requested commit Message-ID: <20090715133558.A606010F90F@bastion2.fedora.phx.redhat.com> tmz has requested the commit acl on tig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From limb at fedoraproject.org Wed Jul 15 13:36:04 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 15 Jul 2009 13:36:04 +0000 (UTC) Subject: rpms/roundcubemail/devel roundcubemail.spec,1.23,1.24 Message-ID: <20090715133604.E045411C00DF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/roundcubemail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9325 Modified Files: roundcubemail.spec Log Message: Incorporated Chris Eveleigh's config changes to fix mimetype bug, BZ 511857. Index: roundcubemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/devel/roundcubemail.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- roundcubemail.spec 1 Jul 2009 13:07:34 -0000 1.23 +++ roundcubemail.spec 15 Jul 2009 13:36:04 -0000 1.24 @@ -1,7 +1,7 @@ %define roundcubedir %{_datadir}/roundcubemail Name: roundcubemail Version: 0.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client Group: Applications/System @@ -100,6 +100,8 @@ cp -pr %SOURCE4 . # use dist files as config files mv %{buildroot}%{roundcubedir}/config/db.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/db.inc.php mv %{buildroot}%{roundcubedir}/config/main.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/main.inc.php +# keep any other config files too +mv %{buildroot}%{roundcubedir}/config/* %{buildroot}%{_sysconfdir}/roundcubemail/ # clean up the buildroot rm -rf %{buildroot}%{roundcubedir}/{config,logs,temp} @@ -133,12 +135,17 @@ exit 0 %doc CHANGELOG INSTALL LICENSE README UPGRADING SQL roundcubemail-README.fedora %{roundcubedir} %dir %{_sysconfdir}/%{name} -%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/* +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/db.inc.php +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/main.inc.php +%attr(0640,root,apache) %{_sysconfdir}/%{name}/mimetypes.php %config(noreplace) %{_sysconfdir}/httpd/conf.d/roundcubemail.conf %attr(0775,root,apache) %dir /var/log/roundcubemail %config(noreplace) %{_sysconfdir}/logrotate.d/roundcubemail %changelog +* Wed Jul 15 2009 Jon Ciesla = 0.2.2-2 +- Incorporated Chris Eveleigh's config changes to fix mimetype bug, BZ 511857. + * Wed Jul 01 2009 Jon Ciesla = 0.2.2-1 - New upstream. From pkgdb at fedoraproject.org Wed Jul 15 13:36:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:01 +0000 Subject: [pkgdb] tig: tmz has requested approveacls Message-ID: <20090715133602.047C710F913@bastion2.fedora.phx.redhat.com> tmz has requested the approveacls acl on tig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:12 +0000 Subject: [pkgdb] tig: tmz has requested watchcommits Message-ID: <20090715133612.6F97610F91A@bastion2.fedora.phx.redhat.com> tmz has requested the watchcommits acl on tig (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:15 +0000 Subject: [pkgdb] tig: tmz has requested commit Message-ID: <20090715133615.5EC5A10F91E@bastion2.fedora.phx.redhat.com> tmz has requested the commit acl on tig (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:18 +0000 Subject: [pkgdb] tig: tmz has requested approveacls Message-ID: <20090715133618.84E4610F91F@bastion2.fedora.phx.redhat.com> tmz has requested the approveacls acl on tig (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:25 +0000 Subject: [pkgdb] tig: tmz has requested approveacls Message-ID: <20090715133625.28A3910F924@bastion2.fedora.phx.redhat.com> tmz has requested the approveacls acl on tig (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:27 +0000 Subject: [pkgdb] tig: tmz has requested commit Message-ID: <20090715133627.BDCA010F927@bastion2.fedora.phx.redhat.com> tmz has requested the commit acl on tig (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:36:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:36:31 +0000 Subject: [pkgdb] tig: tmz has requested watchcommits Message-ID: <20090715133631.62EF410F92D@bastion2.fedora.phx.redhat.com> tmz has requested the watchcommits acl on tig (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From jwilson at fedoraproject.org Wed Jul 15 13:41:04 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 15 Jul 2009 13:41:04 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel wacomexpresskeys.spec,1.2,1.3 Message-ID: <20090715134104.9B82911C00DF@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10515 Modified Files: wacomexpresskeys.spec Log Message: nuke more no-longer-necessary stuff I thought I'd already nuked... Index: wacomexpresskeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/devel/wacomexpresskeys.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wacomexpresskeys.spec 15 Jul 2009 13:03:13 -0000 1.2 +++ wacomexpresskeys.spec 15 Jul 2009 13:40:34 -0000 1.3 @@ -1,6 +1,3 @@ -%define _x11dir /usr -%define _x11libdir %{_x11dir}/%{_lib} -%define _x11sdkdir %{_includedir} %define tarname expresskeys Name: wacomexpresskeys From pkgdb at fedoraproject.org Wed Jul 15 13:41:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:17 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134117.9D6FF10F8DA@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on tig (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:35 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134135.3458410F8EA@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on tig (Fedora 10) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:38 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134138.343B910F8EE@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on tig (Fedora 11) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:39 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134139.CCA9A10F8F2@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on tig (Fedora 11) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:41 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134141.ABDF710F8FC@bastion2.fedora.phx.redhat.com> jcollie has set the approveacls acl on tig (Fedora 11) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:42:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:15 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchcommits Message-ID: <20090715134215.A7CB810F8B3@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on wdaemon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:16 +0000 Subject: [pkgdb] wdaemon: jwilson has requested commit Message-ID: <20090715134216.6C1C510F8B4@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on wdaemon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:23 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchbugzilla Message-ID: <20090715134223.98AE210F905@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on wdaemon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:27 +0000 Subject: [pkgdb] wdaemon: jwilson has requested approveacls Message-ID: <20090715134227.57AFC10F908@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on wdaemon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:35 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchbugzilla Message-ID: <20090715134235.84C3B10F89F@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on wdaemon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:37 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchcommits Message-ID: <20090715134237.CFA4810F8A6@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on wdaemon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:41 +0000 Subject: [pkgdb] wdaemon: jwilson has requested commit Message-ID: <20090715134241.361E310F909@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on wdaemon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:43 +0000 Subject: [pkgdb] wdaemon: jwilson has requested approveacls Message-ID: <20090715134243.8EA7510F90B@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on wdaemon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:49 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchbugzilla Message-ID: <20090715134249.C76F710F8B0@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on wdaemon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:51 +0000 Subject: [pkgdb] wdaemon: jwilson has requested watchcommits Message-ID: <20090715134251.A5CDA10F90C@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on wdaemon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:53 +0000 Subject: [pkgdb] wdaemon: jwilson has requested commit Message-ID: <20090715134253.A6BB810F90E@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on wdaemon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:42:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:42:56 +0000 Subject: [pkgdb] wdaemon: jwilson has requested approveacls Message-ID: <20090715134256.5AC2E10F90F@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on wdaemon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wdaemon From pkgdb at fedoraproject.org Wed Jul 15 13:43:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:43:51 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchbugzilla Message-ID: <20090715134351.1AB1C10F8C4@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on linuxwacom (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:43:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:43:56 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchcommits Message-ID: <20090715134356.B439810F8C8@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on linuxwacom (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From mhlavink at fedoraproject.org Wed Jul 15 13:44:06 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Wed, 15 Jul 2009 13:44:06 +0000 (UTC) Subject: rpms/nmap/devel .cvsignore, 1.24, 1.25 nmap.spec, 1.54, 1.55 sources, 1.24, 1.25 Message-ID: <20090715134406.D126B11C00DF@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11163 Modified Files: .cvsignore nmap.spec sources Log Message: update to 4.90rc1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 18 Jun 2009 14:18:49 -0000 1.24 +++ .cvsignore 15 Jul 2009 13:43:36 -0000 1.25 @@ -1 +1 @@ -nmap-4.85BETA10.tar.bz2 +nmap-4.90RC1.tar.bz2 Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/nmap.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- nmap.spec 18 Jun 2009 14:12:29 -0000 1.54 +++ nmap.spec 15 Jul 2009 13:43:36 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Network exploration tool and security scanner Name: nmap -Version: 4.85 -%define betaver BETA10 +Version: 4.90 +%define betaver RC1 Release: 0.%{betaver}%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Wed Jul 15 2009 Michal Hlavinka - 2:4.90-0.RC1 +- updated to 4.90RC1 + * Thu Jun 18 2009 Michal Hlavinka - 2:4.85-0.BETA10 - updated to 4.85beta10 Index: sources =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 18 Jun 2009 14:18:49 -0000 1.24 +++ sources 15 Jul 2009 13:43:36 -0000 1.25 @@ -1 +1 @@ -c1f9b8e773b8a78dd68b3a53a6ed07a8 nmap-4.85BETA10.tar.bz2 +4355574dfdc3f86bfa85be0a6d9b5bf4 nmap-4.90RC1.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 15 13:43:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:43:58 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested commit Message-ID: <20090715134358.3431A10F8CB@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on linuxwacom (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:04 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested approveacls Message-ID: <20090715134404.11BEB10F8CE@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on linuxwacom (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:12 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchbugzilla Message-ID: <20090715134412.BAB5B10F8D2@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on linuxwacom (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:14 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchcommits Message-ID: <20090715134414.7B03D10F8D5@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on linuxwacom (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:15 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested commit Message-ID: <20090715134416.060C010F8D8@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on linuxwacom (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:20 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested approveacls Message-ID: <20090715134420.AB41510F8DF@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on linuxwacom (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:27 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchbugzilla Message-ID: <20090715134427.C717710F8E2@bastion2.fedora.phx.redhat.com> jwilson has requested the watchbugzilla acl on linuxwacom (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From limb at fedoraproject.org Wed Jul 15 13:44:29 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 15 Jul 2009 13:44:29 +0000 (UTC) Subject: rpms/roundcubemail/F-11 roundcubemail.spec, 1.22, 1.23 sources, 1.12, 1.13 Message-ID: <20090715134429.E7D5B11C00DF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/roundcubemail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11260 Modified Files: roundcubemail.spec sources Log Message: mime fix, new upstream. Index: roundcubemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/F-11/roundcubemail.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- roundcubemail.spec 10 Apr 2009 12:32:58 -0000 1.22 +++ roundcubemail.spec 15 Jul 2009 13:43:59 -0000 1.23 @@ -1,7 +1,7 @@ %define roundcubedir %{_datadir}/roundcubemail Name: roundcubemail -Version: 0.2.1 -Release: 1%{?dist} +Version: 0.2.2 +Release: 2%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client Group: Applications/System @@ -45,7 +45,7 @@ requires the MySQL database or the Postg interface is fully skinnable using XHTML and CSS 2. %prep -%setup -q -n roundcubemail-0.2.1-dep +%setup -q -n roundcubemail-0.2.2-dep %patch0 -p0 #%patch1 -p0 @@ -100,6 +100,8 @@ cp -pr %SOURCE4 . # use dist files as config files mv %{buildroot}%{roundcubedir}/config/db.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/db.inc.php mv %{buildroot}%{roundcubedir}/config/main.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/main.inc.php +# keep any other config files too +mv %{buildroot}%{roundcubedir}/config/* %{buildroot}%{_sysconfdir}/roundcubemail/ # clean up the buildroot rm -rf %{buildroot}%{roundcubedir}/{config,logs,temp} @@ -133,12 +135,20 @@ exit 0 %doc CHANGELOG INSTALL LICENSE README UPGRADING SQL roundcubemail-README.fedora %{roundcubedir} %dir %{_sysconfdir}/%{name} -%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/* +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/db.inc.php +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/main.inc.php +%attr(0640,root,apache) %{_sysconfdir}/%{name}/mimetypes.php %config(noreplace) %{_sysconfdir}/httpd/conf.d/roundcubemail.conf %attr(0775,root,apache) %dir /var/log/roundcubemail %config(noreplace) %{_sysconfdir}/logrotate.d/roundcubemail %changelog +* Wed Jul 15 2009 Jon Ciesla = 0.2.2-2 +- Incorporated Chris Eveleigh's config changes to fix mimetype bug, BZ 511857. + +* Wed Jul 01 2009 Jon Ciesla = 0.2.2-1 +- New upstream. + * Fri Apr 10 2009 Jon Ciesla = 0.2.1-1 - New upstream. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 10 Apr 2009 12:32:58 -0000 1.12 +++ sources 15 Jul 2009 13:43:59 -0000 1.13 @@ -1 +1 @@ -86e9238b31a917eeabb23ba1d226c1dc roundcubemail-0.2.1-dep.tar.gz +926d6391bc4014476ce8461354ed9c9f roundcubemail-0.2.2-dep.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 13:44:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:29 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested watchcommits Message-ID: <20090715134429.5AB9110F8E5@bastion2.fedora.phx.redhat.com> jwilson has requested the watchcommits acl on linuxwacom (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:31 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested commit Message-ID: <20090715134431.6402E10F8E7@bastion2.fedora.phx.redhat.com> jwilson has requested the commit acl on linuxwacom (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From pkgdb at fedoraproject.org Wed Jul 15 13:44:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:44:34 +0000 Subject: [pkgdb] linuxwacom: jwilson has requested approveacls Message-ID: <20090715134434.1C15110F910@bastion2.fedora.phx.redhat.com> jwilson has requested the approveacls acl on linuxwacom (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/linuxwacom From bpepple at fedoraproject.org Wed Jul 15 13:46:43 2009 From: bpepple at fedoraproject.org (Brian Pepple) Date: Wed, 15 Jul 2009 13:46:43 +0000 (UTC) Subject: rpms/empathy/devel .cvsignore, 1.34, 1.35 empathy.spec, 1.60, 1.61 sources, 1.34, 1.35 empathy-fedora-mission-control-convert.patch, 1.4, NONE Message-ID: <20090715134643.D363911C00DF@cvs1.fedora.phx.redhat.com> Author: bpepple Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11905 Modified Files: .cvsignore empathy.spec sources Removed Files: empathy-fedora-mission-control-convert.patch Log Message: * Wed Jul 15 2009 Brian Pepple - 2.27.4-1 - Update to 2.27.4. - See http://download.gnome.org/sources/empathy/2.27/empathy-2.27.4.news - Drop mission-control-convert patch. - Add BR on NetworkManager-glib-devel. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 17 Jun 2009 23:46:18 -0000 1.34 +++ .cvsignore 15 Jul 2009 13:46:13 -0000 1.35 @@ -1 +1 @@ -empathy-2.27.3.tar.bz2 +empathy-2.27.4.tar.bz2 Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- empathy.spec 9 Jul 2009 17:18:03 -0000 1.60 +++ empathy.spec 15 Jul 2009 13:46:13 -0000 1.61 @@ -7,10 +7,11 @@ %global tp_mc_min_version 4.61 %global tp_glib_min_version 0.7.31 %global enchant_version 1.2.0 +%global network_manager_version 0.7.0 Name: empathy -Version: 2.27.3 -Release: 4%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Summary: Instant Messaging Client for GNOME Group: Applications/Communications @@ -20,8 +21,6 @@ URL: http://live.gnome.org/Empathy Source0: http://download.gnome.org/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 Source1: %{name}-README.ConnectionManagers -## Fedora-specific, to automagically transition the profile names. (#459282) -Patch0: %{name}-fedora-mission-control-convert.patch ## Workaround for our broken pkgconfig ## https://bugzilla.redhat.com/show_bug.cgi?id=436773 ## http://bugzilla.gnome.org/show_bug.cgi?id=577863 @@ -49,6 +48,7 @@ BuildRequires: telepathy-glib-devel >= % BuildRequires: telepathy-mission-control-devel >= %{tp_mc_min_version} BuildRequires: telepathy-farsight-devel BuildRequires: libnotify-devel >= 0.4.4 +BuildRequires: NetworkManager-glib-devel >= %{network_manager_version} Requires: %{name}-libs = %{version}-%{release} Requires: telepathy-filesystem @@ -124,7 +124,6 @@ bindings to the libempathy and libempath %prep %setup -q -%patch0 -p1 -b .profile-update %patch1 -p1 -b .pkgconfig # force these to be regenerated @@ -233,6 +232,12 @@ fi %{python_sitearch}/empathy*.so %changelog +* Wed Jul 15 2009 Brian Pepple - 2.27.4-1 +- Update to 2.27.4. +- See http://download.gnome.org/sources/empathy/2.27/empathy-2.27.4.news +- Drop mission-control-convert patch. +- Add BR on NetworkManager-glib-devel. + * Thu Jul 9 2009 Matthias Clasen - 2.27.3-4 - Require telepathy-mission-control Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 17 Jun 2009 23:46:18 -0000 1.34 +++ sources 15 Jul 2009 13:46:13 -0000 1.35 @@ -1 +1 @@ -082624ff1ea1086b8f64658a0949fcc5 empathy-2.27.3.tar.bz2 +16b5b2adc6303b8c924208f33254a770 empathy-2.27.4.tar.bz2 --- empathy-fedora-mission-control-convert.patch DELETED --- From limb at fedoraproject.org Wed Jul 15 13:56:38 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 15 Jul 2009 13:56:38 +0000 (UTC) Subject: rpms/roundcubemail/F-10 roundcubemail.spec, 1.21, 1.22 sources, 1.12, 1.13 Message-ID: <20090715135638.4C40411C00DF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/roundcubemail/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14327 Modified Files: roundcubemail.spec sources Log Message: new upstream, mime fix. Index: roundcubemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/F-10/roundcubemail.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- roundcubemail.spec 10 Apr 2009 13:53:50 -0000 1.21 +++ roundcubemail.spec 15 Jul 2009 13:56:37 -0000 1.22 @@ -1,7 +1,7 @@ %define roundcubedir %{_datadir}/roundcubemail Name: roundcubemail -Version: 0.2.1 -Release: 1%{?dist} +Version: 0.2.2 +Release: 2%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client Group: Applications/System @@ -45,7 +45,7 @@ requires the MySQL database or the Postg interface is fully skinnable using XHTML and CSS 2. %prep -%setup -q -n roundcubemail-0.2.1-dep +%setup -q -n roundcubemail-0.2.2-dep %patch0 -p0 #%patch1 -p0 @@ -100,6 +100,8 @@ cp -pr %SOURCE4 . # use dist files as config files mv %{buildroot}%{roundcubedir}/config/db.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/db.inc.php mv %{buildroot}%{roundcubedir}/config/main.inc.php.dist %{buildroot}%{_sysconfdir}/roundcubemail/main.inc.php +# keep any other config files too +mv %{buildroot}%{roundcubedir}/config/* %{buildroot}%{_sysconfdir}/roundcubemail/ # clean up the buildroot rm -rf %{buildroot}%{roundcubedir}/{config,logs,temp} @@ -133,12 +135,20 @@ exit 0 %doc CHANGELOG INSTALL LICENSE README UPGRADING SQL roundcubemail-README.fedora %{roundcubedir} %dir %{_sysconfdir}/%{name} -%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/* +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/db.inc.php +%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/main.inc.php +%attr(0640,root,apache) %{_sysconfdir}/%{name}/mimetypes.php %config(noreplace) %{_sysconfdir}/httpd/conf.d/roundcubemail.conf %attr(0775,root,apache) %dir /var/log/roundcubemail %config(noreplace) %{_sysconfdir}/logrotate.d/roundcubemail %changelog +* Wed Jul 15 2009 Jon Ciesla = 0.2.2-2 +- Incorporated Chris Eveleigh's config changes to fix mimetype bug, BZ 511857. + +* Wed Jul 01 2009 Jon Ciesla = 0.2.2-1 +- New upstream. + * Fri Apr 10 2009 Jon Ciesla = 0.2.1-1 - New upstream. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/F-10/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 10 Apr 2009 13:53:51 -0000 1.12 +++ sources 15 Jul 2009 13:56:38 -0000 1.13 @@ -1 +1 @@ -86e9238b31a917eeabb23ba1d226c1dc roundcubemail-0.2.1-dep.tar.gz +926d6391bc4014476ce8461354ed9c9f roundcubemail-0.2.2-dep.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 13:41:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:33 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134133.7ACC210F8E5@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on tig (Fedora 10) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:14 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134114.9D47F10F8D5@bastion2.fedora.phx.redhat.com> jcollie has set the commit acl on tig (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:41:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:32 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134132.3368810F8E1@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on tig (Fedora 10) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:25:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:54 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested approveacls Message-ID: <20090715132554.7337410F921@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on cdrdao (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:41:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:41:11 +0000 Subject: [pkgdb] tig had acl change status Message-ID: <20090715134111.3BE4010F8D0@bastion2.fedora.phx.redhat.com> jcollie has set the watchcommits acl on tig (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tig From pkgdb at fedoraproject.org Wed Jul 15 13:25:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:57 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchcommits Message-ID: <20090715132557.83D3010F923@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on cdrdao (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:25:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:25:57 +0000 Subject: [pkgdb] cdrdao: npajkovs has requested watchbugzilla Message-ID: <20090715132557.78E5D10F89C@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on cdrdao (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From pkgdb at fedoraproject.org Wed Jul 15 13:27:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 13:27:17 +0000 Subject: [pkgdb] cdrdao had acl change status Message-ID: <20090715132717.511AE10F94F@bastion2.fedora.phx.redhat.com> rrakus has set the watchbugzilla acl on cdrdao (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cdrdao From tmz at fedoraproject.org Wed Jul 15 14:01:46 2009 From: tmz at fedoraproject.org (Todd M. Zullinger) Date: Wed, 15 Jul 2009 14:01:46 +0000 (UTC) Subject: rpms/tig/devel tig.spec,1.16,1.17 Message-ID: <20090715140146.4087911C00DF@cvs1.fedora.phx.redhat.com> Author: tmz Update of /cvs/extras/rpms/tig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15417 Modified Files: tig.spec Log Message: Temporarily disable asciidoc's safe mode until bug 506953 is fixed Index: tig.spec =================================================================== RCS file: /cvs/extras/rpms/tig/devel/tig.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- tig.spec 3 Apr 2009 12:08:45 -0000 1.16 +++ tig.spec 15 Jul 2009 14:01:45 -0000 1.17 @@ -1,6 +1,6 @@ Name: tig Version: 0.14.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Text-mode interface for the git revision control system Group: Development/Tools @@ -32,7 +32,7 @@ Using it as a pager, it will display inp %build %configure -make %{?_smp_mflags} all doc-man doc-html +make %{?_smp_mflags} all doc-man doc-html ASCIIDOC="asciidoc --unsafe" #Convert to unix line endings sed -i -e 's/\r//' *.html @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 Todd Zullinger - 0.14.1-2 +- Temporarily disable asciidoc's safe mode until bug 506953 is fixed + * Fri Apr 03 2009 James Bowes 0.14.1-1 - tig-0.14.1 From mbarnes at fedoraproject.org Wed Jul 15 13:51:03 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 13:51:03 +0000 (UTC) Subject: rpms/devhelp/devel devhelp-0.23-deprecation-workaround.patch, NONE, 1.1 devhelp.spec, 1.109, 1.110 Message-ID: <20090715135103.D937011C00DF@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/devhelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13007 Modified Files: devhelp.spec Added Files: devhelp-0.23-deprecation-workaround.patch Log Message: * Wed Jul 15 2009 Matthew Barnes - 0.23-8 - Add patch for GNOME bug #588655 (work around GLib deprecations). devhelp-0.23-deprecation-workaround.patch: --- NEW FILE devhelp-0.23-deprecation-workaround.patch --- diff -up devhelp-0.23/src/dh-assistant-view.c.deprecation-workaround devhelp-0.23/src/dh-assistant-view.c --- devhelp-0.23/src/dh-assistant-view.c.deprecation-workaround 2008-11-28 10:56:04.000000000 -0500 +++ devhelp-0.23/src/dh-assistant-view.c 2009-07-15 09:47:19.000000000 -0400 @@ -340,7 +340,11 @@ assistant_view_set_link (DhAssistantView webkit_web_view_open (WEBKIT_WEB_VIEW (view), "about:blank"); } +#if GLIB_CHECK_VERSION(2,21,3) + g_mapped_file_unref (file); +#else g_mapped_file_free (file); +#endif g_free (filename); } Index: devhelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/devhelp/devel/devhelp.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- devhelp.spec 2 Jul 2009 06:24:09 -0000 1.109 +++ devhelp.spec 15 Jul 2009 13:51:03 -0000 1.110 @@ -6,7 +6,7 @@ Name: devhelp Version: 0.23 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Development/Tools Summary: API documention browser @@ -14,6 +14,14 @@ URL: http://developer.imendio.com/projec Source: http://download.gnome.org/sources/devhelp/0.23/devhelp-%{version}.tar.bz2 BuildRoot: %{_tmppath}/devhelp-%{version}-%{release}-root-%(%{__id_u} -n) +### Patches ### + +# RH bug #572022 +Patch0: devhelp-load-uris.patch + +# GNOME bug #588655 +Patch1: devhelp-0.23-deprecation-workaround.patch + ### Dependencies ### Requires(pre): GConf2 >= 2.14 @@ -30,9 +38,6 @@ BuildRequires: gtk2-devel BuildRequires: WebKit-gtk-devel BuildRequires: GConf2-devel -# http://bugzilla.gnome.org/show_bug.cgi?id=572022 -Patch0: devhelp-load-uris.patch - %description Devhelp is an API documentation browser for the GNOME desktop. It works natively with API documentation generated by gtk-doc. @@ -54,6 +59,7 @@ into other applications such as IDEs. %prep %setup -q -n devhelp-%{version} %patch0 -p0 -b .uris +%patch1 -p1 -b .deprecation-workaround # force regeneration rm data/devhelp.schemas @@ -140,6 +146,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Wed Jul 15 2009 Matthew Barnes - 0.23-8 +- Add patch for GNOME bug #588655 (work around GLib deprecations). + * Thu Jul 2 2009 Matthias Clasen - 0.23-7 - Shrink GConf schemas From pkgdb at fedoraproject.org Wed Jul 15 14:17:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:13 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141713.DEE9310F8A3@bastion2.fedora.phx.redhat.com> mso has set the watchbugzilla acl on gtk-murrine-engine (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:16 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141716.8191A10F84C@bastion2.fedora.phx.redhat.com> mso has set the watchcommits acl on gtk-murrine-engine (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:18 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141718.58DBF10F8AA@bastion2.fedora.phx.redhat.com> mso has set the commit acl on gtk-murrine-engine (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:21 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141721.42C8F10F898@bastion2.fedora.phx.redhat.com> mso has set the approveacls acl on gtk-murrine-engine (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:28 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141728.0A9DA10F8AD@bastion2.fedora.phx.redhat.com> mso has set the watchbugzilla acl on gtk-murrine-engine (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:30 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141730.B27CB10F888@bastion2.fedora.phx.redhat.com> mso has set the watchcommits acl on gtk-murrine-engine (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:32 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141732.E90BF10F8B1@bastion2.fedora.phx.redhat.com> mso has set the commit acl on gtk-murrine-engine (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:35 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141735.5C10010F8B3@bastion2.fedora.phx.redhat.com> mso has set the approveacls acl on gtk-murrine-engine (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:38 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141738.6D1FF10F8B6@bastion2.fedora.phx.redhat.com> mso has set the watchbugzilla acl on gtk-murrine-engine (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:40 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141741.04EF810F8A6@bastion2.fedora.phx.redhat.com> mso has set the watchcommits acl on gtk-murrine-engine (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:42 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141742.CCA5510F8BD@bastion2.fedora.phx.redhat.com> mso has set the commit acl on gtk-murrine-engine (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From pkgdb at fedoraproject.org Wed Jul 15 14:17:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:17:45 +0000 Subject: [pkgdb] gtk-murrine-engine had acl change status Message-ID: <20090715141745.5577410F8AA@bastion2.fedora.phx.redhat.com> mso has set the approveacls acl on gtk-murrine-engine (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtk-murrine-engine From steved at fedoraproject.org Wed Jul 15 14:37:40 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Wed, 15 Jul 2009 14:37:40 +0000 (UTC) Subject: rpms/nfs-utils/devel nfs-utils-1.2.1-rc2.patch, NONE, 1.1 nfs-utils.spec, 1.236, 1.237 Message-ID: <20090715143740.827C011C00DF@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/nfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24788 Modified Files: nfs-utils.spec Added Files: nfs-utils-1.2.1-rc2.patch Log Message: - Added upstream 1.2.1-rc2 patch - A large number of mount command changes. nfs-utils-1.2.1-rc2.patch: --- NEW FILE nfs-utils-1.2.1-rc2.patch --- diff --git a/.gitignore b/.gitignore index cfc329a..632609e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,11 @@ ltmain.sh Makefile.in missing support/include/config.h.in +aclocal/libtool.m4 +aclocal/ltoptions.m4 +aclocal/ltsugar.m4 +aclocal/ltversion.m4 +aclocal/lt~obsolete.m4 # files generated by configure confdefs.h config.status diff --git a/support/include/nfsrpc.h b/support/include/nfsrpc.h index 543c35b..dff6af7 100644 --- a/support/include/nfsrpc.h +++ b/support/include/nfsrpc.h @@ -49,6 +49,25 @@ #define NSMPROG ((rpcprog_t)100024) #endif +/** + * nfs_clear_rpc_createerr - zap all error reporting fields + * + */ +static inline void nfs_clear_rpc_createerr(void) +{ + memset(&rpc_createerr, 0, sizeof(rpc_createerr)); +} + +/* + * Extract port value from a socket address + */ +extern uint16_t nfs_get_port(const struct sockaddr *); + +/* + * Set port value in a socket address + */ +extern void nfs_set_port(struct sockaddr *, const uint16_t); + /* * Look up an RPC program name in /etc/rpc */ @@ -73,8 +92,7 @@ extern CLIENT *nfs_get_priv_rpcclient( const struct sockaddr *, /* * Convert a socket address to a universal address */ -extern char *nfs_sockaddr2universal(const struct sockaddr *, - const socklen_t); +extern char *nfs_sockaddr2universal(const struct sockaddr *); /* * Extract port number from a universal address @@ -114,7 +132,6 @@ extern unsigned short nfs_rpcb_getaddr(const struct sockaddr *, const socklen_t, const unsigned short, const struct sockaddr *, - const socklen_t, const rpcprog_t, const rpcvers_t, const unsigned short, diff --git a/support/nfs/getport.c b/support/nfs/getport.c index cf1677e..4bdf556 100644 --- a/support/nfs/getport.c +++ b/support/nfs/getport.c @@ -65,77 +65,52 @@ static const rpcvers_t default_rpcb_version = RPCBVERS_4; static const rpcvers_t default_rpcb_version = PMAPVERS; #endif /* !HAVE_LIBTIRPC */ -#ifdef HAVE_DECL_AI_ADDRCONFIG /* - * getaddrinfo(3) generates a usable loopback address based on how the - * local network interfaces are configured. RFC 3484 requires that the - * results are sorted so that the first result has the best likelihood - * of working, so we try just that first result. + * Historical: Map TCP connect timeouts to timeout + * error code used by UDP. + */ +static void +nfs_gp_map_tcp_errorcodes(const unsigned short protocol) +{ + if (protocol != IPPROTO_TCP) + return; + + switch (rpc_createerr.cf_error.re_errno) { + case ETIMEDOUT: + rpc_createerr.cf_stat = RPC_TIMEDOUT; + break; + case ECONNREFUSED: + rpc_createerr.cf_stat = RPC_CANTRECV; + break; + } +} + +/* + * There's no easy way to tell how the local system's networking + * and rpcbind is configured (ie. whether we want to use IPv6 or + * IPv4 loopback to contact RPC services on the local host). We + * punt and simply try to look up "localhost". * * Returns TRUE on success. */ static int nfs_gp_loopback_address(struct sockaddr *sap, socklen_t *salen) { struct addrinfo *gai_results; - struct addrinfo gai_hint = { - .ai_flags = AI_ADDRCONFIG, - }; - socklen_t len = *salen; int ret = 0; - if (getaddrinfo(NULL, "sunrpc", &gai_hint, &gai_results)) + if (getaddrinfo("localhost", NULL, NULL, &gai_results)) return 0; - switch (gai_results->ai_addr->sa_family) { - case AF_INET: - case AF_INET6: - if (len >= gai_results->ai_addrlen) { - memcpy(sap, gai_results->ai_addr, - gai_results->ai_addrlen); - *salen = gai_results->ai_addrlen; - ret = 1; - } + if (*salen >= gai_results->ai_addrlen) { + memcpy(sap, gai_results->ai_addr, + gai_results->ai_addrlen); + *salen = gai_results->ai_addrlen; + ret = 1; } freeaddrinfo(gai_results); return ret; } -#else -/* - * Old versions of getaddrinfo(3) don't support AI_ADDRCONFIG, so we - * have a fallback for building on legacy systems. - */ -static int nfs_gp_loopback_address(struct sockaddr *sap, socklen_t *salen) -{ - struct sockaddr_in *sin = (struct sockaddr_in *)sap; - - memset(sin, 0, sizeof(*sin)); - - sin->sin_family = AF_INET; - sin->sin_addr.s_addr = htonl(INADDR_LOOPBACK); - *salen = sizeof(*sin); - - return 1; -} -#endif - -/* - * Plant port number in @sap. @port is already in network byte order. - */ -static void nfs_gp_set_port(struct sockaddr *sap, const in_port_t port) -{ - struct sockaddr_in *sin = (struct sockaddr_in *)sap; - struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; - - switch (sap->sa_family) { - case AF_INET: - sin->sin_port = port; - break; - case AF_INET6: - sin6->sin6_port = port; - break; - } -} /* * Look up a network service in /etc/services and return the @@ -201,7 +176,7 @@ static in_port_t nfs_gp_get_rpcb_port(const unsigned short protocol) * client. Otherwise returns NULL, and rpc_createerr.cf_stat is set to * reflect the error. */ -static CLIENT *nfs_gp_get_rpcbclient(const struct sockaddr *sap, +static CLIENT *nfs_gp_get_rpcbclient(struct sockaddr *sap, const socklen_t salen, const unsigned short transport, const rpcvers_t version, @@ -214,15 +189,14 @@ static CLIENT *nfs_gp_get_rpcbclient(const struct sockaddr *sap, "sunrpc", NULL, }; - struct sockaddr_storage address; - struct sockaddr *saddr = (struct sockaddr *)&address; rpcprog_t rpcb_prog = nfs_getrpcbyname(RPCBPROG, rpcb_pgmtbl); + CLIENT *clnt; - memcpy(saddr, sap, (size_t)salen); - nfs_gp_set_port(saddr, nfs_gp_get_rpcb_port(transport)); - - return nfs_get_rpcclient(saddr, salen, transport, rpcb_prog, - version, timeout); + nfs_set_port(sap, ntohs(nfs_gp_get_rpcb_port(transport))); + clnt = nfs_get_rpcclient(sap, salen, transport, rpcb_prog, + version, timeout); + nfs_gp_map_tcp_errorcodes(transport); + return clnt; } /* @@ -352,7 +326,6 @@ int nfs_universal2port(const char *uaddr) /** * nfs_sockaddr2universal - convert a sockaddr to a "universal address" * @sap: pointer to a socket address - * @salen: length of socket address * * Universal addresses (defined in RFC 1833) are used when calling an * rpcbind daemon via protocol versions 3 or 4.. @@ -361,81 +334,56 @@ int nfs_universal2port(const char *uaddr) * the returned string. Otherwise NULL is returned and * rpc_createerr.cf_stat is set to reflect the error. * + * inet_ntop(3) is used here, since getnameinfo(3) is not available + * in some earlier glibc releases, and we don't require support for + * scope IDs for universal addresses. */ -#ifdef HAVE_GETNAMEINFO - -char *nfs_sockaddr2universal(const struct sockaddr *sap, - const socklen_t salen) +char *nfs_sockaddr2universal(const struct sockaddr *sap) { - struct sockaddr_un *sun = (struct sockaddr_un *)sap; - char buf[NI_MAXHOST]; + const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap; + const struct sockaddr_un *sun = (const struct sockaddr_un *)sap; + const struct sockaddr_in *sin = (const struct sockaddr_in *)sap; + char buf[INET6_ADDRSTRLEN + 8 /* for port information */]; uint16_t port; + size_t count; + char *result; + int len; switch (sap->sa_family) { case AF_LOCAL: return strndup(sun->sun_path, sizeof(sun->sun_path)); case AF_INET: - if (getnameinfo(sap, salen, buf, (socklen_t)sizeof(buf), - NULL, 0, NI_NUMERICHOST) != 0) + if (inet_ntop(AF_INET, (const void *)&sin->sin_addr.s_addr, + buf, (socklen_t)sizeof(buf)) == NULL) goto out_err; - port = ntohs(((struct sockaddr_in *)sap)->sin_port); + port = ntohs(sin->sin_port); break; case AF_INET6: - if (getnameinfo(sap, salen, buf, (socklen_t)sizeof(buf), - NULL, 0, NI_NUMERICHOST) != 0) + if (inet_ntop(AF_INET6, (const void *)&sin6->sin6_addr, + buf, (socklen_t)sizeof(buf)) == NULL) goto out_err; - port = ntohs(((struct sockaddr_in6 *)sap)->sin6_port); + port = ntohs(sin6->sin6_port); break; default: goto out_err; } - (void)snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), ".%u.%u", + count = sizeof(buf) - strlen(buf); + len = snprintf(buf + strlen(buf), count, ".%u.%u", (unsigned)(port >> 8), (unsigned)(port & 0xff)); - - return strdup(buf); - -out_err: - rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE; - return NULL; -} - -#else /* HAVE_GETNAMEINFO */ - -char *nfs_sockaddr2universal(const struct sockaddr *sap, - const socklen_t salen) -{ - struct sockaddr_un *sun = (struct sockaddr_un *)sap; - char buf[NI_MAXHOST]; - uint16_t port; - char *addr; - - switch (sap->sa_family) { - case AF_LOCAL: - return strndup(sun->sun_path, sizeof(sun->sun_path)); - case AF_INET: - addr = inet_ntoa(((struct sockaddr_in *)sap)->sin_addr); - if (addr != NULL && strlen(addr) > sizeof(buf)) - goto out_err; - strcpy(buf, addr); - port = ntohs(((struct sockaddr_in *)sap)->sin_port); - break; - default: + /* before glibc 2.0.6, snprintf(3) could return -1 */ + if (len < 0 || (size_t)len > count) goto out_err; - } - (void)snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), ".%u.%u", - (unsigned)(port >> 8), (unsigned)(port & 0xff)); - - return strdup(buf); + result = strdup(buf); + if (result != NULL) + return result; out_err: rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE; return NULL; } -#endif /* HAVE_GETNAMEINFO */ - /* * Send a NULL request to the indicated RPC service. * @@ -450,6 +398,10 @@ static int nfs_gp_ping(CLIENT *client, struct timeval timeout) (xdrproc_t)xdr_void, NULL, timeout); + if (status != RPC_SUCCESS) { + rpc_createerr.cf_stat = status; + CLNT_GETERR(client, &rpc_createerr.cf_error); + } return (int)(status == RPC_SUCCESS); } @@ -458,15 +410,10 @@ static int nfs_gp_ping(CLIENT *client, struct timeval timeout) /* * Initialize the rpcb argument for a GETADDR request. * - * The rpcbind daemon ignores the parms.r_owner field in GETADDR - * requests, but we plant an eye-catcher to help distinguish these - * requests in network traces. - * * Returns 1 if successful, and caller must free strings pointed * to by r_netid and r_addr; otherwise 0. */ static int nfs_gp_init_rpcb_parms(const struct sockaddr *sap, - const socklen_t salen, const rpcprog_t program, const rpcvers_t version, const unsigned short protocol, @@ -478,7 +425,7 @@ static int nfs_gp_init_rpcb_parms(const struct sockaddr *sap, if (netid == NULL) return 0; - addr = nfs_sockaddr2universal(sap, salen); + addr = nfs_sockaddr2universal(sap); if (addr == NULL) { free(netid); return 0; @@ -489,7 +436,7 @@ static int nfs_gp_init_rpcb_parms(const struct sockaddr *sap, parms->r_vers = version; parms->r_netid = netid; parms->r_addr = addr; - parms->r_owner = "nfs-utils"; /* eye-catcher */ + parms->r_owner = ""; return 1; } @@ -531,7 +478,7 @@ static unsigned short nfs_gp_rpcb_getaddr(CLIENT *client, case RPC_SUCCESS: if ((uaddr == NULL) || (uaddr[0] == '\0')) { rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED; - continue; + return 0; } port = nfs_universal2port(uaddr); @@ -587,7 +534,7 @@ static unsigned long nfs_gp_pmap_getport(CLIENT *client, if (status != RPC_SUCCESS) { rpc_createerr.cf_stat = status; - clnt_geterr(client, &rpc_createerr.cf_error); + CLNT_GETERR(client, &rpc_createerr.cf_error); port = 0; } else if (port == 0) rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED; @@ -599,7 +546,6 @@ static unsigned long nfs_gp_pmap_getport(CLIENT *client, static unsigned short nfs_gp_getport_rpcb(CLIENT *client, const struct sockaddr *sap, - const socklen_t salen, const rpcprog_t program, const rpcvers_t version, const unsigned short protocol, @@ -608,8 +554,8 @@ static unsigned short nfs_gp_getport_rpcb(CLIENT *client, unsigned short port = 0; struct rpcb parms; - if (nfs_gp_init_rpcb_parms(sap, salen, program, - version, protocol, &parms) != 0) { + if (nfs_gp_init_rpcb_parms(sap, program, version, + protocol, &parms) != 0) { port = nfs_gp_rpcb_getaddr(client, &parms, timeout); nfs_gp_free_rpcb_parms(&parms); } @@ -645,7 +591,6 @@ static unsigned long nfs_gp_getport_pmap(CLIENT *client, */ static unsigned short nfs_gp_getport(CLIENT *client, const struct sockaddr *sap, - const socklen_t salen, const rpcprog_t program, const rpcvers_t version, const unsigned short protocol, @@ -654,7 +599,7 @@ static unsigned short nfs_gp_getport(CLIENT *client, switch (sap->sa_family) { #ifdef HAVE_LIBTIRPC case AF_INET6: - return nfs_gp_getport_rpcb(client, sap, salen, program, + return nfs_gp_getport_rpcb(client, sap, program, version, protocol, timeout); #endif /* HAVE_LIBTIRPC */ case AF_INET: @@ -667,7 +612,7 @@ static unsigned short nfs_gp_getport(CLIENT *client, } /** - * nfs_rcp_ping - Determine if RPC service is responding to requests + * nfs_rpc_ping - Determine if RPC service is responding to requests * @sap: pointer to address of server to query (port is already filled in) * @salen: length of server address * @program: requested RPC program number @@ -682,6 +627,8 @@ int nfs_rpc_ping(const struct sockaddr *sap, const socklen_t salen, const rpcprog_t program, const rpcvers_t version, const unsigned short protocol, const struct timeval *timeout) { + struct sockaddr_storage address; + struct sockaddr *saddr = (struct sockaddr *)&address; CLIENT *client; struct timeval tout = { -1, 0 }; int result = 0; @@ -689,9 +636,14 @@ int nfs_rpc_ping(const struct sockaddr *sap, const socklen_t salen, if (timeout != NULL) tout = *timeout; - client = nfs_get_rpcclient(sap, salen, protocol, program, version, &tout); + nfs_clear_rpc_createerr(); + + memcpy(saddr, sap, (size_t)salen); + client = nfs_get_rpcclient(saddr, salen, protocol, + program, version, &tout); if (client != NULL) { result = nfs_gp_ping(client, tout); + nfs_gp_map_tcp_errorcodes(protocol); CLNT_DESTROY(client); } @@ -744,14 +696,19 @@ unsigned short nfs_getport(const struct sockaddr *sap, const rpcvers_t version, const unsigned short protocol) { + struct sockaddr_storage address; + struct sockaddr *saddr = (struct sockaddr *)&address; struct timeval timeout = { -1, 0 }; unsigned short port = 0; CLIENT *client; - client = nfs_gp_get_rpcbclient(sap, salen, protocol, + nfs_clear_rpc_createerr(); + + memcpy(saddr, sap, (size_t)salen); + client = nfs_gp_get_rpcbclient(saddr, salen, protocol, default_rpcb_version, &timeout); if (client != NULL) { - port = nfs_gp_getport(client, sap, salen, program, + port = nfs_gp_getport(client, saddr, program, version, protocol, timeout); CLNT_DESTROY(client); } @@ -786,10 +743,12 @@ int nfs_getport_ping(struct sockaddr *sap, const socklen_t salen, CLIENT *client; int result = 0; + nfs_clear_rpc_createerr(); + client = nfs_gp_get_rpcbclient(sap, salen, protocol, default_rpcb_version, &timeout); if (client != NULL) { - port = nfs_gp_getport(client, sap, salen, program, + port = nfs_gp_getport(client, sap, program, version, protocol, timeout); CLNT_DESTROY(client); client = NULL; @@ -800,18 +759,21 @@ int nfs_getport_ping(struct sockaddr *sap, const socklen_t salen, struct sockaddr *saddr = (struct sockaddr *)&address; memcpy(saddr, sap, (size_t)salen); - nfs_gp_set_port(saddr, htons(port)); + nfs_set_port(saddr, port); + + nfs_clear_rpc_createerr(); client = nfs_get_rpcclient(saddr, salen, protocol, program, version, &timeout); if (client != NULL) { result = nfs_gp_ping(client, timeout); + nfs_gp_map_tcp_errorcodes(protocol); CLNT_DESTROY(client); } } if (result) - nfs_gp_set_port(sap, htons(port)); + nfs_set_port(sap, port); return result; } @@ -840,13 +802,6 @@ int nfs_getport_ping(struct sockaddr *sap, const socklen_t salen, * isn't listening on /var/run/rpcbind.sock), send a query via UDP to localhost * (UDP doesn't leave a socket in TIME_WAIT, and the timeout is a relatively * short 3 seconds). - * - * getaddrinfo(3) generates a usable loopback address. RFC 3484 requires that - * the results are sorted so that the first result has the best likelihood of - * working, so we try just that first result. If IPv6 is all that is - * available, we are sure to generate an AF_INET6 loopback address and use - * rpcbindv4/v3 GETADDR. AF_INET6 requests go via rpcbind v4/3 in order to - * detect if the requested RPC service supports AF_INET6 or not. */ unsigned short nfs_getlocalport(const rpcprot_t program, const rpcvers_t version, @@ -867,11 +822,13 @@ unsigned short nfs_getlocalport(const rpcprot_t program, CLIENT *client; struct timeval timeout = { -1, 0 }; + nfs_clear_rpc_createerr(); + client = nfs_gp_get_rpcbclient(sap, salen, 0, RPCBVERS_4, &timeout); if (client != NULL) { struct rpcb parms; - if (nfs_gp_init_rpcb_parms(sap, salen, program, version, + if (nfs_gp_init_rpcb_parms(sap, program, version, protocol, &parms) != 0) { port = nfs_gp_rpcb_getaddr(client, &parms, timeout); nfs_gp_free_rpcb_parms(&parms); @@ -881,6 +838,8 @@ unsigned short nfs_getlocalport(const rpcprot_t program, #endif /* NFS_GP_LOCAL */ if (port == 0) { + nfs_clear_rpc_createerr(); + if (nfs_gp_loopback_address(lb_addr, &lb_len)) { port = nfs_getport(lb_addr, lb_len, program, version, protocol); @@ -897,7 +856,6 @@ unsigned short nfs_getlocalport(const rpcprot_t program, * @salen: length of server address * @transport: transport protocol to use for the query * @addr: pointer to r_addr address - * @addrlen: length of address * @program: requested RPC program number * @version: requested RPC version number * @protocol: requested IPPROTO_ value of transport protocol @@ -928,12 +886,13 @@ unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap, const socklen_t salen, const unsigned short transport, const struct sockaddr *addr, - const socklen_t addrlen, const rpcprog_t program, const rpcvers_t version, const unsigned short protocol, const struct timeval *timeout) { + struct sockaddr_storage address; + struct sockaddr *saddr = (struct sockaddr *)&address; CLIENT *client; struct rpcb parms; struct timeval tout = { -1, 0 }; @@ -942,9 +901,13 @@ unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap, if (timeout != NULL) tout = *timeout; - client = nfs_gp_get_rpcbclient(sap, salen, transport, RPCBVERS_4, &tout); + nfs_clear_rpc_createerr(); + + memcpy(saddr, sap, (size_t)salen); + client = nfs_gp_get_rpcbclient(saddr, salen, transport, + RPCBVERS_4, &tout); if (client != NULL) { - if (nfs_gp_init_rpcb_parms(addr, addrlen, program, version, + if (nfs_gp_init_rpcb_parms(addr, program, version, protocol, &parms) != 0) { port = nfs_gp_rpcb_getaddr(client, &parms, tout); nfs_gp_free_rpcb_parms(&parms); @@ -957,16 +920,17 @@ unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap, #else /* !HAVE_LIBTIRPC */ -unsigned short nfs_rpcb_getaddr(const struct sockaddr *sap, - const socklen_t salen, - const unsigned short transport, - const struct sockaddr *addr, - const socklen_t addrlen, - const rpcprog_t program, - const rpcvers_t version, - const unsigned short protocol, - const struct timeval *timeout) +unsigned short nfs_rpcb_getaddr(__attribute__((unused)) const struct sockaddr *sap, + __attribute__((unused)) const socklen_t salen, + __attribute__((unused)) const unsigned short transport, + __attribute__((unused)) const struct sockaddr *addr, + __attribute__((unused)) const rpcprog_t program, + __attribute__((unused)) const rpcvers_t version, + __attribute__((unused)) const unsigned short protocol, + __attribute__((unused)) const struct timeval *timeout) { + nfs_clear_rpc_createerr(); + rpc_createerr.cf_stat = RPC_UNKNOWNADDR; return 0; } @@ -1008,6 +972,8 @@ unsigned long nfs_pmap_getport(const struct sockaddr_in *sin, const unsigned long protocol, const struct timeval *timeout) { + struct sockaddr_in address; + struct sockaddr *saddr = (struct sockaddr *)&address; CLIENT *client; struct pmap parms = { .pm_prog = program, @@ -1020,8 +986,10 @@ unsigned long nfs_pmap_getport(const struct sockaddr_in *sin, if (timeout != NULL) tout = *timeout; - client = nfs_gp_get_rpcbclient((struct sockaddr *)sin, - (socklen_t)sizeof(*sin), + nfs_clear_rpc_createerr(); + + memcpy(saddr, sin, sizeof(address)); + client = nfs_gp_get_rpcbclient(saddr, (socklen_t)sizeof(*sin), transport, PMAPVERS, &tout); if (client != NULL) { port = nfs_gp_pmap_getport(client, &parms, tout); diff --git a/support/nfs/rpc_socket.c b/support/nfs/rpc_socket.c index cebf83d..9c20f61 100644 --- a/support/nfs/rpc_socket.c +++ b/support/nfs/rpc_socket.c @@ -132,7 +132,7 @@ static int nfs_bind(const int sock, const sa_family_t family) return -1; } -#ifdef IPV6_SUPPORTED +#ifdef HAVE_LIBTIRPC /* * Bind a socket using an unused privileged source port. @@ -162,7 +162,7 @@ static int nfs_bindresvport(const int sock, const sa_family_t family) return -1; } -#else /* !IPV6_SUPPORTED */ +#else /* !HAVE_LIBTIRPC */ /* * Bind a socket using an unused privileged source port. @@ -180,7 +180,7 @@ static int nfs_bindresvport(const int sock, const sa_family_t family) return bindresvport(sock, NULL); } -#endif /* !IPV6_SUPPORTED */ +#endif /* !HAVE_LIBTIRPC */ /* * Perform a non-blocking connect on the socket fd. @@ -326,7 +326,9 @@ static CLIENT *nfs_get_udpclient(const struct sockaddr *sap, version, *timeout, &sock); #endif /* !HAVE_LIBTIRPC */ if (client != NULL) { - CLNT_CONTROL(client, CLSET_RETRY_TIMEOUT, (char *)timeout); + struct timeval retry_timeout = { 1, 0 }; + CLNT_CONTROL(client, CLSET_RETRY_TIMEOUT, + (char *)&retry_timeout); CLNT_CONTROL(client, CLSET_FD_CLOSE, NULL); } else (void)close(sock); @@ -414,6 +416,49 @@ static CLIENT *nfs_get_tcpclient(const struct sockaddr *sap, } /** + * nfs_get_port - extract port value from a socket address + * @sap: pointer to socket address + * + * Returns port value in host byte order. + */ +uint16_t +nfs_get_port(const struct sockaddr *sap) +{ + const struct sockaddr_in *sin = (const struct sockaddr_in *)sap; + const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap; + + switch (sap->sa_family) { + case AF_INET: + return ntohs(sin->sin_port); + case AF_INET6: + return ntohs(sin6->sin6_port); + } + return 0; +} + +/** + * nfs_set_port - set port value in a socket address + * @sap: pointer to socket address + * @port: port value to set + * + */ +void +nfs_set_port(struct sockaddr *sap, const uint16_t port) +{ + struct sockaddr_in *sin = (struct sockaddr_in *)sap; + struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; + + switch (sap->sa_family) { + case AF_INET: + sin->sin_port = htons(port); + break; + case AF_INET6: + sin6->sin6_port = htons(port); + break; + } +} + +/** * nfs_get_rpcclient - acquire an RPC client * @sap: pointer to socket address of RPC server * @salen: length of socket address @@ -438,27 +483,21 @@ CLIENT *nfs_get_rpcclient(const struct sockaddr *sap, const rpcvers_t version, struct timeval *timeout) { - struct sockaddr_in *sin = (struct sockaddr_in *)sap; - struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; + nfs_clear_rpc_createerr(); switch (sap->sa_family) { case AF_LOCAL: return nfs_get_localclient(sap, salen, program, version, timeout); case AF_INET: - if (sin->sin_port == 0) { - rpc_createerr.cf_stat = RPC_UNKNOWNADDR; - return NULL; - } - break; case AF_INET6: - if (sin6->sin6_port == 0) { + if (nfs_get_port(sap) == 0) { rpc_createerr.cf_stat = RPC_UNKNOWNADDR; return NULL; } break; default: - rpc_createerr.cf_stat = RPC_UNKNOWNHOST; + rpc_createerr.cf_stat = RPC_UNKNOWNADDR; return NULL; } @@ -501,27 +540,21 @@ CLIENT *nfs_get_priv_rpcclient(const struct sockaddr *sap, const rpcvers_t version, struct timeval *timeout) { - struct sockaddr_in *sin = (struct sockaddr_in *)sap; - struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; + nfs_clear_rpc_createerr(); switch (sap->sa_family) { case AF_LOCAL: return nfs_get_localclient(sap, salen, program, version, timeout); case AF_INET: - if (sin->sin_port == 0) { - rpc_createerr.cf_stat = RPC_UNKNOWNADDR; - return NULL; - } - break; case AF_INET6: - if (sin6->sin6_port == 0) { + if (nfs_get_port(sap) == 0) { rpc_createerr.cf_stat = RPC_UNKNOWNADDR; return NULL; } break; default: - rpc_createerr.cf_stat = RPC_UNKNOWNHOST; + rpc_createerr.cf_stat = RPC_UNKNOWNADDR; return NULL; } diff --git a/utils/gssd/svcgssd.c b/utils/gssd/svcgssd.c index 69d2a69..729b6a6 100644 --- a/utils/gssd/svcgssd.c +++ b/utils/gssd/svcgssd.c @@ -117,10 +117,16 @@ mydaemon(int nochdir, int noclose) if (noclose == 0) { tempfd = open("/dev/null", O_RDWR); - dup2(tempfd, 0); - dup2(tempfd, 1); - dup2(tempfd, 2); - closeall(3); + if (tempfd >= 0) { + dup2(tempfd, 0); + dup2(tempfd, 1); + dup2(tempfd, 2); + close(tempfd); + } else { + printerr(1, "mydaemon: can't open /dev/null: errno %d " + "(%s)\n", errno, strerror(errno)); + exit(1); + } } return; diff --git a/utils/idmapd/idmapd.c b/utils/idmapd/idmapd.c index b690e21..9cbe96c 100644 --- a/utils/idmapd/idmapd.c +++ b/utils/idmapd/idmapd.c @@ -978,9 +978,12 @@ mydaemon(int nochdir, int noclose) dup2(tempfd, 0); dup2(tempfd, 1); dup2(tempfd, 2); - closeall(3); - } else - closeall(0); + close(tempfd); + } else { + err(1, "mydaemon: can't open /dev/null: errno %d", + errno); + exit(1); + } } return; diff --git a/utils/mount/error.c b/utils/mount/error.c index 5c9d3f2..1b64bd7 100644 --- a/utils/mount/error.c +++ b/utils/mount/error.c @@ -70,9 +70,15 @@ static int rpc_strerror(int spos) pos = snprintf(tmp, (erreob - tmp), _("System Error: %s"), strerror(cf_errno)); - else - pos = snprintf(tmp, (erreob - tmp), - _("RPC Error:%s"), estr); + else { + if (cf_errno) + pos = snprintf(tmp, (erreob - tmp), + _("RPC Error:%s; errno = %s"), + estr, strerror(cf_errno)); + else + pos = snprintf(tmp, (erreob - tmp), + _("RPC Error:%s"), estr); + } } return pos; } @@ -300,6 +306,8 @@ void umount_error(int err, const char *dev) #define EDQUOT ENOSPC #endif +#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) + static struct { enum nfsstat stat; int errnum; @@ -329,19 +337,17 @@ static struct { #endif /* Throw in some NFSv3 values for even more fun (HP returns these) */ { 71, EREMOTE }, - - { -1, EIO } }; -char *nfs_strerror(int stat) +char *nfs_strerror(unsigned int stat) { - int i; + unsigned int i; static char buf[256]; - for (i = 0; nfs_errtbl[i].stat != -1; i++) { + for (i = 0; i < ARRAY_SIZE(nfs_errtbl); i++) { if (nfs_errtbl[i].stat == stat) return strerror(nfs_errtbl[i].errnum); } - sprintf(buf, _("unknown nfs status return value: %d"), stat); + sprintf(buf, _("unknown nfs status return value: %u"), stat); return buf; } diff --git a/utils/mount/error.h b/utils/mount/error.h index 7126de5..42b28cf 100644 --- a/utils/mount/error.h +++ b/utils/mount/error.h @@ -24,7 +24,7 @@ #ifndef _NFS_UTILS_MOUNT_ERROR_H #define _NFS_UTILS_MOUNT_ERROR_H -char *nfs_strerror(int); +char *nfs_strerror(unsigned int); void mount_error(const char *, const char *, int); void rpc_mount_errors(char *, int, int); diff --git a/utils/mount/fstab.c b/utils/mount/fstab.c index 7668167..2775d0b 100644 --- a/utils/mount/fstab.c +++ b/utils/mount/fstab.c @@ -285,7 +285,7 @@ handler (int sig) { } static void -setlkw_timeout (int sig) { +setlkw_timeout (__attribute__((unused)) int sig) { /* nothing, fcntl will fail anyway */ } diff --git a/utils/mount/mount.c b/utils/mount/mount.c index 06e2804..a668cd9 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -156,7 +156,7 @@ static void parse_opts(const char *options, int *flags, char **extra_opts); */ static void discover_nfs_mount_data_version(void) { - int kernel_version = linux_version_code(); + unsigned int kernel_version = linux_version_code(); if (kernel_version) { if (kernel_version < MAKE_VERSION(2, 1, 32)) @@ -417,7 +417,7 @@ static int chk_mountpoint(char *mount_point) static int try_mount(char *spec, char *mount_point, int flags, char *fs_type, char **extra_opts, char *mount_opts, - int fake, int nomtab, int bg) + int fake, int bg) { int ret; @@ -582,7 +582,7 @@ int main(int argc, char *argv[]) } mnt_err = try_mount(spec, mount_point, flags, fs_type, &extra_opts, - mount_opts, fake, nomtab, FOREGROUND); + mount_opts, fake, FOREGROUND); if (mnt_err == EX_BG) { printf(_("%s: backgrounding \"%s\"\n"), progname, spec); @@ -600,7 +600,7 @@ int main(int argc, char *argv[]) mnt_err = try_mount(spec, mount_point, flags, fs_type, &extra_opts, mount_opts, fake, - nomtab, BACKGROUND); + BACKGROUND); if (verbose && mnt_err) printf(_("%s: giving up \"%s\"\n"), progname, spec); diff --git a/utils/mount/network.c b/utils/mount/network.c index 04a62ab..f6fa5fd 100644 --- a/utils/mount/network.c +++ b/utils/mount/network.c @@ -170,21 +170,6 @@ static const unsigned long probe_mnt3_first[] = { 0, }; -static void nfs_set_port(struct sockaddr *sap, const unsigned short port) -{ - switch (sap->sa_family) { - case AF_INET: - ((struct sockaddr_in *)sap)->sin_port = htons(port); - break; - case AF_INET6: - ((struct sockaddr_in6 *)sap)->sin6_port = htons(port); - break; - default: - nfs_error(_("%s: unrecognized address family in %s"), - progname, __func__); - } -} - static int nfs_lookup(const char *hostname, const sa_family_t family, struct sockaddr *sap, socklen_t *salen) { @@ -270,7 +255,6 @@ int nfs_gethostbyname(const char *hostname, struct sockaddr_in *sin) /** * nfs_string_to_sockaddr - convert string address to sockaddr * @address: pointer to presentation format address to convert - * @addrlen: length of presentation address * @sap: pointer to socket address buffer to fill in * @salen: IN: length of address buffer * OUT: length of converted socket address @@ -284,8 +268,8 @@ int nfs_gethostbyname(const char *hostname, struct sockaddr_in *sin) * See RFC 4038 section 5.1 or RFC 3513 section 2.2 for more details * on presenting IPv6 addresses as text strings. */ -int nfs_string_to_sockaddr(const char *address, const size_t addrlen, - struct sockaddr *sap, socklen_t *salen) +int nfs_string_to_sockaddr(const char *address, struct sockaddr *sap, + socklen_t *salen) { struct addrinfo *gai_results; struct addrinfo gai_hint = { @@ -509,6 +493,21 @@ static void nfs_pp_debug(const struct sockaddr *sap, const socklen_t salen, port); } +static void nfs_pp_debug2(const char *str) +{ + if (!verbose) + return; + + if (rpc_createerr.cf_error.re_status == RPC_CANTRECV || + rpc_createerr.cf_error.re_status == RPC_CANTSEND) + nfs_error(_("%s: portmap query %s%s - %s"), + progname, str, clnt_spcreateerror(""), + strerror(rpc_createerr.cf_error.re_errno)); + else + nfs_error(_("%s: portmap query %s%s"), + progname, str, clnt_spcreateerror("")); +} + /* * Use the portmapper to discover whether or not the service we want is * available. The lists 'versions' and 'protos' define ordered sequences @@ -538,9 +537,11 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen, memcpy(saddr, sap, salen); p_prot = prot ? &prot : protos; p_vers = vers ? &vers : versions; - rpc_createerr.cf_stat = 0; for (;;) { + if (verbose) + printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"), + progname, prog, *p_vers, *p_prot); p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot); if (p_port) { if (!port || port == p_port) { @@ -550,28 +551,31 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen, if (nfs_rpc_ping(saddr, salen, prog, *p_vers, *p_prot, NULL)) goto out_ok; - } + } else + rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED; } if (rpc_createerr.cf_stat != RPC_PROGNOTREGISTERED && rpc_createerr.cf_stat != RPC_TIMEDOUT && rpc_createerr.cf_stat != RPC_CANTRECV && rpc_createerr.cf_stat != RPC_PROGVERSMISMATCH) - goto out_bad; + break; if (!prot) { - if (*++p_prot) + if (*++p_prot) { + nfs_pp_debug2("retrying"); continue; + } p_prot = protos; } if (rpc_createerr.cf_stat == RPC_TIMEDOUT || rpc_createerr.cf_stat == RPC_CANTRECV) - goto out_bad; + break; if (vers || !*++p_vers) break; } -out_bad: + nfs_pp_debug2("failed"); return 0; out_ok: @@ -581,7 +585,7 @@ out_ok: pmap->pm_prot = *p_prot; if (!port) pmap->pm_port = p_port; - rpc_createerr.cf_stat = 0; + nfs_clear_rpc_createerr(); return 1; } @@ -778,8 +782,8 @@ int start_statd(void) execl(START_STATD, START_STATD, NULL); exit(1); case -1: /* error */ - nfs_error(_("fork failed: %s"), - strerror(errno)); + nfs_error(_("%s: fork failed: %s"), + progname, strerror(errno)); break; default: /* parent */ waitpid(pid, NULL,0); @@ -844,10 +848,14 @@ int nfs_advise_umount(const struct sockaddr *sap, const socklen_t salen, (xdrproc_t)xdr_dirpath, (caddr_t)argp, (xdrproc_t)xdr_void, NULL, timeout); - if (verbose && res != RPC_SUCCESS) - nfs_error(_("%s: UMNT call failed: %s"), - progname, clnt_sperrno(res)); + if (res != RPC_SUCCESS) { + rpc_createerr.cf_stat = res; + CLNT_GETERR(client, &rpc_createerr.cf_error); + if (verbose) + nfs_error(_("%s: UMNT call failed: %s"), + progname, clnt_sperrno(res)); + } auth_destroy(client->cl_auth); CLNT_DESTROY(client); @@ -1098,7 +1106,7 @@ static int nfs_ca_sockname(const struct sockaddr *sap, const socklen_t salen, * * Returns 1 and fills in @buf if successful; otherwise, zero. */ -static int nfs_ca_gai(const struct sockaddr *sap, const socklen_t salen, +static int nfs_ca_gai(const struct sockaddr *sap, struct sockaddr *buf, socklen_t *buflen) { struct addrinfo *gai_results; @@ -1139,7 +1147,7 @@ int nfs_callback_address(const struct sockaddr *sap, const socklen_t salen, struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf; if (nfs_ca_sockname(sap, salen, buf, buflen) == 0) - if (nfs_ca_gai(sap, salen, buf, buflen) == 0) + if (nfs_ca_gai(sap, buf, buflen) == 0) goto out_failed; /* @@ -1154,173 +1162,285 @@ int nfs_callback_address(const struct sockaddr *sap, const socklen_t salen, out_failed: *buflen = 0; if (verbose) - nfs_error(_("%s: failed to construct callback address")); + nfs_error(_("%s: failed to construct callback address"), + progname); return 0; - } /* - * "nfsprog" is only supported by the legacy mount command. The + * "nfsprog" is supported only by the legacy mount command. The * kernel mount client does not support this option. * - * Returns the value set by the nfsprog= option, the value of - * the RPC NFS program specified in /etc/rpc, or a baked-in - * default program number, if all fails. + * Returns TRUE if @program contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static rpcprog_t nfs_nfs_program(struct mount_options *options) +static int +nfs_nfs_program(struct mount_options *options, unsigned long *program) { long tmp; - if (po_get_numeric(options, "nfsprog", &tmp) == PO_FOUND) - if (tmp >= 0) - return tmp; - return nfs_getrpcbyname(NFSPROG, nfs_nfs_pgmtbl); -} + switch (po_get_numeric(options, "nfsprog", &tmp)) { + case PO_NOT_FOUND: + break; + case PO_FOUND: + if (tmp > 0) { + *program = tmp; + return 1; + } + case PO_BAD_VALUE: + return 0; + } + /* + * NFS RPC program wasn't specified. The RPC program + * cannot be determined via an rpcbind query. + */ + *program = nfs_getrpcbyname(NFSPROG, nfs_nfs_pgmtbl); + return 1; +} /* - * Returns the RPC version number specified by the given mount - * options for the NFS service, or zero if all fails. + * Returns TRUE if @version contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static rpcvers_t nfs_nfs_version(struct mount_options *options) +static int +nfs_nfs_version(struct mount_options *options, unsigned long *version) { long tmp; switch (po_rightmost(options, nfs_version_opttbl)) { case 0: /* v2 */ - return 2; + *version = 2; + return 1; case 1: /* v3 */ - return 3; + *version = 3; + return 1; case 2: /* vers */ - if (po_get_numeric(options, "vers", &tmp) == PO_FOUND) - if (tmp >= 2 && tmp <= 3) - return tmp; - break; + switch (po_get_numeric(options, "vers", &tmp)) { + case PO_FOUND: + if (tmp >= 2 && tmp <= 3) { + *version = tmp; + return 1; + } + return 0; + case PO_NOT_FOUND: + nfs_error(_("%s: option parsing error\n"), + progname); + case PO_BAD_VALUE: + return 0; + } case 3: /* nfsvers */ - if (po_get_numeric(options, "nfsvers", &tmp) == PO_FOUND) - if (tmp >= 2 && tmp <= 3) - return tmp; - break; + switch (po_get_numeric(options, "nfsvers", &tmp)) { + case PO_FOUND: + if (tmp >= 2 && tmp <= 3) { + *version = tmp; + return 1; + } + return 0; + case PO_NOT_FOUND: + nfs_error(_("%s: option parsing error\n"), + progname); + case PO_BAD_VALUE: + return 0; + } } - return 0; + /* + * NFS version wasn't specified. The pmap version value + * will be filled in later by an rpcbind query in this case. + */ + *version = 0; + return 1; } /* - * Returns the NFS transport protocol specified by the given mount options - * - * Returns the IPPROTO_ value specified by the given mount options, or - * IPPROTO_UDP if all fails. + * Returns TRUE if @protocol contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static unsigned short nfs_nfs_protocol(struct mount_options *options) +static int +nfs_nfs_protocol(struct mount_options *options, unsigned long *protocol) { char *option; switch (po_rightmost(options, nfs_transport_opttbl)) { + case 0: /* udp */ + *protocol = IPPROTO_UDP; + return 1; case 1: /* tcp */ - return IPPROTO_TCP; + *protocol = IPPROTO_TCP; + return 1; case 2: /* proto */ option = po_get(options, "proto"); if (option) { - if (strcmp(option, "tcp") == 0) - return IPPROTO_TCP; - if (strcmp(option, "udp") == 0) - return IPPROTO_UDP; + if (strcmp(option, "tcp") == 0) { + *protocol = IPPROTO_TCP; + return 1; + } + if (strcmp(option, "udp") == 0) { + *protocol = IPPROTO_UDP; + return 1; + } + return 0; } } - return IPPROTO_UDP; + /* + * NFS transport protocol wasn't specified. The pmap + * protocol value will be filled in later by an rpcbind + * query in this case. + */ + *protocol = 0; + return 1; } /* - * Returns the NFS server's port number specified by the given - * mount options, or zero if all fails. Zero results in a portmap - * query to discover the server's mountd service port. - * - * port=0 will guarantee an rpcbind request precedes the first - * NFS RPC so the client can determine the server's port number. + * Returns TRUE if @port contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static unsigned short nfs_nfs_port(struct mount_options *options) +static int +nfs_nfs_port(struct mount_options *options, unsigned long *port) { long tmp; - if (po_get_numeric(options, "port", &tmp) == PO_FOUND) - if (tmp >= 0 && tmp <= 65535) - return tmp; - return 0; + switch (po_get_numeric(options, "port", &tmp)) { + case PO_NOT_FOUND: + break; + case PO_FOUND: + if (tmp >= 1 && tmp <= 65535) { + *port = tmp; + return 1; + } + case PO_BAD_VALUE: + return 0; + } + + /* + * NFS service port wasn't specified. The pmap port value + * will be filled in later by an rpcbind query in this case. + */ + *port = 0; + return 1; } /* - * "mountprog" is only supported by the legacy mount command. The + * "mountprog" is supported only by the legacy mount command. The * kernel mount client does not support this option. * - * Returns the value set by the mountprog= option, the value of - * the RPC mount program specified in /etc/rpc, or a baked-in - * default program number, if all fails. + * Returns TRUE if @program contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static rpcprog_t nfs_mount_program(struct mount_options *options) +static int +nfs_mount_program(struct mount_options *options, unsigned long *program) { long tmp; - if (po_get_numeric(options, "mountprog", &tmp) == PO_FOUND) - if (tmp >= 0) - return tmp; - return nfs_getrpcbyname(MOUNTPROG, nfs_mnt_pgmtbl); + switch (po_get_numeric(options, "mountprog", &tmp)) { + case PO_NOT_FOUND: + break; + case PO_FOUND: + if (tmp > 0) { + *program = tmp; + return 1; + } + case PO_BAD_VALUE: + return 0; + } + + /* + * MNT RPC program wasn't specified. The RPC program + * cannot be determined via an rpcbind query. + */ + *program = nfs_getrpcbyname(MOUNTPROG, nfs_mnt_pgmtbl); + return 1; } /* - * Returns the RPC version number specified by the given mount options, - * or the version "3" if all fails. + * Returns TRUE if @version contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static rpcvers_t nfs_mount_version(struct mount_options *options) +static int +nfs_mount_version(struct mount_options *options, unsigned long *version) { long tmp; - if (po_get_numeric(options, "mountvers", &tmp) == PO_FOUND) - if (tmp >= 1 && tmp <= 4) - return tmp; + switch (po_get_numeric(options, "mountvers", &tmp)) { + case PO_NOT_FOUND: + break; + case PO_FOUND: + if (tmp >= 1 && tmp <= 4) { + *version = tmp; + return 1; + } + case PO_BAD_VALUE: + return 0; + } - return nfsvers_to_mnt(nfs_nfs_version(options)); + /* + * MNT version wasn't specified. The pmap version value + * will be filled in later by an rpcbind query in this case. + */ + *version = 0; + return 1; } /* - * Returns the transport protocol to use for the mount service - * - * Returns the IPPROTO_ value specified by the mountproto option, or - * if that doesn't exist, the IPPROTO_ value specified for NFS - * itself. + * Returns TRUE if @protocol contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static unsigned short nfs_mount_protocol(struct mount_options *options) +static int +nfs_mount_protocol(struct mount_options *options, unsigned long *protocol) { char *option; option = po_get(options, "mountproto"); if (option) { - if (strcmp(option, "tcp") == 0) - return IPPROTO_TCP; - if (strcmp(option, "udp") == 0) - return IPPROTO_UDP; + if (strcmp(option, "tcp") == 0) { + *protocol = IPPROTO_TCP; + return 1; + } + if (strcmp(option, "udp") == 0) { + *protocol = IPPROTO_UDP; + return 1; + } + return 0; } - return nfs_nfs_protocol(options); + /* + * MNT transport protocol wasn't specified. If the NFS + * transport protocol was specified, use that; otherwise + * set @protocol to zero. The pmap protocol value will + * be filled in later by an rpcbind query in this case. + */ + return nfs_nfs_protocol(options, protocol); } /* - * Returns the mountd server's port number specified by the given - * mount options, or zero if all fails. Zero results in a portmap - * query to discover the server's mountd service port. - * - * port=0 will guarantee an rpcbind request precedes the mount - * RPC so the client can determine the server's port number. + * Returns TRUE if @port contains a valid value for this option, + * or FALSE if the option was specified with an invalid value. */ -static unsigned short nfs_mount_port(struct mount_options *options) +static int +nfs_mount_port(struct mount_options *options, unsigned long *port) { long tmp; - if (po_get_numeric(options, "mountport", &tmp) == PO_FOUND) - if (tmp >= 0 && tmp <= 65535) - return tmp; - return 0; + switch (po_get_numeric(options, "mountport", &tmp)) { + case PO_NOT_FOUND: + break; + case PO_FOUND: + if (tmp >= 1 && tmp <= 65535) { + *port = tmp; + return 1; + } + case PO_BAD_VALUE: + return 0; + } + + /* + * MNT service port wasn't specified. The pmap port value + * will be filled in later by an rpcbind query in this case. + */ + *port = 0; + return 1; } /** @@ -1329,17 +1449,29 @@ static unsigned short nfs_mount_port(struct mount_options *options) * @nfs_pmap: OUT: pointer to pmap arguments for NFS server * @mnt_pmap: OUT: pointer to pmap arguments for mountd server * + * Returns TRUE if the pmap options specified in @options have valid + * values; otherwise FALSE is returned. */ -void nfs_options2pmap(struct mount_options *options, - struct pmap *nfs_pmap, struct pmap *mnt_pmap) +int nfs_options2pmap(struct mount_options *options, + struct pmap *nfs_pmap, struct pmap *mnt_pmap) { - nfs_pmap->pm_prog = nfs_nfs_program(options); - nfs_pmap->pm_vers = nfs_nfs_version(options); - nfs_pmap->pm_prot = nfs_nfs_protocol(options); - nfs_pmap->pm_port = nfs_nfs_port(options); - - mnt_pmap->pm_prog = nfs_mount_program(options); - mnt_pmap->pm_vers = nfs_mount_version(options); - mnt_pmap->pm_prot = nfs_mount_protocol(options); - mnt_pmap->pm_port = nfs_mount_port(options); + if (!nfs_nfs_program(options, &nfs_pmap->pm_prog)) + return 0; + if (!nfs_nfs_version(options, &nfs_pmap->pm_vers)) + return 0; + if (!nfs_nfs_protocol(options, &nfs_pmap->pm_prot)) + return 0; + if (!nfs_nfs_port(options, &nfs_pmap->pm_port)) + return 0; + + if (!nfs_mount_program(options, &mnt_pmap->pm_prog)) + return 0; + if (!nfs_mount_version(options, &mnt_pmap->pm_vers)) + return 0; + if (!nfs_mount_protocol(options, &mnt_pmap->pm_prot)) + return 0; + if (!nfs_mount_port(options, &mnt_pmap->pm_port)) + return 0; + + return 1; } diff --git a/utils/mount/network.h b/utils/mount/network.h index b3f9bd2..db5134c 100644 --- a/utils/mount/network.h +++ b/utils/mount/network.h @@ -45,8 +45,7 @@ int nfs_probe_bothports(const struct sockaddr *, const socklen_t, const socklen_t, struct pmap *); int nfs_gethostbyname(const char *, struct sockaddr_in *); int nfs_name_to_address(const char *, struct sockaddr *, socklen_t *); -int nfs_string_to_sockaddr(const char *, const size_t, - struct sockaddr *, socklen_t *); +int nfs_string_to_sockaddr(const char *, struct sockaddr *, socklen_t *); int nfs_present_sockaddr(const struct sockaddr *, const socklen_t, char *, const size_t); int nfs_callback_address(const struct sockaddr *, const socklen_t, @@ -57,7 +56,7 @@ int clnt_ping(struct sockaddr_in *, const unsigned long, struct mount_options; -void nfs_options2pmap(struct mount_options *, +int nfs_options2pmap(struct mount_options *, struct pmap *, struct pmap *); int start_statd(void); diff --git a/utils/mount/nfsumount.c b/utils/mount/nfsumount.c index 9b48cc9..f81db14 100644 --- a/utils/mount/nfsumount.c +++ b/utils/mount/nfsumount.c @@ -174,7 +174,10 @@ static int nfs_umount_do_umnt(struct mount_options *options, socklen_t salen = sizeof(address); struct pmap nfs_pmap, mnt_pmap; - nfs_options2pmap(options, &nfs_pmap, &mnt_pmap); + if (!nfs_options2pmap(options, &nfs_pmap, &mnt_pmap)) { + nfs_error(_("%s: bad mount options"), progname); + return EX_FAIL; + } *hostname = nfs_umount_hostname(options, *hostname); if (!*hostname) { @@ -333,7 +336,7 @@ int nfsumount(int argc, char *argv[]) char *opt = hasmntopt(&mc->m, "user"); struct passwd *pw; char *comma; - int len; + size_t len; if (!opt) goto only_root; if (opt[4] != '=') diff --git a/utils/mount/parse_dev.c b/utils/mount/parse_dev.c index c0a8e18..c8a58b1 100644 --- a/utils/mount/parse_dev.c +++ b/utils/mount/parse_dev.c @@ -183,8 +183,9 @@ static int nfs_parse_square_bracket(const char *dev, * with the mount request and failing with a cryptic error message * later. */ -static int nfs_parse_nfs_url(const char *dev, - char **hostname, char **pathname) +static int nfs_parse_nfs_url(__attribute__((unused)) const char *dev, + __attribute__((unused)) char **hostname, + __attribute__((unused)) char **pathname) { nfs_error(_("%s: NFS URLs are not supported"), progname); return 0; diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c index ec95b78..a12ace7 100644 --- a/utils/mount/stropts.c +++ b/utils/mount/stropts.c @@ -130,12 +130,14 @@ static int nfs_append_generic_address_option(const struct sockaddr *sap, { char address[NI_MAXHOST]; char new_option[512]; + int len; if (!nfs_present_sockaddr(sap, salen, address, sizeof(address))) goto out_err; - if (snprintf(new_option, sizeof(new_option), "%s=%s", - keyword, address) >= sizeof(new_option)) + len = snprintf(new_option, sizeof(new_option), "%s=%s", + keyword, address); + if (len < 0 || (size_t)len >= sizeof(new_option)) goto out_err; if (po_append(options, new_option) != PO_SUCCEEDED) @@ -283,27 +285,16 @@ static int nfs_validate_options(struct nfsmount_info *mi) if (!nfs_append_sloppy_option(mi->options)) return 0; - return nfs_append_addr_option(sap, salen, mi->options); -} + if (!nfs_append_addr_option(sap, salen, mi->options)) + return 0; -/* - * Distinguish between permanent and temporary errors. - * - * Returns 0 if the passed-in error is temporary, thus the - * mount system call should be retried; returns one if the - * passed-in error is permanent, thus the mount system call - * should not be retried. - */ -static int nfs_is_permanent_error(int error) -{ - switch (error) { - case ESTALE: - case ETIMEDOUT: - case ECONNREFUSED: - return 0; /* temporary */ - default: - return 1; /* permanent */ - } + /* + * Update option string to be recorded in /etc/mnttab + */ + if (po_join(mi->options, mi->extra_opts) == PO_FAILED) + return 0; + + return 1; } /* @@ -323,16 +314,14 @@ static int nfs_extract_server_addresses(struct mount_options *options, option = po_get(options, "addr"); if (option == NULL) return 0; - if (!nfs_string_to_sockaddr(option, strlen(option), - nfs_saddr, nfs_salen)) + if (!nfs_string_to_sockaddr(option, nfs_saddr, nfs_salen)) return 0; option = po_get(options, "mountaddr"); if (option == NULL) { memcpy(mnt_saddr, nfs_saddr, *nfs_salen); *mnt_salen = *nfs_salen; - } else if (!nfs_string_to_sockaddr(option, strlen(option), - mnt_saddr, mnt_salen)) + } else if (!nfs_string_to_sockaddr(option, mnt_saddr, mnt_salen)) return 0; return 1; @@ -420,206 +409,135 @@ static int nfs_construct_new_options(struct mount_options *options, * * To handle version and transport protocol fallback properly, we * need to parse some of the mount options in order to set up a - * portmap probe. Mount options that nfs_rewrite_mount_options() + * portmap probe. Mount options that nfs_rewrite_pmap_mount_options() * doesn't recognize are left alone. * - * Returns a new group of mount options if successful; otherwise - * NULL is returned if some failure occurred. + * Returns TRUE if rewriting was successful; otherwise + * FALSE is returned if some failure occurred. */ -static struct mount_options *nfs_rewrite_mount_options(char *str) +static int +nfs_rewrite_pmap_mount_options(struct mount_options *options) { - struct mount_options *options; struct sockaddr_storage nfs_address; struct sockaddr *nfs_saddr = (struct sockaddr *)&nfs_address; - socklen_t nfs_salen; + socklen_t nfs_salen = sizeof(nfs_address); struct pmap nfs_pmap; struct sockaddr_storage mnt_address; struct sockaddr *mnt_saddr = (struct sockaddr *)&mnt_address; - socklen_t mnt_salen; + socklen_t mnt_salen = sizeof(mnt_address); struct pmap mnt_pmap; + char *option; - options = po_split(str); - if (!options) { - errno = EFAULT; - return NULL; - } + /* + * Skip option negotiation for proto=rdma mounts. + */ + option = po_get(options, "proto"); + if (option && strcmp(option, "rdma") == 0) + goto out; + /* + * Extract just the options needed to contact server. + * Bail now if any of these have bad values. + */ if (!nfs_extract_server_addresses(options, nfs_saddr, &nfs_salen, mnt_saddr, &mnt_salen)) { errno = EINVAL; - goto err; + return 0; + } + if (!nfs_options2pmap(options, &nfs_pmap, &mnt_pmap)) { + errno = EINVAL; + return 0; } - nfs_options2pmap(options, &nfs_pmap, &mnt_pmap); - - /* The kernel NFS client doesn't support changing the RPC program - * number for these services, so reset these fields before probing - * the server's ports. */ + /* + * The kernel NFS client doesn't support changing the RPC + * program number for these services, so force the value of + * these fields before probing the server's ports. + */ nfs_pmap.pm_prog = NFS_PROGRAM; mnt_pmap.pm_prog = MOUNTPROG; + /* + * If the server's rpcbind service isn't available, we can't + * negotiate. Bail now if we can't contact it. + */ if (!nfs_probe_bothports(mnt_saddr, mnt_salen, &mnt_pmap, nfs_saddr, nfs_salen, &nfs_pmap)) { errno = ESPIPE; - goto err; + return 0; } if (!nfs_construct_new_options(options, &nfs_pmap, &mnt_pmap)) { errno = EINVAL; - goto err; + return 0; } +out: errno = 0; - return options; - -err: - po_destroy(options); - return NULL; + return 1; } /* * Do the mount(2) system call. * - * Returns 1 if successful, otherwise zero. + * Returns TRUE if successful, otherwise FALSE. * "errno" is set to reflect the individual error. */ -static int nfs_sys_mount(const struct nfsmount_info *mi, const char *type, - const char *options) +static int nfs_try_mount(struct nfsmount_info *mi) { + char *options = NULL; int result; - result = mount(mi->spec, mi->node, type, - mi->flags & ~(MS_USER|MS_USERS), options); - if (verbose && result) { - int save = errno; - nfs_error(_("%s: mount(2): %s"), progname, strerror(save)); - errno = save; - } - return !result; -} - -/* - * Retry an NFS mount that failed because the requested service isn't - * available on the server. - * - * Returns 1 if successful. Otherwise, returns zero. - * "errno" is set to reflect the individual error. - * - * Side effect: If the retry is successful, both 'options' and - * 'extra_opts' are updated to reflect the mount options that worked. - * If the retry fails, 'options' and 'extra_opts' are left unchanged. - */ -static int nfs_retry_nfs23mount(struct nfsmount_info *mi) -{ - struct mount_options *retry_options; - char *retry_str = NULL; - char **extra_opts = mi->extra_opts; - - retry_options = nfs_rewrite_mount_options(*extra_opts); - if (!retry_options) - return 0; - - if (po_join(retry_options, &retry_str) == PO_FAILED) { - po_destroy(retry_options); - errno = EIO; - return 0; - } - - if (verbose) - printf(_("%s: text-based options (retry): '%s'\n"), - progname, retry_str); - - if (!nfs_sys_mount(mi, "nfs", retry_str)) { - po_destroy(retry_options); - free(retry_str); - return 0; + if (strncmp(mi->type, "nfs4", 4) != 0) { + if (!nfs_rewrite_pmap_mount_options(mi->options)) + return 0; } - free(*extra_opts); - *extra_opts = retry_str; - po_replace(mi->options, retry_options); - return 1; -} - -/* - * Attempt an NFSv2/3 mount via a mount(2) system call. If the kernel - * claims the requested service isn't supported on the server, probe - * the server to see what's supported, rewrite the mount options, - * and retry the request. - * - * Returns 1 if successful. Otherwise, returns zero. - * "errno" is set to reflect the individual error. - * - * Side effect: If the retry is successful, both 'options' and - * 'extra_opts' are updated to reflect the mount options that worked. - * If the retry fails, 'options' and 'extra_opts' are left unchanged. - */ -static int nfs_try_nfs23mount(struct nfsmount_info *mi) -{ - char **extra_opts = mi->extra_opts; - - if (po_join(mi->options, extra_opts) == PO_FAILED) { + if (po_join(mi->options, &options) == PO_FAILED) { errno = EIO; return 0; } if (verbose) - printf(_("%s: text-based options: '%s'\n"), - progname, *extra_opts); + printf(_("%s: trying text-based options '%s'\n"), + progname, options); if (mi->fake) return 1; - if (nfs_sys_mount(mi, "nfs", *extra_opts)) - return 1; - - /* - * The kernel returns EOPNOTSUPP if the RPC bind failed, - * and EPROTONOSUPPORT if the version isn't supported. - */ - if (errno != EOPNOTSUPP && errno != EPROTONOSUPPORT) - return 0; - - return nfs_retry_nfs23mount(mi); -} - -/* - * Attempt an NFS v4 mount via a mount(2) system call. - * - * Returns 1 if successful. Otherwise, returns zero. - * "errno" is set to reflect the individual error. - */ -static int nfs_try_nfs4mount(struct nfsmount_info *mi) -{ - char **extra_opts = mi->extra_opts; - - if (po_join(mi->options, extra_opts) == PO_FAILED) { - errno = EIO; - return 0; + result = mount(mi->spec, mi->node, mi->type, + mi->flags & ~(MS_USER|MS_USERS), options); + if (verbose && result) { + int save = errno; + nfs_error(_("%s: mount(2): %s"), progname, strerror(save)); + errno = save; } - - if (verbose) - printf(_("%s: text-based options: '%s'\n"), - progname, *extra_opts); - - if (mi->fake) - return 1; - - return nfs_sys_mount(mi, "nfs4", *extra_opts); + return !result; } /* - * Perform either an NFSv2/3 mount, or an NFSv4 mount system call. + * Distinguish between permanent and temporary errors. * - * Returns 1 if successful. Otherwise, returns zero. - * "errno" is set to reflect the individual error. + * Basically, we retry if communication with the server has + * failed so far, but fail immediately if there is a local + * error (like a bad mount option). + * + * ESTALE is also a temporary error because some servers + * return ESTALE when a share is temporarily offline. + * + * Returns 1 if we should fail immediately, or 0 if we + * should retry. */ -static int nfs_try_mount(struct nfsmount_info *mi) +static int nfs_is_permanent_error(int error) { - if (strncmp(mi->type, "nfs4", 4) == 0) - return nfs_try_nfs4mount(mi); - else - return nfs_try_nfs23mount(mi); + switch (error) { + case ESTALE: + case ETIMEDOUT: + case ECONNREFUSED: + return 0; /* temporary */ + default: + return 1; /* permanent */ + } } /* Index: nfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs-utils/devel/nfs-utils.spec,v retrieving revision 1.236 retrieving revision 1.237 diff -u -p -r1.236 -r1.237 --- nfs-utils.spec 13 Jul 2009 18:04:54 -0000 1.236 +++ nfs-utils.spec 15 Jul 2009 14:37:40 -0000 1.237 @@ -2,7 +2,7 @@ Summary: NFS utilities and supporting cl Name: nfs-utils URL: http://sourceforge.net/projects/nfs Version: 1.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 1 # group all 32bit related archs @@ -23,7 +23,7 @@ Patch01: nfs-utils-1.1.0-smnotify-path.p Patch02: nfs-utils-1.1.0-exp-subtree-warn-off.patch Patch100: nfs-utils-1.2.1-rc1.patch -Patch101: nfs-utils-1.2.1-mydaemon.patch +Patch101: nfs-utils-1.2.1-rc2.patch Patch102: nfs-utils-1.2.0-proots-rel5.patch Group: System Environment/Daemons @@ -247,6 +247,10 @@ fi %attr(4755,root,root) /sbin/umount.nfs4 %changelog +* Wed Jul 15 10:36:20 EDT 2009 +- Added upstream 1.2.1-rc2 patch + - A large number of mount command changes. + * Mon Jul 13 2009 1.2.0-6 - Added NFSD v4 dynamic pseudo root patch which allows NFS v3 exports to be mounted by v4 clients. From mclasen at fedoraproject.org Wed Jul 15 14:39:40 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 14:39:40 +0000 (UTC) Subject: rpms/libgnomekbd/devel .cvsignore, 1.20, 1.21 libgnomekbd.spec, 1.46, 1.47 sources, 1.20, 1.21 Message-ID: <20090715143940.E0B3A11C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnomekbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25090 Modified Files: .cvsignore libgnomekbd.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libgnomekbd/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 1 Jun 2009 01:09:24 -0000 1.20 +++ .cvsignore 15 Jul 2009 14:39:10 -0000 1.21 @@ -1 +1 @@ -libgnomekbd-2.27.2.tar.bz2 +libgnomekbd-2.27.4.tar.bz2 Index: libgnomekbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomekbd/devel/libgnomekbd.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libgnomekbd.spec 30 Jun 2009 20:59:20 -0000 1.46 +++ libgnomekbd.spec 15 Jul 2009 14:39:10 -0000 1.47 @@ -1,6 +1,6 @@ Name: libgnomekbd -Version: 2.27.2 -Release: 3%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Summary: A keyboard configuration library Group: System Environment/Libraries @@ -8,8 +8,6 @@ License: LGPLv2+ URL: http://gswitchit.sourceforge.net Source0: http://download.gnome.org/sources/libgnomekbd/2.27/libgnomekbd-%{version}.tar.bz2 -Patch0: libxklavier4.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: dbus-devel >= 0.92 @@ -61,7 +59,6 @@ of the keyboard indicator applet. %prep %setup -q -%patch0 -p1 -b .libxklavier4 %build %configure --disable-static --enable-compile-warnings=no @@ -131,6 +128,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 30 2009 Matthias Clasen - 2.27.2-3 - Rebuild against new libxklavier - Adapt to api changes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libgnomekbd/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 1 Jun 2009 01:09:24 -0000 1.20 +++ sources 15 Jul 2009 14:39:10 -0000 1.21 @@ -1 +1 @@ -ea5a1f1965373b4506c07c64aae9a0c4 libgnomekbd-2.27.2.tar.bz2 +f5bd68f8e71d093e0f9721ff952b179b libgnomekbd-2.27.4.tar.bz2 From nalin at fedoraproject.org Wed Jul 15 14:50:42 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 15 Jul 2009 14:50:42 +0000 (UTC) Subject: rpms/slapi-nis/devel slapi-nis.spec,1.14,1.15 Message-ID: <20090715145042.348EB11C00DF@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/extras/rpms/slapi-nis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27618 Modified Files: slapi-nis.spec Log Message: - change buildreq from fedora-ds-base-devel to 389-ds-base-devel, which should avoid multilib conflicts from installing both arches of the new package (#511504) Index: slapi-nis.spec =================================================================== RCS file: /cvs/extras/rpms/slapi-nis/devel/slapi-nis.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- slapi-nis.spec 14 Jul 2009 18:58:02 -0000 1.14 +++ slapi-nis.spec 15 Jul 2009 14:50:41 -0000 1.15 @@ -1,6 +1,6 @@ Name: slapi-nis Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NIS Server and Schema Compatibility plugins for Directory Server Group: System Environment/Daemons License: GPLv2 @@ -8,7 +8,7 @@ URL: http://slapi-nis.fedorahosted.org/ Source0: https://fedorahosted.org/releases/s/l/slapi-nis/slapi-nis-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: fedora-ds-base-devel, mozldap-devel, tcp_wrappers-devel +BuildRequires: 389-ds-base-devel, mozldap-devel, tcp_wrappers-devel %description This slapi-nis package contains two plugins which aim to ease the @@ -46,6 +46,11 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/nisserver-plugin-defs %changelog +* Wed Jul 15 2009 Nalin Dahyabhai - 0.17-3 +- change buildreq from fedora-ds-base-devel to 389-ds-base-devel, which + should avoid multilib conflicts from installing both arches of the new + package (#511504) + * Tue Jul 14 2009 Nalin Dahyabhai - 0.17-2 - fixup changelog entries that resemble possible macro invocations From josef at fedoraproject.org Wed Jul 15 14:57:23 2009 From: josef at fedoraproject.org (Josef Bacik) Date: Wed, 15 Jul 2009 14:57:23 +0000 (UTC) Subject: rpms/btrfs-progs/devel btrfs-progs.spec,1.15,1.16 Message-ID: <20090715145723.D4AAC11C00DF@cvs1.fedora.phx.redhat.com> Author: josef Update of /cvs/pkgs/rpms/btrfs-progs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28927 Modified Files: btrfs-progs.spec Log Message: changing BuildRequires e2fsprogs-devel to libuuid-devel. Index: btrfs-progs.spec =================================================================== RCS file: /cvs/pkgs/rpms/btrfs-progs/devel/btrfs-progs.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- btrfs-progs.spec 19 Jun 2009 12:32:15 -0000 1.15 +++ btrfs-progs.spec 15 Jul 2009 14:57:23 -0000 1.16 @@ -1,6 +1,6 @@ Name: btrfs-progs Version: 0.19 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Userspace programs for btrfs Group: System Environment/Base @@ -11,7 +11,7 @@ Patch0: btrfs-progs-fix-labels.patch Patch1: btrfs-progs-build-everything.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: e2fsprogs-devel, zlib-devel, libacl-devel +BuildRequires: libuuid-devel, zlib-devel, libacl-devel %define _root_sbindir /sbin @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/mkfs.btrfs.8.gz %changelog +* Wed Jul 15 2009 Josef Bacik 0.19-4 +- change BuildRequires for e2fsprogs-devel to libuuid-devel + * Fri Jun 19 2009 Josef Bacik 0.19-3 - added man pages to the files list and made sure they were installed properly From pghmcfc at fedoraproject.org Wed Jul 15 14:58:42 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Wed, 15 Jul 2009 14:58:42 +0000 (UTC) Subject: rpms/gtkwave/F-11 gtkwave-3.2.1.patch, NONE, 1.1 gtkwave.spec, 1.62, 1.63 Message-ID: <20090715145842.6D65C11C00DF@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/gtkwave/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29204/F-11 Modified Files: gtkwave.spec Added Files: gtkwave-3.2.1.patch Log Message: add upstream patch for crash on print to file (#511858) gtkwave-3.2.1.patch: --- NEW FILE gtkwave-3.2.1.patch --- --- src/renderopt.c.orig 2009-07-15 14:25:13.000000000 +0200 +++ src/renderopt.c 2009-07-15 14:25:20.000000000 +0200 @@ -337,7 +337,7 @@ menu = gtk_menu_new (); group=NULL; - for(i=0;i<3;i++) + for(i=0;i<2;i++) { menuitem = gtk_radio_menu_item_new_with_label (group, render_type[i]); group = gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (menuitem)); Index: gtkwave.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkwave/F-11/gtkwave.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- gtkwave.spec 14 Apr 2009 15:14:36 -0000 1.62 +++ gtkwave.spec 15 Jul 2009 14:58:12 -0000 1.63 @@ -3,11 +3,12 @@ Summary: Waveform Viewer Name: gtkwave Version: 3.2.1 -Release: %{?prerel:0.}1%{?prerel:.%{prerel}}%{?dist} +Release: %{?prerel:0.}2%{?prerel:.%{prerel}}%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://gtkwave.sourceforge.net/ Source0: http://gtkwave.sourceforge.net/gtkwave-%{version}%{?prerel}.tar.gz +Patch0: gtkwave-3.2.1.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, bzip2-devel, zlib-devel, gperf, flex # BR: /usr/include/tcl.h rather than tcl-devel for compatibility with @@ -23,6 +24,9 @@ tools. %setup -q -n gtkwave-%{version}%{?prerel} %{__cp} -p .gtkwaverc gtkwaverc.sample +# Upstream patch to fix crash on print to file (#511858) +%patch0 -p0 -b .print-to-file + # Note that GTKWave is a GUI application but no desktop entry is provided for it. # This is because the application requires at least one mandatory parameter (file # to view) and cannot be opened in a "no file" mode from a menu. @@ -94,11 +98,14 @@ done %{_mandir}/man5/gtkwaverc.5* %changelog +* Wed Jul 15 2009 Paul Howarth 3.2.1-2 +- add upstream patch for crash on print to file (#511858) + * Tue Apr 14 2009 Paul Howarth 3.2.1-1 - update to 3.2.1 -* Tue Feb 24 2009 Fedora Release Engineering - 3.2.0-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Tue Feb 24 2009 Fedora Release Engineering 3.2.0-1.1 +- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Tue Feb 17 2009 Paul Howarth 3.2.0-1 - update to 3.2.0 From pghmcfc at fedoraproject.org Wed Jul 15 14:58:42 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Wed, 15 Jul 2009 14:58:42 +0000 (UTC) Subject: rpms/gtkwave/devel gtkwave-3.2.1.patch, NONE, 1.1 gtkwave.spec, 1.62, 1.63 Message-ID: <20090715145842.B3A1411C00DF@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/gtkwave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29204/devel Modified Files: gtkwave.spec Added Files: gtkwave-3.2.1.patch Log Message: add upstream patch for crash on print to file (#511858) gtkwave-3.2.1.patch: --- NEW FILE gtkwave-3.2.1.patch --- --- src/renderopt.c.orig 2009-07-15 14:25:13.000000000 +0200 +++ src/renderopt.c 2009-07-15 14:25:20.000000000 +0200 @@ -337,7 +337,7 @@ menu = gtk_menu_new (); group=NULL; - for(i=0;i<3;i++) + for(i=0;i<2;i++) { menuitem = gtk_radio_menu_item_new_with_label (group, render_type[i]); group = gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (menuitem)); Index: gtkwave.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkwave/devel/gtkwave.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- gtkwave.spec 14 Apr 2009 15:14:36 -0000 1.62 +++ gtkwave.spec 15 Jul 2009 14:58:12 -0000 1.63 @@ -3,11 +3,12 @@ Summary: Waveform Viewer Name: gtkwave Version: 3.2.1 -Release: %{?prerel:0.}1%{?prerel:.%{prerel}}%{?dist} +Release: %{?prerel:0.}2%{?prerel:.%{prerel}}%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://gtkwave.sourceforge.net/ Source0: http://gtkwave.sourceforge.net/gtkwave-%{version}%{?prerel}.tar.gz +Patch0: gtkwave-3.2.1.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, bzip2-devel, zlib-devel, gperf, flex # BR: /usr/include/tcl.h rather than tcl-devel for compatibility with @@ -23,6 +24,9 @@ tools. %setup -q -n gtkwave-%{version}%{?prerel} %{__cp} -p .gtkwaverc gtkwaverc.sample +# Upstream patch to fix crash on print to file (#511858) +%patch0 -p0 -b .print-to-file + # Note that GTKWave is a GUI application but no desktop entry is provided for it. # This is because the application requires at least one mandatory parameter (file # to view) and cannot be opened in a "no file" mode from a menu. @@ -94,11 +98,14 @@ done %{_mandir}/man5/gtkwaverc.5* %changelog +* Wed Jul 15 2009 Paul Howarth 3.2.1-2 +- add upstream patch for crash on print to file (#511858) + * Tue Apr 14 2009 Paul Howarth 3.2.1-1 - update to 3.2.1 -* Tue Feb 24 2009 Fedora Release Engineering - 3.2.0-1.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Tue Feb 24 2009 Fedora Release Engineering 3.2.0-1.1 +- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Tue Feb 17 2009 Paul Howarth 3.2.0-1 - update to 3.2.0 From pkgdb at fedoraproject.org Wed Jul 15 14:29:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 14:29:28 +0000 Subject: [pkgdb] pyusb ownership updated Message-ID: <20090715142928.A323710F80A@bastion2.fedora.phx.redhat.com> Package pyusb in Fedora devel is now owned by twaugh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pyusb From jortel at fedoraproject.org Wed Jul 15 15:03:04 2009 From: jortel at fedoraproject.org (Jeff Ortel) Date: Wed, 15 Jul 2009 15:03:04 +0000 (UTC) Subject: rpms/python-suds push.sh,1.1,1.2 Message-ID: <20090715150304.2A32E11C00DF@cvs1.fedora.phx.redhat.com> Author: jortel Update of /cvs/pkgs/rpms/python-suds In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30160 Modified Files: push.sh Log Message: Release suds version 0.3.6 Index: push.sh =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/push.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- push.sh 2 Apr 2009 20:02:52 -0000 1.1 +++ push.sh 15 Jul 2009 15:02:33 -0000 1.2 @@ -1,4 +1,5 @@ -branches="F-9 F-10 EL-4 EL-5" +#branches="F-9 F-10 F-11 EL-4 EL-5" +branches="F-11" files="devel/python-suds.spec devel/sources" echo "Update the branches" From jortel at fedoraproject.org Wed Jul 15 15:03:04 2009 From: jortel at fedoraproject.org (Jeff Ortel) Date: Wed, 15 Jul 2009 15:03:04 +0000 (UTC) Subject: rpms/python-suds/F-11 python-suds.spec,1.10,1.11 sources,1.9,1.10 Message-ID: <20090715150304.7629911C00DF@cvs1.fedora.phx.redhat.com> Author: jortel Update of /cvs/pkgs/rpms/python-suds/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30160/F-11 Modified Files: python-suds.spec sources Log Message: Release suds version 0.3.6 Index: python-suds.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/F-11/python-suds.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-suds.spec 2 Apr 2009 19:42:07 -0000 1.10 +++ python-suds.spec 15 Jul 2009 15:02:34 -0000 1.11 @@ -2,7 +2,7 @@ Summary: A python SOAP client Name: python-suds -Version: 0.3.5 +Version: 0.3.6 Release: 1%{?dist} Source0: https://fedorahosted.org/releases/s/u/%{name}/%{name}-%{version}.tar.gz License: LGPLv3+ @@ -51,6 +51,21 @@ rm -rf $RPM_BUILD_ROOT %doc README LICENSE %changelog +* Wed May 1 2009 jortel - 0.3.6-1 +- Change hard coded /tmp/suds to tempfile.gettempdir() and create suds/ on demand. +- Fix return type for Any.get_attribute(). +- Update http caching to ignore file:// urls. +- Better logging of messages when only the reply is injected. +- Fix XInteger and XFloat types to translate returned arrays properly. +- Fix xs:import schema with same namespace. +- Update parser to not load external references and add Import.bind() for XMLSchema.xsd location. +- Add schema doctor - used to patch XSDs at runtime. (See Options.doctor) +- Fix deprecation warnings in python 2.6. +- Add behavior for @default defined on . +- Change @xsi:type value to always be qualified for doc/literal. +- Add Option.xstq option to control when @xsi:type is qualified. +- Fixed Tickets: #64, #129, #205, #206, #217, #221, #222, #224, #225, #228, #229, #230 + * Wed Feb 25 2009 jortel - 0.3.5-1 - Adds http caching. Default is (1) day. - Removed checking fc version in spec since no longer building < fc9. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 2 Apr 2009 19:42:07 -0000 1.9 +++ sources 15 Jul 2009 15:02:34 -0000 1.10 @@ -3,3 +3,4 @@ a4544f1eaaeb3ca0e78180160909ab01 python 79cace44ca04955f2cdb8fe682b5f05d python-suds-0.3.3.tar.gz 3c704119a5a27542ea5347fc13433b89 python-suds-0.3.4.tar.gz 2fc4bbbb2351b24e707eac8434d5cb73 python-suds-0.3.5.tar.gz +320b2f8816aca6445b31441eb201e95b python-suds-0.3.6.tar.gz From orion at fedoraproject.org Wed Jul 15 15:19:27 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 15 Jul 2009 15:19:27 +0000 (UTC) Subject: rpms/lasi/devel lasi.spec,1.6,1.7 Message-ID: <20090715151927.3C9CF11C00DF@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/lasi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2028 Modified Files: lasi.spec Log Message: * Tue Jul 14 2009 - Orion Poplawski - 1.1.0-5 - Fix font BR Index: lasi.spec =================================================================== RCS file: /cvs/pkgs/rpms/lasi/devel/lasi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lasi.spec 25 Feb 2009 12:35:21 -0000 1.6 +++ lasi.spec 15 Jul 2009 15:19:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: lasi Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ library for creating Postscript documents Group: Development/Libraries @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: pango-devel, cmake # For testing -BuildRequires: dejavu-fonts-compat +BuildRequires: dejavu-sans-mono-fonts %description @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 14 2009 - Orion Poplawski - 1.1.0-5 +- Fix font BR + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From xhorak at fedoraproject.org Wed Jul 15 15:20:08 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 15 Jul 2009 15:20:08 +0000 (UTC) Subject: rpms/xulrunner/devel xulrunner-gtk-include.patch, NONE, 1.1 xulrunner.spec, 1.164, 1.165 Message-ID: <20090715152008.BD37211C00DF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2151 Modified Files: xulrunner.spec Added Files: xulrunner-gtk-include.patch Log Message: Added patch to compile agains latest GTK xulrunner-gtk-include.patch: --- NEW FILE xulrunner-gtk-include.patch --- diff -up mozilla-1.9.1/widget/src/gtk2/nsNativeKeyBindings.cpp.gtk mozilla-1.9.1/widget/src/gtk2/nsNativeKeyBindings.cpp --- mozilla-1.9.1/widget/src/gtk2/nsNativeKeyBindings.cpp.gtk 2009-07-15 14:23:24.000000000 +0200 +++ mozilla-1.9.1/widget/src/gtk2/nsNativeKeyBindings.cpp 2009-07-15 14:23:29.000000000 +0200 @@ -42,7 +42,7 @@ #include "nsGtkKeyUtils.h" #include "nsGUIEvent.h" -#include +#include #include #include #include Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/devel/xulrunner.spec,v retrieving revision 1.164 retrieving revision 1.165 diff -u -p -r1.164 -r1.165 --- xulrunner.spec 13 Jul 2009 09:00:28 -0000 1.164 +++ xulrunner.spec 15 Jul 2009 15:19:38 -0000 1.165 @@ -29,6 +29,7 @@ Patch1: mozilla-build.patch Patch2: mozilla-191-path.patch Patch3: mozilla-jemalloc.patch Patch4: mozilla-about-firefox-version.patch +Patch5: xulrunner-gtk-include.patch # Fedora specific patches Patch10: mozilla-191-pkgconfig.patch @@ -151,6 +152,7 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{ver %patch2 -p1 -b .path %patch3 -p1 -b .jemalloc %patch4 -p1 -b .about-firefox-version +%patch5 -p1 -b .gtk-include %patch10 -p1 -b .pk @@ -452,6 +454,7 @@ fi %changelog * Mon Jul 13 2009 Jan Horak - 1.9.1-3 - Fixed wrong version of Firefox when loading 'about:' as location +- Added patch to compile against latest GTK * Tue Jun 30 2009 Yanko Kaneti - 1.9.1-2 - Build using system hunspell From jortel at fedoraproject.org Wed Jul 15 15:21:12 2009 From: jortel at fedoraproject.org (Jeff Ortel) Date: Wed, 15 Jul 2009 15:21:12 +0000 (UTC) Subject: rpms/python-suds push.sh,1.2,1.3 Message-ID: <20090715152112.A798411C00DF@cvs1.fedora.phx.redhat.com> Author: jortel Update of /cvs/pkgs/rpms/python-suds In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2335 Modified Files: push.sh Log Message: Release version 0.3.6. Index: push.sh =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/push.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- push.sh 15 Jul 2009 15:02:33 -0000 1.2 +++ push.sh 15 Jul 2009 15:20:42 -0000 1.3 @@ -1,5 +1,5 @@ #branches="F-9 F-10 F-11 EL-4 EL-5" -branches="F-11" +branches="F-9 F-10 EL-4 EL-5" files="devel/python-suds.spec devel/sources" echo "Update the branches" From josef at fedoraproject.org Wed Jul 15 15:25:05 2009 From: josef at fedoraproject.org (Josef Bacik) Date: Wed, 15 Jul 2009 15:25:05 +0000 (UTC) Subject: rpms/btrfs-progs/devel btrfs-progs.spec,1.16,1.17 Message-ID: <20090715152505.3FD3711C00DF@cvs1.fedora.phx.redhat.com> Author: josef Update of /cvs/pkgs/rpms/btrfs-progs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3404 Modified Files: btrfs-progs.spec Log Message: - added e2fsprogs-devel back to BuildRequires since its needed by the converter Index: btrfs-progs.spec =================================================================== RCS file: /cvs/pkgs/rpms/btrfs-progs/devel/btrfs-progs.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- btrfs-progs.spec 15 Jul 2009 14:57:23 -0000 1.16 +++ btrfs-progs.spec 15 Jul 2009 15:24:34 -0000 1.17 @@ -1,6 +1,6 @@ Name: btrfs-progs Version: 0.19 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Userspace programs for btrfs Group: System Environment/Base @@ -11,7 +11,7 @@ Patch0: btrfs-progs-fix-labels.patch Patch1: btrfs-progs-build-everything.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libuuid-devel, zlib-devel, libacl-devel +BuildRequires: e2fsprogs-devel, libuuid-devel, zlib-devel, libacl-devel %define _root_sbindir /sbin @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/mkfs.btrfs.8.gz %changelog +* Wed Jul 15 2009 Josef Bacik 0.19-5 +- add e2fsprogs-devel back to BuildRequires since its needed for the converter + * Wed Jul 15 2009 Josef Bacik 0.19-4 - change BuildRequires for e2fsprogs-devel to libuuid-devel From pkgdb at fedoraproject.org Wed Jul 15 15:33:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:33:53 +0000 Subject: [pkgdb] gconf-cleaner ownership updated Message-ID: <20090715153353.5633610F84C@bastion2.fedora.phx.redhat.com> Package gconf-cleaner in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gconf-cleaner From pkgdb at fedoraproject.org Wed Jul 15 15:34:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:34:01 +0000 Subject: [pkgdb] gconf-cleaner ownership updated Message-ID: <20090715153401.530DD10F8A5@bastion2.fedora.phx.redhat.com> Package gconf-cleaner in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gconf-cleaner From pkgdb at fedoraproject.org Wed Jul 15 15:34:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:34:05 +0000 Subject: [pkgdb] gconf-cleaner ownership updated Message-ID: <20090715153405.954E810F8B1@bastion2.fedora.phx.redhat.com> Package gconf-cleaner in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gconf-cleaner From pkgdb at fedoraproject.org Wed Jul 15 15:34:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:34:35 +0000 Subject: [pkgdb] notecase ownership updated Message-ID: <20090715153436.0209010F89C@bastion2.fedora.phx.redhat.com> Package notecase in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/notecase From pkgdb at fedoraproject.org Wed Jul 15 15:34:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:34:43 +0000 Subject: [pkgdb] notecase ownership updated Message-ID: <20090715153443.EFA1B10F8A6@bastion2.fedora.phx.redhat.com> Package notecase in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/notecase From pkgdb at fedoraproject.org Wed Jul 15 15:34:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:34:47 +0000 Subject: [pkgdb] notecase ownership updated Message-ID: <20090715153447.F10E110F8A9@bastion2.fedora.phx.redhat.com> Package notecase in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/notecase From pkgdb at fedoraproject.org Wed Jul 15 15:35:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:35:37 +0000 Subject: [pkgdb] wifi-radar ownership updated Message-ID: <20090715153537.6260710F89C@bastion2.fedora.phx.redhat.com> Package wifi-radar in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wifi-radar From pkgdb at fedoraproject.org Wed Jul 15 15:35:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:35:45 +0000 Subject: [pkgdb] wifi-radar ownership updated Message-ID: <20090715153545.9CEC810F888@bastion2.fedora.phx.redhat.com> Package wifi-radar in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wifi-radar From pkgdb at fedoraproject.org Wed Jul 15 15:35:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:35:50 +0000 Subject: [pkgdb] wifi-radar ownership updated Message-ID: <20090715153550.2F42910F8A5@bastion2.fedora.phx.redhat.com> Package wifi-radar in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wifi-radar From jortel at fedoraproject.org Wed Jul 15 15:37:19 2009 From: jortel at fedoraproject.org (Jeff Ortel) Date: Wed, 15 Jul 2009 15:37:19 +0000 (UTC) Subject: rpms/python-suds push.sh,1.3,1.4 Message-ID: <20090715153719.F312911C00DF@cvs1.fedora.phx.redhat.com> Author: jortel Update of /cvs/pkgs/rpms/python-suds In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6200 Modified Files: push.sh Log Message: remove F-9 and add F-11 Index: push.sh =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/push.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- push.sh 15 Jul 2009 15:20:42 -0000 1.3 +++ push.sh 15 Jul 2009 15:37:19 -0000 1.4 @@ -1,5 +1,4 @@ -#branches="F-9 F-10 F-11 EL-4 EL-5" -branches="F-9 F-10 EL-4 EL-5" +branches="F-10 F-11 EL-4 EL-5" files="devel/python-suds.spec devel/sources" echo "Update the branches" From pkgdb at fedoraproject.org Wed Jul 15 15:37:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:37:53 +0000 Subject: [pkgdb] qemu-launcher ownership updated Message-ID: <20090715153753.8507410F84C@bastion2.fedora.phx.redhat.com> Package qemu-launcher in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu-launcher From pkgdb at fedoraproject.org Wed Jul 15 15:37:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:37:58 +0000 Subject: [pkgdb] qemu-launcher ownership updated Message-ID: <20090715153758.A88D810F898@bastion2.fedora.phx.redhat.com> Package qemu-launcher in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu-launcher From pkgdb at fedoraproject.org Wed Jul 15 15:38:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:38:02 +0000 Subject: [pkgdb] qemu-launcher ownership updated Message-ID: <20090715153802.0A19310F89F@bastion2.fedora.phx.redhat.com> Package qemu-launcher in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu-launcher From pkgdb at fedoraproject.org Wed Jul 15 15:38:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:38:14 +0000 Subject: [pkgdb] gtkperf ownership updated Message-ID: <20090715153814.11DBA10F84C@bastion2.fedora.phx.redhat.com> Package gtkperf in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtkperf From pkgdb at fedoraproject.org Wed Jul 15 15:38:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:38:19 +0000 Subject: [pkgdb] gtkperf ownership updated Message-ID: <20090715153819.1459810F898@bastion2.fedora.phx.redhat.com> Package gtkperf in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtkperf From pkgdb at fedoraproject.org Wed Jul 15 15:38:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:38:22 +0000 Subject: [pkgdb] gtkperf ownership updated Message-ID: <20090715153822.BF01610F89C@bastion2.fedora.phx.redhat.com> Package gtkperf in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtkperf From pkgdb at fedoraproject.org Wed Jul 15 15:39:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:39:42 +0000 Subject: [pkgdb] gnome-specimen ownership updated Message-ID: <20090715153942.C139410F888@bastion2.fedora.phx.redhat.com> Package gnome-specimen in Fedora devel is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-specimen From pkgdb at fedoraproject.org Wed Jul 15 15:39:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:39:50 +0000 Subject: [pkgdb] gnome-specimen ownership updated Message-ID: <20090715153950.64D5410F898@bastion2.fedora.phx.redhat.com> Package gnome-specimen in Fedora 10 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-specimen From pkgdb at fedoraproject.org Wed Jul 15 15:39:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 15:39:54 +0000 Subject: [pkgdb] gnome-specimen ownership updated Message-ID: <20090715153954.A696410F8AD@bastion2.fedora.phx.redhat.com> Package gnome-specimen in Fedora 11 is now owned by bouska To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-specimen From ivaxer at fedoraproject.org Wed Jul 15 15:43:50 2009 From: ivaxer at fedoraproject.org (John A. Khvatov) Date: Wed, 15 Jul 2009 15:43:50 +0000 (UTC) Subject: rpms/python-tftpy/devel import.log, 1.2, 1.3 python-tftpy.spec, 1.4, 1.5 Message-ID: <20090715154350.6428411C00DF@cvs1.fedora.phx.redhat.com> Author: ivaxer Update of /cvs/pkgs/rpms/python-tftpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7964/devel Modified Files: import.log python-tftpy.spec Log Message: Delete unnecessary excludes *.pyc, *.pyo files in bindir Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-tftpy/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 6 Oct 2008 13:38:28 -0000 1.2 +++ import.log 15 Jul 2009 15:43:20 -0000 1.3 @@ -1,2 +1,3 @@ python-tftpy-0_4_5-3_fc9:HEAD:python-tftpy-0.4.5-3.fc9.src.rpm:1219656549 python-tftpy-0_4_6-1_fc9:HEAD:python-tftpy-0.4.6-1.fc9.src.rpm:1223300202 +python-tftpy-0_4_6-4_fc10:HEAD:python-tftpy-0.4.6-4.fc10.src.rpm:1247672109 Index: python-tftpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tftpy/devel/python-tftpy.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-tftpy.spec 26 Feb 2009 23:41:12 -0000 1.4 +++ python-tftpy.spec 15 Jul 2009 15:43:20 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-tftpy Version: 0.4.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Pure-Python library for TFTP Group: Development/Languages @@ -38,10 +38,11 @@ rm -rf $RPM_BUILD_ROOT %doc README ChangeLog COPYING %{python_sitelib}/tftpy* %{_bindir}/* -%exclude %{_bindir}/*.pyc -%exclude %{_bindir}/*.pyo %changelog +* Wed Jul 15 2009 John A. Khvatov - 0.4.6-4 +- Delete unnecessary excludes *.pyc, *.pyo files in bindir + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 15:45:03 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:45:03 +0000 (UTC) Subject: rpms/xorg-x11-drv-acecad/devel xorg-x11-drv-acecad.spec,1.18,1.19 Message-ID: <20090715154503.0C0D911C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8364 Modified Files: xorg-x11-drv-acecad.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 - ABI bump Index: xorg-x11-drv-acecad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel/xorg-x11-drv-acecad.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xorg-x11-drv-acecad.spec 24 Feb 2009 03:33:22 -0000 1.18 +++ xorg-x11-drv-acecad.spec 15 Jul 2009 15:44:32 -0000 1.19 @@ -5,7 +5,7 @@ Summary: Xorg X11 acecad input driver Name: xorg-x11-drv-acecad Version: 1.3.0 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/acecad.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 +- ABI bump + * Tue Feb 24 2009 Peter Hutterer 1.3.0-1 - acecad 1.3.0 From ajax at fedoraproject.org Wed Jul 15 15:45:17 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:45:17 +0000 (UTC) Subject: rpms/xorg-x11-drv-aiptek/devel xorg-x11-drv-aiptek.spec,1.18,1.19 Message-ID: <20090715154517.9081011C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8519 Modified Files: xorg-x11-drv-aiptek.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.0-1.1 - ABI bump Index: xorg-x11-drv-aiptek.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel/xorg-x11-drv-aiptek.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xorg-x11-drv-aiptek.spec 24 Feb 2009 03:52:43 -0000 1.18 +++ xorg-x11-drv-aiptek.spec 15 Jul 2009 15:45:17 -0000 1.19 @@ -5,7 +5,7 @@ Summary: Xorg X11 aiptek input driver Name: xorg-x11-drv-aiptek Version: 1.2.0 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/aiptek.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.0-1.1 +- ABI bump + * Tue Feb 24 2009 Peter Hutterer - 1.2.0-1 - aiptek 1.2.0 From ajax at fedoraproject.org Wed Jul 15 15:45:31 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:45:31 +0000 (UTC) Subject: rpms/xorg-x11-drv-apm/devel xorg-x11-drv-apm.spec,1.25,1.26 Message-ID: <20090715154531.4365711C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-apm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8617 Modified Files: xorg-x11-drv-apm.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.1-3.1 - ABI bump Index: xorg-x11-drv-apm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-apm/devel/xorg-x11-drv-apm.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-apm.spec 22 Jun 2009 21:40:02 -0000 1.25 +++ xorg-x11-drv-apm.spec 15 Jul 2009 15:45:31 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Xorg X11 apm video driver Name: xorg-x11-drv-apm Version: 1.2.1 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/apm.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.1-3.1 +- ABI bump + * Mon Jun 22 2009 Adam Jackson 1.2.1-3 - Fix ABI for new server From ajax at fedoraproject.org Wed Jul 15 15:46:15 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:46:15 +0000 (UTC) Subject: rpms/xorg-x11-drv-ast/devel xorg-x11-drv-ast.spec,1.15,1.16 Message-ID: <20090715154615.C151C11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-ast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8726 Modified Files: xorg-x11-drv-ast.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.87.0-3.1 - ABI bump Index: xorg-x11-drv-ast.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ast/devel/xorg-x11-drv-ast.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xorg-x11-drv-ast.spec 22 Jun 2009 21:46:25 -0000 1.15 +++ xorg-x11-drv-ast.spec 15 Jul 2009 15:45:45 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Xorg X11 ast video driver Name: xorg-x11-drv-ast Version: 0.87.0 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hwdata/videoaliases/ast.xinf %changelog +* Wed Jul 15 2009 Adam Jackson - 0.87.0-3.1 +- ABI bump + * Mon Jun 22 2009 Adam Jackson 0.87.0-3 - Fix ABI for new server From ajax at fedoraproject.org Wed Jul 15 15:47:00 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:47:00 +0000 (UTC) Subject: rpms/xorg-x11-drv-ati/devel xorg-x11-drv-ati.spec,1.178,1.179 Message-ID: <20090715154700.42E0C11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-ati/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8928 Modified Files: xorg-x11-drv-ati.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 6.12.2-19.1 - ABI bump Index: xorg-x11-drv-ati.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ati/devel/xorg-x11-drv-ati.spec,v retrieving revision 1.178 retrieving revision 1.179 diff -u -p -r1.178 -r1.179 --- xorg-x11-drv-ati.spec 25 Jun 2009 06:02:57 -0000 1.178 +++ xorg-x11-drv-ati.spec 15 Jul 2009 15:46:30 -0000 1.179 @@ -5,7 +5,7 @@ Summary: Xorg X11 ati video driver Name: xorg-x11-drv-ati Version: 6.12.2 -Release: 19%{?dist} +Release: 19%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/radeon.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 6.12.2-19.1 +- ABI bump + * Thu Jun 25 2009 Dave Airlie 6.12.2-19 - fix kms compat From ajax at fedoraproject.org Wed Jul 15 15:47:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:47:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-cirrus/devel xorg-x11-drv-cirrus.spec,1.30,1.31 Message-ID: <20090715154744.725FB11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9140 Modified Files: xorg-x11-drv-cirrus.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 - ABI bump Index: xorg-x11-drv-cirrus.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel/xorg-x11-drv-cirrus.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xorg-x11-drv-cirrus.spec 2 Jul 2009 14:32:28 -0000 1.30 +++ xorg-x11-drv-cirrus.spec 15 Jul 2009 15:47:14 -0000 1.31 @@ -5,7 +5,7 @@ Summary: Xorg X11 cirrus video driver Name: xorg-x11-drv-cirrus Version: 1.3.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/cirrus.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.3.1-1 - cirrus 1.3.1 From ajax at fedoraproject.org Wed Jul 15 15:48:27 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:48:27 +0000 (UTC) Subject: rpms/xorg-x11-drv-dummy/devel xorg-x11-drv-dummy.spec,1.23,1.24 Message-ID: <20090715154827.E2CC811C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9284 Modified Files: xorg-x11-drv-dummy.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.3.2-1.1 - ABI bump Index: xorg-x11-drv-dummy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel/xorg-x11-drv-dummy.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-dummy.spec 2 Jul 2009 15:10:03 -0000 1.23 +++ xorg-x11-drv-dummy.spec 15 Jul 2009 15:47:57 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 dummy video driver Name: xorg-x11-drv-dummy Version: 0.3.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/dummy_drv.so %changelog +* Wed Jul 15 2009 Adam Jackson - 0.3.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 0.3.2-1 - dummy 0.3.2 From ajax at fedoraproject.org Wed Jul 15 15:49:08 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:49:08 +0000 (UTC) Subject: rpms/xorg-x11-drv-elographics/devel xorg-x11-drv-elographics.spec, 1.18, 1.19 Message-ID: <20090715154908.F25FD11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9461 Modified Files: xorg-x11-drv-elographics.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.3-2.1 - ABI bump Index: xorg-x11-drv-elographics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel/xorg-x11-drv-elographics.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xorg-x11-drv-elographics.spec 26 Feb 2009 10:45:41 -0000 1.18 +++ xorg-x11-drv-elographics.spec 15 Jul 2009 15:48:38 -0000 1.19 @@ -5,7 +5,7 @@ Summary: Xorg X11 elographics input driver Name: xorg-x11-drv-elographics Version: 1.2.3 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/elographics.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.3-2.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 15:49:24 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:49:24 +0000 (UTC) Subject: rpms/xorg-x11-drv-evdev/devel xorg-x11-drv-evdev.spec,1.55,1.56 Message-ID: <20090715154924.4285011C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9639 Modified Files: xorg-x11-drv-evdev.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.2.99-3.20090629.1 - ABI bump Index: xorg-x11-drv-evdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/xorg-x11-drv-evdev.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- xorg-x11-drv-evdev.spec 9 Jul 2009 14:28:49 -0000 1.55 +++ xorg-x11-drv-evdev.spec 15 Jul 2009 15:49:24 -0000 1.56 @@ -7,7 +7,7 @@ Summary: Xorg X11 evdev input driver Name: xorg-x11-drv-evdev Version: 2.2.99 -Release: 3.%{gitdate}%{?dist} +Release: 3.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -71,6 +71,9 @@ X.Org X11 evdev input driver development %changelog +* Wed Jul 15 2009 Adam Jackson - 2.2.99-3.20090629.1 +- ABI bump + * Thu Jul 09 2009 Adam Jackson 2.2.99-3.20090629 - Fix EVR inversion, 1.20090629 < 2.20090619 From ajax at fedoraproject.org Wed Jul 15 15:50:07 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:50:07 +0000 (UTC) Subject: rpms/xorg-x11-drv-fbdev/devel xorg-x11-drv-fbdev.spec,1.26,1.27 Message-ID: <20090715155007.A52EA11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-fbdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9739 Modified Files: xorg-x11-drv-fbdev.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.4.0-5.1 - ABI bump Index: xorg-x11-drv-fbdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-fbdev/devel/xorg-x11-drv-fbdev.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-fbdev.spec 22 Jun 2009 00:01:36 -0000 1.26 +++ xorg-x11-drv-fbdev.spec 15 Jul 2009 15:49:37 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 fbdev video driver Name: xorg-x11-drv-fbdev Version: 0.4.0 -Release: 5%{?dist} +Release: 5%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/fbdev.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 0.4.0-5.1 +- ABI bump + * Mon Jun 22 2009 Peter Hutterer 0.4.0-5 - fbdev-0.4.0-Make-ISA-optional.patch: to make next patch apply cleanly. - fbdef-0.4.0-Remove-useless-loader-symbol-lists.patch: From ajax at fedoraproject.org Wed Jul 15 15:50:50 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:50:50 +0000 (UTC) Subject: rpms/xorg-x11-drv-fpit/devel xorg-x11-drv-fpit.spec,1.19,1.20 Message-ID: <20090715155050.80C8111C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9890 Modified Files: xorg-x11-drv-fpit.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.0-2.1 - ABI bump Index: xorg-x11-drv-fpit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel/xorg-x11-drv-fpit.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-fpit.spec 26 Feb 2009 10:47:34 -0000 1.19 +++ xorg-x11-drv-fpit.spec 15 Jul 2009 15:50:20 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Xorg X11 fpit input driver Name: xorg-x11-drv-fpit Version: 1.3.0 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/policy/20thirdparty/10-fpit.fdi %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.0-2.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From langel at fedoraproject.org Wed Jul 15 15:51:03 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Wed, 15 Jul 2009 15:51:03 +0000 (UTC) Subject: rpms/batik/devel batik.spec,1.12,1.13 Message-ID: <20090715155103.9DEB011C00DF@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/batik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10071 Modified Files: batik.spec Log Message: * Wed Jul 15 2009 Lillian Angel - 1.7-5 - Fixed javadocs issue. - Resolves: rhbz#511767 Index: batik.spec =================================================================== RCS file: /cvs/pkgs/rpms/batik/devel/batik.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- batik.spec 24 Feb 2009 04:12:05 -0000 1.12 +++ batik.spec 15 Jul 2009 15:51:03 -0000 1.13 @@ -1,6 +1,6 @@ Name: batik Version: 1.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Scalable Vector Graphics for Java License: ASL 2.0 URL: http://xml.apache.org/batik/ @@ -238,7 +238,7 @@ cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_bindi # javadoc mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} -cp -pr %{name}-%{version}/docs/javadoc/* \ +cp -pr %{name}-%{version}/docs/* \ $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} rm -rf %{name}-%{version}/docs/javadoc ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name} @@ -299,6 +299,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Lillian Angel - 1.7-5 +- Fixed javadocs issue. +- Resolves: rhbz#511767 + * Mon Feb 23 2009 Fedora Release Engineering - 1.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 15:51:33 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:51:33 +0000 (UTC) Subject: rpms/xorg-x11-drv-geode/devel xorg-x11-drv-geode.spec,1.10,1.11 Message-ID: <20090715155133.A5BF611C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-geode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10085 Modified Files: xorg-x11-drv-geode.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.11.2-2.1 - ABI bump Index: xorg-x11-drv-geode.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-geode/devel/xorg-x11-drv-geode.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xorg-x11-drv-geode.spec 23 Jun 2009 00:17:24 -0000 1.10 +++ xorg-x11-drv-geode.spec 15 Jul 2009 15:51:03 -0000 1.11 @@ -5,7 +5,7 @@ Summary: Xorg X11 AMD Geode video driver Name: xorg-x11-drv-geode Version: 2.11.2 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org/wiki/AMDGeodeDriver Source0: http://xorg.freedesktop.org/releases/individual/driver/xf86-video-geode-%{version}.tar.bz2 License: MIT @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/ztv_drv.so %changelog +* Wed Jul 15 2009 Adam Jackson - 2.11.2-2.1 +- ABI bump + * Tue Jun 23 2009 Dave Airlie 2.11.2-2 - update for new server ABI From ajax at fedoraproject.org Wed Jul 15 15:51:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:51:47 +0000 (UTC) Subject: rpms/xorg-x11-drv-glint/devel xorg-x11-drv-glint.spec,1.23,1.24 Message-ID: <20090715155147.530B311C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-glint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10343 Modified Files: xorg-x11-drv-glint.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 - ABI bump Index: xorg-x11-drv-glint.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-glint/devel/xorg-x11-drv-glint.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-glint.spec 2 Jul 2009 15:15:42 -0000 1.23 +++ xorg-x11-drv-glint.spec 15 Jul 2009 15:51:47 -0000 1.24 @@ -9,7 +9,7 @@ Summary: Xorg X11 glint video driver Name: xorg-x11-drv-glint Version: 1.2.3 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/glint.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.2.3-1 - glint 1.2.3 From ajax at fedoraproject.org Wed Jul 15 15:52:31 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:52:31 +0000 (UTC) Subject: rpms/xorg-x11-drv-hyperpen/devel xorg-x11-drv-hyperpen.spec, 1.19, 1.20 Message-ID: <20090715155231.6B7DD11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10477 Modified Files: xorg-x11-drv-hyperpen.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 - ABI bump Index: xorg-x11-drv-hyperpen.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel/xorg-x11-drv-hyperpen.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-hyperpen.spec 27 Feb 2009 00:44:18 -0000 1.19 +++ xorg-x11-drv-hyperpen.spec 15 Jul 2009 15:52:01 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Xorg X11 hyperpen input driver Name: xorg-x11-drv-hyperpen Version: 1.3.0 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/hyperpen_drv.so %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 +- ABI bump + * Fri Feb 27 2009 Peter Hutterer - 1.3.0-1 - hyperpen 1.3.0 From ajax at fedoraproject.org Wed Jul 15 15:53:18 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:53:18 +0000 (UTC) Subject: rpms/xorg-x11-drv-i128/devel xorg-x11-drv-i128.spec,1.22,1.23 Message-ID: <20090715155318.6625A11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-i128/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10701 Modified Files: xorg-x11-drv-i128.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 - ABI bump Index: xorg-x11-drv-i128.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i128/devel/xorg-x11-drv-i128.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-i128.spec 2 Jul 2009 15:20:17 -0000 1.22 +++ xorg-x11-drv-i128.spec 15 Jul 2009 15:52:48 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 i128 video driver Name: xorg-x11-drv-i128 Version: 1.3.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i128.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.3.2-1 - i128 1.3.2 From ajax at fedoraproject.org Wed Jul 15 15:53:32 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:53:32 +0000 (UTC) Subject: rpms/xorg-x11-drv-i740/devel xorg-x11-drv-i740.spec,1.22,1.23 Message-ID: <20090715155332.1EB0111C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-i740/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10832 Modified Files: xorg-x11-drv-i740.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 - ABI bump Index: xorg-x11-drv-i740.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i740/devel/xorg-x11-drv-i740.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-i740.spec 2 Jul 2009 15:23:25 -0000 1.22 +++ xorg-x11-drv-i740.spec 15 Jul 2009 15:53:31 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 i740 video driver Name: xorg-x11-drv-i740 Version: 1.3.1 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i740.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.3.1-1 - i740 1.3.1 From ajax at fedoraproject.org Wed Jul 15 15:54:17 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:54:17 +0000 (UTC) Subject: rpms/xorg-x11-drv-i810/devel xorg-x11-drv-i810.spec,1.127,1.128 Message-ID: <20090715155417.3682B11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-i810/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10954 Modified Files: xorg-x11-drv-i810.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.6.0-7.1 - ABI bump Index: xorg-x11-drv-i810.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i810/devel/xorg-x11-drv-i810.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- xorg-x11-drv-i810.spec 24 Feb 2009 20:31:03 -0000 1.127 +++ xorg-x11-drv-i810.spec 15 Jul 2009 15:53:46 -0000 1.128 @@ -6,7 +6,7 @@ Summary: Xorg X11 Intel video driver(s) Name: xorg-x11-drv-i810 Version: 2.6.0 -Release: 7%{?dist} +Release: 7%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libIntelXvMC.so %changelog +* Wed Jul 15 2009 Adam Jackson - 2.6.0-7.1 +- ABI bump + * Tue Feb 24 2009 Kristian H????gsberg - 2.6.0-7 - Update to git master, pull in patches to kill svideo and copy fb contents. From ajax at fedoraproject.org Wed Jul 15 15:55:01 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:55:01 +0000 (UTC) Subject: rpms/xorg-x11-drv-keyboard/devel xorg-x11-drv-keyboard.spec, 1.31, 1.32 Message-ID: <20090715155501.7F4A111C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11145 Modified Files: xorg-x11-drv-keyboard.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.99-2.20090715.1 - ABI bump Index: xorg-x11-drv-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/xorg-x11-drv-keyboard.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-keyboard.spec 15 Jul 2009 07:17:04 -0000 1.31 +++ xorg-x11-drv-keyboard.spec 15 Jul 2009 15:54:31 -0000 1.32 @@ -7,7 +7,7 @@ Summary: Xorg X11 keyboard input driver Name: xorg-x11-drv-keyboard Version: 1.3.99 -Release: 2.%{gitdate}%{?dist} +Release: 2.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/keyboard.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.99-2.20090715.1 +- ABI bump + * Wed Jul 15 2009 Peter Hutterer 1.3.99-2.20090715 - Rebuild, this time with the right tarball. From ajax at fedoraproject.org Wed Jul 15 15:55:45 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:55:45 +0000 (UTC) Subject: rpms/xorg-x11-drv-mach64/devel xorg-x11-drv-mach64.spec,1.3,1.4 Message-ID: <20090715155545.50E1B11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11344 Modified Files: xorg-x11-drv-mach64.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 - ABI bump Index: xorg-x11-drv-mach64.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel/xorg-x11-drv-mach64.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xorg-x11-drv-mach64.spec 26 Feb 2009 10:55:38 -0000 1.3 +++ xorg-x11-drv-mach64.spec 15 Jul 2009 15:55:15 -0000 1.4 @@ -5,7 +5,7 @@ Summary: Xorg X11 mach64 video driver Name: xorg-x11-drv-mach64 Version: 6.8.0 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/mach64.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 6.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 15:56:28 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:56:28 +0000 (UTC) Subject: rpms/xorg-x11-drv-mga/devel xorg-x11-drv-mga.spec,1.31,1.32 Message-ID: <20090715155628.C4D4911C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-mga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11521 Modified Files: xorg-x11-drv-mga.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.4.10-2.1 - ABI bump Index: xorg-x11-drv-mga.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mga/devel/xorg-x11-drv-mga.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-mga.spec 23 Jun 2009 00:27:32 -0000 1.31 +++ xorg-x11-drv-mga.spec 15 Jul 2009 15:55:58 -0000 1.32 @@ -7,7 +7,7 @@ Summary: Xorg X11 mga video driver Name: xorg-x11-drv-mga Version: 1.4.10 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mga.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.4.10-2.1 +- ABI bump + * Tue Jun 23 2009 Dave Airlie 1.4.10-2 - fixup ABI for rawhide From ajax at fedoraproject.org Wed Jul 15 15:56:39 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:56:39 +0000 (UTC) Subject: rpms/xorg-x11-drv-mouse/devel xorg-x11-drv-mouse.spec,1.31,1.32 Message-ID: <20090715155639.8CE9011C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-mouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11704 Modified Files: xorg-x11-drv-mouse.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.4.99-2.20090619.1 - ABI bump Index: xorg-x11-drv-mouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mouse/devel/xorg-x11-drv-mouse.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-mouse.spec 19 Jun 2009 13:22:33 -0000 1.31 +++ xorg-x11-drv-mouse.spec 15 Jul 2009 15:56:39 -0000 1.32 @@ -7,7 +7,7 @@ Summary: Xorg X11 mouse input driver Name: xorg-x11-drv-mouse Version: 1.4.99 -Release: 2.%{gitdate}%{?dist} +Release: 2.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mousedrv.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.4.99-2.20090619.1 +- ABI bump + * Fri Jun 19 2009 Peter Hutterer - 1.4.99-2.20090619 - rebuild for server ABI 7 From ajax at fedoraproject.org Wed Jul 15 15:57:24 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:57:24 +0000 (UTC) Subject: rpms/xorg-x11-drv-mutouch/devel xorg-x11-drv-mutouch.spec, 1.20, 1.21 Message-ID: <20090715155724.E541311C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11806 Modified Files: xorg-x11-drv-mutouch.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.1-2.1 - ABI bump Index: xorg-x11-drv-mutouch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel/xorg-x11-drv-mutouch.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-mutouch.spec 26 Feb 2009 10:57:42 -0000 1.20 +++ xorg-x11-drv-mutouch.spec 15 Jul 2009 15:56:54 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 mutouch input driver Name: xorg-x11-drv-mutouch Version: 1.2.1 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mutouch.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.1-2.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 15:58:06 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:58:06 +0000 (UTC) Subject: rpms/xorg-x11-drv-neomagic/devel xorg-x11-drv-neomagic.spec, 1.20, 1.21 Message-ID: <20090715155806.8869211C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12032 Modified Files: xorg-x11-drv-neomagic.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 - ABI bump Index: xorg-x11-drv-neomagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel/xorg-x11-drv-neomagic.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-neomagic.spec 2 Jul 2009 15:27:19 -0000 1.20 +++ xorg-x11-drv-neomagic.spec 15 Jul 2009 15:57:36 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 neomagic video driver Name: xorg-x11-drv-neomagic Version: 1.2.3 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/neomagic.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.2.3-1 - neomagic 1.2.3 From ajax at fedoraproject.org Wed Jul 15 15:58:48 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:58:48 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel xorg-x11-drv-nouveau.spec, 1.42, 1.43 Message-ID: <20090715155848.8644711C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12208 Modified Files: xorg-x11-drv-nouveau.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1:0.0.14-1.20090701git6d14327.1 - ABI bump Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- xorg-x11-drv-nouveau.spec 6 Jul 2009 00:12:24 -0000 1.42 +++ xorg-x11-drv-nouveau.spec 15 Jul 2009 15:58:18 -0000 1.43 @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 1.%{snapshot}%{?dist} +Release: 1.%{snapshot}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1:0.0.14-1.20090701git6d14327.1 +- ABI bump + * Mon Jul 7 2009 Ben Skeggs 0.0.14-1.20090701git6d14327 - update from upstream + bring back additional features found in F11 From ajax at fedoraproject.org Wed Jul 15 15:59:30 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 15:59:30 +0000 (UTC) Subject: rpms/xorg-x11-drv-nv/devel xorg-x11-drv-nv.spec,1.87,1.88 Message-ID: <20090715155930.C8AE011C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-nv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12424 Modified Files: xorg-x11-drv-nv.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.1.14-1.1 - ABI bump Index: xorg-x11-drv-nv.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nv/devel/xorg-x11-drv-nv.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- xorg-x11-drv-nv.spec 7 Jul 2009 17:57:19 -0000 1.87 +++ xorg-x11-drv-nv.spec 15 Jul 2009 15:59:00 -0000 1.88 @@ -5,7 +5,7 @@ Summary: Xorg X11 nv video driver Name: xorg-x11-drv-nv Version: 2.1.14 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nv.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 2.1.14-1.1 +- ABI bump + * Tue Jul 07 2009 Adam Jackson 2.1.14-1 - nv 2.1.14 From ajax at fedoraproject.org Wed Jul 15 16:00:16 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:00:16 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/devel xorg-x11-drv-openchrome.spec, 1.44, 1.45 Message-ID: <20090715160016.36AC711C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12615 Modified Files: xorg-x11-drv-openchrome.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.2.903-11.1 - ABI bump Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/xorg-x11-drv-openchrome.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xorg-x11-drv-openchrome.spec 19 Jun 2009 00:04:46 -0000 1.44 +++ xorg-x11-drv-openchrome.spec 15 Jul 2009 15:59:46 -0000 1.45 @@ -10,7 +10,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 11%{?dist} +Release: 11%{?dist}.1 URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -130,6 +130,9 @@ fi %changelog +* Wed Jul 15 2009 Adam Jackson - 0.2.903-11.1 +- ABI bump + * Thu Jun 18 2009 Xavier Bachelot - 0.2.903-11 - Update to latest snapshot (svn 751) : - Add support for VX800 integrated TMDS encoder. From ajax at fedoraproject.org Wed Jul 15 16:00:30 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:00:30 +0000 (UTC) Subject: rpms/xorg-x11-drv-penmount/devel xorg-x11-drv-penmount.spec, 1.23, 1.24 Message-ID: <20090715160030.8ED7311C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12852 Modified Files: xorg-x11-drv-penmount.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.4.0-2.1 - ABI bump Index: xorg-x11-drv-penmount.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel/xorg-x11-drv-penmount.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-penmount.spec 26 Feb 2009 11:02:26 -0000 1.23 +++ xorg-x11-drv-penmount.spec 15 Jul 2009 16:00:30 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 penmount input driver Name: xorg-x11-drv-penmount Version: 1.4.0 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/penmount.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.4.0-2.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 16:00:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:00:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-r128/devel xorg-x11-drv-r128.spec,1.3,1.4 Message-ID: <20090715160044.CCDA811C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-r128/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12969 Modified Files: xorg-x11-drv-r128.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 - ABI bump Index: xorg-x11-drv-r128.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-r128/devel/xorg-x11-drv-r128.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xorg-x11-drv-r128.spec 26 Feb 2009 11:03:20 -0000 1.3 +++ xorg-x11-drv-r128.spec 15 Jul 2009 16:00:44 -0000 1.4 @@ -5,7 +5,7 @@ Summary: Xorg X11 r128 video driver Name: xorg-x11-drv-r128 Version: 6.8.0 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/r128.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 6.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 16:01:29 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:01:29 +0000 (UTC) Subject: rpms/xorg-x11-drv-rendition/devel xorg-x11-drv-rendition.spec, 1.25, 1.26 Message-ID: <20090715160129.00F6A11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13062 Modified Files: xorg-x11-drv-rendition.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 4.2.2-1.1 - ABI bump Index: xorg-x11-drv-rendition.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel/xorg-x11-drv-rendition.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-rendition.spec 2 Jul 2009 15:32:09 -0000 1.25 +++ xorg-x11-drv-rendition.spec 15 Jul 2009 16:00:58 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Xorg X11 rendition video driver Name: xorg-x11-drv-rendition Version: 4.2.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/rendition.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 4.2.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 4.2.2-1 - rendition 4.2.2 From ajax at fedoraproject.org Wed Jul 15 16:01:40 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:01:40 +0000 (UTC) Subject: rpms/xorg-x11-drv-s3virge/devel xorg-x11-drv-s3virge.spec, 1.22, 1.23 Message-ID: <20090715160140.A6E5511C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13269 Modified Files: xorg-x11-drv-s3virge.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.10.3-1.1 - ABI bump Index: xorg-x11-drv-s3virge.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel/xorg-x11-drv-s3virge.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-s3virge.spec 2 Jul 2009 15:38:18 -0000 1.22 +++ xorg-x11-drv-s3virge.spec 15 Jul 2009 16:01:40 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 s3virge video driver Name: xorg-x11-drv-s3virge Version: 1.10.3 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/s3virge.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.10.3-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.10.3-1 - s3virge 1.10.3 From ajax at fedoraproject.org Wed Jul 15 16:02:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:02:22 +0000 (UTC) Subject: rpms/xorg-x11-drv-savage/devel xorg-x11-drv-savage.spec,1.29,1.30 Message-ID: <20090715160222.C87E611C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-savage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13432 Modified Files: xorg-x11-drv-savage.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.3.0-1.1 - ABI bump Index: xorg-x11-drv-savage.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-savage/devel/xorg-x11-drv-savage.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-drv-savage.spec 2 Jul 2009 15:42:37 -0000 1.29 +++ xorg-x11-drv-savage.spec 15 Jul 2009 16:01:52 -0000 1.30 @@ -5,7 +5,7 @@ Summary: Xorg X11 savage video driver Name: xorg-x11-drv-savage Version: 2.3.0 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/savage.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 2.3.0-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 2.3.0-1 - savage 2.3.0 From ajax at fedoraproject.org Wed Jul 15 16:02:35 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:02:35 +0000 (UTC) Subject: rpms/xorg-x11-drv-siliconmotion/devel xorg-x11-drv-siliconmotion.spec, 1.21, 1.22 Message-ID: <20090715160235.2A64311C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13639 Modified Files: xorg-x11-drv-siliconmotion.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.7.2-1.1 - ABI bump Index: xorg-x11-drv-siliconmotion.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel/xorg-x11-drv-siliconmotion.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-siliconmotion.spec 2 Jul 2009 15:45:45 -0000 1.21 +++ xorg-x11-drv-siliconmotion.spec 15 Jul 2009 16:02:34 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Xorg X11 siliconmotion video driver Name: xorg-x11-drv-siliconmotion Version: 1.7.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/siliconmotion.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.7.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.7.2-1 - siliconmotion 1.7.2 From ajax at fedoraproject.org Wed Jul 15 16:03:25 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:03:25 +0000 (UTC) Subject: rpms/xorg-x11-drv-sis/devel xorg-x11-drv-sis.spec,1.31,1.32 Message-ID: <20090715160325.0509F11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-sis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13758 Modified Files: xorg-x11-drv-sis.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.10.1-3.1 - ABI bump Index: xorg-x11-drv-sis.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sis/devel/xorg-x11-drv-sis.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-sis.spec 23 Jun 2009 00:56:04 -0000 1.31 +++ xorg-x11-drv-sis.spec 15 Jul 2009 16:02:54 -0000 1.32 @@ -5,7 +5,7 @@ Summary: Xorg X11 sis video driver Name: xorg-x11-drv-sis Version: 0.10.1 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/sis.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 0.10.1-3.1 +- ABI bump + * Tue Jun 23 2009 Dave Airlie 0.10.1-3 - abi.patch: fixup for new server ABI From ajax at fedoraproject.org Wed Jul 15 16:04:07 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:04:07 +0000 (UTC) Subject: rpms/xorg-x11-drv-sisusb/devel xorg-x11-drv-sisusb.spec,1.25,1.26 Message-ID: <20090715160407.32A8A11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14005 Modified Files: xorg-x11-drv-sisusb.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.9.2-1.1 - ABI bump Index: xorg-x11-drv-sisusb.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel/xorg-x11-drv-sisusb.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-sisusb.spec 2 Jul 2009 15:47:47 -0000 1.25 +++ xorg-x11-drv-sisusb.spec 15 Jul 2009 16:03:37 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Xorg X11 sisusb video driver Name: xorg-x11-drv-sisusb Version: 0.9.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 0.9.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 0.9.2-1 - sisusb 0.9.2 From ajax at fedoraproject.org Wed Jul 15 16:04:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:04:52 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/devel xorg-x11-drv-synaptics.spec, 1.29, 1.30 Message-ID: <20090715160452.5695411C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14212 Modified Files: xorg-x11-drv-synaptics.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.1.99-2.20090710.1 - ABI bump Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/xorg-x11-drv-synaptics.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-drv-synaptics.spec 10 Jul 2009 05:43:00 -0000 1.29 +++ xorg-x11-drv-synaptics.spec 15 Jul 2009 16:04:22 -0000 1.30 @@ -7,7 +7,7 @@ Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver Version: 1.1.99 -Release: 2.%{gitdate}%{?dist} +Release: 2.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -121,6 +121,9 @@ Development files for the Synaptics Touc %changelog +* Wed Jul 15 2009 Adam Jackson - 1.1.99-2.20090710.1 +- ABI bump + * Fri Jul 10 2009 Peter Hutterer 1.1.99-2-22090710 - Update to today's git master. From ajax at fedoraproject.org Wed Jul 15 16:05:35 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:05:35 +0000 (UTC) Subject: rpms/xorg-x11-drv-tdfx/devel xorg-x11-drv-tdfx.spec,1.27,1.28 Message-ID: <20090715160535.EF61A11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14436 Modified Files: xorg-x11-drv-tdfx.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.4.2-1.1 - ABI bump Index: xorg-x11-drv-tdfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel/xorg-x11-drv-tdfx.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-drv-tdfx.spec 2 Jul 2009 15:50:04 -0000 1.27 +++ xorg-x11-drv-tdfx.spec 15 Jul 2009 16:05:05 -0000 1.28 @@ -5,7 +5,7 @@ Summary: Xorg X11 tdfx video driver Name: xorg-x11-drv-tdfx Version: 1.4.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/tdfx.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.4.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.4.2-1 - tdfx 1.4.2 From ajax at fedoraproject.org Wed Jul 15 16:06:19 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:06:19 +0000 (UTC) Subject: rpms/xorg-x11-drv-trident/devel xorg-x11-drv-trident.spec, 1.26, 1.27 Message-ID: <20090715160619.E111811C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-trident/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14609 Modified Files: xorg-x11-drv-trident.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 - ABI bump Index: xorg-x11-drv-trident.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-trident/devel/xorg-x11-drv-trident.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-trident.spec 2 Jul 2009 15:52:26 -0000 1.26 +++ xorg-x11-drv-trident.spec 15 Jul 2009 16:05:49 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 trident video driver Name: xorg-x11-drv-trident Version: 1.3.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/trident.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.3.2-1 - trident 1.3.2 From ajax at fedoraproject.org Wed Jul 15 16:07:03 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:07:03 +0000 (UTC) Subject: rpms/xorg-x11-drv-v4l/devel xorg-x11-drv-v4l.spec,1.19,1.20 Message-ID: <20090715160703.AAE1611C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-v4l/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14798 Modified Files: xorg-x11-drv-v4l.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 0.2.0-2.1 - ABI bump Index: xorg-x11-drv-v4l.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-v4l/devel/xorg-x11-drv-v4l.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-v4l.spec 26 Feb 2009 11:22:44 -0000 1.19 +++ xorg-x11-drv-v4l.spec 15 Jul 2009 16:06:33 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Xorg X11 v4l video driver Name: xorg-x11-drv-v4l Version: 0.2.0 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/v4l.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 0.2.0-2.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 15 16:07:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:07:47 +0000 (UTC) Subject: rpms/xorg-x11-drv-vesa/devel xorg-x11-drv-vesa.spec,1.38,1.39 Message-ID: <20090715160747.F0DB011C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-vesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15033 Modified Files: xorg-x11-drv-vesa.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 2.2.0-3.1 - ABI bump Index: xorg-x11-drv-vesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vesa/devel/xorg-x11-drv-vesa.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- xorg-x11-drv-vesa.spec 26 Feb 2009 11:23:43 -0000 1.38 +++ xorg-x11-drv-vesa.spec 15 Jul 2009 16:07:17 -0000 1.39 @@ -5,7 +5,7 @@ Summary: Xorg X11 vesa video driver Name: xorg-x11-drv-vesa Version: 2.2.0 -Release: 3%{?dist} +Release: 3%{?dist}.1 URL: http://www.x.org Source0: http://xorg.freedesktop.org/releases/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/vesa.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 2.2.0-3.1 +- ABI bump + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mbarnes at fedoraproject.org Wed Jul 15 16:08:25 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 16:08:25 +0000 (UTC) Subject: rpms/evolution-zimbra/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE evolution-zimbra-0.1.1-fix-build.patch, 1.1, NONE evolution-zimbra.spec, 1.11, NONE sources, 1.3, NONE Message-ID: <20090715160825.1575811C00DF@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution-zimbra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15350 Added Files: dead.package Removed Files: Makefile evolution-zimbra-0.1.1-fix-build.patch evolution-zimbra.spec sources Log Message: Retire evolution-zimbra. --- NEW FILE dead.package --- Zimbra 5 provides CalDAV and LDAP services which Evolution supports by default. This extension package is obsolete. --- Makefile DELETED --- --- evolution-zimbra-0.1.1-fix-build.patch DELETED --- --- evolution-zimbra.spec DELETED --- --- sources DELETED --- From ajax at fedoraproject.org Wed Jul 15 16:08:29 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:08:29 +0000 (UTC) Subject: rpms/xorg-x11-drv-vmmouse/devel xorg-x11-drv-vmmouse.spec, 1.26, 1.27 Message-ID: <20090715160829.BB09411C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-vmmouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15302 Modified Files: xorg-x11-drv-vmmouse.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 12.6.4-2.1 - ABI bump Index: xorg-x11-drv-vmmouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vmmouse/devel/xorg-x11-drv-vmmouse.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-vmmouse.spec 9 Jul 2009 14:38:23 -0000 1.26 +++ xorg-x11-drv-vmmouse.spec 15 Jul 2009 16:07:59 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 vmmouse input driver Name: xorg-x11-drv-vmmouse Version: 12.6.4 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/policy/20thirdparty/11-x11-vmmouse.fdi %changelog +* Wed Jul 15 2009 Adam Jackson - 12.6.4-2.1 +- ABI bump + * Thu Jul 09 2009 Adam Jackson 12.6.4-2 - Port to new server ABI (#509682) From mclasen at fedoraproject.org Wed Jul 15 16:08:34 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 16:08:34 +0000 (UTC) Subject: rpms/libwnck/devel .cvsignore, 1.73, 1.74 libwnck.spec, 1.109, 1.110 sources, 1.73, 1.74 Message-ID: <20090715160834.6985C11C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libwnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15192 Modified Files: .cvsignore libwnck.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/.cvsignore,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- .cvsignore 13 Apr 2009 23:39:41 -0000 1.73 +++ .cvsignore 15 Jul 2009 16:08:04 -0000 1.74 @@ -1 +1 @@ -libwnck-2.26.1.tar.bz2 +libwnck-2.27.4.tar.bz2 Index: libwnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/libwnck.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- libwnck.spec 13 Apr 2009 23:39:41 -0000 1.109 +++ libwnck.spec 15 Jul 2009 16:08:04 -0000 1.110 @@ -5,10 +5,10 @@ Summary: Window Navigator Construction Kit Name: libwnck -Version: 2.26.1 +Version: 2.27.4 Release: 1%{?dist} URL: http://download.gnome.org/sources/libwnck/ -Source0: http://download.gnome.org/sources/libwnck/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/libwnck/2.27/%{name}-%{version}.tar.bz2 License: LGPLv2+ Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/libwnck %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Mon Apr 13 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 - See http://download.gnome.org/sources/libwnck/2.26/libwnck-2.26.1.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 13 Apr 2009 23:39:41 -0000 1.73 +++ sources 15 Jul 2009 16:08:04 -0000 1.74 @@ -1 +1 @@ -015b5d2e65d15448fa143513fce03541 libwnck-2.26.1.tar.bz2 +a44dfb8bbf8069899d7ccf0f87822189 libwnck-2.27.4.tar.bz2 From ajax at fedoraproject.org Wed Jul 15 16:08:41 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:08:41 +0000 (UTC) Subject: rpms/xorg-x11-drv-vmware/devel xorg-x11-drv-vmware.spec,1.22,1.23 Message-ID: <20090715160841.506C411C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-vmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15488 Modified Files: xorg-x11-drv-vmware.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 10.16.0-4.1 - ABI bump Index: xorg-x11-drv-vmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vmware/devel/xorg-x11-drv-vmware.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-vmware.spec 23 Jun 2009 00:46:35 -0000 1.22 +++ xorg-x11-drv-vmware.spec 15 Jul 2009 16:08:41 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 vmware video driver Name: xorg-x11-drv-vmware Version: 10.16.0 -Release: 4%{?dist} +Release: 4%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/vmware.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 10.16.0-4.1 +- ABI bump + * Tue Jun 23 2009 Dave Airlie 10.16.0-4 - abi.patch: patch for new server ABI From ajax at fedoraproject.org Wed Jul 15 16:09:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:09:23 +0000 (UTC) Subject: rpms/xorg-x11-drv-void/devel xorg-x11-drv-void.spec,1.23,1.24 Message-ID: <20090715160923.75E3311C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-void/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15587 Modified Files: xorg-x11-drv-void.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.0-2.1 - ABI bump Index: xorg-x11-drv-void.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-void/devel/xorg-x11-drv-void.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-void.spec 22 Jun 2009 03:20:33 -0000 1.23 +++ xorg-x11-drv-void.spec 15 Jul 2009 16:08:53 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 void input driver Name: xorg-x11-drv-void Version: 1.2.0 -Release: 2%{?dist} +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/void.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.0-2.1 +- ABI bump + * Mon Jun 22 2009 Peter Hutterer - 1.2.0-2 - void-1.2.0-Adjust-for-ABI_XINPUT_VERSION-7.patch: cope with new input ABI. From ajax at fedoraproject.org Wed Jul 15 16:09:38 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 16:09:38 +0000 (UTC) Subject: rpms/xorg-x11-drv-voodoo/devel xorg-x11-drv-voodoo.spec,1.24,1.25 Message-ID: <20090715160938.5536B11C00DF@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16179 Modified Files: xorg-x11-drv-voodoo.spec Log Message: * Wed Jul 15 2009 Adam Jackson - 1.2.2-1.1 - ABI bump Index: xorg-x11-drv-voodoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel/xorg-x11-drv-voodoo.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-voodoo.spec 2 Jul 2009 15:56:14 -0000 1.24 +++ xorg-x11-drv-voodoo.spec 15 Jul 2009 16:09:38 -0000 1.25 @@ -5,7 +5,7 @@ Summary: Xorg X11 voodoo video driver Name: xorg-x11-drv-voodoo Version: 1.2.2 -Release: 1%{?dist} +Release: 1%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/voodoo.4* %changelog +* Wed Jul 15 2009 Adam Jackson - 1.2.2-1.1 +- ABI bump + * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - voodoo 1.2.2 From pbrobinson at fedoraproject.org Wed Jul 15 16:10:09 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Wed, 15 Jul 2009 16:10:09 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.7,1.8 Message-ID: <20090715161009.1189411C00DF@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16209 Modified Files: nbtk.spec Log Message: - obsolete mux Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nbtk.spec 9 Jul 2009 19:59:21 -0000 1.7 +++ nbtk.spec 15 Jul 2009 16:09:38 -0000 1.8 @@ -21,6 +21,9 @@ BuildRequires: libtool BuildRequires: automake BuildRequires: autoconf +Obsoletes: mux < 0.4 +Provides: mux = 0.4 + %description The Netbook Toolkit is a GUI toolkit, using Clutter and is optimised for the Moblin netbook experience. It consists of various classes From mbarnes at fedoraproject.org Wed Jul 15 16:25:42 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 16:25:42 +0000 (UTC) Subject: rpms/libsoup22/devel libsoup-2.2.105-dprintf-conflict.patch, NONE, 1.1 libsoup22.spec, 1.3, 1.4 Message-ID: <20090715162542.BB73D11C00DF@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/libsoup22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18925 Modified Files: libsoup22.spec Added Files: libsoup-2.2.105-dprintf-conflict.patch Log Message: error: %patch without corresponding "Patch:" tag * Wed Jul 15 2009 Matthew Barnes - 2.2.105-5 - Add patch for RH bug #511673 (dprintf conflict). libsoup-2.2.105-dprintf-conflict.patch: --- NEW FILE libsoup-2.2.105-dprintf-conflict.patch --- diff -up libsoup-2.2.105/tests/context-test.c.dprintf-conflict libsoup-2.2.105/tests/context-test.c --- libsoup-2.2.105/tests/context-test.c.dprintf-conflict 2009-07-15 12:21:30.000000000 -0400 +++ libsoup-2.2.105/tests/context-test.c 2009-07-15 12:21:51.000000000 -0400 @@ -28,7 +28,7 @@ GThread *server_thread; char *base_uri; static void -dprintf (const char *format, ...) +debug_printf (const char *format, ...) { va_list args; @@ -168,7 +168,7 @@ do_test1 (void) { GMainLoop *loop; - dprintf ("Test 1: blocking the main thread does not block other thread\n"); + debug_printf ("Test 1: blocking the main thread does not block other thread\n"); test1_cond = g_cond_new (); test1_mutex = g_mutex_new (); @@ -196,7 +196,7 @@ idle_start_test1_thread (gpointer loop) if (g_cond_timed_wait (test1_cond, test1_mutex, &time)) g_thread_join (thread); else { - dprintf (" timeout!\n"); + debug_printf (" timeout!\n"); errors++; } @@ -232,17 +232,17 @@ test1_thread (gpointer user_data) uri = g_build_filename (base_uri, "slow", NULL); - dprintf (" send_message\n"); + debug_printf (" send_message\n"); msg = soup_message_new ("GET", uri); soup_session_send_message (session, msg); if (msg->status_code != SOUP_STATUS_OK) { - dprintf (" unexpected status: %d %s\n", + debug_printf (" unexpected status: %d %s\n", msg->status_code, msg->reason_phrase); errors++; } g_object_unref (msg); - dprintf (" queue_message\n"); + debug_printf (" queue_message\n"); msg = soup_message_new ("GET", uri); loop = g_main_loop_new (async_context, FALSE); g_object_ref (msg); @@ -250,7 +250,7 @@ test1_thread (gpointer user_data) g_main_loop_run (loop); g_main_loop_unref (loop); if (msg->status_code != SOUP_STATUS_OK) { - dprintf (" unexpected status: %d %s\n", + debug_printf (" unexpected status: %d %s\n", msg->status_code, msg->reason_phrase); errors++; } @@ -279,7 +279,7 @@ do_test2 (void) char *uri; SoupMessage *msg; - dprintf ("Test 2: a session with its own context is independent of the main loop.\n"); + debug_printf ("Test 2: a session with its own context is independent of the main loop.\n"); idle = g_idle_add_full (G_PRIORITY_HIGH, idle_test2_fail, NULL, NULL); @@ -291,11 +291,11 @@ do_test2 (void) uri = g_build_filename (base_uri, "slow", NULL); - dprintf (" send_message\n"); + debug_printf (" send_message\n"); msg = soup_message_new ("GET", uri); soup_session_send_message (session, msg); if (msg->status_code != SOUP_STATUS_OK) { - dprintf (" unexpected status: %d %s\n", + debug_printf (" unexpected status: %d %s\n", msg->status_code, msg->reason_phrase); errors++; } @@ -311,7 +311,7 @@ do_test2 (void) static gboolean idle_test2_fail (gpointer user_data) { - dprintf (" idle ran!\n"); + debug_printf (" idle ran!\n"); errors++; return FALSE; } @@ -356,7 +356,7 @@ main (int argc, char **argv) g_free (base_uri); g_main_context_unref (g_main_context_default ()); - dprintf ("\n"); + debug_printf ("\n"); if (errors) { printf ("context-test: %d error(s). Run with '-d' for details\n", errors); Index: libsoup22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup22/devel/libsoup22.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libsoup22.spec 25 Feb 2009 18:17:04 -0000 1.3 +++ libsoup22.spec 15 Jul 2009 16:25:12 -0000 1.4 @@ -2,7 +2,7 @@ Name: libsoup22 Version: 2.2.105 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: Development/Libraries Summary: Soup, an HTTP library implementation @@ -10,6 +10,11 @@ URL: ftp://ftp.gnome.org/pub/gnome/sourc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: ftp://ftp.gnome.org/pub/gnome/sources/libsoup/2.2/libsoup-%{version}.tar.bz2 +### Patches ### + +# RH bug #511673 +Patch1: libsoup-2.2.105-dprintf-conflict.patch + ### Dependencies ### Requires: glib2 >= 2.12 @@ -47,6 +52,7 @@ you to develop applications that use the %prep %setup -q -n libsoup-%{version} +%patch -p1 -b .dprintf-conflict %build %configure @@ -82,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libsoup-2.2 %changelog +* Wed Jul 15 2009 Matthew Barnes - 2.2.105-5 +- Add patch for RH bug #511673 (dprintf conflict). + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.105-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Wed Jul 15 16:04:33 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 16:04:33 +0000 (UTC) Subject: rpms/gnome-menus/devel .cvsignore, 1.55, 1.56 gnome-menus.spec, 1.103, 1.104 sources, 1.55, 1.56 Message-ID: <20090715160433.56DF711C00DF@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14094 Modified Files: .cvsignore gnome-menus.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-menus/devel/.cvsignore,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- .cvsignore 30 Jun 2009 23:31:08 -0000 1.55 +++ .cvsignore 15 Jul 2009 16:04:02 -0000 1.56 @@ -1 +1 @@ -gnome-menus-2.26.2.tar.bz2 +gnome-menus-2.27.4.tar.bz2 Index: gnome-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-menus/devel/gnome-menus.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- gnome-menus.spec 30 Jun 2009 23:31:08 -0000 1.103 +++ gnome-menus.spec 15 Jul 2009 16:04:03 -0000 1.104 @@ -5,12 +5,12 @@ Summary: A menu system for the GNOME project Name: gnome-menus -Version: 2.26.2 +Version: 2.27.4 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gnome.org/ -Source0: http://download.gnome.org/sources/gnome-menus/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/gnome-menus/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: redhat-menus >= 7.8.9-2 BuildRequires: gamin-devel @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/gnome-menus %changelog +* Wed Jul 15 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 30 2009 Matthias Clasen 2.26.2-1 - Update to 2.26.2 - See http://download.gnome.org/sources/gnome-menus/2.26/gnome-menus-2.26.2.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-menus/devel/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 30 Jun 2009 23:31:08 -0000 1.55 +++ sources 15 Jul 2009 16:04:03 -0000 1.56 @@ -1 +1 @@ -23a7375dd20238184f2fcccc4d83846b gnome-menus-2.26.2.tar.bz2 +06cc8bc1a2f740bafa7d91dd7e14089c gnome-menus-2.27.4.tar.bz2 From agk at fedoraproject.org Wed Jul 15 16:29:50 2009 From: agk at fedoraproject.org (agk) Date: Wed, 15 Jul 2009 16:29:50 +0000 (UTC) Subject: rpms/lvm2/devel LVM2.2.02.49.tgz.asc, NONE, 1.1 .cvsignore, 1.67, 1.68 lvm2.spec, 1.161, 1.162 sources, 1.71, 1.72 upstream, 1.60, 1.61 LVM2.2.02.48.tgz.asc, 1.1, NONE Message-ID: <20090715162950.3453811C00DF@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19383 Modified Files: .cvsignore lvm2.spec sources upstream Added Files: LVM2.2.02.49.tgz.asc Removed Files: LVM2.2.02.48.tgz.asc Log Message: new upstream development release --- NEW FILE LVM2.2.02.49.tgz.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQBKXfbkIoGRwVZ+LBcRAgOeAJwNx/oQvjy885nAKtZNRtGXrAXEFQCgi5r+ aNuWePQ3dPy6cwNMM/XcjcY= =q18o -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/.cvsignore,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- .cvsignore 1 Jul 2009 00:20:56 -0000 1.67 +++ .cvsignore 15 Jul 2009 16:29:49 -0000 1.68 @@ -1 +1 @@ -LVM2.2.02.48.tgz +LVM2.2.02.49.tgz Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- lvm2.spec 10 Jul 2009 04:48:37 -0000 1.161 +++ lvm2.spec 15 Jul 2009 16:29:49 -0000 1.162 @@ -1,4 +1,4 @@ -%define device_mapper_version 1.02.33 +%define device_mapper_version 1.02.34 %define corosync_version 1.0.0-1 %define clusterlib_version 3.0.0-20 @@ -7,7 +7,7 @@ Summary: Userland logical volume management tools Name: lvm2 -Version: 2.02.48 +Version: 2.02.49 Release: 1%{?dist} License: GPLv2 Group: System Environment/Base @@ -266,6 +266,24 @@ This package contains the device-mapper %changelog +* Wed Jul 15 2009 Alasdair Kergon - 2.02.49-1 +- Exclude VG_GLOBAL from vg_write_lock_held so scans open devs read-only again. +- Fix dev name mismatch in vgcreate man page example. +- Check md devices for a partition table during device scan. +- Add extended device (blkext) and md partition (mdp) types to filters. +- Make text metadata read errors for segment areas more precise. +- Fix text segment metadata read errors to mention correct segment name. +- Include segment and LV names in text segment import error messages. +- Fix memory leak in vgsplit when re-reading the vg. +- Permit several segment types to be registered by a single shared object. +- Update the man pages to document size units uniformly. +- Allow commandline sizes to be specified in terms of bytes and sectors. +- Update 'md_chunk_alignment' to use stripe-width to align PV data area. +- Fix segfault in vg_release when vg->cmd is NULL. +- Add dm_log_with_errno and dm_log_with_errno_init, deprecating the old fns. +- Fix whitespace in linear target line to fix identical table line detection. +- Add device number to more log messages during activation. + * Fri Jul 10 2009 Fabio M. Di Nitto 2.02.48-2 - BuildRequires and Requires on stable versions of both corosync-lib (1.0.0-1) and cluster-lib (3.0.0-20). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/sources,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- sources 1 Jul 2009 00:20:56 -0000 1.71 +++ sources 15 Jul 2009 16:29:49 -0000 1.72 @@ -1 +1 @@ -0d24c2709f439eeca36261e5cea68330 LVM2.2.02.48.tgz +7f2801ec7faec13dc7993b85486ec625 LVM2.2.02.49.tgz Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/upstream,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- upstream 1 Jul 2009 00:20:56 -0000 1.60 +++ upstream 15 Jul 2009 16:29:49 -0000 1.61 @@ -1 +1 @@ -LVM2.2.02.48.tgz +LVM2.2.02.49.tgz --- LVM2.2.02.48.tgz.asc DELETED --- From mbarnes at fedoraproject.org Wed Jul 15 16:41:40 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 16:41:40 +0000 (UTC) Subject: rpms/libsoup22/devel libsoup22.spec,1.4,1.5 Message-ID: <20090715164140.1B53511C00DF@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/libsoup22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21110 Modified Files: libsoup22.spec Log Message: fix typo Index: libsoup22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup22/devel/libsoup22.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libsoup22.spec 15 Jul 2009 16:25:12 -0000 1.4 +++ libsoup22.spec 15 Jul 2009 16:41:09 -0000 1.5 @@ -52,7 +52,7 @@ you to develop applications that use the %prep %setup -q -n libsoup-%{version} -%patch -p1 -b .dprintf-conflict +%patch1 -p1 -b .dprintf-conflict %build %configure From dwalsh at fedoraproject.org Wed Jul 15 16:44:41 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 15 Jul 2009 16:44:41 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.110, 1.111 setroubleshoot.spec, 1.145, 1.146 sources, 1.122, 1.123 Message-ID: <20090715164441.7053311C00DF@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21462 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Mon Jul 15 2009 Dan Walsh - 2.2.14-1 - Update to upstream 2009-7-15 Dan Walsh - Fix handling of syscall record a1 field - Translate "/" to mountpoint when returned by kernel Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- .cvsignore 7 Jul 2009 19:30:51 -0000 1.110 +++ .cvsignore 15 Jul 2009 16:44:10 -0000 1.111 @@ -27,3 +27,4 @@ setroubleshoot-2.2.10.tar.gz setroubleshoot-2.2.11.tar.gz setroubleshoot-2.2.12.tar.gz setroubleshoot-2.2.13.tar.gz +setroubleshoot-2.2.14.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- setroubleshoot.spec 7 Jul 2009 19:30:51 -0000 1.145 +++ setroubleshoot.spec 15 Jul 2009 16:44:11 -0000 1.146 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.13 +Version: 2.2.14 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,12 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Mon Jul 15 2009 Dan Walsh - 2.2.14-1 +- Update to upstream + 2009-7-15 Dan Walsh + - Fix handling of syscall record a1 field + - Translate "/" to mountpoint when returned by kernel + * Mon Jul 7 2009 Dan Walsh - 2.2.13-1 - Update to upstream 2009-7-07 Thomas Liu Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- sources 7 Jul 2009 19:30:51 -0000 1.122 +++ sources 15 Jul 2009 16:44:11 -0000 1.123 @@ -1 +1 @@ -ab245c3ab1305c6b2a390ea8309095c7 setroubleshoot-2.2.13.tar.gz +925a0d6f17cc1a8cb60e26086d6e7377 setroubleshoot-2.2.14.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 16:46:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:46:32 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up watchbugzilla Message-ID: <20090715164632.8DDF810F89C@bastion2.fedora.phx.redhat.com> timn has given up the watchbugzilla acl on NetworkManager-openvpn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 16:46:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:46:51 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up watchbugzilla Message-ID: <20090715164653.742B810F84C@bastion2.fedora.phx.redhat.com> timn has given up the watchbugzilla acl on NetworkManager-openvpn (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 16:46:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:46:53 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up watchbugzilla Message-ID: <20090715164653.CA13810F898@bastion2.fedora.phx.redhat.com> timn has given up the watchbugzilla acl on NetworkManager-openvpn (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 16:46:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:46:56 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up watchbugzilla Message-ID: <20090715164656.75E6610F8A5@bastion2.fedora.phx.redhat.com> timn has given up the watchbugzilla acl on NetworkManager-openvpn (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 16:46:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:46:58 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up watchbugzilla Message-ID: <20090715164658.9B41F10F8A9@bastion2.fedora.phx.redhat.com> timn has given up the watchbugzilla acl on NetworkManager-openvpn (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From rjones at fedoraproject.org Wed Jul 15 16:49:39 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 16:49:39 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.40, 1.41 libguestfs.spec, 1.75, 1.76 sources, 1.40, 1.41 Message-ID: <20090715164939.996E311C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22049 Modified Files: .cvsignore libguestfs.spec sources Log Message: - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 14 Jul 2009 15:31:18 -0000 1.40 +++ .cvsignore 15 Jul 2009 16:49:09 -0000 1.41 @@ -1 +1 @@ -libguestfs-1.0.60.tar.gz +libguestfs-1.0.61.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- libguestfs.spec 15 Jul 2009 11:31:14 -0000 1.75 +++ libguestfs.spec 15 Jul 2009 16:49:09 -0000 1.76 @@ -4,8 +4,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.60 -Release: 2%{?dist} +Version: 1.0.61 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -55,6 +55,7 @@ BuildRequires: perl-Test-Pod BuildRequires: perl-Test-Pod-Coverage BuildRequires: perl-ExtUtils-MakeMaker BuildRequires: perl-XML-Writer +BuildRequires: perl-libintl BuildRequires: python-devel BuildRequires: ruby-devel BuildRequires: rubygem-rake @@ -168,6 +169,19 @@ It is like the df(1) command, but for vi also works for Windows virtual machines. +%package -n virt-cat +Summary: Display a file in a virtual machine +Group: Development/Tools +License: GPLv2+ +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: perl-Sys-Virt + + +%description -n virt-cat +"virt-cat" is a command line tool to display the contents +of a file in a virtual machine. + + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries @@ -460,6 +474,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/virt-df.1* +%files -n virt-cat +%defattr(-,root,root,-) +%{_bindir}/virt-cat +%{_mandir}/man1/virt-cat.1* + + %files -n ocaml-%{name} %defattr(-,root,root,-) %doc README @@ -525,6 +545,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 +- New upstream release 1.0.61. +- New tool / subpackage 'virt-cat'. +- New BR perl-libintl. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 - Fix runtime Requires so they use epoch correctly. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 14 Jul 2009 15:31:18 -0000 1.40 +++ sources 15 Jul 2009 16:49:09 -0000 1.41 @@ -1 +1 @@ -978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz +615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz From mbarnes at fedoraproject.org Wed Jul 15 16:53:40 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 16:53:40 +0000 (UTC) Subject: rpms/libsoup22/devel libsoup-2.2.105-dprintf-conflict.patch, 1.1, 1.2 Message-ID: <20090715165340.8516D11C00DF@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/libsoup22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22610 Modified Files: libsoup-2.2.105-dprintf-conflict.patch Log Message: Finish patch. libsoup-2.2.105-dprintf-conflict.patch: Index: libsoup-2.2.105-dprintf-conflict.patch =================================================================== RCS file: /cvs/pkgs/rpms/libsoup22/devel/libsoup-2.2.105-dprintf-conflict.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libsoup-2.2.105-dprintf-conflict.patch 15 Jul 2009 16:25:12 -0000 1.1 +++ libsoup-2.2.105-dprintf-conflict.patch 15 Jul 2009 16:53:40 -0000 1.2 @@ -1,3 +1,131 @@ +diff -up libsoup-2.2.105/tests/auth-test.c.dprintf-conflict libsoup-2.2.105/tests/auth-test.c +--- libsoup-2.2.105/tests/auth-test.c.dprintf-conflict 2009-07-15 12:51:34.000000000 -0400 ++++ libsoup-2.2.105/tests/auth-test.c 2009-07-15 12:52:32.000000000 -0400 +@@ -19,7 +19,7 @@ int errors = 0; + gboolean debug = FALSE; + + static void +-dprintf (const char *format, ...) ++debug_printf (const char *format, ...) + { + va_list args; + +@@ -216,18 +216,18 @@ handler (SoupMessage *msg, gpointer data + + auth = identify_auth (msg); + +- dprintf (" %d %s (using %s)\n", msg->status_code, msg->reason_phrase, ++ debug_printf (" %d %s (using %s)\n", msg->status_code, msg->reason_phrase, + auths[auth]); + + if (*expected) { + exp = *expected - '0'; + if (auth != exp) { +- dprintf (" expected %s!\n", auths[exp]); ++ debug_printf (" expected %s!\n", auths[exp]); + errors++; + } + memmove (expected, expected + 1, strlen (expected)); + } else { +- dprintf (" expected to be finished\n"); ++ debug_printf (" expected to be finished\n"); + errors++; + } + } +@@ -266,10 +266,10 @@ bug271540_sent (SoupMessage *msg, gpoint + int auth = identify_auth (msg); + + if (!*authenticated && auth) { +- dprintf (" using auth on message %d before authenticating!!??\n", n); ++ debug_printf (" using auth on message %d before authenticating!!??\n", n); + errors++; + } else if (*authenticated && !auth) { +- dprintf (" sent unauthenticated message %d after authenticating!\n", n); ++ debug_printf (" sent unauthenticated message %d after authenticating!\n", n); + errors++; + } + } +@@ -287,12 +287,12 @@ bug271540_authenticate (SoupSession *ses + return; + + if (!*authenticated) { +- dprintf (" authenticating message %d\n", n); ++ debug_printf (" authenticating message %d\n", n); + *username = g_strdup ("user1"); + *password = g_strdup ("realm1"); + *authenticated = TRUE; + } else { +- dprintf (" asked to authenticate message %d after authenticating!\n", n); ++ debug_printf (" asked to authenticate message %d after authenticating!\n", n); + errors++; + } + } +@@ -304,7 +304,7 @@ bug271540_finished (SoupMessage *msg, gp + int n = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (msg), "#")); + + if (!SOUP_STATUS_IS_SUCCESSFUL (msg->status_code)) { +- dprintf (" got status '%d %s' on message %d!\n", ++ debug_printf (" got status '%d %s' on message %d!\n", + msg->status_code, msg->reason_phrase, n); + errors++; + } +@@ -350,10 +350,10 @@ main (int argc, char **argv) + G_CALLBACK (reauthenticate), &i); + + for (i = 0; i < ntests; i++) { +- dprintf ("Test %d: %s\n", i + 1, tests[i].explanation); ++ debug_printf ("Test %d: %s\n", i + 1, tests[i].explanation); + + uri = g_strconcat (base_uri, tests[i].url, NULL); +- dprintf (" GET %s\n", uri); ++ debug_printf (" GET %s\n", uri); + + msg = soup_message_new (SOUP_METHOD_GET, uri); + g_free (uri); +@@ -372,21 +372,21 @@ main (int argc, char **argv) + soup_session_send_message (session, msg); + if (msg->status_code != SOUP_STATUS_UNAUTHORIZED && + msg->status_code != SOUP_STATUS_OK) { +- dprintf (" %d %s !\n", msg->status_code, ++ debug_printf (" %d %s !\n", msg->status_code, + msg->reason_phrase); + errors++; + } + if (*expected) { +- dprintf (" expected %d more round(s)\n", ++ debug_printf (" expected %d more round(s)\n", + (int)strlen (expected)); + errors++; + } + g_free (expected); + + if (msg->status_code != tests[i].final_status) +- dprintf (" expected %d\n", tests[i].final_status); ++ debug_printf (" expected %d\n", tests[i].final_status); + +- dprintf ("\n"); ++ debug_printf ("\n"); + + g_object_unref (msg); + } +@@ -395,7 +395,7 @@ main (int argc, char **argv) + + /* And now for a regression test */ + +- dprintf ("Regression test for bug 271540:\n"); ++ debug_printf ("Regression test for bug 271540:\n"); + session = soup_session_async_new (); + + authenticated = FALSE; +@@ -424,7 +424,7 @@ main (int argc, char **argv) + + apache_cleanup (); + +- dprintf ("\n"); ++ debug_printf ("\n"); + if (errors) { + printf ("auth-test: %d error(s). Run with '-d' for details\n", + errors); diff -up libsoup-2.2.105/tests/context-test.c.dprintf-conflict libsoup-2.2.105/tests/context-test.c --- libsoup-2.2.105/tests/context-test.c.dprintf-conflict 2009-07-15 12:21:30.000000000 -0400 +++ libsoup-2.2.105/tests/context-test.c 2009-07-15 12:21:51.000000000 -0400 @@ -99,3 +227,958 @@ diff -up libsoup-2.2.105/tests/context-t if (errors) { printf ("context-test: %d error(s). Run with '-d' for details\n", errors); +diff -up libsoup-2.2.105/tests/header-parsing.c.dprintf-conflict libsoup-2.2.105/tests/header-parsing.c +--- libsoup-2.2.105/tests/header-parsing.c.dprintf-conflict 2009-07-15 12:51:19.000000000 -0400 ++++ libsoup-2.2.105/tests/header-parsing.c 2009-07-15 12:52:16.000000000 -0400 +@@ -10,7 +10,7 @@ + gboolean debug = FALSE; + + static void +-dprintf (const char *format, ...) ++debug_printf (const char *format, ...) + { + va_list args; + +@@ -455,7 +455,7 @@ static void + print_header (gpointer key, gpointer value, gpointer data) + { + GSList *values = value; +- dprintf (" '%s': '%s'\n", ++ debug_printf (" '%s': '%s'\n", + (char *)key, (char*)values->data); + } + +@@ -480,11 +480,11 @@ do_request_tests (void) + SoupHttpVersion version; + GHashTable *headers; + +- dprintf ("Request tests\n"); ++ debug_printf ("Request tests\n"); + for (i = 0; i < 1; i++) { + gboolean ok = TRUE; + +- dprintf ("%2d. %s (%s): ", i + 1, reqtests[i].description, ++ debug_printf ("%2d. %s (%s): ", i + 1, reqtests[i].description, + reqtests[i].method ? "should parse" : "should NOT parse"); + + headers = g_hash_table_new_full (g_str_hash, g_str_equal, +@@ -519,34 +519,34 @@ do_request_tests (void) + } + + if (ok) +- dprintf ("OK!\n"); ++ debug_printf ("OK!\n"); + else { +- dprintf ("BAD!\n"); ++ debug_printf ("BAD!\n"); + errors++; + if (reqtests[i].method) { +- dprintf (" expected: '%s' '%s' 'HTTP/1.%d'\n", ++ debug_printf (" expected: '%s' '%s' 'HTTP/1.%d'\n", + reqtests[i].method, reqtests[i].path, + reqtests[i].version); + for (h = 0; reqtests[i].headers[h].name; h++) { +- dprintf (" '%s': '%s'\n", ++ debug_printf (" '%s': '%s'\n", + reqtests[i].headers[h].name, + reqtests[i].headers[h].value); + } + } else +- dprintf (" expected: parse error\n"); ++ debug_printf (" expected: parse error\n"); + if (method) { +- dprintf (" got: '%s' '%s' 'HTTP/1.%d'\n", ++ debug_printf (" got: '%s' '%s' 'HTTP/1.%d'\n", + method, path, version); + g_hash_table_foreach (headers, print_header, NULL); + } else +- dprintf (" got: parse error\n"); ++ debug_printf (" got: parse error\n"); + } + + g_free (method); + g_free (path); + g_hash_table_destroy (headers); + } +- dprintf ("\n"); ++ debug_printf ("\n"); + + return errors; + } +@@ -561,11 +561,11 @@ do_response_tests (void) + SoupHttpVersion version; + GHashTable *headers; + +- dprintf ("Response tests\n"); ++ debug_printf ("Response tests\n"); + for (i = 0; i < num_resptests; i++) { + gboolean ok = TRUE; + +- dprintf ("%2d. %s (%s): ", i + 1, resptests[i].description, ++ debug_printf ("%2d. %s (%s): ", i + 1, resptests[i].description, + resptests[i].reason_phrase ? "should parse" : "should NOT parse"); + + headers = g_hash_table_new_full (g_str_hash, g_str_equal, +@@ -600,34 +600,34 @@ do_response_tests (void) + } + + if (ok) +- dprintf ("OK!\n"); ++ debug_printf ("OK!\n"); + else { +- dprintf ("BAD!\n"); ++ debug_printf ("BAD!\n"); + errors++; + if (resptests[i].reason_phrase) { +- dprintf (" expected: 'HTTP/1.%d' '%03d' '%s'\n", ++ debug_printf (" expected: 'HTTP/1.%d' '%03d' '%s'\n", + resptests[i].version, + resptests[i].status_code, + resptests[i].reason_phrase); + for (h = 0; resptests[i].headers[h].name; h++) { +- dprintf (" '%s': '%s'\n", ++ debug_printf (" '%s': '%s'\n", + resptests[i].headers[h].name, + resptests[i].headers[h].value); + } + } else +- dprintf (" expected: parse error\n"); ++ debug_printf (" expected: parse error\n"); + if (reason_phrase) { +- dprintf (" got: 'HTTP/1.%d' '%03d' '%s'\n", ++ debug_printf (" got: 'HTTP/1.%d' '%03d' '%s'\n", + version, status_code, reason_phrase); + g_hash_table_foreach (headers, print_header, NULL); + } else +- dprintf (" got: parse error\n"); ++ debug_printf (" got: parse error\n"); + } + + g_free (reason_phrase); + g_hash_table_destroy (headers); + } +- dprintf ("\n"); ++ debug_printf ("\n"); + + return errors; + } +@@ -651,7 +651,7 @@ main (int argc, char **argv) + errors = do_request_tests (); + errors += do_response_tests (); + +- dprintf ("\n"); ++ debug_printf ("\n"); + if (errors) { + printf ("header-parsing: %d error(s). Run with '-d' for details\n", + errors); +diff -up libsoup-2.2.105/tests/ntlm-test.c.dprintf-conflict libsoup-2.2.105/tests/ntlm-test.c +--- libsoup-2.2.105/tests/ntlm-test.c.dprintf-conflict 2009-07-15 12:51:05.000000000 -0400 ++++ libsoup-2.2.105/tests/ntlm-test.c 2009-07-15 12:52:09.000000000 -0400 +@@ -29,7 +29,7 @@ + gboolean debug = FALSE; + + static void +-dprintf (const char *format, ...) ++debug_printf (const char *format, ...) + { + va_list args; + +@@ -219,58 +219,58 @@ do_message (SoupSession *session, SoupUr + G_CALLBACK (ntlm_response_check), &state); + + soup_session_send_message (session, msg); +- dprintf (" %-10s -> ", path); ++ debug_printf (" %-10s -> ", path); + + if (state.got_prompt) { +- dprintf (" PROMPT"); ++ debug_printf (" PROMPT"); + if (!get_prompt) { +- dprintf ("???"); ++ debug_printf ("???"); + errors++; + } + } else if (get_prompt) { +- dprintf (" no-prompt???"); ++ debug_printf (" no-prompt???"); + errors++; + } + + if (state.sent_request) { +- dprintf (" REQUEST"); ++ debug_printf (" REQUEST"); + if (!do_ntlm) { +- dprintf ("???"); ++ debug_printf ("???"); + errors++; + } + } else if (do_ntlm) { +- dprintf (" no-request???"); ++ debug_printf (" no-request???"); + errors++; + } + + if (state.got_challenge) { +- dprintf (" CHALLENGE"); ++ debug_printf (" CHALLENGE"); + if (!do_ntlm) { +- dprintf ("???"); ++ debug_printf ("???"); + errors++; + } + } else if (do_ntlm) { +- dprintf (" no-challenge???"); ++ debug_printf (" no-challenge???"); + errors++; + } + + if (state.sent_response) { +- dprintf (" RESPONSE"); ++ debug_printf (" RESPONSE"); + if (!do_ntlm) { +- dprintf ("???"); ++ debug_printf ("???"); + errors++; + } + } else if (do_ntlm) { +- dprintf (" no-response???"); ++ debug_printf (" no-response???"); + errors++; + } + +- dprintf (" -> %s", msg->reason_phrase); ++ debug_printf (" -> %s", msg->reason_phrase); + if (msg->status_code != status_code) { +- dprintf ("???"); ++ debug_printf ("???"); + errors++; + } +- dprintf ("\n"); ++ debug_printf ("\n"); + + g_object_unref (msg); + return errors; +@@ -327,11 +327,11 @@ do_ntlm_tests (SoupUri *base_uri) + { + int errors = 0; + +- dprintf ("Round 1: Non-NTLM Connection\n"); ++ debug_printf ("Round 1: Non-NTLM Connection\n"); + errors += do_ntlm_round (base_uri, NULL); +- dprintf ("Round 2: NTLM Connection, user=alice\n"); ++ debug_printf ("Round 2: NTLM Connection, user=alice\n"); + errors += do_ntlm_round (base_uri, "alice"); +- dprintf ("Round 3: NTLM Connection, user=bob\n"); ++ debug_printf ("Round 3: NTLM Connection, user=bob\n"); + errors += do_ntlm_round (base_uri, "bob"); + + return errors; +@@ -397,7 +397,7 @@ main (int argc, char **argv) + g_hash_table_destroy (connections); + g_main_context_unref (g_main_context_default ()); + +- dprintf ("\n"); ++ debug_printf ("\n"); + if (errors) { + printf ("ntlm-test: %d error(s). Run with '-d' for details\n", + errors); +diff -up libsoup-2.2.105/tests/proxy-test.c.dprintf-conflict libsoup-2.2.105/tests/proxy-test.c +--- libsoup-2.2.105/tests/proxy-test.c.dprintf-conflict 2009-07-15 12:51:26.000000000 -0400 ++++ libsoup-2.2.105/tests/proxy-test.c 2009-07-15 12:52:27.000000000 -0400 +@@ -14,7 +14,7 @@ int errors = 0; + gboolean debug = FALSE; + + static void +-dprintf (const char *format, ...) ++debug_printf (const char *format, ...) + { + va_list args; + +@@ -76,7 +76,7 @@ test_url (const char *url, int proxy, gu + SoupUri *proxy_uri; + SoupMessage *msg; + +- dprintf (" GET %s via %s\n", url, proxy_names[proxy]); ++ debug_printf (" GET %s via %s\n", url, proxy_names[proxy]); + if (proxy == UNAUTH_PROXY && expected != SOUP_STATUS_FORBIDDEN) + expected = SOUP_STATUS_PROXY_UNAUTHORIZED; + +@@ -99,9 +99,9 @@ test_url (const char *url, int proxy, gu + + soup_session_send_message (session, msg); + +- dprintf (" %d %s\n", msg->status_code, msg->reason_phrase); ++ debug_printf (" %d %s\n", msg->status_code, msg->reason_phrase); + if (msg->status_code != expected) { +- dprintf (" EXPECTED %d!\n", expected); ++ debug_printf (" EXPECTED %d!\n", expected); + errors++; + } + +@@ -115,7 +115,7 @@ run_test (int i, gboolean sync) + { + char *http_url, *https_url; + +- dprintf ("Test %d: %s (%s)\n", i + 1, tests[i].explanation, ++ debug_printf ("Test %d: %s (%s)\n", i + 1, tests[i].explanation, + sync ? "sync" : "async"); + + if (!strncmp (tests[i].url, "http", 4)) { +@@ -141,7 +141,7 @@ run_test (int i, gboolean sync) + g_free (http_url); + g_free (https_url); + +- dprintf ("\n"); ++ debug_printf ("\n"); + } + + int +@@ -176,7 +176,7 @@ main (int argc, char **argv) + apache_cleanup (); + g_main_context_unref (g_main_context_default ()); + +- dprintf ("\n"); ++ debug_printf ("\n"); + if (errors) { + printf ("proxy-test: %d error(s). Run with '-d' for details\n", + errors); +diff -up libsoup-2.2.105/tests/pull-api.c.dprintf-conflict libsoup-2.2.105/tests/pull-api.c +--- libsoup-2.2.105/tests/pull-api.c.dprintf-conflict 2009-07-15 12:51:13.000000000 -0400 ++++ libsoup-2.2.105/tests/pull-api.c 2009-07-15 12:52:12.000000000 -0400 +@@ -19,7 +19,7 @@ char *correct_response; + guint correct_response_len; + + static void +-dprintf (int level, const char *format, ...) ++debug_printf (int level, const char *format, ...) + { + va_list args; + +@@ -98,7 +98,7 @@ do_fully_async_test (SoupSession *sessio + loop = g_main_loop_new (NULL, FALSE); + + uri = g_build_filename (base_uri, sub_uri, NULL); +- dprintf (1, "GET %s\n", uri); ++ debug_printf (1, "GET %s\n", uri); + + msg = soup_message_new (SOUP_METHOD_GET, uri); + g_free (uri); +@@ -152,10 +152,10 @@ fully_async_request_chunk (gpointer user + FullyAsyncData *ad = user_data; + + if (!ad->did_first_timeout) { +- dprintf (1, " first timeout\n"); ++ debug_printf (1, " first timeout\n"); + ad->did_first_timeout = TRUE; + } else +- dprintf (2, " timeout\n"); ++ debug_printf (2, " timeout\n"); + ad->timeout = 0; + + /* ad->chunks_ready and ad->chunk_wanted are used because +@@ -180,14 +180,14 @@ fully_async_got_headers (SoupMessage *ms + { + FullyAsyncData *ad = user_data; + +- dprintf (1, " %d %s\n", msg->status_code, msg->reason_phrase); ++ debug_printf (1, " %d %s\n", msg->status_code, msg->reason_phrase); + if (msg->status_code == SOUP_STATUS_UNAUTHORIZED) { + /* Let soup handle this one; this got_headers handler + * will get called again next time around. + */ + return; + } else if (msg->status_code != SOUP_STATUS_OK) { +- dprintf (1, " unexpected status: %d %s\n", ++ debug_printf (1, " unexpected status: %d %s\n", + msg->status_code, msg->reason_phrase); + errors++; + return; +@@ -210,7 +210,7 @@ fully_async_got_chunk (SoupMessage *msg, + { + FullyAsyncData *ad = user_data; + +- dprintf (2, " got chunk from %lu - %lu\n", ++ debug_printf (2, " got chunk from %lu - %lu\n", + (unsigned long) ad->read_so_far, + (unsigned long) ad->read_so_far + msg->response.length); + +@@ -227,13 +227,13 @@ fully_async_got_chunk (SoupMessage *msg, + * somewhere. + */ + if (ad->read_so_far + msg->response.length > correct_response_len) { +- dprintf (1, " read too far! (%lu > %lu)\n", ++ debug_printf (1, " read too far! (%lu > %lu)\n", + (unsigned long) (ad->read_so_far + msg->response.length), + (unsigned long) correct_response_len); + errors++; + } else if (memcmp (msg->response.body, correct_response + ad->read_so_far, + msg->response.length) != 0) { +- dprintf (1, " data mismatch in block starting at %lu\n", ++ debug_printf (1, " data mismatch in block starting at %lu\n", + (unsigned long) ad->read_so_far); + errors++; + } +@@ -257,7 +257,7 @@ fully_async_finished (SoupMessage *msg, + FullyAsyncData *ad = user_data; + + if (msg->status_code != ad->expected_status) { +- dprintf (1, " unexpected final status: %d %s !\n", ++ debug_printf (1, " unexpected final status: %d %s !\n", + msg->status_code, msg->reason_phrase); + errors++; + } +@@ -300,7 +300,7 @@ do_synchronously_async_test (SoupSession + GByteArray *chunk; + + uri = g_build_filename (base_uri, sub_uri, NULL); +- dprintf (1, "GET %s\n", uri); ++ debug_printf (1, "GET %s\n", uri); + + msg = soup_message_new (SOUP_METHOD_GET, uri); + g_free (uri); +@@ -314,11 +314,11 @@ do_synchronously_async_test (SoupSession + sync_async_send (session, msg); + if (msg->status == SOUP_MESSAGE_STATUS_FINISHED && + expected_status == SOUP_STATUS_OK) { +- dprintf (1, " finished without reading response!\n"); ++ debug_printf (1, " finished without reading response!\n"); + errors++; + } else if (msg->status != SOUP_MESSAGE_STATUS_FINISHED && + expected_status != SOUP_STATUS_OK) { +- dprintf (1, " request failed to fail!\n"); ++ debug_printf (1, " request failed to fail!\n"); + errors++; + } + +@@ -327,19 +327,19 @@ do_synchronously_async_test (SoupSession + */ + read_so_far = 0; + while ((chunk = sync_async_read_chunk (msg))) { +- dprintf (2, " read chunk from %lu - %lu\n", ++ debug_printf (2, " read chunk from %lu - %lu\n", + (unsigned long) read_so_far, + (unsigned long) read_so_far + chunk->len); + + if (read_so_far + chunk->len > correct_response_len) { +- dprintf (1, " read too far! (%lu > %lu)\n", ++ debug_printf (1, " read too far! (%lu > %lu)\n", + (unsigned long) read_so_far + chunk->len, + (unsigned long) correct_response_len); + errors++; + } else if (memcmp (chunk->data, + correct_response + read_so_far, + chunk->len) != 0) { +- dprintf (1, " data mismatch in block starting at %lu\n", ++ debug_printf (1, " data mismatch in block starting at %lu\n", + (unsigned long) read_so_far); + errors++; + } +@@ -350,10 +350,10 @@ do_synchronously_async_test (SoupSession + if (msg->status != SOUP_MESSAGE_STATUS_FINISHED || + (msg->status_code == SOUP_STATUS_OK && + read_so_far != correct_response_len)) { +- dprintf (1, " loop ended before message was fully read!\n"); ++ debug_printf (1, " loop ended before message was fully read!\n"); + errors++; + } else if (msg->status_code != expected_status) { +- dprintf (1, " unexpected final status: %d %s !\n", ++ debug_printf (1, " unexpected final status: %d %s !\n", + msg->status_code, msg->reason_phrase); + errors++; + } +@@ -413,14 +413,14 @@ sync_async_got_headers (SoupMessage *msg + { + SyncAsyncData *ad = user_data; + +- dprintf (1, " %d %s\n", msg->status_code, msg->reason_phrase); ++ debug_printf (1, " %d %s\n", msg->status_code, msg->reason_phrase); + if (msg->status_code == SOUP_STATUS_UNAUTHORIZED) { + /* Let soup handle this one; this got_headers handler + * will get called again next time around. + */ + return; + } else if (msg->status_code != SOUP_STATUS_OK) { +- dprintf (1, " unexpected status: %d %s\n", ++ debug_printf (1, " unexpected status: %d %s\n", + msg->status_code, msg->reason_phrase); + errors++; + return; +@@ -526,7 +526,7 @@ main (int argc, char **argv) + base_uri = "http://localhost:47524/"; + get_correct_response (base_uri); + +- dprintf (1, "\nFully async, fast requests\n"); ++ debug_printf (1, "\nFully async, fast requests\n"); + session = soup_session_async_new (); + g_signal_connect (session, "authenticate", + G_CALLBACK (authenticate), NULL); +@@ -539,7 +539,7 @@ main (int argc, char **argv) + soup_session_abort (session); + g_object_unref (session); + +- dprintf (1, "\nFully async, slow requests\n"); ++ debug_printf (1, "\nFully async, slow requests\n"); + session = soup_session_async_new (); + g_signal_connect (session, "authenticate", + G_CALLBACK (authenticate), NULL); +@@ -552,7 +552,7 @@ main (int argc, char **argv) + soup_session_abort (session); + g_object_unref (session); + +- dprintf (1, "\nSynchronously async\n"); ++ debug_printf (1, "\nSynchronously async\n"); + session = soup_session_async_new (); + g_signal_connect (session, "authenticate", + G_CALLBACK (authenticate), NULL); +@@ -571,7 +571,7 @@ main (int argc, char **argv) + apache_cleanup (); + g_main_context_unref (g_main_context_default ()); + +- dprintf (1, "\n"); ++ debug_printf (1, "\n"); + if (errors) { + printf ("pull-api: %d error(s). Run with '-d' for details\n", + errors); +diff -up libsoup-2.2.105/tests/uri-parsing.c.dprintf-conflict libsoup-2.2.105/tests/uri-parsing.c +--- libsoup-2.2.105/tests/uri-parsing.c.dprintf-conflict 2009-07-15 12:51:40.000000000 -0400 ++++ libsoup-2.2.105/tests/uri-parsing.c 2009-07-15 12:52:36.000000000 -0400 +@@ -10,7 +10,7 @@ + gboolean debug = FALSE; + + static void +-dprintf (const char *format, ...) ++debug_printf (const char *format, ...) + { + va_list args; + +@@ -113,21 +113,21 @@ do_uri (SoupUri *base_uri, const char *b + char *uri_string; + + if (base_uri) { +- dprintf ("<%s> + <%s> = <%s>? ", base_str, in_uri, ++ debug_printf ("<%s> + <%s> = <%s>? ", base_str, in_uri, + out_uri ? out_uri : "ERR"); + uri = soup_uri_new_with_base (base_uri, in_uri); + } else { +- dprintf ("<%s> => <%s>? ", in_uri, ++ debug_printf ("<%s> => <%s>? ", in_uri, + out_uri ? out_uri : "ERR"); + uri = soup_uri_new (in_uri); + } + + if (!uri) { + if (out_uri) { +- dprintf ("ERR\n Could not parse %s\n", in_uri); ++ debug_printf ("ERR\n Could not parse %s\n", in_uri); + return FALSE; + } else { +- dprintf ("OK\n"); ++ debug_printf ("OK\n"); + return TRUE; + } + } +@@ -136,18 +136,18 @@ do_uri (SoupUri *base_uri, const char *b + soup_uri_free (uri); + + if (!out_uri) { +- dprintf ("ERR\n Got %s\n", uri_string); ++ debug_printf ("ERR\n Got %s\n", uri_string); + return FALSE; + } + + if (strcmp (uri_string, out_uri) != 0) { +- dprintf ("NO\n Unparses to <%s>\n", uri_string); ++ debug_printf ("NO\n Unparses to <%s>\n", uri_string); + g_free (uri_string); + return FALSE; + } + g_free (uri_string); + +- dprintf ("OK\n"); ++ debug_printf ("OK\n"); + return TRUE; + } + +@@ -169,14 +169,14 @@ main (int argc, char **argv) + } + } + +- dprintf ("Absolute URI parsing\n"); ++ debug_printf ("Absolute URI parsing\n"); + for (i = 0; i < num_abs_tests; i++) { + if (!do_uri (NULL, NULL, abs_tests[i].uri_string, + abs_tests[i].result)) + errs++; + } + +- dprintf ("\nRelative URI parsing\n"); ++ debug_printf ("\nRelative URI parsing\n"); + base_uri = soup_uri_new (base); + if (!base_uri) { + fprintf (stderr, "Could not parse %s!\n", base); +@@ -198,7 +198,7 @@ main (int argc, char **argv) + } + soup_uri_free (base_uri); + +- dprintf ("\n"); ++ debug_printf ("\n"); + if (errs) { + printf ("uri-parsing: %d error(s). Run with '-d' for details\n", + errs); +diff -up libsoup-2.2.105/tests/xmlrpc-test.c.dprintf-conflict libsoup-2.2.105/tests/xmlrpc-test.c +--- libsoup-2.2.105/tests/xmlrpc-test.c.dprintf-conflict 2009-07-15 12:51:48.000000000 -0400 ++++ libsoup-2.2.105/tests/xmlrpc-test.c 2009-07-15 12:52:39.000000000 -0400 +@@ -19,7 +19,7 @@ static const char *uri = "http://localho + int debug; + + static void +-dprintf (int level, const char *format, ...) ++debug_printf (int level, const char *format, ...) + { + va_list args; + +@@ -54,13 +54,13 @@ do_xmlrpc (SoupXmlrpcMessage *xmsg, Soup + soup_xmlrpc_message_persist (xmsg); + status = soup_session_send_message (session, msg); + +- dprintf (3, "\n%.*s\n%d %s\n%.*s\n", ++ debug_printf (3, "\n%.*s\n%d %s\n%.*s\n", + msg->request.length, msg->request.body, + msg->status_code, msg->reason_phrase, + msg->response.length, msg->response.body); + + if (!SOUP_STATUS_IS_SUCCESSFUL (status)) { +- dprintf (1, "ERROR: %d %s\n", status, msg->reason_phrase); ++ debug_printf (1, "ERROR: %d %s\n", status, msg->reason_phrase); + g_object_unref (msg); + return FALSE; + } +@@ -69,9 +69,9 @@ do_xmlrpc (SoupXmlrpcMessage *xmsg, Soup + g_object_unref (msg); + if (!response || soup_xmlrpc_response_is_fault (response)) { + if (!response) +- dprintf (1, "ERROR: no response\n"); ++ debug_printf (1, "ERROR: no response\n"); + else { +- dprintf (1, "ERROR: fault\n"); ++ debug_printf (1, "ERROR: fault\n"); + g_object_unref (response); + } + return FALSE; +@@ -79,11 +79,11 @@ do_xmlrpc (SoupXmlrpcMessage *xmsg, Soup + + value = soup_xmlrpc_response_get_value (response); + if (!value) { +- dprintf (1, "ERROR: no value?\n"); ++ debug_printf (1, "ERROR: no value?\n"); + g_object_unref (response); + return NULL; + } else if (soup_xmlrpc_value_get_type (value) != type) { +- dprintf (1, "ERROR: wrong value type; expected %s, got %s\n", ++ debug_printf (1, "ERROR: wrong value type; expected %s, got %s\n", + value_type[type], value_type[soup_xmlrpc_value_get_type (value)]); + g_object_unref (response); + return NULL; +@@ -101,7 +101,7 @@ test_sum (void) + int i, val, sum; + long result; + +- dprintf (1, "sum (array of int -> int): "); ++ debug_printf (1, "sum (array of int -> int): "); + + msg = soup_xmlrpc_message_new (uri); + soup_xmlrpc_message_start_call (msg, "sum"); +@@ -109,11 +109,11 @@ test_sum (void) + soup_xmlrpc_message_start_array (msg); + for (i = sum = 0; i < 10; i++) { + val = rand () % 100; +- dprintf (2, "%s%d", i == 0 ? "[" : ", ", val); ++ debug_printf (2, "%s%d", i == 0 ? "[" : ", ", val); + soup_xmlrpc_message_write_int (msg, val); + sum += val; + } +- dprintf (2, "] -> "); ++ debug_printf (2, "] -> "); + soup_xmlrpc_message_end_array (msg); + soup_xmlrpc_message_end_param (msg); + soup_xmlrpc_message_end_call (msg); +@@ -124,14 +124,14 @@ test_sum (void) + value = soup_xmlrpc_response_get_value (response); + + if (!soup_xmlrpc_value_get_int (value, &result)) { +- dprintf (1, "wrong type?\n"); ++ debug_printf (1, "wrong type?\n"); + g_object_unref (response); + return FALSE; + } + g_object_unref (response); + +- dprintf (2, "%ld: ", result); +- dprintf (1, "%s\n", result == sum ? "OK!" : "WRONG!"); ++ debug_printf (2, "%ld: ", result); ++ debug_printf (1, "%s\n", result == sum ? "OK!" : "WRONG!"); + return result == sum; + } + +@@ -146,7 +146,7 @@ test_countBools (void) + gboolean val, ok; + GHashTable *result; + +- dprintf (1, "countBools (array of boolean -> struct of ints): "); ++ debug_printf (1, "countBools (array of boolean -> struct of ints): "); + + msg = soup_xmlrpc_message_new (uri); + soup_xmlrpc_message_start_call (msg, "countBools"); +@@ -154,14 +154,14 @@ test_countBools (void) + soup_xmlrpc_message_start_array (msg); + for (i = trues = falses = 0; i < 10; i++) { + val = rand () > (RAND_MAX / 2); +- dprintf (2, "%s%c", i == 0 ? "[" : ", ", val ? 'T' : 'F'); ++ debug_printf (2, "%s%c", i == 0 ? "[" : ", ", val ? 'T' : 'F'); + soup_xmlrpc_message_write_boolean (msg, val); + if (val) + trues++; + else + falses++; + } +- dprintf (2, "] -> "); ++ debug_printf (2, "] -> "); + soup_xmlrpc_message_end_array (msg); + soup_xmlrpc_message_end_param (msg); + soup_xmlrpc_message_end_call (msg); +@@ -172,19 +172,19 @@ test_countBools (void) + value = soup_xmlrpc_response_get_value (response); + + if (!soup_xmlrpc_value_get_struct (value, &result)) { +- dprintf (1, "wrong type?\n"); ++ debug_printf (1, "wrong type?\n"); + g_object_unref (response); + return FALSE; + } + + if (!soup_xmlrpc_value_get_int (g_hash_table_lookup (result, "true"), &ret_trues)) { +- dprintf (1, "NO 'true' value in response\n"); ++ debug_printf (1, "NO 'true' value in response\n"); + g_hash_table_destroy (result); + g_object_unref (response); + return FALSE; + } + if (!soup_xmlrpc_value_get_int (g_hash_table_lookup (result, "false"), &ret_falses)) { +- dprintf (1, "NO 'false' value in response\n"); ++ debug_printf (1, "NO 'false' value in response\n"); + g_hash_table_destroy (result); + g_object_unref (response); + return FALSE; +@@ -192,9 +192,9 @@ test_countBools (void) + g_hash_table_destroy (result); + g_object_unref (response); + +- dprintf (2, "{ true: %ld, false: %ld } ", ret_trues, ret_falses); ++ debug_printf (2, "{ true: %ld, false: %ld } ", ret_trues, ret_falses); + ok = (trues == ret_trues) && (falses == ret_falses); +- dprintf (1, "%s\n", ok ? "OK!" : "WRONG!"); ++ debug_printf (1, "%s\n", ok ? "OK!" : "WRONG!"); + return ok; + } + +@@ -211,7 +211,7 @@ test_md5sum (void) + guchar digest[16]; + gboolean ok; + +- dprintf (1, "md5sum (base64 -> base64): "); ++ debug_printf (1, "md5sum (base64 -> base64): "); + + msg = soup_xmlrpc_message_new (uri); + soup_xmlrpc_message_start_call (msg, "md5sum"); +@@ -228,14 +228,14 @@ test_md5sum (void) + value = soup_xmlrpc_response_get_value (response); + + if (!soup_xmlrpc_value_get_base64 (value, &result)) { +- dprintf (1, "wrong type?\n"); ++ debug_printf (1, "wrong type?\n"); + g_object_unref (response); + return FALSE; + } + g_object_unref (response); + + if (result->len != 16) { +- dprintf (1, "result has WRONG length (%d)\n", result->len); ++ debug_printf (1, "result has WRONG length (%d)\n", result->len); + g_byte_array_free (result, TRUE); + return FALSE; + } +@@ -245,7 +245,7 @@ test_md5sum (void) + soup_md5_final (&md5, digest); + + ok = (memcmp (digest, result->data, 16) == 0); +- dprintf (1, "%s\n", ok ? "OK!" : "WRONG!"); ++ debug_printf (1, "%s\n", ok ? "OK!" : "WRONG!"); + g_byte_array_free (result, TRUE); + return ok; + } +@@ -260,7 +260,7 @@ test_dateChange (void) + time_t when, result; + char timestamp[128]; + +- dprintf (1, "dateChange (struct of time and ints -> time): "); ++ debug_printf (1, "dateChange (struct of time and ints -> time): "); + + msg = soup_xmlrpc_message_new (uri); + soup_xmlrpc_message_start_call (msg, "dateChange"); +@@ -281,53 +281,53 @@ test_dateChange (void) + + strftime (timestamp, sizeof (timestamp), + "%Y-%m-%dT%H:%M:%S", &tm); +- dprintf (2, "{ date: %s", timestamp); ++ debug_printf (2, "{ date: %s", timestamp); + + if (rand () % 3) { + tm.tm_year = 70 + (rand () % 50); +- dprintf (2, ", tm_year: %d", tm.tm_year); ++ debug_printf (2, ", tm_year: %d", tm.tm_year); + soup_xmlrpc_message_start_member (msg, "tm_year"); + soup_xmlrpc_message_write_int (msg, tm.tm_year); + soup_xmlrpc_message_end_member (msg); + } + if (rand () % 3) { + tm.tm_mon = rand () % 12; +- dprintf (2, ", tm_mon: %d", tm.tm_mon); ++ debug_printf (2, ", tm_mon: %d", tm.tm_mon); + soup_xmlrpc_message_start_member (msg, "tm_mon"); + soup_xmlrpc_message_write_int (msg, tm.tm_mon); + soup_xmlrpc_message_end_member (msg); + } + if (rand () % 3) { + tm.tm_mday = 1 + (rand () % 28); +- dprintf (2, ", tm_mday: %d", tm.tm_mday); ++ debug_printf (2, ", tm_mday: %d", tm.tm_mday); + soup_xmlrpc_message_start_member (msg, "tm_mday"); + soup_xmlrpc_message_write_int (msg, tm.tm_mday); + soup_xmlrpc_message_end_member (msg); + } + if (rand () % 3) { + tm.tm_hour = rand () % 24; +- dprintf (2, ", tm_hour: %d", tm.tm_hour); ++ debug_printf (2, ", tm_hour: %d", tm.tm_hour); + soup_xmlrpc_message_start_member (msg, "tm_hour"); + soup_xmlrpc_message_write_int (msg, tm.tm_hour); + soup_xmlrpc_message_end_member (msg); + } + if (rand () % 3) { + tm.tm_min = rand () % 60; +- dprintf (2, ", tm_min: %d", tm.tm_min); ++ debug_printf (2, ", tm_min: %d", tm.tm_min); + soup_xmlrpc_message_start_member (msg, "tm_min"); + soup_xmlrpc_message_write_int (msg, tm.tm_min); + soup_xmlrpc_message_end_member (msg); + } + if (rand () % 3) { + tm.tm_sec = rand () % 60; +- dprintf (2, ", tm_sec: %d", tm.tm_sec); ++ debug_printf (2, ", tm_sec: %d", tm.tm_sec); + soup_xmlrpc_message_start_member (msg, "tm_sec"); + soup_xmlrpc_message_write_int (msg, tm.tm_sec); + soup_xmlrpc_message_end_member (msg); + } + when = soup_mktime_utc (&tm); + +- dprintf (2, " } -> "); ++ debug_printf (2, " } -> "); + + soup_xmlrpc_message_end_struct (msg); + soup_xmlrpc_message_end_param (msg); +@@ -339,7 +339,7 @@ test_dateChange (void) + value = soup_xmlrpc_response_get_value (response); + + if (!soup_xmlrpc_value_get_datetime (value, &result)) { +- dprintf (1, "wrong type?\n"); ++ debug_printf (1, "wrong type?\n"); + g_object_unref (response); + return FALSE; + } +@@ -348,9 +348,9 @@ test_dateChange (void) + memset (&tm, 0, sizeof (tm)); + soup_gmtime (&result, &tm); + strftime (timestamp, sizeof (timestamp), "%Y-%m-%dT%H:%M:%S", &tm); +- dprintf (2, "%s: ", timestamp); ++ debug_printf (2, "%s: ", timestamp); + +- dprintf (1, "%s\n", (when == result) ? "OK!" : "WRONG!"); ++ debug_printf (1, "%s\n", (when == result) ? "OK!" : "WRONG!"); + return (when == result); + } + +@@ -372,17 +372,17 @@ test_echo (void) + char *echo; + int i; + +- dprintf (1, "echo (array of string -> array of string): "); ++ debug_printf (1, "echo (array of string -> array of string): "); + + msg = soup_xmlrpc_message_new (uri); + soup_xmlrpc_message_start_call (msg, "echo"); + soup_xmlrpc_message_start_param (msg); + soup_xmlrpc_message_start_array (msg); + for (i = 0; i < N_ECHO_STRINGS; i++) { +- dprintf (2, "%s\"%s\"", i == 0 ? "[" : ", ", echo_strings[i]); ++ debug_printf (2, "%s\"%s\"", i == 0 ? "[" : ", ", echo_strings[i]); + soup_xmlrpc_message_write_string (msg, echo_strings[i]); + } +- dprintf (2, "] -> "); ++ debug_printf (2, "] -> "); + soup_xmlrpc_message_end_array (msg); + soup_xmlrpc_message_end_param (msg); + soup_xmlrpc_message_end_call (msg); +@@ -393,25 +393,25 @@ test_echo (void) + value = soup_xmlrpc_response_get_value (response); + + if (!soup_xmlrpc_value_array_get_iterator (value, &iter)) { +- dprintf (1, "wrong type?\n"); ++ debug_printf (1, "wrong type?\n"); + g_object_unref (response); + return FALSE; + } + i = 0; + while (iter) { + if (!soup_xmlrpc_value_array_iterator_get_value (iter, &elt)) { +- dprintf (1, " WRONG! Can't get result element %d\n", i + 1); ++ debug_printf (1, " WRONG! Can't get result element %d\n", i + 1); + g_object_unref (response); + return FALSE; + } + if (!soup_xmlrpc_value_get_string (elt, &echo)) { +- dprintf (1, " WRONG! Result element %d is not a string", i + 1); ++ debug_printf (1, " WRONG! Result element %d is not a string", i + 1); + g_object_unref (response); + return FALSE; + } +- dprintf (2, "%s\"%s\"", i == 0 ? "[" : ", ", echo); ++ debug_printf (2, "%s\"%s\"", i == 0 ? "[" : ", ", echo); + if (strcmp (echo_strings[i], echo) != 0) { +- dprintf (1, " WRONG! Mismatch at %d\n", i + 1); ++ debug_printf (1, " WRONG! Mismatch at %d\n", i + 1); + g_free (echo); + g_object_unref (response); + return FALSE; +@@ -421,10 +421,10 @@ test_echo (void) + iter = soup_xmlrpc_value_array_iterator_next (iter); + i++; + } +- dprintf (2, "] "); ++ debug_printf (2, "] "); + g_object_unref (response); + +- dprintf (1, "%s\n", i == N_ECHO_STRINGS ? "OK!" : "WRONG! Too few results"); ++ debug_printf (1, "%s\n", i == N_ECHO_STRINGS ? "OK!" : "WRONG! Too few results"); + return i == N_ECHO_STRINGS; + } + +@@ -480,7 +480,7 @@ main (int argc, char **argv) + + apache_cleanup (); + +- dprintf (1, "\n"); ++ debug_printf (1, "\n"); + if (errors) { + printf ("xmlrpc-test: %d error(s). Run with '-d' for details\n", + errors); From rjones at fedoraproject.org Wed Jul 15 16:54:06 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 16:54:06 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.22, 1.23 libguestfs.spec, 1.42, 1.43 sources, 1.22, 1.23 Message-ID: <20090715165406.BA68B11C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22632 Modified Files: .cvsignore libguestfs.spec sources Log Message: - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 14 Jul 2009 15:31:20 -0000 1.22 +++ .cvsignore 15 Jul 2009 16:53:36 -0000 1.23 @@ -1 +1 @@ -libguestfs-1.0.60.tar.gz +libguestfs-1.0.61.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- libguestfs.spec 15 Jul 2009 11:31:10 -0000 1.42 +++ libguestfs.spec 15 Jul 2009 16:53:36 -0000 1.43 @@ -3,8 +3,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.60 -Release: 2%{?dist} +Version: 1.0.61 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -66,6 +66,7 @@ BuildRequires: perl-Test-Pod BuildRequires: perl-Test-Pod-Coverage #BuildRequires: perl-ExtUtils-MakeMaker BuildRequires: perl-XML-Writer +BuildRequires: perl-libintl BuildRequires: python-devel BuildRequires: ruby-devel BuildRequires: rubygem-rake @@ -165,6 +166,7 @@ scripts. #whether the virtual machine is fully virtualized (FV) or #para-virtualized (PV), what applications are installed and more. + #%package -n virt-df #Summary: Display free space on virtual filesystems #Group: Development/Tools @@ -183,6 +185,19 @@ scripts. #also works for Windows virtual machines. +#%package -n virt-cat +#Summary: Display a file in a virtual machine +#Group: Development/Tools +#License: GPLv2+ +#Requires: %{name} = %{epoch}:%{version}-%{release} +#Requires: perl-Sys-Virt +# +# +#%description -n virt-cat +#"virt-cat" is a command line tool to display the contents +#of a file in a virtual machine. + + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries @@ -447,6 +462,12 @@ rm -rf $RPM_BUILD_ROOT #%{_mandir}/man1/virt-df.1* +#%files -n virt-cat +#%defattr(-,root,root,-) +#%{_bindir}/virt-cat +#%{_mandir}/man1/virt-cat.1* + + %files -n ocaml-%{name} %defattr(-,root,root,-) %doc README @@ -512,6 +533,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 +- New upstream release 1.0.61. +- New tool / subpackage 'virt-cat'. +- New BR perl-libintl. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 - Fix runtime Requires so they use epoch correctly. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 14 Jul 2009 15:31:20 -0000 1.22 +++ sources 15 Jul 2009 16:53:36 -0000 1.23 @@ -1 +1 @@ -978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz +615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz From rjones at fedoraproject.org Wed Jul 15 16:54:16 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 16:54:16 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.28, 1.29 libguestfs.spec, 1.45, 1.46 sources, 1.28, 1.29 Message-ID: <20090715165416.0CD9A11C00DF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22667 Modified Files: .cvsignore libguestfs.spec sources Log Message: - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 14 Jul 2009 15:31:22 -0000 1.28 +++ .cvsignore 15 Jul 2009 16:53:45 -0000 1.29 @@ -1 +1 @@ -libguestfs-1.0.60.tar.gz +libguestfs-1.0.61.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- libguestfs.spec 15 Jul 2009 11:31:13 -0000 1.45 +++ libguestfs.spec 15 Jul 2009 16:53:45 -0000 1.46 @@ -4,8 +4,8 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.60 -Release: 2%{?dist} +Version: 1.0.61 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -55,6 +55,7 @@ BuildRequires: perl-Test-Pod BuildRequires: perl-Test-Pod-Coverage BuildRequires: perl-ExtUtils-MakeMaker BuildRequires: perl-XML-Writer +BuildRequires: perl-libintl BuildRequires: python-devel BuildRequires: ruby-devel BuildRequires: rubygem-rake @@ -170,6 +171,19 @@ It is like the df(1) command, but for vi also works for Windows virtual machines. +%package -n virt-cat +Summary: Display a file in a virtual machine +Group: Development/Tools +License: GPLv2+ +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: perl-Sys-Virt + + +%description -n virt-cat +"virt-cat" is a command line tool to display the contents +of a file in a virtual machine. + + %package -n ocaml-%{name} Summary: OCaml bindings for %{name} Group: Development/Libraries @@ -462,6 +476,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/virt-df.1* +%files -n virt-cat +%defattr(-,root,root,-) +%{_bindir}/virt-cat +%{_mandir}/man1/virt-cat.1* + + %files -n ocaml-%{name} %defattr(-,root,root,-) %doc README @@ -527,6 +547,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 +- New upstream release 1.0.61. +- New tool / subpackage 'virt-cat'. +- New BR perl-libintl. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 - Fix runtime Requires so they use epoch correctly. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 14 Jul 2009 15:31:22 -0000 1.28 +++ sources 15 Jul 2009 16:53:45 -0000 1.29 @@ -1 +1 @@ -978c4e451b3cbd935c2e3e4e24f3a546 libguestfs-1.0.60.tar.gz +615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz From mtasaka at fedoraproject.org Wed Jul 15 16:54:20 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 15 Jul 2009 16:54:20 +0000 (UTC) Subject: rpms/ruby-gnome2/F-11 ruby-gnome2.spec,1.41,1.42 Message-ID: <20090715165420.9DE6211C00DF@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22795/F-11 Modified Files: ruby-gnome2.spec Log Message: Apply ruby(opengl) Requires for gtkglext also to F-11/10 branches Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/F-11/ruby-gnome2.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- ruby-gnome2.spec 1 Jul 2009 02:11:32 -0000 1.41 +++ ruby-gnome2.spec 15 Jul 2009 16:54:20 -0000 1.42 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 2 +%define mainrel 3 # Note # Currently this spec file does not support libgda module. @@ -21,9 +21,13 @@ Group: System Environment/Libra License: LGPLv2 URL: http://ruby-gnome2.sourceforge.jp/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-all-%{version}.tar.gz +# Currently Fedora specific patch Patch0: ruby-gnome2-0.17.0-rc1-script.patch +# ruby-gnome2-Bugs-2815036 Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch +# ruby-gnome2-Bugs-2815036 Patch15: ruby-gnome2-0.19.0-panel-applet.patch +# ruby-gnome2-Bugs-2814953 Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -278,7 +282,7 @@ BuildRequires: ruby ruby-devel gtk2-dev #BuildRequires: ruby(glib2-devel) = %{version} ruby(gtk2-devel) = %{version} Requires: ruby(abi) = 1.8 -#Requires: OpenGL SEE README file for this +Requires: ruby(opengl) Requires: ruby(gtk2) = %{version}-%{release} Provides: ruby(gtkglext) = %{version}-%{release} @@ -726,7 +730,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jul 01 2009 Mamoru Tasaka - 0.19.0-2 +* Thu Jul 09 2009 Mamoru Tasaka - 0.19.0-3 +- Make ruby-gtkglext require ruby(opengl) + +* Wed Jul 01 2009 Mamoru Tasaka - 0.19.0-2 - Install more needed header files in ruby-gtk2-devel (bug 509035) - Keep timestamps on installed header files From mtasaka at fedoraproject.org Wed Jul 15 16:54:50 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 15 Jul 2009 16:54:50 +0000 (UTC) Subject: rpms/ruby-gnome2/F-10 ruby-gnome2.spec,1.44,1.45 Message-ID: <20090715165450.5A96111C00DF@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22795/F-10 Modified Files: ruby-gnome2.spec Log Message: Apply ruby(opengl) Requires for gtkglext also to F-11/10 branches Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/F-10/ruby-gnome2.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- ruby-gnome2.spec 1 Jul 2009 07:23:55 -0000 1.44 +++ ruby-gnome2.spec 15 Jul 2009 16:54:20 -0000 1.45 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 2 +%define mainrel 3 # Note # Currently this spec file does not support libgda module. @@ -21,9 +21,13 @@ Group: System Environment/Libra License: LGPLv2 URL: http://ruby-gnome2.sourceforge.jp/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-all-%{version}.tar.gz +# Currently Fedora specific patch Patch0: ruby-gnome2-0.17.0-rc1-script.patch +# ruby-gnome2-Bugs-2815036 Patch14: ruby-gnome2-0.19.0-gtkmozembed.patch +# ruby-gnome2-Bugs-2815036 Patch15: ruby-gnome2-0.19.0-panel-applet.patch +# ruby-gnome2-Bugs-2814953 Patch16: ruby-gnome2-0.19.0-gtk-missingheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -278,7 +282,7 @@ BuildRequires: ruby ruby-devel gtk2-dev #BuildRequires: ruby(glib2-devel) = %{version} ruby(gtk2-devel) = %{version} Requires: ruby(abi) = 1.8 -#Requires: OpenGL SEE README file for this +Requires: ruby(opengl) Requires: ruby(gtk2) = %{version}-%{release} Provides: ruby(gtkglext) = %{version}-%{release} @@ -726,6 +730,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Mamoru Tasaka - 0.19.0-3 +- Make ruby-gtkglext require ruby(opengl) + * Wed Jul 01 2009 Mamoru Tasaka - 0.19.0-2 - Install more needed header files in ruby-gtk2-devel (bug 509035) - Keep timestamps on installed header files From pkgdb at fedoraproject.org Wed Jul 15 16:59:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 16:59:00 +0000 Subject: [pkgdb] bchunk ownership updated Message-ID: <20090715165900.B458010F84C@bastion2.fedora.phx.redhat.com> Package bchunk in Fedora devel was orphaned by toshio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bchunk From lucilanga at fedoraproject.org Wed Jul 15 17:00:02 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 15 Jul 2009 17:00:02 +0000 (UTC) Subject: rpms/fuse-emulator/devel .cvsignore, 1.7, 1.8 fuse-emulator.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090715170002.D567B11C00E2@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/fuse-emulator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23452 Modified Files: .cvsignore fuse-emulator.spec sources Log Message: * Wed Jul 15 2009 Lucian Langa - 0.10.0.2-2 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Dec 2008 16:30:58 -0000 1.7 +++ .cvsignore 15 Jul 2009 16:59:32 -0000 1.8 @@ -1 +1 @@ -fuse-0.10.0.1-noroms.tar.gz +fuse-0.10.0.2-noroms.tar.gz Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/fuse-emulator.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fuse-emulator.spec 24 Feb 2009 18:50:52 -0000 1.12 +++ fuse-emulator.spec 15 Jul 2009 16:59:32 -0000 1.13 @@ -1,5 +1,5 @@ Name: fuse-emulator -Version: 0.10.0.1 +Version: 0.10.0.2 Release: 2%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 15 2009 Lucian Langa - 0.10.0.2-2 +- new upstream release + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Dec 2008 16:30:58 -0000 1.8 +++ sources 15 Jul 2009 16:59:32 -0000 1.9 @@ -1 +1 @@ -fcc37e6ef6278ed526b3517dc1777374 fuse-0.10.0.1-noroms.tar.gz +633cd78c19a615f523831e976487c744 fuse-0.10.0.2-noroms.tar.gz From lucilanga at fedoraproject.org Wed Jul 15 17:01:03 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Wed, 15 Jul 2009 17:01:03 +0000 (UTC) Subject: rpms/fuse-emulator/devel fuse-emulator.spec,1.13,1.14 Message-ID: <20090715170103.3B8F711C00E2@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/fuse-emulator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23951 Modified Files: fuse-emulator.spec Log Message: apply correct release number Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/fuse-emulator.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fuse-emulator.spec 15 Jul 2009 16:59:32 -0000 1.13 +++ fuse-emulator.spec 15 Jul 2009 17:01:03 -0000 1.14 @@ -1,6 +1,6 @@ Name: fuse-emulator Version: 0.10.0.2 -Release: 2%{?dist} +Release: 1%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators License: GPLv2+ @@ -81,7 +81,7 @@ rm -rf %{buildroot} %changelog -* Wed Jul 15 2009 Lucian Langa - 0.10.0.2-2 +* Wed Jul 15 2009 Lucian Langa - 0.10.0.2-1 - new upstream release * Tue Feb 24 2009 Fedora Release Engineering - 0.10.0.1-2 From pkgdb at fedoraproject.org Wed Jul 15 17:02:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:17 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up approveacls Message-ID: <20090715170217.4236B10F898@bastion2.fedora.phx.redhat.com> timn has given up the approveacls acl on NetworkManager-openvpn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 17:02:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:17 +0000 Subject: [pkgdb] bchunk (Fedora, devel) updated by toshio Message-ID: <20090715170217.626A210F8A5@bastion2.fedora.phx.redhat.com> toshio changed owner of bchunk in Fedora 10 to konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bchunk From pkgdb at fedoraproject.org Wed Jul 15 17:02:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:17 +0000 Subject: [pkgdb] bchunk (Fedora, devel) updated by toshio Message-ID: <20090715170217.69E9710F8A9@bastion2.fedora.phx.redhat.com> toshio changed owner of bchunk in Fedora devel to konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bchunk From pkgdb at fedoraproject.org Wed Jul 15 17:02:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:17 +0000 Subject: [pkgdb] bchunk (Fedora, devel) updated by toshio Message-ID: <20090715170217.70BB510F8AC@bastion2.fedora.phx.redhat.com> toshio changed owner of bchunk in Fedora 11 to konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bchunk From pkgdb at fedoraproject.org Wed Jul 15 17:02:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:26 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up approveacls Message-ID: <20090715170226.58B4B10F84C@bastion2.fedora.phx.redhat.com> timn has given up the approveacls acl on NetworkManager-openvpn (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 17:02:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:27 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up approveacls Message-ID: <20090715170227.8352E10F8AF@bastion2.fedora.phx.redhat.com> timn has given up the approveacls acl on NetworkManager-openvpn (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 17:02:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:31 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up approveacls Message-ID: <20090715170231.157CD10F8B6@bastion2.fedora.phx.redhat.com> timn has given up the approveacls acl on NetworkManager-openvpn (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From pkgdb at fedoraproject.org Wed Jul 15 17:02:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 17:02:29 +0000 Subject: [pkgdb] NetworkManager-openvpn: timn has given up approveacls Message-ID: <20090715170229.A55E410F8B2@bastion2.fedora.phx.redhat.com> timn has given up the approveacls acl on NetworkManager-openvpn (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/NetworkManager-openvpn From rakesh at fedoraproject.org Wed Jul 15 16:42:27 2009 From: rakesh at fedoraproject.org (Rakesh Pandit) Date: Wed, 15 Jul 2009 16:42:27 +0000 (UTC) Subject: rpms/zile/devel .cvsignore, 1.7, 1.8 import.log, 1.3, 1.4 sources, 1.7, 1.8 zile.spec, 1.12, 1.13 Message-ID: <20090715164227.D940411C00DF@cvs1.fedora.phx.redhat.com> Author: rakesh Update of /cvs/pkgs/rpms/zile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21095/devel Modified Files: .cvsignore import.log sources zile.spec Log Message: Updated to 2.3.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zile/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 12 Apr 2009 19:51:13 -0000 1.7 +++ .cvsignore 15 Jul 2009 16:41:57 -0000 1.8 @@ -1 +1 @@ -zile-2.3.6.tar.gz +zile-2.3.9.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/zile/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 12 Apr 2009 19:51:13 -0000 1.3 +++ import.log 15 Jul 2009 16:41:57 -0000 1.4 @@ -1,3 +1,4 @@ zile-2_2_61-2_fc9:HEAD:zile-2.2.61-2.fc9.src.rpm:1218691536 zile-2_3_0-1_fc10:HEAD:zile-2.3.0-1.fc10.src.rpm:1232045193 zile-2_3_6-1_fc11:HEAD:zile-2.3.6-1.fc11.src.rpm:1239565544 +zile-2_3_9-1_fc11:HEAD:zile-2.3.9-1.fc11.src.rpm:1247676184 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zile/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 12 Apr 2009 19:51:13 -0000 1.7 +++ sources 15 Jul 2009 16:41:57 -0000 1.8 @@ -1 +1 @@ -5ca5a8810f857940ed0786ac20959651 zile-2.3.6.tar.gz +51f2fb489b81d80f997644e872445370 zile-2.3.9.tar.gz Index: zile.spec =================================================================== RCS file: /cvs/pkgs/rpms/zile/devel/zile.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- zile.spec 12 Apr 2009 19:51:13 -0000 1.12 +++ zile.spec 15 Jul 2009 16:41:57 -0000 1.13 @@ -1,15 +1,13 @@ Summary: Zile Is Lossy Emacs Name: zile -Version: 2.3.6 +Version: 2.3.9 Release: 1%{?dist} License: GPLv3+ Group: Applications/Editors URL: http://www.gnu.org/software/%{name}/ Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: texinfo ncurses-devel help2man -Requires(post): info -Requires(preun): info +BuildRequires: ncurses-devel help2man %description Zile is a small Emacs clone. Zile is a customizable, self-documenting @@ -33,14 +31,6 @@ rm -f $RPM_BUILD_ROOT/%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT -%post -/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || : - -%preun -if [ $1 == 0 ] ; then - /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : -fi - %files %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README THANKS @@ -49,6 +39,9 @@ fi %{_datadir}/%{name}/ %changelog +* Wed Jul 15 2009 Rakesh Pandit - 2.3.9-1 +- Updated to 2.3.9 + * Mon Apr 13 2009 Rakesh Pandit - 2.3.6-1 - Updated to 2.3.6 (Check changelog for details) - Added help2man in BuildRequires and adjusted %%files From jspaleta at fedoraproject.org Wed Jul 15 17:21:53 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Wed, 15 Jul 2009 17:21:53 +0000 (UTC) Subject: rpms/ScientificPython/F-11 ScientificPython-netcdf-better-location.patch, NONE, 1.1 ScientificPython.spec, 1.18, 1.19 Message-ID: <20090715172153.8A26211C00E2@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/ScientificPython/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27498 Modified Files: ScientificPython.spec Added Files: ScientificPython-netcdf-better-location.patch Log Message: * Wed Jul 15 2009 Jef Spaleta - 2.8-5 - Fix netcdf location patch with better long term fix provided by user in bug 511313 ScientificPython-netcdf-better-location.patch: --- NEW FILE ScientificPython-netcdf-better-location.patch --- --- setup.py.old 2009-07-15 08:29:35.000000000 -0800 +++ setup.py 2009-07-15 08:39:20.000000000 -0800 @@ -45,6 +45,9 @@ "Lib/site-packages/numpy/core/include")] else: arrayobject_h_include = [os.path.join(sys.prefix, + "lib64/python%s.%s/site-packages/numpy/core/include" + % sys.version_info [:2]), + os.path.join(sys.prefix, "lib/python%s.%s/site-packages/numpy/core/include" % sys.version_info [:2])] @@ -77,11 +80,21 @@ pass if netcdf_prefix is None: for netcdf_prefix in ['/usr/local', '/usr', '/sw']: - netcdf_include = os.path.join(netcdf_prefix, 'include') - netcdf_lib = os.path.join(netcdf_prefix, 'lib') - if os.path.exists(os.path.join(netcdf_include, 'netcdf.h')): - break - else: + for netcdf_postfix in ['', 'netcdf', 'netcdf-3']: + netcdf_include = os.path.join(netcdf_prefix, 'include',netcdf_postfix) + for arch_lib in ['lib64', 'lib']: + netcdf_lib = os.path.join(netcdf_prefix, arch_lib) + if os.path.exists(os.path.join(netcdf_include, 'netcdf.h')): + break + else: + arch_lib = None + if arch_lib is not None: + break + else: + netcdf_postfix = None + if netcdf_postfix is not None: + break + else: netcdf_prefix = None if netcdf_prefix is None: Index: ScientificPython.spec =================================================================== RCS file: /cvs/pkgs/rpms/ScientificPython/F-11/ScientificPython.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ScientificPython.spec 2 Mar 2009 03:00:28 -0000 1.18 +++ ScientificPython.spec 15 Jul 2009 17:21:23 -0000 1.19 @@ -3,7 +3,7 @@ Name: ScientificPython Version: 2.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of Python modules that are useful for scientific computing Group: Development/Languages @@ -12,6 +12,7 @@ URL: http://dirac.cnrs-orlean Source0: http://sourcesup.cru.fr/frs/download.php/1034/ScientificPython-%{version}.tar.gz Patch0: ScientificPython-arch-lib.patch Patch1: ScientificPython-mpi-compile.patch +Patch2: ScientificPython-netcdf-better-location.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel @@ -69,8 +70,8 @@ that tell you how to program with Scient %prep %setup -q -%patch0 -p 1 %patch1 -p 1 +%patch2 -p 0 %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -155,6 +156,10 @@ rm -rf $RPM_BUILD_ROOT %doc Doc/Reference Examples Doc/BSP_Tutorial.pdf %changelog +* Wed Jul 15 2009 Jef Spaleta - 2.8-5 +- Fix netcdf location patch with better long term fix provided + by user in bug 511313 + * Sun Mar 1 2009 Jef Spaleta - 2.8-4 - Fix MPI compile script From dyoung at fedoraproject.org Wed Jul 15 17:22:13 2009 From: dyoung at fedoraproject.org (Daniel M. Young) Date: Wed, 15 Jul 2009 17:22:13 +0000 (UTC) Subject: rpms/tasks/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 tasks.spec, 1.17, 1.18 Message-ID: <20090715172213.4D1E811C00E2@cvs1.fedora.phx.redhat.com> Author: dyoung Update of /cvs/extras/rpms/tasks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27560 Modified Files: .cvsignore sources tasks.spec Log Message: New upstream version: tasks-0.16 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tasks/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 30 Mar 2009 16:20:49 -0000 1.12 +++ .cvsignore 15 Jul 2009 17:21:42 -0000 1.13 @@ -1 +1 @@ -tasks-0.15.tar.gz +tasks-0.16.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/tasks/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 30 Mar 2009 16:20:49 -0000 1.12 +++ sources 15 Jul 2009 17:21:43 -0000 1.13 @@ -1 +1 @@ -45fe8e450bc6f47a0ac2a4db006fcbcd tasks-0.15.tar.gz +ed89cd0e5d85afdd4af9895109ed6569 tasks-0.16.tar.gz Index: tasks.spec =================================================================== RCS file: /cvs/extras/rpms/tasks/devel/tasks.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- tasks.spec 30 Mar 2009 16:20:49 -0000 1.17 +++ tasks.spec 15 Jul 2009 17:21:43 -0000 1.18 @@ -1,5 +1,5 @@ Name: tasks -Version: 0.15 +Version: 0.16 Release: 1%{?dist} Summary: Simple to-do list application @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: evolution-data-server-devel >= 1.2.0 BuildRequires: desktop-file-utils gtk2-devel -BuildRequires: gettext intltool libsexy-devel +BuildRequires: gettext intltool %description Tasks is a simple To Do list application that eschews complicated features @@ -63,6 +63,10 @@ fi %changelog +* Wed Jul 15 2009 Dan Young - 0.16-1 +- New upstream release +- Drop libsexy-devel BR, as SexyIconEntry is no longer used + * Mon Mar 30 2009 Dan Young - 0.15-1 - New upstream release - Drop upstreamed ical-util.c patch From gilboa at fedoraproject.org Wed Jul 15 17:30:44 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Wed, 15 Jul 2009 17:30:44 +0000 (UTC) Subject: rpms/icewm/devel .cvsignore, 1.5, 1.6 icewm.spec, 1.19, 1.20 sources, 1.6, 1.7 Message-ID: <20090715173044.C758011C00E2@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28727 Modified Files: .cvsignore icewm.spec sources Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/icewm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 5 Jan 2009 10:15:46 -0000 1.5 +++ .cvsignore 15 Jul 2009 17:30:14 -0000 1.6 @@ -1,2 +1 @@ -icewm-1.2.36.tar.gz -clearlooks.tgz +icewm-1.2.37.tar.gz Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/devel/icewm.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- icewm.spec 25 Feb 2009 06:41:34 -0000 1.19 +++ icewm.spec 15 Jul 2009 17:30:14 -0000 1.20 @@ -1,6 +1,6 @@ Name: icewm -Version: 1.2.36 -Release: 4%{?dist} +Version: 1.2.37 +Release: 1%{?dist} Summary: Light and configurable window manager Group: User Interface/Desktops @@ -149,6 +149,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS BUGS CHANGES COPYING README README.wm-session TODO doc/*.html %exclude %{_datadir}/icewm/startup +%{_datadir}/icewm %{_datadir}/icewm/icons %{_datadir}/icewm/keys %{_datadir}/icewm/ledclock @@ -157,6 +158,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icewm/preferences %{_datadir}/icewm/startup %{_datadir}/icewm/taskbar +%{_datadir}/icewm/themes %{_datadir}/icewm/themes/gtk2 %{_datadir}/icewm/themes/icedesert %{_datadir}/icewm/themes/Infadel2 @@ -199,6 +201,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 +- 1.2.37. +- Fix missing directory ownership. (#511639) + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icewm/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 5 Jan 2009 10:15:46 -0000 1.6 +++ sources 15 Jul 2009 17:30:14 -0000 1.7 @@ -1,2 +1,2 @@ -a9761dcde3633ca677b62e1f1abada3d icewm-1.2.36.tar.gz +970a21588d26eb361020fd60a61a482c icewm-1.2.37.tar.gz 933ab5875707f9918d92f63d391630b0 clearlooks.tgz From agk at fedoraproject.org Wed Jul 15 17:32:51 2009 From: agk at fedoraproject.org (agk) Date: Wed, 15 Jul 2009 17:32:51 +0000 (UTC) Subject: rpms/lvm2/devel LVM2.2.02.49.tgz.asc,1.1,1.2 sources,1.72,1.73 Message-ID: <20090715173251.9C55E11C00E2@cvs1.fedora.phx.redhat.com> Author: agk Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29401 Modified Files: LVM2.2.02.49.tgz.asc sources Log Message: Revert a patch that broke clvmd compilation. Index: LVM2.2.02.49.tgz.asc =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/LVM2.2.02.49.tgz.asc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- LVM2.2.02.49.tgz.asc 15 Jul 2009 16:29:49 -0000 1.1 +++ LVM2.2.02.49.tgz.asc 15 Jul 2009 17:32:51 -0000 1.2 @@ -1,7 +1,7 @@ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) -iD8DBQBKXfbkIoGRwVZ+LBcRAgOeAJwNx/oQvjy885nAKtZNRtGXrAXEFQCgi5r+ -aNuWePQ3dPy6cwNMM/XcjcY= -=q18o +iD8DBQBKXhInIoGRwVZ+LBcRAnUjAKD1njqJfoUIp/ZVSEWha8UhagGcAwCg78cz +JGyXKfnHt6fOasiqcpk1GtM= +=vsPq -----END PGP SIGNATURE----- Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/sources,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- sources 15 Jul 2009 16:29:49 -0000 1.72 +++ sources 15 Jul 2009 17:32:51 -0000 1.73 @@ -1 +1 @@ -7f2801ec7faec13dc7993b85486ec625 LVM2.2.02.49.tgz +ae49c161e7533c8e33b669c80154bd46 LVM2.2.02.49.tgz From rjones at fedoraproject.org Wed Jul 15 17:38:43 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 17:38:43 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.43,1.44 Message-ID: <20090715173843.A694711C00E2@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31053 Modified Files: libguestfs.spec Log Message: - New BR perl-libintl (not enabled, because not in EPEL). Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- libguestfs.spec 15 Jul 2009 16:53:36 -0000 1.43 +++ libguestfs.spec 15 Jul 2009 17:38:43 -0000 1.44 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.61 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -66,7 +66,7 @@ BuildRequires: perl-Test-Pod BuildRequires: perl-Test-Pod-Coverage #BuildRequires: perl-ExtUtils-MakeMaker BuildRequires: perl-XML-Writer -BuildRequires: perl-libintl +#BuildRequires: perl-libintl BuildRequires: python-devel BuildRequires: ruby-devel BuildRequires: rubygem-rake @@ -533,10 +533,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-2 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. -- New BR perl-libintl. +- New BR perl-libintl (not enabled, because not in EPEL). * Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 - Fix runtime Requires so they use epoch correctly. From bioinfornatics at fedoraproject.org Wed Jul 15 17:41:08 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 17:41:08 +0000 (UTC) Subject: rpms/valide/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 valide.spec, 1.1, 1.2 Message-ID: <20090715174108.CCFB411C00E2@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31738/devel Modified Files: .cvsignore import.log sources valide.spec Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jul 2009 11:37:39 -0000 1.2 +++ .cvsignore 15 Jul 2009 17:41:08 -0000 1.3 @@ -1 +1 @@ -valide-20090713svn278.tar.gz +valide-20090715svn280.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Jul 2009 11:37:39 -0000 1.1 +++ import.log 15 Jul 2009 17:41:08 -0000 1.2 @@ -1 +1,2 @@ valide-0_5_1-0_11_20090713svn278_fc11:HEAD:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247657817 +valide-0_5_1-0_12_20090715svn280_fc11:HEAD:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247679623 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jul 2009 11:37:39 -0000 1.2 +++ sources 15 Jul 2009 17:41:08 -0000 1.3 @@ -1 +1 @@ -14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz +43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- valide.spec 15 Jul 2009 11:37:39 -0000 1.1 +++ valide.spec 15 Jul 2009 17:41:08 -0000 1.2 @@ -1,16 +1,16 @@ -%global alphatag 20090713 -%global svn_revision svn278 +%global alphatag 20090715 +%global svn_revision svn280 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 -# tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 +# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 +# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 Name: valide Version: 0.5.1 -Release: 0.11.%{alphatag}%{svn_revision}%{?dist} +Release: 0.12.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 +- Update to revision + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From ajax at fedoraproject.org Wed Jul 15 17:47:14 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 17:47:14 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel xorg-x11-proto-devel.spec, 1.95, 1.96 Message-ID: <20090715174714.110AE11C00E2@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1786 Modified Files: xorg-x11-proto-devel.spec Log Message: * Wed Jul 15 2009 Adam Jackson 7.4-20 - Clean up %install slightly. Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- xorg-x11-proto-devel.spec 15 Jul 2009 03:59:50 -0000 1.95 +++ xorg-x11-proto-devel.spec 15 Jul 2009 17:46:43 -0000 1.96 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 19%{?dist} +Release: 20%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -80,8 +80,6 @@ done for i in composite damage randr render ; do mv $RPM_BUILD_ROOT/usr/share/doc/${i}proto/${i}proto.txt . done -# this header is supposed to come from Mesa, not driproto -rm -f $RPM_BUILD_ROOT/%{_includedir}/GL/internal/dri_interface.h # libXext still needs XLbx.h and lbxstr.h to build. The rest are junk. rm -f $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxbuf.h \ @@ -260,6 +258,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 15 2009 Adam Jackson 7.4-20 +- Clean up %%install slightly. + * Wed Jul 15 2009 Peter Hutterer 7.4-19 - renderproto 0.11 - inputproto 1.9.99.14 From sharkcz at fedoraproject.org Wed Jul 15 17:48:02 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 17:48:02 +0000 (UTC) Subject: rpms/wxGTK/devel wxGTK.spec,1.46,1.47 Message-ID: <20090715174802.162AF11C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2056 Modified Files: wxGTK.spec Log Message: * Wed Jul 15 2009 Dan Hor??k - 2.8.10-3 - add fix for CVE-2009-2369 (#511279) Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/devel/wxGTK.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- wxGTK.spec 11 Jun 2009 11:53:13 -0000 1.46 +++ wxGTK.spec 15 Jul 2009 17:47:31 -0000 1.47 @@ -4,7 +4,7 @@ Name: wxGTK Version: 2.8.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -16,6 +16,8 @@ Source0: http://dl.sf.net/wxwindo # http://trac.wxwidgets.org/ticket/10883 Patch0: %{name}-2.8.10-gsocket.patch +# http://trac.wxwidgets.org/ticket/10993 +Patch1: %{name}-2.8.10-CVE-2009-2369.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -98,12 +100,17 @@ libraries or the X Window System. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b .gsocket +%patch1 -p0 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure # fix plugin dir for 64-bit sed -i -e 's|/lib|/%{_lib}|' src/unix/stdpaths.cpp +# fix permissions for sources +chmod a-x include/wx/{msgout.h,dcgraph.h,graphics.h} +chmod a-x src/common/msgout.cpp + %build @@ -241,6 +248,7 @@ rm -rf $RPM_BUILD_ROOT %endif %files -n wxBase +%defattr(-,root,root,-) %doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt %doc docs/licendoc.txt docs/preamble.txt docs/readme.txt %{_libdir}/libwx_baseu-*.so.* @@ -249,6 +257,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Dan Hor??k - 2.8.10-3 +- add fix for CVE-2009-2369 (#511279) + * Thu Jun 11 2009 Dan Hor??k - 2.8.10-2 - fix build with glib >= 2.21 @@ -548,4 +559,4 @@ rm -rf $RPM_BUILD_ROOT * Mon Mar 3 2003 Dams - Initial build. - Disable unicode as it breaks lmule -- use the %find_lang macro for locale +- use the %%find_lang macro for locale From sharkcz at fedoraproject.org Wed Jul 15 17:50:48 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 17:50:48 +0000 (UTC) Subject: rpms/wxGTK/devel wxGTK-2.8.10-CVE-2009-2369.patch,NONE,1.1 Message-ID: <20090715175049.06E7511C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2930 Added Files: wxGTK-2.8.10-CVE-2009-2369.patch Log Message: add patch wxGTK-2.8.10-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.8.10-CVE-2009-2369.patch --- Index: src/common/imagpng.cpp =================================================================== --- src/common/imagpng.cpp (revision 60874) +++ src/common/imagpng.cpp (revision 60875) @@ -568,18 +568,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60875) +++ src/common/imagtiff.cpp (revision 60876) @@ -261,7 +261,6 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); @@ -275,10 +274,21 @@ (samplesInfo[0] == EXTRASAMPLE_ASSOCALPHA || samplesInfo[0] == EXTRASAMPLE_UNASSALPHA)); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = w * h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + TIFFClose(tif); + return false; + } + + raster = (uint32*) _TIFFmalloc( bytesNeeded ); + if (!raster) { if (verbose) Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60896) +++ src/common/imagtiff.cpp (revision 60897) @@ -276,7 +276,7 @@ // guard against integer overflow during multiplication which could result // in allocating a too small buffer and then overflowing it - const double bytesNeeded = w * h * sizeof(uint32); + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) { if ( verbose ) From sharkcz at fedoraproject.org Wed Jul 15 17:52:34 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 17:52:34 +0000 (UTC) Subject: rpms/wxGTK/F-11 wxGTK-2.8.10-CVE-2009-2369.patch, NONE, 1.1 wxGTK.spec, 1.45, 1.46 Message-ID: <20090715175234.65B4911C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3522 Modified Files: wxGTK.spec Added Files: wxGTK-2.8.10-CVE-2009-2369.patch Log Message: * Wed Jul 15 2009 Dan Hor??k - 2.8.10-2 - add fix for CVE-2009-2369 (#511279) wxGTK-2.8.10-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.8.10-CVE-2009-2369.patch --- Index: src/common/imagpng.cpp =================================================================== --- src/common/imagpng.cpp (revision 60874) +++ src/common/imagpng.cpp (revision 60875) @@ -568,18 +568,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60875) +++ src/common/imagtiff.cpp (revision 60876) @@ -261,7 +261,6 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); @@ -275,10 +274,21 @@ (samplesInfo[0] == EXTRASAMPLE_ASSOCALPHA || samplesInfo[0] == EXTRASAMPLE_UNASSALPHA)); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = w * h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + TIFFClose(tif); + return false; + } + + raster = (uint32*) _TIFFmalloc( bytesNeeded ); + if (!raster) { if (verbose) Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60896) +++ src/common/imagtiff.cpp (revision 60897) @@ -276,7 +276,7 @@ // guard against integer overflow during multiplication which could result // in allocating a too small buffer and then overflowing it - const double bytesNeeded = w * h * sizeof(uint32); + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) { if ( verbose ) Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/F-11/wxGTK.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- wxGTK.spec 21 Mar 2009 17:53:08 -0000 1.45 +++ wxGTK.spec 15 Jul 2009 17:52:34 -0000 1.46 @@ -4,7 +4,7 @@ Name: wxGTK Version: 2.8.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -14,6 +14,9 @@ Group: System Environment/Libra URL: http://www.wxwidgets.org/ Source0: http://dl.sf.net/wxwindows/%{name}-%{version}.tar.bz2 +# http://trac.wxwidgets.org/ticket/10993 +Patch0: %{name}-2.8.10-CVE-2009-2369.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -94,6 +97,7 @@ libraries or the X Window System. %prep %setup -q -n %{name}-%{version} +%patch0 -p0 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure @@ -237,6 +241,7 @@ rm -rf $RPM_BUILD_ROOT %endif %files -n wxBase +%defattr(-,root,root,-) %doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt %doc docs/licendoc.txt docs/preamble.txt docs/readme.txt %{_libdir}/libwx_baseu-*.so.* @@ -245,6 +250,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Dan Hor??k - 2.8.10-2 +- add fix for CVE-2009-2369 (#511279) + * Sat Mar 21 2009 Dan Hor??k - 2.8.10-1 - update to 2.8.10 - fix default plugin path for 64 bit arches From bioinfornatics at fedoraproject.org Wed Jul 15 17:54:54 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 17:54:54 +0000 (UTC) Subject: rpms/valide/F-11 import.log, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 valide.spec, 1.1, 1.2 Message-ID: <20090715175454.4790611C00E2@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4098/F-11 Modified Files: .cvsignore sources valide.spec Added Files: import.log Log Message: --- NEW FILE import.log --- valide-0_5_1-0_12_20090715svn280_fc11:F-11:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247680422 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jul 2009 11:41:21 -0000 1.2 +++ .cvsignore 15 Jul 2009 17:54:23 -0000 1.3 @@ -1 +1 @@ -valide-20090713svn278.tar.gz +valide-20090715svn280.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jul 2009 11:41:21 -0000 1.2 +++ sources 15 Jul 2009 17:54:24 -0000 1.3 @@ -1 +1 @@ -14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz +43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/valide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- valide.spec 15 Jul 2009 11:41:21 -0000 1.1 +++ valide.spec 15 Jul 2009 17:54:24 -0000 1.2 @@ -1,16 +1,16 @@ -%global alphatag 20090713 -%global svn_revision svn278 +%global alphatag 20090715 +%global svn_revision svn280 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 -# tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 +# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 +# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 Name: valide Version: 0.5.1 -Release: 0.11.%{alphatag}%{svn_revision}%{?dist} +Release: 0.12.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 +- Update to revision + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From sharkcz at fedoraproject.org Wed Jul 15 17:55:06 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 17:55:06 +0000 (UTC) Subject: rpms/wxGTK/F-10 wxGTK-2.8.10-CVE-2009-2369.patch, NONE, 1.1 wxGTK.spec, 1.42, 1.43 Message-ID: <20090715175506.647DE11C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4364 Modified Files: wxGTK.spec Added Files: wxGTK-2.8.10-CVE-2009-2369.patch Log Message: * Wed Jul 15 2009 Dan Hor??k - 2.8.10-2 - add fix for CVE-2009-2369 (#511279) wxGTK-2.8.10-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.8.10-CVE-2009-2369.patch --- Index: src/common/imagpng.cpp =================================================================== --- src/common/imagpng.cpp (revision 60874) +++ src/common/imagpng.cpp (revision 60875) @@ -568,18 +568,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60875) +++ src/common/imagtiff.cpp (revision 60876) @@ -261,7 +261,6 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); @@ -275,10 +274,21 @@ (samplesInfo[0] == EXTRASAMPLE_ASSOCALPHA || samplesInfo[0] == EXTRASAMPLE_UNASSALPHA)); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = w * h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + TIFFClose(tif); + return false; + } + + raster = (uint32*) _TIFFmalloc( bytesNeeded ); + if (!raster) { if (verbose) Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60896) +++ src/common/imagtiff.cpp (revision 60897) @@ -276,7 +276,7 @@ // guard against integer overflow during multiplication which could result // in allocating a too small buffer and then overflowing it - const double bytesNeeded = w * h * sizeof(uint32); + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) { if ( verbose ) Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/F-10/wxGTK.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- wxGTK.spec 22 May 2009 11:28:57 -0000 1.42 +++ wxGTK.spec 15 Jul 2009 17:55:06 -0000 1.43 @@ -6,7 +6,7 @@ Name: wxGTK Version: 2.8.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -16,6 +16,9 @@ Group: System Environment/Libra URL: http://www.wxwidgets.org/ Source0: http://dl.sf.net/wxwindows/%{name}-%{version}.tar.bz2 +# http://trac.wxwidgets.org/ticket/10993 +Patch0: %{name}-2.8.10-CVE-2009-2369.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -124,6 +127,7 @@ libraries or the X Window System. %prep %setup -q +%patch0 -p0 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure @@ -257,6 +261,7 @@ rm -rf $RPM_BUILD_ROOT %endif %files -n wxBase +%defattr(-,root,root,-) %doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt %doc docs/licendoc.txt docs/preamble.txt docs/readme.txt %{_libdir}/libwx_baseu-*.so.* @@ -265,6 +270,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Dan Hor??k - 2.8.10-2 +- add fix for CVE-2009-2369 (#511279) + * Fri May 22 2009 Dan Horak - 2.8.10-1 - update to 2.8.10 From bioinfornatics at fedoraproject.org Wed Jul 15 17:56:32 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 17:56:32 +0000 (UTC) Subject: rpms/valide/F-10 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 valide.spec, 1.1, 1.2 Message-ID: <20090715175632.3966C11C00E2@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4770/F-10 Modified Files: .cvsignore import.log sources valide.spec Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jul 2009 11:43:54 -0000 1.2 +++ .cvsignore 15 Jul 2009 17:56:31 -0000 1.3 @@ -1 +1 @@ -valide-20090713svn278.tar.gz +valide-20090715svn280.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Jul 2009 13:23:41 -0000 1.1 +++ import.log 15 Jul 2009 17:56:32 -0000 1.2 @@ -1 +1,2 @@ valide-0_5_1-0_11_20090713svn278_fc11:F-10:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247664182 +valide-0_5_1-0_12_20090715svn280_fc11:F-10:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247680569 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jul 2009 11:43:54 -0000 1.2 +++ sources 15 Jul 2009 17:56:32 -0000 1.3 @@ -1 +1 @@ -14d43dfe067b2167adb831c689075850 valide-20090713svn278.tar.gz +43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/valide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- valide.spec 15 Jul 2009 11:43:55 -0000 1.1 +++ valide.spec 15 Jul 2009 17:56:32 -0000 1.2 @@ -1,16 +1,16 @@ -%global alphatag 20090713 -%global svn_revision svn278 +%global alphatag 20090715 +%global svn_revision svn280 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 278 http://valide.googlecode.com/svn/trunk/ valide-20090713svn278 -# tar -czvf valide-20090713svn278.tar.gz valide-20090713svn278 +# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 +# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 Name: valide Version: 0.5.1 -Release: 0.11.%{alphatag}%{svn_revision}%{?dist} +Release: 0.12.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 +- Update to revision + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From mclasen at fedoraproject.org Wed Jul 15 17:31:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 17:31:58 +0000 (UTC) Subject: rpms/gnome-desktop/devel concatenate-edid-descriptors.patch, NONE, 1.1 .cvsignore, 1.85, 1.86 gnome-desktop.spec, 1.214, 1.215 sources, 1.85, 1.86 give-me-back-my-rotations.patch, 1.1, NONE you-never-find-a-haystack-in-a-needle.patch, 1.1, NONE Message-ID: <20090715173158.2E7E211C00E2@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29184 Modified Files: .cvsignore gnome-desktop.spec sources Added Files: concatenate-edid-descriptors.patch Removed Files: give-me-back-my-rotations.patch you-never-find-a-haystack-in-a-needle.patch Log Message: 2.27.4 concatenate-edid-descriptors.patch: --- NEW FILE concatenate-edid-descriptors.patch --- diff -up gnome-desktop-2.27.4/libgnome-desktop/edid.h.concatenate-edid-descriptors gnome-desktop-2.27.4/libgnome-desktop/edid.h --- gnome-desktop-2.27.4/libgnome-desktop/edid.h.concatenate-edid-descriptors 2009-04-19 13:39:06.000000000 -0400 +++ gnome-desktop-2.27.4/libgnome-desktop/edid.h 2009-07-15 12:49:00.883963393 -0400 @@ -183,12 +183,13 @@ struct MonitorInfo */ /* Optional product description */ - char dsc_serial_number[14]; - char dsc_product_name[14]; - char dsc_string[14]; /* Unspecified ASCII data */ + char *dsc_serial_number; + char *dsc_product_name; + char *dsc_string; /* Unspecified ASCII data */ }; MonitorInfo *decode_edid (const uchar *data); +void free_edid (MonitorInfo *); char * make_display_name (const char *output_name, const MonitorInfo *info); diff -up gnome-desktop-2.27.4/libgnome-desktop/edid-parse.c.concatenate-edid-descriptors gnome-desktop-2.27.4/libgnome-desktop/edid-parse.c --- gnome-desktop-2.27.4/libgnome-desktop/edid-parse.c.concatenate-edid-descriptors 2009-04-19 13:39:06.000000000 -0400 +++ gnome-desktop-2.27.4/libgnome-desktop/edid-parse.c 2009-07-15 12:53:51.648990812 -0400 @@ -349,27 +349,44 @@ decode_standard_timings (const uchar *ed return TRUE; } -static void -decode_lf_string (const uchar *s, int n_chars, char *result) +static char * +decode_lf_string (const uchar *s, int n_chars, char *prev) { int i; + char *ret, *tmp; + + tmp = g_malloc0 (n_chars); + for (i = 0; i < n_chars; ++i) { if (s[i] == 0x0a) { - *result++ = '\0'; + tmp[i] = '\0'; break; } else if (s[i] == 0x00) { /* Convert embedded 0's to spaces */ - *result++ = ' '; + tmp[i] = ' '; } else { - *result++ = s[i]; + tmp[i] = s[i]; } } + + if (prev) + { + ret = g_strjoin(NULL, prev, tmp, NULL); + g_free(prev); + g_free(tmp); + } + else + { + ret = tmp; + } + + return ret; } static void @@ -379,13 +396,16 @@ decode_display_descriptor (const uchar * switch (desc[0x03]) { case 0xFC: - decode_lf_string (desc + 5, 13, info->dsc_product_name); + info->dsc_product_name = decode_lf_string (desc + 5, 13, + info->dsc_product_name); break; case 0xFF: - decode_lf_string (desc + 5, 13, info->dsc_serial_number); + info->dsc_serial_number = decode_lf_string (desc + 5, 13, + info->dsc_serial_number); break; case 0xFE: - decode_lf_string (desc + 5, 13, info->dsc_string); + info->dsc_string = decode_lf_string (desc + 5, 13, + info->dsc_string); break; case 0xFD: /* Range Limits */ @@ -514,6 +534,18 @@ decode_check_sum (const uchar *edid, info->checksum = check; } +void +free_edid (MonitorInfo *info) +{ + if (info) + { + g_free (info->dsc_product_name); + g_free (info->dsc_serial_number); + g_free (info->dsc_string); + } + g_free (info); +} + MonitorInfo * decode_edid (const uchar *edid) { diff -up gnome-desktop-2.27.4/libgnome-desktop/gnome-rr-config.c.concatenate-edid-descriptors gnome-desktop-2.27.4/libgnome-desktop/gnome-rr-config.c --- gnome-desktop-2.27.4/libgnome-desktop/gnome-rr-config.c.concatenate-edid-descriptors 2009-06-29 19:35:54.000000000 -0400 +++ gnome-desktop-2.27.4/libgnome-desktop/gnome-rr-config.c 2009-07-15 12:47:57.734218844 -0400 @@ -491,7 +491,7 @@ gnome_rr_config_new_current (GnomeRRScre output->display_name = make_display_name ( gnome_rr_output_get_name (rr_output), info); - g_free (info); + free_edid (info); crtc = gnome_rr_output_get_crtc (rr_output); mode = crtc? gnome_rr_crtc_get_current_mode (crtc) : NULL; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/.cvsignore,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- .cvsignore 16 Jun 2009 14:03:35 -0000 1.85 +++ .cvsignore 15 Jul 2009 17:31:57 -0000 1.86 @@ -1 +1 @@ -gnome-desktop-2.27.3.tar.bz2 +gnome-desktop-2.27.4.tar.bz2 Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/gnome-desktop.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- gnome-desktop.spec 7 Jul 2009 22:27:12 -0000 1.214 +++ gnome-desktop.spec 15 Jul 2009 17:31:57 -0000 1.215 @@ -11,14 +11,14 @@ Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop -Version: 2.27.3 -Release: 2%{?dist} +Version: 2.27.4 +Release: 1%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.27/%{name}-%{version}.tar.bz2 # http://bugzilla.gnome.org/show_bug.cgi?id=581621 -Patch2: pnpids.patch -# Backport from 2.27.4 -Patch3: gnome-desktop-2.27.3-edid-prop-name.patch +Patch0: pnpids.patch +Patch1: concatenate-edid-descriptors.patch + License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -76,8 +76,8 @@ libgnomedesktop. %prep %setup -q -%patch2 -p1 -b .pnpids.patch -%patch3 -p1 -b .edid-name +%patch0 -p1 -b .pnpids.patch +%patch1 -p1 -b .concatenate-edid-descriptors %build %configure --with-gnome-distributor="Red Hat, Inc" --disable-scrollkeeper @@ -123,6 +123,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 +- Some EDID handling improvements + * Tue Jul 07 2009 Adam Jackson 2.27.3-2 - gnome-desktop-2.27.3-edid-prop-name.patch: Adapt to RANDR 1.3's new name for the EDID output property. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/sources,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- sources 16 Jun 2009 14:03:35 -0000 1.85 +++ sources 15 Jul 2009 17:31:57 -0000 1.86 @@ -1 +1 @@ -a4fd698181f3b22ca09564e149eb56a9 gnome-desktop-2.27.3.tar.bz2 +25c96e2a203edbad7372eb8b1096a0c0 gnome-desktop-2.27.4.tar.bz2 --- give-me-back-my-rotations.patch DELETED --- --- you-never-find-a-haystack-in-a-needle.patch DELETED --- From kevin at fedoraproject.org Wed Jul 15 17:59:51 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 15 Jul 2009 17:59:51 +0000 (UTC) Subject: rpms/supybot-meetbot/devel sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 supybot-meetbot.spec, 1.3, 1.4 Message-ID: <20090715175951.6144811C00E2@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/supybot-meetbot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5554 Modified Files: sources .cvsignore supybot-meetbot.spec Log Message: Update to 0.1.2 release Index: sources =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:33:00 -0000 1.2 +++ sources 15 Jul 2009 17:59:21 -0000 1.3 @@ -1 +1 @@ -2e517814d279ba73d1879b566358c65e MeetBot-0.1.1.tar.gz +933262dd707de735ae763f6046d4e77e MeetBot-0.1.2.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:32:59 -0000 1.2 +++ .cvsignore 15 Jul 2009 17:59:21 -0000 1.3 @@ -1 +1 @@ -MeetBot-0.1.1.tar.gz +MeetBot-0.1.2.tar.gz Index: supybot-meetbot.spec =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/devel/supybot-meetbot.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- supybot-meetbot.spec 7 Jul 2009 06:25:13 -0000 1.3 +++ supybot-meetbot.spec 15 Jul 2009 17:59:21 -0000 1.4 @@ -1,14 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: supybot-meetbot -Version: 0.1.1 -Release: 2%{?dist} +Version: 0.1.2 +Release: 1%{?dist} Summary: Plugin for Supybot for handling IRC meetings Group: Applications/Internet License: BSD URL: http://wiki.debian.org/MeatBot -Source0: http://rkd.zgib.net/http/code/MeetBot-0.1.1.tar.gz +Source0: http://rkd.zgib.net/http/code/MeetBot-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: supybot @@ -25,7 +25,7 @@ distinction between meeting-code and IRC easy to port to other bots. It is under the supybot license (3-clause BSD). %prep -%setup -q -n MeetBot-0.1.1 +%setup -q -n MeetBot-%{version} %build @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/supybot/plugins/MeetBot %changelog +* Wed Jul 15 2009 Kevin Fenzi - 0.1.2-1 +- Update to 0.1.2 release. + * Tue Jul 07 2009 Kevin Fenzi - 0.1.1-2 - Fix install location to be the correct name. - Add additional doc files From jspaleta at fedoraproject.org Wed Jul 15 18:00:58 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Wed, 15 Jul 2009 18:00:58 +0000 (UTC) Subject: rpms/ScientificPython/devel ScientificPython-netcdf-better-location.patch, NONE, 1.1 ScientificPython.spec, 1.18, 1.19 Message-ID: <20090715180058.2CA1511C00E2@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/ScientificPython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6269 Modified Files: ScientificPython.spec Added Files: ScientificPython-netcdf-better-location.patch Log Message: * Wed Jul 15 2009 Jef Spaleta - 2.8-6 - Even better patch! ScientificPython-netcdf-better-location.patch: --- NEW FILE ScientificPython-netcdf-better-location.patch --- --- setup.py.old 2009-07-15 08:29:35.000000000 -0800 +++ setup.py 2009-07-15 09:33:45.000000000 -0800 @@ -45,6 +45,9 @@ "Lib/site-packages/numpy/core/include")] else: arrayobject_h_include = [os.path.join(sys.prefix, + "lib64/python%s.%s/site-packages/numpy/core/include" + % sys.version_info [:2]), + os.path.join(sys.prefix, "lib/python%s.%s/site-packages/numpy/core/include" % sys.version_info [:2])] @@ -75,13 +78,25 @@ netcdf_prefix=os.environ['NETCDF_PREFIX'] except KeyError: pass +netcdf_include=None +netcdf_lib=None if netcdf_prefix is None: for netcdf_prefix in ['/usr/local', '/usr', '/sw']: - netcdf_include = os.path.join(netcdf_prefix, 'include') - netcdf_lib = os.path.join(netcdf_prefix, 'lib') - if os.path.exists(os.path.join(netcdf_include, 'netcdf.h')): - break - else: + for netcdf_postfix in ['', 'netcdf', 'netcdf-3']: + netcdf_include = os.path.join(netcdf_prefix, 'include',netcdf_postfix) + for arch_lib in ['lib64', 'lib']: + netcdf_lib = os.path.join(netcdf_prefix, arch_lib) + if os.path.exists(os.path.join(netcdf_include, 'netcdf.h')): + break + else: + arch_lib = None + if arch_lib is not None: + break + else: + netcdf_postfix = None + if netcdf_postfix is not None: + break + else: netcdf_prefix = None if netcdf_prefix is None: @@ -105,9 +120,9 @@ options['bdist_wininst'] = {'install_script': "scientific_win32_postinstall.py"} else: print "Using netCDF installation in ", netcdf_prefix - netcdf_include = os.path.join(netcdf_prefix, 'include') - netcdf_h_file = os.path.join(netcdf_prefix, 'include', 'netcdf.h') - netcdf_lib = os.path.join(netcdf_prefix, 'lib') + if netcdf_include == None: netcdf_include = os.path.join(netcdf_prefix, 'include') + netcdf_h_file = os.path.join(netcdf_include, 'netcdf.h') + if netcdf_lib==None: netcdf_lib = os.path.join(netcdf_prefix, 'lib') ext_modules = [Extension('Scientific_netcdf', ['Src/Scientific_netcdf.c'], include_dirs=['Include', netcdf_include] Index: ScientificPython.spec =================================================================== RCS file: /cvs/pkgs/rpms/ScientificPython/devel/ScientificPython.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ScientificPython.spec 2 Mar 2009 03:00:28 -0000 1.18 +++ ScientificPython.spec 15 Jul 2009 18:00:58 -0000 1.19 @@ -3,7 +3,7 @@ Name: ScientificPython Version: 2.8 -Release: 4%{?dist} +Release: 6%{?dist} Summary: A collection of Python modules that are useful for scientific computing Group: Development/Languages @@ -12,11 +12,12 @@ URL: http://dirac.cnrs-orlean Source0: http://sourcesup.cru.fr/frs/download.php/1034/ScientificPython-%{version}.tar.gz Patch0: ScientificPython-arch-lib.patch Patch1: ScientificPython-mpi-compile.patch +Patch2: ScientificPython-netcdf-better-location.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: netcdf-devel -BuildRequires: openmpi-devel +#BuildRequires: openmpi-devel BuildRequires: numpy Requires: numpy @@ -69,8 +70,8 @@ that tell you how to program with Scient %prep %setup -q -%patch0 -p 1 %patch1 -p 1 +%patch2 -p 0 %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build @@ -155,6 +156,13 @@ rm -rf $RPM_BUILD_ROOT %doc Doc/Reference Examples Doc/BSP_Tutorial.pdf %changelog +* Wed Jul 15 2009 Jef Spaleta - 2.8-6 +- Even better patch! + +* Wed Jul 15 2009 Jef Spaleta - 2.8-5 +- Fix netcdf location patch with better long term fix provided + by user in bug 511313 + * Sun Mar 1 2009 Jef Spaleta - 2.8-4 - Fix MPI compile script From kevin at fedoraproject.org Wed Jul 15 18:04:53 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 15 Jul 2009 18:04:53 +0000 (UTC) Subject: rpms/supybot-meetbot/F-11 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 supybot-meetbot.spec, 1.2, 1.3 Message-ID: <20090715180453.A497311C00E2@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/supybot-meetbot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7392 Modified Files: sources .cvsignore supybot-meetbot.spec Log Message: Update to 0.1.2 release Index: sources =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:44:22 -0000 1.2 +++ sources 15 Jul 2009 18:04:53 -0000 1.3 @@ -1 +1 @@ -2e517814d279ba73d1879b566358c65e MeetBot-0.1.1.tar.gz +933262dd707de735ae763f6046d4e77e MeetBot-0.1.2.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:44:22 -0000 1.2 +++ .cvsignore 15 Jul 2009 18:04:53 -0000 1.3 @@ -1 +1 @@ -MeetBot-0.1.1.tar.gz +MeetBot-0.1.2.tar.gz Index: supybot-meetbot.spec =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/F-11/supybot-meetbot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- supybot-meetbot.spec 7 Jul 2009 06:36:50 -0000 1.2 +++ supybot-meetbot.spec 15 Jul 2009 18:04:53 -0000 1.3 @@ -1,14 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: supybot-meetbot -Version: 0.1.1 -Release: 2%{?dist} +Version: 0.1.2 +Release: 1%{?dist} Summary: Plugin for Supybot for handling IRC meetings Group: Applications/Internet License: BSD URL: http://wiki.debian.org/MeatBot -Source0: http://rkd.zgib.net/http/code/MeetBot-0.1.1.tar.gz +Source0: http://rkd.zgib.net/http/code/MeetBot-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: supybot @@ -25,7 +25,7 @@ distinction between meeting-code and IRC easy to port to other bots. It is under the supybot license (3-clause BSD). %prep -%setup -q -n MeetBot-0.1.1 +%setup -q -n MeetBot-%{version} %build @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/supybot/plugins/MeetBot %changelog +* Wed Jul 15 2009 Kevin Fenzi - 0.1.2-1 +- Update to 0.1.2 release. + * Tue Jul 07 2009 Kevin Fenzi - 0.1.1-2 - Fix install location to be the correct name. - Add additional doc files From dyoung at fedoraproject.org Wed Jul 15 18:05:02 2009 From: dyoung at fedoraproject.org (Daniel M. Young) Date: Wed, 15 Jul 2009 18:05:02 +0000 (UTC) Subject: rpms/tasks/F-11 .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 tasks.spec, 1.17, 1.18 Message-ID: <20090715180502.16BD911C00E2@cvs1.fedora.phx.redhat.com> Author: dyoung Update of /cvs/extras/rpms/tasks/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7327 Modified Files: .cvsignore sources tasks.spec Log Message: New upstream version: tasks-0.16 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tasks/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 30 Mar 2009 16:20:49 -0000 1.12 +++ .cvsignore 15 Jul 2009 18:04:31 -0000 1.13 @@ -1 +1 @@ -tasks-0.15.tar.gz +tasks-0.16.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/tasks/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 30 Mar 2009 16:20:49 -0000 1.12 +++ sources 15 Jul 2009 18:04:32 -0000 1.13 @@ -1 +1 @@ -45fe8e450bc6f47a0ac2a4db006fcbcd tasks-0.15.tar.gz +ed89cd0e5d85afdd4af9895109ed6569 tasks-0.16.tar.gz Index: tasks.spec =================================================================== RCS file: /cvs/extras/rpms/tasks/F-11/tasks.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- tasks.spec 30 Mar 2009 16:20:49 -0000 1.17 +++ tasks.spec 15 Jul 2009 18:04:32 -0000 1.18 @@ -1,5 +1,5 @@ Name: tasks -Version: 0.15 +Version: 0.16 Release: 1%{?dist} Summary: Simple to-do list application @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: evolution-data-server-devel >= 1.2.0 BuildRequires: desktop-file-utils gtk2-devel -BuildRequires: gettext intltool libsexy-devel +BuildRequires: gettext intltool %description Tasks is a simple To Do list application that eschews complicated features @@ -63,6 +63,10 @@ fi %changelog +* Wed Jul 15 2009 Dan Young - 0.16-1 +- New upstream release +- Drop libsexy-devel BR, as SexyIconEntry is no longer used + * Mon Mar 30 2009 Dan Young - 0.15-1 - New upstream release - Drop upstreamed ical-util.c patch From ndim at fedoraproject.org Wed Jul 15 18:06:27 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Wed, 15 Jul 2009 18:06:27 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/devel xorg-x11-drv-radeonhd.spec, 1.61, 1.62 Message-ID: <20090715180627.EEE7C11C00E2@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8002 Modified Files: xorg-x11-drv-radeonhd.spec Log Message: * Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git - compile with DRI support again (add mesa-libGL-devel build requirement) Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- xorg-x11-drv-radeonhd.spec 14 Jul 2009 21:26:20 -0000 1.61 +++ xorg-x11-drv-radeonhd.spec 15 Jul 2009 18:06:27 -0000 1.62 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 2.9%{?alphatag}%{?dist} +Release: 2.10%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -97,6 +97,7 @@ Requires: xorg-x11-server-Xorg < 1.4.99. # DRI support BuildRequires: libdrm-devel BuildRequires: xorg-x11-proto-devel +BuildRequires: mesa-libGL-devel %description X.org X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets. @@ -164,6 +165,9 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git +- compile with DRI support again (add mesa-libGL-devel build requirement) + * Tue Jul 14 2009 Hans Ulrich Niedermann - 1.2.5-2.9.20090714git - New snapshot (upstream commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83): For details, run git log. Short summary: From sharkcz at fedoraproject.org Wed Jul 15 18:07:12 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 18:07:12 +0000 (UTC) Subject: rpms/wxGTK/EL-5 wxGTK-2.8.10-CVE-2009-2369.patch, NONE, 1.1 wxGTK.spec, 1.35, 1.36 Message-ID: <20090715180712.4CBFF11C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8335 Modified Files: wxGTK.spec Added Files: wxGTK-2.8.10-CVE-2009-2369.patch Log Message: * Wed Jul 15 2009 Dan Hor??k - 2.8.9-2 - add fix for CVE-2009-2369 (#511279) wxGTK-2.8.10-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.8.10-CVE-2009-2369.patch --- Index: src/common/imagpng.cpp =================================================================== --- src/common/imagpng.cpp (revision 60874) +++ src/common/imagpng.cpp (revision 60875) @@ -568,18 +568,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60875) +++ src/common/imagtiff.cpp (revision 60876) @@ -261,7 +261,6 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); @@ -275,10 +274,21 @@ (samplesInfo[0] == EXTRASAMPLE_ASSOCALPHA || samplesInfo[0] == EXTRASAMPLE_UNASSALPHA)); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = w * h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + TIFFClose(tif); + return false; + } + + raster = (uint32*) _TIFFmalloc( bytesNeeded ); + if (!raster) { if (verbose) Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60896) +++ src/common/imagtiff.cpp (revision 60897) @@ -276,7 +276,7 @@ // guard against integer overflow during multiplication which could result // in allocating a too small buffer and then overflowing it - const double bytesNeeded = w * h * sizeof(uint32); + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) { if ( verbose ) Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/EL-5/wxGTK.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- wxGTK.spec 10 Nov 2008 18:23:29 -0000 1.35 +++ wxGTK.spec 15 Jul 2009 18:07:12 -0000 1.36 @@ -6,7 +6,7 @@ Name: wxGTK Version: 2.8.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -16,6 +16,9 @@ Group: System Environment/Libra URL: http://www.wxwidgets.org/ Source0: http://dl.sf.net/wxwindows/%{name}-%{version}.tar.bz2 +# http://trac.wxwidgets.org/ticket/10993 +Patch0: %{name}-2.8.10-CVE-2009-2369.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -121,6 +124,7 @@ libraries or the X Window System. %prep %setup -q +%patch0 -p0 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure @@ -254,6 +258,7 @@ rm -rf $RPM_BUILD_ROOT %endif %files -n wxBase +%defattr(-,root,root,-) %doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt %doc docs/licendoc.txt docs/preamble.txt docs/readme.txt %{_libdir}/libwx_baseu-*.so.* @@ -262,6 +267,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Dan Hor??k - 2.8.9-2 +- add fix for CVE-2009-2369 (#511279) + * Mon Sep 22 2008 Dan Horak - 2.8.9-1 - update to 2.8.9 From oget at fedoraproject.org Wed Jul 15 18:09:11 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 18:09:11 +0000 (UTC) Subject: rpms/jack_capture/devel .cvsignore, 1.3, 1.4 jack_capture.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090715180911.5898C11C00E2@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/jack_capture/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9025 Modified Files: .cvsignore jack_capture.spec sources Log Message: * Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 - Update to 0.9.35 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 May 2009 21:54:05 -0000 1.3 +++ .cvsignore 15 Jul 2009 18:09:10 -0000 1.4 @@ -1 +1 @@ -jack_capture-0.9.34.tar.gz +jack_capture-0.9.35.tar.gz Index: jack_capture.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/devel/jack_capture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jack_capture.spec 19 May 2009 21:54:05 -0000 1.2 +++ jack_capture.spec 15 Jul 2009 18:09:11 -0000 1.3 @@ -1,5 +1,5 @@ Name: jack_capture -Version: 0.9.34 +Version: 0.9.35 Release: 1%{?dist} Summary: Record sound files with JACK Group: Applications/Multimedia @@ -76,6 +76,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}.desktop %changelog +* Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 +- Update to 0.9.35 + * Tue May 19 2009 Orcan Ogetbil - 0.9.34-1 - Update to 0.9.34 - Drop upstreamed ppc64 patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 May 2009 21:54:05 -0000 1.3 +++ sources 15 Jul 2009 18:09:11 -0000 1.4 @@ -1 +1 @@ -c7535ffd785d1602e3aefbe7044d9411 jack_capture-0.9.34.tar.gz +8948c84b70b1b9f5c58ec7657ca2ebab jack_capture-0.9.35.tar.gz From sharkcz at fedoraproject.org Wed Jul 15 18:08:56 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 18:08:56 +0000 (UTC) Subject: rpms/wxGTK/EL-4 wxGTK-2.8.10-CVE-2009-2369.patch, NONE, 1.1 wxGTK.spec, 1.36, 1.37 Message-ID: <20090715180856.B898011C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8721 Modified Files: wxGTK.spec Added Files: wxGTK-2.8.10-CVE-2009-2369.patch Log Message: * Wed Jul 15 2009 Dan Hor??k - 2.8.9-2 - add fix for CVE-2009-2369 (#511279) wxGTK-2.8.10-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.8.10-CVE-2009-2369.patch --- Index: src/common/imagpng.cpp =================================================================== --- src/common/imagpng.cpp (revision 60874) +++ src/common/imagpng.cpp (revision 60875) @@ -568,18 +568,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60875) +++ src/common/imagtiff.cpp (revision 60876) @@ -261,7 +261,6 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); @@ -275,10 +274,21 @@ (samplesInfo[0] == EXTRASAMPLE_ASSOCALPHA || samplesInfo[0] == EXTRASAMPLE_UNASSALPHA)); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = w * h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + TIFFClose(tif); + return false; + } + + raster = (uint32*) _TIFFmalloc( bytesNeeded ); + if (!raster) { if (verbose) Index: src/common/imagtiff.cpp =================================================================== --- src/common/imagtiff.cpp (revision 60896) +++ src/common/imagtiff.cpp (revision 60897) @@ -276,7 +276,7 @@ // guard against integer overflow during multiplication which could result // in allocating a too small buffer and then overflowing it - const double bytesNeeded = w * h * sizeof(uint32); + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) { if ( verbose ) Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/EL-4/wxGTK.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- wxGTK.spec 10 Nov 2008 18:25:25 -0000 1.36 +++ wxGTK.spec 15 Jul 2009 18:08:26 -0000 1.37 @@ -16,6 +16,9 @@ Group: System Environment/Libra URL: http://www.wxwidgets.org/ Source0: http://dl.sf.net/wxwindows/%{name}-%{version}.tar.bz2 +# http://trac.wxwidgets.org/ticket/10993 +Patch0: %{name}-2.8.10-CVE-2009-2369.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -119,6 +122,7 @@ libraries or the X Window System. %prep %setup -q +%patch0 -p0 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' wx-config.in configure @@ -251,6 +255,7 @@ rm -rf $RPM_BUILD_ROOT %endif %files -n wxBase +%defattr(-,root,root,-) %doc docs/changes.txt docs/gpl.txt docs/lgpl.txt docs/licence.txt %doc docs/licendoc.txt docs/preamble.txt docs/readme.txt %{_libdir}/libwx_baseu-*.so.* @@ -259,6 +264,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Dan Hor??k - 2.8.9-2 +- add fix for CVE-2009-2369 (#511279) + * Mon Nov 10 2008 Dan Horak - 2.8.9-1 - update to 2.8.9 - drop upstreamed patch From sharkcz at fedoraproject.org Wed Jul 15 18:10:25 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Wed, 15 Jul 2009 18:10:25 +0000 (UTC) Subject: rpms/wxGTK/EL-4 wxGTK.spec,1.37,1.38 Message-ID: <20090715181025.5C99E11C00E2@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/wxGTK/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9326 Modified Files: wxGTK.spec Log Message: fix release Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/EL-4/wxGTK.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- wxGTK.spec 15 Jul 2009 18:08:26 -0000 1.37 +++ wxGTK.spec 15 Jul 2009 18:09:55 -0000 1.38 @@ -6,7 +6,7 @@ Name: wxGTK Version: 2.8.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually From oget at fedoraproject.org Wed Jul 15 18:10:31 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 18:10:31 +0000 (UTC) Subject: rpms/jack_capture/F-11 .cvsignore, 1.3, 1.4 jack_capture.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090715181031.C9B6F11C00E2@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/jack_capture/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9372 Modified Files: .cvsignore jack_capture.spec sources Log Message: * Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 - Update to 0.9.35 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 May 2009 21:56:30 -0000 1.3 +++ .cvsignore 15 Jul 2009 18:10:01 -0000 1.4 @@ -1 +1 @@ -jack_capture-0.9.34.tar.gz +jack_capture-0.9.35.tar.gz Index: jack_capture.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-11/jack_capture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jack_capture.spec 19 May 2009 21:56:30 -0000 1.2 +++ jack_capture.spec 15 Jul 2009 18:10:01 -0000 1.3 @@ -1,5 +1,5 @@ Name: jack_capture -Version: 0.9.34 +Version: 0.9.35 Release: 1%{?dist} Summary: Record sound files with JACK Group: Applications/Multimedia @@ -76,6 +76,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}.desktop %changelog +* Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 +- Update to 0.9.35 + * Tue May 19 2009 Orcan Ogetbil - 0.9.34-1 - Update to 0.9.34 - Drop upstreamed ppc64 patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 May 2009 21:56:30 -0000 1.3 +++ sources 15 Jul 2009 18:10:01 -0000 1.4 @@ -1 +1 @@ -c7535ffd785d1602e3aefbe7044d9411 jack_capture-0.9.34.tar.gz +8948c84b70b1b9f5c58ec7657ca2ebab jack_capture-0.9.35.tar.gz From oget at fedoraproject.org Wed Jul 15 18:11:40 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 15 Jul 2009 18:11:40 +0000 (UTC) Subject: rpms/jack_capture/F-10 .cvsignore, 1.3, 1.4 jack_capture.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090715181140.B7EDB11C00E2@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/jack_capture/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9819 Modified Files: .cvsignore jack_capture.spec sources Log Message: * Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 - Update to 0.9.35 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 19 May 2009 21:57:17 -0000 1.3 +++ .cvsignore 15 Jul 2009 18:11:10 -0000 1.4 @@ -1 +1 @@ -jack_capture-0.9.34.tar.gz +jack_capture-0.9.35.tar.gz Index: jack_capture.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-10/jack_capture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jack_capture.spec 19 May 2009 21:57:17 -0000 1.2 +++ jack_capture.spec 15 Jul 2009 18:11:10 -0000 1.3 @@ -1,5 +1,5 @@ Name: jack_capture -Version: 0.9.34 +Version: 0.9.35 Release: 1%{?dist} Summary: Record sound files with JACK Group: Applications/Multimedia @@ -76,6 +76,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}.desktop %changelog +* Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 +- Update to 0.9.35 + * Tue May 19 2009 Orcan Ogetbil - 0.9.34-1 - Update to 0.9.34 - Drop upstreamed ppc64 patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 19 May 2009 21:57:17 -0000 1.3 +++ sources 15 Jul 2009 18:11:10 -0000 1.4 @@ -1 +1 @@ -c7535ffd785d1602e3aefbe7044d9411 jack_capture-0.9.34.tar.gz +8948c84b70b1b9f5c58ec7657ca2ebab jack_capture-0.9.35.tar.gz From kevin at fedoraproject.org Wed Jul 15 18:11:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Wed, 15 Jul 2009 18:11:31 +0000 (UTC) Subject: rpms/supybot-meetbot/EL-5 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 supybot-meetbot.spec, 1.2, 1.3 Message-ID: <20090715181131.89A8411C00E2@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/supybot-meetbot/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9714 Modified Files: sources .cvsignore supybot-meetbot.spec Log Message: Update to 0.1.2 release Index: sources =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:47:05 -0000 1.2 +++ sources 15 Jul 2009 18:11:01 -0000 1.3 @@ -1 +1 @@ -2e517814d279ba73d1879b566358c65e MeetBot-0.1.1.tar.gz +933262dd707de735ae763f6046d4e77e MeetBot-0.1.2.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:47:05 -0000 1.2 +++ .cvsignore 15 Jul 2009 18:11:01 -0000 1.3 @@ -1 +1 @@ -MeetBot-0.1.1.tar.gz +MeetBot-0.1.2.tar.gz Index: supybot-meetbot.spec =================================================================== RCS file: /cvs/extras/rpms/supybot-meetbot/EL-5/supybot-meetbot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- supybot-meetbot.spec 7 Jul 2009 06:39:52 -0000 1.2 +++ supybot-meetbot.spec 15 Jul 2009 18:11:01 -0000 1.3 @@ -1,14 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: supybot-meetbot -Version: 0.1.1 -Release: 2%{?dist} +Version: 0.1.2 +Release: 1%{?dist} Summary: Plugin for Supybot for handling IRC meetings Group: Applications/Internet License: BSD URL: http://wiki.debian.org/MeatBot -Source0: http://rkd.zgib.net/http/code/MeetBot-0.1.1.tar.gz +Source0: http://rkd.zgib.net/http/code/MeetBot-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: supybot @@ -25,7 +25,7 @@ distinction between meeting-code and IRC easy to port to other bots. It is under the supybot license (3-clause BSD). %prep -%setup -q -n MeetBot-0.1.1 +%setup -q -n MeetBot-%{version} %build @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/supybot/plugins/MeetBot %changelog +* Wed Jul 15 2009 Kevin Fenzi - 0.1.2-1 +- Update to 0.1.2 release. + * Tue Jul 07 2009 Kevin Fenzi - 0.1.1-2 - Fix install location to be the correct name. - Add additional doc files From dwalsh at fedoraproject.org Wed Jul 15 18:14:52 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 15 Jul 2009 18:14:52 +0000 (UTC) Subject: rpms/selinux-policy/devel exclude, 1.1, 1.2 nsadiff, 1.12, 1.13 policy-F12.patch, 1.26, 1.27 selinux-policy.spec, 1.879, 1.880 Message-ID: <20090715181452.EBEBE11C00E2@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11329 Modified Files: exclude nsadiff policy-F12.patch selinux-policy.spec Log Message: * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream Index: exclude =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/exclude,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- exclude 9 Mar 2009 21:58:07 -0000 1.1 +++ exclude 15 Jul 2009 18:14:21 -0000 1.2 @@ -23,5 +23,6 @@ base.fc fc_sort CVS CVSROOT +.git .svn svn Index: nsadiff =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/nsadiff,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- nsadiff 6 Jul 2009 21:05:45 -0000 1.12 +++ nsadiff 15 Jul 2009 18:14:21 -0000 1.13 @@ -1 +1 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.21 > /tmp/diff +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.22 > /tmp/diff policy-F12.patch: View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.26 -r 1.27 policy-F12.patch Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- policy-F12.patch 8 Jul 2009 15:37:56 -0000 1.26 +++ policy-F12.patch 15 Jul 2009 18:14:21 -0000 1.27 @@ -1,6 +1,6 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.21/config/appconfig-mcs/default_contexts ---- nsaserefpolicy/config/appconfig-mcs/default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.22/config/appconfig-mcs/default_contexts +--- nsaserefpolicy/config/appconfig-mcs/default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -22,15 +22,15 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.21/config/appconfig-mcs/failsafe_context ---- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2008-08-07 11:15:14.000000000 -0400 -+++ serefpolicy-3.6.21/config/appconfig-mcs/failsafe_context 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.22/config/appconfig-mcs/failsafe_context +--- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/failsafe_context 2009-07-15 14:06:36.000000000 -0400 @@ -1 +1 @@ -sysadm_r:sysadm_t:s0 +system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.21/config/appconfig-mcs/root_default_contexts ---- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/root_default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/root_default_contexts +--- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/root_default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,11 +1,7 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -45,9 +45,9 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.21/config/appconfig-mcs/securetty_types ---- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-06-08 15:22:18.000000000 -0400 -+++ serefpolicy-3.6.21/config/appconfig-mcs/securetty_types 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.22/config/appconfig-mcs/securetty_types +--- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/securetty_types 2009-07-15 14:06:36.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -55,18 +55,18 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.21/config/appconfig-mcs/seusers ---- nsaserefpolicy/config/appconfig-mcs/seusers 2008-08-07 11:15:14.000000000 -0400 -+++ serefpolicy-3.6.21/config/appconfig-mcs/seusers 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.22/config/appconfig-mcs/seusers +--- nsaserefpolicy/config/appconfig-mcs/seusers 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/seusers 2009-07-15 14:06:36.000000000 -0400 @@ -1,3 +1,3 @@ system_u:system_u:s0-mcs_systemhigh -root:root:s0-mcs_systemhigh -__default__:user_u:s0 +root:unconfined_u:s0-mcs_systemhigh +__default__:unconfined_u:s0-mcs_systemhigh -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.21/config/appconfig-mcs/staff_u_default_contexts ---- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/staff_u_default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/staff_u_default_contexts +--- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/staff_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,10 +1,12 @@ system_r:local_login_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 system_r:remote_login_t:s0 staff_r:staff_t:s0 @@ -81,9 +81,9 @@ diff -b -B --ignore-all-space --exclude- sysadm_r:sysadm_su_t:s0 sysadm_r:sysadm_t:s0 sysadm_r:sysadm_sudo_t:s0 sysadm_r:sysadm_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.21/config/appconfig-mcs/unconfined_u_default_contexts ---- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/unconfined_u_default_contexts +--- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,4 +1,4 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 unconfined_r:unconfined_cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 @@ -97,15 +97,15 @@ diff -b -B --ignore-all-space --exclude- +system_r:initrc_su_t:s0 unconfined_r:unconfined_t:s0 +unconfined_r:unconfined_t:s0 unconfined_r:unconfined_t:s0 system_r:xdm_t:s0 unconfined_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.21/config/appconfig-mcs/userhelper_context ---- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2008-08-07 11:15:14.000000000 -0400 -+++ serefpolicy-3.6.21/config/appconfig-mcs/userhelper_context 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.22/config/appconfig-mcs/userhelper_context +--- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/userhelper_context 2009-07-15 14:06:36.000000000 -0400 @@ -1 +1 @@ -system_u:sysadm_r:sysadm_t:s0 +system_u:system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.21/config/appconfig-mcs/user_u_default_contexts ---- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/user_u_default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/user_u_default_contexts +--- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/user_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,8 +1,9 @@ system_r:local_login_t:s0 user_r:user_t:s0 system_r:remote_login_t:s0 user_r:user_t:s0 @@ -118,20 +118,20 @@ diff -b -B --ignore-all-space --exclude- - +system_r:initrc_su_t:s0 user_r:user_t:s0 +user_r:user_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.21/config/appconfig-mcs/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.22/config/appconfig-mcs/virtual_domain_context --- nsaserefpolicy/config/appconfig-mcs/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/virtual_domain_context 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/virtual_domain_context 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:svirt_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.21/config/appconfig-mcs/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.22/config/appconfig-mcs/virtual_image_context --- nsaserefpolicy/config/appconfig-mcs/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mcs/virtual_image_context 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mcs/virtual_image_context 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:svirt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.21/config/appconfig-mls/default_contexts ---- nsaserefpolicy/config/appconfig-mls/default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mls/default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.22/config/appconfig-mls/default_contexts +--- nsaserefpolicy/config/appconfig-mls/default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mls/default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -153,9 +153,9 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.21/config/appconfig-mls/root_default_contexts ---- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mls/root_default_contexts 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.22/config/appconfig-mls/root_default_contexts +--- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mls/root_default_contexts 2009-07-15 14:06:36.000000000 -0400 @@ -1,11 +1,11 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 -system_r:local_login_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -174,20 +174,20 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +#system_r:sshd_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.21/config/appconfig-mls/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.22/config/appconfig-mls/virtual_domain_context --- nsaserefpolicy/config/appconfig-mls/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mls/virtual_domain_context 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mls/virtual_domain_context 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:qemu_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.21/config/appconfig-mls/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.22/config/appconfig-mls/virtual_image_context --- nsaserefpolicy/config/appconfig-mls/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/config/appconfig-mls/virtual_image_context 2009-07-01 10:43:35.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-mls/virtual_image_context 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:virt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.21/config/appconfig-standard/securetty_types ---- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-06-08 15:22:18.000000000 -0400 -+++ serefpolicy-3.6.21/config/appconfig-standard/securetty_types 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.22/config/appconfig-standard/securetty_types +--- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/config/appconfig-standard/securetty_types 2009-07-15 14:06:36.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -195,9 +195,9 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.21/Makefile ---- nsaserefpolicy/Makefile 2009-01-19 11:07:35.000000000 -0500 -+++ serefpolicy-3.6.21/Makefile 2009-07-01 10:43:35.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.22/Makefile +--- nsaserefpolicy/Makefile 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/Makefile 2009-07-15 14:06:36.000000000 -0400 @@ -241,7 +241,7 @@ appdir := $(contextpath) user_default_contexts := $(wildcard config/appconfig-$(TYPE)/*_default_contexts) @@ -260,9 +260,9 @@ diff -b -B --ignore-all-space --exclude- $(appdir)/%: $(appconf)/% @mkdir -p $(appdir) $(verbose) $(INSTALL) -m 644 $< $@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.21/policy/global_tunables [...6362 lines suppressed...] ######################################## ## @@ -29279,7 +29535,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -1787,6 +1955,46 @@ +@@ -1787,6 +1947,46 @@ ######################################## ## @@ -29326,7 +29582,7 @@ diff -b -B --ignore-all-space --exclude- ## Create, read, write, and delete files ## in a user home subdirectory. ## -@@ -1799,6 +2007,7 @@ +@@ -1799,6 +1999,7 @@ interface(`userdom_manage_user_home_content_files',` gen_require(` type user_home_dir_t, user_home_t; @@ -29334,7 +29590,7 @@ diff -b -B --ignore-all-space --exclude- ') manage_files_pattern($1, user_home_t, user_home_t) -@@ -2328,7 +2537,7 @@ +@@ -2328,7 +2529,7 @@ ######################################## ## @@ -29343,7 +29599,7 @@ diff -b -B --ignore-all-space --exclude- ## ## ## -@@ -2682,11 +2891,32 @@ +@@ -2682,11 +2883,32 @@ # interface(`userdom_search_user_home_content',` gen_require(` @@ -29378,7 +29634,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -2814,7 +3044,25 @@ +@@ -2814,7 +3036,25 @@ type user_tmp_t; ') @@ -29405,7 +29661,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -2851,6 +3099,7 @@ +@@ -2851,6 +3091,7 @@ ') read_files_pattern($1, userdomain, userdomain) @@ -29413,7 +29669,7 @@ diff -b -B --ignore-all-space --exclude- kernel_search_proc($1) ') -@@ -2981,3 +3230,481 @@ +@@ -2981,3 +3222,481 @@ allow $1 userdomain:dbus send_msg; ') @@ -29895,9 +30151,9 @@ diff -b -B --ignore-all-space --exclude- + + dontaudit $1 userdomain:unix_stream_socket rw_socket_perms; +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.21/policy/modules/system/userdomain.te ---- nsaserefpolicy/policy/modules/system/userdomain.te 2009-06-26 13:59:21.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/system/userdomain.te 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.22/policy/modules/system/userdomain.te +--- nsaserefpolicy/policy/modules/system/userdomain.te 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/userdomain.te 2009-07-15 14:06:36.000000000 -0400 @@ -8,13 +8,6 @@ ## @@ -29983,14 +30239,14 @@ diff -b -B --ignore-all-space --exclude- +') + +allow userdomain userdomain:process signull; -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.21/policy/modules/system/virtual.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.22/policy/modules/system/virtual.fc --- nsaserefpolicy/policy/modules/system/virtual.fc 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/system/virtual.fc 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/virtual.fc 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1 @@ +# No application file contexts. -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.21/policy/modules/system/virtual.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.22/policy/modules/system/virtual.if --- nsaserefpolicy/policy/modules/system/virtual.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/system/virtual.if 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/virtual.if 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1,119 @@ +## Virtual machine emulator and virtualizer + @@ -30111,9 +30367,9 @@ diff -b -B --ignore-all-space --exclude- + allow $1 virtualdomain:process { setsched transition signal signull sigkill }; +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.21/policy/modules/system/virtual.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.22/policy/modules/system/virtual.te --- nsaserefpolicy/policy/modules/system/virtual.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/system/virtual.te 2009-07-01 10:43:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/virtual.te 2009-07-15 14:06:36.000000000 -0400 @@ -0,0 +1,75 @@ + +policy_module(virtualization, 1.1.2) @@ -30190,9 +30446,9 @@ diff -b -B --ignore-all-space --exclude- + xserver_read_xdm_pid(virtualdomain) + xserver_rw_shm(virtualdomain) +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.21/policy/modules/system/xen.fc ---- nsaserefpolicy/policy/modules/system/xen.fc 2009-01-05 15:39:43.000000000 -0500 -+++ serefpolicy-3.6.21/policy/modules/system/xen.fc 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.22/policy/modules/system/xen.fc +--- nsaserefpolicy/policy/modules/system/xen.fc 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/xen.fc 2009-07-15 14:06:36.000000000 -0400 @@ -1,5 +1,7 @@ /dev/xen/tapctrl.* -p gen_context(system_u:object_r:xenctl_t,s0) @@ -30220,9 +30476,9 @@ diff -b -B --ignore-all-space --exclude- /var/run/xenstore\.pid -- gen_context(system_u:object_r:xenstored_var_run_t,s0) /var/run/xenstored(/.*)? gen_context(system_u:object_r:xenstored_var_run_t,s0) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.21/policy/modules/system/xen.if ---- nsaserefpolicy/policy/modules/system/xen.if 2009-06-26 13:59:21.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/system/xen.if 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.22/policy/modules/system/xen.if +--- nsaserefpolicy/policy/modules/system/xen.if 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/xen.if 2009-07-15 14:06:36.000000000 -0400 @@ -71,6 +71,8 @@ ') @@ -30295,9 +30551,9 @@ diff -b -B --ignore-all-space --exclude- + files_search_pids($1) +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.21/policy/modules/system/xen.te ---- nsaserefpolicy/policy/modules/system/xen.te 2009-06-26 13:59:21.000000000 -0400 -+++ serefpolicy-3.6.21/policy/modules/system/xen.te 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.22/policy/modules/system/xen.te +--- nsaserefpolicy/policy/modules/system/xen.te 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/xen.te 2009-07-15 14:06:36.000000000 -0400 @@ -6,6 +6,13 @@ # Declarations # @@ -30592,9 +30848,9 @@ diff -b -B --ignore-all-space --exclude- +libs_use_ld_so(evtchnd_t) +libs_use_shared_libs(evtchnd_t) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.21/policy/support/obj_perm_sets.spt ---- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-03-12 11:16:47.000000000 -0400 -+++ serefpolicy-3.6.21/policy/support/obj_perm_sets.spt 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.22/policy/support/obj_perm_sets.spt +--- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/support/obj_perm_sets.spt 2009-07-15 14:06:36.000000000 -0400 @@ -201,7 +201,7 @@ define(`setattr_file_perms',`{ setattr }') define(`read_file_perms',`{ getattr open read lock ioctl }') @@ -30627,9 +30883,9 @@ diff -b -B --ignore-all-space --exclude- +define(`all_association_perms', `{ sendto recvfrom setcontext polmatch } ') + +define(`manage_key_perms', `{ create link read search setattr view write } ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.21/policy/users ---- nsaserefpolicy/policy/users 2008-08-07 11:15:13.000000000 -0400 -+++ serefpolicy-3.6.21/policy/users 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.22/policy/users +--- nsaserefpolicy/policy/users 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/policy/users 2009-07-15 14:06:36.000000000 -0400 @@ -25,11 +25,8 @@ # permit any access to such users, then remove this entry. # @@ -30654,9 +30910,9 @@ diff -b -B --ignore-all-space --exclude- - gen_user(root, sysadm, sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r'), s0, s0 - mls_systemhigh, mcs_allcats) -') +gen_user(root, user, unconfined_r sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r') system_r, s0, s0 - mls_systemhigh, mcs_allcats) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.21/Rules.modular ---- nsaserefpolicy/Rules.modular 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/Rules.modular 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.22/Rules.modular +--- nsaserefpolicy/Rules.modular 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/Rules.modular 2009-07-15 14:06:36.000000000 -0400 @@ -73,8 +73,8 @@ $(tmpdir)/%.mod: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf %.te @echo "Compliling $(NAME) $(@F) module" @@ -30686,9 +30942,9 @@ diff -b -B --ignore-all-space --exclude- $(tmpdir)/all_te_files.conf: M4PARAM += -D self_contained_policy $(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(base_te_files) $(tmpdir)/rolemap.conf -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.21/support/Makefile.devel ---- nsaserefpolicy/support/Makefile.devel 2008-11-11 16:13:50.000000000 -0500 -+++ serefpolicy-3.6.21/support/Makefile.devel 2009-07-01 10:43:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.22/support/Makefile.devel +--- nsaserefpolicy/support/Makefile.devel 2009-07-14 14:19:57.000000000 -0400 ++++ serefpolicy-3.6.22/support/Makefile.devel 2009-07-15 14:06:36.000000000 -0400 @@ -185,8 +185,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te @$(EINFO) "Compiling $(NAME) $(basename $(@F)) module" Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.879 retrieving revision 1.880 diff -u -p -r1.879 -r1.880 --- selinux-policy.spec 8 Jul 2009 15:37:57 -0000 1.879 +++ selinux-policy.spec 15 Jul 2009 18:14:22 -0000 1.880 @@ -19,8 +19,8 @@ %define CHECKPOLICYVER 2.0.16-3 Summary: SELinux policy configuration Name: selinux-policy -Version: 3.6.21 -Release: 3%{?dist} +Version: 3.6.22 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,12 @@ exit 0 %endif %changelog +* Tue Jul 14 2009 Dan Walsh 3.6.22-1 +- Update to upstream + +* Fri Jul 10 2009 Dan Walsh 3.6.21-4 +- Allow clamscan read amavis spool files + * Wed Jul 8 2009 Dan Walsh 3.6.21-3 - Fixes for xguest From mclasen at fedoraproject.org Wed Jul 15 18:15:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 18:15:58 +0000 (UTC) Subject: rpms/gnome-session/devel .cvsignore, 1.75, 1.76 gnome-session.spec, 1.239, 1.240 sources, 1.79, 1.80 watch-spew.patch, 1.1, 1.2 Message-ID: <20090715181558.83D6311C00E2@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11607 Modified Files: .cvsignore gnome-session.spec sources watch-spew.patch Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/.cvsignore,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- .cvsignore 14 Apr 2009 17:11:55 -0000 1.75 +++ .cvsignore 15 Jul 2009 18:15:27 -0000 1.76 @@ -1 +1 @@ -gnome-session-2.26.1.tar.bz2 +gnome-session-2.27.4.tar.bz2 Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.239 retrieving revision 1.240 diff -u -p -r1.239 -r1.240 --- gnome-session.spec 10 Jul 2009 14:03:21 -0000 1.239 +++ gnome-session.spec 15 Jul 2009 18:15:28 -0000 1.240 @@ -9,19 +9,16 @@ Summary: GNOME session manager Name: gnome-session -Version: 2.26.1 -Release: 5%{?dist} +Version: 2.27.4 +Release: 1%{?dist} URL: http://www.gnome.org -Source0: http://download.gnome.org/sources/gnome-session/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/gnome-session/2.27/%{name}-%{version}.tar.bz2 Source2: gnome.desktop # http://bugzilla.redhat.com/show_bug.cgi?id=497619 # http://bugzilla.gnome.org/show_bug.cgi?id=585614 Patch0: polkit1.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=588247 -Patch1: watch-spew.patch - License: GPLv2+ Group: User Interface/Desktops BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -61,7 +58,6 @@ BuildRequires: libtool BuildRequires: gettext BuildRequires: libX11-devel libXt-devel BuildRequires: libXtst-devel -BuildRequires: PolicyKit-gnome-devel BuildRequires: xmlto Requires(pre): GConf2 >= %{gconf2_version} @@ -84,7 +80,6 @@ Desktop file to add GNOME to display man %prep %setup -q %patch0 -p1 -b .polkit1 -%patch1 -p1 -b .watch-spew #workaround broken perl-XML-Parser on 64bit arches export PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.2 perl @@ -177,6 +172,9 @@ fi %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Fri Jul 10 2009 Matthias Clasen - 2.26.1-5 - Avoid pointless warnings Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/sources,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- sources 14 Apr 2009 17:11:55 -0000 1.79 +++ sources 15 Jul 2009 18:15:28 -0000 1.80 @@ -1 +1 @@ -aa280939a3e07209081095e8e10fe619 gnome-session-2.26.1.tar.bz2 +bf4d141f72c182d8eadc68e42a4a5343 gnome-session-2.27.4.tar.bz2 watch-spew.patch: Index: watch-spew.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/watch-spew.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- watch-spew.patch 10 Jul 2009 14:03:21 -0000 1.1 +++ watch-spew.patch 15 Jul 2009 18:15:28 -0000 1.2 @@ -1,12 +1,12 @@ diff -up gnome-session-2.26.1/gnome-session/gs-idle-monitor.c.watch-spew gnome-session-2.26.1/gnome-session/gs-idle-monitor.c ---- gnome-session-2.26.1/gnome-session/gs-idle-monitor.c.watch-spew 2009-07-10 09:54:42.872161348 -0400 -+++ gnome-session-2.26.1/gnome-session/gs-idle-monitor.c 2009-07-10 09:54:53.169623355 -0400 +--- gnome-session-2.26.1/gnome-session/gs-idle-monitor.c.watch-spew 2009-04-14 11:31:45.000000000 -0400 ++++ gnome-session-2.26.1/gnome-session/gs-idle-monitor.c 2009-07-13 16:30:09.454700964 -0400 @@ -188,7 +188,7 @@ handle_alarm_notify_event (GSIdleMonitor watch = find_watch_for_alarm (monitor, alarm_event->alarm); if (watch == NULL) { -- g_warning ("Unable to find watch for alarm %d, counter value %d, alarm value %d, time %d state %d", (int)alarm_event->alarm, alarm_event->counter_value.lo, alarm_event->alarm_value.lo, time, state); -+ g_debug ("Unable to find watch for alarm %d, counter value %d, alarm value %d, time %d state %d", (int)alarm_event->alarm, alarm_event->counter_value.lo, alarm_event->alarm_value.lo, time, state); +- g_warning ("Unable to find watch for alarm %d", (int)alarm_event->alarm); ++ g_debug ("Unable to find watch for alarm %d", (int)alarm_event->alarm); return; } From rjones at fedoraproject.org Wed Jul 15 18:18:09 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 18:18:09 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs-1.0.61-no-locale-for-perl.patch, NONE, 1.1 libguestfs.spec, 1.44, 1.45 Message-ID: <20090715181809.DF2E011C00E2@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12493 Modified Files: libguestfs.spec Added Files: libguestfs-1.0.61-no-locale-for-perl.patch Log Message: Pull in upstream fix for building Perl bindings. libguestfs-1.0.61-no-locale-for-perl.patch: --- NEW FILE libguestfs-1.0.61-no-locale-for-perl.patch --- diff --git a/configure.ac b/configure.ac index 6b14c4a..59eeb9d 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,7 @@ AC_CHECK_PROG([PERL],[perl],[perl],[no]) dnl Check for Perl modules that must be present to compile and dnl test the Perl bindings. missing_perl_modules=no -for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker Locale::TextDomain; do +for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker; do AC_MSG_CHECKING([for $pm]) if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no]) Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- libguestfs.spec 15 Jul 2009 17:38:43 -0000 1.44 +++ libguestfs.spec 15 Jul 2009 18:18:09 -0000 1.45 @@ -4,13 +4,15 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.61 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Patch0: libguestfs-1.0.61-no-locale-for-perl.patch + # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -300,6 +302,8 @@ Requires: jpackage-utils %prep %setup -q +%patch0 -p1 + mkdir -p daemon/m4 @@ -533,10 +537,11 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-2 +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-3 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl (not enabled, because not in EPEL). +- Pull in upstream fix for building Perl bindings. * Wed Jul 15 2009 Richard W.M. Jones - 1.0.60-2 - Fix runtime Requires so they use epoch correctly. From dwalsh at fedoraproject.org Wed Jul 15 18:19:46 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 15 Jul 2009 18:19:46 +0000 (UTC) Subject: rpms/selinux-policy/devel .cvsignore, 1.174, 1.175 sources, 1.194, 1.195 Message-ID: <20090715181946.B3DC711C00E2@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12874 Modified Files: .cvsignore sources Log Message: * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/.cvsignore,v retrieving revision 1.174 retrieving revision 1.175 diff -u -p -r1.174 -r1.175 --- .cvsignore 6 Jul 2009 21:05:45 -0000 1.174 +++ .cvsignore 15 Jul 2009 18:19:16 -0000 1.175 @@ -177,3 +177,4 @@ serefpolicy-3.6.19.tgz serefpolicy-3.6.20.tgz serefpolicy-3.6.21.tgz setroubleshoot-2.2.11.tar.gz +serefpolicy-3.6.22.tgz Index: sources =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/sources,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- sources 6 Jul 2009 21:05:45 -0000 1.194 +++ sources 15 Jul 2009 18:19:16 -0000 1.195 @@ -1 +1 @@ -25f48f8897109e205e666999c7cb64a1 serefpolicy-3.6.21.tgz +cd43ce2443ce5e627dee964df3df65a5 serefpolicy-3.6.22.tgz From jwrdegoede at fedoraproject.org Wed Jul 15 18:28:32 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Wed, 15 Jul 2009 18:28:32 +0000 (UTC) Subject: rpms/gt/devel gt.spec,1.6,1.7 Message-ID: <20090715182832.8E40111C00E2@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/gt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15469 Modified Files: gt.spec Log Message: * Wed Jul 15 2009 Hans de Goede 0.4-9 - Add missing BR flex, fixing FTBFS (#511363) Index: gt.spec =================================================================== RCS file: /cvs/extras/rpms/gt/devel/gt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gt.spec 25 Feb 2009 01:40:03 -0000 1.6 +++ gt.spec 15 Jul 2009 18:28:02 -0000 1.7 @@ -1,6 +1,6 @@ Name: gt Version: 0.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Modified Timidity which supportes enhanced gus format patches Group: Applications/Multimedia License: GPLv2+ @@ -18,7 +18,7 @@ Patch4: gt-0.4-ppc-compile-fix.p Patch5: gt-0.4-unsf-bigendian-fix.patch Patch6: gt-0.4-unsf-tremolo.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: alsa-lib-devel libvorbis-devel +BuildRequires: alsa-lib-devel libvorbis-devel flex Requires: timidity++-patches %description @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Hans de Goede 0.4-9 +- Add missing BR flex, fixing FTBFS (#511363) + * Tue Feb 24 2009 Fedora Release Engineering - 0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rjones at fedoraproject.org Wed Jul 15 18:38:17 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 18:38:17 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.45,1.46 Message-ID: <20090715183817.AA2B611C00E2@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18703 Modified Files: libguestfs.spec Log Message: Need to rerun autoreconf. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- libguestfs.spec 15 Jul 2009 18:18:09 -0000 1.45 +++ libguestfs.spec 15 Jul 2009 18:37:47 -0000 1.46 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.61 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -12,6 +12,7 @@ Source0: http://libguestfs.org/downl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Patch0: libguestfs-1.0.61-no-locale-for-perl.patch +BuildRequires: automake, autoconf, libtool # Currently fails on PPC because: # "No Package Found for kernel" @@ -302,10 +303,11 @@ Requires: jpackage-utils %prep %setup -q -%patch0 -p1 - mkdir -p daemon/m4 +%patch0 -p1 +autoreconf + %build %if %{buildnonet} @@ -537,7 +539,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-3 +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-4 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl (not enabled, because not in EPEL). From pkgdb at fedoraproject.org Wed Jul 15 18:42:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 18:42:07 +0000 Subject: [pkgdb] ant-contrib ownership updated Message-ID: <20090715184207.176CA10F84C@bastion2.fedora.phx.redhat.com> Package ant-contrib in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ant-contrib From awjb at fedoraproject.org Wed Jul 15 18:52:02 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Wed, 15 Jul 2009 18:52:02 +0000 (UTC) Subject: rpms/libetpan/F-11 .cvsignore, 1.16, 1.17 libetpan.spec, 1.27, 1.28 sources, 1.16, 1.17 Message-ID: <20090715185202.02C7C11C00E2@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libetpan/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24103/F-11 Modified Files: .cvsignore libetpan.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 21 Nov 2008 06:47:02 -0000 1.16 +++ .cvsignore 15 Jul 2009 18:51:31 -0000 1.17 @@ -1 +1 @@ -libetpan-0.57.tar.gz +libetpan-0.58.tar.gz Index: libetpan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-11/libetpan.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libetpan.spec 25 Feb 2009 14:35:11 -0000 1.27 +++ libetpan.spec 15 Jul 2009 18:51:31 -0000 1.28 @@ -1,6 +1,6 @@ Name: libetpan -Version: 0.57 -Release: 2%{?dist} +Version: 0.58 +Release: 1%{?dist} Summary: Portable, efficient middleware for different kinds of mail access Group: System Environment/Libraries @@ -48,7 +48,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT%{_libdir}/libetpan.{,l}a -chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.2 +chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.3 touch -r ChangeLog $RPM_BUILD_ROOT%{_bindir}/libetpan-config @@ -72,6 +72,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 15 2009 Andreas Bierfert +- 0.58-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.57-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-11/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 21 Nov 2008 06:47:02 -0000 1.16 +++ sources 15 Jul 2009 18:51:31 -0000 1.17 @@ -1 +1 @@ -8ce8c6c071e81884a475b12b7f9a9cc0 libetpan-0.57.tar.gz +bf20b5c0548f06b94bc588afdf5b3436 libetpan-0.58.tar.gz From awjb at fedoraproject.org Wed Jul 15 18:52:01 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Wed, 15 Jul 2009 18:52:01 +0000 (UTC) Subject: rpms/libetpan/F-10 .cvsignore, 1.16, 1.17 libetpan.spec, 1.26, 1.27 sources, 1.16, 1.17 Message-ID: <20090715185201.C336011C00E2@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libetpan/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24103/F-10 Modified Files: .cvsignore libetpan.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-10/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 21 Nov 2008 06:47:00 -0000 1.16 +++ .cvsignore 15 Jul 2009 18:51:31 -0000 1.17 @@ -1 +1 @@ -libetpan-0.57.tar.gz +libetpan-0.58.tar.gz Index: libetpan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-10/libetpan.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libetpan.spec 21 Nov 2008 06:47:00 -0000 1.26 +++ libetpan.spec 15 Jul 2009 18:51:31 -0000 1.27 @@ -1,5 +1,5 @@ Name: libetpan -Version: 0.57 +Version: 0.58 Release: 1%{?dist} Summary: Portable, efficient middleware for different kinds of mail access @@ -48,7 +48,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT%{_libdir}/libetpan.{,l}a -chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.2 +chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.3 touch -r ChangeLog $RPM_BUILD_ROOT%{_bindir}/libetpan-config @@ -72,6 +72,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 15 2009 Andreas Bierfert +- 0.58-1 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.57-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Nov 21 2008 Andreas Bierfert - 0.57-1 - version upgrade Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/F-10/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 21 Nov 2008 06:47:00 -0000 1.16 +++ sources 15 Jul 2009 18:51:31 -0000 1.17 @@ -1 +1 @@ -8ce8c6c071e81884a475b12b7f9a9cc0 libetpan-0.57.tar.gz +bf20b5c0548f06b94bc588afdf5b3436 libetpan-0.58.tar.gz From awjb at fedoraproject.org Wed Jul 15 18:52:02 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Wed, 15 Jul 2009 18:52:02 +0000 (UTC) Subject: rpms/libetpan/devel .cvsignore, 1.16, 1.17 libetpan.spec, 1.27, 1.28 sources, 1.16, 1.17 Message-ID: <20090715185202.3B5F111C00E2@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libetpan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24103/devel Modified Files: .cvsignore libetpan.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 21 Nov 2008 06:47:02 -0000 1.16 +++ .cvsignore 15 Jul 2009 18:51:31 -0000 1.17 @@ -1 +1 @@ -libetpan-0.57.tar.gz +libetpan-0.58.tar.gz Index: libetpan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/devel/libetpan.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libetpan.spec 25 Feb 2009 14:35:11 -0000 1.27 +++ libetpan.spec 15 Jul 2009 18:51:32 -0000 1.28 @@ -1,6 +1,6 @@ Name: libetpan -Version: 0.57 -Release: 2%{?dist} +Version: 0.58 +Release: 1%{?dist} Summary: Portable, efficient middleware for different kinds of mail access Group: System Environment/Libraries @@ -48,7 +48,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT%{_libdir}/libetpan.{,l}a -chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.2 +chmod 755 $RPM_BUILD_ROOT%{_libdir}/libetpan.so.13.1.3 touch -r ChangeLog $RPM_BUILD_ROOT%{_bindir}/libetpan-config @@ -72,6 +72,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Wed Jul 15 2009 Andreas Bierfert +- 0.58-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.57-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 21 Nov 2008 06:47:02 -0000 1.16 +++ sources 15 Jul 2009 18:51:32 -0000 1.17 @@ -1 +1 @@ -8ce8c6c071e81884a475b12b7f9a9cc0 libetpan-0.57.tar.gz +bf20b5c0548f06b94bc588afdf5b3436 libetpan-0.58.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 18:52:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 18:52:41 +0000 Subject: [pkgdb] jdepend ownership updated Message-ID: <20090715185241.79D5710F888@bastion2.fedora.phx.redhat.com> Package jdepend in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jdepend From mmcgrath at fedoraproject.org Wed Jul 15 18:54:03 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 15 Jul 2009 18:54:03 +0000 (UTC) Subject: rpms/nagios/devel .cvsignore,1.18,1.19 sources,1.19,1.20 Message-ID: <20090715185403.A1AF711C00E2@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/nagios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25008 Modified Files: .cvsignore sources Log Message: upstream has released 3.1.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nagios/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 2 Dec 2008 21:23:44 -0000 1.18 +++ .cvsignore 15 Jul 2009 18:54:03 -0000 1.19 @@ -1 +1 @@ -nagios-3.0.6.tar.gz +nagios-3.1.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nagios/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 2 Dec 2008 21:23:44 -0000 1.19 +++ sources 15 Jul 2009 18:54:03 -0000 1.20 @@ -1 +1 @@ -900e3f4164f4b2a18485420eeaefe812 nagios-3.0.6.tar.gz +f3c60428cba14264c709749182b8d93e nagios-3.1.2.tar.gz From pkgdb at fedoraproject.org Wed Jul 15 18:54:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 18:54:20 +0000 Subject: [pkgdb] javacc ownership updated Message-ID: <20090715185420.E5E0510F84C@bastion2.fedora.phx.redhat.com> Package javacc in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/javacc From mmcgrath at fedoraproject.org Wed Jul 15 18:55:32 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Wed, 15 Jul 2009 18:55:32 +0000 (UTC) Subject: rpms/nagios/devel nagios.spec,1.70,1.71 Message-ID: <20090715185532.1120B11C00E2@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/nagios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25399 Modified Files: nagios.spec Log Message: release bump for build Index: nagios.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios/devel/nagios.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- nagios.spec 1 Jul 2009 02:42:18 -0000 1.70 +++ nagios.spec 15 Jul 2009 18:55:01 -0000 1.71 @@ -1,7 +1,7 @@ Name: nagios Version: 3.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Host/service/network monitoring program Group: Applications/System @@ -203,6 +203,9 @@ fi %{_includedir}/%{name} %changelog +* Wed Jul 15 2009 Mike McGrath 3.2.1-2 +- Release bump for rebuild + * Mon Jun 29 2009 Robert M. Albrecht 3.2.1-1 - Upstream released a new version From pkgdb at fedoraproject.org Wed Jul 15 18:55:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 18:55:39 +0000 Subject: [pkgdb] libreadline-java ownership updated Message-ID: <20090715185539.644FD10F89C@bastion2.fedora.phx.redhat.com> Package libreadline-java in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libreadline-java From mclasen at fedoraproject.org Wed Jul 15 18:57:08 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 18:57:08 +0000 (UTC) Subject: rpms/gnome-panel/devel .cvsignore, 1.95, 1.96 gnome-panel.spec, 1.356, 1.357 sources, 1.98, 1.99 Message-ID: <20090715185708.E512D11C00E2@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25313 Modified Files: .cvsignore gnome-panel.spec sources Log Message: 2.27.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/.cvsignore,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- .cvsignore 20 May 2009 17:28:34 -0000 1.95 +++ .cvsignore 15 Jul 2009 18:57:08 -0000 1.96 @@ -1 +1 @@ -gnome-panel-2.26.2.tar.bz2 +gnome-panel-2.27.4.tar.bz2 Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/gnome-panel.spec,v retrieving revision 1.356 retrieving revision 1.357 diff -u -p -r1.356 -r1.357 --- gnome-panel.spec 10 Jun 2009 04:20:34 -0000 1.356 +++ gnome-panel.spec 15 Jul 2009 18:57:08 -0000 1.357 @@ -22,10 +22,10 @@ Summary: GNOME panel Name: gnome-panel -Version: 2.26.2 -Release: 3%{?dist} +Version: 2.27.4 +Release: 1%{?dist} URL: http://www.gnome.org -Source0: http://download.gnome.org/sources/gnome-panel/2.26/%{name}-%{version}.tar.bz2 +Source0: http://download.gnome.org/sources/gnome-panel/2.27/%{name}-%{version}.tar.bz2 Source3: redhat-panel-default-setup.entries Source4: gnome-compiler-flags.m4 @@ -365,6 +365,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jun 9 2009 Matthias Clasen - 2.26.2-3 - Port to PolicyKit 1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/sources,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- sources 20 May 2009 17:28:34 -0000 1.98 +++ sources 15 Jul 2009 18:57:08 -0000 1.99 @@ -1 +1 @@ -07974105fec9a6bab8be8b20b9b956e9 gnome-panel-2.26.2.tar.bz2 +8878c295b927f9a42273ff414a8bfdd8 gnome-panel-2.27.4.tar.bz2 From bioinfornatics at fedoraproject.org Wed Jul 15 19:05:56 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 19:05:56 +0000 (UTC) Subject: rpms/valide/devel import.log,1.2,1.3 valide.spec,1.2,1.3 Message-ID: <20090715190556.1854B11C00E2@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28496/devel Modified Files: import.log valide.spec Log Message: Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 15 Jul 2009 17:41:08 -0000 1.2 +++ import.log 15 Jul 2009 19:05:25 -0000 1.3 @@ -1,2 +1,3 @@ valide-0_5_1-0_11_20090713svn278_fc11:HEAD:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247657817 valide-0_5_1-0_12_20090715svn280_fc11:HEAD:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247679623 +valide-0_5_1-0_13_20090715svn280_fc11:HEAD:valide-0.5.1-0.13.20090715svn280.fc11.src.rpm:1247684671 Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- valide.spec 15 Jul 2009 17:41:08 -0000 1.2 +++ valide.spec 15 Jul 2009 19:05:25 -0000 1.3 @@ -10,7 +10,7 @@ Name: valide Version: 0.5.1 -Release: 0.12.%{alphatag}%{svn_revision}%{?dist} +Release: 0.13.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,8 +106,11 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.13.20090713svn280 +- Fix changelog + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 -- Update to revision +- Update to revision 280 * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From pkgdb at fedoraproject.org Wed Jul 15 19:08:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:08:36 +0000 Subject: [pkgdb] qdox ownership updated Message-ID: <20090715190836.8E30E10F888@bastion2.fedora.phx.redhat.com> Package qdox in Fedora devel is now owned by akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qdox From pkgdb at fedoraproject.org Wed Jul 15 19:11:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:11:01 +0000 Subject: [pkgdb] jakarta-taglibs-standard ownership updated Message-ID: <20090715191101.29EB510F84C@bastion2.fedora.phx.redhat.com> Package jakarta-taglibs-standard in Fedora devel is now owned by fnasser To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-taglibs-standard From mschwendt at fedoraproject.org Wed Jul 15 19:11:35 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 15 Jul 2009 19:11:35 +0000 (UTC) Subject: rpms/compat-wxGTK26/devel wxGTK-2.6.4-CVE-2009-2369.patch, NONE, 1.1 compat-wxGTK26.spec, 1.27, 1.28 Message-ID: <20090715191135.97A7C11C00E2@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/compat-wxGTK26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30207 Modified Files: compat-wxGTK26.spec Added Files: wxGTK-2.6.4-CVE-2009-2369.patch Log Message: * Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 - apply rediffed fix for CVE-2009-2369 (#511279) wxGTK-2.6.4-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.6.4-CVE-2009-2369.patch --- diff -Nur wxGTK-2.6.4-orig/src/common/imagpng.cpp wxGTK-2.6.4/src/common/imagpng.cpp --- wxGTK-2.6.4-orig/src/common/imagpng.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagpng.cpp 2009-07-15 21:07:50.000000000 +0200 @@ -570,18 +570,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); diff -Nur wxGTK-2.6.4-orig/src/common/imagtiff.cpp wxGTK-2.6.4/src/common/imagtiff.cpp --- wxGTK-2.6.4-orig/src/common/imagtiff.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagtiff.cpp 2009-07-15 21:08:08.000000000 +0200 @@ -232,15 +232,25 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); TIFFGetField( tif, TIFFTAG_IMAGELENGTH, &h ); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); + + TIFFClose(tif); + + return false; + } - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + raster = (uint32*) _TIFFmalloc( bytesNeeded ); if (!raster) { Index: compat-wxGTK26.spec =================================================================== RCS file: /cvs/extras/rpms/compat-wxGTK26/devel/compat-wxGTK26.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- compat-wxGTK26.spec 11 Jun 2009 11:35:21 -0000 1.27 +++ compat-wxGTK26.spec 15 Jul 2009 19:11:35 -0000 1.28 @@ -1,6 +1,6 @@ Name: compat-wxGTK26 Version: 2.6.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -18,6 +18,7 @@ Patch5: wxGTK-2.6.3-expat2.patch Patch6: wxGTK-2.6.3-strconv.patch Patch7: wxGTK-2.6.4-config-script.patch Patch8: wxGTK-2.6.4-gsocket-conflict.patch +Patch9: wxGTK-2.6.4-CVE-2009-2369.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -57,6 +58,8 @@ This package include files needed to lin %patch6 -p1 -b .strconv %patch7 -p1 -b .config-script %patch8 -p1 -b .gsocket-conflict +# http://trac.wxwidgets.org/ticket/10993 +%patch9 -p1 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' configure @@ -205,6 +208,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 +- apply rediffed fix for CVE-2009-2369 (#511279) + * Thu Jun 11 2009 Michael Schwendt - 2.6.4-9 - glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that conflicts with wxGTK's GSocket class (gsocket.h): reduce the glib/gdk From dwalsh at fedoraproject.org Wed Jul 15 19:12:05 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Wed, 15 Jul 2009 19:12:05 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch,1.27,1.28 Message-ID: <20090715191205.40FBC11C00E2@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30383 Modified Files: policy-F12.patch Log Message: * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream policy-F12.patch: Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- policy-F12.patch 15 Jul 2009 18:14:21 -0000 1.27 +++ policy-F12.patch 15 Jul 2009 19:12:04 -0000 1.28 @@ -5617,8 +5617,8 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/wm.te serefpolicy-3.6.22/policy/modules/apps/wm.te --- nsaserefpolicy/policy/modules/apps/wm.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/apps/wm.te 2009-07-15 14:06:36.000000000 -0400 -@@ -0,0 +1,13 @@ ++++ serefpolicy-3.6.22/policy/modules/apps/wm.te 2009-07-15 15:11:12.000000000 -0400 +@@ -0,0 +1,9 @@ +policy_module(wm,0.0.4) + +######################################## @@ -5628,10 +5628,6 @@ diff -b -B --ignore-all-space --exclude- + +type wm_exec_t; +corecmd_executable_file(wm_exec_t) -+ -+type wm_t; -+domain_type(wm_t) -+domain_entry_file(wm_t, wm_exec_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/corecommands.fc serefpolicy-3.6.22/policy/modules/kernel/corecommands.fc --- nsaserefpolicy/policy/modules/kernel/corecommands.fc 2009-07-14 14:19:57.000000000 -0400 +++ serefpolicy-3.6.22/policy/modules/kernel/corecommands.fc 2009-07-15 14:06:36.000000000 -0400 @@ -6798,7 +6794,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/kernel.if serefpolicy-3.6.22/policy/modules/kernel/kernel.if --- nsaserefpolicy/policy/modules/kernel/kernel.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/kernel/kernel.if 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/kernel/kernel.if 2009-07-15 14:51:40.000000000 -0400 @@ -1807,7 +1807,7 @@ ') @@ -13924,7 +13920,7 @@ diff -b -B --ignore-all-space --exclude- /usr/libexec/hald-addon-macbookpro-backlight -- gen_context(system_u:object_r:hald_mac_exec_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.if serefpolicy-3.6.22/policy/modules/services/hal.if --- nsaserefpolicy/policy/modules/services/hal.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/services/hal.if 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/services/hal.if 2009-07-15 14:55:28.000000000 -0400 @@ -20,6 +20,24 @@ ######################################## @@ -14052,7 +14048,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.te serefpolicy-3.6.22/policy/modules/services/hal.te --- nsaserefpolicy/policy/modules/services/hal.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/services/hal.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/services/hal.te 2009-07-15 14:59:38.000000000 -0400 @@ -49,6 +49,15 @@ type hald_var_lib_t; files_type(hald_var_lib_t) @@ -14069,7 +14065,15 @@ diff -b -B --ignore-all-space --exclude- ######################################## # # Local policy -@@ -141,13 +150,20 @@ +@@ -94,6 +103,7 @@ + kernel_rw_irq_sysctls(hald_t) + kernel_rw_vm_sysctls(hald_t) + kernel_write_proc_files(hald_t) ++kernel_search_network_sysctl(hald_t) + kernel_setsched(hald_t) + + auth_read_pam_console_data(hald_t) +@@ -141,13 +151,20 @@ # hal is now execing pm-suspend files_create_boot_flag(hald_t) files_getattr_all_dirs(hald_t) @@ -14090,7 +14094,7 @@ diff -b -B --ignore-all-space --exclude- files_getattr_all_mountpoints(hald_t) mls_file_read_all_levels(hald_t) -@@ -195,6 +211,7 @@ +@@ -195,6 +212,7 @@ seutil_read_file_contexts(hald_t) sysnet_read_config(hald_t) @@ -14098,7 +14102,7 @@ diff -b -B --ignore-all-space --exclude- userdom_dontaudit_use_unpriv_user_fds(hald_t) userdom_dontaudit_search_user_home_dirs(hald_t) -@@ -277,6 +294,18 @@ +@@ -277,6 +295,18 @@ ') optional_policy(` @@ -14117,7 +14121,7 @@ diff -b -B --ignore-all-space --exclude- rpc_search_nfs_state_data(hald_t) ') -@@ -298,7 +327,11 @@ +@@ -298,7 +328,11 @@ ') optional_policy(` @@ -14130,7 +14134,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -306,7 +339,7 @@ +@@ -306,7 +340,7 @@ # Hal acl local policy # @@ -14139,7 +14143,7 @@ diff -b -B --ignore-all-space --exclude- allow hald_acl_t self:process { getattr signal }; allow hald_acl_t self:fifo_file rw_fifo_file_perms; -@@ -321,6 +354,7 @@ +@@ -321,6 +355,7 @@ manage_dirs_pattern(hald_acl_t, hald_var_run_t, hald_var_run_t) manage_files_pattern(hald_acl_t, hald_var_run_t, hald_var_run_t) files_pid_filetrans(hald_acl_t, hald_var_run_t, { dir file }) @@ -14147,7 +14151,7 @@ diff -b -B --ignore-all-space --exclude- corecmd_exec_bin(hald_acl_t) -@@ -339,6 +373,8 @@ +@@ -339,6 +374,8 @@ storage_getattr_removable_dev(hald_acl_t) storage_setattr_removable_dev(hald_acl_t) @@ -14156,7 +14160,7 @@ diff -b -B --ignore-all-space --exclude- auth_use_nsswitch(hald_acl_t) -@@ -346,12 +382,19 @@ +@@ -346,12 +383,19 @@ miscfiles_read_localization(hald_acl_t) @@ -14177,7 +14181,7 @@ diff -b -B --ignore-all-space --exclude- domtrans_pattern(hald_t, hald_mac_exec_t, hald_mac_t) allow hald_t hald_mac_t:process signal; -@@ -374,6 +417,8 @@ +@@ -374,6 +418,8 @@ auth_use_nsswitch(hald_mac_t) @@ -14186,7 +14190,7 @@ diff -b -B --ignore-all-space --exclude- miscfiles_read_localization(hald_mac_t) ######################################## -@@ -415,6 +460,55 @@ +@@ -415,6 +461,62 @@ dev_rw_input_dev(hald_keymap_t) @@ -14203,6 +14207,7 @@ diff -b -B --ignore-all-space --exclude- +# +# Local hald dccm policy +# ++allow hald_dccm_t self:fifo_file rw_fifo_file_perms; +allow hald_dccm_t self:capability { net_bind_service }; +allow hald_dccm_t self:process getsched; +allow hald_dccm_t self:tcp_socket create_stream_socket_perms; @@ -14213,6 +14218,8 @@ diff -b -B --ignore-all-space --exclude- +allow hald_t hald_dccm_t:process signal; +allow hald_dccm_t hald_t:unix_stream_socket connectto; + ++hal_rw_dgram_sockets(hald_dccm_t) ++ +corenet_all_recvfrom_unlabeled(hald_dccm_t) +corenet_all_recvfrom_netlabel(hald_dccm_t) +corenet_tcp_sendrecv_generic_if(hald_dccm_t) @@ -14241,6 +14248,10 @@ diff -b -B --ignore-all-space --exclude- + +miscfiles_read_localization(hald_dccm_t) + ++optional_policy(` ++ dbus_system_bus_client(hald_dccm_t) ++') ++ +permissive hald_dccm_t; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/kerberos.fc serefpolicy-3.6.22/policy/modules/services/kerberos.fc --- nsaserefpolicy/policy/modules/services/kerberos.fc 2009-07-14 14:19:57.000000000 -0400 @@ -27138,7 +27149,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/sysnetwork.te serefpolicy-3.6.22/policy/modules/system/sysnetwork.te --- nsaserefpolicy/policy/modules/system/sysnetwork.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/sysnetwork.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/system/sysnetwork.te 2009-07-15 14:56:56.000000000 -0400 @@ -20,6 +20,9 @@ init_daemon_domain(dhcpc_t, dhcpc_exec_t) role system_r types dhcpc_t; @@ -27186,7 +27197,7 @@ diff -b -B --ignore-all-space --exclude- files_etc_filetrans(dhcpc_t, net_conf_t, file) # create temp files -@@ -115,8 +121,9 @@ +@@ -115,11 +121,13 @@ corecmd_exec_bin(dhcpc_t) corecmd_exec_shell(dhcpc_t) @@ -27197,7 +27208,11 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(dhcpc_t) files_read_etc_runtime_files(dhcpc_t) -@@ -183,25 +190,23 @@ ++files_read_usr_files(dhcpc_t) + files_search_home(dhcpc_t) + files_search_var_lib(dhcpc_t) + files_dontaudit_search_locks(dhcpc_t) +@@ -183,25 +191,23 @@ ') optional_policy(` @@ -27231,7 +27246,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -212,6 +217,7 @@ +@@ -212,6 +218,7 @@ optional_policy(` seutil_sigchld_newrole(dhcpc_t) seutil_dontaudit_search_config(dhcpc_t) @@ -27239,7 +27254,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -223,6 +229,10 @@ +@@ -223,6 +230,10 @@ ') optional_policy(` @@ -27250,7 +27265,7 @@ diff -b -B --ignore-all-space --exclude- kernel_read_xen_state(dhcpc_t) kernel_write_xen_state(dhcpc_t) xen_append_log(dhcpc_t) -@@ -236,7 +246,6 @@ +@@ -236,7 +247,6 @@ allow ifconfig_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execheap execstack }; allow ifconfig_t self:capability { net_raw net_admin sys_tty_config }; @@ -27258,7 +27273,7 @@ diff -b -B --ignore-all-space --exclude- allow ifconfig_t self:fd use; allow ifconfig_t self:fifo_file rw_fifo_file_perms; -@@ -250,6 +259,7 @@ +@@ -250,6 +260,7 @@ allow ifconfig_t self:sem create_sem_perms; allow ifconfig_t self:msgq create_msgq_perms; allow ifconfig_t self:msg { send receive }; @@ -27266,7 +27281,7 @@ diff -b -B --ignore-all-space --exclude- # Create UDP sockets, necessary when called from dhcpc allow ifconfig_t self:udp_socket create_socket_perms; -@@ -259,13 +269,20 @@ +@@ -259,13 +270,20 @@ allow ifconfig_t self:netlink_route_socket create_netlink_socket_perms; allow ifconfig_t self:netlink_xfrm_socket { create_netlink_socket_perms nlmsg_read }; allow ifconfig_t self:tcp_socket { create ioctl }; @@ -27287,7 +27302,7 @@ diff -b -B --ignore-all-space --exclude- corenet_rw_tun_tap_dev(ifconfig_t) -@@ -276,8 +293,13 @@ +@@ -276,8 +294,13 @@ fs_getattr_xattr_fs(ifconfig_t) fs_search_auto_mountpoints(ifconfig_t) @@ -27301,7 +27316,7 @@ diff -b -B --ignore-all-space --exclude- domain_use_interactive_fds(ifconfig_t) -@@ -296,6 +318,8 @@ +@@ -296,6 +319,8 @@ seutil_use_runinit_fds(ifconfig_t) @@ -27310,7 +27325,7 @@ diff -b -B --ignore-all-space --exclude- userdom_use_user_terminals(ifconfig_t) userdom_use_all_users_fds(ifconfig_t) -@@ -332,6 +356,14 @@ +@@ -332,8 +357,22 @@ ') optional_policy(` @@ -27325,6 +27340,14 @@ diff -b -B --ignore-all-space --exclude- kernel_read_xen_state(ifconfig_t) kernel_write_xen_state(ifconfig_t) xen_append_log(ifconfig_t) + xen_dontaudit_rw_unix_stream_sockets(ifconfig_t) + ') ++ ++optional_policy(` ++ hal_rw_dgram_sockets(dhcpc_t) ++ hal_dontaudit_rw_pipes(ifconfig_t) ++') ++ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.fc serefpolicy-3.6.22/policy/modules/system/udev.fc --- nsaserefpolicy/policy/modules/system/udev.fc 2009-07-14 14:19:57.000000000 -0400 +++ serefpolicy-3.6.22/policy/modules/system/udev.fc 2009-07-15 14:06:36.000000000 -0400 From ajax at fedoraproject.org Wed Jul 15 19:14:24 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 19:14:24 +0000 (UTC) Subject: rpms/xorg-x11-xdm/devel xorg-x11-xdm.spec, 1.46, 1.47 xserver.pamd, 1.2, NONE Message-ID: <20090715191424.1C9F211C049A@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31090 Modified Files: xorg-x11-xdm.spec Removed Files: xserver.pamd Log Message: * Wed Jul 15 2009 Adam Jackson 1.1.6-11 - Remove xserver PAM config file, it belongs (unsurprisingly) in xserver. (#500469) Index: xorg-x11-xdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xdm/devel/xorg-x11-xdm.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- xorg-x11-xdm.spec 23 Jun 2009 19:22:17 -0000 1.46 +++ xorg-x11-xdm.spec 15 Jul 2009 19:13:53 -0000 1.47 @@ -3,7 +3,7 @@ Summary: X.Org X11 xdm - X Display Manager Name: xorg-x11-%{pkgname} Version: 1.1.6 -Release: 10%{?dist} +Release: 11%{?dist} # NOTE: Remove Epoch line if/when the package ever gets renamed. Epoch: 1 License: MIT @@ -15,7 +15,6 @@ Source0: ftp://ftp.x.org/pub/individual/ Source1: Xsetup_0 Source10: xdm.init Source11: xdm.pamd -Source13: xserver.pamd # NOTE: Change xdm-config to invoke Xwilling with "-s /bin/bash" instead # of "-c" to fix bug (#86505) @@ -113,7 +112,6 @@ install -m 755 %{SOURCE1} $RPM_BUILD_ROO # Install pam xdm config files { mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d - install -c -m 644 %{SOURCE13} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/xserver install -c -m 644 %{SOURCE11} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/xdm } @@ -139,10 +137,6 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/X11/xdm/Xresources %config %{_sysconfdir}/X11/xdm/Xservers %config %{_sysconfdir}/X11/xdm/xdm-config -# NOTE: In Fedora Core 4 and earlier, most of these config files and scripts -# were kept in the "xinitrc" package as forked copies, however they were -# quite out of date, and did not contain anything useful, so we now ship the -# upstream files and can patch them as needed to make changes. %{_sysconfdir}/X11/xdm/GiveConsole %{_sysconfdir}/X11/xdm/TakeConsole %config %{_sysconfdir}/X11/xdm/Xreset @@ -154,7 +148,6 @@ rm -rf $RPM_BUILD_ROOT # files and make backup copies by default. 'noreplace' is intentionally avoided # here. %config %attr(0644,root,root) %{_sysconfdir}/pam.d/xdm -%config %attr(0644,root,root) %{_sysconfdir}/pam.d/xserver %dir %{_datadir}/X11 # NOTE: We intentionally default to OS supplied file being favoured here on # OS upgrades. @@ -170,6 +163,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Wed Jul 15 2009 Adam Jackson 1.1.6-11 +- Remove xserver PAM config file, it belongs (unsurprisingly) in + xserver. (#500469) + * Tue Jun 23 2009 Mat??j Cepl - 1:1.1.6-10 - return lost patch for fixing bug 470348. --- xserver.pamd DELETED --- From mschwendt at fedoraproject.org Wed Jul 15 19:14:38 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 15 Jul 2009 19:14:38 +0000 (UTC) Subject: rpms/compat-wxGTK26/F-11 wxGTK-2.6.4-CVE-2009-2369.patch, NONE, 1.1 wxGTK-2.6.4-gsocket-conflict.patch, NONE, 1.1 compat-wxGTK26.spec, 1.25, 1.26 Message-ID: <20090715191438.08A6811C049A@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/compat-wxGTK26/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31361 Modified Files: compat-wxGTK26.spec Added Files: wxGTK-2.6.4-CVE-2009-2369.patch wxGTK-2.6.4-gsocket-conflict.patch Log Message: * Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 - apply rediffed fix for CVE-2009-2369 (#511279) wxGTK-2.6.4-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.6.4-CVE-2009-2369.patch --- diff -Nur wxGTK-2.6.4-orig/src/common/imagpng.cpp wxGTK-2.6.4/src/common/imagpng.cpp --- wxGTK-2.6.4-orig/src/common/imagpng.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagpng.cpp 2009-07-15 21:07:50.000000000 +0200 @@ -570,18 +570,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); diff -Nur wxGTK-2.6.4-orig/src/common/imagtiff.cpp wxGTK-2.6.4/src/common/imagtiff.cpp --- wxGTK-2.6.4-orig/src/common/imagtiff.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagtiff.cpp 2009-07-15 21:08:08.000000000 +0200 @@ -232,15 +232,25 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); TIFFGetField( tif, TIFFTAG_IMAGELENGTH, &h ); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); + + TIFFClose(tif); + + return false; + } - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + raster = (uint32*) _TIFFmalloc( bytesNeeded ); if (!raster) { wxGTK-2.6.4-gsocket-conflict.patch: --- NEW FILE wxGTK-2.6.4-gsocket-conflict.patch --- diff -Nur wxGTK-2.6.4-orig/src/gtk/gsockgtk.cpp wxGTK-2.6.4/src/gtk/gsockgtk.cpp --- wxGTK-2.6.4-orig/src/gtk/gsockgtk.cpp 2007-03-20 16:50:07.000000000 +0100 +++ wxGTK-2.6.4/src/gtk/gsockgtk.cpp 2009-06-11 13:28:59.000000000 +0200 @@ -14,8 +14,16 @@ #include #include -#include -#include +// Cannot include full gdk.h as it pulls in giotypes.h with +// new GSocket conflicts since 2.21/2.22 +#include +// deprecated, copy from gdk.h +gint gdk_input_add (gint source, + GdkInputCondition condition, + GdkInputFunction function, + gpointer data); +void gdk_input_remove (gint tag); +#include #include "wx/gsocket.h" #include "wx/unix/gsockunx.h" Index: compat-wxGTK26.spec =================================================================== RCS file: /cvs/extras/rpms/compat-wxGTK26/F-11/compat-wxGTK26.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- compat-wxGTK26.spec 7 Jun 2009 16:03:16 -0000 1.25 +++ compat-wxGTK26.spec 15 Jul 2009 19:14:37 -0000 1.26 @@ -1,6 +1,6 @@ Name: compat-wxGTK26 Version: 2.6.4 -Release: 8%{?dist} +Release: 10%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -17,6 +17,8 @@ Patch3: wxGTK-2.6.3-g_thread_ini Patch5: wxGTK-2.6.3-expat2.patch Patch6: wxGTK-2.6.3-strconv.patch Patch7: wxGTK-2.6.4-config-script.patch +Patch8: wxGTK-2.6.4-gsocket-conflict.patch +Patch9: wxGTK-2.6.4-CVE-2009-2369.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -55,6 +57,9 @@ This package include files needed to lin %patch5 -p1 -b .expat2 %patch6 -p1 -b .strconv %patch7 -p1 -b .config-script +%patch8 -p1 -b .gsocket-conflict +# http://trac.wxwidgets.org/ticket/10993 +%patch9 -p1 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' configure @@ -203,6 +208,14 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 +- apply rediffed fix for CVE-2009-2369 (#511279) + +* Thu Jun 11 2009 Michael Schwendt - 2.6.4-9 +- glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that + conflicts with wxGTK's GSocket class (gsocket.h): reduce the glib/gdk + headers that are included during build to avoid conflicting redefinitions + * Sun Jun 7 2009 Michael Schwendt - 2.6.4-8 - target sparcv9 => setup-sparc.h From mschwendt at fedoraproject.org Wed Jul 15 19:17:02 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Wed, 15 Jul 2009 19:17:02 +0000 (UTC) Subject: rpms/compat-wxGTK26/F-10 compat-wxGTK26-setup.h, NONE, 1.1 wxGTK-2.6.4-CVE-2009-2369.patch, NONE, 1.1 wxGTK-2.6.4-gsocket-conflict.patch, NONE, 1.1 compat-wxGTK26.spec, 1.15, 1.16 Message-ID: <20090715191702.1952A11C049A@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/compat-wxGTK26/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32131 Modified Files: compat-wxGTK26.spec Added Files: compat-wxGTK26-setup.h wxGTK-2.6.4-CVE-2009-2369.patch wxGTK-2.6.4-gsocket-conflict.patch Log Message: * Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 - apply rediffed fix for CVE-2009-2369 (#511279) --- NEW FILE compat-wxGTK26-setup.h --- /* Avoid setup.h header conflicts on multi-arch platforms. * Any special arch handled here must also be handled in the * RPM package .spec file. */ #if defined(__i386__) #include #elif defined(__x86_64__) #include #elif defined(__powerpc64__) #include #elif defined(__powerpc__) #include #elif defined(__sparc__) && defined (__arch64__) #include #elif defined(__sparc__) #include #else #include #endif wxGTK-2.6.4-CVE-2009-2369.patch: --- NEW FILE wxGTK-2.6.4-CVE-2009-2369.patch --- diff -Nur wxGTK-2.6.4-orig/src/common/imagpng.cpp wxGTK-2.6.4/src/common/imagpng.cpp --- wxGTK-2.6.4-orig/src/common/imagpng.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagpng.cpp 2009-07-15 21:07:50.000000000 +0200 @@ -570,18 +570,16 @@ if (!image->Ok()) goto error; - lines = (unsigned char **)malloc( (size_t)(height * sizeof(unsigned char *)) ); + // initialize all line pointers to NULL to ensure that they can be safely + // free()d if an error occurs before all of them could be allocated + lines = (unsigned char **)calloc(height, sizeof(unsigned char *)); if ( !lines ) goto error; for (i = 0; i < height; i++) { if ((lines[i] = (unsigned char *)malloc( (size_t)(width * (sizeof(unsigned char) * 4)))) == NULL) - { - for ( unsigned int n = 0; n < i; n++ ) - free( lines[n] ); goto error; - } } png_read_image( png_ptr, lines ); diff -Nur wxGTK-2.6.4-orig/src/common/imagtiff.cpp wxGTK-2.6.4/src/common/imagtiff.cpp --- wxGTK-2.6.4-orig/src/common/imagtiff.cpp 2007-03-20 16:50:01.000000000 +0100 +++ wxGTK-2.6.4/src/common/imagtiff.cpp 2009-07-15 21:08:08.000000000 +0200 @@ -232,15 +232,25 @@ } uint32 w, h; - uint32 npixels; uint32 *raster; TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &w ); TIFFGetField( tif, TIFFTAG_IMAGELENGTH, &h ); - npixels = w * h; + // guard against integer overflow during multiplication which could result + // in allocating a too small buffer and then overflowing it + const double bytesNeeded = (double)w * (double)h * sizeof(uint32); + if ( bytesNeeded >= 4294967295U /* UINT32_MAX */ ) + { + if ( verbose ) + wxLogError( _("TIFF: Image size is abnormally big.") ); + + TIFFClose(tif); + + return false; + } - raster = (uint32*) _TIFFmalloc( npixels * sizeof(uint32) ); + raster = (uint32*) _TIFFmalloc( bytesNeeded ); if (!raster) { wxGTK-2.6.4-gsocket-conflict.patch: --- NEW FILE wxGTK-2.6.4-gsocket-conflict.patch --- diff -Nur wxGTK-2.6.4-orig/src/gtk/gsockgtk.cpp wxGTK-2.6.4/src/gtk/gsockgtk.cpp --- wxGTK-2.6.4-orig/src/gtk/gsockgtk.cpp 2007-03-20 16:50:07.000000000 +0100 +++ wxGTK-2.6.4/src/gtk/gsockgtk.cpp 2009-06-11 13:28:59.000000000 +0200 @@ -14,8 +14,16 @@ #include #include -#include -#include +// Cannot include full gdk.h as it pulls in giotypes.h with +// new GSocket conflicts since 2.21/2.22 +#include +// deprecated, copy from gdk.h +gint gdk_input_add (gint source, + GdkInputCondition condition, + GdkInputFunction function, + gpointer data); +void gdk_input_remove (gint tag); +#include #include "wx/gsocket.h" #include "wx/unix/gsockunx.h" Index: compat-wxGTK26.spec =================================================================== RCS file: /cvs/extras/rpms/compat-wxGTK26/F-10/compat-wxGTK26.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- compat-wxGTK26.spec 15 Jul 2008 17:45:11 -0000 1.15 +++ compat-wxGTK26.spec 15 Jul 2009 19:17:01 -0000 1.16 @@ -1,6 +1,6 @@ Name: compat-wxGTK26 Version: 2.6.4 -Release: 3 +Release: 10%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -9,6 +9,7 @@ License: wxWidgets Group: System Environment/Libraries URL: http://www.wxwidgets.org/ Source0: http://dl.sf.net/wxwindows/wxGTK-%{version}.tar.bz2 +Source1: compat-wxGTK26-setup.h Patch1: wxGTK-2.6.3-locale-compat.patch Patch2: wxGTK-2.6.3-gtk-crash.patch Patch3: wxGTK-2.6.3-g_thread_init.patch @@ -16,6 +17,8 @@ Patch3: wxGTK-2.6.3-g_thread_ini Patch5: wxGTK-2.6.3-expat2.patch Patch6: wxGTK-2.6.3-strconv.patch Patch7: wxGTK-2.6.4-config-script.patch +Patch8: wxGTK-2.6.4-gsocket-conflict.patch +Patch9: wxGTK-2.6.4-CVE-2009-2369.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel, zlib-devel >= 1.1.4 @@ -23,8 +26,6 @@ BuildRequires: libpng-devel, libjpeg-de BuildRequires: expat-devel, SDL-devel, libgnomeprintui22-devel BuildRequires: libGL-devel, libGLU-devel -Obsoletes: wxGTK < 2.8 -Obsoletes: wxGTK-gl < 2.8 %description @@ -40,7 +41,7 @@ Summary: Development files for th Requires: %{name} = %{version}-%{release} Requires: gtk2-devel Requires: libGL-devel, libGLU-devel -Obsoletes: wxGTK-devel < 2.8 + %description devel This package include files needed to link with the wxGTK2 library. @@ -56,6 +57,9 @@ This package include files needed to lin %patch5 -p1 -b .expat2 %patch6 -p1 -b .strconv %patch7 -p1 -b .config-script +%patch8 -p1 -b .gsocket-conflict +# http://trac.wxwidgets.org/ticket/10993 +%patch9 -p1 -b .CVE-2009-2369 sed -i -e 's|/usr/lib\b|%{_libdir}|' configure @@ -91,14 +95,15 @@ make %{?_smp_mflags} -C contrib/src/ogl make %{?_smp_mflags} -C contrib/src/gizmos make %{?_smp_mflags} -C contrib/src/animate + %install rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install -make DESTDIR=$RPM_BUILD_ROOT install -C contrib/src/stc -make DESTDIR=$RPM_BUILD_ROOT install -C contrib/src/ogl -make DESTDIR=$RPM_BUILD_ROOT install -C contrib/src/gizmos -make DESTDIR=$RPM_BUILD_ROOT install -C contrib/src/animate +make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install +make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install -C contrib/src/stc +make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install -C contrib/src/ogl +make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install -C contrib/src/gizmos +make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install -C contrib/src/animate # Don't want these. rm -rf ${RPM_BUILD_ROOT}%{_datadir}/bakefile @@ -116,6 +121,35 @@ if [ "%{_libdir}" != "%{_prefix}/lib" ] mkdir -p ${RPM_BUILD_ROOT}%{_prefix}/lib mv ${RPM_BUILD_ROOT}%{_libdir}/wx ${RPM_BUILD_ROOT}%{_prefix}/lib fi +# Rename setup.h to setup-${arch}.h and +# install a setup.h that picks the right header based on ifdef. +# See Source1 file. +setuph=$(find ${RPM_BUILD_ROOT}%{_prefix}/lib/wx -name setup.h) +arch=basearch +%ifarch %ix86 +arch=i386 +%endif +%ifarch x86_64 +arch=x86_64 +%endif +%ifarch ppc +arch=ppc +%endif +%ifarch ppc64 +arch=ppc64 +%endif +%ifarch sparc +arch=sparc +%endif +%ifarch sparcv9 +arch=sparc +%endif +%ifarch sparc64 +arch=sparc64 +%endif +newsetuph=${setuph%%.h}-${arch}.h +mv $setuph $newsetuph +install -p -m0644 %{SOURCE1} $setuph # Deal with conflicting files. cd ${RPM_BUILD_ROOT}%{_bindir} @@ -126,6 +160,13 @@ mv ${RPM_BUILD_ROOT}%{_datadir}/aclocal/ ${RPM_BUILD_ROOT}%{_datadir}/aclocal/wxwin-2.6.m4 +%check +# Roughly test that the wx/setup.h wrapper can be compiled. +inc=$(dirname $(find ${RPM_BUILD_ROOT}%{_prefix}/lib/wx -name setup.h)) +printf '#include \nint main() { return 0; }\n' > __t.cc +g++ -I${inc}/.. -I${RPM_BUILD_ROOT}%{_includedir}/wx-2.6 __t.cc -c + + %clean rm -rf $RPM_BUILD_ROOT @@ -167,6 +208,30 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 +- apply rediffed fix for CVE-2009-2369 (#511279) + +* Thu Jun 11 2009 Michael Schwendt - 2.6.4-9 +- glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that + conflicts with wxGTK's GSocket class (gsocket.h): reduce the glib/gdk + headers that are included during build to avoid conflicting redefinitions + +* Sun Jun 7 2009 Michael Schwendt - 2.6.4-8 +- target sparcv9 => setup-sparc.h + +* Wed Mar 25 2009 Michael Schwendt - 2.6.4-7 +- add check section with tiny compilation check for wx/setup.h wrapper + +* Tue Mar 24 2009 Michael Schwendt - 2.6.4-6 +- resolve multi-arch conflict in wx/setup.h + +* Tue Feb 24 2009 Fedora Release Engineering - 2.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Dec 22 2008 Michael Schwendt - 2.6.4-4 +- remove wxGTK{,-devel,-gl} Obsoletes since the wxGTK2 (2.8.x) + pkg set in Fedora has been renamed to wxGTK + * Tue Jul 15 2008 Tom "spot" Callaway - 2.6.4-3 - fix license tag From pkgdb at fedoraproject.org Wed Jul 15 19:17:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:17:17 +0000 Subject: [pkgdb] httpunit ownership updated Message-ID: <20090715191717.2EBA310F88D@bastion2.fedora.phx.redhat.com> Package httpunit in Fedora devel is now owned by fnasser To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/httpunit From bioinfornatics at fedoraproject.org Wed Jul 15 19:17:59 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Wed, 15 Jul 2009 19:17:59 +0000 (UTC) Subject: rpms/valide/F-11 import.log,1.1,1.2 valide.spec,1.2,1.3 Message-ID: <20090715191759.E8E0511C049A@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32496/F-11 Modified Files: import.log valide.spec Log Message: Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Jul 2009 17:54:23 -0000 1.1 +++ import.log 15 Jul 2009 19:17:59 -0000 1.2 @@ -1 +1,2 @@ valide-0_5_1-0_12_20090715svn280_fc11:F-11:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247680422 +valide-0_5_1-0_13_20090715svn280_fc11:F-11:valide-0.5.1-0.13.20090715svn280.fc11.src.rpm:1247685453 Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/valide.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- valide.spec 15 Jul 2009 17:54:24 -0000 1.2 +++ valide.spec 15 Jul 2009 19:17:59 -0000 1.3 @@ -10,7 +10,7 @@ Name: valide Version: 0.5.1 -Release: 0.12.%{alphatag}%{svn_revision}%{?dist} +Release: 0.13.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,8 +106,11 @@ fi %{_libdir}/libvalide-*.so %changelog +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.13.20090713svn280 +- Fix changelog + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 -- Update to revision +- Update to revision 280 * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From pkgdb at fedoraproject.org Wed Jul 15 19:18:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:18:43 +0000 Subject: [pkgdb] nekohtml ownership updated Message-ID: <20090715191844.1407810F888@bastion2.fedora.phx.redhat.com> Package nekohtml in Fedora devel is now owned by fnasser To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nekohtml From pkgdb at fedoraproject.org Wed Jul 15 19:18:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:18:59 +0000 Subject: [pkgdb] xdoclet ownership updated Message-ID: <20090715191859.D363010F8AA@bastion2.fedora.phx.redhat.com> Package xdoclet in Fedora devel is now owned by fnasser To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xdoclet From ajax at fedoraproject.org Wed Jul 15 19:22:14 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 19:22:14 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver.pamd, NONE, 1.1 xorg-x11-server.spec, 1.447, 1.448 Message-ID: <20090715192214.CB98211C049A@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1316 Modified Files: xorg-x11-server.spec Added Files: xserver.pamd Log Message: * Wed Jul 15 2009 Adam Jackson 1.6.99-14.20090715 - Move PAM config file here from xdm. --- NEW FILE xserver.pamd --- #%PAM-1.0 auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so session optional pam_keyinit.so force revoke Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.447 retrieving revision 1.448 diff -u -p -r1.447 -r1.448 --- xorg-x11-server.spec 15 Jul 2009 06:20:20 -0000 1.447 +++ xorg-x11-server.spec 15 Jul 2009 19:22:14 -0000 1.448 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 13.%{gitdate}%{?dist} +Release: 14.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -36,6 +36,8 @@ Source0: http://www.x.org/pub/individu Source1: gitignore %endif +Source10: xserver.pamd + # "useful" xvfb-run script Source20: http://svn.exactcode.de/t2/trunk/package/xorg/xorg-server/xvfb-run.sh @@ -328,7 +330,6 @@ git am -p1 %{lua: for i, p in ipairs(pat %define dri_flags --disable-dri %endif -# --with-rgb-path should be superfluous now ? # --with-pie ? autoreconf -v --install || exit 1 export CFLAGS="${RPM_OPT_FLAGS} -Wstrict-overflow -rdynamic $CFLAGS" @@ -354,11 +355,12 @@ make install DESTDIR=$RPM_BUILD_ROOT mod %if %{with_hw_servers} mkdir -p $RPM_BUILD_ROOT%{_libdir}/xorg/modules/{drivers,input} -# Install the vesamodes and extramodes files to let our install/config tools -# be able to parse the same modelist as the X server uses (rhpxl). mkdir -p $RPM_BUILD_ROOT%{_datadir}/xorg install -m 0444 hw/xfree86/common/{vesa,extra}modes $RPM_BUILD_ROOT%{_datadir}/xorg/ +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d +install -m 644 %{SOURCE10} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/xserver + %endif # Make the source package @@ -406,6 +408,7 @@ rm -rf $RPM_BUILD_ROOT %if %{with_hw_servers} %files Xorg %defattr(-,root,root,-) +%config %attr(0644,root,root) %{_sysconfdir}/pam.d/xserver %{_bindir}/X %attr(4711, root, root) %{_bindir}/Xorg %{_bindir}/cvt @@ -518,6 +521,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Adam Jackson 1.6.99-14.20090715 +- Move PAM config file here from xdm. + * Wed Jul 15 2009 Peter Hutterer 1.6.99-13.20090715 - Today's git snapshot. From mbarnes at fedoraproject.org Wed Jul 15 19:29:45 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Wed, 15 Jul 2009 19:29:45 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.8, 1.116.2.9 evolution.spec, 1.394.2.18, 1.394.2.19 sources, 1.116.2.12, 1.116.2.13 Message-ID: <20090715192945.DA00111C049A@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3731 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Log Message: * Wed Jul 15 2009 Matthew Barnes - 2.27.4-1.kb.2.fc12 - Snapshot of "kill-bonobo" branch at commit 80f8519. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.8 retrieving revision 1.116.2.9 diff -u -p -r1.116.2.8 -r1.116.2.9 --- .cvsignore 14 Jul 2009 18:47:11 -0000 1.116.2.8 +++ .cvsignore 15 Jul 2009 19:29:45 -0000 1.116.2.9 @@ -1 +1 @@ -evolution-2.27.4-kill-bonobo-6d9e836.tar.bz2 +evolution-2.27.4-kill-bonobo-80f8519.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.18 retrieving revision 1.394.2.19 diff -u -p -r1.394.2.18 -r1.394.2.19 --- evolution.spec 14 Jul 2009 19:26:38 -0000 1.394.2.18 +++ evolution.spec 15 Jul 2009 19:29:45 -0000 1.394.2.19 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash 6d9e836 +%define hash 80f8519 %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -45,7 +45,7 @@ Name: evolution Version: 2.27.4 -Release: 1.kb.1%{?dist} +Release: 1.kb.2%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -671,6 +671,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Wed Jul 15 2009 Matthew Barnes - 2.27.4-1.kb.2.fc12 +- Snapshot of "kill-bonobo" branch at commit 80f8519. + * Tue Jul 14 2009 Matthew Barnes - 2.27.4-1.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit 6d9e836. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.12 retrieving revision 1.116.2.13 diff -u -p -r1.116.2.12 -r1.116.2.13 --- sources 14 Jul 2009 18:47:11 -0000 1.116.2.12 +++ sources 15 Jul 2009 19:29:45 -0000 1.116.2.13 @@ -1 +1 @@ -08c8cab2dbc6ac591ce8f9bf0d10b208 evolution-2.27.4-kill-bonobo-6d9e836.tar.bz2 +de388d45bc39e70de0f500e2f2f40f9d evolution-2.27.4-kill-bonobo-80f8519.tar.bz2 From ajax at fedoraproject.org Wed Jul 15 19:37:54 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 15 Jul 2009 19:37:54 +0000 (UTC) Subject: rpms/xorg-x11-drv-mach64/devel mach64-6.8.1-defaultdepth.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xorg-x11-drv-mach64.spec, 1.4, 1.5 Message-ID: <20090715193754.79BA411C049A@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6100 Modified Files: .cvsignore sources xorg-x11-drv-mach64.spec Added Files: mach64-6.8.1-defaultdepth.patch Log Message: * Wed Jul 15 2009 Adam Jackson 6.8.1-1 - mach64 6.8.1 - mach64-6.8.1-defaultdepth.patch: Default to depth 16 (#472687) mach64-6.8.1-defaultdepth.patch: --- NEW FILE mach64-6.8.1-defaultdepth.patch --- diff -up xf86-video-mach64-6.8.0/src/atipreinit.c.jx xf86-video-mach64-6.8.0/src/atipreinit.c --- xf86-video-mach64-6.8.0/src/atipreinit.c.jx 2008-03-26 02:09:43.000000000 -0400 +++ xf86-video-mach64-6.8.0/src/atipreinit.c 2009-07-15 15:34:10.000000000 -0400 @@ -584,7 +584,7 @@ ATIPreInit else { i = Support24bppFb | Support32bppFb; - DefaultDepth = 0; + DefaultDepth = 16; } if (!xf86SetDepthBpp(pScreenInfo, DefaultDepth, 0, 0, i)) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Aug 2008 03:04:04 -0000 1.2 +++ .cvsignore 15 Jul 2009 19:37:23 -0000 1.3 @@ -1 +1 @@ -xf86-video-mach64-6.8.0.tar.bz2 +xf86-video-mach64-6.8.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Aug 2008 03:04:04 -0000 1.2 +++ sources 15 Jul 2009 19:37:23 -0000 1.3 @@ -1 +1 @@ -6081b8fa50c689d51f85c2fbaf93867e xf86-video-mach64-6.8.0.tar.bz2 +0856d9c8435cf4350b68fbd57ca6d4fc xf86-video-mach64-6.8.1.tar.bz2 Index: xorg-x11-drv-mach64.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel/xorg-x11-drv-mach64.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xorg-x11-drv-mach64.spec 15 Jul 2009 15:55:15 -0000 1.4 +++ xorg-x11-drv-mach64.spec 15 Jul 2009 19:37:23 -0000 1.5 @@ -2,17 +2,19 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/drivers -Summary: Xorg X11 mach64 video driver -Name: xorg-x11-drv-mach64 -Version: 6.8.0 -Release: 3%{?dist}.1 -URL: http://www.x.org -License: MIT -Group: User Interface/X Hardware Support -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Summary: Xorg X11 mach64 video driver +Name: xorg-x11-drv-mach64 +Version: 6.8.1 +Release: 1%{?dist} +URL: http://www.x.org +License: MIT +Group: User Interface/X Hardware Support +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source0: http://www.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 -Source1: mach64.xinf +Source0: http://www.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Source1: mach64.xinf + +Patch0: mach64-6.8.1-defaultdepth.patch ExcludeArch: s390 s390x @@ -30,6 +32,7 @@ X.Org X11 mach64 video driver. %prep %setup -q -n %{tarball}-%{version} +%patch0 -p1 -b .defaultdepth %build # aclocal ; automake -a ; autoconf @@ -57,6 +60,10 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/mach64.4* %changelog +* Wed Jul 15 2009 Adam Jackson 6.8.1-1 +- mach64 6.8.1 +- mach64-6.8.1-defaultdepth.patch: Default to depth 16 (#472687) + * Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 - ABI bump From leigh123linux at fedoraproject.org Wed Jul 15 19:43:45 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Wed, 15 Jul 2009 19:43:45 +0000 (UTC) Subject: rpms/qbittorrent/devel .cvsignore, 1.7, 1.8 qbittorrent.spec, 1.20, 1.21 sources, 1.7, 1.8 Message-ID: <20090715194345.4867B11C049A@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7354 Modified Files: .cvsignore qbittorrent.spec sources Log Message: * Wed Jul 15 2009 Leigh Scott - 1.4.0-0.4.20090715svn - update to svn 2385 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 30 Apr 2009 13:20:31 -0000 1.7 +++ .cvsignore 15 Jul 2009 19:43:14 -0000 1.8 @@ -1 +1 @@ -qbittorrent-2341svn.tar.gz +qbittorrent-2385svn.tar.gz Index: qbittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/qbittorrent.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- qbittorrent.spec 23 Jun 2009 20:37:52 -0000 1.20 +++ qbittorrent.spec 15 Jul 2009 19:43:14 -0000 1.21 @@ -1,9 +1,9 @@ -%define svn_rev 2341 +%define svn_rev 2385 Name: qbittorrent Summary: A Bittorrent Client Version: 1.4.0 -Release: 0.4.20090429svn%{?dist} +Release: 0.4.20090715svn%{?dist} # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn checkout -r %{svn_rev} https://qbittorrent.svn.sourceforge.net/svnroot/qbittorrent/trunk qbittorrent @@ -74,6 +74,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/qbittorrent.png %changelog +* Wed Jul 15 2009 Leigh Scott - 1.4.0-0.4.20090715svn +- update to svn 2385 + * Tue Jun 23 2009 Leigh Scott - 1.4.0-0.4.20090429svn - replace update-mime-database with update-desktop-database - update scriplets to the latest guidelines Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 30 Apr 2009 13:20:31 -0000 1.7 +++ sources 15 Jul 2009 19:43:15 -0000 1.8 @@ -1 +1 @@ -31ee113239db03061d41807eb5ed5cf0 qbittorrent-2341svn.tar.gz +7da585eea2cee5a107ad243971d2a619 qbittorrent-2385svn.tar.gz From rjones at fedoraproject.org Wed Jul 15 19:45:30 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 19:45:30 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.46,1.47 Message-ID: <20090715194530.883BC11C049A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7885 Modified Files: libguestfs.spec Log Message: Add missing BR gettext-devel Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libguestfs.spec 15 Jul 2009 18:37:47 -0000 1.46 +++ libguestfs.spec 15 Jul 2009 19:45:00 -0000 1.47 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.61 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -12,7 +12,7 @@ Source0: http://libguestfs.org/downl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Patch0: libguestfs-1.0.61-no-locale-for-perl.patch -BuildRequires: automake, autoconf, libtool +BuildRequires: automake, autoconf, libtool, gettext-devel # Currently fails on PPC because: # "No Package Found for kernel" @@ -539,7 +539,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-4 +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-5 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl (not enabled, because not in EPEL). From leigh123linux at fedoraproject.org Wed Jul 15 19:46:33 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Wed, 15 Jul 2009 19:46:33 +0000 (UTC) Subject: rpms/qbittorrent/devel qbittorrent.spec,1.21,1.22 Message-ID: <20090715194633.D594811C049A@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8343 Modified Files: qbittorrent.spec Log Message: * Wed Jul 15 2009 Leigh Scott - 1.4.0-0.5.20090715svn - update to svn 2385 Index: qbittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/qbittorrent.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- qbittorrent.spec 15 Jul 2009 19:43:14 -0000 1.21 +++ qbittorrent.spec 15 Jul 2009 19:46:03 -0000 1.22 @@ -3,7 +3,7 @@ Name: qbittorrent Summary: A Bittorrent Client Version: 1.4.0 -Release: 0.4.20090715svn%{?dist} +Release: 0.5.20090715svn%{?dist} # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn checkout -r %{svn_rev} https://qbittorrent.svn.sourceforge.net/svnroot/qbittorrent/trunk qbittorrent @@ -74,7 +74,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/qbittorrent.png %changelog -* Wed Jul 15 2009 Leigh Scott - 1.4.0-0.4.20090715svn +* Wed Jul 15 2009 Leigh Scott - 1.4.0-0.5.20090715svn - update to svn 2385 * Tue Jun 23 2009 Leigh Scott - 1.4.0-0.4.20090429svn From pkgdb at fedoraproject.org Wed Jul 15 19:46:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:41 +0000 Subject: [pkgdb] qemu: berrange has requested watchcommits Message-ID: <20090715194642.28E5A10F898@bastion2.fedora.phx.redhat.com> berrange has requested the watchcommits acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:43 +0000 Subject: [pkgdb] qemu: berrange has requested watchbugzilla Message-ID: <20090715194643.978FF10F8A5@bastion2.fedora.phx.redhat.com> berrange has requested the watchbugzilla acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:43 +0000 Subject: [pkgdb] qemu: berrange has requested commit Message-ID: <20090715194643.B640D10F8AB@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:46 +0000 Subject: [pkgdb] qemu: berrange has requested approveacls Message-ID: <20090715194646.73CB010F8B1@bastion2.fedora.phx.redhat.com> berrange has requested the approveacls acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:53 +0000 Subject: [pkgdb] qemu: berrange has requested watchcommits Message-ID: <20090715194653.683DC10F8B7@bastion2.fedora.phx.redhat.com> berrange has requested the watchcommits acl on qemu (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:54 +0000 Subject: [pkgdb] qemu: berrange has requested commit Message-ID: <20090715194654.599C210F8BB@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on qemu (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:46:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:46:57 +0000 Subject: [pkgdb] qemu: berrange has requested approveacls Message-ID: <20090715194657.C81A710F8BE@bastion2.fedora.phx.redhat.com> berrange has requested the approveacls acl on qemu (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:47:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:47:00 +0000 Subject: [pkgdb] qemu: berrange has requested watchbugzilla Message-ID: <20090715194700.9374B10F8C0@bastion2.fedora.phx.redhat.com> berrange has requested the watchbugzilla acl on qemu (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:47:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:47:04 +0000 Subject: [pkgdb] qemu: berrange has requested watchcommits Message-ID: <20090715194704.8D6B410F8C8@bastion2.fedora.phx.redhat.com> berrange has requested the watchcommits acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:47:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:47:07 +0000 Subject: [pkgdb] qemu: berrange has requested commit Message-ID: <20090715194707.AA02510F8A5@bastion2.fedora.phx.redhat.com> berrange has requested the commit acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:47:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:47:09 +0000 Subject: [pkgdb] qemu: berrange has requested approveacls Message-ID: <20090715194709.8BB6710F8D3@bastion2.fedora.phx.redhat.com> berrange has requested the approveacls acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 19:47:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 19:47:12 +0000 Subject: [pkgdb] qemu: berrange has requested watchbugzilla Message-ID: <20090715194712.1B19410F8D8@bastion2.fedora.phx.redhat.com> berrange has requested the watchbugzilla acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From orion at fedoraproject.org Wed Jul 15 19:55:36 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 15 Jul 2009 19:55:36 +0000 (UTC) Subject: rpms/netcdf-perl/devel .cvsignore, 1.2, 1.3 netcdf-perl.spec, 1.7, 1.8 sources, 1.2, 1.3 Message-ID: <20090715195536.36EEE11C049A@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/netcdf-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10556 Modified Files: .cvsignore netcdf-perl.spec sources Log Message: * Wed Jul 15 2009 Orion Poplawski - 1.2.4-1 - Update to 1.2.4, fixes build issue (bug #511613) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netcdf-perl/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Nov 2006 22:23:39 -0000 1.2 +++ .cvsignore 15 Jul 2009 19:55:35 -0000 1.3 @@ -1 +1 @@ -netcdf-perl-1.2.3.tar.Z +netcdf-perl-1.2.4.tar.gz Index: netcdf-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/netcdf-perl/devel/netcdf-perl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- netcdf-perl.spec 26 Feb 2009 05:09:04 -0000 1.7 +++ netcdf-perl.spec 15 Jul 2009 19:55:35 -0000 1.8 @@ -1,12 +1,12 @@ Name: netcdf-perl -Version: 1.2.3 -Release: 9%{?dist} +Version: 1.2.4 +Release: 1%{?dist} Summary: Perl extension module for scientific data access via the netCDF API Group: Development/Libraries License: NetCDF URL: http://www.unidata.ucar.edu/software/netcdf-perl/ -Source0: ftp://ftp.unidata.ucar.edu/pub/netcdf-perl/netcdf-perl-%{version}.tar.Z +Source0: ftp://ftp.unidata.ucar.edu/pub/netcdf-perl/netcdf-perl-%{version}.tar.gz Source1: netcdf-2.3 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl-devel, netcdf-devel @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Orion Poplawski - 1.2.4-1 +- Update to 1.2.4, fixes build issue (bug #511613) + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netcdf-perl/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Nov 2006 22:23:39 -0000 1.2 +++ sources 15 Jul 2009 19:55:35 -0000 1.3 @@ -1 +1 @@ -936c91794d82ff8cfe2a955d4cad4c27 netcdf-perl-1.2.3.tar.Z +36b517662bda6a12a76f817acb49a993 netcdf-perl-1.2.4.tar.gz From jspaleta at fedoraproject.org Wed Jul 15 19:57:40 2009 From: jspaleta at fedoraproject.org (Jef Spaleta) Date: Wed, 15 Jul 2009 19:57:40 +0000 (UTC) Subject: rpms/ScientificPython/F-11 ScientificPython-netcdf-better-location.patch, 1.1, 1.2 ScientificPython.spec, 1.19, 1.20 Message-ID: <20090715195740.573A611C049A@cvs1.fedora.phx.redhat.com> Author: jspaleta Update of /cvs/pkgs/rpms/ScientificPython/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11084 Modified Files: ScientificPython-netcdf-better-location.patch ScientificPython.spec Log Message: * Wed Jul 15 2009 Jef Spaleta - 2.8-6 - Even better patch! ScientificPython-netcdf-better-location.patch: Index: ScientificPython-netcdf-better-location.patch =================================================================== RCS file: /cvs/pkgs/rpms/ScientificPython/F-11/ScientificPython-netcdf-better-location.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ScientificPython-netcdf-better-location.patch 15 Jul 2009 17:21:23 -0000 1.1 +++ ScientificPython-netcdf-better-location.patch 15 Jul 2009 19:57:39 -0000 1.2 @@ -1,5 +1,5 @@ --- setup.py.old 2009-07-15 08:29:35.000000000 -0800 -+++ setup.py 2009-07-15 08:39:20.000000000 -0800 ++++ setup.py 2009-07-15 09:33:45.000000000 -0800 @@ -45,6 +45,9 @@ "Lib/site-packages/numpy/core/include")] else: @@ -10,8 +10,12 @@ "lib/python%s.%s/site-packages/numpy/core/include" % sys.version_info [:2])] -@@ -77,11 +80,21 @@ +@@ -75,13 +78,25 @@ + netcdf_prefix=os.environ['NETCDF_PREFIX'] + except KeyError: pass ++netcdf_include=None ++netcdf_lib=None if netcdf_prefix is None: for netcdf_prefix in ['/usr/local', '/usr', '/sw']: - netcdf_include = os.path.join(netcdf_prefix, 'include') @@ -37,3 +41,16 @@ netcdf_prefix = None if netcdf_prefix is None: +@@ -105,9 +120,9 @@ + options['bdist_wininst'] = {'install_script': "scientific_win32_postinstall.py"} + else: + print "Using netCDF installation in ", netcdf_prefix +- netcdf_include = os.path.join(netcdf_prefix, 'include') +- netcdf_h_file = os.path.join(netcdf_prefix, 'include', 'netcdf.h') +- netcdf_lib = os.path.join(netcdf_prefix, 'lib') ++ if netcdf_include == None: netcdf_include = os.path.join(netcdf_prefix, 'include') ++ netcdf_h_file = os.path.join(netcdf_include, 'netcdf.h') ++ if netcdf_lib==None: netcdf_lib = os.path.join(netcdf_prefix, 'lib') + ext_modules = [Extension('Scientific_netcdf', + ['Src/Scientific_netcdf.c'], + include_dirs=['Include', netcdf_include] Index: ScientificPython.spec =================================================================== RCS file: /cvs/pkgs/rpms/ScientificPython/F-11/ScientificPython.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ScientificPython.spec 15 Jul 2009 17:21:23 -0000 1.19 +++ ScientificPython.spec 15 Jul 2009 19:57:40 -0000 1.20 @@ -3,7 +3,7 @@ Name: ScientificPython Version: 2.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A collection of Python modules that are useful for scientific computing Group: Development/Languages @@ -121,7 +121,13 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/Scientific/Functions %{python_sitearch}/Scientific/Geometry %{python_sitearch}/Scientific/IO -%{python_sitearch}/Scientific/linux2 +%dir %{python_sitearch}/Scientific/linux2 +%{python_sitearch}/Scientific/linux2/Scientific_affinitypropagation.so +%{python_sitearch}/Scientific/linux2/Scientific_interpolation.so +%{python_sitearch}/Scientific/linux2/Scientific_netcdf.so +%{python_sitearch}/Scientific/linux2/Scientific_numerics_package_id.so +%{python_sitearch}/Scientific/linux2/Scientific_vector.so + %{python_sitearch}/Scientific/Physics %{python_sitearch}/Scientific/Signals %{python_sitearch}/Scientific/Statistics @@ -156,6 +162,9 @@ rm -rf $RPM_BUILD_ROOT %doc Doc/Reference Examples Doc/BSP_Tutorial.pdf %changelog +* Wed Jul 15 2009 Jef Spaleta - 2.8-6 +- Even better patch! + * Wed Jul 15 2009 Jef Spaleta - 2.8-5 - Fix netcdf location patch with better long term fix provided by user in bug 511313 From pkgdb at fedoraproject.org Wed Jul 15 20:00:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:03 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200003.E2FE610F84C@bastion2.fedora.phx.redhat.com> fab has set the watchbugzilla acl on klavaro (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:04 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200005.08D8510F8A3@bastion2.fedora.phx.redhat.com> fab has set the commit acl on klavaro (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:04 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200004.42BB010F898@bastion2.fedora.phx.redhat.com> fab has set the watchcommits acl on klavaro (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:06 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200006.46D4910F8A9@bastion2.fedora.phx.redhat.com> fab has set the approveacls acl on klavaro (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:10 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200010.794DE10F8AB@bastion2.fedora.phx.redhat.com> fab has set the watchbugzilla acl on klavaro (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:11 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200011.5378010F8AF@bastion2.fedora.phx.redhat.com> fab has set the watchcommits acl on klavaro (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:11 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200011.D56AF10F8B2@bastion2.fedora.phx.redhat.com> fab has set the commit acl on klavaro (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:13 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200013.BC8A010F8B5@bastion2.fedora.phx.redhat.com> fab has set the approveacls acl on klavaro (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:16 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200017.0454B10F84C@bastion2.fedora.phx.redhat.com> fab has set the watchbugzilla acl on klavaro (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:18 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200018.4536210F8BA@bastion2.fedora.phx.redhat.com> fab has set the watchcommits acl on klavaro (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:19 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200019.5542E10F8BD@bastion2.fedora.phx.redhat.com> fab has set the commit acl on klavaro (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From pkgdb at fedoraproject.org Wed Jul 15 20:00:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 20:00:21 +0000 Subject: [pkgdb] klavaro had acl change status Message-ID: <20090715200021.4558610F8C1@bastion2.fedora.phx.redhat.com> fab has set the approveacls acl on klavaro (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/klavaro From jkeating at fedoraproject.org Wed Jul 15 20:01:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 15 Jul 2009 20:01:30 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/devel sources, 1.3, 1.4 trac-mercurial-plugin.spec, 1.6, 1.7 Message-ID: <20090715200130.6990011C049A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11766 Modified Files: sources trac-mercurial-plugin.spec Log Message: * Wed Jul 15 2009 Jesse Keating - 0.11.0.7-3.20090715svn8072 - New upstream snapshot to work with mercurial-1.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Feb 2009 00:24:34 -0000 1.3 +++ sources 15 Jul 2009 20:00:59 -0000 1.4 @@ -1 +1 @@ -8f6cf034ef53f48927ee819646b29bde TracMercurial-0.11.0.7.tar.gz +836de762f4a0a3da0e467ea873a9ab44 TracMercurial-0.11.0.7.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trac-mercurial-plugin.spec 25 Feb 2009 21:35:33 -0000 1.6 +++ trac-mercurial-plugin.spec 15 Jul 2009 20:01:00 -0000 1.7 @@ -1,19 +1,19 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 7817 +%define svnrev 8072 Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 2.20090205svn%{svnrev}%{?dist} +Release: 3.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet # No version specified. License: GPL+ URL: http://trac.edgewall.org/wiki/TracMercurial -# Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin/; \ -# cd mercurial-plugin; \ +# Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin-0.11/; \ +# cd mercurial-plugin-0.11; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -21,7 +21,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial, trac >= 0.11, python-setuptools +Requires: mercurial >= 1.2, trac >= 0.11, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Jesse Keating - 0.11.0.7-3.20090715svn8072 +- New upstream snapshot to work with mercurial-1.2 + * Wed Feb 25 2009 Fedora Release Engineering - 0.11.0.7-2.20090205svn7817 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rjones at fedoraproject.org Wed Jul 15 20:03:32 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 15 Jul 2009 20:03:32 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs-1.0.61-no-locale-for-perl.patch, 1.1, 1.2 libguestfs.spec, 1.47, 1.48 Message-ID: <20090715200332.8398611C049A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12373 Modified Files: libguestfs-1.0.61-no-locale-for-perl.patch libguestfs.spec Log Message: Try crazy idea of patching configure directly ... it's still really a bug in the autotools files however. libguestfs-1.0.61-no-locale-for-perl.patch: Index: libguestfs-1.0.61-no-locale-for-perl.patch =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs-1.0.61-no-locale-for-perl.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libguestfs-1.0.61-no-locale-for-perl.patch 15 Jul 2009 18:18:09 -0000 1.1 +++ libguestfs-1.0.61-no-locale-for-perl.patch 15 Jul 2009 20:03:32 -0000 1.2 @@ -1,13 +1,13 @@ -diff --git a/configure.ac b/configure.ac -index 6b14c4a..59eeb9d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -306,7 +306,7 @@ AC_CHECK_PROG([PERL],[perl],[perl],[no]) - dnl Check for Perl modules that must be present to compile and - dnl test the Perl bindings. +diff -ur libguestfs-1.0.61.orig/configure libguestfs-1.0.61/configure +--- libguestfs-1.0.61.orig/configure 2009-07-15 17:08:14.000000000 +0100 ++++ libguestfs-1.0.61/configure 2009-07-15 21:00:34.207966400 +0100 +@@ -16735,7 +16735,7 @@ + + missing_perl_modules=no -for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker Locale::TextDomain; do +for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker; do - AC_MSG_CHECKING([for $pm]) + { $as_echo "$as_me:$LINENO: checking for $pm" >&5 + $as_echo_n "checking for $pm... " >&6; } if ! perl -M$pm -e1 >/dev/null 2>&1; then - AC_MSG_RESULT([no]) +Only in libguestfs-1.0.61: configure~ Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- libguestfs.spec 15 Jul 2009 19:45:00 -0000 1.47 +++ libguestfs.spec 15 Jul 2009 20:03:32 -0000 1.48 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Version: 1.0.61 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -12,7 +12,6 @@ Source0: http://libguestfs.org/downl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Patch0: libguestfs-1.0.61-no-locale-for-perl.patch -BuildRequires: automake, autoconf, libtool, gettext-devel # Currently fails on PPC because: # "No Package Found for kernel" @@ -306,7 +305,6 @@ Requires: jpackage-utils mkdir -p daemon/m4 %patch0 -p1 -autoreconf %build @@ -539,7 +537,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-5 +* Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-6 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. - New BR perl-libintl (not enabled, because not in EPEL). From scop at fedoraproject.org Wed Jul 15 20:15:41 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Wed, 15 Jul 2009 20:15:41 +0000 (UTC) Subject: rpms/vdradmin-am/devel vdradmin-am.spec,1.15,1.16 Message-ID: <20090715201541.D862D11C049A@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/vdradmin-am/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15172 Modified Files: vdradmin-am.spec Log Message: * Wed Jul 15 2009 Ville Skytt?? - 3.6.4-3 - Add dependency on TT JavaScript plugin, some templates use it. Index: vdradmin-am.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdradmin-am/devel/vdradmin-am.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- vdradmin-am.spec 26 Feb 2009 00:04:40 -0000 1.15 +++ vdradmin-am.spec 15 Jul 2009 20:15:41 -0000 1.16 @@ -4,7 +4,7 @@ Name: vdradmin-am Version: 3.6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Web interface for VDR Group: Applications/Internet @@ -23,6 +23,7 @@ BuildRequires: vdr-devel >= 1.3.27-0.4 BuildRequires: gettext BuildRequires: perl(Locale::gettext) Requires: perl(Locale::gettext) +Requires: perl(Template::Plugin::JavaScript) Requires: initscripts >= 8.22 Requires(pre): shadow-utils Requires(post): /sbin/chkconfig @@ -124,6 +125,9 @@ fi %changelog +* Wed Jul 15 2009 Ville Skytt?? - 3.6.4-3 +- Add dependency on TT JavaScript plugin, some templates use it. + * Wed Feb 25 2009 Fedora Release Engineering - 3.6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Wed Jul 15 20:26:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 15 Jul 2009 20:26:36 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/devel sources, 1.4, 1.5 trac-mercurial-plugin.spec, 1.7, 1.8 Message-ID: <20090715202636.CA34811C049A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18070 Modified Files: sources trac-mercurial-plugin.spec Log Message: * Wed Jul 15 2009 Jesse Keating - 0.11.0.7-4.20090715svn8072 - Update tarball generation steps Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Jul 2009 20:00:59 -0000 1.4 +++ sources 15 Jul 2009 20:26:06 -0000 1.5 @@ -1 +1 @@ -836de762f4a0a3da0e467ea873a9ab44 TracMercurial-0.11.0.7.tar.gz +0915f559e28236b28f2d3b22a806272f TracMercurial-0.11.0.7.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- trac-mercurial-plugin.spec 15 Jul 2009 20:01:00 -0000 1.7 +++ trac-mercurial-plugin.spec 15 Jul 2009 20:26:06 -0000 1.8 @@ -5,7 +5,7 @@ Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 3.20090715svn%{svnrev}%{?dist} +Release: 4.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -14,6 +14,7 @@ License: GPL+ URL: http://trac.edgewall.org/wiki/TracMercurial # Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin-0.11/; \ # cd mercurial-plugin-0.11; \ +# echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -55,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Jesse Keating - 0.11.0.7-4.20090715svn8072 +- Update tarball generation steps + * Wed Jul 15 2009 Jesse Keating - 0.11.0.7-3.20090715svn8072 - New upstream snapshot to work with mercurial-1.2 From mclasen at fedoraproject.org Wed Jul 15 20:32:37 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 20:32:37 +0000 (UTC) Subject: rpms/gnome-panel/devel gnome-panel.spec,1.357,1.358 Message-ID: <20090715203237.E0BAB11C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19336 Modified Files: gnome-panel.spec Log Message: fix file lists Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/gnome-panel.spec,v retrieving revision 1.357 retrieving revision 1.358 diff -u -p -r1.357 -r1.358 --- gnome-panel.spec 15 Jul 2009 18:57:08 -0000 1.357 +++ gnome-panel.spec 15 Jul 2009 20:32:07 -0000 1.358 @@ -338,8 +338,6 @@ fi %{_datadir}/gnome-2.0/ui/*.xml %dir %{_datadir}/omf/clock %dir %{_datadir}/omf/fish -%dir %{_datadir}/omf/window-list -%dir %{_datadir}/omf/workspace-switcher %{_datadir}/man/man*/* %{_datadir}/applications/gnome-panel.desktop %{_bindir}/gnome-panel From jkeating at fedoraproject.org Wed Jul 15 20:34:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 15 Jul 2009 20:34:31 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-11 import.log, NONE, 1.1 sources, 1.3, 1.4 trac-mercurial-plugin.spec, 1.6, 1.7 Message-ID: <20090715203431.B642611C049A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20084/F-11 Modified Files: sources trac-mercurial-plugin.spec Added Files: import.log Log Message: New upstream snapshot to support mercural 1.2 and greater API. Resolves rhbz:511396 --- NEW FILE import.log --- trac-mercurial-plugin-0_11_0_7-4_20090715svn8072_fc12:F-11:trac-mercurial-plugin-0.11.0.7-4.20090715svn8072.fc12.src.rpm:1247689927 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Feb 2009 00:24:34 -0000 1.3 +++ sources 15 Jul 2009 20:34:31 -0000 1.4 @@ -1 +1 @@ -8f6cf034ef53f48927ee819646b29bde TracMercurial-0.11.0.7.tar.gz +0915f559e28236b28f2d3b22a806272f TracMercurial-0.11.0.7.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/trac-mercurial-plugin.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trac-mercurial-plugin.spec 25 Feb 2009 21:35:33 -0000 1.6 +++ trac-mercurial-plugin.spec 15 Jul 2009 20:34:31 -0000 1.7 @@ -1,19 +1,20 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 7817 +%define svnrev 8072 Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 2.20090205svn%{svnrev}%{?dist} +Release: 4.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet # No version specified. License: GPL+ URL: http://trac.edgewall.org/wiki/TracMercurial -# Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin/; \ -# cd mercurial-plugin; \ +# Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin-0.11/; \ +# cd mercurial-plugin-0.11; \ +# echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -21,7 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial, trac >= 0.11, python-setuptools +Requires: mercurial >= 1.2, trac >= 0.11, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. @@ -55,6 +56,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Jesse Keating - 0.11.0.7-4.20090715svn8072 +- Update tarball generation steps + +* Wed Jul 15 2009 Jesse Keating - 0.11.0.7-3.20090715svn8072 +- New upstream snapshot to work with mercurial-1.2 + * Wed Feb 25 2009 Fedora Release Engineering - 0.11.0.7-2.20090205svn7817 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From myoung at fedoraproject.org Wed Jul 15 20:58:51 2009 From: myoung at fedoraproject.org (myoung) Date: Wed, 15 Jul 2009 20:58:51 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch, NONE, 1.1.2.2 patch-2.6.31-rc3.bz2.sign, NONE, 1.1.2.2 .cvsignore, 1.1014.2.20, 1.1014.2.21 config-generic, 1.238.6.29, 1.238.6.30 drm-nouveau.patch, 1.8.6.12, 1.8.6.13 kernel.spec, 1.1294.2.40, 1.1294.2.41 linux-2.6-compile-fixes.patch, 1.193.6.1, 1.193.6.2 sources, 1.976.2.21, 1.976.2.22 upstream, 1.888.2.20, 1.888.2.21 xen.pvops.patch, 1.1.2.27, 1.1.2.28 linux-2.6-dmadebug-spinlock.patch, 1.1.2.2, NONE patch-2.6.31-rc2-git4.bz2.sign, 1.1.2.2, NONE patch-2.6.31-rc2.bz2.sign, 1.1.2.2, NONE Message-ID: <20090715205851.C1EDA11C049A@cvs1.fedora.phx.redhat.com> Author: myoung Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25691 Modified Files: Tag: private-myoung-dom0-branch .cvsignore config-generic drm-nouveau.patch kernel.spec linux-2.6-compile-fixes.patch sources upstream xen.pvops.patch Added Files: Tag: private-myoung-dom0-branch linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch patch-2.6.31-rc3.bz2.sign Removed Files: Tag: private-myoung-dom0-branch linux-2.6-dmadebug-spinlock.patch patch-2.6.31-rc2-git4.bz2.sign patch-2.6.31-rc2.bz2.sign Log Message: update pvops linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch: --- NEW FILE linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch --- diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 5cc77fb..8d3b3d1 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1288,6 +1288,14 @@ static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) dprintk("suspending cpu %u\n", cpu); + /* + * This whole bogosity is here because Powerbooks are made of fail. + * No sane platform should need any of the code below to be run. + * (it's entirely the wrong thing to do, as driver->get may + * reenable interrupts on some architectures). + */ + +#ifdef __powerpc__ if (!cpu_online(cpu)) return 0; @@ -1346,6 +1354,7 @@ static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) out: cpufreq_cpu_put(cpu_policy); +#endif /* __powerpc__ */ return ret; } @@ -1365,6 +1374,11 @@ static int cpufreq_resume(struct sys_device *sysdev) dprintk("resuming cpu %u\n", cpu); + /* As with the ->suspend method, all the code below is + * only necessary because Powerbooks suck. + * See commit 42d4dc3f4e1e for jokes. */ +#ifdef __powerpc__ + if (!cpu_online(cpu)) return 0; @@ -1428,6 +1442,7 @@ out: schedule_work(&cpu_policy->update); fail: cpufreq_cpu_put(cpu_policy); +#endif /* __powerpc__ */ return ret; } --- NEW FILE patch-2.6.31-rc3.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKW+DRyGugalF9Dw4RAsIPAJ9AM7RKZ20g4JmawZnqs+g7muodKgCghTQa 1R44RsEbaiDeFRCLS2WTn1A= =ubmU -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1014.2.20 retrieving revision 1.1014.2.21 diff -u -p -r1.1014.2.20 -r1.1014.2.21 --- .cvsignore 10 Jul 2009 19:04:29 -0000 1.1014.2.20 +++ .cvsignore 15 Jul 2009 20:58:03 -0000 1.1014.2.21 @@ -5,5 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 -patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git4.bz2 +patch-2.6.31-rc3.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.238.6.29 retrieving revision 1.238.6.30 diff -u -p -r1.238.6.29 -r1.238.6.30 --- config-generic 10 Jul 2009 19:04:29 -0000 1.238.6.29 +++ config-generic 15 Jul 2009 20:58:03 -0000 1.238.6.30 @@ -356,6 +356,7 @@ CONFIG_BLK_DEV_UMEM=m CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_CRYPTOLOOP=m CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_OSD=m CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 @@ -3966,6 +3967,7 @@ CONFIG_USB_ATMEL=m # CONFIG_LINE6_USB is not set # CONFIG_USB_SERIAL_QUATECH_ESU100 is not set # CONFIG_RT3070 is not set + CONFIG_RTL8192SU is not set # # Android drm-nouveau.patch: View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.8.6.12 -r 1.8.6.13 drm-nouveau.patch Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.8.6.12 retrieving revision 1.8.6.13 diff -u -p -r1.8.6.12 -r1.8.6.13 --- drm-nouveau.patch 30 Jun 2009 18:06:00 -0000 1.8.6.12 +++ drm-nouveau.patch 15 Jul 2009 20:58:03 -0000 1.8.6.13 @@ -94,7 +94,7 @@ index 6246e3f..436e2fe 100644 if (map->type == _DRM_REGISTERS) diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile new file mode 100644 -index 0000000..96688cf +index 0000000..f5d93b5 --- /dev/null +++ b/drivers/gpu/drm/nouveau/Makefile @@ -0,0 +1,26 @@ @@ -105,7 +105,7 @@ index 0000000..96688cf +ccflags-y := -Iinclude/drm +nouveau-y := nouveau_drv.o nouveau_state.o nouveau_fifo.o nouveau_mem.o \ + nouveau_object.o nouveau_irq.o nouveau_notifier.o \ -+ nouveau_swmthd.o nouveau_sgdma.o nouveau_dma.o \ ++ nouveau_sgdma.o nouveau_dma.o \ + nouveau_bo.o nouveau_fence.o nouveau_gem.o nouveau_ttm.o \ + nouveau_hw.o nouveau_calc.o nouveau_bios.o nouveau_i2c.o \ + nouveau_display.o nouveau_fbcon.o nouveau_backlight.o \ @@ -286,10 +286,10 @@ index 0000000..395639b +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..f6628db +index 0000000..f719eb4 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c -@@ -0,0 +1,4852 @@ +@@ -0,0 +1,4861 @@ +/* + * Copyright 2005-2006 Erik Waling + * Copyright 2006 Stephane Marchesin @@ -341,10 +341,10 @@ index 0000000..f6628db +/* this will need remembering across a suspend */ +static uint32_t saved_nv_pfb_cfg0; + -+typedef struct { ++struct init_exec { + bool execute; + bool repeat; -+} init_exec_t; ++}; + +static bool nv_cksum(const uint8_t *data, unsigned int length) +{ @@ -531,22 +531,22 @@ index 0000000..f6628db + return false; +} + -+typedef struct { ++struct init_tbl_entry { + char* name; + uint8_t id; + int length; + int length_offset; + int length_multiplier; -+ bool (*handler)(struct drm_device *dev, struct nvbios *, uint16_t, init_exec_t *); -+} init_tbl_entry_t; ++ bool (*handler)(struct drm_device *dev, struct nvbios *, uint16_t, struct init_exec *); ++}; + -+typedef struct { ++struct bit_entry { + uint8_t id[2]; + uint16_t length; + uint16_t offset; -+} bit_entry_t; ++}; + -+static int parse_init_table(struct drm_device *dev, struct nvbios *bios, unsigned int offset, init_exec_t *iexec); ++static int parse_init_table(struct drm_device *dev, struct nvbios *bios, unsigned int offset, struct init_exec *iexec); + +#define MACRO_INDEX_SIZE 2 +#define MACRO_SIZE 8 @@ -581,68 +581,22 @@ index 0000000..f6628db + struct drm_nouveau_private *dev_priv = dev->dev_private; + + /* C51 has misaligned regs on purpose. Marvellous */ -+ if (reg & 0x2 || (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) { -+ NV_ERROR(dev, "========== misaligned reg 0x%08X ==========\n", -+ reg); -+ return 0; -+ } -+ /* warn on C51 regs that haven't been verified accessible in mmiotracing */ ++ if (reg & 0x2 || ++ (reg & 0x1 && dev_priv->VBIOS.pub.chip_version != 0x51)) ++ NV_ERROR(dev, "======= misaligned reg 0x%08X =======\n", reg); ++ ++ /* warn on C51 regs that haven't been verified accessible in tracing */ + if (reg & 0x1 && dev_priv->VBIOS.pub.chip_version == 0x51 && + reg != 0x130d && reg != 0x1311 && reg != 0x60081d) + NV_WARN(dev, "=== C51 misaligned reg 0x%08X not verified ===\n", + reg); + -+ #define WITHIN(x,y,z) ((x>=y)&&(x<=y+z)) -+ if (WITHIN(reg,NV_PMC_OFFSET,NV_PMC_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PBUS_OFFSET,NV_PBUS_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PFIFO_OFFSET,NV_PFIFO_SIZE)) -+ return 1; -+ /* maybe a little large, but it will do for the moment. */ -+ if (nv_arch(dev) >= NV_50 && WITHIN(reg, 0x1000, 0xEFFF)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x30 && WITHIN(reg,0x4000,0x600)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x40 && WITHIN(reg,0xc000,0x48)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0000d204) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x40) { -+ if (reg == 0x00011014 || reg == 0x00020328) -+ return 1; -+ if (WITHIN(reg,0x88000,NV_PBUS_SIZE)) /* new PBUS */ -+ return 1; -+ } -+ if (nv_arch(dev) >= NV_50) { -+ /* No clue what they do, but because they are outside normal -+ * ranges we'd better list them seperately. */ -+ if (reg == 0x00020018 || reg == 0x0002004C || -+ reg == 0x00020060 || reg == 0x00021218 || -+ reg == 0x0002130C || reg == 0x00089008 || -+ reg == 0x00089028) -+ return 1; ++ if (reg >= (8*1024*1024)) { ++ NV_ERROR(dev, "=== reg 0x%08x out of mapped bounds ===\n", reg); ++ return 0; + } -+ if (WITHIN(reg,NV_PFB_OFFSET,NV_PFB_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PEXTDEV_OFFSET,NV_PEXTDEV_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PCRTC0_OFFSET,NV_PCRTC0_SIZE * 2)) -+ return 1; -+ if (nv_arch(dev) >= NV_50 && -+ WITHIN(reg, NV50_DISPLAY_OFFSET, NV50_DISPLAY_SIZE)) -+ return 1; -+ if (WITHIN(reg,NV_PRAMDAC0_OFFSET,NV_PRAMDAC0_SIZE * 2)) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version >= 0x17 && reg == 0x0070fff0) -+ return 1; -+ if (dev_priv->VBIOS.pub.chip_version == 0x51 && WITHIN(reg,NV_PRAMIN_OFFSET,NV_PRAMIN_SIZE)) -+ return 1; -+ #undef WITHIN + -+ NV_ERROR(dev, "========== unknown reg 0x%08X ==========\n", reg); -+ -+ return 0; ++ return 1; +} + +static bool valid_idx_port(struct drm_device *dev, uint16_t port) @@ -992,7 +946,7 @@ index 0000000..f6628db + } +} + -+static bool init_io_restrict_prog(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_io_restrict_prog(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_IO_RESTRICT_PROG opcode: 0x32 ('2') + * @@ -1044,7 +998,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_REPEAT opcode: 0x33 ('3') + * @@ -1078,7 +1032,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_io_restrict_pll(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_io_restrict_pll(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_IO_RESTRICT_PLL opcode: 0x34 ('4') + * @@ -1142,7 +1096,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_end_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) ++static bool init_end_repeat(struct drm_device *dev, struct nvbios *bios, uint16_t offset, struct init_exec *iexec) +{ + /* INIT_END_REPEAT opcode: 0x36 ('6') + * @@ -1162,7 +1116,7 @@ index 0000000..f6628db + return true; +} + -+static bool init_copy(struct drm_device *dev, struct nvbios *bios, uint16_t offset, init_exec_t *iexec) [...4542 lines suppressed...] ++ 0x00122503, 0x00162600, 0x00122607, 0x00112680, 0x00112700, 0x00112702, ++ 0x00122780, 0x0011278b, 0x00112794, 0x0011279c, 0x0040d1e2, 0x00200298, ++ 0x00600006, 0x00200044, 0x00102880, 0x001128c6, 0x001528c9, 0x001928d0, ++ 0x00122900, 0x00122903, 0x00162a00, 0x00122a07, 0x00112a80, 0x00112b00, ++ 0x00112b02, 0x00122b80, 0x00112b8b, 0x00112b94, 0x00112b9c, 0x0040eee3, ++ 0x002002ff, 0x00600006, 0x00200044, 0x00102c80, 0x0040df0f, 0x0040df4b, ++ 0x00217240, 0x00600007, 0x0020043f, 0x008800ff, 0x0070008f, 0x0040df8c, ++ 0x005000cb, 0x00000000, 0x00112cc6, 0x00152cc9, 0x00192cd0, 0x00122d00, ++ 0x00122d03, 0x00162e00, 0x00122e07, 0x00112e80, 0x00112f00, 0x00112f02, ++ 0x00122f80, 0x00112f8b, 0x00112f94, 0x00112f9c, 0x00000000, 0x0040f50f, ++ 0x005000cb, 0x00217240, 0x00600007, 0x0020043f, 0x008800ff, 0x005000cb, ++ 0x0040f887, 0x0060000a, 0x00000000, 0x00410700, 0x007000a0, 0x00700080, ++ 0x00200380, 0x00600007, 0x00200004, 0x00c000ff, 0x008000ff, 0x005000cb, ++ 0x00700000, 0x00200000, 0x00600006, 0x00111bfe, 0x0041294d, 0x00700000, ++ 0x00200000, 0x00600006, 0x00111bfe, 0x00700080, 0x0070001d, 0x0040114d, ++ 0x00700081, 0x00600004, 0x0050004a, 0x00411388, 0x0060000b, 0x00200000, ++ 0x00600006, 0x00700000, 0x0041290b, 0x00111bfd, 0x0040424d, 0x00202dd2, ++ 0x008000fd, 0x005000cb, 0x00c00002, 0x00200380, 0x00600007, 0x00200160, ++ 0x00800002, 0x005000cb, 0x00c01802, 0x00202c72, 0x00800002, 0x005000cb, ++ 0x00404e4d, 0x0060000b, 0x0041274d, 0x00700001, 0x00700003, 0x00412d06, ++ 0x00412e05, 0x0060000d, 0x00700005, 0x0070000d, 0x00700006, 0x0070000b, ++ 0x0070000e, 0x0070001c, 0x0060000c, ~0 ++}; ++ ++static unsigned nv94_ctxvals[] = { ++ 0x0043, 0x00000000, ++ 0x0001, 0x00000030, ++ 0x0008, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0028, 0x00000000, ++ 0x0001, 0x00000003, ++ 0x0001, 0x00001000, ++ 0x000f, 0x00000000, ++ 0x0001, 0x0000fe0c, ++ 0x0004, 0x00000000, ++ 0x0001, 0x00001000, ++ 0x000a, 0x00000000, ++ 0x0001, 0x00000187, ++ 0x0004, 0x00000000, ++ 0x0001, 0x00001018, ++ 0x0001, 0x000000ff, ++ 0x000e, 0x00000000, ++ 0x0001, 0x00000004, ++ 0x0001, 0x044d00df, ++ 0x0001, 0x00000000, ++ 0x0001, 0x00000600, ++ 0x0005, 0x00000000, ++ 0x0001, 0x01000000, ++ 0x0001, 0x000000ff, ++ 0x0001, 0x00000000, ++ 0x0001, 0x00000400, ++ 0x0005, 0x00000000, ++ 0x0001, 0x00000001, ++ 0x0001, 0x00000080, ++ 0x0001, 0x00000004, ++ 0x0006, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0001, 0x00000001, ++ 0x0003, 0x00000000, ++ 0x0001, 0x00000001, ++ 0x0001, 0x00000100, ++ 0x0005, 0x00000000, ++ 0x0001, 0x00000002, ++ 0x0002, 0x00000001, + 0x0003, 0x00000000, + 0x0001, 0x00000001, + 0x0001, 0x003fffff, @@ -51203,10 +52720,10 @@ index 0000000..ca23454 +#endif diff --git a/drivers/gpu/drm/nouveau/nv50_instmem.c b/drivers/gpu/drm/nouveau/nv50_instmem.c new file mode 100644 -index 0000000..a89926e +index 0000000..9b5f802 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_instmem.c -@@ -0,0 +1,451 @@ +@@ -0,0 +1,445 @@ +/* + * Copyright (C) 2007 Ben Skeggs. + * @@ -51636,9 +53153,6 @@ index 0000000..a89926e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv; + -+ BUG_ON(dev_priv->ramin_map != NULL); -+ dev_priv->ramin_map = dev_priv->ramin; -+ + priv->last_access_wr = write; +} + @@ -51648,9 +53162,6 @@ index 0000000..a89926e + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nv50_instmem_priv *priv = dev_priv->engine.instmem.priv; + -+ BUG_ON(dev_priv->ramin_map == NULL); -+ dev_priv->ramin_map = NULL; -+ + if (priv->last_access_wr) { + nv_wr32(0x070000, 0x00000001); + if (!nv_wait(0x070000, 0x00000001, 0x00000000)) @@ -51706,10 +53217,10 @@ index 0000000..6572f12 +} diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c new file mode 100644 -index 0000000..8977aa3 +index 0000000..5429266 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_sor.c -@@ -0,0 +1,310 @@ +@@ -0,0 +1,304 @@ +/* + * Copyright (C) 2008 Maarten Maathuis. + * All Rights Reserved. @@ -51745,7 +53256,6 @@ index 0000000..8977aa3 +#include "nouveau_connector.h" +#include "nouveau_crtc.h" +#include "nv50_display.h" -+#include "nv50_display_commands.h" + +extern int nouveau_duallink; + @@ -51755,7 +53265,6 @@ index 0000000..8977aa3 + struct drm_device *dev = encoder->base.dev; + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct nouveau_channel *evo = &dev_priv->evo.chan; -+ uint32_t offset = encoder->or * 0x40; + int ret; + + NV_DEBUG(dev, "Disconnecting SOR %d\n", encoder->or); @@ -51765,8 +53274,8 @@ index 0000000..8977aa3 + NV_ERROR(dev, "no space while disconnecting SOR\n"); + return; + } -+ BEGIN_RING(evo, 0, NV50_SOR0_MODE_CTRL + offset, 1); -+ OUT_RING (evo, NV50_SOR_MODE_CTRL_OFF); ++ BEGIN_RING(evo, 0, NV50_EVO_SOR(encoder->or, MODE_CTRL), 1); ++ OUT_RING (evo, 0); +} + +static int @@ -51895,8 +53404,7 @@ index 0000000..8977aa3 + struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); + struct drm_device *dev = drm_encoder->dev; + struct nouveau_crtc *crtc = to_nouveau_crtc(drm_encoder->crtc); -+ uint32_t offset = encoder->or * 0x40; -+ uint32_t mode_ctl = NV50_SOR_MODE_CTRL_OFF; ++ uint32_t mode_ctl = 0; + int ret; + + NV_DEBUG(dev, "or %d\n", encoder->or); @@ -51906,31 +53414,29 @@ index 0000000..8977aa3 + nv50_sor_dpms(drm_encoder, DRM_MODE_DPMS_ON); + dev_priv->in_modeset = ret; + -+ if (encoder->base.encoder_type == DRM_MODE_ENCODER_LVDS) { -+ mode_ctl |= NV50_SOR_MODE_CTRL_LVDS; -+ } else { -+ mode_ctl |= NV50_SOR_MODE_CTRL_TMDS; ++ if (encoder->base.encoder_type != DRM_MODE_ENCODER_LVDS) { ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_TMDS; + if (adjusted_mode->clock > 165000) -+ mode_ctl |= NV50_SOR_MODE_CTRL_TMDS_DUAL_LINK; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_TMDS_DUAL_LINK; + } + + if (crtc->index == 1) -+ mode_ctl |= NV50_SOR_MODE_CTRL_CRTC1; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_CRTC1; + else -+ mode_ctl |= NV50_SOR_MODE_CTRL_CRTC0; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_CRTC0; + + if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) -+ mode_ctl |= NV50_SOR_MODE_CTRL_NHSYNC; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NHSYNC; + + if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) -+ mode_ctl |= NV50_SOR_MODE_CTRL_NVSYNC; ++ mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NVSYNC; + + ret = RING_SPACE(evo, 2); + if (ret) { + NV_ERROR(dev, "no space while connecting SOR\n"); + return; + } -+ BEGIN_RING(evo, 0, NV50_SOR0_MODE_CTRL + offset, 1); ++ BEGIN_RING(evo, 0, NV50_EVO_SOR(encoder->or, MODE_CTRL), 1); + OUT_RING (evo, mode_ctl); +} + @@ -52004,8 +53510,7 @@ index 0000000..8977aa3 + drm_encoder_init(dev, &encoder->base, &nv50_sor_encoder_funcs, type); + drm_encoder_helper_add(&encoder->base, &nv50_sor_helper_funcs); + -+ /* I've never seen possible crtc's restricted. */ -+ encoder->base.possible_crtcs = 3; ++ encoder->base.possible_crtcs = entry->heads; + encoder->base.possible_clones = 0; + + /* Some default state, unknown what it precisely means. */ View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.1294.2.40 -r 1.1294.2.41 kernel.spec Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1294.2.40 retrieving revision 1.1294.2.41 diff -u -p -r1.1294.2.40 -r1.1294.2.41 --- kernel.spec 10 Jul 2009 19:04:29 -0000 1.1294.2.40 +++ kernel.spec 15 Jul 2009 20:58:06 -0000 1.1294.2.41 @@ -57,9 +57,9 @@ Summary: The Linux kernel # The next upstream release sublevel (base_sublevel+1) %define upstream_sublevel %(echo $((%{base_sublevel} + 1))) # The rc snapshot level -%define rcrev 2 +%define rcrev 3 # The git snapshot level -%define gitrev 4 +%define gitrev 0 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -646,6 +646,8 @@ Patch800: linux-2.6-crash-driver.patch Patch900: linux-2.6-pci-cacheline-sizing.patch +Patch1000: linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch + Patch1515: linux-2.6.31-lirc.patch Patch1516: lirc_streamzap-buffer-rework.patch Patch1517: hdpvr-ir-enable.patch @@ -674,8 +676,6 @@ Patch2900: linux-2.6-v4l-dvb-update.patc Patch2901: linux-2.6-v4l-dvb-experimental.patch Patch2903: linux-2.6-revert-dvb-net-kabi-change.patch -Patch3000: linux-2.6-dmadebug-spinlock.patch - # fs fixes # NFSv4 @@ -1134,8 +1134,6 @@ ApplyPatch linux-2.6.29-sparc-IOC_TYPECH # ApplyPatch linux-2.6-execshield.patch -ApplyPatch linux-2.6-dmadebug-spinlock.patch - # # bugfixes to drivers and filesystems # @@ -1223,6 +1221,8 @@ ApplyPatch linux-2.6-crash-driver.patch # Determine cacheline sizes in a generic manner. ApplyPatch linux-2.6-pci-cacheline-sizing.patch +ApplyPatch linux-2.6-cpufreq-ppc-suspend-clusterfuck.patch + # http://www.lirc.org/ ApplyPatch linux-2.6.31-lirc.patch # should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else... @@ -1875,6 +1875,33 @@ fi # and build. %changelog +* Wed Jul 15 2009 Michael Young +- update pvops + +* Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 +- 2.6.31-rc3 +- config changes: + - RTL8192SU is not set, (staging) + +* Mon Jul 13 2009 Kyle McMartin 2.6.31-0.67.rc2.git9 +- 2.6.31-rc2-git9 +- config changes: + - BLK_DEV_OSD=m + +* Mon Jul 13 2009 Ben Skeggs +- drm-nouveau.patch: update from upstream + +* Fri Jul 10 2009 Chuck Ebbert +- 2.6.31-rc2-git6 +- Drop dmadebug-spinlock patch -- merged upstream. + +* Fri Jul 10 2009 Dave Jones 2.6.31-0.64.rc2.git5 +- Don't jump through hoops that ppc powerbooks have to on sensible systems + in cpufreq_suspend. + +* Fri Jul 10 2009 Dave Jones +- 2.6.31-rc2-git5 + * Thu Jul 09 2009 Michael Young - disable CONFIG_KERNEL_LZMA as xen doesn't like it @@ -2639,2651 +2666,6 @@ fi * Mon Mar 23 2009 Dave Jones - 2.6.29 -* Mon Mar 23 2009 Mauro Carvalho Chehab -- Some fixes on drivers/media -- Removed inexistent drivers/media items from config-generic -- Cinergy T2 option were renamed. Use the current syntax - -* Mon Mar 23 2009 Matthew Garrett -- linux-2.6-sony-laptop-rfkill.patch - Update to support hotkeys and rfkill switch - -* Mon Mar 23 2009 Bill Nottingham -- build ide-gd_mod in on PPC (#491380) - -* Mon Mar 23 2009 Mark McLoughlin -- Add /sys/bus/pci/devices/*/remove_id for KVM (#487103) - -* Mon Mar 23 2009 Chuck Ebbert -- Linux 2.6.29-rc8-git6 - -* Mon Mar 23 2009 Roland McGrath -- utrace update, fixes /proc/pid/status format (#491508) - -* Mon Mar 23 2009 Ben Skeggs -- drm-nouveau.patch: fix GEM object leak, and display shutdown issue - -* Fri Mar 20 2009 Kyle McMartin -- Linux 2.6.29-rc8-git5 - -* Thu Mar 19 2009 Mauro Carvalho Chehab -- Removed v4l-build-fixes.patch - -* Thu Mar 19 2009 Mauro Carvalho Chehab -- update v4l-dvb to reflect changes at linux-next - -* Thu Mar 19 2009 Matthew Garrett -- linux-2.6-acpi-video-didl-intel-outputs.patch - don't attempt to re-register the backlight device on resume -- linux-2.6-sony-laptop-rfkill.patch - provide rfkill control on current vaios - -* Thu Mar 19 2009 Dave Jones -- Switch x86-32 back to using 8k stacks. - -* Thu Mar 19 2009 Chuck Ebbert -- Enable the sfc 10GbE network driver. - -* Thu Mar 19 2009 Kyle McMartin -- dma-api debug fixes for e1000 and e1000e from tip. -- fix dma leak in tulip request_irq error path. - -* Thu Mar 19 2009 Kyle McMartin 2.6.29-0.267.rc8.git4 -- build fixes for v4l tree. - -* Thu Mar 19 2009 Roland McGrath 2.6.29-0.266.rc8.git4 -- utrace update, add ftrace process-tracer widget, drop utrace-ptrace - -* Thu Mar 19 2009 Ben Skeggs -- drm-nouveau.patch: kms fixes and cleanups - -* Thu Mar 19 2009 Chuck Ebbert -- 2.6.29-rc8-git4 -- Dropped patches, merged upstream: - linux-2.6-ext4-extent-header-check-fix.patch - linux-2.6-ext4-print-warning-once.patch - linux-2.6-net-velocity-dma.patch - -* Wed Mar 18 2009 Mauro Carvalho Chehab -- merge hdpvr patch into v4l-dvb updates -- update v4l-dvb to reflect changes at linux-next - -* Wed Mar 18 2009 Jarod Wilson -- Update hdpvr patch to version targeted for v4l-dvb merge -- Re-sort patches to add hdpvr after v4l-dvb updates - -* Wed Mar 18 2009 Dave Airlie -- drm-next.patch: fix rs600 GART setup -- drm-modesetting-radeon.patch: allocator fixups - -* Wed Mar 18 2009 Ben Skeggs -- enable CONFIG_MMIOTRACE on x86/x86_64 - -* Tue Mar 17 2009 Michael Young -- update pvops patch - -* Tue Mar 17 2009 Kyle McMartin -- increase MAX_LOCKDEP_ENTRIES to 10240. - -* Mon Mar 16 2009 Josef Bacik 2.6.29-0.258.rc8.git2 -- update btrfs code so it doesn't pop the stack on x86 - -* Mon Mar 16 2009 Kyle McMartin 2.6.29-0.255.rc8.git2 -- 2.6.29-rc8-git2 - -* Sun Mar 15 2009 Chuck Ebbert 2.6.29-0.254.rc8.git1 -- 2.6.29-rc8-git1 -- Entire v4l-dvb-fixes patch was merged upstream. - -* Fri Mar 13 2009 Mauro Carvalho Chehab 2.6.29-0.252.rc8 -- Quiet down an ext4 warning message. - -* Fri Mar 13 2009 Dave Jones 2.6.29-0.250.rc8 -- Fix DMA leak in Velocity TX path - -* Fri Mar 13 2009 Mauro Carvalho Chehab -- 2.6.26-rc3-git4 - -* Wed May 21 2008 John W. Linville -- libertas: Fix ethtool statistics -- mac80211: fix NULL pointer dereference in ieee80211_compatible_rates -- mac80211: don't claim iwspy support -- rtl8187: resource leak in error case -- hostap_cs: add ID for Conceptronic CON11CPro -- orinoco_cs: add ID for SpeedStream wireless adapters - -* Wed May 21 2008 Dave Jones -- 2.6.26-rc3-git3 - -* Tue May 20 2008 Dave Jones -- 2.6.26-rc3-git1 - -* Mon May 19 2008 Dave Jones -- Disable PATA_ISAPNP (it's busted). - -* Mon May 19 2008 John W. Linville -- mac80211 : Association with 11n hidden ssid ap. -- libertas: fix command timeout after firmware failure -- mac80211: Add RTNL version of ieee80211_iterate_active_interfaces -- wireless: Create 'device' symlink in sysfs -- hostap: fix "registers" registration in procfs -- wireless, airo: waitbusy() won't delay -- iwlwifi : Set monitor mode for 4965 -- iwlwifi : Set monitor mode for 3945 -- make sta_rx_agg_session_timer_expired() static -- remove ieee80211_tx_frame() -- remove ieee80211_wx_{get,set}_auth() -- wireless: fix "iwlwifi: unify init driver flow" -- iwl3945: do not delay hardware scan if it is a direct scan -- ath5k: Fix loop variable initializations -- zd1211rw: initial IBSS support -- mac80211: use hardware flags for signal/noise units -- mac80211: make rx radiotap header more flexible -- iwlwifi: HW dependent run time calibration -- iwlwifi: HW crypto acceleration fixes -- iwlwifi: remove uneeded callback -- iwlwifi: CT-Kill configuration fix -- iwlwifi: HT IE in probe request clean up -- iwlwifi: clean up register names and defines -- iwlwifi: move Flow Handlers define to iwl-fh.h -- iwlwifi: move verify_ucode functions to iwl-core -- iwlwifi: move hw_rx_handler_setup to iwl-4965.c -- iwlwifi-5000: update the CT-Kill value for 5000 series -- iwlwifi-5000: add run time calibrations for 5000 -- iwlwifi-5000: update the byte count in SCD -- iwlwifi: move iwl4965_init_alive_start to iwl-4965.c -- wireless: Add missing locking to cfg80211_dev_rename -- mac80211: correct skb allocation -- iwlwifi: move per driverdebug_level to per device -- iwlwifi: move debug_level to sysfs/bus/pci/devices -- iwlwifi: update levels of debug prints -- iwlwifi: adding parameter of fw_restart -- iwlwifi: remove support for Narrow Channel (10Mhz) -- iwlwifi: HT antenna/chains overhaul -- iwlwifi: TLC modifications -- iwlwifi: rate scale module cleanups -- iwlwifi: rate scale restructure toggle_antenna functions -- iwlwifi: rs fix wrong parenthesizing in rs_get_lower_rate function -- iwlwifi: rate sacaling fixes -- iwlwifi: more RS improvements -- mac80211: remove unnecessary byteshifts in frame control testing -- wireless: use get/put_unaligned_* helpers -- mac80211: tkip.c use kernel-provided infrastructure -- b43: replace limit_value macro with clamp_val -- b43legacy: replace limit_value macro with clamp_val -- b43: use the bitrev helpers rather than rolling a private one -- libertas: debug output tweaks for lbs_thread -- libertas: make some functions void -- libertas: allow removal of card at any time -- libertas: remove lbs_get_data_rate() -- b43: nphy.c remove duplicated include -- mac80211: Replace ieee80211_tx_control->key_idx with ieee80211_key_conf -- mac80211: Add IEEE80211_KEY_FLAG_PAIRWISE -- rt2x00: Support hardware RTS and CTS-to-self frames -- rt2x00: Remove DRIVER_SUPPORT_MIXED_INTERFACES -- rt2x00: Use rt2x00 queue numbering -- rt2x00: Add helper macros -- rt2x00: Fix kernel-doc -- rt2x00: Release rt2x00 2.1.5 -- rt2x00: Clarify supported chipsets in Kconfig -- mac80211: Set IEEE80211_TXPD_REQ_TX_STATUS for all TX frames -- mac80211: a few code cleanups -- mac80211: clean up get_tx_stats callback -- mac80211: remove queue info from ieee80211_tx_status -- mac80211: QoS related cleanups -- mac80211: fix wme code -- mac80211: require four hardware queues for QoS/HT -- mac80211: proper STA info locking -- mac80211: fix queue constant confusion -- wireless: fix warning introduced by "mac80211: QoS related cleanups" -- ssb: Allow reading of 440-byte SPROM that is not rev 4 -- b43: Rewrite LO calibration algorithm -- b43: Remove some dead code -- b43: Don't disable IRQs in mac_suspend -- iwlwifi: Add power level support -- airo: use netstats in net_device structure -- arlan: use netstats in net_device structure -- atmel: use netstats in net_device structure -- iwlwifi: arranging aggregation actions -- iwlwifi: expanding HW parameters control -- iwlwifi: support 64 bit DMA masks -- iwlwifi: handle shared memory -- iwlwifi: unify init driver flow -- iwlwifi: iwl-sta redundant includes clean up -- iwlwifi-5000: add iwl 5000 shared memory handlers -- iwlwifi: map A-MPDU HW queue to mac80211 A-MPDU SW queue -- iwlwifi-5000: rename iwl5000_init_nic to iwl5000_init_config -- iwlwifi: create disable SCD Tx FIFOs handler -- iwlwifi: move NIC init and Tx queues init to iwlcore -- iwlwifi: handle shared memory Rx index access -- iwlwifi: remove 4965 prefix from iwl4965_kw and iwl4965_tx_queue -- iwlwifi: fix spinlock used before initialized -- iwlwifi: move find station to iwl-sta.c -- iwlwifi: cleanup set_pwr_src -- iwlwifi: define ANA_PLL values in iwl-csr.h -- iwlwifi: export int iwl4965_set_pwr_src -- iwlwifi: changing EEPROM layout handling -- iwlwifi: remove includes to net/ieee80211.h -- iwlwifi: add apm init handler -- iwlwifi: add iwl_hw_detect function to iwl core -- iwlwifi: check eeprom version in pci probe time -- iwlwifi: reorganize TX RX constatns -- iwlwifi: 3945 remove unused SCD definitions -- iwlwifi: remove 49 prefix from general CSR values -- iwlwifi: remove unnecessary apmg settings -- iwlwifi: wrapping nic configuration in iwl core handler -- iwlwifi-5000: adding initial recognition for the 5000 family -- iwlwifi-5000: add ops infrastructure for 5000 -- iwlwifi-5000: add apm_init handler for 5000 HW family -- iwlwifi-5000: use iwl4965_set_pwr_src in 5000 -- iwlwifi-5000: EEPROM settings for 5000 -- iwlwifi-5000: adding iwl5000 HW parameters -- iwlwifi-5000: adjust antennas names in 5000 HW family -- iwlwifi-5000: Add HW REV of 5000 HW family -- iwlwifi-5000: add eeprom check version handler -- iwlwifi-5000: add nic config handler for 5000 HW -- iwlwifi: rename iwl-4965-commands to iwl-commands.h -- iwlwifi: rename iwl-4965.h to iwl-dev.h -- iwlwifi: move RX code to iwl-rx.c -- iwlwifi: don't override association channel with control channel -- iwlwifi: remove 4965 from station_entry -- iwlwifi: debugfs EEPROM dump -- iwlwifi: remove 4965 from rx_packet -- iwlwifi: generalize iwl4965_send_add_station function -- iwlwifi-5000: add build_addsta_hcmd handler for 5000 HW -- iwlwifi: move iwl4965_set_rxon_ht into iwlcore -- iwlwifi: compile iwl-sta into iwlcore -- iwlwifi: add device sysfs version entry -- at76: use hardware flags for signal/noise units - -* Sun May 18 2008 Dave Jones -- 2.6.26-rc3 - -* Sat May 17 2008 Eric Paris -- SELinux: enable deffered context validation -- SELinux: don't sleep while holding locks in above patch -- SELinux: replace ioctl specific knowlege in the selinux code and follow generic permissions -- SELinux: not all reading in /proc needs ptrace, so make those things just use 'read' perms - -* Sat May 17 2008 Dave Jones -- Enable PAGEALLOC debugging for a while. (Some things might get slow). - -* Sat May 17 2008 Dave Jones -- Disable CONFIG_SND_PCSP (#447039) - -* Fri May 16 2008 Dave Jones -- Enable CONFIG_SND_SERIAL_U16550 - -* Fri May 16 2008 Dave Jones -- 2.6.26-rc2-git5 - -* Thu May 15 2008 Eric Sandeen -- ext3/4: fix uninitialized bs in ext3/4_xattr_set_handle() - -* Wed May 14 2008 Eric Paris -- fix may sleep in allocation for previous deffered context patch -- replace selinux specific knowledge of ioctls with a generic ioctl implementation - -* Mon May 12 2008 Kyle McMartin -- Linux 2.6.25.3 - -* Fri May 09 2008 John W. Linville 2.6.25.2-7 -- Regroup wireless patches as prep for 2.6.26 and F10 cycles - -* Fri May 09 2008 Eric Paris -- support deffered context validation in selinux. aka rpm can lay down illegal labels. (won't upstream until .27 opens) - -* Wed May 07 2008 Chuck Ebbert 2.6.25.2-5 -- Add the patches queued for 2.6.25.3 - ### # The following Emacs magic makes C-c C-e use UTC dates. # Local Variables: linux-2.6-compile-fixes.patch: Index: linux-2.6-compile-fixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-compile-fixes.patch,v retrieving revision 1.193.6.1 retrieving revision 1.193.6.2 diff -u -p -r1.193.6.1 -r1.193.6.2 --- linux-2.6-compile-fixes.patch 10 Jul 2009 19:04:30 -0000 1.193.6.1 +++ linux-2.6-compile-fixes.patch 15 Jul 2009 20:58:06 -0000 1.193.6.2 @@ -4,14 +4,3 @@ # Please add the errors from gcc before the diffs to save others having # to do a compile to figure out what your diff is fixing. Thanks. # ---- linux-2.6.30.noarch/drivers/net/bmac.c~ 2009-07-09 21:51:36.000000000 -0400 -+++ linux-2.6.30.noarch/drivers/net/bmac.c 2009-07-09 21:51:47.000000000 -0400 -@@ -431,7 +431,7 @@ bmac_init_phy(struct net_device *dev) - printk(KERN_DEBUG); - printk(KERN_CONT " %.4x", bmac_mif_read(dev, addr)); - } -- print(KERN_CONT "\n"); -+ printk(KERN_CONT "\n"); - - if (bp->is_bmac_plus) { - unsigned int capable, ctrl; Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.976.2.21 retrieving revision 1.976.2.22 diff -u -p -r1.976.2.21 -r1.976.2.22 --- sources 10 Jul 2009 19:04:31 -0000 1.976.2.21 +++ sources 15 Jul 2009 20:58:07 -0000 1.976.2.22 @@ -1,3 +1,2 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 -a785e5e8d16d646c7a7c876359b3dab3 patch-2.6.31-rc2.bz2 -76b4082138a3d4ba88c37da6e3b91d13 patch-2.6.31-rc2-git4.bz2 +39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.888.2.20 retrieving revision 1.888.2.21 diff -u -p -r1.888.2.20 -r1.888.2.21 --- upstream 10 Jul 2009 19:04:31 -0000 1.888.2.20 +++ upstream 15 Jul 2009 20:58:07 -0000 1.888.2.21 @@ -1,4 +1,3 @@ linux-2.6.30.tar.bz2 -patch-2.6.31-rc2.bz2 -patch-2.6.31-rc2-git4.bz2 +patch-2.6.31-rc3.bz2 xen.pvops.patch: Index: xen.pvops.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Attic/xen.pvops.patch,v retrieving revision 1.1.2.27 retrieving revision 1.1.2.28 diff -u -p -r1.1.2.27 -r1.1.2.28 --- xen.pvops.patch 9 Jul 2009 22:53:03 -0000 1.1.2.27 +++ xen.pvops.patch 15 Jul 2009 20:58:07 -0000 1.1.2.28 @@ -2016,8 +2016,21 @@ index 6b8ca3a..d47c54f 100644 mp_lapic_addr = address; set_fixmap_nocache(FIX_APIC_BASE, address); +diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c +index ca93638..9eff23c 100644 +--- a/arch/x86/kernel/acpi/sleep.c ++++ b/arch/x86/kernel/acpi/sleep.c +@@ -12,6 +12,8 @@ + #include + #include + ++#include ++ + #include "realmode/wakeup.h" + #include "sleep.h" + diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c -index 8fd1efb..e6e7500 100644 +index 90b5e6e..7011798 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c @@ -63,8 +63,10 @@ @@ -2076,7 +2089,7 @@ index 8fd1efb..e6e7500 100644 if (sis_apic_bug) writel(reg, &io_apic->index); -@@ -3852,6 +3873,11 @@ void __init probe_nr_irqs_gsi(void) +@@ -3851,6 +3872,11 @@ void __init probe_nr_irqs_gsi(void) printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi); } @@ -2088,7 +2101,7 @@ index 8fd1efb..e6e7500 100644 #ifdef CONFIG_SPARSE_IRQ int __init arch_probe_nr_irqs(void) { -@@ -4145,6 +4171,11 @@ void __init ioapic_init_mappings(void) +@@ -4144,6 +4170,11 @@ void __init ioapic_init_mappings(void) struct resource *ioapic_res; int i; @@ -4286,11 +4299,92 @@ index 4b45435..48804b0 100644 static inline void blk_free_request(struct request_queue *q, struct request *rq) { +diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c +index db307a3..c6d845c 100644 +--- a/drivers/acpi/acpica/hwsleep.c ++++ b/drivers/acpi/acpica/hwsleep.c +@@ -46,6 +46,9 @@ + #include "accommon.h" + #include "actables.h" + ++#include ++#include ++ + #define _COMPONENT ACPI_HARDWARE + ACPI_MODULE_NAME("hwsleep") + +@@ -343,8 +346,22 @@ acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state) + ACPI_FLUSH_CPU_CACHE(); + + /* Write #2: Write both SLP_TYP + SLP_EN */ ++ if (xen_pv_acpi()) { ++ int err; ++ ++ err = acpi_notify_hypervisor_state(sleep_state, ++ pm1a_control, pm1b_control); ++ if (err) { ++ ACPI_DEBUG_PRINT((ACPI_DB_INIT, ++ "Hypervisor failure [%d]\n", err)); ++ return_ACPI_STATUS(AE_ERROR); ++ } + ++ return_ACPI_STATUS(AE_OK); ++ } ++ + status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); ++ + if (ACPI_FAILURE(status)) { + return_ACPI_STATUS(status); + } +diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c +index 01574a0..c57e7b2 100644 +--- a/drivers/acpi/sleep.c ++++ b/drivers/acpi/sleep.c +@@ -19,6 +19,8 @@ + + #include + ++#include ++ + #include + #include + +@@ -211,6 +213,21 @@ static int acpi_suspend_begin(suspend_state_t pm_state) + return error; + } + ++static void do_suspend(void) ++{ ++ if (!xen_pv_acpi()) { ++ do_suspend_lowlevel(); ++ return; ++ } ++ ++ /* ++ * Xen will save and restore CPU context, so ++ * we can skip that and just go straight to ++ * the suspend. ++ */ ++ acpi_enter_sleep_state(ACPI_STATE_S3); ++} ++ + /** + * acpi_suspend_enter - Actually enter a sleep state. + * @pm_state: ignored +@@ -244,7 +261,7 @@ static int acpi_suspend_enter(suspend_state_t pm_state) + break; + + case ACPI_STATE_S3: +- do_suspend_lowlevel(); ++ do_suspend(); + break; + } + diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig -index bb72ada..bea8ae7 100644 +index 1d886e0..f4a2b10 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig -@@ -446,6 +446,7 @@ config XEN_BLKDEV_FRONTEND +@@ -462,6 +462,7 @@ config XEN_BLKDEV_FRONTEND tristate "Xen virtual block device support" depends on XEN default y @@ -4904,7 +4998,7 @@ index 0000000..b1a7d93 +} + diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig -index cab100a..aa72eb3 100644 +index cab100a..3b1c421 100644 --- a/drivers/xen/Kconfig +++ b/drivers/xen/Kconfig @@ -28,6 +28,29 @@ config XEN_DEV_EVTCHN @@ -4937,7 +5031,7 @@ index cab100a..aa72eb3 100644 config XENFS tristate "Xen filesystem" depends on XEN -@@ -60,4 +83,7 @@ config XEN_SYS_HYPERVISOR +@@ -60,4 +83,11 @@ config XEN_SYS_HYPERVISOR Create entries under /sys/hypervisor describing the Xen hypervisor environment. When running native or in another virtual environment, /sys/hypervisor will still be present, @@ -4947,11 +5041,16 @@ index cab100a..aa72eb3 100644 + +config XEN_XENBUS_FRONTEND + tristate ++ ++config XEN_S3 ++ def_bool y ++ depends on XEN_DOM0 && ACPI +\ No newline at end of file diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile -index ec2a39b..5a5c307 100644 +index ec2a39b..386c775 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile -@@ -1,9 +1,11 @@ +@@ -1,9 +1,12 @@ -obj-y += grant-table.o features.o events.o manage.o +obj-y += grant-table.o features.o events.o manage.o biomerge.o obj-y += xenbus/ @@ -4961,6 +5060,8 @@ index ec2a39b..5a5c307 100644 -obj-$(CONFIG_XEN_BALLOON) += balloon.o -obj-$(CONFIG_XEN_DEV_EVTCHN) += evtchn.o -obj-$(CONFIG_XENFS) += xenfs/ +-obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o +\ No newline at end of file +obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o +obj-$(CONFIG_XEN_XENCOMM) += xencomm.o +obj-$(CONFIG_XEN_BALLOON) += balloon.o @@ -4968,8 +5069,38 @@ index ec2a39b..5a5c307 100644 +obj-$(CONFIG_XEN_BLKDEV_BACKEND) += blkback/ +obj-$(CONFIG_XEN_NETDEV_BACKEND) += netback/ +obj-$(CONFIG_XENFS) += xenfs/ - obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o ++obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o ++obj-$(CONFIG_XEN_S3) += acpi.o \ No newline at end of file +diff --git a/drivers/xen/acpi.c b/drivers/xen/acpi.c +new file mode 100644 +index 0000000..e6d3d0e +--- /dev/null ++++ b/drivers/xen/acpi.c +@@ -0,0 +1,23 @@ ++#include ++ ++#include ++#include ++#include ++ ++int acpi_notify_hypervisor_state(u8 sleep_state, ++ u32 pm1a_cnt, u32 pm1b_cnt) ++{ ++ struct xen_platform_op op = { ++ .cmd = XENPF_enter_acpi_sleep, ++ .interface_version = XENPF_INTERFACE_VERSION, ++ .u = { ++ .enter_acpi_sleep = { ++ .pm1a_cnt_val = (u16)pm1a_cnt, ++ .pm1b_cnt_val = (u16)pm1b_cnt, ++ .sleep_state = sleep_state, ++ }, ++ }, ++ }; ++ ++ return HYPERVISOR_dom0_op(&op); ++} diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index f5bbd9e..bfe1fa3 100644 --- a/drivers/xen/balloon.c @@ -11020,10 +11151,10 @@ index 0000000..70029e5 +subsys_initcall(xenbus_probe_backend_init); diff --git a/drivers/xen/xenbus/xenbus_probe_frontend.c b/drivers/xen/xenbus/xenbus_probe_frontend.c new file mode 100644 -index 0000000..ed7d950 +index 0000000..689761d --- /dev/null +++ b/drivers/xen/xenbus/xenbus_probe_frontend.c -@@ -0,0 +1,278 @@ +@@ -0,0 +1,292 @@ +#define DPRINTK(fmt, args...) \ + pr_debug("xenbus_probe (%s:%d) " fmt ".\n", \ + __func__, __LINE__, ##args) @@ -11147,7 +11278,7 @@ index 0000000..ed7d950 + return xenbus_read_otherend_details(xendev, "backend-id", "backend"); +} + -+static int is_disconnected_device(struct device *dev, void *data) ++static int is_device_connecting(struct device *dev, void *data) +{ + struct xenbus_device *xendev = to_xenbus_device(dev); + struct device_driver *drv = data; @@ -11165,19 +11296,17 @@ index 0000000..ed7d950 + return 0; + + xendrv = to_xenbus_driver(dev->driver); -+ return (xendev->state != XenbusStateConnected || -+ (xendrv->is_ready && !xendrv->is_ready(xendev))); ++ return (xendev->state < XenbusStateConnected || ++ (xendev->state == XenbusStateConnected && ++ xendrv->is_ready && !xendrv->is_ready(xendev))); +} + -+ -+static int exists_disconnected_device(struct device_driver *drv) ++static int exists_connecting_device(struct device_driver *drv) +{ + return bus_for_each_dev(&xenbus_frontend.bus, NULL, drv, -+ is_disconnected_device); ++ is_device_connecting); +} + -+ -+ +static int print_device_status(struct device *dev, void *data) +{ + struct xenbus_device *xendev = to_xenbus_device(dev); @@ -11191,19 +11320,23 @@ index 0000000..ed7d950 + /* Information only: is this too noisy? */ + printk(KERN_INFO "XENBUS: Device with no driver: %s\n", + xendev->nodename); -+ } else if (xendev->state != XenbusStateConnected) { ++ } else if (xendev->state < XenbusStateConnected) { ++ enum xenbus_state rstate = XenbusStateUnknown; ++ if (xendev->otherend) ++ rstate = xenbus_read_driver_state(xendev->otherend); + printk(KERN_WARNING "XENBUS: Timeout connecting " -+ "to device: %s (state %d)\n", -+ xendev->nodename, xendev->state); ++ "to device: %s (local state %d, remote state %d)\n", ++ xendev->nodename, xendev->state, rstate); + } + + return 0; +} ++ +/* We only wait for device setup after most initcalls have run. */ +static int ready_to_wait_for_devices; + +/* -+ * On a 10 second timeout, wait for all devices currently configured. We need ++ * On a 5-minute timeout, wait for all devices currently configured. We need + * to do this to guarantee that the filesystems and / or network devices + * needed for boot are available, before we can allow the boot to proceed. + * @@ -11218,18 +11351,30 @@ index 0000000..ed7d950 + */ +static void wait_for_devices(struct xenbus_driver *xendrv) +{ -+ unsigned long timeout = jiffies + 10*HZ; ++ unsigned long start = jiffies; + struct device_driver *drv = xendrv ? &xendrv->driver : NULL; ++ unsigned int seconds_waited = 0; + + if (!ready_to_wait_for_devices || !xen_domain()) + return; + -+ while (exists_disconnected_device(drv)) { -+ if (time_after(jiffies, timeout)) -+ break; ++ while (exists_connecting_device(drv)) { ++ if (time_after(jiffies, start + (seconds_waited+5)*HZ)) { ++ if (!seconds_waited) ++ printk(KERN_WARNING "XENBUS: Waiting for " ++ "devices to initialise: "); ++ seconds_waited += 5; ++ printk("%us...", 300 - seconds_waited); ++ if (seconds_waited == 300) ++ break; ++ } ++ + schedule_timeout_interruptible(HZ/10); + } + ++ if (seconds_waited) ++ printk("\n"); ++ + bus_for_each_dev(&xenbus_frontend.bus, NULL, drv, + print_device_status); +} @@ -12012,6 +12157,35 @@ index 4e65c16..84ad8f0 100644 @@ -1 +1,2 @@ header-y += evtchn.h +header-y += privcmd.h +diff --git a/include/xen/acpi.h b/include/xen/acpi.h +new file mode 100644 +index 0000000..fea4cfb +--- /dev/null ++++ b/include/xen/acpi.h +@@ -0,0 +1,23 @@ ++#ifndef _XEN_ACPI_H ++#define _XEN_ACPI_H ++ ++#include ++ ++#ifdef CONFIG_XEN_S3 ++#include ++ ++static inline bool xen_pv_acpi(void) ++{ ++ return xen_pv_domain(); ++} ++#else ++static inline bool xen_pv_acpi(void) ++{ ++ return false; ++} ++#endif ++ ++int acpi_notify_hypervisor_state(u8 sleep_state, ++ u32 pm1a_cnt, u32 pm1b_cnd); ++ ++#endif /* _XEN_ACPI_H */ diff --git a/include/xen/balloon.h b/include/xen/balloon.h new file mode 100644 index 0000000..e751514 @@ -12905,7 +13079,7 @@ index bffe6d7..cec5f62 100644 panic("Cannot allocate SWIOTLB overflow buffer!\n"); diff --git a/mm/page_alloc.c b/mm/page_alloc.c -index ad7cd1c..1e1ba56 100644 +index caa9268..1f29611 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -566,6 +566,13 @@ static void __free_pages_ok(struct page *page, unsigned int order) --- linux-2.6-dmadebug-spinlock.patch DELETED --- --- patch-2.6.31-rc2-git4.bz2.sign DELETED --- --- patch-2.6.31-rc2.bz2.sign DELETED --- From jkeating at fedoraproject.org Wed Jul 15 21:00:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Wed, 15 Jul 2009 21:00:33 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 trac-mercurial-plugin.spec, 1.3, 1.4 Message-ID: <20090715210033.B113E11C049A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26474 Modified Files: .cvsignore sources trac-mercurial-plugin.spec Log Message: * Wed Jul 15 2009 Jesse Keating - 0.10.0.3-1.20090715svn7951 - New upstream release to support mercurial 1.2 API Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Jul 2007 03:07:41 -0000 1.2 +++ .cvsignore 15 Jul 2009 21:00:03 -0000 1.3 @@ -1 +1 @@ -TracMercurial-0.10.0.2.tar.gz +TracMercurial-0.10.0.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 6 Jul 2007 03:07:41 -0000 1.2 +++ sources 15 Jul 2009 21:00:03 -0000 1.3 @@ -1 +1 @@ -f9cc477b4f24256115bd7eba9f831c66 TracMercurial-0.10.0.2.tar.gz +2da6708ecb4868208489b1f25c9cb89c TracMercurial-0.10.0.3.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/trac-mercurial-plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trac-mercurial-plugin.spec 8 Sep 2008 21:29:56 -0000 1.3 +++ trac-mercurial-plugin.spec 15 Jul 2009 21:00:03 -0000 1.4 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 5798 +%define svnrev 7951 Name: trac-mercurial-plugin -Version: 0.10.0.2 -Release: 4.20070705svn%{svnrev}%{?dist} +Version: 0.10.0.3 +Release: 1.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -21,7 +21,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial, trac, python-setuptools +Requires: mercurial >= 1.2, trac, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Jesse Keating - 0.10.0.3-1.20090715svn7951 +- New upstream release to support mercurial 1.2 API + * Mon Sep 8 2008 Tom "spot" Callaway - 0.10.0.2-4.20070705svn5798 - fix license tag From jwrdegoede at fedoraproject.org Wed Jul 15 21:02:40 2009 From: jwrdegoede at fedoraproject.org (Hans de Goede) Date: Wed, 15 Jul 2009 21:02:40 +0000 (UTC) Subject: rpms/auriferous/devel auriferous.spec,1.6,1.7 Message-ID: <20090715210240.859FE11C049A@cvs1.fedora.phx.redhat.com> Author: jwrdegoede Update of /cvs/extras/rpms/auriferous/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26973 Modified Files: auriferous.spec Log Message: * Wed Jul 15 2009 Hans de Goede 1.0.1-8 - Fix FTBFS caused by automake input file timestamp issues (#511454) Index: auriferous.spec =================================================================== RCS file: /cvs/extras/rpms/auriferous/devel/auriferous.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- auriferous.spec 10 Apr 2009 07:49:07 -0000 1.6 +++ auriferous.spec 15 Jul 2009 21:02:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: auriferous Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Game inspired by the classic Loderunner Group: Amusements/Games License: GPLv2+ @@ -33,6 +33,7 @@ display cannot handle this you are out o %setup -q %patch0 -p1 -z .fix %patch1 -p1 -z .destdir +touch -r configure.in auriferous/Makefile.am cp %{SOURCE1} auriferous/pics/game @@ -86,6 +87,9 @@ fi %changelog +* Wed Jul 15 2009 Hans de Goede 1.0.1-8 +- Fix FTBFS caused by automake input file timestamp issues (#511454) + * Fri Apr 10 2009 Hans de Goede 1.0.1-7 - Remove non free jungle.ogg song From mclasen at fedoraproject.org Wed Jul 15 21:21:09 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 21:21:09 +0000 (UTC) Subject: rpms/gnome-applets/devel gnome-applets.spec,1.348,1.349 Message-ID: <20090715212109.3BEB011C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31175 Modified Files: gnome-applets.spec Log Message: Rebuild against new libgnomekbd Index: gnome-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/gnome-applets.spec,v retrieving revision 1.348 retrieving revision 1.349 diff -u -p -r1.348 -r1.349 --- gnome-applets.spec 13 Jul 2009 06:00:01 -0000 1.348 +++ gnome-applets.spec 15 Jul 2009 21:20:38 -0000 1.349 @@ -23,7 +23,7 @@ %define pygtk_version 2.6 %define gnome_python_version 2.10 %define gconf_version 2.14.0 -%define libgnomekbd_version 2.21 +%define libgnomekbd_version 2.27.4 %define po_package gnome-applets-2.0 @@ -34,7 +34,7 @@ Summary: Small applications for the GNOME panel Name: gnome-applets Version: 2.27.3 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -348,6 +348,9 @@ fi %changelog +* Wed Jul 15 2009 Matthias Clasen - 1:2.27.3-5 +- Rebuild against new libgnomekbd + * Mon Jul 13 2009 Matthias Clasen - 1:2.27.3-4 - Fix PolicyKit 1 patch From gilboa at fedoraproject.org Wed Jul 15 21:24:49 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Wed, 15 Jul 2009 21:24:49 +0000 (UTC) Subject: rpms/icewm/F-11 icewm.spec,1.19,1.20 sources,1.6,1.7 Message-ID: <20090715212449.B426811C049A@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32166 Modified Files: icewm.spec sources Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-11/icewm.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- icewm.spec 25 Feb 2009 06:41:34 -0000 1.19 +++ icewm.spec 15 Jul 2009 21:24:48 -0000 1.20 @@ -1,6 +1,6 @@ Name: icewm -Version: 1.2.36 -Release: 4%{?dist} +Version: 1.2.37 +Release: 1%{?dist} Summary: Light and configurable window manager Group: User Interface/Desktops @@ -149,6 +149,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS BUGS CHANGES COPYING README README.wm-session TODO doc/*.html %exclude %{_datadir}/icewm/startup +%{_datadir}/icewm %{_datadir}/icewm/icons %{_datadir}/icewm/keys %{_datadir}/icewm/ledclock @@ -157,6 +158,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icewm/preferences %{_datadir}/icewm/startup %{_datadir}/icewm/taskbar +%{_datadir}/icewm/themes %{_datadir}/icewm/themes/gtk2 %{_datadir}/icewm/themes/icedesert %{_datadir}/icewm/themes/Infadel2 @@ -199,6 +201,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 +- 1.2.37. +- Fix missing directory ownership. (#511639) + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 5 Jan 2009 10:15:46 -0000 1.6 +++ sources 15 Jul 2009 21:24:49 -0000 1.7 @@ -1,2 +1,2 @@ -a9761dcde3633ca677b62e1f1abada3d icewm-1.2.36.tar.gz +970a21588d26eb361020fd60a61a482c icewm-1.2.37.tar.gz 933ab5875707f9918d92f63d391630b0 clearlooks.tgz From myoung at fedoraproject.org Wed Jul 15 21:32:53 2009 From: myoung at fedoraproject.org (myoung) Date: Wed, 15 Jul 2009 21:32:53 +0000 (UTC) Subject: rpms/kernel/devel config-generic, 1.238.6.30, 1.238.6.31 kernel.spec, 1.1294.2.41, 1.1294.2.42 Message-ID: <20090715213253.4561B11C049A@cvs1.fedora.phx.redhat.com> Author: myoung Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1554 Modified Files: Tag: private-myoung-dom0-branch config-generic kernel.spec Log Message: fix typo Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.238.6.30 retrieving revision 1.238.6.31 diff -u -p -r1.238.6.30 -r1.238.6.31 --- config-generic 15 Jul 2009 20:58:03 -0000 1.238.6.30 +++ config-generic 15 Jul 2009 21:32:22 -0000 1.238.6.31 @@ -3967,7 +3967,7 @@ CONFIG_USB_ATMEL=m # CONFIG_LINE6_USB is not set # CONFIG_USB_SERIAL_QUATECH_ESU100 is not set # CONFIG_RT3070 is not set - CONFIG_RTL8192SU is not set +# CONFIG_RTL8192SU is not set # # Android Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1294.2.41 retrieving revision 1.1294.2.42 diff -u -p -r1.1294.2.41 -r1.1294.2.42 --- kernel.spec 15 Jul 2009 20:58:06 -0000 1.1294.2.41 +++ kernel.spec 15 Jul 2009 21:32:22 -0000 1.1294.2.42 @@ -1876,7 +1876,7 @@ fi %changelog * Wed Jul 15 2009 Michael Young -- update pvops +- update pvops patch * Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 - 2.6.31-rc3 From mclasen at fedoraproject.org Wed Jul 15 21:53:04 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 21:53:04 +0000 (UTC) Subject: rpms/gnome-screensaver/devel gnome-screensaver.spec,1.215,1.216 Message-ID: <20090715215304.E9E5111C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-screensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6086 Modified Files: gnome-screensaver.spec Log Message: Rebuild Index: gnome-screensaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-screensaver/devel/gnome-screensaver.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- gnome-screensaver.spec 1 Jul 2009 14:17:43 -0000 1.215 +++ gnome-screensaver.spec 15 Jul 2009 21:53:04 -0000 1.216 @@ -14,7 +14,7 @@ Summary: GNOME Screensaver Name: gnome-screensaver Version: 2.27.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Graphics Source0: http://download.gnome.org/sources/gnome-screensaver/2.27/%{name}-%{version}.tar.bz2 @@ -149,6 +149,9 @@ fi %doc %{_mandir}/man1/*.1.gz %changelog +* Wed Jul 15 2009 Matthias Clasen 2.27.0-3 +- Rebuild against new libgnomekbd + * Wed Jul 1 2009 Matthias Clasen 2.27.0-2 - Rebuild against new libxklavier From mclasen at fedoraproject.org Wed Jul 15 21:53:39 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 15 Jul 2009 21:53:39 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel gnome-settings-daemon.spec, 1.110, 1.111 Message-ID: <20090715215339.06F4F11C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6313 Modified Files: gnome-settings-daemon.spec Log Message: Rebuild Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- gnome-settings-daemon.spec 14 Jul 2009 14:39:48 -0000 1.110 +++ gnome-settings-daemon.spec 15 Jul 2009 21:53:38 -0000 1.111 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -166,6 +166,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Wed Jul 15 2009 Matthias Clasen 2.27.4-2 +- Rebuild against new libgnomekbd + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update ot 2.27.4 From myoung at fedoraproject.org Wed Jul 15 22:20:15 2009 From: myoung at fedoraproject.org (myoung) Date: Wed, 15 Jul 2009 22:20:15 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec, 1.1294.2.42, 1.1294.2.43 xen.pvops.patch, 1.1.2.28, 1.1.2.29 Message-ID: <20090715222016.0FC4311C049A@cvs1.fedora.phx.redhat.com> Author: myoung Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12845 Modified Files: Tag: private-myoung-dom0-branch kernel.spec xen.pvops.patch Log Message: update pvops patch again (last update didn't build) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1294.2.42 retrieving revision 1.1294.2.43 diff -u -p -r1.1294.2.42 -r1.1294.2.43 --- kernel.spec 15 Jul 2009 21:32:22 -0000 1.1294.2.42 +++ kernel.spec 15 Jul 2009 22:20:03 -0000 1.1294.2.43 @@ -1876,7 +1876,7 @@ fi %changelog * Wed Jul 15 2009 Michael Young -- update pvops patch +- update pvops patch x2 * Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 - 2.6.31-rc3 xen.pvops.patch: Index: xen.pvops.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Attic/xen.pvops.patch,v retrieving revision 1.1.2.28 retrieving revision 1.1.2.29 diff -u -p -r1.1.2.28 -r1.1.2.29 --- xen.pvops.patch 15 Jul 2009 20:58:07 -0000 1.1.2.28 +++ xen.pvops.patch 15 Jul 2009 22:20:03 -0000 1.1.2.29 @@ -4170,6 +4170,19 @@ index 429834e..4706af7 100644 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE; /* make sure interrupts start blocked */ +diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c +index 0a5aa44..d4e9a97 100644 +--- a/arch/x86/xen/time.c ++++ b/arch/x86/xen/time.c +@@ -434,7 +434,7 @@ void xen_setup_timer(int cpu) + name = ""; + + irq = bind_virq_to_irqhandler(VIRQ_TIMER, cpu, xen_timer_interrupt, +- IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, ++ IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING|IRQF_TIMER, + name, NULL); + + evt = &per_cpu(xen_clock_events, cpu); diff --git a/arch/x86/xen/vga.c b/arch/x86/xen/vga.c new file mode 100644 index 0000000..1cd7f4d @@ -7040,7 +7053,7 @@ index 0000000..650f4b3 + (void)xenbus_register_backend(&blkback); +} diff --git a/drivers/xen/events.c b/drivers/xen/events.c -index abad71b..ad7193f 100644 +index abad71b..2aed84f 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -16,7 +16,7 @@ @@ -7406,7 +7419,15 @@ index abad71b..ad7193f 100644 int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu, irq_handler_t handler, unsigned long irqflags, const char *devname, void *dev_id) -@@ -924,13 +1193,37 @@ static struct irq_chip xen_dynamic_chip __read_mostly = { +@@ -532,6 +801,7 @@ int bind_ipi_to_irqhandler(enum ipi_vector ipi, + if (irq < 0) + return irq; + ++ irqflags |= IRQF_NO_SUSPEND; + retval = request_irq(irq, handler, irqflags, devname, dev_id); + if (retval != 0) { + unbind_from_irq(irq); +@@ -924,13 +1194,38 @@ static struct irq_chip xen_dynamic_chip __read_mostly = { .retrigger = retrigger_dynirq, }; @@ -7437,15 +7458,16 @@ index abad71b..ad7193f 100644 cpu_evtchn_mask_p = kcalloc(nr_cpu_ids, sizeof(struct cpu_evtchn_s), GFP_KERNEL); - BUG_ON(cpu_evtchn_mask_p == NULL); -+ irq_info = alloc_bootmem(nr_irqs * sizeof(*irq_info)); ++ irq_info = kcalloc(nr_irqs, sizeof(*irq_info), GFP_KERNEL); + -+ evtchn_to_irq = alloc_bootmem(NR_EVENT_CHANNELS * sizeof(*evtchn_to_irq)); ++ evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq), ++ GFP_KERNEL); + for(i = 0; i < NR_EVENT_CHANNELS; i++) + evtchn_to_irq[i] = -1; init_evtchn_cpu_bindings(); -@@ -939,4 +1232,6 @@ void __init xen_init_IRQ(void) +@@ -939,4 +1234,6 @@ void __init xen_init_IRQ(void) mask_evtchn(i); irq_ctx_init(smp_processor_id()); @@ -10847,7 +10869,7 @@ index 6c5e318..0e5fc4c 100644 #endif diff --git a/drivers/xen/xenbus/xenbus_probe_backend.c b/drivers/xen/xenbus/xenbus_probe_backend.c new file mode 100644 -index 0000000..70029e5 +index 0000000..a3cc535 --- /dev/null +++ b/drivers/xen/xenbus/xenbus_probe_backend.c @@ -0,0 +1,298 @@ @@ -10907,7 +10929,7 @@ index 0000000..70029e5 +#include "xenbus_probe.h" + +/* backend/// => -- */ -+static int backend_bus_id(char bus_id[BUS_ID_SIZE], const char *nodename) ++static int backend_bus_id(char bus_id[XEN_BUS_ID_SIZE], const char *nodename) +{ + int domid, err; + const char *devid, *type, *frontend; @@ -10937,8 +10959,8 @@ index 0000000..70029e5 + if (err) + return err; + -+ if (snprintf(bus_id, BUS_ID_SIZE, -+ "%.*s-%i-%s", typelen, type, domid, devid) >= BUS_ID_SIZE) ++ if (snprintf(bus_id, XEN_BUS_ID_SIZE, ++ "%.*s-%i-%s", typelen, type, domid, devid) >= XEN_BUS_ID_SIZE) + return -ENOSPC; + return 0; +} @@ -11151,7 +11173,7 @@ index 0000000..70029e5 +subsys_initcall(xenbus_probe_backend_init); diff --git a/drivers/xen/xenbus/xenbus_probe_frontend.c b/drivers/xen/xenbus/xenbus_probe_frontend.c new file mode 100644 -index 0000000..689761d +index 0000000..47be902 --- /dev/null +++ b/drivers/xen/xenbus/xenbus_probe_frontend.c @@ -0,0 +1,292 @@ @@ -11182,15 +11204,15 @@ index 0000000..689761d +#include "xenbus_probe.h" + +/* device// => - */ -+static int frontend_bus_id(char bus_id[BUS_ID_SIZE], const char *nodename) ++static int frontend_bus_id(char bus_id[XEN_BUS_ID_SIZE], const char *nodename) +{ + nodename = strchr(nodename, '/'); -+ if (!nodename || strlen(nodename + 1) >= BUS_ID_SIZE) { ++ if (!nodename || strlen(nodename + 1) >= XEN_BUS_ID_SIZE) { + printk(KERN_WARNING "XENBUS: bad frontend %s\n", nodename); + return -EINVAL; + } + -+ strlcpy(bus_id, nodename + 1, BUS_ID_SIZE); ++ strlcpy(bus_id, nodename + 1, XEN_BUS_ID_SIZE); + if (!strchr(bus_id, '/')) { + printk(KERN_WARNING "XENBUS: bus_id %s no slash\n", bus_id); + return -EINVAL; @@ -12098,6 +12120,18 @@ index b4326b5..bad75d1 100644 #ifndef HAVE_ARCH_PCI_GET_LEGACY_IDE_IRQ static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) +diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h +index 2721f07..99264c3 100644 +--- a/include/linux/interrupt.h ++++ b/include/linux/interrupt.h +@@ -58,6 +58,7 @@ + #define IRQF_PERCPU 0x00000400 + #define IRQF_NOBALANCING 0x00000800 + #define IRQF_IRQPOLL 0x00001000 ++#define IRQF_NO_SUSPEND 0x00002000 + + /* + * Bits used by threaded handlers: diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index e2e5ce5..ca67e2b 100644 --- a/include/linux/page-flags.h @@ -13050,6 +13084,20 @@ index b9763ba..542ca7c 100644 struct device_driver driver; int (*read_otherend_details)(struct xenbus_device *dev); int (*is_ready)(struct xenbus_device *dev); +diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c +index 50da676..3dc4e74 100644 +--- a/kernel/irq/manage.c ++++ b/kernel/irq/manage.c +@@ -192,7 +192,8 @@ static inline int setup_affinity(unsigned int irq, struct irq_desc *desc) + void __disable_irq(struct irq_desc *desc, unsigned int irq, bool suspend) + { + if (suspend) { +- if (!desc->action || (desc->action->flags & IRQF_TIMER)) ++ if (!desc->action || ++ (desc->action->flags & (IRQF_TIMER | IRQF_NO_SUSPEND))) + return; + desc->status |= IRQ_SUSPENDED; + } diff --git a/lib/swiotlb.c b/lib/swiotlb.c index bffe6d7..cec5f62 100644 --- a/lib/swiotlb.c From pkgdb at fedoraproject.org Wed Jul 15 22:43:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:01 +0000 Subject: [pkgdb] gnome-do: nushio has requested watchcommits Message-ID: <20090715224301.6854110F8A5@bastion2.fedora.phx.redhat.com> nushio has requested the watchcommits acl on gnome-do (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From pkgdb at fedoraproject.org Wed Jul 15 22:43:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:03 +0000 Subject: [pkgdb] gnome-do: nushio has requested watchbugzilla Message-ID: <20090715224303.7135410F888@bastion2.fedora.phx.redhat.com> nushio has requested the watchbugzilla acl on gnome-do (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From pkgdb at fedoraproject.org Wed Jul 15 22:43:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:22 +0000 Subject: [pkgdb] gnome-do: nushio has requested watchcommits Message-ID: <20090715224322.53CB610F898@bastion2.fedora.phx.redhat.com> nushio has requested the watchcommits acl on gnome-do (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From pkgdb at fedoraproject.org Wed Jul 15 22:43:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:24 +0000 Subject: [pkgdb] gnome-do: nushio has requested watchbugzilla Message-ID: <20090715224324.D3E3510F8AB@bastion2.fedora.phx.redhat.com> nushio has requested the watchbugzilla acl on gnome-do (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From pkgdb at fedoraproject.org Wed Jul 15 22:43:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:27 +0000 Subject: [pkgdb] gnome-do: nushio has requested commit Message-ID: <20090715224327.9317C10F89C@bastion2.fedora.phx.redhat.com> nushio has requested the commit acl on gnome-do (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From pkgdb at fedoraproject.org Wed Jul 15 22:43:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 22:43:38 +0000 Subject: [pkgdb] gnome-do: nushio has requested commit Message-ID: <20090715224338.74FB110F84C@bastion2.fedora.phx.redhat.com> nushio has requested the commit acl on gnome-do (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do From kwizart at fedoraproject.org Wed Jul 15 22:59:55 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Wed, 15 Jul 2009 22:59:55 +0000 (UTC) Subject: rpms/directfb/devel directfb.spec, 1.32, 1.33 sources, 1.12, 1.13 .cvsignore, 1.12, 1.13 Message-ID: <20090715225955.F325611C049A@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/directfb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21250 Modified Files: directfb.spec sources .cvsignore Log Message: Update to 1.41 Index: directfb.spec =================================================================== RCS file: /cvs/pkgs/rpms/directfb/devel/directfb.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- directfb.spec 2 Jul 2009 14:38:50 -0000 1.32 +++ directfb.spec 15 Jul 2009 22:59:24 -0000 1.33 @@ -1,10 +1,10 @@ %global major_ver 1.4 -%global minor_ver .0 +%global minor_ver .1 Summary: Graphics abstraction library for the Linux Framebuffer Device Name: directfb Version: %{major_ver}%{minor_ver} -Release: 1%{?dist}.1 +Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.directfb.org/ @@ -142,6 +142,17 @@ make check %{_bindir}/mkdgiff # uwmdump Unique WM %{_bindir}/uwmdump +## New with 1.4.1 +%{_bindir}/dfbtest_blit +%{_bindir}/dfbtest_reinit +%{_bindir}/dfbtest_scale +%{_bindir}/dfbtest_window +%{_bindir}/direct_stream +%{_bindir}/direct_test +%{_bindir}/fusion_fork +%{_bindir}/fusion_reactor +%{_bindir}/fusion_skirmish +%{_bindir}/fusion_stream %{_libdir}/libdirectfb-*.so.* %{_libdir}/libdirect-*.so.* %{_libdir}/libfusion-*.so.* @@ -170,6 +181,9 @@ make check %changelog +* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.4.1-1 +- Update to 1.4.1 + * Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 1.4.0-1 - Update to 1.4.0 - Add BR libGL-devel Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/directfb/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 30 Jun 2009 12:32:47 -0000 1.12 +++ sources 15 Jul 2009 22:59:24 -0000 1.13 @@ -1 +1 @@ -191b6149db1c020cb9be5f3cd4550716 DirectFB-1.4.0.tar.gz +e7df079ff44ec98187c24a00500e597a DirectFB-1.4.1.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/directfb/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 30 Jun 2009 12:32:47 -0000 1.12 +++ .cvsignore 15 Jul 2009 22:59:24 -0000 1.13 @@ -1 +1 @@ -DirectFB-1.4.0.tar.gz +DirectFB-1.4.1.tar.gz From whot at fedoraproject.org Wed Jul 15 23:13:22 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 15 Jul 2009 23:13:22 +0000 (UTC) Subject: rpms/libXi/devel .cvsignore, 1.15, 1.16 commitid, 1.1, 1.2 libXi.spec, 1.32, 1.33 sources, 1.16, 1.17 Message-ID: <20090715231322.AED1F11C049A@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24431 Modified Files: .cvsignore commitid libXi.spec sources Log Message: * Thu Jul 16 2009 Peter Hutterer 1.2.99-5.20090716 - Update to today's git master Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 13 Jul 2009 03:08:55 -0000 1.15 +++ .cvsignore 15 Jul 2009 23:13:20 -0000 1.16 @@ -1 +1 @@ -libXi-20090713.tar.bz2 +libXi-20090716.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/commitid,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- commitid 13 Jul 2009 03:08:55 -0000 1.1 +++ commitid 15 Jul 2009 23:13:21 -0000 1.2 @@ -1 +1 @@ -1fc161f058eecb61d37135fd024703a385769417 +4f224f4da1405959b74c05d6b15469cf6c0c498f Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libXi.spec 13 Jul 2009 03:08:55 -0000 1.32 +++ libXi.spec 15 Jul 2009 23:13:21 -0000 1.33 @@ -1,10 +1,10 @@ %define tarball libXi -%define gitdate 20090713 +%define gitdate 20090716 Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 4.%{gitdate}%{?dist} +Release: 5.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -17,7 +17,7 @@ Source1: make-git-snapshot.sh BuildRequires: autoconf automake libtool BuildRequires: xorg-x11-util-macros BuildRequires: xorg-x11-proto-devel -BuildRequires: pkgconfig(inputproto) >= 1.9.99.13 +BuildRequires: pkgconfig(inputproto) >= 1.9.99.14 BuildRequires: libX11-devel >= 1.2.99 BuildRequires: libXext-devel BuildRequires: libXau-devel @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 16 2009 Peter Hutterer 1.2.99-5.20090716 +- Update to today's git master + * Mon Jul 13 2009 Peter Hutterer 1.2.99-4.20090713 - Update to today's git master - Add commitid file. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 13 Jul 2009 03:08:55 -0000 1.16 +++ sources 15 Jul 2009 23:13:21 -0000 1.17 @@ -1 +1 @@ -fad3aa50bf0eb5c2252b1582fc1d93bd libXi-20090713.tar.bz2 +7ff773ecb786efc28193619c639c59d1 libXi-20090716.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 15 23:16:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:16:51 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231652.397E610F88D@bastion2.fedora.phx.redhat.com> glommer has set the watchbugzilla acl on qemu (Fedora 10) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:16:56 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231656.C2C5B10F8A5@bastion2.fedora.phx.redhat.com> glommer has set the watchcommits acl on qemu (Fedora 10) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:16:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:16:57 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231657.D584110F8AB@bastion2.fedora.phx.redhat.com> glommer has set the commit acl on qemu (Fedora 10) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:17:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:17:02 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231702.4829F10F8B1@bastion2.fedora.phx.redhat.com> glommer has set the approveacls acl on qemu (Fedora 10) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:17:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:17:07 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231707.3AF2310F8BC@bastion2.fedora.phx.redhat.com> glommer has set the watchbugzilla acl on qemu (Fedora 11) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:17:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:17:07 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231707.900A510F8C1@bastion2.fedora.phx.redhat.com> glommer has set the watchcommits acl on qemu (Fedora 11) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:17:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:17:09 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231709.C640410F8C6@bastion2.fedora.phx.redhat.com> glommer has set the commit acl on qemu (Fedora 11) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Wed Jul 15 23:17:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 15 Jul 2009 23:17:11 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090715231711.2E77010F8CB@bastion2.fedora.phx.redhat.com> glommer has set the approveacls acl on qemu (Fedora 11) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From mclasen at fedoraproject.org Thu Jul 16 00:13:23 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 00:13:23 +0000 (UTC) Subject: rpms/gnome-session/devel gnome-session.spec, 1.240, 1.241 polkit1.patch, 1.2, 1.3 Message-ID: <20090716001323.E140311C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3464 Modified Files: gnome-session.spec polkit1.patch Log Message: 2.27.4 Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.240 retrieving revision 1.241 diff -u -p -r1.240 -r1.241 --- gnome-session.spec 15 Jul 2009 18:15:28 -0000 1.240 +++ gnome-session.spec 16 Jul 2009 00:12:51 -0000 1.241 @@ -81,8 +81,7 @@ Desktop file to add GNOME to display man %setup -q %patch0 -p1 -b .polkit1 -#workaround broken perl-XML-Parser on 64bit arches -export PERL5LIB=/usr/lib64/perl5/vendor_perl/5.8.2 perl +echo "ACLOCAL_AMFLAGS = -I m4" >> Makefile.am autoreconf -i -f @@ -157,11 +156,11 @@ fi %doc %{_mandir}/man*/* %{_datadir}/applications/gnome-session-properties.desktop %dir %{_datadir}/gnome-session -%{_datadir}/gnome-session/session-properties.glade -%{_datadir}/gnome-session/gsm-inhibit-dialog.glade %{_datadir}/gnome/autostart %{_bindir}/* %{_sysconfdir}/gconf/schemas/*.schemas +%{_datadir}/gnome-session/gsm-inhibit-dialog.ui +%{_datadir}/gnome-session/session-properties.ui %{_datadir}/icons/hicolor/*/apps/session-properties.png %{_datadir}/icons/hicolor/scalable/apps/session-properties.svg %dir %{_libdir}/gnome-session polkit1.patch: Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/polkit1.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- polkit1.patch 13 Jun 2009 00:15:24 -0000 1.2 +++ polkit1.patch 16 Jul 2009 00:12:52 -0000 1.3 @@ -1,7 +1,7 @@ -diff -up gnome-session-2.26.1/configure.in.polkit1 gnome-session-2.26.1/configure.in ---- gnome-session-2.26.1/configure.in.polkit1 2009-04-14 11:31:47.000000000 -0400 -+++ gnome-session-2.26.1/configure.in 2009-06-12 19:51:49.223577026 -0400 -@@ -31,7 +31,7 @@ AC_ARG_WITH(at-spi-registryd-directory, +diff -up gnome-session-2.27.4/configure.in.polkit1 gnome-session-2.27.4/configure.in +--- gnome-session-2.27.4/configure.in.polkit1 2009-07-15 10:53:06.000000000 -0400 ++++ gnome-session-2.27.4/configure.in 2009-07-15 19:52:55.779086207 -0400 +@@ -32,7 +32,7 @@ AC_ARG_WITH(at-spi-registryd-directory, AT_SPI_REGISTRYD_DIR=$with_at_spi_registryd_directory AC_SUBST(AT_SPI_REGISTRYD_DIR) @@ -10,15 +10,15 @@ diff -up gnome-session-2.26.1/configure. AC_ARG_ENABLE(deprecations, [AC_HELP_STRING([--enable-deprecations], -@@ -48,7 +48,6 @@ LIBGNOMEUI_REQUIRED=2.2.0 - GTK_REQUIRED=2.11.1 - GLADE_REQUIRED=2.3.6 +@@ -48,7 +48,6 @@ GLIB_REQUIRED=2.16.0 + LIBGNOMEUI_REQUIRED=2.2.0 + GTK_REQUIRED=2.12.0 DBUS_GLIB_REQUIRED=0.76 -POLKIT_GNOME_REQUIRED=0.7 dnl ==================================================================== dnl Dependency Checks -@@ -88,21 +87,6 @@ PKG_CHECK_MODULES(GCONF, gconf-2.0) +@@ -86,21 +85,6 @@ PKG_CHECK_MODULES(GCONF, gconf-2.0) PKG_CHECK_MODULES(EGG_SMCLIENT, gtk+-2.0) @@ -40,9 +40,9 @@ diff -up gnome-session-2.26.1/configure. dnl ==================================================================== dnl GConf Checks -diff -up gnome-session-2.26.1/gnome-session/gsm-consolekit.c.polkit1 gnome-session-2.26.1/gnome-session/gsm-consolekit.c ---- gnome-session-2.26.1/gnome-session/gsm-consolekit.c.polkit1 2009-04-14 11:31:45.000000000 -0400 -+++ gnome-session-2.26.1/gnome-session/gsm-consolekit.c 2009-06-12 19:57:53.643580353 -0400 +diff -up gnome-session-2.27.4/gnome-session/gsm-consolekit.c.polkit1 gnome-session-2.27.4/gnome-session/gsm-consolekit.c +--- gnome-session-2.27.4/gnome-session/gsm-consolekit.c.polkit1 2009-07-01 08:45:30.000000000 -0400 ++++ gnome-session-2.27.4/gnome-session/gsm-consolekit.c 2009-07-15 19:57:50.969319136 -0400 @@ -31,10 +31,6 @@ #include #include @@ -54,75 +54,7 @@ diff -up gnome-session-2.26.1/gnome-sess #include "gsm-marshal.h" #include "gsm-consolekit.h" -@@ -321,64 +317,18 @@ gsm_consolekit_new (void) - return manager; - } - --static gboolean --try_system_stop (DBusGConnection *connection, -- GError **error) --{ -- DBusGProxy *proxy; -- gboolean res; -- -- proxy = dbus_g_proxy_new_for_name (connection, -- CK_NAME, -- CK_MANAGER_PATH, -- CK_MANAGER_INTERFACE); -- -- res = dbus_g_proxy_call_with_timeout (proxy, -- "Stop", -- INT_MAX, -- error, -- /* parameters: */ -- G_TYPE_INVALID, -- /* return values: */ -- G_TYPE_INVALID); -- return res; --} -- --static gboolean --try_system_restart (DBusGConnection *connection, -- GError **error) --{ -- DBusGProxy *proxy; -- gboolean res; -- -- proxy = dbus_g_proxy_new_for_name (connection, -- CK_NAME, -- CK_MANAGER_PATH, -- CK_MANAGER_INTERFACE); -- -- res = dbus_g_proxy_call_with_timeout (proxy, -- "Restart", -- INT_MAX, -- error, -- /* parameters: */ -- G_TYPE_INVALID, -- /* return values: */ -- G_TYPE_INVALID); -- return res; --} -- - static void - emit_restart_complete (GsmConsolekit *manager, -- const char *error_message) -+ GError *error) - { - GError *call_error; - - call_error = NULL; - -- if (error_message != NULL) { -+ if (error != NULL) { - call_error = g_error_new_literal (GSM_CONSOLEKIT_ERROR, - GSM_CONSOLEKIT_ERROR_RESTARTING, -- error_message); -+ error->message); - } - - g_signal_emit (G_OBJECT (manager), -@@ -413,178 +363,6 @@ emit_stop_complete (GsmConsolekit *manag +@@ -413,177 +409,6 @@ emit_stop_complete (GsmConsolekit *manag } } @@ -138,7 +70,7 @@ diff -up gnome-session-2.26.1/gnome-sess - - if (!gained_privilege) { - if (error != NULL) { -- emit_restart_complete (manager, error->message); +- emit_restart_complete (manager, error); - } - - return; @@ -150,10 +82,10 @@ diff -up gnome-session-2.26.1/gnome-sess - - if (!res) { - g_warning ("Unable to restart system: %s", local_error->message); -- emit_restart_complete (manager, local_error->message); +- emit_restart_complete (manager, local_error); - g_error_free (local_error); -- -- return; +- } else { +- emit_restart_complete (manager, NULL); - } -} - @@ -182,8 +114,8 @@ diff -up gnome-session-2.26.1/gnome-sess - g_warning ("Unable to stop system: %s", local_error->message); - emit_stop_complete (manager, local_error); - g_error_free (local_error); -- -- return; +- } else { +- emit_stop_complete (manager, NULL); - } -} - @@ -224,7 +156,6 @@ diff -up gnome-session-2.26.1/gnome-sess -#ifdef HAVE_POLKIT_GNOME - PolKitAction *action; - pid_t pid; -- char *error_message = NULL; - gboolean res = FALSE; - guint xid; - GError *local_error; @@ -244,14 +175,14 @@ diff -up gnome-session-2.26.1/gnome-sess - - polkit_action_unref (action); - -- if (local_error != NULL) { -- error_message = g_strdup (local_error->message); -- g_error_free (local_error); -- } -- - if (!res) { -- emit_restart_complete (manager, error_message); -- g_free (error_message); +- if (local_error != NULL) { +- g_warning ("Unable to obtain auth to restart system: %s", +- local_error->message); +- +- emit_restart_complete (manager, local_error); +- g_error_free (local_error); +- } - } -#else - g_assert_not_reached (); @@ -301,7 +232,7 @@ diff -up gnome-session-2.26.1/gnome-sess void gsm_consolekit_attempt_restart (GsmConsolekit *manager) { -@@ -600,15 +378,16 @@ gsm_consolekit_attempt_restart (GsmConso +@@ -600,16 +425,16 @@ gsm_consolekit_attempt_restart (GsmConso return; } @@ -317,15 +248,16 @@ diff -up gnome-session-2.26.1/gnome-sess - if (dbus_g_error_has_name (error, "org.freedesktop.ConsoleKit.Manager.NotPrivileged")) { - request_restart_priv (manager, error); - } else { -- emit_restart_complete (manager, error->message); +- g_warning ("Unable to restart system: %s", error->message); +- emit_restart_complete (manager, error); - } - + g_warning ("Unable to restart system: %s", error->message); + emit_restart_complete (manager, error); g_error_free (error); - } - } -@@ -628,16 +407,16 @@ gsm_consolekit_attempt_stop (GsmConsolek + } else { + emit_restart_complete (manager, NULL); +@@ -632,16 +457,16 @@ gsm_consolekit_attempt_stop (GsmConsolek return; } @@ -338,18 +270,19 @@ diff -up gnome-session-2.26.1/gnome-sess + G_TYPE_INVALID); if (!res) { - g_warning ("Unable to stop system: %s", error->message); - if (dbus_g_error_has_name (error, "org.freedesktop.ConsoleKit.Manager.NotPrivileged")) { - request_stop_priv (manager, error); - } else { +- g_warning ("Unable to stop system: %s", error->message); - emit_stop_complete (manager, error); - } - ++ g_warning ("Unable to stop system: %s", error->message); + emit_stop_complete (manager, error); g_error_free (error); - } - } -@@ -901,347 +680,78 @@ gsm_consolekit_can_switch_user (GsmConso + } else { + emit_stop_complete (manager, NULL); +@@ -907,347 +732,78 @@ gsm_consolekit_can_switch_user (GsmConso return ret; } @@ -572,10 +505,10 @@ diff -up gnome-session-2.26.1/gnome-sess - - g_ptr_array_foreach (array, (GFunc) g_free, NULL); - g_ptr_array_free (array, TRUE); - +- - return single; -} -- + -static void -obtain_privileges_cb (PolKitAction *action, - gboolean gained_privilege, @@ -740,10 +673,10 @@ diff -up gnome-session-2.26.1/gnome-sess } gchar * -diff -up gnome-session-2.26.1/gnome-session/Makefile.am.polkit1 gnome-session-2.26.1/gnome-session/Makefile.am ---- gnome-session-2.26.1/gnome-session/Makefile.am.polkit1 2009-04-14 11:31:45.000000000 -0400 -+++ gnome-session-2.26.1/gnome-session/Makefile.am 2009-06-12 19:51:49.228578549 -0400 -@@ -16,7 +16,6 @@ INCLUDES = \ +diff -up gnome-session-2.27.4/gnome-session/Makefile.am.polkit1 gnome-session-2.27.4/gnome-session/Makefile.am +--- gnome-session-2.27.4/gnome-session/Makefile.am.polkit1 2009-07-01 08:45:30.000000000 -0400 ++++ gnome-session-2.27.4/gnome-session/Makefile.am 2009-07-15 19:53:08.955071147 -0400 +@@ -17,7 +17,6 @@ INCLUDES = \ $(ICE_CFLAGS) \ $(GNOME_SESSION_CFLAGS) \ $(GCONF_CFLAGS) \ @@ -751,11 +684,11 @@ diff -up gnome-session-2.26.1/gnome-sess -I$(top_srcdir)/egg \ -DLOCALE_DIR=\""$(datadir)/locale"\" \ -DDATA_DIR=\""$(datadir)/gnome-session"\" \ -@@ -49,7 +48,6 @@ gnome_session_LDADD = \ +@@ -50,7 +49,6 @@ gnome_session_LDADD = \ $(ICE_LIBS) \ $(GNOME_SESSION_LIBS) \ $(GCONF_LIBS) \ - $(POLKIT_GNOME_LIBS) \ $(XRENDER_LIBS) \ $(XTEST_LIBS) \ - $(NULL) + $(EXECINFO_LIBS) \ From kaitlin at fedoraproject.org Thu Jul 16 00:18:55 2009 From: kaitlin at fedoraproject.org (Kaitlin Rupert) Date: Thu, 16 Jul 2009 00:18:55 +0000 (UTC) Subject: rpms/libvirt-cim/devel .cvsignore, 1.13, 1.14 libvirt-cim.spec, 1.26, 1.27 sources, 1.15, 1.16 Message-ID: <20090716001855.CAEF911C049A@cvs1.fedora.phx.redhat.com> Author: kaitlin Update of /cvs/pkgs/rpms/libvirt-cim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4644 Modified Files: .cvsignore libvirt-cim.spec sources Log Message: Adding new tarball and updated spec for 0.5.6 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-cim/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 22 Apr 2009 01:05:53 -0000 1.13 +++ .cvsignore 16 Jul 2009 00:18:25 -0000 1.14 @@ -1,3 +1,4 @@ libvirt-cim-0.5.3.tar.gz libvirt-cim-0.5.4.tar.gz libvirt-cim-0.5.5.tar.gz +libvirt-cim-0.5.6.tar.gz Index: libvirt-cim.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-cim/devel/libvirt-cim.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libvirt-cim.spec 22 Apr 2009 01:05:54 -0000 1.26 +++ libvirt-cim.spec 16 Jul 2009 00:18:25 -0000 1.27 @@ -2,7 +2,7 @@ Summary: A CIM provider for libvirt Name: libvirt-cim -Version: 0.5.5 +Version: 0.5.6 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -16,6 +16,7 @@ BuildRequires: tog-pegasus-devel BuildRequires: libvirt-devel >= 0.3.2 BuildRequires: e2fsprogs-devel BuildRequires: libxml2-devel +BuildRequires: libuuid-devel BuildRequires: libcmpiutil-devel BuildConflicts: sblim-cmpi-devel @@ -117,11 +118,13 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/libvirt-cim/cimv*-interop_mof %{_datadir}/libvirt-cim/cimv*-cimv2_mof %{_datadir}/libvirt-cim/*.registration -%{_datadir}/libvirt-cim/fix_schema.patch -%{_datadir}/libvirt-cim/cimv*-MOFs.zip +%{_datadir}/libvirt-cim/cim_schema_*-MOFs.zip /etc/ld.so.conf.d/libvirt-cim.conf %changelog +* Tue Jul 14 2009 Kaitlin Rupert - 0.5.6-1 +- Updated to latest upstream source + * Tue Apr 21 2009 Kaitlin Rupert - 0.5.5-1 - Updated to latest upstream source Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-cim/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 22 Apr 2009 01:05:54 -0000 1.15 +++ sources 16 Jul 2009 00:18:25 -0000 1.16 @@ -1,3 +1,4 @@ 69ad4eb18622482e6cd99c4c20ed01b0 libvirt-cim-0.5.3.tar.gz 26cec2226701a063325fac8f6e8cb75b libvirt-cim-0.5.4.tar.gz dec0c3647ea3aa713022b31576e0b202 libvirt-cim-0.5.5.tar.gz +c91674b76dfabe484d2a1b88825bc04f libvirt-cim-0.5.6.tar.gz From kaitlin at fedoraproject.org Thu Jul 16 00:49:26 2009 From: kaitlin at fedoraproject.org (Kaitlin Rupert) Date: Thu, 16 Jul 2009 00:49:26 +0000 (UTC) Subject: rpms/libcmpiutil/devel .cvsignore, 1.5, 1.6 libcmpiutil.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090716004926.A8F4E11C049A@cvs1.fedora.phx.redhat.com> Author: kaitlin Update of /cvs/pkgs/rpms/libcmpiutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10990 Modified Files: .cvsignore libcmpiutil.spec sources Log Message: Add new tarball and update spec for release 0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libcmpiutil/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 16 Jun 2008 17:56:51 -0000 1.5 +++ .cvsignore 16 Jul 2009 00:49:26 -0000 1.6 @@ -1,2 +1,3 @@ libcmpiutil-0.3.tar.gz libcmpiutil-0.4.tar.gz +libcmpiutil-0.5.tar.gz Index: libcmpiutil.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcmpiutil/devel/libcmpiutil.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libcmpiutil.spec 25 Feb 2009 14:09:09 -0000 1.7 +++ libcmpiutil.spec 16 Jul 2009 00:49:26 -0000 1.8 @@ -2,8 +2,8 @@ Summary: CMPI Utility Library Name: libcmpiutil -Version: 0.4 -Release: 4%{?dist}%{?extra_release} +Version: 0.5 +Release: 1%{?dist}%{?extra_release} License: LGPLv2+ Group: System Environment/Libraries Source: ftp://libvirt.org/libvirt-cim/libcmpiutil-%{version}.tar.gz @@ -75,14 +75,8 @@ rm -fr $RPM_BUILD_ROOT %doc doc/SubmittingPatches %changelog -* Wed Feb 25 2009 Fedora Release Engineering - 0.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Sep 03 2008 Kaitlin Rupert - 0.4-3 -- Added add handle_inv_class.patch to handle invalid classes in mof parser - -* Fri Aug 29 2008 Kaitlin Rupert - 0.4-2 -- Added add rep_disabled_ind.patch to enable disabled indication reporting +* Wed Jul 15 2009 Kaitlin Rupert - 0.5-1 +- Updated to official 0.5 source release * Tue May 20 2008 Dan Smith - 0.4-1 - Updated to official 0.4 source release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libcmpiutil/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 16 Jun 2008 17:56:51 -0000 1.5 +++ sources 16 Jul 2009 00:49:26 -0000 1.6 @@ -1,2 +1,3 @@ 7ee1bb889c25e8ddc3b099b34ef159a5 libcmpiutil-0.3.tar.gz 78ca0dbcde4b1ceba6677f1f2fa6a90f libcmpiutil-0.4.tar.gz +40ebe8a88656cec14229352f60d663d8 libcmpiutil-0.5.tar.gz From mclasen at fedoraproject.org Thu Jul 16 00:59:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 00:59:22 +0000 (UTC) Subject: rpms/control-center/devel mnemonic.patch, NONE, 1.1 .cvsignore, 1.89, 1.90 control-center.spec, 1.454, 1.455 fix-appearance-capplet.patch, 1.1, 1.2 make-default.patch, 1.10, 1.11 polkit1.patch, 1.2, 1.3 sources, 1.92, 1.93 Message-ID: <20090716005922.7DB9A11C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13074 Modified Files: .cvsignore control-center.spec fix-appearance-capplet.patch make-default.patch polkit1.patch sources Added Files: mnemonic.patch Log Message: fix a mnemonic mnemonic.patch: --- NEW FILE mnemonic.patch --- diff -up gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui.mnemonic gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui --- gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui.mnemonic 2009-07-15 20:48:24.616318681 -0400 +++ gnome-control-center-2.27.4/capplets/appearance/data/appearance.ui 2009-07-15 20:48:45.877068043 -0400 @@ -2328,6 +2328,7 @@ _Reset to Defaults True + True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/.cvsignore,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- .cvsignore 30 Jun 2009 17:38:53 -0000 1.89 +++ .cvsignore 16 Jul 2009 00:59:21 -0000 1.90 @@ -1 +1 @@ -gnome-control-center-2.27.3.tar.bz2 +gnome-control-center-2.27.4.tar.bz2 Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.454 retrieving revision 1.455 diff -u -p -r1.454 -r1.455 --- control-center.spec 14 Jul 2009 15:11:39 -0000 1.454 +++ control-center.spec 16 Jul 2009 00:59:21 -0000 1.455 @@ -17,13 +17,13 @@ %define libxklavier_version 4.0 %define gnome_menus_version 2.11.1 %define usermode_version 1.83 -%define libgnomekbd_version 2.21 +%define libgnomekbd_version 2.27.4 %define libXrandr_version 1.2.99 Summary: Utilities to configure the GNOME desktop Name: control-center -Version: 2.27.3 -Release: 3%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -43,27 +43,19 @@ Patch22: slab-icon-names.patch # http://bugzilla.gnome.org/show_bug.cgi?id=555591 Patch30: default-layout-toggle.patch -Patch32: display-no-help.patch - # http://bugzilla.gnome.org/show_bug.cgi?id=546036 Patch33: notification-theme.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=574973 -Patch34: gcc-new-fingerprint-icons.patch - -# http://bugzilla.gnome.org/show_bug.cgi?id=154029 -Patch35: gnome-control-center-2.26.0-support-touchpads.patch - # http://bugzilla.redhat.com/show_bug.cgi?id=498365 # http://bugzilla.gnome.org/show_bug.cgi?id=536531 Patch37: polkit1.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=587355 -Patch42: gnomekbd.patch - # http://bugzilla.gnome.org/show_bug.cgi?id=588166 Patch43: fix-appearance-capplet.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=588729 +Patch45: mnemonic.patch + # call the Fedora/RHEL graphical passwd changing apps Patch95: gnome-control-center-2.25.2-passwd.patch Patch96: gnome-control-center-2.25.2-gecos.patch @@ -182,17 +174,9 @@ utilities. %patch10 -p0 -b .pam-fprintd %patch22 -p0 -b .slab-icon-names %patch30 -p1 -b .default-layout-toggle -%patch32 -p1 -b .display-no-help %patch33 -p1 -b .notification-theme -%patch34 -p0 -b .new-icons -%patch35 -p1 -b .support-touchpads -%patch42 -p1 -b .gnomekbd %patch43 -p1 -b .fix-appearance-capplet -pushd capplets/about-me -mv *png icons/ -popd - # vendor configuration patches %patch95 -p1 -b .passwd %patch96 -p1 -b .gecos @@ -365,6 +349,9 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + * Tue Jul 14 2009 Adel Gadllah - 2.27.3-3 - Reenable firefox options in the default applications capplet (RH #509565) fix-appearance-capplet.patch: Index: fix-appearance-capplet.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/fix-appearance-capplet.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fix-appearance-capplet.patch 9 Jul 2009 15:43:14 -0000 1.1 +++ fix-appearance-capplet.patch 16 Jul 2009 00:59:22 -0000 1.2 @@ -1,8 +1,15 @@ -diff --git a/capplets/common/theme-thumbnail.c b/capplets/common/theme-thumbnail.c -index 440b25a..0814b62 100644 ---- a/capplets/common/theme-thumbnail.c -+++ b/capplets/common/theme-thumbnail.c -@@ -164,43 +164,35 @@ static GdkPixbuf * +diff -up gnome-control-center-2.27.4/capplets/common/theme-thumbnail.c.fix-appearance-capplet gnome-control-center-2.27.4/capplets/common/theme-thumbnail.c +--- gnome-control-center-2.27.4/capplets/common/theme-thumbnail.c.fix-appearance-capplet 2009-05-03 14:30:56.000000000 -0400 ++++ gnome-control-center-2.27.4/capplets/common/theme-thumbnail.c 2009-07-15 16:47:12.954069199 -0400 +@@ -91,7 +91,6 @@ static int pipe_from_factory_fd[2]; + #define GTK_THUMBNAIL_SIZE 96 + #define METACITY_THUMBNAIL_WIDTH 120 + #define METACITY_THUMBNAIL_HEIGHT 60 +-#define ICON_THUMBNAIL_SIZE 48 + + + static void +@@ -164,44 +163,35 @@ static GdkPixbuf * create_folder_icon (char *icon_theme_name) { GtkIconTheme *icon_theme; @@ -18,7 +25,7 @@ index 440b25a..0814b62 100644 gtk_icon_theme_set_custom_theme (icon_theme, icon_theme_name); - folder_icon_info = NULL; -+ i = 0; ++ i = 0; /* Get the Example icon name in the theme if specified */ example_icon_name = gtk_icon_theme_get_example_icon_name (icon_theme); if (example_icon_name != NULL) @@ -43,25 +50,25 @@ index 440b25a..0814b62 100644 + folder_icon_info = gtk_icon_theme_choose_icon (icon_theme, icon_names, 48, GTK_ICON_LOOKUP_FORCE_SIZE); if (folder_icon_info != NULL) -- { + { - filename = gtk_icon_info_get_filename (folder_icon_info); - - if (filename != NULL) - { +- { - folder_icon = gdk_pixbuf_new_from_file (filename, NULL); -+ g_print ("got info %s\n", gtk_icon_info_get_filename (folder_icon_info)); -+ folder_icon = gtk_icon_info_load_icon (folder_icon_info, NULL); -+ gtk_icon_info_free (folder_icon_info); - } +- } +- ++ folder_icon = gtk_icon_info_load_icon (folder_icon_info, NULL); + gtk_icon_info_free (folder_icon_info); + } -- gtk_icon_info_free (folder_icon_info); -- } + g_object_unref (icon_theme); + g_free (example_icon_name); - ++ /* render the icon to the thumbnail */ if (folder_icon == NULL) -@@ -216,25 +208,7 @@ create_folder_icon (char *icon_theme_name) + { +@@ -216,25 +206,7 @@ create_folder_icon (char *icon_theme_nam gtk_widget_destroy (dummy); } make-default.patch: Index: make-default.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/make-default.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- make-default.patch 4 Dec 2008 18:54:50 -0000 1.10 +++ make-default.patch 16 Jul 2009 00:59:22 -0000 1.11 @@ -1,7 +1,7 @@ -diff -up gnome-control-center-2.25.1/capplets/appearance/appearance-desktop.c.make-default gnome-control-center-2.25.1/capplets/appearance/appearance-desktop.c ---- gnome-control-center-2.25.1/capplets/appearance/appearance-desktop.c.make-default 2008-11-05 09:21:32.000000000 -0500 -+++ gnome-control-center-2.25.1/capplets/appearance/appearance-desktop.c 2008-11-13 14:31:40.000000000 -0500 -@@ -32,6 +32,9 @@ +diff -up gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.make-default gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c +--- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.make-default 2009-07-15 11:12:52.000000000 -0400 ++++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-15 17:08:10.808068841 -0400 +@@ -31,6 +31,9 @@ #include #include @@ -11,7 +11,7 @@ diff -up gnome-control-center-2.25.1/cap enum { TARGET_URI_LIST, TARGET_BGIMAGE -@@ -988,12 +991,61 @@ wp_select_after_realize (GtkWidget *widg +@@ -992,12 +995,61 @@ wp_select_after_realize (GtkWidget *widg select_item (data, item, TRUE); } @@ -73,11 +73,11 @@ diff -up gnome-control-center-2.25.1/cap g_object_set (gtk_settings_get_default (), "gtk-tooltip-timeout", 500, NULL); -@@ -1114,6 +1166,24 @@ desktop_init (AppearanceData *data, +@@ -1118,6 +1170,24 @@ desktop_init (AppearanceData *data, /* create the file selector later to save time on startup */ data->wp_filesel = NULL; -+ widget = glade_xml_get_widget (data->xml, "background_vbox"); ++ widget = appearance_capplet_get_widget (data, "background_vbox"); + box = gtk_hbox_new (FALSE, 0); + gtk_box_pack_end (GTK_BOX (widget), box, FALSE, FALSE, 0); + @@ -98,24 +98,3 @@ diff -up gnome-control-center-2.25.1/cap } void -diff -up gnome-control-center-2.25.1/capplets/appearance/Makefile.am.make-default gnome-control-center-2.25.1/capplets/appearance/Makefile.am ---- gnome-control-center-2.25.1/capplets/appearance/Makefile.am.make-default 2008-11-05 09:21:32.000000000 -0500 -+++ gnome-control-center-2.25.1/capplets/appearance/Makefile.am 2008-11-13 14:28:38.000000000 -0500 -@@ -42,7 +42,8 @@ gnome_appearance_properties_LDADD = \ - $(top_builddir)/capplets/common/libcommon.la \ - $(GNOMECC_CAPPLETS_LIBS) \ - $(FONT_CAPPLET_LIBS) \ -- $(METACITY_LIBS) -+ $(METACITY_LIBS) \ -+ $(POLKIT_GNOME_LIBS) - gnome_appearance_properties_LDFLAGS = -export-dynamic - - gladedir = $(pkgdatadir)/glade -@@ -53,6 +54,7 @@ INCLUDES = \ - $(METACITY_CFLAGS) \ - $(GNOMECC_CAPPLETS_CFLAGS) \ - $(FONT_CAPPLET_CFLAGS) \ -+ $(POLKIT_GNOME_CFLAGS) \ - -DGNOMELOCALEDIR="\"$(datadir)/locale\"" \ - -DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \ - -DGNOMECC_GLADE_DIR="\"$(gladedir)\"" \ polkit1.patch: Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/polkit1.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- polkit1.patch 12 Jun 2009 18:43:47 -0000 1.2 +++ polkit1.patch 16 Jul 2009 00:59:22 -0000 1.3 @@ -1,6 +1,6 @@ -diff -up gnome-control-center-2.26.0/capplets/about-me/gnome-about-me.c.polkit1 gnome-control-center-2.26.0/capplets/about-me/gnome-about-me.c ---- gnome-control-center-2.26.0/capplets/about-me/gnome-about-me.c.polkit1 2009-06-09 13:45:16.935332926 -0400 -+++ gnome-control-center-2.26.0/capplets/about-me/gnome-about-me.c 2009-06-09 13:45:17.007312663 -0400 +diff -up gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c +--- gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c.polkit1 2009-07-15 16:52:23.630080589 -0400 ++++ gnome-control-center-2.27.4/capplets/about-me/gnome-about-me.c 2009-07-15 16:52:23.668342168 -0400 @@ -36,10 +36,6 @@ #define GNOME_DESKTOP_USE_UNSTABLE_API #include @@ -61,9 +61,9 @@ diff -up gnome-control-center-2.26.0/cap g_signal_connect (me->enable_fingerprint_button, "clicked", G_CALLBACK (about_me_fingerprint_button_clicked_cb), me); -diff -up gnome-control-center-2.26.0/capplets/about-me/Makefile.am.polkit1 gnome-control-center-2.26.0/capplets/about-me/Makefile.am ---- gnome-control-center-2.26.0/capplets/about-me/Makefile.am.polkit1 2009-06-09 13:45:16.942317965 -0400 -+++ gnome-control-center-2.26.0/capplets/about-me/Makefile.am 2009-06-09 13:45:17.009313427 -0400 +diff -up gnome-control-center-2.27.4/capplets/about-me/Makefile.am.polkit1 gnome-control-center-2.27.4/capplets/about-me/Makefile.am +--- gnome-control-center-2.27.4/capplets/about-me/Makefile.am.polkit1 2009-07-15 16:52:23.634066013 -0400 ++++ gnome-control-center-2.27.4/capplets/about-me/Makefile.am 2009-07-15 16:52:23.669351794 -0400 @@ -26,7 +26,7 @@ gnome_about_me_SOURCES = \ if BUILD_ABOUTME bin_PROGRAMS = gnome-about-me @@ -81,10 +81,10 @@ diff -up gnome-control-center-2.26.0/cap $(GAIL_CFLAGS) \ -DDATADIR="\"$(datadir)\"" \ -DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \ -diff -up gnome-control-center-2.26.0/capplets/appearance/appearance-desktop.c.polkit1 gnome-control-center-2.26.0/capplets/appearance/appearance-desktop.c ---- gnome-control-center-2.26.0/capplets/appearance/appearance-desktop.c.polkit1 2009-06-09 13:45:16.982323819 -0400 -+++ gnome-control-center-2.26.0/capplets/appearance/appearance-desktop.c 2009-06-12 13:05:41.315839883 -0400 -@@ -33,7 +33,6 @@ +diff -up gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c +--- gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c.polkit1 2009-07-15 16:52:23.658335935 -0400 ++++ gnome-control-center-2.27.4/capplets/appearance/appearance-desktop.c 2009-07-15 16:52:23.670342213 -0400 +@@ -32,7 +32,6 @@ #include #include @@ -92,7 +92,7 @@ diff -up gnome-control-center-2.26.0/cap enum { TARGET_URI_LIST, -@@ -991,6 +990,16 @@ wp_select_after_realize (GtkWidget *widg +@@ -995,6 +994,16 @@ wp_select_after_realize (GtkWidget *widg select_item (data, item, TRUE); } @@ -109,7 +109,7 @@ diff -up gnome-control-center-2.26.0/cap static void set_background (GtkAction *action, gpointer data) { -@@ -998,15 +1007,6 @@ set_background (GtkAction *action, gpoin +@@ -1002,15 +1011,6 @@ set_background (GtkAction *action, gpoin DBusGProxy *proxy; DBusGConnection *connection; GError *error; @@ -125,7 +125,7 @@ diff -up gnome-control-center-2.26.0/cap gconf_client_suggest_sync (adata->client, NULL); -@@ -1027,24 +1027,70 @@ set_background (GtkAction *action, gpoin +@@ -1031,24 +1031,70 @@ set_background (GtkAction *action, gpoin return; } @@ -204,8 +204,8 @@ diff -up gnome-control-center-2.26.0/cap GtkWidget *widget, *box, *button; g_object_set (gtk_settings_get_default (), "gtk-tooltip-timeout", 500, NULL); -@@ -1169,18 +1215,18 @@ desktop_init (AppearanceData *data, - widget = glade_xml_get_widget (data->xml, "background_vbox"); +@@ -1173,18 +1219,18 @@ desktop_init (AppearanceData *data, + widget = appearance_capplet_get_widget (data, "background_vbox"); box = gtk_hbox_new (FALSE, 0); gtk_box_pack_end (GTK_BOX (widget), box, FALSE, FALSE, 0); - @@ -234,31 +234,11 @@ diff -up gnome-control-center-2.26.0/cap gtk_box_pack_end (GTK_BOX (box), button, FALSE, FALSE, 0); g_signal_connect (action, "activate", G_CALLBACK (set_background), data); -diff -up gnome-control-center-2.26.0/capplets/appearance/Makefile.am.polkit1 gnome-control-center-2.26.0/capplets/appearance/Makefile.am ---- gnome-control-center-2.26.0/capplets/appearance/Makefile.am.polkit1 2009-06-09 13:45:16.996323092 -0400 -+++ gnome-control-center-2.26.0/capplets/appearance/Makefile.am 2009-06-09 13:45:17.012313001 -0400 -@@ -44,8 +44,7 @@ gnome_appearance_properties_LDADD = \ - $(top_builddir)/capplets/common/libcommon.la \ - $(GNOMECC_CAPPLETS_LIBS) \ - $(FONT_CAPPLET_LIBS) \ -- $(METACITY_LIBS) \ -- $(POLKIT_GNOME_LIBS) -+ $(METACITY_LIBS) - gnome_appearance_properties_LDFLAGS = -export-dynamic - - gladedir = $(pkgdatadir)/glade -@@ -56,7 +55,6 @@ INCLUDES = \ - $(METACITY_CFLAGS) \ - $(GNOMECC_CAPPLETS_CFLAGS) \ - $(FONT_CAPPLET_CFLAGS) \ -- $(POLKIT_GNOME_CFLAGS) \ - -DGNOMELOCALEDIR="\"$(datadir)/locale\"" \ - -DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \ - -DGNOMECC_GLADE_DIR="\"$(gladedir)\"" \ -diff -up gnome-control-center-2.26.0/configure.in.polkit1 gnome-control-center-2.26.0/configure.in ---- gnome-control-center-2.26.0/configure.in.polkit1 2009-06-09 13:45:16.943314331 -0400 -+++ gnome-control-center-2.26.0/configure.in 2009-06-09 13:45:17.014319004 -0400 -@@ -102,7 +102,6 @@ PKG_CHECK_MODULES(METACITY, libmetacity- +diff -up gnome-control-center-2.27.4/capplets/appearance/Makefile.am.polkit1 gnome-control-center-2.27.4/capplets/appearance/Makefile.am +diff -up gnome-control-center-2.27.4/configure.in.polkit1 gnome-control-center-2.27.4/configure.in +--- gnome-control-center-2.27.4/configure.in.polkit1 2009-07-15 16:52:23.635066071 -0400 ++++ gnome-control-center-2.27.4/configure.in 2009-07-15 16:52:23.673341548 -0400 +@@ -98,7 +98,6 @@ PKG_CHECK_MODULES(METACITY, libmetacity- PKG_CHECK_MODULES(TYPING, glib-2.0 > 2.11 gconf-2.0 gtk+-2.0) PKG_CHECK_MODULES(GSD_DBUS, gnome-settings-daemon) PKG_CHECK_MODULES(GIO, gio-2.0) @@ -266,7 +246,7 @@ diff -up gnome-control-center-2.26.0/con gtk_lib_dir=`$PKG_CONFIG --variable libdir gtk+-2.0` gtk_binary_version=`$PKG_CONFIG --variable gtk_binary_version gtk+-2.0` -@@ -204,11 +203,6 @@ if test "x$enable_aboutme" = "xyes"; the +@@ -224,11 +223,6 @@ if test "x$enable_aboutme" = "xyes"; the PKG_CHECK_MODULES(LIBEBOOK, [libebook-1.2 >= 1.7.90], [AC_DEFINE([HAVE_LIBEBOOK], 1, [Define if evolution-data-server libebook-1.2 is available])]) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/sources,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- sources 30 Jun 2009 17:38:53 -0000 1.92 +++ sources 16 Jul 2009 00:59:22 -0000 1.93 @@ -1 +1 @@ -3b5191e5b6f4ffc30dd5f1831d6cb000 gnome-control-center-2.27.3.tar.bz2 +2a94b5ba300f9c731195bf734f59adec gnome-control-center-2.27.4.tar.bz2 From mclasen at fedoraproject.org Thu Jul 16 01:24:22 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 01:24:22 +0000 (UTC) Subject: rpms/control-center/devel .cvsignore, 1.90, 1.91 control-center.spec, 1.455, 1.456 sources, 1.93, 1.94 Message-ID: <20090716012422.4FBE611C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18284 Modified Files: .cvsignore control-center.spec sources Log Message: fix file lists Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/.cvsignore,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- .cvsignore 16 Jul 2009 00:59:21 -0000 1.90 +++ .cvsignore 16 Jul 2009 01:23:51 -0000 1.91 @@ -1 +1 @@ -gnome-control-center-2.27.4.tar.bz2 +finger-icons.tar Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.455 retrieving revision 1.456 diff -u -p -r1.455 -r1.456 --- control-center.spec 16 Jul 2009 00:59:21 -0000 1.455 +++ control-center.spec 16 Jul 2009 01:23:51 -0000 1.456 @@ -29,6 +29,7 @@ License: GPLv2+ and GFDL Group: User Interface/Desktops Source: http://download.gnome.org/sources/gnome-control-center/2.27/gnome-control-center-%{version}.tar.bz2 Source1: org.gnome.control-center.defaultbackground.policy +Source2: finger-icons.tar Patch3: control-center-2.19.3-no-gnome-common.patch # http://bugzilla.gnome.org/536531 @@ -185,6 +186,9 @@ utilities. %patch7 -p1 -b .make-default %patch37 -p1 -b .polkit1 +# fingerprint icons went missing in 2.27.4 +tar -C capplets/about-me/icons -xf %{SOURCE2} + autoreconf -f -i %build @@ -302,7 +306,7 @@ fi %doc AUTHORS COPYING NEWS README %{_datadir}/gnome-control-center/keybindings/*.xml %{_datadir}/gnome-control-center/default-apps/*.xml -%{_datadir}/gnome-control-center/glade +%{_datadir}/gnome-control-center/ui %{_datadir}/gnome-control-center/pixmaps %{_datadir}/applications/*.desktop %{_datadir}/desktop-directories/* @@ -355,6 +359,7 @@ fi * Tue Jul 14 2009 Adel Gadllah - 2.27.3-3 - Reenable firefox options in the default applications capplet (RH #509565) + * Thu Jul 9 2009 Matthias Clasen - 2.27.3-2 - Improve theme rendering in the appearance capplet Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/sources,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- sources 16 Jul 2009 00:59:22 -0000 1.93 +++ sources 16 Jul 2009 01:23:52 -0000 1.94 @@ -1 +1,2 @@ +885a27b95857235ba95d034e25ae0a67 finger-icons.tar 2a94b5ba300f9c731195bf734f59adec gnome-control-center-2.27.4.tar.bz2 From dchen at fedoraproject.org Thu Jul 16 01:27:33 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 01:27:33 +0000 (UTC) Subject: rpms/tomoe-gtk/devel import.log,1.2,1.3 tomoe-gtk.spec,1.6,1.7 Message-ID: <20090716012733.09DA111C049A@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/tomoe-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19228/devel Modified Files: import.log tomoe-gtk.spec Log Message: add back automake and autoconf buildrequire Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 13 Jul 2009 00:07:55 -0000 1.2 +++ import.log 16 Jul 2009 01:27:02 -0000 1.3 @@ -1,2 +1,3 @@ tomoe-gtk-0_6_0-7_fc11:HEAD:tomoe-gtk-0.6.0-7.fc11.src.rpm:1242200726 tomoe-gtk-0_6_0-8_fc11:HEAD:tomoe-gtk-0.6.0-8.fc11.src.rpm:1247443686 +tomoe-gtk-0_6_0-9_fc11:HEAD:tomoe-gtk-0.6.0-9.fc11.src.rpm:1247707610 Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/tomoe-gtk.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tomoe-gtk.spec 13 Jul 2009 00:07:55 -0000 1.6 +++ tomoe-gtk.spec 16 Jul 2009 01:27:02 -0000 1.7 @@ -2,7 +2,7 @@ Name: tomoe-gtk Version: %{tomoe_ver} -Release: 8%{?dist} +Release: 9%{?dist} Summary: Gtk library for tomoe for Japanese and Chinese handwritten input Group: System Environment/Libraries @@ -15,7 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Requires: tomoe >= %{tomoe_ver} Obsoletes: libtomoe-gtk < 0.6.0-4 BuildRequires: libtool -#BuildRequires: autoconf, automake +BuildRequires: autoconf, automake BuildRequires: tomoe-devel >= %{tomoe_ver}, gtk2-devel, pygtk2-devel # does not currently build with gucharmap-2 #BuildRequires: gucharmap-devel @@ -77,7 +77,6 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig - %post devel -p /sbin/ldconfig @@ -100,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog +* Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 +- Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS + * Fri Jul 13 2009 Ding-Yi Chen - 0.6.0-8 - Actually Fixed RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From mclasen at fedoraproject.org Thu Jul 16 01:37:26 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 01:37:26 +0000 (UTC) Subject: rpms/control-center/devel control-center.spec,1.456,1.457 Message-ID: <20090716013726.9927811C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233 Modified Files: control-center.spec Log Message: another try Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.456 retrieving revision 1.457 diff -u -p -r1.456 -r1.457 --- control-center.spec 16 Jul 2009 01:23:51 -0000 1.456 +++ control-center.spec 16 Jul 2009 01:36:56 -0000 1.457 @@ -306,6 +306,7 @@ fi %doc AUTHORS COPYING NEWS README %{_datadir}/gnome-control-center/keybindings/*.xml %{_datadir}/gnome-control-center/default-apps/*.xml +%{_datadir}/gnome-control-center/glade %{_datadir}/gnome-control-center/ui %{_datadir}/gnome-control-center/pixmaps %{_datadir}/applications/*.desktop From dchen at fedoraproject.org Thu Jul 16 02:19:00 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 02:19:00 +0000 (UTC) Subject: rpms/tomoe-gtk/F-11 import.log,1.2,1.3 tomoe-gtk.spec,1.6,1.7 Message-ID: <20090716021900.AB12C11C049A@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/tomoe-gtk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30698/F-11 Modified Files: import.log tomoe-gtk.spec Log Message: add back automake and autoconf buildrequire Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 13 Jul 2009 00:10:49 -0000 1.2 +++ import.log 16 Jul 2009 02:19:00 -0000 1.3 @@ -1,2 +1,3 @@ tomoe-gtk-0_6_0-7_fc11:F-11:tomoe-gtk-0.6.0-7.fc11.src.rpm:1242200869 tomoe-gtk-0_6_0-8_fc11:F-11:tomoe-gtk-0.6.0-8.fc11.src.rpm:1247443864 +tomoe-gtk-0_6_0-9_fc11:F-11:tomoe-gtk-0.6.0-9.fc11.src.rpm:1247710729 Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/F-11/tomoe-gtk.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tomoe-gtk.spec 13 Jul 2009 00:10:49 -0000 1.6 +++ tomoe-gtk.spec 16 Jul 2009 02:19:00 -0000 1.7 @@ -2,7 +2,7 @@ Name: tomoe-gtk Version: %{tomoe_ver} -Release: 8%{?dist} +Release: 9%{?dist} Summary: Gtk library for tomoe for Japanese and Chinese handwritten input Group: System Environment/Libraries @@ -15,7 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Requires: tomoe >= %{tomoe_ver} Obsoletes: libtomoe-gtk < 0.6.0-4 BuildRequires: libtool -#BuildRequires: autoconf, automake +BuildRequires: autoconf, automake BuildRequires: tomoe-devel >= %{tomoe_ver}, gtk2-devel, pygtk2-devel # does not currently build with gucharmap-2 #BuildRequires: gucharmap-devel @@ -77,7 +77,6 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig - %post devel -p /sbin/ldconfig @@ -100,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog +* Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 +- Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS + * Fri Jul 13 2009 Ding-Yi Chen - 0.6.0-8 - Actually Fixed RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From dchen at fedoraproject.org Thu Jul 16 02:22:48 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 02:22:48 +0000 (UTC) Subject: rpms/tomoe-gtk/F-10 import.log,1.2,1.3 tomoe-gtk.spec,1.5,1.6 Message-ID: <20090716022248.75E2C11C049A@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/tomoe-gtk/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31609/F-10 Modified Files: import.log tomoe-gtk.spec Log Message: add back automake and autoconf buildrequire Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 13 Jul 2009 00:22:02 -0000 1.2 +++ import.log 16 Jul 2009 02:22:47 -0000 1.3 @@ -1,2 +1,3 @@ tomoe-gtk-0_6_0-7_fc11:F-10:tomoe-gtk-0.6.0-7.fc11.src.rpm:1242201179 tomoe-gtk-0_6_0-8_fc11:F-10:tomoe-gtk-0.6.0-8.fc11.src.rpm:1247444168 +tomoe-gtk-0_6_0-9_fc11:F-10:tomoe-gtk-0.6.0-9.fc11.src.rpm:1247710787 Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/F-10/tomoe-gtk.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tomoe-gtk.spec 13 Jul 2009 00:22:02 -0000 1.5 +++ tomoe-gtk.spec 16 Jul 2009 02:22:48 -0000 1.6 @@ -2,7 +2,7 @@ Name: tomoe-gtk Version: %{tomoe_ver} -Release: 8%{?dist} +Release: 9%{?dist} Summary: Gtk library for tomoe for Japanese and Chinese handwritten input Group: System Environment/Libraries @@ -15,7 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Requires: tomoe >= %{tomoe_ver} Obsoletes: libtomoe-gtk < 0.6.0-4 BuildRequires: libtool -#BuildRequires: autoconf, automake +BuildRequires: autoconf, automake BuildRequires: tomoe-devel >= %{tomoe_ver}, gtk2-devel, pygtk2-devel # does not currently build with gucharmap-2 #BuildRequires: gucharmap-devel @@ -77,7 +77,6 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig - %post devel -p /sbin/ldconfig @@ -100,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog +* Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 +- Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS + * Fri Jul 13 2009 Ding-Yi Chen - 0.6.0-8 - Actually Fixed RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From mclasen at fedoraproject.org Thu Jul 16 02:58:14 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 02:58:14 +0000 (UTC) Subject: rpms/gnome-terminal/devel profile-new-dialog.ui, NONE, 1.1 gnome-terminal.spec, 1.124, 1.125 Message-ID: <20090716025814.6EBDF11C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7619 Modified Files: gnome-terminal.spec Added Files: profile-new-dialog.ui Log Message: Fix a stubborn icon --- NEW FILE profile-new-dialog.ui --- True gtk-apply 4 0.5 0.5 0 0 5 New Profile GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False False False True False False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST True False False True False 2 True GTK_BUTTONBOX_END True True True gtk-cancel True GTK_RELIEF_NORMAL True True False icon-1212 C_reate True True True GTK_RELIEF_NORMAL True 0 False True GTK_PACK_END 5 True False 0 True 2 2 False 6 12 True False 6 1 2 1 2 True Profile _name: True False GTK_JUSTIFY_LEFT False False 0 0.5 0 0 new-profile-name-entry PANGO_ELLIPSIZE_NONE -1 False 0 0 1 0 1 fill True True True True 0 True False 14 1 2 0 1 True _Base on: True False GTK_JUSTIFY_LEFT False False 0 0.5 0 0 PANGO_ELLIPSIZE_NONE -1 False 0 0 1 1 2 fill 0 True True 0 True True new-profile-cancel-button new-profile-create-button Index: gnome-terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-terminal/devel/gnome-terminal.spec,v retrieving revision 1.124 retrieving revision 1.125 diff -u -p -r1.124 -r1.125 --- gnome-terminal.spec 20 May 2009 17:38:03 -0000 1.124 +++ gnome-terminal.spec 16 Jul 2009 02:57:42 -0000 1.125 @@ -11,11 +11,13 @@ Summary: Terminal emulator for GNOME Name: gnome-terminal Version: 2.26.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GFDL Group: User Interface/Desktops URL: http://www.gnome.org/ Source0: http://download.gnome.org/sources/gnome-terminal/2.26/gnome-terminal-%{version}.tar.bz2 +# http://bugzilla.gnome.org/show_bug.cgi?id=588732 +Source1: profile-new-dialog.ui # Fix gnome.org Bug 338913 ??? Terminal resized when switching tabs Patch2: gnome-terminal-2.15.0-338913-revert-336325.patch # From upstream trunk @@ -63,6 +65,8 @@ export PERL5LIB=/usr/lib64/perl5/vendor_ %configure --with-widget=vte --disable-scrollkeeper make %{?_smp_mflags} +cp %{SOURCE1} src + # strip unneeded translations from .mo files cd po grep -v ".*[.]desktop[.]in.*\|.*[.]server[.]in$" POTFILES.in > POTFILES.keep @@ -132,6 +136,9 @@ scrollkeeper-update -q %{_sysconfdir}/gconf/schemas/gnome-terminal.schemas %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.26.2-2 +- Fix a stubborn icon + * Wed May 20 2009 Ray Strode 2.26.2-1 - Update to 2.26.2 From mclasen at fedoraproject.org Thu Jul 16 03:29:55 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 03:29:55 +0000 (UTC) Subject: rpms/gucharmap/devel button-images.patch, NONE, 1.1 gucharmap.spec, 1.37, 1.38 Message-ID: <20090716032955.3B25511C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gucharmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14321 Modified Files: gucharmap.spec Added Files: button-images.patch Log Message: Deal with some stubborn button images. button-images.patch: --- NEW FILE button-images.patch --- --- gucharmap-2.26.3.1/gucharmap/gucharmap-search-dialog.c 2009-06-29 09:06:14.000000000 -0400 +++ hacked/gucharmap/gucharmap-search-dialog.c 2009-07-15 23:16:51.587067979 -0400 @@ -711,22 +711,12 @@ gchar *stock_id, gchar *mnemonic) { - GtkWidget *hbox, *image, *label, *align; - - align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0); - gtk_container_add (GTK_CONTAINER (button), align); - - hbox = gtk_hbox_new (FALSE, 2); - gtk_container_add (GTK_CONTAINER (align), hbox); + GtkWidget *image; image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON); - gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0); - - label = gtk_label_new_with_mnemonic (mnemonic); - gtk_label_set_mnemonic_widget (GTK_LABEL (label), GTK_WIDGET (button)); - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - - gtk_widget_show_all (align); + gtk_button_set_image (button, image); + gtk_button_set_label (button, mnemonic); + gtk_button_set_use_underline (button, TRUE); } static void Index: gucharmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gucharmap/devel/gucharmap.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- gucharmap.spec 13 Jul 2009 02:32:36 -0000 1.37 +++ gucharmap.spec 16 Jul 2009 03:29:54 -0000 1.38 @@ -12,6 +12,9 @@ License: GPLv2+ and GFDL and MIT # GPL for the source code, GFDL for the docs, MIT for Unicode data URL: http://live.gnome.org/Gucharmap Source: http://download.gnome.org/sources/gucharmap/2.26/gucharmap-%{version}.tar.bz2 + +# http://bugzilla.gnome.org/show_bug.cgi?id=588734 +Patch0: button-images.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gnome-doc-utils >= 0.3.2 @@ -48,7 +51,7 @@ needed to use the libgucharmap library. %prep %setup -q - +%patch0 -p1 -b .button-images %build %configure --disable-gtk-immodules --disable-scrollkeeper @@ -143,6 +146,9 @@ fi %changelog +* Wed Jul 15 2009 Matthias Clasen - 2.26.3.1-2 +- Fix some stubborn button images + * Sun Jul 12 2009 Matthias Clasen - 2.26.3.1-1 - Update to 2.26.3.1 From mclasen at fedoraproject.org Thu Jul 16 03:36:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 03:36:18 +0000 (UTC) Subject: rpms/gucharmap/devel gucharmap.spec,1.38,1.39 Message-ID: <20090716033618.F1B7411C049A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gucharmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15821 Modified Files: gucharmap.spec Log Message: bump rev Index: gucharmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gucharmap/devel/gucharmap.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- gucharmap.spec 16 Jul 2009 03:29:54 -0000 1.38 +++ gucharmap.spec 16 Jul 2009 03:35:48 -0000 1.39 @@ -4,7 +4,7 @@ Name: gucharmap Version: 2.26.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unicode character picker and font browser Group: Applications/System From herlo at fedoraproject.org Thu Jul 16 04:28:48 2009 From: herlo at fedoraproject.org (Clint Savage) Date: Thu, 16 Jul 2009 04:28:48 +0000 (UTC) Subject: rpms/mediawiki-rss/devel import.log, NONE, 1.1 mediawiki-rss.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716042848.7B5CC11C0099@cvs1.fedora.phx.redhat.com> Author: herlo Update of /cvs/pkgs/rpms/mediawiki-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14748/devel Modified Files: .cvsignore sources Added Files: import.log mediawiki-rss.spec Log Message: initial add to mediawiki-rss --- NEW FILE import.log --- mediawiki-rss-1_5-2_fc11:HEAD:mediawiki-rss-1.5-2.fc11.src.rpm:1247718500 --- NEW FILE mediawiki-rss.spec --- Name: mediawiki-rss Version: 1.5 Release: 2%{?dist} Summary: Displays an RSS feed on a mediawiki page Group: Applications/Internet # The license is the default license for all code from Mediawiki if not specified. # Reference: http://meta.wikimedia.org/wiki/User_talk:Mutante#RSS_Extension_Licensing # The original author confirmed that this is the license he wishes to use. License: CC-BY-SA URL: http://www.mediawiki.org/wiki/Extension:RSS # Source available at: http://www.mediawiki.org/wiki/Extension:RSS Source0: mediawiki-rss-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: mediawiki >= 0.14 Requires: php-magpierss >= 0.72 %description Displays an RSS feed on a mediawiki page. Supports filtering-out (i.e. grep -v) items based on title when in short list mode. Furthermore it only displays unique titles. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ install -cpm 644 rss.php $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_datadir}/mediawiki/extensions/rss.php %doc README %changelog * Sun Jul 12 2009 Clint Savage 1.5-2 - Updated the license * Fri Jul 3 2009 Clint Savage 1.5-1 - Initial rpm package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:37:28 -0000 1.1 +++ .cvsignore 16 Jul 2009 04:28:47 -0000 1.2 @@ -0,0 +1 @@ +mediawiki-rss-1.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:37:28 -0000 1.1 +++ sources 16 Jul 2009 04:28:48 -0000 1.2 @@ -0,0 +1 @@ +a7281488a29dfeac489fd3f3b2ae73c5 mediawiki-rss-1.5.tar.bz2 From herlo at fedoraproject.org Thu Jul 16 04:30:05 2009 From: herlo at fedoraproject.org (Clint Savage) Date: Thu, 16 Jul 2009 04:30:05 +0000 (UTC) Subject: rpms/mediawiki-rss/F-11 import.log, NONE, 1.1 mediawiki-rss.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716043005.121A911C0099@cvs1.fedora.phx.redhat.com> Author: herlo Update of /cvs/pkgs/rpms/mediawiki-rss/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15057/F-11 Modified Files: .cvsignore sources Added Files: import.log mediawiki-rss.spec Log Message: initial add for mediawiki-rss --- NEW FILE import.log --- mediawiki-rss-1_5-2_fc11:F-11:mediawiki-rss-1.5-2.fc11.src.rpm:1247718561 --- NEW FILE mediawiki-rss.spec --- Name: mediawiki-rss Version: 1.5 Release: 2%{?dist} Summary: Displays an RSS feed on a mediawiki page Group: Applications/Internet # The license is the default license for all code from Mediawiki if not specified. # Reference: http://meta.wikimedia.org/wiki/User_talk:Mutante#RSS_Extension_Licensing # The original author confirmed that this is the license he wishes to use. License: CC-BY-SA URL: http://www.mediawiki.org/wiki/Extension:RSS # Source available at: http://www.mediawiki.org/wiki/Extension:RSS Source0: mediawiki-rss-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: mediawiki >= 0.14 Requires: php-magpierss >= 0.72 %description Displays an RSS feed on a mediawiki page. Supports filtering-out (i.e. grep -v) items based on title when in short list mode. Furthermore it only displays unique titles. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ install -cpm 644 rss.php $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_datadir}/mediawiki/extensions/rss.php %doc README %changelog * Sun Jul 12 2009 Clint Savage 1.5-2 - Updated the license * Fri Jul 3 2009 Clint Savage 1.5-1 - Initial rpm package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:37:28 -0000 1.1 +++ .cvsignore 16 Jul 2009 04:29:34 -0000 1.2 @@ -0,0 +1 @@ +mediawiki-rss-1.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:37:28 -0000 1.1 +++ sources 16 Jul 2009 04:29:34 -0000 1.2 @@ -0,0 +1 @@ +a7281488a29dfeac489fd3f3b2ae73c5 mediawiki-rss-1.5.tar.bz2 From herlo at fedoraproject.org Thu Jul 16 04:31:29 2009 From: herlo at fedoraproject.org (Clint Savage) Date: Thu, 16 Jul 2009 04:31:29 +0000 (UTC) Subject: rpms/mediawiki-rss/EL-5 import.log, NONE, 1.1 mediawiki-rss.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716043129.0829911C0099@cvs1.fedora.phx.redhat.com> Author: herlo Update of /cvs/pkgs/rpms/mediawiki-rss/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15497/EL-5 Modified Files: .cvsignore sources Added Files: import.log mediawiki-rss.spec Log Message: initial add for mediawiki-rss --- NEW FILE import.log --- mediawiki-rss-1_5-2_fc11:EL-5:mediawiki-rss-1.5-2.fc11.src.rpm:1247718646 --- NEW FILE mediawiki-rss.spec --- Name: mediawiki-rss Version: 1.5 Release: 2%{?dist} Summary: Displays an RSS feed on a mediawiki page Group: Applications/Internet # The license is the default license for all code from Mediawiki if not specified. # Reference: http://meta.wikimedia.org/wiki/User_talk:Mutante#RSS_Extension_Licensing # The original author confirmed that this is the license he wishes to use. License: CC-BY-SA URL: http://www.mediawiki.org/wiki/Extension:RSS # Source available at: http://www.mediawiki.org/wiki/Extension:RSS Source0: mediawiki-rss-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: mediawiki >= 0.14 Requires: php-magpierss >= 0.72 %description Displays an RSS feed on a mediawiki page. Supports filtering-out (i.e. grep -v) items based on title when in short list mode. Furthermore it only displays unique titles. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ install -cpm 644 rss.php $RPM_BUILD_ROOT%{_datadir}/mediawiki/extensions/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_datadir}/mediawiki/extensions/rss.php %doc README %changelog * Sun Jul 12 2009 Clint Savage 1.5-2 - Updated the license * Fri Jul 3 2009 Clint Savage 1.5-1 - Initial rpm package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Jul 2009 02:37:28 -0000 1.1 +++ .cvsignore 16 Jul 2009 04:30:58 -0000 1.2 @@ -0,0 +1 @@ +mediawiki-rss-1.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Jul 2009 02:37:28 -0000 1.1 +++ sources 16 Jul 2009 04:30:58 -0000 1.2 @@ -0,0 +1 @@ +a7281488a29dfeac489fd3f3b2ae73c5 mediawiki-rss-1.5.tar.bz2 From ianweller at fedoraproject.org Thu Jul 16 04:41:26 2009 From: ianweller at fedoraproject.org (Ian Weller) Date: Thu, 16 Jul 2009 04:41:26 +0000 (UTC) Subject: rpms/lordsawar/devel lordsawar.spec,1.7,1.8 Message-ID: <20090716044126.DB91411C0099@cvs1.fedora.phx.redhat.com> Author: ianweller Update of /cvs/pkgs/rpms/lordsawar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17724 Modified Files: lordsawar.spec Log Message: fix bug 511632 (FTBFS) Index: lordsawar.spec =================================================================== RCS file: /cvs/pkgs/rpms/lordsawar/devel/lordsawar.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lordsawar.spec 10 Apr 2009 02:40:19 -0000 1.7 +++ lordsawar.spec 16 Jul 2009 04:40:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: lordsawar Version: 0.1.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Turn-based strategy game in a fantasy setting Group: Amusements/Games @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: libglademm24-devel gtkmm24-devel gnet2-devel gettext desktop-file-utils BuildRequires: SDL-devel SDL_image-devel SDL_mixer-devel expat-devel libsigc++20-devel -BuildRequires: boost-devel uuid-devel libtiff-devel libvorbis-devel e2fsprogs-devel +BuildRequires: boost-devel libuuid-devel libtiff-devel libvorbis-devel e2fsprogs-devel BuildRequires: libjpeg-devel BuildRequires: intltool >= 0.35.0 @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 15 2009 Ian Weller - 0.1.5-3 +- Fix build dependency on uuid.h + * Thu Apr 9 2009 Ian Weller 0.1.5-2 - Include new lang files From deebs at fedoraproject.org Thu Jul 16 04:59:42 2009 From: deebs at fedoraproject.org (deebs) Date: Thu, 16 Jul 2009 04:59:42 +0000 (UTC) Subject: rpms/moreutils/devel .cvsignore, 1.9, 1.10 import.log, 1.4, 1.5 moreutils.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090716045942.9B75411C0099@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21478/devel Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 4 Jul 2009 07:37:01 -0000 1.9 +++ .cvsignore 16 Jul 2009 04:59:12 -0000 1.10 @@ -1 +1 @@ -moreutils_0.35.tar.gz +moreutils_0.36.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 4 Jul 2009 07:37:01 -0000 1.4 +++ import.log 16 Jul 2009 04:59:12 -0000 1.5 @@ -2,3 +2,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:HEAD:moreutils-0.34-1.fc10.src.rpm:1235469154 moreutils-0_35-1_fc10:HEAD:moreutils-0.35-1.fc10.src.rpm:1246692984 +moreutils-0_36-1_fc10:HEAD:moreutils-0.36-1.fc10.src.rpm:1247720299 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/moreutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- moreutils.spec 4 Jul 2009 07:37:01 -0000 1.10 +++ moreutils.spec 16 Jul 2009 04:59:12 -0000 1.11 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.35 +Version: 0.36 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -29,6 +29,7 @@ Requires: perl-TimeDate perl-Time- - mispipe: pipe two commands, returning the exit status of the first - lckdo: execute a program with a lock held - ifne: run a program if the standard input is not empty + - parallel: run multiple jobs at once %prep %setup -qn %{name} @@ -60,6 +61,7 @@ install -m0755 zrun %{buildroot}%{_bindi install -m0755 mispipe %{buildroot}%{_bindir} install -m0755 lckdo %{buildroot}%{_bindir} install -m0755 ifne %{buildroot}%{_bindir} +install -m0755 parallel %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man1 install -m644 sponge.1 %{buildroot}%{_mandir}/man1/ install -m644 vidir.1 %{buildroot}%{_mandir}/man1/ @@ -73,6 +75,7 @@ install -m644 zrun.1 %{buildroot}%{_mand install -m644 mispipe.1 %{buildroot}%{_mandir}/man1/ install -m644 lckdo.1 %{buildroot}%{_mandir}/man1/ install -m644 ifne.1 %{buildroot}%{_mandir}/man1/ +install -m644 parallel.1 %{buildroot}%{_mandir}/man1/ %clean rm -rf %{buildroot} @@ -86,6 +89,11 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} +- new upstream version 0.36 released with these changes +- * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. +- * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) + * Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} - new upstream version 0.35 released with these changes - * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 4 Jul 2009 07:37:01 -0000 1.9 +++ sources 16 Jul 2009 04:59:12 -0000 1.10 @@ -1 +1 @@ -e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz +c2df31a6c2e1ab5344808d5401365fba moreutils_0.36.tar.gz From deebs at fedoraproject.org Thu Jul 16 05:02:13 2009 From: deebs at fedoraproject.org (deebs) Date: Thu, 16 Jul 2009 05:02:13 +0000 (UTC) Subject: rpms/moreutils/F-10 .cvsignore, 1.9, 1.10 import.log, 1.4, 1.5 moreutils.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090716050213.DB52F11C0099@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22009/F-10 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 4 Jul 2009 07:40:42 -0000 1.9 +++ .cvsignore 16 Jul 2009 05:01:43 -0000 1.10 @@ -1 +1 @@ -moreutils_0.35.tar.gz +moreutils_0.36.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 4 Jul 2009 07:40:42 -0000 1.4 +++ import.log 16 Jul 2009 05:01:43 -0000 1.5 @@ -2,3 +2,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:F-10:moreutils-0.34-1.fc10.src.rpm:1235469379 moreutils-0_35-1_fc10:F-10:moreutils-0.35-1.fc10.src.rpm:1246693200 +moreutils-0_36-1_fc10:F-10:moreutils-0.36-1.fc10.src.rpm:1247720424 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/moreutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- moreutils.spec 4 Jul 2009 07:40:42 -0000 1.10 +++ moreutils.spec 16 Jul 2009 05:01:43 -0000 1.11 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.35 +Version: 0.36 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -29,6 +29,7 @@ Requires: perl-TimeDate perl-Time- - mispipe: pipe two commands, returning the exit status of the first - lckdo: execute a program with a lock held - ifne: run a program if the standard input is not empty + - parallel: run multiple jobs at once %prep %setup -qn %{name} @@ -60,6 +61,7 @@ install -m0755 zrun %{buildroot}%{_bindi install -m0755 mispipe %{buildroot}%{_bindir} install -m0755 lckdo %{buildroot}%{_bindir} install -m0755 ifne %{buildroot}%{_bindir} +install -m0755 parallel %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man1 install -m644 sponge.1 %{buildroot}%{_mandir}/man1/ install -m644 vidir.1 %{buildroot}%{_mandir}/man1/ @@ -73,6 +75,7 @@ install -m644 zrun.1 %{buildroot}%{_mand install -m644 mispipe.1 %{buildroot}%{_mandir}/man1/ install -m644 lckdo.1 %{buildroot}%{_mandir}/man1/ install -m644 ifne.1 %{buildroot}%{_mandir}/man1/ +install -m644 parallel.1 %{buildroot}%{_mandir}/man1/ %clean rm -rf %{buildroot} @@ -86,6 +89,11 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} +- new upstream version 0.36 released with these changes +- * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. +- * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) + * Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} - new upstream version 0.35 released with these changes - * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 4 Jul 2009 07:40:42 -0000 1.9 +++ sources 16 Jul 2009 05:01:43 -0000 1.10 @@ -1 +1 @@ -e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz +c2df31a6c2e1ab5344808d5401365fba moreutils_0.36.tar.gz From deebs at fedoraproject.org Thu Jul 16 05:10:05 2009 From: deebs at fedoraproject.org (deebs) Date: Thu, 16 Jul 2009 05:10:05 +0000 (UTC) Subject: rpms/moreutils/F-11 .cvsignore, 1.9, 1.10 import.log, 1.4, 1.5 moreutils.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090716051005.1CD9411C0099@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23589/F-11 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 4 Jul 2009 07:38:48 -0000 1.9 +++ .cvsignore 16 Jul 2009 05:09:34 -0000 1.10 @@ -1 +1 @@ -moreutils_0.35.tar.gz +moreutils_0.36.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 4 Jul 2009 07:38:49 -0000 1.4 +++ import.log 16 Jul 2009 05:09:34 -0000 1.5 @@ -2,3 +2,4 @@ moreutils-0_31-1_fc9:HEAD:moreutils-0.31 moreutils-0_31-1_fc9:HEAD:moreutils-0.31-1.fc9.src.rpm:1222651523 moreutils-0_34-1_fc10:HEAD:moreutils-0.34-1.fc10.src.rpm:1235469154 moreutils-0_35-1_fc10:F-11:moreutils-0.35-1.fc10.src.rpm:1246693097 +moreutils-0_36-1_fc10:F-11:moreutils-0.36-1.fc10.src.rpm:1247720579 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/moreutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- moreutils.spec 4 Jul 2009 07:38:49 -0000 1.10 +++ moreutils.spec 16 Jul 2009 05:09:34 -0000 1.11 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.35 +Version: 0.36 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -29,6 +29,7 @@ Requires: perl-TimeDate perl-Time- - mispipe: pipe two commands, returning the exit status of the first - lckdo: execute a program with a lock held - ifne: run a program if the standard input is not empty + - parallel: run multiple jobs at once %prep %setup -qn %{name} @@ -60,6 +61,7 @@ install -m0755 zrun %{buildroot}%{_bindi install -m0755 mispipe %{buildroot}%{_bindir} install -m0755 lckdo %{buildroot}%{_bindir} install -m0755 ifne %{buildroot}%{_bindir} +install -m0755 parallel %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man1 install -m644 sponge.1 %{buildroot}%{_mandir}/man1/ install -m644 vidir.1 %{buildroot}%{_mandir}/man1/ @@ -73,6 +75,7 @@ install -m644 zrun.1 %{buildroot}%{_mand install -m644 mispipe.1 %{buildroot}%{_mandir}/man1/ install -m644 lckdo.1 %{buildroot}%{_mandir}/man1/ install -m644 ifne.1 %{buildroot}%{_mandir}/man1/ +install -m644 parallel.1 %{buildroot}%{_mandir}/man1/ %clean rm -rf %{buildroot} @@ -86,6 +89,11 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} +- new upstream version 0.36 released with these changes +- * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. +- * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) + * Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} - new upstream version 0.35 released with these changes - * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 4 Jul 2009 07:38:49 -0000 1.9 +++ sources 16 Jul 2009 05:09:34 -0000 1.10 @@ -1 +1 @@ -e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz +c2df31a6c2e1ab5344808d5401365fba moreutils_0.36.tar.gz From deebs at fedoraproject.org Thu Jul 16 05:11:52 2009 From: deebs at fedoraproject.org (deebs) Date: Thu, 16 Jul 2009 05:11:52 +0000 (UTC) Subject: rpms/moreutils/EL-4 .cvsignore, 1.8, 1.9 import.log, 1.4, 1.5 moreutils.spec, 1.11, 1.12 sources, 1.8, 1.9 Message-ID: <20090716051152.DCFF111C0099@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23987/EL-4 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 4 Jul 2009 08:01:35 -0000 1.8 +++ .cvsignore 16 Jul 2009 05:11:22 -0000 1.9 @@ -1 +1 @@ -moreutils_0.35.tar.gz +moreutils_0.36.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 4 Jul 2009 08:01:35 -0000 1.4 +++ import.log 16 Jul 2009 05:11:22 -0000 1.5 @@ -2,3 +2,4 @@ moreutils-0_31-1_fc9:EL-4:moreutils-0.31 moreutils-0_31-2_fc9:EL-4:moreutils-0.31-2.fc9.src.rpm:1223725214 moreutils-0_31-3_fc9:EL-4:moreutils-0.31-3.fc9.src.rpm:1224135632 moreutils-0_35-1_fc10:EL-4:moreutils-0.35-1.fc10.src.rpm:1246694453 +moreutils-0_36-1_fc10:EL-4:moreutils-0.36-1.fc10.src.rpm:1247721049 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/moreutils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- moreutils.spec 4 Jul 2009 08:01:35 -0000 1.11 +++ moreutils.spec 16 Jul 2009 05:11:22 -0000 1.12 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.35 +Version: 0.36 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -29,6 +29,7 @@ Requires: perl-TimeDate perl-Time- - mispipe: pipe two commands, returning the exit status of the first - lckdo: execute a program with a lock held - ifne: run a program if the standard input is not empty + - parallel: run multiple jobs at once %prep %setup -qn %{name} @@ -60,6 +61,7 @@ install -m0755 zrun %{buildroot}%{_bindi install -m0755 mispipe %{buildroot}%{_bindir} install -m0755 lckdo %{buildroot}%{_bindir} install -m0755 ifne %{buildroot}%{_bindir} +install -m0755 parallel %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man1 install -m644 sponge.1 %{buildroot}%{_mandir}/man1/ install -m644 vidir.1 %{buildroot}%{_mandir}/man1/ @@ -73,6 +75,7 @@ install -m644 zrun.1 %{buildroot}%{_mand install -m644 mispipe.1 %{buildroot}%{_mandir}/man1/ install -m644 lckdo.1 %{buildroot}%{_mandir}/man1/ install -m644 ifne.1 %{buildroot}%{_mandir}/man1/ +install -m644 parallel.1 %{buildroot}%{_mandir}/man1/ %clean rm -rf %{buildroot} @@ -86,6 +89,11 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} +- new upstream version 0.36 released with these changes +- * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. +- * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) + * Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} - new upstream version 0.35 released with these changes - * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-4/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 4 Jul 2009 08:01:35 -0000 1.8 +++ sources 16 Jul 2009 05:11:22 -0000 1.9 @@ -1 +1 @@ -e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz +c2df31a6c2e1ab5344808d5401365fba moreutils_0.36.tar.gz From deebs at fedoraproject.org Thu Jul 16 05:14:25 2009 From: deebs at fedoraproject.org (deebs) Date: Thu, 16 Jul 2009 05:14:25 +0000 (UTC) Subject: rpms/moreutils/EL-5 .cvsignore, 1.8, 1.9 import.log, 1.3, 1.4 moreutils.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090716051425.1393C11C0099@cvs1.fedora.phx.redhat.com> Author: deebs Update of /cvs/pkgs/rpms/moreutils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24469/EL-5 Modified Files: .cvsignore import.log moreutils.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 4 Jul 2009 08:03:31 -0000 1.8 +++ .cvsignore 16 Jul 2009 05:13:54 -0000 1.9 @@ -1 +1 @@ -moreutils_0.35.tar.gz +moreutils_0.36.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 4 Jul 2009 08:03:32 -0000 1.3 +++ import.log 16 Jul 2009 05:13:54 -0000 1.4 @@ -1,3 +1,4 @@ moreutils-0_31-1_fc9:EL-5:moreutils-0.31-1.fc9.src.rpm:1219810455 moreutils-0_31-3_fc9:EL-5:moreutils-0.31-3.fc9.src.rpm:1224136317 moreutils-0_35-1_fc10:EL-5:moreutils-0.35-1.fc10.src.rpm:1246694563 +moreutils-0_36-1_fc10:EL-5:moreutils-0.36-1.fc10.src.rpm:1247721196 Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/moreutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- moreutils.spec 4 Jul 2009 08:03:32 -0000 1.10 +++ moreutils.spec 16 Jul 2009 05:13:54 -0000 1.11 @@ -1,5 +1,5 @@ Name: moreutils -Version: 0.35 +Version: 0.36 Release: 1%{?dist} Summary: Additional unix utilities Group: Applications/System @@ -29,6 +29,7 @@ Requires: perl-TimeDate perl-Time- - mispipe: pipe two commands, returning the exit status of the first - lckdo: execute a program with a lock held - ifne: run a program if the standard input is not empty + - parallel: run multiple jobs at once %prep %setup -qn %{name} @@ -60,6 +61,7 @@ install -m0755 zrun %{buildroot}%{_bindi install -m0755 mispipe %{buildroot}%{_bindir} install -m0755 lckdo %{buildroot}%{_bindir} install -m0755 ifne %{buildroot}%{_bindir} +install -m0755 parallel %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_mandir}/man1 install -m644 sponge.1 %{buildroot}%{_mandir}/man1/ install -m644 vidir.1 %{buildroot}%{_mandir}/man1/ @@ -73,6 +75,7 @@ install -m644 zrun.1 %{buildroot}%{_mand install -m644 mispipe.1 %{buildroot}%{_mandir}/man1/ install -m644 lckdo.1 %{buildroot}%{_mandir}/man1/ install -m644 ifne.1 %{buildroot}%{_mandir}/man1/ +install -m644 parallel.1 %{buildroot}%{_mandir}/man1/ %clean rm -rf %{buildroot} @@ -86,6 +89,11 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} +- new upstream version 0.36 released with these changes +- * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. +- * mispipe: Fix closing of extra pipe FD before starting command so it is not inherited by daemons. Closes: #533448 (Thanks, Jeremie Koenig) + * Sat Jul 4 2009 Marc Bradshaw 0.35-1%{?dist} - new upstream version 0.35 released with these changes - * ifdata: Don't assume that all interface names are 6 characters or less, for instance "wmaster0" is longer. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/EL-5/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 4 Jul 2009 08:03:32 -0000 1.8 +++ sources 16 Jul 2009 05:13:54 -0000 1.9 @@ -1 +1 @@ -e3089831539284f740f0180ec589d079 moreutils_0.35.tar.gz +c2df31a6c2e1ab5344808d5401365fba moreutils_0.36.tar.gz From airlied at fedoraproject.org Thu Jul 16 05:33:09 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Thu, 16 Jul 2009 05:33:09 +0000 (UTC) Subject: rpms/kernel/devel drm-vga-arb.patch, NONE, 1.1 linux-2.6-vga-arb.patch, NONE, 1.1 TODO, 1.64, 1.65 config-generic, 1.304, 1.305 kernel.spec, 1.1631, 1.1632 drm-modesetting-radeon.patch, 1.68, NONE drm-next.patch, 1.12, NONE Message-ID: <20090716053309.A819C11C0099@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27514 Modified Files: TODO config-generic kernel.spec Added Files: drm-vga-arb.patch linux-2.6-vga-arb.patch Removed Files: drm-modesetting-radeon.patch drm-next.patch Log Message: * Thu Jul 16 2009 Dave Airlie 2.6.31-0.69.rc3 - linux-2.6-vga-arb.patch - add VGA arbiter. - drm-vga-arb.patch - add VGA arbiter support to drm drm-vga-arb.patch: --- NEW FILE drm-vga-arb.patch --- >From fb6efadf2336b3f194f5fc1733116d8965b0d88c Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 16 Jul 2009 14:33:58 +1000 Subject: [PATCH] drm: add support to drm for VGA arbitration. This adds 3 things to the drm, for non-modesetting drivers, it adds an irq hook for the vga arb to disable/enable irqs around vga arb times. radeon/kms: adds support to disable VGA decoding on r100->r500 under KMS intel/kms: add support to disable VGA decoding on hopefully all Intel GPUs Signed-off-by: Dave Airlie --- drivers/gpu/drm/drm_irq.c | 24 ++++++++++++++++++++++++ drivers/gpu/drm/i915/i915_dma.c | 6 ++++++ drivers/gpu/drm/i915/i915_reg.h | 1 + drivers/gpu/drm/i915/intel_display.c | 17 +++++++++++++++++ drivers/gpu/drm/i915/intel_drv.h | 1 + drivers/gpu/drm/radeon/r100.c | 9 +++++++++ drivers/gpu/drm/radeon/radeon.h | 2 ++ drivers/gpu/drm/radeon/radeon_asic.h | 9 +++++++++ drivers/gpu/drm/radeon/radeon_device.c | 5 ++++- include/drm/drmP.h | 3 +++ 10 files changed, 76 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index b4a3dbc..436889e 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c @@ -37,6 +37,7 @@ #include /* For task queue support */ +#include /** * Get interrupt from bus id. * @@ -171,6 +172,23 @@ err: } EXPORT_SYMBOL(drm_vblank_init); +static void drm_irq_vgaarb_nokms(void *cookie, bool state) +{ + struct drm_device *dev = cookie; + + if (dev->driver->vgaarb_irq) { + dev->driver->vgaarb_irq(dev, state); + return; + } + + if (state) + dev->driver->irq_uninstall(dev); + else { + dev->driver->irq_preinstall(dev); + dev->driver->irq_postinstall(dev); + } +} + /** * Install IRQ handler. * @@ -231,6 +249,9 @@ int drm_irq_install(struct drm_device *dev) return ret; } + if (!drm_core_check_feature(dev, DRIVER_MODESET)) + vga_set_irq_callback(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms); + /* After installing handler */ ret = dev->driver->irq_postinstall(dev); if (ret < 0) { @@ -279,6 +300,9 @@ int drm_irq_uninstall(struct drm_device * dev) DRM_DEBUG("irq=%d\n", dev->pdev->irq); + if (!drm_core_check_feature(dev, DRIVER_MODESET)) + vga_set_irq_callback(dev->pdev, NULL, NULL); + dev->driver->irq_uninstall(dev); free_irq(dev->pdev->irq, dev); diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 8c47831..391e496 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -33,6 +33,7 @@ #include "i915_drm.h" #include "i915_drv.h" +#include #define I915_DRV "i915_drv" /* Really want an OS-independent resettable timer. Would like to have @@ -1029,6 +1030,11 @@ static int i915_load_modeset_init(struct drm_device *dev, if (ret) DRM_INFO("failed to find VBIOS tables\n"); + /* tell the VGA arbiter to set off */ + ret = intel_modeset_vga_disable(dev); + if (ret == 0) + vga_set_legacy_decoding(dev->pdev, VGA_RSRC_NONE); + ret = drm_irq_install(dev); if (ret) goto destroy_ringbuffer; diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index 6c08584..3e3145e 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h @@ -30,6 +30,7 @@ * fb aperture size and the amount of pre-reserved memory. */ #define INTEL_GMCH_CTRL 0x52 +#define INTEL_GMCH_VGA_DISABLE (1 << 1) #define INTEL_GMCH_ENABLED 0x4 #define INTEL_GMCH_MEM_MASK 0x1 #define INTEL_GMCH_MEM_64M 0x1 diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 508838e..ad7ef01 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -3188,3 +3188,20 @@ struct drm_encoder *intel_best_encoder(struct drm_connector *connector) return &intel_output->enc; } + +int intel_modeset_vga_disable(struct drm_device *dev) +{ + struct pci_dev *bridge_dev; + u16 gmch_ctrl; + + bridge_dev = pci_get_bus_and_slot(0, PCI_DEVFN(0, 0)); + if (!bridge_dev) { + DRM_ERROR("Can't disable VGA, no bridge\n"); + return -1; + } + + pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); + gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; + pci_write_config_word(bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); + return 0; +} diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h index 004541c..ab5be5b 100644 --- a/drivers/gpu/drm/i915/intel_drv.h +++ b/drivers/gpu/drm/i915/intel_drv.h @@ -154,4 +154,5 @@ extern int intel_framebuffer_create(struct drm_device *dev, struct drm_mode_fb_cmd *mode_cmd, struct drm_framebuffer **fb, struct drm_gem_object *obj); +extern int intel_modeset_vga_disable(struct drm_device *dev); #endif /* __INTEL_DRV_H__ */ diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index c550932..1fa6723 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c @@ -1256,6 +1256,15 @@ static void r100_vram_get_type(struct radeon_device *rdev) } } +void r100_vga_disable(struct radeon_device *rdev) +{ + uint32_t temp; + temp = RREG32(RADEON_CONFIG_CNTL); + temp &= ~(1<<8); + temp |= (1<<9); + WREG32(RADEON_CONFIG_CNTL, temp); +} + void r100_vram_info(struct radeon_device *rdev) { r100_vram_get_type(rdev); diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index d61f2fc..583bfb2 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -499,6 +499,7 @@ struct radeon_asic { int (*init)(struct radeon_device *rdev); void (*errata)(struct radeon_device *rdev); void (*vram_info)(struct radeon_device *rdev); + void (*vga_disable)(struct radeon_device *rdev); int (*gpu_reset)(struct radeon_device *rdev); int (*mc_init)(struct radeon_device *rdev); void (*mc_fini)(struct radeon_device *rdev); @@ -773,6 +774,7 @@ static inline void radeon_ring_write(struct radeon_device *rdev, uint32_t v) #define radeon_cs_parse(p) rdev->asic->cs_parse((p)) #define radeon_errata(rdev) (rdev)->asic->errata((rdev)) #define radeon_vram_info(rdev) (rdev)->asic->vram_info((rdev)) +#define radeon_vga_disable(rdev) (rdev)->asic->vga_disable((rdev)) #define radeon_gpu_reset(rdev) (rdev)->asic->gpu_reset((rdev)) #define radeon_mc_init(rdev) (rdev)->asic->mc_init((rdev)) #define radeon_mc_fini(rdev) (rdev)->asic->mc_fini((rdev)) diff --git a/drivers/gpu/drm/radeon/radeon_asic.h b/drivers/gpu/drm/radeon/radeon_asic.h index e2e5673..4586819 100644 --- a/drivers/gpu/drm/radeon/radeon_asic.h +++ b/drivers/gpu/drm/radeon/radeon_asic.h @@ -46,6 +46,7 @@ uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg); void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v); void r100_errata(struct radeon_device *rdev); void r100_vram_info(struct radeon_device *rdev); +void r100_vga_disable(struct radeon_device *rdev); int r100_gpu_reset(struct radeon_device *rdev); int r100_mc_init(struct radeon_device *rdev); void r100_mc_fini(struct radeon_device *rdev); @@ -76,6 +77,7 @@ static struct radeon_asic r100_asic = { .init = &r100_init, .errata = &r100_errata, .vram_info = &r100_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r100_gpu_reset, .mc_init = &r100_mc_init, .mc_fini = &r100_mc_fini, @@ -132,6 +134,7 @@ static struct radeon_asic r300_asic = { .init = &r300_init, .errata = &r300_errata, .vram_info = &r300_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r300_gpu_reset, .mc_init = &r300_mc_init, .mc_fini = &r300_mc_fini, @@ -169,6 +172,7 @@ static struct radeon_asic r420_asic = { .init = &r300_init, .errata = &r420_errata, .vram_info = &r420_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r300_gpu_reset, .mc_init = &r420_mc_init, .mc_fini = &r420_mc_fini, @@ -213,6 +217,7 @@ static struct radeon_asic rs400_asic = { .init = &r300_init, .errata = &rs400_errata, .vram_info = &rs400_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r300_gpu_reset, .mc_init = &rs400_mc_init, .mc_fini = &rs400_mc_fini, @@ -258,6 +263,7 @@ static struct radeon_asic rs600_asic = { .init = &r300_init, .errata = &rs600_errata, .vram_info = &rs600_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r300_gpu_reset, .mc_init = &rs600_mc_init, .mc_fini = &rs600_mc_fini, @@ -298,6 +304,7 @@ static struct radeon_asic rs690_asic = { .init = &r300_init, .errata = &rs690_errata, .vram_info = &rs690_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &r300_gpu_reset, .mc_init = &rs690_mc_init, .mc_fini = &rs690_mc_fini, @@ -343,6 +350,7 @@ static struct radeon_asic rv515_asic = { .init = &rv515_init, .errata = &rv515_errata, .vram_info = &rv515_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &rv515_gpu_reset, .mc_init = &rv515_mc_init, .mc_fini = &rv515_mc_fini, @@ -381,6 +389,7 @@ static struct radeon_asic r520_asic = { .init = &rv515_init, .errata = &r520_errata, .vram_info = &r520_vram_info, + .vga_disable = &r100_vga_disable, .gpu_reset = &rv515_gpu_reset, .mc_init = &r520_mc_init, .mc_fini = &r520_mc_fini, diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index f97563d..c02f655 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c @@ -29,6 +29,7 @@ #include #include #include +#include #include "radeon_reg.h" #include "radeon.h" #include "radeon_asic.h" @@ -516,7 +517,9 @@ int radeon_device_init(struct radeon_device *rdev, /* Initialize surface registers */ radeon_surface_init(rdev); - /* TODO: disable VGA need to use VGA request */ + radeon_vga_disable(rdev); + vga_set_legacy_decoding(rdev->pdev, VGA_RSRC_NONE); + /* BIOS*/ if (!radeon_get_bios(rdev)) { if (ASIC_IS_AVIVO(rdev)) diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 45b67d9..95106c7 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -786,6 +786,9 @@ struct drm_driver { int (*gem_init_object) (struct drm_gem_object *obj); void (*gem_free_object) (struct drm_gem_object *obj); + /* vga arb irq handler */ + void (*vgaarb_irq)(struct drm_device *dev, bool state); + /* Driver private ops for this object */ struct vm_operations_struct *gem_vm_ops; -- 1.5.4.1 linux-2.6-vga-arb.patch: --- NEW FILE linux-2.6-vga-arb.patch --- >From 5141835bff8148617b702d9390a594b90dbd6933 Mon Sep 17 00:00:00 2001 From: Tiago Vignatti Date: Tue, 14 Jul 2009 15:57:29 +0300 Subject: [PATCH] vga: implements VGA arbitration on Linux airlied changes since v1: moved to using pr_* instead of debug printks, add IRQ hook for GPU drivers to be called back for irq disable around mem/io disable remove module load/unload, vga arb is a subsystem really and shouldn't be removable from the kernel, allow it for CONFIG_EMBEDDED Signed-off-by: Tiago Vignatti --- drivers/gpu/Makefile | 2 +- drivers/gpu/vga/Kconfig | 10 + drivers/gpu/vga/Makefile | 1 + drivers/gpu/vga/vgaarb.c | 1116 ++++++++++++++++++++++++++++++++++++++++++++++ drivers/video/Kconfig | 2 + include/linux/vgaarb.h | 170 +++++++ 6 files changed, 1300 insertions(+), 1 deletions(-) create mode 100644 drivers/gpu/vga/Kconfig create mode 100644 drivers/gpu/vga/Makefile create mode 100644 drivers/gpu/vga/vgaarb.c create mode 100644 include/linux/vgaarb.h diff --git a/drivers/gpu/Makefile b/drivers/gpu/Makefile index de566cf..30879df 100644 --- a/drivers/gpu/Makefile +++ b/drivers/gpu/Makefile @@ -1 +1 @@ -obj-y += drm/ +obj-y += drm/ vga/ diff --git a/drivers/gpu/vga/Kconfig b/drivers/gpu/vga/Kconfig new file mode 100644 index 0000000..790e675 --- /dev/null +++ b/drivers/gpu/vga/Kconfig @@ -0,0 +1,10 @@ +config VGA_ARB + bool "VGA Arbitration" if EMBEDDED + default y + depends on PCI + help + Some "legacy" VGA devices implemented on PCI typically have the same + hard-decoded addresses as they did on ISA. When multiple PCI devices + are accessed at same time they need some kind of coordination. Please + see Documentation/vgaarbiter.txt for more details. Select this to + enable VGA arbiter. diff --git a/drivers/gpu/vga/Makefile b/drivers/gpu/vga/Makefile new file mode 100644 index 0000000..7cc8c1e --- /dev/null +++ b/drivers/gpu/vga/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_VGA_ARB) += vgaarb.o diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c new file mode 100644 index 0000000..09cf259 --- /dev/null +++ b/drivers/gpu/vga/vgaarb.c @@ -0,0 +1,1116 @@ +/* + * vgaarb.c + * + * (C) Copyright 2005 Benjamin Herrenschmidt + * (C) Copyright 2007 Paulo R. Zanoni + * (C) Copyright 2007, 2009 Tiago Vignatti + * + * Implements the VGA arbitration. For details refer to + * Documentation/vgaarbiter.txt + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include + +/* + * We keep a list of all vga devices in the system to speed + * up the various operations of the arbiter + */ +struct vga_device { + struct list_head list; + struct pci_dev *pdev; + unsigned int decodes; /* what does it decodes */ + unsigned int owns; /* what does it owns */ + unsigned int locks; /* what does it locks */ + unsigned int io_lock_cnt; /* legacy IO lock count */ + unsigned int mem_lock_cnt; /* legacy MEM lock count */ + unsigned int io_norm_cnt; /* normal IO count */ + unsigned int mem_norm_cnt; /* normal MEM count */ + + /* allow IRQ enable/disable hook */ + void *irq_cookie; + void (*irq_set_state)(void *cookie, bool enable); +}; + +static LIST_HEAD(vga_list); +static DEFINE_SPINLOCK(vga_lock); +static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue); + +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE +/* this is only used a cookie - it should not be dereferenced */ +static struct pci_dev *vga_default; +#endif + +static void vga_arb_device_card_gone(struct pci_dev *pdev); + +/* Find somebody in our list */ +static struct vga_device *vgadev_find(struct pci_dev *pdev) +{ + struct vga_device *vgadev; + + list_for_each_entry(vgadev, &vga_list, list) + if (pdev == vgadev->pdev) + return vgadev; + return NULL; +} + +/* Returns the default VGA device (vgacon's babe) */ +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE +struct pci_dev *vga_default_device(void) +{ + return vga_default; +} +#endif + +static inline void vga_irq_set_state(struct vga_device *vgadev, bool state) +{ + if (vgadev->irq_set_state) + vgadev->irq_set_state(vgadev->irq_cookie, state); +} +/* Architecture can override enabling/disabling of a given + * device resources here + * + * TODO: you can try to be "smart" and if for example you have 2 cards + * that are behind separate bridges, you need only swapping the bridge controls + * and you can keep the card master IO and memory enable. + */ +#ifndef __ARCH_HAS_VGA_DISABLE_RESOURCES +static inline void vga_disable_resources(struct pci_dev *pdev, + unsigned int rsrc, + unsigned int change_bridge) +{ + struct pci_bus *bus; + struct pci_dev *bridge; + u16 cmd; + + pr_devel("%s\n", __func__); + + pci_read_config_word(pdev, PCI_COMMAND, &cmd); + if (rsrc & (VGA_RSRC_LEGACY_IO | VGA_RSRC_NORMAL_IO)) + cmd &= ~PCI_COMMAND_IO; + if (rsrc & (VGA_RSRC_LEGACY_MEM | VGA_RSRC_NORMAL_MEM)) + cmd &= ~PCI_COMMAND_MEMORY; + pci_write_config_word(pdev, PCI_COMMAND, cmd); + + if (!change_bridge) + return; + + bus = pdev->bus; + while (bus) { + bridge = bus->self; + if (bridge) { + pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, + &cmd); + if (cmd & PCI_BRIDGE_CTL_VGA) { + cmd &= ~PCI_BRIDGE_CTL_VGA; + pci_write_config_word(bridge, + PCI_BRIDGE_CONTROL, + cmd); + } + } + bus = bus->parent; + } +} +#endif + +#ifndef __ARCH_HAS_VGA_ENABLE_RESOURCES +static inline void vga_enable_resources(struct pci_dev *pdev, + unsigned int rsrc) +{ + struct pci_bus *bus; + struct pci_dev *bridge; + u16 cmd; + + pr_devel("%s\n", __func__); + + pci_read_config_word(pdev, PCI_COMMAND, &cmd); + if (rsrc & (VGA_RSRC_LEGACY_IO | VGA_RSRC_NORMAL_IO)) + cmd |= PCI_COMMAND_IO; + if (rsrc & (VGA_RSRC_LEGACY_MEM | VGA_RSRC_NORMAL_MEM)) + cmd |= PCI_COMMAND_MEMORY; + pci_write_config_word(pdev, PCI_COMMAND, cmd); + + if (!(rsrc & VGA_RSRC_LEGACY_MASK)) + return; + + bus = pdev->bus; + while (bus) { + bridge = bus->self; + if (bridge) { + pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, + &cmd); + if (!(cmd & PCI_BRIDGE_CTL_VGA)) { + cmd |= PCI_BRIDGE_CTL_VGA; + pci_write_config_word(bridge, + PCI_BRIDGE_CONTROL, + cmd); + } + } + bus = bus->parent; + } +} +#endif + +static struct vga_device *__vga_tryget(struct vga_device *vgadev, + unsigned int rsrc) +{ + unsigned int wants, legacy_wants, match; + struct vga_device *conflict; + + /* Account for "normal" resources to lock. If we decode the legacy, + * counterpart, we need to request it as well + */ + if ((rsrc & VGA_RSRC_NORMAL_IO) && + (vgadev->decodes & VGA_RSRC_LEGACY_IO)) + rsrc |= VGA_RSRC_LEGACY_IO; + if ((rsrc & VGA_RSRC_NORMAL_MEM) && + (vgadev->decodes & VGA_RSRC_LEGACY_MEM)) + rsrc |= VGA_RSRC_LEGACY_MEM; + + pr_devel("%s: %d\n", __func__, rsrc); + pr_devel("%s: owns: %d\n", __func__, vgadev->owns); + + /* Check what resources we need to acquire */ + wants = rsrc & ~vgadev->owns; + + /* We already own everything, just mark locked & bye bye */ + if (wants == 0) + goto lock_them; + + /* We don't need to request a legacy resource, we just enable + * appropriate decoding and go + */ + legacy_wants = wants & VGA_RSRC_LEGACY_MASK; + if (legacy_wants == 0) + goto enable_them; + + /* Ok, we don't, let's find out how we need to kick off */ + list_for_each_entry(conflict, &vga_list, list) { + unsigned int lwants = legacy_wants; + unsigned int change_bridge = 0; + + /* Don't conflict with myself */ + if (vgadev == conflict) + continue; + + /* Check if the architecture allows a conflict between those + * 2 devices or if they are on separate domains + */ + if (!vga_conflicts(vgadev->pdev, conflict->pdev)) + continue; + + /* We have a possible conflict. before we go further, we must + * check if we sit on the same bus as the conflicting device. + * if we don't, then we must tie both IO and MEM resources + * together since there is only a single bit controlling + * VGA forwarding on P2P bridges + */ + if (vgadev->pdev->bus != conflict->pdev->bus) { + change_bridge = 1; + lwants = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; + } + + /* Check if the guy has a lock on the resource. If he does, + * return the conflicting entry + */ + if (conflict->locks & lwants) + return conflict; + + /* Ok, now check if he owns the resource we want. We don't need + * to check "decodes" since it should be impossible to own + * own legacy resources you don't decode unless I have a bug + * in this code... + */ + WARN_ON(conflict->owns & ~conflict->decodes); + match = lwants & conflict->owns; + if (!match) + continue; + + /* looks like he doesn't have a lock, we can steal + * them from him + */ + vga_irq_set_state(conflict, false); + vga_disable_resources(conflict->pdev, lwants, + change_bridge); + conflict->owns &= ~lwants; + /* If he also owned non-legacy, that is no longer the case */ + if (lwants & VGA_RSRC_LEGACY_MEM) + conflict->owns &= ~VGA_RSRC_NORMAL_MEM; + if (lwants & VGA_RSRC_LEGACY_IO) + conflict->owns &= ~VGA_RSRC_NORMAL_IO; + } + +enable_them: + /* ok dude, we got it, everybody conflicting has been disabled, let's + * enable us. Make sure we don't mark a bit in "owns" that we don't + * also have in "decodes". We can lock resources we don't decode but + * not own them. + */ + vga_enable_resources(vgadev->pdev, wants); + vga_irq_set_state(vgadev, true); + vgadev->owns |= (wants & vgadev->decodes); +lock_them: + vgadev->locks |= (rsrc & VGA_RSRC_LEGACY_MASK); + if (rsrc & VGA_RSRC_LEGACY_IO) + vgadev->io_lock_cnt++; + if (rsrc & VGA_RSRC_LEGACY_MEM) + vgadev->mem_lock_cnt++; + if (rsrc & VGA_RSRC_NORMAL_IO) + vgadev->io_norm_cnt++; + if (rsrc & VGA_RSRC_NORMAL_MEM) + vgadev->mem_norm_cnt++; + + return NULL; +} + +static void __vga_put(struct vga_device *vgadev, unsigned int rsrc) +{ + unsigned int old_locks = vgadev->locks; + + pr_devel("%s\n", __func__); + + /* Update our counters, and account for equivalent legacy resources + * if we decode them + */ + if ((rsrc & VGA_RSRC_NORMAL_IO) && vgadev->io_norm_cnt > 0) { + vgadev->io_norm_cnt--; + if (vgadev->decodes & VGA_RSRC_LEGACY_IO) + rsrc |= VGA_RSRC_LEGACY_IO; + } + if ((rsrc & VGA_RSRC_NORMAL_MEM) && vgadev->mem_norm_cnt > 0) { + vgadev->mem_norm_cnt--; + if (vgadev->decodes & VGA_RSRC_LEGACY_MEM) + rsrc |= VGA_RSRC_LEGACY_MEM; + } + if ((rsrc & VGA_RSRC_LEGACY_IO) && vgadev->io_lock_cnt > 0) + vgadev->io_lock_cnt--; + if ((rsrc & VGA_RSRC_LEGACY_MEM) && vgadev->mem_lock_cnt > 0) + vgadev->mem_lock_cnt--; + + /* Just clear lock bits, we do lazy operations so we don't really + * have to bother about anything else at this point + */ + if (vgadev->io_lock_cnt == 0) + vgadev->locks &= ~VGA_RSRC_LEGACY_IO; + if (vgadev->mem_lock_cnt == 0) + vgadev->locks &= ~VGA_RSRC_LEGACY_MEM; + + /* Kick the wait queue in case somebody was waiting if we actually + * released something + */ + if (old_locks != vgadev->locks) + wake_up_all(&vga_wait_queue); +} + +int vga_get(struct pci_dev *pdev, unsigned int rsrc, int interruptible) +{ + struct vga_device *vgadev, *conflict; + unsigned long flags; + wait_queue_t wait; + int rc = 0; + + /* The one who calls us should check for this, but lets be sure... */ + if (pdev == NULL) + pdev = vga_default_device(); + if (pdev == NULL) + return 0; + + for (;;) { + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (vgadev == NULL) { + spin_unlock_irqrestore(&vga_lock, flags); + rc = -ENODEV; + break; + } + conflict = __vga_tryget(vgadev, rsrc); + spin_unlock_irqrestore(&vga_lock, flags); + if (conflict == NULL) + break; + + + /* We have a conflict, we wait until somebody kicks the + * work queue. Currently we have one work queue that we + * kick each time some resources are released, but it would + * be fairly easy to have a per device one so that we only + * need to attach to the conflicting device + */ + init_waitqueue_entry(&wait, current); + add_wait_queue(&vga_wait_queue, &wait); + set_current_state(interruptible ? + TASK_INTERRUPTIBLE : + TASK_UNINTERRUPTIBLE); + if (signal_pending(current)) { + rc = -EINTR; + break; + } + schedule(); + remove_wait_queue(&vga_wait_queue, &wait); + set_current_state(TASK_RUNNING); + } + return rc; +} + +int vga_tryget(struct pci_dev *pdev, unsigned int rsrc) +{ + struct vga_device *vgadev; + unsigned long flags; + int rc = 0; + + /* The one who calls us should check for this, but lets be sure... */ + if (pdev == NULL) + pdev = vga_default_device(); + if (pdev == NULL) + return 0; + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (vgadev == NULL) { + rc = -ENODEV; + goto bail; + } + if (__vga_tryget(vgadev, rsrc)) + rc = -EBUSY; +bail: + spin_unlock_irqrestore(&vga_lock, flags); + return rc; +} + +void vga_put(struct pci_dev *pdev, unsigned int rsrc) +{ + struct vga_device *vgadev; + unsigned long flags; + + /* The one who calls us should check for this, but lets be sure... */ + if (pdev == NULL) + pdev = vga_default_device(); + if (pdev == NULL) + return; + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (vgadev == NULL) + goto bail; + __vga_put(vgadev, rsrc); +bail: + spin_unlock_irqrestore(&vga_lock, flags); +} + +/* + * Currently, we assume that the "initial" setup of the system is + * not sane, that is we come up with conflicting devices and let + * the arbiter's client decides if devices decodes or not legacy + * things. + */ +static void vga_arbiter_add_pci_device(struct pci_dev *pdev) +{ + struct vga_device *vgadev; + unsigned long flags; + struct pci_bus *bus; + struct pci_dev *bridge; + u16 cmd; + + /* Only deal with VGA class devices */ + if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA) + return; + + /* Allocate structure */ + vgadev = kmalloc(sizeof(struct vga_device), GFP_KERNEL); + if (vgadev == NULL) { + pr_err("vgaarb: failed to allocate pci device\n"); + /* What to do on allocation failure ? For now, let's + * just do nothing, I'm not sure there is anything saner + * to be done + */ + return; + } + + memset(vgadev, 0, sizeof(*vgadev)); + + /* Take lock & check for duplicates */ + spin_lock_irqsave(&vga_lock, flags); + if (vgadev_find(pdev) != NULL) { + BUG_ON(1); + goto fail; + } + vgadev->pdev = pdev; + + /* By default, assume we decode everything */ + vgadev->decodes = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | + VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; + + /* Mark that we "own" resources based on our enables, we will + * clear that below if the bridge isn't forwarding + */ + pci_read_config_word(pdev, PCI_COMMAND, &cmd); + if (cmd & PCI_COMMAND_IO) + vgadev->owns |= VGA_RSRC_LEGACY_IO; + if (cmd & PCI_COMMAND_MEMORY) + vgadev->owns |= VGA_RSRC_LEGACY_MEM; + + /* Check if VGA cycles can get down to us */ + bus = pdev->bus; + while (bus) { + bridge = bus->self; + if (bridge) { + u16 l; + pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, + &l); + if (!(l & PCI_BRIDGE_CTL_VGA)) { + vgadev->owns = 0; + break; + } + } + bus = bus->parent; + } + + /* Deal with VGA default device. Use first enabled one + * by default if arch doesn't have it's own hook + */ +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE + if (vga_default == NULL && (vgadev->owns & VGA_RSRC_LEGACY_MEM) && + (vgadev->owns & VGA_RSRC_LEGACY_IO)) + vga_default = pdev; + +#endif + + /* Add to the list */ + list_add(&vgadev->list, &vga_list); + pr_info("VGA Arbiter: device added: %d %d %d\n", + pdev->device, pdev->vendor, pdev->devfn); + spin_unlock_irqrestore(&vga_lock, flags); + return; +fail: + spin_unlock_irqrestore(&vga_lock, flags); + kfree(vgadev); +} + +static void vga_arbiter_del_pci_device(struct pci_dev *pdev) +{ + struct vga_device *vgadev; + unsigned long flags; + + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (vgadev == NULL) + goto bail; + + if (vga_default == pdev) + vga_default = NULL; + + /* Remove entry from list */ + list_del(&vgadev->list); + + /* Notify userland driver that the device is gone so it discards + * it's copies of the pci_dev pointer + */ + vga_arb_device_card_gone(pdev); + + /* Wake up all possible waiters */ + wake_up_all(&vga_wait_queue); +bail: + spin_unlock_irqrestore(&vga_lock, flags); + kfree(vgadev); +} + +void vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes) +{ + struct vga_device *vgadev; + unsigned long flags; + + decodes &= VGA_RSRC_LEGACY_MASK; + + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (vgadev == NULL) + goto bail; + + vgadev->decodes = decodes; + vgadev->owns &= decodes; + + /* XXX if somebody is going from "doesn't decode" to "decodes" state + * here, additional care must be taken as we may have pending owner + * ship of non-legacy region ... + */ +bail: + spin_unlock_irqrestore(&vga_lock, flags); +} +EXPORT_SYMBOL(vga_set_legacy_decoding); + +void vga_set_irq_callback(struct pci_dev *pdev, void *cookie, void (*irq_func)(void *cookie, bool enable)) +{ + struct vga_device *vgadev; + unsigned long flags; + + spin_lock_irqsave(&vga_lock, flags); + vgadev = vgadev_find(pdev); + if (!vgadev) + goto bail; + + vgadev->irq_cookie = cookie; + vgadev->irq_set_state = irq_func; +bail: + spin_unlock_irqrestore(&vga_lock, flags); + +} +EXPORT_SYMBOL(vga_set_irq_callback); + +/* + * Char driver implementation + * + * Semantics is: + * + * open : open user instance of the arbitrer. by default, it's + * attached to the default VGA device of the system. + * + * close : close user instance, release locks + * + * read : return a string indicating the status of the target. + * an IO state string is of the form {io,mem,io+mem,none}, + * mc and ic are respectively mem and io lock counts (for + * debugging/diagnostic only). "decodes" indicate what the + * card currently decodes, "owns" indicates what is currently + * enabled on it, and "locks" indicates what is locked by this + * card. If the card is unplugged, we get "invalid" then for + * card_ID and an -ENODEV error is returned for any command + * until a new card is targeted + * + * ",decodes=,owns=,locks= (ic,mc)" + * + * write : write a command to the arbiter. List of commands is: + * + * target : switch target to card (see below) + * lock : acquires locks on target ("none" is invalid io_state) + * trylock : non-blocking acquire locks on target + * unlock : release locks on target + * unlock all : release all locks on target held by this user + * decodes : set the legacy decoding attributes for the card + * + * poll : event if something change on any card (not just the target) + * + * card_ID is of the form "PCI:domain:bus:dev.fn". It can be set to "default" + * to go back to the system default card (TODO: not implemented yet). + * Currently, only PCI is supported as a prefix, but the userland API may + * support other bus types in the future, even if the current kernel + * implementation doesn't. + * + * Note about locks: + * + * The driver keeps track of which user has what locks on which card. It + * supports stacking, like the kernel one. This complexifies the implementation + * a bit, but makes the arbiter more tolerant to userspace problems and able + * to properly cleanup in all cases when a process dies. + * Currently, a max of 16 cards simultaneously can have locks issued from + * userspace for a given user (file descriptor instance) of the arbiter. + * + * If the device is hot-unplugged, there is a hook inside the module to notify + * they being added/removed in the system and automatically added/removed in + * the arbiter. + */ + +#define MAX_USER_CARDS 16 +#define PCI_INVALID_CARD ((struct pci_dev *)-1UL) + +/* + * Each user has an array of these, tracking which cards have locks + */ +struct vga_arb_user_card { + struct pci_dev *pdev; + unsigned int mem_cnt; + unsigned int io_cnt; +}; + +struct vga_arb_private { + struct list_head list; + struct pci_dev *target; + struct vga_arb_user_card cards[MAX_USER_CARDS]; + spinlock_t lock; +}; + +static LIST_HEAD(vga_user_list); +static DEFINE_SPINLOCK(vga_user_lock); + +static const char *vga_iostate_to_str(unsigned int iostate) +{ + /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */ + iostate &= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; + switch (iostate) { + case VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM: + return "io+mem"; + case VGA_RSRC_LEGACY_IO: + return "io"; + case VGA_RSRC_LEGACY_MEM: + return "mem"; + } + return "none"; +} + +static int vga_str_to_iostate(char *buf, int str_size, int *io_state) +{ + /* XXX We're not chekcing the str_size! */ + if (strncmp(buf, "io+mem", 6) == 0) + *io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; + else if (strncmp(buf, "io", 2) == 0) + *io_state = VGA_RSRC_LEGACY_IO; + else if (strncmp(buf, "mem", 3) == 0) + *io_state = VGA_RSRC_LEGACY_MEM; + else if (strncmp(buf, "none", 4) == 0) + *io_state = VGA_RSRC_NONE; + else + return 0; + return 1; +} + +/* + * This function gets a string in the format: "PCI:domain:bus:dev.fn" and + * returns the respective values. If the string is not in this format, + * it returns 0. + */ +static int vga_pci_str_to_vars(char *buf, int count, unsigned int *domain, + unsigned int *bus, unsigned int *devfn) +{ + int n; + unsigned int slot, func; + + n = sscanf(buf, "PCI:%d:%d:%d.%d", domain, bus, &slot, &func); + if (n != 4) + return 0; + + *devfn = PCI_DEVFN(slot, func); + + return 1; +} + +static ssize_t vga_arb_read(struct file *file, char __user * buf, + size_t count, loff_t *ppos) +{ + struct vga_arb_private *priv = file->private_data; + struct vga_device *vgadev; + struct pci_dev *pdev; + unsigned long flags; + size_t len; + int rc; + char *lbuf; + + lbuf = kmalloc(1024, GFP_KERNEL); + if (lbuf == NULL) + return -ENOMEM; + + /* Shields against vga_arb_device_card_gone (pci_dev going + * away), and allows access to vga list + */ + spin_lock_irqsave(&vga_lock, flags); + + /* If we are targetting the default, use it */ + pdev = priv->target; + if (pdev == NULL || pdev == PCI_INVALID_CARD) { + spin_unlock_irqrestore(&vga_lock, flags); + len = sprintf(lbuf, "invalid"); + goto done; + } + + /* Find card vgadev structure */ + vgadev = vgadev_find(pdev); + if (vgadev == NULL) { + /* Wow, it's not in the list, that shouldn't happen, + * let's fix us up and return invalid card + */ + if (pdev == priv->target) + vga_arb_device_card_gone(pdev); + spin_unlock_irqrestore(&vga_lock, flags); + len = sprintf(lbuf, "invalid"); + goto done; + } + + /* Fill the buffer with infos */ + len = snprintf(lbuf, 1024, + "PCI:%s,decodes=%s,owns=%s,locks=%s (%d,%d)\n", + pci_name(pdev), + vga_iostate_to_str(vgadev->decodes), + vga_iostate_to_str(vgadev->owns), + vga_iostate_to_str(vgadev->locks), + vgadev->io_lock_cnt, vgadev->mem_lock_cnt); + + spin_unlock_irqrestore(&vga_lock, flags); +done: + + /* Copy that to user */ + if (len > count) + len = count; + rc = copy_to_user(buf, lbuf, len); + kfree(lbuf); + if (rc) + return -EFAULT; + return len; +} + +/* + * TODO: To avoid parsing inside kernel and to improve the speed we may + * consider use ioctl here + */ +static ssize_t vga_arb_write(struct file *file, const char __user * buf, + size_t count, loff_t *ppos) +{ + struct vga_arb_private *priv = file->private_data; + struct pci_dev *pdev; + + unsigned int io_state; + + char *kbuf, *curr_pos; + size_t remaining = count; + + int ret_val; + int i; + + + kbuf = kmalloc(count + 1, GFP_KERNEL); + if (!kbuf) + return -ENOMEM; + + if (copy_from_user(kbuf, buf, count)) { + kfree(kbuf); + return -EFAULT; + } + curr_pos = kbuf; + kbuf[count] = '\0'; /* Just to make sure... */ + + if (strncmp(curr_pos, "lock ", 5) == 0) { + curr_pos += 5; + remaining -= 5; + + pr_devel("client 0x%X called 'lock'\n", (int)priv); + + if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) { + ret_val = -EPROTO; + goto done; + } + if (io_state == VGA_RSRC_NONE) { + ret_val = -EPROTO; + goto done; + } + + pdev = priv->target; + if (priv->target == NULL) { + ret_val = -ENODEV; + goto done; + } + + vga_get_uninterruptible(pdev, io_state); + + /* Update the client's locks lists... */ + for (i = 0; i < MAX_USER_CARDS; i++) { + if (priv->cards[i].pdev == pdev) { + if (io_state & VGA_RSRC_LEGACY_IO) + priv->cards[i].io_cnt++; + if (io_state & VGA_RSRC_LEGACY_MEM) + priv->cards[i].mem_cnt++; + break; + } + } + + ret_val = count; + goto done; + } else if (strncmp(curr_pos, "unlock ", 7) == 0) { + curr_pos += 7; + remaining -= 7; + + pr_devel("client 0x%X called 'unlock'\n", (int)priv); + + if (strncmp(curr_pos, "all", 3) == 0) + io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; + else { + if (!vga_str_to_iostate + (curr_pos, remaining, &io_state)) { + ret_val = -EPROTO; + goto done; + } + /* TODO: Add this? + if (io_state == VGA_RSRC_NONE) { + ret_val = -EPROTO; + goto done; + } + */ + } + + pdev = priv->target; + if (priv->target == NULL) { + ret_val = -ENODEV; + goto done; + } + + vga_put(pdev, io_state); + for (i = 0; i < MAX_USER_CARDS; i++) { + if (priv->cards[i].pdev == pdev) { + if (io_state & VGA_RSRC_LEGACY_IO) + priv->cards[i].io_cnt--; + if (io_state & VGA_RSRC_LEGACY_MEM) + priv->cards[i].mem_cnt--; + break; + } + } + + ret_val = count; + goto done; + } else if (strncmp(curr_pos, "trylock ", 8) == 0) { + curr_pos += 8; + remaining -= 8; + + pr_devel("client 0x%X called 'trylock'\n", (int)priv); + + if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) { + ret_val = -EPROTO; + goto done; + } + /* TODO: Add this? + if (io_state == VGA_RSRC_NONE) { + ret_val = -EPROTO; + goto done; + } + */ + + pdev = priv->target; + if (priv->target == NULL) { + ret_val = -ENODEV; + goto done; + } + + if (vga_tryget(pdev, io_state)) { + /* Update the client's locks lists... */ + for (i = 0; i < MAX_USER_CARDS; i++) { + if (priv->cards[i].pdev == pdev) { + if (io_state & VGA_RSRC_LEGACY_IO) + priv->cards[i].io_cnt++; + if (io_state & VGA_RSRC_LEGACY_MEM) + priv->cards[i].mem_cnt++; + break; + } + } + ret_val = count; + goto done; + } else { + ret_val = -EBUSY; + goto done; + } + + } else if (strncmp(curr_pos, "target ", 7) == 0) { + unsigned int domain, bus, devfn; + struct vga_device *vgadev; + + curr_pos += 7; + remaining -= 7; + pr_devel("client 0x%X called 'target'\n", (int)priv); + if (!vga_pci_str_to_vars(curr_pos, remaining, + &domain, &bus, &devfn)) { + ret_val = -EPROTO; + goto done; + } + + pdev = pci_get_bus_and_slot(bus, devfn); + if (!pdev) { + pr_info("Invalid pci address!\n"); + ret_val = -ENODEV; + goto done; + } + + vgadev = vgadev_find(pdev); + if (vgadev == NULL) { + pr_info("This PCI is not a vga device\n"); + ret_val = -ENODEV; + goto done; + } + + priv->target = pdev; + for (i = 0; i < MAX_USER_CARDS; i++) { + if (priv->cards[i].pdev == pdev) + break; + if (priv->cards[i].pdev == NULL) { + priv->cards[i].pdev = pdev; + priv->cards[i].io_cnt = 0; + priv->cards[i].mem_cnt = 0; + break; + } + } + if (i == MAX_USER_CARDS) { + pr_err("Maximum user cards number reached!\n"); + /* XXX: which value to return? */ + ret_val = -ENOMEM; + goto done; + } + + ret_val = count; + goto done; + + + } else if (strncmp(curr_pos, "decodes ", 8) == 0) { + curr_pos += 8; + remaining -= 8; + pr_devel("client 0x%X called 'decodes'\n", (int)priv); + + if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) { + ret_val = -EPROTO; + goto done; + } + pdev = priv->target; + if (priv->target == NULL) { + ret_val = -ENODEV; + goto done; + } + + vga_set_legacy_decoding(pdev, io_state); + ret_val = count; + goto done; + } + /* If we got here, the message written is not part of the protocol! */ + kfree(kbuf); + return -EPROTO; + +done: + kfree(kbuf); + return ret_val; +} + +static unsigned int vga_arb_fpoll(struct file *file, poll_table * wait) +{ + struct vga_arb_private *priv = file->private_data; + + pr_devel("vga_arb_fpoll()\n"); + + if (priv == NULL) + return -ENODEV; + poll_wait(file, &vga_wait_queue, wait); + return POLLIN; +} + +static int vga_arb_open(struct inode *inode, struct file *file) +{ + struct vga_arb_private *priv; + unsigned long flags; + + pr_devel("vga_arb_open()\n"); + + priv = kmalloc(sizeof(struct vga_arb_private), GFP_KERNEL); + if (priv == NULL) + return -ENOMEM; + memset(priv, 0, sizeof(*priv)); + spin_lock_init(&priv->lock); + file->private_data = priv; + + spin_lock_irqsave(&vga_user_lock, flags); + list_add(&priv->list, &vga_user_list); + spin_unlock_irqrestore(&vga_user_lock, flags); + + /* Set the client' lists of locks */ + priv->target = vga_default_device(); /* Maybe this is still null! */ + priv->cards[0].pdev = priv->target; + priv->cards[0].io_cnt = 0; + priv->cards[0].mem_cnt = 0; + + + return 0; +} + +static int vga_arb_release(struct inode *inode, struct file *file) +{ + struct vga_arb_private *priv = file->private_data; + struct vga_arb_user_card *uc; + unsigned long flags; + int i; + + pr_devel("vga_arb_release()\n"); + + if (priv == NULL) + return -ENODEV; + + spin_lock_irqsave(&vga_user_lock, flags); + list_del(&priv->list); + for (i = 0; i < MAX_USER_CARDS; i++) { + uc = &priv->cards[i]; + if (uc->pdev == NULL) + continue; + pr_devel("uc->io_cnt == %d, uc->mem_cnt == %d\n", + uc->io_cnt, uc->mem_cnt); + while (uc->io_cnt--) + vga_put(uc->pdev, VGA_RSRC_LEGACY_IO); + while (uc->mem_cnt--) + vga_put(uc->pdev, VGA_RSRC_LEGACY_MEM); + } + spin_unlock_irqrestore(&vga_user_lock, flags); + + kfree(priv); + + return 0; +} + +static void vga_arb_device_card_gone(struct pci_dev *pdev) +{ +} + +static int pci_notify(struct notifier_block *nb, unsigned long action, + void *data) +{ + struct device *dev = data; + struct pci_dev *pdev = to_pci_dev(dev); + + pr_devel("pci_notify()\n"); + + /* For now we're only intereted in devices added and removed. I didn't + * test this thing here, so someone needs to double check for the + * cases of hotplugable vga cards. */ + if (action == BUS_NOTIFY_ADD_DEVICE) + vga_arbiter_add_pci_device(pdev); + else if (action == BUS_NOTIFY_DEL_DEVICE) + vga_arbiter_del_pci_device(pdev); + + return 0; +} + +static struct notifier_block pci_notifier = { + .notifier_call = pci_notify, +}; + +static const struct file_operations vga_arb_device_fops = { + .read = vga_arb_read, + .write = vga_arb_write, + .poll = vga_arb_fpoll, + .open = vga_arb_open, + .release = vga_arb_release, +}; + +static struct miscdevice vga_arb_device = { + MISC_DYNAMIC_MINOR, "vga_arbiter", &vga_arb_device_fops +}; + +static int __init vga_arb_device_init(void) +{ + int rc; + struct pci_dev *pdev; + + rc = misc_register(&vga_arb_device); + if (rc < 0) + pr_err("VGA Arbiter: error %d registering device\n", rc); + + bus_register_notifier(&pci_bus_type, &pci_notifier); + + /* We add all pci devices satisfying vga class in the arbiter by + * default */ + pdev = NULL; + while ((pdev = + pci_get_subsys(PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, + PCI_ANY_ID, pdev)) != NULL) + vga_arbiter_add_pci_device(pdev); + + pr_info("VGA Arbiter: loaded\n"); + return rc; +} +subsys_initcall(vga_arb_device_init); diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 8afcf08..f4ed145 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -7,6 +7,8 @@ menu "Graphics support" source "drivers/char/agp/Kconfig" +source "drivers/gpu/vga/Kconfig" + source "drivers/gpu/drm/Kconfig" config VGASTATE diff --git a/include/linux/vgaarb.h b/include/linux/vgaarb.h new file mode 100644 index 0000000..cdc4ebb --- /dev/null +++ b/include/linux/vgaarb.h @@ -0,0 +1,170 @@ +/* + * vgaarb.c + * + * (C) Copyright 2005 Benjamin Herrenschmidt + * (C) Copyright 2007 Paulo R. Zanoni + * (C) Copyright 2007, 2009 Tiago Vignatti + */ + +#ifndef LINUX_VGA_H + +#include + +/* Legacy VGA regions */ +#define VGA_RSRC_NONE 0x00 +#define VGA_RSRC_LEGACY_IO 0x01 +#define VGA_RSRC_LEGACY_MEM 0x02 +#define VGA_RSRC_LEGACY_MASK (VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM) +/* Non-legacy access */ +#define VGA_RSRC_NORMAL_IO 0x04 +#define VGA_RSRC_NORMAL_MEM 0x08 + +/* Passing that instead of a pci_dev to use the system "default" + * device, that is the one used by vgacon. Archs will probably + * have to provide their own vga_default_device(); + */ +#define VGA_DEFAULT_DEVICE (NULL) + +/* For use by clients */ + +/** + * vga_set_legacy_decoding + * + * @pdev: pci device of the VGA card + * @decodes: bit mask of what legacy regions the card decodes + * + * Indicates to the arbiter if the card decodes legacy VGA IOs, + * legacy VGA Memory, both, or none. All cards default to both, + * the card driver (fbdev for example) should tell the arbiter + * if it has disabled legacy decoding, so the card can be left + * out of the arbitration process (and can be safe to take + * interrupts at any time. + */ +extern void vga_set_legacy_decoding(struct pci_dev *pdev, + unsigned int decodes); + +/** + * vga_get - acquire & locks VGA resources + * + * pdev: pci device of the VGA card or NULL for the system default + * rsrc: bit mask of resources to acquire and lock + * interruptible: blocking should be interruptible by signals ? + * + * This function acquires VGA resources for the given + * card and mark those resources locked. If the resource requested + * are "normal" (and not legacy) resources, the arbiter will first check + * wether the card is doing legacy decoding for that type of resource. If + * yes, the lock is "converted" into a legacy resource lock. + * The arbiter will first look for all VGA cards that might conflict + * and disable their IOs and/or Memory access, inlcuding VGA forwarding + * on P2P bridges if necessary, so that the requested resources can + * be used. Then, the card is marked as locking these resources and + * the IO and/or Memory accesse are enabled on the card (including + * VGA forwarding on parent P2P bridges if any). + * This function will block if some conflicting card is already locking + * one of the required resources (or any resource on a different bus + * segment, since P2P bridges don't differenciate VGA memory and IO + * afaik). You can indicate wether this blocking should be interruptible + * by a signal (for userland interface) or not. + * Must not be called at interrupt time or in atomic context. + * If the card already owns the resources, the function succeeds. + * Nested calls are supported (a per-resource counter is maintained) + */ + +extern int vga_get(struct pci_dev *pdev, unsigned int rsrc, + int interruptible); + +/** + * vga_get_interruptible + * + * Shortcut to vga_get + */ + +static inline int vga_get_interruptible(struct pci_dev *pdev, + unsigned int rsrc) +{ + return vga_get(pdev, rsrc, 1); +} + +/** + * vga_get_interruptible + * + * Shortcut to vga_get + */ + +static inline int vga_get_uninterruptible(struct pci_dev *pdev, + unsigned int rsrc) +{ + return vga_get(pdev, rsrc, 0); +} + +/** + * vga_tryget - try to acquire & lock legacy VGA resources + * + * @pdev: pci devivce of VGA card or NULL for system default + * @rsrc: bit mask of resources to acquire and lock + * + * This function performs the same operation as vga_get(), but + * will return an error (-EBUSY) instead of blocking if the resources + * are already locked by another card. It can be called in any context + */ + +extern int vga_tryget(struct pci_dev *pdev, unsigned int rsrc); + +/** + * vga_put - release lock on legacy VGA resources + * + * @pdev: pci device of VGA card or NULL for system default + * @rsrc: but mask of resource to release + * + * This function releases resources previously locked by vga_get() + * or vga_tryget(). The resources aren't disabled right away, so + * that a subsequence vga_get() on the same card will succeed + * immediately. Resources have a counter, so locks are only + * released if the counter reaches 0. + */ + +extern void vga_put(struct pci_dev *pdev, unsigned int rsrc); + + +/** + * vga_default_device + * + * This can be defined by the platform. The default implementation + * is rather dumb and will probably only work properly on single + * vga card setups and/or x86 platforms. + * + * If your VGA default device is not PCI, you'll have to return + * NULL here. In this case, I assume it will not conflict with + * any PCI card. If this is not true, I'll have to define two archs + * hooks for enabling/disabling the VGA default device if that is + * possible. This may be a problem with real _ISA_ VGA cards, in + * addition to a PCI one. I don't know at this point how to deal + * with that card. Can theirs IOs be disabled at all ? If not, then + * I suppose it's a matter of having the proper arch hook telling + * us about it, so we basically never allow anybody to succeed a + * vga_get()... + */ + +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE +extern struct pci_dev *vga_default_device(void); +#endif + +/** + * vga_conflicts + * + * Architectures should define this if they have several + * independant PCI domains that can afford concurrent VGA + * decoding + */ + +#ifndef __ARCH_HAS_VGA_CONFLICT +static inline int vga_conflicts(struct pci_dev *p1, struct pci_dev *p2) +{ + return 1; +} +#endif + +void vga_set_irq_callback(struct pci_dev *pdev, void *cookie, void (*irq_func)(void *cookie, bool enable)); + +#endif /* LINUX_VGA_H */ -- 1.5.4.1 Index: TODO =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/TODO,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- TODO 26 Jun 2009 14:41:59 -0000 1.64 +++ TODO 16 Jul 2009 05:32:36 -0000 1.65 @@ -81,3 +81,6 @@ * linux-2.6-kmemleak-improvements.patch will go upstream for .31 +* linux-2.6-vga-arb.patch +* drm-vga-arb.patch + will go upstream for .32 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.304 retrieving revision 1.305 diff -u -p -r1.304 -r1.305 --- config-generic 14 Jul 2009 15:29:04 -0000 1.304 +++ config-generic 16 Jul 2009 05:32:36 -0000 1.305 @@ -2231,6 +2231,7 @@ CONFIG_AGP_SIS=y CONFIG_AGP_SWORKS=y CONFIG_AGP_VIA=y CONFIG_AGP_EFFICEON=y +CONFIG_VGA_ARB=y CONFIG_DRM=m CONFIG_DRM_TDFX=m CONFIG_DRM_R128=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1631 retrieving revision 1.1632 diff -u -p -r1.1631 -r1.1632 --- kernel.spec 14 Jul 2009 15:29:04 -0000 1.1631 +++ kernel.spec 16 Jul 2009 05:32:39 -0000 1.1632 @@ -652,13 +652,15 @@ Patch1516: lirc_streamzap-buffer-rework. Patch1517: hdpvr-ir-enable.patch # nouveau + drm fixes -Patch1811: drm-next.patch -Patch1812: drm-modesetting-radeon.patch Patch1813: drm-radeon-pm.patch Patch1814: drm-nouveau.patch Patch1818: drm-i915-resume-force-mode.patch Patch1819: drm-intel-big-hammer.patch +# vga arb +Patch1900: linux-2.6-vga-arb.patch +Patch1901: drm-vga-arb.patch + # kludge to make ich9 e1000 work Patch2000: linux-2.6-e1000-ich9.patch @@ -1229,14 +1231,16 @@ ApplyPatch hdpvr-ir-enable.patch ApplyPatch linux-2.6-e1000-ich9.patch # Nouveau DRM + drm fixes -#ApplyPatch drm-next.patch -#ApplyPatch drm-modesetting-radeon.patch ApplyPatch drm-nouveau.patch # pm broken on my thinkpad t60p - airlied #ApplyPatch drm-radeon-pm.patch ApplyPatch drm-i915-resume-force-mode.patch ApplyPatch drm-intel-big-hammer.patch +# VGA arb + drm +ApplyPatch linux-2.6-vga-arb.patch +ApplyPatch drm-vga-arb.patch + # linux1394 git patches #ApplyPatch linux-2.6-firewire-git-update.patch #ApplyOptionalPatch linux-2.6-firewire-git-pending.patch @@ -1868,6 +1872,10 @@ fi # and build. %changelog +* Thu Jul 16 2009 Dave Airlie 2.6.31-0.69.rc3 +- linux-2.6-vga-arb.patch - add VGA arbiter. +- drm-vga-arb.patch - add VGA arbiter support to drm + * Tue Jul 14 2009 Kyle McMartin 2.6.31-0.68-rc3 - 2.6.31-rc3 - config changes: --- drm-modesetting-radeon.patch DELETED --- --- drm-next.patch DELETED --- From pkgdb at fedoraproject.org Thu Jul 16 05:33:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:33:15 +0000 Subject: [pkgdb] python-repoze-who-plugins-sa was added for lmacken Message-ID: <20090716053315.276C210F89C@bastion2.fedora.phx.redhat.com> kevin has added Package python-repoze-who-plugins-sa with summary The repoze.who SQLAlchemy plugin kevin has approved Package python-repoze-who-plugins-sa kevin has added a Fedora devel branch for python-repoze-who-plugins-sa with an owner of lmacken kevin has approved python-repoze-who-plugins-sa in Fedora devel kevin has approved Package python-repoze-who-plugins-sa kevin has set commit to Approved for 107427 on python-repoze-who-plugins-sa (Fedora devel) kevin has set checkout to Approved for 107427 on python-repoze-who-plugins-sa (Fedora devel) kevin has set build to Approved for 107427 on python-repoze-who-plugins-sa (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-who-plugins-sa From pkgdb at fedoraproject.org Thu Jul 16 05:33:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:33:17 +0000 Subject: [pkgdb] python-repoze-who-plugins-sa summary updated by kevin Message-ID: <20090716053317.EA25910F888@bastion2.fedora.phx.redhat.com> kevin set package python-repoze-who-plugins-sa summary to The repoze.who SQLAlchemy plugin To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-who-plugins-sa From pkgdb at fedoraproject.org Thu Jul 16 05:33:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:33:17 +0000 Subject: [pkgdb] python-repoze-who-plugins-sa (Fedora EPEL, 5) updated by kevin Message-ID: <20090716053318.159C210F8A6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for python-repoze-who-plugins-sa kevin has set commit to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 10) kevin has set checkout to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 10) kevin has set build to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-who-plugins-sa From pkgdb at fedoraproject.org Thu Jul 16 05:33:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:33:17 +0000 Subject: [pkgdb] python-repoze-who-plugins-sa (Fedora EPEL, 5) updated by kevin Message-ID: <20090716053318.1F59510F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for python-repoze-who-plugins-sa kevin has set commit to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 11) kevin has set checkout to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 11) kevin has set build to Approved for 107427 on python-repoze-who-plugins-sa (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-who-plugins-sa From kevin at fedoraproject.org Thu Jul 16 05:33:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:33:29 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa - New directory Message-ID: <20090716053329.183C711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsU27764/rpms/python-repoze-who-plugins-sa Log Message: Directory /cvs/pkgs/rpms/python-repoze-who-plugins-sa added to the repository From kevin at fedoraproject.org Thu Jul 16 05:33:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:33:29 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/devel - New directory Message-ID: <20090716053329.3C58511C00D3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsU27764/rpms/python-repoze-who-plugins-sa/devel Log Message: Directory /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 16 05:33:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:33:17 +0000 Subject: [pkgdb] python-repoze-who-plugins-sa (Fedora EPEL, 5) updated by kevin Message-ID: <20090716053318.2E15510F8AD@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for python-repoze-who-plugins-sa kevin has set commit to Approved for 107427 on python-repoze-who-plugins-sa (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on python-repoze-who-plugins-sa (Fedora EPEL 5) kevin has set build to Approved for 107427 on python-repoze-who-plugins-sa (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-who-plugins-sa From kevin at fedoraproject.org Thu Jul 16 05:33:34 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:33:34 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa Makefile,NONE,1.1 Message-ID: <20090716053334.6CE7711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsU27764/rpms/python-repoze-who-plugins-sa Added Files: Makefile Log Message: Setup of module python-repoze-who-plugins-sa --- NEW FILE Makefile --- # Top level Makefile for module python-repoze-who-plugins-sa all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:33:34 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:33:34 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716053334.BCE3511C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsU27764/rpms/python-repoze-who-plugins-sa/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-repoze-who-plugins-sa --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-repoze-who-plugins-sa # $Id: Makefile,v 1.1 2009/07/16 05:33:34 kevin Exp $ NAME := python-repoze-who-plugins-sa SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:34:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:34:21 +0000 Subject: [pkgdb] latrace was added for jolsa Message-ID: <20090716053421.5B67B10F8A5@bastion2.fedora.phx.redhat.com> kevin has added Package latrace with summary LD_AUDIT feature frontend for glibc 2.4+ kevin has approved Package latrace kevin has added a Fedora devel branch for latrace with an owner of jolsa kevin has approved latrace in Fedora devel kevin has approved Package latrace kevin has set commit to Approved for 107427 on latrace (Fedora devel) kevin has set checkout to Approved for 107427 on latrace (Fedora devel) kevin has set build to Approved for 107427 on latrace (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latrace From pkgdb at fedoraproject.org Thu Jul 16 05:34:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:34:23 +0000 Subject: [pkgdb] latrace summary updated by kevin Message-ID: <20090716053423.22B9110F89F@bastion2.fedora.phx.redhat.com> kevin set package latrace summary to LD_AUDIT feature frontend for glibc 2.4+ To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latrace From pkgdb at fedoraproject.org Thu Jul 16 05:34:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:34:23 +0000 Subject: [pkgdb] latrace (Fedora, 11) updated by kevin Message-ID: <20090716053423.2D33510F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for latrace kevin has set commit to Approved for 107427 on latrace (Fedora 11) kevin has set checkout to Approved for 107427 on latrace (Fedora 11) kevin has set build to Approved for 107427 on latrace (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/latrace From kevin at fedoraproject.org Thu Jul 16 05:34:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:34:33 +0000 (UTC) Subject: rpms/latrace - New directory Message-ID: <20090716053433.1914711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/latrace In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn28158/rpms/latrace Log Message: Directory /cvs/pkgs/rpms/latrace added to the repository From kevin at fedoraproject.org Thu Jul 16 05:34:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:34:33 +0000 (UTC) Subject: rpms/latrace/devel - New directory Message-ID: <20090716053433.3A49011C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/latrace/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn28158/rpms/latrace/devel Log Message: Directory /cvs/pkgs/rpms/latrace/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:34:39 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:34:39 +0000 (UTC) Subject: rpms/latrace Makefile,NONE,1.1 Message-ID: <20090716053439.69EDE11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/latrace In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn28158/rpms/latrace Added Files: Makefile Log Message: Setup of module latrace --- NEW FILE Makefile --- # Top level Makefile for module latrace all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:34:39 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:34:39 +0000 (UTC) Subject: rpms/latrace/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716053439.C9F7C11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/latrace/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn28158/rpms/latrace/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module latrace --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: latrace # $Id: Makefile,v 1.1 2009/07/16 05:34:39 kevin Exp $ NAME := latrace SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:36:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:36:22 +0000 Subject: [pkgdb] adf-accanthis-fonts was added for nim Message-ID: <20090716053623.06BE010F898@bastion2.fedora.phx.redhat.com> kevin has added Package adf-accanthis-fonts with summary A ?modernized? garaldic serif typeface kevin has approved Package adf-accanthis-fonts kevin has added a Fedora devel branch for adf-accanthis-fonts with an owner of nim kevin has approved adf-accanthis-fonts in Fedora devel kevin has approved Package adf-accanthis-fonts kevin has set commit to Approved for 107427 on adf-accanthis-fonts (Fedora devel) kevin has set checkout to Approved for 107427 on adf-accanthis-fonts (Fedora devel) kevin has set build to Approved for 107427 on adf-accanthis-fonts (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/adf-accanthis-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:36:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:36:25 +0000 Subject: [pkgdb] adf-accanthis-fonts (Fedora, 11) updated by kevin Message-ID: <20090716053625.A6A2A10F8A8@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on adf-accanthis-fonts (Fedora devel) for fonts-sig kevin approved watchcommits on adf-accanthis-fonts (Fedora devel) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/adf-accanthis-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:36:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:36:25 +0000 Subject: [pkgdb] adf-accanthis-fonts summary updated by kevin Message-ID: <20090716053625.967C610F8A3@bastion2.fedora.phx.redhat.com> kevin set package adf-accanthis-fonts summary to A ?modernized? garaldic serif typeface To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/adf-accanthis-fonts From kevin at fedoraproject.org Thu Jul 16 05:36:32 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:36:32 +0000 (UTC) Subject: rpms/adf-accanthis-fonts - New directory Message-ID: <20090716053632.1DC9811C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/adf-accanthis-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsl28706/rpms/adf-accanthis-fonts Log Message: Directory /cvs/pkgs/rpms/adf-accanthis-fonts added to the repository From kevin at fedoraproject.org Thu Jul 16 05:36:32 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:36:32 +0000 (UTC) Subject: rpms/adf-accanthis-fonts/devel - New directory Message-ID: <20090716053632.3533B11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/adf-accanthis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsl28706/rpms/adf-accanthis-fonts/devel Log Message: Directory /cvs/pkgs/rpms/adf-accanthis-fonts/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 16 05:36:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:36:25 +0000 Subject: [pkgdb] adf-accanthis-fonts (Fedora, 11) updated by kevin Message-ID: <20090716053625.B8F1410F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for adf-accanthis-fonts kevin has set commit to Approved for 107427 on adf-accanthis-fonts (Fedora 11) kevin has set checkout to Approved for 107427 on adf-accanthis-fonts (Fedora 11) kevin has set build to Approved for 107427 on adf-accanthis-fonts (Fedora 11) kevin approved watchbugzilla on adf-accanthis-fonts (Fedora 11) for fonts-sig kevin approved watchcommits on adf-accanthis-fonts (Fedora 11) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/adf-accanthis-fonts From kevin at fedoraproject.org Thu Jul 16 05:36:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:36:37 +0000 (UTC) Subject: rpms/adf-accanthis-fonts Makefile,NONE,1.1 Message-ID: <20090716053637.AE79511C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/adf-accanthis-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsl28706/rpms/adf-accanthis-fonts Added Files: Makefile Log Message: Setup of module adf-accanthis-fonts --- NEW FILE Makefile --- # Top level Makefile for module adf-accanthis-fonts all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:36:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:36:37 +0000 (UTC) Subject: rpms/adf-accanthis-fonts/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716053637.E2AE811C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/adf-accanthis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsl28706/rpms/adf-accanthis-fonts/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module adf-accanthis-fonts --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: adf-accanthis-fonts # $Id: Makefile,v 1.1 2009/07/16 05:36:37 kevin Exp $ NAME := adf-accanthis-fonts SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:38:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:38:00 +0000 Subject: [pkgdb] gtg was added for yaneti Message-ID: <20090716053800.60A2810F8A8@bastion2.fedora.phx.redhat.com> kevin has added Package gtg with summary Personal organizer for the GNOME desktop kevin has approved Package gtg kevin has added a Fedora devel branch for gtg with an owner of yaneti kevin has approved gtg in Fedora devel kevin has approved Package gtg kevin has set commit to Approved for 107427 on gtg (Fedora devel) kevin has set checkout to Approved for 107427 on gtg (Fedora devel) kevin has set build to Approved for 107427 on gtg (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 16 05:38:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:38:01 +0000 Subject: [pkgdb] gtg summary updated by kevin Message-ID: <20090716053801.C385310F898@bastion2.fedora.phx.redhat.com> kevin set package gtg summary to Personal organizer for the GNOME desktop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 16 05:38:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:38:01 +0000 Subject: [pkgdb] gtg (Fedora, 10) updated by kevin Message-ID: <20090716053801.CDC8110F8AA@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for gtg kevin has set commit to Approved for 107427 on gtg (Fedora 10) kevin has set checkout to Approved for 107427 on gtg (Fedora 10) kevin has set build to Approved for 107427 on gtg (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 16 05:38:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:38:01 +0000 Subject: [pkgdb] gtg (Fedora, 10) updated by kevin Message-ID: <20090716053801.DB78B10F8AD@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for gtg kevin has set commit to Approved for 107427 on gtg (Fedora 11) kevin has set checkout to Approved for 107427 on gtg (Fedora 11) kevin has set build to Approved for 107427 on gtg (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From kevin at fedoraproject.org Thu Jul 16 05:38:13 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:38:13 +0000 (UTC) Subject: rpms/gtg - New directory Message-ID: <20090716053813.1772C11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gtg In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsd29132/rpms/gtg Log Message: Directory /cvs/pkgs/rpms/gtg added to the repository From kevin at fedoraproject.org Thu Jul 16 05:38:13 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:38:13 +0000 (UTC) Subject: rpms/gtg/devel - New directory Message-ID: <20090716053813.3C00311C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gtg/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsd29132/rpms/gtg/devel Log Message: Directory /cvs/pkgs/rpms/gtg/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:38:19 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:38:19 +0000 (UTC) Subject: rpms/gtg Makefile,NONE,1.1 Message-ID: <20090716053819.257AE11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gtg In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsd29132/rpms/gtg Added Files: Makefile Log Message: Setup of module gtg --- NEW FILE Makefile --- # Top level Makefile for module gtg all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:38:19 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:38:19 +0000 (UTC) Subject: rpms/gtg/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716053819.79F9511C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gtg/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsd29132/rpms/gtg/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module gtg --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: gtg # $Id: Makefile,v 1.1 2009/07/16 05:38:19 kevin Exp $ NAME := gtg SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:40:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:40:09 +0000 Subject: [pkgdb] ibus-table-array30 was added for dchen Message-ID: <20090716054009.DBC1010F888@bastion2.fedora.phx.redhat.com> kevin has added Package ibus-table-array30 with summary Array30 Chinese input method for ibus-table kevin has approved Package ibus-table-array30 kevin has added a Fedora devel branch for ibus-table-array30 with an owner of dchen kevin has approved ibus-table-array30 in Fedora devel kevin has approved Package ibus-table-array30 kevin has set commit to Approved for 107427 on ibus-table-array30 (Fedora devel) kevin has set checkout to Approved for 107427 on ibus-table-array30 (Fedora devel) kevin has set build to Approved for 107427 on ibus-table-array30 (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-array30 From pkgdb at fedoraproject.org Thu Jul 16 05:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:40:12 +0000 Subject: [pkgdb] ibus-table-array30 summary updated by kevin Message-ID: <20090716054012.4846410F8AF@bastion2.fedora.phx.redhat.com> kevin set package ibus-table-array30 summary to Array30 Chinese input method for ibus-table To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-array30 From pkgdb at fedoraproject.org Thu Jul 16 05:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:40:12 +0000 Subject: [pkgdb] ibus-table-array30 (Fedora, 10) updated by kevin Message-ID: <20090716054012.83D6310F8B7@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for ibus-table-array30 kevin has set commit to Approved for 107427 on ibus-table-array30 (Fedora 10) kevin has set checkout to Approved for 107427 on ibus-table-array30 (Fedora 10) kevin has set build to Approved for 107427 on ibus-table-array30 (Fedora 10) kevin approved watchbugzilla on ibus-table-array30 (Fedora 10) for i18n-team kevin approved watchcommits on ibus-table-array30 (Fedora 10) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-array30 From pkgdb at fedoraproject.org Thu Jul 16 05:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:40:12 +0000 Subject: [pkgdb] ibus-table-array30 (Fedora, 10) updated by kevin Message-ID: <20090716054012.74C9810F8B3@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on ibus-table-array30 (Fedora devel) for i18n-team kevin approved watchcommits on ibus-table-array30 (Fedora devel) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-array30 From pkgdb at fedoraproject.org Thu Jul 16 05:40:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:40:12 +0000 Subject: [pkgdb] ibus-table-array30 (Fedora, 10) updated by kevin Message-ID: <20090716054012.A0D1210F8B4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for ibus-table-array30 kevin has set commit to Approved for 107427 on ibus-table-array30 (Fedora 11) kevin has set checkout to Approved for 107427 on ibus-table-array30 (Fedora 11) kevin has set build to Approved for 107427 on ibus-table-array30 (Fedora 11) kevin approved watchbugzilla on ibus-table-array30 (Fedora 11) for i18n-team kevin approved watchcommits on ibus-table-array30 (Fedora 11) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-array30 From kevin at fedoraproject.org Thu Jul 16 05:40:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:40:20 +0000 (UTC) Subject: rpms/ibus-table-array30 - New directory Message-ID: <20090716054020.1A61111C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ibus-table-array30 In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsr29721/rpms/ibus-table-array30 Log Message: Directory /cvs/pkgs/rpms/ibus-table-array30 added to the repository From kevin at fedoraproject.org Thu Jul 16 05:40:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:40:20 +0000 (UTC) Subject: rpms/ibus-table-array30/devel - New directory Message-ID: <20090716054020.3B5AA11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ibus-table-array30/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsr29721/rpms/ibus-table-array30/devel Log Message: Directory /cvs/pkgs/rpms/ibus-table-array30/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:40:25 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:40:25 +0000 (UTC) Subject: rpms/ibus-table-array30 Makefile,NONE,1.1 Message-ID: <20090716054025.D33D711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ibus-table-array30 In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsr29721/rpms/ibus-table-array30 Added Files: Makefile Log Message: Setup of module ibus-table-array30 --- NEW FILE Makefile --- # Top level Makefile for module ibus-table-array30 all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:40:26 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:40:26 +0000 (UTC) Subject: rpms/ibus-table-array30/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716054026.48F6111C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ibus-table-array30/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsr29721/rpms/ibus-table-array30/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ibus-table-array30 --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ibus-table-array30 # $Id: Makefile,v 1.1 2009/07/16 05:40:26 kevin Exp $ NAME := ibus-table-array30 SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:41:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:41:21 +0000 Subject: [pkgdb] mythes-hu was added for caolanm Message-ID: <20090716054121.916A610F8A8@bastion2.fedora.phx.redhat.com> kevin has added Package mythes-hu with summary Hungarian thesaurus kevin has approved Package mythes-hu kevin has added a Fedora devel branch for mythes-hu with an owner of caolanm kevin has approved mythes-hu in Fedora devel kevin has approved Package mythes-hu kevin has set commit to Approved for 107427 on mythes-hu (Fedora devel) kevin has set checkout to Approved for 107427 on mythes-hu (Fedora devel) kevin has set build to Approved for 107427 on mythes-hu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mythes-hu From kevin at fedoraproject.org Thu Jul 16 05:41:30 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:41:30 +0000 (UTC) Subject: rpms/mythes-hu - New directory Message-ID: <20090716054130.1565111C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mythes-hu In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsH30211/rpms/mythes-hu Log Message: Directory /cvs/pkgs/rpms/mythes-hu added to the repository From pkgdb at fedoraproject.org Thu Jul 16 05:41:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:41:22 +0000 Subject: [pkgdb] mythes-hu summary updated by kevin Message-ID: <20090716054122.C214110F8AB@bastion2.fedora.phx.redhat.com> kevin set package mythes-hu summary to Hungarian thesaurus To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mythes-hu From kevin at fedoraproject.org Thu Jul 16 05:41:30 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:41:30 +0000 (UTC) Subject: rpms/mythes-hu/devel - New directory Message-ID: <20090716054130.3908A11C049F@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mythes-hu/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsH30211/rpms/mythes-hu/devel Log Message: Directory /cvs/pkgs/rpms/mythes-hu/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:41:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:41:35 +0000 (UTC) Subject: rpms/mythes-hu Makefile,NONE,1.1 Message-ID: <20090716054135.9843811C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mythes-hu In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsH30211/rpms/mythes-hu Added Files: Makefile Log Message: Setup of module mythes-hu --- NEW FILE Makefile --- # Top level Makefile for module mythes-hu all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:41:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:41:35 +0000 (UTC) Subject: rpms/mythes-hu/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716054135.E4E0711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/mythes-hu/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsH30211/rpms/mythes-hu/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mythes-hu --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mythes-hu # $Id: Makefile,v 1.1 2009/07/16 05:41:35 kevin Exp $ NAME := mythes-hu SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:42:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:42:37 +0000 Subject: [pkgdb] olpc-switch-desktop was added for dsd Message-ID: <20090716054238.0D7B110F890@bastion2.fedora.phx.redhat.com> kevin has added Package olpc-switch-desktop with summary OLPC desktop switching utilities kevin has approved Package olpc-switch-desktop kevin has added a Fedora devel branch for olpc-switch-desktop with an owner of dsd kevin has approved olpc-switch-desktop in Fedora devel kevin has approved Package olpc-switch-desktop kevin has set commit to Approved for 107427 on olpc-switch-desktop (Fedora devel) kevin has set checkout to Approved for 107427 on olpc-switch-desktop (Fedora devel) kevin has set build to Approved for 107427 on olpc-switch-desktop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-switch-desktop From pkgdb at fedoraproject.org Thu Jul 16 05:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:42:40 +0000 Subject: [pkgdb] olpc-switch-desktop summary updated by kevin Message-ID: <20090716054240.8F32010F8A5@bastion2.fedora.phx.redhat.com> kevin set package olpc-switch-desktop summary to OLPC desktop switching utilities To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-switch-desktop From pkgdb at fedoraproject.org Thu Jul 16 05:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:42:40 +0000 Subject: [pkgdb] olpc-switch-desktop (Fedora, 11) updated by kevin Message-ID: <20090716054240.B4F3E10F8AC@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on olpc-switch-desktop (Fedora devel) for pbrobinson kevin approved watchcommits on olpc-switch-desktop (Fedora devel) for pbrobinson kevin approved commit on olpc-switch-desktop (Fedora devel) for pbrobinson kevin approved build on olpc-switch-desktop (Fedora devel) for pbrobinson kevin approved approveacls on olpc-switch-desktop (Fedora devel) for pbrobinson kevin approved watchbugzilla on olpc-switch-desktop (Fedora devel) for cjb kevin approved watchcommits on olpc-switch-desktop (Fedora devel) for cjb kevin approved commit on olpc-switch-desktop (Fedora devel) for cjb kevin approved build on olpc-switch-desktop (Fedora devel) for cjb kevin approved approveacls on olpc-switch-desktop (Fedora devel) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-switch-desktop From pkgdb at fedoraproject.org Thu Jul 16 05:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:42:40 +0000 Subject: [pkgdb] olpc-switch-desktop (Fedora, 11) updated by kevin Message-ID: <20090716054240.CE2B310F8B1@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for olpc-switch-desktop kevin has set commit to Approved for 107427 on olpc-switch-desktop (Fedora 11) kevin has set checkout to Approved for 107427 on olpc-switch-desktop (Fedora 11) kevin has set build to Approved for 107427 on olpc-switch-desktop (Fedora 11) kevin approved watchbugzilla on olpc-switch-desktop (Fedora 11) for pbrobinson kevin approved watchcommits on olpc-switch-desktop (Fedora 11) for pbrobinson kevin approved commit on olpc-switch-desktop (Fedora 11) for pbrobinson kevin approved build on olpc-switch-desktop (Fedora 11) for pbrobinson kevin approved approveacls on olpc-switch-desktop (Fedora 11) for pbrobinson kevin approved watchbugzilla on olpc-switch-desktop (Fedora 11) for cjb kevin approved watchcommits on olpc-switch-desktop (Fedora 11) for cjb kevin approved commit on olpc-switch-desktop (Fedora 11) for cjb kevin approved build on olpc-switch-desktop (Fedora 11) for cjb kevin approved approveacls on olpc-switch-desktop (Fedora 11) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-switch-desktop From kevin at fedoraproject.org Thu Jul 16 05:42:46 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:42:46 +0000 (UTC) Subject: rpms/olpc-switch-desktop - New directory Message-ID: <20090716054246.1870D11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/olpc-switch-desktop In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO30494/rpms/olpc-switch-desktop Log Message: Directory /cvs/pkgs/rpms/olpc-switch-desktop added to the repository From kevin at fedoraproject.org Thu Jul 16 05:42:46 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:42:46 +0000 (UTC) Subject: rpms/olpc-switch-desktop/devel - New directory Message-ID: <20090716054246.38C8F11C049F@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/olpc-switch-desktop/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO30494/rpms/olpc-switch-desktop/devel Log Message: Directory /cvs/pkgs/rpms/olpc-switch-desktop/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:42:51 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:42:51 +0000 (UTC) Subject: rpms/olpc-switch-desktop Makefile,NONE,1.1 Message-ID: <20090716054251.B743E11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/olpc-switch-desktop In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO30494/rpms/olpc-switch-desktop Added Files: Makefile Log Message: Setup of module olpc-switch-desktop --- NEW FILE Makefile --- # Top level Makefile for module olpc-switch-desktop all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:42:52 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:42:52 +0000 (UTC) Subject: rpms/olpc-switch-desktop/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716054252.1741411C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/olpc-switch-desktop/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsO30494/rpms/olpc-switch-desktop/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module olpc-switch-desktop --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: olpc-switch-desktop # $Id: Makefile,v 1.1 2009/07/16 05:42:51 kevin Exp $ NAME := olpc-switch-desktop SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:45:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:45:57 +0000 Subject: [pkgdb] cim-schema was added for mdomsch Message-ID: <20090716054557.A328F10F898@bastion2.fedora.phx.redhat.com> kevin has added Package cim-schema with summary Common Information Model (CIM) Schema kevin has approved Package cim-schema kevin has added a Fedora devel branch for cim-schema with an owner of mdomsch kevin has approved cim-schema in Fedora devel kevin has approved Package cim-schema kevin has set commit to Approved for 107427 on cim-schema (Fedora devel) kevin has set checkout to Approved for 107427 on cim-schema (Fedora devel) kevin has set build to Approved for 107427 on cim-schema (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema summary updated by kevin Message-ID: <20090716054601.B0A9710F8A5@bastion2.fedora.phx.redhat.com> kevin set package cim-schema summary to Common Information Model (CIM) Schema To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema (Fedora EPEL, 4) updated by kevin Message-ID: <20090716054601.C958010F8AC@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for cim-schema kevin has set commit to Approved for 107427 on cim-schema (Fedora 10) kevin has set checkout to Approved for 107427 on cim-schema (Fedora 10) kevin has set build to Approved for 107427 on cim-schema (Fedora 10) kevin approved watchbugzilla on cim-schema (Fedora 10) for vcrhonek kevin approved watchcommits on cim-schema (Fedora 10) for vcrhonek kevin approved commit on cim-schema (Fedora 10) for vcrhonek kevin approved build on cim-schema (Fedora 10) for vcrhonek kevin approved approveacls on cim-schema (Fedora 10) for vcrhonek kevin approved watchbugzilla on cim-schema (Fedora 10) for srini kevin approved watchcommits on cim-schema (Fedora 10) for srini kevin approved commit on cim-schema (Fedora 10) for srini kevin approved build on cim-schema (Fedora 10) for srini kevin approved approveacls on cim-schema (Fedora 10) for srini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema (Fedora EPEL, 4) updated by kevin Message-ID: <20090716054601.DA04210F8B3@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for cim-schema kevin has set commit to Approved for 107427 on cim-schema (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on cim-schema (Fedora EPEL 4) kevin has set build to Approved for 107427 on cim-schema (Fedora EPEL 4) kevin approved watchbugzilla on cim-schema (Fedora EPEL 4) for vcrhonek kevin approved watchcommits on cim-schema (Fedora EPEL 4) for vcrhonek kevin approved commit on cim-schema (Fedora EPEL 4) for vcrhonek kevin approved build on cim-schema (Fedora EPEL 4) for vcrhonek kevin approved approveacls on cim-schema (Fedora EPEL 4) for vcrhonek kevin approved watchbugzilla on cim-schema (Fedora EPEL 4) for srini kevin approved watchcommits on cim-schema (Fedora EPEL 4) for srini kevin approved commit on cim-schema (Fedora EPEL 4) for srini kevin approved build on cim-schema (Fedora EPEL 4) for srini kevin approved approveacls on cim-schema (Fedora EPEL 4) for srini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema (Fedora EPEL, 4) updated by kevin Message-ID: <20090716054601.EB85110F8B7@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for cim-schema kevin has set commit to Approved for 107427 on cim-schema (Fedora 11) kevin has set checkout to Approved for 107427 on cim-schema (Fedora 11) kevin has set build to Approved for 107427 on cim-schema (Fedora 11) kevin approved watchbugzilla on cim-schema (Fedora 11) for vcrhonek kevin approved watchcommits on cim-schema (Fedora 11) for vcrhonek kevin approved commit on cim-schema (Fedora 11) for vcrhonek kevin approved build on cim-schema (Fedora 11) for vcrhonek kevin approved approveacls on cim-schema (Fedora 11) for vcrhonek kevin approved watchbugzilla on cim-schema (Fedora 11) for srini kevin approved watchcommits on cim-schema (Fedora 11) for srini kevin approved commit on cim-schema (Fedora 11) for srini kevin approved build on cim-schema (Fedora 11) for srini kevin approved approveacls on cim-schema (Fedora 11) for srini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema (Fedora EPEL, 4) updated by kevin Message-ID: <20090716054602.0592E10F8BC@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for cim-schema kevin has set commit to Approved for 107427 on cim-schema (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on cim-schema (Fedora EPEL 5) kevin has set build to Approved for 107427 on cim-schema (Fedora EPEL 5) kevin approved watchbugzilla on cim-schema (Fedora EPEL 5) for vcrhonek kevin approved watchcommits on cim-schema (Fedora EPEL 5) for vcrhonek kevin approved commit on cim-schema (Fedora EPEL 5) for vcrhonek kevin approved build on cim-schema (Fedora EPEL 5) for vcrhonek kevin approved approveacls on cim-schema (Fedora EPEL 5) for vcrhonek kevin approved watchbugzilla on cim-schema (Fedora EPEL 5) for srini kevin approved watchcommits on cim-schema (Fedora EPEL 5) for srini kevin approved commit on cim-schema (Fedora EPEL 5) for srini kevin approved build on cim-schema (Fedora EPEL 5) for srini kevin approved approveacls on cim-schema (Fedora EPEL 5) for srini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From kevin at fedoraproject.org Thu Jul 16 05:46:09 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:46:09 +0000 (UTC) Subject: rpms/cim-schema - New directory Message-ID: <20090716054609.1C25C11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/cim-schema In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC31302/rpms/cim-schema Log Message: Directory /cvs/pkgs/rpms/cim-schema added to the repository From kevin at fedoraproject.org Thu Jul 16 05:46:09 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:46:09 +0000 (UTC) Subject: rpms/cim-schema/devel - New directory Message-ID: <20090716054609.4DC4D11C00D3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/cim-schema/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC31302/rpms/cim-schema/devel Log Message: Directory /cvs/pkgs/rpms/cim-schema/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:46:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:46:16 +0000 (UTC) Subject: rpms/cim-schema Makefile,NONE,1.1 Message-ID: <20090716054616.311E311C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/cim-schema In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC31302/rpms/cim-schema Added Files: Makefile Log Message: Setup of module cim-schema --- NEW FILE Makefile --- # Top level Makefile for module cim-schema all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 16 05:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:46:01 +0000 Subject: [pkgdb] cim-schema (Fedora EPEL, 4) updated by kevin Message-ID: <20090716054602.20D7F10F8C1@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on cim-schema (Fedora devel) for vcrhonek kevin approved watchcommits on cim-schema (Fedora devel) for vcrhonek kevin approved commit on cim-schema (Fedora devel) for vcrhonek kevin approved build on cim-schema (Fedora devel) for vcrhonek kevin approved approveacls on cim-schema (Fedora devel) for vcrhonek kevin approved watchbugzilla on cim-schema (Fedora devel) for srini kevin approved watchcommits on cim-schema (Fedora devel) for srini kevin approved commit on cim-schema (Fedora devel) for srini kevin approved build on cim-schema (Fedora devel) for srini kevin approved approveacls on cim-schema (Fedora devel) for srini To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cim-schema From kevin at fedoraproject.org Thu Jul 16 05:46:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:46:16 +0000 (UTC) Subject: rpms/cim-schema/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716054616.C76FA11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/cim-schema/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC31302/rpms/cim-schema/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module cim-schema --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: cim-schema # $Id: Makefile,v 1.1 2009/07/16 05:46:16 kevin Exp $ NAME := cim-schema SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:48:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:48:16 +0000 Subject: [pkgdb] apa-new-athena-unicode-fonts was added for ankursinha Message-ID: <20090716054816.721DD10F888@bastion2.fedora.phx.redhat.com> kevin has added Package apa-new-athena-unicode-fonts with summary New Athena Unicode is a libre/open multilingual font kevin has approved Package apa-new-athena-unicode-fonts kevin has added a Fedora devel branch for apa-new-athena-unicode-fonts with an owner of ankursinha kevin has approved apa-new-athena-unicode-fonts in Fedora devel kevin has approved Package apa-new-athena-unicode-fonts kevin has set commit to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora devel) kevin has set checkout to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora devel) kevin has set build to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/apa-new-athena-unicode-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:48:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:48:21 +0000 Subject: [pkgdb] apa-new-athena-unicode-fonts summary updated by kevin Message-ID: <20090716054821.9001510F89C@bastion2.fedora.phx.redhat.com> kevin set package apa-new-athena-unicode-fonts summary to New Athena Unicode is a libre/open multilingual font To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/apa-new-athena-unicode-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:48:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:48:21 +0000 Subject: [pkgdb] apa-new-athena-unicode-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054821.946D110F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for apa-new-athena-unicode-fonts kevin has set commit to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 10) kevin has set checkout to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 10) kevin has set build to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 10) kevin approved watchbugzilla on apa-new-athena-unicode-fonts (Fedora 10) for fonts-sig kevin approved watchcommits on apa-new-athena-unicode-fonts (Fedora 10) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/apa-new-athena-unicode-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:48:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:48:21 +0000 Subject: [pkgdb] apa-new-athena-unicode-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054821.9EF8610F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for apa-new-athena-unicode-fonts kevin has set commit to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 11) kevin has set checkout to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 11) kevin has set build to Approved for 107427 on apa-new-athena-unicode-fonts (Fedora 11) kevin approved watchbugzilla on apa-new-athena-unicode-fonts (Fedora 11) for fonts-sig kevin approved watchcommits on apa-new-athena-unicode-fonts (Fedora 11) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/apa-new-athena-unicode-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:48:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:48:21 +0000 Subject: [pkgdb] apa-new-athena-unicode-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054821.A902910F8AC@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on apa-new-athena-unicode-fonts (Fedora devel) for fonts-sig kevin approved watchcommits on apa-new-athena-unicode-fonts (Fedora devel) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/apa-new-athena-unicode-fonts From kevin at fedoraproject.org Thu Jul 16 05:48:27 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:48:27 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts - New directory Message-ID: <20090716054827.19B1411C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvso32031/rpms/apa-new-athena-unicode-fonts Log Message: Directory /cvs/pkgs/rpms/apa-new-athena-unicode-fonts added to the repository From kevin at fedoraproject.org Thu Jul 16 05:48:27 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:48:27 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/devel - New directory Message-ID: <20090716054827.4B19511C00D3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvso32031/rpms/apa-new-athena-unicode-fonts/devel Log Message: Directory /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:48:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:48:33 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716054833.A44CC11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvso32031/rpms/apa-new-athena-unicode-fonts/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module apa-new-athena-unicode-fonts --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: apa-new-athena-unicode-fonts # $Id: Makefile,v 1.1 2009/07/16 05:48:33 kevin Exp $ NAME := apa-new-athena-unicode-fonts SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From kevin at fedoraproject.org Thu Jul 16 05:48:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:48:33 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts Makefile,NONE,1.1 Message-ID: <20090716054833.4525A11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvso32031/rpms/apa-new-athena-unicode-fonts Added Files: Makefile Log Message: Setup of module apa-new-athena-unicode-fonts --- NEW FILE Makefile --- # Top level Makefile for module apa-new-athena-unicode-fonts all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 16 05:49:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:49:51 +0000 Subject: [pkgdb] pothana2000-fonts was added for sandeeps Message-ID: <20090716054951.1587B10F898@bastion2.fedora.phx.redhat.com> kevin has added Package pothana2000-fonts with summary Telugu OpenType Font kevin has approved Package pothana2000-fonts kevin has added a Fedora devel branch for pothana2000-fonts with an owner of sandeeps kevin has approved pothana2000-fonts in Fedora devel kevin has approved Package pothana2000-fonts kevin has set commit to Approved for 107427 on pothana2000-fonts (Fedora devel) kevin has set checkout to Approved for 107427 on pothana2000-fonts (Fedora devel) kevin has set build to Approved for 107427 on pothana2000-fonts (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pothana2000-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:49:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:49:53 +0000 Subject: [pkgdb] pothana2000-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054953.E2FB810F8A9@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for pothana2000-fonts kevin has set commit to Approved for 107427 on pothana2000-fonts (Fedora 10) kevin has set checkout to Approved for 107427 on pothana2000-fonts (Fedora 10) kevin has set build to Approved for 107427 on pothana2000-fonts (Fedora 10) kevin approved watchbugzilla on pothana2000-fonts (Fedora 10) for fonts-sig kevin approved watchcommits on pothana2000-fonts (Fedora 10) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pothana2000-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:49:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:49:53 +0000 Subject: [pkgdb] pothana2000-fonts summary updated by kevin Message-ID: <20090716054953.DEEDB10F8A6@bastion2.fedora.phx.redhat.com> kevin set package pothana2000-fonts summary to Telugu OpenType Font To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pothana2000-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:49:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:49:53 +0000 Subject: [pkgdb] pothana2000-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054953.EE1EC10F8AD@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for pothana2000-fonts kevin has set commit to Approved for 107427 on pothana2000-fonts (Fedora 11) kevin has set checkout to Approved for 107427 on pothana2000-fonts (Fedora 11) kevin has set build to Approved for 107427 on pothana2000-fonts (Fedora 11) kevin approved watchbugzilla on pothana2000-fonts (Fedora 11) for fonts-sig kevin approved watchcommits on pothana2000-fonts (Fedora 11) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pothana2000-fonts From pkgdb at fedoraproject.org Thu Jul 16 05:49:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:49:53 +0000 Subject: [pkgdb] pothana2000-fonts (Fedora, 10) updated by kevin Message-ID: <20090716054954.0C26910F8B0@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on pothana2000-fonts (Fedora devel) for fonts-sig kevin approved watchcommits on pothana2000-fonts (Fedora devel) for fonts-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pothana2000-fonts From kevin at fedoraproject.org Thu Jul 16 05:50:01 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:50:01 +0000 (UTC) Subject: rpms/pothana2000-fonts/devel - New directory Message-ID: <20090716055001.426E011C00D3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pothana2000-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32516/rpms/pothana2000-fonts/devel Log Message: Directory /cvs/pkgs/rpms/pothana2000-fonts/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:50:01 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:50:01 +0000 (UTC) Subject: rpms/pothana2000-fonts - New directory Message-ID: <20090716055001.1B8CD11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pothana2000-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32516/rpms/pothana2000-fonts Log Message: Directory /cvs/pkgs/rpms/pothana2000-fonts added to the repository From kevin at fedoraproject.org Thu Jul 16 05:50:07 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:50:07 +0000 (UTC) Subject: rpms/pothana2000-fonts Makefile,NONE,1.1 Message-ID: <20090716055007.CB4CC11C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pothana2000-fonts In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32516/rpms/pothana2000-fonts Added Files: Makefile Log Message: Setup of module pothana2000-fonts --- NEW FILE Makefile --- # Top level Makefile for module pothana2000-fonts all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:50:08 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:50:08 +0000 (UTC) Subject: rpms/pothana2000-fonts/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716055008.333A411C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/pothana2000-fonts/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsm32516/rpms/pothana2000-fonts/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pothana2000-fonts --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pothana2000-fonts # $Id: Makefile,v 1.1 2009/07/16 05:50:07 kevin Exp $ NAME := pothana2000-fonts SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:51:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:51:48 +0000 Subject: [pkgdb] spacewalk-proxy-docs was added for msuchy Message-ID: <20090716055148.DCFA910F86B@bastion2.fedora.phx.redhat.com> kevin has added Package spacewalk-proxy-docs with summary Spacewalk Proxy Server Documentation kevin has approved Package spacewalk-proxy-docs kevin has added a Fedora devel branch for spacewalk-proxy-docs with an owner of msuchy kevin has approved spacewalk-proxy-docs in Fedora devel kevin has approved Package spacewalk-proxy-docs kevin has set commit to Approved for 107427 on spacewalk-proxy-docs (Fedora devel) kevin has set checkout to Approved for 107427 on spacewalk-proxy-docs (Fedora devel) kevin has set build to Approved for 107427 on spacewalk-proxy-docs (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spacewalk-proxy-docs From pkgdb at fedoraproject.org Thu Jul 16 05:51:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:51:50 +0000 Subject: [pkgdb] spacewalk-proxy-docs summary updated by kevin Message-ID: <20090716055150.77CEA10F898@bastion2.fedora.phx.redhat.com> kevin set package spacewalk-proxy-docs summary to Spacewalk Proxy Server Documentation To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spacewalk-proxy-docs From pkgdb at fedoraproject.org Thu Jul 16 05:51:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:51:50 +0000 Subject: [pkgdb] spacewalk-proxy-docs (Fedora EPEL, 4) updated by kevin Message-ID: <20090716055150.7D9F010F8A3@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for spacewalk-proxy-docs kevin has set commit to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 5) kevin has set build to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spacewalk-proxy-docs From pkgdb at fedoraproject.org Thu Jul 16 05:51:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:51:50 +0000 Subject: [pkgdb] spacewalk-proxy-docs (Fedora EPEL, 4) updated by kevin Message-ID: <20090716055150.891B810F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for spacewalk-proxy-docs kevin has set commit to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 4) kevin has set build to Approved for 107427 on spacewalk-proxy-docs (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spacewalk-proxy-docs From pkgdb at fedoraproject.org Thu Jul 16 05:51:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:51:50 +0000 Subject: [pkgdb] spacewalk-proxy-docs (Fedora EPEL, 4) updated by kevin Message-ID: <20090716055150.9062210F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for spacewalk-proxy-docs kevin has set commit to Approved for 107427 on spacewalk-proxy-docs (Fedora 11) kevin has set checkout to Approved for 107427 on spacewalk-proxy-docs (Fedora 11) kevin has set build to Approved for 107427 on spacewalk-proxy-docs (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/spacewalk-proxy-docs From kevin at fedoraproject.org Thu Jul 16 05:52:00 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:52:00 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/devel - New directory Message-ID: <20090716055200.5093311C00D3@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsOoO675/rpms/spacewalk-proxy-docs/devel Log Message: Directory /cvs/pkgs/rpms/spacewalk-proxy-docs/devel added to the repository From kevin at fedoraproject.org Thu Jul 16 05:52:06 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:52:06 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs Makefile,NONE,1.1 Message-ID: <20090716055206.7E49411C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/spacewalk-proxy-docs In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsOoO675/rpms/spacewalk-proxy-docs Added Files: Makefile Log Message: Setup of module spacewalk-proxy-docs --- NEW FILE Makefile --- # Top level Makefile for module spacewalk-proxy-docs all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Thu Jul 16 05:52:00 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:52:00 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs - New directory Message-ID: <20090716055200.1EE8411C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/spacewalk-proxy-docs In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsOoO675/rpms/spacewalk-proxy-docs Log Message: Directory /cvs/pkgs/rpms/spacewalk-proxy-docs added to the repository From kevin at fedoraproject.org Thu Jul 16 05:52:07 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 16 Jul 2009 05:52:07 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090716055207.01E3711C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsOoO675/rpms/spacewalk-proxy-docs/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module spacewalk-proxy-docs --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: spacewalk-proxy-docs # $Id: Makefile,v 1.1 2009/07/16 05:52:06 kevin Exp $ NAME := spacewalk-proxy-docs SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 16 05:55:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:55:12 +0000 Subject: [pkgdb] php-pear-HTML_Javascript (Fedora EPEL, 5) updated by kevin Message-ID: <20090716055512.3ECA210F898@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for php-pear-HTML_Javascript kevin has set commit to Approved for 107427 on php-pear-HTML_Javascript (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on php-pear-HTML_Javascript (Fedora EPEL 5) kevin has set build to Approved for 107427 on php-pear-HTML_Javascript (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-HTML_Javascript From pkgdb at fedoraproject.org Thu Jul 16 05:55:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:55:59 +0000 Subject: [pkgdb] php-pear-Auth_HTTP (Fedora EPEL, 5) updated by kevin Message-ID: <20090716055559.BABCA10F888@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for php-pear-Auth_HTTP kevin has set commit to Approved for 107427 on php-pear-Auth_HTTP (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on php-pear-Auth_HTTP (Fedora EPEL 5) kevin has set build to Approved for 107427 on php-pear-Auth_HTTP (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-Auth_HTTP From pkgdb at fedoraproject.org Thu Jul 16 05:56:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:56:42 +0000 Subject: [pkgdb] php-pecl-lzf (Fedora EPEL, 5) updated by kevin Message-ID: <20090716055643.185B910F890@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for php-pecl-lzf kevin has set commit to Approved for 107427 on php-pecl-lzf (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on php-pecl-lzf (Fedora EPEL 5) kevin has set build to Approved for 107427 on php-pecl-lzf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pecl-lzf From pkgdb at fedoraproject.org Thu Jul 16 05:57:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 05:57:14 +0000 Subject: [pkgdb] libpuzzle (Fedora EPEL, 5) updated by kevin Message-ID: <20090716055714.912E210F8A5@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for libpuzzle kevin has set commit to Approved for 107427 on libpuzzle (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on libpuzzle (Fedora EPEL 5) kevin has set build to Approved for 107427 on libpuzzle (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libpuzzle From ankursinha at fedoraproject.org Thu Jul 16 05:58:10 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Thu, 16 Jul 2009 05:58:10 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/devel apa-new-athena-unicode-fonts-fontconfig.conf, NONE, 1.1 apa-new-athena-unicode-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716055811.0DC5511C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2195/devel Modified Files: .cvsignore sources Added Files: apa-new-athena-unicode-fonts-fontconfig.conf apa-new-athena-unicode-fonts.spec import.log Log Message: * Thu Jul 16 2009 Ankur Sinha - 3.4-2 - initial cvs commit --- NEW FILE apa-new-athena-unicode-fonts-fontconfig.conf --- serif New Athena Unicode New Athena Unicode serif --- NEW FILE apa-new-athena-unicode-fonts.spec --- %global fontname apa-new-athena-unicode %global fontconf 64-%{fontname}.conf Name: %{fontname}-fonts Version: 3.4 Release: 2%{?dist} Summary: New Athena Unicode is a libre/open multilingual font Group: User Interface/X License: OFL URL: http://apagreekkeys.org/NAUdownload.html Source0: http://apagreekkeys.org/fonts/NAU3_4ttf.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description New Athena Unicode is an libre/open multilingual font distributed by the American Philological Association. It follows the latest version of the Unicode standard and includes characters for English and Western European languages, polytonic Greek, Coptic, Old Italic, and Demotic Egyptian transliteration, as well as metrical symbols and other characters used by classical scholars. %prep %setup -q -n NAU3_4ttf %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.pdf *.rtf %changelog * Tue Jul 15 2009 Ankur Sinha - 3.4-2 - Made changes according to bug #511336 - changed fontconf priority to 64 - changed description * Tue Jul 14 2009 Ankur Sinha - 3.4-1 - initial rpm build --- NEW FILE import.log --- apa-new-athena-unicode-fonts-3_4-2_fc10:HEAD:apa-new-athena-unicode-fonts-3.4-2.fc10.src.rpm:1247723867 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:48:33 -0000 1.1 +++ .cvsignore 16 Jul 2009 05:57:40 -0000 1.2 @@ -0,0 +1 @@ +NAU3_4ttf.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:48:33 -0000 1.1 +++ sources 16 Jul 2009 05:57:40 -0000 1.2 @@ -0,0 +1 @@ +f98f355a4202320270eaf23206958c9c NAU3_4ttf.zip From ankursinha at fedoraproject.org Thu Jul 16 06:07:42 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Thu, 16 Jul 2009 06:07:42 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/F-10 apa-new-athena-unicode-fonts-fontconfig.conf, NONE, 1.1 apa-new-athena-unicode-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716060742.E7BA311C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4585/F-10 Modified Files: .cvsignore sources Added Files: apa-new-athena-unicode-fonts-fontconfig.conf apa-new-athena-unicode-fonts.spec import.log Log Message: * Thu Jul 16 2009 Ankur Sinha 3.4-2 - initial cvs commit --- NEW FILE apa-new-athena-unicode-fonts-fontconfig.conf --- serif New Athena Unicode New Athena Unicode serif --- NEW FILE apa-new-athena-unicode-fonts.spec --- %global fontname apa-new-athena-unicode %global fontconf 64-%{fontname}.conf Name: %{fontname}-fonts Version: 3.4 Release: 2%{?dist} Summary: New Athena Unicode is a libre/open multilingual font Group: User Interface/X License: OFL URL: http://apagreekkeys.org/NAUdownload.html Source0: http://apagreekkeys.org/fonts/NAU3_4ttf.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description New Athena Unicode is an libre/open multilingual font distributed by the American Philological Association. It follows the latest version of the Unicode standard and includes characters for English and Western European languages, polytonic Greek, Coptic, Old Italic, and Demotic Egyptian transliteration, as well as metrical symbols and other characters used by classical scholars. %prep %setup -q -n NAU3_4ttf %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.pdf *.rtf %changelog * Tue Jul 15 2009 Ankur Sinha - 3.4-2 - Made changes according to bug #511336 - changed fontconf priority to 64 - changed description * Tue Jul 14 2009 Ankur Sinha - 3.4-1 - initial rpm build --- NEW FILE import.log --- apa-new-athena-unicode-fonts-3_4-2_fc10:F-10:apa-new-athena-unicode-fonts-3.4-2.fc10.src.rpm:1247724459 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:48:33 -0000 1.1 +++ .cvsignore 16 Jul 2009 06:07:12 -0000 1.2 @@ -0,0 +1 @@ +NAU3_4ttf.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:48:33 -0000 1.1 +++ sources 16 Jul 2009 06:07:12 -0000 1.2 @@ -0,0 +1 @@ +f98f355a4202320270eaf23206958c9c NAU3_4ttf.zip From ankursinha at fedoraproject.org Thu Jul 16 06:11:58 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Thu, 16 Jul 2009 06:11:58 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/F-11 apa-new-athena-unicode-fonts-fontconfig.conf, NONE, 1.1 apa-new-athena-unicode-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716061158.A7AD011C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5635/F-11 Modified Files: .cvsignore sources Added Files: apa-new-athena-unicode-fonts-fontconfig.conf apa-new-athena-unicode-fonts.spec import.log Log Message: * Thu Jul 16 2009 Ankur Sinha 3.4-2 - initial cvs commit --- NEW FILE apa-new-athena-unicode-fonts-fontconfig.conf --- serif New Athena Unicode New Athena Unicode serif --- NEW FILE apa-new-athena-unicode-fonts.spec --- %global fontname apa-new-athena-unicode %global fontconf 64-%{fontname}.conf Name: %{fontname}-fonts Version: 3.4 Release: 2%{?dist} Summary: New Athena Unicode is a libre/open multilingual font Group: User Interface/X License: OFL URL: http://apagreekkeys.org/NAUdownload.html Source0: http://apagreekkeys.org/fonts/NAU3_4ttf.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description New Athena Unicode is an libre/open multilingual font distributed by the American Philological Association. It follows the latest version of the Unicode standard and includes characters for English and Western European languages, polytonic Greek, Coptic, Old Italic, and Demotic Egyptian transliteration, as well as metrical symbols and other characters used by classical scholars. %prep %setup -q -n NAU3_4ttf %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p *.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} *.ttf %doc *.pdf *.rtf %changelog * Tue Jul 15 2009 Ankur Sinha - 3.4-2 - Made changes according to bug #511336 - changed fontconf priority to 64 - changed description * Tue Jul 14 2009 Ankur Sinha - 3.4-1 - initial rpm build --- NEW FILE import.log --- apa-new-athena-unicode-fonts-3_4-2_fc10:F-11:apa-new-athena-unicode-fonts-3.4-2.fc10.src.rpm:1247724728 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:48:33 -0000 1.1 +++ .cvsignore 16 Jul 2009 06:11:27 -0000 1.2 @@ -0,0 +1 @@ +NAU3_4ttf.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:48:33 -0000 1.1 +++ sources 16 Jul 2009 06:11:28 -0000 1.2 @@ -0,0 +1 @@ +f98f355a4202320270eaf23206958c9c NAU3_4ttf.zip From alexlan at fedoraproject.org Thu Jul 16 06:17:23 2009 From: alexlan at fedoraproject.org (alexlan) Date: Thu, 16 Jul 2009 06:17:23 +0000 (UTC) Subject: rpms/wise2/devel wise2.spec,1.4,1.5 Message-ID: <20090716061723.37F4A11C0099@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/wise2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7020 Modified Files: wise2.spec Log Message: - Add -D_POSIX_C_SOURCE=200112L to CFLAGS as a workaround to fix FTBFS (#511627) Index: wise2.spec =================================================================== RCS file: /cvs/extras/rpms/wise2/devel/wise2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wise2.spec 25 Feb 2009 18:49:07 -0000 1.4 +++ wise2.spec 16 Jul 2009 06:17:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: wise2 Version: 2.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools for comparison of biopolymers Group: Applications/Engineering @@ -41,7 +41,7 @@ cp src/models/GNULICENSE LICENSE.GPL %build cd src ## removed "{?_smp_mflags}", does not support parallel build -make CC=gcc CFLAGS="-c $RPM_OPT_FLAGS" all +make CC=gcc CFLAGS="-c $RPM_OPT_FLAGS -D_POSIX_C_SOURCE=200112L" all %install rm -rf $RPM_BUILD_ROOT @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/profile.d/* %changelog +* Thu Jul 16 2009 Alex Lancaster - 2.2.0-6 +- Add -D_POSIX_C_SOURCE=200112L to CFLAGS as a workaround to fix FTBFS (#511627) + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pnemade at fedoraproject.org Thu Jul 16 06:22:56 2009 From: pnemade at fedoraproject.org (pnemade) Date: Thu, 16 Jul 2009 06:22:56 +0000 (UTC) Subject: rpms/fontmatrix/F-11 fontmatrix.spec,1.14,1.15 sources,1.9,1.10 Message-ID: <20090716062256.8F56911C0099@cvs1.fedora.phx.redhat.com> Author: pnemade Update of /cvs/pkgs/rpms/fontmatrix/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8138 Modified Files: fontmatrix.spec sources Log Message: - update to new release 0.6.0 Index: fontmatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/F-11/fontmatrix.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fontmatrix.spec 20 Mar 2009 05:09:18 -0000 1.14 +++ fontmatrix.spec 16 Jul 2009 06:22:25 -0000 1.15 @@ -1,9 +1,9 @@ -%define svnrev 900 +%define svnrev 1063 Name: fontmatrix Summary: A fonts manager -Version: 0.5.0 -Release: 1.r%{svnrev}%{?dist} +Version: 0.6.0 +Release: 2.r%{svnrev}%{?dist} License: GPLv2+ Group: User Interface/X ##### svn checkout HOWTO ##### @@ -16,8 +16,8 @@ URL: http://www.fontmatrix.net/ Source: http://www.fontmatrix.net/archives/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt-devel freetype-devel -BuildRequires: desktop-file-utils cmake -BuildRequires: openssl-devel +BuildRequires: desktop-file-utils cmake python-devel +BuildRequires: openssl-devel podofo-devel libicu-devel ##Following is needed to ensure that enduser can edit font with fontforge application Requires: fontforge @@ -30,7 +30,8 @@ A powerful and well designed fonts manag %build export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" -%cmake . +%cmake . -DWANT_HARFBUZZ:bool=true -DWANT_ICU:bool=true \ + -DWANT_PYTHONQT:bool=true -DWANT_PODOFO:bool=true make VERBOSE=1 %{?_smp_mflags} @@ -73,6 +74,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Parag - 0.6.0-2.r1063 +- Add missing BRs:python-devel podofo-devel libicu-devel + +* Mon Jul 13 2009 Parag - 0.6.0-1.r1063 +- update to svn revision 1063 + +* Fri Apr 24 2009 Parag - 0.5.0-2.r931 +- update to svn revision 931 + * Fri Mar 20 2009 Parag - 0.5.0-1.r900 - update to svn revision 900 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 Mar 2009 05:09:18 -0000 1.9 +++ sources 16 Jul 2009 06:22:26 -0000 1.10 @@ -1 +1 @@ -a5775528ba4995e6bb53be2daa6eb113 fontmatrix-0.5.0-Source.tar.gz +6a00c9448a50d3bab5acb4145f778f2d fontmatrix-0.6.0-Source.tar.gz From alexlan at fedoraproject.org Thu Jul 16 06:47:43 2009 From: alexlan at fedoraproject.org (alexlan) Date: Thu, 16 Jul 2009 06:47:43 +0000 (UTC) Subject: rpms/perl-Bio-Graphics/devel .cvsignore, 1.4, 1.5 perl-Bio-Graphics.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090716064743.786F711C0099@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/perl-Bio-Graphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13356 Modified Files: .cvsignore perl-Bio-Graphics.spec sources Log Message: - Update to latest upstream (1.97) to fix FTBFS (#511633) and disable tests temporarily (reported upstream: http://rt.cpan.org/Public/Bug/Display.html?id=47935 ) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Bio-Graphics/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 5 May 2009 07:45:27 -0000 1.4 +++ .cvsignore 16 Jul 2009 06:47:10 -0000 1.5 @@ -1 +1 @@ -Bio-Graphics-1.94.tar.gz +Bio-Graphics-1.97.tar.gz Index: perl-Bio-Graphics.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Bio-Graphics/devel/perl-Bio-Graphics.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Bio-Graphics.spec 5 May 2009 07:45:27 -0000 1.5 +++ perl-Bio-Graphics.spec 16 Jul 2009 06:47:10 -0000 1.6 @@ -1,5 +1,5 @@ Name: perl-Bio-Graphics -Version: 1.94 +Version: 1.97 Release: 1%{?dist} Summary: Generate GD images of Bio::Seq objects License: GPL+ or Artistic @@ -46,7 +46,7 @@ find $RPM_BUILD_ROOT -depth -type d -exe %check -./Build test +##./Build test %clean rm -rf $RPM_BUILD_ROOT @@ -60,6 +60,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 16 2009 Alex Lancaster - 1.97-1 +- Update to latest upstream (1.97) to fix FTBFS (#511633) and disable + tests temporarily (reported upstream: + http://rt.cpan.org/Public/Bug/Display.html?id=47935) + * Tue May 5 2009 Alex Lancaster - 1.94-1 - Update to latest upstream (1.94) - Drop patch for disabling tests Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Bio-Graphics/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 5 May 2009 07:45:27 -0000 1.4 +++ sources 16 Jul 2009 06:47:10 -0000 1.5 @@ -1 +1 @@ -363508cab96fc62d84f2d1f9e158edfd Bio-Graphics-1.94.tar.gz +f83ffe265910b5275e7213617bf82199 Bio-Graphics-1.97.tar.gz From dp67 at fedoraproject.org Thu Jul 16 07:00:23 2009 From: dp67 at fedoraproject.org (dp67) Date: Thu, 16 Jul 2009 07:00:23 +0000 (UTC) Subject: rpms/fldigi/devel .cvsignore, 1.8, 1.9 fldigi.spec, 1.11, 1.12 import.log, 1.1, 1.2 sources, 1.8, 1.9 fldigi-gcc44.patch, 1.1, NONE Message-ID: <20090716070023.1631311C0099@cvs1.fedora.phx.redhat.com> Author: dp67 Update of /cvs/pkgs/rpms/fldigi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16179/devel Modified Files: .cvsignore fldigi.spec import.log sources Removed Files: fldigi-gcc44.patch Log Message: * Thu Jul 16 2009 Randall J. Berry 3.11.6-1 - Upstream upgrade to 3.11.6 - Remove fldigi-gcc44.patch (applied upstream) - Man pages added upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 20 Jan 2009 01:59:55 -0000 1.8 +++ .cvsignore 16 Jul 2009 06:59:51 -0000 1.9 @@ -1 +1 @@ -fldigi-3.10.tar.gz +fldigi-3.11.6.tar.gz Index: fldigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/devel/fldigi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fldigi.spec 24 Apr 2009 22:32:20 -0000 1.11 +++ fldigi.spec 16 Jul 2009 06:59:52 -0000 1.12 @@ -1,18 +1,26 @@ Name: fldigi -Version: 3.10 -Release: 3%{?dist} +Version: 3.11.6 +Release: 1%{?dist} Summary: Digital modem program for Linux Group: Applications/Communications License: GPLv2+ URL: http://www.w1hkj.com/fldigi-distro/ Source0: http://www.w1hkj.com/fldigi-distro/%{name}-%{version}.tar.gz + # The package should be updated to current, patch re-diffed and send upstream! -Patch0: %{name}-gcc44.patch +# Commented out 07-16-2009 patch applied upstream 3.11.6 +# Patch0: %{name}-gcc44.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: hamlib-devel, fltk-devel, libjpeg-devel, libpng-devel -BuildRequires: portaudio-devel >= 19-4, libsndfile-devel , desktop-file-utils +BuildRequires: hamlib-devel +BuildRequires: fltk-devel +BuildRequires: libjpeg-devel +BuildRequires: libpng-devel +BuildRequires: portaudio-devel >= 19-4 +BuildRequires: libsndfile-devel +BuildRequires: desktop-file-utils BuildRequires: libsamplerate-devel %description @@ -24,7 +32,17 @@ GUI. %prep %setup -q -%patch0 +# %patch0 +# Remove executeable tag to quiet rpmlint +chmod -x src/include/jalocha/pj_struc.h +chmod -x src/include/jalocha/pj_fifo.h +chmod -x src/include/jalocha/pj_cmpx.h +chmod -x src/include/jalocha/pj_fft.h +chmod -x src/include/jalocha/pj_gray.h +chmod -x src/include/jalocha/pj_lowpass3.h +chmod -x src/include/jalocha/pj_fht.h +chmod -x src/olivia/olivia.cxx +chmod -x src/include/jalocha/pj_mfsk.h %build %configure @@ -48,15 +66,18 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING README %{_bindir}/* %{_datadir}/pixmaps/* +%{_mandir}/man1/%{name}.1.gz %attr(0644,root,root) %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 16 2009 Randall J. Berry 3.11.6-1 +- Upstream upgrade to 3.11.6 +- Remove fldigi-gcc44.patch (applied upstream) +- Man pages added upstream * Sat Apr 25 2009 Milos Jakubicek - 3.10-3 - Fix FTBFS: added fldigi-gcc44.patch - * Tue Feb 24 2009 Fedora Release Engineering - 3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - * Mon Jan 19 2009 Randall J Berry 'Dp67' 3.10-1 - New upstream release * Thu Dec 14 2008 Sindre Pedersen Bj??rdal 3.03-1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 20 Jan 2009 01:59:55 -0000 1.1 +++ import.log 16 Jul 2009 06:59:52 -0000 1.2 @@ -1 +1,2 @@ fldigi-3_10-1_fc10:HEAD:fldigi-3.10-1.fc10.src.rpm:1232416769 +fldigi-3_11_6-1_fc11:HEAD:fldigi-3.11.6-1.fc11.src.rpm:1247727524 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Jan 2009 01:59:55 -0000 1.8 +++ sources 16 Jul 2009 06:59:52 -0000 1.9 @@ -1 +1 @@ -eb8eb8ff6d750eadfaa8804998d733c2 fldigi-3.10.tar.gz +912ddc303ca54b9e41e8c271c6160bbc fldigi-3.11.6.tar.gz --- fldigi-gcc44.patch DELETED --- From whot at fedoraproject.org Thu Jul 16 07:07:57 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Thu, 16 Jul 2009 07:07:57 +0000 (UTC) Subject: rpms/xorg-x11-drv-aiptek/devel aiptek-1.2.0-abi.patch, NONE, 1.1 xorg-x11-drv-aiptek.spec, 1.19, 1.20 Message-ID: <20090716070758.13E1F11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17886 Modified Files: xorg-x11-drv-aiptek.spec Added Files: aiptek-1.2.0-abi.patch Log Message: * Thu Jul 16 2009 Peter Hutterer 1.2.0-2 - aiptek-1.2.0-abi.patch: cope with XINPUT ABI 7. aiptek-1.2.0-abi.patch: --- NEW FILE aiptek-1.2.0-abi.patch --- >From f440e333bb535854ed25e258fc502b1b6a8d5e44 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 22 Jun 2009 14:12:23 +1000 Subject: [PATCH] Cope with ABI_XINPUT_VERSION 7 - requires button/axes labeling Signed-off-by: Peter Hutterer --- src/xf86Aiptek.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 47 insertions(+), 5 deletions(-) diff --git a/src/xf86Aiptek.c b/src/xf86Aiptek.c index a26ca60..8402c85 100644 --- a/src/xf86Aiptek.c +++ b/src/xf86Aiptek.c @@ -126,6 +126,12 @@ #include #include +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 +#include +#include +#endif + + static const char identification[] = "$Identification: 0 $"; static InputDriverPtr aiptekDrv; static int debug_level = INI_DEBUG_LEVEL; @@ -1499,6 +1505,9 @@ xf86AiptekOpenDevice(DeviceIntPtr pDriver) */ InitValuatorAxisStruct(pDriver, /* X resolution */ 0, /* axis_id */ +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X), +#endif 0, /* min value */ device->xBottom - device->xTop, /* max value */ LPI2CPM(375), /* resolution */ @@ -1507,6 +1516,9 @@ xf86AiptekOpenDevice(DeviceIntPtr pDriver) InitValuatorAxisStruct(pDriver, /* Y Resolution */ 1, /* axis_id */ +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y), +#endif 0, /* min value */ device->yBottom - device->yTop, /* max value */ LPI2CPM(375), /* resolution */ @@ -1515,6 +1527,9 @@ xf86AiptekOpenDevice(DeviceIntPtr pDriver) InitValuatorAxisStruct(pDriver, /* Pressure */ 2, /* axis_id */ +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE), +#endif 0, /* min value */ 511, /* max value */ 512, /* resolution */ @@ -1523,6 +1538,9 @@ xf86AiptekOpenDevice(DeviceIntPtr pDriver) InitValuatorAxisStruct(pDriver, /* xTilt */ 3, /* axis id */ +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + XIGetKnownProperty(AXIS_LABEL_PROP_ABS_TILT_X), +#endif -128, /* min value */ 127, /* max value */ 256, /* resolution */ @@ -1531,6 +1549,9 @@ xf86AiptekOpenDevice(DeviceIntPtr pDriver) InitValuatorAxisStruct(pDriver, /* yTilt */ 4, /* axis_id */ +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + XIGetKnownProperty(AXIS_LABEL_PROP_ABS_TILT_Y), +#endif -128, /* min value */ 127, /* max value */ 256, /* resolution */ @@ -1554,11 +1575,15 @@ static int xf86AiptekProc(DeviceIntPtr pAiptek, int requestCode) { CARD8 map[512+1]; - int numAxes; - int numButtons; + int numAxes = 5; /* X, Y, Z, xTilt, yTilt */ + int numButtons = 5; int loop; LocalDevicePtr local = (LocalDevicePtr)pAiptek->public.devicePrivate; AiptekDevicePtr device = (AiptekDevicePtr)PRIVATE(pAiptek); +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_labels[numAxes]; + Atom axes_labels[numButtons]; +#endif DBG(2, ErrorF("xf86AiptekProc() type=%s flags=%d request=%d\n", (DEVICE_ID(device->flags) == STYLUS_ID) ? "stylus" : @@ -1570,15 +1595,27 @@ xf86AiptekProc(DeviceIntPtr pAiptek, int requestCode) case DEVICE_INIT: { DBG(1, ErrorF("xf86AiptekProc request=INIT\n")); - numAxes = 5; /* X, Y, Z, xTilt, yTilt */ - numButtons = 5; for(loop=1; loop<=numButtons; ++loop) { map[loop] = loop; } - if (InitButtonClassDeviceStruct(pAiptek,numButtons,map) == FALSE) +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + btn_labels[0] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_LEFT); + btn_labels[1] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_MIDDLE); + btn_labels[2] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_RIGHT); + btn_labels[3] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_WHEEL_UP); + btn_labels[4] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_WHEEL_DOWN); + + memset(axes_labels, 0, sizeof(axes_labels)); +#endif + + if (InitButtonClassDeviceStruct(pAiptek,numButtons, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + btn_labels, +#endif + map) == FALSE) { ErrorF("Unable to init Button Class Device\n"); return !Success; @@ -1609,8 +1646,13 @@ xf86AiptekProc(DeviceIntPtr pAiptek, int requestCode) return !Success; } + /* we don't label the axes here, done later in + * xf86AiptedOpenDevice */ if (InitValuatorClassDeviceStruct(pAiptek, numAxes, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axes_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-aiptek.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel/xorg-x11-drv-aiptek.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-aiptek.spec 15 Jul 2009 15:45:17 -0000 1.19 +++ xorg-x11-drv-aiptek.spec 16 Jul 2009 07:07:25 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Xorg X11 aiptek input driver Name: xorg-x11-drv-aiptek Version: 1.2.0 -Release: 1%{?dist}.1 +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -13,6 +13,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: aiptek-1.2.0-abi.patch + ExcludeArch: s390 s390x BuildRequires: xorg-x11-server-sdk >= 1.3.0.0-6 @@ -24,6 +26,7 @@ X.Org X11 aiptek input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -47,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/aiptek.4* %changelog +* Thu Jul 16 2009 Peter Hutterer 1.2.0-2 +- aiptek-1.2.0-abi.patch: cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.2.0-1.1 - ABI bump From whot at fedoraproject.org Thu Jul 16 07:12:23 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Thu, 16 Jul 2009 07:12:23 +0000 (UTC) Subject: rpms/xorg-x11-drv-acecad/devel acecad-1.3.0-abi.patch, NONE, 1.1 xorg-x11-drv-acecad.spec, 1.19, 1.20 Message-ID: <20090716071223.C984111C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19024 Modified Files: xorg-x11-drv-acecad.spec Added Files: acecad-1.3.0-abi.patch Log Message: * Thu Jul 16 2009 Peter Hutterer 1.3.0-2 - acecad-1.3.0-abi.patch: cope with XINPUT ABI 7. acecad-1.3.0-abi.patch: --- NEW FILE acecad-1.3.0-abi.patch --- >From a87f59f431c86272e45fdc3ed328fd30be1db2ae Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 22 Jun 2009 13:36:54 +1000 Subject: [PATCH] Cope with ABI_XINPUT_VERSION 7 - requires button/axes labels. We don't have an atom for relative pressure, so if the device is set to relative, we export the axis as REL_Z instead. Signed-off-by: Peter Hutterer --- src/acecad.c | 46 +++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 43 insertions(+), 3 deletions(-) diff --git a/src/acecad.c b/src/acecad.c index 63c5aaf..1dac489 100644 --- a/src/acecad.c +++ b/src/acecad.c @@ -78,6 +78,11 @@ #endif #endif +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 +#include +#include +#endif + /* Previously found in xf86Xinput.h */ #ifdef DBG #undef DBG @@ -627,13 +632,36 @@ DeviceInit (DeviceIntPtr dev) int rx, ry; LocalDevicePtr local = (LocalDevicePtr) dev->public.devicePrivate; AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private); - unsigned char map[] = - {0, 1, 2, 3}; + unsigned char map[] = {0, 1, 2, 3}; +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_labels[3]; + Atom axes_labels[3]; + + btn_labels[0] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_LEFT); + btn_labels[1] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_MIDDLE); + btn_labels[2] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_RIGHT); + + if ((priv->flags & ABSOLUTE_FLAG)) + { + axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X); + axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y); + axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE); + } else + { + axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_X); + axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Y); + axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Z); + } +#endif xf86MsgVerb(X_INFO, 4, "%s Init\n", local->name); /* 3 boutons */ - if (InitButtonClassDeviceStruct (dev, 3, map) == FALSE) + if (InitButtonClassDeviceStruct (dev, 3, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + btn_labels, +#endif + map) == FALSE) { xf86Msg(X_ERROR, "%s: unable to allocate ButtonClassDeviceStruct\n", local->name); return !Success; @@ -653,6 +681,9 @@ DeviceInit (DeviceIntPtr dev) /* 3 axes */ if (InitValuatorClassDeviceStruct (dev, 3, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axes_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif @@ -668,6 +699,9 @@ DeviceInit (DeviceIntPtr dev) InitValuatorAxisStruct(dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axes_labels[0], +#endif 0, /* min val */ #if XORG_BOTCHED_INPUT screenInfo.screens[0]->width, @@ -679,6 +713,9 @@ DeviceInit (DeviceIntPtr dev) 1000); /* max_res */ InitValuatorAxisStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axes_labels[1], +#endif 0, /* min val */ #if XORG_BOTCHED_INPUT screenInfo.screens[0]->height, @@ -690,6 +727,9 @@ DeviceInit (DeviceIntPtr dev) 1000); /* max_res */ InitValuatorAxisStruct(dev, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axes_labels[2], +#endif 0, /* min val */ priv->acecadMaxZ, /* max val */ 1000, /* resolution */ -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-acecad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel/xorg-x11-drv-acecad.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-acecad.spec 15 Jul 2009 15:44:32 -0000 1.19 +++ xorg-x11-drv-acecad.spec 16 Jul 2009 07:12:22 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Xorg X11 acecad input driver Name: xorg-x11-drv-acecad Version: 1.3.0 -Release: 1%{?dist}.1 +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -13,6 +13,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: acecad-1.3.0-abi.patch + ExcludeArch: s390 s390x BuildRequires: xorg-x11-server-sdk >= 1.3.0.0-6 @@ -23,6 +25,7 @@ X.Org X11 acecad input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -45,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/acecad.4* %changelog +* Thu Jul 16 2009 Peter Hutterer 1.3.0-2 +- acecad-1.3.0-abi.patch: cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 - ABI bump From lmacken at fedoraproject.org Thu Jul 16 07:15:42 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Thu, 16 Jul 2009 07:15:42 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/devel import.log, NONE, 1.1 python-repoze-who-plugins-sa.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716071542.1FEF511C0099@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19735/devel Modified Files: .cvsignore sources Added Files: import.log python-repoze-who-plugins-sa.spec Log Message: Initial import of python-repoze-who-plugins-sa --- NEW FILE import.log --- python-repoze-who-plugins-sa-1_0-0_2_rc1_fc10:HEAD:python-repoze-who-plugins-sa-1.0-0.2.rc1.fc10.src.rpm:1247728514 --- NEW FILE python-repoze-who-plugins-sa.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define _rcver rc1 Name: python-repoze-who-plugins-sa Version: 1.0 Release: 0.2.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.who.plugins.sa Source0: http://pypi.python.org/packages/source/r/repoze.who.plugins.sa/repoze.who.plugins.sa-%{version}%{_rcver}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-repoze-who BuildRequires: python-elixir python-sqlalchemy python-coverage python-nose Requires: python-repoze-who Requires: python-sqlalchemy %description This plugin provides one repoze.who authenticator which works with SQLAlchemy or Elixir-based models. %prep %setup -q -n repoze.who.plugins.sa-%{version}%{_rcver} %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, and python-repoze-who to the BuildRequires - Remove the setuptools patch * Tue Jan 06 2009 Luke Macken - 1.0-0.1.b2.r2909 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:33:34 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:15:41 -0000 1.2 @@ -0,0 +1 @@ +repoze.who.plugins.sa-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:33:34 -0000 1.1 +++ sources 16 Jul 2009 07:15:41 -0000 1.2 @@ -0,0 +1 @@ +41b603e42c90c2f7e1096045c01bba17 repoze.who.plugins.sa-1.0rc1.tar.gz From dp67 at fedoraproject.org Thu Jul 16 07:17:01 2009 From: dp67 at fedoraproject.org (dp67) Date: Thu, 16 Jul 2009 07:17:01 +0000 (UTC) Subject: rpms/fldigi/F-11 fldigi.spec, 1.11, 1.12 import.log, 1.1, 1.2 sources, 1.8, 1.9 Message-ID: <20090716071701.8B4C011C0099@cvs1.fedora.phx.redhat.com> Author: dp67 Update of /cvs/pkgs/rpms/fldigi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19712 Modified Files: fldigi.spec import.log sources Log Message: * Thu Jul 16 2009 Randall J. Berry 3.11.6-1 - Upstream upgrade to 3.11.6 - Remove fldigi-gcc44.patch (applied upstream) - Man pages added upstream Index: fldigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-11/fldigi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fldigi.spec 24 Apr 2009 22:32:20 -0000 1.11 +++ fldigi.spec 16 Jul 2009 07:16:30 -0000 1.12 @@ -1,18 +1,26 @@ Name: fldigi -Version: 3.10 -Release: 3%{?dist} +Version: 3.11.6 +Release: 1%{?dist} Summary: Digital modem program for Linux Group: Applications/Communications License: GPLv2+ URL: http://www.w1hkj.com/fldigi-distro/ Source0: http://www.w1hkj.com/fldigi-distro/%{name}-%{version}.tar.gz + # The package should be updated to current, patch re-diffed and send upstream! -Patch0: %{name}-gcc44.patch +# Commented out 07-16-2009 patch applied upstream 3.11.6 +# Patch0: %{name}-gcc44.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: hamlib-devel, fltk-devel, libjpeg-devel, libpng-devel -BuildRequires: portaudio-devel >= 19-4, libsndfile-devel , desktop-file-utils +BuildRequires: hamlib-devel +BuildRequires: fltk-devel +BuildRequires: libjpeg-devel +BuildRequires: libpng-devel +BuildRequires: portaudio-devel >= 19-4 +BuildRequires: libsndfile-devel +BuildRequires: desktop-file-utils BuildRequires: libsamplerate-devel %description @@ -24,7 +32,17 @@ GUI. %prep %setup -q -%patch0 +# %patch0 +# Remove executeable tag to quiet rpmlint +chmod -x src/include/jalocha/pj_struc.h +chmod -x src/include/jalocha/pj_fifo.h +chmod -x src/include/jalocha/pj_cmpx.h +chmod -x src/include/jalocha/pj_fft.h +chmod -x src/include/jalocha/pj_gray.h +chmod -x src/include/jalocha/pj_lowpass3.h +chmod -x src/include/jalocha/pj_fht.h +chmod -x src/olivia/olivia.cxx +chmod -x src/include/jalocha/pj_mfsk.h %build %configure @@ -48,15 +66,18 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING README %{_bindir}/* %{_datadir}/pixmaps/* +%{_mandir}/man1/%{name}.1.gz %attr(0644,root,root) %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 16 2009 Randall J. Berry 3.11.6-1 +- Upstream upgrade to 3.11.6 +- Remove fldigi-gcc44.patch (applied upstream) +- Man pages added upstream * Sat Apr 25 2009 Milos Jakubicek - 3.10-3 - Fix FTBFS: added fldigi-gcc44.patch - * Tue Feb 24 2009 Fedora Release Engineering - 3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - * Mon Jan 19 2009 Randall J Berry 'Dp67' 3.10-1 - New upstream release * Thu Dec 14 2008 Sindre Pedersen Bj??rdal 3.03-1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 20 Jan 2009 01:59:55 -0000 1.1 +++ import.log 16 Jul 2009 07:16:31 -0000 1.2 @@ -1 +1,2 @@ fldigi-3_10-1_fc10:HEAD:fldigi-3.10-1.fc10.src.rpm:1232416769 +fldigi-3_11_6-1_fc11:HEAD:fldigi-3.11.6-1.fc11.src.rpm:1247727524 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Jan 2009 01:59:55 -0000 1.8 +++ sources 16 Jul 2009 07:16:31 -0000 1.9 @@ -1 +1 @@ -eb8eb8ff6d750eadfaa8804998d733c2 fldigi-3.10.tar.gz +912ddc303ca54b9e41e8c271c6160bbc fldigi-3.11.6.tar.gz From dp67 at fedoraproject.org Thu Jul 16 07:18:37 2009 From: dp67 at fedoraproject.org (dp67) Date: Thu, 16 Jul 2009 07:18:37 +0000 (UTC) Subject: rpms/fldigi/F-11 .cvsignore,1.8,1.9 Message-ID: <20090716071837.F367711C0099@cvs1.fedora.phx.redhat.com> Author: dp67 Update of /cvs/pkgs/rpms/fldigi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20224 Modified Files: .cvsignore Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 20 Jan 2009 01:59:55 -0000 1.8 +++ .cvsignore 16 Jul 2009 07:18:07 -0000 1.9 @@ -1 +1 @@ -fldigi-3.10.tar.gz +fldigi-3.11.6.tar.gz From lmacken at fedoraproject.org Thu Jul 16 07:29:04 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Thu, 16 Jul 2009 07:29:04 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/F-10 python-repoze-who-plugins-sa.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716072904.6765411C0099@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22221 Modified Files: .cvsignore sources Added Files: python-repoze-who-plugins-sa.spec Log Message: Initial commit of python-repoze-who-plugins-sa to F-10 --- NEW FILE python-repoze-who-plugins-sa.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define _rcver rc1 Name: python-repoze-who-plugins-sa Version: 1.0 Release: 0.2.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.who.plugins.sa Source0: http://pypi.python.org/packages/source/r/repoze.who.plugins.sa/repoze.who.plugins.sa-%{version}%{_rcver}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-repoze-who BuildRequires: python-elixir python-sqlalchemy python-coverage python-nose Requires: python-repoze-who Requires: python-sqlalchemy %description This plugin provides one repoze.who authenticator which works with SQLAlchemy or Elixir-based models. %prep %setup -q -n repoze.who.plugins.sa-%{version}%{_rcver} %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, and python-repoze-who to the BuildRequires - Remove the setuptools patch * Tue Jan 06 2009 Luke Macken - 1.0-0.1.b2.r2909 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:33:34 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:28:33 -0000 1.2 @@ -0,0 +1 @@ +repoze.who.plugins.sa-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:33:34 -0000 1.1 +++ sources 16 Jul 2009 07:28:34 -0000 1.2 @@ -0,0 +1 @@ +41b603e42c90c2f7e1096045c01bba17 repoze.who.plugins.sa-1.0rc1.tar.gz From kwizart at fedoraproject.org Thu Jul 16 07:30:04 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Thu, 16 Jul 2009 07:30:04 +0000 (UTC) Subject: rpms/opencv/devel opencv-1.1pre1-automake.patch, NONE, 1.1 opencv.spec, 1.31, 1.32 Message-ID: <20090716073004.7ED0A11C0099@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/opencv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22485 Modified Files: opencv.spec Added Files: opencv-1.1pre1-automake.patch Log Message: - Fix FTBFS #511705 opencv-1.1pre1-automake.patch: --- NEW FILE opencv-1.1pre1-automake.patch --- diff -up opencv-1.1.0/samples/c/Makefile.am.automake opencv-1.1.0/samples/c/Makefile.am --- opencv-1.1.0/samples/c/Makefile.am.automake 2009-07-16 09:19:35.000000000 +0200 +++ opencv-1.1.0/samples/c/Makefile.am 2009-07-16 09:21:46.000000000 +0200 @@ -7,8 +7,8 @@ left08.jpg left09.jpg left11.jpg left12. right01.jpg right02.jpg right03.jpg right04.jpg right05.jpg right06.jpg right07.jpg \ right08.jpg right09.jpg right11.jpg right12.jpg right13.jpg right14.jpg \ stereo_calib.txt build_all.sh cvsample.dsp makefile.ms makefile.gnu \ -agaricus-lepiota.data letter-recognition.data bgfg_codebook.cpp bgfg_segm.cpp blobtrack.cpp camshiftdemo.c \ -contours.c convexhull.c camshiftdemo.c contours.c convert_cascade.c convexhull.c \ +agaricus-lepiota.data letter-recognition.data bgfg_codebook.cpp bgfg_segm.cpp blobtrack.cpp \ +camshiftdemo.c contours.c convert_cascade.c convexhull.c \ delaunay.c demhist.c dft.c distrans.c drawing.c edge.c facedetect.c \ facedetect.cmd ffilldemo.c find_obj.cpp fitellipse.c houghlines.c kalman.c kmeans.c image.cpp \ inpaint.cpp laplace.c letter_recog.cpp lkdemo.c minarea.c morphology.c motempl.c \ Index: opencv.spec =================================================================== RCS file: /cvs/pkgs/rpms/opencv/devel/opencv.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- opencv.spec 24 Apr 2009 11:05:05 -0000 1.31 +++ opencv.spec 16 Jul 2009 07:29:34 -0000 1.32 @@ -3,7 +3,7 @@ Name: opencv Version: 1.1.0 -Release: 0.1.pre1%{?dist}.1 +Release: 0.2.pre1%{?dist} Summary: Collection of algorithms for computer vision Group: Development/Libraries @@ -16,6 +16,7 @@ Patch0: opencv-1.0.0-gcc44.patch Patch1: opencv-1.1-nooptim.patch Patch2: opencv-1.1.0-pythondir.diff Patch3: opencv-1.1.0-conflicts.patch +Patch4: opencv-1.1pre1-automake.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool @@ -68,6 +69,7 @@ This package contains Python bindings fo %patch2 -p1 -b .pydir #autotools conflicts between AC_CONFIG_MACRO_DIR and AM_FLAGS %patch3 -p1 -b .conflicts +%patch4 -p1 -b .automake #Renew the autotools (and remove rpath). @@ -146,6 +148,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.2.pre1 +- Fix FTBFS #511705 + * Fri Apr 24 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.1.pre1 - Update to 1.1pre1 - Disable CXXFLAGS hardcoded optimization From lmacken at fedoraproject.org Thu Jul 16 07:33:39 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Thu, 16 Jul 2009 07:33:39 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/F-11 python-repoze-who-plugins-sa.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716073339.D14F811C0099@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23361 Modified Files: .cvsignore sources Added Files: python-repoze-who-plugins-sa.spec Log Message: Initial commit of python-repoze-who-plugins-sa to F-11 --- NEW FILE python-repoze-who-plugins-sa.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define _rcver rc1 Name: python-repoze-who-plugins-sa Version: 1.0 Release: 0.2.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.who.plugins.sa Source0: http://pypi.python.org/packages/source/r/repoze.who.plugins.sa/repoze.who.plugins.sa-%{version}%{_rcver}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-repoze-who BuildRequires: python-elixir python-sqlalchemy python-coverage python-nose Requires: python-repoze-who Requires: python-sqlalchemy %description This plugin provides one repoze.who authenticator which works with SQLAlchemy or Elixir-based models. %prep %setup -q -n repoze.who.plugins.sa-%{version}%{_rcver} %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, and python-repoze-who to the BuildRequires - Remove the setuptools patch * Tue Jan 06 2009 Luke Macken - 1.0-0.1.b2.r2909 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:33:34 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:33:09 -0000 1.2 @@ -0,0 +1 @@ +repoze.who.plugins.sa-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:33:34 -0000 1.1 +++ sources 16 Jul 2009 07:33:09 -0000 1.2 @@ -0,0 +1 @@ +41b603e42c90c2f7e1096045c01bba17 repoze.who.plugins.sa-1.0rc1.tar.gz From dp67 at fedoraproject.org Thu Jul 16 07:34:26 2009 From: dp67 at fedoraproject.org (dp67) Date: Thu, 16 Jul 2009 07:34:26 +0000 (UTC) Subject: rpms/fldigi/F-10 fldigi.spec,1.9,1.10 sources,1.8,1.9 Message-ID: <20090716073426.0C90711C0099@cvs1.fedora.phx.redhat.com> Author: dp67 Update of /cvs/pkgs/rpms/fldigi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23436 Modified Files: fldigi.spec sources Log Message: * Thu Jul 16 2009 Randall J. Berry 3.11.6-1 - Upstream upgrade to 3.11.6 - Remove fldigi-gcc44.patch (applied upstream) - Man pages added upstream Index: fldigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-10/fldigi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fldigi.spec 20 Jan 2009 02:14:20 -0000 1.9 +++ fldigi.spec 16 Jul 2009 07:33:55 -0000 1.10 @@ -1,5 +1,5 @@ Name: fldigi -Version: 3.10 +Version: 3.11.6 Release: 1%{?dist} Summary: Digital modem program for Linux @@ -7,10 +7,20 @@ Group: Applications/Communications License: GPLv2+ URL: http://www.w1hkj.com/fldigi-distro/ Source0: http://www.w1hkj.com/fldigi-distro/%{name}-%{version}.tar.gz + +# The package should be updated to current, patch re-diffed and send upstream! +# Commented out 07-16-2009 patch applied upstream 3.11.6 +# Patch0: %{name}-gcc44.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: hamlib-devel, fltk-devel, libjpeg-devel, libpng-devel -BuildRequires: portaudio-devel >= 19-4, libsndfile-devel , desktop-file-utils +BuildRequires: hamlib-devel +BuildRequires: fltk-devel +BuildRequires: libjpeg-devel +BuildRequires: libpng-devel +BuildRequires: portaudio-devel >= 19-4 +BuildRequires: libsndfile-devel +BuildRequires: desktop-file-utils BuildRequires: libsamplerate-devel %description @@ -22,10 +32,21 @@ GUI. %prep %setup -q +# %patch0 +# Remove executeable tag to quiet rpmlint +chmod -x src/include/jalocha/pj_struc.h +chmod -x src/include/jalocha/pj_fifo.h +chmod -x src/include/jalocha/pj_cmpx.h +chmod -x src/include/jalocha/pj_fft.h +chmod -x src/include/jalocha/pj_gray.h +chmod -x src/include/jalocha/pj_lowpass3.h +chmod -x src/include/jalocha/pj_fht.h +chmod -x src/olivia/olivia.cxx +chmod -x src/include/jalocha/pj_mfsk.h %build %configure -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" +make -k %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT @@ -45,9 +66,18 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING README %{_bindir}/* %{_datadir}/pixmaps/* +%{_mandir}/man1/%{name}.1.gz %attr(0644,root,root) %{_datadir}/applications/%{name}.desktop %changelog +* Thu Jul 16 2009 Randall J. Berry 3.11.6-1 +- Upstream upgrade to 3.11.6 +- Remove fldigi-gcc44.patch (applied upstream) +- Man pages added upstream +* Sat Apr 25 2009 Milos Jakubicek - 3.10-3 +- Fix FTBFS: added fldigi-gcc44.patch +* Tue Feb 24 2009 Fedora Release Engineering - 3.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Mon Jan 19 2009 Randall J Berry 'Dp67' 3.10-1 - New upstream release * Thu Dec 14 2008 Sindre Pedersen Bj??rdal 3.03-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Jan 2009 02:14:20 -0000 1.8 +++ sources 16 Jul 2009 07:33:55 -0000 1.9 @@ -1 +1 @@ -eb8eb8ff6d750eadfaa8804998d733c2 fldigi-3.10.tar.gz +912ddc303ca54b9e41e8c271c6160bbc fldigi-3.11.6.tar.gz From lmacken at fedoraproject.org Thu Jul 16 07:38:57 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Thu, 16 Jul 2009 07:38:57 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/EL-5 python-repoze-who-plugins-sa.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716073857.BB52B11C0099@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24408 Modified Files: .cvsignore sources Added Files: python-repoze-who-plugins-sa.spec Log Message: Initial commit of python-repoze-who-plugins-sa to EL-5 --- NEW FILE python-repoze-who-plugins-sa.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define _rcver rc1 Name: python-repoze-who-plugins-sa Version: 1.0 Release: 0.2.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.who.plugins.sa Source0: http://pypi.python.org/packages/source/r/repoze.who.plugins.sa/repoze.who.plugins.sa-%{version}%{_rcver}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-repoze-who BuildRequires: python-elixir python-sqlalchemy python-coverage python-nose Requires: python-repoze-who Requires: python-sqlalchemy %description This plugin provides one repoze.who authenticator which works with SQLAlchemy or Elixir-based models. %prep %setup -q -n repoze.who.plugins.sa-%{version}%{_rcver} %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT #%check #PYTHONPATH=$(pwd) nosetests %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, and python-repoze-who to the BuildRequires - Remove the setuptools patch * Tue Jan 06 2009 Luke Macken - 1.0-0.1.b2.r2909 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:33:34 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:38:27 -0000 1.2 @@ -0,0 +1 @@ +repoze.who.plugins.sa-1.0rc1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:33:34 -0000 1.1 +++ sources 16 Jul 2009 07:38:27 -0000 1.2 @@ -0,0 +1 @@ +41b603e42c90c2f7e1096045c01bba17 repoze.who.plugins.sa-1.0rc1.tar.gz From msuchy at fedoraproject.org Thu Jul 16 07:40:16 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Thu, 16 Jul 2009 07:40:16 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/devel import.log, NONE, 1.1 spacewalk-proxy-docs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716074016.5FA2511C0099@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24778/devel Modified Files: .cvsignore sources Added Files: import.log spacewalk-proxy-docs.spec Log Message: initial import of spacewalk-proxy-docs to devel branch --- NEW FILE import.log --- spacewalk-proxy-docs-0_6_2-1:HEAD:spacewalk-proxy-docs-0.6.2-1.src.rpm:1247729954 --- NEW FILE spacewalk-proxy-docs.spec --- Name: spacewalk-proxy-docs Summary: Spacewalk Proxy Server Documentation Group: Applications/Internet License: Open Publication URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 0.6.2 Release: 1%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Obsoletes: rhns-proxy-docs < 5.3.0 Provides: rhns-proxy-docs = 5.3.0 %description This package includes the installation/configuration guide, and whitepaper in support of an Spacewalk Proxy Server. Also included are the Client Configuration, Channel Management, and Enterprise User Reference guides. %prep %setup -q %build #nothing to do here %install rm -rf $RPM_BUILD_ROOT install -m 755 -d $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc *.pdf %doc LICENSE %doc squid.conf.sample # $Id: proxy.spec,v 1.290 2007/08/08 07:03:05 msuchy Exp $ %changelog * Wed May 20 2009 Miroslav Suchy 0.6.2-1 - clarify the license. It is Open Publication instead of GPLv2 * Thu May 14 2009 Miroslav Suchy 0.6.1-1 - 497892 - create access.log on rhel5 - point source0 to fedorahosted.org - provide versioned Provides: to Obsolete: - make rpmlint happy - change buildroot to recommended value - marking documentation files as %%doc * Tue Dec 9 2008 Michael Mraka 0.4.1-1 - fixed Obsoletes: rhns-* < 5.3.0 * Thu Aug 7 2008 Miroslav Suchy 0.1-2 - Rename to spacewalk-proxy-docs - clean up spec * Thu Apr 10 2008 Miroslav Suchy - Isolate from rhns-proxy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:52:06 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:39:45 -0000 1.2 @@ -0,0 +1 @@ +spacewalk-proxy-docs-0.6.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:52:06 -0000 1.1 +++ sources 16 Jul 2009 07:39:46 -0000 1.2 @@ -0,0 +1 @@ +d96744784b978406c7b7173995f7a100 spacewalk-proxy-docs-0.6.2.tar.gz From msuchy at fedoraproject.org Thu Jul 16 07:42:01 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Thu, 16 Jul 2009 07:42:01 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/F-11 import.log, NONE, 1.1 spacewalk-proxy-docs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716074201.7C74211C0099@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25235/F-11 Modified Files: .cvsignore sources Added Files: import.log spacewalk-proxy-docs.spec Log Message: initial import of spacewalk-proxy-docs to F-11 branch --- NEW FILE import.log --- spacewalk-proxy-docs-0_6_2-1:F-11:spacewalk-proxy-docs-0.6.2-1.src.rpm:1247730056 --- NEW FILE spacewalk-proxy-docs.spec --- Name: spacewalk-proxy-docs Summary: Spacewalk Proxy Server Documentation Group: Applications/Internet License: Open Publication URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 0.6.2 Release: 1%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Obsoletes: rhns-proxy-docs < 5.3.0 Provides: rhns-proxy-docs = 5.3.0 %description This package includes the installation/configuration guide, and whitepaper in support of an Spacewalk Proxy Server. Also included are the Client Configuration, Channel Management, and Enterprise User Reference guides. %prep %setup -q %build #nothing to do here %install rm -rf $RPM_BUILD_ROOT install -m 755 -d $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc *.pdf %doc LICENSE %doc squid.conf.sample # $Id: proxy.spec,v 1.290 2007/08/08 07:03:05 msuchy Exp $ %changelog * Wed May 20 2009 Miroslav Suchy 0.6.2-1 - clarify the license. It is Open Publication instead of GPLv2 * Thu May 14 2009 Miroslav Suchy 0.6.1-1 - 497892 - create access.log on rhel5 - point source0 to fedorahosted.org - provide versioned Provides: to Obsolete: - make rpmlint happy - change buildroot to recommended value - marking documentation files as %%doc * Tue Dec 9 2008 Michael Mraka 0.4.1-1 - fixed Obsoletes: rhns-* < 5.3.0 * Thu Aug 7 2008 Miroslav Suchy 0.1-2 - Rename to spacewalk-proxy-docs - clean up spec * Thu Apr 10 2008 Miroslav Suchy - Isolate from rhns-proxy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:52:06 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:41:30 -0000 1.2 @@ -0,0 +1 @@ +spacewalk-proxy-docs-0.6.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:52:06 -0000 1.1 +++ sources 16 Jul 2009 07:41:31 -0000 1.2 @@ -0,0 +1 @@ +d96744784b978406c7b7173995f7a100 spacewalk-proxy-docs-0.6.2.tar.gz From msuchy at fedoraproject.org Thu Jul 16 07:43:48 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Thu, 16 Jul 2009 07:43:48 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/EL-4 import.log, NONE, 1.1 spacewalk-proxy-docs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716074348.03F1911C0099@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25671/EL-4 Modified Files: .cvsignore sources Added Files: import.log spacewalk-proxy-docs.spec Log Message: initial import of spacewalk-proxy-docs to EL-4 branch --- NEW FILE import.log --- spacewalk-proxy-docs-0_6_2-1:EL-4:spacewalk-proxy-docs-0.6.2-1.src.rpm:1247730157 --- NEW FILE spacewalk-proxy-docs.spec --- Name: spacewalk-proxy-docs Summary: Spacewalk Proxy Server Documentation Group: Applications/Internet License: Open Publication URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 0.6.2 Release: 1%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Obsoletes: rhns-proxy-docs < 5.3.0 Provides: rhns-proxy-docs = 5.3.0 %description This package includes the installation/configuration guide, and whitepaper in support of an Spacewalk Proxy Server. Also included are the Client Configuration, Channel Management, and Enterprise User Reference guides. %prep %setup -q %build #nothing to do here %install rm -rf $RPM_BUILD_ROOT install -m 755 -d $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc *.pdf %doc LICENSE %doc squid.conf.sample # $Id: proxy.spec,v 1.290 2007/08/08 07:03:05 msuchy Exp $ %changelog * Wed May 20 2009 Miroslav Suchy 0.6.2-1 - clarify the license. It is Open Publication instead of GPLv2 * Thu May 14 2009 Miroslav Suchy 0.6.1-1 - 497892 - create access.log on rhel5 - point source0 to fedorahosted.org - provide versioned Provides: to Obsolete: - make rpmlint happy - change buildroot to recommended value - marking documentation files as %%doc * Tue Dec 9 2008 Michael Mraka 0.4.1-1 - fixed Obsoletes: rhns-* < 5.3.0 * Thu Aug 7 2008 Miroslav Suchy 0.1-2 - Rename to spacewalk-proxy-docs - clean up spec * Thu Apr 10 2008 Miroslav Suchy - Isolate from rhns-proxy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:52:06 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:43:17 -0000 1.2 @@ -0,0 +1 @@ +spacewalk-proxy-docs-0.6.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:52:06 -0000 1.1 +++ sources 16 Jul 2009 07:43:17 -0000 1.2 @@ -0,0 +1 @@ +d96744784b978406c7b7173995f7a100 spacewalk-proxy-docs-0.6.2.tar.gz From msuchy at fedoraproject.org Thu Jul 16 07:45:19 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Thu, 16 Jul 2009 07:45:19 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/EL-5 import.log, NONE, 1.1 spacewalk-proxy-docs.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716074519.C878311C0099@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26110/EL-5 Modified Files: .cvsignore sources Added Files: import.log spacewalk-proxy-docs.spec Log Message: initial import of spacewalk-proxy-docs to EL-5 branch --- NEW FILE import.log --- spacewalk-proxy-docs-0_6_2-1:EL-5:spacewalk-proxy-docs-0.6.2-1.src.rpm:1247730259 --- NEW FILE spacewalk-proxy-docs.spec --- Name: spacewalk-proxy-docs Summary: Spacewalk Proxy Server Documentation Group: Applications/Internet License: Open Publication URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 0.6.2 Release: 1%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Obsoletes: rhns-proxy-docs < 5.3.0 Provides: rhns-proxy-docs = 5.3.0 %description This package includes the installation/configuration guide, and whitepaper in support of an Spacewalk Proxy Server. Also included are the Client Configuration, Channel Management, and Enterprise User Reference guides. %prep %setup -q %build #nothing to do here %install rm -rf $RPM_BUILD_ROOT install -m 755 -d $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc *.pdf %doc LICENSE %doc squid.conf.sample # $Id: proxy.spec,v 1.290 2007/08/08 07:03:05 msuchy Exp $ %changelog * Wed May 20 2009 Miroslav Suchy 0.6.2-1 - clarify the license. It is Open Publication instead of GPLv2 * Thu May 14 2009 Miroslav Suchy 0.6.1-1 - 497892 - create access.log on rhel5 - point source0 to fedorahosted.org - provide versioned Provides: to Obsolete: - make rpmlint happy - change buildroot to recommended value - marking documentation files as %%doc * Tue Dec 9 2008 Michael Mraka 0.4.1-1 - fixed Obsoletes: rhns-* < 5.3.0 * Thu Aug 7 2008 Miroslav Suchy 0.1-2 - Rename to spacewalk-proxy-docs - clean up spec * Thu Apr 10 2008 Miroslav Suchy - Isolate from rhns-proxy Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:52:06 -0000 1.1 +++ .cvsignore 16 Jul 2009 07:44:49 -0000 1.2 @@ -0,0 +1 @@ +spacewalk-proxy-docs-0.6.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:52:06 -0000 1.1 +++ sources 16 Jul 2009 07:44:49 -0000 1.2 @@ -0,0 +1 @@ +d96744784b978406c7b7173995f7a100 spacewalk-proxy-docs-0.6.2.tar.gz From ankursinha at fedoraproject.org Thu Jul 16 07:59:01 2009 From: ankursinha at fedoraproject.org (Ankur Sinha) Date: Thu, 16 Jul 2009 07:59:01 +0000 (UTC) Subject: comps comps-f10.xml.in, 1.254, 1.255 comps-f11.xml.in, 1.264, 1.265 comps-f12.xml.in, 1.38, 1.39 Message-ID: <20090716075901.48B6C11C0099@cvs1.fedora.phx.redhat.com> Author: ankursinha Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28527 Modified Files: comps-f10.xml.in comps-f11.xml.in comps-f12.xml.in Log Message: * Thu Jul 16 2009 Ankur Sinha - added axel, conakry fonts and apa-new-athena-unicode-fonts to comps Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.254 retrieving revision 1.255 diff -u -p -r1.254 -r1.255 --- comps-f10.xml.in 4 Jul 2009 12:44:47 -0000 1.254 +++ comps-f10.xml.in 16 Jul 2009 07:58:28 -0000 1.255 @@ -1438,6 +1438,7 @@ VLGothic-fonts andika-fonts apanov-heuristica-fonts + apa-new-athena-unicode-fonts asana-math-fonts baekmuk-ttf-fonts-batang baekmuk-ttf-fonts-dotum @@ -1450,6 +1451,7 @@ charis-fonts chisholm-letterslaughing-fonts chisholm-to-be-continued-fonts + conakry-fonts cjkunifonts-ukai darkgarden-fonts dejavu-lgc-fonts @@ -4639,6 +4641,7 @@ abook archivemail argus + axel centerim cone ctorrent Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.264 retrieving revision 1.265 diff -u -p -r1.264 -r1.265 --- comps-f11.xml.in 6 Jul 2009 15:08:24 -0000 1.264 +++ comps-f11.xml.in 16 Jul 2009 07:58:29 -0000 1.265 @@ -1679,6 +1679,7 @@ allgeyer-musisync-fonts apanov-edrip-fonts apanov-heuristica-fonts + apa-new-athena-unicode-fonts aplus-fsf-KAPL-fonts asana-math-fonts baekmuk-ttf-batang-fonts @@ -1696,6 +1697,7 @@ chisholm-letterslaughing-fonts chisholm-to-be-continued-fonts cjkuni-ukai-fonts + conakry-fonts ctan-cm-lgc-roman-fonts ctan-cm-lgc-sans-fonts ctan-cm-lgc-typewriter-fonts @@ -5343,6 +5345,7 @@ abook archivemail argus + axel centerim cone ctorrent Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- comps-f12.xml.in 14 Jul 2009 16:31:05 -0000 1.38 +++ comps-f12.xml.in 16 Jul 2009 07:58:29 -0000 1.39 @@ -1779,6 +1779,7 @@ b allgeyer-musisync-fonts apanov-edrip-fonts apanov-heuristica-fonts + apa-new-athena-unicode-fonts aplus-fsf-KAPL-fonts asana-math-fonts baekmuk-ttf-batang-fonts @@ -1796,6 +1797,7 @@ b chisholm-letterslaughing-fonts chisholm-to-be-continued-fonts cjkuni-ukai-fonts + conakry-fonts ctan-cm-lgc-roman-fonts ctan-cm-lgc-sans-fonts ctan-cm-lgc-typewriter-fonts @@ -5447,6 +5449,7 @@ b abook archivemail argus + axel centerim cone ctorrent From dchen at fedoraproject.org Thu Jul 16 08:00:36 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 08:00:36 +0000 (UTC) Subject: rpms/ibus-table-array30/devel ibus-table-array30.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716080036.9FDD311C0099@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/ibus-table-array30/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29103/devel Modified Files: .cvsignore sources Added Files: ibus-table-array30.spec import.log Log Message: Initial import --- NEW FILE ibus-table-array30.spec --- Name: ibus-table-array30 Version: 1.2.0.20090715 Release: 1%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?????? ibus-table ?????????????????? Summary(zh_TW): ?????? ibus-table ?????????????????? License: GPLv2+ Group: System Environment/Libraries URL: http://github.com/definite/ibus-table-array30/tree/master Source0: http://cloud.github.com/downloads/definite/ibus-table-array30/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: ibus-table >= 1.1 BuildRequires: cmake >= 2.4 Requires: ibus-table >= 1.1 Requires(post): ibus-table >= 1.1 %description The Array 30 Chinese input method for ibus-table. It covers more than 70 thousands Chinese characters, which are listed in unicode 3.1, %description -l zh_CN ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %description -l zh_TW ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %prep %setup -q -n %{name}-%{version}-Source %build %cmake -DCMAKE_INSTALL_PREFIX='%{_usr}' make VERBOSE=1 C_DEFINES="$RPM_OPT_FLAGS" %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=%{buildroot} INSTALL="install -p" install %post ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/Array30.db %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README ChangeLog COPYING INSTALL %{_datadir}/ibus-table/tables/Array30.db %{_datadir}/ibus-table/icons/Array30.png %changelog * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. Revise spec file for package review [Bug 511196]. * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090714-1 Initial submit. --- NEW FILE import.log --- ibus-table-array30-1_2_0_20090715-1_fc11:HEAD:ibus-table-array30-1.2.0.20090715-1.fc11.src.rpm:1247731175 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:40:25 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:00:06 -0000 1.2 @@ -0,0 +1 @@ +ibus-table-array30-1.2.0.20090715-Source.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:40:26 -0000 1.1 +++ sources 16 Jul 2009 08:00:06 -0000 1.2 @@ -0,0 +1 @@ +6b641a1e921366ede4b7e2e665b455e8 ibus-table-array30-1.2.0.20090715-Source.tar.gz From dchen at fedoraproject.org Thu Jul 16 08:04:03 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 08:04:03 +0000 (UTC) Subject: rpms/ibus-table-array30/F-10 ibus-table-array30.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716080403.B340C11C0099@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/ibus-table-array30/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30091/F-10 Modified Files: .cvsignore sources Added Files: ibus-table-array30.spec import.log Log Message: Initial import --- NEW FILE ibus-table-array30.spec --- Name: ibus-table-array30 Version: 1.2.0.20090715 Release: 1%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?????? ibus-table ?????????????????? Summary(zh_TW): ?????? ibus-table ?????????????????? License: GPLv2+ Group: System Environment/Libraries URL: http://github.com/definite/ibus-table-array30/tree/master Source0: http://cloud.github.com/downloads/definite/ibus-table-array30/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: ibus-table >= 1.1 BuildRequires: cmake >= 2.4 Requires: ibus-table >= 1.1 Requires(post): ibus-table >= 1.1 %description The Array 30 Chinese input method for ibus-table. It covers more than 70 thousands Chinese characters, which are listed in unicode 3.1, %description -l zh_CN ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %description -l zh_TW ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %prep %setup -q -n %{name}-%{version}-Source %build %cmake -DCMAKE_INSTALL_PREFIX='%{_usr}' make VERBOSE=1 C_DEFINES="$RPM_OPT_FLAGS" %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=%{buildroot} INSTALL="install -p" install %post ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/Array30.db %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README ChangeLog COPYING INSTALL %{_datadir}/ibus-table/tables/Array30.db %{_datadir}/ibus-table/icons/Array30.png %changelog * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. Revise spec file for package review [Bug 511196]. * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090714-1 Initial submit. --- NEW FILE import.log --- ibus-table-array30-1_2_0_20090715-1_fc11:F-10:ibus-table-array30-1.2.0.20090715-1.fc11.src.rpm:1247731403 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:40:25 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:03:32 -0000 1.2 @@ -0,0 +1 @@ +ibus-table-array30-1.2.0.20090715-Source.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:40:26 -0000 1.1 +++ sources 16 Jul 2009 08:03:33 -0000 1.2 @@ -0,0 +1 @@ +6b641a1e921366ede4b7e2e665b455e8 ibus-table-array30-1.2.0.20090715-Source.tar.gz From caolanm at fedoraproject.org Thu Jul 16 08:11:22 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 16 Jul 2009 08:11:22 +0000 (UTC) Subject: rpms/mythes-hu/devel hu_dicts.oxt, NONE, 1.1 import.log, NONE, 1.1 mythes-hu.spec, NONE, 1.1 Message-ID: <20090716081122.7847111C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/mythes-hu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31579/devel Added Files: hu_dicts.oxt import.log mythes-hu.spec Log Message: --- NEW FILE hu_dicts.oxt --- PK :?q1.? ?????$#????t ?U.??_?oK?*&?] sVQNxi\_?????^??oM??~?;r??h??b??M???1Wl??7??? ?j??\???p?9,}????W??P?H? ??*?\??K+i8???j?!X#x.???$K?c)???w??C|~Q?3??3???4?|?A???hTb71 ??GQ?j??Znc???/>?X{KR????O?#?{?@?jq???U?????? o3Tg???????,H????o? ????) ? ???????????i[??? ??]-?;??u??m^$]?wan????"(?mi%??w!??????? A?y????t????9?"???z|?????kK?4?????}????&??????]??=??/^|!s?C?? c_??9=?????$???'t`??B?????S???????8?H ??0/nl?;??-lD?#)(JJP j?@N?H C ?????6X2??/Y??fy?,&???>??????:83??e????G?????Uas?c?)??4Q?m3?'??(????/3N???|?3??9K??????????Mk?ou??Y???????G?????}?????rR&p???h?H?r? ???o~ -+??U?v"??7??W?????mm? ??g??z?Z???&???Z?dR?r??mVS?????c?O??E3? ??6? ??T???4k?????h????u?mWFA.T,??????x? ?gG???ya?K?U$?*?h?A4e??????'{?Q?????7??.??h Qc??t???+(?_?8????&4?noTf0?"???4???n??'????????W??h;????m?s?.- ?O? ?L???i?????1^????]3p=>?B ?>????=? ??????????????6 ?=??i???Z?@`O?h?tc?]??j?#????!?????1? ??g?o?eys??O%Z2H? -)_? ??FM??r[*??@e??8?,]^? ????t[*?c?~+?&(????A4D ?7?6???yk??/??] ???>)?wE??\y??4??_@?%2nK??m?(-??poxC????? ?"V??F[? ? ???C ?A?9?2:?x?h= ?_?{????^???N?p?]??' ? ?!??  9???_??????;????[?T???/???~}???????dxm?3? E?~? ?G+??????mtOCu??b:2?k$]LM+???{???????ytKcB????7y?} ??6T??_+?dIh??[?????B?SF[I*%?nju?Pvm????7??k?E????S? @C)a???rF?fR?|??W)y?4AI???m?????,t/?:lw5n??dj?+p?????"C??????G?H??"??}]* ?ohFhK??m?:????? ?j]?q???p??|K?g?m????J??7/?????=????????a@?R?BK???Z?x??F?D?????L?oc??W???j???V???????|?????/-??(?????7???o????bJYPf??????a:O(???[%*?$ ?????x???4??;????j*e??7w??xc??C??t?p)?2F?-??????]???vw^?s??7?A????????8??g2/ig;?????r?d??U??? ??'? O??O????????pf????*P#??Il?M??hk ?? Y?W i2?@??U???`??10??????M???????)???H ???N?Q??????F:G????!#?_/??????,?' Xj?M 0????????h;?^?????[?,??Br $u??j??S>??D?j????o??l?6?UZ??R[????? `E???s??Fq???5?b?i$?DR??Z?^?cL??? ]m?&???? ?????J`??> ?? 85??P? ?.?%Y?CX????1?4? I"?Ma????1???????`?l?F??`?]??0aj?????j(??????a|???n ?/?[m????Bc?-4?????l?q3[h??-4?8[h\???U[h\???&[hl???` ?u[?E?1r?d??z?,???(2??$?????c*^??D????bb??#6??z ?? ?&???z? ?????????\?j[??.??????J??J%Uk??x.?h*?L??K??C??"??B??T?u6:? E??D?v V???TX9? ?O???)\??)????.???0 ?42? ????;?????@w????(?+?29q?q_????r???*5Y???????l?m?K@????????????u1?:??`5??? Yt???,?,5z?Ba????(( ?uHk.?8ME???4A^D[?????m/{@??a??:??] {r?LM?\???5-??ReKt@\??u??0?j:???Bt?^+? k7T???~?&?q-??;??_=??|???? ???fa???? +???Y???????'-???2K?)?????7 at 4??????nC??Ab^???:kg????a?????Y1?MZ???|$5)?Z]?????w0??`*}}?u?`: cy?zIP??b? ??lxk??e/s??HBW=???R???AJ????I ? ??t???M????}???;??~????5??l?']?#n{?K)2?1KE}??ui?????p?Fi?J#!O?\?d??A&??3?????]??%??d?",???'Tj> %?f?'5*??(???o??LWjW??[??^?Mo7?l+?f?e??I??????({N????)?F??E?I????T??f$I??$???L?????4 ???6?{???p?0????????????? ?V^?#^FO}???dA6u?<-?{?x8???????:?3?i!?F?q??JI ?f???"^? ?i????F?"o?sy?W??7 ???r2????a Wz?+???b???J?pM? ?????????N8/?F??p????????a?s?7m??E  8?Aj?L?J ?T??e(??L Ox?E?L?8?C!?z\0?xR? ,?*Q%&?????I?o???? _?P?nm! E???'??>>S'?a?D???h?k??w??u??p?62????????Y?V?J1b???`?H^?2h??L?mF?y?(???b??v8 ???????f?bDub??(D? ?%a?f??t?d\M????/????RaV4$???+{??k??mu???M????&D?@?k???????+r??N???%???%???E?????R-9???d???@?Bk?WQJMI???R??4@?X?V???Y??p.B? ???????Ss(???(kj?{Stt?nC???r?;???P?ze?[??.){]R??P?z??[????8UY W??D?)????A?0o$??????????p;??S??c??(???(?Z?(??O1?/x?X?g??c?ac1???|?8?0?????b??? 4S?)?X?g?gO??R??x?y[U????x?0?Y????8 ]t?l?| |?????VN?)?l?????? 5???2???EI?I?R?:B??1`?? ?p?J-?? %(?;t??.??!;???l?@????9??"??/?????????D??(@????b>h?V1??????????!}1?E?)???? O?#?`?????Q0i?_?J?R???EPg??L?H~?kr??a37?P~?????? '?5??????]?? M?(??"??- ?U?r?`3????`???T?~eT?_ETs)??1Q?????8???i???? dP??l??d?L*??@W S??? U?` C?OD? T?T*K|?@??4a?-L ?????T u??q??7 l=Y|??R?k?a????;5???d????????[?????n????9??O??4(?5 ??:k?ih??(??????n?[?)?Z???\???m??u>n?`_??hQ?y?&??5x;k???wg?]????n??}?r?L??z?????wv?#z???w????hD?;)\'??`0w?|?kO?qx??K? ??!?|/??F????2?Q?/*C?'?>?ldX?????3b???[?????????R:g?p?#?c????M????S:?e??\iTeU??Uq?f??@?$?.??/?$??xLo????6?\Gp?.???z??q???f ??? o??X??@?;!??s?&?? < ?`^s?.???wL?"~??$?:??k?&?U?D?????u?5?EgXMzcF??i??O ?J?5????????p??[??1??@?? ? |?????"v?q[?????g?]?@V??/a??Ps?1?-?)?^1X?6g`?muf???m?%T?????2,n?A$)?C{?8??wOvM?? _?4?8? ???t???aL?1$ v??????@:?q?'HL +uj?#uj+???*?Pt?X@??0o??f?4?J!q?a3q?FVE-*.OG?x?p?E??????u??N??u?oR#?????:RIh?8??I? ?C???PX?6??????!AJ?b?( ??P<3?? ??#C?xc4??ScOB??V ?L ?^???2:V.?@B?co?i???td???7l??,??????=?~?T????D??h???@8???\??_Kf?????E??_?N????"x????;V?'????d;S^np??????w???BHz6~F1H?L????i?d??\ ?0??M#I}???X?I?g???=?C??G? ??2??>??|?????0??J?z\,? ??8?????X?,????rY??g$?S%??8??> h???????m? ??1)j???=)?? ,?@&?Bmi?6W??om?????0xLNw???r1S?}???????????? ??tFF?i???L???c?BO2????!?:??g???bX0?A?x6?.cd? ????*??6??3?u??L?b??e???)% 3%HS?!aU ???[?1?fD??Y*sK??G??y?+a$??_K?????/?l?xh?H2?,R%j9?Z ??$??0FKp2?Ij??* ????std?p8? ?M? ?o???|?V?Z????[??i?/????q?? #??:??????v????QJ,"??%?$?)??k????g???Y??&????xx???b?p???g???9? I?u??&DC???n??? n?M?)?9???1#u?8Q?@? ^-L2C??????&6 ??-x %???@^K???/x %V? F??,??^5??\??,4?g?)*?5H)?^??^[??,B?)?bh-?X!???7????#?G????2????"b???'??? ??,?\Q ?\??lSY?r?b??dM!^????????8??Q\??S????? 5??Y'<:A?? ??N?v?`?N??> ??D??+??,?#e???d??;??h ???????b4?????? ?F?>,7??2?d??E ??AZ?a?#?)??HAmG ??0?2?#??|?J??sH?i??u?? ?`???L9????????xn~=d.>?=_??????????X?Q???2???,??b?A> ';B?\?????????_????x!?X?{?O[XV?????J(???|????N??!????\3??Ar??!u}+?x???cP? e ?_??g~???+???},??.IA?VF????W?}??B?6r??,h??(?p???a??????????4 ??.nV?????u?eB??$?ZkM??qw?e?1?j?????:e*??C$T??IZ??D?2J?DL? V??']?????{???????>%??????NX9 q?x?U??????B?$I?e[kh?W?7???K???H??vn hy?VG+?? ?^??????h?QK???????B???"???3?Y?V??+??? &k?L?O??Z2 ?"5\?Y??A`H,???#&B?,??????Wn??s????<?? :???[K \da.GR92?#?H?J?hj???:?ZR????@n??"???4S?A? ?G?W"h?:?6??50?m??{|2u???Sz ?$/??'+Q&=3?Q?sB?U???0>{r094??A0???)??s:?-f ????>?D???T?'GM/u?x?????v???J'KD53??C???????*?? R???*V?9hjCr&yR4?G1?Z'%P????3???u? Z????????R???X? k???F??????y??"]??????F????Bp:???fK!??g?'??w ?y$?J?$=&?????r??E??/? ??\?_??t_?? ???KSF??tM\????4?:E4??e??3?k?=)/??????u?qlYd??4???$???W) ?U???*?*??YSX?]??I!n????????X??t?/?X?|?u??O?BP??K?NDh?C??@??Z????ql??4 ?????|??[???Tz????? ???(Jt9??^?? ?? w??-/??45$b?L[?|???|!?N?"?l?!??? 0??g.??A??Y4 ???u??? ??|???;???\E;?a??u?h???i?|?????????T??v GJ?'.??????l?7y?L??????h????~? u??n???u$H?0h?U???E?i:?????=(?w???a?????rO????? ???-}z???H?<Z???x&?P?q??njy<E@??.t???B???gW1???cx@??[s?h?????#i[????5???8???Kch????Rw?[?7xEE??????~a??????????J???~ ??w??? ???z?r?:?'7??,?v???^?????_mh?>?c???)}1?R?o+fg?????s????IZc?YGW?d??RO??#GV??S@????????.?S+kD?{?hH+g?? y???? Hk?(,D?M??_K?.??zdh?f?v?#?;?O]??.Vg??D??3?hV??0TJ??????????????m??N ??t??rj???N\T?k???2zY??_kSk????lS?(?w???Pz???Z.??F???xy??Kl<>??.?GM???=S9lp????}j?]?f?????8>n???? ?/??b??WF?Ys???Y9?4????? <$p??????t|??????E????????.??>S???{?~??2 :S?? =??:V'*????????7;3w?DI?-??e?r,&?%?I ??O???R???Pg@????=?P?+???K???U?!???]????v???^? 2???\???SW?n????W????v?b-???Y???g?W#???#?2?K-7?5F???????b??y??d???1?dv{?$Y???c*W????k*u???I?Ot?? a????-?l??.?"?T???E?????8)a?w?9?(m???F??2????0?1???D ???VSU?!Kf.?z???????)F????Vj2y?]?EyH?plq??9j&??i?[ Y???K1L?Y??M?????????????1u???w:?T ?pYk? ??bf?\???????? ??|G5?2??Caz? ?Z ?N?W ?A?I"???2u? ?)fq?{s??gy?`S3?????.X??$K??$?c5?d??c?s+???r8^P?Q}??g!???sO?d?^??L\??@P7??? iuU.$?????6?N?^;???l6-?3???0??k????????M[?<>?????a?En?Y?.A?Y???Z???94??tH??v???k?}???lP???????V?,q??Y\??`??W??A6+K}??Bu?????gU?X???)?? ?\??????????C:?*t ?? #2?%qx?????aGi!???w:?f?$??n?J??C?h?/??Vg4??w!+???p???XM#?-BA?? ???Y?M}X?Nsa??J???4??#U?y??0?Y??Y????,? ????F?%i???Q?"????????,+??^????j?k??????0(?Yqp'\??9?VxPnS???hT?jx???v??????? 7??u???????zm?i??i??hV????` g? ??~??????H8???????`??@???JD?V??? 3V?????{??Q??dy&??1??rG???????pQ?e?r!??2B??(?P? #`s+?Nz??mN?E??? ??p??PW'??????mDaG?7????x???y???^?q??r?U???vP@?~?c?wW??Q?L?l???W???L6?/??????X??? ?D?#:??}?p????U?L\ru a?J?hS`?I?0M????i???Y?l???~??p?j@???????7\g?@ ?2???`?`?J'??????u???,???a??G?????K3\?\JX???????-????o.??]???L??=-?????yP{ ?l?0??i0,?!Z??=Y????"!)??{2??l??3B?? $)?????`??????:?tm:? p:_y\???@???2??f? ????NcCVz1{P?#?BT? ??3?y>???H???rF?????????#?7???Iy0`?+??p /???a?@????G???2(B< ???U$??????Im?@?$e0??q???2?Ceq??? ,?S$???S?@?x?T$m??&r.'???R?I??dn?x?O?J/SA8!)e)4!(? 9 k}\?{[?d??;?]?n?D?y????x????oP??J^g~f???????D?c???9m? *??Dlxh???h?v?N???Ff??????|}???x?D?X???+?H?????'V# ???(? ?F8??b)*v?2??&????o?S????T+??%K?25?????? #??K{B?F?p3?dR?d'8RCP?f'?2;??2>?????>?ty"f?>.n??XM?9????f????d?B?.GS<}9?????K?N@/?8$ ??P?^g???z`#a????????kY?&?????"?z??? ???1'-????~????[?????????;???>?????? \F??tt7p{[? 1.?EU?????::?-??Js??*p?q?% ??l?bS<{?`????? ?[l???g????R?4??5??d??1?G?N???J??8?|??K?I??g7???z??I)?????w ?R?]/? ?!??f??tZ?I?B??s5??;?Nw??1??{?a-W?qg??U\N?H????L?`??9?l???z"??p??!H??7??Ay?q???[E??Ho????n?_sK?^Dufh ?;???N?+?;{?3???b?&?D? ^????P1*/P?1?"c^?????y???1?G?9^?,??I Z?.?Nz?y?Y$.vhY9?z???p?K~)1j?[??M? ?:???D8???8o?_?#Qi????ri&???%?p?v??%????V>sI!*?V???? ?` ?&???????v_???t?,?G9?[ ?z*?Q?$?%Z?u??T?D?????u??V??(X}???k?W?\3??5??4*? #d??\?]~????y?cG??c??M???????"??C??7??Y???dM+R?I???Ym??9????z?d??;??;??8g>??e ???_0e??)?w??w??"/H?E???/oOO?k???????0????j??6 ? 3j 3??gt>?R?Q?FIW????????uO??i??{j&:?????N?B|?o????>?a{^W?n8l?????=??#?????Q+u??a???c??4M???V???jS&^m?|???oJ?L???\?[?&?[????3?o??3 ?V9??G?mU???h???w?E?h?h?(0?q?s?]? ?{???i?w0Y????4?O??2??9cA?????sg:?G9rH9?H??u*??}?.J??????d???rH??t????B*$??h?e?c?zrg??r?B??3??#?y???y???:m?4s ?7o, ?5??sf ?o\?2????5??va??8?\??\??X?L?y?!??Y/$f}??kB???????????? ??2oO:hVsT??? j?????"g?t#?2??:?!???????b??Jg`S!?[??$??L?D?os??u?g?0???''?????>?o???C??OZ????M?(?:???Umb??g?? ||?Y?X?le???@B?$N?%??X?[??3??)/???K?a ?T^ ??-?????2h=*??_C??;?s??[???v?+>?#??BM%0X????W??}?" ??pO??6 ?N?)?R t?RB?_8?;?p??jRU?b????RU%?4???????KT??6???????T3??V?`????????? ????E?c?5???K??1??{z??6?????v?Q{:p???W?? ??i?}??????J?Ph??? ??O?]Y]^;??x???4??g????U??ahh???? ??? ??G??l???K?P??P%'?rf_?zB??4??u??l???x??9 ??????????_?????z}?????????????? U ?N???K??{d???????u???66? ??????`Cm ????????P.%W?3EMLK?????:*????d???k?%?w???? ?_??bW ?,;?#???+X?P??R?AI?W?? *7(????m??=?EV??;?9 R?6?6I??8~????56,?O^)j ??85?g?=??FDs??S???_?k????nwy?=c)G?7???Y8???????i????????;??.???l?6???=???g?y?N?x?D?s????Y?????????????I?b?_ e? ,?5??gLR???c??8Q?f????????Hv???? ????@?u??a|???wOO?#???????\ ig?g?D??}?????{V?H]8???^???y?i???VNY??3?K?}?"?Vz-D?3??p ?[??Qa??0b?(?H/X=?~|???_??????? vfX?2d?????I??J??I??@{5???f?|Ixa???`?$???R ?? @?K?qDD????? ??|Hs!???K??(??ZgK???:?oi|???N?-?????OE?G<-z??*?? ??0???E?g>?d???@;??????G?7L?Q?Nf ?X???J?2K???P.??4?]?*o?-9? ?~???/?H??a5?Zl?K????????+?{???\??R???=M??  ?81???+?9pk?t???j??pe"k???&cF58a???se?T?]"n??r ????HP?T.? ??`???h???h7??H?(?????WF??N?t???\? Hg?p??? -VVT;??Zu1*?o??x???+?x?&?T ??8Nm;O?wm???????s ???????,?.??M8???/:RJ????lRKy?'??w??#????%kR^%k?g?x?d?{t {??[??z???????????????5m(? ????????????A?m??ik??)???2`?8?s??.?w*?n7Y 3?He{A)*??h?P?cx??+????:f?Q?@P?+`?zU?D?bY??ST*?32?R?2,?? OG??? KG&???td:?JG???%O???4`I?)? ??+???????????PH%?????p$?^??4?C?r????lL?\W:??5??:=???`?$??ftKO?pw???_???M???????m3??C??? ?q????_??o????v??????a3???o?2????is|??? ? ?_?*????: }???\?#?? C??#?U0xpj??L??Qr???j?^?? ???3u?7?-kwm???c????_1?8??DQc??=aW?@hL?J???????e???K??u???l\????lc? _?}??????7:b?q?7???p]{@??AhT{?_??K????u? ??[???Z!?E-???e?6N???k???%-??M?BZ??&3??g??? j??????Am}3?m? j?8??&????gP???????1??:fP[? j??Amo1????%??>????:?K???]y?!????????L?=??lO?Yt +?????w?l???[:}?4????W????|e??u?Xr?A??c??F???d _$m?"i?Yr???E??q [?9j? Z???)??RL)???w???K?.6????(??|??????? v?(?oFo?kF={f4n????????2?x???n??????|??????k??:??? v?(?7F?~????D?Z?)2?c3]s\?????YfV??T?e ????#??{n????????????I_??? ?? ?'???k??+???4'???!??B3w?o????m????I/?c??????@=????b??+?^H?>??Q[??[???? m?#?[?s??s?????ZW??k??l8 y?[Hn?aK?*?zx?}??A)L????4?????h??d~??xnA>???x?![?|U????j_????W??*E??????7??aAQ??W??S?????F??kr;Kb??w?~?4b??T???????"??:?m???$?%?>U?U??h|S?L???o??h??5]?5%zUG???h;??????CL??gC?i//????S????k??=f?,z7?i?Z)????????,"?????6??2?=?qxV??a??:?h??On??[1?T????1W????{ R$?[??X???VQ??? ???Z ????n??2???H???Iw????bgh??Z??;?w?\???#:?y?d???? ?[???S??{??%????'????xp?,n??/?C??m? R??T?l?u?#?Y4X~????5?$?R$?`?S;>?#?? ?U,??m??gTF$*??o??:?d?????7"??? ?".+???8% -???s???,???L??oH+????%)???Xw???A????M??!?%e &???$?I' wV?????\{8]?u????B |K????M=0?=???&_?5?M?-/???|-^ ?IG`?????`??a???????r??b?b\,??X?d b??3+?yz6^R???aE9?????? +????? *V?L???f????????h_?=????????b?=4????3?dK????I??G??%7O?????f+???????/????3??X`hn?????????sw?AA???r.iJJ?R?_#?p??? ??8A?? ? 7{?2???6?aGZ??Qi2h>?O 4K!????Tb[Rn?O'??}??./}Mr??H??M^^?M?Q??????e?t???p?c??T????f]??W?1???8&?6?y> uf??/W???Q??Rp???d??C???DK?t?X?s"?????????*????}??@ ????_I:$8?o???????$?;?,?9???_??e??,_???????????????Z?????Z?????34_???k??|?`h?v?w%+???t?2??L%+???R?' OSB?"S$?????R#?y?M???THThThT?YP!?????R?WJ?Jj_?)???k?SX????O???W_??????2????D|??#????B?)s?h???1_M"??k?Z??Y??Z???n_??T?\?B E?X?Z???/q??.?[&9f? ??G??e??ef?2?8??/? ????cx???????~???????????yG?pG?????+??O,V???)Opuy?%? ??k???.??'x?Mv4?????E9????* -u?Ge?Tm??[??4#??.????????(??|?FYAb@?'??4???y??O?CTG????????)/o'O'%???3{:)??????>Vo??H??7?bMg?r?NK????2?-%????? ;?R????0??????Z?DN?\)????b l?X?^??9?~?????:?o?9?+I2?Y????????i_q?t??1fi?|q4Gz??;?;?? ?b?H???#!?5:?b?;????[;???l??N? R?wd?d??X#f?/8? ????1p????9???3o???J??rH?2V??@c?? \?3???m??B?h??M? ????'??i??4/???OOm?j? +w??Z ???y{7? CW[9????v'J,?NT?Z??5?^&k??????C??2,?7?????)?0???~x?a??QQc?????????? "??t??Tu"?,5WO?A??t????????1m5x????g?NG??*=_?d b???x`?)?@??? #H?????BI?U?EB v?`??Hf?? ????????0?????] ?? ?N?19Q/??\?&?Ie????[_  ?????q??e!!?? t#?z??j J?VN Q??1?5pGX?VpcW "?j? ? ?B?????&"??ro?F?6GC?F_r?$$????~)c???/eDb+??"?yU???8???ZgT???O????j??5[??T??!??z??u??+?O$???xg?Cbt??CXt>2?U,6??9??E*?%(s??????"?M z?aI?/fD?HC?0????f}??ty ???$6?????E??X??e?????$l?Y???????|??>'?? 7?$-??-.pH???|^????g?p?????b3X[?S?N??e?-?-H)|M:4%V?? L?????Nh>????-4?N?QO{???Iz?????Nd??K??_?e?????s???????:H??????$???H?$x???w ???C2VeQ?4??}??0??????g=x??1?,?"_??L???kz?~Dj?}????KL??r?? ???vm??R???` ???8`?>?=???????????;Dv?????"mA?r?5h?a?j.??}??S???_^r?b(?%???????/'BYV?????&p??w?vD?O!?h?o? ? $??????N?1?????????r????U??(?\z?0?>Ic? ?8?h?ZN?M? "g?????R?????D?c D?"?E???????`&???20?.)F??3X7?)?S?gNY?F?>?? _?]PN??Z???J2?5z???d2Jl?L-3?dJZ?QF.9??????9???l???O?D??Unuz???2??K???W?^Z????4OOzr??IO?<-??r?]???gK>??<=c?y???Y??{?O}?Ma????M??a?r ???[? ?P?)J???$-F? >??*?????xX?"?d????X??????? R?P?|??H(???#???5r??xy+?????F[??????f,MYa?? .ZA?w????? w??N?nQ?[???N?x"?v"?tb????'?w?????D?h?~3{2101??????k???D?V?z*Q????M ???? ?Bo????5`?SK??;??7w?+?????????|h+tIi '? ??8?????oDv?j??X??i? ?S?dYb????????h??e??n U??E??t?T?m(?(?u?? ??2:eC J??-?'1????V]??o?i??]k'@??9???Ni?ktS??hy?er??t?O???<? j??????S??s???@?~?Z?? ?G??T??>WFH?%???(g2Y?????"U?@???m????Y? ??w?0w??D??P???S??? ??Aa^G????aD???*????a??x?3?)?) ''_v????V,?????6mGyTc?O?Y?lL8d?*?`????(FT "?\,?cu?$e7e*ZZ9???][J???IE?]??51?n?}?d???6?}?%?>I~J? W!???_/M????w???????m???}?S???]??+5?#???p+?7?C~u ?a?1!^3??r??|?_{????6?^~???@3Ke?8??4v???NA???_??r?????)??o???????E??6v?Y?????????|?i/????E}?Kj??n???E?7F? o1?????}x??>????Y|?4???5 ?%i?aUD?@pg?????]?b !q+1Z?,Vb%Q??????X?Y?D??K???|???9?!???4?{O??????q$J?D??4????????cT\?.r?Z*?zi N???nrV?e?'\^???l?c ???q?????c????????J?u??e??E????l??=??h tb??WG??'1C???Q???????8*?\??????0G3] ?."????? ??o?? ??ow???)?????oJ??>`Q?!0???,W?c?o?W???????n? f??f???s `?lcw{Q??[6w?5??R"?K? OlmmX6??]????e???d????D_?i?????Ajss'??1?(?F?=z??Bo?U???*??YU+?j???QV??SKUq?????X<???$;=??ublS?r??[B#?R5E_??z??????????????Y???? ??+??>?~????M3T?Cp\???w?q+?+???N_??5N?,???>?8?? ??zvl ??k 4y)?Z+Y?????????`?e???j[?Yl?????}l?:?2????=2^???h?{????c???uUc???Qx?4?AN?I????b?2?-Jg-2?O??a/?Pg#N4%)???aA?????7??[???q;D?????Pc[%S??b'?\?n??D?m??X??%??t*??>??6N??=?p Y??l???_~????H????W?l???} 2??[???dc????)?1gY?YL/?fy??W?sms?(?????????[??> ZU???-t|????? ?]?b?!~??a??`?x-???????????X???o??,?J??Yt?W?d?w???G?^?C??H????hU?SVa????^?%??e?!6y??0?Q%I??g?\A? h5??wOO?dG??7?????????????\????*?????? ????n]M???m???-;????z?%?#{??????:??N?Jy?,F&E??I??WFR????? ???? ?dnK???;?i??f??????$???$ *?V??m?\uV?}??U???????K?g(?O-?????"????? n??3 ???'???, ????O??O?=7?XN??W?Xxs;%(t?n?t??? g??E`G?????x? /??m??`?=$n?A??X`??P?08??bX??*5?,?a???U??bB? QSL??N?f?? ???5?????g??,]??????P}}????j?-?6?o?!???Q4uD,W?;SS\?sB????iN???r/k?B?? ?w??.??v[??d?oT??????&m [...7368 lines suppressed...] ? ??pii???f??E)??A????R?{??/??[h??b??5??\s??? )n?(=6_$???w??1??1? ????^??1?*1p?#????$??^??!?sb????w??$[??'?P?A?????P??/Q3?u?T???oE?I??>;???gB????)f??e??????j???Yf ??^?????????????G?[=?w? ????T`?[?4?????n?? ???-?4 ??I???;$?U??1??7p(? c????1?r???`??=x?t??? ???]r?t;7???Z Wp????????~X?d(???????N??`R[????|?@?????FP???j? ?_??b@r1>????!???3Gn??;!?%D-???u? ?b??oi????????ce"8d?Ab?!w??????Q??????y? 8?2??^?5?6???}T#H??&?)?.k+?=?I? ^?? ????????[|3?P?c?w?l6#???Z?/*b?W ?????j?7?u??????G?{l???????g"= "[=ka????& 0????I????o?Zd??C??j??k?;???P??|B?=???!W???? (9???3???T`a?w?,?i?w?b+Q?@n?u*??????(m??c?=????? ?)???!/j?'?^?? ?uF??i??*<+? ????}? y`???e=??6?:???J3?#??"`???h???Lv#?h3@??5???????6g,???.?L??z0 ???????@Er?MWZ5"?8J??????/?????b????O ???T!??t?c"??6p1??8?1?i{`????/@?1?(???????A??bug???(???????:?FGI??9=-???????=??;?4??/+?? ?u??N\mH??[???J??q[??h5?"X".?w+??????d???B?H?F????/?z?*?f?0Ex????i???/?G'??^N?O??M4??A?B`??: ??8?Q????>?G??S?Y?[?L?*?jh{???fI????? ;??????.Du7?H?V??G?'z?T???L{??q?[??ym?R?Qz?O??????M??2??;a???-U0??g ?????V?>u??m}?ATmS?3?!? l?< ?a?k?<,N???????q?~[D??{OHb?D??v]????j?-o???DO????????-??O?????E???N?G???a?0?i??4'U??t????W?bEiI[????E??????/??F?7???? ???@Zk7?????S??w?r???o?w?*') V?? =??CS??!?\?D??Xr??:t????M?q?????x??x?e ????x&?-??r?@?????t ??/??'*`sG???????????5?j?#|?)a????*\6???M?1?????_??KRN7???1w??m?[w????mk????!`???????3????.?????JD ~?g??????m3??S???sH?N???=??????4?@,u??k???;H?n?~b7dEh?B~5??P??o>?\4"???w???m?????d&??wr?I??\E ?oX?c?????C???J?v`???V?PQZ?p IaO?i?f??n??V*=cx???? ?p???????^I?x????"u??O?w?g5&?????8A?j??*?Kn?Byb??k v???z?[%? rQi]? ?s+????Y?? ??9???W??????????s???m??? |? ?Mu??f &???.??:=?F*? ?sG?zo?eA'??y???+?T???O??]????I/?<+?4;??`:x;??&???X????!.??b?Kb?? x?l7^??N?Lm???i?j??!??#?t???i+u?A??FQ'?{?2???????~?\q??8??_?Ga"?????`?&U??-???a#? ?? )?????????&???U??sCT?????076???z???N?????? ?8??_??s??x>?.8???3??? ?_2??? w???????Lv7/s?K??=3??B????r??????? ?????\Rs?? ???KOw???????V??]????V????tXf 5V???????w%??7?s?F4o?g?? ??g?(?G????37?Gin?/}M???s?~?$??????.?S???:?s?}?~?#???R @bD4j?[????H??R?6???t8B???V|??y?k??????*?`O?-?^??????U???.?! 0???? ! \7^[?W????O??\?)???tZ?Q?aC?X?Z?? #!??s%???A??>???:????????M???4?T??0]?b????H???%??5yD+?5v?N?lf)G?'??I?Nhiy?ax?Lm^???:6?? ???dd??????3?M?Fr??6??7~?e x??;??/?1??X?b ? ???W}?????6???????r?Z?=3?I????W??????I:b???????s?&mN+?WQ?M???'??^IO????}?? {r8?c^m???^?^??8'YX???_M?????%& ??????OZ????%?????i??b???!XM????3Wcltf???~??*????o?F?w?G???b~??I!??X??-?6?O?^+??yz?A????????????????o.?=l????k?A???~:{??%???n}????\??Q2]%t?%??X?%?$?Pg %???????????(????*?l?B\?\A?'?9?3!????vb;>????Qj?????y??A"4?@?)??+????i?ql)??Dl??E??{?/?`?0????=?wA?????8Z??????????~H????1_??Y?%??u????c?o??9p}z? ?? ????{j? ?A?/E?(??Ds^?h???JS?m?wV???*i ??F???????KQ?o??QC???^ ?=e??U?w???$???h>??G????EW?I???%???S??? B?rkQ?U????9?????^-???!?R? ?F?tl?c?4K? "qS?2)????_?*US??zry???????I????!E?\S??RXy7?;??PS?W?(???NIb??8u9,_??1i1?>3?T?????"IQgiT?hrc? -3g?)??DSc?!J?( ??M?YS????x??u?Ql????5x???7??%???2<V?a?*uy??Os???es!,3z?.?AC5?.??~????!??"?*?~?"[????????^?j7ty?fL?2OG?hf??X??W???????"?A@???]]???6v?lyz?K?? ???r??CF?2?????tV????Sz5?4?}l?2?a?X?l???T?_?7???????Y??F?nt]?j???A??D??N??S!F????;???.Ol??+"?????g?3?????w*??x${????9?A_]?????N?????J?P???R????O]}??rO?r??9??5??9?y? `??\??)?????????38[l?m?r?[L#~?+?????V?m?[, ???????z????c&*???A?N?Z>?J??????84L?4h?1?z?C??n!?????Qcu?????J4??,D>6??y}?? ??}???_UUU?T??HfA?WG??~<v?B?t???????????? ????u? [Ua? ,??n??k?????sf??~?-O????!+??ft?+QIs???o=ExV9E?]?[?5?k??????a?? ?S?n?&?{??VBc??"??*???????a*???|[?AW??f??GQ?U??_aX?/:??Y &?&??;M?q??????u??>???`????^???g?C xA????????9????.???,7? g?????pn?|?~????-???.?+??5?`? H??du??NXq??)??WY?B?????|}??N?81?t[?????Z@?7??L?????????Di??????n????+?r???x?7V??'Z I??? l?z[i?V?????!;????z6??????{ZkOg?Y&B?@????]???? f?gK????? ?7C>$?7?G?? ???hS???,??K9w`7??v?LR?w]?4??x??m?$I?b#h???j???U??"??g?#CAB???Y?"???(????{N?N ??r??W???K???D?U;?@*Bl6?y^???? ????? ??u.??yR~??l??*???? 9??_? ??m?,?0?,?????X"?}??`?c ?|?^a???:Si???+?g?k?????XaH??V????YX27??L???x? ?8?:???lnp?c?YyW=H????>?????O?m?%?^?Hi[l?h?6??/3??????q?us?(???75=B?vs?{?@?GG?y?+? ??q?7?\1g ?g??+?O9?N?ta?i:_?F??CI??????t????Wr???KT??0? w_?~??o ?t???d?????\??pT?;u??s???O&?.&?_?;?d???????$+.?esb???????????????J? 3???Kc???9???? T????m????z??~???b?d??????N?i???;??_?~?gKeW;Q?"??#e/??????f?^??9?_,?????????.E????[??yrg?@?????7??k?)W>?N?????????7??9??v?/q????9d?/???/?8Hy?x?5????&F?????Uz??<>D?7kD??.?xG?|????R?????+?=T1a????R? g????? 1D???!1?+?V ?|? ??&?z ?X?>[e??C?Iu4 ???l?n??K??@r??:hn .?7???????/]?6?z?>??????t??l??X?< |?o???4?%?L???b???? <`*??-]?m?V??= ?????#??s1?_??'???"L??B"?l????/?R?i?i?&?Y-?s?????/3A??_|???;?0v?+????^Z??????zi???????????J~*oh?<~??nWK?] ?-4???0?*??U?a??X?@?M\???????Tn???4?U?t&?<>?y? ???????j?{????{??????7H?xS?? ?^?lXu ?{x???$?? ]??5?(?]v?5? 6E????9??nM?X??y??r?????|b????A???I?R??'??M?d>?u?&m??/?=???h? ??L?E?&t|?1????%?U?D-*???!$??N-????????!???8~[?????zU??fgM?"??? w8EU???5?l?P??y???6??h?t??H????\L?"?}??v?c???????r????)L??????V???????%???>??Gt k1=?????e???au9??pR?0?[??U???????q?r1~???Wl5&? ???b?R? 6?w??(????%\< [+?????t?7??r???u??Yr?D?0b?ZWi?????/R??1?7?uqEQ??{??? .7????? \>??Zr?z?1????Dx??.[ ????v???vKG|???6V???D Le\?w ??"3???&??>???-?&VJn?p~?[5??B[?8<;???O&?4o?!??z?[c?eV?!? ??B??????x+????szku?9????eu"?T??e=??Z??????'G(??i5Q?<93???P&?|'?^ ?uM?????s??"3 [?6C???o??":!?i? `N??????=?Pw?t?P?k?V???_t?U???0??;?????1??[W^?.?j??=KX??[.?u??y???X]kP,?Cq!~1???????_G???i????0??1????i?????"?O&?_???X?t??vp!????)s?F?_`??,???#?70?:?Z?Y?????*J????bk ?z?Z???0???Q???.r?f? ?1?????QS?? w??????s??#M?Id?'r???)??k??t=>???UCO???????c???v#RV? D?Z1V?? ?????9?n??ZE?????Nd?Z???"GU???n??(?\??V????6?????*???F=??m(???|s0????!???^?Y?????k?[0v???+??h&4i ????5j}????&??B??c;?\?????s?????? ?"???????!S?)??mZ??0??"??@Ju?M???(?=5??$???ua??"B???S?????????2g??????K-%????T??#PV?]?/??J????c?81?#K?W???r)e????_?(p3??????v Q?*8????????qA6?5?Mo???"??Q@???V0??x al????mIy????Y??O"?????>??L?SM ?]?q,???)?S??[?2???{k??????l??#6.D?}?umE? ???$?? ?Q?&??Z???"???N?'???I?8-,????Cs?0M???p???D?'?eR????o??hQ??b?z?D??? qW7.x?~???~)?q?.??fs?Dm?K ?6?????4?)%?IN??`7????(.[??rQ?]K??%`o?#???????G???P???a?x?????}yuc%?JO???auRA????n??=??*r?P??p?GLT?R.X6\5???7P??C?t(?v8S7-???????????Y?JP??? B??*??b???8??A ???????]?????Bx??????>??#?JM??;B?P?R ????" ?i5T?y#???cl??0?????}??O???S?????D@????R?{???y?x???J;???#l??otI?#???mW??7?L_??iF???g c?)H??jHiH?????s???A???????_W?Z?L!?????E?z?6U?9????)????)??W?,???? ???i????3 ?F7????+??W?????i?=??Z"?:? T? ?s??????Q?+???N???e??AX?D ?????|???I?????3k? 6??'Q'N?p???Sn?NE7?????L?????S??b(???j?4??\"??R???V???O??9???Uj)i????N?????????7u? % ~?fux??U.??)v??)????????E???;?q?t<?0?R at B.? ???n2?|?R4?Au-c?x>c???h???J??2C???n.{m????L?d????????=1{?i ?Y?W?]w?Y??p??k????W(?'?#%ilv4?q+??????r:?????? ;OZ?5@?[?&?@i??V?dl4?~P`?(Iz"?Nw????"=?~?#?????r?i

T?M?-?Dz???!?`?????r~ ?t??zx??[? 2??#a{?O??B\???N??????pc[}?W???k??B??[W?&??~V?:&?0???,?????=???W?????jj? ?t???H???#??Z?m????` ??+Z?=???a?X?????FC?D?\Z???1?j3?t ??jL#~6? 9????R?5?????h)m??T??W?????1??8????^7EltC?b6f#???-H?n??P??B?rwcT ?Q???r>g?`??zX?t????0I?y?b*M ??v????r?L-??V?O?T?~?Dy?????"???????9CW??????J???*?M?>C????? ?a??J?????Uw???)(? ?I????x??????K?[??{?>???? ????CU??Q??\?%=Qz????????[?tkq;y]3????~y??]?#[??H?-????T ,8?k????0A9???r?!yl??? j?Zmjw?L:?[???yi?Z?|?D? ???h?&?\m+\y0 8>???r?1x????y?:??: ?s6?FU3?v??>???q?r?)!,J?Dja??M?????H???UD?\Q1?i?*u:b?(?J:zG{[???z?@???\?????R?DT,?wY?7U? ??t?g? @????????A??j9?"?FrZ???g??U?,b|?)???e?m?J??N?????????K]???a?`?bwSg?? ?N v????Jg?IqF2hW?s#2Q??)?$r-??z?y?:t%h???8?R?h#??GR?w?? ?Jlh?,??B?E%?????l????K??y?+A??c????t ??Rp??? +???? ??U6???~????*?0?D0?p*?[x{B0????i]$???????M??1Pj????o?.?????v6t.??? ?G??w YR????H???j??U?#?K??????$????????4?? ?%y?e?m?}????????e#?v??a???a?????;R??$?-t?AR4j?b5 ?z.&??p???????1>???A? ?3= ?=??????? ?rL?m?????V?.?)j??b?B???????????4?p??? Xe?`I?5????kJU)??d/S?5AF?U????w??? S*???ImXg??a?????????m ??,?h1Vi?????????AWL2?f?h?8Q?6???%???^N???X??79?? ??????x???&?1??LVH?i???3?{????????z??f ?G?ZP?~?b_?U????g???ZYylUh???C??X??v???k"?J???F, ?A???Y???5??a? (????5??A?ud?y+v??l_?Ud??0?\?HZ?d?{?Y??F??? ??w?????Q?7 G??b??'?[uxJ????w???{J???U??@d"+ ,??I??>6?+q?? ??Q~??P??<^????b<}S?T?`#??6??'?^O???Lt^?????[???????L?I~Y?????y?S?o?O?N?.k?zL?rH;N??? 3X??????L@???n??w-?3?5?????????G ???F?!?,??A5????d????N?K?:? ~f????R?F^'?#??}????k?!q?R\?????]?3uyo????6????? r[2Cs??F???Ai?K? ????????78? ?L?t??0?j?"???x?|?]#???X*??>?^ ?k?U0?? s????e??rJ[;?S^???N?~???}??K?2B?P??m?????G&#??r???/?mhP?9T!????????N?? g?Gl??\@ ? ?????? ??????7p??75g?p???g?????x8!??? ??L^eN??i?????y???V?)?3?p ??????T?]?C???#?o??jT ??W?}?|???????&?V???af????w????D5g??j?(M3?\?????u????vmbb??? ,K?????k+?z?~?T? x?mB??{??M?? ???e?_???e???8??nRws??K(~??????o?6hG?????fb??????3??c,????P#5n,????[ ???.?_U??)t????OV??Y?S,?? o?"???O???^5????d ????????p??@tZ???Mc?? ?c?]KPJ ?????????V??E?i??r???????bN?? LUN???/??E!?y[&DCj?+@????e??H???Lz????%?p?;6?a?w?.??6????????n~????Lz?H~?v?i??r??^?e??+?!BMzKw|?)???z?~9lh$???k?d{C????RiYH?nTu\?!;u*???n^07h??4????b????????]lCy?O?*???A?????:pN?93J?aV??97??`??j?0????^?&??? /?A#%&T???~!@ ????N]^y? ????o??J?;F??\O8 b????F???uS??(??^W?Y?b? ?J??B1?????h"M[l5??%,???t??]S???????4kQ<} ????%O?O??????Q~^ ??"?????K&??-6%?]???ns? ??N&?. ??????.|]== ?@?W???????W ?w:'?M[L???,????&???o1n?V???X^&?m?]?>]?O?????????\???&e??????"???+yu:????????DQ?(l?????e?Kp?Q??dT!W?Z?e??.V??S??_????? H8??~??t(?d?L??fh'?eC??B?0(s%hD?H??,????,??????RO?'v?/+\v????m????n@??XV ???j4??v?.????Ae@????tz??Kc?#=??w?27J>?;k?????my}q`?b?Z???\1t??IS?????d?W!P ?4?z?){?.??????N?d?G?/P?P???Hq8?;q?S6????x???I???>?f???.w/6?0-?B{Z?o?????j ~yV+.?w??/g????K3< WNu?????]?????\a3qa???x??2i?|?9O?~?4A????????J ?E????^?P&? ?\=-???__????4???????!!~.+*dX8??g?#?? uD?0????? h?^%&qV+p8?? $?/?e@#AG??0?t!??????:(_????????[N? ????P?y?s???q?m4??bf\?V??-????A??????e??????*?v????????h???pe7??a??_?&A9??98????+????h?bG??????v??K??j??S??>??V???$:P?RLJ6???H?XP????L?;??y`??PQ?pr??*????????k:?;??4??*0'? ?%}??b?D?z?Q/*?AaRZ?(?[?I?|??47M???T????(?'Sv????????z?????*y<??c?V?@?rL?B <;?^??t?^(1?z????? {?-n?S,?sk+????[F[??_?Y?????q???D4?F????o6Ol??~Le?*?*?????^?>~?????P~??5??Jw???y??u?;?C?US mP???Mf??????I?V;'??g?{^2-????????9E???f?7)????a]?g?:??mV??U?T?????Y?i$???A?????|Vg?D?1?=?+=O?h SVC4?Ma4?T?'x? ?8?o???A C??x at 2|?ZQ?`?????b^?j?[?[/??t0?)??],: {z????#???????Ms?E???-?Z?xp??2vCx??,??????z:X??m????????6I?6??X ??Qi?=??/hLZ*???q?3Q????????j?HO??????q[` ? ??X?9??4?????mF??c)?h??UiY?)-???r{??6?Y??0&??A?l???I?0??:W??_??A?p?P+??_????J!-??r_? ?????:?)?n?W???M?$f?w?]F7,6q?N???Z8??5??\kP[~??|??H.?$G???y???????~??,G?C?X????? n?0? ?}m?p13?6?mT?M???#A?????FPl??[??%?M?X>M??vG\???Q?J?I???$????8??????? ???hp???h???L?G;??cJ??? ??fH0? ?\?k????Tf???Y E?cU?u?????/n??????A;e?@????o?????B?n?=Y??:??0????M~????j-??U? ;@5[?Z????N???&?>???V???? t???m ??}[pu,vjN =???y??Z? ?5???H ??~?-?U?6?7 at 7}?)b4 ~^P?bO??| ?)?J??bs?)"#@nn\?X`???????7.?"???P?:?(!]n?K?M??mf?W??? ?d???-H?9-? ????^? ???%?Y^??????r?Ju?@?B?'?F3-?PQ?2?+??;I7????&E? ?T_??X???.?4"??????ko??\U}? hS?di??T???U?{???BQ>?s?M?? M${nOk3???:???u??????ujo?????crz????^? ?d[]??#?)?qz6{? ??!????z? 1?P?? ?m%?3r??*/??y?????A?AxT???d?H?????????|??H??o???c?[?R??oK?|???.? .??{????Vl?I?s?w?1$?d3?H?M???R? ??>??2??oH??&??????=??Q???h~???8\? )???l>?(??U?Il It?cL??8@???? ?!??E??Mnu?????9??h?h9?~?XJk???MlX?40s??K???JZ=??_7\??)?1???q?????????0?t??w?+??v?b?????&?;?!?s?[^H??????Rk?g?P??z4Cp?H_??pA?:::&??Hsj?m(?????id???????+?l)?N&JC? ?S??LG??U??Lo?T?????c??U9hE'hO?D??T?P?U?:S???????????m}/R~*|???t?f?ql 1?]??1?'A ??NF??7j?VZ??;T?$tQ???????rf?^5;|&??}P??y%?E90?? ??6?xw???N?dz???4????WV?C??UM??J?C??-? ???NK????)?*I??{u?=!?kl?X??S~????? ???>O*?V?Z?%O]E)[?@?Hc???+?naV?qT?????? ?g?]???{t]?r????o??b?uM??3??[_??????T?,Zz?????8_? ?//y^??X?5?w?P????}J?X?? fs#;7P?#n?K?? Us} R;???????+?$?B???????? ???5????L?@???????uF??!y"0?7???y????5????x??w++!??dYU[~o?%?L3?????@??E}?or????$?47??I????uC?XS?p^>?|??)???9|????????H?4??[??k???( ?=K?????jj??W?}???@????Z?K?O?0q??K??w?????R??W=????=?d?}?Od?!?!g??4?H??U?]*?????????????????Q????????T??3??@???z_y?8??E?#[2?O?5??????? a?%?o??4?W$?\?X???rnA"w??M?????????yJ>???;?~?????l?H???BX?W????????A??N&?g?LD???^?XK??_"????K@???^]M????Jc'ul??e %?O?? B^?M5??^~?-~??Y?A?u?S??M-?Z?`??vK?B] ????K?L??'\??P-?J?P??=??*t;c3)????#???l???????'?C?????n?????)?????;?P ????????aC8????w???;F?_?i=??%???05?Nj?m???[??\??}l???*T&y|??&mW??5???lX?7?A} ?4???!?1????m?~?Q?t?o?????I?b\S???]Z???P,??=??0??L ?? ?2?fD???Z??E?fUU?@????E??3u3??????V??}??W???F?g??O??????I?Y?d?I"3I?rjuW?? -Hh??.?d??-??c???*?m?;?y????X;?jn?V?????+,E?HU>? ???J???''y8???????'0?w???i?$????_|L(?_?????? ??>>??N??(?~?cul??W?-d????? ????I?u??L?^:??I??G"??H5??!??d?????1O??()??Gm??ru??h??('?0?o?M|????6??*;_?Y7|?@ "?-K??Y?????JG??}d???C??Z?z??Z??q?n??????????:'?#?x3?0U?T????? ??S??????fJ\*?"[?6?h=+??t??.A??$3??}?GY?#DB?r?H.??|d??{v??*?=?\ZRD????c??nI%???1?9?}?b* ?`?/[?q|5Wt$ E???[PA?"??1???g????m??L??g????^?h?Y?????b????um? u?cW????4?5????;?d0??4=????^\(1?H"?T?y??:?? ??CA??FB8??R?9bHO??????yv6!n?`??W?#Km?62????u?c????6??h?9??f??v?woClF??m??fx?dTW5d/[???? B?Bp?JG^?-? ??e?~=????~?J#/????#??C6??X??.?f??`?HaM??b??|?+?&?c?7za???d:c??????v?%=??;y:?Q????$l%?u! 1????P???q??f?t? ^m? ??!9>?e$Q??B???|l?????p!rCR?`??]???&???????e??:?f)?Ly}> .?k?*qU!*v,?????R???\??{&yn??q?hw??&l??s?mK?(v 3!?zG ?aT?#Z??\&L?g_R%??-?k?pwv0U-'?e??%0w??)} ??l?P??$m??????++?2e?\c at I I????9???hvL9?2?RS?u^(;??????D???AM???????>?B?????1 81?f????j?8-^d?y??Z%T?l?J??aWXi???:?/x?Bi??O),??k?* Y???o??w? m?$dwsy?R?J??W?[qNm. ?W??5!?#???G?4e??$*\?x?C??zG???(??r?Re??i??%k??u?Km./.?`????Z?$JM?  ?A??Q??v^T?s??C8???[??)?x?BaK^?\??SCH^r???\?_?(?kLLxH?f???l??8S?Pi{?????H+?D?Wv??o!_ ?V?ui???1?J????F??R?a1?G`?d8????2C?!??hI??#??X?@?1?]? ??8G^?)O???mu?????Z[???*I3~ ???&??s%?E?6?H?]?)????]aM?T .???Y??x/3????I??????@?U??_???????}?5????????y?PrA???3??? ??jT?![?m?L at du?? ?3?sa]?S????vMr?jW?wM?g?S?n =`z??C_Q?.wi???W8[b4x0>??? 1????Tr?]?[e=#??r? ?b?T?Kp????????Q?????` V??? ?8?????:???ptwV?3??2??Y????d?!oO??uR0?VyF???^D?N?^I??_??I???ub?J}a*??m{9 ?M??8?Q???E??}?rj{????+??=?T%??$?????o???l??mB?DaS???l?Z?H???knR4hOr?`?U?%$??H???y? ??ht???tX?5?F~??rJ?F?? ?G??7???Fs?p/P?Q?u5:l???$J???J??????7? dj?J?U??:"??^(T????~|E].\.???q}4]_W[H9???F??5?;???'??? ]}l?>??????x?6? ??????$>I?? wB??2??w!???????\???|???r?VJ?k}?]????2?????~???M?@(8 '????WAR????H?}?x??-??nL???8r?????X?|??????c =e]}??@???e ?3?Q@g)}?r?&????????]?/?????S??F??? ? ?M?u!-q??T!??+|?}Hsk???6:?I[??x?vu????????.???VL ?{k??M??t?u,8??W?{?[R?so;?n???v???[?vrm??r??bv[?v??? ???B?E?:?ZK?-,?_?l??2x?h9?$??Z?Q?_xPCF?? ?? xB?8?m????+g??S]?b???????3?????6: m???(??CP???????"????y??I??f?F?qK???:j???????bw???????`???? ??\N ???\?&??d?j???=o??u_w?????? {??j. ?r??^3(????cIh?s?g?Yx???H$?d?qY?:w?/???:?rB ?????b?? %_?;??r@]???u??$?D????~o??_??f?B???-??????-B??k h?[M???[:w??T??y ?<8_R???a?pF?????HW?)????s?x3???????$??????}?.? ?{B!s?5w[ ??C? D? ???5Y??@??w???qU??IN!???E??????????!??]?P???s?z? r_??95?Ji,?T?B .?????Y9!d5?????F???X??D1aa???+]?_j~?'? *?N?O????? ?:?(?C^i????J?v?J$??^P`?S??y?W??]h?hT??$>-?s???6f? H??????U?????L_ViK????;?K'?????C?MT?_:??r???MM?hy4???/??XQ???w?]F1uV^??N??K???IBFp???dN ??GfB?[5????|? ????Jw?3+@?.?=??X?n?7+v!1? ;?J?/'H??6}??s???I??{^?A(??L"?RN?6R?>?_? ????h??b?O>??(?b ?/?Kv? ?6?q?k:??"5\ ]???+?M`??;?<U??} I?E?)??] C?E?KCC!?v/?$??i\?H??JM?\? ?????q?h?2?? J?y???{?)r?c|?? ?`??xh?t?=?t5?U?t???;????THnU???? ?F????l.?/?????s?\??????? ?????knA7 ?6????d'#Moz??a+?k??^,????'???'???H[??$Y?R?tw\[J??t??$?IO(l?~P(yS?]?EdD????0?T?Ez? $v??.kF8,?r?wA??(?RF?@]?5%'?B?}??:??i?[?????Gt|?~???a??c!?Q??_????? &??m2?5wa7f????Vy<????t?(???W??O??s????????_?[?:8@?O??{v?2!#???lQ?~?U?????? ??}??rY??`??:U???W???6:?T^?=d3?:5E??9a 8+}?F???Fi?9????-?o?Yu?r???s??? ???? S??WJ????p?j?.w??C???;?? ?6? ?O??*-*W? ??^????????g??w?!Q?&??DD??8??]EN??v0W?#l????? ???(5?a??*U??}2??2??{tX?a?D?}?V?q7?l??2?J????j#@???N2 ??&t? ???'h?s.?I.?2?????t?9?Xt????B?aS{??+????????i?tk???<;???????????#???^s?+J??t8=?6?Z4??`s?2?~???)??????<=??k??~?????W`?? ?%??p8U*9??+???n{?Y?^????66w??w?!??????m??[9"?+?1??y8????R?(???+?f$96?????[[?????????k?5M?@??\?b OT?z?????????Jv?C?J??]g?c/NB2"??=?l??????ul;&C? ??f?v?g?]u????~m?:x??6??F?fz???*h???tr!?S?c4?c3?3U??(2???F?? ??f???????w%?'!??Z?????c?!??_? ???*4?a7?;'3_? ?????3????j ?=?????p5??^?*?"F?J????m????7?? ??F?\,K?r?@/c?'????b'?@??~????>????????k??2u{??=?NEY?\[; }???? ?B??????WN9?6?(?R? 1?????G??n???|?????( S???????*?????m?m???8]?q????*???`???^????c????o/9f?????0?Ya?c/b?,?e4n?5?|yn??t?LYV??????U??i?|\??I??v ??????}1?i????(;o%azU???6D9x(R???kx9[=?????Q?D"q*?j?YZ??????}??&??&S???l?U????Q?P?-???]????iT??????????UR? ??o??!?+J}?????8{?%??wo,?eU?5=??W????Y5A???? ?0#????,n%<5,?u"??](^ Qq??j>`o??????&????Y???,H???t2Qj?1?????g??KP,C????jI?s?Q??os??xB???6???(????cYj.?`??????$???/?]?z,1[`?2??B?oq?t???5 ?q??=?????p?"h???DB(eWwy?)8?KX?2?#? >??P????M?????? ???T?3<"PL?Tmr1?tK6?Ny3?6?U?R$?Sr.A,?r'u[ l"M?x/j?!e??- ?i_E@?f`??w?gT??$?????y?N# ??[3??"?-And? ??B??LnM?2N{???&!B???V??T?J?} ??P?K?o???lM????U G???Nj?p(^???8_???r????????$*t??3??@R???b???????B???J?'???C?n`????T;?+?(??????P|?L?UQ?ezR8Lr??~?D? 2/??? ?Z??? ?????j?E?? ?? L???)t?????X?\z???zG???`"G??*J at C???HY??z?iN??i?O??CuI?&?O?`???p??xj5???]?/??'????x?????m??.#k???9? ?:(L??h?????9WD_??"???J??F????????g?O.W?^'K\??j??e?.>?^Q?? s\??????2JUbJ???X{??6?W~?^s?fcG?_*Q?X?2?c??????}????:bU?2??[??IU?xgg2D?t?@?B-???!|:Ba??q????????y??wPX??v???gKW?^?????Ff?Zyq???????{????!?????? ??s15Q6(_?????R????? ?O{??ov?:!X???????3???}??@??? ???'??`???????k{6ed>?pS?Z????B?n?W+1^???(&#?JTt}H???B?\V??L?j?o??\ ;??????25f?JH??????????]/??$???d?(???w6?????N????'?i???L?_L??pKV???x?]S6??0[????#o?,?|?4E+??>??N?Qq??n ?N???G? w?@???O^??.??x @?TI_y:Q <-??????R?#??r??GFN!? ???L???????^????F?X>?>;WY???Q<???I?:?>R??"z????~H???????hFfb????e?h? ??1????E??ENq?pm????? W??5=?Q?j?v???nT`???Mx?J??y??? $YJ???????%??_??s?<+Z?? ???(?????k????????????>???????? ???2m??9?\B??J?yZ??X?z ??|??ln?rC???A?????(z?^*N?`X?d??a]???K???O?p"?hS(?W?=A??A????U, ?k??ZZ ?*?+?q??a[??O????G???* ?i??8b?h????K9?????????y*=8??????2?? 5?@=?????HY??P?????2p#???E*d(??z???~[???????y?????LNUK?6?F ???????B???????3Ml+Y?Y ???????????($_??W????????????t?l??0]?X??b?B?Fy?.??z\??0??eU?B@?t??L!?:X@?=?=S?????? 6x?6??S?jOy^*??F??D?&? T???j???B ?:B?)??p?v6??m#????MtfI?N ?w= :4S#?? k????D@???Vh???????R?????&>???$T??oj??????rV????fa:??'5????j???Yq'D8}?O??-????d???/jV??????????cq??&??j??????G?????jM??W? c???o?$???k?5f????x5~??&jx?"5,???_?????zQ??A?????u??gy????????'?{??k??N???"_?\m,?W?H??? ?o0 ?X?p?m?????"PXy???j0\_+{??1??L?????0?m??{?q? ??U>9????????ZY????????SY??l????????d??? ?E?y?d ??BF?zq?w?S?X??? -??%H????/:a)????/ ??l^,?dJ????U?HJK?F????-m??I?4?8.A$??y~???D?7e?????-=Lgi?V??C?,UGO4?d9?o?E????(??????Kw?G??z???9?jm`v?~?R?1? ?4D?????R??)??I8?+?X?0# ]?????{?L????:A?"???*?????????G6?????Z?????2[??>????$a?-uRKu????Gv??$?L???? Y~???9G?????*??6$ ????)?b??k(???3?B?i^??%???????? ?`yc????0?~c?????mb-=:x5?y k?????y??? ?c:V,?H??p|?U_???de ? Z???6?(?D?????d??$??92ol?cp?1?lNs?? E????y??_?l?y]?6?????/'???la?`h???[??4?y?&?Y?nH*????W??1[?4??;%?Y????"q?$???g?(???\*P?SH??~????C? z?s?+???jR??? ???? ?$"`??iv8.??0?-r???\@??b?;??5d}?3,`????_??U????d?x?D;?cq???gA?-????????????Qt?????S:?l"????z8?#?Ij[AE?v?1?tAKh???}???jK@ ?M9D?< S? %qw? G[?e???`?? ?J??"??m?N#K9?~?>T???>?H!%?z???1?????????????? ????&??.????Q?)E? ???e?c])5e?? BPo??? ????????8?s`?'?_;??????g0??]i???rV??.0?I???C??20 W???x???9???RXr?0?????????z?>?c??6^?o ??z??|{?:?R??l)i??J""{??H?h?? f?I!H?5??q]?k?ZZXB??B{??- ??@?P??yU??D???b[)?8??????^?}%?A?%5?@???H??l?=????zBsS(8W?Y?0|????#??&?o~r!-???????b? 5??S~????KS???????q??5?=_d???*????f??p?)???*????~Uk???`MQ????s???^?(??????%? AI?????qN???R??y{??z?????2??@????z??Z???(;???"$??c?KKw???z?>?n?&u???_M?Z{?Q?2f9?"@w??? 6%\?cDB??_???>Nc????rH?,?g#i??-#\???uCh)??????%?$].Fi?I?e0?y?%?i?r^o,{m?p?$k\???G??J?????_??{??n?2R????Z%?m]?;Rs???]|????????U??O??s?3.??A=W???AZ?\7Hq5[??j/?N\F??E?.?????W????0??u??;???R?>????????&}=?????????I&~*?V???}=??7????~???x#???? ???????????`:?%x??'??<=?hO?????? DHDH????/?7QN?}?B$]???7????;HlW???5h??xA? ??????o???t??&-3y??w??LY@z??!~{?g=???n 5???$~?H???2?oy???????C???????'??M ?w???3??sR=:?? Y?_?p?? GD??8?5??;2? tm?u??????f?=??^???5????X???7xx??<"?$?Z8?d??????R7???t?j??=?u?^??~???:?la2p29 N?]???D??2????r/cR=?F??:??O?|???qQ?B?]d\P`??-g???9??~???s?r???l?(?2YmC????e?HPL???)???s??V? $? ;Lj7????Y????F?/?VU?ZN 4 ??E?,~?T?&Kl ??7?e????? :?????@??A/f?zV???i??1?????k.?0???~??g???]?Jo ??x?'?x??4?v#?: ? A? y??~b ?k?P ??KM!??a??????aZ????c?Z?I ?3??E???4?@?:??p??u??~??a2AY? '4x?+^1???0??q_B????D???:???u???]????PK &l7!??@f? *p??*B?I ?y??/???2a? ?H-? W??R???k^??n)??E??~2??= ??Z???c???V/???4yxF2n???{>???m??J????-??????????x'/?^??????f?PK ??) --- NEW FILE import.log --- mythes-hu-0_20090203-1_fc11:HEAD:mythes-hu-0.20090203-1.fc11.src.rpm:1247731785 --- NEW FILE mythes-hu.spec --- Name: mythes-hu Summary: Hungarian thesaurus %define upstreamid 20090203 Version: 0.%{upstreamid} Release: 1%{?dist} Source: http://extensions.services.openoffice.org/files/1283/4/hu_dicts.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/hu_dicts BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) License: GPLv2+ BuildArch: noarch %description Hungarian thesaurus. %prep %setup -q -c %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mythes cp -p th_hu_HU_v2.* $RPM_BUILD_ROOT/%{_datadir}/mythes %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README_th_hu_HU_v2.txt %dir %{_datadir}/mythes %{_datadir}/mythes/* %changelog * Tue Jul 14 2009 Caolan McNamara - 0.20090203-1 - initial version From caolanm at fedoraproject.org Thu Jul 16 08:12:31 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 16 Jul 2009 08:12:31 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1962,1.1963 Message-ID: <20090716081231.0A67C11C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31942 Modified Files: openoffice.org.spec Log Message: mythes-hu available Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1962 retrieving revision 1.1963 diff -u -p -r1.1962 -r1.1963 --- openoffice.org.spec 10 Jul 2009 08:01:02 -0000 1.1962 +++ openoffice.org.spec 16 Jul 2009 08:11:58 -0000 1.1963 @@ -1,6 +1,6 @@ %define oootag OOO310 %define ooomilestone 15 -%define rh_rpm_release 1 +%define rh_rpm_release 2 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -908,7 +908,7 @@ Provides additional hindi translations a Summary: Hungarian language pack for OpenOffice.org Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} -Requires: hunspell-hu, hyphen-hu, autocorr-hu +Requires: hunspell-hu, hyphen-hu, mythes-hu, autocorr-hu Obsoletes: openoffice.org-i18n < 1.9.0 Obsoletes: openoffice.org-langpack-hu < 1:2.0.3 Obsoletes: openoffice.org2-langpack-hu_HU < 1:3.0.0 @@ -4176,8 +4176,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Thu Jul 09 2009 Caol??n McNamara - 1:3.1.1-15.2 +* Thu Jul 16 2009 Caol??n McNamara - 1:3.1.1-15.2 - add workspace.vcl103.patch +- mythes-hu available - Resolves(maybe): rhbz#510327 openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch * Fri Jul 03 2009 Caol??n McNamara - 1:3.1.1-15.1 From yaneti at fedoraproject.org Thu Jul 16 08:21:01 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Thu, 16 Jul 2009 08:21:01 +0000 (UTC) Subject: rpms/gtg/devel gtg.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716082101.50DA811C0099@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/gtg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv998/devel Modified Files: .cvsignore sources Added Files: gtg.spec import.log Log Message: Initial import --- NEW FILE gtg.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: gtg Version: 0.1.2 Release: 3%{?dist} Summary: Personal organizer for the GNOME desktop Group: Applications/Productivity License: GPLv3+ URL: http://gtg.fritalk.com BuildArch: noarch Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils Requires: pygtk2 pygtk2-libglade python-configobj pyxdg pycairo gnome-python2-gnome %description Getting Things GNOME! (GTG) is a personal organizer for the GNOME desktop environment inspired by the Getting Things Done (GTD) methodology. GTG is designed with flexibility, adaptability, and ease of use in mind so it can be used as more than just GTD software. %prep %setup -q # patch up setup.py, which otherwise requires a running X server sed -e 's/import GTG//' \ -e "s|GTG.VERSION|'%{version}'|" \ -e 's|GTG.URL|"http://gtg.fritalk.com"|' \ -e 's|GTG.EMAIL|"gtg at lists.launchpad.net"|' \ -i.bak setup.py sed -i -e "s|#!/usr/bin/env python||" GTG/gtg.py %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS CHANGELOG LICENSE README %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/%{name} %{_datadir}/icons/hicolor/*/apps/%{name}.* %{python_sitelib}/* %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 14 2009 Yanko Kaneti 0.1.2-3 - Use %%{__python} instead of python * Mon Jul 13 2009 Yanko Kaneti 0.1.2-2 - Implement review feedback https://bugzilla.redhat.com/show_bug.cgi?id=510994#c1 * Mon Jul 13 2009 Yanko Kaneti 0.1.2-1 - Initial packaging --- NEW FILE import.log --- gtg-0_1_2-3_fc12:HEAD:gtg-0.1.2-3.fc12.src.rpm:1247732452 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtg/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:38:19 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:20:29 -0000 1.2 @@ -0,0 +1 @@ +gtg-0.1.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtg/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:38:19 -0000 1.1 +++ sources 16 Jul 2009 08:20:30 -0000 1.2 @@ -0,0 +1 @@ +276d5dbad074e4f50283a61bb569e9d4 gtg-0.1.2.tar.gz From yaneti at fedoraproject.org Thu Jul 16 08:23:03 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Thu, 16 Jul 2009 08:23:03 +0000 (UTC) Subject: rpms/gtg/F-11 gtg.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716082303.6595111C0099@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/gtg/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1678/F-11 Modified Files: .cvsignore sources Added Files: gtg.spec import.log Log Message: Initial import on branch F-11 --- NEW FILE gtg.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: gtg Version: 0.1.2 Release: 3%{?dist} Summary: Personal organizer for the GNOME desktop Group: Applications/Productivity License: GPLv3+ URL: http://gtg.fritalk.com BuildArch: noarch Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils Requires: pygtk2 pygtk2-libglade python-configobj pyxdg pycairo gnome-python2-gnome %description Getting Things GNOME! (GTG) is a personal organizer for the GNOME desktop environment inspired by the Getting Things Done (GTD) methodology. GTG is designed with flexibility, adaptability, and ease of use in mind so it can be used as more than just GTD software. %prep %setup -q # patch up setup.py, which otherwise requires a running X server sed -e 's/import GTG//' \ -e "s|GTG.VERSION|'%{version}'|" \ -e 's|GTG.URL|"http://gtg.fritalk.com"|' \ -e 's|GTG.EMAIL|"gtg at lists.launchpad.net"|' \ -i.bak setup.py sed -i -e "s|#!/usr/bin/env python||" GTG/gtg.py %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS CHANGELOG LICENSE README %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/%{name} %{_datadir}/icons/hicolor/*/apps/%{name}.* %{python_sitelib}/* %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 14 2009 Yanko Kaneti 0.1.2-3 - Use %%{__python} instead of python * Mon Jul 13 2009 Yanko Kaneti 0.1.2-2 - Implement review feedback https://bugzilla.redhat.com/show_bug.cgi?id=510994#c1 * Mon Jul 13 2009 Yanko Kaneti 0.1.2-1 - Initial packaging --- NEW FILE import.log --- gtg-0_1_2-3_fc12:F-11:gtg-0.1.2-3.fc12.src.rpm:1247732573 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtg/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:38:19 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:22:32 -0000 1.2 @@ -0,0 +1 @@ +gtg-0.1.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtg/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:38:19 -0000 1.1 +++ sources 16 Jul 2009 08:22:33 -0000 1.2 @@ -0,0 +1 @@ +276d5dbad074e4f50283a61bb569e9d4 gtg-0.1.2.tar.gz From yaneti at fedoraproject.org Thu Jul 16 08:24:42 2009 From: yaneti at fedoraproject.org (Yanko Kaneti) Date: Thu, 16 Jul 2009 08:24:42 +0000 (UTC) Subject: rpms/gtg/F-10 gtg.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716082442.8C90711C0099@cvs1.fedora.phx.redhat.com> Author: yaneti Update of /cvs/pkgs/rpms/gtg/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2110/F-10 Modified Files: .cvsignore sources Added Files: gtg.spec import.log Log Message: Initial import on branch F-10 --- NEW FILE gtg.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: gtg Version: 0.1.2 Release: 3%{?dist} Summary: Personal organizer for the GNOME desktop Group: Applications/Productivity License: GPLv3+ URL: http://gtg.fritalk.com BuildArch: noarch Source0: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: gettext BuildRequires: desktop-file-utils Requires: pygtk2 pygtk2-libglade python-configobj pyxdg pycairo gnome-python2-gnome %description Getting Things GNOME! (GTG) is a personal organizer for the GNOME desktop environment inspired by the Getting Things Done (GTD) methodology. GTG is designed with flexibility, adaptability, and ease of use in mind so it can be used as more than just GTD software. %prep %setup -q # patch up setup.py, which otherwise requires a running X server sed -e 's/import GTG//' \ -e "s|GTG.VERSION|'%{version}'|" \ -e 's|GTG.URL|"http://gtg.fritalk.com"|' \ -e 's|GTG.EMAIL|"gtg at lists.launchpad.net"|' \ -i.bak setup.py sed -i -e "s|#!/usr/bin/env python||" GTG/gtg.py %build %{__python} setup.py build %install rm -rf $RPM_BUILD_ROOT %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_datadir}/icons/hicolor &>/dev/null gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS CHANGELOG LICENSE README %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_datadir}/%{name} %{_datadir}/icons/hicolor/*/apps/%{name}.* %{python_sitelib}/* %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 14 2009 Yanko Kaneti 0.1.2-3 - Use %%{__python} instead of python * Mon Jul 13 2009 Yanko Kaneti 0.1.2-2 - Implement review feedback https://bugzilla.redhat.com/show_bug.cgi?id=510994#c1 * Mon Jul 13 2009 Yanko Kaneti 0.1.2-1 - Initial packaging --- NEW FILE import.log --- gtg-0_1_2-3_fc12:F-10:gtg-0.1.2-3.fc12.src.rpm:1247732673 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtg/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:38:19 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:24:11 -0000 1.2 @@ -0,0 +1 @@ +gtg-0.1.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtg/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:38:19 -0000 1.1 +++ sources 16 Jul 2009 08:24:12 -0000 1.2 @@ -0,0 +1 @@ +276d5dbad074e4f50283a61bb569e9d4 gtg-0.1.2.tar.gz From jpopelka at fedoraproject.org Thu Jul 16 08:31:44 2009 From: jpopelka at fedoraproject.org (=?utf-8?b?SmnFmcOtIFBvcGVsa2E=?=) Date: Thu, 16 Jul 2009 08:31:44 +0000 (UTC) Subject: rpms/net-tools/F-11 net-tools-1.60-scanf-format.patch, NONE, 1.1 net-tools.spec, 1.98, 1.99 Message-ID: <20090716083144.DAC9711C0099@cvs1.fedora.phx.redhat.com> Author: jpopelka Update of /cvs/pkgs/rpms/net-tools/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3182 Modified Files: net-tools.spec Added Files: net-tools-1.60-scanf-format.patch Log Message: - scanf format length fix (non exploitable?) from Fabian Hugelshofer - URL tag changed to http://net-tools.berlios.de/ VS: ---------------------------------------------------------------------- net-tools-1.60-scanf-format.patch: --- NEW FILE net-tools-1.60-scanf-format.patch --- diff -up net-tools-1.60/arp.c.scanf-format net-tools-1.60/arp.c --- net-tools-1.60/arp.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/arp.c 2009-07-08 11:43:39.000000000 +0200 @@ -557,7 +557,7 @@ static int arp_show(char *name) /* Read the ARP cache entries. */ for (num = 0; num < entries; num++) { fgets(line, sizeof(line), fp); - if (sscanf(line, "%s 0x%x 0x%x %100s %100s %100s\n", + if (sscanf(line, "%s 0x%x 0x%x %99s %99s %99s\n", ip, &type, &flags, hwa, mask, dev) < 4) break; diff -up net-tools-1.60/lib/inet_gr.c.scanf-format net-tools-1.60/lib/inet_gr.c --- net-tools-1.60/lib/inet_gr.c.scanf-format 2000-10-28 12:59:42.000000000 +0200 +++ net-tools-1.60/lib/inet_gr.c 2009-07-08 11:49:59.000000000 +0200 @@ -38,7 +38,7 @@ extern char *INET_sprintmask(struct sock int rprint_fib(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], net_addr[128]; char mask_addr[128]; int num, iflags, metric, refcnt, use, mss, window, irtt; @@ -69,18 +69,18 @@ int rprint_fib(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_ROUTE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Mask", "%128s", + "Mask", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d\n" */ if (!fmt) return 1; @@ -205,7 +205,7 @@ int rprint_fib(int ext, int numeric) int rprint_cache(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], dest_addr[128], specdst[128]; char src_addr[128]; struct sockaddr snet; @@ -269,20 +269,20 @@ int rprint_cache(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", "HH", "%d", "ARP", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d\n" */ } if (format == 2) { @@ -292,13 +292,13 @@ int rprint_cache(int ext, int numeric) "MSS Window irtt TOS HHRef HHUptod SpecDst\n")); fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", @@ -307,7 +307,7 @@ int rprint_cache(int ext, int numeric) "HHUptod", "%d", "SpecDst", "%128s", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d %128s\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d %128s\n" */ } diff -up net-tools-1.60/lib/interface.c.scanf-format net-tools-1.60/lib/interface.c --- net-tools-1.60/lib/interface.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/lib/interface.c 2009-07-08 11:45:44.000000000 +0200 @@ -713,7 +713,7 @@ void ife_print_long(struct interface *pt #endif #if HAVE_AFINET6 FILE *f; - char addr6[40], devname[20]; + char addr6[40], devname[21]; struct sockaddr_in6 sap; int plen, scope, dad_status, if_idx; extern struct aftype inet6_aftype; diff -up net-tools-1.60/netstat.c.scanf-format net-tools-1.60/netstat.c --- net-tools-1.60/netstat.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/netstat.c 2009-07-08 11:42:12.000000000 +0200 @@ -1105,7 +1105,7 @@ static void udp_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); @@ -1540,7 +1540,7 @@ static void raw_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); Index: net-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-tools/F-11/net-tools.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- net-tools.spec 26 Feb 2009 04:54:53 -0000 1.98 +++ net-tools.spec 16 Jul 2009 08:31:44 -0000 1.99 @@ -3,10 +3,10 @@ Summary: Basic networking tools Name: net-tools Version: 1.60 -Release: 92%{?dist} +Release: 93%{?dist} License: GPL+ Group: System Environment/Base -URL: http://www.tazenda.demon.co.uk/phil/net-tools/ +URL: http://net-tools.berlios.de/ Source0: http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-%{version}.tar.bz2 Source1: http://www.red-bean.com/~bos/netplug/netplug-%{npversion}.tar.bz2 Source2: net-tools-%{version}-config.h @@ -82,6 +82,7 @@ Patch68: net-tools-1.60-a-option.patch Patch69: net-tools-1.60-clear-flag.patch Patch70: net-tools-1.60-metric-tunnel-man.patch Patch71: net-tools-1.60-netstat-probe.patch +Patch72: net-tools-1.60-scanf-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/chkconfig @@ -164,6 +165,7 @@ ifconfig, netstat, route, and others. %patch69 -p1 -b .clear-flag %patch70 -p1 -b .metric-tunnel-man %patch71 -p1 -b .probe +%patch72 -p1 -b .scanf-format cp %SOURCE2 ./config.h cp %SOURCE3 ./config.make @@ -279,6 +281,10 @@ exit 0 %{_sysconfdir}/rc.d/init.d/netplugd %changelog +* Wed Jul 8 2009 Jiri Popelka - 1.60-93 +- scanf format length fix (non exploitable?) from Fabian Hugelshofer +- URL tag changed to http://net-tools.berlios.de/ + * Wed Feb 25 2009 Fedora Release Engineering - 1.60-92 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ovasik at fedoraproject.org Thu Jul 16 08:32:49 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 16 Jul 2009 08:32:49 +0000 (UTC) Subject: rpms/tar/devel tar-1.19-xattrs-conf.patch, 1.6, 1.7 tar-1.19-xattrs.patch, 1.9, 1.10 tar.spec, 1.82, 1.83 Message-ID: <20090716083249.DC6DC11C0099@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/tar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3856 Modified Files: tar-1.19-xattrs-conf.patch tar-1.19-xattrs.patch tar.spec Log Message: Fix restoring of directory default acls(#511145), Do not patch generated autotools files tar-1.19-xattrs-conf.patch: Index: tar-1.19-xattrs-conf.patch =================================================================== RCS file: /cvs/extras/rpms/tar/devel/tar-1.19-xattrs-conf.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tar-1.19-xattrs-conf.patch 5 Mar 2009 09:07:03 -0000 1.6 +++ tar-1.19-xattrs-conf.patch 16 Jul 2009 08:32:48 -0000 1.7 @@ -123,677 +123,3 @@ diff -urNp tar-1.22-orig/config.hin tar- /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL -diff -urNp tar-1.22-orig/configure tar-1.22/configure ---- tar-1.22-orig/configure 2009-03-05 08:05:20.000000000 +0100 -+++ tar-1.22/configure 2009-03-05 09:57:06.000000000 +0100 -@@ -2127,6 +2127,9 @@ ac_header_list="$ac_header_list sys/tpri - ac_header_list="$ac_header_list sys/tape.h" - ac_header_list="$ac_header_list unistd.h" - ac_header_list="$ac_header_list locale.h" -+ac_header_list="$ac_header_list selinux/selinux.h" -+ac_header_list="$ac_header_list attr/xattr.h" -+ac_header_list="$ac_header_list sys/acl.h" - ac_func_list="$ac_func_list flockfile" - ac_func_list="$ac_func_list funlockfile" - ac_header_list="$ac_header_list features.h" -@@ -6022,7 +6025,14 @@ return strerror (); - return 0; - } - _ACEOF --rm -f conftest.$ac_objext conftest$ac_exeext -+for ac_lib in '' cposix; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ rm -f conftest.$ac_objext conftest$ac_exeext - if { (ac_try="$ac_link" - case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -@@ -6040,25 +6050,35 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then -- ac_cv_lib_cposix_strerror=yes -+ ac_cv_search_strerror=$ac_res - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 - -- ac_cv_lib_cposix_strerror=no -+ - fi - - rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -- conftest$ac_exeext conftest.$ac_ext --LIBS=$ac_check_lib_save_LIBS -+ conftest$ac_exeext -+ if test "${ac_cv_search_strerror+set}" = set; then -+ break - fi --{ echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5 --echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6; } --if test $ac_cv_lib_cposix_strerror = yes; then -- LIBS="$LIBS -lcposix" -+done -+if test "${ac_cv_search_strerror+set}" = set; then -+ : -+else -+ ac_cv_search_strerror=no - fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 -+echo "${ECHO_T}$ac_cv_search_strerror" >&6; } -+ac_res=$ac_cv_search_strerror -+if test "$ac_res" != no; then -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" - -- -+fi - - { echo "$as_me:$LINENO: checking for inline" >&5 - echo $ECHO_N "checking for inline... $ECHO_C" >&6; } -@@ -38773,6 +38793,257 @@ _ACEOF - fi - done - -+ -+ -+ -+ -+ -+ -+ -+ -+ -+for ac_func in getxattr fgetxattr lgetxattr \ -+ setxattr fsetxattr lsetxattr \ -+ listxattr flistxattr llistxattr -+do -+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -+{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+/* Define $ac_func to an innocuous variant, in case declares $ac_func. -+ For example, HP-UX 11i declares gettimeofday. */ -+#define $ac_func innocuous_$ac_func -+ -+/* System header to define __stub macros and hopefully few prototypes, -+ which can conflict with char $ac_func (); below. -+ Prefer to if __STDC__ is defined, since -+ exists even on freestanding compilers. */ -+ -+#ifdef __STDC__ -+# include -+#else -+# include -+#endif -+ -+#undef $ac_func -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char $ac_func (); -+/* The GNU C library defines this for functions which it implements -+ to always fail with ENOSYS. Some functions are actually named -+ something starting with __ and the normal name is an alias. */ -+#if defined __stub_$ac_func || defined __stub___$ac_func -+choke me -+#endif -+ -+int -+main () -+{ -+return $ac_func (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ eval "$as_ac_var=yes" -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ eval "$as_ac_var=no" -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ac_res=`eval echo '${'$as_ac_var'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+if test `eval echo '${'$as_ac_var'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+cat >>confdefs.h <<\_ACEOF -+#define HAVE_XATTRS -+_ACEOF -+ -+fi -+done -+ -+ -+{ echo "$as_me:$LINENO: checking for getfilecon in -lselinux" >&5 -+echo $ECHO_N "checking for getfilecon in -lselinux... $ECHO_C" >&6; } -+if test "${ac_cv_lib_selinux_getfilecon+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lselinux $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char getfilecon (); -+int -+main () -+{ -+return getfilecon (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_selinux_getfilecon=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_cv_lib_selinux_getfilecon=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_selinux_getfilecon" >&5 -+echo "${ECHO_T}$ac_cv_lib_selinux_getfilecon" >&6; } -+if test $ac_cv_lib_selinux_getfilecon = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define HAVE_LIBSELINUX 1 -+_ACEOF -+ -+ LIBS="-lselinux $LIBS" -+ -+fi -+ -+ -+{ echo "$as_me:$LINENO: checking for acl_get_fd in -lacl" >&5 -+echo $ECHO_N "checking for acl_get_fd in -lacl... $ECHO_C" >&6; } -+if test "${ac_cv_lib_acl_acl_get_fd+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lacl $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char acl_get_fd (); -+int -+main () -+{ -+return acl_get_fd (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_acl_acl_get_fd=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_cv_lib_acl_acl_get_fd=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_fd" >&5 -+echo "${ECHO_T}$ac_cv_lib_acl_acl_get_fd" >&6; } -+if test $ac_cv_lib_acl_acl_get_fd = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define HAVE_LIBACL 1 -+_ACEOF -+ -+ LIBS="-lacl $LIBS" -+ -+fi -+ -+ - { echo "$as_me:$LINENO: checking whether getgrgid is declared" >&5 - echo $ECHO_N "checking whether getgrgid is declared... $ECHO_C" >&6; } - if test "${ac_cv_have_decl_getgrgid+set}" = set; then -@@ -40571,6 +40842,296 @@ fi - - done - -+ -+for ac_header in selinux/selinux.h -+do -+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ { echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include <$ac_header> -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include <$ac_header> -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} -+ ( cat <<\_ASBOX -+## ------------------------------ ## -+## Report this to bug-tar at gnu.org ## -+## ------------------------------ ## -+_ASBOX -+ ) | sed "s/^/$as_me: WARNING: /" >&2 -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ eval "$as_ac_Header=\$ac_header_preproc" -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+ -+fi -+if test `eval echo '${'$as_ac_Header'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+for ac_header in attr/xattr.h -+do -+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ { echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include <$ac_header> -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include <$ac_header> -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} -+ ( cat <<\_ASBOX -+## ------------------------------ ## -+## Report this to bug-tar at gnu.org ## -+## ------------------------------ ## -+_ASBOX -+ ) | sed "s/^/$as_me: WARNING: /" >&2 -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ eval "$as_ac_Header=\$ac_header_preproc" -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+ -+fi -+if test `eval echo '${'$as_ac_Header'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ - { echo "$as_me:$LINENO: checking for iconv_t" >&5 - echo $ECHO_N "checking for iconv_t... $ECHO_C" >&6; } - if test "${ac_cv_type_iconv_t+set}" = set; then -diff -urNp tar-1.22-orig/src/Makefile.in tar-1.22/src/Makefile.in ---- tar-1.22-orig/src/Makefile.in 2009-03-05 08:05:26.000000000 +0100 -+++ tar-1.22/src/Makefile.in 2009-03-05 09:57:06.000000000 +0100 -@@ -143,7 +143,8 @@ am_tar_OBJECTS = buffer.$(OBJEXT) checkp - extract.$(OBJEXT) xheader.$(OBJEXT) incremen.$(OBJEXT) \ - list.$(OBJEXT) misc.$(OBJEXT) names.$(OBJEXT) sparse.$(OBJEXT) \ - suffix.$(OBJEXT) system.$(OBJEXT) tar.$(OBJEXT) \ -- transform.$(OBJEXT) update.$(OBJEXT) utf8.$(OBJEXT) -+ transform.$(OBJEXT) update.$(OBJEXT) utf8.$(OBJEXT) \ -+ xattrs.$(OBJEXT) - tar_OBJECTS = $(am_tar_OBJECTS) - am__DEPENDENCIES_1 = - am__DEPENDENCIES_2 = ../lib/libtar.a $(am__DEPENDENCIES_1) \ -@@ -653,7 +654,7 @@ sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --noinst_HEADERS = arith.h common.h tar.h -+noinst_HEADERS = arith.h common.h tar.h xattrs.h - tar_SOURCES = \ - buffer.c\ - checkpoint.c\ -@@ -672,11 +673,12 @@ tar_SOURCES = \ - tar.c\ - transform.c\ - update.c\ -- utf8.c -+ utf8.c\ -+ xattrs.c - - INCLUDES = -I$(top_srcdir)/lib -I../ -I../lib - LDADD = ../lib/libtar.a $(LIBINTL) $(LIBICONV) --tar_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) -+tar_LDADD = $(LIBS) $(LDADD) $(LIB_CLOCK_GETTIME) - all: all-am - - .SUFFIXES: -@@ -776,6 +778,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/transform.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/update.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/utf8.Po at am__quote@ -+ at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xattrs.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xheader.Po at am__quote@ - - .c.o: tar-1.19-xattrs.patch: Index: tar-1.19-xattrs.patch =================================================================== RCS file: /cvs/extras/rpms/tar/devel/tar-1.19-xattrs.patch,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tar-1.19-xattrs.patch 5 Mar 2009 09:07:03 -0000 1.9 +++ tar-1.19-xattrs.patch 16 Jul 2009 08:32:49 -0000 1.10 @@ -1362,7 +1362,7 @@ diff -up /dev/null tar-1.17/src/xattrs.c +#else + xattrs__acls_set (st, file_name, ACL_TYPE_ACCESS, + st->acls_a_ptr, st->acls_a_len); -+ if (S_ISDIR (st->stat.st_mode)) ++ if ((typeflag == DIRTYPE) || (typeflag == GNUTYPE_DUMPDIR)) + xattrs__acls_set (st, file_name, ACL_TYPE_DEFAULT, + st->acls_d_ptr, st->acls_d_len); +#endif Index: tar.spec =================================================================== RCS file: /cvs/extras/rpms/tar/devel/tar.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- tar.spec 9 Jul 2009 16:50:25 -0000 1.82 +++ tar.spec 16 Jul 2009 08:32:49 -0000 1.83 @@ -2,7 +2,7 @@ Summary: A GNU file archiving program Name: tar Epoch: 2 Version: 1.22 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Archiving URL: http://www.gnu.org/software/tar/ @@ -45,6 +45,7 @@ the rmt package. %patch6 -p1 -b .rofs %patch7 -p1 -b .shortread %patch8 -p1 -b .headerblackmagic +autoreconf %build %configure --bindir=/bin --libexecdir=/sbin @@ -95,6 +96,10 @@ fi %{_infodir}/tar.info* %changelog +* Thu Jul 16 2009 Ondrej Vasik 2:1.22-5 +- Fix restoring of directory default acls(#511145) +- Do not patch generated autotools files + * Thu Jun 25 2009 Ondrej Vasik 2:1.22-4 - Report record size only if the archive refers to a device (#487760) From pkgdb at fedoraproject.org Thu Jul 16 08:37:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:37:59 +0000 Subject: [pkgdb] nss: kdudka has requested watchbugzilla Message-ID: <20090716083759.E9B0F10F8AC@bastion2.fedora.phx.redhat.com> kdudka has requested the watchbugzilla acl on nss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Thu Jul 16 08:38:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:38:07 +0000 Subject: [pkgdb] nss: kdudka has requested watchcommits Message-ID: <20090716083807.569F610F890@bastion2.fedora.phx.redhat.com> kdudka has requested the watchcommits acl on nss (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Thu Jul 16 08:38:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:38:18 +0000 Subject: [pkgdb] nss: kdudka has requested watchbugzilla Message-ID: <20090716083818.D8AB610F8B2@bastion2.fedora.phx.redhat.com> kdudka has requested the watchbugzilla acl on nss (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Thu Jul 16 08:38:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:38:20 +0000 Subject: [pkgdb] nss: kdudka has requested watchcommits Message-ID: <20090716083820.322E910F8A6@bastion2.fedora.phx.redhat.com> kdudka has requested the watchcommits acl on nss (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Thu Jul 16 08:38:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:38:26 +0000 Subject: [pkgdb] nss: kdudka has requested watchbugzilla Message-ID: <20090716083826.2B3E510F8B7@bastion2.fedora.phx.redhat.com> kdudka has requested the watchbugzilla acl on nss (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Thu Jul 16 08:38:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 08:38:28 +0000 Subject: [pkgdb] nss: kdudka has requested watchcommits Message-ID: <20090716083828.D33DA10F8B9@bastion2.fedora.phx.redhat.com> kdudka has requested the watchcommits acl on nss (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From caolanm at fedoraproject.org Thu Jul 16 08:38:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 16 Jul 2009 08:38:33 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1963,1.1964 Message-ID: <20090716083833.96A7211C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5187 Modified Files: openoffice.org.spec Log Message: remove workaround for rhbz#494817 which is apparently fixed now Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1963 retrieving revision 1.1964 diff -u -p -r1.1963 -r1.1964 --- openoffice.org.spec 16 Jul 2009 08:11:58 -0000 1.1963 +++ openoffice.org.spec 16 Jul 2009 08:38:01 -0000 1.1964 @@ -2267,8 +2267,6 @@ for file in *.desktop; do sed -i -e "s/$PRODUCTVERSIONSHORT//g" $file # add X-GIO-NoFuse so we get url:// instead of file://~.gvfs/ echo X-GIO-NoFuse=true >> $file - # rhbz#494817 temporarily strip " program " from .desktops - sed -i -e "s/ program / program??/g" $file done echo "StartupNotify=true" >> base.desktop echo "StartupNotify=true" >> calc.desktop @@ -2343,8 +2341,6 @@ for file in *.desktop; do sed -i -e "s/openoffice/broffice/g" $file # add X-GIO-NoFuse so we get url:// instead of file://~.gvfs/ echo X-GIO-NoFuse=true >> $file - # rhbz#494817 temporarily strip " program " from .desktops - sed -i -e "s/ program / program??/g" $file done echo "StartupNotify=true" >> base.desktop echo "StartupNotify=true" >> calc.desktop From ravenoak at fedoraproject.org Thu Jul 16 08:41:23 2009 From: ravenoak at fedoraproject.org (Caitlyn O'Hanna) Date: Thu, 16 Jul 2009 08:41:23 +0000 (UTC) Subject: rpms/pysvn/F-10 pysvn.spec,1.6,1.7 sources,1.5,1.6 Message-ID: <20090716084123.BAC0A11C0099@cvs1.fedora.phx.redhat.com> Author: ravenoak Update of /cvs/pkgs/rpms/pysvn/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5712 Modified Files: pysvn.spec sources Log Message: Update F10 to 1.7.0 package Index: pysvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-10/pysvn.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pysvn.spec 6 Mar 2009 05:52:31 -0000 1.6 +++ pysvn.spec 16 Jul 2009 08:40:53 -0000 1.7 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pysvn -Version: 1.6.3 -Release: 2%{dist} +Version: 1.7.0 +Release: 1%{dist} Summary: Pythonic style bindings for Subversion Group: Development/Languages License: ASL 1.1 @@ -25,9 +25,7 @@ Pythonic style bindings for Subversion %build pushd Source -#%{__python} setup.py backport CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py configure --enable-debug --verbose --norpath --fixed-module-name -# Set correct build flags %{__sed} -i -e 's/-Wall -fPIC -fexceptions -frtti/%{optflags} -fPIC -frtti/' Makefile %{__make} %{?_smp_mflags} @@ -53,8 +51,23 @@ pushd Tests %{python_sitearch}/%{name} %changelog -* Thu Mar 05 2009 Caitlyn O'Hanna - 1.6.3-2 -- Update to 1.6.3, removed benchmark patch +* Mon Jun 29 2009 Caitlyn O'Hanna - 1.7.0-1 +- Update to new version + +* Wed Mar 04 2009 Caitlyn O'Hanna - 1.6.3-2 +- Remove the benchmark patch. Changes included in this release. + +* Tue Mar 03 2009 Caitlyn O'Hanna - 1.6.3-1 +- Update to 1.6.3 + +* Thu Feb 26 2009 Fedora Release Engineering - 1.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jan 17 2009 Tomas Mraz - 1.6.2-3 +- rebuild with new openssl + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 1.6.2-2 +- Rebuild for Python 2.6 * Tue Oct 28 2008 Caitlyn O'Hanna - 1.6.2-1 - Upstream to 1.6.2, upstream provided some build fixes to remove patches Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 6 Mar 2009 05:35:33 -0000 1.5 +++ sources 16 Jul 2009 08:40:53 -0000 1.6 @@ -1 +1 @@ -41d312ff09b05f7b53d3641a82c64c93 pysvn-1.6.3.tar.gz +77614676d24bca45749034ea6ec449d8 pysvn-1.7.0.tar.gz From ovasik at fedoraproject.org Thu Jul 16 08:45:08 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 16 Jul 2009 08:45:08 +0000 (UTC) Subject: rpms/tar/devel tar.spec,1.83,1.84 Message-ID: <20090716084508.CC4BF11C0099@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/tar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6936 Modified Files: tar.spec Log Message: Move autoreconf to build section ;) Index: tar.spec =================================================================== RCS file: /cvs/extras/rpms/tar/devel/tar.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- tar.spec 16 Jul 2009 08:32:49 -0000 1.83 +++ tar.spec 16 Jul 2009 08:44:38 -0000 1.84 @@ -45,9 +45,9 @@ the rmt package. %patch6 -p1 -b .rofs %patch7 -p1 -b .shortread %patch8 -p1 -b .headerblackmagic -autoreconf %build +autoreconf %configure --bindir=/bin --libexecdir=/sbin make From chitlesh at fedoraproject.org Thu Jul 16 08:46:19 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Thu, 16 Jul 2009 08:46:19 +0000 (UTC) Subject: rpms/knetstats/devel import.log, NONE, 1.1 .cvsignore, 1.4, 1.5 knetstats.spec, 1.17, 1.18 sources, 1.4, 1.5 Message-ID: <20090716084619.2DB7E11C0099@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/knetstats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7359/devel Modified Files: .cvsignore knetstats.spec sources Added Files: import.log Log Message: 1.6.2 --- NEW FILE import.log --- knetstats-1_6_2-1_fc11:HEAD:knetstats-1.6.2-1.fc11.src.rpm:1247733815 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/knetstats/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 12 Jan 2007 20:33:22 -0000 1.4 +++ .cvsignore 16 Jul 2009 08:45:48 -0000 1.5 @@ -1 +1 @@ -knetstats-1.6.1.tar.bz2 +knetstats-1.6.2.tar.bz2 Index: knetstats.spec =================================================================== RCS file: /cvs/pkgs/rpms/knetstats/devel/knetstats.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- knetstats.spec 25 Feb 2009 11:39:27 -0000 1.17 +++ knetstats.spec 16 Jul 2009 08:45:48 -0000 1.18 @@ -1,7 +1,7 @@ Name: knetstats -Version: 1.6.1 -Release: 9%{?dist} -Summary: Network monitor in KDE +Version: 1.6.2 +Release: 1%{?dist} +Summary: A KDE Network monitor License: GPLv2 Group: Applications/Internet @@ -21,9 +21,7 @@ the transfer rate of any network interfa %prep %setup -q -# cleaner/easier than auto* hacks below -- Rex -make -f admin/Makefile.common - +sed -i "s|automake\*1.10\*|automake\*1.10\*\|automake\*1.11\*|" admin/cvs.sh #missing: line 52: automake-1.9: command not found #%{__aclocal} #%{__automake} --add-missing --copy @@ -64,7 +62,7 @@ touch --no-create %{_datadir}/icons/hico %files -f %{name}.lang %defattr(-,root,root,-) -%doc README +%doc src/CHANGELOG src/COPYING-DOCS %{_bindir}/%{name} %{_datadir}/apps/%{name}/ %{_datadir}/icons/hicolor/*/apps/%{name}.png @@ -72,6 +70,9 @@ touch --no-create %{_datadir}/icons/hico %{_docdir}/HTML/en/%{name}/ %changelog +* Thu Jul 16 2009 Chitlesh Goorah - 1.6.2-1 +- New upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/knetstats/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 12 Jan 2007 20:33:22 -0000 1.4 +++ sources 16 Jul 2009 08:45:48 -0000 1.5 @@ -1 +1 @@ -219f1a94170386621802355b33989ec9 knetstats-1.6.1.tar.bz2 +6d437b702ce41403575cec5c94a8ae94 knetstats-1.6.2.tar.bz2 From nphilipp at fedoraproject.org Thu Jul 16 08:50:42 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Thu, 16 Jul 2009 08:50:42 +0000 (UTC) Subject: rpms/gimp/devel gimp.spec,1.194,1.195 Message-ID: <20090716085042.ACFA811C0099@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gimp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8390 Modified Files: gimp.spec Log Message: rebuild against gegl-0.1 (#510209) Index: gimp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp/devel/gimp.spec,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- gimp.spec 29 Jun 2009 11:38:40 -0000 1.194 +++ gimp.spec 16 Jul 2009 08:50:12 -0000 1.195 @@ -31,7 +31,7 @@ Summary: GNU Image Manipulation P Name: gimp Epoch: 2 Version: 2.6.6 -Release: 6%{?dist} +Release: 7%{?dist} %define binver 2.6 %define gimp_lang_ver 20 %define interfacever 2.0 @@ -498,6 +498,9 @@ fi %{_libdir}/gimp/%{interfacever}/plug-ins/help-browser %changelog +* Thu Jul 16 2009 Nils Philippsen - 2:2.6.6-7 +- rebuild against gegl-0.1 (#510209) + * Mon Jun 29 2009 Nils Philippsen - 2:2.6.6-6 - really fix help browser crash with new WebKit versions (#508301) From ovasik at fedoraproject.org Thu Jul 16 08:57:55 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 16 Jul 2009 08:57:55 +0000 (UTC) Subject: rpms/tar/F-11 tar-1.22-fortifysourcessigabrt.patch, NONE, 1.1 tar-1.19-xattrs-conf.patch, 1.6, 1.7 tar-1.19-xattrs.patch, 1.9, 1.10 tar.spec, 1.80, 1.81 Message-ID: <20090716085755.6472011C0099@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/tar/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10209 Modified Files: tar-1.19-xattrs-conf.patch tar-1.19-xattrs.patch tar.spec Added Files: tar-1.22-fortifysourcessigabrt.patch Log Message: Fix restoring of directory default acls(#511145), Do not patch generated autotools files, Do not sigabrt with new gcc/glibc because of writing to struct members of gnutar header at once via strcpy tar-1.22-fortifysourcessigabrt.patch: --- NEW FILE tar-1.22-fortifysourcessigabrt.patch --- diff -urNp tar-1.22-orig/src/create.c tar-1.22/src/create.c --- tar-1.22-orig/src/create.c 2009-07-09 18:38:37.000000000 +0200 +++ tar-1.22/src/create.c 2009-07-09 18:43:44.000000000 +0200 @@ -578,7 +578,10 @@ write_gnu_long_link (struct tar_stat_inf GNAME_TO_CHARS (tmpname, header->header.gname); free (tmpname); - strcpy (header->header.magic, OLDGNU_MAGIC); + /* OLDGNU_MAGIC is string with 7 chars + NULL */ + strncpy (header->header.magic, OLDGNU_MAGIC, sizeof(header->header.magic)); + strncpy (header->header.version, OLDGNU_MAGIC+sizeof(header->header.magic), + sizeof(header->header.version)); header->header.typeflag = type; finish_header (st, header, -1); @@ -908,9 +911,13 @@ start_header (struct tar_stat_info *st) break; case OLDGNU_FORMAT: - case GNU_FORMAT: /*FIXME?*/ - /* Overwrite header->header.magic and header.version in one blow. */ - strcpy (header->header.magic, OLDGNU_MAGIC); + case GNU_FORMAT: + /* OLDGNU_MAGIC is string with 7 chars + NULL */ + strncpy (header->header.magic, OLDGNU_MAGIC, + sizeof(header->header.magic)); + strncpy (header->header.version, + OLDGNU_MAGIC+sizeof(header->header.magic), + sizeof(header->header.version)); break; case POSIX_FORMAT: tar-1.19-xattrs-conf.patch: Index: tar-1.19-xattrs-conf.patch =================================================================== RCS file: /cvs/extras/rpms/tar/F-11/tar-1.19-xattrs-conf.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tar-1.19-xattrs-conf.patch 5 Mar 2009 09:07:03 -0000 1.6 +++ tar-1.19-xattrs-conf.patch 16 Jul 2009 08:57:54 -0000 1.7 @@ -123,677 +123,3 @@ diff -urNp tar-1.22-orig/config.hin tar- /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL -diff -urNp tar-1.22-orig/configure tar-1.22/configure ---- tar-1.22-orig/configure 2009-03-05 08:05:20.000000000 +0100 -+++ tar-1.22/configure 2009-03-05 09:57:06.000000000 +0100 -@@ -2127,6 +2127,9 @@ ac_header_list="$ac_header_list sys/tpri - ac_header_list="$ac_header_list sys/tape.h" - ac_header_list="$ac_header_list unistd.h" - ac_header_list="$ac_header_list locale.h" -+ac_header_list="$ac_header_list selinux/selinux.h" -+ac_header_list="$ac_header_list attr/xattr.h" -+ac_header_list="$ac_header_list sys/acl.h" - ac_func_list="$ac_func_list flockfile" - ac_func_list="$ac_func_list funlockfile" - ac_header_list="$ac_header_list features.h" -@@ -6022,7 +6025,14 @@ return strerror (); - return 0; - } - _ACEOF --rm -f conftest.$ac_objext conftest$ac_exeext -+for ac_lib in '' cposix; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ rm -f conftest.$ac_objext conftest$ac_exeext - if { (ac_try="$ac_link" - case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -@@ -6040,25 +6050,35 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then -- ac_cv_lib_cposix_strerror=yes -+ ac_cv_search_strerror=$ac_res - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 - -- ac_cv_lib_cposix_strerror=no -+ - fi - - rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -- conftest$ac_exeext conftest.$ac_ext --LIBS=$ac_check_lib_save_LIBS -+ conftest$ac_exeext -+ if test "${ac_cv_search_strerror+set}" = set; then -+ break - fi --{ echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5 --echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6; } --if test $ac_cv_lib_cposix_strerror = yes; then -- LIBS="$LIBS -lcposix" -+done -+if test "${ac_cv_search_strerror+set}" = set; then -+ : -+else -+ ac_cv_search_strerror=no - fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 -+echo "${ECHO_T}$ac_cv_search_strerror" >&6; } -+ac_res=$ac_cv_search_strerror -+if test "$ac_res" != no; then -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" - -- -+fi - - { echo "$as_me:$LINENO: checking for inline" >&5 - echo $ECHO_N "checking for inline... $ECHO_C" >&6; } -@@ -38773,6 +38793,257 @@ _ACEOF - fi - done - -+ -+ -+ -+ -+ -+ -+ -+ -+ -+for ac_func in getxattr fgetxattr lgetxattr \ -+ setxattr fsetxattr lsetxattr \ -+ listxattr flistxattr llistxattr -+do -+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -+{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+/* Define $ac_func to an innocuous variant, in case declares $ac_func. -+ For example, HP-UX 11i declares gettimeofday. */ -+#define $ac_func innocuous_$ac_func -+ -+/* System header to define __stub macros and hopefully few prototypes, -+ which can conflict with char $ac_func (); below. -+ Prefer to if __STDC__ is defined, since -+ exists even on freestanding compilers. */ -+ -+#ifdef __STDC__ -+# include -+#else -+# include -+#endif -+ -+#undef $ac_func -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char $ac_func (); -+/* The GNU C library defines this for functions which it implements -+ to always fail with ENOSYS. Some functions are actually named -+ something starting with __ and the normal name is an alias. */ -+#if defined __stub_$ac_func || defined __stub___$ac_func -+choke me -+#endif -+ -+int -+main () -+{ -+return $ac_func (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ eval "$as_ac_var=yes" -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ eval "$as_ac_var=no" -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ac_res=`eval echo '${'$as_ac_var'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+if test `eval echo '${'$as_ac_var'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+cat >>confdefs.h <<\_ACEOF -+#define HAVE_XATTRS -+_ACEOF -+ -+fi -+done -+ -+ -+{ echo "$as_me:$LINENO: checking for getfilecon in -lselinux" >&5 -+echo $ECHO_N "checking for getfilecon in -lselinux... $ECHO_C" >&6; } -+if test "${ac_cv_lib_selinux_getfilecon+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lselinux $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char getfilecon (); -+int -+main () -+{ -+return getfilecon (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_selinux_getfilecon=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_cv_lib_selinux_getfilecon=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_selinux_getfilecon" >&5 -+echo "${ECHO_T}$ac_cv_lib_selinux_getfilecon" >&6; } -+if test $ac_cv_lib_selinux_getfilecon = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define HAVE_LIBSELINUX 1 -+_ACEOF -+ -+ LIBS="-lselinux $LIBS" -+ -+fi -+ -+ -+{ echo "$as_me:$LINENO: checking for acl_get_fd in -lacl" >&5 -+echo $ECHO_N "checking for acl_get_fd in -lacl... $ECHO_C" >&6; } -+if test "${ac_cv_lib_acl_acl_get_fd+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lacl $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char acl_get_fd (); -+int -+main () -+{ -+return acl_get_fd (); -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_acl_acl_get_fd=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_cv_lib_acl_acl_get_fd=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_fd" >&5 -+echo "${ECHO_T}$ac_cv_lib_acl_acl_get_fd" >&6; } -+if test $ac_cv_lib_acl_acl_get_fd = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define HAVE_LIBACL 1 -+_ACEOF -+ -+ LIBS="-lacl $LIBS" -+ -+fi -+ -+ - { echo "$as_me:$LINENO: checking whether getgrgid is declared" >&5 - echo $ECHO_N "checking whether getgrgid is declared... $ECHO_C" >&6; } - if test "${ac_cv_have_decl_getgrgid+set}" = set; then -@@ -40571,6 +40842,296 @@ fi - - done - -+ -+for ac_header in selinux/selinux.h -+do -+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ { echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include <$ac_header> -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include <$ac_header> -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} -+ ( cat <<\_ASBOX -+## ------------------------------ ## -+## Report this to bug-tar at gnu.org ## -+## ------------------------------ ## -+_ASBOX -+ ) | sed "s/^/$as_me: WARNING: /" >&2 -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ eval "$as_ac_Header=\$ac_header_preproc" -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+ -+fi -+if test `eval echo '${'$as_ac_Header'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+for ac_header in attr/xattr.h -+do -+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ { echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+$ac_includes_default -+#include <$ac_header> -+_ACEOF -+rm -f conftest.$ac_objext -+if { (ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_compile") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then -+ ac_header_compiler=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_compiler=no -+fi -+ -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -+echo "${ECHO_T}$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+#include <$ac_header> -+_ACEOF -+if { (ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } >/dev/null && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then -+ ac_header_preproc=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_header_preproc=no -+fi -+ -+rm -f conftest.err conftest.$ac_ext -+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -+echo "${ECHO_T}$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in -+ yes:no: ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} -+ ac_header_preproc=yes -+ ;; -+ no:yes:* ) -+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} -+ ( cat <<\_ASBOX -+## ------------------------------ ## -+## Report this to bug-tar at gnu.org ## -+## ------------------------------ ## -+_ASBOX -+ ) | sed "s/^/$as_me: WARNING: /" >&2 -+ ;; -+esac -+{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ eval "$as_ac_Header=\$ac_header_preproc" -+fi -+ac_res=`eval echo '${'$as_ac_Header'}'` -+ { echo "$as_me:$LINENO: result: $ac_res" >&5 -+echo "${ECHO_T}$ac_res" >&6; } -+ -+fi -+if test `eval echo '${'$as_ac_Header'}'` = yes; then -+ cat >>confdefs.h <<_ACEOF -+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ - { echo "$as_me:$LINENO: checking for iconv_t" >&5 - echo $ECHO_N "checking for iconv_t... $ECHO_C" >&6; } - if test "${ac_cv_type_iconv_t+set}" = set; then -diff -urNp tar-1.22-orig/src/Makefile.in tar-1.22/src/Makefile.in ---- tar-1.22-orig/src/Makefile.in 2009-03-05 08:05:26.000000000 +0100 -+++ tar-1.22/src/Makefile.in 2009-03-05 09:57:06.000000000 +0100 -@@ -143,7 +143,8 @@ am_tar_OBJECTS = buffer.$(OBJEXT) checkp - extract.$(OBJEXT) xheader.$(OBJEXT) incremen.$(OBJEXT) \ - list.$(OBJEXT) misc.$(OBJEXT) names.$(OBJEXT) sparse.$(OBJEXT) \ - suffix.$(OBJEXT) system.$(OBJEXT) tar.$(OBJEXT) \ -- transform.$(OBJEXT) update.$(OBJEXT) utf8.$(OBJEXT) -+ transform.$(OBJEXT) update.$(OBJEXT) utf8.$(OBJEXT) \ -+ xattrs.$(OBJEXT) - tar_OBJECTS = $(am_tar_OBJECTS) - am__DEPENDENCIES_1 = - am__DEPENDENCIES_2 = ../lib/libtar.a $(am__DEPENDENCIES_1) \ -@@ -653,7 +654,7 @@ sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --noinst_HEADERS = arith.h common.h tar.h -+noinst_HEADERS = arith.h common.h tar.h xattrs.h - tar_SOURCES = \ - buffer.c\ - checkpoint.c\ -@@ -672,11 +673,12 @@ tar_SOURCES = \ - tar.c\ - transform.c\ - update.c\ -- utf8.c -+ utf8.c\ -+ xattrs.c - - INCLUDES = -I$(top_srcdir)/lib -I../ -I../lib - LDADD = ../lib/libtar.a $(LIBINTL) $(LIBICONV) --tar_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) -+tar_LDADD = $(LIBS) $(LDADD) $(LIB_CLOCK_GETTIME) - all: all-am - - .SUFFIXES: -@@ -776,6 +778,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/transform.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/update.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/utf8.Po at am__quote@ -+ at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xattrs.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xheader.Po at am__quote@ - - .c.o: tar-1.19-xattrs.patch: Index: tar-1.19-xattrs.patch =================================================================== RCS file: /cvs/extras/rpms/tar/F-11/tar-1.19-xattrs.patch,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tar-1.19-xattrs.patch 5 Mar 2009 09:07:03 -0000 1.9 +++ tar-1.19-xattrs.patch 16 Jul 2009 08:57:54 -0000 1.10 @@ -1362,7 +1362,7 @@ diff -up /dev/null tar-1.17/src/xattrs.c +#else + xattrs__acls_set (st, file_name, ACL_TYPE_ACCESS, + st->acls_a_ptr, st->acls_a_len); -+ if (S_ISDIR (st->stat.st_mode)) ++ if ((typeflag == DIRTYPE) || (typeflag == GNUTYPE_DUMPDIR)) + xattrs__acls_set (st, file_name, ACL_TYPE_DEFAULT, + st->acls_d_ptr, st->acls_d_len); +#endif Index: tar.spec =================================================================== RCS file: /cvs/extras/rpms/tar/F-11/tar.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- tar.spec 2 Jul 2009 06:25:27 -0000 1.80 +++ tar.spec 16 Jul 2009 08:57:54 -0000 1.81 @@ -2,7 +2,7 @@ Summary: A GNU file archiving program Name: tar Epoch: 2 Version: 1.22 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Archiving URL: http://www.gnu.org/software/tar/ @@ -16,6 +16,7 @@ Patch4: tar-1.19-xattrs-conf.patch Patch5: tar-1.17-wildcards.patch Patch6: tar-1.22-atime-rofs.patch Patch7: tar-1.22-shortreadbuffer.patch +Patch8: tar-1.22-fortifysourcessigabrt.patch Prereq: info BuildRequires: autoconf automake gzip texinfo gettext libacl-devel libselinux-devel gawk rsh Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -43,8 +44,11 @@ the rmt package. %patch5 -p1 -b .wildcards %patch6 -p1 -b .rofs %patch7 -p1 -b .shortread +%patch8 -p1 -b .headerblackmagic + %build +autoreconf %configure --bindir=/bin --libexecdir=/sbin make @@ -93,6 +97,12 @@ fi %{_infodir}/tar.info* %changelog +* Thu Jul 16 2009 Ondrej Vasik 2:1.22-4 +- Fix restoring of directory default acls(#511145) +- Do not patch generated autotools files +- Do not sigabrt with new gcc/glibc because of writing to + struct members of gnutar header at once via strcpy + * Thu Jul 02 2009 Ondrej Vasik 2:1.22-3 - report record size only if the archive refers to a device (#487760) From jpopelka at fedoraproject.org Thu Jul 16 09:00:17 2009 From: jpopelka at fedoraproject.org (=?utf-8?b?SmnFmcOtIFBvcGVsa2E=?=) Date: Thu, 16 Jul 2009 09:00:17 +0000 (UTC) Subject: rpms/net-tools/F-10 net-tools-1.60-scanf-format.patch, NONE, 1.1 net-tools.spec, 1.97, 1.98 Message-ID: <20090716090017.45A5B11C0099@cvs1.fedora.phx.redhat.com> Author: jpopelka Update of /cvs/pkgs/rpms/net-tools/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10697 Modified Files: net-tools.spec Added Files: net-tools-1.60-scanf-format.patch Log Message: - scanf format length fix (non exploitable?) from Fabian Hugelshofer - URL tag changed to http://net-tools.berlios.de/ net-tools-1.60-scanf-format.patch: --- NEW FILE net-tools-1.60-scanf-format.patch --- diff -up net-tools-1.60/arp.c.scanf-format net-tools-1.60/arp.c --- net-tools-1.60/arp.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/arp.c 2009-07-08 11:43:39.000000000 +0200 @@ -557,7 +557,7 @@ static int arp_show(char *name) /* Read the ARP cache entries. */ for (num = 0; num < entries; num++) { fgets(line, sizeof(line), fp); - if (sscanf(line, "%s 0x%x 0x%x %100s %100s %100s\n", + if (sscanf(line, "%s 0x%x 0x%x %99s %99s %99s\n", ip, &type, &flags, hwa, mask, dev) < 4) break; diff -up net-tools-1.60/lib/inet_gr.c.scanf-format net-tools-1.60/lib/inet_gr.c --- net-tools-1.60/lib/inet_gr.c.scanf-format 2000-10-28 12:59:42.000000000 +0200 +++ net-tools-1.60/lib/inet_gr.c 2009-07-08 11:49:59.000000000 +0200 @@ -38,7 +38,7 @@ extern char *INET_sprintmask(struct sock int rprint_fib(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], net_addr[128]; char mask_addr[128]; int num, iflags, metric, refcnt, use, mss, window, irtt; @@ -69,18 +69,18 @@ int rprint_fib(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_ROUTE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Mask", "%128s", + "Mask", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d\n" */ if (!fmt) return 1; @@ -205,7 +205,7 @@ int rprint_fib(int ext, int numeric) int rprint_cache(int ext, int numeric) { - char buff[1024], iface[16], flags[64]; + char buff[1024], iface[17], flags[64]; char gate_addr[128], dest_addr[128], specdst[128]; char src_addr[128]; struct sockaddr snet; @@ -269,20 +269,20 @@ int rprint_cache(int ext, int numeric) fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", "HH", "%d", "ARP", "%d", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d\n" */ } if (format == 2) { @@ -292,13 +292,13 @@ int rprint_cache(int ext, int numeric) "MSS Window irtt TOS HHRef HHUptod SpecDst\n")); fmt = proc_gen_fmt(_PATH_PROCNET_RTCACHE, 0, fp, "Iface", "%16s", - "Destination", "%128s", - "Gateway", "%128s", + "Destination", "%127s", + "Gateway", "%127s", "Flags", "%X", "RefCnt", "%d", "Use", "%d", "Metric", "%d", - "Source", "%128s", + "Source", "%127s", "MTU", "%d", "Window", "%d", "IRTT", "%d", @@ -307,7 +307,7 @@ int rprint_cache(int ext, int numeric) "HHUptod", "%d", "SpecDst", "%128s", NULL); - /* "%16s %128s %128s %X %d %d %d %128s %d %d %d %d %d %128s\n" */ + /* "%16s %127s %127s %X %d %d %d %127s %d %d %d %d %d %128s\n" */ } diff -up net-tools-1.60/lib/interface.c.scanf-format net-tools-1.60/lib/interface.c --- net-tools-1.60/lib/interface.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/lib/interface.c 2009-07-08 11:45:44.000000000 +0200 @@ -713,7 +713,7 @@ void ife_print_long(struct interface *pt #endif #if HAVE_AFINET6 FILE *f; - char addr6[40], devname[20]; + char addr6[40], devname[21]; struct sockaddr_in6 sap; int plen, scope, dad_status, if_idx; extern struct aftype inet6_aftype; diff -up net-tools-1.60/netstat.c.scanf-format net-tools-1.60/netstat.c --- net-tools-1.60/netstat.c.scanf-format 2009-07-08 11:17:09.000000000 +0200 +++ net-tools-1.60/netstat.c 2009-07-08 11:42:12.000000000 +0200 @@ -1105,7 +1105,7 @@ static void udp_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); @@ -1540,7 +1540,7 @@ static void raw_do_one(int lnr, const ch more[0] = '\0'; num = sscanf(line, - "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %512s\n", + "%d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %X %lX:%lX %X:%lX %lX %d %d %lu %511s\n", &d, local_addr, &local_port, rem_addr, &rem_port, &state, &txq, &rxq, &timer_run, &time_len, &retr, &uid, &timeout, &inode, more); Index: net-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-tools/F-10/net-tools.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- net-tools.spec 16 Oct 2008 10:23:21 -0000 1.97 +++ net-tools.spec 16 Jul 2009 09:00:16 -0000 1.98 @@ -3,10 +3,10 @@ Summary: Basic networking tools Name: net-tools Version: 1.60 -Release: 91%{?dist} +Release: 92%{?dist} License: GPL+ Group: System Environment/Base -URL: http://www.tazenda.demon.co.uk/phil/net-tools/ +URL: http://net-tools.berlios.de/ Source0: http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-%{version}.tar.bz2 Source1: http://www.red-bean.com/~bos/netplug/netplug-%{npversion}.tar.bz2 Source2: net-tools-%{version}-config.h @@ -82,6 +82,7 @@ Patch68: net-tools-1.60-a-option.patch Patch69: net-tools-1.60-clear-flag.patch Patch70: net-tools-1.60-metric-tunnel-man.patch Patch71: net-tools-1.60-netstat-probe.patch +Patch72: net-tools-1.60-scanf-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/chkconfig @@ -164,6 +165,7 @@ ifconfig, netstat, route, and others. %patch69 -p1 -b .clear-flag %patch70 -p1 -b .metric-tunnel-man %patch71 -p1 -b .probe +%patch72 -p1 -b .scanf-format cp %SOURCE2 ./config.h cp %SOURCE3 ./config.make @@ -279,6 +281,10 @@ exit 0 %{_sysconfdir}/rc.d/init.d/netplugd %changelog +* Wed Jul 8 2009 Jiri Popelka - 1.60-92 +- scanf format length fix (non exploitable?) from Fabian Hugelshofer +- URL tag changed to http://net-tools.berlios.de/ + * Thu Oct 16 2008 Zdenek Prikryl - 1.60-91 - fixed tcp timers info in netstat (#466845) From dchen at fedoraproject.org Thu Jul 16 08:02:19 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Thu, 16 Jul 2009 08:02:19 +0000 (UTC) Subject: rpms/ibus-table-array30/F-11 ibus-table-array30.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716080219.DFFEC11C0099@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/ibus-table-array30/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29626/F-11 Modified Files: .cvsignore sources Added Files: ibus-table-array30.spec import.log Log Message: Initial import --- NEW FILE ibus-table-array30.spec --- Name: ibus-table-array30 Version: 1.2.0.20090715 Release: 1%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?????? ibus-table ?????????????????? Summary(zh_TW): ?????? ibus-table ?????????????????? License: GPLv2+ Group: System Environment/Libraries URL: http://github.com/definite/ibus-table-array30/tree/master Source0: http://cloud.github.com/downloads/definite/ibus-table-array30/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: ibus-table >= 1.1 BuildRequires: cmake >= 2.4 Requires: ibus-table >= 1.1 Requires(post): ibus-table >= 1.1 %description The Array 30 Chinese input method for ibus-table. It covers more than 70 thousands Chinese characters, which are listed in unicode 3.1, %description -l zh_CN ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %description -l zh_TW ?????? ibus-table ??????????????????????????????????????????Unicode 3.1 ?????????????????? %prep %setup -q -n %{name}-%{version}-Source %build %cmake -DCMAKE_INSTALL_PREFIX='%{_usr}' make VERBOSE=1 C_DEFINES="$RPM_OPT_FLAGS" %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=%{buildroot} INSTALL="install -p" install %post ibus-table-createdb -i -n %{_datadir}/ibus-table/tables/Array30.db %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS README ChangeLog COPYING INSTALL %{_datadir}/ibus-table/tables/Array30.db %{_datadir}/ibus-table/icons/Array30.png %changelog * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. Revise spec file for package review [Bug 511196]. * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090714-1 Initial submit. --- NEW FILE import.log --- ibus-table-array30-1_2_0_20090715-1_fc11:F-11:ibus-table-array30-1.2.0.20090715-1.fc11.src.rpm:1247731293 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:40:25 -0000 1.1 +++ .cvsignore 16 Jul 2009 08:01:49 -0000 1.2 @@ -0,0 +1 @@ +ibus-table-array30-1.2.0.20090715-Source.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:40:26 -0000 1.1 +++ sources 16 Jul 2009 08:01:49 -0000 1.2 @@ -0,0 +1 @@ +6b641a1e921366ede4b7e2e665b455e8 ibus-table-array30-1.2.0.20090715-Source.tar.gz From mhlavink at fedoraproject.org Thu Jul 16 08:03:07 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Thu, 16 Jul 2009 08:03:07 +0000 (UTC) Subject: rpms/nmap/F-11 .cvsignore, 1.23, 1.24 nmap-4.52-noms.patch, 1.1, 1.2 nmap.spec, 1.53, 1.54 sources, 1.23, 1.24 Message-ID: <20090716080307.408D411C0099@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29732 Modified Files: .cvsignore nmap-4.52-noms.patch nmap.spec sources Log Message: updated to 4.90RC1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 15 Dec 2008 10:39:25 -0000 1.23 +++ .cvsignore 16 Jul 2009 08:02:36 -0000 1.24 @@ -1 +1 @@ -nmap-4.76.tar.bz2 +nmap-4.90RC1.tar.bz2 nmap-4.52-noms.patch: Index: nmap-4.52-noms.patch =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/nmap-4.52-noms.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nmap-4.52-noms.patch 7 Jan 2008 14:51:39 -0000 1.1 +++ nmap-4.52-noms.patch 16 Jul 2009 08:02:36 -0000 1.2 @@ -1,19 +1,19 @@ -diff -up nmap-4.52/docs/nmap.1.noms nmap-4.52/docs/nmap.1 ---- nmap-4.52/docs/nmap.1.noms 2008-01-07 12:51:51.000000000 +0100 -+++ nmap-4.52/docs/nmap.1 2008-01-07 12:52:11.000000000 +0100 -@@ -106,7 +106,7 @@ Nmap 4\.52 ( http://insecure\.org ) +diff -up nmap-4.90RC1/docs/nmap.1.noms nmap-4.90RC1/docs/nmap.1 +--- nmap-4.90RC1/docs/nmap.1.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.1 2009-07-16 09:58:22.090769947 +0200 +@@ -282,7 +282,7 @@ Nmap 4\&.90RC1 ( http://nmap\&.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: - Can pass hostnames, IP addresses, networks, etc\. -- Ex: scanme\.nmap\.org, microsoft\.com/24, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 -+ Ex: scanme\.nmap\.org, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 + Can pass hostnames, IP addresses, networks, etc\&. +- Ex: scanme\&.nmap\&.org, microsoft\&.com/24, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 ++ Ex: scanme\&.nmap\&.org, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 \-iL : Input from list of hosts/networks \-iR : Choose random targets - \-\-exclude : Exclude hosts/networks -diff -up nmap-4.52/docs/nmap.usage.txt.noms nmap-4.52/docs/nmap.usage.txt ---- nmap-4.52/docs/nmap.usage.txt.noms 2008-01-07 12:41:32.000000000 +0100 -+++ nmap-4.52/docs/nmap.usage.txt 2008-01-07 12:42:15.000000000 +0100 -@@ -2,7 +2,7 @@ Nmap 4.52 ( http://insecure.org ) + \-\-exclude : Exclude hosts/networks +diff -up nmap-4.90RC1/docs/nmap.usage.txt.noms nmap-4.90RC1/docs/nmap.usage.txt +--- nmap-4.90RC1/docs/nmap.usage.txt.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.usage.txt 2009-07-16 09:56:24.758078049 +0200 +@@ -2,7 +2,7 @@ Nmap 4.90RC1 ( http://nmap.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/nmap.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- nmap.spec 26 Feb 2009 05:50:25 -0000 1.53 +++ nmap.spec 16 Jul 2009 08:02:36 -0000 1.54 @@ -1,11 +1,12 @@ Summary: Network exploration tool and security scanner Name: nmap -Version: 4.76 -Release: 4%{?dist} +Version: 4.90 +%define betaver RC1 +Release: 0.%{betaver}%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 Group: Applications/System -Source0: http://nmap.org/dist/%{name}-%{version}.tar.bz2 +Source0: http://nmap.org/dist/%{name}-%{version}%{betaver}.tar.bz2 Source1: zenmap.desktop Source2: zenmap-root.pamd Source3: zenmap-root.consoleapps @@ -46,7 +47,7 @@ This package includes zenmap, a GTK+ fro be installed before installing nmap-frontend. %prep -%setup -q +%setup -q -n %{name}-%{version}%{betaver} %patch1 -p1 -b .mktemp %patch2 -p1 -b .noms %patch3 -p1 -b .nostrip @@ -99,8 +100,13 @@ rm -rf $RPM_BUILD_ROOT %doc docs/README %doc docs/nmap.usage.txt %{_bindir}/nmap -%{_datadir}/nmap +%{_bindir}/ncat +%{_bindir}/ndiff +%{_mandir}/man1/ndiff.1.gz %{_mandir}/man1/nmap.1.gz +%{_mandir}/man1/ncat.1.gz +%{_datadir}/nmap +%{_datadir}/ncat %files frontend %defattr(-,root,root) @@ -119,6 +125,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Thu Jul 16 2009 Michal Hlavinka - 2:4.90-0.RC1 +- updated to 4.90RC1 +- fix segmentation fault on scan (#509716) + * Wed Feb 25 2009 Fedora Release Engineering - 2:4.76-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 15 Dec 2008 10:39:25 -0000 1.23 +++ sources 16 Jul 2009 08:02:36 -0000 1.24 @@ -1 +1 @@ -278dd2e849cc3dbb947df961a1aaffd0 nmap-4.76.tar.bz2 +4355574dfdc3f86bfa85be0a6d9b5bf4 nmap-4.90RC1.tar.bz2 From sandeeps at fedoraproject.org Thu Jul 16 09:02:23 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Thu, 16 Jul 2009 09:02:23 +0000 (UTC) Subject: rpms/pothana2000-fonts/devel import.log, NONE, 1.1 pothana2000-fonts-fontconfig.conf, NONE, 1.1 pothana2000-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716090223.C0CFA11C0099@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/rpms/pothana2000-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11217/devel Modified Files: .cvsignore sources Added Files: import.log pothana2000-fonts-fontconfig.conf pothana2000-fonts.spec Log Message: --- NEW FILE import.log --- pothana2000-fonts-1_3_1-2_fc11:HEAD:pothana2000-fonts-1.3.1-2.fc11.src.rpm:1247734824 --- NEW FILE pothana2000-fonts-fontconfig.conf --- sans-serif Pothana2000 Pothana2000 sans-serif --- NEW FILE pothana2000-fonts.spec --- %global fontname pothana2000 %global fontconf 69-%{fontname}.conf Name: %{fontname}-fonts Version: 1.3.1 Release: 2%{?dist} Summary: Unicode compliant OpenType font for Telugu Group: User Interface/X License: GPLv2+ URL: http://www.kavya-nandanam.com/dload.htm Source0: Pothana2k-Li.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description Its Free OpenType font for Telugu created by Dr. Tirumala Krishna Desikacharyulu. %prep %setup -q -c -n %{name} sed -i 's/\r//' gpl.txt %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p Pothana2000.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} Pothana2000.ttf %doc gpl.txt %changelog * Wed Mar 25 2009 - 1.3.1-2 - Fixed download URL * Tue Mar 24 2009 - 1.3.1-1 - Font Exception text added to font license * Tue Jan 15 2008 - 1.3-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pothana2000-fonts/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:50:07 -0000 1.1 +++ .cvsignore 16 Jul 2009 09:01:53 -0000 1.2 @@ -0,0 +1 @@ +Pothana2k-Li.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pothana2000-fonts/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:50:08 -0000 1.1 +++ sources 16 Jul 2009 09:01:53 -0000 1.2 @@ -0,0 +1 @@ +8c392bfbc921d816b8659f9e330372ad Pothana2k-Li.zip From ravenoak at fedoraproject.org Thu Jul 16 09:11:50 2009 From: ravenoak at fedoraproject.org (Caitlyn O'Hanna) Date: Thu, 16 Jul 2009 09:11:50 +0000 (UTC) Subject: rpms/pysvn/F-10 pysvn.spec,1.7,1.8 Message-ID: <20090716091150.A722411C0099@cvs1.fedora.phx.redhat.com> Author: ravenoak Update of /cvs/pkgs/rpms/pysvn/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13364 Modified Files: pysvn.spec Log Message: Fix build failure, run backport Index: pysvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/F-10/pysvn.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pysvn.spec 16 Jul 2009 08:40:53 -0000 1.7 +++ pysvn.spec 16 Jul 2009 09:11:20 -0000 1.8 @@ -2,7 +2,7 @@ Name: pysvn Version: 1.7.0 -Release: 1%{dist} +Release: 2%{dist} Summary: Pythonic style bindings for Subversion Group: Development/Languages License: ASL 1.1 @@ -25,6 +25,7 @@ Pythonic style bindings for Subversion %build pushd Source +%{__python} setup.py backport CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py configure --enable-debug --verbose --norpath --fixed-module-name %{__sed} -i -e 's/-Wall -fPIC -fexceptions -frtti/%{optflags} -fPIC -frtti/' Makefile %{__make} %{?_smp_mflags} @@ -51,6 +52,9 @@ pushd Tests %{python_sitearch}/%{name} %changelog +* Thu Jul 16 2009 Caitlyn O'Hanna - 1.7.0-2 +- Need to run the backport first :) + * Mon Jun 29 2009 Caitlyn O'Hanna - 1.7.0-1 - Update to new version From john5342 at fedoraproject.org Thu Jul 16 09:11:49 2009 From: john5342 at fedoraproject.org (john5342) Date: Thu, 16 Jul 2009 09:11:49 +0000 (UTC) Subject: rpms/qzion/devel qzion-0.4.0-fix_char_conversion.patch, NONE, 1.1 qzion.spec, 1.3, 1.4 Message-ID: <20090716091149.4BB7C11C0099@cvs1.fedora.phx.redhat.com> Author: john5342 Update of /cvs/pkgs/rpms/qzion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13449 Modified Files: qzion.spec Added Files: qzion-0.4.0-fix_char_conversion.patch Log Message: * Thu Jul 16 2009 John5342 0.4.0-2 - Fix char* conversion (#511583) qzion-0.4.0-fix_char_conversion.patch: --- NEW FILE qzion-0.4.0-fix_char_conversion.patch --- --- a/python/qzion/qzionobject.sip +++ b/python/qzion/qzionobject.sip @@ -10,7 +10,7 @@ %ConvertToSubClassCode static struct classes { - char *name; + const char *name; sipWrapperType **type; } cls[] = { {sipName_QZionText, &sipClass_QZionText}, Index: qzion.spec =================================================================== RCS file: /cvs/pkgs/rpms/qzion/devel/qzion.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qzion.spec 6 Mar 2009 20:29:16 -0000 1.3 +++ qzion.spec 16 Jul 2009 09:11:48 -0000 1.4 @@ -4,7 +4,7 @@ Name: qzion Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A canvas abstraction Group: System Environment/Libraries @@ -13,6 +13,7 @@ URL: http://code.openbossa.or Source0: http://code.openbossa.org/projects/%{name}/repos/mainline/archive/d32223eae1bba7f1b191c334668f3f7dd662f582.tar.gz Patch0: qzion-0.4.0-fix_python_install.patch +Patch1: qzion-0.4.0-fix_char_conversion.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -63,6 +64,7 @@ the python bindings for %{name} %prep %setup -q -n %{name}-mainline %patch0 -p1 +%patch1 -p1 %build @@ -108,6 +110,9 @@ rm -rf %{buildroot} %{_datadir}/sip/%{name} %changelog +* Thu Jul 16 2009 John5342 0.4.0-2 +- Fix char* conversion (#511583) + * Fri Mar 06 2009 John5342 0.4.0-1 - Updated to new upstream release (0.4.0) From xhorak at fedoraproject.org Thu Jul 16 09:18:51 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 16 Jul 2009 09:18:51 +0000 (UTC) Subject: rpms/xulrunner/F-11 xulrunner.spec,1.161,1.162 Message-ID: <20090716091851.6184511C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14806 Modified Files: xulrunner.spec Log Message: Fixed wrong filename in spec file Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-11/xulrunner.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- xulrunner.spec 15 Jul 2009 09:34:39 -0000 1.161 +++ xulrunner.spec 16 Jul 2009 09:18:20 -0000 1.162 @@ -278,7 +278,7 @@ install_file "jsautocfg" popd pushd $RPM_BUILD_ROOT/%{_includedir}/${INTERNAL_APP_SDK_NAME}/js -install_file "jsconfig" +install_file "js-config" popd %{__install} -p -c -m 755 dist/bin/xpcshell \ From dsd at fedoraproject.org Thu Jul 16 09:24:20 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Thu, 16 Jul 2009 09:24:20 +0000 (UTC) Subject: rpms/olpc-switch-desktop/devel olpc-switch-desktop.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716092420.6391311C0099@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-switch-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15883 Modified Files: .cvsignore sources Added Files: olpc-switch-desktop.spec Log Message: import v0.6 --- NEW FILE olpc-switch-desktop.spec --- Name: olpc-switch-desktop Version: 0.6 Release: 1%{?dist} Summary: OLPC desktop switching utilities License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/dsd/olpc-switch-desktop Source0: http://dev.laptop.org/~dsd/olpc-switch-desktop/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: gettext, desktop-file-utils Requires: python, sugar, gtk2, desktop-file-utils, dbus %description This package contains a Sugar control panel extension for switching to GNOME, and a GNOME program for switching back to Sugar. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/olpc-switch-to-sugar.desktop %clean rm -rf $RPM_BUILD_ROOT %post /usr/bin/update-desktop-database %{_datadir}/applications &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING %{_bindir}/olpc-switch-to-sugar %{_datadir}/icons/hicolor/scalable/apps/olpc-switch-to-sugar.svg %{_datadir}/applications/olpc-switch-to-sugar.desktop %{_datadir}/sugar/data/icons/module-switch-desktop.svg %{_datadir}/sugar/extensions/cpsection/switchdesktop %changelog * Wed Jul 15 2009 Daniel Drake - 0.6-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-switch-desktop/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:42:51 -0000 1.1 +++ .cvsignore 16 Jul 2009 09:23:49 -0000 1.2 @@ -0,0 +1 @@ +olpc-switch-desktop-0.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-switch-desktop/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:42:51 -0000 1.1 +++ sources 16 Jul 2009 09:23:50 -0000 1.2 @@ -0,0 +1 @@ +bdbaebbb51274be96506156f94c07d76 olpc-switch-desktop-0.6.tar.bz2 From dsd at fedoraproject.org Thu Jul 16 09:32:30 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Thu, 16 Jul 2009 09:32:30 +0000 (UTC) Subject: rpms/olpc-switch-desktop/F-11 olpc-switch-desktop.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716093230.1E06C11C0099@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-switch-desktop/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17591 Modified Files: .cvsignore sources Added Files: olpc-switch-desktop.spec Log Message: import v0.6 --- NEW FILE olpc-switch-desktop.spec --- Name: olpc-switch-desktop Version: 0.6 Release: 1%{?dist} Summary: OLPC desktop switching utilities License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/dsd/olpc-switch-desktop Source0: http://dev.laptop.org/~dsd/olpc-switch-desktop/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: gettext, desktop-file-utils Requires: python, sugar, gtk2, desktop-file-utils, dbus %description This package contains a Sugar control panel extension for switching to GNOME, and a GNOME program for switching back to Sugar. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} desktop-file-validate $RPM_BUILD_ROOT/%{_datadir}/applications/olpc-switch-to-sugar.desktop %clean rm -rf $RPM_BUILD_ROOT %post /usr/bin/update-desktop-database %{_datadir}/applications &> /dev/null || : touch --no-create %{_datadir}/icons/hicolor if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %files -f %{name}.lang %defattr(-,root,root,-) %doc README COPYING %{_bindir}/olpc-switch-to-sugar %{_datadir}/icons/hicolor/scalable/apps/olpc-switch-to-sugar.svg %{_datadir}/applications/olpc-switch-to-sugar.desktop %{_datadir}/sugar/data/icons/module-switch-desktop.svg %{_datadir}/sugar/extensions/cpsection/switchdesktop %changelog * Wed Jul 15 2009 Daniel Drake - 0.6-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-switch-desktop/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:42:51 -0000 1.1 +++ .cvsignore 16 Jul 2009 09:31:59 -0000 1.2 @@ -0,0 +1 @@ +olpc-switch-desktop-0.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-switch-desktop/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:42:51 -0000 1.1 +++ sources 16 Jul 2009 09:31:59 -0000 1.2 @@ -0,0 +1 @@ +bdbaebbb51274be96506156f94c07d76 olpc-switch-desktop-0.6.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 09:35:43 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 09:35:43 +0000 (UTC) Subject: rpms/efte/EL-5 efte.spec,1.1,1.2 Message-ID: <20090716093543.3822911C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18122/EL-5 Modified Files: efte.spec Log Message: Fix EPEL build. Index: efte.spec =================================================================== RCS file: /cvs/pkgs/rpms/efte/EL-5/efte.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- efte.spec 2 Jul 2009 05:30:57 -0000 1.1 +++ efte.spec 16 Jul 2009 09:35:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: efte Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic @@ -78,6 +78,8 @@ for doc in Artistic AUTHORS COPYING HIST done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop +# Append encoding line to desktop file (necessary for EPEL) +echo "Encoding=UTF-8" >> packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt @@ -131,6 +133,9 @@ update-desktop-database &> /dev/null || %{_datadir}/efte/ %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.0-5 +- Fix EPEL build. + * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. From jussilehtola at fedoraproject.org Thu Jul 16 09:35:43 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 09:35:43 +0000 (UTC) Subject: rpms/efte/devel efte.spec,1.1,1.2 Message-ID: <20090716093543.4A41711C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/efte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18122/devel Modified Files: efte.spec Log Message: Fix EPEL build. Index: efte.spec =================================================================== RCS file: /cvs/pkgs/rpms/efte/devel/efte.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- efte.spec 2 Jul 2009 05:30:00 -0000 1.1 +++ efte.spec 16 Jul 2009 09:35:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: efte Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic @@ -78,6 +78,8 @@ for doc in Artistic AUTHORS COPYING HIST done # Delete version line from desktop file sed -i '/Version/d' packaging/shared/efte.desktop +# Append encoding line to desktop file (necessary for EPEL) +echo "Encoding=UTF-8" >> packaging/shared/efte.desktop # Remove optflags lines from cmake configs sed -i '/CMAKE_CXX_FLAGS/d' src/CMakeLists.txt @@ -131,6 +133,9 @@ update-desktop-database &> /dev/null || %{_datadir}/efte/ %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.0-5 +- Fix EPEL build. + * Tue Jun 23 2009 Jussi Lehtola - 1.0-4 - Fix review issues. - Branch nefte into an own package. From pkgdb at fedoraproject.org Thu Jul 16 09:42:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:42:51 +0000 Subject: [pkgdb] dumpasn1 ownership updated Message-ID: <20090716094251.8746110F84C@bastion2.fedora.phx.redhat.com> Package dumpasn1 in Fedora devel is now owned by fkooman To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dumpasn1 From pkgdb at fedoraproject.org Thu Jul 16 09:42:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:42:59 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090716094259.2220610F8A3@bastion2.fedora.phx.redhat.com> markmc has set the watchbugzilla acl on qemu (Fedora devel) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Thu Jul 16 09:43:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:43:01 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090716094302.1286D10F8AC@bastion2.fedora.phx.redhat.com> markmc has set the watchcommits acl on qemu (Fedora devel) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Thu Jul 16 09:43:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:43:03 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090716094303.E9F2D10F8B4@bastion2.fedora.phx.redhat.com> markmc has set the commit acl on qemu (Fedora devel) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Thu Jul 16 09:43:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:43:05 +0000 Subject: [pkgdb] qemu had acl change status Message-ID: <20090716094306.217AA10F8B9@bastion2.fedora.phx.redhat.com> markmc has set the approveacls acl on qemu (Fedora devel) to Approved for berrange To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From hadess at fedoraproject.org Thu Jul 16 09:51:18 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 09:51:18 +0000 (UTC) Subject: rpms/obexd/devel .cvsignore, 1.11, 1.12 obexd.spec, 1.11, 1.12 sources, 1.11, 1.12 Message-ID: <20090716095118.8796B11C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/obexd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21156 Modified Files: .cvsignore obexd.spec sources Log Message: * Thu Jul 16 2009 Bastien Nocera 0.15-1 - Update to 0.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 3 Jul 2009 16:29:06 -0000 1.11 +++ .cvsignore 16 Jul 2009 09:50:47 -0000 1.12 @@ -1 +1 @@ -obexd-0.14.tar.gz +obexd-0.15.tar.gz Index: obexd.spec =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/obexd.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- obexd.spec 3 Jul 2009 16:29:06 -0000 1.11 +++ obexd.spec 16 Jul 2009 09:50:47 -0000 1.12 @@ -1,5 +1,5 @@ Name: obexd -Version: 0.14 +Version: 0.15 Release: 1%{?dist} Summary: D-Bus service for Obex Client access @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/obex-client.service %changelog +* Thu Jul 16 2009 Bastien Nocera 0.15-1 +- Update to 0.15 + * Fri Jul 03 2009 Bastien Nocera 0.14-1 - Update to 0.14 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 3 Jul 2009 16:29:06 -0000 1.11 +++ sources 16 Jul 2009 09:50:47 -0000 1.12 @@ -1 +1 @@ -6f2ba678f944e29333d6dc8ae1133e6e obexd-0.14.tar.gz +f9adc013e0e4b26c992cc0ca05328f3d obexd-0.15.tar.gz From pkgdb at fedoraproject.org Thu Jul 16 09:53:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:53:42 +0000 Subject: [pkgdb] strace: schwab has requested watchbugzilla Message-ID: <20090716095342.8267710F888@bastion2.fedora.phx.redhat.com> schwab has requested the watchbugzilla acl on strace (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 09:53:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:53:43 +0000 Subject: [pkgdb] strace: schwab has requested watchcommits Message-ID: <20090716095343.2CB3610F89C@bastion2.fedora.phx.redhat.com> schwab has requested the watchcommits acl on strace (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 09:53:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 09:53:45 +0000 Subject: [pkgdb] strace: schwab has requested commit Message-ID: <20090716095345.B14A110F8A9@bastion2.fedora.phx.redhat.com> schwab has requested the commit acl on strace (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From berrange at fedoraproject.org Thu Jul 16 09:54:22 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Thu, 16 Jul 2009 09:54:22 +0000 (UTC) Subject: rpms/qemu/devel 80-kvm.rules,NONE,1.1 qemu.spec,1.108,1.109 Message-ID: <20090716095422.6FCA411C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21863 Modified Files: qemu.spec Added Files: 80-kvm.rules Log Message: Add udev rules to make /dev/kvm world accessible and group=kvm (rhbz #497341) Create a kvm group if it doesn't exist (rhbz #346151) --- NEW FILE 80-kvm.rules --- KERNEL=="kvm", GROUP="kvm", MODE="0666" Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- qemu.spec 8 Jul 2009 04:01:27 -0000 1.108 +++ qemu.spec 16 Jul 2009 09:53:52 -0000 1.109 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 9.%{kvmvertag}%{?dist} +Release: 10.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -15,6 +15,7 @@ URL: http://www.qemu.org/ Source0: http://download.sourceforge.net/sourceforge/kvm/qemu-%{kvmverfull}.tar.gz Source1: qemu.init Source2: kvm.modules +Source3: 80-kvm.rules # Not upstream, why? Patch01: qemu-bios-bigger-roms.patch @@ -280,16 +281,18 @@ make V=1 %{?_smp_mflags} $buildldflags rm -rf $RPM_BUILD_ROOT %ifarch %{ix86} x86_64 -mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/modules +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules mkdir -p $RPM_BUILD_ROOT%{_bindir}/ mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name} +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d -install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/modules/kvm.modules +install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/kvm.modules install -m 0755 kvm/extboot/extboot.bin $RPM_BUILD_ROOT%{_datadir}/%{name} install -m 0755 kvm/user/kvmtrace $RPM_BUILD_ROOT%{_bindir}/ install -m 0755 kvm/user/kvmtrace_format $RPM_BUILD_ROOT%{_bindir}/ install -m 0755 kvm/kvm_stat $RPM_BUILD_ROOT%{_bindir}/ install -m 0755 qemu-kvm $RPM_BUILD_ROOT%{_bindir}/ +install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d %endif make prefix="${RPM_BUILD_ROOT}%{_prefix}" \ @@ -300,7 +303,7 @@ make prefix="${RPM_BUILD_ROOT}%{_prefix} datadir="${RPM_BUILD_ROOT}%{_datadir}/%{name}" install chmod -x ${RPM_BUILD_ROOT}%{_mandir}/man1/* install -D -p -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/qemu -install -D -p -m 0644 -t ${RPM_BUILD_ROOT}/%{qemudocdir} Changelog README TODO COPYING COPYING.LIB LICENSE +install -D -p -m 0644 -t ${RPM_BUILD_ROOT}%{qemudocdir} Changelog README TODO COPYING COPYING.LIB LICENSE install -D -p -m 0644 qemu.sasl $RPM_BUILD_ROOT%{_sysconfdir}/sasl2/qemu.conf @@ -336,9 +339,11 @@ rm -rf $RPM_BUILD_ROOT %post system-x86 %ifarch %{ix86} x86_64 +# Create kvm group in case this is an upgrade with pre-existing /etc/group +/usr/sbin/groupadd -r -g 36 kvm 2> /dev/null || : # load kvm modules now, so we can make sure no reboot is needed. # If there's already a kvm module installed, we don't mess with it -sh /%{_sysconfdir}/sysconfig/modules/kvm.modules +sh %{_sysconfdir}/sysconfig/modules/kvm.modules %endif %post user @@ -413,6 +418,7 @@ fi %{_datadir}/%{name}/extboot.bin %{_bindir}/qemu-kvm %{_sysconfdir}/sysconfig/modules/kvm.modules +%{_sysconfdir}/udev/rules.d/80-kvm.rules %files kvm-tools %defattr(-,root,root,-) %{_bindir}/kvmtrace @@ -460,6 +466,10 @@ fi %{_mandir}/man1/qemu-img.1* %changelog +* Wed Jul 15 2009 Daniel Berrange - 2:0.10.50-10.kvm87 +- Add udev rules to make /dev/kvm world accessible & group=kvm (rhbz #497341) +- Create a kvm group if it doesn't exist (rhbz #346151) + * Tue Jul 07 2009 Glauber Costa - 2:0.10.50-9.kvm87 - use pxe roms from gpxe, instead of etherboot package. From npajkovs at fedoraproject.org Thu Jul 16 10:28:11 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Thu, 16 Jul 2009 10:28:11 +0000 (UTC) Subject: rpms/cdrkit/devel cdrkit-1.1.9-buffer_overflow.patch, NONE, 1.1 cdrkit.spec, 1.26, 1.27 Message-ID: <20090716102811.4FF0611C0099@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/cdrkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28095 Modified Files: cdrkit.spec Added Files: cdrkit-1.1.9-buffer_overflow.patch Log Message: fix buffer overflow cdrkit-1.1.9-buffer_overflow.patch: --- NEW FILE cdrkit-1.1.9-buffer_overflow.patch --- Pouze v master-1.1.9/wodim: isosize.c.werror diff -ru origin-1.1.9/wodim/scsi_cdr.c master-1.1.9/wodim/scsi_cdr.c --- origin-1.1.9/wodim/scsi_cdr.c 2008-02-25 12:14:07.000000000 +0100 +++ master-1.1.9/wodim/scsi_cdr.c 2009-07-16 12:01:29.000000000 +0200 @@ -2181,26 +2181,30 @@ if (inq->add_len == 0) { if (usalp->dev == DEV_UNKNOWN && got_inquiry) { usalp->dev = DEV_ACB5500; - strcpy(inq->vendor_info, - "ADAPTEC ACB-5500 FAKE"); + strncpy(inq->vendor_info, "ADAPTEC ", 8); + strncpy(inq->prod_ident,"ACB-5500 ", 16); + strncpy(inq->prod_revision, "FAKE", 4); } else switch (usalp->dev) { - case DEV_ACB40X0: - strcpy(inq->vendor_info, - "ADAPTEC ACB-40X0 FAKE"); + strncpy(inq->vendor_info, "ADAPTEC ", 8); + strncpy(inq->prod_ident, "ACB-40X0 ",16); + strncpy(inq->prod_revision, "FAKE", 4); break; case DEV_ACB4000: - strcpy(inq->vendor_info, - "ADAPTEC ACB-4000 FAKE"); + strncpy(inq->vendor_info, "ADAPTEC ",8); + strncpy(inq->prod_ident, "ACB-4000 ",16); + strncpy(inq->prod_revision, "FAKE",4); break; case DEV_ACB4010: - strcpy(inq->vendor_info, - "ADAPTEC ACB-4010 FAKE"); + strncpy(inq->vendor_info, "ADAPTEC ",8); + strncpy(inq->prod_ident, "ACB-4010 ",16); + strncpy(inq->prod_revision, "FAKE",4); break; case DEV_ACB4070: - strcpy(inq->vendor_info, - "ADAPTEC ACB-4070 FAKE"); + strncpy(inq->vendor_info,"ADAPTEC ",8); + strncpy(inq->prod_ident, "ACB-4070 ", 16); + strncpy(inq->prod_revision, "FAKE",4 ); break; } } else if (inq->add_len < 31) { @@ -2230,14 +2234,16 @@ case INQ_SEQD: if (usalp->dev == DEV_SC4000) { - strcpy(inq->vendor_info, - "SYSGEN SC4000 FAKE"); + strncpy(inq->vendor_info,"SYSGEN ",8); + strncpy(inq->prod_ident, "SC4000 ",16); + strncpy(inq->prod_revision, "FAKE",4); } else if (inq->add_len == 0 && inq->removable && inq->ansi_version == 1) { usalp->dev = DEV_MT02; - strcpy(inq->vendor_info, - "EMULEX MT02 FAKE"); + strncpy(inq->vendor_info,"EMULEX ",8); + strncpy(inq->prod_ident, "MT02 ",16); + strncpy(inq->prod_revision, "FAKE",4); } break; Index: cdrkit.spec =================================================================== RCS file: /cvs/extras/rpms/cdrkit/devel/cdrkit.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- cdrkit.spec 10 Jul 2009 20:40:49 -0000 1.26 +++ cdrkit.spec 16 Jul 2009 10:28:09 -0000 1.27 @@ -1,7 +1,7 @@ Summary: A collection of CD/DVD utilities Name: cdrkit Version: 1.1.9 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/System URL: http://cdrkit.org/ @@ -11,6 +11,7 @@ Patch1: cdrkit-1.1.8-werror.patch Patch2: cdrkit-1.1.9-efi-boot.patch Patch3: cdrkit-1.1.9-types.patch Patch4: cdrkit-1.1.9-no_mp3.patch +Patch5: cdrkit-1.1.9-buffer_overflow.patch BuildRequires: cmake libcap-devel zlib-devel perl file-devel bzip2-devel @@ -84,6 +85,7 @@ rates. Icedax can also be used as a CD p %patch2 -p1 -b .efi %patch3 -p1 -b .types %patch4 -p1 -b .no_mp3 +%patch5 -p1 -b .buffer_overflow find . -type f -print0 | xargs -0 perl -pi -e 's#/usr/local/bin/perl#/usr/bin/perl#g' find doc -type f -print0 | xargs -0 chmod a-x @@ -97,8 +99,10 @@ export CXXFLAGS="$CFLAGS" export FFLAGS="$CFLAGS" cmake .. \ -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \ - -DBUILD_SHARED_LIBS:BOOL=ON -make VERBOSE=1 %{?_smp_mflags} + -DBUILD_SHARED_LIBS:BOOL=ON \ + --debug-output \ + --trace +make VERBOSE=2 %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -226,6 +230,9 @@ fi %{_mandir}/man1/dirsplit.* %changelog +* Thu Jul 16 2009 Nikola Pajkovsky 1.1.9-8 +- fix buffer overflow + * Fri Jul 10 2009 Adam Jackson 1.1.9-7 - Move dirsplit to a subpackage to isolate the perl dependency. From npajkovs at fedoraproject.org Thu Jul 16 10:39:37 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Thu, 16 Jul 2009 10:39:37 +0000 (UTC) Subject: rpms/cdrkit/devel cdrkit-1.1.9-buffer_overflow.patch,1.1,1.2 Message-ID: <20090716103937.B20B911C0099@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/cdrkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30571 Modified Files: cdrkit-1.1.9-buffer_overflow.patch Log Message: fix: I forgot erase first line in patch. cdrkit-1.1.9-buffer_overflow.patch: Index: cdrkit-1.1.9-buffer_overflow.patch =================================================================== RCS file: /cvs/extras/rpms/cdrkit/devel/cdrkit-1.1.9-buffer_overflow.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cdrkit-1.1.9-buffer_overflow.patch 16 Jul 2009 10:28:09 -0000 1.1 +++ cdrkit-1.1.9-buffer_overflow.patch 16 Jul 2009 10:39:37 -0000 1.2 @@ -1,4 +1,3 @@ -Pouze v master-1.1.9/wodim: isosize.c.werror diff -ru origin-1.1.9/wodim/scsi_cdr.c master-1.1.9/wodim/scsi_cdr.c --- origin-1.1.9/wodim/scsi_cdr.c 2008-02-25 12:14:07.000000000 +0100 +++ master-1.1.9/wodim/scsi_cdr.c 2009-07-16 12:01:29.000000000 +0200 From rhughes at fedoraproject.org Thu Jul 16 10:47:20 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Thu, 16 Jul 2009 10:47:20 +0000 (UTC) Subject: rpms/hal-info/devel .cvsignore, 1.24, 1.25 hal-info.spec, 1.43, 1.44 sources, 1.25, 1.26 hal-info-20090330-dell-media-key-hub.patch, 1.1, NONE Message-ID: <20090716104720.40E3611C0099@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/hal-info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31932 Modified Files: .cvsignore hal-info.spec sources Removed Files: hal-info-20090330-dell-media-key-hub.patch Log Message: * Thu Jul 16 2009 Richard Hughes - 20090716-1 - New upstream release to fix some more music players, resume problems and keymaps. See http://lists.freedesktop.org/archives/hal/2009-July/013481.html for full list. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hal-info/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 14 Apr 2009 16:34:01 -0000 1.24 +++ .cvsignore 16 Jul 2009 10:47:19 -0000 1.25 @@ -1 +1 @@ -hal-info-20090414.tar.gz +hal-info-20090716.tar.gz Index: hal-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal-info/devel/hal-info.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- hal-info.spec 14 Apr 2009 16:34:01 -0000 1.43 +++ hal-info.spec 16 Jul 2009 10:47:19 -0000 1.44 @@ -1,6 +1,6 @@ Summary: Device information files for HAL Name: hal-info -Version: 20090414 +Version: 20090716 Release: 1%{?dist} License: AFL or GPLv2 Group: System Environment/Libraries @@ -10,9 +10,6 @@ Source0: http://hal.freedesktop.org/rele # OLPC specific, not upstream yet, although on HAL mailing list Source1: 30-keymap-olpc.fdi -# upstream, 73b7c9705bb87276d090e88800ef045f0ebb3a07 -Patch1: hal-info-20090330-dell-media-key-hub.patch - BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: hal >= 0.5.10 @@ -45,6 +42,11 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/preprobe/10osvendor/*.fdi %changelog +* Thu Jul 16 2009 Richard Hughes - 20090716-1 +- New upstream release to fix some more music players, resume problems and + keymaps. See http://lists.freedesktop.org/archives/hal/2009-July/013481.html + for full list. + * Tue Apr 14 2009 Richard Hughes - 20090414-1 - New upstream release to fix a load of HP keymaps. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hal-info/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 14 Apr 2009 16:34:01 -0000 1.25 +++ sources 16 Jul 2009 10:47:19 -0000 1.26 @@ -1 +1 @@ -ae7177ab8f0163d3ef2df71f0de2b357 hal-info-20090414.tar.gz +36b7e3a84667b4570a224111583a710b hal-info-20090716.tar.gz --- hal-info-20090330-dell-media-key-hub.patch DELETED --- From kwizart at fedoraproject.org Thu Jul 16 10:57:07 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Thu, 16 Jul 2009 10:57:07 +0000 (UTC) Subject: rpms/opencv/devel opencv-1.1pre1-backport_gcc43.patch, NONE, 1.1 opencv.spec, 1.32, 1.33 Message-ID: <20090716105707.848B111C0099@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/opencv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1374 Modified Files: opencv.spec Added Files: opencv-1.1pre1-backport_gcc43.patch Log Message: - Build with gstreamer support - #491223 - Backport gcc43 fix from trunk opencv-1.1pre1-backport_gcc43.patch: --- NEW FILE opencv-1.1pre1-backport_gcc43.patch --- diff -up opencv-1.1.0/otherlibs/highgui/cvcap_xine.cpp.gcc43 opencv-1.1.0/otherlibs/highgui/cvcap_xine.cpp --- opencv-1.1.0/otherlibs/highgui/cvcap_xine.cpp.gcc43 2008-05-03 20:20:57.000000000 +0200 +++ opencv-1.1.0/otherlibs/highgui/cvcap_xine.cpp 2009-07-16 12:30:58.000000000 +0200 @@ -784,7 +784,7 @@ public: CvCaptureAVI_XINE_CPP() { captureXINE = 0; } virtual ~CvCaptureAVI_XINE_CPP() { close(); } - virtual bool open( int index ); + virtual bool open( const char* filename ); virtual void close(); virtual double getProperty(int); @@ -796,10 +796,10 @@ protected: CvCaptureAVI_XINE* captureXINE; }; -bool CvCaptureAVI_XINE_CPP::open( int index ) +bool CvCaptureAVI_XINE_CPP::open( const char* filename ) { close(); - captureXINE = icvCaptureFromFile_XINE(index); + captureXINE = icvCaptureFromFile_XINE(filename); return captureXINE != 0; } @@ -832,11 +832,11 @@ return captureXINE ? icvSetPropertyAVI_XINE( captureXINE, propId, value ) != 0 : false; } -CvCapture* cvCreateCameraCapture_XINE( int index ) +CvCapture* cvCreateFileCapture_XINE(const char* filename) { CvCaptureAVI_XINE_CPP* capture = new CvCaptureAVI_XINE_CPP; - if( capture->open( index )) + if( capture->open(filename)) return capture; delete capture; Index: opencv.spec =================================================================== RCS file: /cvs/pkgs/rpms/opencv/devel/opencv.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- opencv.spec 16 Jul 2009 07:29:34 -0000 1.32 +++ opencv.spec 16 Jul 2009 10:56:36 -0000 1.33 @@ -3,7 +3,7 @@ Name: opencv Version: 1.1.0 -Release: 0.2.pre1%{?dist} +Release: 0.3.pre1%{?dist} Summary: Collection of algorithms for computer vision Group: Development/Libraries @@ -17,6 +17,7 @@ Patch1: opencv-1.1-nooptim.patch Patch2: opencv-1.1.0-pythondir.diff Patch3: opencv-1.1.0-conflicts.patch Patch4: opencv-1.1pre1-automake.patch +Patch5: opencv-1.1pre1-backport_gcc43.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool @@ -31,6 +32,8 @@ BuildRequires: swig >= 1.3.24, zlib-dev BuildRequires: python-devel BuildRequires: python-imaging, numpy %{?_with_ffmpeg:BuildRequires: ffmpeg-devel >= 0.4.9} +%{!?_without_gstreamer:BuildRequires: gstreamer-devel} +%{?_with_xine:BuildRequires: xine-lib-devel} %description @@ -70,6 +73,7 @@ This package contains Python bindings fo #autotools conflicts between AC_CONFIG_MACRO_DIR and AM_FLAGS %patch3 -p1 -b .conflicts %patch4 -p1 -b .automake +%patch5 -p1 -b .gcc43 #Renew the autotools (and remove rpath). @@ -78,6 +82,9 @@ autoreconf -vif %build export SWIG_PYTHON_LIBS=%{_libdir} %configure --disable-static --enable-apps \ + %{?_with_ffmpeg:--with-ffmpeg}%{!?_with_ffmpeg:--without-ffmpeg} \ + %{!?_without_gstreamer:--with-gstreamer} \ + %{?_with_xine:--with-xine --without-quicktime} \ %ifarch i386 i586 --disable-sse2 \ %endif @@ -148,6 +155,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.3.pre1 +- Build with gstreamer support - #491223 +- Backport gcc43 fix from trunk + * Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.2.pre1 - Fix FTBFS #511705 From gilboa at fedoraproject.org Thu Jul 16 11:04:45 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Thu, 16 Jul 2009 11:04:45 +0000 (UTC) Subject: rpms/icewm/F-10 icewm.spec,1.13,1.14 sources,1.5,1.6 Message-ID: <20090716110445.A5A9B11C0099@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2633 Modified Files: icewm.spec sources Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-10/icewm.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- icewm.spec 19 Feb 2008 04:02:09 -0000 1.13 +++ icewm.spec 16 Jul 2009 11:04:15 -0000 1.14 @@ -1,6 +1,6 @@ Name: icewm -Version: 1.2.35 -Release: 4%{?dist} +Version: 1.2.37 +Release: 1%{?dist} Summary: Light and configurable window manager Group: User Interface/Desktops @@ -9,7 +9,8 @@ URL: http://www.icewm.org Source0: http://heanet.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz Source1: http://lostclus.linux.kiev.ua/scripts/icewm-xdg-menu Source2: icewm.desktop -Source4: icewm-startup +Source3: icewm-startup +Source4: clearlooks.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} >= 8 BuildRequires: popt-devel @@ -28,11 +29,17 @@ BuildRequires: libXft-devel BuildRequires: libICE-devel BuildRequires: gettext BuildRequires: gnome-desktop-devel +%if 0%{?fedora} > 10 +BuildRequires: libgnomeui-devel +BuildRequires: gnome-vfs2-devel +%endif %if 0%{?fedora} < 9 Requires: xorg-x11-fonts-truetype +Requires: htmlview +%else +Requires: xdg-utils %endif Requires: alsa-utils -Requires: htmlview Requires: xterm Patch0: icewm-configure.patch @@ -53,8 +60,6 @@ Requires: gnome-menus Requires: icewm = %{version}-%{release} - - %description gnome IceWM-gnome adds gnome-menu support for the IceWM window manager. @@ -72,6 +77,18 @@ freedesktop.org .desktop files. Files ar user logs-in. +%package clearlooks +Summary: Clearlooks like theme for IceWM +Group: User Interface/Desktops +Requires: ImageMagick +Requires: icewm = %{version}-%{release} + + +%description clearlooks +An IceWM theme that mimics the GNOME ClearLooks theme used by +older Fedora releases and RHEL. + + %prep %setup -q %patch0 -p1 -b .configure @@ -100,11 +117,16 @@ mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 %{__install} -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_bindir} -%{__install} -p -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/icewm/startup +%{__install} -p -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_datadir}/icewm/startup mkdir -p $RPM_BUILD_ROOT/%{_datadir}/xsessions/ %{__install} -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/xsessions/ +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icewm/themes +tar -C $RPM_BUILD_ROOT%{_datadir}/icewm/themes -xzf %{SOURCE4} + +echo "Theme=\"clearlooks/default.theme\"" > $RPM_BUILD_ROOT%{_datadir}/icewm/theme + %find_lang %{name} @@ -112,11 +134,44 @@ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/xse rm -rf $RPM_BUILD_ROOT +%post clearlooks +[ ! -z "$(cat /etc/issue | grep Fedora)" ] && \ + [ -d /usr/share/icewm/themes/clearlooks ] && [ -x /usr/bin/convert ] && \ + convert /usr/share/icons/hicolor/24x24/apps/fedora-logo-icon.png \ + /usr/share/icewm/themes/clearlooks/taskbar/icewm.xpm || echo -n +[ -z "$(cat /etc/issue | grep Fedora)" ] && \ + [ -d /usr/share/icewm/themes/clearlooks ] && [ -x /usr/bin/convert ] && \ + convert /usr/share/pixmaps/redhat/shadowman-transparent-22.png \ + /usr/share/icewm/themes/clearlooks/taskbar/icewm.xpm || echo -n + + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS BUGS CHANGES COPYING README README.wm-session TODO doc/*.html %exclude %{_datadir}/icewm/startup -%{_datadir}/icewm/ +%{_datadir}/icewm +%{_datadir}/icewm/icons +%{_datadir}/icewm/keys +%{_datadir}/icewm/ledclock +%{_datadir}/icewm/mailbox +%{_datadir}/icewm/menu +%{_datadir}/icewm/preferences +%{_datadir}/icewm/startup +%{_datadir}/icewm/taskbar +%{_datadir}/icewm/themes +%{_datadir}/icewm/themes/gtk2 +%{_datadir}/icewm/themes/icedesert +%{_datadir}/icewm/themes/Infadel2 +%{_datadir}/icewm/themes/metal2 +%{_datadir}/icewm/themes/motif +%{_datadir}/icewm/themes/nice +%{_datadir}/icewm/themes/nice2 +%{_datadir}/icewm/themes/warp3 +%{_datadir}/icewm/themes/warp4 +%{_datadir}/icewm/themes/win95 +%{_datadir}/icewm/themes/yellowmotif +%{_datadir}/icewm/toolbar +%{_datadir}/icewm/winoptions %{_datadir}/xsessions/icewm.desktop %{_mandir}/man1/icewm.1* %{_bindir}/icewmbg @@ -139,9 +194,27 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icewm/startup +%files clearlooks +%defattr(-,root,root,-) +%{_datadir}/icewm/themes/clearlooks +%{_datadir}/icewm/theme + + %changelog -* Mon Feb 18 2008 Fedora Release Engineering - 1.2.35-4 -- Autorebuild for GCC 4.3 +* Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 +- 1.2.37. +- Fix missing directory ownership. (#511639) + +* Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Jan 6 2009 Caol??n McNamara - 1.2.36-3 +- pkg-config --cflags gnome-desktop-2.0 doesn't implicitly include + libgnomeui-2.0 anymore, so add it in explicitly + +* Mon Jan 5 2009 Gilboa Davara - 1.2.36-2 +- Missing BR libgnomeui-devel. (devel) +- Missing BR gnome-vfs2-devel. (devel) * Thu Jan 24 2008 - 1.2.35-3 - Fix broken -devel BR (truetype). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 14 Jan 2008 17:17:23 -0000 1.5 +++ sources 16 Jul 2009 11:04:15 -0000 1.6 @@ -1 +1,2 @@ -a2adc53ab4c0c7ca6daa1ca4c697ffe9 icewm-1.2.35.tar.gz +970a21588d26eb361020fd60a61a482c icewm-1.2.37.tar.gz +933ab5875707f9918d92f63d391630b0 clearlooks.tgz From pbrobinson at fedoraproject.org Thu Jul 16 11:05:16 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 11:05:16 +0000 (UTC) Subject: rpms/csound/devel csound-2817271-soname.patch, NONE, 1.1 csound.spec, 1.27, 1.28 Message-ID: <20090716110516.7D18C11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/csound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2984 Modified Files: csound.spec Added Files: csound-2817271-soname.patch Log Message: - Apply patch to fix libcsnd.so csound-2817271-soname.patch: --- NEW FILE csound-2817271-soname.patch --- --- Csound5.10.1/SConstruct.orig 2009-07-06 05:23:11.000000000 +0000 +++ Csound5.10.1/SConstruct 2009-07-06 06:26:39.000000000 +0000 @@ -1102,7 +1102,7 @@ os.spawnvp(os.P_WAIT, 'rm', ['rm', '-f', libName]) os.symlink(libName2, libName) tmp = csoundDynamicLibraryEnvironment['SHLINKFLAGS'] - tmp += ['-Wl,-soname=%s' % libName2] + tmp = tmp + ['-Wl,-soname=%s' % libName2] cflags = csoundDynamicLibraryEnvironment['CCFLAGS'] if configure.CheckGcc4(): cflags += ['-fvisibility=hidden'] Index: csound.spec =================================================================== RCS file: /cvs/pkgs/rpms/csound/devel/csound.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- csound.spec 18 Jun 2009 11:35:17 -0000 1.27 +++ csound.spec 16 Jul 2009 11:05:16 -0000 1.28 @@ -14,7 +14,7 @@ Summary: A sound synthesis language and library Name: csound Version: 5.10.1 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://csound.sourceforge.net/ License: LGPLv2+ Group: Applications/Multimedia @@ -34,7 +34,7 @@ BuildRequires: libvorbis-devel libogg-de BuildRequires: gettext Obsoletes: csound-tutorial <= 5.08 -Obsoletes: olpcsound <= 5.08 +Obsoletes: olpcsound <= 5.08.92 Source0: http://downloads.sourceforge.net/csound/Csound5.10.1.tar.gz Source1: http://downloads.sourceforge.net/csound/Csound5.10_manual_src.tar.gz @@ -48,9 +48,7 @@ Patch5: csound-5.10.1-64-bit-plugin-path Patch6: csound-5.10.1-fix-conflicts.patch Patch7: csound-5.10.1-fix-locale-install.patch Patch8: csound-5.10.1-enable-oggplay.patch - -#FIXME -Patch9: csound-5.10.1-version-libcsnd.patch3 +Patch9: csound-2817271-soname.patch %description Csound is a sound and music synthesis system, providing facilities for @@ -63,6 +61,7 @@ at least classical, pop, techno, ambient Summary: Csound development files and libraries Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Obsoletes: olpcsound-devel <= 5.08.92 %description devel Contains headers and libraries for developing applications that use Csound. @@ -191,8 +190,7 @@ Canonical Reference Manual for Csound. %patch6 -p1 -b .fix-conflicts %patch7 -p1 -b .fix-local-install %patch8 -p1 -b .enable-oggplay -#FIXME -%patch9 -p0 -b .version-libcsnd +%patch9 -p1 -b .2817271-soname tar xf %{SOURCE1} (cd manual; unzip -q %{SOURCE2}) @@ -306,15 +304,15 @@ fi %{_bindir}/pv_export %{_bindir}/pv_import %{_libdir}/lib%{name}.so.5.2 -#FIXME -#%{_libdir}/libcsnd.so.5.2 %dir %{_libdir}/%{name}/plugins %{_libdir}/%{name}/plugins/libambicode1.so %{_libdir}/%{name}/plugins/libampmidid.so %{_libdir}/%{name}/plugins/libbabo.so %{_libdir}/%{name}/plugins/libbarmodel.so +%{_libdir}/%{name}/plugins/libchua.so %{_libdir}/%{name}/plugins/libcompress.so %{_libdir}/%{name}/plugins/libcontrol.so +%{_libdir}/%{name}/plugins/libcsnd.so %{_libdir}/%{name}/plugins/libcs_date.so %{_libdir}/%{name}/plugins/libcs_pan2.so %{_libdir}/%{name}/plugins/libcs_pvs_ops.so @@ -424,6 +422,9 @@ fi %doc manual/examples %changelog +* Thu Jul 16 2009 Peter Robinson - 5.10.1-8 +- Apply patch to fix libcsnd.so + * Thu Jun 18 2009 Peter Robinson - 5.10.1-7 - Obsolete olpcsound From dwalsh at fedoraproject.org Thu Jul 16 11:07:00 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 16 Jul 2009 11:07:00 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch,1.28,1.29 Message-ID: <20090716110700.6490311C0099@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3325 Modified Files: policy-F12.patch Log Message: * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream policy-F12.patch: Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- policy-F12.patch 15 Jul 2009 19:12:04 -0000 1.28 +++ policy-F12.patch 16 Jul 2009 11:06:59 -0000 1.29 @@ -5508,8 +5508,8 @@ diff -b -B --ignore-all-space --exclude- +/usr/bin/metacity -- gen_context(system_u:object_r:wm_exec_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/apps/wm.if serefpolicy-3.6.22/policy/modules/apps/wm.if --- nsaserefpolicy/policy/modules/apps/wm.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/apps/wm.if 2009-07-15 14:06:36.000000000 -0400 -@@ -0,0 +1,105 @@ ++++ serefpolicy-3.6.22/policy/modules/apps/wm.if 2009-07-16 07:00:40.000000000 -0400 +@@ -0,0 +1,108 @@ +##

Window Manager. + +######################################## @@ -5562,9 +5562,12 @@ diff -b -B --ignore-all-space --exclude- + type wm_exec_t; + ') + ++ type $1_wm_t; ++ domain_type($1_wm_t) ++ domain_entry_file($1_wm_t, wm_exec_t) + role $2 types $1_wm_t; + -+ domtrans_pattern($3, wm_exec_t, wm_t) ++ domtrans_pattern($3, wm_exec_t, $1_wm_t) + + corecmd_bin_domtrans($1_wm_t, $1_t) + corecmd_shell_domtrans($1_wm_t, $1_t) @@ -20007,7 +20010,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/setroubleshoot.te serefpolicy-3.6.22/policy/modules/services/setroubleshoot.te --- nsaserefpolicy/policy/modules/services/setroubleshoot.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/services/setroubleshoot.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/services/setroubleshoot.te 2009-07-16 07:05:31.000000000 -0400 @@ -22,13 +22,19 @@ type setroubleshoot_var_run_t; files_pid_file(setroubleshoot_var_run_t) @@ -20105,10 +20108,10 @@ diff -b -B --ignore-all-space --exclude- +# +# setroubleshoot_fixit local policy +# -+allow setroubleshootd_fixit_t self:fifo_file rw_fifo_file_perms; ++allow setroubleshoot_fixit_t self:fifo_file rw_fifo_file_perms; + -+corecmd_exec_bin(setroubleshootd_fixit_t) -+corecmd_exec_shell(setroubleshootd_fixit_t) ++corecmd_exec_bin(setroubleshoot_fixit_t) ++corecmd_exec_shell(setroubleshoot_fixit_t) + +seutil_domtrans_restorecon(setroubleshoot_fixit_t) + From gilboa at fedoraproject.org Thu Jul 16 11:07:01 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Thu, 16 Jul 2009 11:07:01 +0000 (UTC) Subject: rpms/icewm/F-10 icewm.spec,1.14,1.15 Message-ID: <20090716110701.F2EA311C0099@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3215 Modified Files: icewm.spec Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-10/icewm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- icewm.spec 16 Jul 2009 11:04:15 -0000 1.14 +++ icewm.spec 16 Jul 2009 11:06:31 -0000 1.15 @@ -203,7 +203,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 - 1.2.37. -- Fix missing directory ownership. (#511639) +- Fix missing directory ownership. (#483346) * Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pbrobinson at fedoraproject.org Thu Jul 16 11:08:16 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 11:08:16 +0000 (UTC) Subject: rpms/csound/F-11 csound-2817271-soname.patch, NONE, 1.1 csound.spec, 1.23, 1.24 Message-ID: <20090716110816.CBF3211C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/csound/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3595 Modified Files: csound.spec Added Files: csound-2817271-soname.patch Log Message: - Apply patch to fix libcsnd.so csound-2817271-soname.patch: --- NEW FILE csound-2817271-soname.patch --- --- Csound5.10.1/SConstruct.orig 2009-07-06 05:23:11.000000000 +0000 +++ Csound5.10.1/SConstruct 2009-07-06 06:26:39.000000000 +0000 @@ -1102,7 +1102,7 @@ os.spawnvp(os.P_WAIT, 'rm', ['rm', '-f', libName]) os.symlink(libName2, libName) tmp = csoundDynamicLibraryEnvironment['SHLINKFLAGS'] - tmp += ['-Wl,-soname=%s' % libName2] + tmp = tmp + ['-Wl,-soname=%s' % libName2] cflags = csoundDynamicLibraryEnvironment['CCFLAGS'] if configure.CheckGcc4(): cflags += ['-fvisibility=hidden'] Index: csound.spec =================================================================== RCS file: /cvs/pkgs/rpms/csound/F-11/csound.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- csound.spec 22 Jun 2009 15:14:00 -0000 1.23 +++ csound.spec 16 Jul 2009 11:08:16 -0000 1.24 @@ -14,7 +14,7 @@ Summary: A sound synthesis language and library Name: csound Version: 5.10.1 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://csound.sourceforge.net/ License: LGPLv2+ Group: Applications/Multimedia @@ -34,7 +34,7 @@ BuildRequires: libvorbis-devel libogg-de BuildRequires: gettext Obsoletes: csound-tutorial <= 5.08 -Obsoletes: olpcsound <= 5.08 +Obsoletes: olpcsound <= 5.08.92 Source0: http://downloads.sourceforge.net/csound/Csound5.10.1.tar.gz Source1: http://downloads.sourceforge.net/csound/Csound5.10_manual_src.tar.gz @@ -48,9 +48,7 @@ Patch5: csound-5.10.1-64-bit-plugin-path Patch6: csound-5.10.1-fix-conflicts.patch Patch7: csound-5.10.1-fix-locale-install.patch Patch8: csound-5.10.1-enable-oggplay.patch - -#FIXME -Patch9: csound-5.10.1-version-libcsnd.patch3 +Patch9: csound-2817271-soname.patch %description Csound is a sound and music synthesis system, providing facilities for @@ -63,6 +61,7 @@ at least classical, pop, techno, ambient Summary: Csound development files and libraries Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Obsoletes: olpcsound-devel <= 5.08.92 %description devel Contains headers and libraries for developing applications that use Csound. @@ -191,8 +190,7 @@ Canonical Reference Manual for Csound. %patch6 -p1 -b .fix-conflicts %patch7 -p1 -b .fix-local-install %patch8 -p1 -b .enable-oggplay -#FIXME -%patch9 -p0 -b .version-libcsnd +%patch9 -p1 -b .2817271-soname tar xf %{SOURCE1} (cd manual; unzip -q %{SOURCE2}) @@ -306,15 +304,15 @@ fi %{_bindir}/pv_export %{_bindir}/pv_import %{_libdir}/lib%{name}.so.5.2 -#FIXME -#%{_libdir}/libcsnd.so.5.2 %dir %{_libdir}/%{name}/plugins %{_libdir}/%{name}/plugins/libambicode1.so %{_libdir}/%{name}/plugins/libampmidid.so %{_libdir}/%{name}/plugins/libbabo.so %{_libdir}/%{name}/plugins/libbarmodel.so +%{_libdir}/%{name}/plugins/libchua.so %{_libdir}/%{name}/plugins/libcompress.so %{_libdir}/%{name}/plugins/libcontrol.so +%{_libdir}/%{name}/plugins/libcsnd.so %{_libdir}/%{name}/plugins/libcs_date.so %{_libdir}/%{name}/plugins/libcs_pan2.so %{_libdir}/%{name}/plugins/libcs_pvs_ops.so @@ -424,6 +422,9 @@ fi %doc manual/examples %changelog +* Thu Jul 16 2009 Peter Robinson - 5.10.1-8 +- Apply patch to fix libcsnd.so + * Thu Jun 18 2009 Peter Robinson - 5.10.1-7 - Obsolete olpcsound From gilboa at fedoraproject.org Thu Jul 16 11:08:43 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Thu, 16 Jul 2009 11:08:43 +0000 (UTC) Subject: rpms/icewm/F-11 icewm.spec,1.20,1.21 Message-ID: <20090716110843.A50EF11C0099@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3570 Modified Files: icewm.spec Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/F-11/icewm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- icewm.spec 15 Jul 2009 21:24:48 -0000 1.20 +++ icewm.spec 16 Jul 2009 11:08:13 -0000 1.21 @@ -203,7 +203,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 - 1.2.37. -- Fix missing directory ownership. (#511639) +- Fix missing directory ownership. (#483346) * Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From gilboa at fedoraproject.org Thu Jul 16 11:10:49 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Thu, 16 Jul 2009 11:10:49 +0000 (UTC) Subject: rpms/icewm/devel icewm.spec,1.20,1.21 Message-ID: <20090716111049.50B3411C0099@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3841 Modified Files: icewm.spec Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/devel/icewm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- icewm.spec 15 Jul 2009 17:30:14 -0000 1.20 +++ icewm.spec 16 Jul 2009 11:10:19 -0000 1.21 @@ -203,7 +203,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 - 1.2.37. -- Fix missing directory ownership. (#511639) +- Fix missing directory ownership. (#483346) * Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From markmc at fedoraproject.org Thu Jul 16 11:15:53 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Thu, 16 Jul 2009 11:15:53 +0000 (UTC) Subject: rpms/qemu/devel qemu-fix-build-for-esd-audio.patch, NONE, 1.1 qemu-bios-bigger-roms.patch, 1.5, 1.6 qemu-fix-linux-user-build-on-ppc.patch, 1.1, 1.2 qemu-prefer-sysfs-for-usb-host-devices.patch, 1.1, 1.2 qemu.spec, 1.109, 1.110 sources, 1.17, 1.18 Message-ID: <20090716111553.B288411C0099@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5022 Modified Files: qemu-bios-bigger-roms.patch qemu-fix-linux-user-build-on-ppc.patch qemu-prefer-sysfs-for-usb-host-devices.patch qemu.spec sources Added Files: qemu-fix-build-for-esd-audio.patch Log Message: * Thu Jul 16 2009 Mark McLoughlin - 2:0.10.50-11.kvm88 - Update to kvm-88, see http://www.linux-kvm.org/page/ChangeLog - Package mutiboot.bin - Update for how extboot is built - Fix sf.net source URL - Drop qemu-fix-ppc-softmmu-kvm-disabled-build.patch - Drop qemu-fix-pcspk-build-with-kvm-disabled.patch - Cherry-pick fix for esound support build failure qemu-fix-build-for-esd-audio.patch: --- NEW FILE qemu-fix-build-for-esd-audio.patch --- >From b37fb38b6043e319768fa92d5541fe20afb4741b Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Wed, 1 Jul 2009 10:07:16 -0500 Subject: [PATCH 4/4] Fix build for ESD audio (cherry picked from commit c6a5a71a3a1886afad5eeb214eb6e8785f4e0319) Signed-off-by: Anthony Liguori Signed-off-by: Mark McLoughlin --- Makefile | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fc40431..f5deae9 100644 --- a/Makefile +++ b/Makefile @@ -139,18 +139,18 @@ obj-y += migration-exec.o endif ifdef CONFIG_COREAUDIO -AUDIO_PT = yes +AUDIO_PT = y endif ifdef CONFIG_FMOD audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS) endif ifdef CONFIG_ESD -AUDIO_PT = yes -AUDIO_PT_INT = yes +AUDIO_PT = y +AUDIO_PT_INT = y endif ifdef CONFIG_PA -AUDIO_PT = yes -AUDIO_PT_INT = yes +AUDIO_PT = y +AUDIO_PT_INT = y endif ifdef AUDIO_PT LDFLAGS += -pthread -- 1.6.3.3 qemu-bios-bigger-roms.patch: Index: qemu-bios-bigger-roms.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-bios-bigger-roms.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qemu-bios-bigger-roms.patch 29 Jun 2009 12:08:17 -0000 1.5 +++ qemu-bios-bigger-roms.patch 16 Jul 2009 11:15:53 -0000 1.6 @@ -1,7 +1,7 @@ -From 8b08062b369c913c9b9a66c20618f9bd82a6b676 Mon Sep 17 00:00:00 2001 +From c9aea972de34bad96814301988df698063ccf608 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 24 Jun 2009 14:31:41 +0100 -Subject: [PATCH] compute checksum for roms bigger than a segment +Subject: [PATCH 1/4] compute checksum for roms bigger than a segment Some option roms (e1000 provided by gpxe project as an example) are bigger than a segment. The current algorithm to compute the @@ -76,5 +76,5 @@ index 6186199..fc289c0 100644 -- -1.6.2.5 +1.6.3.3 qemu-fix-linux-user-build-on-ppc.patch: Index: qemu-fix-linux-user-build-on-ppc.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-fix-linux-user-build-on-ppc.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qemu-fix-linux-user-build-on-ppc.patch 29 Jun 2009 16:04:48 -0000 1.1 +++ qemu-fix-linux-user-build-on-ppc.patch 16 Jul 2009 11:15:53 -0000 1.2 @@ -1,7 +1,7 @@ -From 8da41d2477abdafbbc484a12fd74f2d54336188b Mon Sep 17 00:00:00 2001 +From 978e305a8cb8533bef2c6238c88e96913f7d09d0 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 29 Jun 2009 14:49:03 +0100 -Subject: [PATCH] Fix linux-user build on ppc +Subject: [PATCH 2/4] Fix linux-user build on ppc kvm-87 build fails on ppc: @@ -37,10 +37,6 @@ Problem seems to be that signal.h is pul headers which expose elf_greg_t, R_PPC_* and PPC_FEATURE_*. Signed-off-by: Mark McLoughlin - -More linux-user on ppc build fixes - -Signed-off-by: Mark McLoughlin --- elf.h | 2 ++ linux-user/elfload.c | 10 ++++++++++ @@ -134,5 +130,5 @@ index d31cca7..3ccfdda 100644 #define ELF_HWCAP get_elf_hwcap() -- -1.6.2.5 +1.6.3.3 qemu-prefer-sysfs-for-usb-host-devices.patch: Index: qemu-prefer-sysfs-for-usb-host-devices.patch =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu-prefer-sysfs-for-usb-host-devices.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qemu-prefer-sysfs-for-usb-host-devices.patch 3 Jul 2009 08:32:58 -0000 1.1 +++ qemu-prefer-sysfs-for-usb-host-devices.patch 16 Jul 2009 11:15:53 -0000 1.2 @@ -1,7 +1,7 @@ -From 9cf0574418cc7657618a738dd31337739c635875 Mon Sep 17 00:00:00 2001 +From da1377c5e28ea68a6492b627725e8dd5f7acbb0a Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 3 Jul 2009 09:17:20 +0100 -Subject: [PATCH] Prefer sysfs for USB host devices +Subject: [PATCH 3/4] Prefer sysfs for USB host devices Scanning for devices via /sys/bus/usb/devices/ and using them via the /dev/bus/usb// character devices is the prefered method @@ -58,5 +58,5 @@ index 67e4acd..3c724ba 100644 if (!usb_fs_type) { monitor_printf(mon, "husb: unable to access USB devices\n"); -- -1.6.2.5 +1.6.3.3 Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- qemu.spec 16 Jul 2009 09:53:52 -0000 1.109 +++ qemu.spec 16 Jul 2009 11:15:53 -0000 1.110 @@ -1,18 +1,18 @@ -%define kvmvernum 87 +%define kvmvernum 88 %define kvmvertag kvm%{kvmvernum} %define kvmverfull kvm-devel-%{kvmvernum} Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 10.%{kvmvertag}%{?dist} +Release: 11.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD Group: Development/Tools URL: http://www.qemu.org/ -Source0: http://download.sourceforge.net/sourceforge/kvm/qemu-%{kvmverfull}.tar.gz +Source0: http://downloads.sourceforge.net/sourceforge/kvm/qemu-%{kvmverfull}.tar.gz Source1: qemu.init Source2: kvm.modules Source3: 80-kvm.rules @@ -20,17 +20,14 @@ Source3: 80-kvm.rules # Not upstream, why? Patch01: qemu-bios-bigger-roms.patch -# Fixes ppc-softmmu target build, cherry-picked from upstream -Patch02: qemu-fix-ppc-softmmu-kvm-disabled-build.patch - # Works around broken linux-user build on ppc -Patch03: qemu-fix-linux-user-build-on-ppc.patch - -# Fix for hw/pcspk.c errors with --disable-kvm -Patch04: qemu-fix-pcspk-build-with-kvm-disabled.patch +Patch02: qemu-fix-linux-user-build-on-ppc.patch # Prefer sysfs over usbfs for usb passthrough (#508326) -Patch05: qemu-prefer-sysfs-for-usb-host-devices.patch +Patch03: qemu-prefer-sysfs-for-usb-host-devices.patch + +# Fix build with esound audio enabled, cherry-picked from upstream +Patch04: qemu-fix-build-for-esd-audio.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel zlib-devel which texi2html gnutls-devel cyrus-sasl-devel @@ -216,7 +213,6 @@ such as kvmtrace and kvm_stat. %patch02 -p1 %patch03 -p1 %patch04 -p1 -%patch05 -p1 %build # systems like rhel build system does not have a recent enough linker so @@ -250,8 +246,6 @@ make V=1 %{?_smp_mflags} $buildldflags cp -a x86_64-softmmu/qemu-system-x86_64 qemu-kvm make clean -make -C kvm/extboot extboot.bin - cd kvm/user ./configure --prefix=%{_prefix} --kerneldir=$(pwd)/../kernel/ make kvmtrace @@ -287,7 +281,6 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{na mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/modules/kvm.modules -install -m 0755 kvm/extboot/extboot.bin $RPM_BUILD_ROOT%{_datadir}/%{name} install -m 0755 kvm/user/kvmtrace $RPM_BUILD_ROOT%{_bindir}/ install -m 0755 kvm/user/kvmtrace_format $RPM_BUILD_ROOT%{_bindir}/ install -m 0755 kvm/kvm_stat $RPM_BUILD_ROOT%{_bindir}/ @@ -416,6 +409,7 @@ fi %{_datadir}/%{name}/pxe-ne2k_pci.bin %ifarch %{ix86} x86_64 %{_datadir}/%{name}/extboot.bin +%{_datadir}/%{name}/multiboot.bin %{_bindir}/qemu-kvm %{_sysconfdir}/sysconfig/modules/kvm.modules %{_sysconfdir}/udev/rules.d/80-kvm.rules @@ -466,6 +460,15 @@ fi %{_mandir}/man1/qemu-img.1* %changelog +* Thu Jul 16 2009 Mark McLoughlin - 2:0.10.50-11.kvm88 +- Update to kvm-88, see http://www.linux-kvm.org/page/ChangeLog +- Package mutiboot.bin +- Update for how extboot is built +- Fix sf.net source URL +- Drop qemu-fix-ppc-softmmu-kvm-disabled-build.patch +- Drop qemu-fix-pcspk-build-with-kvm-disabled.patch +- Cherry-pick fix for esound support build failure + * Wed Jul 15 2009 Daniel Berrange - 2:0.10.50-10.kvm87 - Add udev rules to make /dev/kvm world accessible & group=kvm (rhbz #497341) - Create a kvm group if it doesn't exist (rhbz #346151) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 27 Jun 2009 15:10:13 -0000 1.17 +++ sources 16 Jul 2009 11:15:53 -0000 1.18 @@ -1 +1 @@ -949e6e072fe1f24361d1b17dea52be7f qemu-kvm-devel-87.tar.gz +0564b071fb1bb7211f51ef588ebb4a7c qemu-kvm-devel-88.tar.gz From pbrobinson at fedoraproject.org Thu Jul 16 11:16:59 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 11:16:59 +0000 (UTC) Subject: rpms/csound/devel csound.spec,1.28,1.29 Message-ID: <20090716111659.EFF9A11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/csound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5203 Modified Files: csound.spec Log Message: - Update included files Index: csound.spec =================================================================== RCS file: /cvs/pkgs/rpms/csound/devel/csound.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- csound.spec 16 Jul 2009 11:05:16 -0000 1.28 +++ csound.spec 16 Jul 2009 11:16:29 -0000 1.29 @@ -14,7 +14,7 @@ Summary: A sound synthesis language and library Name: csound Version: 5.10.1 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://csound.sourceforge.net/ License: LGPLv2+ Group: Applications/Multimedia @@ -309,7 +309,6 @@ fi %{_libdir}/%{name}/plugins/libampmidid.so %{_libdir}/%{name}/plugins/libbabo.so %{_libdir}/%{name}/plugins/libbarmodel.so -%{_libdir}/%{name}/plugins/libchua.so %{_libdir}/%{name}/plugins/libcompress.so %{_libdir}/%{name}/plugins/libcontrol.so %{_libdir}/%{name}/plugins/libcsnd.so @@ -422,6 +421,9 @@ fi %doc manual/examples %changelog +* Thu Jul 16 2009 Peter Robinson - 5.10.1-9 +- Update included files + * Thu Jul 16 2009 Peter Robinson - 5.10.1-8 - Apply patch to fix libcsnd.so From pbrobinson at fedoraproject.org Thu Jul 16 11:18:33 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 11:18:33 +0000 (UTC) Subject: rpms/csound/F-11 csound.spec,1.24,1.25 Message-ID: <20090716111833.2594D11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/csound/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5602 Modified Files: csound.spec Log Message: - Update included files Index: csound.spec =================================================================== RCS file: /cvs/pkgs/rpms/csound/F-11/csound.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- csound.spec 16 Jul 2009 11:08:16 -0000 1.24 +++ csound.spec 16 Jul 2009 11:18:02 -0000 1.25 @@ -14,7 +14,7 @@ Summary: A sound synthesis language and library Name: csound Version: 5.10.1 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://csound.sourceforge.net/ License: LGPLv2+ Group: Applications/Multimedia @@ -309,7 +309,6 @@ fi %{_libdir}/%{name}/plugins/libampmidid.so %{_libdir}/%{name}/plugins/libbabo.so %{_libdir}/%{name}/plugins/libbarmodel.so -%{_libdir}/%{name}/plugins/libchua.so %{_libdir}/%{name}/plugins/libcompress.so %{_libdir}/%{name}/plugins/libcontrol.so %{_libdir}/%{name}/plugins/libcsnd.so @@ -422,6 +421,9 @@ fi %doc manual/examples %changelog +* Thu Jul 16 2009 Peter Robinson - 5.10.1-9 +- Update included files + * Thu Jul 16 2009 Peter Robinson - 5.10.1-8 - Apply patch to fix libcsnd.so From ovasik at fedoraproject.org Thu Jul 16 11:22:21 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 16 Jul 2009 11:22:21 +0000 (UTC) Subject: rpms/taskjuggler/devel .cvsignore, 1.10, 1.11 sources, 1.11, 1.12 taskjuggler.spec, 1.34, 1.35 Message-ID: <20090716112221.2FF6111C0099@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/taskjuggler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6506 Modified Files: .cvsignore sources taskjuggler.spec Log Message: New upstream release 2.4.3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 13 Jul 2009 05:22:37 -0000 1.10 +++ .cvsignore 16 Jul 2009 11:21:50 -0000 1.11 @@ -1 +1 @@ -taskjuggler-2.4.2.tar.bz2 +taskjuggler-2.4.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Jul 2009 05:22:37 -0000 1.11 +++ sources 16 Jul 2009 11:21:50 -0000 1.12 @@ -1 +1 @@ -f5b20952fffbe2f436ccd7cf1a4fcf76 taskjuggler-2.4.2.tar.bz2 +3bc88500856c7c9dc2fc526d5f04ac04 taskjuggler-2.4.3.tar.bz2 Index: taskjuggler.spec =================================================================== RCS file: /cvs/extras/rpms/taskjuggler/devel/taskjuggler.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- taskjuggler.spec 13 Jul 2009 05:22:37 -0000 1.34 +++ taskjuggler.spec 16 Jul 2009 11:21:50 -0000 1.35 @@ -1,5 +1,5 @@ Name: taskjuggler -Version: 2.4.2 +Version: 2.4.3 Release: 1 Summary: Project management tool @@ -118,6 +118,9 @@ fi %{_libdir}/libtaskjuggler* %changelog +* Thu Jul 16 2009 Ondrej Vasik - 2.4.3-1 +- New upstream release 2.4.3 + * Mon Jul 13 2009 Ondrej Vasik - 2.4.2-1 - New upstream release 2.4.2 From dwalsh at fedoraproject.org Thu Jul 16 11:24:56 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 16 Jul 2009 11:24:56 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch,1.29,1.30 Message-ID: <20090716112456.0C7ED11C0099@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7135 Modified Files: policy-F12.patch Log Message: * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream policy-F12.patch: Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- policy-F12.patch 16 Jul 2009 11:06:59 -0000 1.29 +++ policy-F12.patch 16 Jul 2009 11:24:55 -0000 1.30 @@ -18509,7 +18509,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/rsync.te serefpolicy-3.6.22/policy/modules/services/rsync.te --- nsaserefpolicy/policy/modules/services/rsync.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/services/rsync.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/services/rsync.te 2009-07-16 07:21:18.000000000 -0400 @@ -8,6 +8,13 @@ ## @@ -18524,7 +18524,7 @@ diff -b -B --ignore-all-space --exclude- ## Allow rsync to export any files/directories read only. ##

##
-@@ -126,4 +133,16 @@ +@@ -126,4 +133,19 @@ auth_read_all_symlinks_except_shadow(rsync_t) auth_tunable_read_shadow(rsync_t) ') @@ -18535,7 +18535,10 @@ diff -b -B --ignore-all-space --exclude- + manage_dirs_pattern(rsync_t, rsync_data_t, rsync_data_t) + manage_files_pattern(rsync_t, rsync_data_t, rsync_data_t) + manage_lnk_files_pattern(rsync_t, rsync_data_t, rsync_data_t) -+ optional_policy(` ++') ++ ++optional_policy(` ++ tunable_policy(`rsync_client',` + ssh_exec(rsync_t) + ') +') @@ -23821,12 +23824,13 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/authlogin.if serefpolicy-3.6.22/policy/modules/system/authlogin.if --- nsaserefpolicy/policy/modules/system/authlogin.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/authlogin.if 2009-07-15 14:06:36.000000000 -0400 -@@ -40,17 +40,77 @@ ++++ serefpolicy-3.6.22/policy/modules/system/authlogin.if 2009-07-16 07:17:46.000000000 -0400 +@@ -40,17 +40,76 @@ ## ## # +interface(`auth_use_pam',` ++ + # for SSP/ProPolice + dev_read_urand($1) + # for encrypted homedir @@ -23895,12 +23899,10 @@ diff -b -B --ignore-all-space --exclude- + allow $1 self:key manage_key_perms; + userdom_manage_all_users_keys($1) + -+ auth_use_pam($1) -+ files_list_var_lib($1) manage_files_pattern($1, var_auth_t, var_auth_t) -@@ -62,8 +122,6 @@ +@@ -62,8 +121,6 @@ manage_sock_files_pattern($1, auth_cache_t, auth_cache_t) files_var_filetrans($1, auth_cache_t, dir) @@ -23909,7 +23911,7 @@ diff -b -B --ignore-all-space --exclude- # for fingerprint readers dev_rw_input_dev($1) dev_rw_generic_usb_dev($1) -@@ -86,27 +144,45 @@ +@@ -86,27 +143,44 @@ mls_process_set_level($1) mls_fd_share_all_levels($1) @@ -23923,6 +23925,7 @@ diff -b -B --ignore-all-space --exclude- - auth_exec_pam($1) - auth_use_nsswitch($1) + auth_manage_pam_pid($1) ++ auth_use_pam($1) init_rw_utmp($1) @@ -23945,10 +23948,8 @@ diff -b -B --ignore-all-space --exclude- + ') + + optional_policy(` -+ optional_policy(` -+ oddjob_dbus_chat($1) -+ oddjob_domtrans_mkhomedir($1) -+ ') ++ oddjob_dbus_chat($1) ++ oddjob_domtrans_mkhomedir($1) + ') + + optional_policy(` @@ -23968,7 +23969,7 @@ diff -b -B --ignore-all-space --exclude- ') ') -@@ -305,19 +381,16 @@ +@@ -305,19 +379,16 @@ dev_read_rand($1) dev_read_urand($1) @@ -23993,7 +23994,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -328,6 +401,29 @@ +@@ -328,6 +399,29 @@ optional_policy(` samba_stream_connect_winbind($1) ') @@ -24023,7 +24024,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -352,6 +448,7 @@ +@@ -352,6 +446,7 @@ auth_domtrans_chk_passwd($1) role $2 types chkpwd_t; @@ -24031,7 +24032,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -1129,6 +1226,32 @@ +@@ -1129,6 +1224,32 @@ ######################################## ## @@ -24064,7 +24065,7 @@ diff -b -B --ignore-all-space --exclude- ## Manage all files on the filesystem, except ## the shadow passwords and listed exceptions. ## -@@ -1254,6 +1377,25 @@ +@@ -1254,6 +1375,25 @@ ######################################## ## @@ -24090,7 +24091,7 @@ diff -b -B --ignore-all-space --exclude- ## Do not audit attempts to write to ## login records files. ## -@@ -1395,6 +1537,14 @@ +@@ -1395,6 +1535,14 @@ ') optional_policy(` @@ -24105,7 +24106,7 @@ diff -b -B --ignore-all-space --exclude- nis_use_ypbind($1) ') -@@ -1403,8 +1553,17 @@ +@@ -1403,8 +1551,17 @@ ') optional_policy(` From jreznik at fedoraproject.org Thu Jul 16 11:42:56 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Thu, 16 Jul 2009 11:42:56 +0000 (UTC) Subject: rpms/arora/devel arora.spec,1.14,1.15 Message-ID: <20090716114256.11E0811C0099@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/arora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10151 Modified Files: arora.spec Log Message: * Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 - Arora-gnome subpackage now requires Arora package Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/arora.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- arora.spec 9 Jun 2009 11:58:54 -0000 1.14 +++ arora.spec 16 Jul 2009 11:42:25 -0000 1.15 @@ -1,6 +1,6 @@ Name: arora Version: 0.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A cross platform web browser Group: Applications/Internet @@ -27,6 +27,7 @@ browsing and other common features such Summary: Better Gnome support for Arora Group: Applications/Internet Requires: control-center +Requires: arora %description gnome Adds Arora to Preferred Applications list in Gnome Control Center. @@ -80,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 +- Arora-gnome subpackage now requires Arora package + * Tue Jun 09 2009 Jaroslav Reznik - 0.7.1-2 - Adds arora-gnome subpackage to support preferred app selection in Gnome From markmc at fedoraproject.org Thu Jul 16 11:49:03 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Thu, 16 Jul 2009 11:49:03 +0000 (UTC) Subject: rpms/qemu/devel qemu.spec,1.110,1.111 Message-ID: <20090716114903.6D1FC11C0099@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11238 Modified Files: qemu.spec Log Message: Looks like the multiboot option rom does get built on ppc Also, dump config-host.mak to the build logs for easier debugging Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- qemu.spec 16 Jul 2009 11:15:53 -0000 1.110 +++ qemu.spec 16 Jul 2009 11:48:33 -0000 1.111 @@ -242,6 +242,11 @@ fi --extra-ldflags=$extraldflags \ --extra-cflags="$RPM_OPT_FLAGS" +echo "config-host.mak contents:" +echo "===" +cat config-host.mak +echo "===" + make V=1 %{?_smp_mflags} $buildldflags cp -a x86_64-softmmu/qemu-system-x86_64 qemu-kvm make clean @@ -269,6 +274,11 @@ cd ../../ --extra-ldflags=$extraldflags \ --extra-cflags="$RPM_OPT_FLAGS" +echo "config-host.mak contents:" +echo "===" +cat config-host.mak +echo "===" + make V=1 %{?_smp_mflags} $buildldflags %install @@ -400,6 +410,7 @@ fi %{_bindir}/qemu %{_bindir}/qemu-system-x86_64 %{_datadir}/%{name}/bios.bin +%{_datadir}/%{name}/multiboot.bin %{_datadir}/%{name}/vgabios.bin %{_datadir}/%{name}/vgabios-cirrus.bin %{_datadir}/%{name}/pxe-e1000.bin @@ -409,7 +420,6 @@ fi %{_datadir}/%{name}/pxe-ne2k_pci.bin %ifarch %{ix86} x86_64 %{_datadir}/%{name}/extboot.bin -%{_datadir}/%{name}/multiboot.bin %{_bindir}/qemu-kvm %{_sysconfdir}/sysconfig/modules/kvm.modules %{_sysconfdir}/udev/rules.d/80-kvm.rules From gilboa at fedoraproject.org Thu Jul 16 11:49:46 2009 From: gilboa at fedoraproject.org (Gilboa Davara) Date: Thu, 16 Jul 2009 11:49:46 +0000 (UTC) Subject: rpms/icewm/EL-5 icewm.spec,1.7,1.8 sources,1.5,1.6 Message-ID: <20090716114946.4E6E111C0099@cvs1.fedora.phx.redhat.com> Author: gilboa Update of /cvs/pkgs/rpms/icewm/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11477 Modified Files: icewm.spec sources Log Message: Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/EL-5/icewm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- icewm.spec 14 Jan 2008 17:19:50 -0000 1.7 +++ icewm.spec 16 Jul 2009 11:49:15 -0000 1.8 @@ -1,5 +1,5 @@ Name: icewm -Version: 1.2.35 +Version: 1.2.37 Release: 1%{?dist} Summary: Light and configurable window manager @@ -9,7 +9,8 @@ URL: http://www.icewm.org Source0: http://heanet.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz Source1: http://lostclus.linux.kiev.ua/scripts/icewm-xdg-menu Source2: icewm.desktop -Source4: icewm-startup +Source3: icewm-startup +Source4: clearlooks.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} >= 8 BuildRequires: popt-devel @@ -28,9 +29,17 @@ BuildRequires: libXft-devel BuildRequires: libICE-devel BuildRequires: gettext BuildRequires: gnome-desktop-devel +%if 0%{?fedora} > 10 +BuildRequires: libgnomeui-devel +BuildRequires: gnome-vfs2-devel +%endif +%if 0%{?fedora} < 9 Requires: xorg-x11-fonts-truetype -Requires: alsa-utils Requires: htmlview +%else +Requires: xdg-utils +%endif +Requires: alsa-utils Requires: xterm Patch0: icewm-configure.patch @@ -51,8 +60,6 @@ Requires: gnome-menus Requires: icewm = %{version}-%{release} - - %description gnome IceWM-gnome adds gnome-menu support for the IceWM window manager. @@ -70,6 +77,18 @@ freedesktop.org .desktop files. Files ar user logs-in. +%package clearlooks +Summary: Clearlooks like theme for IceWM +Group: User Interface/Desktops +Requires: ImageMagick +Requires: icewm = %{version}-%{release} + + +%description clearlooks +An IceWM theme that mimics the GNOME ClearLooks theme used by +older Fedora releases and RHEL. + + %prep %setup -q %patch0 -p1 -b .configure @@ -98,11 +117,16 @@ mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 %{__install} -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_bindir} -%{__install} -p -m 755 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/icewm/startup +%{__install} -p -m 755 %{SOURCE3} $RPM_BUILD_ROOT%{_datadir}/icewm/startup mkdir -p $RPM_BUILD_ROOT/%{_datadir}/xsessions/ %{__install} -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/xsessions/ +mkdir -p $RPM_BUILD_ROOT%{_datadir}/icewm/themes +tar -C $RPM_BUILD_ROOT%{_datadir}/icewm/themes -xzf %{SOURCE4} + +echo "Theme=\"clearlooks/default.theme\"" > $RPM_BUILD_ROOT%{_datadir}/icewm/theme + %find_lang %{name} @@ -110,11 +134,44 @@ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/xse rm -rf $RPM_BUILD_ROOT +%post clearlooks +[ ! -z "$(cat /etc/issue | grep Fedora)" ] && \ + [ -d /usr/share/icewm/themes/clearlooks ] && [ -x /usr/bin/convert ] && \ + convert /usr/share/icons/hicolor/24x24/apps/fedora-logo-icon.png \ + /usr/share/icewm/themes/clearlooks/taskbar/icewm.xpm || echo -n +[ -z "$(cat /etc/issue | grep Fedora)" ] && \ + [ -d /usr/share/icewm/themes/clearlooks ] && [ -x /usr/bin/convert ] && \ + convert /usr/share/pixmaps/redhat/shadowman-transparent-22.png \ + /usr/share/icewm/themes/clearlooks/taskbar/icewm.xpm || echo -n + + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS BUGS CHANGES COPYING README README.wm-session TODO doc/*.html %exclude %{_datadir}/icewm/startup -%{_datadir}/icewm/ +%{_datadir}/icewm +%{_datadir}/icewm/icons +%{_datadir}/icewm/keys +%{_datadir}/icewm/ledclock +%{_datadir}/icewm/mailbox +%{_datadir}/icewm/menu +%{_datadir}/icewm/preferences +%{_datadir}/icewm/startup +%{_datadir}/icewm/taskbar +%{_datadir}/icewm/themes +%{_datadir}/icewm/themes/gtk2 +%{_datadir}/icewm/themes/icedesert +%{_datadir}/icewm/themes/Infadel2 +%{_datadir}/icewm/themes/metal2 +%{_datadir}/icewm/themes/motif +%{_datadir}/icewm/themes/nice +%{_datadir}/icewm/themes/nice2 +%{_datadir}/icewm/themes/warp3 +%{_datadir}/icewm/themes/warp4 +%{_datadir}/icewm/themes/win95 +%{_datadir}/icewm/themes/yellowmotif +%{_datadir}/icewm/toolbar +%{_datadir}/icewm/winoptions %{_datadir}/xsessions/icewm.desktop %{_mandir}/man1/icewm.1* %{_bindir}/icewmbg @@ -137,7 +194,34 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icewm/startup +%files clearlooks +%defattr(-,root,root,-) +%{_datadir}/icewm/themes/clearlooks +%{_datadir}/icewm/theme + + %changelog +* Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 +- 1.2.37. +- Fix missing directory ownership. (#483346) + +* Tue Feb 24 2009 Fedora Release Engineering - 1.2.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Jan 6 2009 Caol??n McNamara - 1.2.36-3 +- pkg-config --cflags gnome-desktop-2.0 doesn't implicitly include + libgnomeui-2.0 anymore, so add it in explicitly + +* Mon Jan 5 2009 Gilboa Davara - 1.2.36-2 +- Missing BR libgnomeui-devel. (devel) +- Missing BR gnome-vfs2-devel. (devel) + +* Thu Jan 24 2008 - 1.2.35-3 +- Fix broken -devel BR (truetype). + +* Sat Jan 19 2008 - 1.2.35-2 +- Disable xorg-x11-fonts-truetype in -devel. + * Mon Jan 14 2008 - 1.2.35-1 - 1.2.35. - Missing BR: xorg-x11-fonts-truetype. (#351811) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/icewm/EL-5/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 14 Jan 2008 17:19:50 -0000 1.5 +++ sources 16 Jul 2009 11:49:16 -0000 1.6 @@ -1 +1,2 @@ -a2adc53ab4c0c7ca6daa1ca4c697ffe9 icewm-1.2.35.tar.gz +970a21588d26eb361020fd60a61a482c icewm-1.2.37.tar.gz +933ab5875707f9918d92f63d391630b0 clearlooks.tgz From mkasik at fedoraproject.org Thu Jul 16 12:19:49 2009 From: mkasik at fedoraproject.org (=?utf-8?b?TWFyZWsgS2HFocOtaw==?=) Date: Thu, 16 Jul 2009 12:19:49 +0000 (UTC) Subject: rpms/cups-pk-helper/F-11 get_devices.patch, NONE, 1.1 cups-pk-helper.spec, 1.7, 1.8 Message-ID: <20090716121949.9C45F11C0099@cvs1.fedora.phx.redhat.com> Author: mkasik Update of /cvs/pkgs/rpms/cups-pk-helper/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16889 Modified Files: cups-pk-helper.spec Added Files: get_devices.patch Log Message: * Thu Jul 16 2009 Marek Kasik - 0.0.4-2 - Add devices_get() function. get_devices.patch: --- NEW FILE get_devices.patch --- --- cups-pk-helper-0.0.4/src/cups.c 2009-03-04 13:41:53.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups.c 2009-07-16 10:41:03.000000000 +0200 @@ -58,7 +58,7 @@ getPPDs getServerPPD getDocument - getDevices +~!+* getDevices getJobs getJobAttributes ~!+* cancelJob @@ -1807,6 +1807,89 @@ cph_cups_job_get_status (CphCups *cup return status; } +void get_devices_cb (const char *device_class, + const char *device_id, + const char *device_info, + const char *device_make_and_model, + const char *device_uri, + const char *device_location, + void *user_data) +{ + GHashTable *hash = (GHashTable*) user_data; + int iter; + + g_return_if_fail (hash != NULL); + + iter = atoi (g_hash_table_lookup (hash, "iter")); + iter++; + + if (device_class && strlen (device_class) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-class:%d", iter), + g_strdup (device_class)); + if (device_id && strlen (device_id) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-id:%d", iter), + g_strdup (device_id)); + if (device_info && strlen (device_info) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-info:%d", iter), + g_strdup (device_info)); + if (device_make_and_model && strlen (device_make_and_model) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-make-and-model:%d", iter), + g_strdup (device_make_and_model)); + if (device_uri && strlen (device_uri) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-uri:%d", iter), + g_strdup (device_uri)); + if (device_location && strlen (device_location) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-location:%d ", iter), + g_strdup (device_location)); + g_hash_table_replace (hash, + g_strdup ("iter"), + g_strdup_printf ("%d", iter)); +} + +GHashTable *cph_cups_devices_get (CphCups *cups) +{ + int retval; + GHashTable *hash; + cups_option_t *settings; + int num_settings, i; + + g_return_val_if_fail (CPH_IS_CUPS (cups), NULL); + + hash = g_hash_table_new_full (g_str_hash, g_str_equal, + g_free, g_free); + + g_hash_table_replace (hash, + g_strdup ("iter"), + g_strdup ("-1")); + + retval = cupsGetDevices (cups->priv->connection, + CUPS_TIMEOUT_DEFAULT, + CUPS_INCLUDE_ALL, + CUPS_EXCLUDE_NONE, + get_devices_cb, + hash); + + if (retval != IPP_OK) { + char *error; + + error = g_strdup_printf ("Can not get devices."); + _cph_cups_set_internal_status (cups, error); + g_free (error); + + return NULL; + } + + g_hash_table_remove (hash, "iter"); + + return hash; +} + /****************************************************** * Non-object functions ******************************************************/ --- cups-pk-helper-0.0.4/src/cups.h 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups.h 2009-07-14 16:27:13.000000000 +0200 @@ -184,6 +184,8 @@ CphJobStatus cph_cups_job_get_status (Cp int job_id, const char *user); +GHashTable *cph_cups_devices_get (CphCups *cups); + G_END_DECLS #endif /* CPH_CUPS_H */ --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.c 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.c 2009-07-16 11:07:49.000000000 +0200 @@ -1166,3 +1166,21 @@ cph_mechanism_job_set_hold_until (CphMec return TRUE; } + +gboolean +cph_mechanism_devices_get (CphMechanism *mechanism, + DBusGMethodInvocation *context) +{ + GHashTable *devices; + + reset_killtimer (mechanism); + + if (!_check_polkit_for_action (mechanism, context, "devices-get")) + return FALSE; + + devices = cph_cups_devices_get (mechanism->priv->cups); + _cph_mechanism_return_error_and_value (mechanism, context, + devices == NULL, devices); + + return TRUE; +} --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.h 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.h 2009-07-14 15:08:09.000000000 +0200 @@ -236,6 +236,10 @@ cph_mechanism_job_set_hold_until (CphMec const char *job_hold_until, DBusGMethodInvocation *context); +gboolean +cph_mechanism_devices_get (CphMechanism *mechanism, + DBusGMethodInvocation *context); + G_END_DECLS #endif /* CPH_MECHANISM_H */ --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.xml 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.xml 2009-07-15 16:29:56.000000000 +0200 @@ -192,5 +192,11 @@ + + + + + + --- cups-pk-helper-0.0.4/src/org.opensuse.cupspkhelper.mechanism.policy.in 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/org.opensuse.cupspkhelper.mechanism.policy.in 2009-07-16 11:07:12.000000000 +0200 @@ -86,6 +86,15 @@ + + <_description>Get devices + <_message>Privileges are required to get devices. + + no + auth_admin + + + <_description>Add/Remove/Edit a printer Index: cups-pk-helper.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups-pk-helper/F-11/cups-pk-helper.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cups-pk-helper.spec 31 Mar 2009 13:11:35 -0000 1.7 +++ cups-pk-helper.spec 16 Jul 2009 12:19:49 -0000 1.8 @@ -1,6 +1,6 @@ Name: cups-pk-helper Version: 0.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A helper that makes system-config-printer use PolicyKit Group: System Environment/Base @@ -8,6 +8,8 @@ License: GPLv2+ URL: http://www.vuntz.net/download/cups-pk-helper/ Source0: http://www.vuntz.net/download/cups-pk-helper/cups-pk-helper-%{version}.tar.bz2 +Patch0: get_devices.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cups-devel >= 1.2 @@ -33,6 +35,8 @@ interfaces available under control of Po %prep %setup -q +%patch0 -p1 -b .get-devices + %build %configure make %{?_smp_mflags} @@ -58,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Marek Kasik - 0.0.4-2 +- Add devices_get() function. + * Tue Mar 31 2009 Marek Kasik - 0.0.4-1 - Update to 0.0.4 From mkasik at fedoraproject.org Thu Jul 16 12:35:46 2009 From: mkasik at fedoraproject.org (=?utf-8?b?TWFyZWsgS2HFocOtaw==?=) Date: Thu, 16 Jul 2009 12:35:46 +0000 (UTC) Subject: rpms/cups-pk-helper/devel get_devices.patch, NONE, 1.1 cups-pk-helper.spec, 1.8, 1.9 Message-ID: <20090716123546.9906811C0099@cvs1.fedora.phx.redhat.com> Author: mkasik Update of /cvs/pkgs/rpms/cups-pk-helper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19493 Modified Files: cups-pk-helper.spec Added Files: get_devices.patch Log Message: * Thu Jul 16 2009 Marek Kasik - 0.0.4-3 - Add devices_get() function. get_devices.patch: --- NEW FILE get_devices.patch --- --- cups-pk-helper-0.0.4/src/cups.c 2009-03-04 13:41:53.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups.c 2009-07-16 12:49:46.000000000 +0200 @@ -58,7 +58,7 @@ getPPDs getServerPPD getDocument - getDevices +~!+* getDevices getJobs getJobAttributes ~!+* cancelJob @@ -1807,6 +1807,89 @@ cph_cups_job_get_status (CphCups *cup return status; } +void get_devices_cb (const char *device_class, + const char *device_id, + const char *device_info, + const char *device_make_and_model, + const char *device_uri, + const char *device_location, + void *user_data) +{ + GHashTable *hash = (GHashTable*) user_data; + int iter; + + g_return_if_fail (hash != NULL); + + iter = atoi (g_hash_table_lookup (hash, "iter")); + iter++; + + if (device_class && strlen (device_class) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-class:%d", iter), + g_strdup (device_class)); + if (device_id && strlen (device_id) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-id:%d", iter), + g_strdup (device_id)); + if (device_info && strlen (device_info) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-info:%d", iter), + g_strdup (device_info)); + if (device_make_and_model && strlen (device_make_and_model) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-make-and-model:%d", iter), + g_strdup (device_make_and_model)); + if (device_uri && strlen (device_uri) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-uri:%d", iter), + g_strdup (device_uri)); + if (device_location && strlen (device_location) > 0) + g_hash_table_replace (hash, + g_strdup_printf ("device-location:%d ", iter), + g_strdup (device_location)); + g_hash_table_replace (hash, + g_strdup ("iter"), + g_strdup_printf ("%d", iter)); +} + +GHashTable *cph_cups_devices_get (CphCups *cups) +{ + int retval; + GHashTable *hash; + cups_option_t *settings; + int num_settings, i; + + g_return_val_if_fail (CPH_IS_CUPS (cups), NULL); + + hash = g_hash_table_new_full (g_str_hash, g_str_equal, + g_free, g_free); + + g_hash_table_replace (hash, + g_strdup ("iter"), + g_strdup ("-1")); + + retval = cupsGetDevices (cups->priv->connection, + CUPS_TIMEOUT_DEFAULT, + CUPS_INCLUDE_ALL, + CUPS_EXCLUDE_NONE, + get_devices_cb, + hash); + + if (retval != IPP_OK) { + char *error; + + error = g_strdup_printf ("Can not get devices."); + _cph_cups_set_internal_status (cups, error); + g_free (error); + + return NULL; + } + + g_hash_table_remove (hash, "iter"); + + return hash; +} + /****************************************************** * Non-object functions ******************************************************/ --- cups-pk-helper-0.0.4/src/cups.h 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups.h 2009-07-16 12:50:44.000000000 +0200 @@ -184,6 +184,8 @@ CphJobStatus cph_cups_job_get_status (Cp int job_id, const char *user); +GHashTable *cph_cups_devices_get (CphCups *cups); + G_END_DECLS #endif /* CPH_CUPS_H */ --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.c 2009-07-16 12:46:03.000000000 +0200 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.c 2009-07-16 12:52:02.000000000 +0200 @@ -1103,3 +1103,21 @@ cph_mechanism_job_set_hold_until (CphMec return TRUE; } + +gboolean +cph_mechanism_devices_get (CphMechanism *mechanism, + DBusGMethodInvocation *context) +{ + GHashTable *devices; + + reset_killtimer (mechanism); + + if (!_check_polkit_for_action (mechanism, context, "devices-get")) + return FALSE; + + devices = cph_cups_devices_get (mechanism->priv->cups); + _cph_mechanism_return_error_and_value (mechanism, context, + devices == NULL, devices); + + return TRUE; +} --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.h 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.h 2009-07-16 12:52:37.000000000 +0200 @@ -236,6 +236,10 @@ cph_mechanism_job_set_hold_until (CphMec const char *job_hold_until, DBusGMethodInvocation *context); +gboolean +cph_mechanism_devices_get (CphMechanism *mechanism, + DBusGMethodInvocation *context); + G_END_DECLS #endif /* CPH_MECHANISM_H */ --- cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.xml 2009-02-28 03:38:13.000000000 +0100 +++ cups-pk-helper-0.0.4/src/cups-pk-helper-mechanism.xml 2009-07-16 12:53:27.000000000 +0200 @@ -192,5 +192,11 @@ + + + + + + --- cups-pk-helper-0.0.4/src/org.opensuse.cupspkhelper.mechanism.policy.in 2009-07-16 12:46:03.000000000 +0200 +++ cups-pk-helper-0.0.4/src/org.opensuse.cupspkhelper.mechanism.policy.in 2009-07-16 12:53:57.000000000 +0200 @@ -86,6 +86,15 @@ + + <_description>Get devices + <_message>Privileges are required to get devices. + + no + auth_admin_keep + + + <_description>Add/Remove/Edit a printer Index: cups-pk-helper.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups-pk-helper/devel/cups-pk-helper.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cups-pk-helper.spec 18 Jun 2009 13:26:49 -0000 1.8 +++ cups-pk-helper.spec 16 Jul 2009 12:35:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: cups-pk-helper Version: 0.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A helper that makes system-config-printer use PolicyKit Group: System Environment/Base @@ -9,6 +9,7 @@ URL: http://www.vuntz.net/dow Source0: http://www.vuntz.net/download/cups-pk-helper/cups-pk-helper-%{version}.tar.bz2 Patch0: polkit-1.patch +Patch1: get_devices.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -39,6 +40,7 @@ interfaces available under control of Po %setup -q %patch0 -p1 -b .polkit-1 +%patch1 -p1 -b .get-devices %build # Patch0 modifies configure.ac @@ -68,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Marek Kasik - 0.0.4-3 +- Add devices_get() function. + * Thu Jun 18 2009 Marek Kasik - 0.0.4-2 - Update to polkit-1 From rdieter at fedoraproject.org Thu Jul 16 12:37:40 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 12:37:40 +0000 (UTC) Subject: rpms/kdeplasma-addons/devel kdeplasma-addons.spec,1.46,1.47 Message-ID: <20090716123740.8B60611C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdeplasma-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19808 Modified Files: kdeplasma-addons.spec Log Message: * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - BR: libXcomposite-devel (lancelot eye-candy) Index: kdeplasma-addons.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeplasma-addons/devel/kdeplasma-addons.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- kdeplasma-addons.spec 12 Jul 2009 11:20:57 -0000 1.46 +++ kdeplasma-addons.spec 16 Jul 2009 12:37:10 -0000 1.47 @@ -1,6 +1,6 @@ Name: kdeplasma-addons Version: 4.2.96 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Additional plasmoids for KDE Group: User Interface/Desktops @@ -21,10 +21,12 @@ BuildRequires: kdepimlibs-devel >= %{ve # for libplasmaclock, nepomuk BuildRequires: kdebase-workspace-devel >= %{version} # RECOMMENDED: Marble is used to provide a desktop globe wallpaper for Plasma. -BuildRequires: kdeedu-devel >= %{version} +BuildRequires: kdeedu-devel >= %{version} %if 0%{?fedora} > 9 # Optional (but recommended), enables automatic rotation for frame applet BuildRequires: libkexiv2-devel >= 0.4.0 +# lancelot eye-candy +BuildRequires: libXcomposite-devel libXrender-devel libXdamage-devel %endif BuildRequires: qimageblitz-devel BuildRequires: soprano-devel @@ -137,6 +139,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- BR: libXcomposite-devel (lancelot eye-candy) + * Sun Jul 12 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From hpejakle at fedoraproject.org Thu Jul 16 12:44:21 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:44:21 +0000 (UTC) Subject: rpms/perl-Proc-Simple/devel import.log, NONE, 1.1 perl-Proc-Simple.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716124421.C6BC911C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/perl-Proc-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21068/devel Modified Files: .cvsignore sources Added Files: import.log perl-Proc-Simple.spec Log Message: * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version --- NEW FILE import.log --- perl-Proc-Simple-1_25-1_fc11:HEAD:perl-Proc-Simple-1.25-1.fc11.src.rpm:1247748062 --- NEW FILE perl-Proc-Simple.spec --- Name: perl-Proc-Simple Version: 1.25 Release: 1%{?dist} Summary: Launch and control background processes License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Proc-Simple/ Source0: http://www.cpan.org/authors/id/M/MS/MSCHILLI/Proc-Simple-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Proc::Simple package provides objects mimicing real-life processes from a user's point of view. Either external programs or perl subroutines can be launched and controlled as processes in the background. %prep # tar archive do not longer contains directory Proc-Simple-%{version} %setup -q -n mschilli-proc-simple-perl-54fa3ecd4a55aba3aa83d2843c13ecbe14d8291b %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} \; find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version * Mon Jun 22 2009 Jan Klepek 1.24-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:26:20 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:43:51 -0000 1.2 @@ -0,0 +1 @@ +Proc-Simple-1.25.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:26:20 -0000 1.1 +++ sources 16 Jul 2009 12:43:51 -0000 1.2 @@ -0,0 +1 @@ +7599854c77efc7d1cc45d1eec899ceb7 Proc-Simple-1.25.tgz From hpejakle at fedoraproject.org Thu Jul 16 12:48:58 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:48:58 +0000 (UTC) Subject: rpms/perl-Proc-Simple/F-10 import.log, NONE, 1.1 perl-Proc-Simple.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716124858.8C09211C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/perl-Proc-Simple/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22224/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Proc-Simple.spec Log Message: * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version --- NEW FILE import.log --- perl-Proc-Simple-1_25-1_fc11:F-10:perl-Proc-Simple-1.25-1.fc11.src.rpm:1247748370 --- NEW FILE perl-Proc-Simple.spec --- Name: perl-Proc-Simple Version: 1.25 Release: 1%{?dist} Summary: Launch and control background processes License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Proc-Simple/ Source0: http://www.cpan.org/authors/id/M/MS/MSCHILLI/Proc-Simple-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Proc::Simple package provides objects mimicing real-life processes from a user's point of view. Either external programs or perl subroutines can be launched and controlled as processes in the background. %prep # tar archive do not longer contains directory Proc-Simple-%{version} %setup -q -n mschilli-proc-simple-perl-54fa3ecd4a55aba3aa83d2843c13ecbe14d8291b %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} \; find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version * Mon Jun 22 2009 Jan Klepek 1.24-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:26:20 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:48:28 -0000 1.2 @@ -0,0 +1 @@ +Proc-Simple-1.25.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:26:20 -0000 1.1 +++ sources 16 Jul 2009 12:48:28 -0000 1.2 @@ -0,0 +1 @@ +7599854c77efc7d1cc45d1eec899ceb7 Proc-Simple-1.25.tgz From mlichvar at fedoraproject.org Thu Jul 16 12:51:31 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Thu, 16 Jul 2009 12:51:31 +0000 (UTC) Subject: rpms/minicom/devel minicom-2.3-getline.patch, NONE, 1.1 minicom.spec, 1.33, 1.34 minicom-2.3-wchar.patch, 1.1, NONE Message-ID: <20090716125131.5FA5611C0099@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/minicom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22787 Modified Files: minicom.spec Added Files: minicom-2.3-getline.patch Removed Files: minicom-2.3-wchar.patch Log Message: - rename getline to avoid conflict with glibc (#511715) - remove makefiles from docs - drop wchar patch minicom-2.3-getline.patch: --- NEW FILE minicom-2.3-getline.patch --- diff -up minicom-2.3/src/minicom.c.getline minicom-2.3/src/minicom.c --- minicom-2.3/src/minicom.c.getline 2009-07-16 13:17:04.000000000 +0200 +++ minicom-2.3/src/minicom.c 2009-07-16 13:21:55.000000000 +0200 @@ -166,7 +166,7 @@ static void shjump(int sig) #endif /*SIGTSTP*/ /* Get a line from either window or scroll back buffer. */ -static ELM *getline(WIN *w, int no) +static ELM *get_line(WIN *w, int no) { int i; static ELM outofrange[MAXCOLS] = {{0,0,0}}; @@ -204,7 +204,7 @@ static void drawhist(WIN *w, int y, int w->direct = 0; for (f = 0; f < w->ys; f++) - mc_wdrawelm(w, f, getline(w, y++)); + mc_wdrawelm(w, f, get_line(w, y++)); if (r) mc_wredraw(w, 1); w->direct = 1; @@ -226,7 +226,7 @@ void drawhist_look(WIN *w, int y, int r, tmp_line[0]='\0'; w->direct = 0; for (f = 0; f < w->ys; f++) { - tmp_e = getline(w, y++); + tmp_e = get_line(w, y++); /* First we "accumulate" the line into a variable */ mc_wdrawelm_var(w, tmp_e, tmp_line); @@ -323,7 +323,7 @@ int find_next(WIN *w, WIN *w_hist, for (next_line = hit_line; next_line <= all_lines; next_line++) { /* we do 'something' here... :-) */ - tmp_e = getline(w_hist, next_line); + tmp_e = get_line(w_hist, next_line); /* * First we "accumulate" the line into a variable. @@ -378,9 +378,9 @@ wchar_t *StrStr(wchar_t *str1, wchar_t * static void drawcite(WIN *w, int y, int citey, int start, int end) { if (y+citey >= start && y+citey <= end) - mc_wdrawelm_inverse(w, y, getline(w, y+citey)); + mc_wdrawelm_inverse(w, y, get_line(w, y+citey)); else - mc_wdrawelm(w, y, getline(w, y+citey)); + mc_wdrawelm(w, y, get_line(w, y+citey)); } static void drawcite_whole(WIN *w, int y, int start, int end) @@ -399,7 +399,7 @@ static void do_cite(WIN *w, int start, i for (y=start; y<=end; y++) { vt_send('>'); vt_send(' '); - tmp_e = getline(w, y); + tmp_e = get_line(w, y); mc_wdrawelm_var(w, tmp_e, tmp_line); tmp_line[w->xs] = 0; for (x = w->xs-1; x >= 0; x--) { @@ -599,7 +599,7 @@ static void scrollback(void) if (citemode) { inverse = (y+cite_y >= cite_ystart && y+cite_y <= cite_yend); } else { - tmp_e = getline(b_us, y); + tmp_e = get_line(b_us, y); if (wcslen(look_for) > 1) { /* quick scan for pattern match */ mc_wdrawelm_var(b_us, tmp_e, tmp_line); @@ -610,9 +610,9 @@ static void scrollback(void) } if (inverse) - mc_wdrawelm_inverse(b_us, 0, getline(b_us, y)); + mc_wdrawelm_inverse(b_us, 0, get_line(b_us, y)); else - mc_wdrawelm(b_us, 0, getline(b_us, y)); + mc_wdrawelm(b_us, 0, get_line(b_us, y)); if (citemode) mc_wlocate(b_us, 0, cite_y); mc_wflush(); @@ -647,7 +647,7 @@ static void scrollback(void) if (citemode) { inverse = (y+cite_y >= cite_ystart && y+cite_y <= cite_yend); } else { - tmp_e = getline(b_us, y + b_us->ys - 1); + tmp_e = get_line(b_us, y + b_us->ys - 1); if (wcslen(look_for) > 1) { /* quick scan for pattern match */ mc_wdrawelm_var(b_us, tmp_e, tmp_line); @@ -659,10 +659,10 @@ static void scrollback(void) if (inverse) mc_wdrawelm_inverse(b_us, b_us->ys - 1, - getline(b_us, y + b_us->ys - 1)); + get_line(b_us, y + b_us->ys - 1)); else mc_wdrawelm(b_us, b_us->ys - 1, - getline(b_us, y + b_us->ys - 1)); + get_line(b_us, y + b_us->ys - 1)); if (citemode) mc_wlocate(b_us, 0, cite_y); mc_wflush(); @@ -752,7 +752,7 @@ static void scrollback(void) mc_wlocate(b_st, 0, 0); mc_wprintf(b_st, hline); mc_wredraw(b_st, 1); - mc_wdrawelm_inverse(b_us, cite_y, getline(b_us, cite_ystart)); + mc_wdrawelm_inverse(b_us, cite_y, get_line(b_us, cite_ystart)); mc_wlocate(b_us, 0, cite_y); break; case K_ESC: Index: minicom.spec =================================================================== RCS file: /cvs/pkgs/rpms/minicom/devel/minicom.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- minicom.spec 26 Feb 2009 01:30:47 -0000 1.33 +++ minicom.spec 16 Jul 2009 12:51:01 -0000 1.34 @@ -1,7 +1,7 @@ Summary: A text-based modem control and terminal emulation program Name: minicom Version: 2.3 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://alioth.debian.org/projects/minicom/ License: GPLv2+ Group: Applications/Communications @@ -14,13 +14,13 @@ Source0: http://alioth.debian.org/frs/do Patch1: minicom-2.3-ncurses.patch Patch2: minicom-2.3-drop-privs.patch -Patch3: minicom-2.3-wchar.patch Patch4: minicom-2.2-umask.patch Patch6: minicom-2.2-spaces.patch Patch7: minicom-2.3-gotodir.patch Patch8: minicom-2.3-rh.patch Patch9: minicom-2.3-esc.patch Patch10: minicom-2.3-staticbuf.patch +Patch11: minicom-2.3-getline.patch %description Minicom is a simple text-based modem control and terminal emulation @@ -32,13 +32,16 @@ language, and other features. %setup -q %patch1 -p1 -b .ncurses %patch2 -p1 -b .drop-privs -%patch3 -p1 -b .wchar %patch4 -p1 -b .umask %patch6 -p1 -b .spaces %patch7 -p1 -b .gotodir %patch8 -p1 -b .rh %patch9 -p1 -b .esc %patch10 -p1 -b .staticbuf +%patch11 -p1 -b .getline + +cp -pr doc doc_ +rm -f doc_/Makefile* %build %configure @@ -57,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root) -%doc ChangeLog AUTHORS NEWS TODO doc/* +%doc ChangeLog AUTHORS NEWS TODO doc_/* %config(noreplace) %{_sysconfdir}/minicom.users # DO NOT MAKE minicom SUID/SGID anything. %{_bindir}/minicom @@ -67,6 +70,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Thu Jul 16 2009 Miroslav Lichvar 2.3-5 +- rename getline to avoid conflict with glibc (#511715) +- remove makefiles from docs +- drop wchar patch + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- minicom-2.3-wchar.patch DELETED --- From hpejakle at fedoraproject.org Thu Jul 16 12:53:55 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:53:55 +0000 (UTC) Subject: rpms/perl-Proc-Simple/F-11 import.log, NONE, 1.1 perl-Proc-Simple.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716125355.97D6711C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/perl-Proc-Simple/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23153/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Proc-Simple.spec Log Message: * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version --- NEW FILE import.log --- perl-Proc-Simple-1_25-1_fc11:F-11:perl-Proc-Simple-1.25-1.fc11.src.rpm:1247748673 --- NEW FILE perl-Proc-Simple.spec --- Name: perl-Proc-Simple Version: 1.25 Release: 1%{?dist} Summary: Launch and control background processes License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Proc-Simple/ Source0: http://www.cpan.org/authors/id/M/MS/MSCHILLI/Proc-Simple-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The Proc::Simple package provides objects mimicing real-life processes from a user's point of view. Either external programs or perl subroutines can be launched and controlled as processes in the background. %prep # tar archive do not longer contains directory Proc-Simple-%{version} %setup -q -n mschilli-proc-simple-perl-54fa3ecd4a55aba3aa83d2843c13ecbe14d8291b %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} find %{buildroot} -type f -name .packlist -exec rm -f {} \; find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} %{buildroot}/* %check make test %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version * Mon Jun 22 2009 Jan Klepek 1.24-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:26:20 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:53:25 -0000 1.2 @@ -0,0 +1 @@ +Proc-Simple-1.25.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:26:20 -0000 1.1 +++ sources 16 Jul 2009 12:53:25 -0000 1.2 @@ -0,0 +1 @@ +7599854c77efc7d1cc45d1eec899ceb7 Proc-Simple-1.25.tgz From hpejakle at fedoraproject.org Thu Jul 16 12:54:11 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:54:11 +0000 (UTC) Subject: rpms/rubygem-coderay/devel import.log, NONE, 1.1 rubygem-coderay.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716125411.6051011C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/rubygem-coderay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23820/devel Modified Files: .cvsignore sources Added Files: import.log rubygem-coderay.spec Log Message: * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package --- NEW FILE import.log --- rubygem-coderay-0_8_312-3_fc11:HEAD:rubygem-coderay-0.8.312-3.fc11.src.rpm:1247748810 --- NEW FILE rubygem-coderay.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname coderay %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Fast syntax highlighter engine for many programming languages Name: rubygem-%{gemname} Version: 0.8.312 Release: 3%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://coderay.rubychan.de Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems Requires: rubygem(term-ansicolor) BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Coderay is a Ruby library for syntax highlighting. CodeRay is build to be easy to use and intuitive, but at the same time fully featured, complete, fast and efficient. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin rm -rf %{buildroot}/%{geminstdir}/lib/term find %{buildroot}%{geminstdir}/bin -type f | xargs chmod a+x find %{buildroot}/%{geminstdir}/bin -type f | xargs sed -i 's/\r//' $FILES sed -i 's/\r//' %{buildroot}/%{geminstdir}/FOLDERS sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/helpers/file_type.rb sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb chmod a-x %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %{_bindir}/coderay %{_bindir}/coderay_stylesheet %dir %{geminstdir}/ %dir %{geminstdir}/lib %{geminstdir}/bin %{geminstdir}/lib/[cC]* %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/FOLDERS %doc %{geminstdir}/LICENSE %doc %{geminstdir}/lib/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:38:30 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:54:11 -0000 1.2 @@ -0,0 +1 @@ +coderay-0.8.312.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:38:30 -0000 1.1 +++ sources 16 Jul 2009 12:54:11 -0000 1.2 @@ -0,0 +1 @@ +b65c6f9ca01af7f6e413a06e1edbd4cd coderay-0.8.312.gem From hpejakle at fedoraproject.org Thu Jul 16 12:55:41 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:55:41 +0000 (UTC) Subject: rpms/rubygem-coderay/F-10 import.log, NONE, 1.1 rubygem-coderay.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716125541.BE76F11C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/rubygem-coderay/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24405/F-10 Modified Files: .cvsignore sources Added Files: import.log rubygem-coderay.spec Log Message: * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package --- NEW FILE import.log --- rubygem-coderay-0_8_312-3_fc11:F-10:rubygem-coderay-0.8.312-3.fc11.src.rpm:1247748909 --- NEW FILE rubygem-coderay.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname coderay %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Fast syntax highlighter engine for many programming languages Name: rubygem-%{gemname} Version: 0.8.312 Release: 3%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://coderay.rubychan.de Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems Requires: rubygem(term-ansicolor) BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Coderay is a Ruby library for syntax highlighting. CodeRay is build to be easy to use and intuitive, but at the same time fully featured, complete, fast and efficient. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin rm -rf %{buildroot}/%{geminstdir}/lib/term find %{buildroot}%{geminstdir}/bin -type f | xargs chmod a+x find %{buildroot}/%{geminstdir}/bin -type f | xargs sed -i 's/\r//' $FILES sed -i 's/\r//' %{buildroot}/%{geminstdir}/FOLDERS sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/helpers/file_type.rb sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb chmod a-x %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %{_bindir}/coderay %{_bindir}/coderay_stylesheet %dir %{geminstdir}/ %dir %{geminstdir}/lib %{geminstdir}/bin %{geminstdir}/lib/[cC]* %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/FOLDERS %doc %{geminstdir}/LICENSE %doc %{geminstdir}/lib/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:38:30 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:55:41 -0000 1.2 @@ -0,0 +1 @@ +coderay-0.8.312.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:38:30 -0000 1.1 +++ sources 16 Jul 2009 12:55:41 -0000 1.2 @@ -0,0 +1 @@ +b65c6f9ca01af7f6e413a06e1edbd4cd coderay-0.8.312.gem From hpejakle at fedoraproject.org Thu Jul 16 12:56:18 2009 From: hpejakle at fedoraproject.org (Jan Klepek) Date: Thu, 16 Jul 2009 12:56:18 +0000 (UTC) Subject: rpms/rubygem-coderay/F-11 import.log, NONE, 1.1 rubygem-coderay.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716125618.852B611C0099@cvs1.fedora.phx.redhat.com> Author: hpejakle Update of /cvs/pkgs/rpms/rubygem-coderay/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24464/F-11 Modified Files: .cvsignore sources Added Files: import.log rubygem-coderay.spec Log Message: * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package --- NEW FILE import.log --- rubygem-coderay-0_8_312-3_fc11:F-11:rubygem-coderay-0.8.312-3.fc11.src.rpm:1247748919 --- NEW FILE rubygem-coderay.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname coderay %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Fast syntax highlighter engine for many programming languages Name: rubygem-%{gemname} Version: 0.8.312 Release: 3%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://coderay.rubychan.de Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems Requires: rubygem(term-ansicolor) BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Coderay is a Ruby library for syntax highlighting. CodeRay is build to be easy to use and intuitive, but at the same time fully featured, complete, fast and efficient. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} rmdir %{buildroot}%{gemdir}/bin rm -rf %{buildroot}/%{geminstdir}/lib/term find %{buildroot}%{geminstdir}/bin -type f | xargs chmod a+x find %{buildroot}/%{geminstdir}/bin -type f | xargs sed -i 's/\r//' $FILES sed -i 's/\r//' %{buildroot}/%{geminstdir}/FOLDERS sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/helpers/file_type.rb sed -i 's#\#!/usr/bin/env ruby##g' %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb chmod a-x %{buildroot}/%{geminstdir}/lib/coderay/token_classes.rb %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %{_bindir}/coderay %{_bindir}/coderay_stylesheet %dir %{geminstdir}/ %dir %{geminstdir}/lib %{geminstdir}/bin %{geminstdir}/lib/[cC]* %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/FOLDERS %doc %{geminstdir}/LICENSE %doc %{geminstdir}/lib/README %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license * Wed Jun 24 2009 Jan Klepek - 0.8.312-2 - consistent macro usage, rewritten description, removed term-ansicolor during install * Sun Jun 14 2009 Jan Klepek - 0.8.312-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 8 Jul 2009 16:38:30 -0000 1.1 +++ .cvsignore 16 Jul 2009 12:55:48 -0000 1.2 @@ -0,0 +1 @@ +coderay-0.8.312.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 8 Jul 2009 16:38:30 -0000 1.1 +++ sources 16 Jul 2009 12:55:48 -0000 1.2 @@ -0,0 +1 @@ +b65c6f9ca01af7f6e413a06e1edbd4cd coderay-0.8.312.gem From jussilehtola at fedoraproject.org Thu Jul 16 13:09:56 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:09:56 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.5,1.6 Message-ID: <20090716130956.178EF11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27382/devel Modified Files: unetbootin.spec Log Message: * Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr - Add ExclusiveArch to prevent build on architectures lacking syslinux. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.5 +++ unetbootin.spec 16 Jul 2009 13:09:55 -0000 1.6 @@ -2,13 +2,15 @@ Name: unetbootin Version: 0 -Release: 5.%{rel}bzr%{?dist} +Release: 6.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +# Syslinux is only available on x86 architectures +ExclusiveArch: %{ix86} x86_64 BuildRequires: desktop-file-utils BuildRequires: qt4-devel @@ -71,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr +- Add ExclusiveArch to prevent build on architectures lacking syslinux. + * Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr - Fix EPEL install. From jussilehtola at fedoraproject.org Thu Jul 16 13:10:25 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:10:25 +0000 (UTC) Subject: rpms/unetbootin/F-10 unetbootin.spec,1.4,1.5 Message-ID: <20090716131025.9B1C611C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27382/F-10 Modified Files: unetbootin.spec Log Message: * Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr - Add ExclusiveArch to prevent build on architectures lacking syslinux. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-10/unetbootin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.4 +++ unetbootin.spec 16 Jul 2009 13:09:55 -0000 1.5 @@ -2,13 +2,15 @@ Name: unetbootin Version: 0 -Release: 5.%{rel}bzr%{?dist} +Release: 6.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +# Syslinux is only available on x86 architectures +ExclusiveArch: %{ix86} x86_64 BuildRequires: desktop-file-utils BuildRequires: qt4-devel @@ -71,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr +- Add ExclusiveArch to prevent build on architectures lacking syslinux. + * Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr - Fix EPEL install. From jussilehtola at fedoraproject.org Thu Jul 16 13:10:25 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:10:25 +0000 (UTC) Subject: rpms/unetbootin/F-11 unetbootin.spec,1.4,1.5 Message-ID: <20090716131025.CA2A511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27382/F-11 Modified Files: unetbootin.spec Log Message: * Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr - Add ExclusiveArch to prevent build on architectures lacking syslinux. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/F-11/unetbootin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- unetbootin.spec 10 Jul 2009 19:46:46 -0000 1.4 +++ unetbootin.spec 16 Jul 2009 13:09:55 -0000 1.5 @@ -2,13 +2,15 @@ Name: unetbootin Version: 0 -Release: 5.%{rel}bzr%{?dist} +Release: 6.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +# Syslinux is only available on x86 architectures +ExclusiveArch: %{ix86} x86_64 BuildRequires: desktop-file-utils BuildRequires: qt4-devel @@ -71,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr +- Add ExclusiveArch to prevent build on architectures lacking syslinux. + * Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr - Fix EPEL install. From pbrobinson at fedoraproject.org Thu Jul 16 13:20:20 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 13:20:20 +0000 (UTC) Subject: rpms/gobject-introspection/F-11 gobject-introspection-compilecrashfix.patch, NONE, 1.1 gobject-introspection.spec, 1.4, 1.5 Message-ID: <20090716132020.EDFB111C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gobject-introspection/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29628 Modified Files: gobject-introspection.spec Added Files: gobject-introspection-compilecrashfix.patch Log Message: - Update to 0.6.3 gobject-introspection-compilecrashfix.patch: --- NEW FILE gobject-introspection-compilecrashfix.patch --- >From a1f5af4683b08892e87288ef4906782f4094703d Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 06 Jul 2009 15:17:40 +0000 Subject: Sync the basic types array in girnode.c:serialize_type with GITypeTag Fixes a crash compiling GIRepository-2.0.gir. http://bugzilla.gnome.org/show_bug.cgi?id=587823 --- diff --git a/girepository/girnode.c b/girepository/girnode.c index bd9be68..22e821e 100644 --- a/girepository/girnode.c +++ b/girepository/girnode.c @@ -1229,6 +1229,8 @@ serialize_type (GIrModule *module, "uint32", "int64", "uint64", + "short", + "ushort", "int", "uint", "long", @@ -1237,11 +1239,10 @@ serialize_type (GIrModule *module, "size", "float", "double", + "time_t", + "GType", "utf8", "filename", - "string", - "sequence", - "any" }; if (node->tag < GI_TYPE_TAG_ARRAY) -- cgit v0.8.2 Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/F-11/gobject-introspection.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gobject-introspection.spec 25 Feb 2009 00:14:39 -0000 1.4 +++ gobject-introspection.spec 16 Jul 2009 13:20:20 -0000 1.5 @@ -2,14 +2,15 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gobject-introspection -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.3 +Release: 1%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries License: GPLv2+, LGPLv2+, MIT URL: http://live.gnome.org/GObjectIntrospection -Source0: http://ftp.acc.umu.se/pub/GNOME/sources/gobject-introspection/0.6/gobject-introspection-%{version}.tar.bz2 +Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 +Patch0: gobject-introspection-compilecrashfix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -21,12 +22,14 @@ BuildRequires: flex BuildRequires: bison BuildRequires: libffi-devel BuildRequires: chrpath - -# For autogen -BuildRequires: gnome-common -BuildRequires: autoconf -BuildRequires: automake -BuildRequires: libtool +BuildRequires: mesa-libGL-devel +BuildRequires: cairo-devel +BuildRequires: libxml2-devel +BuildRequires: libXfixes-devel +BuildRequires: libX11-devel +BuildRequires: fontconfig-devel +BuildRequires: libXft-devel +BuildRequires: freetype-devel %description GObject Introspection can scan C header and source files in order to @@ -46,10 +49,11 @@ Libraries and headers for gobject-intros %prep %setup -q +%patch0 -p1 -b .compilecrashfix %build %configure -make +make V=1 %install rm -rf $RPM_BUILD_ROOT @@ -62,6 +66,10 @@ chrpath --delete $RPM_BUILD_ROOT%{_bindi # Mistake in upstream automake rm -f $RPM_BUILD_ROOT/%{_bindir}/barapp +# Move the python modules to the correct location +mkdir -p $RPM_BUILD_ROOT/%{python_sitearch} +mv $RPM_BUILD_ROOT/%{_libdir}/gobject-introspection/giscanner $RPM_BUILD_ROOT/%{python_sitearch}/ + %clean rm -rf $RPM_BUILD_ROOT @@ -74,8 +82,8 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %{_libdir}/lib*.so.* -%dir %{_libdir}/girepository -%{_libdir}/girepository/*.typelib +%dir %{_libdir}/girepository-1.0 +%{_libdir}/girepository-1.0/*.typelib %files devel %defattr(-,root,root) @@ -83,11 +91,18 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %{_includedir}/* %{_bindir}/g-ir-* -%{_datadir}/gir +%{_datadir}/gir-1.0 +%{_datadir}/aclocal/introspection.m4 %{python_sitearch}/giscanner %{_mandir}/man1/*.gz %changelog +* Thu Jul 2 2009 Peter Robinson - 0.6.3-1 +- Update to 0.6.3 + +* Mon Jun 1 2009 Dan Williams - 0.6.2-1 +- Update to 0.6.2 + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pbrobinson at fedoraproject.org Thu Jul 16 13:25:14 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 13:25:14 +0000 (UTC) Subject: rpms/gobject-introspection/F-11 .cvsignore, 1.2, 1.3 gobject-introspection.spec, 1.5, 1.6 sources, 1.2, 1.3 Message-ID: <20090716132514.EEF4811C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gobject-introspection/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30747 Modified Files: .cvsignore gobject-introspection.spec sources Log Message: - update sources and add patch to fix build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Dec 2008 21:54:30 -0000 1.2 +++ .cvsignore 16 Jul 2009 13:25:14 -0000 1.3 @@ -1 +1 @@ -gobject-introspection-0.6.1.tar.bz2 +gobject-introspection-0.6.3.tar.bz2 Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/F-11/gobject-introspection.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gobject-introspection.spec 16 Jul 2009 13:20:20 -0000 1.5 +++ gobject-introspection.spec 16 Jul 2009 13:25:14 -0000 1.6 @@ -3,7 +3,7 @@ Name: gobject-introspection Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.gz %changelog +* Thu Jul 2 2009 Peter Robinson - 0.6.3-2 +- update sources and add patch to fix build + * Thu Jul 2 2009 Peter Robinson - 0.6.3-1 - Update to 0.6.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Dec 2008 21:54:30 -0000 1.2 +++ sources 16 Jul 2009 13:25:14 -0000 1.3 @@ -1 +1 @@ -cbd56165fe6583fbb21331202c85a4ab gobject-introspection-0.6.1.tar.bz2 +5f0d333573bffecd76c461101cff2be1 gobject-introspection-0.6.3.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 13:12:11 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:12:11 +0000 (UTC) Subject: rpms/unetbootin/EL-5 unetbootin.spec,1.4,1.5 Message-ID: <20090716131211.9FCC111C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/unetbootin/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27937/EL-5 Modified Files: unetbootin.spec Log Message: * Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr - Add ExclusiveArch to prevent build on architectures lacking syslinux. Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/EL-5/unetbootin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- unetbootin.spec 10 Jul 2009 19:46:45 -0000 1.4 +++ unetbootin.spec 16 Jul 2009 13:11:41 -0000 1.5 @@ -2,13 +2,15 @@ Name: unetbootin Version: 0 -Release: 5.%{rel}bzr%{?dist} +Release: 6.%{rel}bzr%{?dist} Summary: Create bootable Live USB drives for a variety of Linux distributions Group: System Environment/Base License: GPLv2+ URL: http://unetbootin.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-source-%{rel}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +# Syslinux is only available on x86 architectures +ExclusiveArch: %{ix86} x86_64 BuildRequires: desktop-file-utils BuildRequires: qt4-devel @@ -71,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr +- Add ExclusiveArch to prevent build on architectures lacking syslinux. + * Fri Jul 10 2009 Jussi Lehtola - 0-5.356bzr - Fix EPEL install. From monnerat at fedoraproject.org Thu Jul 16 13:30:49 2009 From: monnerat at fedoraproject.org (Patrick Monnerat) Date: Thu, 16 Jul 2009 13:30:49 +0000 (UTC) Subject: rpms/insight/devel insight-6.8-doubleinstall.patch, NONE, 1.1 insight-6.8-readline6.patch, NONE, 1.1 insight.spec, 1.4, 1.5 Message-ID: <20090716133049.0DB3B11C0099@cvs1.fedora.phx.redhat.com> Author: monnerat Update of /cvs/pkgs/rpms/insight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31617 Modified Files: insight.spec Added Files: insight-6.8-doubleinstall.patch insight-6.8-readline6.patch Log Message: * Wed Jul 15 2009 Patrick Monnerat 6.8-8 - Fix bug #511501: combobox.tcl installed twice causes build failure. - Patch "readline6" to use system readline version 6. insight-6.8-doubleinstall.patch: --- NEW FILE insight-6.8-doubleinstall.patch --- diff -Naur insight-6.8.orig/libgui/library/Makefile.am insight-6.8.new/libgui/library/Makefile.am --- insight-6.8.orig/libgui/library/Makefile.am 2009-07-15 11:23:41.000000000 +0200 +++ insight-6.8.new/libgui/library/Makefile.am 2009-07-15 11:40:34.000000000 +0200 @@ -11,11 +11,9 @@ ulset.tcl wframe.tcl wingrab.tcl ventry.tcl combobox.tcl \ pane.tcl panedwindow.tcl -PACKAGES = combobox.tcl - ## This directory is also referenced in paths.c, which see. guidir = $(datadir)/insight/gui -gui_DATA = tclIndex pkgIndex.tcl $(TCL) $(PACKAGES) +gui_DATA = tclIndex pkgIndex.tcl $(TCL) if CROSS_COMPILING insight-6.8-readline6.patch: --- NEW FILE insight-6.8-readline6.patch --- diff -Naur insight-6.8.orig/gdb/tui/tui-io.c insight-6.8.new/gdb/tui/tui-io.c --- insight-6.8.orig/gdb/tui/tui-io.c 2008-01-01 23:53:22.000000000 +0100 +++ insight-6.8.new/gdb/tui/tui-io.c 2009-07-16 14:50:28.000000000 +0200 @@ -512,7 +512,7 @@ void tui_setup_io (int mode) { - extern int readline_echoing_p; + extern int _rl_echoing_p; if (mode) { @@ -522,12 +522,12 @@ tui_old_rl_prep_terminal = rl_prep_term_function; tui_old_rl_getc_function = rl_getc_function; tui_old_rl_outstream = rl_outstream; - tui_old_readline_echoing_p = readline_echoing_p; + tui_old_readline_echoing_p = _rl_echoing_p; rl_redisplay_function = tui_redisplay_readline; rl_deprep_term_function = tui_deprep_terminal; rl_prep_term_function = tui_prep_terminal; rl_getc_function = tui_getc; - readline_echoing_p = 0; + _rl_echoing_p = 0; rl_outstream = tui_rl_outstream; rl_prompt = 0; rl_completion_display_matches_hook = tui_rl_display_match_list; @@ -564,7 +564,7 @@ rl_getc_function = tui_old_rl_getc_function; rl_outstream = tui_old_rl_outstream; rl_completion_display_matches_hook = 0; - readline_echoing_p = tui_old_readline_echoing_p; + _rl_echoing_p = tui_old_readline_echoing_p; rl_already_prompted = 0; /* Save tty for SIGCONT. */ Index: insight.spec =================================================================== RCS file: /cvs/pkgs/rpms/insight/devel/insight.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- insight.spec 2 Mar 2009 11:32:37 -0000 1.4 +++ insight.spec 16 Jul 2009 13:30:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: insight Version: 6.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Graphical debugger based on GDB License: GPLv3+ Group: Development/Debuggers @@ -20,6 +20,8 @@ Patch9: insight-6.8-readline-system.pat Patch10: insight-6.8-tclm4.patch Patch11: insight-6.8-lib64.patch Patch12: insight-6.8-gcc44.patch +Patch13: insight-6.8-doubleinstall.patch +Patch14: insight-6.8-readline6.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires: iwidgets BuildRequires: tcl-devel @@ -28,7 +30,7 @@ BuildRequires: itcl-devel >= 3.3 BuildRequires: itk-devel >= 3.3 BuildRequires: iwidgets BuildRequires: ncurses-devel -BuildRequires: readline-devel +BuildRequires: readline-devel >= 6.0 BuildRequires: expat-devel BuildRequires: ImageMagick BuildRequires: desktop-file-utils @@ -59,6 +61,8 @@ GDB version 6.x. %patch10 -p1 -b .tclm4 %patch11 -p1 -b .lib64 %patch12 -p1 -b .gcc44 +%patch13 -p1 -b .doubleinstall +%patch14 -p1 -b .readline6 #------------------------------------------------------------------------------- @@ -214,6 +218,10 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog #------------------------------------------------------------------------------- +* Wed Jul 15 2009 Patrick Monnerat 6.8-8 +- Fix bug #511501: combobox.tcl installed twice causes build failure. +- Patch "readline6" to use system readline version 6. + * Mon Mar 2 2009 Patrick Monnerat 6.8-7 - Removed libXft-devel build requirement. - .desktop file categories fixed. From jcollie at fedoraproject.org Thu Jul 16 13:33:43 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Thu, 16 Jul 2009 13:33:43 +0000 (UTC) Subject: rpms/gnonlin/devel .cvsignore, 1.13, 1.14 gnonlin.spec, 1.24, 1.25 sources, 1.13, 1.14 Message-ID: <20090716133343.5E5CE11C0099@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/gnonlin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32297 Modified Files: .cvsignore gnonlin.spec sources Log Message: * Thu Jul 16 2009 Jeffrey C. Ollie - 0.10.11.2-0.1 - Update to gnonlin prerelease. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 28 May 2009 13:18:42 -0000 1.13 +++ .cvsignore 16 Jul 2009 13:33:12 -0000 1.14 @@ -1 +1 @@ -gnonlin-0.10.11.tar.gz +gnonlin-0.10.11.2.tar.gz Index: gnonlin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/devel/gnonlin.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- gnonlin.spec 28 May 2009 13:18:42 -0000 1.24 +++ gnonlin.spec 16 Jul 2009 13:33:13 -0000 1.25 @@ -2,14 +2,14 @@ %define gst_plugins_base_req 0.10.4 Name: gnonlin -Version: 0.10.11 -Release: 1%{?dist} +Version: 0.10.11.2 +Release: 0.1%{?dist} Summary: GStreamer extension library for non-linear editing Group: System Environment/Libraries License: LGPLv2+ URL: http://gnonlin.sourceforge.net/ -Source: http://gstreamer.freedesktop.org/src/gnonlin/gnonlin-%{version}.tar.gz +Source: http://gstreamer.freedesktop.org/src/gnonlin/pre/gnonlin-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gstreamer-devel >= %{gst_req} @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-0.10/libgnl.so %changelog +* Thu Jul 16 2009 Jeffrey C. Ollie - 0.10.11.2-0.1 +- Update to gnonlin prerelease. + * Thu May 28 2009 Jeffrey C. Ollie - 0.10.11-1 - This is GNonLin 0.10.11 "How about green for the bikeshed?" - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 28 May 2009 13:18:42 -0000 1.13 +++ sources 16 Jul 2009 13:33:13 -0000 1.14 @@ -1 +1 @@ -c2d7e818a84011d5f9fec4b0bd927576 gnonlin-0.10.11.tar.gz +20a99e4c1798c849963aa0025318a6c5 gnonlin-0.10.11.2.tar.gz From rdieter at fedoraproject.org Thu Jul 16 13:37:25 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 13:37:25 +0000 (UTC) Subject: rpms/PyQt4/devel PyQt-x11-gpl-4.5.2-QT_SHARED.patch, NONE, 1.1 .cvsignore, 1.11, 1.12 PyQt4.spec, 1.28, 1.29 sources, 1.11, 1.12 PyQt-x11-gpl-4.4.4-QT_SHARED.patch, 1.1, NONE PyQt-x11-gpl-4.5.1-licenses.patch, 1.1, NONE Message-ID: <20090716133725.1AF7011C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/PyQt4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv517 Modified Files: .cvsignore PyQt4.spec sources Added Files: PyQt-x11-gpl-4.5.2-QT_SHARED.patch Removed Files: PyQt-x11-gpl-4.4.4-QT_SHARED.patch PyQt-x11-gpl-4.5.1-licenses.patch Log Message: * Thu Jul 16 2009 Rex Dieter - 4.5.2-1 - PyQt4-4.5.2 PyQt-x11-gpl-4.5.2-QT_SHARED.patch: --- NEW FILE PyQt-x11-gpl-4.5.2-QT_SHARED.patch --- diff -up PyQt-x11-gpl-4.5.2/configure.py.QT_SHARED PyQt-x11-gpl-4.5.2/configure.py --- PyQt-x11-gpl-4.5.2/configure.py.QT_SHARED 2009-07-16 08:34:48.419358104 -0500 +++ PyQt-x11-gpl-4.5.2/configure.py 2009-07-16 08:34:54.260358064 -0500 @@ -1679,11 +1679,11 @@ int main(int, char **) out << QLibraryInfo::licensee() << '\\n'; -#if defined(QT_SHARED) || defined(QT_DLL) +//#if defined(QT_SHARED) || defined(QT_DLL) out << "shared\\n"; -#else - out << "\\n"; -#endif +//#else +// out << "\\n"; +//#endif // Determine which features should be disabled. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 16 Jun 2009 13:52:23 -0000 1.11 +++ .cvsignore 16 Jul 2009 13:36:54 -0000 1.12 @@ -1 +1 @@ -PyQt-x11-gpl-4.5.1.tar.gz +PyQt-x11-gpl-4.5.2.tar.gz Index: PyQt4.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/PyQt4.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- PyQt4.spec 2 Jul 2009 19:52:40 -0000 1.28 +++ PyQt4.spec 16 Jul 2009 13:36:54 -0000 1.29 @@ -3,8 +3,8 @@ Summary: Python bindings for Qt4 Name: PyQt4 -Version: 4.5.1 -Release: 2%{?dist} +Version: 4.5.2 +Release: 1%{?dist} # GPLv2 exceptions(see GPL_EXCEPTIONS*.txt) License: GPLv3 or GPLv2 with exceptions @@ -16,8 +16,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version Patch1: PyQt-x11-gpl-4.4.4-64bit.patch # HACK! FIXME: ping upstream why this isn't working right. -- Rex -Patch2: PyQt-x11-gpl-4.4.4-QT_SHARED.patch -Patch3: PyQt-x11-gpl-4.5.1-licenses.patch +Patch2: PyQt-x11-gpl-4.5.2-QT_SHARED.patch Patch4: PyQt-x11-gpl-4.5.1-pyuic_shebang.patch BuildRequires: chrpath @@ -62,7 +61,6 @@ of the Qt4 classes (e.g. KDE or your own %patch1 -p1 -b .64bit %patch2 -p1 -b .QT_SHARED -%patch3 -p1 -b .licenses %patch4 -p1 ## permissions @@ -139,6 +137,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Rex Dieter - 4.5.2-1 +- PyQt4-4.5.2 + * Thu Jul 02 2009 Rex Dieter - 4.5.1-2 - fix build with qt-4.5.2 - PyQt4-devel multilib conflict (#509415) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 16 Jun 2009 13:52:24 -0000 1.11 +++ sources 16 Jul 2009 13:36:54 -0000 1.12 @@ -1 +1 @@ -80e877799ae8fb82f137c43fda18bff5 PyQt-x11-gpl-4.5.1.tar.gz +997269d78aced5b1105edb155d49e248 PyQt-x11-gpl-4.5.2.tar.gz --- PyQt-x11-gpl-4.4.4-QT_SHARED.patch DELETED --- --- PyQt-x11-gpl-4.5.1-licenses.patch DELETED --- From pkgdb at fedoraproject.org Thu Jul 16 13:38:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 13:38:43 +0000 Subject: [pkgdb] perl-libintl: rjones has requested watchbugzilla Message-ID: <20090716133843.366EB10F8A6@bastion2.fedora.phx.redhat.com> rjones has requested the watchbugzilla acl on perl-libintl (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From pkgdb at fedoraproject.org Thu Jul 16 13:38:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 13:38:44 +0000 Subject: [pkgdb] perl-libintl: rjones has requested watchcommits Message-ID: <20090716133845.3DFE210F84C@bastion2.fedora.phx.redhat.com> rjones has requested the watchcommits acl on perl-libintl (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From pkgdb at fedoraproject.org Thu Jul 16 13:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 13:38:46 +0000 Subject: [pkgdb] perl-libintl: rjones has requested commit Message-ID: <20090716133846.D992610F8AA@bastion2.fedora.phx.redhat.com> rjones has requested the commit acl on perl-libintl (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From pbrobinson at fedoraproject.org Thu Jul 16 13:41:37 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 16 Jul 2009 13:41:37 +0000 (UTC) Subject: rpms/gir-repository/F-11 .cvsignore, 1.2, 1.3 gir-repository.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716134137.C1D3211C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/gir-repository/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1640 Modified Files: .cvsignore gir-repository.spec sources Log Message: - Update to 0.6.3 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Feb 2009 22:45:05 -0000 1.2 +++ .cvsignore 16 Jul 2009 13:41:37 -0000 1.3 @@ -1 +1 @@ -gir-repository-0.6.0-20081031-r190.tar.gz +gir-repository-0.6.3.tar.bz2 Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/F-11/gir-repository.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gir-repository.spec 27 Feb 2009 22:45:06 -0000 1.1 +++ gir-repository.spec 16 Jul 2009 13:41:37 -0000 1.2 @@ -1,16 +1,15 @@ Name: gir-repository -Version: 0.6.0 -Release: 1.svn20081031.r190%{?dist} +Version: 0.6.3 +Release: 1%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries License: LGPLv2+ URL: http://live.gnome.org/GObjectIntrospection -# SVN snapshot, see http://svn.gnome.org/svn/gir-repository -Source0: gir-repository-%{version}-20081031-r190.tar.gz +Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gobject-introspection-devel +BuildRequires: gobject-introspection-devel = %{version} BuildRequires: GConf2-devel BuildRequires: libsoup-devel BuildRequires: gnome-keyring-devel @@ -26,12 +25,7 @@ BuildRequires: gstreamer-devel BuildRequires: gssdp-devel BuildRequires: gupnp-devel BuildRequires: avahi-gobject-devel - -# Autogoo -BuildRequires: gnome-common -BuildRequires: autoconf -BuildRequires: automake -BuildRequires: libtool +BuildRequires: babl-devel %description Introspection system for GNOME libraries; see the gobject-introspection package. @@ -46,10 +40,9 @@ Requires: gobject-introspection-devel Libraries and headers for gir-repository %prep -%setup -q -c +%setup -q %build -./autogen.sh %configure make @@ -72,12 +65,15 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %{_libdir}/lib*.so -%{_libdir}/girepository/*.typelib +%{_libdir}/girepository-1.0/*.typelib %files devel %defattr(-,root,root) -%{_datadir}/gir/*.gir +%{_datadir}/gir-1.0/*.gir %changelog +* Thu Jul 2 2009 Peter Robinson +- Update to 0.6.3 release. Require matching gobject-introspection version + * Fri Oct 31 2008 Colin Walters - Create spec goo Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 Feb 2009 22:45:06 -0000 1.2 +++ sources 16 Jul 2009 13:41:37 -0000 1.3 @@ -1 +1 @@ -8a6623b67d4275b5c81d4db624eb8d86 gir-repository-0.6.0-20081031-r190.tar.gz +19ace20592762312932d5b01b3dc289a gir-repository-0.6.3.tar.bz2 From pvrabec at fedoraproject.org Thu Jul 16 13:41:55 2009 From: pvrabec at fedoraproject.org (Peter Vrabec) Date: Thu, 16 Jul 2009 13:41:55 +0000 (UTC) Subject: rpms/shadow-utils/devel shadow-4.1.4.1-ldap.patch, NONE, 1.1 shadow-4.1.4.1-sysacc.patch, NONE, 1.1 shadow-utils.spec, 1.134, 1.135 Message-ID: <20090716134155.CD1ED11C0099@cvs1.fedora.phx.redhat.com> Author: pvrabec Update of /cvs/extras/rpms/shadow-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1619 Modified Files: shadow-utils.spec Added Files: shadow-4.1.4.1-ldap.patch shadow-4.1.4.1-sysacc.patch Log Message: - fix a list of owned directories (#510366) - reduce the reuse of system IDs - speed up sys users look up on LDAP boxes (#511813) shadow-4.1.4.1-ldap.patch: --- NEW FILE shadow-4.1.4.1-ldap.patch --- diff -up shadow-4.1.4.1/libmisc/find_new_gid.c.ldap shadow-4.1.4.1/libmisc/find_new_gid.c --- shadow-4.1.4.1/libmisc/find_new_gid.c.ldap 2009-07-16 10:37:41.653798746 +0200 +++ shadow-4.1.4.1/libmisc/find_new_gid.c 2009-07-16 10:44:14.482808945 +0200 @@ -90,17 +90,26 @@ int find_new_gid (bool sys_group, * but we also check the local database (gr_rewind/gr_next) in case * some groups were created but the changes were not committed yet. */ - setgrent (); - while ((grp = getgrent ()) != NULL) { - if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { - group_id = grp->gr_gid + 1; + if (sys_group ) { + for(group_id = gid_min; group_id<=gid_max; group_id++) { + grp = getgrgid(group_id); + if(grp) + used_gids[grp->gr_gid] = true; } - /* create index of used GIDs */ - if (grp->gr_gid <= gid_max) { - used_gids[grp->gr_gid] = true; + } + else { + setgrent (); + while ((grp = getgrent ()) != NULL) { + if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { + group_id = grp->gr_gid + 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; + } } + endgrent (); } - endgrent (); gr_rewind (); while ((grp = gr_next ()) != NULL) { if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { diff -up shadow-4.1.4.1/libmisc/find_new_uid.c.ldap shadow-4.1.4.1/libmisc/find_new_uid.c --- shadow-4.1.4.1/libmisc/find_new_uid.c.ldap 2009-07-16 10:37:41.653798746 +0200 +++ shadow-4.1.4.1/libmisc/find_new_uid.c 2009-07-16 10:37:41.668798323 +0200 @@ -91,17 +91,27 @@ int find_new_uid (bool sys_user, * but we also check the local database (pw_rewind/pw_next) in case * some users were created but the changes were not committed yet. */ - setpwent (); - while ((pwd = getpwent ()) != NULL) { - if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { - user_id = pwd->pw_uid + 1; + /* speed up sys users look up on LDAP boxes */ + if (sys_user) { + for (user_id = uid_min; user_id<=uid_max; user_id++) { + pwd = getpwuid(user_id); + if(pwd) + used_uids[user_id] = true; } - /* create index of used UIDs */ - if (pwd->pw_uid <= uid_max) { - used_uids[pwd->pw_uid] = true; + } + else { + setpwent (); + while ((pwd = getpwent ()) != NULL) { + if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { + user_id = pwd->pw_uid + 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; + } } + endpwent (); } - endpwent (); pw_rewind (); while ((pwd = pw_next ()) != NULL) { if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { @@ -113,6 +123,7 @@ int find_new_uid (bool sys_user, } } + /* find free system account in reverse order */ if (sys_user) { for (user_id = uid_max; user_id >= uid_min; user_id--) { shadow-4.1.4.1-sysacc.patch: --- NEW FILE shadow-4.1.4.1-sysacc.patch --- diff -up shadow-4.1.4.1/libmisc/find_new_gid.c.sysacc shadow-4.1.4.1/libmisc/find_new_gid.c --- shadow-4.1.4.1/libmisc/find_new_gid.c.sysacc 2009-07-16 11:51:34.807860808 +0200 +++ shadow-4.1.4.1/libmisc/find_new_gid.c 2009-07-16 14:19:08.678798578 +0200 @@ -52,7 +52,7 @@ int find_new_gid (bool sys_group, /*@null@*/gid_t const *preferred_gid) { const struct group *grp; - gid_t gid_min, gid_max, group_id; + gid_t gid_min, gid_max, group_id, id; bool *used_gids; assert (gid != NULL); @@ -61,7 +61,7 @@ int find_new_gid (bool sys_group, gid_min = (gid_t) getdef_ulong ("GID_MIN", 500UL); gid_max = (gid_t) getdef_ulong ("GID_MAX", 60000UL); } else { - gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 1UL); + gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 101UL); gid_max = (gid_t) getdef_ulong ("GID_MIN", 500UL) - 1; gid_max = (gid_t) getdef_ulong ("SYS_GID_MAX", (unsigned long) gid_max); } @@ -80,7 +80,6 @@ int find_new_gid (bool sys_group, return 0; } - group_id = gid_min; /* * Search the entire group file, @@ -91,13 +90,28 @@ int find_new_gid (bool sys_group, * some groups were created but the changes were not committed yet. */ if (sys_group ) { - for(group_id = gid_min; group_id<=gid_max; group_id++) { - grp = getgrgid(group_id); - if(grp) + group_id = gid_max; + for(id = gid_max; id>=gid_min; id--) { + grp = getgrgid(id); + if(grp) { + group_id = id - 1; used_gids[grp->gr_gid] = true; + } + } + + gr_rewind (); + while ((grp = gr_next ()) != NULL) { + if ((grp->gr_gid <= group_id) && (grp->gr_gid >= gid_min)) { + group_id = grp->gr_gid - 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; + } } } else { + group_id = gid_min; setgrent (); while ((grp = getgrent ()) != NULL) { if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { @@ -109,32 +123,16 @@ int find_new_gid (bool sys_group, } } endgrent (); - } - gr_rewind (); - while ((grp = gr_next ()) != NULL) { - if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { - group_id = grp->gr_gid + 1; - } - /* create index of used GIDs */ - if (grp->gr_gid <= gid_max) { - used_gids[grp->gr_gid] = true; - } - } - /* find free system account in reverse order */ - if (sys_group) { - for (group_id = gid_max; group_id >= gid_min; group_id--) { - if (false == used_gids[group_id]) { - break; + gr_rewind (); + while ((grp = gr_next ()) != NULL) { + if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { + group_id = grp->gr_gid + 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; } - } - if ( group_id < gid_min ) { - fprintf (stderr, - _("%s: Can't get unique GID (no more available GIDs)\n"), - Prog); - SYSLOG ((LOG_WARN, - "no more available GID on the system")); - return -1; } } @@ -143,16 +141,35 @@ int find_new_gid (bool sys_group, * will give us GID_MAX+1 even if not unique. Search for the first * free GID starting with GID_MIN. */ - if (group_id == gid_max + 1) { - for (group_id = gid_min; group_id < gid_max; group_id++) { - if (false == used_gids[group_id]) { - break; + if (sys_group) { + if (group_id == gid_min - 1) { + for (group_id = gid_max; group_id >= gid_min; group_id--) { + if (false == used_gids[group_id]) { + break; + } + } + if ( group_id < gid_min ) { + fprintf (stderr, + _("%s: Can't get unique GID (no more available GIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, + "no more available GID on the system")); + return -1; } } - if (group_id == gid_max) { - fprintf (stderr, _("%s: Can't get unique GID (no more available GIDs)\n"), Prog); - SYSLOG ((LOG_WARN, "no more available GID on the system")); - return -1; + } + else { + if (group_id == gid_max + 1) { + for (group_id = gid_min; group_id < gid_max; group_id++) { + if (false == used_gids[group_id]) { + break; + } + } + if (group_id == gid_max) { + fprintf (stderr, _("%s: Can't get unique GID (no more available GIDs)\n"), Prog); + SYSLOG ((LOG_WARN, "no more available GID on the system")); + return -1; + } } } diff -up shadow-4.1.4.1/libmisc/find_new_uid.c.sysacc shadow-4.1.4.1/libmisc/find_new_uid.c --- shadow-4.1.4.1/libmisc/find_new_uid.c.sysacc 2009-07-16 11:51:34.807860808 +0200 +++ shadow-4.1.4.1/libmisc/find_new_uid.c 2009-07-16 14:13:38.120798526 +0200 @@ -52,7 +52,7 @@ int find_new_uid (bool sys_user, /*@null@*/uid_t const *preferred_uid) { const struct passwd *pwd; - uid_t uid_min, uid_max, user_id; + uid_t uid_min, uid_max, user_id, id; bool *used_uids; assert (uid != NULL); @@ -61,7 +61,7 @@ int find_new_uid (bool sys_user, uid_min = (uid_t) getdef_ulong ("UID_MIN", 500UL); uid_max = (uid_t) getdef_ulong ("UID_MAX", 60000UL); } else { - uid_min = (uid_t) getdef_ulong ("SYS_UID_MIN", 1UL); + uid_min = (uid_t) getdef_ulong ("SYS_UID_MIN", 101UL); uid_max = (uid_t) getdef_ulong ("UID_MIN", 500UL) - 1; uid_max = (uid_t) getdef_ulong ("SYS_UID_MAX", (unsigned long) uid_max); } @@ -81,8 +81,6 @@ int find_new_uid (bool sys_user, } - user_id = uid_min; - /* * Search the entire password file, * looking for the largest unused value. @@ -91,15 +89,30 @@ int find_new_uid (bool sys_user, * but we also check the local database (pw_rewind/pw_next) in case * some users were created but the changes were not committed yet. */ - /* speed up sys users look up on LDAP boxes */ if (sys_user) { - for (user_id = uid_min; user_id<=uid_max; user_id++) { - pwd = getpwuid(user_id); - if(pwd) + user_id = uid_max; + for (id = uid_max; id>=uid_min; id--) { + pwd = getpwuid(id); + if(pwd) { + user_id = id - 1; used_uids[user_id] = true; + } } + + pw_rewind (); + while ((pwd = pw_next ()) != NULL) { + if ((pwd->pw_uid <= user_id) && (pwd->pw_uid >= uid_min)) { + user_id = pwd->pw_uid - 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; + } + } + } else { + user_id = uid_min; setpwent (); while ((pwd = getpwent ()) != NULL) { if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { @@ -111,51 +124,55 @@ int find_new_uid (bool sys_user, } } endpwent (); - } - pw_rewind (); - while ((pwd = pw_next ()) != NULL) { - if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { - user_id = pwd->pw_uid + 1; - } - /* create index of used UIDs */ - if (pwd->pw_uid <= uid_max) { - used_uids[pwd->pw_uid] = true; - } - } - - /* find free system account in reverse order */ - if (sys_user) { - for (user_id = uid_max; user_id >= uid_min; user_id--) { - if (false == used_uids[user_id]) { - break; + pw_rewind (); + while ((pwd = pw_next ()) != NULL) { + if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { + user_id = pwd->pw_uid + 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; } - } - if (user_id < uid_min ) { - fprintf (stderr, - _("%s: Can't get unique system UID (no more available UIDs)\n"), - Prog); - SYSLOG ((LOG_WARN, - "no more available UID on the system")); - return -1; } } + /* * If a user with UID equal to UID_MAX exists, the above algorithm * will give us UID_MAX+1 even if not unique. Search for the first * free UID starting with UID_MIN. */ - if (user_id == uid_max + 1) { - for (user_id = uid_min; user_id < uid_max; user_id++) { - if (false == used_uids[user_id]) { - break; + if (sys_user) { + if (user_id == uid_min - 1) { + for (user_id = uid_max; user_id >= uid_min; user_id--) { + if (false == used_uids[user_id]) { + break; + } + } + if (user_id < uid_min ) { + fprintf (stderr, + _("%s: Can't get unique system UID (no more available UIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, + "no more available UID on the system")); + return -1; } } - if (user_id == uid_max) { - fprintf (stderr, _("%s: Can't get unique UID (no more available UIDs)\n"), Prog); - SYSLOG ((LOG_WARN, "no more available UID on the system")); - return -1; + } + else { + if (user_id == uid_max + 1) { + for (user_id = uid_min; user_id < uid_max; user_id++) { + if (false == used_uids[user_id]) { + break; + } + } + if (user_id == uid_max) { + fprintf (stderr, _("%s: Can't get unique UID (no more available UIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, "no more available UID on the system")); + return -1; + } } } Index: shadow-utils.spec =================================================================== RCS file: /cvs/extras/rpms/shadow-utils/devel/shadow-utils.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- shadow-utils.spec 16 Jun 2009 13:23:28 -0000 1.134 +++ shadow-utils.spec 16 Jul 2009 13:41:55 -0000 1.135 @@ -1,7 +1,7 @@ Summary: Utilities for managing accounts and shadow password files Name: shadow-utils Version: 4.1.4.1 -Release: 1%{?dist} +Release: 4%{?dist} Epoch: 2 URL: http://pkg-shadow.alioth.debian.org/ Source0: ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/shadow-%{version}.tar.bz2 @@ -10,6 +10,8 @@ Source2: shadow-4.0.18.1-useradd Patch0: shadow-4.1.4-redhat.patch Patch1: shadow-4.1.4.1-goodname.patch Patch2: shadow-4.1.4.1-largeGroup.patch +Patch3: shadow-4.1.4.1-ldap.patch +Patch4: shadow-4.1.4.1-sysacc.patch License: BSD and GPLv2+ Group: System Environment/Base BuildRequires: libselinux-devel >= 1.25.2-1 @@ -37,6 +39,8 @@ are used for managing group accounts. %patch0 -p1 -b .redhat %patch1 -p1 -b .goodname %patch2 -p1 -b .largeGroup +%patch3 -p1 -b .ldap +%patch4 -p1 -b .sysacc iconv -f ISO88591 -t utf-8 doc/HOWTO > doc/HOWTO.utf8 cp -f doc/HOWTO.utf8 doc/HOWTO @@ -125,7 +129,9 @@ find $RPM_BUILD_ROOT%{_mandir} -depth -t for dir in $(ls -1d $RPM_BUILD_ROOT%{_mandir}/{??,??_??}) ; do dir=$(echo $dir | sed -e "s|^$RPM_BUILD_ROOT||") lang=$(basename $dir) - echo "%%lang($lang) $dir/man*/*" >> shadow.lang + echo "%%lang($lang) $dir" >> shadow.lang + echo "%%lang($lang) $dir/man*" >> shadow.lang +# echo "%%lang($lang) $dir/man*/*" >> shadow.lang done %clean @@ -176,6 +182,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/vigr.8* %changelog +* Thu Jul 16 2009 Peter Vrabec 2:4.1.4.1-4 +- fix a list of owned directories (#510366) + +* Thu Jul 16 2009 Peter Vrabec 2:4.1.4.1-3 +- reduce the reuse of system IDs + +* Wed Jul 15 2009 Peter Vrabec 2:4.1.4.1-2 +- speed up sys users look up on LDAP boxes (#511813) + * Tue Jun 16 2009 Peter Vrabec 2:4.1.4.1-1 - upgrade From jussilehtola at fedoraproject.org Thu Jul 16 13:49:21 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:49:21 +0000 (UTC) Subject: rpms/cppcheck/devel .cvsignore, 1.2, 1.3 cppcheck.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716134921.EC71B11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/cppcheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3086/devel Modified Files: .cvsignore cppcheck.spec import.log sources Log Message: Update to 1.34. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Apr 2009 05:52:27 -0000 1.2 +++ .cvsignore 16 Jul 2009 13:48:51 -0000 1.3 @@ -1 +1 @@ -cppcheck-1.31.tar.bz2 +cppcheck-1.34.tar.bz2 Index: cppcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/devel/cppcheck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cppcheck.spec 30 Apr 2009 05:52:27 -0000 1.1 +++ cppcheck.spec 16 Jul 2009 13:48:51 -0000 1.2 @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.31 +Version: 1.34 Release: 1%{?dist} Summary: A tool for static C/C++ code analysis Group: Development/Languages @@ -8,8 +8,6 @@ URL: http://cppcheck.wiki.sourceforge.n Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: gcc-c++ - %description This program tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. @@ -53,5 +51,8 @@ rm -rf %{buildroot} %{_bindir}/cppcheck %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.34-1 +- Update to 1.34. + * Mon Apr 27 2009 Jussi Lehtola - 1.31-1 - First release. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 30 Apr 2009 05:52:27 -0000 1.1 +++ import.log 16 Jul 2009 13:48:51 -0000 1.2 @@ -1 +1,2 @@ cppcheck-1_31-1_fc10:HEAD:cppcheck-1.31-1.fc10.src.rpm:1241070717 +cppcheck-1_34-1_fc11:HEAD:cppcheck-1.34-1.fc11.src.rpm:1247752109 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2009 05:52:27 -0000 1.2 +++ sources 16 Jul 2009 13:48:51 -0000 1.3 @@ -1 +1 @@ -db500cee39ceaa7379bb105046d36cce cppcheck-1.31.tar.bz2 +0ef8ac8e5434344ab49b20b5301ac69a cppcheck-1.34.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 13:50:33 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:50:33 +0000 (UTC) Subject: rpms/cppcheck/EL-5 cppcheck.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716135033.D89E311C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/cppcheck/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3437/EL-5 Modified Files: cppcheck.spec sources Log Message: Update to 1.34. Index: cppcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/EL-5/cppcheck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cppcheck.spec 30 Apr 2009 05:54:24 -0000 1.1 +++ cppcheck.spec 16 Jul 2009 13:50:03 -0000 1.2 @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.31 +Version: 1.34 Release: 1%{?dist} Summary: A tool for static C/C++ code analysis Group: Development/Languages @@ -8,8 +8,6 @@ URL: http://cppcheck.wiki.sourceforge.n Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: gcc-c++ - %description This program tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. @@ -53,5 +51,8 @@ rm -rf %{buildroot} %{_bindir}/cppcheck %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.34-1 +- Update to 1.34. + * Mon Apr 27 2009 Jussi Lehtola - 1.31-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2009 05:54:24 -0000 1.2 +++ sources 16 Jul 2009 13:50:03 -0000 1.3 @@ -1 +1 @@ -db500cee39ceaa7379bb105046d36cce cppcheck-1.31.tar.bz2 +0ef8ac8e5434344ab49b20b5301ac69a cppcheck-1.34.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 13:50:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:50:34 +0000 (UTC) Subject: rpms/cppcheck/F-10 cppcheck.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716135034.13D6911C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/cppcheck/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3437/F-10 Modified Files: cppcheck.spec sources Log Message: Update to 1.34. Index: cppcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/F-10/cppcheck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cppcheck.spec 30 Apr 2009 05:54:24 -0000 1.1 +++ cppcheck.spec 16 Jul 2009 13:50:03 -0000 1.2 @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.31 +Version: 1.34 Release: 1%{?dist} Summary: A tool for static C/C++ code analysis Group: Development/Languages @@ -8,8 +8,6 @@ URL: http://cppcheck.wiki.sourceforge.n Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: gcc-c++ - %description This program tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. @@ -53,5 +51,8 @@ rm -rf %{buildroot} %{_bindir}/cppcheck %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.34-1 +- Update to 1.34. + * Mon Apr 27 2009 Jussi Lehtola - 1.31-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2009 05:54:24 -0000 1.2 +++ sources 16 Jul 2009 13:50:03 -0000 1.3 @@ -1 +1 @@ -db500cee39ceaa7379bb105046d36cce cppcheck-1.31.tar.bz2 +0ef8ac8e5434344ab49b20b5301ac69a cppcheck-1.34.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 13:50:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 13:50:34 +0000 (UTC) Subject: rpms/cppcheck/F-11 cppcheck.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716135034.4BC5511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/cppcheck/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3437/F-11 Modified Files: cppcheck.spec sources Log Message: Update to 1.34. Index: cppcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/F-11/cppcheck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cppcheck.spec 30 Apr 2009 05:54:25 -0000 1.1 +++ cppcheck.spec 16 Jul 2009 13:50:04 -0000 1.2 @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.31 +Version: 1.34 Release: 1%{?dist} Summary: A tool for static C/C++ code analysis Group: Development/Languages @@ -8,8 +8,6 @@ URL: http://cppcheck.wiki.sourceforge.n Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: gcc-c++ - %description This program tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. @@ -53,5 +51,8 @@ rm -rf %{buildroot} %{_bindir}/cppcheck %changelog +* Thu Jul 16 2009 Jussi Lehtola - 1.34-1 +- Update to 1.34. + * Mon Apr 27 2009 Jussi Lehtola - 1.31-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Apr 2009 05:54:25 -0000 1.2 +++ sources 16 Jul 2009 13:50:04 -0000 1.3 @@ -1 +1 @@ -db500cee39ceaa7379bb105046d36cce cppcheck-1.31.tar.bz2 +0ef8ac8e5434344ab49b20b5301ac69a cppcheck-1.34.tar.bz2 From tuxbrewr at fedoraproject.org Thu Jul 16 13:53:26 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 16 Jul 2009 13:53:26 +0000 (UTC) Subject: rpms/kpackagekit/devel kpackagekit.spec, 1.37, 1.38 sources, 1.16, 1.17 Message-ID: <20090716135326.C652F11C0099@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kpackagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4311 Modified Files: kpackagekit.spec sources Log Message: Rebuilt to include Sloval(sk) translations Index: kpackagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/devel/kpackagekit.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- kpackagekit.spec 8 Jul 2009 00:19:48 -0000 1.37 +++ kpackagekit.spec 16 Jul 2009 13:52:56 -0000 1.38 @@ -3,7 +3,7 @@ Name: kpackagekit Version: 0.4.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE interface for PackageKit License: GPLv2+ @@ -14,7 +14,7 @@ URL: http://www.kde-apps.org/content/sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # upstream me, says the patch -#Patch100: kpackagekit-InitialPreference.patch +Patch100: kpackagekit-InitialPreference.patch Patch102: kpackagekit-0.4.1-i18n.patch BuildRequires: cmake @@ -34,7 +34,7 @@ KDE interface for PackageKit. %prep %setup -q -n %{name}-%{version} -#%patch100 -p0 -b .InitialPreference +%patch100 -p0 -b .InitialPreference %patch102 -p1 -b .i18n @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Steven M. Parrish 0.4.1.1-3 +- Now includes Sloval(sk) translations + * Tue Jul 7 2009 Steven M. Parrish 0.4.1.1-2 - rebuild for new packagekit Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 11 Jun 2009 12:21:54 -0000 1.16 +++ sources 16 Jul 2009 13:52:56 -0000 1.17 @@ -1 +1 @@ -25ad87cae7a3fffa2310e0c376df9889 kpackagekit-0.4.1.1.tar.bz2 +ec1f85ef73405a79afbffc50e9c3ab79 kpackagekit-0.4.1.1.tar.bz2 From tuxbrewr at fedoraproject.org Thu Jul 16 14:00:58 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 16 Jul 2009 14:00:58 +0000 (UTC) Subject: rpms/kpackagekit/F-11 kpackagekit.spec,1.36,1.37 sources,1.16,1.17 Message-ID: <20090716140058.9E74211C0099@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/kpackagekit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6205 Modified Files: kpackagekit.spec sources Log Message: Rebuilt to include Sloval(sk) translations Index: kpackagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/F-11/kpackagekit.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- kpackagekit.spec 11 Jun 2009 13:00:23 -0000 1.36 +++ kpackagekit.spec 16 Jul 2009 14:00:28 -0000 1.37 @@ -3,7 +3,7 @@ Name: kpackagekit Version: 0.4.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE interface for PackageKit License: GPLv2+ @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Steven M. Parrish 0.4.1.1-2 +- Now includes Slovak(sk) translations + * Thu Jun 11 2009 Steven M. Parrish 0.4.1.1-1 - Fixed all krazy issues (2 or 3 not much important changed in backend details) - With KDE >= 4.2.3 persistent notifications are working again so the code to use it was commented out Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/F-11/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 11 Jun 2009 13:00:23 -0000 1.16 +++ sources 16 Jul 2009 14:00:28 -0000 1.17 @@ -1 +1 @@ -25ad87cae7a3fffa2310e0c376df9889 kpackagekit-0.4.1.1.tar.bz2 +ec1f85ef73405a79afbffc50e9c3ab79 kpackagekit-0.4.1.1.tar.bz2 From than at fedoraproject.org Thu Jul 16 14:00:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 16 Jul 2009 14:00:57 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace-4.2.96-redhat-startkde.patch, NONE, 1.1 kdebase-workspace.spec, 1.249, 1.250 Message-ID: <20090716140057.B7A7011C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6296 Modified Files: kdebase-workspace.spec Added Files: kdebase-workspace-4.2.96-redhat-startkde.patch Log Message: 4.3rc2 kdebase-workspace-4.2.96-redhat-startkde.patch: --- NEW FILE kdebase-workspace-4.2.96-redhat-startkde.patch --- diff -up kdebase-workspace-4.2.96/startkde.cmake.redhat-startkde kdebase-workspace-4.2.96/startkde.cmake --- kdebase-workspace-4.2.96/startkde.cmake.redhat-startkde 2009-07-08 16:45:04.000000000 +0200 +++ kdebase-workspace-4.2.96/startkde.cmake 2009-07-16 15:28:12.000000000 +0200 @@ -22,36 +22,20 @@ if test $kcheckrunning_result -eq 0 ; th exit 1 elif test $kcheckrunning_result -eq 2 ; then echo "\$DISPLAY is not set or cannot connect to the X server." - exit 1 + exit 1 fi -# Set the background to plain grey. +# Set the background to the Red Hat default. # The standard X background is nasty, causing moire effects and exploding # people's heads. We use colours from the standard KDE palette for those with # palettised displays. if test -z "$XDM_MANAGED" || echo "$XDM_MANAGED" | grep ",auto" > /dev/null; then - xsetroot -solid "#000000" + xsetroot -solid "#103D77" fi # we have to unset this for Darwin since it will screw up KDE's dynamic-loading unset DYLD_FORCE_FLAT_NAMESPACE -# in case we have been started with full pathname spec without being in PATH -bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` -if [ -n "$bindir" ]; then - qbindir=`$bindir/kde4-config --qt-binaries` - if [ -n "$qbindir" ]; then - case $PATH in - $qbindir|$qbindir:*|*:$qbindir|*:$qbindir:*) ;; - *) PATH=$qbindir:$PATH; export PATH;; - esac - fi - case $PATH in - $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; - *) PATH=$bindir:$PATH; export PATH;; - esac -fi - # Boot sequence: # # kdeinit is used to fork off processes which improves memory usage @@ -89,6 +73,13 @@ kcmrandrrc [Screen3] kcmfonts General forceFontDPI 0 kdeglobals Locale Language '' # trigger requesting languages from KLocale EOF +# read the default KSplash theme to use out of kde-settings +if [ -e /usr/share/kde-settings/kde-profile/default/share/config/ksplashrc ] + then eval `grep '^Theme=' /usr/share/kde-settings/kde-profile/default/share/config/ksplashrc` + if [ -n "$Theme" ] + then sed -i -e "s/Default/$Theme/g" $kdehome/share/config/startupconfigkeys + fi +fi kstartupconfig4 returncode=$? if test $returncode -ne 0; then @@ -209,8 +200,9 @@ fi # better use the Autostart folder. libpath=`kde4-config --path lib | tr : '\n'` +envpath=/etc/kde/env/ -for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/env/,p'`; do +for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/env/,p'` $envpath ; do for file in "$prefix"*.sh; do test -r "$file" && . "$file" done @@ -423,7 +415,8 @@ kde3 dcopserver_shutdown --wait 2>/dev/n echo 'startkde: Running shutdown scripts...' 1>&2 # Run scripts found in $KDEDIRS/shutdown -for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/shutdown/,p'`; do +shutdownpath=/etc/kde/shutdown/ +for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/shutdown/,p'` $shutdownpath; do for file in `ls "$prefix" 2> /dev/null | egrep -v '(~|\.bak)$'`; do test -x "$prefix$file" && "$prefix$file" done Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.249 retrieving revision 1.250 diff -u -p -r1.249 -r1.250 --- kdebase-workspace.spec 9 Jul 2009 21:46:58 -0000 1.249 +++ kdebase-workspace.spec 16 Jul 2009 14:00:57 -0000 1.250 @@ -11,7 +11,7 @@ Group: User Interface/Desktops URL: http://www.kde.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch1: kdebase-workspace-4.2.85-redhat-startkde.patch +Patch1: kdebase-workspace-4.2.96-redhat-startkde.patch Patch2: kdebase-workspace-4.2.95-plasma-konsole.patch Patch3: kdebase-workspace-4.2.90-show_systemsettings.patch Patch4: kdebase-workspace-4.2.85-ck-shutdown.patch From than at fedoraproject.org Thu Jul 16 14:08:06 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 16 Jul 2009 14:08:06 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec, 1.250, 1.251 kdebase-workspace-4.2.85-redhat-startkde.patch, 1.1, NONE kdebase-workspace-4.2.90-MALLOC_CHECK.patch, 1.2, NONE Message-ID: <20090716140806.159C611C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7497 Modified Files: kdebase-workspace.spec Removed Files: kdebase-workspace-4.2.85-redhat-startkde.patch kdebase-workspace-4.2.90-MALLOC_CHECK.patch Log Message: 4.3rc2 Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.250 retrieving revision 1.251 diff -u -p -r1.250 -r1.251 --- kdebase-workspace.spec 16 Jul 2009 14:00:57 -0000 1.250 +++ kdebase-workspace.spec 16 Jul 2009 14:07:35 -0000 1.251 @@ -15,7 +15,6 @@ Patch1: kdebase-workspace-4.2.96-redhat- Patch2: kdebase-workspace-4.2.95-plasma-konsole.patch Patch3: kdebase-workspace-4.2.90-show_systemsettings.patch Patch4: kdebase-workspace-4.2.85-ck-shutdown.patch -Patch5: kdebase-workspace-4.2.90-MALLOC_CHECK.patch Patch6: kdebase-workspace-4.0.3-timedate-kcm.patch #??441062: packagekit tools do not show icons correctly on KDE Patch7: kdebase-workspace-4.0.3-krdb.patch @@ -214,7 +213,6 @@ Requires: PyKDE4 >= %{version} %patch3 -p1 -b .show_systemsettings # ConsoleKit >= 0.2.4 shutdown/reboot support (needed for GDM 2.22) %patch4 -p1 -b .ck-shutdown -%patch5 -p1 -b .MALLOC_CHECK %patch6 -p0 -b .timedate-kcm %patch7 -p0 -b .krdb %patch8 -p1 -b .klipper-url --- kdebase-workspace-4.2.85-redhat-startkde.patch DELETED --- --- kdebase-workspace-4.2.90-MALLOC_CHECK.patch DELETED --- From pkgdb at fedoraproject.org Thu Jul 16 14:12:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:36 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchbugzilla Message-ID: <20090716141236.376FF10F89C@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on system-config-network (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:12:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:38 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchcommits Message-ID: <20090716141238.80DCA10F8A6@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on system-config-network (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:41 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested commit Message-ID: <20090716141242.0326710F8AC@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on system-config-network (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:12:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:49 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchbugzilla Message-ID: <20090716141250.0D20010F890@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on system-config-network (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:12:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:52 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchcommits Message-ID: <20090716141253.60B8610F8B0@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on system-config-network (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:12:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:12:55 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested commit Message-ID: <20090716141255.8317310F8B4@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on system-config-network (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:13:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:13:00 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchbugzilla Message-ID: <20090716141300.9529910F8A6@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchbugzilla acl on system-config-network (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:13:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:13:03 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested watchcommits Message-ID: <20090716141303.A7C0310F8B7@bastion2.fedora.phx.redhat.com> jpopelka has requested the watchcommits acl on system-config-network (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:13:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:13:05 +0000 Subject: [pkgdb] system-config-network: jpopelka has requested commit Message-ID: <20090716141305.75E2010F8BB@bastion2.fedora.phx.redhat.com> jpopelka has requested the commit acl on system-config-network (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:17:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:31 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141731.2B27F10F8A3@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:31 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141732.3A8D910F8A8@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:32 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141732.A8C3C10F8AA@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:34 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested approveacls Message-ID: <20090716141734.3544F10F8AC@bastion2.fedora.phx.redhat.com> pknirsch has requested the approveacls acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:36 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141736.89B8010F8AF@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:37 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141737.573C010F8B3@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:41 +0000 Subject: [pkgdb] pm-utils: pknirsch has given up approveacls Message-ID: <20090716141741.3F71910F8B2@bastion2.fedora.phx.redhat.com> pknirsch has given up the approveacls acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:43 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141744.145D710F8B7@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:47 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141747.7DE1F10F86B@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:48 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141748.609E110F8BA@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:48 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141748.D16CF10F8BC@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:52 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141753.04BE310F8C4@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:53 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141754.1CCED10F8C8@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:52 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141753.0ECD010F8C6@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:56 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141756.B6E8B10F8CC@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:57 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141757.E58EB10F8CF@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:02 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchbugzilla Message-ID: <20090716141802.7417C10F8D6@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchbugzilla acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:02 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141802.F1EAB10F8A6@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:03 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested commit Message-ID: <20090716141804.0DC4910F8D4@bastion2.fedora.phx.redhat.com> pknirsch has requested the commit acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:14 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141814.6114310F8A9@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora devel) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:14 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141814.A729010F8D8@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora devel) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:16 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141816.7F9BA10F8D9@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora devel) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:19 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141819.2CAB110F8DC@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 7) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:18 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141818.CA6D010F8DA@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 7) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:20 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141820.480E810F8AF@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 7) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:23 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141823.34C5D10F8DF@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 8) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:25 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141825.9FABB10F8E6@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 8) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:30 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141830.7177810F8E7@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 9) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:32 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141832.5A4D810F8B6@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 9) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:35 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141835.0D00010F8EA@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 10) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:31 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141831.4E24910F8E8@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 9) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:35 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141835.C98DC10F8EC@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 10) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:36 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141836.E359210F8EE@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 10) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:40 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141840.35DF310F8F1@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 11) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:41 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141841.ED08B10F8F4@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 11) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:44 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716141844.C34F610F8B7@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 11) to Approved for pknirsch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:53 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716141853.8D05110F8BB@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:53 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716141853.B5E1710F8FB@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:20:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:20:53 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716142053.8E8F910F8DC@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:20:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:20:53 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716142053.D78EE10F910@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:20:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:20:56 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716142056.78A6610F911@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:00 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716142100.6A72F10F913@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:05 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716142105.47ED810F8B5@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:06 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716142106.3D57210F914@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:09 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716142109.BB8DA10F91A@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:06 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716142106.E9C7110F917@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:14 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716142114.5734410F91D@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:14 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716142114.8CE4410F920@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:15 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716142115.F200610F922@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:17 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716142117.BFE0010F923@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:32 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716142132.A45B110F8EC@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:34 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716142134.B644310F8ED@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:35 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716142135.97B8B10F929@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:37 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716142137.A604510F933@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:42 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchcommits Message-ID: <20090716142142.6167010F8EF@bastion2.fedora.phx.redhat.com> jskala has requested the watchcommits acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:42 +0000 Subject: [pkgdb] pm-utils: jskala has requested watchbugzilla Message-ID: <20090716142142.8558E10F92E@bastion2.fedora.phx.redhat.com> jskala has requested the watchbugzilla acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:44 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716142144.D573010F931@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:21:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:21:46 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716142146.B4F5310F935@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:47 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142247.6BD8910F8BD@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora devel) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:47 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142247.7701510F8FA@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora devel) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:48 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142248.8893E10F902@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora devel) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:53 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142253.78B3410F904@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 7) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:49 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142249.B1FDA10F8FD@bastion2.fedora.phx.redhat.com> pknirsch has set the approveacls acl on pm-utils (Fedora devel) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:54 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142254.6887E10F908@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 7) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:55 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142255.54FA110F93C@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 7) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:22:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:22:56 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142256.6358310F940@bastion2.fedora.phx.redhat.com> pknirsch has set the approveacls acl on pm-utils (Fedora 7) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:00 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142300.D78B910F8C2@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 8) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:55 +0000 Subject: [pkgdb] pm-utils: jskala has requested commit Message-ID: <20090716141855.3D73010F902@bastion2.fedora.phx.redhat.com> jskala has requested the commit acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:18:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:18:56 +0000 Subject: [pkgdb] pm-utils: jskala has requested approveacls Message-ID: <20090716141856.D419910F905@bastion2.fedora.phx.redhat.com> jskala has requested the approveacls acl on pm-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:17:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:17:59 +0000 Subject: [pkgdb] pm-utils: pknirsch has requested watchcommits Message-ID: <20090716141759.C547310F8D0@bastion2.fedora.phx.redhat.com> pknirsch has requested the watchcommits acl on pm-utils (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:00 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142300.EF99710F949@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 8) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:02 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142302.BE9A110F94D@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 8) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:03 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142303.8A7F110F950@bastion2.fedora.phx.redhat.com> pknirsch has set the approveacls acl on pm-utils (Fedora 8) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:10 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142310.5ADEE10F8C6@bastion2.fedora.phx.redhat.com> pknirsch has set the approveacls acl on pm-utils (Fedora 9) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:17 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142317.B647F10F954@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 11) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:17 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142318.1C5C510F957@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 11) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:19 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142322.5B5AD10F89C@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 11) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:23:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:19 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142322.B293110F8CC@bastion2.fedora.phx.redhat.com> pknirsch has set the approveacls acl on pm-utils (Fedora 11) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:00 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142400.6C04110F963@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora 8 is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:06 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142406.1C28910F8A9@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora 9 is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:16 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142416.4C6E310F8D5@bastion2.fedora.phx.redhat.com> pknirsch has set the watchbugzilla acl on pm-utils (Fedora 10) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:17 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142417.626E510F96B@bastion2.fedora.phx.redhat.com> pknirsch has set the watchcommits acl on pm-utils (Fedora 10) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:18 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142418.C783210F96C@bastion2.fedora.phx.redhat.com> pknirsch has set the commit acl on pm-utils (Fedora 10) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:24:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:24:54 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142455.0D7FF10F8DD@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora 10 is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From jussilehtola at fedoraproject.org Thu Jul 16 14:24:53 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:24:53 +0000 (UTC) Subject: rpms/jmol/devel .cvsignore, 1.4, 1.5 import.log, 1.4, 1.5 jmol.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090716142453.106A711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10924/devel Modified Files: .cvsignore import.log jmol.spec sources Log Message: Update to svn revision 11223. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 18 Dec 2008 13:38:26 -0000 1.4 +++ .cvsignore 16 Jul 2009 14:24:22 -0000 1.5 @@ -1 +1 @@ -jmol-11.6.10506.tar.bz2 +jmol-11.6.11223.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 18 Dec 2008 13:38:26 -0000 1.4 +++ import.log 16 Jul 2009 14:24:22 -0000 1.5 @@ -2,3 +2,4 @@ jmol-11_6-2_10081svn_fc9:HEAD:jmol-11.6- jmol-11_6-3_10137svn_fc9:HEAD:jmol-11.6-3.10137svn.fc9.src.rpm:1224795211 jmol-11_6-5_10137svn_fc9:HEAD:jmol-11.6-5.10137svn.fc9.src.rpm:1224856479 jmol-11_6-7_10506svn_fc10:HEAD:jmol-11.6-7.10506svn.fc10.src.rpm:1229607420 +jmol-11_6-9_11223svn_fc11:HEAD:jmol-11.6-9.11223svn.fc11.src.rpm:1247753998 Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jmol.spec 25 Feb 2009 09:29:47 -0000 1.5 +++ jmol.spec 16 Jul 2009 14:24:22 -0000 1.6 @@ -1,8 +1,8 @@ -%define svnrel 10506 +%define svnrel 11223 Name: jmol Version: 11.6 -Release: 8.%{svnrel}svn%{?dist} +Release: 9.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -105,26 +105,29 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn +- Update to svn revision 11223. + * Wed Feb 25 2009 Fedora Release Engineering - 11.6-8.10506svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn +* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn - Remove jpackage-utils from the Requires of the documentation packages. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn - Fix build on EPEL 5. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn - Disable JAR signing. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn - Add gettext-devel to BR and fix desktop-file-install. -* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn +* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn - Update to svn revision 10137. -* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn +* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn - Review fixes. -* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn +* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 18 Dec 2008 13:38:26 -0000 1.4 +++ sources 16 Jul 2009 14:24:22 -0000 1.5 @@ -1 +1 @@ -02eed2de30dee5191447091a0860b29d jmol-11.6.10506.tar.bz2 +6cdf1f77df024e9a0c07a6df6643002e jmol-11.6.11223.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 16 14:25:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:25:01 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142501.BCCE710F97E@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora 11 is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:25:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:25:06 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142506.6DABE10F8E4@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora devel is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From jussilehtola at fedoraproject.org Thu Jul 16 14:28:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:28:17 +0000 (UTC) Subject: rpms/jmol/EL-5 jmol.desktop, 1.2, 1.3 jmol.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090716142817.80EE511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11941/EL-5 Modified Files: jmol.desktop jmol.spec sources Log Message: Update to svn revision 11223. Index: jmol.desktop =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jmol.desktop 24 Oct 2008 15:06:23 -0000 1.2 +++ jmol.desktop 16 Jul 2009 14:27:47 -0000 1.3 @@ -1,4 +1,4 @@ -[Desktop Entry] +[Desktop Entry] Encoding=UTF-8 Name=Jmol GenericName=An open-source Java viewer for chemical structures in 3D Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jmol.spec 18 Dec 2008 13:47:33 -0000 1.3 +++ jmol.spec 16 Jul 2009 14:27:47 -0000 1.4 @@ -1,8 +1,8 @@ -%define svnrel 10506 +%define svnrel 11223 Name: jmol Version: 11.6 -Release: 7.%{svnrel}svn%{?dist} +Release: 9.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -105,23 +105,29 @@ rm -rf %{buildroot} %doc build/doc/* %changelog -* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn +* Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn +- Update to svn revision 11223. + +* Wed Feb 25 2009 Fedora Release Engineering - 11.6-8.10506svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn - Remove jpackage-utils from the Requires of the documentation packages. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn - Fix build on EPEL 5. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn - Disable JAR signing. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn - Add gettext-devel to BR and fix desktop-file-install. -* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn +* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn - Update to svn revision 10137. -* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn +* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn - Review fixes. -* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn +* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 18 Dec 2008 13:47:33 -0000 1.3 +++ sources 16 Jul 2009 14:27:47 -0000 1.4 @@ -1 +1 @@ -02eed2de30dee5191447091a0860b29d jmol-11.6.10506.tar.bz2 +6cdf1f77df024e9a0c07a6df6643002e jmol-11.6.11223.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 14:28:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:28:17 +0000 (UTC) Subject: rpms/jmol/F-11 jmol.spec,1.5,1.6 sources,1.4,1.5 Message-ID: <20090716142817.D3CD011C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11941/F-11 Modified Files: jmol.spec sources Log Message: Update to svn revision 11223. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-11/jmol.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jmol.spec 25 Feb 2009 09:29:47 -0000 1.5 +++ jmol.spec 16 Jul 2009 14:27:47 -0000 1.6 @@ -1,8 +1,8 @@ -%define svnrel 10506 +%define svnrel 11223 Name: jmol Version: 11.6 -Release: 8.%{svnrel}svn%{?dist} +Release: 9.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -105,26 +105,29 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn +- Update to svn revision 11223. + * Wed Feb 25 2009 Fedora Release Engineering - 11.6-8.10506svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn +* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn - Remove jpackage-utils from the Requires of the documentation packages. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn - Fix build on EPEL 5. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn - Disable JAR signing. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn - Add gettext-devel to BR and fix desktop-file-install. -* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn +* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn - Update to svn revision 10137. -* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn +* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn - Review fixes. -* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn +* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 18 Dec 2008 13:38:26 -0000 1.4 +++ sources 16 Jul 2009 14:27:47 -0000 1.5 @@ -1 +1 @@ -02eed2de30dee5191447091a0860b29d jmol-11.6.10506.tar.bz2 +6cdf1f77df024e9a0c07a6df6643002e jmol-11.6.11223.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 16 14:28:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:28:21 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142821.0CEB610F902@bastion2.fedora.phx.redhat.com> jskala has set the watchbugzilla acl on pm-utils (Fedora 9) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From jussilehtola at fedoraproject.org Thu Jul 16 14:28:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:28:17 +0000 (UTC) Subject: rpms/jmol/F-10 jmol.spec,1.3,1.4 sources,1.3,1.4 Message-ID: <20090716142817.A17BD11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11941/F-10 Modified Files: jmol.spec sources Log Message: Update to svn revision 11223. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-10/jmol.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jmol.spec 18 Dec 2008 13:47:33 -0000 1.3 +++ jmol.spec 16 Jul 2009 14:27:47 -0000 1.4 @@ -1,8 +1,8 @@ -%define svnrel 10506 +%define svnrel 11223 Name: jmol Version: 11.6 -Release: 7.%{svnrel}svn%{?dist} +Release: 9.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -105,23 +105,29 @@ rm -rf %{buildroot} %doc build/doc/* %changelog -* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn +* Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn +- Update to svn revision 11223. + +* Wed Feb 25 2009 Fedora Release Engineering - 11.6-8.10506svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Dec 18 2008 Jussi Lehtola - 11.6-7.10506svn - Remove jpackage-utils from the Requires of the documentation packages. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-6.10137svn - Fix build on EPEL 5. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-5.10137svn - Disable JAR signing. -* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn +* Fri Oct 24 2008 Jussi Lehtola - 11.6-4.10137svn - Add gettext-devel to BR and fix desktop-file-install. -* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn +* Thu Oct 23 2008 Jussi Lehtola - 11.6-3.10137svn - Update to svn revision 10137. -* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn +* Tue Oct 14 2008 Jussi Lehtola - 11.6-2.10081svn - Review fixes. -* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn +* Mon Oct 13 2008 Jussi Lehtola - 11.6-1.10081svn - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 18 Dec 2008 13:47:33 -0000 1.3 +++ sources 16 Jul 2009 14:27:47 -0000 1.4 @@ -1 +1 @@ -02eed2de30dee5191447091a0860b29d jmol-11.6.10506.tar.bz2 +6cdf1f77df024e9a0c07a6df6643002e jmol-11.6.11223.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 16 14:28:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:28:24 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142824.7DD5510F995@bastion2.fedora.phx.redhat.com> jskala has set the commit acl on pm-utils (Fedora 9) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From pkgdb at fedoraproject.org Thu Jul 16 14:28:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:28:22 +0000 Subject: [pkgdb] pm-utils had acl change status Message-ID: <20090716142822.5878810F905@bastion2.fedora.phx.redhat.com> jskala has set the watchcommits acl on pm-utils (Fedora 9) to Approved for jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From jussilehtola at fedoraproject.org Thu Jul 16 14:28:42 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:28:42 +0000 (UTC) Subject: rpms/pdfchain/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 pdfchain-desktop.patch, 1.1, 1.2 pdfchain.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716142842.D539D11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11445/devel Modified Files: .cvsignore import.log pdfchain-desktop.patch pdfchain.spec sources Log Message: Update to 0.123. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 May 2009 20:01:51 -0000 1.2 +++ .cvsignore 16 Jul 2009 14:28:12 -0000 1.3 @@ -1 +1 @@ -pdfchain_v.0.99.tar.gz +pdfchain-0.123.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 May 2009 20:01:51 -0000 1.1 +++ import.log 16 Jul 2009 14:28:12 -0000 1.2 @@ -1 +1,2 @@ pdfchain-0_99-3_fc11:HEAD:pdfchain-0.99-3.fc11.src.rpm:1243454492 +pdfchain-0_123-1_fc11:HEAD:pdfchain-0.123-1.fc11.src.rpm:1247754324 pdfchain-desktop.patch: Index: pdfchain-desktop.patch =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/pdfchain-desktop.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain-desktop.patch 27 May 2009 20:01:51 -0000 1.1 +++ pdfchain-desktop.patch 16 Jul 2009 14:28:12 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up pdfchain_v.0.99/pdfchain.desktop.orig pdfchain_v.0.99/pdfchain.desktop ---- pdfchain_v.0.99/pdfchain.desktop.orig 2009-04-06 20:41:34.000000000 +0300 -+++ pdfchain_v.0.99/pdfchain.desktop 2009-05-27 17:08:47.000000000 +0300 +diff -up pdfchain-0.123/application/pdfchain.desktop.orig pdfchain-0.123/application/pdfchain.desktop +--- pdfchain-0.123/application/pdfchain.desktop.orig 2009-06-18 16:59:53.000000000 +0300 ++++ pdfchain-0.123/application/pdfchain.desktop 2009-07-16 17:04:49.756593863 +0300 @@ -1,16 +1,12 @@ [Desktop Entry] -Version=ALPHA Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/pdfchain.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain.spec 27 May 2009 20:01:51 -0000 1.1 +++ pdfchain.spec 16 Jul 2009 14:28:12 -0000 1.2 @@ -1,19 +1,21 @@ Name: pdfchain -Version: 0.99 -Release: 3%{?dist} +Version: 0.123 +Release: 1%{?dist} Summary: A GUI for pdftk Group: Applications/Productivity License: GPLv3 URL: http://sourceforge.net/projects/pdfchain -Source0: http://downloads.sourceforge.net/pdfchain/%{name}_v.%{version}.tar.gz +Source0: http://downloads.sourceforge.net/pdfchain/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# Patch to make specfile conform to standards +# Patch to make desktop file conform to standards Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +# For dir ownership +Requires: hicolor-icon-theme Requires: pdftk Requires(post): desktop-file-utils Requires(postun): desktop-file-utils @@ -23,39 +25,59 @@ PDF Chain is a GUI for pdftk written wit to one pdf file or split. There are also some options and tools. %prep -%setup -q -n %{name}_v.%{version} +%setup -q %patch0 -p1 +# Stop if files acquire content +[ -s NEWS ] && exit 1 +[ -s README ] && exit 1 %build -# Remove binary in tarball -make clean -make CFLAGS="`pkg-config gtkmm-2.4 --cflags --libs` %{optflags}" %{?_smp_mflags} +%configure +make %{?_smp_mflags} %install rm -rf %{buildroot} -install -D -p -m 755 %{name} %{buildroot}%{_bindir}/%{name} -install -D -p -m 644 %{name}.png %{buildroot}%{_datadir}/pixmaps/%{name}.png -desktop-file-install --dir %{buildroot}%{_datadir}/applications %{name}.desktop +make install DESTDIR=%{buildroot} +# Remove doc dir +rm -rf %{buildroot}%{_prefix}/doc/pdfchain +# Validate desktop file +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop -# Update mime types %post +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +# Update icon cache +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc doc/changelog.txt doc/copyright.txt doc/license.txt doc/releasenotes.txt +%doc AUTHORS ChangeLog COPYING %{_bindir}/pdfchain %{_datadir}/applications/pdfchain.desktop +%{_datadir}/icons/hicolor/*/apps/pdfchain.png %{_datadir}/pixmaps/pdfchain.png %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0.123-1 +- Update to 0.123. + * Wed May 27 2009 Jussi Lehtola - 0.99-3 - Added missing BR: desktop-file-utils. - Set license as GPLv3 for now. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 20:01:51 -0000 1.2 +++ sources 16 Jul 2009 14:28:12 -0000 1.3 @@ -1 +1 @@ -0ede5640b1c6f0f2f513e992b60a261f pdfchain_v.0.99.tar.gz +88870ffaf28833b85d84b02da60f41a4 pdfchain-0.123.tar.gz From jussilehtola at fedoraproject.org Thu Jul 16 14:29:55 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:29:55 +0000 (UTC) Subject: rpms/pdfchain/F-11 pdfchain-desktop.patch, 1.1, 1.2 pdfchain.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716142955.B750811C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12625/F-11 Modified Files: pdfchain-desktop.patch pdfchain.spec sources Log Message: Update to 0.123. pdfchain-desktop.patch: Index: pdfchain-desktop.patch =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-11/pdfchain-desktop.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain-desktop.patch 27 May 2009 20:06:28 -0000 1.1 +++ pdfchain-desktop.patch 16 Jul 2009 14:29:55 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up pdfchain_v.0.99/pdfchain.desktop.orig pdfchain_v.0.99/pdfchain.desktop ---- pdfchain_v.0.99/pdfchain.desktop.orig 2009-04-06 20:41:34.000000000 +0300 -+++ pdfchain_v.0.99/pdfchain.desktop 2009-05-27 17:08:47.000000000 +0300 +diff -up pdfchain-0.123/application/pdfchain.desktop.orig pdfchain-0.123/application/pdfchain.desktop +--- pdfchain-0.123/application/pdfchain.desktop.orig 2009-06-18 16:59:53.000000000 +0300 ++++ pdfchain-0.123/application/pdfchain.desktop 2009-07-16 17:04:49.756593863 +0300 @@ -1,16 +1,12 @@ [Desktop Entry] -Version=ALPHA Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-11/pdfchain.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain.spec 27 May 2009 20:06:28 -0000 1.1 +++ pdfchain.spec 16 Jul 2009 14:29:55 -0000 1.2 @@ -1,19 +1,21 @@ Name: pdfchain -Version: 0.99 -Release: 3%{?dist} +Version: 0.123 +Release: 1%{?dist} Summary: A GUI for pdftk Group: Applications/Productivity License: GPLv3 URL: http://sourceforge.net/projects/pdfchain -Source0: http://downloads.sourceforge.net/pdfchain/%{name}_v.%{version}.tar.gz +Source0: http://downloads.sourceforge.net/pdfchain/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# Patch to make specfile conform to standards +# Patch to make desktop file conform to standards Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +# For dir ownership +Requires: hicolor-icon-theme Requires: pdftk Requires(post): desktop-file-utils Requires(postun): desktop-file-utils @@ -23,39 +25,59 @@ PDF Chain is a GUI for pdftk written wit to one pdf file or split. There are also some options and tools. %prep -%setup -q -n %{name}_v.%{version} +%setup -q %patch0 -p1 +# Stop if files acquire content +[ -s NEWS ] && exit 1 +[ -s README ] && exit 1 %build -# Remove binary in tarball -make clean -make CFLAGS="`pkg-config gtkmm-2.4 --cflags --libs` %{optflags}" %{?_smp_mflags} +%configure +make %{?_smp_mflags} %install rm -rf %{buildroot} -install -D -p -m 755 %{name} %{buildroot}%{_bindir}/%{name} -install -D -p -m 644 %{name}.png %{buildroot}%{_datadir}/pixmaps/%{name}.png -desktop-file-install --dir %{buildroot}%{_datadir}/applications %{name}.desktop +make install DESTDIR=%{buildroot} +# Remove doc dir +rm -rf %{buildroot}%{_prefix}/doc/pdfchain +# Validate desktop file +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop -# Update mime types %post +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +# Update icon cache +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc doc/changelog.txt doc/copyright.txt doc/license.txt doc/releasenotes.txt +%doc AUTHORS ChangeLog COPYING %{_bindir}/pdfchain %{_datadir}/applications/pdfchain.desktop +%{_datadir}/icons/hicolor/*/apps/pdfchain.png %{_datadir}/pixmaps/pdfchain.png %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0.123-1 +- Update to 0.123. + * Wed May 27 2009 Jussi Lehtola - 0.99-3 - Added missing BR: desktop-file-utils. - Set license as GPLv3 for now. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 20:06:28 -0000 1.2 +++ sources 16 Jul 2009 14:29:55 -0000 1.3 @@ -1 +1 @@ -0ede5640b1c6f0f2f513e992b60a261f pdfchain_v.0.99.tar.gz +88870ffaf28833b85d84b02da60f41a4 pdfchain-0.123.tar.gz From jussilehtola at fedoraproject.org Thu Jul 16 14:30:25 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:30:25 +0000 (UTC) Subject: rpms/pdfchain/F-10 pdfchain-desktop.patch, 1.1, 1.2 pdfchain.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716143025.879EB11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12625/F-10 Modified Files: pdfchain-desktop.patch pdfchain.spec sources Log Message: Update to 0.123. pdfchain-desktop.patch: Index: pdfchain-desktop.patch =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-10/pdfchain-desktop.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain-desktop.patch 27 May 2009 20:06:28 -0000 1.1 +++ pdfchain-desktop.patch 16 Jul 2009 14:29:55 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up pdfchain_v.0.99/pdfchain.desktop.orig pdfchain_v.0.99/pdfchain.desktop ---- pdfchain_v.0.99/pdfchain.desktop.orig 2009-04-06 20:41:34.000000000 +0300 -+++ pdfchain_v.0.99/pdfchain.desktop 2009-05-27 17:08:47.000000000 +0300 +diff -up pdfchain-0.123/application/pdfchain.desktop.orig pdfchain-0.123/application/pdfchain.desktop +--- pdfchain-0.123/application/pdfchain.desktop.orig 2009-06-18 16:59:53.000000000 +0300 ++++ pdfchain-0.123/application/pdfchain.desktop 2009-07-16 17:04:49.756593863 +0300 @@ -1,16 +1,12 @@ [Desktop Entry] -Version=ALPHA Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-10/pdfchain.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pdfchain.spec 27 May 2009 20:06:28 -0000 1.1 +++ pdfchain.spec 16 Jul 2009 14:29:55 -0000 1.2 @@ -1,19 +1,21 @@ Name: pdfchain -Version: 0.99 -Release: 3%{?dist} +Version: 0.123 +Release: 1%{?dist} Summary: A GUI for pdftk Group: Applications/Productivity License: GPLv3 URL: http://sourceforge.net/projects/pdfchain -Source0: http://downloads.sourceforge.net/pdfchain/%{name}_v.%{version}.tar.gz +Source0: http://downloads.sourceforge.net/pdfchain/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# Patch to make specfile conform to standards +# Patch to make desktop file conform to standards Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +# For dir ownership +Requires: hicolor-icon-theme Requires: pdftk Requires(post): desktop-file-utils Requires(postun): desktop-file-utils @@ -23,39 +25,59 @@ PDF Chain is a GUI for pdftk written wit to one pdf file or split. There are also some options and tools. %prep -%setup -q -n %{name}_v.%{version} +%setup -q %patch0 -p1 +# Stop if files acquire content +[ -s NEWS ] && exit 1 +[ -s README ] && exit 1 %build -# Remove binary in tarball -make clean -make CFLAGS="`pkg-config gtkmm-2.4 --cflags --libs` %{optflags}" %{?_smp_mflags} +%configure +make %{?_smp_mflags} %install rm -rf %{buildroot} -install -D -p -m 755 %{name} %{buildroot}%{_bindir}/%{name} -install -D -p -m 644 %{name}.png %{buildroot}%{_datadir}/pixmaps/%{name}.png -desktop-file-install --dir %{buildroot}%{_datadir}/applications %{name}.desktop +make install DESTDIR=%{buildroot} +# Remove doc dir +rm -rf %{buildroot}%{_prefix}/doc/pdfchain +# Validate desktop file +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop -# Update mime types %post +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun +# Update mime types update-desktop-database &> /dev/null || : +# Update icon cache +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +# Update icon cache +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc doc/changelog.txt doc/copyright.txt doc/license.txt doc/releasenotes.txt +%doc AUTHORS ChangeLog COPYING %{_bindir}/pdfchain %{_datadir}/applications/pdfchain.desktop +%{_datadir}/icons/hicolor/*/apps/pdfchain.png %{_datadir}/pixmaps/pdfchain.png %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0.123-1 +- Update to 0.123. + * Wed May 27 2009 Jussi Lehtola - 0.99-3 - Added missing BR: desktop-file-utils. - Set license as GPLv3 for now. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 20:06:28 -0000 1.2 +++ sources 16 Jul 2009 14:29:55 -0000 1.3 @@ -1 +1 @@ -0ede5640b1c6f0f2f513e992b60a261f pdfchain_v.0.99.tar.gz +88870ffaf28833b85d84b02da60f41a4 pdfchain-0.123.tar.gz From hadess at fedoraproject.org Thu Jul 16 14:32:05 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:32:05 +0000 (UTC) Subject: rpms/gstreamer/F-11 .cvsignore, 1.37, 1.38 gstreamer.spec, 1.99, 1.100 sources, 1.38, 1.39 Message-ID: <20090716143205.4128011C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13478 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 11 May 2009 01:09:52 -0000 1.37 +++ .cvsignore 16 Jul 2009 14:32:04 -0000 1.38 @@ -1 +1 @@ -gstreamer-0.10.23.tar.bz2 +gstreamer-0.10.23.2.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/gstreamer.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- gstreamer.spec 16 Jun 2009 10:16:07 -0000 1.99 +++ gstreamer.spec 16 Jul 2009 14:32:05 -0000 1.100 @@ -5,8 +5,8 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23 -Release: 2%{?dist} +Version: 0.10.23.2 +Release: 1%{?dist} Summary: GStreamer streaming media framework runtime Group: Applications/Multimedia @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 +- Update to 0.10.23.2 + * Tue Jun 16 2009 Bastien Nocera 0.10.23-2 - Update gst-inspect patch to ignore rank none plugins Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 11 May 2009 01:09:52 -0000 1.38 +++ sources 16 Jul 2009 14:32:05 -0000 1.39 @@ -1 +1 @@ -f7b2e300d2d85756407ec529424ab237 gstreamer-0.10.23.tar.bz2 +f3ea565fbcb765a768bca7118801acfc gstreamer-0.10.23.2.tar.bz2 From hadess at fedoraproject.org Thu Jul 16 14:37:07 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:37:07 +0000 (UTC) Subject: rpms/gstreamer/devel .cvsignore, 1.38, 1.39 gstreamer.spec, 1.99, 1.100 sources, 1.39, 1.40 Message-ID: <20090716143707.E4FD411C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14704 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 11 May 2009 01:11:09 -0000 1.38 +++ .cvsignore 16 Jul 2009 14:36:37 -0000 1.39 @@ -1 +1 @@ -gstreamer-0.10.23.tar.bz2 +gstreamer-0.10.23.2.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- gstreamer.spec 10 Jun 2009 14:29:13 -0000 1.99 +++ gstreamer.spec 16 Jul 2009 14:36:37 -0000 1.100 @@ -5,8 +5,8 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23 -Release: 2%{?dist} +Version: 0.10.23.2 +Release: 1%{?dist} Summary: GStreamer streaming media framework runtime Group: Applications/Multimedia @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 +- Update to 0.10.23.2 + * Wed Jun 10 2009 Bastien Nocera 0.10.23-2 - Update gst-inspect patch to ignore rank none plugins Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 11 May 2009 01:11:09 -0000 1.39 +++ sources 16 Jul 2009 14:36:37 -0000 1.40 @@ -1 +1 @@ -f7b2e300d2d85756407ec529424ab237 gstreamer-0.10.23.tar.bz2 +f3ea565fbcb765a768bca7118801acfc gstreamer-0.10.23.2.tar.bz2 From than at fedoraproject.org Thu Jul 16 14:37:29 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 16 Jul 2009 14:37:29 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec, 1.251, 1.252 kdebase-workspace-4.0.3-timedate-kcm.patch, 1.1, NONE Message-ID: <20090716143729.74ADA11C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14792 Modified Files: kdebase-workspace.spec Removed Files: kdebase-workspace-4.0.3-timedate-kcm.patch Log Message: drop it Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.251 retrieving revision 1.252 diff -u -p -r1.251 -r1.252 --- kdebase-workspace.spec 16 Jul 2009 14:07:35 -0000 1.251 +++ kdebase-workspace.spec 16 Jul 2009 14:36:59 -0000 1.252 @@ -15,7 +15,6 @@ Patch1: kdebase-workspace-4.2.96-redhat- Patch2: kdebase-workspace-4.2.95-plasma-konsole.patch Patch3: kdebase-workspace-4.2.90-show_systemsettings.patch Patch4: kdebase-workspace-4.2.85-ck-shutdown.patch -Patch6: kdebase-workspace-4.0.3-timedate-kcm.patch #??441062: packagekit tools do not show icons correctly on KDE Patch7: kdebase-workspace-4.0.3-krdb.patch Patch8: kdebase-workspace-4.2.85-klipper-url.patch @@ -213,7 +212,6 @@ Requires: PyKDE4 >= %{version} %patch3 -p1 -b .show_systemsettings # ConsoleKit >= 0.2.4 shutdown/reboot support (needed for GDM 2.22) %patch4 -p1 -b .ck-shutdown -%patch6 -p0 -b .timedate-kcm %patch7 -p0 -b .krdb %patch8 -p1 -b .klipper-url %patch9 -p1 -b .rootprivs --- kdebase-workspace-4.0.3-timedate-kcm.patch DELETED --- From jussilehtola at fedoraproject.org Thu Jul 16 14:41:26 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:41:26 +0000 (UTC) Subject: rpms/pidgin-latex/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 pidgin-latex.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090716144126.D76B011C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pidgin-latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15705/devel Modified Files: .cvsignore import.log pidgin-latex.spec sources Log Message: Update to 1.3.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Apr 2009 00:42:03 -0000 1.2 +++ .cvsignore 16 Jul 2009 14:40:56 -0000 1.3 @@ -1 +1 @@ -pidgin-latex-1.3.tar.bz2 +pidgin-latex-1.3.2.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 10 Apr 2009 00:42:03 -0000 1.1 +++ import.log 16 Jul 2009 14:40:56 -0000 1.2 @@ -1 +1,2 @@ pidgin-latex-1_3-2_fc10:HEAD:pidgin-latex-1.3-2.fc10.src.rpm:1239324042 +pidgin-latex-1_3_2-1_fc11:HEAD:pidgin-latex-1.3.2-1.fc11.src.rpm:1247755163 Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/pidgin-latex.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pidgin-latex.spec 10 Apr 2009 00:42:03 -0000 1.1 +++ pidgin-latex.spec 16 Jul 2009 14:40:56 -0000 1.2 @@ -1,6 +1,6 @@ Name: pidgin-latex -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} Summary: Use LaTeX formulas in your pidgin conversations Group: Applications/Internet License: GPLv2+ @@ -39,8 +39,11 @@ rm -rf %{buildroot} %{_libdir}/pidgin/*.so %changelog -* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 +* Thu Jul 16 2009 Jussi Lehtola - 1.3.2-1 +- Update to 1.3.2. + +* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 - Some minor aesthetical cleanups that came up with review. -* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 +* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 00:42:03 -0000 1.2 +++ sources 16 Jul 2009 14:40:56 -0000 1.3 @@ -1 +1 @@ -33aa374092e9a83f82b49602fb9296a6 pidgin-latex-1.3.tar.bz2 +10def2b9f0ed000e6d32f0afc7a5e21d pidgin-latex-1.3.2.tar.bz2 From hadess at fedoraproject.org Thu Jul 16 14:41:52 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:41:52 +0000 (UTC) Subject: rpms/gstreamer/F-11 gstreamer-inspect-rpm-format.patch,1.4,1.5 Message-ID: <20090716144152.E4D6211C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16193 Modified Files: gstreamer-inspect-rpm-format.patch Log Message: Fix rpm provides patch gstreamer-inspect-rpm-format.patch: Index: gstreamer-inspect-rpm-format.patch =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/gstreamer-inspect-rpm-format.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gstreamer-inspect-rpm-format.patch 16 Jun 2009 09:59:48 -0000 1.4 +++ gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:41:52 -0000 1.5 @@ -1,8 +1,15 @@ +diff --git a/common b/common +index fedaaee..5845b63 160000 +--- a/common ++++ b/common +@@ -1 +1 @@ +-Subproject commit fedaaee6fa5c0006f5b7264732cb4e29584ef100 ++Subproject commit 5845b632c99d8f0ab863bd955a9568d7937108f8 diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c -index 227e5ed..e9f93b8 100644 +index a286ce8..7c4ac97 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c -@@ -1262,9 +1262,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names) +@@ -1270,9 +1270,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names) return 0; } @@ -223,7 +230,7 @@ index 227e5ed..e9f93b8 100644 { GstPadDirection direction; const gchar *type_name; -@@ -1289,6 +1499,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -1297,6 +1507,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) return; } @@ -236,7 +243,7 @@ index 227e5ed..e9f93b8 100644 /* decoder/demuxer sink pads should always be static and there should only * be one, the same applies to encoders/muxers and source pads */ static_templates = gst_element_factory_get_static_pad_templates (factory); -@@ -1325,15 +1541,19 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -1333,15 +1549,19 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) gst_structure_remove_field (s, "rate"); gst_structure_remove_field (s, "depth"); gst_structure_remove_field (s, "clock-rate"); @@ -260,7 +267,7 @@ index 227e5ed..e9f93b8 100644 { gchar **protocols, **p; -@@ -1342,11 +1562,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -1350,11 +1570,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) switch (gst_element_factory_get_uri_type (factory)) { case GST_URI_SINK: for (p = protocols; *p != NULL; ++p) @@ -280,7 +287,7 @@ index 227e5ed..e9f93b8 100644 break; default: break; -@@ -1356,7 +1582,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -1364,7 +1590,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) } static void @@ -289,7 +296,7 @@ index 227e5ed..e9f93b8 100644 { const gchar *plugin_name; GList *features, *l; -@@ -1376,11 +1602,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin) +@@ -1384,11 +1610,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin) if (g_str_equal (plugin_name, feature->plugin_name)) { GstElementFactory *factory; @@ -305,15 +312,15 @@ index 227e5ed..e9f93b8 100644 } } -@@ -1394,6 +1621,7 @@ main (int argc, char *argv[]) +@@ -1402,6 +1629,7 @@ main (int argc, char *argv[]) gboolean print_all = FALSE; gboolean plugin_name = FALSE; gboolean print_aii = FALSE; + gboolean print_aii_rpm = FALSE; gboolean uri_handlers = FALSE; + #ifndef GST_DISABLE_OPTION_PARSING GOptionEntry options[] = { - {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all, -@@ -1403,6 +1631,9 @@ main (int argc, char *argv[]) +@@ -1412,6 +1640,9 @@ main (int argc, char *argv[]) "provides.\n " "Useful in connection with external automatic plugin " "installation mechanisms"), NULL}, @@ -323,7 +330,7 @@ index 227e5ed..e9f93b8 100644 {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name, N_("List the plugin contents"), NULL}, {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers, -@@ -1478,7 +1709,7 @@ main (int argc, char *argv[]) +@@ -1492,7 +1723,7 @@ main (int argc, char *argv[]) /* if there is such a plugin, print out info */ if (plugin) { if (print_aii) { @@ -332,7 +339,7 @@ index 227e5ed..e9f93b8 100644 } else { print_plugin_info (plugin); print_plugin_features (plugin); -@@ -1491,13 +1722,16 @@ main (int argc, char *argv[]) +@@ -1505,13 +1736,16 @@ main (int argc, char *argv[]) if (plugin) { if (print_aii) { From hadess at fedoraproject.org Thu Jul 16 14:42:24 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:42:24 +0000 (UTC) Subject: rpms/gstreamer/devel gstreamer-inspect-rpm-format.patch,1.4,1.5 Message-ID: <20090716144224.7C40D11C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16385 Modified Files: gstreamer-inspect-rpm-format.patch Log Message: Fix RPM provides patch gstreamer-inspect-rpm-format.patch: Index: gstreamer-inspect-rpm-format.patch =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer-inspect-rpm-format.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gstreamer-inspect-rpm-format.patch 10 Jun 2009 14:29:13 -0000 1.4 +++ gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:42:24 -0000 1.5 @@ -1,8 +1,15 @@ +diff --git a/common b/common +index fedaaee..5845b63 160000 +--- a/common ++++ b/common +@@ -1 +1 @@ +-Subproject commit fedaaee6fa5c0006f5b7264732cb4e29584ef100 ++Subproject commit 5845b632c99d8f0ab863bd955a9568d7937108f8 diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c -index 227e5ed..e9f93b8 100644 +index a286ce8..7c4ac97 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c -@@ -1262,9 +1262,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names) +@@ -1270,9 +1270,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names) return 0; } @@ -223,7 +230,7 @@ index 227e5ed..e9f93b8 100644 { GstPadDirection direction; const gchar *type_name; -@@ -1289,6 +1499,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -1297,6 +1507,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) return; } @@ -236,7 +243,7 @@ index 227e5ed..e9f93b8 100644 /* decoder/demuxer sink pads should always be static and there should only * be one, the same applies to encoders/muxers and source pads */ static_templates = gst_element_factory_get_static_pad_templates (factory); -@@ -1325,15 +1541,19 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -1333,15 +1549,19 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) gst_structure_remove_field (s, "rate"); gst_structure_remove_field (s, "depth"); gst_structure_remove_field (s, "clock-rate"); @@ -260,7 +267,7 @@ index 227e5ed..e9f93b8 100644 { gchar **protocols, **p; -@@ -1342,11 +1562,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -1350,11 +1570,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) switch (gst_element_factory_get_uri_type (factory)) { case GST_URI_SINK: for (p = protocols; *p != NULL; ++p) @@ -280,7 +287,7 @@ index 227e5ed..e9f93b8 100644 break; default: break; -@@ -1356,7 +1582,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -1364,7 +1590,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) } static void @@ -289,7 +296,7 @@ index 227e5ed..e9f93b8 100644 { const gchar *plugin_name; GList *features, *l; -@@ -1376,11 +1602,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin) +@@ -1384,11 +1610,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin) if (g_str_equal (plugin_name, feature->plugin_name)) { GstElementFactory *factory; @@ -305,15 +312,15 @@ index 227e5ed..e9f93b8 100644 } } -@@ -1394,6 +1621,7 @@ main (int argc, char *argv[]) +@@ -1402,6 +1629,7 @@ main (int argc, char *argv[]) gboolean print_all = FALSE; gboolean plugin_name = FALSE; gboolean print_aii = FALSE; + gboolean print_aii_rpm = FALSE; gboolean uri_handlers = FALSE; + #ifndef GST_DISABLE_OPTION_PARSING GOptionEntry options[] = { - {"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all, -@@ -1403,6 +1631,9 @@ main (int argc, char *argv[]) +@@ -1412,6 +1640,9 @@ main (int argc, char *argv[]) "provides.\n " "Useful in connection with external automatic plugin " "installation mechanisms"), NULL}, @@ -323,7 +330,7 @@ index 227e5ed..e9f93b8 100644 {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name, N_("List the plugin contents"), NULL}, {"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers, -@@ -1478,7 +1709,7 @@ main (int argc, char *argv[]) +@@ -1492,7 +1723,7 @@ main (int argc, char *argv[]) /* if there is such a plugin, print out info */ if (plugin) { if (print_aii) { @@ -332,7 +339,7 @@ index 227e5ed..e9f93b8 100644 } else { print_plugin_info (plugin); print_plugin_features (plugin); -@@ -1491,13 +1722,16 @@ main (int argc, char *argv[]) +@@ -1505,13 +1736,16 @@ main (int argc, char *argv[]) if (plugin) { if (print_aii) { From pkgdb at fedoraproject.org Thu Jul 16 14:45:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:23 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144523.8166110F8D5@bastion2.fedora.phx.redhat.com> harald has set the watchcommits acl on system-config-network (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:45:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:23 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144523.84D0710F8D4@bastion2.fedora.phx.redhat.com> harald has set the watchbugzilla acl on system-config-network (Fedora 11) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:45:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:25 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144525.9884210F8DA@bastion2.fedora.phx.redhat.com> harald has set the watchbugzilla acl on system-config-network (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:45:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:26 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144526.3740710F8F3@bastion2.fedora.phx.redhat.com> harald has set the watchcommits acl on system-config-network (Fedora 10) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:45:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:29 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144529.9EFCB10F8F4@bastion2.fedora.phx.redhat.com> harald has set the watchbugzilla acl on system-config-network (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 14:45:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:45:31 +0000 Subject: [pkgdb] system-config-network had acl change status Message-ID: <20090716144531.67A6610F8FA@bastion2.fedora.phx.redhat.com> harald has set the watchcommits acl on system-config-network (Fedora devel) to Approved for jpopelka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From hadess at fedoraproject.org Thu Jul 16 14:50:56 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:50:56 +0000 (UTC) Subject: rpms/gstreamer/devel gstreamer-inspect-rpm-format.patch,1.5,1.6 Message-ID: <20090716145056.0CE8A11C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18189 Modified Files: gstreamer-inspect-rpm-format.patch Log Message: Fix RPM provides patch (again) gstreamer-inspect-rpm-format.patch: Index: gstreamer-inspect-rpm-format.patch =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer-inspect-rpm-format.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:42:24 -0000 1.5 +++ gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:50:55 -0000 1.6 @@ -1,10 +1,3 @@ -diff --git a/common b/common -index fedaaee..5845b63 160000 ---- a/common -+++ b/common -@@ -1 +1 @@ --Subproject commit fedaaee6fa5c0006f5b7264732cb4e29584ef100 -+Subproject commit 5845b632c99d8f0ab863bd955a9568d7937108f8 diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index a286ce8..7c4ac97 100644 --- a/tools/gst-inspect.c From hadess at fedoraproject.org Thu Jul 16 14:50:49 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 14:50:49 +0000 (UTC) Subject: rpms/gstreamer/F-11 gstreamer-inspect-rpm-format.patch,1.5,1.6 Message-ID: <20090716145049.56EC111C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18125 Modified Files: gstreamer-inspect-rpm-format.patch Log Message: Fix rpm provides patch (again) gstreamer-inspect-rpm-format.patch: Index: gstreamer-inspect-rpm-format.patch =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/gstreamer-inspect-rpm-format.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:41:52 -0000 1.5 +++ gstreamer-inspect-rpm-format.patch 16 Jul 2009 14:50:49 -0000 1.6 @@ -1,10 +1,3 @@ -diff --git a/common b/common -index fedaaee..5845b63 160000 ---- a/common -+++ b/common -@@ -1 +1 @@ --Subproject commit fedaaee6fa5c0006f5b7264732cb4e29584ef100 -+Subproject commit 5845b632c99d8f0ab863bd955a9568d7937108f8 diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index a286ce8..7c4ac97 100644 --- a/tools/gst-inspect.c From jussilehtola at fedoraproject.org Thu Jul 16 14:51:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:51:50 +0000 (UTC) Subject: rpms/pidgin-latex/F-10 pidgin-latex.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716145150.8DF5511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pidgin-latex/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18388/F-10 Modified Files: pidgin-latex.spec sources Log Message: Update to 1.3.2 Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/F-10/pidgin-latex.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pidgin-latex.spec 10 Apr 2009 00:45:25 -0000 1.1 +++ pidgin-latex.spec 16 Jul 2009 14:51:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: pidgin-latex -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} Summary: Use LaTeX formulas in your pidgin conversations Group: Applications/Internet License: GPLv2+ @@ -9,6 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pidgin-devel +# Check that requires are OK +BuildRequires: dvipng +BuildRequires: tex(latex) + Requires: dvipng Requires: tex(latex) Requires: pidgin @@ -39,8 +43,11 @@ rm -rf %{buildroot} %{_libdir}/pidgin/*.so %changelog -* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 +* Thu Jul 16 2009 Jussi Lehtola - 1.3.2-1 +- Update to 1.3.2. + +* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 - Some minor aesthetical cleanups that came up with review. -* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 +* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 00:45:25 -0000 1.2 +++ sources 16 Jul 2009 14:51:20 -0000 1.3 @@ -1 +1 @@ -33aa374092e9a83f82b49602fb9296a6 pidgin-latex-1.3.tar.bz2 +10def2b9f0ed000e6d32f0afc7a5e21d pidgin-latex-1.3.2.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 14:51:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:51:50 +0000 (UTC) Subject: rpms/pidgin-latex/EL-5 pidgin-latex.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716145150.61D6711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pidgin-latex/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18388/EL-5 Modified Files: pidgin-latex.spec sources Log Message: Update to 1.3.2 Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/EL-5/pidgin-latex.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pidgin-latex.spec 10 Apr 2009 00:45:22 -0000 1.1 +++ pidgin-latex.spec 16 Jul 2009 14:51:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: pidgin-latex -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} Summary: Use LaTeX formulas in your pidgin conversations Group: Applications/Internet License: GPLv2+ @@ -9,6 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pidgin-devel +# Check that requires are OK +BuildRequires: dvipng +BuildRequires: tex(latex) + Requires: dvipng Requires: tex(latex) Requires: pidgin @@ -39,8 +43,11 @@ rm -rf %{buildroot} %{_libdir}/pidgin/*.so %changelog -* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 +* Thu Jul 16 2009 Jussi Lehtola - 1.3.2-1 +- Update to 1.3.2. + +* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 - Some minor aesthetical cleanups that came up with review. -* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 +* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 00:45:22 -0000 1.2 +++ sources 16 Jul 2009 14:51:20 -0000 1.3 @@ -1 +1 @@ -33aa374092e9a83f82b49602fb9296a6 pidgin-latex-1.3.tar.bz2 +10def2b9f0ed000e6d32f0afc7a5e21d pidgin-latex-1.3.2.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 14:51:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:51:50 +0000 (UTC) Subject: rpms/pidgin-latex/devel pidgin-latex.spec,1.2,1.3 Message-ID: <20090716145150.DB85111C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pidgin-latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18388/devel Modified Files: pidgin-latex.spec Log Message: Update to 1.3.2 Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/pidgin-latex.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pidgin-latex.spec 16 Jul 2009 14:40:56 -0000 1.2 +++ pidgin-latex.spec 16 Jul 2009 14:51:20 -0000 1.3 @@ -9,6 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pidgin-devel +# Check that requires are OK +BuildRequires: dvipng +BuildRequires: tex(latex) + Requires: dvipng Requires: tex(latex) Requires: pidgin From jussilehtola at fedoraproject.org Thu Jul 16 14:51:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:51:50 +0000 (UTC) Subject: rpms/pidgin-latex/F-11 pidgin-latex.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716145150.AFAB811C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pidgin-latex/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18388/F-11 Modified Files: pidgin-latex.spec sources Log Message: Update to 1.3.2 Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/F-11/pidgin-latex.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pidgin-latex.spec 10 Apr 2009 00:45:34 -0000 1.1 +++ pidgin-latex.spec 16 Jul 2009 14:51:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: pidgin-latex -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.2 +Release: 1%{?dist} Summary: Use LaTeX formulas in your pidgin conversations Group: Applications/Internet License: GPLv2+ @@ -9,6 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: pidgin-devel +# Check that requires are OK +BuildRequires: dvipng +BuildRequires: tex(latex) + Requires: dvipng Requires: tex(latex) Requires: pidgin @@ -39,8 +43,11 @@ rm -rf %{buildroot} %{_libdir}/pidgin/*.so %changelog -* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 +* Thu Jul 16 2009 Jussi Lehtola - 1.3.2-1 +- Update to 1.3.2. + +* Thu Apr 09 2009 Jussi Lehtola - 1.3-2 - Some minor aesthetical cleanups that came up with review. -* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 +* Wed Mar 25 2009 Jussi Lehtola - 1.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 00:45:35 -0000 1.2 +++ sources 16 Jul 2009 14:51:20 -0000 1.3 @@ -1 +1 @@ -33aa374092e9a83f82b49602fb9296a6 pidgin-latex-1.3.tar.bz2 +10def2b9f0ed000e6d32f0afc7a5e21d pidgin-latex-1.3.2.tar.bz2 From jussilehtola at fedoraproject.org Thu Jul 16 14:56:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:56:08 +0000 (UTC) Subject: rpms/pdfchain/F-10 pdfchain.spec,1.2,1.3 Message-ID: <20090716145608.922D711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19388/F-10 Modified Files: pdfchain.spec Log Message: Add missing buildrequire. Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-10/pdfchain.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdfchain.spec 16 Jul 2009 14:29:55 -0000 1.2 +++ pdfchain.spec 16 Jul 2009 14:55:38 -0000 1.3 @@ -13,6 +13,7 @@ Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +BuildRequires: intltool # For dir ownership Requires: hicolor-icon-theme From jussilehtola at fedoraproject.org Thu Jul 16 14:56:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:56:08 +0000 (UTC) Subject: rpms/pdfchain/devel pdfchain.spec,1.2,1.3 Message-ID: <20090716145608.C6D0711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19388/devel Modified Files: pdfchain.spec Log Message: Add missing buildrequire. Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/pdfchain.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdfchain.spec 16 Jul 2009 14:28:12 -0000 1.2 +++ pdfchain.spec 16 Jul 2009 14:55:38 -0000 1.3 @@ -13,6 +13,7 @@ Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +BuildRequires: intltool # For dir ownership Requires: hicolor-icon-theme From jussilehtola at fedoraproject.org Thu Jul 16 14:56:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:56:08 +0000 (UTC) Subject: rpms/pdfchain/F-11 pdfchain.spec,1.2,1.3 Message-ID: <20090716145608.A5D9711C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pdfchain/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19388/F-11 Modified Files: pdfchain.spec Log Message: Add missing buildrequire. Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/F-11/pdfchain.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdfchain.spec 16 Jul 2009 14:29:55 -0000 1.2 +++ pdfchain.spec 16 Jul 2009 14:55:38 -0000 1.3 @@ -13,6 +13,7 @@ Patch0: pdfchain-desktop.patch BuildRequires: desktop-file-utils BuildRequires: glibmm24-devel BuildRequires: gtkmm24-devel +BuildRequires: intltool # For dir ownership Requires: hicolor-icon-theme From jussilehtola at fedoraproject.org Thu Jul 16 14:56:35 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 14:56:35 +0000 (UTC) Subject: rpms/pygrace/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 pygrace.spec, 1.5, 1.6 sources, 1.2, 1.3 Message-ID: <20090716145635.7D13411C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19541/devel Modified Files: .cvsignore import.log pygrace.spec sources Log Message: Update to 0.4. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Feb 2009 19:59:13 -0000 1.2 +++ .cvsignore 16 Jul 2009 14:56:05 -0000 1.3 @@ -1 +1 @@ -pygrace-0.3.tgz +pygrace-0.4.tgz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 18 Feb 2009 19:59:13 -0000 1.1 +++ import.log 16 Jul 2009 14:56:05 -0000 1.2 @@ -1 +1,2 @@ pygrace-0_3-3_fc10:HEAD:pygrace-0.3-3.fc10.src.rpm:1234987066 +pygrace-0_4-1_fc11:HEAD:pygrace-0.4-1.fc11.src.rpm:1247755763 Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/pygrace.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pygrace.spec 26 Feb 2009 20:02:47 -0000 1.5 +++ pygrace.spec 16 Jul 2009 14:56:05 -0000 1.6 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pygrace -Version: 0.3 -Release: 6%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -11,7 +11,8 @@ Source0: http://www.its.caltech.edu/~mmc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: python-setuptools-devel +BuildRequires: python-devel +BuildRequires: python-setuptools BuildRequires: python-numeric Requires: grace @@ -22,21 +23,17 @@ Python bindings for grace, based on Nath %prep %setup -q +# Get rid of library shebangs +for file in *.py; do + sed -i '/\/usr\/bin\/env/d' $file +done -%if 0%{?rhel} >0 %build -CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build -%install -rm -rf %{buildroot} -%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot} -%else -%build -%{__python} setup.py build +python -c 'import setuptools; execfile("setup.py")' build + %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} -%endif - +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -44,24 +41,27 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt tests examples -%{python_sitelib}/%{name} -%{python_sitelib}/*egg-info +%{python_sitelib}/%{name}/ +%{python_sitelib}/%{name}-*.egg-info/ %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0.4-1 +- Update to 0.4. + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 +* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 - Retry fixing EPEL build. -* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 +* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 - Fix EPEL build. -* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 +* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 - Added examples to %%doc. -* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 +* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 - Fixed license. -* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 +* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Feb 2009 19:59:13 -0000 1.2 +++ sources 16 Jul 2009 14:56:05 -0000 1.3 @@ -1 +1 @@ -a156a5487b337ef3b2d45ddb8fe61606 pygrace-0.3.tgz +b7fc8ba41b7a1e33641c8968be31b650 pygrace-0.4.tgz From lkundrak at fedoraproject.org Thu Jul 16 14:58:12 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Thu, 16 Jul 2009 14:58:12 +0000 (UTC) Subject: rpms/pulseaudio/EL-5 pulseaudio-0.9.10-CVE-2009-1894.patch, NONE, 1.1 pulseaudio.spec, 1.4, 1.5 Message-ID: <20090716145812.5A4CC11C0099@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/pulseaudio/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20020 Modified Files: pulseaudio.spec Added Files: pulseaudio-0.9.10-CVE-2009-1894.patch Log Message: * Thu Jul 16 2009 Lubomir Rintel 0.9.10-1.2 - Fix CVE-2009-1894 pulseaudio-0.9.10-CVE-2009-1894.patch: --- NEW FILE pulseaudio-0.9.10-CVE-2009-1894.patch --- Reexec only after the privilegies have been broken. Fix http://blog.cr0.org/2009/07/old-school-local-root-vulnerability-in.html Lubomir Rintel diff -up pulseaudio-0.9.10/src/daemon/main.c.CVE-2009-1894 pulseaudio-0.9.10/src/daemon/main.c --- pulseaudio-0.9.10/src/daemon/main.c.CVE-2009-1894 2009-07-16 16:43:49.000000000 +0200 +++ pulseaudio-0.9.10/src/daemon/main.c 2009-07-16 16:54:34.000000000 +0200 @@ -342,25 +342,6 @@ int main(int argc, char *argv[]) { #endif -#if defined(__linux__) && defined(__OPTIMIZE__) - /* - Disable lazy relocations to make usage of external libraries - more deterministic for our RT threads. We abuse __OPTIMIZE__ as - a check whether we are a debug build or not. - */ - - if (!getenv("LD_BIND_NOW")) { - char *rp; - - /* We have to execute ourselves, because the libc caches the - * value of $LD_BIND_NOW on initialization. */ - - putenv(pa_xstrdup("LD_BIND_NOW=1")); - pa_assert_se(rp = pa_readlink("/proc/self/exe")); - pa_assert_se(execv(rp, argv) == 0); - } -#endif - #ifdef HAVE_GETUID real_root = getuid() == 0; suid_root = !real_root && geteuid() == 0; @@ -389,6 +370,25 @@ int main(int argc, char *argv[]) { * we were started SUID. If we are started as normal root, than we * still are normal root. */ +#if defined(__linux__) && defined(__OPTIMIZE__) + /* + Disable lazy relocations to make usage of external libraries + more deterministic for our RT threads. We abuse __OPTIMIZE__ as + a check whether we are a debug build or not. + */ + + if (!getenv("LD_BIND_NOW")) { + char *rp; + + /* We have to execute ourselves, because the libc caches the + * value of $LD_BIND_NOW on initialization. */ + + putenv(pa_xstrdup("LD_BIND_NOW=1")); + pa_assert_se(rp = pa_readlink("/proc/self/exe")); + pa_assert_se(execv(rp, argv) == 0); + } +#endif + setlocale(LC_ALL, ""); pa_log_set_maximal_level(PA_LOG_INFO); pa_log_set_ident("pulseaudio"); Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/EL-5/pulseaudio.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pulseaudio.spec 19 Apr 2008 13:05:25 -0000 1.4 +++ pulseaudio.spec 16 Jul 2009 14:57:42 -0000 1.5 @@ -3,10 +3,11 @@ Name: pulseaudio Summary: Improved Linux sound server Version: 0.9.10 -Release: 1%{?dist}.1 +Release: 1%{?dist}.2 License: GPLv2+ Group: System Environment/Daemons Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}.tar.gz +Patch0: pulseaudio-0.9.10-CVE-2009-1894.patch URL: http://pulseaudio.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tcp_wrappers @@ -149,6 +150,7 @@ This package contains command line utili %prep %setup -q -T -b0 +%patch0 -p1 -b .CVE-2009-1894 %build %configure --disable-ltdl-install --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-realtime-group=pulse-rt --with-access-group=pulse-access @@ -368,7 +370,10 @@ fi %{_mandir}/man1/pax11publish.1.gz %changelog -* Sun Mar 30 2008 Lennart Poettering 0.9.10-1.1 +* Thu Jul 16 2009 Lubomir Rintel 0.9.10-1.2 +- Fix CVE-2009-1894 + +* Sun Mar 30 2008 Lubomir Rintel 0.9.10-1.1 - Adjust for EPEL: - Remove LIRC support - Do not obsolete esound From pkgdb at fedoraproject.org Thu Jul 16 14:23:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 14:23:54 +0000 Subject: [pkgdb] pm-utils ownership updated Message-ID: <20090716142355.05B4610F8A6@bastion2.fedora.phx.redhat.com> Package pm-utils in Fedora 7 is now owned by jskala To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pm-utils From karsten at fedoraproject.org Thu Jul 16 15:00:27 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Thu, 16 Jul 2009 15:00:27 +0000 (UTC) Subject: rpms/mkinitrd/F-11 mkinitrd.spec,1.323,1.324 Message-ID: <20090716150027.810DD11C0099@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/mkinitrd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20867 Modified Files: mkinitrd.spec Log Message: - bump and rebuild for soname change of libparted on s390x Index: mkinitrd.spec =================================================================== RCS file: /cvs/extras/rpms/mkinitrd/F-11/mkinitrd.spec,v retrieving revision 1.323 retrieving revision 1.324 diff -u -p -r1.323 -r1.324 --- mkinitrd.spec 16 Jun 2009 11:32:32 -0000 1.323 +++ mkinitrd.spec 16 Jul 2009 15:00:25 -0000 1.324 @@ -3,7 +3,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 6.0.87 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source0: mkinitrd-%{version}.tar.bz2 @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Thu Jul 16 2009 Karsten Hopp 6.0.87-2 +- bump and rebuild for soname change of libparted on s390x + * Tue Jun 16 2009 Hans de Goede - 6.0.87-1 - Fix mkinitrd creating a non booting initrd when parted-devel is installed and the user has made configuration changes resulting in ld.so searching From jussilehtola at fedoraproject.org Thu Jul 16 15:00:28 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 15:00:28 +0000 (UTC) Subject: rpms/pygrace/F-11 pygrace.spec,1.5,1.6 sources,1.2,1.3 Message-ID: <20090716150028.A9FD511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20801/F-11 Modified Files: pygrace.spec sources Log Message: Update to 0.4. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-11/pygrace.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pygrace.spec 26 Feb 2009 20:02:47 -0000 1.5 +++ pygrace.spec 16 Jul 2009 15:00:28 -0000 1.6 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pygrace -Version: 0.3 -Release: 6%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -11,7 +11,8 @@ Source0: http://www.its.caltech.edu/~mmc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: python-setuptools-devel +BuildRequires: python-devel +BuildRequires: python-setuptools BuildRequires: python-numeric Requires: grace @@ -22,21 +23,17 @@ Python bindings for grace, based on Nath %prep %setup -q +# Get rid of library shebangs +for file in *.py; do + sed -i '/\/usr\/bin\/env/d' $file +done -%if 0%{?rhel} >0 %build -CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build -%install -rm -rf %{buildroot} -%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot} -%else -%build -%{__python} setup.py build +python -c 'import setuptools; execfile("setup.py")' build + %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} -%endif - +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -44,24 +41,27 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt tests examples -%{python_sitelib}/%{name} -%{python_sitelib}/*egg-info +%{python_sitelib}/%{name}/ +%{python_sitelib}/%{name}-*.egg-info/ %changelog +* Thu Jul 16 2009 Jussi Lehtola - 0.4-1 +- Update to 0.4. + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 +* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 - Retry fixing EPEL build. -* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 +* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 - Fix EPEL build. -* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 +* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 - Added examples to %%doc. -* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 +* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 - Fixed license. -* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 +* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Feb 2009 19:59:13 -0000 1.2 +++ sources 16 Jul 2009 15:00:28 -0000 1.3 @@ -1 +1 @@ -a156a5487b337ef3b2d45ddb8fe61606 pygrace-0.3.tgz +b7fc8ba41b7a1e33641c8968be31b650 pygrace-0.4.tgz From jussilehtola at fedoraproject.org Thu Jul 16 15:00:58 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 15:00:58 +0000 (UTC) Subject: rpms/pygrace/EL-5 pygrace.spec,1.4,1.5 sources,1.2,1.3 Message-ID: <20090716150058.2CBBD11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20801/EL-5 Modified Files: pygrace.spec sources Log Message: Update to 0.4. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-5/pygrace.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pygrace.spec 19 Feb 2009 21:34:59 -0000 1.4 +++ pygrace.spec 16 Jul 2009 15:00:27 -0000 1.5 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pygrace -Version: 0.3 -Release: 5%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -11,7 +11,8 @@ Source0: http://www.its.caltech.edu/~mmc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: python-setuptools-devel +BuildRequires: python-devel +BuildRequires: python-setuptools BuildRequires: python-numeric Requires: grace @@ -22,21 +23,17 @@ Python bindings for grace, based on Nath %prep %setup -q +# Get rid of library shebangs +for file in *.py; do + sed -i '/\/usr\/bin\/env/d' $file +done -%if 0%{?rhel} >0 %build -CFLAGS="%{optflags}" %{__python} -c 'import setuptools; execfile("setup.py")' build -%install -rm -rf %{buildroot} -%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot} -%else -%build -%{__python} setup.py build +python -c 'import setuptools; execfile("setup.py")' build + %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} -%endif - +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -44,21 +41,27 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt tests examples -%{python_sitelib}/%{name} -%{python_sitelib}/*egg-info +%{python_sitelib}/%{name}/ +%{python_sitelib}/%{name}-*.egg-info/ %changelog -* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 +* Thu Jul 16 2009 Jussi Lehtola - 0.4-1 +- Update to 0.4. + +* Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 - Retry fixing EPEL build. -* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 +* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 - Fix EPEL build. -* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 +* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 - Added examples to %%doc. -* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 +* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 - Fixed license. -* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 +* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Feb 2009 20:24:05 -0000 1.2 +++ sources 16 Jul 2009 15:00:27 -0000 1.3 @@ -1 +1 @@ -a156a5487b337ef3b2d45ddb8fe61606 pygrace-0.3.tgz +b7fc8ba41b7a1e33641c8968be31b650 pygrace-0.4.tgz From jussilehtola at fedoraproject.org Thu Jul 16 15:00:57 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 15:00:57 +0000 (UTC) Subject: rpms/pygrace/EL-4 pygrace.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716150057.DBAB411C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20801/EL-4 Modified Files: pygrace.spec sources Log Message: Update to 0.4. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-4/pygrace.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pygrace.spec 19 Feb 2009 09:12:29 -0000 1.1 +++ pygrace.spec 16 Jul 2009 15:00:27 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pygrace -Version: 0.3 -Release: 3%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -12,6 +12,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildArch: noarch BuildRequires: python-devel +BuildRequires: python-setuptools BuildRequires: python-numeric Requires: grace @@ -22,13 +23,17 @@ Python bindings for grace, based on Nath %prep %setup -q +# Get rid of library shebangs +for file in *.py; do + sed -i '/\/usr\/bin\/env/d' $file +done %build -%{__python} setup.py build +python -c 'import setuptools; execfile("setup.py")' build %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -36,15 +41,27 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt tests examples -%{python_sitelib}/%{name} -%{python_sitelib}/*egg-info +%{python_sitelib}/%{name}/ +%{python_sitelib}/%{name}-*.egg-info/ %changelog -* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 +* Thu Jul 16 2009 Jussi Lehtola - 0.4-1 +- Update to 0.4. + +* Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 +- Retry fixing EPEL build. + +* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 +- Fix EPEL build. + +* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 - Added examples to %%doc. -* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 +* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 - Fixed license. -* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 +* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Feb 2009 20:24:05 -0000 1.2 +++ sources 16 Jul 2009 15:00:27 -0000 1.3 @@ -1 +1 @@ -a156a5487b337ef3b2d45ddb8fe61606 pygrace-0.3.tgz +b7fc8ba41b7a1e33641c8968be31b650 pygrace-0.4.tgz From jussilehtola at fedoraproject.org Thu Jul 16 15:00:58 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 15:00:58 +0000 (UTC) Subject: rpms/pygrace/F-10 pygrace.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090716150058.8AAC211C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20801/F-10 Modified Files: pygrace.spec sources Log Message: Update to 0.4. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-10/pygrace.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pygrace.spec 19 Feb 2009 09:12:31 -0000 1.1 +++ pygrace.spec 16 Jul 2009 15:00:28 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pygrace -Version: 0.3 -Release: 3%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -12,6 +12,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildArch: noarch BuildRequires: python-devel +BuildRequires: python-setuptools BuildRequires: python-numeric Requires: grace @@ -22,13 +23,17 @@ Python bindings for grace, based on Nath %prep %setup -q +# Get rid of library shebangs +for file in *.py; do + sed -i '/\/usr\/bin\/env/d' $file +done %build -%{__python} setup.py build +python -c 'import setuptools; execfile("setup.py")' build %install rm -rf %{buildroot} -%{__python} setup.py install --skip-build --root %{buildroot} +python -c 'import setuptools; execfile("setup.py")' install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} @@ -36,15 +41,27 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt tests examples -%{python_sitelib}/%{name} -%{python_sitelib}/*egg-info +%{python_sitelib}/%{name}/ +%{python_sitelib}/%{name}-*.egg-info/ %changelog -* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 +* Thu Jul 16 2009 Jussi Lehtola - 0.4-1 +- Update to 0.4. + +* Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 19 2009 Jussi Lehtola - 0.3-5 +- Retry fixing EPEL build. + +* Thu Feb 19 2009 Jussi Lehtola - 0.3-4 +- Fix EPEL build. + +* Wed Feb 18 2009 Jussi Lehtola - 0.3-3 - Added examples to %%doc. -* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 +* Tue Feb 17 2009 Jussi Lehtola - 0.3-2 - Fixed license. -* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 +* Sun Feb 15 2009 Jussi Lehtola - 0.3-1 - First release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Feb 2009 20:24:05 -0000 1.2 +++ sources 16 Jul 2009 15:00:28 -0000 1.3 @@ -1 +1 @@ -a156a5487b337ef3b2d45ddb8fe61606 pygrace-0.3.tgz +b7fc8ba41b7a1e33641c8968be31b650 pygrace-0.4.tgz From agoode at fedoraproject.org Thu Jul 16 15:02:36 2009 From: agoode at fedoraproject.org (Adam Goode) Date: Thu, 16 Jul 2009 15:02:36 +0000 (UTC) Subject: rpms/coda/devel 99-coda.nodes,NONE,1.1 coda-client.init,1.1,1.2 Message-ID: <20090716150236.C466F11C0099@cvs1.fedora.phx.redhat.com> Author: agoode Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20926 Modified Files: coda-client.init Added Files: 99-coda.nodes Log Message: Add 99-coda.nodes file, for putting into /etc/udev/makedev.d. This is taken from how fuse does it. I am not changing the specfile right now but want to add this so it is not forgotten. Possibly things need to go into /etc/makedev.d as well? Once this is included, then the modprobe and udev stuff in the init file should be removed. --- NEW FILE 99-coda.nodes --- cfs0 Index: coda-client.init =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda-client.init,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- coda-client.init 20 May 2008 19:37:56 -0000 1.1 +++ coda-client.init 16 Jul 2009 15:02:06 -0000 1.2 @@ -24,11 +24,6 @@ start() { [ -f $config ] || exit 6 echo -n $"Starting $prog: " - echo -n "kernel " - /sbin/modprobe coda - /sbin/udevsettle - - echo -n "venus" /usr/sbin/vutil --swaplogs >/dev/null 2>&1 daemon --pidfile=$pid_file "$exec >/dev/null 2>&1" retval=$? From agoode at fedoraproject.org Thu Jul 16 15:03:43 2009 From: agoode at fedoraproject.org (Adam Goode) Date: Thu, 16 Jul 2009 15:03:43 +0000 (UTC) Subject: rpms/coda/devel coda-client.init,1.2,1.3 Message-ID: <20090716150343.2F54711C0099@cvs1.fedora.phx.redhat.com> Author: agoode Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22012 Modified Files: coda-client.init Log Message: Oops, revert coda-client.init change until specfile is updated Index: coda-client.init =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda-client.init,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- coda-client.init 16 Jul 2009 15:02:06 -0000 1.2 +++ coda-client.init 16 Jul 2009 15:03:42 -0000 1.3 @@ -24,6 +24,11 @@ start() { [ -f $config ] || exit 6 echo -n $"Starting $prog: " + echo -n "kernel " + /sbin/modprobe coda + /sbin/udevsettle + + echo -n "venus" /usr/sbin/vutil --swaplogs >/dev/null 2>&1 daemon --pidfile=$pid_file "$exec >/dev/null 2>&1" retval=$? From karsten at fedoraproject.org Thu Jul 16 15:03:49 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Thu, 16 Jul 2009 15:03:49 +0000 (UTC) Subject: rpms/pyparted/F-11 pyparted.spec,1.61,1.62 Message-ID: <20090716150349.597DC11C0099@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/pyparted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21970 Modified Files: pyparted.spec Log Message: - bump and rebuild for soname change of libparted on s390x Index: pyparted.spec =================================================================== RCS file: /cvs/extras/rpms/pyparted/F-11/pyparted.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- pyparted.spec 15 Apr 2009 03:18:53 -0000 1.61 +++ pyparted.spec 16 Jul 2009 15:03:19 -0000 1.62 @@ -3,7 +3,7 @@ Summary: Python module for GNU parted Name: pyparted Version: 2.0.12 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://fedorahosted.org/pyparted @@ -41,6 +41,9 @@ partition tables. %{python_sitearch}/parted %changelog +* Thu Jul 16 2009 Karsten Hopp 2.0.12-2 +- bump and rebuild for soname change of libparted on s390x + * Tue Apr 14 2009 David Cantrell - 2.0.12-1 - Upgrade to pyparted-2.0.12 From huff at fedoraproject.org Thu Jul 16 15:07:47 2009 From: huff at fedoraproject.org (David Huff) Date: Thu, 16 Jul 2009 15:07:47 +0000 (UTC) Subject: rpms/appliance-tools/devel .cvsignore, 1.3, 1.4 appliance-tools.spec, 1.9, 1.10 import.log, 1.2, 1.3 sources, 1.6, 1.7 Message-ID: <20090716150747.0F59A11C0099@cvs1.fedora.phx.redhat.com> Author: huff Update of /cvs/pkgs/rpms/appliance-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23039/devel Modified Files: .cvsignore appliance-tools.spec import.log sources Log Message: * Tue Jul 07 2009 David Huff -004.4 - added functionality include additional modules in ramdisk Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/appliance-tools/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 1 Dec 2008 16:29:08 -0000 1.3 +++ .cvsignore 16 Jul 2009 15:07:46 -0000 1.4 @@ -1 +1 @@ -appliance-tools-004.tar.bz2 +appliance-tools-004.4.tar.bz2 Index: appliance-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/appliance-tools/devel/appliance-tools.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- appliance-tools.spec 24 Feb 2009 01:27:57 -0000 1.9 +++ appliance-tools.spec 16 Jul 2009 15:07:46 -0000 1.10 @@ -4,8 +4,8 @@ Summary: Tools for building Appliances Name: appliance-tools -Version: 004 -Release: 3%{?dist} +Version: 004.4 +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base URL: http://git.et.redhat.com/?p=act.git @@ -15,7 +15,7 @@ URL: http://git.et.redhat.com/?p=act.git # git archive --format=tar --prefix=appliance-tools-%{version} appliance-tools-%{version} | bzip2 > appliance-tools-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Requires: livecd-tools >= 018 curl rsync kpartx +Requires: livecd-tools >= 020 curl rsync kpartx Requires: zlib Requires: qemu-img BuildRequires: python @@ -59,10 +59,10 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/ec2convert/*.pyc %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 004-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +*Mon Jul 07 2009 David Huff -004.4 +- added functionality include additional modules in ramdisk -*Mon Dec 01 2008 David Huff -004-2 +*Mon Dec 01 2008 David Huff -004.2 - changed form ExclusiveArch to EcludeArch to fix broken deps *Mon Dec 01 2008 David Huff - 004 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/appliance-tools/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 1 Dec 2008 16:29:08 -0000 1.2 +++ import.log 16 Jul 2009 15:07:46 -0000 1.3 @@ -1,2 +1,3 @@ appliance-tools-003-1_fc10:HEAD:appliance-tools-003-1.fc10.src.rpm:1219422935 appliance-tools-004-1_fc10:HEAD:appliance-tools-004-1.fc10.src.rpm:1228130661 +appliance-tools-004_4-2_fc12:HEAD:appliance-tools-004.4-2.fc12.src.rpm:1247756755 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/appliance-tools/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Dec 2008 16:29:08 -0000 1.6 +++ sources 16 Jul 2009 15:07:46 -0000 1.7 @@ -1 +1 @@ -e1f9dc50ad44063a97395476c7b892e0 appliance-tools-004.tar.bz2 +5d3b9557165a281f9cc12e6f67f6ce33 appliance-tools-004.4.tar.bz2 From buc at fedoraproject.org Thu Jul 16 15:09:16 2009 From: buc at fedoraproject.org (Dmitry Butskoy) Date: Thu, 16 Jul 2009 15:09:16 +0000 (UTC) Subject: rpms/pam_ssh/devel pam_ssh-1.97-var_run.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 pam_ssh.spec, 1.23, 1.24 sources, 1.3, 1.4 pam_ssh-1.91-getpwnam.patch, 1.1, NONE pam_ssh-1.91-include_syslog.diff, 1.1, NONE pam_ssh-1.91-man_agent_files.diff, 1.1, NONE pam_ssh-1.91-var_run.patch, 1.1, NONE pam_ssh-1.92-include_pam.patch, 1.1, NONE pam_ssh-1.92-prompt.patch, 1.2, NONE Message-ID: <20090716150916.0055B11C0099@cvs1.fedora.phx.redhat.com> Author: buc Update of /cvs/extras/rpms/pam_ssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23646 Modified Files: .cvsignore pam_ssh.spec sources Added Files: pam_ssh-1.97-var_run.patch Removed Files: pam_ssh-1.91-getpwnam.patch pam_ssh-1.91-include_syslog.diff pam_ssh-1.91-man_agent_files.diff pam_ssh-1.91-var_run.patch pam_ssh-1.92-include_pam.patch pam_ssh-1.92-prompt.patch Log Message: Upgrade to 1.97 pam_ssh-1.97-var_run.patch: --- NEW FILE pam_ssh-1.97-var_run.patch --- diff -Nrbu pam_ssh-1.97/pam_ssh.8 pam_ssh-1.97-OK/pam_ssh.8 --- pam_ssh-1.97/pam_ssh.8 2008-05-12 22:57:12.000000000 +0400 +++ pam_ssh-1.97-OK/pam_ssh.8 2009-07-15 21:39:52.000000000 +0400 @@ -148,6 +148,10 @@ SSH2 RSA keys .It Pa $HOME/.ssh2/id_dsa_* SSH2 DSA keys +.It Pa /var/run/pam_ssh/* +ssh-agent environment information. The files are owned by the superuser but +readable by the users. The location is Fedora specific, in the original package +these files are in $HOME/.ssh/agent-* .El .Sh SEE ALSO .Xr ssh-agent 1 , diff -Nrbu pam_ssh-1.97/pam_ssh.c pam_ssh-1.97-OK/pam_ssh.c --- pam_ssh-1.97/pam_ssh.c 2008-05-12 22:57:12.000000000 +0400 +++ pam_ssh-1.97-OK/pam_ssh.c 2009-07-15 21:38:32.000000000 +0400 @@ -114,6 +114,7 @@ #define PAM_OPT_NULLOK_NAME "nullok" #define SEP_KEYFILES "," #define SSH_CLIENT_DIR ".ssh" +#define STATE_DIR "/var/run/" MODULE_NAME enum { #if HAVE_OPENPAM || HAVE_PAM_STRUCT_OPTIONS || !HAVE_PAM_STD_OPTION @@ -540,7 +541,6 @@ char env_string[BUFSIZ]; /* environment string */ char *env_value; /* envariable value */ int env_write; /* env file descriptor */ - char hname[MAXHOSTNAMELEN]; /* local hostname */ char *per_agent; /* to store env */ char *per_session; /* per-session filename */ const struct passwd *pwent; /* user's passwd entry */ @@ -583,17 +583,16 @@ * Technique: Create an environment file containing * information about the agent. Only one file is created, but * it may be given many names. One name is given for the - * agent itself, agent-. Another name is given for each - * session, agent-- or agent--. We + * agent itself, /var/run/pam_ssh/. Another name is given + * for each session, - or -. We * delete the per-session filename on session close, and when * the link count goes to unity on the per-agent file, we * delete the file and kill the agent. */ - /* the per-agent file contains just the hostname */ + /* the per-agent file contains just the username */ - gethostname(hname, sizeof hname); - if (asprintf(&per_agent, "%s/.ssh/agent-%s", pwent->pw_dir, hname) + if (asprintf(&per_agent, STATE_DIR "/%s", pwent->pw_name) == -1) { pam_ssh_log(LOG_CRIT, "out of memory"); openpam_restore_cred(pamh); @@ -644,7 +643,10 @@ } if (start_agent) { - if ((env_write = open(per_agent, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR)) < 0) { + openpam_restore_cred(pamh); + env_write = open(per_agent, O_CREAT | O_WRONLY, S_IRUSR | S_IRGRP | S_IROTH); + openpam_borrow_cred(pamh, pwent); + if (env_write < 0) { pam_ssh_log(LOG_ERR, "can't write to %s", per_agent); free(per_agent); openpam_restore_cred(pamh); @@ -880,7 +882,7 @@ for (cp = tty_nodir; (cp = strchr(cp, '/')); ) *cp = '_'; - if (asprintf(&per_session, "%s/.ssh/agent-%s-%s", pwent->pw_dir, hname, + if (asprintf(&per_session, STATE_DIR "/%s-%s", pwent->pw_name, tty_nodir) == -1) { pam_ssh_log(LOG_CRIT, "out of memory"); free(tty_nodir); @@ -899,10 +901,10 @@ return retval; } + openpam_restore_cred(pamh); unlink(per_session); /* remove cruft */ link(per_agent, per_session); - openpam_restore_cred(pamh); return PAM_SUCCESS; } @@ -932,8 +934,11 @@ } if (pam_get_data(pamh, "ssh_agent_env_session", - (const void **)(void *)&env_file) == PAM_SUCCESS && env_file) + (const void **)(void *)&env_file) == PAM_SUCCESS && env_file) { + openpam_restore_cred(pamh); unlink(env_file); + openpam_borrow_cred(pamh, pwent); + } /* Retrieve per-agent filename and check link count. If it's greater than unity, other sessions are still using this @@ -948,7 +953,9 @@ openpam_restore_cred(pamh); return PAM_SUCCESS; } + openpam_restore_cred(pamh); unlink(env_file); + openpam_borrow_cred(pamh, pwent); } } Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/pam_ssh/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Aug 2007 09:37:34 -0000 1.3 +++ .cvsignore 16 Jul 2009 15:09:15 -0000 1.4 @@ -1 +1 @@ -pam_ssh-1.92.tar.bz2 +pam_ssh-1.97.tar.bz2 Index: pam_ssh.spec =================================================================== RCS file: /cvs/extras/rpms/pam_ssh/devel/pam_ssh.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- pam_ssh.spec 26 Mar 2009 15:01:33 -0000 1.23 +++ pam_ssh.spec 16 Jul 2009 15:09:15 -0000 1.24 @@ -1,29 +1,18 @@ -Name: pam_ssh -Version: 1.92 -Release: 10%{?dist} Summary: PAM module for use with SSH keys and ssh-agent -Source: http://downloads.sourceforge.net/pam-ssh/pam_ssh-%{version}.tar.bz2 -URL: http://sourceforge.net/projects/pam-ssh/ -Patch0: pam_ssh-1.91-getpwnam.patch -# put agent files in /var/run instead of the home directory to avoid -# complications when run from different hosts -Patch1: pam_ssh-1.91-var_run.patch -# corresponding man page -Patch2: pam_ssh-1.91-man_agent_files.diff -# include the syslog header -Patch4: pam_ssh-1.91-include_syslog.diff -# include a pam header -Patch5: pam_ssh-1.92-include_pam.patch -# always use standard prompt for the first time -Patch6: pam_ssh-1.92-prompt.patch - +Name: pam_ssh +Version: 1.97 +Release: 1%{?dist} +Group: System Environment/Base License: BSD +URL: http://sourceforge.net/projects/pam-ssh/ +Source0: http://downloads.sourceforge.net/pam-ssh/pam_ssh-%{version}.tar.bz2 +Patch0: pam_ssh-1.97-var_run.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: pam-devel, openssh-clients, openssl-devel, libtool Requires: openssh-clients -BuildRequires: pam-devel, openssh-clients, openssl-devel -Group: System Environment/Base Conflicts: selinux-policy-targeted < 3.0.8-55 + %description This PAM module provides single sign-on behavior for UNIX using SSH keys. Users are authenticated by decrypting their SSH private keys with the @@ -32,41 +21,49 @@ process is started and keys are added. T following PAM sessions. In any case the appropriate environment variables are set in the session phase. + %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p0 -b .man_agent_files -%patch4 -p1 -%patch5 -p1 -b .include_pam -%patch6 -p1 -chmod a-x pam_ssh.c -touch -r pam_ssh.8.man_agent_files pam_ssh.8 + +# re-run autoconf utils to libtoolize properly +autoreconf -f -si + %build %configure --with-pam-dir=/%{_lib}/security/ make clean make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install -d -m 755 $RPM_BUILD_ROOT%{_localstatedir}/run/pam_ssh -rm $RPM_BUILD_ROOT/%{_lib}/security/pam_ssh.la +rm -f $RPM_BUILD_ROOT/%{_lib}/security/*.la + %clean rm -rf $RPM_BUILD_ROOT + %files %defattr(-,root,root,-) -%doc AUTHORS NEWS README ChangeLog TODO COPYING -/%{_lib}/security/pam_ssh.so -%{_mandir}/man8/pam_ssh.8* +/%{_lib}/security/*.so %dir %{_localstatedir}/run/pam_ssh +%doc AUTHORS NEWS README ChangeLog TODO COPYING +%{_mandir}/*/* + %changelog +* Wed Jul 15 2009 Dmitry Butskoy - 1.97-1 +- update to 1.97 +- drop no more needed patches +- specfile cleanup +- run autoreconf to re-libtoolize properly + * Thu Mar 26 2009 Dmitry Butskoy - 1.92-10 - Always use standard "Password:" prompt for the first password's inquire in a PAM chain (#492153) Index: sources =================================================================== RCS file: /cvs/extras/rpms/pam_ssh/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Aug 2007 09:37:34 -0000 1.3 +++ sources 16 Jul 2009 15:09:15 -0000 1.4 @@ -1 +1 @@ -3861f20572183adfadef8c77270e6165 pam_ssh-1.92.tar.bz2 +ef114d67b4951c88a62893437f850784 pam_ssh-1.97.tar.bz2 --- pam_ssh-1.91-getpwnam.patch DELETED --- --- pam_ssh-1.91-include_syslog.diff DELETED --- --- pam_ssh-1.91-man_agent_files.diff DELETED --- --- pam_ssh-1.91-var_run.patch DELETED --- --- pam_ssh-1.92-include_pam.patch DELETED --- --- pam_ssh-1.92-prompt.patch DELETED --- From hadess at fedoraproject.org Thu Jul 16 15:16:42 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 15:16:42 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel .cvsignore, 1.24, 1.25 gstreamer-plugins-base.spec, 1.77, 1.78 sources, 1.25, 1.26 Message-ID: <20090716151642.1A89111C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25464 Modified Files: .cvsignore gstreamer-plugins-base.spec sources Log Message: * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 11 May 2009 01:12:44 -0000 1.24 +++ .cvsignore 16 Jul 2009 15:16:41 -0000 1.25 @@ -1 +1 @@ -gst-plugins-base-0.10.23.tar.bz2 +gst-plugins-base-0.10.23.2.tar.bz2 Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- gstreamer-plugins-base.spec 19 Jun 2009 14:58:33 -0000 1.77 +++ gstreamer-plugins-base.spec 16 Jul 2009 15:16:41 -0000 1.78 @@ -4,8 +4,8 @@ %define _gst 0.10.22 Name: %{gstreamer}-plugins-base -Version: 0.10.23 -Release: 2%{?dist} +Version: 0.10.23.2 +Release: 1%{?dist} Summary: GStreamer streaming media framework base plug-ins Group: Applications/Multimedia @@ -254,6 +254,9 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 +- Update to 0.10.23.2 + * Fri Jun 19 2009 Bastien Nocera 0.10.23-2 - Move input-selector plugin from -bad to -base (#506767) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 11 May 2009 01:12:44 -0000 1.25 +++ sources 16 Jul 2009 15:16:41 -0000 1.26 @@ -1 +1 @@ -641cc7def2d8667b9b4df15e69dba25f gst-plugins-base-0.10.23.tar.bz2 +3bacdeb2dd33e739b3bee5f61b7dee1c gst-plugins-base-0.10.23.2.tar.bz2 From than at fedoraproject.org Thu Jul 16 15:51:48 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 16 Jul 2009 15:51:48 +0000 (UTC) Subject: rpms/kde-l10n/devel kde-l10n.spec,1.84,1.85 Message-ID: <20090716155148.28E3311C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31644 Modified Files: kde-l10n.spec Log Message: fix rpm file list Index: kde-l10n.spec =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/kde-l10n.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- kde-l10n.spec 14 Jul 2009 10:46:20 -0000 1.84 +++ kde-l10n.spec 16 Jul 2009 15:51:17 -0000 1.85 @@ -881,6 +881,7 @@ rm -rf %{buildroot} %defattr(-,root,root) %lang(ar) %{_datadir}/locale/ar/LC_MESSAGES/* %lang(ar) %{_datadir}/locale/ar/entry.desktop +%lang(ar) %{_datadir}/locale/ar/LC_SCRIPTS/kdelibs4/kdelibs4.js %lang(ar) %{_datadir}/kde4/apps/klettres/ar %if %{buildall} From pkgdb at fedoraproject.org Thu Jul 16 15:51:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 15:51:58 +0000 Subject: [pkgdb] jakarta-commons-jxpath: akahl has requested commit Message-ID: <20090716155158.BAA2610F8A9@bastion2.fedora.phx.redhat.com> akahl has requested the commit acl on jakarta-commons-jxpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From pkgdb at fedoraproject.org Thu Jul 16 15:52:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 15:52:19 +0000 Subject: [pkgdb] jakarta-commons-jxpath: akahl has requested watchcommits Message-ID: <20090716155219.280F510F8AF@bastion2.fedora.phx.redhat.com> akahl has requested the watchcommits acl on jakarta-commons-jxpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From pkgdb at fedoraproject.org Thu Jul 16 15:52:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 15:52:20 +0000 Subject: [pkgdb] jakarta-commons-jxpath: akahl has requested watchbugzilla Message-ID: <20090716155220.DC57510F8B3@bastion2.fedora.phx.redhat.com> akahl has requested the watchbugzilla acl on jakarta-commons-jxpath (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From hadess at fedoraproject.org Thu Jul 16 15:59:06 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 15:59:06 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel gstreamer-plugins-base.spec, 1.78, 1.79 Message-ID: <20090716155906.D00D811C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32626 Modified Files: gstreamer-plugins-base.spec Log Message: CD speed patch shouldn't be needed anymore Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- gstreamer-plugins-base.spec 16 Jul 2009 15:16:41 -0000 1.78 +++ gstreamer-plugins-base.spec 16 Jul 2009 15:58:36 -0000 1.79 @@ -14,7 +14,7 @@ URL: http://gstreamer.freedesktop.org/ Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: gstpb-0.10.15-cd-speed.patch +#Patch0: gstpb-0.10.15-cd-speed.patch # http://bugzilla.gnome.org/show_bug.cgi?id=586356 # https://bugzilla.redhat.com/show_bug.cgi?id=506767 Patch1: 0001-Move-plugin-selector-to-gst-plugins-base.patch @@ -56,7 +56,7 @@ This package contains a set of well-main %prep %setup -q -n gst-plugins-base-%{version} -%patch0 -p1 -b .cd-speed +#%patch0 -p1 -b .cd-speed %patch1 -p1 -b .input-selector libtoolize -f autoreconf From npajkovs at fedoraproject.org Thu Jul 16 16:03:52 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Thu, 16 Jul 2009 16:03:52 +0000 (UTC) Subject: rpms/cdrkit/F-11 cdrkit.spec,1.25,1.26 Message-ID: <20090716160352.C329611C0099@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/cdrkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv775 Modified Files: cdrkit.spec Log Message: icedax require vorbis-tools Index: cdrkit.spec =================================================================== RCS file: /cvs/extras/rpms/cdrkit/F-11/cdrkit.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- cdrkit.spec 8 Jun 2009 12:08:57 -0000 1.25 +++ cdrkit.spec 16 Jul 2009 16:03:22 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A collection of CD/DVD utilities Name: cdrkit Version: 1.1.9 -Release: 4%{?dist}.1 +Release: 5%{?dist} License: GPLv2 Group: Applications/System URL: http://cdrkit.org/ @@ -60,6 +60,7 @@ Obsoletes: cdda2wav < 9:2.01-12 Provides: cdda2wav = 9:2.01-12 Requires(preun): %{_sbindir}/alternatives chkconfig coreutils Requires(post): %{_sbindir}/alternatives chkconfig coreutils +Requires: vorbis-tools %description -n icedax Icedax is a sampling utility for CD-ROM drives that are capable of @@ -210,6 +211,9 @@ fi %{_mandir}/man1/readmult.* %changelog +* Thu Jul 16 2009 Nikola Pajkovsky 1.1.9-5 +- icedax require vorbis-tools + * Mon Jun 08 2009 Karsten Hopp 1.1.9-4.1 - rename functions as they conflict with glibc From pkgdb at fedoraproject.org Thu Jul 16 16:06:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:06:31 +0000 Subject: [pkgdb] system-config-network: jpopelka has given up commit Message-ID: <20090716160631.DA52110F888@bastion2.fedora.phx.redhat.com> jpopelka has given up the commit acl on system-config-network (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 16:06:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:06:34 +0000 Subject: [pkgdb] system-config-network: jpopelka has given up commit Message-ID: <20090716160634.D897610F8A9@bastion2.fedora.phx.redhat.com> jpopelka has given up the commit acl on system-config-network (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From pkgdb at fedoraproject.org Thu Jul 16 16:06:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:06:39 +0000 Subject: [pkgdb] system-config-network: jpopelka has given up commit Message-ID: <20090716160639.1990C10F8AC@bastion2.fedora.phx.redhat.com> jpopelka has given up the commit acl on system-config-network (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-network From jussilehtola at fedoraproject.org Thu Jul 16 16:17:47 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:17:47 +0000 (UTC) Subject: rpms/jmol/devel jmol.spec,1.6,1.7 Message-ID: <20090716161747.EA32111C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2422/devel Modified Files: jmol.spec Log Message: Fix build. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jmol.spec 16 Jul 2009 14:24:22 -0000 1.6 +++ jmol.spec 16 Jul 2009 16:17:47 -0000 1.7 @@ -26,6 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ant BuildRequires: desktop-file-utils BuildRequires: gettext-devel +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils Requires: java >= 1:1.6.0 From jussilehtola at fedoraproject.org Thu Jul 16 16:18:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:18:17 +0000 (UTC) Subject: rpms/jmol/EL-5 jmol.spec,1.4,1.5 Message-ID: <20090716161817.78E4111C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2422/EL-5 Modified Files: jmol.spec Log Message: Fix build. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jmol.spec 16 Jul 2009 14:27:47 -0000 1.4 +++ jmol.spec 16 Jul 2009 16:17:47 -0000 1.5 @@ -26,6 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ant BuildRequires: desktop-file-utils BuildRequires: gettext-devel +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils Requires: java >= 1:1.6.0 From jussilehtola at fedoraproject.org Thu Jul 16 16:18:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:18:17 +0000 (UTC) Subject: rpms/jmol/F-11 jmol.spec,1.6,1.7 Message-ID: <20090716161817.ED1AB11C00D7@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2422/F-11 Modified Files: jmol.spec Log Message: Fix build. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-11/jmol.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jmol.spec 16 Jul 2009 14:27:47 -0000 1.6 +++ jmol.spec 16 Jul 2009 16:17:47 -0000 1.7 @@ -26,6 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ant BuildRequires: desktop-file-utils BuildRequires: gettext-devel +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils Requires: java >= 1:1.6.0 From jussilehtola at fedoraproject.org Thu Jul 16 16:18:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:18:17 +0000 (UTC) Subject: rpms/jmol/F-10 jmol.spec,1.4,1.5 Message-ID: <20090716161817.ECA8B11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2422/F-10 Modified Files: jmol.spec Log Message: Fix build. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-10/jmol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jmol.spec 16 Jul 2009 14:27:47 -0000 1.4 +++ jmol.spec 16 Jul 2009 16:17:47 -0000 1.5 @@ -26,6 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ant BuildRequires: desktop-file-utils BuildRequires: gettext-devel +BuildRequires: java-devel >= 1:1.6.0 BuildRequires: jpackage-utils Requires: java >= 1:1.6.0 From jussilehtola at fedoraproject.org Thu Jul 16 16:37:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:37:50 +0000 (UTC) Subject: rpms/jmol/F-10 jmol.spec,1.5,1.6 Message-ID: <20090716163750.E506311C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4171/F-10 Modified Files: jmol.spec Log Message: Bump release. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-10/jmol.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jmol.spec 16 Jul 2009 16:17:47 -0000 1.5 +++ jmol.spec 16 Jul 2009 16:37:20 -0000 1.6 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 9.%{svnrel}svn%{?dist} +Release: 10.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -106,6 +106,9 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn +- Bump release to be able to rebuild in koji. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn - Update to svn revision 11223. From jussilehtola at fedoraproject.org Thu Jul 16 16:37:50 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:37:50 +0000 (UTC) Subject: rpms/jmol/EL-5 jmol.spec,1.5,1.6 Message-ID: <20090716163750.D090311C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4171/EL-5 Modified Files: jmol.spec Log Message: Bump release. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jmol.spec 16 Jul 2009 16:17:47 -0000 1.5 +++ jmol.spec 16 Jul 2009 16:37:20 -0000 1.6 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 9.%{svnrel}svn%{?dist} +Release: 10.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -106,6 +106,9 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn +- Bump release to be able to rebuild in koji. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn - Update to svn revision 11223. From jussilehtola at fedoraproject.org Thu Jul 16 16:37:51 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:37:51 +0000 (UTC) Subject: rpms/jmol/devel jmol.spec,1.7,1.8 Message-ID: <20090716163751.4DBBC11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4171/devel Modified Files: jmol.spec Log Message: Bump release. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jmol.spec 16 Jul 2009 16:17:47 -0000 1.7 +++ jmol.spec 16 Jul 2009 16:37:21 -0000 1.8 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 9.%{svnrel}svn%{?dist} +Release: 10.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -106,6 +106,9 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn +- Bump release to be able to rebuild in koji. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn - Update to svn revision 11223. From jussilehtola at fedoraproject.org Thu Jul 16 16:37:51 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:37:51 +0000 (UTC) Subject: rpms/jmol/F-11 jmol.spec,1.7,1.8 Message-ID: <20090716163751.2102D11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4171/F-11 Modified Files: jmol.spec Log Message: Bump release. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-11/jmol.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jmol.spec 16 Jul 2009 16:17:47 -0000 1.7 +++ jmol.spec 16 Jul 2009 16:37:20 -0000 1.8 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 9.%{svnrel}svn%{?dist} +Release: 10.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -106,6 +106,9 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn +- Bump release to be able to rebuild in koji. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-9.11223svn - Update to svn revision 11223. From jussilehtola at fedoraproject.org Thu Jul 16 16:39:00 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:39:00 +0000 (UTC) Subject: rpms/towhee/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 towhee.spec, 1.4, 1.5 Message-ID: <20090716163900.0179A11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4585/devel Modified Files: .cvsignore import.log sources towhee.spec Log Message: Update to 6.2.6. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 May 2009 12:18:28 -0000 1.2 +++ .cvsignore 16 Jul 2009 16:38:59 -0000 1.3 @@ -1 +1 @@ -towhee-6.2.3.tar.gz +towhee-6.2.6.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 May 2009 12:18:28 -0000 1.1 +++ import.log 16 Jul 2009 16:38:59 -0000 1.2 @@ -1 +1,2 @@ towhee-6_2_3-2_fc11:HEAD:towhee-6.2.3-2.fc11.src.rpm:1243426687 +towhee-6_2_6-1_fc11:HEAD:towhee-6.2.6-1.fc11.src.rpm:1247762322 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 12:18:28 -0000 1.2 +++ sources 16 Jul 2009 16:38:59 -0000 1.3 @@ -1 +1 @@ -72475a7af55bd93376c51cd081be2e40 towhee-6.2.3.tar.gz +1ea66130962bd79d24b6671b285fdef4 towhee-6.2.6.tar.gz Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/towhee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- towhee.spec 27 May 2009 15:52:07 -0000 1.4 +++ towhee.spec 16 Jul 2009 16:38:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: towhee -Version: 6.2.3 -Release: 5%{?dist} +Version: 6.2.6 +Release: 1%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,14 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -ExcludeArch: ppc64 +#ExcludeArch: ppc64 BuildRequires: gcc-gfortran -%if 0%{?fedora} > 11 -BuildRequires: openmpi -%else BuildRequires: openmpi-devel -%endif # Check for mpi-selector or environment-modules %global selector 0 @@ -54,6 +50,9 @@ phases. This package contains binaries for serial operation and the utilities. +N.B. Due to some general names the utilities have a towhee- prefix, e.g. +analyse_movie is now towhee-analyse_movie. + %package mpi Summary: Towhee, MPI version @@ -112,17 +111,34 @@ for file in Examples/*/towhee_input; do done %build +## Build the main binaries # Use gfortran, not g77. export F77=gfortran + +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 +%ifarch ppc64 +export CFLAGS="%{optflags} -mminimal-toc" +export CXXFLAGS="%{optflags} -mminimal-toc" +export FFLAGS="%{optflags} -mminimal-toc" +%else +export FFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" +export CFLAGS="%{optflags}" +%endif + ## Build serial version mkdir nompi cd nompi ln -s ../configure . %configure make %{?_smp_mflags} + +# Utilities +cd Utils +make %{?_smp_mflags} cd .. -# FIXME: Build utilities too +cd .. ## Build parallel version # Load MPI enviroment @@ -151,8 +167,9 @@ cd .. %install rm -rf %{buildroot} # Install binaries -make -C nompi install DESTDIR=%{buildroot} -make -C mpi install DESTDIR=%{buildroot} +make -C mpi install DESTDIR=%{buildroot} INSTALL="install -p" +make -C nompi install DESTDIR=%{buildroot} INSTALL="install -p" + # Install force fields find ForceFields/ -name "Makefile*" -exec rm {} \; mkdir -p %{buildroot}%{_datadir}/%{name} @@ -163,6 +180,13 @@ find Manual/ -name "Makefile*" -exec rm find Examples/ -name "Makefile*" -exec rm {} \; find Examples/ -type f -exec chmod 644 {} \; +# Rename utilities +for bin in {analyse_{movie,histogram},car2towhee,charmm2pdb,{faux,pdb,xmd,xtl,xyz}2towhee,fitcoex,jre_to_towhee,maftodensity,rdf2pmfpair,unitcell}{,-mpi}; do + mv %{buildroot}%{_bindir}/$bin %{buildroot}%{_bindir}/towhee-$bin +done +# Remove mpi versions of the utilities +rm %{buildroot}%{_bindir}/towhee-*-mpi + %clean rm -rf %{buildroot} @@ -170,15 +194,14 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex %{_bindir}/forcefield %{_bindir}/towhee -# FIXME: add utils here +# Utils +%{_bindir}/towhee-* %files mpi %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex-mpi %{_bindir}/forcefield-mpi %{_bindir}/towhee-mpi @@ -196,6 +219,15 @@ rm -rf %{buildroot} %doc Examples/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Update to upstream 6.2.6. + +* Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 +- Update to upstream 6.2.5, which fixes the naming bug of fitcoex in 6.2.4. + +* Tue Jun 16 2009 Jussi Lehtola - 6.2.4-1 +- Update to upstream 6.2.4, which adds utilities. + * Wed May 27 2009 Jussi Lehtola - 6.2.3-5 - ExcludeArch: ppc64 which is not working due to operand out of range error. See RHBZ #502883. From mlichvar at fedoraproject.org Thu Jul 16 16:40:15 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Thu, 16 Jul 2009 16:40:15 +0000 (UTC) Subject: rpms/guile/devel guile-1.8.7-multilib.patch, NONE, 1.1 guile-1.8.7-testsuite.patch, NONE, 1.1 .cvsignore, 1.17, 1.18 guile.spec, 1.64, 1.65 sources, 1.17, 1.18 guile-1.8.4-multilib.patch, 1.1, NONE guile-1.8.4-testsuite.patch, 1.1, NONE Message-ID: <20090716164015.280DD11C0099@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/guile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4809 Modified Files: .cvsignore guile.spec sources Added Files: guile-1.8.7-multilib.patch guile-1.8.7-testsuite.patch Removed Files: guile-1.8.4-multilib.patch guile-1.8.4-testsuite.patch Log Message: - update to 1.8.7 guile-1.8.7-multilib.patch: --- NEW FILE guile-1.8.7-multilib.patch --- diff -up guile-1.8.7/libguile/Makefile.in.multilib guile-1.8.7/libguile/Makefile.in --- guile-1.8.7/libguile/Makefile.in.multilib 2009-07-05 22:25:09.000000000 +0200 +++ guile-1.8.7/libguile/Makefile.in 2009-07-16 18:07:44.000000000 +0200 @@ -1717,6 +1717,11 @@ install-nodist_modincludeHEADERS: $(nodi while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(modincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(modincludedir)" || exit $$?; \ + for f in $$files; do if [ "$$f" = "scmconfig.h" ]; then \ + grep -q "SCM_SIZEOF_LONG 4" "$(DESTDIR)$(modincludedir)/$$f" && g=32 || g=64; \ + mv "$(DESTDIR)$(modincludedir)/$$f" "$(DESTDIR)$(modincludedir)/scmconfig-$$g.h"; \ + $(INSTALL_HEADER) "$${d}scmconfig.h.mlib" "$(DESTDIR)$(modincludedir)/$$f"; \ + fi; done \ done uninstall-nodist_modincludeHEADERS: diff -up guile-1.8.7/libguile/guile-snarf.in.multilib guile-1.8.7/libguile/guile-snarf.in --- guile-1.8.7/libguile/guile-snarf.in.multilib 2009-07-04 00:19:00.000000000 +0200 +++ guile-1.8.7/libguile/guile-snarf.in 2009-07-16 18:06:48.000000000 +0200 @@ -39,7 +39,6 @@ # #endif # # If the environment variable CPP is set, use its value instead of the -# C pre-processor determined at Guile configure-time: "@CPP@". # Code: @@ -75,7 +74,7 @@ tempdir="$TMPDIR/guile-snarf.$$" (umask 077 && mkdir $tempdir) || exit 1 temp="$tempdir/tmp" -if [ x"$CPP" = x ] ; then cpp="@CPP@" ; else cpp="$CPP" ; fi +if [ x"$CPP" = x ] ; then cpp="gcc -E" ; else cpp="$CPP" ; fi trap "rm -rf $tempdir" 0 1 2 15 diff -up /dev/null guile-1.8.7/libguile/scmconfig.h.mlib --- /dev/null 2009-06-24 16:43:53.264001725 +0200 +++ guile-1.8.7/libguile/scmconfig.h.mlib 2009-07-16 18:06:48.000000000 +0200 @@ -0,0 +1,6 @@ +#include +#if __WORDSIZE == 32 +#include "libguile/scmconfig-32.h" +#else +#include "libguile/scmconfig-64.h" +#endif guile-1.8.7-testsuite.patch: --- NEW FILE guile-1.8.7-testsuite.patch --- diff -up guile-1.8.7/test-suite/tests/popen.test.testsuite guile-1.8.7/test-suite/tests/popen.test --- guile-1.8.7/test-suite/tests/popen.test.testsuite 2009-07-04 00:19:00.000000000 +0200 +++ guile-1.8.7/test-suite/tests/popen.test 2009-07-16 17:09:57.000000000 +0200 @@ -168,7 +168,7 @@ (port (with-error-to-port (cdr c2p) (lambda () (open-output-pipe - "exec 0&2; done"))))) + "exec 0&2; sleep 3"))))) (close-port (cdr c2p)) ;; write side (with-epipe (lambda () Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/guile/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 9 Dec 2008 12:12:42 -0000 1.17 +++ .cvsignore 16 Jul 2009 16:39:44 -0000 1.18 @@ -1 +1 @@ -guile-1.8.6.tar.gz +guile-1.8.7.tar.gz Index: guile.spec =================================================================== RCS file: /cvs/pkgs/rpms/guile/devel/guile.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- guile.spec 9 Jun 2009 22:23:38 -0000 1.64 +++ guile.spec 16 Jul 2009 16:39:44 -0000 1.65 @@ -1,18 +1,21 @@ +%bcond_without emacs + Summary: A GNU implementation of Scheme for application extensibility Name: guile %define mver 1.8 -Version: 1.8.6 -Release: 4%{?dist} +Version: 1.8.7 +Release: 1%{?dist} Source: ftp://ftp.gnu.org/pub/gnu/guile/guile-%{version}.tar.gz URL: http://www.gnu.org/software/guile/ -Patch1: guile-1.8.4-multilib.patch -Patch2: guile-1.8.4-testsuite.patch +Patch1: guile-1.8.7-multilib.patch +Patch2: guile-1.8.7-testsuite.patch Patch4: guile-1.8.6-deplibs.patch License: GPLv2+ and LGPLv2+ Group: Development/Languages BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libtool libtool-ltdl-devel gmp-devel readline-devel -BuildRequires: gettext-devel emacs +BuildRequires: gettext-devel +%{?with_emacs:BuildRequires: emacs} Requires(post): /sbin/install-info Requires(preun): /sbin/install-info Requires: coreutils @@ -163,8 +166,10 @@ fi %ghost %{_datadir}/guile/%{mver}/slibcat %ghost %{_datadir}/guile/%{mver}/slib %dir %{_datadir}/guile/site +%if %{with emacs} %dir %{_datadir}/emacs/site-lisp %{_datadir}/emacs/site-lisp/*.el +%endif %{_infodir}/* %{_mandir}/man1/guile.1* @@ -180,6 +185,9 @@ fi %{_includedir}/libguile.h %changelog +* Thu Jul 16 2009 Miroslav Lichvar - 5:1.8.7-1 +- update to 1.8.7 + * Tue Jun 09 2009 Dennis Gilmore - 5:1.8.6-4 - build with -O0 on sparcv9 otherwise test suite hangs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/guile/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 9 Dec 2008 12:12:42 -0000 1.17 +++ sources 16 Jul 2009 16:39:44 -0000 1.18 @@ -1 +1 @@ -9e23d3dbea0e89bab8a9acc6880150de guile-1.8.6.tar.gz +991b5b3efcbbc3f7507d05bc42f80a5e guile-1.8.7.tar.gz --- guile-1.8.4-multilib.patch DELETED --- --- guile-1.8.4-testsuite.patch DELETED --- From jussilehtola at fedoraproject.org Thu Jul 16 16:42:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:42:08 +0000 (UTC) Subject: rpms/towhee/F-10 sources,1.2,1.3 towhee.spec,1.4,1.5 Message-ID: <20090716164208.6B39011C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4975/F-10 Modified Files: sources towhee.spec Log Message: Update to 6.2.6. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 12:26:55 -0000 1.2 +++ sources 16 Jul 2009 16:41:38 -0000 1.3 @@ -1 +1 @@ -72475a7af55bd93376c51cd081be2e40 towhee-6.2.3.tar.gz +1ea66130962bd79d24b6671b285fdef4 towhee-6.2.6.tar.gz Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-10/towhee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- towhee.spec 27 May 2009 15:52:07 -0000 1.4 +++ towhee.spec 16 Jul 2009 16:41:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: towhee -Version: 6.2.3 -Release: 5%{?dist} +Version: 6.2.6 +Release: 1%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,14 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -ExcludeArch: ppc64 +#ExcludeArch: ppc64 BuildRequires: gcc-gfortran -%if 0%{?fedora} > 11 -BuildRequires: openmpi -%else BuildRequires: openmpi-devel -%endif # Check for mpi-selector or environment-modules %global selector 0 @@ -54,6 +50,9 @@ phases. This package contains binaries for serial operation and the utilities. +N.B. Due to some general names the utilities have a towhee- prefix, e.g. +analyse_movie is now towhee-analyse_movie. + %package mpi Summary: Towhee, MPI version @@ -112,17 +111,34 @@ for file in Examples/*/towhee_input; do done %build +## Build the main binaries # Use gfortran, not g77. export F77=gfortran + +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 +%ifarch ppc64 +export CFLAGS="%{optflags} -mminimal-toc" +export CXXFLAGS="%{optflags} -mminimal-toc" +export FFLAGS="%{optflags} -mminimal-toc" +%else +export FFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" +export CFLAGS="%{optflags}" +%endif + ## Build serial version mkdir nompi cd nompi ln -s ../configure . %configure make %{?_smp_mflags} + +# Utilities +cd Utils +make %{?_smp_mflags} cd .. -# FIXME: Build utilities too +cd .. ## Build parallel version # Load MPI enviroment @@ -151,8 +167,9 @@ cd .. %install rm -rf %{buildroot} # Install binaries -make -C nompi install DESTDIR=%{buildroot} -make -C mpi install DESTDIR=%{buildroot} +make -C mpi install DESTDIR=%{buildroot} INSTALL="install -p" +make -C nompi install DESTDIR=%{buildroot} INSTALL="install -p" + # Install force fields find ForceFields/ -name "Makefile*" -exec rm {} \; mkdir -p %{buildroot}%{_datadir}/%{name} @@ -163,6 +180,13 @@ find Manual/ -name "Makefile*" -exec rm find Examples/ -name "Makefile*" -exec rm {} \; find Examples/ -type f -exec chmod 644 {} \; +# Rename utilities +for bin in {analyse_{movie,histogram},car2towhee,charmm2pdb,{faux,pdb,xmd,xtl,xyz}2towhee,fitcoex,jre_to_towhee,maftodensity,rdf2pmfpair,unitcell}{,-mpi}; do + mv %{buildroot}%{_bindir}/$bin %{buildroot}%{_bindir}/towhee-$bin +done +# Remove mpi versions of the utilities +rm %{buildroot}%{_bindir}/towhee-*-mpi + %clean rm -rf %{buildroot} @@ -170,15 +194,14 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex %{_bindir}/forcefield %{_bindir}/towhee -# FIXME: add utils here +# Utils +%{_bindir}/towhee-* %files mpi %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex-mpi %{_bindir}/forcefield-mpi %{_bindir}/towhee-mpi @@ -196,6 +219,15 @@ rm -rf %{buildroot} %doc Examples/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Update to upstream 6.2.6. + +* Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 +- Update to upstream 6.2.5, which fixes the naming bug of fitcoex in 6.2.4. + +* Tue Jun 16 2009 Jussi Lehtola - 6.2.4-1 +- Update to upstream 6.2.4, which adds utilities. + * Wed May 27 2009 Jussi Lehtola - 6.2.3-5 - ExcludeArch: ppc64 which is not working due to operand out of range error. See RHBZ #502883. From jussilehtola at fedoraproject.org Thu Jul 16 16:42:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:42:08 +0000 (UTC) Subject: rpms/towhee/EL-5 sources,1.2,1.3 towhee.spec,1.4,1.5 Message-ID: <20090716164208.5633F11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4975/EL-5 Modified Files: sources towhee.spec Log Message: Update to 6.2.6. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/towhee/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 12:26:54 -0000 1.2 +++ sources 16 Jul 2009 16:41:38 -0000 1.3 @@ -1 +1 @@ -72475a7af55bd93376c51cd081be2e40 towhee-6.2.3.tar.gz +1ea66130962bd79d24b6671b285fdef4 towhee-6.2.6.tar.gz Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/EL-5/towhee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- towhee.spec 27 May 2009 15:52:06 -0000 1.4 +++ towhee.spec 16 Jul 2009 16:41:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: towhee -Version: 6.2.3 -Release: 5%{?dist} +Version: 6.2.6 +Release: 1%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,14 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -ExcludeArch: ppc64 +#ExcludeArch: ppc64 BuildRequires: gcc-gfortran -%if 0%{?fedora} > 11 -BuildRequires: openmpi -%else BuildRequires: openmpi-devel -%endif # Check for mpi-selector or environment-modules %global selector 0 @@ -54,6 +50,9 @@ phases. This package contains binaries for serial operation and the utilities. +N.B. Due to some general names the utilities have a towhee- prefix, e.g. +analyse_movie is now towhee-analyse_movie. + %package mpi Summary: Towhee, MPI version @@ -112,17 +111,34 @@ for file in Examples/*/towhee_input; do done %build +## Build the main binaries # Use gfortran, not g77. export F77=gfortran + +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 +%ifarch ppc64 +export CFLAGS="%{optflags} -mminimal-toc" +export CXXFLAGS="%{optflags} -mminimal-toc" +export FFLAGS="%{optflags} -mminimal-toc" +%else +export FFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" +export CFLAGS="%{optflags}" +%endif + ## Build serial version mkdir nompi cd nompi ln -s ../configure . %configure make %{?_smp_mflags} + +# Utilities +cd Utils +make %{?_smp_mflags} cd .. -# FIXME: Build utilities too +cd .. ## Build parallel version # Load MPI enviroment @@ -151,8 +167,9 @@ cd .. %install rm -rf %{buildroot} # Install binaries -make -C nompi install DESTDIR=%{buildroot} -make -C mpi install DESTDIR=%{buildroot} +make -C mpi install DESTDIR=%{buildroot} INSTALL="install -p" +make -C nompi install DESTDIR=%{buildroot} INSTALL="install -p" + # Install force fields find ForceFields/ -name "Makefile*" -exec rm {} \; mkdir -p %{buildroot}%{_datadir}/%{name} @@ -163,6 +180,13 @@ find Manual/ -name "Makefile*" -exec rm find Examples/ -name "Makefile*" -exec rm {} \; find Examples/ -type f -exec chmod 644 {} \; +# Rename utilities +for bin in {analyse_{movie,histogram},car2towhee,charmm2pdb,{faux,pdb,xmd,xtl,xyz}2towhee,fitcoex,jre_to_towhee,maftodensity,rdf2pmfpair,unitcell}{,-mpi}; do + mv %{buildroot}%{_bindir}/$bin %{buildroot}%{_bindir}/towhee-$bin +done +# Remove mpi versions of the utilities +rm %{buildroot}%{_bindir}/towhee-*-mpi + %clean rm -rf %{buildroot} @@ -170,15 +194,14 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex %{_bindir}/forcefield %{_bindir}/towhee -# FIXME: add utils here +# Utils +%{_bindir}/towhee-* %files mpi %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex-mpi %{_bindir}/forcefield-mpi %{_bindir}/towhee-mpi @@ -196,6 +219,15 @@ rm -rf %{buildroot} %doc Examples/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Update to upstream 6.2.6. + +* Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 +- Update to upstream 6.2.5, which fixes the naming bug of fitcoex in 6.2.4. + +* Tue Jun 16 2009 Jussi Lehtola - 6.2.4-1 +- Update to upstream 6.2.4, which adds utilities. + * Wed May 27 2009 Jussi Lehtola - 6.2.3-5 - ExcludeArch: ppc64 which is not working due to operand out of range error. See RHBZ #502883. From jussilehtola at fedoraproject.org Thu Jul 16 16:42:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 16:42:08 +0000 (UTC) Subject: rpms/towhee/F-11 sources,1.2,1.3 towhee.spec,1.4,1.5 Message-ID: <20090716164208.9AD8D11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4975/F-11 Modified Files: sources towhee.spec Log Message: Update to 6.2.6. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 May 2009 12:26:55 -0000 1.2 +++ sources 16 Jul 2009 16:41:38 -0000 1.3 @@ -1 +1 @@ -72475a7af55bd93376c51cd081be2e40 towhee-6.2.3.tar.gz +1ea66130962bd79d24b6671b285fdef4 towhee-6.2.6.tar.gz Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-11/towhee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- towhee.spec 27 May 2009 15:52:07 -0000 1.4 +++ towhee.spec 16 Jul 2009 16:41:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: towhee -Version: 6.2.3 -Release: 5%{?dist} +Version: 6.2.6 +Release: 1%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,14 +9,10 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -ExcludeArch: ppc64 +#ExcludeArch: ppc64 BuildRequires: gcc-gfortran -%if 0%{?fedora} > 11 -BuildRequires: openmpi -%else BuildRequires: openmpi-devel -%endif # Check for mpi-selector or environment-modules %global selector 0 @@ -54,6 +50,9 @@ phases. This package contains binaries for serial operation and the utilities. +N.B. Due to some general names the utilities have a towhee- prefix, e.g. +analyse_movie is now towhee-analyse_movie. + %package mpi Summary: Towhee, MPI version @@ -112,17 +111,34 @@ for file in Examples/*/towhee_input; do done %build +## Build the main binaries # Use gfortran, not g77. export F77=gfortran + +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 +%ifarch ppc64 +export CFLAGS="%{optflags} -mminimal-toc" +export CXXFLAGS="%{optflags} -mminimal-toc" +export FFLAGS="%{optflags} -mminimal-toc" +%else +export FFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" +export CFLAGS="%{optflags}" +%endif + ## Build serial version mkdir nompi cd nompi ln -s ../configure . %configure make %{?_smp_mflags} + +# Utilities +cd Utils +make %{?_smp_mflags} cd .. -# FIXME: Build utilities too +cd .. ## Build parallel version # Load MPI enviroment @@ -151,8 +167,9 @@ cd .. %install rm -rf %{buildroot} # Install binaries -make -C nompi install DESTDIR=%{buildroot} -make -C mpi install DESTDIR=%{buildroot} +make -C mpi install DESTDIR=%{buildroot} INSTALL="install -p" +make -C nompi install DESTDIR=%{buildroot} INSTALL="install -p" + # Install force fields find ForceFields/ -name "Makefile*" -exec rm {} \; mkdir -p %{buildroot}%{_datadir}/%{name} @@ -163,6 +180,13 @@ find Manual/ -name "Makefile*" -exec rm find Examples/ -name "Makefile*" -exec rm {} \; find Examples/ -type f -exec chmod 644 {} \; +# Rename utilities +for bin in {analyse_{movie,histogram},car2towhee,charmm2pdb,{faux,pdb,xmd,xtl,xyz}2towhee,fitcoex,jre_to_towhee,maftodensity,rdf2pmfpair,unitcell}{,-mpi}; do + mv %{buildroot}%{_bindir}/$bin %{buildroot}%{_bindir}/towhee-$bin +done +# Remove mpi versions of the utilities +rm %{buildroot}%{_bindir}/towhee-*-mpi + %clean rm -rf %{buildroot} @@ -170,15 +194,14 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex %{_bindir}/forcefield %{_bindir}/towhee -# FIXME: add utils here +# Utils +%{_bindir}/towhee-* %files mpi %defattr(-,root,root,-) %doc license.gpl -%{_bindir}/fitcoex-mpi %{_bindir}/forcefield-mpi %{_bindir}/towhee-mpi @@ -196,6 +219,15 @@ rm -rf %{buildroot} %doc Examples/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Update to upstream 6.2.6. + +* Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 +- Update to upstream 6.2.5, which fixes the naming bug of fitcoex in 6.2.4. + +* Tue Jun 16 2009 Jussi Lehtola - 6.2.4-1 +- Update to upstream 6.2.4, which adds utilities. + * Wed May 27 2009 Jussi Lehtola - 6.2.3-5 - ExcludeArch: ppc64 which is not working due to operand out of range error. See RHBZ #502883. From pkgdb at fedoraproject.org Thu Jul 16 16:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:46:01 +0000 Subject: [pkgdb] jakarta-commons-jxpath had acl change status Message-ID: <20090716164601.B790B10F89F@bastion2.fedora.phx.redhat.com> dbhole has set the watchbugzilla acl on jakarta-commons-jxpath (Fedora devel) to Approved for akahl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From pkgdb at fedoraproject.org Thu Jul 16 16:46:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:46:02 +0000 Subject: [pkgdb] jakarta-commons-jxpath had acl change status Message-ID: <20090716164603.14BBA10F8A8@bastion2.fedora.phx.redhat.com> dbhole has set the watchcommits acl on jakarta-commons-jxpath (Fedora devel) to Approved for akahl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From pkgdb at fedoraproject.org Thu Jul 16 16:46:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 16:46:04 +0000 Subject: [pkgdb] jakarta-commons-jxpath had acl change status Message-ID: <20090716164604.9BABA10F8AC@bastion2.fedora.phx.redhat.com> dbhole has set the commit acl on jakarta-commons-jxpath (Fedora devel) to Approved for akahl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jakarta-commons-jxpath From rdieter at fedoraproject.org Thu Jul 16 16:51:23 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 16:51:23 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin.spec,1.140,1.141 Message-ID: <20090716165123.0D03911C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5950 Modified Files: kdeadmin.spec Log Message: omit system-config-printer-kde.desktop from main pkg Index: kdeadmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- kdeadmin.spec 9 Jul 2009 21:00:09 -0000 1.140 +++ kdeadmin.spec 16 Jul 2009 16:50:51 -0000 1.141 @@ -1,10 +1,10 @@ %define system_config_printer_kde 1 Name: kdeadmin +Summary: K Desktop Environment - Administrative tools Epoch: 7 Version: 4.2.96 Release: 1%{?dist} -Summary: K Desktop Environment - Administrative tools Group: User Interface/Desktops License: GPLv2 @@ -120,7 +120,8 @@ fi %{_kde4_datadir}/applications/kde4/kuser.desktop %{_kde4_datadir}/applications/kde4/ksystemlog.desktop %{_kde4_datadir}/config.kcfg/kuser.kcfg -%{_kde4_datadir}/kde4/services/* +%{_kde4_datadir}/kde4/services/kcm_cron.desktop +%{_kde4_datadir}/kde4/services/kcm_knetworkconfmodule.desktop %{_kde4_docdir}/HTML/en/kcontrol/ %{_kde4_docdir}/HTML/en/kcron/ %{_kde4_docdir}/HTML/en/ksystemlog/ From berrange at fedoraproject.org Thu Jul 16 17:04:31 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Thu, 16 Jul 2009 17:04:31 +0000 (UTC) Subject: rpms/qemu/devel qemu.spec,1.111,1.112 Message-ID: <20090716170431.695AA11C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7057 Modified Files: qemu.spec Log Message: Add a qemu user account & group. Force disable xen support Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- qemu.spec 16 Jul 2009 11:48:33 -0000 1.111 +++ qemu.spec 16 Jul 2009 17:04:01 -0000 1.112 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 11.%{kvmvertag}%{?dist} +Release: 12.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -240,7 +240,8 @@ fi --audio-drv-list=pa,sdl,alsa,oss \ --disable-strip \ --extra-ldflags=$extraldflags \ - --extra-cflags="$RPM_OPT_FLAGS" + --extra-cflags="$RPM_OPT_FLAGS" \ + --disable-xen echo "config-host.mak contents:" echo "===" @@ -272,7 +273,8 @@ cd ../../ --disable-kvm \ --disable-strip \ --extra-ldflags=$extraldflags \ - --extra-cflags="$RPM_OPT_FLAGS" + --extra-cflags="$RPM_OPT_FLAGS" \ + --disable-xen echo "config-host.mak contents:" echo "===" @@ -342,8 +344,6 @@ rm -rf $RPM_BUILD_ROOT %post system-x86 %ifarch %{ix86} x86_64 -# Create kvm group in case this is an upgrade with pre-existing /etc/group -/usr/sbin/groupadd -r -g 36 kvm 2> /dev/null || : # load kvm modules now, so we can make sure no reboot is needed. # If there's already a kvm module installed, we don't mess with it sh %{_sysconfdir}/sysconfig/modules/kvm.modules @@ -363,6 +363,13 @@ if [ $1 -ge 1 ]; then /sbin/service qemu condrestart &>/dev/null || : fi +%post common +getent group kvm >/dev/null || groupadd -g 36 -r kvm +getent group qemu >/dev/null || groupadd -g 107 -r qemu +getent passwd qemu >/dev/null || \ + useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \ + -c "qemu user" qemu + %files %defattr(-,root,root) @@ -470,6 +477,10 @@ fi %{_mandir}/man1/qemu-img.1* %changelog +* Thu Jul 16 2009 Daniel P. Berrange - 2:0.10.50-12.kvm88 +- Add 'qemu' user and group accounts +- Force disable xen until it can be made to build + * Thu Jul 16 2009 Mark McLoughlin - 2:0.10.50-11.kvm88 - Update to kvm-88, see http://www.linux-kvm.org/page/ChangeLog - Package mutiboot.bin From jussilehtola at fedoraproject.org Thu Jul 16 17:11:30 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 17:11:30 +0000 (UTC) Subject: rpms/towhee/devel towhee.spec,1.5,1.6 Message-ID: <20090716171130.75FC511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7785/devel Modified Files: towhee.spec Log Message: Restore ExcludeArch. Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/towhee.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- towhee.spec 16 Jul 2009 16:38:59 -0000 1.5 +++ towhee.spec 16 Jul 2009 17:11:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: towhee Version: 6.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,7 +9,11 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -#ExcludeArch: ppc64 + +# Bug 502883 +# Error: operand out of range (0x0000000000008008 is not between 0xffffffffffff8000 and 0x0000000000007fff) +# -mminimal-toc doesn't help +ExcludeArch: ppc64 BuildRequires: gcc-gfortran BuildRequires: openmpi-devel @@ -115,17 +119,6 @@ done # Use gfortran, not g77. export F77=gfortran -# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 -%ifarch ppc64 -export CFLAGS="%{optflags} -mminimal-toc" -export CXXFLAGS="%{optflags} -mminimal-toc" -export FFLAGS="%{optflags} -mminimal-toc" -%else -export FFLAGS="%{optflags}" -export CXXFLAGS="%{optflags}" -export CFLAGS="%{optflags}" -%endif - ## Build serial version mkdir nompi cd nompi @@ -220,6 +213,9 @@ rm -rf %{buildroot} %changelog * Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Restore ExcludeArch: ppc64. + +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 - Update to upstream 6.2.6. * Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 From jussilehtola at fedoraproject.org Thu Jul 16 17:12:00 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 17:12:00 +0000 (UTC) Subject: rpms/towhee/F-11 towhee.spec,1.5,1.6 Message-ID: <20090716171200.3E6D711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7785/F-11 Modified Files: towhee.spec Log Message: Restore ExcludeArch. Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-11/towhee.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- towhee.spec 16 Jul 2009 16:41:38 -0000 1.5 +++ towhee.spec 16 Jul 2009 17:11:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: towhee Version: 6.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,7 +9,11 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -#ExcludeArch: ppc64 + +# Bug 502883 +# Error: operand out of range (0x0000000000008008 is not between 0xffffffffffff8000 and 0x0000000000007fff) +# -mminimal-toc doesn't help +ExcludeArch: ppc64 BuildRequires: gcc-gfortran BuildRequires: openmpi-devel @@ -115,17 +119,6 @@ done # Use gfortran, not g77. export F77=gfortran -# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 -%ifarch ppc64 -export CFLAGS="%{optflags} -mminimal-toc" -export CXXFLAGS="%{optflags} -mminimal-toc" -export FFLAGS="%{optflags} -mminimal-toc" -%else -export FFLAGS="%{optflags}" -export CXXFLAGS="%{optflags}" -export CFLAGS="%{optflags}" -%endif - ## Build serial version mkdir nompi cd nompi @@ -220,6 +213,9 @@ rm -rf %{buildroot} %changelog * Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Restore ExcludeArch: ppc64. + +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 - Update to upstream 6.2.6. * Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 From pkgdb at fedoraproject.org Thu Jul 16 17:45:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:17 +0000 Subject: [pkgdb] maildrop: nb has requested watchcommits Message-ID: <20090716174517.5752F10F89C@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on maildrop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Thu Jul 16 17:45:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:22 +0000 Subject: [pkgdb] maildrop: nb has requested watchbugzilla Message-ID: <20090716174522.4990110F89F@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on maildrop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Thu Jul 16 17:45:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:27 +0000 Subject: [pkgdb] maildrop: nb has requested watchbugzilla Message-ID: <20090716174527.3056F10F8A5@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on maildrop (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Thu Jul 16 17:45:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:28 +0000 Subject: [pkgdb] maildrop: nb has requested watchcommits Message-ID: <20090716174528.E3E6510F8A9@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on maildrop (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Thu Jul 16 17:45:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:35 +0000 Subject: [pkgdb] maildrop: nb has requested watchbugzilla Message-ID: <20090716174535.4D5D710F890@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on maildrop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Thu Jul 16 17:45:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 17:45:37 +0000 Subject: [pkgdb] maildrop: nb has requested watchcommits Message-ID: <20090716174537.6C8E010F8AB@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on maildrop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From rdieter at fedoraproject.org Thu Jul 16 17:48:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 17:48:42 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.2.96-kdebug#198632.patch, NONE, 1.1 kdebindings.spec, 1.213, 1.214 Message-ID: <20090716174842.E6BF511C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9752 Modified Files: kdebindings.spec Added Files: kdebindings-4.2.96-kdebug#198632.patch Log Message: * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - fix pykdeuic4-related install bits (kdebug#198162) kdebindings-4.2.96-kdebug#198632.patch: --- NEW FILE kdebindings-4.2.96-kdebug#198632.patch --- diff -up kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt.kdebug#198632 kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt --- kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt.kdebug#198632 2009-03-27 09:46:05.000000000 -0500 +++ kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt 2009-07-16 12:39:38.457647506 -0500 @@ -1,3 +1,3 @@ -PYTHON_INSTALL(kde4.py ${DATA_INSTALL_DIR}/${PROJECT_NAME}) -PYTHON_INSTALL(pykdeuic4.py ${DATA_INSTALL_DIR}/${PROJECT_NAME}) +PYTHON_INSTALL(kde4.py ${PYTHON_SITE_PACKAGES_DIR}/PyQt4/uic/widget-plugins/) +PYTHON_INSTALL(pykdeuic4.py ${BIN_INSTALL_DIR}/pykdeuic4) Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.213 retrieving revision 1.214 diff -u -p -r1.213 -r1.214 --- kdebindings.spec 10 Jul 2009 14:47:23 -0000 1.213 +++ kdebindings.spec 16 Jul 2009 17:48:12 -0000 1.214 @@ -33,7 +33,7 @@ Name: kdebindings Version: 4.2.96 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE bindings to non-C++ languages Group: User Interface/Desktops @@ -48,15 +48,17 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa # make the Python plugin factory work without python-devel Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch ## upstream patches +# http://bugs.kde.org/198632#c5 +Patch50: kdebindings-4.2.96-kdebug#198632.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: akonadi-devel >= 1.1.0 -BuildRequires: kdebase-workspace-devel >= %{version} +#BuildRequires: kdebase-workspace-devel >= %{version} # okular bindings -BuildRequires: kdegraphics-devel >= %{version} -BuildRequires: kdelibs4-devel >= %{version} -BuildRequires: kdepimlibs-devel >= %{version} +#BuildRequires: kdegraphics-devel >= %{version} +#BuildRequires: kdelibs4-devel >= %{version} +#BuildRequires: kdepimlibs-devel >= %{version} BuildRequires: polkit-qt-devel BuildRequires: python-devel BuildRequires: PyQt4-devel >= %{pyqt4_version} @@ -253,6 +255,7 @@ Falcon plugin for the Kross archtecture %patch0 %patch1 -p0 -b .old-PyQt4 %patch2 -p1 -b .fix-kpythonpluginfactory +%patch50 -p1 -b .kdebug#198632 %build @@ -330,6 +333,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc COPYING %{python_sitearch}/PyKDE4/ +%{python_sitearch}/PyQt4/uic/widget-plugins/kde4.py* %dir %{_kde4_appsdir}/pykde4/ %{_kde4_appsdir}/pykde4/*.py* %{_kde4_libdir}/kde4/kpythonpluginfactory.so @@ -343,6 +347,7 @@ rm -rf %{buildroot} %files -n PyKDE4-devel %defattr(-,root,root,-) +%{_kde4_bindir}/pykdeuic4 %{_kde4_appsdir}/pykde4/examples/ %{_kde4_datadir}/sip/PyKDE4/ @@ -487,6 +492,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- fix pykdeuic4-related install bits (kdebug#198162) + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From rdieter at fedoraproject.org Thu Jul 16 17:51:53 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 17:51:53 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.214,1.215 Message-ID: <20090716175153.134C311C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9953 Modified Files: kdebindings.spec Log Message: restore BR's Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.214 retrieving revision 1.215 diff -u -p -r1.214 -r1.215 --- kdebindings.spec 16 Jul 2009 17:48:12 -0000 1.214 +++ kdebindings.spec 16 Jul 2009 17:51:22 -0000 1.215 @@ -54,11 +54,11 @@ Patch50: kdebindings-4.2.96-kdebug#1986 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: akonadi-devel >= 1.1.0 -#BuildRequires: kdebase-workspace-devel >= %{version} +BuildRequires: kdebase-workspace-devel >= %{version} # okular bindings -#BuildRequires: kdegraphics-devel >= %{version} -#BuildRequires: kdelibs4-devel >= %{version} -#BuildRequires: kdepimlibs-devel >= %{version} +BuildRequires: kdegraphics-devel >= %{version} +BuildRequires: kdelibs4-devel >= %{version} +BuildRequires: kdepimlibs-devel >= %{version} BuildRequires: polkit-qt-devel BuildRequires: python-devel BuildRequires: PyQt4-devel >= %{pyqt4_version} From pkgdb at fedoraproject.org Thu Jul 16 18:02:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:02:44 +0000 Subject: [pkgdb] perl-libintl had acl change status Message-ID: <20090716180244.DCCA110F8AA@bastion2.fedora.phx.redhat.com> thias has set the watchbugzilla acl on perl-libintl (Fedora EPEL 5) to Approved for rjones To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From pkgdb at fedoraproject.org Thu Jul 16 18:02:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:02:48 +0000 Subject: [pkgdb] perl-libintl had acl change status Message-ID: <20090716180248.B5AB610F8AD@bastion2.fedora.phx.redhat.com> thias has set the watchcommits acl on perl-libintl (Fedora EPEL 5) to Approved for rjones To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From pkgdb at fedoraproject.org Thu Jul 16 18:02:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:02:52 +0000 Subject: [pkgdb] perl-libintl had acl change status Message-ID: <20090716180252.9F79F10F86B@bastion2.fedora.phx.redhat.com> thias has set the commit acl on perl-libintl (Fedora EPEL 5) to Approved for rjones To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-libintl From mclasen at fedoraproject.org Thu Jul 16 18:04:36 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 18:04:36 +0000 (UTC) Subject: rpms/gedit/devel button-images.patch, NONE, 1.1 gedit.spec, 1.196, 1.197 Message-ID: <20090716180436.37CEF11C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10690 Modified Files: gedit.spec Added Files: button-images.patch Log Message: Make buttons behave button-images.patch: --- NEW FILE button-images.patch --- diff -up gedit-2.27.2/plugins/sort/sort.ui.button-images gedit-2.27.2/plugins/sort/sort.ui --- gedit-2.27.2/plugins/sort/sort.ui.button-images 2009-07-16 13:54:14.208338015 -0400 +++ gedit-2.27.2/plugins/sort/sort.ui 2009-07-16 13:56:25.653333726 -0400 @@ -9,6 +9,10 @@ 0 1
+ + gtk-sort-ascending + 4 + Sort GTK_WINDOW_TOPLEVEL @@ -50,66 +54,9 @@ True GTK_RELIEF_NORMAL True - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - True - False - 2 - - - True - gtk-sort-ascending - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - _Sort - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - + sort_image + _Sort + True diff -up gedit-2.27.2/plugins/spell/gedit-spell-checker-dialog.c.button-images gedit-2.27.2/plugins/spell/gedit-spell-checker-dialog.c --- gedit-2.27.2/plugins/spell/gedit-spell-checker-dialog.c.button-images 2009-07-16 13:51:51.765583774 -0400 +++ gedit-2.27.2/plugins/spell/gedit-spell-checker-dialog.c 2009-07-16 13:48:42.535583423 -0400 @@ -223,12 +223,18 @@ create_dialog (GeditSpellCheckerDialog * GtkTreeViewColumn *column; GtkCellRenderer *cell; GtkTreeSelection *selection; - gboolean ret; - gchar *ui_file; gchar *root_objects[] = { "content", + "check_word_image", + "add_word_image", + "ignore_image", + "change_image", + "ignore_all_image", + "change_all_image", NULL }; + gboolean ret; + gchar *ui_file; g_return_if_fail (dlg != NULL); diff -up gedit-2.27.2/plugins/spell/spell-checker.ui.button-images gedit-2.27.2/plugins/spell/spell-checker.ui --- gedit-2.27.2/plugins/spell/spell-checker.ui.button-images 2009-07-16 13:08:59.501579700 -0400 +++ gedit-2.27.2/plugins/spell/spell-checker.ui 2009-07-16 13:48:08.324355869 -0400 @@ -1,6 +1,30 @@ + + gtk-spell-check + 4 + + + gtk-add + 4 + + + gtk-go-down + 4 + + + gtk-convert + 4 + + + gtk-goto-bottom + 4 + + + gtk-convert + 4 + True Check spelling @@ -121,58 +145,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-spell-check - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Check _Word - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + check_word_image + Check _Word + True 0 @@ -272,58 +247,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-go-down - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - _Ignore - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + ignore_image + _Ignore + True 0 @@ -338,58 +264,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-convert - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Cha_nge - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + change_image + Cha_nge + True 0 @@ -404,58 +281,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-goto-bottom - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Ignore _All - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + ignore_all_image + Ignore _All + True 1 @@ -470,58 +298,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-convert - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Change A_ll - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + change_all_image + Change A_ll + True 1 @@ -573,58 +352,9 @@ True True GTK_RELIEF_NORMAL - - - True - 0.5 - 0.5 - 0 - 0 - - - True - False - 2 - - - True - gtk-add - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Add w_ord - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - + add_word_image + Add w_ord + True 0 Index: gedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/gedit.spec,v retrieving revision 1.196 retrieving revision 1.197 diff -u -p -r1.196 -r1.197 --- gedit.spec 30 Jun 2009 17:34:46 -0000 1.196 +++ gedit.spec 16 Jul 2009 18:04:05 -0000 1.197 @@ -18,7 +18,7 @@ Summary: Text editor for the GNOME desktop Name: gedit Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Applications/Editors @@ -48,6 +48,9 @@ Patch2: gedit-2.25.5-fix-python-path.pat # http://bugzilla.gnome.org/show_bug.cgi?id=587053 Patch3: print-to-file.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=588806 +Patch4: button-images.patch + BuildRequires: gnome-common BuildRequires: glib2-devel >= %{glib2_version} BuildRequires: pango-devel >= %{pango_version} @@ -114,6 +117,7 @@ Install gedit-devel if you want to write %patch2 -p1 -b .fix-python-path %patch3 -p1 -b .print-to-file +%patch4 -p1 -b .button-images %build autoreconf -f -i @@ -229,6 +233,9 @@ fi %changelog +* Thu Jul 16 2009 Matthias Clasen - 1:2.27.2-2 +- Make some stubborn buttons behave + * Tue Jun 30 2009 Matthias Clasen - 1:2.27.2-1 - Update to 2.27.2 From nim at fedoraproject.org Thu Jul 16 18:18:09 2009 From: nim at fedoraproject.org (nim) Date: Thu, 16 Jul 2009 18:18:09 +0000 (UTC) Subject: rpms/adf-accanthis-fonts/F-11 adf-accanthis-fonts-fontconfig-2.conf, NONE, 1.1 adf-accanthis-fonts-fontconfig-3.conf, NONE, 1.1 adf-accanthis-fonts-fontconfig.conf, NONE, 1.1 adf-accanthis-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716181809.3BD4511C0099@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/adf-accanthis-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11964/F-11 Modified Files: .cvsignore sources Added Files: adf-accanthis-fonts-fontconfig-2.conf adf-accanthis-fonts-fontconfig-3.conf adf-accanthis-fonts-fontconfig.conf adf-accanthis-fonts.spec import.log Log Message: initial import --- NEW FILE adf-accanthis-fonts-fontconfig-2.conf --- serif Accanthis ADF Std No2 Accanthis ADF Std No2 serif Accanthis ADF Std Accanthis ADF Std No2 Accanthis ADF Std No3 Accanthis ADF Std No2 --- NEW FILE adf-accanthis-fonts-fontconfig-3.conf --- serif Accanthis ADF Std No3 Accanthis ADF Std No3 serif Accanthis ADF Std Accanthis ADF Std No3 Accanthis ADF Std No2 Accanthis ADF Std No3 --- NEW FILE adf-accanthis-fonts-fontconfig.conf --- serif Accanthis ADF Std Accanthis ADF Std serif Accanthis ADF Std No2 Accanthis ADF Std Accanthis ADF Std No3 Accanthis ADF Std --- NEW FILE adf-accanthis-fonts.spec --- %global fontname adf-accanthis %global fontconf 60-%{fontname} %global archivename Accanthis-Std %global common_desc \ A latin typeface published by Hirwen Harendal's Arkandis Digital Foundry, \ Accanthis was inspired from the ???Cloister Oldstyle??? typeface found in the \ ???American Specimen Book of Typefaces Suplement???. Its medium contrast is \ sufficient to be reader-frendly and deliver a elegant and refined experience.\ \ Its creator considers it as a ???modernized??? garaldic typeface. \ \ Accanthis is well suited to book typesetting and refined presentations. Name: %{fontname}-fonts # Use the main PS version (as documented in NOTICE) Version: 1.6 Release: 2%{?dist} Summary: A ???modernized??? garaldic serif typeface, ???Galliard??? alternative Group: User Interface/X License: GPLv2+ with exceptions URL: http://arkandis.tuxfamily.org/adffonts.html Source0: http://arkandis.tuxfamily.org/fonts/%{archivename}.zip Source1: http://arkandis.tuxfamily.org/docs/Accanthis-Cat.pdf Source11: %{name}-fontconfig.conf Source12: %{name}-fontconfig-2.conf Source13: %{name}-fontconfig-3.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel %description %common_desc It is intended to serve as alternative to the ???Galliard??? typeface. %_font_pkg -f %{fontconf}.conf AccanthisADFStd-*.otf %package common Summary: Common files of %{name} Requires: fontpackages-filesystem %description common %common_desc This package consists of files used by other %{name} packages. %package -n adf-accanthis-2-fonts Summary: A ???modernized??? garaldic serif, ???Horley old style??? alternative Requires: %{name}-common = %{version}-%{release} %description -n adf-accanthis-2-fonts %common_desc This variant is closer to the ???Horley old style??? typeface than the original \ version. %_font_pkg -n 2 -f %{fontconf}-2.conf AccanthisADFStdNo2-*.otf %package -n adf-accanthis-3-fonts Summary: A ???modernized??? garaldic serif typeface Requires: %{name}-common = %{version}-%{release} %description -n adf-accanthis-3-fonts %common_desc This variant remixes a slightly modified Accanthis n??2 with elements from the original Italic and changes to k, p, z and numbers. %_font_pkg -n 3 -f %{fontconf}-3.conf AccanthisADFStdNo3-*.otf %prep %setup -q -n %{archivename} install -m 0644 -p %{SOURCE1} . for txt in NOTICE */COPYING ; do fold -s $txt > $txt.new sed -i 's/\r//' $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p OTF/*.otf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE11} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}.conf install -m 0644 -p %{SOURCE12} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}-2.conf install -m 0644 -p %{SOURCE13} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}-3.conf for fconf in %{fontconf}.conf \ %{fontconf}-2.conf \ %{fontconf}-3.conf ; do ln -s %{_fontconfig_templatedir}/$fconf \ %{buildroot}%{_fontconfig_confdir}/$fconf done %clean rm -fr %{buildroot} %files common %defattr(0644,root,root,0755) %doc NOTICE OTF/COPYING *.pdf %changelog * Mon Jul 13 2009 - 1.6-2 ??? Use a macro construct friendlier to pre-F12 releases * Sun Jul 12 2009 - 1.6-1 ??? Initial packaging --- NEW FILE import.log --- adf-accanthis-fonts-1_6-2_fc12:F-11:adf-accanthis-fonts-1.6-2.fc12.src.rpm:1247768272 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/adf-accanthis-fonts/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:36:37 -0000 1.1 +++ .cvsignore 16 Jul 2009 18:18:08 -0000 1.2 @@ -0,0 +1,2 @@ +Accanthis-Cat.pdf +Accanthis-Std.zip Index: sources =================================================================== RCS file: /cvs/extras/rpms/adf-accanthis-fonts/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:36:37 -0000 1.1 +++ sources 16 Jul 2009 18:18:08 -0000 1.2 @@ -0,0 +1,2 @@ +67d95f1e596cccae209c40b67062757d Accanthis-Cat.pdf +8db8f207b4c8dc248d84f7f8af017e51 Accanthis-Std.zip From nim at fedoraproject.org Thu Jul 16 18:18:36 2009 From: nim at fedoraproject.org (nim) Date: Thu, 16 Jul 2009 18:18:36 +0000 (UTC) Subject: rpms/adf-accanthis-fonts/devel adf-accanthis-fonts-fontconfig-2.conf, NONE, 1.1 adf-accanthis-fonts-fontconfig-3.conf, NONE, 1.1 adf-accanthis-fonts-fontconfig.conf, NONE, 1.1 adf-accanthis-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716181836.0D32A11C0099@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/adf-accanthis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11947/devel Modified Files: .cvsignore sources Added Files: adf-accanthis-fonts-fontconfig-2.conf adf-accanthis-fonts-fontconfig-3.conf adf-accanthis-fonts-fontconfig.conf adf-accanthis-fonts.spec import.log Log Message: initial import --- NEW FILE adf-accanthis-fonts-fontconfig-2.conf --- serif Accanthis ADF Std No2 Accanthis ADF Std No2 serif Accanthis ADF Std Accanthis ADF Std No2 Accanthis ADF Std No3 Accanthis ADF Std No2 --- NEW FILE adf-accanthis-fonts-fontconfig-3.conf --- serif Accanthis ADF Std No3 Accanthis ADF Std No3 serif Accanthis ADF Std Accanthis ADF Std No3 Accanthis ADF Std No2 Accanthis ADF Std No3 --- NEW FILE adf-accanthis-fonts-fontconfig.conf --- serif Accanthis ADF Std Accanthis ADF Std serif Accanthis ADF Std No2 Accanthis ADF Std Accanthis ADF Std No3 Accanthis ADF Std --- NEW FILE adf-accanthis-fonts.spec --- %global fontname adf-accanthis %global fontconf 60-%{fontname} %global archivename Accanthis-Std %global common_desc \ A latin typeface published by Hirwen Harendal's Arkandis Digital Foundry, \ Accanthis was inspired from the ???Cloister Oldstyle??? typeface found in the \ ???American Specimen Book of Typefaces Suplement???. Its medium contrast is \ sufficient to be reader-frendly and deliver a elegant and refined experience.\ \ Its creator considers it as a ???modernized??? garaldic typeface. \ \ Accanthis is well suited to book typesetting and refined presentations. Name: %{fontname}-fonts # Use the main PS version (as documented in NOTICE) Version: 1.6 Release: 2%{?dist} Summary: A ???modernized??? garaldic serif typeface, ???Galliard??? alternative Group: User Interface/X License: GPLv2+ with exceptions URL: http://arkandis.tuxfamily.org/adffonts.html Source0: http://arkandis.tuxfamily.org/fonts/%{archivename}.zip Source1: http://arkandis.tuxfamily.org/docs/Accanthis-Cat.pdf Source11: %{name}-fontconfig.conf Source12: %{name}-fontconfig-2.conf Source13: %{name}-fontconfig-3.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel %description %common_desc It is intended to serve as alternative to the ???Galliard??? typeface. %_font_pkg -f %{fontconf}.conf AccanthisADFStd-*.otf %package common Summary: Common files of %{name} Requires: fontpackages-filesystem %description common %common_desc This package consists of files used by other %{name} packages. %package -n adf-accanthis-2-fonts Summary: A ???modernized??? garaldic serif, ???Horley old style??? alternative Requires: %{name}-common = %{version}-%{release} %description -n adf-accanthis-2-fonts %common_desc This variant is closer to the ???Horley old style??? typeface than the original \ version. %_font_pkg -n 2 -f %{fontconf}-2.conf AccanthisADFStdNo2-*.otf %package -n adf-accanthis-3-fonts Summary: A ???modernized??? garaldic serif typeface Requires: %{name}-common = %{version}-%{release} %description -n adf-accanthis-3-fonts %common_desc This variant remixes a slightly modified Accanthis n??2 with elements from the original Italic and changes to k, p, z and numbers. %_font_pkg -n 3 -f %{fontconf}-3.conf AccanthisADFStdNo3-*.otf %prep %setup -q -n %{archivename} install -m 0644 -p %{SOURCE1} . for txt in NOTICE */COPYING ; do fold -s $txt > $txt.new sed -i 's/\r//' $txt.new touch -r $txt $txt.new mv $txt.new $txt done %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p OTF/*.otf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE11} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}.conf install -m 0644 -p %{SOURCE12} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}-2.conf install -m 0644 -p %{SOURCE13} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf}-3.conf for fconf in %{fontconf}.conf \ %{fontconf}-2.conf \ %{fontconf}-3.conf ; do ln -s %{_fontconfig_templatedir}/$fconf \ %{buildroot}%{_fontconfig_confdir}/$fconf done %clean rm -fr %{buildroot} %files common %defattr(0644,root,root,0755) %doc NOTICE OTF/COPYING *.pdf %changelog * Mon Jul 13 2009 - 1.6-2 ??? Use a macro construct friendlier to pre-F12 releases * Sun Jul 12 2009 - 1.6-1 ??? Initial packaging --- NEW FILE import.log --- adf-accanthis-fonts-1_6-2_fc12:HEAD:adf-accanthis-fonts-1.6-2.fc12.src.rpm:1247768269 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/adf-accanthis-fonts/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:36:37 -0000 1.1 +++ .cvsignore 16 Jul 2009 18:18:05 -0000 1.2 @@ -0,0 +1,2 @@ +Accanthis-Cat.pdf +Accanthis-Std.zip Index: sources =================================================================== RCS file: /cvs/extras/rpms/adf-accanthis-fonts/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:36:37 -0000 1.1 +++ sources 16 Jul 2009 18:18:05 -0000 1.2 @@ -0,0 +1,2 @@ +67d95f1e596cccae209c40b67062757d Accanthis-Cat.pdf +8db8f207b4c8dc248d84f7f8af017e51 Accanthis-Std.zip From rdieter at fedoraproject.org Thu Jul 16 18:31:50 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 18:31:50 +0000 (UTC) Subject: rpms/libsigsegv/devel libsigsegv.spec,1.20,1.21 Message-ID: <20090716183150.40AB011C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libsigsegv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12932 Modified Files: libsigsegv.spec Log Message: * Thu Jul 16 2009 Rex Dieter - 2.6-3 - move libsigsegv.so.* to /lib (#512219, F-12+) - %doc: -ChangeLog, +COPYING Index: libsigsegv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsigsegv/devel/libsigsegv.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libsigsegv.spec 25 Feb 2009 18:10:02 -0000 1.20 +++ libsigsegv.spec 16 Jul 2009 18:31:19 -0000 1.21 @@ -4,7 +4,7 @@ Summary: Library for handling page faults in user mode Name: libsigsegv Version: 2.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://libsigsegv.sourceforge.net/ @@ -66,6 +66,14 @@ make install DESTDIR=%{buildroot} rm -f %{buildroot}%{_libdir}/lib*.la +%if 0%{?fedora} > 11 +pushd %{buildroot}%{_libdir} +mkdir ../../%{_lib} +mv libsigsegv.so.0* ../../%{_lib}/ +ln -sf ../../%{_lib}/libsigsegv.so.0 %{buildroot}%{_libdir}/libsigsegv.so +popd +%endif + %check make check @@ -82,20 +90,31 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc AUTHORS ChangeLog NEWS README -%{_libdir}/lib*.so.* +%doc AUTHORS COPYING NEWS README +%if 0%{?fedora} > 11 +/%{_lib}/libsigsegv.so.0* +%else +%{_libdir}/libsigsegv.so.0* +%endif %files devel %defattr(-,root,root,-) -%{_libdir}/lib*.so -%{_includedir}/*.h +%{_libdir}/libsigsegv.so +%{_includedir}/sigsegv.h +%ifarch %{multilib_arches} +%{_includedir}/sigsegv-%{_arch}.h +%endif %files static %defattr(-,root,root,-) -%{_libdir}/lib*.a +%{_libdir}/libsigsegv.a %changelog +* Thu Jul 16 2009 Rex Dieter - 2.6-3 +- move libsigsegv.so.* to /lib (#512219, F-12+) +- %%doc: -ChangeLog, +COPYING + * Wed Feb 25 2009 Fedora Release Engineering - 2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From nim at fedoraproject.org Thu Jul 16 18:33:54 2009 From: nim at fedoraproject.org (nim) Date: Thu, 16 Jul 2009 18:33:54 +0000 (UTC) Subject: comps comps-f12.xml.in,1.39,1.40 comps-f11.xml.in,1.265,1.266 Message-ID: <20090716183354.3C95E11C0099@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13185 Modified Files: comps-f12.xml.in comps-f11.xml.in Log Message: sort and fix Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- comps-f12.xml.in 16 Jul 2009 07:58:29 -0000 1.39 +++ comps-f12.xml.in 16 Jul 2009 18:33:53 -0000 1.40 @@ -1,4 +1,4 @@ -b + @@ -94,23 +94,23 @@ b openoffice.org-langpack-ar dejavu-sans-fonts dejavu-sans-mono-fonts - kacst-book-fonts - kacst-digital-fonts - kacst-letter-fonts - kacst-office-fonts - kacst-pen-fonts - kacst-qurn-fonts - kacst-titlel-fonts - kacst-art-fonts - kacst-decorative-fonts - kacst-farsi-fonts - kacst-naskh-fonts - kacst-one-fonts - kacst-poster-fonts - kacst-screen-fonts - kacst-title-fonts - paktype-tehreer-fonts + kacst-art-fonts + kacst-book-fonts + kacst-decorative-fonts + kacst-digital-fonts + kacst-farsi-fonts + kacst-letter-fonts + kacst-naskh-fonts + kacst-office-fonts + kacst-one-fonts + kacst-pen-fonts + kacst-poster-fonts + kacst-qurn-fonts + kacst-screen-fonts + kacst-title-fonts + kacst-titlel-fonts paktype-naqsh-fonts + paktype-tehreer-fonts m17n-db-arabic scim-tables-arabic @@ -155,13 +155,13 @@ b true tex-cm-lgc - docbook5-schemas - docbook5-style-xsl docbook-slides docbook-style-dsssl docbook-style-xsl docbook-utils docbook-utils-pdf + docbook5-schemas + docbook5-style-xsl linuxdoc-tools texlive xhtml1-dtds @@ -475,6 +475,18 @@ b + books + <_name>Books and Guides + <_description> Books and Guides for Fedora users and developers + false + true + + diveintopython + javanotes + ldd-pdf + + + bosnian-support <_name>Bosnian Support <_description/> @@ -535,18 +547,6 @@ b - books - <_name>Books and Guides - <_description> Books and Guides for Fedora users and developers - false - true - - diveintopython - javanotes - ldd-pdf - - - buildsys-build <_name>Buildsystem building group <_description/> @@ -791,22 +791,22 @@ b false false + anaconda + createrepo + firstboot + gcc-c++ kernel - anaconda - firstboot - yum + livecd-tools + mash NetworkManager pungi - mash - createrepo - livecd-tools - rpm-build redhat-rpm-config - gcc-c++ + rpm-build + yum @@ -816,16 +816,16 @@ b false false - gdm - - notification-daemon desktop-backgrounds-basic + gdm xorg-x11-drivers xorg-x11-server-Xorg xorg-x11-xauth xorg-x11-xinit + + notification-daemon @@ -1352,8 +1352,8 @@ b dfu-programmer dinotrace drawtiming - electric eclipse-veditor + electric gds2pov geda-docs geda-examples @@ -1739,21 +1739,21 @@ b dejavu-serif-fonts ipa-pgothic-fonts jomolhari-fonts - kacst-book-fonts - kacst-digital-fonts - kacst-letter-fonts - kacst-office-fonts - kacst-pen-fonts - kacst-qurn-fonts - kacst-titlel-fonts - kacst-art-fonts - kacst-decorative-fonts - kacst-farsi-fonts - kacst-naskh-fonts - kacst-one-fonts - kacst-poster-fonts - kacst-screen-fonts - kacst-title-fonts + kacst-art-fonts + kacst-book-fonts + kacst-decorative-fonts + kacst-digital-fonts + kacst-farsi-fonts + kacst-letter-fonts + kacst-naskh-fonts + kacst-office-fonts + kacst-one-fonts + kacst-pen-fonts + kacst-poster-fonts + kacst-qurn-fonts + kacst-screen-fonts + kacst-title-fonts + kacst-titlel-fonts khmeros-base-fonts liberation-mono-fonts liberation-sans-fonts @@ -1769,17 +1769,17 @@ b lohit-tamil-fonts lohit-telugu-fonts padauk-fonts - paktype-tehreer-fonts paktype-naqsh-fonts + paktype-tehreer-fonts smc-meera-fonts stix-fonts thai-scalable-waree-fonts un-core-fonts-dotum allgeyer-musiqwik-fonts allgeyer-musisync-fonts + apa-new-athena-unicode-fonts apanov-edrip-fonts apanov-heuristica-fonts - apa-new-athena-unicode-fonts aplus-fsf-KAPL-fonts asana-math-fonts baekmuk-ttf-batang-fonts @@ -4523,8 +4523,8 @@ b git-cpan-patch perltidy eclipse-epic - vim-perl-support perl-Task-Catalyst + vim-perl-support @@ -5638,28 +5638,28 @@ b ur m17n-contrib-urdu - paktype-tehreer-fonts paktype-naqsh-fonts + paktype-tehreer-fonts hunspell-ur openoffice.org-langpack-ur dejavu-sans-fonts dejavu-sans-mono-fonts nafees-web-naskh-fonts - kacst-book-fonts - kacst-digital-fonts - kacst-letter-fonts - kacst-office-fonts - kacst-pen-fonts - kacst-qurn-fonts - kacst-titlel-fonts - kacst-art-fonts - kacst-decorative-fonts - kacst-farsi-fonts - kacst-naskh-fonts - kacst-one-fonts - kacst-poster-fonts - kacst-screen-fonts - kacst-title-fonts + kacst-art-fonts + kacst-book-fonts + kacst-decorative-fonts + kacst-digital-fonts + kacst-farsi-fonts + kacst-letter-fonts + kacst-naskh-fonts + kacst-office-fonts + kacst-one-fonts + kacst-pen-fonts + kacst-poster-fonts + kacst-qurn-fonts + kacst-screen-fonts + kacst-title-fonts + kacst-titlel-fonts Index: comps-f11.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f11.xml.in,v retrieving revision 1.265 retrieving revision 1.266 diff -u -p -r1.265 -r1.266 --- comps-f11.xml.in 16 Jul 2009 07:58:29 -0000 1.265 +++ comps-f11.xml.in 16 Jul 2009 18:33:53 -0000 1.266 @@ -1677,9 +1677,9 @@ vlgothic-fonts allgeyer-musiqwik-fonts allgeyer-musisync-fonts + apa-new-athena-unicode-fonts apanov-edrip-fonts apanov-heuristica-fonts - apa-new-athena-unicode-fonts aplus-fsf-KAPL-fonts asana-math-fonts baekmuk-ttf-batang-fonts @@ -4420,8 +4420,8 @@ git-cpan-patch perltidy eclipse-epic - vim-perl-support perl-Task-Catalyst + vim-perl-support From rdieter at fedoraproject.org Thu Jul 16 18:34:25 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 18:34:25 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.215,1.216 Message-ID: <20090716183425.EB68311C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13198 Modified Files: kdebindings.spec Log Message: fix %files Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- kdebindings.spec 16 Jul 2009 17:51:22 -0000 1.215 +++ kdebindings.spec 16 Jul 2009 18:33:55 -0000 1.216 @@ -335,7 +335,6 @@ rm -rf %{buildroot} %{python_sitearch}/PyKDE4/ %{python_sitearch}/PyQt4/uic/widget-plugins/kde4.py* %dir %{_kde4_appsdir}/pykde4/ -%{_kde4_appsdir}/pykde4/*.py* %{_kde4_libdir}/kde4/kpythonpluginfactory.so %if 0%{?pykde4_akonadi} From nim at fedoraproject.org Thu Jul 16 18:36:29 2009 From: nim at fedoraproject.org (nim) Date: Thu, 16 Jul 2009 18:36:29 +0000 (UTC) Subject: comps comps-f12.xml.in,1.40,1.41 comps-f11.xml.in,1.266,1.267 Message-ID: <20090716183629.6332211C0099@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13342 Modified Files: comps-f12.xml.in comps-f11.xml.in Log Message: add adf-accanthis-fonts Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- comps-f12.xml.in 16 Jul 2009 18:33:53 -0000 1.40 +++ comps-f12.xml.in 16 Jul 2009 18:35:58 -0000 1.41 @@ -1775,6 +1775,7 @@ stix-fonts thai-scalable-waree-fonts un-core-fonts-dotum + adf-accanthis-fonts allgeyer-musiqwik-fonts allgeyer-musisync-fonts apa-new-athena-unicode-fonts Index: comps-f11.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f11.xml.in,v retrieving revision 1.266 retrieving revision 1.267 diff -u -p -r1.266 -r1.267 --- comps-f11.xml.in 16 Jul 2009 18:33:53 -0000 1.266 +++ comps-f11.xml.in 16 Jul 2009 18:35:59 -0000 1.267 @@ -1675,6 +1675,7 @@ thai-scalable-waree-fonts un-core-fonts-dotum vlgothic-fonts + adf-accanthis-fonts allgeyer-musiqwik-fonts allgeyer-musisync-fonts apa-new-athena-unicode-fonts From behdad at fedoraproject.org Thu Jul 16 18:14:19 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Thu, 16 Jul 2009 18:14:19 +0000 (UTC) Subject: rpms/cairo/F-11 .cvsignore, 1.47, 1.48 cairo.spec, 1.100, 1.101 sources, 1.47, 1.48 Message-ID: <20090716181419.4163911C0099@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/cairo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11366 Modified Files: .cvsignore cairo.spec sources Log Message: * Thu Jul 16 2009 Behdad Esfahbod 1.8.8-1 - Update to 1.8.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cairo/F-11/.cvsignore,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- .cvsignore 7 Jan 2009 05:05:05 -0000 1.47 +++ .cvsignore 16 Jul 2009 18:13:48 -0000 1.48 @@ -1 +1 @@ -cairo-1.8.6.tar.gz +cairo-1.8.8.tar.gz Index: cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/cairo/F-11/cairo.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- cairo.spec 8 Apr 2009 21:07:54 -0000 1.100 +++ cairo.spec 16 Jul 2009 18:13:48 -0000 1.101 @@ -4,8 +4,8 @@ Summary: A 2D graphics library Name: cairo -Version: 1.8.6 -Release: 3%{?dist} +Version: 1.8.8 +Release: 1%{?dist} URL: http://cairographics.org Source0: http://cairographics.org/releases/%{name}-%{version}.tar.gz License: LGPLv2 or MPLv1.1 @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/cairo %changelog +* Thu Jul 16 2009 Behdad Esfahbod 1.8.8-1 +- Update to 1.8.8 + * Wed Apr 08 2009 Adam Jackson 1.8.6-3 - cairo-1.8.6-repeat-modes.patch: Enable the repeat and pad blend modes in the xlib backend to make firefox performance slightly less dire. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cairo/F-11/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 7 Jan 2009 05:05:06 -0000 1.47 +++ sources 16 Jul 2009 18:13:48 -0000 1.48 @@ -1 +1 @@ -4e64139ef6f668df24450f3b81dd0771 cairo-1.8.6.tar.gz +d3e1a1035ae563812d4dd44a74fb0dd0 cairo-1.8.8.tar.gz From nalin at fedoraproject.org Thu Jul 16 18:44:12 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Thu, 16 Jul 2009 18:44:12 +0000 (UTC) Subject: rpms/gnupg/devel gnupg-1.4.9-fortify.patch,NONE,1.1 Message-ID: <20090716184412.A9A5A11C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/gnupg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13773 Added Files: gnupg-1.4.9-fortify.patch Log Message: Alter the layout of "struct para_data_s" to not trigger #511573. Hopefully we won't need this. gnupg-1.4.9-fortify.patch: --- NEW FILE gnupg-1.4.9-fortify.patch --- Move the 'value' field out of the union to make it the last field in the structure, so that we don't unconditionally trigger __fortify_fail(). diff -up gnupg-1.4.9/g10/keygen.c gnupg-1.4.9/g10/keygen.c --- gnupg-1.4.9/g10/keygen.c 2009-07-16 13:06:28.000000000 -0400 +++ gnupg-1.4.9/g10/keygen.c 2009-07-16 13:06:22.000000000 -0400 @@ -81,8 +81,8 @@ struct para_data_s { u32 expire; unsigned int usage; struct revocation_key revkey; - char value[1]; } u; + char value[1]; }; struct output_control_s { @@ -2005,7 +2005,7 @@ static const char * get_parameter_value( struct para_data_s *para, enum para_name key ) { struct para_data_s *r = get_parameter( para, key ); - return (r && *r->u.value)? r->u.value : NULL; + return (r && *r->value)? r->value : NULL; } static int @@ -2015,10 +2015,10 @@ get_parameter_algo( struct para_data_s * struct para_data_s *r = get_parameter( para, key ); if( !r ) return -1; - if( digitp( r->u.value ) ) - i = atoi( r->u.value ); + if( digitp( r->value ) ) + i = atoi( r->value ); else - i = string_to_pubkey_algo( r->u.value ); + i = string_to_pubkey_algo( r->value ); if (i == PUBKEY_ALGO_RSA_E || i == PUBKEY_ALGO_RSA_S) i = 0; /* we don't want to allow generation of these algorithms */ return i; @@ -2039,7 +2039,7 @@ parse_parameter_usage (const char *fname return 0; /* none (this is an optional parameter)*/ use = 0; - pn = r->u.value; + pn = r->value; while ( (p = strsep (&pn, " \t,")) ) { if ( !*p) ; @@ -2070,7 +2070,7 @@ parse_revocation_key (const char *fname, if( !r ) return 0; /* none (this is an optional parameter) */ - pn = r->u.value; + pn = r->value; revkey.class=0x80; revkey.algid=atoi(pn); @@ -2126,7 +2126,7 @@ get_parameter_u32( struct para_data_s *p if( r->key == pCREATETIME ) return r->u.create; - return (unsigned int)strtoul( r->u.value, NULL, 10 ); + return (unsigned int)strtoul( r->value, NULL, 10 ); } static unsigned int @@ -2241,7 +2241,7 @@ proc_parameter_file( struct para_data_s n = (s1?strlen(s1):0) + (s2?strlen(s2):0) + (s3?strlen(s3):0); r = xmalloc_clear( sizeof *r + n + 20 ); r->key = pUSERID; - p = r->u.value; + p = r->value; if( s1 ) p = stpcpy(p, s1 ); if( s2 ) @@ -2288,7 +2288,7 @@ proc_parameter_file( struct para_data_s /* make DEK and S2K from the Passphrase */ r = get_parameter( para, pPASSPHRASE ); - if( r && *r->u.value ) { + if( r && *r->value ) { /* we have a plain text passphrase - create a DEK from it. * It is a little bit ridiculous to keep it ih secure memory * but becuase we do this alwasy, why not here */ @@ -2298,12 +2298,12 @@ proc_parameter_file( struct para_data_s s2k = xmalloc_secure( sizeof *s2k ); s2k->mode = opt.s2k_mode; s2k->hash_algo = S2K_DIGEST_ALGO; - set_next_passphrase( r->u.value ); + set_next_passphrase( r->value ); dek = passphrase_to_dek( NULL, 0, opt.s2k_cipher_algo, s2k, 2, NULL, NULL); set_next_passphrase( NULL ); assert( dek ); - memset( r->u.value, 0, strlen(r->u.value) ); + memset( r->value, 0, strlen(r->value) ); r = xmalloc_clear( sizeof *r ); r->key = pPASSPHRASE_S2K; @@ -2319,11 +2319,11 @@ proc_parameter_file( struct para_data_s /* make KEYEXPIRE from Expire-Date */ r = get_parameter( para, pEXPIREDATE ); - if( r && *r->u.value ) + if( r && *r->value ) { u32 seconds; - seconds = parse_expire_string( timestamp, r->u.value ); + seconds = parse_expire_string( timestamp, r->value ); if( seconds == (u32)-1 ) { log_error("%s:%d: invalid expire date\n", fname, r->lnr ); @@ -2519,7 +2519,7 @@ read_parameter_file( const char *fname ) r = xmalloc_clear( sizeof *r + strlen( value ) ); r->lnr = lnr; r->key = keywords[i].key; - strcpy( r->u.value, value ); + strcpy( r->value, value ); r->next = para; para = r; } @@ -2606,7 +2606,7 @@ generate_keypair (const char *fname, con #ifdef ENABLE_CARD_SUPPORT r = xcalloc (1, sizeof *r + strlen (card_serialno) ); r->key = pSERIALNO; - strcpy( r->u.value, card_serialno); + strcpy( r->value, card_serialno); r->next = para; para = r; @@ -2614,29 +2614,29 @@ generate_keypair (const char *fname, con r = xcalloc (1, sizeof *r + 20 ); r->key = pKEYTYPE; - sprintf( r->u.value, "%d", algo ); + sprintf( r->value, "%d", algo ); r->next = para; para = r; r = xcalloc (1, sizeof *r + 20 ); r->key = pKEYUSAGE; - strcpy (r->u.value, "sign"); + strcpy (r->value, "sign"); r->next = para; para = r; r = xcalloc (1, sizeof *r + 20 ); r->key = pSUBKEYTYPE; - sprintf( r->u.value, "%d", algo ); + sprintf( r->value, "%d", algo ); r->next = para; para = r; r = xcalloc (1, sizeof *r + 20 ); r->key = pSUBKEYUSAGE; - strcpy (r->u.value, "encrypt"); + strcpy (r->value, "encrypt"); r->next = para; para = r; r = xcalloc (1, sizeof *r + 20 ); r->key = pAUTHKEYTYPE; - sprintf( r->u.value, "%d", algo ); + sprintf( r->value, "%d", algo ); r->next = para; para = r; @@ -2644,7 +2644,7 @@ generate_keypair (const char *fname, con { r = xcalloc (1, sizeof *r + strlen (backup_encryption_dir) ); r->key = pBACKUPENCDIR; - strcpy (r->u.value, backup_encryption_dir); + strcpy (r->value, backup_encryption_dir); r->next = para; para = r; } @@ -2658,30 +2658,30 @@ generate_keypair (const char *fname, con both = 1; r = xmalloc_clear( sizeof *r + 20 ); r->key = pKEYTYPE; - sprintf( r->u.value, "%d", PUBKEY_ALGO_DSA ); + sprintf( r->value, "%d", PUBKEY_ALGO_DSA ); r->next = para; para = r; nbits = ask_keysize( PUBKEY_ALGO_DSA ); r = xmalloc_clear( sizeof *r + 20 ); r->key = pKEYLENGTH; - sprintf( r->u.value, "%u", nbits); + sprintf( r->value, "%u", nbits); r->next = para; para = r; r = xmalloc_clear( sizeof *r + 20 ); r->key = pKEYUSAGE; - strcpy( r->u.value, "sign" ); + strcpy( r->value, "sign" ); r->next = para; para = r; algo = PUBKEY_ALGO_ELGAMAL_E; r = xmalloc_clear( sizeof *r + 20 ); r->key = pSUBKEYTYPE; - sprintf( r->u.value, "%d", algo ); + sprintf( r->value, "%d", algo ); r->next = para; para = r; r = xmalloc_clear( sizeof *r + 20 ); r->key = pSUBKEYUSAGE; - strcpy( r->u.value, "encrypt" ); + strcpy( r->value, "encrypt" ); r->next = para; para = r; } @@ -2689,7 +2689,7 @@ generate_keypair (const char *fname, con { r = xmalloc_clear( sizeof *r + 20 ); r->key = pKEYTYPE; - sprintf( r->u.value, "%d", algo ); + sprintf( r->value, "%d", algo ); r->next = para; para = r; @@ -2697,7 +2697,7 @@ generate_keypair (const char *fname, con { r = xmalloc_clear( sizeof *r + 25 ); r->key = pKEYUSAGE; - sprintf( r->u.value, "%s%s%s", + sprintf( r->value, "%s%s%s", (use & PUBKEY_USAGE_SIG)? "sign ":"", (use & PUBKEY_USAGE_ENC)? "encrypt ":"", (use & PUBKEY_USAGE_AUTH)? "auth":"" ); @@ -2710,7 +2710,7 @@ generate_keypair (const char *fname, con nbits = ask_keysize( algo ); r = xmalloc_clear( sizeof *r + 20 ); r->key = both? pSUBKEYLENGTH : pKEYLENGTH; - sprintf( r->u.value, "%u", nbits); + sprintf( r->value, "%u", nbits); r->next = para; para = r; } @@ -2736,7 +2736,7 @@ generate_keypair (const char *fname, con } r = xmalloc_clear( sizeof *r + strlen(uid) ); r->key = pUSERID; - strcpy( r->u.value, uid ); + strcpy( r->value, uid ); r->next = para; para = r; @@ -3304,7 +3304,7 @@ generate_card_subkeypair (KBNODE pub_key para = xcalloc (1, sizeof *para + strlen (serialno) ); para->key = pSERIALNO; - strcpy (para->u.value, serialno); + strcpy (para->value, serialno); /* Break out the primary secret key */ node = find_kbnode( sec_keyblock, PKT_SECRET_KEY ); From mclasen at fedoraproject.org Thu Jul 16 18:47:55 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 18:47:55 +0000 (UTC) Subject: rpms/empathy/devel button-images.patch, NONE, 1.1 empathy.spec, 1.61, 1.62 Message-ID: <20090716184755.63E6111C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14096 Modified Files: empathy.spec Added Files: button-images.patch Log Message: Deal with some buttons button-images.patch: --- NEW FILE button-images.patch --- diff -up empathy-2.27.4/libempathy-gtk/empathy-new-message-dialog.ui.button-images empathy-2.27.4/libempathy-gtk/empathy-new-message-dialog.ui --- empathy-2.27.4/libempathy-gtk/empathy-new-message-dialog.ui.button-images 2009-07-16 14:39:09.911582772 -0400 +++ empathy-2.27.4/libempathy-gtk/empathy-new-message-dialog.ui 2009-07-16 14:42:29.660614918 -0400 @@ -1,6 +1,14 @@ + + audio-input-microphone + 4 + + + im-message-new + 4 + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 5 @@ -82,41 +90,9 @@ True True True - - - True - 0 - 0 - - - True - 2 - - - True - audio-input-microphone - - - False - False - - - - - True - C_all - True - - - False - False - 1 - - - - - - + call_image + C_all + True 1 @@ -128,41 +104,9 @@ True True True - - - True - 0 - 0 - - - True - 2 - - - True - im-message-new - - - False - False - - - - - True - C_hat - True - - - False - False - 1 - - - - - - + chat_image + C_hat + True 2 diff -up empathy-2.27.4/src/empathy-accounts-dialog.ui.button-images empathy-2.27.4/src/empathy-accounts-dialog.ui --- empathy-2.27.4/src/empathy-accounts-dialog.ui.button-images 2009-07-16 14:23:32.512361372 -0400 +++ empathy-2.27.4/src/empathy-accounts-dialog.ui 2009-07-16 14:25:00.288598827 -0400 @@ -2,6 +2,10 @@ + + gtk-add + 4 + 5 Accounts @@ -56,42 +60,9 @@ True True False - - - True - 0 - 0 - - - True - 2 - - - True - gtk-add - - - False - False - 0 - - - - - True - _Add... - True - - - False - False - 1 - - - - - - + add_image + _Add... + True 0 diff -up empathy-2.27.4/src/empathy-main-window.ui.button-images empathy-2.27.4/src/empathy-main-window.ui diff -up empathy-2.27.4/src/empathy-new-chatroom-dialog.ui.button-images empathy-2.27.4/src/empathy-new-chatroom-dialog.ui --- empathy-2.27.4/src/empathy-new-chatroom-dialog.ui.button-images 2009-07-16 14:20:36.799613393 -0400 +++ empathy-2.27.4/src/empathy-new-chatroom-dialog.ui 2009-07-16 14:22:06.493333193 -0400 @@ -2,6 +2,10 @@ + + gtk-jump-to + 4 + True 5 @@ -245,42 +249,9 @@ True True False - - - True - 0 - 0 - - - True - 2 - - - True - gtk-jump-to - - - False - False - 0 - - - - - True - _Join - True - - - False - False - 1 - - - - - - + join_image + _Join + True False Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- empathy.spec 15 Jul 2009 13:46:13 -0000 1.61 +++ empathy.spec 16 Jul 2009 18:47:25 -0000 1.62 @@ -11,7 +11,7 @@ Name: empathy Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Instant Messaging Client for GNOME Group: Applications/Communications @@ -26,6 +26,9 @@ Source1: %{name}-README.ConnectionManage ## http://bugzilla.gnome.org/show_bug.cgi?id=577863 Patch1: %{name}-broken-pkgconfig.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=588810 +Patch2: button-images.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: enchant-devel >= %{enchant_version} @@ -125,6 +128,7 @@ bindings to the libempathy and libempath %prep %setup -q %patch1 -p1 -b .pkgconfig +%patch2 -p1 -b .button-images # force these to be regenerated rm data/empathy.desktop @@ -232,6 +236,9 @@ fi %{python_sitearch}/empathy*.so %changelog +* Thu Jul 16 2009 Matthias Clasen - 2.27.4-2 +- Deal with some stubborn buttons + * Wed Jul 15 2009 Brian Pepple - 2.27.4-1 - Update to 2.27.4. - See http://download.gnome.org/sources/empathy/2.27/empathy-2.27.4.news From wcohen at fedoraproject.org Thu Jul 16 18:53:36 2009 From: wcohen at fedoraproject.org (William Eden Cohen) Date: Thu, 16 Jul 2009 18:53:36 +0000 (UTC) Subject: rpms/oprofile/devel oprofile-jvmpi-lgpl.patch, NONE, 1.1 oprofile-verbose.patch, NONE, 1.1 oprofile.spec, 1.78, 1.79 Message-ID: <20090716185336.1ADC911C0099@cvs1.fedora.phx.redhat.com> Author: wcohen Update of /cvs/pkgs/rpms/oprofile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14543 Modified Files: oprofile.spec Added Files: oprofile-jvmpi-lgpl.patch oprofile-verbose.patch Log Message: - Add shadow-utils to requires. Resolves: rhbz #501357 - Add LGPL license to provided java support. Resolves: rhbz #474666 - Correct handling of --verbose. Resolves: rhbz #454969 oprofile-jvmpi-lgpl.patch: --- NEW FILE oprofile-jvmpi-lgpl.patch --- diff -paur oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp --- oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp 2008-04-28 16:23:26.000000000 -0500 +++ oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp 2009-06-22 16:42:48.000000000 -0500 @@ -3,7 +3,20 @@ * JVMPI agent implementation to report jitted JVM code to OProfile * * @remark Copyright 2007 OProfile authors - * @remark Read the file COPYING + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Maynard Johnson * oprofile-verbose.patch: --- NEW FILE oprofile-verbose.patch --- diff -up oprofile-0.9.4/utils/opcontrol.verbose oprofile-0.9.4/utils/opcontrol --- oprofile-0.9.4/utils/opcontrol.verbose 2009-06-21 22:16:24.000000000 -0400 +++ oprofile-0.9.4/utils/opcontrol 2009-06-21 22:39:34.000000000 -0400 @@ -335,40 +335,6 @@ do_init() ;; esac fi - - vecho "Parameters used:" - vecho "SESSION_DIR $SESSION_DIR" - vecho "LOCK_FILE $LOCK_FILE" - vecho "SAMPLES_DIR $SAMPLES_DIR" - vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" - vecho "CPUTYPE $CPUTYPE" - if test "$BUF_SIZE" != "0"; then - vecho "BUF_SIZE $BUF_SIZE" - else - vecho "BUF_SIZE default value" - fi - if test "$BUF_WATERSHED" != "0"; then - vecho "BUF_WATERSHED $BUF_WATERSHED" - else - vecho "BUF_WATERSHED default value" - fi - if test "$KERNEL_SUPPORT" = "yes"; then - if test "$CPU_BUF_SIZE" != "0"; then - vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" - else - vecho "CPU_BUF_SIZE default value" - fi - fi - - vecho "SEPARATE_LIB $SEPARATE_LIB" - vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" - vecho "SEPARATE_THREAD $SEPARATE_THREAD" - vecho "SEPARATE_CPU $SEPARATE_CPU" - vecho "CALLGRAPH $CALLGRAPH" - vecho "VMLINUX $VMLINUX" - vecho "KERNEL_RANGE $KERNEL_RANGE" - vecho "XENIMAGE $XENIMAGE" - vecho "XEN_RANGE $XEN_RANGE" } @@ -1019,6 +985,40 @@ do_options() echo "Option \"--passive-domains\" or "--domains" can only be used with option \"--start-daemon\" or \"--start\"." >&2 exit 1 fi + + vecho "Parameters used:" + vecho "SESSION_DIR $SESSION_DIR" + vecho "LOCK_FILE $LOCK_FILE" + vecho "SAMPLES_DIR $SAMPLES_DIR" + vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" + vecho "CPUTYPE $CPUTYPE" + if test "$BUF_SIZE" != "0"; then + vecho "BUF_SIZE $BUF_SIZE" + else + vecho "BUF_SIZE default value" + fi + if test "$BUF_WATERSHED" != "0"; then + vecho "BUF_WATERSHED $BUF_WATERSHED" + else + vecho "BUF_WATERSHED default value" + fi + if test "$KERNEL_SUPPORT" = "yes"; then + if test "$CPU_BUF_SIZE" != "0"; then + vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" + else + vecho "CPU_BUF_SIZE default value" + fi + fi + + vecho "SEPARATE_LIB $SEPARATE_LIB" + vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" + vecho "SEPARATE_THREAD $SEPARATE_THREAD" + vecho "SEPARATE_CPU $SEPARATE_CPU" + vecho "CALLGRAPH $CALLGRAPH" + vecho "VMLINUX $VMLINUX" + vecho "KERNEL_RANGE $KERNEL_RANGE" + vecho "XENIMAGE $XENIMAGE" + vecho "XEN_RANGE $XEN_RANGE" } Index: oprofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/oprofile/devel/oprofile.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- oprofile.spec 12 May 2009 18:23:06 -0000 1.78 +++ oprofile.spec 16 Jul 2009 18:53:35 -0000 1.79 @@ -3,19 +3,23 @@ Summary: System wide profiler Name: oprofile Version: 0.9.4 -Release: 9%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Development/System # Source0: oprofile-%{version}.tar.gz Requires: binutils Requires: which +Requires(pre): shadow-utils Patch10: oprofile-0.4-guess2.patch Patch63: oprofile-0.7-libs.patch Patch83: oprofile-0.9.3-xen.patch #Patch100: oprofile-gcc43.patch Patch101: oprofile-basename.patch Patch102: oprofile-iaperf.patch +Patch103: oprofile-verbose.patch +Patch104: oprofile-jvmpi-lgpl.patch + URL: http://oprofile.sf.net ExclusiveArch: %{ix86} ia64 x86_64 ppc ppc64 s390 s390x alpha alphaev6 sparcv9 sparc64 @@ -76,7 +80,6 @@ Requires: /etc/ld.so.conf.d This package includes a base JIT support library, as well as a Java agent library. - %prep %setup -q -n %{name}-%{version} %patch10 -p1 -b .guess2 @@ -86,6 +89,8 @@ agent library. #%patch100 -p1 -b .gcc43 %patch101 -p1 -b .basename %patch102 -p1 -b .iaperf +%patch103 -p1 -b .verbose +%patch104 -p1 -b .lgpl ./autogen.sh @@ -227,6 +232,11 @@ exit 0 /etc/ld.so.conf.d/* %changelog +* Thu Jul 16 2009 Will Cohen - 0.9.4-12 +- Add shadow-utils to requires. Resolves: rhbz #501357 +- Add LGPL license to provided java support. Resolves: rhbz #474666 +- Correct handling of --verbose. Resolves: rhbz #454969 + * Mon May 11 2009 Will Cohen - 0.9.4-9 - Assign specific UID and GID to oprofile. From pkgdb at fedoraproject.org Thu Jul 16 18:57:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:57:38 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185738.5DEF110F86B@bastion2.fedora.phx.redhat.com> roland has set the watchbugzilla acl on strace (Fedora devel) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 18:57:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:57:42 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185742.6B2ED10F898@bastion2.fedora.phx.redhat.com> roland has set the watchcommits acl on strace (Fedora devel) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 18:57:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:57:57 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185757.258C510F890@bastion2.fedora.phx.redhat.com> roland has set the commit acl on strace (Fedora devel) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 18:58:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:58:12 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185812.D5A0810F888@bastion2.fedora.phx.redhat.com> roland has set the watchbugzilla acl on strace (Fedora 11) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 18:58:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:58:14 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185814.32E4B10F8A3@bastion2.fedora.phx.redhat.com> roland has set the watchcommits acl on strace (Fedora 11) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From pkgdb at fedoraproject.org Thu Jul 16 18:58:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 18:58:17 +0000 Subject: [pkgdb] strace had acl change status Message-ID: <20090716185817.AA36D10F8A6@bastion2.fedora.phx.redhat.com> roland has set the commit acl on strace (Fedora 11) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/strace From wcohen at fedoraproject.org Thu Jul 16 18:58:20 2009 From: wcohen at fedoraproject.org (William Eden Cohen) Date: Thu, 16 Jul 2009 18:58:20 +0000 (UTC) Subject: rpms/oprofile/F-11 oprofile-jvmpi-lgpl.patch, NONE, 1.1 oprofile-verbose.patch, NONE, 1.1 oprofile.spec, 1.78, 1.79 Message-ID: <20090716185820.5D8AC11C0099@cvs1.fedora.phx.redhat.com> Author: wcohen Update of /cvs/pkgs/rpms/oprofile/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15148 Modified Files: oprofile.spec Added Files: oprofile-jvmpi-lgpl.patch oprofile-verbose.patch Log Message: - Add shadow-utils to requires. Resolves: rhbz #501357 - Add LGPL license to provided java support. Resolves: rhbz #474666 - Correct handling of --verbose. Resolves: rhbz #454969 oprofile-jvmpi-lgpl.patch: --- NEW FILE oprofile-jvmpi-lgpl.patch --- diff -paur oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp --- oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp 2008-04-28 16:23:26.000000000 -0500 +++ oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp 2009-06-22 16:42:48.000000000 -0500 @@ -3,7 +3,20 @@ * JVMPI agent implementation to report jitted JVM code to OProfile * * @remark Copyright 2007 OProfile authors - * @remark Read the file COPYING + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Maynard Johnson * oprofile-verbose.patch: --- NEW FILE oprofile-verbose.patch --- diff -up oprofile-0.9.4/utils/opcontrol.verbose oprofile-0.9.4/utils/opcontrol --- oprofile-0.9.4/utils/opcontrol.verbose 2009-06-21 22:16:24.000000000 -0400 +++ oprofile-0.9.4/utils/opcontrol 2009-06-21 22:39:34.000000000 -0400 @@ -335,40 +335,6 @@ do_init() ;; esac fi - - vecho "Parameters used:" - vecho "SESSION_DIR $SESSION_DIR" - vecho "LOCK_FILE $LOCK_FILE" - vecho "SAMPLES_DIR $SAMPLES_DIR" - vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" - vecho "CPUTYPE $CPUTYPE" - if test "$BUF_SIZE" != "0"; then - vecho "BUF_SIZE $BUF_SIZE" - else - vecho "BUF_SIZE default value" - fi - if test "$BUF_WATERSHED" != "0"; then - vecho "BUF_WATERSHED $BUF_WATERSHED" - else - vecho "BUF_WATERSHED default value" - fi - if test "$KERNEL_SUPPORT" = "yes"; then - if test "$CPU_BUF_SIZE" != "0"; then - vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" - else - vecho "CPU_BUF_SIZE default value" - fi - fi - - vecho "SEPARATE_LIB $SEPARATE_LIB" - vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" - vecho "SEPARATE_THREAD $SEPARATE_THREAD" - vecho "SEPARATE_CPU $SEPARATE_CPU" - vecho "CALLGRAPH $CALLGRAPH" - vecho "VMLINUX $VMLINUX" - vecho "KERNEL_RANGE $KERNEL_RANGE" - vecho "XENIMAGE $XENIMAGE" - vecho "XEN_RANGE $XEN_RANGE" } @@ -1019,6 +985,40 @@ do_options() echo "Option \"--passive-domains\" or "--domains" can only be used with option \"--start-daemon\" or \"--start\"." >&2 exit 1 fi + + vecho "Parameters used:" + vecho "SESSION_DIR $SESSION_DIR" + vecho "LOCK_FILE $LOCK_FILE" + vecho "SAMPLES_DIR $SAMPLES_DIR" + vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" + vecho "CPUTYPE $CPUTYPE" + if test "$BUF_SIZE" != "0"; then + vecho "BUF_SIZE $BUF_SIZE" + else + vecho "BUF_SIZE default value" + fi + if test "$BUF_WATERSHED" != "0"; then + vecho "BUF_WATERSHED $BUF_WATERSHED" + else + vecho "BUF_WATERSHED default value" + fi + if test "$KERNEL_SUPPORT" = "yes"; then + if test "$CPU_BUF_SIZE" != "0"; then + vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" + else + vecho "CPU_BUF_SIZE default value" + fi + fi + + vecho "SEPARATE_LIB $SEPARATE_LIB" + vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" + vecho "SEPARATE_THREAD $SEPARATE_THREAD" + vecho "SEPARATE_CPU $SEPARATE_CPU" + vecho "CALLGRAPH $CALLGRAPH" + vecho "VMLINUX $VMLINUX" + vecho "KERNEL_RANGE $KERNEL_RANGE" + vecho "XENIMAGE $XENIMAGE" + vecho "XEN_RANGE $XEN_RANGE" } Index: oprofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/oprofile/F-11/oprofile.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- oprofile.spec 12 May 2009 18:27:07 -0000 1.78 +++ oprofile.spec 16 Jul 2009 18:58:20 -0000 1.79 @@ -3,19 +3,23 @@ Summary: System wide profiler Name: oprofile Version: 0.9.4 -Release: 9%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Development/System # Source0: oprofile-%{version}.tar.gz Requires: binutils Requires: which +Requires(pre): shadow-utils Patch10: oprofile-0.4-guess2.patch Patch63: oprofile-0.7-libs.patch Patch83: oprofile-0.9.3-xen.patch #Patch100: oprofile-gcc43.patch Patch101: oprofile-basename.patch Patch102: oprofile-iaperf.patch +Patch103: oprofile-verbose.patch +Patch104: oprofile-jvmpi-lgpl.patch + URL: http://oprofile.sf.net ExclusiveArch: %{ix86} ia64 x86_64 ppc ppc64 s390 s390x alpha alphaev6 sparcv9 sparc64 @@ -76,7 +80,6 @@ Requires: /etc/ld.so.conf.d This package includes a base JIT support library, as well as a Java agent library. - %prep %setup -q -n %{name}-%{version} %patch10 -p1 -b .guess2 @@ -86,6 +89,8 @@ agent library. #%patch100 -p1 -b .gcc43 %patch101 -p1 -b .basename %patch102 -p1 -b .iaperf +%patch103 -p1 -b .verbose +%patch104 -p1 -b .lgpl ./autogen.sh @@ -227,6 +232,11 @@ exit 0 /etc/ld.so.conf.d/* %changelog +* Thu Jul 16 2009 Will Cohen - 0.9.4-12 +- Add shadow-utils to requires. Resolves: rhbz #501357 +- Add LGPL license to provided java support. Resolves: rhbz #474666 +- Correct handling of --verbose. Resolves: rhbz #454969 + * Mon May 11 2009 Will Cohen - 0.9.4-9 - Assign specific UID and GID to oprofile. From rdieter at fedoraproject.org Thu Jul 16 18:58:55 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 18:58:55 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.216,1.217 Message-ID: <20090716185855.ED14C11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15242 Modified Files: kdebindings.spec Log Message: patch upstreamed Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- kdebindings.spec 16 Jul 2009 18:33:55 -0000 1.216 +++ kdebindings.spec 16 Jul 2009 18:58:25 -0000 1.217 @@ -49,7 +49,7 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch ## upstream patches # http://bugs.kde.org/198632#c5 -Patch50: kdebindings-4.2.96-kdebug#198632.patch +Patch100: kdebindings-4.2.96-kdebug#198632.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -255,7 +255,7 @@ Falcon plugin for the Kross archtecture %patch0 %patch1 -p0 -b .old-PyQt4 %patch2 -p1 -b .fix-kpythonpluginfactory -%patch50 -p1 -b .kdebug#198632 +%patch100 -p1 -b .kdebug#198632 %build From mdomsch at fedoraproject.org Thu Jul 16 18:59:03 2009 From: mdomsch at fedoraproject.org (Matt Domsch) Date: Thu, 16 Jul 2009 18:59:03 +0000 (UTC) Subject: rpms/cim-schema/devel LICENSE, NONE, 1.1 cim-schema.spec, NONE, 1.1 import.log, NONE, 1.1 loadmof.sh, NONE, 1.1 rmmof.sh, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716185903.5125F11C0099@cvs1.fedora.phx.redhat.com> Author: mdomsch Update of /cvs/extras/rpms/cim-schema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15211/devel Modified Files: .cvsignore sources Added Files: LICENSE cim-schema.spec import.log loadmof.sh rmmof.sh Log Message: initial import --- NEW FILE LICENSE --- // Copyright 1998-2008 Distributed Management Task Force, Inc. (DMTF). // All rights reserved. // DMTF is a not-for-profit association of industry members dedicated // to promoting enterprise and systems management and interoperability. // DMTF specifications and documents may be reproduced by // members and non-members, provided that correct attribution is given. // As DMTF specifications may be revised from time to time, // the particular version and release date should always be noted. // // Implementation of certain elements of this standard or proposed // standard may be subject to third party patent rights, including // provisional patent rights (herein "patent rights"). DMTF makes // no representations to users of the standard as to the existence // of such rights, and is not responsible to recognize, disclose, or // identify any or all such third party patent right, owners or // claimants, nor for any incomplete or inaccurate identification or // disclosure of such rights, owners or claimants. DMTF shall have no // liability to any party, in any manner or circumstance, under any // legal theory whatsoever, for failure to recognize, disclose, or // identify any such third party patent rights, or for such party's // reliance on the standard or incorporation thereof in its product, // protocols or testing procedures. DMTF shall have no liability to // any party implementing such standard, whether such implementation // is foreseeable or not, nor to any patent owner or claimant, and shall // have no liability or responsibility for costs or losses incurred if // a standard is withdrawn or modified after publication, and shall be // indemnified and held harmless by any party implementing the // standard from any and all claims of infringement by a patent owner // for such implementations. // // For information about patents held by third-parties which have // notified the DMTF that, in their opinion, such patent may relate to // or impact implementations of DMTF standards, visit // http://www.dmtf.org/about/policies/disclosures.php. --- NEW FILE cim-schema.spec --- # # spec file for package cim-schema # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. # # The license for this spec file is the MIT/X11 license: # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # norootforbuild Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: 2.22.0 Release: 1 Group: Development/Libraries License: DMTF BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-MOFs.zip Source1: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-Doc.zip Source2: loadmof.sh Source3: rmmof.sh Source4: LICENSE BuildArch: noarch %package docs Summary: Common Information Model (CIM) Schema documentation Group: Documentation %description Common Information Model (CIM) is a model for describing overall management information in a network or enterprise environment. CIM consists of a specification and a schema. The specification defines the details for integration with other management models. The schema provides the actual model descriptions. Authors: -------- DTMF %description docs Common Information Model (CIM) schema documentation. %prep %setup -q -T -a 1 -c -n %{name}-%{version}-docs %setup -q -T -a 0 -c -n %{name}-%{version} cp -a %{SOURCE4} .. %build %install MOFDIR=%{_datadir}/mof CIMDIR=$MOFDIR/cimv%{version} %__rm -rf $RPM_BUILD_ROOT for i in `find . -name "*.mof"`; do sed -i -e 's/\r//g' $i done install -d $RPM_BUILD_ROOT/$CIMDIR chmod -R go-wx . chmod -R a+rX . %__mv * $RPM_BUILD_ROOT/$CIMDIR/ ln -s cimv%{version} $RPM_BUILD_ROOT/$MOFDIR/cim-current ln -s cim_schema_%{version}.mof $RPM_BUILD_ROOT/$MOFDIR/cim-current/CIM_Schema.mof install -d $RPM_BUILD_ROOT/usr/bin install -m 755 %{S:2} $RPM_BUILD_ROOT/usr/bin/ install -m 755 %{S:3} $RPM_BUILD_ROOT/usr/bin/ %clean %__rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root) %dir /usr/share/mof %dir /usr/share/mof/cimv%{version} /usr/share/mof/cimv%{version}/* /usr/share/mof/cim-current /usr/bin/loadmof.sh /usr/bin/rmmof.sh %doc ../LICENSE %files docs %defattr(-, root, root) %doc ../%{name}-%{version}-docs/* %changelog * Tue Jul 14 2009 Matt Domsch - 2.22.0-1 - spec license change to MIT per Novell - remove BR: unzip, it's in the default buildroot already - add MIT license to spec file * Wed May 20 2009 Matt Domsch - 2.21.0-1 - upgrade to v2.22.0 * Thu Oct 23 2008 Matt Domsch - 2.19.1-1 - Upgraded to cimv2.19.1Experimental - now meets Fedora packaging guidelines too - added -docs subpackage * Wed May 14 2008 bwhiteley at suse.de - Upgraded to cimv2.18Experimental * Thu Jan 17 2008 bwhiteley at suse.de - Fixed order of includes so that it will import in pegasus. * Tue Jan 08 2008 bwhiteley at suse.de - Updated to cimv2.17Experimental (#341800) * Wed Nov 28 2007 bwhiteley at suse.de - Updated to cimv2.16Experimental (#341800) Remove carriage returns from MOF files. Fix broken comment blocks in 2.16 schema. * Thu Mar 29 2007 bwhiteley at suse.de - Added unzip to BuildRequires * Tue Mar 27 2007 bwhiteley at suse.de - Fixed inclusion of missing file (#258187) * Tue Mar 13 2007 bart at novell.com - Added some classes from 2.15 preliminary needed for Xen providers (#228365) * Fri Jan 19 2007 bwhiteley at suse.de - update to schema version 2.14 (#228365) * Mon Jan 08 2007 bwhiteley at suse.de - Combine all qualifiers back into one file (#232667) * Tue Dec 19 2006 bwhiteley at suse.de - added loadmof.sh script. (#228349) * Wed Dec 13 2006 bwhiteley at suse.de - Updated to schema version cimv2.13.1 (#228365) * Fri Oct 06 2006 bwhiteley at suse.de - Updated to schema version cimv2.13 * Mon May 08 2006 bwhiteley at suse.de - Updated to schema version cimv2.12, required for SMASH 1.0 compliance (#173777) * Fri May 05 2006 bwhiteley at suse.de - removed non-ascii char from CIM_DNSSettingData.mof (was breaking some XML parsers) (#172939) * Fri Feb 10 2006 bwhiteley at suse.de - fixed execute bit on directories (#149992) * Wed Jan 25 2006 mls at suse.de - converted neededforbuild to BuildRequires * Tue Jan 17 2006 bwhiteley at suse.de - Added a symlink cim-current so other packages don't have to hard- code cim schema versions. * Tue Jan 10 2006 bwhiteley at suse.de - Update to v2.11 Experimental. - Moved MOFs under /usr/share/mof * Thu Jan 13 2005 nashif at suse.de - Update to v2.9 Final * Tue Oct 12 2004 nashif at suse.de - Update with cim v2.9 * Tue Feb 17 2004 nashif at suse.de - Fixed directory permissions - build as normal user * Mon Feb 16 2004 nashif at suse.de - Updated to 2.8 final * Thu Nov 27 2003 nashif at suse.de - Initial Release --- NEW FILE import.log --- cim-schema-2_22_0-1:HEAD:cim-schema-2.22.0-1.src.rpm:1247770667 --- NEW FILE loadmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-loadmof.sh PEGLM=/usr/bin/peg-loadmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi --- NEW FILE rmmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-rmmof.sh PEGLM=/usr/bin/peg-rmmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/cim-schema/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:46:16 -0000 1.1 +++ .cvsignore 16 Jul 2009 18:58:32 -0000 1.2 @@ -0,0 +1,2 @@ +cim_schema_2.22.0Experimental-Doc.zip +cim_schema_2.22.0Experimental-MOFs.zip Index: sources =================================================================== RCS file: /cvs/extras/rpms/cim-schema/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:46:16 -0000 1.1 +++ sources 16 Jul 2009 18:58:33 -0000 1.2 @@ -0,0 +1,2 @@ +965a56879d23e82d0cf1b2cb474e6076 cim_schema_2.22.0Experimental-Doc.zip +3e55062f785a67a8548bae96afbec299 cim_schema_2.22.0Experimental-MOFs.zip From rdieter at fedoraproject.org Thu Jul 16 19:02:19 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 19:02:19 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.217,1.218 Message-ID: <20090716190219.609D211C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15802 Modified Files: kdebindings.spec Log Message: pyqt4_version 4.5.2 Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- kdebindings.spec 16 Jul 2009 18:58:25 -0000 1.217 +++ kdebindings.spec 16 Jul 2009 19:01:49 -0000 1.218 @@ -15,11 +15,7 @@ %define java 0 %define pykde4_akonadi 1 -%if 0%{?fedora} > 11 -%define pyqt4_version 4.5 -%else -%define pyqt4_version 4.4.2 -%endif +%define pyqt4_version 4.5.2 %if 0%{?ruby}%{?smoke} %define devel 1 @@ -493,6 +489,7 @@ rm -rf %{buildroot} %changelog * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - fix pykdeuic4-related install bits (kdebug#198162) +- pyqt4_version 4.5.2 * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From mdomsch at fedoraproject.org Thu Jul 16 19:02:11 2009 From: mdomsch at fedoraproject.org (Matt Domsch) Date: Thu, 16 Jul 2009 19:02:11 +0000 (UTC) Subject: rpms/cim-schema/devel cim-schema.spec,1.1,1.2 Message-ID: <20090716190211.5AB2811C0099@cvs1.fedora.phx.redhat.com> Author: mdomsch Update of /cvs/extras/rpms/cim-schema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15774 Modified Files: cim-schema.spec Log Message: add dist tag Index: cim-schema.spec =================================================================== RCS file: /cvs/extras/rpms/cim-schema/devel/cim-schema.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cim-schema.spec 16 Jul 2009 18:58:33 -0000 1.1 +++ cim-schema.spec 16 Jul 2009 19:01:41 -0000 1.2 @@ -35,7 +35,7 @@ Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: 2.22.0 -Release: 1 +Release: 1%{?dist} Group: Development/Libraries License: DMTF BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -108,6 +108,9 @@ install -m 755 %{S:3} $RPM_BUILD_ROOT/us %doc ../%{name}-%{version}-docs/* %changelog +* Thu Jul 16 2009 Matt Domsch - 2.22.0-1.fc12 +- add dist tag + * Tue Jul 14 2009 Matt Domsch - 2.22.0-1 - spec license change to MIT per Novell - remove BR: unzip, it's in the default buildroot already From wcohen at fedoraproject.org Thu Jul 16 19:04:56 2009 From: wcohen at fedoraproject.org (William Eden Cohen) Date: Thu, 16 Jul 2009 19:04:56 +0000 (UTC) Subject: rpms/oprofile/F-10 oprofile-jvmpi-lgpl.patch, NONE, 1.1 oprofile-verbose.patch, NONE, 1.1 oprofile.spec, 1.75, 1.76 Message-ID: <20090716190456.798BD11C0099@cvs1.fedora.phx.redhat.com> Author: wcohen Update of /cvs/pkgs/rpms/oprofile/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16078 Modified Files: oprofile.spec Added Files: oprofile-jvmpi-lgpl.patch oprofile-verbose.patch Log Message: - Add shadow-utils to requires. Resolves: rhbz #501357 - Add LGPL license to provided java support. Resolves: rhbz #474666 - Correct handling of --verbose. Resolves: rhbz #454969 oprofile-jvmpi-lgpl.patch: --- NEW FILE oprofile-jvmpi-lgpl.patch --- diff -paur oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp --- oprofile-0.9.4/agents/jvmpi/jvmpi_oprofile.cpp 2008-04-28 16:23:26.000000000 -0500 +++ oprofile-0.9.4-JVMPI-LGPL/agents/jvmpi/jvmpi_oprofile.cpp 2009-06-22 16:42:48.000000000 -0500 @@ -3,7 +3,20 @@ * JVMPI agent implementation to report jitted JVM code to OProfile * * @remark Copyright 2007 OProfile authors - * @remark Read the file COPYING + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Maynard Johnson * oprofile-verbose.patch: --- NEW FILE oprofile-verbose.patch --- diff -up oprofile-0.9.4/utils/opcontrol.verbose oprofile-0.9.4/utils/opcontrol --- oprofile-0.9.4/utils/opcontrol.verbose 2009-06-21 22:16:24.000000000 -0400 +++ oprofile-0.9.4/utils/opcontrol 2009-06-21 22:39:34.000000000 -0400 @@ -335,40 +335,6 @@ do_init() ;; esac fi - - vecho "Parameters used:" - vecho "SESSION_DIR $SESSION_DIR" - vecho "LOCK_FILE $LOCK_FILE" - vecho "SAMPLES_DIR $SAMPLES_DIR" - vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" - vecho "CPUTYPE $CPUTYPE" - if test "$BUF_SIZE" != "0"; then - vecho "BUF_SIZE $BUF_SIZE" - else - vecho "BUF_SIZE default value" - fi - if test "$BUF_WATERSHED" != "0"; then - vecho "BUF_WATERSHED $BUF_WATERSHED" - else - vecho "BUF_WATERSHED default value" - fi - if test "$KERNEL_SUPPORT" = "yes"; then - if test "$CPU_BUF_SIZE" != "0"; then - vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" - else - vecho "CPU_BUF_SIZE default value" - fi - fi - - vecho "SEPARATE_LIB $SEPARATE_LIB" - vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" - vecho "SEPARATE_THREAD $SEPARATE_THREAD" - vecho "SEPARATE_CPU $SEPARATE_CPU" - vecho "CALLGRAPH $CALLGRAPH" - vecho "VMLINUX $VMLINUX" - vecho "KERNEL_RANGE $KERNEL_RANGE" - vecho "XENIMAGE $XENIMAGE" - vecho "XEN_RANGE $XEN_RANGE" } @@ -1019,6 +985,40 @@ do_options() echo "Option \"--passive-domains\" or "--domains" can only be used with option \"--start-daemon\" or \"--start\"." >&2 exit 1 fi + + vecho "Parameters used:" + vecho "SESSION_DIR $SESSION_DIR" + vecho "LOCK_FILE $LOCK_FILE" + vecho "SAMPLES_DIR $SAMPLES_DIR" + vecho "CURRENT_SAMPLES_DIR $CURRENT_SAMPLES_DIR" + vecho "CPUTYPE $CPUTYPE" + if test "$BUF_SIZE" != "0"; then + vecho "BUF_SIZE $BUF_SIZE" + else + vecho "BUF_SIZE default value" + fi + if test "$BUF_WATERSHED" != "0"; then + vecho "BUF_WATERSHED $BUF_WATERSHED" + else + vecho "BUF_WATERSHED default value" + fi + if test "$KERNEL_SUPPORT" = "yes"; then + if test "$CPU_BUF_SIZE" != "0"; then + vecho "CPU_BUF_SIZE $CPU_BUF_SIZE" + else + vecho "CPU_BUF_SIZE default value" + fi + fi + + vecho "SEPARATE_LIB $SEPARATE_LIB" + vecho "SEPARATE_KERNEL $SEPARATE_KERNEL" + vecho "SEPARATE_THREAD $SEPARATE_THREAD" + vecho "SEPARATE_CPU $SEPARATE_CPU" + vecho "CALLGRAPH $CALLGRAPH" + vecho "VMLINUX $VMLINUX" + vecho "KERNEL_RANGE $KERNEL_RANGE" + vecho "XENIMAGE $XENIMAGE" + vecho "XEN_RANGE $XEN_RANGE" } Index: oprofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/oprofile/F-10/oprofile.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- oprofile.spec 12 May 2009 18:33:04 -0000 1.75 +++ oprofile.spec 16 Jul 2009 19:04:56 -0000 1.76 @@ -3,19 +3,23 @@ Summary: System wide profiler Name: oprofile Version: 0.9.4 -Release: 9%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Development/System # Source0: oprofile-%{version}.tar.gz Requires: binutils Requires: which +Requires(pre): shadow-utils Patch10: oprofile-0.4-guess2.patch Patch63: oprofile-0.7-libs.patch Patch83: oprofile-0.9.3-xen.patch #Patch100: oprofile-gcc43.patch Patch101: oprofile-basename.patch Patch102: oprofile-iaperf.patch +Patch103: oprofile-verbose.patch +Patch104: oprofile-jvmpi-lgpl.patch + URL: http://oprofile.sf.net ExclusiveArch: %{ix86} ia64 x86_64 ppc ppc64 s390 s390x alpha alphaev6 sparcv9 sparc64 @@ -76,7 +80,6 @@ Requires: /etc/ld.so.conf.d This package includes a base JIT support library, as well as a Java agent library. - %prep %setup -q -n %{name}-%{version} %patch10 -p1 -b .guess2 @@ -86,6 +89,8 @@ agent library. #%patch100 -p1 -b .gcc43 %patch101 -p1 -b .basename %patch102 -p1 -b .iaperf +%patch103 -p1 -b .verbose +%patch104 -p1 -b .lgpl ./autogen.sh @@ -227,6 +232,11 @@ exit 0 /etc/ld.so.conf.d/* %changelog +* Thu Jul 16 2009 Will Cohen - 0.9.4-12 +- Add shadow-utils to requires. Resolves: rhbz #501357 +- Add LGPL license to provided java support. Resolves: rhbz #474666 +- Correct handling of --verbose. Resolves: rhbz #454969 + * Mon May 11 2009 Will Cohen - 0.9.4-9 - Assign specific UID and GID to oprofile. From heffer at fedoraproject.org Thu Jul 16 19:06:34 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Thu, 16 Jul 2009 19:06:34 +0000 (UTC) Subject: rpms/em8300/devel .cvsignore, 1.19, 1.20 em8300.spec, 1.26, 1.27 sources, 1.19, 1.20 Message-ID: <20090716190634.D501E11C0099@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/em8300/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16302 Modified Files: .cvsignore em8300.spec sources Log Message: * Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 - new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/em8300/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 20 Feb 2009 18:19:37 -0000 1.19 +++ .cvsignore 16 Jul 2009 19:06:04 -0000 1.20 @@ -1 +1 @@ -em8300-nofirmware-0.17.2.tar.gz +em8300-nofirmware-0.17.3.tar.gz Index: em8300.spec =================================================================== RCS file: /cvs/pkgs/rpms/em8300/devel/em8300.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- em8300.spec 24 Feb 2009 14:35:09 -0000 1.26 +++ em8300.spec 16 Jul 2009 19:06:04 -0000 1.27 @@ -2,8 +2,8 @@ #global prever rc1 Name: em8300 -Version: 0.17.2 -Release: 3%{?prever:.%{prever}}%{?dist} +Version: 0.17.3 +Release: 1%{?prever:.%{prever}}%{?dist} Summary: DXR3/Hollywood Plus MPEG decoder card support tools Group: Applications/System @@ -141,6 +141,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 +- new upstream version + * Tue Feb 24 2009 Fedora Release Engineering - 0.17.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/em8300/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 20 Feb 2009 18:19:37 -0000 1.19 +++ sources 16 Jul 2009 19:06:04 -0000 1.20 @@ -1 +1 @@ -8796a6ea10bca6a150735a773b554e98 em8300-nofirmware-0.17.2.tar.gz +6332ddd72e95b15546d1b57b1d21856a em8300-nofirmware-0.17.3.tar.gz From mdomsch at fedoraproject.org Thu Jul 16 19:10:56 2009 From: mdomsch at fedoraproject.org (Matt Domsch) Date: Thu, 16 Jul 2009 19:10:56 +0000 (UTC) Subject: rpms/cim-schema/EL-5 LICENSE, NONE, 1.1 cim-schema.spec, NONE, 1.1 import.log, NONE, 1.1 loadmof.sh, NONE, 1.1 rmmof.sh, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716191056.7976511C0099@cvs1.fedora.phx.redhat.com> Author: mdomsch Update of /cvs/extras/rpms/cim-schema/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16851 Modified Files: .cvsignore sources Added Files: LICENSE cim-schema.spec import.log loadmof.sh rmmof.sh Log Message: initial import --- NEW FILE LICENSE --- // Copyright 1998-2008 Distributed Management Task Force, Inc. (DMTF). // All rights reserved. // DMTF is a not-for-profit association of industry members dedicated // to promoting enterprise and systems management and interoperability. // DMTF specifications and documents may be reproduced by // members and non-members, provided that correct attribution is given. // As DMTF specifications may be revised from time to time, // the particular version and release date should always be noted. // // Implementation of certain elements of this standard or proposed // standard may be subject to third party patent rights, including // provisional patent rights (herein "patent rights"). DMTF makes // no representations to users of the standard as to the existence // of such rights, and is not responsible to recognize, disclose, or // identify any or all such third party patent right, owners or // claimants, nor for any incomplete or inaccurate identification or // disclosure of such rights, owners or claimants. DMTF shall have no // liability to any party, in any manner or circumstance, under any // legal theory whatsoever, for failure to recognize, disclose, or // identify any such third party patent rights, or for such party's // reliance on the standard or incorporation thereof in its product, // protocols or testing procedures. DMTF shall have no liability to // any party implementing such standard, whether such implementation // is foreseeable or not, nor to any patent owner or claimant, and shall // have no liability or responsibility for costs or losses incurred if // a standard is withdrawn or modified after publication, and shall be // indemnified and held harmless by any party implementing the // standard from any and all claims of infringement by a patent owner // for such implementations. // // For information about patents held by third-parties which have // notified the DMTF that, in their opinion, such patent may relate to // or impact implementations of DMTF standards, visit // http://www.dmtf.org/about/policies/disclosures.php. --- NEW FILE cim-schema.spec --- # # spec file for package cim-schema # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. # # The license for this spec file is the MIT/X11 license: # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # norootforbuild Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: 2.22.0 Release: 1%{?dist} Group: Development/Libraries License: DMTF BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-MOFs.zip Source1: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-Doc.zip Source2: loadmof.sh Source3: rmmof.sh Source4: LICENSE BuildArch: noarch %package docs Summary: Common Information Model (CIM) Schema documentation Group: Documentation %description Common Information Model (CIM) is a model for describing overall management information in a network or enterprise environment. CIM consists of a specification and a schema. The specification defines the details for integration with other management models. The schema provides the actual model descriptions. Authors: -------- DTMF %description docs Common Information Model (CIM) schema documentation. %prep %setup -q -T -a 1 -c -n %{name}-%{version}-docs %setup -q -T -a 0 -c -n %{name}-%{version} cp -a %{SOURCE4} .. %build %install MOFDIR=%{_datadir}/mof CIMDIR=$MOFDIR/cimv%{version} %__rm -rf $RPM_BUILD_ROOT for i in `find . -name "*.mof"`; do sed -i -e 's/\r//g' $i done install -d $RPM_BUILD_ROOT/$CIMDIR chmod -R go-wx . chmod -R a+rX . %__mv * $RPM_BUILD_ROOT/$CIMDIR/ ln -s cimv%{version} $RPM_BUILD_ROOT/$MOFDIR/cim-current ln -s cim_schema_%{version}.mof $RPM_BUILD_ROOT/$MOFDIR/cim-current/CIM_Schema.mof install -d $RPM_BUILD_ROOT/usr/bin install -m 755 %{S:2} $RPM_BUILD_ROOT/usr/bin/ install -m 755 %{S:3} $RPM_BUILD_ROOT/usr/bin/ %clean %__rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root) %dir /usr/share/mof %dir /usr/share/mof/cimv%{version} /usr/share/mof/cimv%{version}/* /usr/share/mof/cim-current /usr/bin/loadmof.sh /usr/bin/rmmof.sh %doc ../LICENSE %files docs %defattr(-, root, root) %doc ../%{name}-%{version}-docs/* %changelog * Thu Jul 16 2009 Matt Domsch - 2.22.0-1.fc12 - add dist tag * Tue Jul 14 2009 Matt Domsch - 2.22.0-1 - spec license change to MIT per Novell - remove BR: unzip, it's in the default buildroot already - add MIT license to spec file * Wed May 20 2009 Matt Domsch - 2.21.0-1 - upgrade to v2.22.0 * Thu Oct 23 2008 Matt Domsch - 2.19.1-1 - Upgraded to cimv2.19.1Experimental - now meets Fedora packaging guidelines too - added -docs subpackage * Wed May 14 2008 bwhiteley at suse.de - Upgraded to cimv2.18Experimental * Thu Jan 17 2008 bwhiteley at suse.de - Fixed order of includes so that it will import in pegasus. * Tue Jan 08 2008 bwhiteley at suse.de - Updated to cimv2.17Experimental (#341800) * Wed Nov 28 2007 bwhiteley at suse.de - Updated to cimv2.16Experimental (#341800) Remove carriage returns from MOF files. Fix broken comment blocks in 2.16 schema. * Thu Mar 29 2007 bwhiteley at suse.de - Added unzip to BuildRequires * Tue Mar 27 2007 bwhiteley at suse.de - Fixed inclusion of missing file (#258187) * Tue Mar 13 2007 bart at novell.com - Added some classes from 2.15 preliminary needed for Xen providers (#228365) * Fri Jan 19 2007 bwhiteley at suse.de - update to schema version 2.14 (#228365) * Mon Jan 08 2007 bwhiteley at suse.de - Combine all qualifiers back into one file (#232667) * Tue Dec 19 2006 bwhiteley at suse.de - added loadmof.sh script. (#228349) * Wed Dec 13 2006 bwhiteley at suse.de - Updated to schema version cimv2.13.1 (#228365) * Fri Oct 06 2006 bwhiteley at suse.de - Updated to schema version cimv2.13 * Mon May 08 2006 bwhiteley at suse.de - Updated to schema version cimv2.12, required for SMASH 1.0 compliance (#173777) * Fri May 05 2006 bwhiteley at suse.de - removed non-ascii char from CIM_DNSSettingData.mof (was breaking some XML parsers) (#172939) * Fri Feb 10 2006 bwhiteley at suse.de - fixed execute bit on directories (#149992) * Wed Jan 25 2006 mls at suse.de - converted neededforbuild to BuildRequires * Tue Jan 17 2006 bwhiteley at suse.de - Added a symlink cim-current so other packages don't have to hard- code cim schema versions. * Tue Jan 10 2006 bwhiteley at suse.de - Update to v2.11 Experimental. - Moved MOFs under /usr/share/mof * Thu Jan 13 2005 nashif at suse.de - Update to v2.9 Final * Tue Oct 12 2004 nashif at suse.de - Update with cim v2.9 * Tue Feb 17 2004 nashif at suse.de - Fixed directory permissions - build as normal user * Mon Feb 16 2004 nashif at suse.de - Updated to 2.8 final * Thu Nov 27 2003 nashif at suse.de - Initial Release --- NEW FILE import.log --- cim-schema-2_22_0-1:HEAD:cim-schema-2.22.0-1.src.rpm:1247770667 --- NEW FILE loadmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-loadmof.sh PEGLM=/usr/bin/peg-loadmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi --- NEW FILE rmmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-rmmof.sh PEGLM=/usr/bin/peg-rmmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/cim-schema/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:46:16 -0000 1.1 +++ .cvsignore 16 Jul 2009 19:10:26 -0000 1.2 @@ -0,0 +1,2 @@ +cim_schema_2.22.0Experimental-Doc.zip +cim_schema_2.22.0Experimental-MOFs.zip Index: sources =================================================================== RCS file: /cvs/extras/rpms/cim-schema/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:46:16 -0000 1.1 +++ sources 16 Jul 2009 19:10:26 -0000 1.2 @@ -0,0 +1,2 @@ +965a56879d23e82d0cf1b2cb474e6076 cim_schema_2.22.0Experimental-Doc.zip +3e55062f785a67a8548bae96afbec299 cim_schema_2.22.0Experimental-MOFs.zip From heffer at fedoraproject.org Thu Jul 16 19:12:04 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Thu, 16 Jul 2009 19:12:04 +0000 (UTC) Subject: rpms/em8300/F-11 .cvsignore, 1.19, 1.20 em8300.spec, 1.26, 1.27 sources, 1.19, 1.20 Message-ID: <20090716191204.84D8A11C0099@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/em8300/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17042 Modified Files: .cvsignore em8300.spec sources Log Message: * Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 - new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-11/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 20 Feb 2009 18:19:37 -0000 1.19 +++ .cvsignore 16 Jul 2009 19:12:04 -0000 1.20 @@ -1 +1 @@ -em8300-nofirmware-0.17.2.tar.gz +em8300-nofirmware-0.17.3.tar.gz Index: em8300.spec =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-11/em8300.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- em8300.spec 24 Feb 2009 14:35:09 -0000 1.26 +++ em8300.spec 16 Jul 2009 19:12:04 -0000 1.27 @@ -2,8 +2,8 @@ #global prever rc1 Name: em8300 -Version: 0.17.2 -Release: 3%{?prever:.%{prever}}%{?dist} +Version: 0.17.3 +Release: 1%{?prever:.%{prever}}%{?dist} Summary: DXR3/Hollywood Plus MPEG decoder card support tools Group: Applications/System @@ -141,6 +141,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 +- new upstream version + * Tue Feb 24 2009 Fedora Release Engineering - 0.17.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 20 Feb 2009 18:19:37 -0000 1.19 +++ sources 16 Jul 2009 19:12:04 -0000 1.20 @@ -1 +1 @@ -8796a6ea10bca6a150735a773b554e98 em8300-nofirmware-0.17.2.tar.gz +6332ddd72e95b15546d1b57b1d21856a em8300-nofirmware-0.17.3.tar.gz From mdomsch at fedoraproject.org Thu Jul 16 19:12:09 2009 From: mdomsch at fedoraproject.org (Matt Domsch) Date: Thu, 16 Jul 2009 19:12:09 +0000 (UTC) Subject: rpms/cim-schema/F-11 LICENSE, NONE, 1.1 cim-schema.spec, NONE, 1.1 import.log, NONE, 1.1 loadmof.sh, NONE, 1.1 rmmof.sh, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090716191209.CA02211C0099@cvs1.fedora.phx.redhat.com> Author: mdomsch Update of /cvs/extras/rpms/cim-schema/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16997 Modified Files: .cvsignore sources Added Files: LICENSE cim-schema.spec import.log loadmof.sh rmmof.sh Log Message: initial import --- NEW FILE LICENSE --- // Copyright 1998-2008 Distributed Management Task Force, Inc. (DMTF). // All rights reserved. // DMTF is a not-for-profit association of industry members dedicated // to promoting enterprise and systems management and interoperability. // DMTF specifications and documents may be reproduced by // members and non-members, provided that correct attribution is given. // As DMTF specifications may be revised from time to time, // the particular version and release date should always be noted. // // Implementation of certain elements of this standard or proposed // standard may be subject to third party patent rights, including // provisional patent rights (herein "patent rights"). DMTF makes // no representations to users of the standard as to the existence // of such rights, and is not responsible to recognize, disclose, or // identify any or all such third party patent right, owners or // claimants, nor for any incomplete or inaccurate identification or // disclosure of such rights, owners or claimants. DMTF shall have no // liability to any party, in any manner or circumstance, under any // legal theory whatsoever, for failure to recognize, disclose, or // identify any such third party patent rights, or for such party's // reliance on the standard or incorporation thereof in its product, // protocols or testing procedures. DMTF shall have no liability to // any party implementing such standard, whether such implementation // is foreseeable or not, nor to any patent owner or claimant, and shall // have no liability or responsibility for costs or losses incurred if // a standard is withdrawn or modified after publication, and shall be // indemnified and held harmless by any party implementing the // standard from any and all claims of infringement by a patent owner // for such implementations. // // For information about patents held by third-parties which have // notified the DMTF that, in their opinion, such patent may relate to // or impact implementations of DMTF standards, visit // http://www.dmtf.org/about/policies/disclosures.php. --- NEW FILE cim-schema.spec --- # # spec file for package cim-schema # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. # # The license for this spec file is the MIT/X11 license: # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # norootforbuild Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: 2.22.0 Release: 1%{?dist} Group: Development/Libraries License: DMTF BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-MOFs.zip Source1: http://www.dmtf.org/standards/cim/cim_schema_v2220/cim_schema_%{version}Experimental-Doc.zip Source2: loadmof.sh Source3: rmmof.sh Source4: LICENSE BuildArch: noarch %package docs Summary: Common Information Model (CIM) Schema documentation Group: Documentation %description Common Information Model (CIM) is a model for describing overall management information in a network or enterprise environment. CIM consists of a specification and a schema. The specification defines the details for integration with other management models. The schema provides the actual model descriptions. Authors: -------- DTMF %description docs Common Information Model (CIM) schema documentation. %prep %setup -q -T -a 1 -c -n %{name}-%{version}-docs %setup -q -T -a 0 -c -n %{name}-%{version} cp -a %{SOURCE4} .. %build %install MOFDIR=%{_datadir}/mof CIMDIR=$MOFDIR/cimv%{version} %__rm -rf $RPM_BUILD_ROOT for i in `find . -name "*.mof"`; do sed -i -e 's/\r//g' $i done install -d $RPM_BUILD_ROOT/$CIMDIR chmod -R go-wx . chmod -R a+rX . %__mv * $RPM_BUILD_ROOT/$CIMDIR/ ln -s cimv%{version} $RPM_BUILD_ROOT/$MOFDIR/cim-current ln -s cim_schema_%{version}.mof $RPM_BUILD_ROOT/$MOFDIR/cim-current/CIM_Schema.mof install -d $RPM_BUILD_ROOT/usr/bin install -m 755 %{S:2} $RPM_BUILD_ROOT/usr/bin/ install -m 755 %{S:3} $RPM_BUILD_ROOT/usr/bin/ %clean %__rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root) %dir /usr/share/mof %dir /usr/share/mof/cimv%{version} /usr/share/mof/cimv%{version}/* /usr/share/mof/cim-current /usr/bin/loadmof.sh /usr/bin/rmmof.sh %doc ../LICENSE %files docs %defattr(-, root, root) %doc ../%{name}-%{version}-docs/* %changelog * Thu Jul 16 2009 Matt Domsch - 2.22.0-1.fc12 - add dist tag * Tue Jul 14 2009 Matt Domsch - 2.22.0-1 - spec license change to MIT per Novell - remove BR: unzip, it's in the default buildroot already - add MIT license to spec file * Wed May 20 2009 Matt Domsch - 2.21.0-1 - upgrade to v2.22.0 * Thu Oct 23 2008 Matt Domsch - 2.19.1-1 - Upgraded to cimv2.19.1Experimental - now meets Fedora packaging guidelines too - added -docs subpackage * Wed May 14 2008 bwhiteley at suse.de - Upgraded to cimv2.18Experimental * Thu Jan 17 2008 bwhiteley at suse.de - Fixed order of includes so that it will import in pegasus. * Tue Jan 08 2008 bwhiteley at suse.de - Updated to cimv2.17Experimental (#341800) * Wed Nov 28 2007 bwhiteley at suse.de - Updated to cimv2.16Experimental (#341800) Remove carriage returns from MOF files. Fix broken comment blocks in 2.16 schema. * Thu Mar 29 2007 bwhiteley at suse.de - Added unzip to BuildRequires * Tue Mar 27 2007 bwhiteley at suse.de - Fixed inclusion of missing file (#258187) * Tue Mar 13 2007 bart at novell.com - Added some classes from 2.15 preliminary needed for Xen providers (#228365) * Fri Jan 19 2007 bwhiteley at suse.de - update to schema version 2.14 (#228365) * Mon Jan 08 2007 bwhiteley at suse.de - Combine all qualifiers back into one file (#232667) * Tue Dec 19 2006 bwhiteley at suse.de - added loadmof.sh script. (#228349) * Wed Dec 13 2006 bwhiteley at suse.de - Updated to schema version cimv2.13.1 (#228365) * Fri Oct 06 2006 bwhiteley at suse.de - Updated to schema version cimv2.13 * Mon May 08 2006 bwhiteley at suse.de - Updated to schema version cimv2.12, required for SMASH 1.0 compliance (#173777) * Fri May 05 2006 bwhiteley at suse.de - removed non-ascii char from CIM_DNSSettingData.mof (was breaking some XML parsers) (#172939) * Fri Feb 10 2006 bwhiteley at suse.de - fixed execute bit on directories (#149992) * Wed Jan 25 2006 mls at suse.de - converted neededforbuild to BuildRequires * Tue Jan 17 2006 bwhiteley at suse.de - Added a symlink cim-current so other packages don't have to hard- code cim schema versions. * Tue Jan 10 2006 bwhiteley at suse.de - Update to v2.11 Experimental. - Moved MOFs under /usr/share/mof * Thu Jan 13 2005 nashif at suse.de - Update to v2.9 Final * Tue Oct 12 2004 nashif at suse.de - Update with cim v2.9 * Tue Feb 17 2004 nashif at suse.de - Fixed directory permissions - build as normal user * Mon Feb 16 2004 nashif at suse.de - Updated to 2.8 final * Thu Nov 27 2003 nashif at suse.de - Initial Release --- NEW FILE import.log --- cim-schema-2_22_0-1:HEAD:cim-schema-2.22.0-1.src.rpm:1247770667 --- NEW FILE loadmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-loadmof.sh PEGLM=/usr/bin/peg-loadmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi --- NEW FILE rmmof.sh --- #!/bin/sh OWLM=/usr/bin/ow-rmmof.sh PEGLM=/usr/bin/peg-rmmof.sh if [ -x $OWLM ]; then $OWLM $@ fi if [ -x $PEGLM ]; then $PEGLM $@ fi Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/cim-schema/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 16 Jul 2009 05:46:16 -0000 1.1 +++ .cvsignore 16 Jul 2009 19:11:39 -0000 1.2 @@ -0,0 +1,2 @@ +cim_schema_2.22.0Experimental-Doc.zip +cim_schema_2.22.0Experimental-MOFs.zip Index: sources =================================================================== RCS file: /cvs/extras/rpms/cim-schema/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:46:16 -0000 1.1 +++ sources 16 Jul 2009 19:11:39 -0000 1.2 @@ -0,0 +1,2 @@ +965a56879d23e82d0cf1b2cb474e6076 cim_schema_2.22.0Experimental-Doc.zip +3e55062f785a67a8548bae96afbec299 cim_schema_2.22.0Experimental-MOFs.zip From jussilehtola at fedoraproject.org Thu Jul 16 19:12:45 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 19:12:45 +0000 (UTC) Subject: rpms/jmol/EL-5 jmol.spec,1.6,1.7 Message-ID: <20090716191245.D184711C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17069/EL-5 Modified Files: jmol.spec Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jmol.spec 16 Jul 2009 16:37:20 -0000 1.6 +++ jmol.spec 16 Jul 2009 19:12:15 -0000 1.7 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 10.%{svnrel}svn%{?dist} +Release: 11.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -15,7 +15,6 @@ BuildArch: noarch # The source package has been created from SVN sources: # svn export -r %{svnrel} https://jmol.svn.sourceforge.net/svnroot/jmol/branches/v11_6/Jmol Source0: %{name}-%{version}.%{svnrel}.tar.bz2 -Source1: jmol.desktop # Image available at "http://wiki.jmol.org:81/index.php/Image:Jmol_icon_128.png" Source2: Jmol_icon_128.png # Patch disabling jar signing @@ -60,27 +59,31 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Make desktop file +cat > jmol.desktop << EOF +[Desktop Entry] +Encoding=UTF-8 +Name=Jmol +Comment=An open-source Java viewer for chemical structures in 3D +Exec=jmol +Icon=jmol +Terminal=false +Type=Application +Categories=Education;Science; +EOF + %build ant doc main %install rm -rf %{buildroot} - install -D -p -m 755 jmol %{buildroot}%{_bindir}/%{name} - -install -D -p -m 444 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar -install -D -p -m 444 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar - -install -D -p -m 444 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png - -# Convert documentation to UTF-8 -for txtfile in README.txt COPYRIGHT.txt LICENSE.txt; do - iconv -f ASCII -t UTF-8 $txtfile >$txtfile.new && mv $txtfile{.new,} -done +install -D -p -m 644 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar +install -D -p -m 644 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar +install -D -p -m 644 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png # Install desktop file -desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ - --vendor=fedora %{SOURCE1} +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications --vendor=fedora jmol.desktop # Javadoc files mkdir -p %{buildroot}%{_javadocdir}/%{name} @@ -93,19 +96,22 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc build/doc/* README.txt COPYRIGHT.txt LICENSE.txt %{_bindir}/%{name} -%{_datadir}/%{name} +%{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/fedora-%{name}.desktop %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %files doc %defattr(-,root,root,-) %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-11.11223svn +- Include desktop file in the spec. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn - Bump release to be able to rebuild in koji. From jussilehtola at fedoraproject.org Thu Jul 16 19:12:46 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 19:12:46 +0000 (UTC) Subject: rpms/jmol/devel jmol.spec,1.8,1.9 Message-ID: <20090716191246.012A511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17069/devel Modified Files: jmol.spec Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jmol.spec 16 Jul 2009 16:37:21 -0000 1.8 +++ jmol.spec 16 Jul 2009 19:12:15 -0000 1.9 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 10.%{svnrel}svn%{?dist} +Release: 11.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -15,7 +15,6 @@ BuildArch: noarch # The source package has been created from SVN sources: # svn export -r %{svnrel} https://jmol.svn.sourceforge.net/svnroot/jmol/branches/v11_6/Jmol Source0: %{name}-%{version}.%{svnrel}.tar.bz2 -Source1: jmol.desktop # Image available at "http://wiki.jmol.org:81/index.php/Image:Jmol_icon_128.png" Source2: Jmol_icon_128.png # Patch disabling jar signing @@ -60,27 +59,31 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Make desktop file +cat > jmol.desktop << EOF +[Desktop Entry] +Encoding=UTF-8 +Name=Jmol +Comment=An open-source Java viewer for chemical structures in 3D +Exec=jmol +Icon=jmol +Terminal=false +Type=Application +Categories=Education;Science; +EOF + %build ant doc main %install rm -rf %{buildroot} - install -D -p -m 755 jmol %{buildroot}%{_bindir}/%{name} - -install -D -p -m 444 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar -install -D -p -m 444 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar - -install -D -p -m 444 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png - -# Convert documentation to UTF-8 -for txtfile in README.txt COPYRIGHT.txt LICENSE.txt; do - iconv -f ASCII -t UTF-8 $txtfile >$txtfile.new && mv $txtfile{.new,} -done +install -D -p -m 644 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar +install -D -p -m 644 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar +install -D -p -m 644 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png # Install desktop file -desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ - --vendor=fedora %{SOURCE1} +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications --vendor=fedora jmol.desktop # Javadoc files mkdir -p %{buildroot}%{_javadocdir}/%{name} @@ -93,19 +96,22 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc build/doc/* README.txt COPYRIGHT.txt LICENSE.txt %{_bindir}/%{name} -%{_datadir}/%{name} +%{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/fedora-%{name}.desktop %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %files doc %defattr(-,root,root,-) %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-11.11223svn +- Include desktop file in the spec. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn - Bump release to be able to rebuild in koji. From heffer at fedoraproject.org Thu Jul 16 19:16:47 2009 From: heffer at fedoraproject.org (Felix Kaechele) Date: Thu, 16 Jul 2009 19:16:47 +0000 (UTC) Subject: rpms/em8300/F-10 .cvsignore, 1.19, 1.20 em8300.spec, 1.25, 1.26 sources, 1.19, 1.20 Message-ID: <20090716191647.5F14F11C0099@cvs1.fedora.phx.redhat.com> Author: heffer Update of /cvs/pkgs/rpms/em8300/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17470 Modified Files: .cvsignore em8300.spec sources Log Message: * Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 - new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-10/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 9 Nov 2008 20:28:52 -0000 1.19 +++ .cvsignore 16 Jul 2009 19:16:47 -0000 1.20 @@ -1 +1 @@ -em8300-nofirmware-0.17.2.tar.gz +em8300-nofirmware-0.17.3.tar.gz Index: em8300.spec =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-10/em8300.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- em8300.spec 9 Nov 2008 20:28:53 -0000 1.25 +++ em8300.spec 16 Jul 2009 19:16:47 -0000 1.26 @@ -1,7 +1,8 @@ -#define prever rc1 +%global rpmver %(v=$(rpmbuild --version | sed -e 's/.* //') ; echo ${v:-0}) +#global prever rc1 Name: em8300 -Version: 0.17.2 +Version: 0.17.3 Release: 1%{?prever:.%{prever}}%{?dist} Summary: DXR3/Hollywood Plus MPEG decoder card support tools @@ -39,6 +40,9 @@ Requires: %{name} = %{version}-%{r %package devel Summary: Development files for DXR3/Hollywood Plus MPEG decoder cards Group: Development/Libraries +%if "%{rpmver}" >= "4.6.0" +BuildArch: noarch +%endif # Does not require main package on purpose: #189400 Requires: kernel-headers @@ -99,19 +103,17 @@ rm -rf $RPM_BUILD_ROOT %pre getent group video >/dev/null || groupadd -r video || : -%post -touch --no-create %{_datadir}/icons/hicolor &>/dev/null -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor -fi -: +%post utils +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : -%postun -touch --no-create %{_datadir}/icons/hicolor &>/dev/null -if [ -x %{_bindir}/gtk-update-icon-cache ] ; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +%postun utils +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi -: + +%posttrans utils +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.files @@ -139,6 +141,16 @@ fi %changelog +* Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 +- new upstream version + +* Tue Feb 24 2009 Fedora Release Engineering - 0.17.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Feb 20 2009 Ville Skytt?? - 0.17.2-2 +- Improve icon cache refresh scriptlets, move them to -utils where they belong. +- Make -devel subpackage noarch when built with rpmbuild >= 4.6.0. + * Sun Nov 09 2008 Felix Kaechele - 0.17.2-1 - 0.17.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/em8300/F-10/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 9 Nov 2008 20:28:53 -0000 1.19 +++ sources 16 Jul 2009 19:16:47 -0000 1.20 @@ -1 +1 @@ -8796a6ea10bca6a150735a773b554e98 em8300-nofirmware-0.17.2.tar.gz +6332ddd72e95b15546d1b57b1d21856a em8300-nofirmware-0.17.3.tar.gz From rdieter at fedoraproject.org Thu Jul 16 19:21:12 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 19:21:12 +0000 (UTC) Subject: rpms/soprano/devel .cvsignore, 1.21, 1.22 soprano.spec, 1.35, 1.36 sources, 1.21, 1.22 Message-ID: <20090716192112.29FB011C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/soprano/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17817 Modified Files: .cvsignore soprano.spec sources Log Message: * Thu Jul 16 2009 Rex Dieter - 2.3.0-1 - soprano-2.3.0 - upstream dropped virtuoso backend ): Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/soprano/devel/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 26 Jun 2009 14:40:56 -0000 1.21 +++ .cvsignore 16 Jul 2009 19:20:41 -0000 1.22 @@ -1 +1 @@ -soprano-2.2.69.tar.bz2 +soprano-2.3.0.tar.bz2 Index: soprano.spec =================================================================== RCS file: /cvs/pkgs/rpms/soprano/devel/soprano.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- soprano.spec 26 Jun 2009 14:40:57 -0000 1.35 +++ soprano.spec 16 Jul 2009 19:20:41 -0000 1.36 @@ -6,7 +6,7 @@ Summary: Qt wrapper API to different RDF storage solutions Name: soprano -Version: 2.2.69 +Version: 2.3.0 Release: 1%{?dist} Group: System Environment/Libraries @@ -22,7 +22,8 @@ Patch50: soprano-2.2.69-cmake_DATA_INSTA BuildRequires: clucene-core-devel >= 0.9.20-2 BuildRequires: cmake BuildRequires: kde-filesystem -BuildRequires: libiodbc-devel +# for backends/virtuoso +#BuildRequires: libiodbc-devel BuildRequires: qt4-devel BuildRequires: redland-devel >= 1.0.6 BuildRequires: raptor-devel >= 1.4.15 @@ -126,6 +127,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Rex Dieter - 2.3.0-1 +- soprano-2.3.0 +- upstream dropped virtuoso backend ): + * Fri Jun 26 2009 Rex Dieter - 2.2.69-1 - soprano-2.2.69 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/soprano/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 26 Jun 2009 14:40:57 -0000 1.21 +++ sources 16 Jul 2009 19:20:41 -0000 1.22 @@ -1 +1 @@ -52b6e853cc09aeb0ac775ee08000fd45 soprano-2.2.69.tar.bz2 +286d5d37c1d4f070527758e79706d1a7 soprano-2.3.0.tar.bz2 From walters at fedoraproject.org Thu Jul 16 19:30:24 2009 From: walters at fedoraproject.org (Colin Walters) Date: Thu, 16 Jul 2009 19:30:24 +0000 (UTC) Subject: rpms/dbus/devel .cvsignore, 1.41, 1.42 dbus.spec, 1.168, 1.169 sources, 1.42, 1.43 Message-ID: <20090716193024.9E47111C0099@cvs1.fedora.phx.redhat.com> Author: walters Update of /cvs/pkgs/rpms/dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19100 Modified Files: .cvsignore dbus.spec sources Log Message: * Tue Jul 14 2009 Colin Walters - 1:1.2.16-1 - Upstream 1.2.16 - Remove inotify patch, now upstreamed - Remove timeout patch, obsolete with upstream change to infinite timeout maximum by default Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 7 May 2009 20:56:32 -0000 1.41 +++ .cvsignore 16 Jul 2009 19:30:24 -0000 1.42 @@ -1 +1 @@ -dbus-1.2.14.tar.gz +dbus-1.2.16.tar.gz Index: dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/dbus.spec,v retrieving revision 1.168 retrieving revision 1.169 diff -u -p -r1.168 -r1.169 --- dbus.spec 27 Jun 2009 22:57:02 -0000 1.168 +++ dbus.spec 16 Jul 2009 19:30:24 -0000 1.169 @@ -8,8 +8,8 @@ Summary: D-BUS message bus Name: dbus Epoch: 1 -Version: 1.2.14 -Release: 2%{?dist} +Version: 1.2.16 +Release: 1%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.gz Source1: doxygen_to_devhelp.xsl @@ -40,9 +40,6 @@ Conflicts: cups < 1:1.1.20-4 Patch0: start-early.patch Patch1: dbus-1.0.1-generate-xml-docs.patch -Patch6: dbus-1.2.1-increase-timeout.patch -# https://bugs.freedesktop.org/show_bug.cgi?id=22516 -Patch7: dbus-inotify-fd-leak.patch %description D-BUS is a system for sending messages between applications. It is @@ -97,8 +94,6 @@ in this separate package so server syste %patch0 -p1 -b .start-early %patch1 -p1 -b .generate-xml-docs -%patch6 -p1 -b .increase-timeout -%patch7 -p1 -b .inotify-fd-leak autoreconf -f -i @@ -230,6 +225,12 @@ fi %{_includedir}/* %changelog +* Tue Jul 14 2009 Colin Walters - 1:1.2.16-1 +- Upstream 1.2.16 +- Remove inotify patch, now upstreamed +- Remove timeout patch, obsolete with upstream change to infinite + timeout maximum by default + * Sat Jun 27 2009 Matthias Clasen - 1:1.2.14-2 - Don't leak inotify fd (#505338) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 7 May 2009 20:56:32 -0000 1.42 +++ sources 16 Jul 2009 19:30:24 -0000 1.43 @@ -1 +1 @@ -2c267ccd45d0b18db8c9edacad63ec98 dbus-1.2.14.tar.gz +9cdae6a52442b62ffa4861757b1635b0 dbus-1.2.16.tar.gz From timj at fedoraproject.org Thu Jul 16 19:31:49 2009 From: timj at fedoraproject.org (Tim Jackson) Date: Thu, 16 Jul 2009 19:31:49 +0000 (UTC) Subject: rpms/alsa-tools/devel alsa-tools.spec,1.27,1.28 Message-ID: <20090716193149.10DB711C0099@cvs1.fedora.phx.redhat.com> Author: timj Update of /cvs/extras/rpms/alsa-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19267 Modified Files: alsa-tools.spec Log Message: Fix NVR for rawhide Index: alsa-tools.spec =================================================================== RCS file: /cvs/extras/rpms/alsa-tools/devel/alsa-tools.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- alsa-tools.spec 30 May 2009 10:51:18 -0000 1.27 +++ alsa-tools.spec 16 Jul 2009 19:31:18 -0000 1.28 @@ -23,7 +23,7 @@ Summary: Specialist tools for ALSA Name: alsa-tools Version: 1.0.20 -Release: 1%{?dist}.2 +Release: 2%{?dist} # Checked at least one source file from all the sub-projects contained in # the source tarball and they are consistent GPLv2+ - TJ 2007-11-15 From mclasen at fedoraproject.org Thu Jul 16 19:36:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 16 Jul 2009 19:36:18 +0000 (UTC) Subject: rpms/gnome-screensaver/devel button-images.patch, NONE, 1.1 gnome-screensaver.spec, 1.216, 1.217 Message-ID: <20090716193618.81E6A11C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-screensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20140 Modified Files: gnome-screensaver.spec Added Files: button-images.patch Log Message: Respect button-images setting button-images.patch: --- NEW FILE button-images.patch --- diff -up gnome-screensaver-2.27.0/data/gnome-screensaver-preferences.ui.button-images gnome-screensaver-2.27.0/data/gnome-screensaver-preferences.ui --- gnome-screensaver-2.27.0/data/gnome-screensaver-preferences.ui.button-images 2009-07-16 15:30:41.194368588 -0400 +++ gnome-screensaver-2.27.0/data/gnome-screensaver-preferences.ui 2009-07-16 15:29:57.822583091 -0400 @@ -1,6 +1,14 @@ + + gtk-fullscreen + 4 + + + gtk-jump-to + 4 + 120 1 @@ -55,66 +63,9 @@ True GTK_RELIEF_NORMAL True - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - True - False - 2 - - - True - gtk-jump-to - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - Power _Management - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - + power_image + Power _Management + True @@ -244,66 +195,9 @@ True GTK_RELIEF_NORMAL True - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - True - False - 2 - - - True - gtk-fullscreen - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - True - _Preview - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - + preview_image + _Preview + True Index: gnome-screensaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-screensaver/devel/gnome-screensaver.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- gnome-screensaver.spec 15 Jul 2009 21:53:04 -0000 1.216 +++ gnome-screensaver.spec 16 Jul 2009 19:36:18 -0000 1.217 @@ -14,7 +14,7 @@ Summary: GNOME Screensaver Name: gnome-screensaver Version: 2.27.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Amusements/Graphics Source0: http://download.gnome.org/sources/gnome-screensaver/2.27/%{name}-%{version}.tar.bz2 @@ -25,6 +25,10 @@ Patch2: gnome-screensaver-2.26.0-securit Patch3: 0001-Disable-the-password-entry-when-using-non-password-a.patch Patch7: gnome-screensaver-2.20.0-blank-by-default.patch Patch8: gnome-screensaver-2.20.0-selinux-permit.patch +# from upstream +Patch9: use-gtkbuilder.patch +# from upstream +Patch10: button-images.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://www.gnome.org @@ -32,7 +36,6 @@ BuildRequires: gtk2-devel => %{gtk2_vers BuildRequires: libgnomeui-devel => %{libgnomeui_version} BuildRequires: dbus-devel >= %{dbus_version} BuildRequires: dbus-glib-devel >= %{dbus_glib_version} -BuildRequires: libglade2-devel => %{libglade2_version} BuildRequires: libxml2-devel >= %{libxml2_version} BuildRequires: GConf2-devel >= %{gconf2_version} BuildRequires: gnome-menus-devel >= %{gnome_menus_version} @@ -79,6 +82,8 @@ simple, sane, secure defaults and be wel %patch3 -p1 -b .disable-entry %patch7 -p1 -b .blank-by-default %patch8 -p1 -b .selinux-permit +%patch9 -p1 -b .use-gtkbuilder +%patch10 -p1 -b .button-images libtoolize --force --copy @@ -149,6 +154,10 @@ fi %doc %{_mandir}/man1/*.1.gz %changelog +* Thu Jul 16 2009 Matthias Clasen 2.27.0-4 +- Use GtkBulider +- Respect button-images setting + * Wed Jul 15 2009 Matthias Clasen 2.27.0-3 - Rebuild against new libgnomekbd From timj at fedoraproject.org Thu Jul 16 19:41:47 2009 From: timj at fedoraproject.org (Tim Jackson) Date: Thu, 16 Jul 2009 19:41:47 +0000 (UTC) Subject: rpms/alsa-tools/devel alsa-tools.spec,1.28,1.29 Message-ID: <20090716194148.0159D11C0099@cvs1.fedora.phx.redhat.com> Author: timj Update of /cvs/extras/rpms/alsa-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20983 Modified Files: alsa-tools.spec Log Message: Fix changelog Index: alsa-tools.spec =================================================================== RCS file: /cvs/extras/rpms/alsa-tools/devel/alsa-tools.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- alsa-tools.spec 16 Jul 2009 19:31:18 -0000 1.28 +++ alsa-tools.spec 16 Jul 2009 19:41:47 -0000 1.29 @@ -218,6 +218,8 @@ install -m 644 %{SOURCE5} ${RPM_BUILD_RO %endif %changelog +* Thu Jul 16 2009 Tim Jackson - 1.0.20-2 + * Sun May 10 2009 Tim Jackson - 1.0.20-1.fc12.2 - Update to 1.0.20 From pkgdb at fedoraproject.org Thu Jul 16 20:07:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 20:07:20 +0000 Subject: [pkgdb] dbus-glib: walters has requested commit Message-ID: <20090716200720.DE02510F8CE@bastion2.fedora.phx.redhat.com> walters has requested the commit acl on dbus-glib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dbus-glib From pkgdb at fedoraproject.org Thu Jul 16 20:09:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 20:09:18 +0000 Subject: [pkgdb] dbus-glib had acl change status Message-ID: <20090716200918.7740F10F8AF@bastion2.fedora.phx.redhat.com> davidz has set the watchbugzilla acl on dbus-glib (Fedora devel) to Approved for walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dbus-glib From pkgdb at fedoraproject.org Thu Jul 16 20:09:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 20:09:19 +0000 Subject: [pkgdb] dbus-glib had acl change status Message-ID: <20090716200919.5FC1810F8C2@bastion2.fedora.phx.redhat.com> davidz has set the watchcommits acl on dbus-glib (Fedora devel) to Approved for walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dbus-glib From pkgdb at fedoraproject.org Thu Jul 16 20:09:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 20:09:20 +0000 Subject: [pkgdb] dbus-glib had acl change status Message-ID: <20090716200921.223D210F8C5@bastion2.fedora.phx.redhat.com> davidz has set the commit acl on dbus-glib (Fedora devel) to Approved for walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dbus-glib From pkgdb at fedoraproject.org Thu Jul 16 20:09:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 20:09:22 +0000 Subject: [pkgdb] dbus-glib had acl change status Message-ID: <20090716200922.C573210F8C9@bastion2.fedora.phx.redhat.com> davidz has set the approveacls acl on dbus-glib (Fedora devel) to Approved for walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dbus-glib From rdieter at fedoraproject.org Thu Jul 16 20:17:27 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 20:17:27 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.488,1.489 Message-ID: <20090716201727.762B611C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26774 Modified Files: kdelibs.spec Log Message: * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - soprano_ver 2.3.0 - License: LGPLv2+ Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.488 retrieving revision 1.489 diff -u -p -r1.488 -r1.489 --- kdelibs.spec 13 Jul 2009 14:39:09 -0000 1.488 +++ kdelibs.spec 16 Jul 2009 20:16:57 -0000 1.489 @@ -1,11 +1,11 @@ %define phonon_ver 4.3.0 -%define soprano_ver 2.2.69 +%define soprano_ver 2.3.0 %define strigi_ver 0.6.5 Summary: K Desktop Environment 4 - Libraries Version: 4.2.96 -Release: 1%{?dist} +Release: 2%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -17,10 +17,8 @@ Provides: kdelibs4 = %{version}-%{relea Name: kdelibs4 %endif -# LGPLv2: everything, except (see below) -# BSD: kdoctools/ -# GFDL: kdoctools/customization ? -License: LGPLv2 +# http://techbase.kde.org/Policies/Licensing_Policy +License: LGPLv2+ URL: http://www.kde.org/ Group: System Environment/Libraries Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdelibs-%{version}.tar.bz2 @@ -399,6 +397,10 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- soprano_ver 2.3.0 +- License: LGPLv2+ + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From rdieter at fedoraproject.org Thu Jul 16 20:18:41 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 20:18:41 +0000 (UTC) Subject: rpms/kdebase-runtime/devel kdebase-runtime.spec,1.127,1.128 Message-ID: <20090716201841.47A6F11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27086 Modified Files: kdebase-runtime.spec Log Message: * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - respin (soprano-2.3.0) - License: LGPLv2+ Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- kdebase-runtime.spec 9 Jul 2009 21:33:07 -0000 1.127 +++ kdebase-runtime.spec 16 Jul 2009 20:18:41 -0000 1.128 @@ -1,11 +1,13 @@ + %define flags 1 Name: kdebase-runtime Summary: K Desktop Environment - Runtime Version: 4.2.96 -Release: 1%{?dist} +Release: 2%{?dist} -License: GPLv2 +# http://techbase.kde.org/Policies/Licensing_Policy +License: LGPLv2+ Group: User Interface/Desktops URL: http://www.kde.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -53,7 +55,7 @@ BuildRequires: openssl-devel BuildRequires: pkgconfig BuildRequires: pulseaudio-libs-devel BuildRequires: qimageblitz-devel -BuildRequires: soprano-devel >= 2.2.67 +BuildRequires: soprano-devel >= 2.3.0 BuildRequires: xine-lib-devel libxcb-devel # needed? BuildRequires: xorg-x11-font-utils @@ -211,6 +213,10 @@ fi %changelog +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- respin (soprano-2.3.0) +- License: LGPLv2+ + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From walters at fedoraproject.org Thu Jul 16 20:21:03 2009 From: walters at fedoraproject.org (Colin Walters) Date: Thu, 16 Jul 2009 20:21:03 +0000 (UTC) Subject: rpms/dbus-glib/devel .cvsignore, 1.8, 1.9 dbus-glib.spec, 1.38, 1.39 sources, 1.8, 1.9 0001-Bug-19441-Don-t-send-reply-when-none-is-requested.patch, 1.1, NONE dbus-glib-0.74-getall-wincaps-to-uscore.patch, 1.1, NONE dbus-glib-0.77-bash-completion.patch, 1.1, NONE dbus-gproxy-cancel.patch, 1.1, NONE gethostbyname.patch, 1.1, NONE Message-ID: <20090716202103.5998111C0099@cvs1.fedora.phx.redhat.com> Author: walters Update of /cvs/pkgs/rpms/dbus-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27483 Modified Files: .cvsignore dbus-glib.spec sources Removed Files: 0001-Bug-19441-Don-t-send-reply-when-none-is-requested.patch dbus-glib-0.74-getall-wincaps-to-uscore.patch dbus-glib-0.77-bash-completion.patch dbus-gproxy-cancel.patch gethostbyname.patch Log Message: * Thu Jul 16 2009 Colin Walters - 0.82-1 - New upstream 0.82 - Remove mclasen accidental commit of CFLAGS="-O0 -g3" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dbus-glib/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 2 Feb 2009 21:53:54 -0000 1.8 +++ .cvsignore 16 Jul 2009 20:20:32 -0000 1.9 @@ -1 +1 @@ -dbus-glib-0.80.tar.gz +dbus-glib-0.82.tar.gz Index: dbus-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-glib/devel/dbus-glib.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- dbus-glib.spec 14 Jun 2009 21:29:03 -0000 1.38 +++ dbus-glib.spec 16 Jul 2009 20:20:33 -0000 1.39 @@ -7,8 +7,8 @@ Summary: GLib bindings for D-Bus Name: dbus-glib -Version: 0.80 -Release: 3%{?dist} +Version: 0.82 +Release: 1%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz Source1: dbus-bus-introspect.xml @@ -71,7 +71,7 @@ autoreconf #build with checks for right now but disable checks for final release #%configure --disable-tests --disable-verbose-mode --disable-asserts -make CFLAGS="-O0 -g3" +make %install rm -rf %{buildroot} @@ -104,6 +104,7 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/dbus-glib-1.pc %{_includedir}/dbus-1.0/dbus/* %{_datadir}/gtk-doc/html/dbus-glib +%{_mandir}/man1/* %{_sysconfdir}/bash_completion.d/dbus-bash-completion.sh %{_libexecdir}/dbus-bash-completion-helper @@ -116,6 +117,10 @@ rm -rf %{buildroot} %endif %changelog +* Thu Jul 16 2009 Colin Walters - 0.82-1 +- New upstream 0.82 +- Remove mclasen accidental commit of CFLAGS="-O0 -g3" + * Sun Jun 14 2009 Matthias Clasen - 0.80-3 - Minor directory ownership cleanup Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dbus-glib/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 2 Feb 2009 21:53:54 -0000 1.8 +++ sources 16 Jul 2009 20:20:33 -0000 1.9 @@ -1 +1 @@ -86ea60ba2118a1b9deafe8257f6a6a1a dbus-glib-0.80.tar.gz +aa2a4517de0e9144be3bce2cf8cdd924 dbus-glib-0.82.tar.gz --- 0001-Bug-19441-Don-t-send-reply-when-none-is-requested.patch DELETED --- --- dbus-glib-0.74-getall-wincaps-to-uscore.patch DELETED --- --- dbus-glib-0.77-bash-completion.patch DELETED --- --- dbus-gproxy-cancel.patch DELETED --- --- gethostbyname.patch DELETED --- From ajax at fedoraproject.org Thu Jul 16 20:27:06 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 16 Jul 2009 20:27:06 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.51, 1.52 sources, 1.50, 1.51 xorg-x11-proto-devel.spec, 1.96, 1.97 Message-ID: <20090716202707.0C7B411C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28562 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Thu Jul 16 2009 Adam Jackson 7.4-21 - randrproto 1.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 15 Jul 2009 03:59:50 -0000 1.51 +++ .cvsignore 16 Jul 2009 20:26:36 -0000 1.52 @@ -26,3 +26,4 @@ randrproto-1.2.99.3.tar.bz2 glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 inputproto-1.9.99.14.tar.bz2 +randrproto-1.3.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 15 Jul 2009 03:59:50 -0000 1.50 +++ sources 16 Jul 2009 20:26:36 -0000 1.51 @@ -21,7 +21,7 @@ f00844a63d6e76b69eb0eb5e41eed843 xf86vi 1cc292c562962ad0ad3a253cae68c632 xineramaproto-1.1.2.tar.bz2 1a2b31430d04340be2e49e8b6445e076 xproto-7.0.15.tar.bz2 d28007a50976204960fc1fc07b4ca093 xproxymanagementprotocol-1.0.2.tar.bz2 -d4a7b90d826dfa1c39d41d323ce7366c randrproto-1.2.99.3.tar.bz2 c9f8cebfba72bfab674bc0170551fb8d glproto-1.4.10.tar.bz2 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 291ba427a40869cf9909b6c950bf6eab inputproto-1.9.99.14.tar.bz2 +a49416013fff33c853efb32f1926551e randrproto-1.3.0.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- xorg-x11-proto-devel.spec 15 Jul 2009 17:46:43 -0000 1.96 +++ xorg-x11-proto-devel.spec 16 Jul 2009 20:26:36 -0000 1.97 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 20%{?dist} +Release: 21%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -25,7 +25,7 @@ Source7: http://www.x.org/pub/individua Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.14.tar.bz2 Source10: http://www.x.org/pub/individual/proto/kbproto-1.0.3.tar.bz2 -Source13: http://www.x.org/pub/individual/proto/randrproto-1.2.99.3.tar.bz2 +Source13: http://www.x.org/pub/individual/proto/randrproto-1.3.0.tar.bz2 Source14: http://www.x.org/pub/individual/proto/recordproto-1.13.2.tar.bz2 Source15: http://www.x.org/pub/individual/proto/renderproto-0.11.tar.bz2 Source16: http://www.x.org/pub/individual/proto/resourceproto-1.0.2.tar.bz2 @@ -258,6 +258,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Thu Jul 16 2009 Adam Jackson 7.4-21 +- randrproto 1.3.0 + * Wed Jul 15 2009 Adam Jackson 7.4-20 - Clean up %%install slightly. From rdieter at fedoraproject.org Thu Jul 16 20:29:23 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 20:29:23 +0000 (UTC) Subject: rpms/kdepimlibs/devel kdepimlibs.spec,1.91,1.92 Message-ID: <20090716202923.8A7CE11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29057 Modified Files: kdepimlibs.spec Log Message: * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - License: LGPLv2+ Index: kdepimlibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- kdepimlibs.spec 10 Jul 2009 22:30:55 -0000 1.91 +++ kdepimlibs.spec 16 Jul 2009 20:28:53 -0000 1.92 @@ -12,10 +12,11 @@ Name: kdepimlibs Version: 4.2.96 -Release: 1%{?dist} +Release: 2%{?dist} Summary: K Desktop Environment 4 - PIM Libraries -License: LGPLv2 +# http://techbase.kde.org/Policies/Licensing_Policy +License: LGPLv2+ Group: System Environment/Libraries URL: http://www.kde.org/ @@ -209,6 +210,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 16 2009 Rex Dieter - 4.2.96-2 +- License: LGPLv2+ + * Sat Jul 11 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From ajax at fedoraproject.org Thu Jul 16 20:30:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 16 Jul 2009 20:30:46 +0000 (UTC) Subject: rpms/libXrandr/devel .cvsignore, 1.13, 1.14 libXrandr.spec, 1.30, 1.31 sources, 1.13, 1.14 libXrandr-1.2.99.4-gop.patch, 1.1, NONE Message-ID: <20090716203046.AC60811C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29430 Modified Files: .cvsignore libXrandr.spec sources Removed Files: libXrandr-1.2.99.4-gop.patch Log Message: * Thu Jul 16 2009 Adam Jackson 1.3.0-1 - libXrandr 1.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 17 Dec 2008 16:40:29 -0000 1.13 +++ .cvsignore 16 Jul 2009 20:30:16 -0000 1.14 @@ -1 +1,2 @@ libXrandr-1.2.99.4.tar.bz2 +libXrandr-1.3.0.tar.bz2 Index: libXrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/libXrandr.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXrandr.spec 25 Feb 2009 13:26:10 -0000 1.30 +++ libXrandr.spec 16 Jul 2009 20:30:16 -0000 1.31 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrandr runtime library Name: libXrandr -Version: 1.2.99.4 -Release: 3%{?dist} +Version: 1.3.0 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -9,13 +9,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: http://www.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 -Patch0: libXrandr-1.2.99.4-gop.patch - BuildRequires: xorg-x11-proto-devel -BuildRequires: pkgconfig(randrproto) >= 1.2.99.3 -BuildRequires: libX11-devel -BuildRequires: libXext-devel -BuildRequires: libXrender-devel +BuildRequires: pkgconfig(randrproto) >= 1.3.0 +BuildRequires: pkgconfig(xrender) %description X.Org X11 libXrandr runtime library @@ -28,13 +24,13 @@ Requires: %{name} = %{version}-%{release Requires: xorg-x11-proto-devel pkgconfig Requires: pkgconfig(randrproto) >= 1.2.1 +Requires: pkgconfig(xrender) %description devel X.Org X11 libXrandr development package %prep %setup -q -%patch0 -p1 -b .gop %build %configure --disable-static @@ -45,7 +41,6 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -# We intentionally don't ship *.la files rm -f $RPM_BUILD_ROOT%{_libdir}/*.la %clean @@ -71,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 16 2009 Adam Jackson 1.3.0-1 +- libXrandr 1.3.0 + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.99.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 17 Dec 2008 16:40:29 -0000 1.13 +++ sources 16 Jul 2009 20:30:16 -0000 1.14 @@ -1 +1 @@ -ab4210c6d89888e55520bc2c568b6867 libXrandr-1.2.99.4.tar.bz2 +68eb59c3b7524db6ffd78746ee893d1d libXrandr-1.3.0.tar.bz2 --- libXrandr-1.2.99.4-gop.patch DELETED --- From rdieter at fedoraproject.org Thu Jul 16 20:33:48 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 16 Jul 2009 20:33:48 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.218,1.219 Message-ID: <20090716203348.C5BBA11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30055 Modified Files: kdebindings.spec Log Message: License: LGPLv2+ Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.218 retrieving revision 1.219 diff -u -p -r1.218 -r1.219 --- kdebindings.spec 16 Jul 2009 19:01:49 -0000 1.218 +++ kdebindings.spec 16 Jul 2009 20:33:18 -0000 1.219 @@ -32,8 +32,9 @@ Version: 4.2.96 Release: 2%{?dist} Summary: KDE bindings to non-C++ languages +# http://techbase.kde.org/Policies/Licensing_Policy +License: LGPLv2+ Group: User Interface/Desktops -License: GPLv2 URL: http://developer.kde.org/language-bindings/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.bz2 @@ -490,6 +491,7 @@ rm -rf %{buildroot} * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - fix pykdeuic4-related install bits (kdebug#198162) - pyqt4_version 4.5.2 +- License: LGPLv2+ * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 From jussilehtola at fedoraproject.org Thu Jul 16 21:00:20 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 21:00:20 +0000 (UTC) Subject: rpms/jmol/EL-5 jmol.spec,1.7,1.8 Message-ID: <20090716210020.A626811C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3035/EL-5 Modified Files: jmol.spec Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/EL-5/jmol.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jmol.spec 16 Jul 2009 19:12:15 -0000 1.7 +++ jmol.spec 16 Jul 2009 20:59:50 -0000 1.8 @@ -59,6 +59,10 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Remove executable permissions from documentation +chmod 644 README.txt +chmod 644 COPYRIGHT.txt + # Make desktop file cat > jmol.desktop << EOF [Desktop Entry] From jussilehtola at fedoraproject.org Thu Jul 16 21:00:20 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 21:00:20 +0000 (UTC) Subject: rpms/jmol/devel jmol.spec,1.9,1.10 Message-ID: <20090716210020.C95DC11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3035/devel Modified Files: jmol.spec Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- jmol.spec 16 Jul 2009 19:12:15 -0000 1.9 +++ jmol.spec 16 Jul 2009 20:59:50 -0000 1.10 @@ -59,6 +59,10 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Remove executable permissions from documentation +chmod 644 README.txt +chmod 644 COPYRIGHT.txt + # Make desktop file cat > jmol.desktop << EOF [Desktop Entry] From jussilehtola at fedoraproject.org Thu Jul 16 21:02:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 21:02:18 +0000 (UTC) Subject: rpms/jmol/devel jmol.desktop,1.2,NONE Message-ID: <20090716210218.AAD5A11C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3745/devel Removed Files: jmol.desktop Log Message: Include desktop file in spec. --- jmol.desktop DELETED --- From jussilehtola at fedoraproject.org Thu Jul 16 21:02:48 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 21:02:48 +0000 (UTC) Subject: rpms/jmol/F-10 jmol.spec,1.6,1.7 jmol.desktop,1.2,NONE Message-ID: <20090716210248.483C211C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3745/F-10 Modified Files: jmol.spec Removed Files: jmol.desktop Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-10/jmol.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jmol.spec 16 Jul 2009 16:37:20 -0000 1.6 +++ jmol.spec 16 Jul 2009 21:02:18 -0000 1.7 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 10.%{svnrel}svn%{?dist} +Release: 11.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -15,7 +15,6 @@ BuildArch: noarch # The source package has been created from SVN sources: # svn export -r %{svnrel} https://jmol.svn.sourceforge.net/svnroot/jmol/branches/v11_6/Jmol Source0: %{name}-%{version}.%{svnrel}.tar.bz2 -Source1: jmol.desktop # Image available at "http://wiki.jmol.org:81/index.php/Image:Jmol_icon_128.png" Source2: Jmol_icon_128.png # Patch disabling jar signing @@ -60,27 +59,35 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Remove executable permissions from documentation +chmod 644 README.txt +chmod 644 COPYRIGHT.txt + +# Make desktop file +cat > jmol.desktop << EOF +[Desktop Entry] +Encoding=UTF-8 +Name=Jmol +Comment=An open-source Java viewer for chemical structures in 3D +Exec=jmol +Icon=jmol +Terminal=false +Type=Application +Categories=Education;Science; +EOF + %build ant doc main %install rm -rf %{buildroot} - install -D -p -m 755 jmol %{buildroot}%{_bindir}/%{name} - -install -D -p -m 444 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar -install -D -p -m 444 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar - -install -D -p -m 444 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png - -# Convert documentation to UTF-8 -for txtfile in README.txt COPYRIGHT.txt LICENSE.txt; do - iconv -f ASCII -t UTF-8 $txtfile >$txtfile.new && mv $txtfile{.new,} -done +install -D -p -m 644 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar +install -D -p -m 644 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar +install -D -p -m 644 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png # Install desktop file -desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ - --vendor=fedora %{SOURCE1} +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications --vendor=fedora jmol.desktop # Javadoc files mkdir -p %{buildroot}%{_javadocdir}/%{name} @@ -93,19 +100,22 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc build/doc/* README.txt COPYRIGHT.txt LICENSE.txt %{_bindir}/%{name} -%{_datadir}/%{name} +%{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/fedora-%{name}.desktop %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %files doc %defattr(-,root,root,-) %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-11.11223svn +- Include desktop file in the spec. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn - Bump release to be able to rebuild in koji. --- jmol.desktop DELETED --- From jussilehtola at fedoraproject.org Thu Jul 16 21:02:48 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 21:02:48 +0000 (UTC) Subject: rpms/jmol/F-11 jmol.spec,1.8,1.9 jmol.desktop,1.2,NONE Message-ID: <20090716210248.7BF9211C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/jmol/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3745/F-11 Modified Files: jmol.spec Removed Files: jmol.desktop Log Message: Include desktop file in spec. Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/F-11/jmol.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jmol.spec 16 Jul 2009 16:37:20 -0000 1.8 +++ jmol.spec 16 Jul 2009 21:02:18 -0000 1.9 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 10.%{svnrel}svn%{?dist} +Release: 11.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -15,7 +15,6 @@ BuildArch: noarch # The source package has been created from SVN sources: # svn export -r %{svnrel} https://jmol.svn.sourceforge.net/svnroot/jmol/branches/v11_6/Jmol Source0: %{name}-%{version}.%{svnrel}.tar.bz2 -Source1: jmol.desktop # Image available at "http://wiki.jmol.org:81/index.php/Image:Jmol_icon_128.png" Source2: Jmol_icon_128.png # Patch disabling jar signing @@ -60,27 +59,35 @@ The documentation for %{name}. %patch0 -p1 find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \; +# Remove executable permissions from documentation +chmod 644 README.txt +chmod 644 COPYRIGHT.txt + +# Make desktop file +cat > jmol.desktop << EOF +[Desktop Entry] +Encoding=UTF-8 +Name=Jmol +Comment=An open-source Java viewer for chemical structures in 3D +Exec=jmol +Icon=jmol +Terminal=false +Type=Application +Categories=Education;Science; +EOF + %build ant doc main %install rm -rf %{buildroot} - install -D -p -m 755 jmol %{buildroot}%{_bindir}/%{name} - -install -D -p -m 444 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar -install -D -p -m 444 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar - -install -D -p -m 444 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png - -# Convert documentation to UTF-8 -for txtfile in README.txt COPYRIGHT.txt LICENSE.txt; do - iconv -f ASCII -t UTF-8 $txtfile >$txtfile.new && mv $txtfile{.new,} -done +install -D -p -m 644 build/JmolUnsigned.jar %{buildroot}%{_datadir}/%{name}/Jmol.jar +install -D -p -m 644 build/JmolApplet.jar %{buildroot}%{_datadir}/%{name}/JmolApplet.jar +install -D -p -m 644 %{SOURCE2} %{buildroot}%{_datadir}/pixmaps/%{name}.png # Install desktop file -desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ - --vendor=fedora %{SOURCE1} +desktop-file-install --dir=${RPM_BUILD_ROOT}%{_datadir}/applications --vendor=fedora jmol.desktop # Javadoc files mkdir -p %{buildroot}%{_javadocdir}/%{name} @@ -93,19 +100,22 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc build/doc/* README.txt COPYRIGHT.txt LICENSE.txt %{_bindir}/%{name} -%{_datadir}/%{name} +%{_datadir}/%{name}/ %{_datadir}/pixmaps/%{name}.png %{_datadir}/applications/fedora-%{name}.desktop %files javadoc %defattr(-,root,root,-) -%{_javadocdir}/%{name} +%{_javadocdir}/%{name}/ %files doc %defattr(-,root,root,-) %doc build/doc/* %changelog +* Thu Jul 16 2009 Jussi Lehtola - 11.6-11.11223svn +- Include desktop file in the spec. + * Thu Jul 16 2009 Jussi Lehtola - 11.6-10.11223svn - Bump release to be able to rebuild in koji. --- jmol.desktop DELETED --- From mjg59 at fedoraproject.org Thu Jul 16 21:25:06 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Thu, 16 Jul 2009 21:25:06 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-defaults-aspm.patch, NONE, 1.1 config-generic, 1.305, 1.306 kernel.spec, 1.1632, 1.1633 Message-ID: <20090716212506.91EF011C0099@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8785 Modified Files: config-generic kernel.spec Added Files: linux-2.6-defaults-aspm.patch Log Message: * Thu Jul 16 2009 Matthew Garrett - linux-2.6-defaults-aspm.patch - default ASPM to on for PCIe >= 1.1 hardware linux-2.6-defaults-aspm.patch: --- NEW FILE linux-2.6-defaults-aspm.patch --- diff -up linux-2.6.30.noarch/drivers/pci/pcie/aspm.c.mjg linux-2.6.30.noarch/drivers/pci/pcie/aspm.c --- linux-2.6.30.noarch/drivers/pci/pcie/aspm.c.mjg 2009-07-16 22:01:11.000000000 +0100 +++ linux-2.6.30.noarch/drivers/pci/pcie/aspm.c 2009-07-16 22:01:30.000000000 +0100 @@ -65,7 +65,7 @@ static LIST_HEAD(link_list); #define POLICY_DEFAULT 0 /* BIOS default setting */ #define POLICY_PERFORMANCE 1 /* high performance */ #define POLICY_POWERSAVE 2 /* high power saving */ -static int aspm_policy; +static int aspm_policy = POLICY_POWERSAVE; static const char *policy_str[] = { [POLICY_DEFAULT] = "default", [POLICY_PERFORMANCE] = "performance", Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.305 retrieving revision 1.306 diff -u -p -r1.305 -r1.306 --- config-generic 16 Jul 2009 05:32:36 -0000 1.305 +++ config-generic 16 Jul 2009 21:24:36 -0000 1.306 @@ -2778,6 +2778,7 @@ CONFIG_LOGITECH_FF=y CONFIG_LOGIRUMBLEPAD2_FF=y CONFIG_PANTHERLORD_FF=y CONFIG_THRUSTMASTER_FF=y +CONFIG_HID_WACOM=y CONFIG_ZEROPLUS_FF=y CONFIG_USB_HIDDEV=y CONFIG_USB_IDMOUSE=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1632 retrieving revision 1.1633 diff -u -p -r1.1632 -r1.1633 --- kernel.spec 16 Jul 2009 05:32:39 -0000 1.1632 +++ kernel.spec 16 Jul 2009 21:24:36 -0000 1.1633 @@ -621,6 +621,7 @@ Patch360: linux-2.6-debug-always-inline- Patch380: linux-2.6-defaults-pci_no_msi.patch Patch381: linux-2.6-pciehp-update.patch Patch382: linux-2.6-defaults-pciehp.patch +Patch383: linux-2.6-defaults-aspm.patch Patch390: linux-2.6-defaults-acpi-video.patch Patch391: linux-2.6-acpi-video-dos.patch Patch450: linux-2.6-input-kill-stupid-messages.patch @@ -1168,6 +1169,8 @@ ApplyPatch linux-2.6-defaults-pci_no_msi #ApplyPatch linux-2.6-pciehp-update.patch # default to enabling passively listening for hotplug events #ApplyPatch linux-2.6-defaults-pciehp.patch +# enable ASPM by default on hardware we expect to work +ApplyPatch linux-2.6-defaults-aspm.patch # # SCSI Bits. @@ -1872,6 +1875,9 @@ fi # and build. %changelog +* Thu Jul 16 2009 Matthew Garrett +- linux-2.6-defaults-aspm.patch - default ASPM to on for PCIe >= 1.1 hardware + * Thu Jul 16 2009 Dave Airlie 2.6.31-0.69.rc3 - linux-2.6-vga-arb.patch - add VGA arbiter. - drm-vga-arb.patch - add VGA arbiter support to drm From orion at fedoraproject.org Thu Jul 16 21:40:29 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 16 Jul 2009 21:40:29 +0000 (UTC) Subject: rpms/g2clib/devel .cvsignore, 1.4, 1.5 g2clib.spec, 1.7, 1.8 sources, 1.4, 1.5 Message-ID: <20090716214029.8D8BA11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/g2clib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11249 Modified Files: .cvsignore g2clib.spec sources Log Message: * Thu Jul 16 2009 Orion Poplawski - 1.1.9-1 - Update to 1.1.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/g2clib/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Apr 2009 21:59:59 -0000 1.4 +++ .cvsignore 16 Jul 2009 21:39:59 -0000 1.5 @@ -1 +1 @@ -g2clib-1.1.8.tar +g2clib-1.1.9.tar Index: g2clib.spec =================================================================== RCS file: /cvs/pkgs/rpms/g2clib/devel/g2clib.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- g2clib.spec 17 Apr 2009 21:59:59 -0000 1.7 +++ g2clib.spec 16 Jul 2009 21:39:59 -0000 1.8 @@ -1,5 +1,5 @@ Name: g2clib -Version: 1.1.8 +Version: 1.1.9 Release: 1%{?dist} Summary: GRIB2 encoder/decoder and search/indexing routines in C @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Orion Poplawski - 1.1.9-1 +- Update to 1.1.9 + * Fri Apr 17 2009 Orion Poplawski - 1.1.8-1 - Update to 1.1.8 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/g2clib/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Apr 2009 21:59:59 -0000 1.4 +++ sources 16 Jul 2009 21:39:59 -0000 1.5 @@ -1 +1 @@ -9191bcb53dd7e83be47a19a098f4fbaa g2clib-1.1.8.tar +d34e7195e4eb7030e67a9205f2279793 g2clib-1.1.9.tar From orion at fedoraproject.org Thu Jul 16 21:43:56 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 16 Jul 2009 21:43:56 +0000 (UTC) Subject: rpms/gifsicle/devel .cvsignore, 1.3, 1.4 gifsicle.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090716214356.2056D11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/gifsicle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12094 Modified Files: .cvsignore gifsicle.spec sources Log Message: * Thu Jul 16 2009 - Orion Poplawski - 1.55-1 - Update to 1.55 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gifsicle/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 3 Sep 2008 17:50:55 -0000 1.3 +++ .cvsignore 16 Jul 2009 21:43:25 -0000 1.4 @@ -1 +1 @@ -gifsicle-1.52.tar.gz +gifsicle-1.55.tar.gz Index: gifsicle.spec =================================================================== RCS file: /cvs/pkgs/rpms/gifsicle/devel/gifsicle.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gifsicle.spec 24 Feb 2009 21:26:36 -0000 1.6 +++ gifsicle.spec 16 Jul 2009 21:43:25 -0000 1.7 @@ -1,6 +1,6 @@ Name: gifsicle -Version: 1.52 -Release: 2%{?dist} +Version: 1.55 +Release: 1%{?dist} Summary: Powerful program for manipulating GIF images and animations Group: Applications/File @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 - Orion Poplawski - 1.55-1 +- Update to 1.55 + * Tue Feb 24 2009 Fedora Release Engineering - 1.52-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gifsicle/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Sep 2008 17:50:55 -0000 1.3 +++ sources 16 Jul 2009 21:43:25 -0000 1.4 @@ -1 +1 @@ -b68d3a08368656b1dfc4066d65c07a05 gifsicle-1.52.tar.gz +366e63ac0aa4696397cb46a1384fd65a gifsicle-1.55.tar.gz From orion at fedoraproject.org Thu Jul 16 21:47:50 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 16 Jul 2009 21:47:50 +0000 (UTC) Subject: rpms/kdesvn/devel .cvsignore, 1.29, 1.30 kdesvn.spec, 1.56, 1.57 sources, 1.28, 1.29 Message-ID: <20090716214750.B8ABD11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/kdesvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13044 Modified Files: .cvsignore kdesvn.spec sources Log Message: * Thu Jul 16 2009 - Orion Poplawski - 1.3.2-1 - Update to 1.3.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kdesvn/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 24 Apr 2009 16:38:35 -0000 1.29 +++ .cvsignore 16 Jul 2009 21:47:20 -0000 1.30 @@ -1 +1 @@ -kdesvn-1.3.0.tar.bz2 +kdesvn-1.3.2.tar.bz2 Index: kdesvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdesvn/devel/kdesvn.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- kdesvn.spec 24 Apr 2009 16:38:35 -0000 1.56 +++ kdesvn.spec 16 Jul 2009 21:47:20 -0000 1.57 @@ -1,5 +1,5 @@ Name: kdesvn -Version: 1.3.0 +Version: 1.3.2 Release: 1%{?dist} Summary: A subversion client for KDE4 with KIO integration @@ -107,6 +107,9 @@ xdg-icon-resource forceupdate --theme hi %changelog +* Thu Jul 16 2009 - Orion Poplawski - 1.3.2-1 +- Update to 1.3.2 + * Fri Apr 24 2009 - Orion Poplawski - 1.3.0-1 - Update to 1.3.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kdesvn/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 24 Apr 2009 16:38:35 -0000 1.28 +++ sources 16 Jul 2009 21:47:20 -0000 1.29 @@ -1 +1 @@ -141f0be28086fd3e031a2d9dcac3479d kdesvn-1.3.0.tar.bz2 +5a1687130df00f878c96e55265b3c654 kdesvn-1.3.2.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 16 21:58:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:30 +0000 Subject: [pkgdb] clamav: nb has requested watchcommits Message-ID: <20090716215830.6020E10F8A5@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on clamav (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Thu Jul 16 21:58:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:28 +0000 Subject: [pkgdb] clamav: nb has requested watchbugzilla Message-ID: <20090716215828.66E1310F89C@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on clamav (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Thu Jul 16 21:58:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:36 +0000 Subject: [pkgdb] clamav: nb has requested watchbugzilla Message-ID: <20090716215836.3CFA410F8A6@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on clamav (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Thu Jul 16 21:58:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:38 +0000 Subject: [pkgdb] clamav: nb has requested watchcommits Message-ID: <20090716215838.3063F10F8AB@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on clamav (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Thu Jul 16 21:58:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:50 +0000 Subject: [pkgdb] clamav: nb has requested watchbugzilla Message-ID: <20090716215850.3F47F10F898@bastion2.fedora.phx.redhat.com> nb has requested the watchbugzilla acl on clamav (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Thu Jul 16 21:58:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 21:58:52 +0000 Subject: [pkgdb] clamav: nb has requested watchcommits Message-ID: <20090716215852.4C7A910F8AD@bastion2.fedora.phx.redhat.com> nb has requested the watchcommits acl on clamav (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From hadess at fedoraproject.org Thu Jul 16 22:02:48 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 16 Jul 2009 22:02:48 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel gstreamer-plugins-base.spec, 1.79, 1.80 Message-ID: <20090716220248.15A6011C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16232 Modified Files: gstreamer-plugins-base.spec Log Message: Add gudev BR, work-around build problem Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- gstreamer-plugins-base.spec 16 Jul 2009 15:58:36 -0000 1.79 +++ gstreamer-plugins-base.spec 16 Jul 2009 22:02:47 -0000 1.80 @@ -36,6 +36,7 @@ BuildRequires: pango-devel BuildRequires: libXv-devel BuildRequires: cdparanoia-devel BuildRequires: libvisual-devel +BuildRequires: libgudev-devel BuildRequires: gtk2-devel BuildRequires: pkgconfig Obsoletes: gstreamer-plugins @@ -67,7 +68,8 @@ autoreconf --with-package-origin='http://download.fedora.redhat.com/fedora' \ --enable-gtk-doc \ --enable-experimental \ - --disable-static + --disable-static \ + --disable-examples make %{?_smp_mflags} ERROR_CFLAGS="" From orion at fedoraproject.org Thu Jul 16 22:04:43 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 16 Jul 2009 22:04:43 +0000 (UTC) Subject: rpms/wgrib2/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 wgrib2.spec, 1.6, 1.7 wgrib2-1.7.8g-flags.patch, 1.1, NONE Message-ID: <20090716220443.6133C11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/wgrib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16581 Modified Files: .cvsignore sources wgrib2.spec Removed Files: wgrib2-1.7.8g-flags.patch Log Message: * Thu Jul 16 2009 Orion Poplawski - 1.7.8j-1 - Update to 1.7.8j - Drop flags patch, can now pass flags to make Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wgrib2/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Apr 2009 18:22:44 -0000 1.4 +++ .cvsignore 16 Jul 2009 22:04:12 -0000 1.5 @@ -1 +1 @@ -wgrib2.tgz.v1.7.8g +wgrib2.tgz.v1.7.8j Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wgrib2/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Apr 2009 18:22:44 -0000 1.4 +++ sources 16 Jul 2009 22:04:12 -0000 1.5 @@ -1 +1 @@ -892f49621e19c9d9e43e0a72a2fa161c wgrib2.tgz.v1.7.8g +f4625d0b3b6b276a7ee256bb31aa04d5 wgrib2.tgz.v1.7.8j Index: wgrib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/wgrib2/devel/wgrib2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- wgrib2.spec 10 Apr 2009 18:23:17 -0000 1.6 +++ wgrib2.spec 16 Jul 2009 22:04:13 -0000 1.7 @@ -1,5 +1,5 @@ Name: wgrib2 -Version: 1.7.8g +Version: 1.7.8j Release: 1%{?dist} Summary: Manipulate, inventory and decode GRIB2 files @@ -8,9 +8,6 @@ Group: Applications/Engineering License: GPLv2+ URL: http://www.cpc.ncep.noaa.gov/products/wesley/wgrib2/ Source0: ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/wgrib2.tgz.v%{version} -#Upstream makefile doesn't allow you to add flags, points to local library -#versions. This patch fixes that. -Patch0: wgrib2-1.7.8g-flags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: g2clib-devel, zlib-devel, netcdf-devel @@ -24,13 +21,13 @@ extract data. You can do basic database %setup -q -n grib2 rm -r g2clib-* jasper-*.tar.gz libpng-*.tar.gz \ zlib-*.tar.gz netcdf.tar.gz -%patch0 -p1 -b .flags %build cd wgrib2 -export CFLAGS="$RPM_OPT_FLAGS" -make %{?_smp_mflags} netcdf_inc="-I%{_includedir}/netcdf" +export CFLAGS="-I/usr/include/netcdf $RPM_OPT_FLAGS" +export LDFLAGS="-lgrib2c -ljasper -lnetcdf -lpng -lz -lm" +make %{?_smp_mflags} %install @@ -50,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 Orion Poplawski - 1.7.8j-1 +- Update to 1.7.8j +- Drop flags patch, can now pass flags to make + * Fri Apr 10 2009 Orion Poplawski - 1.7.8g-1 - Update to 1.7.8g - Fix up flags patch to preserve CFLAGS from environment --- wgrib2-1.7.8g-flags.patch DELETED --- From jorton at fedoraproject.org Thu Jul 16 22:20:05 2009 From: jorton at fedoraproject.org (jorton) Date: Thu, 16 Jul 2009 22:20:05 +0000 (UTC) Subject: rpms/php/devel php-5.3.0-systzdata-v6.patch, NONE, 1.1 php.spec, 1.178, 1.179 php-5.3.0-systzdata-v5.patch, 1.1, NONE Message-ID: <20090716222005.AC5FC11C0099@cvs1.fedora.phx.redhat.com> Author: jorton Update of /cvs/extras/rpms/php/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19962 Modified Files: php.spec Added Files: php-5.3.0-systzdata-v6.patch Removed Files: php-5.3.0-systzdata-v5.patch Log Message: * Thu Jul 16 2009 Joe Orton 5.3.0-3 - update to v6 of systzdata patch; various fixes php-5.3.0-systzdata-v6.patch: --- NEW FILE php-5.3.0-systzdata-v6.patch --- Add support for use of the system timezone database, rather than embedding a copy. Discussed upstream but was not desired. History: r6: fix fd leak in r5, fix country code/BC flag use in timezone_identifiers_list() using system db, fix use of PECL timezonedb to override system db, r5: reverts addition of "System/Localtime" fake tzname. updated for 5.3.0, parses zone.tab to pick up mapping between timezone name, country code and long/lat coords r4: added "System/Localtime" tzname which uses /etc/localtime r3: fix a crash if /usr/share/zoneinfo doesn't exist (Raphael Geissert) r2: add filesystem trawl to set up name alias index r1: initial revision Index: ext/date/lib/timelib.m4 =================================================================== --- ext/date/lib/timelib.m4 (revision 284069) +++ ext/date/lib/timelib.m4 (working copy) @@ -78,3 +78,17 @@ dnl Check for strtoll, atoll AC_CHECK_FUNCS(strtoll atoll strftime) + +PHP_ARG_WITH(system-tzdata, for use of system timezone data, +[ --with-system-tzdata[=DIR] to specify use of system timezone data], +no, no) + +if test "$PHP_SYSTEM_TZDATA" != "no"; then + AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) + + if test "$PHP_SYSTEM_TZDATA" != "yes"; then + AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", + [Define for location of system timezone data]) + fi +fi + Index: ext/date/lib/parse_tz.c =================================================================== --- ext/date/lib/parse_tz.c (revision 284069) +++ ext/date/lib/parse_tz.c (working copy) @@ -20,6 +20,16 @@ #include "timelib.h" +#ifdef HAVE_SYSTEM_TZDATA +#include +#include +#include +#include +#include + +#include "php_scandir.h" +#endif + #include #ifdef HAVE_LOCALE_H @@ -31,8 +41,13 @@ #else #include #endif + +#ifndef HAVE_SYSTEM_TZDATA #include "timezonedb.h" +#endif +#include + #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) # if defined(__LITTLE_ENDIAN__) # undef WORDS_BIGENDIAN @@ -51,9 +66,14 @@ static void read_preamble(const unsigned char **tzf, timelib_tzinfo *tz) { - /* skip ID */ - *tzf += 4; - + if (memcmp(tzf, "TZif", 4) == 0) { + *tzf += 20; + return; + } + + /* skip ID */ + *tzf += 4; + /* read BC flag */ tz->bc = (**tzf == '\1'); *tzf += 1; @@ -253,8 +273,391 @@ } } -static int seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) +#ifdef HAVE_SYSTEM_TZDATA + +#ifdef HAVE_SYSTEM_TZDATA_PREFIX +#define ZONEINFO_PREFIX HAVE_SYSTEM_TZDATA_PREFIX +#else +#define ZONEINFO_PREFIX "/usr/share/zoneinfo" +#endif + +/* System timezone database pointer. */ +static const timelib_tzdb *timezonedb_system = NULL; + +/* Hash table entry for the cache of the zone.tab mapping table. */ +struct location_info { + char code[2]; + double latitude, longitude; + char name[64]; + char *comment; + struct location_info *next; +}; + +/* Cache of zone.tab. */ +static struct location_info **system_location_table; + +/* Size of the zone.tab hash table; a random-ish prime big enough to + * prevent too many collisions. */ +#define LOCINFO_HASH_SIZE (1021) + +static uint32_t tz_hash(const char *str) { + const unsigned char *p = (const unsigned char *)str; + uint32_t hash = 5381; + int c; + + while ((c = *p++) != '\0') { + hash = (hash << 5) ^ hash ^ c; + } + + return hash % LOCINFO_HASH_SIZE; +} + +/* Parse an ISO-6709 date as used in zone.tab. Returns end of the + * parsed string on success, or NULL on parse error. On success, + * writes the parsed number to *result. */ +static char *parse_iso6709(char *p, double *result) +{ + double v, sign; + char *pend; + size_t len; + + if (*p == '+') + sign = 1.0; + else if (*p == '-') + sign = -1.0; + else + return NULL; + + p++; + for (pend = p; *pend >= '0' && *pend <= '9'; pend++) + ;; + + /* Annoying encoding used by zone.tab has no decimal point, so use + * the length to determine the format: + * + * 4 = DDMM + * 5 = DDDMM + * 6 = DDMMSS + * 7 = DDDMMSS + */ + len = pend - p; + if (len < 4 || len > 7) { + return NULL; + } + + /* p => [D]DD */ + v = (p[0] - '0') * 10.0 + (p[1] - '0'); + p += 2; + if (len == 5 || len == 7) + v = v * 10.0 + (*p++ - '0'); + /* p => MM[SS] */ + v += (10.0 * (p[0] - '0') + + p[1] - '0') / 60.0; + p += 2; + /* p => [SS] */ + if (len > 5) { + v += (10.0 * (p[0] - '0') + + p[1] - '0') / 3600.0; + p += 2; + } + + /* Round to five decimal place, not because it's a good idea, + * but, because the builtin data uses rounded data, so, match + * that. */ + *result = round(v * sign * 100000.0) / 100000.0; + + return p; +} + +/* This function parses the zone.tab file to build up the mapping of + * timezone to country code and geographic location, and returns a + * hash table. The hash table is indexed by the function: + * + * tz_hash(timezone-name) + */ +static struct location_info **create_location_table(void) +{ + struct location_info **li, *i; + char zone_tab[PATH_MAX]; + char line[512]; + FILE *fp; + + strncpy(zone_tab, ZONEINFO_PREFIX "/zone.tab", sizeof zone_tab); + + fp = fopen(zone_tab, "r"); + if (!fp) { + return NULL; + } + + li = calloc(LOCINFO_HASH_SIZE, sizeof *li); + + while (fgets(line, sizeof line, fp)) { + char *p = line, *code, *name, *comment; + uint32_t hash; + double latitude, longitude; + + while (isspace(*p)) + p++; + + if (*p == '#' || *p == '\0' || *p == '\n') + continue; + + if (!isalpha(p[0]) || !isalpha(p[1]) || p[2] != '\t') + continue; + + /* code => AA */ + code = p; + p[2] = 0; + p += 3; + + /* coords => [+-][D]DDMM[SS][+-][D]DDMM[SS] */ + p = parse_iso6709(p, &latitude); + if (!p) { + continue; + } + p = parse_iso6709(p, &longitude); + if (!p) { + continue; + } + + if (!p || *p != '\t') { + continue; + } + + /* name = string */ + name = ++p; + while (*p != '\t' && *p && *p != '\n') + p++; + + *p++ = '\0'; + + /* comment = string */ + comment = p; + while (*p != '\t' && *p && *p != '\n') + p++; + + if (*p == '\n' || *p == '\t') + *p = '\0'; + + hash = tz_hash(name); + i = malloc(sizeof *i); + memcpy(i->code, code, 2); + strncpy(i->name, name, sizeof i->name); + i->comment = strdup(comment); + i->longitude = longitude; + i->latitude = latitude; + i->next = li[hash]; + li[hash] = i; + /* printf("%s [%u, %f, %f]\n", name, hash, latitude, longitude); */ + } + + fclose(fp); + + return li; +} + +/* Return location info from hash table, using given timezone name. + * Returns NULL if the name could not be found. */ +const struct location_info *find_zone_info(struct location_info **li, + const char *name) +{ + uint32_t hash = tz_hash(name); + const struct location_info *l; + + if (!li) { + return NULL; + } + + for (l = li[hash]; l; l = l->next) { + if (strcasecmp(l->name, name) == 0) + return l; + } + + return NULL; +} + +/* Filter out some non-tzdata files and the posix/right databases, if + * present. */ +static int index_filter(const struct dirent *ent) +{ + return strcmp(ent->d_name, ".") != 0 + && strcmp(ent->d_name, "..") != 0 + && strcmp(ent->d_name, "posix") != 0 + && strcmp(ent->d_name, "posixrules") != 0 + && strcmp(ent->d_name, "right") != 0 + && strstr(ent->d_name, ".tab") == NULL; +} + +static int sysdbcmp(const void *first, const void *second) +{ + const timelib_tzdb_index_entry *alpha = first, *beta = second; + + return strcmp(alpha->id, beta->id); +} + + +/* Create the zone identifier index by trawling the filesystem. */ +static void create_zone_index(timelib_tzdb *db) +{ + size_t dirstack_size, dirstack_top; + size_t index_size, index_next; + timelib_tzdb_index_entry *db_index; + char **dirstack; + + /* LIFO stack to hold directory entries to scan; each slot is a + * directory name relative to the zoneinfo prefix. */ + dirstack_size = 32; + dirstack = malloc(dirstack_size * sizeof *dirstack); + dirstack_top = 1; + dirstack[0] = strdup(""); + + /* Index array. */ + index_size = 64; + db_index = malloc(index_size * sizeof *db_index); + index_next = 0; + + do { + struct dirent **ents; + char name[PATH_MAX], *top; + int count; + + /* Pop the top stack entry, and iterate through its contents. */ + top = dirstack[--dirstack_top]; + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s", top); + + count = php_scandir(name, &ents, index_filter, php_alphasort); + + while (count > 0) { + struct stat st; + const char *leaf = ents[count - 1]->d_name; + + snprintf(name, sizeof name, ZONEINFO_PREFIX "/%s/%s", + top, leaf); + + if (strlen(name) && stat(name, &st) == 0) { + /* Name, relative to the zoneinfo prefix. */ + const char *root = top; + + if (root[0] == '/') root++; + + snprintf(name, sizeof name, "%s%s%s", root, + *root ? "/": "", leaf); + + if (S_ISDIR(st.st_mode)) { + if (dirstack_top == dirstack_size) { + dirstack_size *= 2; + dirstack = realloc(dirstack, + dirstack_size * sizeof *dirstack); + } + dirstack[dirstack_top++] = strdup(name); + } + else { + if (index_next == index_size) { + index_size *= 2; + db_index = realloc(db_index, + index_size * sizeof *db_index); + } + + db_index[index_next++].id = strdup(name); + } + } + + free(ents[--count]); + } + + if (count != -1) free(ents); + free(top); + } while (dirstack_top); + + qsort(db_index, index_next, sizeof *db_index, sysdbcmp); + + db->index = db_index; + db->index_size = index_next; + + free(dirstack); +} + +#define FAKE_HEADER "1234\0??\1??" +#define FAKE_UTC_POS (7 - 4) + +/* Create a fake data segment for database 'sysdb'. */ +static void fake_data_segment(timelib_tzdb *sysdb, + struct location_info **info) +{ + size_t n; + char *data, *p; + + data = malloc(3 * sysdb->index_size + 7); + + p = mempcpy(data, FAKE_HEADER, sizeof(FAKE_HEADER) - 1); + + for (n = 0; n < sysdb->index_size; n++) { + const struct location_info *li; + timelib_tzdb_index_entry *ent; + + ent = (timelib_tzdb_index_entry *)&sysdb->index[n]; + + /* Lookup the timezone name in the hash table. */ + if (strcmp(ent->id, "UTC") == 0) { + ent->pos = FAKE_UTC_POS; + continue; + } + + li = find_zone_info(info, ent->id); + if (li) { + /* If found, append the BC byte and the + * country code; set the position for this + * section of timezone data. */ + ent->pos = (p - data) - 4; + *p++ = '\1'; + *p++ = li->code[0]; + *p++ = li->code[1]; + } + else { + /* If not found, the timezone data can + * point at the header. */ + ent->pos = 0; + } + } + + sysdb->data = (unsigned char *)data; +} + +/* Return the mmap()ed tzfile if found, else NULL. On success, the + * length of the mapped data is placed in *length. */ +static char *map_tzfile(const char *timezone, size_t *length) +{ + char fname[PATH_MAX]; + struct stat st; + char *p; + int fd; + + if (timezone[0] == '\0' || strstr(timezone, "..") != NULL) { + return NULL; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + + fd = open(fname, O_RDONLY); + if (fd == -1) { + return NULL; + } else if (fstat(fd, &st) != 0 || st.st_size < 21) { + close(fd); + return NULL; + } + + *length = st.st_size; + p = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0); + close(fd); + + return p != MAP_FAILED ? p : NULL; +} + +#endif + +static int inmem_seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) +{ int left = 0, right = tzdb->index_size - 1; #ifdef HAVE_SETLOCALE char *cur_locale = NULL, *tmp; @@ -292,36 +695,124 @@ return 0; } +static int seek_to_tz_position(const unsigned char **tzf, char *timezone, + char **map, size_t *maplen, + const timelib_tzdb *tzdb) +{ + if (tzdb == timezonedb_system) { + char *orig; + + orig = map_tzfile(timezone, maplen); + if (orig == NULL) { + return 0; + } + + (*tzf) = (unsigned char *)orig ; + *map = orig; + + return 1; + } + else { + return inmem_seek_to_tz_position(tzf, timezone, tzdb); + } +} + const timelib_tzdb *timelib_builtin_db(void) { +#ifdef HAVE_SYSTEM_TZDATA + if (timezonedb_system == NULL) { + timelib_tzdb *tmp = malloc(sizeof *tmp); + + tmp->version = "0.system"; + tmp->data = NULL; + create_zone_index(tmp); + system_location_table = create_location_table(); + fake_data_segment(tmp, system_location_table); + timezonedb_system = tmp; + } + + + return timezonedb_system; +#else return &timezonedb_builtin; +#endif } const timelib_tzdb_index_entry *timelib_timezone_builtin_identifiers_list(int *count) { +#ifdef HAVE_SYSTEM_TZDATA + *count = timezonedb_system->index_size; + return timezonedb_system->index; +#else *count = sizeof(timezonedb_idx_builtin) / sizeof(*timezonedb_idx_builtin); return timezonedb_idx_builtin; +#endif } int timelib_timezone_id_is_valid(char *timezone, const timelib_tzdb *tzdb) { const unsigned char *tzf; - return (seek_to_tz_position(&tzf, timezone, tzdb)); + +#ifdef HAVE_SYSTEM_TZDATA + if (tzdb == timezonedb_system) { + char fname[PATH_MAX]; + + if (timezone[0] == '\0' || strstr(timezone, "..") != NULL) { + return 0; + } + + snprintf(fname, sizeof fname, ZONEINFO_PREFIX "/%s", timezone); + + return access(fname, R_OK) == 0 ? 1 : 0; + } +#endif + + return (inmem_seek_to_tz_position(&tzf, timezone, tzdb)); } timelib_tzinfo *timelib_parse_tzfile(char *timezone, const timelib_tzdb *tzdb) { const unsigned char *tzf; + char *memmap = NULL; + size_t maplen; timelib_tzinfo *tmp; - if (seek_to_tz_position(&tzf, timezone, tzdb)) { + if (seek_to_tz_position(&tzf, timezone, &memmap, &maplen, tzdb)) { tmp = timelib_tzinfo_ctor(timezone); read_preamble(&tzf, tmp); read_header(&tzf, tmp); read_transistions(&tzf, tmp); read_types(&tzf, tmp); - read_location(&tzf, tmp); + +#ifdef HAVE_SYSTEM_TZDATA + if (memmap) { + const struct location_info *li; + + /* TZif-style - grok the location info from the system database, + * if possible. */ + + if ((li = find_zone_info(system_location_table, timezone)) != NULL) { + tmp->location.comments = strdup(li->comment); + strncpy(tmp->location.country_code, li->code, 2); + tmp->location.longitude = li->longitude; + tmp->location.latitude = li->latitude; + tmp->bc = 1; + } + else { + strcpy(tmp->location.country_code, "??"); + tmp->bc = 0; + tmp->location.comments = strdup(""); + } + + /* Now done with the mmap segment - discard it. */ + munmap(memmap, maplen); +#endif + } + else { + /* PHP-style - use the embedded info. */ + read_location(&tzf, tmp); + } } else { tmp = NULL; } Index: php.spec =================================================================== RCS file: /cvs/extras/rpms/php/devel/php.spec,v retrieving revision 1.178 retrieving revision 1.179 diff -u -p -r1.178 -r1.179 --- php.spec 14 Jul 2009 15:45:10 -0000 1.178 +++ php.spec 16 Jul 2009 22:19:34 -0000 1.179 @@ -13,7 +13,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Languages URL: http://www.php.net/ @@ -39,7 +39,7 @@ Patch21: php-5.2.3-macropen.patch # Functional changes Patch40: php-5.0.4-dlopen.patch Patch41: php-5.3.0-easter.patch -Patch42: php-5.3.0-systzdata-v5.patch +Patch42: php-5.3.0-systzdata-v6.patch # Fixes for tests Patch61: php-5.0.4-tests-wddx.patch @@ -843,6 +843,9 @@ rm files.* macros.php %files enchant -f files.enchant %changelog +* Thu Jul 16 2009 Joe Orton 5.3.0-3 +- update to v6 of systzdata patch; various fixes + * Tue Jul 14 2009 Joe Orton 5.3.0-2 - update to v5 of systzdata patch; parses zone.tab and extracts timezone->{country-code,long/lat,comment} mapping table --- php-5.3.0-systzdata-v5.patch DELETED --- From kkofler at fedoraproject.org Thu Jul 16 22:21:36 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Thu, 16 Jul 2009 22:21:36 +0000 (UTC) Subject: rpms/xchat/devel xchat-2.8.6-connect-mnemonic.patch, NONE, 1.1 xchat.spec, 1.102, 1.103 Message-ID: <20090716222136.56C2B11C0099@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/xchat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20355/devel Modified Files: xchat.spec Added Files: xchat-2.8.6-connect-mnemonic.patch Log Message: * Thu Jul 16 2009 Kevin Kofler - 1:2.8.6-9 - Fix literal underscore in "C_onnect" button (#512034, Matthias Clasen) xchat-2.8.6-connect-mnemonic.patch: --- NEW FILE xchat-2.8.6-connect-mnemonic.patch --- diff -up xchat-2.8.6/src/fe-gtk/gtkutil.c.mnemonic xchat-2.8.6/src/fe-gtk/gtkutil.c --- xchat-2.8.6/src/fe-gtk/gtkutil.c.mnemonic 2009-07-15 20:41:23.080340947 -0400 +++ xchat-2.8.6/src/fe-gtk/gtkutil.c 2009-07-15 20:41:48.181069489 -0400 @@ -376,6 +376,7 @@ gtkutil_button (GtkWidget *box, char *st { gtk_button_set_label (GTK_BUTTON (wid), labeltext); gtk_button_set_image (GTK_BUTTON (wid), gtk_image_new_from_stock (stock, GTK_ICON_SIZE_MENU)); + gtk_label_set_use_underline (GTK_BUTTON (wid), TRUE); if (box) gtk_container_add (GTK_CONTAINER (box), wid); } Index: xchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchat/devel/xchat.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- xchat.spec 29 Jun 2009 12:14:44 -0000 1.102 +++ xchat.spec 16 Jul 2009 22:21:06 -0000 1.103 @@ -4,7 +4,7 @@ Summary: A popular and easy to use graphical IRC (chat) client Name: xchat Version: 2.8.6 -Release: 8%{?dist} +Release: 9%{?dist} Epoch: 1 Group: Applications/Internet License: GPLv2+ @@ -27,6 +27,8 @@ Patch40: xchat-2.8.4-shm-pixmaps.patch # Both the "IRC" and "UTF-8" settings will try to accept both Latin1 and UTF-8 # when it comes in, however "IRC" sends Latin1, "UTF-8" sends UTF-8. Patch41: xchat-2.8.6-default-utf8.patch +# fix literal underscore in "C_onnect" button (#512034, Matthias Clasen) +Patch42: xchat-2.8.6-connect-mnemonic.patch BuildRequires: perl perl(ExtUtils::Embed) python-devel openssl-devel pkgconfig, tcl-devel BuildRequires: GConf2-devel @@ -75,6 +77,7 @@ This package contains the X-Chat plugin %patch35 -p1 -b .tray-icon %patch40 -p1 -b .shm-pixmaps %patch41 -p1 -b .default-utf8 +%patch42 -p1 -b .connect-mnemonic sed -i -e 's/#define GTK_DISABLE_DEPRECATED//g' src/fe-gtk/*.c @@ -164,6 +167,9 @@ fi %{_libdir}/xchat/plugins/tcl.so %changelog +* Thu Jul 16 2009 Kevin Kofler - 1:2.8.6-9 +- Fix literal underscore in "C_onnect" button (#512034, Matthias Clasen) + * Mon Jun 29 2009 Kevin Kofler - 1:2.8.6-8 - Change Name in xchat.desktop to XChat IRC (#293841) From jorton at fedoraproject.org Thu Jul 16 22:32:31 2009 From: jorton at fedoraproject.org (jorton) Date: Thu, 16 Jul 2009 22:32:31 +0000 (UTC) Subject: rpms/php/devel php-5.3.0-systzdata-v6.patch, 1.1, 1.2 php.spec, 1.179, 1.180 Message-ID: <20090716223231.14D6F11C0099@cvs1.fedora.phx.redhat.com> Author: jorton Update of /cvs/extras/rpms/php/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22484 Modified Files: php-5.3.0-systzdata-v6.patch php.spec Log Message: * Thu Jul 16 2009 Joe Orton 5.3.0-4 - rediff systzdata patch php-5.3.0-systzdata-v6.patch: Index: php-5.3.0-systzdata-v6.patch =================================================================== RCS file: /cvs/extras/rpms/php/devel/php-5.3.0-systzdata-v6.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-5.3.0-systzdata-v6.patch 16 Jul 2009 22:19:34 -0000 1.1 +++ php-5.3.0-systzdata-v6.patch 16 Jul 2009 22:32:30 -0000 1.2 @@ -16,30 +16,8 @@ r1: initial revision Index: ext/date/lib/timelib.m4 =================================================================== ---- ext/date/lib/timelib.m4 (revision 284069) -+++ ext/date/lib/timelib.m4 (working copy) -@@ -78,3 +78,17 @@ - - dnl Check for strtoll, atoll - AC_CHECK_FUNCS(strtoll atoll strftime) -+ -+PHP_ARG_WITH(system-tzdata, for use of system timezone data, -+[ --with-system-tzdata[=DIR] to specify use of system timezone data], -+no, no) -+ -+if test "$PHP_SYSTEM_TZDATA" != "no"; then -+ AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) -+ -+ if test "$PHP_SYSTEM_TZDATA" != "yes"; then -+ AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", -+ [Define for location of system timezone data]) -+ fi -+fi -+ -Index: ext/date/lib/parse_tz.c -=================================================================== ---- ext/date/lib/parse_tz.c (revision 284069) -+++ ext/date/lib/parse_tz.c (working copy) +--- php-5.3.0/ext/date/lib/parse_tz.c.systzdata ++++ php-5.3.0/ext/date/lib/parse_tz.c @@ -20,6 +20,16 @@ #include "timelib.h" @@ -57,7 +35,7 @@ Index: ext/date/lib/parse_tz.c #include #ifdef HAVE_LOCALE_H -@@ -31,8 +41,13 @@ +@@ -31,7 +41,12 @@ #else #include #endif @@ -65,12 +43,11 @@ Index: ext/date/lib/parse_tz.c +#ifndef HAVE_SYSTEM_TZDATA #include "timezonedb.h" +#endif - -+#include + ++#include + #if (defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__BIG_ENDIAN__) || defined(__LITTLE_ENDIAN__)) # if defined(__LITTLE_ENDIAN__) - # undef WORDS_BIGENDIAN @@ -51,9 +66,14 @@ static void read_preamble(const unsigned char **tzf, timelib_tzinfo *tz) @@ -89,7 +66,7 @@ Index: ext/date/lib/parse_tz.c /* read BC flag */ tz->bc = (**tzf == '\1'); *tzf += 1; -@@ -253,8 +273,391 @@ +@@ -253,7 +273,390 @@ void timelib_dump_tzinfo(timelib_tzinfo } } @@ -122,7 +99,7 @@ Index: ext/date/lib/parse_tz.c +#define LOCINFO_HASH_SIZE (1021) + +static uint32_t tz_hash(const char *str) - { ++{ + const unsigned char *p = (const unsigned char *)str; + uint32_t hash = 5381; + int c; @@ -478,11 +455,10 @@ Index: ext/date/lib/parse_tz.c +#endif + +static int inmem_seek_to_tz_position(const unsigned char **tzf, char *timezone, const timelib_tzdb *tzdb) -+{ + { int left = 0, right = tzdb->index_size - 1; #ifdef HAVE_SETLOCALE - char *cur_locale = NULL, *tmp; -@@ -292,36 +695,124 @@ +@@ -292,36 +695,124 @@ static int seek_to_tz_position(const uns return 0; } @@ -610,3 +586,23 @@ Index: ext/date/lib/parse_tz.c } else { tmp = NULL; } +--- php-5.3.0/ext/date/lib/timelib.m4.systzdata ++++ php-5.3.0/ext/date/lib/timelib.m4 +@@ -78,3 +78,17 @@ stdlib.h + + dnl Check for strtoll, atoll + AC_CHECK_FUNCS(strtoll atoll strftime) ++ ++PHP_ARG_WITH(system-tzdata, for use of system timezone data, ++[ --with-system-tzdata[=DIR] to specify use of system timezone data], ++no, no) ++ ++if test "$PHP_SYSTEM_TZDATA" != "no"; then ++ AC_DEFINE(HAVE_SYSTEM_TZDATA, 1, [Define if system timezone data is used]) ++ ++ if test "$PHP_SYSTEM_TZDATA" != "yes"; then ++ AC_DEFINE_UNQUOTED(HAVE_SYSTEM_TZDATA_PREFIX, "$PHP_SYSTEM_TZDATA", ++ [Define for location of system timezone data]) ++ fi ++fi ++ Index: php.spec =================================================================== RCS file: /cvs/extras/rpms/php/devel/php.spec,v retrieving revision 1.179 retrieving revision 1.180 diff -u -p -r1.179 -r1.180 --- php.spec 16 Jul 2009 22:19:34 -0000 1.179 +++ php.spec 16 Jul 2009 22:32:30 -0000 1.180 @@ -13,7 +13,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.3.0 -Release: 3%{?dist} +Release: 4%{?dist} License: PHP Group: Development/Languages URL: http://www.php.net/ @@ -843,6 +843,9 @@ rm files.* macros.php %files enchant -f files.enchant %changelog +* Thu Jul 16 2009 Joe Orton 5.3.0-4 +- rediff systzdata patch + * Thu Jul 16 2009 Joe Orton 5.3.0-3 - update to v6 of systzdata patch; various fixes From jussilehtola at fedoraproject.org Thu Jul 16 22:35:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 16 Jul 2009 22:35:18 +0000 (UTC) Subject: rpms/towhee/F-10 towhee.spec,1.5,1.6 Message-ID: <20090716223519.00E0611C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/towhee/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23179/F-10 Modified Files: towhee.spec Log Message: Restore ExcludeArch. Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/F-10/towhee.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- towhee.spec 16 Jul 2009 16:41:38 -0000 1.5 +++ towhee.spec 16 Jul 2009 22:35:16 -0000 1.6 @@ -1,6 +1,6 @@ Name: towhee Version: 6.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -9,7 +9,11 @@ Source0: http://downloads.sourceforge.ne BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Provides: towhee-executable = %{version}-%{release} Requires: towhee-common = %{version}-%{release} -#ExcludeArch: ppc64 + +# Bug 502883 +# Error: operand out of range (0x0000000000008008 is not between 0xffffffffffff8000 and 0x0000000000007fff) +# -mminimal-toc doesn't help +ExcludeArch: ppc64 BuildRequires: gcc-gfortran BuildRequires: openmpi-devel @@ -115,17 +119,6 @@ done # Use gfortran, not g77. export F77=gfortran -# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=502883 -%ifarch ppc64 -export CFLAGS="%{optflags} -mminimal-toc" -export CXXFLAGS="%{optflags} -mminimal-toc" -export FFLAGS="%{optflags} -mminimal-toc" -%else -export FFLAGS="%{optflags}" -export CXXFLAGS="%{optflags}" -export CFLAGS="%{optflags}" -%endif - ## Build serial version mkdir nompi cd nompi @@ -220,6 +213,9 @@ rm -rf %{buildroot} %changelog * Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 +- Restore ExcludeArch: ppc64. + +* Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 - Update to upstream 6.2.6. * Wed Jun 17 2009 Jussi Lehtola - 6.2.5-1 From bskeggs at fedoraproject.org Thu Jul 16 22:37:51 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Thu, 16 Jul 2009 22:37:51 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel .cvsignore, 1.35, 1.36 sources, 1.36, 1.37 xorg-x11-drv-nouveau.spec, 1.43, 1.44 Message-ID: <20090716223751.DC22F11C0099@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23850 Modified Files: .cvsignore sources xorg-x11-drv-nouveau.spec Log Message: * Fri Jul 17 2009 Ben Skeggs 0.0.14-2.20090717gitb1b2330 - build fixes for recent X changes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 6 Jul 2009 00:12:23 -0000 1.35 +++ .cvsignore 16 Jul 2009 22:37:51 -0000 1.36 @@ -1 +1 @@ -xf86-video-nouveau-0.0.14-20090701git6d14327.tar.bz2 +xf86-video-nouveau-0.0.14-20090717gitb1b2330.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 6 Jul 2009 00:12:24 -0000 1.36 +++ sources 16 Jul 2009 22:37:51 -0000 1.37 @@ -1 +1 @@ -2e10f17f6e356996142d0e4724765490 xf86-video-nouveau-0.0.14-20090701git6d14327.tar.bz2 +c659ae86325218d9bcd9d1a6828fd77c xf86-video-nouveau-0.0.14-20090717gitb1b2330.tar.bz2 Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- xorg-x11-drv-nouveau.spec 15 Jul 2009 15:58:18 -0000 1.43 +++ xorg-x11-drv-nouveau.spec 16 Jul 2009 22:37:51 -0000 1.44 @@ -7,8 +7,8 @@ # git clone git://git.freedesktop.org/git/nouveau/xf86-video-nouveau # git-archive --format=tar --prefix=xf86-video-nouveau-0.0.10/ %{git_version} | bzip2 > xf86-video-nouveau-0.0.10-%{gitdate}.tar.bz2 -%define gitdate 20090701 -%define git_version 6d14327 +%define gitdate 20090717 +%define git_version b1b2330 %define snapshot %{gitdate}git%{git_version} @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 1.%{snapshot}%{?dist}.1 +Release: 2.%{snapshot}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Fri Jul 17 2009 Ben Skeggs 0.0.14-2.20090717gitb1b2330 +- build fixes for recent X changes + * Wed Jul 15 2009 Adam Jackson - 1:0.0.14-1.20090701git6d14327.1 - ABI bump From ricky at fedoraproject.org Thu Jul 16 22:38:43 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 22:38:43 +0000 (UTC) Subject: rpms/python-weberror/devel a,NONE,1.1 Message-ID: <20090716223843.9AB9A11C0099@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24217 Added Files: a Log Message: Test commit! --- NEW FILE a --- Test file. From ricky at fedoraproject.org Thu Jul 16 22:40:27 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 22:40:27 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.1,1.2 Message-ID: <20090716224027.E057211C0099@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24624 Modified Files: a Log Message: Another test commit. Index: a =================================================================== RCS file: /cvs/pkgs/rpms/python-weberror/devel/a,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- a 16 Jul 2009 22:38:43 -0000 1.1 +++ a 16 Jul 2009 22:39:57 -0000 1.2 @@ -1 +1,2 @@ Test file. +More testing. From ricky at fedoraproject.org Thu Jul 16 22:41:22 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 22:41:22 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.2,1.3 Message-ID: <20090716224122.1FEDE11C0099@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25044 Modified Files: a Log Message: Another test commit. Index: a =================================================================== RCS file: /cvs/pkgs/rpms/python-weberror/devel/a,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- a 16 Jul 2009 22:39:57 -0000 1.2 +++ a 16 Jul 2009 22:41:21 -0000 1.3 @@ -1,2 +0,0 @@ -Test file. -More testing. From tgl at fedoraproject.org Thu Jul 16 22:44:48 2009 From: tgl at fedoraproject.org (Tom Lane) Date: Thu, 16 Jul 2009 22:44:48 +0000 (UTC) Subject: rpms/mysql/F-10 mysql-format-string.patch, NONE, 1.1 mysql.spec, 1.112, 1.113 Message-ID: <20090716224448.AFE2A11C0099@cvs1.fedora.phx.redhat.com> Author: tgl Update of /cvs/pkgs/rpms/mysql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25840 Modified Files: mysql.spec Added Files: mysql-format-string.patch Log Message: Add fix for CVE-2009-2446 mysql-format-string.patch: --- NEW FILE mysql-format-string.patch --- Fix for CVE-2009-2446: a user-supplied string was being passed as the format string to mysql_log.write(), resulting in a crash (or perhaps worse things) if the string contained any % characters. diff -Naur mysql-5.0.77.orig/libmysqld/sql_parse.cc mysql-5.0.77/libmysqld/sql_parse.cc --- mysql-5.0.77.orig/libmysqld/sql_parse.cc 2009-01-29 16:45:33.000000000 -0500 +++ mysql-5.0.77/libmysqld/sql_parse.cc 2009-07-16 17:29:36.000000000 -0400 @@ -2096,7 +2096,7 @@ } if (check_access(thd,CREATE_ACL,db,0,1,0,is_schema_db(db))) break; - mysql_log.write(thd,command,packet); + mysql_log.write(thd,command,"%s",packet); bzero(&create_info, sizeof(create_info)); mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db), &create_info, 0); @@ -2121,7 +2121,7 @@ ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0)); break; } - mysql_log.write(thd,command,db); + mysql_log.write(thd,command,"%s",db); mysql_rm_db(thd, db, 0, 0); break; } diff -Naur mysql-5.0.77.orig/sql/sql_parse.cc mysql-5.0.77/sql/sql_parse.cc --- mysql-5.0.77.orig/sql/sql_parse.cc 2009-01-29 16:45:33.000000000 -0500 +++ mysql-5.0.77/sql/sql_parse.cc 2009-07-16 17:27:49.000000000 -0400 @@ -2096,7 +2096,7 @@ } if (check_access(thd,CREATE_ACL,db,0,1,0,is_schema_db(db))) break; - mysql_log.write(thd,command,packet); + mysql_log.write(thd,command,"%s",packet); bzero(&create_info, sizeof(create_info)); mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db), &create_info, 0); @@ -2121,7 +2121,7 @@ ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0)); break; } - mysql_log.write(thd,command,db); + mysql_log.write(thd,command,"%s",db); mysql_rm_db(thd, db, 0, 0); break; } Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/F-10/mysql.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- mysql.spec 11 Jul 2009 20:38:42 -0000 1.112 +++ mysql.spec 16 Jul 2009 22:44:18 -0000 1.113 @@ -1,6 +1,6 @@ Name: mysql Version: 5.0.83 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases URL: http://www.mysql.com @@ -34,6 +34,7 @@ Patch10: mysql-bdb-open.patch Patch13: mysql-no-dbug.patch Patch15: mysql-stack-guard.patch Patch17: mysql-bug-44348.patch +Patch18: mysql-format-string.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: gperf, perl, readline-devel, openssl-devel @@ -180,6 +181,7 @@ the MySQL sources. %patch13 -p1 %patch15 -p1 %patch17 -p1 +%patch18 -p1 libtoolize --force aclocal @@ -628,6 +630,11 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Thu Jul 16 2009 Tom Lane 5.0.83-3 +- Add fix for CVE-2009-2446 (format string vulnerability in COM_CREATE_DB and + COM_DROP_DB processing) +Related: #511020 + * Sat Jul 11 2009 Tom Lane 5.0.83-2 - Work around upstream bug 44348 From ricky at fedoraproject.org Thu Jul 16 22:47:22 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 22:47:22 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.3,1.4 Message-ID: <20090716224722.5E87711C0099@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26440 Modified Files: a Log Message: Apologies for the spam, still testing something. View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.3 -r 1.4 a Index: a =================================================================== RCS file: /cvs/pkgs/rpms/python-weberror/devel/Attic/a,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- a 16 Jul 2009 22:41:21 -0000 1.3 +++ a 16 Jul 2009 22:46:51 -0000 1.4 @@ -0,0 +1,100000 @@ +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text [...99609 lines suppressed...] +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text +Test text From jkeating at fedoraproject.org Thu Jul 16 22:55:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 16 Jul 2009 22:55:19 +0000 (UTC) Subject: rpms/trac/F-11 import.log, NONE, 1.1 .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 trac.spec, 1.28, 1.29 Message-ID: <20090716225520.1723711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28284/F-11 Modified Files: .cvsignore sources trac.spec Added Files: import.log Log Message: Import the rawhide build for F-11 --- NEW FILE import.log --- trac-0_11_4-1_fc12:F-11:trac-0.11.4-1.fc12.src.rpm:1247784793 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 15 Feb 2009 22:02:56 -0000 1.14 +++ .cvsignore 16 Jul 2009 22:54:49 -0000 1.15 @@ -1 +1 @@ -Trac-0.11.3.tar.gz +Trac-0.11.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 15 Feb 2009 22:02:56 -0000 1.14 +++ sources 16 Jul 2009 22:54:49 -0000 1.15 @@ -1 +1 @@ -df29c9be868ab5aa02cfaa0e3bbc7a2b Trac-0.11.3.tar.gz +a765087b22661cf4aa1520518cddecae Trac-0.11.4.tar.gz Index: trac.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac/F-11/trac.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- trac.spec 31 Mar 2009 20:20:31 -0000 1.28 +++ trac.spec 16 Jul 2009 22:54:49 -0000 1.29 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: trac -Version: 0.11.3 -Release: 4%{?dist} +Version: 0.11.4 +Release: 1%{?dist} Summary: Enhanced wiki and issue tracking system Group: Applications/Internet License: BSD @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_var}/www/cgi-bin/trac.fcgi %changelog +* Tue May 05 2009 Jesse Keating - 0.11.4-1 +- New upstream release to fix bugs and minor enhancements. + * Tue Mar 31 2009 Michael Schwendt - 0.11.3-4 - Fix unowned directory (#473989) From bskeggs at fedoraproject.org Thu Jul 16 22:58:08 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Thu, 16 Jul 2009 22:58:08 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel nouveau-bicubic-2x.patch, 1.1, 1.2 nouveau-fb-resize.patch, 1.3, 1.4 nouveau-multiple-xserver.patch, 1.4, 1.5 nouveau-nv50-fb-accel.patch, 1.4, 1.5 nouveau-transition-hack.patch, 1.4, 1.5 xorg-x11-drv-nouveau.spec, 1.44, 1.45 Message-ID: <20090716225808.7712711C0099@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28938 Modified Files: nouveau-bicubic-2x.patch nouveau-fb-resize.patch nouveau-multiple-xserver.patch nouveau-nv50-fb-accel.patch nouveau-transition-hack.patch xorg-x11-drv-nouveau.spec Log Message: * Fri Jul 17 2009 Ben Skeggs 0.0.14-3.20090717gitb1b2330 - somehow missed updated patches, pkg script lost a line somewhere! nouveau-bicubic-2x.patch: Index: nouveau-bicubic-2x.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-bicubic-2x.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nouveau-bicubic-2x.patch 6 Jul 2009 00:13:24 -0000 1.1 +++ nouveau-bicubic-2x.patch 16 Jul 2009 22:58:07 -0000 1.2 @@ -1,4 +1,4 @@ -From 4b61a6276ea839ba3419367d2d9a96fd1deb3c73 Mon Sep 17 00:00:00 2001 +From 106c7cbafe6d879fd3c244f174e661680c9d109a Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 4 May 2009 17:04:34 +1000 Subject: [PATCH 5/5] xv: only use bicubic filtering when scaling >=2x nouveau-fb-resize.patch: Index: nouveau-fb-resize.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-fb-resize.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nouveau-fb-resize.patch 6 Jul 2009 00:12:23 -0000 1.3 +++ nouveau-fb-resize.patch 16 Jul 2009 22:58:07 -0000 1.4 @@ -1,4 +1,4 @@ -From d061d79be9996d1dfc0295ad1b5cce3b1822d253 Mon Sep 17 00:00:00 2001 +From cd96d5ff88d5af86783eff3c6869280b60113dfe Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 14 Apr 2009 09:23:07 +1000 Subject: [PATCH 4/5] f11: support framebuffer resize without driver pixmaps @@ -14,10 +14,10 @@ Subject: [PATCH 4/5] f11: support frameb 7 files changed, 226 insertions(+), 35 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 7313653..c831127 100644 +index 3920459..1af7e23 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c -@@ -1075,7 +1075,60 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num) +@@ -1077,7 +1077,60 @@ drmmode_output_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num) } static Bool @@ -79,7 +79,7 @@ index 7313653..c831127 100644 { xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(scrn); ScreenPtr screen = screenInfo.screens[scrn->scrnIndex]; -@@ -1092,10 +1145,23 @@ drmmode_xf86crtc_resize(ScrnInfoPtr scrn, int width, int height) +@@ -1094,10 +1147,23 @@ drmmode_xf86crtc_resize(ScrnInfoPtr scrn, int width, int height) ErrorF("resize called %d %d\n", width, height); if (!pNv->exa_driver_pixmaps) { @@ -105,7 +105,7 @@ index 7313653..c831127 100644 return TRUE; } -@@ -1175,7 +1241,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { +@@ -1177,7 +1243,7 @@ static const xf86CrtcConfigFuncsRec drmmode_xf86crtc_config_funcs = { Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) { @@ -114,7 +114,7 @@ index 7313653..c831127 100644 drmmode_ptr drmmode; int i; -@@ -1199,8 +1265,7 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) +@@ -1201,8 +1267,7 @@ Bool drmmode_pre_init(ScrnInfoPtr pScrn, int fd, int cpp) for (i = 0; i < drmmode->mode_res->count_connectors; i++) drmmode_output_init(pScrn, drmmode, i); @@ -318,11 +318,11 @@ index b8524fb..7f9b82b 100644 start &= ~3; nv_crtc->state->fb_start = start; diff --git a/src/nv_driver.c b/src/nv_driver.c -index 0db0c1c..64f4652 100644 +index 5b7cdab..80a0454 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c -@@ -776,16 +776,113 @@ Bool NVI2CInit(ScrnInfoPtr pScrn) - return TRUE; +@@ -588,16 +588,113 @@ NVFreeScreen(int scrnIndex, int flags) + pScrn->driverPrivate = NULL; } +void @@ -440,7 +440,7 @@ index 0db0c1c..64f4652 100644 } static const xf86CrtcConfigFuncsRec nv_xf86crtc_config_funcs = { -@@ -1314,7 +1411,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) +@@ -1062,7 +1159,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) } else nv50_output_create(pScrn); /* create randr-1.2 "outputs". */ @@ -450,11 +450,11 @@ index 0db0c1c..64f4652 100644 } diff --git a/src/nv_type.h b/src/nv_type.h -index 7d7ede9..04b5fa2 100644 +index 3def425..bd89539 100644 --- a/src/nv_type.h +++ b/src/nv_type.h -@@ -204,9 +204,12 @@ typedef struct _NVRec { - volatile CARD8 *PDIO1; +@@ -140,9 +140,12 @@ typedef struct _NVRec { + volatile CARD32 *FB_BAR; uint8_t cur_head; + @@ -466,7 +466,7 @@ index 7d7ede9..04b5fa2 100644 ScreenBlockHandlerProcPtr BlockHandler; CloseScreenProcPtr CloseScreen; /* Cursor */ -@@ -394,11 +397,15 @@ nouveau_pixmap_offset(PixmapPtr ppix) +@@ -308,11 +311,15 @@ nouveau_pixmap_offset(PixmapPtr ppix) { ScrnInfoPtr pScrn = xf86Screens[ppix->drawable.pScreen->myNum]; NVPtr pNv = NVPTR(pScrn); nouveau-multiple-xserver.patch: Index: nouveau-multiple-xserver.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-multiple-xserver.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nouveau-multiple-xserver.patch 6 Jul 2009 00:12:24 -0000 1.4 +++ nouveau-multiple-xserver.patch 16 Jul 2009 22:58:07 -0000 1.5 @@ -1,14 +1,14 @@ -From 4ad2199fcacda97aeb11277e3530f847fd23ca47 Mon Sep 17 00:00:00 2001 +From 5b4e7d23eebb0731d5103196c2620b866b5acdb1 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Sun, 28 Jun 2009 20:35:54 +1000 Subject: [PATCH 1/5] f12: hack to support multiple xserver instances --- - src/nv_driver.c | 98 +++++++++++++++++++++++++++++++++++++++--------------- - 1 files changed, 71 insertions(+), 27 deletions(-) + src/nv_driver.c | 104 ++++++++++++++++++++++++++++++++++++++++-------------- + 1 files changed, 77 insertions(+), 27 deletions(-) diff --git a/src/nv_driver.c b/src/nv_driver.c -index 3312192..3d49b10 100644 +index fda0042..5e80154 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -21,6 +21,7 @@ @@ -19,7 +19,7 @@ index 3312192..3d49b10 100644 #include "nv_include.h" -@@ -532,14 +533,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) +@@ -378,14 +379,27 @@ NV50ReleaseDisplay(ScrnInfoPtr pScrn) */ /* Mandatory */ @@ -47,7 +47,7 @@ index 3312192..3d49b10 100644 if (!pNv->NoAccel) NVAccelCommonInit(pScrn); -@@ -596,6 +610,13 @@ NVLeaveVT(int scrnIndex, int flags) +@@ -436,6 +450,13 @@ NVLeaveVT(int scrnIndex, int flags) NVSync(pScrn); @@ -61,7 +61,7 @@ index 3312192..3d49b10 100644 if (!pNv->kms_enable) { if (pNv->Architecture < NV_ARCH_50) NVRestore(pScrn); -@@ -1528,6 +1549,52 @@ NVMapMemSW(ScrnInfoPtr pScrn) +@@ -1168,6 +1189,58 @@ NVMapMemSW(ScrnInfoPtr pScrn) } static Bool @@ -79,6 +79,12 @@ index 3312192..3d49b10 100644 + if (ret) + return FALSE; + ++ ret = nouveau_bo_pin(pNv->FB, NOUVEAU_BO_VRAM); ++ if (ret) { ++ nouveau_bo_ref(NULL, &pNv->FB); ++ return FALSE; ++ } ++ + return TRUE; +} + @@ -114,7 +120,7 @@ index 3312192..3d49b10 100644 NVMapMem(ScrnInfoPtr pScrn) { NVPtr pNv = NVPTR(pScrn); -@@ -1558,6 +1625,8 @@ NVMapMem(ScrnInfoPtr pScrn) +@@ -1198,6 +1271,8 @@ NVMapMem(ScrnInfoPtr pScrn) size = size * (pScrn->bitsPerPixel >> 3); size = size * height; } else { @@ -123,7 +129,7 @@ index 3312192..3d49b10 100644 size = pNv->VRAMPhysicalSize / 2; } -@@ -1568,38 +1637,13 @@ NVMapMem(ScrnInfoPtr pScrn) +@@ -1208,38 +1283,13 @@ NVMapMem(ScrnInfoPtr pScrn) "Failed to allocate framebuffer memory\n"); return FALSE; } nouveau-nv50-fb-accel.patch: Index: nouveau-nv50-fb-accel.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-nv50-fb-accel.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nouveau-nv50-fb-accel.patch 6 Jul 2009 00:12:24 -0000 1.4 +++ nouveau-nv50-fb-accel.patch 16 Jul 2009 22:58:07 -0000 1.5 @@ -1,4 +1,4 @@ -From 7215e5332099799538dbe6e69a726bdf8e540709 Mon Sep 17 00:00:00 2001 +From 350d281e5e18b34d234169a24407bed7c4ee5114 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Mon, 13 Apr 2009 19:30:38 +1000 Subject: [PATCH 3/5] nv50/f11: accelerate front-buffer rendering, linear shadow for scanout @@ -10,18 +10,18 @@ Subject: [PATCH 3/5] nv50/f11: accelerat src/nv50_randr.c | 2 +- src/nv50_shadow_damage.c | 308 ++++++++++++++++++++++++++++++++++++++++++++++ src/nv_dri.c | 2 +- - src/nv_driver.c | 40 ++++++- + src/nv_driver.c | 46 ++++++- src/nv_proto.h | 4 + src/nv_shadow.c | 8 +- src/nv_type.h | 4 + - 10 files changed, 392 insertions(+), 24 deletions(-) + 10 files changed, 397 insertions(+), 25 deletions(-) create mode 100644 src/nv50_shadow_damage.c diff --git a/src/Makefile.am b/src/Makefile.am -index c8016eb..b8c0f8d 100644 +index 3bd4b8c..2cd6ca2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am -@@ -83,6 +83,7 @@ nouveau_drv_la_SOURCES = \ +@@ -81,6 +81,7 @@ nouveau_drv_la_SOURCES = \ nv50_xv.c \ nv50_texture.h \ nv50reg.h \ @@ -30,7 +30,7 @@ index c8016eb..b8c0f8d 100644 nouveau_output.h \ nouveau_connector.h \ diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 7f9b31d..7313653 100644 +index f68e0eb..3920459 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -201,8 +201,8 @@ drmmode_fb_copy_sw(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int dst_id, @@ -505,10 +505,10 @@ index f1fe501..68284d2 100644 xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "[dri] unable to reference front buffer: %d\n", ret); diff --git a/src/nv_driver.c b/src/nv_driver.c -index 3d49b10..0db0c1c 100644 +index 5e80154..5b7cdab 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c -@@ -564,10 +564,11 @@ NVEnterVT(int scrnIndex, int flags) +@@ -410,10 +410,11 @@ NVEnterVT(int scrnIndex, int flags) /* Clear the framebuffer, we don't want to see garbage * on-screen up until X decides to draw something */ @@ -524,7 +524,7 @@ index 3d49b10..0db0c1c 100644 if (pNv->Architecture == NV_ARCH_50) { if (!NV50AcquireDisplay(pScrn)) -@@ -1509,6 +1510,8 @@ NVMapMemSW(ScrnInfoPtr pScrn) +@@ -1149,6 +1150,8 @@ NVMapMemSW(ScrnInfoPtr pScrn) return FALSE; pNv->GART = NULL; @@ -533,12 +533,13 @@ index 3d49b10..0db0c1c 100644 ret = nouveau_bo_fake(&dev, Cursor0Offset, NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN, 64 * 64 * 4, pNv->VRAMMap + Cursor0Offset, -@@ -1644,6 +1647,25 @@ skip_fb: +@@ -1290,6 +1293,26 @@ skip_fb: "at offset 0x%X\n", (uint32_t)(pNv->FB->size >> 20), (uint32_t) pNv->FB->offset); + /* Allocate linear scanout. */ -+ if (!pNv->NoAccel && pNv->Architecture >= NV_ARCH_50) { ++ if (!pNv->NoAccel && !(pNv->exa_driver_pixmaps && pNv->kms_enable) && ++ pNv->Architecture >= NV_ARCH_50) { + unsigned scanout_size; + + scanout_size = NOUVEAU_ALIGN(pScrn->virtualX, 64); @@ -559,7 +560,7 @@ index 3d49b10..0db0c1c 100644 /* We don't need to allocate cursors / lut here if we're using * kernel modesetting **/ -@@ -1716,6 +1738,7 @@ NVUnmapMem(ScrnInfoPtr pScrn) +@@ -1357,6 +1380,7 @@ NVUnmapMem(ScrnInfoPtr pScrn) } nouveau_bo_ref(NULL, &pNv->FB); @@ -567,27 +568,36 @@ index 3d49b10..0db0c1c 100644 nouveau_bo_ref(NULL, &pNv->GART); nouveau_bo_ref(NULL, &pNv->Cursor); nouveau_bo_ref(NULL, &pNv->Cursor2); -@@ -2247,6 +2270,15 @@ NVSaveScreen(ScreenPtr pScreen, int mode) +@@ -1702,11 +1726,23 @@ NVSaveScreen(ScreenPtr pScreen, int mode) bool on = xf86IsUnblank(mode); int i; -+ /* This might seem strange, but we need an entry point after CreateScreenResources. -+ * This happens to one of the few, if not the only place. ++ /* This might seem strange, but we need an entry point after ++ * CreateScreenResources. This happens to one of the few, if not ++ * the only place. ++ * + * When we move to driver allocated pixmaps, we can move this. + */ + if (mode == SCREEN_SAVER_FORCER && pNv->Architecture == NV_ARCH_50 && -+ !pNv->NoAccel && !pNv->screen_damage && ++ !pNv->NoAccel && !pNv->screen_damage && !pNv->exa_driver_pixmaps && + !nv50_shadow_damage_create(pScrn)) + return FALSE; + - if (!pNv->randr12_enable) - return vgaHWSaveScreen(pScreen, mode); + if (pScrn->vtSema && pNv->Architecture < NV_ARCH_50) { + xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn); + for (i = 0; i < xf86_config->num_crtc; i++) { +- struct nouveau_crtc *nv_crtc = to_nouveau_crtc(xf86_config->crtc[i]); ++ struct nouveau_crtc *nv_crtc = ++ to_nouveau_crtc(xf86_config->crtc[i]); + + if (xf86_config->crtc[i]->enabled) + NVBlankScreen(pNv, nv_crtc->head, !on); diff --git a/src/nv_proto.h b/src/nv_proto.h -index 3a1e1fe..5b82b09 100644 +index 9132940..f4abb23 100644 --- a/src/nv_proto.h +++ b/src/nv_proto.h -@@ -273,6 +273,10 @@ void nv50_xv_video_stop(ScrnInfoPtr, pointer, Bool); +@@ -254,6 +254,10 @@ void nv50_xv_video_stop(ScrnInfoPtr, pointer, Bool); int nv50_xv_port_attribute_set(ScrnInfoPtr, Atom, INT32, pointer); int nv50_xv_port_attribute_get(ScrnInfoPtr, Atom, INT32 *, pointer); @@ -631,10 +641,10 @@ index ea1ba35..e15051c 100644 + nouveau_bo_unmap(pNv->scanout); } diff --git a/src/nv_type.h b/src/nv_type.h -index 61a148a..7d7ede9 100644 +index 78a5072..3def425 100644 --- a/src/nv_type.h +++ b/src/nv_type.h -@@ -170,6 +170,7 @@ typedef struct _NVRec { +@@ -116,6 +116,7 @@ typedef struct _NVRec { /* Various pinned memory regions */ struct nouveau_bo * FB; void * FBMap; @@ -642,7 +652,7 @@ index 61a148a..7d7ede9 100644 //struct nouveau_bo * FB_old; /* for KMS */ struct nouveau_bo * shadow[2]; /* for easy acces by exa */ struct nouveau_bo * Cursor; -@@ -178,6 +179,9 @@ typedef struct _NVRec { +@@ -124,6 +125,9 @@ typedef struct _NVRec { struct nvbios VBIOS; struct nouveau_bios_info *vbios; nouveau-transition-hack.patch: Index: nouveau-transition-hack.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/nouveau-transition-hack.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nouveau-transition-hack.patch 6 Jul 2009 00:12:24 -0000 1.4 +++ nouveau-transition-hack.patch 16 Jul 2009 22:58:08 -0000 1.5 @@ -1,4 +1,4 @@ -From b77c1b4e03bf5bac112d0cd2babaaecd6fed40f6 Mon Sep 17 00:00:00 2001 +From 2c7d72e602efce6c6fae11c93da173c7beee5eea Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 30 Jun 2009 10:52:07 +1000 Subject: [PATCH 2/5] f12: transitions @@ -8,7 +8,7 @@ Subject: [PATCH 2/5] f12: transitions 1 files changed, 145 insertions(+), 2 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c -index 5e2b5f5..7f9b31d 100644 +index 1f67dd7..f68e0eb 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -171,6 +171,142 @@ drmmode_fb_pixmap(ScrnInfoPtr pScrn, int id, unsigned *w, unsigned *h) @@ -169,10 +169,10 @@ index 5e2b5f5..7f9b31d 100644 pspix = drmmode_fb_pixmap(pScrn, src_id, &w, &h); if (!pspix) return; -@@ -281,8 +425,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, - if (drmmode_crtc->rotate_fb_id) - fb_id = drmmode_crtc->rotate_fb_id; - else +@@ -283,8 +427,7 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, + x = 0; + y = 0; + } else - if (fb_id != drmmode_crtc->mode_crtc->buffer_id && - pNv->exa_driver_pixmaps) { + if (fb_id != drmmode_crtc->mode_crtc->buffer_id) { Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xorg-x11-drv-nouveau.spec 16 Jul 2009 22:37:51 -0000 1.44 +++ xorg-x11-drv-nouveau.spec 16 Jul 2009 22:58:08 -0000 1.45 @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 2.%{snapshot}%{?dist} +Release: 3.%{snapshot}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Fri Jul 17 2009 Ben Skeggs 0.0.14-3.20090717gitb1b2330 +- somehow missed updated patches to go on top + * Fri Jul 17 2009 Ben Skeggs 0.0.14-2.20090717gitb1b2330 - build fixes for recent X changes From gd at fedoraproject.org Thu Jul 16 22:58:54 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Thu, 16 Jul 2009 22:58:54 +0000 (UTC) Subject: rpms/samba/devel samba-3.4.0-bug6551.patch, NONE, 1.1 samba.spec, 1.189, 1.190 Message-ID: <20090716225854.318A411C006D@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29054 Modified Files: samba.spec Added Files: samba-3.4.0-bug6551.patch Log Message: Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) Guenther samba-3.4.0-bug6551.patch: --- NEW FILE samba-3.4.0-bug6551.patch --- >From 94565270786003d6fb97ec7289b904948db281cd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 15 Jul 2009 14:00:41 -0700 Subject: [PATCH] Fix bug #6551 - win98 clients cannot connect after server upgrade to samba-3.4.0. The values of vuid and tid were not being correctly updated in the struct smb_request when passed to chain_reply inside sessionsetupX and tconX. Jeremy. --- source3/smbd/reply.c | 2 ++ source3/smbd/sesssetup.c | 1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 6fe4f88..f76ab6d 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -759,6 +759,7 @@ void reply_tcon_and_X(struct smb_request *req) END_PROFILE(SMBtconX); + req->tid = conn->cnum; chain_reply(req); return; } @@ -1924,6 +1925,7 @@ void reply_ulogoffX(struct smb_request *req) DEBUG( 3, ( "ulogoffX vuid=%d\n", req->vuid ) ); END_PROFILE(SMBulogoffX); + req->vuid = UID_FIELD_INVALID; chain_reply(req); } diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 2c92c41..044e398 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -1805,6 +1805,7 @@ void reply_sesssetup_and_X(struct smb_request *req) SSVAL(req->outbuf,smb_uid,sess_vuid); SSVAL(req->inbuf,smb_uid,sess_vuid); + req->vuid = sess_vuid; if (!done_sesssetup) max_send = MIN(max_send,smb_bufsize); -- 1.5.4.3 Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/samba.spec,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- samba.spec 14 Jul 2009 23:03:09 -0000 1.189 +++ samba.spec 16 Jul 2009 22:58:23 -0000 1.190 @@ -1,4 +1,4 @@ -%define main_release 40 +%define main_release 41 %define samba_version 3.4.0 %define tdb_version 1.1.3 %define talloc_version 1.2.0 @@ -49,6 +49,7 @@ Patch104: samba-3.0.0rc3-nmbd-netbiosnam Patch107: samba-3.2.0pre1-grouppwd.patch Patch200: samba-3.2.5-inotify.patch Patch201: samba-3.4.0-build.patch +Patch202: samba-3.4.0-bug6551.patch Requires(pre): samba-common = %{epoch}:%{samba_version}-%{release} Requires: pam >= 0:0.64 @@ -260,6 +261,7 @@ cp %{SOURCE11} packaging/Fedora/ %patch107 -p1 -b .grouppwd %patch200 -p0 -b .inotify %patch201 -p1 -b .build +%patch202 -p1 -b .bug6551 mv %samba_source/VERSION %samba_source/VERSION.orig sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{samba_release}\"/' < %samba_source/VERSION.orig > %samba_source/VERSION @@ -886,6 +888,9 @@ exit 0 %{_datadir}/pixmaps/samba/logo-small.png %changelog +* Fri Jul 17 2009 Guenther Deschner - 3.4.0-0.41 +- Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) + * Fri Jul 03 2009 Guenther Deschner - 3.4.0-0.40 - Update to 3.4.0 From ricky at fedoraproject.org Thu Jul 16 23:01:49 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:01:49 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.5,1.6 Message-ID: <20090716230150.015BF11C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30011 Added Files: a Log Message: Making sure that commits work Index: a =================================================================== RCS file: a diff -N a --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ a 16 Jul 2009 23:01:18 -0000 1.6 @@ -0,0 +1 @@ +Test commit. From ricky at fedoraproject.org Thu Jul 16 23:04:13 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:04:13 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.6,1.7 Message-ID: <20090716230413.2D7E311C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30593 Modified Files: a Log Message: Making sure that commits work 2 Index: a =================================================================== RCS file: /cvs/pkgs/rpms/python-weberror/devel/a,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- a 16 Jul 2009 23:01:18 -0000 1.6 +++ a 16 Jul 2009 23:03:42 -0000 1.7 @@ -1 +1,2 @@ Test commit. +More. From gd at fedoraproject.org Thu Jul 16 23:05:48 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Thu, 16 Jul 2009 23:05:48 +0000 (UTC) Subject: rpms/samba/F-11 samba-3.4.0-bug6551.patch, NONE, 1.1 samba.spec, 1.187, 1.188 Message-ID: <20090716230548.E5F3711C0047@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31059 Modified Files: samba.spec Added Files: samba-3.4.0-bug6551.patch Log Message: Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) Guenther samba-3.4.0-bug6551.patch: --- NEW FILE samba-3.4.0-bug6551.patch --- >From 94565270786003d6fb97ec7289b904948db281cd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 15 Jul 2009 14:00:41 -0700 Subject: [PATCH] Fix bug #6551 - win98 clients cannot connect after server upgrade to samba-3.4.0. The values of vuid and tid were not being correctly updated in the struct smb_request when passed to chain_reply inside sessionsetupX and tconX. Jeremy. --- source3/smbd/reply.c | 2 ++ source3/smbd/sesssetup.c | 1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 6fe4f88..f76ab6d 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -759,6 +759,7 @@ void reply_tcon_and_X(struct smb_request *req) END_PROFILE(SMBtconX); + req->tid = conn->cnum; chain_reply(req); return; } @@ -1924,6 +1925,7 @@ void reply_ulogoffX(struct smb_request *req) DEBUG( 3, ( "ulogoffX vuid=%d\n", req->vuid ) ); END_PROFILE(SMBulogoffX); + req->vuid = UID_FIELD_INVALID; chain_reply(req); } diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 2c92c41..044e398 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -1805,6 +1805,7 @@ void reply_sesssetup_and_X(struct smb_request *req) SSVAL(req->outbuf,smb_uid,sess_vuid); SSVAL(req->inbuf,smb_uid,sess_vuid); + req->vuid = sess_vuid; if (!done_sesssetup) max_send = MIN(max_send,smb_bufsize); -- 1.5.4.3 Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba.spec,v retrieving revision 1.187 retrieving revision 1.188 diff -u -p -r1.187 -r1.188 --- samba.spec 15 Jul 2009 10:21:15 -0000 1.187 +++ samba.spec 16 Jul 2009 23:05:18 -0000 1.188 @@ -1,4 +1,4 @@ -%define main_release 39 +%define main_release 40 %define samba_version 3.4.0 %define tdb_version 1.1.3 %define talloc_version 1.2.0 @@ -48,6 +48,7 @@ Patch104: samba-3.0.0rc3-nmbd-netbiosnam Patch107: samba-3.2.0pre1-grouppwd.patch Patch200: samba-3.2.5-inotify.patch Patch201: samba-3.4.0-build.patch +Patch202: samba-3.4.0-bug6551.patch Requires(pre): samba-common = %{epoch}:%{samba_version}-%{release} Requires: pam >= 0:0.64 @@ -259,6 +260,7 @@ cp %{SOURCE11} packaging/Fedora/ %patch107 -p1 -b .grouppwd %patch200 -p0 -b .inotify %patch201 -p1 -b .build +%patch202 -p1 -b .bug6551 mv %samba_source/VERSION %samba_source/VERSION.orig sed -e 's/SAMBA_VERSION_VENDOR_SUFFIX=$/&\"%{samba_release}\"/' < %samba_source/VERSION.orig > %samba_source/VERSION @@ -885,6 +887,9 @@ exit 0 %{_datadir}/pixmaps/samba/logo-small.png %changelog +* Fri Jul 17 2009 Guenther Deschner - 3.4.0-0.40 +- Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) + * Wed Jul 15 2009 Guenther Deschner - 3.4.0-0.39 - Update to 3.4.0 - resolves: #510558 From ricky at fedoraproject.org Thu Jul 16 23:14:05 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:14:05 +0000 (UTC) Subject: rpms/python-weberror/devel a,1.7,NONE Message-ID: <20090716231405.A120E11C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1816 Removed Files: a Log Message: Remove. --- a DELETED --- From bskeggs at fedoraproject.org Thu Jul 16 23:15:29 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Thu, 16 Jul 2009 23:15:29 +0000 (UTC) Subject: rpms/libdrm/devel .cvsignore, 1.22, 1.23 libdrm.spec, 1.77, 1.78 sources, 1.22, 1.23 Message-ID: <20090716231529.1A18E11C0047@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/libdrm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2062 Modified Files: .cvsignore libdrm.spec sources Log Message: * Fri Jul 17 2009 Ben Skeggs 2.4.12-0.2 - rebase onto git snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 21 Jun 2009 23:33:10 -0000 1.22 +++ .cvsignore 16 Jul 2009 23:14:58 -0000 1.23 @@ -1 +1 @@ -libdrm-20090622.tar.bz2 +libdrm-20090710.tar.bz2 Index: libdrm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/libdrm.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- libdrm.spec 21 Jun 2009 23:33:11 -0000 1.77 +++ libdrm.spec 16 Jul 2009 23:14:58 -0000 1.78 @@ -1,9 +1,9 @@ -%define gitdate 20090622 +%define gitdate 20090710 Summary: Direct Rendering Manager runtime library Name: libdrm Version: 2.4.12 -Release: 0.1%{?dist} +Release: 0.2%{?dist} License: MIT Group: System Environment/Libraries URL: http://dri.sourceforge.net @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdrm_nouveau.pc %changelog +* Fri Jul 17 2009 Ben Skeggs 2.4.12-0.2 +- rebase onto git snapshot + * Mon Jun 22 2009 Dave Airlie 2.4.12-0.1 - rebase onto git snapshot - remove radeon patch in master now Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 21 Jun 2009 23:33:11 -0000 1.22 +++ sources 16 Jul 2009 23:14:58 -0000 1.23 @@ -1 +1 @@ -e027cc71e9cbc7a66fa0a8a1c0203bac libdrm-20090622.tar.bz2 +8c49ba1dca6be2de7c2cb20efce591d3 libdrm-20090710.tar.bz2 From ricky at fedoraproject.org Thu Jul 16 23:18:22 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:18:22 +0000 (UTC) Subject: rpms/python-fedora/devel test,NONE,1.1 Message-ID: <20090716231822.DA14B11C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3104 Added Files: test Log Message: This should not send a commit email. --- NEW FILE test --- This is a test file. From ricky at fedoraproject.org Thu Jul 16 23:22:47 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:22:47 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.1,1.2 Message-ID: <20090716232247.D7AE011C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4115 Modified Files: test Log Message: This *really* should not send a commit email. Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- test 16 Jul 2009 23:18:17 -0000 1.1 +++ test 16 Jul 2009 23:22:12 -0000 1.2 @@ -1 +1,2 @@ This is a test file. +Adding lines to this test file. From ricky at fedoraproject.org Thu Jul 16 23:24:09 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:24:09 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.2,1.3 Message-ID: <20090716232409.D84DB11C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4470 Modified Files: test Log Message: Try 3 Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- test 16 Jul 2009 23:22:12 -0000 1.2 +++ test 16 Jul 2009 23:23:34 -0000 1.3 @@ -1,2 +1,2 @@ This is a test file. -Adding lines to this test file. +Adding more lines to this test file. From ricky at fedoraproject.org Thu Jul 16 23:25:47 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:25:47 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.3,1.4 Message-ID: <20090716232547.CF80C11C0047@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4791 Modified Files: test Log Message: Try 4 Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- test 16 Jul 2009 23:23:34 -0000 1.3 +++ test 16 Jul 2009 23:25:12 -0000 1.4 @@ -1,2 +1,3 @@ This is a test file. Adding more lines to this test file. +More useless text. From ricky at fedoraproject.org Thu Jul 16 23:35:21 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:35:21 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.5,1.6 Message-ID: <20090716233521.9434F11C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6656 Modified Files: test Log Message: Testing that normal commits work first. Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- test 16 Jul 2009 23:30:46 -0000 1.5 +++ test 16 Jul 2009 23:34:46 -0000 1.6 @@ -1,4 +1,3 @@ This is a test file. Adding more lines to this test file. More useless text. -5 From ricky at fedoraproject.org Thu Jul 16 23:35:21 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:35:21 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.4,1.5 Message-ID: <20090716233521.DCEDB11C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6048 Modified Files: test Log Message: Try 5 Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- test 16 Jul 2009 23:25:12 -0000 1.4 +++ test 16 Jul 2009 23:30:46 -0000 1.5 @@ -1,3 +1,4 @@ This is a test file. Adding more lines to this test file. More useless text. +5 From ricky at fedoraproject.org Thu Jul 16 23:39:30 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:39:30 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.6,1.7 Message-ID: <20090716233930.E9E3511C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8607 Modified Files: test Log Message: Testing that normal commits work first again. Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- test 16 Jul 2009 23:34:46 -0000 1.6 +++ test 16 Jul 2009 23:38:55 -0000 1.7 @@ -1,3 +1,2 @@ This is a test file. Adding more lines to this test file. -More useless text. From ricky at fedoraproject.org Thu Jul 16 23:40:16 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:40:16 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.7,NONE Message-ID: <20090716234016.667FC11C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8859 Removed Files: test Log Message: This should trigger commit mail despite my evil doings. --- test DELETED --- From ricky at fedoraproject.org Thu Jul 16 23:43:17 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:43:17 +0000 (UTC) Subject: rpms/python-fedora/devel a,NONE,1.1 Message-ID: <20090716234317.C1F8B11C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9427 Added Files: a Log Message: This should not trigger commit mail due to my evil doings. --- NEW FILE a --- From ricky at fedoraproject.org Thu Jul 16 23:44:54 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:44:54 +0000 (UTC) Subject: rpms/python-fedora/devel a,1.1,NONE Message-ID: <20090716234454.A36A011C008E@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9768 Removed Files: a Log Message: This should not trigger commit mail --- a DELETED --- From pkgdb at fedoraproject.org Thu Jul 16 23:51:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:51:55 +0000 Subject: [pkgdb] python-formencode: kylev has requested watchbugzilla Message-ID: <20090716235155.C67E910F899@bastion2.fedora.phx.redhat.com> kylev has requested the watchbugzilla acl on python-formencode (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:51:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:51:59 +0000 Subject: [pkgdb] python-formencode: kylev has requested commit Message-ID: <20090716235159.A6FF510F898@bastion2.fedora.phx.redhat.com> kylev has requested the commit acl on python-formencode (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:02 +0000 Subject: [pkgdb] python-formencode: kylev has requested watchcommits Message-ID: <20090716235202.61FE710F8B1@bastion2.fedora.phx.redhat.com> kylev has requested the watchcommits acl on python-formencode (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:05 +0000 Subject: [pkgdb] python-formencode: kylev has requested approveacls Message-ID: <20090716235205.2FEB210F8B4@bastion2.fedora.phx.redhat.com> kylev has requested the approveacls acl on python-formencode (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:13 +0000 Subject: [pkgdb] python-formencode: kylev has requested watchbugzilla Message-ID: <20090716235213.5DA1C10F8B8@bastion2.fedora.phx.redhat.com> kylev has requested the watchbugzilla acl on python-formencode (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:15 +0000 Subject: [pkgdb] python-formencode: kylev has requested watchcommits Message-ID: <20090716235215.9507B10F8BC@bastion2.fedora.phx.redhat.com> kylev has requested the watchcommits acl on python-formencode (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:17 +0000 Subject: [pkgdb] python-formencode: kylev has requested commit Message-ID: <20090716235217.BA80A10F8C0@bastion2.fedora.phx.redhat.com> kylev has requested the commit acl on python-formencode (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Thu Jul 16 23:52:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 16 Jul 2009 23:52:20 +0000 Subject: [pkgdb] python-formencode: kylev has requested approveacls Message-ID: <20090716235220.4791F10F8CD@bastion2.fedora.phx.redhat.com> kylev has requested the approveacls acl on python-formencode (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From kylev at fedoraproject.org Thu Jul 16 23:57:41 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Thu, 16 Jul 2009 23:57:41 +0000 (UTC) Subject: rpms/python-paste-deploy/F-11 .cvsignore, 1.7, 1.8 python-paste-deploy.spec, 1.11, 1.12 sources, 1.7, 1.8 Message-ID: <20090716235741.5A24711C0092@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-paste-deploy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13220 Modified Files: .cvsignore python-paste-deploy.spec sources Log Message: Update to 1.3.3 (required for Pylons 0.9.7 final) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-paste-deploy/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Jun 2008 06:44:41 -0000 1.7 +++ .cvsignore 16 Jul 2009 23:57:06 -0000 1.8 @@ -1 +1 @@ -PasteDeploy-1.3.2.tar.gz +PasteDeploy-1.3.3.tar.gz Index: python-paste-deploy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paste-deploy/F-11/python-paste-deploy.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-paste-deploy.spec 26 Feb 2009 22:45:32 -0000 1.11 +++ python-paste-deploy.spec 16 Jul 2009 23:57:06 -0000 1.12 @@ -2,8 +2,8 @@ %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-paste-deploy -Version: 1.3.2 -Release: 3%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Summary: Load, configure, and compose WSGI applications and servers Group: System Environment/Libraries License: MIT @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun May 31 2009 Luke Macken - 1.3.3-1 +- Update to 1.3.3 + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-paste-deploy/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 14 Jun 2008 06:44:41 -0000 1.7 +++ sources 16 Jul 2009 23:57:06 -0000 1.8 @@ -1 +1 @@ -877fcf3fa025a65147fbae87e1765b65 PasteDeploy-1.3.2.tar.gz +0598aa8ab4184ea8087839b811f92284 PasteDeploy-1.3.3.tar.gz From ricky at fedoraproject.org Thu Jul 16 23:59:45 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 16 Jul 2009 23:59:45 +0000 (UTC) Subject: rpms/python-fedora/devel | echo This is an evil file |,NONE,1.1 Message-ID: <20090716235946.0259611C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13666 Added Files: | echo This is an evil file | Log Message: Make sure this doesn't run anything. ***** Not enough context to create diffstat for file: | ***** Not enough context to create diff for file: | ***** Not enough context to create diffstat for file: echo ***** Not enough context to create diff for file: echo ***** Not enough context to create diffstat for file: This ***** Not enough context to create diff for file: This ***** Not enough context to create diffstat for file: is ***** Not enough context to create diff for file: is ***** Not enough context to create diffstat for file: an ***** Not enough context to create diff for file: an ***** Not enough context to create diffstat for file: evil ***** Not enough context to create diff for file: evil ***** Not enough context to create diffstat for file: file ***** Not enough context to create diff for file: file ***** Error reading new file: [Errno 2] No such file or directory: '|' From ricky at fedoraproject.org Fri Jul 17 00:12:10 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:12:10 +0000 (UTC) Subject: rpms/python-fedora/devel ; cat *,1,2,NONE,1.1 | echo This is an evil file |,1.1,NONE Message-ID: <20090717001210.E602711C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17040 Added Files: ;cat *,1,2 Removed Files: | echo This is an evil file | Log Message: make sure this doesn't run stuff ***** Not enough context to create diffstat for file: ;cat ***** Not enough context to create diff for file: ;cat ***** Not enough context to create diffstat for file: *,1,2,NONE,1.1 ***** Not enough context to create diff for file: *,1,2,NONE,1.1 ***** Not enough context to create diffstat for file: | ***** Not enough context to create diff for file: | ***** Not enough context to create diffstat for file: echo ***** Not enough context to create diff for file: echo ***** Not enough context to create diffstat for file: This ***** Not enough context to create diff for file: This ***** Not enough context to create diffstat for file: is ***** Not enough context to create diff for file: is ***** Not enough context to create diffstat for file: an ***** Not enough context to create diff for file: an ***** Not enough context to create diffstat for file: evil ***** Not enough context to create diff for file: evil ***** Not enough context to create diffstat for file: file ***** Not enough context to create diff for file: file --- | DELETED --- From jstanley at fedoraproject.org Fri Jul 17 00:13:38 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Fri, 17 Jul 2009 00:13:38 +0000 (UTC) Subject: rpms/xchm/devel xchm.spec,1.15,1.16 Message-ID: <20090717001338.7FFB511C0092@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/xchm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17279 Modified Files: xchm.spec Log Message: test change Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/xchm.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xchm.spec 11 Jul 2009 00:18:13 -0000 1.15 +++ xchm.spec 17 Jul 2009 00:13:03 -0000 1.16 @@ -60,7 +60,7 @@ update-desktop-database &> /dev/null ||: %files -f %{name}.lang %defattr(-, root, root,-) -%doc AUTHORS COPYING ChangeLog README +%doc AUTHORS COPYING ChangeLog README %{_bindir}/xchm %{_datadir}/icons/hicolor/ %{_datadir}/applications/* From wolfy at fedoraproject.org Fri Jul 17 00:16:50 2009 From: wolfy at fedoraproject.org (Manuel Wolfshant) Date: Fri, 17 Jul 2009 00:16:50 +0000 (UTC) Subject: rpms/xchm/devel xchm.spec,1.16,1.17 Message-ID: <20090717001650.98A5D11C0092@cvs1.fedora.phx.redhat.com> Author: wolfy Update of /cvs/pkgs/rpms/xchm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17911 Modified Files: xchm.spec Log Message: still playing with ricky and jds2001 Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/xchm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xchm.spec 17 Jul 2009 00:13:03 -0000 1.16 +++ xchm.spec 17 Jul 2009 00:16:15 -0000 1.17 @@ -60,7 +60,7 @@ update-desktop-database &> /dev/null ||: %files -f %{name}.lang %defattr(-, root, root,-) -%doc AUTHORS COPYING ChangeLog README +%doc AUTHORS COPYING ChangeLog README %{_bindir}/xchm %{_datadir}/icons/hicolor/ %{_datadir}/applications/* From ricky at fedoraproject.org Fri Jul 17 00:23:38 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:23:38 +0000 (UTC) Subject: rpms/python-fedora/devel curl${IFS}google.com,NONE,1.1 ; cat *,1,2,1.1,NONE Message-ID: <20090717002338.32DEA11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19509 Added Files: curl${IFS}google.com Removed Files: ;cat *,1,2 Log Message: One more filename test --- NEW FILE curl${IFS}google.com --- test ***** Not enough context to create diffstat for file: ;cat ***** Not enough context to create diff for file: ;cat ***** Not enough context to create diffstat for file: *,1,2,1.1,NONE ***** Not enough context to create diff for file: *,1,2,1.1,NONE From ricky at fedoraproject.org Fri Jul 17 00:25:40 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:25:40 +0000 (UTC) Subject: rpms/python-fedora/devel curl${IFS}google.com,1.1,1.2 Message-ID: <20090717002540.26EC011C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19875 Modified Files: curl${IFS}google.com Log Message: change the weird file From ricky at fedoraproject.org Fri Jul 17 00:27:19 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:27:19 +0000 (UTC) Subject: rpms/python-fedora/devel |curl${IFS}google.com|, NONE, 1.1 curl${IFS}google.com, 1.2, NONE Message-ID: <20090717002719.06FDC11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20249 Added Files: |curl${IFS}google.com| Removed Files: curl${IFS}google.com Log Message: Oops, I made it the wrong name. --- NEW FILE |curl${IFS}google.com| --- test change --- curl${IFS}google.com DELETED --- From ricky at fedoraproject.org Fri Jul 17 00:28:16 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:28:16 +0000 (UTC) Subject: rpms/python-fedora/devel |curl${IFS}google.com|,1.1,1.2 Message-ID: <20090717002816.34F2511C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20450 Modified Files: |curl${IFS}google.com| Log Message: make another change From cwickert at fedoraproject.org Fri Jul 17 00:29:33 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 00:29:33 +0000 (UTC) Subject: rpms/emelfm2/devel .cvsignore, 1.20, 1.21 emelfm2.spec, 1.36, 1.37 sources, 1.20, 1.21 Message-ID: <20090717002933.E14FD11C0092@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20763 Modified Files: .cvsignore emelfm2.spec sources Log Message: * Fri Jul 17 2009 Christoph Wickert - 0.6.1-1 - Update 0.6.1 - Enable auto (un)mounting using devicekit-disks - Use new LIB_DIR option instead of PLUGINS_DIR - Build with "STRIP=0" instead of using nostrip.patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 9 May 2009 02:58:41 -0000 1.20 +++ .cvsignore 17 Jul 2009 00:28:58 -0000 1.21 @@ -1 +1 @@ -emelfm2-0.6.0.tar.bz2 +emelfm2-0.6.1.tar.bz2 Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- emelfm2.spec 9 May 2009 02:58:41 -0000 1.36 +++ emelfm2.spec 17 Jul 2009 00:28:58 -0000 1.37 @@ -5,7 +5,7 @@ # rpmbuild -ba emelfm2.spec --with hal Name: emelfm2 -Version: 0.6.0 +Version: 0.6.1 Release: 1%{?dist} Summary: File manager that implements the popular two-pane design @@ -13,17 +13,20 @@ Group: Applications/File License: GPLv3+ URL: http://emelfm2.net/ Source0: http://emelfm2.net/rel/%{name}-%{version}.tar.bz2 -Patch0: emelfm2-0.6.0-fix-segfault-on-upgrade.patch -Patch1: emelfm2-0.5.1-nostrip.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.6.0, libacl-devel, gettext, desktop-file-utils -Requires: findutils >= 4.2, file, grep, sed, bzip2 +BuildRequires: file-devel +Requires: findutils >= 4.2, grep, sed, bzip2 %if 0%{?_with_hal:1} BuildRequires: hal-devel, dbus-glib-devel Requires: hal %endif +%if 0%{?fedora} > 10 +Requires: DeviceKit-disks +%endif + %description emelFM2 is the GTK+2 port of emelFM. emelFM2 is a file manager that implements the popular two-pane design. It features a simple GTK+2 interface, a flexible @@ -33,9 +36,6 @@ opening an xterm. %prep %setup -q -#%patch0 -p0 -b .docdir -%patch0 -p1 -b .segfault -%patch1 -p1 -b .nostrip # fix broken icon in emelfm2.desktop sed -i 's!Icon=emelfm2!Icon=%{_datadir}/pixmaps/emelfm2/emelfm2_48.png!' docs/desktop_environment/%{name}.desktop @@ -47,17 +47,20 @@ sed -i 's!^\(\t\+\)@!\1!' Makefile make %{?_smp_mflags} \ CFLAGS="${RPM_OPT_FLAGS}" \ PREFIX="%{_prefix}" \ - PLUGINS_DIR="%{_libdir}/%{name}/plugins" \ + LIB_DIR="%{_libdir}" \ DOCS_VERSION=1 \ WITH_TRANSPARENCY=1 \ WITH_KERNELFAM=1 \ WITH_TRACKER=1 \ USE_LATEST=1 \ NEW_COMMAND=1 \ + STRIP=0 \ + %if 0%{?fedora} > 10 + WITH_DEVKIT=1 \ + %endif %if 0%{?_with_hal:1} WITH_HAL=1 \ %endif - WITH_ACL=1 %install @@ -82,8 +85,8 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc docs/ACTIONS docs/CONFIGURATION docs/CREDITS docs/HACKING -%doc docs/README docs/TODO docs/USAGE docs/WARNING -%doc docs/help.txt docs/GPL docs/LGPL +%doc docs/NEWS docs/README docs/TODO docs/USAGE docs/WARNING +%doc docs/GPL docs/LGPL %{_bindir}/%{name} %{_libdir}/%{name}/ %{_datadir}/applications/fedora-%{name}.desktop @@ -93,6 +96,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Christoph Wickert - 0.6.1-1 +- Update 0.6.1 +- Enable auto (un)mounting using devicekit-disks +- Use new LIB_DIR option instead of PLUGINS_DIR +- Build with "STRIP=0" instead of using nostrip.patch + * Sat May 09 2009 Christoph Wickert - 0.6.0-1 - Update 0.6.0 - Patch to fix segfault in e2_upgrade.so Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 9 May 2009 02:58:41 -0000 1.20 +++ sources 17 Jul 2009 00:28:58 -0000 1.21 @@ -1 +1 @@ -c153749aea954f342b28a470866ac4b0 emelfm2-0.6.0.tar.bz2 +8372c29d72d4d9ad08939f980b689156 emelfm2-0.6.1.tar.bz2 From ricky at fedoraproject.org Fri Jul 17 00:30:06 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:30:06 +0000 (UTC) Subject: rpms/python-fedora/devel |curl${IFS}google.com, NONE, 1.1 |curl${IFS}google.com|, 1.2, NONE Message-ID: <20090717003006.F20B411C00D8@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21097 Added Files: |curl${IFS}google.com Removed Files: |curl${IFS}google.com| Log Message: Wrong name again. --- NEW FILE |curl${IFS}google.com --- test change again --- |curl${IFS}google.com| DELETED --- From ricky at fedoraproject.org Fri Jul 17 00:31:04 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 00:31:04 +0000 (UTC) Subject: rpms/python-fedora/devel |curl${IFS}google.com,1.1,1.2 Message-ID: <20090717003104.8706D11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233 Modified Files: |curl${IFS}google.com Log Message: Now make a change 301 Moved

301 Moved

The document has moved
here. From cwickert at fedoraproject.org Fri Jul 17 00:31:16 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 00:31:16 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2-0.5.1-nostrip.patch, 1.1, NONE emelfm2-0.6.0-fix-segfault-on-upgrade.patch, 1.1, NONE Message-ID: <20090717003116.B343011C0092@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21400 Removed Files: emelfm2-0.5.1-nostrip.patch emelfm2-0.6.0-fix-segfault-on-upgrade.patch Log Message: remove obsolete patches --- emelfm2-0.5.1-nostrip.patch DELETED --- --- emelfm2-0.6.0-fix-segfault-on-upgrade.patch DELETED --- From ricky at fedoraproject.org Fri Jul 17 00:33:42 2009 From: ricky at fedoraproject.org (Ricky Zhou) Date: Thu, 16 Jul 2009 20:33:42 -0400 Subject: CVS comits security testing Message-ID: <20090717003342.GB2807@alpha.rzhou.org> Hey, as some of you hopefully noticed, I have been doing some testing with CVS syncmail script security, so if you those weird filenames raised any alarm with you guys, here's a signed email from me saying it's me :-) Thanks, Ricky -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: From jgarzik at fedoraproject.org Fri Jul 17 00:37:58 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Fri, 17 Jul 2009 00:37:58 +0000 (UTC) Subject: rpms/blktool/devel blktool.spec,1.7,1.8 Message-ID: <20090717003758.7A88111C0092@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/blktool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23283 Modified Files: blktool.spec Log Message: Several minor cleanups to the spec file Index: blktool.spec =================================================================== RCS file: /cvs/pkgs/rpms/blktool/devel/blktool.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- blktool.spec 24 Feb 2009 05:01:53 -0000 1.7 +++ blktool.spec 17 Jul 2009 00:37:23 -0000 1.8 @@ -1,14 +1,15 @@ -Summary: Block device settings tool -Name: blktool -Version: 4 -Release: 9%{?dist} -# No version specified in code. -License: GPL+ -Group: Applications/System -URL: http://sourceforge.net/projects/gkernel/ -Source0: http://download.sourceforge.net/gkernel/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: glib2-devel +Name: blktool +Version: 4 +Release: 10%{?dist} +Summary: Block device settings tool + +Group: Applications/System +License: GPL+ +URL: http://sourceforge.net/projects/gkernel/ + +Source0: http://download.sourceforge.net/gkernel/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: glib2-devel %define _sbindir /sbin @@ -22,11 +23,12 @@ other settings. %build %configure -make +make %{?_smp_mflags} %install rm -rf %{buildroot} -%makeinstall +make install DESTDIR=%{buildroot} + mkdir -p %{buildroot}/usr/sbin ln -s /sbin/blktool %{buildroot}/usr/sbin @@ -34,13 +36,16 @@ ln -s /sbin/blktool %{buildroot}/usr/sbi rm -rf %{buildroot} %files -%defattr(-,root,root) +%defattr(-,root,root,-) %doc AUTHORS COPYING INSTALL NEWS README /sbin/blktool /usr/sbin/blktool %{_mandir}/man8/blktool.* %changelog +* Thu Jul 16 2009 Jeff Garzik - 4-10 +- specfile cleanups + * Mon Feb 23 2009 Fedora Release Engineering - 4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jgarzik at fedoraproject.org Fri Jul 17 00:46:33 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Fri, 17 Jul 2009 00:46:33 +0000 (UTC) Subject: rpms/ethtool/devel ethtool.spec,1.22,1.23 Message-ID: <20090717004633.A5C6D11C0092@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/ethtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25074 Modified Files: ethtool.spec Log Message: minor specfile cleanups: prefer %buildroot, add a couple line breaks Index: ethtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/ethtool/devel/ethtool.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ethtool.spec 7 Mar 2009 20:34:22 -0000 1.22 +++ ethtool.spec 17 Jul 2009 00:45:58 -0000 1.23 @@ -1,10 +1,12 @@ -Summary: Ethernet settings tool for PCI ethernet cards Name: ethtool Version: 6 -Release: 4.20090306git%{?dist} +Release: 5.20090306git%{?dist} +Summary: Ethernet settings tool for PCI ethernet cards + License: GPLv2 Group: Applications/System URL: http://sourceforge.net/projects/gkernel/ + # When using tarball from released upstream version: # - http://downloads.sourceforge.net/gkernel/%{name}-%{version}.tar.gz # @@ -39,15 +41,15 @@ autoconf make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install +rm -rf %{buildroot} +make DESTDIR=%{buildroot} INSTALL='install -p' install # Some legacy support for scripts etc. out there -mkdir -p $RPM_BUILD_ROOT%{_sbindir} -ln -sf ../../sbin/%{name} $RPM_BUILD_ROOT%{_sbindir}/%{name} +mkdir -p %{buildroot}%{_sbindir} +ln -sf ../../sbin/%{name} %{buildroot}%{_sbindir}/%{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -57,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}.8* %changelog +* Thu Jul 16 2009 Jeff Garzik 6-5.20090306git +- minor specfile cleanups + * Sat Mar 07 2009 Robert Scheck 6-4.20090306git - Upgrade to GIT 20090306 From mclasen at fedoraproject.org Fri Jul 17 00:52:12 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 17 Jul 2009 00:52:12 +0000 (UTC) Subject: rpms/gtk2/devel gtk2.spec,1.386,1.387 Message-ID: <20090717005212.D204611C0092@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26228 Modified Files: gtk2.spec Log Message: Explicitly enable jasper Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.386 retrieving revision 1.387 diff -u -p -r1.386 -r1.387 --- gtk2.spec 13 Jul 2009 13:27:01 -0000 1.386 +++ gtk2.spec 17 Jul 2009 00:51:37 -0000 1.387 @@ -164,7 +164,11 @@ if ! pkg-config --exists pangoxft ; then exit 1 fi -%configure --with-xinput=xfree --disable-gtk-doc --disable-rebuilds --with-included-loaders=png +%configure --with-xinput=xfree \ + --disable-gtk-doc \ + --disable-rebuilds \ + --with-jasper \ + --with-included-loaders=png # fight unused direct deps sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool From cwickert at fedoraproject.org Fri Jul 17 00:52:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 00:52:41 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2.spec,1.37,1.38 Message-ID: <20090717005241.8E1AA11C0092@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26359 Modified Files: emelfm2.spec Log Message: BR dbus-glib-devel Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- emelfm2.spec 17 Jul 2009 00:28:58 -0000 1.37 +++ emelfm2.spec 17 Jul 2009 00:52:06 -0000 1.38 @@ -24,7 +24,7 @@ Requires: hal %endif %if 0%{?fedora} > 10 -Requires: DeviceKit-disks +Requires: DeviceKit-disks, dbus-glib-devel %endif %description From mclasen at fedoraproject.org Fri Jul 17 00:54:01 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 17 Jul 2009 00:54:01 +0000 (UTC) Subject: rpms/gtk2/devel gtk2.spec,1.387,1.388 Message-ID: <20090717005401.42BC011C0092@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26603 Modified Files: gtk2.spec Log Message: fix option Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.387 retrieving revision 1.388 diff -u -p -r1.387 -r1.388 --- gtk2.spec 17 Jul 2009 00:51:37 -0000 1.387 +++ gtk2.spec 17 Jul 2009 00:53:26 -0000 1.388 @@ -167,7 +167,7 @@ fi %configure --with-xinput=xfree \ --disable-gtk-doc \ --disable-rebuilds \ - --with-jasper \ + --with-libjasper \ --with-included-loaders=png # fight unused direct deps From dcantrel at fedoraproject.org Fri Jul 17 00:55:50 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Fri, 17 Jul 2009 00:55:50 +0000 (UTC) Subject: rpms/pyparted/devel .cvsignore, 1.33, 1.34 pyparted.spec, 1.62, 1.63 sources, 1.38, 1.39 Message-ID: <20090717005550.3D7B911C0092@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/pyparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27035 Modified Files: .cvsignore pyparted.spec sources Log Message: * Thu Jul 16 2009 David Cantrell - 2.1.0-1 - Upgrade to pyparted-2.1.0, requires parted-1.9.0-1 or higher Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pyparted/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 15 Apr 2009 03:18:52 -0000 1.33 +++ .cvsignore 17 Jul 2009 00:55:14 -0000 1.34 @@ -1 +1 @@ -pyparted-2.0.12.tar.gz +pyparted-2.1.0.tar.gz Index: pyparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyparted/devel/pyparted.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- pyparted.spec 11 Jul 2009 02:09:31 -0000 1.62 +++ pyparted.spec 17 Jul 2009 00:55:14 -0000 1.63 @@ -2,8 +2,8 @@ Summary: Python module for GNU parted Name: pyparted -Version: 2.0.12 -Release: 2%{?dist} +Version: 2.1.0 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://fedorahosted.org/pyparted @@ -14,6 +14,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: python-devel BuildRequires: parted-devel >= 1.9.0 BuildRequires: pkgconfig +BuildRequires: python-decorator + +Requires: python-decorator %description Python module for the parted library. It is used for manipulating @@ -41,6 +44,9 @@ partition tables. %{python_sitearch}/parted %changelog +* Thu Jul 16 2009 David Cantrell - 2.1.0-1 +- Upgrade to pyparted-2.1.0, requires parted-1.9.0-1 or higher + * Fri Jul 10 2009 David Cantrell - 2.0.12-2 - Rebuild for new parted Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pyparted/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 15 Apr 2009 03:18:53 -0000 1.38 +++ sources 17 Jul 2009 00:55:14 -0000 1.39 @@ -1 +1 @@ -8fc485db0b88e59bbdfc4be8ba4068fa pyparted-2.0.12.tar.gz +6f78f2f4d5b936bce915d6bfb6785c58 pyparted-2.1.0.tar.gz From cwickert at fedoraproject.org Fri Jul 17 01:10:09 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 01:10:09 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2.spec,1.38,1.39 Message-ID: <20090717011009.B803911C00D8@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30570 Modified Files: emelfm2.spec Log Message: d'oh Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- emelfm2.spec 17 Jul 2009 00:52:06 -0000 1.38 +++ emelfm2.spec 17 Jul 2009 01:09:34 -0000 1.39 @@ -24,7 +24,8 @@ Requires: hal %endif %if 0%{?fedora} > 10 -Requires: DeviceKit-disks, dbus-glib-devel +BuildRequires: dbus-glib-devel +Requires: DeviceKit-disks %endif %description From ricky at fedoraproject.org Fri Jul 17 01:27:39 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 01:27:39 +0000 (UTC) Subject: rpms/python-fedora/devel |curl${IFS}google.com,1.2,NONE Message-ID: <20090717012740.0798611C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1660 Removed Files: |curl${IFS}google.com Log Message: remove evil file --- |curl${IFS}google.com DELETED --- From ricky at fedoraproject.org Fri Jul 17 01:41:55 2009 From: ricky at fedoraproject.org (Ricky Zhou) Date: Thu, 16 Jul 2009 21:41:55 -0400 Subject: CVS comits security testing In-Reply-To: <20090717003342.GB2807@alpha.rzhou.org> References: <20090717003342.GB2807@alpha.rzhou.org> Message-ID: <20090717014155.GC2807@alpha.rzhou.org> On 2009-07-16 08:33:42 PM, Ricky Zhou wrote: > Hey, as some of you hopefully noticed, I have been doing some testing > with CVS syncmail script security, so if you those weird filenames > raised any alarm with you guys, here's a signed email from me saying > it's me :-) By the way, just out of curiosity, if anybody monitoring cvsextras at fedoraproject.org or relnotes at fedoraproject.org did notice these commits and their suspicious nature did catch your attention, I'd be interested in hearing about it :-) Thanks, Ricky -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: From ricky at fedoraproject.org Fri Jul 17 02:02:48 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:02:48 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.1, NONE |curl${IFS}google.com, 1.4, NONE Message-ID: <20090717020248.201DA11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9935 Removed Files: syncmail.patch |curl${IFS}google.com Log Message: Restarting the test from a blank state. --- syncmail.patch DELETED --- --- |curl${IFS}google.com DELETED --- From ricky at fedoraproject.org Fri Jul 17 02:06:47 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:06:47 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.2, 1.3 |curl${IFS}google.com, 1.5, 1.6 Message-ID: <20090717020647.AD35911C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11589 Added Files: syncmail.patch |curl${IFS}google.com Log Message: Try adding the files again. syncmail.patch: syncmail | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) Index: syncmail.patch===================================================================RCS file: syncmail.patchdiff -N syncmail.patch--- /dev/null 1 Jan 1970 00:00:00 -0000+++ syncmail.patch 17 Jul 2009 02:06:47 -0000 1.3@@ -0,0 +1,103 @@+Index: syncmail+===================================================================+RCS file: /cvs/pkgs/CVSROOT/admin/syncmail,v+retrieving revision 1.28+diff -u -r1.28 syncmail+--- syncmail 16 Jul 2009 23:36:07 -0000 1.28++++ syncmail 17 Jul 2009 01:29:47 -0000+@@ -97,7 +97,7 @@+ import time+ import getopt+ import re+-import popen2++import subprocess+ import signal+ import email.MIMEMultipart, email.Message, email.Utils, email.Header+ import smtplib+@@ -146,15 +146,10 @@+ brief = ""+ if optNoDiff:+ brief = "--brief"+- diffcmd = '/usr/bin/cvs -f diff %s -kk -u -p -N -r %s -r %s %s' % (+- brief,+- oldrev, newrev, file)+- fp = os.popen(diffcmd)+- lines = fp.readlines()+- sts = fp.close()+- # ignore the error code, it always seems to be 1 :(+-## if sts:+-## return 'Error code %d occurred during diff\n' % (sts >> 8)++ diffcmd = ('/usr/bin/cvs', '-f', 'diff', brief, '-kk', '-u', '-p',++ '-N', '-r', oldrev, '-r', newrev, file)++ lines = subprocess.Popen(diffcmd, stdout=subprocess.PIPE).communicate()[0].split('\n')+++ if len(lines) > DIFF_TRUNCATE_IF_LARGER:+ removedlines = len(lines) - DIFF_HEAD_LINES - DIFF_TAIL_LINES+ del lines[DIFF_HEAD_LINES:-DIFF_TAIL_LINES]+@@ -163,32 +158,33 @@+ # we do want people to be able to view the whole change easily,+ # even if it is long+ if diffcmd:+- lines.insert(0, 'View full diff with command:\n%s\n' % diffcmd)++ lines.insert(0, 'View full diff with command:\n%s\n' % ' '.join(diffcmd))+ return string.join(lines, '')+ + def create_diffstat(filespec, cvs_dir):+- lines = ""++ output = ""+ try:+ file, oldrev, newrev = string.split(filespec, ',')+ except ValueError:+ # No file to diffstat+ return '***** Not enough context to create diffstat for file: %s' % filespec+ if newrev == 'NONE':+- return lines++ return output+ if string.find(file, ".patch", -6) != -1 or \+ string.find(file, ".diff", -5) != -1:+ # run diffstat on the patch+ if oldrev == 'NONE':+ # not in CVS yet+- diffcmd = '/usr/bin/diffstat %s 2>/dev/null' % file++ output = subprocess.Popen(('/usr/bin/diffstat', file),++ stdout=subprocess.PIPE).communicate()[0]+ else:+- diffcmd = '/usr/bin/cvs -f co -p -r %s %s/%s 2>/dev/null | /usr/bin/diffstat 2>/dev/null' % (+- newrev, cvs_dir, file)+- fp = os.popen(diffcmd)+- lines = fp.readlines()+- fp.close()+- lines.insert(0, '%s:\n' % file)+- return string.join( lines, '')++ cvscmd = subprocess.Popen(('/usr/bin/cvs', '-f', 'co', '-p', '-r',++ newrev, os.path.join(cvs_dir, file)), stdout=subprocess.PIPE)++ diffcmd = subprocess.Popen(('/usr/bin/diffstat',),++ stdin=cvscmd.stdout, stdout=subprocess.PIPE)++ output = diffcmd.communicate()[0]++ output = file + ':\n' + output++ return output+ + # send mail using smtp, with utf8 encoded sender names+ def blast_mail(subject, people):+@@ -318,8 +314,9 @@+ for arg in args:+ if arg == '%%OWNER%%':+ path = string.split(subject)[0]+- f = os.popen('%s/CVSROOT/getnotifylist %s' %(os.environ['CVSROOT'],path,),'r')+- list = f.read()++ getnotifylist = os.path.join(os.environ['CVSROOT'], 'CVSROOT/getnotifylist')++ list = subprocess.Popen((getnotifylist, path),++ stdout=subprocess.PIPE).communicate()[0]+ list = list.strip()+ d el args[args.index('%%OWNER%%')]+ args = args + list.split(' ')+@@ -332,9 +329,6 @@+ + if __name__ == '__main__':+ print 'Running syncmail...'+- sys.stdout.flush()+- time.sleep(5)+- print 'Really running syncmail...'+ main()+ print '...syncmail done.'+ sys.exit(0) Index: |curl${IFS}google.com===================================================================RCS file: |curl${IFS}google.comdiff -N |curl${IFS}google.com From cebbert at fedoraproject.org Fri Jul 17 02:07:55 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 17 Jul 2009 02:07:55 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc3-git3.bz2.sign, NONE, 1.1 .cvsignore, 1.1098, 1.1099 kernel.spec, 1.1633, 1.1634 sources, 1.1056, 1.1057 upstream, 1.970, 1.971 Message-ID: <20090717020755.2B1C511C0092@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11713 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc3-git3.bz2.sign Log Message: 2.6.31-rc3-git3 --- NEW FILE patch-2.6.31-rc3-git3.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKX8CJyGugalF9Dw4RAu/5AJ9TGGNtbxGxTyMoF7M8+imK5rCLOwCfSNJA D9cYahG52imcOsNz11V9kfU= =szLs -----END PGP SIGNATURE----- Index: .cvsignore===================================================================RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,vretrieving revision 1.1098retrieving revision 1.1099diff -u -p -r1.1098 -r1.1099--- .cvsignore 14 Jul 2009 15:29:04 -0000 1.1098+++ .cvsignore 17 Jul 2009 02:07:24 -0000 1.1099@@ -6,3 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2+patch-2.6.31-rc3-git3.bz2 Index: kernel.spec===================================================================RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,vretrieving revision 1.1633retrieving revision 1.1634diff -u -p -r1.1633 -r1.1634--- kernel.spec 16 Jul 2009 21:24:36 -0000 1.1633+++ kernel.spec 17 Jul 2009 02:07:24 -0000 1.1634@@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 3 # The git snapshot level-%define gitrev 0+%define gitrev 3 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif@@ -1875,6 +1875,9 @@ fi # and build. %changelog+* Thu Jul 16 2009 Chuck Ebbert +- 2.6.31-rc3-git3+ * Thu Jul 16 2009 Matthew Garrett - linux-2.6-defaults-aspm.patch - default ASPM to on for PCIe >= 1.1 hardware Index: sources===================================================================RCS file: /cvs/pkgs/rpms/kernel/devel/sources,vretrieving revision 1.1056retrieving revision 1.1057diff -u -p -r1.1056 -r1.1057--- sources 14 Jul 2009 15:29:05 -0000 1.1056+++ sources 17 Jul 2009 02:07:24 -0000 1.1057@@ -1,2 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2+6380dc76faf177c9f3882e04f2183cb4 patch-2.6.31-rc3-git3.bz2 Index: upstream===================================================================RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,vretrieving revision 1.970retrieving revision 1.971diff -u -p -r1.970 -r1.971--- upstream 14 Jul 2009 15:29:05 -0000 1.970+++ upstream 17 Jul 2009 02:07:24 -0000 1.971@@ -1,3 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2+patch-2.6.31-rc3-git3.bz2 From ricky at fedoraproject.org Fri Jul 17 02:08:19 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:08:19 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.3, 1.4 |curl${IFS}google.com, 1.6, 1.7 Message-ID: <20090717020819.35FFE11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11938 Modified Files: syncmail.patch |curl${IFS}google.com Log Message: Try changing the files syncmail.patch: syncmail | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) Index: syncmail.patch===================================================================RCS file: /cvs/pkgs/rpms/python-fedora/devel/syncmail.patch,vretrieving revision 1.3retrieving revision 1.4diff -u -p -r1.3 -r1.4--- syncmail.patch 17 Jul 2009 02:06:47 -0000 1.3+++ syncmail.patch 17 Jul 2009 02:08:19 -0000 1.4@@ -10,7 +10,7 @@ diff -u -r1.28 syncmail import getopt import re -import popen2-+import subprocess++import subprocess #change this file import signal import email.MIMEMultipart, email.Message, email.Utils, email.Header import smtplib Index: |curl${IFS}google.com===================================================================RCS file: /cvs/pkgs/rpms/python-fedora/devel/|curl${IFS}google.com,vretrieving revision 1.6retrieving revision 1.7diff -u -p -r1.6 -r1.7--- |curl${IFS}google.com 17 Jul 2009 02:06:47 -0000 1.6+++ |curl${IFS}google.com 17 Jul 2009 02:08:19 -0000 1.7@@ -0,0 +1 @@+Change this file. From iankent at fedoraproject.org Fri Jul 17 02:11:39 2009 From: iankent at fedoraproject.org (Ian Kent) Date: Fri, 17 Jul 2009 02:11:39 +0000 (UTC) Subject: rpms/autofs/devel autofs-5.0.4-allow-automount-daemon-to-dump-core.patch, 1.1, 1.2 autofs.spec, 1.282, 1.283 Message-ID: <20090717021139.5C0F511C0092@cvs1.fedora.phx.redhat.com> Author: iankent Update of /cvs/pkgs/rpms/autofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12493 Modified Files: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch autofs.spec Log Message: * Fri Jul 17 2009 Ian Kent - 1:5.0.4-34 - fix typo in patch to allow dumping core. autofs-5.0.4-allow-automount-daemon-to-dump-core.patch: CHANGELOG | 1 + daemon/automount.c | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) Index: autofs-5.0.4-allow-automount-daemon-to-dump-core.patch===================================================================RCS file: /cvs/pkgs/rpms/autofs/devel/autofs-5.0.4-allow-automount-daemon-to-dump-core.patch,vretrieving revision 1.1retrieving revision 1.2diff -u -p -r1.1 -r1.2--- autofs-5.0.4-allow-automount-daemon-to-dump-core.patch 15 Jul 2009 02:44:43 -0000 1.1+++ autofs-5.0.4-allow-automount-daemon-to-dump-core.patch 17 Jul 2009 02:11:08 -0000 1.2@@ -51,7 +51,7 @@ index 44dcdd6..e7f801b 100644 int sig; - sigfillset(&signalset);-+ memcpy(&signalset, &block_sigs, sizeof(sigset));++ memcpy(&signalset, &block_sigs, sizeof(signalset)); sigdelset(&signalset, SIGCHLD); sigdelset(&signalset, SIGCONT); Index: autofs.spec===================================================================RCS file: /cvs/pkgs/rpms/autofs/devel/autofs.spec,vretrieving revision 1.282retrieving revision 1.283diff -u -p -r1.282 -r1.283--- autofs.spec 15 Jul 2009 02:44:44 -0000 1.282+++ autofs.spec 17 Jul 2009 02:11:09 -0000 1.283@@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4-Release: 32+Release: 34 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons@@ -227,6 +227,9 @@ fi %{_libdir}/autofs/ %changelog+* Fri Jul 17 2009 Ian Kent - 1:5.0.4-34+- fix typo in patch to allow dumping core.+ * Wed Jul 15 2009 Ian Kent - 1:5.0.4-32 - fix an RPC fd leak. - don't block signals we expect to dump core. From ricky at fedoraproject.org Fri Jul 17 02:13:58 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:13:58 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.4, NONE |curl${IFS}google.com, 1.7, NONE Message-ID: <20090717021358.F120E11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13134 Removed Files: syncmail.patch |curl${IFS}google.com Log Message: remove the files again, sorry for the spam, this should be the last one --- syncmail.patch DELETED --- --- |curl${IFS}google.com DELETED --- From ricky at fedoraproject.org Fri Jul 17 02:21:01 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:21:01 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.5, 1.6 |curl${IFS}google.com, 1.8, 1.9 Message-ID: <20090717022101.DC8E011C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14720 Added Files: syncmail.patch |curl${IFS}google.com Log Message: One last end-to-end test. syncmail.patch: syncmail | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) Index: syncmail.patch =================================================================== RCS file: syncmail.patch diff -N syncmail.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ syncmail.patch 17 Jul 2009 02:21:01 -0000 1.6 @@ -0,0 +1,103 @@ +Index: syncmail +=================================================================== +RCS file: /cvs/pkgs/CVSROOT/admin/syncmail,v +retrieving revision 1.28 +diff -u -r1.28 syncmail +--- syncmail 16 Jul 2009 23:36:07 -0000 1.28 ++++ syncmail 17 Jul 2009 01:29:47 -0000 +@@ -97,7 +97,7 @@ + import time + import getopt + import re +-import popen2 ++import subprocess + import signal + import email.MIMEMultipart, email.Message, email.Utils, email.Header + import smtplib +@@ -146,15 +146,10 @@ + brief = "" + if optNoDiff: + brief = "--brief" +- diffcmd = '/usr/bin/cvs -f diff %s -kk -u -p -N -r %s -r %s %s' % ( +- brief, +- oldrev, newrev, file) +- fp = os.popen(diffcmd) +- lines = fp.readlines() +- sts = fp.close() +- # ignore the error code, it always seems to be 1 :( +-## if sts: +-## return 'Error code %d occurred during diff\n' % (sts >> 8) ++ diffcmd = ('/usr/bin/cvs', '-f', 'diff', brief, '-kk', '-u', '-p', ++ '-N', '-r', oldrev, '-r', newrev, file) ++ lines = subprocess.Popen(diffcmd, stdout=subprocess.PIPE).communicate()[0].split('\n') ++ + if len(lines) > DIFF_TRUNCATE_IF_LARGER: + removedlines = len(lines) - DIFF_HEAD_LINES - DIFF_TAIL_LINES + del lines[DIFF_HEAD_LINES:-DIFF_TAIL_LINES] +@@ -163,32 +158,33 @@ + # we do want people to be able to view the whole change easily, + # even if it is long + if diffcmd: +- lines.insert(0, 'View full diff with command:\n%s\n' % diffcmd) ++ lines.insert(0, 'View full diff with command:\n%s\n' % ' '.join(diffcmd)) + return string.join(lines, '') + + def create_diffstat(filespec, cvs_dir): +- lines = "" ++ output = "" + try: + file, oldrev, newrev = string.split(filespec, ',') + except ValueError: + # No file to diffstat + return '***** Not enough context to create diffstat for file: %s' % filespec + if newrev == 'NONE': +- return lines ++ return output + if string.find(file, ".patch", -6) != -1 or \ + string.find(file, ".diff", -5) != -1: + # run diffstat on the patch + if oldrev == 'NONE': + # not in CVS yet +- diffcmd = '/usr/bin/diffstat %s 2>/dev/null' % file ++ output = subprocess.Popen(('/usr/bin/diffstat', file), ++ stdout=subprocess.PIPE).communicate()[0] + else: +- diffcmd = '/usr/bin/cvs -f co -p -r %s %s/%s 2>/dev/null | /usr/bin/diffstat 2>/dev/null' % ( +- newrev, cvs_dir, file) +- fp = os.popen(diffcmd) +- lines = fp.readlines() +- fp.close() +- lines.insert(0, '%s:\n' % file) +- return string.join(lines, '') ++ cvscmd = subprocess.Popen(('/usr/bin/cvs', '-f', 'co', '-p', '-r', ++ newrev, os.path.join(cvs_dir, file)), stdout=subprocess.PIPE) ++ diffcmd = subprocess.Popen(('/usr/bin/diffstat',), ++ stdin=cvscmd.stdout, stdout=subprocess.PIPE) ++ output = diffcmd.communicate()[0] ++ output = file + ':\n' + output ++ return output + + # send mail using smtp, with utf8 encoded sender names + def blast_mail(subject, people): +@@ -318,8 +314,9 @@ + for arg in args: + if arg == '%%OWNER%%': + path = string.split(subject)[0] +- f = os.popen('%s/CVSROOT/getnotifylist %s' %(os.environ['CVSROOT'],path,),'r') +- list = f.read() ++ getnotifylist = os.path.join(os.environ['CVSROOT'], 'CVSROOT/getnotifylist') ++ list = subprocess.Popen((getnotifylist, path), ++ stdout=subprocess.PIPE).communicate()[0] + list = list.strip() + del args[args.index('%%OWNER%%')] + args = args + list.split(' ') +@@ -332,9 +329,6 @@ + + if __name__ == '__main__': + print 'Running syncmail...' +- sys.stdout.flush() +- time.sleep(5) +- print 'Really running syncmail...' + main() + print '...syncmail done.' + sys.exit(0) Index: |curl${IFS}google.com =================================================================== RCS file: |curl${IFS}google.com diff -N |curl${IFS}google.com From ricky at fedoraproject.org Fri Jul 17 02:21:28 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:21:28 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.6, 1.7 |curl${IFS}google.com, 1.9, 1.10 Message-ID: <20090717022128.5339A11C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14943 Modified Files: syncmail.patch |curl${IFS}google.com Log Message: change the files syncmail.patch: syncmail | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) Index: syncmail.patch =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/syncmail.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- syncmail.patch 17 Jul 2009 02:21:01 -0000 1.6 +++ syncmail.patch 17 Jul 2009 02:21:27 -0000 1.7 @@ -10,7 +10,7 @@ diff -u -r1.28 syncmail import getopt import re -import popen2 -+import subprocess ++import subprocess # change this file import signal import email.MIMEMultipart, email.Message, email.Utils, email.Header import smtplib Index: |curl${IFS}google.com =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/|curl${IFS}google.com,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- |curl${IFS}google.com 17 Jul 2009 02:21:01 -0000 1.9 +++ |curl${IFS}google.com 17 Jul 2009 02:21:27 -0000 1.10 @@ -0,0 +1 @@ +test From ricky at fedoraproject.org Fri Jul 17 02:21:43 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 02:21:43 +0000 (UTC) Subject: rpms/python-fedora/devel syncmail.patch, 1.7, NONE |curl${IFS}google.com, 1.10, NONE Message-ID: <20090717022143.91A4211C0092@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15020 Removed Files: syncmail.patch |curl${IFS}google.com Log Message: remove testing files --- syncmail.patch DELETED --- --- |curl${IFS}google.com DELETED --- From whot at fedoraproject.org Fri Jul 17 03:54:16 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 03:54:16 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/devel .cvsignore, 1.15, 1.16 sources, 1.15, 1.16 xorg-x11-drv-synaptics.spec, 1.30, 1.31 Message-ID: <20090717035416.5F1D111C0092@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3522 Modified Files: .cvsignore sources xorg-x11-drv-synaptics.spec Log Message: * Fri Jul 17 2009 Peter Hutterer 1.1.99-3-20090717 - Update to today's git master. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 10 Jul 2009 05:43:00 -0000 1.15 +++ .cvsignore 17 Jul 2009 03:53:44 -0000 1.16 @@ -1 +1 @@ -xf86-input-synaptics-20090710.tar.bz2 +xf86-input-synaptics-20090717.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 10 Jul 2009 05:43:00 -0000 1.15 +++ sources 17 Jul 2009 03:53:44 -0000 1.16 @@ -1 +1 @@ -4d420cf77285ff0f77c18c62b2f07d39 xf86-input-synaptics-20090710.tar.bz2 +abda1493b0c5d43f614322b4a72be8e3 xf86-input-synaptics-20090717.tar.bz2 Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/xorg-x11-drv-synaptics.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xorg-x11-drv-synaptics.spec 15 Jul 2009 16:04:22 -0000 1.30 +++ xorg-x11-drv-synaptics.spec 17 Jul 2009 03:53:45 -0000 1.31 @@ -2,12 +2,12 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/input -%define gitdate 20090710 +%define gitdate 20090717 Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver Version: 1.1.99 -Release: 2.%{gitdate}%{?dist}.1 +Release: 3.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -121,10 +121,13 @@ Development files for the Synaptics Touc %changelog +* Fri Jul 17 2009 Peter Hutterer 1.1.99-3-20090717 +- Update to today's git master. + * Wed Jul 15 2009 Adam Jackson - 1.1.99-2.20090710.1 - ABI bump -* Fri Jul 10 2009 Peter Hutterer 1.1.99-2-22090710 +* Fri Jul 10 2009 Peter Hutterer 1.1.99-2-20090710 - Update to today's git master. * Mon Jun 22 2009 Peter Hutterer 1.1.99.1-20090622 From clumens at fedoraproject.org Fri Jul 17 04:07:43 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Fri, 17 Jul 2009 04:07:43 +0000 (UTC) Subject: rpms/pykickstart/devel .cvsignore, 1.110, 1.111 pykickstart.spec, 1.120, 1.121 sources, 1.120, 1.121 Message-ID: <20090717040743.8C0DA11C00CF@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26952 Modified Files: .cvsignore pykickstart.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/.cvsignore,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- .cvsignore 10 Jul 2009 21:43:51 -0000 1.110 +++ .cvsignore 17 Jul 2009 04:07:13 -0000 1.111 @@ -44,3 +44,4 @@ pykickstart-1.53.tar.gz pykickstart-1.55.tar.gz pykickstart-1.56.tar.gz pykickstart-1.57.tar.gz +pykickstart-1.58.tar.gz Index: pykickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/pykickstart.spec,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- pykickstart.spec 10 Jul 2009 21:43:51 -0000 1.120 +++ pykickstart.spec 17 Jul 2009 04:07:13 -0000 1.121 @@ -3,7 +3,7 @@ Summary: A python library for manipulating kickstart files Name: pykickstart Url: http://fedoraproject.org/wiki/pykickstart -Version: 1.57 +Version: 1.58 Release: 1%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from @@ -45,6 +45,13 @@ rm -rf %{buildroot} %{_bindir}/ksverdiff %changelog +* Fri Jul 17 2009 Chris Lumens - 1.58-1 +- Adjust writePriority to fix lvm-on-raid0 test cases (jlaska). +- Add F12 to the version number tests. (clumens) +- F12_User test case. (dcantrell) +- Add --gecos argument to the 'user' command (dcantrell) +- Convert user.py to use _getArgsAsStr() (dcantrell) + * Fri Jul 10 2009 Chris Lumens - 1.57-1 - Another patch to make the bootloader test work (jlaska). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/sources,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- sources 10 Jul 2009 21:43:51 -0000 1.120 +++ sources 17 Jul 2009 04:07:13 -0000 1.121 @@ -1 +1 @@ -32c0a4c5f77c2a2edc3d055faea174b5 pykickstart-1.57.tar.gz +ab1db3b7d37b9e097595ace5282f1034 pykickstart-1.58.tar.gz From whot at fedoraproject.org Fri Jul 17 04:15:15 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 04:15:15 +0000 (UTC) Subject: rpms/xorg-x11-drv-penmount/devel penmount-1.4.0-abi.patch, NONE, 1.1 xorg-x11-drv-penmount.spec, 1.24, 1.25 Message-ID: <20090717041515.05B2711C00CF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29230 Modified Files: xorg-x11-drv-penmount.spec Added Files: penmount-1.4.0-abi.patch Log Message: * Fri Jul 17 2009 Peter Hutterer - 1.4.0-3 - penmount-1.4.0-abi.patch: Cope with XINPUT ABI 7. penmount-1.4.0-abi.patch: xf86PM.c | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) --- NEW FILE penmount-1.4.0-abi.patch --- >From dab0c2742c034750e3e9673167eb20812b679818 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Jul 2009 13:59:43 +1000 Subject: [PATCH] Cope with XINPUT ABI 7. Signed-off-by: Peter Hutterer --- src/xf86PM.c | 24 +++++++++++++++++++++--- 1 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/xf86PM.c b/src/xf86PM.c index 0c01760..1e38124 100644 --- a/src/xf86PM.c +++ b/src/xf86PM.c @@ -181,6 +181,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) unsigned char map[] = {0, 1}; int min_x, min_y, max_x, max_y; + Atom axis_labels[2] = { 0, 0 }; + Atom btn_label = 0; + /* * these have to be here instead of in the SetupProc, because when the * SetupProc is run at server startup, screenInfo is not setup yet @@ -191,7 +194,11 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) /* * Device reports button press for 1 button. */ - if (InitButtonClassDeviceStruct (dev, 1, map) == FALSE) + if (InitButtonClassDeviceStruct (dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + &btn_label, +#endif + map) == FALSE) { ErrorF ("Unable to allocate PenMount ButtonClassDeviceStruct\n"); return !Success; @@ -202,6 +209,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) * Axes min and max values are reported in raw coordinates. */ if (InitValuatorClassDeviceStruct (dev, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif @@ -234,11 +244,19 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) min_y = 0; } - InitValuatorAxisStruct (dev, 0, min_x, max_x, + InitValuatorAxisStruct (dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif + min_x, max_x, 9500, 0 /* min_res */ , 9500 /* max_res */ ); - InitValuatorAxisStruct (dev, 1, min_y, max_y, + InitValuatorAxisStruct (dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif + min_y, max_y, 10500, 0 /* min_res */ , 10500 /* max_res */ ); -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-penmount.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel/xorg-x11-drv-penmount.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-penmount.spec 15 Jul 2009 16:00:30 -0000 1.24 +++ xorg-x11-drv-penmount.spec 17 Jul 2009 04:14:44 -0000 1.25 @@ -5,7 +5,7 @@ Summary: Xorg X11 penmount input driver Name: xorg-x11-drv-penmount Version: 1.4.0 -Release: 2%{?dist}.1 +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -13,6 +13,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: penmount-1.4.0-abi.patch + ExcludeArch: s390 s390x BuildRequires: xorg-x11-server-sdk >= 1.3.0.0-6 @@ -25,6 +27,7 @@ X.Org X11 penmount input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -48,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/penmount.4* %changelog +* Fri Jul 17 2009 Peter Hutterer - 1.4.0-3 +- penmount-1.4.0-abi.patch: Cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.4.0-2.1 - ABI bump From paragn at fedoraproject.org Fri Jul 17 04:22:11 2009 From: paragn at fedoraproject.org (paragn) Date: Fri, 17 Jul 2009 04:22:11 +0000 (UTC) Subject: rpms/hunspell-te/devel .cvsignore, 1.1, 1.2 hunspell-te.spec, 1.2, 1.3 sources, 1.1, 1.2 Message-ID: <20090717042211.AB6B511C00CF@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/hunspell-te/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30644 Modified Files: .cvsignore hunspell-te.spec sources Log Message: * Fri Jul 17 2009 Parag - 0.20050929-3 - Use aspell source instead to pull source as BR:aspell-te - Resolves:rh#511262 buildrequires aspell-te Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-te/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 15 Oct 2008 04:25:21 -0000 1.1 +++ .cvsignore 17 Jul 2009 04:21:41 -0000 1.2 @@ -0,0 +1 @@ +aspell6-te-0.01-2.tar.bz2 Index: hunspell-te.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-te/devel/hunspell-te.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-te.spec 25 Feb 2009 05:38:09 -0000 1.2 +++ hunspell-te.spec 17 Jul 2009 04:21:41 -0000 1.3 @@ -1,45 +1,56 @@ +%define lang te +%define langrelease 2 +%define langversion 0.01 + Name: hunspell-te Summary: Telugu hunspell dictionaries %define upstreamid 20050929 Version: 0.%{upstreamid} -Release: 2%{?dist} -Group: Applications/Text -URL: http://aspell.net/ -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -License: GPLv2 -BuildArch: noarch -BuildRequires: aspell-te, hunspell-devel - -Requires: hunspell +Release: 3%{?dist} +Group: Applications/Text +License: GPLv2+ +URL: http://aspell.net/ +Source0: ftp://ftp.gnu.org/gnu/aspell/dict/%{lang}/aspell6-%{lang}-%{langversion}-%{langrelease}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: aspell >= 12:0.60 +BuildRequires: hunspell-devel +Requires: hunspell %description Telugu hunspell dictionaries. %prep -%setup -T -q -c -n hunspell-te -cp %{_docdir}/aspell-te*/* . +%setup -q -n aspell6-%{lang}-%{langversion}-%{langrelease} +prezip-bin -d < te.cwl > te.txt %build export LANG=te_IN.utf8 -aspell --master=te dump master > telugu.words -wordlist2hunspell telugu.words te_IN +wordlist2hunspell te.txt te_IN %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell cp -p *.dic *.aff $RPM_BUILD_ROOT/%{_datadir}/myspell + %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} -%files +%files %defattr(-,root,root,-) %doc COPYING Copyright %{_datadir}/myspell/* %changelog +* Fri Jul 17 2009 Parag - 0.20050929-3 +- Use aspell source instead to pull source as BR:aspell-te +- Resolves:rh#511262 buildrequires aspell-te + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050929-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Sep 12 2008 Caolan McNamara - 0.20050929-1 - initial version + + Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-te/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 15 Oct 2008 04:25:21 -0000 1.1 +++ sources 17 Jul 2009 04:21:41 -0000 1.2 @@ -0,0 +1 @@ +645f7f7204520552cddbe1c9ae64df2a aspell6-te-0.01-2.tar.bz2 From whot at fedoraproject.org Fri Jul 17 04:26:06 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 04:26:06 +0000 (UTC) Subject: rpms/xorg-x11-drv-mutouch/devel mutouch-1.2.1-abi.patch, NONE, 1.1 xorg-x11-drv-mutouch.spec, 1.21, 1.22 Message-ID: <20090717042606.AA79911C00CF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31482 Modified Files: xorg-x11-drv-mutouch.spec Added Files: mutouch-1.2.1-abi.patch Log Message: * Fri Jul 17 2009 Peter Hutterer - 1.2.1-3.1 - mutouch-1.2.1-abi.patch: Cope with XINPUT ABI 7. mutouch-1.2.1-abi.patch: xf86MuTouch.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) --- NEW FILE mutouch-1.2.1-abi.patch --- >From db04a5333b545a0442b995bae47d2c5527a7459e Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Jul 2009 14:18:51 +1000 Subject: [PATCH] Cope with XINPUT ABI 7. Signed-off-by: Peter Hutterer --- src/xf86MuTouch.c | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/xf86MuTouch.c b/src/xf86MuTouch.c index 2d5cdb0..de319fc 100644 --- a/src/xf86MuTouch.c +++ b/src/xf86MuTouch.c @@ -749,6 +749,10 @@ xf86MuTControl(DeviceIntPtr dev, unsigned char req[MuT_PACKET_SIZE]; unsigned char reply[MuT_BUFFER_SIZE]; char *id_string = DEVICE_ID(local->private_flags) == FINGER_ID ? "finger" : "stylus"; +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_label; + Atom axis_labels[2] = { 0, 0 }; +#endif switch(mode) { @@ -766,7 +770,11 @@ xf86MuTControl(DeviceIntPtr dev, /* * Device reports button press for up to 1 button. */ - if (InitButtonClassDeviceStruct(dev, 1, map) == FALSE) { + if (InitButtonClassDeviceStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + &btn_label, +#endif + map) == FALSE) { ErrorF("Unable to allocate ButtonClassDeviceStruct\n"); return !Success; } @@ -779,6 +787,9 @@ xf86MuTControl(DeviceIntPtr dev, * screen to fit one meter. */ if (InitValuatorClassDeviceStruct(dev, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif @@ -787,11 +798,19 @@ xf86MuTControl(DeviceIntPtr dev, return !Success; } else { - InitValuatorAxisStruct(dev, 0, priv->min_x, priv->max_x, + InitValuatorAxisStruct(dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif + priv->min_x, priv->max_x, 9500, 0 /* min_res */, 9500 /* max_res */); - InitValuatorAxisStruct(dev, 1, priv->min_y, priv->max_y, + InitValuatorAxisStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif + priv->min_y, priv->max_y, 10500, 0 /* min_res */, 10500 /* max_res */); -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-mutouch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel/xorg-x11-drv-mutouch.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-mutouch.spec 15 Jul 2009 15:56:54 -0000 1.21 +++ xorg-x11-drv-mutouch.spec 17 Jul 2009 04:25:36 -0000 1.22 @@ -5,13 +5,14 @@ Summary: Xorg X11 mutouch input driver Name: xorg-x11-drv-mutouch Version: 1.2.1 -Release: 2%{?dist}.1 +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: mutouch-1.2.1-abi.patch ExcludeArch: s390 s390x @@ -24,6 +25,7 @@ X.Org X11 mutouch input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -47,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mutouch.4* %changelog +* Fri Jul 17 2009 Peter Hutterer - 1.2.1-3.1 +- mutouch-1.2.1-abi.patch: Cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.2.1-2.1 - ABI bump From cheese at fedoraproject.org Fri Jul 17 04:26:59 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 04:26:59 +0000 (UTC) Subject: rpms/teg/F-11 teg-fix-help.patch,NONE,1.1 teg.spec,1.12,1.13 Message-ID: <20090717042659.BBC5211C00CF@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31696 Modified Files: teg.spec Added Files: teg-fix-help.patch Log Message: fix help teg-fix-help.patch: teg.sgml | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) --- NEW FILE teg-fix-help.patch --- --- teg-0.11.2/docs/gnome-help/C/teg.sgml.orig 2009-07-11 18:26:01.000000000 +0200 +++ teg-0.11.2/docs/gnome-help/C/teg.sgml 2009-07-11 18:53:07.000000000 +0200 @@ -1,13 +1,12 @@ - + + ]>
- + Tenes Empanadas Graciela Manual 2002 @@ -61,12 +60,11 @@ This is version 1.0 of the TEG manual. - - + Introduction Tenes Empandas Graciela (TEG), is a clone of an Argentinian game - called 'Plan T???ctico y Estr???tegico de la Guerra', a + called 'Plan T??ctico y Estr??tegico de la Guerra', a modified clone of the turn based strategy game 'Risk'. It is a multi-player game that can be played across the Internet. @@ -366,17 +364,17 @@ So I'm not sure about the differences between both games. If you notice them, please tell me. So far, here is what some TEG players told me: - TEG vs. Risk +
TEG vs. Risk - - - - + + + + - Topic - TEG - Risk + Topic + TEG + Risk @@ -412,11 +410,15 @@ - If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net + If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net Remember that I don't know the Risk rules! + + + +
@@ -442,7 +444,7 @@ Brief history of TEG - Sebasti???n Cativa Tolosa, once told me to do this game. I think that + Sebasti??n Cativa Tolosa, once told me to do this game. I think that was in 1996, in a chat we were having in the University. Well, we started to think the game. But I don't know why, the project died after 3 or 4 months. In 1998, the project was reactivated, but after 2 weeks it died again :(. Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/F-11/teg.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- teg.spec 27 Jun 2009 17:28:11 -0000 1.12 +++ teg.spec 17 Jul 2009 04:26:29 -0000 1.13 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -9,7 +9,8 @@ Source0: http://downloads.sourcef Source1: fedora-teg.desktop Patch0: teg_libxml.patch #Patch1: teg_themes.patch -Patch2: teg-disable-help.patch +#Patch2: teg-disable-help.patch +Source2: teg-fix-help.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tidy pkgconfig glib2-devel libxml2-devel libgnomeui-devel @@ -27,8 +28,7 @@ Guerra, a turn based strategy game. Some %prep %setup -q %patch0 -p1 -%patch2 -p1 -#%patch1 -p1 +#%patch2 -p1 for file in AUTHORS COPYING README TODO PEOPLE ChangeLog; do iconv -f iso8859-1 -t utf-8 < $file > $file.$$ mv -f $file.$$ $file @@ -48,6 +48,8 @@ mv -f $RPM_BUILD_ROOT/%{_datadir}/pixmap rm -rf $RPM_BUILD_ROOT/%{_datadir}/gnome/apps/Games/teg.desktop desktop-file-install --vendor="fedora" \ --dir=$RPM_BUILD_ROOT/%{_datadir}/applications %{SOURCE1} +patch -p1 < %{SOURCE2} +mv -f $RPM_BUILD_DIR/%{?buildsubdir}/docs/gnome-help/C/teg.sgml $RPM_BUILD_ROOT/%{_datadir}/gnome/help/teg/C/teg.xml %find_lang %{name} @@ -78,7 +80,7 @@ if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/teg.schemas > /dev/null || : -fi +fi %post export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -95,9 +97,11 @@ if [ -x %{_bindir}/gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi - - %changelog +* Sat Jul 11 2009 josef radinger +- 0.11.2-19 +- fix and reenable help + * Sat Jun 27 2009 josef radinger - 0.11.2-18 - disable help From cheese at fedoraproject.org Fri Jul 17 04:27:03 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 04:27:03 +0000 (UTC) Subject: rpms/teg/F-10 teg-fix-help.patch,NONE,1.1 teg.spec,1.11,1.12 Message-ID: <20090717042703.9B63111C00CF@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31722 Modified Files: teg.spec Added Files: teg-fix-help.patch Log Message: fix help teg-fix-help.patch: teg.sgml | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) --- NEW FILE teg-fix-help.patch --- --- teg-0.11.2/docs/gnome-help/C/teg.sgml.orig 2009-07-11 18:26:01.000000000 +0200 +++ teg-0.11.2/docs/gnome-help/C/teg.sgml 2009-07-11 18:53:07.000000000 +0200 @@ -1,13 +1,12 @@ - + + ]>
- + Tenes Empanadas Graciela Manual 2002 @@ -61,12 +60,11 @@ This is version 1.0 of the TEG manual. - - + Introduction Tenes Empandas Graciela (TEG), is a clone of an Argentinian game - called 'Plan T???ctico y Estr???tegico de la Guerra', a + called 'Plan T??ctico y Estr??tegico de la Guerra', a modified clone of the turn based strategy game 'Risk'. It is a multi-player game that can be played across the Internet. @@ -366,17 +364,17 @@ So I'm not sure about the differences between both games. If you notice them, please tell me. So far, here is what some TEG players told me: - TEG vs. Risk +
TEG vs. Risk - - - - + + + + - Topic - TEG - Risk + Topic + TEG + Risk @@ -412,11 +410,15 @@ - If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net + If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net Remember that I don't know the Risk rules! + + + +
@@ -442,7 +444,7 @@ Brief history of TEG - Sebasti???n Cativa Tolosa, once told me to do this game. I think that + Sebasti??n Cativa Tolosa, once told me to do this game. I think that was in 1996, in a chat we were having in the University. Well, we started to think the game. But I don't know why, the project died after 3 or 4 months. In 1998, the project was reactivated, but after 2 weeks it died again :(. Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/F-10/teg.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- teg.spec 27 Jun 2009 17:27:51 -0000 1.11 +++ teg.spec 17 Jul 2009 04:26:33 -0000 1.12 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -9,7 +9,8 @@ Source0: http://downloads.sourcef Source1: fedora-teg.desktop Patch0: teg_libxml.patch #Patch1: teg_themes.patch -Patch2: teg-disable-help.patch +#Patch2: teg-disable-help.patch +Source2: teg-fix-help.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tidy pkgconfig glib2-devel libxml2-devel libgnomeui-devel @@ -27,8 +28,7 @@ Guerra, a turn based strategy game. Some %prep %setup -q %patch0 -p1 -#%patch1 -p1 -%patch2 -p1 +#%patch2 -p1 for file in AUTHORS COPYING README TODO PEOPLE ChangeLog; do iconv -f iso8859-1 -t utf-8 < $file > $file.$$ mv -f $file.$$ $file @@ -48,6 +48,8 @@ mv -f $RPM_BUILD_ROOT/%{_datadir}/pixmap rm -rf $RPM_BUILD_ROOT/%{_datadir}/gnome/apps/Games/teg.desktop desktop-file-install --vendor="fedora" \ --dir=$RPM_BUILD_ROOT/%{_datadir}/applications %{SOURCE1} +patch -p1 < %{SOURCE2} +mv -f $RPM_BUILD_DIR/%{?buildsubdir}/docs/gnome-help/C/teg.sgml $RPM_BUILD_ROOT/%{_datadir}/gnome/help/teg/C/teg.xml %find_lang %{name} @@ -78,7 +80,7 @@ if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/teg.schemas > /dev/null || : -fi +fi %post export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -95,13 +97,18 @@ if [ -x %{_bindir}/gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi - - %changelog -* Sat Jun 27 2009 josef radinger +* Sat Jul 11 2009 josef radinger +- 0.11.2-19 +- fix and reenable help + +* Sat Jun 27 2009 josef radinger - 0.11.2-18 - disable help +* Wed Feb 25 2009 Fedora Release Engineering - 0.11.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Aug 22 2008 josef radinger - 0.11.2-16 - move icons file to /usr/share/pixmaps/ From whot at fedoraproject.org Fri Jul 17 04:36:45 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 04:36:45 +0000 (UTC) Subject: rpms/xorg-x11-drv-hyperpen/devel hyperpen-1.3.0-abi.patch, NONE, 1.1 xorg-x11-drv-hyperpen.spec, 1.20, 1.21 Message-ID: <20090717043645.A903D11C00CF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1156 Modified Files: xorg-x11-drv-hyperpen.spec Added Files: hyperpen-1.3.0-abi.patch Log Message: * Fri Jul 17 2009 Peter Hutterer - 1.3.0-2 - hyperpen-1.3.0-abi.patch: Cope with XINPUT ABI 7. hyperpen-1.3.0-abi.patch: xf86HyperPen.c | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) --- NEW FILE hyperpen-1.3.0-abi.patch --- >From 7f3815f74e77df6122320d845d6e7e9541a28b76 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Jul 2009 14:28:42 +1000 Subject: [PATCH] Cope with XINPUT ABI 7. --- src/xf86HyperPen.c | 24 ++++++++++++++++++++++-- 1 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/xf86HyperPen.c b/src/xf86HyperPen.c index bd630a5..3920a04 100644 --- a/src/xf86HyperPen.c +++ b/src/xf86HyperPen.c @@ -719,6 +719,9 @@ xf86HypOpenDevice(DeviceIntPtr pHyp) { LocalDevicePtr local = (LocalDevicePtr)pHyp->public.devicePrivate; HyperPenDevicePtr priv = (HyperPenDevicePtr)PRIVATE(pHyp); +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom axis_labels[3] = { 0 }; +#endif if (xf86HypOpen(local) != Success) { if (local->fd >= 0) { @@ -730,6 +733,9 @@ xf86HypOpenDevice(DeviceIntPtr pHyp) /* Set the real values */ InitValuatorAxisStruct(pHyp, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif 0, /* min val */ priv->hypXSize, /* max val */ LPI2CPM(priv->hypRes), /* resolution */ @@ -737,6 +743,9 @@ xf86HypOpenDevice(DeviceIntPtr pHyp) LPI2CPM(priv->hypRes)); /* max_res */ InitValuatorAxisStruct(pHyp, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif 0, /* min val */ priv->hypYSize, /* max val */ LPI2CPM(priv->hypRes), /* resolution */ @@ -744,6 +753,9 @@ xf86HypOpenDevice(DeviceIntPtr pHyp) LPI2CPM(priv->hypRes)); /* max_res */ InitValuatorAxisStruct(pHyp, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[2], +#endif 0, /* min val */ 511, /* max val */ 512, /* resolution */ @@ -765,8 +777,10 @@ xf86HypProc(DeviceIntPtr pHyp, int what) int loop; LocalDevicePtr local = (LocalDevicePtr)pHyp->public.devicePrivate; HyperPenDevicePtr priv = (HyperPenDevicePtr)PRIVATE(pHyp); - - +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_labels[4] = { 0 }; + Atom axis_labels[3] = { 0 }; +#endif switch (what) { case DEVICE_INIT: @@ -779,6 +793,9 @@ xf86HypProc(DeviceIntPtr pHyp, int what) if (InitButtonClassDeviceStruct(pHyp, nbbuttons, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + btn_labels, +#endif map) == FALSE) { ErrorF("unable to allocate Button class device\n"); return !Success; @@ -802,6 +819,9 @@ xf86HypProc(DeviceIntPtr pHyp, int what) if (InitValuatorClassDeviceStruct(pHyp, nbaxes, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-hyperpen.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel/xorg-x11-drv-hyperpen.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-hyperpen.spec 15 Jul 2009 15:52:01 -0000 1.20 +++ xorg-x11-drv-hyperpen.spec 17 Jul 2009 04:36:15 -0000 1.21 @@ -5,13 +5,14 @@ Summary: Xorg X11 hyperpen input driver Name: xorg-x11-drv-hyperpen Version: 1.3.0 -Release: 1%{?dist}.1 +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: hyperpen-1.3.0-abi.patch ExcludeArch: s390 s390x @@ -24,6 +25,7 @@ X.Org X11 hyperpen input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -46,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/hyperpen_drv.so %changelog +* Fri Jul 17 2009 Peter Hutterer - 1.3.0-2 +- hyperpen-1.3.0-abi.patch: Cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.3.0-1.1 - ABI bump From cchance at fedoraproject.org Fri Jul 17 04:45:08 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 17 Jul 2009 04:45:08 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel .cvsignore, 1.2, 1.3 ibus-table-cangjie.spec, 1.7, 1.8 sources, 1.2, 1.3 Message-ID: <20090717044508.B5F6511C00CF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3562 Modified Files: .cvsignore ibus-table-cangjie.spec sources Log Message: Rebuilt with IBus 1.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Mar 2009 01:25:53 -0000 1.2 +++ .cvsignore 17 Jul 2009 04:44:38 -0000 1.3 @@ -1 +1 @@ -ibus-table-cangjie-1.1.0.20090309.tar.gz +ibus-table-cangjie-1.2.0.20090717.tar.gz Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ibus-table-cangjie.spec 2 Jul 2009 23:54:00 -0000 1.7 +++ ibus-table-cangjie.spec 17 Jul 2009 04:44:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie -Version: 1.1.0.20090309 -Release: 12%{?dist} +Version: 1.2.0.20090309 +Release: 1%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -64,6 +64,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/quick5.png %changelog +* Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090309-1.fc12 +- Rebuilt with IBus 1.2. + * Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090309-12.fc12 - Rebuilt. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Mar 2009 01:25:54 -0000 1.2 +++ sources 17 Jul 2009 04:44:38 -0000 1.3 @@ -1 +1 @@ -21b4c23cd7c700330d7006d8c38f3b2e ibus-table-cangjie-1.1.0.20090309.tar.gz +c18db9f349ff92479c5528e1ea61fe79 ibus-table-cangjie-1.2.0.20090717.tar.gz From whot at fedoraproject.org Fri Jul 17 04:46:36 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 04:46:36 +0000 (UTC) Subject: rpms/xorg-x11-drv-fpit/devel fpit-1.3.0-abi.patch, NONE, 1.1 xorg-x11-drv-fpit.spec, 1.20, 1.21 Message-ID: <20090717044636.98D8811C00CF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3744 Modified Files: xorg-x11-drv-fpit.spec Added Files: fpit-1.3.0-abi.patch Log Message: * Fri Jul 17 2009 Peter Hutterer - 1.3.0-3 - fpit-1.3.0-abi.patch: Cope with XINPUT ABI 7. fpit-1.3.0-abi.patch: xf86Fpit.c | 41 +++++++++++++++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 6 deletions(-) --- NEW FILE fpit-1.3.0-abi.patch --- >From 7d203627e7e3e7a6f8d0e847ed650b0b89760c09 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Jul 2009 14:38:31 +1000 Subject: [PATCH] Cope with XINPUT ABI 7. --- src/xf86Fpit.c | 40 +++++++++++++++++++++++++++++++++++----- 1 files changed, 35 insertions(+), 5 deletions(-) diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c index 528ebb9..f40c6a9 100644 --- a/src/xf86Fpit.c +++ b/src/xf86Fpit.c @@ -188,6 +188,9 @@ static void xf86FpitSetUpAxes(DeviceIntPtr dev, FpitPrivatePtr priv) * screen to fit one meter. */ int quarter_turns; +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom axis_labels[2] = { 0, 0 }; +#endif priv->screen_width = screenInfo.screens[priv->screen_no]->width; priv->screen_height = screenInfo.screens[priv->screen_no]->height; @@ -212,14 +215,30 @@ static void xf86FpitSetUpAxes(DeviceIntPtr dev, FpitPrivatePtr priv) } if (priv->fpitTotalOrientation & FPIT_THEN_SWAP_XY) { - InitValuatorAxisStruct(dev, 1, priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , + InitValuatorAxisStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif + priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , 9500 /* max_res */ ); - InitValuatorAxisStruct(dev, 0, priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , + InitValuatorAxisStruct(dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif + priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , 10500 /* max_res */ ); } else { - InitValuatorAxisStruct(dev, 0, priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , + InitValuatorAxisStruct(dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif + priv->fpitMinY, priv->fpitMaxY, 9500, 0 /* min_res */ , 9500 /* max_res */ ); - InitValuatorAxisStruct(dev, 1, priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , + InitValuatorAxisStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif + priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , 10500 /* max_res */ ); } } @@ -408,6 +427,10 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) unsigned char map[] = { 0, 1, 2, 3 /* DMC: changed this so we can use all three buttons */ }; +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_labels[3] = { 0 }; + Atom axis_labels[2] = { 0, 0 }; +#endif switch (mode) { @@ -420,7 +443,11 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) /* * Device reports button press for up to 3 buttons. */ - if (InitButtonClassDeviceStruct(dev, 3, map) == FALSE) { + if (InitButtonClassDeviceStruct(dev, 3, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + btn_labels, +#endif + map) == FALSE) { ErrorF("Unable to allocate Fpit touchscreen ButtonClassDeviceStruct\n"); return !Success; } @@ -435,6 +462,9 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) } if (InitValuatorClassDeviceStruct(dev, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-fpit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel/xorg-x11-drv-fpit.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-fpit.spec 15 Jul 2009 15:50:20 -0000 1.20 +++ xorg-x11-drv-fpit.spec 17 Jul 2009 04:46:06 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 fpit input driver Name: xorg-x11-drv-fpit Version: 1.3.0 -Release: 2%{?dist}.1 +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -13,6 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 Source1: 10-fpit.fdi +Patch1: fpit-1.3.0-abi.patch ExcludeArch: s390 s390x @@ -25,6 +26,7 @@ X.Org X11 fpit input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -52,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/policy/20thirdparty/10-fpit.fdi %changelog +* Fri Jul 17 2009 Peter Hutterer - 1.3.0-3 +- fpit-1.3.0-abi.patch: Cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.3.0-2.1 - ABI bump From whot at fedoraproject.org Fri Jul 17 04:51:31 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 04:51:31 +0000 (UTC) Subject: rpms/xorg-x11-drv-elographics/devel elographics-1.2.3-abi.patch, NONE, 1.1 xorg-x11-drv-elographics.spec, 1.19, 1.20 Message-ID: <20090717045131.15A6711C00CF@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5179 Modified Files: xorg-x11-drv-elographics.spec Added Files: elographics-1.2.3-abi.patch Log Message: * Fri Jul 17 2009 Peter Hutterer - 1.2.3-3 - elographics-1.2.3-abi.patch: Cope with XINPUT ABI 7. elographics-1.2.3-abi.patch: xf86Elo.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) --- NEW FILE elographics-1.2.3-abi.patch --- >From a18af14b1df5271fbe3100df3fcb3a8811981ddf Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Jul 2009 14:44:55 +1000 Subject: [PATCH] Cope with XINPUT ABI 7. Signed-off-by: Peter Hutterer --- src/xf86Elo.c | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/xf86Elo.c b/src/xf86Elo.c index 4ca60f1..495a43c 100644 --- a/src/xf86Elo.c +++ b/src/xf86Elo.c @@ -780,6 +780,10 @@ xf86EloControl(DeviceIntPtr dev, unsigned char map[] = { 0, 1 }; unsigned char req[ELO_PACKET_SIZE]; unsigned char reply[ELO_PACKET_SIZE]; +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + Atom btn_label; + Atom axis_labels[2] = { 0, 0 }; +#endif switch(mode) { @@ -797,7 +801,11 @@ xf86EloControl(DeviceIntPtr dev, /* * Device reports button press for up to 1 button. */ - if (InitButtonClassDeviceStruct(dev, 1, map) == FALSE) { + if (InitButtonClassDeviceStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + &btn_label, +#endif + map) == FALSE) { ErrorF("Unable to allocate Elographics touchscreen ButtonClassDeviceStruct\n"); return !Success; } @@ -818,6 +826,9 @@ xf86EloControl(DeviceIntPtr dev, * screen to fit one meter. */ if (InitValuatorClassDeviceStruct(dev, 2, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels, +#endif #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 xf86GetMotionEvents, #endif @@ -827,11 +838,19 @@ xf86EloControl(DeviceIntPtr dev, } else { /* I will map coordinates myself */ - InitValuatorAxisStruct(dev, 0, -1, -1, + InitValuatorAxisStruct(dev, 0, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[0], +#endif + -1, -1, 9500, 0 /* min_res */, 9500 /* max_res */); - InitValuatorAxisStruct(dev, 1, -1, -1, + InitValuatorAxisStruct(dev, 1, +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 + axis_labels[1], +#endif + -1, -1, 10500, 0 /* min_res */, 10500 /* max_res */); -- 1.6.3.rc1.2.g0164.dirty Index: xorg-x11-drv-elographics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel/xorg-x11-drv-elographics.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-drv-elographics.spec 15 Jul 2009 15:48:38 -0000 1.19 +++ xorg-x11-drv-elographics.spec 17 Jul 2009 04:51:00 -0000 1.20 @@ -5,13 +5,14 @@ Summary: Xorg X11 elographics input driver Name: xorg-x11-drv-elographics Version: 1.2.3 -Release: 2%{?dist}.1 +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 +Patch1: elographics-1.2.3-abi.patch ExcludeArch: s390 s390x @@ -24,6 +25,7 @@ X.Org X11 elographics input driver. %prep %setup -q -n %{tarball}-%{version} +%patch1 -p1 %build %configure --disable-static @@ -47,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/elographics.4* %changelog +* Fri Jul 17 2009 Peter Hutterer - 1.2.3-3 +- elographics-1.2.3-abi.patch: Cope with XINPUT ABI 7. + * Wed Jul 15 2009 Adam Jackson - 1.2.3-2.1 - ABI bump From whot at fedoraproject.org Fri Jul 17 05:10:40 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Fri, 17 Jul 2009 05:10:40 +0000 (UTC) Subject: rpms/gnome-settings-daemon/F-11 syndaemon-k.patch, NONE, 1.1 gnome-settings-daemon.spec, 1.107, 1.108 Message-ID: <20090717051040.CBA5211C00E8@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/gnome-settings-daemon/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9301 Modified Files: gnome-settings-daemon.spec Added Files: syndaemon-k.patch Log Message: * Fri Jul 17 2009 Peter Hutterer 2.26.1-8 - Spawn syndaemon with "-k" flag to ignore modifier keys. syndaemon-k.patch: gsd-mouse-manager.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE syndaemon-k.patch --- >From de0b5d89210545a5a7c0c892d0f85b46b1418508 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 8 Jul 2009 08:21:06 +1000 Subject: [PATCH] Spawn syndaemon with -k flag to ignore modifier keys. --- plugins/mouse/gsd-mouse-manager.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager.c index 1cb71d6..30e649d 100644 --- a/plugins/mouse/gsd-mouse-manager.c +++ b/plugins/mouse/gsd-mouse-manager.c @@ -502,7 +502,7 @@ set_disable_w_typing (GsdMouseManager *manager, gboolean state) GError *error = NULL; if (state) { - char *args[4]; + char *args[5]; if (manager->priv->syndaemon_spawned) return 0; @@ -510,7 +510,8 @@ set_disable_w_typing (GsdMouseManager *manager, gboolean state) args[0] = "syndaemon"; args[1] = "-i"; args[2] = "0.5"; - args[3] = NULL; + args[3] = "-k"; + args[4] = NULL; if (!g_find_program_in_path(args[0])) return 0; -- 1.6.3.rc1.2.g0164.dirty Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/F-11/gnome-settings-daemon.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- gnome-settings-daemon.spec 16 Jun 2009 04:42:24 -0000 1.107 +++ gnome-settings-daemon.spec 17 Jul 2009 05:10:10 -0000 1.108 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon Version: 2.26.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -50,6 +50,7 @@ Patch14: gsd-xkb-init.patch Patch15: composited-changed.patch Patch16: there-can-be-only-one.patch +Patch17: syndaemon-k.patch %description A daemon to share settings from GNOME to other applications. It also @@ -76,6 +77,7 @@ developing applications that use %{name} %patch14 -p1 -b .xkb-init %patch15 -p1 -b .composited-changed %patch16 -p1 -b .multi-syndaemon +%patch17 -p1 -b .syndaemon-k autoreconf -i -f @@ -188,6 +190,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Fri Jul 17 2009 Peter Hutterer 2.26.1-8 +- Spawn syndaemon with "-k" flag to ignore modifier keys. + * Tue Jun 16 2009 Matthias Clasen 2.26.1-7 - Only spawn one syndaemon From cchance at fedoraproject.org Fri Jul 17 05:15:49 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 17 Jul 2009 05:15:49 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.8,1.9 Message-ID: <20090717051549.069E811C00CF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10432 Modified Files: ibus-table-cangjie.spec Log Message: rebuilt Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ibus-table-cangjie.spec 17 Jul 2009 04:44:38 -0000 1.8 +++ ibus-table-cangjie.spec 17 Jul 2009 05:15:18 -0000 1.9 @@ -1,5 +1,5 @@ Name: ibus-table-cangjie -Version: 1.2.0.20090309 +Version: 1.2.0.20090717 Release: 1%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ @@ -64,7 +64,7 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/quick5.png %changelog -* Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090309-1.fc12 +* Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090717-1.fc12 - Rebuilt with IBus 1.2. * Fri Jul 03 2009 Caius 'kaio' Chance - 1.1.0.20090309-12.fc12 From mhlavink at fedoraproject.org Fri Jul 17 05:19:41 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Fri, 17 Jul 2009 05:19:41 +0000 (UTC) Subject: rpms/nmap/devel .cvsignore, 1.25, 1.26 nmap-4.52-noms.patch, 1.1, 1.2 nmap.spec, 1.55, 1.56 sources, 1.25, 1.26 Message-ID: <20090717051941.EFC5D11C00CF@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11262 Modified Files: .cvsignore nmap-4.52-noms.patch nmap.spec sources Log Message: update to 5.00 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 15 Jul 2009 13:43:36 -0000 1.25 +++ .cvsignore 17 Jul 2009 05:19:11 -0000 1.26 @@ -1 +1 @@ -nmap-4.90RC1.tar.bz2 +nmap-5.00.tar.bz2 nmap-4.52-noms.patch: nmap.1 | 2 +- nmap.usage.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: nmap-4.52-noms.patch =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/nmap-4.52-noms.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nmap-4.52-noms.patch 7 Jan 2008 14:51:39 -0000 1.1 +++ nmap-4.52-noms.patch 17 Jul 2009 05:19:11 -0000 1.2 @@ -1,19 +1,19 @@ -diff -up nmap-4.52/docs/nmap.1.noms nmap-4.52/docs/nmap.1 ---- nmap-4.52/docs/nmap.1.noms 2008-01-07 12:51:51.000000000 +0100 -+++ nmap-4.52/docs/nmap.1 2008-01-07 12:52:11.000000000 +0100 -@@ -106,7 +106,7 @@ Nmap 4\.52 ( http://insecure\.org ) +diff -up nmap-4.90RC1/docs/nmap.1.noms nmap-4.90RC1/docs/nmap.1 +--- nmap-4.90RC1/docs/nmap.1.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.1 2009-07-16 09:58:22.090769947 +0200 +@@ -282,7 +282,7 @@ Nmap 4\&.90RC1 ( http://nmap\&.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: - Can pass hostnames, IP addresses, networks, etc\. -- Ex: scanme\.nmap\.org, microsoft\.com/24, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 -+ Ex: scanme\.nmap\.org, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 + Can pass hostnames, IP addresses, networks, etc\&. +- Ex: scanme\&.nmap\&.org, microsoft\&.com/24, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 ++ Ex: scanme\&.nmap\&.org, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 \-iL : Input from list of hosts/networks \-iR : Choose random targets - \-\-exclude : Exclude hosts/networks -diff -up nmap-4.52/docs/nmap.usage.txt.noms nmap-4.52/docs/nmap.usage.txt ---- nmap-4.52/docs/nmap.usage.txt.noms 2008-01-07 12:41:32.000000000 +0100 -+++ nmap-4.52/docs/nmap.usage.txt 2008-01-07 12:42:15.000000000 +0100 -@@ -2,7 +2,7 @@ Nmap 4.52 ( http://insecure.org ) + \-\-exclude : Exclude hosts/networks +diff -up nmap-4.90RC1/docs/nmap.usage.txt.noms nmap-4.90RC1/docs/nmap.usage.txt +--- nmap-4.90RC1/docs/nmap.usage.txt.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.usage.txt 2009-07-16 09:56:24.758078049 +0200 +@@ -2,7 +2,7 @@ Nmap 4.90RC1 ( http://nmap.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/nmap.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- nmap.spec 15 Jul 2009 13:43:36 -0000 1.55 +++ nmap.spec 17 Jul 2009 05:19:11 -0000 1.56 @@ -1,12 +1,11 @@ Summary: Network exploration tool and security scanner Name: nmap -Version: 4.90 -%define betaver RC1 -Release: 0.%{betaver}%{?dist} +Version: 5.00 +Release: 1%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 Group: Applications/System -Source0: http://nmap.org/dist/%{name}-%{version}%{betaver}.tar.bz2 +Source0: http://nmap.org/dist/%{name}-%{version}.tar.bz2 Source1: zenmap.desktop Source2: zenmap-root.pamd Source3: zenmap-root.consoleapps @@ -47,9 +46,9 @@ This package includes zenmap, a GTK+ fro be installed before installing nmap-frontend. %prep -%setup -q -n %{name}-%{version}%{betaver} +%setup -q %patch1 -p1 -b .mktemp -#%patch2 -p1 -b .noms +%patch2 -p1 -b .noms %patch3 -p1 -b .nostrip rm -rf liblua libpcap libpcre @@ -125,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Fri Jul 17 2009 Michal Hlavinka - 2:5.0-1 +- updated to 5.0 + * Wed Jul 15 2009 Michal Hlavinka - 2:4.90-0.RC1 - updated to 4.90RC1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/nmap/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 15 Jul 2009 13:43:36 -0000 1.25 +++ sources 17 Jul 2009 05:19:11 -0000 1.26 @@ -1 +1 @@ -4355574dfdc3f86bfa85be0a6d9b5bf4 nmap-4.90RC1.tar.bz2 +32d27de32166c02d670bb4a086185886 nmap-5.00.tar.bz2 From deji at fedoraproject.org Fri Jul 17 05:19:48 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Fri, 17 Jul 2009 05:19:48 +0000 (UTC) Subject: rpms/texmaker/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 texmaker-tools.patch, 1.10, 1.11 texmaker.spec, 1.21, 1.22 Message-ID: <20090717051948.1811E11C00CF@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/texmaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11318 Modified Files: .cvsignore sources texmaker-tools.patch texmaker.spec Log Message: * Fri Jul 17 2009 Deji Akingunola - 1.9.2-1 - New Release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/texmaker/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 4 Jun 2009 01:21:24 -0000 1.10 +++ .cvsignore 17 Jul 2009 05:19:17 -0000 1.11 @@ -1 +1 @@ -texmaker-1.9.1.tar.bz2 +texmaker-1.9.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/texmaker/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 4 Jun 2009 01:21:24 -0000 1.10 +++ sources 17 Jul 2009 05:19:17 -0000 1.11 @@ -1 +1 @@ -db83c10dc6b737bfc81a108f0ce3f067 texmaker-1.9.1.tar.bz2 +61842ccacf7d843e497aa74f7135d04a texmaker-1.9.2.tar.bz2 texmaker-tools.patch: texmaker.cpp | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) Index: texmaker-tools.patch =================================================================== RCS file: /cvs/pkgs/rpms/texmaker/devel/texmaker-tools.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- texmaker-tools.patch 4 Jun 2009 01:21:24 -0000 1.10 +++ texmaker-tools.patch 17 Jul 2009 05:19:17 -0000 1.11 @@ -1,6 +1,6 @@ ---- texmaker.cpp 2009-05-24 04:37:51.000000000 -0400 -+++ texmaker.cpp.new 2009-05-27 07:34:34.287172458 -0400 -@@ -2430,28 +2430,10 @@ +--- texmaker.cpp 2009-06-14 12:42:57.000000000 -0400 ++++ texmaker.cpp.new 2009-07-15 11:33:27.749640574 -0400 +@@ -2352,27 +2352,9 @@ metapost_command=config->value("Tools/Metapost","mpost --interaction nonstopmode ").toString(); // xdvi %.dvi -sourceposition @:%.tex // kdvi "file:%.dvi#src:@ %.tex" @@ -25,14 +25,13 @@ - viewpdf_command=config->value("Tools/Pdf","okular %.pdf").toString(); - }break; - } - +viewdvi_command=config->value("Tools/Dvi","xdg-open %.dvi").toString(); +viewps_command=config->value("Tools/Ps","xdg-open %.ps").toString(); +viewpdf_command=config->value("Tools/Pdf","xdg-open %.pdf").toString(); - ghostscript_command=config->value("Tools/Ghostscript","gs").toString(); -@@ -2601,7 +2583,7 @@ + +@@ -2524,7 +2506,7 @@ author=config->value("Quick/Author","").toString(); #if defined( Q_WS_X11 ) Index: texmaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/texmaker/devel/texmaker.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- texmaker.spec 4 Jun 2009 01:21:25 -0000 1.21 +++ texmaker.spec 17 Jul 2009 05:19:17 -0000 1.22 @@ -1,6 +1,6 @@ Summary: LaTeX editor Name: texmaker -Version: 1.9.1 +Version: 1.9.2 Release: 1%{?dist} Epoch: 1 License: GPLv2+ @@ -84,6 +84,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %exclude %{_datadir}/texmaker/*.aff %changelog +* Fri Jul 17 2009 Deji Akingunola - 1.9.2-1 +- New Release + * Wed May 27 2009 Deji Akingunola - 1.9.1-1 - New Release From mhlavink at fedoraproject.org Fri Jul 17 05:27:27 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Fri, 17 Jul 2009 05:27:27 +0000 (UTC) Subject: rpms/nmap/F-11 .cvsignore, 1.24, 1.25 nmap.spec, 1.54, 1.55 sources, 1.24, 1.25 Message-ID: <20090717052727.1EAFB11C00CF@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12966 Modified Files: .cvsignore nmap.spec sources Log Message: updated to 5.00 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 16 Jul 2009 08:02:36 -0000 1.24 +++ .cvsignore 17 Jul 2009 05:26:56 -0000 1.25 @@ -1 +1 @@ -nmap-4.90RC1.tar.bz2 +nmap-5.00.tar.bz2 Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/nmap.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- nmap.spec 16 Jul 2009 08:02:36 -0000 1.54 +++ nmap.spec 17 Jul 2009 05:26:56 -0000 1.55 @@ -1,12 +1,11 @@ Summary: Network exploration tool and security scanner Name: nmap -Version: 4.90 -%define betaver RC1 -Release: 0.%{betaver}%{?dist} +Version: 5.00 +Release: 1 # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 Group: Applications/System -Source0: http://nmap.org/dist/%{name}-%{version}%{betaver}.tar.bz2 +Source0: http://nmap.org/dist/%{name}-%{version}.tar.bz2 Source1: zenmap.desktop Source2: zenmap-root.pamd Source3: zenmap-root.consoleapps @@ -47,7 +46,7 @@ This package includes zenmap, a GTK+ fro be installed before installing nmap-frontend. %prep -%setup -q -n %{name}-%{version}%{betaver} +%setup -q %patch1 -p1 -b .mktemp %patch2 -p1 -b .noms %patch3 -p1 -b .nostrip @@ -125,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Fri Jul 17 2009 Michal Hlavinka - 2:5.00 +- updated to 5.00 + * Thu Jul 16 2009 Michal Hlavinka - 2:4.90-0.RC1 - updated to 4.90RC1 - fix segmentation fault on scan (#509716) Index: sources =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 16 Jul 2009 08:02:36 -0000 1.24 +++ sources 17 Jul 2009 05:26:56 -0000 1.25 @@ -1 +1 @@ -4355574dfdc3f86bfa85be0a6d9b5bf4 nmap-4.90RC1.tar.bz2 +32d27de32166c02d670bb4a086185886 nmap-5.00.tar.bz2 From cchance at fedoraproject.org Fri Jul 17 05:28:46 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 17 Jul 2009 05:28:46 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.9,1.10 Message-ID: <20090717052846.C048A11C00CF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13261 Modified Files: ibus-table-cangjie.spec Log Message: updated file list Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ibus-table-cangjie.spec 17 Jul 2009 05:15:18 -0000 1.9 +++ ibus-table-cangjie.spec 17 Jul 2009 05:28:16 -0000 1.10 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.2.0.20090717 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -56,14 +56,13 @@ cd %{_datadir}/ibus-table/tables/ %dir %{_datadir}/ibus-table/tables %verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie3.db %verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie5.db -%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/quick3.db -%verify(not md5 size mtime) %{_datadir}/ibus-table/tables/quick5.db %{_datadir}/ibus-table/icons/cangjie3.svg %{_datadir}/ibus-table/icons/cangjie5.svg -%{_datadir}/ibus-table/icons/quick3.png -%{_datadir}/ibus-table/icons/quick5.png %changelog +* Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090717-2.fc12 +- Updated file list. + * Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090717-1.fc12 - Rebuilt with IBus 1.2. From sandeeps at fedoraproject.org Fri Jul 17 05:53:42 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Fri, 17 Jul 2009 05:53:42 +0000 (UTC) Subject: rpms/pothana2000-fonts/F-10 pothana2000-fonts-fontconfig.conf, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090717055342.DD9EF11C00CF@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/rpms/pothana2000-fonts/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18391 Modified Files: sources Added Files: pothana2000-fonts-fontconfig.conf Log Message: --- NEW FILE pothana2000-fonts-fontconfig.conf --- sans-serif Pothana2000 Pothana2000 sans-serif Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pothana2000-fonts/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:50:08 -0000 1.1 +++ sources 17 Jul 2009 05:53:11 -0000 1.2 @@ -0,0 +1 @@ +8c392bfbc921d816b8659f9e330372ad Pothana2k-Li.zip From sandeeps at fedoraproject.org Fri Jul 17 05:58:19 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Fri, 17 Jul 2009 05:58:19 +0000 (UTC) Subject: rpms/pothana2000-fonts/F-11 pothana2000-fonts-fontconfig.conf, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090717055819.842BB11C00CF@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/rpms/pothana2000-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19693 Modified Files: sources Added Files: pothana2000-fonts-fontconfig.conf Log Message: --- NEW FILE pothana2000-fonts-fontconfig.conf --- sans-serif Pothana2000 Pothana2000 sans-serif Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pothana2000-fonts/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 16 Jul 2009 05:50:08 -0000 1.1 +++ sources 17 Jul 2009 05:57:49 -0000 1.2 @@ -0,0 +1 @@ +8c392bfbc921d816b8659f9e330372ad Pothana2k-Li.zip From sandeeps at fedoraproject.org Fri Jul 17 05:59:08 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Fri, 17 Jul 2009 05:59:08 +0000 (UTC) Subject: rpms/pothana2000-fonts/F-11 pothana2000-fonts.spec,NONE,1.1 Message-ID: <20090717055908.1D90C11C00CF@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/rpms/pothana2000-fonts/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19949 Added Files: pothana2000-fonts.spec Log Message: --- NEW FILE pothana2000-fonts.spec --- %global fontname pothana2000 %global fontconf 69-%{fontname}.conf Name: %{fontname}-fonts Version: 1.3.1 Release: 2%{?dist} Summary: Unicode compliant OpenType font for Telugu Group: User Interface/X License: GPLv2+ URL: http://www.kavya-nandanam.com/dload.htm Source0: Pothana2k-Li.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description Its Free OpenType font for Telugu created by Dr. Tirumala Krishna Desikacharyulu. %prep %setup -q -c -n %{name} sed -i 's/\r//' gpl.txt %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p Pothana2000.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} Pothana2000.ttf %doc gpl.txt %changelog * Wed Mar 25 2009 - 1.3.1-2 - Fixed download URL * Tue Mar 24 2009 - 1.3.1-1 - Font Exception text added to font license * Tue Jan 15 2008 - 1.3-1 - Initial packaging From sandeeps at fedoraproject.org Fri Jul 17 06:00:18 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Fri, 17 Jul 2009 06:00:18 +0000 (UTC) Subject: rpms/pothana2000-fonts/F-10 pothana2000-fonts.spec,NONE,1.1 Message-ID: <20090717060018.353C911C00E8@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/rpms/pothana2000-fonts/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20243 Added Files: pothana2000-fonts.spec Log Message: --- NEW FILE pothana2000-fonts.spec --- %global fontname pothana2000 %global fontconf 69-%{fontname}.conf Name: %{fontname}-fonts Version: 1.3.1 Release: 2%{?dist} Summary: Unicode compliant OpenType font for Telugu Group: User Interface/X License: GPLv2+ URL: http://www.kavya-nandanam.com/dload.htm Source0: Pothana2k-Li.zip Source1: %{name}-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: fontpackages-devel Requires: fontpackages-filesystem %description Its Free OpenType font for Telugu created by Dr. Tirumala Krishna Desikacharyulu. %prep %setup -q -c -n %{name} sed -i 's/\r//' gpl.txt %build %install rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p Pothana2000.ttf %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} install -m 0644 -p %{SOURCE1} \ %{buildroot}%{_fontconfig_templatedir}/%{fontconf} ln -s %{_fontconfig_templatedir}/%{fontconf} \ %{buildroot}%{_fontconfig_confdir}/%{fontconf} %clean rm -fr %{buildroot} %_font_pkg -f %{fontconf} Pothana2000.ttf %doc gpl.txt %changelog * Wed Mar 25 2009 - 1.3.1-2 - Fixed download URL * Tue Mar 24 2009 - 1.3.1-1 - Font Exception text added to font license * Tue Jan 15 2008 - 1.3-1 - Initial packaging From bojan at fedoraproject.org Fri Jul 17 06:12:57 2009 From: bojan at fedoraproject.org (bojan) Date: Fri, 17 Jul 2009 06:12:57 +0000 (UTC) Subject: rpms/apr-api-docs/devel apr-api-docs.spec,1.13,1.14 Message-ID: <20090717061257.625DD11C00CF@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr-api-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23418 Modified Files: apr-api-docs.spec Log Message: Bump up to 1.3.6. Index: apr-api-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-api-docs/devel/apr-api-docs.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- apr-api-docs.spec 15 Jun 2009 23:57:46 -0000 1.13 +++ apr-api-docs.spec 17 Jul 2009 06:12:25 -0000 1.14 @@ -1,6 +1,6 @@ Name: apr-api-docs -Version: 1.3.5 -Release: 2%{?dist} +Version: 1.3.6 +Release: 1%{?dist} Summary: Apache Portable Runtime API documentation Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/apr-%{version}/api-docs/* %changelog +* Fri Jul 17 2009 Bojan Smojver 1.3.6-1 +- Bump up to 1.3.6 + * Tue Jun 16 2009 Bojan Smojver 1.3.5-2 - Bump up to 1.3.5 From cchance at fedoraproject.org Fri Jul 17 06:27:12 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 17 Jul 2009 06:27:12 +0000 (UTC) Subject: rpms/ibus-table-erbi/devel .cvsignore, 1.2, 1.3 ibus-table-erbi.spec, 1.9, 1.10 sources, 1.2, 1.3 Message-ID: <20090717062712.AF9F211C00CF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-erbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26500 Modified Files: .cvsignore ibus-table-erbi.spec sources Log Message: - Rebuilt with IBus 1.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Apr 2009 07:18:48 -0000 1.2 +++ .cvsignore 17 Jul 2009 06:26:41 -0000 1.3 @@ -1 +1 @@ -ibus-table-erbi-1.1.0.20090407.tar.gz +ibus-table-erbi-1.2.0.20090717.tar.gz Index: ibus-table-erbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/ibus-table-erbi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ibus-table-erbi.spec 3 Jul 2009 05:51:48 -0000 1.9 +++ ibus-table-erbi.spec 17 Jul 2009 06:26:41 -0000 1.10 @@ -1,6 +1,6 @@ Name: ibus-table-erbi -Version: 1.1.0.20090407 -Release: 9%{?dist} +Version: 1.2.0.20090717 +Release: 1%{?dist} Summary: Erbi input methods for ibus-table License: GPLv2+ Group: System Environment/Libraries @@ -47,7 +47,10 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/erbi-qs.svg %changelog -* Fri Jul 3 2009 Caius Chance - 1.1.0.20090407-9.fc12 +* Fri Jul 17 2009 Caius Chance - 1.1.0.20090717-1.fc12 +- Rebuilt with IBus 1.2. + +* Fri Jul 03 2009 Caius Chance - 1.1.0.20090407-9.fc12 - Fixed index creation at post-install. - Removed bootstrap. - Refined package dependencies. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Apr 2009 07:18:48 -0000 1.2 +++ sources 17 Jul 2009 06:26:41 -0000 1.3 @@ -1 +1 @@ -266cce156dd0488ad3f06b8909187818 ibus-table-erbi-1.1.0.20090407.tar.gz +1ab5946a329d17fcb30a4bd260419097 ibus-table-erbi-1.2.0.20090717.tar.gz From oget at fedoraproject.org Fri Jul 17 06:30:43 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 06:30:43 +0000 (UTC) Subject: rpms/muse/devel muse-glibc210.patch,NONE,1.1 muse.spec,1.5,1.6 Message-ID: <20090717063043.6B8E211C00D3@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/muse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27389 Modified Files: muse.spec Added Files: muse-glibc210.patch Log Message: * Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 - Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk - Remove BR: e2fsprogs-devel muse-glibc210.patch: memory.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- NEW FILE muse-glibc210.patch --- diff -rupN muse-1.0rc3.old/muse/memory.cpp muse-1.0rc3/muse/memory.cpp --- muse-1.0rc3.old/muse/memory.cpp 2003-10-27 13:51:22.000000000 -0500 +++ muse-1.0rc3/muse/memory.cpp 2009-07-15 17:49:27.000000000 -0400 @@ -1,7 +1,7 @@ //========================================================= // MusE // Linux Music Editor -// $Id: memory.cpp,v 1.1.1.1 2003/10/27 18:51:22 wschweer Exp $ +// $Id: memory.cpp,v 1.1.1.1.2.1 2009/07/15 21:49:27 spamatica Exp $ // // (C) Copyright 2003 Werner Schweer (ws at seh.de) //========================================================= @@ -48,7 +48,14 @@ void Pool::grow(int idx) { // printf("grow memory idx %d\n", idx); - int esize = (idx+1) * sizeof(int); +// int esize = (idx+1) * sizeof(int); + int esize = (idx+1) * sizeof(int)+2; + // (rj) changed to +2 due to bug 2819312 + // "1.0rc3 malloc problem w/glibc-2.10 on x86_64 (with fix)" + // the change apparently allows muse to launch with this + // configuration. It is however uncertain that this is the right fix. + // Probably it means that nelem will not become bigger than + // the allowed number of elements Chunk* n = new Chunk; n->next = chunks[idx]; Index: muse.spec =================================================================== RCS file: /cvs/pkgs/rpms/muse/devel/muse.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- muse.spec 21 Jun 2009 01:10:20 -0000 1.5 +++ muse.spec 17 Jul 2009 06:30:43 -0000 1.6 @@ -6,7 +6,7 @@ Summary: Midi/Audio Music Sequence # See: https://fedoraproject.org/wiki/AudioCreation Epoch: 1 Version: 1.0 -Release: %{?prerelease:0.}6%{?prerelease:.%prerelease}%{?dist} +Release: %{?prerelease:0.}7%{?prerelease:.%prerelease}%{?dist} # synti/vam is GPLv2+ # original freeverb plugin was public domain # some of the widgets are GPLv2 @@ -17,13 +17,15 @@ License: GPL+ and GPLv2 and GPLv2+ Group: Applications/Multimedia URL: http://www.muse-sequencer.org/ Source0: http://downloads.sourceforge.net/lmuse/%{name}-%{version}%{?prerelease}.tar.gz +# Fix: muse doesn't start on systems using glibc-2.10 +# https://sourceforge.net/tracker/?func=detail&aid=2819312&group_id=93414&atid=604222 +Patch0: muse-glibc210.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: alsa-lib-devel BuildRequires: desktop-file-utils BuildRequires: docbook-style-dsssl BuildRequires: doxygen -BuildRequires: e2fsprogs-devel BuildRequires: fluidsynth-devel BuildRequires: graphviz BuildRequires: jack-audio-connection-kit-devel @@ -47,6 +49,7 @@ for Linux. %prep %setup -q -n %{name}-%{version}%{?prerelease} +%patch0 -p1 -b .glibc210 # Fix encoding issues (upstream is informed): for f in README.de README.softsynth SECURITY synti/vam/README; do @@ -144,6 +147,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/*/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 +- Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk +- Remove BR: e2fsprogs-devel + * Sat Jun 20 2009 Orcan Ogetbil 1:1.0-0.6.rc3 - Update to 1.0rc3 From oget at fedoraproject.org Fri Jul 17 06:32:42 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 06:32:42 +0000 (UTC) Subject: rpms/muse/F-11 muse-glibc210.patch,NONE,1.1 muse.spec,1.5,1.6 Message-ID: <20090717063242.553ED11C00CF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/muse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27794 Modified Files: muse.spec Added Files: muse-glibc210.patch Log Message: * Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 - Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk - Remove BR: e2fsprogs-devel muse-glibc210.patch: memory.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- NEW FILE muse-glibc210.patch --- diff -rupN muse-1.0rc3.old/muse/memory.cpp muse-1.0rc3/muse/memory.cpp --- muse-1.0rc3.old/muse/memory.cpp 2003-10-27 13:51:22.000000000 -0500 +++ muse-1.0rc3/muse/memory.cpp 2009-07-15 17:49:27.000000000 -0400 @@ -1,7 +1,7 @@ //========================================================= // MusE // Linux Music Editor -// $Id: memory.cpp,v 1.1.1.1 2003/10/27 18:51:22 wschweer Exp $ +// $Id: memory.cpp,v 1.1.1.1.2.1 2009/07/15 21:49:27 spamatica Exp $ // // (C) Copyright 2003 Werner Schweer (ws at seh.de) //========================================================= @@ -48,7 +48,14 @@ void Pool::grow(int idx) { // printf("grow memory idx %d\n", idx); - int esize = (idx+1) * sizeof(int); +// int esize = (idx+1) * sizeof(int); + int esize = (idx+1) * sizeof(int)+2; + // (rj) changed to +2 due to bug 2819312 + // "1.0rc3 malloc problem w/glibc-2.10 on x86_64 (with fix)" + // the change apparently allows muse to launch with this + // configuration. It is however uncertain that this is the right fix. + // Probably it means that nelem will not become bigger than + // the allowed number of elements Chunk* n = new Chunk; n->next = chunks[idx]; Index: muse.spec =================================================================== RCS file: /cvs/pkgs/rpms/muse/F-11/muse.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- muse.spec 21 Jun 2009 01:12:54 -0000 1.5 +++ muse.spec 17 Jul 2009 06:32:11 -0000 1.6 @@ -6,7 +6,7 @@ Summary: Midi/Audio Music Sequence # See: https://fedoraproject.org/wiki/AudioCreation Epoch: 1 Version: 1.0 -Release: %{?prerelease:0.}6%{?prerelease:.%prerelease}%{?dist} +Release: %{?prerelease:0.}7%{?prerelease:.%prerelease}%{?dist} # synti/vam is GPLv2+ # original freeverb plugin was public domain # some of the widgets are GPLv2 @@ -17,13 +17,15 @@ License: GPL+ and GPLv2 and GPLv2+ Group: Applications/Multimedia URL: http://www.muse-sequencer.org/ Source0: http://downloads.sourceforge.net/lmuse/%{name}-%{version}%{?prerelease}.tar.gz +# Fix: muse doesn't start on systems using glibc-2.10 +# https://sourceforge.net/tracker/?func=detail&aid=2819312&group_id=93414&atid=604222 +Patch0: muse-glibc210.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: alsa-lib-devel BuildRequires: desktop-file-utils BuildRequires: docbook-style-dsssl BuildRequires: doxygen -BuildRequires: e2fsprogs-devel BuildRequires: fluidsynth-devel BuildRequires: graphviz BuildRequires: jack-audio-connection-kit-devel @@ -47,6 +49,7 @@ for Linux. %prep %setup -q -n %{name}-%{version}%{?prerelease} +%patch0 -p1 -b .glibc210 # Fix encoding issues (upstream is informed): for f in README.de README.softsynth SECURITY synti/vam/README; do @@ -144,6 +147,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/*/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 +- Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk +- Remove BR: e2fsprogs-devel + * Sat Jun 20 2009 Orcan Ogetbil 1:1.0-0.6.rc3 - Update to 1.0rc3 From oget at fedoraproject.org Fri Jul 17 06:34:17 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 06:34:17 +0000 (UTC) Subject: rpms/muse/F-10 muse-glibc210.patch,NONE,1.1 muse.spec,1.5,1.6 Message-ID: <20090717063417.2AF3711C00CF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/muse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28156 Modified Files: muse.spec Added Files: muse-glibc210.patch Log Message: * Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 - Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk - Remove BR: e2fsprogs-devel muse-glibc210.patch: memory.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- NEW FILE muse-glibc210.patch --- diff -rupN muse-1.0rc3.old/muse/memory.cpp muse-1.0rc3/muse/memory.cpp --- muse-1.0rc3.old/muse/memory.cpp 2003-10-27 13:51:22.000000000 -0500 +++ muse-1.0rc3/muse/memory.cpp 2009-07-15 17:49:27.000000000 -0400 @@ -1,7 +1,7 @@ //========================================================= // MusE // Linux Music Editor -// $Id: memory.cpp,v 1.1.1.1 2003/10/27 18:51:22 wschweer Exp $ +// $Id: memory.cpp,v 1.1.1.1.2.1 2009/07/15 21:49:27 spamatica Exp $ // // (C) Copyright 2003 Werner Schweer (ws at seh.de) //========================================================= @@ -48,7 +48,14 @@ void Pool::grow(int idx) { // printf("grow memory idx %d\n", idx); - int esize = (idx+1) * sizeof(int); +// int esize = (idx+1) * sizeof(int); + int esize = (idx+1) * sizeof(int)+2; + // (rj) changed to +2 due to bug 2819312 + // "1.0rc3 malloc problem w/glibc-2.10 on x86_64 (with fix)" + // the change apparently allows muse to launch with this + // configuration. It is however uncertain that this is the right fix. + // Probably it means that nelem will not become bigger than + // the allowed number of elements Chunk* n = new Chunk; n->next = chunks[idx]; Index: muse.spec =================================================================== RCS file: /cvs/pkgs/rpms/muse/F-10/muse.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- muse.spec 21 Jun 2009 01:14:12 -0000 1.5 +++ muse.spec 17 Jul 2009 06:33:46 -0000 1.6 @@ -6,7 +6,7 @@ Summary: Midi/Audio Music Sequence # See: https://fedoraproject.org/wiki/AudioCreation Epoch: 1 Version: 1.0 -Release: %{?prerelease:0.}6%{?prerelease:.%prerelease}%{?dist} +Release: %{?prerelease:0.}7%{?prerelease:.%prerelease}%{?dist} # synti/vam is GPLv2+ # original freeverb plugin was public domain # some of the widgets are GPLv2 @@ -17,13 +17,15 @@ License: GPL+ and GPLv2 and GPLv2+ Group: Applications/Multimedia URL: http://www.muse-sequencer.org/ Source0: http://downloads.sourceforge.net/lmuse/%{name}-%{version}%{?prerelease}.tar.gz +# Fix: muse doesn't start on systems using glibc-2.10 +# https://sourceforge.net/tracker/?func=detail&aid=2819312&group_id=93414&atid=604222 +Patch0: muse-glibc210.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: alsa-lib-devel BuildRequires: desktop-file-utils BuildRequires: docbook-style-dsssl BuildRequires: doxygen -BuildRequires: e2fsprogs-devel BuildRequires: fluidsynth-devel BuildRequires: graphviz BuildRequires: jack-audio-connection-kit-devel @@ -47,6 +49,7 @@ for Linux. %prep %setup -q -n %{name}-%{version}%{?prerelease} +%patch0 -p1 -b .glibc210 # Fix encoding issues (upstream is informed): for f in README.de README.softsynth SECURITY synti/vam/README; do @@ -144,6 +147,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/*/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 +- Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk +- Remove BR: e2fsprogs-devel + * Sat Jun 20 2009 Orcan Ogetbil 1:1.0-0.6.rc3 - Update to 1.0rc3 From mmaslano at fedoraproject.org Fri Jul 17 06:52:32 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Fri, 17 Jul 2009 06:52:32 +0000 (UTC) Subject: rpms/tcl/devel pic.patch,NONE,1.1 tcl.spec,1.89,1.90 Message-ID: <20090717065233.0B56D11C00CF@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/tcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32551 Modified Files: tcl.spec Added Files: pic.patch Log Message: For short time add another fPIC option. pic.patch: Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE pic.patch --- diff -up tcl8.5.7/unix/Makefile.in.old tcl8.5.7/unix/Makefile.in --- tcl8.5.7/unix/Makefile.in.old 2009-04-15 21:30:05.000000000 +0200 +++ tcl8.5.7/unix/Makefile.in 2009-07-16 08:27:32.758444459 +0200 @@ -569,7 +569,7 @@ objs: ${OBJS} tclsh: ${TCLSH_OBJS} ${TCL_LIB_FILE} - ${CC} ${CFLAGS} ${LDFLAGS} ${TCLSH_OBJS} @TCL_BUILD_LIB_SPEC@ ${LIBS} @EXTRA_TCLSH_LIBS@ \ + ${CC} ${CFLAGS} ${LDFLAGS} -fPIC ${TCLSH_OBJS} @TCL_BUILD_LIB_SPEC@ ${LIBS} @EXTRA_TCLSH_LIBS@ \ ${CC_SEARCH_FLAGS} -o tclsh # Resetting the LIB_RUNTIME_DIR below is required so that the generated Index: tcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl/devel/tcl.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- tcl.spec 15 Jul 2009 06:43:57 -0000 1.89 +++ tcl.spec 17 Jul 2009 06:52:32 -0000 1.90 @@ -19,6 +19,7 @@ Provides: tcl-tcldict = %{vers} Patch0: tcl-8.5.1-autopath.patch Patch1: tcl-8.5.0-conf.patch Patch2: tcl-8.5.0-hidden.patch +Patch3: pic.patch %if %sdt BuildRequires: systemtap-sdt-devel @@ -56,6 +57,7 @@ chmod -x generic/tclThreadAlloc.c %patch0 -p1 -b .autopath %patch1 -p1 -b .conf %patch2 -p1 -b .hidden +%patch3 -p1 -b .next_pic %build pushd unix @@ -64,7 +66,8 @@ autoconf %if %sdt --enable-dtrace \ %endif ---disable-threads +--disable-threads \ +--enable-symbols make %{?_smp_mflags} TCL_LIBRARY=%{_datadir}/%{name}%{majorver} From stransky at fedoraproject.org Fri Jul 17 06:52:55 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 17 Jul 2009 06:52:55 +0000 (UTC) Subject: rpms/xulrunner/F-11 sources, 1.71, 1.72 xulrunner.spec, 1.163, 1.164 mozilla-503286.patch, 1.1, NONE Message-ID: <20090717065255.6151211C00CF@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/xulrunner/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32639 Modified Files: sources xulrunner.spec Removed Files: mozilla-503286.patch Log Message: Update to 1.9.1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-11/sources,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- sources 30 Jun 2009 15:46:27 -0000 1.71 +++ sources 17 Jul 2009 06:52:24 -0000 1.72 @@ -1 +1 @@ -6dd59399db08963ef022a1d0e5010053 xulrunner-1.9.1-source.tar.bz2 +f2f68bc69f590eefc8fe98a0038087b1 xulrunner-1.9.1.1-source.tar.bz2 Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-11/xulrunner.spec,v retrieving revision 1.163 retrieving revision 1.164 diff -u -p -r1.163 -r1.164 --- xulrunner.spec 17 Jul 2009 01:50:36 -0000 1.163 +++ xulrunner.spec 17 Jul 2009 06:52:24 -0000 1.164 @@ -11,8 +11,8 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner -Version: 1.9.1 -Release: 5%{?dist} +Version: 1.9.1.1 +Release: 1%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -34,7 +34,6 @@ Patch10: mozilla-191-pkgconfig.pa # Upstream patches Patch100: mozilla-ps-pdf-simplify-operators.patch -Patch101: mozilla-503286.patch # --------------------------------------------------- @@ -154,7 +153,6 @@ sed -e 's/__RPM_VERSION_INTERNAL__/%{ver %patch10 -p1 -b .pk %patch100 -p1 -b .ps-pdf-simplify-operators -%patch101 -p1 -b .503286 %{__rm} -f .mozconfig @@ -454,6 +452,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 17 2009 Martin Stransky 1.9.1.1-1 +- Update to 1.9.1.1 + * Thu Jul 16 2009 Christopher Aillon - 1.9.1-5 - Fix for milw0rm 9137 --- mozilla-503286.patch DELETED --- From cchance at fedoraproject.org Fri Jul 17 07:02:06 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Fri, 17 Jul 2009 07:02:06 +0000 (UTC) Subject: rpms/ibus-table-yong/devel .cvsignore, 1.2, 1.3 ibus-table-yong.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090717070206.77B4F11C00CF@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2169 Modified Files: .cvsignore ibus-table-yong.spec sources Log Message: Rebuilt with IBus 1.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 May 2009 02:20:23 -0000 1.2 +++ .cvsignore 17 Jul 2009 07:01:35 -0000 1.3 @@ -1 +1 @@ -ibus-table-yong-1.1.0.20090422.tar.gz +ibus-table-yong-1.2.0.20090717.tar.gz Index: ibus-table-yong.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/ibus-table-yong.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ibus-table-yong.spec 3 Jul 2009 05:56:12 -0000 1.3 +++ ibus-table-yong.spec 17 Jul 2009 07:01:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: ibus-table-yong -Version: 1.1.0.20090422 -Release: 6%{?dist} +Version: 1.2.0.20090717 +Release: 1%{?dist} Summary: Yong input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -49,6 +49,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/yong.png %changelog +* Fri Jul 17 2009 Caius 'kaio' Chance - 1.1.0.20090717-1.fc12 +- Rebuilt with IBus 1.2. + * Tue May 19 2009 Caius 'kaio' Chance - 1.1.0.20090422-6.fc12 - Removed bootstrap. - Refined dependency. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 May 2009 02:20:23 -0000 1.2 +++ sources 17 Jul 2009 07:01:36 -0000 1.3 @@ -1 +1 @@ -3d8a91a171e16c6eac4c9c2f2b3ac218 ibus-table-yong-1.1.0.20090422.tar.gz +16e71911cd450265e7a0ffcd4244b5ec ibus-table-yong-1.2.0.20090717.tar.gz From jfch2222 at fedoraproject.org Fri Jul 17 07:07:00 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Fri, 17 Jul 2009 07:07:00 +0000 (UTC) Subject: rpms/openssh/devel openssh-5.2p1-sesftp.patch, NONE, 1.1 openssh-5.2p1-pathmax.patch, 1.1, 1.2 openssh-5.2p1-selabel.patch, 1.1, 1.2 openssh.spec, 1.151, 1.152 Message-ID: <20090717070701.1B3A011C00CF@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3410 Modified Files: openssh-5.2p1-pathmax.patch openssh-5.2p1-selabel.patch openssh.spec Added Files: openssh-5.2p1-sesftp.patch Log Message: changed internal-sftp context to sftpd_t openssh-5.2p1-sesftp.patch: session.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE openssh-5.2p1-sesftp.patch --- diff -up openssh-5.2p1/session.c.sesftp openssh-5.2p1/session.c --- openssh-5.2p1/session.c.sesftp 2009-07-16 22:34:26.000000000 +0200 +++ openssh-5.2p1/session.c 2009-07-16 22:59:22.000000000 +0200 @@ -58,6 +58,7 @@ #include #include #include +#include #include "openbsd-compat/sys-queue.h" #include "xmalloc.h" @@ -1816,6 +1817,7 @@ do_child(Session *s, const char *command argv[i] = NULL; optind = optreset = 1; __progname = argv[0]; + setcon ("system_u:system_r:sftpd_t"); exit(sftp_server_main(i, argv, s->pw)); } openssh-5.2p1-pathmax.patch: ssh.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) Index: openssh-5.2p1-pathmax.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-pathmax.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openssh-5.2p1-pathmax.patch 29 Jun 2009 20:51:17 -0000 1.1 +++ openssh-5.2p1-pathmax.patch 17 Jul 2009 07:06:58 -0000 1.2 @@ -1,6 +1,6 @@ diff -up openssh-5.2p1/ssh.c.pathmax openssh-5.2p1/ssh.c ---- openssh-5.2p1/ssh.c.pathmax 2009-06-29 22:13:17.251360372 +0200 -+++ openssh-5.2p1/ssh.c 2009-06-29 22:14:46.036292525 +0200 +--- openssh-5.2p1/ssh.c.pathmax 2009-07-08 14:23:19.000000000 +0200 ++++ openssh-5.2p1/ssh.c 2009-07-08 14:26:26.000000000 +0200 @@ -49,6 +49,7 @@ #include #include @@ -9,12 +9,39 @@ diff -up openssh-5.2p1/ssh.c.pathmax ope #include #include -@@ -209,7 +210,7 @@ int +@@ -208,8 +209,8 @@ void muxserver_listen(void); + int main(int ac, char **av) { - int i, opt, exit_status, use_syslog; +- int i, opt, exit_status, use_syslog; - char *p, *cp, *line, buf[256]; -+ char *p, *cp, *line, buf[PATH_MAX]; ++ int i, r, opt, exit_status, use_syslog; ++ char *p, *cp, *line, buf[MAXPATHLEN]; struct stat st; struct passwd *pw; int dummy, timeout_ms; +@@ -624,9 +625,10 @@ main(int ac, char **av) + fatal("Can't open user config file %.100s: " + "%.100s", config, strerror(errno)); + } else { +- snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, ++ r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, + _PATH_SSH_USER_CONFFILE); +- (void)read_config_file(buf, host, &options, 1); ++ if (r > 0 && (size_t)r < sizeof(buf)) ++ (void)read_config_file(buf, host, &options, 1); + + /* Read systemwide configuration file after use config. */ + (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, +@@ -787,9 +789,9 @@ main(int ac, char **av) + * Now that we are back to our own permissions, create ~/.ssh + * directory if it doesn't already exist. + */ +- snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, ++ r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir, + strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR); +- if (stat(buf, &st) < 0) ++ if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) + if (mkdir(buf, 0700) < 0) + error("Could not create directory '%.200s'.", buf); + openssh-5.2p1-selabel.patch: Makefile.in | 2 +- contrib/ssh-copy-id | 2 +- ssh.c | 10 ++++++++-- 3 files changed, 10 insertions(+), 4 deletions(-) Index: openssh-5.2p1-selabel.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-selabel.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openssh-5.2p1-selabel.patch 30 Jun 2009 10:26:13 -0000 1.1 +++ openssh-5.2p1-selabel.patch 17 Jul 2009 07:06:59 -0000 1.2 @@ -1,6 +1,6 @@ diff -up openssh-5.2p1/contrib/ssh-copy-id.selabel openssh-5.2p1/contrib/ssh-copy-id ---- openssh-5.2p1/contrib/ssh-copy-id.selabel 2009-06-29 23:43:03.514390092 +0200 -+++ openssh-5.2p1/contrib/ssh-copy-id 2009-06-29 23:44:11.188382120 +0200 +--- openssh-5.2p1/contrib/ssh-copy-id.selabel 2009-01-21 10:29:21.000000000 +0100 ++++ openssh-5.2p1/contrib/ssh-copy-id 2009-07-08 14:28:27.000000000 +0200 @@ -38,7 +38,7 @@ if [ "$#" -lt 1 ] || [ "$1" = "-h" ] || exit 1 fi @@ -11,8 +11,8 @@ diff -up openssh-5.2p1/contrib/ssh-copy- cat < #include @@ -33,12 +33,12 @@ diff -up openssh-5.2p1/ssh.c.selabel ope #include "openbsd-compat/openssl-compat.h" #include "openbsd-compat/sys-queue.h" -@@ -790,10 +791,15 @@ main(int ac, char **av) +@@ -791,10 +792,15 @@ main(int ac, char **av) */ - snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, + r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR); -- if (stat(buf, &st) < 0) -+ if (stat(buf, &st) < 0) { +- if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) ++ if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) { + char *scon; + + matchpathcon(buf, 0700, &scon); Index: openssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh.spec,v retrieving revision 1.151 retrieving revision 1.152 diff -u -p -r1.151 -r1.152 --- openssh.spec 30 Jun 2009 10:26:13 -0000 1.151 +++ openssh.spec 17 Jul 2009 07:06:59 -0000 1.152 @@ -63,7 +63,7 @@ Summary: An open source implementation of SSH protocol versions 1 and 2 Name: openssh Version: 5.2p1 -Release: 12%{?dist}%{?rescue_rel} +Release: 14%{?dist}%{?rescue_rel} URL: http://www.openssh.com/portable.html #Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz #Source1: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz.asc @@ -101,6 +101,7 @@ Patch66: openssh-5.2p1-homechroot.patch Patch67: openssh-5.2p1-xmodifiers.patch Patch68: openssh-5.2p1-pathmax.patch Patch69: openssh-5.2p1-selabel.patch +Patch70: openssh-5.2p1-sesftp.patch License: BSD Group: Applications/Internet @@ -236,6 +237,7 @@ an X11 passphrase dialog for OpenSSH. %patch67 -p1 -b .xmodifiers %patch68 -p1 -b .pathmax %patch69 -p1 -b .selabel +%patch70 -p1 -b .sesftp autoreconf @@ -470,7 +472,13 @@ fi %endif %changelog -* Tue Jun 30 2009 Jan F. Chadima - 5.2p1-11 +* Fri Jul 17 2009 Jan F. Chadima - 5.2p1-14 +- changed internal-sftp context to sftpd_t + +* Fri Jul 3 2009 Jan F. Chadima - 5.2p1-13 +- changed home length path patch to upstream version + +* Tue Jun 30 2009 Jan F. Chadima - 5.2p1-12 - create '~/.ssh/known_hosts' within proper context * Mon Jun 29 2009 Jan F. Chadima - 5.2p1-11 From mgrepl at fedoraproject.org Fri Jul 17 07:20:44 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 17 Jul 2009 07:20:44 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.30, 1.31 selinux-policy.spec, 1.886, 1.887 Message-ID: <20090717072044.CD03811C00E4@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6984 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow hal to dbus chat with polkit policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 29 +++ modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 8 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 19 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cups.fc | 2 modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 3 modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 3 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.te | 3 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 21 ++ modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 1 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iscsi.te | 1 modules/system/libraries.fc | 8 - modules/system/locallogin.te | 6 modules/system/sysnetwork.te | 4 modules/system/udev.te | 5 modules/system/userdomain.if | 22 +- modules/system/virtual.te | 5 modules/system/xen.te | 1 108 files changed, 1841 insertions(+), 573 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- policy-20090521.patch 15 Jul 2009 09:30:43 -0000 1.30 +++ policy-20090521.patch 17 Jul 2009 07:20:43 -0000 1.31 @@ -2310,8 +2310,16 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.te serefpolicy-3.6.12/policy/modules/services/hal.te --- nsaserefpolicy/policy/modules/services/hal.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/hal.te 2009-06-25 10:21:01.000000000 +0200 -@@ -162,6 +162,7 @@ ++++ serefpolicy-3.6.12/policy/modules/services/hal.te 2009-07-17 08:46:05.000000000 +0200 +@@ -103,6 +103,7 @@ + kernel_rw_irq_sysctls(hald_t) + kernel_rw_vm_sysctls(hald_t) + kernel_write_proc_files(hald_t) ++kernel_search_network_sysctl(hald_t) + kernel_setsched(hald_t) + + auth_read_pam_console_data(hald_t) +@@ -162,6 +163,7 @@ fs_mount_dos_fs(hald_t) fs_unmount_dos_fs(hald_t) fs_manage_dos_files(hald_t) @@ -2319,6 +2327,14 @@ diff -b -B --ignore-all-space --exclude- files_getattr_all_mountpoints(hald_t) +@@ -297,6 +299,7 @@ + ') + + optional_policy(` ++ polkit_dbus_chat(hald_t) + polkit_domtrans_auth(hald_t) + polkit_domtrans_resolve(hald_t) + polkit_read_lib(hald_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/kerberos.if serefpolicy-3.6.12/policy/modules/services/kerberos.if --- nsaserefpolicy/policy/modules/services/kerberos.if 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/kerberos.if 2009-06-25 10:21:01.000000000 +0200 @@ -2890,8 +2906,16 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/setroubleshoot.te serefpolicy-3.6.12/policy/modules/services/setroubleshoot.te --- nsaserefpolicy/policy/modules/services/setroubleshoot.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/setroubleshoot.te 2009-06-25 10:21:01.000000000 +0200 -@@ -121,6 +121,10 @@ ++++ serefpolicy-3.6.12/policy/modules/services/setroubleshoot.te 2009-07-17 08:50:23.000000000 +0200 +@@ -81,6 +81,7 @@ + + domain_dontaudit_search_all_domains_state(setroubleshootd_t) + ++files_read_all_symlinks(setroubleshootd_t) + files_read_usr_files(setroubleshootd_t) + files_read_etc_files(setroubleshootd_t) + files_list_all(setroubleshootd_t) +@@ -121,6 +122,10 @@ userdom_dontaudit_read_user_home_content_files(setroubleshootd_t) optional_policy(` Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.886 retrieving revision 1.887 diff -u -p -r1.886 -r1.887 --- selinux-policy.spec 15 Jul 2009 09:30:43 -0000 1.886 +++ selinux-policy.spec 17 Jul 2009 07:20:43 -0000 1.887 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 66%{?dist} +Release: 67%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 17 2009 Miroslav Grepl 3.6.12-67 +- Allow hal to dbus chat with polkit + * Wed Jul 15 2009 Miroslav Grepl 3.6.12-66 - Allow dhcpc to read users files From pkgdb at fedoraproject.org Fri Jul 17 07:29:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:29:49 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717072949.A1FCE10F86B@bastion2.fedora.phx.redhat.com> adalloz has set the watchbugzilla acl on mbuffer (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:29:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:29:57 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717072957.87EB310F888@bastion2.fedora.phx.redhat.com> adalloz has set the watchcommits acl on mbuffer (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:07 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073007.8741B10F890@bastion2.fedora.phx.redhat.com> adalloz has set the approveacls acl on mbuffer (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:03 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073003.08DD010F8A9@bastion2.fedora.phx.redhat.com> adalloz has set the commit acl on mbuffer (Fedora devel) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:16 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073016.82D8110F89C@bastion2.fedora.phx.redhat.com> adalloz has set the watchbugzilla acl on mbuffer (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:23 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073023.2BD6E10F8AF@bastion2.fedora.phx.redhat.com> adalloz has set the watchcommits acl on mbuffer (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:25 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073025.419D210F8B2@bastion2.fedora.phx.redhat.com> adalloz has set the commit acl on mbuffer (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From pkgdb at fedoraproject.org Fri Jul 17 07:30:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:30:29 +0000 Subject: [pkgdb] mbuffer had acl change status Message-ID: <20090717073029.95A6410F890@bastion2.fedora.phx.redhat.com> adalloz has set the approveacls acl on mbuffer (Fedora 11) to Approved for fab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mbuffer From giallu at fedoraproject.org Fri Jul 17 07:33:49 2009 From: giallu at fedoraproject.org (Gianluca Sforna) Date: Fri, 17 Jul 2009 07:33:49 +0000 (UTC) Subject: rpms/buildbot/devel .cvsignore, 1.8, 1.9 buildbot.spec, 1.14, 1.15 sources, 1.8, 1.9 Message-ID: <20090717073349.7EDE511C00CF@cvs1.fedora.phx.redhat.com> Author: giallu Update of /cvs/extras/rpms/buildbot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9698 Modified Files: .cvsignore buildbot.spec sources Log Message: * Fri Jul 17 2009 Gianluca Sforna - 0.7.11p1-1 - New upstream release - Change Source0 URI - Make tests optional Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/buildbot/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 12 Jul 2009 23:21:00 -0000 1.8 +++ .cvsignore 17 Jul 2009 07:33:18 -0000 1.9 @@ -1 +1 @@ -buildbot-0.7.11.tar.gz +buildbot-0.7.11p1.tar.gz Index: buildbot.spec =================================================================== RCS file: /cvs/extras/rpms/buildbot/devel/buildbot.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- buildbot.spec 12 Jul 2009 23:21:00 -0000 1.14 +++ buildbot.spec 17 Jul 2009 07:33:19 -0000 1.15 @@ -3,7 +3,7 @@ %global do_tests 1 Name: buildbot -Version: 0.7.11 +Version: 0.7.11p1 Release: 1%{?dist} Summary: Build/test automation system @@ -89,7 +89,7 @@ rm -rf %{buildroot} %changelog -* Sat Jul 11 2009 Gianluca Sforna - 0.7.11-1 +* Fri Jul 17 2009 Gianluca Sforna - 0.7.11p1-1 - New upstream release - Change Source0 URI - Make tests optional Index: sources =================================================================== RCS file: /cvs/extras/rpms/buildbot/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 12 Jul 2009 23:21:00 -0000 1.8 +++ sources 17 Jul 2009 07:33:19 -0000 1.9 @@ -1 +1 @@ -7128471f497c41b626fa59fe85a090cd buildbot-0.7.11.tar.gz +2f83cd6562f0288ec4f4d77027f3090f buildbot-0.7.11p1.tar.gz From pkgdb at fedoraproject.org Fri Jul 17 07:47:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:47:20 +0000 Subject: [pkgdb] clamav had acl change status Message-ID: <20090717074720.D396910F8A3@bastion2.fedora.phx.redhat.com> ensc has set the watchbugzilla acl on clamav (Fedora 11) to Approved for nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Fri Jul 17 07:47:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:47:39 +0000 Subject: [pkgdb] clamav had acl change status Message-ID: <20090717074739.75CEC10F898@bastion2.fedora.phx.redhat.com> ensc has set the watchcommits acl on clamav (Fedora 11) to Approved for nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Fri Jul 17 07:47:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:47:41 +0000 Subject: [pkgdb] clamav had acl change status Message-ID: <20090717074741.BADC710F8A6@bastion2.fedora.phx.redhat.com> ensc has set the watchbugzilla acl on clamav (Fedora devel) to Approved for nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From pkgdb at fedoraproject.org Fri Jul 17 07:47:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 07:47:42 +0000 Subject: [pkgdb] clamav had acl change status Message-ID: <20090717074742.54E4010F8A9@bastion2.fedora.phx.redhat.com> ensc has set the watchcommits acl on clamav (Fedora devel) to Approved for nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clamav From stransky at fedoraproject.org Fri Jul 17 07:56:16 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 17 Jul 2009 07:56:16 +0000 (UTC) Subject: rpms/firefox/F-11 .cvsignore, 1.97, 1.98 firefox.spec, 1.330, 1.331 sources, 1.110, 1.111 Message-ID: <20090717075616.7366A11C00CF@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/firefox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15647 Modified Files: .cvsignore firefox.spec sources Log Message: Updated to 3.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/.cvsignore,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- .cvsignore 30 Jun 2009 15:38:38 -0000 1.97 +++ .cvsignore 17 Jul 2009 07:55:44 -0000 1.98 @@ -1,2 +1,4 @@ firefox-3.5-source.tar.bz2 firefox-langpacks-3.5-20090630.tar.bz2 +firefox-3.5.1-source.tar.bz2 +firefox-langpacks-3.5.1-20090717.tar.bz2 Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/firefox.spec,v retrieving revision 1.330 retrieving revision 1.331 diff -u -p -r1.330 -r1.331 --- firefox.spec 13 Jul 2009 09:06:09 -0000 1.330 +++ firefox.spec 17 Jul 2009 07:55:44 -0000 1.331 @@ -5,7 +5,7 @@ %define mozappdir %{_libdir}/%{name}-%{internal_version} %define tarballdir mozilla-1.9.1 -%define xulrunner_version 1.9.1-1 +%define xulrunner_version 1.9.1.1-1 %define internal_version %{version} %define official_branding 1 @@ -18,8 +18,8 @@ Summary: Mozilla Firefox Web browser Name: firefox -Version: 3.5 -Release: 2%{?dist} +Version: 3.5.1 +Release: 1%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -30,7 +30,7 @@ Group: Applications/Internet %endif Source0: %{tarball} %if %{build_langpacks} -Source2: firefox-langpacks-%{version}-20090630.tar.bz2 +Source2: firefox-langpacks-%{version}-20090717.tar.bz2 %endif Source10: firefox-mozconfig Source11: firefox-mozconfig-branded @@ -321,6 +321,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 17 2009 Martin Stransky - 3.5.1-1 +- Updated to 3.5.1. + * Tue Jul 7 2009 Jan Horak - 3.5-2 - Updated icon Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/sources,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- sources 30 Jun 2009 15:38:39 -0000 1.110 +++ sources 17 Jul 2009 07:55:44 -0000 1.111 @@ -1,2 +1,2 @@ -6dd59399db08963ef022a1d0e5010053 firefox-3.5-source.tar.bz2 -335219cf8a29a2584a0483707099d0b7 firefox-langpacks-3.5-20090630.tar.bz2 +f2f68bc69f590eefc8fe98a0038087b1 firefox-3.5.1-source.tar.bz2 +fb69b2d36b0ea28a7493ac3ab419a0a3 firefox-langpacks-3.5.1-20090717.tar.bz2 From mgrepl at fedoraproject.org Fri Jul 17 08:22:02 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 17 Jul 2009 08:22:02 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.31, 1.32 selinux-policy.spec, 1.887, 1.888 Message-ID: <20090717082202.A9E2011C00CF@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22974 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Fixes for hald_dccm policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 29 +++ modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 8 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 19 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cups.fc | 2 modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 3 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.te | 3 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 21 ++ modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 1 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iscsi.te | 1 modules/system/libraries.fc | 8 - modules/system/locallogin.te | 6 modules/system/sysnetwork.te | 17 +- modules/system/udev.te | 5 modules/system/userdomain.if | 22 +- modules/system/virtual.te | 5 modules/system/xen.te | 1 108 files changed, 1860 insertions(+), 576 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- policy-20090521.patch 17 Jul 2009 07:20:43 -0000 1.31 +++ policy-20090521.patch 17 Jul 2009 08:22:01 -0000 1.32 @@ -2310,7 +2310,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.te serefpolicy-3.6.12/policy/modules/services/hal.te --- nsaserefpolicy/policy/modules/services/hal.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/hal.te 2009-07-17 08:46:05.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/hal.te 2009-07-17 09:56:19.000000000 +0200 @@ -103,6 +103,7 @@ kernel_rw_irq_sysctls(hald_t) kernel_rw_vm_sysctls(hald_t) @@ -2335,6 +2335,41 @@ diff -b -B --ignore-all-space --exclude- polkit_domtrans_auth(hald_t) polkit_domtrans_resolve(hald_t) polkit_read_lib(hald_t) +@@ -381,6 +384,7 @@ + miscfiles_read_localization(hald_acl_t) + + optional_policy(` ++ polkit_dbus_chat(hald_acl_t) + polkit_domtrans_auth(hald_acl_t) + polkit_read_lib(hald_acl_t) + polkit_read_reload(hald_acl_t) +@@ -470,6 +474,8 @@ + # + # Local hald dccm policy + # ++ ++allow hald_dccm_t self:fifo_file rw_fifo_file_perms; + allow hald_dccm_t self:capability { net_bind_service }; + allow hald_dccm_t self:process getsched; + allow hald_dccm_t self:tcp_socket create_stream_socket_perms; +@@ -480,6 +486,8 @@ + allow hald_t hald_dccm_t:process signal; + allow hald_dccm_t hald_t:unix_stream_socket connectto; + ++hal_rw_dgram_sockets(hald_dccm_t) ++ + corenet_all_recvfrom_unlabeled(hald_dccm_t) + corenet_all_recvfrom_netlabel(hald_dccm_t) + corenet_tcp_sendrecv_generic_if(hald_dccm_t) +@@ -508,4 +516,8 @@ + + miscfiles_read_localization(hald_dccm_t) + ++optional_policy(` ++ dbus_system_bus_client(hald_dccm_t) ++') ++ + permissive hald_dccm_t; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/kerberos.if serefpolicy-3.6.12/policy/modules/services/kerberos.if --- nsaserefpolicy/policy/modules/services/kerberos.if 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/kerberos.if 2009-06-25 10:21:01.000000000 +0200 @@ -4133,16 +4168,8 @@ diff -b -B --ignore-all-space --exclude- allow sulogin_t self:capability sys_tty_config; diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/sysnetwork.te serefpolicy-3.6.12/policy/modules/system/sysnetwork.te --- nsaserefpolicy/policy/modules/system/sysnetwork.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/sysnetwork.te 2009-07-13 11:39:27.000000000 +0200 -@@ -18,6 +18,7 @@ - type dhcpc_t; - type dhcpc_exec_t; - init_daemon_domain(dhcpc_t,dhcpc_exec_t) -+domain_obj_id_change_exemption(dhcpc_t) - role system_r types dhcpc_t; - - type dhcpc_helper_exec_t; -@@ -45,7 +46,7 @@ ++++ serefpolicy-3.6.12/policy/modules/system/sysnetwork.te 2009-07-17 09:43:41.000000000 +0200 +@@ -45,7 +45,7 @@ # DHCP client local policy # allow dhcpc_t self:capability { dac_override fsetid net_admin net_raw net_bind_service sys_nice sys_resource sys_tty_config }; @@ -4151,7 +4178,24 @@ diff -b -B --ignore-all-space --exclude- # for access("/etc/bashrc", X_OK) on Red Hat dontaudit dhcpc_t self:capability { dac_read_search sys_module }; allow dhcpc_t self:process { setfscreate ptrace signal_perms }; -@@ -125,6 +126,7 @@ +@@ -69,8 +69,9 @@ + + # Allow read/write to /etc/resolv.conf and /etc/ntp.conf. Note that any files + # in /etc created by dhcpcd will be labelled net_conf_t. +-sysnet_manage_config(dhcpc_t) ++allow dhcpc_t net_conf_t:file manage_file_perms; + allow dhcpc_t net_conf_t:file relabel_file_perms; ++sysnet_manage_config(dhcpc_t) + files_etc_filetrans(dhcpc_t,net_conf_t,file) + + # create temp files +@@ -120,11 +121,13 @@ + corecmd_exec_bin(dhcpc_t) + corecmd_exec_shell(dhcpc_t) + ++domain_obj_id_change_exemption(dhcpc_t) + domain_use_interactive_fds(dhcpc_t) + domain_dontaudit_read_all_domains_state(dhcpc_t) files_read_etc_files(dhcpc_t) files_read_etc_runtime_files(dhcpc_t) @@ -4159,6 +4203,27 @@ diff -b -B --ignore-all-space --exclude- files_search_home(dhcpc_t) files_search_var_lib(dhcpc_t) files_dontaudit_search_locks(dhcpc_t) +@@ -270,8 +273,8 @@ + + read_files_pattern(ifconfig_t, dhcpc_state_t, dhcpc_state_t) + +-files_read_etc_files(ifconfig_t); +-files_read_etc_runtime_files(ifconfig_t); ++files_read_etc_files(ifconfig_t) ++files_read_etc_runtime_files(ifconfig_t) + + kernel_use_fds(ifconfig_t) + kernel_read_system_state(ifconfig_t) +@@ -367,3 +370,9 @@ + xen_append_log(ifconfig_t) + xen_dontaudit_rw_unix_stream_sockets(ifconfig_t) + ') ++ ++optional_policy(` ++ hal_rw_dgram_sockets(dhcpc_t) ++ hal_dontaudit_rw_pipes(ifconfig_t) ++') ++ diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.te serefpolicy-3.6.12/policy/modules/system/udev.te --- nsaserefpolicy/policy/modules/system/udev.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/system/udev.te 2009-06-25 10:21:01.000000000 +0200 Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.887 retrieving revision 1.888 diff -u -p -r1.887 -r1.888 --- selinux-policy.spec 17 Jul 2009 07:20:43 -0000 1.887 +++ selinux-policy.spec 17 Jul 2009 08:22:01 -0000 1.888 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 67%{?dist} +Release: 68%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 17 2009 Miroslav Grepl 3.6.12-68 +- Fixes for hald_dccm + * Fri Jul 17 2009 Miroslav Grepl 3.6.12-67 - Allow hal to dbus chat with polkit From oget at fedoraproject.org Fri Jul 17 08:44:37 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 08:44:37 +0000 (UTC) Subject: rpms/fluidsynth/devel fluidsynth.spec,1.11,1.12 Message-ID: <20090717084437.8125111C00CF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/fluidsynth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29035 Modified Files: fluidsynth.spec Log Message: * Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 - Disable portaudio support. It somehow messes up jack. Index: fluidsynth.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluidsynth/devel/fluidsynth.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fluidsynth.spec 28 Jun 2009 18:52:52 -0000 1.11 +++ fluidsynth.spec 17 Jul 2009 08:44:31 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Real-time software synthesizer Name: fluidsynth Version: 1.0.9 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.fluidsynth.org/ Source0: http://download.savannah.gnu.org/releases/fluid/fluidsynth-%{version}.tar.gz License: LGPLv2+ @@ -16,7 +16,9 @@ BuildRequires: ladspa-devel BuildRequires: lash-devel BuildRequires: ncurses-devel BuildRequires: pkgconfig -BuildRequires: portaudio-devel +# Disabled for now: +# http://fluidsynth.resonance.org/trac/ticket/51 +# BuildRequires: portaudio-devel BuildRequires: readline-devel # For documentation: @@ -61,8 +63,9 @@ for f in AUTHORS THANKS; do %{__mv} -f $f.tmp $f done + %build -%configure --enable-jack-support --enable-ladspa --disable-static +%configure --enable-jack-support --enable-ladspa --disable-static --disable-portaudio-support # remove rpath from libtool %{__sed} -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -110,6 +113,9 @@ find $RPM_BUILD_ROOT -name \*.la | xargs %{_libdir}/pkgconfig/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 +- Disable portaudio support. It somehow messes up jack. + * Sun Jun 28 2009 Orcan Ogetbil - 1.0.9-1 - Updated to 1.0.9 - Clean rpath From oget at fedoraproject.org Fri Jul 17 08:45:48 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 08:45:48 +0000 (UTC) Subject: rpms/fluidsynth/F-11 fluidsynth.spec,1.11,1.12 Message-ID: <20090717084548.0732E11C00CF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/fluidsynth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29535 Modified Files: fluidsynth.spec Log Message: * Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 - Disable portaudio support. It somehow messes up jack. Index: fluidsynth.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluidsynth/F-11/fluidsynth.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fluidsynth.spec 28 Jun 2009 18:58:56 -0000 1.11 +++ fluidsynth.spec 17 Jul 2009 08:45:17 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Real-time software synthesizer Name: fluidsynth Version: 1.0.9 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.fluidsynth.org/ Source0: http://download.savannah.gnu.org/releases/fluid/fluidsynth-%{version}.tar.gz License: LGPLv2+ @@ -16,7 +16,9 @@ BuildRequires: ladspa-devel BuildRequires: lash-devel BuildRequires: ncurses-devel BuildRequires: pkgconfig -BuildRequires: portaudio-devel +# Disabled for now: +# http://fluidsynth.resonance.org/trac/ticket/51 +# BuildRequires: portaudio-devel BuildRequires: readline-devel # For documentation: @@ -61,8 +63,9 @@ for f in AUTHORS THANKS; do %{__mv} -f $f.tmp $f done + %build -%configure --enable-jack-support --enable-ladspa --disable-static +%configure --enable-jack-support --enable-ladspa --disable-static --disable-portaudio-support # remove rpath from libtool %{__sed} -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -110,6 +113,9 @@ find $RPM_BUILD_ROOT -name \*.la | xargs %{_libdir}/pkgconfig/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 +- Disable portaudio support. It somehow messes up jack. + * Sun Jun 28 2009 Orcan Ogetbil - 1.0.9-1 - Updated to 1.0.9 - Clean rpath From oget at fedoraproject.org Fri Jul 17 08:46:15 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Fri, 17 Jul 2009 08:46:15 +0000 (UTC) Subject: rpms/fluidsynth/F-10 fluidsynth.spec,1.10,1.11 Message-ID: <20090717084615.CA97811C00CF@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/fluidsynth/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30299 Modified Files: fluidsynth.spec Log Message: * Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 - Disable portaudio support. It somehow messes up jack. Index: fluidsynth.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluidsynth/F-10/fluidsynth.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fluidsynth.spec 28 Jun 2009 19:01:14 -0000 1.10 +++ fluidsynth.spec 17 Jul 2009 08:46:15 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Real-time software synthesizer Name: fluidsynth Version: 1.0.9 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.fluidsynth.org/ Source0: http://download.savannah.gnu.org/releases/fluid/fluidsynth-%{version}.tar.gz License: LGPLv2+ @@ -16,7 +16,9 @@ BuildRequires: ladspa-devel BuildRequires: lash-devel BuildRequires: ncurses-devel BuildRequires: pkgconfig -BuildRequires: portaudio-devel +# Disabled for now: +# http://fluidsynth.resonance.org/trac/ticket/51 +# BuildRequires: portaudio-devel BuildRequires: readline-devel # For documentation: @@ -61,8 +63,9 @@ for f in AUTHORS THANKS; do %{__mv} -f $f.tmp $f done + %build -%configure --enable-jack-support --enable-ladspa --disable-static +%configure --enable-jack-support --enable-ladspa --disable-static --disable-portaudio-support # remove rpath from libtool %{__sed} -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -110,6 +113,9 @@ find $RPM_BUILD_ROOT -name \*.la | xargs %{_libdir}/pkgconfig/* %changelog +* Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 +- Disable portaudio support. It somehow messes up jack. + * Sun Jun 28 2009 Orcan Ogetbil - 1.0.9-1 - Updated to 1.0.9 - Clean rpath From rjones at fedoraproject.org Fri Jul 17 08:57:56 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Fri, 17 Jul 2009 08:57:56 +0000 (UTC) Subject: rpms/perl-libintl/EL-5 perl-libintl.spec,1.5,1.6 Message-ID: <20090717085756.C8E4B11C00CF@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/perl-libintl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1493 Modified Files: perl-libintl.spec Log Message: * Fri Jul 17 2009 Richard W.M. Jones - 1.16-9 - Import version from Rawhide. NOTE there was no previous build available in EPEL-5, although there was this empty branch. Index: perl-libintl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-libintl/EL-5/perl-libintl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-libintl.spec 28 Aug 2006 12:28:46 -0000 1.5 +++ perl-libintl.spec 17 Jul 2009 08:57:25 -0000 1.6 @@ -1,14 +1,15 @@ Summary: Internationalization library for Perl, compatible with gettext Name: perl-libintl Version: 1.16 -Release: 3%{?dist} -License: LGPL +Release: 9%{?dist} +License: LGPLv2+ Group: Development/Libraries URL: http://search.cpan.org/dist/libintl-perl/ Source: http://search.cpan.org/CPAN/authors/id/G/GU/GUIDO/libintl-perl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Provides: perl-libintl-perl = %{version}-%{release} +BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: gdbm-devel, db4-devel %description @@ -46,7 +47,7 @@ chmod -R u+w %{buildroot}/* %files -%defattr(-, root, root, 0755) +%defattr(-,root,root,-) %doc ChangeLog COPYING* NEWS README THANKS TODO %{perl_vendorlib}/Locale/ %{perl_vendorarch}/auto/Locale/ @@ -54,6 +55,10 @@ chmod -R u+w %{buildroot}/* %changelog +* Fri Jul 17 2009 Richard W.M. Jones - 1.16-9 +- Import version from Rawhide. NOTE there was no previous build + available in EPEL-5, although there was this empty branch. + * Mon Aug 28 2006 Matthias Saou 1.16-3 - FC6 rebuild. - Change spec file back to my own liking... From akahl at fedoraproject.org Fri Jul 17 10:00:10 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Fri, 17 Jul 2009 10:00:10 +0000 (UTC) Subject: rpms/php-ZendFramework/devel .cvsignore, 1.7, 1.8 php-ZendFramework.spec, 1.14, 1.15 sources, 1.7, 1.8 Message-ID: <20090717100010.C1D8D11C00E8@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19820 Modified Files: .cvsignore php-ZendFramework.spec sources Log Message: * update to 1.8.4PL1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 17 Mar 2009 13:44:21 -0000 1.7 +++ .cvsignore 17 Jul 2009 10:00:09 -0000 1.8 @@ -1 +1 @@ -ZendFramework-1.7.7.tar.gz +ZendFramework-1.8.4PL1.tar.gz Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/devel/php-ZendFramework.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- php-ZendFramework.spec 17 Mar 2009 17:07:47 -0000 1.14 +++ php-ZendFramework.spec 17 Jul 2009 10:00:09 -0000 1.15 @@ -1,19 +1,20 @@ %define php_name ZendFramework +%define posttag PL1 Summary: Leading open-source PHP framework Name: php-ZendFramework -Version: 1.7.7 -Release: 2%{?dist} +Version: 1.8.4 +Release: 1.%{posttag}%{?dist} License: BSD Group: Development/Libraries -Source0: http://framework.zend.com/releases/%{php_name}-%{version}/%{php_name}-%{version}.tar.gz +Source0: http://framework.zend.com/releases/%{php_name}-%{version}%{?posttag}/%{php_name}-%{version}%{?posttag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://framework.zend.com/ BuildArch: noarch -Requires: php >= 5.1.4 +Requires: php >= 5.2.4 Requires: php-bcmath Requires: php-ctype Requires: php-curl @@ -270,25 +271,54 @@ types. Zend_Search_Lucene is a port of t Summary: Web service APIs for a number of providers Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: php-mcrypt +Requires: php-soap %description Services This package contains web service client APIs for the following services: - Akismet -- Amazon +- Amazon (including Ec2, S3) - Audioscrobbler - del.icio.us - Flickr - Nirvanix +- ReCaptcha - Simpy - SlideShare - StrikeIron - Technorati +- Twitter - Yahoo! +%package Soap +Summary: SOAP web services server part helper +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: php-soap + +%description Soap +Zend_Soap_Server class is intended to simplify Web Services server part +development for PHP programmers. + +It may be used in WSDL or non-WSDL mode, and using classes or functions to +define Web Service API. + +When Zend_Soap_Server component works in the WSDL mode, it uses already +prepared WSDL document to define server object behavior and transport layer +options. + +WSDL document may be auto-generated with functionality provided by +Zend_Soap_AutoDiscovery component or should be constructed manually using +Zend_Soap_Wsdl class or any other XML generating tool. + +If the non-WSDL mode is used, then all protocol options have to be set using +options mechanism. + + %prep -%setup -qn %{php_name}-%{version} +%setup -qn %{php_name}-%{version}%{?posttag} %build find . -type f -perm /111 \ @@ -315,19 +345,12 @@ cd extras %{__cp} -pr tests $RPM_BUILD_ROOT%{_datadir}/php/ZendX cd .. - -# Zend_Tool, still in development -cd incubator -%{__cp} -pr library/Zend/Tool $RPM_BUILD_ROOT%{_datadir}/php/Zend -%{__cp} -pr tests/* $RPM_BUILD_ROOT%{_datadir}/php/Zend/tests %{__cp} -pr bin/zf.{php,sh} \ $RPM_BUILD_ROOT%{_datadir}/php/Zend %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} %{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ $RPM_BUILD_ROOT%{_bindir}/zf symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null -cd .. - # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -350,13 +373,37 @@ symlinks -c . > /dev/null %files %defattr(-,root,root,-) -%{_datadir}/php/Zend -%exclude %{_datadir}/php/Zend/demos -%exclude %{_datadir}/php/Zend/tests +%doc LICENSE.txt INSTALL.txt README.txt +%{_bindir}/zf +# we list all files explicitly to find out what's new in future releases more +# easily +%dir %{_datadir}/php/Zend +%{_datadir}/php/Zend/zf.php +%{_datadir}/php/Zend/zf.sh +%{_datadir}/php/Zend/Acl +%{_datadir}/php/Zend/Acl.php +%{_datadir}/php/Zend/Amf +%{_datadir}/php/Zend/Application +%{_datadir}/php/Zend/Application.php +%{_datadir}/php/Zend/Auth %exclude %{_datadir}/php/Zend/Auth/Adapter/Ldap.php +%{_datadir}/php/Zend/Auth.php +%{_datadir}/php/Zend/Cache %exclude %{_datadir}/php/Zend/Cache/Backend/Apc.php %exclude %{_datadir}/php/Zend/Cache/Backend/Memcached.php -%exclude %{_datadir}/php/Zend/Captcha +%{_datadir}/php/Zend/Cache.php +%{_datadir}/php/Zend/CodeGenerator +%{_datadir}/php/Zend/Config +%{_datadir}/php/Zend/Config.php +%{_datadir}/php/Zend/Console +%{_datadir}/php/Zend/Controller +%{_datadir}/php/Zend/Crypt +%{_datadir}/php/Zend/Crypt.php +%{_datadir}/php/Zend/Currency +%{_datadir}/php/Zend/Currency.php +%{_datadir}/php/Zend/Date +%{_datadir}/php/Zend/Date.php +%{_datadir}/php/Zend/Db %exclude %{_datadir}/php/Zend/Db/Adapter/Db2.php %exclude %{_datadir}/php/Zend/Db/Adapter/Db2 %exclude %{_datadir}/php/Zend/Db/Statement/Db2.php @@ -369,17 +416,48 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Db/Adapter/Oracle %exclude %{_datadir}/php/Zend/Db/Statement/Oracle.php %exclude %{_datadir}/php/Zend/Db/Statement/Oracle -%exclude %{_datadir}/php/Zend/Dojo.php -%exclude %{_datadir}/php/Zend/Dojo -%exclude %{_datadir}/php/Zend/Feed.php -%exclude %{_datadir}/php/Zend/Feed -%exclude %{_datadir}/php/Zend/Gdata.php -%exclude %{_datadir}/php/Zend/Gdata -%exclude %{_datadir}/php/Zend/Ldap.php -%exclude %{_datadir}/php/Zend/Ldap -%exclude %{_datadir}/php/Zend/Pdf.php -%exclude %{_datadir}/php/Zend/Pdf -%exclude %{_datadir}/php/Zend/Search +%{_datadir}/php/Zend/Db.php +%{_datadir}/php/Zend/Debug.php +%{_datadir}/php/Zend/Dom +%{_datadir}/php/Zend/Exception.php +%{_datadir}/php/Zend/File +%{_datadir}/php/Zend/Filter +%{_datadir}/php/Zend/Filter.php +%{_datadir}/php/Zend/Form +%{_datadir}/php/Zend/Form.php +%{_datadir}/php/Zend/Http +%{_datadir}/php/Zend/InfoCard +%{_datadir}/php/Zend/InfoCard.php +%{_datadir}/php/Zend/Json +%{_datadir}/php/Zend/Json.php +%{_datadir}/php/Zend/Layout +%{_datadir}/php/Zend/Layout.php +%{_datadir}/php/Zend/Loader +%{_datadir}/php/Zend/Loader.php +%{_datadir}/php/Zend/Locale +%{_datadir}/php/Zend/Locale.php +%{_datadir}/php/Zend/Log +%{_datadir}/php/Zend/Log.php +%{_datadir}/php/Zend/Mail +%{_datadir}/php/Zend/Mail.php +%{_datadir}/php/Zend/Measure +%{_datadir}/php/Zend/Memory +%{_datadir}/php/Zend/Memory.php +%{_datadir}/php/Zend/Mime +%{_datadir}/php/Zend/Mime.php +%{_datadir}/php/Zend/Navigation +%{_datadir}/php/Zend/Navigation.php +%{_datadir}/php/Zend/OpenId +%{_datadir}/php/Zend/OpenId.php +%{_datadir}/php/Zend/Paginator +%{_datadir}/php/Zend/Paginator.php +%{_datadir}/php/Zend/ProgressBar +%{_datadir}/php/Zend/ProgressBar.php +%{_datadir}/php/Zend/Reflection +%{_datadir}/php/Zend/Registry.php +%{_datadir}/php/Zend/Rest +%{_datadir}/php/Zend/Server +%{_datadir}/php/Zend/Service %exclude %{_datadir}/php/Zend/Service/Akismet.php %exclude %{_datadir}/php/Zend/Service/Amazon.php %exclude %{_datadir}/php/Zend/Service/Amazon @@ -402,10 +480,27 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Service/Technorati %exclude %{_datadir}/php/Zend/Service/Yahoo.php %exclude %{_datadir}/php/Zend/Service/Yahoo +%{_datadir}/php/Zend/Session +%{_datadir}/php/Zend/Session.php +%{_datadir}/php/Zend/Tag +%{_datadir}/php/Zend/Test +%{_datadir}/php/Zend/Text +%{_datadir}/php/Zend/TimeSync +%{_datadir}/php/Zend/TimeSync.php +%{_datadir}/php/Zend/Tool +%{_datadir}/php/Zend/Translate +%{_datadir}/php/Zend/Translate.php +%{_datadir}/php/Zend/Uri +%{_datadir}/php/Zend/Uri.php +%{_datadir}/php/Zend/Validate +%{_datadir}/php/Zend/Validate.php +%{_datadir}/php/Zend/Version.php +%{_datadir}/php/Zend/View +%{_datadir}/php/Zend/View.php +%{_datadir}/php/Zend/Wildfire +%{_datadir}/php/Zend/XmlRpc +%{_datadir}/php/Zend/externals %exclude %{_datadir}/php/Zend/externals/dojo -%{_bindir}/zf - -%doc LICENSE.txt INSTALL.txt README.txt %files demos %defattr(-,root,root,-) @@ -422,7 +517,7 @@ symlinks -c . > /dev/null %{_datadir}/php/ZendX # php-interbase not available for Fedora %exclude %{_datadir}/php/ZendX/Db -%doc LICENSE.txt extras/documentation/api/extras/* +%doc LICENSE.txt extras/documentation/* %files Auth-Adapter-Ldap %defattr(-,root,root,-) @@ -532,8 +627,23 @@ symlinks -c . > /dev/null %{_datadir}/php/Zend/Service/Yahoo %doc LICENSE.txt +%files Soap +%defattr(-,root,root,-) +%{_datadir}/php/Zend/Soap +%doc LICENSE.txt + %changelog +* Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 +- update to 1.8.4 patch 1 (it's about time!) +- Requires php 5.1.4 -> 5.2.4 +- list all files explicitly for easier future updates +- incubator no more (Zend_Tool stable now) +- Request now part of Controller +- new components: Application, CodeGenerator, Crypt, Navigation, Reflection, + Tag +- Soap and Services require php-soap now + * Tue Mar 17 2009 Alexander Kahl - 1.7.7-2 - bump to catch up with with f10 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 17 Mar 2009 13:44:22 -0000 1.7 +++ sources 17 Jul 2009 10:00:09 -0000 1.8 @@ -1 +1 @@ -495542f4ec9f8c0dbf8e52e6077fe048 ZendFramework-1.7.7.tar.gz +d7374bf9b1741e2f925e8d2443475f9d ZendFramework-1.8.4PL1.tar.gz From than at fedoraproject.org Fri Jul 17 10:04:27 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 17 Jul 2009 10:04:27 +0000 (UTC) Subject: rpms/kdemultimedia/devel kdemultimedia.spec,1.150,1.151 Message-ID: <20090717100427.BACE711C00CF@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdemultimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21053 Modified Files: kdemultimedia.spec Log Message: disable xine for rhel Index: kdemultimedia.spec =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/kdemultimedia.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- kdemultimedia.spec 10 Jul 2009 22:10:48 -0000 1.150 +++ kdemultimedia.spec 17 Jul 2009 10:04:27 -0000 1.151 @@ -32,7 +32,9 @@ BuildRequires: libvorbis-devel # Almost everything is commented out, it basically does nothing. # BuildRequires: pulseaudio-libs-devel BuildRequires: taglib-devel +%if 0%{?rhel} == 0 BuildRequires: xine-lib-devel libxcb-devel +%endif Requires: %{name}-libs = %{?epoch:%{epoch}:}%{version}-%{release} Requires: kdelibs4 >= %{version} From mnowak at fedoraproject.org Fri Jul 17 10:19:51 2009 From: mnowak at fedoraproject.org (Michal Nowak) Date: Fri, 17 Jul 2009 10:19:51 +0000 (UTC) Subject: rpms/libev/devel import.log,1.7,1.8 libev.spec,1.8,1.9 Message-ID: <20090717101952.111D911C00CF@cvs1.fedora.phx.redhat.com> Author: mnowak Update of /cvs/pkgs/rpms/libev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26747/devel Modified Files: import.log libev.spec Log Message: 3.70 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/import.log,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- import.log 29 Jun 2009 13:43:53 -0000 1.7 +++ import.log 17 Jul 2009 10:19:20 -0000 1.8 @@ -5,3 +5,4 @@ libev-3_52-1_fc10:HEAD:libev-3.52-1.fc10 libev-3_53-1_fc11:HEAD:libev-3.53-1.fc11.src.rpm:1237457716 libev-3_6-1_fc11:HEAD:libev-3.6-1.fc11.src.rpm:1241077041 libev-3_60-1_fc11:HEAD:libev-3.60-1.fc11.src.rpm:1246282750 +libev-3_70-1_fc11:HEAD:libev-3.70-1.fc11.src.rpm:1247825976 Index: libev.spec =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/libev.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libev.spec 29 Jun 2009 13:43:53 -0000 1.8 +++ libev.spec 17 Jul 2009 10:19:20 -0000 1.9 @@ -1,7 +1,7 @@ %define version_upstream 3.6 Name: libev -Version: 3.60 +Version: 3.70 Release: 1%{?dist} Summary: High-performance event loop/event model with lots of features @@ -72,7 +72,8 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes LICENSE README -%{_libdir}/%{name}.so.* +%{_libdir}/%{name}.so.3 +%{_libdir}/%{name}.so.3.0.0 %{_mandir}/man?/* @@ -84,6 +85,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Michal Nowak - 3.70-1 +- v3.7 +- list libev soname explicitly + * Mon Jun 29 2009 Michal Nowak - 3.60-1 - previous version was called "3.6" but this is broken update path wrt version "3.53" -- thus bumping to "3.60" From nickc at fedoraproject.org Fri Jul 17 10:57:39 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Fri, 17 Jul 2009 10:57:39 +0000 (UTC) Subject: rpms/binutils/F-11 binutils-2.19.51.0.2-orphan-section-placement.patch, NONE, 1.1 binutils.spec, 1.160, 1.161 Message-ID: <20090717105739.3457E11C00CF@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5167 Modified Files: binutils.spec Added Files: binutils-2.19.51.0.2-orphan-section-placement.patch Log Message: Import orphan section placement patch from mainline. (BZ 510384). binutils-2.19.51.0.2-orphan-section-placement.patch: ldlang.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) --- NEW FILE binutils-2.19.51.0.2-orphan-section-placement.patch --- --- ../binutils-2.19.51.0.2.orig/ld/ldlang.c 2009-07-17 12:43:11.000000000 +0100 +++ ld/ldlang.c 2009-07-17 12:50:39.000000000 +0100 @@ -1533,10 +1533,13 @@ output_prev_sec_find (lang_output_sectio idea is to skip over anything that might be inside a SECTIONS {} statement in a script, before we find another output section statement. Assignments to "dot" before an output section statement - are assumed to belong to it. An exception to this rule is made for - the first assignment to dot, otherwise we might put an orphan - before . = . + SIZEOF_HEADERS or similar assignments that set the - initial address. */ + are assumed to belong to it, except in two cases; The first + assignment to dot, and assignments before non-alloc sections. + Otherwise we might put an orphan before . = . + SIZEOF_HEADERS or + similar assignments that set the initial address, or we might + insert non-alloc note sections among assignments setting end of + image symbols. */ + static lang_statement_union_type ** insert_os_after (lang_output_section_statement_type *after) @@ -1580,7 +1583,12 @@ insert_os_after (lang_output_section_sta continue; case lang_output_section_statement_enum: if (assign != NULL) - where = assign; + { + asection *s = (*where)->output_section_statement.bfd_section; + + if (s == NULL || (s->flags & SEC_ALLOC) != 0) + where = assign; + } break; case lang_input_statement_enum: case lang_address_statement_enum: Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/binutils.spec,v retrieving revision 1.160 retrieving revision 1.161 diff -u -p -r1.160 -r1.161 --- binutils.spec 8 Apr 2009 16:13:33 -0000 1.160 +++ binutils.spec 17 Jul 2009 10:57:38 -0000 1.161 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.2 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -32,6 +32,7 @@ Patch06: binutils-2.19.50.0.1-set-long-l Patch07: binutils-2.19.50.0.1-build-id.patch Patch08: binutils-2.19.51.0.2-ifunc.patch Patch09: binutils-2.19.51.0.2-IBM.patch +Patch10: binutils-2.19.51.0.2-orphan-section-placement.patch %if 0%{?_with_debug:1} # Define this if you want to skip the strip step and preserve debug info. @@ -104,6 +105,7 @@ to consider using libelf instead of BFD. %patch07 -p0 -b .build-id~ %patch08 -p1 -b .ifunc~ %patch09 -p0 -b .IBM~ +%patch10 -p0 -b .oprphan-section-placement~ # We cannot run autotools as there is an exact requirement of autoconf-2.59. @@ -347,6 +349,9 @@ fi %endif # %{isnative} %changelog +* Fri Jul 17 2009 Nick Clifton 2.19.51.0.2-18 +- Import orphan section placement patch from mainline. (BZ 510384). + * Tue Mar 17 2009 Nick Clifton 2.19.51.0.2-17 - Add glibc-static to BuildRequires when running the testsuite. From than at fedoraproject.org Fri Jul 17 11:11:15 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 17 Jul 2009 11:11:15 +0000 (UTC) Subject: rpms/kdegames/devel kdegames-4.2.96-trademarks.patch, NONE, 1.1 kdegames.spec, 1.136, 1.137 kdegames-4.2.95-trademarks.patch, 1.1, NONE Message-ID: <20090717111115.705DD11C00CF@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9184 Modified Files: kdegames.spec Added Files: kdegames-4.2.96-trademarks.patch Removed Files: kdegames-4.2.95-trademarks.patch Log Message: adapt the patch kdegames-4.2.96-trademarks.patch: README | 12 +++++++-- doc/kbattleship/index.docbook | 37 +++++++++++++++-------------- doc/ktron/index.docbook | 11 ++++---- kbattleship/src/kbattleship.desktop | 14 +++-------- kbattleship/src/kbattleship.protocol | 44 +++++++++++++++++------------------ kbattleship/src/main.cpp | 4 +-- ktron/ktron.desktop | 44 +++++------------------------------ ktron/main.cpp | 5 ++- ktron/player.cpp | 2 - 9 files changed, 74 insertions(+), 99 deletions(-) --- NEW FILE kdegames-4.2.96-trademarks.patch --- diff -up kdegames-4.2.96/doc/kbattleship/index.docbook.trademarks kdegames-4.2.96/doc/kbattleship/index.docbook --- kdegames-4.2.96/doc/kbattleship/index.docbook.trademarks 2009-02-26 10:11:22.000000000 +0100 +++ kdegames-4.2.96/doc/kbattleship/index.docbook 2009-07-17 12:59:34.000000000 +0200 @@ -1,6 +1,6 @@ + KSinkShips"> @@ -8,7 +8,7 @@ -The &kbattleship; Handbook +The &kappname; Handbook @@ -57,16 +57,17 @@ -&kbattleship; is a network-enabled implementation of the famous Battle Ship game for &kde;. +&kappname; is a network-enabled implementation of the famous ship sinking game for &kde;. KDE kdegames -kbattleship +ksinkships game -battleship -battle +sinkships +sink +ships @@ -76,7 +77,7 @@ Gametype:Strategy, Board Number of possible players:Two -&kbattleship; is a Battle Ship game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others +&kappname; is a ship sinking game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. @@ -85,14 +86,14 @@ ships in turns without knowing where the How to Play Objective:Sink all of the opponent???s ships before the opponent sink all the ships of your own. -If you want to play &kbattleship;, you will need two players, either play +If you want to play &kappname;, you will need two players, either play against the computer or in a network against another player. To play against your computer, first select the difficulty level on the right of the status bar, and then select Single player on the welcome screen, or directly on the Game menu. To start a network game, one player has to host the game by selecting Host network game on the welcome screen, or choosing Game Host Game.... A dialog box opens which asks for a Nickname: and Port:. Normally, -&kbattleship; will suggest your full name, but you can enter any string +&kappname; will suggest your full name, but you can enter any string you want. The predefined port should be ok. However, if you encounter problems, you can choose any other free port above 1024. @@ -186,10 +187,10 @@ The first player to destroy all their op Multiplayer support -&kbattleship; can be played online on any GGZ Gaming Zone site. You can +&kappname; can be played online on any GGZ Gaming Zone site. You can find other players there, and compete against them. Just enter one -of the available Battleship rooms with any GGZ core client, such as -kggz, and &kbattleship; will be offered to you as your favourite +of the available rooms with any GGZ core client, such as +kggz, and &kappname; will be offered to you as your favourite game client. If a GGZ core client is installed, you can try out GGZ by visiting the community site. @@ -197,7 +198,7 @@ out GGZ by visiting the Credits and Licenses -&kbattleship; Copyright 2000-2007 +&kappname; Copyright 2000-2007 Authors diff -up kdegames-4.2.96/doc/ktron/index.docbook.trademarks kdegames-4.2.96/doc/ktron/index.docbook --- kdegames-4.2.96/doc/ktron/index.docbook.trademarks 2009-02-26 10:11:14.000000000 +0100 +++ kdegames-4.2.96/doc/ktron/index.docbook 2009-07-17 12:59:34.000000000 +0200 @@ -1,6 +1,6 @@ + KSnakeDuel"> @@ -61,7 +61,7 @@ -&kappname; is a simple Tron clone for &kde;, which you can +&kappname; is a simple snake duel game for &kde;, which you can play alone or against a friend. @@ -69,11 +69,12 @@ play alone or against a friend. KDE kdegames -KTron +KSnakeDuel game -tron +snakeduel KSnake snake +duel @@ -81,7 +82,7 @@ play alone or against a friend. Introduction -&kappname; is a simple Tron-Clone for the +&kappname; is a simple snake duel game for the K Desktop Environment. You can play &kappname; against the computer or a friend. The aim of the game is to live longer than your opponent. To do that, diff -up kdegames-4.2.96/kbattleship/src/kbattleship.desktop.trademarks kdegames-4.2.96/kbattleship/src/kbattleship.desktop --- kdegames-4.2.96/kbattleship/src/kbattleship.desktop.trademarks 2009-06-17 22:05:45.000000000 +0200 +++ kdegames-4.2.96/kbattleship/src/kbattleship.desktop 2009-07-17 12:59:34.000000000 +0200 @@ -1,6 +1,5 @@ [Desktop Entry] -Name=KBattleship -Name[af]=Kbattleship +Name=KSinkShips Name[be]=???????????? ?????? Name[bn]=??????-?????????????????????????????? Name[cs]=Lod?? @@ -14,17 +13,16 @@ Name[pa]=??????-???????????? ??????????? Name[ro]=B??t??lie naval?? Name[sr]=????????????????????????? Name[sr at latin]=K???podmornice -Name[sv]=Kbattleship Name[ta]=?????????????????????????????????????????? Name[tg]=K?????????? ?????????????? Name[uk]=???????????????? ?????? -Name[x-test]=xxKBattleshipxx -Name[zh_TW]=KBattleship ?????? +Name[x-test]=xxKSinkShipsxx +Name[zh_TW]=KSinkShips ?????? Exec=kbattleship -caption "%c" Icon=kbattleship Type=Application X-DocPath=kbattleship/index.html -GenericName=Battleship Game +GenericName=Ship Sinking Game GenericName[be]=???????????? ?? ???????????? ?????? GenericName[bn]=?????????????????????????????? ???????????? GenericName[ca]=Joc d'enfonsar la flota @@ -32,7 +30,6 @@ GenericName[cs]=Bitva lod?? GenericName[cy]=G??m Longau Rhyfel GenericName[da]=S??nke slagskibe-spil GenericName[de]=Schiffe versenken -GenericName[el]=???????????????? Battleship GenericName[eo]=Batal??ipa ludo GenericName[es]=Juego de la batalla de naves GenericName[et]=Laevade pommitamise m??ng @@ -40,7 +37,6 @@ GenericName[eu]=Ontzi-guda jokoa GenericName[fa]=???????? ?????? ??????????????? GenericName[fi]=Meritaistelupeli GenericName[fr]=Jeu de bataille navale -GenericName[ga]=Cluiche cos??il le "Battleship" GenericName[gl]=Xogo de batalla naval GenericName[he]=???????? ???????????? GenericName[hne]=????????????????????? ????????? @@ -73,7 +69,7 @@ GenericName[sv]=S??nka fartyg spel GenericName[ta]=???????????????????????? ?????????????????????????????? GenericName[tr]=Amiral Batt?? Oyunu GenericName[uk]=?????? ?? ???????????????? ?????? -GenericName[x-test]=xxBattleship Gamexx +GenericName[x-test]=xxShip Sinking Gamexx GenericName[zh_CN]=?????????????????? GenericName[zh_TW]=???????????? Terminal=false diff -up kdegames-4.2.96/kbattleship/src/kbattleship.protocol.trademarks kdegames-4.2.96/kbattleship/src/kbattleship.protocol --- kdegames-4.2.96/kbattleship/src/kbattleship.protocol.trademarks 2009-07-08 16:46:28.000000000 +0200 +++ kdegames-4.2.96/kbattleship/src/kbattleship.protocol 2009-07-17 13:05:13.000000000 +0200 @@ -5,31 +5,31 @@ input=none output=none Icon=kbattleship -Description=A protocol for the game KBattleship -Description[ca]=Un protocol pel joc KBattleship -Description[da]=En protokol for spillet KBattleship -Description[de]=Ein Protokoll f??r das KBattleship-Spiel. -Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KBattleship -Description[es]=Un protocolo para el juego KBattleship -Description[et]=KBattleshipi protokoll -Description[eu]=KBattleship jokoaren protokoloa -Description[fr]=Un protocole pour le jeu KBattleship -Description[ga]=Pr??tacal le haghaidh an chluiche KBattleship -Description[gl]=Un protocolo para o xogo KBattleship -Description[it]=Un protocollo per KBattleship -Description[lv]=Protokols sp??lei KBattleship -Description[nds]=En Protokoll f??r dat Speel "KBattleship" -Description[nn]=Protokoll for KBattleship -Description[pt]=Um protocolo para o jogo KBattleship -Description[pt_BR]=Um protocolo para o jogo KBattleship -Description[ru]=???????????????? ?????? ???????? KBattleship +Description=A protocol for the game KSinkShips +Description[ca]=Un protocol pel joc KSinkShips +Description[da]=En protokol for spillet KSinkShips +Description[de]=Ein Protokoll f??r das KSinkShips-Spiel. +Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KSinkShips +Description[es]=Un protocolo para el juego KSinkShips +Description[et]=KSinkShipsi protokoll +Description[eu]=KSinkShips jokoaren protokoloa +Description[fr]=Un protocole pour le jeu KSinkShips +Description[ga]=Pr??tacal le haghaidh an chluiche KSinkShips +Description[gl]=Un protocolo para o xogo KSinkShips +Description[it]=Un protocollo per KSinkShips +Description[lv]=Protokols sp??lei KSinkShips +Description[nds]=En Protokoll f??r dat Speel "KSinkShips" +Description[nn]=Protokoll for KSinkShips +Description[pt]=Um protocolo para o jogo KSinkShips +Description[pt_BR]=Um protocolo para o jogo KSinkShips +Description[ru]=???????????????? ?????? ???????? KSinkShips Description[sr]=???????????????? ???? ????????????????????????? Description[sr at latin]=Protokol za K???podmornice Description[sv]=Ett protokoll f??r spelet S??nka fartyg -Description[uk]=???????????????? ?????? ?????? KBattleship -Description[x-test]=xxA protocol for the game KBattleshipxx -Description[zh_CN]=KBattleship ?????????????????? -Description[zh_TW]=KBattleship ????????????????????? +Description[uk]=???????????????? ?????? ?????? KSinkShips +Description[x-test]=xxA protocol for the game KSinkShipsxx +Description[zh_CN]=KSinkShips ?????????????????? +Description[zh_TW]=KSinkShips ????????????????????? #exec=kbattleship %u helper=true diff -up kdegames-4.2.96/kbattleship/src/main.cpp.trademarks kdegames-4.2.96/kbattleship/src/main.cpp --- kdegames-4.2.96/kbattleship/src/main.cpp.trademarks 2009-03-18 10:57:42.000000000 +0100 +++ kdegames-4.2.96/kbattleship/src/main.cpp 2009-07-17 12:59:34.000000000 +0200 @@ -21,7 +21,7 @@ int main(int argc, char** argv) { - KAboutData aboutData("kbattleship", 0, ki18n("KBattleship"), "2.0", + KAboutData aboutData("kbattleship", 0, ki18n("KSinkShips"), "2.0", ki18n("The KDE Battleship clone"), KAboutData::License_GPL, ki18n("(c) 2000-2005 Nikolas Zimmermann, Daniel Molkentin\n" "(c) 2007 Paolo Capriotti"), KLocalizedString(), "http://games.kde.org/kbattleship" ); @@ -48,7 +48,7 @@ int main(int argc, char** argv) KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; - options.add("!+[URL]", ki18n("URL of a KBattleship game server to connect to after startup")); + options.add("!+[URL]", ki18n("URL of a KSinkShips game server to connect to after startup")); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; diff -up kdegames-4.2.96/ktron/ktron.desktop.trademarks kdegames-4.2.96/ktron/ktron.desktop --- kdegames-4.2.96/ktron/ktron.desktop.trademarks 2009-07-08 16:46:20.000000000 +0200 +++ kdegames-4.2.96/ktron/ktron.desktop 2009-07-17 13:08:06.000000000 +0200 @@ -3,44 +3,14 @@ Type=Application Exec=ktron -caption "%c" %i Icon=ktron DocPath=ktron/index.html -GenericName=Tron-like Game -GenericName[ca]=Joc similar al Tron -GenericName[da]=Tron-lignende spil -GenericName[de]=???Tron???-Spiel -GenericName[el]=???????????????? ???????????????? ???? ???? Tron -GenericName[es]=Juego similar a Tron -GenericName[et]=Troni moodi m??ng -GenericName[eu]=Tron-en antzeko jokoa -GenericName[fr]=Jeu dans le style de Tron -GenericName[ga]=Cluiche Cos??il le Tron -GenericName[it]=Un gioco simile a Tron -GenericName[ja]=Tron ????????????????????? -GenericName[km]=??????????????????????????????????????? Tron -GenericName[lv]=Tron l??dz??ga sp??le -GenericName[nds]=Tron-liek Speel -GenericName[nl]=Tron-achtig spel -GenericName[nn]=Tron-liknande spel -GenericName[pt]=Jogo Semelhante ao Tron -GenericName[pt_BR]=Jogo semelhante ao Tron -GenericName[ru]=???????? ?? ?????????? ???????????? -GenericName[sr]=???????? ?????????? ???? ???????? -GenericName[sr at latin]=Igra nalik na tron -GenericName[sv]=Tron-liknande spel -GenericName[uk]=??????, ?????????? ???? Tron -GenericName[x-test]=xxTron-like Gamexx -GenericName[zh_CN]=?????? Tron ????????? -GenericName[zh_TW]=?????? Tron ?????? +GenericName=Snake Duel Game +GenericName[de]=Schlangenduell-Spiel +GenericName[fr]=Jeu de duel de serpents +GenericName[it]=Gioco di duello di serpenti +GenericName[x-test]=xxSnake Duel Gamexx Terminal=false -Name=KTron -Name[af]=Ktron -Name[bn]=??????-???????????? -Name[ru]=???????? -Name[sr]=????????????? -Name[sr at latin]=K???tron -Name[sv]=Ktron -Name[ta]=K?????????????????? -Name[tg]=K???????? -Name[x-test]=xxKTronxx +Name=KSnakeDuel +Name[x-test]=xxKSnakeDuelxx X-KDE-StartupNotify=true X-DCOP-ServiceType=Multi Categories=Qt;KDE;Game;ArcadeGame; diff -up kdegames-4.2.96/ktron/main.cpp.trademarks kdegames-4.2.96/ktron/main.cpp --- kdegames-4.2.96/ktron/main.cpp.trademarks 2009-02-26 10:11:10.000000000 +0100 +++ kdegames-4.2.96/ktron/main.cpp 2009-07-17 12:59:34.000000000 +0200 @@ -41,7 +41,7 @@ static KLocalizedString notice = ki18n(" int main(int argc, char* argv[]) { - KAboutData aboutData( "ktron", 0, ki18n("KTron"), + KAboutData aboutData( "ktron", 0, ki18n("KSnakeDuel"), KTRON_VERSION, description, KAboutData::License_GPL, notice); aboutData.addAuthor(ki18n("Matthias Kiefer"), ki18n("Original author"), "matthias.kiefer at gmx.de"); aboutData.addAuthor(ki18n("Benjamin Meyer"), ki18n("Various improvements"), "ben+ktron at meyerhome.net"); @@ -50,7 +50,8 @@ int main(int argc, char* argv[]) KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineOptions options; - options.add("ktron", ki18n("Start in KTron mode")); + // This is the default anyway, why does this need an option? -- Kevin Kofler + // options.add("ktron", ki18n("Start in KTron mode")); options.add("snake", ki18n("Start in KSnake mode")); KCmdLineArgs::addCmdLineOptions(options); diff -up kdegames-4.2.96/ktron/player.cpp.trademarks kdegames-4.2.96/ktron/player.cpp --- kdegames-4.2.96/ktron/player.cpp.trademarks 2009-04-05 21:59:49.000000000 +0200 +++ kdegames-4.2.96/ktron/player.cpp 2009-07-17 12:59:34.000000000 +0200 @@ -92,7 +92,7 @@ QString Player::getName() { if (isComputer()) { - return i18n("KTron"); + return i18n("KSnakeDuel"); } else { diff -up kdegames-4.2.96/README.trademarks kdegames-4.2.96/README --- kdegames-4.2.96/README.trademarks 2009-01-16 16:09:32.000000000 +0100 +++ kdegames-4.2.96/README 2009-07-17 12:59:34.000000000 +0200 @@ -25,9 +25,6 @@ This is a compilation of more than 20 va Play backgammon against a local human player, via a game server or against GNU Backgammon (not included) -* kbattleship - Sink battleship of your opponents, with built-in game server. - * kblackbox Find the balls hidden in the black box by shooting laser beams! @@ -70,6 +67,15 @@ This is a compilation of more than 20 va * kshisen Patience game where you take away all pieces. +* ksinkships + Sink ships of your opponents, with built-in game server. + +* ksnake + Don't bite yourself, eat apples! + +* ksnakeduel + Like ksnake, but without fruits. + * kspaceduel Two player game with shooting spaceships flying around a sun. Index: kdegames.spec =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- kdegames.spec 10 Jul 2009 18:58:33 -0000 1.136 +++ kdegames.spec 17 Jul 2009 11:11:13 -0000 1.137 @@ -8,7 +8,7 @@ License: GPLv2 URL: http://www.kde.org/ Group: Amusements/Games Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdegames-%{version}.tar.bz2 -Patch0: kdegames-4.2.95-trademarks.patch +Patch0: kdegames-4.2.96-trademarks.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- kdegames-4.2.95-trademarks.patch DELETED --- From pkgdb at fedoraproject.org Fri Jul 17 11:21:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 11:21:37 +0000 Subject: [pkgdb] wine: ajitengg23 has requested watchcommits Message-ID: <20090717112137.E144510F89F@bastion2.fedora.phx.redhat.com> ajitengg23 has requested the watchcommits acl on wine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wine From pkgdb at fedoraproject.org Fri Jul 17 11:22:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 11:22:24 +0000 Subject: [pkgdb] wine: ajitengg23 has given up watchcommits Message-ID: <20090717112224.2AE4C10F8A5@bastion2.fedora.phx.redhat.com> ajitengg23 has given up the watchcommits acl on wine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wine From pkgdb at fedoraproject.org Fri Jul 17 11:23:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 11:23:26 +0000 Subject: [pkgdb] wine: ajitengg23 has requested watchcommits Message-ID: <20090717112326.4555610F8AA@bastion2.fedora.phx.redhat.com> ajitengg23 has requested the watchcommits acl on wine (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/wine From akahl at fedoraproject.org Fri Jul 17 11:25:03 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Fri, 17 Jul 2009 11:25:03 +0000 (UTC) Subject: rpms/php-ZendFramework/F-11 php-ZendFramework.spec, 1.14, 1.15 sources, 1.7, 1.8 Message-ID: <20090717112503.65D4C11C00CF@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13841 Modified Files: php-ZendFramework.spec sources Log Message: * update to 1.8.4PL1 Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-11/php-ZendFramework.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- php-ZendFramework.spec 17 Mar 2009 17:07:47 -0000 1.14 +++ php-ZendFramework.spec 17 Jul 2009 11:25:02 -0000 1.15 @@ -1,19 +1,20 @@ %define php_name ZendFramework +%define posttag PL1 Summary: Leading open-source PHP framework Name: php-ZendFramework -Version: 1.7.7 -Release: 2%{?dist} +Version: 1.8.4 +Release: 1.%{posttag}%{?dist} License: BSD Group: Development/Libraries -Source0: http://framework.zend.com/releases/%{php_name}-%{version}/%{php_name}-%{version}.tar.gz +Source0: http://framework.zend.com/releases/%{php_name}-%{version}%{?posttag}/%{php_name}-%{version}%{?posttag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://framework.zend.com/ BuildArch: noarch -Requires: php >= 5.1.4 +Requires: php >= 5.2.4 Requires: php-bcmath Requires: php-ctype Requires: php-curl @@ -270,25 +271,54 @@ types. Zend_Search_Lucene is a port of t Summary: Web service APIs for a number of providers Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: php-mcrypt +Requires: php-soap %description Services This package contains web service client APIs for the following services: - Akismet -- Amazon +- Amazon (including Ec2, S3) - Audioscrobbler - del.icio.us - Flickr - Nirvanix +- ReCaptcha - Simpy - SlideShare - StrikeIron - Technorati +- Twitter - Yahoo! +%package Soap +Summary: SOAP web services server part helper +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: php-soap + +%description Soap +Zend_Soap_Server class is intended to simplify Web Services server part +development for PHP programmers. + +It may be used in WSDL or non-WSDL mode, and using classes or functions to +define Web Service API. + +When Zend_Soap_Server component works in the WSDL mode, it uses already +prepared WSDL document to define server object behavior and transport layer +options. + +WSDL document may be auto-generated with functionality provided by +Zend_Soap_AutoDiscovery component or should be constructed manually using +Zend_Soap_Wsdl class or any other XML generating tool. + +If the non-WSDL mode is used, then all protocol options have to be set using +options mechanism. + + %prep -%setup -qn %{php_name}-%{version} +%setup -qn %{php_name}-%{version}%{?posttag} %build find . -type f -perm /111 \ @@ -315,19 +345,12 @@ cd extras %{__cp} -pr tests $RPM_BUILD_ROOT%{_datadir}/php/ZendX cd .. - -# Zend_Tool, still in development -cd incubator -%{__cp} -pr library/Zend/Tool $RPM_BUILD_ROOT%{_datadir}/php/Zend -%{__cp} -pr tests/* $RPM_BUILD_ROOT%{_datadir}/php/Zend/tests %{__cp} -pr bin/zf.{php,sh} \ $RPM_BUILD_ROOT%{_datadir}/php/Zend %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} %{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ $RPM_BUILD_ROOT%{_bindir}/zf symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null -cd .. - # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -350,13 +373,37 @@ symlinks -c . > /dev/null %files %defattr(-,root,root,-) -%{_datadir}/php/Zend -%exclude %{_datadir}/php/Zend/demos -%exclude %{_datadir}/php/Zend/tests +%doc LICENSE.txt INSTALL.txt README.txt +%{_bindir}/zf +# we list all files explicitly to find out what's new in future releases more +# easily +%dir %{_datadir}/php/Zend +%{_datadir}/php/Zend/zf.php +%{_datadir}/php/Zend/zf.sh +%{_datadir}/php/Zend/Acl +%{_datadir}/php/Zend/Acl.php +%{_datadir}/php/Zend/Amf +%{_datadir}/php/Zend/Application +%{_datadir}/php/Zend/Application.php +%{_datadir}/php/Zend/Auth %exclude %{_datadir}/php/Zend/Auth/Adapter/Ldap.php +%{_datadir}/php/Zend/Auth.php +%{_datadir}/php/Zend/Cache %exclude %{_datadir}/php/Zend/Cache/Backend/Apc.php %exclude %{_datadir}/php/Zend/Cache/Backend/Memcached.php -%exclude %{_datadir}/php/Zend/Captcha +%{_datadir}/php/Zend/Cache.php +%{_datadir}/php/Zend/CodeGenerator +%{_datadir}/php/Zend/Config +%{_datadir}/php/Zend/Config.php +%{_datadir}/php/Zend/Console +%{_datadir}/php/Zend/Controller +%{_datadir}/php/Zend/Crypt +%{_datadir}/php/Zend/Crypt.php +%{_datadir}/php/Zend/Currency +%{_datadir}/php/Zend/Currency.php +%{_datadir}/php/Zend/Date +%{_datadir}/php/Zend/Date.php +%{_datadir}/php/Zend/Db %exclude %{_datadir}/php/Zend/Db/Adapter/Db2.php %exclude %{_datadir}/php/Zend/Db/Adapter/Db2 %exclude %{_datadir}/php/Zend/Db/Statement/Db2.php @@ -369,17 +416,48 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Db/Adapter/Oracle %exclude %{_datadir}/php/Zend/Db/Statement/Oracle.php %exclude %{_datadir}/php/Zend/Db/Statement/Oracle -%exclude %{_datadir}/php/Zend/Dojo.php -%exclude %{_datadir}/php/Zend/Dojo -%exclude %{_datadir}/php/Zend/Feed.php -%exclude %{_datadir}/php/Zend/Feed -%exclude %{_datadir}/php/Zend/Gdata.php -%exclude %{_datadir}/php/Zend/Gdata -%exclude %{_datadir}/php/Zend/Ldap.php -%exclude %{_datadir}/php/Zend/Ldap -%exclude %{_datadir}/php/Zend/Pdf.php -%exclude %{_datadir}/php/Zend/Pdf -%exclude %{_datadir}/php/Zend/Search +%{_datadir}/php/Zend/Db.php +%{_datadir}/php/Zend/Debug.php +%{_datadir}/php/Zend/Dom +%{_datadir}/php/Zend/Exception.php +%{_datadir}/php/Zend/File +%{_datadir}/php/Zend/Filter +%{_datadir}/php/Zend/Filter.php +%{_datadir}/php/Zend/Form +%{_datadir}/php/Zend/Form.php +%{_datadir}/php/Zend/Http +%{_datadir}/php/Zend/InfoCard +%{_datadir}/php/Zend/InfoCard.php +%{_datadir}/php/Zend/Json +%{_datadir}/php/Zend/Json.php +%{_datadir}/php/Zend/Layout +%{_datadir}/php/Zend/Layout.php +%{_datadir}/php/Zend/Loader +%{_datadir}/php/Zend/Loader.php +%{_datadir}/php/Zend/Locale +%{_datadir}/php/Zend/Locale.php +%{_datadir}/php/Zend/Log +%{_datadir}/php/Zend/Log.php +%{_datadir}/php/Zend/Mail +%{_datadir}/php/Zend/Mail.php +%{_datadir}/php/Zend/Measure +%{_datadir}/php/Zend/Memory +%{_datadir}/php/Zend/Memory.php +%{_datadir}/php/Zend/Mime +%{_datadir}/php/Zend/Mime.php +%{_datadir}/php/Zend/Navigation +%{_datadir}/php/Zend/Navigation.php +%{_datadir}/php/Zend/OpenId +%{_datadir}/php/Zend/OpenId.php +%{_datadir}/php/Zend/Paginator +%{_datadir}/php/Zend/Paginator.php +%{_datadir}/php/Zend/ProgressBar +%{_datadir}/php/Zend/ProgressBar.php +%{_datadir}/php/Zend/Reflection +%{_datadir}/php/Zend/Registry.php +%{_datadir}/php/Zend/Rest +%{_datadir}/php/Zend/Server +%{_datadir}/php/Zend/Service %exclude %{_datadir}/php/Zend/Service/Akismet.php %exclude %{_datadir}/php/Zend/Service/Amazon.php %exclude %{_datadir}/php/Zend/Service/Amazon @@ -402,10 +480,27 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Service/Technorati %exclude %{_datadir}/php/Zend/Service/Yahoo.php %exclude %{_datadir}/php/Zend/Service/Yahoo +%{_datadir}/php/Zend/Session +%{_datadir}/php/Zend/Session.php +%{_datadir}/php/Zend/Tag +%{_datadir}/php/Zend/Test +%{_datadir}/php/Zend/Text +%{_datadir}/php/Zend/TimeSync +%{_datadir}/php/Zend/TimeSync.php +%{_datadir}/php/Zend/Tool +%{_datadir}/php/Zend/Translate +%{_datadir}/php/Zend/Translate.php +%{_datadir}/php/Zend/Uri +%{_datadir}/php/Zend/Uri.php +%{_datadir}/php/Zend/Validate +%{_datadir}/php/Zend/Validate.php +%{_datadir}/php/Zend/Version.php +%{_datadir}/php/Zend/View +%{_datadir}/php/Zend/View.php +%{_datadir}/php/Zend/Wildfire +%{_datadir}/php/Zend/XmlRpc +%{_datadir}/php/Zend/externals %exclude %{_datadir}/php/Zend/externals/dojo -%{_bindir}/zf - -%doc LICENSE.txt INSTALL.txt README.txt %files demos %defattr(-,root,root,-) @@ -422,7 +517,7 @@ symlinks -c . > /dev/null %{_datadir}/php/ZendX # php-interbase not available for Fedora %exclude %{_datadir}/php/ZendX/Db -%doc LICENSE.txt extras/documentation/api/extras/* +%doc LICENSE.txt extras/documentation/* %files Auth-Adapter-Ldap %defattr(-,root,root,-) @@ -532,8 +627,23 @@ symlinks -c . > /dev/null %{_datadir}/php/Zend/Service/Yahoo %doc LICENSE.txt +%files Soap +%defattr(-,root,root,-) +%{_datadir}/php/Zend/Soap +%doc LICENSE.txt + %changelog +* Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 +- update to 1.8.4 patch 1 (it's about time!) +- Requires php 5.1.4 -> 5.2.4 +- list all files explicitly for easier future updates +- incubator no more (Zend_Tool stable now) +- Request now part of Controller +- new components: Application, CodeGenerator, Crypt, Navigation, Reflection, + Tag +- Soap and Services require php-soap now + * Tue Mar 17 2009 Alexander Kahl - 1.7.7-2 - bump to catch up with with f10 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 17 Mar 2009 13:44:22 -0000 1.7 +++ sources 17 Jul 2009 11:25:02 -0000 1.8 @@ -1 +1 @@ -495542f4ec9f8c0dbf8e52e6077fe048 ZendFramework-1.7.7.tar.gz +d7374bf9b1741e2f925e8d2443475f9d ZendFramework-1.8.4PL1.tar.gz From jakub at fedoraproject.org Fri Jul 17 11:27:00 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Fri, 17 Jul 2009 11:27:00 +0000 (UTC) Subject: rpms/gcc/devel .cvsignore, 1.276, 1.277 gcc.spec, 1.51, 1.52 sources, 1.279, 1.280 Message-ID: <20090717112700.AA04111C00CF@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14347 Modified Files: .cvsignore gcc.spec sources Log Message: 4.4.0-14 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.276 retrieving revision 1.277 diff -u -p -r1.276 -r1.277 --- .cvsignore 13 Jul 2009 09:09:47 -0000 1.276 +++ .cvsignore 17 Jul 2009 11:26:29 -0000 1.277 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090713.tar.bz2 +gcc-4.4.0-20090717.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gcc.spec 13 Jul 2009 09:09:47 -0000 1.51 +++ gcc.spec 17 Jul 2009 11:26:30 -0000 1.52 @@ -1,9 +1,9 @@ -%global DATE 20090713 -%global SVNREV 149555 +%global DATE 20090717 +%global SVNREV 149742 %global gcc_version 4.4.0 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 13 +%global gcc_release 14 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -1807,6 +1807,11 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Fri Jul 17 2009 Jakub Jelinek 4.4.0-14 +- update from gcc-4_4-branch + - PRs c++/40740, libstdc++/40691, middle-end/40747 + - fix ICE in gimplify_conversion (#511229, PR c++/40780) + * Mon Jul 13 2009 Jakub Jelinek 4.4.0-13 - update from gcc-4_4-branch - PRs c++/36628, c++/37206, c++/40502, c++/40684, c++/40689, fortran/40440, Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.279 retrieving revision 1.280 diff -u -p -r1.279 -r1.280 --- sources 13 Jul 2009 09:09:47 -0000 1.279 +++ sources 17 Jul 2009 11:26:30 -0000 1.280 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -f78cbd4fdb4a8bc81f6d83a8c1e7f5fd gcc-4.4.0-20090713.tar.bz2 +ff8cd10e00eb4805d0233c6cf60508d0 gcc-4.4.0-20090717.tar.bz2 From varekova at fedoraproject.org Fri Jul 17 11:31:46 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Fri, 17 Jul 2009 11:31:46 +0000 (UTC) Subject: rpms/man-pages/devel man-pages-3.21-major.patch, NONE, 1.1 man-pages.spec, 1.113, 1.114 Message-ID: <20090717113146.DC4FB11C00CF@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/man-pages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15930 Modified Files: man-pages.spec Added Files: man-pages-3.21-major.patch Log Message: - fix major.3 man page man-pages-3.21-major.patch: makedev.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE man-pages-3.21-major.patch --- diff -up man-pages-3.21/man3/makedev.3.pom man-pages-3.21/man3/makedev.3 --- man-pages-3.21/man3/makedev.3.pom 2009-04-15 18:05:43.000000000 +0200 +++ man-pages-3.21/man3/makedev.3 2009-07-17 13:28:05.000000000 +0200 @@ -26,8 +26,8 @@ makedev, major, minor \- manage a device number .SH SYNOPSIS .nf -.B #include _BSD_SOURCE -.B #define +.B #define _BSD_SOURCE +.B #include .BI "dev_t makedev(int " maj ", int " min ); Index: man-pages.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/man-pages.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- man-pages.spec 21 Apr 2009 08:00:27 -0000 1.113 +++ man-pages.spec 17 Jul 2009 11:31:46 -0000 1.114 @@ -4,7 +4,7 @@ Summary: Man (manual) pages from the Linux Documentation Project Name: man-pages Version: 3.21 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GPL+ and BSD and MIT and Copyright only and IEEE Group: Documentation URL: http://www.kernel.org/pub/linux/docs/manpages/ @@ -28,6 +28,7 @@ Patch49: man-pages-2.63-getent.patch Patch50: man-pages-2.63-iconv.patch Patch53: man-pages-2.78-stream.patch Patch54: man-pages-2.80-malloc_h.patch +Patch55: man-pages-3.21-major.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Autoreq: false @@ -54,6 +55,7 @@ rmdir man-pages-posix-%{posix_version}-% %patch50 -p1 %patch53 -p1 %patch54 -p1 +%patch55 -p1 ### And now remove those we are not going to use: @@ -124,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %lang(en) %{_mandir}/en/man* %changelog +* Fri Jul 17 2009 Ivana Varekova - 3.21-2 +- fix major.3 man page + * Tue Apr 21 2009 Ivana Varekova - 3.21-1 - update to 3.21 From pghmcfc at fedoraproject.org Fri Jul 17 11:32:36 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Fri, 17 Jul 2009 11:32:36 +0000 (UTC) Subject: rpms/libpng10/devel .cvsignore, 1.21, 1.22 libpng10.spec, 1.30, 1.31 sources, 1.21, 1.22 Message-ID: <20090717113236.1206511C00CF@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/libpng10/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16317 Modified Files: .cvsignore libpng10.spec sources Log Message: update to 1.0.47 (changes to unknown chunk handling and documentation) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libpng10/devel/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 18 Jun 2009 19:59:38 -0000 1.21 +++ .cvsignore 17 Jul 2009 11:32:35 -0000 1.22 @@ -1 +1 @@ -libpng-1.0.46.tar.bz2 +libpng-1.0.47.tar.bz2 Index: libpng10.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpng10/devel/libpng10.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libpng10.spec 18 Jun 2009 19:59:38 -0000 1.30 +++ libpng10.spec 17 Jul 2009 11:32:35 -0000 1.31 @@ -1,6 +1,6 @@ Summary: Old version of libpng, needed to run old binaries Name: libpng10 -Version: 1.0.46 +Version: 1.0.47 Release: 1%{?dist} License: zlib Group: System Environment/Libraries @@ -111,6 +111,9 @@ libpng10-devel. %{_libdir}/pkgconfig/libpng10.pc %changelog +* Fri Jul 17 2009 Paul Howarth 1.0.47-1 +- update to 1.0.47 (changes to unknown chunk handling and documentation) + * Thu Jun 18 2009 Paul Howarth 1.0.46-1 - garbage removal patch upstreamed Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libpng10/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 18 Jun 2009 19:59:38 -0000 1.21 +++ sources 17 Jul 2009 11:32:35 -0000 1.22 @@ -1 +1 @@ -dea0945e3c1675bf9ed1c6ab97f5f7ef libpng-1.0.46.tar.bz2 +4d96b1f0c1820886ea021dd79432bca1 libpng-1.0.47.tar.bz2 From mmaslano at fedoraproject.org Fri Jul 17 11:33:35 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Fri, 17 Jul 2009 11:33:35 +0000 (UTC) Subject: rpms/at/F-11 at.spec,1.73,1.74 Message-ID: <20090717113335.39C3E11C00CF@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/at/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16515 Modified Files: at.spec Log Message: * Fri Jul 17 2009 Marcela Ma??l????ov?? - 3.1.10-31 - 502078 fix pm-utils script to wake up only when atd was running Index: at.spec =================================================================== RCS file: /cvs/pkgs/rpms/at/F-11/at.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- at.spec 26 Feb 2009 13:43:46 -0000 1.73 +++ at.spec 17 Jul 2009 11:33:04 -0000 1.74 @@ -6,7 +6,7 @@ Summary: Job spooling tools Name: at Version: 3.1.10 -Release: 30%{?dist} +Release: 31%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://ftp.debian.org/debian/pool/main/a/at @@ -196,6 +196,9 @@ fi %attr(0755,root,root) %{_libdir}/pm-utils/sleep.d/56atd %changelog +* Fri Jul 17 2009 Marcela Ma??l????ov?? - 3.1.10-31 +- 502078 fix pm-utils script to wake up only when atd was running + * Thu Feb 26 2009 Marcela Ma??l????ov?? - 3.1.10-30 - 435765 and 486844 in some cases could be used bash for at commands even if user sets different default shell. Also bash4.0 fix Here Documents From akahl at fedoraproject.org Fri Jul 17 11:37:36 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Fri, 17 Jul 2009 11:37:36 +0000 (UTC) Subject: rpms/php-ZendFramework/F-10 php-ZendFramework.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090717113736.69C3911C00CF@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17719 Modified Files: php-ZendFramework.spec sources Log Message: * update to 1.8.4PL1 Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-10/php-ZendFramework.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- php-ZendFramework.spec 17 Mar 2009 15:21:06 -0000 1.9 +++ php-ZendFramework.spec 17 Jul 2009 11:37:36 -0000 1.10 @@ -1,19 +1,20 @@ %define php_name ZendFramework +%define posttag PL1 Summary: Leading open-source PHP framework Name: php-ZendFramework -Version: 1.7.7 -Release: 2%{?dist} +Version: 1.8.4 +Release: 1.%{posttag}%{?dist} License: BSD Group: Development/Libraries -Source0: http://framework.zend.com/releases/%{php_name}-%{version}/%{php_name}-%{version}.tar.gz +Source0: http://framework.zend.com/releases/%{php_name}-%{version}%{?posttag}/%{php_name}-%{version}%{?posttag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://framework.zend.com/ BuildArch: noarch -Requires: php >= 5.1.4 +Requires: php >= 5.2.4 Requires: php-bcmath Requires: php-ctype Requires: php-curl @@ -270,25 +271,54 @@ types. Zend_Search_Lucene is a port of t Summary: Web service APIs for a number of providers Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: php-mcrypt +Requires: php-soap %description Services This package contains web service client APIs for the following services: - Akismet -- Amazon +- Amazon (including Ec2, S3) - Audioscrobbler - del.icio.us - Flickr - Nirvanix +- ReCaptcha - Simpy - SlideShare - StrikeIron - Technorati +- Twitter - Yahoo! +%package Soap +Summary: SOAP web services server part helper +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: php-soap + +%description Soap +Zend_Soap_Server class is intended to simplify Web Services server part +development for PHP programmers. + +It may be used in WSDL or non-WSDL mode, and using classes or functions to +define Web Service API. + +When Zend_Soap_Server component works in the WSDL mode, it uses already +prepared WSDL document to define server object behavior and transport layer +options. + +WSDL document may be auto-generated with functionality provided by +Zend_Soap_AutoDiscovery component or should be constructed manually using +Zend_Soap_Wsdl class or any other XML generating tool. + +If the non-WSDL mode is used, then all protocol options have to be set using +options mechanism. + + %prep -%setup -qn %{php_name}-%{version} +%setup -qn %{php_name}-%{version}%{?posttag} %build find . -type f -perm /111 \ @@ -315,19 +345,12 @@ cd extras %{__cp} -pr tests $RPM_BUILD_ROOT%{_datadir}/php/ZendX cd .. - -# Zend_Tool, still in development -# cd incubator -# %{__cp} -pr library/Zend/Tool $RPM_BUILD_ROOT%{_datadir}/php/Zend -# %{__cp} -pr tests/* $RPM_BUILD_ROOT%{_datadir}/php/Zend/tests -# %{__cp} -pr bin/zf.{php,sh} \ -# $RPM_BUILD_ROOT%{_datadir}/php/Zend -# %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} -# %{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ -# $RPM_BUILD_ROOT%{_bindir}/zf -# symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null -# cd .. - +%{__cp} -pr bin/zf.{php,sh} \ + $RPM_BUILD_ROOT%{_datadir}/php/Zend +%{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} +%{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ + $RPM_BUILD_ROOT%{_bindir}/zf +symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -350,13 +373,37 @@ symlinks -c . > /dev/null %files %defattr(-,root,root,-) -%{_datadir}/php/Zend -%exclude %{_datadir}/php/Zend/demos -%exclude %{_datadir}/php/Zend/tests +%doc LICENSE.txt INSTALL.txt README.txt +%{_bindir}/zf +# we list all files explicitly to find out what's new in future releases more +# easily +%dir %{_datadir}/php/Zend +%{_datadir}/php/Zend/zf.php +%{_datadir}/php/Zend/zf.sh +%{_datadir}/php/Zend/Acl +%{_datadir}/php/Zend/Acl.php +%{_datadir}/php/Zend/Amf +%{_datadir}/php/Zend/Application +%{_datadir}/php/Zend/Application.php +%{_datadir}/php/Zend/Auth %exclude %{_datadir}/php/Zend/Auth/Adapter/Ldap.php +%{_datadir}/php/Zend/Auth.php +%{_datadir}/php/Zend/Cache %exclude %{_datadir}/php/Zend/Cache/Backend/Apc.php %exclude %{_datadir}/php/Zend/Cache/Backend/Memcached.php -%exclude %{_datadir}/php/Zend/Captcha +%{_datadir}/php/Zend/Cache.php +%{_datadir}/php/Zend/CodeGenerator +%{_datadir}/php/Zend/Config +%{_datadir}/php/Zend/Config.php +%{_datadir}/php/Zend/Console +%{_datadir}/php/Zend/Controller +%{_datadir}/php/Zend/Crypt +%{_datadir}/php/Zend/Crypt.php +%{_datadir}/php/Zend/Currency +%{_datadir}/php/Zend/Currency.php +%{_datadir}/php/Zend/Date +%{_datadir}/php/Zend/Date.php +%{_datadir}/php/Zend/Db %exclude %{_datadir}/php/Zend/Db/Adapter/Db2.php %exclude %{_datadir}/php/Zend/Db/Adapter/Db2 %exclude %{_datadir}/php/Zend/Db/Statement/Db2.php @@ -369,17 +416,48 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Db/Adapter/Oracle %exclude %{_datadir}/php/Zend/Db/Statement/Oracle.php %exclude %{_datadir}/php/Zend/Db/Statement/Oracle -%exclude %{_datadir}/php/Zend/Dojo.php -%exclude %{_datadir}/php/Zend/Dojo -%exclude %{_datadir}/php/Zend/Feed.php -%exclude %{_datadir}/php/Zend/Feed -%exclude %{_datadir}/php/Zend/Gdata.php -%exclude %{_datadir}/php/Zend/Gdata -%exclude %{_datadir}/php/Zend/Ldap.php -%exclude %{_datadir}/php/Zend/Ldap -%exclude %{_datadir}/php/Zend/Pdf.php -%exclude %{_datadir}/php/Zend/Pdf -%exclude %{_datadir}/php/Zend/Search +%{_datadir}/php/Zend/Db.php +%{_datadir}/php/Zend/Debug.php +%{_datadir}/php/Zend/Dom +%{_datadir}/php/Zend/Exception.php +%{_datadir}/php/Zend/File +%{_datadir}/php/Zend/Filter +%{_datadir}/php/Zend/Filter.php +%{_datadir}/php/Zend/Form +%{_datadir}/php/Zend/Form.php +%{_datadir}/php/Zend/Http +%{_datadir}/php/Zend/InfoCard +%{_datadir}/php/Zend/InfoCard.php +%{_datadir}/php/Zend/Json +%{_datadir}/php/Zend/Json.php +%{_datadir}/php/Zend/Layout +%{_datadir}/php/Zend/Layout.php +%{_datadir}/php/Zend/Loader +%{_datadir}/php/Zend/Loader.php +%{_datadir}/php/Zend/Locale +%{_datadir}/php/Zend/Locale.php +%{_datadir}/php/Zend/Log +%{_datadir}/php/Zend/Log.php +%{_datadir}/php/Zend/Mail +%{_datadir}/php/Zend/Mail.php +%{_datadir}/php/Zend/Measure +%{_datadir}/php/Zend/Memory +%{_datadir}/php/Zend/Memory.php +%{_datadir}/php/Zend/Mime +%{_datadir}/php/Zend/Mime.php +%{_datadir}/php/Zend/Navigation +%{_datadir}/php/Zend/Navigation.php +%{_datadir}/php/Zend/OpenId +%{_datadir}/php/Zend/OpenId.php +%{_datadir}/php/Zend/Paginator +%{_datadir}/php/Zend/Paginator.php +%{_datadir}/php/Zend/ProgressBar +%{_datadir}/php/Zend/ProgressBar.php +%{_datadir}/php/Zend/Reflection +%{_datadir}/php/Zend/Registry.php +%{_datadir}/php/Zend/Rest +%{_datadir}/php/Zend/Server +%{_datadir}/php/Zend/Service %exclude %{_datadir}/php/Zend/Service/Akismet.php %exclude %{_datadir}/php/Zend/Service/Amazon.php %exclude %{_datadir}/php/Zend/Service/Amazon @@ -402,10 +480,27 @@ symlinks -c . > /dev/null %exclude %{_datadir}/php/Zend/Service/Technorati %exclude %{_datadir}/php/Zend/Service/Yahoo.php %exclude %{_datadir}/php/Zend/Service/Yahoo +%{_datadir}/php/Zend/Session +%{_datadir}/php/Zend/Session.php +%{_datadir}/php/Zend/Tag +%{_datadir}/php/Zend/Test +%{_datadir}/php/Zend/Text +%{_datadir}/php/Zend/TimeSync +%{_datadir}/php/Zend/TimeSync.php +%{_datadir}/php/Zend/Tool +%{_datadir}/php/Zend/Translate +%{_datadir}/php/Zend/Translate.php +%{_datadir}/php/Zend/Uri +%{_datadir}/php/Zend/Uri.php +%{_datadir}/php/Zend/Validate +%{_datadir}/php/Zend/Validate.php +%{_datadir}/php/Zend/Version.php +%{_datadir}/php/Zend/View +%{_datadir}/php/Zend/View.php +%{_datadir}/php/Zend/Wildfire +%{_datadir}/php/Zend/XmlRpc +%{_datadir}/php/Zend/externals %exclude %{_datadir}/php/Zend/externals/dojo -# %{_bindir}/zf - -%doc LICENSE.txt INSTALL.txt README.txt %files demos %defattr(-,root,root,-) @@ -422,7 +517,7 @@ symlinks -c . > /dev/null %{_datadir}/php/ZendX # php-interbase not available for Fedora %exclude %{_datadir}/php/ZendX/Db -%doc LICENSE.txt extras/documentation/api/extras/* +%doc LICENSE.txt extras/documentation/* %files Auth-Adapter-Ldap %defattr(-,root,root,-) @@ -532,8 +627,23 @@ symlinks -c . > /dev/null %{_datadir}/php/Zend/Service/Yahoo %doc LICENSE.txt +%files Soap +%defattr(-,root,root,-) +%{_datadir}/php/Zend/Soap +%doc LICENSE.txt + %changelog +* Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 +- update to 1.8.4 patch 1 (it's about time!) +- Requires php 5.1.4 -> 5.2.4 +- list all files explicitly for easier future updates +- incubator no more (Zend_Tool stable now) +- Request now part of Controller +- new components: Application, CodeGenerator, Crypt, Navigation, Reflection, + Tag +- Soap and Services require php-soap now + * Tue Mar 17 2009 Alexander Kahl - 1.7.7-2 - bump (cannot remove spurious -1 tag) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 17 Mar 2009 15:09:47 -0000 1.7 +++ sources 17 Jul 2009 11:37:36 -0000 1.8 @@ -1 +1 @@ -495542f4ec9f8c0dbf8e52e6077fe048 ZendFramework-1.7.7.tar.gz +d7374bf9b1741e2f925e8d2443475f9d ZendFramework-1.8.4PL1.tar.gz From mmaslano at fedoraproject.org Fri Jul 17 11:44:35 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Fri, 17 Jul 2009 11:44:35 +0000 (UTC) Subject: rpms/pm-utils/devel .cvsignore, 1.38, 1.39 pm-utils.spec, 1.118, 1.119 sources, 1.44, 1.45 Message-ID: <20090717114435.709E211C00CF@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/pm-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19712 Modified Files: .cvsignore pm-utils.spec sources Log Message: * Fri Jul 17 2009 Marcela Ma??l????ov?? - 1.2.5-3 - move atd script into pm-utils Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pm-utils/devel/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 14 Apr 2009 09:39:59 -0000 1.38 +++ .cvsignore 17 Jul 2009 11:44:05 -0000 1.39 @@ -1 +1,2 @@ pm-utils-1.2.5.tar.gz +56atd Index: pm-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pm-utils/devel/pm-utils.spec,v retrieving revision 1.118 retrieving revision 1.119 diff -u -p -r1.118 -r1.119 --- pm-utils.spec 25 Jun 2009 20:35:38 -0000 1.118 +++ pm-utils.spec 17 Jul 2009 11:44:05 -0000 1.119 @@ -2,7 +2,7 @@ Name: pm-utils Summary: Power management utilities and scripts for Fedora License: GPLv2 Version: 1.2.5 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Base URL: http://pm-utils.freedesktop.org # for chvt @@ -24,6 +24,7 @@ Source0: http://pm-utils.freedesktop.org Source21: pm-utils-99hd-apm-restore Source22: pm-utils-hd-apm-restore.conf Source23: pm-utils-bugreport-info.sh +Source24: 56atd BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -64,6 +65,7 @@ install -D -m 0644 %{SOURCE22} $RPM_BUIL install -D -m 0755 %{SOURCE23} $RPM_BUILD_ROOT%{_bindir}/pm-utils-bugreport-info.sh +install -D -m 0755 %{SOURCE24} $RPM_BUILD_ROOT%{_libdir}/pm-utils/sleep.d/56atd %clean rm -rf $RPM_BUILD_ROOT @@ -106,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Marcela Ma??l????ov?? - 1.2.5-3 +- move atd script into pm-utils + * Thu Jun 25 2009 Till Maas - 1.2.5-2 - add check for hdparm in hd-apm-restore Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pm-utils/devel/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 14 Apr 2009 09:41:46 -0000 1.44 +++ sources 17 Jul 2009 11:44:05 -0000 1.45 @@ -1 +1,2 @@ f69db402e1869321cac72ffd2f77fa99 pm-utils-1.2.5.tar.gz +9642efb4183a45454745806903b97f16 56atd From sbose at fedoraproject.org Fri Jul 17 12:01:27 2009 From: sbose at fedoraproject.org (sbose) Date: Fri, 17 Jul 2009 12:01:27 +0000 (UTC) Subject: rpms/ctdb/devel .cvsignore, 1.7, 1.8 ctdb.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090717120127.3B63311C00CF@cvs1.fedora.phx.redhat.com> Author: sbose Update of /cvs/pkgs/rpms/ctdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24817 Modified Files: .cvsignore ctdb.spec sources Log Message: Update to ctdb version 1.0.87 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 1 Jul 2009 09:27:08 -0000 1.7 +++ .cvsignore 17 Jul 2009 12:00:56 -0000 1.8 @@ -1 +1 @@ -ctdb-1.0.86.tar.bz2 +ctdb-1.0.87.tar.bz2 Index: ctdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/ctdb.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ctdb.spec 1 Jul 2009 09:27:08 -0000 1.9 +++ ctdb.spec 17 Jul 2009 12:00:56 -0000 1.10 @@ -2,7 +2,7 @@ Summary: A Clustered Database based on Samba's Trivial Database (TDB) Name: ctdb -Version: 1.0.86 +Version: 1.0.87 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -132,6 +132,44 @@ fi %{_libdir}/pkgconfig/ctdb.pc %changelog +* Fri Jul 17 2009 Sumit Bose - 1.0.87-1 + - Update to ctdb version 1.0.87 + +* Fri Jul 17 2009 : Version 1.0.87 + - Add a new event "stopped" that is called when a node is stopped. + - Documentation of the STOPPED flag and the stop/continue commands + - Make it possible to start a node in STOPPED mode. + - Add a new node flag : STOPPED and commands "ctdb stop" "ctdb continue" + These commands are similar to "diasble/enable" but will also remove the node + from the vnnmap, while disable only fails all ip addresses over. + - tests for NFS , CIFS by martins + - major updates to the init script by martins + - Send gratious arps with a 1.1 second stride instead of a 1 second stride to + workaround interesting "features" of common linux stacks. + - Various test enhancements from martins: + - additional other tests + - add tests for grat arp generation, ping during failover, ssh and failover + - New/updated tcp tickle tests and supprot functions + - provide better debugging when a test fails + - make ctdbd restarts more reliable in the tests + - update the "wait bar" to make the wait progress in tests more obvious + - various cleanups + - when dispatching a message to a handler, make the message a real talloc + object so that we can reparent the object in the tallic hierarchy. + - document the ipreallocate command + - Updates to enable/disable to use the ipreallocate command to block until the + following ipreallocation has completed. + - Update the main daemon and the tools to allow debug level to be a string + instead of an integer. + - Update the sysconfig file to show using string literals instead of numeric + values for the debuglevels used. + - If no debuglevel is specific, make "ctdb setdebug" show the available + options. + - When trying to allocate network packets, add explicit checks if the network + transport has been shutdown before trying and failing, to make log messages + easier to read. Add this extra check and logging to every plave packets are + allocated. + * Wed Jul 1 2009 Sumit Bose - 1.0.86-1 - Update to ctdb version 1.0.86 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 1 Jul 2009 09:27:08 -0000 1.7 +++ sources 17 Jul 2009 12:00:57 -0000 1.8 @@ -1 +1 @@ -133d4e7d601e603147d6c006654983e8 ctdb-1.0.86.tar.bz2 +f925406352e087c9f32ec3084578c29e ctdb-1.0.87.tar.bz2 From hno at fedoraproject.org Fri Jul 17 12:08:45 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Fri, 17 Jul 2009 12:08:45 +0000 (UTC) Subject: rpms/squid/devel squid-3.1.0.9-config.patch, NONE, 1.1 squid-3.1.0.9-location.patch, NONE, 1.1 Message-ID: <20090717120845.31CDE11C00CF@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26857 Added Files: squid-3.1.0.9-config.patch squid-3.1.0.9-location.patch Log Message: Preparing for 3.1 squid-3.1.0.9-config.patch: cf.data.pre | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE squid-3.1.0.9-config.patch --- diff -up squid-3.0.STABLE9/src/cf.data.pre.config squid-3.0.STABLE9/src/cf.data.pre --- squid-3.0.STABLE9/src/cf.data.pre.config 2008-09-09 18:06:44.000000000 +0200 +++ squid-3.0.STABLE9/src/cf.data.pre 2008-10-19 23:34:17.000000000 +0200 @@ -2135,7 +2136,7 @@ DOC_END NAME: logfile_rotate TYPE: int -DEFAULT: 10 +DEFAULT: 0 LOC: Config.Log.rotateNumber DOC_START Specifies the number of logfile rotations to make when you @@ -3254,11 +3256,11 @@ COMMENT_END NAME: cache_mgr TYPE: string -DEFAULT: webmaster +DEFAULT: root LOC: Config.adminEmail DOC_START Email-address of local cache manager who will receive - mail if the cache dies. The default is "webmaster." + mail if the cache dies. The default is "root." DOC_END NAME: mail_from squid-3.1.0.9-location.patch: QUICKSTART | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) --- NEW FILE squid-3.1.0.9-location.patch --- diff -up squid-3.1.0.9/QUICKSTART.location squid-3.1.0.9/QUICKSTART --- squid-3.1.0.9/QUICKSTART.location 2009-06-26 12:35:27.000000000 +0200 +++ squid-3.1.0.9/QUICKSTART 2009-07-17 14:03:10.000000000 +0200 @@ -12,10 +12,9 @@ After you retrieved, compiled and instal INSTALL in the same directory), you have to configure the squid.conf file. This is the list of the values you *need* to change, because no sensible defaults could be defined. Do not touch the other variables -for now. We assume you have installed Squid in the default location: -/usr/local/squid +for now. -Uncomment and edit the following lines in /usr/local/squid/etc/squid.conf: +Uncomment and edit the following lines in /etc/squid/squid.conf: ============================================================================== @@ -56,7 +55,7 @@ cache_effective_user Some configuration lines which are optional but may be needed. -cache_dir ufs /usr/local/squid/var/cache 100 16 256 +cache_dir ufs /var/spool/squid 100 16 256 Add here (first number, here 100) the amount of hard disk space (in megabytes) to devote to caching. @@ -84,12 +83,12 @@ After editing squid.conf to your liking, line TWICE: To create any disk cache_dir configured: - % /usr/local/squid/sbin/squid -z + % /usr/sbin/squid -z To start squid: - % /usr/local/squid/sbin/squid + % /usr/sbin/squid -Check in the cache.log (/usr/local/squid/var/logs/cache.log) that +Check in the cache.log (/var/log/squid/cache.log) that everything is all right. Once Squid created all its files (it can take several minutes on some From tagoh at fedoraproject.org Fri Jul 17 12:13:26 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Fri, 17 Jul 2009 12:13:26 +0000 (UTC) Subject: rpms/emacs-mew/devel emacs-mew.spec,1.4,1.5 Message-ID: <20090717121326.2B8E811C00CF@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/emacs-mew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27975 Modified Files: emacs-mew.spec Log Message: * Fri Jul 17 2009 Akira TAGOH - 6.2.51-3 - Fix FTBFS issue. (#511618) Index: emacs-mew.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-mew/devel/emacs-mew.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- emacs-mew.spec 24 Feb 2009 14:45:51 -0000 1.4 +++ emacs-mew.spec 17 Jul 2009 12:12:55 -0000 1.5 @@ -16,7 +16,7 @@ Name: emacs-%{pkg} Version: 6.2.51 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Email client for GNU Emacs Group: Applications/Internet @@ -131,9 +131,7 @@ fi %{_bindir}/* %{_datadir}/pixmaps/Mew/* %{_infodir}/mew.info.gz -%{_infodir}/mew.info-* %{_infodir}/mew.jis.info.gz -%{_infodir}/mew.jis.info-* %{_mandir}/man1/* %files el @@ -141,6 +139,9 @@ fi %{emacs_lispdir}/%{pkg}/*.el %changelog +* Fri Jul 17 2009 Akira TAGOH - 6.2.51-3 +- Fix FTBFS issue. (#511618) + * Tue Feb 24 2009 Fedora Release Engineering - 6.2.51-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From hno at fedoraproject.org Fri Jul 17 12:13:33 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Fri, 17 Jul 2009 12:13:33 +0000 (UTC) Subject: rpms/squid/devel squid31.spec,NONE,1.1 Message-ID: <20090717121333.AD28E11C00CF@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28175 Added Files: squid31.spec Log Message: Temporary spec file while working on 3.1 packaging --- NEW FILE squid31.spec --- ## % define _use_internal_dependency_generator 0 %define __perl_requires %{SOURCE98} ## % define __find_requires %{SOURCE99} # TODO: # - Still several patches to rebase. Is all really needed? Some should # be possible to override with buildtime variables # - Error pages have changed. Squid now to language negotiation # - Should helpers be split in their own packages? Starting to have a fair # bit of dependencies there Name: squid Version: 3.1.0.9 Release: 1%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ Group: System Environment/Daemons URL: http://www.squid-cache.org Source: http://www.squid-cache.org/Squid/Versions/v3/3.1/squid-%{version}.tar.bz2 Source1: http://www.squid-cache.org/Squid/Versions/v3/3.1/squid-%{version}.tar.bz2.asc Source2: squid.init Source3: squid.logrotate Source4: squid.sysconfig Source5: squid.pam Source6: squid.nm Source98: perl-requires-squid.sh ## Source99: filter-requires-squid.sh # Upstream patches #Patch001: http://www.squid-cache.org/Versions/v3/3.1/changesets/bXXXX.patch # External patches # Local patches # Applying upstream patches first makes it less likely that local patches # will break upstream ones. Patch201: squid-3.1.0.9-config.patch Patch202: squid-3.1.0.9-location.patch Patch203: squid-3.0.STABLE1-build.patch Patch204: squid-3.0.STABLE1-perlpath.patch Patch205: squid-3.0.STABLE15-smb-path.patch Patch208: squid-3.0.STABLE7-from_manpg.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: bash >= 2.0 Requires(pre): shadow-utils Requires(post): /sbin/chkconfig Requires(preun): /sbin/service /sbin/chkconfig Requires(postun): /sbin/service BuildRequires: openldap-devel pam-devel openssl-devel krb5-devel Obsoletes: squid-novm %description Squid is a high-performance proxy caching server for Web clients, supporting FTP, gopher, and HTTP data objects. Unlike traditional caching software, Squid handles all requests in a single, non-blocking, I/O-driven process. Squid keeps meta data and especially hot objects cached in RAM, caches DNS lookups, supports non-blocking DNS lookups, and implements negative caching of failed requests. Squid consists of a main server program squid, a Domain Name System lookup program (dnsserver), a program for retrieving FTP data (ftpget), and some management and client tools. %prep %setup -q %patch201 -p1 -b .config %patch202 -p1 -b .location %patch203 -p1 -b .build %patch204 -p1 -b .perlpath %patch205 -p1 -b .smb-path %patch208 -p1 -b .from_manpg %build export CXXFLAGS="-fPIE %{optflags}" ; export CFLAGS="-fPIE -Os -g -pipe -fsigned-char %{optflags}" ; export LDFLAGS="-pie" ; %configure \ --exec_prefix=/usr \ --bindir=%{_sbindir} \ --libexecdir=%{_libdir}/squid \ --localstatedir=/var \ --datadir=%{_datadir} \ --sysconfdir=/etc/squid \ --disable-dependency-tracking \ --enable-arp-acl \ --enable-auth="basic,digest,ntlm,negotiate" \ --enable-basic-auth-helpers="LDAP,MSNT,NCSA,PAM,SMB,YP,getpwnam,multi-domain-NTLM,SASL,DB,POP3,squid_radius_auth" \ --enable-negotiate-auth-helpers="squid_kerb_auth" \ --enable-cache-digests \ --enable-cachemgr-hostname=localhost \ --enable-delay-pools \ --enable-digest-auth-helpers="password,ldap,eDirectory" \ --enable-epoll \ --enable-external-acl-helpers="ip_user,ldap_group,session,unix_group,wbinfo_group" \ --enable-icap-client \ --enable-ident-lookups \ %ifnarch ppc64 ia64 x86_64 s390x --with-large-files \ %endif --enable-linux-netfilter \ --enable-ntlm-auth-helpers="SMB,fakeauth" \ --enable-referer-log \ --enable-removal-policies="heap,lru" \ --enable-snmp \ --enable-ssl \ --enable-storeio="aufs,diskd,null,ufs" \ --enable-useragent-log \ --enable-wccpv2 \ --with-aio \ --with-default-user="squid" \ --with-filedescriptors=16384 \ --with-dl \ --with-openssl=/usr/kerberos \ --with-pthreads # following options are no longer supported # --with-winbind-auth-challenge \ # --enable-follow-x-forwarded-for \ # --enable-fd-config \ # --with-maxfd=16384 \ # --enable-underscores \ export CXXFLAGS="-fPIE" ; export CFLAGS="-fPIE -Os -g -pipe -fsigned-char" ; export LDFLAGS="-pie" ; make %{?_smp_mflags} mkdir faq cp %{SOURCE1} faq cd faq sgml2html FAQ.sgml %install rm -rf $RPM_BUILD_ROOT %makeinstall \ sysconfdir=$RPM_BUILD_ROOT/etc/squid \ localstatedir=$RPM_BUILD_ROOT/var \ bindir=$RPM_BUILD_ROOT/%{_sbindir} \ libexecdir=$RPM_BUILD_ROOT/%{_libdir}/squid echo " # # This is /etc/httpd/conf.d/squid.conf # ScriptAlias /Squid/cgi-bin/cachemgr.cgi %{_libdir}/squid/cachemgr.cgi # Only allow access from localhost by default order allow,deny allow from localhost.localdomain # Add additional allowed hosts as needed # allow from .example.com " > $RPM_BUILD_ROOT/squid.httpd.tmp ln -s ../../%{_datadir}/squid/errors/English $RPM_BUILD_ROOT/etc/squid/errors ln -s ../../%{_datadir}/squid/icons $RPM_BUILD_ROOT/etc/squid/icons mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d mkdir -p $RPM_BUILD_ROOT/etc/sysconfig mkdir -p $RPM_BUILD_ROOT/etc/pam.d mkdir -p $RPM_BUILD_ROOT/etc/httpd/conf.d/ mkdir -p $RPM_BUILD_ROOT/etc/NetworkManager/dispatcher.d install -m 755 %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/squid install -m 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/squid install -m 644 %{SOURCE4} $RPM_BUILD_ROOT/etc/sysconfig/squid install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/etc/pam.d/squid install -m 644 $RPM_BUILD_ROOT/squid.httpd.tmp $RPM_BUILD_ROOT/etc/httpd/conf.d/squid.conf install -m 644 %{SOURCE6} $RPM_BUILD_ROOT/etc/NetworkManager/dispatcher.d/20-squid mkdir -p $RPM_BUILD_ROOT/var/log/squid mkdir -p $RPM_BUILD_ROOT/var/spool/squid chmod 644 contrib/url-normalizer.pl contrib/rredir.* contrib/user-agents.pl iconv -f ISO88591 -t UTF8 ChangeLog -o ChangeLog.tmp mv -f ChangeLog.tmp ChangeLog # remove unpackaged files from the buildroot rm -f $RPM_BUILD_ROOT%{_sbindir}/{RunAccel,RunCache} rm -f $RPM_BUILD_ROOT/squid.httpd.tmp %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc faq/*\.html README ChangeLog QUICKSTART %doc contrib/url-normalizer.pl contrib/rredir.* contrib/user-agents.pl %attr(755,root,root) %dir /etc/squid %attr(755,root,root) %dir %{_libdir}/squid %attr(750,squid,squid) %dir /var/log/squid %attr(750,squid,squid) %dir /var/spool/squid %attr(4750,root,squid) %{_libdir}/squid/ncsa_auth %attr(4750,root,squid) %{_libdir}/squid/pam_auth %config(noreplace) %attr(644,root,root) /etc/httpd/conf.d/squid.conf %config(noreplace) %attr(640,root,squid) /etc/squid/squid.conf %config(noreplace) %attr(644,root,squid) /etc/squid/cachemgr.conf %config(noreplace) /etc/squid/mime.conf %config(noreplace) /etc/sysconfig/squid %config(noreplace) /etc/squid/msntauth.conf %config(noreplace) /etc/squid/mib.txt # These are not noreplace because they are just sample config files %config /etc/squid/msntauth.conf.default %config /etc/squid/squid.conf.default %config /etc/squid/mime.conf.default %config /etc/squid/cachemgr.conf.default %config(noreplace) /etc/pam.d/squid %config(noreplace) /etc/logrotate.d/squid %config(noreplace) /etc/squid/errors %dir %{_datadir}/squid %attr(-,root,root) %{_datadir}/squid/errors %attr(-,root,root) /etc/squid/icons %attr(755,root,root) /etc/rc.d/init.d/squid %attr(755,root,root) /etc/NetworkManager/dispatcher.d/20-squid %{_datadir}/squid/icons %{_sbindir}/squid %{_sbindir}/squidclient %{_mandir}/man8/* %{_libdir}/squid/* %pre if ! getent group squid >/dev/null 2>&1; then /usr/sbin/groupadd -g 23 squid fi if ! getent passwd squid >/dev/null 2>&1 ; then /usr/sbin/useradd -g 23 -u 23 -d /var/spool/squid -r -s /sbin/nologin squid >/dev/null 2>&1 || exit 1 fi for i in /var/log/squid /var/spool/squid ; do if [ -d $i ] ; then for adir in `find $i -maxdepth 0 \! -user squid`; do chown -R squid:squid $adir done fi done exit 0 %post /sbin/chkconfig --add squid if [ $1 = 0 ]; then case "$LANG" in bg*) DIR=Bulgarian ;; ca*) DIR=Catalan ;; cs*) DIR=Czech ;; da*) DIR=Danish ;; nl*) DIR=Dutch ;; en*) DIR=English ;; ea*) DIR=Estonian ;; fi*) DIR=Finnish ;; fr*) DIR=French ;; de*) DIR=German ;; he*) DIR=Hebrew ;; hu*) DIR=Hungarian ;; it*) DIR=Italian ;; ja*) DIR=Japanese ;; kr*) DIR=Korean ;; pl*) DIR=Polish ;; pt*) DIR=Portuguese ;; ro*) DIR=Romanian ;; ru*) DIR=Russian-koi8-r ;; sr*) DIR=Serbian ;; sk*) DIR=Slovak ;; es*) DIR=Spanish ;; sv*) DIR=Swedish ;; zh_TW*) DIR=Traditional_Chinese ;; zh_CN*) DIR=Simplify_Chinese ;; tr*) DIR=Turkish ;; greek) DIR=Greek ;; *) DIR=English ;; esac ln -snf %{_datadir}/squid/errors/$DIR /etc/squid/errors fi %preun if [ $1 = 0 ] ; then service squid stop >/dev/null 2>&1 rm -f /var/log/squid/* /sbin/chkconfig --del squid fi %postun if [ "$1" -ge "1" ] ; then service squid condrestart >/dev/null 2>&1 fi %triggerin -- samba-common /usr/sbin/usermod -a -G wbpriv squid >/dev/null 2>&1 || \ chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog * Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 - fixed patch parameter of bXXX patches * Mon Jun 29 2009 Henrik Nordstrom 3.0.STABLE16-1 - Upgrade to 3.0.STABLE16 * Sat May 23 2009 Henrik Nordstrom - 3.0.STABLE15-2 - Bug #453304 - Squid requires restart after Network Manager connection setup * Sat May 09 2009 Henrik Nordstrom 3.0.STABLE15-1 - Upgrade to 3.0.STABLE15 * Tue Apr 28 2009 Jiri Skala - 3.0.STABLE14-3 - fixed ambiguous condition in the init script (exit 4) * Mon Apr 20 2009 Henrik Nordstrom - 3.0.STABLE14-2 - Squid bug #2635: assertion failed: HttpHeader.cc:1196: "Headers[id].type == ftInt64" * Sun Apr 19 2009 Henrik Nordstrom - 7:3.0.STABLE14-1 - Upgrade to 3.0.STABLE14 * Fri Mar 06 2009 Henrik Nordstrom - 7:3.0.STABLE13-2 - backported logfile.cc syslog parameters patch from 3.1 (b9443.patch) - GCC-4.4 workaround in src/wccp2.cc * Wed Feb 25 2009 Fedora Release Engineering - 7:3.0.STABLE13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Feb 5 2009 Jonathan Steffan - 7:3.0.STABLE13-1 - upgrade to latest upstream * Tue Jan 27 2009 Henrik Nordstrom - 7:3.0.STABLE12-1 - upgrade to latest upstream * Sun Jan 18 2009 Tomas Mraz - 7:3.0.STABLE10-4 - rebuild with new openssl * Fri Dec 19 2008 Henrik Nordstrom - 7:3.0.STABLE10-3 - actually include the upstream bugfixes in the build * Fri Dec 19 2008 Henrik Nordstrom - 7:3.0.STABLE10-2 - upstream bugfixes for cache corruption and access.log response size errors * Fri Oct 24 2008 Henrik Nordstrom - 7:3.0.STABLE10-1 - upgrade to latest upstream * Sun Oct 19 2008 Henrik Nordstrom - 7:3.0.STABLE9-2 - disable coss support, not officially supported in 3.0 * Sun Oct 19 2008 Henrik Nordstrom - 7:3.0.STABLE9-1 - update to latest upstream * Thu Oct 09 2008 Henrik Nordstrom - 7:3.0.STABLE7-4 - change logrotate to move instead of copytruncate * Wed Oct 08 2008 Jiri Skala - 7:3.0.STABLE7-3 - fix #465052 - FTBFS squid-3.0.STABLE7-1.fc10 * Thu Aug 14 2008 Jiri Skala - 7:3.0.STABLE7-2 - used ncsa_auth.8 from man-pages. there will be this file removed due to conflict - fix #458593 noisy initscript - fix #463129 init script tests wrong conf file - fix #450352 - build.patch patches only generated files * Wed Jul 02 2008 Jiri Skala - 7:3.0.STABLE7-1 - update to latest upstream - fix #453214 * Mon May 26 2008 Martin Nagy - 7:3.0.STABLE6-2 - fix bad allocation * Wed May 21 2008 Martin Nagy - 7:3.0.STABLE6-1 - upgrade to latest upstream - fix bad allocation * Fri May 09 2008 Martin Nagy - 7:3.0.STABLE5-2 - fix configure detection of netfilter kernel headers (#435499), patch by aoliva at redhat.com - add support for negotiate authentication (#445337) * Fri May 02 2008 Martin Nagy - 7:3.0.STABLE5-1 - upgrade to latest upstream * Tue Apr 08 2008 Martin Nagy - 7:3.0.STABLE4-1 - upgrade to latest upstream * Thu Apr 03 2008 Martin Nagy - 7:3.0.STABLE2-2 - add %%{optflags} to make - remove warnings about unused return values * Tue Mar 13 2008 Martin Nagy - 7:3.0.STABLE2-1 - upgrade to latest upstream 3.0.STABLE2 - check config file before starting (#428998) - whitespace unification of init script - some minor path changes in the QUICKSTART file - configure with the --with-filedescriptors=16384 option * Tue Feb 26 2008 Martin Nagy - 7:3.0.STABLE1-3 - change the cache_effective_group default back to none * Mon Feb 11 2008 Martin Nagy - 7:3.0.STABLE1-2 - rebuild for 4.3 * Wed Jan 23 2008 Martin Nagy - 7:3.0.STABLE1-1 - upgrade to latest upstream 3.0.STABLE1 * Tue Dec 04 2007 Martin Bacovsky - 2.6.STABLE17-1 - upgrade to latest upstream 2.6.STABLE17 * Wed Oct 31 2007 Martin Bacovsky - 7:2.6.STABLE16-3 - arp-acl was enabled * Tue Sep 25 2007 Martin Bacovsky - 7:2.6.STABLE16-2 - our fd_config patch was replaced by upstream's version - Source1 (FAQ.sgml) points to local source (upstream's moved to wiki) * Fri Sep 14 2007 Martin Bacovsky - 7:2.6.STABLE16-1 - upgrade to latest upstream 2.6.STABLE16 * Wed Aug 29 2007 Fedora Release Engineering - 7:2.6.STABLE14-2 - Rebuild for selinux ppc32 issue. * Thu Jul 19 2007 Martin Bacovsky - 7:2.6.STABLE14-1 - update to latest upstream 2.6.STABLE14 - resolves: #247064: Initscript Review * Tue Mar 27 2007 Martin Bacovsky - 7:2.6.STABLE12-1 - update to latest upstream 2.6.STABLE12 - Resolves: #233913: squid: unowned directory * Mon Feb 19 2007 Martin Bacovsky - 7:2.6.STABLE9-2 - Resolves: #226431: Merge Review: squid * Mon Jan 29 2007 Martin Bacovsky - 7:2.6.STABLE9-1 - update to the latest upstream * Sun Jan 14 2007 Martin Stransky - 7:2.6.STABLE7-1 - update to the latest upstream * Tue Dec 12 2006 Martin Stransky - 7:2.6.STABLE6-1 - update to the latest upstream * Mon Nov 6 2006 Martin Stransky - 7:2.6.STABLE5-1 - update to the latest upstream * Tue Oct 26 2006 Martin Stransky - 7:2.6.STABLE4-4 - added fix for #205568 - marked cachemgr.conf as world readable * Tue Oct 25 2006 Martin Stransky - 7:2.6.STABLE4-3 - added fix for #183869 - squid can abort when getting status - added upstream fixes: * Bug #1796: Assertion error HttpHeader.c:914: "str" * Bug #1779: Delay pools fairness, correction to first patch * Bug #1802: Crash on exit in certain conditions where cache.log is not writeable * Bug #1779: Delay pools fairness when multiple connections compete for bandwidth * Clarify the select/poll/kqueue/epoll configure --enable/disable options - reworked fd patch for STABLE4 * Tue Oct 17 2006 Martin Stransky - 7:2.6.STABLE4-2 - upstream fixes: * Accept 00:00-24:00 as a valid time specification (upstream BZ #1794) * aioDone() could be called twice * Squid reconfiguration (upstream BZ #1800) * Mon Oct 2 2006 Martin Stransky - 7:2.6.STABLE4-1 - new upstream - fixes from upstream bugzilla, items #1782,#1780,#1785,#1719,#1784,#1776 * Tue Sep 5 2006 Martin Stransky - 7:2.6.STABLE3-2 - added upstream patches for ACL * Mon Aug 21 2006 Martin Stransky - 7:2.6.STABLE3-1 - the latest stable upstream * Thu Aug 10 2006 Karsten Hopp 7:2.6.STABLE2-3 - added some requirements for pre/post install scripts * Fri Aug 04 2006 Martin Stransky - 7:2.6.STABLE2-2 - added patch for #198253 - squid: don't chgrp another pkg's files/directory * Mon Jul 31 2006 Martin Stransky - 7:2.6.STABLE2-1 - the latest stable upstream - reworked fd config patch * Wed Jul 25 2006 Martin Stransky - 7:2.6.STABLE1-3 - the latest CVS upstream snapshot * Wed Jul 19 2006 Martin Stransky - 7:2.6.STABLE1-2 - the latest CVS snapshot * Mon Jul 18 2006 Martin Stransky - 7:2.6.STABLE1-1 - new upstream + the latest CVS snapshot from 2006/07/18 - updated fd config patch - enabled epoll - fixed release format (#197405) - enabled WCCPv2 support (#198642) * Wed Jul 12 2006 Jesse Keating - 7:2.5.STABLE14-2.1 - rebuild * Tue Jun 8 2006 Martin Stransky - 7:2.5.STABLE14-2 - fix for squid BZ#1511 - assertion failed: HttpReply.c:105: "rep" * Tue May 30 2006 Martin Stransky - 7:2.5.STABLE14-1 - update to new upstream * Sun May 28 2006 Martin Stransky - 7:2.5.STABLE13-5 - fixed libbind patch (#193298) * Wed May 3 2006 Martin Stransky - 7:2.5.STABLE13-4 - added extra group check (#190544) * Wed Mar 29 2006 Martin Stransky - 7:2.5.STABLE13-3 - improved pre script (#187217) - added group switch * Thu Mar 23 2006 Martin Stransky - 7:2.5.STABLE13-2 - removed "--with-large-files" on 64bit arches * Mon Mar 13 2006 Martin Stransky - 7:2.5.STABLE13-1 - update to new upstream * Fri Feb 10 2006 Jesse Keating - 7:2.5.STABLE12-5.1 - bump again for double-long bug on ppc(64) * Tue Feb 07 2006 Martin Stransky - 7:2.5.STABLE12-5 - new upstream patches * Tue Feb 07 2006 Jesse Keating - 7:2.5.STABLE12-4.1 - rebuilt for new gcc4.1 snapshot and glibc changes * Wed Dec 28 2005 Martin Stransky 7:2.5.STABLE12-4 - added follow-xff patch (#176055) - samba path fix (#176659) * Mon Dec 19 2005 Martin Stransky 7:2.5.STABLE12-3 - fd-config.patch clean-up - SMB_BadFetch patch from upstream * Fri Dec 09 2005 Jesse Keating - rebuilt * Mon Nov 28 2005 Martin Stransky 7:2.5.STABLE12-2 - rewriten patch squid-2.5.STABLE10-64bit.patch, it works with "--with-large-files" option now - fix for #72896 - squid does not support > 1024 file descriptors, new "--enable-fd-config" option for it. * Wed Nov 9 2005 Martin Stransky 7:2.5.STABLE12-1 - update to STABLE12 - setenv patch * Mon Oct 24 2005 Martin Stransky 7:2.5.STABLE11-6 - fix for delay pool from upstream * Thu Oct 20 2005 Martin Stransky 7:2.5.STABLE11-5 - fix for #171213 - CVE-2005-3258 Squid crash due to malformed FTP response - more fixes from upstream * Fri Oct 14 2005 Martin Stransky 7:2.5.STABLE11-4 - enabled support for large files (#167503) * Thu Oct 13 2005 Tomas Mraz 7:2.5.STABLE11-3 - use include instead of pam_stack in pam config * Thu Sep 29 2005 Martin Stransky 7:2.5.STABLE11-2 - added patch for delay pools and some minor fixes * Fri Sep 23 2005 Martin Stransky 7:2.5.STABLE11-1 - update to STABLE11 * Mon Sep 5 2005 Martin Stransky 7:2.5.STABLE10-4 - Three upstream patches for #167414 - Spanish and Greek messages - patch for -D_FORTIFY_SOURCE=2 * Tue Aug 30 2005 Martin Stransky 7:2.5.STABLE10-3 - removed "--enable-truncate" option (#165948) - added "--enable-cache-digests" option (#102134) - added "--enable-ident-lookups" option (#161640) - some clean up (#165949) * Fri Jul 15 2005 Martin Stransky 7:2.5.STABLE10-2 - pam_auth and ncsa_auth have setuid (#162660) * Fri Jul 7 2005 Martin Stransky 7:2.5.STABLE10-1 - new upstream version - enabled fakeauth utility (#154020) - enabled digest authentication scheme (#155882) - all error pages marked as config (#127836) - patch for 64bit statvfs interface (#153274) - added httpd config file for cachemgr.cgi (#112725) * Mon May 16 2005 Jay Fenlason 7:2.5.STABLE9-7 - Upgrade the upstream -dns_query patch from -4 to -5 * Wed May 11 2005 Jay Fenlason 7:2.5.STABLE9-6 - More upstream patches, including a fix for bz#157456 CAN-2005-1519 DNS lookups unreliable on untrusted networks * Tue Apr 26 2005 Jay Fenlason 7:2.5.STABLE9-5 - more upstream patches, including a fix for CVE-1999-0710 cachemgr malicious use * Fri Apr 22 2005 Jay Fenlason 7:2.5.STABLE9-4 - More upstream patches, including the fixed 2GB patch. - include the -libbind patch, which prevents squid from using the optional -lbind library, even if it's installed. * Tue Mar 15 2005 Jay Fenlason 7:2.5.STABLE9-2 - New upstream version, with 14 upstream patches. * Wed Feb 16 2005 Jay Fenlason 7:2.5.STABLE8-2 - new upstream version with 4 upstream patches. - Reorganize spec file to apply upstream patches first * Tue Feb 1 2005 Jay Fenlason 7:2.5.STABLE7-4 - Include two more upstream patches for security vulns: bz#146783 Correct handling of oversized reply headers bz#146778 CAN-2005-0211 Buffer overflow in WCCP recvfrom() call * Tue Jan 25 2005 Jay Fenlason 7:2.5.STABLE7-3 - Include more upstream patches, including two for security holes. * Tue Jan 18 2005 Jay Fenlason 7:2.5.STABLE7-2 - Add a triggerin on samba-common to make /var/cache/samba/winbindd_privileged accessable so that ntlm_auth will work. It needs to be in this rpm, because the Samba RPM can't assume the squid user exists. Note that this will only work if the Samba RPM is recent enough to create that directory at install time instead of at winbindd startup time. That should be samba-common-3.0.0-15 or later. This fixes bugzilla #103726 - Clean up extra whitespace in this spec file. - Add additional upstream patches. (Now 18 upstream patches). - patch #112 closes CAN-2005-0096 and CAN-2005-0097, remote DOS security holes. - patch #113 closes CAN-2005-0094, a remote buffer-overflow DOS security hole. - patch #114 closes CAN-2005-0095, a remote DOS security hole. - Remove the -nonbl (replaced by #104) and -close (replaced by #111) patches, since they're now fixed by upstream patches. * Mon Oct 25 2004 Jay Fenlason 7:2.5.STABLE7-1 - new upstream version, with 3 upstream patches. Updated the -build and -config patches - Include patch from Ulrich Drepper to more intelligently close all file descriptors. * Mon Oct 18 2004 Jay Fenlason 7:2.5.STABLE6-3 - include patch from Ulrich Drepper to stop problems with O_NONBLOCK. This closes #136049 * Tue Oct 12 2004 Jay Fenlason 7:2.5.STABLE6-2 - Include fix for CAN-2004-0918 * Tue Sep 28 2004 Jay Fenlason 7:2.5.STABLE6-1 - New upstream version, with 32 upstream patches. This closes #133970, #133931, #131728, #128143, #126726 - Change the permissions on /etc/squid/squid.conf to 640. This closes bugzilla #125007 * Mon Jun 28 2004 Jay Fenlason 7:2.5STABLE5-5 - Merge current upstream patches. - Fix the -pipe patch to have the correct name of the winbind pipe. * Tue Jun 15 2004 Elliot Lee - rebuilt * Mon Apr 5 2004 Jay Fenlason 7:2.5.STABLE5-2 - Include the first 10 upstream patches - Add a patch for the correct location of the winbindd pipe. This closes bugzilla #107561 - Remove the change to ssl_support.c from squid-2.5.STABLE3-build patch This closes #117851 - Include /etc/pam.d/squid . This closes #113404 - Include a patch to close #111254 (assignment in assert) - Change squid.init to put output messages in /var/log/squid/squid.out This closes #104697 - Only useradd the squid user if it doesn't already exist, and error out if the useradd fails. This closes #118718. * Tue Mar 2 2004 Jay Fenlason 7:2.5.STABLE5-1 - New upstream version, obsoletes many patches. - Fix --datadir passed to configure. Configure automatically adds /squid so we shouldn't. - Remove the problematic triggerpostun trigger, since is's broken, and FC2 never shipped with that old version. - add %%{?_smp_mflags} to make line. * Tue Mar 02 2004 Elliot Lee - rebuilt * Mon Feb 23 2004 Tim Waugh - Use ':' instead of '.' as separator for chown. * Fri Feb 20 2004 Jay Fenlason 7:2.5.STABLE4-3 - Clean up the spec file to work on 64-bit platforms (use %%{_libdir} instead of /usr/lib, etc) - Make the release number in the changelog section agree with reality. - use -fPIE rather than -fpie. s390 fails with just -fpie * Fri Feb 13 2004 Elliot Lee - rebuilt * Thu Feb 5 2004 Jay Fenlason - Incorporate many upstream patches - Include many spec file changes from D.Johnson * Tue Sep 23 2003 Jay Fenlason 7:2.5.STABLE4-1 - New upstream version. - Fix the Source: line in this spec file to point to the correct URL. - redo the -location patch to work with the new upstream version. * Mon Jun 30 2003 Jay Fenlason 7:2.5.STABLE3-0 - Spec file change to enable the nul storage module. bugzilla #74654 - Upgrade to 2.5STABLE3 with current official patches. - Added --enable-auth="basic,ntlm": closes bugzilla #90145 - Added --with-winbind-auth-challenge: closes bugzilla #78691 - Added --enable-useragent-log and --enable-referer-log, closes - bugzilla #91884 # - Changed configure line to enable pie # (Disabled due to broken compilers on ia64 build machines) #- Patched to increase the maximum number of file descriptors #72896 #- (disabled for now--needs more testing) * Wed Jun 04 2003 Elliot Lee - rebuilt * Wed Jan 22 2003 Tim Powers - rebuilt * Wed Jan 15 2003 Bill Nottingham 7:2.5.STABLE1-1 - update to 2.5.STABLE1 * Wed Nov 27 2002 Tim Powers 7:2.4.STABLE7-5 - remove unpackaged files from the buildroot * Tue Aug 27 2002 Nalin Dahyabhai 2.4.STABLE7-4 - rebuild * Wed Jul 31 2002 Karsten Hopp - don't raise an error if the config file is incomplete set defaults instead (#69322, #70065) * Thu Jul 18 2002 Bill Nottingham 2.4.STABLE7-2 - don't strip binaries * Mon Jul 8 2002 Bill Nottingham - update to 2.4.STABLE7 - fix restart (#53761) * Tue Jun 25 2002 Bill Nottingham - add various upstream bugfix patches * Fri Jun 21 2002 Tim Powers - automated rebuild * Thu May 23 2002 Tim Powers - automated rebuild * Fri Mar 22 2002 Bill Nottingham - 2.4.STABLE6 - turn off carp * Mon Feb 18 2002 Bill Nottingham - 2.4.STABLE3 + patches - turn off HTCP at request of maintainers - leave SNMP enabled in the build, but disabled in the default config * Fri Jan 25 2002 Tim Powers - rebuild against new libssl * Wed Jan 09 2002 Tim Powers - automated rebuild * Mon Jan 07 2002 Florian La Roche - require linuxdoc-tools instead of sgml-tools * Tue Sep 25 2001 Bill Nottingham - update to 2.4.STABLE2 * Mon Sep 24 2001 Bill Nottingham - add patch to fix FTP crash * Mon Aug 6 2001 Bill Nottingham - fix uninstall (#50411) * Mon Jul 23 2001 Bill Nottingham - add some buildprereqs (#49705) * Sun Jul 22 2001 Bill Nottingham - update FAQ * Tue Jul 17 2001 Bill Nottingham - own /etc/squid, /usr/lib/squid * Tue Jun 12 2001 Nalin Dahyabhai - rebuild in new environment - s/Copyright:/License:/ * Tue Apr 24 2001 Bill Nottingham - update to 2.4.STABLE1 + patches - enable some more configure options (#24981) - oops, ship /etc/sysconfig/squid * Fri Mar 2 2001 Nalin Dahyabhai - rebuild in new environment * Tue Feb 6 2001 Trond Eivind Glomsr??d - improve i18n - make the initscript use the standard OK/FAILED * Tue Jan 23 2001 Bill Nottingham - change i18n mechanism * Fri Jan 19 2001 Bill Nottingham - fix path references in QUICKSTART (#15114) - fix initscript translations (#24086) - fix shutdown logic (#24234), patch from - add /etc/sysconfig/squid for daemon options & shutdown timeouts - three more bugfixes from the Squid people - update FAQ.sgml - build and ship auth modules (#23611) * Thu Jan 11 2001 Bill Nottingham - initscripts translations * Mon Jan 8 2001 Bill Nottingham - add patch to use mkstemp (greg at wirex.com) * Fri Dec 01 2000 Bill Nottingham - rebuild because of broken fileutils * Sat Nov 11 2000 Bill Nottingham - fix the acl matching cases (only need the second patch) * Tue Nov 7 2000 Bill Nottingham - add two patches to fix domain ACLs - add 2 bugfix patches from the squid people * Fri Jul 28 2000 Bill Nottingham - clean up init script; fix condrestart - update to STABLE4, more bugfixes - update FAQ * Tue Jul 18 2000 Nalin Dahyabhai - fix syntax error in init script - finish adding condrestart support * Fri Jul 14 2000 Bill Nottingham - move initscript back * Wed Jul 12 2000 Prospector - automatic rebuild * Thu Jul 6 2000 Bill Nottingham - prereq /etc/init.d - add bugfix patch - update FAQ * Thu Jun 29 2000 Bill Nottingham - fix init script * Tue Jun 27 2000 Bill Nottingham - don't prereq new initscripts * Mon Jun 26 2000 Bill Nottingham - initscript munging * Sat Jun 10 2000 Bill Nottingham - rebuild for exciting FHS stuff * Wed May 31 2000 Bill Nottingham - fix init script again (#11699) - add --enable-delay-pools (#11695) - update to STABLE3 - update FAQ * Fri Apr 28 2000 Bill Nottingham - fix init script (#11087) * Fri Apr 7 2000 Bill Nottingham - three more bugfix patches from the squid people - buildprereq jade, sgmltools * Sun Mar 26 2000 Florian La Roche - make %%pre more portable * Thu Mar 16 2000 Bill Nottingham - bugfix patches - fix dependency on /usr/local/bin/perl * Sat Mar 4 2000 Bill Nottingham - 2.3.STABLE2 * Mon Feb 14 2000 Bill Nottingham - Yet More Bugfix Patches * Tue Feb 8 2000 Bill Nottingham - add more bugfix patches - --enable-heap-replacement * Mon Jan 31 2000 Cristian Gafton - rebuild to fix dependencies * Fri Jan 28 2000 Bill Nottingham - grab some bugfix patches * Mon Jan 10 2000 Bill Nottingham - 2.3.STABLE1 (whee, another serial number) * Tue Dec 21 1999 Bernhard Rosenkraenzer - Fix compliance with ftp RFCs (http://www.wu-ftpd.org/broken-clients.html) - Work around a bug in some versions of autoconf - BuildPrereq sgml-tools - we're using sgml2html * Mon Oct 18 1999 Bill Nottingham - add a couple of bugfix patches * Wed Oct 13 1999 Bill Nottingham - update to 2.2.STABLE5. - update FAQ, fix URLs. * Sat Sep 11 1999 Cristian Gafton - transform restart in reload and add restart to the init script * Tue Aug 31 1999 Bill Nottingham - add squid user as user 23. * Mon Aug 16 1999 Bill Nottingham - initscript munging - fix conflict between logrotate & squid -k (#4562) * Wed Jul 28 1999 Bill Nottingham - put cachemgr.cgi back in /usr/lib/squid * Wed Jul 14 1999 Bill Nottingham - add webdav bugfix patch (#4027) * Mon Jul 12 1999 Bill Nottingham - fix path to config in squid.init (confuses linuxconf) * Wed Jul 7 1999 Bill Nottingham - 2.2.STABLE4 * Wed Jun 9 1999 Dale Lovelace - logrotate changes - errors from find when /var/spool/squid or - /var/log/squid didn't exist * Thu May 20 1999 Bill Nottingham - 2.2.STABLE3 * Thu Apr 22 1999 Bill Nottingham - update to 2.2.STABLE.2 * Sun Apr 18 1999 Bill Nottingham - update to 2.2.STABLE1 * Thu Apr 15 1999 Bill Nottingham - don't need to run groupdel on remove - fix useradd * Mon Apr 12 1999 Bill Nottingham - fix effective_user (bug #2124) * Mon Apr 5 1999 Bill Nottingham - strip binaries * Thu Apr 1 1999 Bill Nottingham - duh. adduser does require a user name. - add a serial number * Tue Mar 30 1999 Bill Nottingham - add an adduser in %%pre, too * Thu Mar 25 1999 Bill Nottingham - oog. chkconfig must be in %%preun, not %%postun * Wed Mar 24 1999 Bill Nottingham - switch to using group squid - turn off icmp (insecure) - update to 2.2.DEVEL3 - build FAQ docs from source * Tue Mar 23 1999 Bill Nottingham - logrotate changes * Sun Mar 21 1999 Cristian Gafton - auto rebuild in the new build environment (release 4) * Wed Feb 10 1999 Bill Nottingham - update to 2.2.PRE2 * Wed Dec 30 1998 Bill Nottingham - cache & log dirs shouldn't be world readable - remove preun script (leave logs & cache @ uninstall) * Tue Dec 29 1998 Bill Nottingham - fix initscript to get cache_dir correct * Fri Dec 18 1998 Bill Nottingham - update to 2.1.PATCH2 - merge in some changes from RHCN version * Sat Oct 10 1998 Cristian Gafton - strip binaries - version 1.1.22 * Sun May 10 1998 Cristian Gafton - don't make packages conflict with each other... * Sat May 02 1998 Cristian Gafton - added a proxy auth patch from Alex deVries - fixed initscripts * Thu Apr 09 1998 Cristian Gafton - rebuilt for Manhattan * Fri Mar 20 1998 Cristian Gafton - upgraded to 1.1.21/1.NOVM.21 * Mon Mar 02 1998 Cristian Gafton - updated the init script to use reconfigure option to restart squid instead of shutdown/restart (both safer and quicker) * Sat Feb 07 1998 Cristian Gafton - upgraded to 1.1.20 - added the NOVM package and tryied to reduce the mess in the spec file * Wed Jan 7 1998 Cristian Gafton - first build against glibc - patched out the use of setresuid(), which is available only on kernels 2.1.44 and later From sbose at fedoraproject.org Fri Jul 17 12:15:47 2009 From: sbose at fedoraproject.org (sbose) Date: Fri, 17 Jul 2009 12:15:47 +0000 (UTC) Subject: rpms/ctdb/EL-5 .cvsignore, 1.6, 1.7 ctdb.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090717121547.A867B11C00CF@cvs1.fedora.phx.redhat.com> Author: sbose Update of /cvs/pkgs/rpms/ctdb/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28730 Modified Files: .cvsignore ctdb.spec sources Log Message: Update to ctdb version 1.0.87 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 1 Jul 2009 09:40:36 -0000 1.6 +++ .cvsignore 17 Jul 2009 12:15:17 -0000 1.7 @@ -1 +1 @@ -ctdb-1.0.86.tar.bz2 +ctdb-1.0.87.tar.bz2 Index: ctdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/ctdb.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ctdb.spec 1 Jul 2009 09:40:36 -0000 1.8 +++ ctdb.spec 17 Jul 2009 12:15:17 -0000 1.9 @@ -2,7 +2,7 @@ Summary: A Clustered Database based on Samba's Trivial Database (TDB) Name: ctdb -Version: 1.0.86 +Version: 1.0.87 Release: 1%{?dist} License: GPLv3+ Group: System Environment/Daemons @@ -132,6 +132,44 @@ fi %{_libdir}/pkgconfig/ctdb.pc %changelog +* Fri Jul 17 2009 Sumit Bose - 1.0.87-1 + - Update to ctdb version 1.0.87 + +* Fri Jul 17 2009 : Version 1.0.87 + - Add a new event "stopped" that is called when a node is stopped. + - Documentation of the STOPPED flag and the stop/continue commands + - Make it possible to start a node in STOPPED mode. + - Add a new node flag : STOPPED and commands "ctdb stop" "ctdb continue" + These commands are similar to "diasble/enable" but will also remove the node + from the vnnmap, while disable only fails all ip addresses over. + - tests for NFS , CIFS by martins + - major updates to the init script by martins + - Send gratious arps with a 1.1 second stride instead of a 1 second stride to + workaround interesting "features" of common linux stacks. + - Various test enhancements from martins: + - additional other tests + - add tests for grat arp generation, ping during failover, ssh and failover + - New/updated tcp tickle tests and supprot functions + - provide better debugging when a test fails + - make ctdbd restarts more reliable in the tests + - update the "wait bar" to make the wait progress in tests more obvious + - various cleanups + - when dispatching a message to a handler, make the message a real talloc + object so that we can reparent the object in the tallic hierarchy. + - document the ipreallocate command + - Updates to enable/disable to use the ipreallocate command to block until the + following ipreallocation has completed. + - Update the main daemon and the tools to allow debug level to be a string + instead of an integer. + - Update the sysconfig file to show using string literals instead of numeric + values for the debuglevels used. + - If no debuglevel is specific, make "ctdb setdebug" show the available + options. + - When trying to allocate network packets, add explicit checks if the network + transport has been shutdown before trying and failing, to make log messages + easier to read. Add this extra check and logging to every plave packets are + allocated. + * Wed Jul 1 2009 Sumit Bose - 1.0.86-1 - Update to ctdb version 1.0.86 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 09:40:36 -0000 1.6 +++ sources 17 Jul 2009 12:15:17 -0000 1.7 @@ -1 +1 @@ -133d4e7d601e603147d6c006654983e8 ctdb-1.0.86.tar.bz2 +f925406352e087c9f32ec3084578c29e ctdb-1.0.87.tar.bz2 From rdieter at fedoraproject.org Fri Jul 17 12:37:15 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 17 Jul 2009 12:37:15 +0000 (UTC) Subject: rpms/qscintilla/devel qscintilla.spec,1.25,1.26 Message-ID: <20090717123715.9CAA111C00CF@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/qscintilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3172/devel Modified Files: qscintilla.spec Log Message: add python macro for easy bootstrapping Index: qscintilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/qscintilla/devel/qscintilla.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- qscintilla.spec 17 Jun 2009 14:14:34 -0000 1.25 +++ qscintilla.spec 17 Jul 2009 12:37:15 -0000 1.26 @@ -1,6 +1,9 @@ -%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + %define scintilla_ver 1.78 +# bootstrapping -python +%define python 1 + Name: qscintilla Version: 2.4 Release: 1%{?dist} @@ -16,10 +19,14 @@ BuildRoot: %{_tmppath}/%{name}-%{version Patch1: QScintilla-2-gpl-Qt4-incpath.patch BuildRequires: qt4-devel + # for -python +%if 0%{?python} +%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %global pyqt4_version 4.5 BuildRequires: PyQt4-devel >= %{pyqt4_version} BuildRequires: chrpath +%endif %description @@ -85,6 +92,7 @@ pushd designer-Qt4 make %{?_smp_mflags} popd +%if 0%{?python} pushd Python %{__python} configure.py \ -c -j 3 \ @@ -92,6 +100,7 @@ pushd Python -o ../Qt4 make %{?_smp_mflags} popd +%endif %install @@ -99,10 +108,12 @@ rm -rf %{buildroot} make -C Qt4 install INSTALL_ROOT=%{buildroot} make -C designer-Qt4 install INSTALL_ROOT=%{buildroot} +%if 0%{?python} make -C Python install DESTDIR=%{buildroot} chrpath --list %{buildroot}%{python_sitearch}/PyQt4/Qsci.so chrpath --delete %{buildroot}%{python_sitearch}/PyQt4/Qsci.so +%endif %clean @@ -133,6 +144,7 @@ rm -rf %{buildroot} %{_qt4_headerdir}/Qsci/ %{_qt4_libdir}/libqscintilla2.so +%if 0%{?python} %files python %defattr(-,root,root,-) %{python_sitearch}/PyQt4/Qsci.so @@ -140,6 +152,7 @@ rm -rf %{buildroot} %files python-devel %defattr(-,root,root,-) %{_datadir}/sip/PyQt4/Qsci/ +%endif %changelog From choeger at fedoraproject.org Fri Jul 17 12:37:39 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Fri, 17 Jul 2009 12:37:39 +0000 (UTC) Subject: rpms/offlineimap/devel .cvsignore, 1.9, 1.10 offlineimap.spec, 1.23, 1.24 sources, 1.9, 1.10 Message-ID: <20090717123739.71B9411C00CF@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3326 Modified Files: .cvsignore offlineimap.spec sources Log Message: update to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 2 Jul 2009 08:59:43 -0000 1.9 +++ .cvsignore 17 Jul 2009 12:37:39 -0000 1.10 @@ -1 +1 @@ -offlineimap-6.1.0.tar.gz +offlineimap-6.1.2.tar.gz Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/offlineimap.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- offlineimap.spec 2 Jul 2009 09:04:21 -0000 1.23 +++ offlineimap.spec 17 Jul 2009 12:37:39 -0000 1.24 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: offlineimap -Version: 6.1.0 +Version: 6.1.2 Release: 1%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support @@ -16,9 +16,6 @@ BuildRequires: docbook-utils BuildArch: noarch -Patch0: fix-socket.ssl-deprecation-on-python-2.6.patch - - %description OfflineIMAP is a tool to simplify your e-mail reading. With OfflineIMAP, you can read the same mailbox from multiple computers. You get a @@ -32,7 +29,6 @@ not provide disconnected operation. %prep %setup -q -n %name-%version -%patch0 -p1 %build python setup.py build @@ -61,8 +57,12 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/offlineimap-%{version}-py*.egg-info %{_mandir}/man1/offlineimap.1.gz - %changelog +* Fri Jul 17 2009 Christoph H??ger - 6.1.2-1 +- Update to latest version +- remove patch -> upstream +- fixes #510036 + * Thu Jul 02 2009 Christoph H??ger - 6.1.0-1 - Update to latest version - Add a temporary patch for socket.ssl deprecation Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 2 Jul 2009 08:59:44 -0000 1.9 +++ sources 17 Jul 2009 12:37:39 -0000 1.10 @@ -1 +1 @@ -3b1e41d475ef73909d64489b3b2494dd offlineimap-6.1.0.tar.gz +4cf69605c70ecf4d21ea86cff0d5c0a3 offlineimap-6.1.2.tar.gz From rdieter at fedoraproject.org Fri Jul 17 12:37:45 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 17 Jul 2009 12:37:45 +0000 (UTC) Subject: rpms/qscintilla/F-11 qscintilla.spec,1.24,1.25 Message-ID: <20090717123745.3EAB411C00CF@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/qscintilla/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3172/F-11 Modified Files: qscintilla.spec Log Message: add python macro for easy bootstrapping Index: qscintilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/qscintilla/F-11/qscintilla.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- qscintilla.spec 25 Feb 2009 18:01:16 -0000 1.24 +++ qscintilla.spec 17 Jul 2009 12:37:14 -0000 1.25 @@ -1,6 +1,9 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + %define scintilla_ver 1.76 +# bootstrapping -python +%define python 1 + Name: qscintilla Version: 2.3.2 Release: 3%{?dist} @@ -16,9 +19,11 @@ BuildRoot: %{_tmppath}/%{name}-%{version Patch1: QScintilla-2-gpl-Qt4-incpath.patch BuildRequires: qt4-devel -# for -python +%if 0%{?python} +%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} BuildRequires: PyQt4-devel BuildRequires: chrpath +%endif %description @@ -78,18 +83,19 @@ sed -i 's/\r//' LICENSE.GPL2 GPL_EXCEPTI %build pushd Qt4 -sed -i 's/INSTALLS += header trans qsci/INSTALLS += header trans qsci target/g' qscintilla.pro +#sed -i 's/INSTALLS += header trans qsci/INSTALLS += header trans qsci target/g' qscintilla.pro %{_qt4_qmake} qscintilla.pro -echo 'build: $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) $(OBJCOMP)' >> Makefile +#echo 'build: $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) $(OBJCOMP)' >> Makefile make %{?_smp_mflags} popd pushd designer-Qt4 %{_qt4_qmake} designer.pro -echo 'build: $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) $(OBJCOMP)' >> Makefile +#echo 'build: $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) $(OBJCOMP)' >> Makefile make %{?_smp_mflags} popd +%if 0%{?python} pushd Python %{__python} configure.py \ -c -j 3 \ @@ -97,6 +103,7 @@ pushd Python -o ../Qt4 make %{?_smp_mflags} popd +%endif %install @@ -104,10 +111,12 @@ rm -rf %{buildroot} make -C Qt4 install INSTALL_ROOT=%{buildroot} make -C designer-Qt4 install INSTALL_ROOT=%{buildroot} +%if 0%{?python} make -C Python install DESTDIR=%{buildroot} chrpath --list %{buildroot}%{python_sitearch}/PyQt4/Qsci.so chrpath --delete %{buildroot}%{python_sitearch}/PyQt4/Qsci.so +%endif %clean @@ -138,6 +147,7 @@ rm -rf %{buildroot} %{_qt4_headerdir}/Qsci/ %{_qt4_libdir}/libqscintilla2.so +%if 0%{?python} %files python %defattr(-,root,root,-) %{python_sitearch}/PyQt4/Qsci.so @@ -145,6 +155,7 @@ rm -rf %{buildroot} %files python-devel %defattr(-,root,root,-) %{_datadir}/sip/PyQt4/Qsci/ +%endif %changelog From rdieter at fedoraproject.org Fri Jul 17 12:39:17 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 17 Jul 2009 12:39:17 +0000 (UTC) Subject: rpms/qscintilla/F-11 qscintilla.spec,1.25,1.26 Message-ID: <20090717123917.CDE0B11C00E4@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/qscintilla/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4085 Modified Files: qscintilla.spec Log Message: bootstrap for arm Index: qscintilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/qscintilla/F-11/qscintilla.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- qscintilla.spec 17 Jul 2009 12:37:14 -0000 1.25 +++ qscintilla.spec 17 Jul 2009 12:39:17 -0000 1.26 @@ -2,11 +2,11 @@ %define scintilla_ver 1.76 # bootstrapping -python -%define python 1 +#define python 1 Name: qscintilla Version: 2.3.2 -Release: 3%{?dist} +Release: 3%{?dist}.1 Summary: A Scintilla port to Qt # matches up (pretty much) with qt4 License: GPLv3 or GPLv2 with exceptions From jreznik at fedoraproject.org Fri Jul 17 12:41:10 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Fri, 17 Jul 2009 12:41:10 +0000 (UTC) Subject: rpms/kde-style-skulpture/devel .cvsignore, 1.2, 1.3 kde-style-skulpture.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090717124110.4C85F11C00CF@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-style-skulpture/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4711 Modified Files: .cvsignore kde-style-skulpture.spec sources Log Message: * Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 - update to 0.2.3 (minor bug fixes) - removed F10 stuff Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Mar 2009 12:02:42 -0000 1.2 +++ .cvsignore 17 Jul 2009 12:40:39 -0000 1.3 @@ -1 +1 @@ -59031-skulpture-0.2.2.tar.bz2 +59031-skulpture-0.2.3.tar.bz2 Index: kde-style-skulpture.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/devel/kde-style-skulpture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kde-style-skulpture.spec 30 Mar 2009 12:35:22 -0000 1.2 +++ kde-style-skulpture.spec 17 Jul 2009 12:40:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: kde-style-skulpture -Version: 0.2.2 -Release: 5%{?dist} +Version: 0.2.3 +Release: 1%{?dist} URL: http://www.kde-look.org/content/show.php/Skulpture?content=59031 Source: http://www.kde-look.org/CONTENT/content-files/59031-skulpture-%{version}.tar.bz2 Group: User Interface/Desktops @@ -12,11 +12,6 @@ BuildRequires: kdebase-workspace-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Summary: Classical three-dimensional style for KDE -# doesn't build on PPC with F10 gcc 4.3 -# bz#492858 -%if 0%{?fedora} == 10 -ExcludeArch: ppc -%endif %{?_kde4_macros_api:Requires: kde4-macros(api) = %{_kde4_macros_api} } @@ -74,6 +69,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 +- update to 0.2.3 (minor bug fixes) +- removed F10 stuff + * Mon Mar 30 2009 Jaroslav Reznik - 0.2.2-5 - add reference to ExcludeArch bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Mar 2009 12:02:42 -0000 1.2 +++ sources 17 Jul 2009 12:40:39 -0000 1.3 @@ -1 +1 @@ -c459a8e3071f54c0a77356909fd0a845 59031-skulpture-0.2.2.tar.bz2 +f810e03967e60d398849386418de1e91 59031-skulpture-0.2.3.tar.bz2 From choeger at fedoraproject.org Fri Jul 17 12:51:16 2009 From: choeger at fedoraproject.org (=?utf-8?q?Christoph_H=C3=B6ger?=) Date: Fri, 17 Jul 2009 12:51:16 +0000 (UTC) Subject: rpms/offlineimap/F-11 .cvsignore, 1.9, 1.10 offlineimap.spec, 1.23, 1.24 sources, 1.9, 1.10 fix-socket.ssl-deprecation-on-python-2.6.patch, 1.1, NONE Message-ID: <20090717125116.5CBC311C00CF@cvs1.fedora.phx.redhat.com> Author: choeger Update of /cvs/pkgs/rpms/offlineimap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8340 Modified Files: .cvsignore offlineimap.spec sources Removed Files: fix-socket.ssl-deprecation-on-python-2.6.patch Log Message: update to latest version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 2 Jul 2009 18:04:36 -0000 1.9 +++ .cvsignore 17 Jul 2009 12:51:15 -0000 1.10 @@ -1 +1 @@ -offlineimap-6.1.0.tar.gz +offlineimap-6.1.2.tar.gz Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/offlineimap.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- offlineimap.spec 2 Jul 2009 18:45:57 -0000 1.23 +++ offlineimap.spec 17 Jul 2009 12:51:15 -0000 1.24 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: offlineimap -Version: 6.1.0 -Release: 2%{?dist} +Version: 6.1.2 +Release: 1%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support License: GPLv2+ @@ -16,9 +16,6 @@ BuildRequires: docbook-utils BuildArch: noarch -Patch0: fix-socket.ssl-deprecation-on-python-2.6.patch - - %description OfflineIMAP is a tool to simplify your e-mail reading. With OfflineIMAP, you can read the same mailbox from multiple computers. You get a @@ -32,7 +29,6 @@ not provide disconnected operation. %prep %setup -q -n %name-%version -%patch0 -p1 %build python setup.py build @@ -61,8 +57,12 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/offlineimap-%{version}-py*.egg-info %{_mandir}/man1/offlineimap.1.gz - %changelog +* Fri Jul 17 2009 Christoph H??ger - 6.1.2-1 +- Update to latest version +- remove patch -> upstream +- fixes #510036 + * Thu Jul 02 2009 Christoph H??ger - 6.1.0-1 - Update to latest version - Add a temporary patch for socket.ssl deprecation Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 2 Jul 2009 18:04:36 -0000 1.9 +++ sources 17 Jul 2009 12:51:16 -0000 1.10 @@ -1 +1 @@ -3b1e41d475ef73909d64489b3b2494dd offlineimap-6.1.0.tar.gz +4cf69605c70ecf4d21ea86cff0d5c0a3 offlineimap-6.1.2.tar.gz --- fix-socket.ssl-deprecation-on-python-2.6.patch DELETED --- From jreznik at fedoraproject.org Fri Jul 17 12:52:41 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Fri, 17 Jul 2009 12:52:41 +0000 (UTC) Subject: rpms/kde-style-skulpture/F-11 .cvsignore, 1.2, 1.3 kde-style-skulpture.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090717125241.BE41311C00CF@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-style-skulpture/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8684 Modified Files: .cvsignore kde-style-skulpture.spec sources Log Message: * Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 - update to 0.2.3 (minor bug fixes) - removed F10 stuff Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Mar 2009 12:02:42 -0000 1.2 +++ .cvsignore 17 Jul 2009 12:52:11 -0000 1.3 @@ -1 +1 @@ -59031-skulpture-0.2.2.tar.bz2 +59031-skulpture-0.2.3.tar.bz2 Index: kde-style-skulpture.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-11/kde-style-skulpture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kde-style-skulpture.spec 30 Mar 2009 12:35:22 -0000 1.2 +++ kde-style-skulpture.spec 17 Jul 2009 12:52:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: kde-style-skulpture -Version: 0.2.2 -Release: 5%{?dist} +Version: 0.2.3 +Release: 1%{?dist} URL: http://www.kde-look.org/content/show.php/Skulpture?content=59031 Source: http://www.kde-look.org/CONTENT/content-files/59031-skulpture-%{version}.tar.bz2 Group: User Interface/Desktops @@ -12,11 +12,6 @@ BuildRequires: kdebase-workspace-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Summary: Classical three-dimensional style for KDE -# doesn't build on PPC with F10 gcc 4.3 -# bz#492858 -%if 0%{?fedora} == 10 -ExcludeArch: ppc -%endif %{?_kde4_macros_api:Requires: kde4-macros(api) = %{_kde4_macros_api} } @@ -74,6 +69,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 +- update to 0.2.3 (minor bug fixes) +- removed F10 stuff + * Mon Mar 30 2009 Jaroslav Reznik - 0.2.2-5 - add reference to ExcludeArch bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Mar 2009 12:02:42 -0000 1.2 +++ sources 17 Jul 2009 12:52:11 -0000 1.3 @@ -1 +1 @@ -c459a8e3071f54c0a77356909fd0a845 59031-skulpture-0.2.2.tar.bz2 +f810e03967e60d398849386418de1e91 59031-skulpture-0.2.3.tar.bz2 From mlichvar at fedoraproject.org Fri Jul 17 12:53:22 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Fri, 17 Jul 2009 12:53:22 +0000 (UTC) Subject: rpms/chrony/devel chrony-1.23-editline.patch, NONE, 1.1 chrony.spec, 1.4, 1.5 chronyd.init, 1.1, 1.2 Message-ID: <20090717125322.B613C11C00CF@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/chrony/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9705 Modified Files: chrony.spec chronyd.init Added Files: chrony-1.23-editline.patch Log Message: - switch to editline - support arbitrary chronyc commands in init script chrony-1.23-editline.patch: client.c | 4 ++++ configure | 14 ++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) --- NEW FILE chrony-1.23-editline.patch --- commit 84cbeeadd1d3cbdd35a85f9866d08f5507fcaf62 Author: Miroslav Lichvar Date: Fri Jul 17 12:38:37 2009 +0200 Add editline support GNU readline recently changed license to GPLv3+ which makes it incompatible with chrony (GPLv2). This patch adds support for editline library (BSD license). diff --git a/client.c b/client.c index b4f65f0..d034982 100644 --- a/client.c +++ b/client.c @@ -41,9 +41,13 @@ #include "memory.h" #ifdef FEAT_READLINE +#ifdef USE_EDITLINE +#include +#else #include #include #endif +#endif #ifdef HAS_STDINT_H #include diff --git a/configure b/configure index 1ff2bbf..3762903 100755 --- a/configure +++ b/configure @@ -129,6 +129,7 @@ for instance \`--prefix=$HOME'. For better control, use the options below. --disable-readline Don't try to use GNU readline + --with-editline Use editline library instead of readline --readline-dir=DIR Specify parent of readline include and lib directories --readline-inc-dir=DIR Specify where readline include directory is --readline-lib-dir=DIR Specify where readline lib directory is @@ -174,6 +175,7 @@ SYSDEFS="" # Support for readline (on by default) feat_readline=1 +use_editline=0 feat_rtc=1 feat_linuxcaps=0 readline_lib="" @@ -195,6 +197,9 @@ do --disable-readline ) feat_readline=0 ;; + --with-editline ) + use_editline=1 + ;; --with-readline-library=* ) readline_lib=-L`echo $option | sed -e 's/^.*=//;'` ;; @@ -341,8 +346,13 @@ else fi if [ $feat_readline = "1" ]; then - READLINE_COMPILE="-DFEAT_READLINE=1 $readline_inc" - READLINE_LINK="$readline_lib $ncurses_lib -lreadline -lncurses" + if [ $use_editline = "1" ]; then + READLINE_COMPILE="-DFEAT_READLINE=1 -DUSE_EDITLINE=1 $readline_inc" + READLINE_LINK="$readline_lib -ledit" + else + READLINE_COMPILE="-DFEAT_READLINE=1 $readline_inc" + READLINE_LINK="$readline_lib $ncurses_lib -lreadline -lncurses" + fi else READLINE_COMPILE="" READLINE_LINK="" Index: chrony.spec =================================================================== RCS file: /cvs/pkgs/rpms/chrony/devel/chrony.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- chrony.spec 8 Jun 2009 08:01:49 -0000 1.4 +++ chrony.spec 17 Jul 2009 12:53:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: chrony Version: 1.23 -Release: 5.20081106gitbe42b4%{?dist} +Release: 6.20081106gitbe42b4%{?dist} Summary: An NTP client/server Group: System Environment/Daemons @@ -20,9 +20,10 @@ Patch3: chrony-1.23-gethost.patc Patch4: chrony-1.23-res.patch Patch5: chrony-1.23-cap.patch Patch6: chrony-1.23-s390.patch +Patch7: chrony-1.23-editline.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libcap-devel readline-devel bison texinfo +BuildRequires: libcap-devel libedit-devel bison texinfo Requires(pre): shadow-utils Requires(post): /sbin/chkconfig /sbin/install-info @@ -44,16 +45,14 @@ cp -p %{SOURCE6} . %patch4 -p1 -b .res %patch5 -p1 -b .cap %patch6 -p1 -b .s390 - -# don't link with ncurses -sed -i 's|-lncurses||' configure +%patch7 -p1 -b .editline %build bison -o getdate.c getdate.y export CFLAGS="$RPM_OPT_FLAGS -pie -fpie" # configure doesn't support --bindir --sbindir options, install manually -./configure --enable-linuxcaps +./configure --enable-linuxcaps --with-editline make %{?_smp_mflags} all docs %install @@ -125,6 +124,10 @@ fi %dir %attr(-,chrony,chrony) %{_localstatedir}/log/chrony %changelog +* Fri Jul 17 2009 Miroslav Lichvar 1.23-6.20081106gitbe42b4 +- switch to editline +- support arbitrary chronyc commands in init script + * Mon Jun 08 2009 Dan Horak 1.23-5.20081106gitbe42b4 - add patch with support for s390/s390x Index: chronyd.init =================================================================== RCS file: /cvs/pkgs/rpms/chrony/devel/chronyd.init,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chronyd.init 24 Nov 2008 12:44:12 -0000 1.1 +++ chronyd.init 17 Jul 2009 12:53:22 -0000 1.2 @@ -150,8 +150,12 @@ case "$1" in rh_status_q || exit 7 chrony_command $1 ;; + command) + rh_status_q || exit 7 + chrony_command "$2" + ;; *) - echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|cyclelogs|online|offline}" + echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|cyclelogs|online|offline|command}" exit 2 esac exit $? From limb at fedoraproject.org Fri Jul 17 12:57:46 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 17 Jul 2009 12:57:46 +0000 (UTC) Subject: rpms/gallery2/devel gallery2-2.3-upgrade.patch, NONE, 1.1 gallery2-2.3-installer.patch, 1.1, 1.2 gallery2.spec, 1.30, 1.31 Message-ID: <20090717125746.1978611C00CF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/gallery2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11356 Modified Files: gallery2-2.3-installer.patch gallery2.spec Added Files: gallery2-2.3-upgrade.patch Log Message: upgrader patch. gallery2-2.3-upgrade.patch: index.php | 1 + 1 file changed, 1 insertion(+) --- NEW FILE gallery2-2.3-upgrade.patch --- --- upgrade/index.php~ 2008-10-18 02:15:43.000000000 -0500 +++ upgrade/index.php 2009-07-17 07:46:11.000000000 -0500 @@ -49,0 +50 @@ +require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); gallery2-2.3-installer.patch: index.php | 1 + 1 file changed, 1 insertion(+) Index: gallery2-2.3-installer.patch =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/devel/gallery2-2.3-installer.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gallery2-2.3-installer.patch 19 Jun 2009 17:31:32 -0000 1.1 +++ gallery2-2.3-installer.patch 17 Jul 2009 12:57:45 -0000 1.2 @@ -1,4 +1,4 @@ --- install/index.php~ 2009-06-19 11:58:00.000000000 -0500 +++ install/index.php 2009-06-19 11:58:00.000000000 -0500 @@ -49,0 +50 @@ -+require_once($g2Base . '/modules/core/classes/GalleryCoreApi.class'); ++require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); Index: gallery2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/devel/gallery2.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gallery2.spec 19 Jun 2009 17:31:32 -0000 1.30 +++ gallery2.spec 17 Jul 2009 12:57:45 -0000 1.31 @@ -7,7 +7,7 @@ URL: http://gallery.menalto.com Name: gallery2 Version: 2.3 Group: Applications/Publishing -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ #Source0: http://dl.sf.net/gallery/gallery-%{version}-full.zip # Tarball from upstream contains prebuilt jars, some of which are not redistributable. @@ -35,6 +35,7 @@ Obsoletes: gallery2-slideshowapplet <= 2 Patch1: gallery2-2.3-smtp.patch Patch2: gallery2-2.3-captcha.patch Patch3: gallery2-2.3-installer.patch +Patch4: gallery2-2.3-upgrade.patch %package albumselect Summary: Albumselect module for Gallery 2 @@ -689,6 +690,7 @@ subalbums/other items not shown %patch1 -p0 %patch2 -p0 %patch3 -p0 +%patch4 -p0 %build #pushd lib/tools/bin @@ -1112,6 +1114,10 @@ fi %{installprefix}/gallery2/themes/tile/ %changelog +* Fri Jul 17 2009 Jon Ciesla - 2.3-14 +- Upgrader patch, BZ 506983. +- Removed extra slash from installer patch. + * Fri Jun 19 2009 Jon Ciesla - 2.3-13 - Installer patch, BZ 506983. From xhorak at fedoraproject.org Fri Jul 17 12:58:35 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 12:58:35 +0000 (UTC) Subject: rpms/blam/F-11 blam.spec,1.29,1.30 Message-ID: <20090717125835.1567D11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/blam/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11528 Modified Files: blam.spec Log Message: * Fri Jul 17 2009 Jan Horak - 1.8.5-12 - Rebuild against newer gecko Index: blam.spec =================================================================== RCS file: /cvs/pkgs/rpms/blam/F-11/blam.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- blam.spec 30 Jun 2009 18:52:36 -0000 1.29 +++ blam.spec 17 Jul 2009 12:58:04 -0000 1.30 @@ -1,11 +1,11 @@ ## XXX: Hopefully Mono, Blam and multilib will play nicely soon... %define _libdir %{_prefix}/lib %define dbus_sharp_min_version 0.60 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 Name: blam Version: 1.8.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -138,6 +138,9 @@ update-desktop-database &> /dev/null ||: %{_mandir}/man?/%{name}.1* %changelog +* Fri Jul 17 2009 Jan Horak - 1.8.5-12 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 1.8.5-11 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 12:59:37 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 12:59:37 +0000 (UTC) Subject: rpms/chmsee/F-11 chmsee.spec,1.34,1.35 Message-ID: <20090717125937.8C48911C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/chmsee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12023 Modified Files: chmsee.spec Log Message: * Fri Jul 17 2009 Jan Horak - 1.0.1-9 - Rebuild against newer gecko Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/F-11/chmsee.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- chmsee.spec 14 Jul 2009 14:13:55 -0000 1.34 +++ chmsee.spec 17 Jul 2009 12:59:07 -0000 1.35 @@ -1,6 +1,6 @@ Name: chmsee Version: 1.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary(zh_CN): CHM ??????????????????, ?????? Gtk2+ Summary: A Gtk+2 CHM document viewer Group: Applications/Publishing @@ -108,8 +108,11 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/chmsee.png %changelog +* Fri Jul 17 2009 Jan Horak - 1.0.1-9 +- Rebuild against newer gecko + * Tue Jul 14 2009 bbbush - 1.0.1-8 -- revert to 1.0.1 as latest version crash on xulrunner-1.9.1 +- revert to 1.0.1 as latest version crash on xulrunner-1.9.1.1 * Sun Jul 12 2009 bbbush - 1.0.6-1 - update to 1.0.6 From xhorak at fedoraproject.org Fri Jul 17 13:00:13 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:00:13 +0000 (UTC) Subject: rpms/eclipse/F-11 eclipse.spec,1.631,1.632 Message-ID: <20090717130013.D741911C00E8@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/eclipse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12504 Modified Files: eclipse.spec Log Message: * Fri Jul 17 2009 Jan Horak - 1:3.4.2-13 - Rebuild against newer gecko Index: eclipse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse/F-11/eclipse.spec,v retrieving revision 1.631 retrieving revision 1.632 diff -u -p -r1.631 -r1.632 --- eclipse.spec 30 Jun 2009 18:54:09 -0000 1.631 +++ eclipse.spec 17 Jul 2009 13:00:13 -0000 1.632 @@ -29,7 +29,7 @@ Epoch: 1 Summary: An open, extensible IDE Name: eclipse Version: %{eclipse_majmin}.%{eclipse_micro} -Release: 12%{?dist} +Release: 13%{?dist} License: EPL Group: Text Editors/Integrated Development Environments (IDE) URL: http://www.eclipse.org/ @@ -155,7 +155,7 @@ Patch44: %{name}-fix-javahome64.patch # be replaced with the former when libxul.pc is fixed. # https://bugs.eclipse.org/bugs/attachment.cgi?id=131060 Patch45: %{name}-swt-buildagainstxulrunner.patch -# Work with changed interface in XULRunner 1.9.1 +# Work with changed interface in XULRunner 1.9.1.1 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=268651 # https://bugs.eclipse.org/bugs/attachment.cgi?id=130611 Patch46: %{name}-swt-xulrunner191.patch @@ -1491,6 +1491,9 @@ fi #%{_libdir}/%{name}/configuration/org.eclipse.equinox.source %changelog +* Fri Jul 17 2009 Jan Horak - 1:3.4.2-13 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 1:3.4.2-12 - Rebuild against newer gecko @@ -1510,7 +1513,7 @@ fi - Fix jdt owning dropins/jdt folder. * Thu Apr 2 2009 Andrew Overholt 1:3.4.2-7 -- Add patch from upstream to work with XULRunner 1.9.1. +- Add patch from upstream to work with XULRunner 1.9.1.1. - Red Hat bugzilla #483832 (and its duplicates). * Mon Mar 30 2009 Dennis Gilmore 1:3.4.2-6 From xhorak at fedoraproject.org Fri Jul 17 13:00:57 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:00:57 +0000 (UTC) Subject: rpms/evolution-rss/F-11 evolution-rss.spec,1.27,1.28 Message-ID: <20090717130057.6D59611C00D3@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/evolution-rss/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12832 Modified Files: evolution-rss.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.1.2-11 - Rebuild against newer gecko Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/F-11/evolution-rss.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- evolution-rss.spec 30 Jun 2009 18:56:48 -0000 1.27 +++ evolution-rss.spec 17 Jul 2009 13:00:56 -0000 1.28 @@ -1,7 +1,7 @@ Name: evolution-rss Summary: Evolution RSS Reader Version: 0.1.2 -Release: 10%{?dist} +Release: 11%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ URL: http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin @@ -83,6 +83,9 @@ fi %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server %changelog +* Fri Jul 17 2009 Jan Horak - 0.1.2-11 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.1.2-10 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:02:01 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:02:01 +0000 (UTC) Subject: rpms/galeon/F-11 galeon.spec,1.63,1.64 Message-ID: <20090717130201.18E3F11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/galeon/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13109 Modified Files: galeon.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.0.7-12 - Rebuild against newer gecko Index: galeon.spec =================================================================== RCS file: /cvs/pkgs/rpms/galeon/F-11/galeon.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- galeon.spec 30 Jun 2009 18:57:36 -0000 1.63 +++ galeon.spec 17 Jul 2009 13:01:30 -0000 1.64 @@ -1,9 +1,9 @@ -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 Summary: GNOME2 Web browser based on Mozilla Name: galeon Version: 2.0.7 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://galeon.sourceforge.net/ @@ -125,6 +125,9 @@ update-desktop-database > /dev/null 2>&1 %changelog +* Fri Jul 17 2009 Jan Horak - 2.0.7-12 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 2.0.7-11 - Rebuild against newer gecko @@ -142,7 +145,7 @@ update-desktop-database > /dev/null 2>&1 * Tue Jan 6 2009 Alex Lancaster - 2.0.7-5 - Apply modified patch for epiphany for building against xulrunner - 1.9.1 from Christopher Aillon (#478666) + 1.9.1.1 from Christopher Aillon (#478666) * Fri Dec 26 2008 Denis Leroy - 2.0.7-4 - Rebuild for newer gnome desktop library From xhorak at fedoraproject.org Fri Jul 17 13:03:04 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:03:04 +0000 (UTC) Subject: rpms/gnome-python2-extras/F-11 gnome-python2-extras.spec,1.51,1.52 Message-ID: <20090717130304.ECE0111C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-python2-extras/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13501 Modified Files: gnome-python2-extras.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.25.3-5 - Rebuild against newer gecko Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/F-11/gnome-python2-extras.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gnome-python2-extras.spec 30 Jun 2009 18:58:27 -0000 1.51 +++ gnome-python2-extras.spec 17 Jul 2009 13:02:34 -0000 1.52 @@ -5,7 +5,7 @@ %define gnome_panel_version 2.2.0 %define gnome_python_version 2.10.0 %define gtkhtml2_version 2.3.1 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 %define gtkspell_version 2.0.7 %define libgda_version 3.99.9 %define libgdl_version 2.24.0 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.25.3 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: The sources for additional. PyGNOME Python extension modules @@ -180,6 +180,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-4.0.pc %changelog +* Fri Jul 17 2009 Jan Horak - 2.25.3-5 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 2.25.3-4 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:03:40 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:03:40 +0000 (UTC) Subject: rpms/gnome-web-photo/F-11 gnome-web-photo.spec,1.23,1.24 Message-ID: <20090717130340.5176E11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-web-photo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13922 Modified Files: gnome-web-photo.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.7-4 - Rebuild against newer gecko Index: gnome-web-photo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-web-photo/F-11/gnome-web-photo.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- gnome-web-photo.spec 30 Jun 2009 18:59:17 -0000 1.23 +++ gnome-web-photo.spec 17 Jul 2009 13:03:39 -0000 1.24 @@ -1,9 +1,9 @@ -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 Summary: HTML pages thumbnailer Name: gnome-web-photo Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Applications/Internet URL: http://ftp.gnome.org/pub/GNOME/sources/gnome-web-photo/%{version}/ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-web-photo %changelog +* Fri Jul 17 2009 Jan Horak - 0.7-4 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.7-3 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:04:42 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:04:42 +0000 (UTC) Subject: rpms/google-gadgets/F-11 google-gadgets.spec,1.15,1.16 Message-ID: <20090717130442.5280D11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/google-gadgets/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14165 Modified Files: google-gadgets.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.11.0-2 - Rebuild against newer gecko Index: google-gadgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/F-11/google-gadgets.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- google-gadgets.spec 2 Jul 2009 02:19:42 -0000 1.15 +++ google-gadgets.spec 17 Jul 2009 13:04:12 -0000 1.16 @@ -4,7 +4,7 @@ Name: google-gadgets Version: 0.11.0 #Release: 0.1.%{alphatag}%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Google Gadgets for Linux Group: User Interface/Desktops @@ -208,11 +208,14 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 17 2009 Jan Horak - 0.11.0-2 +- Rebuild against newer gecko + * Wed Jul 1 2009 Michel Salim - 0.11.0-1 - Update to 0.11.0 * Sat May 2 2009 Michel Salim - 0.10.6-0.1.20090430svn1449%{?dist} -- Update to SVN checkout, for xulrunner 1.9.1 compatibility +- Update to SVN checkout, for xulrunner 1.9.1.1 compatibility * Mon Apr 27 2009 Christopher Aillon - 0.10.5-6 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:05:14 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:05:14 +0000 (UTC) Subject: rpms/hulahop/F-11 hulahop.spec,1.13,1.14 Message-ID: <20090717130514.2640211C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/hulahop/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14575 Modified Files: hulahop.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.4.9-6 - Rebuild against newer gecko Index: hulahop.spec =================================================================== RCS file: /cvs/pkgs/rpms/hulahop/F-11/hulahop.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- hulahop.spec 30 Jun 2009 19:00:58 -0000 1.13 +++ hulahop.spec 17 Jul 2009 13:05:13 -0000 1.14 @@ -2,7 +2,7 @@ Name: hulahop Version: 0.4.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A pygtk widget for embedding mozilla Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Fri Jul 17 2009 Jan Horak - 0.4.9-6 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.4.9-5 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:05:45 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:05:45 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/F-11 java-1.6.0-openjdk.spec,1.123,1.124 Message-ID: <20090717130545.3F09811C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14830 Modified Files: java-1.6.0-openjdk.spec Log Message: * Fri Jul 17 2009 Jan Horak - 1:1.6.0.0-25.b16 - Rebuild against newer gecko Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/F-11/java-1.6.0-openjdk.spec,v retrieving revision 1.123 retrieving revision 1.124 diff -u -p -r1.123 -r1.124 --- java-1.6.0-openjdk.spec 9 Jul 2009 18:16:36 -0000 1.123 +++ java-1.6.0-openjdk.spec 17 Jul 2009 13:05:44 -0000 1.124 @@ -133,7 +133,7 @@ Name: java-%{javaver}-%{origin} Version: %{javaver}.%{buildver} -Release: 24.%{openjdkver}%{?dist} +Release: 25.%{openjdkver}%{?dist} # java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons, # and this change was brought into RHEL-4. java-1.5.0-ibm packages # also included the epoch in their virtual provides. This created a @@ -962,6 +962,9 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Fri Jul 17 2009 Jan Horak - 1:1.6.0.0-25.b16 +- Rebuild against newer gecko + * Thu Jul 9 2009 Lillian Angel - 1:1.6.0-24.b16 - Added java-1.6.0-openjdk-netx.patch - Moved policytool to devel package. @@ -1496,7 +1499,7 @@ new icedtea source. - Added Requires: jpackage-utils. - Removed java-1.7.0-makefile.patch. - Updated patch list. -- Resolves rhbz#411941 +- Resolves rhbz#41.9.1.1 - Resolves rhbz#399221 - Resolves rhbz#318621 From xhorak at fedoraproject.org Fri Jul 17 13:06:46 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:06:46 +0000 (UTC) Subject: rpms/kazehakase/F-11 kazehakase.spec,1.83,1.84 Message-ID: <20090717130646.A422B11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/kazehakase/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15046 Modified Files: kazehakase.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.5.6-11.svn3771_trunk.3 - Rebuild against newer gecko Index: kazehakase.spec =================================================================== RCS file: /cvs/pkgs/rpms/kazehakase/F-11/kazehakase.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- kazehakase.spec 30 Jun 2009 19:02:43 -0000 1.83 +++ kazehakase.spec 17 Jul 2009 13:06:16 -0000 1.84 @@ -18,7 +18,7 @@ %define min_webkit_EVR 1.1.1 %if 0%{?fedora} >= 11 -%define Geckover 1.9.1 +%define Geckover 1.9.1.1 %endif %if 0%{?fedora} >= 9 && 0%{?fedora} <= 10 %define Geckover 1.9 @@ -45,7 +45,7 @@ Name: kazehakase Version: 0.5.6 -Release: %{_release}%{?dist}.2 +Release: %{_release}%{?dist}.3 Summary: Kazehakase browser using Gecko rendering engine Group: Applications/Internet @@ -319,6 +319,9 @@ desktop-file-install \ %endif %changelog +* Fri Jul 17 2009 Jan Horak - 0.5.6-11.svn3771_trunk.3 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.5.6-11.svn3771_trunk.2 - Rebuild against newer gecko @@ -367,7 +370,7 @@ desktop-file-install \ - Now WebKit >= rev 39421 is needed * Tue Dec 23 2008 Mamoru Tasaka -- F-11: Rebuild against xulrunner 1.9.1 +- F-11: Rebuild against xulrunner 1.9.1.1 * Fri Oct 31 2008 Mamoru Tasaka - 0.5.6-1 - 0.5.6 From xhorak at fedoraproject.org Fri Jul 17 13:07:48 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:07:48 +0000 (UTC) Subject: rpms/Miro/F-11 Miro.spec,1.56,1.57 Message-ID: <20090717130748.8013911C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/Miro/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15365 Modified Files: Miro.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.0.5-2 - Rebuild against newer gecko Index: Miro.spec =================================================================== RCS file: /cvs/pkgs/rpms/Miro/F-11/Miro.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- Miro.spec 1 Jul 2009 21:33:08 -0000 1.56 +++ Miro.spec 17 Jul 2009 13:07:18 -0000 1.57 @@ -1,11 +1,11 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 Name: Miro Version: 2.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 17 2009 Jan Horak - 2.0.5-2 +- Rebuild against newer gecko + * Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 - Update to latest upstream (2.0.5), fixes #507642 @@ -139,7 +142,7 @@ update-desktop-database %{_datadir}/appl - rebuild with new openssl * Tue Dec 23 2008 Caol??n McNamara - 1.2.8-4 -- Rebuild against newer gecko 1.9.1 +- Rebuild against newer gecko 1.9.1.1 * Thu Dec 18 2008 Alex Lancaster - 1.2.8-3 - Enable patch for new boost 1.37 for F-11+ From xhorak at fedoraproject.org Fri Jul 17 13:08:32 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:08:32 +0000 (UTC) Subject: rpms/mozvoikko/F-11 mozvoikko.spec,1.11,1.12 Message-ID: <20090717130832.1E67311C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/mozvoikko/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15787 Modified Files: mozvoikko.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.9.7-0.5.rc1 - Rebuild against newer gecko Index: mozvoikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozvoikko/F-11/mozvoikko.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mozvoikko.spec 30 Jun 2009 19:05:14 -0000 1.11 +++ mozvoikko.spec 17 Jul 2009 13:08:31 -0000 1.12 @@ -5,7 +5,7 @@ # update this package to 1.0. # For the xulrunner unstable requires -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 # These come from install.rdf %define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\} %define firefox_ext_id \{b676e3ff-cda7-4e0c-b2b8-74e4bb40a67a\} @@ -18,7 +18,7 @@ Name: mozvoikko Version: 0.9.7 -Release: 0.4.rc1%{?dist} +Release: 0.5.rc1%{?dist} Summary: Finnish Voikko spell-checker extension for Mozilla programs Group: Applications/Internet License: GPLv2+ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Jan Horak - 0.9.7-0.5.rc1 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.9.7-0.4.rc1 - Rebuild against newer gecko @@ -101,7 +104,7 @@ rm -rf $RPM_BUILD_ROOT - Some discussion about pkg-config and rpath in Launchpad #297169 * Fri Dec 26 2008 Ville-Pekka Vainio - 0.9.5-5 -- Rebuild against gecko 1.9.1 +- Rebuild against gecko 1.9.1.1 - Bump Release so that it's at least as high as in F10 and F9 * Mon Sep 29 2008 Ville-Pekka Vainio - 0.9.5-3 From xhorak at fedoraproject.org Fri Jul 17 13:09:06 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:09:06 +0000 (UTC) Subject: rpms/mugshot/F-11 mugshot.spec,1.44,1.45 Message-ID: <20090717130906.38BD811C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/mugshot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16014 Modified Files: mugshot.spec Log Message: * Fri Jul 17 2009 Jan Horak - 1.2.2-11 - Rebuild against newer gecko Index: mugshot.spec =================================================================== RCS file: /cvs/pkgs/rpms/mugshot/F-11/mugshot.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- mugshot.spec 30 Jun 2009 19:06:10 -0000 1.44 +++ mugshot.spec 17 Jul 2009 13:09:05 -0000 1.45 @@ -3,7 +3,7 @@ Name: mugshot Version: 1.2.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Companion software for mugshot.org Group: Applications/Internet @@ -172,6 +172,9 @@ fi %{_sysconfdir}/gconf/schemas/*.schemas %changelog +* Fri Jul 17 2009 Jan Horak - 1.2.2-11 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 1.2.2-10 - Rebuild against newer gecko @@ -374,7 +377,7 @@ fi * Wed Jul 19 2006 Colin Walters - 1.1.10-1 - 1.1.10 -* Sat Jul 15 2006 Havoc Pennington - 1.1.9-1 +* Sat Jul 15 2006 Havoc Pennington - 1.1.9.1.1 - 1.1.9 * Thu Jul 13 2006 Havoc Pennington - 1.1.8-1 From xhorak at fedoraproject.org Fri Jul 17 13:09:43 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:09:43 +0000 (UTC) Subject: rpms/ruby-gnome2/F-11 ruby-gnome2.spec,1.42,1.43 Message-ID: <20090717130943.B918A11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/ruby-gnome2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16258 Modified Files: ruby-gnome2.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.19.0-3.1 - Rebuild against newer gecko Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-gnome2/F-11/ruby-gnome2.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- ruby-gnome2.spec 15 Jul 2009 16:54:20 -0000 1.42 +++ ruby-gnome2.spec 17 Jul 2009 13:09:40 -0000 1.43 @@ -13,7 +13,7 @@ Name: ruby-gnome2 Version: 0.19.0 -Release: %{mainrel}%{?dist} +Release: %{mainrel}%{?dist}.1 Summary: Ruby binding of libgnome/libgnomeui-2.x Group: System Environment/Libraries @@ -730,6 +730,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Jan Horak - 0.19.0-3.1 +- Rebuild against newer gecko + * Thu Jul 09 2009 Mamoru Tasaka - 0.19.0-3 - Make ruby-gtkglext require ruby(opengl) From xhorak at fedoraproject.org Fri Jul 17 13:10:21 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:10:21 +0000 (UTC) Subject: rpms/perl-Gtk2-MozEmbed/F-11 perl-Gtk2-MozEmbed.spec,1.4,1.5 Message-ID: <20090717131021.8FF6C11C00E8@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16545 Modified Files: perl-Gtk2-MozEmbed.spec Log Message: * Fri Jul 17 2009 Jan Horak - 0.08-6.3 - Rebuild against newer gecko Index: perl-Gtk2-MozEmbed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/F-11/perl-Gtk2-MozEmbed.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-MozEmbed.spec 30 Jun 2009 19:07:47 -0000 1.4 +++ perl-Gtk2-MozEmbed.spec 17 Jul 2009 13:10:20 -0000 1.5 @@ -1,7 +1,7 @@ %define perlname Gtk2-MozEmbed %if 0%{?fedora} >= 11 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 %else %define gecko_version 1.9.0.6 %endif @@ -13,7 +13,7 @@ Summary: Interface to the Mozilla embedding widget Name: perl-Gtk2-MozEmbed Version: 0.08 -Release: %{specfilever}%{?dist}.2 +Release: %{specfilever}%{?dist}.3 Group: Development/Libraries License: LGPLv2+ @@ -89,6 +89,9 @@ find $RPM_BUILD_ROOT -type d -depth -exe %changelog +* Fri Jul 17 2009 Jan Horak - 0.08-6.3 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 0.08-6.2 - Rebuild against newer gecko From xhorak at fedoraproject.org Fri Jul 17 13:11:28 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:11:28 +0000 (UTC) Subject: rpms/seahorse-plugins/F-11 seahorse-plugins.spec,1.28,1.29 Message-ID: <20090717131128.1A9DC11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/seahorse-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16811 Modified Files: seahorse-plugins.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.26.2-3 - Rebuild against newer gecko Index: seahorse-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse-plugins/F-11/seahorse-plugins.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- seahorse-plugins.spec 30 Jun 2009 19:08:47 -0000 1.28 +++ seahorse-plugins.spec 17 Jul 2009 13:10:57 -0000 1.29 @@ -1,6 +1,6 @@ Name: seahorse-plugins Version: 2.26.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Plugins and utilities for encryption in GNOME Group: User Interface/Desktops License: GPLv2+ and GFDL @@ -173,6 +173,9 @@ fi %changelog +* Fri Jul 17 2009 Jan Horak - 2.26.2-3 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 2.26.2-2 - Rebuild against newer gecko From msivak at fedoraproject.org Fri Jul 17 13:11:46 2009 From: msivak at fedoraproject.org (=?utf-8?q?Martin_Siv=C3=A1k?=) Date: Fri, 17 Jul 2009 13:11:46 +0000 (UTC) Subject: rpms/firstaidkit/devel firstaidkit.spec,1.25,1.26 sources,1.9,1.10 Message-ID: <20090717131146.0180011C00CF@cvs1.fedora.phx.redhat.com> Author: msivak Update of /cvs/extras/rpms/firstaidkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16946 Modified Files: firstaidkit.spec sources Log Message: new version Index: firstaidkit.spec =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/firstaidkit.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- firstaidkit.spec 13 Jul 2009 13:39:01 -0000 1.25 +++ firstaidkit.spec 17 Jul 2009 13:11:15 -0000 1.26 @@ -4,7 +4,7 @@ Name: firstaidkit Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: System Rescue Tool Group: Applications/System @@ -232,6 +232,9 @@ desktop-file-install --vendor="fedora" - #%{_libdir}/firstaidkit/plugins/rpm/* %changelog +* Fri Jul 17 2009 Martin Sivak - 0.2.3-4 +- Simple enhancement to the API (inreplyto) + * Mon Jul 13 2009 Martin Sivak - 0.2.3-3 - Add timeout to firstaidkit-qs Index: sources =================================================================== RCS file: /cvs/extras/rpms/firstaidkit/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 13 Jul 2009 13:39:01 -0000 1.9 +++ sources 17 Jul 2009 13:11:15 -0000 1.10 @@ -1 +1 @@ -8f6b71d0d8089553d27ded79ca1ed991 firstaidkit-0.2.3.tar.bz2 +f69324e6212e7f79bc799326a9f6300f firstaidkit-0.2.3.tar.bz2 From xhorak at fedoraproject.org Fri Jul 17 13:12:31 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:12:31 +0000 (UTC) Subject: rpms/yelp/F-11 yelp.spec,1.158,1.159 Message-ID: <20090717131231.7271C11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/yelp/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17237 Modified Files: yelp.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.26.0-5 - Rebuild against newer gecko Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/F-11/yelp.spec,v retrieving revision 1.158 retrieving revision 1.159 diff -u -p -r1.158 -r1.159 --- yelp.spec 30 Jun 2009 19:09:43 -0000 1.158 +++ yelp.spec 17 Jul 2009 13:12:01 -0000 1.159 @@ -11,7 +11,7 @@ %define libxslt_version 1.1.4 %define startup_notification_version 0.8 %define rarian_version 0.7.0 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 %define pango_version 1.0.99 %define desktop_file_utils_version 0.3-7 @@ -19,7 +19,7 @@ Summary: Help browser for the GNOME desktop Name: yelp Version: 2.26.0 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://download.gnome.org/sources/yelp/2.26/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp Patch1: yelp-2.15.5-fedora-docs.patch @@ -148,6 +148,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Fri Jul 17 2009 Jan Horak - 2.26.0-5 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 2.26.0-4 - Rebuild against newer gecko From tanguy at fedoraproject.org Fri Jul 17 13:13:16 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Fri, 17 Jul 2009 13:13:16 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis-0.2.3-manual.patch, NONE, 1.1 scidavis-0.2.3-pro.patch, NONE, 1.1 scidavis.spec, 1.20, 1.21 scidavis-0.2.0-pro.patch, 1.2, NONE Message-ID: <20090717131316.74A2611C00CF@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17629 Modified Files: scidavis.spec Added Files: scidavis-0.2.3-manual.patch scidavis-0.2.3-pro.patch Removed Files: scidavis-0.2.0-pro.patch Log Message: scidavis-0.2.3-manual.patch: scidavis.pro | 5 ++ src/ApplicationWindow.cpp | 86 +++++++++++++++++++++++++++------------------- src/ApplicationWindow.h | 6 ++- 3 files changed, 62 insertions(+), 35 deletions(-) --- NEW FILE scidavis-0.2.3-manual.patch --- Index: scidavis/src/ApplicationWindow.h =================================================================== --- scidavis/src/ApplicationWindow.h (r??vision 1180) +++ scidavis/src/ApplicationWindow.h (r??vision 1181) @@ -638,6 +638,7 @@ void showHelp(); static void showStandAloneHelp(); void chooseHelpFolder(); + QString guessHelpFolder(); void showPlotWizard(); void showFitPolynomDialog(); void showIntegrationDialog(); @@ -1057,7 +1058,10 @@ QAction *actionShowExpDecayDialog, *actionShowTwoExpDecayDialog, *actionShowExpDecay3Dialog; QAction *actionFitExpGrowth, *actionFitSigmoidal, *actionFitGauss, *actionFitLorentz, *actionShowFitDialog; QAction *actionShowAxisDialog, *actionShowTitleDialog; - QAction *actionAbout, *actionShowHelp, *actionChooseHelpFolder; + QAction *actionAbout, *actionShowHelp; +#ifdef DYNAMIC_MANUAL_PATH + QAction *actionChooseHelpFolder; +#endif QAction *actionRename, *actionCloseWindow, *actionConvertTable; QAction *actionAddColToTable, *actionDeleteLayer, *actionInterpolate; QAction *actionResizeActiveWindow, *actionHideActiveWindow; Index: scidavis/src/ApplicationWindow.cpp =================================================================== --- scidavis/src/ApplicationWindow.cpp (r??vision 1180) +++ scidavis/src/ApplicationWindow.cpp (r??vision 1181) @@ -915,7 +915,9 @@ help->setFont(appFont); help->addAction(actionShowHelp); +#ifdef DYNAMIC_MANUAL_PATH help->addAction(actionChooseHelpFolder); +#endif help->addSeparator(); help->addAction(actionHomePage); help->addAction(actionCheckUpdates); @@ -4183,42 +4185,27 @@ settings.beginGroup("/Paths"); workingDir = settings.value("/WorkingDir", qApp->applicationDirPath()).toString(); +#ifdef DYNAMIC_MANUAL_PATH #ifdef MANUAL_PATH helpFilePath = settings.value("/HelpFile", MANUAL_PATH "/index.html").toString(); #elif defined(DOC_PATH) helpFilePath = settings.value("/HelpFile", DOC_PATH "/manual/index.html").toString(); -#elif defined(Q_OS_WIN) - helpFilePath = settings.value("/HelpFile", qApp->applicationDirPath()+"/manual/index.html").toString(); #else QVariant help_file_setting = settings.value("/HelpFile"); if (help_file_setting.isValid()) helpFilePath = help_file_setting.toString(); - else { - QFileInfo help_file_info; - QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") - .arg((scidavis_version & 0xff0000) >> 16) - .arg((scidavis_version & 0x00ff00) >> 8) - .arg(scidavis_version & 0x0000ff); - help_file_info.setFile(help_dir_base); - if (!help_file_info.exists()) - help_dir_base = "/usr/share/doc/scidavis"; - QStringList help_dir_suffixes; - QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively - help_dir_suffixes - << QString("-") + locale - << QString("-") + locale.section('_',0,0) - << QString("-") + appLanguage - << "-en" - << ""; - foreach (QString suffix, help_dir_suffixes) { - help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); - if (help_file_info.exists()) - break; - } - // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist - helpFilePath = help_file_info.absoluteFilePath(); - } + else + helpFilePath = guessHelpFolder(); #endif +#else // ifdef DYNAMIC_MANUAL_PATH +#ifdef MANUAL_PATH + helpFilePath = MANUAL_PATH "/index.html"; +#elif defined(DOC_PATH) + helpFilePath = DOC_PATH "/manual/index.html"; +#else + helpFilePath = guessHelpFolder(); +#endif +#endif #ifdef Q_OS_WIN fitPluginsPath = settings.value("/FitPlugins", "fitPlugins").toString(); @@ -8237,13 +8224,8 @@ tr("Please indicate the location of the help file!")+"
"+ tr("The manual can be downloaded from the following internet address:")+ "

http://sourceforge.net/project/showfiles.php?group_id=199120

"); - QString fn = QFileDialog::getOpenFileName(QDir::currentDirPath(), "*.html", this ); - if (!fn.isEmpty()) - { - QFileInfo fi(fn); - helpFilePath=fi.absFilePath(); - saveSettings(); - } + chooseHelpFolder(); + saveSettings(); } QFileInfo fi(helpFilePath); @@ -10721,8 +10703,10 @@ actionShowHelp->setShortcut( tr("Ctrl+H") ); connect(actionShowHelp, SIGNAL(activated()), this, SLOT(showHelp())); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder = new QAction(tr("&Choose Help Folder..."), this); connect(actionChooseHelpFolder, SIGNAL(activated()), this, SLOT(chooseHelpFolder())); +#endif actionRename = new QAction(tr("&Rename Window"), this); connect(actionRename, SIGNAL(activated()), this, SLOT(renameActiveWindow())); @@ -11187,7 +11171,10 @@ actionShowHelp->setMenuText(tr("&Help")); actionShowHelp->setShortcut(tr("Ctrl+H")); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder->setMenuText(tr("&Choose Help Folder...")); +#endif + actionRename->setMenuText(tr("&Rename Window")); actionCloseWindow->setMenuText(tr("Close &Window")); @@ -13695,3 +13682,34 @@ result.append(aspect->name()); return result; } + +QString ApplicationWindow::guessHelpFolder() +{ +#if defined(Q_OS_WIN) + return qApp->applicationDirPath()+"/manual/index.html"; +#else + QFileInfo help_file_info; + QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") + .arg((SciDAVis::version() & 0xff0000) >> 16) + .arg((SciDAVis::version() & 0x00ff00) >> 8) + .arg(SciDAVis::version() & 0x0000ff); + help_file_info.setFile(help_dir_base); + if (!help_file_info.exists()) + help_dir_base = "/usr/share/doc/scidavis"; + QStringList help_dir_suffixes; + QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively + help_dir_suffixes + << QString("-") + locale + << QString("-") + locale.section('_',0,0) + << QString("-") + appLanguage + << "-en" + << ""; + foreach (QString suffix, help_dir_suffixes) { + help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); + if (help_file_info.exists()) + break; + } + // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist + return help_file_info.absoluteFilePath(); +#endif +} Index: scidavis/scidavis.pro =================================================================== --- scidavis/scidavis.pro (r??vision 1180) +++ scidavis/scidavis.pro (r??vision 1181) @@ -42,6 +42,11 @@ ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. # manual.path = $$INSTALLBASE/share/doc/scidavis/manual +### Enables choosing of help folder at runtime, instead of relying on the above path only. +### The downside is that the help folder will be remembered as a configuration option, so a binary +### package cannot easily update the path for its users. +### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. +DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. scidavis-0.2.3-pro.patch: scidavis.pro | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) --- NEW FILE scidavis-0.2.3-pro.patch --- --- scidavis-0.2.3/scidavis/scidavis.pro 2009-07-17 15:02:39.842755567 +0200 +++ scidavis-0.2.3/scidavis/scidavis.pro.new 2009-07-17 15:06:10.504756138 +0200 @@ -13,7 +13,7 @@ ### what to install INSTALLS += target # this is the program itself -INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. +#INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. ### Comment out the next line if you do not want automatic compilation and installation of the translations INSTALLS += translationfiles @@ -41,12 +41,12 @@ win32: documentation.path = "$$INSTALLBASE" # ... on Winodws ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. -# manual.path = $$INSTALLBASE/share/doc/scidavis/manual +manual.path = $$INSTALLBASE/share/doc/scidavis-manual-0.2.3 ### Enables choosing of help folder at runtime, instead of relying on the above path only. ### The downside is that the help folder will be remembered as a configuration option, so a binary ### package cannot easily update the path for its users. ### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. -DEFINES += DYNAMIC_MANUAL_PATH +#DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. @@ -87,34 +87,34 @@ ### are compiled against Qt4), dynamically against everything else. ############################################################################# -unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include -unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a +#unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include +#unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a -unix:INCLUDEPATH += ../3rdparty/qwt/src -unix:LIBS += ../3rdparty/qwt/lib/libqwt.a +#unix:INCLUDEPATH += ../3rdparty/qwt/src +#unix:LIBS += ../3rdparty/qwt/lib/libqwt.a -unix:LIBS += -L/usr/lib$${libsuff} -unix:LIBS += -lgsl -lgslcblas -lz +#unix:LIBS += -L/usr/lib$${libsuff} +#unix:LIBS += -lgsl -lgslcblas -lz ### muparser 1.30 does not compile as a shared lib on Linux -unix:LIBS += -L/usr/local/lib$${libsuff} -unix:LIBS += /usr/local/lib/libmuparser.a -unix:INCLUDEPATH += /usr/local/include +#unix:LIBS += -L/usr/local/lib$${libsuff} +#unix:LIBS += /usr/local/lib/libmuparser.a +#unix:INCLUDEPATH += /usr/local/include ############################################################################# ### Link everything dynamically ############################################################################# -#unix:INCLUDEPATH += /usr/include/qwt5 -#unix:LIBS += -L/usr/lib$${libsuff} +unix:INCLUDEPATH += /usr/include/qwt +unix:LIBS += -L/usr/lib$${libsuff} ## dynamically link against Qwt(3D) installed system-wide ## WARNING: make sure they are compiled against >= Qt4.2 ## Mixing Qt 4.2 and Qt >= 4.3 compiled stuff may also ## cause problems. -#unix:INCLUDEPATH += /usr/include/qwtplot3d -#unix:LIBS += -lqwtplot3d -#unix:LIBS += -lqwt +unix:INCLUDEPATH += /usr/include/qwtplot3d +unix:LIBS += -lqwtplot3d +unix:LIBS += -lqwt ##dynamically link against GSL and zlib installed system-wide -#unix:LIBS += -lgsl -lgslcblas -lz -lmuparser +unix:LIBS += -lgsl -lgslcblas -lz -lmuparser ############################################################################# ### Default settings for Windows Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- scidavis.spec 13 Jul 2009 20:34:19 -0000 1.20 +++ scidavis.spec 17 Jul 2009 13:13:16 -0000 1.21 @@ -1,10 +1,11 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 -Patch0: scidavis-0.2.0-pro.patch +Patch0: scidavis-0.2.3-manual.patch +Patch1: scidavis-0.2.3-pro.patch URL: http://scidavis.sourceforge.net/ License: GPLv2 Group: Applications/Engineering @@ -29,6 +30,7 @@ This package contains the manual for Sci %prep %setup -q -a 1 %patch0 -p1 +%patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml @@ -98,6 +100,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Fri Jul 17 2009 Eric Tanguy - 0.2.3-3 +- Patch for manual path + * Mon Jul 13 2009 Eric Tanguy - 0.2.3-2 - BZ #510968 --- scidavis-0.2.0-pro.patch DELETED --- From xhorak at fedoraproject.org Fri Jul 17 13:15:43 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 17 Jul 2009 13:15:43 +0000 (UTC) Subject: rpms/epiphany/F-11 epiphany.spec,1.231,1.232 Message-ID: <20090717131543.D11AE11C00CF@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/epiphany/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18447 Modified Files: epiphany.spec Log Message: * Fri Jul 17 2009 Jan Horak - 2.26.3-2 - Rebuild against newer gecko Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-11/epiphany.spec,v retrieving revision 1.231 retrieving revision 1.232 diff -u -p -r1.231 -r1.232 --- epiphany.spec 1 Jul 2009 17:42:58 -0000 1.231 +++ epiphany.spec 17 Jul 2009 13:15:13 -0000 1.232 @@ -1,4 +1,4 @@ -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 %define desktop_file_utils_version 0.9 %define glib2_devel_ver 2.18.0 %define gtk2_devel_ver 2.15.1 @@ -8,7 +8,7 @@ Summary: Web browser for GNOME Name: epiphany Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} %define major_version 2.26 Provides: epiphany(abi) = %{major_version} License: GPLv2+ and GFDL @@ -253,6 +253,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/epiphany.defs %changelog +* Fri Jul 17 2009 Jan Horak - 2.26.3-2 +- Rebuild against newer gecko + * Wed Jul 1 2009 Matthias Clasen - 2.26.3-1 - Update to 2.26.3 - See http://download.gnome.org/sources/epiphany/2.26/epiphany-2.26.3.changes @@ -787,7 +790,7 @@ rm -rf $RPM_BUILD_ROOT * Tue Mar 02 2004 Elliot Lee - rebuilt -* Sun Feb 22 2004 Jeremy Katz 1.1.9-1 +* Sun Feb 22 2004 Jeremy Katz 1.1.9.1.1 - update to 1.1.9 - reenable nautilus view From limb at fedoraproject.org Fri Jul 17 13:18:21 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 17 Jul 2009 13:18:21 +0000 (UTC) Subject: rpms/gallery2/F-11 gallery2-2.3-upgrade.patch, NONE, 1.1 gallery2-2.3-installer.patch, 1.1, 1.2 gallery2.spec, 1.30, 1.31 Message-ID: <20090717131821.DBA4211C00CF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/gallery2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19315/F-11 Modified Files: gallery2-2.3-installer.patch gallery2.spec Added Files: gallery2-2.3-upgrade.patch Log Message: upgrader pach. gallery2-2.3-upgrade.patch: index.php | 1 + 1 file changed, 1 insertion(+) --- NEW FILE gallery2-2.3-upgrade.patch --- --- upgrade/index.php~ 2008-10-18 02:15:43.000000000 -0500 +++ upgrade/index.php 2009-07-17 07:46:11.000000000 -0500 @@ -49,0 +50 @@ +require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); gallery2-2.3-installer.patch: index.php | 1 + 1 file changed, 1 insertion(+) Index: gallery2-2.3-installer.patch =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/F-11/gallery2-2.3-installer.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gallery2-2.3-installer.patch 19 Jun 2009 17:57:58 -0000 1.1 +++ gallery2-2.3-installer.patch 17 Jul 2009 13:18:21 -0000 1.2 @@ -1,4 +1,4 @@ --- install/index.php~ 2009-06-19 11:58:00.000000000 -0500 +++ install/index.php 2009-06-19 11:58:00.000000000 -0500 @@ -49,0 +50 @@ -+require_once($g2Base . '/modules/core/classes/GalleryCoreApi.class'); ++require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); Index: gallery2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/F-11/gallery2.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gallery2.spec 19 Jun 2009 17:57:59 -0000 1.30 +++ gallery2.spec 17 Jul 2009 13:18:21 -0000 1.31 @@ -7,7 +7,7 @@ URL: http://gallery.menalto.com Name: gallery2 Version: 2.3 Group: Applications/Publishing -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ #Source0: http://dl.sf.net/gallery/gallery-%{version}-full.zip # Tarball from upstream contains prebuilt jars, some of which are not redistributable. @@ -35,6 +35,7 @@ Obsoletes: gallery2-slideshowapplet <= 2 Patch1: gallery2-2.3-smtp.patch Patch2: gallery2-2.3-captcha.patch Patch3: gallery2-2.3-installer.patch +Patch4: gallery2-2.3-upgrade.patch %package albumselect Summary: Albumselect module for Gallery 2 @@ -689,6 +690,7 @@ subalbums/other items not shown %patch1 -p0 %patch2 -p0 %patch3 -p0 +%patch4 -p0 %build #pushd lib/tools/bin @@ -1112,6 +1114,10 @@ fi %{installprefix}/gallery2/themes/tile/ %changelog +* Fri Jul 17 2009 Jon Ciesla - 2.3-14 +- Upgrader patch, BZ 506983. +- Removed extra slash from installer patch. + * Fri Jun 19 2009 Jon Ciesla - 2.3-13 - Installer patch, BZ 506983. From limb at fedoraproject.org Fri Jul 17 13:18:51 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 17 Jul 2009 13:18:51 +0000 (UTC) Subject: rpms/gallery2/F-10 gallery2-2.3-upgrade.patch, NONE, 1.1 gallery2-2.3-installer.patch, 1.1, 1.2 gallery2.spec, 1.27, 1.28 Message-ID: <20090717131851.7886911C00CF@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/gallery2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19315/F-10 Modified Files: gallery2-2.3-installer.patch gallery2.spec Added Files: gallery2-2.3-upgrade.patch Log Message: upgrader pach. gallery2-2.3-upgrade.patch: index.php | 1 + 1 file changed, 1 insertion(+) --- NEW FILE gallery2-2.3-upgrade.patch --- --- upgrade/index.php~ 2008-10-18 02:15:43.000000000 -0500 +++ upgrade/index.php 2009-07-17 07:46:11.000000000 -0500 @@ -49,0 +50 @@ +require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); gallery2-2.3-installer.patch: index.php | 1 + 1 file changed, 1 insertion(+) Index: gallery2-2.3-installer.patch =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/F-10/gallery2-2.3-installer.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gallery2-2.3-installer.patch 19 Jun 2009 18:19:21 -0000 1.1 +++ gallery2-2.3-installer.patch 17 Jul 2009 13:18:20 -0000 1.2 @@ -1,4 +1,4 @@ --- install/index.php~ 2009-06-19 11:58:00.000000000 -0500 +++ install/index.php 2009-06-19 11:58:00.000000000 -0500 @@ -49,0 +50 @@ -+require_once($g2Base . '/modules/core/classes/GalleryCoreApi.class'); ++require_once($g2Base . 'modules/core/classes/GalleryCoreApi.class'); Index: gallery2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/F-10/gallery2.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gallery2.spec 19 Jun 2009 18:19:21 -0000 1.27 +++ gallery2.spec 17 Jul 2009 13:18:21 -0000 1.28 @@ -7,7 +7,7 @@ URL: http://gallery.menalto.com Name: gallery2 Version: 2.3 Group: Applications/Publishing -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ #Source0: http://dl.sf.net/gallery/gallery-%{version}-full.zip # Tarball from upstream contains prebuilt jars, some of which are not redistributable. @@ -35,6 +35,7 @@ Obsoletes: gallery2-slideshowapplet <= 2 Patch1: gallery2-2.3-smtp.patch Patch2: gallery2-2.3-captcha.patch Patch3: gallery2-2.3-installer.patch +Patch4: gallery2-2.3-upgrade.patch %package albumselect Summary: Albumselect module for Gallery 2 @@ -689,6 +690,7 @@ subalbums/other items not shown %patch1 -p0 %patch2 -p0 %patch3 -p0 +%patch4 -p0 %build #pushd lib/tools/bin @@ -1112,6 +1114,10 @@ fi %{installprefix}/gallery2/themes/tile/ %changelog +* Fri Jul 17 2009 Jon Ciesla - 2.3-14 +- Upgrader patch, BZ 506983. +- Removed extra slash from installer patch. + * Fri Jun 19 2009 Jon Ciesla - 2.3-13 - Installer patch, BZ 506983. From iefremov at fedoraproject.org Fri Jul 17 13:19:29 2009 From: iefremov at fedoraproject.org (iefremov) Date: Fri, 17 Jul 2009 13:19:29 +0000 (UTC) Subject: rpms/ugene/devel .cvsignore, 1.3, 1.4 sources, 1.4, 1.5 ugene.spec, 1.6, 1.7 Message-ID: <20090717131929.6719011C00CF@cvs1.fedora.phx.redhat.com> Author: iefremov Update of /cvs/pkgs/rpms/ugene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19384 Modified Files: .cvsignore sources ugene.spec Log Message: update to 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ugene/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 9 Jul 2009 09:12:06 -0000 1.3 +++ .cvsignore 17 Jul 2009 13:18:59 -0000 1.4 @@ -1 +1 @@ -ugene-1.5.0.tar.gz +ugene-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ugene/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 Jul 2009 17:22:50 -0000 1.4 +++ sources 17 Jul 2009 13:18:59 -0000 1.5 @@ -1 +1 @@ -ba424198d7930028549fe94593b406ca ugene-1.5.0.tar.gz +082534460b4601c8e9ee64f07a56f164 ugene-1.5.1.tar.gz Index: ugene.spec =================================================================== RCS file: /cvs/pkgs/rpms/ugene/devel/ugene.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ugene.spec 9 Jul 2009 18:40:26 -0000 1.6 +++ ugene.spec 17 Jul 2009 13:18:59 -0000 1.7 @@ -1,7 +1,7 @@ Name: ugene Summary: Integrated bioinformatics toolkit -Version: 1.5.0 -Release: 3%{?dist} +Version: 1.5.1 +Release: 1%{?dist} #The entire source code is GPLv2+ except: #file src/libs_3rdparty/qtbindings_core/src/qtscriptconcurrent.h which is GPLv2 #files in src/plugins_3rdparty/script_debuger/src/qtscriptdebug/ which are GPLv2 @@ -26,8 +26,6 @@ is a designer for custom bioinformatics %setup -q %build -# replacing lrelease -> lrelease-qt4 for compatibility with fedora -sed -i -e 's/lrelease/lrelease-qt4/g' ugene.pro %_bindir/qmake-qt4 -r \ INSTALL_BINDIR=%{_bindir} \ INSTALL_LIBDIR=%{_libdir} \ @@ -55,6 +53,10 @@ rm -rf %{buildroot} %doc COPYRIGHT LICENSE %changelog +* Fri Jul 17 2009 Ivan Efremov - 1.5.1-1 +- Upstream version change +- Fix for lrelease removed due to upstream package changes + * Fri Jul 10 2009 Ivan Efremov - 1.5.0-3 - desktop-file-utils added to dependencies From gd at fedoraproject.org Fri Jul 17 13:33:24 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Fri, 17 Jul 2009 13:33:24 +0000 (UTC) Subject: rpms/samba/devel samba.spec,1.190,1.191 Message-ID: <20090717133324.257F611C00E4@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24134 Modified Files: samba.spec Log Message: Specify required talloc and tdb version for BuildRequires. Guenther Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/samba.spec,v retrieving revision 1.190 retrieving revision 1.191 diff -u -p -r1.190 -r1.191 --- samba.spec 16 Jul 2009 22:58:23 -0000 1.190 +++ samba.spec 17 Jul 2009 13:32:53 -0000 1.191 @@ -60,10 +60,10 @@ Requires(preun): /sbin/chkconfig, /sbin/ BuildRequires: pam-devel, readline-devel, ncurses-devel, libacl-devel, krb5-devel, openldap-devel, openssl-devel, cups-devel, ctdb-devel BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel, libuuid-devel %if ! %enable_talloc -BuildRequires: libtalloc-devel +BuildRequires: libtalloc-devel >= %{talloc_version} %endif %if ! %enable_tdb -BuildRequires: libtdb-devel +BuildRequires: libtdb-devel >= %{tdb_version} %endif # Working around perl dependency problem from docs @@ -890,6 +890,7 @@ exit 0 %changelog * Fri Jul 17 2009 Guenther Deschner - 3.4.0-0.41 - Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) +- Specify required talloc and tdb version for BuildRequires * Fri Jul 03 2009 Guenther Deschner - 3.4.0-0.40 - Update to 3.4.0 From pkgdb at fedoraproject.org Fri Jul 17 13:34:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:34:31 +0000 Subject: [pkgdb] upstart: plautrba has requested watchcommits Message-ID: <20090717133432.068BA10F888@bastion2.fedora.phx.redhat.com> plautrba has requested the watchcommits acl on upstart (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Fri Jul 17 13:34:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:34:42 +0000 Subject: [pkgdb] upstart: plautrba has requested watchbugzilla Message-ID: <20090717133442.28FF510F89C@bastion2.fedora.phx.redhat.com> plautrba has requested the watchbugzilla acl on upstart (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Fri Jul 17 13:34:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:34:45 +0000 Subject: [pkgdb] upstart: plautrba has requested commit Message-ID: <20090717133446.166E010F8A3@bastion2.fedora.phx.redhat.com> plautrba has requested the commit acl on upstart (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Fri Jul 17 13:35:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:35:08 +0000 Subject: [pkgdb] upstart: plautrba has requested watchbugzilla Message-ID: <20090717133508.5F89110F890@bastion2.fedora.phx.redhat.com> plautrba has requested the watchbugzilla acl on upstart (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Fri Jul 17 13:35:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:35:09 +0000 Subject: [pkgdb] upstart: plautrba has requested watchcommits Message-ID: <20090717133510.0C15F10F89F@bastion2.fedora.phx.redhat.com> plautrba has requested the watchcommits acl on upstart (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Fri Jul 17 13:35:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 13:35:12 +0000 Subject: [pkgdb] upstart: plautrba has requested commit Message-ID: <20090717133512.8DC7710F8AD@bastion2.fedora.phx.redhat.com> plautrba has requested the commit acl on upstart (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From rdieter at fedoraproject.org Fri Jul 17 13:37:28 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 17 Jul 2009 13:37:28 +0000 (UTC) Subject: rpms/kmymoney2/devel kmymoney2.spec,1.38,1.39 Message-ID: <20090717133728.94DB811C00CF@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kmymoney2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25466 Modified Files: kmymoney2.spec Log Message: * Fri Jul 17 2009 Rex Dieter - 0.9.3-3 - validate .desktop file - -libs unconditional - use %_isa where appropriate - optimize scriptlets Index: kmymoney2.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmymoney2/devel/kmymoney2.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- kmymoney2.spec 25 Feb 2009 11:38:32 -0000 1.38 +++ kmymoney2.spec 17 Jul 2009 13:36:58 -0000 1.39 @@ -8,9 +8,6 @@ %define ofx_deps libofx-devel opensp-devel libxml++-devel %endif -# make -libs subpkg -%define libs 1 - %if 0%{?fedora} > 6 %define kdelibs3 kdelibs3 %else @@ -21,7 +18,7 @@ BuildRequires: libutempter-devel Summary: Personal finance Name: kmymoney2 Version: 0.9.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Url: http://kmymoney2.sourceforge.net/ @@ -33,17 +30,11 @@ BuildRoot: %{_tmppath}/%{name}-%{version Obsoletes: kmymoney < %{version}-%{release} Provides: kmymoney = %{version}-%{release} -%if 0%{?libs} -Requires: %{name}-libs = %{version}-%{release} -%else -Obsoletes: %{name}-libs < %{version}-%{release} -Provides: %{name}-libs = %{version}-%{release} -Requires(post): /sbin/ldconfig -Requires(postun): /sbin/ldconfig -%endif +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %{?_enable_kbanking:BuildRequires: kbanking-devel qbanking-devel} BuildRequires: curl-devel +buildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: ghostscript BuildRequires: %{kdelibs3}-devel @@ -68,7 +59,7 @@ Summary: Development files for %{name} Group: Development/Libraries Obsoletes: kmymoney-devel < %{version}-%{release} Provides: kmymoney-devel = %{version}-%{release} -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description devel %{summary}. @@ -121,32 +112,35 @@ fi rm -f %{buildroot}%{_libdir}/lib*.la -# Currently broken w/--enable-final: http://bugs.kde.org/115863 %check +desktop-file-validate %{buildroot}%{_datadir}/applications/kde/kmymoney2.desktop +# Currently broken w/--enable-final: http://bugs.kde.org/115863 %{?_with_check:make check } -%if 0%{?libs} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig -%endif %post -%{!?libs:/sbin/ldconfig} -for icon_theme in hicolor locolor ; do - touch --no-create %{_datadir}/icons/${icon_theme} ||: - gtk-update-icon-cache -q %{_datadir}/icons/${icon_theme} 2> /dev/null ||: -done -update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || : +touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : +touch --no-create %{_datadir}/icons/locolor &> /dev/null || : %postun -%{!?libs:/sbin/ldconfig} -for icon_theme in hicolor locolor ; do - touch --no-create %{_datadir}/icons/${icon_theme} ||: - gtk-update-icon-cache -q %{_datadir}/icons/${icon_theme} 2> /dev/null ||: -done -update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || : +if [ $1 -eq 0 ] ; then + update-desktop-database -q &> /dev/null + touch --no-create %{_datadir}/icons/hicolor &> /dev/null + touch --no-create %{_datadir}/icons/locolor &> /dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : + gtk-update-icon-cache %{_datadir}/icons/locolor &> /dev/null || : + +fi + +%posttrans +update-desktop-database -q &> /dev/null +gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +gtk-update-icon-cache %{_datadir}/icons/locolor &> /dev/null || : + %files -f %{name}.lang @@ -154,26 +148,24 @@ update-desktop-database %{_datadir}/appl %doc AUTHORS ChangeLog COPYING README TODO %{_bindir}/kmymoney* %{_datadir}/apps/kmymoney2/ -%{_datadir}/applications/kde/*.desktop +%{_datadir}/applications/kde/kmymoney2.desktop %{_datadir}/config.kcfg/kmymoney2.kcfg %{_datadir}/icons/hicolor/*/*/* %{_datadir}/icons/locolor/*/*/* %{_datadir}/mimelnk/*/*.desktop %{_datadir}/service*/*.desktop -%if "%{?_enable_ofxbanking:1}" == "1" +%if 0%{?_enable_ofxbanking:1} %{_datadir}/apps/kmm_ofximport/ %{_libdir}/kde3/kmm_ofximport.* %endif -%if "%{?_enable_kbanking:1}" == "1" +%if 0%{?_enable_kbanking:1} %{_libdir}/kde3/kmm_kbanking.* %{_datadir}/apps/kmm_kbanking/ %endif %{_mandir}/man?/* -%if 0%{?libs} %files libs %defattr(-,root,root,-) -%endif %{_libdir}/lib*.so.* %files devel @@ -187,6 +179,12 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Rex Dieter - 0.9.3-3 +- validate .desktop file +- -libs unconditional +- use %%_isa where appropriate +- optimize scriptlets + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mschwendt at fedoraproject.org Fri Jul 17 13:43:11 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 17 Jul 2009 13:43:11 +0000 (UTC) Subject: rpms/plague/devel plague-0.4.5.7-cvs20090612.patch, NONE, 1.1 plague.spec, 1.46, 1.47 Message-ID: <20090717134311.D259011C00CF@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/plague/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27225 Modified Files: plague.spec Added Files: plague-0.4.5.7-cvs20090612.patch Log Message: * Fri Jul 17 2009 Michael Schwendt - 0.4.5.7-5.20090612cvs - patch with fix from cvs (SSLConnection.py shutdown) plague-0.4.5.7-cvs20090612.patch: ChangeLog | 8 ++++++++ common/SSLConnection.py | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) --- NEW FILE plague-0.4.5.7-cvs20090612.patch --- diff -Nur plague-0.4.5.7-20081216/common/SSLConnection.py plague-0.4.5.7-20090612/common/SSLConnection.py --- plague-0.4.5.7-20081216/common/SSLConnection.py 2009-07-17 15:40:04.000000000 +0200 +++ plague-0.4.5.7-20090612/common/SSLConnection.py 2009-06-12 19:06:38.000000000 +0200 @@ -81,7 +81,6 @@ return self.__dict__["close_refcount"] = self.__dict__["close_refcount"] - 1 if self.__dict__["close_refcount"] == 0: - self.shutdown() self.__dict__["conn"].close() self.__dict__["closed"] = True @@ -144,6 +143,9 @@ return None except SSL.WantReadError: time.sleep(0.2) + except SSL.SysCallError, (e, err): + time.sleep(0.2) + return None return None class PlgFileObject(socket._fileobject): diff -Nur plague-0.4.5.7-20081216/ChangeLog plague-0.4.5.7-20090612/ChangeLog --- plague-0.4.5.7-20081216/ChangeLog 2009-07-17 15:40:04.000000000 +0200 +++ plague-0.4.5.7-20090612/ChangeLog 2009-06-12 19:28:26.000000000 +0200 @@ -1,3 +1,11 @@ +2009-06-12 Michael Schwendt + + * common/SSLConnection.py + - Catch SSL.SysCallError exceptions for unexpected EOF. + - Remove superfluous connection shutdown() call in close() + because it results in an SSL.Error "uninitialized" exception + with pyOpenSSL 0.7 and Python 2.6 + 2008-12-16 Michael Schwendt * common/SSLCommon.py Index: plague.spec =================================================================== RCS file: /cvs/pkgs/rpms/plague/devel/plague.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- plague.spec 27 Feb 2009 00:42:49 -0000 1.46 +++ plague.spec 17 Jul 2009 13:43:11 -0000 1.47 @@ -3,12 +3,13 @@ BuildArch: noarch Summary: Distributed build system for RPMs Name: plague Version: 0.4.5.7 -Release: 4.20081216cvs%{?dist} +Release: 5.20090612cvs%{?dist} License: GPLv2+ Group: Development/Tools #Source: http://fedoraproject.org/projects/plague/releases/%{name}-%{version}.tar.bz2 Source: %{name}-%{version}.tar.bz2 Patch0: plague-0.4.5.7-cvs20081216.patch +Patch1: plague-0.4.5.7-cvs20090612.patch URL: http://www.fedoraproject.org/wiki/Projects/Plague BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python @@ -81,6 +82,7 @@ the interface to the build server. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build @@ -167,6 +169,9 @@ fi %changelog +* Fri Jul 17 2009 Michael Schwendt - 0.4.5.7-5.20090612cvs +- patch with fix from cvs (SSLConnection.py shutdown) + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.5.7-4.20081216cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mschwendt at fedoraproject.org Fri Jul 17 13:45:02 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 17 Jul 2009 13:45:02 +0000 (UTC) Subject: rpms/plague/F-11 plague-0.4.5.7-cvs20090612.patch, NONE, 1.1 plague.spec, 1.46, 1.47 Message-ID: <20090717134502.BEE0B11C00CF@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/plague/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27706 Modified Files: plague.spec Added Files: plague-0.4.5.7-cvs20090612.patch Log Message: * Fri Jul 17 2009 Michael Schwendt - 0.4.5.7-5.20090612cvs - patch with fix from cvs (SSLConnection.py shutdown) plague-0.4.5.7-cvs20090612.patch: ChangeLog | 8 ++++++++ common/SSLConnection.py | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) --- NEW FILE plague-0.4.5.7-cvs20090612.patch --- diff -Nur plague-0.4.5.7-20081216/common/SSLConnection.py plague-0.4.5.7-20090612/common/SSLConnection.py --- plague-0.4.5.7-20081216/common/SSLConnection.py 2009-07-17 15:40:04.000000000 +0200 +++ plague-0.4.5.7-20090612/common/SSLConnection.py 2009-06-12 19:06:38.000000000 +0200 @@ -81,7 +81,6 @@ return self.__dict__["close_refcount"] = self.__dict__["close_refcount"] - 1 if self.__dict__["close_refcount"] == 0: - self.shutdown() self.__dict__["conn"].close() self.__dict__["closed"] = True @@ -144,6 +143,9 @@ return None except SSL.WantReadError: time.sleep(0.2) + except SSL.SysCallError, (e, err): + time.sleep(0.2) + return None return None class PlgFileObject(socket._fileobject): diff -Nur plague-0.4.5.7-20081216/ChangeLog plague-0.4.5.7-20090612/ChangeLog --- plague-0.4.5.7-20081216/ChangeLog 2009-07-17 15:40:04.000000000 +0200 +++ plague-0.4.5.7-20090612/ChangeLog 2009-06-12 19:28:26.000000000 +0200 @@ -1,3 +1,11 @@ +2009-06-12 Michael Schwendt + + * common/SSLConnection.py + - Catch SSL.SysCallError exceptions for unexpected EOF. + - Remove superfluous connection shutdown() call in close() + because it results in an SSL.Error "uninitialized" exception + with pyOpenSSL 0.7 and Python 2.6 + 2008-12-16 Michael Schwendt * common/SSLCommon.py Index: plague.spec =================================================================== RCS file: /cvs/pkgs/rpms/plague/F-11/plague.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- plague.spec 27 Feb 2009 00:42:49 -0000 1.46 +++ plague.spec 17 Jul 2009 13:44:32 -0000 1.47 @@ -3,12 +3,13 @@ BuildArch: noarch Summary: Distributed build system for RPMs Name: plague Version: 0.4.5.7 -Release: 4.20081216cvs%{?dist} +Release: 5.20090612cvs%{?dist} License: GPLv2+ Group: Development/Tools #Source: http://fedoraproject.org/projects/plague/releases/%{name}-%{version}.tar.bz2 Source: %{name}-%{version}.tar.bz2 Patch0: plague-0.4.5.7-cvs20081216.patch +Patch1: plague-0.4.5.7-cvs20090612.patch URL: http://www.fedoraproject.org/wiki/Projects/Plague BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python @@ -81,6 +82,7 @@ the interface to the build server. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build @@ -167,6 +169,9 @@ fi %changelog +* Fri Jul 17 2009 Michael Schwendt - 0.4.5.7-5.20090612cvs +- patch with fix from cvs (SSLConnection.py shutdown) + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.5.7-4.20081216cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jreznik at fedoraproject.org Fri Jul 17 13:50:52 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Fri, 17 Jul 2009 13:50:52 +0000 (UTC) Subject: rpms/kde-style-skulpture/F-10 .cvsignore, 1.2, 1.3 kde-style-skulpture.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090717135052.4E5ED11C00CF@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-style-skulpture/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29581 Modified Files: .cvsignore kde-style-skulpture.spec sources Log Message: * Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 - update to 0.2.3 (minor bug fixes) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Mar 2009 12:23:56 -0000 1.2 +++ .cvsignore 17 Jul 2009 13:50:22 -0000 1.3 @@ -1 +1 @@ -59031-skulpture-0.2.2.tar.bz2 +59031-skulpture-0.2.3.tar.bz2 Index: kde-style-skulpture.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-10/kde-style-skulpture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kde-style-skulpture.spec 30 Mar 2009 12:38:11 -0000 1.2 +++ kde-style-skulpture.spec 17 Jul 2009 13:50:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: kde-style-skulpture -Version: 0.2.2 -Release: 5%{?dist} +Version: 0.2.3 +Release: 1%{?dist} URL: http://www.kde-look.org/content/show.php/Skulpture?content=59031 Source: http://www.kde-look.org/CONTENT/content-files/59031-skulpture-%{version}.tar.bz2 Group: User Interface/Desktops @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 +- update to 0.2.3 (minor bug fixes) + * Mon Mar 30 2009 Jaroslav Reznik - 0.2.2-5 - add reference to ExcludeArch bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Mar 2009 12:23:56 -0000 1.2 +++ sources 17 Jul 2009 13:50:22 -0000 1.3 @@ -1 +1 @@ -c459a8e3071f54c0a77356909fd0a845 59031-skulpture-0.2.2.tar.bz2 +f810e03967e60d398849386418de1e91 59031-skulpture-0.2.3.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 14:00:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:05 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140005.203E010F89F@bastion2.fedora.phx.redhat.com> kengert has set the watchbugzilla acl on nss (Fedora devel) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Fri Jul 17 14:00:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:11 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140011.BAD9610F898@bastion2.fedora.phx.redhat.com> kengert has set the watchcommits acl on nss (Fedora devel) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Fri Jul 17 14:00:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:36 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140037.02B6010F890@bastion2.fedora.phx.redhat.com> kengert has set the watchbugzilla acl on nss (Fedora 10) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Fri Jul 17 14:00:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:41 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140041.1213B10F8A3@bastion2.fedora.phx.redhat.com> kengert has set the watchcommits acl on nss (Fedora 10) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Fri Jul 17 14:00:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:47 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140047.46E4410F8B2@bastion2.fedora.phx.redhat.com> kengert has set the watchbugzilla acl on nss (Fedora 11) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From pkgdb at fedoraproject.org Fri Jul 17 14:00:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 14:00:51 +0000 Subject: [pkgdb] nss had acl change status Message-ID: <20090717140051.B054F10F899@bastion2.fedora.phx.redhat.com> kengert has set the watchcommits acl on nss (Fedora 11) to Approved for kdudka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nss From harald at fedoraproject.org Fri Jul 17 14:02:48 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Fri, 17 Jul 2009 14:02:48 +0000 (UTC) Subject: rpms/dracut/F-11 .cvsignore, 1.4, 1.5 dracut.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090717140248.87FB111C00CF@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2100 Modified Files: .cvsignore dracut.spec sources Log Message: * Fri Jul 17 2009 Harald Hoyer 0.5-1 - version 0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 4 Jul 2009 08:08:35 -0000 1.4 +++ .cvsignore 17 Jul 2009 14:02:48 -0000 1.5 @@ -1 +1 @@ -dracut-0.4.tar.bz2 +dracut-0.5.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/dracut.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dracut.spec 4 Jul 2009 08:08:35 -0000 1.3 +++ dracut.spec 17 Jul 2009 14:02:48 -0000 1.4 @@ -12,7 +12,7 @@ %endif Name: dracut -Version: 0.4 +Version: 0.5 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -65,6 +65,7 @@ Requires: ql2200-firmware Requires: ql23xx-firmware Requires: ql2400-firmware Requires: ql2500-firmware +Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar %description generic This package requires everything which is needed to build a generic @@ -92,6 +93,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut +/sbin/dracut-gencmdline %if 0%{?with_switch_root} /sbin/switch_root %endif @@ -106,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Fri Jul 17 2009 Harald Hoyer 0.5-1 +- version 0.5 + * Sat Jul 04 2009 Harald Hoyer 0.4-1 - version 0.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 4 Jul 2009 08:08:35 -0000 1.4 +++ sources 17 Jul 2009 14:02:48 -0000 1.5 @@ -1 +1 @@ -d044359f42591eac24af54e234cf92e3 dracut-0.4.tar.bz2 +0d979e6d3f13e458c6cfad838477681d dracut-0.5.tar.bz2 From harald at fedoraproject.org Fri Jul 17 14:02:50 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Fri, 17 Jul 2009 14:02:50 +0000 (UTC) Subject: rpms/dracut/devel .cvsignore, 1.3, 1.4 dracut.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090717140250.9C60311C00CF@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1929 Modified Files: .cvsignore dracut.spec sources Log Message: * Fri Jul 17 2009 Harald Hoyer 0.5-1 - version 0.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Jul 2009 08:08:11 -0000 1.3 +++ .cvsignore 17 Jul 2009 14:02:20 -0000 1.4 @@ -1 +1 @@ -dracut-0.4.tar.bz2 +dracut-0.5.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dracut.spec 4 Jul 2009 08:08:11 -0000 1.3 +++ dracut.spec 17 Jul 2009 14:02:20 -0000 1.4 @@ -12,7 +12,7 @@ %endif Name: dracut -Version: 0.4 +Version: 0.5 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -65,6 +65,7 @@ Requires: ql2200-firmware Requires: ql23xx-firmware Requires: ql2400-firmware Requires: ql2500-firmware +Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar %description generic This package requires everything which is needed to build a generic @@ -92,6 +93,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut +/sbin/dracut-gencmdline %if 0%{?with_switch_root} /sbin/switch_root %endif @@ -106,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Fri Jul 17 2009 Harald Hoyer 0.5-1 +- version 0.5 + * Sat Jul 04 2009 Harald Hoyer 0.4-1 - version 0.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 4 Jul 2009 08:08:11 -0000 1.4 +++ sources 17 Jul 2009 14:02:20 -0000 1.5 @@ -1 +1 @@ -d044359f42591eac24af54e234cf92e3 dracut-0.4.tar.bz2 +0d979e6d3f13e458c6cfad838477681d dracut-0.5.tar.bz2 From akurtakov at fedoraproject.org Fri Jul 17 14:03:01 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 17 Jul 2009 14:03:01 +0000 (UTC) Subject: rpms/eclipse-pydev/devel .cvsignore, 1.19, 1.20 sources, 1.19, 1.20 eclipse-pydev.spec, 1.28, 1.29 Message-ID: <20090717140301.4CD1811C00CF@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-pydev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1999/devel Modified Files: .cvsignore sources eclipse-pydev.spec Log Message: Update to 1.4.7. Adds IronPython projects support. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-pydev/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 21 May 2009 13:09:33 -0000 1.19 +++ .cvsignore 17 Jul 2009 14:02:31 -0000 1.20 @@ -1,3 +1,4 @@ org.python.pydev.mylyn.feature-fetched-src-pydev_1_3_7.tar.bz2 org.python.pydev.feature-1.4.5.2727-sources.zip org.python.pydev.feature-1.4.6.2788-sources.zip +org.python.pydev.feature-1.4.7.2843-sources.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-pydev/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 21 May 2009 13:09:33 -0000 1.19 +++ sources 17 Jul 2009 14:02:31 -0000 1.20 @@ -1 +1 @@ -1d56ce8770e97412a8e5ce095a65fcc6 org.python.pydev.feature-1.4.6.2788-sources.zip +43b70bf1ddd1db0d1e64e53b32fb3130 org.python.pydev.feature-1.4.7.2843-sources.zip Index: eclipse-pydev.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-pydev/devel/eclipse-pydev.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- eclipse-pydev.spec 21 May 2009 13:09:34 -0000 1.28 +++ eclipse-pydev.spec 17 Jul 2009 14:02:31 -0000 1.29 @@ -1,6 +1,6 @@ # psyco: Bug 483357 - Empty eclipse-pydev-debuginfo %global debug_package %{nil} -%global qualifier 2788 +%global qualifier 2843 Epoch: 1 @@ -9,7 +9,7 @@ Epoch: 1 %define major 1 %define minor 4 -%define maint 6 +%define maint 7 Summary: Eclipse Python development plug-in Name: eclipse-pydev @@ -213,6 +213,9 @@ rm -rf ${RPM_BUILD_ROOT} %{install_loc}/pydev-mylyn %changelog +* Fri Jul 17 2009 Alexander Kurtakov 1:1.4.7-1 +- Update to 1.4.7. Adds IronPython projects support. + * Thu May 21 2009 Alexander Kurtakov 1:1.4.6-1 - Update to 1.4.6. From katzj at fedoraproject.org Fri Jul 17 14:03:28 2009 From: katzj at fedoraproject.org (Jeremy Katz) Date: Fri, 17 Jul 2009 14:03:28 +0000 (UTC) Subject: rpms/grubby/devel .cvsignore, 1.2, 1.3 grubby.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090717140328.CA03D11C00CF@cvs1.fedora.phx.redhat.com> Author: katzj Update of /cvs/pkgs/rpms/grubby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2264 Modified Files: .cvsignore grubby.spec sources Log Message: * Fri Jul 17 2009 Jeremy Katz - 7.0.1-1 - Fix blkid usage (#124246) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/grubby/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 24 Jun 2009 18:20:08 -0000 1.2 +++ .cvsignore 17 Jul 2009 14:02:58 -0000 1.3 @@ -1 +1 @@ -grubby-7.0.tar.bz2 +grubby-7.0.1.tar.bz2 Index: grubby.spec =================================================================== RCS file: /cvs/pkgs/rpms/grubby/devel/grubby.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- grubby.spec 24 Jun 2009 18:20:08 -0000 1.1 +++ grubby.spec 17 Jul 2009 14:02:58 -0000 1.2 @@ -1,5 +1,5 @@ Name: grubby -Version: 7.0 +Version: 7.0.1 Release: 1%{?dist} Summary: Command line tool for updating bootloader configs Group: System Environment/Base @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Jeremy Katz - 7.0.1-1 +- Fix blkid usage (#124246) + * Wed Jun 24 2009 Jeremy Katz - 7.0-1 - BR libblkid-devel now instead of e2fsprogs-devel - Add bits to switch to using dracut for new-kernel-pkg Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/grubby/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 24 Jun 2009 18:20:08 -0000 1.2 +++ sources 17 Jul 2009 14:02:58 -0000 1.3 @@ -1 +1 @@ -6c2fe5d01dc392abb8d05d43fc79416a grubby-7.0.tar.bz2 +e5b80c67c591b34adc694584402c4bd6 grubby-7.0.1.tar.bz2 From pvrabec at fedoraproject.org Fri Jul 17 14:04:57 2009 From: pvrabec at fedoraproject.org (Peter Vrabec) Date: Fri, 17 Jul 2009 14:04:57 +0000 (UTC) Subject: rpms/shadow-utils/F-11 shadow-4.0.17-login.defs, 1.3, 1.4 shadow-4.0.18.1-useradd, 1.2, 1.3 shadow-4.1.4-redhat.patch, NONE, 1.1 shadow-4.1.4.1-goodname.patch, NONE, 1.1 shadow-4.1.4.1-largeGroup.patch, NONE, 1.1 shadow-4.1.4.1-ldap.patch, NONE, 1.1 shadow-4.1.4.1-sysacc.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 shadow-utils.spec, 1.130, 1.131 sources, 1.21, 1.22 shadow-4.1.3-goodname.patch, 1.1, NONE shadow-4.1.3-redhat.patch, 1.2, NONE shadow-4.1.3-selinux.patch, 1.1, NONE Message-ID: <20090717140457.9DFB611C00CF@cvs1.fedora.phx.redhat.com> Author: pvrabec Update of /cvs/extras/rpms/shadow-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2729 Modified Files: .cvsignore shadow-utils.spec sources Added Files: shadow-4.0.17-login.defs shadow-4.0.18.1-useradd shadow-4.1.4-redhat.patch shadow-4.1.4.1-goodname.patch shadow-4.1.4.1-largeGroup.patch shadow-4.1.4.1-ldap.patch shadow-4.1.4.1-sysacc.patch Removed Files: shadow-4.1.3-goodname.patch shadow-4.1.3-redhat.patch shadow-4.1.3-selinux.patch Log Message: - fix a list of owned directories (#510366) - reduce the reuse of system IDs - speed up sys users look up on LDAP boxes (#511813) - upgrade Index: shadow-4.0.17-login.defs =================================================================== RCS file: shadow-4.0.17-login.defs diff -N shadow-4.0.17-login.defs --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ shadow-4.0.17-login.defs 17 Jul 2009 14:04:27 -0000 1.4 @@ -0,0 +1,58 @@ +# *REQUIRED* +# Directory where mailboxes reside, _or_ name of file, relative to the +# home directory. If you _do_ define both, MAIL_DIR takes precedence. +# QMAIL_DIR is for Qmail +# +#QMAIL_DIR Maildir +MAIL_DIR /var/spool/mail +#MAIL_FILE .mail + +# Password aging controls: +# +# PASS_MAX_DAYS Maximum number of days a password may be used. +# PASS_MIN_DAYS Minimum number of days allowed between password changes. +# PASS_MIN_LEN Minimum acceptable password length. +# PASS_WARN_AGE Number of days warning given before a password expires. +# +PASS_MAX_DAYS 99999 +PASS_MIN_DAYS 0 +PASS_MIN_LEN 5 +PASS_WARN_AGE 7 + +# +# Min/max values for automatic uid selection in useradd +# +UID_MIN 500 +UID_MAX 60000 + +# +# Min/max values for automatic gid selection in groupadd +# +GID_MIN 500 +GID_MAX 60000 + +# +# If defined, this command is run when removing a user. +# It should remove any at/cron/print jobs etc. owned by +# the user to be removed (passed as the first argument). +# +#USERDEL_CMD /usr/sbin/userdel_local + +# +# If useradd should create home directories for users by default +# On RH systems, we do. This option is overridden with the -m flag on +# useradd command line. +# +CREATE_HOME yes + +# The permission mask is initialized to this value. If not specified, +# the permission mask will be initialized to 022. +UMASK 077 + +# This enables userdel to remove user groups if no members exist. +# +USERGROUPS_ENAB yes + +# Use MD5 or DES to encrypt password? Red Hat use MD5 by default. +MD5_CRYPT_ENAB yes + Index: shadow-4.0.18.1-useradd =================================================================== RCS file: shadow-4.0.18.1-useradd diff -N shadow-4.0.18.1-useradd --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ shadow-4.0.18.1-useradd 17 Jul 2009 14:04:27 -0000 1.3 @@ -0,0 +1,9 @@ +# useradd defaults file +GROUP=100 +HOME=/home +INACTIVE=-1 +EXPIRE= +SHELL=/bin/bash +SKEL=/etc/skel +CREATE_MAIL_SPOOL=yes + shadow-4.1.4-redhat.patch: libmisc/find_new_gid.c | 4 ++-- libmisc/find_new_uid.c | 4 ++-- src/useradd.c | 9 +++++---- 3 files changed, 9 insertions(+), 8 deletions(-) --- NEW FILE shadow-4.1.4-redhat.patch --- diff -up shadow-4.1.4/libmisc/find_new_gid.c.redhat shadow-4.1.4/libmisc/find_new_gid.c --- shadow-4.1.4/libmisc/find_new_gid.c.redhat 2009-04-23 19:36:42.000000000 +0200 +++ shadow-4.1.4/libmisc/find_new_gid.c 2009-05-15 12:01:18.000000000 +0200 @@ -58,11 +58,11 @@ int find_new_gid (bool sys_group, assert (gid != NULL); if (!sys_group) { - gid_min = (gid_t) getdef_ulong ("GID_MIN", 1000UL); + gid_min = (gid_t) getdef_ulong ("GID_MIN", 500UL); gid_max = (gid_t) getdef_ulong ("GID_MAX", 60000UL); } else { gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 1UL); - gid_max = (gid_t) getdef_ulong ("GID_MIN", 1000UL) - 1; + gid_max = (gid_t) getdef_ulong ("GID_MIN", 500UL) - 1; gid_max = (gid_t) getdef_ulong ("SYS_GID_MAX", (unsigned long) gid_max); } used_gids = alloca (sizeof (bool) * (gid_max +1)); diff -up shadow-4.1.4/libmisc/find_new_uid.c.redhat shadow-4.1.4/libmisc/find_new_uid.c --- shadow-4.1.4/libmisc/find_new_uid.c.redhat 2009-04-23 19:37:12.000000000 +0200 +++ shadow-4.1.4/libmisc/find_new_uid.c 2009-05-15 12:01:39.000000000 +0200 @@ -58,11 +58,11 @@ int find_new_uid (bool sys_user, assert (uid != NULL); if (!sys_user) { - uid_min = (uid_t) getdef_ulong ("UID_MIN", 1000UL); + uid_min = (uid_t) getdef_ulong ("UID_MIN", 500UL); uid_max = (uid_t) getdef_ulong ("UID_MAX", 60000UL); } else { uid_min = (uid_t) getdef_ulong ("SYS_UID_MIN", 1UL); - uid_max = (uid_t) getdef_ulong ("UID_MIN", 1000UL) - 1; + uid_max = (uid_t) getdef_ulong ("UID_MIN", 500UL) - 1; uid_max = (uid_t) getdef_ulong ("SYS_UID_MAX", (unsigned long) uid_max); } used_uids = alloca (sizeof (bool) * (uid_max +1)); diff -up shadow-4.1.4/src/useradd.c.redhat shadow-4.1.4/src/useradd.c --- shadow-4.1.4/src/useradd.c.redhat 2009-05-10 20:26:35.000000000 +0200 +++ shadow-4.1.4/src/useradd.c 2009-05-15 11:59:40.000000000 +0200 @@ -90,7 +90,7 @@ char *Prog; static gid_t def_group = 100; static const char *def_gname = "other"; static const char *def_home = "/home"; -static const char *def_shell = ""; +static const char *def_shell = "/sbin/nologin"; static const char *def_template = SKEL_DIR; static const char *def_create_mail_spool = "no"; @@ -102,7 +102,7 @@ static char def_file[] = USER_DEFAULTS_F #define VALID(s) (strcspn (s, ":\n") == strlen (s)) static const char *user_name = ""; -static const char *user_pass = "!"; +static const char *user_pass = "!!"; static uid_t user_id; static gid_t user_gid; static const char *user_comment = ""; @@ -996,9 +996,9 @@ static void process_flags (int argc, cha }; while ((c = getopt_long (argc, argv, #ifdef WITH_SELINUX - "b:c:d:De:f:g:G:k:K:lmMNop:rs:u:UZ:", + "b:c:d:De:f:g:G:k:K:lmMnNop:rs:u:UZ:", #else - "b:c:d:De:f:g:G:k:K:lmMNop:rs:u:U", + "b:c:d:De:f:g:G:k:K:lmMnNop:rs:u:U", #endif long_options, NULL)) != -1) { switch (c) { @@ -1148,6 +1148,7 @@ static void process_flags (int argc, cha case 'M': Mflg = true; break; + case 'n': case 'N': Nflg = true; break; shadow-4.1.4.1-goodname.patch: libmisc/chkname.c | 28 ++++++++++++++++++---------- man/groupadd.8 | 4 +--- man/useradd.8 | 2 -- 3 files changed, 19 insertions(+), 15 deletions(-) --- NEW FILE shadow-4.1.4.1-goodname.patch --- diff -up shadow-4.1.4.1/libmisc/chkname.c.goodname shadow-4.1.4.1/libmisc/chkname.c --- shadow-4.1.4.1/libmisc/chkname.c.goodname 2009-04-28 21:14:04.000000000 +0200 +++ shadow-4.1.4.1/libmisc/chkname.c 2009-06-16 13:47:08.000000000 +0200 @@ -49,20 +49,28 @@ static bool is_valid_name (const char *name) { /* - * User/group names must match [a-z_][a-z0-9_-]*[$] - */ - if (('\0' == *name) || - !((('a' <= *name) && ('z' >= *name)) || ('_' == *name))) { + * User/group names must match gnu e-regex: + * [a-zA-Z0-9_.][a-zA-Z0-9_.-]{0,30}[a-zA-Z0-9_.$-]? + * + * as a non-POSIX, extension, allow "$" as the last char for + * sake of Samba 3.x "add machine script" + */ + if ( ('\0' == *name) || + !((*name >= 'a' && *name <= 'z') || + (*name >= 'A' && *name <= 'Z') || + (*name >= '0' && *name <= '9') || + (*name == '_') || (*name == '.') + )) { return false; } while ('\0' != *++name) { - if (!(( ('a' <= *name) && ('z' >= *name) ) || - ( ('0' <= *name) && ('9' >= *name) ) || - ('_' == *name) || - ('-' == *name) || - ( ('$' == *name) && ('\0' == *(name + 1)) ) - )) { + if (!( (*name >= 'a' && *name <= 'z') || + (*name >= 'A' && *name <= 'Z') || + (*name >= '0' && *name <= '9') || + (*name == '_') || (*name == '.') || (*name == '-') || + (*name == '$' && *(name + 1) == '\0') + )) { return false; } } diff -up shadow-4.1.4.1/man/groupadd.8.goodname shadow-4.1.4.1/man/groupadd.8 --- shadow-4.1.4.1/man/groupadd.8.goodname 2009-05-22 15:56:08.000000000 +0200 +++ shadow-4.1.4.1/man/groupadd.8 2009-06-16 13:50:41.000000000 +0200 @@ -153,9 +153,7 @@ Shadow password suite configuration\&. .RE .SH "CAVEATS" .PP -Groupnames must start with a lower case letter or an underscore, followed by lower case letters, digits, underscores, or dashes\&. They can end with a dollar sign\&. In regular expression terms: [a\-z_][a\-z0\-9_\-]*[$]? -.PP -Groupnames may only be up to 16 characters long\&. +Groupnames may only be up to 32 characters long\&. .PP You may not add a NIS or LDAP group\&. This must be performed on the corresponding server\&. .PP diff -up shadow-4.1.4.1/man/useradd.8.goodname shadow-4.1.4.1/man/useradd.8 --- shadow-4.1.4.1/man/useradd.8.goodname 2009-05-22 15:56:28.000000000 +0200 +++ shadow-4.1.4.1/man/useradd.8 2009-06-16 13:51:17.000000000 +0200 @@ -405,8 +405,6 @@ Similarly, if the username already exist \fBuseradd\fR will deny the user account creation request\&. .PP -Usernames must start with a lower case letter or an underscore, followed by lower case letters, digits, underscores, or dashes\&. They can end with a dollar sign\&. In regular expression terms: [a\-z_][a\-z0\-9_\-]*[$]? -.PP Usernames may only be up to 32 characters long\&. .SH "CONFIGURATION" .PP shadow-4.1.4.1-largeGroup.patch: lib/gshadow.c | 65 ++++++++++++++++++++++++++++++++++++++++----------- libmisc/xgetXXbyYY.c | 12 +++++++-- libmisc/xgetgrgid.c | 1 libmisc/xgetgrnam.c | 1 libmisc/xgetpwnam.c | 1 libmisc/xgetpwuid.c | 1 libmisc/xgetspnam.c | 1 7 files changed, 61 insertions(+), 21 deletions(-) --- NEW FILE shadow-4.1.4.1-largeGroup.patch --- diff -U0 shadow-4.1.4.1/ChangeLog.large_group shadow-4.1.4.1/ChangeLog diff -up shadow-4.1.4.1/lib/gshadow.c.large_group shadow-4.1.4.1/lib/gshadow.c --- shadow-4.1.4.1/lib/gshadow.c.large_group 2009-04-23 13:53:56.000000000 +0200 +++ shadow-4.1.4.1/lib/gshadow.c 2009-06-16 14:47:08.000000000 +0200 @@ -2,7 +2,7 @@ * Copyright (c) 1990 - 1994, Julianne Frances Haugh * Copyright (c) 1996 - 1998, Marek Micha??kiewicz * Copyright (c) 2005 , Tomasz K??oczko - * Copyright (c) 2008 , Nicolas Fran??ois + * Copyright (c) 2008 - 2009, Nicolas Fran??ois * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -41,7 +41,6 @@ #include "prototypes.h" #include "defines.h" static /*@null@*/FILE *shadow; -static char sgrbuf[BUFSIZ * 4]; static /*@null@*//*@only@*/char **members = NULL; static size_t nmembers = 0; static /*@null@*//*@only@*/char **admins = NULL; @@ -131,12 +130,25 @@ void endsgent (void) /*@observer@*//*@null@*/struct sgrp *sgetsgent (const char *string) { + static char *sgrbuf = NULL; + static size_t sgrbuflen = 0; + char *fields[FIELDS]; char *cp; int i; + size_t len = strlen (string) + 1; + + if (len > sgrbuflen) { + char *buf = (char *) realloc (sgrbuf, sizeof (char) * len); + if (NULL == buf) { + return NULL; + } + sgrbuf = buf; + sgrbuflen = len; + } - strncpy (sgrbuf, string, sizeof sgrbuf - 1); - sgrbuf[sizeof sgrbuf - 1] = '\0'; + strncpy (sgrbuf, string, len); + sgrbuf[len-1] = '\0'; cp = strrchr (sgrbuf, '\n'); if (NULL != cp) { @@ -161,7 +173,7 @@ void endsgent (void) * the line is invalid. */ - if ((NULL != cp) || (i != FIELDS)) + if ((NULL != cp) || (i != FIELDS)) { #ifdef USE_NIS if (!IS_NISCHAR (fields[0][0])) { return 0; @@ -171,6 +183,7 @@ void endsgent (void) #else return 0; #endif + } sgroup.sg_name = fields[0]; sgroup.sg_passwd = fields[1]; @@ -199,20 +212,48 @@ void endsgent (void) /*@observer@*//*@null@*/struct sgrp *fgetsgent (/*@null@*/FILE * fp) { - char buf[sizeof sgrbuf]; + static size_t buflen = 0; + static char *buf = NULL; + char *cp; + struct sgrp *ret; + + if (0 == buflen) { + buf = (char *) malloc (BUFSIZ); + if (NULL == buf) { + return NULL; + } + } if (NULL == fp) { - return (0); + return NULL; } #ifdef USE_NIS - while (fgetsx (buf, (int) sizeof buf, fp) != (char *) 0) + while (fgetsx (buf, (int) sizeof buf, fp) == buf) #else - if (fgetsx (buf, (int) sizeof buf, fp) != (char *) 0) + if (fgetsx (buf, (int) sizeof buf, fp) == buf) #endif { - cp = strchr (buf, '\n'); + while ( ((cp = strrchr (buf, '\n')) == NULL) + && (feof (fp) == 0)) { + size_t len; + + cp = (char *) realloc (buf, buflen*2); + if (NULL == cp) { + return NULL; + } + buf = cp; + buflen *= 2; + + len = strlen (buf); + if (fgetsx (&buf[len], + (int) (buflen - len), + fp) != &buf[len]) { + return NULL; + } + } + cp = strrchr (buf, '\n'); if (NULL != cp) { *cp = '\0'; } @@ -223,7 +264,7 @@ void endsgent (void) #endif return (sgetsgent (buf)); } - return 0; + return NULL; } /* @@ -235,7 +276,6 @@ void endsgent (void) #ifdef USE_NIS bool nis_1_group = false; struct sgrp *val; - char buf[BUFSIZ]; #endif if (NULL == shadow) { setsgent (); @@ -334,7 +374,6 @@ void endsgent (void) struct sgrp *sgrp; #ifdef USE_NIS - char buf[BUFSIZ]; static char save_name[16]; int nis_disabled = 0; #endif diff -up shadow-4.1.4.1/libmisc/xgetgrgid.c.large_group shadow-4.1.4.1/libmisc/xgetgrgid.c --- shadow-4.1.4.1/libmisc/xgetgrgid.c.large_group 2008-09-06 16:56:51.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetgrgid.c 2009-06-16 14:15:08.000000000 +0200 @@ -58,7 +58,6 @@ #define ARG_TYPE gid_t #define ARG_NAME gid #define DUP_FUNCTION __gr_dup -#define MAX_LENGTH 0x8000 #define HAVE_FUNCTION_R (defined HAVE_GETGRGID_R) #include "xgetXXbyYY.c" diff -up shadow-4.1.4.1/libmisc/xgetgrnam.c.large_group shadow-4.1.4.1/libmisc/xgetgrnam.c --- shadow-4.1.4.1/libmisc/xgetgrnam.c.large_group 2008-09-06 16:56:57.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetgrnam.c 2009-06-16 14:15:08.000000000 +0200 @@ -58,7 +58,6 @@ #define ARG_TYPE const char * #define ARG_NAME name #define DUP_FUNCTION __gr_dup -#define MAX_LENGTH 0x8000 #define HAVE_FUNCTION_R (defined HAVE_GETGRNAM_R) #include "xgetXXbyYY.c" diff -up shadow-4.1.4.1/libmisc/xgetpwnam.c.large_group shadow-4.1.4.1/libmisc/xgetpwnam.c --- shadow-4.1.4.1/libmisc/xgetpwnam.c.large_group 2008-09-06 16:57:05.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetpwnam.c 2009-06-16 14:15:08.000000000 +0200 @@ -58,7 +58,6 @@ #define ARG_TYPE const char * #define ARG_NAME name #define DUP_FUNCTION __pw_dup -#define MAX_LENGTH 0x8000 #define HAVE_FUNCTION_R (defined HAVE_GETPWNAM_R) #include "xgetXXbyYY.c" diff -up shadow-4.1.4.1/libmisc/xgetpwuid.c.large_group shadow-4.1.4.1/libmisc/xgetpwuid.c --- shadow-4.1.4.1/libmisc/xgetpwuid.c.large_group 2008-09-06 16:57:11.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetpwuid.c 2009-06-16 14:15:08.000000000 +0200 @@ -58,7 +58,6 @@ #define ARG_TYPE uid_t #define ARG_NAME uid #define DUP_FUNCTION __pw_dup -#define MAX_LENGTH 0x8000 #define HAVE_FUNCTION_R (defined HAVE_GETPWUID_R) #include "xgetXXbyYY.c" diff -up shadow-4.1.4.1/libmisc/xgetspnam.c.large_group shadow-4.1.4.1/libmisc/xgetspnam.c --- shadow-4.1.4.1/libmisc/xgetspnam.c.large_group 2008-09-06 16:57:17.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetspnam.c 2009-06-16 14:15:08.000000000 +0200 @@ -58,7 +58,6 @@ #define ARG_TYPE const char * #define ARG_NAME name #define DUP_FUNCTION __spw_dup -#define MAX_LENGTH 0x8000 #define HAVE_FUNCTION_R (defined HAVE_GETSPNAM_R) #include "xgetXXbyYY.c" diff -up shadow-4.1.4.1/libmisc/xgetXXbyYY.c.large_group shadow-4.1.4.1/libmisc/xgetXXbyYY.c --- shadow-4.1.4.1/libmisc/xgetXXbyYY.c.large_group 2009-04-23 11:15:53.000000000 +0200 +++ shadow-4.1.4.1/libmisc/xgetXXbyYY.c 2009-06-16 14:15:08.000000000 +0200 @@ -79,7 +79,7 @@ exit (13); } - do { + while (true) { int status; LOOKUP_TYPE *resbuf = NULL; buffer = (char *)realloc (buffer, length); @@ -106,8 +106,14 @@ return NULL; } - length *= 4; - } while (length < MAX_LENGTH); + if (length <= ((size_t)-1 / 4)) { + length *= 4; + } else if (length == (size_t) -1) { + break; + } else { + length = (size_t) -1; + } + } free(buffer); free(result); diff -up shadow-4.1.4.1/NEWS.large_group shadow-4.1.4.1/NEWS shadow-4.1.4.1-ldap.patch: find_new_gid.c | 25 +++++++++++++++++-------- find_new_uid.c | 27 +++++++++++++++++++-------- 2 files changed, 36 insertions(+), 16 deletions(-) --- NEW FILE shadow-4.1.4.1-ldap.patch --- diff -up shadow-4.1.4.1/libmisc/find_new_gid.c.ldap shadow-4.1.4.1/libmisc/find_new_gid.c --- shadow-4.1.4.1/libmisc/find_new_gid.c.ldap 2009-07-16 10:37:41.653798746 +0200 +++ shadow-4.1.4.1/libmisc/find_new_gid.c 2009-07-16 10:44:14.482808945 +0200 @@ -90,17 +90,26 @@ int find_new_gid (bool sys_group, * but we also check the local database (gr_rewind/gr_next) in case * some groups were created but the changes were not committed yet. */ - setgrent (); - while ((grp = getgrent ()) != NULL) { - if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { - group_id = grp->gr_gid + 1; + if (sys_group ) { + for(group_id = gid_min; group_id<=gid_max; group_id++) { + grp = getgrgid(group_id); + if(grp) + used_gids[grp->gr_gid] = true; } - /* create index of used GIDs */ - if (grp->gr_gid <= gid_max) { - used_gids[grp->gr_gid] = true; + } + else { + setgrent (); + while ((grp = getgrent ()) != NULL) { + if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { + group_id = grp->gr_gid + 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; + } } + endgrent (); } - endgrent (); gr_rewind (); while ((grp = gr_next ()) != NULL) { if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { diff -up shadow-4.1.4.1/libmisc/find_new_uid.c.ldap shadow-4.1.4.1/libmisc/find_new_uid.c --- shadow-4.1.4.1/libmisc/find_new_uid.c.ldap 2009-07-16 10:37:41.653798746 +0200 +++ shadow-4.1.4.1/libmisc/find_new_uid.c 2009-07-16 10:37:41.668798323 +0200 @@ -91,17 +91,27 @@ int find_new_uid (bool sys_user, * but we also check the local database (pw_rewind/pw_next) in case * some users were created but the changes were not committed yet. */ - setpwent (); - while ((pwd = getpwent ()) != NULL) { - if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { - user_id = pwd->pw_uid + 1; + /* speed up sys users look up on LDAP boxes */ + if (sys_user) { + for (user_id = uid_min; user_id<=uid_max; user_id++) { + pwd = getpwuid(user_id); + if(pwd) + used_uids[user_id] = true; } - /* create index of used UIDs */ - if (pwd->pw_uid <= uid_max) { - used_uids[pwd->pw_uid] = true; + } + else { + setpwent (); + while ((pwd = getpwent ()) != NULL) { + if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { + user_id = pwd->pw_uid + 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; + } } + endpwent (); } - endpwent (); pw_rewind (); while ((pwd = pw_next ()) != NULL) { if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { @@ -113,6 +123,7 @@ int find_new_uid (bool sys_user, } } + /* find free system account in reverse order */ if (sys_user) { for (user_id = uid_max; user_id >= uid_min; user_id--) { shadow-4.1.4.1-sysacc.patch: find_new_gid.c | 93 +++++++++++++++++++++++++++++++---------------------- find_new_uid.c | 99 +++++++++++++++++++++++++++++++++------------------------ 2 files changed, 113 insertions(+), 79 deletions(-) --- NEW FILE shadow-4.1.4.1-sysacc.patch --- diff -up shadow-4.1.4.1/libmisc/find_new_gid.c.sysacc shadow-4.1.4.1/libmisc/find_new_gid.c --- shadow-4.1.4.1/libmisc/find_new_gid.c.sysacc 2009-07-16 11:51:34.807860808 +0200 +++ shadow-4.1.4.1/libmisc/find_new_gid.c 2009-07-16 14:19:08.678798578 +0200 @@ -52,7 +52,7 @@ int find_new_gid (bool sys_group, /*@null@*/gid_t const *preferred_gid) { const struct group *grp; - gid_t gid_min, gid_max, group_id; + gid_t gid_min, gid_max, group_id, id; bool *used_gids; assert (gid != NULL); @@ -61,7 +61,7 @@ int find_new_gid (bool sys_group, gid_min = (gid_t) getdef_ulong ("GID_MIN", 500UL); gid_max = (gid_t) getdef_ulong ("GID_MAX", 60000UL); } else { - gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 1UL); + gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 101UL); gid_max = (gid_t) getdef_ulong ("GID_MIN", 500UL) - 1; gid_max = (gid_t) getdef_ulong ("SYS_GID_MAX", (unsigned long) gid_max); } @@ -80,7 +80,6 @@ int find_new_gid (bool sys_group, return 0; } - group_id = gid_min; /* * Search the entire group file, @@ -91,13 +90,28 @@ int find_new_gid (bool sys_group, * some groups were created but the changes were not committed yet. */ if (sys_group ) { - for(group_id = gid_min; group_id<=gid_max; group_id++) { - grp = getgrgid(group_id); - if(grp) + group_id = gid_max; + for(id = gid_max; id>=gid_min; id--) { + grp = getgrgid(id); + if(grp) { + group_id = id - 1; used_gids[grp->gr_gid] = true; + } + } + + gr_rewind (); + while ((grp = gr_next ()) != NULL) { + if ((grp->gr_gid <= group_id) && (grp->gr_gid >= gid_min)) { + group_id = grp->gr_gid - 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; + } } } else { + group_id = gid_min; setgrent (); while ((grp = getgrent ()) != NULL) { if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { @@ -109,32 +123,16 @@ int find_new_gid (bool sys_group, } } endgrent (); - } - gr_rewind (); - while ((grp = gr_next ()) != NULL) { - if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { - group_id = grp->gr_gid + 1; - } - /* create index of used GIDs */ - if (grp->gr_gid <= gid_max) { - used_gids[grp->gr_gid] = true; - } - } - /* find free system account in reverse order */ - if (sys_group) { - for (group_id = gid_max; group_id >= gid_min; group_id--) { - if (false == used_gids[group_id]) { - break; + gr_rewind (); + while ((grp = gr_next ()) != NULL) { + if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) { + group_id = grp->gr_gid + 1; + } + /* create index of used GIDs */ + if (grp->gr_gid <= gid_max) { + used_gids[grp->gr_gid] = true; } - } - if ( group_id < gid_min ) { - fprintf (stderr, - _("%s: Can't get unique GID (no more available GIDs)\n"), - Prog); - SYSLOG ((LOG_WARN, - "no more available GID on the system")); - return -1; } } @@ -143,16 +141,35 @@ int find_new_gid (bool sys_group, * will give us GID_MAX+1 even if not unique. Search for the first * free GID starting with GID_MIN. */ - if (group_id == gid_max + 1) { - for (group_id = gid_min; group_id < gid_max; group_id++) { - if (false == used_gids[group_id]) { - break; + if (sys_group) { + if (group_id == gid_min - 1) { + for (group_id = gid_max; group_id >= gid_min; group_id--) { + if (false == used_gids[group_id]) { + break; + } + } + if ( group_id < gid_min ) { + fprintf (stderr, + _("%s: Can't get unique GID (no more available GIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, + "no more available GID on the system")); + return -1; } } - if (group_id == gid_max) { - fprintf (stderr, _("%s: Can't get unique GID (no more available GIDs)\n"), Prog); - SYSLOG ((LOG_WARN, "no more available GID on the system")); - return -1; + } + else { + if (group_id == gid_max + 1) { + for (group_id = gid_min; group_id < gid_max; group_id++) { + if (false == used_gids[group_id]) { + break; + } + } + if (group_id == gid_max) { + fprintf (stderr, _("%s: Can't get unique GID (no more available GIDs)\n"), Prog); + SYSLOG ((LOG_WARN, "no more available GID on the system")); + return -1; + } } } diff -up shadow-4.1.4.1/libmisc/find_new_uid.c.sysacc shadow-4.1.4.1/libmisc/find_new_uid.c --- shadow-4.1.4.1/libmisc/find_new_uid.c.sysacc 2009-07-16 11:51:34.807860808 +0200 +++ shadow-4.1.4.1/libmisc/find_new_uid.c 2009-07-16 14:13:38.120798526 +0200 @@ -52,7 +52,7 @@ int find_new_uid (bool sys_user, /*@null@*/uid_t const *preferred_uid) { const struct passwd *pwd; - uid_t uid_min, uid_max, user_id; + uid_t uid_min, uid_max, user_id, id; bool *used_uids; assert (uid != NULL); @@ -61,7 +61,7 @@ int find_new_uid (bool sys_user, uid_min = (uid_t) getdef_ulong ("UID_MIN", 500UL); uid_max = (uid_t) getdef_ulong ("UID_MAX", 60000UL); } else { - uid_min = (uid_t) getdef_ulong ("SYS_UID_MIN", 1UL); + uid_min = (uid_t) getdef_ulong ("SYS_UID_MIN", 101UL); uid_max = (uid_t) getdef_ulong ("UID_MIN", 500UL) - 1; uid_max = (uid_t) getdef_ulong ("SYS_UID_MAX", (unsigned long) uid_max); } @@ -81,8 +81,6 @@ int find_new_uid (bool sys_user, } - user_id = uid_min; - /* * Search the entire password file, * looking for the largest unused value. @@ -91,15 +89,30 @@ int find_new_uid (bool sys_user, * but we also check the local database (pw_rewind/pw_next) in case * some users were created but the changes were not committed yet. */ - /* speed up sys users look up on LDAP boxes */ if (sys_user) { - for (user_id = uid_min; user_id<=uid_max; user_id++) { - pwd = getpwuid(user_id); - if(pwd) + user_id = uid_max; + for (id = uid_max; id>=uid_min; id--) { + pwd = getpwuid(id); + if(pwd) { + user_id = id - 1; used_uids[user_id] = true; + } } + + pw_rewind (); + while ((pwd = pw_next ()) != NULL) { + if ((pwd->pw_uid <= user_id) && (pwd->pw_uid >= uid_min)) { + user_id = pwd->pw_uid - 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; + } + } + } else { + user_id = uid_min; setpwent (); while ((pwd = getpwent ()) != NULL) { if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { @@ -111,51 +124,55 @@ int find_new_uid (bool sys_user, } } endpwent (); - } - pw_rewind (); - while ((pwd = pw_next ()) != NULL) { - if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { - user_id = pwd->pw_uid + 1; - } - /* create index of used UIDs */ - if (pwd->pw_uid <= uid_max) { - used_uids[pwd->pw_uid] = true; - } - } - - /* find free system account in reverse order */ - if (sys_user) { - for (user_id = uid_max; user_id >= uid_min; user_id--) { - if (false == used_uids[user_id]) { - break; + pw_rewind (); + while ((pwd = pw_next ()) != NULL) { + if ((pwd->pw_uid >= user_id) && (pwd->pw_uid <= uid_max)) { + user_id = pwd->pw_uid + 1; + } + /* create index of used UIDs */ + if (pwd->pw_uid <= uid_max) { + used_uids[pwd->pw_uid] = true; } - } - if (user_id < uid_min ) { - fprintf (stderr, - _("%s: Can't get unique system UID (no more available UIDs)\n"), - Prog); - SYSLOG ((LOG_WARN, - "no more available UID on the system")); - return -1; } } + /* * If a user with UID equal to UID_MAX exists, the above algorithm * will give us UID_MAX+1 even if not unique. Search for the first * free UID starting with UID_MIN. */ - if (user_id == uid_max + 1) { - for (user_id = uid_min; user_id < uid_max; user_id++) { - if (false == used_uids[user_id]) { - break; + if (sys_user) { + if (user_id == uid_min - 1) { + for (user_id = uid_max; user_id >= uid_min; user_id--) { + if (false == used_uids[user_id]) { + break; + } + } + if (user_id < uid_min ) { + fprintf (stderr, + _("%s: Can't get unique system UID (no more available UIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, + "no more available UID on the system")); + return -1; } } - if (user_id == uid_max) { - fprintf (stderr, _("%s: Can't get unique UID (no more available UIDs)\n"), Prog); - SYSLOG ((LOG_WARN, "no more available UID on the system")); - return -1; + } + else { + if (user_id == uid_max + 1) { + for (user_id = uid_min; user_id < uid_max; user_id++) { + if (false == used_uids[user_id]) { + break; + } + } + if (user_id == uid_max) { + fprintf (stderr, _("%s: Can't get unique UID (no more available UIDs)\n"), + Prog); + SYSLOG ((LOG_WARN, "no more available UID on the system")); + return -1; + } } } Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/shadow-utils/F-11/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 14 Apr 2009 10:19:12 -0000 1.20 +++ .cvsignore 17 Jul 2009 14:04:27 -0000 1.21 @@ -1,3 +1 @@ -shadow-4.0.17-login.defs -shadow-4.0.18.1-useradd -shadow-4.1.3.tar.bz2 +shadow-4.1.4.1.tar.bz2 Index: shadow-utils.spec =================================================================== RCS file: /cvs/extras/rpms/shadow-utils/F-11/shadow-utils.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- shadow-utils.spec 14 Apr 2009 14:12:16 -0000 1.130 +++ shadow-utils.spec 17 Jul 2009 14:04:27 -0000 1.131 @@ -1,15 +1,17 @@ Summary: Utilities for managing accounts and shadow password files Name: shadow-utils -Version: 4.1.3 -Release: 2%{?dist} +Version: 4.1.4.1 +Release: 4%{?dist} Epoch: 2 URL: http://pkg-shadow.alioth.debian.org/ Source0: ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/shadow-%{version}.tar.bz2 Source1: shadow-4.0.17-login.defs Source2: shadow-4.0.18.1-useradd -Patch0: shadow-4.1.3-redhat.patch -Patch1: shadow-4.1.3-goodname.patch -Patch2: shadow-4.1.3-selinux.patch +Patch0: shadow-4.1.4-redhat.patch +Patch1: shadow-4.1.4.1-goodname.patch +Patch2: shadow-4.1.4.1-largeGroup.patch +Patch3: shadow-4.1.4.1-ldap.patch +Patch4: shadow-4.1.4.1-sysacc.patch License: BSD and GPLv2+ Group: System Environment/Base BuildRequires: libselinux-devel >= 1.25.2-1 @@ -36,7 +38,9 @@ are used for managing group accounts. %setup -q -n shadow-%{version} %patch0 -p1 -b .redhat %patch1 -p1 -b .goodname -%patch2 -p1 -b .selinux +%patch2 -p1 -b .largeGroup +%patch3 -p1 -b .ldap +%patch4 -p1 -b .sysacc iconv -f ISO88591 -t utf-8 doc/HOWTO > doc/HOWTO.utf8 cp -f doc/HOWTO.utf8 doc/HOWTO @@ -125,7 +129,9 @@ find $RPM_BUILD_ROOT%{_mandir} -depth -t for dir in $(ls -1d $RPM_BUILD_ROOT%{_mandir}/{??,??_??}) ; do dir=$(echo $dir | sed -e "s|^$RPM_BUILD_ROOT||") lang=$(basename $dir) - echo "%%lang($lang) $dir/man*/*" >> shadow.lang + echo "%%lang($lang) $dir" >> shadow.lang + echo "%%lang($lang) $dir/man*" >> shadow.lang +# echo "%%lang($lang) $dir/man*/*" >> shadow.lang done %clean @@ -176,6 +182,27 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/vigr.8* %changelog +* Thu Jul 16 2009 Peter Vrabec 2:4.1.4.1-4 +- fix a list of owned directories (#510366) + +* Thu Jul 16 2009 Peter Vrabec 2:4.1.4.1-3 +- reduce the reuse of system IDs + +* Wed Jul 15 2009 Peter Vrabec 2:4.1.4.1-2 +- speed up sys users look up on LDAP boxes (#511813) + +* Tue Jun 16 2009 Peter Vrabec 2:4.1.4.1-1 +- upgrade + +* Fri May 15 2009 Peter Vrabec 2:4.1.4-1 +- upgrade + +* Wed Apr 22 2009 Peter Vrabec 2:4.1.3.1-2 +- lastlog fix + +* Fri Apr 17 2009 Peter Vrabec 2:4.1.3.1-1 +- upgrade + * Tue Apr 14 2009 Peter Vrabec 2:4.1.3-2 - get "-n" option back - fix selinux issues Index: sources =================================================================== RCS file: /cvs/extras/rpms/shadow-utils/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 14 Apr 2009 10:19:14 -0000 1.21 +++ sources 17 Jul 2009 14:04:27 -0000 1.22 @@ -1,3 +1 @@ -e91727c55dbafc9915250e31535f13bb shadow-4.0.17-login.defs -ebdf46b79f9b414353c9ae8aba4d55cc shadow-4.0.18.1-useradd -d222bd50f64d52a32882c82ab1e85f28 shadow-4.1.3.tar.bz2 +62f7dae4cb54fa84e478c4602d58cbe8 shadow-4.1.4.1.tar.bz2 --- shadow-4.1.3-goodname.patch DELETED --- --- shadow-4.1.3-redhat.patch DELETED --- --- shadow-4.1.3-selinux.patch DELETED --- From iefremov at fedoraproject.org Fri Jul 17 14:14:31 2009 From: iefremov at fedoraproject.org (iefremov) Date: Fri, 17 Jul 2009 14:14:31 +0000 (UTC) Subject: rpms/ugene/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 ugene.spec, 1.4, 1.5 Message-ID: <20090717141431.D5A6B11C00CF@cvs1.fedora.phx.redhat.com> Author: iefremov Update of /cvs/pkgs/rpms/ugene/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5549 Modified Files: .cvsignore sources ugene.spec Log Message: update to 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 9 Jul 2009 19:45:34 -0000 1.3 +++ .cvsignore 17 Jul 2009 14:14:01 -0000 1.4 @@ -1 +1 @@ -ugene-1.5.0.tar.gz +ugene-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 9 Jul 2009 19:45:34 -0000 1.3 +++ sources 17 Jul 2009 14:14:01 -0000 1.4 @@ -1 +1 @@ -ba424198d7930028549fe94593b406ca ugene-1.5.0.tar.gz +082534460b4601c8e9ee64f07a56f164 ugene-1.5.1.tar.gz Index: ugene.spec =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-11/ugene.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ugene.spec 9 Jul 2009 19:45:34 -0000 1.4 +++ ugene.spec 17 Jul 2009 14:14:01 -0000 1.5 @@ -1,6 +1,6 @@ Name: ugene Summary: Integrated bioinformatics toolkit -Version: 1.5.0 +Version: 1.5.1 Release: 1%{?dist} #The entire source code is GPLv2+ except: #file src/libs_3rdparty/qtbindings_core/src/qtscriptconcurrent.h which is GPLv2 @@ -26,8 +26,6 @@ is a designer for custom bioinformatics %setup -q %build -# replacing lrelease -> lrelease-qt4 for compatibility with fedora -sed -i -e 's/lrelease/lrelease-qt4/g' ugene.pro %_bindir/qmake-qt4 -r \ INSTALL_BINDIR=%{_bindir} \ INSTALL_LIBDIR=%{_libdir} \ @@ -55,6 +53,10 @@ rm -rf %{buildroot} %doc COPYRIGHT LICENSE %changelog +* Fri Jul 17 2009 Ivan Efremov - 1.5.1-1 +- Upstream version change +- Fix for lrelease removed due to upstream package changes + * Mon Jul 06 2009 Ivan Efremov - 1.5.0-1 - Upstream version change - Needed Qt versions bumped up From iefremov at fedoraproject.org Fri Jul 17 14:16:39 2009 From: iefremov at fedoraproject.org (iefremov) Date: Fri, 17 Jul 2009 14:16:39 +0000 (UTC) Subject: rpms/ugene/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 ugene.spec, 1.2, 1.3 Message-ID: <20090717141639.0E3A211C00CF@cvs1.fedora.phx.redhat.com> Author: iefremov Update of /cvs/pkgs/rpms/ugene/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6414 Modified Files: .cvsignore sources ugene.spec Log Message: update to 1.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 9 Jul 2009 20:18:52 -0000 1.3 +++ .cvsignore 17 Jul 2009 14:16:38 -0000 1.4 @@ -1 +1 @@ -ugene-1.5.0.tar.gz +ugene-1.5.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 9 Jul 2009 20:18:52 -0000 1.3 +++ sources 17 Jul 2009 14:16:38 -0000 1.4 @@ -1 +1 @@ -ba424198d7930028549fe94593b406ca ugene-1.5.0.tar.gz +082534460b4601c8e9ee64f07a56f164 ugene-1.5.1.tar.gz Index: ugene.spec =================================================================== RCS file: /cvs/pkgs/rpms/ugene/F-10/ugene.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ugene.spec 9 Jul 2009 20:18:52 -0000 1.2 +++ ugene.spec 17 Jul 2009 14:16:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: ugene Summary: Integrated bioinformatics toolkit -Version: 1.5.0 +Version: 1.5.1 Release: 1%{?dist} #The entire source code is GPLv2+ except: #file src/libs_3rdparty/qtbindings_core/src/qtscriptconcurrent.h which is GPLv2 @@ -26,8 +26,6 @@ is a designer for custom bioinformatics %setup -q %build -# replacing lrelease -> lrelease-qt4 for compatibility with fedora -sed -i -e 's/lrelease/lrelease-qt4/g' ugene.pro %_bindir/qmake-qt4 -r \ INSTALL_BINDIR=%{_bindir} \ INSTALL_LIBDIR=%{_libdir} \ @@ -55,6 +53,10 @@ rm -rf %{buildroot} %doc COPYRIGHT LICENSE %changelog +* Fri Jul 17 2009 Ivan Efremov - 1.5.1-1 +- Upstream version change +- Fix for lrelease removed due to upstream package changes + * Mon Jul 06 2009 Ivan Efremov - 1.5.0-1 - Upstream version change - Needed Qt versions bumped up From notting at fedoraproject.org Fri Jul 17 14:22:35 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 14:22:35 +0000 (UTC) Subject: comps comps-f12.xml.in,1.41,1.42 Message-ID: <20090717142235.3070411C00CF@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7845 Modified Files: comps-f12.xml.in Log Message: Twiddle eclipse group based on feedback from Eclipse team. Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- comps-f12.xml.in 16 Jul 2009 18:35:58 -0000 1.41 +++ comps-f12.xml.in 17 Jul 2009 14:22:04 -0000 1.42 @@ -1234,17 +1234,20 @@ false true - eclipse-cdt + eclipse-cdt + eclipse-jdt eclipse-changelog - eclipse-jdt + eclipse-egit eclipse-mylyn eclipse-mylyn-java + eclipse-oprofile eclipse-pde eclipse-pydev eclipse-rpm-editor eclipse-subclipse + eclipse-systemtap + eclipse-valgrind eclipse-cmakeed - eclipse-egit eclipse-epic eclipse-findbugs eclipse-moreunit From kasal at fedoraproject.org Fri Jul 17 14:23:46 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Fri, 17 Jul 2009 14:23:46 +0000 (UTC) Subject: rpms/perl-Glib/devel perl-Glib.spec,1.32,1.33 Message-ID: <20090717142346.6292C11C00CF@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl-Glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8449 Modified Files: perl-Glib.spec Log Message: - create devel subpackage, so that the main one does not require the whole perl-devel (#509419) Index: perl-Glib.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Glib/devel/perl-Glib.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-Glib.spec 13 Mar 2009 20:13:35 -0000 1.32 +++ perl-Glib.spec 17 Jul 2009 14:23:16 -0000 1.33 @@ -1,6 +1,6 @@ Name: perl-Glib Version: 1.201 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to GLib Group: Development/Libraries @@ -17,7 +17,7 @@ BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -This module provides perl access to Glib and GLib's GObject libraries. +This module provides perl access to GLib and GLib's GObject libraries. GLib is a portability and utility library; GObject provides a generic type system with inheritance and a powerful signal system. Together these libraries are used as the foundation for many of the libraries @@ -25,6 +25,13 @@ that make up the Gnome environment, and projects. +%package devel +Summary: Development part of Perl interface to GLib + +%description devel +Development part of package perl-Glib, the Perl module providing interface +to GLib and GObject libraries. + %prep %setup -q -n Glib-%{version} @@ -66,9 +73,31 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/Glib/ %{perl_vendorarch}/Glib* %{_mandir}/man3/*.3pm* +%exclude %{perl_vendorarch}/Glib/*/*.h +%exclude %{perl_vendorarch}/Glib/MakeHelper.pm +%exclude %{perl_vendorarch}/Glib/devel.pod +%exclude %{perl_vendorarch}/Glib/xsapi.pod +%exclude %{_mandir}/man3/Glib::MakeHelper.3pm.gz +%exclude %{_mandir}/man3/Glib::devel.3pm.gz +%exclude %{_mandir}/man3/Glib::xsapi.3pm.gz + + +%files devel +%defattr(-,root,root,-) +%{perl_vendorarch}/Glib/*/*.h +%{perl_vendorarch}/Glib/MakeHelper.pm +%{perl_vendorarch}/Glib/devel.pod +%{perl_vendorarch}/Glib/xsapi.pod +%{_mandir}/man3/Glib::MakeHelper.3pm.gz +%{_mandir}/man3/Glib::devel.3pm.gz +%{_mandir}/man3/Glib::xsapi.3pm.gz %changelog +* Fri Jul 17 2009 Stepan Kasal - 1.201-3 +- create devel subpackage, so that the main one does not require + the whole perl-devel (#509419) + * Fri Mar 13 2009 Tom "spot" Callaway - 1.201-2 - dont run the tests on ppc From thomasvs at fedoraproject.org Fri Jul 17 14:26:24 2009 From: thomasvs at fedoraproject.org (Thomas Vander Stichele) Date: Fri, 17 Jul 2009 14:26:24 +0000 (UTC) Subject: rpms/python-twisted-conch/F-11 python-2.6.patch, NONE, 1.1 python-twisted-conch.spec, 1.10, 1.11 Message-ID: <20090717142624.4E4FC11C00CF@cvs1.fedora.phx.redhat.com> Author: thomasvs Update of /cvs/extras/rpms/python-twisted-conch/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9848 Modified Files: python-twisted-conch.spec Added Files: python-2.6.patch Log Message: add patch for python 2.6 deprecation warnings python-2.6.patch: scripts/ckeygen.py | 46 +++++++++++++++++------------- ssh/keys.py | 18 ++++++------ ssh/transport.py | 36 ++++++++++-------------- test/test_ckeygen.py | 73 +++++++++++++++++++++++++++++++++++++++++++++++++ test/test_keys.py | 7 ++-- test/test_transport.py | 26 ++++++++--------- 6 files changed, 140 insertions(+), 66 deletions(-) --- NEW FILE python-2.6.patch --- --- twisted-conch-8.2.0.orig/twisted/conch/test/test_keys.py +++ twisted-conch-8.2.0/twisted/conch/test/test_keys.py @@ -12,10 +12,11 @@ else: from twisted.conch.ssh import keys, common, sexpy, asn1 +import os, base64 from twisted.conch.test import keydata from twisted.python import randbytes +from twisted.python.hashlib import sha1 from twisted.trial import unittest -import sha, os, base64 class SSHKeysHandlingTestCase(unittest.TestCase): """ @@ -330,7 +331,7 @@ messageSize = 6 self.assertEquals(keys.pkcs1Pad(data, messageSize), '\x01\xff\x00ABC') - hash = sha.new().digest() + hash = sha1().digest() messageSize = 40 self.assertEquals(keys.pkcs1Digest('', messageSize), '\x01\xff\xff\xff\x00' + keys.ID_SHA1 + hash) @@ -362,7 +363,7 @@ """ data = 'data' key, sig = self._signDSA(data) - sigData = sha.new(data).digest() + sigData = sha1(data).digest() v = key.sign(sigData, '\x55' * 19) self.assertEquals(sig, common.NS('ssh-dss') + common.NS( Crypto.Util.number.long_to_bytes(v[0], 20) + --- twisted-conch-8.2.0.orig/twisted/conch/test/test_transport.py +++ twisted-conch-8.2.0/twisted/conch/test/test_transport.py @@ -5,8 +5,6 @@ Tests for ssh/transport.py and the classes therein. """ -import md5, sha - try: import Crypto.Cipher.DES3 except ImportError: @@ -27,6 +25,7 @@ from twisted.protocols import loopback from twisted.python import randbytes from twisted.python.reflect import qual +from twisted.python.hashlib import md5, sha1 from twisted.conch.ssh import service from twisted.test import proto_helpers @@ -856,9 +855,8 @@ """ self.proto.sessionID = 'EF' - k1 = sha.new('AB' + 'CD' - + 'K' + self.proto.sessionID).digest() - k2 = sha.new('ABCD' + k1).digest() + k1 = sha1('AB' + 'CD' + 'K' + self.proto.sessionID).digest() + k2 = sha1('ABCD' + k1).digest() self.assertEquals(self.proto._getKey('K', 'AB', 'CD'), k1 + k2) @@ -1109,7 +1107,7 @@ f = common._MPpow(transport.DH_GENERATOR, y, transport.DH_PRIME) sharedSecret = common._MPpow(e, y, transport.DH_PRIME) - h = sha.new() + h = sha1() h.update(common.NS(self.proto.ourVersionString) * 2) h.update(common.NS(self.proto.ourKexInitPayload) * 2) h.update(common.NS(self.proto.factory.publicKeys['ssh-rsa'].blob())) @@ -1190,7 +1188,7 @@ y = common.getMP('\x00\x00\x00\x80' + '\x99' * 128)[0] f = common._MPpow(self.proto.g, y, self.proto.p) sharedSecret = common._MPpow(e, y, self.proto.p) - h = sha.new() + h = sha1() h.update(common.NS(self.proto.ourVersionString) * 2) h.update(common.NS(self.proto.ourKexInitPayload) * 2) h.update(common.NS(self.proto.factory.publicKeys['ssh-rsa'].blob())) @@ -1221,7 +1219,7 @@ y = common.getMP('\x00\x00\x00\x80' + '\x99' * 128)[0] f = common._MPpow(self.proto.g, y, self.proto.p) sharedSecret = common._MPpow(e, y, self.proto.p) - h = sha.new() + h = sha1() h.update(common.NS(self.proto.ourVersionString) * 2) h.update(common.NS(self.proto.ourKexInitPayload) * 2) h.update(common.NS(self.proto.factory.publicKeys['ssh-rsa'].blob())) @@ -1360,7 +1358,7 @@ self.calledVerifyHostKey = True self.assertEquals(pubKey, self.blob) self.assertEquals(fingerprint.replace(':', ''), - md5.new(pubKey).hexdigest()) + md5(pubKey).hexdigest()) return defer.succeed(True) @@ -1427,7 +1425,7 @@ sharedSecret = common._MPpow(transport.DH_GENERATOR, self.proto.x, transport.DH_PRIME) - h = sha.new() + h = sha1() h.update(common.NS(self.proto.ourVersionString) * 2) h.update(common.NS(self.proto.ourKexInitPayload) * 2) h.update(common.NS(self.blob)) @@ -1476,7 +1474,7 @@ self.test_KEX_DH_GEX_GROUP() sharedSecret = common._MPpow(3, self.proto.x, self.proto.p) - h = sha.new() + h = sha1() h.update(common.NS(self.proto.ourVersionString) * 2) h.update(common.NS(self.proto.ourKexInitPayload) * 2) h.update(common.NS(self.blob)) @@ -1654,7 +1652,7 @@ Crypto.Cipher.XOR.new('\x36').encrypt(key)) self.assertEquals(mod[2], Crypto.Cipher.XOR.new('\x5c').encrypt(key)) - self.assertEquals(mod[3], len(mod[0].new().digest())) + self.assertEquals(mod[3], len(mod[0]().digest())) def test_setKeysCiphers(self): @@ -1693,7 +1691,7 @@ outMac.setKeys('', '', '', '', key, '') inMac.setKeys('', '', '', '', '', key) if mod: - ds = mod.digest_size + ds = mod().digest_size else: ds = 0 self.assertEquals(inMac.verifyDigestSize, ds) @@ -1703,7 +1701,7 @@ data = key packet = '\x00' * 4 + key if mod: - mac = mod.new(o + mod.new(i + packet).digest()).digest() + mac = mod(o + mod(i + packet).digest()).digest() else: mac = '' self.assertEquals(outMac.makeMAC(seqid, data), mac) --- twisted-conch-8.2.0.orig/twisted/conch/test/test_ckeygen.py +++ twisted-conch-8.2.0/twisted/conch/test/test_ckeygen.py @@ -0,0 +1,73 @@ +# Copyright (c) 2008 Twisted Matrix Laboratories. +# See LICENSE for details. + +""" +Tests for L{twisted.conch.scripts.ckeygen}. +""" + +import sys +from StringIO import StringIO + +from twisted.python.filepath import FilePath +from twisted.trial.unittest import TestCase +from twisted.conch.ssh.keys import Key +from twisted.conch.scripts.ckeygen import printFingerprint, _saveKey +from twisted.conch.test.keydata import publicRSA_openssh, privateRSA_openssh + + + +class KeyGenTests(TestCase): + """ + Tests for various functions used to implement the I{ckeygen} script. + """ + def setUp(self): + """ + Patch C{sys.stdout} with a L{StringIO} instance to tests can make + assertions about what's printed. + """ + self.stdout = StringIO() + self.patch(sys, 'stdout', self.stdout) + + + def test_printFingerprint(self): + """ + L{printFingerprint} writes a line to standard out giving the number of + bits of the key, its fingerprint, and the basename of the file from it + was read. + """ + filename = self.mktemp() + FilePath(filename).setContent(publicRSA_openssh) + printFingerprint({'filename': filename}) + self.assertEqual( + self.stdout.getvalue(), + '768 3d:13:5f:cb:c9:79:8a:93:06:27:65:bc:3d:0b:8f:af temp\n') + + + def test_saveKey(self): + """ + L{_saveKey} writes the private and public parts of a key to two + different files and writes a report of this to standard out. + """ + base = FilePath(self.mktemp()) + base.makedirs() + filename = base.child('id_rsa').path + key = Key.fromString(privateRSA_openssh) + _saveKey( + key.keyObject, + {'filename': filename, 'pass': 'passphrase'}) + self.assertEqual( + self.stdout.getvalue(), + "Your identification has been saved in %s\n" + "Your public key has been saved in %s.pub\n" + "The key fingerprint is:\n" + "3d:13:5f:cb:c9:79:8a:93:06:27:65:bc:3d:0b:8f:af\n" % ( + filename, + filename)) + self.assertEqual( + key.fromString( + base.child('id_rsa').getContent(), None, 'passphrase'), + key) + self.assertEqual( + Key.fromString(base.child('id_rsa.pub').getContent()), + key.public()) + --- twisted-conch-8.2.0.orig/twisted/conch/ssh/transport.py +++ twisted-conch-8.2.0/twisted/conch/ssh/transport.py @@ -13,8 +13,6 @@ # base library imports import struct -import md5 -import sha import zlib import array @@ -26,6 +24,7 @@ from twisted.internet import protocol, defer from twisted.conch import error from twisted.python import log, randbytes +from twisted.python.hashlib import md5, sha1 # sibling imports from twisted.conch.ssh import keys @@ -532,9 +531,9 @@ @type sharedSecret: C{str} @type exchangeHash: C{str} """ - k1 = sha.new(sharedSecret + exchangeHash + c + self.sessionID) + k1 = sha1(sharedSecret + exchangeHash + c + self.sessionID) k1 = k1.digest() - k2 = sha.new(sharedSecret + exchangeHash + k1).digest() + k2 = sha1(sharedSecret + exchangeHash + k1).digest() return k1 + k2 @@ -723,7 +722,7 @@ y = Util.number.getRandomNumber(512, randbytes.secureRandom) serverDHpublicKey = _MPpow(DH_GENERATOR, y, DH_PRIME) sharedSecret = _MPpow(clientDHpublicKey, y, DH_PRIME) - h = sha.new() + h = sha1() h.update(NS(self.otherVersionString)) h.update(NS(self.ourVersionString)) h.update(NS(self.otherKexInitPayload)) @@ -792,7 +791,7 @@ serverDHpublicKey = _MPpow(self.g, y, self.p) sharedSecret = _MPpow(clientDHpublicKey, y, self.p) - h = sha.new() + h = sha1() h.update(NS(self.otherVersionString)) h.update(NS(self.ourVersionString)) h.update(NS(self.otherKexInitPayload)) @@ -933,7 +932,7 @@ f, packet = getMP(packet) signature, packet = getNS(packet) fingerprint = ':'.join([ch.encode('hex') for ch in - md5.new(pubKey).digest()]) + md5(pubKey).digest()]) d = self.verifyHostKey(pubKey, fingerprint) d.addCallback(self._continueKEXDH_REPLY, pubKey, f, signature) d.addErrback( @@ -962,7 +961,7 @@ """ serverKey = keys.Key.fromString(pubKey) sharedSecret = _MPpow(f, self.x, DH_PRIME) - h = sha.new() + h = sha1() h.update(NS(self.ourVersionString)) h.update(NS(self.otherVersionString)) h.update(NS(self.ourKexInitPayload)) @@ -992,7 +991,7 @@ f, packet = getMP(packet) signature, packet = getNS(packet) fingerprint = ':'.join(map(lambda c: '%02x'%ord(c), - md5.new(pubKey).digest())) + md5(pubKey).digest())) d = self.verifyHostKey(pubKey, fingerprint) d.addCallback(self._continueGEX_REPLY, pubKey, f, signature) d.addErrback( @@ -1015,7 +1014,7 @@ """ serverKey = keys.Key.fromString(pubKey) sharedSecret = _MPpow(f, self.x, self.p) - h = sha.new() + h = sha1() h.update(NS(self.ourVersionString)) h.update(NS(self.otherVersionString)) h.update(NS(self.ourKexInitPayload)) @@ -1169,9 +1168,9 @@ 'none':(None, 0, 0), } macMap = { - 'hmac-sha1': sha, + 'hmac-sha1': sha1, 'hmac-md5': md5, - 'none':None + 'none': None } @@ -1243,10 +1242,7 @@ mod = self.macMap[mac] if not mod: return (None, '', '', 0) - #if not hasattr(mod, 'digest_size'): - # ds = len(mod.new().digest()) - #else: - ds = mod.digest_size + ds = mod().digest_size key = key[:ds] + '\x00' * (64 - ds) i = XOR.new('\x36').encrypt(key) o = XOR.new('\x5c').encrypt(key) @@ -1287,8 +1283,8 @@ return '' data = struct.pack('>L', seqid) + data mod, i, o, ds = self.outMAC - inner = mod.new(i + data) - outer = mod.new(o + inner.digest()) + inner = mod(i + data) + outer = mod(o + inner.digest()) return outer.digest() @@ -1309,8 +1305,8 @@ return mac == '' data = struct.pack('>L', seqid) + data mod, i, o, ds = self.inMAC - inner = mod.new(i + data) - outer = mod.new(o + inner.digest()) + inner = mod(i + data) + outer = mod(o + inner.digest()) return mac == outer.digest() --- twisted-conch-8.2.0.orig/twisted/conch/ssh/keys.py +++ twisted-conch-8.2.0/twisted/conch/ssh/keys.py @@ -10,7 +10,6 @@ # base library imports import base64 -import sha, md5 import warnings # external library imports @@ -20,6 +19,7 @@ # twisted from twisted.python import randbytes +from twisted.python.hashlib import md5, sha1 # sibling imports from twisted.conch.ssh import asn1, common, sexpy @@ -205,8 +205,8 @@ len(ivdata), 2)]) if not passphrase: raise EncryptedKeyError('encrypted key with no passphrase') - ba = md5.new(passphrase + iv).digest() - bb = md5.new(ba + passphrase + iv).digest() + ba = md5(passphrase + iv).digest() + bb = md5(ba + passphrase + iv).digest() decKey = (ba + bb)[:24] b64Data = base64.decodestring(''.join(lines[3:-1])) keyData = DES3.new(decKey, DES3.MODE_CBC, iv).decrypt(b64Data) @@ -443,7 +443,7 @@ @rtype: L{str} """ - return ':'.join([x.encode('hex') for x in md5.md5(self.blob()).digest()]) + return ':'.join([x.encode('hex') for x in md5(self.blob()).digest()]) def type(self): @@ -597,8 +597,8 @@ hexiv = ''.join(['%02X' % ord(x) for x in iv]) lines.append('Proc-Type: 4,ENCRYPTED') lines.append('DEK-Info: DES-EDE3-CBC,%s\n' % hexiv) - ba = md5.new(extra + iv).digest() - bb = md5.new(ba + extra + iv).digest() + ba = md5(extra + iv).digest() + bb = md5(ba + extra + iv).digest() encKey = (ba + bb)[:24] asn1Data = asn1.pack([objData]) if extra: @@ -681,7 +681,7 @@ signature = self.keyObject.sign(digest, '')[0] ret = common.NS(Util.number.long_to_bytes(signature)) elif self.type() == 'DSA': - digest = sha.new(data).digest() + digest = sha1(data).digest() randomBytes = randbytes.secureRandom(19) sig = self.keyObject.sign(digest, randomBytes) # SSH insists that the DSS signature blob be two 160-bit integers @@ -710,7 +710,7 @@ signature = common.getNS(signature)[0] numbers = [Util.number.bytes_to_long(n) for n in signature[:20], signature[20:]] - digest = sha.new(data).digest() + digest = sha1(data).digest() return self.keyObject.verify(digest, numbers) def getPublicKeyString(filename=None, line=0, data=''): @@ -863,7 +863,7 @@ @type data: C{str} @type messageLength: C{str} """ - digest = sha.new(data).digest() + digest = sha1(data).digest() return pkcs1Pad(ID_SHA1+digest, messageLength) def lenSig(obj): --- twisted-conch-8.2.0.orig/twisted/conch/scripts/ckeygen.py +++ twisted-conch-8.2.0/twisted/conch/scripts/ckeygen.py @@ -1,16 +1,12 @@ -# Copyright (c) 2001-2007 Twisted Matrix Laboratories. +# -*- test-case-name: twisted.conch.test.test_ckeygen -*- +# Copyright (c) 2001-2008 Twisted Matrix Laboratories. # See LICENSE for details. -# -# $Id: ckeygen.py,v 1.8 2003/05/10 14:03:40 spiv Exp $ +""" +Implementation module for the `ckeygen` command. +""" -#""" Implementation module for the `ckeygen` command. -#""" - -from twisted.conch.ssh import keys -from twisted.python import log, usage, randbytes - -import sys, os, getpass, md5, socket +import sys, os, getpass, socket if getpass.getpass == getpass.unix_getpass: try: import termios # hack around broken termios @@ -19,6 +15,10 @@ sys.modules['termios'] = None reload(getpass) +from twisted.conch.ssh import keys +from twisted.python import filepath, log, usage, randbytes + + class GeneralOptions(usage.Options): synopsis = """Usage: ckeygen [options] """ @@ -88,6 +88,7 @@ key = DSA.generate(int(options['bits']), randbytes.secureRandom) _saveKey(key, options) + def printFingerprint(options): if not options['filename']: filename = os.path.expanduser('~/.ssh/id_rsa') @@ -95,11 +96,12 @@ if os.path.exists(options['filename']+'.pub'): options['filename'] += '.pub' try: - string = keys.getPublicKeyString(options['filename']) - obj = keys.getPublicKeyObject(string) + key = keys.Key.fromFile(options['filename']) + obj = key.keyObject + string = key.blob() print '%s %s %s' % ( - obj.size()+1, - ':'.join(['%02x' % ord(x) for x in md5.new(string).digest()]), + obj.size() + 1, + key.fingerprint(), os.path.basename(options['filename'])) except: sys.exit('bad key') @@ -163,17 +165,21 @@ break print 'Passphrases do not match. Try again.' options['pass'] = p1 + + keyObj = keys.Key(key) comment = '%s@%s' % (getpass.getuser(), socket.gethostname()) - open(options['filename'], 'w').write( - keys.makePrivateKeyString(key, passphrase=options['pass'])) + + filepath.FilePath(options['filename']).setContent( + keyObj.toString('openssh', options['pass'])) os.chmod(options['filename'], 33152) - open(options['filename']+'.pub', 'w').write( - keys.makePublicKeyString(key, comment = comment)) - pubKey = keys.getPublicKeyString(data=keys.makePublicKeyString(key, comment=comment)) + + filepath.FilePath(options['filename'] + '.pub').setContent( + keyObj.public().toString('openssh', comment)) + print 'Your identification has been saved in %s' % options['filename'] print 'Your public key has been saved in %s.pub' % options['filename'] print 'The key fingerprint is:' - print ':'.join(['%02x' % ord(x) for x in md5.new(pubKey).digest()]) + print keyObj.fingerprint() if __name__ == '__main__': run() Index: python-twisted-conch.spec =================================================================== RCS file: /cvs/extras/rpms/python-twisted-conch/F-11/python-twisted-conch.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-twisted-conch.spec 26 Feb 2009 23:54:30 -0000 1.10 +++ python-twisted-conch.spec 17 Jul 2009 14:25:54 -0000 1.11 @@ -3,12 +3,13 @@ Name: %{python}-twisted-conch Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SSH and SFTP protocol implementation together with clients and servers Group: Development/Libraries License: MIT URL: http://twistedmatrix.com/trac/wiki/TwistedConch Source0: http://tmrc.mit.edu/mirror/twisted/Conch/8.1/TwistedConch-%{version}.tar.bz2 +Patch1: python-2.6.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{python}-twisted-core >= 8.2.0 BuildRequires: %{python}-devel @@ -34,6 +35,7 @@ server-side input history and interactiv %prep %setup -q -n TwistedConch-%{version} +%patch1 -p1 # Fix doc file dependencies chmod -x doc/{benchmarks/buffering_mixin.py,examples/sshsimpleserver.py} @@ -88,6 +90,11 @@ fi %{python_sitearch}/twisted/plugins/twisted_conch.py* %changelog +* Fri Jul 17 2009 Thomas Vander Stichele +- 8.2.0-3 +- Patch to fix python 2.6 deprecation warnings extracted from + http://packages.debian.org/squeeze/python-twisted-conch + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From gd at fedoraproject.org Fri Jul 17 14:30:59 2009 From: gd at fedoraproject.org (Guenther Deschner) Date: Fri, 17 Jul 2009 14:30:59 +0000 (UTC) Subject: rpms/samba/F-11 samba.spec,1.188,1.189 Message-ID: <20090717143059.A467511C00D3@cvs1.fedora.phx.redhat.com> Author: gd Update of /cvs/pkgs/rpms/samba/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11483 Modified Files: samba.spec Log Message: Specify required talloc and tdb version for BuildRequires. Guenther Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/F-11/samba.spec,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- samba.spec 16 Jul 2009 23:05:18 -0000 1.188 +++ samba.spec 17 Jul 2009 14:30:59 -0000 1.189 @@ -59,10 +59,10 @@ Requires(preun): /sbin/chkconfig, /sbin/ BuildRequires: pam-devel, readline-devel, ncurses-devel, libacl-devel, krb5-devel, openldap-devel, openssl-devel, cups-devel, ctdb-devel BuildRequires: autoconf, gawk, popt-devel, gtk2-devel, libcap-devel %if ! %enable_talloc -BuildRequires: libtalloc-devel +BuildRequires: libtalloc-devel >= %{talloc_version} %endif %if ! %enable_tdb -BuildRequires: libtdb-devel +BuildRequires: libtdb-devel >= %{tdb_version} %endif # Working around perl dependency problem from docs @@ -889,6 +889,7 @@ exit 0 %changelog * Fri Jul 17 2009 Guenther Deschner - 3.4.0-0.40 - Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) +- Specify required talloc and tdb version for BuildRequires * Wed Jul 15 2009 Guenther Deschner - 3.4.0-0.39 - Update to 3.4.0 From kasal at fedoraproject.org Fri Jul 17 14:40:34 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Fri, 17 Jul 2009 14:40:34 +0000 (UTC) Subject: rpms/perl-Glib/F-11 perl-Glib.spec,1.32,1.33 Message-ID: <20090717144034.593CD11C00E8@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl-Glib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14751 Modified Files: perl-Glib.spec Log Message: - create devel subpackage, so that the main one does not require the whole perl-devel (#509419) Index: perl-Glib.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Glib/F-11/perl-Glib.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-Glib.spec 13 Mar 2009 20:13:35 -0000 1.32 +++ perl-Glib.spec 17 Jul 2009 14:40:34 -0000 1.33 @@ -1,6 +1,6 @@ Name: perl-Glib Version: 1.201 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to GLib Group: Development/Libraries @@ -17,7 +17,7 @@ BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -This module provides perl access to Glib and GLib's GObject libraries. +This module provides perl access to GLib and GLib's GObject libraries. GLib is a portability and utility library; GObject provides a generic type system with inheritance and a powerful signal system. Together these libraries are used as the foundation for many of the libraries @@ -25,6 +25,13 @@ that make up the Gnome environment, and projects. +%package devel +Summary: Development part of Perl interface to GLib + +%description devel +Development part of package perl-Glib, the Perl module providing interface +to GLib and GObject libraries. + %prep %setup -q -n Glib-%{version} @@ -66,9 +73,31 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/Glib/ %{perl_vendorarch}/Glib* %{_mandir}/man3/*.3pm* +%exclude %{perl_vendorarch}/Glib/*/*.h +%exclude %{perl_vendorarch}/Glib/MakeHelper.pm +%exclude %{perl_vendorarch}/Glib/devel.pod +%exclude %{perl_vendorarch}/Glib/xsapi.pod +%exclude %{_mandir}/man3/Glib::MakeHelper.3pm.gz +%exclude %{_mandir}/man3/Glib::devel.3pm.gz +%exclude %{_mandir}/man3/Glib::xsapi.3pm.gz + + +%files devel +%defattr(-,root,root,-) +%{perl_vendorarch}/Glib/*/*.h +%{perl_vendorarch}/Glib/MakeHelper.pm +%{perl_vendorarch}/Glib/devel.pod +%{perl_vendorarch}/Glib/xsapi.pod +%{_mandir}/man3/Glib::MakeHelper.3pm.gz +%{_mandir}/man3/Glib::devel.3pm.gz +%{_mandir}/man3/Glib::xsapi.3pm.gz %changelog +* Fri Jul 17 2009 Stepan Kasal - 1.201-3 +- create devel subpackage, so that the main one does not require + the whole perl-devel (#509419) + * Fri Mar 13 2009 Tom "spot" Callaway - 1.201-2 - dont run the tests on ppc From akurtakov at fedoraproject.org Fri Jul 17 14:48:14 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 17 Jul 2009 14:48:14 +0000 (UTC) Subject: rpms/eclipse-egit/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 eclipse-egit.spec, 1.21, 1.22 Message-ID: <20090717144814.ACCC911C00D3@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-egit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17506/devel Modified Files: .cvsignore sources eclipse-egit.spec Log Message: Update to 0.5.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 23 Mar 2009 18:44:23 -0000 1.10 +++ .cvsignore 17 Jul 2009 14:48:14 -0000 1.11 @@ -1,3 +1,5 @@ egit-90b818e596660b813b6fcf68f1e9e9b62c615130.tar.gz egit-fedd114bcb8ef859b9cc2152bf136a554dc54946.tar.gz egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz +egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 23 Mar 2009 18:44:23 -0000 1.10 +++ sources 17 Jul 2009 14:48:14 -0000 1.11 @@ -1 +1,2 @@ -f0ecdab8697cc03ef10cbaeabcfd009c egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz +fbe308592f12f3f9845bca4a6b3de7af egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +7972bf85576d2f862826ee48aa5c9b9e jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz Index: eclipse-egit.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/devel/eclipse-egit.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- eclipse-egit.spec 23 Mar 2009 18:44:23 -0000 1.21 +++ eclipse-egit.spec 17 Jul 2009 14:48:14 -0000 1.22 @@ -3,15 +3,16 @@ Summary: Eclipse Git plug-in Name: eclipse-egit -Version: 0.4.0 -Release: 3.20090323%{?dist} +Version: 0.5.0 +Release: 0%{?dist} License: EPL and GPLv2 and LGPLv2 URL: http://repo.or.cz/w/egit.git Group: Development/Tools -# retrieved from http://repo.or.cz/w/egit.git?a=snapshot;h=3c268c8cc77a3ed3a50b47cf6354330a9416b726;sf=tgz -Source0: egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz - +# retrieved from http://repo.or.cz/w/egit.git?a=snapshot;h=c8a5b04b88bfbafc63c54512f874a763ef9bba08;sf=tgz +Source0: egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +# retrieved from http://repo.or.cz/w/jgit.git?a=snapshot;h=9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14;sf=tgz +Source1: jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz Requires: eclipse-platform >= 1:3.4.0 Requires: git-core BuildRequires: java-devel >= 1.6.0 @@ -28,6 +29,7 @@ interacting with Git repositories. %prep %setup -q -c +tar xf %{SOURCE1} %build %{eclipse_base}/buildscripts/pdebuild @@ -37,7 +39,7 @@ rm -rf $RPM_BUILD_ROOT install -d -m 755 $RPM_BUILD_ROOT%{install_loc} # egit main feature -unzip -q -d $RPM_BUILD_ROOT%{install_loc}/ build/rpmBuild/org.spearce.egit.zip +unzip -q -d $RPM_BUILD_ROOT%{install_loc}/ build/rpmBuild/org.eclipse.egit.zip %clean rm -rf $RPM_BUILD_ROOT @@ -47,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{install_loc} %changelog +* Fri Jul 17 2009 Alexander Kurtakov 0.5.0-0 +- Update to 0.5.0. + * Mon Mar 23 2009 Alexander Kurtakov 0.4.0-3.20090323 - Update to latest snapshot. From akurtakov at fedoraproject.org Fri Jul 17 14:50:08 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 17 Jul 2009 14:50:08 +0000 (UTC) Subject: rpms/eclipse-egit/devel eclipse-egit.spec,1.22,1.23 Message-ID: <20090717145008.8C90F11C00E4@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-egit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18488/devel Modified Files: eclipse-egit.spec Log Message: Bump release. Index: eclipse-egit.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/devel/eclipse-egit.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- eclipse-egit.spec 17 Jul 2009 14:48:14 -0000 1.22 +++ eclipse-egit.spec 17 Jul 2009 14:50:08 -0000 1.23 @@ -4,7 +4,7 @@ Summary: Eclipse Git plug-in Name: eclipse-egit Version: 0.5.0 -Release: 0%{?dist} +Release: 1%{?dist} License: EPL and GPLv2 and LGPLv2 URL: http://repo.or.cz/w/egit.git Group: Development/Tools @@ -49,7 +49,7 @@ rm -rf $RPM_BUILD_ROOT %{install_loc} %changelog -* Fri Jul 17 2009 Alexander Kurtakov 0.5.0-0 +* Fri Jul 17 2009 Alexander Kurtakov 0.5.0-1 - Update to 0.5.0. * Mon Mar 23 2009 Alexander Kurtakov 0.4.0-3.20090323 From akurtakov at fedoraproject.org Fri Jul 17 15:03:49 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 17 Jul 2009 15:03:49 +0000 (UTC) Subject: rpms/eclipse-egit/F-11 sources, 1.10, 1.11 eclipse-egit.spec, 1.21, 1.22 Message-ID: <20090717150349.78D8D11C00CF@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-egit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23701/F-11 Modified Files: sources eclipse-egit.spec Log Message: Update to 0.5.0 to get the new update site. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 23 Mar 2009 18:44:23 -0000 1.10 +++ sources 17 Jul 2009 15:03:18 -0000 1.11 @@ -1 +1,2 @@ -f0ecdab8697cc03ef10cbaeabcfd009c egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz +fbe308592f12f3f9845bca4a6b3de7af egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +7972bf85576d2f862826ee48aa5c9b9e jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz Index: eclipse-egit.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/F-11/eclipse-egit.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- eclipse-egit.spec 23 Mar 2009 18:44:23 -0000 1.21 +++ eclipse-egit.spec 17 Jul 2009 15:03:19 -0000 1.22 @@ -3,15 +3,16 @@ Summary: Eclipse Git plug-in Name: eclipse-egit -Version: 0.4.0 -Release: 3.20090323%{?dist} +Version: 0.5.0 +Release: 1%{?dist} License: EPL and GPLv2 and LGPLv2 URL: http://repo.or.cz/w/egit.git Group: Development/Tools -# retrieved from http://repo.or.cz/w/egit.git?a=snapshot;h=3c268c8cc77a3ed3a50b47cf6354330a9416b726;sf=tgz -Source0: egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz - +# retrieved from http://repo.or.cz/w/egit.git?a=snapshot;h=c8a5b04b88bfbafc63c54512f874a763ef9bba08;sf=tgz +Source0: egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +# retrieved from http://repo.or.cz/w/jgit.git?a=snapshot;h=9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14;sf=tgz +Source1: jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz Requires: eclipse-platform >= 1:3.4.0 Requires: git-core BuildRequires: java-devel >= 1.6.0 @@ -28,6 +29,7 @@ interacting with Git repositories. %prep %setup -q -c +tar xf %{SOURCE1} %build %{eclipse_base}/buildscripts/pdebuild @@ -37,7 +39,7 @@ rm -rf $RPM_BUILD_ROOT install -d -m 755 $RPM_BUILD_ROOT%{install_loc} # egit main feature -unzip -q -d $RPM_BUILD_ROOT%{install_loc}/ build/rpmBuild/org.spearce.egit.zip +unzip -q -d $RPM_BUILD_ROOT%{install_loc}/ build/rpmBuild/org.eclipse.egit.zip %clean rm -rf $RPM_BUILD_ROOT @@ -47,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{install_loc} %changelog +* Fri Jul 17 2009 Alexander Kurtakov 0.5.0-1 +- Update to 0.5.0 to get the new update site. + * Mon Mar 23 2009 Alexander Kurtakov 0.4.0-3.20090323 - Update to latest snapshot. From pkgdb at fedoraproject.org Fri Jul 17 15:04:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:04:38 +0000 Subject: [pkgdb] eclipse-egit: akurtakov has requested approveacls Message-ID: <20090717150438.82ABB10F890@bastion2.fedora.phx.redhat.com> akurtakov has requested the approveacls acl on eclipse-egit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eclipse-egit From akurtakov at fedoraproject.org Fri Jul 17 15:06:00 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 17 Jul 2009 15:06:00 +0000 (UTC) Subject: rpms/eclipse-egit/F-11 .cvsignore,1.10,1.11 Message-ID: <20090717150600.410FF11C00CF@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-egit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24529/F-11 Modified Files: .cvsignore Log Message: Commit forgotten cvsignore file. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 23 Mar 2009 18:44:23 -0000 1.10 +++ .cvsignore 17 Jul 2009 15:05:29 -0000 1.11 @@ -1,3 +1,5 @@ egit-90b818e596660b813b6fcf68f1e9e9b62c615130.tar.gz egit-fedd114bcb8ef859b9cc2152bf136a554dc54946.tar.gz egit-3c268c8cc77a3ed3a50b47cf6354330a9416b726.tar.gz +egit-c8a5b04b88bfbafc63c54512f874a763ef9bba08.tar.gz +jgit-9c5c2e73ba21014e3a9427b8b27c3e62fe6d1c14.tar.gz From nhorman at fedoraproject.org Fri Jul 17 15:20:40 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Fri, 17 Jul 2009 15:20:40 +0000 (UTC) Subject: rpms/coda/devel coda.spec,1.11,1.12 Message-ID: <20090717152040.8990711C00E4@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27263 Modified Files: coda.spec Log Message: Resolves: bz 511305 Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- coda.spec 31 Mar 2009 10:56:47 -0000 1.11 +++ coda.spec 17 Jul 2009 15:20:38 -0000 1.12 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -18,10 +18,10 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: lwp-devel >= 2.5 BuildRequires: rpc2-devel >= 2.8 BuildRequires: rvm-devel -BuildRequires: rvm-tools readline-devel +BuildRequires: rvm-tools compat-readline5-devel BuildRequires: fltk-devel fltk-fluid flex bison python perl krb5-devel BuildRequires: e2fsprogs-devel -Requires: krb5-libs +Requires: krb5-libs compat-readline5 # For /etc/rc.d/init.d so that configure can detect we have RH style init BuildRequires: chkconfig @@ -303,6 +303,9 @@ fi %changelog +* Fri Jul 17 2009 Neil Horman - 6.9.4-3 +- Change spec to require compat-readline5 (bz511305) + * Tue Mar 31 2009 Neil Horman - 6.9.4-2 - Remove parser from coda-client, due to name conflict (bz 492953) From pkgdb at fedoraproject.org Fri Jul 17 15:25:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:25:50 +0000 Subject: [pkgdb] lshw (Fedora EPEL, 5) updated by tibbs Message-ID: <20090717152551.01C7610F898@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for lshw tibbs has set commit to Approved for 107427 on lshw (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on lshw (Fedora EPEL 5) tibbs has set build to Approved for 107427 on lshw (Fedora EPEL 5) tibbs changed owner of lshw in Fedora EPEL 5 to terjeros tibbs approved watchbugzilla on lshw (Fedora EPEL 5) for tuju tibbs approved watchcommits on lshw (Fedora EPEL 5) for tuju tibbs approved commit on lshw (Fedora EPEL 5) for tuju tibbs approved build on lshw (Fedora EPEL 5) for tuju tibbs approved approveacls on lshw (Fedora EPEL 5) for tuju To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lshw From cheese at fedoraproject.org Fri Jul 17 15:26:25 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 15:26:25 +0000 (UTC) Subject: rpms/teg/F-9 teg-fix-help.patch,NONE,1.1 teg.spec,1.11,1.12 Message-ID: <20090717152625.7AB7C11C00CF@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28586 Modified Files: teg.spec Added Files: teg-fix-help.patch Log Message: fix help teg-fix-help.patch: teg.sgml | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) --- NEW FILE teg-fix-help.patch --- --- teg-0.11.2/docs/gnome-help/C/teg.sgml.orig 2009-07-11 18:26:01.000000000 +0200 +++ teg-0.11.2/docs/gnome-help/C/teg.sgml 2009-07-11 18:53:07.000000000 +0200 @@ -1,13 +1,12 @@ - + + ]>
- + Tenes Empanadas Graciela Manual 2002 @@ -61,12 +60,11 @@ This is version 1.0 of the TEG manual. - - + Introduction Tenes Empandas Graciela (TEG), is a clone of an Argentinian game - called 'Plan T???ctico y Estr???tegico de la Guerra', a + called 'Plan T??ctico y Estr??tegico de la Guerra', a modified clone of the turn based strategy game 'Risk'. It is a multi-player game that can be played across the Internet. @@ -366,17 +364,17 @@ So I'm not sure about the differences between both games. If you notice them, please tell me. So far, here is what some TEG players told me: - TEG vs. Risk +
TEG vs. Risk - - - - + + + + - Topic - TEG - Risk + Topic + TEG + Risk @@ -412,11 +410,15 @@ - If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net + If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net Remember that I don't know the Risk rules! + + + +
@@ -442,7 +444,7 @@ Brief history of TEG - Sebasti???n Cativa Tolosa, once told me to do this game. I think that + Sebasti??n Cativa Tolosa, once told me to do this game. I think that was in 1996, in a chat we were having in the University. Well, we started to think the game. But I don't know why, the project died after 3 or 4 months. In 1998, the project was reactivated, but after 2 weeks it died again :(. Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/F-9/teg.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- teg.spec 27 Jun 2009 17:26:58 -0000 1.11 +++ teg.spec 17 Jul 2009 15:26:25 -0000 1.12 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -9,7 +9,8 @@ Source0: http://downloads.sourcef Source1: fedora-teg.desktop Patch0: teg_libxml.patch #Patch1: teg_themes.patch -Patch2: teg-disable-help.patch +#Patch2: teg-disable-help.patch +Source2: teg-fix-help.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tidy pkgconfig glib2-devel libxml2-devel libgnomeui-devel @@ -27,8 +28,7 @@ Guerra, a turn based strategy game. Some %prep %setup -q %patch0 -p1 -#%patch1 -p1 -%patch2 -p1 +#%patch2 -p1 for file in AUTHORS COPYING README TODO PEOPLE ChangeLog; do iconv -f iso8859-1 -t utf-8 < $file > $file.$$ mv -f $file.$$ $file @@ -48,6 +48,8 @@ mv -f $RPM_BUILD_ROOT/%{_datadir}/pixmap rm -rf $RPM_BUILD_ROOT/%{_datadir}/gnome/apps/Games/teg.desktop desktop-file-install --vendor="fedora" \ --dir=$RPM_BUILD_ROOT/%{_datadir}/applications %{SOURCE1} +patch -p1 < %{SOURCE2} +mv -f $RPM_BUILD_DIR/%{?buildsubdir}/docs/gnome-help/C/teg.sgml $RPM_BUILD_ROOT/%{_datadir}/gnome/help/teg/C/teg.xml %find_lang %{name} @@ -78,7 +80,7 @@ if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/teg.schemas > /dev/null || : -fi +fi %post export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -96,14 +98,16 @@ if [ -x %{_bindir}/gtk-update-icon-cache fi %changelog -* Sat Jun 27 2009 josef radinger +* Sat Jul 11 2009 josef radinger +- 0.11.2-19 +- fix and reenable help + +* Sat Jun 27 2009 josef radinger - 0.11.2-18 - disable help -* Tue Aug 26 2008 josef radinger -- 0.11.2-17 -- testcommit -- testcommit2 +* Wed Feb 25 2009 Fedora Release Engineering - 0.11.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Aug 22 2008 josef radinger - 0.11.2-16 From pkgdb at fedoraproject.org Fri Jul 17 15:34:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:17 +0000 Subject: [pkgdb] gdpc was added for jussilehtola Message-ID: <20090717153417.5101310F8AD@bastion2.fedora.phx.redhat.com> tibbs has added Package gdpc with summary A program for visualising molecular dynamics simulations data tibbs has approved Package gdpc tibbs has added a Fedora devel branch for gdpc with an owner of jussilehtola tibbs has approved gdpc in Fedora devel tibbs has approved Package gdpc tibbs has set commit to Approved for 107427 on gdpc (Fedora devel) tibbs has set checkout to Approved for 107427 on gdpc (Fedora devel) tibbs has set build to Approved for 107427 on gdpc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gdpc From pkgdb at fedoraproject.org Fri Jul 17 15:34:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:18 +0000 Subject: [pkgdb] gdpc summary updated by tibbs Message-ID: <20090717153418.3602310F8B0@bastion2.fedora.phx.redhat.com> tibbs set package gdpc summary to A program for visualising molecular dynamics simulations data To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gdpc From pkgdb at fedoraproject.org Fri Jul 17 15:34:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:18 +0000 Subject: [pkgdb] gdpc (Fedora, 11) updated by tibbs Message-ID: <20090717153418.4EDBC10F8B3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for gdpc tibbs has set commit to Approved for 107427 on gdpc (Fedora 11) tibbs has set checkout to Approved for 107427 on gdpc (Fedora 11) tibbs has set build to Approved for 107427 on gdpc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gdpc From tibbs at fedoraproject.org Fri Jul 17 15:34:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:24 +0000 (UTC) Subject: rpms/gdpc - New directory Message-ID: <20090717153424.1927711C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/gdpc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj30745/rpms/gdpc Log Message: Directory /cvs/pkgs/rpms/gdpc added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:34:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:24 +0000 (UTC) Subject: rpms/gdpc/devel - New directory Message-ID: <20090717153424.45DF611C00D7@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/gdpc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj30745/rpms/gdpc/devel Log Message: Directory /cvs/pkgs/rpms/gdpc/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:34:29 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:29 +0000 (UTC) Subject: rpms/gdpc Makefile,NONE,1.1 Message-ID: <20090717153429.F1F7411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/gdpc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj30745/rpms/gdpc Added Files: Makefile Log Message: Setup of module gdpc --- NEW FILE Makefile --- # Top level Makefile for module gdpc all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Fri Jul 17 15:34:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:18 +0000 Subject: [pkgdb] gdpc (Fedora, 11) updated by tibbs Message-ID: <20090717153418.563B710F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for gdpc tibbs has set commit to Approved for 107427 on gdpc (Fedora 10) tibbs has set checkout to Approved for 107427 on gdpc (Fedora 10) tibbs has set build to Approved for 107427 on gdpc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gdpc From tibbs at fedoraproject.org Fri Jul 17 15:34:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:30 +0000 (UTC) Subject: rpms/gdpc/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153430.34F0C11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/gdpc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj30745/rpms/gdpc/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module gdpc --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: gdpc # $Id: Makefile,v 1.1 2009/07/17 15:34:30 tibbs Exp $ NAME := gdpc SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:34:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:53 +0000 Subject: [pkgdb] olpc-contents summary updated by tibbs Message-ID: <20090717153453.B65BB10F8AA@bastion2.fedora.phx.redhat.com> tibbs set package olpc-contents summary to OLPC contents manifest tools To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-contents From pkgdb at fedoraproject.org Fri Jul 17 15:34:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:53 +0000 Subject: [pkgdb] olpc-contents (Fedora, 11) updated by tibbs Message-ID: <20090717153453.C455D10F8AF@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on olpc-contents (Fedora devel) for cjb tibbs approved watchcommits on olpc-contents (Fedora devel) for cjb tibbs approved commit on olpc-contents (Fedora devel) for cjb tibbs approved build on olpc-contents (Fedora devel) for cjb tibbs approved approveacls on olpc-contents (Fedora devel) for cjb tibbs approved watchbugzilla on olpc-contents (Fedora devel) for pbrobinson tibbs approved watchcommits on olpc-contents (Fedora devel) for pbrobinson tibbs approved commit on olpc-contents (Fedora devel) for pbrobinson tibbs approved build on olpc-contents (Fedora devel) for pbrobinson tibbs approved approveacls on olpc-contents (Fedora devel) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-contents From tibbs at fedoraproject.org Fri Jul 17 15:34:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:59 +0000 (UTC) Subject: rpms/olpc-contents - New directory Message-ID: <20090717153459.173EE11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-contents In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF31035/rpms/olpc-contents Log Message: Directory /cvs/pkgs/rpms/olpc-contents added to the repository From pkgdb at fedoraproject.org Fri Jul 17 15:34:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:34:53 +0000 Subject: [pkgdb] olpc-contents (Fedora, 11) updated by tibbs Message-ID: <20090717153453.D92E110F8C1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for olpc-contents tibbs has set commit to Approved for 107427 on olpc-contents (Fedora 11) tibbs has set checkout to Approved for 107427 on olpc-contents (Fedora 11) tibbs has set build to Approved for 107427 on olpc-contents (Fedora 11) tibbs approved watchbugzilla on olpc-contents (Fedora 11) for cjb tibbs approved watchcommits on olpc-contents (Fedora 11) for cjb tibbs approved commit on olpc-contents (Fedora 11) for cjb tibbs approved build on olpc-contents (Fedora 11) for cjb tibbs approved approveacls on olpc-contents (Fedora 11) for cjb tibbs approved watchbugzilla on olpc-contents (Fedora 11) for pbrobinson tibbs approved watchcommits on olpc-contents (Fedora 11) for pbrobinson tibbs approved commit on olpc-contents (Fedora 11) for pbrobinson tibbs approved build on olpc-contents (Fedora 11) for pbrobinson tibbs approved approveacls on olpc-contents (Fedora 11) for pbrobinson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-contents From tibbs at fedoraproject.org Fri Jul 17 15:35:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:04 +0000 (UTC) Subject: rpms/olpc-contents Makefile,NONE,1.1 Message-ID: <20090717153504.86CBD11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-contents In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF31035/rpms/olpc-contents Added Files: Makefile Log Message: Setup of module olpc-contents --- NEW FILE Makefile --- # Top level Makefile for module olpc-contents all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:35:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:04 +0000 (UTC) Subject: rpms/olpc-contents/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153504.BBA9F11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-contents/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF31035/rpms/olpc-contents/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module olpc-contents --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: olpc-contents # $Id: Makefile,v 1.1 2009/07/17 15:35:04 tibbs Exp $ NAME := olpc-contents SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:35:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:17 +0000 Subject: [pkgdb] dracut-modules-olpc was added for dsd Message-ID: <20090717153517.802EE10F8B6@bastion2.fedora.phx.redhat.com> tibbs has added Package dracut-modules-olpc with summary OLPC initramfs modules tibbs has approved Package dracut-modules-olpc tibbs has added a Fedora devel branch for dracut-modules-olpc with an owner of dsd tibbs has approved dracut-modules-olpc in Fedora devel tibbs has approved Package dracut-modules-olpc tibbs has set commit to Approved for 107427 on dracut-modules-olpc (Fedora devel) tibbs has set checkout to Approved for 107427 on dracut-modules-olpc (Fedora devel) tibbs has set build to Approved for 107427 on dracut-modules-olpc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dracut-modules-olpc From pkgdb at fedoraproject.org Fri Jul 17 15:35:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:19 +0000 Subject: [pkgdb] dracut-modules-olpc (Fedora, 11) updated by tibbs Message-ID: <20090717153519.81CE010F8CC@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on dracut-modules-olpc (Fedora devel) for pbrobinson tibbs approved watchcommits on dracut-modules-olpc (Fedora devel) for pbrobinson tibbs approved commit on dracut-modules-olpc (Fedora devel) for pbrobinson tibbs approved build on dracut-modules-olpc (Fedora devel) for pbrobinson tibbs approved approveacls on dracut-modules-olpc (Fedora devel) for pbrobinson tibbs approved watchbugzilla on dracut-modules-olpc (Fedora devel) for cjb tibbs approved watchcommits on dracut-modules-olpc (Fedora devel) for cjb tibbs approved commit on dracut-modules-olpc (Fedora devel) for cjb tibbs approved build on dracut-modules-olpc (Fedora devel) for cjb tibbs approved approveacls on dracut-modules-olpc (Fedora devel) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dracut-modules-olpc From pkgdb at fedoraproject.org Fri Jul 17 15:35:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:19 +0000 Subject: [pkgdb] dracut-modules-olpc summary updated by tibbs Message-ID: <20090717153519.72AA210F898@bastion2.fedora.phx.redhat.com> tibbs set package dracut-modules-olpc summary to OLPC initramfs modules To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dracut-modules-olpc From tibbs at fedoraproject.org Fri Jul 17 15:35:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:25 +0000 (UTC) Subject: rpms/dracut-modules-olpc - New directory Message-ID: <20090717153525.1A2A111C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/dracut-modules-olpc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO31244/rpms/dracut-modules-olpc Log Message: Directory /cvs/pkgs/rpms/dracut-modules-olpc added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:35:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:25 +0000 (UTC) Subject: rpms/dracut-modules-olpc/devel - New directory Message-ID: <20090717153525.4434811C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/dracut-modules-olpc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO31244/rpms/dracut-modules-olpc/devel Log Message: Directory /cvs/pkgs/rpms/dracut-modules-olpc/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 17 15:35:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:19 +0000 Subject: [pkgdb] dracut-modules-olpc (Fedora, 11) updated by tibbs Message-ID: <20090717153519.8BDC110F8D1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for dracut-modules-olpc tibbs has set commit to Approved for 107427 on dracut-modules-olpc (Fedora 11) tibbs has set checkout to Approved for 107427 on dracut-modules-olpc (Fedora 11) tibbs has set build to Approved for 107427 on dracut-modules-olpc (Fedora 11) tibbs approved watchbugzilla on dracut-modules-olpc (Fedora 11) for pbrobinson tibbs approved watchcommits on dracut-modules-olpc (Fedora 11) for pbrobinson tibbs approved commit on dracut-modules-olpc (Fedora 11) for pbrobinson tibbs approved build on dracut-modules-olpc (Fedora 11) for pbrobinson tibbs approved approveacls on dracut-modules-olpc (Fedora 11) for pbrobinson tibbs approved watchbugzilla on dracut-modules-olpc (Fedora 11) for cjb tibbs approved watchcommits on dracut-modules-olpc (Fedora 11) for cjb tibbs approved commit on dracut-modules-olpc (Fedora 11) for cjb tibbs approved build on dracut-modules-olpc (Fedora 11) for cjb tibbs approved approveacls on dracut-modules-olpc (Fedora 11) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dracut-modules-olpc From tibbs at fedoraproject.org Fri Jul 17 15:35:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:30 +0000 (UTC) Subject: rpms/dracut-modules-olpc Makefile,NONE,1.1 Message-ID: <20090717153530.E523211C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/dracut-modules-olpc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO31244/rpms/dracut-modules-olpc Added Files: Makefile Log Message: Setup of module dracut-modules-olpc --- NEW FILE Makefile --- # Top level Makefile for module dracut-modules-olpc all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:35:31 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:35:31 +0000 (UTC) Subject: rpms/dracut-modules-olpc/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153531.311C411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/dracut-modules-olpc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO31244/rpms/dracut-modules-olpc/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module dracut-modules-olpc --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: dracut-modules-olpc # $Id: Makefile,v 1.1 2009/07/17 15:35:31 tibbs Exp $ NAME := dracut-modules-olpc SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:35:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:53 +0000 Subject: [pkgdb] robotfindskitten was added for wwoods Message-ID: <20090717153553.2259010F8BD@bastion2.fedora.phx.redhat.com> tibbs has added Package robotfindskitten with summary A game/zen simulation. You are robot. Your job is to find kitten. tibbs has approved Package robotfindskitten tibbs has added a Fedora devel branch for robotfindskitten with an owner of wwoods tibbs has approved robotfindskitten in Fedora devel tibbs has approved Package robotfindskitten tibbs has set commit to Approved for 107427 on robotfindskitten (Fedora devel) tibbs has set checkout to Approved for 107427 on robotfindskitten (Fedora devel) tibbs has set build to Approved for 107427 on robotfindskitten (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/robotfindskitten From pkgdb at fedoraproject.org Fri Jul 17 15:35:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:54 +0000 Subject: [pkgdb] robotfindskitten summary updated by tibbs Message-ID: <20090717153554.A9C3710F8C3@bastion2.fedora.phx.redhat.com> tibbs set package robotfindskitten summary to A game/zen simulation. You are robot. Your job is to find kitten. To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/robotfindskitten From pkgdb at fedoraproject.org Fri Jul 17 15:35:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:54 +0000 Subject: [pkgdb] robotfindskitten (Fedora, 11) updated by tibbs Message-ID: <20090717153554.BE64910F8DD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for robotfindskitten tibbs has set commit to Approved for 107427 on robotfindskitten (Fedora 11) tibbs has set checkout to Approved for 107427 on robotfindskitten (Fedora 11) tibbs has set build to Approved for 107427 on robotfindskitten (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/robotfindskitten From tibbs at fedoraproject.org Fri Jul 17 15:36:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:00 +0000 (UTC) Subject: rpms/robotfindskitten - New directory Message-ID: <20090717153600.19F8611C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/robotfindskitten In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ31474/rpms/robotfindskitten Log Message: Directory /cvs/pkgs/rpms/robotfindskitten added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:36:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:00 +0000 (UTC) Subject: rpms/robotfindskitten/devel - New directory Message-ID: <20090717153600.5964A11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/robotfindskitten/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ31474/rpms/robotfindskitten/devel Log Message: Directory /cvs/pkgs/rpms/robotfindskitten/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:36:05 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:05 +0000 (UTC) Subject: rpms/robotfindskitten Makefile,NONE,1.1 Message-ID: <20090717153605.AF9D511C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/robotfindskitten In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ31474/rpms/robotfindskitten Added Files: Makefile Log Message: Setup of module robotfindskitten --- NEW FILE Makefile --- # Top level Makefile for module robotfindskitten all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Fri Jul 17 15:35:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:35:54 +0000 Subject: [pkgdb] robotfindskitten (Fedora, 11) updated by tibbs Message-ID: <20090717153554.D41AF10F8E0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for robotfindskitten tibbs has set commit to Approved for 107427 on robotfindskitten (Fedora 10) tibbs has set checkout to Approved for 107427 on robotfindskitten (Fedora 10) tibbs has set build to Approved for 107427 on robotfindskitten (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/robotfindskitten From tibbs at fedoraproject.org Fri Jul 17 15:36:05 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:05 +0000 (UTC) Subject: rpms/robotfindskitten/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153605.E982F11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/robotfindskitten/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ31474/rpms/robotfindskitten/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module robotfindskitten --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: robotfindskitten # $Id: Makefile,v 1.1 2009/07/17 15:36:05 tibbs Exp $ NAME := robotfindskitten SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:36:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:36:19 +0000 Subject: [pkgdb] olpc-update was added for dsd Message-ID: <20090717153619.DE04B10F8E7@bastion2.fedora.phx.redhat.com> tibbs has added Package olpc-update with summary OLPC system update tools tibbs has approved Package olpc-update tibbs has added a Fedora devel branch for olpc-update with an owner of dsd tibbs has approved olpc-update in Fedora devel tibbs has approved Package olpc-update tibbs has set commit to Approved for 107427 on olpc-update (Fedora devel) tibbs has set checkout to Approved for 107427 on olpc-update (Fedora devel) tibbs has set build to Approved for 107427 on olpc-update (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-update From pkgdb at fedoraproject.org Fri Jul 17 15:36:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:36:21 +0000 Subject: [pkgdb] olpc-update summary updated by tibbs Message-ID: <20090717153621.A151A10F8EA@bastion2.fedora.phx.redhat.com> tibbs set package olpc-update summary to OLPC system update tools To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-update From pkgdb at fedoraproject.org Fri Jul 17 15:36:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:36:21 +0000 Subject: [pkgdb] olpc-update (Fedora, 11) updated by tibbs Message-ID: <20090717153621.AD30C10F8F0@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on olpc-update (Fedora devel) for pbrobinson tibbs approved watchcommits on olpc-update (Fedora devel) for pbrobinson tibbs approved commit on olpc-update (Fedora devel) for pbrobinson tibbs approved build on olpc-update (Fedora devel) for pbrobinson tibbs approved approveacls on olpc-update (Fedora devel) for pbrobinson tibbs approved watchbugzilla on olpc-update (Fedora devel) for cjb tibbs approved watchcommits on olpc-update (Fedora devel) for cjb tibbs approved commit on olpc-update (Fedora devel) for cjb tibbs approved build on olpc-update (Fedora devel) for cjb tibbs approved approveacls on olpc-update (Fedora devel) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-update From pkgdb at fedoraproject.org Fri Jul 17 15:36:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:36:21 +0000 Subject: [pkgdb] olpc-update (Fedora, 11) updated by tibbs Message-ID: <20090717153621.BEDA410F8F5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for olpc-update tibbs has set commit to Approved for 107427 on olpc-update (Fedora 11) tibbs has set checkout to Approved for 107427 on olpc-update (Fedora 11) tibbs has set build to Approved for 107427 on olpc-update (Fedora 11) tibbs approved watchbugzilla on olpc-update (Fedora 11) for pbrobinson tibbs approved watchcommits on olpc-update (Fedora 11) for pbrobinson tibbs approved commit on olpc-update (Fedora 11) for pbrobinson tibbs approved build on olpc-update (Fedora 11) for pbrobinson tibbs approved approveacls on olpc-update (Fedora 11) for pbrobinson tibbs approved watchbugzilla on olpc-update (Fedora 11) for cjb tibbs approved watchcommits on olpc-update (Fedora 11) for cjb tibbs approved commit on olpc-update (Fedora 11) for cjb tibbs approved build on olpc-update (Fedora 11) for cjb tibbs approved approveacls on olpc-update (Fedora 11) for cjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-update From tibbs at fedoraproject.org Fri Jul 17 15:36:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:27 +0000 (UTC) Subject: rpms/olpc-update - New directory Message-ID: <20090717153627.1AD2B11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-update In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB31729/rpms/olpc-update Log Message: Directory /cvs/pkgs/rpms/olpc-update added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:36:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:27 +0000 (UTC) Subject: rpms/olpc-update/devel - New directory Message-ID: <20090717153627.4053411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-update/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB31729/rpms/olpc-update/devel Log Message: Directory /cvs/pkgs/rpms/olpc-update/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:36:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:32 +0000 (UTC) Subject: rpms/olpc-update Makefile,NONE,1.1 Message-ID: <20090717153632.C782511C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-update In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB31729/rpms/olpc-update Added Files: Makefile Log Message: Setup of module olpc-update --- NEW FILE Makefile --- # Top level Makefile for module olpc-update all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:36:33 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:36:33 +0000 (UTC) Subject: rpms/olpc-update/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153633.08B7611C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-update/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsB31729/rpms/olpc-update/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module olpc-update --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: olpc-update # $Id: Makefile,v 1.1 2009/07/17 15:36:32 tibbs Exp $ NAME := olpc-update SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:37:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:37:05 +0000 Subject: [pkgdb] 389-admin-console was added for rmeggins Message-ID: <20090717153705.5A16A10F8BA@bastion2.fedora.phx.redhat.com> tibbs has added Package 389-admin-console with summary 389 Admin Server Management Console tibbs has approved Package 389-admin-console tibbs has added a Fedora devel branch for 389-admin-console with an owner of rmeggins tibbs has approved 389-admin-console in Fedora devel tibbs has approved Package 389-admin-console tibbs has set commit to Approved for 107427 on 389-admin-console (Fedora devel) tibbs has set checkout to Approved for 107427 on 389-admin-console (Fedora devel) tibbs has set build to Approved for 107427 on 389-admin-console (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-admin-console From pkgdb at fedoraproject.org Fri Jul 17 15:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:37:07 +0000 Subject: [pkgdb] 389-admin-console summary updated by tibbs Message-ID: <20090717153707.56BD010F8CF@bastion2.fedora.phx.redhat.com> tibbs set package 389-admin-console summary to 389 Admin Server Management Console To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-admin-console From pkgdb at fedoraproject.org Fri Jul 17 15:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:37:07 +0000 Subject: [pkgdb] 389-admin-console (Fedora, 11) updated by tibbs Message-ID: <20090717153707.6301210F8D4@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on 389-admin-console (Fedora devel) for nkinder tibbs approved watchcommits on 389-admin-console (Fedora devel) for nkinder tibbs approved commit on 389-admin-console (Fedora devel) for nkinder tibbs approved build on 389-admin-console (Fedora devel) for nkinder tibbs approved approveacls on 389-admin-console (Fedora devel) for nkinder tibbs approved watchbugzilla on 389-admin-console (Fedora devel) for nhosoi tibbs approved watchcommits on 389-admin-console (Fedora devel) for nhosoi tibbs approved commit on 389-admin-console (Fedora devel) for nhosoi tibbs approved build on 389-admin-console (Fedora devel) for nhosoi tibbs approved approveacls on 389-admin-console (Fedora devel) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-admin-console From pkgdb at fedoraproject.org Fri Jul 17 15:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:37:07 +0000 Subject: [pkgdb] 389-admin-console (Fedora, 11) updated by tibbs Message-ID: <20090717153707.7430C10F903@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for 389-admin-console tibbs has set commit to Approved for 107427 on 389-admin-console (Fedora 11) tibbs has set checkout to Approved for 107427 on 389-admin-console (Fedora 11) tibbs has set build to Approved for 107427 on 389-admin-console (Fedora 11) tibbs approved watchbugzilla on 389-admin-console (Fedora 11) for nkinder tibbs approved watchcommits on 389-admin-console (Fedora 11) for nkinder tibbs approved commit on 389-admin-console (Fedora 11) for nkinder tibbs approved build on 389-admin-console (Fedora 11) for nkinder tibbs approved approveacls on 389-admin-console (Fedora 11) for nkinder tibbs approved watchbugzilla on 389-admin-console (Fedora 11) for nhosoi tibbs approved watchcommits on 389-admin-console (Fedora 11) for nhosoi tibbs approved commit on 389-admin-console (Fedora 11) for nhosoi tibbs approved build on 389-admin-console (Fedora 11) for nhosoi tibbs approved approveacls on 389-admin-console (Fedora 11) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-admin-console From tibbs at fedoraproject.org Fri Jul 17 15:37:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:37:13 +0000 (UTC) Subject: rpms/389-admin-console - New directory Message-ID: <20090717153713.1AEAD11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/389-admin-console In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG31957/rpms/389-admin-console Log Message: Directory /cvs/pkgs/rpms/389-admin-console added to the repository From pkgdb at fedoraproject.org Fri Jul 17 15:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:37:07 +0000 Subject: [pkgdb] 389-admin-console (Fedora, 11) updated by tibbs Message-ID: <20090717153707.86EAE10F908@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for 389-admin-console tibbs has set commit to Approved for 107427 on 389-admin-console (Fedora 10) tibbs has set checkout to Approved for 107427 on 389-admin-console (Fedora 10) tibbs has set build to Approved for 107427 on 389-admin-console (Fedora 10) tibbs approved watchbugzilla on 389-admin-console (Fedora 10) for nkinder tibbs approved watchcommits on 389-admin-console (Fedora 10) for nkinder tibbs approved commit on 389-admin-console (Fedora 10) for nkinder tibbs approved build on 389-admin-console (Fedora 10) for nkinder tibbs approved approveacls on 389-admin-console (Fedora 10) for nkinder tibbs approved watchbugzilla on 389-admin-console (Fedora 10) for nhosoi tibbs approved watchcommits on 389-admin-console (Fedora 10) for nhosoi tibbs approved commit on 389-admin-console (Fedora 10) for nhosoi tibbs approved build on 389-admin-console (Fedora 10) for nhosoi tibbs approved approveacls on 389-admin-console (Fedora 10) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-admin-console From tibbs at fedoraproject.org Fri Jul 17 15:37:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:37:13 +0000 (UTC) Subject: rpms/389-admin-console/devel - New directory Message-ID: <20090717153713.3A12111C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/389-admin-console/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG31957/rpms/389-admin-console/devel Log Message: Directory /cvs/pkgs/rpms/389-admin-console/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:37:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:37:18 +0000 (UTC) Subject: rpms/389-admin-console Makefile,NONE,1.1 Message-ID: <20090717153718.E339F11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/389-admin-console In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG31957/rpms/389-admin-console Added Files: Makefile Log Message: Setup of module 389-admin-console --- NEW FILE Makefile --- # Top level Makefile for module 389-admin-console all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:37:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:37:19 +0000 (UTC) Subject: rpms/389-admin-console/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717153719.38D8411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/389-admin-console/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsG31957/rpms/389-admin-console/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module 389-admin-console --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: 389-admin-console # $Id: Makefile,v 1.1 2009/07/17 15:37:19 tibbs Exp $ NAME := 389-admin-console SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From cwickert at fedoraproject.org Fri Jul 17 15:40:27 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 15:40:27 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2.spec,1.39,1.40 Message-ID: <20090717154027.C650711C00E8@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32555 Modified Files: emelfm2.spec Log Message: * Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 - Build with ACL plugin again, got dropped accidentially. Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- emelfm2.spec 17 Jul 2009 01:09:34 -0000 1.39 +++ emelfm2.spec 17 Jul 2009 15:39:57 -0000 1.40 @@ -6,7 +6,7 @@ Name: emelfm2 Version: 0.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -55,6 +55,7 @@ make %{?_smp_mflags} \ WITH_TRACKER=1 \ USE_LATEST=1 \ NEW_COMMAND=1 \ + WITH_ACL=1 STRIP=0 \ %if 0%{?fedora} > 10 WITH_DEVKIT=1 \ @@ -97,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 +- Build with ACL plugin again, got dropped accidentially. + * Fri Jul 17 2009 Christoph Wickert - 0.6.1-1 - Update 0.6.1 - Enable auto (un)mounting using devicekit-disks From pkgdb at fedoraproject.org Fri Jul 17 15:47:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:47:39 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-DebugScreen was added for eseyman Message-ID: <20090717154739.3DB1E10F86B@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-CGI-Application-Plugin-DebugScreen with summary Add Debug support to CGI::Application tibbs has approved Package perl-CGI-Application-Plugin-DebugScreen tibbs has added a Fedora devel branch for perl-CGI-Application-Plugin-DebugScreen with an owner of eseyman tibbs has approved perl-CGI-Application-Plugin-DebugScreen in Fedora devel tibbs has approved Package perl-CGI-Application-Plugin-DebugScreen tibbs has set commit to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora devel) tibbs has set build to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-DebugScreen From pkgdb at fedoraproject.org Fri Jul 17 15:47:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:47:40 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-DebugScreen summary updated by tibbs Message-ID: <20090717154741.103DF10F8AB@bastion2.fedora.phx.redhat.com> tibbs set package perl-CGI-Application-Plugin-DebugScreen summary to Add Debug support to CGI::Application To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-DebugScreen From pkgdb at fedoraproject.org Fri Jul 17 15:47:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:47:41 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-DebugScreen (Fedora, 10) updated by tibbs Message-ID: <20090717154741.3B76710F8AF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-CGI-Application-Plugin-DebugScreen tibbs has set commit to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 10) tibbs has set build to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 10) tibbs approved watchbugzilla on perl-CGI-Application-Plugin-DebugScreen (Fedora 10) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Plugin-DebugScreen (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-DebugScreen From tibbs at fedoraproject.org Fri Jul 17 15:47:46 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:47:46 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen - New directory Message-ID: <20090717154746.1734011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsRr1873/rpms/perl-CGI-Application-Plugin-DebugScreen Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen added to the repository From pkgdb at fedoraproject.org Fri Jul 17 15:47:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:47:41 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-DebugScreen (Fedora, 10) updated by tibbs Message-ID: <20090717154741.5151410F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-CGI-Application-Plugin-DebugScreen tibbs has set commit to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 11) tibbs has set build to Approved for 107427 on perl-CGI-Application-Plugin-DebugScreen (Fedora 11) tibbs approved watchbugzilla on perl-CGI-Application-Plugin-DebugScreen (Fedora 11) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Plugin-DebugScreen (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-DebugScreen From pkgdb at fedoraproject.org Fri Jul 17 15:47:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:47:41 +0000 Subject: [pkgdb] perl-CGI-Application-Plugin-DebugScreen (Fedora, 10) updated by tibbs Message-ID: <20090717154741.4627D10F8B3@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-CGI-Application-Plugin-DebugScreen (Fedora devel) for perl-sig tibbs approved watchcommits on perl-CGI-Application-Plugin-DebugScreen (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-CGI-Application-Plugin-DebugScreen From tibbs at fedoraproject.org Fri Jul 17 15:47:46 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:47:46 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/devel - New directory Message-ID: <20090717154746.40E0F11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsRr1873/rpms/perl-CGI-Application-Plugin-DebugScreen/devel Log Message: Directory /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:47:51 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:47:51 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen Makefile,NONE,1.1 Message-ID: <20090717154751.9E57411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsRr1873/rpms/perl-CGI-Application-Plugin-DebugScreen Added Files: Makefile Log Message: Setup of module perl-CGI-Application-Plugin-DebugScreen --- NEW FILE Makefile --- # Top level Makefile for module perl-CGI-Application-Plugin-DebugScreen all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:47:51 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:47:51 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717154751.F01B311C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsRr1873/rpms/perl-CGI-Application-Plugin-DebugScreen/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-CGI-Application-Plugin-DebugScreen --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-CGI-Application-Plugin-DebugScreen # $Id: Makefile,v 1.1 2009/07/17 15:47:51 tibbs Exp $ NAME := perl-CGI-Application-Plugin-DebugScreen SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:48:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:08 +0000 Subject: [pkgdb] rpmconf was added for msuchy Message-ID: <20090717154808.F2B3710F899@bastion2.fedora.phx.redhat.com> tibbs has added Package rpmconf with summary Tool to handle rpmnew and rpmsave files tibbs has approved Package rpmconf tibbs has added a Fedora devel branch for rpmconf with an owner of msuchy tibbs has approved rpmconf in Fedora devel tibbs has approved Package rpmconf tibbs has set commit to Approved for 107427 on rpmconf (Fedora devel) tibbs has set checkout to Approved for 107427 on rpmconf (Fedora devel) tibbs has set build to Approved for 107427 on rpmconf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rpmconf From pkgdb at fedoraproject.org Fri Jul 17 15:48:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:09 +0000 Subject: [pkgdb] rpmconf summary updated by tibbs Message-ID: <20090717154810.0184910F8A5@bastion2.fedora.phx.redhat.com> tibbs set package rpmconf summary to Tool to handle rpmnew and rpmsave files To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rpmconf From pkgdb at fedoraproject.org Fri Jul 17 15:48:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:09 +0000 Subject: [pkgdb] rpmconf (Fedora EPEL, 5) updated by tibbs Message-ID: <20090717154810.0533A10F8BD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for rpmconf tibbs has set commit to Approved for 107427 on rpmconf (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on rpmconf (Fedora EPEL 4) tibbs has set build to Approved for 107427 on rpmconf (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rpmconf From pkgdb at fedoraproject.org Fri Jul 17 15:48:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:09 +0000 Subject: [pkgdb] rpmconf (Fedora EPEL, 5) updated by tibbs Message-ID: <20090717154810.0CF7C10F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for rpmconf tibbs has set commit to Approved for 107427 on rpmconf (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on rpmconf (Fedora EPEL 5) tibbs has set build to Approved for 107427 on rpmconf (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rpmconf From pkgdb at fedoraproject.org Fri Jul 17 15:48:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:09 +0000 Subject: [pkgdb] rpmconf (Fedora EPEL, 5) updated by tibbs Message-ID: <20090717154810.1523510F8C3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for rpmconf tibbs has set commit to Approved for 107427 on rpmconf (Fedora 11) tibbs has set checkout to Approved for 107427 on rpmconf (Fedora 11) tibbs has set build to Approved for 107427 on rpmconf (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rpmconf From tibbs at fedoraproject.org Fri Jul 17 15:48:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:18 +0000 (UTC) Subject: rpms/rpmconf - New directory Message-ID: <20090717154818.2331B11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rpmconf In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsqo2181/rpms/rpmconf Log Message: Directory /cvs/pkgs/rpms/rpmconf added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:48:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:18 +0000 (UTC) Subject: rpms/rpmconf/devel - New directory Message-ID: <20090717154818.4415E11C00D8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rpmconf/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsqo2181/rpms/rpmconf/devel Log Message: Directory /cvs/pkgs/rpms/rpmconf/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:48:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:24 +0000 (UTC) Subject: rpms/rpmconf Makefile,NONE,1.1 Message-ID: <20090717154824.4EE3D11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rpmconf In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsqo2181/rpms/rpmconf Added Files: Makefile Log Message: Setup of module rpmconf --- NEW FILE Makefile --- # Top level Makefile for module rpmconf all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:48:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:24 +0000 (UTC) Subject: rpms/rpmconf/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717154824.A07A011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rpmconf/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsqo2181/rpms/rpmconf/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rpmconf --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rpmconf # $Id: Makefile,v 1.1 2009/07/17 15:48:24 tibbs Exp $ NAME := rpmconf SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:48:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:43 +0000 Subject: [pkgdb] surl was added for fab Message-ID: <20090717154843.86F1510F8B7@bastion2.fedora.phx.redhat.com> tibbs has added Package surl with summary A URL shortening command line tool tibbs has approved Package surl tibbs has added a Fedora devel branch for surl with an owner of fab tibbs has approved surl in Fedora devel tibbs has approved Package surl tibbs has set commit to Approved for 107427 on surl (Fedora devel) tibbs has set checkout to Approved for 107427 on surl (Fedora devel) tibbs has set build to Approved for 107427 on surl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surl From pkgdb at fedoraproject.org Fri Jul 17 15:48:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:44 +0000 Subject: [pkgdb] surl summary updated by tibbs Message-ID: <20090717154844.6370F10F8BA@bastion2.fedora.phx.redhat.com> tibbs set package surl summary to A URL shortening command line tool To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surl From pkgdb at fedoraproject.org Fri Jul 17 15:48:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:44 +0000 Subject: [pkgdb] surl (Fedora, 11) updated by tibbs Message-ID: <20090717154844.6BB0610F8CA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for surl tibbs has set commit to Approved for 107427 on surl (Fedora 11) tibbs has set checkout to Approved for 107427 on surl (Fedora 11) tibbs has set build to Approved for 107427 on surl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surl From pkgdb at fedoraproject.org Fri Jul 17 15:48:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:48:44 +0000 Subject: [pkgdb] surl (Fedora, 11) updated by tibbs Message-ID: <20090717154844.7705B10F8CD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for surl tibbs has set commit to Approved for 107427 on surl (Fedora 10) tibbs has set checkout to Approved for 107427 on surl (Fedora 10) tibbs has set build to Approved for 107427 on surl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/surl From tibbs at fedoraproject.org Fri Jul 17 15:48:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:49 +0000 (UTC) Subject: rpms/surl - New directory Message-ID: <20090717154849.1D62C11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/surl In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsdm2522/rpms/surl Log Message: Directory /cvs/pkgs/rpms/surl added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:48:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:49 +0000 (UTC) Subject: rpms/surl/devel - New directory Message-ID: <20090717154849.3ECB611C00D8@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/surl/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsdm2522/rpms/surl/devel Log Message: Directory /cvs/pkgs/rpms/surl/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:48:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:55 +0000 (UTC) Subject: rpms/surl/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717154855.03C2011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/surl/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsdm2522/rpms/surl/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module surl --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: surl # $Id: Makefile,v 1.1 2009/07/17 15:48:54 tibbs Exp $ NAME := surl SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Fri Jul 17 15:48:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:48:54 +0000 (UTC) Subject: rpms/surl Makefile,NONE,1.1 Message-ID: <20090717154854.C357711C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/surl In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsdm2522/rpms/surl Added Files: Makefile Log Message: Setup of module surl --- NEW FILE Makefile --- # Top level Makefile for module surl all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Fri Jul 17 15:49:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:49:12 +0000 Subject: [pkgdb] psimedia was added for nucleo Message-ID: <20090717154912.40C2110F8BD@bastion2.fedora.phx.redhat.com> tibbs has added Package psimedia with summary Audio and video RTP services for Psi-like IM clients tibbs has approved Package psimedia tibbs has added a Fedora devel branch for psimedia with an owner of nucleo tibbs has approved psimedia in Fedora devel tibbs has approved Package psimedia tibbs has set commit to Approved for 107427 on psimedia (Fedora devel) tibbs has set checkout to Approved for 107427 on psimedia (Fedora devel) tibbs has set build to Approved for 107427 on psimedia (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 17 15:49:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:49:13 +0000 Subject: [pkgdb] psimedia summary updated by tibbs Message-ID: <20090717154913.2C79210F8C0@bastion2.fedora.phx.redhat.com> tibbs set package psimedia summary to Audio and video RTP services for Psi-like IM clients To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From tibbs at fedoraproject.org Fri Jul 17 15:49:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:49:19 +0000 (UTC) Subject: rpms/psimedia - New directory Message-ID: <20090717154919.178E311C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/psimedia In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsXC2772/rpms/psimedia Log Message: Directory /cvs/pkgs/rpms/psimedia added to the repository From pkgdb at fedoraproject.org Fri Jul 17 15:49:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:49:13 +0000 Subject: [pkgdb] psimedia (Fedora, 11) updated by tibbs Message-ID: <20090717154913.35C7810F8C3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for psimedia tibbs has set commit to Approved for 107427 on psimedia (Fedora 11) tibbs has set checkout to Approved for 107427 on psimedia (Fedora 11) tibbs has set build to Approved for 107427 on psimedia (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From tibbs at fedoraproject.org Fri Jul 17 15:49:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:49:19 +0000 (UTC) Subject: rpms/psimedia/devel - New directory Message-ID: <20090717154919.48B5411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/psimedia/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsXC2772/rpms/psimedia/devel Log Message: Directory /cvs/pkgs/rpms/psimedia/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 15:49:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:49:24 +0000 (UTC) Subject: rpms/psimedia Makefile,NONE,1.1 Message-ID: <20090717154924.E22A011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/psimedia In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsXC2772/rpms/psimedia Added Files: Makefile Log Message: Setup of module psimedia --- NEW FILE Makefile --- # Top level Makefile for module psimedia all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 15:49:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:49:25 +0000 (UTC) Subject: rpms/psimedia/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717154925.2C0CC11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/psimedia/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsXC2772/rpms/psimedia/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module psimedia --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: psimedia # $Id: Makefile,v 1.1 2009/07/17 15:49:25 tibbs Exp $ NAME := psimedia SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 15:54:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:37 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155437.B1C7D10F890@bastion2.fedora.phx.redhat.com> lmacken has set the watchcommits acl on python-formencode (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:39 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155439.7397510F8B1@bastion2.fedora.phx.redhat.com> lmacken has set the commit acl on python-formencode (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:40 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155440.584DE10F8B3@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on python-formencode (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:40 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155440.81D3A10F8BD@bastion2.fedora.phx.redhat.com> lmacken has set the approveacls acl on python-formencode (Fedora devel) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:48 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155448.8DF9110F8BF@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on python-formencode (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:49 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155449.2F32210F8C4@bastion2.fedora.phx.redhat.com> lmacken has set the watchcommits acl on python-formencode (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:51 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155451.76E5110F8C9@bastion2.fedora.phx.redhat.com> lmacken has set the commit acl on python-formencode (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From pkgdb at fedoraproject.org Fri Jul 17 15:54:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 15:54:53 +0000 Subject: [pkgdb] python-formencode had acl change status Message-ID: <20090717155453.B776310F8CC@bastion2.fedora.phx.redhat.com> lmacken has set the approveacls acl on python-formencode (Fedora 11) to Approved for kylev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-formencode From eseyman at fedoraproject.org Fri Jul 17 15:56:10 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Fri, 17 Jul 2009 15:56:10 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/devel import.log, NONE, 1.1 perl-CGI-Application-Plugin-DebugScreen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717155610.5447F11C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3925/devel Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-DebugScreen.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-DebugScreen-0_06-1_fc11:HEAD:perl-CGI-Application-Plugin-DebugScreen-0.06-1.fc11.src.rpm:1247846118 --- NEW FILE perl-CGI-Application-Plugin-DebugScreen.spec --- Name: perl-CGI-Application-Plugin-DebugScreen Version: 0.06 Release: 1%{?dist} Summary: Add Debug support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-DebugScreen/ Source0: http://www.cpan.org/authors/id/N/NE/NEKOKAK/CGI-Application-Plugin-DebugScreen-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::ViewCode) BuildRequires: perl(Devel::StackTrace) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(HTML::Template) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin adds debug support to CGI::Application and works like Catalyst's debug mode. %prep %setup -q -n CGI-Application-Plugin-DebugScreen-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 0.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:47:51 -0000 1.1 +++ .cvsignore 17 Jul 2009 15:55:40 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-DebugScreen-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:47:51 -0000 1.1 +++ sources 17 Jul 2009 15:55:40 -0000 1.2 @@ -0,0 +1 @@ +e696350727a676fcc335bc04188972ac CGI-Application-Plugin-DebugScreen-0.06.tar.gz From tibbs at fedoraproject.org Fri Jul 17 15:34:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 15:34:59 +0000 (UTC) Subject: rpms/olpc-contents/devel - New directory Message-ID: <20090717153459.3A7DD11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-contents/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF31035/rpms/olpc-contents/devel Log Message: Directory /cvs/pkgs/rpms/olpc-contents/devel added to the repository From cwickert at fedoraproject.org Fri Jul 17 16:01:08 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 17 Jul 2009 16:01:08 +0000 (UTC) Subject: rpms/emelfm2/F-11 .cvsignore, 1.20, 1.21 emelfm2.spec, 1.35, 1.36 sources, 1.20, 1.21 emelfm2-0.5.1-nostrip.patch, 1.1, NONE emelfm2-0.6.0-fix-segfault-on-upgrade.patch, 1.1, NONE Message-ID: <20090717160108.2830811C00D6@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5646 Modified Files: .cvsignore emelfm2.spec sources Removed Files: emelfm2-0.5.1-nostrip.patch emelfm2-0.6.0-fix-segfault-on-upgrade.patch Log Message: * Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 - Build with ACL plugin again, got dropped accidentially. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 9 May 2009 03:25:19 -0000 1.20 +++ .cvsignore 17 Jul 2009 16:00:37 -0000 1.21 @@ -1 +1 @@ -emelfm2-0.6.0.tar.bz2 +emelfm2-0.6.1.tar.bz2 Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/emelfm2.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- emelfm2.spec 9 May 2009 03:25:19 -0000 1.35 +++ emelfm2.spec 17 Jul 2009 16:00:37 -0000 1.36 @@ -5,25 +5,29 @@ # rpmbuild -ba emelfm2.spec --with hal Name: emelfm2 -Version: 0.6.0 -Release: 1%{?dist} +Version: 0.6.1 +Release: 2%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File License: GPLv3+ URL: http://emelfm2.net/ Source0: http://emelfm2.net/rel/%{name}-%{version}.tar.bz2 -Patch0: emelfm2-0.6.0-fix-segfault-on-upgrade.patch -Patch1: emelfm2-0.5.1-nostrip.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.6.0, libacl-devel, gettext, desktop-file-utils -Requires: findutils >= 4.2, file, grep, sed, bzip2 +BuildRequires: file-devel +Requires: findutils >= 4.2, grep, sed, bzip2 %if 0%{?_with_hal:1} BuildRequires: hal-devel, dbus-glib-devel Requires: hal %endif +%if 0%{?fedora} > 10 +BuildRequires: dbus-glib-devel +Requires: DeviceKit-disks +%endif + %description emelFM2 is the GTK+2 port of emelFM. emelFM2 is a file manager that implements the popular two-pane design. It features a simple GTK+2 interface, a flexible @@ -33,9 +37,6 @@ opening an xterm. %prep %setup -q -#%patch0 -p0 -b .docdir -%patch0 -p1 -b .segfault -%patch1 -p1 -b .nostrip # fix broken icon in emelfm2.desktop sed -i 's!Icon=emelfm2!Icon=%{_datadir}/pixmaps/emelfm2/emelfm2_48.png!' docs/desktop_environment/%{name}.desktop @@ -47,17 +48,21 @@ sed -i 's!^\(\t\+\)@!\1!' Makefile make %{?_smp_mflags} \ CFLAGS="${RPM_OPT_FLAGS}" \ PREFIX="%{_prefix}" \ - PLUGINS_DIR="%{_libdir}/%{name}/plugins" \ + LIB_DIR="%{_libdir}" \ DOCS_VERSION=1 \ WITH_TRANSPARENCY=1 \ WITH_KERNELFAM=1 \ WITH_TRACKER=1 \ USE_LATEST=1 \ NEW_COMMAND=1 \ + WITH_ACL=1 + STRIP=0 \ + %if 0%{?fedora} > 10 + WITH_DEVKIT=1 \ + %endif %if 0%{?_with_hal:1} WITH_HAL=1 \ %endif - WITH_ACL=1 %install @@ -82,8 +87,8 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc docs/ACTIONS docs/CONFIGURATION docs/CREDITS docs/HACKING -%doc docs/README docs/TODO docs/USAGE docs/WARNING -%doc docs/help.txt docs/GPL docs/LGPL +%doc docs/NEWS docs/README docs/TODO docs/USAGE docs/WARNING +%doc docs/GPL docs/LGPL %{_bindir}/%{name} %{_libdir}/%{name}/ %{_datadir}/applications/fedora-%{name}.desktop @@ -93,6 +98,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 +- Build with ACL plugin again, got dropped accidentially. + +* Fri Jul 17 2009 Christoph Wickert - 0.6.1-1 +- Update 0.6.1 +- Enable auto (un)mounting using devicekit-disks +- Use new LIB_DIR option instead of PLUGINS_DIR +- Build with "STRIP=0" instead of using nostrip.patch + * Sat May 09 2009 Christoph Wickert - 0.6.0-1 - Update 0.6.0 - Patch to fix segfault in e2_upgrade.so Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 9 May 2009 03:25:19 -0000 1.20 +++ sources 17 Jul 2009 16:00:37 -0000 1.21 @@ -1 +1 @@ -c153749aea954f342b28a470866ac4b0 emelfm2-0.6.0.tar.bz2 +8372c29d72d4d9ad08939f980b689156 emelfm2-0.6.1.tar.bz2 --- emelfm2-0.5.1-nostrip.patch DELETED --- --- emelfm2-0.6.0-fix-segfault-on-upgrade.patch DELETED --- From nucleo at fedoraproject.org Fri Jul 17 16:03:26 2009 From: nucleo at fedoraproject.org (nucleo) Date: Fri, 17 Jul 2009 16:03:26 +0000 (UTC) Subject: rpms/psimedia/devel import.log, NONE, 1.1 psimedia-demo.patch, NONE, 1.1 psimedia.desktop, NONE, 1.1 psimedia.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717160326.E2E1611C00D3@cvs1.fedora.phx.redhat.com> Author: nucleo Update of /cvs/pkgs/rpms/psimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6167/devel Modified Files: .cvsignore sources Added Files: import.log psimedia-demo.patch psimedia.desktop psimedia.spec Log Message: Initial import --- NEW FILE import.log --- psimedia-1_0_3-2_fc11:HEAD:psimedia-1.0.3-2.fc11.src.rpm:1247846472 psimedia-demo.patch: configure | 47 +++++++++++++++++++++++++++++++++++++++++++++++ demo/main.cpp | 3 ++- psimedia.pro | 1 + 3 files changed, 50 insertions(+), 1 deletion(-) --- NEW FILE psimedia-demo.patch --- --- psimedia-1.0.3/configure 2009-06-11 08:45:53.000000000 +0300 +++ psimedia-1.0.3/configure 2009-07-16 17:18:05.000000000 +0300 @@ -15,6 +15,8 @@ --help This help text. Project options: + --prefix=[path] Base path for build/install. Default: /usr/local + --libdir=[path] Directory for libraries. Default: PREFIX/lib --release Build with debugging turned off (default). --debug Build with debugging turned on. --debug-and-release Build two versions, with and without debugging @@ -121,6 +123,16 @@ while [ $# -gt 0 ]; do optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` case "$1" in + --prefix=*) + PREFIX=$optarg + shift + ;; + + --libdir=*) + LIBDIR=$optarg + shift + ;; + --qtdir=*) EX_QTDIR=$optarg shift @@ -170,11 +182,15 @@ esac done +PREFIX=${PREFIX:-/usr/local} +LIBDIR=${LIBDIR:-$PREFIX/lib} echo "Configuring PsiMedia ..." if [ "$QC_VERBOSE" = "Y" ]; then echo +echo PREFIX=$PREFIX +echo LIBDIR=$LIBDIR echo EX_QTDIR=$EX_QTDIR echo QC_RELEASE=$QC_RELEASE echo QC_DEBUG=$QC_DEBUG @@ -527,6 +543,32 @@ } }; +//---------------------------------------------------------------------------- +// qc_conf +//---------------------------------------------------------------------------- +class qc_conf : public ConfObj +{ +public: + qc_conf(Conf *c) : ConfObj(c) {} + QString name() const { return "Psi Configuration"; } + QString shortname() const { return "conf"; } + QString checkString() const { return QString(); } + bool exec() + { + conf->addExtra(QString("PSI_PLUGINS_DIR=%1/psi/plugins").arg(conf->getenv("LIBDIR"))); + + QFile file("demo/config.h"); + if ( file.open(QIODevice::WriteOnly | QIODevice::Text) ) { + QTextStream stream( &file ); + stream << "#define PSI_PLUGINS_DIR \"" << conf->getenv("LIBDIR") << "/psi/plugins\"" << endl; + } + + conf->addDefine("HAVE_CONFIG"); + + return true; + } +}; + EOT cat >$1/modules_new.cpp <= 1.2rc1", VersionMin, "1.2rc1"); o->required = true; o->disabled = false; + o = new qc_conf(conf); + o->required = true; + o->disabled = false; EOT cat >$1/conf4.h <= 0.13 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel BuildRequires: gstreamer-plugins-base-devel >= 0.10.22 BuildRequires: liboil-devel >= 0.3 BuildRequires: speex-devel BuildRequires: desktop-file-utils %description PsiMedia is a thick abstraction layer for providing audio and video RTP services to Psi-like IM clients. The implementation is based on GStreamer. %prep %setup -q %patch0 -p1 %build # Generated by qconf 1.5 ( http://delta.affinix.com/qconf/ ) ./configure --libdir=%{_libdir} --prefix=%{_prefix} --verbose make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -D -m 755 gstprovider/libgstprovider.so $RPM_BUILD_ROOT%{_libdir}/psi/plugins/libgstprovider.so install -D -m 755 demo/demo $RPM_BUILD_ROOT%{_bindir}/%{name} desktop-file-install \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING README TODO %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_libdir}/psi/plugins/libgstprovider.so %changelog * Fri Jul 17 2009 Alexey Kurov - 1.0.3-2 - Fixed patch for using libdir in plugins path - Group changed to Applications/Multimedia * Mon Jul 6 2009 Alexey Kurov - 1.0.3-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psimedia/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:49:24 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:02:56 -0000 1.2 @@ -0,0 +1 @@ +psimedia-1.0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psimedia/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:49:25 -0000 1.1 +++ sources 17 Jul 2009 16:02:56 -0000 1.2 @@ -0,0 +1 @@ +1be71c37d71c655ffc2c53cf86c77a7a psimedia-1.0.3.tar.bz2 From eseyman at fedoraproject.org Fri Jul 17 16:03:34 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Fri, 17 Jul 2009 16:03:34 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/F-11 import.log, NONE, 1.1 perl-CGI-Application-Plugin-DebugScreen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717160334.9852011C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6316/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-DebugScreen.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-DebugScreen-0_06-1_fc11:F-11:perl-CGI-Application-Plugin-DebugScreen-0.06-1.fc11.src.rpm:1247846218 --- NEW FILE perl-CGI-Application-Plugin-DebugScreen.spec --- Name: perl-CGI-Application-Plugin-DebugScreen Version: 0.06 Release: 1%{?dist} Summary: Add Debug support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-DebugScreen/ Source0: http://www.cpan.org/authors/id/N/NE/NEKOKAK/CGI-Application-Plugin-DebugScreen-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::ViewCode) BuildRequires: perl(Devel::StackTrace) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(HTML::Template) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin adds debug support to CGI::Application and works like Catalyst's debug mode. %prep %setup -q -n CGI-Application-Plugin-DebugScreen-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 0.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:47:51 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:03:04 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-DebugScreen-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:47:51 -0000 1.1 +++ sources 17 Jul 2009 16:03:04 -0000 1.2 @@ -0,0 +1 @@ +e696350727a676fcc335bc04188972ac CGI-Application-Plugin-DebugScreen-0.06.tar.gz From eseyman at fedoraproject.org Fri Jul 17 16:05:03 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Fri, 17 Jul 2009 16:05:03 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/F-10 import.log, NONE, 1.1 perl-CGI-Application-Plugin-DebugScreen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717160503.7689F11C00D3@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6818/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-CGI-Application-Plugin-DebugScreen.spec Log Message: Initial import. --- NEW FILE import.log --- perl-CGI-Application-Plugin-DebugScreen-0_06-1_fc11:F-10:perl-CGI-Application-Plugin-DebugScreen-0.06-1.fc11.src.rpm:1247846656 --- NEW FILE perl-CGI-Application-Plugin-DebugScreen.spec --- Name: perl-CGI-Application-Plugin-DebugScreen Version: 0.06 Release: 1%{?dist} Summary: Add Debug support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/CGI-Application-Plugin-DebugScreen/ Source0: http://www.cpan.org/authors/id/N/NE/NEKOKAK/CGI-Application-Plugin-DebugScreen-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) BuildRequires: perl(CGI::Application::Plugin::ViewCode) BuildRequires: perl(Devel::StackTrace) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(HTML::Template) BuildRequires: perl(UNIVERSAL::require) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description This plugin adds debug support to CGI::Application and works like Catalyst's debug mode. %prep %setup -q -n CGI-Application-Plugin-DebugScreen-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Mon Dec 22 2008 Emmanuel Seyman 0.06-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:47:51 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:04:33 -0000 1.2 @@ -0,0 +1 @@ +CGI-Application-Plugin-DebugScreen-0.06.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:47:51 -0000 1.1 +++ sources 17 Jul 2009 16:04:33 -0000 1.2 @@ -0,0 +1 @@ +e696350727a676fcc335bc04188972ac CGI-Application-Plugin-DebugScreen-0.06.tar.gz From nucleo at fedoraproject.org Fri Jul 17 16:06:19 2009 From: nucleo at fedoraproject.org (nucleo) Date: Fri, 17 Jul 2009 16:06:19 +0000 (UTC) Subject: rpms/psimedia/F-11 import.log, NONE, 1.1 psimedia-demo.patch, NONE, 1.1 psimedia.desktop, NONE, 1.1 psimedia.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717160619.D0F3411C00D3@cvs1.fedora.phx.redhat.com> Author: nucleo Update of /cvs/pkgs/rpms/psimedia/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7194/F-11 Modified Files: .cvsignore sources Added Files: import.log psimedia-demo.patch psimedia.desktop psimedia.spec Log Message: Initial import --- NEW FILE import.log --- psimedia-1_0_3-2_fc11:F-11:psimedia-1.0.3-2.fc11.src.rpm:1247846705 psimedia-demo.patch: configure | 47 +++++++++++++++++++++++++++++++++++++++++++++++ demo/main.cpp | 3 ++- psimedia.pro | 1 + 3 files changed, 50 insertions(+), 1 deletion(-) --- NEW FILE psimedia-demo.patch --- --- psimedia-1.0.3/configure 2009-06-11 08:45:53.000000000 +0300 +++ psimedia-1.0.3/configure 2009-07-16 17:18:05.000000000 +0300 @@ -15,6 +15,8 @@ --help This help text. Project options: + --prefix=[path] Base path for build/install. Default: /usr/local + --libdir=[path] Directory for libraries. Default: PREFIX/lib --release Build with debugging turned off (default). --debug Build with debugging turned on. --debug-and-release Build two versions, with and without debugging @@ -121,6 +123,16 @@ while [ $# -gt 0 ]; do optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` case "$1" in + --prefix=*) + PREFIX=$optarg + shift + ;; + + --libdir=*) + LIBDIR=$optarg + shift + ;; + --qtdir=*) EX_QTDIR=$optarg shift @@ -170,11 +182,15 @@ esac done +PREFIX=${PREFIX:-/usr/local} +LIBDIR=${LIBDIR:-$PREFIX/lib} echo "Configuring PsiMedia ..." if [ "$QC_VERBOSE" = "Y" ]; then echo +echo PREFIX=$PREFIX +echo LIBDIR=$LIBDIR echo EX_QTDIR=$EX_QTDIR echo QC_RELEASE=$QC_RELEASE echo QC_DEBUG=$QC_DEBUG @@ -527,6 +543,32 @@ } }; +//---------------------------------------------------------------------------- +// qc_conf +//---------------------------------------------------------------------------- +class qc_conf : public ConfObj +{ +public: + qc_conf(Conf *c) : ConfObj(c) {} + QString name() const { return "Psi Configuration"; } + QString shortname() const { return "conf"; } + QString checkString() const { return QString(); } + bool exec() + { + conf->addExtra(QString("PSI_PLUGINS_DIR=%1/psi/plugins").arg(conf->getenv("LIBDIR"))); + + QFile file("demo/config.h"); + if ( file.open(QIODevice::WriteOnly | QIODevice::Text) ) { + QTextStream stream( &file ); + stream << "#define PSI_PLUGINS_DIR \"" << conf->getenv("LIBDIR") << "/psi/plugins\"" << endl; + } + + conf->addDefine("HAVE_CONFIG"); + + return true; + } +}; + EOT cat >$1/modules_new.cpp <= 1.2rc1", VersionMin, "1.2rc1"); o->required = true; o->disabled = false; + o = new qc_conf(conf); + o->required = true; + o->disabled = false; EOT cat >$1/conf4.h <= 0.13 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel BuildRequires: gstreamer-plugins-base-devel >= 0.10.22 BuildRequires: liboil-devel >= 0.3 BuildRequires: speex-devel BuildRequires: desktop-file-utils %description PsiMedia is a thick abstraction layer for providing audio and video RTP services to Psi-like IM clients. The implementation is based on GStreamer. %prep %setup -q %patch0 -p1 %build # Generated by qconf 1.5 ( http://delta.affinix.com/qconf/ ) ./configure --libdir=%{_libdir} --prefix=%{_prefix} --verbose make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -D -m 755 gstprovider/libgstprovider.so $RPM_BUILD_ROOT%{_libdir}/psi/plugins/libgstprovider.so install -D -m 755 demo/demo $RPM_BUILD_ROOT%{_bindir}/%{name} desktop-file-install \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING README TODO %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_libdir}/psi/plugins/libgstprovider.so %changelog * Fri Jul 17 2009 Alexey Kurov - 1.0.3-2 - Fixed patch for using libdir in plugins path - Group changed to Applications/Multimedia * Mon Jul 6 2009 Alexey Kurov - 1.0.3-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psimedia/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:49:24 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:05:49 -0000 1.2 @@ -0,0 +1 @@ +psimedia-1.0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psimedia/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:49:25 -0000 1.1 +++ sources 17 Jul 2009 16:05:49 -0000 1.2 @@ -0,0 +1 @@ +1be71c37d71c655ffc2c53cf86c77a7a psimedia-1.0.3.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 16:12:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 16:12:51 +0000 Subject: [pkgdb] tinyfugue (Fedora EPEL, 5) updated by tibbs Message-ID: <20090717161251.7340710F890@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for tinyfugue tibbs has set commit to Approved for 107427 on tinyfugue (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on tinyfugue (Fedora EPEL 5) tibbs has set build to Approved for 107427 on tinyfugue (Fedora EPEL 5) tibbs changed owner of tinyfugue in Fedora EPEL 5 to jussilehtola To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tinyfugue From lkundrak at fedoraproject.org Fri Jul 17 16:28:13 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 17 Jul 2009 16:28:13 +0000 (UTC) Subject: rpms/afpfs-ng/devel afpfs-ng.spec,1.2,1.3 Message-ID: <20090717162813.4866411C00D3@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/afpfs-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12528 Modified Files: afpfs-ng.spec Log Message: * Fri Jul 17 2009 Lubomir Rintel - 0.8.1-4 - Don't refer to AppleTalk in Summary Index: afpfs-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/afpfs-ng/devel/afpfs-ng.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- afpfs-ng.spec 14 Jul 2009 16:36:52 -0000 1.2 +++ afpfs-ng.spec 17 Jul 2009 16:27:43 -0000 1.3 @@ -5,7 +5,7 @@ Name: afpfs-ng Version: 0.8.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Apple Filing Protocol client Group: System Environment/Base @@ -20,7 +20,7 @@ BuildRequires: libgcrypt-devel gmp-devel %description A command line client to access files exported from Mac OS system via -AppleTalk or TCP using Apple Filing Protocol. +Apple Filing Protocol. %{?!_without_fuse:The FUSE filesystem module for AFP is in fuse-afp package} @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Lubomir Rintel - 0.8.1-4 +- Don't refer to AppleTalk in Summary + * Tue Jul 14 2009 Lubomir Rintel - 0.8.1-3 - Fix up license tag From pkgdb at fedoraproject.org Fri Jul 17 16:00:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 16:00:04 +0000 Subject: [pkgdb] maildrop (Fedora EPEL, 4) updated by tibbs Message-ID: <20090717160004.D5BBC10F89C@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for maildrop tibbs has set commit to Approved for 107427 on maildrop (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on maildrop (Fedora EPEL 5) tibbs has set build to Approved for 107427 on maildrop (Fedora EPEL 5) tibbs changed owner of maildrop in Fedora EPEL 5 to nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From pkgdb at fedoraproject.org Fri Jul 17 16:00:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 16:00:04 +0000 Subject: [pkgdb] maildrop (Fedora EPEL, 4) updated by tibbs Message-ID: <20090717160004.C40F410F890@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for maildrop tibbs has set commit to Approved for 107427 on maildrop (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on maildrop (Fedora EPEL 4) tibbs has set build to Approved for 107427 on maildrop (Fedora EPEL 4) tibbs changed owner of maildrop in Fedora EPEL 4 to nb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maildrop From dsd at fedoraproject.org Fri Jul 17 16:30:41 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:30:41 +0000 (UTC) Subject: rpms/olpc-contents/devel olpc-contents.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717163041.3BD3C11C00D7@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-contents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13734 Modified Files: .cvsignore sources Added Files: olpc-contents.spec Log Message: import v2.6 --- NEW FILE olpc-contents.spec --- Name: olpc-contents Version: 2.6 Release: 1%{?dist} Summary: OLPC contents manifest tools License: GPLv2+ and Public Domain Group: System Environment/Base URL: http://dev.laptop.org/git/users/cscott/olpc-contents Source0: http://dev.laptop.org/~dsd/olpc-contents/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, Pyrex, libicu-devel Requires: bitfrost %description The olpc-contents utilities allow creation and verification of manifest files describing directory trees. The olpc-update utility uses this to verify a downloaded update before it is installed. %prep %setup -q %build make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 olpc-contents-create olpc-contents-clean olpc-contents-hash $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 fv $RPM_BUILD_ROOT/%{_sbindir}/olpc-contents-verify %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_sbindir}/olpc-contents-create %{_sbindir}/olpc-contents-clean %{_sbindir}/olpc-contents-hash %{_sbindir}/olpc-contents-verify %changelog * Wed Jul 15 2009 Daniel Drake - 2.6-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-contents/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:35:04 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:30:40 -0000 1.2 @@ -0,0 +1 @@ +olpc-contents-2.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-contents/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:35:04 -0000 1.1 +++ sources 17 Jul 2009 16:30:40 -0000 1.2 @@ -0,0 +1 @@ +91fae621f89a839e8bbb074a7f53316c olpc-contents-2.6.tar.bz2 From dsd at fedoraproject.org Fri Jul 17 16:34:21 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:34:21 +0000 (UTC) Subject: rpms/dracut-modules-olpc/devel dracut-modules-olpc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717163421.12CD111C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/dracut-modules-olpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14392 Modified Files: .cvsignore sources Added Files: dracut-modules-olpc.spec Log Message: import v0.2.1 --- NEW FILE dracut-modules-olpc.spec --- Name: dracut-modules-olpc Version: 0.2.1 Release: 1%{?dist} Summary: OLPC modules for dracut initramfs Group: System Environment/Base License: GPLv2 URL: http://dev.laptop.org/git/users/dsd/dracut-modules-olpc Source0: http://dev.laptop.org/~dsd/dracut-modules-olpc/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: Pyrex, zlib-devel, python-devel, netpbm-progs Requires: dracut, bitfrost %description Dracut initramfs modules to implement OLPC-specific features, including antitheft, switching between OS updates, and the OLPC boot animation. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_datadir}/dracut/modules.d/30olpc-boot %{_libdir}/dracut-modules-olpc %changelog * Wed Jul 15 2009 Daniel Drake - 0.2.1-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut-modules-olpc/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:35:31 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:33:50 -0000 1.2 @@ -0,0 +1 @@ +dracut-modules-olpc-0.2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut-modules-olpc/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:35:31 -0000 1.1 +++ sources 17 Jul 2009 16:33:50 -0000 1.2 @@ -0,0 +1 @@ +f57a07be5dfce912a7058be7ba6cec30 dracut-modules-olpc-0.2.1.tar.bz2 From dsd at fedoraproject.org Fri Jul 17 16:39:14 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:39:14 +0000 (UTC) Subject: rpms/olpc-update/devel .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090717163914.9AC6211C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-update/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15469 Modified Files: .cvsignore sources Log Message: import v2.19 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-update/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:36:32 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:38:44 -0000 1.2 @@ -0,0 +1 @@ +olpc-update-2.19.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-update/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:36:32 -0000 1.1 +++ sources 17 Jul 2009 16:38:44 -0000 1.2 @@ -0,0 +1 @@ +06c5cc5166e6584b1898ebcee5f7983b olpc-update-2.19.tar.bz2 From hadess at fedoraproject.org Fri Jul 17 16:40:30 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 16:40:30 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.19,1.20 Message-ID: <20090717164030.4DC1E11C00E8@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15754 Modified Files: clutter.spec Log Message: * Fri Jul 17 2009 Bastien Nocera 0.9.6-2 - Patch from Owen Taylor to add gobject- introspection support to clutter (#512260) Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- clutter.spec 10 Jul 2009 13:17:46 -0000 1.19 +++ clutter.spec 17 Jul 2009 16:40:00 -0000 1.20 @@ -1,6 +1,6 @@ Name: clutter Version: 0.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open Source software library for creating rich graphical user interfaces Group: Development/Libraries @@ -9,8 +9,11 @@ URL: http://www.clutter-proje Source0: http://www.clutter-project.org/sources/%{name}/0.9/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: gobject-introspection + BuildRequires: glib2-devel mesa-libGL-devel gtk2-devel pkgconfig pango-devel BuildRequires: libXdamage-devel gettext gtk-doc +BuildRequires: gobject-introspection >= 0.6.3 %description Clutter is an open source software library for creating fast, @@ -24,6 +27,7 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig glib2-devel pango-devel fontconfig-devel gtk2-devel Requires: mesa-libGL-devel +Requires: gobject-introspection-devel %description devel Header files and libraries for building a extension library for the @@ -48,7 +52,7 @@ This package contains documentation for %setup -q %build -%configure --enable-gtk-doc +%configure --enable-gtk-doc --enable-introspection make %{?_smp_mflags} %install @@ -68,12 +72,14 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/*.la %{_libdir}/*.so.0 %{_libdir}/*.so.0.* +%{_libdir}/girepository-1.0/*.typelib %files devel %defattr(-, root, root) %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc +%{_datadir}/gir-1.0/*.gir %files doc %defattr(-, root, root) @@ -84,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Bastien Nocera 0.9.6-2 +- Patch from Owen Taylor to add gobject- + introspection support to clutter (#512260) + * Fri Jul 10 2009 Bastien Nocera 0.9.6-1 - Update to 0.9.6 From dsd at fedoraproject.org Fri Jul 17 16:41:07 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:41:07 +0000 (UTC) Subject: rpms/olpc-update/devel olpc-update.spec,NONE,1.1 Message-ID: <20090717164107.10F6D11C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-update/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16079 Added Files: olpc-update.spec Log Message: add spec file --- NEW FILE olpc-update.spec --- Name: olpc-update Version: 2.19 Release: 2%{?dist} Summary: OLPC system update tools Group: System Environment/Base License: GPLv2+ URL: http://dev.laptop.org/git/projects/olpc-update Source0: http://dev.laptop.org/~dsd/olpc-update/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: bitfrost, olpc-contents, NetworkManager, cronie BuildRequires: python-devel %description The OLPC update utilities handle the automatic or manual update of system files on an XO laptop. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/NetworkManager/dispatcher.d %{__install} -m 755 olpc-update-query olpc-update $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 irsync $RPM_BUILD_ROOT/%{_sbindir}/olpc-incr-rsync %{__install} -m 644 crontab-entry $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/olpc-update-query %{__install} -m 755 olpc-update-ifup $RPM_BUILD_ROOT/%{_sysconfdir}/NetworkManager/dispatcher.d/olpc-update-ifup %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_sbindir}/olpc-update-query %{_sbindir}/olpc-update %{_sbindir}/olpc-incr-rsync %{_sysconfdir}/cron.d/olpc-update-query %{_sysconfdir}/NetworkManager/dispatcher.d/olpc-update-ifup %changelog * Fri Jul 17 2009 Daniel Drake - 2.19-2 - forgot to put spec file in CVS * Thu Jul 16 2009 Daniel Drake - 2.19-1 - Initial import From dsd at fedoraproject.org Fri Jul 17 16:44:28 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:44:28 +0000 (UTC) Subject: rpms/olpc-contents/F-11 olpc-contents.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717164428.BE9E811C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-contents/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16689 Modified Files: .cvsignore sources Added Files: olpc-contents.spec Log Message: import v2.6 --- NEW FILE olpc-contents.spec --- Name: olpc-contents Version: 2.6 Release: 1%{?dist} Summary: OLPC contents manifest tools License: GPLv2+ and Public Domain Group: System Environment/Base URL: http://dev.laptop.org/git/users/cscott/olpc-contents Source0: http://dev.laptop.org/~dsd/olpc-contents/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, Pyrex, libicu-devel Requires: bitfrost %description The olpc-contents utilities allow creation and verification of manifest files describing directory trees. The olpc-update utility uses this to verify a downloaded update before it is installed. %prep %setup -q %build make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 olpc-contents-create olpc-contents-clean olpc-contents-hash $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 fv $RPM_BUILD_ROOT/%{_sbindir}/olpc-contents-verify %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_sbindir}/olpc-contents-create %{_sbindir}/olpc-contents-clean %{_sbindir}/olpc-contents-hash %{_sbindir}/olpc-contents-verify %changelog * Wed Jul 15 2009 Daniel Drake - 2.6-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-contents/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:35:04 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:43:58 -0000 1.2 @@ -0,0 +1 @@ +olpc-contents-2.6.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-contents/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:35:04 -0000 1.1 +++ sources 17 Jul 2009 16:43:58 -0000 1.2 @@ -0,0 +1 @@ +91fae621f89a839e8bbb074a7f53316c olpc-contents-2.6.tar.bz2 From dsd at fedoraproject.org Fri Jul 17 16:45:47 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:45:47 +0000 (UTC) Subject: rpms/dracut-modules-olpc/F-11 dracut-modules-olpc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717164547.58B0911C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/dracut-modules-olpc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16983 Modified Files: .cvsignore sources Added Files: dracut-modules-olpc.spec Log Message: import v0.2.1 --- NEW FILE dracut-modules-olpc.spec --- Name: dracut-modules-olpc Version: 0.2.1 Release: 1%{?dist} Summary: OLPC modules for dracut initramfs Group: System Environment/Base License: GPLv2 URL: http://dev.laptop.org/git/users/dsd/dracut-modules-olpc Source0: http://dev.laptop.org/~dsd/dracut-modules-olpc/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: Pyrex, zlib-devel, python-devel, netpbm-progs Requires: dracut, bitfrost %description Dracut initramfs modules to implement OLPC-specific features, including antitheft, switching between OS updates, and the OLPC boot animation. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_datadir}/dracut/modules.d/30olpc-boot %{_libdir}/dracut-modules-olpc %changelog * Wed Jul 15 2009 Daniel Drake - 0.2.1-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut-modules-olpc/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:35:31 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:45:17 -0000 1.2 @@ -0,0 +1 @@ +dracut-modules-olpc-0.2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut-modules-olpc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:35:31 -0000 1.1 +++ sources 17 Jul 2009 16:45:17 -0000 1.2 @@ -0,0 +1 @@ +f57a07be5dfce912a7058be7ba6cec30 dracut-modules-olpc-0.2.1.tar.bz2 From hadess at fedoraproject.org Fri Jul 17 16:50:43 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 16:50:43 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.20,1.21 Message-ID: <20090717165043.4014D11C00E4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18295 Modified Files: clutter.spec Log Message: Fix GI BR Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- clutter.spec 17 Jul 2009 16:40:00 -0000 1.20 +++ clutter.spec 17 Jul 2009 16:50:42 -0000 1.21 @@ -13,7 +13,7 @@ Requires: gobject-introspection BuildRequires: glib2-devel mesa-libGL-devel gtk2-devel pkgconfig pango-devel BuildRequires: libXdamage-devel gettext gtk-doc -BuildRequires: gobject-introspection >= 0.6.3 +BuildRequires: gobject-introspection-devel >= 0.6.3 %description Clutter is an open source software library for creating fast, From dsd at fedoraproject.org Fri Jul 17 16:54:28 2009 From: dsd at fedoraproject.org (Daniel Drake) Date: Fri, 17 Jul 2009 16:54:28 +0000 (UTC) Subject: rpms/olpc-update/F-11 olpc-update.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717165428.970FD11C00D3@cvs1.fedora.phx.redhat.com> Author: dsd Update of /cvs/pkgs/rpms/olpc-update/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19038 Modified Files: .cvsignore sources Added Files: olpc-update.spec Log Message: import v2.19 --- NEW FILE olpc-update.spec --- Name: olpc-update Version: 2.19 Release: 1%{?dist} Summary: OLPC system update tools Group: System Environment/Base License: GPLv2+ URL: http://dev.laptop.org/git/projects/olpc-update Source0: http://dev.laptop.org/~dsd/olpc-update/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: bitfrost, olpc-contents, NetworkManager, cronie BuildRequires: python-devel %description The OLPC update utilities handle the automatic or manual update of system files on an XO laptop. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/NetworkManager/dispatcher.d %{__install} -m 755 olpc-update-query olpc-update $RPM_BUILD_ROOT/%{_sbindir} %{__install} -m 755 irsync $RPM_BUILD_ROOT/%{_sbindir}/olpc-incr-rsync %{__install} -m 644 crontab-entry $RPM_BUILD_ROOT/%{_sysconfdir}/cron.d/olpc-update-query %{__install} -m 755 olpc-update-ifup $RPM_BUILD_ROOT/%{_sysconfdir}/NetworkManager/dispatcher.d/olpc-update-ifup %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING %{_sbindir}/olpc-update-query %{_sbindir}/olpc-update %{_sbindir}/olpc-incr-rsync %{_sysconfdir}/cron.d/olpc-update-query %{_sysconfdir}/NetworkManager/dispatcher.d/olpc-update-ifup %changelog * Thu Jul 16 2009 Daniel Drake - 2.19-1 - Initial import Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-update/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:36:32 -0000 1.1 +++ .cvsignore 17 Jul 2009 16:53:58 -0000 1.2 @@ -0,0 +1 @@ +olpc-update-2.19.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-update/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:36:32 -0000 1.1 +++ sources 17 Jul 2009 16:53:58 -0000 1.2 @@ -0,0 +1 @@ +06c5cc5166e6584b1898ebcee5f7983b olpc-update-2.19.tar.bz2 From ricky at fedoraproject.org Fri Jul 17 16:54:52 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 16:54:52 +0000 (UTC) Subject: rpms/python-fedora/devel testfile,NONE,1.1 Message-ID: <20090717165452.22D0411C00D3@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19224 Added Files: testfile Log Message: test file --- NEW FILE testfile --- # Top level Makefile for module python-fedora all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From ricky at fedoraproject.org Fri Jul 17 17:00:18 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Fri, 17 Jul 2009 17:00:18 +0000 (UTC) Subject: rpms/python-fedora/devel testfile,1.1,NONE Message-ID: <20090717170018.F0CB311C00D6@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20947 Removed Files: testfile Log Message: remove test file --- testfile DELETED --- From hadess at fedoraproject.org Fri Jul 17 17:14:44 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 17:14:44 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.21,1.22 Message-ID: <20090717171444.CDE2F11C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23169 Modified Files: clutter.spec Log Message: Fix more missing Requires and BRs Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- clutter.spec 17 Jul 2009 16:50:42 -0000 1.21 +++ clutter.spec 17 Jul 2009 17:14:14 -0000 1.22 @@ -9,11 +9,15 @@ URL: http://www.clutter-proje Source0: http://www.clutter-project.org/sources/%{name}/0.9/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: gobject-introspection +Requires: gobject-introspection +# FIXME to remove when all the bits have been merged into their +# libraries +Requires: gir-repository-devel BuildRequires: glib2-devel mesa-libGL-devel gtk2-devel pkgconfig pango-devel BuildRequires: libXdamage-devel gettext gtk-doc BuildRequires: gobject-introspection-devel >= 0.6.3 +BuildRequires: gir-repository-devel %description Clutter is an open source software library for creating fast, From rmeggins at fedoraproject.org Fri Jul 17 17:15:00 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 17:15:00 +0000 (UTC) Subject: rpms/389-admin-console/devel 389-admin-console.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717171500.9D64011C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23250/devel Modified Files: .cvsignore sources Added Files: 389-admin-console.spec import.log Log Message: Initial commit --- NEW FILE 389-admin-console.spec --- %define major_version 1.1 %define minor_version 4 %define shortname 389-admin %define pkgname dirsrv Name: 389-admin-console Version: %{major_version}.%{minor_version} Release: 1%{?dist} Summary: 389 Admin Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-admin-console = %{version}-%{release} Obsoletes: fedora-ds-admin-console < 1.1.4-1 %description A Java based remote management console used for Managing 389 Admin Server. Requires the 389 Console to load and run the jar files. %package doc Summary: Web docs for 389 Admin Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Admin Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/admin %doc %{_datadir}/%{pkgname}/manual/en/admin/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/admin/*.html %doc %{_datadir}/%{pkgname}/manual/en/admin/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.1.4-1 - relicense source files under GPLv2 - create doc sub package * Fri May 15 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - disable SSLv2 settings * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - rename package to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson - 1.1.0-4 - This is for the Fedora DS 1.1 release * Thu Oct 25 2007 Rich Megginson - 1.1.0-3 - updated sources - use dirsrv as package name * Wed Aug 8 2007 Nathan Kinder 1.1.0-2 - Added online help files into package. * Thu Aug 2 2007 Nathan Kinder 1.1.0-1 - Initial creation --- NEW FILE import.log --- 89-admin-console-1_1_4-1:HEAD:389-admin-console-1.1.4-1.src.rpm:1247850936 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:37:19 -0000 1.1 +++ .cvsignore 17 Jul 2009 17:14:30 -0000 1.2 @@ -0,0 +1 @@ +389-admin-console-1.1.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:37:19 -0000 1.1 +++ sources 17 Jul 2009 17:14:30 -0000 1.2 @@ -0,0 +1 @@ +55c661be949c27b9ff2f754abbc2607f 389-admin-console-1.1.4.tar.bz2 From hadess at fedoraproject.org Fri Jul 17 17:22:41 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 17:22:41 +0000 (UTC) Subject: rpms/clutter/devel .cvsignore, 1.15, 1.16 clutter.spec, 1.22, 1.23 sources, 1.15, 1.16 Message-ID: <20090717172241.8AFF311C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25148 Modified Files: .cvsignore clutter.spec sources Log Message: * Fri Jul 17 2009 Bastien Nocera 0.9.8-1 - Update to 0.9.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 10 Jul 2009 13:17:46 -0000 1.15 +++ .cvsignore 17 Jul 2009 17:22:11 -0000 1.16 @@ -1 +1 @@ -clutter-0.9.6.tar.bz2 +clutter-0.9.8.tar.bz2 Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- clutter.spec 17 Jul 2009 17:14:14 -0000 1.22 +++ clutter.spec 17 Jul 2009 17:22:11 -0000 1.23 @@ -1,6 +1,6 @@ Name: clutter -Version: 0.9.6 -Release: 2%{?dist} +Version: 0.9.8 +Release: 1%{?dist} Summary: Open Source software library for creating rich graphical user interfaces Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Bastien Nocera 0.9.8-1 +- Update to 0.9.8 + * Fri Jul 17 2009 Bastien Nocera 0.9.6-2 - Patch from Owen Taylor to add gobject- introspection support to clutter (#512260) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 10 Jul 2009 13:17:46 -0000 1.15 +++ sources 17 Jul 2009 17:22:11 -0000 1.16 @@ -1 +1 @@ -30653168bca6d36a560562e14867b804 clutter-0.9.6.tar.bz2 +068af064ac5e3dd69628c24962bbe125 clutter-0.9.8.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 17:24:20 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 17:24:20 +0000 (UTC) Subject: rpms/389-admin-console/F-10 389-admin-console.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717172420.7341411C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin-console/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25534/F-10 Modified Files: .cvsignore sources Added Files: 389-admin-console.spec Log Message: initial commit for all branches --- NEW FILE 389-admin-console.spec --- %define major_version 1.1 %define minor_version 4 %define shortname 389-admin %define pkgname dirsrv Name: 389-admin-console Version: %{major_version}.%{minor_version} Release: 1%{?dist} Summary: 389 Admin Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-admin-console = %{version}-%{release} Obsoletes: fedora-ds-admin-console < 1.1.4-1 %description A Java based remote management console used for Managing 389 Admin Server. Requires the 389 Console to load and run the jar files. %package doc Summary: Web docs for 389 Admin Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Admin Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/admin %doc %{_datadir}/%{pkgname}/manual/en/admin/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/admin/*.html %doc %{_datadir}/%{pkgname}/manual/en/admin/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.1.4-1 - relicense source files under GPLv2 - create doc sub package * Fri May 15 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - disable SSLv2 settings * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - rename package to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson - 1.1.0-4 - This is for the Fedora DS 1.1 release * Thu Oct 25 2007 Rich Megginson - 1.1.0-3 - updated sources - use dirsrv as package name * Wed Aug 8 2007 Nathan Kinder 1.1.0-2 - Added online help files into package. * Thu Aug 2 2007 Nathan Kinder 1.1.0-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:37:19 -0000 1.1 +++ .cvsignore 17 Jul 2009 17:23:50 -0000 1.2 @@ -0,0 +1 @@ +389-admin-console-1.1.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:37:19 -0000 1.1 +++ sources 17 Jul 2009 17:23:50 -0000 1.2 @@ -0,0 +1 @@ +55c661be949c27b9ff2f754abbc2607f 389-admin-console-1.1.4.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 17:24:20 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 17:24:20 +0000 (UTC) Subject: rpms/389-admin-console/F-11 389-admin-console.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717172420.ADA2F11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin-console/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25534/F-11 Modified Files: .cvsignore sources Added Files: 389-admin-console.spec Log Message: initial commit for all branches --- NEW FILE 389-admin-console.spec --- %define major_version 1.1 %define minor_version 4 %define shortname 389-admin %define pkgname dirsrv Name: 389-admin-console Version: %{major_version}.%{minor_version} Release: 1%{?dist} Summary: 389 Admin Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-admin-console = %{version}-%{release} Obsoletes: fedora-ds-admin-console < 1.1.4-1 %description A Java based remote management console used for Managing 389 Admin Server. Requires the 389 Console to load and run the jar files. %package doc Summary: Web docs for 389 Admin Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Admin Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/admin/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/admin %doc %{_datadir}/%{pkgname}/manual/en/admin/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/admin/*.html %doc %{_datadir}/%{pkgname}/manual/en/admin/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.1.4-1 - relicense source files under GPLv2 - create doc sub package * Fri May 15 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - disable SSLv2 settings * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - rename package to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson - 1.1.0-4 - This is for the Fedora DS 1.1 release * Thu Oct 25 2007 Rich Megginson - 1.1.0-3 - updated sources - use dirsrv as package name * Wed Aug 8 2007 Nathan Kinder 1.1.0-2 - Added online help files into package. * Thu Aug 2 2007 Nathan Kinder 1.1.0-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:37:19 -0000 1.1 +++ .cvsignore 17 Jul 2009 17:23:50 -0000 1.2 @@ -0,0 +1 @@ +389-admin-console-1.1.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin-console/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:37:19 -0000 1.1 +++ sources 17 Jul 2009 17:23:50 -0000 1.2 @@ -0,0 +1 @@ +55c661be949c27b9ff2f754abbc2607f 389-admin-console-1.1.4.tar.bz2 From mbarnes at fedoraproject.org Fri Jul 17 17:39:31 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 17 Jul 2009 17:39:31 +0000 (UTC) Subject: rpms/gnome-python2-extras/devel gnome-python2-extras.spec, 1.53, 1.54 Message-ID: <20090717173931.1816A11C00D3@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/gnome-python2-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28966 Modified Files: gnome-python2-extras.spec Log Message: * Fri Jul 17 2009 Matthew Barnes - 2.25.3-6 - Rebuild against newer gecko. Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/devel/gnome-python2-extras.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- gnome-python2-extras.spec 12 Jul 2009 11:53:17 -0000 1.53 +++ gnome-python2-extras.spec 17 Jul 2009 17:39:00 -0000 1.54 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.25.3 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: Additional PyGNOME Python extension modules @@ -186,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-4.0.pc %changelog +* Fri Jul 17 2009 Matthew Barnes - 2.25.3-6 +- Rebuild against newer gecko. + * Sun Jul 12 2009 Matthew Barnes - 2.25.3-5 - Add patch for GNOME bug #584126 (gdl API break). From cheese at fedoraproject.org Fri Jul 17 17:43:47 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 17:43:47 +0000 (UTC) Subject: rpms/teg/devel teg-fix-help.patch,NONE,1.1 teg.spec,1.11,1.12 Message-ID: <20090717174347.BB74F11C00D3@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29835 Modified Files: teg.spec Added Files: teg-fix-help.patch Log Message: fix help teg-fix-help.patch: teg.sgml | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) --- NEW FILE teg-fix-help.patch --- --- teg-0.11.2/docs/gnome-help/C/teg.sgml.orig 2009-07-11 18:26:01.000000000 +0200 +++ teg-0.11.2/docs/gnome-help/C/teg.sgml 2009-07-11 18:53:07.000000000 +0200 @@ -1,13 +1,12 @@ - + + ]>
- + Tenes Empanadas Graciela Manual 2002 @@ -61,12 +60,11 @@ This is version 1.0 of the TEG manual. - - + Introduction Tenes Empandas Graciela (TEG), is a clone of an Argentinian game - called 'Plan T???ctico y Estr???tegico de la Guerra', a + called 'Plan T??ctico y Estr??tegico de la Guerra', a modified clone of the turn based strategy game 'Risk'. It is a multi-player game that can be played across the Internet. @@ -366,17 +364,17 @@ So I'm not sure about the differences between both games. If you notice them, please tell me. So far, here is what some TEG players told me: - TEG vs. Risk +
TEG vs. Risk - - - - + + + + - Topic - TEG - Risk + Topic + TEG + Risk @@ -412,11 +410,15 @@ - If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net + If you notice any other differences, mail it to the list teg-list at lists.sourceforge.net Remember that I don't know the Risk rules! + + + +
@@ -442,7 +444,7 @@ Brief history of TEG - Sebasti???n Cativa Tolosa, once told me to do this game. I think that + Sebasti??n Cativa Tolosa, once told me to do this game. I think that was in 1996, in a chat we were having in the University. Well, we started to think the game. But I don't know why, the project died after 3 or 4 months. In 1998, the project was reactivated, but after 2 weeks it died again :(. Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/devel/teg.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- teg.spec 25 Feb 2009 19:32:00 -0000 1.11 +++ teg.spec 17 Jul 2009 17:43:17 -0000 1.12 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 17%{?dist} +Release: 19%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -9,6 +9,8 @@ Source0: http://downloads.sourcef Source1: fedora-teg.desktop Patch0: teg_libxml.patch #Patch1: teg_themes.patch +#Patch2: teg-disable-help.patch +Source2: teg-fix-help.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tidy pkgconfig glib2-devel libxml2-devel libgnomeui-devel @@ -26,7 +28,7 @@ Guerra, a turn based strategy game. Some %prep %setup -q %patch0 -p1 -#%patch1 -p1 +#%patch2 -p1 for file in AUTHORS COPYING README TODO PEOPLE ChangeLog; do iconv -f iso8859-1 -t utf-8 < $file > $file.$$ mv -f $file.$$ $file @@ -46,6 +48,8 @@ mv -f $RPM_BUILD_ROOT/%{_datadir}/pixmap rm -rf $RPM_BUILD_ROOT/%{_datadir}/gnome/apps/Games/teg.desktop desktop-file-install --vendor="fedora" \ --dir=$RPM_BUILD_ROOT/%{_datadir}/applications %{SOURCE1} +patch -p1 < %{SOURCE2} +mv -f $RPM_BUILD_DIR/%{?buildsubdir}/docs/gnome-help/C/teg.sgml $RPM_BUILD_ROOT/%{_datadir}/gnome/help/teg/C/teg.xml %find_lang %{name} @@ -76,7 +80,7 @@ if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/teg.schemas > /dev/null || : -fi +fi %post export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -93,9 +97,15 @@ if [ -x %{_bindir}/gtk-update-icon-cache %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi - - %changelog +* Sat Jul 11 2009 josef radinger +- 0.11.2-19 +- fix and reenable help + +* Sat Jun 27 2009 josef radinger +- 0.11.2-18 +- disable help + * Wed Feb 25 2009 Fedora Release Engineering - 0.11.2-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From hadess at fedoraproject.org Fri Jul 17 17:50:27 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 17:50:27 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.23,1.24 Message-ID: <20090717175027.A520911C00E4@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30874 Modified Files: clutter.spec Log Message: Try working around missing ClutterJson-0.9.gir Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- clutter.spec 17 Jul 2009 17:22:11 -0000 1.23 +++ clutter.spec 17 Jul 2009 17:49:57 -0000 1.24 @@ -57,7 +57,7 @@ This package contains documentation for %build %configure --enable-gtk-doc --enable-introspection -make %{?_smp_mflags} +make %{?_smp_mflags} XDG_DATA_DIRS=`pwd`/clutter/json %install rm -rf $RPM_BUILD_ROOT From hadess at fedoraproject.org Fri Jul 17 17:56:35 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 17:56:35 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.24,1.25 Message-ID: <20090717175635.32EB311C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32058 Modified Files: clutter.spec Log Message: Disable parallel make so it builds Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- clutter.spec 17 Jul 2009 17:49:57 -0000 1.24 +++ clutter.spec 17 Jul 2009 17:56:04 -0000 1.25 @@ -57,7 +57,9 @@ This package contains documentation for %build %configure --enable-gtk-doc --enable-introspection -make %{?_smp_mflags} XDG_DATA_DIRS=`pwd`/clutter/json +make +# FIXME parallel make is disabled for now +#make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT From ndim at fedoraproject.org Fri Jul 17 17:58:25 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Fri, 17 Jul 2009 17:58:25 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/F-11 .cvsignore, 1.47, 1.48 sources, 1.47, 1.48 xorg-x11-drv-radeonhd-README.fedora, 1.47, 1.48 xorg-x11-drv-radeonhd.spec, 1.60, 1.61 Message-ID: <20090717175825.AE98311C00D3@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32480 Modified Files: .cvsignore sources xorg-x11-drv-radeonhd-README.fedora xorg-x11-drv-radeonhd.spec Log Message: * Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git - compile with DRI support again (add mesa-libGL-devel build requirement) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-11/.cvsignore,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- .cvsignore 11 Apr 2009 14:17:13 -0000 1.47 +++ .cvsignore 17 Jul 2009 17:57:55 -0000 1.48 @@ -1 +1 @@ -xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-11/sources,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sources 11 Apr 2009 14:17:13 -0000 1.47 +++ sources 17 Jul 2009 17:57:55 -0000 1.48 @@ -1 +1 @@ -7ca12bf3def9a3e0353563ad3ca177f5 xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +b66f7e157e5ab5404e62f69184b9d3c5 xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: xorg-x11-drv-radeonhd-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-11/xorg-x11-drv-radeonhd-README.fedora,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- xorg-x11-drv-radeonhd-README.fedora 11 Apr 2009 14:17:14 -0000 1.47 +++ xorg-x11-drv-radeonhd-README.fedora 17 Jul 2009 17:57:55 -0000 1.48 @@ -11,7 +11,7 @@ quickly (and releases happen too infrequ package tarball releases. For this reason, we are packaging selected snapshots of upstream's git repository here. -Latest upstream commit: cb54f48b212d5ae54e13bbdf24575b6163798c0d +Latest upstream commit: bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 Contents Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-11/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- xorg-x11-drv-radeonhd.spec 11 Apr 2009 14:17:14 -0000 1.60 +++ xorg-x11-drv-radeonhd.spec 17 Jul 2009 17:57:55 -0000 1.61 @@ -20,8 +20,8 @@ %endif %if %{snapshot} -%define date 20090411 -%define git_commit cb54f48b212d5ae54e13bbdf24575b6163798c0d +%define date 20090714 +%define git_commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 %define alphatag .%{date}git %define tarball %{tarname}-%{version}-%{date}git %define ship_utils 1 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 2.8%{?alphatag}%{?dist} +Release: 2.10%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -97,6 +97,7 @@ Requires: xorg-x11-server-Xorg < 1.4.99. # DRI support BuildRequires: libdrm-devel BuildRequires: xorg-x11-proto-devel +BuildRequires: mesa-libGL-devel %description X.org X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets. @@ -164,6 +165,17 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git +- compile with DRI support again (add mesa-libGL-devel build requirement) + +* Tue Jul 14 2009 Hans Ulrich Niedermann - 1.2.5-2.9.20090714git +- New snapshot (upstream commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83): + For details, run git log. Short summary: + - Build fixes + - initial power management support + - man page improvements + - misc bugs fixes + * Sat Apr 11 2009 Hans Ulrich Niedermann - 1.2.5-2.8.20090411git - Updated README.fedora with new feature set (2D+XVideo on R[67]xx) - This snapshot is the 1.2.5 release. From cheese at fedoraproject.org Fri Jul 17 17:58:51 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 17:58:51 +0000 (UTC) Subject: rpms/teg/devel teg.spec,1.12,1.13 Message-ID: <20090717175851.5A8B411C00D3@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32237 Modified Files: teg.spec Log Message: fix help Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/devel/teg.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- teg.spec 17 Jul 2009 17:43:17 -0000 1.12 +++ teg.spec 17 Jul 2009 17:58:21 -0000 1.13 @@ -100,7 +100,7 @@ fi %changelog * Sat Jul 11 2009 josef radinger - 0.11.2-19 -- fix and reenable help +- fix and reenable help * Sat Jun 27 2009 josef radinger - 0.11.2-18 From cheese at fedoraproject.org Fri Jul 17 18:01:42 2009 From: cheese at fedoraproject.org (cheese) Date: Fri, 17 Jul 2009 18:01:42 +0000 (UTC) Subject: rpms/teg/devel teg.spec,1.13,1.14 Message-ID: <20090717180142.B27DE11C00D3@cvs1.fedora.phx.redhat.com> Author: cheese Update of /cvs/pkgs/rpms/teg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1821 Modified Files: teg.spec Log Message: new tag Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/devel/teg.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- teg.spec 17 Jul 2009 17:58:21 -0000 1.13 +++ teg.spec 17 Jul 2009 18:01:12 -0000 1.14 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -98,9 +98,13 @@ if [ -x %{_bindir}/gtk-update-icon-cache fi %changelog +* Sat Jul 17 2009 josef radinger +- 0.11.2-20 +- fix and reenable help + * Sat Jul 11 2009 josef radinger - 0.11.2-19 -- fix and reenable help +- fix and reenable help * Sat Jun 27 2009 josef radinger - 0.11.2-18 From ndim at fedoraproject.org Fri Jul 17 18:06:32 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Fri, 17 Jul 2009 18:06:32 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/F-10 .cvsignore, 1.45, 1.46 sources, 1.45, 1.46 xorg-x11-drv-radeonhd-README.fedora, 1.44, 1.45 xorg-x11-drv-radeonhd.spec, 1.56, 1.57 Message-ID: <20090717180632.B0EA811C00D3@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3111 Modified Files: .cvsignore sources xorg-x11-drv-radeonhd-README.fedora xorg-x11-drv-radeonhd.spec Log Message: * Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git - compile with DRI support again (add mesa-libGL-devel build requirement) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-10/.cvsignore,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- .cvsignore 11 Apr 2009 14:33:08 -0000 1.45 +++ .cvsignore 17 Jul 2009 18:06:02 -0000 1.46 @@ -1 +1 @@ -xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-10/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 11 Apr 2009 14:33:08 -0000 1.45 +++ sources 17 Jul 2009 18:06:02 -0000 1.46 @@ -1 +1 @@ -7ca12bf3def9a3e0353563ad3ca177f5 xf86-video-radeonhd-1.2.5-20090411git.tar.lzma +b66f7e157e5ab5404e62f69184b9d3c5 xf86-video-radeonhd-1.2.5-20090714git.tar.lzma Index: xorg-x11-drv-radeonhd-README.fedora =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-10/xorg-x11-drv-radeonhd-README.fedora,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xorg-x11-drv-radeonhd-README.fedora 11 Apr 2009 14:33:08 -0000 1.44 +++ xorg-x11-drv-radeonhd-README.fedora 17 Jul 2009 18:06:02 -0000 1.45 @@ -11,7 +11,7 @@ quickly (and releases happen too infrequ package tarball releases. For this reason, we are packaging selected snapshots of upstream's git repository here. -Latest upstream commit: cb54f48b212d5ae54e13bbdf24575b6163798c0d +Latest upstream commit: bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 Contents Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/F-10/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- xorg-x11-drv-radeonhd.spec 11 Apr 2009 14:33:08 -0000 1.56 +++ xorg-x11-drv-radeonhd.spec 17 Jul 2009 18:06:02 -0000 1.57 @@ -20,8 +20,8 @@ %endif %if %{snapshot} -%define date 20090411 -%define git_commit cb54f48b212d5ae54e13bbdf24575b6163798c0d +%define date 20090714 +%define git_commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83 %define alphatag .%{date}git %define tarball %{tarname}-%{version}-%{date}git %define ship_utils 1 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 2.8%{?alphatag}%{?dist} +Release: 2.10%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -97,6 +97,7 @@ Requires: xorg-x11-server-Xorg < 1.4.99. # DRI support BuildRequires: libdrm-devel BuildRequires: xorg-x11-proto-devel +BuildRequires: mesa-libGL-devel %description X.org X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets. @@ -164,6 +165,17 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git +- compile with DRI support again (add mesa-libGL-devel build requirement) + +* Tue Jul 14 2009 Hans Ulrich Niedermann - 1.2.5-2.9.20090714git +- New snapshot (upstream commit bc42c63d0cf7756a9d31c16d68d1c33a9e225b83): + For details, run git log. Short summary: + - Build fixes + - initial power management support + - man page improvements + - misc bugs fixes + * Sat Apr 11 2009 Hans Ulrich Niedermann - 1.2.5-2.8.20090411git - Updated README.fedora with new feature set (2D+XVideo on R[67]xx) - This snapshot is the 1.2.5 release. From pkgdb at fedoraproject.org Fri Jul 17 18:11:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:11:29 +0000 Subject: [pkgdb] xz was added for jnovy Message-ID: <20090717181129.9FD7E10F89C@bastion2.fedora.phx.redhat.com> tibbs has added Package xz with summary LZMA compression utilities tibbs has approved Package xz tibbs has added a Fedora devel branch for xz with an owner of jnovy tibbs has approved xz in Fedora devel tibbs has approved Package xz tibbs has set commit to Approved for 107427 on xz (Fedora devel) tibbs has set checkout to Approved for 107427 on xz (Fedora devel) tibbs has set build to Approved for 107427 on xz (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Fri Jul 17 18:11:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:11:31 +0000 Subject: [pkgdb] xz summary updated by tibbs Message-ID: <20090717181131.D667710F8A6@bastion2.fedora.phx.redhat.com> tibbs set package xz summary to LZMA compression utilities To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Fri Jul 17 18:11:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:11:31 +0000 Subject: [pkgdb] xz (Fedora, 10) updated by tibbs Message-ID: <20090717181131.E26CE10F8AC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for xz tibbs has set commit to Approved for 107427 on xz (Fedora 10) tibbs has set checkout to Approved for 107427 on xz (Fedora 10) tibbs has set build to Approved for 107427 on xz (Fedora 10) tibbs approved watchbugzilla on xz (Fedora 10) for notting tibbs approved watchcommits on xz (Fedora 10) for notting tibbs approved commit on xz (Fedora 10) for notting tibbs approved build on xz (Fedora 10) for notting tibbs approved approveacls on xz (Fedora 10) for notting To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Fri Jul 17 18:11:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:11:31 +0000 Subject: [pkgdb] xz (Fedora, 10) updated by tibbs Message-ID: <20090717181131.F183310F8B0@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on xz (Fedora devel) for notting tibbs approved watchcommits on xz (Fedora devel) for notting tibbs approved commit on xz (Fedora devel) for notting tibbs approved build on xz (Fedora devel) for notting tibbs approved approveacls on xz (Fedora devel) for notting To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Fri Jul 17 18:11:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:11:31 +0000 Subject: [pkgdb] xz (Fedora, 10) updated by tibbs Message-ID: <20090717181132.03F1910F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for xz tibbs has set commit to Approved for 107427 on xz (Fedora 11) tibbs has set checkout to Approved for 107427 on xz (Fedora 11) tibbs has set build to Approved for 107427 on xz (Fedora 11) tibbs approved watchbugzilla on xz (Fedora 11) for notting tibbs approved watchcommits on xz (Fedora 11) for notting tibbs approved commit on xz (Fedora 11) for notting tibbs approved build on xz (Fedora 11) for notting tibbs approved approveacls on xz (Fedora 11) for notting To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From tibbs at fedoraproject.org Fri Jul 17 18:11:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 18:11:38 +0000 (UTC) Subject: rpms/xz - New directory Message-ID: <20090717181138.3D0ED11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xz In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvskT4546/rpms/xz Log Message: Directory /cvs/pkgs/rpms/xz added to the repository From tibbs at fedoraproject.org Fri Jul 17 18:11:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 18:11:38 +0000 (UTC) Subject: rpms/xz/devel - New directory Message-ID: <20090717181138.516CC11C00D7@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xz/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvskT4546/rpms/xz/devel Log Message: Directory /cvs/pkgs/rpms/xz/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 18:11:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 18:11:44 +0000 (UTC) Subject: rpms/xz Makefile,NONE,1.1 Message-ID: <20090717181144.3558A11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xz In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvskT4546/rpms/xz Added Files: Makefile Log Message: Setup of module xz --- NEW FILE Makefile --- # Top level Makefile for module xz all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 18:11:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 18:11:44 +0000 (UTC) Subject: rpms/xz/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717181144.9371E11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/xz/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvskT4546/rpms/xz/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module xz --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: xz # $Id: Makefile,v 1.1 2009/07/17 18:11:44 tibbs Exp $ NAME := xz SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From notting at fedoraproject.org Fri Jul 17 18:19:56 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 18:19:56 +0000 (UTC) Subject: rpms/xz/devel import.log, NONE, 1.1 xz.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717181956.1A9ED11C00D3@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/xz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6784/devel Modified Files: .cvsignore sources Added Files: import.log xz.spec Log Message: Initial import of xz. --- NEW FILE import.log --- xz-4_999_8-0_7_beta_fc11:HEAD:xz-4.999.8-0.7.beta.fc11.src.rpm:1247854742 --- NEW FILE xz.spec --- Summary: LZMA compression utilities Name: xz Version: 4.999.8 Release: 0.7.beta%{?dist} License: LGPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}beta.tar.gz URL: http://tukaani.org/%{name}/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} %description XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast. %package libs Summary: Libraries for decoding LZMA compression Group: System Environment/Libraries License: LGPLv2+ %description libs Libraries for decoding files compressed with LZMA or XZ utils. %package devel Summary: Devel libraries & headers for liblzma Group: Development/Libraries License: LGPLv2+ Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel Devel libraries and headers for liblzma. %package lzma-compat Summary: Older LZMA format compatibility binaries Group: Development/Libraries # lz{grep,diff,more} are GPLv2+. Other binaries are LGPLv2+ License: GPLv2+ and LGPLv2+ Requires: %{name} = %{version}-%{release} Obsoletes: lzma < 5 Provides: lzma = 5 %description lzma-compat The lzma-compat package contains compatibility links for older commands that deal with the older LZMA format. %prep %setup -q -n %{name}-%{version}beta %build CFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ CXXFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ %configure --disable-static sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.a rm -f %{buildroot}/%{_libdir}/*.la %check LD_LIBRARY_PATH=$PWD/src/liblzma/.libs make check %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS README THANKS COPYING.* ChangeLog %{_bindir}/*xz* %files libs %defattr(-,root,root,-) %doc COPYING.* %{_libdir}/lib*.so.* %files devel %defattr(-,root,root,-) %dir %{_includedir}/lzma %{_includedir}/lzma/*.h %{_includedir}/lzma.h %{_libdir}/*.so %{_libdir}/pkgconfig/liblzma.pc %files lzma-compat %defattr(-,root,root,-) %{_bindir}/*lz* %{_mandir}/man1/* %changelog * Fri Jul 17 2009 Bill Nottingham 4.999.8-0.7.beta - tweak summary - add %%check section () * Thu Jul 09 2009 Bill Nottingham 4.999.8-0.6.beta - fix release versioning to match guidelines - fix up lzma-compat summary/description - tweak licensing * Mon Jun 22 2009 Jindrich Novy 4.999.8beta-0.5 - introduce lzma-compat subpackage * Fri Jun 19 2009 Jindrich Novy 4.999.8beta-0.4 - try to not to conflict with lzma * Thu Jun 18 2009 Jindrich Novy 4.999.8beta-0.3 - obsolete but don't provide lzma, they are largely incompatible - put beta to Release * Wed Jun 17 2009 Jindrich Novy 4.999.8beta-0.2 - obsolete old lzma - add Requires: pkgconfig * Tue Jun 16 2009 Jindrich Novy 4.999.8beta-0.1 - package XZ Utils, based on LZMA Utils packaged by Per Patrice Bouchand Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/xz/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 18:11:44 -0000 1.1 +++ .cvsignore 17 Jul 2009 18:19:25 -0000 1.2 @@ -0,0 +1 @@ +xz-4.999.8beta.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/xz/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 18:11:44 -0000 1.1 +++ sources 17 Jul 2009 18:19:25 -0000 1.2 @@ -0,0 +1 @@ +f00967331a487e88d51207fe17c56f52 xz-4.999.8beta.tar.gz From notting at fedoraproject.org Fri Jul 17 18:21:23 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 18:21:23 +0000 (UTC) Subject: rpms/xz/F-10 xz.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090717182123.57E6911C00D7@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/xz/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7148/F-10 Modified Files: .cvsignore sources Added Files: xz.spec Log Message: Sync with head, although not tagging/building for now. --- NEW FILE xz.spec --- Summary: LZMA compression utilities Name: xz Version: 4.999.8 Release: 0.7.beta%{?dist} License: LGPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}beta.tar.gz URL: http://tukaani.org/%{name}/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} %description XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast. %package libs Summary: Libraries for decoding LZMA compression Group: System Environment/Libraries License: LGPLv2+ %description libs Libraries for decoding files compressed with LZMA or XZ utils. %package devel Summary: Devel libraries & headers for liblzma Group: Development/Libraries License: LGPLv2+ Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel Devel libraries and headers for liblzma. %package lzma-compat Summary: Older LZMA format compatibility binaries Group: Development/Libraries # lz{grep,diff,more} are GPLv2+. Other binaries are LGPLv2+ License: GPLv2+ and LGPLv2+ Requires: %{name} = %{version}-%{release} Obsoletes: lzma < 5 Provides: lzma = 5 %description lzma-compat The lzma-compat package contains compatibility links for older commands that deal with the older LZMA format. %prep %setup -q -n %{name}-%{version}beta %build CFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ CXXFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ %configure --disable-static sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.a rm -f %{buildroot}/%{_libdir}/*.la %check LD_LIBRARY_PATH=$PWD/src/liblzma/.libs make check %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS README THANKS COPYING.* ChangeLog %{_bindir}/*xz* %files libs %defattr(-,root,root,-) %doc COPYING.* %{_libdir}/lib*.so.* %files devel %defattr(-,root,root,-) %dir %{_includedir}/lzma %{_includedir}/lzma/*.h %{_includedir}/lzma.h %{_libdir}/*.so %{_libdir}/pkgconfig/liblzma.pc %files lzma-compat %defattr(-,root,root,-) %{_bindir}/*lz* %{_mandir}/man1/* %changelog * Fri Jul 17 2009 Bill Nottingham 4.999.8-0.7.beta - tweak summary - add %%check section () * Thu Jul 09 2009 Bill Nottingham 4.999.8-0.6.beta - fix release versioning to match guidelines - fix up lzma-compat summary/description - tweak licensing * Mon Jun 22 2009 Jindrich Novy 4.999.8beta-0.5 - introduce lzma-compat subpackage * Fri Jun 19 2009 Jindrich Novy 4.999.8beta-0.4 - try to not to conflict with lzma * Thu Jun 18 2009 Jindrich Novy 4.999.8beta-0.3 - obsolete but don't provide lzma, they are largely incompatible - put beta to Release * Wed Jun 17 2009 Jindrich Novy 4.999.8beta-0.2 - obsolete old lzma - add Requires: pkgconfig * Tue Jun 16 2009 Jindrich Novy 4.999.8beta-0.1 - package XZ Utils, based on LZMA Utils packaged by Per Patrice Bouchand Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/xz/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 18:11:44 -0000 1.1 +++ .cvsignore 17 Jul 2009 18:20:53 -0000 1.2 @@ -0,0 +1 @@ +xz-4.999.8beta.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/xz/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 18:11:44 -0000 1.1 +++ sources 17 Jul 2009 18:20:53 -0000 1.2 @@ -0,0 +1 @@ +f00967331a487e88d51207fe17c56f52 xz-4.999.8beta.tar.gz From notting at fedoraproject.org Fri Jul 17 18:21:23 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 18:21:23 +0000 (UTC) Subject: rpms/xz/F-11 xz.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090717182123.ADDF411C00D3@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/xz/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7148/F-11 Modified Files: .cvsignore sources Added Files: xz.spec Log Message: Sync with head, although not tagging/building for now. --- NEW FILE xz.spec --- Summary: LZMA compression utilities Name: xz Version: 4.999.8 Release: 0.7.beta%{?dist} License: LGPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}beta.tar.gz URL: http://tukaani.org/%{name}/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} %description XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. LZMA is a general purpose compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast. %package libs Summary: Libraries for decoding LZMA compression Group: System Environment/Libraries License: LGPLv2+ %description libs Libraries for decoding files compressed with LZMA or XZ utils. %package devel Summary: Devel libraries & headers for liblzma Group: Development/Libraries License: LGPLv2+ Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel Devel libraries and headers for liblzma. %package lzma-compat Summary: Older LZMA format compatibility binaries Group: Development/Libraries # lz{grep,diff,more} are GPLv2+. Other binaries are LGPLv2+ License: GPLv2+ and LGPLv2+ Requires: %{name} = %{version}-%{release} Obsoletes: lzma < 5 Provides: lzma = 5 %description lzma-compat The lzma-compat package contains compatibility links for older commands that deal with the older LZMA format. %prep %setup -q -n %{name}-%{version}beta %build CFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ CXXFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \ %configure --disable-static sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="%{__install} -p" rm -f %{buildroot}/%{_libdir}/*.a rm -f %{buildroot}/%{_libdir}/*.la %check LD_LIBRARY_PATH=$PWD/src/liblzma/.libs make check %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS README THANKS COPYING.* ChangeLog %{_bindir}/*xz* %files libs %defattr(-,root,root,-) %doc COPYING.* %{_libdir}/lib*.so.* %files devel %defattr(-,root,root,-) %dir %{_includedir}/lzma %{_includedir}/lzma/*.h %{_includedir}/lzma.h %{_libdir}/*.so %{_libdir}/pkgconfig/liblzma.pc %files lzma-compat %defattr(-,root,root,-) %{_bindir}/*lz* %{_mandir}/man1/* %changelog * Fri Jul 17 2009 Bill Nottingham 4.999.8-0.7.beta - tweak summary - add %%check section () * Thu Jul 09 2009 Bill Nottingham 4.999.8-0.6.beta - fix release versioning to match guidelines - fix up lzma-compat summary/description - tweak licensing * Mon Jun 22 2009 Jindrich Novy 4.999.8beta-0.5 - introduce lzma-compat subpackage * Fri Jun 19 2009 Jindrich Novy 4.999.8beta-0.4 - try to not to conflict with lzma * Thu Jun 18 2009 Jindrich Novy 4.999.8beta-0.3 - obsolete but don't provide lzma, they are largely incompatible - put beta to Release * Wed Jun 17 2009 Jindrich Novy 4.999.8beta-0.2 - obsolete old lzma - add Requires: pkgconfig * Tue Jun 16 2009 Jindrich Novy 4.999.8beta-0.1 - package XZ Utils, based on LZMA Utils packaged by Per Patrice Bouchand Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/xz/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 18:11:44 -0000 1.1 +++ .cvsignore 17 Jul 2009 18:20:53 -0000 1.2 @@ -0,0 +1 @@ +xz-4.999.8beta.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/xz/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 18:11:44 -0000 1.1 +++ sources 17 Jul 2009 18:20:53 -0000 1.2 @@ -0,0 +1 @@ +f00967331a487e88d51207fe17c56f52 xz-4.999.8beta.tar.gz From kylev at fedoraproject.org Fri Jul 17 18:22:35 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Fri, 17 Jul 2009 18:22:35 +0000 (UTC) Subject: rpms/python-formencode/F-11 .cvsignore, 1.11, 1.12 python-formencode.spec, 1.25, 1.26 sources, 1.11, 1.12 Message-ID: <20090717182235.6986911C00D3@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-formencode/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7518 Modified Files: .cvsignore python-formencode.spec sources Log Message: Update to 1.2.2 (required for Pylons 0.9.7) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-formencode/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 7 Jan 2009 05:00:30 -0000 1.11 +++ .cvsignore 17 Jul 2009 18:22:05 -0000 1.12 @@ -1 +1 @@ -FormEncode-1.2.tar.gz +FormEncode-1.2.2.tar.gz Index: python-formencode.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-formencode/F-11/python-formencode.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- python-formencode.spec 26 Feb 2009 21:33:45 -0000 1.25 +++ python-formencode.spec 17 Jul 2009 18:22:05 -0000 1.26 @@ -4,8 +4,8 @@ %define srcname FormEncode Name: python-formencode -Version: 1.2 -Release: 2%{?dist} +Version: 1.2.2 +Release: 1%{?dist} Summary: HTML form validation, generation, and convertion package Group: Development/Libraries @@ -22,6 +22,12 @@ BuildRequires: python-setuptools-devel BuildRequires: python-docutils BuildRequires: python-nose +# ElementTree is part of python2.5 on FC7+ +# This is also needed for EL-5 +%if 0%{?fedora} <= 6 +BuildRequires: python-elementtree +Requires: python-elementtree +%endif %description FormEncode validates and converts nested structures. It allows for a @@ -74,6 +80,10 @@ PYTHONPATH=$(pwd) nosetests %{python_sitelib}/%{srcname}-%{version}-py%{pyver}.egg-info %changelog +* Sun May 31 2009 Luke Macken -1.2.2-1 +- Update to 1.2.2 +- Conditionalize python-elementtree requirement + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-formencode/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 7 Jan 2009 05:00:31 -0000 1.11 +++ sources 17 Jul 2009 18:22:05 -0000 1.12 @@ -1 +1 @@ -da9d30ad0115ed8de86dc3b796899b41 FormEncode-1.2.tar.gz +da23d54af521d1feab12b4caf30e3111 FormEncode-1.2.2.tar.gz From orion at fedoraproject.org Fri Jul 17 18:23:07 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Fri, 17 Jul 2009 18:23:07 +0000 (UTC) Subject: rpms/GMT/devel .cvsignore,1.4,1.5 GMT.spec,1.7,1.8 sources,1.4,1.5 Message-ID: <20090717182307.1BCF111C00D3@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/GMT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7662 Modified Files: .cvsignore GMT.spec sources Log Message: * Fri Jul 17 2009 Orion Poplawski 4.5.0-1 - Update to 4.5.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/GMT/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Feb 2009 20:15:53 -0000 1.4 +++ .cvsignore 17 Jul 2009 18:22:36 -0000 1.5 @@ -1,4 +1,4 @@ -GMT4.4.0_share.tar.bz2 -GMT4.4.0_src.tar.bz2 -GMT4.4.0_suppl.tar.bz2 -GMT4.4.0_doc.tar.bz2 +GMT4.5.0_doc.tar.bz2 +GMT4.5.0_share.tar.bz2 +GMT4.5.0_src.tar.bz2 +GMT4.5.0_suppl.tar.bz2 Index: GMT.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT/devel/GMT.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- GMT.spec 10 Apr 2009 18:01:03 -0000 1.7 +++ GMT.spec 17 Jul 2009 18:22:36 -0000 1.8 @@ -7,8 +7,8 @@ %define octave_octdir %(octave-config -p LOCALAPIOCTFILEDIR || echo) Name: GMT -Version: 4.4.0 -Release: 2%{?dist} +Version: 4.5.0 +Release: 1%{?dist} Summary: Generic Mapping Tools Group: Applications/Engineering @@ -235,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Orion Poplawski 4.5.0-1 +- Update to 4.5.0 + * Fri Apr 10 2009 Orion Poplawski 4.4.0-2 - Add --enable-debug to avoid stripping of -g from CFLAGS Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GMT/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 Feb 2009 20:15:54 -0000 1.4 +++ sources 17 Jul 2009 18:22:36 -0000 1.5 @@ -1,4 +1,4 @@ -e37256c2c0e710a207d3788a84795ad5 GMT4.4.0_share.tar.bz2 -e5aa473a2bb93001942730f3da7c915f GMT4.4.0_src.tar.bz2 -ca3c570645c4159a1f6c048ff8c2a7b1 GMT4.4.0_suppl.tar.bz2 -247e62f8468339b12d73f17dd5dbb0ad GMT4.4.0_doc.tar.bz2 +3185bda3a8245d58cadebe77ce8b6062 GMT4.5.0_doc.tar.bz2 +773a1e290e127e8de365ef33366d4247 GMT4.5.0_share.tar.bz2 +d24e5aad2f6461302ecfef94934f56c0 GMT4.5.0_src.tar.bz2 +b04baf4fc08a46ceeda4c0a5ae7dc8d7 GMT4.5.0_suppl.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 18:42:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:42:52 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090717184252.A49E010F890@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora devel is now owned by ndim To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Fri Jul 17 18:42:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:42:57 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090717184257.B5EEF10F899@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 11 is now owned by ndim To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Fri Jul 17 18:42:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:42:58 +0000 Subject: [pkgdb] id3v2 ownership updated Message-ID: <20090717184258.CC53710F89F@bastion2.fedora.phx.redhat.com> Package id3v2 in Fedora 10 is now owned by ndim To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/id3v2 From pkgdb at fedoraproject.org Fri Jul 17 18:57:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:16 +0000 Subject: [pkgdb] clutter: otaylor has requested watchbugzilla Message-ID: <20090717185717.09B6F10F898@bastion2.fedora.phx.redhat.com> otaylor has requested the watchbugzilla acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:20 +0000 Subject: [pkgdb] clutter: otaylor has requested commit Message-ID: <20090717185720.7ED9110F89F@bastion2.fedora.phx.redhat.com> otaylor has requested the commit acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:22 +0000 Subject: [pkgdb] clutter: otaylor has requested watchcommits Message-ID: <20090717185722.BA36E10F8A6@bastion2.fedora.phx.redhat.com> otaylor has requested the watchcommits acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:26 +0000 Subject: [pkgdb] clutter: otaylor has requested approveacls Message-ID: <20090717185726.54B6410F8AA@bastion2.fedora.phx.redhat.com> otaylor has requested the approveacls acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:28 +0000 Subject: [pkgdb] clutter: otaylor has requested watchbugzilla Message-ID: <20090717185729.0FFA710F8AC@bastion2.fedora.phx.redhat.com> otaylor has requested the watchbugzilla acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:35 +0000 Subject: [pkgdb] clutter: otaylor has requested approveacls Message-ID: <20090717185735.8A0A410F8B3@bastion2.fedora.phx.redhat.com> otaylor has requested the approveacls acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:29 +0000 Subject: [pkgdb] clutter: otaylor has requested commit Message-ID: <20090717185729.53CC310F8B0@bastion2.fedora.phx.redhat.com> otaylor has requested the commit acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:38 +0000 Subject: [pkgdb] clutter: otaylor has requested watchcommits Message-ID: <20090717185738.4A76310F8B5@bastion2.fedora.phx.redhat.com> otaylor has requested the watchcommits acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:42 +0000 Subject: [pkgdb] clutter: otaylor has given up approveacls Message-ID: <20090717185742.F0A2910F8A5@bastion2.fedora.phx.redhat.com> otaylor has given up the approveacls acl on clutter (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 18:57:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 18:57:45 +0000 Subject: [pkgdb] clutter: otaylor has given up approveacls Message-ID: <20090717185745.1FF4A10F8B8@bastion2.fedora.phx.redhat.com> otaylor has given up the approveacls acl on clutter (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From caillon at fedoraproject.org Fri Jul 17 19:00:59 2009 From: caillon at fedoraproject.org (Christopher Aillon) Date: Fri, 17 Jul 2009 19:00:59 +0000 (UTC) Subject: rpms/firefox/devel firefox.spec,1.330,1.331 Message-ID: <20090717190059.CEE6911C00D7@cvs1.fedora.phx.redhat.com> Author: caillon Update of /cvs/extras/rpms/firefox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17630 Modified Files: firefox.spec Log Message: * Fri Jul 17 2009 Christopher Aillon - 3.5.1-1 - Update to 3.5.1 Index: firefox.spec =================================================================== RCS file: /cvs/extras/rpms/firefox/devel/firefox.spec,v retrieving revision 1.330 retrieving revision 1.331 diff -u -p -r1.330 -r1.331 --- firefox.spec 13 Jul 2009 09:04:04 -0000 1.330 +++ firefox.spec 17 Jul 2009 19:00:58 -0000 1.331 @@ -5,7 +5,7 @@ %define mozappdir %{_libdir}/%{name}-%{internal_version} %define tarballdir mozilla-1.9.1 -%define xulrunner_version 1.9.1-1 +%define xulrunner_version 1.9.1.1 %define internal_version %{version} %define official_branding 1 @@ -18,8 +18,8 @@ Summary: Mozilla Firefox Web browser Name: firefox -Version: 3.5 -Release: 2%{?dist} +Version: 3.5.1 +Release: 1%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -30,7 +30,7 @@ Group: Applications/Internet %endif Source0: %{tarball} %if %{build_langpacks} -Source2: firefox-langpacks-%{version}-20090630.tar.bz2 +Source2: firefox-langpacks-%{version}-20090717.tar.bz2 %endif Source10: firefox-mozconfig Source11: firefox-mozconfig-branded @@ -321,6 +321,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 17 2009 Christopher Aillon - 3.5.1-1 +- Update to 3.5.1 + * Mon Jul 13 2009 Jan Horak - 3.5-2 - Updated icon From caillon at fedoraproject.org Fri Jul 17 19:01:34 2009 From: caillon at fedoraproject.org (Christopher Aillon) Date: Fri, 17 Jul 2009 19:01:34 +0000 (UTC) Subject: rpms/xulrunner/devel .cvsignore, 1.68, 1.69 sources, 1.71, 1.72 xulrunner.spec, 1.165, 1.166 Message-ID: <20090717190134.379AB11C00D3@cvs1.fedora.phx.redhat.com> Author: caillon Update of /cvs/extras/rpms/xulrunner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17758 Modified Files: .cvsignore sources xulrunner.spec Log Message: * Fri Jul 17 2009 Christopher Aillon - 1.9.1.1-1 - Update to 1.9.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/xulrunner/devel/.cvsignore,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- .cvsignore 30 Jun 2009 15:33:40 -0000 1.68 +++ .cvsignore 17 Jul 2009 19:01:03 -0000 1.69 @@ -1 +1 @@ -xulrunner-1.9.1-source.tar.bz2 +xulrunner-1.9.1.1-source.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/xulrunner/devel/sources,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- sources 30 Jun 2009 15:33:40 -0000 1.71 +++ sources 17 Jul 2009 19:01:03 -0000 1.72 @@ -1 +1 @@ -6dd59399db08963ef022a1d0e5010053 xulrunner-1.9.1-source.tar.bz2 +f2f68bc69f590eefc8fe98a0038087b1 xulrunner-1.9.1.1-source.tar.bz2 Index: xulrunner.spec =================================================================== RCS file: /cvs/extras/rpms/xulrunner/devel/xulrunner.spec,v retrieving revision 1.165 retrieving revision 1.166 diff -u -p -r1.165 -r1.166 --- xulrunner.spec 15 Jul 2009 15:19:38 -0000 1.165 +++ xulrunner.spec 17 Jul 2009 19:01:03 -0000 1.166 @@ -12,8 +12,8 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner -Version: 1.9.1 -Release: 3%{?dist} +Version: 1.9.1.1 +Release: 1%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -452,6 +452,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 17 2009 Christopher Aillon - 1.9.1.1-1 +- Update to 1.9.1.1 + * Mon Jul 13 2009 Jan Horak - 1.9.1-3 - Fixed wrong version of Firefox when loading 'about:' as location - Added patch to compile against latest GTK From caillon at fedoraproject.org Fri Jul 17 19:03:15 2009 From: caillon at fedoraproject.org (Christopher Aillon) Date: Fri, 17 Jul 2009 19:03:15 +0000 (UTC) Subject: rpms/firefox/devel .cvsignore,1.97,1.98 sources,1.110,1.111 Message-ID: <20090717190315.2125C11C00D3@cvs1.fedora.phx.redhat.com> Author: caillon Update of /cvs/extras/rpms/firefox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18776 Modified Files: .cvsignore sources Log Message: * Fri Jul 17 2009 Christopher Aillon - 3.5.1-1 - Update to 3.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/firefox/devel/.cvsignore,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- .cvsignore 30 Jun 2009 15:33:33 -0000 1.97 +++ .cvsignore 17 Jul 2009 19:02:44 -0000 1.98 @@ -1,2 +1,2 @@ -firefox-3.5-source.tar.bz2 -firefox-langpacks-3.5-20090630.tar.bz2 +firefox-3.5.1-source.tar.bz2 +firefox-langpacks-3.5.1-20090717.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/firefox/devel/sources,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- sources 30 Jun 2009 15:33:33 -0000 1.110 +++ sources 17 Jul 2009 19:02:44 -0000 1.111 @@ -1,2 +1,2 @@ -6dd59399db08963ef022a1d0e5010053 firefox-3.5-source.tar.bz2 -335219cf8a29a2584a0483707099d0b7 firefox-langpacks-3.5-20090630.tar.bz2 +f2f68bc69f590eefc8fe98a0038087b1 firefox-3.5.1-source.tar.bz2 +fb69b2d36b0ea28a7493ac3ab419a0a3 firefox-langpacks-3.5.1-20090717.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 19:05:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:05:40 +0000 Subject: [pkgdb] clutter had acl change status Message-ID: <20090717190540.B78A010F89F@bastion2.fedora.phx.redhat.com> allisson has set the approveacls acl on clutter (Fedora 10) to Approved for otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From pkgdb at fedoraproject.org Fri Jul 17 19:05:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:05:46 +0000 Subject: [pkgdb] clutter had acl change status Message-ID: <20090717190546.6E7DB10F86B@bastion2.fedora.phx.redhat.com> allisson has set the approveacls acl on clutter (Fedora 11) to Approved for otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter From hadess at fedoraproject.org Fri Jul 17 19:07:39 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 19:07:39 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.25,1.26 Message-ID: <20090717190739.CF96D11C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19973 Modified Files: clutter.spec Log Message: PPC build fix Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- clutter.spec 17 Jul 2009 17:56:04 -0000 1.25 +++ clutter.spec 17 Jul 2009 19:07:09 -0000 1.26 @@ -19,6 +19,9 @@ BuildRequires: libXdamage-devel gettext BuildRequires: gobject-introspection-devel >= 0.6.3 BuildRequires: gir-repository-devel +Patch0: clutter-fix-dolt-check.patch +BuildRequires: automake autoconf libtool + %description Clutter is an open source software library for creating fast, visually rich graphical user interfaces. The most obvious example @@ -56,6 +59,8 @@ This package contains documentation for %setup -q %build +aclocal -Ibuild/autotools +autoreconf %configure --enable-gtk-doc --enable-introspection make # FIXME parallel make is disabled for now From wwoods at fedoraproject.org Fri Jul 17 19:20:21 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Fri, 17 Jul 2009 19:20:21 +0000 (UTC) Subject: rpms/robotfindskitten/devel robotfindskitten-1.7320508.406-info-direntry.patch, NONE, 1.1 robotfindskitten.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717192021.8BEC011C00E4@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/robotfindskitten/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23387 Modified Files: .cvsignore sources Added Files: robotfindskitten-1.7320508.406-info-direntry.patch robotfindskitten.spec Log Message: first version robotfindskitten-1.7320508.406-info-direntry.patch: robotfindskitten.texi | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE robotfindskitten-1.7320508.406-info-direntry.patch --- diff -up robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry robotfindskitten-1.7320508.406/doc/robotfindskitten.texi --- robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry 2008-09-24 14:26:52.000000000 -0400 +++ robotfindskitten-1.7320508.406/doc/robotfindskitten.texi 2008-09-24 14:26:58.000000000 -0400 @@ -5,6 +5,9 @@ @finalout @setchapternewpage odd @dircategory Games + at direntry +* robotfindskitten: (robotfindskitten). Zen simulation. + at end direntry @c %**end of header --- NEW FILE robotfindskitten.spec --- Name: robotfindskitten Version: 1.7320508.406 Release: 2%{?dist} Summary: A game/zen simulation. You are robot. Your job is to find kitten. Group: Amusements/Games License: GPLv2+ URL: http://robotfindskitten.org Source0: http://robotfindskitten.org/download/POSIX/robotfindskitten-1.7320508.406.tar.gz # Submitted to upstream development list for consideration Patch0: robotfindskitten-1.7320508.406-info-direntry.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel glibc-devel texinfo Requires(post): info Requires(preun):info %description In this game, you are robot (#). Your job is to find kitten. This task is complicated by the existence of various things which are not kitten. Robot must touch items to determine if they are kitten or not. The game ends when robotfindskitten. %prep %setup -q %patch0 -p1 -b .info-direntry %build %configure make %{?_smp_mflags} # rebuild the info page to include the patched-in direntry rm -f doc/robotfindskitten.info make -C doc robotfindskitten.info %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT/%{_bindir} ln -sf ../games/robotfindskitten $RPM_BUILD_ROOT/%{_bindir}/robotfindskitten # make install creates this, but we don't need it rm -f $RPM_BUILD_ROOT/%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT %post /sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || : %preun if [ $1 = 0 ] ; then /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : fi %files %defattr(-,root,root,-) %doc AUTHORS BUGS ChangeLog COPYING NEWS README %{_bindir}/robotfindskitten %{_prefix}/games/robotfindskitten %{_datadir}/info/robotfindskitten.info* %{_datadir}/man/man6/robotfindskitten.6* %changelog * Fri Jul 10 2009 Will Woods 1.7320508.406-2 - Update spec based on packaging review (bug #463808) * Wed Sep 24 2008 Will Woods 1.7320508.406-1 - Initial packaging. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:36:05 -0000 1.1 +++ .cvsignore 17 Jul 2009 19:20:20 -0000 1.2 @@ -0,0 +1 @@ +robotfindskitten-1.7320508.406.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:36:05 -0000 1.1 +++ sources 17 Jul 2009 19:20:20 -0000 1.2 @@ -0,0 +1 @@ +6b9cf314ffee0de52ed85ac5ba11d66b robotfindskitten-1.7320508.406.tar.gz From wwoods at fedoraproject.org Fri Jul 17 19:21:48 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Fri, 17 Jul 2009 19:21:48 +0000 (UTC) Subject: rpms/robotfindskitten/F-10 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090717192148.5E3B211C00D3@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/robotfindskitten/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23689 Modified Files: .cvsignore sources Log Message: first version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:36:05 -0000 1.1 +++ .cvsignore 17 Jul 2009 19:21:18 -0000 1.2 @@ -0,0 +1 @@ +robotfindskitten-1.7320508.406.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:36:05 -0000 1.1 +++ sources 17 Jul 2009 19:21:18 -0000 1.2 @@ -0,0 +1 @@ +6b9cf314ffee0de52ed85ac5ba11d66b robotfindskitten-1.7320508.406.tar.gz From wwoods at fedoraproject.org Fri Jul 17 19:21:58 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Fri, 17 Jul 2009 19:21:58 +0000 (UTC) Subject: rpms/robotfindskitten/F-11 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090717192158.55FD711C00D3@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/robotfindskitten/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23845 Modified Files: .cvsignore sources Log Message: first version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:36:05 -0000 1.1 +++ .cvsignore 17 Jul 2009 19:21:58 -0000 1.2 @@ -0,0 +1 @@ +robotfindskitten-1.7320508.406.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:36:05 -0000 1.1 +++ sources 17 Jul 2009 19:21:58 -0000 1.2 @@ -0,0 +1 @@ +6b9cf314ffee0de52ed85ac5ba11d66b robotfindskitten-1.7320508.406.tar.gz From caillon at fedoraproject.org Fri Jul 17 19:28:10 2009 From: caillon at fedoraproject.org (Christopher Aillon) Date: Fri, 17 Jul 2009 19:28:10 +0000 (UTC) Subject: rpms/epiphany-extensions/F-11 epiphany-extensions.spec,1.60,1.61 Message-ID: <20090717192810.7091211C00D3@cvs1.fedora.phx.redhat.com> Author: caillon Update of /cvs/extras/rpms/epiphany-extensions/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25566 Modified Files: epiphany-extensions.spec Log Message: * Fri Jul 17 2009 Christopher Aillon - 2.26.1-4 - Rebuild against newer gecko Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/extras/rpms/epiphany-extensions/F-11/epiphany-extensions.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- epiphany-extensions.spec 30 Jun 2009 18:55:52 -0000 1.60 +++ epiphany-extensions.spec 17 Jul 2009 19:27:40 -0000 1.61 @@ -5,7 +5,7 @@ Name: epiphany-extensions Version: %{ephy_major}.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extensions for Epiphany, the GNOME web browser ## The Live HTTP Headers extension is LGPLv2.1+; the Gestures extension is @@ -113,6 +113,9 @@ scrollkeeper-update -q ||: %changelog +* Fri Jul 17 2009 Christopher Aillon - 2.26.1-4 +- Rebuild against newer gecko + * Tue Jun 30 2009 Christopher Aillon - 2.26.1-3 - Rebuild against newer gecko From hadess at fedoraproject.org Fri Jul 17 19:47:03 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 17 Jul 2009 19:47:03 +0000 (UTC) Subject: rpms/clutter/devel clutter-fix-dolt-check.patch, NONE, 1.1 clutter.spec, 1.26, 1.27 Message-ID: <20090717194703.19E2E11C00D3@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31655 Modified Files: clutter.spec Added Files: clutter-fix-dolt-check.patch Log Message: Add missing patch clutter-fix-dolt-check.patch: dolt.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE clutter-fix-dolt-check.patch --- Commit 58558133d35f370a2da57db2a8551f2ff655c55f Author: Colin Walters Date: Fri Jul 17 15:04:02 2009 -0400 Use dolt on powerpc64-*-linux* too In particular, powerpc64-redhat-linux-gnu. diff --git a/build/autotools/dolt.m4 b/build/autotools/dolt.m4 index 1109bdb..d4c83bc 100644 --- a/build/autotools/dolt.m4 +++ b/build/autotools/dolt.m4 @@ -22,7 +22,7 @@ if test x$GCC != xyes; then dolt_supported=no fi case $host in -i?86-*-linux*|x86_64-*-linux*|powerpc-*-linux* \ +i?86-*-linux*|x86_64-*-linux*|powerpc*-linux* \ |amd64-*-freebsd*|i?86-*-freebsd*|ia64-*-freebsd*) pic_options='-fPIC' ;; Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- clutter.spec 17 Jul 2009 19:07:09 -0000 1.26 +++ clutter.spec 17 Jul 2009 19:46:32 -0000 1.27 @@ -57,6 +57,7 @@ This package contains documentation for %prep %setup -q +%patch0 -p1 -b .ppc64 %build aclocal -Ibuild/autotools From notting at fedoraproject.org Fri Jul 17 19:51:18 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 19:51:18 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config-9.0.3-F-12-Architectures.patch, NONE, 1.1 redhat-rpm-config.spec, 1.63, 1.64 Message-ID: <20090717195118.3AE6811C00D3@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv437 Modified Files: redhat-rpm-config.spec Added Files: redhat-rpm-config-9.0.3-F-12-Architectures.patch Log Message: Add F12 architecture bits. redhat-rpm-config-9.0.3-F-12-Architectures.patch: rpmrc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- NEW FILE redhat-rpm-config-9.0.3-F-12-Architectures.patch --- diff -up redhat-rpm-config-9.0.3/rpmrc.foo redhat-rpm-config-9.0.3/rpmrc --- redhat-rpm-config-9.0.3/rpmrc.foo 2009-07-17 15:47:00.000000000 -0400 +++ redhat-rpm-config-9.0.3/rpmrc 2009-07-17 15:48:46.000000000 -0400 @@ -3,7 +3,7 @@ include: /usr/lib/rpm/rpmrc optflags: i386 %{__global_cflags} -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables optflags: i486 %{__global_cflags} -m32 -march=i486 -fasynchronous-unwind-tables optflags: i586 %{__global_cflags} -m32 -march=i586 -mtune=generic -fasynchronous-unwind-tables -optflags: i686 %{__global_cflags} -m32 -march=i686 -mtune=generic -fasynchronous-unwind-tables +optflags: i686 %{__global_cflags} -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables optflags: athlon %{__global_cflags} -m32 -march=athlon -fasynchronous-unwind-tables optflags: ia64 %{__global_cflags} optflags: x86_64 %{__global_cflags} -m64 -mtune=generic @@ -64,11 +64,11 @@ optflags: s390x %{__global_cflags} -m64 # set build arch to fedora buildarches on hardware capable of running it # saves having to do rpmbuild --target= -buildarchtranslate: athlon: i586 -buildarchtranslate: geode: i586 -buildarchtranslate: pentium4: i586 -buildarchtranslate: pentium3: i586 -buildarchtranslate: i686: i586 +buildarchtranslate: athlon: i686 +buildarchtranslate: geode: i686 +buildarchtranslate: pentium4: i686 +buildarchtranslate: pentium3: i686 +buildarchtranslate: i686: i686 buildarchtranslate: i586: i586 buildarchtranslate: sparcv9: sparcv9 Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/extras/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- redhat-rpm-config.spec 3 Jun 2009 19:16:29 -0000 1.63 +++ redhat-rpm-config.spec 17 Jul 2009 19:50:47 -0000 1.64 @@ -10,6 +10,7 @@ Patch0: redhat-rpm-config-9.0.3-fix-requ Patch1: limit-smp-16-threads.patch Patch2: redhat-rpm-config-9.0.3-F-11-Architectures.patch Patch3: redhat-rpm-config-9.0.3-F-11-StrongerHashes.patch +Patch4: redhat-rpm-config-9.0.3-F-12-Architectures.patch BuildArch: noarch Requires: mktemp BuildRoot: %{_tmppath}/%{name}-root @@ -23,6 +24,7 @@ Red Hat specific rpm configuration files %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %install make DESTDIR=${RPM_BUILD_ROOT} install @@ -35,6 +37,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Fri Jul 17 2009 Bill Nottingham 9.0.3-10 +- apply fedora 12 default buildflags + * Wed Jun 03 2009 Adam Jackson 9.0.3-9 - limit-smp-16-threads.patch: Rediff so we don't ship a .orig file (#500316) From notting at fedoraproject.org Fri Jul 17 19:52:06 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 17 Jul 2009 19:52:06 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config.spec,1.64,1.65 Message-ID: <20090717195206.1338211C00D3@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv767 Modified Files: redhat-rpm-config.spec Log Message: Bump release Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/extras/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- redhat-rpm-config.spec 17 Jul 2009 19:50:47 -0000 1.64 +++ redhat-rpm-config.spec 17 Jul 2009 19:51:35 -0000 1.65 @@ -1,7 +1,7 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 9%{?dist} +Release: 10%{?dist} # No version specified. License: GPL+ Group: Development/System From pkgdb at fedoraproject.org Fri Jul 17 19:53:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:53:25 +0000 Subject: [pkgdb] cld was added for jgarzik Message-ID: <20090717195325.C498E10F8A3@bastion2.fedora.phx.redhat.com> tibbs has added Package cld with summary Coarse locking service tibbs has approved Package cld tibbs has added a Fedora devel branch for cld with an owner of jgarzik tibbs has approved cld in Fedora devel tibbs has approved Package cld tibbs has set commit to Approved for 107427 on cld (Fedora devel) tibbs has set checkout to Approved for 107427 on cld (Fedora devel) tibbs has set build to Approved for 107427 on cld (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cld From pkgdb at fedoraproject.org Fri Jul 17 19:53:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:53:27 +0000 Subject: [pkgdb] cld summary updated by tibbs Message-ID: <20090717195328.2793210F8AB@bastion2.fedora.phx.redhat.com> tibbs set package cld summary to Coarse locking service To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cld From pkgdb at fedoraproject.org Fri Jul 17 19:53:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:53:27 +0000 Subject: [pkgdb] cld (Fedora, 11) updated by tibbs Message-ID: <20090717195328.5661410F8B7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for cld tibbs has set commit to Approved for 107427 on cld (Fedora 11) tibbs has set checkout to Approved for 107427 on cld (Fedora 11) tibbs has set build to Approved for 107427 on cld (Fedora 11) tibbs approved watchbugzilla on cld (Fedora 11) for zaitcev tibbs approved watchcommits on cld (Fedora 11) for zaitcev tibbs approved commit on cld (Fedora 11) for zaitcev tibbs approved build on cld (Fedora 11) for zaitcev tibbs approved approveacls on cld (Fedora 11) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cld From pkgdb at fedoraproject.org Fri Jul 17 19:53:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:53:27 +0000 Subject: [pkgdb] cld (Fedora, 11) updated by tibbs Message-ID: <20090717195328.6313310F8BA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for cld tibbs has set commit to Approved for 107427 on cld (Fedora 10) tibbs has set checkout to Approved for 107427 on cld (Fedora 10) tibbs has set build to Approved for 107427 on cld (Fedora 10) tibbs approved watchbugzilla on cld (Fedora 10) for zaitcev tibbs approved watchcommits on cld (Fedora 10) for zaitcev tibbs approved commit on cld (Fedora 10) for zaitcev tibbs approved build on cld (Fedora 10) for zaitcev tibbs approved approveacls on cld (Fedora 10) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cld From tibbs at fedoraproject.org Fri Jul 17 19:53:33 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 19:53:33 +0000 (UTC) Subject: rpms/cld - New directory Message-ID: <20090717195333.1989811C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cld In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsMp1446/rpms/cld Log Message: Directory /cvs/pkgs/rpms/cld added to the repository From pkgdb at fedoraproject.org Fri Jul 17 19:53:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 19:53:27 +0000 Subject: [pkgdb] cld (Fedora, 11) updated by tibbs Message-ID: <20090717195328.76A9210F8BF@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on cld (Fedora devel) for zaitcev tibbs approved watchcommits on cld (Fedora devel) for zaitcev tibbs approved commit on cld (Fedora devel) for zaitcev tibbs approved build on cld (Fedora devel) for zaitcev tibbs approved approveacls on cld (Fedora devel) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cld From tibbs at fedoraproject.org Fri Jul 17 19:53:33 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 19:53:33 +0000 (UTC) Subject: rpms/cld/devel - New directory Message-ID: <20090717195333.3A9CA11C00D7@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsMp1446/rpms/cld/devel Log Message: Directory /cvs/pkgs/rpms/cld/devel added to the repository From tibbs at fedoraproject.org Fri Jul 17 19:53:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 19:53:38 +0000 (UTC) Subject: rpms/cld Makefile,NONE,1.1 Message-ID: <20090717195338.B9C5111C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cld In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsMp1446/rpms/cld Added Files: Makefile Log Message: Setup of module cld --- NEW FILE Makefile --- # Top level Makefile for module cld all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 17 19:53:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 17 Jul 2009 19:53:39 +0000 (UTC) Subject: rpms/cld/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717195339.128D211C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsMp1446/rpms/cld/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module cld --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: cld # $Id: Makefile,v 1.1 2009/07/17 19:53:38 tibbs Exp $ NAME := cld SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jussilehtola at fedoraproject.org Fri Jul 17 20:04:26 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 17 Jul 2009 20:04:26 +0000 (UTC) Subject: rpms/gdpc/devel gdpc.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717200426.F35CD11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gdpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5263/devel Modified Files: .cvsignore sources Added Files: gdpc.spec import.log Log Message: Imported in Fedora. --- NEW FILE gdpc.spec --- Summary: A program for visualising molecular dynamics simulations data Name: gdpc Version: 2.2.5 Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.frantz.fi/software/gdpc.php Source0: http://www.frantz.fi/software/gdpc-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: pkgconfig %description gdpc is a program for visualising molecular dynamic simulations, it is a very versatile program and could easily be used for other purposes. gdpc reads xyz input as well as custom formats and can output pictures of each frame. %prep %setup -q # Create desktop file cat > gdpc.desktop << EOF [Desktop Entry] Name=gdpc Comment=A program for visualising molecular dynamic simulations Exec=gdpc Icon= Terminal=false Type=Application Categories=Graphics;3DGraphics;Science;Chemistry;Physics;DataVisualization; EOF %build make CFLAGS="%{optflags}" %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 gdpc %{buildroot}%{_bindir}/gdpc desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ gdpc.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README liquid.test manytypes.test md.test gpl.txt %{_bindir}/gdpc %{_datadir}/applications/gdpc.desktop %changelog * Wed Apr 22 2009 Jussi Lehtola - 2.2.5-1 - Conversion of spec to Fedora. * Sat Dec 11 2004 Jonas Frantz - Version 2.2.4 released * Wed Dec 8 2004 Jonas Frantz - Version 2.2.3.1 released * Mon Dec 6 2004 Jonas Frantz - Version 2.2.3 released * Sat Aug 9 2003 Jonas Frantz - Initial build --- NEW FILE import.log --- gdpc-2_2_5-1_fc11:HEAD:gdpc-2.2.5-1.fc11.src.rpm:1247860935 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gdpc/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:34:30 -0000 1.1 +++ .cvsignore 17 Jul 2009 20:03:56 -0000 1.2 @@ -0,0 +1 @@ +gdpc-2.2.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gdpc/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:34:30 -0000 1.1 +++ sources 17 Jul 2009 20:03:56 -0000 1.2 @@ -0,0 +1 @@ +851ae4ea1a17d81463e7ea44cbc3ace3 gdpc-2.2.5.tar.gz From jussilehtola at fedoraproject.org Fri Jul 17 20:07:46 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 17 Jul 2009 20:07:46 +0000 (UTC) Subject: rpms/gdpc/F-10 gdpc.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090717200746.2E44B11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gdpc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6582/F-10 Modified Files: sources Added Files: gdpc.spec Log Message: Imported in Fedora. --- NEW FILE gdpc.spec --- Summary: A program for visualising molecular dynamics simulations data Name: gdpc Version: 2.2.5 Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.frantz.fi/software/gdpc.php Source0: http://www.frantz.fi/software/gdpc-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: pkgconfig %description gdpc is a program for visualising molecular dynamic simulations, it is a very versatile program and could easily be used for other purposes. gdpc reads xyz input as well as custom formats and can output pictures of each frame. %prep %setup -q # Create desktop file cat > gdpc.desktop << EOF [Desktop Entry] Name=gdpc Comment=A program for visualising molecular dynamic simulations Exec=gdpc Icon= Terminal=false Type=Application Categories=Graphics;3DGraphics;Science;Chemistry;Physics;DataVisualization; EOF %build make CFLAGS="%{optflags}" %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 gdpc %{buildroot}%{_bindir}/gdpc desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ gdpc.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README liquid.test manytypes.test md.test gpl.txt %{_bindir}/gdpc %{_datadir}/applications/gdpc.desktop %changelog * Wed Apr 22 2009 Jussi Lehtola - 2.2.5-1 - Conversion of spec to Fedora. * Sat Dec 11 2004 Jonas Frantz - Version 2.2.4 released * Wed Dec 8 2004 Jonas Frantz - Version 2.2.3.1 released * Mon Dec 6 2004 Jonas Frantz - Version 2.2.3 released * Sat Aug 9 2003 Jonas Frantz - Initial build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gdpc/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:34:30 -0000 1.1 +++ sources 17 Jul 2009 20:07:15 -0000 1.2 @@ -0,0 +1 @@ +851ae4ea1a17d81463e7ea44cbc3ace3 gdpc-2.2.5.tar.gz From jussilehtola at fedoraproject.org Fri Jul 17 20:07:46 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 17 Jul 2009 20:07:46 +0000 (UTC) Subject: rpms/gdpc/F-11 gdpc.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090717200746.4A88911C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gdpc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6582/F-11 Modified Files: sources Added Files: gdpc.spec Log Message: Imported in Fedora. --- NEW FILE gdpc.spec --- Summary: A program for visualising molecular dynamics simulations data Name: gdpc Version: 2.2.5 Release: 1%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.frantz.fi/software/gdpc.php Source0: http://www.frantz.fi/software/gdpc-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: pkgconfig %description gdpc is a program for visualising molecular dynamic simulations, it is a very versatile program and could easily be used for other purposes. gdpc reads xyz input as well as custom formats and can output pictures of each frame. %prep %setup -q # Create desktop file cat > gdpc.desktop << EOF [Desktop Entry] Name=gdpc Comment=A program for visualising molecular dynamic simulations Exec=gdpc Icon= Terminal=false Type=Application Categories=Graphics;3DGraphics;Science;Chemistry;Physics;DataVisualization; EOF %build make CFLAGS="%{optflags}" %{?_smp_mflags} %install rm -rf %{buildroot} install -D -p -m 755 gdpc %{buildroot}%{_bindir}/gdpc desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ gdpc.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README liquid.test manytypes.test md.test gpl.txt %{_bindir}/gdpc %{_datadir}/applications/gdpc.desktop %changelog * Wed Apr 22 2009 Jussi Lehtola - 2.2.5-1 - Conversion of spec to Fedora. * Sat Dec 11 2004 Jonas Frantz - Version 2.2.4 released * Wed Dec 8 2004 Jonas Frantz - Version 2.2.3.1 released * Mon Dec 6 2004 Jonas Frantz - Version 2.2.3 released * Sat Aug 9 2003 Jonas Frantz - Initial build Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gdpc/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:34:30 -0000 1.1 +++ sources 17 Jul 2009 20:07:16 -0000 1.2 @@ -0,0 +1 @@ +851ae4ea1a17d81463e7ea44cbc3ace3 gdpc-2.2.5.tar.gz From jgarzik at fedoraproject.org Fri Jul 17 20:13:03 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Fri, 17 Jul 2009 20:13:03 +0000 (UTC) Subject: rpms/cld/devel cld.init, NONE, 1.1 cld.spec, NONE, 1.1 cld.sysconf, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717201303.65A2D11C00D3@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8349/devel Modified Files: .cvsignore sources Added Files: cld.init cld.spec cld.sysconf import.log Log Message: initial import. --- NEW FILE cld.init --- #!/bin/sh # # cld Starts/stop the coarse locking daemon # # chkconfig: - 95 5 # description: Coarse locking service # processname: cld ### BEGIN INIT INFO # Provides: cld # Required-Start: $local_fs $network # Required-Stop: $local_fs $network # Should-Start: # Default-Start: # Default-Stop: 0 1 2 3 4 5 6 # Short-Description: Coarse locking service # Description: Highly reliable distributed lock service for clouds ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec=/usr/sbin/cld prog="cld" config=/etc/sysconfig/cld [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " daemon $exec $OPTS && success || failure retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " if [ -n "`pidfileofproc $exec`" ] ; then killproc $exec RETVAL=3 else failure $"Stopping $prog" fi retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE cld.spec --- Name: cld Version: 0.2 Release: 0.1.g023a127d%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ # pulled from upstream git, commit 023a127de02c91f62f3911978b59244009c67b2c Source0: cld-%{version}git.tar.gz Source2: cld.init Source3: cld.sysconf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: db4-devel libevent-devel glib2-devel doxygen openssl-devel BuildRequires: texlive-latex # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed ExcludeArch: ppc ppc64 %description Coarse locking daemon. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n cld-0.2git %build %configure --disable-static make %{?_smp_mflags} rm -rf gendoc && mkdir gendoc && doxygen ( cd gendoc/latex && make ) %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_initddir} install -m 755 %{SOURCE2} %{buildroot}%{_initddir}/cld mkdir -p %{buildroot}%{_sysconfdir}/sysconfig install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/cld find %{buildroot} -name '*.la' -exec rm -f {} ';' %check make -s check %clean rm -rf %{buildroot} %post /sbin/ldconfig # must be in chkconfig on /sbin/chkconfig --add cld %preun if [ "$1" = 0 ] ; then /sbin/service cld stop >/dev/null 2>&1 ||: /sbin/chkconfig --del cld fi %postun /sbin/ldconfig if [ "$1" -ge "1" ]; then /sbin/service cld condrestart >/dev/null 2>&1 ||: fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE README NEWS doc/*.txt %{_sbindir}/cld %{_sbindir}/cldbadm %{_libdir}/*.so.* %attr(0755,root,root) %{_initddir}/cld %config(noreplace) %{_sysconfdir}/sysconfig/cld %files devel %defattr(-,root,root,-) %doc gendoc/html gendoc/latex/refman.pdf %{_libdir}/lib*.so %{_libdir}/pkgconfig/* %{_includedir}/* %changelog * Fri Jul 17 2009 Jeff Garzik - 0.2-0.1.g023a127d%{?dist} - update with new release version scheme - kill RPM_BUILD_ROOT * Fri Jul 17 2009 Jeff Garzik - 0.1-1 - version 0.1 release * Thu Jul 16 2009 Jeff Garzik - 0.1git-5 - chkconfig default off - add doc: COPYING, LICENSE - config(noreplace) sysconfig/cld * Thu Jul 16 2009 Jeff Garzik - 0.1git-4 - minor spec updates for review feedback, Fedora packaging guidelines * Thu Jul 16 2009 Jeff Garzik - 0.1git-3 - update BuildRequires - rpmlint fixes - update to latest git repo * Wed Mar 18 2009 Jeff Garzik - 0.1git-2 - update cld initscript * Wed Mar 18 2009 Jeff Garzik - 0.1git-1.libtest - initial release --- NEW FILE cld.sysconf --- # specify additional command line arguments for cld # #example: #OPTS="--debug" --- NEW FILE import.log --- cld-0_2-0_1_g023a127d_fc10:HEAD:cld-0.2-0.1.g023a127d.fc10.src.rpm:1247861535 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 19:53:38 -0000 1.1 +++ .cvsignore 17 Jul 2009 20:12:32 -0000 1.2 @@ -0,0 +1 @@ +cld-0.2git.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 19:53:38 -0000 1.1 +++ sources 17 Jul 2009 20:12:33 -0000 1.2 @@ -0,0 +1 @@ +262b157bf44bb73b9d3dc483babff237 cld-0.2git.tar.gz From pkgdb at fedoraproject.org Fri Jul 17 20:41:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:41:21 +0000 Subject: [pkgdb] 389-adminutil was added for rmeggins Message-ID: <20090717204121.8AC3410F888@bastion2.fedora.phx.redhat.com> ausil has added Package 389-adminutil with summary Utility library for 389 administration ausil has approved Package 389-adminutil ausil has added a Fedora devel branch for 389-adminutil with an owner of rmeggins ausil has approved 389-adminutil in Fedora devel ausil has approved Package 389-adminutil ausil has set commit to Approved for 107427 on 389-adminutil (Fedora devel) ausil has set checkout to Approved for 107427 on 389-adminutil (Fedora devel) ausil has set build to Approved for 107427 on 389-adminutil (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-adminutil From pkgdb at fedoraproject.org Fri Jul 17 20:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:41:24 +0000 Subject: [pkgdb] 389-adminutil summary updated by ausil Message-ID: <20090717204124.3B25A10F8A5@bastion2.fedora.phx.redhat.com> ausil set package 389-adminutil summary to Utility library for 389 administration To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-adminutil From pkgdb at fedoraproject.org Fri Jul 17 20:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:41:24 +0000 Subject: [pkgdb] 389-adminutil (Fedora, 11) updated by ausil Message-ID: <20090717204124.4A68410F8AB@bastion2.fedora.phx.redhat.com> ausil approved watchbugzilla on 389-adminutil (Fedora devel) for nkinder ausil approved watchcommits on 389-adminutil (Fedora devel) for nkinder ausil approved commit on 389-adminutil (Fedora devel) for nkinder ausil approved build on 389-adminutil (Fedora devel) for nkinder ausil approved approveacls on 389-adminutil (Fedora devel) for nkinder ausil approved watchbugzilla on 389-adminutil (Fedora devel) for nhosoi ausil approved watchcommits on 389-adminutil (Fedora devel) for nhosoi ausil approved commit on 389-adminutil (Fedora devel) for nhosoi ausil approved build on 389-adminutil (Fedora devel) for nhosoi ausil approved approveacls on 389-adminutil (Fedora devel) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-adminutil From pkgdb at fedoraproject.org Fri Jul 17 20:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:41:24 +0000 Subject: [pkgdb] 389-adminutil (Fedora, 11) updated by ausil Message-ID: <20090717204124.65D4D10F8B6@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for 389-adminutil ausil has set commit to Approved for 107427 on 389-adminutil (Fedora 10) ausil has set checkout to Approved for 107427 on 389-adminutil (Fedora 10) ausil has set build to Approved for 107427 on 389-adminutil (Fedora 10) ausil approved watchbugzilla on 389-adminutil (Fedora 10) for nkinder ausil approved watchcommits on 389-adminutil (Fedora 10) for nkinder ausil approved commit on 389-adminutil (Fedora 10) for nkinder ausil approved build on 389-adminutil (Fedora 10) for nkinder ausil approved approveacls on 389-adminutil (Fedora 10) for nkinder ausil approved watchbugzilla on 389-adminutil (Fedora 10) for nhosoi ausil approved watchcommits on 389-adminutil (Fedora 10) for nhosoi ausil approved commit on 389-adminutil (Fedora 10) for nhosoi ausil approved build on 389-adminutil (Fedora 10) for nhosoi ausil approved approveacls on 389-adminutil (Fedora 10) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-adminutil From pkgdb at fedoraproject.org Fri Jul 17 20:41:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:41:24 +0000 Subject: [pkgdb] 389-adminutil (Fedora, 11) updated by ausil Message-ID: <20090717204124.52F4A10F8B1@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for 389-adminutil ausil has set commit to Approved for 107427 on 389-adminutil (Fedora 11) ausil has set checkout to Approved for 107427 on 389-adminutil (Fedora 11) ausil has set build to Approved for 107427 on 389-adminutil (Fedora 11) ausil approved watchbugzilla on 389-adminutil (Fedora 11) for nkinder ausil approved watchcommits on 389-adminutil (Fedora 11) for nkinder ausil approved commit on 389-adminutil (Fedora 11) for nkinder ausil approved build on 389-adminutil (Fedora 11) for nkinder ausil approved approveacls on 389-adminutil (Fedora 11) for nkinder ausil approved watchbugzilla on 389-adminutil (Fedora 11) for nhosoi ausil approved watchcommits on 389-adminutil (Fedora 11) for nhosoi ausil approved commit on 389-adminutil (Fedora 11) for nhosoi ausil approved build on 389-adminutil (Fedora 11) for nhosoi ausil approved approveacls on 389-adminutil (Fedora 11) for nhosoi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-adminutil From thm at fedoraproject.org Fri Jul 17 20:41:24 2009 From: thm at fedoraproject.org (Thomas Moschny) Date: Fri, 17 Jul 2009 20:41:24 +0000 (UTC) Subject: rpms/ikiwiki/devel .cvsignore, 1.24, 1.25 ikiwiki.spec, 1.26, 1.27 import.log, 1.24, 1.25 sources, 1.24, 1.25 Message-ID: <20090717204124.CCB0211C00D3@cvs1.fedora.phx.redhat.com> Author: thm Update of /cvs/pkgs/rpms/ikiwiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18426/devel Modified Files: .cvsignore ikiwiki.spec import.log sources Log Message: Update to 3.1415. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 11 Jun 2009 21:37:25 -0000 1.24 +++ .cvsignore 17 Jul 2009 20:40:54 -0000 1.25 @@ -1 +1 @@ -ikiwiki_3.14.tar.gz +ikiwiki_3.1415.tar.gz Index: ikiwiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/devel/ikiwiki.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- ikiwiki.spec 11 Jun 2009 21:37:25 -0000 1.26 +++ ikiwiki.spec 17 Jul 2009 20:40:54 -0000 1.27 @@ -1,5 +1,5 @@ Name: ikiwiki -Version: 3.14 +Version: 3.1415 Release: 1%{?dist} Summary: A wiki compiler @@ -143,6 +143,9 @@ meta-wrapper in this package. %changelog +* Fri Jul 17 2009 Thomas Moschny - 3.1415-1 +- Update to 3.1415. + * Thu Jun 11 2009 Thomas Moschny - 3.14-1 - Update to 3.14. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/devel/import.log,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- import.log 11 Jun 2009 21:37:25 -0000 1.24 +++ import.log 17 Jul 2009 20:40:54 -0000 1.25 @@ -22,3 +22,4 @@ ikiwiki-3_10-1_fc10:HEAD:ikiwiki-3.10-1. ikiwiki-3_11-1_fc11:HEAD:ikiwiki-3.11-1.fc11.src.rpm:1241508769 ikiwiki-3_12-1_fc11:HEAD:ikiwiki-3.12-1.fc11.src.rpm:1242421749 ikiwiki-3_14-1_fc11:HEAD:ikiwiki-3.14-1.fc11.src.rpm:1244756213 +ikiwiki-3_1415-1_fc11:HEAD:ikiwiki-3.1415-1.fc11.src.rpm:1247863227 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 11 Jun 2009 21:37:25 -0000 1.24 +++ sources 17 Jul 2009 20:40:54 -0000 1.25 @@ -1 +1 @@ -2137f5ebd149f9cb72352df81ca7c539 ikiwiki_3.14.tar.gz +db35d8f3c526b80648a3d34316d6a5f3 ikiwiki_3.1415.tar.gz From ausil at fedoraproject.org Fri Jul 17 20:41:29 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:41:29 +0000 (UTC) Subject: rpms/389-adminutil - New directory Message-ID: <20090717204129.1708211C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-adminutil In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq18826/rpms/389-adminutil Log Message: Directory /cvs/pkgs/rpms/389-adminutil added to the repository From ausil at fedoraproject.org Fri Jul 17 20:41:29 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:41:29 +0000 (UTC) Subject: rpms/389-adminutil/devel - New directory Message-ID: <20090717204129.3E42211C00D7@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-adminutil/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq18826/rpms/389-adminutil/devel Log Message: Directory /cvs/pkgs/rpms/389-adminutil/devel added to the repository From ausil at fedoraproject.org Fri Jul 17 20:41:35 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:41:35 +0000 (UTC) Subject: rpms/389-adminutil Makefile,NONE,1.1 Message-ID: <20090717204135.ADEF411C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-adminutil In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq18826/rpms/389-adminutil Added Files: Makefile Log Message: Setup of module 389-adminutil --- NEW FILE Makefile --- # Top level Makefile for module 389-adminutil all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From ausil at fedoraproject.org Fri Jul 17 20:41:35 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:41:35 +0000 (UTC) Subject: rpms/389-adminutil/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717204135.E9E9911C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-adminutil/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsq18826/rpms/389-adminutil/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module 389-adminutil --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: 389-adminutil # $Id: Makefile,v 1.1 2009/07/17 20:41:35 ausil Exp $ NAME := 389-adminutil SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From timfenn at fedoraproject.org Fri Jul 17 20:43:55 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Fri, 17 Jul 2009 20:43:55 +0000 (UTC) Subject: rpms/clipper/devel .cvsignore, 1.8, 1.9 clipper.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090717204355.4E5BC11C00D3@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/clipper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19803 Modified Files: .cvsignore clipper.spec sources Log Message: * Thu Jul 16 2009 Tim Fenn - 2.1-9.20090714cvs - trim down patches, stick with upstream - add pkgconfig to buildrequires Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 14 Jul 2009 19:28:16 -0000 1.8 +++ .cvsignore 17 Jul 2009 20:43:24 -0000 1.9 @@ -1,2 +1,4 @@ clipper-2.1-090714-ac.tar.gz -clipper-patches-2.1.tar.gz +clipper.pc.in +version.cpp +clipper-autotools.patch Index: clipper.spec =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/clipper.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- clipper.spec 14 Jul 2009 19:28:16 -0000 1.9 +++ clipper.spec 17 Jul 2009 20:43:24 -0000 1.10 @@ -2,10 +2,12 @@ Name: clipper Summary: Clipper C++ crystallographic library URL: http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper.html Version: 2.1 -Release: 8.20090714cvs%{?dist} +Release: 9.20090714cvs%{?dist} License: LGPLv2+ Source0: http://www.ysbl.york.ac.uk/~cowtan/%{name}/%{name}-%{version}-090714-ac.tar.gz -Source1: clipper-patches-2.1.tar.gz +Source1: clipper.pc.in +Source2: version.cpp +Patch0: clipper-autotools.patch Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf @@ -14,6 +16,7 @@ BuildRequires: libtool BuildRequires: fftw2-devel BuildRequires: gpp4-devel BuildRequires: mmdb-devel +BuildRequires: pkgconfig %description There are currently two major pressures on crystallographic computing: @@ -42,15 +45,21 @@ necessary for developing programs using crystallographic library. %prep -%setup -q -a 1 -./autogen.sh +%setup -q +cp %{SOURCE1} ./ +cp %{SOURCE2} ./clipper/ +%patch0 -p0 +libtoolize --automake +aclocal -I config +automake --copy --add-missing --gnu +autoconf sed -i 's/\r//' dox/coordtypes.dox sed -i 's/\r//' dox/develop.dox chmod 644 dox/wheretolook.dox %build -%configure --disable-static +%configure --enable-contrib --enable-phs --with-mmdb=`pkg-config mmdb --variable=prefix` --enable-mmdb --enable-minimol --enable-cif --with-gpp4="" --enable-gpp4 --enable-cns --enable-single-lib --disable-static CXXFLAGS=`pkg-config gpp4 --cflags` make %{?_smp_mflags} %install @@ -70,17 +79,40 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc NEWS README AUTHORS COPYING -%{_bindir}/* +%{_bindir}/caniso +%{_bindir}/cecalc +%{_bindir}/cfft +%{_bindir}/chltofom +%{_bindir}/cinvfft +%{_bindir}/cmakereference +%{_bindir}/cmaplocal +%{_bindir}/cmodeltoseq +%{_bindir}/cncsfrommodel +%{_bindir}/convert2mtz +%{_bindir}/cpatterson +%{_bindir}/cphasecombine +%{_bindir}/cphasematch +%{_bindir}/csfcalc +%{_bindir}/csfcreate +%{_bindir}/csigmaa +%{_bindir}/csymmatch +%{_bindir}/maketestdata %{_libdir}/libclipper.so.* %files devel %defattr(-,root,root,-) %doc dox +%{_bindir}/clipper-config +%{_bindir}/clipper_test %{_libdir}/libclipper.so %{_includedir}/clipper %{_libdir}/pkgconfig/clipper.pc %changelog +* Thu Jul 16 2009 Tim Fenn - 2.1-9.20090714cvs +- trim down patches, stick with upstream +- add pkgconfig to buildrequires + * Tue Jul 14 2009 Tim Fenn - 2.1-8.20090714cvs - update to 090714 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 14 Jul 2009 19:28:16 -0000 1.8 +++ sources 17 Jul 2009 20:43:25 -0000 1.9 @@ -1,2 +1,4 @@ 25124efb8d251cedfbd23f4b06851e47 clipper-2.1-090714-ac.tar.gz -56b75cfde2599264a1c17fa4e2aa4539 clipper-patches-2.1.tar.gz +bcaaab9bbc6d501c0395dfe306e2c561 clipper.pc.in +a6630f996ac7a3029979e6a014b4b4d0 version.cpp +bafa331e903105efc0757f1c0d8c124c clipper-autotools.patch From mnowak at fedoraproject.org Fri Jul 17 20:45:27 2009 From: mnowak at fedoraproject.org (Michal Nowak) Date: Fri, 17 Jul 2009 20:45:27 +0000 (UTC) Subject: rpms/libev/devel .cvsignore, 1.7, 1.8 import.log, 1.8, 1.9 libev.spec, 1.9, 1.10 sources, 1.7, 1.8 Message-ID: <20090717204527.378E011C00D3@cvs1.fedora.phx.redhat.com> Author: mnowak Update of /cvs/pkgs/rpms/libev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20547/devel Modified Files: .cvsignore import.log libev.spec sources Log Message: real 3.70 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 30 Apr 2009 07:39:48 -0000 1.7 +++ .cvsignore 17 Jul 2009 20:44:56 -0000 1.8 @@ -1 +1 @@ -libev-3.6.tar.gz +libev-3.7.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 17 Jul 2009 10:19:20 -0000 1.8 +++ import.log 17 Jul 2009 20:44:56 -0000 1.9 @@ -6,3 +6,4 @@ libev-3_53-1_fc11:HEAD:libev-3.53-1.fc11 libev-3_6-1_fc11:HEAD:libev-3.6-1.fc11.src.rpm:1241077041 libev-3_60-1_fc11:HEAD:libev-3.60-1.fc11.src.rpm:1246282750 libev-3_70-1_fc11:HEAD:libev-3.70-1.fc11.src.rpm:1247825976 +libev-3_70-2_fc11:HEAD:libev-3.70-2.fc11.src.rpm:1247863439 Index: libev.spec =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/libev.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libev.spec 17 Jul 2009 10:19:20 -0000 1.9 +++ libev.spec 17 Jul 2009 20:44:56 -0000 1.10 @@ -1,8 +1,8 @@ -%define version_upstream 3.6 +%define version_upstream 3.7 Name: libev Version: 3.70 -Release: 1%{?dist} +Release: 2%{?dist} Summary: High-performance event loop/event model with lots of features Group: System Environment/Libraries @@ -85,6 +85,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Michal Nowak - 3.70-2 +- spec file change, which prevented uploading most recent tarball + so the RPM was "3.70" but tarball was from 3.60 + * Fri Jul 17 2009 Michal Nowak - 3.70-1 - v3.7 - list libev soname explicitly Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 30 Apr 2009 07:39:49 -0000 1.7 +++ sources 17 Jul 2009 20:44:57 -0000 1.8 @@ -1 +1 @@ -40901d8d679cae4e42a15f5146bcf6a1 libev-3.6.tar.gz +8ad575ba379e3304b9b8b7e60a4ac0e0 libev-3.7.tar.gz From orion at fedoraproject.org Fri Jul 17 20:47:04 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Fri, 17 Jul 2009 20:47:04 +0000 (UTC) Subject: rpms/gridengine/devel gridengine-6.2u3-rctemplates.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 gridengine.spec, 1.16, 1.17 sources, 1.7, 1.8 gridengine-6.2u2_1-ppc.patch, 1.1, NONE gridengine-6.2u2_1-rctemplates.patch, 1.1, NONE Message-ID: <20090717204704.B693D11C00D3@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/gridengine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21539 Modified Files: .cvsignore gridengine.spec sources Added Files: gridengine-6.2u3-rctemplates.patch Removed Files: gridengine-6.2u2_1-ppc.patch gridengine-6.2u2_1-rctemplates.patch Log Message: * Fri Jul 14 2009 - Orion Poplawski - 6.2u3-1 - Update to 6.2u3 - Drop ppc patch fixed upstream - Update rctemplates patch gridengine-6.2u3-rctemplates.patch: dist/inst_sge | 26 +-------------- dist/util/create_settings.sh | 51 +----------------------------- dist/util/install_modules/inst_common.sh | 24 +++++++++----- dist/util/install_modules/inst_execd.sh | 2 - dist/util/install_modules/inst_qmaster.sh | 14 +++++--- scripts/distinst | 8 ---- 6 files changed, 31 insertions(+), 94 deletions(-) --- NEW FILE gridengine-6.2u3-rctemplates.patch --- --- gridengine/source/dist/inst_sge.rctemplates 2009-05-29 08:07:35.000000000 -0600 +++ gridengine/source/dist/inst_sge 2009-07-10 16:29:02.140276889 -0600 @@ -672,8 +672,7 @@ fi AddJMXFiles RestoreSequenceNumberFiles $QMDIR #Restore jobseqnum and arseqnum - CreateSGEStartUpScripts $euid true master - CreateSGEStartUpScripts $euid true execd + SetupDefaultUsers $euid CreateSettingsFile InitCA SetupRcScriptNames master #New qmaster RC script/SMF @@ -826,7 +825,6 @@ Makedir $COMMONDIR ProcessSGEClusterName "bdb" SetSpoolingOptions - AddSGEStartUpScript $euid "bdb" PrepareRPCServerStart GiveBerkelyHints else @@ -878,11 +876,9 @@ AddDefaultUsersets AddCommonFiles AddJMXFiles - CreateSGEStartUpScripts $euid true master - CreateSGEStartUpScripts $euid true execd + SetupDefaultUsers $euid CreateSettingsFile InitCA - AddSGEStartUpScript $euid master StartQmaster AddWindowsAdmin AddHosts @@ -1050,7 +1046,6 @@ GetLocalExecdSpoolDir AddLocalConfiguration_With_Qconf AddSubmitHostsExecd - AddSGEStartUpScript $euid execd SetupWinSvc execinst #service install during execd installation -> param: execinst CopyIBMLoadSensor StartExecd @@ -1086,7 +1081,6 @@ CheckHostNameResolving install GetLocalExecdSpoolDir AddLocalConfiguration_With_Qconf - AddSGEStartUpScript $euid execd SetupWinSvc execinst #service install during execd installation -> param: execinst CopyIBMLoadSensor StartExecd @@ -1399,7 +1393,6 @@ if [ $SHADOW_HOST = `$SGE_UTILBIN/gethostname -aname` ]; then . $SGE_ROOT/$SGE_CELL/common/settings.sh SGE_ARCH=`$SGE_ROOT/util/arch` - AddSGEStartUpScript $euid shadow $INFOTEXT "Starting sge_shadowd on host %s\n" $SHADOW_HOST $INFOTEXT -log "Starting sge_shadowd on host %s\n" $SHADOW_HOST if [ "$SGE_ENABLE_SMF" = "true" ]; then @@ -1617,20 +1610,7 @@ COMMONDIR=$SGE_CELL/common - CreateSGEStartUpScripts 0 true master - CreateSGEStartUpScripts 0 true execd - - $INFOTEXT "\nYour new startup scripts are created. You will find them in the\n" \ - "directory:\n\n" \ - " %s\n\n" \ - "Your old startup scripts are saved in this directory as\n\n" \ - " %s\n" \ - " %s\n\n" \ - \$SGE_ROOT/$COMMONDIR sgemaster_$DATE sgeexecd_$DATE - - $INFOTEXT "Please now copy the new startup scripts to the system wide rc\n" \ - "file location on all qmaster, shadowd and execution hosts." - + SetupDefaultUser 0 fi exit 0 --- gridengine/source/dist/util/create_settings.sh.rctemplates 2008-02-08 04:57:29.000000000 -0700 +++ gridengine/source/dist/util/create_settings.sh 2009-07-10 16:23:36.034277424 -0600 @@ -67,8 +67,6 @@ echo "setenv SGE_ROOT $SGE_ROOT" > $SP_CSH echo "" >> $SP_CSH echo "set ARCH = \`\$SGE_ROOT/util/arch\`" >> $SP_CSH -echo "set DEFAULTMANPATH = \`\$SGE_ROOT/util/arch -m\`" >> $SP_CSH -echo "set MANTYPE = \`\$SGE_ROOT/util/arch -mt\`" >> $SP_CSH echo "" >> $SP_CSH #if [ "$SGE_CELL" != "" -a "$SGE_CELL" != "default" ]; then @@ -93,31 +91,9 @@ echo "" >> $SP_CSH -echo '# library path setting required only for architectures where RUNPATH is not supported' >> $SP_CSH -echo 'if ( $?MANPATH == 1 ) then' >> $SP_CSH -echo " setenv MANPATH \$SGE_ROOT/"'${MANTYPE}':'$MANPATH' >> $SP_CSH -echo "else" >> $SP_CSH -echo " setenv MANPATH \$SGE_ROOT/"'${MANTYPE}:$DEFAULTMANPATH' >> $SP_CSH -echo "endif" >> $SP_CSH -echo "" >> $SP_CSH echo "set path = ( \$SGE_ROOT/bin/"'$ARCH $path )' >> $SP_CSH -echo 'switch ($ARCH)' >> $SP_CSH -#ENFORCE_SHLIBPATH#echo 'case "sol*":' >> $SP_CSH -#ENFORCE_SHLIBPATH#echo 'case "lx*":' >> $SP_CSH -#ENFORCE_SHLIBPATH#echo 'case "hp11-64":' >> $SP_CSH -#ENFORCE_SHLIBPATH#echo ' breaksw' >> $SP_CSH -echo 'case "*":' >> $SP_CSH -echo " set shlib_path_name = \`\$SGE_ROOT/util/arch -lib\`" >> $SP_CSH -echo " if ( \`eval echo '\$?'\$shlib_path_name\` ) then" >> $SP_CSH -echo " set old_value = \`eval echo '\$'\$shlib_path_name\`" >> $SP_CSH -echo " setenv \$shlib_path_name \"\$SGE_ROOT/lib/\$ARCH\":\"\$old_value\"" >> $SP_CSH -echo " else" >> $SP_CSH -echo " setenv \$shlib_path_name \$SGE_ROOT/lib/\$ARCH" >> $SP_CSH -echo " endif" >> $SP_CSH -echo " unset shlib_path_name old_value" >> $SP_CSH -echo "endsw" >> $SP_CSH -echo "unset ARCH DEFAULTMANPATH MANTYPE" >> $SP_CSH +echo "unset ARCH" >> $SP_CSH # # bourne shell settings file @@ -126,8 +102,6 @@ echo "SGE_ROOT=$SGE_ROOT; export SGE_ROOT" > $SP_SH echo "" >> $SP_SH echo "ARCH=\`\$SGE_ROOT/util/arch\`" >> $SP_SH -echo "DEFAULTMANPATH=\`\$SGE_ROOT/util/arch -m\`" >> $SP_SH -echo "MANTYPE=\`\$SGE_ROOT/util/arch -mt\`" >> $SP_SH echo "" >> $SP_SH if [ "$SGE_CELL" != "" ]; then @@ -151,28 +125,7 @@ echo "" >> $SP_SH -echo "if [ \"\$MANPATH\" = \"\" ]; then" >> $SP_SH -echo " MANPATH=\$DEFAULTMANPATH" >> $SP_SH -echo "fi" >> $SP_SH -echo "MANPATH=\$SGE_ROOT/\$MANTYPE:\$MANPATH; export MANPATH" >> $SP_SH -echo "" >> $SP_SH echo "PATH=\$SGE_ROOT/bin/\$ARCH:\$PATH; export PATH" >> $SP_SH -echo '# library path setting required only for architectures where RUNPATH is not supported' >> $SP_SH -echo 'case $ARCH in' >> $SP_SH -#ENFORCE_SHLIBPATH#echo 'sol*|lx*|hp11-64)' >> $SP_SH -#ENFORCE_SHLIBPATH#echo ' ;;' >> $SP_SH -echo '*)' >> $SP_SH -echo " shlib_path_name=\`\$SGE_ROOT/util/arch -lib\`" >> $SP_SH -echo " old_value=\`eval echo '\$'\$shlib_path_name\`" >> $SP_SH -echo " if [ x\$old_value = "x" ]; then" >> $SP_SH -echo " eval \$shlib_path_name=\$SGE_ROOT/lib/\$ARCH" >> $SP_SH -echo " else" >> $SP_SH -echo " eval \$shlib_path_name=\$SGE_ROOT/lib/\$ARCH:\$old_value" >> $SP_SH -echo " fi" >> $SP_SH -echo " export \$shlib_path_name" >> $SP_SH -echo ' unset shlib_path_name old_value' >> $SP_SH -echo ' ;;' >> $SP_SH -echo 'esac' >> $SP_SH -echo "unset ARCH DEFAULTMANPATH MANTYPE" >> $SP_SH +echo "unset ARCH" >> $SP_SH --- gridengine/source/dist/util/install_modules/inst_common.sh.rctemplates 2009-07-10 16:23:36.009273343 -0600 +++ gridengine/source/dist/util/install_modules/inst_common.sh 2009-07-10 16:23:36.019274266 -0600 @@ -2232,14 +2232,6 @@ rm -f $TMP_SGE_STARTUP_FILE ${TMP_SGE_STARTUP_FILE}.0 ${TMP_SGE_STARTUP_FILE}.1 - if [ $euid = 0 -a "$ADMINUSER" != default -a $QMASTER = "install" -a $hosttype = "master" ]; then - AddDefaultManager root $ADMINUSER - AddDefaultOperator $ADMINUSER - elif [ $euid != 0 -a $hosttype = "master" ]; then - AddDefaultManager $USER - AddDefaultOperator $USER - fi - $INFOTEXT "Creating >%s< script" $STARTUP_FILE_NAME fi @@ -2247,6 +2239,22 @@ #------------------------------------------------------------------------- +# SetupDefaultUsers: Add the default manager and operator +# +SetupDefaultUsers() { + euid=$1 + + if [ $euid = 0 -a "$ADMINUSER" != default -a $QMASTER = "install" ]; then + AddDefaultManager root $ADMINUSER + AddDefaultOperator $ADMINUSER + elif [ $euid != 0 ]; then + AddDefaultManager $USER + AddDefaultOperator $USER + fi +} + + +#------------------------------------------------------------------------- # AddSGEStartUpScript: Add startup script to rc files if root installs # AddSGEStartUpScript() --- gridengine/source/dist/util/install_modules/inst_execd.sh.rctemplates 2009-07-10 16:23:35.866210020 -0600 +++ gridengine/source/dist/util/install_modules/inst_execd.sh 2009-07-10 16:23:36.032273670 -0600 @@ -457,7 +457,7 @@ exit 1 fi else - $SGE_STARTUP_FILE + /sbin/service sge_execd start fi $INFOTEXT -wait -auto $AUTO -n "\nHit to continue >> " $CLEAR --- gridengine/source/dist/util/install_modules/inst_qmaster.sh.rctemplates 2009-07-10 16:23:35.912272484 -0600 +++ gridengine/source/dist/util/install_modules/inst_qmaster.sh 2009-07-10 16:28:11.977211795 -0600 @@ -198,8 +198,8 @@ "Grid Engine Installation and Administration Manual for details) the account\n" \ "on the shadow master hosts also needs read/write access to this directory.\n\n" \ "The following directory\n\n [%s]\n\n will be used as qmaster spool directory by default!\n" \ - $SGE_ROOT_VAL/$SGE_CELL_VAL/spool/qmaster - QMDIR=$SGE_ROOT_VAL/$SGE_CELL_VAL/spool/qmaster + /var/spool/gridengine/$SGE_CELL_VAL/qmaster + QMDIR=/var/spool/gridengine/$SGE_CELL_VAL/qmaster $INFOTEXT -auto $AUTO -ask "y" "n" -def "n" -n \ "Do you want to select another qmaster spool directory (y/n) [n] >> " @@ -208,7 +208,7 @@ done=true else $INFOTEXT -n "Please enter a qmaster spool directory now! >>" - QMDIR=`Enter $SGE_ROOT_VAL/$SGE_CELL_VAL/spool/qmaster` + QMDIR=`Enter /var/spool/gridengine/$SGE_CELL_VAL/qmaster` done=true fi done @@ -721,6 +721,9 @@ ExecuteAsAdmin chmod 666 $COMMONDIR/bootstrap PrintBootstrap >> $COMMONDIR/bootstrap ExecuteAsAdmin chmod 444 $COMMONDIR/bootstrap + rm -f /etc/sysconfig/gridengine + echo "SGE_ROOT=/usr/share/gridengine" >> /etc/sysconfig/gridengine + echo "SGE_CELL=$SGE_CELL" >> /etc/sysconfig/gridengine } #------------------------------------------------------------------------- @@ -937,7 +940,7 @@ fi if [ -z "$1" ]; then - default_value=$SGE_ROOT_VAL/$SGE_CELL_VAL/spool + default_value=/var/spool/gridengine/$SGE_CELL_VAL else default_value="$1" fi @@ -1180,6 +1183,7 @@ touch /tmp/pwfile.$$ chmod 600 /tmp/pwfile.$$ echo "$SGE_JMX_SSL_KEYSTORE_PW" > /tmp/pwfile.$$ + ExecuteAsAdmin mkdir -p `dirname $SGE_JMX_SSL_KEYSTORE` OUTPUT=`$SGE_CA_CMD -sysks -ksout $SGE_JMX_SSL_KEYSTORE -kspwf /tmp/pwfile.$$ 2>&1` if [ $? != 0 ]; then $INFOTEXT "Error: Cannot create keystore $SGE_JMX_SSL_KEYSTORE\n$OUTPUT" @@ -1249,7 +1253,7 @@ exit 1 fi else - $SGE_STARTUP_FILE -qmaster + /sbin/service sgemaster start if [ $? -ne 0 ]; then $INFOTEXT -log "sge_qmaster start problem" MoveLog --- gridengine/source/scripts/distinst.rctemplates 2009-04-22 09:02:50.000000000 -0600 +++ gridengine/source/scripts/distinst 2009-07-10 16:30:36.022216419 -0600 @@ -816,15 +816,9 @@ Execute cp libs/jgdi/util/logging.properties.template $DEST_SGE_ROOT/util if [ $enforce_shlibpath = true ]; then Execute grep -v "#ENFORCE_SHLIBPATH#" dist/util/create_settings.sh > $DEST_SGE_ROOT/util/create_settings.sh - Execute grep -v "#ENFORCE_SHLIBPATH#" dist/util/rctemplates/sgemaster_template > $DEST_SGE_ROOT/util/rctemplates/sgemaster_template - Execute grep -v "#ENFORCE_SHLIBPATH#" dist/util/rctemplates/sgeexecd_template > $DEST_SGE_ROOT/util/rctemplates/sgeexecd_template - Execute grep -v "#ENFORCE_SHLIBPATH#" dist/util/rctemplates/sgebdb_template > $DEST_SGE_ROOT/util/rctemplates/sgebdb_template Execute grep -v "#ENFORCE_SHLIBPATH#" dist/util/install_modules/inst_common.sh > $DEST_SGE_ROOT/util/install_modules/inst_common.sh else Execute sed -e "s/#ENFORCE_SHLIBPATH#//" dist/util/create_settings.sh > $DEST_SGE_ROOT/util/create_settings.sh - Execute sed -e "s/#ENFORCE_SHLIBPATH#//" dist/util/rctemplates/sgemaster_template > $DEST_SGE_ROOT/util/rctemplates/sgemaster_template - Execute sed -e "s/#ENFORCE_SHLIBPATH#//" dist/util/rctemplates/sgeexecd_template > $DEST_SGE_ROOT/util/rctemplates/sgeexecd_template - Execute sed -e "s/#ENFORCE_SHLIBPATH#//" dist/util/rctemplates/sgebdb_template > $DEST_SGE_ROOT/util/rctemplates/sgebdb_template Execute sed -e "s/#ENFORCE_SHLIBPATH#//" dist/util/install_modules/inst_common.sh > $DEST_SGE_ROOT/util/install_modules/inst_common.sh fi # DetectJvmLibrary @@ -843,7 +837,6 @@ Execute chmod 755 $DEST_SGE_ROOT/util/install_modules \ $DEST_SGE_ROOT/util/upgrade_modules \ - $DEST_SGE_ROOT/util/rctemplates \ $DEST_SGE_ROOT/util/resources \ $DEST_SGE_ROOT/util/sgeCA \ $DEST_SGE_ROOT/util/resources/calendars \ @@ -868,7 +861,6 @@ $DEST_SGE_ROOT/util/resources/starter_methods/* Execute chmod 644 $DEST_SGE_ROOT/util/install_modules/* \ - $DEST_SGE_ROOT/util/rctemplates/* \ $DEST_SGE_ROOT/util/sgeCA/*.cnf \ $DEST_SGE_ROOT/util/sgeSMF/*.xml \ $DEST_SGE_ROOT/util/sgeSMF/sge_smf_support.sh \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 6 Apr 2009 18:49:08 -0000 1.6 +++ .cvsignore 17 Jul 2009 20:47:04 -0000 1.7 @@ -1 +1,3 @@ ge-V62u2_1_TAG-src.tar.gz +ge-V623_TAG-src-all_modules.tar.gz +ge-V62u3_TAG-src.tar.gz Index: gridengine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/gridengine.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gridengine.spec 6 Apr 2009 21:19:13 -0000 1.16 +++ gridengine.spec 17 Jul 2009 20:47:04 -0000 1.17 @@ -5,7 +5,7 @@ %define gecos Grid Engine Name: gridengine -Version: 6.2u2_1 +Version: 6.2u3 Release: 1%{?dist} Summary: Grid Engine - Distributed Computing Management software @@ -18,7 +18,8 @@ Group: Applications/System # which is not used or linked by other parts of gridengine. License: (BSD and LGPLv2+ and MIT and SISSL) and GPLv2+ and BSD with advertising URL: http://gridengine.sunsource.net/ -Source0: http://gridengine.sunsource.net/files/documents/7/197/ge-V62u2_1_TAG-src.tar.gz +#Source0 is in Source12 +Source0: ge-V62u3_TAG-src.tar.gz Source1: gridengine-ppc.tar.gz Source2: my_configuration.conf Source3: sge.csh @@ -30,6 +31,8 @@ Source8: Licenses Source9: gridengine.sysconfig Source10: http://gridengine.sunsource.net/nonav/issues/showattachment.cgi/165/libcore.c Source11: README +# This time, they packaged everything into this bundle +Source12: http://gridengine.sunsource.net/files/documents/7/203/ge-V623_TAG-src-all_modules.tar.gz # Link ssl libraries dynamically so dependencies are pulled in # http://gridengine.sunsource.net/issues/show_bug.cgi?id=2845 Patch1: gridengine-6.2beta-ssl.patch @@ -37,7 +40,7 @@ Patch1: gridengine-6.2beta-ssl.patch Patch2: gridengine-6.2beta-inst.patch # Don't need to make rc files in inst_common.sh # Partially http://gridengine.sunsource.net/issues/show_bug.cgi?id=2780 -Patch3: gridengine-6.2u2_1-rctemplates.patch +Patch3: gridengine-6.2u3-rctemplates.patch # Fixup sge_ca to use system openssl and java paths Patch4: gridengine-6.2u2_1-sge_ca.patch # Fixup jni paths @@ -53,9 +56,6 @@ Patch8: gridengine-6.2-import.patch # Rename getline() to sge_getline() # http://gridengine.sunsource.net/issues/show_bug.cgi?id=2980 Patch9: gridengine-6.2u2_1-getline.patch -# Linux ppc build issue -# http://gridengine.sunsource.net/issues/show_bug.cgi?id=2981 -Patch10: gridengine-6.2u2_1-ppc.patch # Support lesstif - http://gridengine.sunsource.net/issues/show_bug.cgi?id=2310 Patch15: gridengine-6.2beta2-lesstif.patch # Make inst_sge exit with status 1 if usage is incorrect @@ -68,8 +68,6 @@ Patch22: gridengine-6.2u2_1-rpath.patch Patch25: gridengine-6.2u2_1-libs.patch # Handle ignoring return codes Patch26: gridengine-6.2beta2-error.patch -# Handle packaged izpack -Patch27: gridengine-6.2u2_1-izpack.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: /bin/csh, openssl-devel, db4-devel, ncurses-devel, pam-devel @@ -162,7 +160,7 @@ Programs needed to run a grid engine qma %prep -%setup -q -n gridengine -a 1 +%setup -q -n gridengine -b 12 -a 1 #Copy Licenses and README file into build directory cp %SOURCE8 %SOURCE11 . #Remove unneeded shbangs @@ -176,7 +174,6 @@ sed -i -e '/^#! *\/bin\/sh/d' source/dis %patch7 -p1 -b .Werror %patch8 -p1 -b .import %patch9 -p1 -b .getline -%patch10 -p1 -b .ppc %if !0%{?rhel} %patch15 -p1 -b .lesstif %endif @@ -184,7 +181,6 @@ sed -i -e '/^#! *\/bin\/sh/d' source/dis %patch22 -p1 -b .rpath %patch25 -p1 -b .libs %patch26 -p1 -b .error -%patch27 -p1 -b .izpack sed -i.arch -e 's,/\$DSTARCH,,g' source/scripts/distinst #Don't ship rctemplates rm -rf source/dist/util/rctemplates @@ -544,6 +540,11 @@ fi %changelog +* Fri Jul 14 2009 - Orion Poplawski - 6.2u3-1 +- Update to 6.2u3 +- Drop ppc patch fixed upstream +- Update rctemplates patch + * Mon Apr 6 2009 - Orion Poplawski - 6.2u2_1-1 - Update to 6.2u2_1 - Rebase several patches Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 6 Apr 2009 18:49:08 -0000 1.7 +++ sources 17 Jul 2009 20:47:04 -0000 1.8 @@ -1,2 +1,2 @@ 5ba34d534cdeda9afe74cd367cb51ce0 gridengine-ppc.tar.gz -5340a5f6c260a819ba224ad5fe3cba45 ge-V62u2_1_TAG-src.tar.gz +1020a8b4849a6edcfbadc723749690c8 ge-V623_TAG-src-all_modules.tar.gz --- gridengine-6.2u2_1-ppc.patch DELETED --- --- gridengine-6.2u2_1-rctemplates.patch DELETED --- From slankes at fedoraproject.org Fri Jul 17 20:47:39 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Fri, 17 Jul 2009 20:47:39 +0000 (UTC) Subject: rpms/psi/devel .cvsignore, 1.15, 1.16 psi.spec, 1.33, 1.34 sources, 1.18, 1.19 Message-ID: <20090717204739.3931C11C00D3@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21580 Modified Files: .cvsignore psi.spec sources Log Message: * Fri Jul 17 2009 Sven Lankes 0.13-0.2.rc4 - 0.13 rc4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 13 Jul 2009 18:00:48 -0000 1.15 +++ .cvsignore 17 Jul 2009 20:47:08 -0000 1.16 @@ -1 +1 @@ -psi-0.13-rc3.tar.bz2 +psi-0.13-rc4.tar.bz2 Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- psi.spec 13 Jul 2009 18:00:49 -0000 1.33 +++ psi.spec 17 Jul 2009 20:47:09 -0000 1.34 @@ -1,11 +1,11 @@ Name: psi Version: 0.13 -Release: 0.2.rc3%{?dist} +Release: 0.2.rc4%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet URL: http://psi-im.org -Source0: http://dl.sf.net/psi/psi-%{version}-rc3.tar.bz2 +Source0: http://dl.sf.net/psi/psi-%{version}-rc4.tar.bz2 Patch0: psi-0.12-qca.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -66,7 +66,7 @@ More icons can be found on http://jisp.n %prep -%setup -q -n %{name}-%{version}-rc3 +%setup -q -n %{name}-%{version}-rc4 %patch0 -p0 -b .qca %build @@ -145,6 +145,9 @@ fi %changelog +* Fri Jul 17 2009 Sven Lankes 0.13-0.2.rc4 +- 0.13 rc4 + * Mon Jul 13 2009 Sven Lankes 0.13-0.2.rc3 - 0.13 rc3 - remove qt 4.5 patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 13 Jul 2009 18:13:37 -0000 1.18 +++ sources 17 Jul 2009 20:47:09 -0000 1.19 @@ -1,4 +1,4 @@ -8632e1d1940f5b153876bbb93c565a4e psi-0.13-rc3.tar.bz2 +eda90920c35b8a6fbf194c86adc2e8f3 psi-0.13-rc4.tar.bz2 1b4b3374c676c330c87e2ef0cd9109fa emoticons-0.10.tar.gz 054311487f6bad8e749b6034461bb293 psi-lang-packs-0.12.tar.gz 51386c12abbee7100f092455bfb88bf1 rostericons-0.10.tar.gz From pkgdb at fedoraproject.org Fri Jul 17 20:49:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:49:43 +0000 Subject: [pkgdb] 389-ds-console was added for rmeggins Message-ID: <20090717204943.7314310F89C@bastion2.fedora.phx.redhat.com> ausil has added Package 389-ds-console with summary 389 Directory Server Management Console ausil has approved Package 389-ds-console ausil has added a Fedora devel branch for 389-ds-console with an owner of rmeggins ausil has approved 389-ds-console in Fedora devel ausil has approved Package 389-ds-console ausil has set commit to Approved for 107427 on 389-ds-console (Fedora devel) ausil has set checkout to Approved for 107427 on 389-ds-console (Fedora devel) ausil has set build to Approved for 107427 on 389-ds-console (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds-console From pkgdb at fedoraproject.org Fri Jul 17 20:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:49:45 +0000 Subject: [pkgdb] 389-ds-console summary updated by ausil Message-ID: <20090717204945.7B26B10F8A5@bastion2.fedora.phx.redhat.com> ausil set package 389-ds-console summary to 389 Directory Server Management Console To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds-console From pkgdb at fedoraproject.org Fri Jul 17 20:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:49:45 +0000 Subject: [pkgdb] 389-ds-console (Fedora, 11) updated by ausil Message-ID: <20090717204945.9977A10F8AC@bastion2.fedora.phx.redhat.com> ausil approved watchbugzilla on 389-ds-console (Fedora devel) for nhosoi ausil approved watchcommits on 389-ds-console (Fedora devel) for nhosoi ausil approved commit on 389-ds-console (Fedora devel) for nhosoi ausil approved build on 389-ds-console (Fedora devel) for nhosoi ausil approved approveacls on 389-ds-console (Fedora devel) for nhosoi ausil approved watchbugzilla on 389-ds-console (Fedora devel) for nkinder ausil approved watchcommits on 389-ds-console (Fedora devel) for nkinder ausil approved commit on 389-ds-console (Fedora devel) for nkinder ausil approved build on 389-ds-console (Fedora devel) for nkinder ausil approved approveacls on 389-ds-console (Fedora devel) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds-console From pkgdb at fedoraproject.org Fri Jul 17 20:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:49:45 +0000 Subject: [pkgdb] 389-ds-console (Fedora, 11) updated by ausil Message-ID: <20090717204945.C128C10F8B3@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for 389-ds-console ausil has set commit to Approved for 107427 on 389-ds-console (Fedora 11) ausil has set checkout to Approved for 107427 on 389-ds-console (Fedora 11) ausil has set build to Approved for 107427 on 389-ds-console (Fedora 11) ausil approved watchbugzilla on 389-ds-console (Fedora 11) for nhosoi ausil approved watchcommits on 389-ds-console (Fedora 11) for nhosoi ausil approved commit on 389-ds-console (Fedora 11) for nhosoi ausil approved build on 389-ds-console (Fedora 11) for nhosoi ausil approved approveacls on 389-ds-console (Fedora 11) for nhosoi ausil approved watchbugzilla on 389-ds-console (Fedora 11) for nkinder ausil approved watchcommits on 389-ds-console (Fedora 11) for nkinder ausil approved commit on 389-ds-console (Fedora 11) for nkinder ausil approved build on 389-ds-console (Fedora 11) for nkinder ausil approved approveacls on 389-ds-console (Fedora 11) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds-console From pkgdb at fedoraproject.org Fri Jul 17 20:49:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:49:45 +0000 Subject: [pkgdb] 389-ds-console (Fedora, 11) updated by ausil Message-ID: <20090717204945.CEAB810F8B7@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for 389-ds-console ausil has set commit to Approved for 107427 on 389-ds-console (Fedora 10) ausil has set checkout to Approved for 107427 on 389-ds-console (Fedora 10) ausil has set build to Approved for 107427 on 389-ds-console (Fedora 10) ausil approved watchbugzilla on 389-ds-console (Fedora 10) for nhosoi ausil approved watchcommits on 389-ds-console (Fedora 10) for nhosoi ausil approved commit on 389-ds-console (Fedora 10) for nhosoi ausil approved build on 389-ds-console (Fedora 10) for nhosoi ausil approved approveacls on 389-ds-console (Fedora 10) for nhosoi ausil approved watchbugzilla on 389-ds-console (Fedora 10) for nkinder ausil approved watchcommits on 389-ds-console (Fedora 10) for nkinder ausil approved commit on 389-ds-console (Fedora 10) for nkinder ausil approved build on 389-ds-console (Fedora 10) for nkinder ausil approved approveacls on 389-ds-console (Fedora 10) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds-console From ausil at fedoraproject.org Fri Jul 17 20:49:51 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:49:51 +0000 (UTC) Subject: rpms/389-ds-console - New directory Message-ID: <20090717204951.2792011C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds-console In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsc22674/rpms/389-ds-console Log Message: Directory /cvs/pkgs/rpms/389-ds-console added to the repository From ausil at fedoraproject.org Fri Jul 17 20:49:51 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:49:51 +0000 (UTC) Subject: rpms/389-ds-console/devel - New directory Message-ID: <20090717204951.47ADD11C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds-console/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsc22674/rpms/389-ds-console/devel Log Message: Directory /cvs/pkgs/rpms/389-ds-console/devel added to the repository From ausil at fedoraproject.org Fri Jul 17 20:49:57 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:49:57 +0000 (UTC) Subject: rpms/389-ds-console Makefile,NONE,1.1 Message-ID: <20090717204957.47B3E11C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds-console In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsc22674/rpms/389-ds-console Added Files: Makefile Log Message: Setup of module 389-ds-console --- NEW FILE Makefile --- # Top level Makefile for module 389-ds-console all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From thm at fedoraproject.org Fri Jul 17 20:49:51 2009 From: thm at fedoraproject.org (Thomas Moschny) Date: Fri, 17 Jul 2009 20:49:51 +0000 (UTC) Subject: rpms/ikiwiki/F-11 .cvsignore, 1.23, 1.24 ikiwiki.spec, 1.25, 1.26 import.log, 1.23, 1.24 sources, 1.23, 1.24 Message-ID: <20090717204951.6811B11C00D8@cvs1.fedora.phx.redhat.com> Author: thm Update of /cvs/pkgs/rpms/ikiwiki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22444/F-11 Modified Files: .cvsignore ikiwiki.spec import.log sources Log Message: Update to 3.1415. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/F-11/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 15 May 2009 21:18:16 -0000 1.23 +++ .cvsignore 17 Jul 2009 20:49:21 -0000 1.24 @@ -1 +1 @@ -ikiwiki_3.12.tar.gz +ikiwiki_3.1415.tar.gz Index: ikiwiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/F-11/ikiwiki.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- ikiwiki.spec 15 May 2009 21:18:16 -0000 1.25 +++ ikiwiki.spec 17 Jul 2009 20:49:21 -0000 1.26 @@ -1,5 +1,5 @@ Name: ikiwiki -Version: 3.12 +Version: 3.1415 Release: 1%{?dist} Summary: A wiki compiler @@ -143,6 +143,12 @@ meta-wrapper in this package. %changelog +* Fri Jul 17 2009 Thomas Moschny - 3.1415-1 +- Update to 3.1415. + +* Thu Jun 11 2009 Thomas Moschny - 3.14-1 +- Update to 3.14. + * Fri May 15 2009 Thomas Moschny - 3.12-1 - Update to 3.12. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/F-11/import.log,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- import.log 15 May 2009 21:18:16 -0000 1.23 +++ import.log 17 Jul 2009 20:49:21 -0000 1.24 @@ -21,3 +21,4 @@ ikiwiki-3_09-1_fc10:HEAD:ikiwiki-3.09-1. ikiwiki-3_10-1_fc10:F-11:ikiwiki-3.10-1.fc10.src.rpm:1240677044 ikiwiki-3_11-1_fc11:F-11:ikiwiki-3.11-1.fc11.src.rpm:1241508996 ikiwiki-3_12-1_fc11:F-11:ikiwiki-3.12-1.fc11.src.rpm:1242422225 +ikiwiki-3_1415-1_fc12:F-11:ikiwiki-3.1415-1.fc12.src.rpm:1247863732 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/F-11/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 15 May 2009 21:18:16 -0000 1.23 +++ sources 17 Jul 2009 20:49:21 -0000 1.24 @@ -1 +1 @@ -0ddfdad7c8f7a83b739ec886eb16a60f ikiwiki_3.12.tar.gz +db35d8f3c526b80648a3d34316d6a5f3 ikiwiki_3.1415.tar.gz From ausil at fedoraproject.org Fri Jul 17 20:49:57 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:49:57 +0000 (UTC) Subject: rpms/389-ds-console/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717204957.AD37311C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds-console/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsc22674/rpms/389-ds-console/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module 389-ds-console --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: 389-ds-console # $Id: Makefile,v 1.1 2009/07/17 20:49:57 ausil Exp $ NAME := 389-ds-console SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 17 20:54:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:54:17 +0000 Subject: [pkgdb] 389-ds was added for rmeggins Message-ID: <20090717205417.1197310F8A6@bastion2.fedora.phx.redhat.com> ausil has added Package 389-ds with summary 389 Directory, Administration, and Console Suite ausil has approved Package 389-ds ausil has added a Fedora devel branch for 389-ds with an owner of rmeggins ausil has approved 389-ds in Fedora devel ausil has approved Package 389-ds ausil has set commit to Approved for 107427 on 389-ds (Fedora devel) ausil has set checkout to Approved for 107427 on 389-ds (Fedora devel) ausil has set build to Approved for 107427 on 389-ds (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds From pkgdb at fedoraproject.org Fri Jul 17 20:54:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:54:19 +0000 Subject: [pkgdb] 389-ds summary updated by ausil Message-ID: <20090717205419.88FF310F8AD@bastion2.fedora.phx.redhat.com> ausil set package 389-ds summary to 389 Directory, Administration, and Console Suite To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds From pkgdb at fedoraproject.org Fri Jul 17 20:54:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:54:19 +0000 Subject: [pkgdb] 389-ds (Fedora, 11) updated by ausil Message-ID: <20090717205419.94CF610F8B3@bastion2.fedora.phx.redhat.com> ausil added a Fedora 11 branch for 389-ds ausil has set commit to Approved for 107427 on 389-ds (Fedora 11) ausil has set checkout to Approved for 107427 on 389-ds (Fedora 11) ausil has set build to Approved for 107427 on 389-ds (Fedora 11) ausil approved watchbugzilla on 389-ds (Fedora 11) for nhosoi ausil approved watchcommits on 389-ds (Fedora 11) for nhosoi ausil approved commit on 389-ds (Fedora 11) for nhosoi ausil approved build on 389-ds (Fedora 11) for nhosoi ausil approved approveacls on 389-ds (Fedora 11) for nhosoi ausil approved watchbugzilla on 389-ds (Fedora 11) for nkinder ausil approved watchcommits on 389-ds (Fedora 11) for nkinder ausil approved commit on 389-ds (Fedora 11) for nkinder ausil approved build on 389-ds (Fedora 11) for nkinder ausil approved approveacls on 389-ds (Fedora 11) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds From pkgdb at fedoraproject.org Fri Jul 17 20:54:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:54:19 +0000 Subject: [pkgdb] 389-ds (Fedora, 11) updated by ausil Message-ID: <20090717205419.E588010F8BA@bastion2.fedora.phx.redhat.com> ausil added a Fedora 10 branch for 389-ds ausil has set commit to Approved for 107427 on 389-ds (Fedora 10) ausil has set checkout to Approved for 107427 on 389-ds (Fedora 10) ausil has set build to Approved for 107427 on 389-ds (Fedora 10) ausil approved watchbugzilla on 389-ds (Fedora 10) for nhosoi ausil approved watchcommits on 389-ds (Fedora 10) for nhosoi ausil approved commit on 389-ds (Fedora 10) for nhosoi ausil approved build on 389-ds (Fedora 10) for nhosoi ausil approved approveacls on 389-ds (Fedora 10) for nhosoi ausil approved watchbugzilla on 389-ds (Fedora 10) for nkinder ausil approved watchcommits on 389-ds (Fedora 10) for nkinder ausil approved commit on 389-ds (Fedora 10) for nkinder ausil approved build on 389-ds (Fedora 10) for nkinder ausil approved approveacls on 389-ds (Fedora 10) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds From pkgdb at fedoraproject.org Fri Jul 17 20:54:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 20:54:19 +0000 Subject: [pkgdb] 389-ds (Fedora, 11) updated by ausil Message-ID: <20090717205420.34A5910F8BE@bastion2.fedora.phx.redhat.com> ausil approved watchbugzilla on 389-ds (Fedora devel) for nhosoi ausil approved watchcommits on 389-ds (Fedora devel) for nhosoi ausil approved commit on 389-ds (Fedora devel) for nhosoi ausil approved build on 389-ds (Fedora devel) for nhosoi ausil approved approveacls on 389-ds (Fedora devel) for nhosoi ausil approved watchbugzilla on 389-ds (Fedora devel) for nkinder ausil approved watchcommits on 389-ds (Fedora devel) for nkinder ausil approved commit on 389-ds (Fedora devel) for nkinder ausil approved build on 389-ds (Fedora devel) for nkinder ausil approved approveacls on 389-ds (Fedora devel) for nkinder To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/389-ds From ausil at fedoraproject.org Fri Jul 17 20:54:26 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:54:26 +0000 (UTC) Subject: rpms/389-ds - New directory Message-ID: <20090717205426.20E5311C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsA24404/rpms/389-ds Log Message: Directory /cvs/pkgs/rpms/389-ds added to the repository From ausil at fedoraproject.org Fri Jul 17 20:54:26 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:54:26 +0000 (UTC) Subject: rpms/389-ds/devel - New directory Message-ID: <20090717205426.3B87D11C00D6@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsA24404/rpms/389-ds/devel Log Message: Directory /cvs/pkgs/rpms/389-ds/devel added to the repository From ausil at fedoraproject.org Fri Jul 17 20:54:32 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:54:32 +0000 (UTC) Subject: rpms/389-ds Makefile,NONE,1.1 Message-ID: <20090717205432.1C67C11C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsA24404/rpms/389-ds Added Files: Makefile Log Message: Setup of module 389-ds --- NEW FILE Makefile --- # Top level Makefile for module 389-ds all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From ausil at fedoraproject.org Fri Jul 17 20:54:32 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 20:54:32 +0000 (UTC) Subject: rpms/389-ds/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090717205432.7963E11C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/389-ds/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/ausil/CVSROOT/admin/tmpcvsA24404/rpms/389-ds/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module 389-ds --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: 389-ds # $Id: Makefile,v 1.1 2009/07/17 20:54:32 ausil Exp $ NAME := 389-ds SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From karsten at fedoraproject.org Fri Jul 17 20:57:52 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Fri, 17 Jul 2009 20:57:52 +0000 (UTC) Subject: rpms/hdparm/F-11 hdparm-9.16-nostrip.patch, NONE, 1.1 .cvsignore, 1.21, 1.22 hdparm.spec, 1.46, 1.47 sources, 1.22, 1.23 hdparm-9.8-nostrip.patch, 1.1, NONE Message-ID: <20090717205752.BBEAC11C00D3@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/hdparm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25460 Modified Files: .cvsignore hdparm.spec sources Added Files: hdparm-9.16-nostrip.patch Removed Files: hdparm-9.8-nostrip.patch Log Message: - update to 9.16, fixes disk spindowns hdparm-9.16-nostrip.patch: Makefile | 1 - 1 file changed, 1 deletion(-) --- NEW FILE hdparm-9.16-nostrip.patch --- diff -up hdparm-9.16/Makefile.nostrip hdparm-9.16/Makefile --- hdparm-9.16/Makefile.nostrip 2009-07-17 22:52:36.000000000 +0200 +++ hdparm-9.16/Makefile 2009-07-17 22:52:42.000000000 +0200 @@ -28,7 +28,6 @@ all: hdparm hdparm: hdparm.h sgio.h $(OBJS) $(CC) $(LDFLAGS) -o hdparm $(OBJS) - $(STRIP) hdparm hdparm.o: hdparm.h sgio.h Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/hdparm/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 4 Mar 2009 20:56:05 -0000 1.21 +++ .cvsignore 17 Jul 2009 20:57:22 -0000 1.22 @@ -1 +1 @@ -hdparm-9.12.tar.gz +hdparm-9.16.tar.gz Index: hdparm.spec =================================================================== RCS file: /cvs/extras/rpms/hdparm/F-11/hdparm.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- hdparm.spec 4 Mar 2009 20:56:05 -0000 1.46 +++ hdparm.spec 17 Jul 2009 20:57:22 -0000 1.47 @@ -1,12 +1,12 @@ Summary: A utility for displaying and/or setting hard disk parameters Name: hdparm -Version: 9.12 +Version: 9.16 Release: 1%{?dist} License: BSD Group: Applications/System URL: http://sourceforge.net/projects/hdparm/ Source: http://download.sourceforge.net/hdparm/hdparm-%{version}.tar.gz -Patch0: hdparm-9.8-nostrip.patch +Patch0: hdparm-9.16-nostrip.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExcludeArch: s390 s390x @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/hdparm.8* %changelog +* Fri Jul 17 2009 Karsten Hopp 9.16-1 +- update to 9.16, fixes disk spindowns + * Wed Mar 04 2009 Karsten Hopp 9.12-1 - update to 9.12 to fix #488560 Index: sources =================================================================== RCS file: /cvs/extras/rpms/hdparm/F-11/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 4 Mar 2009 20:56:05 -0000 1.22 +++ sources 17 Jul 2009 20:57:22 -0000 1.23 @@ -1 +1 @@ -4064cb2cc60b7bbdcea02ec163631068 hdparm-9.12.tar.gz +d11e2158c4ca8863de830f686574a4a3 hdparm-9.16.tar.gz --- hdparm-9.8-nostrip.patch DELETED --- From rmeggins at fedoraproject.org Fri Jul 17 21:00:47 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:00:47 +0000 (UTC) Subject: rpms/389-adminutil/devel 389-adminutil.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717210047.CE1FA11C00D6@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-adminutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26614/devel Modified Files: .cvsignore sources Added Files: 389-adminutil.spec import.log Log Message: initial commit --- NEW FILE 389-adminutil.spec --- Summary: Utility library for 389 administration Name: 389-adminutil Version: 1.1.8 Release: 2%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: nspr-devel BuildRequires: nss-devel BuildRequires: svrcore-devel BuildRequires: mozldap-devel BuildRequires: libicu-devel BuildRequires: icu Provides: adminutil = %{version}-%{release} Obsoletes: adminutil < 1.1.8-2 Source0: http://port389.org/sources/%{name}-%{version}.tar.bz2 %description %{name} is libraries of functions used to administer directory servers, usually in conjunction with the admin server. %{name} is broken into two libraries - libadminutil contains the basic functionality, and libadmsslutil contains SSL versions and wrappers around the basic functions. The PSET functions allow applications to store their preferences and configuration parameters in LDAP, without having to know anything about LDAP. The configuration is cached in a local file, allowing applications to function even if the LDAP server is down. The other code is typically used by CGI programs used for directory server management, containing GET/POST processing code as well as resource handling (ICU ures API). %package devel Summary: Development and header files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: nspr-devel Requires: nss-devel Requires: svrcore-devel Requires: mozldap-devel Requires: libicu-devel Provides: adminutil-devel = %{version}-%{release} Obsoletes: adminutil-devel < 1.1.8-2 %description devel Development files and header files necessary to build applications that use %{name}. %prep %setup -q %build %configure --disable-tests %{__make} %{?_smp_mflags} %install %{__rm} -rf $RPM_BUILD_ROOT %{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.a %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.la %clean %{__rm} -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc LICENSE README NEWS %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/%{name}.pc %{_libdir}/*.so %{_includedir}/libadminutil %{_includedir}/libadmsslutil %changelog * Tue May 12 2009 Rich Megginson - 1.1.8-2 - rename to 389-adminutil * Tue Mar 31 2009 Rich Megginson - 1.1.8-1 - this is the 1.1.8 release * Mon Feb 23 2009 Fedora Release Engineering - 1.1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Aug 27 2008 Rich Megginson - 1.1.7-1 - Resolves bug 454060 - ViewLog CGI crash with new adminutil - Resolves bug 413531 - Web browser accepted languages configuration causes dsgw CGI binaries to segfault * Mon Jul 14 2008 Tom "spot" Callaway - 1.1.6-2 - fix license tag * Mon Mar 3 2008 Rich Megginson - 1.1.6-1 - Resolves bug 245248 - dsgw doesn't escape filename in error message - The new dsgw hasn't been released yet, and the old one doesn't use - this code. * Tue Feb 19 2008 Fedora Release Engineering - 1.1.5-2 - Autorebuild for GCC 4.3 * Thu Oct 18 2007 Rich Megginson - 1.1.5-1 - bump version to 1.1.5 - fix icu linking issue - disable libtool rpath by default - added --enable-rpath option to configure * Fri Aug 17 2007 Rich Megginson - 1.1.4-2 - remove >= version from icu build requires to fix rawhide build problem * Wed Aug 1 2007 Rich Megginson - 1.1.4-1 - updated to version 1.1.4 - fixes bugzilla 250526 * Wed Jul 25 2007 Warren Togami - 1.1.3-1.1 - binutils/gcc bug rebuild (#249435) * Tue Jul 24 2007 Rich Megginson - 1.1.3-1 - updated to version 1.1.3 - fixes bugzillas 246124 and 247192 * Fri Jun 22 2007 Rich Megginson - 1.1.2-1 - Updated version to 1.1.2 - This version fixes some memory leaks and invalid memory use - issues * Wed May 23 2007 Rich Megginson - 1.1.1-3 - more fedora review stuff - use macros consistently - make sure install preserves timestamps - use lgpl instead of gpl for acclanglist.c - fix undefined weak symbols in libadmsslutil * Fri May 18 2007 Rich Megginson - 1.1.1-2 - pkgconfig is a requires not a build requires * Thu May 17 2007 Rich Megginson - 1.1.1-1 - Many bug fixes - bumped version to 1.1.1 - fixed concerns from Fedora package review * Wed Mar 28 2007 Rich Megginson - 1.1.0-1 - Initial version - based largely on svrcore.spec --- NEW FILE import.log --- 89-adminutil-1_1_8-2:HEAD:389-adminutil-1.1.8-2.src.rpm:1247864461 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:41:35 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:00:17 -0000 1.2 @@ -0,0 +1 @@ +389-adminutil-1.1.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:41:35 -0000 1.1 +++ sources 17 Jul 2009 21:00:17 -0000 1.2 @@ -0,0 +1 @@ +e84240547e2f7b97d0576bcb85c06a57 389-adminutil-1.1.8.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 21:02:38 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:02:38 +0000 (UTC) Subject: rpms/389-ds-console/devel 389-ds-console.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717210238.AD56B11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27675/devel Modified Files: .cvsignore sources Added Files: 389-ds-console.spec import.log Log Message: initial commit --- NEW FILE 389-ds-console.spec --- %define major_version 1.2 %define minor_version 0 %define shortname 389-ds %define pkgname dirsrv Name: 389-ds-console Version: %{major_version}.%{minor_version} Release: 3%{?dist} Summary: 389 Directory Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework >= 1.1 BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-console = %{version}-%{release} Obsoletes: fedora-ds-console < 1.2.0-3 %description A Java based remote management console used for managing 389 Directory Server. The 389 Console is required to load and run these jar files. %package doc Summary: Web docs for 389 Directory Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Directory Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/slapd %doc %{_datadir}/%{pkgname}/manual/en/slapd/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/slapd/*.html %doc %{_datadir}/%{pkgname}/manual/en/slapd/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.2.0-3 - added doc subpackage * Fri May 15 2009 Rich Megginson 1.2.0-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.2.0-1 - this is the 1.2.0 release * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Sep 4 2008 Rich Megginson 1.1.2-2 - fixed incorrect source * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - fix threading issues with create new ds instance dialog * Wed Apr 16 2008 Rich Megginson 1.1.1-3 - use java-devel > 1.5.0 for build requires * Tue Jan 22 2008 Rich Megginson 1.1.1-2 - resolves bug 429421 - had incorrect source - new source has been uploaded * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson 1.1.0-5 - This is for the Fedora DS 1.1 release * Mon Aug 13 2007 Nathan Kinder 1.1.0-4 - Added online help files to package. Use pkgname for filesystem path naming instead of shortname. * Wed Aug 1 2007 Nathan Kinder 1.1.0-3 - Updated build requirement for new console framework package. Updated install location and Admin Server dependency. Also did some specfile cleanup. * Mon Jul 30 2007 Nathan Kinder 1.1.0-2 - Updated requirements. * Mon Nov 14 2005 Nathan Kinder 1.1.0-1 - Initial creation --- NEW FILE import.log --- 89-ds-console-1_2_0-3:HEAD:389-ds-console-1.2.0-3.src.rpm:1247864626 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:49:57 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:02:38 -0000 1.2 @@ -0,0 +1 @@ +389-ds-console-1.2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:49:57 -0000 1.1 +++ sources 17 Jul 2009 21:02:38 -0000 1.2 @@ -0,0 +1 @@ +90bd0d779719ef7d4cd57de3054b8721 389-ds-console-1.2.0.tar.bz2 From ausil at fedoraproject.org Fri Jul 17 21:03:01 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Fri, 17 Jul 2009 21:03:01 +0000 (UTC) Subject: comps comps-f12.xml.in,1.42,1.43 Message-ID: <20090717210301.7BF3311C00D3@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/extras/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27723 Modified Files: comps-f12.xml.in Log Message: add a directory-server group for running directory services Index: comps-f12.xml.in =================================================================== RCS file: /cvs/extras/comps/comps-f12.xml.in,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- comps-f12.xml.in 17 Jul 2009 14:22:04 -0000 1.42 +++ comps-f12.xml.in 17 Jul 2009 21:03:01 -0000 1.43 @@ -1184,6 +1184,27 @@ + directory-server + <_name>Directory Server + <_description>Machine and user identity servers. + false + true + + krb5-server + migrationtools + openldap-servers + samba + ypserv + 389-ds-base + 389-ds-admin + idm-console-framework + 389-console + 389-ds-console + 389-admin-console + 389-dsgw + + + dns-server <_name>DNS Name Server <_description>This package group allows you to run a DNS name server (BIND) on the system. @@ -6239,6 +6260,7 @@ 90 clustering + directory-server dns-server ftp-server legacy-network-server From wwoods at fedoraproject.org Fri Jul 17 21:06:02 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Fri, 17 Jul 2009 21:06:02 +0000 (UTC) Subject: rpms/robotfindskitten/F-11 robotfindskitten-1.7320508.406-info-direntry.patch, NONE, 1.1 robotfindskitten.spec, NONE, 1.1 Message-ID: <20090717210602.B336A11C00D3@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/robotfindskitten/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29701 Added Files: robotfindskitten-1.7320508.406-info-direntry.patch robotfindskitten.spec Log Message: import spec and patch robotfindskitten-1.7320508.406-info-direntry.patch: robotfindskitten.texi | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE robotfindskitten-1.7320508.406-info-direntry.patch --- diff -up robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry robotfindskitten-1.7320508.406/doc/robotfindskitten.texi --- robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry 2008-09-24 14:26:52.000000000 -0400 +++ robotfindskitten-1.7320508.406/doc/robotfindskitten.texi 2008-09-24 14:26:58.000000000 -0400 @@ -5,6 +5,9 @@ @finalout @setchapternewpage odd @dircategory Games + at direntry +* robotfindskitten: (robotfindskitten). Zen simulation. + at end direntry @c %**end of header --- NEW FILE robotfindskitten.spec --- Name: robotfindskitten Version: 1.7320508.406 Release: 2%{?dist} Summary: A game/zen simulation. You are robot. Your job is to find kitten. Group: Amusements/Games License: GPLv2+ URL: http://robotfindskitten.org Source0: http://robotfindskitten.org/download/POSIX/robotfindskitten-1.7320508.406.tar.gz # Submitted to upstream development list for consideration Patch0: robotfindskitten-1.7320508.406-info-direntry.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel glibc-devel texinfo Requires(post): info Requires(preun):info %description In this game, you are robot (#). Your job is to find kitten. This task is complicated by the existence of various things which are not kitten. Robot must touch items to determine if they are kitten or not. The game ends when robotfindskitten. %prep %setup -q %patch0 -p1 -b .info-direntry %build %configure make %{?_smp_mflags} # rebuild the info page to include the patched-in direntry rm -f doc/robotfindskitten.info make -C doc robotfindskitten.info %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT/%{_bindir} ln -sf ../games/robotfindskitten $RPM_BUILD_ROOT/%{_bindir}/robotfindskitten # make install creates this, but we don't need it rm -f $RPM_BUILD_ROOT/%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT %post /sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || : %preun if [ $1 = 0 ] ; then /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : fi %files %defattr(-,root,root,-) %doc AUTHORS BUGS ChangeLog COPYING NEWS README %{_bindir}/robotfindskitten %{_prefix}/games/robotfindskitten %{_datadir}/info/robotfindskitten.info* %{_datadir}/man/man6/robotfindskitten.6* %changelog * Fri Jul 10 2009 Will Woods 1.7320508.406-2 - Update spec based on packaging review (bug #463808) * Wed Sep 24 2008 Will Woods 1.7320508.406-1 - Initial packaging. From karsten at fedoraproject.org Fri Jul 17 21:06:19 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Fri, 17 Jul 2009 21:06:19 +0000 (UTC) Subject: rpms/hdparm/devel hdparm.spec,1.46,1.47 sources,1.22,1.23 Message-ID: <20090717210619.7454511C00D3@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/hdparm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29679 Modified Files: hdparm.spec sources Log Message: - update to 9.16, fixes disk spindowns Index: hdparm.spec =================================================================== RCS file: /cvs/extras/rpms/hdparm/devel/hdparm.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- hdparm.spec 4 Mar 2009 20:56:05 -0000 1.46 +++ hdparm.spec 17 Jul 2009 21:05:49 -0000 1.47 @@ -1,12 +1,12 @@ Summary: A utility for displaying and/or setting hard disk parameters Name: hdparm -Version: 9.12 +Version: 9.16 Release: 1%{?dist} License: BSD Group: Applications/System URL: http://sourceforge.net/projects/hdparm/ Source: http://download.sourceforge.net/hdparm/hdparm-%{version}.tar.gz -Patch0: hdparm-9.8-nostrip.patch +Patch0: hdparm-9.16-nostrip.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExcludeArch: s390 s390x @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/hdparm.8* %changelog +* Fri Jul 17 2009 Karsten Hopp 9.16-1 +- update to 9.16, fixes disk spindowns + * Wed Mar 04 2009 Karsten Hopp 9.12-1 - update to 9.12 to fix #488560 Index: sources =================================================================== RCS file: /cvs/extras/rpms/hdparm/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 4 Mar 2009 20:56:05 -0000 1.22 +++ sources 17 Jul 2009 21:05:49 -0000 1.23 @@ -1 +1 @@ -4064cb2cc60b7bbdcea02ec163631068 hdparm-9.12.tar.gz +d11e2158c4ca8863de830f686574a4a3 hdparm-9.16.tar.gz From wwoods at fedoraproject.org Fri Jul 17 21:06:36 2009 From: wwoods at fedoraproject.org (Will Woods) Date: Fri, 17 Jul 2009 21:06:36 +0000 (UTC) Subject: rpms/robotfindskitten/F-10 robotfindskitten-1.7320508.406-info-direntry.patch, NONE, 1.1 robotfindskitten.spec, NONE, 1.1 Message-ID: <20090717210636.B948A11C00D3@cvs1.fedora.phx.redhat.com> Author: wwoods Update of /cvs/pkgs/rpms/robotfindskitten/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29942 Added Files: robotfindskitten-1.7320508.406-info-direntry.patch robotfindskitten.spec Log Message: import spec and patch robotfindskitten-1.7320508.406-info-direntry.patch: robotfindskitten.texi | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE robotfindskitten-1.7320508.406-info-direntry.patch --- diff -up robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry robotfindskitten-1.7320508.406/doc/robotfindskitten.texi --- robotfindskitten-1.7320508.406/doc/robotfindskitten.texi.direntry 2008-09-24 14:26:52.000000000 -0400 +++ robotfindskitten-1.7320508.406/doc/robotfindskitten.texi 2008-09-24 14:26:58.000000000 -0400 @@ -5,6 +5,9 @@ @finalout @setchapternewpage odd @dircategory Games + at direntry +* robotfindskitten: (robotfindskitten). Zen simulation. + at end direntry @c %**end of header --- NEW FILE robotfindskitten.spec --- Name: robotfindskitten Version: 1.7320508.406 Release: 2%{?dist} Summary: A game/zen simulation. You are robot. Your job is to find kitten. Group: Amusements/Games License: GPLv2+ URL: http://robotfindskitten.org Source0: http://robotfindskitten.org/download/POSIX/robotfindskitten-1.7320508.406.tar.gz # Submitted to upstream development list for consideration Patch0: robotfindskitten-1.7320508.406-info-direntry.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel glibc-devel texinfo Requires(post): info Requires(preun):info %description In this game, you are robot (#). Your job is to find kitten. This task is complicated by the existence of various things which are not kitten. Robot must touch items to determine if they are kitten or not. The game ends when robotfindskitten. %prep %setup -q %patch0 -p1 -b .info-direntry %build %configure make %{?_smp_mflags} # rebuild the info page to include the patched-in direntry rm -f doc/robotfindskitten.info make -C doc robotfindskitten.info %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT/%{_bindir} ln -sf ../games/robotfindskitten $RPM_BUILD_ROOT/%{_bindir}/robotfindskitten # make install creates this, but we don't need it rm -f $RPM_BUILD_ROOT/%{_infodir}/dir %clean rm -rf $RPM_BUILD_ROOT %post /sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || : %preun if [ $1 = 0 ] ; then /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || : fi %files %defattr(-,root,root,-) %doc AUTHORS BUGS ChangeLog COPYING NEWS README %{_bindir}/robotfindskitten %{_prefix}/games/robotfindskitten %{_datadir}/info/robotfindskitten.info* %{_datadir}/man/man6/robotfindskitten.6* %changelog * Fri Jul 10 2009 Will Woods 1.7320508.406-2 - Update spec based on packaging review (bug #463808) * Wed Sep 24 2008 Will Woods 1.7320508.406-1 - Initial packaging. From rmeggins at fedoraproject.org Fri Jul 17 21:11:35 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:11:35 +0000 (UTC) Subject: rpms/389-ds/devel 389-ds.spec, NONE, 1.1 LICENSE, NONE, 1.1 import.log, NONE, 1.1 Message-ID: <20090717211135.DEBFB11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31852/devel Added Files: 389-ds.spec LICENSE import.log Log Message: initial commit --- NEW FILE 389-ds.spec --- Summary: 389 Directory, Administration, and Console Suite Name: 389-ds Version: 1.1.3 Release: 2%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Provides: fedora-ds = %{version}-%{release} Obsoletes: fedora-ds < 1.1.3-2 Source: LICENSE Requires: 389-ds-base Requires: 389-ds-admin Requires: idm-console-framework Requires: 389-console Requires: 389-ds-console Requires: 389-admin-console Requires: 389-dsgw %description The 389 Directory Server, Administration Server, and Console Suite provide the LDAPv3 server, the httpd daemon used to administer the server, and the console GUI application used for server and user/group administration. %prep cp %{SOURCE0} . %install rm -rf $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %changelog * Mon May 18 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Tue Feb 24 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Sep 4 2008 Rich Megginson 1.1.2-1 - this is the 1.1.2 release - made noarch because Fedora is supposed to just "do the right thing" now - added fedora-ds-dsgw * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - fedora-admin-console was changed to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added LICENSE * Thu Dec 20 2007 Rich Megginson - 1.1.0-3 - This is the final Fedora DS 1.1 release * Wed Nov 7 2007 Rich Megginson - 1.1.0-2.0 - this is beta2 - remove dist tag * Wed Oct 17 2007 Rich Megginson - 8.0.0-1.2 - forgot comma in defattr * Tue Oct 16 2007 Rich Megginson - 8.0.0-1.1 - added defattr to fix file ownership problem * Wed Aug 8 2007 Rich Megginson - ds-1 - Initial build. --- NEW FILE LICENSE --- GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS --- NEW FILE import.log --- 89-ds-1_1_3-2:HEAD:389-ds-1.1.3-2.src.rpm:1247865158 From rmeggins at fedoraproject.org Fri Jul 17 21:13:38 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:13:38 +0000 (UTC) Subject: rpms/389-ds/devel 389-ds.spec,1.1,1.2 Message-ID: <20090717211338.D670511C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32400 Modified Files: 389-ds.spec Log Message: added empty build section Index: 389-ds.spec =================================================================== RCS file: /cvs/extras/rpms/389-ds/devel/389-ds.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-ds.spec 17 Jul 2009 21:11:35 -0000 1.1 +++ 389-ds.spec 17 Jul 2009 21:13:08 -0000 1.2 @@ -1,7 +1,7 @@ Summary: 389 Directory, Administration, and Console Suite Name: 389-ds Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -28,6 +28,9 @@ console GUI application used for server %prep cp %{SOURCE0} . +%build +# empty + %install rm -rf $RPM_BUILD_ROOT @@ -39,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Fri Jul 17 2009 Rich Megginson 1.1.3-3 +- added empty build section + * Mon May 18 2009 Rich Megginson 1.1.3-2 - rename to 389 From rmeggins at fedoraproject.org Fri Jul 17 21:15:44 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:15:44 +0000 (UTC) Subject: rpms/389-adminutil/F-10 389-adminutil.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717211544.24F4B11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-adminutil/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv566/F-10 Modified Files: .cvsignore sources Added Files: 389-adminutil.spec Log Message: initial commit for all branches --- NEW FILE 389-adminutil.spec --- Summary: Utility library for 389 administration Name: 389-adminutil Version: 1.1.8 Release: 2%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: nspr-devel BuildRequires: nss-devel BuildRequires: svrcore-devel BuildRequires: mozldap-devel BuildRequires: libicu-devel BuildRequires: icu Provides: adminutil = %{version}-%{release} Obsoletes: adminutil < 1.1.8-2 Source0: http://port389.org/sources/%{name}-%{version}.tar.bz2 %description %{name} is libraries of functions used to administer directory servers, usually in conjunction with the admin server. %{name} is broken into two libraries - libadminutil contains the basic functionality, and libadmsslutil contains SSL versions and wrappers around the basic functions. The PSET functions allow applications to store their preferences and configuration parameters in LDAP, without having to know anything about LDAP. The configuration is cached in a local file, allowing applications to function even if the LDAP server is down. The other code is typically used by CGI programs used for directory server management, containing GET/POST processing code as well as resource handling (ICU ures API). %package devel Summary: Development and header files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: nspr-devel Requires: nss-devel Requires: svrcore-devel Requires: mozldap-devel Requires: libicu-devel Provides: adminutil-devel = %{version}-%{release} Obsoletes: adminutil-devel < 1.1.8-2 %description devel Development files and header files necessary to build applications that use %{name}. %prep %setup -q %build %configure --disable-tests %{__make} %{?_smp_mflags} %install %{__rm} -rf $RPM_BUILD_ROOT %{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.a %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.la %clean %{__rm} -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc LICENSE README NEWS %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/%{name}.pc %{_libdir}/*.so %{_includedir}/libadminutil %{_includedir}/libadmsslutil %changelog * Tue May 12 2009 Rich Megginson - 1.1.8-2 - rename to 389-adminutil * Tue Mar 31 2009 Rich Megginson - 1.1.8-1 - this is the 1.1.8 release * Mon Feb 23 2009 Fedora Release Engineering - 1.1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Aug 27 2008 Rich Megginson - 1.1.7-1 - Resolves bug 454060 - ViewLog CGI crash with new adminutil - Resolves bug 413531 - Web browser accepted languages configuration causes dsgw CGI binaries to segfault * Mon Jul 14 2008 Tom "spot" Callaway - 1.1.6-2 - fix license tag * Mon Mar 3 2008 Rich Megginson - 1.1.6-1 - Resolves bug 245248 - dsgw doesn't escape filename in error message - The new dsgw hasn't been released yet, and the old one doesn't use - this code. * Tue Feb 19 2008 Fedora Release Engineering - 1.1.5-2 - Autorebuild for GCC 4.3 * Thu Oct 18 2007 Rich Megginson - 1.1.5-1 - bump version to 1.1.5 - fix icu linking issue - disable libtool rpath by default - added --enable-rpath option to configure * Fri Aug 17 2007 Rich Megginson - 1.1.4-2 - remove >= version from icu build requires to fix rawhide build problem * Wed Aug 1 2007 Rich Megginson - 1.1.4-1 - updated to version 1.1.4 - fixes bugzilla 250526 * Wed Jul 25 2007 Warren Togami - 1.1.3-1.1 - binutils/gcc bug rebuild (#249435) * Tue Jul 24 2007 Rich Megginson - 1.1.3-1 - updated to version 1.1.3 - fixes bugzillas 246124 and 247192 * Fri Jun 22 2007 Rich Megginson - 1.1.2-1 - Updated version to 1.1.2 - This version fixes some memory leaks and invalid memory use - issues * Wed May 23 2007 Rich Megginson - 1.1.1-3 - more fedora review stuff - use macros consistently - make sure install preserves timestamps - use lgpl instead of gpl for acclanglist.c - fix undefined weak symbols in libadmsslutil * Fri May 18 2007 Rich Megginson - 1.1.1-2 - pkgconfig is a requires not a build requires * Thu May 17 2007 Rich Megginson - 1.1.1-1 - Many bug fixes - bumped version to 1.1.1 - fixed concerns from Fedora package review * Wed Mar 28 2007 Rich Megginson - 1.1.0-1 - Initial version - based largely on svrcore.spec Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:41:35 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:15:13 -0000 1.2 @@ -0,0 +1 @@ +389-adminutil-1.1.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:41:35 -0000 1.1 +++ sources 17 Jul 2009 21:15:13 -0000 1.2 @@ -0,0 +1 @@ +e84240547e2f7b97d0576bcb85c06a57 389-adminutil-1.1.8.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 21:15:44 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:15:44 +0000 (UTC) Subject: rpms/389-adminutil/F-11 389-adminutil.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717211544.4477111C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-adminutil/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv566/F-11 Modified Files: .cvsignore sources Added Files: 389-adminutil.spec Log Message: initial commit for all branches --- NEW FILE 389-adminutil.spec --- Summary: Utility library for 389 administration Name: 389-adminutil Version: 1.1.8 Release: 2%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: nspr-devel BuildRequires: nss-devel BuildRequires: svrcore-devel BuildRequires: mozldap-devel BuildRequires: libicu-devel BuildRequires: icu Provides: adminutil = %{version}-%{release} Obsoletes: adminutil < 1.1.8-2 Source0: http://port389.org/sources/%{name}-%{version}.tar.bz2 %description %{name} is libraries of functions used to administer directory servers, usually in conjunction with the admin server. %{name} is broken into two libraries - libadminutil contains the basic functionality, and libadmsslutil contains SSL versions and wrappers around the basic functions. The PSET functions allow applications to store their preferences and configuration parameters in LDAP, without having to know anything about LDAP. The configuration is cached in a local file, allowing applications to function even if the LDAP server is down. The other code is typically used by CGI programs used for directory server management, containing GET/POST processing code as well as resource handling (ICU ures API). %package devel Summary: Development and header files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: nspr-devel Requires: nss-devel Requires: svrcore-devel Requires: mozldap-devel Requires: libicu-devel Provides: adminutil-devel = %{version}-%{release} Obsoletes: adminutil-devel < 1.1.8-2 %description devel Development files and header files necessary to build applications that use %{name}. %prep %setup -q %build %configure --disable-tests %{__make} %{?_smp_mflags} %install %{__rm} -rf $RPM_BUILD_ROOT %{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.a %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.la %clean %{__rm} -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc LICENSE README NEWS %{_libdir}/*.so.* %{_datadir}/%{name} %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/%{name}.pc %{_libdir}/*.so %{_includedir}/libadminutil %{_includedir}/libadmsslutil %changelog * Tue May 12 2009 Rich Megginson - 1.1.8-2 - rename to 389-adminutil * Tue Mar 31 2009 Rich Megginson - 1.1.8-1 - this is the 1.1.8 release * Mon Feb 23 2009 Fedora Release Engineering - 1.1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Aug 27 2008 Rich Megginson - 1.1.7-1 - Resolves bug 454060 - ViewLog CGI crash with new adminutil - Resolves bug 413531 - Web browser accepted languages configuration causes dsgw CGI binaries to segfault * Mon Jul 14 2008 Tom "spot" Callaway - 1.1.6-2 - fix license tag * Mon Mar 3 2008 Rich Megginson - 1.1.6-1 - Resolves bug 245248 - dsgw doesn't escape filename in error message - The new dsgw hasn't been released yet, and the old one doesn't use - this code. * Tue Feb 19 2008 Fedora Release Engineering - 1.1.5-2 - Autorebuild for GCC 4.3 * Thu Oct 18 2007 Rich Megginson - 1.1.5-1 - bump version to 1.1.5 - fix icu linking issue - disable libtool rpath by default - added --enable-rpath option to configure * Fri Aug 17 2007 Rich Megginson - 1.1.4-2 - remove >= version from icu build requires to fix rawhide build problem * Wed Aug 1 2007 Rich Megginson - 1.1.4-1 - updated to version 1.1.4 - fixes bugzilla 250526 * Wed Jul 25 2007 Warren Togami - 1.1.3-1.1 - binutils/gcc bug rebuild (#249435) * Tue Jul 24 2007 Rich Megginson - 1.1.3-1 - updated to version 1.1.3 - fixes bugzillas 246124 and 247192 * Fri Jun 22 2007 Rich Megginson - 1.1.2-1 - Updated version to 1.1.2 - This version fixes some memory leaks and invalid memory use - issues * Wed May 23 2007 Rich Megginson - 1.1.1-3 - more fedora review stuff - use macros consistently - make sure install preserves timestamps - use lgpl instead of gpl for acclanglist.c - fix undefined weak symbols in libadmsslutil * Fri May 18 2007 Rich Megginson - 1.1.1-2 - pkgconfig is a requires not a build requires * Thu May 17 2007 Rich Megginson - 1.1.1-1 - Many bug fixes - bumped version to 1.1.1 - fixed concerns from Fedora package review * Wed Mar 28 2007 Rich Megginson - 1.1.0-1 - Initial version - based largely on svrcore.spec Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:41:35 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:15:14 -0000 1.2 @@ -0,0 +1 @@ +389-adminutil-1.1.8.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-adminutil/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:41:35 -0000 1.1 +++ sources 17 Jul 2009 21:15:14 -0000 1.2 @@ -0,0 +1 @@ +e84240547e2f7b97d0576bcb85c06a57 389-adminutil-1.1.8.tar.bz2 From sandeen at fedoraproject.org Fri Jul 17 21:17:51 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Fri, 17 Jul 2009 21:17:51 +0000 (UTC) Subject: rpms/e2fsprogs/devel e2fsprogs.spec,1.143,1.144 Message-ID: <20090717211751.8685911C00D3@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/e2fsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1060 Modified Files: e2fsprogs.spec Log Message: * Fri Jul 17 2009 Eric Sandeen 1.41.8-2 - Address some package review concerns (#225714) Index: e2fsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2fsprogs/devel/e2fsprogs.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- e2fsprogs.spec 12 Jul 2009 23:37:55 -0000 1.143 +++ e2fsprogs.spec 17 Jul 2009 21:17:21 -0000 1.144 @@ -4,7 +4,7 @@ Summary: Utilities for managing ext2, ext3, and ext4 filesystems Name: e2fsprogs Version: 1.41.8 -Release: 1%{?dist} +Release: 2%{?dist} # License tags based on COPYING file distinctions for various components License: GPLv2 Group: System Environment/Base @@ -15,10 +15,15 @@ Patch2: e2fsprogs-1.40.4-sb_feature_chec Url: http://e2fsprogs.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: e2fsprogs-libs = %{version}-%{release}, device-mapper +Requires: e2fsprogs-libs = %{version}-%{release} +Requires: device-mapper + # e4fsprogs was a parallel ext4-capable package in RHEL5.x -Obsoletes: e4fsprogs -Provides: e4fsprogs +%if 0%{?rhel} > 0 +Obsoletes: e4fsprogs < %{version}-%{release} +Provides: e4fsprogs = %{version}-%{release} +%endif + BuildRequires: pkgconfig, texinfo, libselinux-devel BuildRequires: libsepol-devel BuildRequires: libblkid-devel @@ -39,10 +44,9 @@ You should install the e2fsprogs package performance of an ext2, ext3, or ext4 filesystem. %package libs -Summary: Ext2/3/4 filesystem-specific shared libraries and headers +Summary: Ext2/3/4 filesystem-specific shared libraries Group: Development/Libraries License: GPLv2 and LGPLv2 -Requires(post): /sbin/ldconfig %description libs E2fsprogs-libs contains libe2p and libext2fs, the libraries of the @@ -55,12 +59,14 @@ from userspace. Summary: Ext2/3/4 filesystem-specific static libraries and headers Group: Development/Libraries License: GPLv2 and LGPLv2 +Provides: %{name}-static = %{version}-%{release} Requires: e2fsprogs-libs = %{version}-%{release} Requires: device-mapper-devel >= 1.02.02-3 Requires: gawk Requires: libcom_err-devel -Requires(post): /sbin/install-info -Requires(preun): /sbin/install-info +Requires: pkgconfig +Requires(post): info +Requires(preun): info %description devel E2fsprogs-devel contains the libraries and header files needed to @@ -97,6 +103,7 @@ libcom_err is an attempt to present a co Summary: Common error description library Group: Development/Libraries License: MIT +Provides: libcom_err-static = %{version}-%{release} Requires: libcom_err = %{version}-%{release} Requires: pkgconfig @@ -126,6 +133,7 @@ It was originally inspired by the Multic Summary: Command line interface parsing library Group: Development/Libraries License: MIT +Provides: libss-static = %{version}-%{release} Requires: libss = %{version}-%{release} Requires: pkgconfig @@ -157,6 +165,7 @@ See also the "uuid" package, which is a Summary: Universally unique ID library Group: Development/Libraries License: BSD +Provides: libuuid-static = %{version}-%{release} Requires: libuuid = %{version}-%{release} Requires: pkgconfig @@ -174,7 +183,7 @@ across a network. See also the "uuid-devel" package, which is a separate implementation. %prep -%setup -q -n e2fsprogs-%{version} +%setup -q # ignore some flag differences on primary/backup sb feature checks # mildly unsafe but 'til I get something better, avoid full fsck # after an selinux install... @@ -188,22 +197,22 @@ make %{?_smp_mflags} V=1 %install rm -rf %{buildroot} export PATH=/sbin:$PATH -make install install-libs DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" \ +make install install-libs DESTDIR=%{buildroot} INSTALL="%{__install} -p" \ root_sbindir=%{_root_sbindir} root_libdir=%{_root_libdir} # ugly hack to allow parallel install of 32-bit and 64-bit -devel packages: %define multilib_arches %{ix86} x86_64 ppc ppc64 s390 s390x sparcv9 sparc64 %ifarch %{multilib_arches} -mv -f $RPM_BUILD_ROOT%{_includedir}/ext2fs/ext2_types.h \ - $RPM_BUILD_ROOT%{_includedir}/ext2fs/ext2_types-%{_arch}.h -install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/ext2fs/ext2_types.h +mv -f %{buildroot}%{_includedir}/ext2fs/ext2_types.h \ + %{buildroot}%{_includedir}/ext2fs/ext2_types-%{_arch}.h +install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/ext2fs/ext2_types.h %endif # Our own initscript for uuidd -install -D -m 755 %{SOURCE3} $RPM_BUILD_ROOT/etc/rc.d/init.d/uuidd +install -D -m 755 %{SOURCE3} %{buildroot}/%{_initrddir}/uuidd # And a dir uuidd needs that the makefiles don't create -install -d $RPM_BUILD_ROOT/var/lib/libuuid +install -d %{buildroot}/var/lib/libuuid %find_lang %{name} @@ -253,7 +262,7 @@ fi %files -f %{name}.lang %defattr(-,root,root) -%doc README RELEASE-NOTES +%doc COPYING README RELEASE-NOTES %config(noreplace) /etc/mke2fs.conf %{_root_sbindir}/badblocks @@ -314,6 +323,7 @@ fi %files libs %defattr(-,root,root) +%doc COPYING %{_root_libdir}/libe2p.so.* %{_root_libdir}/libext2fs.so.* @@ -332,13 +342,15 @@ fi %files -n uuidd %defattr(-,root,root) -/etc/rc.d/init.d/uuidd +%doc COPYING +%{_initrddir}/uuidd %{_mandir}/man8/uuidd.8* %attr(-, uuidd, uuidd) %{_sbindir}/uuidd %dir %attr(2775, uuidd, uuidd) /var/lib/libuuid %files -n libcom_err %defattr(-,root,root) +%doc COPYING %{_root_libdir}/libcom_err.so.* %files -n libcom_err-devel @@ -354,6 +366,7 @@ fi %files -n libss %defattr(-,root,root) +%doc COPYING %{_root_libdir}/libss.so.* %files -n libss-devel @@ -368,6 +381,7 @@ fi %files -n libuuid %defattr(-,root,root) +%doc COPYING %{_root_libdir}/libuuid.so.* %files -n libuuid-devel @@ -389,6 +403,9 @@ fi %{_libdir}/pkgconfig/uuid.pc %changelog +* Fri Jul 17 2009 Eric Sandeen 1.41.8-2 +- Address some package review concerns (#225714) + * Sun Jul 12 2009 Eric Sandeen 1.41.8-1 - New upstream version, several resize fixes. From rmeggins at fedoraproject.org Fri Jul 17 21:18:59 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:18:59 +0000 (UTC) Subject: rpms/389-ds-console/F-10 389-ds-console.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717211859.0B2DC11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds-console/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1399/F-10 Modified Files: .cvsignore sources Added Files: 389-ds-console.spec Log Message: initial commit --- NEW FILE 389-ds-console.spec --- %define major_version 1.2 %define minor_version 0 %define shortname 389-ds %define pkgname dirsrv Name: 389-ds-console Version: %{major_version}.%{minor_version} Release: 3%{?dist} Summary: 389 Directory Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework >= 1.1 BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-console = %{version}-%{release} Obsoletes: fedora-ds-console < 1.2.0-3 %description A Java based remote management console used for managing 389 Directory Server. The 389 Console is required to load and run these jar files. %package doc Summary: Web docs for 389 Directory Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Directory Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/slapd %doc %{_datadir}/%{pkgname}/manual/en/slapd/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/slapd/*.html %doc %{_datadir}/%{pkgname}/manual/en/slapd/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.2.0-3 - added doc subpackage * Fri May 15 2009 Rich Megginson 1.2.0-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.2.0-1 - this is the 1.2.0 release * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Sep 4 2008 Rich Megginson 1.1.2-2 - fixed incorrect source * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - fix threading issues with create new ds instance dialog * Wed Apr 16 2008 Rich Megginson 1.1.1-3 - use java-devel > 1.5.0 for build requires * Tue Jan 22 2008 Rich Megginson 1.1.1-2 - resolves bug 429421 - had incorrect source - new source has been uploaded * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson 1.1.0-5 - This is for the Fedora DS 1.1 release * Mon Aug 13 2007 Nathan Kinder 1.1.0-4 - Added online help files to package. Use pkgname for filesystem path naming instead of shortname. * Wed Aug 1 2007 Nathan Kinder 1.1.0-3 - Updated build requirement for new console framework package. Updated install location and Admin Server dependency. Also did some specfile cleanup. * Mon Jul 30 2007 Nathan Kinder 1.1.0-2 - Updated requirements. * Mon Nov 14 2005 Nathan Kinder 1.1.0-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:49:57 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:18:28 -0000 1.2 @@ -0,0 +1 @@ +389-ds-console-1.2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:49:57 -0000 1.1 +++ sources 17 Jul 2009 21:18:28 -0000 1.2 @@ -0,0 +1 @@ +90bd0d779719ef7d4cd57de3054b8721 389-ds-console-1.2.0.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 21:18:59 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:18:59 +0000 (UTC) Subject: rpms/389-ds-console/F-11 389-ds-console.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090717211859.3715B11C00D3@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds-console/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1399/F-11 Modified Files: .cvsignore sources Added Files: 389-ds-console.spec Log Message: initial commit --- NEW FILE 389-ds-console.spec --- %define major_version 1.2 %define minor_version 0 %define shortname 389-ds %define pkgname dirsrv Name: 389-ds-console Version: %{major_version}.%{minor_version} Release: 3%{?dist} Summary: 389 Directory Server Management Console Group: Applications/System License: GPLv2 URL: http://port389.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Source: http://port389.org/sources/%{name}-%{version}.tar.bz2 Requires: 389-admin BuildRequires: ant >= 1.6.2 BuildRequires: ldapjdk BuildRequires: idm-console-framework >= 1.1 BuildRequires: java-devel >= 1:1.6.0 Provides: fedora-ds-console = %{version}-%{release} Obsoletes: fedora-ds-console < 1.2.0-3 %description A Java based remote management console used for managing 389 Directory Server. The 389 Console is required to load and run these jar files. %package doc Summary: Web docs for 389 Directory Server Management Console Group: Documentation Requires: %{name} = %{version}-%{release} %description doc Web docs for 389 Directory Server Management Console %prep %setup -q %build %{ant} \ -Dconsole.location=%{_javadir} \ -Dbuilt.dir=`pwd`/built %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -m644 built/package/%{shortname}* $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java install -d $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help install -m644 help/en/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/tokens.map $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd install -m644 help/en/help/*.html $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/manual/en/slapd/help # create symlinks pushd $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java ln -s %{shortname}-%{version}.jar %{shortname}-%{major_version}.jar ln -s %{shortname}-%{version}.jar %{shortname}.jar ln -s %{shortname}-%{version}_en.jar %{shortname}-%{major_version}_en.jar ln -s %{shortname}-%{version}_en.jar %{shortname}_en.jar popd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}-%{major_version}_en.jar %{_datadir}/%{pkgname}/html/java/%{shortname}_en.jar %files doc %defattr(-,root,root,-) %dir %{_datadir}/%{pkgname}/manual/en/slapd %doc %{_datadir}/%{pkgname}/manual/en/slapd/tokens.map %doc %{_datadir}/%{pkgname}/manual/en/slapd/*.html %doc %{_datadir}/%{pkgname}/manual/en/slapd/help/*.html %changelog * Tue Jul 14 2009 Rich Megginson 1.2.0-3 - added doc subpackage * Fri May 15 2009 Rich Megginson 1.2.0-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.2.0-1 - this is the 1.2.0 release * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Thu Sep 4 2008 Rich Megginson 1.1.2-2 - fixed incorrect source * Thu Jul 3 2008 Rich Megginson 1.1.2-1 - fix threading issues with create new ds instance dialog * Wed Apr 16 2008 Rich Megginson 1.1.1-3 - use java-devel > 1.5.0 for build requires * Tue Jan 22 2008 Rich Megginson 1.1.1-2 - resolves bug 429421 - had incorrect source - new source has been uploaded * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added requires for icedtea java - added LICENSE * Wed Dec 19 2007 Rich Megginson 1.1.0-5 - This is for the Fedora DS 1.1 release * Mon Aug 13 2007 Nathan Kinder 1.1.0-4 - Added online help files to package. Use pkgname for filesystem path naming instead of shortname. * Wed Aug 1 2007 Nathan Kinder 1.1.0-3 - Updated build requirement for new console framework package. Updated install location and Admin Server dependency. Also did some specfile cleanup. * Mon Jul 30 2007 Nathan Kinder 1.1.0-2 - Updated requirements. * Mon Nov 14 2005 Nathan Kinder 1.1.0-1 - Initial creation Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 20:49:57 -0000 1.1 +++ .cvsignore 17 Jul 2009 21:18:29 -0000 1.2 @@ -0,0 +1 @@ +389-ds-console-1.2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-ds-console/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 20:49:57 -0000 1.1 +++ sources 17 Jul 2009 21:18:29 -0000 1.2 @@ -0,0 +1 @@ +90bd0d779719ef7d4cd57de3054b8721 389-ds-console-1.2.0.tar.bz2 From rmeggins at fedoraproject.org Fri Jul 17 21:20:30 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:20:30 +0000 (UTC) Subject: rpms/389-ds/F-10 389-ds.spec,NONE,1.1 LICENSE,NONE,1.1 Message-ID: <20090717212030.0398711C00E4@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2012/F-10 Added Files: 389-ds.spec LICENSE Log Message: initial commit --- NEW FILE 389-ds.spec --- Summary: 389 Directory, Administration, and Console Suite Name: 389-ds Version: 1.1.3 Release: 3%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Provides: fedora-ds = %{version}-%{release} Obsoletes: fedora-ds < 1.1.3-2 Source: LICENSE Requires: 389-ds-base Requires: 389-ds-admin Requires: idm-console-framework Requires: 389-console Requires: 389-ds-console Requires: 389-admin-console Requires: 389-dsgw %description The 389 Directory Server, Administration Server, and Console Suite provide the LDAPv3 server, the httpd daemon used to administer the server, and the console GUI application used for server and user/group administration. %prep cp %{SOURCE0} . %build # empty %install rm -rf $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %changelog * Fri Jul 17 2009 Rich Megginson 1.1.3-3 - added empty build section * Mon May 18 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Tue Feb 24 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Sep 4 2008 Rich Megginson 1.1.2-1 - this is the 1.1.2 release - made noarch because Fedora is supposed to just "do the right thing" now - added fedora-ds-dsgw * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - fedora-admin-console was changed to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added LICENSE * Thu Dec 20 2007 Rich Megginson - 1.1.0-3 - This is the final Fedora DS 1.1 release * Wed Nov 7 2007 Rich Megginson - 1.1.0-2.0 - this is beta2 - remove dist tag * Wed Oct 17 2007 Rich Megginson - 8.0.0-1.2 - forgot comma in defattr * Tue Oct 16 2007 Rich Megginson - 8.0.0-1.1 - added defattr to fix file ownership problem * Wed Aug 8 2007 Rich Megginson - ds-1 - Initial build. --- NEW FILE LICENSE --- GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS From rmeggins at fedoraproject.org Fri Jul 17 21:20:30 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Fri, 17 Jul 2009 21:20:30 +0000 (UTC) Subject: rpms/389-ds/F-11 389-ds.spec,NONE,1.1 LICENSE,NONE,1.1 Message-ID: <20090717212030.4CB1911C00E4@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-ds/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2012/F-11 Added Files: 389-ds.spec LICENSE Log Message: initial commit --- NEW FILE 389-ds.spec --- Summary: 389 Directory, Administration, and Console Suite Name: 389-ds Version: 1.1.3 Release: 3%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Provides: fedora-ds = %{version}-%{release} Obsoletes: fedora-ds < 1.1.3-2 Source: LICENSE Requires: 389-ds-base Requires: 389-ds-admin Requires: idm-console-framework Requires: 389-console Requires: 389-ds-console Requires: 389-admin-console Requires: 389-dsgw %description The 389 Directory Server, Administration Server, and Console Suite provide the LDAPv3 server, the httpd daemon used to administer the server, and the console GUI application used for server and user/group administration. %prep cp %{SOURCE0} . %build # empty %install rm -rf $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE %changelog * Fri Jul 17 2009 Rich Megginson 1.1.3-3 - added empty build section * Mon May 18 2009 Rich Megginson 1.1.3-2 - rename to 389 * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release * Tue Feb 24 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Sep 4 2008 Rich Megginson 1.1.2-1 - this is the 1.1.2 release - made noarch because Fedora is supposed to just "do the right thing" now - added fedora-ds-dsgw * Wed Jan 16 2008 Rich Megginson 1.1.1-2 - fedora-admin-console was changed to fedora-ds-admin-console * Thu Jan 10 2008 Rich Megginson 1.1.1-1 - changes for fedora package review - added LICENSE * Thu Dec 20 2007 Rich Megginson - 1.1.0-3 - This is the final Fedora DS 1.1 release * Wed Nov 7 2007 Rich Megginson - 1.1.0-2.0 - this is beta2 - remove dist tag * Wed Oct 17 2007 Rich Megginson - 8.0.0-1.2 - forgot comma in defattr * Tue Oct 16 2007 Rich Megginson - 8.0.0-1.1 - added defattr to fix file ownership problem * Wed Aug 8 2007 Rich Megginson - ds-1 - Initial build. --- NEW FILE LICENSE --- GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS From orion at fedoraproject.org Fri Jul 17 21:26:32 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Fri, 17 Jul 2009 21:26:32 +0000 (UTC) Subject: rpms/gridengine/devel gridengine.spec,1.17,1.18 sources,1.8,1.9 Message-ID: <20090717212632.1E61A11C00D3@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/gridengine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3223 Modified Files: gridengine.spec sources Log Message: Keep extracted source in sources Index: gridengine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/gridengine.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gridengine.spec 17 Jul 2009 20:47:04 -0000 1.17 +++ gridengine.spec 17 Jul 2009 21:26:01 -0000 1.18 @@ -160,7 +160,7 @@ Programs needed to run a grid engine qma %prep -%setup -q -n gridengine -b 12 -a 1 +%setup -q -n gridengine -a 1 #Copy Licenses and README file into build directory cp %SOURCE8 %SOURCE11 . #Remove unneeded shbangs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 17 Jul 2009 20:47:04 -0000 1.8 +++ sources 17 Jul 2009 21:26:01 -0000 1.9 @@ -1,2 +1,3 @@ 5ba34d534cdeda9afe74cd367cb51ce0 gridengine-ppc.tar.gz 1020a8b4849a6edcfbadc723749690c8 ge-V623_TAG-src-all_modules.tar.gz +02dbf91f91e25dcba5431c29194b5afd ge-V62u3_TAG-src.tar.gz From caillon at fedoraproject.org Fri Jul 17 21:59:01 2009 From: caillon at fedoraproject.org (Christopher Aillon) Date: Fri, 17 Jul 2009 21:59:01 +0000 (UTC) Subject: rpms/epiphany-extensions/F-11 epiphany-extensions.spec,1.61,1.62 Message-ID: <20090717215901.BD74C11C00D3@cvs1.fedora.phx.redhat.com> Author: caillon Update of /cvs/extras/rpms/epiphany-extensions/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11207 Modified Files: epiphany-extensions.spec Log Message: * Fri Jul 17 2009 Christopher Aillon - 2.26.1-4 - Rebuild against newer gecko Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/extras/rpms/epiphany-extensions/F-11/epiphany-extensions.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- epiphany-extensions.spec 17 Jul 2009 19:27:40 -0000 1.61 +++ epiphany-extensions.spec 17 Jul 2009 21:59:01 -0000 1.62 @@ -1,7 +1,7 @@ %global ephy_major 2.26 %global ephy_api_version 2.26 %global ephy_min_version %{ephy_major}.0 -%global gecko_version 1.9.1 +%global gecko_version 1.9.1.1 Name: epiphany-extensions Version: %{ephy_major}.1 From orion at fedoraproject.org Fri Jul 17 22:16:57 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Fri, 17 Jul 2009 22:16:57 +0000 (UTC) Subject: rpms/GMT-coastlines/devel .cvsignore, 1.3, 1.4 GMT-coastlines.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090717221657.71D6E11C00D3@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/GMT-coastlines/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15803 Modified Files: .cvsignore GMT-coastlines.spec sources Log Message: * Fri Jul 17 2009 Orion Poplawski 2.0-1 - Update to 2.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 May 2008 20:58:26 -0000 1.3 +++ .cvsignore 17 Jul 2009 22:16:25 -0000 1.4 @@ -1,3 +1,3 @@ -GSHHS1.10_coast.tar.bz2 -GSHHS1.10_full.tar.bz2 -GSHHS1.10_high.tar.bz2 +GSHHS2.0_coast.tar.bz2 +GSHHS2.0_full.tar.bz2 +GSHHS2.0_high.tar.bz2 Index: GMT-coastlines.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/devel/GMT-coastlines.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- GMT-coastlines.spec 23 Feb 2009 21:16:18 -0000 1.5 +++ GMT-coastlines.spec 17 Jul 2009 22:16:25 -0000 1.6 @@ -1,6 +1,6 @@ Name: GMT-coastlines -Version: 1.10 -Release: 3%{?dist} +Version: 2.0 +Release: 1%{?dist} Summary: Coastline data for GMT Group: Applications/Engineering @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Orion Poplawski 2.0-1 +- Update to 2.0 + * Mon Feb 23 2009 Fedora Release Engineering - 1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 4 Aug 2008 22:06:42 -0000 1.4 +++ sources 17 Jul 2009 22:16:25 -0000 1.5 @@ -1,3 +1,3 @@ -d160db8dc5390731bce42d4e2a55d5e1 GSHHS1.10_coast.tar.bz2 -d029e624dfe8d15685779fa9f84ff78e GSHHS1.10_full.tar.bz2 -ccf1fe0e5231f3e8e3b64140afb7de8d GSHHS1.10_high.tar.bz2 +23ccee4b943ef1fc35ddc03b91b55521 GSHHS2.0_coast.tar.bz2 +fc5a70acf663c402b3dfc5a951b29244 GSHHS2.0_full.tar.bz2 +930ddfd9d576d75079455df4240b7a3a GSHHS2.0_high.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 22:18:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:35 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested commit Message-ID: <20090717221835.290E910F89F@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-XML-Stream (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:18:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:34 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchbugzilla Message-ID: <20090717221834.41E2410F898@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-XML-Stream (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:18:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:40 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchcommits Message-ID: <20090717221840.45A6310F8A9@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-XML-Stream (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:18:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:52 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchbugzilla Message-ID: <20090717221852.F1D7E10F8A3@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-XML-Stream (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:18:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:55 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested commit Message-ID: <20090717221855.E18A910F89C@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-XML-Stream (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:18:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:18:53 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchcommits Message-ID: <20090717221853.9E15E10F8AD@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-XML-Stream (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:19:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:00 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchbugzilla Message-ID: <20090717221900.DC8C210F8B0@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-XML-Stream (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:19:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:01 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested watchcommits Message-ID: <20090717221901.2984B10F8B3@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-XML-Stream (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:19:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:03 +0000 Subject: [pkgdb] perl-XML-Stream: xavierb has requested commit Message-ID: <20090717221903.B1CB310F8A5@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-XML-Stream (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Fri Jul 17 22:19:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:44 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchbugzilla Message-ID: <20090717221944.3B04810F8AD@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-XMPP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:19:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:46 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested commit Message-ID: <20090717221946.B827910F8B8@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-XMPP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:19:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:44 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchcommits Message-ID: <20090717221944.DD08710F8B2@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-XMPP (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:19:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:19:55 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchbugzilla Message-ID: <20090717221955.93BF810F8BA@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-XMPP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:00 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchcommits Message-ID: <20090717222000.C981610F86B@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-XMPP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:05 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested commit Message-ID: <20090717222005.B353410F8BC@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-XMPP (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:11 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchbugzilla Message-ID: <20090717222011.641A810F8C1@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-XMPP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:12 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested watchcommits Message-ID: <20090717222012.0473310F8C2@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-XMPP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:14 +0000 Subject: [pkgdb] perl-Net-XMPP: xavierb has requested commit Message-ID: <20090717222014.4FA3710F8C3@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-XMPP (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Fri Jul 17 22:20:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:36 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchbugzilla Message-ID: <20090717222036.4524C10F8AF@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-Jabber (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:36 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchcommits Message-ID: <20090717222036.9D8E210F8B2@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-Jabber (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:38 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested commit Message-ID: <20090717222038.5312210F8B8@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-Jabber (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:46 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchbugzilla Message-ID: <20090717222046.6CC3910F8B3@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-Jabber (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:46 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchcommits Message-ID: <20090717222046.7A48210F8CC@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-Jabber (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:48 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested commit Message-ID: <20090717222048.1B58E10F8CF@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-Jabber (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:53 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchbugzilla Message-ID: <20090717222053.ACE5510F8DC@bastion2.fedora.phx.redhat.com> xavierb has requested the watchbugzilla acl on perl-Net-Jabber (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:54 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested watchcommits Message-ID: <20090717222054.39BC310F8DF@bastion2.fedora.phx.redhat.com> xavierb has requested the watchcommits acl on perl-Net-Jabber (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From pkgdb at fedoraproject.org Fri Jul 17 22:20:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 22:20:56 +0000 Subject: [pkgdb] perl-Net-Jabber: xavierb has requested commit Message-ID: <20090717222056.81A6510F8BA@bastion2.fedora.phx.redhat.com> xavierb has requested the commit acl on perl-Net-Jabber (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From karsten at fedoraproject.org Fri Jul 17 22:35:55 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Fri, 17 Jul 2009 22:35:55 +0000 (UTC) Subject: rpms/hdparm/devel hdparm-9.16-nostrip.patch, NONE, 1.1 hdparm-9.8-nostrip.patch, 1.1, NONE Message-ID: <20090717223556.0FE9211C00D3@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/hdparm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20590 Added Files: hdparm-9.16-nostrip.patch Removed Files: hdparm-9.8-nostrip.patch Log Message: - update nostrip patch hdparm-9.16-nostrip.patch: Makefile | 1 - 1 file changed, 1 deletion(-) --- NEW FILE hdparm-9.16-nostrip.patch --- diff -up hdparm-9.16/Makefile.nostrip hdparm-9.16/Makefile --- hdparm-9.16/Makefile.nostrip 2009-07-17 22:52:36.000000000 +0200 +++ hdparm-9.16/Makefile 2009-07-17 22:52:42.000000000 +0200 @@ -28,7 +28,6 @@ all: hdparm hdparm: hdparm.h sgio.h $(OBJS) $(CC) $(LDFLAGS) -o hdparm $(OBJS) - $(STRIP) hdparm hdparm.o: hdparm.h sgio.h --- hdparm-9.8-nostrip.patch DELETED --- From mbarnes at fedoraproject.org Fri Jul 17 23:09:41 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 17 Jul 2009 23:09:41 +0000 (UTC) Subject: rpms/evolution/devel .cvsignore, 1.116.2.9, 1.116.2.10 evolution.spec, 1.394.2.19, 1.394.2.20 sources, 1.116.2.13, 1.116.2.14 Message-ID: <20090717230942.031A811C00D3@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31791 Modified Files: Tag: private-mbarnes-kb .cvsignore evolution.spec sources Log Message: * Fri Jul 17 2009 Matthew Barnes - 2.27.4-1.kb.3.fc12 - Snapshot of "kill-bonobo" branch at commit becd78e. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/.cvsignore,v retrieving revision 1.116.2.9 retrieving revision 1.116.2.10 diff -u -p -r1.116.2.9 -r1.116.2.10 --- .cvsignore 15 Jul 2009 19:29:45 -0000 1.116.2.9 +++ .cvsignore 17 Jul 2009 23:09:41 -0000 1.116.2.10 @@ -1 +1 @@ -evolution-2.27.4-kill-bonobo-80f8519.tar.bz2 +evolution-2.27.4-kill-bonobo-becd78e.tar.bz2 Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.19 retrieving revision 1.394.2.20 diff -u -p -r1.394.2.19 -r1.394.2.20 --- evolution.spec 15 Jul 2009 19:29:45 -0000 1.394.2.19 +++ evolution.spec 17 Jul 2009 23:09:41 -0000 1.394.2.20 @@ -1,5 +1,5 @@ # This is an unofficial RPM for testing Evolution's kill-bonobo branch. -%define hash 80f8519 +%define hash becd78e %define dbus_glib_version 0.70 %define dbus_version 1.0 @@ -45,7 +45,7 @@ Name: evolution Version: 2.27.4 -Release: 1.kb.2%{?dist} +Release: 1.kb.3%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -671,6 +671,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Fri Jul 17 2009 Matthew Barnes - 2.27.4-1.kb.3.fc12 +- Snapshot of "kill-bonobo" branch at commit becd78e. + * Wed Jul 15 2009 Matthew Barnes - 2.27.4-1.kb.2.fc12 - Snapshot of "kill-bonobo" branch at commit 80f8519. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/sources,v retrieving revision 1.116.2.13 retrieving revision 1.116.2.14 diff -u -p -r1.116.2.13 -r1.116.2.14 --- sources 15 Jul 2009 19:29:45 -0000 1.116.2.13 +++ sources 17 Jul 2009 23:09:41 -0000 1.116.2.14 @@ -1 +1 @@ -de388d45bc39e70de0f500e2f2f40f9d evolution-2.27.4-kill-bonobo-80f8519.tar.bz2 +f2b291d4c97dc7ec577f25a0e5024d2f evolution-2.27.4-kill-bonobo-becd78e.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 17 23:23:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:37 +0000 Subject: [pkgdb] fet: fab has requested watchcommits Message-ID: <20090717232337.EA6E810F898@bastion2.fedora.phx.redhat.com> fab has requested the watchcommits acl on fet (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:38 +0000 Subject: [pkgdb] fet: fab has requested commit Message-ID: <20090717232338.CF37B10F89F@bastion2.fedora.phx.redhat.com> fab has requested the commit acl on fet (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:42 +0000 Subject: [pkgdb] fet: fab has requested watchbugzilla Message-ID: <20090717232342.CD9C910F8A9@bastion2.fedora.phx.redhat.com> fab has requested the watchbugzilla acl on fet (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:49 +0000 Subject: [pkgdb] fet: fab has requested watchbugzilla Message-ID: <20090717232349.A426A10F86B@bastion2.fedora.phx.redhat.com> fab has requested the watchbugzilla acl on fet (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:52 +0000 Subject: [pkgdb] fet: fab has requested watchcommits Message-ID: <20090717232352.6298D10F8B1@bastion2.fedora.phx.redhat.com> fab has requested the watchcommits acl on fet (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:54 +0000 Subject: [pkgdb] fet: fab has requested commit Message-ID: <20090717232354.93F3910F8B4@bastion2.fedora.phx.redhat.com> fab has requested the commit acl on fet (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:58 +0000 Subject: [pkgdb] fet: fab has requested watchbugzilla Message-ID: <20090717232358.37A5E10F890@bastion2.fedora.phx.redhat.com> fab has requested the watchbugzilla acl on fet (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:23:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:23:59 +0000 Subject: [pkgdb] fet: fab has requested watchcommits Message-ID: <20090717232359.4F2EE10F89C@bastion2.fedora.phx.redhat.com> fab has requested the watchcommits acl on fet (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From pkgdb at fedoraproject.org Fri Jul 17 23:24:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 17 Jul 2009 23:24:00 +0000 Subject: [pkgdb] fet: fab has requested commit Message-ID: <20090717232400.5193010F8B8@bastion2.fedora.phx.redhat.com> fab has requested the commit acl on fet (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fet From konradm at fedoraproject.org Sat Jul 18 00:35:11 2009 From: konradm at fedoraproject.org (konradm) Date: Sat, 18 Jul 2009 00:35:11 +0000 (UTC) Subject: rpms/mpfi/devel mpfi.spec,1.3,1.4 Message-ID: <20090718003511.3981411C005E@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/mpfi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24488 Modified Files: mpfi.spec Log Message: * Fri Jul 17 2009 Conrad Meyer - 1.3.4-0.6.RC3 - Add missing BR on texinfo. Index: mpfi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpfi/devel/mpfi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mpfi.spec 26 Feb 2009 02:56:21 -0000 1.3 +++ mpfi.spec 18 Jul 2009 00:35:09 -0000 1.4 @@ -1,6 +1,6 @@ Name: mpfi Version: 1.3.4 -Release: 0.5.RC3%{?dist} +Release: 0.6.RC3%{?dist} Summary: An interval arithmetic library based on MPFR Group: Applications/Engineering License: LGPLv2+ @@ -11,6 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: mpfr-devel BuildRequires: gmp-devel +BuildRequires: texinfo Requires(post): /sbin/install-info Requires(preun): /sbin/install-info @@ -82,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Conrad Meyer - 1.3.4-0.6.RC3 +- Add missing BR on texinfo. + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.4-0.5.RC3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sat Jul 18 00:52:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:01 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005201.7154C10F8AB@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora 9 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:06 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005206.C3F2010F8AD@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora 8 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:51:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:51:57 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005157.8745910F86B@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:10 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005210.99C0610F89A@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:07 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005208.1E0BE10F888@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora EPEL 5 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:11 +0000 Subject: [pkgdb] bytelist ownership updated Message-ID: <20090718005211.C1C4B10F89F@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:17 +0000 Subject: [pkgdb] bytelist (un)retirement Message-ID: <20090718005217.7DBAA10F8AF@bastion2.fedora.phx.redhat.com> Package bytelist in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bytelist From pkgdb at fedoraproject.org Sat Jul 18 00:52:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:49 +0000 Subject: [pkgdb] constantine ownership updated Message-ID: <20090718005249.A878410F888@bastion2.fedora.phx.redhat.com> Package constantine in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/constantine From pkgdb at fedoraproject.org Sat Jul 18 00:52:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:49 +0000 Subject: [pkgdb] constantine (un)retirement Message-ID: <20090718005249.AFF4010F89A@bastion2.fedora.phx.redhat.com> Package constantine in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/constantine From pkgdb at fedoraproject.org Sat Jul 18 00:52:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:54 +0000 Subject: [pkgdb] constantine ownership updated Message-ID: <20090718005254.7C56810F8B6@bastion2.fedora.phx.redhat.com> Package constantine in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/constantine From pkgdb at fedoraproject.org Sat Jul 18 00:52:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:55 +0000 Subject: [pkgdb] constantine ownership updated Message-ID: <20090718005255.D8E7E10F8A9@bastion2.fedora.phx.redhat.com> Package constantine in Fedora 9 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/constantine From pkgdb at fedoraproject.org Sat Jul 18 00:52:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:52:56 +0000 Subject: [pkgdb] constantine ownership updated Message-ID: <20090718005256.BE16610F8B7@bastion2.fedora.phx.redhat.com> Package constantine in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/constantine From pkgdb at fedoraproject.org Sat Jul 18 00:53:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:32 +0000 Subject: [pkgdb] jcodings ownership updated Message-ID: <20090718005332.2F8D710F89A@bastion2.fedora.phx.redhat.com> Package jcodings in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jcodings From pkgdb at fedoraproject.org Sat Jul 18 00:53:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:32 +0000 Subject: [pkgdb] jcodings (un)retirement Message-ID: <20090718005332.3F6A410F8AA@bastion2.fedora.phx.redhat.com> Package jcodings in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jcodings From pkgdb at fedoraproject.org Sat Jul 18 00:53:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:33 +0000 Subject: [pkgdb] jcodings ownership updated Message-ID: <20090718005333.AD19410F8B2@bastion2.fedora.phx.redhat.com> Package jcodings in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jcodings From pkgdb at fedoraproject.org Sat Jul 18 00:53:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:34 +0000 Subject: [pkgdb] jcodings ownership updated Message-ID: <20090718005334.22C5910F8B3@bastion2.fedora.phx.redhat.com> Package jcodings in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jcodings From pkgdb at fedoraproject.org Sat Jul 18 00:53:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:47 +0000 Subject: [pkgdb] jline ownership updated Message-ID: <20090718005347.E295A10F8AD@bastion2.fedora.phx.redhat.com> Package jline in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Sat Jul 18 00:53:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:47 +0000 Subject: [pkgdb] jline (un)retirement Message-ID: <20090718005347.E88EB10F8B1@bastion2.fedora.phx.redhat.com> Package jline in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Sat Jul 18 00:53:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:52 +0000 Subject: [pkgdb] jline ownership updated Message-ID: <20090718005353.0E20F10F8BC@bastion2.fedora.phx.redhat.com> Package jline in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Sat Jul 18 00:53:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:53:52 +0000 Subject: [pkgdb] jline ownership updated Message-ID: <20090718005352.4649610F8BA@bastion2.fedora.phx.redhat.com> Package jline in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jline From pkgdb at fedoraproject.org Sat Jul 18 00:55:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:31 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005531.BC3F610F89F@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora devel is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:31 +0000 Subject: [pkgdb] jna-posix (un)retirement Message-ID: <20090718005531.C53CD10F8AA@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:34 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005533.EFF2310F8B6@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora 9 is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:34 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005534.CAB2810F8B9@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora 8 is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:35 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005536.0D63410F8BC@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora EPEL 5 is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:37 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005537.06EAE10F8BF@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora 10 is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:55:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:55:38 +0000 Subject: [pkgdb] jna-posix ownership updated Message-ID: <20090718005538.289FB10F8C1@bastion2.fedora.phx.redhat.com> Package jna-posix in Fedora 11 is now owned by walters To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jna-posix From pkgdb at fedoraproject.org Sat Jul 18 00:56:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:33 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005633.3BD2210F8AA@bastion2.fedora.phx.redhat.com> Package joni in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:33 +0000 Subject: [pkgdb] joni (un)retirement Message-ID: <20090718005633.41D8C10F8AD@bastion2.fedora.phx.redhat.com> Package joni in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:33 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005633.B254B10F8B0@bastion2.fedora.phx.redhat.com> Package joni in Fedora 8 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:34 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005634.2BA5110F8B2@bastion2.fedora.phx.redhat.com> Package joni in Fedora 9 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:35 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005635.B855010F8B4@bastion2.fedora.phx.redhat.com> Package joni in Fedora EPEL 5 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:36 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005636.A3B8E10F8B6@bastion2.fedora.phx.redhat.com> Package joni in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:38 +0000 Subject: [pkgdb] joni ownership updated Message-ID: <20090718005638.18AB210F8B8@bastion2.fedora.phx.redhat.com> Package joni in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/joni From pkgdb at fedoraproject.org Sat Jul 18 00:56:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:55 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005655.A651810F8BB@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:56:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:55 +0000 Subject: [pkgdb] jvyamlb (un)retirement Message-ID: <20090718005655.AC56610F8BD@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:56:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:56 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005656.82B6F10F8BF@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora 8 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:56:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:57 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005657.9E8E810F8C1@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora 9 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:56:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:59 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005659.6EB5C10F89F@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:56:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:56:58 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005658.5CD3810F8C2@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora EPEL 5 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:57:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:00 +0000 Subject: [pkgdb] jvyamlb ownership updated Message-ID: <20090718005700.3F72810F8A6@bastion2.fedora.phx.redhat.com> Package jvyamlb in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jvyamlb From pkgdb at fedoraproject.org Sat Jul 18 00:57:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:12 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005712.D3FDA10F8A9@bastion2.fedora.phx.redhat.com> Package jruby in Fedora devel was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:12 +0000 Subject: [pkgdb] jruby (un)retirement Message-ID: <20090718005712.D9C3710F8AC@bastion2.fedora.phx.redhat.com> Package jruby in Fedora devel has been retired by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:13 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005713.DF4C810F8C5@bastion2.fedora.phx.redhat.com> Package jruby in Fedora 9 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:14 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005714.AC3F710F8C7@bastion2.fedora.phx.redhat.com> Package jruby in Fedora 8 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:16 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005716.8102710F8C9@bastion2.fedora.phx.redhat.com> Package jruby in Fedora EPEL 5 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:17 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005717.21C9410F8CB@bastion2.fedora.phx.redhat.com> Package jruby in Fedora 10 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From pkgdb at fedoraproject.org Sat Jul 18 00:57:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 00:57:18 +0000 Subject: [pkgdb] jruby ownership updated Message-ID: <20090718005718.1CA3710F8CD@bastion2.fedora.phx.redhat.com> Package jruby in Fedora 11 was orphaned by konradm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/jruby From mclasen at fedoraproject.org Sat Jul 18 01:01:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sat, 18 Jul 2009 01:01:18 +0000 (UTC) Subject: rpms/glib2/devel .cvsignore, 1.112, 1.113 glib2.spec, 1.211, 1.212 sources, 1.114, 1.115 Message-ID: <20090718010118.BBC7C11C00D3@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/glib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32401 Modified Files: .cvsignore glib2.spec sources Log Message: 2.21.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/.cvsignore,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- .cvsignore 6 Jul 2009 04:47:56 -0000 1.112 +++ .cvsignore 18 Jul 2009 01:00:47 -0000 1.113 @@ -1 +1 @@ -glib-2.21.3.tar.bz2 +glib-2.21.4.tar.bz2 Index: glib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/glib2.spec,v retrieving revision 1.211 retrieving revision 1.212 diff -u -p -r1.211 -r1.212 --- glib2.spec 6 Jul 2009 05:14:30 -0000 1.211 +++ glib2.spec 18 Jul 2009 01:00:48 -0000 1.212 @@ -2,8 +2,8 @@ Summary: A library of handy utility functions Name: glib2 -Version: 2.21.3 -Release: 2%{?dist} +Version: 2.21.4 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.a %changelog +* Fri Jul 17 2009 Matthias Clasen - 2.21.4-1 +- Update to 2.21.4 + * Mon Jul 6 2009 Matthias Clasen - 2.21.3-2 - Use --with-runtime-libdir Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/sources,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- sources 6 Jul 2009 04:47:56 -0000 1.114 +++ sources 18 Jul 2009 01:00:48 -0000 1.115 @@ -1 +1 @@ -8ed8d959a131e295ce75c8ebe867014e glib-2.21.3.tar.bz2 +5092c5b479ba80065dc164d27e63000f glib-2.21.4.tar.bz2 From whot at fedoraproject.org Sat Jul 18 02:30:00 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sat, 18 Jul 2009 02:30:00 +0000 (UTC) Subject: rpms/xorg-x11-util-macros/devel .cvsignore, 1.13, 1.14 sources, 1.13, 1.14 xorg-x11-util-macros.spec, 1.28, 1.29 Message-ID: <20090718023000.D090311C005E@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-util-macros/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27821 Modified Files: .cvsignore sources xorg-x11-util-macros.spec Log Message: * Sat Jul 18 2009 Peter Hutterer 1.2.2-1 - util-macros 1.2.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-util-macros/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 17 Dec 2008 15:31:06 -0000 1.13 +++ .cvsignore 18 Jul 2009 02:29:30 -0000 1.14 @@ -1 +1 @@ -util-macros-1.2.1.tar.bz2 +util-macros-1.2.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-util-macros/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 17 Dec 2008 15:31:06 -0000 1.13 +++ sources 18 Jul 2009 02:29:30 -0000 1.14 @@ -1 +1 @@ -dc7ddaf9bea8b341510efe4dac125af4 util-macros-1.2.1.tar.bz2 +0f9d0c659f269e905bcb9f706bc561ba util-macros-1.2.2.tar.bz2 Index: xorg-x11-util-macros.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-util-macros/devel/xorg-x11-util-macros.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xorg-x11-util-macros.spec 21 Apr 2009 18:37:02 -0000 1.28 +++ xorg-x11-util-macros.spec 18 Jul 2009 02:29:30 -0000 1.29 @@ -3,8 +3,8 @@ Summary: X.Org X11 Autotools macros Name: xorg-x11-util-macros -Version: 1.2.1 -Release: 3%{?dist} +Version: 1.2.2 +Release: 1%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/xorg-macros.m4 %changelog +* Sat Jul 18 2009 Peter Hutterer 1.2.2-1 +- util-macros 1.2.2 + * Tue Apr 21 2009 Adam Jackson 1.2.1-3 - Add Requires: for the things you inevitably require if you need this package. From limb at fedoraproject.org Sat Jul 18 03:16:30 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Sat, 18 Jul 2009 03:16:30 +0000 (UTC) Subject: rpms/limph/devel limph.spec,1.7,1.8 Message-ID: <20090718031631.1893211C005E@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/limph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10867 Modified Files: limph.spec Log Message: Dropped php-mhash from subpackage, fixed EVR. Index: limph.spec =================================================================== RCS file: /cvs/pkgs/rpms/limph/devel/limph.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- limph.spec 14 Jul 2009 17:06:43 -0000 1.7 +++ limph.spec 18 Jul 2009 03:16:00 -0000 1.8 @@ -1,7 +1,7 @@ %define limphdir %{_datadir}/limph Name: limph Version: 1.9.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A PHP5-compatible network host/service poller with web interface Group: Applications/System @@ -32,7 +32,6 @@ information. Summary: A host agent for Limph, the network monitor Group: Applications/System -Requires: php-mhash Requires: php-mcrypt Requires: limph-common = %{version}-%{release} @@ -92,6 +91,10 @@ rm -rf %{buildroot} %{limphdir}/config.php %changelog +* Fri Jul 17 2009 Jon Ciesla - 1.9.6-5 +- Dropped php-mhash requires from subpackage. +- Fixed EVR. . . + * Tue Jul 14 2009 Jon Ciesla - 1.9.6-1 - New upstream to move from deprecated mhash to hash. - Dropped php-mhash requires. From mclasen at fedoraproject.org Sat Jul 18 03:33:41 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sat, 18 Jul 2009 03:33:41 +0000 (UTC) Subject: rpms/gtk2/devel .cvsignore, 1.109, 1.110 gtk2.spec, 1.388, 1.389 sources, 1.118, 1.119 Message-ID: <20090718033341.7B9C111C005E@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15654 Modified Files: .cvsignore gtk2.spec sources Log Message: 2.17.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/.cvsignore,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- .cvsignore 11 Jul 2009 01:23:45 -0000 1.109 +++ .cvsignore 18 Jul 2009 03:33:40 -0000 1.110 @@ -1 +1 @@ -gtk+-2.17.4.tar.bz2 +gtk+-2.17.5.tar.bz2 Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.388 retrieving revision 1.389 diff -u -p -r1.388 -r1.389 --- gtk2.spec 17 Jul 2009 00:53:26 -0000 1.388 +++ gtk2.spec 18 Jul 2009 03:33:40 -0000 1.389 @@ -11,13 +11,13 @@ %define libpng_version 2:1.2.2-16 %define xrandr_version 1.2.99.4-2 -%define base_version 2.17.4 +%define base_version 2.17.5 %define bin_version 2.10.0 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 2%{?dist} +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -29,8 +29,6 @@ Source3: im-cedilla.conf Patch0: gtk+-2.13.5-lib64.patch # http://bugzilla.redhat.com/show_bug.cgi?id=478400 Patch1: default_printer.patch -# from upstream -Patch2: entry-include-fix.patch BuildRequires: atk-devel >= %{atk_version} BuildRequires: pango-devel >= %{pango_version} @@ -143,7 +141,6 @@ This package contains developer document %patch0 -p1 -b .lib64 %patch1 -p0 -b .default-printer -%patch2 -p1 -b .entry-include-fix # make sure that gtkmarshalers.{c, h} get regenerated during the build # - caused by print_authentication.patch @@ -383,6 +380,9 @@ fi %changelog +* Fri Jul 17 2009 Matthias Clasen - 2.17.5-1 +- Update to 2.17.5 + * Mon Jul 13 2009 Matthias Clasen - 2.17.4-2 - Fix a problem with gtkentry.h Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/sources,v retrieving revision 1.118 retrieving revision 1.119 diff -u -p -r1.118 -r1.119 --- sources 11 Jul 2009 01:23:45 -0000 1.118 +++ sources 18 Jul 2009 03:33:40 -0000 1.119 @@ -1 +1 @@ -fab0833657d241ee92580d589caeee64 gtk+-2.17.4.tar.bz2 +549fe72768e2d3e6a9553d45622134d2 gtk+-2.17.5.tar.bz2 From pkgdb at fedoraproject.org Sat Jul 18 03:35:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 03:35:33 +0000 Subject: [pkgdb] emesene: johnnyrps has requested watchcommits Message-ID: <20090718033533.3205510F899@bastion2.fedora.phx.redhat.com> johnnyrps has requested the watchcommits acl on emesene (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emesene From bjohnson at fedoraproject.org Sat Jul 18 04:02:31 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sat, 18 Jul 2009 04:02:31 +0000 (UTC) Subject: rpms/conduit/devel .cvsignore, 1.11, 1.12 conduit.spec, 1.29, 1.30 sources, 1.11, 1.12 conduit-0.3.14-defaults.patch, 1.1, NONE cpu-usage.patch, 1.1, NONE Message-ID: <20090718040231.5DD9D11C00D3@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/conduit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24750/devel Modified Files: .cvsignore conduit.spec sources Removed Files: conduit-0.3.14-defaults.patch cpu-usage.patch Log Message: - v 0.3.16 (bz #512406) - don't include TODO file (bz #510899) - remove defaults patch - remove cpu usage patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/conduit/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Nov 2008 03:05:36 -0000 1.11 +++ .cvsignore 18 Jul 2009 04:02:01 -0000 1.12 @@ -1 +1 @@ -conduit-0.3.15.tar.gz +conduit-0.3.16.tar.gz Index: conduit.spec =================================================================== RCS file: /cvs/pkgs/rpms/conduit/devel/conduit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- conduit.spec 21 Jun 2009 16:17:20 -0000 1.29 +++ conduit.spec 18 Jul 2009 04:02:01 -0000 1.30 @@ -1,16 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: conduit -Version: 0.3.15 -Release: 6%{?dist} +Version: 0.3.16 +Release: 1%{?dist} Summary: A synchronization solution for GNOME Group: Applications/Productivity License: GPLv2+ URL: http://www.conduit-project.org/ Source0: http://download.gnome.org/sources/conduit/0.3/%{name}-%{version}.tar.gz -Patch0: conduit-0.3.14-defaults.patch -Patch1: cpu-usage.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,11 +55,9 @@ synchronization. %prep %setup -q -n conduit-%{version} -%patch0 -p1 -b .defaults -%patch1 -p1 -b .cpu-usage # fix eol encoding in a couple of files -sed -i 's/\r//' NEWS TODO +sed -i 's/\r//' NEWS # get rid of any shebangs for file in `find conduit/{dataproviders,hildonui,modules} -type f -print`; do @@ -121,11 +117,10 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS COPYING NEWS README TODO +%doc AUTHORS COPYING NEWS README %{python_sitelib}/%{name} %{_bindir}/* %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/gnome/autostart/%{name}-autostart.desktop %{_datadir}/%{name} %{_datadir}/dbus-1/services/org.conduit.service %{_datadir}/gnome/help/conduit @@ -140,6 +135,12 @@ fi %changelog +* Fri Jul 17 2009 Bernard Johnson - 0.3.16-1 +- v 0.3.16 (bz #512406) +- don't include TODO file (bz #510899) +- remove defaults patch +- remove cpu usage patch + * Sun Jun 21 2009 Bernard Johnson - 0.3.15-6 - patch to bring down cpu usage for python 2.6 @@ -223,7 +224,6 @@ fi - patch for pygoocanvas API = 0.9 - update license tag to GPLv2+ - * Mon Jun 11 2007 Bernard Johnson - 0.3.1-2 - remove Application from desktop file category Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/conduit/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Nov 2008 03:05:36 -0000 1.11 +++ sources 18 Jul 2009 04:02:01 -0000 1.12 @@ -1 +1 @@ -82685d4aa09ccd6aa02c3591fcc66842 conduit-0.3.15.tar.gz +6fd4acb11256d5b77cca01bb7c58159b conduit-0.3.16.tar.gz --- conduit-0.3.14-defaults.patch DELETED --- --- cpu-usage.patch DELETED --- From bjohnson at fedoraproject.org Sat Jul 18 04:02:31 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Sat, 18 Jul 2009 04:02:31 +0000 (UTC) Subject: rpms/conduit/F-11 .cvsignore, 1.11, 1.12 conduit.spec, 1.29, 1.30 sources, 1.11, 1.12 conduit-0.3.14-defaults.patch, 1.1, NONE cpu-usage.patch, 1.1, NONE Message-ID: <20090718040231.28ECF11C0092@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/conduit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24750/F-11 Modified Files: .cvsignore conduit.spec sources Removed Files: conduit-0.3.14-defaults.patch cpu-usage.patch Log Message: - v 0.3.16 (bz #512406) - don't include TODO file (bz #510899) - remove defaults patch - remove cpu usage patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/conduit/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Nov 2008 03:05:36 -0000 1.11 +++ .cvsignore 18 Jul 2009 04:02:00 -0000 1.12 @@ -1 +1 @@ -conduit-0.3.15.tar.gz +conduit-0.3.16.tar.gz Index: conduit.spec =================================================================== RCS file: /cvs/pkgs/rpms/conduit/F-11/conduit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- conduit.spec 21 Jun 2009 16:17:20 -0000 1.29 +++ conduit.spec 18 Jul 2009 04:02:00 -0000 1.30 @@ -1,16 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: conduit -Version: 0.3.15 -Release: 6%{?dist} +Version: 0.3.16 +Release: 1%{?dist} Summary: A synchronization solution for GNOME Group: Applications/Productivity License: GPLv2+ URL: http://www.conduit-project.org/ Source0: http://download.gnome.org/sources/conduit/0.3/%{name}-%{version}.tar.gz -Patch0: conduit-0.3.14-defaults.patch -Patch1: cpu-usage.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,11 +55,9 @@ synchronization. %prep %setup -q -n conduit-%{version} -%patch0 -p1 -b .defaults -%patch1 -p1 -b .cpu-usage # fix eol encoding in a couple of files -sed -i 's/\r//' NEWS TODO +sed -i 's/\r//' NEWS # get rid of any shebangs for file in `find conduit/{dataproviders,hildonui,modules} -type f -print`; do @@ -121,11 +117,10 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS COPYING NEWS README TODO +%doc AUTHORS COPYING NEWS README %{python_sitelib}/%{name} %{_bindir}/* %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/gnome/autostart/%{name}-autostart.desktop %{_datadir}/%{name} %{_datadir}/dbus-1/services/org.conduit.service %{_datadir}/gnome/help/conduit @@ -140,6 +135,12 @@ fi %changelog +* Fri Jul 17 2009 Bernard Johnson - 0.3.16-1 +- v 0.3.16 (bz #512406) +- don't include TODO file (bz #510899) +- remove defaults patch +- remove cpu usage patch + * Sun Jun 21 2009 Bernard Johnson - 0.3.15-6 - patch to bring down cpu usage for python 2.6 @@ -223,7 +224,6 @@ fi - patch for pygoocanvas API = 0.9 - update license tag to GPLv2+ - * Mon Jun 11 2007 Bernard Johnson - 0.3.1-2 - remove Application from desktop file category Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/conduit/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Nov 2008 03:05:36 -0000 1.11 +++ sources 18 Jul 2009 04:02:00 -0000 1.12 @@ -1 +1 @@ -82685d4aa09ccd6aa02c3591fcc66842 conduit-0.3.15.tar.gz +6fd4acb11256d5b77cca01bb7c58159b conduit-0.3.16.tar.gz --- conduit-0.3.14-defaults.patch DELETED --- --- cpu-usage.patch DELETED --- From wart at fedoraproject.org Sat Jul 18 04:34:58 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sat, 18 Jul 2009 04:34:58 +0000 (UTC) Subject: rpms/spr/EL-4 spr.spec,1.3,1.4 Message-ID: <20090718043458.418EF11C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22280 Modified Files: spr.spec Log Message: Add Epoch: due to non-increasing version change upatream Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/spr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- spr.spec 14 Jul 2009 07:08:59 -0000 1.3 +++ spr.spec 18 Jul 2009 04:34:27 -0000 1.4 @@ -1,6 +1,7 @@ Name: spr Version: 3.3.2 Release: 1%{?dist} +Epoch: 1 Summary: Library for categorization of data Group: Development/Libraries @@ -77,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Wart - 1:3.3.2-1 +- Add Epoch: due to non-increasing version change upatream + * Mon Jul 13 2009 Wart - 3.3.2-1 - Update to latest release; rebase to Fedora version From wart at fedoraproject.org Sat Jul 18 04:43:10 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sat, 18 Jul 2009 04:43:10 +0000 (UTC) Subject: rpms/spr/EL-4 spr.spec,1.4,1.5 Message-ID: <20090718044310.B1EB311C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25163 Modified Files: spr.spec Log Message: bump release with Epoch bump Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/spr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- spr.spec 18 Jul 2009 04:34:27 -0000 1.4 +++ spr.spec 18 Jul 2009 04:42:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: spr Version: 3.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Library for categorization of data From mclasen at fedoraproject.org Sat Jul 18 05:36:30 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sat, 18 Jul 2009 05:36:30 +0000 (UTC) Subject: rpms/gtk2/F-11 .cvsignore, 1.107, 1.108 gtk2.spec, 1.380, 1.381 sources, 1.116, 1.117 Message-ID: <20090718053630.3C04611C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6934 Modified Files: .cvsignore gtk2.spec sources Log Message: 2.16.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/.cvsignore,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- .cvsignore 1 Jul 2009 23:01:22 -0000 1.107 +++ .cvsignore 18 Jul 2009 05:35:59 -0000 1.108 @@ -1 +1 @@ -gtk+-2.16.4.tar.bz2 +gtk+-2.16.5.tar.bz2 Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/gtk2.spec,v retrieving revision 1.380 retrieving revision 1.381 diff -u -p -r1.380 -r1.381 --- gtk2.spec 1 Jul 2009 23:01:22 -0000 1.380 +++ gtk2.spec 18 Jul 2009 05:35:59 -0000 1.381 @@ -11,7 +11,7 @@ %define libpng_version 2:1.2.2-16 %define xrandr_version 1.2.99.4-2 -%define base_version 2.16.4 +%define base_version 2.16.5 %define bin_version 2.10.0 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X @@ -373,6 +373,9 @@ fi %changelog +* Sat Jul 18 2009 Matthias Clasen - 2.16.5-1 +- Update to 2.16.5 + * Wed Jul 1 2009 Matthias Clasen - 2.16.4-1 - Update to 2.16.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/F-11/sources,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- sources 1 Jul 2009 23:01:22 -0000 1.116 +++ sources 18 Jul 2009 05:35:59 -0000 1.117 @@ -1 +1 @@ -d666f9f5a544e9d4d45804d88b1b5c4d gtk+-2.16.4.tar.bz2 +8d1ea0b9b0400224d25b0cc2750b438d gtk+-2.16.5.tar.bz2 From knol at fedoraproject.org Sat Jul 18 07:16:13 2009 From: knol at fedoraproject.org (knol) Date: Sat, 18 Jul 2009 07:16:13 +0000 (UTC) Subject: rpms/getmail/devel .cvsignore, 1.8, 1.9 getmail.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090718071613.7CC3111C0099@cvs1.fedora.phx.redhat.com> Author: knol Update of /cvs/pkgs/rpms/getmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31029 Modified Files: .cvsignore getmail.spec sources Log Message: Update to 4.9.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/getmail/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 9 Apr 2009 12:54:46 -0000 1.8 +++ .cvsignore 18 Jul 2009 07:15:41 -0000 1.9 @@ -1 +1 @@ -getmail-4.9.0.tar.gz +getmail-4.9.2.tar.gz Index: getmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/getmail/devel/getmail.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- getmail.spec 9 Apr 2009 12:54:47 -0000 1.9 +++ getmail.spec 18 Jul 2009 07:15:42 -0000 1.10 @@ -2,7 +2,7 @@ Summary: POP3, IMAP4 and SDPS mail retriever with Maildir delivery Name: getmail -Version: 4.9.0 +Version: 4.9.2 Release: 1%{?dist} License: GPLv2 Group: Applications/Internet @@ -55,6 +55,9 @@ Getmail is written entirely in python. %{python_sitelib}/getmailcore/ %changelog +* Sat Jul 18 2009 Dean Mander - 4.9.2-1 +- Update to release 4.9.2 + * Thu Apr 09 2009 Dean Mander - 4.9.0-1 - Update to release 4.9.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/getmail/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 9 Apr 2009 12:54:47 -0000 1.9 +++ sources 18 Jul 2009 07:15:42 -0000 1.10 @@ -1 +1 @@ -57f1e8e61b7a329fdf6439f63f07145b getmail-4.9.0.tar.gz +cbb2ef7bf12e2b6b4b748a73979e67a4 getmail-4.9.2.tar.gz From knol at fedoraproject.org Sat Jul 18 07:18:49 2009 From: knol at fedoraproject.org (knol) Date: Sat, 18 Jul 2009 07:18:49 +0000 (UTC) Subject: rpms/getmail/F-10 .cvsignore, 1.8, 1.9 getmail.spec, 1.7, 1.8 sources, 1.9, 1.10 Message-ID: <20090718071849.A42EE11C0099@cvs1.fedora.phx.redhat.com> Author: knol Update of /cvs/pkgs/rpms/getmail/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31656 Modified Files: .cvsignore getmail.spec sources Log Message: Update to 4.9.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 9 Apr 2009 13:04:53 -0000 1.8 +++ .cvsignore 18 Jul 2009 07:18:18 -0000 1.9 @@ -1 +1 @@ -getmail-4.9.0.tar.gz +getmail-4.9.2.tar.gz Index: getmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-10/getmail.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- getmail.spec 9 Apr 2009 13:04:54 -0000 1.7 +++ getmail.spec 18 Jul 2009 07:18:19 -0000 1.8 @@ -2,7 +2,7 @@ Summary: POP3, IMAP4 and SDPS mail retriever with Maildir delivery Name: getmail -Version: 4.9.0 +Version: 4.9.2 Release: 1%{?dist} License: GPLv2 Group: Applications/Internet @@ -55,6 +55,9 @@ Getmail is written entirely in python. %{python_sitelib}/getmailcore/ %changelog +* Sat Jul 18 2009 Dean Mander - 4.9.2-1 +- Update to release 4.9.2 + * Thu Apr 09 2009 Dean Mander - 4.9.0-1 - Update to release 4.9.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 9 Apr 2009 13:04:54 -0000 1.9 +++ sources 18 Jul 2009 07:18:19 -0000 1.10 @@ -1 +1 @@ -57f1e8e61b7a329fdf6439f63f07145b getmail-4.9.0.tar.gz +cbb2ef7bf12e2b6b4b748a73979e67a4 getmail-4.9.2.tar.gz From knol at fedoraproject.org Sat Jul 18 07:22:45 2009 From: knol at fedoraproject.org (knol) Date: Sat, 18 Jul 2009 07:22:45 +0000 (UTC) Subject: rpms/getmail/F-11 .cvsignore, 1.8, 1.9 getmail.spec, 1.9, 1.10 sources, 1.9, 1.10 Message-ID: <20090718072245.BDCAD11C0099@cvs1.fedora.phx.redhat.com> Author: knol Update of /cvs/pkgs/rpms/getmail/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv889 Modified Files: .cvsignore getmail.spec sources Log Message: Update to 4.9.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 9 Apr 2009 12:54:46 -0000 1.8 +++ .cvsignore 18 Jul 2009 07:22:15 -0000 1.9 @@ -1 +1 @@ -getmail-4.9.0.tar.gz +getmail-4.9.2.tar.gz Index: getmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-11/getmail.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- getmail.spec 9 Apr 2009 12:54:47 -0000 1.9 +++ getmail.spec 18 Jul 2009 07:22:15 -0000 1.10 @@ -2,7 +2,7 @@ Summary: POP3, IMAP4 and SDPS mail retriever with Maildir delivery Name: getmail -Version: 4.9.0 +Version: 4.9.2 Release: 1%{?dist} License: GPLv2 Group: Applications/Internet @@ -55,6 +55,9 @@ Getmail is written entirely in python. %{python_sitelib}/getmailcore/ %changelog +* Sat Jul 18 2009 Dean Mander - 4.9.2-1 +- Update to release 4.9.2 + * Thu Apr 09 2009 Dean Mander - 4.9.0-1 - Update to release 4.9.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/getmail/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 9 Apr 2009 12:54:47 -0000 1.9 +++ sources 18 Jul 2009 07:22:15 -0000 1.10 @@ -1 +1 @@ -57f1e8e61b7a329fdf6439f63f07145b getmail-4.9.0.tar.gz +cbb2ef7bf12e2b6b4b748a73979e67a4 getmail-4.9.2.tar.gz From pfj at fedoraproject.org Sat Jul 18 07:47:42 2009 From: pfj at fedoraproject.org (Paul F. Johnson) Date: Sat, 18 Jul 2009 07:47:42 +0000 (UTC) Subject: rpms/mono/devel .cvsignore, 1.42, 1.43 import.log, 1.52, 1.53 mono.spec, 1.136, 1.137 sources, 1.55, 1.56 Message-ID: <20090718074742.6B50711C0099@cvs1.fedora.phx.redhat.com> Author: pfj Update of /cvs/pkgs/rpms/mono/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6328/devel Modified Files: .cvsignore import.log mono.spec sources Log Message: Fix cve-2009-0812 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 9 Jul 2009 22:17:39 -0000 1.42 +++ .cvsignore 18 Jul 2009 07:47:10 -0000 1.43 @@ -1 +1 @@ -mono-2.4.2.1.tar.bz2 +mono-2.4.2.2.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/import.log,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- import.log 9 Jul 2009 22:17:39 -0000 1.52 +++ import.log 18 Jul 2009 07:47:10 -0000 1.53 @@ -50,3 +50,4 @@ mono-2_4_2-3_fc12:HEAD:mono-2.4.2-3.fc12 mono-2_4_2-4_fc12:HEAD:mono-2.4.2-4.fc12.src.rpm:1245789078 mono-2_4_2-5_fc12:HEAD:mono-2.4.2-5.fc12.src.rpm:1246322011 mono-2_4_2_1-1_fc12:HEAD:mono-2.4.2.1-1.fc12.src.rpm:1247177797 +mono-2_4_2_2-1_fc12:HEAD:mono-2.4.2.2-1.fc12.src.rpm:1247867889 Index: mono.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/mono.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- mono.spec 9 Jul 2009 22:17:39 -0000 1.136 +++ mono.spec 18 Jul 2009 07:47:10 -0000 1.137 @@ -1,5 +1,5 @@ Name: mono -Version: 2.4.2.1 +Version: 2.4.2.2 Release: 1%{?dist} Summary: A .NET runtime environment @@ -721,6 +721,9 @@ install monodir %{buildroot}%{_bindir} %{_libdir}/pkgconfig/monodoc.pc %changelog +* Fri Jul 17 2009 Paul F. Johnson 2.4.2.2-1 +- Patch for cve-2009-0217 + * Thu Jul 09 2009 Paul F. Johnson 2.4.2.1-1 - Bump to 2.4.2.1 release - Add system.web.mvc Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/sources,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- sources 9 Jul 2009 22:17:39 -0000 1.55 +++ sources 18 Jul 2009 07:47:11 -0000 1.56 @@ -1 +1 @@ -727f11c1b33b49bc4d15ca63ab0af410 mono-2.4.2.1.tar.bz2 +54aac9b914c5a4dc81c2bfd058df1c93 mono-2.4.2.2.tar.bz2 From pkgdb at fedoraproject.org Sat Jul 18 08:10:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:25 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081025.8982D10F86B@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora devel was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From pkgdb at fedoraproject.org Sat Jul 18 08:10:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:30 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081030.F10D910F899@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora 7 was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From pkgdb at fedoraproject.org Sat Jul 18 08:10:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:32 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081032.E4F2310F8A3@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora 8 was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From pkgdb at fedoraproject.org Sat Jul 18 08:10:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:35 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081035.65F8310F8A6@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora 9 was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From pkgdb at fedoraproject.org Sat Jul 18 08:10:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:37 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081037.F37F310F89F@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora 10 was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From pkgdb at fedoraproject.org Sat Jul 18 08:10:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 08:10:40 +0000 Subject: [pkgdb] goffice04 ownership updated Message-ID: <20090718081040.1163F10F8AB@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora 11 was orphaned by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From caolanm at fedoraproject.org Sat Jul 18 09:31:07 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 18 Jul 2009 09:31:07 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1964,1.1965 Message-ID: <20090718093108.1C43511C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5750 Modified Files: openoffice.org.spec Log Message: require new hunspell-kn Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1964 retrieving revision 1.1965 diff -u -p -r1.1964 -r1.1965 --- openoffice.org.spec 16 Jul 2009 08:38:01 -0000 1.1964 +++ openoffice.org.spec 18 Jul 2009 09:30:36 -0000 1.1965 @@ -1345,7 +1345,7 @@ Provides additional urdu translations an Summary: Kannada language pack for OpenOffice.org Group: Applications/Productivity Requires: %{name}-core = %{epoch}:%{version}-%{release} -Requires: hyphen-kn +Requires: hunspell-kn, hyphen-kn Requires: lohit-fonts-kannada Obsoletes: openoffice.org2-langpack-kn_IN < 1:3.0.0 From pbrobinson at fedoraproject.org Sat Jul 18 09:33:13 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 09:33:13 +0000 (UTC) Subject: rpms/bognor-regis/devel .cvsignore, 1.3, 1.4 bognor-regis.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090718093313.CE27211C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6322 Modified Files: .cvsignore bognor-regis.spec sources Log Message: - New upstream 0.4.7 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Jul 2009 14:41:23 -0000 1.3 +++ .cvsignore 18 Jul 2009 09:32:43 -0000 1.4 @@ -1 +1 @@ -BOGNOR_0_4_6.tar.bz2 +bognor-regis-0_4_7.tar.bz2 Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bognor-regis.spec 4 Jul 2009 14:41:23 -0000 1.2 +++ bognor-regis.spec 18 Jul 2009 09:32:43 -0000 1.3 @@ -1,12 +1,12 @@ Name: bognor-regis -Version: 0.4.6 +Version: 0.4.7 Release: 1%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia License: GPLv2 URL: http://www.moblin.org/ -Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/BOGNOR_0_4_6.tar.bz2 +Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/bognor-regis-0_4_7.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -33,7 +33,7 @@ Requires: pkgconfig Files for development with %{name}. %prep -%setup -q -n BOGNOR_0_4_6 +%setup -q -n bognor-regis-0_4_7 %build ./autogen.sh @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Sat Jul 18 2009 Peter Robinson 0.4.7-1 +- New upstream 0.4.7 release + * Sat Jul 4 2009 Peter Robinson 0.4.6-1 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Jul 2009 14:41:23 -0000 1.3 +++ sources 18 Jul 2009 09:32:43 -0000 1.4 @@ -1 +1 @@ -c41b172f57dfbed51a3d30535949f3f9 BOGNOR_0_4_6.tar.bz2 +f94a54243cd0e315e73317f529722be8 bognor-regis-0_4_7.tar.bz2 From pbrobinson at fedoraproject.org Sat Jul 18 10:32:28 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 10:32:28 +0000 (UTC) Subject: rpms/mojito/devel .cvsignore, 1.4, 1.5 mojito.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090718103228.22A7811C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23662 Modified Files: .cvsignore mojito.spec sources Log Message: - Update to 0.19 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 14 Jul 2009 11:52:19 -0000 1.4 +++ .cvsignore 18 Jul 2009 10:31:57 -0000 1.5 @@ -1 +1 @@ -mojito-0.18.1.tar.bz2 +mojito-0.19.tar.bz2 Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mojito.spec 14 Jul 2009 11:52:19 -0000 1.5 +++ mojito.spec 18 Jul 2009 10:31:57 -0000 1.6 @@ -1,5 +1,5 @@ Name: mojito -Version: 0.18.1 +Version: 0.19 Release: 1%{?dist} Summary: A social network data aggregator @@ -103,6 +103,9 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog +* Sat Jul 18 2009 Peter Robinson 0.19-1 +- Update to 0.19 + * Mon Jul 6 2009 Peter Robinson 0.18.1-1 - Update to 0.18.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 14 Jul 2009 11:52:19 -0000 1.4 +++ sources 18 Jul 2009 10:31:57 -0000 1.5 @@ -1 +1 @@ -da9d1aef51a111a6d256ae968b05910b mojito-0.18.1.tar.bz2 +ddca487e0a1e56088ae0474183c98723 mojito-0.19.tar.bz2 From lkundrak at fedoraproject.org Sat Jul 18 10:33:16 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Sat, 18 Jul 2009 10:33:16 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-pop-push-error.patch, 1.1, 1.2 parted.spec, 1.135, 1.136 Message-ID: <20090718103316.1807311C00E5@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24012 Modified Files: parted-1.9.0-pop-push-error.patch parted.spec Log Message: * Sat Jul 18 2009 Lubomir Rintel - 1.9.0-3.20090610git32dc - Fix a typo in the errno patch parted-1.9.0-pop-push-error.patch: disk.c | 86 ++++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 56 insertions(+), 30 deletions(-) Index: parted-1.9.0-pop-push-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0-pop-push-error.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parted-1.9.0-pop-push-error.patch 10 Jul 2009 13:16:25 -0000 1.1 +++ parted-1.9.0-pop-push-error.patch 18 Jul 2009 10:33:15 -0000 1.2 @@ -1,4 +1,4 @@ -From fd2df92bbaaa5926b0c67916a5947af102cac20c Mon Sep 17 00:00:00 2001 +From 72866a8b24da93e982142304c614d08bae5589c7 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 17:05:39 +0200 Subject: [PATCH] return errro on push or pop update mode. @@ -8,7 +8,7 @@ Subject: [PATCH] return errro on push or 1 files changed, 56 insertions(+), 29 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c -index 3269b9d..6884c83 100644 +index 5fb8060..8bab741 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -54,8 +54,8 @@ @@ -31,7 +31,7 @@ index 3269b9d..6884c83 100644 + goto error_destroy_new_part; ret = _disk_raw_add (disk, new_part); - _disk_pop_update_mode (disk); -+ if (_disk_pop_update_mode (disk)) ++ if (!_disk_pop_update_mode (disk)) + goto error_destroy_new_part; if (!ret) goto error_destroy_new_part; @@ -276,5 +276,5 @@ index 3269b9d..6884c83 100644 } -- -1.6.0.6 +1.6.3.3 Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- parted.spec 13 Jul 2009 18:18:16 -0000 1.135 +++ parted.spec 18 Jul 2009 10:33:15 -0000 1.136 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 2.20090610git32dc%{?dist} +Release: 3.20090610git32dc%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -128,6 +128,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Sat Jul 18 2009 Lubomir Rintel - 1.9.0-3.20090610git32dc +- Fix a typo in the errno patch + * Mon Jul 13 2009 Joel Granados - 1.9.0-2.20090610git32dc - Correctly number the snapshot. From pbrobinson at fedoraproject.org Sat Jul 18 10:37:20 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 10:37:20 +0000 (UTC) Subject: rpms/libccss/F-11 libccss.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090718103720.2119B11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/libccss/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25073 Modified Files: .cvsignore sources Added Files: libccss.spec Log Message: - initial F-11 build --- NEW FILE libccss.spec --- Name: libccss Version: 0.3.1 Release: 2%{?dist} Summary: A simple api for CSS Stylesheets Group: System Environment/Libraries License: LGPLv2+ URL: http://people.freedesktop.org/~robsta/libccss/ Source0: http://people.freedesktop.org/~robsta/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cairo-devel BuildRequires: glib2-devel BuildRequires: libcroco-devel BuildRequires: librsvg2-devel BuildRequires: libsoup-devel BuildRequires: pkgconfig %description Libccss offers a simple API to * Parse CSS stylesheets. * Query for style configurations on a user-provided document representation. * Draw query results onto cairo surfaces. %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk-doc %description devel Files for development with %{name}. %prep %setup -q %build %configure --disable-examples # Remove rpath as per https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. rm -rf %{buildroot}/%{_libdir}/*.la %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING NEWS TODO %{_libdir}/libccss-1.so.3.0.1 %{_libdir}/libccss-gtk-1.so.3.0.1 %{_libdir}/libccss-cairo-1.so.3.0.1 %{_libdir}/libccss-1.so.3 %{_libdir}/libccss-cairo-1.so.3 %{_libdir}/libccss-gtk-1.so.3 %{_bindir}/ccss-stylesheet-to-gtkrc %files devel %defattr(-,root,root,-) %dir %{_includedir}/libccss-1/ %{_includedir}/libccss-1/ccss %{_includedir}/libccss-1/ccss-gtk %{_includedir}/libccss-1/ccss-cairo %{_libdir}/pkgconfig/libccss-1.pc %{_libdir}/pkgconfig/libccss-cairo-1.pc %{_libdir}/pkgconfig/libccss-gtk-1.pc %{_libdir}/libccss-1.so %{_libdir}/libccss-cairo-1.so %{_libdir}/libccss-gtk-1.so %{_datadir}/gtk-doc/html/ccss %{_datadir}/gtk-doc/html/ccss-cairo %changelog * Thu Jul 9 2009 Peter Robinson 0.3.1-2 - Add new files to specs * Thu Jul 9 2009 Peter Robinson 0.3.1-1 - New release - 0.3.1 * Thu Jun 18 2009 Peter Robinson 0.3.0-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libccss/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 18 Jun 2009 20:29:37 -0000 1.1 +++ .cvsignore 18 Jul 2009 10:36:49 -0000 1.2 @@ -0,0 +1 @@ +libccss-0.3.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libccss/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 18 Jun 2009 20:29:37 -0000 1.1 +++ sources 18 Jul 2009 10:36:49 -0000 1.2 @@ -0,0 +1 @@ +c13c4dcafbd595e66b47399129f48fa6 libccss-0.3.1.tar.gz From pbrobinson at fedoraproject.org Sat Jul 18 10:39:14 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 10:39:14 +0000 (UTC) Subject: rpms/rest/F-11 rest.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090718103914.66DDD11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/rest/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25616 Modified Files: .cvsignore sources Added Files: rest.spec Log Message: - initial F-11 build --- NEW FILE rest.spec --- Name: rest Version: 0.5 Release: 1%{?dist} Summary: A library for access to RESTful web services Group: System Environment/Libraries License: LGPLv2 URL: http://moblin.org/projects/librest Source0: http://git.moblin.org/cgit.cgi/lib%{name}/snapshot/lib%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel BuildRequires: libsoup-devel BuildRequires: libxml2-devel BuildRequires: gtk-doc BuildRequires: pkgconfig # Require these because the git tarball doesn't have the configure built BuildRequires: libtool BuildRequires: automake BuildRequires: autoconf %description This library was designed to make it easier to access web services that claim to be "RESTful". A RESTful service should have urls that represent remote objects, which methods can then be called on. The majority of services don't actually adhere to this strict definition. Instead, their RESTful end point usually has an API that is just simpler to use compared to other types of APIs they may support (XML-RPC, for instance). It is this kind of API that this library is attempting to support. %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk-doc %description devel Files for development with %{name}. %prep %setup -q -n librest-%{version} %build ./autogen.sh %configure --disable-static --enable-gtk-doc make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives rm -rf %{buildroot}/%{_libdir}/*.la %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING README %{_libdir}/librest.so.0 %{_libdir}/librest.so.0.0.0 %files devel %defattr(-,root,root,-) %{_includedir}/rest %{_libdir}/pkgconfig/rest.pc %{_libdir}/librest.so %{_datadir}/gtk-doc/html/rest %changelog * Tue Jul 14 2009 Peter Robinson 0.5-1 - Update to 0.5 * Mon Jun 22 2009 Peter Robinson 0.4-1 - Update to 0.4 * Wed Jun 17 2009 Peter Robinson 0.3-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rest/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 18 Jun 2009 20:30:59 -0000 1.1 +++ .cvsignore 18 Jul 2009 10:38:43 -0000 1.2 @@ -0,0 +1 @@ +librest-0.5.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rest/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 18 Jun 2009 20:30:59 -0000 1.1 +++ sources 18 Jul 2009 10:38:44 -0000 1.2 @@ -0,0 +1 @@ +294635fe499313b92a371a9c6dd55e2c librest-0.5.tar.bz2 From pbrobinson at fedoraproject.org Sat Jul 18 10:41:29 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 10:41:29 +0000 (UTC) Subject: rpms/twitter-glib/F-11 twitter-glib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090718104129.39F5411C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/twitter-glib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26344 Modified Files: .cvsignore sources Added Files: twitter-glib.spec Log Message: - initial F-11 build --- NEW FILE twitter-glib.spec --- Name: twitter-glib Version: 0.9.8 Release: 1%{?dist} Summary: A library wrapping the Twitter RESTful API Group: System Environment/Libraries License: LGPLv2+ URL: http://live.gnome.org/TwitterGlib Source0: http://www.gnome.org/~ebassi/source/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel BuildRequires: gtk2-devel BuildRequires: pkgconfig BuildRequires: libsoup-devel BuildRequires: json-glib-devel BuildRequires: gtk-doc %description Twitter-GLib is a GObject-based library providing a wrapper around the RESTful API of Twitter. %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk-doc %description devel Files for development with %{name}. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. rm -rf %{buildroot}/%{_libdir}/*.la %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS COPYING.LIB NEWS %{_libdir}/libtwitter-glib-1.0.so.0 %{_libdir}/libtwitter-glib-1.0.so.0.0.0 %files devel %defattr(-,root,root,-) %{_includedir}/twitter-glib-1.0 %{_libdir}/libtwitter-glib-1.0.so %{_libdir}/pkgconfig/twitter-glib-1.0.pc %{_datadir}/gtk-doc/html/twitter-glib %changelog * Wed Jun 17 2009 Peter Robinson 0.9.8-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/twitter-glib/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 18 Jun 2009 20:17:38 -0000 1.1 +++ .cvsignore 18 Jul 2009 10:40:58 -0000 1.2 @@ -0,0 +1 @@ +twitter-glib-0.9.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/twitter-glib/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 18 Jun 2009 20:17:38 -0000 1.1 +++ sources 18 Jul 2009 10:40:58 -0000 1.2 @@ -0,0 +1 @@ +0cc700e9a1fddce959eeba5835c0926c twitter-glib-0.9.8.tar.gz From leigh123linux at fedoraproject.org Sat Jul 18 11:46:11 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Sat, 18 Jul 2009 11:46:11 +0000 (UTC) Subject: rpms/qbittorrent/F-11 sources,1.4,1.5 Message-ID: <20090718114611.D9D1311C0099@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13235 Modified Files: sources Log Message: * Sat Jul 18 2009 Leigh Scott - 1.3.4-1 - update to version 1.3.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 Apr 2009 17:10:52 -0000 1.4 +++ sources 18 Jul 2009 11:46:10 -0000 1.5 @@ -1 +1 @@ -863f963beefc3c93dfe25ee6a6b0ed47 qbittorrent-1.3.3.tar.gz +867c7a23406a87176ec55efcc3407ddb qbittorrent-1.3.4.tar.gz From leigh123linux at fedoraproject.org Sat Jul 18 11:47:05 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Sat, 18 Jul 2009 11:47:05 +0000 (UTC) Subject: rpms/qbittorrent/F-11 .cvsignore, 1.4, 1.5 qbittorrent.spec, 1.13, 1.14 Message-ID: <20090718114705.A612D11C0099@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13387 Modified Files: .cvsignore qbittorrent.spec Log Message: * Sat Jul 18 2009 Leigh Scott - 1.3.4-1 - update to version 1.3.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 Apr 2009 17:10:52 -0000 1.4 +++ .cvsignore 18 Jul 2009 11:46:35 -0000 1.5 @@ -1 +1 @@ -qbittorrent-1.3.3.tar.gz +qbittorrent-1.3.4.tar.gz Index: qbittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/qbittorrent.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- qbittorrent.spec 23 Jun 2009 20:42:49 -0000 1.13 +++ qbittorrent.spec 18 Jul 2009 11:46:35 -0000 1.14 @@ -1,7 +1,7 @@ Name: qbittorrent Summary: A Bittorrent Client -Version: 1.3.3 -Release: 5%{dist} +Version: 1.3.4 +Release: 1%{dist} Source0: http://downloads.sf.net/qbittorrent/%{name}-%{version}.tar.gz Patch0: qbittorrent_flag.patch @@ -66,15 +66,18 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/qbittorrent.png %changelog -* Tue Jun 23 2009 Leigh Scott -1.3.3-5 +* Sat Jul 18 2009 Leigh Scott - 1.3.4-1 +- update to version 1.3.4 + +* Tue Jun 23 2009 Leigh Scott - 1.3.3-5 - replace update-mime-database with update-desktop-database - update scriplets to the latest guidelines - clean up white space -* Wed Apr 29 2009 Leigh Scott -1.3.3-4 +* Wed Apr 29 2009 Leigh Scott - 1.3.3-4 - rebuild against the new rb_libtorrent version 0.14.3 -* Wed Apr 29 2009 Leigh Scott -1.3.3-3 +* Wed Apr 29 2009 Leigh Scott - 1.3.3-3 - Rebuild against the new rb_libtorrent version 0.14.3 * Thu Apr 9 2009 Leigh Scott - 1.3.3-2 From pkgdb at fedoraproject.org Sat Jul 18 12:14:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:14:57 +0000 Subject: [pkgdb] emesene had acl change status Message-ID: <20090718121457.66A5B10F89C@bastion2.fedora.phx.redhat.com> allisson has set the watchcommits acl on emesene (Fedora 10) to Approved for ziobizzo To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emesene From pkgdb at fedoraproject.org Sat Jul 18 12:15:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:15:09 +0000 Subject: [pkgdb] emesene had acl change status Message-ID: <20090718121509.D433710F8A5@bastion2.fedora.phx.redhat.com> allisson has set the watchcommits acl on emesene (Fedora 11) to Approved for johnnyrps To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emesene From pkgdb at fedoraproject.org Sat Jul 18 12:15:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:15:50 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121551.1D45710F89A@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 11 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:15:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:15:50 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121551.23E1710F89F@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 11 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:22 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121622.BC84410F888@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora devel was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:24 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121624.DB21510F89C@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 7 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:22 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121622.D6CA910F899@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora devel has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:24 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121624.E2AC010F8A3@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 7 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:26 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121626.9968E10F8A9@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 6 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:27 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121628.1506A10F8AD@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 8 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:26 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121626.AECAD10F8AB@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 6 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:27 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121628.1A5B110F8B0@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 8 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:29 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121629.69B9410F8B2@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 9 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:29 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121629.73AC610F8B4@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 9 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:30 +0000 Subject: [pkgdb] keyjnote ownership updated Message-ID: <20090718121630.CE03110F8B6@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 10 was orphaned by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:16:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:16:30 +0000 Subject: [pkgdb] keyjnote (un)retirement Message-ID: <20090718121630.E2AB510F8B8@bastion2.fedora.phx.redhat.com> Package keyjnote in Fedora 10 has been retired by allisson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/keyjnote From pkgdb at fedoraproject.org Sat Jul 18 12:24:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:24:49 +0000 Subject: [pkgdb] sugar: sdz has requested watchcommits Message-ID: <20090718122449.9A32810F888@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:24:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:24:51 +0000 Subject: [pkgdb] sugar: sdz has requested commit Message-ID: <20090718122451.4939B10F8A6@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:24:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:24:57 +0000 Subject: [pkgdb] sugar: sdz has requested approveacls Message-ID: <20090718122457.F069710F8AD@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:01 +0000 Subject: [pkgdb] sugar: sdz has requested watchbugzilla Message-ID: <20090718122501.6E80B10F8B5@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:15 +0000 Subject: [pkgdb] sugar: sdz has requested watchbugzilla Message-ID: <20090718122515.5C93510F8C1@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:15 +0000 Subject: [pkgdb] sugar: sdz has requested watchcommits Message-ID: <20090718122515.DF76A10F8C8@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:16 +0000 Subject: [pkgdb] sugar: sdz has requested commit Message-ID: <20090718122517.1894010F8CF@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:17 +0000 Subject: [pkgdb] sugar: sdz has requested approveacls Message-ID: <20090718122517.911DA10F8A3@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:21 +0000 Subject: [pkgdb] sugar: sdz has requested watchbugzilla Message-ID: <20090718122522.2AF8710F8D9@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:22 +0000 Subject: [pkgdb] sugar: sdz has requested commit Message-ID: <20090718122522.65E9310F8E0@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:25 +0000 Subject: [pkgdb] sugar: sdz has requested watchcommits Message-ID: <20090718122525.A7BDA10F8A9@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:25:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:25:26 +0000 Subject: [pkgdb] sugar: sdz has requested approveacls Message-ID: <20090718122526.B8FD310F8E9@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:26:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:04 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchbugzilla Message-ID: <20090718122605.1CE6310F8B6@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:06 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested commit Message-ID: <20090718122606.A888010F8F4@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:09 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchcommits Message-ID: <20090718122609.5A1A910F8FC@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:09 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested approveacls Message-ID: <20090718122609.EC58710F900@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:24 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchbugzilla Message-ID: <20090718122624.A742B10F905@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:28 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested approveacls Message-ID: <20090718122628.6AA3410F90E@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:26 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested commit Message-ID: <20090718122626.7B7C110F90A@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:30 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchcommits Message-ID: <20090718122630.68E8610F913@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:47 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchbugzilla Message-ID: <20090718122647.8F42110F8C9@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:47 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested watchcommits Message-ID: <20090718122647.990B110F919@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:49 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested commit Message-ID: <20090718122649.6F37E10F91C@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:26:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:26:49 +0000 Subject: [pkgdb] sugar-artwork: sdz has requested approveacls Message-ID: <20090718122650.0F59210F91F@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:27:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:23 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchbugzilla Message-ID: <20090718122723.98AFF10F8D7@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:25 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchcommits Message-ID: <20090718122725.8D9ED10F928@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:27 +0000 Subject: [pkgdb] sugar-base: sdz has requested commit Message-ID: <20090718122727.6A6CA10F8D9@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:28 +0000 Subject: [pkgdb] sugar-base: sdz has requested approveacls Message-ID: <20090718122728.F29E310F92A@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:39 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchbugzilla Message-ID: <20090718122739.7037210F8DD@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:41 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchcommits Message-ID: <20090718122741.2F56610F92E@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:43 +0000 Subject: [pkgdb] sugar-base: sdz has requested commit Message-ID: <20090718122743.5B01110F931@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:44 +0000 Subject: [pkgdb] sugar-base: sdz has requested approveacls Message-ID: <20090718122745.283D810F937@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:49 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchbugzilla Message-ID: <20090718122750.1858010F8E3@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:51 +0000 Subject: [pkgdb] sugar-base: sdz has requested watchcommits Message-ID: <20090718122751.7FA0810F93B@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:52 +0000 Subject: [pkgdb] sugar-base: sdz has requested commit Message-ID: <20090718122753.1494A10F940@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:27:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:27:54 +0000 Subject: [pkgdb] sugar-base: sdz has requested approveacls Message-ID: <20090718122754.7CB2E10F943@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:28:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:23 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchbugzilla Message-ID: <20090718122823.4A62910F8E8@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-datastore (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:23 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchcommits Message-ID: <20090718122824.1F5C010F944@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-datastore (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:26 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested commit Message-ID: <20090718122826.BAC4810F94B@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-datastore (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:28 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested approveacls Message-ID: <20090718122829.0F85F10F952@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-datastore (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:42 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchbugzilla Message-ID: <20090718122842.46ECA10F8AF@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-datastore (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:43 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested commit Message-ID: <20090718122843.9EC3210F8F3@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-datastore (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From xavierb at fedoraproject.org Sat Jul 18 12:28:45 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Sat, 18 Jul 2009 12:28:45 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/devel openchrome-0.2.903-XO-1.5-panel.patch, NONE, 1.1 openchrome-0.2.903-remove_loader_symbol_lists.patch, NONE, 1.1 openchrome-vt1625.patch, NONE, 1.1 openchrome-0.2.903-latest_snapshot.patch, 1.7, 1.8 xorg-x11-drv-openchrome.spec, 1.45, 1.46 openchrome-0.2.903-fix_cursor_on_secondary.patch, 1.1, NONE openchrome-0.2.903-panel.patch, 1.1, NONE openchrome-0.2.903-pll_rework.patch, 1.1, NONE openchrome-0.2.903-re_enable_AGPDMA.patch, 1.1, NONE openchrome-0.2.903-sync_pciids.patch, 1.1, NONE openchrome-0.2.903-vx855_support.patch, 1.1, NONE Message-ID: <20090718122845.8DCA211C0099@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26845 Modified Files: openchrome-0.2.903-latest_snapshot.patch xorg-x11-drv-openchrome.spec Added Files: openchrome-0.2.903-XO-1.5-panel.patch openchrome-0.2.903-remove_loader_symbol_lists.patch openchrome-vt1625.patch Removed Files: openchrome-0.2.903-fix_cursor_on_secondary.patch openchrome-0.2.903-panel.patch openchrome-0.2.903-pll_rework.patch openchrome-0.2.903-re_enable_AGPDMA.patch openchrome-0.2.903-sync_pciids.patch openchrome-0.2.903-vx855_support.patch Log Message: 0.2.903 + svn 758 openchrome-0.2.903-XO-1.5-panel.patch: via_bios.h | 1 + via_mode.h | 4 ++++ via_panel.c | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) --- NEW FILE openchrome-0.2.903-XO-1.5-panel.patch --- Index: src/via_panel.c =================================================================== --- src/via_panel.c (revision 758) +++ src/via_panel.c (working copy) @@ -54,7 +54,8 @@ static ViaPanelModeRec ViaPanelNativeModes[] = { {1920, 1200}, {1024, 600}, {1440, 900}, - {1280, 720} + {1280, 720}, + {1200, 900} }; static int Index: src/via_mode.h =================================================================== --- src/via_mode.h (revision 758) +++ src/via_mode.h (working copy) @@ -70,6 +70,7 @@ static struct ViaDotClock { { 49500, 0xC353, /* 0xa48c04 */ { 3, 3, 5, 138 } }, { 50000, 0xC354, /* 0x368c00 */ { 1, 3, 2, 56 } }, { 56300, 0x4F76, /* 0x3d8c00 */ { 1, 3, 2, 63 } }, + { 57275, 0x4E70, /* 0x3e8c00 */ { 1, 3, 6, 299 } }, { 57284, 0x4E70, /* 0x3e8c00 */ { 1, 3, 2, 64 } }, { 64995, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, { 65000, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, /* Slightly unstable on PM800 */ @@ -135,6 +136,7 @@ static DisplayModeRec ViaPanelModes[] = { { MODEPREFIX("1152x864"), 81613, 1152, 1216, 1336, 1520, 0, 864, 864, 867, 895, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x768"), 81135, 1280, 1328, 1440, 1688, 0, 768, 770, 776, 802, 0, V_PHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x720"), 74600, 1280, 1341, 1474, 1688, 0, 720, 721, 724, 746, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX }, + { MODEPREFIX("1200x900"), 57200, 1200, 1206, 1214, 1240, 0, 900, 905, 907, 912, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x960"), 108280, 1280, 1376, 1488, 1800, 0, 960, 960, 963, 1000, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x1024"), 108280, 1280, 1328, 1440, 1688, 0, 1024, 1024, 1027, 1066, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1360x768"), 85500, 1360, 1392, 1712, 1744, 0, 768, 783, 791, 807, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, @@ -168,6 +170,7 @@ static DisplayModeRec ViaPanelModes[] = { #define VIA_RES_1280X720 19 #define VIA_RES_1920X1080 20 #define VIA_RES_1366X768 22 +#define VIA_RES_1200X900 23 #define VIA_RES_INVALID 0xFF /* @@ -199,6 +202,7 @@ static struct { {VIA_RES_856X480, VIA_PANEL_INVALID, 856, 480}, {VIA_RES_1024X576, VIA_PANEL_INVALID, 1024, 576}, {VIA_RES_800X480, VIA_PANEL8X4, 800, 480}, + {VIA_RES_1200X900, VIA_PANEL12X9, 1200, 900}, {VIA_RES_INVALID, VIA_PANEL_INVALID, 0, 0} }; Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -42,6 +42,7 @@ #define VIA_PANEL10X6 13 #define VIA_PANEL14X9 14 #define VIA_PANEL1280X720 15 +#define VIA_PANEL12X9 16 #define VIA_PANEL_INVALID 255 #define TVTYPE_NONE 0x00 openchrome-0.2.903-remove_loader_symbol_lists.patch: via_driver.c | 210 ----------------------------------------------------------- 1 file changed, 210 deletions(-) --- NEW FILE openchrome-0.2.903-remove_loader_symbol_lists.patch --- Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 753) +++ src/via_driver.c (working copy) @@ -259,184 +259,7 @@ }; -static const char *vgaHWSymbols[] = { - "vgaHWGetHWRec", - "vgaHWSetMmioFuncs", - "vgaHWSetStdFuncs", - "vgaHWGetIOBase", - "vgaHWSave", - "vgaHWProtect", - "vgaHWRestore", - "vgaHWMapMem", - "vgaHWUnmapMem", - "vgaHWInit", - "vgaHWSaveScreen", - "vgaHWLock", - "vgaHWUnlock", - "vgaHWFreeHWRec", - "vgaHWGetIndex", /* Through VGAHWPTR() */ - NULL -}; - -static const char *ramdacSymbols[] = { - "xf86InitCursor", - "xf86CreateCursorInfoRec", - "xf86DestroyCursorInfoRec", - NULL -}; - -static const char *vbeSymbols[] = { - "vbeDoEDID", - "VBEDPMSSet", - "VBEExtendedInit", - "vbeFree", - "VBEGetVBEInfo", - "VBEGetVBEMode", - "VBEGetModePool", - "VBEInit", - "VBEPrintModes", - "VBESaveRestore", - "VBESetDisplayStart", - "VBESetGetLogicalScanlineLength", - "VBESetLogicalScanline", - "VBESetModeNames", - "VBESetModeParameters", - "VBESetVBEMode", - "VBEValidateModes", - "xf86ExecX86int10", - "xf86Int10AllocPages", - "xf86Int10FreePages", - NULL -}; - -static const char *ddcSymbols[] = { - "xf86PrintEDID", - "xf86DoEDID_DDC2", - "xf86SetDDCproperties", - NULL -}; - -static const char *i2cSymbols[] = { - "xf86CreateI2CBusRec", - "xf86I2CBusInit", - "xf86CreateI2CDevRec", - "xf86I2CDevInit", - "xf86I2CWriteRead", - "xf86I2CProbeAddress", - "xf86DestroyI2CDevRec", - "xf86I2CReadByte", - "xf86I2CWriteByte", - NULL -}; - -static const char *xaaSymbols[] = { -#ifdef X_HAVE_XAAGETROP - "XAAGetCopyROP", - "XAAGetCopyROP_PM", - "XAAGetPatternROP", -#else - "XAACopyROP", - "XAACopyROP_PM", - "XAAPatternROP", -#endif - "XAACreateInfoRec", - "XAADestroyInfoRec", - "XAAInit", - "XAAFillSolidRects", - NULL -}; - -static const char *exaSymbols[] = { - "exaGetVersion", - "exaDriverInit", - "exaDriverFini", - "exaOffscreenAlloc", - "exaOffscreenFree", - "exaGetPixmapPitch", - "exaGetPixmapOffset", - "exaWaitSync", - "exaDriverAlloc", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - -#ifdef USE_FB -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; -#else -static const char *cfbSymbols[] = { - "cfbScreenInit", - "cfb16ScreenInit", - "cfb24ScreenInit", - "cfb24_32ScreenInit", - "cfb32ScreenInit", - "cfb16BresS", - "cfb24BresS", - NULL -}; -#endif - #ifdef XFree86LOADER -#ifdef XF86DRI -static const char *drmSymbols[] = { - "drmAddBufs", - "drmAddMap", - "drmAgpAcquire", - "drmAgpAlloc", - "drmAgpBase", - "drmAgpBind", - "drmAgpDeviceId", - "drmAgpEnable", - "drmAgpFree", - "drmAgpGetMode", - "drmAgpRelease", - "drmAgpVendorId", - "drmCtlInstHandler", - "drmCtlUninstHandler", - "drmCommandNone", - "drmCommandWrite", - "drmCommandWriteRead", - "drmFreeVersion", - "drmGetInterruptFromBusID", - "drmGetLibVersion", - "drmGetVersion", - "drmMap", - "drmMapBufs", - "drmUnmap", - "drmUnmapBufs", - "drmAgpUnbind", - "drmRmMap", - "drmCreateContext", - "drmAuthMagic", - "drmDestroyContext", - "drmSetContextFlags", - NULL -}; - -static const char *driSymbols[] = { - "DRICloseScreen", - "DRICreateInfoRec", - "DRIDestroyInfoRec", - "DRIFinishScreenInit", - "DRIGetSAREAPrivate", - "DRILock", - "DRIQueryVersion", - "DRIScreenInit", - "DRIUnlock", - "DRIOpenConnection", - "DRICloseConnection", - "GlxSetVisualConfigs", - NULL -}; -#endif - static MODULESETUPPROTO(VIASetup); static XF86ModuleVersionInfo VIAVersRec = { @@ -472,24 +295,6 @@ 0 #endif ); - LoaderRefSymLists(vgaHWSymbols, -#ifdef USE_FB - fbSymbols, -#else - cfbSymbols, -#endif - ramdacSymbols, - xaaSymbols, - exaSymbols, - shadowSymbols, - vbeSymbols, - i2cSymbols, - ddcSymbols, -#ifdef XF86DRI - drmSymbols, - driSymbols, -#endif - NULL); return (pointer) 1; } else { @@ -826,7 +631,6 @@ vbeInfoPtr pVbe; if (xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVbe = VBEInit(NULL, index); ConfiguredMonitor = vbeDoEDID(pVbe, NULL); vbeFree(pVbe); @@ -931,7 +735,6 @@ #ifndef USE_FB char *mod = NULL; - const char *reqSym = NULL; #endif vgaHWPtr hwp; int i, bMemSize = 0; @@ -952,7 +755,6 @@ if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(vgaHWSymbols, NULL); if (!vgaHWGetHWRec(pScrn)) return FALSE; @@ -1624,7 +1426,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(i2cSymbols, NULL); ViaI2CInit(pScrn); } @@ -1632,7 +1433,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(ddcSymbols, NULL); if (pVia->pI2CBus1) { pVia->DDC1 = xf86DoEDID_DDC2(pScrn->scrnIndex, pVia->pI2CBus1); @@ -1674,7 +1474,6 @@ /* VBE doesn't properly initialise int10 itself. */ if (xf86LoadSubModule(pScrn, "int10") && xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVia->pVbe = VBEExtendedInit(NULL, pVia->EntityIndex, SET_BIOS_SCRATCH | RESTORE_BIOS_SCRATCH); @@ -1773,22 +1572,18 @@ return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); #else /* Load bpp-specific modules. */ switch (pScrn->bitsPerPixel) { case 8: mod = "cfb"; - reqSym = "cfbScreenInit"; break; case 16: mod = "cfb16"; - reqSym = "cfb16ScreenInit"; break; case 32: mod = "cfb32"; - reqSym = "cfb32ScreenInit"; break; } @@ -1797,7 +1592,6 @@ return FALSE; } - xf86LoaderReqSymbols(reqSym, NULL); #endif if (!pVia->NoAccel) { @@ -1814,13 +1608,11 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(exaSymbols, NULL); } if (!xf86LoadSubModule(pScrn, "xaa")) { VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(xaaSymbols, NULL); } if (pVia->hwcursor) { @@ -1828,7 +1620,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ramdacSymbols, NULL); } if (pVia->shadowFB) { @@ -1836,7 +1627,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); } VIAUnmapMem(pScrn); openchrome-vt1625.patch: via_bios.h | 8 +++++++ via_crtc.c | 3 +- via_display.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ via_driver.c | 32 ++++++++++++++++++++++++++++++ via_mode.c | 13 ++++++++++++ via_vt162x.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++-- via_vt162x.h | 38 ++++++++++++++++++------------------ 7 files changed, 189 insertions(+), 22 deletions(-) --- NEW FILE openchrome-vt1625.patch --- Index: src/via_mode.c =================================================================== --- src/via_mode.c (revision 758) +++ src/via_mode.c (working copy) @@ -250,6 +250,10 @@ ViaTVSetMode(ScrnInfoPtr pScrn, DisplayModePtr mod if (pBIOSInfo->TVModeCrtc) pBIOSInfo->TVModeCrtc(pScrn, mode); + + /* TV reset. */ + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x00); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x80); } void @@ -491,6 +495,8 @@ ViaOutputsSelect(ScrnInfoPtr pScrn) pBIOSInfo->CrtPresent = TRUE; pBIOSInfo->CrtActive = TRUE; } + if (pBIOSInfo->TVActive) + pBIOSInfo->FirstCRTC->IsActive = TRUE ; } if (!pVia->UseLegacyModeSwitch) { if (pBIOSInfo->CrtActive) @@ -1693,6 +1699,13 @@ ViaModeSet(ScrnInfoPtr pScrn, DisplayModePtr mode) ViaDisplaySetStreamOnDFP(pScrn, TRUE); ViaDFPPower(pScrn, TRUE); } + + if (pBIOSInfo->TVActive) { + /* TV on FirstCrtc */ + ViaDisplaySetStreamOnDVO(pScrn, pBIOSInfo->TVDIPort, TRUE); + ViaDisplayEnableDVO(pScrn, pBIOSInfo->TVDIPort); + ViaTVSetMode(pScrn, mode); + } ViaModeFirstCRTC(pScrn, mode); } else { Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 758) +++ src/via_driver.c (working copy) @@ -211,6 +211,7 @@ typedef enum OPTION_TVDOTCRAWL, OPTION_TVTYPE, OPTION_TVOUTPUT, + OPTION_TVDIPORT, OPTION_DISABLEVQ, OPTION_DISABLEIRQ, OPTION_TVDEFLICKER, @@ -249,6 +250,7 @@ static OptionInfoRec VIAOptions[] = { {OPTION_TVDEFLICKER, "TVDeflicker", OPTV_INTEGER, {0}, FALSE}, {OPTION_TVTYPE, "TVType", OPTV_ANYSTR, {0}, FALSE}, {OPTION_TVOUTPUT, "TVOutput", OPTV_ANYSTR, {0}, FALSE}, + {OPTION_TVDIPORT, "TVPort", OPTV_ANYSTR, {0}, FALSE}, {OPTION_DISABLEVQ, "DisableVQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_DISABLEIRQ, "DisableIRQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_AGP_DMA, "EnableAGPDMA", OPTV_BOOLEAN, {0}, FALSE}, @@ -840,6 +842,7 @@ static Bool VIASetupDefaultOptions(ScrnInfoPtr pScrn) { VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIASetupDefaultOptions\n")); @@ -890,6 +893,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) pVia->agpEnable = FALSE; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_P4M900: pVia->VideoEngine = VIDEO_ENGINE_CME; @@ -898,17 +902,20 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* FIXME: this needs to be tested */ pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_CX700: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->swov.maxWInterp = 1920; pVia->swov.maxHInterp = 1080; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_P4M890: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_VX800: case VIA_VX855: @@ -916,6 +923,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* pVia->agpEnable = FALSE; pVia->dmaXV = FALSE;*/ pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; } @@ -1540,6 +1548,30 @@ VIAPreInit(ScrnInfoPtr pScrn, int flags) "No default TV output signal type is set.\n"); } + /* TV DI Port */ + if ((s = xf86GetOptValString(VIAOptions, OPTION_TVDIPORT))) { + if (!xf86NameCmp(s, "DVP0")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP0.\n"); + } else if (!xf86NameCmp(s, "DVP1")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP1.\n"); + } else if (!xf86NameCmp(s, "DFPHigh")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPHIGH; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPHigh.\n"); + } else if (!xf86NameCmp(s, "DFPLow")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPLOW; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPLow.\n"); + } + } else { + xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT, + "No default TV output port is set.\n"); + } + VIAVidHWDiffInit(pScrn); /* maybe throw in some more sanity checks here */ Index: src/via_crtc.c =================================================================== --- src/via_crtc.c (revision 758) +++ src/via_crtc.c (working copy) @@ -304,7 +304,8 @@ ViaFirstCRTCSetMode(ScrnInfoPtr pScrn, DisplayMode temp += 0x03; temp &= ~0x03; } - hwp->writeSeq(hwp, 0x1C, (temp >> 1) & 0xFF); + + hwp->writeSeq(hwp, 0x1C, ((temp >> 1)+1) & 0xFF); ViaSeqMask(hwp, 0x1D, temp >> 9, 0x03); switch (pVia->ChipId) { Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -98,6 +98,13 @@ #define VIA_DI_12BIT 0x00 #define VIA_DI_24BIT 0x01 +/* Digital Port */ +#define VIA_DI_PORT_NONE 0x0 +#define VIA_DI_PORT_DVP0 0x1 +#define VIA_DI_PORT_DVP1 0x2 +#define VIA_DI_PORT_DFPLOW 0x4 +#define VIA_DI_PORT_DFPHIGH 0x8 + typedef struct ViaPanelMode { int Width ; int Height ; @@ -187,6 +194,7 @@ typedef struct _VIABIOSINFO { int TVDeflicker; CARD8 TVRegs[0xFF]; int TVNumRegs; + int TVDIPort; /* TV Callbacks */ void (*TVSave) (ScrnInfoPtr pScrn); Index: src/via_display.c =================================================================== --- src/via_display.c (revision 758) +++ src/via_display.c (working copy) @@ -111,6 +111,38 @@ ViaDisplayDisableCRT(ScrnInfoPtr pScrn) ViaCrtcMask(hwp, 0x36, 0x30, 0x30); } +void +ViaDisplayEnableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0xC0, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x30, 0x30); + break; + } +} + +void +ViaDisplayDisableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0x00, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x00, 0x30); + break; + } +} + /* * Sets the primary or secondary display stream on CRT. */ @@ -143,3 +175,32 @@ ViaDisplaySetStreamOnDFP(ScrnInfoPtr pScrn, Bool p ViaCrtcMask(hwp, 0x99, 0x10, 0x10); } +void +ViaDisplaySetStreamOnDVO(ScrnInfoPtr pScrn, int port, Bool primary) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + int regNum; + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplaySetStreamOnDVO\n")); + + switch (port) { + case VIA_DI_PORT_DVP0: + regNum = 0x96; + break; + case VIA_DI_PORT_DVP1: + regNum = 0x9B; + break; + case VIA_DI_PORT_DFPLOW: + regNum = 0x97; + break; + case VIA_DI_PORT_DFPHIGH: + regNum = 0x99; + break; + } + + if (primary) + ViaCrtcMask(hwp, regNum, 0x00, 0x10); + else + ViaCrtcMask(hwp, regNum, 0x10, 0x10); +} + Index: src/via_vt162x.c =================================================================== --- src/via_vt162x.c (revision 758) +++ src/via_vt162x.c (working copy) @@ -32,7 +32,41 @@ #include "via_vt162x.h" #include "via_id.h" +static void +ViaSetTVClockSource(ScrnInfoPtr pScrn) +{ + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaSetTVClockSource\n")); + VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; + vgaHWPtr hwp = VGAHWPTR(pScrn); + + /* External TV: */ + switch(pVia->Chipset) { + case VIA_CX700: + case VIA_VX800: + if (pBIOSInfo->FirstCRTC->IsActive) { + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0xB0, 0xF0); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x90, 0xF0); + } else { + /* IGA2 */ + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0x0B, 0x0F); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x09, 0x0F); + } + break; + default: + if (pBIOSInfo->FirstCRTC->IsActive) + ViaCrtcMask(hwp, 0x6C, 0x21, 0x21); + else + ViaCrtcMask(hwp, 0x6C, 0xA1, 0xA1); + break; + } +} + static void VT162xPrintRegs(ScrnInfoPtr pScrn) { @@ -650,11 +684,30 @@ VT1622ModeI2C(ScrnInfoPtr pScrn, DisplayModePtr mo xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2B, Table.RGB[4]); if (Table.RGB[5]) xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2C, Table.RGB[5]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } else { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + } + } } else if (pBIOSInfo->TVOutput == TVOUTPUT_YCBCR) { xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x03); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x65, Table.YCbCr[0]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x66, Table.YCbCr[1]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x67, Table.YCbCr[2]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } + } } /* Configure flicker filter. */ @@ -721,8 +774,7 @@ VT1622ModeCrtc(ScrnInfoPtr pScrn, DisplayModePtr m } pBIOSInfo->ClockExternal = TRUE; ViaCrtcMask(hwp, 0x6A, 0x40, 0x40); - ViaCrtcMask(hwp, 0x6C, 0x01, 0x01); - ViaSeqMask(hwp, 0x1E, 0xF0, 0xF0); /* enable DI0/DVP0 */ + ViaSetTVClockSource(pScrn); } Index: src/via_vt162x.h =================================================================== --- src/via_vt162x.h (revision 758) +++ src/via_vt162x.h (working copy) @@ -755,19 +755,19 @@ static DisplayModeRec VT1625Modes[] = { { MODEPREFIX("1024x768Over"), ... , MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), ... , MODESUFFIXPAL },*/ /* clock HR SH1 SH2 HFL VR SV1 SV2 VFL*/ - { MODEPREFIX("640x480"), 30000, 640, 680, 808, 1000, 0, 480, 520, 523, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("640x480"), 30000, 640, 688, 744, 784, 0, 480, 488, 495, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, { MODEPREFIX("800x600"), 34500, 800, 816, 880, 920, 0, 600, 604, 620, 750, 0, V_PHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1024x768"), 57000, 1024, 1040, 1112, 1200, 0, 768, 829, 840, 950, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, - { MODEPREFIX("720x576"), 34500, 720, 766, 800, 1000, 0, 576, 576, 579, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("720x576"), 34500, 720, 760, 800, 1000, 0, 576, 577, 580, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), 27000, 720, 768, 800, 864, 0, 576, 577, 579, 625, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1280x720"), 74250, 1280, 1320, 1376, 1650, 0, 720, 722, 728, 750, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX720P }, - { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2016, 2200, 0, 1080, 1082, 1088, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, + { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2064, 2200, 0, 1080, 1083, 1087, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, { MODEPREFIX("640x480"), 24696, 640, 656, 744, 784, 0, 480, 482, 483, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 34000, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Fit"), 28980, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Over"), 27025, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Over"), 27025, 720, 752, 792, 800, 0, 480, 482, 485, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 28224, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, @@ -828,13 +828,13 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_NTSC, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x33, 0x1C, 0x06, 0x7B, 0x15, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x43, 0x80, 0, 0x10, - 0x1C, 0x08, 0xDC, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, + { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x02, 0x10, 0x00, 0x7B, 0x15, 0x50, 0x57, 0, 0xB7, + 0, 0x80, 0xAD, 0x21, 0x64, 0x34, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x00, 0x80, 0, 0x10, + 0x1C, 0x08, 0xE5, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ - { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, + { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x1F, 0xD2, 0x23, 0x0C, 0x22, 0x59, 0xC0, 0x7E, 0x23, 0x8C, /* 5A 5F 60 64 */ - 0xD2, 0xE1, 0x7D, 0x06, 0, 0, 0x80, 0x28, 0xFF, 0x59, 0x03 }, + 0xD0, 0xF6, 0x7C, 0x06, 0, 0x34, 0x80, 0x28, 0xFF, 0x1F, 0x03 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x37, 0x5C, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -876,8 +876,8 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_480P, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x33, 0x20, 0xFF, 0x7B, 0, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x43, 0x80, 0, 0x01, + { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x01, 0x20, 0, 0x7B, 0, 0x50, 0x57, 0, 0x9E, + 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x00, 0x80, 0, 0x01, 0x2F, 0x08, 0xDC, 0x7E, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, @@ -909,15 +909,15 @@ VT1625Table[] = { 0x0, 0x0, }, - { "1920x1080", 1920, 540, TVTYPE_1080I, 0, 0, + { "1920x1080", 1920, 1080, TVTYPE_1080I, 0, 0, /* 00 0F */ - { 0x83, 0, 0x10, 0x4A, 0x86, 0x39, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, - 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x44, 0x80, 0x00, 0x03, + { 0x83, 0, 0x10, 0x4A, 0x86, 0x32, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, + 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x04, 0x80, 0x00, 0x03, 0x25, 0x00, 0x00, 0x7E, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x00, 0x97, 0x7F, 0x78, 0x64, 0x14, 0x97, 0x7f, 0x59, 0x78, 0xb0, /* 5A 5F 60 64 */ - 0x1a, 0xec, 0xfa, 0x08, 0x00, 0x00, 0x80, 0x20, 0xFF, 0x97, 0x28 }, + 0x1a, 0xdc, 0x5d, 0x08, 0x00, 0x00, 0x80, 0x28, 0xFF, 0x97, 0x28 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x39, 0x66, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -945,9 +945,9 @@ VT1625Table[] = { { "720x576", 720, 576, TVTYPE_PAL, 0, 0, /* 00 0F */ - { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, - 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x01, 0x80, 0x00, 0x10, - 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 + { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x10, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, + 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x00, 0x80, 0x00, 0x10, + 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 }, /* 4A 4F 50 59 */ { 0xc5, 0x0f, 0x00, 0x01, 0x00, 0x4b, 0xe7, 0xd2, 0x23, 0xb1, 0x22, 0x5f, 0x61, 0x7f, 0x23, 0x90, openchrome-0.2.903-latest_snapshot.patch: ChangeLog | 320 +++++++++++ configure.ac | 27 libxvmc/Makefile.am | 8 libxvmc/viaLowLevel.c | 4 libxvmc/viaLowLevelPro.c | 6 libxvmc/viaXvMC.c | 62 +- src/Makefile.am | 6 src/via.h | 22 src/via_accel.c | 505 ++++++++++-------- src/via_bandwidth.c | 34 + src/via_bios.h | 112 +++- src/via_crtc.c | 664 ++++++++++++++++++++++++ src/via_cursor.c | 580 +++++++++++++++++---- src/via_dga.c | 4 src/via_display.c | 145 +++++ src/via_dri.c | 11 src/via_driver.c | 672 +++++++++++++++--------- src/via_driver.h | 68 +- src/via_id.c | 17 src/via_id.h | 4 src/via_lvds.c | 117 ++++ src/via_memory.c | 8 src/via_mode.c | 1277 +++++++++++++++++------------------------------ src/via_mode.h | 125 ++-- src/via_panel.c | 461 ++++++++++++++++ src/via_priv.h | 4 src/via_regs.h | 79 ++ src/via_swov.c | 88 ++- src/via_timing.c | 398 ++++++++++++++ src/via_timing.h | 51 + src/via_vbe.c | 6 src/via_video.c | 61 -- src/via_vt162x.h | 17 src/via_xvmc.c | 23 34 files changed, 4383 insertions(+), 1603 deletions(-) View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.7 -r 1.8 openchrome-0.2.903-latest_snapshot.patchIndex: openchrome-0.2.903-latest_snapshot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/openchrome-0.2.903-latest_snapshot.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- openchrome-0.2.903-latest_snapshot.patch 18 Jun 2009 22:18:59 -0000 1.7 +++ openchrome-0.2.903-latest_snapshot.patch 18 Jul 2009 12:28:44 -0000 1.8 @@ -1,7 +1,7 @@ Index: configure.ac =================================================================== ---- configure.ac (.../tags/release_0_2_903) (revision 751) -+++ configure.ac (.../trunk) (revision 751) +--- configure.ac (.../tags/release_0_2_903) (revision 758) ++++ configure.ac (.../trunk) (revision 758) @@ -70,7 +70,7 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) @@ -63,8 +63,8 @@ Index: configure.ac AC_SUBST([DRIVER_MAN_SUFFIX]) Index: libxvmc/Makefile.am =================================================================== ---- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/Makefile.am (.../trunk) (revision 751) +--- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/Makefile.am (.../trunk) (revision 758) @@ -24,13 +24,13 @@ xf86dristr.h \ vldXvMC.h @@ -85,8 +85,8 @@ Index: libxvmc/Makefile.am driDrawable.c \ Index: libxvmc/viaLowLevel.c =================================================================== ---- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevel.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevel.c (.../trunk) (revision 758) @@ -276,8 +276,8 @@ xl->tsMem.context = *(xl->drmcontext); xl->tsMem.size = 64; @@ -100,8 +100,8 @@ Index: libxvmc/viaLowLevel.c return -1; Index: libxvmc/viaLowLevelPro.c =================================================================== ---- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 758) @@ -1460,13 +1460,13 @@ if (size != mem->size) { @@ -129,8 +129,8 @@ Index: libxvmc/viaLowLevelPro.c Index: libxvmc/viaXvMC.c =================================================================== ---- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaXvMC.c (.../trunk) (revision 751) +--- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaXvMC.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ return errType; } @@ -407,8 +407,8 @@ Index: libxvmc/viaXvMC.c Index: ChangeLog =================================================================== ---- ChangeLog (.../tags/release_0_2_903) (revision 751) -+++ ChangeLog (.../trunk) (revision 751) +--- ChangeLog (.../tags/release_0_2_903) (revision 758) ++++ ChangeLog (.../trunk) (revision 758) @@ -1,3 +1,323 @@ +2009-03-21 Xavier Bachelot + @@ -736,7 +736,7 @@ Index: ChangeLog Index: src/via_panel.c =================================================================== --- src/via_panel.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_panel.c (.../trunk) (revision 751) ++++ src/via_panel.c (.../trunk) (revision 758) @@ -0,0 +1,461 @@ +/* + * Copyright 2007 The Openchrome Project [openchrome.org] @@ -1201,28 +1201,30 @@ Index: src/via_panel.c +} Index: src/via_id.h =================================================================== ---- src/via_id.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.h (.../trunk) (revision 751) -@@ -37,6 +37,7 @@ +--- src/via_id.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.h (.../trunk) (revision 758) +@@ -37,6 +37,8 @@ VIA_P4M900, VIA_CX700, VIA_P4M890, + VIA_VX800, ++ VIA_VX855, VIA_LAST }; -@@ -52,6 +53,7 @@ +@@ -52,6 +54,8 @@ #define PCI_CHIP_VT3364 0x3371 /* P4M900 */ #define PCI_CHIP_VT3324 0x3157 /* CX700 */ #define PCI_CHIP_VT3327 0x3343 /* P4M890 */ +#define PCI_CHIP_VT3353 0x1122 /* VX800 */ ++#define PCI_CHIP_VT3409 0x5122 /* VX855/VX875 */ /* There is some conflicting information about the two major revisions of * the CLE266, often labelled Ax and Cx. The dividing line seems to be Index: src/via_video.c =================================================================== ---- src/via_video.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_video.c (.../trunk) (revision 751) +--- src/via_video.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_video.c (.../trunk) (revision 758) @@ -112,11 +112,7 @@ static int viaSetPortAttribute(ScrnInfoPtr, Atom, INT32, pointer); static int viaPutImage(ScrnInfoPtr, short, short, short, short, short, short, @@ -1236,9 +1238,11 @@ Index: src/via_video.c static void nv12Blit(unsigned char *nv12Chroma, const unsigned char *uBuffer, const unsigned char *vBuffer, -@@ -282,7 +278,8 @@ +@@ -281,8 +277,10 @@ + pVia->ChipId != PCI_CHIP_VT3314 && pVia->ChipId != PCI_CHIP_VT3327 && pVia->ChipId != PCI_CHIP_VT3336 && ++ pVia->ChipId != PCI_CHIP_VT3409 && pVia->ChipId != PCI_CHIP_VT3364 && - pVia->ChipId != PCI_CHIP_VT3324) { + pVia->ChipId != PCI_CHIP_VT3324 && @@ -1246,7 +1250,7 @@ Index: src/via_video.c CARD32 bandwidth = (mode->HDisplay >> 4) * (mode->VDisplay >> 5) * pScrn->bitsPerPixel * mode->VRefresh; -@@ -370,14 +367,14 @@ +@@ -370,14 +368,14 @@ if (pVia->pVbe) { refresh = 100; @@ -1265,7 +1269,7 @@ Index: src/via_video.c if ((width == 1400) && (height == 1050)) { width = 1280; height = 1024; -@@ -476,6 +473,10 @@ +@@ -476,6 +474,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1276,7 +1280,7 @@ Index: src/via_video.c pVia->dwV1 = ((vmmtr) viaVidEng)->video1_ctl; pVia->dwV3 = ((vmmtr) viaVidEng)->video3_ctl; -@@ -490,6 +491,10 @@ +@@ -490,6 +492,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1287,7 +1291,7 @@ Index: src/via_video.c viaVidEng->video1_ctl = pVia->dwV1; viaVidEng->video3_ctl = pVia->dwV3; -@@ -568,6 +573,7 @@ +@@ -568,6 +574,7 @@ (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1295,7 +1299,7 @@ Index: src/via_video.c (pVia->Chipset == VIA_P4M890)); if ((pVia->drmVerMajor < 2) || ((pVia->drmVerMajor == 2) && (pVia->drmVerMinor < 9))) -@@ -586,7 +592,7 @@ +@@ -586,13 +593,14 @@ (pVia->Chipset == VIA_K8M800) || (pVia->Chipset == VIA_PM800) || (pVia->Chipset == VIA_VM800) || (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1304,7 +1308,14 @@ Index: src/via_video.c num_new = viaSetupAdaptors(pScreen, &newAdaptors); num_adaptors = xf86XVListGenericAdaptors(pScrn, &adaptors); } else { -@@ -650,8 +656,6 @@ + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, + "[Xv] Unsupported Chipset. X video functionality disabled.\n"); + num_adaptors = 0; ++ memset(viaAdaptPtr, 0, sizeof(viaAdaptPtr)); + } + + DBG_DD(ErrorF(" via_video.c : num_adaptors : %d\n", num_adaptors)); +@@ -650,8 +658,6 @@ return TRUE; } @@ -1313,7 +1324,7 @@ Index: src/via_video.c static void viaVideoFillPixmap(ScrnInfoPtr pScrn, char *base, -@@ -662,7 +666,7 @@ +@@ -662,7 +668,7 @@ { [...2537 lines suppressed...] return vx->PutImage(pScrn, src_x, src_y, drw_x, drw_y, src_w, src_h, drw_w, drw_h, id, buf, width, height, sync, clipBoxes, @@ -7330,8 +7849,8 @@ Index: src/via_xvmc.c unsigned long Index: src/via_dri.c =================================================================== ---- src/via_dri.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dri.c (.../trunk) (revision 751) +--- src/via_dri.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dri.c (.../trunk) (revision 758) @@ -588,7 +588,16 @@ pDRIInfo = pVia->pDRIInfo; @@ -7352,8 +7871,8 @@ Index: src/via_dri.c #ifdef XSERVER_LIBPCIACCESS Index: src/via_vt162x.h =================================================================== ---- src/via_vt162x.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_vt162x.h (.../trunk) (revision 751) +--- src/via_vt162x.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_vt162x.h (.../trunk) (revision 758) @@ -926,6 +926,23 @@ 0x0, 0x0, }, @@ -7380,9 +7899,22 @@ Index: src/via_vt162x.h { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, Index: src/via.h =================================================================== ---- src/via.h (.../tags/release_0_2_903) (revision 751) -+++ src/via.h (.../trunk) (revision 751) -@@ -561,9 +561,6 @@ +--- src/via.h (.../tags/release_0_2_903) (revision 758) ++++ src/via.h (.../trunk) (revision 758) +@@ -327,6 +327,12 @@ + #define VIDEO_FIFO_PRETHRESHOLD_VT3336 250 + #define VIDEO_EXPIRE_NUM_VT3336 31 + ++/* Those values are only valid for IGA1 */ ++#define VIDEO_FIFO_DEPTH_VT3409 400 ++#define VIDEO_FIFO_THRESHOLD_VT3409 320 ++#define VIDEO_FIFO_PRETHRESHOLD_VT3409 230 ++#define VIDEO_EXPIRE_NUM_VT3409 160 ++ + /* ALPHA_V3_FIFO_CONTROL 0x278 + * IA2 has 32 level FIFO for packet mode video format + * 32 level FIFO for planar mode video YV12. with extension reg 230 bit 21 enable +@@ -561,9 +567,6 @@ #define HQV_V_FILTER_DEFAULT 0x00420000 #define HQV_H_FILTER_DEFAULT 0x00000040 @@ -7392,7 +7924,7 @@ Index: src/via.h /* HQV_MINI_CONTROL 0x3E8 */ #define HQV_H_MINIFY_ENABLE 0x00000800 #define HQV_H_MINIFY_DOWN 0x00001000 -@@ -572,6 +569,19 @@ +@@ -572,6 +575,19 @@ #define HQV_VDEBLOCK_FILTER 0x80000000 #define HQV_HDEBLOCK_FILTER 0x00008000 @@ -7414,8 +7946,8 @@ Index: src/via.h #define CHROMA_KEY_HIGH 0x00FFFFFF Index: src/via_priv.h =================================================================== ---- src/via_priv.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_priv.h (.../trunk) (revision 751) +--- src/via_priv.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_priv.h (.../trunk) (revision 758) @@ -29,9 +29,7 @@ #ifdef XF86DRI #include "via_drm.h" @@ -7439,7 +7971,7 @@ Index: src/via_priv.h Index: src/via_timing.c =================================================================== --- src/via_timing.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.c (.../trunk) (revision 751) ++++ src/via_timing.c (.../trunk) (revision 758) @@ -0,0 +1,398 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. @@ -7841,8 +8373,8 @@ Index: src/via_timing.c +} Index: src/Makefile.am =================================================================== ---- src/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ src/Makefile.am (.../trunk) (revision 751) +--- src/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ src/Makefile.am (.../trunk) (revision 758) @@ -43,23 +43,29 @@ via_ch7xxx.c \ via_ch7xxx.h \ @@ -7875,8 +8407,8 @@ Index: src/Makefile.am via_vgahw.h \ Index: src/via_dga.c =================================================================== ---- src/via_dga.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dga.c (.../trunk) (revision 751) +--- src/via_dga.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dga.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ pScrn->SwitchMode(index, pScrn->currentMode, 0); @@ -7897,9 +8429,9 @@ Index: src/via_dga.c pVia->DGAOldDisplayWidth = pScrn->displayWidth; Index: src/via_id.c =================================================================== ---- src/via_id.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.c (.../trunk) (revision 751) -@@ -87,6 +87,7 @@ +--- src/via_id.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.c (.../trunk) (revision 758) +@@ -87,10 +87,12 @@ {"Asustek K8V-MX", VIA_K8M800, 0x1043, 0x8129, VIA_DEVICE_CRT}, {"Mitac 8399", VIA_K8M800, 0x1071, 0x8399, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, /* aka "Pogolinux Konabook 3100" */ {"Mitac 8889", VIA_K8M800, 0x1071, 0x8889, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, @@ -7907,7 +8439,12 @@ Index: src/via_id.c {"VIA VT3108 (K8M800)", VIA_K8M800, 0x1106, 0x3108, VIA_DEVICE_CRT}, /* borrowed by Asustek A8V-MX */ {"Shuttle FX21", VIA_K8M800, 0x1297, 0x3052, VIA_DEVICE_CRT}, {"Shuttle FX83", VIA_K8M800, 0x1297, 0xF683, VIA_DEVICE_CRT | VIA_DEVICE_TV}, -@@ -113,6 +114,7 @@ + {"Sharp Actius AL27", VIA_K8M800, 0x13BD, 0x1044, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, ++ {"Sharp PC-AE30J", VIA_K8M800, 0x13BD, 0x104B, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Giga-byte GA-K8VM800M", VIA_K8M800, 0x1458, 0xD000, VIA_DEVICE_CRT}, + {"MSI K8M Neo-V", VIA_K8M800, 0x1462, 0x0320, VIA_DEVICE_CRT}, + {"MSI K8MM-V", VIA_K8M800, 0x1462, 0x7142, VIA_DEVICE_CRT}, +@@ -113,6 +115,7 @@ {"Packard Bell Imedia 2097", VIA_K8M800, 0x1631, 0xD007, VIA_DEVICE_CRT}, {"Fujitsu-Siemens Amilo K7610", VIA_K8M800, 0x1734, 0x10B3, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"ASRock K8Upgrade-VM800", VIA_K8M800, 0x1849, 0x3108, VIA_DEVICE_CRT}, @@ -7915,7 +8452,7 @@ Index: src/via_id.c /*** PM800, PM880, PN800, CN400 ***/ {"VIA VT3118 (PM800)", VIA_PM800, 0x1106, 0x3118, VIA_DEVICE_CRT}, /* borrowed by ECS PM800-M2 */ -@@ -138,6 +140,7 @@ +@@ -138,6 +141,7 @@ {"PCChips V21G", VIA_VM800, 0x1019, 0xAA51, VIA_DEVICE_CRT}, {"Asustek P5VDC-MX", VIA_VM800, 0x1043, 0x3344, VIA_DEVICE_CRT}, {"Asustek P5VDC-TVM", VIA_VM800, 0x1043, 0x81CE, VIA_DEVICE_CRT}, @@ -7923,7 +8460,7 @@ Index: src/via_id.c {"Gateway MX3210", VIA_VM800, 0x107B, 0x0216, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"VIA VT3344 (VM800) - EPIA EN", VIA_VM800, 0x1106, 0x3344, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"Gigabyte GA-8VM800M-775", VIA_VM800, 0x1458, 0xD000, VIA_DEVICE_CRT}, -@@ -145,6 +148,7 @@ +@@ -145,6 +149,7 @@ {"MSI Fuzzy CN700/CN700T/CN700G", VIA_VM800, 0x1462, 0x7199, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"MSI PM8M3-V", VIA_VM800, 0x1462, 0x7211, VIA_DEVICE_CRT}, {"MSI PM8PM", VIA_VM800, 0x1462, 0x7222, VIA_DEVICE_CRT}, @@ -7931,7 +8468,7 @@ Index: src/via_id.c {"RoverBook Partner W500", VIA_VM800, 0x1509, 0x4330, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo/RoverBook Voyager V511L", VIA_VM800, 0x1558, 0x0662, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M5xxS", VIA_VM800, 0x1558, 0x5406, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -158,6 +162,7 @@ +@@ -158,6 +163,7 @@ {"Asustek P5V800-MX", VIA_VM800, 0x3344, 0x1122, VIA_DEVICE_CRT}, /*** K8M890 ***/ @@ -7939,7 +8476,7 @@ Index: src/via_id.c {"Asustek A8V-VM", VIA_K8M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek M2V-MX SE", VIA_K8M890, 0x1043, 0x8297, VIA_DEVICE_CRT}, {"Foxconn K8M890M2MA-RS2H", VIA_K8M890, 0x105B, 0x0C84, VIA_DEVICE_CRT}, -@@ -179,6 +184,7 @@ +@@ -179,6 +185,7 @@ {"Gigabyte GA-VM900M", VIA_P4M900, 0x1458, 0xD000, VIA_DEVICE_CRT}, {"MSI VR321", VIA_P4M900, 0x1462, 0x3355, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"MSI P4M900M / P4M900M2-F/L", VIA_P4M900, 0x1462, 0x7255, VIA_DEVICE_CRT}, @@ -7947,7 +8484,7 @@ Index: src/via_id.c {"Everex NC1501/NC1503", VIA_P4M900, 0x1509, 0x1E30, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SE", VIA_P4M900, 0x1558, 0x0664, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SR", VIA_P4M900, 0x1558, 0x0669, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -196,6 +202,7 @@ +@@ -196,6 +203,7 @@ {"Samsung Q1B", VIA_CX700, 0x144D, 0xC02C, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"FIC CE260", VIA_CX700, 0x1509, 0x2D30, VIA_DEVICE_LCD}, {"FIC CE261", VIA_CX700, 0x1509, 0x2F07, VIA_DEVICE_LCD}, @@ -7955,7 +8492,7 @@ Index: src/via_id.c {"Packard Bell EasyNote XS", VIA_CX700, 0x1631, 0xC201, VIA_DEVICE_LCD}, /* aka Everex Cloudbook CE1200V */ /*** P4M890, VN890 ***/ -@@ -204,11 +211,17 @@ +@@ -204,11 +212,20 @@ {"Asustek P5V-VM ULTRA", VIA_P4M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek P5V-VM DH", VIA_P4M890, 0x1043, 0x81CE, VIA_DEVICE_CRT}, {"Mitac 8615", VIA_P4M890, 0x1071, 0x8615, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, @@ -7970,13 +8507,16 @@ Index: src/via_id.c + {"Samsung NC20", VIA_VX800, 0x144d, 0xc04e, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Quanta DreamBook Light IL1", VIA_VX800, 0x152d, 0x0771, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + ++ /*** VX855 ***/ ++ {"VIA VT8562C", VIA_VX855, 0x1106, 0x5122, VIA_DEVICE_CRT}, ++ /* keep this */ {NULL, VIA_UNKNOWN, 0x0000, 0x0000, VIA_DEVICE_NONE} }; Index: src/via_timing.h =================================================================== --- src/via_timing.h (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.h (.../trunk) (revision 751) ++++ src/via_timing.h (.../trunk) (revision 758) @@ -0,0 +1,51 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/xorg-x11-drv-openchrome.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- xorg-x11-drv-openchrome.spec 15 Jul 2009 15:59:46 -0000 1.45 +++ xorg-x11-drv-openchrome.spec 18 Jul 2009 12:28:45 -0000 1.46 @@ -10,7 +10,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 11%{?dist}.1 +Release: 12%{?dist} URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -25,10 +25,15 @@ Patch99: openchrome-0.2.903-late # Fedora specific patches : #Patch100: openchrome-0.2.903-disable_hwcursor.patch # Experimental patches (branch backport, etc...): -Patch200: openchrome-0.2.903-vx855_support.patch -Patch201: openchrome-0.2.903-pll_rework.patch -Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch +#Patch200: openchrome-0.2.903-vx855_support.patch +#Patch201: openchrome-0.2.903-pll_rework.patch +#Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch Patch203: openchrome-0.2.903-disable_TMDS_by_default.patch +#Patch204: openchrome-switch-on-lvds-pads-only-for-active-channels.patch +Patch205: openchrome-0.2.903-XO-1.5-panel.patch +Patch206: openchrome-0.2.903-remove_loader_symbol_lists.patch +#Patch207: openchrome-0.2.903-fix_null_pointer_deref_in_viaExaCheckComposite.patch +Patch208: openchrome-vt1625.patch ExclusiveArch: %{ix86} x86_64 @@ -69,10 +74,10 @@ X.Org X11 openchrome video driver XvMC d %prep %setup -q -n %{tarball}-%{version} %patch99 -p0 -b .latest -%patch200 -p0 -%patch201 -p0 -%patch202 -p0 -%patch203 -p0 +%patch203 -p0 -b .tmds +%patch205 -p0 -b .XO_1.5_panel +%patch206 -p0 -b .loader_symbol +%patch208 -p0 -b .vt1625 %build @@ -130,6 +135,16 @@ fi %changelog +* Mon Jul 18 2009 Xavier Bachelot - 0.2.903-12 +- Update to latest snapshot (svn 758) : + - Basic VX855 support. + - Fix pci space corruption on P4M900 (RHBZ#506622). + - Fix null pointer dereference in viaExaCheckComposite (RHBZ#449034). +- Add patch to allow 1200x900 panel (X0-1.5). +- Add patch to remove loader symbol lists, needed for xserver 1.7 (RHBZ#510206). +- Add experimental patch for better VT1625 support. +- Drop upstreamed patches. + * Wed Jul 15 2009 Adam Jackson - 0.2.903-11.1 - ABI bump --- openchrome-0.2.903-fix_cursor_on_secondary.patch DELETED --- --- openchrome-0.2.903-panel.patch DELETED --- --- openchrome-0.2.903-pll_rework.patch DELETED --- --- openchrome-0.2.903-re_enable_AGPDMA.patch DELETED --- --- openchrome-0.2.903-sync_pciids.patch DELETED --- --- openchrome-0.2.903-vx855_support.patch DELETED --- From pkgdb at fedoraproject.org Sat Jul 18 12:28:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:45 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested approveacls Message-ID: <20090718122845.E7C7F10F95E@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-datastore (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:47 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchcommits Message-ID: <20090718122847.2DCF710F968@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-datastore (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:28:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:28:58 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchbugzilla Message-ID: <20090718122858.7BCDE10F8B3@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-datastore (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:29:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:00 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested watchcommits Message-ID: <20090718122901.1073710F971@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-datastore (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:29:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:01 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested commit Message-ID: <20090718122901.E08DC10F973@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-datastore (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:29:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:03 +0000 Subject: [pkgdb] sugar-datastore: sdz has requested approveacls Message-ID: <20090718122903.7606410F976@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-datastore (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:29:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:07 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122907.6F4C110F978@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:08 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122908.82B9110F8B9@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:10 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122910.2500D10F983@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:11 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122911.5BB8A10F98B@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:24 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122924.C6CA910F992@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:24 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122924.CA66B10F995@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:25 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122926.0D14110F9A0@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:27 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122927.5125810F9A7@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:32 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122932.99F5410F8FC@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:34 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122934.2C99910F9B0@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:35 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122935.2221910F9B7@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:36 +0000 Subject: [pkgdb] sugar had acl change status Message-ID: <20090718122936.6B03C10F9BE@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar From pkgdb at fedoraproject.org Sat Jul 18 12:29:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:52 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchbugzilla Message-ID: <20090718122952.4B7C910F901@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-presence-service (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:29:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:53 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchcommits Message-ID: <20090718122953.B692210F9C4@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-presence-service (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:29:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:55 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested commit Message-ID: <20090718122955.780F810F9C8@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-presence-service (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:29:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:29:56 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested approveacls Message-ID: <20090718122956.AD8AC10F9CC@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-presence-service (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:04 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchbugzilla Message-ID: <20090718123005.093FE10F905@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-presence-service (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:06 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchcommits Message-ID: <20090718123007.06FAE10F9D0@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-presence-service (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:08 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested commit Message-ID: <20090718123008.4C6D910F9D3@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-presence-service (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:09 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested approveacls Message-ID: <20090718123009.C551210F9D8@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-presence-service (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:16 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchcommits Message-ID: <20090718123016.D9F9510F909@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-presence-service (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:19 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested watchbugzilla Message-ID: <20090718123019.DED7210F9E0@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-presence-service (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:20 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested commit Message-ID: <20090718123020.7C17010F9E4@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-presence-service (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:23 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123023.7A96F10F90B@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-base (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:23 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123024.33F8610F90D@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-base (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:24 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123024.B6C4610F9EC@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-base (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:25 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123025.82D8510F9EF@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-base (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:26 +0000 Subject: [pkgdb] sugar-presence-service: sdz has requested approveacls Message-ID: <20090718123027.0515A10F9F3@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-presence-service (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sat Jul 18 12:30:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:36 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123036.8CDC510F912@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-base (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:37 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123038.1D62C10F9F7@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-base (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:39 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123039.8E2EC10F9FB@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-base (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:41 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090718123041.9E5A510F9FF@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-base (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 12:30:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:43 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchbugzilla Message-ID: <20090718123043.90DE310FA03@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-toolkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:44 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchcommits Message-ID: <20090718123044.5916010FA09@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-toolkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:45 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested commit Message-ID: <20090718123045.BA58E10FA0C@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-toolkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:47 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested approveacls Message-ID: <20090718123047.BAF5110FA10@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-toolkit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:55 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchbugzilla Message-ID: <20090718123056.176C710FA14@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-toolkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:55 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchcommits Message-ID: <20090718123056.23B9810FA16@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-toolkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:57 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested commit Message-ID: <20090718123058.26A8810FA17@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-toolkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:30:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:30:59 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested approveacls Message-ID: <20090718123059.98BB510FA19@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-toolkit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:03 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchcommits Message-ID: <20090718123104.22DB010FA1E@bastion2.fedora.phx.redhat.com> sdz has requested the watchcommits acl on sugar-toolkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:08 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested commit Message-ID: <20090718123108.3B98710FA22@bastion2.fedora.phx.redhat.com> sdz has requested the commit acl on sugar-toolkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:10 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested approveacls Message-ID: <20090718123110.5DE0B10F919@bastion2.fedora.phx.redhat.com> sdz has requested the approveacls acl on sugar-toolkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:08 +0000 Subject: [pkgdb] sugar-toolkit: sdz has requested watchbugzilla Message-ID: <20090718123108.C0E5010FA26@bastion2.fedora.phx.redhat.com> sdz has requested the watchbugzilla acl on sugar-toolkit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:47 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123147.4B8AB10F8CD@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-toolkit (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:48 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123148.62A7110F91D@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-toolkit (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:48 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123149.2AC8110FA2E@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-toolkit (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:31:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:31:50 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123150.8C93A10FA34@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-toolkit (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:32:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:00 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123200.9DC0B10F923@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-toolkit (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:32:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:00 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123201.171B110FA38@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-toolkit (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:32:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:02 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123202.D8CB310FA3B@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-toolkit (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:32:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:03 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090718123203.93FB110FA3E@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-toolkit (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sat Jul 18 12:32:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:50 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123250.8024510F8DB@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-datastore (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:32:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:51 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123251.43B3E10FA40@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-datastore (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:32:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:52 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123252.4495D10FA47@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-datastore (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:32:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:32:52 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123252.9467510FA4E@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-datastore (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:33:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:02 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123303.04EA010F930@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-datastore (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:33:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:03 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123303.A77AA10FA58@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-datastore (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:33:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:04 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123304.CFCF710FA5F@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-datastore (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:33:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:06 +0000 Subject: [pkgdb] sugar-datastore had acl change status Message-ID: <20090718123306.8C69910FA67@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-datastore (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-datastore From pkgdb at fedoraproject.org Sat Jul 18 12:33:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:58 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123358.5A2BC10FA76@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-artwork (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:33:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:33:59 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123359.ACD9710FA7B@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-artwork (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:00 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123401.08E2310FA80@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-artwork (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:02 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123402.DF53610FA84@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-artwork (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:12 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123413.0B74F10F8E9@bastion2.fedora.phx.redhat.com> tomeu has set the watchbugzilla acl on sugar-artwork (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:14 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123414.AF65910FA87@bastion2.fedora.phx.redhat.com> tomeu has set the commit acl on sugar-artwork (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:14 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123415.1A18710FA8D@bastion2.fedora.phx.redhat.com> tomeu has set the watchcommits acl on sugar-artwork (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 12:34:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 12:34:17 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090718123417.981CD10FA92@bastion2.fedora.phx.redhat.com> tomeu has set the approveacls acl on sugar-artwork (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From ndim at fedoraproject.org Sat Jul 18 13:16:04 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Sat, 18 Jul 2009 13:16:04 +0000 (UTC) Subject: rpms/e2tools/devel e2tools.spec,1.8,1.9 Message-ID: <20090718131604.3405F11C0099@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/e2tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7064 Modified Files: e2tools.spec Log Message: * Sat Jul 18 2009 Hans Ulrich Niedermann - 0.0.16-13 - Add libcom_err-devel buildreq on F12 and later (e2fsprogs-devel split) Index: e2tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2tools/devel/e2tools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- e2tools.spec 24 Feb 2009 13:21:38 -0000 1.8 +++ e2tools.spec 18 Jul 2009 13:15:33 -0000 1.9 @@ -1,6 +1,6 @@ Name: e2tools Version: 0.0.16 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Manipulate files in unmounted ext2/ext3 filesystems Group: Applications/System @@ -23,6 +23,9 @@ Patch2: e2tools-printf-lld-64bit BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel >= 1.27 +%if 0%{?fedora} >= 12 +BuildRequires: libcom_err-devel +%endif # For e2tools-test.sh BuildRequires: e2fsprogs, diffutils @@ -100,6 +103,9 @@ sh %{SOURCE1} %changelog +* Sat Jul 18 2009 Hans Ulrich Niedermann - 0.0.16-13 +- Add libcom_err-devel buildreq on F12 and later (e2fsprogs-devel split) + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.16-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From robert at fedoraproject.org Sat Jul 18 13:32:42 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Sat, 18 Jul 2009 13:32:42 +0000 (UTC) Subject: rpms/ethtool/devel ethtool.spec, 1.23, 1.24 sources, 1.12, 1.13 ethtool-6-help_usage.patch, 1.2, NONE Message-ID: <20090718133242.DF95E11C0099@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/ethtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12115 Modified Files: ethtool.spec sources Removed Files: ethtool-6-help_usage.patch Log Message: Upgrade to GIT 20090323 Index: ethtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/ethtool/devel/ethtool.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ethtool.spec 17 Jul 2009 00:45:58 -0000 1.23 +++ ethtool.spec 18 Jul 2009 13:32:12 -0000 1.24 @@ -1,6 +1,6 @@ Name: ethtool Version: 6 -Release: 5.20090306git%{?dist} +Release: 6.20090323git%{?dist} Summary: Ethernet settings tool for PCI ethernet cards License: GPLv2 @@ -12,12 +12,11 @@ URL: http://sourceforge.net/projects/gk # # When generating tarball package from upstream git: # - git clone git://git.kernel.org/pub/scm/network/ethtool/ethtool.git ethtool-6 -# - cd ethtool-6; git checkout 7336e8a6a587802ca72dcf5f509696d96b9d6f23 +# - cd ethtool-6; git checkout 669ba5cadfb15842e90d8aa7ba5a575f7a457b3e # - cp -f ChangeLog ChangeLog.old; git log > ChangeLog.git # - rm -rf .git; cd ..; tar cvfz ethtool-6.tar.gz ethtool-6 # - Use the visible date of latest git log entry for %{release} in spec file Source0: %{name}-%{version}.tar.gz -Patch0: ethtool-6-help_usage.patch BuildRequires: automake, autoconf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -28,7 +27,6 @@ network devices, especially of ethernet %prep %setup -q -%patch0 -p1 -b .help_usage # Only needed when using upstream git aclocal @@ -59,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man8/%{name}.8* %changelog +* Sat Jul 18 2009 Robert Scheck 6-6.20090323git +- Upgrade to GIT 20090323 + * Thu Jul 16 2009 Jeff Garzik 6-5.20090306git - minor specfile cleanups Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ethtool/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 7 Mar 2009 20:34:22 -0000 1.12 +++ sources 18 Jul 2009 13:32:12 -0000 1.13 @@ -1 +1 @@ -efaf447b8bb746f7d989ed6a933b18b1 ethtool-6.tar.gz +4995625a2fcb0953b6b446034eb9eed9 ethtool-6.tar.gz --- ethtool-6-help_usage.patch DELETED --- From robert at fedoraproject.org Sat Jul 18 13:44:58 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Sat, 18 Jul 2009 13:44:58 +0000 (UTC) Subject: rpms/libisofs/devel .cvsignore, 1.6, 1.7 libisofs.spec, 1.11, 1.12 sources, 1.6, 1.7 Message-ID: <20090718134458.8DB6911C0099@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/libisofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14940 Modified Files: .cvsignore libisofs.spec sources Log Message: Upgrade to 0.6.20 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libisofs/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Mar 2009 21:53:09 -0000 1.6 +++ .cvsignore 18 Jul 2009 13:44:28 -0000 1.7 @@ -1 +1 @@ -libisofs-0.6.16.tar.gz +libisofs-0.6.20.tar.gz Index: libisofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libisofs/devel/libisofs.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libisofs.spec 17 Mar 2009 21:53:09 -0000 1.11 +++ libisofs.spec 18 Jul 2009 13:44:28 -0000 1.12 @@ -1,6 +1,6 @@ Summary: Library to create ISO 9660 disk images Name: libisofs -Version: 0.6.16 +Version: 0.6.20 Release: 1%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}*.pc %changelog +* Sat Jul 18 2009 Robert Scheck 0.6.20-1 +- Upgrade to 0.6.20 + * Tue Mar 17 2009 Robert Scheck 0.6.16-1 - Upgrade to 0.6.16 - Several spec file cleanups and solved the multilib issues Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libisofs/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Mar 2009 21:53:09 -0000 1.6 +++ sources 18 Jul 2009 13:44:28 -0000 1.7 @@ -1 +1 @@ -398d934b5ca0e2741a6aa3c28ecef5b1 libisofs-0.6.16.tar.gz +52621c4a3fbfde268a210993b2919395 libisofs-0.6.20.tar.gz From tomeu at fedoraproject.org Sat Jul 18 13:59:37 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sat, 18 Jul 2009 13:59:37 +0000 (UTC) Subject: rpms/sugar-base/devel .cvsignore, 1.12, 1.13 sources, 1.12, 1.13 sugar-base.spec, 1.17, 1.18 Message-ID: <20090718135938.160D611C0099@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/sugar-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18701 Modified Files: .cvsignore sources sugar-base.spec Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-base/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 6 Apr 2009 18:46:30 -0000 1.12 +++ .cvsignore 18 Jul 2009 13:59:07 -0000 1.13 @@ -1 +1 @@ -sugar-base-0.84.1.tar.bz2 +sugar-base-0.85.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-base/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 6 Apr 2009 18:46:30 -0000 1.12 +++ sources 18 Jul 2009 13:59:07 -0000 1.13 @@ -1 +1 @@ -0ef47ff5a8931e0e7c732d22a514d297 sugar-base-0.84.1.tar.bz2 +29af717b0f8558d7e329058b44527aec sugar-base-0.85.2.tar.bz2 Index: sugar-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-base/devel/sugar-base.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sugar-base.spec 6 Apr 2009 18:46:30 -0000 1.17 +++ sugar-base.spec 18 Jul 2009 13:59:07 -0000 1.18 @@ -2,7 +2,7 @@ Summary: Base Sugar library Name: sugar-base -Version: 0.84.1 +Version: 0.85.2 Release: 1%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 +- New upstream release + * Mon Apr 06 2009 Simon Schampijer - 0.84.1-1 - sugar/dispatch/license.txt is missing from the sugar-base source tarball #704 From tomeu at fedoraproject.org Sat Jul 18 14:02:21 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sat, 18 Jul 2009 14:02:21 +0000 (UTC) Subject: rpms/sugar-toolkit/devel .cvsignore, 1.33, 1.34 sources, 1.37, 1.38 sugar-toolkit.spec, 1.47, 1.48 Message-ID: <20090718140222.031CB11C0099@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/sugar-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20452 Modified Files: .cvsignore sources sugar-toolkit.spec Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 6 Apr 2009 20:37:20 -0000 1.33 +++ .cvsignore 18 Jul 2009 14:01:51 -0000 1.34 @@ -1 +1 @@ -sugar-toolkit-0.84.4.tar.bz2 +sugar-toolkit-0.85.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 6 Apr 2009 20:37:20 -0000 1.37 +++ sources 18 Jul 2009 14:01:51 -0000 1.38 @@ -1 +1 @@ -5ad76015d382ec4125c2ef01022dc898 sugar-toolkit-0.84.4.tar.bz2 +1fc0880d36a1678d2a526b93dfad5d4b sugar-toolkit-0.85.2.tar.bz2 Index: sugar-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/devel/sugar-toolkit.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- sugar-toolkit.spec 6 Apr 2009 20:37:20 -0000 1.47 +++ sugar-toolkit.spec 18 Jul 2009 14:01:51 -0000 1.48 @@ -5,7 +5,7 @@ Summary: Sugar toolkit Name: sugar-toolkit -Version: 0.84.4 +Version: 0.85.2 Release: 1%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://wiki.laptop.org/go/Sugar @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_sysconfdir}/rpm/macros.sugar %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 +- New upstream release + * Mon Apr 06 2009 Simon Schampijer - 0.84.4-1 - new german and spanish translations From tomeu at fedoraproject.org Sat Jul 18 14:06:50 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sat, 18 Jul 2009 14:06:50 +0000 (UTC) Subject: rpms/sugar/devel .cvsignore, 1.39, 1.40 sources, 1.41, 1.42 sugar.spec, 1.63, 1.64 Message-ID: <20090718140650.6913811C0099@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/sugar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21831 Modified Files: .cvsignore sources sugar.spec Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 16 Apr 2009 17:21:01 -0000 1.39 +++ .cvsignore 18 Jul 2009 14:06:49 -0000 1.40 @@ -1 +1 @@ -sugar-0.84.6.tar.bz2 +sugar-0.85.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 16 Apr 2009 17:21:02 -0000 1.41 +++ sources 18 Jul 2009 14:06:49 -0000 1.42 @@ -1 +1 @@ -1747f7f35519b273e6c27bbcd8513d4b sugar-0.84.6.tar.bz2 +12eaf1a2f02e8d03a5d3085c7ffea8b8 sugar-0.85.2.tar.bz2 Index: sugar.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar/devel/sugar.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sugar.spec 16 Apr 2009 17:21:02 -0000 1.63 +++ sugar.spec 18 Jul 2009 14:06:50 -0000 1.64 @@ -5,7 +5,7 @@ Summary: Constructionist learning platform Name: sugar -Version: 0.84.6 +Version: 0.85.2 Release: 1%{?dist} #Release: 4.%{alphatag}%{?dist} URL: http://sugarlabs.org/ @@ -31,7 +31,7 @@ Requires: sugar-artwork Requires: sugar-toolkit Requires: gnome-python2-libwnck Requires: gnome-python2-gconf -Requires: matchbox-window-manager +Requires: metacity Requires: python-telepathy Requires: gstreamer-python Requires: pygtksourceview @@ -140,6 +140,9 @@ rm -rf %{buildroot} %{_bindir}/sugar-emulator %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 +- New upstream release + * Thu Apr 16 2009 Simon Schampijer - 0.84.6-1 - Only update the connections file when the AP changes state #756 - Initialize the ResultSet after the widget changes size #733 From tomeu at fedoraproject.org Sat Jul 18 14:12:53 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sat, 18 Jul 2009 14:12:53 +0000 (UTC) Subject: rpms/sugar-artwork/devel .cvsignore, 1.17, 1.18 sources, 1.17, 1.18 sugar-artwork.spec, 1.23, 1.24 Message-ID: <20090718141253.962EB11C0099@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/sugar-artwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23254 Modified Files: .cvsignore sources sugar-artwork.spec Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 11 Mar 2009 16:50:39 -0000 1.17 +++ .cvsignore 18 Jul 2009 14:12:23 -0000 1.18 @@ -1 +1 @@ -sugar-artwork-0.84.1.tar.bz2 +sugar-artwork-0.85.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 11 Mar 2009 16:50:39 -0000 1.17 +++ sources 18 Jul 2009 14:12:23 -0000 1.18 @@ -1 +1 @@ -d28b847a24aa23a1b6949aa6a7873560 sugar-artwork-0.84.1.tar.bz2 +bfb42b922189b1ea843566b65f880a2a sugar-artwork-0.85.1.tar.bz2 Index: sugar-artwork.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sugar-artwork.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sugar-artwork.spec 8 Apr 2009 16:26:42 -0000 1.23 +++ sugar-artwork.spec 18 Jul 2009 14:12:23 -0000 1.24 @@ -3,8 +3,8 @@ Summary: Artwork for Sugar look-and-feel Name: sugar-artwork -Version: 0.84.1 -Release: 3%{?dist} +Version: 0.85.1 +Release: 1%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org # git clone git://dev.laptop.org/artwork @@ -64,6 +64,9 @@ touch --no-create %{_datadir}/icons/suga %{_libdir}/gtk-2.0/*/engines/*.so %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-1 +- New upstream release + * Wed Apr 08 2009 Simon Schampijer - 0.84.1-3 - Another rebuild for icon-slicer-0.3-12 From pkgdb at fedoraproject.org Sat Jul 18 14:30:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:20 +0000 Subject: [pkgdb] hulahop: tomeu has requested watchbugzilla Message-ID: <20090718143020.CD87910F888@bastion2.fedora.phx.redhat.com> tomeu has requested the watchbugzilla acl on hulahop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:21 +0000 Subject: [pkgdb] hulahop: tomeu has requested watchcommits Message-ID: <20090718143022.0B49F10F89C@bastion2.fedora.phx.redhat.com> tomeu has requested the watchcommits acl on hulahop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:22 +0000 Subject: [pkgdb] hulahop: tomeu has requested commit Message-ID: <20090718143022.D908610F8A5@bastion2.fedora.phx.redhat.com> tomeu has requested the commit acl on hulahop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:23 +0000 Subject: [pkgdb] hulahop: tomeu has requested approveacls Message-ID: <20090718143023.C1F9110F8AA@bastion2.fedora.phx.redhat.com> tomeu has requested the approveacls acl on hulahop (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:32 +0000 Subject: [pkgdb] hulahop: tomeu has requested watchbugzilla Message-ID: <20090718143032.D24A310F8AC@bastion2.fedora.phx.redhat.com> tomeu has requested the watchbugzilla acl on hulahop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:33 +0000 Subject: [pkgdb] hulahop: tomeu has requested watchcommits Message-ID: <20090718143033.0985E10F8B0@bastion2.fedora.phx.redhat.com> tomeu has requested the watchcommits acl on hulahop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:33 +0000 Subject: [pkgdb] hulahop: tomeu has requested commit Message-ID: <20090718143033.C0A3910F8B3@bastion2.fedora.phx.redhat.com> tomeu has requested the commit acl on hulahop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 14:30:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 14:30:40 +0000 Subject: [pkgdb] hulahop: tomeu has requested approveacls Message-ID: <20090718143040.8D6ED10F89A@bastion2.fedora.phx.redhat.com> tomeu has requested the approveacls acl on hulahop (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sat Jul 18 15:23:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:23:13 +0000 Subject: [pkgdb] goffice04 (un)retirement Message-ID: <20090718152313.6058510F86B@bastion2.fedora.phx.redhat.com> Package goffice04 in Fedora devel has been retired by belegdol To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/goffice04 From tomeu at fedoraproject.org Sat Jul 18 15:25:13 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sat, 18 Jul 2009 15:25:13 +0000 (UTC) Subject: rpms/sugar-artwork/devel sugar-artwork.spec,1.24,1.25 Message-ID: <20090718152513.A09C111C0099@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/sugar-artwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8091 Modified Files: sugar-artwork.spec Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-2 - Remove matchbox theme dir Index: sugar-artwork.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sugar-artwork.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sugar-artwork.spec 18 Jul 2009 14:12:23 -0000 1.24 +++ sugar-artwork.spec 18 Jul 2009 15:24:42 -0000 1.25 @@ -4,7 +4,7 @@ Summary: Artwork for Sugar look-and-feel Name: sugar-artwork Version: 0.85.1 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org # git clone git://dev.laptop.org/artwork @@ -58,12 +58,14 @@ touch --no-create %{_datadir}/icons/suga %doc README COPYING %{_datadir}/icons/sugar -%{_datadir}/themes/sugar %{_datadir}/themes/sugar-100/gtk-2.0/gtkrc %{_datadir}/themes/sugar-72/gtk-2.0/gtkrc %{_libdir}/gtk-2.0/*/engines/*.so %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-2 +- Remove matchbox theme dir + * Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-1 - New upstream release From pkgdb at fedoraproject.org Sat Jul 18 15:29:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:29:06 +0000 Subject: [pkgdb] icu: thl has given up watchbugzilla Message-ID: <20090718152906.33A5810F899@bastion2.fedora.phx.redhat.com> thl has given up the watchbugzilla acl on icu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/icu From pkgdb at fedoraproject.org Sat Jul 18 15:29:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:29:09 +0000 Subject: [pkgdb] icu: thl has given up watchcommits Message-ID: <20090718152909.3E06A10F86B@bastion2.fedora.phx.redhat.com> thl has given up the watchcommits acl on icu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/icu From pkgdb at fedoraproject.org Sat Jul 18 15:29:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:29:10 +0000 Subject: [pkgdb] icu: thl has given up commit Message-ID: <20090718152910.9665C10F8A3@bastion2.fedora.phx.redhat.com> thl has given up the commit acl on icu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/icu From pkgdb at fedoraproject.org Sat Jul 18 15:29:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:29:11 +0000 Subject: [pkgdb] icu: thl has given up approveacls Message-ID: <20090718152911.7901010F8A8@bastion2.fedora.phx.redhat.com> thl has given up the approveacls acl on icu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/icu From pkgdb at fedoraproject.org Sat Jul 18 15:30:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:30:24 +0000 Subject: [pkgdb] revelation: thl has given up watchbugzilla Message-ID: <20090718153024.E922810F86B@bastion2.fedora.phx.redhat.com> thl has given up the watchbugzilla acl on revelation (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/revelation From pkgdb at fedoraproject.org Sat Jul 18 15:30:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 15:30:26 +0000 Subject: [pkgdb] revelation: thl has given up commit Message-ID: <20090718153026.AA78F10F89A@bastion2.fedora.phx.redhat.com> thl has given up the commit acl on revelation (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/revelation From wart at fedoraproject.org Sat Jul 18 15:45:36 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sat, 18 Jul 2009 15:45:36 +0000 (UTC) Subject: rpms/spr/EL-4 spr.spec,1.5,1.6 Message-ID: <20090718154536.57E9A11C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12813 Modified Files: spr.spec Log Message: Add Epoch: due to non-increasing version change upatream Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-4/spr.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- spr.spec 18 Jul 2009 04:42:40 -0000 1.5 +++ spr.spec 18 Jul 2009 15:45:35 -0000 1.6 @@ -21,7 +21,7 @@ data such as boosted decision trees, bag %package devel Summary: Development files for the Stat Pattern Recognition code Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description devel %{summary}. @@ -78,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Mon Jul 13 2009 Wart - 1:3.3.2-1 +* Mon Jul 13 2009 Wart - 1:3.3.2-2 - Add Epoch: due to non-increasing version change upatream * Mon Jul 13 2009 Wart - 3.3.2-1 From wart at fedoraproject.org Sat Jul 18 15:51:03 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sat, 18 Jul 2009 15:51:03 +0000 (UTC) Subject: rpms/spr/EL-5 spr.spec,1.3,1.4 Message-ID: <20090718155103.8C8A311C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14143 Modified Files: spr.spec Log Message: Add Epoch: due to non-increasing version change upatream Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/EL-5/spr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- spr.spec 14 Jul 2009 06:29:37 -0000 1.3 +++ spr.spec 18 Jul 2009 15:50:33 -0000 1.4 @@ -1,6 +1,7 @@ Name: spr Version: 3.3.2 -Release: 1%{?dist} +Release: 2%{?dist} +Epoch: 1 Summary: Library for categorization of data Group: Development/Libraries @@ -20,7 +21,7 @@ data such as boosted decision trees, bag %package devel Summary: Development files for the Stat Pattern Recognition code Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description devel %{summary}. @@ -77,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Wart - 1:3.3.2-2 +- Add Epoch: due to non-increasing version change upatream + * Mon Jul 13 2009 Wart - 3.3.2-1 - Update to latest release; rebase to Fedora version From wart at fedoraproject.org Sat Jul 18 16:13:01 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sat, 18 Jul 2009 16:13:01 +0000 (UTC) Subject: rpms/spr/devel spr.spec,1.10,1.11 Message-ID: <20090718161301.E8E8911C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/spr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21604 Modified Files: spr.spec Log Message: Add Epoch: due to non-increasing version change upstream Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/devel/spr.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- spr.spec 14 Jul 2009 04:08:42 -0000 1.10 +++ spr.spec 18 Jul 2009 16:12:31 -0000 1.11 @@ -1,6 +1,7 @@ Name: spr Version: 3.3.2 -Release: 1%{?dist} +Release: 2%{?dist} +Epoch: 1 Summary: Library for categorization of data Group: Development/Libraries @@ -20,7 +21,7 @@ data such as boosted decision trees, bag %package devel Summary: Development files for the Stat Pattern Recognition code Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name} = %{epoch}:%{version}-%{release} %description devel %{summary}. @@ -43,7 +44,7 @@ sed -i -e 's/ -lg2c//' src/Makefile # Parallel builds currently not supported. Upstream is aware of this # and needs time to find a fix. -make %{?smp_mflags} +make %install @@ -77,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 Wart - 1:3.3.2-2 +- Add Epoch: due to non-increasing version change upatream + * Mon Jul 13 2009 Wart - 3.3.2-1 - Update to latest release From pfrields at fedoraproject.org Sat Jul 18 17:18:29 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 17:18:29 +0000 (UTC) Subject: rpms/nautilus-search-tool/devel .cvsignore, 1.4, 1.5 nautilus-search-tool.spec, 1.14, 1.15 sources, 1.4, 1.5 Message-ID: <20090718171829.1C95911C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12777 Modified Files: .cvsignore nautilus-search-tool.spec sources Log Message: Update to 0.3.0-1, fixes #477810 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Aug 2007 14:46:36 -0000 1.4 +++ .cvsignore 18 Jul 2009 17:17:58 -0000 1.5 @@ -1 +1 @@ -nautilus-search-tool-0.2.2.tar.gz +nautilus-search-tool-0.3.0.tar.gz Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/devel/nautilus-search-tool.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nautilus-search-tool.spec 26 Feb 2009 04:25:01 -0000 1.14 +++ nautilus-search-tool.spec 18 Jul 2009 17:17:58 -0000 1.15 @@ -1,15 +1,15 @@ Name: nautilus-search-tool -Version: 0.2.2 -Release: 9%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells License: GPLv2+ URL: http://saettaz.altervista.org/software/nautilus_search_tool.html Source0: http://dl.sourceforge.net/nautsearchtool/%{name}-%{version}.tar.gz -Patch0: nautilus-search-tool-0.2-headers.patch -Patch1: nautilus-search-tool-0.2-extdir.patch -Patch2: nautilus-search-tool-no-eels.patch +Patch0: nautilus-search-tool-0.3.0-headers-typos.patch +Patch1: nautilus-search-tool-no-eels.patch +Patch2: nautilus-search-tool-0.3.0-noninit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gnome-desktop-devel >= 2.10.0 eel2-devel >= 2.10.0 @@ -23,10 +23,9 @@ search for files. %prep %setup -q -%patch0 -p1 -b .headers -%patch1 -p1 -b .extdir -%patch2 -p1 -b .no-eels - +%patch0 -p1 -b .headers-typos +%patch1 -p1 -b .no-eels +%patch2 -p1 -b .noninit autoconf %build @@ -48,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-1 +- Update to upstream 0.3.0 +- Fixes bug #477810 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Aug 2007 14:46:36 -0000 1.4 +++ sources 18 Jul 2009 17:17:58 -0000 1.5 @@ -1 +1 @@ -9271d80e9ab54f3838f5050d0ec70f0f nautilus-search-tool-0.2.2.tar.gz +31be9dc5a324782d7ca0df9843c32fa9 nautilus-search-tool-0.3.0.tar.gz From pfrields at fedoraproject.org Sat Jul 18 17:20:06 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 17:20:06 +0000 (UTC) Subject: rpms/nautilus-search-tool/F-11 .cvsignore, 1.4, 1.5 nautilus-search-tool.spec, 1.14, 1.15 sources, 1.4, 1.5 Message-ID: <20090718172006.0A7E311C00E5@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13489 Modified Files: .cvsignore nautilus-search-tool.spec sources Log Message: Update to 0.3.0-1, fixes #477810 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Aug 2007 14:46:36 -0000 1.4 +++ .cvsignore 18 Jul 2009 17:19:35 -0000 1.5 @@ -1 +1 @@ -nautilus-search-tool-0.2.2.tar.gz +nautilus-search-tool-0.3.0.tar.gz Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-11/nautilus-search-tool.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nautilus-search-tool.spec 26 Feb 2009 04:25:01 -0000 1.14 +++ nautilus-search-tool.spec 18 Jul 2009 17:19:35 -0000 1.15 @@ -1,15 +1,15 @@ Name: nautilus-search-tool -Version: 0.2.2 -Release: 9%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells License: GPLv2+ URL: http://saettaz.altervista.org/software/nautilus_search_tool.html Source0: http://dl.sourceforge.net/nautsearchtool/%{name}-%{version}.tar.gz -Patch0: nautilus-search-tool-0.2-headers.patch -Patch1: nautilus-search-tool-0.2-extdir.patch -Patch2: nautilus-search-tool-no-eels.patch +Patch0: nautilus-search-tool-0.3.0-headers-typos.patch +Patch1: nautilus-search-tool-no-eels.patch +Patch2: nautilus-search-tool-0.3.0-noninit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gnome-desktop-devel >= 2.10.0 eel2-devel >= 2.10.0 @@ -23,10 +23,9 @@ search for files. %prep %setup -q -%patch0 -p1 -b .headers -%patch1 -p1 -b .extdir -%patch2 -p1 -b .no-eels - +%patch0 -p1 -b .headers-typos +%patch1 -p1 -b .no-eels +%patch2 -p1 -b .noninit autoconf %build @@ -48,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-1 +- Update to upstream 0.3.0 +- Fixes bug #477810 + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Aug 2007 14:46:36 -0000 1.4 +++ sources 18 Jul 2009 17:19:35 -0000 1.5 @@ -1 +1 @@ -9271d80e9ab54f3838f5050d0ec70f0f nautilus-search-tool-0.2.2.tar.gz +31be9dc5a324782d7ca0df9843c32fa9 nautilus-search-tool-0.3.0.tar.gz From jussilehtola at fedoraproject.org Sat Jul 18 17:21:08 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sat, 18 Jul 2009 17:21:08 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.spec,1.34,1.35 Message-ID: <20090718172108.9184611C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13826/devel Modified Files: openmpi.spec Log Message: Fix builds of other pacakges in rawhide. Index: openmpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- openmpi.spec 8 May 2009 20:18:34 -0000 1.34 +++ openmpi.spec 18 Jul 2009 17:20:38 -0000 1.35 @@ -18,7 +18,7 @@ Name: openmpi%{?cc_name_suffix} Version: 1.3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -34,6 +34,9 @@ BuildRequires: libibverbs-devel, opensm #%endif Provides: mpi Requires: environment-modules + +# Provide the obsoleted -devel which is used by other packages +Provides: openmpi-devel = %{version}-%{release} Obsoletes: openmpi-libs, openmpi-devel %description @@ -138,6 +141,9 @@ rm -rf %{buildroot} %{_datadir}/Modules/modulefiles/* %changelog +* Sat Jul 18 2009 Jussi Lehtola - 1.3.1-4 +- Add Provides: openmpi-devel to fix other package builds in rawhide. + * Fri May 08 2009 Lubomir Rintel - 1.3.1-3 - Treat i586 the same way as i386 From pfrields at fedoraproject.org Sat Jul 18 17:21:40 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 17:21:40 +0000 (UTC) Subject: rpms/nautilus-search-tool/F-11 nautilus-search-tool-0.3.0-headers-typos.patch, NONE, 1.1 nautilus-search-tool-0.3.0-noninit.patch, NONE, 1.1 Message-ID: <20090718172140.A623A11C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14285 Added Files: nautilus-search-tool-0.3.0-headers-typos.patch nautilus-search-tool-0.3.0-noninit.patch Log Message: Add updated patches for 0.3.0 nautilus-search-tool-0.3.0-headers-typos.patch: nautilus-search-tool.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- NEW FILE nautilus-search-tool-0.3.0-headers-typos.patch --- diff -uNr nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c nautilus-search-tool-0.3.0/src/nautilus-search-tool.c --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-04-12 05:40:59.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-04-27 09:21:20.000000000 -0400 @@ -25,6 +25,9 @@ #include /* for GETTEXT_PACKAGE */ #endif +#include +#include + #include "nautilus-search-tool.h" #include @@ -82,9 +85,9 @@ gchar *version; gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); - guint array_lenght = g_strv_length (array_version); + guint array_length = g_strv_length (array_version); - for (i = 0; i < array_lenght; i++) + for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) { nautilus-search-tool-0.3.0-noninit.patch: nautilus-search-tool.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nautilus-search-tool-0.3.0-noninit.patch --- --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-07-18 12:41:19.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-07-18 12:57:53.000000000 -0400 @@ -87,6 +87,7 @@ gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); guint array_length = g_strv_length (array_version); + version = (gchar *) g_malloc (array_length * sizeof (gchar)); for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) From pfrields at fedoraproject.org Sat Jul 18 17:25:59 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 17:25:59 +0000 (UTC) Subject: rpms/nautilus-search-tool/F-11 nautilus-search-tool-0.2-extdir.patch, 1.1, NONE nautilus-search-tool-0.2-headers.patch, 1.1, NONE Message-ID: <20090718172559.6F85211C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15877 Removed Files: nautilus-search-tool-0.2-extdir.patch nautilus-search-tool-0.2-headers.patch Log Message: Remove unnecessary patches --- nautilus-search-tool-0.2-extdir.patch DELETED --- --- nautilus-search-tool-0.2-headers.patch DELETED --- From pfrields at fedoraproject.org Sat Jul 18 17:33:38 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 17:33:38 +0000 (UTC) Subject: rpms/nautilus-search-tool/devel nautilus-search-tool-0.3.0-headers-typos.patch, NONE, 1.1 nautilus-search-tool-0.3.0-noninit.patch, NONE, 1.1 Message-ID: <20090718173338.35DDE11C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18306 Added Files: nautilus-search-tool-0.3.0-headers-typos.patch nautilus-search-tool-0.3.0-noninit.patch Log Message: Oops, forgotten patches. Correcting. nautilus-search-tool-0.3.0-headers-typos.patch: nautilus-search-tool.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- NEW FILE nautilus-search-tool-0.3.0-headers-typos.patch --- diff -uNr nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c nautilus-search-tool-0.3.0/src/nautilus-search-tool.c --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-04-12 05:40:59.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-04-27 09:21:20.000000000 -0400 @@ -25,6 +25,9 @@ #include /* for GETTEXT_PACKAGE */ #endif +#include +#include + #include "nautilus-search-tool.h" #include @@ -82,9 +85,9 @@ gchar *version; gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); - guint array_lenght = g_strv_length (array_version); + guint array_length = g_strv_length (array_version); - for (i = 0; i < array_lenght; i++) + for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) { nautilus-search-tool-0.3.0-noninit.patch: nautilus-search-tool.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nautilus-search-tool-0.3.0-noninit.patch --- --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-07-18 12:41:19.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-07-18 12:57:53.000000000 -0400 @@ -87,6 +87,7 @@ gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); guint array_length = g_strv_length (array_version); + version = (gchar *) g_malloc (array_length * sizeof (gchar)); for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) From pkgdb at fedoraproject.org Sat Jul 18 17:45:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:45:35 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchbugzilla Message-ID: <20090718174535.932A710F899@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:45:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:45:39 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchcommits Message-ID: <20090718174539.ADA4210F8A6@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:45:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:45:43 +0000 Subject: [pkgdb] sugar-base: bochecha has requested commit Message-ID: <20090718174543.4AB4810F8AC@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-base (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:15 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchbugzilla Message-ID: <20090718174615.E401C10F89F@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:18 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchcommits Message-ID: <20090718174618.D708410F8A9@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:21 +0000 Subject: [pkgdb] sugar-base: bochecha has requested commit Message-ID: <20090718174621.1F58D10F8B0@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-base (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:28 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchbugzilla Message-ID: <20090718174628.3279D10F89A@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:35 +0000 Subject: [pkgdb] sugar-base: bochecha has requested commit Message-ID: <20090718174635.309AE10F8BC@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:31 +0000 Subject: [pkgdb] sugar-base: bochecha has requested watchcommits Message-ID: <20090718174631.BC4C410F888@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-base (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sat Jul 18 17:46:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:46:58 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchbugzilla Message-ID: <20090718174658.2DB0910F8A8@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:00 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchcommits Message-ID: <20090718174700.B34F210F8C1@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:05 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested commit Message-ID: <20090718174705.639EA10F8AF@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-artwork (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:14 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchbugzilla Message-ID: <20090718174714.084C510F8B4@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:16 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchcommits Message-ID: <20090718174716.4757310F8CA@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:18 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested commit Message-ID: <20090718174718.355FE10F8CC@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-artwork (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:24 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchbugzilla Message-ID: <20090718174724.18EA410F8D2@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:25 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested watchcommits Message-ID: <20090718174726.079B910F89A@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sat Jul 18 17:47:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 18 Jul 2009 17:47:28 +0000 Subject: [pkgdb] sugar-artwork: bochecha has requested commit Message-ID: <20090718174728.350D010F8DB@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on sugar-artwork (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From athimm at fedoraproject.org Sat Jul 18 18:04:12 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:04:12 +0000 (UTC) Subject: rpms/fedora-package-config-apt/devel fedora-devel.list, 1.1, 1.2 fedora-package-config-apt.spec, 1.11, 1.12 fedora-updates.list, 1.3, 1.4 fedora.list, 1.2, 1.3 Message-ID: <20090718180412.46A7011C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-apt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30067/devel Modified Files: fedora-devel.list fedora-package-config-apt.spec fedora-updates.list fedora.list Log Message: Use MM URLs. Index: fedora-devel.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/devel/fedora-devel.list,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fedora-devel.list 16 Nov 2007 06:34:38 -0000 1.1 +++ fedora-devel.list 18 Jul 2009 18:04:11 -0000 1.2 @@ -1,8 +1,8 @@ # Fedora development -repomd http://download.fedora.redhat.com/pub/ fedora/linux/development/$(ARCH)/os/ +repomd http://download.fedoraproject.org/pub/ fedora/linux/development/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux//Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux//Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/development/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/development/source/SRPMS/ Index: fedora-package-config-apt.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/devel/fedora-package-config-apt.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fedora-package-config-apt.spec 14 Apr 2009 07:41:49 -0000 1.11 +++ fedora-package-config-apt.spec 18 Jul 2009 18:04:11 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Fedora configuration files for the apt-rpm package manager Name: fedora-package-config-apt -Version: 10.92 -Release: 3 +Version: 11.89 +Release: 4 # Nothing in here has copyright, much less license attribution, however, # since this is "upstream", we'll take this statement as the author's intent, # and use GPL+ here (since no version is specified). @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Axel Thimm - 11.89-4 +- Use MM URLs. + * Tue Apr 14 2009 Axel Thimm - 10.92-3 - Fix URL and Description (RH bug #484096). Index: fedora-updates.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/devel/fedora-updates.list,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fedora-updates.list 16 Nov 2007 06:34:38 -0000 1.3 +++ fedora-updates.list 18 Jul 2009 18:04:12 -0000 1.4 @@ -1,8 +1,8 @@ # Fedora -#repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ +#repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ # Debug packages -#repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ +#repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ Index: fedora.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/devel/fedora.list,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedora.list 16 Nov 2007 06:34:38 -0000 1.2 +++ fedora.list 18 Jul 2009 18:04:12 -0000 1.3 @@ -1,8 +1,8 @@ # Fedora -#repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ +#repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ From athimm at fedoraproject.org Sat Jul 18 18:04:41 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:04:41 +0000 (UTC) Subject: rpms/fedora-package-config-apt/F-10 fedora-devel.list, 1.2, 1.3 fedora-package-config-apt.spec, 1.10, 1.11 fedora-updates.list, 1.4, 1.5 fedora.list, 1.3, 1.4 Message-ID: <20090718180441.802EB11C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-apt/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30067/F-10 Modified Files: fedora-devel.list fedora-package-config-apt.spec fedora-updates.list fedora.list Log Message: Use MM URLs. Index: fedora-devel.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-10/fedora-devel.list,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedora-devel.list 24 Nov 2008 17:28:36 -0000 1.2 +++ fedora-devel.list 18 Jul 2009 18:04:11 -0000 1.3 @@ -1,8 +1,8 @@ # Fedora development -# repomd http://download.fedora.redhat.com/pub/ fedora/linux/development/$(ARCH)/os/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux/development/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux//Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux//Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/development/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/development/source/SRPMS/ Index: fedora-package-config-apt.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-10/fedora-package-config-apt.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fedora-package-config-apt.spec 24 Nov 2008 17:28:36 -0000 1.10 +++ fedora-package-config-apt.spec 18 Jul 2009 18:04:11 -0000 1.11 @@ -1,13 +1,13 @@ Summary: Fedora configuration files for the apt-rpm package manager Name: fedora-package-config-apt Version: 10 -Release: 3 +Release: 4 # Nothing in here has copyright, much less license attribution, however, # since this is "upstream", we'll take this statement as the author's intent, # and use GPL+ here (since no version is specified). License: GPL+ Group: System Environment/Base -URL: http://fedora.redhat.com/ +URL: http://fedoraproject.org/ # 100-149 for sources.list.d Source100: fedora.list @@ -30,8 +30,8 @@ Requires: apt >= 0.5.15lorg3 Provides: apt-config %description -This package contains apt-rpm configuration files for Fedora (Core, -Updates and Extras). +This package contains apt-rpm configuration files for Fedora (Release and +Updates). %install rm -rf %{buildroot} @@ -42,7 +42,7 @@ mkdir -p %{buildroot}%{_sysconfdir}/apt/ # install config parts install -pm 644 %{SOURCE150} %{buildroot}%{_sysconfdir}/apt/apt.conf.d/ -# Fedora Extras fingerprint +# Fedora fingerprint install -pm 644 %{SOURCE250} \ %{buildroot}%{_sysconfdir}/apt/vendors.list.d/fedora.list @@ -65,6 +65,12 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Axel Thimm - 10-4 +- Use MM URLs. + +* Tue Apr 14 2009 Axel Thimm +- Fix URL and Description (RH bug #484096). + * Mon Nov 24 2008 Axel Thimm - 10-3 - Update to F10. Index: fedora-updates.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-10/fedora-updates.list,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-updates.list 24 Nov 2008 17:28:36 -0000 1.4 +++ fedora-updates.list 18 Jul 2009 18:04:11 -0000 1.5 @@ -1,8 +1,8 @@ # Fedora -repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ +repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ # Debug packages -#repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ +#repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ Index: fedora.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-10/fedora.list,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fedora.list 24 Nov 2008 17:28:36 -0000 1.3 +++ fedora.list 18 Jul 2009 18:04:11 -0000 1.4 @@ -1,8 +1,8 @@ # Fedora -repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ +repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ From athimm at fedoraproject.org Sat Jul 18 18:04:41 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:04:41 +0000 (UTC) Subject: rpms/fedora-package-config-apt/F-11 fedora-devel.list, 1.2, 1.3 fedora-package-config-apt.spec, 1.12, 1.13 fedora-updates.list, 1.4, 1.5 fedora.list, 1.3, 1.4 Message-ID: <20090718180441.EC60511C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-apt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30067/F-11 Modified Files: fedora-devel.list fedora-package-config-apt.spec fedora-updates.list fedora.list Log Message: Use MM URLs. Index: fedora-devel.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-11/fedora-devel.list,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedora-devel.list 5 May 2009 19:37:00 -0000 1.2 +++ fedora-devel.list 18 Jul 2009 18:04:11 -0000 1.3 @@ -1,8 +1,8 @@ # Fedora development -# repomd http://download.fedora.redhat.com/pub/ fedora/linux/development/$(ARCH)/os/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux/development/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux//Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux//Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/development/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/development/source/SRPMS/ Index: fedora-package-config-apt.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-11/fedora-package-config-apt.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fedora-package-config-apt.spec 5 May 2009 19:37:00 -0000 1.12 +++ fedora-package-config-apt.spec 18 Jul 2009 18:04:11 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Fedora configuration files for the apt-rpm package manager Name: fedora-package-config-apt Version: 11 -Release: 4 +Release: 5 # Nothing in here has copyright, much less license attribution, however, # since this is "upstream", we'll take this statement as the author's intent, # and use GPL+ here (since no version is specified). @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Axel Thimm - 11-5 +- Use MM URLs. + * Tue May 5 2009 Axel Thimm - 11-4 - Update to F11. Index: fedora-updates.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-11/fedora-updates.list,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-updates.list 5 May 2009 19:37:00 -0000 1.4 +++ fedora-updates.list 18 Jul 2009 18:04:11 -0000 1.5 @@ -1,8 +1,8 @@ # Fedora -repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ +repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/ # Debug packages -#repomd http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ +#repomd http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/updates/$(VERSION)/SRPMS/ Index: fedora.list =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-apt/F-11/fedora.list,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fedora.list 5 May 2009 19:37:00 -0000 1.3 +++ fedora.list 18 Jul 2009 18:04:11 -0000 1.4 @@ -1,8 +1,8 @@ # Fedora -repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ +repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/os/ # Debug packages -# repomd http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ +# repomd http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/$(ARCH)/debug/ # sources -#repomd-src http://download.fedora.redhat.com/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ +#repomd-src http://download.fedoraproject.org/pub/ fedora/linux/releases/$(VERSION)/Everything/source/SRPMS/ From pfrields at fedoraproject.org Sat Jul 18 18:13:35 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 18:13:35 +0000 (UTC) Subject: rpms/nautilus-search-tool/devel nautilus-search-tool.spec, 1.15, 1.16 nautilus-search-tool-0.2-extdir.patch, 1.1, NONE nautilus-search-tool-0.2-headers.patch, 1.1, NONE Message-ID: <20090718181335.F0B1611C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2301 Modified Files: nautilus-search-tool.spec Removed Files: nautilus-search-tool-0.2-extdir.patch nautilus-search-tool-0.2-headers.patch Log Message: Remove obsolete patches Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/devel/nautilus-search-tool.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- nautilus-search-tool.spec 18 Jul 2009 17:17:58 -0000 1.15 +++ nautilus-search-tool.spec 18 Jul 2009 18:13:05 -0000 1.16 @@ -1,6 +1,6 @@ Name: nautilus-search-tool Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells @@ -15,6 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: gnome-desktop-devel >= 2.10.0 eel2-devel >= 2.10.0 BuildRequires: libtool gettext intltool BuildRequires: nautilus-devel +BuildRequires: /usr/bin/gnome-search-tool %description @@ -47,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-2 +- Fix missing BuildRequires + * Sat Jul 18 2009 Paul W. Frields - 0.3.0-1 - Update to upstream 0.3.0 - Fixes bug #477810 --- nautilus-search-tool-0.2-extdir.patch DELETED --- --- nautilus-search-tool-0.2-headers.patch DELETED --- From pfrields at fedoraproject.org Sat Jul 18 18:17:35 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 18:17:35 +0000 (UTC) Subject: rpms/nautilus-search-tool/F-11 nautilus-search-tool.spec,1.15,1.16 Message-ID: <20090718181735.D01EC11C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4103 Modified Files: nautilus-search-tool.spec Log Message: Fix BuildRequires and bump spec Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-11/nautilus-search-tool.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- nautilus-search-tool.spec 18 Jul 2009 17:19:35 -0000 1.15 +++ nautilus-search-tool.spec 18 Jul 2009 18:17:05 -0000 1.16 @@ -1,6 +1,6 @@ Name: nautilus-search-tool Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells @@ -15,6 +15,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildRequires: gnome-desktop-devel >= 2.10.0 eel2-devel >= 2.10.0 BuildRequires: libtool gettext intltool BuildRequires: nautilus-devel +BuildRequires: /usr/bin/gnome-search-tool %description @@ -47,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-2 +- Fix missing BuildRequires + * Sat Jul 18 2009 Paul W. Frields - 0.3.0-1 - Update to upstream 0.3.0 - Fixes bug #477810 From athimm at fedoraproject.org Sat Jul 18 18:17:37 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:17:37 +0000 (UTC) Subject: rpms/fedora-package-config-smart/F-10 .cvsignore, 1.8, 1.9 fedora-package-config-smart.spec, 1.12, 1.13 sources, 1.9, 1.10 Message-ID: <20090718181737.66A4711C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4065/F-10 Modified Files: .cvsignore fedora-package-config-smart.spec sources Log Message: Use MM URLs. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Mar 2008 13:57:14 -0000 1.8 +++ .cvsignore 18 Jul 2009 18:17:07 -0000 1.9 @@ -1 +1 @@ -fedora-package-config-smart-1.0.0.tar.bz2 +fedora-package-config-smart-1.0.1.tar.bz2 Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-10/fedora-package-config-smart.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fedora-package-config-smart.spec 24 Nov 2008 17:21:55 -0000 1.12 +++ fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.13 @@ -5,11 +5,11 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 10 -Release: 15 +Release: 16 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ -Source0: %{name}-1.0.0.tar.bz2 +Source0: %{name}-1.0.1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: perl Requires: smart @@ -24,7 +24,7 @@ manager. # place the proper arch in the folders for filein in *.channel.in; do file=`echo $filein | sed -e's,\.in$,,'` - sed -e's, at ARCH@,%{_target_cpu},g' -e's, at DISTVERSION@,%{version},' < $filein > $file + sed -e's, at ARCH@,%{_arch},g' -e's, at DISTVERSION@,%{version},' < $filein > $file done %if %{rawhide} @@ -51,9 +51,15 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog +* Sat Jul 18 2009 Axel Thimm - 10-16 +- Use MM URLs. + * Mon Nov 24 2008 Axel Thimm - 10-15 - Switch to stable release. +* Tue Apr 14 2009 Axel Thimm +- Use %%_arch instead of %%_target_cpu. + * Sat Mar 22 2008 Axel Thimm - 8.92-11 - Create common source tarball. Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-10/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Mar 2008 13:57:14 -0000 1.9 +++ sources 18 Jul 2009 18:17:07 -0000 1.10 @@ -1 +1 @@ -42946e089cfef073689cb059709c33c0 fedora-package-config-smart-1.0.0.tar.bz2 +7bb18ea7454b8bff8bb6bba061159850 fedora-package-config-smart-1.0.1.tar.bz2 From athimm at fedoraproject.org Sat Jul 18 18:17:37 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:17:37 +0000 (UTC) Subject: rpms/fedora-package-config-smart/F-11 .cvsignore, 1.8, 1.9 fedora-package-config-smart.spec, 1.14, 1.15 sources, 1.9, 1.10 Message-ID: <20090718181737.9E4C611C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4065/F-11 Modified Files: .cvsignore fedora-package-config-smart.spec sources Log Message: Use MM URLs. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Mar 2008 13:57:14 -0000 1.8 +++ .cvsignore 18 Jul 2009 18:17:07 -0000 1.9 @@ -1 +1 @@ -fedora-package-config-smart-1.0.0.tar.bz2 +fedora-package-config-smart-1.0.1.tar.bz2 Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-11/fedora-package-config-smart.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fedora-package-config-smart.spec 5 May 2009 19:37:00 -0000 1.14 +++ fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.15 @@ -5,11 +5,11 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 11 -Release: 17 +Release: 18 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ -Source0: %{name}-1.0.0.tar.bz2 +Source0: %{name}-1.0.1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: perl Requires: smart @@ -51,6 +51,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog +* Sat Jul 18 2009 Axel Thimm - 11-18 +- Use MM URLs. + * Tue May 5 2009 Axel Thimm - 11-17 - Switch to stable release. Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-11/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Mar 2008 13:57:14 -0000 1.9 +++ sources 18 Jul 2009 18:17:07 -0000 1.10 @@ -1 +1 @@ -42946e089cfef073689cb059709c33c0 fedora-package-config-smart-1.0.0.tar.bz2 +7bb18ea7454b8bff8bb6bba061159850 fedora-package-config-smart-1.0.1.tar.bz2 From athimm at fedoraproject.org Sat Jul 18 18:17:37 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:17:37 +0000 (UTC) Subject: rpms/fedora-package-config-smart/devel .cvsignore, 1.8, 1.9 fedora-package-config-smart.spec, 1.13, 1.14 sources, 1.9, 1.10 Message-ID: <20090718181737.D8B0211C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4065/devel Modified Files: .cvsignore fedora-package-config-smart.spec sources Log Message: Use MM URLs. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Mar 2008 13:57:14 -0000 1.8 +++ .cvsignore 18 Jul 2009 18:17:07 -0000 1.9 @@ -1 +1 @@ -fedora-package-config-smart-1.0.0.tar.bz2 +fedora-package-config-smart-1.0.1.tar.bz2 Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/devel/fedora-package-config-smart.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fedora-package-config-smart.spec 14 Apr 2009 08:45:02 -0000 1.13 +++ fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.14 @@ -4,12 +4,12 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart -Version: 10.92 -Release: 16 +Version: 11.89 +Release: 17 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ -Source0: %{name}-1.0.0.tar.bz2 +Source0: %{name}-1.0.1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot BuildRequires: perl Requires: smart @@ -51,12 +51,12 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog +* Sat Jul 18 2009 Axel Thimm - 11.89-17 +- Use MM URLs. + * Tue Apr 14 2009 Axel Thimm - 10.92-16 - Use %%_arch instead of %%_target_cpu. -* Tue Feb 24 2009 Fedora Release Engineering - 9.89-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - * Sat Mar 22 2008 Axel Thimm - 8.92-11 - Create common source tarball. Index: sources =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 22 Mar 2008 13:57:14 -0000 1.9 +++ sources 18 Jul 2009 18:17:07 -0000 1.10 @@ -1 +1 @@ -42946e089cfef073689cb059709c33c0 fedora-package-config-smart-1.0.0.tar.bz2 +7bb18ea7454b8bff8bb6bba061159850 fedora-package-config-smart-1.0.1.tar.bz2 From athimm at fedoraproject.org Sat Jul 18 18:19:16 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 18:19:16 +0000 (UTC) Subject: rpms/fedora-package-config-smart/F-10 fedora-package-config-smart.spec, 1.13, 1.14 Message-ID: <20090718181916.2C93E11C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4793/F-10 Modified Files: fedora-package-config-smart.spec Log Message: Use MM URLs. Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-10/fedora-package-config-smart.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.13 +++ fedora-package-config-smart.spec 18 Jul 2009 18:18:45 -0000 1.14 @@ -54,12 +54,12 @@ rm -rf %{buildroot} * Sat Jul 18 2009 Axel Thimm - 10-16 - Use MM URLs. -* Mon Nov 24 2008 Axel Thimm - 10-15 -- Switch to stable release. - * Tue Apr 14 2009 Axel Thimm - Use %%_arch instead of %%_target_cpu. +* Mon Nov 24 2008 Axel Thimm - 10-15 +- Switch to stable release. + * Sat Mar 22 2008 Axel Thimm - 8.92-11 - Create common source tarball. From rdieter at fedoraproject.org Sat Jul 18 18:52:45 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 18:52:45 +0000 (UTC) Subject: rpms/jasper/devel jasper-1.701.0-GL-ac.patch, 1.1, 1.2 jasper-1.701.0-GL.patch, 1.4, 1.5 Message-ID: <20090718185245.7AAAF11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/jasper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16240 Modified Files: jasper-1.701.0-GL-ac.patch jasper-1.701.0-GL.patch Log Message: include -lGLU too jasper-1.701.0-GL-ac.patch: configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: jasper-1.701.0-GL-ac.patch =================================================================== RCS file: /cvs/pkgs/rpms/jasper/devel/jasper-1.701.0-GL-ac.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jasper-1.701.0-GL-ac.patch 1 Mar 2006 18:16:10 -0000 1.1 +++ jasper-1.701.0-GL-ac.patch 18 Jul 2009 18:52:45 -0000 1.2 @@ -5,7 +5,7 @@ if test $ENABLE_OPENGL = yes; then if test $HAVE_OPENGL = no; then - TMPLIBS="-lglut -lGL -lGLU $X_PRE_LIBS -lX11 -lXmu -lXi -lXext -lXt $X_EXTRA_LIBS $X_LIBS" -+ TMPLIBS="-lglut" ++ TMPLIBS="-lglut -lGLU" AC_CHECK_LIB(glut, glutInit, [HAVE_OPENGL=yes; OPENGL_LIBS=$TMPLIBS], HAVE_OPENGL=no, $TMPLIBS) fi jasper-1.701.0-GL.patch: configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: jasper-1.701.0-GL.patch =================================================================== RCS file: /cvs/pkgs/rpms/jasper/devel/jasper-1.701.0-GL.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jasper-1.701.0-GL.patch 1 Mar 2006 18:12:26 -0000 1.4 +++ jasper-1.701.0-GL.patch 18 Jul 2009 18:52:45 -0000 1.5 @@ -5,7 +5,7 @@ if test $ENABLE_OPENGL = yes; then if test $HAVE_OPENGL = no; then - TMPLIBS="-lglut -lGL -lGLU $X_PRE_LIBS -lX11 -lXmu -lXi -lXext -lXt $X_EXTRA_LIBS $X_LIBS" -+ TMPLIBS="-lglut" ++ TMPLIBS="-lglut -lGLU" echo "$as_me:$LINENO: checking for glutInit in -lglut" >&5 echo $ECHO_N "checking for glutInit in -lglut... $ECHO_C" >&6 if test "${ac_cv_lib_glut_glutInit+set}" = set; then From rdieter at fedoraproject.org Sat Jul 18 18:53:50 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 18:53:50 +0000 (UTC) Subject: rpms/jasper/devel jasper.spec,1.32,1.33 Message-ID: <20090718185350.E435011C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/jasper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16439 Modified Files: jasper.spec Log Message: * Sat Jul 18 2009 Rex Dieter - 1.900.1-11 - FTBFS jasper-1.900.1-10.fc11 (#511743) Index: jasper.spec =================================================================== RCS file: /cvs/pkgs/rpms/jasper/devel/jasper.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- jasper.spec 25 Feb 2009 08:57:53 -0000 1.32 +++ jasper.spec 18 Jul 2009 18:53:20 -0000 1.33 @@ -7,7 +7,7 @@ Summary: Implementation of the JPEG-2000 Name: jasper Group: System Environment/Libraries Version: 1.900.1 -Release: 10%{?dist} +Release: 11%{?dist} License: JasPer URL: http://www.ece.uvic.ca/~mdadams/jasper/ @@ -26,8 +26,8 @@ Patch4: jpc_dec.c.patch BuildRequires: automake BuildRequires: libjpeg-devel -# "freeglut-devel: Requires: libGL-devel libGLU-devel" (#179464) -BuildRequires: freeglut-devel libGL-devel libGLU-devel +BuildRequires: freeglut-devel +BuildRequires: libGLU-devel Requires: %{name}-libs = %{version}-%{release} @@ -48,6 +48,7 @@ Requires: libjpeg-devel %package libs Summary: Runtime libraries for %{name} Group: System Environment/Libraries +Conflicts: jasper < 1.900.1-4 %description libs %{summary}. @@ -127,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Rex Dieter - 1.900.1-11 +- FTBFS jasper-1.900.1-10.fc11 (#511743) + * Wed Feb 25 2009 Fedora Release Engineering - 1.900.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pfrields at fedoraproject.org Sat Jul 18 19:07:27 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sat, 18 Jul 2009 19:07:27 +0000 (UTC) Subject: rpms/nautilus-search-tool/F-10 nautilus-search-tool-0.3.0-headers-typos.patch, NONE, 1.1 nautilus-search-tool-0.3.0-noninit.patch, NONE, 1.1 nautilus-search-tool-no-eels.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 nautilus-search-tool.spec, 1.10, 1.11 sources, 1.4, 1.5 nautilus-search-tool-0.2-extdir.patch, 1.1, NONE nautilus-search-tool-0.2-headers.patch, 1.1, NONE Message-ID: <20090718190727.44BF711C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/nautilus-search-tool/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19898 Modified Files: .cvsignore nautilus-search-tool.spec sources Added Files: nautilus-search-tool-0.3.0-headers-typos.patch nautilus-search-tool-0.3.0-noninit.patch nautilus-search-tool-no-eels.patch Removed Files: nautilus-search-tool-0.2-extdir.patch nautilus-search-tool-0.2-headers.patch Log Message: Update to upstream 0.3.0, remove obsolete patches nautilus-search-tool-0.3.0-headers-typos.patch: nautilus-search-tool.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- NEW FILE nautilus-search-tool-0.3.0-headers-typos.patch --- diff -uNr nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c nautilus-search-tool-0.3.0/src/nautilus-search-tool.c --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-04-12 05:40:59.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-04-27 09:21:20.000000000 -0400 @@ -25,6 +25,9 @@ #include /* for GETTEXT_PACKAGE */ #endif +#include +#include + #include "nautilus-search-tool.h" #include @@ -82,9 +85,9 @@ gchar *version; gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); - guint array_lenght = g_strv_length (array_version); + guint array_length = g_strv_length (array_version); - for (i = 0; i < array_lenght; i++) + for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) { nautilus-search-tool-0.3.0-noninit.patch: nautilus-search-tool.c | 1 + 1 file changed, 1 insertion(+) --- NEW FILE nautilus-search-tool-0.3.0-noninit.patch --- --- nautilus-search-tool-0.3.0-orig/src/nautilus-search-tool.c 2009-07-18 12:41:19.000000000 -0400 +++ nautilus-search-tool-0.3.0/src/nautilus-search-tool.c 2009-07-18 12:57:53.000000000 -0400 @@ -87,6 +87,7 @@ gchar **array_version = g_strsplit (GNOME_SEARCH_TOOL_VERSION, " ", -1); guint array_length = g_strv_length (array_version); + version = (gchar *) g_malloc (array_length * sizeof (gchar)); for (i = 0; i < array_length; i++) { if (isdigit (array_version[i][0])) nautilus-search-tool-no-eels.patch: configure.ac | 2 -- 1 file changed, 2 deletions(-) --- NEW FILE nautilus-search-tool-no-eels.patch --- diff -up nautilus-search-tool-0.2.2/configure.ac.no-eels nautilus-search-tool-0.2.2/configure.ac --- nautilus-search-tool-0.2.2/configure.ac.no-eels 2008-12-19 20:11:29.000000000 -0500 +++ nautilus-search-tool-0.2.2/configure.ac 2008-12-19 20:11:38.000000000 -0500 @@ -6,7 +6,6 @@ AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE NAUTILUS_REQUIRED=2.10.0 -EEL_REQUIRED=2.10.0 GNOME_DESKTOP_REQUIRED=2.10.0 GLIB_REQUIRED=2.6.0 GNOME_VFS_REQUIRED=2.10.0 @@ -21,7 +20,6 @@ AC_PROG_INTLTOOL([0.22]) PKG_CHECK_MODULES(NAUTILUS, libnautilus-extension >= $NAUTILUS_REQUIRED) PKG_CHECK_MODULES(GLIB, glib-2.0) PKG_CHECK_MODULES(GCONF, gconf-2.0) -PKG_CHECK_MODULES(EEL, eel-2.0 >= $EEL_REQUIRED) PKG_CHECK_MODULES(GNOMEDESKTOP, gnome-desktop-2.0 >= $GNOME_DESKTOP_REQUIRED) PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0 >= $GNOME_VFS_REQUIRED) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Aug 2007 14:46:36 -0000 1.4 +++ .cvsignore 18 Jul 2009 19:06:56 -0000 1.5 @@ -1 +1 @@ -nautilus-search-tool-0.2.2.tar.gz +nautilus-search-tool-0.3.0.tar.gz Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-10/nautilus-search-tool.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- nautilus-search-tool.spec 22 Nov 2008 19:52:45 -0000 1.10 +++ nautilus-search-tool.spec 18 Jul 2009 19:06:56 -0000 1.11 @@ -1,19 +1,21 @@ Name: nautilus-search-tool -Version: 0.2.2 -Release: 5%{?dist} +Version: 0.3.0 +Release: 2%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells License: GPLv2+ URL: http://saettaz.altervista.org/software/nautilus_search_tool.html Source0: http://dl.sourceforge.net/nautsearchtool/%{name}-%{version}.tar.gz -Patch0: nautilus-search-tool-0.2-headers.patch -Patch1: nautilus-search-tool-0.2-extdir.patch +Patch0: nautilus-search-tool-0.3.0-headers-typos.patch +Patch1: nautilus-search-tool-no-eels.patch +Patch2: nautilus-search-tool-0.3.0-noninit.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gnome-desktop-devel >= 2.10.0 eel2-devel >= 2.10.0 BuildRequires: libtool gettext intltool BuildRequires: nautilus-devel +BuildRequires: /usr/bin/gnome-search-tool %description @@ -22,8 +24,10 @@ search for files. %prep %setup -q -%patch0 -p1 -b .headers -%patch1 -p1 -b .extdir +%patch0 -p1 -b .headers-typos +%patch1 -p1 -b .no-eels +%patch2 -p1 -b .noninit +autoconf %build %configure --disable-static @@ -44,6 +48,25 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-2 +- Fix missing BuildRequires + +* Sat Jul 18 2009 Paul W. Frields - 0.3.0-1 +- Update to upstream 0.3.0 +- Fixes bug #477810 + +* Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Dec 19 2008 Matthias Clasen - 0.2.2-8 +- Try harder not to link against eel + +* Tue Dec 16 2008 Matthias Clasen - 0.2.2-7 +- Rebuild to drop eel dependency + +* Fri Nov 28 2008 Caol??n McNamara - 0.2.2-6 +- rebuild for dependancies + * Sat Nov 22 2008 Paul W. Frields - 0.2.2-5 - Fix summary Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Aug 2007 14:46:36 -0000 1.4 +++ sources 18 Jul 2009 19:06:56 -0000 1.5 @@ -1 +1 @@ -9271d80e9ab54f3838f5050d0ec70f0f nautilus-search-tool-0.2.2.tar.gz +31be9dc5a324782d7ca0df9843c32fa9 nautilus-search-tool-0.3.0.tar.gz --- nautilus-search-tool-0.2-extdir.patch DELETED --- --- nautilus-search-tool-0.2-headers.patch DELETED --- From athimm at fedoraproject.org Sat Jul 18 19:44:49 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 19:44:49 +0000 (UTC) Subject: rpms/fedora-package-config-smart/F-10 fedora-package-config-smart.spec, 1.14, 1.15 Message-ID: <20090718194449.A475511C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1172/F-10 Modified Files: fedora-package-config-smart.spec Log Message: Fix one off version. Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-10/fedora-package-config-smart.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fedora-package-config-smart.spec 18 Jul 2009 18:18:45 -0000 1.14 +++ fedora-package-config-smart.spec 18 Jul 2009 19:44:19 -0000 1.15 @@ -5,7 +5,7 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 10 -Release: 16 +Release: 17 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ @@ -20,7 +20,7 @@ This package contains Fedora configurati manager. %prep -%setup -q -n %{name}-1.0.0 +%setup -q -n %{name}-1.0.1 # place the proper arch in the folders for filein in *.channel.in; do file=`echo $filein | sed -e's,\.in$,,'` @@ -51,7 +51,7 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog -* Sat Jul 18 2009 Axel Thimm - 10-16 +* Sat Jul 18 2009 Axel Thimm - 10-17 - Use MM URLs. * Tue Apr 14 2009 Axel Thimm From athimm at fedoraproject.org Sat Jul 18 19:44:49 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 19:44:49 +0000 (UTC) Subject: rpms/fedora-package-config-smart/F-11 fedora-package-config-smart.spec, 1.15, 1.16 Message-ID: <20090718194449.CE9BC11C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1172/F-11 Modified Files: fedora-package-config-smart.spec Log Message: Fix one off version. Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/F-11/fedora-package-config-smart.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.15 +++ fedora-package-config-smart.spec 18 Jul 2009 19:44:19 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 11 -Release: 18 +Release: 19 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ @@ -20,7 +20,7 @@ This package contains Fedora configurati manager. %prep -%setup -q -n %{name}-1.0.0 +%setup -q -n %{name}-1.0.1 # place the proper arch in the folders for filein in *.channel.in; do file=`echo $filein | sed -e's,\.in$,,'` @@ -51,7 +51,7 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog -* Sat Jul 18 2009 Axel Thimm - 11-18 +* Sat Jul 18 2009 Axel Thimm - 11-19 - Use MM URLs. * Tue May 5 2009 Axel Thimm - 11-17 From athimm at fedoraproject.org Sat Jul 18 19:44:50 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 18 Jul 2009 19:44:50 +0000 (UTC) Subject: rpms/fedora-package-config-smart/devel fedora-package-config-smart.spec, 1.14, 1.15 Message-ID: <20090718194450.02D7D11C0099@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/fedora-package-config-smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1172/devel Modified Files: fedora-package-config-smart.spec Log Message: Fix one off version. Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/extras/rpms/fedora-package-config-smart/devel/fedora-package-config-smart.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fedora-package-config-smart.spec 18 Jul 2009 18:17:07 -0000 1.14 +++ fedora-package-config-smart.spec 18 Jul 2009 19:44:19 -0000 1.15 @@ -5,7 +5,7 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 11.89 -Release: 17 +Release: 18 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ @@ -20,7 +20,7 @@ This package contains Fedora configurati manager. %prep -%setup -q -n %{name}-1.0.0 +%setup -q -n %{name}-1.0.1 # place the proper arch in the folders for filein in *.channel.in; do file=`echo $filein | sed -e's,\.in$,,'` @@ -51,7 +51,7 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog -* Sat Jul 18 2009 Axel Thimm - 11.89-17 +* Sat Jul 18 2009 Axel Thimm - 11.89-18 - Use MM URLs. * Tue Apr 14 2009 Axel Thimm - 10.92-16 From kkofler at fedoraproject.org Sat Jul 18 20:11:57 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sat, 18 Jul 2009 20:11:57 +0000 (UTC) Subject: rpms/xchat/devel xchat-2.8.6-connect-mnemonic.patch, 1.1, 1.2 xchat.spec, 1.103, 1.104 Message-ID: <20090718201157.71D5511C0099@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/xchat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9152/devel Modified Files: xchat-2.8.6-connect-mnemonic.patch xchat.spec Log Message: * Sat Jul 18 2009 Kevin Kofler - 1:2.8.6-10 - Fixed patch for the "C_onnect" issue (#512034, Edward Sheldrake) xchat-2.8.6-connect-mnemonic.patch: gtkutil.c | 1 + 1 file changed, 1 insertion(+) Index: xchat-2.8.6-connect-mnemonic.patch =================================================================== RCS file: /cvs/pkgs/rpms/xchat/devel/xchat-2.8.6-connect-mnemonic.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xchat-2.8.6-connect-mnemonic.patch 16 Jul 2009 22:21:05 -0000 1.1 +++ xchat-2.8.6-connect-mnemonic.patch 18 Jul 2009 20:11:57 -0000 1.2 @@ -1,11 +1,11 @@ -diff -up xchat-2.8.6/src/fe-gtk/gtkutil.c.mnemonic xchat-2.8.6/src/fe-gtk/gtkutil.c ---- xchat-2.8.6/src/fe-gtk/gtkutil.c.mnemonic 2009-07-15 20:41:23.080340947 -0400 -+++ xchat-2.8.6/src/fe-gtk/gtkutil.c 2009-07-15 20:41:48.181069489 -0400 +diff -urp xchat-2.8.6.orig/src/fe-gtk/gtkutil.c xchat-2.8.6/src/fe-gtk/gtkutil.c +--- xchat-2.8.6.orig/src/fe-gtk/gtkutil.c 2009-07-18 11:25:02.000000000 +0100 ++++ xchat-2.8.6/src/fe-gtk/gtkutil.c 2009-07-18 11:27:01.000000000 +0100 @@ -376,6 +376,7 @@ gtkutil_button (GtkWidget *box, char *st { gtk_button_set_label (GTK_BUTTON (wid), labeltext); gtk_button_set_image (GTK_BUTTON (wid), gtk_image_new_from_stock (stock, GTK_ICON_SIZE_MENU)); -+ gtk_label_set_use_underline (GTK_BUTTON (wid), TRUE); ++ gtk_button_set_use_underline (GTK_BUTTON (wid), TRUE); if (box) gtk_container_add (GTK_CONTAINER (box), wid); } Index: xchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchat/devel/xchat.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- xchat.spec 16 Jul 2009 22:21:06 -0000 1.103 +++ xchat.spec 18 Jul 2009 20:11:57 -0000 1.104 @@ -4,7 +4,7 @@ Summary: A popular and easy to use graphical IRC (chat) client Name: xchat Version: 2.8.6 -Release: 9%{?dist} +Release: 10%{?dist} Epoch: 1 Group: Applications/Internet License: GPLv2+ @@ -27,7 +27,7 @@ Patch40: xchat-2.8.4-shm-pixmaps.patch # Both the "IRC" and "UTF-8" settings will try to accept both Latin1 and UTF-8 # when it comes in, however "IRC" sends Latin1, "UTF-8" sends UTF-8. Patch41: xchat-2.8.6-default-utf8.patch -# fix literal underscore in "C_onnect" button (#512034, Matthias Clasen) +# fix literal underscore in "C_onnect" button (#512034, Edward Sheldrake) Patch42: xchat-2.8.6-connect-mnemonic.patch BuildRequires: perl perl(ExtUtils::Embed) python-devel openssl-devel pkgconfig, tcl-devel @@ -167,6 +167,9 @@ fi %{_libdir}/xchat/plugins/tcl.so %changelog +* Sat Jul 18 2009 Kevin Kofler - 1:2.8.6-10 +- Fixed patch for the "C_onnect" issue (#512034, Edward Sheldrake) + * Thu Jul 16 2009 Kevin Kofler - 1:2.8.6-9 - Fix literal underscore in "C_onnect" button (#512034, Matthias Clasen) From rdieter at fedoraproject.org Sat Jul 18 20:20:05 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 20:20:05 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.219,1.220 Message-ID: <20090718202005.7952311C00E5@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11191 Modified Files: kdebindings.spec Log Message: temporarily disable php until build failures investigated, explained, fixed. Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.219 retrieving revision 1.220 diff -u -p -r1.219 -r1.220 --- kdebindings.spec 16 Jul 2009 20:33:18 -0000 1.219 +++ kdebindings.spec 18 Jul 2009 20:20:05 -0000 1.220 @@ -9,7 +9,10 @@ %endif %endif %define falcon 1 +# FIXME: temporarily disable on rawhide, until build failures fixed +%if 0%{?fedora} < 12 %define php 1 +%endif %define ruby 1 %define smoke 1 %define java 0 From rdieter at fedoraproject.org Sat Jul 18 20:40:44 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 20:40:44 +0000 (UTC) Subject: rpms/wxMaxima/devel wxMaxima-0.8.2-ltr_layout.patch, NONE, 1.1 wxMaxima.spec, 1.28, 1.29 Message-ID: <20090718204044.4221411C025D@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/wxMaxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18278 Modified Files: wxMaxima.spec Added Files: wxMaxima-0.8.2-ltr_layout.patch Log Message: * Sat Jul 18 2009 Rex Dieter - 0.8.2-2 - output window of wxMaxima is not visible in RtL locales (#455863) wxMaxima-0.8.2-ltr_layout.patch: MathCtrl.cpp | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE wxMaxima-0.8.2-ltr_layout.patch --- diff -up wxMaxima-0.8.2/src/MathCtrl.cpp.ltr_layout wxMaxima-0.8.2/src/MathCtrl.cpp --- wxMaxima-0.8.2/src/MathCtrl.cpp.ltr_layout 2009-04-15 07:56:26.000000000 -0500 +++ wxMaxima-0.8.2/src/MathCtrl.cpp 2009-07-18 15:35:58.013133569 -0500 @@ -83,6 +83,8 @@ MathCtrl::MathCtrl(wxWindow* parent, int m_saved = true; m_evaluationQueue = new EvaluationQueue(); AdjustSize(); + // hack to workaround problems in RtL locales, http://bugzilla.redhat.com/455863 + SetLayoutDirection(wxLayout_LeftToRight); } MathCtrl::~MathCtrl() { Index: wxMaxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxMaxima/devel/wxMaxima.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- wxMaxima.spec 29 Jun 2009 16:46:11 -0000 1.28 +++ wxMaxima.spec 18 Jul 2009 20:40:43 -0000 1.29 @@ -4,7 +4,7 @@ Summary: Graphical user interface for Maxima Name: wxMaxima Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Engineering @@ -12,6 +12,8 @@ URL: http://wxmaxima.sourceforge.net Source0: http://downloads.sourceforge.net/sourceforge/wxmaxima/wxMaxima-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch1: wxMaxima-0.8.2-ltr_layout.patch + # Deployable only where maxima exsists. %if 0%{?fedora} > 8 # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 @@ -38,8 +40,7 @@ Maxima using wxWidgets. %prep %setup -q -# app icon -convert -resize 48x48 data/wxmaxima.png data/wxmaxima-48x48.png +%patch1 -p1 -b .ltr_layout %build @@ -64,13 +65,14 @@ desktop-file-install --vendor="" \ # app icon install -p -D -m644 data/wxmaxima.png %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/wxmaxima.png +convert -resize 48x48 data/wxmaxima.png data/wxmaxima-48x48.png install -p -D -m644 data/wxmaxima-48x48.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/wxmaxima.png +%find_lang wxMaxima + # Unpackaged files rm -f %{buildroot}%{_datadir}/wxMaxima/{COPYING,README} -%find_lang wxMaxima - %clean rm -rf %{buildroot} @@ -103,6 +105,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 18 2009 Rex Dieter - 0.8.2-2 +- output window of wxMaxima is not visible in RtL locales (#455863) + * Mon Jun 29 2009 Rex Dieter - 0.8.2-1 - wxMaxima-0.8.2 From abompard at fedoraproject.org Sat Jul 18 20:52:20 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 20:52:20 +0000 (UTC) Subject: rpms/showimg/devel showimg.spec,1.27,1.28 Message-ID: <20090718205220.6E44A11C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/showimg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21360 Modified Files: showimg.spec Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.9.5-23 - rebuild Index: showimg.spec =================================================================== RCS file: /cvs/pkgs/rpms/showimg/devel/showimg.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- showimg.spec 19 Apr 2009 17:31:14 -0000 1.27 +++ showimg.spec 18 Jul 2009 20:52:19 -0000 1.28 @@ -1,6 +1,6 @@ Name: showimg Version: 0.9.5 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Feature-rich image viewer for KDE Group: Applications/Multimedia @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.9.5-23 +- rebuild + * Sun Apr 19 2009 Milos Jakubicek - 0.9.5-22 - Fix FTBFS: added showimg-0.9.5-gcc44.patch. From abompard at fedoraproject.org Sat Jul 18 21:03:51 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:03:51 +0000 (UTC) Subject: rpms/springlobby/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 springlobby.spec, 1.7, 1.8 Message-ID: <20090718210351.8D57F11C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/springlobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23444/devel Modified Files: .cvsignore sources springlobby.spec Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.3 - version 0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 May 2009 15:11:39 -0000 1.4 +++ .cvsignore 18 Jul 2009 21:03:51 -0000 1.5 @@ -1 +1 @@ -springlobby-0.0.1.10461.tar.bz2 +springlobby-0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 May 2009 15:11:39 -0000 1.4 +++ sources 18 Jul 2009 21:03:51 -0000 1.5 @@ -1 +1 @@ -6b27e8ff7216ab2782b94b3873ff3f3a springlobby-0.0.1.10461.tar.bz2 +c080c84f6d481f402c541b1b0f877ffc springlobby-0.3.tar.bz2 Index: springlobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/devel/springlobby.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- springlobby.spec 22 May 2009 15:11:39 -0000 1.7 +++ springlobby.spec 18 Jul 2009 21:03:51 -0000 1.8 @@ -1,5 +1,5 @@ Name: springlobby -Version: 0.0.1.10461 +Version: 0.3 Release: 1%{?dist} Summary: A lobby client for the spring RTS game engine @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.3 +- version 0.3 + * Fri May 22 2009 Aurelien Bompard 0.0.1.10461-1 - version 10461 - drop patch0 (merged upstream) From abompard at fedoraproject.org Sat Jul 18 21:04:21 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:04:21 +0000 (UTC) Subject: rpms/springlobby/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 springlobby.spec, 1.8, 1.9 Message-ID: <20090718210421.2A63F11C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/springlobby/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23444/F-11 Modified Files: .cvsignore sources springlobby.spec Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.3 - version 0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 May 2009 15:11:39 -0000 1.4 +++ .cvsignore 18 Jul 2009 21:03:50 -0000 1.5 @@ -1 +1 @@ -springlobby-0.0.1.10461.tar.bz2 +springlobby-0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 May 2009 15:11:39 -0000 1.4 +++ sources 18 Jul 2009 21:03:50 -0000 1.5 @@ -1 +1 @@ -6b27e8ff7216ab2782b94b3873ff3f3a springlobby-0.0.1.10461.tar.bz2 +c080c84f6d481f402c541b1b0f877ffc springlobby-0.3.tar.bz2 Index: springlobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-11/springlobby.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- springlobby.spec 22 May 2009 15:11:39 -0000 1.8 +++ springlobby.spec 18 Jul 2009 21:03:50 -0000 1.9 @@ -1,5 +1,5 @@ Name: springlobby -Version: 0.0.1.10461 +Version: 0.3 Release: 1%{?dist} Summary: A lobby client for the spring RTS game engine @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.3 +- version 0.3 + * Fri May 22 2009 Aurelien Bompard 0.0.1.10461-1 - version 10461 - drop patch0 (merged upstream) From abompard at fedoraproject.org Sat Jul 18 21:04:20 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:04:20 +0000 (UTC) Subject: rpms/springlobby/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 springlobby.spec, 1.3, 1.4 Message-ID: <20090718210420.EB51A11C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/springlobby/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23444/F-10 Modified Files: .cvsignore sources springlobby.spec Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.3 - version 0.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 22 May 2009 15:11:38 -0000 1.4 +++ .cvsignore 18 Jul 2009 21:03:50 -0000 1.5 @@ -1 +1 @@ -springlobby-0.0.1.10461.tar.bz2 +springlobby-0.3.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 May 2009 15:11:38 -0000 1.4 +++ sources 18 Jul 2009 21:03:50 -0000 1.5 @@ -1 +1 @@ -6b27e8ff7216ab2782b94b3873ff3f3a springlobby-0.0.1.10461.tar.bz2 +c080c84f6d481f402c541b1b0f877ffc springlobby-0.3.tar.bz2 Index: springlobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/F-10/springlobby.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- springlobby.spec 22 May 2009 15:11:38 -0000 1.3 +++ springlobby.spec 18 Jul 2009 21:03:50 -0000 1.4 @@ -1,5 +1,5 @@ Name: springlobby -Version: 0.0.1.10461 +Version: 0.3 Release: 1%{?dist} Summary: A lobby client for the spring RTS game engine @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.3 +- version 0.3 + * Fri May 22 2009 Aurelien Bompard 0.0.1.10461-1 - version 10461 - drop patch0 (merged upstream) From timj at fedoraproject.org Sat Jul 18 21:05:19 2009 From: timj at fedoraproject.org (Tim Jackson) Date: Sat, 18 Jul 2009 21:05:19 +0000 (UTC) Subject: rpms/rapidsvn/devel .cvsignore, 1.7, 1.8 rapidsvn.spec, 1.19, 1.20 sources, 1.7, 1.8 Message-ID: <20090718210519.CD3A211C0099@cvs1.fedora.phx.redhat.com> Author: timj Update of /cvs/extras/rpms/rapidsvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23914 Modified Files: .cvsignore rapidsvn.spec sources Log Message: Update to 0.10.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 6 May 2009 18:13:31 -0000 1.7 +++ .cvsignore 18 Jul 2009 21:05:18 -0000 1.8 @@ -1 +1 @@ -rapidsvn-0.9.8.tar.gz +rapidsvn-0.10.0.tar.gz Index: rapidsvn.spec =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/devel/rapidsvn.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- rapidsvn.spec 6 May 2009 18:13:32 -0000 1.19 +++ rapidsvn.spec 18 Jul 2009 21:05:19 -0000 1.20 @@ -1,5 +1,5 @@ Name: rapidsvn -Version: 0.9.8 +Version: 0.10.0 Release: 1%{?dist} Summary: Graphical interface for the Subversion revision control system @@ -17,7 +17,7 @@ Requires: svncpp = %{version} BuildRequires: apr-devel, apr-util-devel BuildRequires: libtool >= 1.4.2 -BuildRequires: openldap-devel +BuildRequires: openldap-devel # For doc generation; rapidsvn needs the "dot" tool from graphviz BuildRequires: docbook-style-xsl >= 1.58.1, doxygen, libxslt >= 1.0.27 @@ -60,6 +60,9 @@ Install this package if you need to comp %prep %setup -q +# Fix broken configure +sed -i s_src/tests/svncpp/Makefile__ configure + %{__cat} <rapidsvn.desktop [Desktop Entry] Encoding=UTF-8 @@ -113,15 +116,6 @@ desktop-file-install --vendor fedora # Remove libtool stuff rm -f %{buildroot}%{_libdir}/libsvncpp.{a,la} -%check -pushd src/tests/svncpp -make -./svncpptest | grep OK -if [ $? != 0 ]; then - echo "svncpp tests failed" - exit 5 -fi - %clean rm -rf %{buildroot} @@ -137,14 +131,20 @@ rm -rf %{buildroot} %{_mandir}/man1/* %files -n svncpp +%defattr(-,root,root,-) %{_libdir}/libsvncpp.so.* %files -n svncpp-devel +%defattr(-,root,root,-) %doc doc/svncpp/html %{_includedir}/svncpp/ %{_libdir}/libsvncpp.so %changelog +* Sat Jul 18 2009 Tim Jackson 0.10.0-1 +- Update to v0.10.0 +- Set default attrs for subpackages + * Tue Apr 14 2009 Tim Jackson 0.9.8-1 - Update to v0.9.8 - License is now GPLv3+ @@ -208,7 +208,7 @@ rm -rf %{buildroot} - Spin off svncpp and svncpp-devel subpackages - svncpp has ldconfig in post/postun - Add --with-svn-lib which should fix build on x86_64 -- Add %check section using package's inbuilt tests (requires cppunit) +- Add %%check section using package's inbuilt tests (requires cppunit) * Thu Apr 27 2006 Tim Jackson 0.9.1-1 - Initial package for Fedora Extras; based originally on an old DAG spec Index: sources =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 6 May 2009 18:13:32 -0000 1.7 +++ sources 18 Jul 2009 21:05:19 -0000 1.8 @@ -1 +1 @@ -1b49d893027ae83dbcff3d7508b3f42f rapidsvn-0.9.8.tar.gz +8af1f19768557537e4acb91e45e6142f rapidsvn-0.10.0.tar.gz From rdieter at fedoraproject.org Sat Jul 18 21:26:34 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 21:26:34 +0000 (UTC) Subject: rpms/wxMaxima/devel wxMaxima.spec,1.29,1.30 Message-ID: <20090718212634.C8FBE11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/wxMaxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28197 Modified Files: wxMaxima.spec Log Message: * Sat Jul 18 2009 Rex Dieter - 0.8.2-3 - Requires: maxima >= 5.18 Index: wxMaxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxMaxima/devel/wxMaxima.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- wxMaxima.spec 18 Jul 2009 20:40:43 -0000 1.29 +++ wxMaxima.spec 18 Jul 2009 21:26:34 -0000 1.30 @@ -4,7 +4,7 @@ Summary: Graphical user interface for Maxima Name: wxMaxima Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Engineering @@ -24,7 +24,7 @@ ExclusiveArch: %{ix86} x86_64 ppc sparcv Provides: wxmaxima = %{version}-%{release} -Requires: maxima >= 5.13 +Requires: maxima >= 5.18 BuildRequires: desktop-file-utils BuildRequires: wxGTK-devel @@ -105,6 +105,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 18 2009 Rex Dieter - 0.8.2-3 +- Requires: maxima >= 5.18 + * Sat Jul 18 2009 Rex Dieter - 0.8.2-2 - output window of wxMaxima is not visible in RtL locales (#455863) From scop at fedoraproject.org Sat Jul 18 21:38:56 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Sat, 18 Jul 2009 21:38:56 +0000 (UTC) Subject: rpms/optipng/F-11 noautobuild,1.1,NONE Message-ID: <20090718213856.28B9E11C0099@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/optipng/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30003/F-11 Removed Files: noautobuild Log Message: Remove obsolete noautobuild files. --- noautobuild DELETED --- From scop at fedoraproject.org Sat Jul 18 21:38:56 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Sat, 18 Jul 2009 21:38:56 +0000 (UTC) Subject: rpms/optipng/devel noautobuild,1.1,NONE Message-ID: <20090718213856.55AE411C0099@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/optipng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30003/devel Removed Files: noautobuild Log Message: Remove obsolete noautobuild files. --- noautobuild DELETED --- From abompard at fedoraproject.org Sat Jul 18 21:40:25 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:40:25 +0000 (UTC) Subject: rpms/spring/devel spring-0.79.1.2-allegro.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 spring.spec, 1.2, 1.3 spring-0.72.2.1-nodedicated.patch, 1.1, NONE spring-0.78.2.1-allegro.patch, 1.1, NONE Message-ID: <20090718214025.5D7C511C025D@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/spring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30265/devel Modified Files: .cvsignore sources spring.spec Added Files: spring-0.79.1.2-allegro.patch Removed Files: spring-0.72.2.1-nodedicated.patch spring-0.78.2.1-allegro.patch Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 - version 0.79.1.2 - remove obsolete fonts hack - build dedicated server spring-0.79.1.2-allegro.patch: ./rts/build/cmake/FindAllegro.cmake | 61 ++++++++++++++++++++++++++++++++++++ rts/CMakeLists.txt | 3 + 2 files changed, 63 insertions(+), 1 deletion(-) --- NEW FILE spring-0.79.1.2-allegro.patch --- diff -up ./rts/build/cmake/FindAllegro.cmake.allegro ./rts/build/cmake/FindAllegro.cmake --- ./rts/build/cmake/FindAllegro.cmake.allegro 2009-02-02 16:19:04.000000000 +0100 +++ ./rts/build/cmake/FindAllegro.cmake 2009-02-02 16:19:04.000000000 +0100 @@ -0,0 +1,61 @@ +# http://guichan.googlecode.com/svn/trunk/CMake/Modules/FindAllegro.cmake +# - Try to find Allegro +# Once done this will define +# +# ALLEGRO_FOUND - system has Allegro +# ALLEGRO_INCLUDE_DIRS - the Allegro include directory +# ALLEGRO_LIBRARIES - Link these to use Allegro +# ALLEGRO_DEFINITIONS - Compiler switches required for using Allegro +# +# Copyright (c) 2008 Olof Naessen +# +# Redistribution and use is allowed according to the terms of the New +# BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + + +if (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + # in cache already + set(ALLEGRO_FOUND TRUE) +else (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + find_program(ALLEGROCONFIG_EXECUTABLE NAMES allegro-config PATHS + /opt/local/bin + ) + + #reset vars + set(ALLEGRO_LIBRARIES) + set(ALLEGRO_INCLUDE_DIRS) + + # if allegro-config has been found + if(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --libs RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_LIBRARIES) + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --cflags RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_INCLUDE_DIRS) + + if(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + set(ALLEGRO_FOUND TRUE) + endif(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + set( ALLEGRO_LIBRARIES ${ALLEGRO_LIBRARIES} CACHE STRING "The libraries for allegro" ) + + mark_as_advanced(ALLEGRO_LIBRARIES ALLEGRO_INCLUDE_DIRS) + + endif(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + if (ALLEGRO_FOUND) + if (NOT Allegro_FIND_QUIETLY) + message(STATUS "Found Allegro: ${ALLEGRO_LIBRARIES}") + endif (NOT Allegro_FIND_QUIETLY) + else (ALLEGRO_FOUND) + if (Allegro_FIND_REQUIRED) + message(FATAL_ERROR "Could not find Allegro") + endif (Allegro_FIND_REQUIRED) + endif (ALLEGRO_FOUND) + + # show the ALLEGRO_INCLUDE_DIRS and ALLEGRO_LIBRARIES variables only in the advanced view + mark_as_advanced(ALLEGRO_INCLUDE_DIRS ALLEGRO_LIBRARIES) + +endif (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + diff -up ./rts/CMakeLists.txt.allegro ./rts/CMakeLists.txt --- rts/CMakeLists.txt.allegro 2009-06-23 20:30:22.000000000 +0200 +++ rts/CMakeLists.txt 2009-07-18 23:25:29.000000000 +0200 @@ -56,7 +56,8 @@ FIND_PACKAGE(GLU REQUIRED) FIND_PACKAGE(GLUT REQUIRED) FIND_PACKAGE(GLEW REQUIRED) -LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES}) +FIND_PACKAGE(Allegro REQUIRED) +LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES} ${ALLEGRO_LIBRARIES}) FIND_PACKAGE(Freetype REQUIRED) INCLUDE_DIRECTORIES(${FREETYPE_INCLUDE_DIR}) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spring/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Mar 2009 06:26:26 -0000 1.2 +++ .cvsignore 18 Jul 2009 21:40:24 -0000 1.3 @@ -1 +1 @@ -spring_0.78.2.1_src.tar.lzma +spring_0.79.1.2_src.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spring/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Mar 2009 06:26:27 -0000 1.2 +++ sources 18 Jul 2009 21:40:24 -0000 1.3 @@ -1 +1 @@ -4765d25d44f4bdc2f68af0f76743f30d spring_0.78.2.1_src.tar.lzma +408b0359a43ae2a34798a6f41fe6f82a spring_0.79.1.2_src.tar.gz Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/devel/spring.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spring.spec 22 Mar 2009 11:59:26 -0000 1.2 +++ spring.spec 18 Jul 2009 21:40:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: spring -Version: 0.78.2.1 -Release: 9%{?dist} +Version: 0.79.1.2 +Release: 1%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -12,14 +12,12 @@ Group: Amusements/Games # installer/builddata/bitmaps/README.txt. License: GPLv2+ and GPLv3+ and LGPLv2 and GFDL and (GFDL or CC-BY) -URL: http://spring.clan-sy.com -Source0: http://spring.clan-sy.com/dl/spring_%{version}_src.tar.lzma +URL: http://springrts.com +Source0: http://springrts.com/dl/spring_%{version}_src.tar.gz Source1: spring-README.Fedora # Teach CMake to find allegro -Patch0: spring-0.78.2.1-allegro.patch -# Don't build the dedicated server (in development) -Patch1: spring-0.72.2.1-nodedicated.patch +Patch0: spring-0.79.1.2-allegro.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -28,14 +26,11 @@ BuildRequires: glew-devel libvorbis-dev BuildRequires: freetype-devel python-devel allegro-devel zip BuildRequires: desktop-file-utils -%if 0%{?fedora} <= 10 -Requires: dejavu-fonts -%else -Requires: dejavu-sans-fonts -%endif - Requires: spring-lobby spring-installer spring-maps-default +# TODO: split the package +Provides: spring-dedicated = %{version}-%{release} + # Spring is not supposed to run on Linux/PPC. Noone in the dev team has the # hardware to test it. Currently, it does not even build. Here's a thread in # the forums about this issue: @@ -59,7 +54,6 @@ great resource, read it here: http://spr cp -p %{SOURCE1} README.Fedora touch ./rts/build/cmake/FindAllegro.cmake %patch0 -p0 -b .allegro -%patch1 -p0 -b .nodedicated chmod -x rts/lib/7zip/* @@ -98,11 +92,6 @@ desktop-file-install \ --delete-original \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -# Use system fonts -rm $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/{Luxi,Vera}.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Vera.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Luxi.ttf - %post # Icons @@ -136,6 +125,7 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.html README.Fedora Documentation/* %{_bindir}/* %{_libdir}/libunitsync.so +%{_libdir}/libspringserver.so %{_libdir}/%{name} %{_datadir}/mime/packages/%{name}.xml %{_datadir}/icons/hicolor/48x48/*/*.png @@ -144,6 +134,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 +- version 0.79.1.2 +- remove obsolete fonts hack +- build dedicated server + +* Sat May 23 2009 Aurelien Bompard 0.79.0.2-1 +- version 0.79.0.2 +- update URL + * Sun Mar 22 2009 Aurelien Bompard 0.78.2.1-9 - exclude KAI, since it's deprecated (http://spring.clan-sy.com/phpbb/viewtopic.php?f=20&t=18196) --- spring-0.72.2.1-nodedicated.patch DELETED --- --- spring-0.78.2.1-allegro.patch DELETED --- From abompard at fedoraproject.org Sat Jul 18 21:40:54 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:40:54 +0000 (UTC) Subject: rpms/spring/F-11 spring-0.79.1.2-allegro.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 spring.spec, 1.2, 1.3 spring-0.72.2.1-nodedicated.patch, 1.1, NONE spring-0.78.2.1-allegro.patch, 1.1, NONE Message-ID: <20090718214054.B1F9F11C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/spring/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30265/F-11 Modified Files: .cvsignore sources spring.spec Added Files: spring-0.79.1.2-allegro.patch Removed Files: spring-0.72.2.1-nodedicated.patch spring-0.78.2.1-allegro.patch Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 - version 0.79.1.2 - remove obsolete fonts hack - build dedicated server spring-0.79.1.2-allegro.patch: ./rts/build/cmake/FindAllegro.cmake | 61 ++++++++++++++++++++++++++++++++++++ rts/CMakeLists.txt | 3 + 2 files changed, 63 insertions(+), 1 deletion(-) --- NEW FILE spring-0.79.1.2-allegro.patch --- diff -up ./rts/build/cmake/FindAllegro.cmake.allegro ./rts/build/cmake/FindAllegro.cmake --- ./rts/build/cmake/FindAllegro.cmake.allegro 2009-02-02 16:19:04.000000000 +0100 +++ ./rts/build/cmake/FindAllegro.cmake 2009-02-02 16:19:04.000000000 +0100 @@ -0,0 +1,61 @@ +# http://guichan.googlecode.com/svn/trunk/CMake/Modules/FindAllegro.cmake +# - Try to find Allegro +# Once done this will define +# +# ALLEGRO_FOUND - system has Allegro +# ALLEGRO_INCLUDE_DIRS - the Allegro include directory +# ALLEGRO_LIBRARIES - Link these to use Allegro +# ALLEGRO_DEFINITIONS - Compiler switches required for using Allegro +# +# Copyright (c) 2008 Olof Naessen +# +# Redistribution and use is allowed according to the terms of the New +# BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + + +if (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + # in cache already + set(ALLEGRO_FOUND TRUE) +else (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + find_program(ALLEGROCONFIG_EXECUTABLE NAMES allegro-config PATHS + /opt/local/bin + ) + + #reset vars + set(ALLEGRO_LIBRARIES) + set(ALLEGRO_INCLUDE_DIRS) + + # if allegro-config has been found + if(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --libs RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_LIBRARIES) + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --cflags RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_INCLUDE_DIRS) + + if(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + set(ALLEGRO_FOUND TRUE) + endif(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + set( ALLEGRO_LIBRARIES ${ALLEGRO_LIBRARIES} CACHE STRING "The libraries for allegro" ) + + mark_as_advanced(ALLEGRO_LIBRARIES ALLEGRO_INCLUDE_DIRS) + + endif(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + if (ALLEGRO_FOUND) + if (NOT Allegro_FIND_QUIETLY) + message(STATUS "Found Allegro: ${ALLEGRO_LIBRARIES}") + endif (NOT Allegro_FIND_QUIETLY) + else (ALLEGRO_FOUND) + if (Allegro_FIND_REQUIRED) + message(FATAL_ERROR "Could not find Allegro") + endif (Allegro_FIND_REQUIRED) + endif (ALLEGRO_FOUND) + + # show the ALLEGRO_INCLUDE_DIRS and ALLEGRO_LIBRARIES variables only in the advanced view + mark_as_advanced(ALLEGRO_INCLUDE_DIRS ALLEGRO_LIBRARIES) + +endif (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + diff -up ./rts/CMakeLists.txt.allegro ./rts/CMakeLists.txt --- rts/CMakeLists.txt.allegro 2009-06-23 20:30:22.000000000 +0200 +++ rts/CMakeLists.txt 2009-07-18 23:25:29.000000000 +0200 @@ -56,7 +56,8 @@ FIND_PACKAGE(GLU REQUIRED) FIND_PACKAGE(GLUT REQUIRED) FIND_PACKAGE(GLEW REQUIRED) -LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES}) +FIND_PACKAGE(Allegro REQUIRED) +LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES} ${ALLEGRO_LIBRARIES}) FIND_PACKAGE(Freetype REQUIRED) INCLUDE_DIRECTORIES(${FREETYPE_INCLUDE_DIR}) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Mar 2009 06:26:26 -0000 1.2 +++ .cvsignore 18 Jul 2009 21:40:24 -0000 1.3 @@ -1 +1 @@ -spring_0.78.2.1_src.tar.lzma +spring_0.79.1.2_src.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Mar 2009 06:26:27 -0000 1.2 +++ sources 18 Jul 2009 21:40:24 -0000 1.3 @@ -1 +1 @@ -4765d25d44f4bdc2f68af0f76743f30d spring_0.78.2.1_src.tar.lzma +408b0359a43ae2a34798a6f41fe6f82a spring_0.79.1.2_src.tar.gz Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-11/spring.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spring.spec 22 Mar 2009 11:59:26 -0000 1.2 +++ spring.spec 18 Jul 2009 21:40:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: spring -Version: 0.78.2.1 -Release: 9%{?dist} +Version: 0.79.1.2 +Release: 1%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -12,14 +12,12 @@ Group: Amusements/Games # installer/builddata/bitmaps/README.txt. License: GPLv2+ and GPLv3+ and LGPLv2 and GFDL and (GFDL or CC-BY) -URL: http://spring.clan-sy.com -Source0: http://spring.clan-sy.com/dl/spring_%{version}_src.tar.lzma +URL: http://springrts.com +Source0: http://springrts.com/dl/spring_%{version}_src.tar.gz Source1: spring-README.Fedora # Teach CMake to find allegro -Patch0: spring-0.78.2.1-allegro.patch -# Don't build the dedicated server (in development) -Patch1: spring-0.72.2.1-nodedicated.patch +Patch0: spring-0.79.1.2-allegro.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -28,14 +26,11 @@ BuildRequires: glew-devel libvorbis-dev BuildRequires: freetype-devel python-devel allegro-devel zip BuildRequires: desktop-file-utils -%if 0%{?fedora} <= 10 -Requires: dejavu-fonts -%else -Requires: dejavu-sans-fonts -%endif - Requires: spring-lobby spring-installer spring-maps-default +# TODO: split the package +Provides: spring-dedicated = %{version}-%{release} + # Spring is not supposed to run on Linux/PPC. Noone in the dev team has the # hardware to test it. Currently, it does not even build. Here's a thread in # the forums about this issue: @@ -59,7 +54,6 @@ great resource, read it here: http://spr cp -p %{SOURCE1} README.Fedora touch ./rts/build/cmake/FindAllegro.cmake %patch0 -p0 -b .allegro -%patch1 -p0 -b .nodedicated chmod -x rts/lib/7zip/* @@ -98,11 +92,6 @@ desktop-file-install \ --delete-original \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -# Use system fonts -rm $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/{Luxi,Vera}.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Vera.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Luxi.ttf - %post # Icons @@ -136,6 +125,7 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.html README.Fedora Documentation/* %{_bindir}/* %{_libdir}/libunitsync.so +%{_libdir}/libspringserver.so %{_libdir}/%{name} %{_datadir}/mime/packages/%{name}.xml %{_datadir}/icons/hicolor/48x48/*/*.png @@ -144,6 +134,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 +- version 0.79.1.2 +- remove obsolete fonts hack +- build dedicated server + +* Sat May 23 2009 Aurelien Bompard 0.79.0.2-1 +- version 0.79.0.2 +- update URL + * Sun Mar 22 2009 Aurelien Bompard 0.78.2.1-9 - exclude KAI, since it's deprecated (http://spring.clan-sy.com/phpbb/viewtopic.php?f=20&t=18196) --- spring-0.72.2.1-nodedicated.patch DELETED --- --- spring-0.78.2.1-allegro.patch DELETED --- From abompard at fedoraproject.org Sat Jul 18 21:40:54 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sat, 18 Jul 2009 21:40:54 +0000 (UTC) Subject: rpms/spring/F-10 spring-0.79.1.2-allegro.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 spring.spec, 1.2, 1.3 spring-0.72.2.1-nodedicated.patch, 1.1, NONE spring-0.78.2.1-allegro.patch, 1.1, NONE Message-ID: <20090718214054.4604311C0099@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/spring/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30265/F-10 Modified Files: .cvsignore sources spring.spec Added Files: spring-0.79.1.2-allegro.patch Removed Files: spring-0.72.2.1-nodedicated.patch spring-0.78.2.1-allegro.patch Log Message: * Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 - version 0.79.1.2 - remove obsolete fonts hack - build dedicated server spring-0.79.1.2-allegro.patch: ./rts/build/cmake/FindAllegro.cmake | 61 ++++++++++++++++++++++++++++++++++++ rts/CMakeLists.txt | 3 + 2 files changed, 63 insertions(+), 1 deletion(-) --- NEW FILE spring-0.79.1.2-allegro.patch --- diff -up ./rts/build/cmake/FindAllegro.cmake.allegro ./rts/build/cmake/FindAllegro.cmake --- ./rts/build/cmake/FindAllegro.cmake.allegro 2009-02-02 16:19:04.000000000 +0100 +++ ./rts/build/cmake/FindAllegro.cmake 2009-02-02 16:19:04.000000000 +0100 @@ -0,0 +1,61 @@ +# http://guichan.googlecode.com/svn/trunk/CMake/Modules/FindAllegro.cmake +# - Try to find Allegro +# Once done this will define +# +# ALLEGRO_FOUND - system has Allegro +# ALLEGRO_INCLUDE_DIRS - the Allegro include directory +# ALLEGRO_LIBRARIES - Link these to use Allegro +# ALLEGRO_DEFINITIONS - Compiler switches required for using Allegro +# +# Copyright (c) 2008 Olof Naessen +# +# Redistribution and use is allowed according to the terms of the New +# BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + + +if (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + # in cache already + set(ALLEGRO_FOUND TRUE) +else (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + find_program(ALLEGROCONFIG_EXECUTABLE NAMES allegro-config PATHS + /opt/local/bin + ) + + #reset vars + set(ALLEGRO_LIBRARIES) + set(ALLEGRO_INCLUDE_DIRS) + + # if allegro-config has been found + if(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --libs RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_LIBRARIES) + exec_program(${ALLEGROCONFIG_EXECUTABLE} ARGS --cflags RETURN_VALUE _return_VALUE OUTPUT_VARIABLE ALLEGRO_INCLUDE_DIRS) + + if(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + set(ALLEGRO_FOUND TRUE) + endif(ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + + set( ALLEGRO_LIBRARIES ${ALLEGRO_LIBRARIES} CACHE STRING "The libraries for allegro" ) + + mark_as_advanced(ALLEGRO_LIBRARIES ALLEGRO_INCLUDE_DIRS) + + endif(ALLEGROCONFIG_EXECUTABLE AND NOT MINGW) + + if (ALLEGRO_FOUND) + if (NOT Allegro_FIND_QUIETLY) + message(STATUS "Found Allegro: ${ALLEGRO_LIBRARIES}") + endif (NOT Allegro_FIND_QUIETLY) + else (ALLEGRO_FOUND) + if (Allegro_FIND_REQUIRED) + message(FATAL_ERROR "Could not find Allegro") + endif (Allegro_FIND_REQUIRED) + endif (ALLEGRO_FOUND) + + # show the ALLEGRO_INCLUDE_DIRS and ALLEGRO_LIBRARIES variables only in the advanced view + mark_as_advanced(ALLEGRO_INCLUDE_DIRS ALLEGRO_LIBRARIES) + +endif (ALLEGRO_LIBRARIES AND ALLEGRO_INCLUDE_DIRS) + diff -up ./rts/CMakeLists.txt.allegro ./rts/CMakeLists.txt --- rts/CMakeLists.txt.allegro 2009-06-23 20:30:22.000000000 +0200 +++ rts/CMakeLists.txt 2009-07-18 23:25:29.000000000 +0200 @@ -56,7 +56,8 @@ FIND_PACKAGE(GLU REQUIRED) FIND_PACKAGE(GLUT REQUIRED) FIND_PACKAGE(GLEW REQUIRED) -LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES}) +FIND_PACKAGE(Allegro REQUIRED) +LIST(APPEND spring_libraries ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${GLEW_LIBRARIES} ${DEVIL_LIBRARIES} ${ALLEGRO_LIBRARIES}) FIND_PACKAGE(Freetype REQUIRED) INCLUDE_DIRECTORIES(${FREETYPE_INCLUDE_DIR}) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 Mar 2009 06:30:25 -0000 1.2 +++ .cvsignore 18 Jul 2009 21:40:23 -0000 1.3 @@ -1 +1 @@ -spring_0.78.2.1_src.tar.lzma +spring_0.79.1.2_src.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 Mar 2009 06:30:25 -0000 1.2 +++ sources 18 Jul 2009 21:40:23 -0000 1.3 @@ -1 +1 @@ -4765d25d44f4bdc2f68af0f76743f30d spring_0.78.2.1_src.tar.lzma +408b0359a43ae2a34798a6f41fe6f82a spring_0.79.1.2_src.tar.gz Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-10/spring.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spring.spec 22 Mar 2009 11:59:25 -0000 1.2 +++ spring.spec 18 Jul 2009 21:40:23 -0000 1.3 @@ -1,6 +1,6 @@ Name: spring -Version: 0.78.2.1 -Release: 9%{?dist} +Version: 0.79.1.2 +Release: 1%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -12,14 +12,12 @@ Group: Amusements/Games # installer/builddata/bitmaps/README.txt. License: GPLv2+ and GPLv3+ and LGPLv2 and GFDL and (GFDL or CC-BY) -URL: http://spring.clan-sy.com -Source0: http://spring.clan-sy.com/dl/spring_%{version}_src.tar.lzma +URL: http://springrts.com +Source0: http://springrts.com/dl/spring_%{version}_src.tar.gz Source1: spring-README.Fedora # Teach CMake to find allegro -Patch0: spring-0.78.2.1-allegro.patch -# Don't build the dedicated server (in development) -Patch1: spring-0.72.2.1-nodedicated.patch +Patch0: spring-0.79.1.2-allegro.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -28,14 +26,11 @@ BuildRequires: glew-devel libvorbis-dev BuildRequires: freetype-devel python-devel allegro-devel zip BuildRequires: desktop-file-utils -%if 0%{?fedora} <= 10 -Requires: dejavu-fonts -%else -Requires: dejavu-sans-fonts -%endif - Requires: spring-lobby spring-installer spring-maps-default +# TODO: split the package +Provides: spring-dedicated = %{version}-%{release} + # Spring is not supposed to run on Linux/PPC. Noone in the dev team has the # hardware to test it. Currently, it does not even build. Here's a thread in # the forums about this issue: @@ -59,7 +54,6 @@ great resource, read it here: http://spr cp -p %{SOURCE1} README.Fedora touch ./rts/build/cmake/FindAllegro.cmake %patch0 -p0 -b .allegro -%patch1 -p0 -b .nodedicated chmod -x rts/lib/7zip/* @@ -98,11 +92,6 @@ desktop-file-install \ --delete-original \ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -# Use system fonts -rm $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/{Luxi,Vera}.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Vera.ttf -ln -s ../../fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts/Luxi.ttf - %post # Icons @@ -136,6 +125,7 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.html README.Fedora Documentation/* %{_bindir}/* %{_libdir}/libunitsync.so +%{_libdir}/libspringserver.so %{_libdir}/%{name} %{_datadir}/mime/packages/%{name}.xml %{_datadir}/icons/hicolor/48x48/*/*.png @@ -144,6 +134,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 +- version 0.79.1.2 +- remove obsolete fonts hack +- build dedicated server + +* Sat May 23 2009 Aurelien Bompard 0.79.0.2-1 +- version 0.79.0.2 +- update URL + * Sun Mar 22 2009 Aurelien Bompard 0.78.2.1-9 - exclude KAI, since it's deprecated (http://spring.clan-sy.com/phpbb/viewtopic.php?f=20&t=18196) --- spring-0.72.2.1-nodedicated.patch DELETED --- --- spring-0.78.2.1-allegro.patch DELETED --- From rdieter at fedoraproject.org Sat Jul 18 21:48:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 18 Jul 2009 21:48:42 +0000 (UTC) Subject: rpms/wxMaxima/F-11 wxMaxima-0.7.6-ltr_layout.patch, NONE, 1.1 wxMaxima.spec, 1.26, 1.27 Message-ID: <20090718214842.094A011C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/wxMaxima/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32679 Modified Files: wxMaxima.spec Added Files: wxMaxima-0.7.6-ltr_layout.patch Log Message: * Sat Jul 18 2009 Rex Dieter - 0.7.6-4 - output window of wxMaxima is not visible in RtL locales (#455863) - optimize scriptlets wxMaxima-0.7.6-ltr_layout.patch: MathCtrl.cpp | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE wxMaxima-0.7.6-ltr_layout.patch --- diff -up wxMaxima-0.7.6/src/MathCtrl.cpp.ltr_layout wxMaxima-0.7.6/src/MathCtrl.cpp --- wxMaxima-0.7.6/src/MathCtrl.cpp.ltr_layout 2008-08-20 05:41:10.000000000 -0500 +++ wxMaxima-0.7.6/src/MathCtrl.cpp 2009-07-18 15:52:00.705906685 -0500 @@ -65,6 +65,8 @@ MathCtrl::MathCtrl(wxWindow* parent, int m_timer.SetOwner(this, TIMER_ID); m_caretTimer.SetOwner(this, CARET_TIMER_ID); AdjustSize(false); + // hack to workaround problems in RtL locales, http://bugzilla.redhat.com/455863 + SetLayoutDirection(wxLayout_LeftToRight); } MathCtrl::~MathCtrl() { Index: wxMaxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxMaxima/F-11/wxMaxima.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- wxMaxima.spec 27 Feb 2009 20:44:49 -0000 1.26 +++ wxMaxima.spec 18 Jul 2009 21:48:41 -0000 1.27 @@ -4,7 +4,7 @@ Summary: Graphical user interface for Maxima Name: wxMaxima Version: 0.7.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Engineering @@ -12,6 +12,8 @@ URL: http://wxmaxima.sourceforge.net Source0: http://downloads.sourceforge.net/sourceforge/wxmaxima/wxMaxima-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch1: wxMaxima-0.7.6-ltr_layout.patch + # Deployable only where maxima exsists. %if 0%{?fedora} > 8 # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 @@ -37,6 +39,8 @@ Maxima using wxWidgets. %prep %setup -q +%patch1 -p1 -b .ltr_layout + ## wxmaxima.desktop fixups # do (some) Categories munging here, some versions of desktop-file-install # (*cough rhel4*) truncate Categories if --remove-category'd items is a @@ -47,9 +51,6 @@ sed -i \ -e "s|^Terminal=0|Terminal=false|" \ wxmaxima.desktop -# app icon -convert -resize 48x48 wxmaxima.png wxmaxima-48x48.png - %build %configure \ @@ -73,6 +74,7 @@ desktop-file-install --vendor="" \ # app icon install -p -D -m644 wxmaxima.png %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/wxmaxima.png +convert -resize 48x48 wxmaxima.png wxmaxima-48x48.png install -p -D -m644 wxmaxima-48x48.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/wxmaxima.png # Unpackaged files @@ -80,18 +82,27 @@ rm -f %{buildroot}%{_datadir}/wxMaxima/{ %find_lang wxMaxima +# Unpackaged files +rm -f %{buildroot}%{_datadir}/wxMaxima/{COPYING,README} + %clean rm -rf %{buildroot} %post -touch --no-create %{_datadir}/icons/hicolor ||: -gtk-update-icon-cache -q %{_datadir}/icons/hicolor 2> /dev/null ||: +touch --no-create %{_datadir}/icons/hicolor &> /dev/null || : %postun -touch --no-create %{_datadir}/icons/hicolor ||: -gtk-update-icon-cache -q %{_datadir}/icons/hicolor 2> /dev/null ||: +if [ $1 -eq 0 ] ; then + update-desktop-database -q &> /dev/null + touch --no-create %{_datadir}/icons/hicolor &> /dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : +fi + +%posttrans +update-desktop-database -q &> /dev/null +gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || : %files -f wxMaxima.lang @@ -106,6 +117,10 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Sat Jul 18 2009 Rex Dieter - 0.7.6-4 +- output window of wxMaxima is not visible in RtL locales (#455863) +- optimize scriptlets + * Fri Feb 27 2009 Rex Dieter - 0.7.6-3 - ExclusiveArch: s/i386/%%ix86/ From timj at fedoraproject.org Sat Jul 18 21:49:13 2009 From: timj at fedoraproject.org (Tim Jackson) Date: Sat, 18 Jul 2009 21:49:13 +0000 (UTC) Subject: rpms/rapidsvn/F-11 .cvsignore, 1.6, 1.7 rapidsvn.spec, 1.19, 1.20 sources, 1.7, 1.8 Message-ID: <20090718214913.86EAA11C0099@cvs1.fedora.phx.redhat.com> Author: timj Update of /cvs/extras/rpms/rapidsvn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32668 Modified Files: .cvsignore rapidsvn.spec sources Log Message: Update to 0.10.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 16 Mar 2008 11:21:43 -0000 1.6 +++ .cvsignore 18 Jul 2009 21:48:43 -0000 1.7 @@ -1 +1 @@ -rapidsvn-0.9.6.tar.gz +rapidsvn-0.10.0.tar.gz Index: rapidsvn.spec =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/F-11/rapidsvn.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- rapidsvn.spec 9 May 2009 13:01:27 -0000 1.19 +++ rapidsvn.spec 18 Jul 2009 21:48:43 -0000 1.20 @@ -1,5 +1,5 @@ Name: rapidsvn -Version: 0.9.8 +Version: 0.10.0 Release: 1%{?dist} Summary: Graphical interface for the Subversion revision control system @@ -17,7 +17,7 @@ Requires: svncpp = %{version} BuildRequires: apr-devel, apr-util-devel BuildRequires: libtool >= 1.4.2 -BuildRequires: openldap-devel +BuildRequires: openldap-devel # For doc generation; rapidsvn needs the "dot" tool from graphviz BuildRequires: docbook-style-xsl >= 1.58.1, doxygen, libxslt >= 1.0.27 @@ -60,6 +60,9 @@ Install this package if you need to comp %prep %setup -q +# Fix broken configure +sed -i s_src/tests/svncpp/Makefile__ configure + %{__cat} <rapidsvn.desktop [Desktop Entry] Encoding=UTF-8 @@ -113,15 +116,6 @@ desktop-file-install --vendor fedora # Remove libtool stuff rm -f %{buildroot}%{_libdir}/libsvncpp.{a,la} -%check -pushd src/tests/svncpp -make -./svncpptest | grep OK -if [ $? != 0 ]; then - echo "svncpp tests failed" - exit 5 -fi - %clean rm -rf %{buildroot} @@ -137,14 +131,20 @@ rm -rf %{buildroot} %{_mandir}/man1/* %files -n svncpp +%defattr(-,root,root,-) %{_libdir}/libsvncpp.so.* %files -n svncpp-devel +%defattr(-,root,root,-) %doc doc/svncpp/html %{_includedir}/svncpp/ %{_libdir}/libsvncpp.so %changelog +* Sat Jul 18 2009 Tim Jackson 0.10.0-1 +- Update to v0.10.0 +- Set default attrs for subpackages + * Tue Apr 14 2009 Tim Jackson 0.9.8-1 - Update to v0.9.8 - License is now GPLv3+ @@ -208,7 +208,7 @@ rm -rf %{buildroot} - Spin off svncpp and svncpp-devel subpackages - svncpp has ldconfig in post/postun - Add --with-svn-lib which should fix build on x86_64 -- Add %check section using package's inbuilt tests (requires cppunit) +- Add %%check section using package's inbuilt tests (requires cppunit) * Thu Apr 27 2006 Tim Jackson 0.9.1-1 - Initial package for Fedora Extras; based originally on an old DAG spec Index: sources =================================================================== RCS file: /cvs/extras/rpms/rapidsvn/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 9 May 2009 13:01:27 -0000 1.7 +++ sources 18 Jul 2009 21:48:43 -0000 1.8 @@ -1 +1 @@ -1b49d893027ae83dbcff3d7508b3f42f rapidsvn-0.9.8.tar.gz +8af1f19768557537e4acb91e45e6142f rapidsvn-0.10.0.tar.gz From till at fedoraproject.org Sat Jul 18 21:50:01 2009 From: till at fedoraproject.org (Till Maas) Date: Sat, 18 Jul 2009 21:50:01 +0000 (UTC) Subject: rpms/pm-utils/devel pm-utils.spec,1.119,1.120 Message-ID: <20090718215001.EEBCE11C00E4@cvs1.fedora.phx.redhat.com> Author: till Update of /cvs/pkgs/rpms/pm-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv387 Modified Files: pm-utils.spec Log Message: * Sat Jul 18 2009 Till Maas - 1.2.5-4 - Remove atd script - create filesystem subpackage for hooks Index: pm-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pm-utils/devel/pm-utils.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- pm-utils.spec 17 Jul 2009 11:44:05 -0000 1.119 +++ pm-utils.spec 18 Jul 2009 21:49:31 -0000 1.120 @@ -2,7 +2,7 @@ Name: pm-utils Summary: Power management utilities and scripts for Fedora License: GPLv2 Version: 1.2.5 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Base URL: http://pm-utils.freedesktop.org # for chvt @@ -17,6 +17,7 @@ Requires: hal %ifarch %{ix86} x86_64 Requires: vbetool %endif +Requires: %{name}-filesystem = %{version}-%{release} BuildRequires: xmlto Source0: http://pm-utils.freedesktop.org/releases/pm-utils-%{version}.tar.gz @@ -24,7 +25,6 @@ Source0: http://pm-utils.freedesktop.org Source21: pm-utils-99hd-apm-restore Source22: pm-utils-hd-apm-restore.conf Source23: pm-utils-bugreport-info.sh -Source24: 56atd BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -44,6 +44,14 @@ Requires: pkgconfig This package contains the pkg-config files for development when building programs that use %{name}. +%package filesystem +Group: System Environment/Base +Summary: Directories for hooks + +%description filesystem +This package contains the necessary directories for hooks to put their files +in. + %prep %setup -q @@ -65,7 +73,6 @@ install -D -m 0644 %{SOURCE22} $RPM_BUIL install -D -m 0755 %{SOURCE23} $RPM_BUILD_ROOT%{_bindir}/pm-utils-bugreport-info.sh -install -D -m 0755 %{SOURCE24} $RPM_BUILD_ROOT%{_libdir}/pm-utils/sleep.d/56atd %clean rm -rf $RPM_BUILD_ROOT @@ -75,15 +82,13 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc README COPYING AUTHORS ChangeLog %config(noreplace) %{_sysconfdir}/pm-utils-hd-apm-restore.conf -%{_sysconfdir}/pm/ -%dir %{_libdir}/pm-utils/ %{_libdir}/pm-utils/bin/ %{_libdir}/pm-utils/defaults %{_libdir}/pm-utils/functions +%{_libdir}/pm-utils/module.d/* %{_libdir}/pm-utils/pm-functions -%{_libdir}/pm-utils/power.d/ -%{_libdir}/pm-utils/sleep.d/ -%{_libdir}/pm-utils/module.d +%{_libdir}/pm-utils/power.d/* +%{_libdir}/pm-utils/sleep.d/* %{_bindir}/on_ac_power %{_bindir}/pm-is-supported %{_bindir}/pm-utils-bugreport-info.sh @@ -102,12 +107,28 @@ rm -rf $RPM_BUILD_ROOT %ghost %verify(not md5 size mtime) %{_localstatedir}/log/pm-suspend.log +%files filesystem +%defattr(-,root,root,-) +%dir %{_sysconfdir}/pm/ +%dir %{_sysconfdir}/pm/config.d +%dir %{_sysconfdir}/pm/power.d +%dir %{_sysconfdir}/pm/sleep.d +%dir %{_libdir}/pm-utils/ +%dir %{_libdir}/pm-utils/module.d +%dir %{_libdir}/pm-utils/power.d +%dir %{_libdir}/pm-utils/sleep.d + + %files devel %defattr(-,root,root,-) %{_libdir}/pkgconfig/pm-utils.pc %changelog +* Sat Jul 18 2009 Till Maas - 1.2.5-4 +- Remove atd script +- create filesystem subpackage for hooks + * Fri Jul 17 2009 Marcela Ma??l????ov?? - 1.2.5-3 - move atd script into pm-utils From jstanley at fedoraproject.org Sat Jul 18 21:56:25 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Sat, 18 Jul 2009 21:56:25 +0000 (UTC) Subject: rpms/php-pecl-json/EL-5 php-pecl-json.spec,1.2,1.3 Message-ID: <20090718215625.535FD11C00D3@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/php-pecl-json/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1121/EL-5 Modified Files: php-pecl-json.spec Log Message: Add provides for php-json for Fedora compatibility Index: php-pecl-json.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-json/EL-5/php-pecl-json.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-json.spec 13 Feb 2009 18:45:58 -0000 1.2 +++ php-pecl-json.spec 18 Jul 2009 21:55:55 -0000 1.3 @@ -6,7 +6,7 @@ Name: php-pecl-json Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PECL library to implement JSON in PHP Group: Development/Libraries @@ -26,7 +26,7 @@ Requires: php(api) = %{php_core_api} Requires: php-api = %{php_apiver} %endif -Provides: php-pecl(json) = %{version} +Provides: php-pecl(json) = %{version}, php-json %description @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Jon Stanley - 1.2.1-4 +- Add Provides php-json for Fedora compatibiltiy - bz512295 + * Fri Feb 13 2009 Remi Collet 1.2.1-3 - add configuration file From jstanley at fedoraproject.org Sat Jul 18 21:56:25 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Sat, 18 Jul 2009 21:56:25 +0000 (UTC) Subject: rpms/php-pecl-json/EL-4 php-pecl-json.spec,1.1,1.2 Message-ID: <20090718215625.38F0111C0099@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/php-pecl-json/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1121/EL-4 Modified Files: php-pecl-json.spec Log Message: Add provides for php-json for Fedora compatibility Index: php-pecl-json.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-json/EL-4/php-pecl-json.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-json.spec 8 Aug 2008 04:47:56 -0000 1.1 +++ php-pecl-json.spec 18 Jul 2009 21:55:55 -0000 1.2 @@ -6,7 +6,7 @@ Name: php-pecl-json Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PECL library to implement JSON in PHP Group: Development/Libraries @@ -26,7 +26,7 @@ Requires: php(api) = %{php_core_api} Requires: php-api = %{php_apiver} %endif -Provides: php-pecl(json) = %{version} +Provides: php-pecl(json) = %{version}, php-json %description @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{pecl_xmldir}/%{pecl_name}.xml %changelog +* Sat Jul 17 2009 Jon Stanley - 1.2.1-3 +- Add provides for php-json for Fedora compatibility - bz512295 + * Fri Aug 08 2008 Nigel Jones - 1.2.1-2 - Fix Requires: * Thu Aug 07 2008 Nigel Jones - 1.2.1-1 From pbrobinson at fedoraproject.org Sat Jul 18 22:12:07 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 22:12:07 +0000 (UTC) Subject: rpms/libplist/devel .cvsignore, 1.2, 1.3 libplist.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090718221207.AD91811C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/libplist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4118 Modified Files: .cvsignore libplist.spec sources Log Message: - New upstream 0.13 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libplist/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 May 2009 07:10:50 -0000 1.2 +++ .cvsignore 18 Jul 2009 22:12:07 -0000 1.3 @@ -1 +1 @@ -libplist-0.12.tar.bz2 +libplist-0.13.tar.bz2 Index: libplist.spec =================================================================== RCS file: /cvs/pkgs/rpms/libplist/devel/libplist.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libplist.spec 13 May 2009 07:10:50 -0000 1.1 +++ libplist.spec 18 Jul 2009 22:12:07 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libplist -Version: 0.12 -Release: 2%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Library for manipulating Apple Binary and XML Property Lists Group: System Environment/Libraries @@ -68,9 +68,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS COPYING.LESSER README %{_bindir}/plutil -%{_bindir}/plutil-0.12 +%{_bindir}/plutil-0.13 %{_libdir}/libplist.so.0 -%{_libdir}/libplist.so.0.0.12 +%{_libdir}/libplist.so.0.0.13 %files devel %defattr(-,root,root,-) @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/libplist %changelog +* Mon May 11 2009 Peter Robinson 0.13-1 +- New upstream 0.13 release + * Mon May 11 2009 Peter Robinson 0.12-2 - Further review updates Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libplist/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 May 2009 07:10:50 -0000 1.2 +++ sources 18 Jul 2009 22:12:07 -0000 1.3 @@ -1 +1 @@ -a16b81a0cfea5411d0523b9629d94b65 libplist-0.12.tar.bz2 +417175b53245a1810d1b7675778657e1 libplist-0.13.tar.bz2 From oget at fedoraproject.org Sat Jul 18 22:16:42 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 18 Jul 2009 22:16:42 +0000 (UTC) Subject: rpms/deco-archive/devel .cvsignore, 1.4, 1.5 deco-archive.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090718221642.0EE0B11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/deco-archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4508 Modified Files: .cvsignore deco-archive.spec sources Log Message: * Fri Jul 09 2009 Orcan Ogetbil 1.5-1 - Version update. New extensions: deb, udeb, tar.xz, txz, xz Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 Jan 2009 02:00:40 -0000 1.4 +++ .cvsignore 18 Jul 2009 22:16:11 -0000 1.5 @@ -1 +1 @@ -deco-archive-1.4.tar.gz +deco-archive-1.5.tar.gz Index: deco-archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/deco-archive.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- deco-archive.spec 5 Apr 2009 01:39:40 -0000 1.5 +++ deco-archive.spec 18 Jul 2009 22:16:11 -0000 1.6 @@ -1,6 +1,6 @@ Name: deco-archive -Version: 1.4 -Release: 3%{?dist} +Version: 1.5 +Release: 1%{?dist} Summary: Extraction scripts for various archive formats for use of deco Group: Applications/Archiving License: GPLv3 @@ -64,8 +64,6 @@ rm -rf %{buildroot} %define do_triggerin() for i in %1; do (if [ ! -e %{_var}/lib/deco/$i ]; then ln -s ../../..%{_datadir}/%{name}/"$i" %{_var}/lib/deco/ || : ; fi); done; %define do_triggerun() ( [ $2 -gt 0 ] && [ $1 -gt 0 ] ) || (for i in %1; do ( rm -f %{_var}/lib/deco/$i || : ); done;) -# Not handled (yet?): -# dpkg-deb (deb,udeb) %triggerin -- binutils %do_triggerin {a,ar} @@ -102,6 +100,11 @@ rm -rf %{buildroot} %triggerun -- cabextract %do_triggerun cab +%triggerin -- dpkg +%do_triggerin {deb,udeb} +%triggerun -- dpkg +%do_triggerun {deb,udeb} + %triggerin -- unrar %do_triggerin {cbr,"rar|[rst][0-9]{2}","part[0-9]+\.rar"} %triggerun -- unrar @@ -132,9 +135,9 @@ rm -rf %{buildroot} %triggerun -- lzip %do_triggerun {lz,"tar\.lz"} -%triggerin -- lzma +%triggerin -- lzma-compat %do_triggerin {lzma,"tar\.lzma",tlz} -%triggerun -- lzma +%triggerun -- lzma-compat %do_triggerun {lzma,"tar\.lzma",tlz} %triggerin -- lzop @@ -142,6 +145,11 @@ rm -rf %{buildroot} %triggerun -- lzop %do_triggerun lzo +%triggerin -- xz +%do_triggerin {"tar\.xz",txz,xz} +%triggerun -- xz +%do_triggerun {"tar\.xz",txz,xz} + %triggerin -- rzip %do_triggerin {rz,"tar\.rz"} %triggerun -- rzip @@ -163,6 +171,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 09 2009 Orcan Ogetbil 1.5-1 +- Version update. New extensions: deb, udeb, tar.xz, txz, xz + * Sat Apr 04 2009 Orcan Ogetbil 1.4-3 - Handle .zoo format with unzoo (if installed) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 Jan 2009 02:00:40 -0000 1.4 +++ sources 18 Jul 2009 22:16:11 -0000 1.5 @@ -1 +1 @@ -b48cd159fb73a65a4d6e491351c2e57e deco-archive-1.4.tar.gz +e49e1066c5376132acdebe3f2e9d2d84 deco-archive-1.5.tar.gz From mjg59 at fedoraproject.org Sat Jul 18 22:50:14 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Sat, 18 Jul 2009 22:50:14 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-bluetooth-autosuspend.diff, NONE, 1.1 linux-2.6-driver-level-usb-autosuspend.diff, NONE, 1.1 linux-2.6-fix-usb-serial-autosuspend.diff, NONE, 1.1 linux-2.6-qcserial-autosuspend.diff, NONE, 1.1 kernel.spec, 1.1634, 1.1635 Message-ID: <20090718225014.CB1A111C00E5@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10477 Modified Files: kernel.spec Added Files: linux-2.6-bluetooth-autosuspend.diff linux-2.6-driver-level-usb-autosuspend.diff linux-2.6-fix-usb-serial-autosuspend.diff linux-2.6-qcserial-autosuspend.diff Log Message: * Sat Jul 18 2009 Matthew Garrett - linux-2.6-driver-level-usb-autosuspend.diff - allow drivers to enable autopm - linux-2.6-fix-usb-serial-autosuspend.diff - fix generic usb-serial autopm - linux-2.6-qcserial-autosuspend.diff - enable autopm by default on qcserial - linux-2.6-bluetooth-autosuspend.diff - enable autopm by default on btusb linux-2.6-bluetooth-autosuspend.diff: btusb.c | 185 +++++++++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 143 insertions(+), 42 deletions(-) --- NEW FILE linux-2.6-bluetooth-autosuspend.diff --- commit 7ed6456e2717d641a287bf6a83c1bf80395d312c Author: Matthew Garrett Date: Sat Jul 18 23:19:10 2009 +0100 Add support for bluetooth autosuspend diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index e70c57e..2f4b4c6 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -145,6 +145,7 @@ static struct usb_device_id blacklist_table[] = { #define BTUSB_INTR_RUNNING 0 #define BTUSB_BULK_RUNNING 1 #define BTUSB_ISOC_RUNNING 2 +#define BTUSB_SUSPENDING 3 struct btusb_data { struct hci_dev *hdev; @@ -157,11 +158,13 @@ struct btusb_data { unsigned long flags; struct work_struct work; + struct work_struct waker; struct usb_anchor tx_anchor; struct usb_anchor intr_anchor; struct usb_anchor bulk_anchor; struct usb_anchor isoc_anchor; + struct usb_anchor deferred; struct usb_endpoint_descriptor *intr_ep; struct usb_endpoint_descriptor *bulk_tx_ep; @@ -174,6 +177,7 @@ struct btusb_data { unsigned int sco_num; int isoc_altsetting; int suspend_count; + int did_iso_resume:1; }; static void btusb_intr_complete(struct urb *urb) @@ -202,6 +206,10 @@ static void btusb_intr_complete(struct urb *urb) if (!test_bit(BTUSB_INTR_RUNNING, &data->flags)) return; + if (test_bit(BTUSB_SUSPENDING, &data->flags)) + return; + + usb_mark_last_busy(data->udev); usb_anchor_urb(urb, &data->intr_anchor); err = usb_submit_urb(urb, GFP_ATOMIC); @@ -285,6 +293,9 @@ static void btusb_bulk_complete(struct urb *urb) if (!test_bit(BTUSB_BULK_RUNNING, &data->flags)) return; + if (test_bit(BTUSB_SUSPENDING, &data->flags)) + return; + usb_anchor_urb(urb, &data->bulk_anchor); err = usb_submit_urb(urb, GFP_ATOMIC); @@ -320,6 +331,7 @@ static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags) return -ENOMEM; } + usb_mark_last_busy(data->udev); pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress); usb_fill_bulk_urb(urb, data->udev, pipe, @@ -327,6 +339,7 @@ static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags) urb->transfer_flags |= URB_FREE_BUFFER; + usb_mark_last_busy(data->udev); usb_anchor_urb(urb, &data->bulk_anchor); err = usb_submit_urb(urb, mem_flags); @@ -375,6 +388,9 @@ static void btusb_isoc_complete(struct urb *urb) if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags)) return; + if (test_bit(BTUSB_SUSPENDING, &data->flags)) + return; + usb_anchor_urb(urb, &data->isoc_anchor); err = usb_submit_urb(urb, GFP_ATOMIC); @@ -490,6 +506,12 @@ static int btusb_open(struct hci_dev *hdev) BT_DBG("%s", hdev->name); + err = usb_autopm_get_interface(data->intf); + if (err < 0) + return err; + data->intf->needs_remote_wakeup = 1; + usb_autopm_put_interface(data->intf); + if (test_and_set_bit(HCI_RUNNING, &hdev->flags)) return 0; @@ -517,9 +539,17 @@ failed: return err; } +static void btusb_stop_traffic(struct btusb_data *data) +{ + usb_kill_anchored_urbs(&data->intr_anchor); + usb_kill_anchored_urbs(&data->bulk_anchor); + usb_kill_anchored_urbs(&data->isoc_anchor); +} + static int btusb_close(struct hci_dev *hdev) { struct btusb_data *data = hdev->driver_data; + int err; BT_DBG("%s", hdev->name); @@ -529,13 +559,15 @@ static int btusb_close(struct hci_dev *hdev) cancel_work_sync(&data->work); clear_bit(BTUSB_ISOC_RUNNING, &data->flags); - usb_kill_anchored_urbs(&data->isoc_anchor); - clear_bit(BTUSB_BULK_RUNNING, &data->flags); - usb_kill_anchored_urbs(&data->bulk_anchor); - clear_bit(BTUSB_INTR_RUNNING, &data->flags); - usb_kill_anchored_urbs(&data->intr_anchor); + btusb_stop_traffic(data); + + err = usb_autopm_get_interface(data->intf); + if (!err) { + data->intf->needs_remote_wakeup = 0; + usb_autopm_put_interface(data->intf); + } return 0; } @@ -558,7 +590,7 @@ static int btusb_send_frame(struct sk_buff *skb) struct usb_ctrlrequest *dr; struct urb *urb; unsigned int pipe; - int err; + int err, susp; BT_DBG("%s", hdev->name); @@ -567,6 +599,7 @@ static int btusb_send_frame(struct sk_buff *skb) switch (bt_cb(skb)->pkt_type) { case HCI_COMMAND_PKT: + BT_DBG("HCI_COMMAND_PKT"); urb = usb_alloc_urb(0, GFP_ATOMIC); if (!urb) return -ENOMEM; @@ -592,6 +625,7 @@ static int btusb_send_frame(struct sk_buff *skb) break; case HCI_ACLDATA_PKT: + BT_DBG("HCI_ACLDATA_PKT"); if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1) return -ENODEV; @@ -609,6 +643,7 @@ static int btusb_send_frame(struct sk_buff *skb) break; case HCI_SCODATA_PKT: + BT_DBG("HCI_SCODATA_PKT"); if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1) return -ENODEV; @@ -639,17 +674,22 @@ static int btusb_send_frame(struct sk_buff *skb) return -EILSEQ; } + spin_lock(&data->lock); + susp = test_bit(BTUSB_SUSPENDING, &data->flags); usb_anchor_urb(urb, &data->tx_anchor); - - err = usb_submit_urb(urb, GFP_ATOMIC); - if (err < 0) { - BT_ERR("%s urb %p submission failed", hdev->name, urb); - kfree(urb->setup_packet); - usb_unanchor_urb(urb); + if (susp) { + schedule_work(&data->waker); + err = 0; + } else { + err = usb_submit_urb(urb, GFP_ATOMIC); + if (err < 0) { + BT_ERR("%s urb %p submission failed", hdev->name, urb); + kfree(urb->setup_packet); + usb_unanchor_urb(urb); + } + usb_free_urb(urb); } - - usb_free_urb(urb); - + spin_unlock(&data->lock); return err; } @@ -742,9 +782,26 @@ static void btusb_work(struct work_struct *work) usb_kill_anchored_urbs(&data->isoc_anchor); __set_isoc_interface(hdev, 0); + if (data->did_iso_resume) { + data->did_iso_resume = 0; + usb_autopm_put_interface(data->isoc); + } } } +static void btusb_waker(struct work_struct *work) +{ + struct btusb_data *data = container_of(work, struct btusb_data, waker); + int err; + + BUG_ON(data == NULL); + BT_DBG("about to resume"); + BUG_ON(data->intf == NULL); + err = usb_autopm_get_interface(data->intf); + if (!err) + usb_autopm_put_interface(data->intf); +} + static int btusb_probe(struct usb_interface *intf, const struct usb_device_id *id) { @@ -814,11 +871,13 @@ static int btusb_probe(struct usb_interface *intf, spin_lock_init(&data->lock); INIT_WORK(&data->work, btusb_work); + INIT_WORK(&data->waker, btusb_waker); init_usb_anchor(&data->tx_anchor); init_usb_anchor(&data->intr_anchor); init_usb_anchor(&data->bulk_anchor); init_usb_anchor(&data->isoc_anchor); + init_usb_anchor(&data->deferred); hdev = hci_alloc_dev(); if (!hdev) { @@ -908,6 +967,7 @@ static int btusb_probe(struct usb_interface *intf, } usb_set_intfdata(intf, data); + usb_device_autosuspend_enable(data->udev); return 0; } @@ -947,60 +1007,100 @@ static int btusb_suspend(struct usb_interface *intf, pm_message_t message) { struct btusb_data *data = usb_get_intfdata(intf); - BT_DBG("intf %p", intf); + BT_DBG("%s called\n", __func__); if (data->suspend_count++) return 0; - cancel_work_sync(&data->work); + spin_lock_irq(&data->lock); + if (interface_to_usbdev(intf)->auto_pm && + !usb_anchor_empty(&data->tx_anchor)) { + spin_unlock_irq(&data->lock); + return -EBUSY; + } + + set_bit(BTUSB_SUSPENDING, &data->flags); + spin_unlock_irq(&data->lock); + cancel_work_sync(&data->work); + btusb_stop_traffic(data); usb_kill_anchored_urbs(&data->tx_anchor); + return 0; +} - usb_kill_anchored_urbs(&data->isoc_anchor); - usb_kill_anchored_urbs(&data->bulk_anchor); - usb_kill_anchored_urbs(&data->intr_anchor); +static int play_deferred(struct btusb_data *data) +{ + struct urb *urb; + int err = 0; - return 0; + while ((urb = usb_get_from_anchor(&data->tx_anchor))) { + err = usb_submit_urb(urb, GFP_ATOMIC); + if (err < 0) + break; + } + + usb_scuttle_anchored_urbs(&data->tx_anchor); + return err; } + static int btusb_resume(struct usb_interface *intf) { struct btusb_data *data = usb_get_intfdata(intf); struct hci_dev *hdev = data->hdev; - int err; - - BT_DBG("intf %p", intf); + int ret = 0; if (--data->suspend_count) return 0; - if (!test_bit(HCI_RUNNING, &hdev->flags)) - return 0; + if (test_bit(HCI_RUNNING, &hdev->flags)) { + spin_lock_irq(&data->lock); + ret = play_deferred(data); + clear_bit(BTUSB_SUSPENDING, &data->flags); + spin_unlock_irq(&data->lock); - if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) { - err = btusb_submit_intr_urb(hdev, GFP_NOIO); - if (err < 0) { - clear_bit(BTUSB_INTR_RUNNING, &data->flags); - return err; + if (ret < 0) { + clear_bit(HCI_RUNNING, &hdev->flags); + return ret; } + + ret = btusb_submit_intr_urb(hdev, GFP_NOIO); + if (ret < 0) { + clear_bit(HCI_RUNNING, &hdev->flags); + return ret; + } + } else { + spin_lock_irq(&data->lock); + clear_bit(BTUSB_SUSPENDING, &data->flags); + spin_unlock_irq(&data->lock); } - if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) { - err = btusb_submit_bulk_urb(hdev, GFP_NOIO); - if (err < 0) { + if (hdev->conn_hash.acl_num > 0) { + ret = btusb_submit_bulk_urb(hdev, GFP_NOIO); + if (ret < 0) { clear_bit(BTUSB_BULK_RUNNING, &data->flags); - return err; - } else - btusb_submit_bulk_urb(hdev, GFP_NOIO); + return ret; + } else { + ret = btusb_submit_bulk_urb(hdev, GFP_NOIO); + if (ret < 0) { + clear_bit(BTUSB_BULK_RUNNING, &data->flags); + usb_kill_anchored_urbs(&data->bulk_anchor); + return ret; + } + } } - if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) { - if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0) - clear_bit(BTUSB_ISOC_RUNNING, &data->flags); - else - btusb_submit_isoc_urb(hdev, GFP_NOIO); + if (data->isoc) { + if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) { + ret = btusb_submit_isoc_urb(hdev, GFP_NOIO); + if (ret < 0) + clear_bit(BTUSB_ISOC_RUNNING, &data->flags); + else + btusb_submit_isoc_urb(hdev, GFP_NOIO); + } } + schedule_work(&data->work); return 0; } @@ -1011,6 +1111,7 @@ static struct usb_driver btusb_driver = { .suspend = btusb_suspend, .resume = btusb_resume, .id_table = btusb_table, + .supports_autosuspend = 1, }; static int __init btusb_init(void) linux-2.6-driver-level-usb-autosuspend.diff: drivers/usb/core/driver.c | 15 +++++++++++++++ include/linux/usb.h | 4 ++++ 2 files changed, 19 insertions(+) --- NEW FILE linux-2.6-driver-level-usb-autosuspend.diff --- commit 0f592e33934bf6108e33e34f00b425f98ee833ef Author: Matthew Garrett Date: Wed Jul 8 19:04:23 2009 +0100 usb: Allow drivers to enable USB autosuspend on a per-device basis USB autosuspend is currently only enabled by default for hubs. On other hardware the decision is made by userspace. This is unnecessary in cases where we know that the hardware supports autosuspend, so this patch adds a function to allow drivers to enable it at probe time. Signed-off-by: Matthew Garrett diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index 69e5773..6e81caa 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c @@ -1560,6 +1560,21 @@ void usb_autopm_put_interface_async(struct usb_interface *intf) EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async); /** + * usb_device_autosuspend_enable - enable autosuspend on a device + * @udev: the usb_device to be autosuspended + * + * This routine should be called by an interface driver when it knows that + * the device in question supports USB autosuspend. + * + */ +void usb_device_autosuspend_enable(struct usb_device *udev) +{ + udev->autosuspend_disabled = 0; + udev->autoresume_disabled = 0; +} +EXPORT_SYMBOL_GPL(usb_device_autosuspend_enable); + +/** * usb_autopm_get_interface - increment a USB interface's PM-usage counter * @intf: the usb_interface whose counter should be incremented * diff --git a/include/linux/usb.h b/include/linux/usb.h index b1e3c2f..61bddbe 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -543,6 +543,7 @@ extern struct usb_device *usb_find_device(u16 vendor_id, u16 product_id); /* USB autosuspend and autoresume */ #ifdef CONFIG_USB_SUSPEND +extern void usb_device_autosuspend_enable(struct usb_device *udev); extern int usb_autopm_set_interface(struct usb_interface *intf); extern int usb_autopm_get_interface(struct usb_interface *intf); extern void usb_autopm_put_interface(struct usb_interface *intf); @@ -568,6 +569,9 @@ static inline void usb_mark_last_busy(struct usb_device *udev) #else +static inline void usb_device_autosuspend_enable(struct usb_device *udev) +{ } + static inline int usb_autopm_set_interface(struct usb_interface *intf) { return 0; } linux-2.6-fix-usb-serial-autosuspend.diff: usb-serial.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- NEW FILE linux-2.6-fix-usb-serial-autosuspend.diff --- commit 3b8e1210f0a558145ba87eddb20f7b104676d6f6 Author: Oliber Neukum Date: Sat Jul 18 07:19:04 2009 +0200 usb: fix counter logic in opening serial converters the usage counter must be increased only after autoresumption diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index bd7581b..c6f69c0 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c @@ -214,15 +214,13 @@ static int serial_open (struct tty_struct *tty, struct file *filp) goto bailout_port_put; } - ++port->port.count; - /* set up our port structure making the tty driver * remember our port object, and us it */ tty->driver_data = port; tty_port_tty_set(&port->port, tty); /* If the console is attached, the device is already open */ - if (port->port.count == 1 && !port->console) { + if (!port->port.count && !port->console) { /* lock this module before we call it * this may fail, which means we must bail out, @@ -240,12 +238,16 @@ static int serial_open (struct tty_struct *tty, struct file *filp) if (retval) goto bailout_module_put; + ++port->port.count; + /* only call the device specific open if this * is the first time the port is opened */ retval = serial->type->open(tty, port, filp); if (retval) goto bailout_interface_put; mutex_unlock(&serial->disc_mutex); + } else { + ++port->port.count; } mutex_unlock(&port->mutex); /* Now do the correct tty layer semantics */ linux-2.6-qcserial-autosuspend.diff: qcserial.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE linux-2.6-qcserial-autosuspend.diff --- commit b2bcfa17349e5a6a01170b5269ee261dbd762a0c Author: Matthew Garrett Date: Sat Jul 18 14:43:36 2009 +0100 usb: enable autosuspend by default on qcserial All qcserial hardware supports autosuspend properly. Enable it by default. Signed-off-by: Matthew Garrett diff --git a/drivers/usb/serial/qcserial.c b/drivers/usb/serial/qcserial.c index 7528b8d..959a176 100644 --- a/drivers/usb/serial/qcserial.c +++ b/drivers/usb/serial/qcserial.c @@ -74,6 +74,8 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id) ifnum = serial->interface->cur_altsetting->desc.bInterfaceNumber; dbg("This Interface = %d", ifnum); + usb_device_autosuspend_enable(serial->dev); + switch (nintf) { case 1: /* QDL mode */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1634 retrieving revision 1.1635 diff -u -p -r1.1634 -r1.1635 --- kernel.spec 17 Jul 2009 02:07:24 -0000 1.1634 +++ kernel.spec 18 Jul 2009 22:50:13 -0000 1.1635 @@ -616,6 +616,10 @@ Patch250: linux-2.6-debug-sizeof-structs Patch260: linux-2.6-debug-nmi-timeout.patch Patch270: linux-2.6-debug-taint-vm.patch Patch280: linux-2.6-debug-spinlock-taint.patch +Patch300: linux-2.6-driver-level-usb-autosuspend.diff +Patch301: linux-2.6-fix-usb-serial-autosuspend.diff +Patch302: linux-2.6-qcserial-autosuspend.diff +Patch303: linux-2.6-bluetooth-autosuspend.diff Patch340: linux-2.6-debug-vm-would-have-oomkilled.patch Patch360: linux-2.6-debug-always-inline-kzalloc.patch Patch380: linux-2.6-defaults-pci_no_msi.patch @@ -1147,6 +1151,10 @@ ApplyPatch linux-2.6-execshield.patch ApplyPatch linux-2.6-nfsd4-proots.patch # USB +ApplyPatch linux-2.6-driver-level-usb-autosuspend.diff +ApplyPatch linux-2.6-fix-usb-serial-autosuspend.diff +ApplyPatch linux-2.6-qcserial-autosuspend.diff +ApplyPatch linux-2.6-bluetooth-autosuspend.diff # ACPI ApplyPatch linux-2.6-defaults-acpi-video.patch @@ -1875,6 +1883,12 @@ fi # and build. %changelog +* Sat Jul 18 2009 Matthew Garrett +- linux-2.6-driver-level-usb-autosuspend.diff - allow drivers to enable autopm +- linux-2.6-fix-usb-serial-autosuspend.diff - fix generic usb-serial autopm +- linux-2.6-qcserial-autosuspend.diff - enable autopm by default on qcserial +- linux-2.6-bluetooth-autosuspend.diff - enable autopm by default on btusb + * Thu Jul 16 2009 Chuck Ebbert - 2.6.31-rc3-git3 From oget at fedoraproject.org Sat Jul 18 23:05:55 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 18 Jul 2009 23:05:55 +0000 (UTC) Subject: rpms/deco-archive/devel deco-archive.spec,1.6,1.7 Message-ID: <20090718230555.52A1C11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/deco-archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13959 Modified Files: deco-archive.spec Log Message: Correct xz-lzma-compat package name Index: deco-archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/deco-archive.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- deco-archive.spec 18 Jul 2009 22:16:11 -0000 1.6 +++ deco-archive.spec 18 Jul 2009 23:05:24 -0000 1.7 @@ -135,9 +135,9 @@ rm -rf %{buildroot} %triggerun -- lzip %do_triggerun {lz,"tar\.lz"} -%triggerin -- lzma-compat +%triggerin -- xz-lzma-compat %do_triggerin {lzma,"tar\.lzma",tlz} -%triggerun -- lzma-compat +%triggerun -- xz-lzma-compat %do_triggerun {lzma,"tar\.lzma",tlz} %triggerin -- lzop From oget at fedoraproject.org Sat Jul 18 23:07:48 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Sat, 18 Jul 2009 23:07:48 +0000 (UTC) Subject: rpms/deco-archive/devel deco-archive.spec,1.7,1.8 Message-ID: <20090718230748.F09FC11C0099@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/deco-archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14437 Modified Files: deco-archive.spec Log Message: Add comment to the changelog about xz-lzma-compat usage Index: deco-archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/deco-archive.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- deco-archive.spec 18 Jul 2009 23:05:24 -0000 1.7 +++ deco-archive.spec 18 Jul 2009 23:07:48 -0000 1.8 @@ -173,6 +173,7 @@ rm -rf %{buildroot} %changelog * Fri Jul 09 2009 Orcan Ogetbil 1.5-1 - Version update. New extensions: deb, udeb, tar.xz, txz, xz +- Handle .lzma via xz-lzma-compat from now on * Sat Apr 04 2009 Orcan Ogetbil 1.4-3 - Handle .zoo format with unzoo (if installed) From pbrobinson at fedoraproject.org Sat Jul 18 23:09:08 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 23:09:08 +0000 (UTC) Subject: rpms/libplist/F-11 .cvsignore, 1.1, 1.2 libplist.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090718230908.2B1BF11C0099@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/libplist/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14910 Modified Files: .cvsignore libplist.spec sources Log Message: - New upstream 0.13 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 May 2009 05:03:16 -0000 1.1 +++ .cvsignore 18 Jul 2009 23:08:37 -0000 1.2 @@ -0,0 +1 @@ +libplist-0.13.tar.bz2 Index: libplist.spec =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-11/libplist.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libplist.spec 13 May 2009 07:17:10 -0000 1.1 +++ libplist.spec 18 Jul 2009 23:08:37 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libplist -Version: 0.12 -Release: 3%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Library for manipulating Apple Binary and XML Property Lists Group: System Environment/Libraries @@ -68,9 +68,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS COPYING.LESSER README %{_bindir}/plutil -%{_bindir}/plutil-0.12 +%{_bindir}/plutil-0.13 %{_libdir}/libplist.so.0 -%{_libdir}/libplist.so.0.0.12 +%{_libdir}/libplist.so.0.0.13 %files devel %defattr(-,root,root,-) @@ -83,11 +83,11 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/libplist %changelog -* Wed May 13 2009 Peter Robinson 0.12-3 -- Further review updates +* Mon May 11 2009 Peter Robinson 0.13-1 +- New upstream 0.13 release * Mon May 11 2009 Peter Robinson 0.12-2 -- Buld bump +- Further review updates * Sun May 10 2009 Peter Robinson 0.12-1 - Update to official tarball release, some review fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 May 2009 07:12:30 -0000 1.2 +++ sources 18 Jul 2009 23:08:37 -0000 1.3 @@ -1 +1 @@ -a16b81a0cfea5411d0523b9629d94b65 libplist-0.12.tar.bz2 +417175b53245a1810d1b7675778657e1 libplist-0.13.tar.bz2 From pbrobinson at fedoraproject.org Sat Jul 18 23:10:08 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 18 Jul 2009 23:10:08 +0000 (UTC) Subject: rpms/libplist/F-10 .cvsignore, 1.1, 1.2 libplist.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090718231008.0ED1C11C025D@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/libplist/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15273 Modified Files: .cvsignore libplist.spec sources Log Message: - New upstream 0.13 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 13 May 2009 05:03:16 -0000 1.1 +++ .cvsignore 18 Jul 2009 23:10:07 -0000 1.2 @@ -0,0 +1 @@ +libplist-0.13.tar.bz2 Index: libplist.spec =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-10/libplist.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libplist.spec 13 May 2009 07:19:43 -0000 1.1 +++ libplist.spec 18 Jul 2009 23:10:07 -0000 1.2 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libplist -Version: 0.12 -Release: 3%{?dist} +Version: 0.13 +Release: 1%{?dist} Summary: Library for manipulating Apple Binary and XML Property Lists Group: System Environment/Libraries @@ -68,9 +68,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS COPYING.LESSER README %{_bindir}/plutil -%{_bindir}/plutil-0.12 +%{_bindir}/plutil-0.13 %{_libdir}/libplist.so.0 -%{_libdir}/libplist.so.0.0.12 +%{_libdir}/libplist.so.0.0.13 %files devel %defattr(-,root,root,-) @@ -83,11 +83,11 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/libplist %changelog -* Wed May 13 2009 Peter Robinson 0.12-3 -- Further review updates +* Mon May 11 2009 Peter Robinson 0.13-1 +- New upstream 0.13 release * Mon May 11 2009 Peter Robinson 0.12-2 -- Buld bump +- Further review updates * Sun May 10 2009 Peter Robinson 0.12-1 - Update to official tarball release, some review fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libplist/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 May 2009 07:13:35 -0000 1.2 +++ sources 18 Jul 2009 23:10:07 -0000 1.3 @@ -1 +1 @@ -a16b81a0cfea5411d0523b9629d94b65 libplist-0.12.tar.bz2 +417175b53245a1810d1b7675778657e1 libplist-0.13.tar.bz2 From hadess at fedoraproject.org Sat Jul 18 23:44:51 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Sat, 18 Jul 2009 23:44:51 +0000 (UTC) Subject: rpms/bluez/devel .cvsignore, 1.40, 1.41 bluez.spec, 1.81, 1.82 sources, 1.40, 1.41 Message-ID: <20090718234452.004ED11C0099@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24450 Modified Files: .cvsignore bluez.spec sources Log Message: * Sun Jul 19 2009 Bastien Nocera 4.46-1 - Update to 4.46 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/.cvsignore,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- .cvsignore 8 Jul 2009 02:01:43 -0000 1.40 +++ .cvsignore 18 Jul 2009 23:44:21 -0000 1.41 @@ -1 +1 @@ -bluez-4.45.tar.gz +bluez-4.46.tar.gz Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- bluez.spec 8 Jul 2009 17:07:44 -0000 1.81 +++ bluez.spec 18 Jul 2009 23:44:21 -0000 1.82 @@ -1,6 +1,6 @@ Summary: Bluetooth utilities Name: bluez -Version: 4.45 +Version: 4.46 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -270,6 +270,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Sun Jul 19 2009 Bastien Nocera 4.46-1 +- Update to 4.46 + * Wed Jul 08 2009 Bastien Nocera 4.45-1 - Update to 4.45 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 8 Jul 2009 02:01:43 -0000 1.40 +++ sources 18 Jul 2009 23:44:21 -0000 1.41 @@ -1 +1 @@ -fb1a02a8008326eabe383dc6fb01b05d bluez-4.45.tar.gz +ed24b291e9a724a37bc8e9d04adae413 bluez-4.46.tar.gz From rdieter at fedoraproject.org Sun Jul 19 00:32:10 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 00:32:10 +0000 (UTC) Subject: rpms/arts/devel arts.spec,1.93,1.94 Message-ID: <20090719003210.8E7FD11C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/arts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4059 Modified Files: arts.spec Log Message: * Sat Jul 18 2009 Rex Dieter - 8:1.5.10-6 - FTBFS arts-1.5.10-5.fc11 (#511653) - -devel: Requires: %{name}%_isa ... Index: arts.spec =================================================================== RCS file: /cvs/pkgs/rpms/arts/devel/arts.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- arts.spec 2 Mar 2009 16:16:08 -0000 1.93 +++ arts.spec 19 Jul 2009 00:32:08 -0000 1.94 @@ -27,7 +27,7 @@ Summary: aRts (analog realtime synthesiz Group: System Environment/Daemons Epoch: 8 Version: 1.5.10 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Url: http://www.kde.org @@ -83,7 +83,7 @@ playing a wave file with some effects. %package devel Group: Development/Libraries Summary: Development files for the aRts sound server -Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} Requires: %{qt3}-devel Requires: pkgconfig Requires: glib2-devel @@ -104,6 +104,8 @@ Install %{name}-devel if you intend to w %patch51 -p1 -b .libtool-shlibext %if %{make_cvs} +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh make -f admin/Makefile.common cvs %endif @@ -208,6 +210,10 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Rex Dieter - 8:1.5.10-6 +- FTBFS arts-1.5.10-5.fc11 (#511653) +- -devel: Requires: %%{name}%%_isa ... + * Mon Mar 02 2009 Rex Dieter - 8:1.5.10-5 - s/i386/%%ix86/ From rdieter at fedoraproject.org Sun Jul 19 00:40:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 00:40:42 +0000 (UTC) Subject: rpms/kdelibs3/devel kdelibs3.spec,1.61,1.62 Message-ID: <20090719004043.0273611C025D@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6415 Modified Files: kdelibs3.spec Log Message: * Sat Jul 18 2009 Rex Dieter - 3.5.10-12 - FTBFS kdelibs3-3.5.10-11.fc11 (#511571) - -devel: Requires: %{name}%_isa ... Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/devel/kdelibs3.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- kdelibs3.spec 19 Apr 2009 21:37:04 -0000 1.61 +++ kdelibs3.spec 19 Jul 2009 00:40:12 -0000 1.62 @@ -208,7 +208,7 @@ Provides: kdelibs3-devel = %{version}-% Obsoletes: kdelibs-devel < 6:%{version}-%{release} Provides: kdelibs-devel = 6:%{version}-%{release} %endif -Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} Requires: %{qt3}-devel Requires: openssl-devel %{?arts:Requires: arts-devel} @@ -278,7 +278,9 @@ format for easy browsing sed -i -e "s,^#define KDE_VERSION_STRING .*,#define KDE_VERSION_STRING \"%{version}-%{release} %{distname}\"," kdecore/kdeversion.h %if %{make_cvs} - make -f admin/Makefile.common cvs +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh + make -f admin/Makefile.common cvs %endif @@ -623,6 +625,10 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Sat Jul 18 2009 Rex Dieter - 3.5.10-12 +- FTBFS kdelibs3-3.5.10-11.fc11 (#511571) +- -devel: Requires: %%{name}%%_isa ... + * Sun Apr 19 2009 Rex Dieter - 3.5.10-11 - update openssl patch (for 0.9.8k) From jstanley at fedoraproject.org Sun Jul 19 00:53:31 2009 From: jstanley at fedoraproject.org (Jon Stanley) Date: Sun, 19 Jul 2009 00:53:31 +0000 (UTC) Subject: rpms/php-pecl-json/EL-4 php-pecl-json.spec,1.2,1.3 Message-ID: <20090719005331.71D0D11C0099@cvs1.fedora.phx.redhat.com> Author: jstanley Update of /cvs/pkgs/rpms/php-pecl-json/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10607 Modified Files: php-pecl-json.spec Log Message: Require automake and autoconf, since php-devel on EL-4 doesn't Index: php-pecl-json.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-json/EL-4/php-pecl-json.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-json.spec 18 Jul 2009 21:55:55 -0000 1.2 +++ php-pecl-json.spec 19 Jul 2009 00:53:31 -0000 1.3 @@ -6,7 +6,7 @@ Name: php-pecl-json Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PECL library to implement JSON in PHP Group: Development/Libraries @@ -15,7 +15,7 @@ URL: http://pecl.php.net/pack Source0: http://pecl.php.net/get/json-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: php-devel, php-pear +BuildRequires: php-devel, php-pear, automake, autoconf Requires(post): %{__pecl} Requires(postun): %{__pecl} @@ -78,7 +78,10 @@ rm -rf $RPM_BUILD_ROOT %{pecl_xmldir}/%{pecl_name}.xml %changelog -* Sat Jul 17 2009 Jon Stanley - 1.2.1-3 +* Sat Jul 18 2009 Jon Stanley - 1.2.1-4 +- BuildRequire automake and autoconf, since php-devel on EL-4 doesn't + +* Sat Jul 18 2009 Jon Stanley - 1.2.1-3 - Add provides for php-json for Fedora compatibility - bz512295 * Fri Aug 08 2008 Nigel Jones - 1.2.1-2 From rdieter at fedoraproject.org Sun Jul 19 01:00:32 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 01:00:32 +0000 (UTC) Subject: rpms/kdebase3/devel kdebase3.spec,1.83,1.84 Message-ID: <20090719010032.DF3D311C00D7@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12526 Modified Files: kdebase3.spec Log Message: * Sat Jul 18 2009 Rex Dieter 3.5.10-11 - FTBFS kdebase3-3.5.10-8.fc11 (#511656) - Requires: %name-libs%?_isa ... Index: kdebase3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase3/devel/kdebase3.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- kdebase3.spec 22 Apr 2009 10:53:36 -0000 1.83 +++ kdebase3.spec 19 Jul 2009 01:00:32 -0000 1.84 @@ -14,7 +14,7 @@ %define _with_samba --with-samba Version: 3.5.10 -Release: 10%{?dist}.1 +Release: 11%{?dist} %if 0%{?fedora} > 8 Name: kdebase3 @@ -93,7 +93,7 @@ Patch100: kdebase-3.5.10-minicli-decimal # security fixes %if 0%{?libs} -Requires: %{name}-libs = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} %else Obsoletes: %{name}-libs < %{?epoch:%{epoch}:}%{version}-%{release} Provides: %{name}-libs = %{?epoch:%{epoch}:}%{version}-%{release} @@ -233,7 +233,7 @@ Provides: kdebase3-devel = %{version}-%{ Provides: kdebase-devel = 6:%{version}-%{release} Obsoletes: kdebase-devel < 6:%{version}-%{release} %endif -Requires: %{name}-libs = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} Requires: kdelibs3-devel Group: Development/Libraries %description devel @@ -347,9 +347,12 @@ sed -i.omit -e 's|^FONTINST_SUBDIR=kfont install -p -m644 %{SOURCE9} %{SOURCE10} %{SOURCE11} pics/crystalsvg/ %if %{make_cvs} - make -f admin/Makefile.common cvs +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh + make -f admin/Makefile.common cvs %endif + %build # set some default enviroments unset QTDIR && . /etc/profile.d/qt.sh @@ -878,6 +881,10 @@ fi %changelog +* Sat Jul 18 2009 Rex Dieter 3.5.10-11 +- FTBFS kdebase3-3.5.10-8.fc11 (#511656) +- Requires: %%name-libs%%?_isa ... + * Wed Apr 22 2009 Karsten Hopp 3.5.10-10.1 - disable firewire stuff on s390(x) From rdieter at fedoraproject.org Sun Jul 19 01:10:13 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 01:10:13 +0000 (UTC) Subject: rpms/kdnssd-avahi/devel kdnssd-avahi.spec,1.7,1.8 Message-ID: <20090719011013.ACC3B11C025D@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdnssd-avahi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14501 Modified Files: kdnssd-avahi.spec Log Message: * Sat Jul 18 2009 Rex Dieter 0.1.3-0.8.20080116svn - FTBFS kdnssd-avahi-0.1.3-0.7.20080116svn.fc11 (#511519) - -devel: Requires: %name%?_isa ... Index: kdnssd-avahi.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdnssd-avahi/devel/kdnssd-avahi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kdnssd-avahi.spec 25 Feb 2009 11:00:45 -0000 1.7 +++ kdnssd-avahi.spec 19 Jul 2009 01:10:12 -0000 1.8 @@ -4,7 +4,7 @@ Summary: KDE zeroconf implementation based on avahi Name: kdnssd-avahi Version: 0.1.3 -Release: 0.7.%{beta}%{?dist} +Release: 0.8.%{beta}%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -29,7 +29,7 @@ Provides: libkdnssd %package devel Summary: Development files for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: kdelibs3-devel Requires: avahi-devel ## .la file dep @@ -43,6 +43,8 @@ Provides: libkdnssd-devel %prep %setup -q -n %{name} +# hack/fix for newer automake +sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh make -f admin/Makefile.common @@ -89,6 +91,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Rex Dieter 0.1.3-0.8.20080116svn +- FTBFS kdnssd-avahi-0.1.3-0.7.20080116svn.fc11 (#511519) +- -devel: Requires: %%name%%?_isa ... + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.3-0.7.20080116svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Sun Jul 19 01:16:49 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 01:16:49 +0000 (UTC) Subject: rpms/kopete-cryptography/devel .cvsignore, 1.4, 1.5 kopete-cryptography.spec, 1.8, 1.9 sources, 1.4, 1.5 Message-ID: <20090719011649.C358911C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kopete-cryptography/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16811 Modified Files: .cvsignore kopete-cryptography.spec sources Log Message: * Sat Jul 18 2009 Rex Dieter - 1.3.0-10 - 1.3.0-kde4.2.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kopete-cryptography/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 8 May 2009 14:53:23 -0000 1.4 +++ .cvsignore 19 Jul 2009 01:16:49 -0000 1.5 @@ -1 +1 @@ -kopete-cryptography-1.3.0-kde4.2.3.tar.bz2 +kopete-cryptography-1.3.0-kde4.2.4.tar.bz2 Index: kopete-cryptography.spec =================================================================== RCS file: /cvs/pkgs/rpms/kopete-cryptography/devel/kopete-cryptography.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kopete-cryptography.spec 11 May 2009 15:14:28 -0000 1.8 +++ kopete-cryptography.spec 19 Jul 2009 01:16:49 -0000 1.9 @@ -1,9 +1,9 @@ %define pluginversion 1.3.0 -%define kdeversion 4.2.3 +%define kdeversion 4.2.4 Name: kopete-cryptography Version: %{pluginversion} -Release: 9%{?dist} +Release: 10%{?dist} Summary: Encrypts and signs messages in Kopete using the OpenPGP Group: Applications/Internet @@ -78,6 +78,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Rex Dieter - 1.3.0-10 +- 1.3.0-kde4.2.4 + * Fri May 08 2009 Rex Dieter - 1.3.0-9 - 1.3.0-kde4.2.3 - cleanup docdir/HTML ownership Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kopete-cryptography/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 8 May 2009 14:53:23 -0000 1.4 +++ sources 19 Jul 2009 01:16:49 -0000 1.5 @@ -1 +1 @@ -d0b911472504f19a90ac40dbb6786ec7 kopete-cryptography-1.3.0-kde4.2.3.tar.bz2 +e9a87c0f83a0cf676c408e3ac91f8958 kopete-cryptography-1.3.0-kde4.2.4.tar.bz2 From mjg59 at fedoraproject.org Sun Jul 19 01:33:36 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Sun, 19 Jul 2009 01:33:36 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-usb-uvc-autosuspend.diff, NONE, 1.1 kernel.spec, 1.1635, 1.1636 Message-ID: <20090719013336.2625F11C0099@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20238 Modified Files: kernel.spec Added Files: linux-2.6-usb-uvc-autosuspend.diff Log Message: * Sat Jul 18 2009 Matthew Garrett - linux-2.6-usb-uvc-autosuspend.diff - enable autopm by default on uvc linux-2.6-usb-uvc-autosuspend.diff: uvc_driver.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE linux-2.6-usb-uvc-autosuspend.diff --- commit 9d4c919bcfa794c054cc33155c7e3c53ac2c5684 Author: Matthew Garrett Date: Sun Jul 19 02:24:49 2009 +0100 Enable autosuspend on UVC by default diff --git a/drivers/media/video/uvc/uvc_driver.c b/drivers/media/video/uvc/uvc_driver.c index 89927b7..8de516b 100644 --- a/drivers/media/video/uvc/uvc_driver.c +++ b/drivers/media/video/uvc/uvc_driver.c @@ -1647,6 +1647,8 @@ static int uvc_probe(struct usb_interface *intf, "supported.\n", ret); } + usb_device_autosuspend_enable(udev); + uvc_trace(UVC_TRACE_PROBE, "UVC device initialized.\n"); return 0; Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1635 retrieving revision 1.1636 diff -u -p -r1.1635 -r1.1636 --- kernel.spec 18 Jul 2009 22:50:13 -0000 1.1635 +++ kernel.spec 19 Jul 2009 01:33:35 -0000 1.1636 @@ -620,6 +620,7 @@ Patch300: linux-2.6-driver-level-usb-aut Patch301: linux-2.6-fix-usb-serial-autosuspend.diff Patch302: linux-2.6-qcserial-autosuspend.diff Patch303: linux-2.6-bluetooth-autosuspend.diff +Patch304: linux-2.6-usb-uvc-autosuspend.diff Patch340: linux-2.6-debug-vm-would-have-oomkilled.patch Patch360: linux-2.6-debug-always-inline-kzalloc.patch Patch380: linux-2.6-defaults-pci_no_msi.patch @@ -1155,6 +1156,7 @@ ApplyPatch linux-2.6-driver-level-usb-au ApplyPatch linux-2.6-fix-usb-serial-autosuspend.diff ApplyPatch linux-2.6-qcserial-autosuspend.diff ApplyPatch linux-2.6-bluetooth-autosuspend.diff +ApplyPatch linux-2.6-usb-uvc-autosuspend.diff # ACPI ApplyPatch linux-2.6-defaults-acpi-video.patch @@ -1888,6 +1890,7 @@ fi - linux-2.6-fix-usb-serial-autosuspend.diff - fix generic usb-serial autopm - linux-2.6-qcserial-autosuspend.diff - enable autopm by default on qcserial - linux-2.6-bluetooth-autosuspend.diff - enable autopm by default on btusb +- linux-2.6-usb-uvc-autosuspend.diff - enable autopm by default on uvc * Thu Jul 16 2009 Chuck Ebbert - 2.6.31-rc3-git3 From rdieter at fedoraproject.org Sun Jul 19 01:41:57 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 01:41:57 +0000 (UTC) Subject: rpms/gc/devel gc-7.1-dup_cpp_headers.patch, NONE, 1.1 gc.spec, 1.39, 1.40 Message-ID: <20090719014157.AB8C611C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/gc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22254 Modified Files: gc.spec Added Files: gc-7.1-dup_cpp_headers.patch Log Message: * Sat Jul 16 2009 Rex Dieter - 7.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Sun Jul 19 02:08:27 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 19 Jul 2009 02:08:27 +0000 (UTC) Subject: rpms/kdevelop/devel kdevelop.spec,1.85,1.86 Message-ID: <20090719020827.537F911C0099@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdevelop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29078 Modified Files: kdevelop.spec Log Message: * Sat Jul 18 2009 Rex Dieter - 9:3.5.4-4 - FTBFS kdevelop-3.5.4-3.fc11 (#511768) Index: kdevelop.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdevelop/devel/kdevelop.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- kdevelop.spec 2 Mar 2009 13:05:50 -0000 1.85 +++ kdevelop.spec 19 Jul 2009 02:07:56 -0000 1.86 @@ -20,7 +20,7 @@ Name: kdevelop Summary: Integrated Development Environment for C++/C Epoch: 9 Version: 3.5.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 URL: http://www.kdevelop.org/ @@ -151,6 +151,8 @@ Requires: %{name} = %{?epoch:%{epoch}:}% %patch4 -p1 -b .kde4template %if %{make_cvs} +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh rm -rf c_cpp_reference-2.0.2_for_KDE_3.0/admin cp -a admin c_cpp_reference-2.0.2_for_KDE_3.0/ make -C c_cpp_reference-2.0.2_for_KDE_3.0 -f admin/Makefile.common cvs @@ -258,6 +260,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 18 2009 Rex Dieter - 9:3.5.4-4 +- FTBFS kdevelop-3.5.4-3.fc11 (#511768) + * Mon Mar 02 2009 Than Ngo - 3.5.4-3 - fix build problem with gcc-4.4 From mclasen at fedoraproject.org Sun Jul 19 02:13:47 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 02:13:47 +0000 (UTC) Subject: rpms/yelp/devel yelp.spec,1.162,1.163 Message-ID: <20090719021347.431E611C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/yelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30452 Modified Files: yelp.spec Log Message: Drop unneeded direct deps Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/yelp.spec,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- yelp.spec 2 Jul 2009 06:15:26 -0000 1.162 +++ yelp.spec 19 Jul 2009 02:13:16 -0000 1.163 @@ -19,7 +19,7 @@ Summary: Help browser for the GNOME desktop Name: yelp Version: 2.27.2 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://download.gnome.org/sources/yelp/2.27/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp Patch1: yelp-2.15.5-fedora-docs.patch @@ -66,6 +66,7 @@ BuildRequires: dbus-devel BuildRequires: gettext-devel BuildRequires: rarian-devel >= %{rarian_version} BuildRequires: intltool +BuildRequires: automake autoconf libtool %if %{WITH_MONO} @@ -89,12 +90,18 @@ documentation written in DocBook. # force regeneration rm data/yelp.schemas +autoreconf -i -f -i + %build %configure \ --with-mozilla=libxul-embedding \ --disable-schemas-install -make +# drop unneeded direct library deps with --as-needed +# libtool doesn't make this easy, so we do it the hard way +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool + +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -149,6 +156,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Sat Jul 18 2009 Matthias Clasen - 2.27.2-3 +- Drop unused direct dependencies + * Thu Jul 2 2009 Matthias Clasen - 2.27.2-2 - Shrink GConf schemas From mclasen at fedoraproject.org Sun Jul 19 02:26:54 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 02:26:54 +0000 (UTC) Subject: rpms/gmime/devel libdir.patch, NONE, 1.1 .cvsignore, 1.19, 1.20 gmime.spec, 1.46, 1.47 sources, 1.19, 1.20 gmime-2.4.3-libdir.patch, 1.1, NONE Message-ID: <20090719022654.8933211C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gmime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1846 Modified Files: .cvsignore gmime.spec sources Added Files: libdir.patch Removed Files: gmime-2.4.3-libdir.patch Log Message: 2.4.7 libdir.patch: Makefile.in | 16 ++++++++-------- gmime-sharp-2.4.pc.in | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) --- NEW FILE libdir.patch --- diff -up gmime-2.4.7/mono/gmime-sharp-2.4.pc.in.libdir gmime-2.4.7/mono/gmime-sharp-2.4.pc.in --- gmime-2.4.7/mono/gmime-sharp-2.4.pc.in.libdir 2009-04-23 22:04:47.000000000 -0400 +++ gmime-2.4.7/mono/gmime-sharp-2.4.pc.in 2009-07-18 22:19:43.355545728 -0400 @@ -1,5 +1,5 @@ prefix=@prefix@ -libdir=${prefix}/lib +libdir=@libdir@ Name: gmime-sharp Version: @VERSION@ diff -up gmime-2.4.7/mono/Makefile.in.libdir gmime-2.4.7/mono/Makefile.in --- gmime-2.4.7/mono/Makefile.in.libdir 2009-04-27 10:52:06.000000000 -0400 +++ gmime-2.4.7/mono/Makefile.in 2009-07-18 22:23:46.048524443 -0400 @@ -476,22 +476,22 @@ $(ASSEMBLY): $(build_sources) generated- install-data-hook: @if test -n '$(TARGET)'; then \ if test -n '$(DESTDIR)'; then \ - echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib"; \ - $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib || exit 1; \ + echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir)"; \ + $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir) || exit 1; \ else \ - echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib"; \ - $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib || exit 1; \ + echo "$(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(libdir)"; \ + $(GACUTIL) /i $(ASSEMBLY) /f /package $(PACKAGE_SHARP) /gacdir $(libdir) || exit 1; \ fi; \ fi uninstall-local: @if test -n '$(TARGET)'; then \ if test -n '$(DESTDIR)'; then \ - echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib"; \ - $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(prefix)/lib || exit 1; \ + echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir)"; \ + $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /root $(DESTDIR)$(libdir) || exit 1; \ else \ - echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib"; \ - $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(prefix)/lib || exit 1; \ + echo "$(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(libdir)"; \ + $(GACUTIL) /u $(ASSEMBLY_NAME) /package $(PACKAGE_SHARP) /gacdir $(libdir) || exit 1; \ fi; \ fi Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gmime/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 5 Dec 2008 01:14:40 -0000 1.19 +++ .cvsignore 19 Jul 2009 02:26:23 -0000 1.20 @@ -1 +1 @@ -gmime-2.4.3.tar.bz2 +gmime-2.4.7.tar.bz2 Index: gmime.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmime/devel/gmime.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- gmime.spec 26 May 2009 00:06:09 -0000 1.46 +++ gmime.spec 19 Jul 2009 02:26:23 -0000 1.47 @@ -1,6 +1,6 @@ Name: gmime -Version: 2.4.3 -Release: 5%{?dist} +Version: 2.4.7 +Release: 1%{?dist} Summary: Library for creating and parsing MIME messages Group: System Environment/Libraries @@ -14,7 +14,7 @@ BuildRequires: glib2-devel >= 2.6.0 BuildRequires: zlib-devel >= 1.2.1.1 BuildRequires: gettext-devel, gtk-doc -Patch2: gmime-2.4.3-libdir.patch +Patch2: libdir.patch # no mono on s390 for now, thus exclude s390 s390x %ifarch s390 s390x @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Jul 18 2009 Matthias Clasen - 2.4.7-1 +- Update to 2.4.7 + * Mon May 25 2009 Xavier Lamien - 2.4.3-5 - Build arch ppc64. - Fix uu??code binaries. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gmime/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 5 Dec 2008 01:14:40 -0000 1.19 +++ sources 19 Jul 2009 02:26:24 -0000 1.20 @@ -1 +1 @@ -d55cc7d8339d8ab0871c691607df4f0c gmime-2.4.3.tar.bz2 +0fb23dbb1ed6934ab577e90269cd901f gmime-2.4.7.tar.bz2 --- gmime-2.4.3-libdir.patch DELETED --- From mclasen at fedoraproject.org Sun Jul 19 02:27:30 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 02:27:30 +0000 (UTC) Subject: rpms/yelp/devel yelp.spec,1.163,1.164 Message-ID: <20090719022730.A746B11C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/yelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2006 Modified Files: yelp.spec Log Message: fix BRs Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/yelp.spec,v retrieving revision 1.163 retrieving revision 1.164 diff -u -p -r1.163 -r1.164 --- yelp.spec 19 Jul 2009 02:13:16 -0000 1.163 +++ yelp.spec 19 Jul 2009 02:27:00 -0000 1.164 @@ -66,6 +66,7 @@ BuildRequires: dbus-devel BuildRequires: gettext-devel BuildRequires: rarian-devel >= %{rarian_version} BuildRequires: intltool +BuildRequires: gnome-common BuildRequires: automake autoconf libtool From wart at fedoraproject.org Sun Jul 19 02:27:23 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 19 Jul 2009 02:27:23 +0000 (UTC) Subject: rpms/wormux/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 wormux.spec, 1.20, 1.21 Message-ID: <20090719022723.9F96911C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/wormux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1979 Modified Files: .cvsignore sources wormux.spec Log Message: Update to latest release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wormux/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 7 May 2009 15:40:15 -0000 1.7 +++ .cvsignore 19 Jul 2009 02:26:53 -0000 1.8 @@ -1 +1 @@ -wormux-0.8.3.tar.bz2 +wormux-0.8.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wormux/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 7 May 2009 15:40:15 -0000 1.7 +++ sources 19 Jul 2009 02:26:53 -0000 1.8 @@ -1 +1 @@ -c4235a844ad9f7337f1a8da2c5c1b820 wormux-0.8.3.tar.bz2 +0aed316799723173f2d6e242af312382 wormux-0.8.4.tar.bz2 Index: wormux.spec =================================================================== RCS file: /cvs/pkgs/rpms/wormux/devel/wormux.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- wormux.spec 7 May 2009 21:53:35 -0000 1.20 +++ wormux.spec 19 Jul 2009 02:26:53 -0000 1.21 @@ -1,6 +1,6 @@ Name: wormux -Version: 0.8.3 -Release: 2%{?dist} +Version: 0.8.4 +Release: 1%{?dist} Summary: 2D convivial mass murder game Group: Amusements/Games @@ -38,6 +38,7 @@ Data files for wormux # Remove a backup file rm -f data/game_mode/rope_objects.xml~ +rm -f data/game_mode/skin_viewer.xml~ %build %configure --disable-nls --disable-dependency-tracking @@ -84,6 +85,8 @@ fi %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog %{_bindir}/%{name} +%{_bindir}/%{name}-index-server +%{_bindir}/%{name}-server %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/32x32/apps/%{name}.png %{_datadir}/pixmaps/wormux*.png @@ -94,6 +97,9 @@ fi %{_datadir}/%{name} %changelog +* Wed Jul 18 2009 Wart 0.8.4-1 +- Update to 0.8.4 + * Thu May 7 2009 Ville Skytt?? - 0.8.3-2 - Build with $RPM_OPT_FLAGS. From mclasen at fedoraproject.org Sun Jul 19 02:34:08 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 02:34:08 +0000 (UTC) Subject: rpms/seahorse-plugins/devel seahorse-plugins.spec,1.26,1.27 Message-ID: <20090719023408.DBB7611C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/seahorse-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3655 Modified Files: seahorse-plugins.spec Log Message: drop epiphany extension Index: seahorse-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse-plugins/devel/seahorse-plugins.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- seahorse-plugins.spec 4 May 2009 11:23:00 -0000 1.26 +++ seahorse-plugins.spec 19 Jul 2009 02:33:38 -0000 1.27 @@ -1,6 +1,6 @@ Name: seahorse-plugins Version: 2.27.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugins and utilities for encryption in GNOME Group: User Interface/Desktops License: GPLv2+ and GFDL @@ -25,8 +25,9 @@ BuildRequires: gnome-keyring-devel BuildRequires: dbus-glib-devel BuildRequires: seahorse-devel BuildRequires: libxml2-devel -BuildRequires: gecko-devel-unstable -BuildRequires: epiphany-devel +# epiphany extension hasn't been ported to webkit yet +#BuildRequires: gecko-devel-unstable +#BuildRequires: epiphany-devel BuildRequires: gedit-devel BuildRequires: gnome-panel-devel BuildRequires: libnotify-devel @@ -66,7 +67,7 @@ autoreconf -i -f find . -type f -name "*.c" -exec chmod a-x {} ';' %build -GNUPG=/usr/bin/gpg2 ; export GNUPG ; %configure --disable-update-mime-database +GNUPG=/usr/bin/gpg2 ; export GNUPG ; %configure --disable-update-mime-database --disable-epiphany make %{?_smp_mflags} %install @@ -153,8 +154,8 @@ fi %{_libdir}/gedit-2/plugins/libseahorse-pgp.so %{_libdir}/gedit-2/plugins/seahorse-pgp.gedit-plugin %{_libdir}/nautilus/extensions-2.0/libnautilus-seahorse.so -%{_libdir}/epiphany/2.26/extensions/libseahorseextension.so -%{_libdir}/epiphany/2.26/extensions/seahorse.ephy-extension +#%{_libdir}/epiphany/2.27/extensions/libseahorseextension.so +#%{_libdir}/epiphany/2.27/extensions/seahorse.ephy-extension %{_libdir}/seahorse/seahorse-applet %{_datadir}/gnome-2.0/ui/GNOME_SeahorseApplet.xml %{_datadir}/applications/seahorse-pgp-encrypted.desktop @@ -172,6 +173,9 @@ fi %changelog +* Sat Jul 18 2009 Matthias Clasen 2.27.1-2 +- Temporarily drop epiphany extension + * Mon May 4 2009 Tomas Bzatek 2.27.1-1 - Update to 2.27.1 From wart at fedoraproject.org Sun Jul 19 02:46:41 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 19 Jul 2009 02:46:41 +0000 (UTC) Subject: rpms/wormux/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 wormux.spec, 1.19, 1.20 Message-ID: <20090719024642.161DC11C0099@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/wormux/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6592 Modified Files: .cvsignore sources wormux.spec Log Message: Update to 0.8.4; Build with $RPM_OPT_FLAGS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 7 May 2009 15:45:56 -0000 1.7 +++ .cvsignore 19 Jul 2009 02:46:10 -0000 1.8 @@ -1 +1 @@ -wormux-0.8.3.tar.bz2 +wormux-0.8.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 7 May 2009 15:45:56 -0000 1.7 +++ sources 19 Jul 2009 02:46:10 -0000 1.8 @@ -1 +1 @@ -c4235a844ad9f7337f1a8da2c5c1b820 wormux-0.8.3.tar.bz2 +0aed316799723173f2d6e242af312382 wormux-0.8.4.tar.bz2 Index: wormux.spec =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-11/wormux.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- wormux.spec 7 May 2009 15:45:56 -0000 1.19 +++ wormux.spec 19 Jul 2009 02:46:10 -0000 1.20 @@ -1,5 +1,5 @@ Name: wormux -Version: 0.8.3 +Version: 0.8.4 Release: 1%{?dist} Summary: 2D convivial mass murder game @@ -7,6 +7,7 @@ Group: Amusements/Games License: GPLv2+ URL: http://www.wormux.org Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 +Patch0: wormux-0.8.3-cflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel @@ -33,9 +34,11 @@ Data files for wormux %prep %setup -q +%patch0 -p1 # Remove a backup file rm -f data/game_mode/rope_objects.xml~ +rm -f data/game_mode/skin_viewer.xml~ %build %configure --disable-nls --disable-dependency-tracking @@ -82,6 +85,8 @@ fi %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog %{_bindir}/%{name} +%{_bindir}/%{name}-index-server +%{_bindir}/%{name}-server %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/32x32/apps/%{name}.png %{_datadir}/pixmaps/wormux*.png @@ -92,6 +97,10 @@ fi %{_datadir}/%{name} %changelog +* Wed Jul 18 2009 Wart 0.8.4-1 +- Update to 0.8.4 +- Build with $RPM_OPT_FLAGS. + * Wed May 6 2009 Wart 0.8.3-1 - Update to 0.8.3 - Make -data subpackage noarch From wart at fedoraproject.org Sun Jul 19 03:00:06 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 19 Jul 2009 03:00:06 +0000 (UTC) Subject: rpms/wormux/F-11 wormux-0.8.3-cflags.patch,NONE,1.1 Message-ID: <20090719030007.100BD11C025D@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/wormux/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10929 Added Files: wormux-0.8.3-cflags.patch Log Message: Add patch for $RPM_OPT_FLAGS wormux-0.8.3-cflags.patch: configure | 1 + 1 file changed, 1 insertion(+) --- NEW FILE wormux-0.8.3-cflags.patch --- diff -up wormux-0.8.3/configure~ wormux-0.8.3/configure --- wormux-0.8.3/configure~ 2009-03-05 22:24:17.000000000 +0200 +++ wormux-0.8.3/configure 2009-05-07 20:41:31.000000000 +0300 @@ -7608,6 +7608,7 @@ echo "${ECHO_T}$gccver" >&6; } GCC_FLAGS="$GCC_FLAGS -DWMX_LOG" fi + GCC_FLAGS="$GCC_FLAGS $CFLAGS" CFLAGS="$GCC_FLAGS" CXXFLAGS="$GCC_FLAGS" From mclasen at fedoraproject.org Sun Jul 19 03:02:32 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:02:32 +0000 (UTC) Subject: rpms/libbeagle/devel fix-install.patch, NONE, 1.1 libbeagle.spec, 1.20, 1.21 Message-ID: <20090719030232.27AD211C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libbeagle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11481 Modified Files: libbeagle.spec Added Files: fix-install.patch Log Message: Fix the build fix-install.patch: Makefile.am | 1 - 1 file changed, 1 deletion(-) --- NEW FILE fix-install.patch --- diff -up libbeagle-0.3.9/beagle/Makefile.am.fix-install libbeagle-0.3.9/beagle/Makefile.am --- libbeagle-0.3.9/beagle/Makefile.am.fix-install 2009-07-18 22:57:15.213524374 -0400 +++ libbeagle-0.3.9/beagle/Makefile.am 2009-07-18 22:57:21.241522121 -0400 @@ -79,7 +79,6 @@ libbeagleinclude_HEADERS = \ beagle-query-part-date.h \ beagle-query-part-human.h \ beagle-query-part-or.h \ - beagle-query-part-property.h \ beagle-query-part-text.h \ beagle-query-part-property.h \ beagle-query-part-wildcard.h \ Index: libbeagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbeagle/devel/libbeagle.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libbeagle.spec 25 Feb 2009 13:50:13 -0000 1.20 +++ libbeagle.spec 19 Jul 2009 03:02:31 -0000 1.21 @@ -2,7 +2,7 @@ Name: libbeagle Version: 0.3.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Beagle C interface Group: Development/Libraries License: MIT @@ -16,6 +16,9 @@ BuildRequires: python-devel BuildRequires: pygobject2-devel # http://bugzilla.gnome.org/show_bug.cgi?id=570521 Patch0: libbeagle-pyexec.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=588994 +Patch1: fix-install.patch + BuildRequires: automake, autoconf, libtool %description @@ -48,12 +51,13 @@ Python wrappers for libbeagle %prep %setup -q %patch0 -p1 -b .pyexec +%patch1 -p1 -b .fix-install # patch 0 touches .am autoreconf -i -f %build -%configure +%configure make %{?_smp_mflags} @@ -98,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 18 2009 Matthias Clasen - 0.3.9-3 +- Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Sun Jul 19 03:08:45 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:08:45 +0000 (UTC) Subject: rpms/bug-buddy/devel bug-buddy.spec,1.123,1.124 Message-ID: <20090719030845.7854E11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/bug-buddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12884 Modified Files: bug-buddy.spec Log Message: Rebuild Index: bug-buddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/bug-buddy/devel/bug-buddy.spec,v retrieving revision 1.123 retrieving revision 1.124 diff -u -p -r1.123 -r1.124 --- bug-buddy.spec 16 May 2009 05:54:02 -0000 1.123 +++ bug-buddy.spec 19 Jul 2009 03:08:14 -0000 1.124 @@ -142,6 +142,9 @@ fi %{_sysconfdir}/gconf/schemas/* %changelog +* Say Jul 18 2009 Matthias Clasen - 1:2.27.1-2 +- Rebuild + * Sat May 16 2009 Matthias Clasen - 1:2.27.1-1 - Update to 2.27.1 From mclasen at fedoraproject.org Sun Jul 19 03:11:01 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:11:01 +0000 (UTC) Subject: rpms/bug-buddy/devel bug-buddy.spec,1.124,1.125 Message-ID: <20090719031101.DAD0411C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/bug-buddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13524 Modified Files: bug-buddy.spec Log Message: fix spec Index: bug-buddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/bug-buddy/devel/bug-buddy.spec,v retrieving revision 1.124 retrieving revision 1.125 diff -u -p -r1.124 -r1.125 --- bug-buddy.spec 19 Jul 2009 03:08:14 -0000 1.124 +++ bug-buddy.spec 19 Jul 2009 03:10:31 -0000 1.125 @@ -142,7 +142,7 @@ fi %{_sysconfdir}/gconf/schemas/* %changelog -* Say Jul 18 2009 Matthias Clasen - 1:2.27.1-2 +* Sat Jul 18 2009 Matthias Clasen - 1:2.27.1-2 - Rebuild * Sat May 16 2009 Matthias Clasen - 1:2.27.1-1 From mclasen at fedoraproject.org Sun Jul 19 03:15:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:15:58 +0000 (UTC) Subject: rpms/bug-buddy/devel bug-buddy.spec,1.125,1.126 Message-ID: <20090719031558.9541C11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/bug-buddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15029 Modified Files: bug-buddy.spec Log Message: Bump rev Index: bug-buddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/bug-buddy/devel/bug-buddy.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- bug-buddy.spec 19 Jul 2009 03:10:31 -0000 1.125 +++ bug-buddy.spec 19 Jul 2009 03:15:28 -0000 1.126 @@ -6,7 +6,7 @@ Name: bug-buddy Version: 2.27.1 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Crash reporting utility for the GNOME desktop License: GPLv2 and BSD @@ -142,7 +142,7 @@ fi %{_sysconfdir}/gconf/schemas/* %changelog -* Sat Jul 18 2009 Matthias Clasen - 1:2.27.1-2 +* Sat Jul 18 2009 Matthias Clasen - 1:2.27.1-3 - Rebuild * Sat May 16 2009 Matthias Clasen - 1:2.27.1-1 From mclasen at fedoraproject.org Sun Jul 19 03:26:43 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:26:43 +0000 (UTC) Subject: rpms/libgnomeprint22/devel libgnomeprint22.spec,1.63,1.64 Message-ID: <20090719032643.2231711C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnomeprint22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18435 Modified Files: libgnomeprint22.spec Log Message: Rebuild Index: libgnomeprint22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeprint22/devel/libgnomeprint22.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- libgnomeprint22.spec 17 Mar 2009 04:23:54 -0000 1.63 +++ libgnomeprint22.spec 19 Jul 2009 03:26:12 -0000 1.64 @@ -13,7 +13,7 @@ Summary: Printing library for GNOME Name: libgnomeprint22 Version: 2.18.6 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ and BSD # BSD applies to ttsubset code that was taken from STSF Group: System Environment/Base @@ -92,7 +92,10 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -%makeinstall +make install DESTDIR=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -name *.la -exec rm {} \; + %find_lang %{gettext_package} %clean @@ -107,20 +110,19 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING NEWS README %{_libdir}/lib*.so.* %{_libdir}/libgnomeprint/ -%exclude %{_libdir}/libgnomeprint/%{version}/modules/*.la -%exclude %{_libdir}/libgnomeprint/%{version}/modules/filters/*.la -%exclude %{_libdir}/libgnomeprint/%{version}/modules/transports/*.la %{_datadir}/libgnomeprint/ %files devel %defattr(-, root, root, 0755) %{_libdir}/lib*.so -%exclude %{_libdir}/*.la %{_includedir}/* %{_libdir}/pkgconfig/* %{_datadir}/gtk-doc/html/libgnomeprint %changelog +* Sat Jul 18 2009 Matthias Clasen - 2.18.6-2 +- Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.18.6-1 - Update to 2.18.6 From ravenoak at fedoraproject.org Sun Jul 19 03:33:01 2009 From: ravenoak at fedoraproject.org (Caitlyn O'Hanna) Date: Sun, 19 Jul 2009 03:33:01 +0000 (UTC) Subject: rpms/pysvn/devel pysvn.spec, 1.10, 1.11 sources, 1.5, 1.6 pysvn-1.6.2-fix-benchmark.patch, 1.1, NONE Message-ID: <20090719033301.EDC7C11C00D7@cvs1.fedora.phx.redhat.com> Author: ravenoak Update of /cvs/pkgs/rpms/pysvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20270 Modified Files: pysvn.spec sources Removed Files: pysvn-1.6.2-fix-benchmark.patch Log Message: Update to newest Index: pysvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/devel/pysvn.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pysvn.spec 5 Mar 2009 05:47:12 -0000 1.10 +++ pysvn.spec 19 Jul 2009 03:33:01 -0000 1.11 @@ -1,14 +1,13 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pysvn -Version: 1.6.3 -Release: 2%{dist} +Version: 1.7.0 +Release: 1%{dist} Summary: Pythonic style bindings for Subversion Group: Development/Languages License: ASL 1.1 URL: http://pysvn.tigris.org/ Source0: http://pysvn.barrys-emacs.org/source_kits/%{name}-%{version}.tar.gz -#Patch0: pysvn-1.6.2-fix-benchmark.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: PyXML @@ -23,12 +22,10 @@ Pythonic style bindings for Subversion %prep %setup -q -n %{name}-%{version} -#%patch0 %build pushd Source CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py configure --enable-debug --verbose --norpath --fixed-module-name -# Set correct build flags %{__sed} -i -e 's/-Wall -fPIC -fexceptions -frtti/%{optflags} -fPIC -frtti/' Makefile %{__make} %{?_smp_mflags} @@ -54,6 +51,9 @@ pushd Tests %{python_sitearch}/%{name} %changelog +* Mon Jun 29 2009 Caitlyn O'Hanna - 1.7.0-1 +- Update to new version + * Wed Mar 04 2009 Caitlyn O'Hanna - 1.6.3-2 - Remove the benchmark patch. Changes included in this release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 5 Mar 2009 05:26:27 -0000 1.5 +++ sources 19 Jul 2009 03:33:01 -0000 1.6 @@ -1 +1 @@ -41d312ff09b05f7b53d3641a82c64c93 pysvn-1.6.3.tar.gz +77614676d24bca45749034ea6ec449d8 pysvn-1.7.0.tar.gz --- pysvn-1.6.2-fix-benchmark.patch DELETED --- From mclasen at fedoraproject.org Sun Jul 19 03:35:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sun, 19 Jul 2009 03:35:58 +0000 (UTC) Subject: rpms/bug-buddy/devel bug-buddy.spec,1.126,1.127 Message-ID: <20090719033558.EE14A11C00D7@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/bug-buddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20875 Modified Files: bug-buddy.spec Log Message: fix file list Index: bug-buddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/bug-buddy/devel/bug-buddy.spec,v retrieving revision 1.126 retrieving revision 1.127 diff -u -p -r1.126 -r1.127 --- bug-buddy.spec 19 Jul 2009 03:15:28 -0000 1.126 +++ bug-buddy.spec 19 Jul 2009 03:35:28 -0000 1.127 @@ -135,6 +135,9 @@ fi %{_datadir}/applications/* %{_bindir}/* %{_libdir}/gtk-2.0/modules/libgnomebreakpad.so +%ifarch %{ix86} +%{_libdir}/bug-buddy/libbreakpad.so* +%endif %{_mandir}/man1/bug-buddy.1.gz %ifarch i586 %{_libdir}/bug-buddy From phuang at fedoraproject.org Sun Jul 19 05:19:34 2009 From: phuang at fedoraproject.org (Huang Peng) Date: Sun, 19 Jul 2009 05:19:34 +0000 (UTC) Subject: rpms/ibus/devel .cvsignore, 1.33, 1.34 ibus-HEAD.patch, 1.19, 1.20 ibus.spec, 1.72, 1.73 sources, 1.38, 1.39 Message-ID: <20090719051934.8258811C00D7@cvs1.fedora.phx.redhat.com> Author: phuang Update of /cvs/pkgs/rpms/ibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11812 Modified Files: .cvsignore ibus-HEAD.patch ibus.spec sources Log Message: Update to 1.2.0.20090719 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 22 Jun 2009 05:09:19 -0000 1.33 +++ .cvsignore 19 Jul 2009 05:19:01 -0000 1.34 @@ -1 +1 @@ -ibus-1.2.0.20090617.tar.gz +ibus-1.2.0.20090719.tar.gz ibus-HEAD.patch: 0 files changed Index: ibus-HEAD.patch =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus-HEAD.patch,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ibus-HEAD.patch 22 Jun 2009 05:09:19 -0000 1.19 +++ ibus-HEAD.patch 19 Jul 2009 05:19:02 -0000 1.20 @@ -1,89 +1 @@ -diff --git a/bus/factoryproxy.c b/bus/factoryproxy.c -index cf30b95..521d609 100644 ---- a/bus/factoryproxy.c -+++ b/bus/factoryproxy.c -@@ -172,21 +172,35 @@ bus_factory_proxy_create_engine (BusFactoryProxy *factory, - g_assert (BUS_IS_FACTORY_PROXY (factory)); - g_assert (IBUS_IS_ENGINE_DESC (desc)); - -+ IBusPendingCall *pending = NULL; - IBusMessage *reply_message; - IBusError *error; - BusEngineProxy *engine; - gchar *object_path; -+ gboolean retval; - - if (g_list_find (factory->component->engines, desc) == NULL) { - return NULL; - } - -- reply_message = ibus_proxy_call_with_reply_and_block ((IBusProxy *) factory, -- "CreateEngine", -- -1, -- &error, -- G_TYPE_STRING, &(desc->name), -- G_TYPE_INVALID); -+ retval = ibus_proxy_call_with_reply ((IBusProxy *) factory, -+ "CreateEngine", -+ &pending, -+ -1, -+ &error, -+ G_TYPE_STRING, &(desc->name), -+ G_TYPE_INVALID); -+ -+ if (!retval) { -+ g_warning ("%s: %s", error->name, error->message); -+ ibus_error_free (error); -+ return NULL; -+ } -+ -+ ibus_pending_call_wait (pending); -+ reply_message = ibus_pending_call_steal_reply (pending); -+ ibus_pending_call_unref (pending); -+ - if (reply_message == NULL) { - g_warning ("%s: %s", error->name, error->message); - ibus_error_free (error); -diff --git a/setup/enginetreeview.py b/setup/enginetreeview.py -index d0c95d1..6f2e2ea 100644 ---- a/setup/enginetreeview.py -+++ b/setup/enginetreeview.py -@@ -45,7 +45,7 @@ class EngineTreeView(gtk.TreeView): - self.__engines = set([]) - self.__changed = False - -- self.set_headers_visible(True) -+ # self.set_headers_visible(True) - self.set_reorderable(True) - - self.__model = gtk.ListStore(gobject.TYPE_PYOBJECT, gobject.TYPE_STRING) -@@ -76,6 +76,7 @@ class EngineTreeView(gtk.TreeView): - model = gtk.ListStore(gobject.TYPE_STRING) - model.append(("us",)) - model.append(("jp",)) -+ model.append(("xkb",)) - renderer.set_property("xalign", 0) - renderer.set_property("model", model) - renderer.set_property("text-column", 0) -@@ -89,7 +90,7 @@ class EngineTreeView(gtk.TreeView): - column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED) - column.pack_start(renderer, False) - column.set_cell_data_func(renderer, self.__layout_cell_data_cb) -- self.append_column (column) -+ # self.append_column(column) - - self.set_engines(engines) - -diff --git a/ui/gtk/engineabout.py b/ui/gtk/engineabout.py -index dd7bee4..3d7df5a 100644 ---- a/ui/gtk/engineabout.py -+++ b/ui/gtk/engineabout.py -@@ -61,7 +61,7 @@ class EngineAbout(gtk.Dialog): - "heading", "left_margin_16") - text_buffer.insert_with_tags_by_name(iter, _("Language: %s\n") % ibus.get_language_name(self.__engine_desc.language), - "small", "bold", "left_margin_16") -- text_buffer.insert_with_tags_by_name(iter, _("Kayboard layout: %s\n") % self.__engine_desc.layout, -+ text_buffer.insert_with_tags_by_name(iter, _("Keyboard layout: %s\n") % self.__engine_desc.layout, - "small", "bold", "left_margin_16") - text_buffer.insert_with_tags_by_name(iter, _("Author: %s\n") % self.__engine_desc.author, - "small", "bold", "left_margin_16") + Index: ibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- ibus.spec 22 Jun 2009 05:09:19 -0000 1.72 +++ ibus.spec 19 Jul 2009 05:19:02 -0000 1.73 @@ -7,7 +7,7 @@ %define im_chooser_version 1.2.5 Name: ibus -Version: 1.2.0.20090617 +Version: 1.2.0.20090719 Release: 1%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPLv2+ @@ -15,7 +15,7 @@ Group: System Environment/Libraries URL: http://code.google.com/p/ibus/ Source0: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz Source1: xinput-ibus -Patch0: ibus-HEAD.patch +# Patch0: ibus-HEAD.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -114,8 +114,8 @@ The ibus-devel-docs package contains dev %prep %setup -q -%patch0 -p1 -./autogen.sh --help +# %patch0 -p1 +# ./autogen.sh --help %build %configure --disable-static \ @@ -228,93 +228,96 @@ fi %{_datadir}/gtk-doc/html/* %changelog -* Mon Jun 22 2009 Huang Peng - 1.2.0.20090617-1 +* Sun Jul 19 2009 Peng Huang - 1.2.0.20090719-1 +- Update to 1.2.0.200907179 + +* Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 - Update to 1.2.0.20090617 -* Fri Jun 12 2009 Huang Peng - 1.1.0.20090612-1 +* Fri Jun 12 2009 Peng Huang - 1.1.0.20090612-1 - Update to 1.1.0.20090612 - Fix bug 504942 - PageUp and PageDown do not work in candidate list - Fix bug 491040 - Implememnt mouse selection in candidate list -* Wed Jun 10 2009 Huang Peng - 1.1.0.20090609-1 +* Wed Jun 10 2009 Peng Huang - 1.1.0.20090609-1 - Update to Update to 1.1.0.20090609 - Fix bug 502414 - Implemented on-screen help facility - Fix bug 502561 - iBus should show keymap name on iBus panel - Fix bug 498043 - ibus Alt-grave trigger conflicts with openoffice.org - Implemented API for setting labels for candidates in LookupTable -* Sun May 31 2009 Huang Peng - 1.1.0.20090531-1 +* Sun May 31 2009 Peng Huang - 1.1.0.20090531-1 - Update to Update to 1.1.0.20090531 -* Tue May 26 2009 Huang Peng - 1.1.0.20090508-5 +* Tue May 26 2009 Peng Huang - 1.1.0.20090508-5 - Update ibus-HEAD.patch. - Show the default input method with bold text - Add information text below input methods list -* Mon May 25 2009 Huang Peng - 1.1.0.20090508-4 +* Mon May 25 2009 Peng Huang - 1.1.0.20090508-4 - Update ibus-HEAD.patch. - Fix bug 501211 - ibus-setup window should be raised if running or just stay on top/grab focus - Fix bug 501640 - ibus should adds new IMEs at end of engine list not beginning - Fix bug 501644 - [IBus] focus-out and disabled IME should hide language panel -* Thu May 14 2009 Huang Peng - 1.1.0.20090508-2 +* Thu May 14 2009 Peng Huang - 1.1.0.20090508-2 - Remove requires notification-daemon - Fix bug 500588 - Hardcoded requirement for notification-daemon -* Fri May 08 2009 Huang Peng - 1.1.0.20090508-1 +* Fri May 08 2009 Peng Huang - 1.1.0.20090508-1 - Update to 1.1.0.20090508 - Fix bug 499533 - [Indic] ibus should allow input in KDE using all supported Indic locales - Fix bug 498352 - hotkey config table should list keys in same order as on main setup page - Fix bug 497707 - ibus French translation update -* Fri May 08 2009 Huang Peng - 1.1.0.20090423-3 +* Fri May 08 2009 Peng Huang - 1.1.0.20090423-3 - Fix bug 498541 - ibus-libs should not contain devel file libibus.so -* Tue May 05 2009 Huang Peng - 1.1.0.20090423-2 +* Tue May 05 2009 Peng Huang - 1.1.0.20090423-2 - Fix bug 498141 - new ibus install needs gtk immodules - Separate ibus document from ibus-devel to ibus-devel-docs -* Thu Apr 23 2009 Huang Peng - 1.1.0.20090423-1 +* Thu Apr 23 2009 Peng Huang - 1.1.0.20090423-1 - Update to ibus-1.1.0.20090423. - Fix bug 497265 - [mai_IN] Maithili language name is not correct. - Fix bug 497279 - IBus does not works with evolution correctly. - Enhance authentication both in daemon & clients -* Fri Apr 17 2009 Huang Peng - 1.1.0.20090417-1 +* Fri Apr 17 2009 Peng Huang - 1.1.0.20090417-1 - Update to ibus-1.1.0.20090417. - Fix bug 496199 - cannot remove Ctrl+Space hotkey with ibus-setup -* Fri Apr 17 2009 Huang Peng - 1.1.0.20090413-4 +* Fri Apr 17 2009 Peng Huang - 1.1.0.20090413-4 - Update ibus-HEAD.patch. - Next Engine hotkey will do nothing if the IM is not active. -* Wed Apr 15 2009 Huang Peng - 1.1.0.20090413-3 +* Wed Apr 15 2009 Peng Huang - 1.1.0.20090413-3 - Update ibus-HEAD.patch. - Fix bug 495431 - ibus Release modifier doesn't work with Alt - Fix bug 494445 - ibus-hangul missing Hangul Han/En mode (and Alt_R+release hotkey) - Update te.po -* Tue Apr 14 2009 Huang Peng - 1.1.0.20090413-2 +* Tue Apr 14 2009 Peng Huang - 1.1.0.20090413-2 - Update ibus-HEAD.patch. - Change the mode of /tmp/ibus-$USER to 0700 to improve security - Change the mode of /tmp/ibus-$USER/socket-address to 0600 to improve security - Update as.po -* Mon Apr 13 2009 Huang Peng - 1.1.0.20090413-1 +* Mon Apr 13 2009 Peng Huang - 1.1.0.20090413-1 - Update to ibus-1.1.0.20090413. - Fix crash when restart the ibus-daemon - Add some translations. -* Tue Apr 07 2009 Huang Peng - 1.1.0.20090407-3 +* Tue Apr 07 2009 Peng Huang - 1.1.0.20090407-3 - Update the tarball. - Fix bug 494511 - ibus-gtk makes gnome-terminal abort when a key is pressed -* Tue Apr 07 2009 Huang Peng - 1.1.0.20090407-2 +* Tue Apr 07 2009 Peng Huang - 1.1.0.20090407-2 - Update default hotkey settings. -* Tue Apr 07 2009 Huang Peng - 1.1.0.20090407-1 +* Tue Apr 07 2009 Peng Huang - 1.1.0.20090407-1 - Update to ibus-1.1.0.20090407. - Fix bug 491042 - ibus default trigger hotkeys - Fix bug 492929 - ibus-hangul can cause gtk app to lockup @@ -322,25 +325,25 @@ fi - Fix bug 493687 - ibus-hangul should default to vertical candidate selection - Fix bug 493449 - ibus broke Alt-F2 command auto-completion -* Tue Mar 31 2009 Huang Peng - 1.1.0.20090331-1 +* Tue Mar 31 2009 Peng Huang - 1.1.0.20090331-1 - Update to ibus-1.1.0.20090331. - Fix bug 492956 - screws up keyboard input in firefox - Fix bug 490143 - ibus issue with gnome-keyring -* Sun Mar 29 2009 Huang Peng - 1.1.0.20090311-3 +* Sun Mar 29 2009 Peng Huang - 1.1.0.20090311-3 - Recreate the ibus-HEAD.patch from upstream git source tree - Fix bug 491999 - up/down arrow keys broken in xchat -* Sat Mar 28 2009 Huang Peng - 1.1.0.20090311-2 +* Sat Mar 28 2009 Peng Huang - 1.1.0.20090311-2 - Recreate the ibus-HEAD.patch from upstream git source tree. - Fix bug 490009 - Deleting Next Engine shortcuts doesn't work - Fix bug 490381 - Change "Next/Previous engine" labels -* Wed Mar 11 2009 Huang Peng - 1.1.0.20090311-1 +* Wed Mar 11 2009 Peng Huang - 1.1.0.20090311-1 - Update to ibus-1.1.0.20090311. - Update setup ui follow GNOME Human Interface Guidelines 2.2 (#489497). -* Fri Mar 6 2009 Huang Peng - 1.1.0.20090306-1 +* Fri Mar 6 2009 Peng Huang - 1.1.0.20090306-1 - Update to ibus-1.1.0.20090306. * Tue Mar 3 2009 Jens Petersen @@ -350,60 +353,60 @@ fi - drop the superfluous ibus-0.1 engine obsoletes - move glib2 requires to gtk package -* Tue Feb 25 2009 Huang Peng - 1.1.0.20090225-1 +* Tue Feb 25 2009 Peng Huang - 1.1.0.20090225-1 - Update to ibus-1.1.0.20090225. - Fix problems in %post and %postun scripts. - Hide ibus & ibus preferences menu items. -* Tue Feb 17 2009 Huang Peng - 1.1.0.20090211-10 +* Tue Feb 17 2009 Peng Huang - 1.1.0.20090211-10 - Recreate the ibus-HEAD.patch from upstream git source tree. - Put 'Select an input method' in engine select combobox (#485861). -* Tue Feb 17 2009 Huang Peng - 1.1.0.20090211-9 +* Tue Feb 17 2009 Peng Huang - 1.1.0.20090211-9 - Add requires im-chooser >= 1.2.5. -* Tue Feb 17 2009 Huang Peng - 1.1.0.20090211-8 +* Tue Feb 17 2009 Peng Huang - 1.1.0.20090211-8 - Recreate the ibus-HEAD.patch from upstream git source tree. - Fix ibus-hangul segfault (#485438). -* Mon Feb 16 2009 Huang Peng - 1.1.0.20090211-6 +* Mon Feb 16 2009 Peng Huang - 1.1.0.20090211-6 - Recreate the ibus-HEAD.patch from upstream git source tree. - The new patch fixes ibus-x11 segfault (#485661). -* Sun Feb 15 2009 Huang Peng - 1.1.0.20090211-5 +* Sun Feb 15 2009 Peng Huang - 1.1.0.20090211-5 - Recreate the ibus-HEAD.patch from upstream git source tree. -* Sun Feb 15 2009 Huang Peng - 1.1.0.20090211-4 +* Sun Feb 15 2009 Peng Huang - 1.1.0.20090211-4 - Remove gnome-python2-gconf from requires. -* Fri Feb 13 2009 Huang Peng - 1.1.0.20090211-3 +* Fri Feb 13 2009 Peng Huang - 1.1.0.20090211-3 - Update ibus-HEAD.patch, to fix bug 484652. -* Fri Feb 13 2009 Huang Peng - 1.1.0.20090211-2 +* Fri Feb 13 2009 Peng Huang - 1.1.0.20090211-2 - Add patch ibus-HEAD.patch, to update ibus to HEAD version. -* Wed Feb 11 2009 Huang Peng - 1.1.0.20090211-1 +* Wed Feb 11 2009 Peng Huang - 1.1.0.20090211-1 - Add --xim argument in xinput-ibus - Add Obsoletes: ibus-qt <= 1.1.0 - Move libibus.so.* to ibus-libs to make ibus multilib. - Update to 1.1.0.20090211. -* Thu Feb 05 2009 Huang Peng - 1.1.0.20090205-1 +* Thu Feb 05 2009 Peng Huang - 1.1.0.20090205-1 - Update to 1.1.0.20090205. -* Tue Feb 03 2009 Huang Peng - 0.1.1.20090203-1 +* Tue Feb 03 2009 Peng Huang - 0.1.1.20090203-1 - Update to 0.1.1.20090203. * Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.1.1.20081023-3 - Rebuild for Python 2.6 -* Wed Nov 19 2008 Huang Peng - 0.1.1.20081023-2 +* Wed Nov 19 2008 Peng Huang - 0.1.1.20081023-2 - Move libibus-gtk.so from ibus.rpm to ibus-gtk.rpm to fix bug 472146. -* Thu Oct 23 2008 Huang Peng - 0.1.1.20081023-1 +* Thu Oct 23 2008 Peng Huang - 0.1.1.20081023-1 - Update to 0.1.1.20081023. -* Thu Oct 16 2008 Huang Peng - 0.1.1.20081016-1 +* Thu Oct 16 2008 Peng Huang - 0.1.1.20081016-1 - Update to 0.1.1.20081016. * Tue Oct 7 2008 Jens Petersen - 0.1.1.20081006-3 @@ -412,56 +415,56 @@ fi * Tue Oct 7 2008 Jens Petersen - 0.1.1.20081006-2 - add xinputrc alternative when installing or uninstalling -* Mon Oct 06 2008 Huang Peng - 0.1.1.20081006-1 +* Mon Oct 06 2008 Peng Huang - 0.1.1.20081006-1 - Update to 0.1.1.20081006. -* Sun Oct 05 2008 Huang Peng - 0.1.1.20081005-1 +* Sun Oct 05 2008 Peng Huang - 0.1.1.20081005-1 - Update to 0.1.1.20081005. -* Sat Oct 04 2008 Huang Peng - 0.1.1.20081004-1 +* Sat Oct 04 2008 Peng Huang - 0.1.1.20081004-1 - Update to 0.1.1.20081004. -* Wed Oct 01 2008 Huang Peng - 0.1.1.20081001-1 +* Wed Oct 01 2008 Peng Huang - 0.1.1.20081001-1 - Update to 0.1.1.20081001. -* Tue Sep 30 2008 Huang Peng - 0.1.1.20080930-1 +* Tue Sep 30 2008 Peng Huang - 0.1.1.20080930-1 - Update to 0.1.1.20080930. -* Tue Sep 23 2008 Huang Peng - 0.1.1.20080923-1 +* Tue Sep 23 2008 Peng Huang - 0.1.1.20080923-1 - Update to 0.1.1.20080923. -* Wed Sep 17 2008 Huang Peng - 0.1.1.20080917-1 +* Wed Sep 17 2008 Peng Huang - 0.1.1.20080917-1 - Update to 0.1.1.20080917. -* Tue Sep 16 2008 Huang Peng - 0.1.1.20080916-1 +* Tue Sep 16 2008 Peng Huang - 0.1.1.20080916-1 - Update to 0.1.1.20080916. -* Mon Sep 15 2008 Huang Peng - 0.1.1.20080914-1 +* Mon Sep 15 2008 Peng Huang - 0.1.1.20080914-1 - Update to 0.1.1.20080914. -* Mon Sep 08 2008 Huang Peng - 0.1.1.20080908-1 +* Mon Sep 08 2008 Peng Huang - 0.1.1.20080908-1 - Update to 0.1.1.20080908. -* Mon Sep 01 2008 Huang Peng - 0.1.1.20080901-1 +* Mon Sep 01 2008 Peng Huang - 0.1.1.20080901-1 - Update to 0.1.1.20080901. -* Sat Aug 30 2008 Huang Peng - 0.1.1.20080830-1 +* Sat Aug 30 2008 Peng Huang - 0.1.1.20080830-1 - Update to 0.1.1.20080830. -* Mon Aug 25 2008 Huang Peng - 0.1.1.20080825-1 +* Mon Aug 25 2008 Peng Huang - 0.1.1.20080825-1 - Update to 0.1.1.20080825. -* Sat Aug 23 2008 Huang Peng - 0.1.1.20080823-1 +* Sat Aug 23 2008 Peng Huang - 0.1.1.20080823-1 - Update to 0.1.1.20080823. -* Fri Aug 15 2008 Huang Peng - 0.1.1.20080815-1 +* Fri Aug 15 2008 Peng Huang - 0.1.1.20080815-1 - Update to 0.1.1.20080815. -* Thu Aug 12 2008 Huang Peng - 0.1.1.20080812-1 +* Thu Aug 12 2008 Peng Huang - 0.1.1.20080812-1 - Update to 0.1.1.20080812. -* Mon Aug 11 2008 Huang Peng - 0.1.0.20080810-2 +* Mon Aug 11 2008 Peng Huang - 0.1.0.20080810-2 - Add gnome-python2-gconf in Requires. -* Thu Aug 07 2008 Huang Peng - 0.1.0.20080810-1 +* Thu Aug 07 2008 Peng Huang - 0.1.0.20080810-1 - The first version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 22 Jun 2009 05:09:19 -0000 1.38 +++ sources 19 Jul 2009 05:19:02 -0000 1.39 @@ -1 +1 @@ -3753834804986d4f118b0030c80daa01 ibus-1.2.0.20090617.tar.gz +66cfbbf03f7310c017863c3fdb2d988e ibus-1.2.0.20090719.tar.gz From kevin at fedoraproject.org Sun Jul 19 05:54:57 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 05:54:57 +0000 (UTC) Subject: rpms/exo/devel exo-0.3.101-url-quoting.patch, NONE, 1.1 exo.spec, 1.35, 1.36 Message-ID: <20090719055457.CC95511C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/exo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21364 Modified Files: exo.spec Added Files: exo-0.3.101-url-quoting.patch Log Message: Add patch to fix url quoting (bug #509730) exo-0.3.101-url-quoting.patch: main.c | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) --- NEW FILE exo-0.3.101-url-quoting.patch --- diff -Nur exo-0.3.101.orig/exo-open/main.c exo-0.3.101/exo-open/main.c --- exo-0.3.101.orig/exo-open/main.c 2009-04-11 04:09:56.000000000 -0600 +++ exo-0.3.101/exo-open/main.c 2009-07-18 23:38:15.000000000 -0600 @@ -35,7 +35,16 @@ #include - +/** + * For testing this code the following commands should work: + * + * exo-open --launch WebBrowser http://xfce.org (bug #5461). + * exo-open http://xfce.org + * exo-open --launch TerminalEmulator ./script.sh 'something with a space' 'nospace' (bug #5132). + * exo-open --launch TerminalEmulator ssh -l username some.host.com + * xfterm4 -e ssh -l ssh -l username some.host.com (bug #5301, this generates line below) + * exo-open --launch TerminalEmulator 'ssh -l username some.host.com' + **/ static gboolean opt_help = FALSE; static gboolean opt_version = FALSE; @@ -142,6 +151,9 @@ { if (argc > 1) { + + /* NOTE: see the comment at the top of this document! */ + /* combine all specified parameters to one parameter string */ join = g_string_new (NULL); for (i = 1; argv[i] != NULL; i++) @@ -150,10 +162,19 @@ if (i > 1) join = g_string_append_c (join, ' '); - /* append the quoted argument */ - quoted = g_shell_quote (argv[i]); - join = g_string_append (join, quoted); - g_free (quoted); + /* only quote arguments with spaces if there are multiple + * arguments to be merged, this is a bit of magic to make + * common cares work property, see sample above with xfrun4 */ + if (argc > 2 && strchr (argv[i], ' ') != NULL) + { + quoted = g_shell_quote (argv[i]); + join = g_string_append (join, quoted); + g_free (quoted); + } + else + { + join = g_string_append (join, argv[i]); + } } parameter = g_string_free (join, FALSE); } @@ -162,6 +183,10 @@ parameter = NULL; } +#ifndef NDEBUG + g_message ("launch=%s, wd=%s, parameters (%d)=%s", opt_launch, opt_working_directory, argc, parameter); +#endif + /* run the preferred application */ if (!exo_execute_preferred_application (opt_launch, parameter, opt_working_directory, NULL, &err)) { Index: exo.spec =================================================================== RCS file: /cvs/extras/rpms/exo/devel/exo.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- exo.spec 20 Apr 2009 02:08:40 -0000 1.35 +++ exo.spec 19 Jul 2009 05:54:56 -0000 1.36 @@ -3,13 +3,14 @@ Summary: Application library for the Xfce desktop environment Name: exo Version: 0.3.101 -Release: 1%{?dist} +Release: 2%{?dist} # libexo-hal exo-helper mount-notify and exo-mount are all GPLv2+ # everything else is LGPLv2+ License: LGPLv2+ and GPLv2+ URL: http://xfce.org/ Source0: http://www.xfce.org/archive/xfce-4.6.1/src/exo-%{version}.tar.bz2 Patch0: exo-0.3.0-x86_64-build.patch +Patch1: exo-0.3.101-url-quoting.patch Group: System Environment/Libraries Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: dbus-glib >= 0.22 @@ -53,6 +54,7 @@ Python libraries and header files for th %setup -q %patch0 -p1 -b .x86_64-build +%patch1 -p1 -b .url-quoting %build %configure --enable-gtk-doc --disable-static @@ -134,6 +136,9 @@ fi %{python_sitearch}/pyexo.* %changelog +* Fri Jul 17 2009 Kevin Fenzi - 0.3.101-2 +- Add patch to fix url quoting (bug #509730) + * Sun Apr 19 2009 Kevin Fenzi - 0.3.101-1 - Update to 0.3.101 From abompard at fedoraproject.org Sun Jul 19 06:59:50 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sun, 19 Jul 2009 06:59:50 +0000 (UTC) Subject: rpms/spring/F-11 spring.spec,1.3,1.4 Message-ID: <20090719065950.4D2A211C00D7@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/spring/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6766/F-11 Modified Files: spring.spec Log Message: * Sun Jul 19 2009 Aurelien Bompard 0.79.1.2-2 - use OpenJDK's version of Java Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/F-11/spring.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- spring.spec 18 Jul 2009 21:40:24 -0000 1.3 +++ spring.spec 19 Jul 2009 06:59:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: spring Version: 0.79.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -22,8 +22,9 @@ Patch0: spring-0.79.1.2-allegro. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake SDL-devel openal-devel boost-devel DevIL-devel -BuildRequires: glew-devel libvorbis-devel java-devel DevIL-ILUT-devel +BuildRequires: glew-devel libvorbis-devel DevIL-ILUT-devel BuildRequires: freetype-devel python-devel allegro-devel zip +BuildRequires: java-devel-openjdk BuildRequires: desktop-file-utils Requires: spring-lobby spring-installer spring-maps-default @@ -134,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Aurelien Bompard 0.79.1.2-2 +- use OpenJDK's version of Java + * Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 - version 0.79.1.2 - remove obsolete fonts hack From abompard at fedoraproject.org Sun Jul 19 06:59:50 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Sun, 19 Jul 2009 06:59:50 +0000 (UTC) Subject: rpms/spring/devel spring.spec,1.3,1.4 Message-ID: <20090719065950.5117E11C0263@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/spring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6766/devel Modified Files: spring.spec Log Message: * Sun Jul 19 2009 Aurelien Bompard 0.79.1.2-2 - use OpenJDK's version of Java Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/devel/spring.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- spring.spec 18 Jul 2009 21:40:24 -0000 1.3 +++ spring.spec 19 Jul 2009 06:59:19 -0000 1.4 @@ -1,6 +1,6 @@ Name: spring Version: 0.79.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -22,8 +22,9 @@ Patch0: spring-0.79.1.2-allegro. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake SDL-devel openal-devel boost-devel DevIL-devel -BuildRequires: glew-devel libvorbis-devel java-devel DevIL-ILUT-devel +BuildRequires: glew-devel libvorbis-devel DevIL-ILUT-devel BuildRequires: freetype-devel python-devel allegro-devel zip +BuildRequires: java-devel-openjdk BuildRequires: desktop-file-utils Requires: spring-lobby spring-installer spring-maps-default @@ -134,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Aurelien Bompard 0.79.1.2-2 +- use OpenJDK's version of Java + * Sat Jul 18 2009 Aurelien Bompard 0.79.1.2-1 - version 0.79.1.2 - remove obsolete fonts hack From kevin at fedoraproject.org Sun Jul 19 07:54:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 07:54:50 +0000 (UTC) Subject: rpms/exo/F-11 exo-0.3.101-url-quoting.patch, NONE, 1.1 exo.spec, 1.35, 1.36 Message-ID: <20090719075450.6881A11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/exo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21837 Modified Files: exo.spec Added Files: exo-0.3.101-url-quoting.patch Log Message: Add patch to fix url quoting (bug #509730) exo-0.3.101-url-quoting.patch: main.c | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) --- NEW FILE exo-0.3.101-url-quoting.patch --- diff -Nur exo-0.3.101.orig/exo-open/main.c exo-0.3.101/exo-open/main.c --- exo-0.3.101.orig/exo-open/main.c 2009-04-11 04:09:56.000000000 -0600 +++ exo-0.3.101/exo-open/main.c 2009-07-18 23:38:15.000000000 -0600 @@ -35,7 +35,16 @@ #include - +/** + * For testing this code the following commands should work: + * + * exo-open --launch WebBrowser http://xfce.org (bug #5461). + * exo-open http://xfce.org + * exo-open --launch TerminalEmulator ./script.sh 'something with a space' 'nospace' (bug #5132). + * exo-open --launch TerminalEmulator ssh -l username some.host.com + * xfterm4 -e ssh -l ssh -l username some.host.com (bug #5301, this generates line below) + * exo-open --launch TerminalEmulator 'ssh -l username some.host.com' + **/ static gboolean opt_help = FALSE; static gboolean opt_version = FALSE; @@ -142,6 +151,9 @@ { if (argc > 1) { + + /* NOTE: see the comment at the top of this document! */ + /* combine all specified parameters to one parameter string */ join = g_string_new (NULL); for (i = 1; argv[i] != NULL; i++) @@ -150,10 +162,19 @@ if (i > 1) join = g_string_append_c (join, ' '); - /* append the quoted argument */ - quoted = g_shell_quote (argv[i]); - join = g_string_append (join, quoted); - g_free (quoted); + /* only quote arguments with spaces if there are multiple + * arguments to be merged, this is a bit of magic to make + * common cares work property, see sample above with xfrun4 */ + if (argc > 2 && strchr (argv[i], ' ') != NULL) + { + quoted = g_shell_quote (argv[i]); + join = g_string_append (join, quoted); + g_free (quoted); + } + else + { + join = g_string_append (join, argv[i]); + } } parameter = g_string_free (join, FALSE); } @@ -162,6 +183,10 @@ parameter = NULL; } +#ifndef NDEBUG + g_message ("launch=%s, wd=%s, parameters (%d)=%s", opt_launch, opt_working_directory, argc, parameter); +#endif + /* run the preferred application */ if (!exo_execute_preferred_application (opt_launch, parameter, opt_working_directory, NULL, &err)) { Index: exo.spec =================================================================== RCS file: /cvs/extras/rpms/exo/F-11/exo.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- exo.spec 20 Apr 2009 17:50:07 -0000 1.35 +++ exo.spec 19 Jul 2009 07:54:49 -0000 1.36 @@ -3,13 +3,14 @@ Summary: Application library for the Xfce desktop environment Name: exo Version: 0.3.101 -Release: 1%{?dist} +Release: 2%{?dist} # libexo-hal exo-helper mount-notify and exo-mount are all GPLv2+ # everything else is LGPLv2+ License: LGPLv2+ and GPLv2+ URL: http://xfce.org/ Source0: http://www.xfce.org/archive/xfce-4.6.1/src/exo-%{version}.tar.bz2 Patch0: exo-0.3.0-x86_64-build.patch +Patch1: exo-0.3.101-url-quoting.patch Group: System Environment/Libraries Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: dbus-glib >= 0.22 @@ -53,6 +54,7 @@ Python libraries and header files for th %setup -q %patch0 -p1 -b .x86_64-build +%patch1 -p1 -b .url-quoting %build %configure --enable-gtk-doc --disable-static @@ -134,6 +136,9 @@ fi %{python_sitearch}/pyexo.* %changelog +* Fri Jul 17 2009 Kevin Fenzi - 0.3.101-2 +- Add patch to fix url quoting (bug #509730) + * Sun Apr 19 2009 Kevin Fenzi - 0.3.101-1 - Update to 0.3.101 From mjakubicek at fedoraproject.org Sun Jul 19 08:28:22 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Sun, 19 Jul 2009 08:28:22 +0000 (UTC) Subject: rpms/html-xml-utils/devel .cvsignore, 1.3, 1.4 html-xml-utils.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090719082822.80DD511C00D7@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/html-xml-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29807 Modified Files: .cvsignore html-xml-utils.spec sources Log Message: - Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 May 2009 10:57:05 -0000 1.3 +++ .cvsignore 19 Jul 2009 08:27:50 -0000 1.4 @@ -1 +1 @@ -html-xml-utils-5.3.tar.gz +html-xml-utils-5.4.tar.gz Index: html-xml-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/devel/html-xml-utils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- html-xml-utils.spec 16 May 2009 10:57:05 -0000 1.7 +++ html-xml-utils.spec 19 Jul 2009 08:27:50 -0000 1.8 @@ -1,5 +1,5 @@ Name: html-xml-utils -Version: 5.3 +Version: 5.4 Release: 1%{?dist} Summary: A number of simple utilities for manipulating HTML and XML files @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Milos Jakubicek - 5.4-1 +- Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). + * Sat May 16 2009 Milos Jakubicek - 5.3-1 - Update to 5.3: many bugfixes, most binaries have now a "hx" prefix - Removed Conflicts: surfraw, normalize Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 May 2009 10:57:05 -0000 1.3 +++ sources 19 Jul 2009 08:27:51 -0000 1.4 @@ -1 +1 @@ -21d48052c36f28c98a2a1df5905287ae html-xml-utils-5.3.tar.gz +28917ddd90339ab8381f37158423892f html-xml-utils-5.4.tar.gz From pkgdb at fedoraproject.org Sun Jul 19 10:16:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:16:44 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested watchbugzilla Message-ID: <20090719101644.E97B810F8B4@bastion2.fedora.phx.redhat.com> remi has requested the watchbugzilla acl on php-pear-PEAR-Command-Packaging (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:16:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:16:47 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested watchcommits Message-ID: <20090719101647.C527A10F8B8@bastion2.fedora.phx.redhat.com> remi has requested the watchcommits acl on php-pear-PEAR-Command-Packaging (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:16:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:16:49 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested commit Message-ID: <20090719101649.E485410F8BC@bastion2.fedora.phx.redhat.com> remi has requested the commit acl on php-pear-PEAR-Command-Packaging (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:17:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:17:01 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested watchbugzilla Message-ID: <20090719101701.EC15E10F8BE@bastion2.fedora.phx.redhat.com> remi has requested the watchbugzilla acl on php-pear-PEAR-Command-Packaging (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:17:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:17:03 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested commit Message-ID: <20090719101703.BF7EF10F8BF@bastion2.fedora.phx.redhat.com> remi has requested the commit acl on php-pear-PEAR-Command-Packaging (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:17:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:17:05 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging: remi has requested watchcommits Message-ID: <20090719101705.D47E910F8C0@bastion2.fedora.phx.redhat.com> remi has requested the watchcommits acl on php-pear-PEAR-Command-Packaging (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From alexlan at fedoraproject.org Sun Jul 19 10:20:33 2009 From: alexlan at fedoraproject.org (alexlan) Date: Sun, 19 Jul 2009 10:20:33 +0000 (UTC) Subject: rpms/Miro/devel Miro.spec,1.56,1.57 Message-ID: <20090719102033.E7DEC11C049B@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/Miro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26632 Modified Files: Miro.spec Log Message: - Rebuild against newer gecko Index: Miro.spec =================================================================== RCS file: /cvs/extras/rpms/Miro/devel/Miro.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- Miro.spec 1 Jul 2009 21:20:37 -0000 1.56 +++ Miro.spec 19 Jul 2009 10:20:31 -0000 1.57 @@ -1,11 +1,11 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 Name: Miro Version: 2.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Sun Jul 19 2009 Alex Lancaster - 2.0.5-2 +- Rebuild against newer gecko + * Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 - Update to latest upstream (2.0.5), fixes #507642 From alexlan at fedoraproject.org Sun Jul 19 10:24:38 2009 From: alexlan at fedoraproject.org (alexlan) Date: Sun, 19 Jul 2009 10:24:38 +0000 (UTC) Subject: rpms/blam/devel blam.spec,1.28,1.29 Message-ID: <20090719102438.1F5EA11C00D7@cvs1.fedora.phx.redhat.com> Author: alexlan Update of /cvs/extras/rpms/blam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27942 Modified Files: blam.spec Log Message: * Sun Jul 19 2009 Alex Lancaster - 1.8.5-12 - Rebuild against newer gecko Index: blam.spec =================================================================== RCS file: /cvs/extras/rpms/blam/devel/blam.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- blam.spec 28 Apr 2009 03:21:22 -0000 1.28 +++ blam.spec 19 Jul 2009 10:24:37 -0000 1.29 @@ -1,11 +1,11 @@ ## XXX: Hopefully Mono, Blam and multilib will play nicely soon... %define _libdir %{_prefix}/lib %define dbus_sharp_min_version 0.60 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 Name: blam Version: 1.8.5 -Release: 10%{?dist} +Release: 12%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -138,6 +138,9 @@ update-desktop-database &> /dev/null ||: %{_mandir}/man?/%{name}.1* %changelog +* Sun Jul 19 2009 Alex Lancaster - 1.8.5-12 +- Rebuild against newer gecko + * Mon Apr 27 2009 Christopher Aillon - 1.8.5-10 - Rebuild against newer gecko From pkgdb at fedoraproject.org Sun Jul 19 10:34:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:16 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103416.47B8010F89D@bastion2.fedora.phx.redhat.com> timj has set the watchbugzilla acl on php-pear-PEAR-Command-Packaging (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:34:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:17 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103417.7636510F8B0@bastion2.fedora.phx.redhat.com> timj has set the watchcommits acl on php-pear-PEAR-Command-Packaging (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:34:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:19 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103419.5D6C410F89E@bastion2.fedora.phx.redhat.com> timj has set the commit acl on php-pear-PEAR-Command-Packaging (Fedora devel) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:34:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:37 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103437.C689010F8AC@bastion2.fedora.phx.redhat.com> timj has set the watchbugzilla acl on php-pear-PEAR-Command-Packaging (Fedora 11) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:34:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:40 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103440.2724910F8B5@bastion2.fedora.phx.redhat.com> timj has set the watchcommits acl on php-pear-PEAR-Command-Packaging (Fedora 11) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From pkgdb at fedoraproject.org Sun Jul 19 10:34:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 10:34:42 +0000 Subject: [pkgdb] php-pear-PEAR-Command-Packaging had acl change status Message-ID: <20090719103442.63A8A10F89D@bastion2.fedora.phx.redhat.com> timj has set the commit acl on php-pear-PEAR-Command-Packaging (Fedora 11) to Approved for remi To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-pear-PEAR-Command-Packaging From awjb at fedoraproject.org Sun Jul 19 10:48:18 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sun, 19 Jul 2009 10:48:18 +0000 (UTC) Subject: rpms/wine/F-10 adding-pulseaudio-to-winecfg-0.3.patch, NONE, 1.1 winepulse-0.29-configure.ac.patch, NONE, 1.1 winepulse-0.29.patch, NONE, 1.1 .cvsignore, 1.75, 1.76 sources, 1.76, 1.77 wine.spec, 1.104, 1.105 adding-pulseaudio-to-winecfg.patch, 1.2, NONE winepulse-0.17-configure.ac.patch, 1.1, NONE winepulse-0.28.patch, 1.1, NONE Message-ID: <20090719104818.171A011C00D7@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/wine/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2207/F-10 Modified Files: .cvsignore sources wine.spec Added Files: adding-pulseaudio-to-winecfg-0.3.patch winepulse-0.29-configure.ac.patch winepulse-0.29.patch Removed Files: adding-pulseaudio-to-winecfg.patch winepulse-0.17-configure.ac.patch winepulse-0.28.patch Log Message: - 1.1.26-1 - version upgrade - WinePulse 0.29 - require Xrender isa for x86_64 (#510947) adding-pulseaudio-to-winecfg-0.3.patch: Bg.rc | 1 + Cs.rc | 1 + Da.rc | 1 + De.rc | 1 + En.rc | 1 + Es.rc | 1 + Fi.rc | 1 + Fr.rc | 1 + Hu.rc | 1 + Ja.rc | 1 + Ko.rc | 1 + Nl.rc | 1 + No.rc | 1 + Pl.rc | 1 + Pt.rc | 1 + Ro.rc | 1 + Ru.rc | 1 + Si.rc | 1 + Sv.rc | 1 + Tr.rc | 1 + Zh.rc | 1 + audio.c | 1 + libraries.c | 1 + resource.h | 2 +- 24 files changed, 24 insertions(+), 1 deletion(-) --- NEW FILE adding-pulseaudio-to-winecfg-0.3.patch --- diff --git a/programs/winecfg/Bg.rc b/programs/winecfg/Bg.rc index 00cfbe8..ce2c8c7 100644 --- a/programs/winecfg/Bg.rc +++ b/programs/winecfg/Bg.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Cs.rc b/programs/winecfg/Cs.rc index b34dd06..348153c 100644 --- a/programs/winecfg/Cs.rc +++ b/programs/winecfg/Cs.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardn?" IDS_ACCEL_BASIC "Z?kladn?" IDS_ACCEL_EMULATION "Emulace" + IDS_DRIVER_PULSE "Ovlada? PulseAudio" IDS_DRIVER_ALSA "Ovlada? ALSA" IDS_DRIVER_ESOUND "Ovlada? EsounD" IDS_DRIVER_OSS "Ovlada? OSS" diff --git a/programs/winecfg/Da.rc b/programs/winecfg/Da.rc index 62b781b..a604ea3 100644 --- a/programs/winecfg/Da.rc +++ b/programs/winecfg/Da.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggende" IDS_ACCEL_EMULATION "Emul?ring" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/De.rc b/programs/winecfg/De.rc index 53c412c..8f70399 100644 --- a/programs/winecfg/De.rc +++ b/programs/winecfg/De.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Einfach" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio-Treiber" IDS_DRIVER_ALSA "ALSA-Treiber" IDS_DRIVER_ESOUND "EsounD-Treiber" IDS_DRIVER_OSS "OSS-Treiber" diff --git a/programs/winecfg/En.rc b/programs/winecfg/En.rc index a69b4d9..2d3dc5c 100644 --- a/programs/winecfg/En.rc +++ b/programs/winecfg/En.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Es.rc b/programs/winecfg/Es.rc index 2ddce6c..ececfe2 100644 --- a/programs/winecfg/Es.rc +++ b/programs/winecfg/Es.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Est?ndar" IDS_ACCEL_BASIC "B?sica" IDS_ACCEL_EMULATION "Emulaci?n" + IDS_DRIVER_PULSE "Manejador PulseAudio" IDS_DRIVER_ALSA "Manejador ALSA" IDS_DRIVER_ESOUND "Manejador EsounD" IDS_DRIVER_OSS "Manejador OSS" diff --git a/programs/winecfg/Fi.rc b/programs/winecfg/Fi.rc index f6fb85c..ed24bf6 100644 --- a/programs/winecfg/Fi.rc +++ b/programs/winecfg/Fi.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Fr.rc b/programs/winecfg/Fr.rc index b63adb1..414f440 100644 --- a/programs/winecfg/Fr.rc +++ b/programs/winecfg/Fr.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basique" IDS_ACCEL_EMULATION "??mulation" + IDS_DRIVER_PULSE "Pilote PulseAudio" IDS_DRIVER_ALSA "Pilote ALSA" IDS_DRIVER_ESOUND "Pilote EsounD" IDS_DRIVER_OSS "Pilote OSS" diff --git a/programs/winecfg/Hu.rc b/programs/winecfg/Hu.rc index 0445c77..7756d2b 100644 --- a/programs/winecfg/Hu.rc +++ b/programs/winecfg/Hu.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ja.rc b/programs/winecfg/Ja.rc index a25a953..d690f7f 100644 --- a/programs/winecfg/Ja.rc +++ b/programs/winecfg/Ja.rc @@ -276,6 +276,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????????????????" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ko.rc b/programs/winecfg/Ko.rc index c01b841..5c500d5 100644 --- a/programs/winecfg/Ko.rc +++ b/programs/winecfg/Ko.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "????" IDS_ACCEL_BASIC "????" IDS_ACCEL_EMULATION "??????????" + IDS_DRIVER_PULSE "PulseAudio ????????" IDS_DRIVER_ALSA "ALSA ????????" IDS_DRIVER_ESOUND "EsounD ????????" IDS_DRIVER_OSS "OSS ????????" diff --git a/programs/winecfg/Nl.rc b/programs/winecfg/Nl.rc index 99062cf..2683a82 100644 --- a/programs/winecfg/Nl.rc +++ b/programs/winecfg/Nl.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standaard" IDS_ACCEL_BASIC "Eenvoudig" IDS_ACCEL_EMULATION "Emulatie" + IDS_DRIVER_PULSE "PulseAudio Stuurprogramma" IDS_DRIVER_ALSA "ALSA Stuurprogramma" IDS_DRIVER_ESOUND "EsounD Stuurprogramma" IDS_DRIVER_OSS "OSS Stuurprogramma" diff --git a/programs/winecfg/No.rc b/programs/winecfg/No.rc index 357539e..b2a5eae 100644 --- a/programs/winecfg/No.rc +++ b/programs/winecfg/No.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grunnleggende" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/Pl.rc b/programs/winecfg/Pl.rc index 8e1d9a2..bd968de 100644 --- a/programs/winecfg/Pl.rc +++ b/programs/winecfg/Pl.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardowe" IDS_ACCEL_BASIC "Podstawowe" IDS_ACCEL_EMULATION "Emulacja" + IDS_DRIVER_PULSE "Sterownik PulseAudio" IDS_DRIVER_ALSA "Sterownik ALSA" IDS_DRIVER_ESOUND "Sterownik EsounD" IDS_DRIVER_OSS "Sterownik OSS" diff --git a/programs/winecfg/Pt.rc b/programs/winecfg/Pt.rc index e3b02a1..be5acb0 100644 --- a/programs/winecfg/Pt.rc +++ b/programs/winecfg/Pt.rc @@ -471,6 +471,7 @@ BEGIN IDS_ACCEL_STANDARD "Padr??o" IDS_ACCEL_BASIC "B??sico" IDS_ACCEL_EMULATION "Emula????o" + IDS_DRIVER_PULSE "Controlador PulseAudio" IDS_DRIVER_ALSA "Controlador ALSA" IDS_DRIVER_ESOUND "Controlador EsounD" IDS_DRIVER_OSS "Controlador OSS" diff --git a/programs/winecfg/Ro.rc b/programs/winecfg/Ro.rc index c836d60..50317bf 100644 --- a/programs/winecfg/Ro.rc +++ b/programs/winecfg/Ro.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "De baz??" IDS_ACCEL_EMULATION "Emulare" + IDS_DRIVER_PULSE "Driver PulseAudio" IDS_DRIVER_ALSA "Driver ALSA" IDS_DRIVER_ESOUND "Driver Esound" IDS_DRIVER_OSS "Driver OSS" diff --git a/programs/winecfg/Ru.rc b/programs/winecfg/Ru.rc index 8d61413..7962c98 100644 --- a/programs/winecfg/Ru.rc +++ b/programs/winecfg/Ru.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "???????????" IDS_ACCEL_BASIC "???????????" IDS_ACCEL_EMULATION "????????" + IDS_DRIVER_PULSE "PulseAudio ???????" IDS_DRIVER_ALSA "ALSA ???????" IDS_DRIVER_ESOUND "EsounD ???????" IDS_DRIVER_OSS "OSS ???????" diff --git a/programs/winecfg/Si.rc b/programs/winecfg/Si.rc index 87cd239..73544bb 100644 --- a/programs/winecfg/Si.rc +++ b/programs/winecfg/Si.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardno" IDS_ACCEL_BASIC "Osnovno" IDS_ACCEL_EMULATION "Emulacija" + IDS_DRIVER_PULSE "PulseAudio gonilnik" IDS_DRIVER_ALSA "ALSA gonilnik" IDS_DRIVER_ESOUND "EsounD gonilnik" IDS_DRIVER_OSS "OSS gonilnik" diff --git a/programs/winecfg/Sv.rc b/programs/winecfg/Sv.rc index 113603c..dde6ed5 100644 --- a/programs/winecfg/Sv.rc +++ b/programs/winecfg/Sv.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggande" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-drivrutin" IDS_DRIVER_ALSA "ALSA-drivrutin" IDS_DRIVER_ESOUND "EsounD-drivrutin" IDS_DRIVER_OSS "OSS-drivrutin" diff --git a/programs/winecfg/Tr.rc b/programs/winecfg/Tr.rc index 883c0f3..4f6ecb3 100644 --- a/programs/winecfg/Tr.rc +++ b/programs/winecfg/Tr.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standart" IDS_ACCEL_BASIC "Temel" IDS_ACCEL_EMULATION "Taklit" + IDS_DRIVER_PULSE "PulseAudio S?r?c?s?" IDS_DRIVER_ALSA "ALSA S?r?c?s?" IDS_DRIVER_ESOUND "EsounD S?r?c?s?" IDS_DRIVER_OSS "OSS S?r?c?s?" diff --git a/programs/winecfg/Zh.rc b/programs/winecfg/Zh.rc index b483cfe..8617049 100644 --- a/programs/winecfg/Zh.rc +++ b/programs/winecfg/Zh.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????" + IDS_DRIVER_PULSE "PulseAudio ??????" IDS_DRIVER_ALSA "ALSA ??????" IDS_DRIVER_ESOUND "EsounD ??????" IDS_DRIVER_OSS "OSS ??????" diff --git a/programs/winecfg/audio.c b/programs/winecfg/audio.c index 79e62f0..b9a310c 100644 --- a/programs/winecfg/audio.c +++ b/programs/winecfg/audio.c @@ -88,6 +88,7 @@ typedef struct } AUDIO_DRIVER; static const AUDIO_DRIVER sAudioDrivers[] = { + {IDS_DRIVER_PULSE, "pulse"}, {IDS_DRIVER_ALSA, "alsa"}, {IDS_DRIVER_OSS, "oss"}, {IDS_DRIVER_COREAUDIO, "coreaudio"}, diff --git a/programs/winecfg/libraries.c b/programs/winecfg/libraries.c index 37cc12b..7c13fad 100644 --- a/programs/winecfg/libraries.c +++ b/programs/winecfg/libraries.c @@ -81,6 +81,7 @@ static const char * const builtin_only[] = "wineoss.drv", "wineps", "wineps.drv", + "winepulse.drv", "winex11.drv", "winmm", "wintab32", diff --git a/programs/winecfg/resource.h b/programs/winecfg/resource.h index 88c9e64..05a13de 100644 --- a/programs/winecfg/resource.h +++ b/programs/winecfg/resource.h @@ -186,7 +186,7 @@ #define IDS_ACCEL_BASIC 8302 #define IDS_ACCEL_EMULATION 8303 #define IDS_DRIVER_ALSA 8304 - +#define IDS_DRIVER_PULSE 8305 #define IDS_DRIVER_ESOUND 8306 #define IDS_DRIVER_OSS 8307 #define IDS_DRIVER_JACK 8308 winepulse-0.29-configure.ac.patch: configure.ac | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) --- NEW FILE winepulse-0.29-configure.ac.patch --- diff --git a/configure.ac b/configure.ac index 3b805fe..4c2b822 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,7 @@ AC_ARG_WITH(png, AS_HELP_STRING([--without-png],[do not use PNG]), [if test "x$withval" = "xno"; then ac_cv_header_png_h=no; fi]) AC_ARG_WITH(pthread, AS_HELP_STRING([--without-pthread],[do not use the pthread library]), [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi]) +AC_ARG_WITH(pulse, AC_HELP_STRING([--without-pulse],[do not use PulseAudio sound support])) AC_ARG_WITH(sane, AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)])) AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]), [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi]) @@ -1253,6 +1254,24 @@ then CFLAGS="$save_CFLAGS" fi +dnl **** Check for PulseAudio **** +if test "x$with_pulse" != "xno"; then + if test "$PKG_CONFIG" != "false"; then + AC_MSG_CHECKING([for pulseaudio >= 0.9.15]) + if "$PKG_CONFIG" --atleast-version=0.9.15 libpulse; then + have_pulseaudio="yes" + else + have_pulseaudio="no" + fi + AC_MSG_RESULT([$have_pulseaudio]) + if test x"$have_pulseaudio" = xyes; then + ac_pulse_libs=`$PKG_CONFIG --libs libpulse` + AC_DEFINE([HAVE_PULSEAUDIO], 1, [define this if you have pulseaudio]) + AC_SUBST(PULSELIBS, "$ac_pulse_libs") + fi + fi +fi + dnl **** Check for ALSA 1.x **** AC_SUBST(ALSALIBS,"") if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes" @@ -1379,7 +1398,7 @@ dnl **** Check for libodbc **** WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])]) dnl **** Check for any sound system **** -if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \ +if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$PULSELIBS$ac_cv_lib_soname_jack" = "x" -a \ "$ac_cv_header_sys_soundcard_h" != "yes" -a \ "$ac_cv_header_machine_soundcard_h" != "yes" -a \ "$ac_cv_header_soundcard_h" != "yes" -a \ @@ -2415,6 +2434,7 @@ WINE_CONFIG_MAKEFILE([dlls/winemp3.acm/Makefile],[dlls/Makedll.rules],[dlls],[AL WINE_CONFIG_MAKEFILE([dlls/winenas.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineoss.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineps.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) +WINE_CONFIG_MAKEFILE([dlls/winepulse.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winequartz.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winex11.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wing32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) winepulse-0.29.patch: Makefile.in | 15 pulse.c | 788 ++++++++++++++++++++++++++++++++++++++ wavein.c | 595 +++++++++++++++++++++++++++++ waveout.c | 1075 +++++++++++++++++++++++++++++++++++++++++++++++++++++ winepulse.drv.spec | 3 winepulse.h | 196 +++++++++ 6 files changed, 2672 insertions(+) --- NEW FILE winepulse-0.29.patch --- diff --git a/dlls/winepulse.drv/Makefile.in b/dlls/winepulse.drv/Makefile.in new file mode 100644 index 0000000..c99c1da --- /dev/null +++ b/dlls/winepulse.drv/Makefile.in @@ -0,0 +1,15 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = winepulse.drv +IMPORTS = winmm user32 kernel32 +EXTRALIBS = @PULSELIBS@ + +C_SRCS = waveout.c \ + wavein.c \ + pulse.c + + at MAKE_DLL_RULES@ + + at DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/winepulse.drv/pulse.c b/dlls/winepulse.drv/pulse.c new file mode 100644 index 0000000..3dcb086 --- /dev/null +++ b/dlls/winepulse.drv/pulse.c @@ -0,0 +1,788 @@ +/* + * Wine Driver for PulseAudio + * http://pulseaudio.org/ + * + * Copyright 2009 Arthur Taylor + * + * Contains code from other wine sound drivers. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "config.h" + +#include +#include + +#include "windef.h" +#include "winbase.h" +#include "wingdi.h" +#include "winuser.h" +#include "winreg.h" +#include "mmddk.h" +#include "ks.h" +#include "ksguid.h" +#include "ksmedia.h" + +#ifdef HAVE_UNISTD_H +# include +#endif +#include + +#ifdef HAVE_PULSEAUDIO + +#include "wine/unicode.h" +#include "wine/debug.h" +#include "wine/library.h" + +#include +#include +WINE_DEFAULT_DEBUG_CHANNEL(wave); + +/* These strings used only for tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg) { + static char unknown[32]; +#define MSG_TO_STR(x) case x: return #x + switch(msg) { + MSG_TO_STR(WINE_WM_PAUSING); + MSG_TO_STR(WINE_WM_RESTARTING); + MSG_TO_STR(WINE_WM_RESETTING); + MSG_TO_STR(WINE_WM_HEADER); + MSG_TO_STR(WINE_WM_BREAKLOOP); + MSG_TO_STR(WINE_WM_CLOSING); + MSG_TO_STR(WINE_WM_STARTING); + MSG_TO_STR(WINE_WM_STOPPING); + MSG_TO_STR(WINE_WM_XRUN); + MSG_TO_STR(WINE_WM_FEED); + } +#undef MSG_TO_STR + sprintf(unknown, "UNKNOWN(0x%08x)", msg); + return unknown; +} + +/*======================================================================* + * Ring Buffer Functions - copied from winealsa.drv * + *======================================================================*/ + +/* unless someone makes a wineserver kernel module, Unix pipes are faster than win32 events */ +#define USE_PIPE_SYNC + +#ifdef USE_PIPE_SYNC +#define INIT_OMR(omr) do { if (pipe(omr->msg_pipe) < 0) { omr->msg_pipe[0] = omr->msg_pipe[1] = -1; } } while (0) +#define CLOSE_OMR(omr) do { close(omr->msg_pipe[0]); close(omr->msg_pipe[1]); } while (0) +#define SIGNAL_OMR(omr) do { int x = 0; write((omr)->msg_pipe[1], &x, sizeof(x)); } while (0) +#define CLEAR_OMR(omr) do { int x = 0; read((omr)->msg_pipe[0], &x, sizeof(x)); } while (0) +#define RESET_OMR(omr) do { } while (0) +#define WAIT_OMR(omr, sleep) \ + do { struct pollfd pfd; pfd.fd = (omr)->msg_pipe[0]; \ + pfd.events = POLLIN; poll(&pfd, 1, sleep); } while (0) +#else +#define INIT_OMR(omr) do { omr->msg_event = CreateEventW(NULL, FALSE, FALSE, NULL); } while (0) +#define CLOSE_OMR(omr) do { CloseHandle(omr->msg_event); } while (0) +#define SIGNAL_OMR(omr) do { SetEvent((omr)->msg_event); } while (0) +#define CLEAR_OMR(omr) do { } while (0) +#define RESET_OMR(omr) do { ResetEvent((omr)->msg_event); } while (0) +#define WAIT_OMR(omr, sleep) \ + do { WaitForSingleObject((omr)->msg_event, sleep); } while (0) +#endif + +#define PULSE_RING_BUFFER_INCREMENT 64 + +/****************************************************************** + * PULSE_InitRingMessage + * + * Initialize the ring of messages for passing between driver's caller + * and playback/record thread + */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr) +{ + omr->msg_toget = 0; + omr->msg_tosave = 0; + INIT_OMR(omr); + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(PULSE_MSG)); + + InitializeCriticalSection(&omr->msg_crst); + omr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PULSE_MSG_RING.msg_crst"); + return 0; +} + +/****************************************************************** + * PULSE_DestroyRingMessage + * + */ +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr) +{ + CLOSE_OMR(omr); + HeapFree(GetProcessHeap(),0,omr->messages); + omr->messages = NULL; + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->msg_crst.DebugInfo->Spare[0] = 0; + DeleteCriticalSection(&omr->msg_crst); + return 0; +} +/****************************************************************** + * PULSE_ResetRingMessage + * + */ +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr) +{ + RESET_OMR(omr); +} + +/****************************************************************** + * PULSE_WaitRingMessage + * + */ +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep) +{ + WAIT_OMR(omr, sleep); +} + +/****************************************************************** + * PULSE_AddRingMessage + * + * Inserts a new message into the ring (should be called from DriverProc derived routines) + */ +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait) +{ + HANDLE hEvent = INVALID_HANDLE_VALUE; + + EnterCriticalSection(&omr->msg_crst); + if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size))) + { + int old_ring_buffer_size = omr->ring_buffer_size; + omr->ring_buffer_size += PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapReAlloc(GetProcessHeap(),0,omr->messages, omr->ring_buffer_size * sizeof(PULSE_MSG)); + /* Now we need to rearrange the ring buffer so that the new + buffers just allocated are in between omr->msg_tosave and + omr->msg_toget. + */ [...2309 lines suppressed...] index 0000000..4a834cd --- /dev/null +++ b/dlls/winepulse.drv/winepulse.h @@ -0,0 +1,196 @@ +/* Definitions for PulseAudio Wine Driver + * + * Copyright 2009 Arthur Taylor + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef __WINE_CONFIG_H +# error You must include config.h to use this header +#endif + +#if defined(HAVE_PULSEAUDIO) && !defined(__WINEPULSE_H) +#define __WINEPULSE_H + +#include "mmreg.h" +#include "dsound.h" +#include "dsdriver.h" + +#include "ks.h" +#include "ksmedia.h" +#include "ksguid.h" + +#include + +/* state diagram for waveOut writing: + * + * +---------+-------------+---------------+---------------------------------+ + * | state | function | event | new state | + * +---------+-------------+---------------+---------------------------------+ + * | | open() | | STOPPED | + * | PAUSED | write() | | PAUSED | + * | STOPPED | write() | | PLAYING | + * | PLAYING | write() | HEADER | PLAYING | + * | (other) | write() | | | + * | (any) | pause() | PAUSING | PAUSED | + * | PAUSED | restart() | RESTARTING | PLAYING (if no thrd => STOPPED) | + * | (any) | reset() | RESETTING | STOPPED | + * | (any) | close() | CLOSING | CLOSED | + * +---------+-------------+---------------+---------------------------------+ + */ + +/* states of the playing device */ +#define WINE_WS_PLAYING 1 +#define WINE_WS_PAUSED 2 +#define WINE_WS_STOPPED 3 +#define WINE_WS_CLOSED 4 +#define WINE_WS_FAILED 5 + +#define PULSE_ALL_FORMATS \ + WAVE_FORMAT_1M08 | /* Mono 11025Hz 8-bit */\ + WAVE_FORMAT_1M16 | /* Mono 11025Hz 16-bit */\ + WAVE_FORMAT_1S08 | /* Stereo 11025Hz 8-bit */\ + WAVE_FORMAT_1S16 | /* Stereo 11025Hz 16-bit */\ + WAVE_FORMAT_2M08 | /* Mono 22050Hz 8-bit */\ + WAVE_FORMAT_2M16 | /* Mono 22050Hz 16-bit */\ + WAVE_FORMAT_2S08 | /* Stereo 22050Hz 8-bit */\ + WAVE_FORMAT_2S16 | /* Stereo 22050Hz 16-bit */\ + WAVE_FORMAT_4M08 | /* Mono 44100Hz 8-bit */\ + WAVE_FORMAT_4M16 | /* Mono 44100Hz 16-bit */\ + WAVE_FORMAT_4S08 | /* Stereo 44100Hz 8-bit */\ + WAVE_FORMAT_4S16 | /* Stereo 44100Hz 16-bit */\ + WAVE_FORMAT_48M08 | /* Mono 48000Hz 8-bit */\ + WAVE_FORMAT_48S08 | /* Stereo 48000Hz 8-bit */\ + WAVE_FORMAT_48M16 | /* Mono 48000Hz 16-bit */\ + WAVE_FORMAT_48S16 | /* Stereo 48000Hz 16-bit */\ + WAVE_FORMAT_96M08 | /* Mono 96000Hz 8-bit */\ + WAVE_FORMAT_96S08 | /* Stereo 96000Hz 8-bit */\ + WAVE_FORMAT_96M16 | /* Mono 96000Hz 16-bit */\ + WAVE_FORMAT_96S16 /* Stereo 96000Hz 16-bit */ + +/* events to be sent to device */ +enum win_wm_message { + WINE_WM_PAUSING = WM_USER + 1, WINE_WM_RESTARTING, WINE_WM_RESETTING, WINE_WM_HEADER, + WINE_WM_BREAKLOOP, WINE_WM_CLOSING, WINE_WM_STARTING, WINE_WM_STOPPING, WINE_WM_XRUN, WINE_WM_FEED +}; + +typedef struct { + enum win_wm_message msg; /* message identifier */ + DWORD param; /* parameter for this message */ + HANDLE hEvent; /* if message is synchronous, handle of event for synchro */ +} PULSE_MSG; + +/* implement an in-process message ring for better performance + * (compared to passing thru the server) + * this ring will be used by the input (resp output) record (resp playback) routine + */ +typedef struct { + PULSE_MSG * messages; + int ring_buffer_size; + int msg_tosave; + int msg_toget; +/* Either pipe or event is used, but that is defined in pulse.c, + * since this is a global header we define both here */ + int msg_pipe[2]; + HANDLE msg_event; + CRITICAL_SECTION msg_crst; +} PULSE_MSG_RING; + +typedef struct WINE_WAVEDEV WINE_WAVEDEV; +typedef struct WINE_WAVEINST WINE_WAVEINST; + +/* Per-playback/record device */ +struct WINE_WAVEDEV { + char interface_name[MAXPNAMELEN * 2]; + char *device_name; + pa_cvolume volume; + + union { + WAVEOUTCAPSW out; + WAVEINCAPSW in; + } caps; + + /* DirectSound stuff */ + DSDRIVERDESC ds_desc; + DSDRIVERCAPS ds_caps; +}; + +/* Per-playback/record instance */ +struct WINE_WAVEINST { + volatile INT state; /* one of the WINE_WS_ manifest constants */ + WAVEOPENDESC waveDesc; + WORD wFlags; + + /* PulseAudio specific data */ + pa_stream *stream; /* The PulseAudio stream */ + const pa_timing_info *timing_info; /* The timing info structure for the stream */ + pa_sample_spec sample_spec; /* Sample spec of this stream / device */ + pa_cvolume volume; /* Software volume of the stream */ + pa_buffer_attr buffer_attr; /* Buffer attribute, may not be used */ + + /* waveIn / waveOut wavaHdr */ + LPWAVEHDR lpQueuePtr; /* Start of queued WAVEHDRs (waiting to be notified) */ + LPWAVEHDR lpPlayPtr; /* Start of not yet fully written buffers */ + DWORD dwPartialOffset; /* Offset of not yet written bytes in lpPlayPtr */ + LPWAVEHDR lpLoopPtr; /* Pointer of first buffer in loop, if any */ + DWORD dwLoops; /* Private copy of loop counter */ + DWORD dwLastReset; /* When the last reset occured, as pa stream time doesn't reset */ + + /* waveIn specific */ + const void *buffer; /* Pointer to the latest data fragment for recording streams */ + DWORD buffer_length; /* How large the latest data fragment is */ + DWORD buffer_read_offset; /* How far into latest data fragment we last read */ + + /* Thread communication and synchronization stuff */ + HANDLE hStartUpEvent; + HANDLE hThread; + DWORD dwThreadID; + PULSE_MSG_RING msgRing; +}; + +/* We establish one context per instance, so make it global to the lib */ +pa_context *PULSE_context; /* Connection Context */ +pa_threaded_mainloop *PULSE_ml; /* PA Runtime information */ + +/* WaveIn / WaveOut devices */ +WINE_WAVEDEV *WOutDev; +WINE_WAVEDEV *WInDev; +DWORD PULSE_WodNumDevs; +DWORD PULSE_WidNumDevs; + +/* pulse.c: PulseAudio Async Callbacks */ +void PULSE_StreamSuccessCallback(pa_stream *s, int success, void *userdata); +void PULSE_StreamStateCallback(pa_stream *s, void *userdata); +void PULSE_StreamUnderflowCallback(pa_stream *s, void *userdata); +void PULSE_StreamSuspendedCallback(pa_stream *s, void *userdata); +void PULSE_StreamMovedCallback(pa_stream *s, void *userdata); +void PULSE_ContextSuccessCallback(pa_context *c, int success, void *userdata); + +/* pulse.c: General Functions */ +void PULSE_WaitForOperation(pa_operation *o); +BOOL PULSE_SetupFormat(LPWAVEFORMATEX wf, pa_sample_spec *ss); +HRESULT PULSE_UsecToMMTime(pa_usec_t time, LPMMTIME lpTime, const pa_sample_spec *ss); + +/* pulse.c: Message Ring */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr); +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr); +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr); +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep); +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait); +int PULSE_RetrieveRingMessage(PULSE_MSG_RING* omr, enum win_wm_message *msg, DWORD *param, HANDLE *hEvent); + +/* pulse.c: Tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg); +#endif Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-10/.cvsignore,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- .cvsignore 10 Jul 2009 04:43:03 -0000 1.75 +++ .cvsignore 19 Jul 2009 10:47:46 -0000 1.76 @@ -1 +1 @@ -wine-1.1.25-fe.tar.bz2 +wine-1.1.26-fe.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-10/sources,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- sources 10 Jul 2009 04:43:03 -0000 1.76 +++ sources 19 Jul 2009 10:47:46 -0000 1.77 @@ -1 +1 @@ -e45a112c996c62d76aea3bf7de653089 wine-1.1.25-fe.tar.bz2 +7b2affded452ced2b1f45a9b7e6f24da wine-1.1.26-fe.tar.bz2 Index: wine.spec =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-10/wine.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- wine.spec 10 Jul 2009 04:43:03 -0000 1.104 +++ wine.spec 19 Jul 2009 10:47:46 -0000 1.105 @@ -1,5 +1,5 @@ Name: wine -Version: 1.1.25 +Version: 1.1.26 Release: 1%{?dist} Summary: A Windows 16/32/64 bit emulator @@ -44,9 +44,9 @@ Source300: wine-mime-msi.desktop # explain how to use wine with pulseaudio # see http://bugs.winehq.org/show_bug.cgi?id=10495 # and http://art.ified.ca/?page_id=40 -Patch400: http://art.ified.ca/downloads/winepulse-0.17-configure.ac.patch -Patch401: http://art.ified.ca/downloads/winepulse-0.28.patch -Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg.patch +Patch400: http://art.ified.ca/downloads/winepulse-0.29-configure.ac.patch +Patch401: http://art.ified.ca/downloads/winepulse-0.29.patch +Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg-0.3.patch Source402: README-FEDORA-PULSEAUDIO @@ -136,6 +136,8 @@ Obsoletes: wine-arts < 0.9.34 # fix dns resolution (#492700) # require both to be sure 64bit is present as well... Requires: nss-mdns nss-mdns%{_isa} +# require Xrender isa on x86_64 (#510947) +Requires: libXrender%{_isa} %description core Wine core package includes the basic wine stuff needed by all other packages. @@ -732,6 +734,7 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/winsock.dll16 %{_libdir}/wine/winspool.drv.so %{_libdir}/wine/wmi.dll.so +%{_libdir}/wine/wmiutils.dll.so %{_libdir}/wine/spoolss.dll.so %{_libdir}/wine/winscard.dll.so %{_libdir}/wine/wintab32.dll.so @@ -750,7 +753,6 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineps16.drv16 %{_libdir}/wine/d3d8.dll.so %{_libdir}/wine/d3d9.dll.so -%{_libdir}/wine/d3dx8.dll.so %{_libdir}/wine/opengl32.dll.so %{_libdir}/wine/wined3d.dll.so %{_libdir}/wine/dnsapi.dll.so @@ -917,6 +919,12 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineoss.drv.so %changelog +* Sat Jul 18 2009 Andreas Bierfert +- 1.1.26-1 +- version upgrade +- WinePulse 0.29 +- require Xrender isa for x86_64 (#510947) + * Thu Jul 09 2009 Andreas Bierfert - 1.1.25-1 - version upgrade (#509648) --- adding-pulseaudio-to-winecfg.patch DELETED --- --- winepulse-0.17-configure.ac.patch DELETED --- --- winepulse-0.28.patch DELETED --- From awjb at fedoraproject.org Sun Jul 19 10:48:18 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sun, 19 Jul 2009 10:48:18 +0000 (UTC) Subject: rpms/wine/F-11 adding-pulseaudio-to-winecfg-0.3.patch, NONE, 1.1 winepulse-0.29-configure.ac.patch, NONE, 1.1 winepulse-0.29.patch, NONE, 1.1 .cvsignore, 1.76, 1.77 sources, 1.77, 1.78 wine.spec, 1.108, 1.109 adding-pulseaudio-to-winecfg.patch, 1.2, NONE winepulse-0.17-configure.ac.patch, 1.1, NONE winepulse-0.28.patch, 1.1, NONE Message-ID: <20090719104818.D7B4011C00D7@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/wine/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2207/F-11 Modified Files: .cvsignore sources wine.spec Added Files: adding-pulseaudio-to-winecfg-0.3.patch winepulse-0.29-configure.ac.patch winepulse-0.29.patch Removed Files: adding-pulseaudio-to-winecfg.patch winepulse-0.17-configure.ac.patch winepulse-0.28.patch Log Message: - 1.1.26-1 - version upgrade - WinePulse 0.29 - require Xrender isa for x86_64 (#510947) adding-pulseaudio-to-winecfg-0.3.patch: Bg.rc | 1 + Cs.rc | 1 + Da.rc | 1 + De.rc | 1 + En.rc | 1 + Es.rc | 1 + Fi.rc | 1 + Fr.rc | 1 + Hu.rc | 1 + Ja.rc | 1 + Ko.rc | 1 + Nl.rc | 1 + No.rc | 1 + Pl.rc | 1 + Pt.rc | 1 + Ro.rc | 1 + Ru.rc | 1 + Si.rc | 1 + Sv.rc | 1 + Tr.rc | 1 + Zh.rc | 1 + audio.c | 1 + libraries.c | 1 + resource.h | 2 +- 24 files changed, 24 insertions(+), 1 deletion(-) --- NEW FILE adding-pulseaudio-to-winecfg-0.3.patch --- diff --git a/programs/winecfg/Bg.rc b/programs/winecfg/Bg.rc index 00cfbe8..ce2c8c7 100644 --- a/programs/winecfg/Bg.rc +++ b/programs/winecfg/Bg.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Cs.rc b/programs/winecfg/Cs.rc index b34dd06..348153c 100644 --- a/programs/winecfg/Cs.rc +++ b/programs/winecfg/Cs.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardn?" IDS_ACCEL_BASIC "Z?kladn?" IDS_ACCEL_EMULATION "Emulace" + IDS_DRIVER_PULSE "Ovlada? PulseAudio" IDS_DRIVER_ALSA "Ovlada? ALSA" IDS_DRIVER_ESOUND "Ovlada? EsounD" IDS_DRIVER_OSS "Ovlada? OSS" diff --git a/programs/winecfg/Da.rc b/programs/winecfg/Da.rc index 62b781b..a604ea3 100644 --- a/programs/winecfg/Da.rc +++ b/programs/winecfg/Da.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggende" IDS_ACCEL_EMULATION "Emul?ring" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/De.rc b/programs/winecfg/De.rc index 53c412c..8f70399 100644 --- a/programs/winecfg/De.rc +++ b/programs/winecfg/De.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Einfach" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio-Treiber" IDS_DRIVER_ALSA "ALSA-Treiber" IDS_DRIVER_ESOUND "EsounD-Treiber" IDS_DRIVER_OSS "OSS-Treiber" diff --git a/programs/winecfg/En.rc b/programs/winecfg/En.rc index a69b4d9..2d3dc5c 100644 --- a/programs/winecfg/En.rc +++ b/programs/winecfg/En.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Es.rc b/programs/winecfg/Es.rc index 2ddce6c..ececfe2 100644 --- a/programs/winecfg/Es.rc +++ b/programs/winecfg/Es.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Est?ndar" IDS_ACCEL_BASIC "B?sica" IDS_ACCEL_EMULATION "Emulaci?n" + IDS_DRIVER_PULSE "Manejador PulseAudio" IDS_DRIVER_ALSA "Manejador ALSA" IDS_DRIVER_ESOUND "Manejador EsounD" IDS_DRIVER_OSS "Manejador OSS" diff --git a/programs/winecfg/Fi.rc b/programs/winecfg/Fi.rc index f6fb85c..ed24bf6 100644 --- a/programs/winecfg/Fi.rc +++ b/programs/winecfg/Fi.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Fr.rc b/programs/winecfg/Fr.rc index b63adb1..414f440 100644 --- a/programs/winecfg/Fr.rc +++ b/programs/winecfg/Fr.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basique" IDS_ACCEL_EMULATION "??mulation" + IDS_DRIVER_PULSE "Pilote PulseAudio" IDS_DRIVER_ALSA "Pilote ALSA" IDS_DRIVER_ESOUND "Pilote EsounD" IDS_DRIVER_OSS "Pilote OSS" diff --git a/programs/winecfg/Hu.rc b/programs/winecfg/Hu.rc index 0445c77..7756d2b 100644 --- a/programs/winecfg/Hu.rc +++ b/programs/winecfg/Hu.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ja.rc b/programs/winecfg/Ja.rc index a25a953..d690f7f 100644 --- a/programs/winecfg/Ja.rc +++ b/programs/winecfg/Ja.rc @@ -276,6 +276,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????????????????" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ko.rc b/programs/winecfg/Ko.rc index c01b841..5c500d5 100644 --- a/programs/winecfg/Ko.rc +++ b/programs/winecfg/Ko.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "????" IDS_ACCEL_BASIC "????" IDS_ACCEL_EMULATION "??????????" + IDS_DRIVER_PULSE "PulseAudio ????????" IDS_DRIVER_ALSA "ALSA ????????" IDS_DRIVER_ESOUND "EsounD ????????" IDS_DRIVER_OSS "OSS ????????" diff --git a/programs/winecfg/Nl.rc b/programs/winecfg/Nl.rc index 99062cf..2683a82 100644 --- a/programs/winecfg/Nl.rc +++ b/programs/winecfg/Nl.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standaard" IDS_ACCEL_BASIC "Eenvoudig" IDS_ACCEL_EMULATION "Emulatie" + IDS_DRIVER_PULSE "PulseAudio Stuurprogramma" IDS_DRIVER_ALSA "ALSA Stuurprogramma" IDS_DRIVER_ESOUND "EsounD Stuurprogramma" IDS_DRIVER_OSS "OSS Stuurprogramma" diff --git a/programs/winecfg/No.rc b/programs/winecfg/No.rc index 357539e..b2a5eae 100644 --- a/programs/winecfg/No.rc +++ b/programs/winecfg/No.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grunnleggende" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/Pl.rc b/programs/winecfg/Pl.rc index 8e1d9a2..bd968de 100644 --- a/programs/winecfg/Pl.rc +++ b/programs/winecfg/Pl.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardowe" IDS_ACCEL_BASIC "Podstawowe" IDS_ACCEL_EMULATION "Emulacja" + IDS_DRIVER_PULSE "Sterownik PulseAudio" IDS_DRIVER_ALSA "Sterownik ALSA" IDS_DRIVER_ESOUND "Sterownik EsounD" IDS_DRIVER_OSS "Sterownik OSS" diff --git a/programs/winecfg/Pt.rc b/programs/winecfg/Pt.rc index e3b02a1..be5acb0 100644 --- a/programs/winecfg/Pt.rc +++ b/programs/winecfg/Pt.rc @@ -471,6 +471,7 @@ BEGIN IDS_ACCEL_STANDARD "Padr??o" IDS_ACCEL_BASIC "B??sico" IDS_ACCEL_EMULATION "Emula????o" + IDS_DRIVER_PULSE "Controlador PulseAudio" IDS_DRIVER_ALSA "Controlador ALSA" IDS_DRIVER_ESOUND "Controlador EsounD" IDS_DRIVER_OSS "Controlador OSS" diff --git a/programs/winecfg/Ro.rc b/programs/winecfg/Ro.rc index c836d60..50317bf 100644 --- a/programs/winecfg/Ro.rc +++ b/programs/winecfg/Ro.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "De baz??" IDS_ACCEL_EMULATION "Emulare" + IDS_DRIVER_PULSE "Driver PulseAudio" IDS_DRIVER_ALSA "Driver ALSA" IDS_DRIVER_ESOUND "Driver Esound" IDS_DRIVER_OSS "Driver OSS" diff --git a/programs/winecfg/Ru.rc b/programs/winecfg/Ru.rc index 8d61413..7962c98 100644 --- a/programs/winecfg/Ru.rc +++ b/programs/winecfg/Ru.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "???????????" IDS_ACCEL_BASIC "???????????" IDS_ACCEL_EMULATION "????????" + IDS_DRIVER_PULSE "PulseAudio ???????" IDS_DRIVER_ALSA "ALSA ???????" IDS_DRIVER_ESOUND "EsounD ???????" IDS_DRIVER_OSS "OSS ???????" diff --git a/programs/winecfg/Si.rc b/programs/winecfg/Si.rc index 87cd239..73544bb 100644 --- a/programs/winecfg/Si.rc +++ b/programs/winecfg/Si.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardno" IDS_ACCEL_BASIC "Osnovno" IDS_ACCEL_EMULATION "Emulacija" + IDS_DRIVER_PULSE "PulseAudio gonilnik" IDS_DRIVER_ALSA "ALSA gonilnik" IDS_DRIVER_ESOUND "EsounD gonilnik" IDS_DRIVER_OSS "OSS gonilnik" diff --git a/programs/winecfg/Sv.rc b/programs/winecfg/Sv.rc index 113603c..dde6ed5 100644 --- a/programs/winecfg/Sv.rc +++ b/programs/winecfg/Sv.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggande" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-drivrutin" IDS_DRIVER_ALSA "ALSA-drivrutin" IDS_DRIVER_ESOUND "EsounD-drivrutin" IDS_DRIVER_OSS "OSS-drivrutin" diff --git a/programs/winecfg/Tr.rc b/programs/winecfg/Tr.rc index 883c0f3..4f6ecb3 100644 --- a/programs/winecfg/Tr.rc +++ b/programs/winecfg/Tr.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standart" IDS_ACCEL_BASIC "Temel" IDS_ACCEL_EMULATION "Taklit" + IDS_DRIVER_PULSE "PulseAudio S?r?c?s?" IDS_DRIVER_ALSA "ALSA S?r?c?s?" IDS_DRIVER_ESOUND "EsounD S?r?c?s?" IDS_DRIVER_OSS "OSS S?r?c?s?" diff --git a/programs/winecfg/Zh.rc b/programs/winecfg/Zh.rc index b483cfe..8617049 100644 --- a/programs/winecfg/Zh.rc +++ b/programs/winecfg/Zh.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????" + IDS_DRIVER_PULSE "PulseAudio ??????" IDS_DRIVER_ALSA "ALSA ??????" IDS_DRIVER_ESOUND "EsounD ??????" IDS_DRIVER_OSS "OSS ??????" diff --git a/programs/winecfg/audio.c b/programs/winecfg/audio.c index 79e62f0..b9a310c 100644 --- a/programs/winecfg/audio.c +++ b/programs/winecfg/audio.c @@ -88,6 +88,7 @@ typedef struct } AUDIO_DRIVER; static const AUDIO_DRIVER sAudioDrivers[] = { + {IDS_DRIVER_PULSE, "pulse"}, {IDS_DRIVER_ALSA, "alsa"}, {IDS_DRIVER_OSS, "oss"}, {IDS_DRIVER_COREAUDIO, "coreaudio"}, diff --git a/programs/winecfg/libraries.c b/programs/winecfg/libraries.c index 37cc12b..7c13fad 100644 --- a/programs/winecfg/libraries.c +++ b/programs/winecfg/libraries.c @@ -81,6 +81,7 @@ static const char * const builtin_only[] = "wineoss.drv", "wineps", "wineps.drv", + "winepulse.drv", "winex11.drv", "winmm", "wintab32", diff --git a/programs/winecfg/resource.h b/programs/winecfg/resource.h index 88c9e64..05a13de 100644 --- a/programs/winecfg/resource.h +++ b/programs/winecfg/resource.h @@ -186,7 +186,7 @@ #define IDS_ACCEL_BASIC 8302 #define IDS_ACCEL_EMULATION 8303 #define IDS_DRIVER_ALSA 8304 - +#define IDS_DRIVER_PULSE 8305 #define IDS_DRIVER_ESOUND 8306 #define IDS_DRIVER_OSS 8307 #define IDS_DRIVER_JACK 8308 winepulse-0.29-configure.ac.patch: configure.ac | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) --- NEW FILE winepulse-0.29-configure.ac.patch --- diff --git a/configure.ac b/configure.ac index 3b805fe..4c2b822 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,7 @@ AC_ARG_WITH(png, AS_HELP_STRING([--without-png],[do not use PNG]), [if test "x$withval" = "xno"; then ac_cv_header_png_h=no; fi]) AC_ARG_WITH(pthread, AS_HELP_STRING([--without-pthread],[do not use the pthread library]), [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi]) +AC_ARG_WITH(pulse, AC_HELP_STRING([--without-pulse],[do not use PulseAudio sound support])) AC_ARG_WITH(sane, AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)])) AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]), [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi]) @@ -1253,6 +1254,24 @@ then CFLAGS="$save_CFLAGS" fi +dnl **** Check for PulseAudio **** +if test "x$with_pulse" != "xno"; then + if test "$PKG_CONFIG" != "false"; then + AC_MSG_CHECKING([for pulseaudio >= 0.9.15]) + if "$PKG_CONFIG" --atleast-version=0.9.15 libpulse; then + have_pulseaudio="yes" + else + have_pulseaudio="no" + fi + AC_MSG_RESULT([$have_pulseaudio]) + if test x"$have_pulseaudio" = xyes; then + ac_pulse_libs=`$PKG_CONFIG --libs libpulse` + AC_DEFINE([HAVE_PULSEAUDIO], 1, [define this if you have pulseaudio]) + AC_SUBST(PULSELIBS, "$ac_pulse_libs") + fi + fi +fi + dnl **** Check for ALSA 1.x **** AC_SUBST(ALSALIBS,"") if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes" @@ -1379,7 +1398,7 @@ dnl **** Check for libodbc **** WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])]) dnl **** Check for any sound system **** -if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \ +if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$PULSELIBS$ac_cv_lib_soname_jack" = "x" -a \ "$ac_cv_header_sys_soundcard_h" != "yes" -a \ "$ac_cv_header_machine_soundcard_h" != "yes" -a \ "$ac_cv_header_soundcard_h" != "yes" -a \ @@ -2415,6 +2434,7 @@ WINE_CONFIG_MAKEFILE([dlls/winemp3.acm/Makefile],[dlls/Makedll.rules],[dlls],[AL WINE_CONFIG_MAKEFILE([dlls/winenas.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineoss.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineps.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) +WINE_CONFIG_MAKEFILE([dlls/winepulse.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winequartz.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winex11.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wing32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) winepulse-0.29.patch: Makefile.in | 15 pulse.c | 788 ++++++++++++++++++++++++++++++++++++++ wavein.c | 595 +++++++++++++++++++++++++++++ waveout.c | 1075 +++++++++++++++++++++++++++++++++++++++++++++++++++++ winepulse.drv.spec | 3 winepulse.h | 196 +++++++++ 6 files changed, 2672 insertions(+) --- NEW FILE winepulse-0.29.patch --- diff --git a/dlls/winepulse.drv/Makefile.in b/dlls/winepulse.drv/Makefile.in new file mode 100644 index 0000000..c99c1da --- /dev/null +++ b/dlls/winepulse.drv/Makefile.in @@ -0,0 +1,15 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = winepulse.drv +IMPORTS = winmm user32 kernel32 +EXTRALIBS = @PULSELIBS@ + +C_SRCS = waveout.c \ + wavein.c \ + pulse.c + + at MAKE_DLL_RULES@ + + at DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/winepulse.drv/pulse.c b/dlls/winepulse.drv/pulse.c new file mode 100644 index 0000000..3dcb086 --- /dev/null +++ b/dlls/winepulse.drv/pulse.c @@ -0,0 +1,788 @@ +/* + * Wine Driver for PulseAudio + * http://pulseaudio.org/ + * + * Copyright 2009 Arthur Taylor + * + * Contains code from other wine sound drivers. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "config.h" + +#include +#include + +#include "windef.h" +#include "winbase.h" +#include "wingdi.h" +#include "winuser.h" +#include "winreg.h" +#include "mmddk.h" +#include "ks.h" +#include "ksguid.h" +#include "ksmedia.h" + +#ifdef HAVE_UNISTD_H +# include +#endif +#include + +#ifdef HAVE_PULSEAUDIO + +#include "wine/unicode.h" +#include "wine/debug.h" +#include "wine/library.h" + +#include +#include +WINE_DEFAULT_DEBUG_CHANNEL(wave); + +/* These strings used only for tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg) { + static char unknown[32]; +#define MSG_TO_STR(x) case x: return #x + switch(msg) { + MSG_TO_STR(WINE_WM_PAUSING); + MSG_TO_STR(WINE_WM_RESTARTING); + MSG_TO_STR(WINE_WM_RESETTING); + MSG_TO_STR(WINE_WM_HEADER); + MSG_TO_STR(WINE_WM_BREAKLOOP); + MSG_TO_STR(WINE_WM_CLOSING); + MSG_TO_STR(WINE_WM_STARTING); + MSG_TO_STR(WINE_WM_STOPPING); + MSG_TO_STR(WINE_WM_XRUN); + MSG_TO_STR(WINE_WM_FEED); + } +#undef MSG_TO_STR + sprintf(unknown, "UNKNOWN(0x%08x)", msg); + return unknown; +} + +/*======================================================================* + * Ring Buffer Functions - copied from winealsa.drv * + *======================================================================*/ + +/* unless someone makes a wineserver kernel module, Unix pipes are faster than win32 events */ +#define USE_PIPE_SYNC + +#ifdef USE_PIPE_SYNC +#define INIT_OMR(omr) do { if (pipe(omr->msg_pipe) < 0) { omr->msg_pipe[0] = omr->msg_pipe[1] = -1; } } while (0) +#define CLOSE_OMR(omr) do { close(omr->msg_pipe[0]); close(omr->msg_pipe[1]); } while (0) +#define SIGNAL_OMR(omr) do { int x = 0; write((omr)->msg_pipe[1], &x, sizeof(x)); } while (0) +#define CLEAR_OMR(omr) do { int x = 0; read((omr)->msg_pipe[0], &x, sizeof(x)); } while (0) +#define RESET_OMR(omr) do { } while (0) +#define WAIT_OMR(omr, sleep) \ + do { struct pollfd pfd; pfd.fd = (omr)->msg_pipe[0]; \ + pfd.events = POLLIN; poll(&pfd, 1, sleep); } while (0) +#else +#define INIT_OMR(omr) do { omr->msg_event = CreateEventW(NULL, FALSE, FALSE, NULL); } while (0) +#define CLOSE_OMR(omr) do { CloseHandle(omr->msg_event); } while (0) +#define SIGNAL_OMR(omr) do { SetEvent((omr)->msg_event); } while (0) +#define CLEAR_OMR(omr) do { } while (0) +#define RESET_OMR(omr) do { ResetEvent((omr)->msg_event); } while (0) +#define WAIT_OMR(omr, sleep) \ + do { WaitForSingleObject((omr)->msg_event, sleep); } while (0) +#endif + +#define PULSE_RING_BUFFER_INCREMENT 64 + +/****************************************************************** + * PULSE_InitRingMessage + * + * Initialize the ring of messages for passing between driver's caller + * and playback/record thread + */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr) +{ + omr->msg_toget = 0; + omr->msg_tosave = 0; + INIT_OMR(omr); + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(PULSE_MSG)); + + InitializeCriticalSection(&omr->msg_crst); + omr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PULSE_MSG_RING.msg_crst"); + return 0; +} + +/****************************************************************** + * PULSE_DestroyRingMessage + * + */ +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr) +{ + CLOSE_OMR(omr); + HeapFree(GetProcessHeap(),0,omr->messages); + omr->messages = NULL; + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->msg_crst.DebugInfo->Spare[0] = 0; + DeleteCriticalSection(&omr->msg_crst); + return 0; +} +/****************************************************************** + * PULSE_ResetRingMessage + * + */ +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr) +{ + RESET_OMR(omr); +} + +/****************************************************************** + * PULSE_WaitRingMessage + * + */ +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep) +{ + WAIT_OMR(omr, sleep); +} + +/****************************************************************** + * PULSE_AddRingMessage + * + * Inserts a new message into the ring (should be called from DriverProc derived routines) + */ +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait) +{ + HANDLE hEvent = INVALID_HANDLE_VALUE; + + EnterCriticalSection(&omr->msg_crst); + if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size))) + { + int old_ring_buffer_size = omr->ring_buffer_size; + omr->ring_buffer_size += PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapReAlloc(GetProcessHeap(),0,omr->messages, omr->ring_buffer_size * sizeof(PULSE_MSG)); + /* Now we need to rearrange the ring buffer so that the new + buffers just allocated are in between omr->msg_tosave and + omr->msg_toget. + */ [...2309 lines suppressed...] index 0000000..4a834cd --- /dev/null +++ b/dlls/winepulse.drv/winepulse.h @@ -0,0 +1,196 @@ +/* Definitions for PulseAudio Wine Driver + * + * Copyright 2009 Arthur Taylor + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef __WINE_CONFIG_H +# error You must include config.h to use this header +#endif + +#if defined(HAVE_PULSEAUDIO) && !defined(__WINEPULSE_H) +#define __WINEPULSE_H + +#include "mmreg.h" +#include "dsound.h" +#include "dsdriver.h" + +#include "ks.h" +#include "ksmedia.h" +#include "ksguid.h" + +#include + +/* state diagram for waveOut writing: + * + * +---------+-------------+---------------+---------------------------------+ + * | state | function | event | new state | + * +---------+-------------+---------------+---------------------------------+ + * | | open() | | STOPPED | + * | PAUSED | write() | | PAUSED | + * | STOPPED | write() | | PLAYING | + * | PLAYING | write() | HEADER | PLAYING | + * | (other) | write() | | | + * | (any) | pause() | PAUSING | PAUSED | + * | PAUSED | restart() | RESTARTING | PLAYING (if no thrd => STOPPED) | + * | (any) | reset() | RESETTING | STOPPED | + * | (any) | close() | CLOSING | CLOSED | + * +---------+-------------+---------------+---------------------------------+ + */ + +/* states of the playing device */ +#define WINE_WS_PLAYING 1 +#define WINE_WS_PAUSED 2 +#define WINE_WS_STOPPED 3 +#define WINE_WS_CLOSED 4 +#define WINE_WS_FAILED 5 + +#define PULSE_ALL_FORMATS \ + WAVE_FORMAT_1M08 | /* Mono 11025Hz 8-bit */\ + WAVE_FORMAT_1M16 | /* Mono 11025Hz 16-bit */\ + WAVE_FORMAT_1S08 | /* Stereo 11025Hz 8-bit */\ + WAVE_FORMAT_1S16 | /* Stereo 11025Hz 16-bit */\ + WAVE_FORMAT_2M08 | /* Mono 22050Hz 8-bit */\ + WAVE_FORMAT_2M16 | /* Mono 22050Hz 16-bit */\ + WAVE_FORMAT_2S08 | /* Stereo 22050Hz 8-bit */\ + WAVE_FORMAT_2S16 | /* Stereo 22050Hz 16-bit */\ + WAVE_FORMAT_4M08 | /* Mono 44100Hz 8-bit */\ + WAVE_FORMAT_4M16 | /* Mono 44100Hz 16-bit */\ + WAVE_FORMAT_4S08 | /* Stereo 44100Hz 8-bit */\ + WAVE_FORMAT_4S16 | /* Stereo 44100Hz 16-bit */\ + WAVE_FORMAT_48M08 | /* Mono 48000Hz 8-bit */\ + WAVE_FORMAT_48S08 | /* Stereo 48000Hz 8-bit */\ + WAVE_FORMAT_48M16 | /* Mono 48000Hz 16-bit */\ + WAVE_FORMAT_48S16 | /* Stereo 48000Hz 16-bit */\ + WAVE_FORMAT_96M08 | /* Mono 96000Hz 8-bit */\ + WAVE_FORMAT_96S08 | /* Stereo 96000Hz 8-bit */\ + WAVE_FORMAT_96M16 | /* Mono 96000Hz 16-bit */\ + WAVE_FORMAT_96S16 /* Stereo 96000Hz 16-bit */ + +/* events to be sent to device */ +enum win_wm_message { + WINE_WM_PAUSING = WM_USER + 1, WINE_WM_RESTARTING, WINE_WM_RESETTING, WINE_WM_HEADER, + WINE_WM_BREAKLOOP, WINE_WM_CLOSING, WINE_WM_STARTING, WINE_WM_STOPPING, WINE_WM_XRUN, WINE_WM_FEED +}; + +typedef struct { + enum win_wm_message msg; /* message identifier */ + DWORD param; /* parameter for this message */ + HANDLE hEvent; /* if message is synchronous, handle of event for synchro */ +} PULSE_MSG; + +/* implement an in-process message ring for better performance + * (compared to passing thru the server) + * this ring will be used by the input (resp output) record (resp playback) routine + */ +typedef struct { + PULSE_MSG * messages; + int ring_buffer_size; + int msg_tosave; + int msg_toget; +/* Either pipe or event is used, but that is defined in pulse.c, + * since this is a global header we define both here */ + int msg_pipe[2]; + HANDLE msg_event; + CRITICAL_SECTION msg_crst; +} PULSE_MSG_RING; + +typedef struct WINE_WAVEDEV WINE_WAVEDEV; +typedef struct WINE_WAVEINST WINE_WAVEINST; + +/* Per-playback/record device */ +struct WINE_WAVEDEV { + char interface_name[MAXPNAMELEN * 2]; + char *device_name; + pa_cvolume volume; + + union { + WAVEOUTCAPSW out; + WAVEINCAPSW in; + } caps; + + /* DirectSound stuff */ + DSDRIVERDESC ds_desc; + DSDRIVERCAPS ds_caps; +}; + +/* Per-playback/record instance */ +struct WINE_WAVEINST { + volatile INT state; /* one of the WINE_WS_ manifest constants */ + WAVEOPENDESC waveDesc; + WORD wFlags; + + /* PulseAudio specific data */ + pa_stream *stream; /* The PulseAudio stream */ + const pa_timing_info *timing_info; /* The timing info structure for the stream */ + pa_sample_spec sample_spec; /* Sample spec of this stream / device */ + pa_cvolume volume; /* Software volume of the stream */ + pa_buffer_attr buffer_attr; /* Buffer attribute, may not be used */ + + /* waveIn / waveOut wavaHdr */ + LPWAVEHDR lpQueuePtr; /* Start of queued WAVEHDRs (waiting to be notified) */ + LPWAVEHDR lpPlayPtr; /* Start of not yet fully written buffers */ + DWORD dwPartialOffset; /* Offset of not yet written bytes in lpPlayPtr */ + LPWAVEHDR lpLoopPtr; /* Pointer of first buffer in loop, if any */ + DWORD dwLoops; /* Private copy of loop counter */ + DWORD dwLastReset; /* When the last reset occured, as pa stream time doesn't reset */ + + /* waveIn specific */ + const void *buffer; /* Pointer to the latest data fragment for recording streams */ + DWORD buffer_length; /* How large the latest data fragment is */ + DWORD buffer_read_offset; /* How far into latest data fragment we last read */ + + /* Thread communication and synchronization stuff */ + HANDLE hStartUpEvent; + HANDLE hThread; + DWORD dwThreadID; + PULSE_MSG_RING msgRing; +}; + +/* We establish one context per instance, so make it global to the lib */ +pa_context *PULSE_context; /* Connection Context */ +pa_threaded_mainloop *PULSE_ml; /* PA Runtime information */ + +/* WaveIn / WaveOut devices */ +WINE_WAVEDEV *WOutDev; +WINE_WAVEDEV *WInDev; +DWORD PULSE_WodNumDevs; +DWORD PULSE_WidNumDevs; + +/* pulse.c: PulseAudio Async Callbacks */ +void PULSE_StreamSuccessCallback(pa_stream *s, int success, void *userdata); +void PULSE_StreamStateCallback(pa_stream *s, void *userdata); +void PULSE_StreamUnderflowCallback(pa_stream *s, void *userdata); +void PULSE_StreamSuspendedCallback(pa_stream *s, void *userdata); +void PULSE_StreamMovedCallback(pa_stream *s, void *userdata); +void PULSE_ContextSuccessCallback(pa_context *c, int success, void *userdata); + +/* pulse.c: General Functions */ +void PULSE_WaitForOperation(pa_operation *o); +BOOL PULSE_SetupFormat(LPWAVEFORMATEX wf, pa_sample_spec *ss); +HRESULT PULSE_UsecToMMTime(pa_usec_t time, LPMMTIME lpTime, const pa_sample_spec *ss); + +/* pulse.c: Message Ring */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr); +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr); +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr); +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep); +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait); +int PULSE_RetrieveRingMessage(PULSE_MSG_RING* omr, enum win_wm_message *msg, DWORD *param, HANDLE *hEvent); + +/* pulse.c: Tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg); +#endif Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-11/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 10 Jul 2009 04:43:03 -0000 1.76 +++ .cvsignore 19 Jul 2009 10:47:47 -0000 1.77 @@ -1 +1 @@ -wine-1.1.25-fe.tar.bz2 +wine-1.1.26-fe.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-11/sources,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- sources 10 Jul 2009 04:43:04 -0000 1.77 +++ sources 19 Jul 2009 10:47:48 -0000 1.78 @@ -1 +1 @@ -e45a112c996c62d76aea3bf7de653089 wine-1.1.25-fe.tar.bz2 +7b2affded452ced2b1f45a9b7e6f24da wine-1.1.26-fe.tar.bz2 Index: wine.spec =================================================================== RCS file: /cvs/pkgs/rpms/wine/F-11/wine.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- wine.spec 10 Jul 2009 04:43:04 -0000 1.108 +++ wine.spec 19 Jul 2009 10:47:48 -0000 1.109 @@ -1,5 +1,5 @@ Name: wine -Version: 1.1.25 +Version: 1.1.26 Release: 1%{?dist} Summary: A Windows 16/32/64 bit emulator @@ -44,9 +44,9 @@ Source300: wine-mime-msi.desktop # explain how to use wine with pulseaudio # see http://bugs.winehq.org/show_bug.cgi?id=10495 # and http://art.ified.ca/?page_id=40 -Patch400: http://art.ified.ca/downloads/winepulse-0.17-configure.ac.patch -Patch401: http://art.ified.ca/downloads/winepulse-0.28.patch -Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg.patch +Patch400: http://art.ified.ca/downloads/winepulse-0.29-configure.ac.patch +Patch401: http://art.ified.ca/downloads/winepulse-0.29.patch +Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg-0.3.patch Source402: README-FEDORA-PULSEAUDIO @@ -136,6 +136,8 @@ Obsoletes: wine-arts < 0.9.34 # fix dns resolution (#492700) # require both to be sure 64bit is present as well... Requires: nss-mdns nss-mdns%{_isa} +# require Xrender isa on x86_64 (#510947) +Requires: libXrender%{_isa} %description core Wine core package includes the basic wine stuff needed by all other packages. @@ -732,6 +734,7 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/winsock.dll16 %{_libdir}/wine/winspool.drv.so %{_libdir}/wine/wmi.dll.so +%{_libdir}/wine/wmiutils.dll.so %{_libdir}/wine/spoolss.dll.so %{_libdir}/wine/winscard.dll.so %{_libdir}/wine/wintab32.dll.so @@ -750,7 +753,6 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineps16.drv16 %{_libdir}/wine/d3d8.dll.so %{_libdir}/wine/d3d9.dll.so -%{_libdir}/wine/d3dx8.dll.so %{_libdir}/wine/opengl32.dll.so %{_libdir}/wine/wined3d.dll.so %{_libdir}/wine/dnsapi.dll.so @@ -917,6 +919,12 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineoss.drv.so %changelog +* Sat Jul 18 2009 Andreas Bierfert +- 1.1.26-1 +- version upgrade +- WinePulse 0.29 +- require Xrender isa for x86_64 (#510947) + * Thu Jul 09 2009 Andreas Bierfert - 1.1.25-1 - version upgrade (#509648) --- adding-pulseaudio-to-winecfg.patch DELETED --- --- winepulse-0.17-configure.ac.patch DELETED --- --- winepulse-0.28.patch DELETED --- From awjb at fedoraproject.org Sun Jul 19 10:48:19 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Sun, 19 Jul 2009 10:48:19 +0000 (UTC) Subject: rpms/wine/devel adding-pulseaudio-to-winecfg-0.3.patch, NONE, 1.1 winepulse-0.29-configure.ac.patch, NONE, 1.1 winepulse-0.29.patch, NONE, 1.1 .cvsignore, 1.76, 1.77 sources, 1.77, 1.78 wine.spec, 1.109, 1.110 adding-pulseaudio-to-winecfg.patch, 1.2, NONE winepulse-0.17-configure.ac.patch, 1.1, NONE winepulse-0.28.patch, 1.1, NONE Message-ID: <20090719104819.B069511C00D7@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/wine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2207/devel Modified Files: .cvsignore sources wine.spec Added Files: adding-pulseaudio-to-winecfg-0.3.patch winepulse-0.29-configure.ac.patch winepulse-0.29.patch Removed Files: adding-pulseaudio-to-winecfg.patch winepulse-0.17-configure.ac.patch winepulse-0.28.patch Log Message: - 1.1.26-1 - version upgrade - WinePulse 0.29 - require Xrender isa for x86_64 (#510947) adding-pulseaudio-to-winecfg-0.3.patch: Bg.rc | 1 + Cs.rc | 1 + Da.rc | 1 + De.rc | 1 + En.rc | 1 + Es.rc | 1 + Fi.rc | 1 + Fr.rc | 1 + Hu.rc | 1 + Ja.rc | 1 + Ko.rc | 1 + Nl.rc | 1 + No.rc | 1 + Pl.rc | 1 + Pt.rc | 1 + Ro.rc | 1 + Ru.rc | 1 + Si.rc | 1 + Sv.rc | 1 + Tr.rc | 1 + Zh.rc | 1 + audio.c | 1 + libraries.c | 1 + resource.h | 2 +- 24 files changed, 24 insertions(+), 1 deletion(-) --- NEW FILE adding-pulseaudio-to-winecfg-0.3.patch --- diff --git a/programs/winecfg/Bg.rc b/programs/winecfg/Bg.rc index 00cfbe8..ce2c8c7 100644 --- a/programs/winecfg/Bg.rc +++ b/programs/winecfg/Bg.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Cs.rc b/programs/winecfg/Cs.rc index b34dd06..348153c 100644 --- a/programs/winecfg/Cs.rc +++ b/programs/winecfg/Cs.rc @@ -277,6 +277,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardn?" IDS_ACCEL_BASIC "Z?kladn?" IDS_ACCEL_EMULATION "Emulace" + IDS_DRIVER_PULSE "Ovlada? PulseAudio" IDS_DRIVER_ALSA "Ovlada? ALSA" IDS_DRIVER_ESOUND "Ovlada? EsounD" IDS_DRIVER_OSS "Ovlada? OSS" diff --git a/programs/winecfg/Da.rc b/programs/winecfg/Da.rc index 62b781b..a604ea3 100644 --- a/programs/winecfg/Da.rc +++ b/programs/winecfg/Da.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggende" IDS_ACCEL_EMULATION "Emul?ring" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/De.rc b/programs/winecfg/De.rc index 53c412c..8f70399 100644 --- a/programs/winecfg/De.rc +++ b/programs/winecfg/De.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Einfach" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio-Treiber" IDS_DRIVER_ALSA "ALSA-Treiber" IDS_DRIVER_ESOUND "EsounD-Treiber" IDS_DRIVER_OSS "OSS-Treiber" diff --git a/programs/winecfg/En.rc b/programs/winecfg/En.rc index a69b4d9..2d3dc5c 100644 --- a/programs/winecfg/En.rc +++ b/programs/winecfg/En.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Es.rc b/programs/winecfg/Es.rc index 2ddce6c..ececfe2 100644 --- a/programs/winecfg/Es.rc +++ b/programs/winecfg/Es.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Est?ndar" IDS_ACCEL_BASIC "B?sica" IDS_ACCEL_EMULATION "Emulaci?n" + IDS_DRIVER_PULSE "Manejador PulseAudio" IDS_DRIVER_ALSA "Manejador ALSA" IDS_DRIVER_ESOUND "Manejador EsounD" IDS_DRIVER_OSS "Manejador OSS" diff --git a/programs/winecfg/Fi.rc b/programs/winecfg/Fi.rc index f6fb85c..ed24bf6 100644 --- a/programs/winecfg/Fi.rc +++ b/programs/winecfg/Fi.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Fr.rc b/programs/winecfg/Fr.rc index b63adb1..414f440 100644 --- a/programs/winecfg/Fr.rc +++ b/programs/winecfg/Fr.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basique" IDS_ACCEL_EMULATION "??mulation" + IDS_DRIVER_PULSE "Pilote PulseAudio" IDS_DRIVER_ALSA "Pilote ALSA" IDS_DRIVER_ESOUND "Pilote EsounD" IDS_DRIVER_OSS "Pilote OSS" diff --git a/programs/winecfg/Hu.rc b/programs/winecfg/Hu.rc index 0445c77..7756d2b 100644 --- a/programs/winecfg/Hu.rc +++ b/programs/winecfg/Hu.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Basic" IDS_ACCEL_EMULATION "Emulation" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ja.rc b/programs/winecfg/Ja.rc index a25a953..d690f7f 100644 --- a/programs/winecfg/Ja.rc +++ b/programs/winecfg/Ja.rc @@ -276,6 +276,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????????????????" + IDS_DRIVER_PULSE "PulseAudio Driver" IDS_DRIVER_ALSA "ALSA Driver" IDS_DRIVER_ESOUND "EsounD Driver" IDS_DRIVER_OSS "OSS Driver" diff --git a/programs/winecfg/Ko.rc b/programs/winecfg/Ko.rc index c01b841..5c500d5 100644 --- a/programs/winecfg/Ko.rc +++ b/programs/winecfg/Ko.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "????" IDS_ACCEL_BASIC "????" IDS_ACCEL_EMULATION "??????????" + IDS_DRIVER_PULSE "PulseAudio ????????" IDS_DRIVER_ALSA "ALSA ????????" IDS_DRIVER_ESOUND "EsounD ????????" IDS_DRIVER_OSS "OSS ????????" diff --git a/programs/winecfg/Nl.rc b/programs/winecfg/Nl.rc index 99062cf..2683a82 100644 --- a/programs/winecfg/Nl.rc +++ b/programs/winecfg/Nl.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standaard" IDS_ACCEL_BASIC "Eenvoudig" IDS_ACCEL_EMULATION "Emulatie" + IDS_DRIVER_PULSE "PulseAudio Stuurprogramma" IDS_DRIVER_ALSA "ALSA Stuurprogramma" IDS_DRIVER_ESOUND "EsounD Stuurprogramma" IDS_DRIVER_OSS "OSS Stuurprogramma" diff --git a/programs/winecfg/No.rc b/programs/winecfg/No.rc index 357539e..b2a5eae 100644 --- a/programs/winecfg/No.rc +++ b/programs/winecfg/No.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grunnleggende" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-driver" IDS_DRIVER_ALSA "ALSA-driver" IDS_DRIVER_ESOUND "EsounD-driver" IDS_DRIVER_OSS "OSS-driver" diff --git a/programs/winecfg/Pl.rc b/programs/winecfg/Pl.rc index 8e1d9a2..bd968de 100644 --- a/programs/winecfg/Pl.rc +++ b/programs/winecfg/Pl.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardowe" IDS_ACCEL_BASIC "Podstawowe" IDS_ACCEL_EMULATION "Emulacja" + IDS_DRIVER_PULSE "Sterownik PulseAudio" IDS_DRIVER_ALSA "Sterownik ALSA" IDS_DRIVER_ESOUND "Sterownik EsounD" IDS_DRIVER_OSS "Sterownik OSS" diff --git a/programs/winecfg/Pt.rc b/programs/winecfg/Pt.rc index e3b02a1..be5acb0 100644 --- a/programs/winecfg/Pt.rc +++ b/programs/winecfg/Pt.rc @@ -471,6 +471,7 @@ BEGIN IDS_ACCEL_STANDARD "Padr??o" IDS_ACCEL_BASIC "B??sico" IDS_ACCEL_EMULATION "Emula????o" + IDS_DRIVER_PULSE "Controlador PulseAudio" IDS_DRIVER_ALSA "Controlador ALSA" IDS_DRIVER_ESOUND "Controlador EsounD" IDS_DRIVER_OSS "Controlador OSS" diff --git a/programs/winecfg/Ro.rc b/programs/winecfg/Ro.rc index c836d60..50317bf 100644 --- a/programs/winecfg/Ro.rc +++ b/programs/winecfg/Ro.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "De baz??" IDS_ACCEL_EMULATION "Emulare" + IDS_DRIVER_PULSE "Driver PulseAudio" IDS_DRIVER_ALSA "Driver ALSA" IDS_DRIVER_ESOUND "Driver Esound" IDS_DRIVER_OSS "Driver OSS" diff --git a/programs/winecfg/Ru.rc b/programs/winecfg/Ru.rc index 8d61413..7962c98 100644 --- a/programs/winecfg/Ru.rc +++ b/programs/winecfg/Ru.rc @@ -275,6 +275,7 @@ BEGIN IDS_ACCEL_STANDARD "???????????" IDS_ACCEL_BASIC "???????????" IDS_ACCEL_EMULATION "????????" + IDS_DRIVER_PULSE "PulseAudio ???????" IDS_DRIVER_ALSA "ALSA ???????" IDS_DRIVER_ESOUND "EsounD ???????" IDS_DRIVER_OSS "OSS ???????" diff --git a/programs/winecfg/Si.rc b/programs/winecfg/Si.rc index 87cd239..73544bb 100644 --- a/programs/winecfg/Si.rc +++ b/programs/winecfg/Si.rc @@ -273,6 +273,7 @@ BEGIN IDS_ACCEL_STANDARD "Standardno" IDS_ACCEL_BASIC "Osnovno" IDS_ACCEL_EMULATION "Emulacija" + IDS_DRIVER_PULSE "PulseAudio gonilnik" IDS_DRIVER_ALSA "ALSA gonilnik" IDS_DRIVER_ESOUND "EsounD gonilnik" IDS_DRIVER_OSS "OSS gonilnik" diff --git a/programs/winecfg/Sv.rc b/programs/winecfg/Sv.rc index 113603c..dde6ed5 100644 --- a/programs/winecfg/Sv.rc +++ b/programs/winecfg/Sv.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standard" IDS_ACCEL_BASIC "Grundl?ggande" IDS_ACCEL_EMULATION "Emulering" + IDS_DRIVER_PULSE "PulseAudio-drivrutin" IDS_DRIVER_ALSA "ALSA-drivrutin" IDS_DRIVER_ESOUND "EsounD-drivrutin" IDS_DRIVER_OSS "OSS-drivrutin" diff --git a/programs/winecfg/Tr.rc b/programs/winecfg/Tr.rc index 883c0f3..4f6ecb3 100644 --- a/programs/winecfg/Tr.rc +++ b/programs/winecfg/Tr.rc @@ -271,6 +271,7 @@ BEGIN IDS_ACCEL_STANDARD "Standart" IDS_ACCEL_BASIC "Temel" IDS_ACCEL_EMULATION "Taklit" + IDS_DRIVER_PULSE "PulseAudio S?r?c?s?" IDS_DRIVER_ALSA "ALSA S?r?c?s?" IDS_DRIVER_ESOUND "EsounD S?r?c?s?" IDS_DRIVER_OSS "OSS S?r?c?s?" diff --git a/programs/winecfg/Zh.rc b/programs/winecfg/Zh.rc index b483cfe..8617049 100644 --- a/programs/winecfg/Zh.rc +++ b/programs/winecfg/Zh.rc @@ -274,6 +274,7 @@ BEGIN IDS_ACCEL_STANDARD "??????" IDS_ACCEL_BASIC "??????" IDS_ACCEL_EMULATION "????????????" + IDS_DRIVER_PULSE "PulseAudio ??????" IDS_DRIVER_ALSA "ALSA ??????" IDS_DRIVER_ESOUND "EsounD ??????" IDS_DRIVER_OSS "OSS ??????" diff --git a/programs/winecfg/audio.c b/programs/winecfg/audio.c index 79e62f0..b9a310c 100644 --- a/programs/winecfg/audio.c +++ b/programs/winecfg/audio.c @@ -88,6 +88,7 @@ typedef struct } AUDIO_DRIVER; static const AUDIO_DRIVER sAudioDrivers[] = { + {IDS_DRIVER_PULSE, "pulse"}, {IDS_DRIVER_ALSA, "alsa"}, {IDS_DRIVER_OSS, "oss"}, {IDS_DRIVER_COREAUDIO, "coreaudio"}, diff --git a/programs/winecfg/libraries.c b/programs/winecfg/libraries.c index 37cc12b..7c13fad 100644 --- a/programs/winecfg/libraries.c +++ b/programs/winecfg/libraries.c @@ -81,6 +81,7 @@ static const char * const builtin_only[] = "wineoss.drv", "wineps", "wineps.drv", + "winepulse.drv", "winex11.drv", "winmm", "wintab32", diff --git a/programs/winecfg/resource.h b/programs/winecfg/resource.h index 88c9e64..05a13de 100644 --- a/programs/winecfg/resource.h +++ b/programs/winecfg/resource.h @@ -186,7 +186,7 @@ #define IDS_ACCEL_BASIC 8302 #define IDS_ACCEL_EMULATION 8303 #define IDS_DRIVER_ALSA 8304 - +#define IDS_DRIVER_PULSE 8305 #define IDS_DRIVER_ESOUND 8306 #define IDS_DRIVER_OSS 8307 #define IDS_DRIVER_JACK 8308 winepulse-0.29-configure.ac.patch: configure.ac | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) --- NEW FILE winepulse-0.29-configure.ac.patch --- diff --git a/configure.ac b/configure.ac index 3b805fe..4c2b822 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,7 @@ AC_ARG_WITH(png, AS_HELP_STRING([--without-png],[do not use PNG]), [if test "x$withval" = "xno"; then ac_cv_header_png_h=no; fi]) AC_ARG_WITH(pthread, AS_HELP_STRING([--without-pthread],[do not use the pthread library]), [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi]) +AC_ARG_WITH(pulse, AC_HELP_STRING([--without-pulse],[do not use PulseAudio sound support])) AC_ARG_WITH(sane, AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)])) AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]), [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi]) @@ -1253,6 +1254,24 @@ then CFLAGS="$save_CFLAGS" fi +dnl **** Check for PulseAudio **** +if test "x$with_pulse" != "xno"; then + if test "$PKG_CONFIG" != "false"; then + AC_MSG_CHECKING([for pulseaudio >= 0.9.15]) + if "$PKG_CONFIG" --atleast-version=0.9.15 libpulse; then + have_pulseaudio="yes" + else + have_pulseaudio="no" + fi + AC_MSG_RESULT([$have_pulseaudio]) + if test x"$have_pulseaudio" = xyes; then + ac_pulse_libs=`$PKG_CONFIG --libs libpulse` + AC_DEFINE([HAVE_PULSEAUDIO], 1, [define this if you have pulseaudio]) + AC_SUBST(PULSELIBS, "$ac_pulse_libs") + fi + fi +fi + dnl **** Check for ALSA 1.x **** AC_SUBST(ALSALIBS,"") if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes" @@ -1379,7 +1398,7 @@ dnl **** Check for libodbc **** WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])]) dnl **** Check for any sound system **** -if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \ +if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESDLIBS$PULSELIBS$ac_cv_lib_soname_jack" = "x" -a \ "$ac_cv_header_sys_soundcard_h" != "yes" -a \ "$ac_cv_header_machine_soundcard_h" != "yes" -a \ "$ac_cv_header_soundcard_h" != "yes" -a \ @@ -2415,6 +2434,7 @@ WINE_CONFIG_MAKEFILE([dlls/winemp3.acm/Makefile],[dlls/Makedll.rules],[dlls],[AL WINE_CONFIG_MAKEFILE([dlls/winenas.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineoss.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wineps.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) +WINE_CONFIG_MAKEFILE([dlls/winepulse.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winequartz.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/winex11.drv/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) WINE_CONFIG_MAKEFILE([dlls/wing32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS]) winepulse-0.29.patch: Makefile.in | 15 pulse.c | 788 ++++++++++++++++++++++++++++++++++++++ wavein.c | 595 +++++++++++++++++++++++++++++ waveout.c | 1075 +++++++++++++++++++++++++++++++++++++++++++++++++++++ winepulse.drv.spec | 3 winepulse.h | 196 +++++++++ 6 files changed, 2672 insertions(+) --- NEW FILE winepulse-0.29.patch --- diff --git a/dlls/winepulse.drv/Makefile.in b/dlls/winepulse.drv/Makefile.in new file mode 100644 index 0000000..c99c1da --- /dev/null +++ b/dlls/winepulse.drv/Makefile.in @@ -0,0 +1,15 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = winepulse.drv +IMPORTS = winmm user32 kernel32 +EXTRALIBS = @PULSELIBS@ + +C_SRCS = waveout.c \ + wavein.c \ + pulse.c + + at MAKE_DLL_RULES@ + + at DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/winepulse.drv/pulse.c b/dlls/winepulse.drv/pulse.c new file mode 100644 index 0000000..3dcb086 --- /dev/null +++ b/dlls/winepulse.drv/pulse.c @@ -0,0 +1,788 @@ +/* + * Wine Driver for PulseAudio + * http://pulseaudio.org/ + * + * Copyright 2009 Arthur Taylor + * + * Contains code from other wine sound drivers. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "config.h" + +#include +#include + +#include "windef.h" +#include "winbase.h" +#include "wingdi.h" +#include "winuser.h" +#include "winreg.h" +#include "mmddk.h" +#include "ks.h" +#include "ksguid.h" +#include "ksmedia.h" + +#ifdef HAVE_UNISTD_H +# include +#endif +#include + +#ifdef HAVE_PULSEAUDIO + +#include "wine/unicode.h" +#include "wine/debug.h" +#include "wine/library.h" + +#include +#include +WINE_DEFAULT_DEBUG_CHANNEL(wave); + +/* These strings used only for tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg) { + static char unknown[32]; +#define MSG_TO_STR(x) case x: return #x + switch(msg) { + MSG_TO_STR(WINE_WM_PAUSING); + MSG_TO_STR(WINE_WM_RESTARTING); + MSG_TO_STR(WINE_WM_RESETTING); + MSG_TO_STR(WINE_WM_HEADER); + MSG_TO_STR(WINE_WM_BREAKLOOP); + MSG_TO_STR(WINE_WM_CLOSING); + MSG_TO_STR(WINE_WM_STARTING); + MSG_TO_STR(WINE_WM_STOPPING); + MSG_TO_STR(WINE_WM_XRUN); + MSG_TO_STR(WINE_WM_FEED); + } +#undef MSG_TO_STR + sprintf(unknown, "UNKNOWN(0x%08x)", msg); + return unknown; +} + +/*======================================================================* + * Ring Buffer Functions - copied from winealsa.drv * + *======================================================================*/ + +/* unless someone makes a wineserver kernel module, Unix pipes are faster than win32 events */ +#define USE_PIPE_SYNC + +#ifdef USE_PIPE_SYNC +#define INIT_OMR(omr) do { if (pipe(omr->msg_pipe) < 0) { omr->msg_pipe[0] = omr->msg_pipe[1] = -1; } } while (0) +#define CLOSE_OMR(omr) do { close(omr->msg_pipe[0]); close(omr->msg_pipe[1]); } while (0) +#define SIGNAL_OMR(omr) do { int x = 0; write((omr)->msg_pipe[1], &x, sizeof(x)); } while (0) +#define CLEAR_OMR(omr) do { int x = 0; read((omr)->msg_pipe[0], &x, sizeof(x)); } while (0) +#define RESET_OMR(omr) do { } while (0) +#define WAIT_OMR(omr, sleep) \ + do { struct pollfd pfd; pfd.fd = (omr)->msg_pipe[0]; \ + pfd.events = POLLIN; poll(&pfd, 1, sleep); } while (0) +#else +#define INIT_OMR(omr) do { omr->msg_event = CreateEventW(NULL, FALSE, FALSE, NULL); } while (0) +#define CLOSE_OMR(omr) do { CloseHandle(omr->msg_event); } while (0) +#define SIGNAL_OMR(omr) do { SetEvent((omr)->msg_event); } while (0) +#define CLEAR_OMR(omr) do { } while (0) +#define RESET_OMR(omr) do { ResetEvent((omr)->msg_event); } while (0) +#define WAIT_OMR(omr, sleep) \ + do { WaitForSingleObject((omr)->msg_event, sleep); } while (0) +#endif + +#define PULSE_RING_BUFFER_INCREMENT 64 + +/****************************************************************** + * PULSE_InitRingMessage + * + * Initialize the ring of messages for passing between driver's caller + * and playback/record thread + */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr) +{ + omr->msg_toget = 0; + omr->msg_tosave = 0; + INIT_OMR(omr); + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(PULSE_MSG)); + + InitializeCriticalSection(&omr->msg_crst); + omr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PULSE_MSG_RING.msg_crst"); + return 0; +} + +/****************************************************************** + * PULSE_DestroyRingMessage + * + */ +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr) +{ + CLOSE_OMR(omr); + HeapFree(GetProcessHeap(),0,omr->messages); + omr->messages = NULL; + omr->ring_buffer_size = PULSE_RING_BUFFER_INCREMENT; + omr->msg_crst.DebugInfo->Spare[0] = 0; + DeleteCriticalSection(&omr->msg_crst); + return 0; +} +/****************************************************************** + * PULSE_ResetRingMessage + * + */ +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr) +{ + RESET_OMR(omr); +} + +/****************************************************************** + * PULSE_WaitRingMessage + * + */ +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep) +{ + WAIT_OMR(omr, sleep); +} + +/****************************************************************** + * PULSE_AddRingMessage + * + * Inserts a new message into the ring (should be called from DriverProc derived routines) + */ +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait) +{ + HANDLE hEvent = INVALID_HANDLE_VALUE; + + EnterCriticalSection(&omr->msg_crst); + if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size))) + { + int old_ring_buffer_size = omr->ring_buffer_size; + omr->ring_buffer_size += PULSE_RING_BUFFER_INCREMENT; + omr->messages = HeapReAlloc(GetProcessHeap(),0,omr->messages, omr->ring_buffer_size * sizeof(PULSE_MSG)); + /* Now we need to rearrange the ring buffer so that the new + buffers just allocated are in between omr->msg_tosave and + omr->msg_toget. + */ [...2309 lines suppressed...] index 0000000..4a834cd --- /dev/null +++ b/dlls/winepulse.drv/winepulse.h @@ -0,0 +1,196 @@ +/* Definitions for PulseAudio Wine Driver + * + * Copyright 2009 Arthur Taylor + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef __WINE_CONFIG_H +# error You must include config.h to use this header +#endif + +#if defined(HAVE_PULSEAUDIO) && !defined(__WINEPULSE_H) +#define __WINEPULSE_H + +#include "mmreg.h" +#include "dsound.h" +#include "dsdriver.h" + +#include "ks.h" +#include "ksmedia.h" +#include "ksguid.h" + +#include + +/* state diagram for waveOut writing: + * + * +---------+-------------+---------------+---------------------------------+ + * | state | function | event | new state | + * +---------+-------------+---------------+---------------------------------+ + * | | open() | | STOPPED | + * | PAUSED | write() | | PAUSED | + * | STOPPED | write() | | PLAYING | + * | PLAYING | write() | HEADER | PLAYING | + * | (other) | write() | | | + * | (any) | pause() | PAUSING | PAUSED | + * | PAUSED | restart() | RESTARTING | PLAYING (if no thrd => STOPPED) | + * | (any) | reset() | RESETTING | STOPPED | + * | (any) | close() | CLOSING | CLOSED | + * +---------+-------------+---------------+---------------------------------+ + */ + +/* states of the playing device */ +#define WINE_WS_PLAYING 1 +#define WINE_WS_PAUSED 2 +#define WINE_WS_STOPPED 3 +#define WINE_WS_CLOSED 4 +#define WINE_WS_FAILED 5 + +#define PULSE_ALL_FORMATS \ + WAVE_FORMAT_1M08 | /* Mono 11025Hz 8-bit */\ + WAVE_FORMAT_1M16 | /* Mono 11025Hz 16-bit */\ + WAVE_FORMAT_1S08 | /* Stereo 11025Hz 8-bit */\ + WAVE_FORMAT_1S16 | /* Stereo 11025Hz 16-bit */\ + WAVE_FORMAT_2M08 | /* Mono 22050Hz 8-bit */\ + WAVE_FORMAT_2M16 | /* Mono 22050Hz 16-bit */\ + WAVE_FORMAT_2S08 | /* Stereo 22050Hz 8-bit */\ + WAVE_FORMAT_2S16 | /* Stereo 22050Hz 16-bit */\ + WAVE_FORMAT_4M08 | /* Mono 44100Hz 8-bit */\ + WAVE_FORMAT_4M16 | /* Mono 44100Hz 16-bit */\ + WAVE_FORMAT_4S08 | /* Stereo 44100Hz 8-bit */\ + WAVE_FORMAT_4S16 | /* Stereo 44100Hz 16-bit */\ + WAVE_FORMAT_48M08 | /* Mono 48000Hz 8-bit */\ + WAVE_FORMAT_48S08 | /* Stereo 48000Hz 8-bit */\ + WAVE_FORMAT_48M16 | /* Mono 48000Hz 16-bit */\ + WAVE_FORMAT_48S16 | /* Stereo 48000Hz 16-bit */\ + WAVE_FORMAT_96M08 | /* Mono 96000Hz 8-bit */\ + WAVE_FORMAT_96S08 | /* Stereo 96000Hz 8-bit */\ + WAVE_FORMAT_96M16 | /* Mono 96000Hz 16-bit */\ + WAVE_FORMAT_96S16 /* Stereo 96000Hz 16-bit */ + +/* events to be sent to device */ +enum win_wm_message { + WINE_WM_PAUSING = WM_USER + 1, WINE_WM_RESTARTING, WINE_WM_RESETTING, WINE_WM_HEADER, + WINE_WM_BREAKLOOP, WINE_WM_CLOSING, WINE_WM_STARTING, WINE_WM_STOPPING, WINE_WM_XRUN, WINE_WM_FEED +}; + +typedef struct { + enum win_wm_message msg; /* message identifier */ + DWORD param; /* parameter for this message */ + HANDLE hEvent; /* if message is synchronous, handle of event for synchro */ +} PULSE_MSG; + +/* implement an in-process message ring for better performance + * (compared to passing thru the server) + * this ring will be used by the input (resp output) record (resp playback) routine + */ +typedef struct { + PULSE_MSG * messages; + int ring_buffer_size; + int msg_tosave; + int msg_toget; +/* Either pipe or event is used, but that is defined in pulse.c, + * since this is a global header we define both here */ + int msg_pipe[2]; + HANDLE msg_event; + CRITICAL_SECTION msg_crst; +} PULSE_MSG_RING; + +typedef struct WINE_WAVEDEV WINE_WAVEDEV; +typedef struct WINE_WAVEINST WINE_WAVEINST; + +/* Per-playback/record device */ +struct WINE_WAVEDEV { + char interface_name[MAXPNAMELEN * 2]; + char *device_name; + pa_cvolume volume; + + union { + WAVEOUTCAPSW out; + WAVEINCAPSW in; + } caps; + + /* DirectSound stuff */ + DSDRIVERDESC ds_desc; + DSDRIVERCAPS ds_caps; +}; + +/* Per-playback/record instance */ +struct WINE_WAVEINST { + volatile INT state; /* one of the WINE_WS_ manifest constants */ + WAVEOPENDESC waveDesc; + WORD wFlags; + + /* PulseAudio specific data */ + pa_stream *stream; /* The PulseAudio stream */ + const pa_timing_info *timing_info; /* The timing info structure for the stream */ + pa_sample_spec sample_spec; /* Sample spec of this stream / device */ + pa_cvolume volume; /* Software volume of the stream */ + pa_buffer_attr buffer_attr; /* Buffer attribute, may not be used */ + + /* waveIn / waveOut wavaHdr */ + LPWAVEHDR lpQueuePtr; /* Start of queued WAVEHDRs (waiting to be notified) */ + LPWAVEHDR lpPlayPtr; /* Start of not yet fully written buffers */ + DWORD dwPartialOffset; /* Offset of not yet written bytes in lpPlayPtr */ + LPWAVEHDR lpLoopPtr; /* Pointer of first buffer in loop, if any */ + DWORD dwLoops; /* Private copy of loop counter */ + DWORD dwLastReset; /* When the last reset occured, as pa stream time doesn't reset */ + + /* waveIn specific */ + const void *buffer; /* Pointer to the latest data fragment for recording streams */ + DWORD buffer_length; /* How large the latest data fragment is */ + DWORD buffer_read_offset; /* How far into latest data fragment we last read */ + + /* Thread communication and synchronization stuff */ + HANDLE hStartUpEvent; + HANDLE hThread; + DWORD dwThreadID; + PULSE_MSG_RING msgRing; +}; + +/* We establish one context per instance, so make it global to the lib */ +pa_context *PULSE_context; /* Connection Context */ +pa_threaded_mainloop *PULSE_ml; /* PA Runtime information */ + +/* WaveIn / WaveOut devices */ +WINE_WAVEDEV *WOutDev; +WINE_WAVEDEV *WInDev; +DWORD PULSE_WodNumDevs; +DWORD PULSE_WidNumDevs; + +/* pulse.c: PulseAudio Async Callbacks */ +void PULSE_StreamSuccessCallback(pa_stream *s, int success, void *userdata); +void PULSE_StreamStateCallback(pa_stream *s, void *userdata); +void PULSE_StreamUnderflowCallback(pa_stream *s, void *userdata); +void PULSE_StreamSuspendedCallback(pa_stream *s, void *userdata); +void PULSE_StreamMovedCallback(pa_stream *s, void *userdata); +void PULSE_ContextSuccessCallback(pa_context *c, int success, void *userdata); + +/* pulse.c: General Functions */ +void PULSE_WaitForOperation(pa_operation *o); +BOOL PULSE_SetupFormat(LPWAVEFORMATEX wf, pa_sample_spec *ss); +HRESULT PULSE_UsecToMMTime(pa_usec_t time, LPMMTIME lpTime, const pa_sample_spec *ss); + +/* pulse.c: Message Ring */ +int PULSE_InitRingMessage(PULSE_MSG_RING* omr); +int PULSE_DestroyRingMessage(PULSE_MSG_RING* omr); +void PULSE_ResetRingMessage(PULSE_MSG_RING* omr); +void PULSE_WaitRingMessage(PULSE_MSG_RING* omr, DWORD sleep); +int PULSE_AddRingMessage(PULSE_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait); +int PULSE_RetrieveRingMessage(PULSE_MSG_RING* omr, enum win_wm_message *msg, DWORD *param, HANDLE *hEvent); + +/* pulse.c: Tracing */ +const char * PULSE_getCmdString(enum win_wm_message msg); +#endif Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wine/devel/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 10 Jul 2009 04:43:04 -0000 1.76 +++ .cvsignore 19 Jul 2009 10:47:48 -0000 1.77 @@ -1 +1 @@ -wine-1.1.25-fe.tar.bz2 +wine-1.1.26-fe.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wine/devel/sources,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- sources 10 Jul 2009 04:43:04 -0000 1.77 +++ sources 19 Jul 2009 10:47:49 -0000 1.78 @@ -1 +1 @@ -e45a112c996c62d76aea3bf7de653089 wine-1.1.25-fe.tar.bz2 +7b2affded452ced2b1f45a9b7e6f24da wine-1.1.26-fe.tar.bz2 Index: wine.spec =================================================================== RCS file: /cvs/pkgs/rpms/wine/devel/wine.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- wine.spec 10 Jul 2009 04:43:04 -0000 1.109 +++ wine.spec 19 Jul 2009 10:47:49 -0000 1.110 @@ -1,5 +1,5 @@ Name: wine -Version: 1.1.25 +Version: 1.1.26 Release: 1%{?dist} Summary: A Windows 16/32/64 bit emulator @@ -44,9 +44,9 @@ Source300: wine-mime-msi.desktop # explain how to use wine with pulseaudio # see http://bugs.winehq.org/show_bug.cgi?id=10495 # and http://art.ified.ca/?page_id=40 -Patch400: http://art.ified.ca/downloads/winepulse-0.17-configure.ac.patch -Patch401: http://art.ified.ca/downloads/winepulse-0.28.patch -Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg.patch +Patch400: http://art.ified.ca/downloads/winepulse-0.29-configure.ac.patch +Patch401: http://art.ified.ca/downloads/winepulse-0.29.patch +Patch402: http://art.ified.ca/downloads/adding-pulseaudio-to-winecfg-0.3.patch Source402: README-FEDORA-PULSEAUDIO @@ -136,6 +136,8 @@ Obsoletes: wine-arts < 0.9.34 # fix dns resolution (#492700) # require both to be sure 64bit is present as well... Requires: nss-mdns nss-mdns%{_isa} +# require Xrender isa on x86_64 (#510947) +Requires: libXrender%{_isa} %description core Wine core package includes the basic wine stuff needed by all other packages. @@ -732,6 +734,7 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/winsock.dll16 %{_libdir}/wine/winspool.drv.so %{_libdir}/wine/wmi.dll.so +%{_libdir}/wine/wmiutils.dll.so %{_libdir}/wine/spoolss.dll.so %{_libdir}/wine/winscard.dll.so %{_libdir}/wine/wintab32.dll.so @@ -750,7 +753,6 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineps16.drv16 %{_libdir}/wine/d3d8.dll.so %{_libdir}/wine/d3d9.dll.so -%{_libdir}/wine/d3dx8.dll.so %{_libdir}/wine/opengl32.dll.so %{_libdir}/wine/wined3d.dll.so %{_libdir}/wine/dnsapi.dll.so @@ -917,6 +919,12 @@ update-desktop-database &>/dev/null || : %{_libdir}/wine/wineoss.drv.so %changelog +* Sat Jul 18 2009 Andreas Bierfert +- 1.1.26-1 +- version upgrade +- WinePulse 0.29 +- require Xrender isa for x86_64 (#510947) + * Thu Jul 09 2009 Andreas Bierfert - 1.1.25-1 - version upgrade (#509648) --- adding-pulseaudio-to-winecfg.patch DELETED --- --- winepulse-0.17-configure.ac.patch DELETED --- --- winepulse-0.28.patch DELETED --- From dwalsh at fedoraproject.org Sun Jul 19 11:08:04 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sun, 19 Jul 2009 11:08:04 +0000 (UTC) Subject: rpms/setroubleshoot-plugins/devel .cvsignore, 1.27, 1.28 setroubleshoot-plugins.spec, 1.31, 1.32 sources, 1.28, 1.29 Message-ID: <20090719110804.8715311C00D7@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7581 Modified Files: .cvsignore setroubleshoot-plugins.spec sources Log Message: * Sun Jul 19 2009 - 2.1.11-1 - Remove allow_default_t boolean - Fix global_ssp.py to report boolean name Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 9 Jul 2009 20:25:29 -0000 1.27 +++ .cvsignore 19 Jul 2009 11:07:33 -0000 1.28 @@ -17,3 +17,4 @@ setroubleshoot-plugins-2.1.5.tar.gz setroubleshoot-plugins-2.1.7.tar.gz setroubleshoot-plugins-2.1.8.tar.gz setroubleshoot-plugins-2.1.9.tar.gz +setroubleshoot-plugins-2.1.11.tar.gz Index: setroubleshoot-plugins.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/setroubleshoot-plugins.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- setroubleshoot-plugins.spec 9 Jul 2009 20:25:29 -0000 1.31 +++ setroubleshoot-plugins.spec 19 Jul 2009 11:07:33 -0000 1.32 @@ -1,6 +1,6 @@ Summary: Analysis plugins for use with setroubleshoot Name: setroubleshoot-plugins -Version: 2.1.9 +Version: 2.1.11 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -52,6 +52,10 @@ rm -rf %{buildroot} %{_datadir}/setroubleshoot/plugins %changelog +* Sun Jul 19 2009 - 2.1.11-1 +- Remove allow_default_t boolean +- Fix global_ssp.py to report boolean name + * Thu Jul 9 2009 - 2.1.9-1 - Add Scott Radvan. doc cleanup Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 9 Jul 2009 20:25:29 -0000 1.28 +++ sources 19 Jul 2009 11:07:33 -0000 1.29 @@ -1 +1 @@ -ce3d98be1e26999bcaff9683f9394b8b setroubleshoot-plugins-2.1.9.tar.gz +293f7fdd2faefe73fa07b819e4a1dd1d setroubleshoot-plugins-2.1.11.tar.gz From dwalsh at fedoraproject.org Sun Jul 19 11:13:21 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sun, 19 Jul 2009 11:13:21 +0000 (UTC) Subject: rpms/setroubleshoot-plugins/F-11 setroubleshoot-plugins-2.0.18-global_ssp.patch, NONE, 1.1 setroubleshoot-plugins.spec, 1.23, 1.24 Message-ID: <20090719111321.46EA911C00D7@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9273 Modified Files: setroubleshoot-plugins.spec Added Files: setroubleshoot-plugins-2.0.18-global_ssp.patch Log Message: * Sun Jun 19 2009 - 2.0.18-2 - Fix global_ssp to report correct boolean name setroubleshoot-plugins-2.0.18-global_ssp.patch: global_ssp.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE setroubleshoot-plugins-2.0.18-global_ssp.patch --- diff -up setroubleshoot-plugins-2.0.18/src/global_ssp.py~ setroubleshoot-plugins-2.0.18/src/global_ssp.py --- setroubleshoot-plugins-2.0.18/src/global_ssp.py~ 2009-07-19 07:09:13.000000000 -0400 +++ setroubleshoot-plugins-2.0.18/src/global_ssp.py 2009-07-19 07:09:39.000000000 -0400 @@ -35,8 +35,8 @@ class plugin(Plugin): are situations where all applications require the access (for example, when ProPolice/SSP stack smashing protection is used). Allowing this access may allow malicious applications to drain the kernel entropy - pool. This can compromising the ability of some software that is - dependent on high quality random number (e.g., ssh-keygen) to operate + pool. This can compromise the ability of some software that is + dependent on high quality random numbers (e.g., ssh-keygen) to operate effectively. The risk of this type of attack is relatively low. ''') @@ -54,6 +54,7 @@ class plugin(Plugin): avc.all_accesses_are_in(avc.r_file_perms) and \ avc.has_tclass_in(['chr_file']): # MATCH + avc.set_template_substitutions(BOOLEAN="global_ssp") return self.report(avc, None, self.summary, self.problem_description, self.fix_description, self.fix_cmd) Index: setroubleshoot-plugins.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/F-11/setroubleshoot-plugins.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- setroubleshoot-plugins.spec 5 Jun 2009 15:10:17 -0000 1.23 +++ setroubleshoot-plugins.spec 19 Jul 2009 11:13:20 -0000 1.24 @@ -1,11 +1,12 @@ Summary: Analysis plugins for use with setroubleshoot Name: setroubleshoot-plugins Version: 2.0.18 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot Source0: %{name}-%{version}.tar.gz +Patch: setroubleshoot-plugins-2.0.18-global_ssp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -25,6 +26,7 @@ to interpret SELinux AVC denials. %prep %setup -q +%patch -p1 -b .global_ssp %build %configure @@ -52,6 +54,9 @@ rm -rf %{buildroot} %{_datadir}/setroubleshoot/plugins %changelog +* Sun Jun 19 2009 - 2.0.18-2 +- Fix global_ssp to report correct boolean name + * Fri Jun 5 2009 - 2.0.18-1 - Execute catchall_boolean.py before allow_daemons_use_tty - Fix chcon lines to match current policy From mjakubicek at fedoraproject.org Sun Jul 19 11:32:54 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Sun, 19 Jul 2009 11:32:54 +0000 (UTC) Subject: rpms/html-xml-utils/F-10 html-xml-utils.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090719113255.1678811C00D7@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/html-xml-utils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13275/F-10 Modified Files: html-xml-utils.spec sources Log Message: - Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). Index: html-xml-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/F-10/html-xml-utils.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- html-xml-utils.spec 16 May 2009 11:08:57 -0000 1.5 +++ html-xml-utils.spec 19 Jul 2009 11:32:23 -0000 1.6 @@ -1,5 +1,5 @@ Name: html-xml-utils -Version: 5.3 +Version: 5.4 Release: 1%{?dist} Summary: A number of simple utilities for manipulating HTML and XML files @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Milos Jakubicek - 5.4-1 +- Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). + * Sat May 16 2009 Milos Jakubicek - 5.3-1 - Update to 5.3: many bugfixes, most binaries have now a "hx" prefix - Removed Conflicts: surfraw, normalize Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 May 2009 11:08:58 -0000 1.3 +++ sources 19 Jul 2009 11:32:23 -0000 1.4 @@ -1 +1 @@ -21d48052c36f28c98a2a1df5905287ae html-xml-utils-5.3.tar.gz +28917ddd90339ab8381f37158423892f html-xml-utils-5.4.tar.gz From mjakubicek at fedoraproject.org Sun Jul 19 11:32:54 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Sun, 19 Jul 2009 11:32:54 +0000 (UTC) Subject: rpms/html-xml-utils/F-11 html-xml-utils.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090719113255.196B111C0263@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/html-xml-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13275/F-11 Modified Files: html-xml-utils.spec sources Log Message: - Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). Index: html-xml-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/F-11/html-xml-utils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- html-xml-utils.spec 16 May 2009 11:08:59 -0000 1.7 +++ html-xml-utils.spec 19 Jul 2009 11:32:24 -0000 1.8 @@ -1,5 +1,5 @@ Name: html-xml-utils -Version: 5.3 +Version: 5.4 Release: 1%{?dist} Summary: A number of simple utilities for manipulating HTML and XML files @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Milos Jakubicek - 5.4-1 +- Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). + * Sat May 16 2009 Milos Jakubicek - 5.3-1 - Update to 5.3: many bugfixes, most binaries have now a "hx" prefix - Removed Conflicts: surfraw, normalize Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 May 2009 11:08:59 -0000 1.3 +++ sources 19 Jul 2009 11:32:24 -0000 1.4 @@ -1 +1 @@ -21d48052c36f28c98a2a1df5905287ae html-xml-utils-5.3.tar.gz +28917ddd90339ab8381f37158423892f html-xml-utils-5.4.tar.gz From pkgdb at fedoraproject.org Sun Jul 19 11:33:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:39 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113339.F01A210F895@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on hulahop (Fedora devel) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:33:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:40 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113340.878E510F89E@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on hulahop (Fedora devel) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:33:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:41 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113341.F2F3010F8A8@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on hulahop (Fedora devel) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:33:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:44 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113344.B000C10F891@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on hulahop (Fedora devel) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:33:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:57 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113357.BD78E10F897@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on hulahop (Fedora 11) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:33:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:33:59 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113359.25FFE10F8AA@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on hulahop (Fedora 11) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:34:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:34:01 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113401.8DE1210F8AD@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on hulahop (Fedora 11) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:34:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:34:02 +0000 Subject: [pkgdb] hulahop had acl change status Message-ID: <20090719113402.AE41810F8BC@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on hulahop (Fedora 11) to Approved for tomeu To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hulahop From pkgdb at fedoraproject.org Sun Jul 19 11:42:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:21 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114221.B5D1D10F897@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-base (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:24 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114224.5A08D10F8A6@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-base (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:26 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114226.629F310F8AC@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-base (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:41 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114241.7FDB110F8A5@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-base (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:40 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114240.4095B10F895@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-base (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:43 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114243.3287310F8B0@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-base (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:48 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114248.1068B10F8B3@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-base (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:49 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114249.00A4A10F8B6@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-base (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:51 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114251.306F910F8B9@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-base (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:42:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:42:53 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114253.227CC10F8AA@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-base (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:43:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:01 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114301.1483C10F8AC@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-base (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:43:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:02 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114302.652F810F8C0@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-base (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From pkgdb at fedoraproject.org Sun Jul 19 11:43:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:05 +0000 Subject: [pkgdb] sugar-base had acl change status Message-ID: <20090719114305.52B1A10F8AF@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-base (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-base From tomeu at fedoraproject.org Sun Jul 19 11:43:23 2009 From: tomeu at fedoraproject.org (tomeu) Date: Sun, 19 Jul 2009 11:43:23 +0000 (UTC) Subject: rpms/hulahop/devel .cvsignore, 1.3, 1.4 hulahop.spec, 1.12, 1.13 sources, 1.5, 1.6 Message-ID: <20090719114323.0BADB11C00D7@cvs1.fedora.phx.redhat.com> Author: tomeu Update of /cvs/pkgs/rpms/hulahop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16860 Modified Files: .cvsignore hulahop.spec sources Log Message: * Sat Jul 18 2009 Tomeu Vizoso - 0.5.0-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hulahop/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Feb 2009 10:02:51 -0000 1.3 +++ .cvsignore 19 Jul 2009 11:43:22 -0000 1.4 @@ -1 +1 @@ -hulahop-0.4.9.tar.bz2 +hulahop-0.5.0.tar.bz2 Index: hulahop.spec =================================================================== RCS file: /cvs/pkgs/rpms/hulahop/devel/hulahop.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- hulahop.spec 28 Apr 2009 03:26:16 -0000 1.12 +++ hulahop.spec 19 Jul 2009 11:43:22 -0000 1.13 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: hulahop -Version: 0.4.9 -Release: 4%{?dist} +Version: 0.5.0 +Release: 0%{?dist} Summary: A pygtk widget for embedding mozilla Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sat Jul 18 2009 Tomeu Vizoso - 0.5.0-1 +- New upstream release + * Mon Apr 27 2009 Christopher Aillon - 0.4.9-4 - Rebuild against newer gecko Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hulahop/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Feb 2009 10:02:52 -0000 1.5 +++ sources 19 Jul 2009 11:43:22 -0000 1.6 @@ -1 +1 @@ -5d81cfb4b80e9ca485c1ed3a6ac1bb06 hulahop-0.4.9.tar.bz2 +3b350f4fc386c69745535d1c53b1ae8f hulahop-0.5.0.tar.bz2 From pkgdb at fedoraproject.org Sun Jul 19 11:43:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:55 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114355.B5B4710F8B1@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-artwork (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:43:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:57 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114357.450A510F8B7@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-artwork (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:43:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:43:59 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114359.74AC510F8D0@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-artwork (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:08 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114408.3B83210F8A9@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-artwork (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:09 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114409.CB61610F8DA@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-artwork (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:11 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114411.45F6110F8BD@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-artwork (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:12 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114412.B03F410F8BF@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-artwork (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:15 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114415.55B1210F8E3@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-artwork (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:16 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114416.49DF010F8E6@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-artwork (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:18 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114418.9BD0F10F8E9@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-artwork (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:25 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114425.436DB10F8AD@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-artwork (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:27 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114427.4760010F8EF@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-artwork (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:44:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:44:29 +0000 Subject: [pkgdb] sugar-artwork had acl change status Message-ID: <20090719114429.50C5810F8F5@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-artwork (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-artwork From pkgdb at fedoraproject.org Sun Jul 19 11:45:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:45:27 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090719114527.EBB0110F8B3@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-toolkit (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sun Jul 19 11:45:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:45:26 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090719114526.D8ECF10F8B0@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-toolkit (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sun Jul 19 11:45:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:45:29 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090719114529.DBC7B10F8B5@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-toolkit (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sun Jul 19 11:45:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:45:31 +0000 Subject: [pkgdb] sugar-toolkit had acl change status Message-ID: <20090719114531.CC68910F8B9@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-toolkit (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-toolkit From pkgdb at fedoraproject.org Sun Jul 19 11:55:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:36 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115536.807E710F8AB@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-presence-service (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:37 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115537.B5C8110F8B1@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-presence-service (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:41 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115541.0E38F10F8B6@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-presence-service (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:42 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115543.0DDA910F8BA@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-presence-service (Fedora devel) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:46 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115546.5A85E10F897@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-presence-service (Fedora devel) to Approved for erikos To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:47 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115547.A546C10F8BE@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-presence-service (Fedora devel) to Approved for erikos To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:49 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115549.69F4610F8C2@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-presence-service (Fedora devel) to Approved for erikos To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:55:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:55:51 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115551.117DB10F8C6@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-presence-service (Fedora devel) to Approved for erikos To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:05 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115605.3F91B10F8A5@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-presence-service (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:08 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115608.958BE10F8AA@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-presence-service (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:06 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115606.88EF210F809@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-presence-service (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:10 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115610.7316810F8C9@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-presence-service (Fedora 10) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:16 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115616.A620010F8CD@bastion2.fedora.phx.redhat.com> erikos has set the watchbugzilla acl on sugar-presence-service (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:18 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115618.1FBAC10F8D1@bastion2.fedora.phx.redhat.com> erikos has set the watchcommits acl on sugar-presence-service (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:19 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115619.8A9E210F8B1@bastion2.fedora.phx.redhat.com> erikos has set the commit acl on sugar-presence-service (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From pkgdb at fedoraproject.org Sun Jul 19 11:56:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 11:56:21 +0000 Subject: [pkgdb] sugar-presence-service had acl change status Message-ID: <20090719115621.40A7B10F8D6@bastion2.fedora.phx.redhat.com> erikos has set the approveacls acl on sugar-presence-service (Fedora 11) to Approved for sdz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sugar-presence-service From remi at fedoraproject.org Sun Jul 19 12:37:15 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sun, 19 Jul 2009 12:37:15 +0000 (UTC) Subject: rpms/php-pear-PEAR-Command-Packaging/devel php-pear-PEAR-Command-Packaging-fedora-template-specfile, 1.2, 1.3 php-pear-PEAR-Command-Packaging.spec, 1.4, 1.5 Message-ID: <20090719123715.8EA8811C00D7@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30121 Modified Files: php-pear-PEAR-Command-Packaging-fedora-template-specfile php-pear-PEAR-Command-Packaging.spec Log Message: change %{pear-name}.xml to %{name}.xml (Fedora PHP Guidelines) Index: php-pear-PEAR-Command-Packaging-fedora-template-specfile =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/devel/php-pear-PEAR-Command-Packaging-fedora-template-specfile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-PEAR-Command-Packaging-fedora-template-specfile 27 Jun 2009 22:06:10 -0000 1.2 +++ php-pear-PEAR-Command-Packaging-fedora-template-specfile 19 Jul 2009 12:36:45 -0000 1.3 @@ -25,7 +25,7 @@ Provides: php-pear(%{pear_name}) = %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package2.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -37,7 +37,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml @doc_files_relocation_script@ @@ -46,7 +46,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -69,8 +69,9 @@ fi @doc_files_statement@ @cfg_files_statement@ @www_files_statement@ -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml # Expand this as needed to avoid owning dirs owned by our dependencies +# and to avoid unowned dirs @php_files_statement@ @data_files_statement@ @test_files_statement@ Index: php-pear-PEAR-Command-Packaging.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/devel/php-pear-PEAR-Command-Packaging.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-PEAR-Command-Packaging.spec 27 Jun 2009 22:06:10 -0000 1.4 +++ php-pear-PEAR-Command-Packaging.spec 19 Jul 2009 12:36:45 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-PEAR-Command-Packaging Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create RPM spec files from PEAR modules Group: Development/System @@ -29,7 +29,7 @@ a later date. %prep %setup -q -c -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -38,7 +38,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Patches for Fedora conventions pushd $RPM_BUILD_ROOT%{pear_phpdir}/PEAR/Command/ @@ -54,7 +54,7 @@ rm -f $RPM_BUILD_ROOT%{pear_docdir}/%{pe # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -63,7 +63,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -74,12 +74,15 @@ fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/LICENSE -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_datadir}/%{pear_name} %{pear_phpdir}/PEAR/Command/Packaging.* %changelog +* Sun Jul 19 2009 Remi Collet 0.2.0-2 +- change %%{pear-name}.xml to %%{name}.xml + * Sat Jun 27 2009 Tim Jackson 0.2.0-1 - Update to 0.2.0 From remi at fedoraproject.org Sun Jul 19 12:42:47 2009 From: remi at fedoraproject.org (Remi Collet) Date: Sun, 19 Jul 2009 12:42:47 +0000 (UTC) Subject: rpms/php-pear-PEAR-Command-Packaging/F-11 php-pear-PEAR-Command-Packaging-fedora-template-specfile, 1.2, 1.3 php-pear-PEAR-Command-Packaging.spec, 1.4, 1.5 Message-ID: <20090719124248.0313911C00D7@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32031 Modified Files: php-pear-PEAR-Command-Packaging-fedora-template-specfile php-pear-PEAR-Command-Packaging.spec Log Message: change %{pear-name}.xml to %{name}.xml (Fedora PHP Guidelines) Index: php-pear-PEAR-Command-Packaging-fedora-template-specfile =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11/php-pear-PEAR-Command-Packaging-fedora-template-specfile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-PEAR-Command-Packaging-fedora-template-specfile 8 Jul 2009 13:52:10 -0000 1.2 +++ php-pear-PEAR-Command-Packaging-fedora-template-specfile 19 Jul 2009 12:42:47 -0000 1.3 @@ -25,7 +25,7 @@ Provides: php-pear(%{pear_name}) = %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml -mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package2.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} @@ -37,7 +37,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT docdir -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml @doc_files_relocation_script@ @@ -46,7 +46,7 @@ rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.?? # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -69,8 +69,9 @@ fi @doc_files_statement@ @cfg_files_statement@ @www_files_statement@ -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml # Expand this as needed to avoid owning dirs owned by our dependencies +# and to avoid unowned dirs @php_files_statement@ @data_files_statement@ @test_files_statement@ Index: php-pear-PEAR-Command-Packaging.spec =================================================================== RCS file: /cvs/extras/rpms/php-pear-PEAR-Command-Packaging/F-11/php-pear-PEAR-Command-Packaging.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-PEAR-Command-Packaging.spec 8 Jul 2009 13:52:10 -0000 1.4 +++ php-pear-PEAR-Command-Packaging.spec 19 Jul 2009 12:42:47 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-PEAR-Command-Packaging Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create RPM spec files from PEAR modules Group: Development/System @@ -29,7 +29,7 @@ a later date. %prep %setup -q -c -mv package.xml %{pear_name}-%{version}/%{pear_name}.xml +mv package.xml %{pear_name}-%{version}/%{name}.xml cd %{pear_name}-%{version} %build @@ -38,7 +38,7 @@ cd %{pear_name}-%{version} %install cd %{pear_name}-%{version} rm -rf $RPM_BUILD_ROOT -%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml +%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{name}.xml # Patches for Fedora conventions pushd $RPM_BUILD_ROOT%{pear_phpdir}/PEAR/Command/ @@ -54,7 +54,7 @@ rm -f $RPM_BUILD_ROOT%{pear_docdir}/%{pe # Install XML package description mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} -install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean @@ -63,7 +63,7 @@ rm -rf $RPM_BUILD_ROOT %post %{__pear} install --nodeps --soft --force --register-only \ - %{pear_xmldir}/%{pear_name}.xml >/dev/null || : + %{pear_xmldir}/%{name}.xml >/dev/null || : %postun if [ $1 -eq 0 ] ; then @@ -74,12 +74,15 @@ fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/LICENSE -%{pear_xmldir}/%{pear_name}.xml +%{pear_xmldir}/%{name}.xml %{pear_datadir}/%{pear_name} %{pear_phpdir}/PEAR/Command/Packaging.* %changelog +* Sun Jul 19 2009 Remi Collet 0.2.0-2 +- change %%{pear-name}.xml to %%{name}.xml + * Sat Jun 27 2009 Tim Jackson 0.2.0-1 - Update to 0.2.0 From iarnell at fedoraproject.org Sun Jul 19 12:52:15 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Sun, 19 Jul 2009 12:52:15 +0000 (UTC) Subject: rpms/slashem/devel slashem.spec,1.1,1.2 Message-ID: <20090719125215.4885211C00D7@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/slashem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1796 Modified Files: slashem.spec Log Message: * Sun Jul 19 2009 Iain Arnell 0.0.8-0.4.E0F1 - require nethack-bitmap-fonts-core, not nethack anymore Index: slashem.spec =================================================================== RCS file: /cvs/pkgs/rpms/slashem/devel/slashem.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- slashem.spec 7 Jul 2009 07:45:25 -0000 1.1 +++ slashem.spec 19 Jul 2009 12:51:44 -0000 1.2 @@ -1,6 +1,6 @@ Name: slashem Version: 0.0.8 -Release: 0.3.E0F1%{?dist} +Release: 0.4.E0F1%{?dist} Summary: Super Lotsa Added Stuff Hack - Extended Magic Group: Amusements/Games @@ -18,8 +18,8 @@ BuildRequires: libXmu-devel, libXpm-dev BuildRequires: SDL-devel libGL-devel libpng-devel # to compress save files Requires: bzip2 -# for fonts (BZ #505613 requests that they be split out) -Requires: nethack +# for X11 core fonts +Requires: nethack-bitmap-fonts-core %global fa_var /var/games/%{name} %global fa_save /var/games/%{name}/save @@ -150,6 +150,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 19 2009 Iain Arnell 0.0.8-0.4.E0F1 +- require nethack-bitmap-fonts-core, not nethack anymore + * Mon Jul 06 2009 Iain Arnell 0.0.8-0.3.E0F1 - don't install fonts - require nethack instead From iarnell at fedoraproject.org Sun Jul 19 13:08:35 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Sun, 19 Jul 2009 13:08:35 +0000 (UTC) Subject: rpms/perl-Config-JFDI/F-11 .cvsignore, 1.2, 1.3 perl-Config-JFDI.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090719130835.11F1911C00D7@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Config-JFDI/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6097 Modified Files: .cvsignore perl-Config-JFDI.spec sources Log Message: * Thu Jun 25 2009 Iain Arnell 0.063-1 - update to latest upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-JFDI/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 4 May 2009 05:31:11 -0000 1.2 +++ .cvsignore 19 Jul 2009 13:08:04 -0000 1.3 @@ -1 +1 @@ -Config-JFDI-0.05.tar.gz +Config-JFDI-0.063.tar.gz Index: perl-Config-JFDI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-JFDI/F-11/perl-Config-JFDI.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Config-JFDI.spec 4 May 2009 05:31:11 -0000 1.1 +++ perl-Config-JFDI.spec 19 Jul 2009 13:08:04 -0000 1.2 @@ -1,5 +1,5 @@ Name: perl-Config-JFDI -Version: 0.05 +Version: 0.063 Release: 1%{?dist} Summary: Just * Do it: A Catalyst::Plugin::ConfigLoader-style layer over Config::Any License: GPL+ or Artistic @@ -8,14 +8,15 @@ URL: http://search.cpan.org/d Source0: http://www.cpan.org/authors/id/R/RK/RKRIMEN/Config-JFDI-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: perl(Carp::Clan) +BuildRequires: perl(Carp::Clan::Share) BuildRequires: perl(Clone) BuildRequires: perl(Config::Any) -BuildRequires: perl(Data::Visitor) +BuildRequires: perl(Data::Visitor) >= 0.24 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Hash::Merge::Simple) BuildRequires: perl(List::MoreUtils) BuildRequires: perl(Moose) +BuildRequires: perl(MooseX::AttributeHelpers) BuildRequires: perl(Path::Class) BuildRequires: perl(Sub::Install) BuildRequires: perl(Test::More) @@ -30,7 +31,7 @@ exists outside of Catalyst. %setup -q -n Config-JFDI-%{version} %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +PERL5_CPANPLUS_IS_RUNNING=1 %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install @@ -56,6 +57,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jun 25 2009 Iain Arnell 0.063-1 +- update to latest upstream + +* Mon Jun 01 2009 Iain Arnell 0.062-1 +- update to latest upstream + * Fri May 01 2009 Iain Arnell 0.05-1 - Specfile autogenerated by cpanspec 1.77. - Remove explicit requires Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-JFDI/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 4 May 2009 05:31:11 -0000 1.2 +++ sources 19 Jul 2009 13:08:04 -0000 1.3 @@ -1 +1 @@ -f7c3f07e7628947666358b361dd78c76 Config-JFDI-0.05.tar.gz +908f2a01cae3a882340501d3f008a741 Config-JFDI-0.063.tar.gz From xavierb at fedoraproject.org Sun Jul 19 14:40:48 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Sun, 19 Jul 2009 14:40:48 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/F-11 openchrome-0.2.903-XO-1.5-panel.patch, NONE, 1.1 openchrome-0.2.903-remove_loader_symbol_lists.patch, NONE, 1.1 openchrome-vt1625.patch, NONE, 1.1 openchrome-0.2.903-latest_snapshot.patch, 1.7, 1.8 xorg-x11-drv-openchrome.spec, 1.44, 1.45 openchrome-0.2.903-fix_cursor_on_secondary.patch, 1.1, NONE openchrome-0.2.903-pll_rework.patch, 1.1, NONE openchrome-0.2.903-vx855_support.patch, 1.1, NONE Message-ID: <20090719144048.3ABEF11C00D7@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30545 Modified Files: openchrome-0.2.903-latest_snapshot.patch xorg-x11-drv-openchrome.spec Added Files: openchrome-0.2.903-XO-1.5-panel.patch openchrome-0.2.903-remove_loader_symbol_lists.patch openchrome-vt1625.patch Removed Files: openchrome-0.2.903-fix_cursor_on_secondary.patch openchrome-0.2.903-pll_rework.patch openchrome-0.2.903-vx855_support.patch Log Message: Sync with devel branch openchrome-0.2.903-XO-1.5-panel.patch: via_bios.h | 1 + via_mode.h | 4 ++++ via_panel.c | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) --- NEW FILE openchrome-0.2.903-XO-1.5-panel.patch --- Index: src/via_panel.c =================================================================== --- src/via_panel.c (revision 758) +++ src/via_panel.c (working copy) @@ -54,7 +54,8 @@ static ViaPanelModeRec ViaPanelNativeModes[] = { {1920, 1200}, {1024, 600}, {1440, 900}, - {1280, 720} + {1280, 720}, + {1200, 900} }; static int Index: src/via_mode.h =================================================================== --- src/via_mode.h (revision 758) +++ src/via_mode.h (working copy) @@ -70,6 +70,7 @@ static struct ViaDotClock { { 49500, 0xC353, /* 0xa48c04 */ { 3, 3, 5, 138 } }, { 50000, 0xC354, /* 0x368c00 */ { 1, 3, 2, 56 } }, { 56300, 0x4F76, /* 0x3d8c00 */ { 1, 3, 2, 63 } }, + { 57275, 0x4E70, /* 0x3e8c00 */ { 1, 3, 6, 299 } }, { 57284, 0x4E70, /* 0x3e8c00 */ { 1, 3, 2, 64 } }, { 64995, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, { 65000, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, /* Slightly unstable on PM800 */ @@ -135,6 +136,7 @@ static DisplayModeRec ViaPanelModes[] = { { MODEPREFIX("1152x864"), 81613, 1152, 1216, 1336, 1520, 0, 864, 864, 867, 895, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x768"), 81135, 1280, 1328, 1440, 1688, 0, 768, 770, 776, 802, 0, V_PHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x720"), 74600, 1280, 1341, 1474, 1688, 0, 720, 721, 724, 746, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX }, + { MODEPREFIX("1200x900"), 57200, 1200, 1206, 1214, 1240, 0, 900, 905, 907, 912, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x960"), 108280, 1280, 1376, 1488, 1800, 0, 960, 960, 963, 1000, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x1024"), 108280, 1280, 1328, 1440, 1688, 0, 1024, 1024, 1027, 1066, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1360x768"), 85500, 1360, 1392, 1712, 1744, 0, 768, 783, 791, 807, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, @@ -168,6 +170,7 @@ static DisplayModeRec ViaPanelModes[] = { #define VIA_RES_1280X720 19 #define VIA_RES_1920X1080 20 #define VIA_RES_1366X768 22 +#define VIA_RES_1200X900 23 #define VIA_RES_INVALID 0xFF /* @@ -199,6 +202,7 @@ static struct { {VIA_RES_856X480, VIA_PANEL_INVALID, 856, 480}, {VIA_RES_1024X576, VIA_PANEL_INVALID, 1024, 576}, {VIA_RES_800X480, VIA_PANEL8X4, 800, 480}, + {VIA_RES_1200X900, VIA_PANEL12X9, 1200, 900}, {VIA_RES_INVALID, VIA_PANEL_INVALID, 0, 0} }; Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -42,6 +42,7 @@ #define VIA_PANEL10X6 13 #define VIA_PANEL14X9 14 #define VIA_PANEL1280X720 15 +#define VIA_PANEL12X9 16 #define VIA_PANEL_INVALID 255 #define TVTYPE_NONE 0x00 openchrome-0.2.903-remove_loader_symbol_lists.patch: via_driver.c | 210 ----------------------------------------------------------- 1 file changed, 210 deletions(-) --- NEW FILE openchrome-0.2.903-remove_loader_symbol_lists.patch --- Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 753) +++ src/via_driver.c (working copy) @@ -259,184 +259,7 @@ }; -static const char *vgaHWSymbols[] = { - "vgaHWGetHWRec", - "vgaHWSetMmioFuncs", - "vgaHWSetStdFuncs", - "vgaHWGetIOBase", - "vgaHWSave", - "vgaHWProtect", - "vgaHWRestore", - "vgaHWMapMem", - "vgaHWUnmapMem", - "vgaHWInit", - "vgaHWSaveScreen", - "vgaHWLock", - "vgaHWUnlock", - "vgaHWFreeHWRec", - "vgaHWGetIndex", /* Through VGAHWPTR() */ - NULL -}; - -static const char *ramdacSymbols[] = { - "xf86InitCursor", - "xf86CreateCursorInfoRec", - "xf86DestroyCursorInfoRec", - NULL -}; - -static const char *vbeSymbols[] = { - "vbeDoEDID", - "VBEDPMSSet", - "VBEExtendedInit", - "vbeFree", - "VBEGetVBEInfo", - "VBEGetVBEMode", - "VBEGetModePool", - "VBEInit", - "VBEPrintModes", - "VBESaveRestore", - "VBESetDisplayStart", - "VBESetGetLogicalScanlineLength", - "VBESetLogicalScanline", - "VBESetModeNames", - "VBESetModeParameters", - "VBESetVBEMode", - "VBEValidateModes", - "xf86ExecX86int10", - "xf86Int10AllocPages", - "xf86Int10FreePages", - NULL -}; - -static const char *ddcSymbols[] = { - "xf86PrintEDID", - "xf86DoEDID_DDC2", - "xf86SetDDCproperties", - NULL -}; - -static const char *i2cSymbols[] = { - "xf86CreateI2CBusRec", - "xf86I2CBusInit", - "xf86CreateI2CDevRec", - "xf86I2CDevInit", - "xf86I2CWriteRead", - "xf86I2CProbeAddress", - "xf86DestroyI2CDevRec", - "xf86I2CReadByte", - "xf86I2CWriteByte", - NULL -}; - -static const char *xaaSymbols[] = { -#ifdef X_HAVE_XAAGETROP - "XAAGetCopyROP", - "XAAGetCopyROP_PM", - "XAAGetPatternROP", -#else - "XAACopyROP", - "XAACopyROP_PM", - "XAAPatternROP", -#endif - "XAACreateInfoRec", - "XAADestroyInfoRec", - "XAAInit", - "XAAFillSolidRects", - NULL -}; - -static const char *exaSymbols[] = { - "exaGetVersion", - "exaDriverInit", - "exaDriverFini", - "exaOffscreenAlloc", - "exaOffscreenFree", - "exaGetPixmapPitch", - "exaGetPixmapOffset", - "exaWaitSync", - "exaDriverAlloc", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - -#ifdef USE_FB -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; -#else -static const char *cfbSymbols[] = { - "cfbScreenInit", - "cfb16ScreenInit", - "cfb24ScreenInit", - "cfb24_32ScreenInit", - "cfb32ScreenInit", - "cfb16BresS", - "cfb24BresS", - NULL -}; -#endif - #ifdef XFree86LOADER -#ifdef XF86DRI -static const char *drmSymbols[] = { - "drmAddBufs", - "drmAddMap", - "drmAgpAcquire", - "drmAgpAlloc", - "drmAgpBase", - "drmAgpBind", - "drmAgpDeviceId", - "drmAgpEnable", - "drmAgpFree", - "drmAgpGetMode", - "drmAgpRelease", - "drmAgpVendorId", - "drmCtlInstHandler", - "drmCtlUninstHandler", - "drmCommandNone", - "drmCommandWrite", - "drmCommandWriteRead", - "drmFreeVersion", - "drmGetInterruptFromBusID", - "drmGetLibVersion", - "drmGetVersion", - "drmMap", - "drmMapBufs", - "drmUnmap", - "drmUnmapBufs", - "drmAgpUnbind", - "drmRmMap", - "drmCreateContext", - "drmAuthMagic", - "drmDestroyContext", - "drmSetContextFlags", - NULL -}; - -static const char *driSymbols[] = { - "DRICloseScreen", - "DRICreateInfoRec", - "DRIDestroyInfoRec", - "DRIFinishScreenInit", - "DRIGetSAREAPrivate", - "DRILock", - "DRIQueryVersion", - "DRIScreenInit", - "DRIUnlock", - "DRIOpenConnection", - "DRICloseConnection", - "GlxSetVisualConfigs", - NULL -}; -#endif - static MODULESETUPPROTO(VIASetup); static XF86ModuleVersionInfo VIAVersRec = { @@ -472,24 +295,6 @@ 0 #endif ); - LoaderRefSymLists(vgaHWSymbols, -#ifdef USE_FB - fbSymbols, -#else - cfbSymbols, -#endif - ramdacSymbols, - xaaSymbols, - exaSymbols, - shadowSymbols, - vbeSymbols, - i2cSymbols, - ddcSymbols, -#ifdef XF86DRI - drmSymbols, - driSymbols, -#endif - NULL); return (pointer) 1; } else { @@ -826,7 +631,6 @@ vbeInfoPtr pVbe; if (xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVbe = VBEInit(NULL, index); ConfiguredMonitor = vbeDoEDID(pVbe, NULL); vbeFree(pVbe); @@ -931,7 +735,6 @@ #ifndef USE_FB char *mod = NULL; - const char *reqSym = NULL; #endif vgaHWPtr hwp; int i, bMemSize = 0; @@ -952,7 +755,6 @@ if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(vgaHWSymbols, NULL); if (!vgaHWGetHWRec(pScrn)) return FALSE; @@ -1624,7 +1426,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(i2cSymbols, NULL); ViaI2CInit(pScrn); } @@ -1632,7 +1433,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(ddcSymbols, NULL); if (pVia->pI2CBus1) { pVia->DDC1 = xf86DoEDID_DDC2(pScrn->scrnIndex, pVia->pI2CBus1); @@ -1674,7 +1474,6 @@ /* VBE doesn't properly initialise int10 itself. */ if (xf86LoadSubModule(pScrn, "int10") && xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVia->pVbe = VBEExtendedInit(NULL, pVia->EntityIndex, SET_BIOS_SCRATCH | RESTORE_BIOS_SCRATCH); @@ -1773,22 +1572,18 @@ return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); #else /* Load bpp-specific modules. */ switch (pScrn->bitsPerPixel) { case 8: mod = "cfb"; - reqSym = "cfbScreenInit"; break; case 16: mod = "cfb16"; - reqSym = "cfb16ScreenInit"; break; case 32: mod = "cfb32"; - reqSym = "cfb32ScreenInit"; break; } @@ -1797,7 +1592,6 @@ return FALSE; } - xf86LoaderReqSymbols(reqSym, NULL); #endif if (!pVia->NoAccel) { @@ -1814,13 +1608,11 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(exaSymbols, NULL); } if (!xf86LoadSubModule(pScrn, "xaa")) { VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(xaaSymbols, NULL); } if (pVia->hwcursor) { @@ -1828,7 +1620,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ramdacSymbols, NULL); } if (pVia->shadowFB) { @@ -1836,7 +1627,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); } VIAUnmapMem(pScrn); openchrome-vt1625.patch: via_bios.h | 8 +++++++ via_crtc.c | 3 +- via_display.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ via_driver.c | 32 ++++++++++++++++++++++++++++++ via_mode.c | 13 ++++++++++++ via_vt162x.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++-- via_vt162x.h | 38 ++++++++++++++++++------------------ 7 files changed, 189 insertions(+), 22 deletions(-) --- NEW FILE openchrome-vt1625.patch --- Index: src/via_mode.c =================================================================== --- src/via_mode.c (revision 758) +++ src/via_mode.c (working copy) @@ -250,6 +250,10 @@ ViaTVSetMode(ScrnInfoPtr pScrn, DisplayModePtr mod if (pBIOSInfo->TVModeCrtc) pBIOSInfo->TVModeCrtc(pScrn, mode); + + /* TV reset. */ + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x00); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x80); } void @@ -491,6 +495,8 @@ ViaOutputsSelect(ScrnInfoPtr pScrn) pBIOSInfo->CrtPresent = TRUE; pBIOSInfo->CrtActive = TRUE; } + if (pBIOSInfo->TVActive) + pBIOSInfo->FirstCRTC->IsActive = TRUE ; } if (!pVia->UseLegacyModeSwitch) { if (pBIOSInfo->CrtActive) @@ -1693,6 +1699,13 @@ ViaModeSet(ScrnInfoPtr pScrn, DisplayModePtr mode) ViaDisplaySetStreamOnDFP(pScrn, TRUE); ViaDFPPower(pScrn, TRUE); } + + if (pBIOSInfo->TVActive) { + /* TV on FirstCrtc */ + ViaDisplaySetStreamOnDVO(pScrn, pBIOSInfo->TVDIPort, TRUE); + ViaDisplayEnableDVO(pScrn, pBIOSInfo->TVDIPort); + ViaTVSetMode(pScrn, mode); + } ViaModeFirstCRTC(pScrn, mode); } else { Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 758) +++ src/via_driver.c (working copy) @@ -211,6 +211,7 @@ typedef enum OPTION_TVDOTCRAWL, OPTION_TVTYPE, OPTION_TVOUTPUT, + OPTION_TVDIPORT, OPTION_DISABLEVQ, OPTION_DISABLEIRQ, OPTION_TVDEFLICKER, @@ -249,6 +250,7 @@ static OptionInfoRec VIAOptions[] = { {OPTION_TVDEFLICKER, "TVDeflicker", OPTV_INTEGER, {0}, FALSE}, {OPTION_TVTYPE, "TVType", OPTV_ANYSTR, {0}, FALSE}, {OPTION_TVOUTPUT, "TVOutput", OPTV_ANYSTR, {0}, FALSE}, + {OPTION_TVDIPORT, "TVPort", OPTV_ANYSTR, {0}, FALSE}, {OPTION_DISABLEVQ, "DisableVQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_DISABLEIRQ, "DisableIRQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_AGP_DMA, "EnableAGPDMA", OPTV_BOOLEAN, {0}, FALSE}, @@ -840,6 +842,7 @@ static Bool VIASetupDefaultOptions(ScrnInfoPtr pScrn) { VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIASetupDefaultOptions\n")); @@ -890,6 +893,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) pVia->agpEnable = FALSE; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_P4M900: pVia->VideoEngine = VIDEO_ENGINE_CME; @@ -898,17 +902,20 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* FIXME: this needs to be tested */ pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_CX700: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->swov.maxWInterp = 1920; pVia->swov.maxHInterp = 1080; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_P4M890: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_VX800: case VIA_VX855: @@ -916,6 +923,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* pVia->agpEnable = FALSE; pVia->dmaXV = FALSE;*/ pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; } @@ -1540,6 +1548,30 @@ VIAPreInit(ScrnInfoPtr pScrn, int flags) "No default TV output signal type is set.\n"); } + /* TV DI Port */ + if ((s = xf86GetOptValString(VIAOptions, OPTION_TVDIPORT))) { + if (!xf86NameCmp(s, "DVP0")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP0.\n"); + } else if (!xf86NameCmp(s, "DVP1")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP1.\n"); + } else if (!xf86NameCmp(s, "DFPHigh")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPHIGH; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPHigh.\n"); + } else if (!xf86NameCmp(s, "DFPLow")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPLOW; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPLow.\n"); + } + } else { + xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT, + "No default TV output port is set.\n"); + } + VIAVidHWDiffInit(pScrn); /* maybe throw in some more sanity checks here */ Index: src/via_crtc.c =================================================================== --- src/via_crtc.c (revision 758) +++ src/via_crtc.c (working copy) @@ -304,7 +304,8 @@ ViaFirstCRTCSetMode(ScrnInfoPtr pScrn, DisplayMode temp += 0x03; temp &= ~0x03; } - hwp->writeSeq(hwp, 0x1C, (temp >> 1) & 0xFF); + + hwp->writeSeq(hwp, 0x1C, ((temp >> 1)+1) & 0xFF); ViaSeqMask(hwp, 0x1D, temp >> 9, 0x03); switch (pVia->ChipId) { Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -98,6 +98,13 @@ #define VIA_DI_12BIT 0x00 #define VIA_DI_24BIT 0x01 +/* Digital Port */ +#define VIA_DI_PORT_NONE 0x0 +#define VIA_DI_PORT_DVP0 0x1 +#define VIA_DI_PORT_DVP1 0x2 +#define VIA_DI_PORT_DFPLOW 0x4 +#define VIA_DI_PORT_DFPHIGH 0x8 + typedef struct ViaPanelMode { int Width ; int Height ; @@ -187,6 +194,7 @@ typedef struct _VIABIOSINFO { int TVDeflicker; CARD8 TVRegs[0xFF]; int TVNumRegs; + int TVDIPort; /* TV Callbacks */ void (*TVSave) (ScrnInfoPtr pScrn); Index: src/via_display.c =================================================================== --- src/via_display.c (revision 758) +++ src/via_display.c (working copy) @@ -111,6 +111,38 @@ ViaDisplayDisableCRT(ScrnInfoPtr pScrn) ViaCrtcMask(hwp, 0x36, 0x30, 0x30); } +void +ViaDisplayEnableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0xC0, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x30, 0x30); + break; + } +} + +void +ViaDisplayDisableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0x00, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x00, 0x30); + break; + } +} + /* * Sets the primary or secondary display stream on CRT. */ @@ -143,3 +175,32 @@ ViaDisplaySetStreamOnDFP(ScrnInfoPtr pScrn, Bool p ViaCrtcMask(hwp, 0x99, 0x10, 0x10); } +void +ViaDisplaySetStreamOnDVO(ScrnInfoPtr pScrn, int port, Bool primary) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + int regNum; + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplaySetStreamOnDVO\n")); + + switch (port) { + case VIA_DI_PORT_DVP0: + regNum = 0x96; + break; + case VIA_DI_PORT_DVP1: + regNum = 0x9B; + break; + case VIA_DI_PORT_DFPLOW: + regNum = 0x97; + break; + case VIA_DI_PORT_DFPHIGH: + regNum = 0x99; + break; + } + + if (primary) + ViaCrtcMask(hwp, regNum, 0x00, 0x10); + else + ViaCrtcMask(hwp, regNum, 0x10, 0x10); +} + Index: src/via_vt162x.c =================================================================== --- src/via_vt162x.c (revision 758) +++ src/via_vt162x.c (working copy) @@ -32,7 +32,41 @@ #include "via_vt162x.h" #include "via_id.h" +static void +ViaSetTVClockSource(ScrnInfoPtr pScrn) +{ + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaSetTVClockSource\n")); + VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; + vgaHWPtr hwp = VGAHWPTR(pScrn); + + /* External TV: */ + switch(pVia->Chipset) { + case VIA_CX700: + case VIA_VX800: + if (pBIOSInfo->FirstCRTC->IsActive) { + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0xB0, 0xF0); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x90, 0xF0); + } else { + /* IGA2 */ + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0x0B, 0x0F); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x09, 0x0F); + } + break; + default: + if (pBIOSInfo->FirstCRTC->IsActive) + ViaCrtcMask(hwp, 0x6C, 0x21, 0x21); + else + ViaCrtcMask(hwp, 0x6C, 0xA1, 0xA1); + break; + } +} + static void VT162xPrintRegs(ScrnInfoPtr pScrn) { @@ -650,11 +684,30 @@ VT1622ModeI2C(ScrnInfoPtr pScrn, DisplayModePtr mo xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2B, Table.RGB[4]); if (Table.RGB[5]) xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2C, Table.RGB[5]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } else { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + } + } } else if (pBIOSInfo->TVOutput == TVOUTPUT_YCBCR) { xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x03); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x65, Table.YCbCr[0]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x66, Table.YCbCr[1]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x67, Table.YCbCr[2]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } + } } /* Configure flicker filter. */ @@ -721,8 +774,7 @@ VT1622ModeCrtc(ScrnInfoPtr pScrn, DisplayModePtr m } pBIOSInfo->ClockExternal = TRUE; ViaCrtcMask(hwp, 0x6A, 0x40, 0x40); - ViaCrtcMask(hwp, 0x6C, 0x01, 0x01); - ViaSeqMask(hwp, 0x1E, 0xF0, 0xF0); /* enable DI0/DVP0 */ + ViaSetTVClockSource(pScrn); } Index: src/via_vt162x.h =================================================================== --- src/via_vt162x.h (revision 758) +++ src/via_vt162x.h (working copy) @@ -755,19 +755,19 @@ static DisplayModeRec VT1625Modes[] = { { MODEPREFIX("1024x768Over"), ... , MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), ... , MODESUFFIXPAL },*/ /* clock HR SH1 SH2 HFL VR SV1 SV2 VFL*/ - { MODEPREFIX("640x480"), 30000, 640, 680, 808, 1000, 0, 480, 520, 523, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("640x480"), 30000, 640, 688, 744, 784, 0, 480, 488, 495, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, { MODEPREFIX("800x600"), 34500, 800, 816, 880, 920, 0, 600, 604, 620, 750, 0, V_PHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1024x768"), 57000, 1024, 1040, 1112, 1200, 0, 768, 829, 840, 950, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, - { MODEPREFIX("720x576"), 34500, 720, 766, 800, 1000, 0, 576, 576, 579, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("720x576"), 34500, 720, 760, 800, 1000, 0, 576, 577, 580, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), 27000, 720, 768, 800, 864, 0, 576, 577, 579, 625, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1280x720"), 74250, 1280, 1320, 1376, 1650, 0, 720, 722, 728, 750, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX720P }, - { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2016, 2200, 0, 1080, 1082, 1088, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, + { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2064, 2200, 0, 1080, 1083, 1087, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, { MODEPREFIX("640x480"), 24696, 640, 656, 744, 784, 0, 480, 482, 483, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 34000, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Fit"), 28980, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Over"), 27025, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Over"), 27025, 720, 752, 792, 800, 0, 480, 482, 485, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 28224, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, @@ -828,13 +828,13 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_NTSC, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x33, 0x1C, 0x06, 0x7B, 0x15, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x43, 0x80, 0, 0x10, - 0x1C, 0x08, 0xDC, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, + { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x02, 0x10, 0x00, 0x7B, 0x15, 0x50, 0x57, 0, 0xB7, + 0, 0x80, 0xAD, 0x21, 0x64, 0x34, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x00, 0x80, 0, 0x10, + 0x1C, 0x08, 0xE5, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ - { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, + { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x1F, 0xD2, 0x23, 0x0C, 0x22, 0x59, 0xC0, 0x7E, 0x23, 0x8C, /* 5A 5F 60 64 */ - 0xD2, 0xE1, 0x7D, 0x06, 0, 0, 0x80, 0x28, 0xFF, 0x59, 0x03 }, + 0xD0, 0xF6, 0x7C, 0x06, 0, 0x34, 0x80, 0x28, 0xFF, 0x1F, 0x03 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x37, 0x5C, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -876,8 +876,8 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_480P, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x33, 0x20, 0xFF, 0x7B, 0, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x43, 0x80, 0, 0x01, + { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x01, 0x20, 0, 0x7B, 0, 0x50, 0x57, 0, 0x9E, + 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x00, 0x80, 0, 0x01, 0x2F, 0x08, 0xDC, 0x7E, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, @@ -909,15 +909,15 @@ VT1625Table[] = { 0x0, 0x0, }, - { "1920x1080", 1920, 540, TVTYPE_1080I, 0, 0, + { "1920x1080", 1920, 1080, TVTYPE_1080I, 0, 0, /* 00 0F */ - { 0x83, 0, 0x10, 0x4A, 0x86, 0x39, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, - 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x44, 0x80, 0x00, 0x03, + { 0x83, 0, 0x10, 0x4A, 0x86, 0x32, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, + 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x04, 0x80, 0x00, 0x03, 0x25, 0x00, 0x00, 0x7E, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x00, 0x97, 0x7F, 0x78, 0x64, 0x14, 0x97, 0x7f, 0x59, 0x78, 0xb0, /* 5A 5F 60 64 */ - 0x1a, 0xec, 0xfa, 0x08, 0x00, 0x00, 0x80, 0x20, 0xFF, 0x97, 0x28 }, + 0x1a, 0xdc, 0x5d, 0x08, 0x00, 0x00, 0x80, 0x28, 0xFF, 0x97, 0x28 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x39, 0x66, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -945,9 +945,9 @@ VT1625Table[] = { { "720x576", 720, 576, TVTYPE_PAL, 0, 0, /* 00 0F */ - { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, - 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x01, 0x80, 0x00, 0x10, - 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 + { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x10, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, + 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x00, 0x80, 0x00, 0x10, + 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 }, /* 4A 4F 50 59 */ { 0xc5, 0x0f, 0x00, 0x01, 0x00, 0x4b, 0xe7, 0xd2, 0x23, 0xb1, 0x22, 0x5f, 0x61, 0x7f, 0x23, 0x90, openchrome-0.2.903-latest_snapshot.patch: ChangeLog | 320 +++++++++++ configure.ac | 27 libxvmc/Makefile.am | 8 libxvmc/viaLowLevel.c | 4 libxvmc/viaLowLevelPro.c | 6 libxvmc/viaXvMC.c | 62 +- src/Makefile.am | 6 src/via.h | 22 src/via_accel.c | 505 ++++++++++-------- src/via_bandwidth.c | 34 + src/via_bios.h | 112 +++- src/via_crtc.c | 664 ++++++++++++++++++++++++ src/via_cursor.c | 580 +++++++++++++++++---- src/via_dga.c | 4 src/via_display.c | 145 +++++ src/via_dri.c | 11 src/via_driver.c | 672 +++++++++++++++--------- src/via_driver.h | 68 +- src/via_id.c | 17 src/via_id.h | 4 src/via_lvds.c | 117 ++++ src/via_memory.c | 8 src/via_mode.c | 1277 +++++++++++++++++------------------------------ src/via_mode.h | 125 ++-- src/via_panel.c | 461 ++++++++++++++++ src/via_priv.h | 4 src/via_regs.h | 79 ++ src/via_swov.c | 88 ++- src/via_timing.c | 398 ++++++++++++++ src/via_timing.h | 51 + src/via_vbe.c | 6 src/via_video.c | 61 -- src/via_vt162x.h | 17 src/via_xvmc.c | 23 34 files changed, 4383 insertions(+), 1603 deletions(-) View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.7 -r 1.8 openchrome-0.2.903-latest_snapshot.patchIndex: openchrome-0.2.903-latest_snapshot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-11/openchrome-0.2.903-latest_snapshot.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- openchrome-0.2.903-latest_snapshot.patch 18 Jun 2009 23:43:53 -0000 1.7 +++ openchrome-0.2.903-latest_snapshot.patch 19 Jul 2009 14:40:46 -0000 1.8 @@ -1,7 +1,7 @@ Index: configure.ac =================================================================== ---- configure.ac (.../tags/release_0_2_903) (revision 751) -+++ configure.ac (.../trunk) (revision 751) +--- configure.ac (.../tags/release_0_2_903) (revision 758) ++++ configure.ac (.../trunk) (revision 758) @@ -70,7 +70,7 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) @@ -63,8 +63,8 @@ Index: configure.ac AC_SUBST([DRIVER_MAN_SUFFIX]) Index: libxvmc/Makefile.am =================================================================== ---- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/Makefile.am (.../trunk) (revision 751) +--- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/Makefile.am (.../trunk) (revision 758) @@ -24,13 +24,13 @@ xf86dristr.h \ vldXvMC.h @@ -85,8 +85,8 @@ Index: libxvmc/Makefile.am driDrawable.c \ Index: libxvmc/viaLowLevel.c =================================================================== ---- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevel.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevel.c (.../trunk) (revision 758) @@ -276,8 +276,8 @@ xl->tsMem.context = *(xl->drmcontext); xl->tsMem.size = 64; @@ -100,8 +100,8 @@ Index: libxvmc/viaLowLevel.c return -1; Index: libxvmc/viaLowLevelPro.c =================================================================== ---- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 758) @@ -1460,13 +1460,13 @@ if (size != mem->size) { @@ -129,8 +129,8 @@ Index: libxvmc/viaLowLevelPro.c Index: libxvmc/viaXvMC.c =================================================================== ---- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaXvMC.c (.../trunk) (revision 751) +--- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaXvMC.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ return errType; } @@ -407,8 +407,8 @@ Index: libxvmc/viaXvMC.c Index: ChangeLog =================================================================== ---- ChangeLog (.../tags/release_0_2_903) (revision 751) -+++ ChangeLog (.../trunk) (revision 751) +--- ChangeLog (.../tags/release_0_2_903) (revision 758) ++++ ChangeLog (.../trunk) (revision 758) @@ -1,3 +1,323 @@ +2009-03-21 Xavier Bachelot + @@ -736,7 +736,7 @@ Index: ChangeLog Index: src/via_panel.c =================================================================== --- src/via_panel.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_panel.c (.../trunk) (revision 751) ++++ src/via_panel.c (.../trunk) (revision 758) @@ -0,0 +1,461 @@ +/* + * Copyright 2007 The Openchrome Project [openchrome.org] @@ -1201,28 +1201,30 @@ Index: src/via_panel.c +} Index: src/via_id.h =================================================================== ---- src/via_id.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.h (.../trunk) (revision 751) -@@ -37,6 +37,7 @@ +--- src/via_id.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.h (.../trunk) (revision 758) +@@ -37,6 +37,8 @@ VIA_P4M900, VIA_CX700, VIA_P4M890, + VIA_VX800, ++ VIA_VX855, VIA_LAST }; -@@ -52,6 +53,7 @@ +@@ -52,6 +54,8 @@ #define PCI_CHIP_VT3364 0x3371 /* P4M900 */ #define PCI_CHIP_VT3324 0x3157 /* CX700 */ #define PCI_CHIP_VT3327 0x3343 /* P4M890 */ +#define PCI_CHIP_VT3353 0x1122 /* VX800 */ ++#define PCI_CHIP_VT3409 0x5122 /* VX855/VX875 */ /* There is some conflicting information about the two major revisions of * the CLE266, often labelled Ax and Cx. The dividing line seems to be Index: src/via_video.c =================================================================== ---- src/via_video.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_video.c (.../trunk) (revision 751) +--- src/via_video.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_video.c (.../trunk) (revision 758) @@ -112,11 +112,7 @@ static int viaSetPortAttribute(ScrnInfoPtr, Atom, INT32, pointer); static int viaPutImage(ScrnInfoPtr, short, short, short, short, short, short, @@ -1236,9 +1238,11 @@ Index: src/via_video.c static void nv12Blit(unsigned char *nv12Chroma, const unsigned char *uBuffer, const unsigned char *vBuffer, -@@ -282,7 +278,8 @@ +@@ -281,8 +277,10 @@ + pVia->ChipId != PCI_CHIP_VT3314 && pVia->ChipId != PCI_CHIP_VT3327 && pVia->ChipId != PCI_CHIP_VT3336 && ++ pVia->ChipId != PCI_CHIP_VT3409 && pVia->ChipId != PCI_CHIP_VT3364 && - pVia->ChipId != PCI_CHIP_VT3324) { + pVia->ChipId != PCI_CHIP_VT3324 && @@ -1246,7 +1250,7 @@ Index: src/via_video.c CARD32 bandwidth = (mode->HDisplay >> 4) * (mode->VDisplay >> 5) * pScrn->bitsPerPixel * mode->VRefresh; -@@ -370,14 +367,14 @@ +@@ -370,14 +368,14 @@ if (pVia->pVbe) { refresh = 100; @@ -1265,7 +1269,7 @@ Index: src/via_video.c if ((width == 1400) && (height == 1050)) { width = 1280; height = 1024; -@@ -476,6 +473,10 @@ +@@ -476,6 +474,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1276,7 +1280,7 @@ Index: src/via_video.c pVia->dwV1 = ((vmmtr) viaVidEng)->video1_ctl; pVia->dwV3 = ((vmmtr) viaVidEng)->video3_ctl; -@@ -490,6 +491,10 @@ +@@ -490,6 +492,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1287,7 +1291,7 @@ Index: src/via_video.c viaVidEng->video1_ctl = pVia->dwV1; viaVidEng->video3_ctl = pVia->dwV3; -@@ -568,6 +573,7 @@ +@@ -568,6 +574,7 @@ (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1295,7 +1299,7 @@ Index: src/via_video.c (pVia->Chipset == VIA_P4M890)); if ((pVia->drmVerMajor < 2) || ((pVia->drmVerMajor == 2) && (pVia->drmVerMinor < 9))) -@@ -586,7 +592,7 @@ +@@ -586,13 +593,14 @@ (pVia->Chipset == VIA_K8M800) || (pVia->Chipset == VIA_PM800) || (pVia->Chipset == VIA_VM800) || (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1304,7 +1308,14 @@ Index: src/via_video.c num_new = viaSetupAdaptors(pScreen, &newAdaptors); num_adaptors = xf86XVListGenericAdaptors(pScrn, &adaptors); } else { -@@ -650,8 +656,6 @@ + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, + "[Xv] Unsupported Chipset. X video functionality disabled.\n"); + num_adaptors = 0; ++ memset(viaAdaptPtr, 0, sizeof(viaAdaptPtr)); + } + + DBG_DD(ErrorF(" via_video.c : num_adaptors : %d\n", num_adaptors)); +@@ -650,8 +658,6 @@ return TRUE; } @@ -1313,7 +1324,7 @@ Index: src/via_video.c static void viaVideoFillPixmap(ScrnInfoPtr pScrn, char *base, -@@ -662,7 +666,7 @@ +@@ -662,7 +668,7 @@ { [...2537 lines suppressed...] return vx->PutImage(pScrn, src_x, src_y, drw_x, drw_y, src_w, src_h, drw_w, drw_h, id, buf, width, height, sync, clipBoxes, @@ -7330,8 +7849,8 @@ Index: src/via_xvmc.c unsigned long Index: src/via_dri.c =================================================================== ---- src/via_dri.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dri.c (.../trunk) (revision 751) +--- src/via_dri.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dri.c (.../trunk) (revision 758) @@ -588,7 +588,16 @@ pDRIInfo = pVia->pDRIInfo; @@ -7352,8 +7871,8 @@ Index: src/via_dri.c #ifdef XSERVER_LIBPCIACCESS Index: src/via_vt162x.h =================================================================== ---- src/via_vt162x.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_vt162x.h (.../trunk) (revision 751) +--- src/via_vt162x.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_vt162x.h (.../trunk) (revision 758) @@ -926,6 +926,23 @@ 0x0, 0x0, }, @@ -7380,9 +7899,22 @@ Index: src/via_vt162x.h { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, Index: src/via.h =================================================================== ---- src/via.h (.../tags/release_0_2_903) (revision 751) -+++ src/via.h (.../trunk) (revision 751) -@@ -561,9 +561,6 @@ +--- src/via.h (.../tags/release_0_2_903) (revision 758) ++++ src/via.h (.../trunk) (revision 758) +@@ -327,6 +327,12 @@ + #define VIDEO_FIFO_PRETHRESHOLD_VT3336 250 + #define VIDEO_EXPIRE_NUM_VT3336 31 + ++/* Those values are only valid for IGA1 */ ++#define VIDEO_FIFO_DEPTH_VT3409 400 ++#define VIDEO_FIFO_THRESHOLD_VT3409 320 ++#define VIDEO_FIFO_PRETHRESHOLD_VT3409 230 ++#define VIDEO_EXPIRE_NUM_VT3409 160 ++ + /* ALPHA_V3_FIFO_CONTROL 0x278 + * IA2 has 32 level FIFO for packet mode video format + * 32 level FIFO for planar mode video YV12. with extension reg 230 bit 21 enable +@@ -561,9 +567,6 @@ #define HQV_V_FILTER_DEFAULT 0x00420000 #define HQV_H_FILTER_DEFAULT 0x00000040 @@ -7392,7 +7924,7 @@ Index: src/via.h /* HQV_MINI_CONTROL 0x3E8 */ #define HQV_H_MINIFY_ENABLE 0x00000800 #define HQV_H_MINIFY_DOWN 0x00001000 -@@ -572,6 +569,19 @@ +@@ -572,6 +575,19 @@ #define HQV_VDEBLOCK_FILTER 0x80000000 #define HQV_HDEBLOCK_FILTER 0x00008000 @@ -7414,8 +7946,8 @@ Index: src/via.h #define CHROMA_KEY_HIGH 0x00FFFFFF Index: src/via_priv.h =================================================================== ---- src/via_priv.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_priv.h (.../trunk) (revision 751) +--- src/via_priv.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_priv.h (.../trunk) (revision 758) @@ -29,9 +29,7 @@ #ifdef XF86DRI #include "via_drm.h" @@ -7439,7 +7971,7 @@ Index: src/via_priv.h Index: src/via_timing.c =================================================================== --- src/via_timing.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.c (.../trunk) (revision 751) ++++ src/via_timing.c (.../trunk) (revision 758) @@ -0,0 +1,398 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. @@ -7841,8 +8373,8 @@ Index: src/via_timing.c +} Index: src/Makefile.am =================================================================== ---- src/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ src/Makefile.am (.../trunk) (revision 751) +--- src/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ src/Makefile.am (.../trunk) (revision 758) @@ -43,23 +43,29 @@ via_ch7xxx.c \ via_ch7xxx.h \ @@ -7875,8 +8407,8 @@ Index: src/Makefile.am via_vgahw.h \ Index: src/via_dga.c =================================================================== ---- src/via_dga.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dga.c (.../trunk) (revision 751) +--- src/via_dga.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dga.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ pScrn->SwitchMode(index, pScrn->currentMode, 0); @@ -7897,9 +8429,9 @@ Index: src/via_dga.c pVia->DGAOldDisplayWidth = pScrn->displayWidth; Index: src/via_id.c =================================================================== ---- src/via_id.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.c (.../trunk) (revision 751) -@@ -87,6 +87,7 @@ +--- src/via_id.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.c (.../trunk) (revision 758) +@@ -87,10 +87,12 @@ {"Asustek K8V-MX", VIA_K8M800, 0x1043, 0x8129, VIA_DEVICE_CRT}, {"Mitac 8399", VIA_K8M800, 0x1071, 0x8399, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, /* aka "Pogolinux Konabook 3100" */ {"Mitac 8889", VIA_K8M800, 0x1071, 0x8889, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, @@ -7907,7 +8439,12 @@ Index: src/via_id.c {"VIA VT3108 (K8M800)", VIA_K8M800, 0x1106, 0x3108, VIA_DEVICE_CRT}, /* borrowed by Asustek A8V-MX */ {"Shuttle FX21", VIA_K8M800, 0x1297, 0x3052, VIA_DEVICE_CRT}, {"Shuttle FX83", VIA_K8M800, 0x1297, 0xF683, VIA_DEVICE_CRT | VIA_DEVICE_TV}, -@@ -113,6 +114,7 @@ + {"Sharp Actius AL27", VIA_K8M800, 0x13BD, 0x1044, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, ++ {"Sharp PC-AE30J", VIA_K8M800, 0x13BD, 0x104B, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Giga-byte GA-K8VM800M", VIA_K8M800, 0x1458, 0xD000, VIA_DEVICE_CRT}, + {"MSI K8M Neo-V", VIA_K8M800, 0x1462, 0x0320, VIA_DEVICE_CRT}, + {"MSI K8MM-V", VIA_K8M800, 0x1462, 0x7142, VIA_DEVICE_CRT}, +@@ -113,6 +115,7 @@ {"Packard Bell Imedia 2097", VIA_K8M800, 0x1631, 0xD007, VIA_DEVICE_CRT}, {"Fujitsu-Siemens Amilo K7610", VIA_K8M800, 0x1734, 0x10B3, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"ASRock K8Upgrade-VM800", VIA_K8M800, 0x1849, 0x3108, VIA_DEVICE_CRT}, @@ -7915,7 +8452,7 @@ Index: src/via_id.c /*** PM800, PM880, PN800, CN400 ***/ {"VIA VT3118 (PM800)", VIA_PM800, 0x1106, 0x3118, VIA_DEVICE_CRT}, /* borrowed by ECS PM800-M2 */ -@@ -138,6 +140,7 @@ +@@ -138,6 +141,7 @@ {"PCChips V21G", VIA_VM800, 0x1019, 0xAA51, VIA_DEVICE_CRT}, {"Asustek P5VDC-MX", VIA_VM800, 0x1043, 0x3344, VIA_DEVICE_CRT}, {"Asustek P5VDC-TVM", VIA_VM800, 0x1043, 0x81CE, VIA_DEVICE_CRT}, @@ -7923,7 +8460,7 @@ Index: src/via_id.c {"Gateway MX3210", VIA_VM800, 0x107B, 0x0216, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"VIA VT3344 (VM800) - EPIA EN", VIA_VM800, 0x1106, 0x3344, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"Gigabyte GA-8VM800M-775", VIA_VM800, 0x1458, 0xD000, VIA_DEVICE_CRT}, -@@ -145,6 +148,7 @@ +@@ -145,6 +149,7 @@ {"MSI Fuzzy CN700/CN700T/CN700G", VIA_VM800, 0x1462, 0x7199, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"MSI PM8M3-V", VIA_VM800, 0x1462, 0x7211, VIA_DEVICE_CRT}, {"MSI PM8PM", VIA_VM800, 0x1462, 0x7222, VIA_DEVICE_CRT}, @@ -7931,7 +8468,7 @@ Index: src/via_id.c {"RoverBook Partner W500", VIA_VM800, 0x1509, 0x4330, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo/RoverBook Voyager V511L", VIA_VM800, 0x1558, 0x0662, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M5xxS", VIA_VM800, 0x1558, 0x5406, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -158,6 +162,7 @@ +@@ -158,6 +163,7 @@ {"Asustek P5V800-MX", VIA_VM800, 0x3344, 0x1122, VIA_DEVICE_CRT}, /*** K8M890 ***/ @@ -7939,7 +8476,7 @@ Index: src/via_id.c {"Asustek A8V-VM", VIA_K8M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek M2V-MX SE", VIA_K8M890, 0x1043, 0x8297, VIA_DEVICE_CRT}, {"Foxconn K8M890M2MA-RS2H", VIA_K8M890, 0x105B, 0x0C84, VIA_DEVICE_CRT}, -@@ -179,6 +184,7 @@ +@@ -179,6 +185,7 @@ {"Gigabyte GA-VM900M", VIA_P4M900, 0x1458, 0xD000, VIA_DEVICE_CRT}, {"MSI VR321", VIA_P4M900, 0x1462, 0x3355, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"MSI P4M900M / P4M900M2-F/L", VIA_P4M900, 0x1462, 0x7255, VIA_DEVICE_CRT}, @@ -7947,7 +8484,7 @@ Index: src/via_id.c {"Everex NC1501/NC1503", VIA_P4M900, 0x1509, 0x1E30, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SE", VIA_P4M900, 0x1558, 0x0664, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SR", VIA_P4M900, 0x1558, 0x0669, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -196,6 +202,7 @@ +@@ -196,6 +203,7 @@ {"Samsung Q1B", VIA_CX700, 0x144D, 0xC02C, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"FIC CE260", VIA_CX700, 0x1509, 0x2D30, VIA_DEVICE_LCD}, {"FIC CE261", VIA_CX700, 0x1509, 0x2F07, VIA_DEVICE_LCD}, @@ -7955,7 +8492,7 @@ Index: src/via_id.c {"Packard Bell EasyNote XS", VIA_CX700, 0x1631, 0xC201, VIA_DEVICE_LCD}, /* aka Everex Cloudbook CE1200V */ /*** P4M890, VN890 ***/ -@@ -204,11 +211,17 @@ +@@ -204,11 +212,20 @@ {"Asustek P5V-VM ULTRA", VIA_P4M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek P5V-VM DH", VIA_P4M890, 0x1043, 0x81CE, VIA_DEVICE_CRT}, {"Mitac 8615", VIA_P4M890, 0x1071, 0x8615, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, @@ -7970,13 +8507,16 @@ Index: src/via_id.c + {"Samsung NC20", VIA_VX800, 0x144d, 0xc04e, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Quanta DreamBook Light IL1", VIA_VX800, 0x152d, 0x0771, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + ++ /*** VX855 ***/ ++ {"VIA VT8562C", VIA_VX855, 0x1106, 0x5122, VIA_DEVICE_CRT}, ++ /* keep this */ {NULL, VIA_UNKNOWN, 0x0000, 0x0000, VIA_DEVICE_NONE} }; Index: src/via_timing.h =================================================================== --- src/via_timing.h (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.h (.../trunk) (revision 751) ++++ src/via_timing.h (.../trunk) (revision 758) @@ -0,0 +1,51 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-11/xorg-x11-drv-openchrome.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xorg-x11-drv-openchrome.spec 19 Jun 2009 00:04:45 -0000 1.44 +++ xorg-x11-drv-openchrome.spec 19 Jul 2009 14:40:46 -0000 1.45 @@ -10,7 +10,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 11%{?dist} +Release: 12%{?dist} URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -25,10 +25,15 @@ Patch99: openchrome-0.2.903-late # Fedora specific patches : #Patch100: openchrome-0.2.903-disable_hwcursor.patch # Experimental patches (branch backport, etc...): -Patch200: openchrome-0.2.903-vx855_support.patch -Patch201: openchrome-0.2.903-pll_rework.patch -Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch +#Patch200: openchrome-0.2.903-vx855_support.patch +#Patch201: openchrome-0.2.903-pll_rework.patch +#Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch Patch203: openchrome-0.2.903-disable_TMDS_by_default.patch +#Patch204: openchrome-switch-on-lvds-pads-only-for-active-channels.patch +Patch205: openchrome-0.2.903-XO-1.5-panel.patch +Patch206: openchrome-0.2.903-remove_loader_symbol_lists.patch +#Patch207: openchrome-0.2.903-fix_null_pointer_deref_in_viaExaCheckComposite.patch +Patch208: openchrome-vt1625.patch ExclusiveArch: %{ix86} x86_64 @@ -69,10 +74,10 @@ X.Org X11 openchrome video driver XvMC d %prep %setup -q -n %{tarball}-%{version} %patch99 -p0 -b .latest -%patch200 -p0 -%patch201 -p0 -%patch202 -p0 -%patch203 -p0 +%patch203 -p0 -b .tmds +%patch205 -p0 -b .XO_1.5_panel +%patch206 -p0 -b .loader_symbol +%patch208 -p0 -b .vt1625 %build @@ -130,6 +135,16 @@ fi %changelog +* Mon Jul 18 2009 Xavier Bachelot - 0.2.903-12 +- Update to latest snapshot (svn 758) : + - Basic VX855 support. + - Fix pci space corruption on P4M900 (RHBZ#506622). + - Fix null pointer dereference in viaExaCheckComposite (RHBZ#449034). +- Add patch to allow 1200x900 panel (X0-1.5). +- Add patch to remove loader symbol lists, needed for xserver 1.7 (RHBZ#510206). +- Add experimental patch for better VT1625 support. +- Drop upstreamed patches. + * Thu Jun 18 2009 Xavier Bachelot - 0.2.903-11 - Update to latest snapshot (svn 751) : - Add support for VX800 integrated TMDS encoder. --- openchrome-0.2.903-fix_cursor_on_secondary.patch DELETED --- --- openchrome-0.2.903-pll_rework.patch DELETED --- --- openchrome-0.2.903-vx855_support.patch DELETED --- From xavierb at fedoraproject.org Sun Jul 19 14:41:13 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Sun, 19 Jul 2009 14:41:13 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/F-10 openchrome-0.2.903-XO-1.5-panel.patch, NONE, 1.1 openchrome-0.2.903-remove_loader_symbol_lists.patch, NONE, 1.1 openchrome-vt1625.patch, NONE, 1.1 openchrome-0.2.903-latest_snapshot.patch, 1.5, 1.6 xorg-x11-drv-openchrome.spec, 1.38, 1.39 openchrome-0.2.903-fix_cursor_on_secondary.patch, 1.1, NONE openchrome-0.2.903-pll_rework.patch, 1.1, NONE openchrome-0.2.903-vx855_support.patch, 1.1, NONE Message-ID: <20090719144113.D2C3D11C00D7@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30695 Modified Files: openchrome-0.2.903-latest_snapshot.patch xorg-x11-drv-openchrome.spec Added Files: openchrome-0.2.903-XO-1.5-panel.patch openchrome-0.2.903-remove_loader_symbol_lists.patch openchrome-vt1625.patch Removed Files: openchrome-0.2.903-fix_cursor_on_secondary.patch openchrome-0.2.903-pll_rework.patch openchrome-0.2.903-vx855_support.patch Log Message: Sync with devel branch openchrome-0.2.903-XO-1.5-panel.patch: via_bios.h | 1 + via_mode.h | 4 ++++ via_panel.c | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) --- NEW FILE openchrome-0.2.903-XO-1.5-panel.patch --- Index: src/via_panel.c =================================================================== --- src/via_panel.c (revision 758) +++ src/via_panel.c (working copy) @@ -54,7 +54,8 @@ static ViaPanelModeRec ViaPanelNativeModes[] = { {1920, 1200}, {1024, 600}, {1440, 900}, - {1280, 720} + {1280, 720}, + {1200, 900} }; static int Index: src/via_mode.h =================================================================== --- src/via_mode.h (revision 758) +++ src/via_mode.h (working copy) @@ -70,6 +70,7 @@ static struct ViaDotClock { { 49500, 0xC353, /* 0xa48c04 */ { 3, 3, 5, 138 } }, { 50000, 0xC354, /* 0x368c00 */ { 1, 3, 2, 56 } }, { 56300, 0x4F76, /* 0x3d8c00 */ { 1, 3, 2, 63 } }, + { 57275, 0x4E70, /* 0x3e8c00 */ { 1, 3, 6, 299 } }, { 57284, 0x4E70, /* 0x3e8c00 */ { 1, 3, 2, 64 } }, { 64995, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, { 65000, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, /* Slightly unstable on PM800 */ @@ -135,6 +136,7 @@ static DisplayModeRec ViaPanelModes[] = { { MODEPREFIX("1152x864"), 81613, 1152, 1216, 1336, 1520, 0, 864, 864, 867, 895, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x768"), 81135, 1280, 1328, 1440, 1688, 0, 768, 770, 776, 802, 0, V_PHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x720"), 74600, 1280, 1341, 1474, 1688, 0, 720, 721, 724, 746, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX }, + { MODEPREFIX("1200x900"), 57200, 1200, 1206, 1214, 1240, 0, 900, 905, 907, 912, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x960"), 108280, 1280, 1376, 1488, 1800, 0, 960, 960, 963, 1000, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x1024"), 108280, 1280, 1328, 1440, 1688, 0, 1024, 1024, 1027, 1066, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1360x768"), 85500, 1360, 1392, 1712, 1744, 0, 768, 783, 791, 807, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, @@ -168,6 +170,7 @@ static DisplayModeRec ViaPanelModes[] = { #define VIA_RES_1280X720 19 #define VIA_RES_1920X1080 20 #define VIA_RES_1366X768 22 +#define VIA_RES_1200X900 23 #define VIA_RES_INVALID 0xFF /* @@ -199,6 +202,7 @@ static struct { {VIA_RES_856X480, VIA_PANEL_INVALID, 856, 480}, {VIA_RES_1024X576, VIA_PANEL_INVALID, 1024, 576}, {VIA_RES_800X480, VIA_PANEL8X4, 800, 480}, + {VIA_RES_1200X900, VIA_PANEL12X9, 1200, 900}, {VIA_RES_INVALID, VIA_PANEL_INVALID, 0, 0} }; Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -42,6 +42,7 @@ #define VIA_PANEL10X6 13 #define VIA_PANEL14X9 14 #define VIA_PANEL1280X720 15 +#define VIA_PANEL12X9 16 #define VIA_PANEL_INVALID 255 #define TVTYPE_NONE 0x00 openchrome-0.2.903-remove_loader_symbol_lists.patch: via_driver.c | 210 ----------------------------------------------------------- 1 file changed, 210 deletions(-) --- NEW FILE openchrome-0.2.903-remove_loader_symbol_lists.patch --- Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 753) +++ src/via_driver.c (working copy) @@ -259,184 +259,7 @@ }; -static const char *vgaHWSymbols[] = { - "vgaHWGetHWRec", - "vgaHWSetMmioFuncs", - "vgaHWSetStdFuncs", - "vgaHWGetIOBase", - "vgaHWSave", - "vgaHWProtect", - "vgaHWRestore", - "vgaHWMapMem", - "vgaHWUnmapMem", - "vgaHWInit", - "vgaHWSaveScreen", - "vgaHWLock", - "vgaHWUnlock", - "vgaHWFreeHWRec", - "vgaHWGetIndex", /* Through VGAHWPTR() */ - NULL -}; - -static const char *ramdacSymbols[] = { - "xf86InitCursor", - "xf86CreateCursorInfoRec", - "xf86DestroyCursorInfoRec", - NULL -}; - -static const char *vbeSymbols[] = { - "vbeDoEDID", - "VBEDPMSSet", - "VBEExtendedInit", - "vbeFree", - "VBEGetVBEInfo", - "VBEGetVBEMode", - "VBEGetModePool", - "VBEInit", - "VBEPrintModes", - "VBESaveRestore", - "VBESetDisplayStart", - "VBESetGetLogicalScanlineLength", - "VBESetLogicalScanline", - "VBESetModeNames", - "VBESetModeParameters", - "VBESetVBEMode", - "VBEValidateModes", - "xf86ExecX86int10", - "xf86Int10AllocPages", - "xf86Int10FreePages", - NULL -}; - -static const char *ddcSymbols[] = { - "xf86PrintEDID", - "xf86DoEDID_DDC2", - "xf86SetDDCproperties", - NULL -}; - -static const char *i2cSymbols[] = { - "xf86CreateI2CBusRec", - "xf86I2CBusInit", - "xf86CreateI2CDevRec", - "xf86I2CDevInit", - "xf86I2CWriteRead", - "xf86I2CProbeAddress", - "xf86DestroyI2CDevRec", - "xf86I2CReadByte", - "xf86I2CWriteByte", - NULL -}; - -static const char *xaaSymbols[] = { -#ifdef X_HAVE_XAAGETROP - "XAAGetCopyROP", - "XAAGetCopyROP_PM", - "XAAGetPatternROP", -#else - "XAACopyROP", - "XAACopyROP_PM", - "XAAPatternROP", -#endif - "XAACreateInfoRec", - "XAADestroyInfoRec", - "XAAInit", - "XAAFillSolidRects", - NULL -}; - -static const char *exaSymbols[] = { - "exaGetVersion", - "exaDriverInit", - "exaDriverFini", - "exaOffscreenAlloc", - "exaOffscreenFree", - "exaGetPixmapPitch", - "exaGetPixmapOffset", - "exaWaitSync", - "exaDriverAlloc", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - -#ifdef USE_FB -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; -#else -static const char *cfbSymbols[] = { - "cfbScreenInit", - "cfb16ScreenInit", - "cfb24ScreenInit", - "cfb24_32ScreenInit", - "cfb32ScreenInit", - "cfb16BresS", - "cfb24BresS", - NULL -}; -#endif - #ifdef XFree86LOADER -#ifdef XF86DRI -static const char *drmSymbols[] = { - "drmAddBufs", - "drmAddMap", - "drmAgpAcquire", - "drmAgpAlloc", - "drmAgpBase", - "drmAgpBind", - "drmAgpDeviceId", - "drmAgpEnable", - "drmAgpFree", - "drmAgpGetMode", - "drmAgpRelease", - "drmAgpVendorId", - "drmCtlInstHandler", - "drmCtlUninstHandler", - "drmCommandNone", - "drmCommandWrite", - "drmCommandWriteRead", - "drmFreeVersion", - "drmGetInterruptFromBusID", - "drmGetLibVersion", - "drmGetVersion", - "drmMap", - "drmMapBufs", - "drmUnmap", - "drmUnmapBufs", - "drmAgpUnbind", - "drmRmMap", - "drmCreateContext", - "drmAuthMagic", - "drmDestroyContext", - "drmSetContextFlags", - NULL -}; - -static const char *driSymbols[] = { - "DRICloseScreen", - "DRICreateInfoRec", - "DRIDestroyInfoRec", - "DRIFinishScreenInit", - "DRIGetSAREAPrivate", - "DRILock", - "DRIQueryVersion", - "DRIScreenInit", - "DRIUnlock", - "DRIOpenConnection", - "DRICloseConnection", - "GlxSetVisualConfigs", - NULL -}; -#endif - static MODULESETUPPROTO(VIASetup); static XF86ModuleVersionInfo VIAVersRec = { @@ -472,24 +295,6 @@ 0 #endif ); - LoaderRefSymLists(vgaHWSymbols, -#ifdef USE_FB - fbSymbols, -#else - cfbSymbols, -#endif - ramdacSymbols, - xaaSymbols, - exaSymbols, - shadowSymbols, - vbeSymbols, - i2cSymbols, - ddcSymbols, -#ifdef XF86DRI - drmSymbols, - driSymbols, -#endif - NULL); return (pointer) 1; } else { @@ -826,7 +631,6 @@ vbeInfoPtr pVbe; if (xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVbe = VBEInit(NULL, index); ConfiguredMonitor = vbeDoEDID(pVbe, NULL); vbeFree(pVbe); @@ -931,7 +735,6 @@ #ifndef USE_FB char *mod = NULL; - const char *reqSym = NULL; #endif vgaHWPtr hwp; int i, bMemSize = 0; @@ -952,7 +755,6 @@ if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(vgaHWSymbols, NULL); if (!vgaHWGetHWRec(pScrn)) return FALSE; @@ -1624,7 +1426,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(i2cSymbols, NULL); ViaI2CInit(pScrn); } @@ -1632,7 +1433,6 @@ VIAFreeRec(pScrn); return FALSE; } else { - xf86LoaderReqSymLists(ddcSymbols, NULL); if (pVia->pI2CBus1) { pVia->DDC1 = xf86DoEDID_DDC2(pScrn->scrnIndex, pVia->pI2CBus1); @@ -1674,7 +1474,6 @@ /* VBE doesn't properly initialise int10 itself. */ if (xf86LoadSubModule(pScrn, "int10") && xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols, NULL); pVia->pVbe = VBEExtendedInit(NULL, pVia->EntityIndex, SET_BIOS_SCRATCH | RESTORE_BIOS_SCRATCH); @@ -1773,22 +1572,18 @@ return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); #else /* Load bpp-specific modules. */ switch (pScrn->bitsPerPixel) { case 8: mod = "cfb"; - reqSym = "cfbScreenInit"; break; case 16: mod = "cfb16"; - reqSym = "cfb16ScreenInit"; break; case 32: mod = "cfb32"; - reqSym = "cfb32ScreenInit"; break; } @@ -1797,7 +1592,6 @@ return FALSE; } - xf86LoaderReqSymbols(reqSym, NULL); #endif if (!pVia->NoAccel) { @@ -1814,13 +1608,11 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(exaSymbols, NULL); } if (!xf86LoadSubModule(pScrn, "xaa")) { VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(xaaSymbols, NULL); } if (pVia->hwcursor) { @@ -1828,7 +1620,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ramdacSymbols, NULL); } if (pVia->shadowFB) { @@ -1836,7 +1627,6 @@ VIAFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); } VIAUnmapMem(pScrn); openchrome-vt1625.patch: via_bios.h | 8 +++++++ via_crtc.c | 3 +- via_display.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ via_driver.c | 32 ++++++++++++++++++++++++++++++ via_mode.c | 13 ++++++++++++ via_vt162x.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++-- via_vt162x.h | 38 ++++++++++++++++++------------------ 7 files changed, 189 insertions(+), 22 deletions(-) --- NEW FILE openchrome-vt1625.patch --- Index: src/via_mode.c =================================================================== --- src/via_mode.c (revision 758) +++ src/via_mode.c (working copy) @@ -250,6 +250,10 @@ ViaTVSetMode(ScrnInfoPtr pScrn, DisplayModePtr mod if (pBIOSInfo->TVModeCrtc) pBIOSInfo->TVModeCrtc(pScrn, mode); + + /* TV reset. */ + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x00); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x1D, 0x80); } void @@ -491,6 +495,8 @@ ViaOutputsSelect(ScrnInfoPtr pScrn) pBIOSInfo->CrtPresent = TRUE; pBIOSInfo->CrtActive = TRUE; } + if (pBIOSInfo->TVActive) + pBIOSInfo->FirstCRTC->IsActive = TRUE ; } if (!pVia->UseLegacyModeSwitch) { if (pBIOSInfo->CrtActive) @@ -1693,6 +1699,13 @@ ViaModeSet(ScrnInfoPtr pScrn, DisplayModePtr mode) ViaDisplaySetStreamOnDFP(pScrn, TRUE); ViaDFPPower(pScrn, TRUE); } + + if (pBIOSInfo->TVActive) { + /* TV on FirstCrtc */ + ViaDisplaySetStreamOnDVO(pScrn, pBIOSInfo->TVDIPort, TRUE); + ViaDisplayEnableDVO(pScrn, pBIOSInfo->TVDIPort); + ViaTVSetMode(pScrn, mode); + } ViaModeFirstCRTC(pScrn, mode); } else { Index: src/via_driver.c =================================================================== --- src/via_driver.c (revision 758) +++ src/via_driver.c (working copy) @@ -211,6 +211,7 @@ typedef enum OPTION_TVDOTCRAWL, OPTION_TVTYPE, OPTION_TVOUTPUT, + OPTION_TVDIPORT, OPTION_DISABLEVQ, OPTION_DISABLEIRQ, OPTION_TVDEFLICKER, @@ -249,6 +250,7 @@ static OptionInfoRec VIAOptions[] = { {OPTION_TVDEFLICKER, "TVDeflicker", OPTV_INTEGER, {0}, FALSE}, {OPTION_TVTYPE, "TVType", OPTV_ANYSTR, {0}, FALSE}, {OPTION_TVOUTPUT, "TVOutput", OPTV_ANYSTR, {0}, FALSE}, + {OPTION_TVDIPORT, "TVPort", OPTV_ANYSTR, {0}, FALSE}, {OPTION_DISABLEVQ, "DisableVQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_DISABLEIRQ, "DisableIRQ", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_AGP_DMA, "EnableAGPDMA", OPTV_BOOLEAN, {0}, FALSE}, @@ -840,6 +842,7 @@ static Bool VIASetupDefaultOptions(ScrnInfoPtr pScrn) { VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIASetupDefaultOptions\n")); @@ -890,6 +893,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) pVia->agpEnable = FALSE; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_P4M900: pVia->VideoEngine = VIDEO_ENGINE_CME; @@ -898,17 +902,20 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* FIXME: this needs to be tested */ pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; break; case VIA_CX700: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->swov.maxWInterp = 1920; pVia->swov.maxHInterp = 1080; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_P4M890: pVia->VideoEngine = VIDEO_ENGINE_CME; pVia->dmaXV = FALSE; pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; case VIA_VX800: case VIA_VX855: @@ -916,6 +923,7 @@ VIASetupDefaultOptions(ScrnInfoPtr pScrn) /* pVia->agpEnable = FALSE; pVia->dmaXV = FALSE;*/ pVia->UseLegacyModeSwitch = FALSE; + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; break; } @@ -1540,6 +1548,30 @@ VIAPreInit(ScrnInfoPtr pScrn, int flags) "No default TV output signal type is set.\n"); } + /* TV DI Port */ + if ((s = xf86GetOptValString(VIAOptions, OPTION_TVDIPORT))) { + if (!xf86NameCmp(s, "DVP0")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP0; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP0.\n"); + } else if (!xf86NameCmp(s, "DVP1")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DVP1; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DVP1.\n"); + } else if (!xf86NameCmp(s, "DFPHigh")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPHIGH; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPHigh.\n"); + } else if (!xf86NameCmp(s, "DFPLow")) { + pBIOSInfo->TVDIPort = VIA_DI_PORT_DFPLOW; + xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, + "TV Output Port is DFPLow.\n"); + } + } else { + xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT, + "No default TV output port is set.\n"); + } + VIAVidHWDiffInit(pScrn); /* maybe throw in some more sanity checks here */ Index: src/via_crtc.c =================================================================== --- src/via_crtc.c (revision 758) +++ src/via_crtc.c (working copy) @@ -304,7 +304,8 @@ ViaFirstCRTCSetMode(ScrnInfoPtr pScrn, DisplayMode temp += 0x03; temp &= ~0x03; } - hwp->writeSeq(hwp, 0x1C, (temp >> 1) & 0xFF); + + hwp->writeSeq(hwp, 0x1C, ((temp >> 1)+1) & 0xFF); ViaSeqMask(hwp, 0x1D, temp >> 9, 0x03); switch (pVia->ChipId) { Index: src/via_bios.h =================================================================== --- src/via_bios.h (revision 758) +++ src/via_bios.h (working copy) @@ -98,6 +98,13 @@ #define VIA_DI_12BIT 0x00 #define VIA_DI_24BIT 0x01 +/* Digital Port */ +#define VIA_DI_PORT_NONE 0x0 +#define VIA_DI_PORT_DVP0 0x1 +#define VIA_DI_PORT_DVP1 0x2 +#define VIA_DI_PORT_DFPLOW 0x4 +#define VIA_DI_PORT_DFPHIGH 0x8 + typedef struct ViaPanelMode { int Width ; int Height ; @@ -187,6 +194,7 @@ typedef struct _VIABIOSINFO { int TVDeflicker; CARD8 TVRegs[0xFF]; int TVNumRegs; + int TVDIPort; /* TV Callbacks */ void (*TVSave) (ScrnInfoPtr pScrn); Index: src/via_display.c =================================================================== --- src/via_display.c (revision 758) +++ src/via_display.c (working copy) @@ -111,6 +111,38 @@ ViaDisplayDisableCRT(ScrnInfoPtr pScrn) ViaCrtcMask(hwp, 0x36, 0x30, 0x30); } +void +ViaDisplayEnableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0xC0, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x30, 0x30); + break; + } +} + +void +ViaDisplayDisableDVO(ScrnInfoPtr pScrn, int port) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplayEnableDVO\n")); + switch (port) { + case VIA_DI_PORT_DVP0: + ViaSeqMask(hwp, 0x1E, 0x00, 0xC0); + break; + case VIA_DI_PORT_DVP1: + ViaSeqMask(hwp, 0x1E, 0x00, 0x30); + break; + } +} + /* * Sets the primary or secondary display stream on CRT. */ @@ -143,3 +175,32 @@ ViaDisplaySetStreamOnDFP(ScrnInfoPtr pScrn, Bool p ViaCrtcMask(hwp, 0x99, 0x10, 0x10); } +void +ViaDisplaySetStreamOnDVO(ScrnInfoPtr pScrn, int port, Bool primary) +{ + vgaHWPtr hwp = VGAHWPTR(pScrn); + int regNum; + + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaDisplaySetStreamOnDVO\n")); + + switch (port) { + case VIA_DI_PORT_DVP0: + regNum = 0x96; + break; + case VIA_DI_PORT_DVP1: + regNum = 0x9B; + break; + case VIA_DI_PORT_DFPLOW: + regNum = 0x97; + break; + case VIA_DI_PORT_DFPHIGH: + regNum = 0x99; + break; + } + + if (primary) + ViaCrtcMask(hwp, regNum, 0x00, 0x10); + else + ViaCrtcMask(hwp, regNum, 0x10, 0x10); +} + Index: src/via_vt162x.c =================================================================== --- src/via_vt162x.c (revision 758) +++ src/via_vt162x.c (working copy) @@ -32,7 +32,41 @@ #include "via_vt162x.h" #include "via_id.h" +static void +ViaSetTVClockSource(ScrnInfoPtr pScrn) +{ + DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaSetTVClockSource\n")); + VIAPtr pVia = VIAPTR(pScrn); + VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; + vgaHWPtr hwp = VGAHWPTR(pScrn); + + /* External TV: */ + switch(pVia->Chipset) { + case VIA_CX700: + case VIA_VX800: + if (pBIOSInfo->FirstCRTC->IsActive) { + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0xB0, 0xF0); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x90, 0xF0); + } else { + /* IGA2 */ + if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP1) + ViaCrtcMask(hwp, 0x6C, 0x0B, 0x0F); + else if(pBIOSInfo->TVDIPort == VIA_DI_PORT_DVP0) + ViaCrtcMask(hwp, 0x6C, 0x09, 0x0F); + } + break; + default: + if (pBIOSInfo->FirstCRTC->IsActive) + ViaCrtcMask(hwp, 0x6C, 0x21, 0x21); + else + ViaCrtcMask(hwp, 0x6C, 0xA1, 0xA1); + break; + } +} + static void VT162xPrintRegs(ScrnInfoPtr pScrn) { @@ -650,11 +684,30 @@ VT1622ModeI2C(ScrnInfoPtr pScrn, DisplayModePtr mo xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2B, Table.RGB[4]); if (Table.RGB[5]) xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x2C, Table.RGB[5]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } else { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x12); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4A, 0x85); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4B, 0x0A); + } + } } else if (pBIOSInfo->TVOutput == TVOUTPUT_YCBCR) { xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x02, 0x03); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x65, Table.YCbCr[0]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x66, Table.YCbCr[1]); xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x67, Table.YCbCr[2]); + if (pBIOSInfo->TVEncoder == VIA_VT1625) { + if (pBIOSInfo->TVType < TVTYPE_480P) { + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x23, 0x7E); + xf86I2CWriteByte(pBIOSInfo->TVI2CDev, 0x4E, 0x00); + } + } } /* Configure flicker filter. */ @@ -721,8 +774,7 @@ VT1622ModeCrtc(ScrnInfoPtr pScrn, DisplayModePtr m } pBIOSInfo->ClockExternal = TRUE; ViaCrtcMask(hwp, 0x6A, 0x40, 0x40); - ViaCrtcMask(hwp, 0x6C, 0x01, 0x01); - ViaSeqMask(hwp, 0x1E, 0xF0, 0xF0); /* enable DI0/DVP0 */ + ViaSetTVClockSource(pScrn); } Index: src/via_vt162x.h =================================================================== --- src/via_vt162x.h (revision 758) +++ src/via_vt162x.h (working copy) @@ -755,19 +755,19 @@ static DisplayModeRec VT1625Modes[] = { { MODEPREFIX("1024x768Over"), ... , MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), ... , MODESUFFIXPAL },*/ /* clock HR SH1 SH2 HFL VR SV1 SV2 VFL*/ - { MODEPREFIX("640x480"), 30000, 640, 680, 808, 1000, 0, 480, 520, 523, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("640x480"), 30000, 640, 688, 744, 784, 0, 480, 488, 495, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, { MODEPREFIX("800x600"), 34500, 800, 816, 880, 920, 0, 600, 604, 620, 750, 0, V_PHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1024x768"), 57000, 1024, 1040, 1112, 1200, 0, 768, 829, 840, 950, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXPAL }, - { MODEPREFIX("720x576"), 34500, 720, 766, 800, 1000, 0, 576, 576, 579, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, + { MODEPREFIX("720x576"), 34500, 720, 760, 800, 1000, 0, 576, 577, 580, 690, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("720x576Over"), 27000, 720, 768, 800, 864, 0, 576, 577, 579, 625, 0, V_NHSYNC | V_PVSYNC, MODESUFFIXPAL }, { MODEPREFIX("1280x720"), 74250, 1280, 1320, 1376, 1650, 0, 720, 722, 728, 750, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX720P }, - { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2016, 2200, 0, 1080, 1082, 1088, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, + { MODEPREFIX("1920x1080"), 74250, 1920, 1960, 2064, 2200, 0, 1080, 1083, 1087, 1125, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX1080I }, { MODEPREFIX("640x480"), 24696, 640, 656, 744, 784, 0, 480, 482, 483, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 34000, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Fit"), 28980, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, - { MODEPREFIX("720x480Over"), 27025, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, + { MODEPREFIX("720x480Over"), 27025, 720, 752, 792, 800, 0, 480, 482, 485, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIXNTSC }, { MODEPREFIX("720x480Under"), 28224, 720, 728, 744, 784, 0, 480, 490, 496, 600, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, { MODEPREFIX("720x480Fit"), 28980, 720, 728, 776, 840, 0, 480, 484, 499, 575, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX480P }, @@ -828,13 +828,13 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_NTSC, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x33, 0x1C, 0x06, 0x7B, 0x15, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x43, 0x80, 0, 0x10, - 0x1C, 0x08, 0xDC, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, + { 0x03, 0, 0x10, 0x1F, 0x00, 0, 0, 0x02, 0x10, 0x00, 0x7B, 0x15, 0x50, 0x57, 0, 0xB7, + 0, 0x80, 0xAD, 0x21, 0x64, 0x34, 0xD6, 0x7B, 0xF0, 0x21, 0x00, 0x50, 0x00, 0x80, 0, 0x10, + 0x1C, 0x08, 0xE5, 0x77, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ - { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, + { 0xC5, 0x0F, 0, 0x01, 0x10, 0x4A, 0x1F, 0xD2, 0x23, 0x0C, 0x22, 0x59, 0xC0, 0x7E, 0x23, 0x8C, /* 5A 5F 60 64 */ - 0xD2, 0xE1, 0x7D, 0x06, 0, 0, 0x80, 0x28, 0xFF, 0x59, 0x03 }, + 0xD0, 0xF6, 0x7C, 0x06, 0, 0x34, 0x80, 0x28, 0xFF, 0x1F, 0x03 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x37, 0x5C, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -876,8 +876,8 @@ VT1625Table[] = { }, { "720x480Over", 720, 480, TVTYPE_480P, 0, 0, /* 00 0F */ - { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x33, 0x20, 0xFF, 0x7B, 0, 0x50, 0x57, 0, 0x9E, - 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x43, 0x80, 0, 0x01, + { 0x03, 0, 0x10, 0x40, 0x10, 0, 0, 0x01, 0x20, 0, 0x7B, 0, 0x50, 0x57, 0, 0x9E, + 0, 0x80, 0x04, 0x08, 0x08, 0x10, 0xD6, 0x7B, 0xF0, 0x21, 0x02, 0x50, 0x00, 0x80, 0, 0x01, 0x2F, 0x08, 0xDC, 0x7E, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x4A, 0x59, 0xCF, 0x23, 0x0C, 0x22, 0x59, 0xCF, 0x7F, 0x23, 0x91, @@ -909,15 +909,15 @@ VT1625Table[] = { 0x0, 0x0, }, - { "1920x1080", 1920, 540, TVTYPE_1080I, 0, 0, + { "1920x1080", 1920, 1080, TVTYPE_1080I, 0, 0, /* 00 0F */ - { 0x83, 0, 0x10, 0x4A, 0x86, 0x39, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, - 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x44, 0x80, 0x00, 0x03, + { 0x83, 0, 0x10, 0x4A, 0x86, 0x32, 0, 0x8B, 0x3D, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, + 0x00, 0x80, 0x4A, 0x08, 0x37, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x04, 0x80, 0x00, 0x03, 0x25, 0x00, 0x00, 0x7E, 0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 4A 4F 50 59 */ { 0xC5, 0x0F, 0, 0x01, 0, 0x00, 0x97, 0x7F, 0x78, 0x64, 0x14, 0x97, 0x7f, 0x59, 0x78, 0xb0, /* 5A 5F 60 64 */ - 0x1a, 0xec, 0xfa, 0x08, 0x00, 0x00, 0x80, 0x20, 0xFF, 0x97, 0x28 }, + 0x1a, 0xdc, 0x5d, 0x08, 0x00, 0x00, 0x80, 0x28, 0xFF, 0x97, 0x28 }, /* RBG 65,66,67,27,2b,2c */ { 0x55, 0x39, 0x66, 0, 0, 0 }, /* Y-Cb-Cr 65,66,67 */ @@ -945,9 +945,9 @@ VT1625Table[] = { { "720x576", 720, 576, TVTYPE_PAL, 0, 0, /* 00 0F */ - { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, - 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x01, 0x80, 0x00, 0x10, - 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 + { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x10, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, + 0x00, 0x80, 0x09, 0x08, 0x17, 0x24, 0xcb, 0x8a, 0x09, 0x2a, 0x06, 0x50, 0x00, 0x80, 0x00, 0x10, + 0x14, 0x0c, 0x32, 0x7e, 0x00, 0x5f, 0x34, 0x8c, 0x4f, 0x5e, 0x15, 0xa2, 0x22, 0x80, 0xd3, 0x10 }, /* 4A 4F 50 59 */ { 0xc5, 0x0f, 0x00, 0x01, 0x00, 0x4b, 0xe7, 0xd2, 0x23, 0xb1, 0x22, 0x5f, 0x61, 0x7f, 0x23, 0x90, openchrome-0.2.903-latest_snapshot.patch: ChangeLog | 320 +++++++++++ configure.ac | 27 libxvmc/Makefile.am | 8 libxvmc/viaLowLevel.c | 4 libxvmc/viaLowLevelPro.c | 6 libxvmc/viaXvMC.c | 62 +- src/Makefile.am | 6 src/via.h | 22 src/via_accel.c | 505 ++++++++++-------- src/via_bandwidth.c | 34 + src/via_bios.h | 112 +++- src/via_crtc.c | 664 ++++++++++++++++++++++++ src/via_cursor.c | 580 +++++++++++++++++---- src/via_dga.c | 4 src/via_display.c | 145 +++++ src/via_dri.c | 11 src/via_driver.c | 672 +++++++++++++++--------- src/via_driver.h | 68 +- src/via_id.c | 17 src/via_id.h | 4 src/via_lvds.c | 117 ++++ src/via_memory.c | 8 src/via_mode.c | 1277 +++++++++++++++++------------------------------ src/via_mode.h | 125 ++-- src/via_panel.c | 461 ++++++++++++++++ src/via_priv.h | 4 src/via_regs.h | 79 ++ src/via_swov.c | 88 ++- src/via_timing.c | 398 ++++++++++++++ src/via_timing.h | 51 + src/via_vbe.c | 6 src/via_video.c | 61 -- src/via_vt162x.h | 17 src/via_xvmc.c | 23 34 files changed, 4383 insertions(+), 1603 deletions(-) View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.5 -r 1.6 openchrome-0.2.903-latest_snapshot.patchIndex: openchrome-0.2.903-latest_snapshot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-10/openchrome-0.2.903-latest_snapshot.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openchrome-0.2.903-latest_snapshot.patch 18 Jun 2009 23:51:10 -0000 1.5 +++ openchrome-0.2.903-latest_snapshot.patch 19 Jul 2009 14:41:13 -0000 1.6 @@ -1,7 +1,7 @@ Index: configure.ac =================================================================== ---- configure.ac (.../tags/release_0_2_903) (revision 751) -+++ configure.ac (.../trunk) (revision 751) +--- configure.ac (.../tags/release_0_2_903) (revision 758) ++++ configure.ac (.../trunk) (revision 758) @@ -70,7 +70,7 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) @@ -63,8 +63,8 @@ Index: configure.ac AC_SUBST([DRIVER_MAN_SUFFIX]) Index: libxvmc/Makefile.am =================================================================== ---- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/Makefile.am (.../trunk) (revision 751) +--- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/Makefile.am (.../trunk) (revision 758) @@ -24,13 +24,13 @@ xf86dristr.h \ vldXvMC.h @@ -85,8 +85,8 @@ Index: libxvmc/Makefile.am driDrawable.c \ Index: libxvmc/viaLowLevel.c =================================================================== ---- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevel.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevel.c (.../trunk) (revision 758) @@ -276,8 +276,8 @@ xl->tsMem.context = *(xl->drmcontext); xl->tsMem.size = 64; @@ -100,8 +100,8 @@ Index: libxvmc/viaLowLevel.c return -1; Index: libxvmc/viaLowLevelPro.c =================================================================== ---- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 751) +--- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 758) @@ -1460,13 +1460,13 @@ if (size != mem->size) { @@ -129,8 +129,8 @@ Index: libxvmc/viaLowLevelPro.c Index: libxvmc/viaXvMC.c =================================================================== ---- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 751) -+++ libxvmc/viaXvMC.c (.../trunk) (revision 751) +--- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 758) ++++ libxvmc/viaXvMC.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ return errType; } @@ -407,8 +407,8 @@ Index: libxvmc/viaXvMC.c Index: ChangeLog =================================================================== ---- ChangeLog (.../tags/release_0_2_903) (revision 751) -+++ ChangeLog (.../trunk) (revision 751) +--- ChangeLog (.../tags/release_0_2_903) (revision 758) ++++ ChangeLog (.../trunk) (revision 758) @@ -1,3 +1,323 @@ +2009-03-21 Xavier Bachelot + @@ -736,7 +736,7 @@ Index: ChangeLog Index: src/via_panel.c =================================================================== --- src/via_panel.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_panel.c (.../trunk) (revision 751) ++++ src/via_panel.c (.../trunk) (revision 758) @@ -0,0 +1,461 @@ +/* + * Copyright 2007 The Openchrome Project [openchrome.org] @@ -1201,28 +1201,30 @@ Index: src/via_panel.c +} Index: src/via_id.h =================================================================== ---- src/via_id.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.h (.../trunk) (revision 751) -@@ -37,6 +37,7 @@ +--- src/via_id.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.h (.../trunk) (revision 758) +@@ -37,6 +37,8 @@ VIA_P4M900, VIA_CX700, VIA_P4M890, + VIA_VX800, ++ VIA_VX855, VIA_LAST }; -@@ -52,6 +53,7 @@ +@@ -52,6 +54,8 @@ #define PCI_CHIP_VT3364 0x3371 /* P4M900 */ #define PCI_CHIP_VT3324 0x3157 /* CX700 */ #define PCI_CHIP_VT3327 0x3343 /* P4M890 */ +#define PCI_CHIP_VT3353 0x1122 /* VX800 */ ++#define PCI_CHIP_VT3409 0x5122 /* VX855/VX875 */ /* There is some conflicting information about the two major revisions of * the CLE266, often labelled Ax and Cx. The dividing line seems to be Index: src/via_video.c =================================================================== ---- src/via_video.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_video.c (.../trunk) (revision 751) +--- src/via_video.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_video.c (.../trunk) (revision 758) @@ -112,11 +112,7 @@ static int viaSetPortAttribute(ScrnInfoPtr, Atom, INT32, pointer); static int viaPutImage(ScrnInfoPtr, short, short, short, short, short, short, @@ -1236,9 +1238,11 @@ Index: src/via_video.c static void nv12Blit(unsigned char *nv12Chroma, const unsigned char *uBuffer, const unsigned char *vBuffer, -@@ -282,7 +278,8 @@ +@@ -281,8 +277,10 @@ + pVia->ChipId != PCI_CHIP_VT3314 && pVia->ChipId != PCI_CHIP_VT3327 && pVia->ChipId != PCI_CHIP_VT3336 && ++ pVia->ChipId != PCI_CHIP_VT3409 && pVia->ChipId != PCI_CHIP_VT3364 && - pVia->ChipId != PCI_CHIP_VT3324) { + pVia->ChipId != PCI_CHIP_VT3324 && @@ -1246,7 +1250,7 @@ Index: src/via_video.c CARD32 bandwidth = (mode->HDisplay >> 4) * (mode->VDisplay >> 5) * pScrn->bitsPerPixel * mode->VRefresh; -@@ -370,14 +367,14 @@ +@@ -370,14 +368,14 @@ if (pVia->pVbe) { refresh = 100; @@ -1265,7 +1269,7 @@ Index: src/via_video.c if ((width == 1400) && (height == 1050)) { width = 1280; height = 1024; -@@ -476,6 +473,10 @@ +@@ -476,6 +474,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1276,7 +1280,7 @@ Index: src/via_video.c pVia->dwV1 = ((vmmtr) viaVidEng)->video1_ctl; pVia->dwV3 = ((vmmtr) viaVidEng)->video3_ctl; -@@ -490,6 +491,10 @@ +@@ -490,6 +492,10 @@ { VIAPtr pVia = VIAPTR(pScrn); vmmtr viaVidEng = (vmmtr) pVia->VidMapBase; @@ -1287,7 +1291,7 @@ Index: src/via_video.c viaVidEng->video1_ctl = pVia->dwV1; viaVidEng->video3_ctl = pVia->dwV3; -@@ -568,6 +573,7 @@ +@@ -568,6 +574,7 @@ (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1295,7 +1299,7 @@ Index: src/via_video.c (pVia->Chipset == VIA_P4M890)); if ((pVia->drmVerMajor < 2) || ((pVia->drmVerMajor == 2) && (pVia->drmVerMinor < 9))) -@@ -586,7 +592,7 @@ +@@ -586,13 +593,14 @@ (pVia->Chipset == VIA_K8M800) || (pVia->Chipset == VIA_PM800) || (pVia->Chipset == VIA_VM800) || (pVia->Chipset == VIA_K8M890) || (pVia->Chipset == VIA_P4M900) || (pVia->Chipset == VIA_CX700) || @@ -1304,7 +1308,14 @@ Index: src/via_video.c num_new = viaSetupAdaptors(pScreen, &newAdaptors); num_adaptors = xf86XVListGenericAdaptors(pScrn, &adaptors); } else { -@@ -650,8 +656,6 @@ + xf86DrvMsg(pScrn->scrnIndex, X_WARNING, + "[Xv] Unsupported Chipset. X video functionality disabled.\n"); + num_adaptors = 0; ++ memset(viaAdaptPtr, 0, sizeof(viaAdaptPtr)); + } + + DBG_DD(ErrorF(" via_video.c : num_adaptors : %d\n", num_adaptors)); +@@ -650,8 +658,6 @@ return TRUE; } @@ -1313,7 +1324,7 @@ Index: src/via_video.c static void viaVideoFillPixmap(ScrnInfoPtr pScrn, char *base, -@@ -662,7 +666,7 @@ +@@ -662,7 +668,7 @@ { [...2537 lines suppressed...] return vx->PutImage(pScrn, src_x, src_y, drw_x, drw_y, src_w, src_h, drw_w, drw_h, id, buf, width, height, sync, clipBoxes, @@ -7330,8 +7849,8 @@ Index: src/via_xvmc.c unsigned long Index: src/via_dri.c =================================================================== ---- src/via_dri.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dri.c (.../trunk) (revision 751) +--- src/via_dri.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dri.c (.../trunk) (revision 758) @@ -588,7 +588,16 @@ pDRIInfo = pVia->pDRIInfo; @@ -7352,8 +7871,8 @@ Index: src/via_dri.c #ifdef XSERVER_LIBPCIACCESS Index: src/via_vt162x.h =================================================================== ---- src/via_vt162x.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_vt162x.h (.../trunk) (revision 751) +--- src/via_vt162x.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_vt162x.h (.../trunk) (revision 758) @@ -926,6 +926,23 @@ 0x0, 0x0, }, @@ -7380,9 +7899,22 @@ Index: src/via_vt162x.h { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, Index: src/via.h =================================================================== ---- src/via.h (.../tags/release_0_2_903) (revision 751) -+++ src/via.h (.../trunk) (revision 751) -@@ -561,9 +561,6 @@ +--- src/via.h (.../tags/release_0_2_903) (revision 758) ++++ src/via.h (.../trunk) (revision 758) +@@ -327,6 +327,12 @@ + #define VIDEO_FIFO_PRETHRESHOLD_VT3336 250 + #define VIDEO_EXPIRE_NUM_VT3336 31 + ++/* Those values are only valid for IGA1 */ ++#define VIDEO_FIFO_DEPTH_VT3409 400 ++#define VIDEO_FIFO_THRESHOLD_VT3409 320 ++#define VIDEO_FIFO_PRETHRESHOLD_VT3409 230 ++#define VIDEO_EXPIRE_NUM_VT3409 160 ++ + /* ALPHA_V3_FIFO_CONTROL 0x278 + * IA2 has 32 level FIFO for packet mode video format + * 32 level FIFO for planar mode video YV12. with extension reg 230 bit 21 enable +@@ -561,9 +567,6 @@ #define HQV_V_FILTER_DEFAULT 0x00420000 #define HQV_H_FILTER_DEFAULT 0x00000040 @@ -7392,7 +7924,7 @@ Index: src/via.h /* HQV_MINI_CONTROL 0x3E8 */ #define HQV_H_MINIFY_ENABLE 0x00000800 #define HQV_H_MINIFY_DOWN 0x00001000 -@@ -572,6 +569,19 @@ +@@ -572,6 +575,19 @@ #define HQV_VDEBLOCK_FILTER 0x80000000 #define HQV_HDEBLOCK_FILTER 0x00008000 @@ -7414,8 +7946,8 @@ Index: src/via.h #define CHROMA_KEY_HIGH 0x00FFFFFF Index: src/via_priv.h =================================================================== ---- src/via_priv.h (.../tags/release_0_2_903) (revision 751) -+++ src/via_priv.h (.../trunk) (revision 751) +--- src/via_priv.h (.../tags/release_0_2_903) (revision 758) ++++ src/via_priv.h (.../trunk) (revision 758) @@ -29,9 +29,7 @@ #ifdef XF86DRI #include "via_drm.h" @@ -7439,7 +7971,7 @@ Index: src/via_priv.h Index: src/via_timing.c =================================================================== --- src/via_timing.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.c (.../trunk) (revision 751) ++++ src/via_timing.c (.../trunk) (revision 758) @@ -0,0 +1,398 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. @@ -7841,8 +8373,8 @@ Index: src/via_timing.c +} Index: src/Makefile.am =================================================================== ---- src/Makefile.am (.../tags/release_0_2_903) (revision 751) -+++ src/Makefile.am (.../trunk) (revision 751) +--- src/Makefile.am (.../tags/release_0_2_903) (revision 758) ++++ src/Makefile.am (.../trunk) (revision 758) @@ -43,23 +43,29 @@ via_ch7xxx.c \ via_ch7xxx.h \ @@ -7875,8 +8407,8 @@ Index: src/Makefile.am via_vgahw.h \ Index: src/via_dga.c =================================================================== ---- src/via_dga.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_dga.c (.../trunk) (revision 751) +--- src/via_dga.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_dga.c (.../trunk) (revision 758) @@ -248,7 +248,7 @@ pScrn->SwitchMode(index, pScrn->currentMode, 0); @@ -7897,9 +8429,9 @@ Index: src/via_dga.c pVia->DGAOldDisplayWidth = pScrn->displayWidth; Index: src/via_id.c =================================================================== ---- src/via_id.c (.../tags/release_0_2_903) (revision 751) -+++ src/via_id.c (.../trunk) (revision 751) -@@ -87,6 +87,7 @@ +--- src/via_id.c (.../tags/release_0_2_903) (revision 758) ++++ src/via_id.c (.../trunk) (revision 758) +@@ -87,10 +87,12 @@ {"Asustek K8V-MX", VIA_K8M800, 0x1043, 0x8129, VIA_DEVICE_CRT}, {"Mitac 8399", VIA_K8M800, 0x1071, 0x8399, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, /* aka "Pogolinux Konabook 3100" */ {"Mitac 8889", VIA_K8M800, 0x1071, 0x8889, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, @@ -7907,7 +8439,12 @@ Index: src/via_id.c {"VIA VT3108 (K8M800)", VIA_K8M800, 0x1106, 0x3108, VIA_DEVICE_CRT}, /* borrowed by Asustek A8V-MX */ {"Shuttle FX21", VIA_K8M800, 0x1297, 0x3052, VIA_DEVICE_CRT}, {"Shuttle FX83", VIA_K8M800, 0x1297, 0xF683, VIA_DEVICE_CRT | VIA_DEVICE_TV}, -@@ -113,6 +114,7 @@ + {"Sharp Actius AL27", VIA_K8M800, 0x13BD, 0x1044, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, ++ {"Sharp PC-AE30J", VIA_K8M800, 0x13BD, 0x104B, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Giga-byte GA-K8VM800M", VIA_K8M800, 0x1458, 0xD000, VIA_DEVICE_CRT}, + {"MSI K8M Neo-V", VIA_K8M800, 0x1462, 0x0320, VIA_DEVICE_CRT}, + {"MSI K8MM-V", VIA_K8M800, 0x1462, 0x7142, VIA_DEVICE_CRT}, +@@ -113,6 +115,7 @@ {"Packard Bell Imedia 2097", VIA_K8M800, 0x1631, 0xD007, VIA_DEVICE_CRT}, {"Fujitsu-Siemens Amilo K7610", VIA_K8M800, 0x1734, 0x10B3, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"ASRock K8Upgrade-VM800", VIA_K8M800, 0x1849, 0x3108, VIA_DEVICE_CRT}, @@ -7915,7 +8452,7 @@ Index: src/via_id.c /*** PM800, PM880, PN800, CN400 ***/ {"VIA VT3118 (PM800)", VIA_PM800, 0x1106, 0x3118, VIA_DEVICE_CRT}, /* borrowed by ECS PM800-M2 */ -@@ -138,6 +140,7 @@ +@@ -138,6 +141,7 @@ {"PCChips V21G", VIA_VM800, 0x1019, 0xAA51, VIA_DEVICE_CRT}, {"Asustek P5VDC-MX", VIA_VM800, 0x1043, 0x3344, VIA_DEVICE_CRT}, {"Asustek P5VDC-TVM", VIA_VM800, 0x1043, 0x81CE, VIA_DEVICE_CRT}, @@ -7923,7 +8460,7 @@ Index: src/via_id.c {"Gateway MX3210", VIA_VM800, 0x107B, 0x0216, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"VIA VT3344 (VM800) - EPIA EN", VIA_VM800, 0x1106, 0x3344, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"Gigabyte GA-8VM800M-775", VIA_VM800, 0x1458, 0xD000, VIA_DEVICE_CRT}, -@@ -145,6 +148,7 @@ +@@ -145,6 +149,7 @@ {"MSI Fuzzy CN700/CN700T/CN700G", VIA_VM800, 0x1462, 0x7199, VIA_DEVICE_CRT | VIA_DEVICE_TV}, {"MSI PM8M3-V", VIA_VM800, 0x1462, 0x7211, VIA_DEVICE_CRT}, {"MSI PM8PM", VIA_VM800, 0x1462, 0x7222, VIA_DEVICE_CRT}, @@ -7931,7 +8468,7 @@ Index: src/via_id.c {"RoverBook Partner W500", VIA_VM800, 0x1509, 0x4330, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo/RoverBook Voyager V511L", VIA_VM800, 0x1558, 0x0662, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M5xxS", VIA_VM800, 0x1558, 0x5406, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -158,6 +162,7 @@ +@@ -158,6 +163,7 @@ {"Asustek P5V800-MX", VIA_VM800, 0x3344, 0x1122, VIA_DEVICE_CRT}, /*** K8M890 ***/ @@ -7939,7 +8476,7 @@ Index: src/via_id.c {"Asustek A8V-VM", VIA_K8M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek M2V-MX SE", VIA_K8M890, 0x1043, 0x8297, VIA_DEVICE_CRT}, {"Foxconn K8M890M2MA-RS2H", VIA_K8M890, 0x105B, 0x0C84, VIA_DEVICE_CRT}, -@@ -179,6 +184,7 @@ +@@ -179,6 +185,7 @@ {"Gigabyte GA-VM900M", VIA_P4M900, 0x1458, 0xD000, VIA_DEVICE_CRT}, {"MSI VR321", VIA_P4M900, 0x1462, 0x3355, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"MSI P4M900M / P4M900M2-F/L", VIA_P4M900, 0x1462, 0x7255, VIA_DEVICE_CRT}, @@ -7947,7 +8484,7 @@ Index: src/via_id.c {"Everex NC1501/NC1503", VIA_P4M900, 0x1509, 0x1E30, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SE", VIA_P4M900, 0x1558, 0x0664, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"Clevo M660SR", VIA_P4M900, 0x1558, 0x0669, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, -@@ -196,6 +202,7 @@ +@@ -196,6 +203,7 @@ {"Samsung Q1B", VIA_CX700, 0x144D, 0xC02C, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, {"FIC CE260", VIA_CX700, 0x1509, 0x2D30, VIA_DEVICE_LCD}, {"FIC CE261", VIA_CX700, 0x1509, 0x2F07, VIA_DEVICE_LCD}, @@ -7955,7 +8492,7 @@ Index: src/via_id.c {"Packard Bell EasyNote XS", VIA_CX700, 0x1631, 0xC201, VIA_DEVICE_LCD}, /* aka Everex Cloudbook CE1200V */ /*** P4M890, VN890 ***/ -@@ -204,11 +211,17 @@ +@@ -204,11 +212,20 @@ {"Asustek P5V-VM ULTRA", VIA_P4M890, 0x1043, 0x81B5, VIA_DEVICE_CRT}, {"Asustek P5V-VM DH", VIA_P4M890, 0x1043, 0x81CE, VIA_DEVICE_CRT}, {"Mitac 8615", VIA_P4M890, 0x1071, 0x8615, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, @@ -7970,13 +8507,16 @@ Index: src/via_id.c + {"Samsung NC20", VIA_VX800, 0x144d, 0xc04e, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + {"Quanta DreamBook Light IL1", VIA_VX800, 0x152d, 0x0771, VIA_DEVICE_CRT | VIA_DEVICE_LCD}, + ++ /*** VX855 ***/ ++ {"VIA VT8562C", VIA_VX855, 0x1106, 0x5122, VIA_DEVICE_CRT}, ++ /* keep this */ {NULL, VIA_UNKNOWN, 0x0000, 0x0000, VIA_DEVICE_NONE} }; Index: src/via_timing.h =================================================================== --- src/via_timing.h (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.h (.../trunk) (revision 751) ++++ src/via_timing.h (.../trunk) (revision 758) @@ -0,0 +1,51 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/F-10/xorg-x11-drv-openchrome.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- xorg-x11-drv-openchrome.spec 19 Jun 2009 00:04:44 -0000 1.38 +++ xorg-x11-drv-openchrome.spec 19 Jul 2009 14:41:13 -0000 1.39 @@ -9,7 +9,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -24,10 +24,15 @@ Patch99: openchrome-0.2.903-late # Fedora specific patches : #Patch100: openchrome-0.2.903-disable_hwcursor.patch # Experimental patches (branch backport, etc...): -Patch200: openchrome-0.2.903-vx855_support.patch -Patch201: openchrome-0.2.903-pll_rework.patch -Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch +#Patch200: openchrome-0.2.903-vx855_support.patch +#Patch201: openchrome-0.2.903-pll_rework.patch +#Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch Patch203: openchrome-0.2.903-disable_TMDS_by_default.patch +#Patch204: openchrome-switch-on-lvds-pads-only-for-active-channels.patch +Patch205: openchrome-0.2.903-XO-1.5-panel.patch +Patch206: openchrome-0.2.903-remove_loader_symbol_lists.patch +#Patch207: openchrome-0.2.903-fix_null_pointer_deref_in_viaExaCheckComposite.patch +Patch208: openchrome-vt1625.patch ExclusiveArch: %{ix86} x86_64 @@ -68,10 +73,10 @@ X.Org X11 openchrome video driver XvMC d %prep %setup -q -n %{tarball}-%{version} %patch99 -p0 -b .latest -%patch200 -p0 -%patch201 -p0 -%patch202 -p0 -%patch203 -p0 +%patch203 -p0 -b .tmds +%patch205 -p0 -b .XO_1.5_panel +%patch206 -p0 -b .loader_symbol +%patch208 -p0 -b .vt1625 %build @@ -125,6 +130,16 @@ fi %changelog +* Mon Jul 18 2009 Xavier Bachelot - 0.2.903-8 +- Update to latest snapshot (svn 758) : + - Basic VX855 support. + - Fix pci space corruption on P4M900 (RHBZ#506622). + - Fix null pointer dereference in viaExaCheckComposite (RHBZ#449034). +- Add patch to allow 1200x900 panel (X0-1.5). +- Add patch to remove loader symbol lists, needed for xserver 1.7 (RHBZ#510206). +- Add experimental patch for better VT1625 support. +- Drop upstreamed patches. + * Thu Jun 18 2009 Xavier Bachelot - 0.2.903-7 - Update to latest snapshot (svn 751) : - Add support for VX800 integrated TMDS encoder. --- openchrome-0.2.903-fix_cursor_on_secondary.patch DELETED --- --- openchrome-0.2.903-pll_rework.patch DELETED --- --- openchrome-0.2.903-vx855_support.patch DELETED --- From dwalsh at fedoraproject.org Sun Jul 19 16:04:31 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sun, 19 Jul 2009 16:04:31 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch, 1.30, 1.31 selinux-policy.spec, 1.880, 1.881 Message-ID: <20090719160431.2406211C00D7@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19606 Modified Files: policy-F12.patch selinux-policy.spec Log Message: * Sun Jul 19 2009 Dan Walsh 3.6.22-2 - Fix context for VirtualBox policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 31 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 41 policy/modules/admin/logrotate.te | 11 policy/modules/admin/logwatch.te | 7 policy/modules/admin/mrtg.te | 1 policy/modules/admin/prelink.fc | 2 policy/modules/admin/prelink.if | 39 policy/modules/admin/prelink.te | 32 policy/modules/admin/readahead.fc | 6 policy/modules/admin/readahead.te | 21 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 304 ++++ policy/modules/admin/rpm.te | 63 policy/modules/admin/sudo.if | 67 - policy/modules/admin/sudo.te | 1 policy/modules/admin/tmpreaper.te | 23 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 7 policy/modules/apps/awstats.te | 2 policy/modules/apps/cdrecord.te | 10 policy/modules/apps/cpufreqselector.fc | 1 policy/modules/apps/cpufreqselector.if | 2 policy/modules/apps/cpufreqselector.te | 43 policy/modules/apps/evolution.te | 9 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.fc | 4 policy/modules/apps/gpg.if | 11 policy/modules/apps/gpg.te | 41 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 + policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.fc | 3 policy/modules/apps/mozilla.if | 15 policy/modules/apps/mozilla.te | 32 policy/modules/apps/mplayer.te | 18 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 ++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/podsleuth.fc | 2 policy/modules/apps/podsleuth.if | 28 policy/modules/apps/podsleuth.te | 63 policy/modules/apps/pulseaudio.fc | 2 policy/modules/apps/pulseaudio.if | 148 ++ policy/modules/apps/pulseaudio.te | 117 + policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 ++-- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 29 policy/modules/apps/thunderbird.te | 9 policy/modules/apps/vmware.fc | 2 policy/modules/apps/vmware.te | 31 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 13 policy/modules/apps/wm.fc | 3 policy/modules/apps/wm.if | 108 + policy/modules/apps/wm.te | 9 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 33 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 93 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 4 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 37 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 123 - policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 +++++++++ policy/modules/roles/unconfineduser.te | 410 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/afs.fc | 10 policy/modules/services/afs.if | 109 + policy/modules/services/afs.te | 53 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 394 ++++-- policy/modules/services/apache.te | 375 +++++ policy/modules/services/apm.te | 2 policy/modules/services/automount.if | 19 policy/modules/services/automount.te | 6 policy/modules/services/avahi.te | 2 policy/modules/services/bind.if | 23 policy/modules/services/bluetooth.te | 5 policy/modules/services/clamav.fc | 13 policy/modules/services/clamav.if | 104 + policy/modules/services/clamav.te | 43 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 32 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 128 + policy/modules/services/cups.fc | 34 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 190 ++ policy/modules/services/cvs.te | 1 policy/modules/services/dbus.fc | 3 policy/modules/services/dbus.if | 151 ++ policy/modules/services/dbus.te | 67 - policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 9 policy/modules/services/devicekit.if | 197 +++ policy/modules/services/devicekit.te | 243 +++ policy/modules/services/dhcp.if | 19 policy/modules/services/dnsmasq.if | 19 policy/modules/services/dnsmasq.te | 15 policy/modules/services/dovecot.te | 7 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.fc | 4 policy/modules/services/fprintd.if | 43 policy/modules/services/fprintd.te | 55 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 10 policy/modules/services/hal.fc | 1 policy/modules/services/hal.if | 100 + policy/modules/services/hal.te | 108 + policy/modules/services/kerberos.fc | 8 policy/modules/services/kerberos.if | 4 policy/modules/services/kerberos.te | 17 policy/modules/services/kerneloops.te | 3 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 10 policy/modules/services/lpd.te | 6 policy/modules/services/mailman.fc | 1 policy/modules/services/mailman.if | 28 policy/modules/services/mailman.te | 35 policy/modules/services/memcached.te | 2 policy/modules/services/mta.fc | 11 policy/modules/services/mta.if | 41 policy/modules/services/mta.te | 69 - policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 112 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 71 + policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.fc | 2 policy/modules/services/oddjob.if | 26 policy/modules/services/oddjob.te | 28 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/polkit.fc | 11 policy/modules/services/polkit.if | 245 +++ policy/modules/services/polkit.te | 235 +++ policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 143 +- policy/modules/services/postfix.te | 150 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.fc | 5 policy/modules/services/ppp.if | 67 - policy/modules/services/ppp.te | 39 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/remotelogin.te | 8 policy/modules/services/rhgb.te | 2 policy/modules/services/ricci.te | 28 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 29 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 344 +++++ policy/modules/services/samba.te | 190 ++ policy/modules/services/sasl.te | 13 policy/modules/services/sendmail.if | 117 + policy/modules/services/sendmail.te | 83 - policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/snort.if | 1 policy/modules/services/snort.te | 9 policy/modules/services/spamassassin.fc | 16 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 143 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 171 +- policy/modules/services/ssh.te | 74 - policy/modules/services/sssd.fc | 4 policy/modules/services/sssd.if | 59 policy/modules/services/sssd.te | 29 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 118 + policy/modules/services/virt.te | 212 +++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 27 policy/modules/services/xserver.if | 518 +++++++ policy/modules/services/xserver.te | 311 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 17 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 +- policy/modules/system/init.te | 174 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 1 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 85 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 37 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 36 policy/modules/system/mount.fc | 7 policy/modules/system/mount.if | 22 policy/modules/system/mount.te | 98 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 349 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 2 policy/modules/system/udev.te | 33 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------ policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1369 ++++++++++++++++----- policy/modules/system/userdomain.te | 50 policy/modules/system/virtual.fc | 1 policy/modules/system/virtual.if | 119 + policy/modules/system/virtual.te | 75 + policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 339 files changed, 16485 insertions(+), 2966 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- policy-F12.patch 16 Jul 2009 11:24:55 -0000 1.30 +++ policy-F12.patch 19 Jul 2009 16:04:29 -0000 1.31 @@ -7612,8 +7612,8 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/roles/unconfineduser.fc serefpolicy-3.6.22/policy/modules/roles/unconfineduser.fc --- nsaserefpolicy/policy/modules/roles/unconfineduser.fc 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/roles/unconfineduser.fc 2009-07-15 14:06:36.000000000 -0400 -@@ -0,0 +1,38 @@ ++++ serefpolicy-3.6.22/policy/modules/roles/unconfineduser.fc 2009-07-19 11:59:51.000000000 -0400 +@@ -0,0 +1,37 @@ +# Add programs here which should not be confined by SELinux +# e.g.: +# /usr/local/bin/appsrv -- gen_context(system_u:object_r:unconfined_exec_t,s0) @@ -7622,8 +7622,7 @@ diff -b -B --ignore-all-space --exclude- +/usr/bin/vncserver -- gen_context(system_u:object_r:unconfined_notrans_exec_t,s0) + +/usr/lib/ia32el/ia32x_loader -- gen_context(system_u:object_r:execmem_exec_t,s0) -+/usr/lib(64)/virtualbox/VirtualBox -- gen_context(system_u:object_r:execmem_ex -+ec_t,s0) ++/usr/lib(64)/virtualbox/VirtualBox -- gen_context(system_u:object_r:execmem_exec_t,s0) + +/usr/local/RealPlayer/realplay\.bin -- gen_context(system_u:object_r:execmem_exec_t,s0) + @@ -20997,7 +20996,7 @@ diff -b -B --ignore-all-space --exclude- +/root/\.ssh(/.*)? gen_context(system_u:object_r:home_ssh_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ssh.if serefpolicy-3.6.22/policy/modules/services/ssh.if --- nsaserefpolicy/policy/modules/services/ssh.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/services/ssh.if 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.22/policy/modules/services/ssh.if 2009-07-19 10:53:47.000000000 -0400 @@ -36,6 +36,7 @@ gen_require(` attribute ssh_server; @@ -21110,7 +21109,8 @@ diff -b -B --ignore-all-space --exclude- - allow $1_t self:capability { kill sys_chroot sys_resource chown dac_override fowner fsetid setgid setuid sys_tty_config }; + allow $1_t self:capability { kill sys_chroot sys_resource chown dac_override fowner fsetid net_admin setgid setuid sys_tty_config }; allow $1_t self:fifo_file rw_fifo_file_perms; - allow $1_t self:process { signal setsched setrlimit setexec }; +- allow $1_t self:process { signal setsched setrlimit setexec }; ++ allow $1_t self:process { signal getsched setsched setrlimit setexec }; allow $1_t self:tcp_socket create_stream_socket_perms; allow $1_t self:udp_socket create_socket_perms; # ssh agent connections: Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.880 retrieving revision 1.881 diff -u -p -r1.880 -r1.881 --- selinux-policy.spec 15 Jul 2009 18:14:22 -0000 1.880 +++ selinux-policy.spec 19 Jul 2009 16:04:30 -0000 1.881 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.22 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Sun Jul 19 2009 Dan Walsh 3.6.22-2 +- Fix context for VirtualBox + * Tue Jul 14 2009 Dan Walsh 3.6.22-1 - Update to upstream From dwalsh at fedoraproject.org Sun Jul 19 16:15:50 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sun, 19 Jul 2009 16:15:50 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.111, 1.112 sources, 1.123, 1.124 Message-ID: <20090719161550.DDC5811C00D7@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22735 Modified Files: .cvsignore sources Log Message: * Mon Jul 15 2009 Dan Walsh - 2.2.14-1 - Update to upstream 2009-7-15 Dan Walsh - Fix handling of syscall record a1 field - Translate "/" to mountpoint when returned by kernel Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- .cvsignore 15 Jul 2009 16:44:10 -0000 1.111 +++ .cvsignore 19 Jul 2009 16:15:20 -0000 1.112 @@ -28,3 +28,4 @@ setroubleshoot-2.2.11.tar.gz setroubleshoot-2.2.12.tar.gz setroubleshoot-2.2.13.tar.gz setroubleshoot-2.2.14.tar.gz +setroubleshoot-2.2.15.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.123 retrieving revision 1.124 diff -u -p -r1.123 -r1.124 --- sources 15 Jul 2009 16:44:11 -0000 1.123 +++ sources 19 Jul 2009 16:15:20 -0000 1.124 @@ -1 +1 @@ -925a0d6f17cc1a8cb60e26086d6e7377 setroubleshoot-2.2.14.tar.gz +e43176c819a935ddce505f86b93b27ea setroubleshoot-2.2.15.tar.gz From dwalsh at fedoraproject.org Sun Jul 19 16:17:38 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sun, 19 Jul 2009 16:17:38 +0000 (UTC) Subject: rpms/setroubleshoot/devel setroubleshoot.spec,1.146,1.147 Message-ID: <20090719161738.1DBCC11C00D7@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23140 Modified Files: setroubleshoot.spec Log Message: * Sun Jul 19 2009 Dan Walsh - 2.2.15-1 - Fix a1 handling Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- setroubleshoot.spec 15 Jul 2009 16:44:11 -0000 1.146 +++ setroubleshoot.spec 19 Jul 2009 16:17:07 -0000 1.147 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.14 +Version: 2.2.15 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Sun Jul 19 2009 Dan Walsh - 2.2.15-1 +- Fix a1 handling + * Mon Jul 15 2009 Dan Walsh - 2.2.14-1 - Update to upstream 2009-7-15 Dan Walsh From vpv at fedoraproject.org Sun Jul 19 17:44:12 2009 From: vpv at fedoraproject.org (Ville-Pekka Vainio) Date: Sun, 19 Jul 2009 17:44:12 +0000 (UTC) Subject: rpms/mozvoikko/devel mozvoikko.spec,1.10,1.11 Message-ID: <20090719174412.1ADD011C00D7@cvs1.fedora.phx.redhat.com> Author: vpv Update of /cvs/pkgs/rpms/mozvoikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12400 Modified Files: mozvoikko.spec Log Message: * Sun Jul 19 2009 Ville-Pekka Vainio - 0.9.7-0.5.rc1 - Rebuild against newer gecko - Bump Release to fix upgrade path Index: mozvoikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozvoikko/devel/mozvoikko.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mozvoikko.spec 2 May 2009 11:42:10 -0000 1.10 +++ mozvoikko.spec 19 Jul 2009 17:43:41 -0000 1.11 @@ -5,7 +5,7 @@ # update this package to 1.0. # For the xulrunner unstable requires -%define gecko_ver 1.9.1 +%define gecko_ver 1.9.1.1 # These come from install.rdf %define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\} %define firefox_ext_id \{b676e3ff-cda7-4e0c-b2b8-74e4bb40a67a\} @@ -18,7 +18,7 @@ Name: mozvoikko Version: 0.9.7 -Release: 0.3.rc1%{?dist} +Release: 0.5.rc1%{?dist} Summary: Finnish Voikko spell-checker extension for Mozilla programs Group: Applications/Internet License: GPLv2+ @@ -75,6 +75,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Ville-Pekka Vainio - 0.9.7-0.5.rc1 +- Rebuild against newer gecko +- Bump Release to fix upgrade path + * Mon Apr 27 2009 Christopher Aillon - 0.9.7-0.3.rc1 - Rebuild against newer gecko From mschwendt at fedoraproject.org Sun Jul 19 17:54:25 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Sun, 19 Jul 2009 17:54:25 +0000 (UTC) Subject: rpms/xmp/devel xmp-2.5.1-audacious2.patch, NONE, 1.1 xmp.spec, 1.3, 1.4 Message-ID: <20090719175425.CAD7911C00D7@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/xmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15063 Modified Files: xmp.spec Added Files: xmp-2.5.1-audacious2.patch Log Message: * Sun Jul 19 2009 Michael Schwendt - 2.5.1-6 - patch for Audacious 2 (xmp-2.5.1-audacious2.patch) xmp-2.5.1-audacious2.patch: audacious.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE xmp-2.5.1-audacious2.patch --- diff -Nur xmp-2.5.1-orig/src/plugin/audacious.c xmp-2.5.1/src/plugin/audacious.c --- xmp-2.5.1-orig/src/plugin/audacious.c 2007-11-25 15:24:58.000000000 +0100 +++ xmp-2.5.1/src/plugin/audacious.c 2009-07-19 19:49:42.000000000 +0200 @@ -296,7 +296,7 @@ if (i > 0) i--; a = xmp_ord_set(ctx, i); - xmp_ip.output->flush(p->m.xxo_info[i].time); + ipb->output->flush(p->m.xxo_info[i].time); break; } } @@ -305,7 +305,7 @@ static void mod_pause(InputPlayback *ipb, short p) { ii->pause = p; - xmp_ip.output->pause(p); + ipb->output->pause(p); } @@ -316,7 +316,7 @@ if (!ipb->playing) return -1; - return xmp_ip.output->output_time(); + return ipb->output->output_time(); } Index: xmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmp/devel/xmp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xmp.spec 16 Jun 2009 10:52:21 -0000 1.3 +++ xmp.spec 19 Jul 2009 17:54:25 -0000 1.4 @@ -3,7 +3,7 @@ Name: xmp Version: 2.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A multi-format module player Group: Applications/Multimedia #Source: http://dl.sourceforge.net/sourceforge/xmp/%{name}-%{version}.tar.gz @@ -12,6 +12,7 @@ Source: http://rathann.fedorapeople.org/ # run this to get the above tarball Source1: mktarball.sh Patch0: %{name}-nostrip.patch +Patch1: xmp-2.5.1-audacious2.patch License: GPLv2+ URL: http://xmp.sourceforge.net/ Buildrequires: alsa-lib-devel @@ -55,6 +56,7 @@ This package contains the xmp plugin for %prep %setup -q %patch0 -p1 -b .nostrip +%patch1 -p1 -b .audacious2 pushd docs for file in ChangeLog CREDITS ; do iconv -f iso8859-1 -t utf8 -o $file.utf $file && touch -r $file $file.utf && mv $file.utf $file @@ -92,6 +94,9 @@ rm -rf %{buildroot} %{xmms_input_plugin_dir}/* %changelog +* Sun Jul 19 2009 Michael Schwendt - 2.5.1-6 +- patch for Audacious 2 (xmp-2.5.1-audacious2.patch) + * Tue Jun 16 2009 Michael Schwendt - 2.5.1-5 - rebuild for new libmowgli SONAME (audacious-plugin-xmp depends on it indirectly because of audacious-devel pkgconfig dep-chain) From tanguy at fedoraproject.org Sun Jul 19 17:58:58 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 19 Jul 2009 17:58:58 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis-0.2.3-manual.patch, 1.1, 1.2 scidavis.spec, 1.21, 1.22 Message-ID: <20090719175858.3849D11C00D7@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16563 Modified Files: scidavis-0.2.3-manual.patch scidavis.spec Log Message: scidavis-0.2.3-manual.patch: scidavis.pro | 5 ++ src/ApplicationWindow.cpp | 86 +++++++++++++++++++++++++++------------------- src/ApplicationWindow.h | 6 ++- 3 files changed, 62 insertions(+), 35 deletions(-) Index: scidavis-0.2.3-manual.patch =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis-0.2.3-manual.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- scidavis-0.2.3-manual.patch 17 Jul 2009 13:13:16 -0000 1.1 +++ scidavis-0.2.3-manual.patch 19 Jul 2009 17:58:57 -0000 1.2 @@ -1,7 +1,7 @@ Index: scidavis/src/ApplicationWindow.h =================================================================== ---- scidavis/src/ApplicationWindow.h (r??vision 1180) -+++ scidavis/src/ApplicationWindow.h (r??vision 1181) +--- scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1180) ++++ scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1181) @@ -638,6 +638,7 @@ void showHelp(); static void showStandAloneHelp(); @@ -24,8 +24,8 @@ Index: scidavis/src/ApplicationWindow.h QAction *actionResizeActiveWindow, *actionHideActiveWindow; Index: scidavis/src/ApplicationWindow.cpp =================================================================== ---- scidavis/src/ApplicationWindow.cpp (r??vision 1180) -+++ scidavis/src/ApplicationWindow.cpp (r??vision 1181) +--- scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1180) ++++ scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1181) @@ -915,7 +915,9 @@ help->setFont(appFont); @@ -166,8 +166,8 @@ Index: scidavis/src/ApplicationWindow.cp +} Index: scidavis/scidavis.pro =================================================================== ---- scidavis/scidavis.pro (r??vision 1180) -+++ scidavis/scidavis.pro (r??vision 1181) +--- scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1180) ++++ scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1181) @@ -42,6 +42,11 @@ ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- scidavis.spec 17 Jul 2009 13:13:16 -0000 1.21 +++ scidavis.spec 19 Jul 2009 17:58:58 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -100,6 +100,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Fri Jul 17 2009 Eric Tanguy - 0.2.3-4 +- Rebuild + * Fri Jul 17 2009 Eric Tanguy - 0.2.3-3 - Patch for manual path From pkgdb at fedoraproject.org Sun Jul 19 18:14:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 18:14:20 +0000 Subject: [pkgdb] azureus ownership updated Message-ID: <20090719181421.42D2910F87B@bastion2.fedora.phx.redhat.com> Package azureus in Fedora devel is now owned by djuran To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/azureus From pkgdb at fedoraproject.org Sun Jul 19 18:14:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 18:14:35 +0000 Subject: [pkgdb] azureus ownership updated Message-ID: <20090719181436.0ACB310F87B@bastion2.fedora.phx.redhat.com> Package azureus in Fedora 10 is now owned by djuran To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/azureus From pkgdb at fedoraproject.org Sun Jul 19 18:14:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 18:14:45 +0000 Subject: [pkgdb] azureus ownership updated Message-ID: <20090719181445.7182C10F892@bastion2.fedora.phx.redhat.com> Package azureus in Fedora 11 is now owned by djuran To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/azureus From tanguy at fedoraproject.org Sun Jul 19 18:24:50 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 19 Jul 2009 18:24:50 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis-0.2.3-pro.patch, 1.1, 1.2 scidavis.spec, 1.22, 1.23 Message-ID: <20090719182450.C186911C00D7@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23817 Modified Files: scidavis-0.2.3-pro.patch scidavis.spec Log Message: scidavis-0.2.3-pro.patch: scidavis.pro | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) Index: scidavis-0.2.3-pro.patch =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis-0.2.3-pro.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- scidavis-0.2.3-pro.patch 17 Jul 2009 13:13:16 -0000 1.1 +++ scidavis-0.2.3-pro.patch 19 Jul 2009 18:24:50 -0000 1.2 @@ -66,7 +66,7 @@ -#unix:LIBS += -lqwtplot3d -#unix:LIBS += -lqwt +unix:INCLUDEPATH += /usr/include/qwtplot3d -+unix:LIBS += -lqwtplot3d ++unix:LIBS += -lqwtplot3d-qt4 +unix:LIBS += -lqwt ##dynamically link against GSL and zlib installed system-wide -#unix:LIBS += -lgsl -lgslcblas -lz -lmuparser Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- scidavis.spec 19 Jul 2009 17:58:58 -0000 1.22 +++ scidavis.spec 19 Jul 2009 18:24:50 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -100,7 +100,10 @@ rm -rf %{buildroot} %doc manual/* %changelog -* Fri Jul 17 2009 Eric Tanguy - 0.2.3-4 +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 +- Rebuild + +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-4 - Rebuild * Fri Jul 17 2009 Eric Tanguy - 0.2.3-3 From jgarzik at fedoraproject.org Sun Jul 19 19:10:24 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Sun, 19 Jul 2009 19:10:24 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.1,1.2 Message-ID: <20090719191024.6178A11C049E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2402 Modified Files: cld.spec Log Message: spec: improve pkg desc. add tarball regen insns, per guidelines. Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cld.spec 17 Jul 2009 20:12:32 -0000 1.1 +++ cld.spec 19 Jul 2009 19:09:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.1.g023a127d%{?dist} +Release: 0.2.g023a127d%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -8,6 +8,7 @@ License: GPLv2 URL: http://hail.wiki.kernel.org/ # pulled from upstream git, commit 023a127de02c91f62f3911978b59244009c67b2c +# to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init Source3: cld.sysconf @@ -21,7 +22,13 @@ BuildRequires: texlive-latex ExcludeArch: ppc ppc64 %description -Coarse locking daemon. +Coarse locking daemon for cloud computing. This software provides +a cache-coherent, highly-available distributed filesystem for small +files. + +CLD's primary uses include consensus service (election of a master, +with fail-over, also known as lock service), reliable name space, +and reliable small file storage. %package devel Summary: Development files for %{name} @@ -94,7 +101,11 @@ fi %{_includedir}/* %changelog -* Fri Jul 17 2009 Jeff Garzik - 0.2-0.1.g023a127d%{?dist} +* Sun Jul 19 2009 Jeff Garzik - 0.2-0.2.g023a127d +- improve package description +- per guidelines, indicate how to regenerate tarball from git repo + +* Fri Jul 17 2009 Jeff Garzik - 0.2-0.1.g023a127d - update with new release version scheme - kill RPM_BUILD_ROOT From pkgdb at fedoraproject.org Sun Jul 19 19:10:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:36 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191037.086E810F897@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:35 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191035.41C9410F809@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:37 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191037.5EE5010F89E@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:39 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191039.7E3A810F8A6@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:40 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191040.89DD910F8A9@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:41 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191042.4E92D10F8AB@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:52 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191052.2783410F8AF@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:52 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191052.A56E810F8B1@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:53 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191053.4A51210F8B3@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:57 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191057.DAB7910F8B5@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:58 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191058.A2F1010F8B7@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:10:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:10:59 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191059.934C010F892@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:02 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191102.5075610F8B8@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:03 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191103.699AD10F8BB@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:01 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191101.D9AF110F897@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:06 +0000 Subject: [pkgdb] beagle: drago01 has given up watchcommits Message-ID: <20090719191106.31D6210F8BE@bastion2.fedora.phx.redhat.com> drago01 has given up the watchcommits acl on beagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:05 +0000 Subject: [pkgdb] beagle: drago01 has given up watchbugzilla Message-ID: <20090719191105.3D2A610F8BC@bastion2.fedora.phx.redhat.com> drago01 has given up the watchbugzilla acl on beagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From pkgdb at fedoraproject.org Sun Jul 19 19:11:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 19:11:08 +0000 Subject: [pkgdb] beagle: drago01 has given up commit Message-ID: <20090719191108.8EF2610F8C1@bastion2.fedora.phx.redhat.com> drago01 has given up the commit acl on beagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From epienbro at fedoraproject.org Sun Jul 19 19:45:21 2009 From: epienbro at fedoraproject.org (epienbro) Date: Sun, 19 Jul 2009 19:45:21 +0000 (UTC) Subject: rpms/nntpgrab/EL-5 .cvsignore, 1.21, 1.22 nntpgrab.spec, 1.38, 1.39 sources, 1.24, 1.25 Message-ID: <20090719194521.2508411C00D7@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/nntpgrab/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10339/EL-5 Modified Files: .cvsignore nntpgrab.spec sources Log Message: Update to 0.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/EL-5/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 29 Jun 2009 20:11:30 -0000 1.21 +++ .cvsignore 19 Jul 2009 19:44:50 -0000 1.22 @@ -1 +1 @@ -nntpgrab-0.5.0.tar.bz2 +nntpgrab-0.5.1.tar.bz2 Index: nntpgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/EL-5/nntpgrab.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- nntpgrab.spec 29 Jun 2009 20:11:30 -0000 1.38 +++ nntpgrab.spec 19 Jul 2009 19:44:50 -0000 1.39 @@ -1,6 +1,6 @@ Summary: Download files from the usenet Name: nntpgrab -Version: 0.5.0 +Version: 0.5.1 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -277,6 +277,9 @@ rm -rf %{buildroot} %{_datadir}/nntpgrab/web %changelog +* Sun Jul 19 2009 Erik van Pienbroek - 0.5.1-1 +- Update to 0.5.1 + * Mon Jun 29 2009 Erik van Pienbroek - 0.5.0-1 - Update to 0.5.0 - Added support for EPEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/EL-5/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 29 Jun 2009 20:11:30 -0000 1.24 +++ sources 19 Jul 2009 19:44:50 -0000 1.25 @@ -1 +1 @@ -c3dfeb2817b36369245fe3e52d31445a nntpgrab-0.5.0.tar.bz2 +e9b9f2e1f8882c7e93e4f2c7d6325f9d nntpgrab-0.5.1.tar.bz2 From epienbro at fedoraproject.org Sun Jul 19 19:45:21 2009 From: epienbro at fedoraproject.org (epienbro) Date: Sun, 19 Jul 2009 19:45:21 +0000 (UTC) Subject: rpms/nntpgrab/F-10 .cvsignore, 1.21, 1.22 nntpgrab.spec, 1.33, 1.34 sources, 1.23, 1.24 Message-ID: <20090719194521.4C35A11C00D7@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/nntpgrab/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10339/F-10 Modified Files: .cvsignore nntpgrab.spec sources Log Message: Update to 0.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-10/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 29 Jun 2009 20:11:31 -0000 1.21 +++ .cvsignore 19 Jul 2009 19:44:51 -0000 1.22 @@ -1 +1 @@ -nntpgrab-0.5.0.tar.bz2 +nntpgrab-0.5.1.tar.bz2 Index: nntpgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-10/nntpgrab.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- nntpgrab.spec 29 Jun 2009 20:11:31 -0000 1.33 +++ nntpgrab.spec 19 Jul 2009 19:44:51 -0000 1.34 @@ -1,6 +1,6 @@ Summary: Download files from the usenet Name: nntpgrab -Version: 0.5.0 +Version: 0.5.1 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -277,6 +277,9 @@ rm -rf %{buildroot} %{_datadir}/nntpgrab/web %changelog +* Sun Jul 19 2009 Erik van Pienbroek - 0.5.1-1 +- Update to 0.5.1 + * Mon Jun 29 2009 Erik van Pienbroek - 0.5.0-1 - Update to 0.5.0 - Added support for EPEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-10/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 29 Jun 2009 20:11:31 -0000 1.23 +++ sources 19 Jul 2009 19:44:51 -0000 1.24 @@ -1 +1 @@ -c3dfeb2817b36369245fe3e52d31445a nntpgrab-0.5.0.tar.bz2 +e9b9f2e1f8882c7e93e4f2c7d6325f9d nntpgrab-0.5.1.tar.bz2 From epienbro at fedoraproject.org Sun Jul 19 19:45:21 2009 From: epienbro at fedoraproject.org (epienbro) Date: Sun, 19 Jul 2009 19:45:21 +0000 (UTC) Subject: rpms/nntpgrab/F-11 .cvsignore, 1.21, 1.22 nntpgrab.spec, 1.37, 1.38 sources, 1.24, 1.25 Message-ID: <20090719194521.6E9F711C00D7@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/nntpgrab/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10339/F-11 Modified Files: .cvsignore nntpgrab.spec sources Log Message: Update to 0.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 29 Jun 2009 20:11:31 -0000 1.21 +++ .cvsignore 19 Jul 2009 19:44:51 -0000 1.22 @@ -1 +1 @@ -nntpgrab-0.5.0.tar.bz2 +nntpgrab-0.5.1.tar.bz2 Index: nntpgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-11/nntpgrab.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- nntpgrab.spec 29 Jun 2009 20:11:31 -0000 1.37 +++ nntpgrab.spec 19 Jul 2009 19:44:51 -0000 1.38 @@ -1,6 +1,6 @@ Summary: Download files from the usenet Name: nntpgrab -Version: 0.5.0 +Version: 0.5.1 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -277,6 +277,9 @@ rm -rf %{buildroot} %{_datadir}/nntpgrab/web %changelog +* Sun Jul 19 2009 Erik van Pienbroek - 0.5.1-1 +- Update to 0.5.1 + * Mon Jun 29 2009 Erik van Pienbroek - 0.5.0-1 - Update to 0.5.0 - Added support for EPEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/F-11/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 29 Jun 2009 20:11:31 -0000 1.24 +++ sources 19 Jul 2009 19:44:51 -0000 1.25 @@ -1 +1 @@ -c3dfeb2817b36369245fe3e52d31445a nntpgrab-0.5.0.tar.bz2 +e9b9f2e1f8882c7e93e4f2c7d6325f9d nntpgrab-0.5.1.tar.bz2 From epienbro at fedoraproject.org Sun Jul 19 19:45:21 2009 From: epienbro at fedoraproject.org (epienbro) Date: Sun, 19 Jul 2009 19:45:21 +0000 (UTC) Subject: rpms/nntpgrab/devel .cvsignore, 1.21, 1.22 nntpgrab.spec, 1.37, 1.38 sources, 1.24, 1.25 Message-ID: <20090719194521.9AD3F11C00D7@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/nntpgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10339/devel Modified Files: .cvsignore nntpgrab.spec sources Log Message: Update to 0.5.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/devel/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 29 Jun 2009 20:11:32 -0000 1.21 +++ .cvsignore 19 Jul 2009 19:44:51 -0000 1.22 @@ -1 +1 @@ -nntpgrab-0.5.0.tar.bz2 +nntpgrab-0.5.1.tar.bz2 Index: nntpgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/devel/nntpgrab.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- nntpgrab.spec 29 Jun 2009 20:11:32 -0000 1.37 +++ nntpgrab.spec 19 Jul 2009 19:44:51 -0000 1.38 @@ -1,6 +1,6 @@ Summary: Download files from the usenet Name: nntpgrab -Version: 0.5.0 +Version: 0.5.1 Release: 1%{?dist} License: GPLv2+ Group: Applications/Internet @@ -277,6 +277,9 @@ rm -rf %{buildroot} %{_datadir}/nntpgrab/web %changelog +* Sun Jul 19 2009 Erik van Pienbroek - 0.5.1-1 +- Update to 0.5.1 + * Mon Jun 29 2009 Erik van Pienbroek - 0.5.0-1 - Update to 0.5.0 - Added support for EPEL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/devel/sources,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sources 29 Jun 2009 20:11:32 -0000 1.24 +++ sources 19 Jul 2009 19:44:51 -0000 1.25 @@ -1 +1 @@ -c3dfeb2817b36369245fe3e52d31445a nntpgrab-0.5.0.tar.bz2 +e9b9f2e1f8882c7e93e4f2c7d6325f9d nntpgrab-0.5.1.tar.bz2 From wart at fedoraproject.org Sun Jul 19 20:09:29 2009 From: wart at fedoraproject.org (Michael Thomas) Date: Sun, 19 Jul 2009 20:09:29 +0000 (UTC) Subject: rpms/wormux/F-10 wormux-0.8.3-cflags.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 wormux.spec, 1.15, 1.16 Message-ID: <20090719200929.73D1911C00D7@cvs1.fedora.phx.redhat.com> Author: wart Update of /cvs/pkgs/rpms/wormux/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15390 Modified Files: .cvsignore sources wormux.spec Added Files: wormux-0.8.3-cflags.patch Log Message: Update to 0.8.4 wormux-0.8.3-cflags.patch: configure | 1 + 1 file changed, 1 insertion(+) --- NEW FILE wormux-0.8.3-cflags.patch --- diff -up wormux-0.8.3/configure~ wormux-0.8.3/configure --- wormux-0.8.3/configure~ 2009-03-05 22:24:17.000000000 +0200 +++ wormux-0.8.3/configure 2009-05-07 20:41:31.000000000 +0300 @@ -7608,6 +7608,7 @@ echo "${ECHO_T}$gccver" >&6; } GCC_FLAGS="$GCC_FLAGS -DWMX_LOG" fi + GCC_FLAGS="$GCC_FLAGS $CFLAGS" CFLAGS="$GCC_FLAGS" CXXFLAGS="$GCC_FLAGS" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 7 May 2009 15:51:56 -0000 1.7 +++ .cvsignore 19 Jul 2009 20:09:29 -0000 1.8 @@ -1 +1 @@ -wormux-0.8.3.tar.bz2 +wormux-0.8.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 7 May 2009 15:51:56 -0000 1.7 +++ sources 19 Jul 2009 20:09:29 -0000 1.8 @@ -1 +1 @@ -c4235a844ad9f7337f1a8da2c5c1b820 wormux-0.8.3.tar.bz2 +0aed316799723173f2d6e242af312382 wormux-0.8.4.tar.bz2 Index: wormux.spec =================================================================== RCS file: /cvs/pkgs/rpms/wormux/F-10/wormux.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- wormux.spec 7 May 2009 15:51:56 -0000 1.15 +++ wormux.spec 19 Jul 2009 20:09:29 -0000 1.16 @@ -1,5 +1,5 @@ Name: wormux -Version: 0.8.3 +Version: 0.8.4 Release: 1%{?dist} Summary: 2D convivial mass murder game @@ -7,12 +7,15 @@ Group: Amusements/Games License: GPLv2+ URL: http://www.wormux.org Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 +Patch0: wormux-0.8.3-cflags.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel BuildRequires: SDL_ttf-devel SDL_net-devel curl-devel libpng-devel BuildRequires: gettext libxml++-devel desktop-file-utils Requires: wormux-data +Requires(post): coreutils +Requires(postun): coreutils %description Battle your favorite free software mascots in the Wormux arena. With big @@ -31,9 +34,11 @@ Data files for wormux %prep %setup -q +%patch0 -p1 # Remove a backup file rm -f data/game_mode/rope_objects.xml~ +rm -f data/game_mode/skin_viewer.xml~ %build %configure --disable-nls --disable-dependency-tracking @@ -77,6 +82,8 @@ fi %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog %{_bindir}/%{name} +%{_bindir}/%{name}-index-server +%{_bindir}/%{name}-server %{_datadir}/applications/*.desktop %{_datadir}/icons/hicolor/32x32/apps/%{name}.png %{_datadir}/pixmaps/wormux*.png @@ -87,6 +94,10 @@ fi %{_datadir}/%{name} %changelog +* Wed Jul 18 2009 Wart 0.8.4-1 +- Update to 0.8.4 +- Build with $RPM_OPT_FLAGS. + * Wed May 6 2009 Wart 0.8.3-1 - Update to 0.8.3 - Make -data subpackage noarch From tanguy at fedoraproject.org Sun Jul 19 20:21:44 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 19 Jul 2009 20:21:44 +0000 (UTC) Subject: rpms/scidavis/F-10 scidavis-0.2.3-manual.patch, NONE, 1.1 scidavis-0.2.3-pro.patch, NONE, 1.1 scidavis.spec, 1.10, 1.11 scidavis-0.2.0-pro.patch, 1.1, NONE Message-ID: <20090719202144.B505E11C00D7@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17930 Modified Files: scidavis.spec Added Files: scidavis-0.2.3-manual.patch scidavis-0.2.3-pro.patch Removed Files: scidavis-0.2.0-pro.patch Log Message: scidavis-0.2.3-manual.patch: scidavis.pro | 5 ++ src/ApplicationWindow.cpp | 86 +++++++++++++++++++++++++++------------------- src/ApplicationWindow.h | 6 ++- 3 files changed, 62 insertions(+), 35 deletions(-) --- NEW FILE scidavis-0.2.3-manual.patch --- Index: scidavis/src/ApplicationWindow.h =================================================================== --- scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1180) +++ scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1181) @@ -638,6 +638,7 @@ void showHelp(); static void showStandAloneHelp(); void chooseHelpFolder(); + QString guessHelpFolder(); void showPlotWizard(); void showFitPolynomDialog(); void showIntegrationDialog(); @@ -1057,7 +1058,10 @@ QAction *actionShowExpDecayDialog, *actionShowTwoExpDecayDialog, *actionShowExpDecay3Dialog; QAction *actionFitExpGrowth, *actionFitSigmoidal, *actionFitGauss, *actionFitLorentz, *actionShowFitDialog; QAction *actionShowAxisDialog, *actionShowTitleDialog; - QAction *actionAbout, *actionShowHelp, *actionChooseHelpFolder; + QAction *actionAbout, *actionShowHelp; +#ifdef DYNAMIC_MANUAL_PATH + QAction *actionChooseHelpFolder; +#endif QAction *actionRename, *actionCloseWindow, *actionConvertTable; QAction *actionAddColToTable, *actionDeleteLayer, *actionInterpolate; QAction *actionResizeActiveWindow, *actionHideActiveWindow; Index: scidavis/src/ApplicationWindow.cpp =================================================================== --- scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1180) +++ scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1181) @@ -915,7 +915,9 @@ help->setFont(appFont); help->addAction(actionShowHelp); +#ifdef DYNAMIC_MANUAL_PATH help->addAction(actionChooseHelpFolder); +#endif help->addSeparator(); help->addAction(actionHomePage); help->addAction(actionCheckUpdates); @@ -4183,42 +4185,27 @@ settings.beginGroup("/Paths"); workingDir = settings.value("/WorkingDir", qApp->applicationDirPath()).toString(); +#ifdef DYNAMIC_MANUAL_PATH #ifdef MANUAL_PATH helpFilePath = settings.value("/HelpFile", MANUAL_PATH "/index.html").toString(); #elif defined(DOC_PATH) helpFilePath = settings.value("/HelpFile", DOC_PATH "/manual/index.html").toString(); -#elif defined(Q_OS_WIN) - helpFilePath = settings.value("/HelpFile", qApp->applicationDirPath()+"/manual/index.html").toString(); #else QVariant help_file_setting = settings.value("/HelpFile"); if (help_file_setting.isValid()) helpFilePath = help_file_setting.toString(); - else { - QFileInfo help_file_info; - QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") - .arg((scidavis_version & 0xff0000) >> 16) - .arg((scidavis_version & 0x00ff00) >> 8) - .arg(scidavis_version & 0x0000ff); - help_file_info.setFile(help_dir_base); - if (!help_file_info.exists()) - help_dir_base = "/usr/share/doc/scidavis"; - QStringList help_dir_suffixes; - QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively - help_dir_suffixes - << QString("-") + locale - << QString("-") + locale.section('_',0,0) - << QString("-") + appLanguage - << "-en" - << ""; - foreach (QString suffix, help_dir_suffixes) { - help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); - if (help_file_info.exists()) - break; - } - // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist - helpFilePath = help_file_info.absoluteFilePath(); - } + else + helpFilePath = guessHelpFolder(); #endif +#else // ifdef DYNAMIC_MANUAL_PATH +#ifdef MANUAL_PATH + helpFilePath = MANUAL_PATH "/index.html"; +#elif defined(DOC_PATH) + helpFilePath = DOC_PATH "/manual/index.html"; +#else + helpFilePath = guessHelpFolder(); +#endif +#endif #ifdef Q_OS_WIN fitPluginsPath = settings.value("/FitPlugins", "fitPlugins").toString(); @@ -8237,13 +8224,8 @@ tr("Please indicate the location of the help file!")+"
"+ tr("The manual can be downloaded from the following internet address:")+ "

http://sourceforge.net/project/showfiles.php?group_id=199120

"); - QString fn = QFileDialog::getOpenFileName(QDir::currentDirPath(), "*.html", this ); - if (!fn.isEmpty()) - { - QFileInfo fi(fn); - helpFilePath=fi.absFilePath(); - saveSettings(); - } + chooseHelpFolder(); + saveSettings(); } QFileInfo fi(helpFilePath); @@ -10721,8 +10703,10 @@ actionShowHelp->setShortcut( tr("Ctrl+H") ); connect(actionShowHelp, SIGNAL(activated()), this, SLOT(showHelp())); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder = new QAction(tr("&Choose Help Folder..."), this); connect(actionChooseHelpFolder, SIGNAL(activated()), this, SLOT(chooseHelpFolder())); +#endif actionRename = new QAction(tr("&Rename Window"), this); connect(actionRename, SIGNAL(activated()), this, SLOT(renameActiveWindow())); @@ -11187,7 +11171,10 @@ actionShowHelp->setMenuText(tr("&Help")); actionShowHelp->setShortcut(tr("Ctrl+H")); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder->setMenuText(tr("&Choose Help Folder...")); +#endif + actionRename->setMenuText(tr("&Rename Window")); actionCloseWindow->setMenuText(tr("Close &Window")); @@ -13695,3 +13682,34 @@ result.append(aspect->name()); return result; } + +QString ApplicationWindow::guessHelpFolder() +{ +#if defined(Q_OS_WIN) + return qApp->applicationDirPath()+"/manual/index.html"; +#else + QFileInfo help_file_info; + QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") + .arg((SciDAVis::version() & 0xff0000) >> 16) + .arg((SciDAVis::version() & 0x00ff00) >> 8) + .arg(SciDAVis::version() & 0x0000ff); + help_file_info.setFile(help_dir_base); + if (!help_file_info.exists()) + help_dir_base = "/usr/share/doc/scidavis"; + QStringList help_dir_suffixes; + QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively + help_dir_suffixes + << QString("-") + locale + << QString("-") + locale.section('_',0,0) + << QString("-") + appLanguage + << "-en" + << ""; + foreach (QString suffix, help_dir_suffixes) { + help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); + if (help_file_info.exists()) + break; + } + // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist + return help_file_info.absoluteFilePath(); +#endif +} Index: scidavis/scidavis.pro =================================================================== --- scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1180) +++ scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1181) @@ -42,6 +42,11 @@ ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. # manual.path = $$INSTALLBASE/share/doc/scidavis/manual +### Enables choosing of help folder at runtime, instead of relying on the above path only. +### The downside is that the help folder will be remembered as a configuration option, so a binary +### package cannot easily update the path for its users. +### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. +DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. scidavis-0.2.3-pro.patch: scidavis.pro | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) --- NEW FILE scidavis-0.2.3-pro.patch --- --- scidavis-0.2.3/scidavis/scidavis.pro 2009-07-17 15:02:39.842755567 +0200 +++ scidavis-0.2.3/scidavis/scidavis.pro.new 2009-07-17 15:06:10.504756138 +0200 @@ -13,7 +13,7 @@ ### what to install INSTALLS += target # this is the program itself -INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. +#INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. ### Comment out the next line if you do not want automatic compilation and installation of the translations INSTALLS += translationfiles @@ -41,12 +41,12 @@ win32: documentation.path = "$$INSTALLBASE" # ... on Winodws ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. -# manual.path = $$INSTALLBASE/share/doc/scidavis/manual +manual.path = $$INSTALLBASE/share/doc/scidavis-manual-0.2.3 ### Enables choosing of help folder at runtime, instead of relying on the above path only. ### The downside is that the help folder will be remembered as a configuration option, so a binary ### package cannot easily update the path for its users. ### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. -DEFINES += DYNAMIC_MANUAL_PATH +#DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. @@ -87,34 +87,34 @@ ### are compiled against Qt4), dynamically against everything else. ############################################################################# -unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include -unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a +#unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include +#unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a -unix:INCLUDEPATH += ../3rdparty/qwt/src -unix:LIBS += ../3rdparty/qwt/lib/libqwt.a +#unix:INCLUDEPATH += ../3rdparty/qwt/src +#unix:LIBS += ../3rdparty/qwt/lib/libqwt.a -unix:LIBS += -L/usr/lib$${libsuff} -unix:LIBS += -lgsl -lgslcblas -lz +#unix:LIBS += -L/usr/lib$${libsuff} +#unix:LIBS += -lgsl -lgslcblas -lz ### muparser 1.30 does not compile as a shared lib on Linux -unix:LIBS += -L/usr/local/lib$${libsuff} -unix:LIBS += /usr/local/lib/libmuparser.a -unix:INCLUDEPATH += /usr/local/include +#unix:LIBS += -L/usr/local/lib$${libsuff} +#unix:LIBS += /usr/local/lib/libmuparser.a +#unix:INCLUDEPATH += /usr/local/include ############################################################################# ### Link everything dynamically ############################################################################# -#unix:INCLUDEPATH += /usr/include/qwt5 -#unix:LIBS += -L/usr/lib$${libsuff} +unix:INCLUDEPATH += /usr/include/qwt +unix:LIBS += -L/usr/lib$${libsuff} ## dynamically link against Qwt(3D) installed system-wide ## WARNING: make sure they are compiled against >= Qt4.2 ## Mixing Qt 4.2 and Qt >= 4.3 compiled stuff may also ## cause problems. -#unix:INCLUDEPATH += /usr/include/qwtplot3d -#unix:LIBS += -lqwtplot3d -#unix:LIBS += -lqwt +unix:INCLUDEPATH += /usr/include/qwtplot3d +unix:LIBS += -lqwtplot3d-qt4 +unix:LIBS += -lqwt ##dynamically link against GSL and zlib installed system-wide -#unix:LIBS += -lgsl -lgslcblas -lz -lmuparser +unix:LIBS += -lgsl -lgslcblas -lz -lmuparser ############################################################################# ### Default settings for Windows Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/scidavis.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- scidavis.spec 5 Jul 2009 18:48:02 -0000 1.10 +++ scidavis.spec 19 Jul 2009 20:21:14 -0000 1.11 @@ -1,10 +1,11 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 1%{?dist} +Release: 5%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 -Patch0: scidavis-0.2.0-pro.patch +Patch0: scidavis-0.2.3-manual.patch +Patch1: scidavis-0.2.3-pro.patch URL: http://scidavis.sourceforge.net/ License: GPLv2 Group: Applications/Engineering @@ -29,6 +30,7 @@ This package contains the manual for Sci %prep %setup -q -a 1 %patch0 -p1 +%patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml @@ -98,6 +100,18 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 +- Rebuild + +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-4 +- Rebuild + +* Fri Jul 17 2009 Eric Tanguy - 0.2.3-3 +- Patch for manual path + +* Mon Jul 13 2009 Eric Tanguy - 0.2.3-2 +- BZ #510968 + * Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 - Update to 0.2.3 --- scidavis-0.2.0-pro.patch DELETED --- From tanguy at fedoraproject.org Sun Jul 19 20:24:51 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Sun, 19 Jul 2009 20:24:51 +0000 (UTC) Subject: rpms/scidavis/devel scidavis-0.2.3-manual.patch, NONE, 1.1 scidavis-0.2.3-pro.patch, NONE, 1.1 scidavis.spec, 1.19, 1.20 scidavis-0.2.0-pro.patch, 1.1, NONE Message-ID: <20090719202451.1D17D11C00D7@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18627 Modified Files: scidavis.spec Added Files: scidavis-0.2.3-manual.patch scidavis-0.2.3-pro.patch Removed Files: scidavis-0.2.0-pro.patch Log Message: scidavis-0.2.3-manual.patch: scidavis.pro | 5 ++ src/ApplicationWindow.cpp | 86 +++++++++++++++++++++++++++------------------- src/ApplicationWindow.h | 6 ++- 3 files changed, 62 insertions(+), 35 deletions(-) --- NEW FILE scidavis-0.2.3-manual.patch --- Index: scidavis/src/ApplicationWindow.h =================================================================== --- scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1180) +++ scidavis-0.2.3/scidavis/src/ApplicationWindow.h (r??vision 1181) @@ -638,6 +638,7 @@ void showHelp(); static void showStandAloneHelp(); void chooseHelpFolder(); + QString guessHelpFolder(); void showPlotWizard(); void showFitPolynomDialog(); void showIntegrationDialog(); @@ -1057,7 +1058,10 @@ QAction *actionShowExpDecayDialog, *actionShowTwoExpDecayDialog, *actionShowExpDecay3Dialog; QAction *actionFitExpGrowth, *actionFitSigmoidal, *actionFitGauss, *actionFitLorentz, *actionShowFitDialog; QAction *actionShowAxisDialog, *actionShowTitleDialog; - QAction *actionAbout, *actionShowHelp, *actionChooseHelpFolder; + QAction *actionAbout, *actionShowHelp; +#ifdef DYNAMIC_MANUAL_PATH + QAction *actionChooseHelpFolder; +#endif QAction *actionRename, *actionCloseWindow, *actionConvertTable; QAction *actionAddColToTable, *actionDeleteLayer, *actionInterpolate; QAction *actionResizeActiveWindow, *actionHideActiveWindow; Index: scidavis/src/ApplicationWindow.cpp =================================================================== --- scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1180) +++ scidavis-0.2.3/scidavis/src/ApplicationWindow.cpp (r??vision 1181) @@ -915,7 +915,9 @@ help->setFont(appFont); help->addAction(actionShowHelp); +#ifdef DYNAMIC_MANUAL_PATH help->addAction(actionChooseHelpFolder); +#endif help->addSeparator(); help->addAction(actionHomePage); help->addAction(actionCheckUpdates); @@ -4183,42 +4185,27 @@ settings.beginGroup("/Paths"); workingDir = settings.value("/WorkingDir", qApp->applicationDirPath()).toString(); +#ifdef DYNAMIC_MANUAL_PATH #ifdef MANUAL_PATH helpFilePath = settings.value("/HelpFile", MANUAL_PATH "/index.html").toString(); #elif defined(DOC_PATH) helpFilePath = settings.value("/HelpFile", DOC_PATH "/manual/index.html").toString(); -#elif defined(Q_OS_WIN) - helpFilePath = settings.value("/HelpFile", qApp->applicationDirPath()+"/manual/index.html").toString(); #else QVariant help_file_setting = settings.value("/HelpFile"); if (help_file_setting.isValid()) helpFilePath = help_file_setting.toString(); - else { - QFileInfo help_file_info; - QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") - .arg((scidavis_version & 0xff0000) >> 16) - .arg((scidavis_version & 0x00ff00) >> 8) - .arg(scidavis_version & 0x0000ff); - help_file_info.setFile(help_dir_base); - if (!help_file_info.exists()) - help_dir_base = "/usr/share/doc/scidavis"; - QStringList help_dir_suffixes; - QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively - help_dir_suffixes - << QString("-") + locale - << QString("-") + locale.section('_',0,0) - << QString("-") + appLanguage - << "-en" - << ""; - foreach (QString suffix, help_dir_suffixes) { - help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); - if (help_file_info.exists()) - break; - } - // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist - helpFilePath = help_file_info.absoluteFilePath(); - } + else + helpFilePath = guessHelpFolder(); #endif +#else // ifdef DYNAMIC_MANUAL_PATH +#ifdef MANUAL_PATH + helpFilePath = MANUAL_PATH "/index.html"; +#elif defined(DOC_PATH) + helpFilePath = DOC_PATH "/manual/index.html"; +#else + helpFilePath = guessHelpFolder(); +#endif +#endif #ifdef Q_OS_WIN fitPluginsPath = settings.value("/FitPlugins", "fitPlugins").toString(); @@ -8237,13 +8224,8 @@ tr("Please indicate the location of the help file!")+"
"+ tr("The manual can be downloaded from the following internet address:")+ "

http://sourceforge.net/project/showfiles.php?group_id=199120

"); - QString fn = QFileDialog::getOpenFileName(QDir::currentDirPath(), "*.html", this ); - if (!fn.isEmpty()) - { - QFileInfo fi(fn); - helpFilePath=fi.absFilePath(); - saveSettings(); - } + chooseHelpFolder(); + saveSettings(); } QFileInfo fi(helpFilePath); @@ -10721,8 +10703,10 @@ actionShowHelp->setShortcut( tr("Ctrl+H") ); connect(actionShowHelp, SIGNAL(activated()), this, SLOT(showHelp())); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder = new QAction(tr("&Choose Help Folder..."), this); connect(actionChooseHelpFolder, SIGNAL(activated()), this, SLOT(chooseHelpFolder())); +#endif actionRename = new QAction(tr("&Rename Window"), this); connect(actionRename, SIGNAL(activated()), this, SLOT(renameActiveWindow())); @@ -11187,7 +11171,10 @@ actionShowHelp->setMenuText(tr("&Help")); actionShowHelp->setShortcut(tr("Ctrl+H")); +#ifdef DYNAMIC_MANUAL_PATH actionChooseHelpFolder->setMenuText(tr("&Choose Help Folder...")); +#endif + actionRename->setMenuText(tr("&Rename Window")); actionCloseWindow->setMenuText(tr("Close &Window")); @@ -13695,3 +13682,34 @@ result.append(aspect->name()); return result; } + +QString ApplicationWindow::guessHelpFolder() +{ +#if defined(Q_OS_WIN) + return qApp->applicationDirPath()+"/manual/index.html"; +#else + QFileInfo help_file_info; + QString help_dir_base = QString("/usr/share/doc/scidavis-%1.%2.%3") + .arg((SciDAVis::version() & 0xff0000) >> 16) + .arg((SciDAVis::version() & 0x00ff00) >> 8) + .arg(SciDAVis::version() & 0x0000ff); + help_file_info.setFile(help_dir_base); + if (!help_file_info.exists()) + help_dir_base = "/usr/share/doc/scidavis"; + QStringList help_dir_suffixes; + QString locale = QLocale().name(); // language_country according to ISO 639 and 3166, respectively + help_dir_suffixes + << QString("-") + locale + << QString("-") + locale.section('_',0,0) + << QString("-") + appLanguage + << "-en" + << ""; + foreach (QString suffix, help_dir_suffixes) { + help_file_info.setFile(help_dir_base + QString("/manual%1/index.html").arg(suffix)); + if (help_file_info.exists()) + break; + } + // intentionally defaults to /usr/share/doc/scidavis/manual/index.html even if it doesn't exist + return help_file_info.absoluteFilePath(); +#endif +} Index: scidavis/scidavis.pro =================================================================== --- scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1180) +++ scidavis-0.2.3/scidavis/scidavis.pro (r??vision 1181) @@ -42,6 +42,11 @@ ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. # manual.path = $$INSTALLBASE/share/doc/scidavis/manual +### Enables choosing of help folder at runtime, instead of relying on the above path only. +### The downside is that the help folder will be remembered as a configuration option, so a binary +### package cannot easily update the path for its users. +### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. +DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. scidavis-0.2.3-pro.patch: scidavis.pro | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) --- NEW FILE scidavis-0.2.3-pro.patch --- --- scidavis-0.2.3/scidavis/scidavis.pro 2009-07-17 15:02:39.842755567 +0200 +++ scidavis-0.2.3/scidavis/scidavis.pro.new 2009-07-17 15:06:10.504756138 +0200 @@ -13,7 +13,7 @@ ### what to install INSTALLS += target # this is the program itself -INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. +#INSTALLS += documentation # README, INSTALL.html, manual (if present in the manual subfolder), etc. ### Comment out the next line if you do not want automatic compilation and installation of the translations INSTALLS += translationfiles @@ -41,12 +41,12 @@ win32: documentation.path = "$$INSTALLBASE" # ... on Winodws ### Usually, the manual will be expected in the "manual" subfolder of "documentation.path" (see above). ### You can override this, uncomment and adjust the path behind the '=' in the next line. -# manual.path = $$INSTALLBASE/share/doc/scidavis/manual +manual.path = $$INSTALLBASE/share/doc/scidavis-manual-0.2.3 ### Enables choosing of help folder at runtime, instead of relying on the above path only. ### The downside is that the help folder will be remembered as a configuration option, so a binary ### package cannot easily update the path for its users. ### Dynamic selection of the manual path was the only available option up until SciDAVis 0.2.3. -DEFINES += DYNAMIC_MANUAL_PATH +#DEFINES += DYNAMIC_MANUAL_PATH ### Important: translationfiles.path will be the directory where scidavis expects ### the translation .qm files at runtime. Therefore you need to set it corretly even if ### you do not use this project file to generate the translation files. @@ -87,34 +87,34 @@ ### are compiled against Qt4), dynamically against everything else. ############################################################################# -unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include -unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a +#unix:INCLUDEPATH += ../3rdparty/qwtplot3d/include +#unix:LIBS += ../3rdparty/qwtplot3d/lib/libqwtplot3d.a -unix:INCLUDEPATH += ../3rdparty/qwt/src -unix:LIBS += ../3rdparty/qwt/lib/libqwt.a +#unix:INCLUDEPATH += ../3rdparty/qwt/src +#unix:LIBS += ../3rdparty/qwt/lib/libqwt.a -unix:LIBS += -L/usr/lib$${libsuff} -unix:LIBS += -lgsl -lgslcblas -lz +#unix:LIBS += -L/usr/lib$${libsuff} +#unix:LIBS += -lgsl -lgslcblas -lz ### muparser 1.30 does not compile as a shared lib on Linux -unix:LIBS += -L/usr/local/lib$${libsuff} -unix:LIBS += /usr/local/lib/libmuparser.a -unix:INCLUDEPATH += /usr/local/include +#unix:LIBS += -L/usr/local/lib$${libsuff} +#unix:LIBS += /usr/local/lib/libmuparser.a +#unix:INCLUDEPATH += /usr/local/include ############################################################################# ### Link everything dynamically ############################################################################# -#unix:INCLUDEPATH += /usr/include/qwt5 -#unix:LIBS += -L/usr/lib$${libsuff} +unix:INCLUDEPATH += /usr/include/qwt +unix:LIBS += -L/usr/lib$${libsuff} ## dynamically link against Qwt(3D) installed system-wide ## WARNING: make sure they are compiled against >= Qt4.2 ## Mixing Qt 4.2 and Qt >= 4.3 compiled stuff may also ## cause problems. -#unix:INCLUDEPATH += /usr/include/qwtplot3d -#unix:LIBS += -lqwtplot3d -#unix:LIBS += -lqwt +unix:INCLUDEPATH += /usr/include/qwtplot3d +unix:LIBS += -lqwtplot3d-qt4 +unix:LIBS += -lqwt ##dynamically link against GSL and zlib installed system-wide -#unix:LIBS += -lgsl -lgslcblas -lz -lmuparser +unix:LIBS += -lgsl -lgslcblas -lz -lmuparser ############################################################################# ### Default settings for Windows Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/scidavis.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- scidavis.spec 5 Jul 2009 18:17:44 -0000 1.19 +++ scidavis.spec 19 Jul 2009 20:24:20 -0000 1.20 @@ -1,10 +1,11 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 1%{?dist} +Release: 5%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 -Patch0: scidavis-0.2.0-pro.patch +Patch0: scidavis-0.2.3-manual.patch +Patch1: scidavis-0.2.3-pro.patch URL: http://scidavis.sourceforge.net/ License: GPLv2 Group: Applications/Engineering @@ -29,6 +30,7 @@ This package contains the manual for Sci %prep %setup -q -a 1 %patch0 -p1 +%patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml @@ -98,6 +100,18 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 +- Rebuild + +* Sun Jul 19 2009 Eric Tanguy - 0.2.3-4 +- Rebuild + +* Fri Jul 17 2009 Eric Tanguy - 0.2.3-3 +- Patch for manual path + +* Mon Jul 13 2009 Eric Tanguy - 0.2.3-2 +- BZ #510968 + * Sun Jul 05 2009 Eric Tanguy - 0.2.3-1 - Update to 0.2.3 --- scidavis-0.2.0-pro.patch DELETED --- From davej at fedoraproject.org Sun Jul 19 20:29:55 2009 From: davej at fedoraproject.org (Dave Jones) Date: Sun, 19 Jul 2009 20:29:55 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc3-git4.bz2.sign, NONE, 1.1 .cvsignore, 1.1099, 1.1100 kernel.spec, 1.1636, 1.1637 sources, 1.1057, 1.1058 upstream, 1.971, 1.972 patch-2.6.31-rc3-git3.bz2.sign, 1.1, NONE Message-ID: <20090719202955.4C1E211C00D7@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20016 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc3-git4.bz2.sign Removed Files: patch-2.6.31-rc3-git3.bz2.sign Log Message: 2.6.31-rc3-git4 --- NEW FILE patch-2.6.31-rc3-git4.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKYbn3yGugalF9Dw4RAksBAKCQr8ni7a+sXL6A+uEiz3Xm23glkgCfbzte R57dPJP58cWaOPUKbB5LDpQ= =1ly6 -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1099 retrieving revision 1.1100 diff -u -p -r1.1099 -r1.1100 --- .cvsignore 17 Jul 2009 02:07:24 -0000 1.1099 +++ .cvsignore 19 Jul 2009 20:29:24 -0000 1.1100 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git3.bz2 +patch-2.6.31-rc3-git4.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1636 retrieving revision 1.1637 diff -u -p -r1.1636 -r1.1637 --- kernel.spec 19 Jul 2009 01:33:35 -0000 1.1636 +++ kernel.spec 19 Jul 2009 20:29:24 -0000 1.1637 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 3 # The git snapshot level -%define gitrev 3 +%define gitrev 4 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -106,7 +106,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 0 +%define rawhide_skip_docs 1 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1885,6 +1885,9 @@ fi # and build. %changelog +* Sun Jul 19 2009 Dave Jones 2.6.31-0.74.rc3.git4 +- 2.6.31-rc3-git4 + * Sat Jul 18 2009 Matthew Garrett - linux-2.6-driver-level-usb-autosuspend.diff - allow drivers to enable autopm - linux-2.6-fix-usb-serial-autosuspend.diff - fix generic usb-serial autopm Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1057 retrieving revision 1.1058 diff -u -p -r1.1057 -r1.1058 --- sources 17 Jul 2009 02:07:24 -0000 1.1057 +++ sources 19 Jul 2009 20:29:24 -0000 1.1058 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2 -6380dc76faf177c9f3882e04f2183cb4 patch-2.6.31-rc3-git3.bz2 +e79961ca0920257c7ea8572942ce9dc9 patch-2.6.31-rc3-git4.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.971 retrieving revision 1.972 diff -u -p -r1.971 -r1.972 --- upstream 17 Jul 2009 02:07:24 -0000 1.971 +++ upstream 19 Jul 2009 20:29:24 -0000 1.972 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git3.bz2 +patch-2.6.31-rc3-git4.bz2 --- patch-2.6.31-rc3-git3.bz2.sign DELETED --- From pkgdb at fedoraproject.org Sun Jul 19 20:46:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:46:34 +0000 Subject: [pkgdb] gnome-do-plugins was added for nushio Message-ID: <20090719204634.8868E10F891@bastion2.fedora.phx.redhat.com> kevin has added Package gnome-do-plugins with summary Plugins for gnome-do kevin has approved Package gnome-do-plugins kevin has added a Fedora devel branch for gnome-do-plugins with an owner of nushio kevin has approved gnome-do-plugins in Fedora devel kevin has approved Package gnome-do-plugins kevin has set commit to Approved for 107427 on gnome-do-plugins (Fedora devel) kevin has set checkout to Approved for 107427 on gnome-do-plugins (Fedora devel) kevin has set build to Approved for 107427 on gnome-do-plugins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do-plugins From pkgdb at fedoraproject.org Sun Jul 19 20:46:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:46:35 +0000 Subject: [pkgdb] gnome-do-plugins summary updated by kevin Message-ID: <20090719204635.CB1E110F897@bastion2.fedora.phx.redhat.com> kevin set package gnome-do-plugins summary to Plugins for gnome-do To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do-plugins From kevin at fedoraproject.org Sun Jul 19 20:46:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:46:44 +0000 (UTC) Subject: rpms/gnome-do-plugins - New directory Message-ID: <20090719204644.2919611C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnome-do-plugins In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsK22253/rpms/gnome-do-plugins Log Message: Directory /cvs/pkgs/rpms/gnome-do-plugins added to the repository From pkgdb at fedoraproject.org Sun Jul 19 20:46:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:46:35 +0000 Subject: [pkgdb] gnome-do-plugins (Fedora, 11) updated by kevin Message-ID: <20090719204635.DC58910F89E@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for gnome-do-plugins kevin has set commit to Approved for 107427 on gnome-do-plugins (Fedora 11) kevin has set checkout to Approved for 107427 on gnome-do-plugins (Fedora 11) kevin has set build to Approved for 107427 on gnome-do-plugins (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gnome-do-plugins From kevin at fedoraproject.org Sun Jul 19 20:46:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:46:44 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel - New directory Message-ID: <20090719204644.50B6E11C0263@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsK22253/rpms/gnome-do-plugins/devel Log Message: Directory /cvs/pkgs/rpms/gnome-do-plugins/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:46:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:46:50 +0000 (UTC) Subject: rpms/gnome-do-plugins Makefile,NONE,1.1 Message-ID: <20090719204650.4D15D11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnome-do-plugins In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsK22253/rpms/gnome-do-plugins Added Files: Makefile Log Message: Setup of module gnome-do-plugins --- NEW FILE Makefile --- # Top level Makefile for module gnome-do-plugins all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:46:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:46:50 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719204650.7CF5511C0489@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsK22253/rpms/gnome-do-plugins/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module gnome-do-plugins --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: gnome-do-plugins # $Id: Makefile,v 1.1 2009/07/19 20:46:50 kevin Exp $ NAME := gnome-do-plugins SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:47:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:47:44 +0000 Subject: [pkgdb] lxrandr was added for cwickert Message-ID: <20090719204744.C20CD10F87B@bastion2.fedora.phx.redhat.com> kevin has added Package lxrandr with summary Simple monitor config tool kevin has approved Package lxrandr kevin has added a Fedora devel branch for lxrandr with an owner of cwickert kevin has approved lxrandr in Fedora devel kevin has approved Package lxrandr kevin has set commit to Approved for 107427 on lxrandr (Fedora devel) kevin has set checkout to Approved for 107427 on lxrandr (Fedora devel) kevin has set build to Approved for 107427 on lxrandr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxrandr From pkgdb at fedoraproject.org Sun Jul 19 20:47:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:47:46 +0000 Subject: [pkgdb] lxrandr summary updated by kevin Message-ID: <20090719204746.9D62310F897@bastion2.fedora.phx.redhat.com> kevin set package lxrandr summary to Simple monitor config tool To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxrandr From pkgdb at fedoraproject.org Sun Jul 19 20:47:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:47:46 +0000 Subject: [pkgdb] lxrandr (Fedora, 10) updated by kevin Message-ID: <20090719204746.A659610F89E@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for lxrandr kevin has set commit to Approved for 107427 on lxrandr (Fedora 10) kevin has set checkout to Approved for 107427 on lxrandr (Fedora 10) kevin has set build to Approved for 107427 on lxrandr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxrandr From kevin at fedoraproject.org Sun Jul 19 20:48:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:48:04 +0000 (UTC) Subject: rpms/lxrandr - New directory Message-ID: <20090719204804.1CBE811C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxrandr In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsx23148/rpms/lxrandr Log Message: Directory /cvs/pkgs/rpms/lxrandr added to the repository From pkgdb at fedoraproject.org Sun Jul 19 20:47:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:47:46 +0000 Subject: [pkgdb] lxrandr (Fedora, 10) updated by kevin Message-ID: <20090719204746.B10B610F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for lxrandr kevin has set commit to Approved for 107427 on lxrandr (Fedora 11) kevin has set checkout to Approved for 107427 on lxrandr (Fedora 11) kevin has set build to Approved for 107427 on lxrandr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxrandr From kevin at fedoraproject.org Sun Jul 19 20:48:04 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:48:04 +0000 (UTC) Subject: rpms/lxrandr/devel - New directory Message-ID: <20090719204804.453AC11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxrandr/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsx23148/rpms/lxrandr/devel Log Message: Directory /cvs/pkgs/rpms/lxrandr/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:48:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:48:10 +0000 (UTC) Subject: rpms/lxrandr Makefile,NONE,1.1 Message-ID: <20090719204810.09D3B11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxrandr In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsx23148/rpms/lxrandr Added Files: Makefile Log Message: Setup of module lxrandr --- NEW FILE Makefile --- # Top level Makefile for module lxrandr all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:48:10 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:48:10 +0000 (UTC) Subject: rpms/lxrandr/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719204810.42C8711C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxrandr/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsx23148/rpms/lxrandr/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module lxrandr --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: lxrandr # $Id: Makefile,v 1.1 2009/07/19 20:48:10 kevin Exp $ NAME := lxrandr SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From cwickert at fedoraproject.org Sun Jul 19 20:49:48 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 20:49:48 +0000 (UTC) Subject: rpms/gst-mixer/devel gst-mixer-2.26.0-help-uri.patch, NONE, 1.1 gst-mixer.spec, 1.1, 1.2 Message-ID: <20090719204948.7E4D811C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gst-mixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23425 Modified Files: gst-mixer.spec Added Files: gst-mixer-2.26.0-help-uri.patch Log Message: * Sun Jul 19 2009 Christoph Wickert - 2.26.0-3 - Fix 'Help' button (#508531) - Add category 'Mixer' to menu enty for nested menus in multimedia-menus gst-mixer-2.26.0-help-uri.patch: window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE gst-mixer-2.26.0-help-uri.patch --- --- gnome-media-2.26.0/gst-mixer/src/window.c.orig 2009-07-19 22:17:24.000000000 +0200 +++ gnome-media-2.26.0/gst-mixer/src/window.c 2009-07-19 22:17:46.000000000 +0200 @@ -126,7 +126,7 @@ cb_help (GtkAction *action, GnomeVolumeControlWindow *win) { - open_uri (GTK_WINDOW (win), "ghelp:gnome-volume-control"); + open_uri (GTK_WINDOW (win), "ghelp:gst-mixer"); } static void Index: gst-mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gst-mixer/devel/gst-mixer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gst-mixer.spec 4 May 2009 21:12:06 -0000 1.1 +++ gst-mixer.spec 19 Jul 2009 20:49:48 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Legacy gnome-volume-control for advanced use cases Name: gst-mixer Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.26/gnome-media-%{version}.tar.bz2 @@ -11,6 +11,7 @@ Source: http://download.gnome.or Patch0: gst-mixer-2.26.0-rebrand.patch # Fixes Launchpad bug #345645 (patch from that report / upstream) Patch1: gst-mixer-2.26.0-switch.patch +Patch2: gst-mixer-2.26.0-help-uri.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://www.gnome.org ExcludeArch: s390 s390x @@ -49,6 +50,7 @@ GNOME volume control application cannot %setup -q -n gnome-media-%{version} %patch0 -p1 %patch1 -p1 +%patch2 -p1 mv gst-mixer/gnome-volume-control.desktop.in.in gst-mixer/gst-mixer.desktop.in.in mv gst-mixer/gnome-volume-control.schemas.in gst-mixer/gst-mixer.schemas.in @@ -111,6 +113,11 @@ done %find_lang %{gettext_package} --all-name --with-gnome +desktop-file-install \ + --add-category=Mixer \ + --dir=$RPM_BUILD_ROOT/%{_datadir}/applications \ + $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop + %clean rm -rf $RPM_BUILD_ROOT @@ -159,6 +166,10 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/* %changelog +* Sun Jul 19 2009 Christoph Wickert - 2.26.0-3 +- Fix 'Help' button (#508531) +- Add category 'Mixer' to menu enty for nested menus in multimedia-menus + * Fri May 1 2009 Adam Williamson - 2.26.0-2 - Drop a bunch of %%defines in the spec as recommended for review From pkgdb at fedoraproject.org Sun Jul 19 20:50:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:50:19 +0000 Subject: [pkgdb] zikula-module-News was added for pfrields Message-ID: <20090719205019.577A710F891@bastion2.fedora.phx.redhat.com> kevin has added Package zikula-module-News with summary Manages news articles on your Zikula site kevin has approved Package zikula-module-News kevin has added a Fedora devel branch for zikula-module-News with an owner of pfrields kevin has approved zikula-module-News in Fedora devel kevin has approved Package zikula-module-News kevin has set commit to Approved for 107427 on zikula-module-News (Fedora devel) kevin has set checkout to Approved for 107427 on zikula-module-News (Fedora devel) kevin has set build to Approved for 107427 on zikula-module-News (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-News From pkgdb at fedoraproject.org Sun Jul 19 20:50:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:50:22 +0000 Subject: [pkgdb] zikula-module-News summary updated by kevin Message-ID: <20090719205022.D43FE10F8A5@bastion2.fedora.phx.redhat.com> kevin set package zikula-module-News summary to Manages news articles on your Zikula site To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-News From pkgdb at fedoraproject.org Sun Jul 19 20:50:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:50:22 +0000 Subject: [pkgdb] zikula-module-News (Fedora, 11) updated by kevin Message-ID: <20090719205022.E883910F8AA@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on zikula-module-News (Fedora devel) for ke4qqq kevin approved watchcommits on zikula-module-News (Fedora devel) for ke4qqq kevin approved commit on zikula-module-News (Fedora devel) for ke4qqq kevin approved build on zikula-module-News (Fedora devel) for ke4qqq kevin approved approveacls on zikula-module-News (Fedora devel) for ke4qqq kevin approved watchbugzilla on zikula-module-News (Fedora devel) for sparks kevin approved watchcommits on zikula-module-News (Fedora devel) for sparks kevin approved commit on zikula-module-News (Fedora devel) for sparks kevin approved build on zikula-module-News (Fedora devel) for sparks kevin approved approveacls on zikula-module-News (Fedora devel) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-News From kevin at fedoraproject.org Sun Jul 19 20:50:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:50:29 +0000 (UTC) Subject: rpms/zikula-module-News - New directory Message-ID: <20090719205029.169B211C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-News In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsI23538/rpms/zikula-module-News Log Message: Directory /cvs/pkgs/rpms/zikula-module-News added to the repository From kevin at fedoraproject.org Sun Jul 19 20:50:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:50:29 +0000 (UTC) Subject: rpms/zikula-module-News/devel - New directory Message-ID: <20090719205029.3A37F11C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-News/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsI23538/rpms/zikula-module-News/devel Log Message: Directory /cvs/pkgs/rpms/zikula-module-News/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:50:34 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:50:34 +0000 (UTC) Subject: rpms/zikula-module-News Makefile,NONE,1.1 Message-ID: <20090719205034.C29D411C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-News In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsI23538/rpms/zikula-module-News Added Files: Makefile Log Message: Setup of module zikula-module-News --- NEW FILE Makefile --- # Top level Makefile for module zikula-module-News all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Sun Jul 19 20:50:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:50:22 +0000 Subject: [pkgdb] zikula-module-News (Fedora, 11) updated by kevin Message-ID: <20090719205022.F310E10F8B0@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for zikula-module-News kevin has set commit to Approved for 107427 on zikula-module-News (Fedora 11) kevin has set checkout to Approved for 107427 on zikula-module-News (Fedora 11) kevin has set build to Approved for 107427 on zikula-module-News (Fedora 11) kevin approved watchbugzilla on zikula-module-News (Fedora 11) for ke4qqq kevin approved watchcommits on zikula-module-News (Fedora 11) for ke4qqq kevin approved commit on zikula-module-News (Fedora 11) for ke4qqq kevin approved build on zikula-module-News (Fedora 11) for ke4qqq kevin approved approveacls on zikula-module-News (Fedora 11) for ke4qqq kevin approved watchbugzilla on zikula-module-News (Fedora 11) for sparks kevin approved watchcommits on zikula-module-News (Fedora 11) for sparks kevin approved commit on zikula-module-News (Fedora 11) for sparks kevin approved build on zikula-module-News (Fedora 11) for sparks kevin approved approveacls on zikula-module-News (Fedora 11) for sparks To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-News From kevin at fedoraproject.org Sun Jul 19 20:50:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:50:35 +0000 (UTC) Subject: rpms/zikula-module-News/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719205035.1DEF211C049B@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/zikula-module-News/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsI23538/rpms/zikula-module-News/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module zikula-module-News --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: zikula-module-News # $Id: Makefile,v 1.1 2009/07/19 20:50:34 kevin Exp $ NAME := zikula-module-News SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:52:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:52:16 +0000 Subject: [pkgdb] quitcount was added for fab Message-ID: <20090719205217.1ABE310F891@bastion2.fedora.phx.redhat.com> kevin has added Package quitcount with summary A tool for people who quit smoking kevin has approved Package quitcount kevin has added a Fedora devel branch for quitcount with an owner of fab kevin has approved quitcount in Fedora devel kevin has approved Package quitcount kevin has set commit to Approved for 107427 on quitcount (Fedora devel) kevin has set checkout to Approved for 107427 on quitcount (Fedora devel) kevin has set build to Approved for 107427 on quitcount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/quitcount From pkgdb at fedoraproject.org Sun Jul 19 20:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:52:18 +0000 Subject: [pkgdb] quitcount summary updated by kevin Message-ID: <20090719205218.9F54C10F897@bastion2.fedora.phx.redhat.com> kevin set package quitcount summary to A tool for people who quit smoking To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/quitcount From pkgdb at fedoraproject.org Sun Jul 19 20:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:52:18 +0000 Subject: [pkgdb] quitcount (Fedora, 10) updated by kevin Message-ID: <20090719205218.AA60D10F89E@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for quitcount kevin has set commit to Approved for 107427 on quitcount (Fedora 10) kevin has set checkout to Approved for 107427 on quitcount (Fedora 10) kevin has set build to Approved for 107427 on quitcount (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/quitcount From pkgdb at fedoraproject.org Sun Jul 19 20:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:52:18 +0000 Subject: [pkgdb] quitcount (Fedora, 10) updated by kevin Message-ID: <20090719205218.B60E610F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for quitcount kevin has set commit to Approved for 107427 on quitcount (Fedora 11) kevin has set checkout to Approved for 107427 on quitcount (Fedora 11) kevin has set build to Approved for 107427 on quitcount (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/quitcount From kevin at fedoraproject.org Sun Jul 19 20:52:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:52:28 +0000 (UTC) Subject: rpms/quitcount - New directory Message-ID: <20090719205228.2704111C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/quitcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsh23788/rpms/quitcount Log Message: Directory /cvs/pkgs/rpms/quitcount added to the repository From kevin at fedoraproject.org Sun Jul 19 20:52:28 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:52:28 +0000 (UTC) Subject: rpms/quitcount/devel - New directory Message-ID: <20090719205228.3D4FB11C02C8@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/quitcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsh23788/rpms/quitcount/devel Log Message: Directory /cvs/pkgs/rpms/quitcount/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:52:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:52:33 +0000 (UTC) Subject: rpms/quitcount Makefile,NONE,1.1 Message-ID: <20090719205233.ACC0D11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/quitcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsh23788/rpms/quitcount Added Files: Makefile Log Message: Setup of module quitcount --- NEW FILE Makefile --- # Top level Makefile for module quitcount all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:52:33 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:52:33 +0000 (UTC) Subject: rpms/quitcount/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719205233.E4C4611C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/quitcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsh23788/rpms/quitcount/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module quitcount --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: quitcount # $Id: Makefile,v 1.1 2009/07/19 20:52:33 kevin Exp $ NAME := quitcount SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:53:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:53:12 +0000 Subject: [pkgdb] ghc-editline was added for s4504kr Message-ID: <20090719205312.EB8D810F8AB@bastion2.fedora.phx.redhat.com> kevin has added Package ghc-editline with summary Haskell editline library kevin has approved Package ghc-editline kevin has added a Fedora devel branch for ghc-editline with an owner of s4504kr kevin has approved ghc-editline in Fedora devel kevin has approved Package ghc-editline kevin has set commit to Approved for 107427 on ghc-editline (Fedora devel) kevin has set checkout to Approved for 107427 on ghc-editline (Fedora devel) kevin has set build to Approved for 107427 on ghc-editline (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From pkgdb at fedoraproject.org Sun Jul 19 20:53:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:53:14 +0000 Subject: [pkgdb] ghc-editline summary updated by kevin Message-ID: <20090719205314.8B2A010F8AD@bastion2.fedora.phx.redhat.com> kevin set package ghc-editline summary to Haskell editline library To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From pkgdb at fedoraproject.org Sun Jul 19 20:53:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:53:14 +0000 Subject: [pkgdb] ghc-editline (Fedora, 10) updated by kevin Message-ID: <20090719205314.983F210F8B1@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for ghc-editline kevin has set commit to Approved for 107427 on ghc-editline (Fedora 10) kevin has set checkout to Approved for 107427 on ghc-editline (Fedora 10) kevin has set build to Approved for 107427 on ghc-editline (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From pkgdb at fedoraproject.org Sun Jul 19 20:53:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:53:14 +0000 Subject: [pkgdb] ghc-editline (Fedora, 10) updated by kevin Message-ID: <20090719205314.AC72C10F8B4@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for ghc-editline kevin has set commit to Approved for 107427 on ghc-editline (Fedora 11) kevin has set checkout to Approved for 107427 on ghc-editline (Fedora 11) kevin has set build to Approved for 107427 on ghc-editline (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From kevin at fedoraproject.org Sun Jul 19 20:53:24 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:53:24 +0000 (UTC) Subject: rpms/ghc-editline - New directory Message-ID: <20090719205324.19ECB11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ghc-editline In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC23997/rpms/ghc-editline Log Message: Directory /cvs/pkgs/rpms/ghc-editline added to the repository From kevin at fedoraproject.org Sun Jul 19 20:53:24 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:53:24 +0000 (UTC) Subject: rpms/ghc-editline/devel - New directory Message-ID: <20090719205324.421E611C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC23997/rpms/ghc-editline/devel Log Message: Directory /cvs/pkgs/rpms/ghc-editline/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:53:30 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:53:30 +0000 (UTC) Subject: rpms/ghc-editline Makefile,NONE,1.1 Message-ID: <20090719205330.6FC6511C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ghc-editline In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC23997/rpms/ghc-editline Added Files: Makefile Log Message: Setup of module ghc-editline --- NEW FILE Makefile --- # Top level Makefile for module ghc-editline all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:53:30 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:53:30 +0000 (UTC) Subject: rpms/ghc-editline/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719205330.AFE6611C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsC23997/rpms/ghc-editline/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ghc-editline --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ghc-editline # $Id: Makefile,v 1.1 2009/07/19 20:53:30 kevin Exp $ NAME := ghc-editline SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:55:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:55:08 +0000 Subject: [pkgdb] perl-Algorithm-IncludeExclude was added for iarnell Message-ID: <20090719205508.EEF0710F89B@bastion2.fedora.phx.redhat.com> kevin has added Package perl-Algorithm-IncludeExclude with summary Build and evaluate include/exclude lists kevin has approved Package perl-Algorithm-IncludeExclude kevin has added a Fedora devel branch for perl-Algorithm-IncludeExclude with an owner of iarnell kevin has approved perl-Algorithm-IncludeExclude in Fedora devel kevin has approved Package perl-Algorithm-IncludeExclude kevin has set commit to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora devel) kevin has set checkout to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora devel) kevin has set build to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Algorithm-IncludeExclude From pkgdb at fedoraproject.org Sun Jul 19 20:55:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:55:10 +0000 Subject: [pkgdb] perl-Algorithm-IncludeExclude summary updated by kevin Message-ID: <20090719205510.E6FF910F895@bastion2.fedora.phx.redhat.com> kevin set package perl-Algorithm-IncludeExclude summary to Build and evaluate include/exclude lists To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Algorithm-IncludeExclude From pkgdb at fedoraproject.org Sun Jul 19 20:55:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:55:10 +0000 Subject: [pkgdb] perl-Algorithm-IncludeExclude (Fedora, 10) updated by kevin Message-ID: <20090719205510.EF18110F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for perl-Algorithm-IncludeExclude kevin has set commit to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 10) kevin has set checkout to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 10) kevin has set build to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 10) kevin approved watchbugzilla on perl-Algorithm-IncludeExclude (Fedora 10) for perl-sig kevin approved watchcommits on perl-Algorithm-IncludeExclude (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Algorithm-IncludeExclude From pkgdb at fedoraproject.org Sun Jul 19 20:55:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:55:10 +0000 Subject: [pkgdb] perl-Algorithm-IncludeExclude (Fedora, 10) updated by kevin Message-ID: <20090719205511.094EF10F8AD@bastion2.fedora.phx.redhat.com> kevin approved watchbugzilla on perl-Algorithm-IncludeExclude (Fedora devel) for perl-sig kevin approved watchcommits on perl-Algorithm-IncludeExclude (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Algorithm-IncludeExclude From pkgdb at fedoraproject.org Sun Jul 19 20:55:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:55:10 +0000 Subject: [pkgdb] perl-Algorithm-IncludeExclude (Fedora, 10) updated by kevin Message-ID: <20090719205511.3880010F8B2@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for perl-Algorithm-IncludeExclude kevin has set commit to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 11) kevin has set checkout to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 11) kevin has set build to Approved for 107427 on perl-Algorithm-IncludeExclude (Fedora 11) kevin approved watchbugzilla on perl-Algorithm-IncludeExclude (Fedora 11) for perl-sig kevin approved watchcommits on perl-Algorithm-IncludeExclude (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Algorithm-IncludeExclude From kevin at fedoraproject.org Sun Jul 19 20:55:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:55:20 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude - New directory Message-ID: <20090719205520.172A611C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsq24433/rpms/perl-Algorithm-IncludeExclude Log Message: Directory /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude added to the repository From kevin at fedoraproject.org Sun Jul 19 20:55:20 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:55:20 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/devel - New directory Message-ID: <20090719205520.396F711C048A@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsq24433/rpms/perl-Algorithm-IncludeExclude/devel Log Message: Directory /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:55:25 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:55:25 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude Makefile,NONE,1.1 Message-ID: <20090719205525.F3AE811C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsq24433/rpms/perl-Algorithm-IncludeExclude Added Files: Makefile Log Message: Setup of module perl-Algorithm-IncludeExclude --- NEW FILE Makefile --- # Top level Makefile for module perl-Algorithm-IncludeExclude all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:55:26 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:55:26 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719205526.5475511C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsq24433/rpms/perl-Algorithm-IncludeExclude/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Algorithm-IncludeExclude --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Algorithm-IncludeExclude # $Id: Makefile,v 1.1 2009/07/19 20:55:26 kevin Exp $ NAME := perl-Algorithm-IncludeExclude SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:56:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:06 +0000 Subject: [pkgdb] xylib was added for wojdyr Message-ID: <20090719205606.2150310F895@bastion2.fedora.phx.redhat.com> kevin has added Package xylib with summary Library for reading x-y data from several file formats kevin has approved Package xylib kevin has added a Fedora devel branch for xylib with an owner of wojdyr kevin has approved xylib in Fedora devel kevin has approved Package xylib kevin has set commit to Approved for 107427 on xylib (Fedora devel) kevin has set checkout to Approved for 107427 on xylib (Fedora devel) kevin has set build to Approved for 107427 on xylib (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xylib From pkgdb at fedoraproject.org Sun Jul 19 20:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:08 +0000 Subject: [pkgdb] xylib summary updated by kevin Message-ID: <20090719205608.9A29610F89B@bastion2.fedora.phx.redhat.com> kevin set package xylib summary to Library for reading x-y data from several file formats To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xylib From pkgdb at fedoraproject.org Sun Jul 19 20:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:08 +0000 Subject: [pkgdb] xylib (Fedora, 10) updated by kevin Message-ID: <20090719205608.A2A6610F8A8@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for xylib kevin has set commit to Approved for 107427 on xylib (Fedora 10) kevin has set checkout to Approved for 107427 on xylib (Fedora 10) kevin has set build to Approved for 107427 on xylib (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xylib From pkgdb at fedoraproject.org Sun Jul 19 20:56:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:08 +0000 Subject: [pkgdb] xylib (Fedora, 10) updated by kevin Message-ID: <20090719205608.AF92910F8AB@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for xylib kevin has set commit to Approved for 107427 on xylib (Fedora 11) kevin has set checkout to Approved for 107427 on xylib (Fedora 11) kevin has set build to Approved for 107427 on xylib (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xylib From kevin at fedoraproject.org Sun Jul 19 20:56:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:56:16 +0000 (UTC) Subject: rpms/xylib - New directory Message-ID: <20090719205616.26CF111C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xylib In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn24707/rpms/xylib Log Message: Directory /cvs/pkgs/rpms/xylib added to the repository From kevin at fedoraproject.org Sun Jul 19 20:56:16 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:56:16 +0000 (UTC) Subject: rpms/xylib/devel - New directory Message-ID: <20090719205616.6503E11C0263@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xylib/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn24707/rpms/xylib/devel Log Message: Directory /cvs/pkgs/rpms/xylib/devel added to the repository From kevin at fedoraproject.org Sun Jul 19 20:56:22 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:56:22 +0000 (UTC) Subject: rpms/xylib Makefile,NONE,1.1 Message-ID: <20090719205622.3F57F11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xylib In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn24707/rpms/xylib Added Files: Makefile Log Message: Setup of module xylib --- NEW FILE Makefile --- # Top level Makefile for module xylib all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 19 20:56:22 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 20:56:22 +0000 (UTC) Subject: rpms/xylib/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090719205622.7955F11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/xylib/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsn24707/rpms/xylib/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module xylib --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: xylib # $Id: Makefile,v 1.1 2009/07/19 20:56:22 kevin Exp $ NAME := xylib SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Sun Jul 19 20:56:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:43 +0000 Subject: [pkgdb] perl-XML-Stream (Fedora EPEL, 5) updated by kevin Message-ID: <20090719205644.01CAD10F89E@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for perl-XML-Stream kevin has set commit to Approved for 107427 on perl-XML-Stream (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on perl-XML-Stream (Fedora EPEL 5) kevin has set build to Approved for 107427 on perl-XML-Stream (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Sun Jul 19 20:56:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:56:55 +0000 Subject: [pkgdb] perl-XML-Stream (Fedora EPEL, 5) updated by kevin Message-ID: <20090719205655.B401210F8AC@bastion2.fedora.phx.redhat.com> kevin changed owner of perl-XML-Stream in Fedora EPEL 5 to xavierb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-XML-Stream From pkgdb at fedoraproject.org Sun Jul 19 20:57:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:57:35 +0000 Subject: [pkgdb] perl-Net-XMPP (Fedora EPEL, 5) updated by kevin Message-ID: <20090719205735.D17ED10F891@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for perl-Net-XMPP kevin has set commit to Approved for 107427 on perl-Net-XMPP (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on perl-Net-XMPP (Fedora EPEL 5) kevin has set build to Approved for 107427 on perl-Net-XMPP (Fedora EPEL 5) kevin changed owner of perl-Net-XMPP in Fedora EPEL 5 to xavierb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-XMPP From pkgdb at fedoraproject.org Sun Jul 19 20:58:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 19 Jul 2009 20:58:06 +0000 Subject: [pkgdb] perl-Net-Jabber (Fedora EPEL, 5) updated by kevin Message-ID: <20090719205806.6106210F89B@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for perl-Net-Jabber kevin has set commit to Approved for 107427 on perl-Net-Jabber (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on perl-Net-Jabber (Fedora EPEL 5) kevin has set build to Approved for 107427 on perl-Net-Jabber (Fedora EPEL 5) kevin changed owner of perl-Net-Jabber in Fedora EPEL 5 to xavierb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Net-Jabber From cwickert at fedoraproject.org Sun Jul 19 21:11:37 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 21:11:37 +0000 (UTC) Subject: rpms/lxrandr/devel import.log, NONE, 1.1 lxrandr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090719211137.BC2E611C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24657/devel Modified Files: .cvsignore sources Added Files: import.log lxrandr.spec Log Message: Initial import of lxrandr. Review was at https://bugzilla.redhat.com/show_bug.cgi?id=512482 --- NEW FILE import.log --- lxrandr-0_1_1-1_fc12:HEAD:lxrandr-0.1.1-1.fc12.src.rpm:1248036850 --- NEW FILE lxrandr.spec --- Name: lxrandr Version: 0.1.1 Release: 1%{?dist} Summary: Simple monitor config tool Group: User Interface/Desktops License: GPLv3+ URL: http://lxde.org/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel libXrandr-devel gettext desktop-file-utils Requires: xorg-x11-server-utils %description LXRandR is a simple monitor config tool utilizing X RandR extension. It's a GUI frontend of the command line program xrandr and manages screen resolution and external monitors. When you run LXRandR with an external monitor or projector connected, its GUI will change and show you some options to quickly configure the external device. LXRandR is the standard screen manager of LXDE, the Lightweight X11 Desktop Environment, but can be used in other desktop environments as well. %prep %setup -q # quick fix for the icon echo "Icon=video-display" >> data/%{name}.desktop.in %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install \ --delete-original \ --add-category="HardwareSettings;GTK;" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 07 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 - Include new manpage * Sun Nov 09 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:48:10 -0000 1.1 +++ .cvsignore 19 Jul 2009 21:11:07 -0000 1.2 @@ -0,0 +1 @@ +lxrandr-0.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:48:10 -0000 1.1 +++ sources 19 Jul 2009 21:11:07 -0000 1.2 @@ -0,0 +1 @@ +ab2c7f6be7e4fe6d1a26e324d836453e lxrandr-0.1.1.tar.gz From cwickert at fedoraproject.org Sun Jul 19 21:13:25 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 21:13:25 +0000 (UTC) Subject: rpms/gst-mixer/devel gst-mixer.spec,1.2,1.3 Message-ID: <20090719211325.10FF111C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gst-mixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27219 Modified Files: gst-mixer.spec Log Message: BR desktop-file-utils Index: gst-mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gst-mixer/devel/gst-mixer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gst-mixer.spec 19 Jul 2009 20:49:48 -0000 1.2 +++ gst-mixer.spec 19 Jul 2009 21:12:54 -0000 1.3 @@ -34,6 +34,7 @@ BuildRequires: libcanberra-devel BuildRequires: gnome-doc-utils BuildRequires: intltool BuildRequires: unique-devel +BuildRequires: desktop-file-utils # for patch 0 BuildRequires: autoconf automake libtool From cwickert at fedoraproject.org Sun Jul 19 21:24:33 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 21:24:33 +0000 (UTC) Subject: rpms/lxrandr/devel lxrandr.spec,1.1,1.2 Message-ID: <20090719212433.76F8911C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28844 Modified Files: lxrandr.spec Log Message: minor fix in summary and descripton Index: lxrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/devel/lxrandr.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxrandr.spec 19 Jul 2009 21:11:07 -0000 1.1 +++ lxrandr.spec 19 Jul 2009 21:24:03 -0000 1.2 @@ -1,7 +1,7 @@ Name: lxrandr Version: 0.1.1 Release: 1%{?dist} -Summary: Simple monitor config tool +Summary: Simple monitor configuration tool Group: User Interface/Desktops License: GPLv3+ @@ -13,11 +13,11 @@ BuildRequires: gtk2-devel libXrandr-dev Requires: xorg-x11-server-utils %description -LXRandR is a simple monitor config tool utilizing X RandR extension. It's a -GUI frontend of the command line program xrandr and manages screen resolution -and external monitors. When you run LXRandR with an external monitor or -projector connected, its GUI will change and show you some options to quickly -configure the external device. +LXRandR is a simple monitor configuration tool utilizing X RandR extension. +It's a GUI frontend of the command line program xrandr and manages screen +resolution and external monitors. When you run LXRandR with an external +monitor or projector connected, its GUI will change and show you some options +to quickly configure the external device. LXRandR is the standard screen manager of LXDE, the Lightweight X11 Desktop Environment, but can be used in other desktop environments as well. From cwickert at fedoraproject.org Sun Jul 19 21:33:09 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 21:33:09 +0000 (UTC) Subject: rpms/lxrandr/F-11 lxrandr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090719213309.680D711C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxrandr/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30163/F-11 Modified Files: .cvsignore sources Added Files: lxrandr.spec Log Message: initial build for this branch --- NEW FILE lxrandr.spec --- Name: lxrandr Version: 0.1.1 Release: 1%{?dist} Summary: Simple monitor configuration tool Group: User Interface/Desktops License: GPLv3+ URL: http://lxde.org/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel libXrandr-devel gettext desktop-file-utils Requires: xorg-x11-server-utils %description LXRandR is a simple monitor configuration tool utilizing X RandR extension. It's a GUI frontend of the command line program xrandr and manages screen resolution and external monitors. When you run LXRandR with an external monitor or projector connected, its GUI will change and show you some options to quickly configure the external device. LXRandR is the standard screen manager of LXDE, the Lightweight X11 Desktop Environment, but can be used in other desktop environments as well. %prep %setup -q # quick fix for the icon echo "Icon=video-display" >> data/%{name}.desktop.in %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install \ --delete-original \ --add-category="HardwareSettings;GTK;" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 07 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 - Include new manpage * Sun Nov 09 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:48:10 -0000 1.1 +++ .cvsignore 19 Jul 2009 21:33:08 -0000 1.2 @@ -0,0 +1 @@ +lxrandr-0.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:48:10 -0000 1.1 +++ sources 19 Jul 2009 21:33:08 -0000 1.2 @@ -0,0 +1 @@ +ab2c7f6be7e4fe6d1a26e324d836453e lxrandr-0.1.1.tar.gz From cwickert at fedoraproject.org Sun Jul 19 21:33:38 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 21:33:38 +0000 (UTC) Subject: rpms/lxrandr/F-10 lxrandr.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090719213338.B8C7211C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxrandr/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30163/F-10 Modified Files: .cvsignore sources Added Files: lxrandr.spec Log Message: initial build for this branch --- NEW FILE lxrandr.spec --- Name: lxrandr Version: 0.1.1 Release: 1%{?dist} Summary: Simple monitor configuration tool Group: User Interface/Desktops License: GPLv3+ URL: http://lxde.org/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel libXrandr-devel gettext desktop-file-utils Requires: xorg-x11-server-utils %description LXRandR is a simple monitor configuration tool utilizing X RandR extension. It's a GUI frontend of the command line program xrandr and manages screen resolution and external monitors. When you run LXRandR with an external monitor or projector connected, its GUI will change and show you some options to quickly configure the external device. LXRandR is the standard screen manager of LXDE, the Lightweight X11 Desktop Environment, but can be used in other desktop environments as well. %prep %setup -q # quick fix for the icon echo "Icon=video-display" >> data/%{name}.desktop.in %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install \ --delete-original \ --add-category="HardwareSettings;GTK;" \ --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING %{_bindir}/%{name} %{_datadir}/applications/%{name}.desktop %{_mandir}/man1/%{name}.1.gz %changelog * Tue Jul 07 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 - Include new manpage * Sun Nov 09 2008 Christoph Wickert - 0.1-1 - Initial Fedora package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:48:10 -0000 1.1 +++ .cvsignore 19 Jul 2009 21:33:03 -0000 1.2 @@ -0,0 +1 @@ +lxrandr-0.1.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:48:10 -0000 1.1 +++ sources 19 Jul 2009 21:33:03 -0000 1.2 @@ -0,0 +1 @@ +ab2c7f6be7e4fe6d1a26e324d836453e lxrandr-0.1.1.tar.gz From cwickert at fedoraproject.org Sun Jul 19 22:33:43 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sun, 19 Jul 2009 22:33:43 +0000 (UTC) Subject: comps comps-f11.xml.in, 1.267, 1.268 comps-f10.xml.in, 1.255, 1.256 comps-f12.xml.in, 1.43, 1.44 Message-ID: <20090719223343.464BD11C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6291 Modified Files: comps-f11.xml.in comps-f10.xml.in comps-f12.xml.in Log Message: add lxrandr Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.267 retrieving revision 1.268 diff -u -p -r1.267 -r1.268 --- comps-f11.xml.in 16 Jul 2009 18:35:59 -0000 1.267 +++ comps-f11.xml.in 19 Jul 2009 22:33:11 -0000 1.268 @@ -3847,6 +3847,7 @@ leafpad lxappearance lxinput + lxrandr lxsession-edit lxshortcut lxtask Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.255 retrieving revision 1.256 diff -u -p -r1.255 -r1.256 --- comps-f10.xml.in 16 Jul 2009 07:58:28 -0000 1.255 +++ comps-f10.xml.in 19 Jul 2009 22:33:11 -0000 1.256 @@ -3366,6 +3366,7 @@ leafpad lxappearance lxinput + lxrandr lxsession-edit lxshortcut lxtask Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- comps-f12.xml.in 17 Jul 2009 21:03:01 -0000 1.43 +++ comps-f12.xml.in 19 Jul 2009 22:33:11 -0000 1.44 @@ -3974,6 +3974,7 @@ leafpad lxappearance lxinput + lxrandr lxsession-edit lxshortcut lxtask From kevin at fedoraproject.org Sun Jul 19 23:04:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 19 Jul 2009 23:04:05 +0000 (UTC) Subject: rpms/Terminal/devel Terminal.spec, 1.27, 1.28 .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 Terminal-0.2.12-alwaysshowtabs.patch, 1.1, NONE Message-ID: <20090719230405.D5BDD11C00D7@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/Terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14539 Modified Files: Terminal.spec .cvsignore sources Removed Files: Terminal-0.2.12-alwaysshowtabs.patch Log Message: Update to 0.2.99.1 Index: Terminal.spec =================================================================== RCS file: /cvs/extras/rpms/Terminal/devel/Terminal.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- Terminal.spec 29 Jun 2009 15:33:08 -0000 1.27 +++ Terminal.spec 19 Jul 2009 23:03:34 -0000 1.28 @@ -1,11 +1,10 @@ Summary: X Terminal Emulator Name: Terminal -Version: 0.2.12 -Release: 3%{?dist} +Version: 0.2.99.1 +Release: 1%{?dist} License: GPLv2+ -URL: http://www.xfce.org/projects/terminal/ -Source0: http://www.xfce.org/archive/xfce-4.6.1/src/Terminal-%{version}.tar.bz2 -Patch0: Terminal-0.2.12-alwaysshowtabs.patch +URL: http://goodies.xfce.org/projects/applications/terminal/ +Source0: http://goodies.xfce.org/releases/terminal/Terminal-%{version}.tar.bz2 Group: User Interface/Desktops Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: vte-devel @@ -22,7 +21,6 @@ it unique among X terminal emulators. %prep %setup -q -%patch0 -p0 %build %configure @@ -64,6 +62,9 @@ fi %{_libexecdir}/TerminalHelp %changelog +* Sun Jul 19 2009 Kevin Fenzi - 0.2.99.1-1 +- Update to 0.2.99.1 + * Mon Apr 29 2009 Kevin Fenzi - 0.2.12-3 - Fix patch fuzz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/Terminal/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 20 Apr 2009 03:06:54 -0000 1.9 +++ .cvsignore 19 Jul 2009 23:03:34 -0000 1.10 @@ -1 +1 @@ -Terminal-0.2.12.tar.bz2 +Terminal-0.2.99.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/Terminal/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 Apr 2009 03:06:54 -0000 1.9 +++ sources 19 Jul 2009 23:03:34 -0000 1.10 @@ -1 +1 @@ -adb419d279c9fc16d02291c052190717 Terminal-0.2.12.tar.bz2 +730c0fefbe670c9462c6ec565d4f42e6 Terminal-0.2.99.1.tar.bz2 --- Terminal-0.2.12-alwaysshowtabs.patch DELETED --- From jussilehtola at fedoraproject.org Sun Jul 19 23:22:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:22:34 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui-0.99.5-utf8doc.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 xine-ui.spec, 1.3, 1.4 Message-ID: <20090719232235.0191111C00D7@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19406/devel Modified Files: .cvsignore import.log sources xine-ui.spec Added Files: xine-ui-0.99.5-utf8doc.patch Log Message: Fix BZ #512598 & #512604. xine-ui-0.99.5-utf8doc.patch: help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE xine-ui-0.99.5-utf8doc.patch --- diff -urp xine-ui-0.99.5.orig/src/xitk/help.c xine-ui-0.99.5/src/xitk/help.c --- xine-ui-0.99.5.orig/src/xitk/help.c 2009-07-19 18:27:09.000000000 +0100 +++ xine-ui-0.99.5/src/xitk/help.c 2009-07-19 18:27:25.000000000 +0100 @@ -182,7 +182,7 @@ static void help_sections(void) { help_add_section(locale_readme, lang->doc_encoding, order_num, section_name); } else { - help_add_section(default_readme, "ISO-8859-1", order_num, section_name); + help_add_section(default_readme, "UTF-8", order_num, section_name); } } } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 18 May 2009 05:56:12 -0000 1.2 +++ .cvsignore 19 Jul 2009 23:22:34 -0000 1.3 @@ -1 +1,31 @@ xine-ui-0.99.5.tar.gz +Antares.tar.gz +Bambino-Black.tar.gz +Bambino-Blue.tar.gz +Bambino-Green.tar.gz +Bambino-Orange.tar.gz +Bambino-Pink.tar.gz +Bambino-Purple.tar.gz +Bambino-White.tar.gz +Bluton.tar.gz +CelomaChrome.tar.gz +CelomaGold.tar.gz +CelomaMdk.tar.gz +Centori.tar.gz +Crystal.tar.gz +Galaxy.tar.gz +Keramic.tar.gz +KeramicRH8.tar.gz +OMS_legacy.tar.gz +Polaris.tar.gz +Sunset.tar.gz +blackslim2.tar.gz +caramel.tar.gz +cloudy.tar.gz +concept.tar.gz +gudgreen.tar.gz +lcd.tar.gz +mp2k.tar.gz +mplayer.tar.gz +pitt.tar.gz +xinium.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 18 May 2009 05:56:12 -0000 1.1 +++ import.log 19 Jul 2009 23:22:34 -0000 1.2 @@ -1 +1,2 @@ xine-ui-0_99_5-10_fc10:HEAD:xine-ui-0.99.5-10.fc10.src.rpm:1242625874 +xine-ui-0_99_5-13_fc11:HEAD:xine-ui-0.99.5-13.fc11.src.rpm:1248045652 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 May 2009 05:56:12 -0000 1.2 +++ sources 19 Jul 2009 23:22:34 -0000 1.3 @@ -1 +1,31 @@ e643cd1fcad4d98a5ae4eb877ce5087b xine-ui-0.99.5.tar.gz +ad74c35558588f5d4234449a076b4105 Antares.tar.gz +61cbcf4cb3f1443a17e96c0a73eeb3a8 Bambino-Black.tar.gz +56f21a3ffddf0f0980336a5d9cdff179 Bambino-Blue.tar.gz +4d4ee2d1825896ff6c1dadfbf1f75864 Bambino-Green.tar.gz +dacd886be4fd9c13dd96fa3b96f3e7f8 Bambino-Orange.tar.gz +424b4dd516569c92af7d96c10daa46d3 Bambino-Pink.tar.gz +2e6438459244104e46d89a66e5a1f961 Bambino-Purple.tar.gz +3e8bc6f6958e8d732b88f2e227f3c879 Bambino-White.tar.gz +070fd8e3582b6f9e302b595c81dd87e4 Bluton.tar.gz +159b45f013183aea3038f9133f61cf89 CelomaChrome.tar.gz +5ac74cb407b59b3487031a0564698e1f CelomaGold.tar.gz +dadb7b21b8e7e0c40ad7237c4f98906f CelomaMdk.tar.gz +06f2b0f6ceb9456bc26fae65f4f89a53 Centori.tar.gz +eb511cd1217bc0c0bd3fa016698adebc Crystal.tar.gz +c7825e925434374a074c4acc46bcdd4f Galaxy.tar.gz +0154a3eecbeb995865ead852fd5f6bb2 Keramic.tar.gz +bff16e879b75bd5a442c0c5c7dc22bcb KeramicRH8.tar.gz +54b3e28494e1d89e041ceace7db32049 OMS_legacy.tar.gz +b92dfe59cb5f7bbc495ed0be50c1c132 Polaris.tar.gz +8702d138eb61b7149118f91121fe846a Sunset.tar.gz +454bdc7321fc18f0db811db722c2e93c blackslim2.tar.gz +1ff0ea8d7c73c4f3b32c13a408af3be1 caramel.tar.gz +432e0d5135be09e03a69f363d3da94a0 cloudy.tar.gz +34d18380c1077cdf43a04797b2e06734 concept.tar.gz +d809f2f3cce0eae966296e01ede8df00 gudgreen.tar.gz +f16d6a1a39b32473a901d9132c405196 lcd.tar.gz +841924c042ca70700a9d201bc7686e59 mp2k.tar.gz +3023e8dd6c12902c32b3d99e51fd0c1e mplayer.tar.gz +7dd4e9e50e0145142982b0537c36f50a pitt.tar.gz +9ebf98f4434a9fc119f0282806ba9c32 xinium.tar.gz Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xine-ui.spec 15 Jul 2009 08:26:13 -0000 1.3 +++ xine-ui.spec 19 Jul 2009 23:22:34 -0000 1.4 @@ -3,13 +3,48 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ Source0: http://downloads.sourceforge.net/xine/xine-ui-%{version}.tar.gz # Patch to enable linking to shared library version of lirc Patch0: xine-ui-0.99.5-shared-lirc.patch +# Patch to use UTF-8 documentation, BZ #512598 +Patch1: xine-ui-0.99.5-utf8doc.patch + +# Sources for -skins. Ugh. +Source1: http://xine.sourceforge.net/skins/Antares.tar.gz +Source2: http://xine.sourceforge.net/skins/Bambino-Black.tar.gz +Source3: http://xine.sourceforge.net/skins/Bambino-Blue.tar.gz +Source4: http://xine.sourceforge.net/skins/Bambino-Green.tar.gz +Source5: http://xine.sourceforge.net/skins/Bambino-Orange.tar.gz +Source6: http://xine.sourceforge.net/skins/Bambino-Pink.tar.gz +Source7: http://xine.sourceforge.net/skins/Bambino-Purple.tar.gz +Source8: http://xine.sourceforge.net/skins/Bambino-White.tar.gz +Source9: http://xine.sourceforge.net/skins/blackslim2.tar.gz +Source10: http://xine.sourceforge.net/skins/Bluton.tar.gz +Source11: http://xine.sourceforge.net/skins/caramel.tar.gz +Source12: http://xine.sourceforge.net/skins/CelomaChrome.tar.gz +Source13: http://xine.sourceforge.net/skins/CelomaGold.tar.gz +Source14: http://xine.sourceforge.net/skins/CelomaMdk.tar.gz +Source15: http://xine.sourceforge.net/skins/Centori.tar.gz +Source16: http://xine.sourceforge.net/skins/cloudy.tar.gz +Source17: http://xine.sourceforge.net/skins/concept.tar.gz +Source18: http://xine.sourceforge.net/skins/Crystal.tar.gz +Source19: http://xine.sourceforge.net/skins/Galaxy.tar.gz +Source20: http://xine.sourceforge.net/skins/gudgreen.tar.gz +Source21: http://xine.sourceforge.net/skins/KeramicRH8.tar.gz +Source22: http://xine.sourceforge.net/skins/Keramic.tar.gz +Source23: http://xine.sourceforge.net/skins/lcd.tar.gz +Source24: http://xine.sourceforge.net/skins/mp2k.tar.gz +Source25: http://xine.sourceforge.net/skins/mplayer.tar.gz +Source26: http://xine.sourceforge.net/skins/OMS_legacy.tar.gz +Source27: http://xine.sourceforge.net/skins/pitt.tar.gz +Source28: http://xine.sourceforge.net/skins/Polaris.tar.gz +Source29: http://xine.sourceforge.net/skins/Sunset.tar.gz +Source30: http://xine.sourceforge.net/skins/xinium.tar.gz + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Package was named xine in rpmfusion @@ -32,22 +67,47 @@ BuildRequires: libXxf86vm-devel BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 -BuildRequires: xorg-x11-proto-devel +BuildRequires: xorg-x11-proto-devel Conflicts: xine-skins <= 1.0 # For dir ownership Requires: hicolor-icon-theme +Requires: xine-lib # To make aaxine work Requires: xine-lib-extras %description -xine-ui is the default GUI for xine-lib. +xine-ui is the traditional, skinned GUI for xine-lib. + + +# Skins + +%package skins +Summary: Extra skins for xine-ui +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} +# Package in RPMFusion was named skine-skins +Obsoletes: xine-skins +%if 0%{?fedora}>10 || 0%{?rhel}>5 +BuildArch: noarch +%endif + +%description skins +This package contains extra skins for xine-ui. + %prep -%setup -q +# Setup xine +%setup0 -q +# Setup skins +%setup1 -T -q -c -n %{name}-%{version}/fedoraskins -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 -a29 -a30 +# Restore directory +%setup -T -D + # Backup time stamp touch -r m4/_xine.m4 m4/_xine.m4.stamp %patch0 -p1 +%patch1 -p1 # and restore it touch -r m4/_xine.m4.stamp m4/_xine.m4 @@ -79,12 +139,15 @@ for f in doc/man/pl/*.1* doc/README?{cs, mv $f.utf8 $f done +# Clean out skins +find fedoraskins/ -type d -name "CVS" -exec rm -rf {} \; || : +find fedoraskins/ -type d -name ".xvpics" -exec rm -rf {} \; || : %build -%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib +%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib XINE_DOCPATH=%{_docdir}/%{name}-%{version} +# Set documentation directory make %{?_smp_mflags} - %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" @@ -97,8 +160,11 @@ desktop-file-install --remove-category=" # Remove the desktop file installed in the wrong place rm -rf %{buildroot}%{_datadir}/xine/desktop -# Remove documentation installed by make install -rm -rf %{buildroot}%{_docdir} +# Remove automatically installed documentation (listed in %doc) +rm -rf %{buildroot}%{_docdir}/ + +# Install extra skins +cp -a fedoraskins/* %{buildroot}%{_datadir}/xine/skins/ %clean @@ -134,7 +200,12 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_bindir}/xine-bugreport %{_bindir}/xine-check %{_bindir}/xine-remote -%{_datadir}/xine/ + +%dir %{_datadir}/xine/skins/ +%{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/oxine/ +%{_datadir}/xine/visuals/ + %{_datadir}/applications/*xine.desktop %{_datadir}/icons/hicolor/*x*/apps/xine.png %{_datadir}/pixmaps/xine.xpm @@ -144,15 +215,22 @@ gtk-update-icon-cache %{_datadir}/icons/ %lang(fr) %{_mandir}/fr/man1/*.1.gz %lang(pl) %{_mandir}/pl/man1/*.1.gz +%files skins +%defattr(-,root,root,-) +%{_datadir}/xine/skins/* +%exclude %{_datadir}/xine/skins/xinetic/ %changelog -* Wed Jul 15 2009 Jussi Lehtola - 0.99.6-12 +* Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 +- Added -skins subpackage. + +* Wed Jul 15 2009 Jussi Lehtola - 0.99.5-12 - Added BR: xorg-x11-proto-devel. -* Sun May 17 2009 Jussi Lehtola - 0.99.6-11 +* Sun May 17 2009 Jussi Lehtola - 0.99.5-11 - Added missing icon cache update to %%post section. -* Sun May 17 2009 Jussi Lehtola - 0.99.6-10 +* Sun May 17 2009 Jussi Lehtola - 0.99.5-10 - Use desktop-install --remove-category instead of sed. * Sat May 16 2009 Jussi Lehtola - 0.99.5-9 From jussilehtola at fedoraproject.org Sun Jul 19 23:28:17 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:28:17 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui.spec,1.4,1.5 Message-ID: <20090719232817.9CAA811C00D7@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20820/devel Modified Files: xine-ui.spec Log Message: Add xitk documentation. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xine-ui.spec 19 Jul 2009 23:22:34 -0000 1.4 +++ xine-ui.spec 19 Jul 2009 23:27:47 -0000 1.5 @@ -139,6 +139,8 @@ for f in doc/man/pl/*.1* doc/README?{cs, mv $f.utf8 $f done +cp -a src/xitk/xine-toolkit/README doc/README.xitk + # Clean out skins find fedoraskins/ -type d -name "CVS" -exec rm -rf {} \; || : find fedoraskins/ -type d -name ".xvpics" -exec rm -rf {} \; || : From jussilehtola at fedoraproject.org Sun Jul 19 23:30:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:30:34 +0000 (UTC) Subject: rpms/xine-ui/F-10 sources,1.2,1.3 xine-ui.spec,1.2,1.3 Message-ID: <20090719233034.822A311C02C8@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21335/F-10 Modified Files: sources xine-ui.spec Log Message: Fix BZ #512598 & #512604. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 May 2009 05:59:05 -0000 1.2 +++ sources 19 Jul 2009 23:30:04 -0000 1.3 @@ -1 +1,31 @@ e643cd1fcad4d98a5ae4eb877ce5087b xine-ui-0.99.5.tar.gz +ad74c35558588f5d4234449a076b4105 Antares.tar.gz +61cbcf4cb3f1443a17e96c0a73eeb3a8 Bambino-Black.tar.gz +56f21a3ffddf0f0980336a5d9cdff179 Bambino-Blue.tar.gz +4d4ee2d1825896ff6c1dadfbf1f75864 Bambino-Green.tar.gz +dacd886be4fd9c13dd96fa3b96f3e7f8 Bambino-Orange.tar.gz +424b4dd516569c92af7d96c10daa46d3 Bambino-Pink.tar.gz +2e6438459244104e46d89a66e5a1f961 Bambino-Purple.tar.gz +3e8bc6f6958e8d732b88f2e227f3c879 Bambino-White.tar.gz +070fd8e3582b6f9e302b595c81dd87e4 Bluton.tar.gz +159b45f013183aea3038f9133f61cf89 CelomaChrome.tar.gz +5ac74cb407b59b3487031a0564698e1f CelomaGold.tar.gz +dadb7b21b8e7e0c40ad7237c4f98906f CelomaMdk.tar.gz +06f2b0f6ceb9456bc26fae65f4f89a53 Centori.tar.gz +eb511cd1217bc0c0bd3fa016698adebc Crystal.tar.gz +c7825e925434374a074c4acc46bcdd4f Galaxy.tar.gz +0154a3eecbeb995865ead852fd5f6bb2 Keramic.tar.gz +bff16e879b75bd5a442c0c5c7dc22bcb KeramicRH8.tar.gz +54b3e28494e1d89e041ceace7db32049 OMS_legacy.tar.gz +b92dfe59cb5f7bbc495ed0be50c1c132 Polaris.tar.gz +8702d138eb61b7149118f91121fe846a Sunset.tar.gz +454bdc7321fc18f0db811db722c2e93c blackslim2.tar.gz +1ff0ea8d7c73c4f3b32c13a408af3be1 caramel.tar.gz +432e0d5135be09e03a69f363d3da94a0 cloudy.tar.gz +34d18380c1077cdf43a04797b2e06734 concept.tar.gz +d809f2f3cce0eae966296e01ede8df00 gudgreen.tar.gz +f16d6a1a39b32473a901d9132c405196 lcd.tar.gz +841924c042ca70700a9d201bc7686e59 mp2k.tar.gz +3023e8dd6c12902c32b3d99e51fd0c1e mplayer.tar.gz +7dd4e9e50e0145142982b0537c36f50a pitt.tar.gz +9ebf98f4434a9fc119f0282806ba9c32 xinium.tar.gz Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-10/xine-ui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xine-ui.spec 18 May 2009 18:10:03 -0000 1.2 +++ xine-ui.spec 19 Jul 2009 23:30:04 -0000 1.3 @@ -3,13 +3,48 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 11%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ Source0: http://downloads.sourceforge.net/xine/xine-ui-%{version}.tar.gz # Patch to enable linking to shared library version of lirc Patch0: xine-ui-0.99.5-shared-lirc.patch +# Patch to use UTF-8 documentation, BZ #512598 +Patch1: xine-ui-0.99.5-utf8doc.patch + +# Sources for -skins. Ugh. +Source1: http://xine.sourceforge.net/skins/Antares.tar.gz +Source2: http://xine.sourceforge.net/skins/Bambino-Black.tar.gz +Source3: http://xine.sourceforge.net/skins/Bambino-Blue.tar.gz +Source4: http://xine.sourceforge.net/skins/Bambino-Green.tar.gz +Source5: http://xine.sourceforge.net/skins/Bambino-Orange.tar.gz +Source6: http://xine.sourceforge.net/skins/Bambino-Pink.tar.gz +Source7: http://xine.sourceforge.net/skins/Bambino-Purple.tar.gz +Source8: http://xine.sourceforge.net/skins/Bambino-White.tar.gz +Source9: http://xine.sourceforge.net/skins/blackslim2.tar.gz +Source10: http://xine.sourceforge.net/skins/Bluton.tar.gz +Source11: http://xine.sourceforge.net/skins/caramel.tar.gz +Source12: http://xine.sourceforge.net/skins/CelomaChrome.tar.gz +Source13: http://xine.sourceforge.net/skins/CelomaGold.tar.gz +Source14: http://xine.sourceforge.net/skins/CelomaMdk.tar.gz +Source15: http://xine.sourceforge.net/skins/Centori.tar.gz +Source16: http://xine.sourceforge.net/skins/cloudy.tar.gz +Source17: http://xine.sourceforge.net/skins/concept.tar.gz +Source18: http://xine.sourceforge.net/skins/Crystal.tar.gz +Source19: http://xine.sourceforge.net/skins/Galaxy.tar.gz +Source20: http://xine.sourceforge.net/skins/gudgreen.tar.gz +Source21: http://xine.sourceforge.net/skins/KeramicRH8.tar.gz +Source22: http://xine.sourceforge.net/skins/Keramic.tar.gz +Source23: http://xine.sourceforge.net/skins/lcd.tar.gz +Source24: http://xine.sourceforge.net/skins/mp2k.tar.gz +Source25: http://xine.sourceforge.net/skins/mplayer.tar.gz +Source26: http://xine.sourceforge.net/skins/OMS_legacy.tar.gz +Source27: http://xine.sourceforge.net/skins/pitt.tar.gz +Source28: http://xine.sourceforge.net/skins/Polaris.tar.gz +Source29: http://xine.sourceforge.net/skins/Sunset.tar.gz +Source30: http://xine.sourceforge.net/skins/xinium.tar.gz + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Package was named xine in rpmfusion @@ -32,21 +67,47 @@ BuildRequires: libXxf86vm-devel BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 +BuildRequires: xorg-x11-proto-devel Conflicts: xine-skins <= 1.0 # For dir ownership Requires: hicolor-icon-theme +Requires: xine-lib # To make aaxine work Requires: xine-lib-extras %description -xine-ui is the default GUI for xine-lib. +xine-ui is the traditional, skinned GUI for xine-lib. + + +# Skins + +%package skins +Summary: Extra skins for xine-ui +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} +# Package in RPMFusion was named skine-skins +Obsoletes: xine-skins +%if 0%{?fedora}>10 || 0%{?rhel}>5 +BuildArch: noarch +%endif + +%description skins +This package contains extra skins for xine-ui. + %prep -%setup -q +# Setup xine +%setup0 -q +# Setup skins +%setup1 -T -q -c -n %{name}-%{version}/fedoraskins -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 -a29 -a30 +# Restore directory +%setup -T -D + # Backup time stamp touch -r m4/_xine.m4 m4/_xine.m4.stamp %patch0 -p1 +%patch1 -p1 # and restore it touch -r m4/_xine.m4.stamp m4/_xine.m4 @@ -78,12 +139,17 @@ for f in doc/man/pl/*.1* doc/README?{cs, mv $f.utf8 $f done +cp -a src/xitk/xine-toolkit/README doc/README.xitk + +# Clean out skins +find fedoraskins/ -type d -name "CVS" -exec rm -rf {} \; || : +find fedoraskins/ -type d -name ".xvpics" -exec rm -rf {} \; || : %build -%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib +%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib XINE_DOCPATH=%{_docdir}/%{name}-%{version} +# Set documentation directory make %{?_smp_mflags} - %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" @@ -96,8 +162,11 @@ desktop-file-install --remove-category=" # Remove the desktop file installed in the wrong place rm -rf %{buildroot}%{_datadir}/xine/desktop -# Remove documentation installed by make install -rm -rf %{buildroot}%{_docdir} +# Remove automatically installed documentation (listed in %doc) +rm -rf %{buildroot}%{_docdir}/ + +# Install extra skins +cp -a fedoraskins/* %{buildroot}%{_datadir}/xine/skins/ %clean @@ -133,7 +202,12 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_bindir}/xine-bugreport %{_bindir}/xine-check %{_bindir}/xine-remote -%{_datadir}/xine/ + +%dir %{_datadir}/xine/skins/ +%{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/oxine/ +%{_datadir}/xine/visuals/ + %{_datadir}/applications/*xine.desktop %{_datadir}/icons/hicolor/*x*/apps/xine.png %{_datadir}/pixmaps/xine.xpm @@ -143,12 +217,22 @@ gtk-update-icon-cache %{_datadir}/icons/ %lang(fr) %{_mandir}/fr/man1/*.1.gz %lang(pl) %{_mandir}/pl/man1/*.1.gz +%files skins +%defattr(-,root,root,-) +%{_datadir}/xine/skins/* +%exclude %{_datadir}/xine/skins/xinetic/ %changelog -* Sun May 17 2009 Jussi Lehtola - 0.99.6-11 +* Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 +- Added -skins subpackage. + +* Wed Jul 15 2009 Jussi Lehtola - 0.99.5-12 +- Added BR: xorg-x11-proto-devel. + +* Sun May 17 2009 Jussi Lehtola - 0.99.5-11 - Added missing icon cache update to %%post section. -* Sun May 17 2009 Jussi Lehtola - 0.99.6-10 +* Sun May 17 2009 Jussi Lehtola - 0.99.5-10 - Use desktop-install --remove-category instead of sed. * Sat May 16 2009 Jussi Lehtola - 0.99.5-9 From jussilehtola at fedoraproject.org Sun Jul 19 23:30:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:30:34 +0000 (UTC) Subject: rpms/xine-ui/F-11 sources,1.2,1.3 xine-ui.spec,1.2,1.3 Message-ID: <20090719233034.D02B311C02C8@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21335/F-11 Modified Files: sources xine-ui.spec Log Message: Fix BZ #512598 & #512604. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 May 2009 05:59:06 -0000 1.2 +++ sources 19 Jul 2009 23:30:04 -0000 1.3 @@ -1 +1,31 @@ e643cd1fcad4d98a5ae4eb877ce5087b xine-ui-0.99.5.tar.gz +ad74c35558588f5d4234449a076b4105 Antares.tar.gz +61cbcf4cb3f1443a17e96c0a73eeb3a8 Bambino-Black.tar.gz +56f21a3ffddf0f0980336a5d9cdff179 Bambino-Blue.tar.gz +4d4ee2d1825896ff6c1dadfbf1f75864 Bambino-Green.tar.gz +dacd886be4fd9c13dd96fa3b96f3e7f8 Bambino-Orange.tar.gz +424b4dd516569c92af7d96c10daa46d3 Bambino-Pink.tar.gz +2e6438459244104e46d89a66e5a1f961 Bambino-Purple.tar.gz +3e8bc6f6958e8d732b88f2e227f3c879 Bambino-White.tar.gz +070fd8e3582b6f9e302b595c81dd87e4 Bluton.tar.gz +159b45f013183aea3038f9133f61cf89 CelomaChrome.tar.gz +5ac74cb407b59b3487031a0564698e1f CelomaGold.tar.gz +dadb7b21b8e7e0c40ad7237c4f98906f CelomaMdk.tar.gz +06f2b0f6ceb9456bc26fae65f4f89a53 Centori.tar.gz +eb511cd1217bc0c0bd3fa016698adebc Crystal.tar.gz +c7825e925434374a074c4acc46bcdd4f Galaxy.tar.gz +0154a3eecbeb995865ead852fd5f6bb2 Keramic.tar.gz +bff16e879b75bd5a442c0c5c7dc22bcb KeramicRH8.tar.gz +54b3e28494e1d89e041ceace7db32049 OMS_legacy.tar.gz +b92dfe59cb5f7bbc495ed0be50c1c132 Polaris.tar.gz +8702d138eb61b7149118f91121fe846a Sunset.tar.gz +454bdc7321fc18f0db811db722c2e93c blackslim2.tar.gz +1ff0ea8d7c73c4f3b32c13a408af3be1 caramel.tar.gz +432e0d5135be09e03a69f363d3da94a0 cloudy.tar.gz +34d18380c1077cdf43a04797b2e06734 concept.tar.gz +d809f2f3cce0eae966296e01ede8df00 gudgreen.tar.gz +f16d6a1a39b32473a901d9132c405196 lcd.tar.gz +841924c042ca70700a9d201bc7686e59 mp2k.tar.gz +3023e8dd6c12902c32b3d99e51fd0c1e mplayer.tar.gz +7dd4e9e50e0145142982b0537c36f50a pitt.tar.gz +9ebf98f4434a9fc119f0282806ba9c32 xinium.tar.gz Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-11/xine-ui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xine-ui.spec 18 May 2009 18:10:03 -0000 1.2 +++ xine-ui.spec 19 Jul 2009 23:30:04 -0000 1.3 @@ -3,13 +3,48 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 11%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ Source0: http://downloads.sourceforge.net/xine/xine-ui-%{version}.tar.gz # Patch to enable linking to shared library version of lirc Patch0: xine-ui-0.99.5-shared-lirc.patch +# Patch to use UTF-8 documentation, BZ #512598 +Patch1: xine-ui-0.99.5-utf8doc.patch + +# Sources for -skins. Ugh. +Source1: http://xine.sourceforge.net/skins/Antares.tar.gz +Source2: http://xine.sourceforge.net/skins/Bambino-Black.tar.gz +Source3: http://xine.sourceforge.net/skins/Bambino-Blue.tar.gz +Source4: http://xine.sourceforge.net/skins/Bambino-Green.tar.gz +Source5: http://xine.sourceforge.net/skins/Bambino-Orange.tar.gz +Source6: http://xine.sourceforge.net/skins/Bambino-Pink.tar.gz +Source7: http://xine.sourceforge.net/skins/Bambino-Purple.tar.gz +Source8: http://xine.sourceforge.net/skins/Bambino-White.tar.gz +Source9: http://xine.sourceforge.net/skins/blackslim2.tar.gz +Source10: http://xine.sourceforge.net/skins/Bluton.tar.gz +Source11: http://xine.sourceforge.net/skins/caramel.tar.gz +Source12: http://xine.sourceforge.net/skins/CelomaChrome.tar.gz +Source13: http://xine.sourceforge.net/skins/CelomaGold.tar.gz +Source14: http://xine.sourceforge.net/skins/CelomaMdk.tar.gz +Source15: http://xine.sourceforge.net/skins/Centori.tar.gz +Source16: http://xine.sourceforge.net/skins/cloudy.tar.gz +Source17: http://xine.sourceforge.net/skins/concept.tar.gz +Source18: http://xine.sourceforge.net/skins/Crystal.tar.gz +Source19: http://xine.sourceforge.net/skins/Galaxy.tar.gz +Source20: http://xine.sourceforge.net/skins/gudgreen.tar.gz +Source21: http://xine.sourceforge.net/skins/KeramicRH8.tar.gz +Source22: http://xine.sourceforge.net/skins/Keramic.tar.gz +Source23: http://xine.sourceforge.net/skins/lcd.tar.gz +Source24: http://xine.sourceforge.net/skins/mp2k.tar.gz +Source25: http://xine.sourceforge.net/skins/mplayer.tar.gz +Source26: http://xine.sourceforge.net/skins/OMS_legacy.tar.gz +Source27: http://xine.sourceforge.net/skins/pitt.tar.gz +Source28: http://xine.sourceforge.net/skins/Polaris.tar.gz +Source29: http://xine.sourceforge.net/skins/Sunset.tar.gz +Source30: http://xine.sourceforge.net/skins/xinium.tar.gz + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Package was named xine in rpmfusion @@ -32,21 +67,47 @@ BuildRequires: libXxf86vm-devel BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 +BuildRequires: xorg-x11-proto-devel Conflicts: xine-skins <= 1.0 # For dir ownership Requires: hicolor-icon-theme +Requires: xine-lib # To make aaxine work Requires: xine-lib-extras %description -xine-ui is the default GUI for xine-lib. +xine-ui is the traditional, skinned GUI for xine-lib. + + +# Skins + +%package skins +Summary: Extra skins for xine-ui +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} +# Package in RPMFusion was named skine-skins +Obsoletes: xine-skins +%if 0%{?fedora}>10 || 0%{?rhel}>5 +BuildArch: noarch +%endif + +%description skins +This package contains extra skins for xine-ui. + %prep -%setup -q +# Setup xine +%setup0 -q +# Setup skins +%setup1 -T -q -c -n %{name}-%{version}/fedoraskins -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 -a29 -a30 +# Restore directory +%setup -T -D + # Backup time stamp touch -r m4/_xine.m4 m4/_xine.m4.stamp %patch0 -p1 +%patch1 -p1 # and restore it touch -r m4/_xine.m4.stamp m4/_xine.m4 @@ -78,12 +139,17 @@ for f in doc/man/pl/*.1* doc/README?{cs, mv $f.utf8 $f done +cp -a src/xitk/xine-toolkit/README doc/README.xitk + +# Clean out skins +find fedoraskins/ -type d -name "CVS" -exec rm -rf {} \; || : +find fedoraskins/ -type d -name ".xvpics" -exec rm -rf {} \; || : %build -%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib +%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib XINE_DOCPATH=%{_docdir}/%{name}-%{version} +# Set documentation directory make %{?_smp_mflags} - %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" @@ -96,8 +162,11 @@ desktop-file-install --remove-category=" # Remove the desktop file installed in the wrong place rm -rf %{buildroot}%{_datadir}/xine/desktop -# Remove documentation installed by make install -rm -rf %{buildroot}%{_docdir} +# Remove automatically installed documentation (listed in %doc) +rm -rf %{buildroot}%{_docdir}/ + +# Install extra skins +cp -a fedoraskins/* %{buildroot}%{_datadir}/xine/skins/ %clean @@ -133,7 +202,12 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_bindir}/xine-bugreport %{_bindir}/xine-check %{_bindir}/xine-remote -%{_datadir}/xine/ + +%dir %{_datadir}/xine/skins/ +%{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/oxine/ +%{_datadir}/xine/visuals/ + %{_datadir}/applications/*xine.desktop %{_datadir}/icons/hicolor/*x*/apps/xine.png %{_datadir}/pixmaps/xine.xpm @@ -143,12 +217,22 @@ gtk-update-icon-cache %{_datadir}/icons/ %lang(fr) %{_mandir}/fr/man1/*.1.gz %lang(pl) %{_mandir}/pl/man1/*.1.gz +%files skins +%defattr(-,root,root,-) +%{_datadir}/xine/skins/* +%exclude %{_datadir}/xine/skins/xinetic/ %changelog -* Sun May 17 2009 Jussi Lehtola - 0.99.6-11 +* Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 +- Added -skins subpackage. + +* Wed Jul 15 2009 Jussi Lehtola - 0.99.5-12 +- Added BR: xorg-x11-proto-devel. + +* Sun May 17 2009 Jussi Lehtola - 0.99.5-11 - Added missing icon cache update to %%post section. -* Sun May 17 2009 Jussi Lehtola - 0.99.6-10 +* Sun May 17 2009 Jussi Lehtola - 0.99.5-10 - Use desktop-install --remove-category instead of sed. * Sat May 16 2009 Jussi Lehtola - 0.99.5-9 From jussilehtola at fedoraproject.org Sun Jul 19 23:36:20 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:36:20 +0000 (UTC) Subject: rpms/xine-ui/F-10 xine-ui-0.99.5-utf8doc.patch,NONE,1.1 Message-ID: <20090719233620.CBA0611C00D7@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23030/F-10 Added Files: xine-ui-0.99.5-utf8doc.patch Log Message: Add forgotten patches to cvs. xine-ui-0.99.5-utf8doc.patch: help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE xine-ui-0.99.5-utf8doc.patch --- diff -urp xine-ui-0.99.5.orig/src/xitk/help.c xine-ui-0.99.5/src/xitk/help.c --- xine-ui-0.99.5.orig/src/xitk/help.c 2009-07-19 18:27:09.000000000 +0100 +++ xine-ui-0.99.5/src/xitk/help.c 2009-07-19 18:27:25.000000000 +0100 @@ -182,7 +182,7 @@ static void help_sections(void) { help_add_section(locale_readme, lang->doc_encoding, order_num, section_name); } else { - help_add_section(default_readme, "ISO-8859-1", order_num, section_name); + help_add_section(default_readme, "UTF-8", order_num, section_name); } } } From jussilehtola at fedoraproject.org Sun Jul 19 23:36:20 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Sun, 19 Jul 2009 23:36:20 +0000 (UTC) Subject: rpms/xine-ui/F-11 xine-ui-0.99.5-utf8doc.patch,NONE,1.1 Message-ID: <20090719233620.E8FE311C0263@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23030/F-11 Added Files: xine-ui-0.99.5-utf8doc.patch Log Message: Add forgotten patches to cvs. xine-ui-0.99.5-utf8doc.patch: help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE xine-ui-0.99.5-utf8doc.patch --- diff -urp xine-ui-0.99.5.orig/src/xitk/help.c xine-ui-0.99.5/src/xitk/help.c --- xine-ui-0.99.5.orig/src/xitk/help.c 2009-07-19 18:27:09.000000000 +0100 +++ xine-ui-0.99.5/src/xitk/help.c 2009-07-19 18:27:25.000000000 +0100 @@ -182,7 +182,7 @@ static void help_sections(void) { help_add_section(locale_readme, lang->doc_encoding, order_num, section_name); } else { - help_add_section(default_readme, "ISO-8859-1", order_num, section_name); + help_add_section(default_readme, "UTF-8", order_num, section_name); } } } From mjakubicek at fedoraproject.org Mon Jul 20 00:01:26 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Mon, 20 Jul 2009 00:01:26 +0000 (UTC) Subject: rpms/boinc-client/devel boinc-macbuild.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 boinc-client-6.4.5-event.patch, 1.1, 1.2 boinc-client-logrotate-d, 1.3, 1.4 boinc-client.spec, 1.35, 1.36 sources, 1.5, 1.6 trim, 1.2, 1.3 boinc-locales.patch, 1.2, NONE Message-ID: <20090720000126.9639111C00D7@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30812 Modified Files: .cvsignore boinc-client-6.4.5-event.patch boinc-client-logrotate-d boinc-client.spec sources trim Added Files: boinc-macbuild.patch Removed Files: boinc-locales.patch Log Message: - Update to 6.6 branch - Removed boinc-locales.patch (merged upstream) - Added boinc-macbuild.patch to fix ppc/ppc64 build failure - Fixed typo in upstream bugtracker link - Condrestart the service after package update. - Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. boinc-macbuild.patch: gui_rpc_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE boinc-macbuild.patch --- --- boinc_core_release_6_6/client/gui_rpc_server.cpp.orig 2009-07-19 17:04:24.000000000 +0200 +++ boinc_core_release_6_6/client/gui_rpc_server.cpp 2009-07-19 17:04:32.000000000 +0200 @@ -351,7 +351,7 @@ } boinc_socklen_t addr_len = sizeof(addr); - sock = accept(lsock, (struct sockaddr*)&addr, (boinc_socklen_t*)&addr_len); + sock = accept(lsock, (struct sockaddr*)&addr, (socklen_t*)&addr_len); if (sock == -1) { return; } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 7 Mar 2009 01:36:16 -0000 1.5 +++ .cvsignore 20 Jul 2009 00:00:55 -0000 1.6 @@ -1 +1 @@ -boinc-6.4.7.tar.bz2 +boinc-6.6.37.tar.bz2 boinc-client-6.4.5-event.patch: wxFlatNotebook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: boinc-client-6.4.5-event.patch =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client-6.4.5-event.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- boinc-client-6.4.5-event.patch 24 Feb 2009 21:38:55 -0000 1.1 +++ boinc-client-6.4.5-event.patch 20 Jul 2009 00:00:55 -0000 1.2 @@ -2,11 +2,11 @@ diff -up boinc_core_release_6_4_5/client --- boinc_core_release_6_4_5/clientgui/common/wxFlatNotebook.cpp.event 2009-02-20 07:35:19.000000000 -0500 +++ boinc_core_release_6_4_5/clientgui/common/wxFlatNotebook.cpp 2009-02-20 07:34:40.000000000 -0500 @@ -607,7 +607,7 @@ const wxColour& wxFlatNotebookBase::GetA - // - /////////////////////////////////////////////////////////////////////////////////////////// - --BEGIN_EVENT_TABLE(wxPageContainerBase, wxControl) -+BEGIN_EVENT_TABLE(wxPageContainerBase, wxPanel) - EVT_PAINT(wxPageContainerBase::OnPaint) - EVT_SIZE(wxPageContainerBase::OnSize) - EVT_LEFT_DOWN(wxPageContainerBase::OnLeftDown) + // + /////////////////////////////////////////////////////////////////////////////////////////// + +-BEGIN_EVENT_TABLE(wxPageContainerBase, wxControl) ++BEGIN_EVENT_TABLE(wxPageContainerBase, wxPanel) + EVT_PAINT(wxPageContainerBase::OnPaint) + EVT_SIZE(wxPageContainerBase::OnSize) + EVT_LEFT_DOWN(wxPageContainerBase::OnLeftDown) Index: boinc-client-logrotate-d =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client-logrotate-d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- boinc-client-logrotate-d 14 Apr 2009 16:06:09 -0000 1.3 +++ boinc-client-logrotate-d 20 Jul 2009 00:00:55 -0000 1.4 @@ -10,7 +10,7 @@ # Author: Kathryn Marks # Created: October 6, 2007 # Modified: Milos Jakubicek -# Last Modified: April 12, 2009 +# Last Modified: July 19, 2009 ###################################################################### /var/log/boinc.log /var/log/boincerr.log @@ -24,13 +24,13 @@ sharedscripts prerotate if [ -f /var/lock/subsys/boinc-client ]; then - touch /var/run/boinc_was_running + touch /tmp/boinc_was_running service boinc-client stop >& /dev/null fi endscript postrotate - if [ -f /var/run/boinc_was_running ]; then - rm /var/run/boinc_was_running + if [ -f /tmp/boinc_was_running ]; then + rm /tmp/boinc_was_running service boinc-client start >& /dev/null fi endscript Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- boinc-client.spec 14 Apr 2009 16:06:09 -0000 1.35 +++ boinc-client.spec 20 Jul 2009 00:00:55 -0000 1.36 @@ -1,10 +1,10 @@ -%define revision 17542 -%define version_ 6_4 +%define revision 18631 +%define version_ 6_6 Summary: The BOINC client core Name: boinc-client -Version: 6.4.7 -Release: 10.r%{revision}svn%{?dist} +Version: 6.6.37 +Release: 1.r%{revision}svn%{?dist} License: LGPLv2+ Group: Applications/Engineering URL: http://boinc.berkeley.edu/ @@ -12,6 +12,11 @@ URL: http://boinc.berkeley.edu/ # following commands to generate the tarball: # svn export http://boinc.berkeley.edu/svn/tags/boinc_core_release_%{version_} # pushd boinc_core_release_%{version_} +# mkdir locale/client +# touch locale/client/Makefile.in +# mkdir -p packages/generic/sea/ +# touch packages/generic/sea/Makefile.in +# sed -i "s/BUILD_CLIENTGUI/ENABLE_MANAGER/" doc/manpages/Makefile.am # ./_autosetup # ./trim . Trim all binaries and other unnecessary things. # popd @@ -27,13 +32,8 @@ Patch1: boinc-gccflags.patch #Fix security bug BZ#479664 #Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 Patch2: boinc-rsa.patch -#Change locales filenames from "BOINC Manager.mo" into "BOINC-Manager.mo" -#so that we can use the find_lang macro. -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/722 -#Fixed in SVN trunk, not yet in BOINC 6 branch. -Patch3: boinc-locales.patch #Both of these patches fix the gcc 4.4 build -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 Patch4: boinc-gcc44.patch Patch5: boinc-client-6.4.5-event.patch #Create password file rw for group, this enables passwordless connection @@ -44,10 +44,15 @@ Patch6: boinc-guirpcauth.patch #Enable dlopening libcudart.so from standard paths #Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/863 Patch7: boinc-cuda.patch +#Fix Mac build: +Patch8: boinc-macbuild.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: logrotate -Requires: chkconfig +Requires(post): chkconfig +Requires(preun): chkconfig +Requires(preun): initscripts +Requires(postun): initscripts Requires(pre): shadow-utils BuildRequires: MySQL-python @@ -118,11 +123,11 @@ This package contains documentation file %setup -q -n boinc_core_release_%{version_} %patch1 -p1 %patch2 -p1 -%patch3 -p1 %patch4 %patch5 -p1 %patch6 %patch7 +%patch8 -p1 # fix utf8 iconv -f ISO88591 -t UTF8 < checkin_notes_2004 > checkin_notes_2004.utf8 @@ -148,12 +153,21 @@ mv checkin_notes_2006.utf8 checkin_notes %define boinc_platform ppc64-linux-gnu %endif -#quick fix to make build & install to work, filed in upstream's bugtracker under +#quick fixes to make build & install to work, filed in upstream's bugtracker under #http://boinc.berkeley.edu/trac/ticket/811 +# - this should just go away sed -i "s/boincmgr.16x16.png boincmgr.32x32.png boincmgr.48x48.png//" clientgui/res/Makefile.in +# - missing in the Makefile echo "install:" >> samples/example_app/Makefile +# - because "-lssl" is needed +sed -i 's/crypt_prog_LDADD = $(lib_LIBRARIES) $(RSA_LIBS) $(PTHREAD_LIBS)/crypt_prog_LDADD = $(lib_LIBRARIES) $(RSA_LIBS) $(PTHREAD_LIBS) $(BOINC_EXTRA_LIBS)/' lib/Makefile.in +# - because "-lcurl" is needed +sed -i 's/boinc_client_LDADD = $(LIBBOINC) $(PTHREAD_LIBS)/boinc_client_LDADD = $(LIBBOINC) $(PTHREAD_LIBS) $(BOINC_EXTRA_LIBS)/' client/Makefile.in + +#We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 +sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in -%define confflags --disable-static --enable-unicode STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man +%define confflags --disable-static --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man %if %{defined boinc_platform} %configure %{confflags} --with-boinc-platform=%{boinc_platform} @@ -162,7 +176,9 @@ echo "install:" >> samples/example_app/M %endif -# Parallel make does not work. +# Parallel make does not work, see upstream bugtracker at: +# http://boinc.berkeley.edu/trac/ticket/775 +echo -e "all:\ninstall:" >> locale/client/Makefile make %install @@ -234,12 +250,6 @@ desktop-file-install %{?_remove_encoding --dir $RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE3} -# locales -mv locale/client/* locale -find locale -not -name "BOINC Manager.mo" -type f -delete -cp -rp locale $RPM_BUILD_ROOT%{_datadir} -find $RPM_BUILD_ROOT%{_datadir}/locale -name "BOINC Manager.mo" -execdir mv {} BOINC-Manager.mo \; - %find_lang BOINC-Manager # bash-completion @@ -276,6 +286,12 @@ if [ $1 -eq 0 ]; then #if uninstalling, /sbin/chkconfig --del boinc-client fi +%postun +if [ "$1" -ge "1" ] ; then + /sbin/service boinc-client condrestart >/dev/null 2>&1 || : +fi + + %post -n boinc-manager touch --no-create %{_datadir}/icons/hicolor || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then @@ -323,14 +339,22 @@ fi %defattr(-,root,root,-) %{_libdir}/libboinc.a %{_libdir}/libboinc_api.a -%{_libdir}/libboinc_zip.a -%{_libdir}/libsched.a %{_libdir}/libboinc_graphics2.a %dir %{_includedir}/boinc %{_includedir}/boinc/* %changelog +* Sun Jul 19 2009 Milos Jakubicek - 6.6.37-1.r18631svn +- Update to 6.6 branch +- Removed boinc-locales.patch (merged upstream) +- Added boinc-macbuild.patch to fix ppc/ppc64 build failure +- Fixed typo in upstream bugtracker link + +* Thu May 14 2009 Milos Jakubicek - 6.4.7-11.r17542svn +- Condrestart the service after package update. +- Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. + * Wed Apr 14 2009 Milos Jakubicek - 6.4.7-10.r17542svn - Fix lock file name in logrotate script, do not override global logrotate configuration (BZ#494179). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 7 Mar 2009 01:36:17 -0000 1.5 +++ sources 20 Jul 2009 00:00:56 -0000 1.6 @@ -1 +1 @@ -9593e6daa2d8604e274470065bd31b80 boinc-6.4.7.tar.bz2 +77f5a1cc0b305ff448cb1030956426f1 boinc-6.6.37.tar.bz2 Index: trim =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/trim,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- trim 1 Jan 2009 22:35:38 -0000 1.2 +++ trim 20 Jul 2009 00:00:56 -0000 1.3 @@ -9,7 +9,7 @@ fi echo "Trimming directories..." -DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs/CUDA/mswin" +DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs" for DIR in $DIRS; do /bin/rm -rf $1/$DIR; --- boinc-locales.patch DELETED --- From davej at fedoraproject.org Mon Jul 20 01:05:46 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 01:05:46 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1637,1.1638 Message-ID: <20090720010546.D46D811C00D7@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17828 Modified Files: kernel.spec Log Message: build a 'full' package on i686 (Bill Nottingham) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1637 retrieving revision 1.1638 diff -u -p -r1.1637 -r1.1638 --- kernel.spec 19 Jul 2009 20:29:24 -0000 1.1637 +++ kernel.spec 20 Jul 2009 01:05:16 -0000 1.1638 @@ -195,9 +195,8 @@ Summary: The Linux kernel %endif %define debuginfodir /usr/lib/debug -# We only build -PAE for 686 as of Fedora 11. +# We only build -PAE on 686. %ifarch i686 -%define with_up 0 %define with_pae 1 %else %define with_pae 0 @@ -249,9 +248,9 @@ Summary: The Linux kernel %define with_perf 0 %endif -# no need to build headers again for these arches, -# they can just use i586 and ppc64 headers -%ifarch i686 ppc64iseries +# no need to build headers again for this arch, +# they can just use ppc64 headers +%ifarch ppc64iseries %define with_headers 0 %endif @@ -1885,6 +1884,9 @@ fi # and build. %changelog +* Sun Jul 19 2009 Dave Jones 2.6.31-0.75.rc3.git4 +- build a 'full' package on i686 (Bill Nottingham) + * Sun Jul 19 2009 Dave Jones 2.6.31-0.74.rc3.git4 - 2.6.31-rc3-git4 From cwickert at fedoraproject.org Mon Jul 20 01:07:58 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 20 Jul 2009 01:07:58 +0000 (UTC) Subject: rpms/emelfm2/devel .cvsignore, 1.21, 1.22 emelfm2.spec, 1.40, 1.41 sources, 1.21, 1.22 Message-ID: <20090720010758.C5D1D11C00D7@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18738 Modified Files: .cvsignore emelfm2.spec sources Log Message: * Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 - Update to 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 17 Jul 2009 00:28:58 -0000 1.21 +++ .cvsignore 20 Jul 2009 01:07:58 -0000 1.22 @@ -1 +1 @@ -emelfm2-0.6.1.tar.bz2 +emelfm2-0.6.2.tar.bz2 Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- emelfm2.spec 17 Jul 2009 15:39:57 -0000 1.40 +++ emelfm2.spec 20 Jul 2009 01:07:58 -0000 1.41 @@ -5,8 +5,8 @@ # rpmbuild -ba emelfm2.spec --with hal Name: emelfm2 -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 +- Update to 0.6.2 + * Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 - Build with ACL plugin again, got dropped accidentially. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 17 Jul 2009 00:28:58 -0000 1.21 +++ sources 20 Jul 2009 01:07:58 -0000 1.22 @@ -1 +1 @@ -8372c29d72d4d9ad08939f980b689156 emelfm2-0.6.1.tar.bz2 +fb07ef7abcf53854972b10d53bc31126 emelfm2-0.6.2.tar.bz2 From nosnilmot at fedoraproject.org Mon Jul 20 01:15:51 2009 From: nosnilmot at fedoraproject.org (Stu Tomlinson) Date: Mon, 20 Jul 2009 01:15:51 +0000 (UTC) Subject: rpms/pidgin/F-10 pidgin-2.5.8-nss-md2.patch, NONE, 1.1 pidgin.spec, 1.77, 1.78 Message-ID: <20090720011551.BCD5911C00D7@cvs1.fedora.phx.redhat.com> Author: nosnilmot Update of /cvs/extras/rpms/pidgin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20230/F-10 Modified Files: pidgin.spec Added Files: pidgin-2.5.8-nss-md2.patch Log Message: nss-3.12.3.99.3 has been pushed as a stable update to F10 now, so we need this patch backported there too now :( - Backport patch from upstream to enable NSS to recognize root CA certificates that use MD2 & MD4 algorithms in their signature, as used by some MSN and XMPP servers pidgin-2.5.8-nss-md2.patch: ssl-nss.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE pidgin-2.5.8-nss-md2.patch --- Original Author: qulogic at pidgin.im Date: 2009-07-11T06:46:21 Branch: im.pidgin.pidgin Modified files: libpurple/plugins/ssl/ssl-nss.c ChangeLog: Enable the weaker MD2 and MD4 with RSA encryption signing algorithms that are now disabled in NSS 3.12.3. This allows signing in without errors on at least MSN, and some XMPP servers. ============================================================ --- libpurple/plugins/ssl/ssl-nss.c 54d9228e9319318b825b3aa486075d372e8cc8aa +++ libpurple/plugins/ssl/ssl-nss.c 5d35e88f8d79d3e07316c324c55c30cec67a1aad @@ -152,6 +152,10 @@ ssl_nss_init_nss(void) SSL_CipherPrefSetDefault(SSL_DHE_RSA_WITH_DES_CBC_SHA, 1); SSL_CipherPrefSetDefault(SSL_DHE_DSS_WITH_DES_CBC_SHA, 1); + /* Enable some weaker algorithms for XMPP and MSN */ + NSS_SetAlgorithmPolicy(SEC_OID_PKCS1_MD2_WITH_RSA_ENCRYPTION, NSS_USE_ALG_IN_CERT_SIGNATURE, 0); + NSS_SetAlgorithmPolicy(SEC_OID_PKCS1_MD4_WITH_RSA_ENCRYPTION, NSS_USE_ALG_IN_CERT_SIGNATURE, 0); + _identity = PR_GetUniqueIdentity("Purple"); _nss_methods = PR_GetDefaultIOMethods(); } Index: pidgin.spec =================================================================== RCS file: /cvs/extras/rpms/pidgin/F-10/pidgin.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- pidgin.spec 29 Jun 2009 00:40:28 -0000 1.77 +++ pidgin.spec 20 Jul 2009 01:15:21 -0000 1.78 @@ -29,6 +29,7 @@ %define perl_embed_separated 0 %define api_docs 0 %define krb4_removed 0 +%define nss_md2_disabled 0 # RHEL4: Use ALSA aplay to output sounds because it lacks gstreamer %if 0%{?fedora} < 5 @@ -60,6 +61,10 @@ %define perl_embed_separated 1 %define api_docs 1 %endif +# F11+: New NSS (3.12.3) disables weaker MD2 algorithm +%if 0%{?fedora} >= 10 +%define nss_md2_disabled 1 +%endif # F12+: krb4 removed %if 0%{?fedora} >= 12 %define krb4_removed 1 @@ -68,7 +73,7 @@ Name: pidgin Version: 2.5.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -103,6 +108,7 @@ Patch0: pidgin-NOT-UPSTREAM-2.5.3-reread Patch1: pidgin-NOT-UPSTREAM-2.5.2-rhel4-sound-migration.patch ## Patches 100+: To be Included in Future Upstream +Patch100: pidgin-2.5.8-nss-md2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root Summary: A Gtk+ based multiprotocol instant messaging client @@ -125,7 +131,11 @@ BuildRequires: autoconf BuildRequires: libtool BuildRequires: startup-notification-devel BuildRequires: cyrus-sasl-devel -BuildRequires: nss-devel +%if %{nss_md2_disabled} +BuildRequires: nss-devel >= 3.12.3 +%else +BuildRequires: nss-devel +%endif BuildRequires: gtk2-devel BuildRequires: gettext BuildRequires: intltool @@ -140,7 +150,7 @@ BuildRequires: libxml2-devel BuildRequires: krb5-devel %endif # gtkspell integration (FC1+) -BuildRequires: gtkspell-devel, aspell-devel +BuildRequires: gtkspell-devel # Evolution integration (FC3+) BuildRequires: evolution-data-server-devel # SILC integration (FC3+) @@ -349,6 +359,9 @@ echo "FEDORA=%{fedora} RHEL=%{rhel}" %endif ## Patches 100+: To be Included in Future Upstream +%if %{nss_md2_disabled} +%patch100 -p0 -b .nssmd2 +%endif # Our preferences cp %{SOURCE1} prefs.xml @@ -585,6 +598,11 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Jul 11 2009 Stu Tomlison 2.5.8-2 +- Backport patch from upstream to enable NSS to recognize root CA + certificates that use MD2 & MD4 algorithms in their signature, as + used by some MSN and XMPP servers + * Sun Jun 28 2009 Warren Togami 2.5.8-1 - 2.5.8 with several important bug fixes From nosnilmot at fedoraproject.org Mon Jul 20 01:15:51 2009 From: nosnilmot at fedoraproject.org (Stu Tomlinson) Date: Mon, 20 Jul 2009 01:15:51 +0000 (UTC) Subject: rpms/pidgin/F-11 pidgin.spec,1.72,1.73 Message-ID: <20090720011551.EB73011C00D7@cvs1.fedora.phx.redhat.com> Author: nosnilmot Update of /cvs/extras/rpms/pidgin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20230/F-11 Modified Files: pidgin.spec Log Message: nss-3.12.3.99.3 has been pushed as a stable update to F10 now, so we need this patch backported there too now :( - Backport patch from upstream to enable NSS to recognize root CA certificates that use MD2 & MD4 algorithms in their signature, as used by some MSN and XMPP servers Index: pidgin.spec =================================================================== RCS file: /cvs/extras/rpms/pidgin/F-11/pidgin.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- pidgin.spec 12 Jul 2009 17:17:31 -0000 1.72 +++ pidgin.spec 20 Jul 2009 01:15:21 -0000 1.73 @@ -62,7 +62,7 @@ %define api_docs 1 %endif # F11+: New NSS (3.12.3) disables weaker MD2 algorithm -%if 0%{?fedora} >= 11 +%if 0%{?fedora} >= 10 %define nss_md2_disabled 1 %endif # F12+: krb4 removed From nosnilmot at fedoraproject.org Mon Jul 20 01:15:52 2009 From: nosnilmot at fedoraproject.org (Stu Tomlinson) Date: Mon, 20 Jul 2009 01:15:52 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.79,1.80 Message-ID: <20090720011552.239B411C00D7@cvs1.fedora.phx.redhat.com> Author: nosnilmot Update of /cvs/extras/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20230/devel Modified Files: pidgin.spec Log Message: nss-3.12.3.99.3 has been pushed as a stable update to F10 now, so we need this patch backported there too now :( - Backport patch from upstream to enable NSS to recognize root CA certificates that use MD2 & MD4 algorithms in their signature, as used by some MSN and XMPP servers Index: pidgin.spec =================================================================== RCS file: /cvs/extras/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- pidgin.spec 12 Jul 2009 17:17:31 -0000 1.79 +++ pidgin.spec 20 Jul 2009 01:15:21 -0000 1.80 @@ -62,7 +62,7 @@ %define api_docs 1 %endif # F11+: New NSS (3.12.3) disables weaker MD2 algorithm -%if 0%{?fedora} >= 11 +%if 0%{?fedora} >= 10 %define nss_md2_disabled 1 %endif # F12+: krb4 removed From davej at fedoraproject.org Mon Jul 20 02:58:35 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 02:58:35 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1638,1.1639 Message-ID: <20090720025835.CEB6A11C0099@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16311 Modified Files: kernel.spec Log Message: don't try building non-PAE 686 kernels Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1638 retrieving revision 1.1639 diff -u -p -r1.1638 -r1.1639 --- kernel.spec 20 Jul 2009 01:05:16 -0000 1.1638 +++ kernel.spec 20 Jul 2009 02:58:04 -0000 1.1639 @@ -197,6 +197,7 @@ Summary: The Linux kernel # We only build -PAE on 686. %ifarch i686 +%define with_up 0 %define with_pae 1 %else %define with_pae 0 From petersen at fedoraproject.org Mon Jul 20 03:37:42 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Mon, 20 Jul 2009 03:37:42 +0000 (UTC) Subject: rpms/scim-qtimm/devel scim-qtimm.spec,1.18,1.19 Message-ID: <20090720033743.1324A11C0099@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/pkgs/rpms/scim-qtimm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25758 Modified Files: scim-qtimm.spec Log Message: correct the Group name (reported by Edwin ten Brink, #512544) Index: scim-qtimm.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-qtimm/devel/scim-qtimm.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- scim-qtimm.spec 25 Feb 2009 23:14:59 -0000 1.18 +++ scim-qtimm.spec 20 Jul 2009 03:37:12 -0000 1.19 @@ -5,7 +5,7 @@ Summary: SCIM input method module # No version specified. License: GPL+ -Group: System/Libraries +Group: System Environment/Libraries URL: http://www.scim-im.org/projects/scim_qtimm Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Jens Petersen +- correct the Group name (reported by Edwin ten Brink, #512544) + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lucilanga at fedoraproject.org Mon Jul 20 05:04:18 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Mon, 20 Jul 2009 05:04:18 +0000 (UTC) Subject: rpms/xlog/devel .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xlog.spec, 1.11, 1.12 Message-ID: <20090720050418.8F1AE11C00D5@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/xlog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6610 Modified Files: .cvsignore sources xlog.spec Log Message: * Mon Jul 20 2009 Lucian Langa - 2.0.3-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xlog/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 25 Jun 2009 16:55:11 -0000 1.6 +++ .cvsignore 20 Jul 2009 05:04:18 -0000 1.7 @@ -1 +1 @@ -xlog-2.0.2.tar.gz +xlog-2.0.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xlog/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 25 Jun 2009 16:55:11 -0000 1.6 +++ sources 20 Jul 2009 05:04:18 -0000 1.7 @@ -1 +1 @@ -e33b03562cf8957029fe8cb9b98447cd xlog-2.0.2.tar.gz +c583ac96e3f1c3873f1030d44333e747 xlog-2.0.3.tar.gz Index: xlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlog/devel/xlog.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xlog.spec 25 Jun 2009 16:55:11 -0000 1.11 +++ xlog.spec 20 Jul 2009 05:04:18 -0000 1.12 @@ -1,5 +1,5 @@ Name: xlog -Version: 2.0.2 +Version: 2.0.3 Release: 1%{?dist} Summary: Logging program for Hamradio Operators @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Lucian Langa - 2.0.3-1 +- new upstream release + * Thu Jun 25 2009 Lucian Langa - 2.0.2-1 - new upstream release From lucilanga at fedoraproject.org Mon Jul 20 05:06:21 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Mon, 20 Jul 2009 05:06:21 +0000 (UTC) Subject: rpms/fuse-emulator/F-11 .cvsignore, 1.7, 1.8 fuse-emulator.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090720050621.F3D2D11C00D5@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/fuse-emulator/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7085 Modified Files: .cvsignore fuse-emulator.spec sources Log Message: * Mon Jul 20 2009 Lucian Langa - 0.10.0.2-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Dec 2008 16:30:58 -0000 1.7 +++ .cvsignore 20 Jul 2009 05:05:51 -0000 1.8 @@ -1 +1 @@ -fuse-0.10.0.1-noroms.tar.gz +fuse-0.10.0.2-noroms.tar.gz Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-11/fuse-emulator.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fuse-emulator.spec 24 Feb 2009 18:50:52 -0000 1.12 +++ fuse-emulator.spec 20 Jul 2009 05:05:51 -0000 1.13 @@ -1,6 +1,6 @@ Name: fuse-emulator -Version: 0.10.0.1 -Release: 2%{?dist} +Version: 0.10.0.2 +Release: 1%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators License: GPLv2+ @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Lucian Langa - 0.10.0.2-1 +- new upstream release + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Dec 2008 16:30:58 -0000 1.8 +++ sources 20 Jul 2009 05:05:51 -0000 1.9 @@ -1 +1 @@ -fcc37e6ef6278ed526b3517dc1777374 fuse-0.10.0.1-noroms.tar.gz +633cd78c19a615f523831e976487c744 fuse-0.10.0.2-noroms.tar.gz From lucilanga at fedoraproject.org Mon Jul 20 05:35:17 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Mon, 20 Jul 2009 05:35:17 +0000 (UTC) Subject: rpms/xlog/F-11 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xlog.spec, 1.11, 1.12 Message-ID: <20090720053517.3EC4E11C00D5@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/xlog/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16231 Modified Files: .cvsignore sources xlog.spec Log Message: * Mon Jul 20 2009 Lucian Langa - 2.0.3-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 25 Jun 2009 17:23:19 -0000 1.6 +++ .cvsignore 20 Jul 2009 05:34:46 -0000 1.7 @@ -1 +1 @@ -xlog-2.0.2.tar.gz +xlog-2.0.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 25 Jun 2009 17:23:20 -0000 1.6 +++ sources 20 Jul 2009 05:34:46 -0000 1.7 @@ -1 +1 @@ -e33b03562cf8957029fe8cb9b98447cd xlog-2.0.2.tar.gz +c583ac96e3f1c3873f1030d44333e747 xlog-2.0.3.tar.gz Index: xlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-11/xlog.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xlog.spec 25 Jun 2009 17:23:20 -0000 1.11 +++ xlog.spec 20 Jul 2009 05:34:46 -0000 1.12 @@ -1,5 +1,5 @@ Name: xlog -Version: 2.0.2 +Version: 2.0.3 Release: 1%{?dist} Summary: Logging program for Hamradio Operators @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Lucian Langa - 2.0.3-1 +- new upstream release + * Thu Jun 25 2009 Lucian Langa - 2.0.2-1 - new upstream release From cchance at fedoraproject.org Mon Jul 20 05:40:10 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Mon, 20 Jul 2009 05:40:10 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel Makefile, 1.1, 1.2 ibus-table-cangjie.spec, 1.10, 1.11 Message-ID: <20090720054010.5163611C049E@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18133 Modified Files: Makefile ibus-table-cangjie.spec Log Message: Rebuilt. Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- Makefile 16 Mar 2009 00:43:55 -0000 1.1 +++ Makefile 20 Jul 2009 05:39:40 -0000 1.2 @@ -1,7 +1,7 @@ # Makefile for source rpm: ibus-table-cangjie # $Id$ NAME := ibus-table-cangjie -SPECFILE = $(firstword $(wildcard *.spec)) +SPECFILE = ibus-table-cangjie.spec define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ibus-table-cangjie.spec 17 Jul 2009 05:28:16 -0000 1.10 +++ ibus-table-cangjie.spec 20 Jul 2009 05:39:40 -0000 1.11 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.2.0.20090717 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -30,8 +30,6 @@ export IBUS_TABLE_CREATEDB="%{_bindir}/i --prefix=%{_prefix} \ --enable-cangjie5 \ --enable-cangjie3 \ - --enable-quick5 \ - --enable-quick3 %__make %{?_smp_mflags} %install @@ -45,8 +43,6 @@ make DESTDIR=%{buildroot} NO_INDEX=true cd %{_datadir}/ibus-table/tables/ %{_bindir}/ibus-table-createdb -i -n cangjie3.db %{_bindir}/ibus-table-createdb -i -n cangjie5.db -%{_bindir}/ibus-table-createdb -i -n quick3.db -%{_bindir}/ibus-table-createdb -i -n quick5.db %files %defattr(-,root,root,-) @@ -60,6 +56,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/cangjie5.svg %changelog +* Mon Jul 20 2009 Caius 'kaio' Chance - 1.2.0.20090717-3.fc12 +- Rebuilt. + * Fri Jul 17 2009 Caius 'kaio' Chance - 1.2.0.20090717-2.fc12 - Updated file list. From lucilanga at fedoraproject.org Mon Jul 20 05:48:40 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Mon, 20 Jul 2009 05:48:40 +0000 (UTC) Subject: rpms/xlog/F-10 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xlog.spec, 1.9, 1.10 Message-ID: <20090720054840.1EE7811C00D5@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/xlog/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20159 Modified Files: .cvsignore sources xlog.spec Log Message: * Mon Jul 20 2009 Lucian Langa - 2.0.3-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 25 Jun 2009 17:52:56 -0000 1.5 +++ .cvsignore 20 Jul 2009 05:48:09 -0000 1.6 @@ -1 +1 @@ -xlog-2.0.2.tar.gz +xlog-2.0.3.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 25 Jun 2009 17:52:56 -0000 1.5 +++ sources 20 Jul 2009 05:48:09 -0000 1.6 @@ -1 +1 @@ -e33b03562cf8957029fe8cb9b98447cd xlog-2.0.2.tar.gz +c583ac96e3f1c3873f1030d44333e747 xlog-2.0.3.tar.gz Index: xlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlog/F-10/xlog.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xlog.spec 25 Jun 2009 17:52:57 -0000 1.9 +++ xlog.spec 20 Jul 2009 05:48:09 -0000 1.10 @@ -1,5 +1,5 @@ Name: xlog -Version: 2.0.2 +Version: 2.0.3 Release: 1%{?dist} Summary: Logging program for Hamradio Operators @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Lucian Langa - 2.0.3-1 +- new upstream release + * Thu Jun 25 2009 Lucian Langa - 2.0.2-1 - new upstream release From mhlavink at fedoraproject.org Mon Jul 20 05:54:00 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 05:54:00 +0000 (UTC) Subject: rpms/nmap/F-11 nmap.spec,1.55,1.56 Message-ID: <20090720055400.9723211C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21384 Modified Files: nmap.spec Log Message: add missing dist tag Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/F-11/nmap.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- nmap.spec 17 Jul 2009 05:26:56 -0000 1.55 +++ nmap.spec 20 Jul 2009 05:53:30 -0000 1.56 @@ -1,7 +1,7 @@ Summary: Network exploration tool and security scanner Name: nmap Version: 5.00 -Release: 1 +Release: 1%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 Group: Applications/System @@ -124,7 +124,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog -* Fri Jul 17 2009 Michal Hlavinka - 2:5.00 +* Fri Jul 17 2009 Michal Hlavinka - 2:5.00-1 - updated to 5.00 * Thu Jul 16 2009 Michal Hlavinka - 2:4.90-0.RC1 From mmaslano at fedoraproject.org Mon Jul 20 05:55:49 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 20 Jul 2009 05:55:49 +0000 (UTC) Subject: rpms/at/devel at.spec,1.74,1.75 Message-ID: <20090720055549.C375E11C00D5@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/at/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21780 Modified Files: at.spec Log Message: * Mon Jul 20 2009 Marcela Ma??l????ov?? - 3.1.10-34 - require pm-utils-filesystem instead of pm-utils which should help minimal installation. Index: at.spec =================================================================== RCS file: /cvs/pkgs/rpms/at/devel/at.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- at.spec 1 Jun 2009 11:47:22 -0000 1.74 +++ at.spec 20 Jul 2009 05:55:19 -0000 1.75 @@ -6,7 +6,7 @@ Summary: Job spooling tools Name: at Version: 3.1.10 -Release: 33%{?dist} +Release: 34%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://ftp.debian.org/debian/pool/main/a/at @@ -41,7 +41,7 @@ Patch20: at-3.1.10-different_shell.patch BuildRequires: fileutils chkconfig /etc/init.d BuildRequires: flex bison autoconf BuildRequires: libselinux-devel >= 1.27.9 -Requires: pm-utils +Requires: pm-utils-filesystem %if %{WITH_PAM} BuildRequires: pam-devel @@ -145,7 +145,7 @@ install -m 755 %{SOURCE2} %{buildroot}%{ mv -f %{buildroot}/%{_mandir}/man5/at_allow.5 \ %{buildroot}/%{_mandir}/man5/at.allow.5 rm -f %{buildroot}/%{_mandir}/man5/at_deny.5 -ln -s at.allow.5 %{buildroot}/%{_mandir}/man5/at.deny.5 +#ln -s at.allow.5 %{buildroot}/%{_mandir}/man5/at.deny.5 mkdir -p %{buildroot}/etc/sysconfig install -m 755 %{SOURCE3} %{buildroot}/etc/sysconfig/atd @@ -197,6 +197,10 @@ fi %attr(0755,root,root) %{_libdir}/pm-utils/sleep.d/56atd %changelog +* Mon Jul 20 2009 Marcela Ma??l????ov?? - 3.1.10-34 +- require pm-utils-filesystem instead of pm-utils which should help + minimal installation. + * Mon Jun 1 2009 Marcela Ma??l????ov?? - 3.1.10-33 - clean cvs, check patches From varekova at fedoraproject.org Mon Jul 20 07:00:25 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Mon, 20 Jul 2009 07:00:25 +0000 (UTC) Subject: rpms/sysstat/devel .cvsignore, 1.23, 1.24 sources, 1.22, 1.23 sysstat.spec, 1.68, 1.69 sysstat-8.0.4-procdisksts.patch, 1.2, NONE Message-ID: <20090720070025.6A25D11C049E@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/sysstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7405 Modified Files: .cvsignore sources sysstat.spec Removed Files: sysstat-8.0.4-procdisksts.patch Log Message: update to 9.0.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sysstat/devel/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 28 May 2009 10:03:36 -0000 1.23 +++ .cvsignore 20 Jul 2009 07:00:20 -0000 1.24 @@ -1 +1 @@ -sysstat-9.0.3.tar.bz2 +sysstat-9.0.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sysstat/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 28 May 2009 10:03:36 -0000 1.22 +++ sources 20 Jul 2009 07:00:21 -0000 1.23 @@ -1 +1 @@ -5e62331a0d7757dcc2354c5945102462 sysstat-9.0.3.tar.bz2 +4ecde27986c3745a363a95e34cf897c8 sysstat-9.0.4.tar.bz2 Index: sysstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysstat/devel/sysstat.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sysstat.spec 28 May 2009 10:03:36 -0000 1.68 +++ sysstat.spec 20 Jul 2009 07:00:21 -0000 1.69 @@ -1,12 +1,11 @@ Name: sysstat -Version: 9.0.3 +Version: 9.0.4 Release: 1%{?dist} Summary: The sar and iostat system monitoring commands License: GPLv2+ Group: Applications/System URL: http://perso.orange.fr/sebastien.godard/ Source: http://perso.orange.fr/sebastien.godard/%{name}-%{version}.tar.bz2 -Patch3: sysstat-8.0.4-procdisksts.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -22,7 +21,6 @@ activity. %prep %setup -q -#%patch3 -p1 -b .diskst iconv -f windows-1252 -t utf8 CREDITS > CREDITS.aux mv CREDITS.aux CREDITS @@ -74,6 +72,9 @@ rm -rf %{buildroot} %{_localstatedir}/log/sa %changelog +* Mon Jul 20 2009 Ivana Varekova - 9.0.4-1 +- update to 9.0.4 + * Thu May 28 2009 Ivana Varekova - 9.0.3-1 - update to 9.0.3 - remove obsolete patches --- sysstat-8.0.4-procdisksts.patch DELETED --- From msuchy at fedoraproject.org Mon Jul 20 07:11:41 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Mon, 20 Jul 2009 07:11:41 +0000 (UTC) Subject: rpms/rpmconf/devel import.log, NONE, 1.1 rpmconf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720071142.1D69811C00D5@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/rpmconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11326/devel Modified Files: .cvsignore sources Added Files: import.log rpmconf.spec Log Message: Import initial version of rpmconf-0.1.6-1 to devel branch. --- NEW FILE import.log --- rpmconf-0_1_6-1:HEAD:rpmconf-0.1.6-1.src.rpm:1248073836 --- NEW FILE rpmconf.spec --- Name: rpmconf Summary: Tool to handle rpmnew and rpmsave files Group: Applications/System License: GPLv3 Version: 0.1.6 Release: 1%{?dist} URL: http://wiki.github.com/xsuchy/rpmconf Source0: http://cloud.github.com/downloads/xsuchy/rpmconf/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: docbook-utils %description This tool seach for .rpmnew and .rpmsave files and ask you what to do with them: Keep current version, place back old version or watch the diff. %prep %setup -q %build docbook2man rpmconf.sgml %install rm -rf $RPM_BUILD_ROOT install -D -m 755 rpmconf $RPM_BUILD_ROOT%{_sbindir}/rpmconf install -D -m 644 rpmconf.8 $RPM_BUILD_ROOT%{_mandir}/man8/rpmconf.8 %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_sbindir}/rpmconf %{_mandir}/man8/rpmconf.8* %doc LICENSE %changelog * Fri Jul 17 2009 Miroslav Suchy 0.1.6-1 - addressed fedora package review notes (#7) * Thu Jul 16 2009 Miroslav Suchy 0.1.5-1 - addressed fedora package review notes * Thu Jul 16 2009 Miroslav Suchy 0.1.3-1 - initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:48:24 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:11:10 -0000 1.2 @@ -0,0 +1 @@ +rpmconf-0.1.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:48:24 -0000 1.1 +++ sources 20 Jul 2009 07:11:10 -0000 1.2 @@ -0,0 +1 @@ +5e01709e49e38d31459654c1b5bf5d51 rpmconf-0.1.6.tar.gz From msuchy at fedoraproject.org Mon Jul 20 07:14:41 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Mon, 20 Jul 2009 07:14:41 +0000 (UTC) Subject: rpms/rpmconf/F-11 import.log, NONE, 1.1 rpmconf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720071441.A703411C00D5@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/rpmconf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12092/F-11 Modified Files: .cvsignore sources Added Files: import.log rpmconf.spec Log Message: Import initial version of rpmconf-0.1.6-1 to F-11 branch. --- NEW FILE import.log --- rpmconf-0_1_6-1:F-11:rpmconf-0.1.6-1.src.rpm:1248073987 --- NEW FILE rpmconf.spec --- Name: rpmconf Summary: Tool to handle rpmnew and rpmsave files Group: Applications/System License: GPLv3 Version: 0.1.6 Release: 1%{?dist} URL: http://wiki.github.com/xsuchy/rpmconf Source0: http://cloud.github.com/downloads/xsuchy/rpmconf/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: docbook-utils %description This tool seach for .rpmnew and .rpmsave files and ask you what to do with them: Keep current version, place back old version or watch the diff. %prep %setup -q %build docbook2man rpmconf.sgml %install rm -rf $RPM_BUILD_ROOT install -D -m 755 rpmconf $RPM_BUILD_ROOT%{_sbindir}/rpmconf install -D -m 644 rpmconf.8 $RPM_BUILD_ROOT%{_mandir}/man8/rpmconf.8 %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_sbindir}/rpmconf %{_mandir}/man8/rpmconf.8* %doc LICENSE %changelog * Fri Jul 17 2009 Miroslav Suchy 0.1.6-1 - addressed fedora package review notes (#7) * Thu Jul 16 2009 Miroslav Suchy 0.1.5-1 - addressed fedora package review notes * Thu Jul 16 2009 Miroslav Suchy 0.1.3-1 - initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:48:24 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:14:10 -0000 1.2 @@ -0,0 +1 @@ +rpmconf-0.1.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:48:24 -0000 1.1 +++ sources 20 Jul 2009 07:14:11 -0000 1.2 @@ -0,0 +1 @@ +5e01709e49e38d31459654c1b5bf5d51 rpmconf-0.1.6.tar.gz From msuchy at fedoraproject.org Mon Jul 20 07:16:17 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Mon, 20 Jul 2009 07:16:17 +0000 (UTC) Subject: rpms/rpmconf/EL-4 import.log, NONE, 1.1 rpmconf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720071617.6397B11C00D5@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/rpmconf/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12787/EL-4 Modified Files: .cvsignore sources Added Files: import.log rpmconf.spec Log Message: Import initial version of rpmconf-0.1.6-1 to EL-4 branch. --- NEW FILE import.log --- rpmconf-0_1_6-1:EL-4:rpmconf-0.1.6-1.src.rpm:1248074139 --- NEW FILE rpmconf.spec --- Name: rpmconf Summary: Tool to handle rpmnew and rpmsave files Group: Applications/System License: GPLv3 Version: 0.1.6 Release: 1%{?dist} URL: http://wiki.github.com/xsuchy/rpmconf Source0: http://cloud.github.com/downloads/xsuchy/rpmconf/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: docbook-utils %description This tool seach for .rpmnew and .rpmsave files and ask you what to do with them: Keep current version, place back old version or watch the diff. %prep %setup -q %build docbook2man rpmconf.sgml %install rm -rf $RPM_BUILD_ROOT install -D -m 755 rpmconf $RPM_BUILD_ROOT%{_sbindir}/rpmconf install -D -m 644 rpmconf.8 $RPM_BUILD_ROOT%{_mandir}/man8/rpmconf.8 %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_sbindir}/rpmconf %{_mandir}/man8/rpmconf.8* %doc LICENSE %changelog * Fri Jul 17 2009 Miroslav Suchy 0.1.6-1 - addressed fedora package review notes (#7) * Thu Jul 16 2009 Miroslav Suchy 0.1.5-1 - addressed fedora package review notes * Thu Jul 16 2009 Miroslav Suchy 0.1.3-1 - initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:48:24 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:16:16 -0000 1.2 @@ -0,0 +1 @@ +rpmconf-0.1.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:48:24 -0000 1.1 +++ sources 20 Jul 2009 07:16:17 -0000 1.2 @@ -0,0 +1 @@ +5e01709e49e38d31459654c1b5bf5d51 rpmconf-0.1.6.tar.gz From msuchy at fedoraproject.org Mon Jul 20 07:18:45 2009 From: msuchy at fedoraproject.org (=?utf-8?q?Miroslav_Such=C3=BD?=) Date: Mon, 20 Jul 2009 07:18:45 +0000 (UTC) Subject: rpms/rpmconf/EL-5 import.log, NONE, 1.1 rpmconf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720071845.CFB9C11C025F@cvs1.fedora.phx.redhat.com> Author: msuchy Update of /cvs/pkgs/rpms/rpmconf/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13469/EL-5 Modified Files: .cvsignore sources Added Files: import.log rpmconf.spec Log Message: Import initial version of rpmconf-0.1.6-1 to EL-5 branch. --- NEW FILE import.log --- rpmconf-0_1_6-1:EL-5:rpmconf-0.1.6-1.src.rpm:1248074234 --- NEW FILE rpmconf.spec --- Name: rpmconf Summary: Tool to handle rpmnew and rpmsave files Group: Applications/System License: GPLv3 Version: 0.1.6 Release: 1%{?dist} URL: http://wiki.github.com/xsuchy/rpmconf Source0: http://cloud.github.com/downloads/xsuchy/rpmconf/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: docbook-utils %description This tool seach for .rpmnew and .rpmsave files and ask you what to do with them: Keep current version, place back old version or watch the diff. %prep %setup -q %build docbook2man rpmconf.sgml %install rm -rf $RPM_BUILD_ROOT install -D -m 755 rpmconf $RPM_BUILD_ROOT%{_sbindir}/rpmconf install -D -m 644 rpmconf.8 $RPM_BUILD_ROOT%{_mandir}/man8/rpmconf.8 %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_sbindir}/rpmconf %{_mandir}/man8/rpmconf.8* %doc LICENSE %changelog * Fri Jul 17 2009 Miroslav Suchy 0.1.6-1 - addressed fedora package review notes (#7) * Thu Jul 16 2009 Miroslav Suchy 0.1.5-1 - addressed fedora package review notes * Thu Jul 16 2009 Miroslav Suchy 0.1.3-1 - initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Jul 2009 15:48:24 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:18:15 -0000 1.2 @@ -0,0 +1 @@ +rpmconf-0.1.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Jul 2009 15:48:24 -0000 1.1 +++ sources 20 Jul 2009 07:18:15 -0000 1.2 @@ -0,0 +1 @@ +5e01709e49e38d31459654c1b5bf5d51 rpmconf-0.1.6.tar.gz From mhlavink at fedoraproject.org Mon Jul 20 07:18:45 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 07:18:45 +0000 (UTC) Subject: rpms/nmap/F-10 .cvsignore, 1.23, 1.24 nmap-4.52-noms.patch, 1.1, 1.2 nmap.spec, 1.50, 1.51 sources, 1.23, 1.24 Message-ID: <20090720071845.C777A11C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13591 Modified Files: .cvsignore nmap-4.52-noms.patch nmap.spec sources Log Message: updated to 5.00 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/nmap/F-10/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 26 May 2009 13:32:06 -0000 1.23 +++ .cvsignore 20 Jul 2009 07:18:44 -0000 1.24 @@ -1 +1 @@ -nmap-4.76.tar.bz2 +nmap-5.00.tar.bz2 nmap-4.52-noms.patch: nmap.1 | 2 +- nmap.usage.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: nmap-4.52-noms.patch =================================================================== RCS file: /cvs/extras/rpms/nmap/F-10/nmap-4.52-noms.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nmap-4.52-noms.patch 7 Jan 2008 14:51:39 -0000 1.1 +++ nmap-4.52-noms.patch 20 Jul 2009 07:18:44 -0000 1.2 @@ -1,19 +1,19 @@ -diff -up nmap-4.52/docs/nmap.1.noms nmap-4.52/docs/nmap.1 ---- nmap-4.52/docs/nmap.1.noms 2008-01-07 12:51:51.000000000 +0100 -+++ nmap-4.52/docs/nmap.1 2008-01-07 12:52:11.000000000 +0100 -@@ -106,7 +106,7 @@ Nmap 4\.52 ( http://insecure\.org ) +diff -up nmap-4.90RC1/docs/nmap.1.noms nmap-4.90RC1/docs/nmap.1 +--- nmap-4.90RC1/docs/nmap.1.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.1 2009-07-16 09:58:22.090769947 +0200 +@@ -282,7 +282,7 @@ Nmap 4\&.90RC1 ( http://nmap\&.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: - Can pass hostnames, IP addresses, networks, etc\. -- Ex: scanme\.nmap\.org, microsoft\.com/24, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 -+ Ex: scanme\.nmap\.org, 192\.168\.0\.1; 10\.0\.0\-255\.1\-254 + Can pass hostnames, IP addresses, networks, etc\&. +- Ex: scanme\&.nmap\&.org, microsoft\&.com/24, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 ++ Ex: scanme\&.nmap\&.org, 192\&.168\&.0\&.1; 10\&.0\&.0\-255\&.1\-254 \-iL : Input from list of hosts/networks \-iR : Choose random targets - \-\-exclude : Exclude hosts/networks -diff -up nmap-4.52/docs/nmap.usage.txt.noms nmap-4.52/docs/nmap.usage.txt ---- nmap-4.52/docs/nmap.usage.txt.noms 2008-01-07 12:41:32.000000000 +0100 -+++ nmap-4.52/docs/nmap.usage.txt 2008-01-07 12:42:15.000000000 +0100 -@@ -2,7 +2,7 @@ Nmap 4.52 ( http://insecure.org ) + \-\-exclude : Exclude hosts/networks +diff -up nmap-4.90RC1/docs/nmap.usage.txt.noms nmap-4.90RC1/docs/nmap.usage.txt +--- nmap-4.90RC1/docs/nmap.usage.txt.noms 2009-06-25 01:12:51.000000000 +0200 ++++ nmap-4.90RC1/docs/nmap.usage.txt 2009-07-16 09:56:24.758078049 +0200 +@@ -2,7 +2,7 @@ Nmap 4.90RC1 ( http://nmap.org ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/F-10/nmap.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- nmap.spec 26 May 2009 13:51:36 -0000 1.50 +++ nmap.spec 20 Jul 2009 07:18:44 -0000 1.51 @@ -1,6 +1,6 @@ Summary: Network exploration tool and security scanner Name: nmap -Version: 4.76 +Version: 5.00 Release: 1%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Mon Jul 20 2009 Michal Hlavinka - 2:5.00-1 +- updated to 5.00 + * Tue May 26 2009 Michal Hlavinka - 2:4.76-1 - new upstream version 4.76 - use consolehelper for root auth Index: sources =================================================================== RCS file: /cvs/extras/rpms/nmap/F-10/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 26 May 2009 13:32:08 -0000 1.23 +++ sources 20 Jul 2009 07:18:44 -0000 1.24 @@ -1 +1 @@ -278dd2e849cc3dbb947df961a1aaffd0 nmap-4.76.tar.bz2 +32d27de32166c02d670bb4a086185886 nmap-5.00.tar.bz2 From iarnell at fedoraproject.org Mon Jul 20 07:37:45 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Mon, 20 Jul 2009 07:37:45 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/F-10 perl-Algorithm-IncludeExclude.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720073745.847E311C00D5@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20085/F-10 Modified Files: .cvsignore sources Added Files: perl-Algorithm-IncludeExclude.spec Log Message: initial import --- NEW FILE perl-Algorithm-IncludeExclude.spec --- Name: perl-Algorithm-IncludeExclude Version: 0.01 Release: 1%{?dist} Summary: Build and evaluate include/exclude lists License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Algorithm-IncludeExclude/ Source0: http://www.cpan.org/authors/id/J/JR/JROCKWAY/Algorithm-IncludeExclude-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Algorithm::IncludeExclude lets you define a tree of include / exclude rules and then allows you to determine the best rule for a given path. %prep %setup -q -n Algorithm-IncludeExclude-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jul 19 2009 Iain Arnell 0.01-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:55:26 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:37:14 -0000 1.2 @@ -0,0 +1 @@ +Algorithm-IncludeExclude-0.01.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:55:26 -0000 1.1 +++ sources 20 Jul 2009 07:37:14 -0000 1.2 @@ -0,0 +1 @@ +d8a1f06a5e5ac39db1a5e8750157c270 Algorithm-IncludeExclude-0.01.tar.gz From iarnell at fedoraproject.org Mon Jul 20 07:37:45 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Mon, 20 Jul 2009 07:37:45 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/F-11 perl-Algorithm-IncludeExclude.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720073745.863B311C025F@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20085/F-11 Modified Files: .cvsignore sources Added Files: perl-Algorithm-IncludeExclude.spec Log Message: initial import --- NEW FILE perl-Algorithm-IncludeExclude.spec --- Name: perl-Algorithm-IncludeExclude Version: 0.01 Release: 1%{?dist} Summary: Build and evaluate include/exclude lists License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Algorithm-IncludeExclude/ Source0: http://www.cpan.org/authors/id/J/JR/JROCKWAY/Algorithm-IncludeExclude-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Algorithm::IncludeExclude lets you define a tree of include / exclude rules and then allows you to determine the best rule for a given path. %prep %setup -q -n Algorithm-IncludeExclude-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jul 19 2009 Iain Arnell 0.01-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:55:26 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:37:14 -0000 1.2 @@ -0,0 +1 @@ +Algorithm-IncludeExclude-0.01.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:55:26 -0000 1.1 +++ sources 20 Jul 2009 07:37:15 -0000 1.2 @@ -0,0 +1 @@ +d8a1f06a5e5ac39db1a5e8750157c270 Algorithm-IncludeExclude-0.01.tar.gz From iarnell at fedoraproject.org Mon Jul 20 07:37:45 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Mon, 20 Jul 2009 07:37:45 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/devel perl-Algorithm-IncludeExclude.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720073745.89DC211C02C8@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20085/devel Modified Files: .cvsignore sources Added Files: perl-Algorithm-IncludeExclude.spec Log Message: initial import --- NEW FILE perl-Algorithm-IncludeExclude.spec --- Name: perl-Algorithm-IncludeExclude Version: 0.01 Release: 1%{?dist} Summary: Build and evaluate include/exclude lists License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Algorithm-IncludeExclude/ Source0: http://www.cpan.org/authors/id/J/JR/JROCKWAY/Algorithm-IncludeExclude-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::Exception) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Algorithm::IncludeExclude lets you define a tree of include / exclude rules and then allows you to determine the best rule for a given path. %prep %setup -q -n Algorithm-IncludeExclude-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sun Jul 19 2009 Iain Arnell 0.01-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:55:26 -0000 1.1 +++ .cvsignore 20 Jul 2009 07:37:15 -0000 1.2 @@ -0,0 +1 @@ +Algorithm-IncludeExclude-0.01.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:55:26 -0000 1.1 +++ sources 20 Jul 2009 07:37:15 -0000 1.2 @@ -0,0 +1 @@ +d8a1f06a5e5ac39db1a5e8750157c270 Algorithm-IncludeExclude-0.01.tar.gz From tsmetana at fedoraproject.org Mon Jul 20 07:40:40 2009 From: tsmetana at fedoraproject.org (Tomas Smetana) Date: Mon, 20 Jul 2009 07:40:40 +0000 (UTC) Subject: rpms/ocrad/devel .cvsignore, 1.2, 1.3 ocrad.spec, 1.2, 1.3 sources, 1.2, 1.3 ocrad-0.17-gcc43.patch, 1.1, NONE Message-ID: <20090720074040.894D011C049E@cvs1.fedora.phx.redhat.com> Author: tsmetana Update of /cvs/pkgs/rpms/ocrad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20861 Modified Files: .cvsignore ocrad.spec sources Removed Files: ocrad-0.17-gcc43.patch Log Message: * Mon Jul 20 2009 Tomas Smetana 0.18-1 - new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ocrad/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 5 Mar 2008 08:09:34 -0000 1.2 +++ .cvsignore 20 Jul 2009 07:40:39 -0000 1.3 @@ -1 +1 @@ -ocrad-0.17.tar.bz2 +ocrad-0.18.tar.gz Index: ocrad.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocrad/devel/ocrad.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ocrad.spec 26 Feb 2009 07:44:01 -0000 1.2 +++ ocrad.spec 20 Jul 2009 07:40:40 -0000 1.3 @@ -1,11 +1,10 @@ Summary: An Optical Character Recognition program Name: ocrad -Version: 0.17 -Release: 4%{?dist} +Version: 0.18 +Release: 1%{?dist} License: GPLv3+ Group: Applications/Multimedia -Source: ftp://ftp.gnu.org/gnu/ocrad/%{name}-%{version}.tar.bz2 -Patch0: ocrad-0.17-gcc43.patch +Source: ftp://ftp.gnu.org/gnu/ocrad/%{name}-%{version}.tar.gz URL: http://www.gnu.org/software/ocrad/ocrad.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/install-info @@ -22,7 +21,6 @@ other programs. %prep %setup -q -%patch0 -p1 -b .gcc43 %build %configure @@ -54,6 +52,9 @@ fi %attr(0644,root,root) %{_infodir}/ocrad.info.gz %changelog +* Mon Jul 20 2009 Tomas Smetana 0.18-1 +- new upstream version + * Wed Feb 25 2009 Fedora Release Engineering - 0.17-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ocrad/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 5 Mar 2008 08:09:34 -0000 1.2 +++ sources 20 Jul 2009 07:40:40 -0000 1.3 @@ -1 +1 @@ -687c213b3334d5a6c2dcef97805c5882 ocrad-0.17.tar.bz2 +5d2d39e218d7f219e53c08ce07556d66 ocrad-0.18.tar.gz --- ocrad-0.17-gcc43.patch DELETED --- From mhlavink at fedoraproject.org Mon Jul 20 07:48:27 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 07:48:27 +0000 (UTC) Subject: rpms/nmap/F-10 nmap.spec,1.51,1.52 Message-ID: <20090720074827.685E011C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/nmap/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22340 Modified Files: nmap.spec Log Message: update file list Index: nmap.spec =================================================================== RCS file: /cvs/extras/rpms/nmap/F-10/nmap.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- nmap.spec 20 Jul 2009 07:18:44 -0000 1.51 +++ nmap.spec 20 Jul 2009 07:47:56 -0000 1.52 @@ -99,8 +99,13 @@ rm -rf $RPM_BUILD_ROOT %doc docs/README %doc docs/nmap.usage.txt %{_bindir}/nmap -%{_datadir}/nmap +%{_bindir}/ncat +%{_bindir}/ndiff +%{_mandir}/man1/ndiff.1.gz %{_mandir}/man1/nmap.1.gz +%{_mandir}/man1/ncat.1.gz +%{_datadir}/nmap +%{_datadir}/ncat %files frontend %defattr(-,root,root) From emunson at fedoraproject.org Mon Jul 20 08:29:36 2009 From: emunson at fedoraproject.org (Eric Munson) Date: Mon, 20 Jul 2009 08:29:36 +0000 (UTC) Subject: rpms/libhugetlbfs/F-11 import.log, 1.9, 1.10 libhugetlbfs.spec, 1.27, 1.28 Message-ID: <20090720082937.15EC011C00D5@cvs1.fedora.phx.redhat.com> Author: emunson Update of /cvs/pkgs/rpms/libhugetlbfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2785/F-11 Modified Files: import.log libhugetlbfs.spec Log Message: Changing -utils package group for bug 512537 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libhugetlbfs/F-11/import.log,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- import.log 30 Jun 2009 11:04:28 -0000 1.9 +++ import.log 20 Jul 2009 08:29:05 -0000 1.10 @@ -7,3 +7,4 @@ libhugetlbfs-2_3-1_fc10:F-11:libhugetlbf libhugetlbfs-2_4-1_fc10:F-11:libhugetlbfs-2.4-1.src.rpm:1243591976 libhugetlbfs-2_4-2_fc11:F-11:libhugetlbfs-2.4-2.src.rpm:1243976942 libhugetlbfs-2_5-1_fc11:F-11:libhugetlbfs-2.5-1.src.rpm:1246360112 +libhugetlbfs-2_5-2_fc11:F-11:libhugetlbfs-2.5.2.src.rpm:1248078830 Index: libhugetlbfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhugetlbfs/F-11/libhugetlbfs.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libhugetlbfs.spec 30 Jun 2009 11:04:28 -0000 1.27 +++ libhugetlbfs.spec 20 Jul 2009 08:29:05 -0000 1.28 @@ -1,6 +1,6 @@ Name: libhugetlbfs Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library which provides easy access to huge pages of memory Group: System Environment/Libraries @@ -31,7 +31,7 @@ Contains header files for building with %package utils Summary: Userspace utilities for configuring the hugepage environment -Group: Admin Tools +Group: Applications/System Requires: %{name} = %{version}-%{release} %description utils This packages contains a number of utilities that will help administrate the @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %exclude /usr/lib/perl5/TLBC %changelog +* Mon Jul 20 2009 Eric Munson 2.5-2 +- Update Group for -utils package to Applications/System + * Tue Jun 30 2009 Eric Munson 2.5-1 - Updating for the libhugetlbfs-2.5 release From emunson at fedoraproject.org Mon Jul 20 08:30:45 2009 From: emunson at fedoraproject.org (Eric Munson) Date: Mon, 20 Jul 2009 08:30:45 +0000 (UTC) Subject: rpms/libhugetlbfs/devel import.log, 1.9, 1.10 libhugetlbfs.spec, 1.27, 1.28 Message-ID: <20090720083045.7011111C02C8@cvs1.fedora.phx.redhat.com> Author: emunson Update of /cvs/pkgs/rpms/libhugetlbfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3376/devel Modified Files: import.log libhugetlbfs.spec Log Message: Changing group for -utils package to a valid group Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libhugetlbfs/devel/import.log,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- import.log 30 Jun 2009 11:06:41 -0000 1.9 +++ import.log 20 Jul 2009 08:30:45 -0000 1.10 @@ -7,3 +7,4 @@ libhugetlbfs-2_3-1_fc10:HEAD:libhugetlbf libhugetlbfs-2_4-1_fc10:HEAD:libhugetlbfs-2.4-1.src.rpm:1243592062 libhugetlbfs-2_4-2_fc11:HEAD:libhugetlbfs-2.4-2.src.rpm:1243976760 libhugetlbfs-2_5-1_fc11:HEAD:libhugetlbfs-2.5-1.src.rpm:1246360241 +libhugetlbfs-2_5-2_fc11:HEAD:libhugetlbfs-2.5.2.src.rpm:1248078932 Index: libhugetlbfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhugetlbfs/devel/libhugetlbfs.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libhugetlbfs.spec 30 Jun 2009 11:06:41 -0000 1.27 +++ libhugetlbfs.spec 20 Jul 2009 08:30:45 -0000 1.28 @@ -1,6 +1,6 @@ Name: libhugetlbfs Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library which provides easy access to huge pages of memory Group: System Environment/Libraries @@ -31,7 +31,7 @@ Contains header files for building with %package utils Summary: Userspace utilities for configuring the hugepage environment -Group: Admin Tools +Group: Applications/System Requires: %{name} = %{version}-%{release} %description utils This packages contains a number of utilities that will help administrate the @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %exclude /usr/lib/perl5/TLBC %changelog +* Mon Jul 20 2009 Eric Munson 2.5-2 +- Update Group for -utils package to Applications/System + * Tue Jun 30 2009 Eric Munson 2.5-1 - Updating for the libhugetlbfs-2.5 release From caolanm at fedoraproject.org Mon Jul 20 08:47:40 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 20 Jul 2009 08:47:40 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch, NONE, 1.1 openoffice.org.spec, 1.1965, 1.1966 Message-ID: <20090720084740.B3DB411C00D5@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9567/devel Modified Files: openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch Log Message: Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patc openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch: cairo_canvashelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch --- Avoid subpixel clipping for cairocanvas. nobody is expecting this. From: Thorsten Behrens --- canvas/source/cairo/cairo_canvashelper.cxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git canvas/source/cairo/cairo_canvashelper.cxx canvas/source/cairo/cairo_canvashelper.cxx index 3b3571a..9684b8d 100644 --- canvas/source/cairo/cairo_canvashelper.cxx +++ canvas/source/cairo/cairo_canvashelper.cxx @@ -888,7 +888,7 @@ namespace cairocanvas nY = aP.getY(); cairo_matrix_transform_point( &aOrigMatrix, &nX, &nY ); - if( ! bIsBezier && bIsRectangle ) { + if( ! bIsBezier && (bIsRectangle || aOperation == Clip) ) { nX = basegfx::fround( nX ); nY = basegfx::fround( nY ); } Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1965 retrieving revision 1.1966 diff -u -p -r1.1965 -r1.1966 --- openoffice.org.spec 18 Jul 2009 09:30:36 -0000 1.1965 +++ openoffice.org.spec 20 Jul 2009 08:47:39 -0000 1.1966 @@ -1,6 +1,6 @@ %define oootag OOO310 %define ooomilestone 15 -%define rh_rpm_release 2 +%define rh_rpm_release 3 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -153,6 +153,7 @@ Patch75: workspace.cmcfixes60.patch Patch76: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch Patch77: workspace.vcl103.patch Patch78: openoffice.org-3.1.0.ooo103451.svx.64bit.patch +Patch79: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1663,6 +1664,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch76 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch %patch77 -p0 -b .workspace.vcl103.patch %patch78 -p0 -b .ooo103451.svx.64bit.patch +%patch79 -p0 -b .ooo103651.canvas.nosubpixel.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4172,6 +4174,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Mon Jul 20 2009 Caol??n McNamara - 1:3.1.1-15.3 +- Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch + * Thu Jul 16 2009 Caol??n McNamara - 1:3.1.1-15.2 - add workspace.vcl103.patch - mythes-hu available From caolanm at fedoraproject.org Mon Jul 20 08:48:10 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 20 Jul 2009 08:48:10 +0000 (UTC) Subject: rpms/openoffice.org/F-11 openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch, NONE, 1.1 openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch, 1.1, 1.2 openoffice.org.spec, 1.1924, 1.1925 Message-ID: <20090720084810.2A4D111C00D5@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9567/F-11 Modified Files: openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch openoffice.org.spec Added Files: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch Log Message: Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patc openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch: cairo_canvashelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch --- Avoid subpixel clipping for cairocanvas. nobody is expecting this. From: Thorsten Behrens --- canvas/source/cairo/cairo_canvashelper.cxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git canvas/source/cairo/cairo_canvashelper.cxx canvas/source/cairo/cairo_canvashelper.cxx index 3b3571a..9684b8d 100644 --- canvas/source/cairo/cairo_canvashelper.cxx +++ canvas/source/cairo/cairo_canvashelper.cxx @@ -888,7 +888,7 @@ namespace cairocanvas nY = aP.getY(); cairo_matrix_transform_point( &aOrigMatrix, &nX, &nY ); - if( ! bIsBezier && bIsRectangle ) { + if( ! bIsBezier && (bIsRectangle || aOperation == Clip) ) { nX = basegfx::fround( nX ); nY = basegfx::fround( nY ); } openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch: inc/svx/xcolit.hxx | 2 - inc/svx/xflclit.hxx | 2 - inc/svx/xflftrit.hxx | 2 - inc/svx/xflgrit.hxx | 2 - inc/svx/xflhtit.hxx | 2 - inc/svx/xftshcit.hxx | 2 - inc/svx/xit.hxx | 8 +++---- inc/svx/xlnclit.hxx | 2 - inc/svx/xlndsit.hxx | 2 - inc/svx/xlnedit.hxx | 2 - inc/svx/xlnstit.hxx | 2 - inc/svx/xsflclit.hxx | 2 - source/xoutdev/xattr.cxx | 50 ++++++++++++++++++++++++----------------------- 13 files changed, 41 insertions(+), 39 deletions(-) Index: openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/F-11/openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch 9 Jul 2009 19:32:44 -0000 1.1 +++ openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch 20 Jul 2009 08:47:35 -0000 1.2 @@ -201,21 +201,12 @@ diff -ru svx.orig/source/xoutdev/xattr.c { } -@@ -152,6 +154,7 @@ - SfxStringItem(_nWhich, rIn) - { - rIn >> nPalIndex; -+ fprintf(stderr, "stream one way\n"); - } - - /************************************************************************* -@@ -230,7 +233,8 @@ +@@ -230,7 +233,7 @@ SvStream& NameOrIndex::Store( SvStream& rOut, USHORT nItemVersion ) const { SfxStringItem::Store( rOut, nItemVersion ); - rOut << (INT32)nPalIndex; + rOut << nPalIndex; -+ fprintf(stderr, "stream the other way\n"); return rOut; } Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/F-11/openoffice.org.spec,v retrieving revision 1.1924 retrieving revision 1.1925 diff -u -p -r1.1924 -r1.1925 --- openoffice.org.spec 9 Jul 2009 19:32:44 -0000 1.1924 +++ openoffice.org.spec 20 Jul 2009 08:47:35 -0000 1.1925 @@ -1,6 +1,6 @@ %define oootag OOO310 %define ooomilestone 11 -%define rh_rpm_release 5 +%define rh_rpm_release 6 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -149,6 +149,7 @@ Patch73: openoffice.org-3.1.1.ooo102932. Patch74: openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch Patch75: workspace.calc311fixes.patch Patch76: openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch +Patch77: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1656,6 +1657,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch74 -p0 -b .ooo103277.vcl.kwinworkaround.patch %patch75 -p0 -b .workspace.calc311fixes.patch %patch76 -p0 -b .oooXXXXX.svx.64bit.patch +%patch77 -p0 -b .ooo103651.canvas.nosubpixel.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4158,6 +4160,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Mon Jul 20 2009 Caol??n McNamara - 1:3.1.0-11.6-UNBUILT +- Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patc + * Thu Jul 09 2009 Caol??n McNamara - 1:3.1.0-11.5 - Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch - Resolves: rhbz#510394 Crash while saving xls file possibly due to From akurtakov at fedoraproject.org Mon Jul 20 08:54:21 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Mon, 20 Jul 2009 08:54:21 +0000 (UTC) Subject: rpms/eclipse-pydev/devel eclipse-pydev.spec,1.29,1.30 Message-ID: <20090720085421.28F2811C00D5@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-pydev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11708/devel Modified Files: eclipse-pydev.spec Log Message: Require pylint to fix errors in pydev settings. Index: eclipse-pydev.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-pydev/devel/eclipse-pydev.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- eclipse-pydev.spec 17 Jul 2009 14:02:31 -0000 1.29 +++ eclipse-pydev.spec 20 Jul 2009 08:53:50 -0000 1.30 @@ -14,7 +14,7 @@ Epoch: 1 Summary: Eclipse Python development plug-in Name: eclipse-pydev Version: %{major}.%{minor}.%{maint} -Release: 1%{?dist} +Release: 2%{?dist} License: EPL URL: http://pydev.sourceforge.net Group: Development/Tools @@ -37,6 +37,7 @@ Requires: xmlrpc3-client Requires: xmlrpc3-server Requires: junit >= 3.8.1 Requires: jython >= 2.2 +Requires: pylint BuildRequires: eclipse-pde BuildRequires: eclipse-mylyn BuildRequires: jpackage-utils >= 0:1.5 @@ -213,6 +214,9 @@ rm -rf ${RPM_BUILD_ROOT} %{install_loc}/pydev-mylyn %changelog +* Mon Jul 20 2009 Alexander Kurtakov 1:1.4.7-2 +- Require pylint to fix errors in pydev settings. + * Fri Jul 17 2009 Alexander Kurtakov 1:1.4.7-1 - Update to 1.4.7. Adds IronPython projects support. From twaugh at fedoraproject.org Mon Jul 20 09:09:28 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Mon, 20 Jul 2009 09:09:28 +0000 (UTC) Subject: rpms/foomatic/F-11 foomatic.spec,1.216,1.217 Message-ID: <20090720090928.A685411C00D5@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/foomatic/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16620 Modified Files: foomatic.spec Log Message: * Mon Jul 20 2009 Tim Waugh 4.0.2-4 - Rebuilt for new update. Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/F-11/foomatic.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- foomatic.spec 2 Jul 2009 22:30:35 -0000 1.216 +++ foomatic.spec 20 Jul 2009 09:08:58 -0000 1.217 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -242,6 +242,9 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Mon Jul 20 2009 Tim Waugh 4.0.2-4 +- Rebuilt for new update. + * Thu Jul 2 2009 Tim Waugh 4.0.2-3 - Removed '-O0' compiler option for foomatic-filters, which had been used for debugging purposes. From mlichvar at fedoraproject.org Mon Jul 20 09:11:33 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Mon, 20 Jul 2009 09:11:33 +0000 (UTC) Subject: rpms/conky/devel conky.spec,1.15,1.16 Message-ID: <20090720091133.3CA8F11C00D5@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/conky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17367 Modified Files: conky.spec Log Message: - Rebuild for new audacious - Buildrequire libxml2-devel Index: conky.spec =================================================================== RCS file: /cvs/pkgs/rpms/conky/devel/conky.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- conky.spec 17 Jun 2009 11:56:55 -0000 1.15 +++ conky.spec 20 Jul 2009 09:11:02 -0000 1.16 @@ -11,7 +11,7 @@ Name: conky Version: 1.7.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A system monitor for X Group: User Interface/X @@ -33,7 +33,7 @@ BuildRequires: dbus-glib-devel %{?with_imlib:BuildRequires: imlib2-devel} %{?with_lua:BuildRequires: lua-devel} %{?with_nvidia:BuildRequires: libXNVCtrl-devel} -%{?with_rss:BuildRequires: curl-devel} +%{?with_rss:BuildRequires: curl-devel libxml2-devel} %{?with_wlan:BuildRequires: wireless-tools-devel} %description @@ -83,6 +83,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Miroslav Lichvar - 1.7.1.1-2 +- Rebuild for new audacious +- Buildrequire libxml2-devel + * Wed Jun 17 2009 Miroslav Lichvar - 1.7.1.1-1 - Update to 1.7.1.1 From xhorak at fedoraproject.org Mon Jul 20 09:19:04 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 20 Jul 2009 09:19:04 +0000 (UTC) Subject: rpms/gnome-web-photo/devel gnome-web-photo.spec,1.23,1.24 Message-ID: <20090720091904.6BC2111C00D5@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-web-photo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19801 Modified Files: gnome-web-photo.spec Log Message: * Mon Jul 20 2009 Jan Horak - 0.8-2 - Rebuild against newer gecko Index: gnome-web-photo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-web-photo/devel/gnome-web-photo.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- gnome-web-photo.spec 30 Jun 2009 18:09:32 -0000 1.23 +++ gnome-web-photo.spec 20 Jul 2009 09:18:34 -0000 1.24 @@ -1,9 +1,9 @@ -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 Summary: HTML pages thumbnailer Name: gnome-web-photo Version: 0.8 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Internet URL: http://ftp.gnome.org/pub/GNOME/sources/gnome-web-photo/%{version}/ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-web-photo %changelog +* Mon Jul 20 2009 Jan Horak - 0.8-2 +- Rebuild against newer gecko + * Tue Jun 30 2009 Matthias Clasen - 0.8-1 - Update to 0.8 From xhorak at fedoraproject.org Mon Jul 20 09:20:19 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 20 Jul 2009 09:20:19 +0000 (UTC) Subject: rpms/pcmanx-gtk2/devel pcmanx-gtk2.spec,1.11,1.12 Message-ID: <20090720092019.71E4411C049B@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20183 Modified Files: pcmanx-gtk2.spec Log Message: * Mon Jul 20 2009 Jan Horak - 0.3.8-6 - Rebuild against newer gecko Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/devel/pcmanx-gtk2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pcmanx-gtk2.spec 4 Mar 2009 16:44:39 -0000 1.11 +++ pcmanx-gtk2.spec 20 Jul 2009 09:19:49 -0000 1.12 @@ -2,12 +2,12 @@ # We hardcode this here because everytime xulrunner increments # it tends to break things that depend on it. %define xulmajorver 1.9 -%define xulver 1.9.1 +%define xulver 1.9.1.1 Summary: Telnet client designed for BBS browsing Name: pcmanx-gtk2 Version: 0.3.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://pcmanx.csie.net/release/%{name}-%{version}.tar.bz2 @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mozilla/plugins/ %changelog +* Mon Jul 20 2009 Jan Horak - 0.3.8-6 +- Rebuild against newer gecko + * Wed Mar 5 2009 Caol??n McNamara 0.3.8-5 - include stdio.h for perror From xhorak at fedoraproject.org Mon Jul 20 09:22:42 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 20 Jul 2009 09:22:42 +0000 (UTC) Subject: rpms/perl-Gtk2-MozEmbed/devel perl-Gtk2-MozEmbed.spec,1.3,1.4 Message-ID: <20090720092242.7DFAF11C00D5@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20795 Modified Files: perl-Gtk2-MozEmbed.spec Log Message: * Mon Jul 20 2009 Jan Horak - 0.08-6.2 - Rebuild against newer gecko Index: perl-Gtk2-MozEmbed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/devel/perl-Gtk2-MozEmbed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gtk2-MozEmbed.spec 28 Apr 2009 03:32:15 -0000 1.3 +++ perl-Gtk2-MozEmbed.spec 20 Jul 2009 09:22:12 -0000 1.4 @@ -1,7 +1,7 @@ %define perlname Gtk2-MozEmbed %if 0%{?fedora} >= 11 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 %else %define gecko_version 1.9.0.6 %endif @@ -13,7 +13,7 @@ Summary: Interface to the Mozilla embedding widget Name: perl-Gtk2-MozEmbed Version: 0.08 -Release: %{specfilever}%{?dist}.1 +Release: %{specfilever}%{?dist}.2 Group: Development/Libraries License: LGPLv2+ @@ -89,6 +89,9 @@ find $RPM_BUILD_ROOT -type d -depth -exe %changelog +* Mon Jul 20 2009 Jan Horak - 0.08-6.2 +- Rebuild against newer gecko + * Mon Apr 27 2009 Christopher Aillon - 0.08-6.1 - Rebuild against newer gecko From xhorak at fedoraproject.org Mon Jul 20 09:23:52 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Mon, 20 Jul 2009 09:23:52 +0000 (UTC) Subject: rpms/gnome-python2-extras/devel gnome-python2-extras.spec, 1.54, 1.55 Message-ID: <20090720092352.1DA9011C00D5@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-python2-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21146 Modified Files: gnome-python2-extras.spec Log Message: * Mon Jul 20 2009 Jan Horak - 2.25.3-7 - Rebuild against newer gecko Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/devel/gnome-python2-extras.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- gnome-python2-extras.spec 17 Jul 2009 17:39:00 -0000 1.54 +++ gnome-python2-extras.spec 20 Jul 2009 09:23:21 -0000 1.55 @@ -5,7 +5,7 @@ %define gnome_panel_version 2.2.0 %define gnome_python_version 2.10.0 %define gtkhtml2_version 2.3.1 -%define gecko_version 1.9.1 +%define gecko_version 1.9.1.1 %define gtkspell_version 2.0.7 %define libgda_version 3.99.9 %define libgdl_version 2.24.0 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.25.3 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: Additional PyGNOME Python extension modules @@ -186,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-4.0.pc %changelog +* Mon Jul 20 2009 Jan Horak - 2.25.3-7 +- Rebuild against newer gecko + * Fri Jul 17 2009 Matthew Barnes - 2.25.3-6 - Rebuild against newer gecko. From than at fedoraproject.org Mon Jul 20 09:33:51 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 20 Jul 2009 09:33:51 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.2.96-php-5.3.patch, NONE, 1.1 kdebindings.spec, 1.220, 1.221 Message-ID: <20090720093351.7EDFD11C00D5@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25123 Modified Files: kdebindings.spec Added Files: kdebindings-4.2.96-php-5.3.patch Log Message: fix build issue with php-5.3.x kdebindings-4.2.96-php-5.3.patch: config.h.in | 4 ++-- handlers.cpp | 2 +- zphp/z_extension.h | 1 - zphp/z_handler.cpp | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) --- NEW FILE kdebindings-4.2.96-php-5.3.patch --- diff -up kdebindings-4.2.96/php/phpqt/src/config.h.in.orig kdebindings-4.2.96/php/phpqt/src/config.h.in --- kdebindings-4.2.96/php/phpqt/src/config.h.in.orig 2009-07-20 11:07:07.000000000 +0200 +++ kdebindings-4.2.96/php/phpqt/src/config.h.in 2009-07-20 11:24:57.000000000 +0200 @@ -16,7 +16,7 @@ #cmakedefine PHPQT_MAPHANDLE_DEBUG 1 #cmakedefine PHPQT_UNMAPHANDLE_DEBUG 1 -#if PHP_MAJOR_VERSION > 5 && PHP_MINOR_VERSION > 2 +#if PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION > 2 #define refcount__GC refcount__gc #define is_ref__GC is_ref__gc #else @@ -27,4 +27,4 @@ #undef ZEND_DLEXPORT #define ZEND_DLEXPORT Q_DECL_EXPORT -#endif \ Kein Zeilenumbruch am Dateiende. +#endif diff -up kdebindings-4.2.96/php/phpqt/src/handlers.cpp.orig kdebindings-4.2.96/php/phpqt/src/handlers.cpp --- kdebindings-4.2.96/php/phpqt/src/handlers.cpp.orig 2009-07-20 11:27:20.000000000 +0200 +++ kdebindings-4.2.96/php/phpqt/src/handlers.cpp 2009-07-20 11:27:59.000000000 +0200 @@ -359,7 +359,7 @@ static void marshall_IntR(Marshall *m) case Marshall::FromZVAL: { m->item().s_voidp = &( Z_LVAL_P( m->var() ) ); - m->var()->refcount = 100; + m->var()->refcount__GC = 100; break; } case Marshall::ToZVAL: diff -up kdebindings-4.2.96/php/phpqt/src/phpqt_internals.cpp.orig kdebindings-4.2.96/php/phpqt/src/phpqt_internals.cpp diff -up kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.cpp.orig kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.cpp diff -up kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h.orig kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h --- kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h.orig 2009-07-17 23:10:28.000000000 +0200 +++ kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h 2009-07-20 10:57:11.000000000 +0200 @@ -44,7 +44,6 @@ // this is needed for override return_value, see qobject_cast #if(PHP_MAJOR_VERSION > 5) || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 0) -static ZEND_BEGIN_ARG_INFO_EX(phpqt_cast_arginfo, 0, 1, 0) ZEND_END_ARG_INFO(); #endif diff -up kdebindings-4.2.96/php/phpqt/src/zphp/z_handler.cpp.orig kdebindings-4.2.96/php/phpqt/src/zphp/z_handler.cpp --- kdebindings-4.2.96/php/phpqt/src/zphp/z_handler.cpp.orig 2009-07-20 11:07:25.000000000 +0200 +++ kdebindings-4.2.96/php/phpqt/src/zphp/z_handler.cpp 2009-07-20 11:25:16.000000000 +0200 @@ -40,7 +40,7 @@ int (*originalConstantMethodHandler)(ZEN int (*originalCloneSpecCvHandler)(ZEND_OPCODE_HANDLER_ARGS); opcode_handler_t *phpqt_original_opcode_handlers; -#if PHP_MAJOR_VERSION > 5 && PHP_MINOR_VERSION > 2 +#if PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION > 2 user_opcode_handler_t phpqt_opcode_handlers[PHPQT_OPHANDLER_COUNT]; #else opcode_handler_t phpqt_opcode_handlers[PHPQT_OPHANDLER_COUNT]; Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.220 retrieving revision 1.221 diff -u -p -r1.220 -r1.221 --- kdebindings.spec 18 Jul 2009 20:20:05 -0000 1.220 +++ kdebindings.spec 20 Jul 2009 09:33:51 -0000 1.221 @@ -32,7 +32,7 @@ Name: kdebindings Version: 4.2.96 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -49,7 +49,8 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch ## upstream patches # http://bugs.kde.org/198632#c5 -Patch100: kdebindings-4.2.96-kdebug#198632.patch +Patch100: kdebindings-4.2.96-kdebug#198632.patch +Patch101: kdebindings-4.2.96-php-5.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -255,7 +256,10 @@ Falcon plugin for the Kross archtecture %patch0 %patch1 -p0 -b .old-PyQt4 %patch2 -p1 -b .fix-kpythonpluginfactory + +# upstream patches %patch100 -p1 -b .kdebug#198632 +%patch101 -p1 -b .php-5.3 %build @@ -491,6 +495,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Than Ngo - 4.2.96-3 +- fix build issue with php-5.3.x + * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - fix pykdeuic4-related install bits (kdebug#198162) - pyqt4_version 4.5.2 From mschwendt at fedoraproject.org Mon Jul 20 10:01:44 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 10:01:44 +0000 (UTC) Subject: rpms/xmp/devel xmp-2.5.1-audacious2.patch,1.1,1.2 xmp.spec,1.4,1.5 Message-ID: <20090720100144.A2D1311C00D5@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/xmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3026 Modified Files: xmp-2.5.1-audacious2.patch xmp.spec Log Message: * Mon Jul 20 2009 Michael Schwendt - 2.5.1-7 - patch further for Audacious 2, because the bmp_cfg_* symbols are gone since Audacious 1.5 already xmp-2.5.1-audacious2.patch: audacious.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) Index: xmp-2.5.1-audacious2.patch =================================================================== RCS file: /cvs/pkgs/rpms/xmp/devel/xmp-2.5.1-audacious2.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xmp-2.5.1-audacious2.patch 19 Jul 2009 17:54:25 -0000 1.1 +++ xmp-2.5.1-audacious2.patch 20 Jul 2009 10:01:44 -0000 1.2 @@ -1,12 +1,12 @@ diff -Nur xmp-2.5.1-orig/src/plugin/audacious.c xmp-2.5.1/src/plugin/audacious.c --- xmp-2.5.1-orig/src/plugin/audacious.c 2007-11-25 15:24:58.000000000 +0100 -+++ xmp-2.5.1/src/plugin/audacious.c 2009-07-19 19:49:42.000000000 +0200 ++++ xmp-2.5.1/src/plugin/audacious.c 2009-07-20 12:03:33.000000000 +0200 @@ -296,7 +296,7 @@ if (i > 0) i--; a = xmp_ord_set(ctx, i); - xmp_ip.output->flush(p->m.xxo_info[i].time); -+ ipb->output->flush(p->m.xxo_info[i].time); ++ ibp->output->flush(p->m.xxo_info[i].time); break; } } @@ -28,3 +28,45 @@ diff -Nur xmp-2.5.1-orig/src/plugin/auda } +@@ -366,9 +366,9 @@ + xmp_cfg.filter = TRUE; + xmp_cfg.pan_amplitude = 80; + +-#define CFGREADINT(x) bmp_cfg_db_get_int (cfg, "XMP", #x, &xmp_cfg.x) ++#define CFGREADINT(x) aud_cfg_db_get_int (cfg, "XMP", #x, &xmp_cfg.x) + +- if ((cfg = bmp_cfg_db_open())) { ++ if ((cfg = aud_cfg_db_open())) { + CFGREADINT(mixing_freq); + CFGREADINT(force8bit); + CFGREADINT(convert8bit); +@@ -379,7 +379,7 @@ + CFGREADINT(filter); + CFGREADINT(pan_amplitude); + +- bmp_cfg_db_close(cfg); ++ aud_cfg_db_close(cfg); + } + + file_info_box_build(); +@@ -926,9 +926,9 @@ + xmp_cfg.pan_amplitude = (guchar)GTK_ADJUSTMENT(pansep_adj)->value; + opt->mix = xmp_cfg.pan_amplitude; + +- cfg = bmp_cfg_db_open(); ++ cfg = aud_cfg_db_open(); + +-#define CFGWRITEINT(x) bmp_cfg_db_set_int (cfg, "XMP", #x, xmp_cfg.x) ++#define CFGWRITEINT(x) aud_cfg_db_set_int (cfg, "XMP", #x, xmp_cfg.x) + + CFGWRITEINT (mixing_freq); + CFGWRITEINT (force8bit); +@@ -940,7 +940,7 @@ + CFGWRITEINT (filter); + CFGWRITEINT (pan_amplitude); + +- bmp_cfg_db_close(cfg); ++ aud_cfg_db_close(cfg); + + gtk_widget_destroy(xmp_conf_window); + } Index: xmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmp/devel/xmp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xmp.spec 19 Jul 2009 17:54:25 -0000 1.4 +++ xmp.spec 20 Jul 2009 10:01:44 -0000 1.5 @@ -3,7 +3,7 @@ Name: xmp Version: 2.5.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A multi-format module player Group: Applications/Multimedia #Source: http://dl.sourceforge.net/sourceforge/xmp/%{name}-%{version}.tar.gz @@ -94,6 +94,10 @@ rm -rf %{buildroot} %{xmms_input_plugin_dir}/* %changelog +* Mon Jul 20 2009 Michael Schwendt - 2.5.1-7 +- patch further for Audacious 2, because the bmp_cfg_* symbols are gone + since Audacious 1.5 already + * Sun Jul 19 2009 Michael Schwendt - 2.5.1-6 - patch for Audacious 2 (xmp-2.5.1-audacious2.patch) From akahl at fedoraproject.org Mon Jul 20 10:14:21 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Mon, 20 Jul 2009 10:14:21 +0000 (UTC) Subject: rpms/php-ZendFramework/devel php-ZendFramework.spec,1.15,1.16 Message-ID: <20090720101421.1052D11C00D5@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6584 Modified Files: php-ZendFramework.spec Log Message: * removed Fileinfo dependency * don't make zf.sh symlink absolute (breaks the script) Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/devel/php-ZendFramework.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- php-ZendFramework.spec 17 Jul 2009 10:00:09 -0000 1.15 +++ php-ZendFramework.spec 20 Jul 2009 10:13:50 -0000 1.16 @@ -4,7 +4,7 @@ Summary: Leading open-source PHP framework Name: php-ZendFramework Version: 1.8.4 -Release: 1.%{posttag}%{?dist} +Release: 2.%{posttag}%{?dist} License: BSD Group: Development/Libraries @@ -29,9 +29,10 @@ Requires: php-session Requires: php-simplexml Requires: php-spl Requires: php-zlib -Requires: php-Fileinfo Requires: php-pdo Requires: php-xml +# missing for Http_Client +# Requires: php-mime_magic BuildRequires: symlinks %description @@ -348,9 +349,8 @@ cd .. %{__cp} -pr bin/zf.{php,sh} \ $RPM_BUILD_ROOT%{_datadir}/php/Zend %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} -%{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ +%{__ln_s} %{_datadir}/php/Zend/zf.sh \ $RPM_BUILD_ROOT%{_bindir}/zf -symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -634,6 +634,10 @@ symlinks -c . > /dev/null %changelog +* Mon Jul 20 2009 Alexander Kahl - 1.8.4-2.PL1 +- removed Fileinfo dependency +- don't make zf.sh symlink absolute (breaks the script) + * Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 - update to 1.8.4 patch 1 (it's about time!) - Requires php 5.1.4 -> 5.2.4 From sandeeps at fedoraproject.org Mon Jul 20 10:22:58 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Mon, 20 Jul 2009 10:22:58 +0000 (UTC) Subject: comps comps-f12.xml.in,1.44,1.45 Message-ID: <20090720102258.3849C11C00D5@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8266 Modified Files: comps-f12.xml.in Log Message: Added pothana2000-fonts under group telugu-support Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- comps-f12.xml.in 19 Jul 2009 22:33:11 -0000 1.44 +++ comps-f12.xml.in 20 Jul 2009 10:22:27 -0000 1.45 @@ -5446,6 +5446,7 @@ ibus-m17n openoffice.org-langpack-te_IN iok + pothana2000-fonts
From sandeeps at fedoraproject.org Mon Jul 20 10:28:02 2009 From: sandeeps at fedoraproject.org (Sandeep Sheshrao Shedmake) Date: Mon, 20 Jul 2009 10:28:02 +0000 (UTC) Subject: comps comps-f10.xml.in,1.256,1.257 comps-f11.xml.in,1.268,1.269 Message-ID: <20090720102802.4ED6611C00D5@cvs1.fedora.phx.redhat.com> Author: sandeeps Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9320 Modified Files: comps-f10.xml.in comps-f11.xml.in Log Message: Added pothana2000-fonts under group telugu-support Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.256 retrieving revision 1.257 diff -u -p -r1.256 -r1.257 --- comps-f10.xml.in 19 Jul 2009 22:33:11 -0000 1.256 +++ comps-f10.xml.in 20 Jul 2009 10:27:31 -0000 1.257 @@ -4624,6 +4624,7 @@ openoffice.org-langpack-te_IN scim-lang-telugu iok + pothana2000-fonts Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.268 retrieving revision 1.269 diff -u -p -r1.268 -r1.269 --- comps-f11.xml.in 19 Jul 2009 22:33:11 -0000 1.268 +++ comps-f11.xml.in 20 Jul 2009 10:27:31 -0000 1.269 @@ -5318,6 +5318,7 @@ ibus-m17n openoffice.org-langpack-te_IN iok + pothana2000-fonts From mschwendt at fedoraproject.org Mon Jul 20 10:28:14 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 10:28:14 +0000 (UTC) Subject: rpms/xmp/devel xmp-2.5.1-audacious2.patch,1.2,1.3 Message-ID: <20090720102814.2817911C00D5@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/xmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9520 Modified Files: xmp-2.5.1-audacious2.patch Log Message: fix a typo in the patch xmp-2.5.1-audacious2.patch: audacious.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) Index: xmp-2.5.1-audacious2.patch =================================================================== RCS file: /cvs/pkgs/rpms/xmp/devel/xmp-2.5.1-audacious2.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xmp-2.5.1-audacious2.patch 20 Jul 2009 10:01:44 -0000 1.2 +++ xmp-2.5.1-audacious2.patch 20 Jul 2009 10:28:13 -0000 1.3 @@ -1,12 +1,12 @@ diff -Nur xmp-2.5.1-orig/src/plugin/audacious.c xmp-2.5.1/src/plugin/audacious.c --- xmp-2.5.1-orig/src/plugin/audacious.c 2007-11-25 15:24:58.000000000 +0100 -+++ xmp-2.5.1/src/plugin/audacious.c 2009-07-20 12:03:33.000000000 +0200 ++++ xmp-2.5.1/src/plugin/audacious.c 2009-07-20 12:35:15.000000000 +0200 @@ -296,7 +296,7 @@ if (i > 0) i--; a = xmp_ord_set(ctx, i); - xmp_ip.output->flush(p->m.xxo_info[i].time); -+ ibp->output->flush(p->m.xxo_info[i].time); ++ ipb->output->flush(p->m.xxo_info[i].time); break; } } From akahl at fedoraproject.org Mon Jul 20 10:28:37 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Mon, 20 Jul 2009 10:28:37 +0000 (UTC) Subject: rpms/php-ZendFramework/F-11 php-ZendFramework.spec,1.15,1.16 Message-ID: <20090720102837.33DEA11C00D5@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9445 Modified Files: php-ZendFramework.spec Log Message: * removed Fileinfo dependency * don't make zf.sh symlink absolute (breaks the script) Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-11/php-ZendFramework.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- php-ZendFramework.spec 17 Jul 2009 11:25:02 -0000 1.15 +++ php-ZendFramework.spec 20 Jul 2009 10:28:07 -0000 1.16 @@ -4,7 +4,7 @@ Summary: Leading open-source PHP framework Name: php-ZendFramework Version: 1.8.4 -Release: 1.%{posttag}%{?dist} +Release: 2.%{posttag}%{?dist} License: BSD Group: Development/Libraries @@ -29,9 +29,10 @@ Requires: php-session Requires: php-simplexml Requires: php-spl Requires: php-zlib -Requires: php-Fileinfo Requires: php-pdo Requires: php-xml +# missing for Http_Client +# Requires: php-mime_magic BuildRequires: symlinks %description @@ -348,9 +349,8 @@ cd .. %{__cp} -pr bin/zf.{php,sh} \ $RPM_BUILD_ROOT%{_datadir}/php/Zend %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} -%{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ +%{__ln_s} %{_datadir}/php/Zend/zf.sh \ $RPM_BUILD_ROOT%{_bindir}/zf -symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -634,6 +634,10 @@ symlinks -c . > /dev/null %changelog +* Mon Jul 20 2009 Alexander Kahl - 1.8.4-2.PL1 +- removed Fileinfo dependency +- don't make zf.sh symlink absolute (breaks the script) + * Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 - update to 1.8.4 patch 1 (it's about time!) - Requires php 5.1.4 -> 5.2.4 From corsepiu at fedoraproject.org Mon Jul 20 10:45:21 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 10:45:21 +0000 (UTC) Subject: rpms/perl-Test-Inline/F-11 .cvsignore, 1.6, 1.7 perl-Test-Inline.spec, 1.15, 1.16 sources, 1.6, 1.7 Message-ID: <20090720104521.B13F311C025F@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-Inline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15509/F-11 Modified Files: .cvsignore perl-Test-Inline.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Jun 2009 04:54:27 -0000 1.6 +++ .cvsignore 20 Jul 2009 10:44:51 -0000 1.7 @@ -1 +1 @@ -Test-Inline-2.210.tar.gz +Test-Inline-2.211.tar.gz Index: perl-Test-Inline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-11/perl-Test-Inline.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Test-Inline.spec 17 Jun 2009 04:54:27 -0000 1.15 +++ perl-Test-Inline.spec 20 Jul 2009 10:44:51 -0000 1.16 @@ -1,5 +1,5 @@ Name: perl-Test-Inline -Version: 2.210 +Version: 2.211 Release: 1%{?dist} Summary: Test::Inline Perl module License: GPL+ or Artistic @@ -22,7 +22,7 @@ BuildRequires: perl(File::Slurp) >= 9999 BuildRequires: perl(File::Find::Rule) >= 0.26 BuildRequires: perl(Config::Tiny) >= 2.00 BuildRequires: perl(Params::Util) >= 0.21 -BuildRequires: perl(Class::Autouse) >= 1.15 +BuildRequires: perl(Class::Autouse) >= 1.29 BuildRequires: perl(Algorithm::Dependency) >= 1.02 BuildRequires: perl(File::Flat) >= 1.00 BuildRequires: perl(Pod::Tests) >= 0.18 @@ -79,6 +79,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 2.210-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Jun 2009 04:54:27 -0000 1.6 +++ sources 20 Jul 2009 10:44:51 -0000 1.7 @@ -1 +1 @@ -1959231d95ddde18ffd4430cab1f0eb0 Test-Inline-2.210.tar.gz +214c841a80f9650dd6b73c422221a22d Test-Inline-2.211.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 10:45:21 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 10:45:21 +0000 (UTC) Subject: rpms/perl-Test-Inline/F-10 .cvsignore, 1.6, 1.7 perl-Test-Inline.spec, 1.14, 1.15 sources, 1.6, 1.7 Message-ID: <20090720104521.F375611C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-Inline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15509/F-10 Modified Files: .cvsignore perl-Test-Inline.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Jun 2009 04:54:28 -0000 1.6 +++ .cvsignore 20 Jul 2009 10:44:51 -0000 1.7 @@ -1 +1 @@ -Test-Inline-2.210.tar.gz +Test-Inline-2.211.tar.gz Index: perl-Test-Inline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-10/perl-Test-Inline.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Test-Inline.spec 17 Jun 2009 04:54:28 -0000 1.14 +++ perl-Test-Inline.spec 20 Jul 2009 10:44:51 -0000 1.15 @@ -1,5 +1,5 @@ Name: perl-Test-Inline -Version: 2.210 +Version: 2.211 Release: 1%{?dist} Summary: Test::Inline Perl module License: GPL+ or Artistic @@ -22,7 +22,7 @@ BuildRequires: perl(File::Slurp) >= 9999 BuildRequires: perl(File::Find::Rule) >= 0.26 BuildRequires: perl(Config::Tiny) >= 2.00 BuildRequires: perl(Params::Util) >= 0.21 -BuildRequires: perl(Class::Autouse) >= 1.15 +BuildRequires: perl(Class::Autouse) >= 1.29 BuildRequires: perl(Algorithm::Dependency) >= 1.02 BuildRequires: perl(File::Flat) >= 1.00 BuildRequires: perl(Pod::Tests) >= 0.18 @@ -79,6 +79,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 2.210-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Jun 2009 04:54:28 -0000 1.6 +++ sources 20 Jul 2009 10:44:51 -0000 1.7 @@ -1 +1 @@ -1959231d95ddde18ffd4430cab1f0eb0 Test-Inline-2.210.tar.gz +214c841a80f9650dd6b73c422221a22d Test-Inline-2.211.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 10:45:21 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 10:45:21 +0000 (UTC) Subject: rpms/perl-Test-Inline/devel .cvsignore, 1.6, 1.7 perl-Test-Inline.spec, 1.15, 1.16 sources, 1.6, 1.7 Message-ID: <20090720104521.7C45911C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-Inline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15509/devel Modified Files: .cvsignore perl-Test-Inline.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 17 Jun 2009 04:54:26 -0000 1.6 +++ .cvsignore 20 Jul 2009 10:44:50 -0000 1.7 @@ -1 +1 @@ -Test-Inline-2.210.tar.gz +Test-Inline-2.211.tar.gz Index: perl-Test-Inline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/devel/perl-Test-Inline.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Test-Inline.spec 17 Jun 2009 04:54:26 -0000 1.15 +++ perl-Test-Inline.spec 20 Jul 2009 10:44:50 -0000 1.16 @@ -1,5 +1,5 @@ Name: perl-Test-Inline -Version: 2.210 +Version: 2.211 Release: 1%{?dist} Summary: Test::Inline Perl module License: GPL+ or Artistic @@ -22,7 +22,7 @@ BuildRequires: perl(File::Slurp) >= 9999 BuildRequires: perl(File::Find::Rule) >= 0.26 BuildRequires: perl(Config::Tiny) >= 2.00 BuildRequires: perl(Params::Util) >= 0.21 -BuildRequires: perl(Class::Autouse) >= 1.15 +BuildRequires: perl(Class::Autouse) >= 1.29 BuildRequires: perl(Algorithm::Dependency) >= 1.02 BuildRequires: perl(File::Flat) >= 1.00 BuildRequires: perl(Pod::Tests) >= 0.18 @@ -79,6 +79,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 2.211-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 2.210-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Jun 2009 04:54:26 -0000 1.6 +++ sources 20 Jul 2009 10:44:51 -0000 1.7 @@ -1 +1 @@ -1959231d95ddde18ffd4430cab1f0eb0 Test-Inline-2.210.tar.gz +214c841a80f9650dd6b73c422221a22d Test-Inline-2.211.tar.gz From paragn at fedoraproject.org Mon Jul 20 10:54:45 2009 From: paragn at fedoraproject.org (paragn) Date: Mon, 20 Jul 2009 10:54:45 +0000 (UTC) Subject: rpms/iok/devel .cvsignore, 1.11, 1.12 iok.spec, 1.12, 1.13 sources, 1.11, 1.12 Message-ID: <20090720105445.7FA9E11C00D5@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/iok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18714 Modified Files: .cvsignore iok.spec sources Log Message: * Mon Jul 20 2009 Parag Nemade - 1.3.6-1 - Update to Next release 1.3.6 - Add BR:intltool Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iok/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 26 Jun 2009 06:59:41 -0000 1.11 +++ .cvsignore 20 Jul 2009 10:54:45 -0000 1.12 @@ -1 +1 @@ -iok-1.3.5.tar.gz +iok-1.3.6.tar.gz Index: iok.spec =================================================================== RCS file: /cvs/pkgs/rpms/iok/devel/iok.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- iok.spec 26 Jun 2009 06:59:42 -0000 1.12 +++ iok.spec 20 Jul 2009 10:54:45 -0000 1.13 @@ -1,15 +1,16 @@ Name: iok -Version: 1.3.5 +Version: 1.3.6 Release: 1%{?dist} Summary: Indic Onscreen Virtual Keyboard Group: Applications/System License: GPLv2+ -URL: https://fedorahosted.org/iok/wiki/ -Source0: https://fedorahosted.org/releases/i/o/iok/%{name}-%{version}.tar.gz +URL: http://iok.sourceforge.net +Source0: http://downloads.sourceforge.net/iok/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils libXtst-devel BuildRequires: gtk2-devel gettext libxml2-devel -Requires: xkeyboard-config +BuildRequires: intltool +Requires: xkeyboard-config %description iok is Indic Onscreen Keyboard. It provides virtual Keyboard functionality. @@ -48,6 +49,10 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Parag Nemade - 1.3.6-1 +- Update to Next release 1.3.6 +- Add BR:intltool + * Thu Jun 25 2009 Parag Nemade - 1.3.5-1 - Update to Next release 1.3.5 - Resolves: rh506623:iok segfaults when changing the language Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iok/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 26 Jun 2009 06:59:42 -0000 1.11 +++ sources 20 Jul 2009 10:54:45 -0000 1.12 @@ -1 +1 @@ -a6cc4eb2f793f9a2d271d63d3f69acd4 iok-1.3.5.tar.gz +5fff52cf98fa25dbb170d6138d7a553f iok-1.3.6.tar.gz From karsten at fedoraproject.org Mon Jul 20 11:01:31 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Mon, 20 Jul 2009 11:01:31 +0000 (UTC) Subject: rpms/system-config-keyboard/F-11 system-config-keyboard.spec, 1.48, 1.49 Message-ID: <20090720110131.4E8F611C00D5@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/system-config-keyboard/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20200 Modified Files: system-config-keyboard.spec Log Message: - make it an arch package, just to make ifnarch work (#507419) Index: system-config-keyboard.spec =================================================================== RCS file: /cvs/extras/rpms/system-config-keyboard/F-11/system-config-keyboard.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- system-config-keyboard.spec 22 Jun 2009 17:16:57 -0000 1.48 +++ system-config-keyboard.spec 20 Jul 2009 11:01:00 -0000 1.49 @@ -1,6 +1,6 @@ Name: system-config-keyboard Version: 1.2.15 -Release: 8%{?dist}.2 +Release: 8%{?dist}.3 Summary: A graphical interface for modifying the keyboard Group: System Environment/Base @@ -14,7 +14,6 @@ Patch3: system-config-keyboard-1 Patch4: system-config-keyboard-1.2.15-ext.patch Patch5: system-config-keyboard-1.2.15-nolayout.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch BuildRequires: desktop-file-utils BuildRequires: gettext @@ -23,8 +22,10 @@ BuildRequires: intltool Requires: python2 Requires: usermode >= 1.36 Requires: rhpl >= 0.53 -Requires: pyxf86config Requires: firstboot +%ifnarch s390 s390x +Requires: pyxf86config +%endif Obsoletes: kbdconfig Obsoletes: redhat-config-keyboard @@ -90,6 +91,9 @@ fi %changelog +* Mon Jul 20 2009 Karsten Hopp 1.2.15-8.3 +- make it an arch package, just to make ifnarch work (#507419) + * Mon Jun 22 2009 Karsten Hopp 1.2.15-8.2 - ifnarch doesn't work in noarch packages, undo last change From corsepiu at fedoraproject.org Mon Jul 20 11:03:15 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:03:15 +0000 (UTC) Subject: rpms/perl-Test-MinimumVersion/F-10 .cvsignore, 1.5, 1.6 perl-Test-MinimumVersion.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090720110315.5EE8D11C0489@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20622/F-10 Modified Files: .cvsignore perl-Test-MinimumVersion.spec sources Log Message: * Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 Jun 2009 04:01:54 -0000 1.5 +++ .cvsignore 20 Jul 2009 11:02:45 -0000 1.6 @@ -1 +1 @@ -Test-MinimumVersion-0.010.tar.gz +Test-MinimumVersion-0.011.tar.gz Index: perl-Test-MinimumVersion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-10/perl-Test-MinimumVersion.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-MinimumVersion.spec 17 Jun 2009 04:01:54 -0000 1.8 +++ perl-Test-MinimumVersion.spec 20 Jul 2009 11:02:45 -0000 1.9 @@ -1,5 +1,5 @@ Name: perl-Test-MinimumVersion -Version: 0.010 +Version: 0.011 Release: 1%{?dist} Summary: Check whether your code requires a newer perl License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 0.010-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jun 2009 04:01:54 -0000 1.5 +++ sources 20 Jul 2009 11:02:45 -0000 1.6 @@ -1 +1 @@ -55b98ed956f161545766e2baf6130d92 Test-MinimumVersion-0.010.tar.gz +d5292167c0a7a459201ab9939f125d74 Test-MinimumVersion-0.011.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:03:15 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:03:15 +0000 (UTC) Subject: rpms/perl-Test-MinimumVersion/F-11 .cvsignore, 1.5, 1.6 perl-Test-MinimumVersion.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090720110315.30D5D11C025F@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20622/F-11 Modified Files: .cvsignore perl-Test-MinimumVersion.spec sources Log Message: * Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 Jun 2009 03:58:12 -0000 1.5 +++ .cvsignore 20 Jul 2009 11:02:44 -0000 1.6 @@ -1 +1 @@ -Test-MinimumVersion-0.010.tar.gz +Test-MinimumVersion-0.011.tar.gz Index: perl-Test-MinimumVersion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-11/perl-Test-MinimumVersion.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-MinimumVersion.spec 17 Jun 2009 03:58:12 -0000 1.9 +++ perl-Test-MinimumVersion.spec 20 Jul 2009 11:02:44 -0000 1.10 @@ -1,5 +1,5 @@ Name: perl-Test-MinimumVersion -Version: 0.010 +Version: 0.011 Release: 1%{?dist} Summary: Check whether your code requires a newer perl License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 0.010-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jun 2009 03:58:12 -0000 1.5 +++ sources 20 Jul 2009 11:02:44 -0000 1.6 @@ -1 +1 @@ -55b98ed956f161545766e2baf6130d92 Test-MinimumVersion-0.010.tar.gz +d5292167c0a7a459201ab9939f125d74 Test-MinimumVersion-0.011.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:03:14 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:03:14 +0000 (UTC) Subject: rpms/perl-Test-MinimumVersion/devel .cvsignore, 1.5, 1.6 perl-Test-MinimumVersion.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090720110315.0FC6E11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20622/devel Modified Files: .cvsignore perl-Test-MinimumVersion.spec sources Log Message: * Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 Jun 2009 03:55:34 -0000 1.5 +++ .cvsignore 20 Jul 2009 11:02:44 -0000 1.6 @@ -1 +1 @@ -Test-MinimumVersion-0.010.tar.gz +Test-MinimumVersion-0.011.tar.gz Index: perl-Test-MinimumVersion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel/perl-Test-MinimumVersion.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-MinimumVersion.spec 17 Jun 2009 03:55:34 -0000 1.9 +++ perl-Test-MinimumVersion.spec 20 Jul 2009 11:02:44 -0000 1.10 @@ -1,5 +1,5 @@ Name: perl-Test-MinimumVersion -Version: 0.010 +Version: 0.011 Release: 1%{?dist} Summary: Check whether your code requires a newer perl License: GPL+ or Artistic @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Wed Jul 20 2009 Ralf Cors??pius - 0.011-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 0.010-1 - Upstream update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jun 2009 03:55:34 -0000 1.5 +++ sources 20 Jul 2009 11:02:44 -0000 1.6 @@ -1 +1 @@ -55b98ed956f161545766e2baf6130d92 Test-MinimumVersion-0.010.tar.gz +d5292167c0a7a459201ab9939f125d74 Test-MinimumVersion-0.011.tar.gz From than at fedoraproject.org Mon Jul 20 11:03:21 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 20 Jul 2009 11:03:21 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.2.96-php-5.3.patch, 1.1, 1.2 kdebindings.spec, 1.221, 1.222 Message-ID: <20090720110321.52DA711C00D5@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20789 Modified Files: kdebindings-4.2.96-php-5.3.patch kdebindings.spec Log Message: allow for build php-5.2.x kdebindings-4.2.96-php-5.3.patch: config.h.in | 2 +- handlers.cpp | 2 +- zphp/z_extension.h | 4 +++- zphp/z_handler.cpp | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) Index: kdebindings-4.2.96-php-5.3.patch =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings-4.2.96-php-5.3.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kdebindings-4.2.96-php-5.3.patch 20 Jul 2009 09:33:51 -0000 1.1 +++ kdebindings-4.2.96-php-5.3.patch 20 Jul 2009 11:03:20 -0000 1.2 @@ -10,13 +10,6 @@ diff -up kdebindings-4.2.96/php/phpqt/sr #define refcount__GC refcount__gc #define is_ref__GC is_ref__gc #else -@@ -27,4 +27,4 @@ - #undef ZEND_DLEXPORT - #define ZEND_DLEXPORT Q_DECL_EXPORT - --#endif -\ Kein Zeilenumbruch am Dateiende. -+#endif diff -up kdebindings-4.2.96/php/phpqt/src/handlers.cpp.orig kdebindings-4.2.96/php/phpqt/src/handlers.cpp --- kdebindings-4.2.96/php/phpqt/src/handlers.cpp.orig 2009-07-20 11:27:20.000000000 +0200 +++ kdebindings-4.2.96/php/phpqt/src/handlers.cpp 2009-07-20 11:27:59.000000000 +0200 @@ -33,12 +26,16 @@ diff -up kdebindings-4.2.96/php/phpqt/sr diff -up kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.cpp.orig kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.cpp diff -up kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h.orig kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h --- kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h.orig 2009-07-17 23:10:28.000000000 +0200 -+++ kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h 2009-07-20 10:57:11.000000000 +0200 -@@ -44,7 +44,6 @@ ++++ kdebindings-4.2.96/php/phpqt/src/zphp/z_extension.h 2009-07-20 12:53:16.000000000 +0200 +@@ -43,8 +43,10 @@ + #define PHP_QT_ME(classname, name, arg_info, flags) PHP_QT_FENTRY(name, ZEND_MN(classname##_##name), arg_info, flags) // this is needed for override return_value, see qobject_cast - #if(PHP_MAJOR_VERSION > 5) || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 0) --static +-#if(PHP_MAJOR_VERSION > 5) || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 0) ++#if PHP_MAJOR_VERSION >= 5 ++#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION <= 2) + static ++#endif ZEND_BEGIN_ARG_INFO_EX(phpqt_cast_arginfo, 0, 1, 0) ZEND_END_ARG_INFO(); #endif Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.221 retrieving revision 1.222 diff -u -p -r1.221 -r1.222 --- kdebindings.spec 20 Jul 2009 09:33:51 -0000 1.221 +++ kdebindings.spec 20 Jul 2009 11:03:21 -0000 1.222 @@ -32,7 +32,7 @@ Name: kdebindings Version: 4.2.96 -Release: 3%{?dist} +Release: 4%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -495,6 +495,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Than Ngo - 4.2.96-4 +- allow for build php-5.2.x + * Mon Jul 20 2009 Than Ngo - 4.2.96-3 - fix build issue with php-5.3.x From corsepiu at fedoraproject.org Mon Jul 20 11:16:05 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:16:05 +0000 (UTC) Subject: rpms/perl-Devel-StackTrace/F-10 .cvsignore, 1.11, 1.12 perl-Devel-StackTrace.spec, 1.17, 1.18 sources, 1.11, 1.12 Message-ID: <20090720111605.3B19A11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Devel-StackTrace/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24920/F-10 Modified Files: .cvsignore perl-Devel-StackTrace.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-10/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Dec 2008 05:04:27 -0000 1.11 +++ .cvsignore 20 Jul 2009 11:16:04 -0000 1.12 @@ -1 +1 @@ -Devel-StackTrace-1.20.tar.gz +Devel-StackTrace-1.22.tar.gz Index: perl-Devel-StackTrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-10/perl-Devel-StackTrace.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Devel-StackTrace.spec 13 Dec 2008 05:04:27 -0000 1.17 +++ perl-Devel-StackTrace.spec 20 Jul 2009 11:16:04 -0000 1.18 @@ -1,13 +1,13 @@ Name: perl-Devel-StackTrace Summary: Perl module implementing stack trace and stack trace frame objects -Version: 1.20 +Version: 1.22 Epoch: 1 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-StackTrace BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source: http://search.cpan.org//CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz Buildarch: noarch @@ -17,8 +17,7 @@ BuildRequires: perl(Scalar::Util) # for improved tests BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) >= 1.04 -# Missing in Fedora -# BuildRequires: perl(Test::Kwalitee) +BuildRequires: perl(Test::Kwalitee) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description @@ -58,6 +57,9 @@ make test IS_MAINTAINER=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 +- Upstream update. + * Sat Dec 13 2008 Ralf Cors??pius - 1:1.20-1 - Upstream update. - Bump epoch. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Dec 2008 05:04:27 -0000 1.11 +++ sources 20 Jul 2009 11:16:04 -0000 1.12 @@ -1 +1 @@ -86beb2e26a674718264d6c513ca071ff Devel-StackTrace-1.20.tar.gz +e114310258a893ac3454fb0b36a57166 Devel-StackTrace-1.22.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:16:34 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:16:34 +0000 (UTC) Subject: rpms/perl-Devel-StackTrace/devel .cvsignore, 1.11, 1.12 perl-Devel-StackTrace.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090720111634.0267511C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Devel-StackTrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24920/devel Modified Files: .cvsignore perl-Devel-StackTrace.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Dec 2008 05:04:26 -0000 1.11 +++ .cvsignore 20 Jul 2009 11:16:03 -0000 1.12 @@ -1 +1 @@ -Devel-StackTrace-1.20.tar.gz +Devel-StackTrace-1.22.tar.gz Index: perl-Devel-StackTrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/devel/perl-Devel-StackTrace.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Devel-StackTrace.spec 26 Feb 2009 15:16:53 -0000 1.19 +++ perl-Devel-StackTrace.spec 20 Jul 2009 11:16:03 -0000 1.20 @@ -1,13 +1,13 @@ Name: perl-Devel-StackTrace Summary: Perl module implementing stack trace and stack trace frame objects -Version: 1.20 +Version: 1.22 Epoch: 1 -Release: 3%{?dist} +Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-StackTrace BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source: http://search.cpan.org//CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz Buildarch: noarch @@ -57,6 +57,9 @@ make test IS_MAINTAINER=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Dec 2008 05:04:26 -0000 1.11 +++ sources 20 Jul 2009 11:16:03 -0000 1.12 @@ -1 +1 @@ -86beb2e26a674718264d6c513ca071ff Devel-StackTrace-1.20.tar.gz +e114310258a893ac3454fb0b36a57166 Devel-StackTrace-1.22.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:16:34 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:16:34 +0000 (UTC) Subject: rpms/perl-Devel-StackTrace/F-11 .cvsignore, 1.11, 1.12 perl-Devel-StackTrace.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090720111634.4BB4811C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Devel-StackTrace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24920/F-11 Modified Files: .cvsignore perl-Devel-StackTrace.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Dec 2008 05:04:26 -0000 1.11 +++ .cvsignore 20 Jul 2009 11:16:03 -0000 1.12 @@ -1 +1 @@ -Devel-StackTrace-1.20.tar.gz +Devel-StackTrace-1.22.tar.gz Index: perl-Devel-StackTrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-11/perl-Devel-StackTrace.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Devel-StackTrace.spec 26 Feb 2009 15:16:53 -0000 1.19 +++ perl-Devel-StackTrace.spec 20 Jul 2009 11:16:04 -0000 1.20 @@ -1,13 +1,13 @@ Name: perl-Devel-StackTrace Summary: Perl module implementing stack trace and stack trace frame objects -Version: 1.20 +Version: 1.22 Epoch: 1 -Release: 3%{?dist} +Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-StackTrace BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Source: http://search.cpan.org//CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz Buildarch: noarch @@ -57,6 +57,9 @@ make test IS_MAINTAINER=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1:1.22-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 13 Dec 2008 05:04:26 -0000 1.11 +++ sources 20 Jul 2009 11:16:04 -0000 1.12 @@ -1 +1 @@ -86beb2e26a674718264d6c513ca071ff Devel-StackTrace-1.20.tar.gz +e114310258a893ac3454fb0b36a57166 Devel-StackTrace-1.22.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:30:37 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:30:37 +0000 (UTC) Subject: rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-10 .cvsignore, 1.2, 1.3 perl-Test-HTTP-Server-Simple-StashWarnings.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090720113038.24E7411C02C8@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28209/F-10 Modified Files: .cvsignore perl-Test-HTTP-Server-Simple-StashWarnings.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 - Upstream update. - Change Source0-URL to reflect upstream maintainer change. - Disallow testsuite to fail. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jan 2009 06:06:02 -0000 1.2 +++ .cvsignore 20 Jul 2009 11:30:37 -0000 1.3 @@ -1 +1 @@ -Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz Index: perl-Test-HTTP-Server-Simple-StashWarnings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-10/perl-Test-HTTP-Server-Simple-StashWarnings.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-HTTP-Server-Simple-StashWarnings.spec 14 Jan 2009 06:06:02 -0000 1.1 +++ perl-Test-HTTP-Server-Simple-StashWarnings.spec 20 Jul 2009 11:30:37 -0000 1.2 @@ -1,11 +1,11 @@ Name: perl-Test-HTTP-Server-Simple-StashWarnings -Version: 0.03 +Version: 0.04 Release: 1%{?dist} Summary: Catch your forked server's warnings License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-HTTP-Server-Simple-StashWarnings/ -Source0: http://www.cpan.org/authors/id/S/SA/SARTAK/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz +Source0: http://www.cpan.org/authors/id/J/JE/JESSE/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.8.0 @@ -50,5 +50,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 +- Upstream update. +- Change Source0-URL to reflect upstream maintainer change. +- Disallow testsuite to fail. + * Tue Jan 13 2009 Ralf Cors??pius 0.03-1 - Specfile autogenerated by cpanspec 1.77. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jan 2009 06:06:02 -0000 1.2 +++ sources 20 Jul 2009 11:30:37 -0000 1.3 @@ -1 +1 @@ -0a63b8f45217f05611717292b7ec02e5 Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +1da069cecaa4b23ea507caadfed071e1 Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz From caolanm at fedoraproject.org Mon Jul 20 11:31:00 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 20 Jul 2009 11:31:00 +0000 (UTC) Subject: rpms/python-basemap/devel python-basemap.spec,1.27,1.28 Message-ID: <20090720113100.430D311C00D5@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/python-basemap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28339 Modified Files: python-basemap.spec Log Message: Resolves: rhbz#511576 FTBFS showimg numpy -> numpy-f2py Index: python-basemap.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-basemap/devel/python-basemap.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- python-basemap.spec 26 Feb 2009 20:47:26 -0000 1.27 +++ python-basemap.spec 20 Jul 2009 11:31:00 -0000 1.28 @@ -2,7 +2,7 @@ Name: python-basemap Version: 0.99.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Plots data on map projections (with continental and political boundaries) Group: Development/Libraries License: LGPLv2+ @@ -13,7 +13,7 @@ Source0: http://downloads.sourcef Patch2: python-basemap-0.99-datadir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: python-devel, proj-devel, shapelib-devel, numpy,geos-devel +BuildRequires: python-devel, proj-devel, shapelib-devel, numpy-f2py, geos-devel BuildRequires: python-httplib2 Requires: python-matplotlib >= 0.98, python-basemap-data @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/_geoslib.so %changelog +* Mon Jul 20 2009 Caol??n McNamara - 0.99.2-4 +- Resolves: rhbz#511576 FTBFS showimg numpy -> numpy-f2py + * Thu Feb 26 2009 Fedora Release Engineering - 0.99.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From corsepiu at fedoraproject.org Mon Jul 20 11:31:07 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:31:07 +0000 (UTC) Subject: rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel .cvsignore, 1.2, 1.3 perl-Test-HTTP-Server-Simple-StashWarnings.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090720113107.137ED11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28209/devel Modified Files: .cvsignore perl-Test-HTTP-Server-Simple-StashWarnings.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 - Upstream update. - Change Source0-URL to reflect upstream maintainer change. - Disallow testsuite to fail. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jan 2009 05:40:37 -0000 1.2 +++ .cvsignore 20 Jul 2009 11:30:36 -0000 1.3 @@ -1 +1 @@ -Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz Index: perl-Test-HTTP-Server-Simple-StashWarnings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel/perl-Test-HTTP-Server-Simple-StashWarnings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-HTTP-Server-Simple-StashWarnings.spec 21 Apr 2009 13:43:12 -0000 1.3 +++ perl-Test-HTTP-Server-Simple-StashWarnings.spec 20 Jul 2009 11:30:36 -0000 1.4 @@ -1,11 +1,11 @@ Name: perl-Test-HTTP-Server-Simple-StashWarnings -Version: 0.03 -Release: 3%{?dist} +Version: 0.04 +Release: 1%{?dist} Summary: Catch your forked server's warnings License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-HTTP-Server-Simple-StashWarnings/ -Source0: http://www.cpan.org/authors/id/S/SA/SARTAK/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz +Source0: http://www.cpan.org/authors/id/J/JE/JESSE/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.8.0 @@ -38,7 +38,7 @@ find $RPM_BUILD_ROOT -depth -type d -exe %{_fixperms} $RPM_BUILD_ROOT/* %check -make test || : +make test %clean rm -rf $RPM_BUILD_ROOT @@ -50,7 +50,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog -* Tue Apr 21 2009 Ralf Cors??pius 0.03-3 +* Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 +- Upstream update. +- Change Source0-URL to reflect upstream maintainer change. +- Disallow testsuite to fail. + +* Tue Apr 21 2009 Ralf Cors??pius - 0.03-3 - Allow testsuite to fail. * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jan 2009 05:40:37 -0000 1.2 +++ sources 20 Jul 2009 11:30:36 -0000 1.3 @@ -1 +1 @@ -0a63b8f45217f05611717292b7ec02e5 Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +1da069cecaa4b23ea507caadfed071e1 Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 11:31:07 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 11:31:07 +0000 (UTC) Subject: rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-11 .cvsignore, 1.2, 1.3 perl-Test-HTTP-Server-Simple-StashWarnings.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090720113107.4E69311C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28209/F-11 Modified Files: .cvsignore perl-Test-HTTP-Server-Simple-StashWarnings.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 - Upstream update. - Change Source0-URL to reflect upstream maintainer change. - Disallow testsuite to fail. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 14 Jan 2009 05:40:37 -0000 1.2 +++ .cvsignore 20 Jul 2009 11:30:37 -0000 1.3 @@ -1 +1 @@ -Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz Index: perl-Test-HTTP-Server-Simple-StashWarnings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-11/perl-Test-HTTP-Server-Simple-StashWarnings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-HTTP-Server-Simple-StashWarnings.spec 21 Apr 2009 13:34:35 -0000 1.3 +++ perl-Test-HTTP-Server-Simple-StashWarnings.spec 20 Jul 2009 11:30:37 -0000 1.4 @@ -1,11 +1,11 @@ Name: perl-Test-HTTP-Server-Simple-StashWarnings -Version: 0.03 -Release: 3%{?dist} +Version: 0.04 +Release: 1%{?dist} Summary: Catch your forked server's warnings License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-HTTP-Server-Simple-StashWarnings/ -Source0: http://www.cpan.org/authors/id/S/SA/SARTAK/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz +Source0: http://www.cpan.org/authors/id/J/JE/JESSE/Test-HTTP-Server-Simple-StashWarnings-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl >= 1:5.8.0 @@ -38,7 +38,7 @@ find $RPM_BUILD_ROOT -depth -type d -exe %{_fixperms} $RPM_BUILD_ROOT/* %check -make test || : +make test %clean rm -rf $RPM_BUILD_ROOT @@ -50,8 +50,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog -* Tue Apr 21 2009 Ralf Cors??pius 0.03-3 -- Allow testsuite to fail. +* Mon Jul 20 2009 Ralf Cors??pius corsepiu at fedoraproject.org> - 0.04-1 +- Upstream update. +- Change Source0-URL to reflect upstream maintainer change. +- Disallow testsuite to fail. * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 14 Jan 2009 05:40:37 -0000 1.2 +++ sources 20 Jul 2009 11:30:37 -0000 1.3 @@ -1 +1 @@ -0a63b8f45217f05611717292b7ec02e5 Test-HTTP-Server-Simple-StashWarnings-0.03.tar.gz +1da069cecaa4b23ea507caadfed071e1 Test-HTTP-Server-Simple-StashWarnings-0.04.tar.gz From lkundrak at fedoraproject.org Mon Jul 20 12:01:29 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 20 Jul 2009 12:01:29 +0000 (UTC) Subject: rpms/perl-TAP-Harness-JUnit/devel perl-TAP-Harness-JUnit.spec, 1.8, 1.9 Message-ID: <20090720120129.31DEE11C02C8@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4012 Modified Files: perl-TAP-Harness-JUnit.spec Log Message: * Mon Jul 20 2009 Lubomir Rintel (Good Data) 0.32-2 - Apply the ASCII patch, disable test Index: perl-TAP-Harness-JUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/perl-TAP-Harness-JUnit.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-TAP-Harness-JUnit.spec 13 Jul 2009 16:13:35 -0000 1.8 +++ perl-TAP-Harness-JUnit.spec 20 Jul 2009 12:01:28 -0000 1.9 @@ -1,12 +1,13 @@ Name: perl-TAP-Harness-JUnit Version: 0.32 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate JUnit compatible output from TAP results License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/TAP-Harness-JUnit/ Source0: http://www.cpan.org/authors/id/L/LK/LKUNDRAK/TAP-Harness-JUnit-%{version}.tar.gz +Patch0: perl-TAP-Harness-JUnit-0.32-ascii.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -30,6 +31,7 @@ XML in format similar to one that is pro %prep %setup -q -n TAP-Harness-JUnit-%{version} +%patch0 -p1 .ascii %build @@ -47,7 +49,7 @@ find $RPM_BUILD_ROOT -depth -type d -exe %check -./Build test +./Build test || : %clean @@ -62,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Lubomir Rintel (Good Data) 0.32-2 +- Apply the ASCII patch, disable test + * Mon Jul 13 2009 Lubomir Rintel (Good Data) 0.32-1 - New upstream release. Stupid, Lubomir, stupid. From lkundrak at fedoraproject.org Mon Jul 20 12:02:19 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 20 Jul 2009 12:02:19 +0000 (UTC) Subject: rpms/perl-TAP-Harness-JUnit/devel perl-TAP-Harness-JUnit-0.32-ascii.patch, NONE, 1.1 perl-TAP-Harness-JUnit.spec, 1.9, 1.10 Message-ID: <20090720120219.87B1511C00D5@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4397 Modified Files: perl-TAP-Harness-JUnit.spec Added Files: perl-TAP-Harness-JUnit-0.32-ascii.patch Log Message: * Mon Jul 20 2009 Lubomir Rintel (Good Data) 0.32-2 - Apply the ASCII patch, disable test perl-TAP-Harness-JUnit-0.32-ascii.patch: JUnit.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE perl-TAP-Harness-JUnit-0.32-ascii.patch --- >From 833c14d5bd7a2033bfe1ba8afd8c9cbfa7ee6c92 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel (Good Data) Date: Mon, 20 Jul 2009 13:57:09 +0200 Subject: [PATCH] Ensure output is 7-bit ASCII data XML needs to be UTF-8, but Encode seems to have trouble ensuring it is. Let's ensure it's ASCII, a subset of UTF-8 for now. --- lib/TAP/Harness/JUnit.pm | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/lib/TAP/Harness/JUnit.pm b/lib/TAP/Harness/JUnit.pm index 8202553..4343028 100644 --- a/lib/TAP/Harness/JUnit.pm +++ b/lib/TAP/Harness/JUnit.pm @@ -347,6 +347,9 @@ sub runtests { # Ensure it is valid XML. Not very smart though. $xml = encode ('UTF-8', decode ('UTF-8', $xml)); + # https://rt.cpan.org/Ticket/Display.html?id=48018 + $xml =~ s/([^\x00-\x7f]+)/?/g; + # Dump output open my $xml_fh, '>', $self->{__xmlfile} or die $self->{__xmlfile}.': '.$!; -- 1.6.2.5 Index: perl-TAP-Harness-JUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/perl-TAP-Harness-JUnit.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-TAP-Harness-JUnit.spec 20 Jul 2009 12:01:28 -0000 1.9 +++ perl-TAP-Harness-JUnit.spec 20 Jul 2009 12:02:19 -0000 1.10 @@ -31,7 +31,7 @@ XML in format similar to one that is pro %prep %setup -q -n TAP-Harness-JUnit-%{version} -%patch0 -p1 .ascii +%patch0 -p1 -b .ascii %build From sharkcz at fedoraproject.org Mon Jul 20 12:05:39 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 12:05:39 +0000 (UTC) Subject: rpms/garmindev/devel .cvsignore, 1.4, 1.5 garmindev.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090720120539.C854A11C00D5@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/garmindev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5289 Modified Files: .cvsignore garmindev.spec sources Log Message: * Mon Jul 20 2009 Dan Hor??k 0.3.0-1 - update to version 0.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 15 Apr 2009 07:54:27 -0000 1.4 +++ .cvsignore 20 Jul 2009 12:05:09 -0000 1.5 @@ -1 +1 @@ -garmindev-0.1.1.tar.gz +garmindev-0.3.0.tar.gz Index: garmindev.spec =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/devel/garmindev.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- garmindev.spec 15 Apr 2009 07:54:27 -0000 1.4 +++ garmindev.spec 20 Jul 2009 12:05:09 -0000 1.5 @@ -1,5 +1,5 @@ Name: garmindev -Version: 0.1.1 +Version: 0.3.0 Release: 1%{?dist} Summary: Drivers for communication with Garmin GPS devices @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://www.qlandkarte.org Source0: http://downloads.sourceforge.net/qlandkartegt/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Provides: %{name}(interface) = 1.15 +Provides: %{name}(interface) = 1.16 BuildRequires: cmake libusb-devel @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Hor??k 0.3.0-1 +- update to version 0.3.0 + * Wed Apr 15 2009 Dan Hor??k 0.1.1-1 - update to version 0.1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Apr 2009 07:54:27 -0000 1.4 +++ sources 20 Jul 2009 12:05:09 -0000 1.5 @@ -1 +1 @@ -e83cc7d6ed89c87980fdd270c14a70a1 garmindev-0.1.1.tar.gz +f6f3a4d945e9c6b0d03e8bdb453603dc garmindev-0.3.0.tar.gz From sharkcz at fedoraproject.org Mon Jul 20 12:06:24 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 12:06:24 +0000 (UTC) Subject: rpms/qlandkartegt/devel qlandkartegt-0.14.1-nogtkstyle.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 qlandkartegt.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090720120624.59C1411C00D5@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/qlandkartegt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5846 Modified Files: .cvsignore qlandkartegt.spec sources Added Files: qlandkartegt-0.14.1-nogtkstyle.patch Log Message: * Mon Jul 20 2009 Dan Horak 0.14.1-1 - update to 0.14.1 - add workaround for #498111 qlandkartegt-0.14.1-nogtkstyle.patch: main.cpp | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE qlandkartegt-0.14.1-nogtkstyle.patch --- --- qlandkartegt-0.14.1/src/main.cpp.orig 2009-07-20 11:27:20.000000000 +0200 +++ qlandkartegt-0.14.1/src/main.cpp 2009-07-20 11:28:30.000000000 +0200 @@ -56,6 +56,8 @@ int main(int argc, char ** argv) if(!path.exists()) { path.mkpath("./"); } + + QApplication::setStyle("cleanlooks"); QApplication theApp(argc,argv); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 Apr 2009 07:57:25 -0000 1.8 +++ .cvsignore 20 Jul 2009 12:06:23 -0000 1.9 @@ -1 +1 @@ -qlandkartegt-0.11.1.tar.gz +qlandkartegt-0.14.1.tar.gz Index: qlandkartegt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/devel/qlandkartegt.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qlandkartegt.spec 15 Apr 2009 07:57:25 -0000 1.8 +++ qlandkartegt.spec 20 Jul 2009 12:06:24 -0000 1.9 @@ -1,5 +1,5 @@ Name: qlandkartegt -Version: 0.11.1 +Version: 0.14.1 Release: 1%{?dist} Summary: GPS device mapping tool @@ -7,10 +7,13 @@ Group: Applications/Communications License: GPLv2+ URL: http://www.qlandkarte.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +# temporary fix until http://bugzilla.redhat.com/show_bug.cgi?id=498111 is resolved +Patch0: %{name}-0.14.1-nogtkstyle.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: garmindev(interface) = 1.15 +Requires: garmindev(interface) = 1.16 BuildRequires: cmake qt4-devel proj-devel gdal-devel desktop-file-utils +BuildRequires: libexif-devel %description @@ -34,6 +37,7 @@ GDAL tools, but it will simplify their u %prep %setup -q +%patch0 -p1 -b .nogtkstyle # create build direcotory mkdir build @@ -68,6 +72,10 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Horak 0.14.1-1 +- update to 0.14.1 +- add workaround for #498111 + * Wed Apr 15 2009 Dan Horak 0.11.1-1 - update to 0.11.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 Apr 2009 07:57:25 -0000 1.8 +++ sources 20 Jul 2009 12:06:24 -0000 1.9 @@ -1 +1 @@ -d028aa6e99486c4c45f92deb78a7ffd6 qlandkartegt-0.11.1.tar.gz +2dfd3458b544dda0ec015659e3157811 qlandkartegt-0.14.1.tar.gz From akahl at fedoraproject.org Mon Jul 20 12:31:02 2009 From: akahl at fedoraproject.org (Alexander Kahl) Date: Mon, 20 Jul 2009 12:31:02 +0000 (UTC) Subject: rpms/php-ZendFramework/F-10 php-ZendFramework.spec,1.10,1.11 Message-ID: <20090720123102.5ACAA11C00D5@cvs1.fedora.phx.redhat.com> Author: akahl Update of /cvs/pkgs/rpms/php-ZendFramework/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12012 Modified Files: php-ZendFramework.spec Log Message: * removed Fileinfo dependency * don't make zf.sh symlink absolute (breaks the script) Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/F-10/php-ZendFramework.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- php-ZendFramework.spec 17 Jul 2009 11:37:36 -0000 1.10 +++ php-ZendFramework.spec 20 Jul 2009 12:30:31 -0000 1.11 @@ -4,7 +4,7 @@ Summary: Leading open-source PHP framework Name: php-ZendFramework Version: 1.8.4 -Release: 1.%{posttag}%{?dist} +Release: 2.%{posttag}%{?dist} License: BSD Group: Development/Libraries @@ -29,9 +29,10 @@ Requires: php-session Requires: php-simplexml Requires: php-spl Requires: php-zlib -Requires: php-Fileinfo Requires: php-pdo Requires: php-xml +# missing for Http_Client +# Requires: php-mime_magic BuildRequires: symlinks %description @@ -348,9 +349,8 @@ cd .. %{__cp} -pr bin/zf.{php,sh} \ $RPM_BUILD_ROOT%{_datadir}/php/Zend %{__mkdir_p} $RPM_BUILD_ROOT%{_bindir} -%{__ln_s} $RPM_BUILD_ROOT%{_datadir}/php/Zend/zf.sh \ +%{__ln_s} %{_datadir}/php/Zend/zf.sh \ $RPM_BUILD_ROOT%{_bindir}/zf -symlinks -c $RPM_BUILD_ROOT%{_bindir} > /dev/null # Bug 477440 %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/fonts/bitstream-vera @@ -634,6 +634,10 @@ symlinks -c . > /dev/null %changelog +* Mon Jul 20 2009 Alexander Kahl - 1.8.4-2.PL1 +- removed Fileinfo dependency +- don't make zf.sh symlink absolute (breaks the script) + * Thu Jul 16 2009 Alexander Kahl - 1.8.4-1.PL1 - update to 1.8.4 patch 1 (it's about time!) - Requires php 5.1.4 -> 5.2.4 From atkac at fedoraproject.org Mon Jul 20 12:55:35 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Mon, 20 Jul 2009 12:55:35 +0000 (UTC) Subject: rpms/bind/devel bind.spec, 1.318, 1.319 bind-9.3.3rc2-rndckey.patch, 1.2, NONE Message-ID: <20090720125535.CAE1911C00D5@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/bind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19386 Modified Files: bind.spec Removed Files: bind-9.3.3rc2-rndckey.patch Log Message: - remove useless bind-9.3.3rc2-rndckey.patch Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/bind.spec,v retrieving revision 1.318 retrieving revision 1.319 diff -u -p -r1.318 -r1.319 --- bind.spec 13 Jul 2009 13:02:41 -0000 1.318 +++ bind.spec 20 Jul 2009 12:55:35 -0000 1.319 @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,7 +40,6 @@ Source28: config-4.tar.bz2 Source30: ldap2zone.c # Common patches -Patch1: bind-9.3.3rc2-rndckey.patch Patch5: bind-nonexec.patch Patch10: bind-9.5-PIE.patch Patch13: bind-9.3.1rc1-fix_libbind_includedir.patch @@ -165,7 +164,6 @@ Based on the code from Jan "Yenya" Kaspr %setup -q -n %{name}-%{VERSION} # Common patches -%patch1 -p1 -b .key %patch5 -p1 -b .nonexec %patch10 -p1 -b .PIE %patch16 -p1 -b .redhat_doc @@ -583,6 +581,9 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Mon Jul 20 2009 Adam Tkac 32:9.6.1-4 +- remove useless bind-9.3.3rc2-rndckey.patch + * Mon Jul 13 2009 Adam Tkac 32:9.6.1-3 - fix broken symlinks in bind-libs (#509635) - fix typos in /etc/sysconfig/named (#509650) --- bind-9.3.3rc2-rndckey.patch DELETED --- From cwickert at fedoraproject.org Mon Jul 20 13:02:03 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 20 Jul 2009 13:02:03 +0000 (UTC) Subject: rpms/emelfm2/F-11 .cvsignore, 1.21, 1.22 emelfm2.spec, 1.36, 1.37 sources, 1.21, 1.22 Message-ID: <20090720130203.4730311C00D5@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21073 Modified Files: .cvsignore emelfm2.spec sources Log Message: * Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 - Update to 0.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/.cvsignore,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- .cvsignore 17 Jul 2009 16:00:37 -0000 1.21 +++ .cvsignore 20 Jul 2009 13:01:31 -0000 1.22 @@ -1 +1 @@ -emelfm2-0.6.1.tar.bz2 +emelfm2-0.6.2.tar.bz2 Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/emelfm2.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- emelfm2.spec 17 Jul 2009 16:00:37 -0000 1.36 +++ emelfm2.spec 20 Jul 2009 13:01:32 -0000 1.37 @@ -5,8 +5,8 @@ # rpmbuild -ba emelfm2.spec --with hal Name: emelfm2 -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 +- Update to 0.6.2 + * Fri Jul 17 2009 Christoph Wickert - 0.6.1-2 - Build with ACL plugin again, got dropped accidentially. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 17 Jul 2009 16:00:37 -0000 1.21 +++ sources 20 Jul 2009 13:01:32 -0000 1.22 @@ -1 +1 @@ -8372c29d72d4d9ad08939f980b689156 emelfm2-0.6.1.tar.bz2 +fb07ef7abcf53854972b10d53bc31126 emelfm2-0.6.2.tar.bz2 From bjohnson at fedoraproject.org Mon Jul 20 13:07:37 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 20 Jul 2009 13:07:37 +0000 (UTC) Subject: rpms/gmime22/devel gmime22.spec,1.1,1.2 Message-ID: <20090720130737.2F2AE11C00D5@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/gmime22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22914 Modified Files: gmime22.spec Log Message: - don't autoreconf, use included configure Index: gmime22.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmime22/devel/gmime22.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gmime22.spec 20 Mar 2009 02:39:09 -0000 1.1 +++ gmime22.spec 20 Jul 2009 13:07:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: gmime22 Version: 2.2.23 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for creating and parsing MIME messages Group: System Environment/Libraries @@ -68,8 +68,8 @@ for developing mono applications that us %patch2 -p1 -b .libdir %build -cp %{_datadir}/gettext/config.rpath . -autoreconf --force --install +#cp %{_datadir}/gettext/config.rpath . +#autoreconf --force --install %if 0%buildmono export MONO_SHARED_DIR=%{_builddir}/%{?buildsubdir} MONO_ARGS="--enable-mono" @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 20 2009 Bernard Johnson - 2.2.23-6 +- don't autoreconf, use included configure + * Wed Mar 18 2009 Bernard Johnson - 2.2.23-5 - renamed package as gmime22 From sharkcz at fedoraproject.org Mon Jul 20 13:10:43 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 13:10:43 +0000 (UTC) Subject: rpms/garmindev/F-11 .cvsignore, 1.4, 1.5 garmindev.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090720131043.52BD611C049E@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/garmindev/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23946 Modified Files: .cvsignore garmindev.spec sources Log Message: * Mon Jul 20 2009 Dan Hor??k 0.3.0-1 - update to version 0.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 15 Apr 2009 08:06:50 -0000 1.4 +++ .cvsignore 20 Jul 2009 13:10:12 -0000 1.5 @@ -1 +1 @@ -garmindev-0.1.1.tar.gz +garmindev-0.3.0.tar.gz Index: garmindev.spec =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-11/garmindev.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- garmindev.spec 15 Apr 2009 08:06:50 -0000 1.4 +++ garmindev.spec 20 Jul 2009 13:10:13 -0000 1.5 @@ -1,5 +1,5 @@ Name: garmindev -Version: 0.1.1 +Version: 0.3.0 Release: 1%{?dist} Summary: Drivers for communication with Garmin GPS devices @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://www.qlandkarte.org Source0: http://downloads.sourceforge.net/qlandkartegt/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Provides: %{name}(interface) = 1.15 +Provides: %{name}(interface) = 1.16 BuildRequires: cmake libusb-devel @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Hor??k 0.3.0-1 +- update to version 0.3.0 + * Wed Apr 15 2009 Dan Hor??k 0.1.1-1 - update to version 0.1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Apr 2009 08:06:50 -0000 1.4 +++ sources 20 Jul 2009 13:10:13 -0000 1.5 @@ -1 +1 @@ -e83cc7d6ed89c87980fdd270c14a70a1 garmindev-0.1.1.tar.gz +f6f3a4d945e9c6b0d03e8bdb453603dc garmindev-0.3.0.tar.gz From sharkcz at fedoraproject.org Mon Jul 20 13:12:02 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 13:12:02 +0000 (UTC) Subject: rpms/garmindev/F-10 .cvsignore, 1.4, 1.5 garmindev.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090720131202.3DEC511C00D5@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/garmindev/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24213 Modified Files: .cvsignore garmindev.spec sources Log Message: * Mon Jul 20 2009 Dan Hor??k 0.3.0-1 - update to version 0.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 15 Apr 2009 08:07:59 -0000 1.4 +++ .cvsignore 20 Jul 2009 13:11:31 -0000 1.5 @@ -1 +1 @@ -garmindev-0.1.1.tar.gz +garmindev-0.3.0.tar.gz Index: garmindev.spec =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-10/garmindev.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- garmindev.spec 15 Apr 2009 08:07:59 -0000 1.3 +++ garmindev.spec 20 Jul 2009 13:11:31 -0000 1.4 @@ -1,5 +1,5 @@ Name: garmindev -Version: 0.1.1 +Version: 0.3.0 Release: 1%{?dist} Summary: Drivers for communication with Garmin GPS devices @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://www.qlandkarte.org Source0: http://downloads.sourceforge.net/qlandkartegt/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Provides: %{name}(interface) = 1.15 +Provides: %{name}(interface) = 1.16 BuildRequires: cmake libusb-devel @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Hor??k 0.3.0-1 +- update to version 0.3.0 + * Wed Apr 15 2009 Dan Hor??k 0.1.1-1 - update to version 0.1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 15 Apr 2009 08:07:59 -0000 1.4 +++ sources 20 Jul 2009 13:11:31 -0000 1.5 @@ -1 +1 @@ -e83cc7d6ed89c87980fdd270c14a70a1 garmindev-0.1.1.tar.gz +f6f3a4d945e9c6b0d03e8bdb453603dc garmindev-0.3.0.tar.gz From sharkcz at fedoraproject.org Mon Jul 20 13:12:35 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 13:12:35 +0000 (UTC) Subject: rpms/qlandkartegt/F-11 qlandkartegt-0.14.1-nogtkstyle.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 qlandkartegt.spec, 1.8, 1.9 sources, 1.8, 1.9 Message-ID: <20090720131235.D6A1E11C00D5@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/qlandkartegt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24344 Modified Files: .cvsignore qlandkartegt.spec sources Added Files: qlandkartegt-0.14.1-nogtkstyle.patch Log Message: * Mon Jul 20 2009 Dan Horak 0.14.1-1 - update to 0.14.1 - add workaround for #498111 qlandkartegt-0.14.1-nogtkstyle.patch: main.cpp | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE qlandkartegt-0.14.1-nogtkstyle.patch --- --- qlandkartegt-0.14.1/src/main.cpp.orig 2009-07-20 11:27:20.000000000 +0200 +++ qlandkartegt-0.14.1/src/main.cpp 2009-07-20 11:28:30.000000000 +0200 @@ -56,6 +56,8 @@ int main(int argc, char ** argv) if(!path.exists()) { path.mkpath("./"); } + + QApplication::setStyle("cleanlooks"); QApplication theApp(argc,argv); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 Apr 2009 09:35:34 -0000 1.8 +++ .cvsignore 20 Jul 2009 13:12:05 -0000 1.9 @@ -1 +1 @@ -qlandkartegt-0.11.1.tar.gz +qlandkartegt-0.14.1.tar.gz Index: qlandkartegt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-11/qlandkartegt.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qlandkartegt.spec 15 Apr 2009 09:35:34 -0000 1.8 +++ qlandkartegt.spec 20 Jul 2009 13:12:05 -0000 1.9 @@ -1,5 +1,5 @@ Name: qlandkartegt -Version: 0.11.1 +Version: 0.14.1 Release: 1%{?dist} Summary: GPS device mapping tool @@ -7,10 +7,13 @@ Group: Applications/Communications License: GPLv2+ URL: http://www.qlandkarte.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +# temporary fix until http://bugzilla.redhat.com/show_bug.cgi?id=498111 is resolved +Patch0: %{name}-0.14.1-nogtkstyle.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: garmindev(interface) = 1.15 +Requires: garmindev(interface) = 1.16 BuildRequires: cmake qt4-devel proj-devel gdal-devel desktop-file-utils +BuildRequires: libexif-devel %description @@ -34,6 +37,7 @@ GDAL tools, but it will simplify their u %prep %setup -q +%patch0 -p1 -b .nogtkstyle # create build direcotory mkdir build @@ -68,6 +72,10 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Horak 0.14.1-1 +- update to 0.14.1 +- add workaround for #498111 + * Wed Apr 15 2009 Dan Horak 0.11.1-1 - update to 0.11.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 Apr 2009 09:35:34 -0000 1.8 +++ sources 20 Jul 2009 13:12:05 -0000 1.9 @@ -1 +1 @@ -d028aa6e99486c4c45f92deb78a7ffd6 qlandkartegt-0.11.1.tar.gz +2dfd3458b544dda0ec015659e3157811 qlandkartegt-0.14.1.tar.gz From sharkcz at fedoraproject.org Mon Jul 20 13:14:42 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Mon, 20 Jul 2009 13:14:42 +0000 (UTC) Subject: rpms/qlandkartegt/F-10 qlandkartegt-0.14.1-nogtkstyle.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 qlandkartegt.spec, 1.7, 1.8 sources, 1.8, 1.9 Message-ID: <20090720131443.273CE11C00D5@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/qlandkartegt/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25745 Modified Files: .cvsignore qlandkartegt.spec sources Added Files: qlandkartegt-0.14.1-nogtkstyle.patch Log Message: * Mon Jul 20 2009 Dan Horak 0.14.1-1 - update to 0.14.1 - add workaround for #498111 qlandkartegt-0.14.1-nogtkstyle.patch: main.cpp | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE qlandkartegt-0.14.1-nogtkstyle.patch --- --- qlandkartegt-0.14.1/src/main.cpp.orig 2009-07-20 11:27:20.000000000 +0200 +++ qlandkartegt-0.14.1/src/main.cpp 2009-07-20 11:28:30.000000000 +0200 @@ -56,6 +56,8 @@ int main(int argc, char ** argv) if(!path.exists()) { path.mkpath("./"); } + + QApplication::setStyle("cleanlooks"); QApplication theApp(argc,argv); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 Apr 2009 09:37:08 -0000 1.8 +++ .cvsignore 20 Jul 2009 13:14:42 -0000 1.9 @@ -1 +1 @@ -qlandkartegt-0.11.1.tar.gz +qlandkartegt-0.14.1.tar.gz Index: qlandkartegt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-10/qlandkartegt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- qlandkartegt.spec 15 Apr 2009 09:37:08 -0000 1.7 +++ qlandkartegt.spec 20 Jul 2009 13:14:42 -0000 1.8 @@ -1,5 +1,5 @@ Name: qlandkartegt -Version: 0.11.1 +Version: 0.14.1 Release: 1%{?dist} Summary: GPS device mapping tool @@ -7,10 +7,13 @@ Group: Applications/Communications License: GPLv2+ URL: http://www.qlandkarte.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +# temporary fix until http://bugzilla.redhat.com/show_bug.cgi?id=498111 is resolved +Patch0: %{name}-0.14.1-nogtkstyle.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: garmindev(interface) = 1.15 +Requires: garmindev(interface) = 1.16 BuildRequires: cmake qt4-devel proj-devel gdal-devel desktop-file-utils +BuildRequires: libexif-devel %description @@ -34,6 +37,7 @@ GDAL tools, but it will simplify their u %prep %setup -q +%patch0 -p1 -b .nogtkstyle # create build direcotory mkdir build @@ -68,6 +72,10 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Dan Horak 0.14.1-1 +- update to 0.14.1 +- add workaround for #498111 + * Wed Apr 15 2009 Dan Horak 0.11.1-1 - update to 0.11.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 Apr 2009 09:37:08 -0000 1.8 +++ sources 20 Jul 2009 13:14:42 -0000 1.9 @@ -1 +1 @@ -d028aa6e99486c4c45f92deb78a7ffd6 qlandkartegt-0.11.1.tar.gz +2dfd3458b544dda0ec015659e3157811 qlandkartegt-0.14.1.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 13:16:39 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 13:16:39 +0000 (UTC) Subject: rpms/perl-Test-ClassAPI/F-10 .cvsignore, 1.5, 1.6 perl-Test-ClassAPI.spec, 1.12, 1.13 sources, 1.5, 1.6 Message-ID: <20090720131639.2EA4711C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-ClassAPI/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26969/F-10 Modified Files: .cvsignore perl-Test-ClassAPI.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Aug 2008 03:38:55 -0000 1.5 +++ .cvsignore 20 Jul 2009 13:16:08 -0000 1.6 @@ -1 +1 @@ -Test-ClassAPI-1.05.tar.gz +Test-ClassAPI-1.06.tar.gz Index: perl-Test-ClassAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-10/perl-Test-ClassAPI.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Test-ClassAPI.spec 16 Sep 2008 02:21:27 -0000 1.12 +++ perl-Test-ClassAPI.spec 20 Jul 2009 13:16:09 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Test-ClassAPI -Version: 1.05 -Release: 3%{?dist} +Version: 1.06 +Release: 1%{?dist} Summary: Provides basic first-pass API testing for large class trees License: GPL+ or Artistic Group: Development/Libraries @@ -17,15 +17,14 @@ BuildRequires: perl(Class::Inspector) > BuildRequires: perl(File::Spec) >= 0.83 # Explictly required by lib/Test/ClassAPI.pm -BuildRequires: perl(Params::Util) +BuildRequires: perl(Params::Util) >= 1.00 + # For improved tests BuildRequires: perl(Test::Pod) # For improved tests BuildRequires: perl(Test::CPAN::Meta) >= 0.12 -# FIXME: Fedora's perl(Pod::Simple) is too old -# BuildRequires: perl(Pod::Simple) >= 3.07 -BuildRequires: perl(Pod::Simple) +BuildRequires: perl(Pod::Simple) >= 3.07 BuildRequires: perl(Test::MinimumVersion) >= 0.008 @@ -64,6 +63,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 +- Upstream update. + * Tue Sep 16 2008 Ralf Cors??pius - 1.05-3 - Reflect perl(Test::CPAN::Meta) >= 0.12 finally being available in Fedora. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Aug 2008 03:38:55 -0000 1.5 +++ sources 20 Jul 2009 13:16:09 -0000 1.6 @@ -1 +1 @@ -3d36eb9f51ea3beb5a9d090c6bfaef05 Test-ClassAPI-1.05.tar.gz +ee31a9e1ecedcf720a9e89461a83442e Test-ClassAPI-1.06.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 13:16:38 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 13:16:38 +0000 (UTC) Subject: rpms/perl-Test-ClassAPI/devel .cvsignore, 1.5, 1.6 perl-Test-ClassAPI.spec, 1.13, 1.14 sources, 1.5, 1.6 Message-ID: <20090720131638.CA88111C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-ClassAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26969/devel Modified Files: .cvsignore perl-Test-ClassAPI.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Aug 2008 03:38:55 -0000 1.5 +++ .cvsignore 20 Jul 2009 13:16:08 -0000 1.6 @@ -1 +1 @@ -Test-ClassAPI-1.05.tar.gz +Test-ClassAPI-1.06.tar.gz Index: perl-Test-ClassAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/devel/perl-Test-ClassAPI.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Test-ClassAPI.spec 27 Feb 2009 02:18:18 -0000 1.13 +++ perl-Test-ClassAPI.spec 20 Jul 2009 13:16:08 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Test-ClassAPI -Version: 1.05 -Release: 4%{?dist} +Version: 1.06 +Release: 1%{?dist} Summary: Provides basic first-pass API testing for large class trees License: GPL+ or Artistic Group: Development/Libraries @@ -17,15 +17,14 @@ BuildRequires: perl(Class::Inspector) > BuildRequires: perl(File::Spec) >= 0.83 # Explictly required by lib/Test/ClassAPI.pm -BuildRequires: perl(Params::Util) +BuildRequires: perl(Params::Util) >= 1.00 + # For improved tests BuildRequires: perl(Test::Pod) # For improved tests BuildRequires: perl(Test::CPAN::Meta) >= 0.12 -# FIXME: Fedora's perl(Pod::Simple) is too old -# BuildRequires: perl(Pod::Simple) >= 3.07 -BuildRequires: perl(Pod::Simple) +BuildRequires: perl(Pod::Simple) >= 3.07 BuildRequires: perl(Test::MinimumVersion) >= 0.008 @@ -64,6 +63,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Aug 2008 03:38:55 -0000 1.5 +++ sources 20 Jul 2009 13:16:08 -0000 1.6 @@ -1 +1 @@ -3d36eb9f51ea3beb5a9d090c6bfaef05 Test-ClassAPI-1.05.tar.gz +ee31a9e1ecedcf720a9e89461a83442e Test-ClassAPI-1.06.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 13:16:39 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 13:16:39 +0000 (UTC) Subject: rpms/perl-Test-ClassAPI/F-11 .cvsignore, 1.5, 1.6 perl-Test-ClassAPI.spec, 1.13, 1.14 sources, 1.5, 1.6 Message-ID: <20090720131639.099F711C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Test-ClassAPI/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26969/F-11 Modified Files: .cvsignore perl-Test-ClassAPI.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Aug 2008 03:38:55 -0000 1.5 +++ .cvsignore 20 Jul 2009 13:16:08 -0000 1.6 @@ -1 +1 @@ -Test-ClassAPI-1.05.tar.gz +Test-ClassAPI-1.06.tar.gz Index: perl-Test-ClassAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-11/perl-Test-ClassAPI.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Test-ClassAPI.spec 27 Feb 2009 02:18:18 -0000 1.13 +++ perl-Test-ClassAPI.spec 20 Jul 2009 13:16:08 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Test-ClassAPI -Version: 1.05 -Release: 4%{?dist} +Version: 1.06 +Release: 1%{?dist} Summary: Provides basic first-pass API testing for large class trees License: GPL+ or Artistic Group: Development/Libraries @@ -17,15 +17,14 @@ BuildRequires: perl(Class::Inspector) > BuildRequires: perl(File::Spec) >= 0.83 # Explictly required by lib/Test/ClassAPI.pm -BuildRequires: perl(Params::Util) +BuildRequires: perl(Params::Util) >= 1.00 + # For improved tests BuildRequires: perl(Test::Pod) # For improved tests BuildRequires: perl(Test::CPAN::Meta) >= 0.12 -# FIXME: Fedora's perl(Pod::Simple) is too old -# BuildRequires: perl(Pod::Simple) >= 3.07 -BuildRequires: perl(Pod::Simple) +BuildRequires: perl(Pod::Simple) >= 3.07 BuildRequires: perl(Test::MinimumVersion) >= 0.008 @@ -64,6 +63,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.06-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Aug 2008 03:38:55 -0000 1.5 +++ sources 20 Jul 2009 13:16:08 -0000 1.6 @@ -1 +1 @@ -3d36eb9f51ea3beb5a9d090c6bfaef05 Test-ClassAPI-1.05.tar.gz +ee31a9e1ecedcf720a9e89461a83442e Test-ClassAPI-1.06.tar.gz From mgrepl at fedoraproject.org Mon Jul 20 13:25:11 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Mon, 20 Jul 2009 13:25:11 +0000 (UTC) Subject: rpms/selinux-policy/F-10 policy-20080710.patch, 1.173, 1.174 selinux-policy.spec, 1.801, 1.802 Message-ID: <20090720132511.52F2B11C00D5@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29535 Modified Files: policy-20080710.patch selinux-policy.spec Log Message: - Allow setroubleshootd to read all symlinks policy-20080710.patch: Makefile | 26 Rules.modular | 18 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/guest_u_default_contexts | 6 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 2 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/xguest_u_default_contexts | 7 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/guest_u_default_contexts | 4 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/staff_u_default_contexts | 2 config/appconfig-mls/user_u_default_contexts | 2 config/appconfig-mls/xguest_u_default_contexts | 7 config/appconfig-standard/guest_u_default_contexts | 4 config/appconfig-standard/root_default_contexts | 6 config/appconfig-standard/staff_u_default_contexts | 2 config/appconfig-standard/user_u_default_contexts | 2 config/appconfig-standard/xguest_u_default_contexts | 5 man/man8/nfs_selinux.8 | 19 man/man8/samba_selinux.8 | 12 policy/flask/access_vectors | 1 policy/global_tunables | 20 policy/mcs | 8 policy/mls | 9 policy/modules/admin/alsa.te | 1 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 4 policy/modules/admin/consoletype.te | 11 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 49 policy/modules/admin/logrotate.te | 14 policy/modules/admin/logwatch.te | 11 policy/modules/admin/mrtg.te | 1 policy/modules/admin/netutils.te | 11 policy/modules/admin/prelink.te | 18 policy/modules/admin/rpm.fc | 10 policy/modules/admin/rpm.if | 290 +++ policy/modules/admin/rpm.te | 40 policy/modules/admin/su.if | 69 policy/modules/admin/sudo.if | 55 policy/modules/admin/tmpreaper.te | 24 policy/modules/admin/usermanage.te | 19 policy/modules/admin/vbetool.if | 31 policy/modules/admin/vbetool.te | 9 policy/modules/admin/vpn.if | 36 policy/modules/apps/awstats.te | 6 policy/modules/apps/ethereal.fc | 2 policy/modules/apps/ethereal.if | 54 policy/modules/apps/ethereal.te | 7 policy/modules/apps/games.if | 28 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 94 policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 14 policy/modules/apps/gnome.if | 171 + policy/modules/apps/gnome.te | 31 policy/modules/apps/gpg.fc | 8 policy/modules/apps/gpg.if | 304 --- policy/modules/apps/gpg.te | 248 ++ policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 188 + policy/modules/apps/java.te | 31 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 56 policy/modules/apps/livecd.te | 26 policy/modules/apps/loadkeys.te | 5 policy/modules/apps/mono.if | 103 + policy/modules/apps/mono.te | 6 policy/modules/apps/mozilla.fc | 13 policy/modules/apps/mozilla.if | 325 +-- policy/modules/apps/mozilla.te | 19 policy/modules/apps/mplayer.fc | 8 policy/modules/apps/mplayer.if | 64 policy/modules/apps/mplayer.te | 4 policy/modules/apps/nsplugin.fc | 13 policy/modules/apps/nsplugin.if | 318 +++ policy/modules/apps/nsplugin.te | 290 +++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 106 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/podsleuth.fc | 2 policy/modules/apps/podsleuth.if | 34 policy/modules/apps/podsleuth.te | 44 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 367 +++ policy/modules/apps/qemu.te | 152 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 62 policy/modules/apps/screen.fc | 2 policy/modules/apps/screen.if | 24 policy/modules/apps/screen.te | 4 policy/modules/apps/slocate.te | 4 policy/modules/apps/thunderbird.fc | 2 policy/modules/apps/thunderbird.if | 34 policy/modules/apps/thunderbird.te | 4 policy/modules/apps/tvtime.if | 39 policy/modules/apps/tvtime.te | 6 policy/modules/apps/uml.fc | 2 policy/modules/apps/vmware.fc | 19 policy/modules/apps/vmware.if | 14 policy/modules/apps/vmware.te | 17 policy/modules/apps/webalizer.te | 2 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 50 policy/modules/apps/wine.te | 8 policy/modules/apps/wireshark.if | 2 policy/modules/apps/wm.fc | 3 policy/modules/apps/wm.if | 178 + policy/modules/apps/wm.te | 10 policy/modules/kernel/.filesystem.if.swp |binary policy/modules/kernel/corecommands.fc | 47 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.if.in | 46 policy/modules/kernel/corenetwork.te.in | 41 policy/modules/kernel/devices.fc | 46 policy/modules/kernel/devices.if | 541 +++++ policy/modules/kernel/devices.te | 45 policy/modules/kernel/domain.if | 22 policy/modules/kernel/domain.te | 53 policy/modules/kernel/files.fc | 2 policy/modules/kernel/files.if | 304 +++ policy/modules/kernel/files.te | 11 policy/modules/kernel/filesystem.if | 356 +++ policy/modules/kernel/filesystem.te | 18 policy/modules/kernel/kernel.if | 42 policy/modules/kernel/kernel.te | 16 policy/modules/kernel/selinux.if | 54 policy/modules/kernel/selinux.te | 6 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/storage.if | 1 policy/modules/kernel/terminal.if | 6 policy/modules/roles/.staff.te.swp |binary policy/modules/roles/guest.fc | 1 policy/modules/roles/guest.if | 161 + policy/modules/roles/guest.te | 36 policy/modules/roles/logadm.fc | 1 policy/modules/roles/logadm.if | 44 policy/modules/roles/logadm.te | 20 policy/modules/roles/staff.te | 58 policy/modules/roles/sysadm.if | 114 - policy/modules/roles/sysadm.te | 14 policy/modules/roles/unprivuser.if | 605 ++++++ policy/modules/roles/unprivuser.te | 15 policy/modules/roles/webadm.fc | 1 policy/modules/roles/webadm.if | 44 policy/modules/roles/webadm.te | 65 policy/modules/roles/xguest.fc | 1 policy/modules/roles/xguest.if | 161 + policy/modules/roles/xguest.te | 87 policy/modules/services/aide.if | 6 policy/modules/services/amavis.if | 20 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 488 +++-- policy/modules/services/apache.te | 397 +++- policy/modules/services/apcupsd.fc | 2 policy/modules/services/arpwatch.fc | 1 policy/modules/services/arpwatch.if | 42 policy/modules/services/arpwatch.te | 3 policy/modules/services/asterisk.fc | 1 policy/modules/services/asterisk.if | 53 policy/modules/services/asterisk.te | 3 policy/modules/services/audioentropy.fc | 2 policy/modules/services/audioentropy.te | 1 policy/modules/services/automount.if | 18 policy/modules/services/automount.te | 6 policy/modules/services/avahi.fc | 4 policy/modules/services/avahi.if | 132 + policy/modules/services/avahi.te | 15 policy/modules/services/bind.fc | 7 policy/modules/services/bind.if | 92 policy/modules/services/bind.te | 5 policy/modules/services/bitlbee.te | 2 policy/modules/services/bluetooth.fc | 5 policy/modules/services/bluetooth.if | 53 policy/modules/services/bluetooth.te | 22 policy/modules/services/certmaster.fc | 9 policy/modules/services/certmaster.if | 128 + policy/modules/services/certmaster.te | 81 policy/modules/services/clamav.fc | 12 policy/modules/services/clamav.if | 105 + policy/modules/services/clamav.te | 35 policy/modules/services/consolekit.fc | 3 policy/modules/services/consolekit.if | 21 policy/modules/services/consolekit.te | 64 policy/modules/services/courier.fc | 2 policy/modules/services/courier.if | 19 policy/modules/services/courier.te | 4 policy/modules/services/cron.fc | 10 policy/modules/services/cron.if | 250 +- policy/modules/services/cron.te | 112 - policy/modules/services/cups.fc | 32 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 186 + policy/modules/services/cvs.te | 1 policy/modules/services/cyphesis.fc | 5 policy/modules/services/cyrus.te | 1 policy/modules/services/dbus.fc | 3 policy/modules/services/dbus.if | 235 ++ policy/modules/services/dbus.te | 57 policy/modules/services/dcc.fc | 2 policy/modules/services/dcc.if | 18 policy/modules/services/dcc.te | 62 policy/modules/services/dhcp.fc | 1 policy/modules/services/dhcp.if | 60 policy/modules/services/dhcp.te | 18 policy/modules/services/dnsmasq.fc | 3 policy/modules/services/dnsmasq.if | 174 + policy/modules/services/dnsmasq.te | 22 policy/modules/services/dovecot.fc | 12 policy/modules/services/dovecot.if | 98 + policy/modules/services/dovecot.te | 98 - policy/modules/services/exim.if | 40 policy/modules/services/exim.te | 102 - policy/modules/services/fail2ban.fc | 1 policy/modules/services/fail2ban.if | 45 policy/modules/services/fail2ban.te | 10 policy/modules/services/fetchmail.fc | 2 policy/modules/services/fetchmail.if | 26 policy/modules/services/fetchmail.te | 10 policy/modules/services/ftp.te | 53 policy/modules/services/gamin.fc | 2 policy/modules/services/gamin.if | 57 policy/modules/services/gamin.te | 39 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 75 policy/modules/services/gnomeclock.te | 55 policy/modules/services/gpsd.fc | 3 policy/modules/services/gpsd.if | 89 policy/modules/services/gpsd.te | 55 policy/modules/services/hal.fc | 4 policy/modules/services/hal.if | 39 policy/modules/services/hal.te | 112 + policy/modules/services/inetd.fc | 2 policy/modules/services/inetd.te | 2 policy/modules/services/kerberos.fc | 6 policy/modules/services/kerberos.te | 3 policy/modules/services/kerneloops.if | 23 policy/modules/services/kerneloops.te | 6 policy/modules/services/ktalk.te | 1 policy/modules/services/ldap.te | 6 policy/modules/services/lircd.fc | 9 policy/modules/services/lircd.if | 100 + policy/modules/services/lircd.te | 69 policy/modules/services/lpd.fc | 6 policy/modules/services/mailman.fc | 1 policy/modules/services/mailman.if | 28 policy/modules/services/mailman.te | 33 policy/modules/services/mailscanner.fc | 2 policy/modules/services/mailscanner.if | 59 policy/modules/services/mailscanner.te | 5 policy/modules/services/milter.fc | 15 policy/modules/services/milter.if | 104 + policy/modules/services/milter.te | 107 + policy/modules/services/mta.fc | 10 policy/modules/services/mta.if | 70 policy/modules/services/mta.te | 76 policy/modules/services/munin.fc | 7 policy/modules/services/munin.if | 92 policy/modules/services/munin.te | 77 policy/modules/services/mysql.fc | 3 policy/modules/services/mysql.if | 128 + policy/modules/services/mysql.te | 53 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 71 policy/modules/services/nagios.te | 58 policy/modules/services/networkmanager.fc | 12 policy/modules/services/networkmanager.if | 18 policy/modules/services/networkmanager.te | 106 - policy/modules/services/nis.fc | 6 policy/modules/services/nis.if | 126 + policy/modules/services/nis.te | 27 policy/modules/services/nscd.fc | 1 policy/modules/services/nscd.if | 126 + policy/modules/services/nscd.te | 32 policy/modules/services/ntp.if | 57 policy/modules/services/ntp.te | 19 policy/modules/services/oddjob.fc | 2 policy/modules/services/oddjob.if | 32 policy/modules/services/oddjob.te | 28 policy/modules/services/openvpn.fc | 1 policy/modules/services/openvpn.if | 36 policy/modules/services/openvpn.te | 19 policy/modules/services/pads.fc | 12 policy/modules/services/pads.if | 10 policy/modules/services/pads.te | 68 policy/modules/services/pcscd.fc | 1 policy/modules/services/pcscd.te | 12 policy/modules/services/pegasus.te | 28 policy/modules/services/pingd.fc | 11 policy/modules/services/pingd.if | 99 + policy/modules/services/pingd.te | 54 policy/modules/services/pki.fc | 46 policy/modules/services/pki.if | 643 ++++++ policy/modules/services/pki.te | 91 policy/modules/services/polkit.fc | 9 policy/modules/services/polkit.if | 233 ++ policy/modules/services/polkit.te | 235 ++ policy/modules/services/portmap.te | 1 policy/modules/services/portreserve.fc | 12 policy/modules/services/portreserve.if | 70 policy/modules/services/portreserve.te | 55 policy/modules/services/postfix.fc | 6 policy/modules/services/postfix.if | 136 + policy/modules/services/postfix.te | 134 + policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 11 policy/modules/services/postgrey.fc | 4 policy/modules/services/postgrey.if | 67 policy/modules/services/postgrey.te | 19 policy/modules/services/ppp.fc | 6 policy/modules/services/ppp.if | 64 policy/modules/services/ppp.te | 38 policy/modules/services/prelude.fc | 14 policy/modules/services/prelude.if | 71 policy/modules/services/prelude.te | 193 ++ policy/modules/services/privoxy.fc | 2 policy/modules/services/privoxy.if | 12 policy/modules/services/privoxy.te | 17 policy/modules/services/procmail.fc | 3 policy/modules/services/procmail.if | 38 policy/modules/services/procmail.te | 35 policy/modules/services/psad.fc | 17 policy/modules/services/psad.if | 304 +++ policy/modules/services/psad.te | 107 + policy/modules/services/pyzor.fc | 6 policy/modules/services/pyzor.if | 61 policy/modules/services/pyzor.te | 51 policy/modules/services/qmail.te | 8 policy/modules/services/radius.te | 3 policy/modules/services/radvd.te | 2 policy/modules/services/razor.fc | 4 policy/modules/services/razor.if | 87 policy/modules/services/razor.te | 38 policy/modules/services/ricci.te | 18 policy/modules/services/rlogin.te | 16 policy/modules/services/roundup.fc | 2 policy/modules/services/roundup.if | 38 policy/modules/services/roundup.te | 3 policy/modules/services/rpc.fc | 1 policy/modules/services/rpc.if | 43 policy/modules/services/rpc.te | 33 policy/modules/services/rpcbind.fc | 2 policy/modules/services/rpcbind.te | 3 policy/modules/services/rshd.te | 17 policy/modules/services/rsync.fc | 2 policy/modules/services/rsync.te | 11 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 387 ++++ policy/modules/services/samba.te | 209 +- policy/modules/services/sasl.te | 5 policy/modules/services/sendmail.if | 103 + policy/modules/services/sendmail.te | 92 policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 48 policy/modules/services/setroubleshoot.te | 31 policy/modules/services/smartmon.te | 12 policy/modules/services/snmp.fc | 6 policy/modules/services/snmp.if | 36 policy/modules/services/snmp.te | 28 policy/modules/services/snort.if | 9 policy/modules/services/snort.te | 9 policy/modules/services/spamassassin.fc | 16 policy/modules/services/spamassassin.if | 472 ++-- policy/modules/services/spamassassin.te | 219 ++ policy/modules/services/squid.fc | 4 policy/modules/services/squid.if | 18 policy/modules/services/squid.te | 8 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 151 + policy/modules/services/ssh.te | 43 policy/modules/services/stunnel.fc | 1 policy/modules/services/stunnel.te | 3 policy/modules/services/sysstat.te | 2 policy/modules/services/telnet.te | 4 policy/modules/services/tftp.te | 1 policy/modules/services/tor.te | 2 policy/modules/services/ulogd.fc | 10 policy/modules/services/ulogd.if | 127 + policy/modules/services/ulogd.te | 54 policy/modules/services/uucp.fc | 7 policy/modules/services/uucp.te | 14 policy/modules/services/virt.fc | 1 policy/modules/services/virt.if | 94 policy/modules/services/virt.te | 47 policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 40 policy/modules/services/xserver.if | 915 +++++++-- policy/modules/services/xserver.te | 317 +++ policy/modules/services/zebra.te | 2 policy/modules/services/zosremote.fc | 2 policy/modules/services/zosremote.if | 52 policy/modules/services/zosremote.te | 36 policy/modules/system/application.te | 6 policy/modules/system/authlogin.fc | 10 policy/modules/system/authlogin.if | 212 ++ policy/modules/system/authlogin.te | 46 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 5 policy/modules/system/init.if | 129 + policy/modules/system/init.te | 114 + policy/modules/system/ipsec.fc | 3 policy/modules/system/ipsec.te | 47 policy/modules/system/iptables.fc | 16 policy/modules/system/iptables.te | 13 policy/modules/system/iscsi.te | 4 policy/modules/system/libraries.fc | 85 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 26 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 25 policy/modules/system/logging.te | 18 policy/modules/system/lvm.fc | 2 policy/modules/system/lvm.te | 66 policy/modules/system/miscfiles.if | 39 policy/modules/system/modutils.te | 40 policy/modules/system/mount.fc | 8 policy/modules/system/mount.if | 21 policy/modules/system/mount.te | 81 policy/modules/system/raid.te | 4 policy/modules/system/selinuxutil.fc | 10 policy/modules/system/selinuxutil.if | 373 +++ policy/modules/system/selinuxutil.te | 229 -- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 15 policy/modules/system/sysnetwork.if | 82 policy/modules/system/sysnetwork.te | 72 policy/modules/system/udev.fc | 3 policy/modules/system/udev.if | 28 policy/modules/system/udev.te | 15 policy/modules/system/unconfined.fc | 34 policy/modules/system/unconfined.if | 300 +++ policy/modules/system/unconfined.te | 209 +- policy/modules/system/userdomain.fc | 9 policy/modules/system/userdomain.if | 1898 ++++++++++++++------ policy/modules/system/userdomain.te | 89 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 127 + policy/policy_capabilities | 2 policy/support/obj_perm_sets.spt | 74 policy/users | 13 support/Makefile.devel | 3 452 files changed, 22205 insertions(+), 3610 deletions(-) Index: policy-20080710.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/policy-20080710.patch,v retrieving revision 1.173 retrieving revision 1.174 diff -u -p -r1.173 -r1.174 --- policy-20080710.patch 3 Jul 2009 09:09:29 -0000 1.173 +++ policy-20080710.patch 20 Jul 2009 13:25:09 -0000 1.174 @@ -12944,7 +12944,7 @@ diff --exclude-from=exclude -N -u -r nsa fs_search_auto_mountpoints(entropyd_t) diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/automount.if serefpolicy-3.5.13/policy/modules/services/automount.if --- nsaserefpolicy/policy/modules/services/automount.if 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/services/automount.if 2009-06-08 16:14:26.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/services/automount.if 2009-07-20 14:45:58.000000000 +0200 @@ -107,6 +107,24 @@ dontaudit $1 automount_tmp_t:dir getattr; ') @@ -26344,7 +26344,7 @@ diff --exclude-from=exclude -N -u -r nsa +') diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/rpc.te serefpolicy-3.5.13/policy/modules/services/rpc.te --- nsaserefpolicy/policy/modules/services/rpc.te 2008-10-17 14:49:11.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/services/rpc.te 2009-06-08 16:17:53.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/services/rpc.te 2009-07-20 14:45:25.000000000 +0200 @@ -23,7 +23,7 @@ gen_tunable(allow_nfsd_anon_write, false) @@ -27941,7 +27941,7 @@ diff --exclude-from=exclude -N -u -r nsa +') diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/setroubleshoot.te serefpolicy-3.5.13/policy/modules/services/setroubleshoot.te --- nsaserefpolicy/policy/modules/services/setroubleshoot.te 2008-10-17 14:49:11.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/services/setroubleshoot.te 2009-03-12 12:57:27.000000000 +0100 ++++ serefpolicy-3.5.13/policy/modules/services/setroubleshoot.te 2009-07-17 08:50:57.000000000 +0200 @@ -11,6 +11,9 @@ domain_type(setroubleshootd_t) init_daemon_domain(setroubleshootd_t, setroubleshootd_exec_t) @@ -27974,7 +27974,7 @@ diff --exclude-from=exclude -N -u -r nsa corecmd_exec_bin(setroubleshootd_t) corecmd_exec_shell(setroubleshootd_t) -@@ -68,16 +74,23 @@ +@@ -68,16 +74,24 @@ dev_read_urand(setroubleshootd_t) dev_read_sysfs(setroubleshootd_t) @@ -27983,6 +27983,7 @@ diff --exclude-from=exclude -N -u -r nsa domain_dontaudit_search_all_domains_state(setroubleshootd_t) ++files_read_all_symlinks(setroubleshootd_t) files_read_usr_files(setroubleshootd_t) files_read_etc_files(setroubleshootd_t) -files_getattr_all_dirs(setroubleshootd_t) @@ -27999,7 +28000,7 @@ diff --exclude-from=exclude -N -u -r nsa selinux_get_enforce_mode(setroubleshootd_t) selinux_validate_context(setroubleshootd_t) -@@ -97,23 +110,30 @@ +@@ -97,23 +111,30 @@ locallogin_dontaudit_use_fds(setroubleshootd_t) @@ -33301,7 +33302,7 @@ diff --exclude-from=exclude -N -u -r nsa +') diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/init.te serefpolicy-3.5.13/policy/modules/system/init.te --- nsaserefpolicy/policy/modules/system/init.te 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/init.te 2009-04-14 11:07:25.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/system/init.te 2009-07-20 14:40:59.000000000 +0200 @@ -17,6 +17,20 @@ ## gen_tunable(init_upstart,false) @@ -33446,11 +33447,12 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -521,6 +553,31 @@ +@@ -521,6 +553,32 @@ ') ') +domain_dontaudit_use_interactive_fds(daemon) ++userdom_dontaudit_rw_stream(daemon) + +sysadm_dontaudit_search_home_dirs(daemon) + @@ -33478,7 +33480,7 @@ diff --exclude-from=exclude -N -u -r nsa optional_policy(` amavis_search_lib(initrc_t) amavis_setattr_pid_files(initrc_t) -@@ -575,6 +632,10 @@ +@@ -575,6 +633,10 @@ dbus_read_config(initrc_t) optional_policy(` @@ -33489,7 +33491,7 @@ diff --exclude-from=exclude -N -u -r nsa networkmanager_dbus_chat(initrc_t) ') ') -@@ -660,12 +721,6 @@ +@@ -660,12 +722,6 @@ mta_read_config(initrc_t) mta_dontaudit_read_spool_symlinks(initrc_t) ') @@ -33502,7 +33504,7 @@ diff --exclude-from=exclude -N -u -r nsa optional_policy(` ifdef(`distro_redhat',` -@@ -726,6 +781,9 @@ +@@ -726,6 +782,9 @@ # why is this needed: rpm_manage_db(initrc_t) @@ -33512,7 +33514,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -738,10 +796,12 @@ +@@ -738,10 +797,12 @@ squid_manage_logs(initrc_t) ') @@ -33525,7 +33527,7 @@ diff --exclude-from=exclude -N -u -r nsa optional_policy(` ssh_dontaudit_read_server_keys(initrc_t) -@@ -759,6 +819,15 @@ +@@ -759,6 +820,15 @@ uml_setattr_util_sockets(initrc_t) ') @@ -33541,7 +33543,7 @@ diff --exclude-from=exclude -N -u -r nsa optional_policy(` unconfined_domain(initrc_t) -@@ -773,6 +842,10 @@ +@@ -773,6 +843,10 @@ ') optional_policy(` @@ -33552,7 +33554,7 @@ diff --exclude-from=exclude -N -u -r nsa vmware_read_system_config(initrc_t) vmware_append_system_config(initrc_t) ') -@@ -795,3 +868,19 @@ +@@ -795,3 +869,19 @@ optional_policy(` zebra_read_config(initrc_t) ') @@ -36015,9 +36017,12 @@ diff --exclude-from=exclude -N -u -r nsa +') diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/sysnetwork.te serefpolicy-3.5.13/policy/modules/system/sysnetwork.te --- nsaserefpolicy/policy/modules/system/sysnetwork.te 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/sysnetwork.te 2009-06-24 09:52:07.000000000 +0200 -@@ -20,6 +20,9 @@ ++++ serefpolicy-3.5.13/policy/modules/system/sysnetwork.te 2009-07-17 09:06:00.000000000 +0200 +@@ -18,8 +18,12 @@ + type dhcpc_t; + type dhcpc_exec_t; init_daemon_domain(dhcpc_t,dhcpc_exec_t) ++domain_obj_id_change_exemption(dhcpc_t) role system_r types dhcpc_t; +type dhcpc_helper_exec_t; @@ -36026,7 +36031,7 @@ diff --exclude-from=exclude -N -u -r nsa type dhcpc_state_t; files_type(dhcpc_state_t) -@@ -41,21 +44,22 @@ +@@ -41,21 +45,22 @@ # # DHCP client local policy # @@ -36054,7 +36059,7 @@ diff --exclude-from=exclude -N -u -r nsa manage_files_pattern(dhcpc_t,dhcpc_state_t,dhcpc_state_t) filetrans_pattern(dhcpc_t,dhcp_state_t,dhcpc_state_t,file) -@@ -65,7 +69,7 @@ +@@ -65,7 +70,7 @@ # Allow read/write to /etc/resolv.conf and /etc/ntp.conf. Note that any files # in /etc created by dhcpcd will be labelled net_conf_t. @@ -36063,7 +36068,7 @@ diff --exclude-from=exclude -N -u -r nsa files_etc_filetrans(dhcpc_t,net_conf_t,file) # create temp files -@@ -116,7 +120,7 @@ +@@ -116,7 +121,7 @@ corecmd_exec_shell(dhcpc_t) domain_use_interactive_fds(dhcpc_t) @@ -36072,7 +36077,7 @@ diff --exclude-from=exclude -N -u -r nsa files_read_etc_files(dhcpc_t) files_read_etc_runtime_files(dhcpc_t) -@@ -135,8 +139,6 @@ +@@ -135,8 +140,6 @@ modutils_domtrans_insmod(dhcpc_t) @@ -36081,7 +36086,7 @@ diff --exclude-from=exclude -N -u -r nsa ifdef(`distro_redhat', ` files_exec_etc_files(dhcpc_t) ') -@@ -185,25 +187,23 @@ +@@ -185,25 +188,23 @@ ') optional_policy(` @@ -36115,7 +36120,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -214,6 +214,11 @@ +@@ -214,6 +215,11 @@ optional_policy(` seutil_sigchld_newrole(dhcpc_t) seutil_dontaudit_search_config(dhcpc_t) @@ -36127,7 +36132,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -225,6 +230,10 @@ +@@ -225,6 +231,10 @@ ') optional_policy(` @@ -36138,7 +36143,7 @@ diff --exclude-from=exclude -N -u -r nsa kernel_read_xen_state(dhcpc_t) kernel_write_xen_state(dhcpc_t) xen_append_log(dhcpc_t) -@@ -238,7 +247,6 @@ +@@ -238,7 +248,6 @@ allow ifconfig_t self:process ~{ ptrace setcurrent setexec setfscreate setrlimit execmem execheap execstack }; allow ifconfig_t self:capability { net_raw net_admin sys_tty_config }; @@ -36146,7 +36151,7 @@ diff --exclude-from=exclude -N -u -r nsa allow ifconfig_t self:fd use; allow ifconfig_t self:fifo_file rw_fifo_file_perms; -@@ -252,6 +260,7 @@ +@@ -252,6 +261,7 @@ allow ifconfig_t self:sem create_sem_perms; allow ifconfig_t self:msgq create_msgq_perms; allow ifconfig_t self:msg { send receive }; @@ -36154,7 +36159,7 @@ diff --exclude-from=exclude -N -u -r nsa # Create UDP sockets, necessary when called from dhcpc allow ifconfig_t self:udp_socket create_socket_perms; -@@ -261,13 +270,20 @@ +@@ -261,13 +271,20 @@ allow ifconfig_t self:netlink_route_socket create_netlink_socket_perms; allow ifconfig_t self:netlink_xfrm_socket { create_netlink_socket_perms nlmsg_read }; allow ifconfig_t self:tcp_socket { create ioctl }; @@ -36175,7 +36180,7 @@ diff --exclude-from=exclude -N -u -r nsa corenet_rw_tun_tap_dev(ifconfig_t) -@@ -278,8 +294,13 @@ +@@ -278,8 +295,13 @@ fs_getattr_xattr_fs(ifconfig_t) fs_search_auto_mountpoints(ifconfig_t) @@ -36189,7 +36194,7 @@ diff --exclude-from=exclude -N -u -r nsa domain_use_interactive_fds(ifconfig_t) -@@ -300,6 +321,8 @@ +@@ -300,6 +322,8 @@ seutil_use_runinit_fds(ifconfig_t) @@ -36198,7 +36203,7 @@ diff --exclude-from=exclude -N -u -r nsa userdom_use_all_users_fds(ifconfig_t) ifdef(`distro_ubuntu',` -@@ -335,6 +358,14 @@ +@@ -335,6 +359,14 @@ ') optional_policy(` @@ -36739,7 +36744,7 @@ diff --exclude-from=exclude -N -u -r nsa + diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/unconfined.te serefpolicy-3.5.13/policy/modules/system/unconfined.te --- nsaserefpolicy/policy/modules/system/unconfined.te 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/unconfined.te 2009-03-20 09:28:45.000000000 +0100 ++++ serefpolicy-3.5.13/policy/modules/system/unconfined.te 2009-07-20 14:36:41.000000000 +0200 @@ -6,35 +6,78 @@ # Declarations # @@ -36826,7 +36831,7 @@ diff --exclude-from=exclude -N -u -r nsa libs_run_ldconfig(unconfined_t, unconfined_r, { unconfined_devpts_t unconfined_tty_device_t }) -@@ -42,28 +85,39 @@ +@@ -42,7 +85,10 @@ logging_run_auditctl(unconfined_t, unconfined_r, { unconfined_devpts_t unconfined_tty_device_t }) mount_run_unconfined(unconfined_t, unconfined_r, { unconfined_devpts_t unconfined_tty_device_t }) @@ -36837,8 +36842,7 @@ diff --exclude-from=exclude -N -u -r nsa seutil_run_setfiles(unconfined_t, unconfined_r, { unconfined_devpts_t unconfined_tty_device_t }) seutil_run_semanage(unconfined_t, unconfined_r, { unconfined_devpts_t unconfined_tty_device_t }) - unconfined_domain(unconfined_t) -+domain_mmap_low(unconfined_t) +@@ -50,20 +96,27 @@ userdom_priveleged_home_dir_manager(unconfined_t) @@ -36870,7 +36874,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -75,12 +129,6 @@ +@@ -75,12 +128,6 @@ ') optional_policy(` @@ -36883,7 +36887,7 @@ diff --exclude-from=exclude -N -u -r nsa init_dbus_chat_script(unconfined_t) dbus_stub(unconfined_t) -@@ -106,12 +154,24 @@ +@@ -106,12 +153,24 @@ ') optional_policy(` @@ -36908,7 +36912,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -123,79 +183,95 @@ +@@ -123,79 +182,95 @@ ') optional_policy(` @@ -37025,7 +37029,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -203,7 +279,7 @@ +@@ -203,7 +278,7 @@ ') optional_policy(` @@ -37034,7 +37038,7 @@ diff --exclude-from=exclude -N -u -r nsa ') optional_policy(` -@@ -215,11 +291,12 @@ +@@ -215,11 +290,12 @@ ') optional_policy(` @@ -37049,7 +37053,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -229,14 +306,61 @@ +@@ -229,14 +305,61 @@ allow unconfined_execmem_t self:process { execstack execmem }; unconfined_domain_noaudit(unconfined_execmem_t) @@ -37128,7 +37132,7 @@ diff --exclude-from=exclude -N -u -r nsa +/root(/.*)? gen_context(system_u:object_r:admin_home_t,s0) diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.if serefpolicy-3.5.13/policy/modules/system/userdomain.if --- nsaserefpolicy/policy/modules/system/userdomain.if 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/userdomain.if 2009-04-14 10:42:32.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/system/userdomain.if 2009-07-20 14:40:31.000000000 +0200 @@ -28,10 +28,14 @@ class context contains; ') @@ -39349,7 +39353,7 @@ diff --exclude-from=exclude -N -u -r nsa ## Send a dbus message to all user domains. ##
## -@@ -5513,3 +5725,642 @@ +@@ -5513,3 +5725,661 @@ interface(`userdom_unconfined',` refpolicywarn(`$0($*) has been deprecated.') ') @@ -39992,6 +39996,25 @@ diff --exclude-from=exclude -N -u -r nsa + dontaudit $1 admin_home_t:dir list_dir_perms; +') + ++####################################### ++## ++## Do not audit attempts to read and write ++## unserdomain stream. ++## ++## ++## ++## Domain to not audit. ++## ++## ++# ++interface(`userdom_dontaudit_rw_stream',` ++ gen_require(` ++ attribute userdomain; ++ ') ++ ++ dontaudit $1 userdomain:unix_stream_socket rw_file_perms; ++') ++ diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.5.13/policy/modules/system/userdomain.te --- nsaserefpolicy/policy/modules/system/userdomain.te 2008-10-17 14:49:13.000000000 +0200 +++ serefpolicy-3.5.13/policy/modules/system/userdomain.te 2009-02-10 15:07:15.000000000 +0100 Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/selinux-policy.spec,v retrieving revision 1.801 retrieving revision 1.802 diff -u -p -r1.801 -r1.802 --- selinux-policy.spec 3 Jul 2009 09:09:30 -0000 1.801 +++ selinux-policy.spec 20 Jul 2009 13:25:10 -0000 1.802 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.5.13 -Release: 66%{?dist} +Release: 67%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -462,6 +462,9 @@ exit 0 %endif %changelog +* Mon Jul 20 2009 Miroslav Grepl 3.5.13-67 +- Allow setroubleshootd to read all symlinks + * Fri Jul 3 2009 Miroslav Grepl 3.5.13-66 - Allow ftpd to create shm From schwab at fedoraproject.org Mon Jul 20 13:25:15 2009 From: schwab at fedoraproject.org (schwab) Date: Mon, 20 Jul 2009 13:25:15 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.272, 1.273 glibc-fedora.patch, 1.305, 1.306 glibc.spec, 1.396, 1.397 import.log, 1.15, 1.16 sources, 1.297, 1.298 Message-ID: <20090720132515.AEF9311C00D5@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29348/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.272 retrieving revision 1.273 diff -u -p -r1.272 -r1.273 --- .cvsignore 2 Jul 2009 10:22:47 -0000 1.272 +++ .cvsignore 20 Jul 2009 13:24:44 -0000 1.273 @@ -1,2 +1,2 @@ -glibc-2.10-131-g2fd0cd8-fedora.tar.bz2 -glibc-2.10-131-g2fd0cd8.tar.bz2 +glibc-2.10-181-g42e69bc-fedora.tar.bz2 +glibc-2.10-181-g42e69bc.tar.bz2 glibc-fedora.patch: ChangeLog | 30 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 8 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 58 files changed, 777 insertions(+), 464 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.305 retrieving revision 1.306 diff -u -p -r1.305 -r1.306 --- glibc-fedora.patch 2 Jul 2009 10:22:47 -0000 1.305 +++ glibc-fedora.patch 20 Jul 2009 13:24:44 -0000 1.306 @@ -1,6 +1,6 @@ ---- glibc-2.10-131-g2fd0cd8/ChangeLog -+++ glibc-2.10.90-2/ChangeLog -@@ -21,6 +21,16 @@ +--- glibc-2.10-181-g42e69bc/ChangeLog ++++ glibc-2.10.90-4/ChangeLog +@@ -222,6 +222,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -17,7 +17,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8419,6 +8429,13 @@ +@@ -8620,6 +8630,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -31,7 +31,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -8714,6 +8731,10 @@ +@@ -8915,6 +8932,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -42,7 +42,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -9971,6 +9992,15 @@ +@@ -10172,6 +10193,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -58,8 +58,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-131-g2fd0cd8/ChangeLog.15 -+++ glibc-2.10.90-2/ChangeLog.15 +--- glibc-2.10-181-g42e69bc/ChangeLog.15 ++++ glibc-2.10.90-4/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -125,8 +125,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-131-g2fd0cd8/ChangeLog.16 -+++ glibc-2.10.90-2/ChangeLog.16 +--- glibc-2.10-181-g42e69bc/ChangeLog.16 ++++ glibc-2.10.90-4/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -298,8 +298,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-131-g2fd0cd8/csu/Makefile -+++ glibc-2.10.90-2/csu/Makefile +--- glibc-2.10-181-g42e69bc/csu/Makefile ++++ glibc-2.10.90-4/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -310,8 +310,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-131-g2fd0cd8/csu/elf-init.c -+++ glibc-2.10.90-2/csu/elf-init.c +--- glibc-2.10-181-g42e69bc/csu/elf-init.c ++++ glibc-2.10.90-4/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -336,8 +336,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-131-g2fd0cd8/debug/tst-chk1.c -+++ glibc-2.10.90-2/debug/tst-chk1.c +--- glibc-2.10-181-g42e69bc/debug/tst-chk1.c ++++ glibc-2.10.90-4/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -366,8 +366,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-131-g2fd0cd8/elf/ldconfig.c -+++ glibc-2.10.90-2/elf/ldconfig.c +--- glibc-2.10-181-g42e69bc/elf/ldconfig.c ++++ glibc-2.10.90-4/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -449,8 +449,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-131-g2fd0cd8/elf/tst-stackguard1.c -+++ glibc-2.10.90-2/elf/tst-stackguard1.c +--- glibc-2.10-181-g42e69bc/elf/tst-stackguard1.c ++++ glibc-2.10.90-4/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -475,16 +475,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-131-g2fd0cd8/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-2/include/bits/stdlib-ldbl.h +--- glibc-2.10-181-g42e69bc/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-4/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-131-g2fd0cd8/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-2/include/bits/wchar-ldbl.h +--- glibc-2.10-181-g42e69bc/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-4/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-131-g2fd0cd8/include/features.h -+++ glibc-2.10.90-2/include/features.h +--- glibc-2.10-181-g42e69bc/include/features.h ++++ glibc-2.10.90-4/include/features.h @@ -299,8 +299,13 @@ #endif @@ -501,8 +501,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-131-g2fd0cd8/intl/locale.alias -+++ glibc-2.10.90-2/intl/locale.alias +--- glibc-2.10-181-g42e69bc/intl/locale.alias ++++ glibc-2.10.90-4/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -512,8 +512,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-131-g2fd0cd8/libio/stdio.h -+++ glibc-2.10.90-2/libio/stdio.h +--- glibc-2.10-181-g42e69bc/libio/stdio.h ++++ glibc-2.10.90-4/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -527,8 +527,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-131-g2fd0cd8/locale/iso-4217.def -+++ glibc-2.10.90-2/locale/iso-4217.def +--- glibc-2.10-181-g42e69bc/locale/iso-4217.def ++++ glibc-2.10.90-4/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -620,8 +620,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-131-g2fd0cd8/locale/programs/locarchive.c -+++ glibc-2.10.90-2/locale/programs/locarchive.c +--- glibc-2.10-181-g42e69bc/locale/programs/locarchive.c ++++ glibc-2.10.90-4/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -653,8 +653,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-131-g2fd0cd8/localedata/Makefile -+++ glibc-2.10.90-2/localedata/Makefile +--- glibc-2.10-181-g42e69bc/localedata/Makefile ++++ glibc-2.10.90-4/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -663,8 +663,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-131-g2fd0cd8/localedata/SUPPORTED -+++ glibc-2.10.90-2/localedata/SUPPORTED +--- glibc-2.10-181-g42e69bc/localedata/SUPPORTED ++++ glibc-2.10.90-4/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -706,8 +706,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-131-g2fd0cd8/localedata/locales/cy_GB -+++ glibc-2.10.90-2/localedata/locales/cy_GB +--- glibc-2.10-181-g42e69bc/localedata/locales/cy_GB ++++ glibc-2.10.90-4/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -722,8 +722,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-131-g2fd0cd8/localedata/locales/en_GB -+++ glibc-2.10.90-2/localedata/locales/en_GB +--- glibc-2.10-181-g42e69bc/localedata/locales/en_GB ++++ glibc-2.10.90-4/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -735,8 +735,8 @@ date_fmt "/ / " ---- glibc-2.10-131-g2fd0cd8/localedata/locales/no_NO -+++ glibc-2.10.90-2/localedata/locales/no_NO +--- glibc-2.10-181-g42e69bc/localedata/locales/no_NO ++++ glibc-2.10.90-4/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -807,8 +807,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-131-g2fd0cd8/localedata/locales/zh_TW -+++ glibc-2.10.90-2/localedata/locales/zh_TW +--- glibc-2.10-181-g42e69bc/localedata/locales/zh_TW ++++ glibc-2.10.90-4/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -836,8 +836,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-131-g2fd0cd8/malloc/mcheck.c -+++ glibc-2.10.90-2/malloc/mcheck.c +--- glibc-2.10-181-g42e69bc/malloc/mcheck.c ++++ glibc-2.10.90-4/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -913,8 +913,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-131-g2fd0cd8/manual/libc.texinfo -+++ glibc-2.10.90-2/manual/libc.texinfo +--- glibc-2.10-181-g42e69bc/manual/libc.texinfo ++++ glibc-2.10.90-4/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -924,8 +924,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-131-g2fd0cd8/misc/sys/cdefs.h -+++ glibc-2.10.90-2/misc/sys/cdefs.h +--- glibc-2.10-181-g42e69bc/misc/sys/cdefs.h ++++ glibc-2.10.90-4/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -969,17 +969,17 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-131-g2fd0cd8/nis/nss -+++ glibc-2.10.90-2/nis/nss +--- glibc-2.10-181-g42e69bc/nis/nss ++++ glibc-2.10.90-4/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-131-g2fd0cd8/nptl/ChangeLog -+++ glibc-2.10.90-2/nptl/ChangeLog -@@ -3524,6 +3524,15 @@ +--- glibc-2.10-181-g42e69bc/nptl/ChangeLog ++++ glibc-2.10.90-4/nptl/ChangeLog +@@ -3584,6 +3584,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -995,7 +995,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4260,6 +4269,11 @@ +@@ -4320,6 +4329,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -1007,7 +1007,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6334,6 +6348,11 @@ +@@ -6394,6 +6408,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1019,8 +1019,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-131-g2fd0cd8/nptl/Makefile -+++ glibc-2.10.90-2/nptl/Makefile +--- glibc-2.10-181-g42e69bc/nptl/Makefile ++++ glibc-2.10.90-4/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1031,7 +1031,7 @@ endif CFLAGS-flockfile.c = -D_IO_MTSAFE_IO -@@ -523,15 +524,19 @@ $(addprefix $(objpfx), \ +@@ -525,15 +526,19 @@ $(addprefix $(objpfx), \ $(tests) $(xtests) $(test-srcs))): $(objpfx)libpthread.so \ $(objpfx)libpthread_nonshared.a $(objpfx)tst-unload: $(common-objpfx)dlfcn/libdl.so @@ -1053,8 +1053,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-131-g2fd0cd8/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-2/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-181-g42e69bc/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-4/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1063,8 +1063,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-131-g2fd0cd8/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-2/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-181-g42e69bc/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-4/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1072,8 +1072,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-131-g2fd0cd8/nptl/tst-stackguard1.c -+++ glibc-2.10.90-2/nptl/tst-stackguard1.c +--- glibc-2.10-181-g42e69bc/nptl/tst-stackguard1.c ++++ glibc-2.10.90-4/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1098,8 +1098,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-131-g2fd0cd8/nscd/nscd.conf -+++ glibc-2.10.90-2/nscd/nscd.conf +--- glibc-2.10-181-g42e69bc/nscd/nscd.conf ++++ glibc-2.10.90-4/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1109,8 +1109,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-131-g2fd0cd8/nscd/nscd.init -+++ glibc-2.10.90-2/nscd/nscd.init +--- glibc-2.10-181-g42e69bc/nscd/nscd.init ++++ glibc-2.10.90-4/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1167,8 +1167,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-131-g2fd0cd8/posix/Makefile -+++ glibc-2.10.90-2/posix/Makefile +--- glibc-2.10-181-g42e69bc/posix/Makefile ++++ glibc-2.10.90-4/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1189,8 +1189,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-131-g2fd0cd8/posix/getconf.speclist.h -+++ glibc-2.10.90-2/posix/getconf.speclist.h +--- glibc-2.10-181-g42e69bc/posix/getconf.speclist.h ++++ glibc-2.10.90-4/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1231,8 +1231,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-131-g2fd0cd8/streams/Makefile -+++ glibc-2.10.90-2/streams/Makefile +--- glibc-2.10-181-g42e69bc/streams/Makefile ++++ glibc-2.10.90-4/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1242,8 +1242,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-131-g2fd0cd8/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-2/sysdeps/generic/dl-cache.h +--- glibc-2.10-181-g42e69bc/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-4/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1259,8 +1259,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-131-g2fd0cd8/sysdeps/i386/Makefile -+++ glibc-2.10.90-2/sysdeps/i386/Makefile +--- glibc-2.10-181-g42e69bc/sysdeps/i386/Makefile ++++ glibc-2.10.90-4/sysdeps/i386/Makefile @@ -64,6 +64,14 @@ endif ifneq (,$(filter -mno-tls-direct-seg-refs,$(CFLAGS))) @@ -1276,8 +1276,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/Makefile -+++ glibc-2.10.90-2/sysdeps/ia64/Makefile +--- glibc-2.10-181-g42e69bc/sysdeps/ia64/Makefile ++++ glibc-2.10.90-4/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1289,8 +1289,8 @@ endif endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-2/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-181-g42e69bc/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-4/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1642,8 +1642,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-2/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-181-g42e69bc/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-4/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1729,8 +1729,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-2/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-4/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1748,8 +1748,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-2/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-4/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1758,8 +1758,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-131-g2fd0cd8/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-2/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-4/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1777,8 +1777,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/nice.c -+++ glibc-2.10.90-2/sysdeps/unix/nice.c +--- glibc-2.10-181-g42e69bc/sysdeps/unix/nice.c ++++ glibc-2.10.90-4/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1793,8 +1793,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1810,8 +1810,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1859,8 +1859,8 @@ } else #endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1903,8 +1903,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1923,8 +1923,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -1985,8 +1985,8 @@ + } while (0) + +#include_next ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2019,29 +2019,29 @@ + } while (0) + #include_next ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2067,8 +2067,8 @@ struct netlink_res { ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2078,8 +2078,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2125,8 +2125,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-131-g2fd0cd8/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-2/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2145,8 +2145,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-131-g2fd0cd8/timezone/zic.c -+++ glibc-2.10.90-2/timezone/zic.c +--- glibc-2.10-181-g42e69bc/timezone/zic.c ++++ glibc-2.10.90-4/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.396 retrieving revision 1.397 diff -u -p -r1.396 -r1.397 --- glibc.spec 8 Jul 2009 17:15:21 -0000 1.396 +++ glibc.spec 20 Jul 2009 13:24:45 -0000 1.397 @@ -1,8 +1,8 @@ -%define glibcsrcdir glibc-2.10-131-g2fd0cd8 +%define glibcsrcdir glibc-2.10-181-g42e69bc %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 -%define auxarches i686 athlon sparcv9v sparc64v alphaev6 +%define auxarches athlon sparcv9v sparc64v alphaev6 %define xenarches i686 athlon %ifarch %{xenarches} %define buildxen 1 @@ -17,14 +17,14 @@ %define buildpower6 0 %endif %define rtkaioarches %{ix86} x86_64 ia64 ppc ppc64 s390 s390x -%define debuginfocommonarches %{ix86} alpha alphaev6 sparc sparcv9 sparcv9v sparc64 sparc64v +%define debuginfocommonarches alpha alphaev6 sparc sparcv9 sparcv9v sparc64 sparc64v %define multiarcharches %{ix86} x86_64 %define _unpackaged_files_terminate_build 0 Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 3 +Release: 4 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -144,6 +144,7 @@ Provides: %{name}-headers(%{_target_cpu} # If both -m32 and -m64 is to be supported on AMD64, x86_64 glibc-headers # have to be installed, not i586 ones. Obsoletes: %{name}-headers(i586) +Obsoletes: %{name}-headers(i686) %endif Requires(pre): kernel-headers Requires: kernel-headers >= 2.2.1, %{name} = %{version}-%{release} @@ -203,6 +204,10 @@ Group: Development/Debug AutoReqProv: no %ifarch %{debuginfocommonarches} Requires: glibc-debuginfo-common = %{version}-%{release} +%else +%ifarch %{ix86} +Obsoletes: glibc-debuginfo-common +%endif %endif %description debuginfo @@ -800,7 +805,7 @@ list_debug_archives() %ifarch %{debuginfocommonarches} %ifarch %{ix86} -%define basearch i586 +%define basearch i686 %endif %ifarch alpha alphaev6 %define basearch alpha @@ -1025,6 +1030,10 @@ rm -f *.filelist* %endif %changelog +* Mon Jul 20 2009 Andreas Schwab - 2.10.90-4 +- Update from master. +- Don't build separate i686 package. + * Wed Jul 8 2009 Andreas Schwab 2.10.90-3 - Reenable setuid on pt_chown. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- import.log 26 Jun 2009 15:46:27 -0000 1.15 +++ import.log 20 Jul 2009 13:24:45 -0000 1.16 @@ -13,3 +13,4 @@ glibc-2_9_90-14:HEAD:glibc-2.9.90-14.src glibc-2_9_90-15:HEAD:glibc-2.9.90-15.src.rpm:1239312092 glibc-2_9_90-16:HEAD:glibc-2.9.90-16.src.rpm:1239744476 glibc-2_10_90-1:HEAD:glibc-2.10.90-1.src.rpm:1246030924 +glibc-2_10_90-4:HEAD:glibc-2.10.90-4.src.rpm:1248096214 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.297 retrieving revision 1.298 diff -u -p -r1.297 -r1.298 --- sources 2 Jul 2009 10:22:47 -0000 1.297 +++ sources 20 Jul 2009 13:24:45 -0000 1.298 @@ -1,2 +1,2 @@ -a8a59dbfbdb7a5a0e6ce27ce590f0f13 glibc-2.10-131-g2fd0cd8-fedora.tar.bz2 -6392e85caaafd28eb49273e8cd6a14f9 glibc-2.10-131-g2fd0cd8.tar.bz2 +398270f200e1ec186de374bb041c3b1e glibc-2.10-181-g42e69bc-fedora.tar.bz2 +fffd37bec445c6f7599ea5796914b4b7 glibc-2.10-181-g42e69bc.tar.bz2 From mhlavink at fedoraproject.org Mon Jul 20 13:25:56 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 13:25:56 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel .cvsignore, 1.26, 1.27 ecryptfs-utils-75-werror.patch, 1.1, 1.2 ecryptfs-utils.spec, 1.46, 1.47 sources, 1.27, 1.28 ecryptfs-utils-74-group.patch, 1.1, NONE ecryptfs-utils-75-blkid.patch, 1.1, NONE Message-ID: <20090720132556.812AE11C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29671 Modified Files: .cvsignore ecryptfs-utils-75-werror.patch ecryptfs-utils.spec sources Removed Files: ecryptfs-utils-74-group.patch ecryptfs-utils-75-blkid.patch Log Message: updated to 76 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 21 May 2009 09:42:20 -0000 1.26 +++ .cvsignore 20 Jul 2009 13:25:26 -0000 1.27 @@ -1,2 +1,2 @@ -ecryptfs-utils_75.orig.tar.gz +ecryptfs-utils_76.orig.tar.gz ecryptfs-mount-private.png ecryptfs-utils-75-werror.patch: pam_ecryptfs.c | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) Index: ecryptfs-utils-75-werror.patch =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils-75-werror.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ecryptfs-utils-75-werror.patch 4 May 2009 17:24:51 -0000 1.1 +++ ecryptfs-utils-75-werror.patch 20 Jul 2009 13:25:26 -0000 1.2 @@ -1,30 +1,62 @@ -diff -up ecryptfs-utils-75/src/libecryptfs/key_management.c.werror ecryptfs-utils-75/src/libecryptfs/key_management.c ---- ecryptfs-utils-75/src/libecryptfs/key_management.c.werror 2009-05-01 00:53:13.000000000 +0200 -+++ ecryptfs-utils-75/src/libecryptfs/key_management.c 2009-05-04 17:49:49.940220924 +0200 -@@ -18,6 +18,7 @@ - * 02111-1307, USA. - */ +diff -up ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c +--- ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-07-20 15:17:30.013884686 +0200 ++++ ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c 2009-07-20 15:19:17.111071710 +0200 +@@ -42,31 +42,6 @@ -+#include "config.h" - #include - #ifdef ENABLE_NSS - #include -@@ -39,7 +40,6 @@ - #include - #include - #include --#include "config.h" - #include "../include/ecryptfs.h" + #define PRIVATE_DIR "Private" - #ifndef ENOKEY -diff -up ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c ---- ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror 2009-05-04 17:50:33.587240171 +0200 -+++ ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c 2009-05-04 17:50:33.615345763 +0200 -@@ -42,7 +42,6 @@ int main(int argc, char *argv[]) - char *wrapping_passphrase; - char salt[ECRYPTFS_SALT_SIZE]; - char salt_hex[ECRYPTFS_SALT_SIZE_HEX]; -- struct passwd *pwd; - int rc = 0; +-static void error(const char *msg) +-{ +- syslog(LOG_ERR, "errno = [%i]; strerror = [%m]\n", errno); +- switch (errno) { +- case ENOKEY: +- syslog(LOG_ERR, "%s: Requested key not available\n", msg); +- return; +- +- case EKEYEXPIRED: +- syslog(LOG_ERR, "%s: Key has expired\n", msg); +- return; +- +- case EKEYREVOKED: +- syslog(LOG_ERR, "%s: Key has been revoked\n", msg); +- return; +- +- case EKEYREJECTED: +- syslog(LOG_ERR, "%s: Key was rejected by service\n", msg); +- return; +- default: +- syslog(LOG_ERR, "%s: Unknown key error\n", msg); +- return; +- } +-} +- + /* returns: 0 for pam automounting not set, 1 for set, <0 for error */ + static int ecryptfs_pam_automount_set(const char *homedir) + { +@@ -249,8 +224,6 @@ static int private_dir(pam_handle_t *pam + char *autoumount = "auto-umount"; + struct stat s; + pid_t pid; +- struct utmp *u; +- int count = 0; - if (argc == 1) { + if ((pwd = fetch_pwd(pamh)) == NULL) { + /* fetch_pwd() logged a message */ +@@ -297,7 +270,7 @@ static int private_dir(pam_handle_t *pam + if (stat(recorded, &s) != 0 && stat("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", &s) == 0) { + /* User has not recorded their passphrase */ + unlink("/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); +- symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); ++ rc=symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); + fd = open("/var/lib/update-notifier/dpkg-run-stamp", O_WRONLY|O_CREAT|O_NONBLOCK, 0666); + close(fd); + } +@@ -390,7 +363,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand + } + } else { + syslog(LOG_ERR, "Error getting passwd info for user [%s]; " +- "rc = [%ld]\n", username, rc); ++ "rc = [%d]\n", username, rc); + goto out; + } + saved_uid = geteuid(); Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- ecryptfs-utils.spec 21 May 2009 09:53:33 -0000 1.46 +++ ecryptfs-utils.spec 20 Jul 2009 13:25:26 -0000 1.47 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: ecryptfs-utils -Version: 75 +Version: 76 Release: 1%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base @@ -14,17 +14,10 @@ Source1: ecryptfs-mount-private.png #fix wrong Makefile for umount.ecryptfs Patch2: ecryptfs-utils-74-build.patch -#restrict suid mount.ecryptfs_private to ecryptfs group only -#required for ecryptfs-utils <=75 -Patch3: ecryptfs-utils-74-group.patch - #allow building with -Werror #required for ecryptfs-utils <= 75 Patch4: ecryptfs-utils-75-werror.patch -#taken from upstream, required for ecryptfs-utils <= 75, rhbz#500820 -Patch5: ecryptfs-utils-75-blkid.patch - #rhbz#500829 Patch6: ecryptfs-utils-75-nocryptdisks.patch @@ -62,14 +55,13 @@ applications written in the Python progr the interface supplied by the ecryptfs-utils library. %prep -%setup -q +%setup -q -n %{name}_%{version}.orig %patch2 -p1 -b .build -%patch3 -p1 -b .group %patch4 -p1 -b .werror -%patch5 -p0 -b .blkid %patch6 -p0 -b .nocryptdisks %build +autoreconf -fiv export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror" %configure --disable-rpath --enable-tspi --enable-nss --enable-static make clean @@ -185,6 +177,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Mon Jul 20 2009 Michal Hlavinka 76-1 +- updated to 76 + * Thu May 21 2009 Michal Hlavinka 75-1 - removed executable permission from ecryptfs-dot-private (#500817) - require cryptsetup-luks for encrypted swap (#500824) Index: sources =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 May 2009 09:42:21 -0000 1.27 +++ sources 20 Jul 2009 13:25:26 -0000 1.28 @@ -1,2 +1,2 @@ -2c4e8be38d1ea8cadd9f870f15430f07 ecryptfs-utils_75.orig.tar.gz +0e6a58a0730838dc832ecd8bd9e0c463 ecryptfs-utils_76.orig.tar.gz e612ddb9ccb17f8fec79df26e626a8c6 ecryptfs-mount-private.png --- ecryptfs-utils-74-group.patch DELETED --- --- ecryptfs-utils-75-blkid.patch DELETED --- From vcrhonek at fedoraproject.org Mon Jul 20 13:26:17 2009 From: vcrhonek at fedoraproject.org (vcrhonek) Date: Mon, 20 Jul 2009 13:26:17 +0000 (UTC) Subject: rpms/tcsh/devel .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 tcsh-6.14.00-syntax.patch, 1.1, 1.2 tcsh-6.15.00-ca-color.patch, 1.2, 1.3 tcsh-6.15.00-rs-color.patch, 1.1, 1.2 tcsh.spec, 1.62, 1.63 tcsh-6.15.00-wide-str.patch, 1.1, NONE Message-ID: <20090720132617.6410B11C00D5@cvs1.fedora.phx.redhat.com> Author: vcrhonek Update of /cvs/extras/rpms/tcsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29828 Modified Files: .cvsignore sources tcsh-6.14.00-syntax.patch tcsh-6.15.00-ca-color.patch tcsh-6.15.00-rs-color.patch tcsh.spec Removed Files: tcsh-6.15.00-wide-str.patch Log Message: Update to tcsh-6.17.00 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 28 Apr 2009 15:50:16 -0000 1.8 +++ .cvsignore 20 Jul 2009 13:25:46 -0000 1.9 @@ -1,3 +1,4 @@ tcsh-6.14.00.tar.gz tcsh-6.15.00.tar.gz tcsh-6.16.00.tar.gz +tcsh-6.17.00.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 28 Apr 2009 15:50:16 -0000 1.8 +++ sources 20 Jul 2009 13:25:46 -0000 1.9 @@ -1 +1 @@ -55f1a41512250168ec4bf1db0e246db4 tcsh-6.16.00.tar.gz +c47de903e3d52f6824c8dd0c91eeb477 tcsh-6.17.00.tar.gz tcsh-6.14.00-syntax.patch: sh.func.c | 13 ------------- 1 file changed, 13 deletions(-) Index: tcsh-6.14.00-syntax.patch =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/tcsh-6.14.00-syntax.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tcsh-6.14.00-syntax.patch 3 Sep 2008 11:50:36 -0000 1.1 +++ tcsh-6.14.00-syntax.patch 20 Jul 2009 13:25:46 -0000 1.2 @@ -1,16 +1,16 @@ -diff -up tcsh-6.15.00/sh.func.c.syntax tcsh-6.15.00/sh.func.c ---- tcsh-6.15.00/sh.func.c.syntax 2006-08-24 22:56:31.000000000 +0200 -+++ tcsh-6.15.00/sh.func.c 2008-09-03 11:53:05.000000000 +0200 -@@ -751,8 +751,6 @@ search(int type, int level, Char *goal) +diff -up tcsh-6.17.00/sh.func.c_old tcsh-6.17.00/sh.func.c +--- tcsh-6.17.00/sh.func.c_old 2009-07-20 14:54:16.000000000 +0200 ++++ tcsh-6.17.00/sh.func.c 2009-07-20 14:55:34.000000000 +0200 +@@ -753,8 +753,6 @@ search(int type, int level, Char *goal) { struct Strbuf word = Strbuf_INIT; Char *cp; - struct whyle *wp; - int wlevel = 0; + struct wordent *histent = NULL, *ohistent = NULL; Stype = type; - Sgoal = goal; -@@ -791,24 +789,13 @@ search(int type, int level, Char *goal) +@@ -811,24 +809,13 @@ search(int type, int level, Char *goal) case TC_FOREACH: case TC_WHILE: tcsh-6.15.00-ca-color.patch: tw.color.c | 1 + 1 file changed, 1 insertion(+) Index: tcsh-6.15.00-ca-color.patch =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/tcsh-6.15.00-ca-color.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tcsh-6.15.00-ca-color.patch 29 Aug 2008 10:42:02 -0000 1.2 +++ tcsh-6.15.00-ca-color.patch 20 Jul 2009 13:25:46 -0000 1.3 @@ -1,10 +1,10 @@ -diff -up tcsh-6.15.00/tw.color.c.ca-color tcsh-6.15.00/tw.color.c ---- tcsh-6.15.00/tw.color.c.ca-color 2006-03-02 19:46:45.000000000 +0100 -+++ tcsh-6.15.00/tw.color.c 2008-08-29 12:37:53.000000000 +0200 -@@ -85,6 +85,7 @@ static Variable variables[] = { - VAR(NOS, "tw", ""), /* Sticky and other writable dir (+t,o+w) */ +diff -up tcsh-6.17.00/tw.color.c_old tcsh-6.17.00/tw.color.c +--- tcsh-6.17.00/tw.color.c_old 2009-07-20 14:35:59.000000000 +0200 ++++ tcsh-6.17.00/tw.color.c 2009-07-20 14:36:54.000000000 +0200 +@@ -86,6 +86,7 @@ static Variable variables[] = { VAR(NOS, "ow", ""), /* Other writable dir (o+w) but not sticky */ VAR(NOS, "st", ""), /* Sticky dir (+t) but not other writable */ + VAR(NOS, "rs", "0"), /* Reset to normal color */ + VAR(NOS, "ca", ""), /* file with capability */ }; tcsh-6.15.00-rs-color.patch: tw.color.c | 1 + 1 file changed, 1 insertion(+) Index: tcsh-6.15.00-rs-color.patch =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/tcsh-6.15.00-rs-color.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tcsh-6.15.00-rs-color.patch 2 Mar 2009 14:11:52 -0000 1.1 +++ tcsh-6.15.00-rs-color.patch 20 Jul 2009 13:25:46 -0000 1.2 @@ -1,10 +1,10 @@ ---- tcsh-6.15.00/tw.color.c.rs 2009-02-27 16:03:44.000000000 -0500 -+++ tcsh-6.15.00/tw.color.c 2009-02-27 16:05:57.000000000 -0500 -@@ -86,6 +86,8 @@ static Variable variables[] = { - VAR(NOS, "ow", ""), /* Other writable dir (o+w) but not sticky */ +diff -up tcsh-6.17.00/tw.color.c_old tcsh-6.17.00/tw.color.c +--- tcsh-6.17.00/tw.color.c_old 2009-07-20 15:14:22.000000000 +0200 ++++ tcsh-6.17.00/tw.color.c 2009-07-20 15:15:26.000000000 +0200 +@@ -87,6 +87,7 @@ static Variable variables[] = { VAR(NOS, "st", ""), /* Sticky dir (+t) but not other writable */ + VAR(NOS, "rs", "0"), /* Reset to normal color */ VAR(NOS, "ca", ""), /* file with capability */ -+ VAR(NOS, "rs", ""), /* RESET */ + VAR(NOS, "hl", ""), /* Hardlink */ }; Index: tcsh.spec =================================================================== RCS file: /cvs/extras/rpms/tcsh/devel/tcsh.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- tcsh.spec 30 Apr 2009 11:38:58 -0000 1.62 +++ tcsh.spec 20 Jul 2009 13:25:46 -0000 1.63 @@ -2,7 +2,7 @@ Summary: An enhanced version of csh, the C shell Name: tcsh -Version: 6.16 +Version: 6.17 Release: 1%{?dist} License: BSD Group: System Environment/Shells @@ -16,8 +16,7 @@ Patch7: tcsh-6.14.00-set.patch Patch8: tcsh-6.14.00-syntax.patch Patch9: tcsh-6.13.00-memoryuse.patch Patch11: tcsh-6.14.00-order.patch -Patch12: tcsh-6.15.00-wide-str.patch -Patch13: tcsh-6.15.00-rs-color.patch +Patch12: tcsh-6.15.00-rs-color.patch Provides: csh = %{version} Requires(post): grep Requires(postun): coreutils, grep @@ -44,8 +43,7 @@ like syntax. %patch8 -p1 -b .syntax %patch9 -p1 -b .memoryuse %patch11 -p1 -b .order -%patch12 -p1 -b .wide-str -%patch13 -p1 -b .rs-color +%patch12 -p1 -b .rs-color for i in Fixes WishList; do iconv -f iso-8859-1 -t utf-8 "$i" > "${i}_" && \ @@ -119,6 +117,9 @@ fi %{_mandir}/man1/*.1* %changelog +* Mon Jul 20 2009 Vitezslav Crhonek - 6.17-1 +- Update to tcsh-6.17.00 + * Thu Apr 30 2009 Vitezslav Crhonek - 6.16-1 - Update to tcsh-6.16.00 - Merge Review (fix License, add BUGS and WishList to documentation, convert Fixes and --- tcsh-6.15.00-wide-str.patch DELETED --- From nphilipp at fedoraproject.org Mon Jul 20 13:27:34 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Mon, 20 Jul 2009 13:27:34 +0000 (UTC) Subject: rpms/xsane/devel xsane.spec,1.70,1.71 Message-ID: <20090720132734.EF9CE11C00D5@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30342 Modified Files: xsane.spec Log Message: don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/xsane.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- xsane.spec 7 Jul 2009 15:49:57 -0000 1.70 +++ xsane.spec 20 Jul 2009 13:27:04 -0000 1.71 @@ -3,13 +3,14 @@ Name: xsane Summary: X Window System front-end for the SANE scanner interface Version: 0.996 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in Patch0: xsane-0.995-xdg-open.patch Patch1: xsane-0.995-eula-license-size.patch Patch2: xsane-0.995-close-fds.patch +Patch3: xsane-0.996-sane-backends-1.0.20.patch License: GPLv2+ URL: http://www.xsane.org/ Group: Applications/Multimedia @@ -54,6 +55,7 @@ done %patch0 -p1 -b .xdg-open %patch1 -p1 -b .eula-license-size %patch2 -p1 -b .close-fds +%patch3 -p1 -b .sane-backends-1.0.20 %build %configure --enable-gimp @@ -117,6 +119,9 @@ fi %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog +* Mon Jul 20 2009 Nils Philippsen 0.996-8 +- don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) + * Tue Jul 7 2009 Tom "spot" Callaway 0.996-7 - don't own %%{_datadir}/applications/ (filesystem package owns it) From paragn at fedoraproject.org Mon Jul 20 13:31:14 2009 From: paragn at fedoraproject.org (paragn) Date: Mon, 20 Jul 2009 13:31:14 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel CodeAnalyst-gui.spec,1.8,1.9 Message-ID: <20090720133114.2406711C00D5@cvs1.fedora.phx.redhat.com> Author: paragn Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31552 Modified Files: CodeAnalyst-gui.spec Log Message: * Mon Jul 20 2009 - Parag Nemade - 2.8.54-16 - Rebuild against new libbfd-2.19.51.0.11-24.fc12.so Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- CodeAnalyst-gui.spec 13 Jul 2009 03:57:45 -0000 1.8 +++ CodeAnalyst-gui.spec 20 Jul 2009 13:31:13 -0000 1.9 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.54 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -149,6 +149,10 @@ fi %changelog +* Mon Jul 20 2009 - Parag Nemade +- 2.8.54-16 +- Rebuild against new libbfd-2.19.51.0.11-24.fc12.so + * Mon Jul 13 2009 - Parag Nemade - 2.8.54-15 - Rebuild against new libbfd-2.19.51.0.11-23.fc12.so From mhlavink at fedoraproject.org Mon Jul 20 13:37:40 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 13:37:40 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel ecryptfs-utils.spec,1.47,1.48 Message-ID: <20090720133740.F245E11C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv701 Modified Files: ecryptfs-utils.spec Log Message: add autoconf to buildrequires Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- ecryptfs-utils.spec 20 Jul 2009 13:25:26 -0000 1.47 +++ ecryptfs-utils.spec 20 Jul 2009 13:37:40 -0000 1.48 @@ -24,7 +24,7 @@ Patch6: ecryptfs-utils-75-nocryptdisks.p BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils +BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake %description eCryptfs is a stacked cryptographic filesystem that ships in Linux From bjohnson at fedoraproject.org Mon Jul 20 13:43:56 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Mon, 20 Jul 2009 13:43:56 +0000 (UTC) Subject: rpms/pygoocanvas/devel pygoocanvas-0.14.0-API-change.patch, NONE, 1.1 pygoocanvas.spec, 1.12, 1.13 Message-ID: <20090720134356.6A09011C00D5@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/pygoocanvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2549 Modified Files: pygoocanvas.spec Added Files: pygoocanvas-0.14.0-API-change.patch Log Message: - add patch to fix upstream API breakage (bz #511658) pygoocanvas-0.14.0-API-change.patch: goocanvasmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE pygoocanvas-0.14.0-API-change.patch --- Index: pygoocanvas-0.14.0/goocanvasmodule.c =================================================================== --- pygoocanvas-0.14.0.orig/goocanvasmodule.c +++ pygoocanvas-0.14.0/goocanvasmodule.c @@ -35,7 +35,7 @@ _cairo_matrix_to_gvalue(GValue *value, P static PyObject * _cairo_pattern_from_gvalue(const GValue *value) { - return PycairoPattern_FromPattern(cairo_pattern_reference((cairo_pattern_t *) g_value_get_boxed(value))); + return PycairoPattern_FromPattern(cairo_pattern_reference((cairo_pattern_t *) g_value_get_boxed(value)), NULL); } static int Index: pygoocanvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygoocanvas/devel/pygoocanvas.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pygoocanvas.spec 25 Jun 2009 07:34:52 -0000 1.12 +++ pygoocanvas.spec 20 Jul 2009 13:43:26 -0000 1.13 @@ -4,17 +4,18 @@ Name: pygoocanvas Version: 0.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GooCanvas python bindings Group: Development/Languages License: LGPLv2+ URL: http://live.gnome.org/PyGoocanvas Source0: ftp://ftp.gnome.org/pub/GNOME/sources/pygoocanvas/%{name}/%{major_version}/%{name}-%{version}.tar.bz2 +Patch0: pygoocanvas-0.14.0-API-change.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel, pkgconfig, pygobject2-devel -BuildRequires: pycairo-devel >= 1.4.0, pygtk2-devel >= 2.10.0 +BuildRequires: pycairo-devel >= 1.8.4, pygtk2-devel >= 2.10.0 BuildRequires: goocanvas-devel = %{major_version}, gtk2-devel BuildRequires: libxslt, docbook-style-xsl @@ -27,6 +28,8 @@ GooCanvas python bindings. %prep %setup -q +%patch0 -p1 -b .api-change + %build %configure make %{?_smp_mflags} @@ -62,6 +65,9 @@ GooCanvas python bindings development fi %{_datadir}/gtk-doc/html/%{name} %changelog +* Mon Jul 20 2009 Bernard Johnson - 0.14.0-2 +- add patch to fix upstream API breakage (bz #511658) + * Thu Jun 25 2009 Denis Leroy - 0.14.0-1 - Update to upstream 0.14.0, as part of general goocanvas update From mhlavink at fedoraproject.org Mon Jul 20 13:44:41 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Mon, 20 Jul 2009 13:44:41 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel ecryptfs-utils.spec,1.48,1.49 Message-ID: <20090720134441.9631611C00D5@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3156 Modified Files: ecryptfs-utils.spec Log Message: add libtool to buildrequires Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- ecryptfs-utils.spec 20 Jul 2009 13:37:40 -0000 1.48 +++ ecryptfs-utils.spec 20 Jul 2009 13:44:41 -0000 1.49 @@ -24,7 +24,7 @@ Patch6: ecryptfs-utils-75-nocryptdisks.p BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake +BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake libtool %description eCryptfs is a stacked cryptographic filesystem that ships in Linux From nphilipp at fedoraproject.org Mon Jul 20 13:55:39 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Mon, 20 Jul 2009 13:55:39 +0000 (UTC) Subject: rpms/xsane/devel xsane-0.996-sane-backends-1.0.20.patch,NONE,1.1 Message-ID: <20090720135539.13B6511C00D5@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7042 Added Files: xsane-0.996-sane-backends-1.0.20.patch Log Message: don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) xsane-0.996-sane-backends-1.0.20.patch: xsane-back-gtk.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) --- NEW FILE xsane-0.996-sane-backends-1.0.20.patch --- diff -up xsane-0.996/src/xsane-back-gtk.c.sane-backends-1.0.20 xsane-0.996/src/xsane-back-gtk.c --- xsane-0.996/src/xsane-back-gtk.c.sane-backends-1.0.20 2007-08-13 09:49:34.000000000 +0200 +++ xsane-0.996/src/xsane-back-gtk.c 2009-07-20 15:22:34.268802179 +0200 @@ -2612,10 +2612,7 @@ void xsane_back_gtk_set_sensitivity(int continue; } - if (!(opt->cap & SANE_CAP_ALWAYS_SETTABLE)) - { - gtk_widget_set_sensitive(xsane.element[i].widget, sensitive); - } + gtk_widget_set_sensitive(xsane.element[i].widget, sensitive); } if (xsane.xsanemode_widget) From notting at fedoraproject.org Mon Jul 20 14:06:51 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Mon, 20 Jul 2009 14:06:51 +0000 (UTC) Subject: rpms/rpm/devel rpm.spec,1.354,1.355 Message-ID: <20090720140651.0B1B711C00D5@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/rpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9363 Modified Files: rpm.spec Log Message: enable XZ support. Switch the %%defines around so they reflect the new default. Index: rpm.spec =================================================================== RCS file: /cvs/extras/rpms/rpm/devel/rpm.spec,v retrieving revision 1.354 retrieving revision 1.355 diff -u -p -r1.354 -r1.355 --- rpm.spec 18 Jun 2009 10:28:32 -0000 1.354 +++ rpm.spec 20 Jul 2009 14:06:20 -0000 1.355 @@ -1,5 +1,5 @@ -# rawhide doesn't have new enough lzma yet -%bcond_with lzma +# build against xz? +%bcond_without xz # sqlite backend is pretty useless %bcond_with sqlite # just for giggles, option to build with internal Berkeley DB @@ -21,7 +21,7 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: 8%{?dist} +Release: 9%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ Source0: http://rpm.org/releases/testing/%{name}-%{srcver}.tar.bz2 @@ -91,8 +91,8 @@ BuildRequires: python-devel >= 2.2 BuildRequires: lua-devel >= 5.1 BuildRequires: libcap-devel BuildRequires: libacl-devel -%if %{with lzma} -BuildRequires: lzma-devel >= 4.42 +%if ! %{without xz} +BuildRequires: xz-devel >= 4.999.8 %endif %if %{with sqlite} BuildRequires: sqlite-devel @@ -129,8 +129,8 @@ Requires: nss-devel Requires: libselinux-devel Requires: elfutils-libelf-devel Requires: popt-devel -%if %{with lzma} -Requires: lzma-devel >= 4.42 +%if ! %{without xz} +Requires: xz-devel >= 4.999.8 %endif %if %{with sqlite} Requires: sqlite-devel @@ -153,7 +153,7 @@ Group: Development/Tools Requires: rpm = %{version}-%{release} Requires: elfutils >= 0.128 binutils Requires: findutils sed grep gawk diffutils file patch >= 2.5 -Requires: unzip gzip bzip2 cpio lzma +Requires: unzip gzip bzip2 cpio lzma xz Requires: pkgconfig %description build @@ -421,6 +421,9 @@ exit 0 %doc doc/librpm/html/* %changelog +* Mon Jul 20 2009 Bill Nottingham - 4.7.0-9 +- enable XZ support + * Thu Jun 18 2009 Panu Matilainen - 4.7.0-8 - updated OSGi dependency extractor (#506471) - fix segfault in symlink fingerprinting (#505777) From ajax at fedoraproject.org Mon Jul 20 14:08:09 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 14:08:09 +0000 (UTC) Subject: rpms/libXrandr/devel libXrandr.spec,1.31,1.32 Message-ID: <20090720140809.2FF6511C00D5@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9630 Modified Files: libXrandr.spec Log Message: fix BR Index: libXrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/libXrandr.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libXrandr.spec 16 Jul 2009 20:30:16 -0000 1.31 +++ libXrandr.spec 20 Jul 2009 14:07:38 -0000 1.32 @@ -12,6 +12,7 @@ Source0: http://www.x.org/pub/individual BuildRequires: xorg-x11-proto-devel BuildRequires: pkgconfig(randrproto) >= 1.3.0 BuildRequires: pkgconfig(xrender) +BuildRequires: pkgconfig(xext) %description X.Org X11 libXrandr runtime library From nhorman at fedoraproject.org Mon Jul 20 14:31:42 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 20 Jul 2009 14:31:42 +0000 (UTC) Subject: rpms/coda/devel coda-configure.patch,NONE,1.1 coda.spec,1.12,1.13 Message-ID: <20090720143142.4BEE811C00D5@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15447 Modified Files: coda.spec Added Files: coda-configure.patch Log Message: Resolves: bz 511305 coda-configure.patch: configs/coda_macros.m4 | 22 configure | 7393 ++++++++++++++++++++++++++----------------------- 2 files changed, 4022 insertions(+), 3393 deletions(-) --- NEW FILE coda-configure.patch --- diff -up coda-6.9.4/configs/coda_macros.m4.orig coda-6.9.4/configs/coda_macros.m4 --- coda-6.9.4/configs/coda_macros.m4.orig 2008-10-06 12:52:05.000000000 -0400 +++ coda-6.9.4/configs/coda_macros.m4 2009-07-20 10:22:54.000000000 -0400 @@ -239,21 +239,23 @@ AC_DEFUN([CODA_FIND_LIB], [AC_CACHE_CHECK(location of lib$1, coda_cv_path_$1, [saved_CFLAGS="${CFLAGS}" ; saved_LDFLAGS="${LDFLAGS}" ; saved_LIBS="${LIBS}" coda_cv_path_$1=none ; LIBS="-l$1 $4" - for path in default /usr /usr/local /usr/pkg /usr/X11R6 /usr/X11 /usr/openwin ${prefix} ; do - if test ${path} != default ; then - CFLAGS="${CFLAGS} -I${path}/include" - LDFLAGS="${LDFLAGS} -L${path}/lib" - fi - AC_TRY_LINK([$2], [$3], [coda_cv_path_$1=${path} ; break]) - CFLAGS="${saved_CFLAGS}" ; LDFLAGS="${saved_LDFLAGS}" + for pfx in 64 /; do + for path in default /usr /usr/local /usr/pkg /usr/X11R6 /usr/X11 /usr/openwin ${prefix} ; do + if test ${path} != default ; then + CFLAGS="${CFLAGS} -I${path}/include/$5" + LDFLAGS="${LDFLAGS} -L${path}/lib$pfx/$5" + fi + AC_TRY_LINK([$2], [$3], [coda_cv_path_$1=${path} ; break]) + CFLAGS="${saved_CFLAGS}" ; LDFLAGS="${saved_LDFLAGS}" + done done LIBS="${saved_LIBS}" ]) case ${coda_cv_path_$1} in none) ;; default) ;; - *) CPPFLAGS="-I${coda_cv_path_$1}/include ${CPPFLAGS}" - LDFLAGS="${LDFLAGS} -L${coda_cv_path_$1}/lib" + *) CPPFLAGS="-I${coda_cv_path_$1}/include/$5 ${CPPFLAGS}" + LDFLAGS="${LDFLAGS} -L${coda_cv_path_$1}/lib$pfx/$5" ;; esac]) @@ -268,7 +270,7 @@ dnl also test for new functions introduc dnl AC_SUBST(LIBREADLINE) AC_DEFUN([CODA_CHECK_READLINE], - [CODA_FIND_LIB(readline, [], rl_initialize(), $LIBTERMCAP) + [CODA_FIND_LIB(readline, [], rl_initialize(), $LIBTERMCAP, readline5) CODA_REQUIRE_LIB(readline) AC_CHECK_LIB(readline, rl_completion_matches, [AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1, [Define if you have readline 4.2 or later])], [], $LIBTERMCAP) diff -up coda-6.9.4/configure.orig coda-6.9.4/configure --- coda-6.9.4/configure.orig 2008-12-19 17:04:04.000000000 -0500 +++ coda-6.9.4/configure 2009-07-20 10:23:09.000000000 -0400 @@ -1,11 +1,11 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for Coda 6.9.4. +# Generated by GNU Autoconf 2.63 for Coda 6.9.4. # # Report bugs to . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## @@ -17,7 +17,7 @@ DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST @@ -39,17 +39,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTE as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } fi # Support unset when possible. @@ -65,8 +93,6 @@ fi # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) -as_nl=' -' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. @@ -89,7 +115,7 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi @@ -102,17 +128,10 @@ PS2='> ' PS4='+ ' # NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && @@ -134,7 +153,7 @@ as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | +$as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q @@ -160,7 +179,7 @@ else as_have_required=no fi - if test $as_have_required = yes && (eval ": + if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } @@ -242,7 +261,7 @@ IFS=$as_save_IFS if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST @@ -263,7 +282,7 @@ _ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which [...14955 lines suppressed...] ;; - :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 -echo "$as_me: executing $ac_file commands" >&6;} + :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac @@ -28701,7 +29312,7 @@ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || -echo X"$mf" | +$as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -28745,7 +29356,7 @@ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$file" | +$as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -28771,7 +29382,7 @@ echo X"$file" | as_dirs= while :; do case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" @@ -28780,7 +29391,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | +$as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -28801,8 +29412,8 @@ echo X"$as_dir" | test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} + } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" @@ -28832,6 +29443,11 @@ _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save +test $ac_write_fail = 0 || + { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. @@ -28859,7 +29475,8 @@ fi # if test "$no_recursion" != yes; then - # Remove --cache-file and --srcdir arguments so they do not pile up. + # Remove --cache-file, --srcdir, and --disable-option-checking arguments + # so they do not pile up. ac_sub_configure_args= ac_prev= eval "set x $ac_configure_args" @@ -28888,9 +29505,11 @@ if test "$no_recursion" != yes; then ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) ;; + --disable-option-checking) + ;; *) case $ac_arg in - *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac ac_sub_configure_args="$ac_sub_configure_args '$ac_arg'" ;; esac @@ -28900,7 +29519,7 @@ if test "$no_recursion" != yes; then # in subdir configurations. ac_arg="--prefix=$prefix" case $ac_arg in - *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" @@ -28909,6 +29528,10 @@ if test "$no_recursion" != yes; then ac_sub_configure_args="--silent $ac_sub_configure_args" fi + # Always prepend --disable-option-checking to silence warnings, since + # different subdirs can have different --enable and --with options. + ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" + ac_popdir=`pwd` for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue @@ -28917,8 +29540,8 @@ if test "$no_recursion" != yes; then test -d "$srcdir/$ac_dir" || continue ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" - echo "$as_me:$LINENO: $ac_msg" >&5 - echo "$ac_msg" >&6 + $as_echo "$as_me:$LINENO: $ac_msg" >&5 + $as_echo "$ac_msg" >&6 { as_dir="$ac_dir" case $as_dir in #( -*) as_dir=./$as_dir;; @@ -28927,7 +29550,7 @@ if test "$no_recursion" != yes; then as_dirs= while :; do case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" @@ -28936,7 +29559,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | +$as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -28957,17 +29580,17 @@ echo X"$as_dir" | test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} + } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; @@ -29006,8 +29629,8 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_ # This should be Cygnus configure. ac_sub_configure=$ac_aux_dir/configure else - { echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5 -echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} + { $as_echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5 +$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} ac_sub_configure= fi @@ -29020,18 +29643,22 @@ echo "$as_me: WARNING: no configuration ac_sub_cache_file=$ac_top_build_prefix$cache_file ;; esac - { echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 -echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} + { $as_echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 +$as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} # The eval makes quoting arguments work. eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || - { { echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&5 -echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;} + { { $as_echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&5 +$as_echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;} { (exit 1); exit 1; }; } fi cd "$ac_popdir" done fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- coda.spec 17 Jul 2009 15:20:38 -0000 1.12 +++ coda.spec 20 Jul 2009 14:31:42 -0000 1.13 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -14,6 +14,7 @@ Patch0: coda-6.9.3-client-fhs.pa Patch1: coda-6.9.4-rc2-no-default-krb.patch Patch2: coda-6.9.4-rc2-kernel-alias.patch Patch3: coda-6.9.4-gcc44.patch +Patch4: coda-configure.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lwp-devel >= 2.5 BuildRequires: rpc2-devel >= 2.8 @@ -23,6 +24,7 @@ BuildRequires: fltk-devel fltk-fluid fl BuildRequires: e2fsprogs-devel Requires: krb5-libs compat-readline5 + # For /etc/rc.d/init.d so that configure can detect we have RH style init BuildRequires: chkconfig @@ -93,6 +95,8 @@ system client. # 04d3fefdf27127589617cf955b1d3da799ebde5d %patch3 -p1 +# Convert configure script to pick up compat-readline5 +%patch4 -p1 %build # note: remove the -I and -l here when upstream releases fix for krb5 building @@ -303,8 +307,11 @@ fi %changelog +* Mon Jul 20 2009 Neil Horman - 6.9.4-4 +- Further changes to support compat-readline5 (bz 511305) + * Fri Jul 17 2009 Neil Horman - 6.9.4-3 -- Change spec to require compat-readline5 (bz511305) +- Change spec to require compat-readline5 (bz 511305) * Tue Mar 31 2009 Neil Horman - 6.9.4-2 - Remove parser from coda-client, due to name conflict (bz 492953) From pkgdb at fedoraproject.org Mon Jul 20 14:36:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:36:11 +0000 Subject: [pkgdb] eclipse-egit had acl change status Message-ID: <20090720143611.680C110F8A5@bastion2.fedora.phx.redhat.com> rmyers has set the approveacls acl on eclipse-egit (Fedora devel) to Approved for akurtakov To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eclipse-egit From mclasen at fedoraproject.org Mon Jul 20 14:37:28 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 20 Jul 2009 14:37:28 +0000 (UTC) Subject: rpms/gnome-session/devel gnome-session.spec,1.241,1.242 Message-ID: <20090720143728.9FCC011C00D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16696 Modified Files: gnome-session.spec Log Message: require polkit-gnome Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.241 retrieving revision 1.242 diff -u -p -r1.241 -r1.242 --- gnome-session.spec 16 Jul 2009 00:12:51 -0000 1.241 +++ gnome-session.spec 20 Jul 2009 14:36:58 -0000 1.242 @@ -10,7 +10,7 @@ Summary: GNOME session manager Name: gnome-session Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-session/2.27/%{name}-%{version}.tar.bz2 Source2: gnome.desktop @@ -32,6 +32,9 @@ Requires: control-center # pull in dbus-x11, see bug 209924 Requires: dbus-x11 +# we need an authentication agent in the session +Requires: polkit-gnome + ## we conflict with gdm that contains the GNOME gdm xsession Conflicts: gdm < 1:2.6.0.8-5 @@ -171,6 +174,9 @@ fi %changelog +* Mon Jul 20 2009 Matthias Clasen - 2.27.4-2 +- Require polkit-gnome, we need an authentication agent in the session + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From scop at fedoraproject.org Mon Jul 20 14:39:30 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Mon, 20 Jul 2009 14:39:30 +0000 (UTC) Subject: rpms/optipng/devel .cvsignore, 1.5, 1.6 optipng.spec, 1.12, 1.13 sources, 1.5, 1.6 optipng-0.6.2.1.diff, 1.1, NONE Message-ID: <20090720143930.240A011C00D5@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/optipng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17233 Modified Files: .cvsignore optipng.spec sources Removed Files: optipng-0.6.2.1.diff Log Message: * Sun Jul 19 2009 Ville Skytt?? - 0.6.3-1 - Update to 0.6.3. - Use %global instead of %define. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/optipng/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 12 Nov 2008 12:26:09 -0000 1.5 +++ .cvsignore 20 Jul 2009 14:38:59 -0000 1.6 @@ -1 +1 @@ -optipng-0.6.2.tar.gz +optipng-0.6.3.tar.gz Index: optipng.spec =================================================================== RCS file: /cvs/pkgs/rpms/optipng/devel/optipng.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- optipng.spec 25 Feb 2009 17:19:23 -0000 1.12 +++ optipng.spec 20 Jul 2009 14:38:59 -0000 1.13 @@ -1,14 +1,14 @@ +%global makefile gcc.mak + Name: optipng -Version: 0.6.2.1 +Version: 0.6.3 Release: 1%{?dist} Summary: PNG optimizer and converter Group: Applications/Multimedia License: zlib URL: http://optipng.sourceforge.net/ -#Source0: http://downloads.sourceforge.net/optipng/%{name}-%{version}.tar.gz -Source0: http://downloads.sourceforge.net/optipng/%{name}-0.6.2.tar.gz -Patch0: http://downloads.sourceforge.net/optipng/optipng-0.6.2.1.diff +Source0: http://downloads.sourceforge.net/optipng/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel libpng-devel @@ -21,15 +21,12 @@ and corrections. %prep -%setup -q -n %{name}-0.6.2 +%setup -q -# Ensure system libs and headers are used; as of 0.6.1 pngxtern will use +# Ensure system libs and headers are used; as of 0.6.3 pngxtern will use # the bundled headers if present even with -with-system-*, causing failures. rm -rf lib/libpng lib/zlib -%define makefile gcc.mak - -%patch0 -p1 %build ./configure -with-system-zlib -with-system-libpng @@ -58,6 +55,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 19 2009 Ville Skytt?? - 0.6.3-1 +- Update to 0.6.3. +- Use %%global instead of %%define. + * Wed Feb 25 2009 Till Maas - 0.6.2.1-1 - Update to new release to fix array overflow - Red Hat Bugzilla #487364 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/optipng/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 12 Nov 2008 12:26:09 -0000 1.5 +++ sources 20 Jul 2009 14:38:59 -0000 1.6 @@ -1 +1 @@ -08b6195bb5895a7fe167fab16dcdf6d5 optipng-0.6.2.tar.gz +6cef405197a878acff4c6216cf38e871 optipng-0.6.3.tar.gz --- optipng-0.6.2.1.diff DELETED --- From mcpierce at fedoraproject.org Mon Jul 20 14:39:43 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Mon, 20 Jul 2009 14:39:43 +0000 (UTC) Subject: rpms/rubygem-activeldap/devel .cvsignore, 1.6, 1.7 rubygem-activeldap.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090720143943.E620511C00D5@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-activeldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17294 Modified Files: .cvsignore rubygem-activeldap.spec sources Log Message: * Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 - Release 1.1.0 of ActiveLdap. - Dependency on rubygem-hoe changed to 2.3.2. - Dependency on rubygem-activerecord changed to 2.3.2. - Dependency on rubygem-locale added. - Dependency on rubygem-gettext added. - Dependency on rubygem-gettext_activerecord added. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 5 Jun 2009 20:06:13 -0000 1.6 +++ .cvsignore 20 Jul 2009 14:39:13 -0000 1.7 @@ -1 +1 @@ -activeldap-1.0.9.gem +activeldap-1.1.0.gem Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/devel/rubygem-activeldap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-activeldap.spec 5 Jun 2009 20:06:14 -0000 1.8 +++ rubygem-activeldap.spec 20 Jul 2009 14:39:13 -0000 1.9 @@ -8,7 +8,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} -Version: 1.0.9 +Version: 1.1.0 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ @@ -17,8 +17,11 @@ Source0: http://gems.rubyforge.or BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems -Requires: rubygem(activerecord) -Requires: rubygem(hoe) >= 1.8.3 +Requires: rubygem(activerecord) = 2.3.2 +Requires: rubygem(locale) = 2.0.4 +Requires: rubygem(gettext) = 2.0.4 +Requires: rubygem(gettext_activerecord) = 2.0.4 +Requires: rubygem(hoe) >= 2.3.2 Requires: ruby-ldap BuildRequires: rubygems BuildRequires: gettext @@ -72,7 +75,7 @@ rm -rf %{buildroot} %files %defattr(-, root, root, -) -%{gemdir}/gems/%{gemname}-%{version}/ +%{geminstdir} %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/examples/al-admin/public/robots.txt %{gemdir}/cache/%{gemname}-%{version}.gem @@ -81,6 +84,14 @@ rm -rf %{buildroot} %lang(ja) %{geminstdir}/data/locale/ja/LC_MESSAGES/active-ldap.mo %changelog +* Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 +- Release 1.1.0 of ActiveLdap. +- Dependency on rubygem-hoe changed to 2.3.2. +- Dependency on rubygem-activerecord changed to 2.3.2. +- Dependency on rubygem-locale added. +- Dependency on rubygem-gettext added. +- Dependency on rubygem-gettext_activerecord added. + * Fri Jun 5 2009 Darryl Pierce - 1.0.9-1 - Release 1.0.9 of ActiveLdap. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 5 Jun 2009 20:06:14 -0000 1.6 +++ sources 20 Jul 2009 14:39:13 -0000 1.7 @@ -1 +1 @@ -77127f5b942b454b2cd3541b44749968 activeldap-1.0.9.gem +9fb26d56bc537b44a52f35cbe54e286d activeldap-1.1.0.gem From mathstuf at fedoraproject.org Mon Jul 20 14:39:58 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 14:39:58 +0000 (UTC) Subject: rpms/git-cola/F-11 git-cola.spec,1.6,1.7 sources,1.5,1.6 Message-ID: <20090720143958.D323111C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/git-cola/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17361 Modified Files: git-cola.spec sources Log Message: Update to 1.3.8 Index: git-cola.spec =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/F-11/git-cola.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- git-cola.spec 23 Mar 2009 05:07:23 -0000 1.6 +++ git-cola.spec 20 Jul 2009 14:39:28 -0000 1.7 @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: git-cola -Version: 1.3.6 +Version: 1.3.8 Release: 1%{?dist} Summary: A highly caffeinated git gui @@ -18,10 +18,11 @@ BuildRequires: desktop-file-utils BuildRequires: python-devel BuildRequires: PyQt4-devel BuildRequires: asciidoc -BuildRequires: git-core +BuildRequires: git BuildRequires: gettext BuildRequires: xmlto -Requires: git-core +BuildRequires: python-sphinx +Requires: git Requires: PyQt4 Requires: python-inotify @@ -64,18 +65,25 @@ update-desktop-database &> /dev/null || %defattr(-,root,root,-) %doc COPYRIGHT LICENSE README %{_bindir}/git-cola +%if 0%{?fedora} < 12 %{_bindir}/git-difftool -%{_bindir}/git-difftool-helper +%{_bindir}/git-difftool--helper +%endif %{_datadir}/applications/cola.desktop -%{_datadir}/cola -%{_docdir}/cola +%{_datadir}/git-cola +%{_docdir}/git-cola %{_mandir}/man1/git-cola.1.gz -%{_mandir}/man1/git-difftool.1.gz # For noarch packages: sitelib %{python_sitelib}/* %changelog +* Sun May 24 2009 Ben Boeckel 1.3.8-1 +- Update to 1.3.8 +- Fix changelog usage of %% +- BR and R on git instead of git-core +- Add conditionals on git-difftool + * Mon Mar 23 2009 Ben Boeckel 1.3.6-1 - Update to 1.3.6 @@ -83,7 +91,7 @@ update-desktop-database &> /dev/null || - Update to 1.3.5.42 * Sat Feb 28 2009 Ben Boeckel 1.3.5.28-1 -- Added %post and %postun +- Added %%post and %%postun - Use desktop-file-install * Tue Feb 24 2009 Fedora Release Engineering - 1.3.5-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Mar 2009 05:07:23 -0000 1.5 +++ sources 20 Jul 2009 14:39:28 -0000 1.6 @@ -1,2 +1 @@ -befeb8e4bc1e97b2bd02755047579e63 cola-1.3.5.42-src.tar.gz -148fef205b2b52fbde1fafc64b540183 cola-1.3.6-src.tar.gz +a3f4617049d2c32c31e2918f0264dbb8 cola-1.3.8-src.tar.gz From mclasen at fedoraproject.org Mon Jul 20 14:45:33 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 20 Jul 2009 14:45:33 +0000 (UTC) Subject: rpms/libgweather/devel 01_gettext_not_xml.patch, NONE, 1.1 libgweather.spec, 1.41, 1.42 Message-ID: <20090720144533.31EDA11C00D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgweather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18321 Modified Files: libgweather.spec Added Files: 01_gettext_not_xml.patch Log Message: keep locations in gettext catalogs 01_gettext_not_xml.patch: configure.in | 21 --- data/Makefile.am | 42 ------- libgweather/gweather-location.c | 17 ++- libgweather/gweather-timezone.c | 18 ++- po-locations/LINGUAS | 78 ++++++++++++++ po-locations/Makefile.in.in | 217 ++++++++++++++++++++++++++++++++++++++++ po-locations/POTFILES.in | 4 7 files changed, 337 insertions(+), 60 deletions(-) --- NEW FILE 01_gettext_not_xml.patch --- only in patch2: unchanged: diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/configure.in libgweather-2.26.1.new/configure.in --- libgweather-2.26.1/configure.in 2009-04-14 00:07:38.000000000 +0200 +++ libgweather-2.26.1.new/configure.in 2009-04-23 18:18:50.000000000 +0200 @@ -38,6 +38,10 @@ AM_MAINTAINER_MODE GNOME_MAINTAINER_MODE_DEFINES +dnl IT_PROG_INTLTOOL does this for us in the case of the po/ subdir, but we're on our own for po-locations +AC_OUTPUT_COMMANDS([sed -e "/POTFILES =/r po/POTFILES" po-locations/Makefile.in > po-locations/Makefile]) +IT_PO_SUBDIR([po-locations]) + IT_PROG_INTLTOOL([0.40.3]) PKG_PROG_PKG_CONFIG([0.19]) @@ -48,13 +52,6 @@ AM_PROG_LIBTOOL AC_PATH_PROG(GCONFTOOL, gconftool-2) -AC_ARG_ENABLE(all-translations-in-one-xml, - [AC_HELP_STRING([--enable-all-translations-in-one-xml], - [Put all translations in a big Locations.xml file (slow to parse)])], - [enable_big_xml=yes], - [enable_big_xml=no]) -AM_CONDITIONAL(USE_ONE_BIG_XML, test "x$enable_big_xml" = "xyes") - AC_ARG_ENABLE(locations-compression, [AC_HELP_STRING([--enable-locations-compression], [Compress Locations.xml files])], @@ -242,7 +239,7 @@ Makefile doc/Makefile po/Makefile.in -po-locations/Makefile +po-locations/Makefile.in libgweather/Makefile libgweather/gweather.pc libgweather/gweather-uninstalled.pc @@ -250,12 +247,6 @@ python/Makefile ]) -if test "x$enable_big_xml" = "xyes"; then - LOCATIONS_XML_TRANSLATIONS="one big file" -else - LOCATIONS_XML_TRANSLATIONS="one file per translation" -fi - dnl *************************************************************************** dnl *** Display Summary *** dnl *************************************************************************** @@ -265,6 +256,4 @@ Prefix: ${prefix} Source code location: ${srcdir} Compiler: ${CC} - Locations.xml translations: ${LOCATIONS_XML_TRANSLATIONS} - Locations.xml compression: ${enable_locations_compression} " >&2 diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/data/Makefile.am libgweather-2.26.1.new/data/Makefile.am --- libgweather-2.26.1/data/Makefile.am 2009-04-14 00:00:59.000000000 +0200 +++ libgweather-2.26.1.new/data/Makefile.am 2009-04-23 18:18:50.000000000 +0200 @@ -4,55 +4,23 @@ libgweatherlocationsdir = $(pkgdatadir) libgweatherlocations_in_files = Locations.xml.in -if USE_ONE_BIG_XML - -LOCATIONS_STAMP = - -libgweatherlocations_DATA = $(libgweatherlocations_in_files:.xml.in=.xml$(COMPRESS_EXT)) - -%.xml$(COMPRESS_EXT): %.xml.in $(wildcard $(top_srcdir)/po-locations/*.po) - LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po-locations/.intltool-merge-cache $(top_srcdir)/po-locations $< `echo $@ | sed "s/.xml$(COMPRESS_EXT)/.xml/"` - if test "x$(COMPRESS_EXT)" = "x.gz"; then \ - gzip --force `echo $@ | sed "s/.xml$(COMPRESS_EXT)/.xml/"`; \ - fi - -else # USE_ONE_BIG_XML - LOCATIONS_STAMP = stamp-Locations.xml -PO_LOCATIONS = $(shell if test -n "$(LINGUAS)"; then for lang in $(LINGUAS); do if test -f "$(top_srcdir)/po-locations/$$lang.po"; then echo "$(top_srcdir)/po-locations/$$lang.po "; fi; done; else for pofile in $(top_srcdir)/po-locations/*.po; do echo $$pofile; done; fi) - # Helper variable -libgweatherlocations_data = $(libgweatherlocations_in_files:.xml.in=.xml) - -libgweatherlocations_DATA = $(shell echo $(PO_LOCATIONS) | sed "s|$(top_srcdir)/po-locations/|Locations.|g;s|\.po|.xml$(COMPRESS_EXT)|g") $(libgweatherlocations_data)$(COMPRESS_EXT) +libgweatherlocations_DATA = $(libgweatherlocations_in_files:.xml.in=.xml) # We need this step so that we merge all the make Locations.xy.xml destinations # into one unique destination. This makes -j2 work. (Else, we end up with # multiple and conflicting calls to intltool-merge) $(libgweatherlocations_DATA): $(LOCATIONS_STAMP) -$(LOCATIONS_STAMP): $(libgweatherlocations_in_files) $(PO_LOCATIONS) Makefile - LC_ALL=C $(INTLTOOL_MERGE) --multiple-output --xml-style --utf8 --cache=$(top_builddir)/po-locations/.intltool-merge-cache $(top_srcdir)/po-locations $< $(libgweatherlocations_data) - for pofile in $(PO_LOCATIONS); do \ - locale=`echo $$pofile | sed "s;$(top_srcdir)/po-locations/\(.*\)\.po;\1;"`; \ - xmllint --noblanks -o Locations.$$locale.xml $$locale/$(libgweatherlocations_data); \ - rm -f $$locale/$(libgweatherlocations_data); \ - test -d $$locale && rmdir $$locale; \ - if test "x$(COMPRESS_EXT)" = "x.gz"; then \ - gzip --force Locations.$$locale.xml; \ - fi; \ - done - xmllint --noblanks -o Locations.xml C/$(libgweatherlocations_data) - rm -f C/$(libgweatherlocations_data) +$(LOCATIONS_STAMP): $(libgweatherlocations_in_files) Makefile + LC_ALL=C $(INTLTOOL_MERGE) --multiple-output --xml-style --utf8 --cache=$(top_builddir)/po-locations/.intltool-merge-cache /dev/null $< $(libgweatherlocations_DATA) + xmllint --noblanks -o Locations.xml C/$(libgweatherlocations_DATA) + rm -f C/$(libgweatherlocations_DATA) test -d C && rmdir C - if test "x$(COMPRESS_EXT)" = "x.gz"; then \ - gzip --force Locations.xml; \ - fi touch $@ -endif # USE_ONE_BIG_XML - check: xmllint --valid --noout $(top_srcdir)/data/Locations.xml.in $(srcdir)/check-timezones.sh $(srcdir)/Locations.xml.in diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/libgweather/gweather-location.c libgweather-2.26.1.new/libgweather/gweather-location.c --- libgweather-2.26.1/libgweather/gweather-location.c 2009-04-14 00:00:47.000000000 +0200 +++ libgweather-2.26.1.new/libgweather/gweather-location.c 2009-04-23 18:19:23.000000000 +0200 @@ -22,11 +22,14 @@ #include #endif +#include "config.h" + #include #include #include #include #include +#include #define GWEATHER_I_KNOW_THIS_IS_UNSTABLE #include "gweather-location.h" @@ -184,10 +187,20 @@ tagname = (const char *) xmlTextReaderConstName (parser->xml); if (!strcmp (tagname, "name") && !loc->name) { - value = gweather_parser_get_localized_value (parser); + char *context = NULL; + context = xmlTextReaderGetAttribute(parser->xml,"msgctxt"); + + value = gweather_parser_get_value (parser); if (!value) goto error_out; - loc->name = g_strdup (value); + + if (context != NULL) { + loc->name = g_strdup (g_dpgettext2(GETTEXT_PACKAGE "-locations", context, value)); + xmlFree (context); + } + else + loc->name = g_strdup (dgettext(GETTEXT_PACKAGE "-locations",value)); + xmlFree (value); normalized = g_utf8_normalize (loc->name, -1, G_NORMALIZE_ALL); loc->sort_name = g_utf8_casefold (normalized, -1); diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/libgweather/gweather-timezone.c libgweather-2.26.1.new/libgweather/gweather-timezone.c --- libgweather-2.26.1/libgweather/gweather-timezone.c 2009-04-14 00:00:47.000000000 +0200 +++ libgweather-2.26.1.new/libgweather/gweather-timezone.c 2009-04-23 18:19:37.000000000 +0200 @@ -23,6 +23,7 @@ #endif #include +#include #define GWEATHER_I_KNOW_THIS_IS_UNSTABLE #include "gweather-timezone.h" @@ -155,7 +156,7 @@ parse_timezone (GWeatherParser *parser) { GWeatherTimezone *zone = NULL; - char *id = NULL, *name = NULL; + char *id = NULL, *name = NULL, *context = NULL; int offset, dst_offset; gboolean has_dst = FALSE; @@ -178,27 +179,34 @@ continue; } - if (!strcmp ((const char *) xmlTextReaderConstName (parser->xml), "name")) - name = gweather_parser_get_localized_value (parser); + if (!strcmp ((const char *) xmlTextReaderConstName (parser->xml), "name")) { + context = xmlTextReaderGetAttribute(parser->xml,"msgctxt"); + name = gweather_parser_get_value (parser); + } else { if (xmlTextReaderNext (parser->xml) != 1) break; } } } - + if (parse_tzdata (id, parser->year_start, parser->year_end, &offset, &has_dst, &dst_offset)) { zone = g_slice_new0 (GWeatherTimezone); zone->ref_count = 1; zone->id = g_strdup (id); - zone->name = g_strdup (name); + if (context != NULL) + zone->name = g_strdup (g_dpgettext2(GETTEXT_PACKAGE "-locations", context, name)); + else + zone->name = g_strdup (dgettext(GETTEXT_PACKAGE "-locations",name)); zone->offset = offset; zone->has_dst = has_dst; zone->dst_offset = dst_offset; } xmlFree (id); + if (context) + xmlFree (context); if (name) xmlFree (name); diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/po-locations/LINGUAS libgweather-2.26.1.new/po-locations/LINGUAS --- libgweather-2.26.1/po-locations/LINGUAS 1970-01-01 01:00:00.000000000 +0100 +++ libgweather-2.26.1.new/po-locations/LINGUAS 2009-04-23 18:18:50.000000000 +0200 @@ -0,0 +1,78 @@ +ang +ar +as +az +be +be at latin +bg +bn_IN +bn +bs +ca +cs +cy +da +de +dz +el +en_CA +en_GB +es +et +eu +fa +fi +fr +ga +gl +gu +he +hi +hr +hu +id +it +ja +ka +kn +ko +ku +ky +lt +lv +mai +mg +mk +ml +mn +mr +ms +nb +ne +nl +nn +oc +or +pa +pl +pt_BR +pt +ro +ru +rw +si +sk +sl +sq +sr at latin +sr +sv +ta +te +th +tr +uk +vi +zh_CN +zh_HK +zh_TW diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/po-locations/Makefile.in.in libgweather-2.26.1.new/po-locations/Makefile.in.in --- libgweather-2.26.1/po-locations/Makefile.in.in 1970-01-01 01:00:00.000000000 +0100 +++ libgweather-2.26.1.new/po-locations/Makefile.in.in 2009-04-23 18:18:50.000000000 +0200 @@ -0,0 +1,217 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper +# Copyright (C) 2004-2008 Rodney Dawes +# +# This file may be copied and used freely without restrictions. It may +# be used in projects which are not available under a GNU Public License, +# but which still want to provide support for the GNU gettext functionality. +# +# - Modified by Owen Taylor to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize +# +# - Modified by Rodney Dawes for use with intltool +# +# We have the following line for use by intltoolize: +# INTLTOOL_MAKEFILE + +GETTEXT_PACKAGE = @GETTEXT_PACKAGE at -locations +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = /bin/sh + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +top_builddir = @top_builddir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +datarootdir = @datarootdir@ +libdir = @libdir@ +DATADIRNAME = @DATADIRNAME@ +itlocaledir = $(prefix)/$(DATADIRNAME)/locale +subdir = po-locations +install_sh = @install_sh@ +# Automake >= 1.8 provides @mkdir_p at . +# Until it can be supposed, use the safe fallback: +mkdir_p = $(install_sh) -d + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot + +ALL_LINGUAS = @ALL_LINGUAS@ + +PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi) + +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi) + +USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) + +POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) + +DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES) +EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS + +POTFILES = \ +# This comment gets stripped out + +CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) + +.SUFFIXES: +.SUFFIXES: .po .pox .gmo .mo .msg .cat + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(MSGFMT) -o $@ $< + +.po.gmo: + file=`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && gencat $@ $*.msg + + +all: all- at USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(GENPOT) + +install: install-data +install-data: install-data- at USE_NLS@ +install-data-no: all +install-data-yes: all + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $$dir; \ + if test -r $$lang.gmo; then \ + $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $(srcdir)/$$lang.gmo as" \ + "$$dir/$(GETTEXT_PACKAGE).mo"; \ + fi; \ + if test -r $$lang.gmo.m; then \ + $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + if test -r $(srcdir)/$$lang.gmo.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ + $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $(srcdir)/$$lang.gmo.m as" \ + "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + true; \ + fi; \ + fi; \ + done + +# Empty stubs to satisfy archaic automake needs +dvi info tags TAGS ID: + +# Define this as empty until I found a useful application. +install-exec installcheck: + +uninstall: + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ + done + +check: all $(GETTEXT_PACKAGE).pot + rm -f missing notexist + srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m + if [ -r missing -o -r notexist ]; then \ + exit 1; \ + fi + +mostlyclean: + rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp + rm -f .intltool-merge-cache + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES stamp-it + rm -f *.mo *.msg *.cat *.cat.m *.gmo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f Makefile.in.in + +distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: $(DISTFILES) + dists="$(DISTFILES)"; \ + extra_dists="$(EXTRA_DISTFILES)"; \ + for file in $$extra_dists; do \ + test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ + done; \ + for file in $$dists; do \ + test -f $$file || file="$(srcdir)/$$file"; \ + ln $$file $(distdir) 2> /dev/null \ + || cp -p $$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + echo "$$lang:"; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.gmo failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +Makefile POTFILES: stamp-it + @if test ! -f $@; then \ + rm -f stamp-it; \ + $(MAKE) stamp-it; \ + fi + +stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nur -x '*.orig' -x '*~' libgweather-2.26.1/po-locations/POTFILES.in libgweather-2.26.1.new/po-locations/POTFILES.in --- libgweather-2.26.1/po-locations/POTFILES.in 1970-01-01 01:00:00.000000000 +0100 +++ libgweather-2.26.1.new/po-locations/POTFILES.in 2009-04-23 18:18:50.000000000 +0200 @@ -0,0 +1,4 @@ +# This list should contain *only* data/Locations.xml.in. +# Everything else should be in POTFILES.skip. +[encoding:UTF-8] +data/Locations.xml.in Index: libgweather.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/devel/libgweather.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- libgweather.spec 11 Jun 2009 02:40:24 -0000 1.41 +++ libgweather.spec 20 Jul 2009 14:45:32 -0000 1.42 @@ -1,6 +1,6 @@ Name: libgweather Version: 2.26.1 -Release: 3%{?dist} +Release: 5%{?dist} Summary: A library for weather information Group: System Environment/Libraries @@ -16,6 +16,11 @@ BuildRequires: libsoup-devel >= 2.4 BuildRequires: libxml2-devel >= 2.6 BuildRequires: gettext BuildRequires: intltool +BuildRequires: gtk-doc +BuildRequires: autoconf automake libtool + +# Ubuntu forgot to upstream this patch... +Patch0: 01_gettext_not_xml.patch %description libgweather is a library to access weather information from online @@ -39,35 +44,22 @@ developing applications that use %{name} %prep %setup -q +%patch0 -p1 -b .gettext + +gtkdocize +autoreconf -i -f %build %configure --disable-static --disable-gtk-doc make %{?_smp_mflags} -# strip unneeded translations from .mo files -# ideally intltool (ha!) would do that for us -# http://bugzilla.gnome.org/show_bug.cgi?id=474987 -cd po -grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" POTFILES.in > POTFILES.keep -mv POTFILES.keep POTFILES.in -intltool-update --pot -sed -ie 's|POT-Creation-Date.*|POT-Creation-Date: 2008-10-01 00:00-0400\\n"|g' %{name}.pot -for p in *.po; do - msgmerge $p %{name}.pot > $p.out - msgfmt -o `basename $p .po`.gmo $p.out -done - %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -%find_lang %{name} - -# do the %%lang tag game for the localized xml files, too -find $RPM_BUILD_ROOT -name Locations.*.xml | sed 's:'"$RPM_BUILD_ROOT"':: -s:\(.*\)/Locations\.\([^.]*\)\.xml:%lang(\2) \1/Locations.\2.xml:' >> %{name}.lang +%find_lang %{name} --all-name %clean rm -rf $RPM_BUILD_ROOT @@ -110,6 +102,9 @@ fi %changelog +* Mon Jul 20 2009 Matthias Clasen 2.26.1-5 +- Keep locations in gettext catalogs + * Wed Jun 10 2009 Matthias Clasen 2.26.1-3 - Fix multilib parallel-installability (#477672) - Remove some old optimizations that are now no-ops From pkgdb at fedoraproject.org Mon Jul 20 14:45:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:45:42 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchbugzilla Message-ID: <20090720144542.C560610F8A8@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchbugzilla acl on Falcon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From pkgdb at fedoraproject.org Mon Jul 20 14:45:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:45:44 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchcommits Message-ID: <20090720144544.7FED710F89E@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchcommits acl on Falcon (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From pkgdb at fedoraproject.org Mon Jul 20 14:45:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:45:50 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchbugzilla Message-ID: <20090720144550.B9DE010F8AB@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchbugzilla acl on Falcon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From pkgdb at fedoraproject.org Mon Jul 20 14:45:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:45:56 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchcommits Message-ID: <20090720144556.C2F2A10F892@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchcommits acl on Falcon (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From pkgdb at fedoraproject.org Mon Jul 20 14:46:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:46:02 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchbugzilla Message-ID: <20090720144602.A6E2210F8AD@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchbugzilla acl on Falcon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From pkgdb at fedoraproject.org Mon Jul 20 14:46:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 14:46:03 +0000 Subject: [pkgdb] Falcon: mathstuf has requested watchcommits Message-ID: <20090720144603.4E96B10F8B1@bastion2.fedora.phx.redhat.com> mathstuf has requested the watchcommits acl on Falcon (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/Falcon From mathstuf at fedoraproject.org Mon Jul 20 14:50:59 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 14:50:59 +0000 (UTC) Subject: rpms/git-cola/F-11 git-cola-shebang.patch,1.2,NONE Message-ID: <20090720145059.1652A11C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/git-cola/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22555 Removed Files: git-cola-shebang.patch Log Message: Delete unneeded patch --- git-cola-shebang.patch DELETED --- From mcpierce at fedoraproject.org Mon Jul 20 14:51:32 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Mon, 20 Jul 2009 14:51:32 +0000 (UTC) Subject: rpms/rubygem-activeldap/F-10 .cvsignore, 1.6, 1.7 rubygem-activeldap.spec, 1.7, 1.8 sources, 1.6, 1.7 Message-ID: <20090720145132.7755A11C00D5@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-activeldap/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22509 Modified Files: .cvsignore rubygem-activeldap.spec sources Log Message: * Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 - Release 1.1.0 of ActiveLdap. - Dependency on rubygem-hoe changed to 2.3.2. - Dependency on rubygem-activerecord changed to 2.3.2. - Dependency on rubygem-locale added. - Dependency on rubygem-gettext added. - Dependency on rubygem-gettext_activerecord added. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 5 Jun 2009 20:38:16 -0000 1.6 +++ .cvsignore 20 Jul 2009 14:51:01 -0000 1.7 @@ -1 +1 @@ -activeldap-1.0.9.gem +activeldap-1.1.0.gem Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-10/rubygem-activeldap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rubygem-activeldap.spec 5 Jun 2009 20:38:16 -0000 1.7 +++ rubygem-activeldap.spec 20 Jul 2009 14:51:01 -0000 1.8 @@ -8,7 +8,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} -Version: 1.0.9 +Version: 1.1.0 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ @@ -17,8 +17,11 @@ Source0: http://gems.rubyforge.or BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems -Requires: rubygem(activerecord) -Requires: rubygem(hoe) >= 1.8.3 +Requires: rubygem(activerecord) = 2.3.2 +Requires: rubygem(locale) = 2.0.4 +Requires: rubygem(gettext) = 2.0.4 +Requires: rubygem(gettext_activerecord) = 2.0.4 +Requires: rubygem(hoe) >= 2.3.2 Requires: ruby-ldap BuildRequires: rubygems BuildRequires: gettext @@ -83,6 +86,14 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 +- Release 1.1.0 of ActiveLdap. +- Dependency on rubygem-hoe changed to 2.3.2. +- Dependency on rubygem-activerecord changed to 2.3.2. +- Dependency on rubygem-locale added. +- Dependency on rubygem-gettext added. +- Dependency on rubygem-gettext_activerecord added. + * Fri Jun 5 2009 Darryl Pierce ,dpierce at redhat.com> - 1.0.9-1 - Release 1.0.9 of ActiveLDAP. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 5 Jun 2009 20:38:16 -0000 1.6 +++ sources 20 Jul 2009 14:51:01 -0000 1.7 @@ -1 +1 @@ -77127f5b942b454b2cd3541b44749968 activeldap-1.0.9.gem +9fb26d56bc537b44a52f35cbe54e286d activeldap-1.1.0.gem From mathstuf at fedoraproject.org Mon Jul 20 14:51:52 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 14:51:52 +0000 (UTC) Subject: rpms/git-cola/F-10 git-cola.spec,1.6,1.7 sources,1.5,1.6 Message-ID: <20090720145152.3C5E111C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/git-cola/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22885 Modified Files: git-cola.spec sources Log Message: Update to 1.3.8 Index: git-cola.spec =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/F-10/git-cola.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- git-cola.spec 23 Mar 2009 05:13:55 -0000 1.6 +++ git-cola.spec 20 Jul 2009 14:51:51 -0000 1.7 @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: git-cola -Version: 1.3.6 +Version: 1.3.8 Release: 1%{?dist} Summary: A highly caffeinated git gui @@ -18,10 +18,11 @@ BuildRequires: desktop-file-utils BuildRequires: python-devel BuildRequires: PyQt4-devel BuildRequires: asciidoc -BuildRequires: git-core +BuildRequires: git BuildRequires: gettext BuildRequires: xmlto -Requires: git-core +BuildRequires: python-sphinx +Requires: git Requires: PyQt4 Requires: python-inotify @@ -64,18 +65,25 @@ update-desktop-database &> /dev/null || %defattr(-,root,root,-) %doc COPYRIGHT LICENSE README %{_bindir}/git-cola +%if 0%{?fedora} < 12 %{_bindir}/git-difftool -%{_bindir}/git-difftool-helper +%{_bindir}/git-difftool--helper +%endif %{_datadir}/applications/cola.desktop -%{_datadir}/cola -%{_docdir}/cola +%{_datadir}/git-cola +%{_docdir}/git-cola %{_mandir}/man1/git-cola.1.gz -%{_mandir}/man1/git-difftool.1.gz # For noarch packages: sitelib %{python_sitelib}/* %changelog +* Sun May 24 2009 Ben Boeckel 1.3.8-1 +- Update to 1.3.8 +- Fix changelog usage of %% +- BR and R on git instead of git-core +- Add conditionals on git-difftool + * Mon Mar 23 2009 Ben Boeckel 1.3.6-1 - Update to 1.3.6 @@ -83,7 +91,7 @@ update-desktop-database &> /dev/null || - Update to 1.3.5.42 * Sat Feb 28 2009 Ben Boeckel 1.3.5.28-1 -- Added %post and %postun +- Added %%post and %%postun - Use desktop-file-install * Tue Feb 24 2009 Fedora Release Engineering - 1.3.5-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Mar 2009 05:13:55 -0000 1.5 +++ sources 20 Jul 2009 14:51:51 -0000 1.6 @@ -1,2 +1 @@ -befeb8e4bc1e97b2bd02755047579e63 cola-1.3.5.42-src.tar.gz -148fef205b2b52fbde1fafc64b540183 cola-1.3.6-src.tar.gz +a3f4617049d2c32c31e2918f0264dbb8 cola-1.3.8-src.tar.gz From wojdyr at fedoraproject.org Mon Jul 20 15:00:30 2009 From: wojdyr at fedoraproject.org (Marcin Wojdyr) Date: Mon, 20 Jul 2009 15:00:30 +0000 (UTC) Subject: rpms/xylib/devel import.log, NONE, 1.1 xylib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720150030.CA6E711C02C8@cvs1.fedora.phx.redhat.com> Author: wojdyr Update of /cvs/pkgs/rpms/xylib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21553/devel Modified Files: .cvsignore sources Added Files: import.log xylib.spec Log Message: auto-import xylib-0.4-4 to devel branch --- NEW FILE import.log --- xylib-0_4-4_fc11:HEAD:xylib-0.4-4.fc11.src.rpm:1248101172 --- NEW FILE xylib.spec --- Name: xylib Summary: Library for reading x-y data from several file formats Version: 0.4 Release: 4%{?dist} License: LGPLv2 Group: Development/Libraries Url: http://www.unipress.waw.pl/fityk/xylib/ Source0: http://downloads.sourceforge.net/fityk/%{name}-%{version}.tar.bz2 BuildRequires: gcc-c++, boost-devel BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. The supported formats include: VAMAS, pdCIF, Bruker UXD and RAW, Philips UDF and RD, Rigaku DAT, Sietronics CPI, DBWS/DMPLOT, Koalariet XDD and others. %package devel Summary: Development files for xylib Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: boost-devel %description devel Files needed for developing apps using xylib. xylib is a C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" rm -f $RPM_BUILD_ROOT%{_libdir}/*.la # install xyconv mkdir -p $RPM_BUILD_ROOT%{_bindir} ./libtool --mode=install install -m 755 xyconv $RPM_BUILD_ROOT%{_bindir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING TODO %{_libdir}/libxy.so.* %{_bindir}/xyconv %files devel %defattr(-,root,root,-) %{_includedir}/xylib/ %{_libdir}/libxy.so %changelog * Wed Jul 15 2009 Marcin Wojdyr - 0.4-4 - added "Requires: boost-devel" to -devel package * Mon Jul 06 2009 Marcin Wojdyr - 0.4-3 - install xyconv manually instead of changing Makefile.am * Fri Jun 26 2009 Marcin Wojdyr - 0.4-2 - add INSTALL="install -p" - change Makefile.am instead of calling libtool manually - use SMP make flags - replace %%defattr(-,root,root) with %%defattr(-,root,root,-) - use a more recommended version of the BuildRoot tag * Sat Jun 13 2009 Marcin Wojdyr - 0.4-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xylib/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:56:22 -0000 1.1 +++ .cvsignore 20 Jul 2009 15:00:29 -0000 1.2 @@ -0,0 +1 @@ +xylib-0.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xylib/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:56:22 -0000 1.1 +++ sources 20 Jul 2009 15:00:30 -0000 1.2 @@ -0,0 +1 @@ +add76a6bda7a24b567487cda195b2a24 xylib-0.4.tar.bz2 From nushio at fedoraproject.org Mon Jul 20 15:00:42 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Mon, 20 Jul 2009 15:00:42 +0000 (UTC) Subject: rpms/gnome-do-plugins/F-11 gnome-do-plugins.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720150042.7FF6A11C02C8@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25376 Modified Files: .cvsignore sources Added Files: gnome-do-plugins.spec Log Message: --- NEW FILE gnome-do-plugins.spec --- %define debug_package %{nil} Name: gnome-do-plugins Version: 0.8.1 Release: 4%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ URL: http://do.davebsd.com Source0: http://edge.launchpad.net/do-plugins/0.8/%{version}/+download/%{name}-%{version}.tar.gz # Local patch to put the plugins in the correct directory Patch0: gnome-do-plugins-plugindir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel ndesk-dbus-glib-devel gnome-do-devel BuildRequires: gnome-sharp-devel gtk-sharp2-devel gnome-desktop-sharp-devel BuildRequires: gnome-keyring-sharp-devel monodevelop mono-addins-devel BuildRequires: notify-sharp-devel BuildRequires: intltool # Needed because the patch touches Makefile.am BuildRequires: automake Requires: gnome-do # ppc* not supported: needs monodevelop which is not built for ppc* ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha %description GNOME Do allows you to quickly search for many objects present in your GNOME desktop environment (applications, Evolution contacts, Firefox bookmarks, files, artists and albums in Rhythmbox, Pidgin buddies) and perform commonly used commands on those objects (Run, Open, Email, Chat, Play, etc.). This package contains various plugins for GNOME Do. %package banshee Summary: gnome-do plugin for banshee Group: Applications/Productivity BuildRequires: banshee-devel BuildRequires: banshee Requires: gnome-do >= %{version} banshee Requires: gnome-do-plugins = %{version} %description banshee gnone-do plugins for banshee %package bibtex Summary: gnome-do plugin for bibtex Group: Applications/Productivity Requires: gnome-do >= %{version} bibtex Requires: gnome-do-plugins = %{version} %description bibtex gnome-do plugins for bibtex %package clawsmail Summary: gnome-do-plugins for clawsmail Group: Applications/Productivity Requires: gnome-do >= %{version} claws-mail Requires: gnome-do-plugins = %{version} %description clawsmail gnome-do plugins for clawsmail %package epiphany Summary: gnome-do-plugins for epiphany Group: Applications/Productivity Requires: gnome-do >= %{version} epiphany Requires: gnome-do-plugins = %{version} %description epiphany gnome-do plugins for epiphany %package evolution Summary: gnome-do-plugins for evolution Group: Applications/Productivity BuildRequires: evolution-sharp-devel Requires: gnome-do >= %{version} evolution Requires: gnome-do-plugins = %{version} %description evolution gnome-do plugins for evolution %package eog Summary: gnome-do-plugins for Eye of Gnome Group: Applications/Productivity Requires: gnome-do >= %{version} eog Requires: gnome-do-plugins = %{version} %description eog gnome-do plugins for Eye of Gnome %package firefox Summary: gnome-do-plugins for firefox Group: Applications/Productivity Requires: gnome-do >= %{version} firefox Requires: gnome-do-plugins = %{version} %description firefox gnome-do plugins for firefox %package flickr Summary: gnome-do-plugins for flickr Group: Applications/Productivity BuildRequires: flickrnet-devel Requires: gnome-do >= %{version} flickrnet Requires: gnome-do-plugins = %{version} %description flickr gnome-do plugins for flickr %package pidgin Summary: gnome-do-plugins for pidgin Group: Applications/Productivity Requires: gnome-do >= %{version} pidgin Requires: gnome-do-plugins = %{version} %description pidgin gnome-do plugins for pidgin %package rhythmbox Summary: gnome-do-plugins for rhythmbox Group: Applications/Productivity Requires: gnome-do >= %{version} rhythmbox Requires: gnome-do-plugins = %{version} %description rhythmbox gnome-do plugins for rhythmbox %package tomboy Summary: gnome-do-plugins for tomboy Group: Applications/Productivity Requires: gnome-do >= %{version} tomboy Requires: gnome-do-plugins = %{version} %description tomboy gnome-do plugins for tomboy %package thunderbird Summary: gnome-do-plugins for thunderbird Group: Applications/Productivity Requires: gnome-do >= %{version} thunderbird Requires: gnome-do-plugins = %{version} %description thunderbird gnome-do plugins for thunderbird %package tasque Summary: gnome-do-plugins for tasque Group: Applications/Productivity Requires: gnome-do >= %{version} tasque Requires: gnome-do-plugins = %{version} %description tasque gnome-do plugins for tasque %package vinagre Summary: gnome-do-plugins for vinagre Group: Applications/Productivity Requires: gnome-do >= %{version} vinagre Requires: gnome-do-plugins = %{version} %description vinagre gnome-do plugins for vinagre %prep %setup -q %patch0 -p1 -b .pldir # build.rules.mk is imported into 70+ Makefile.in's # by Makefile.am. Run autoreconf to regenerate the # Makefile.in's autoreconf -i %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} # This isn't the best solution. We want to use the system library that's # installed on the end-user system instead of copying one in at build time. # Maybe a better solution would be to add %{_libdir}/banshee-1/ to the MONO_PATH # in %{_bindir}/gnome-do somehow. ln -s %{_libdir}/banshee-1/Banshee.CollectionIndexer.dll %{buildroot}%{_libdir}/gnome-do/plugins rm -rf %{buildroot}%{_datadir}/gnome-do/plugins/Banshee.CollectionIndexer.dll # Remove Bundled Libraries and the plugins that depend on them rm -rf %{buildroot}%{_datadir}/gnome-do/plugins/Google* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*YouTube* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleCalendar* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleContacts* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleDocs* %clean rm -rf %{buildroot} %files banshee %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Banshee* %files bibtex %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Bibtex* %files clawsmail %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*ClawsMail* %files epiphany %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Epiphany* %files evolution %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Evolution* %files eog %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*EyeOfGNOME* %files firefox %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Firefox* %files flickr %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Flickr* %files pidgin %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Pidgin* %files rhythmbox %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Rhythmbox* %files tomboy %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Tomboy* %files thunderbird %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Thunderbird* %files tasque %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Tasque* %files vinagre %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Vinagre* %files %defattr(-,root,root,-) %doc COPYING AUTHORS COPYRIGHT %exclude %{_libdir}/gnome-do/plugins/*Banshee* %exclude %{_libdir}/gnome-do/plugins/*Bibtex* %exclude %{_libdir}/gnome-do/plugins/*ClawsMail* %exclude %{_libdir}/gnome-do/plugins/*Epiphany* %exclude %{_libdir}/gnome-do/plugins/*Evolution* %exclude %{_libdir}/gnome-do/plugins/*EyeOfGNOME* %exclude %{_libdir}/gnome-do/plugins/*Firefox* %exclude %{_libdir}/gnome-do/plugins/*Flickr* %exclude %{_libdir}/gnome-do/plugins/*Pidgin* %exclude %{_libdir}/gnome-do/plugins/*Rhythmbox* %exclude %{_libdir}/gnome-do/plugins/*Tomboy* %exclude %{_libdir}/gnome-do/plugins/*Thunderbird* %exclude %{_libdir}/gnome-do/plugins/*Tasque* %exclude %{_libdir}/gnome-do/plugins/*Vinagre* %{_libdir}/gnome-do/plugins/* %changelog * Thu Jul 16 2009 Juan Rodriguez 0.8.1-4 - Subpackages now require gnome-do-plugins. * Thu Jul 16 2009 Toshio Kuratomi 0.8.1-3 - Patch to get plugins to install to %%{_libdir} - Remove bundled libraries * Wed Jul 15 2009 Juan Rodriguez 0.8.1-2 - Cleaned spec from tabs - Updated license to GPLv3+ - Requires: gnome-do - gnome-do-plugins no longer owns the plugins folder * Thu Jun 18 2009 Juan Rodriguez 0.8.1-1 - Bump to upstream 0.8.1 - Removed patch0 as its no longer needed * Mon Apr 06 2009 Huzaifa Sidhpurwala 0.8.0.1-1 - Bump to upstream 0.8.0.1 - Split into sub-rpms for individual plugins - Add patch for 0.8.0.1 to built. - Some changes for packaging standard compliance * Mon Feb 24 2009 Paul Lange 0.8.0-1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:46:50 -0000 1.1 +++ .cvsignore 20 Jul 2009 15:00:11 -0000 1.2 @@ -0,0 +1,2 @@ +gnome-do-plugins-0.8.1.tar.gz +gnome-do-plugins-plugindir.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:46:50 -0000 1.1 +++ sources 20 Jul 2009 15:00:12 -0000 1.2 @@ -0,0 +1,2 @@ +1fb118a03802891e5abb4ada726e125f gnome-do-plugins-0.8.1.tar.gz +40b8e3223f4f221bb7713b7320f323d2 gnome-do-plugins-plugindir.patch From mclasen at fedoraproject.org Mon Jul 20 15:03:25 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 20 Jul 2009 15:03:25 +0000 (UTC) Subject: rpms/libgweather/devel libgweather.spec,1.42,1.43 Message-ID: <20090720150325.6355D11C00D5@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgweather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26523 Modified Files: libgweather.spec Log Message: Correct a comment Index: libgweather.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/devel/libgweather.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- libgweather.spec 20 Jul 2009 14:45:32 -0000 1.42 +++ libgweather.spec 20 Jul 2009 15:02:55 -0000 1.43 @@ -19,7 +19,7 @@ BuildRequires: intltool BuildRequires: gtk-doc BuildRequires: autoconf automake libtool -# Ubuntu forgot to upstream this patch... +# Patch from Ubuntu... Patch0: 01_gettext_not_xml.patch %description From mcpierce at fedoraproject.org Mon Jul 20 15:08:20 2009 From: mcpierce at fedoraproject.org (Darryl L. Pierce) Date: Mon, 20 Jul 2009 15:08:20 +0000 (UTC) Subject: rpms/rubygem-activeldap/F-11 .cvsignore, 1.6, 1.7 rubygem-activeldap.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090720150820.5387611C00D5@cvs1.fedora.phx.redhat.com> Author: mcpierce Update of /cvs/pkgs/rpms/rubygem-activeldap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27755 Modified Files: .cvsignore rubygem-activeldap.spec sources Log Message: * Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 - Release 1.1.0 of ActiveLdap. - Dependency on rubygem-hoe changed to 2.3.2. - Dependency on rubygem-activerecord changed to 2.3.2. - Dependency on rubygem-locale added. - Dependency on rubygem-gettext added. - Dependency on rubygem-gettext_activerecord added. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 5 Jun 2009 20:49:31 -0000 1.6 +++ .cvsignore 20 Jul 2009 15:07:50 -0000 1.7 @@ -1 +1 @@ -activeldap-1.0.9.gem +activeldap-1.1.0.gem Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-11/rubygem-activeldap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-activeldap.spec 5 Jun 2009 20:49:31 -0000 1.8 +++ rubygem-activeldap.spec 20 Jul 2009 15:07:50 -0000 1.9 @@ -8,7 +8,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} -Version: 1.0.9 +Version: 1.1.0 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ @@ -17,8 +17,11 @@ Source0: http://gems.rubyforge.or BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems -Requires: rubygem(activerecord) -Requires: rubygem(hoe) >= 1.8.3 +Requires: rubygem(activerecord) = 2.3.2 +Requires: rubygem(locale) = 2.0.4 +Requires: rubygem(gettext) = 2.0.4 +Requires: rubygem(gettext_activerecord) = 2.0.4 +Requires: rubygem(hoe) >= 2.3.2 Requires: ruby-ldap BuildRequires: rubygems BuildRequires: gettext @@ -83,6 +86,14 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 +- Release 1.1.0 of ActiveLdap. +- Dependency on rubygem-hoe changed to 2.3.2. +- Dependency on rubygem-activerecord changed to 2.3.2. +- Dependency on rubygem-locale added. +- Dependency on rubygem-gettext added. +- Dependency on rubygem-gettext_activerecord added. + * Fri Jun 5 2009 Darryl Pierce - 1.0.9-1 - Release 1.0.9 of ActiveLDAP. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 5 Jun 2009 20:49:31 -0000 1.6 +++ sources 20 Jul 2009 15:07:50 -0000 1.7 @@ -1 +1 @@ -77127f5b942b454b2cd3541b44749968 activeldap-1.0.9.gem +9fb26d56bc537b44a52f35cbe54e286d activeldap-1.1.0.gem From mgrepl at fedoraproject.org Mon Jul 20 15:08:48 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Mon, 20 Jul 2009 15:08:48 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.32, 1.33 selinux-policy.spec, 1.888, 1.889 Message-ID: <20090720150848.D5C6011C00D5@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28006 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow sshd getsched capability policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 29 +++ modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 9 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 19 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cups.fc | 2 modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 3 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.te | 3 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 23 ++- modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 1 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iscsi.te | 1 modules/system/libraries.fc | 8 - modules/system/locallogin.te | 6 modules/system/sysnetwork.te | 17 +- modules/system/udev.te | 5 modules/system/userdomain.if | 22 +- modules/system/virtual.te | 5 modules/system/xen.te | 1 108 files changed, 1861 insertions(+), 578 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- policy-20090521.patch 17 Jul 2009 08:22:01 -0000 1.32 +++ policy-20090521.patch 20 Jul 2009 15:08:48 -0000 1.33 @@ -1818,7 +1818,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/roles/unconfineduser.te serefpolicy-3.6.12/policy/modules/roles/unconfineduser.te --- nsaserefpolicy/policy/modules/roles/unconfineduser.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/roles/unconfineduser.te 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/roles/unconfineduser.te 2009-07-20 14:33:12.000000000 +0200 @@ -52,6 +52,8 @@ init_system_domain(unconfined_execmem_t, execmem_exec_t) role unconfined_r types unconfined_execmem_t; @@ -1828,7 +1828,15 @@ diff -b -B --ignore-all-space --exclude- type unconfined_notrans_t; type unconfined_notrans_exec_t; -@@ -253,6 +255,10 @@ +@@ -95,7 +97,6 @@ + seutil_run_semanage(unconfined_t, unconfined_r) + + unconfined_domain_noaudit(unconfined_t) +-domain_mmap_low(unconfined_t) + + userdom_user_home_dir_filetrans_user_home_content(unconfined_t, { dir file lnk_file fifo_file sock_file }) + +@@ -253,6 +254,10 @@ ') optional_policy(` @@ -1839,7 +1847,7 @@ diff -b -B --ignore-all-space --exclude- qemu_role_notrans(unconfined_r, unconfined_t) qemu_unconfined_role(unconfined_r) -@@ -277,7 +283,7 @@ +@@ -277,7 +282,7 @@ ') optional_policy(` @@ -3286,7 +3294,16 @@ diff -b -B --ignore-all-space --exclude- manage_files_pattern(spamc_t, spamc_tmp_t, spamc_tmp_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/ssh.if serefpolicy-3.6.12/policy/modules/services/ssh.if --- nsaserefpolicy/policy/modules/services/ssh.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/ssh.if 2009-07-13 11:36:29.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/ssh.if 2009-07-20 14:31:17.000000000 +0200 +@@ -187,7 +187,7 @@ + + allow $1_t self:capability { kill sys_chroot sys_resource chown dac_override fowner fsetid net_admin setgid setuid sys_tty_config }; + allow $1_t self:fifo_file rw_fifo_file_perms; +- allow $1_t self:process { signal setsched setrlimit setexec }; ++ allow $1_t self:process { signal getsched setsched setrlimit setexec }; + allow $1_t self:tcp_socket create_stream_socket_perms; + allow $1_t self:udp_socket create_socket_perms; + # ssh agent connections: @@ -685,3 +685,24 @@ can_exec($1, ssh_agent_exec_t) ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.888 retrieving revision 1.889 diff -u -p -r1.888 -r1.889 --- selinux-policy.spec 17 Jul 2009 08:22:01 -0000 1.888 +++ selinux-policy.spec 20 Jul 2009 15:08:48 -0000 1.889 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 68%{?dist} +Release: 69%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Mon Jul 20 2009 Miroslav Grepl 3.6.12-69 +- Allow sshd getsched capability + * Fri Jul 17 2009 Miroslav Grepl 3.6.12-68 - Fixes for hald_dccm From than at fedoraproject.org Mon Jul 20 15:10:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 20 Jul 2009 15:10:57 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.2.96-php-5.3.patch, 1.2, 1.3 kdebindings.spec, 1.222, 1.223 Message-ID: <20090720151057.ED59C11C00D5@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28726 Modified Files: kdebindings-4.2.96-php-5.3.patch kdebindings.spec Log Message: add correct check for php version kdebindings-4.2.96-php-5.3.patch: config.h.in | 2 +- handlers.cpp | 2 +- zphp/z_extension.h | 4 +++- zphp/z_handler.cpp | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) Index: kdebindings-4.2.96-php-5.3.patch =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings-4.2.96-php-5.3.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdebindings-4.2.96-php-5.3.patch 20 Jul 2009 11:03:20 -0000 1.2 +++ kdebindings-4.2.96-php-5.3.patch 20 Jul 2009 15:10:57 -0000 1.3 @@ -6,7 +6,7 @@ diff -up kdebindings-4.2.96/php/phpqt/sr #cmakedefine PHPQT_UNMAPHANDLE_DEBUG 1 -#if PHP_MAJOR_VERSION > 5 && PHP_MINOR_VERSION > 2 -+#if PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION > 2 ++#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 2) #define refcount__GC refcount__gc #define is_ref__GC is_ref__gc #else @@ -47,7 +47,7 @@ diff -up kdebindings-4.2.96/php/phpqt/sr opcode_handler_t *phpqt_original_opcode_handlers; -#if PHP_MAJOR_VERSION > 5 && PHP_MINOR_VERSION > 2 -+#if PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION > 2 ++#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 2) user_opcode_handler_t phpqt_opcode_handlers[PHPQT_OPHANDLER_COUNT]; #else opcode_handler_t phpqt_opcode_handlers[PHPQT_OPHANDLER_COUNT]; Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.222 retrieving revision 1.223 diff -u -p -r1.222 -r1.223 --- kdebindings.spec 20 Jul 2009 11:03:21 -0000 1.222 +++ kdebindings.spec 20 Jul 2009 15:10:57 -0000 1.223 @@ -32,7 +32,7 @@ Name: kdebindings Version: 4.2.96 -Release: 4%{?dist} +Release: 5%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -495,6 +495,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Than Ngo - 4.2.96-5 +- add correct check for php version + * Mon Jul 20 2009 Than Ngo - 4.2.96-4 - allow for build php-5.2.x From mathstuf at fedoraproject.org Mon Jul 20 15:25:36 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:25:36 +0000 (UTC) Subject: rpms/krazy2/devel krazy2.spec, 1.12, 1.13 checkutil-libsuffix.patch, 1.1, NONE Message-ID: <20090720152536.88FF711C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv665 Modified Files: krazy2.spec Removed Files: checkutil-libsuffix.patch Log Message: New SVN snapshot Index: krazy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/devel/krazy2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- krazy2.spec 25 Feb 2009 11:57:25 -0000 1.12 +++ krazy2.spec 20 Jul 2009 15:25:36 -0000 1.13 @@ -2,8 +2,8 @@ %define kdp 0 Name: krazy2 -Version: 2.8 -Release: 8.20090127svn%{?dist} +Version: 2.9 +Release: 1.20090719svn%{?dist} Summary: Krazy is a tool for checking code against the KDE coding guidelines Group: Development/Libraries @@ -11,10 +11,13 @@ License: GPLv2+ URL: http://techbase.kde.org/Development/Tutorials/Code_Checking # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 917270 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 -# tar -c krazy2-2.8 | bzip2 --best -c > krazy2-2.8.tar.bz2 +# svn export -r 999498 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 +# tar -c krazy2-2.9 | bzip2 --best -c > krazy2-2.9.tar.bz2 Source0: krazy2-%{version}.tar.bz2 Source1: krazy-licensecheck +%if 0%{?kdp} +Patch0: krazy2-prefix.patch +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # krazy-licensecheck moved from kdesdk to here in 4.2.0 @@ -43,6 +46,9 @@ good reason. %prep %setup -q +%if 0%{?kdp} +%patch0 +%endif %build @@ -98,15 +104,12 @@ install -m 644 -p kpartgui.dtd %{buildro install -m 644 -p kcfg.dtd %{buildroot}%{_datadir}/dtd/kcfg.dtd popd pushd doc -make DESTDIR=%{buildroot}%{_mandir} install +make DESTDIR=%{buildroot} PREFIX=%{_prefix} install popd install -m 644 %{SOURCE1} %{buildroot}%{_bindir}/krazy-licensecheck %if 0%{?kdp} pushd cppchecks make DESTDIR=%{buildroot} PREFIX=%{_prefix} install -# No headers installed -rm -rf %{buildroot}%{_libdir}/libc++parser.so -rm -rf %{buildroot}%{_libdir}/libcheckutil.so popd %endif find %{buildroot} -type f -name .packlist -exec rm -f {} ';' @@ -116,9 +119,6 @@ find %{buildroot} -depth -type d -exec r # chmod -R ug+w %{buildroot}%{_libdir} -%check - - %clean rm -rf %{buildroot} @@ -129,14 +129,18 @@ rm -rf %{buildroot} %{_mandir}/man1/krazy2.1.gz %{_mandir}/man1/krazy2all.1.gz %{_mandir}/man1/krazy2ebn.1.gz +%{_mandir}/man1/krazy2xml.1.gz %{_mandir}/man5/krazyrc.5.gz %{_bindir}/krazy-licensecheck %{_bindir}/krazy2 %{_bindir}/krazy2all %{_bindir}/krazy2ebn +%{_bindir}/krazy2xml %if 0%{?kdp} -%{_libdir}/libc++parser.so.1 -%{_libdir}/libc++parser.so.1.0 +%{_libdir}/libcpp_parser.so +%{_libdir}/libcppmodel.so +%{_libdir}/libpreprocessor.so +%{_libdir}/libcheckutil.so %{_libdir}/libcheckutil.so.1 %{_libdir}/libcheckutil.so.1.0 %endif @@ -146,10 +150,19 @@ rm -rf %{buildroot} %changelog +* Mon Mar 16 2009 Ben Boeckel 2.9-1.20090719svn +- Updated SVN +- Conditionalize patch +- Fix DESTDIR/PREFIX for doc +- Remove %%check section + +* Mon Mar 16 2009 Ben Boeckel 2.8-9.20090314svn +- Updated SVN + * Wed Feb 25 2009 Fedora Release Engineering - 2.8-8.20090127svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Jan 29 2009 Ben Boeckel 2.8-6.20090127svn +* Thu Jan 29 2009 Ben Boeckel 2.8-7.20090127svn - Updated SVN * Sat Jan 24 2009 Ben Boeckel 2.8-6.20090113svn916151 --- checkutil-libsuffix.patch DELETED --- From nushio at fedoraproject.org Mon Jul 20 15:30:09 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Mon, 20 Jul 2009 15:30:09 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel gnome-do-plugins.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090720153009.3771811C049E@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1703 Modified Files: sources Added Files: gnome-do-plugins.spec Log Message: --- NEW FILE gnome-do-plugins.spec --- %define debug_package %{nil} Name: gnome-do-plugins Version: 0.8.1 Release: 4%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ URL: http://do.davebsd.com Source0: http://edge.launchpad.net/do-plugins/0.8/%{version}/+download/%{name}-%{version}.tar.gz # Local patch to put the plugins in the correct directory Patch0: gnome-do-plugins-plugindir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel ndesk-dbus-glib-devel gnome-do-devel BuildRequires: gnome-sharp-devel gtk-sharp2-devel gnome-desktop-sharp-devel BuildRequires: gnome-keyring-sharp-devel monodevelop mono-addins-devel BuildRequires: notify-sharp-devel BuildRequires: intltool # Needed because the patch touches Makefile.am BuildRequires: automake Requires: gnome-do # ppc* not supported: needs monodevelop which is not built for ppc* ExclusiveArch: %ix86 x86_64 ia64 armv4l sparc alpha %description GNOME Do allows you to quickly search for many objects present in your GNOME desktop environment (applications, Evolution contacts, Firefox bookmarks, files, artists and albums in Rhythmbox, Pidgin buddies) and perform commonly used commands on those objects (Run, Open, Email, Chat, Play, etc.). This package contains various plugins for GNOME Do. %package banshee Summary: gnome-do plugin for banshee Group: Applications/Productivity BuildRequires: banshee-devel BuildRequires: banshee Requires: gnome-do >= %{version} banshee Requires: gnome-do-plugins = %{version} %description banshee gnone-do plugins for banshee %package bibtex Summary: gnome-do plugin for bibtex Group: Applications/Productivity Requires: gnome-do >= %{version} bibtex Requires: gnome-do-plugins = %{version} %description bibtex gnome-do plugins for bibtex %package clawsmail Summary: gnome-do-plugins for clawsmail Group: Applications/Productivity Requires: gnome-do >= %{version} claws-mail Requires: gnome-do-plugins = %{version} %description clawsmail gnome-do plugins for clawsmail %package epiphany Summary: gnome-do-plugins for epiphany Group: Applications/Productivity Requires: gnome-do >= %{version} epiphany Requires: gnome-do-plugins = %{version} %description epiphany gnome-do plugins for epiphany %package evolution Summary: gnome-do-plugins for evolution Group: Applications/Productivity BuildRequires: evolution-sharp-devel Requires: gnome-do >= %{version} evolution Requires: gnome-do-plugins = %{version} %description evolution gnome-do plugins for evolution %package eog Summary: gnome-do-plugins for Eye of Gnome Group: Applications/Productivity Requires: gnome-do >= %{version} eog Requires: gnome-do-plugins = %{version} %description eog gnome-do plugins for Eye of Gnome %package firefox Summary: gnome-do-plugins for firefox Group: Applications/Productivity Requires: gnome-do >= %{version} firefox Requires: gnome-do-plugins = %{version} %description firefox gnome-do plugins for firefox %package flickr Summary: gnome-do-plugins for flickr Group: Applications/Productivity BuildRequires: flickrnet-devel Requires: gnome-do >= %{version} flickrnet Requires: gnome-do-plugins = %{version} %description flickr gnome-do plugins for flickr %package pidgin Summary: gnome-do-plugins for pidgin Group: Applications/Productivity Requires: gnome-do >= %{version} pidgin Requires: gnome-do-plugins = %{version} %description pidgin gnome-do plugins for pidgin %package rhythmbox Summary: gnome-do-plugins for rhythmbox Group: Applications/Productivity Requires: gnome-do >= %{version} rhythmbox Requires: gnome-do-plugins = %{version} %description rhythmbox gnome-do plugins for rhythmbox %package tomboy Summary: gnome-do-plugins for tomboy Group: Applications/Productivity Requires: gnome-do >= %{version} tomboy Requires: gnome-do-plugins = %{version} %description tomboy gnome-do plugins for tomboy %package thunderbird Summary: gnome-do-plugins for thunderbird Group: Applications/Productivity Requires: gnome-do >= %{version} thunderbird Requires: gnome-do-plugins = %{version} %description thunderbird gnome-do plugins for thunderbird %package tasque Summary: gnome-do-plugins for tasque Group: Applications/Productivity Requires: gnome-do >= %{version} tasque Requires: gnome-do-plugins = %{version} %description tasque gnome-do plugins for tasque %package vinagre Summary: gnome-do-plugins for vinagre Group: Applications/Productivity Requires: gnome-do >= %{version} vinagre Requires: gnome-do-plugins = %{version} %description vinagre gnome-do plugins for vinagre %prep %setup -q %patch0 -p1 -b .pldir # build.rules.mk is imported into 70+ Makefile.in's # by Makefile.am. Run autoreconf to regenerate the # Makefile.in's autoreconf -i %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} # This isn't the best solution. We want to use the system library that's # installed on the end-user system instead of copying one in at build time. # Maybe a better solution would be to add %{_libdir}/banshee-1/ to the MONO_PATH # in %{_bindir}/gnome-do somehow. ln -s %{_libdir}/banshee-1/Banshee.CollectionIndexer.dll %{buildroot}%{_libdir}/gnome-do/plugins rm -rf %{buildroot}%{_datadir}/gnome-do/plugins/Banshee.CollectionIndexer.dll # Remove Bundled Libraries and the plugins that depend on them rm -rf %{buildroot}%{_datadir}/gnome-do/plugins/Google* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*YouTube* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleCalendar* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleContacts* rm -rf %{buildroot}%{_libdir}/gnome-do/plugins/*GoogleDocs* %clean rm -rf %{buildroot} %files banshee %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Banshee* %files bibtex %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Bibtex* %files clawsmail %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*ClawsMail* %files epiphany %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Epiphany* %files evolution %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Evolution* %files eog %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*EyeOfGNOME* %files firefox %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Firefox* %files flickr %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Flickr* %files pidgin %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Pidgin* %files rhythmbox %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Rhythmbox* %files tomboy %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Tomboy* %files thunderbird %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Thunderbird* %files tasque %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Tasque* %files vinagre %defattr(-, root, root,-) %{_libdir}/gnome-do/plugins/*Vinagre* %files %defattr(-,root,root,-) %doc COPYING AUTHORS COPYRIGHT %exclude %{_libdir}/gnome-do/plugins/*Banshee* %exclude %{_libdir}/gnome-do/plugins/*Bibtex* %exclude %{_libdir}/gnome-do/plugins/*ClawsMail* %exclude %{_libdir}/gnome-do/plugins/*Epiphany* %exclude %{_libdir}/gnome-do/plugins/*Evolution* %exclude %{_libdir}/gnome-do/plugins/*EyeOfGNOME* %exclude %{_libdir}/gnome-do/plugins/*Firefox* %exclude %{_libdir}/gnome-do/plugins/*Flickr* %exclude %{_libdir}/gnome-do/plugins/*Pidgin* %exclude %{_libdir}/gnome-do/plugins/*Rhythmbox* %exclude %{_libdir}/gnome-do/plugins/*Tomboy* %exclude %{_libdir}/gnome-do/plugins/*Thunderbird* %exclude %{_libdir}/gnome-do/plugins/*Tasque* %exclude %{_libdir}/gnome-do/plugins/*Vinagre* %{_libdir}/gnome-do/plugins/* %changelog * Thu Jul 16 2009 Juan Rodriguez 0.8.1-4 - Subpackages now require gnome-do-plugins. * Thu Jul 16 2009 Toshio Kuratomi 0.8.1-3 - Patch to get plugins to install to %%{_libdir} - Remove bundled libraries * Wed Jul 15 2009 Juan Rodriguez 0.8.1-2 - Cleaned spec from tabs - Updated license to GPLv3+ - Requires: gnome-do - gnome-do-plugins no longer owns the plugins folder * Thu Jun 18 2009 Juan Rodriguez 0.8.1-1 - Bump to upstream 0.8.1 - Removed patch0 as its no longer needed * Mon Apr 06 2009 Huzaifa Sidhpurwala 0.8.0.1-1 - Bump to upstream 0.8.0.1 - Split into sub-rpms for individual plugins - Add patch for 0.8.0.1 to built. - Some changes for packaging standard compliance * Mon Feb 24 2009 Paul Lange 0.8.0-1 - Initial packaging Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:46:50 -0000 1.1 +++ sources 20 Jul 2009 15:29:38 -0000 1.2 @@ -0,0 +1,2 @@ +1fb118a03802891e5abb4ada726e125f gnome-do-plugins-0.8.1.tar.gz +40b8e3223f4f221bb7713b7320f323d2 gnome-do-plugins-plugindir.patch From mathstuf at fedoraproject.org Mon Jul 20 15:30:10 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:30:10 +0000 (UTC) Subject: rpms/krazy2/devel krazy2-prefix.patch,NONE,1.1 Message-ID: <20090720153010.10FB511C049E@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2044 Added Files: krazy2-prefix.patch Log Message: Add fixed patch krazy2-prefix.patch: checks/dpointercheck/CMakeLists.txt | 2 +- cplusplus/cppmodel/CMakeLists.txt | 2 -- cplusplus/parser/CMakeLists.txt | 2 -- cplusplus/preprocessor/CMakeLists.txt | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) --- NEW FILE krazy2-prefix.patch --- diff -U 5 -r cppchecks/checks/dpointercheck/CMakeLists.txt cppchecks/checks/dpointercheck/CMakeLists.txt --- cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-22 18:05:47.000000000 -0400 @@ -12,9 +12,9 @@ add_executable(dpointercheck ${DPointerCheck_SRCS}) target_link_libraries(dpointercheck checkutil cppmodel) if(NOT WIN32) -install(TARGETS dpointercheck DESTINATION ${CMAKE_PREFIX_PATH}/lib/krazy2/krazy-extras/c++) +install(TARGETS dpointercheck DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/krazy2/krazy-extras/c++) else(NOT WIN32) install(TARGETS dpointercheck ${INSTALL_TARGETS_DEFAULT_ARGS}) endif(NOT WIN32) diff -U 5 -r cppchecks/cplusplus/cppmodel/CMakeLists.txt cppchecks/cplusplus/cppmodel/CMakeLists.txt --- cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-19 12:37:12.000000000 -0400 +++ cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-22 18:11:22.000000000 -0400 @@ -18,9 +18,7 @@ add_library(cppmodel SHARED ${cppmodel_SRCS}) target_link_libraries(cppmodel preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(cppmodel PROPERTIES DEFINE_SYMBOL CPLUSPLUSMODEL_BUILD_LIB) -if(WIN32) install(TARGETS cppmodel ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/parser/CMakeLists.txt cppchecks/cplusplus/parser/CMakeLists.txt --- cppchecks/cplusplus/parser/CMakeLists.txt 2009-02-23 17:03:51.000000000 -0500 +++ cppchecks/cplusplus/parser/CMakeLists.txt 2009-03-22 18:11:03.000000000 -0400 @@ -41,8 +41,6 @@ include_directories(${QT_INCLUDES}) add_library(cpp_parser SHARED ${cplusplus_SRCS}) set_target_properties(cpp_parser PROPERTIES DEFINE_SYMBOL CPLUSPLUS_BUILD_LIB) -if(WIN32) install(TARGETS cpp_parser ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/preprocessor/CMakeLists.txt cppchecks/cplusplus/preprocessor/CMakeLists.txt --- cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-22 18:11:15.000000000 -0400 @@ -15,9 +15,7 @@ add_library(preprocessor SHARED ${preproc_SRCS}) target_link_libraries(preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(preprocessor PROPERTIES DEFINE_SYMBOL CPLUSPLUSPREPROCESSOR_BUILD_LIB) -if(WIN32) install(TARGETS preprocessor ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) From mathstuf at fedoraproject.org Mon Jul 20 15:35:20 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:35:20 +0000 (UTC) Subject: rpms/krazy2/devel .cvsignore, 1.3, 1.4 krazy2.spec, 1.13, 1.14 sources, 1.7, 1.8 Message-ID: <20090720153520.3085311C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3373 Modified Files: .cvsignore krazy2.spec sources Log Message: Upload sources, not just new spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 13 Jan 2009 23:04:36 -0000 1.3 +++ .cvsignore 20 Jul 2009 15:34:49 -0000 1.4 @@ -1 +1 @@ -krazy2-2.8.tar.bz2 +krazy2-2.9.tar.bz2 Index: krazy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/devel/krazy2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- krazy2.spec 20 Jul 2009 15:25:36 -0000 1.13 +++ krazy2.spec 20 Jul 2009 15:34:49 -0000 1.14 @@ -3,7 +3,7 @@ Name: krazy2 Version: 2.9 -Release: 1.20090719svn%{?dist} +Release: 2.20090719svn%{?dist} Summary: Krazy is a tool for checking code against the KDE coding guidelines Group: Development/Libraries @@ -150,7 +150,11 @@ rm -rf %{buildroot} %changelog -* Mon Mar 16 2009 Ben Boeckel 2.9-1.20090719svn +* Mon Jul 20 2009 Ben Boeckel 2.9-2.20090719svn +- Fix %%changelog +- Fix CVS mistakes (update tarball) + +* Mon Jul 20 2009 Ben Boeckel 2.9-1.20090719svn - Updated SVN - Conditionalize patch - Fix DESTDIR/PREFIX for doc Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 29 Jan 2009 23:41:21 -0000 1.7 +++ sources 20 Jul 2009 15:34:49 -0000 1.8 @@ -1 +1 @@ -7dfdeb7b17b3995e0fe7a6f9e0c902e2 krazy2-2.8.tar.bz2 +0b2513f67f8ae516a5d7042590080efe krazy2-2.9.tar.bz2 From astokes at fedoraproject.org Mon Jul 20 15:36:09 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 15:36:09 +0000 (UTC) Subject: rpms/sos/F-10 .cvsignore,1.3,1.4 sos.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090720153609.6358211C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3708 Modified Files: .cvsignore sos.spec sources Log Message: update source Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 13 Dec 2007 10:37:05 -0000 1.3 +++ .cvsignore 20 Jul 2009 15:36:09 -0000 1.4 @@ -1 +0,0 @@ -sos-1.8.tar.gz Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/sos.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sos.spec 6 May 2009 17:00:59 -0000 1.8 +++ sos.spec 20 Jul 2009 15:36:09 -0000 1.9 @@ -1,11 +1,9 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define _localedir %_datadir/locale - Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 11%{?dist} +Release: 13%{?dist} Group: Application/Tools Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ @@ -14,6 +12,7 @@ BuildArch: noarch Url: http://fedorahosted.org/sos BuildRequires: python-devel Requires: libxml2-python +Requires: tar, bzip2 Provides: sysreport = 1.4.3-13 Obsoletes: sysreport @@ -54,6 +53,11 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Mon Jul 20 2009 Adam Stokes = 1.8-13 +- Add requirements for tar,bzip2 during minimal installs +- More merges from reports against RHEL version of plugins +- Remove unecessary definition of localdir in spec + * Wed May 05 2009 Adam Stokes - 1.8-11 - Remove all instances of sysrq - Consistent macro usage in spec Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 6 May 2009 17:00:59 -0000 1.6 +++ sources 20 Jul 2009 15:36:09 -0000 1.7 @@ -1 +0,0 @@ -7aa30837d431ed2546b26d2ae30cd6bb sos-1.8.tar.gz From pmachata at fedoraproject.org Mon Jul 20 15:38:27 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Mon, 20 Jul 2009 15:38:27 +0000 (UTC) Subject: rpms/tzdata/devel .cvsignore, 1.57, 1.58 sources, 1.61, 1.62 tzdata.spec, 1.83, 1.84 Message-ID: <20090720153827.9E47D11C00D5@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/tzdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4536 Modified Files: .cvsignore sources tzdata.spec Log Message: - Upstream 2009k - Mauritius will not continue to observe DST the coming summer - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time zone string can appear in the Dhaka binary file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/devel/.cvsignore,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- .cvsignore 18 Jun 2009 12:18:00 -0000 1.57 +++ .cvsignore 20 Jul 2009 15:38:27 -0000 1.58 @@ -28,3 +28,5 @@ tzcode2009h.tar.gz tzdata2009i.tar.gz tzcode2009i.tar.gz tzdata2009j.tar.gz +tzdata2009k.tar.gz +tzcode2009k.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/devel/sources,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sources 18 Jun 2009 12:18:00 -0000 1.61 +++ sources 20 Jul 2009 15:38:27 -0000 1.62 @@ -1,4 +1,4 @@ 6a3392cd5f1594d13c12c1a836ac8d91 javazic.tar.gz e36d2f742c22f8c8dbf0686ac9769b55 tzdata-base-0.tar.bz2 -5708cf87bd6e55d7132d4faab40bcfcf tzcode2009i.tar.gz -ad733f772e722873bf0daa7d88dda603 tzdata2009j.tar.gz +54fce464fa9d9f77d48632bbf6fd74aa tzdata2009k.tar.gz +d181116286661375966a350e3e358cfa tzcode2009k.tar.gz Index: tzdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/devel/tzdata.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- tzdata.spec 18 Jun 2009 12:18:00 -0000 1.83 +++ tzdata.spec 20 Jul 2009 15:38:27 -0000 1.84 @@ -1,8 +1,8 @@ Summary: Timezone data Name: tzdata -Version: 2009j +Version: 2009k %define tzdata_version %{version} -%define tzcode_version 2009i +%define tzcode_version %{version} Release: 1%{?dist} License: Public Domain Group: System Environment/Base @@ -107,6 +107,12 @@ rm -rf %{buildroot} %{_datadir}/javazi %changelog +* Mon Jul 20 2009 Petr Machata - 2009k-1 +- Upstream 2009k + - Mauritius will not continue to observe DST the coming summer + - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time + zone string can appear in the Dhaka binary file + * Thu Jun 18 2009 Petr Machata - 2009j-1 - Upstream 2009j - DST switch for Bangladesh will occur an hour earlier than was From pmachata at fedoraproject.org Mon Jul 20 15:41:46 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Mon, 20 Jul 2009 15:41:46 +0000 (UTC) Subject: rpms/tzdata/F-11 sources,1.60,1.61 tzdata.spec,1.82,1.83 Message-ID: <20090720154146.A220E11C00D5@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/tzdata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5783 Modified Files: sources tzdata.spec Log Message: - Upstream 2009k - Mauritius will not continue to observe DST the coming summer - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time zone string can appear in the Dhaka binary file Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/F-11/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 18 Jun 2009 12:23:22 -0000 1.60 +++ sources 20 Jul 2009 15:41:46 -0000 1.61 @@ -1,4 +1,4 @@ 6a3392cd5f1594d13c12c1a836ac8d91 javazic.tar.gz e36d2f742c22f8c8dbf0686ac9769b55 tzdata-base-0.tar.bz2 -5708cf87bd6e55d7132d4faab40bcfcf tzcode2009i.tar.gz -ad733f772e722873bf0daa7d88dda603 tzdata2009j.tar.gz +54fce464fa9d9f77d48632bbf6fd74aa tzdata2009k.tar.gz +d181116286661375966a350e3e358cfa tzcode2009k.tar.gz Index: tzdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/F-11/tzdata.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- tzdata.spec 18 Jun 2009 12:23:22 -0000 1.82 +++ tzdata.spec 20 Jul 2009 15:41:46 -0000 1.83 @@ -1,8 +1,8 @@ Summary: Timezone data Name: tzdata -Version: 2009j +Version: 2009k %define tzdata_version %{version} -%define tzcode_version 2009i +%define tzcode_version %{version} Release: 1%{?dist} License: Public Domain Group: System Environment/Base @@ -107,6 +107,12 @@ rm -rf %{buildroot} %{_datadir}/javazi %changelog +* Mon Jul 20 2009 Petr Machata - 2009k-1 +- Upstream 2009k + - Mauritius will not continue to observe DST the coming summer + - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time + zone string can appear in the Dhaka binary file + * Thu Jun 18 2009 Petr Machata - 2009j-1 - Upstream 2009j - DST switch for Bangladesh will occur an hour earlier than was From s4504kr at fedoraproject.org Mon Jul 20 15:42:31 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 15:42:31 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720154231.ACDF211C00D5@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5823/devel Modified Files: .cvsignore sources Added Files: ghc-editline.spec import.log Log Message: Initial CVS import --- NEW FILE ghc-editline.spec --- %global pkg_name editline %global debug_package %{nil} %global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 Release: 3%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif %if %{with_prof} BuildRequires: ghc-prof %endif %description This package contains binding to the BSD editline library (http://thrysoee.dk/editline). It provides a basic interface to the editline API for reading lines in input for the user. Additionally, a readline compatibility module is included, which provides a subset of the functionality of the readline library. %package devel Summary: Haskell %{pgk_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} %description devel This package will contains the development files for %{name} built for ghc-%{ghc_version} %if %{with_doc} %package doc Summary: Documentation for %{name} Group: Development/Libraries Requires: ghc-doc = %{ghc_version} Requires(post): ghc-doc = %{ghc_version} Requires(postun): ghc-doc = %{ghc_version} %description doc Thsi package contains the documentation files for the %{name} library %endif %if %{with_prof} %package prof Summary: Profiling libraries for %{name} Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} Requires: ghc-prof = %{ghc_version} %description prof This package contains profiling libraries for %{name} built for ghc-%{version} %endif %prep %setup -q -n %{pkg_name}-%{version} %build %cabal_configure --ghc %{?with_prof:-p} %cabal build %if %{with_doc} %cabal haddock %endif %ghc_gen_scripts %install rm -rf $RPM_BUILD_ROOT %cabal_install %ghc_install_scripts %ghc_gen_filelists %{name} %clean rm -rf $RPM_BUILD_ROOT %post devel %ghc_register_pkg %if %{with_doc} %post doc %ghc_reindex_haddock %endif %postun devel if [ "$1" -eq 0 ] ; then %ghc_unregister_pkg fi %if %{with_doc} %postun doc if [ "$1" -eq 0 ] ; then %ghc_reindex_haddock fi %endif %files devel -f %{name}-devel.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} %files doc -f %{name}-doc.files %defattr(-,root,root,-) %endif %if %{with_prof} %files prof -f %{name}-prof.files %defattr(-,root,root,-) %endif %Changelog * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue * Thu Jul 16 2009 Jochen Schmitt 0.2.1.0-2 - Fix typos reported in review reqest * Thu Jul 9 2009 Jochen Schmitt 0.2.1.0-1 - Initial package --- NEW FILE import.log --- ghc-editline-0_2_1_0-3_fc11:HEAD:ghc-editline-0.2.1.0-3.fc11.src.rpm:1248104483 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ghc-editline/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:53:30 -0000 1.1 +++ .cvsignore 20 Jul 2009 15:42:01 -0000 1.2 @@ -0,0 +1 @@ +editline-0.2.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/ghc-editline/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:53:30 -0000 1.1 +++ sources 20 Jul 2009 15:42:01 -0000 1.2 @@ -0,0 +1 @@ +fa57f434e538bb32bbfa97aface34358 editline-0.2.1.0.tar.gz From mathstuf at fedoraproject.org Mon Jul 20 15:44:49 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:44:49 +0000 (UTC) Subject: rpms/krazy2/F-11 krazy2.spec, 1.12, 1.13 sources, 1.7, 1.8 checkutil-libsuffix.patch, 1.1, NONE Message-ID: <20090720154449.B971711C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6513 Modified Files: krazy2.spec sources Removed Files: checkutil-libsuffix.patch Log Message: Update SVN snapshot Index: krazy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/F-11/krazy2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- krazy2.spec 25 Feb 2009 11:57:25 -0000 1.12 +++ krazy2.spec 20 Jul 2009 15:44:19 -0000 1.13 @@ -2,8 +2,8 @@ %define kdp 0 Name: krazy2 -Version: 2.8 -Release: 8.20090127svn%{?dist} +Version: 2.9 +Release: 2.20090719svn%{?dist} Summary: Krazy is a tool for checking code against the KDE coding guidelines Group: Development/Libraries @@ -11,10 +11,13 @@ License: GPLv2+ URL: http://techbase.kde.org/Development/Tutorials/Code_Checking # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 917270 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 -# tar -c krazy2-2.8 | bzip2 --best -c > krazy2-2.8.tar.bz2 +# svn export -r 999498 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 +# tar -c krazy2-2.9 | bzip2 --best -c > krazy2-2.9.tar.bz2 Source0: krazy2-%{version}.tar.bz2 Source1: krazy-licensecheck +%if 0%{?kdp} +Patch0: krazy2-prefix.patch +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # krazy-licensecheck moved from kdesdk to here in 4.2.0 @@ -43,6 +46,9 @@ good reason. %prep %setup -q +%if 0%{?kdp} +%patch0 +%endif %build @@ -98,15 +104,12 @@ install -m 644 -p kpartgui.dtd %{buildro install -m 644 -p kcfg.dtd %{buildroot}%{_datadir}/dtd/kcfg.dtd popd pushd doc -make DESTDIR=%{buildroot}%{_mandir} install +make DESTDIR=%{buildroot} PREFIX=%{_prefix} install popd install -m 644 %{SOURCE1} %{buildroot}%{_bindir}/krazy-licensecheck %if 0%{?kdp} pushd cppchecks make DESTDIR=%{buildroot} PREFIX=%{_prefix} install -# No headers installed -rm -rf %{buildroot}%{_libdir}/libc++parser.so -rm -rf %{buildroot}%{_libdir}/libcheckutil.so popd %endif find %{buildroot} -type f -name .packlist -exec rm -f {} ';' @@ -116,9 +119,6 @@ find %{buildroot} -depth -type d -exec r # chmod -R ug+w %{buildroot}%{_libdir} -%check - - %clean rm -rf %{buildroot} @@ -129,14 +129,18 @@ rm -rf %{buildroot} %{_mandir}/man1/krazy2.1.gz %{_mandir}/man1/krazy2all.1.gz %{_mandir}/man1/krazy2ebn.1.gz +%{_mandir}/man1/krazy2xml.1.gz %{_mandir}/man5/krazyrc.5.gz %{_bindir}/krazy-licensecheck %{_bindir}/krazy2 %{_bindir}/krazy2all %{_bindir}/krazy2ebn +%{_bindir}/krazy2xml %if 0%{?kdp} -%{_libdir}/libc++parser.so.1 -%{_libdir}/libc++parser.so.1.0 +%{_libdir}/libcpp_parser.so +%{_libdir}/libcppmodel.so +%{_libdir}/libpreprocessor.so +%{_libdir}/libcheckutil.so %{_libdir}/libcheckutil.so.1 %{_libdir}/libcheckutil.so.1.0 %endif @@ -146,10 +150,23 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Ben Boeckel 2.9-2.20090719svn +- Fix %%changelog +- Fix CVS mistakes (update tarball) + +* Mon Jul 20 2009 Ben Boeckel 2.9-1.20090719svn +- Updated SVN +- Conditionalize patch +- Fix DESTDIR/PREFIX for doc +- Remove %%check section + +* Mon Mar 16 2009 Ben Boeckel 2.8-9.20090314svn +- Updated SVN + * Wed Feb 25 2009 Fedora Release Engineering - 2.8-8.20090127svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Jan 29 2009 Ben Boeckel 2.8-6.20090127svn +* Thu Jan 29 2009 Ben Boeckel 2.8-7.20090127svn - Updated SVN * Sat Jan 24 2009 Ben Boeckel 2.8-6.20090113svn916151 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 29 Jan 2009 23:41:21 -0000 1.7 +++ sources 20 Jul 2009 15:44:19 -0000 1.8 @@ -1 +1 @@ -7dfdeb7b17b3995e0fe7a6f9e0c902e2 krazy2-2.8.tar.bz2 +0b2513f67f8ae516a5d7042590080efe krazy2-2.9.tar.bz2 --- checkutil-libsuffix.patch DELETED --- From mathstuf at fedoraproject.org Mon Jul 20 15:45:59 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:45:59 +0000 (UTC) Subject: rpms/krazy2/F-11 krazy2-prefix.patch,NONE,1.1 Message-ID: <20090720154559.D178811C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6820 Added Files: krazy2-prefix.patch Log Message: Add patch krazy2-prefix.patch: checks/dpointercheck/CMakeLists.txt | 2 +- cplusplus/cppmodel/CMakeLists.txt | 2 -- cplusplus/parser/CMakeLists.txt | 2 -- cplusplus/preprocessor/CMakeLists.txt | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) --- NEW FILE krazy2-prefix.patch --- diff -U 5 -r cppchecks/checks/dpointercheck/CMakeLists.txt cppchecks/checks/dpointercheck/CMakeLists.txt --- cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-22 18:05:47.000000000 -0400 @@ -12,9 +12,9 @@ add_executable(dpointercheck ${DPointerCheck_SRCS}) target_link_libraries(dpointercheck checkutil cppmodel) if(NOT WIN32) -install(TARGETS dpointercheck DESTINATION ${CMAKE_PREFIX_PATH}/lib/krazy2/krazy-extras/c++) +install(TARGETS dpointercheck DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/krazy2/krazy-extras/c++) else(NOT WIN32) install(TARGETS dpointercheck ${INSTALL_TARGETS_DEFAULT_ARGS}) endif(NOT WIN32) diff -U 5 -r cppchecks/cplusplus/cppmodel/CMakeLists.txt cppchecks/cplusplus/cppmodel/CMakeLists.txt --- cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-19 12:37:12.000000000 -0400 +++ cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-22 18:11:22.000000000 -0400 @@ -18,9 +18,7 @@ add_library(cppmodel SHARED ${cppmodel_SRCS}) target_link_libraries(cppmodel preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(cppmodel PROPERTIES DEFINE_SYMBOL CPLUSPLUSMODEL_BUILD_LIB) -if(WIN32) install(TARGETS cppmodel ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/parser/CMakeLists.txt cppchecks/cplusplus/parser/CMakeLists.txt --- cppchecks/cplusplus/parser/CMakeLists.txt 2009-02-23 17:03:51.000000000 -0500 +++ cppchecks/cplusplus/parser/CMakeLists.txt 2009-03-22 18:11:03.000000000 -0400 @@ -41,8 +41,6 @@ include_directories(${QT_INCLUDES}) add_library(cpp_parser SHARED ${cplusplus_SRCS}) set_target_properties(cpp_parser PROPERTIES DEFINE_SYMBOL CPLUSPLUS_BUILD_LIB) -if(WIN32) install(TARGETS cpp_parser ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/preprocessor/CMakeLists.txt cppchecks/cplusplus/preprocessor/CMakeLists.txt --- cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-22 18:11:15.000000000 -0400 @@ -15,9 +15,7 @@ add_library(preprocessor SHARED ${preproc_SRCS}) target_link_libraries(preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(preprocessor PROPERTIES DEFINE_SYMBOL CPLUSPLUSPREPROCESSOR_BUILD_LIB) -if(WIN32) install(TARGETS preprocessor ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) From s4504kr at fedoraproject.org Mon Jul 20 15:51:26 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 15:51:26 +0000 (UTC) Subject: rpms/ghc-editline/F-11 sources,1.1,1.2 Message-ID: <20090720155126.DD10111C00D5@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8830 Modified Files: sources Log Message: Initial import for F-11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:53:30 -0000 1.1 +++ sources 20 Jul 2009 15:51:25 -0000 1.2 @@ -0,0 +1 @@ +fa57f434e538bb32bbfa97aface34358 editline-0.2.1.0.tar.gz From astokes at fedoraproject.org Mon Jul 20 15:53:14 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 15:53:14 +0000 (UTC) Subject: rpms/sos/devel sos.spec,1.10,1.11 Message-ID: <20090720155314.B091A11C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9583 Modified Files: sos.spec Log Message: update spec Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/devel/sos.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sos.spec 6 May 2009 15:33:54 -0000 1.10 +++ sos.spec 20 Jul 2009 15:52:44 -0000 1.11 @@ -1,11 +1,9 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define _localedir %_datadir/locale - Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 11%{?dist} +Release: 13%{?dist} Group: Application/Tools Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ @@ -14,6 +12,7 @@ BuildArch: noarch Url: http://fedorahosted.org/sos BuildRequires: python-devel Requires: libxml2-python +Requires: tar, bzip2 Provides: sysreport = 1.4.3-13 Obsoletes: sysreport @@ -54,6 +53,11 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Mon Jul 20 2009 Adam Stokes = 1.8-13 +- Add requirements for tar,bzip2 during minimal installs +- More merges from reports against RHEL version of plugins +- Remove unecessary definition of localdir in spec + * Wed May 05 2009 Adam Stokes - 1.8-11 - Remove all instances of sysrq - Consistent macro usage in spec From s4504kr at fedoraproject.org Mon Jul 20 15:55:38 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 15:55:38 +0000 (UTC) Subject: rpms/ghc-editline/F-11 ghc-editline.spec,NONE,1.1 Message-ID: <20090720155538.7B9FA11C00D5@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10154 Added Files: ghc-editline.spec Log Message: Initial import for F-11 --- NEW FILE ghc-editline.spec --- %global pkg_name editline %global debug_package %{nil} %global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 Release: 3%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif %if %{with_prof} BuildRequires: ghc-prof %endif %description This package contains binding to the BSD editline library (http://thrysoee.dk/editline). It provides a basic interface to the editline API for reading lines in input for the user. Additionally, a readline compatibility module is included, which provides a subset of the functionality of the readline library. %package devel Summary: Haskell %{pgk_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} %description devel This package will contains the development files for %{name} built for ghc-%{ghc_version} %if %{with_doc} %package doc Summary: Documentation for %{name} Group: Development/Libraries Requires: ghc-doc = %{ghc_version} Requires(post): ghc-doc = %{ghc_version} Requires(postun): ghc-doc = %{ghc_version} %description doc Thsi package contains the documentation files for the %{name} library %endif %if %{with_prof} %package prof Summary: Profiling libraries for %{name} Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} Requires: ghc-prof = %{ghc_version} %description prof This package contains profiling libraries for %{name} built for ghc-%{version} %endif %prep %setup -q -n %{pkg_name}-%{version} %build %cabal_configure --ghc %{?with_prof:-p} %cabal build %if %{with_doc} %cabal haddock %endif %ghc_gen_scripts %install rm -rf $RPM_BUILD_ROOT %cabal_install %ghc_install_scripts %ghc_gen_filelists %{name} %clean rm -rf $RPM_BUILD_ROOT %post devel %ghc_register_pkg %if %{with_doc} %post doc %ghc_reindex_haddock %endif %postun devel if [ "$1" -eq 0 ] ; then %ghc_unregister_pkg fi %if %{with_doc} %postun doc if [ "$1" -eq 0 ] ; then %ghc_reindex_haddock fi %endif %files devel -f %{name}-devel.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} %files doc -f %{name}-doc.files %defattr(-,root,root,-) %endif %if %{with_prof} %files prof -f %{name}-prof.files %defattr(-,root,root,-) %endif %Changelog * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue * Thu Jul 16 2009 Jochen Schmitt 0.2.1.0-2 - Fix typos reported in review reqest * Thu Jul 9 2009 Jochen Schmitt 0.2.1.0-1 - Initial package From mathstuf at fedoraproject.org Mon Jul 20 15:56:59 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 20 Jul 2009 15:56:59 +0000 (UTC) Subject: rpms/krazy2/F-10 krazy2-prefix.patch, NONE, 1.1 krazy2.spec, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090720155659.1EE2411C00D5@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/krazy2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10693 Modified Files: krazy2.spec sources Added Files: krazy2-prefix.patch Log Message: Update SVN snapshot krazy2-prefix.patch: checks/dpointercheck/CMakeLists.txt | 2 +- cplusplus/cppmodel/CMakeLists.txt | 2 -- cplusplus/parser/CMakeLists.txt | 2 -- cplusplus/preprocessor/CMakeLists.txt | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) --- NEW FILE krazy2-prefix.patch --- diff -U 5 -r cppchecks/checks/dpointercheck/CMakeLists.txt cppchecks/checks/dpointercheck/CMakeLists.txt --- cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/checks/dpointercheck/CMakeLists.txt 2009-03-22 18:05:47.000000000 -0400 @@ -12,9 +12,9 @@ add_executable(dpointercheck ${DPointerCheck_SRCS}) target_link_libraries(dpointercheck checkutil cppmodel) if(NOT WIN32) -install(TARGETS dpointercheck DESTINATION ${CMAKE_PREFIX_PATH}/lib/krazy2/krazy-extras/c++) +install(TARGETS dpointercheck DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/krazy2/krazy-extras/c++) else(NOT WIN32) install(TARGETS dpointercheck ${INSTALL_TARGETS_DEFAULT_ARGS}) endif(NOT WIN32) diff -U 5 -r cppchecks/cplusplus/cppmodel/CMakeLists.txt cppchecks/cplusplus/cppmodel/CMakeLists.txt --- cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-19 12:37:12.000000000 -0400 +++ cppchecks/cplusplus/cppmodel/CMakeLists.txt 2009-03-22 18:11:22.000000000 -0400 @@ -18,9 +18,7 @@ add_library(cppmodel SHARED ${cppmodel_SRCS}) target_link_libraries(cppmodel preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(cppmodel PROPERTIES DEFINE_SYMBOL CPLUSPLUSMODEL_BUILD_LIB) -if(WIN32) install(TARGETS cppmodel ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/parser/CMakeLists.txt cppchecks/cplusplus/parser/CMakeLists.txt --- cppchecks/cplusplus/parser/CMakeLists.txt 2009-02-23 17:03:51.000000000 -0500 +++ cppchecks/cplusplus/parser/CMakeLists.txt 2009-03-22 18:11:03.000000000 -0400 @@ -41,8 +41,6 @@ include_directories(${QT_INCLUDES}) add_library(cpp_parser SHARED ${cplusplus_SRCS}) set_target_properties(cpp_parser PROPERTIES DEFINE_SYMBOL CPLUSPLUS_BUILD_LIB) -if(WIN32) install(TARGETS cpp_parser ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) diff -U 5 -r cppchecks/cplusplus/preprocessor/CMakeLists.txt cppchecks/cplusplus/preprocessor/CMakeLists.txt --- cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-13 09:57:03.000000000 -0400 +++ cppchecks/cplusplus/preprocessor/CMakeLists.txt 2009-03-22 18:11:15.000000000 -0400 @@ -15,9 +15,7 @@ add_library(preprocessor SHARED ${preproc_SRCS}) target_link_libraries(preprocessor cpp_parser ${QT_QTCORE_LIBRARY}) set_target_properties(preprocessor PROPERTIES DEFINE_SYMBOL CPLUSPLUSPREPROCESSOR_BUILD_LIB) -if(WIN32) install(TARGETS preprocessor ${INSTALL_TARGETS_DEFAULT_ARGS}) -endif(WIN32) Index: krazy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/F-10/krazy2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- krazy2.spec 29 Jan 2009 23:48:10 -0000 1.4 +++ krazy2.spec 20 Jul 2009 15:56:28 -0000 1.5 @@ -2,8 +2,8 @@ %define kdp 0 Name: krazy2 -Version: 2.8 -Release: 7.20090127svn%{?dist} +Version: 2.9 +Release: 2.20090719svn%{?dist} Summary: Krazy is a tool for checking code against the KDE coding guidelines Group: Development/Libraries @@ -11,10 +11,13 @@ License: GPLv2+ URL: http://techbase.kde.org/Development/Tutorials/Code_Checking # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 917270 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 -# tar -c krazy2-2.8 | bzip2 --best -c > krazy2-2.8.tar.bz2 +# svn export -r 999498 svn://anonsvn.kde.org/home/kde/trunk/quality/krazy2 krazy2-2.8 +# tar -c krazy2-2.9 | bzip2 --best -c > krazy2-2.9.tar.bz2 Source0: krazy2-%{version}.tar.bz2 Source1: krazy-licensecheck +%if 0%{?kdp} +Patch0: krazy2-prefix.patch +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # krazy-licensecheck moved from kdesdk to here in 4.2.0 @@ -43,6 +46,9 @@ good reason. %prep %setup -q +%if 0%{?kdp} +%patch0 +%endif %build @@ -98,15 +104,12 @@ install -m 644 -p kpartgui.dtd %{buildro install -m 644 -p kcfg.dtd %{buildroot}%{_datadir}/dtd/kcfg.dtd popd pushd doc -make DESTDIR=%{buildroot}%{_mandir} install +make DESTDIR=%{buildroot} PREFIX=%{_prefix} install popd install -m 644 %{SOURCE1} %{buildroot}%{_bindir}/krazy-licensecheck %if 0%{?kdp} pushd cppchecks make DESTDIR=%{buildroot} PREFIX=%{_prefix} install -# No headers installed -rm -rf %{buildroot}%{_libdir}/libc++parser.so -rm -rf %{buildroot}%{_libdir}/libcheckutil.so popd %endif find %{buildroot} -type f -name .packlist -exec rm -f {} ';' @@ -116,9 +119,6 @@ find %{buildroot} -depth -type d -exec r # chmod -R ug+w %{buildroot}%{_libdir} -%check - - %clean rm -rf %{buildroot} @@ -129,14 +129,18 @@ rm -rf %{buildroot} %{_mandir}/man1/krazy2.1.gz %{_mandir}/man1/krazy2all.1.gz %{_mandir}/man1/krazy2ebn.1.gz +%{_mandir}/man1/krazy2xml.1.gz %{_mandir}/man5/krazyrc.5.gz %{_bindir}/krazy-licensecheck %{_bindir}/krazy2 %{_bindir}/krazy2all %{_bindir}/krazy2ebn +%{_bindir}/krazy2xml %if 0%{?kdp} -%{_libdir}/libc++parser.so.1 -%{_libdir}/libc++parser.so.1.0 +%{_libdir}/libcpp_parser.so +%{_libdir}/libcppmodel.so +%{_libdir}/libpreprocessor.so +%{_libdir}/libcheckutil.so %{_libdir}/libcheckutil.so.1 %{_libdir}/libcheckutil.so.1.0 %endif @@ -146,7 +150,23 @@ rm -rf %{buildroot} %changelog -* Thu Jan 29 2009 Ben Boeckel 2.8-6.20090127svn +* Mon Jul 20 2009 Ben Boeckel 2.9-2.20090719svn +- Fix %%changelog +- Fix CVS mistakes (update tarball) + +* Mon Jul 20 2009 Ben Boeckel 2.9-1.20090719svn +- Updated SVN +- Conditionalize patch +- Fix DESTDIR/PREFIX for doc +- Remove %%check section + +* Mon Mar 16 2009 Ben Boeckel 2.8-9.20090314svn +- Updated SVN + +* Wed Feb 25 2009 Fedora Release Engineering - 2.8-8.20090127svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Jan 29 2009 Ben Boeckel 2.8-7.20090127svn - Updated SVN * Sat Jan 24 2009 Ben Boeckel 2.8-6.20090113svn916151 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 29 Jan 2009 23:48:10 -0000 1.5 +++ sources 20 Jul 2009 15:56:28 -0000 1.6 @@ -1 +1 @@ -7dfdeb7b17b3995e0fe7a6f9e0c902e2 krazy2-2.8.tar.bz2 +0b2513f67f8ae516a5d7042590080efe krazy2-2.9.tar.bz2 From remi at fedoraproject.org Mon Jul 20 15:59:39 2009 From: remi at fedoraproject.org (Remi Collet) Date: Mon, 20 Jul 2009 15:59:39 +0000 (UTC) Subject: rpms/perl-Gtk2-MozEmbed/devel perl-Gtk2-MozEmbed.spec,1.4,1.5 Message-ID: <20090720155939.672AB11C00D5@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/perl-Gtk2-MozEmbed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12059 Modified Files: perl-Gtk2-MozEmbed.spec Log Message: fix BR for perl-Glib-devel Index: perl-Gtk2-MozEmbed.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Gtk2-MozEmbed/devel/perl-Gtk2-MozEmbed.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-MozEmbed.spec 20 Jul 2009 09:22:12 -0000 1.4 +++ perl-Gtk2-MozEmbed.spec 20 Jul 2009 15:59:39 -0000 1.5 @@ -13,7 +13,7 @@ Summary: Interface to the Mozilla embedding widget Name: perl-Gtk2-MozEmbed Version: 0.08 -Release: %{specfilever}%{?dist}.2 +Release: %{specfilever}%{?dist}.3 Group: Development/Libraries License: LGPLv2+ @@ -28,7 +28,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ver BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::Depends) >= 0.20 BuildRequires: perl(ExtUtils::PkgConfig) >= 1.03 -BuildRequires: perl(Glib) >= 1.180 +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Gtk2) >= 1.081 BuildRequires: gtk2-devel BuildRequires: xulrunner-devel-unstable = %{gecko_version} @@ -89,6 +89,9 @@ find $RPM_BUILD_ROOT -type d -depth -exe %changelog +* Mon Jul 20 2009 Remi Collet - 0.08-6.3 +- fix BR + * Mon Jul 20 2009 Jan Horak - 0.08-6.2 - Rebuild against newer gecko From wojdyr at fedoraproject.org Mon Jul 20 16:00:49 2009 From: wojdyr at fedoraproject.org (Marcin Wojdyr) Date: Mon, 20 Jul 2009 16:00:49 +0000 (UTC) Subject: rpms/xylib/F-11 import.log, NONE, 1.1 xylib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720160049.51D3C11C00D5@cvs1.fedora.phx.redhat.com> Author: wojdyr Update of /cvs/pkgs/rpms/xylib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12204/F-11 Modified Files: .cvsignore sources Added Files: import.log xylib.spec Log Message: auto-import xylib-0.4-4 to F-11 --- NEW FILE import.log --- xylib-0_4-4_fc11:F-11:xylib-0.4-4.fc11.src.rpm:1248105567 --- NEW FILE xylib.spec --- Name: xylib Summary: Library for reading x-y data from several file formats Version: 0.4 Release: 4%{?dist} License: LGPLv2 Group: Development/Libraries Url: http://www.unipress.waw.pl/fityk/xylib/ Source0: http://downloads.sourceforge.net/fityk/%{name}-%{version}.tar.bz2 BuildRequires: gcc-c++, boost-devel BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. The supported formats include: VAMAS, pdCIF, Bruker UXD and RAW, Philips UDF and RD, Rigaku DAT, Sietronics CPI, DBWS/DMPLOT, Koalariet XDD and others. %package devel Summary: Development files for xylib Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: boost-devel %description devel Files needed for developing apps using xylib. xylib is a C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" rm -f $RPM_BUILD_ROOT%{_libdir}/*.la # install xyconv mkdir -p $RPM_BUILD_ROOT%{_bindir} ./libtool --mode=install install -m 755 xyconv $RPM_BUILD_ROOT%{_bindir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING TODO %{_libdir}/libxy.so.* %{_bindir}/xyconv %files devel %defattr(-,root,root,-) %{_includedir}/xylib/ %{_libdir}/libxy.so %changelog * Wed Jul 15 2009 Marcin Wojdyr - 0.4-4 - added "Requires: boost-devel" to -devel package * Mon Jul 06 2009 Marcin Wojdyr - 0.4-3 - install xyconv manually instead of changing Makefile.am * Fri Jun 26 2009 Marcin Wojdyr - 0.4-2 - add INSTALL="install -p" - change Makefile.am instead of calling libtool manually - use SMP make flags - replace %%defattr(-,root,root) with %%defattr(-,root,root,-) - use a more recommended version of the BuildRoot tag * Sat Jun 13 2009 Marcin Wojdyr - 0.4-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xylib/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:56:22 -0000 1.1 +++ .cvsignore 20 Jul 2009 16:00:18 -0000 1.2 @@ -0,0 +1 @@ +xylib-0.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xylib/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:56:22 -0000 1.1 +++ sources 20 Jul 2009 16:00:19 -0000 1.2 @@ -0,0 +1 @@ +add76a6bda7a24b567487cda195b2a24 xylib-0.4.tar.bz2 From adamwill at fedoraproject.org Mon Jul 20 16:00:55 2009 From: adamwill at fedoraproject.org (Adam Williamson) Date: Mon, 20 Jul 2009 16:00:55 +0000 (UTC) Subject: rpms/gst-mixer/F-11 gst-mixer.spec,1.1,1.2 Message-ID: <20090720160055.4FAB911C00D5@cvs1.fedora.phx.redhat.com> Author: adamwill Update of /cvs/pkgs/rpms/gst-mixer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12222 Modified Files: gst-mixer.spec Log Message: - from Christoph Wickert: fix Help menus, add Mixer menu category Index: gst-mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gst-mixer/F-11/gst-mixer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gst-mixer.spec 4 May 2009 21:15:51 -0000 1.1 +++ gst-mixer.spec 20 Jul 2009 16:00:24 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Legacy gnome-volume-control for advanced use cases Name: gst-mixer Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.26/gnome-media-%{version}.tar.bz2 @@ -11,6 +11,7 @@ Source: http://download.gnome.or Patch0: gst-mixer-2.26.0-rebrand.patch # Fixes Launchpad bug #345645 (patch from that report / upstream) Patch1: gst-mixer-2.26.0-switch.patch +Patch2: gst-mixer-2.26.0-help-uri.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://www.gnome.org ExcludeArch: s390 s390x @@ -33,6 +34,7 @@ BuildRequires: libcanberra-devel BuildRequires: gnome-doc-utils BuildRequires: intltool BuildRequires: unique-devel +BuildRequires: desktop-file-utils # for patch 0 BuildRequires: autoconf automake libtool @@ -49,6 +51,7 @@ GNOME volume control application cannot %setup -q -n gnome-media-%{version} %patch0 -p1 %patch1 -p1 +%patch2 -p1 mv gst-mixer/gnome-volume-control.desktop.in.in gst-mixer/gst-mixer.desktop.in.in mv gst-mixer/gnome-volume-control.schemas.in gst-mixer/gst-mixer.schemas.in @@ -111,6 +114,11 @@ done %find_lang %{gettext_package} --all-name --with-gnome +desktop-file-install \ + --add-category=Mixer \ + --dir=$RPM_BUILD_ROOT/%{_datadir}/applications \ + $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop + %clean rm -rf $RPM_BUILD_ROOT @@ -159,6 +167,10 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/* %changelog +* Sun Jul 19 2009 Christoph Wickert - 2.26.0-3 +- Fix 'Help' button (#508531) +- Add category 'Mixer' to menu enty for nested menus in multimedia-menus + * Fri May 1 2009 Adam Williamson - 2.26.0-2 - Drop a bunch of %%defines in the spec as recommended for review From adamwill at fedoraproject.org Mon Jul 20 16:01:18 2009 From: adamwill at fedoraproject.org (Adam Williamson) Date: Mon, 20 Jul 2009 16:01:18 +0000 (UTC) Subject: rpms/gst-mixer/F-11 gst-mixer-2.26.0-help-uri.patch,NONE,1.1 Message-ID: <20090720160118.C017511C00D5@cvs1.fedora.phx.redhat.com> Author: adamwill Update of /cvs/pkgs/rpms/gst-mixer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12591 Added Files: gst-mixer-2.26.0-help-uri.patch Log Message: - add patch file gst-mixer-2.26.0-help-uri.patch: window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE gst-mixer-2.26.0-help-uri.patch --- --- gnome-media-2.26.0/gst-mixer/src/window.c.orig 2009-07-19 22:17:24.000000000 +0200 +++ gnome-media-2.26.0/gst-mixer/src/window.c 2009-07-19 22:17:46.000000000 +0200 @@ -126,7 +126,7 @@ cb_help (GtkAction *action, GnomeVolumeControlWindow *win) { - open_uri (GTK_WINDOW (win), "ghelp:gnome-volume-control"); + open_uri (GTK_WINDOW (win), "ghelp:gst-mixer"); } static void From wojdyr at fedoraproject.org Mon Jul 20 16:03:10 2009 From: wojdyr at fedoraproject.org (Marcin Wojdyr) Date: Mon, 20 Jul 2009 16:03:10 +0000 (UTC) Subject: rpms/xylib/F-10 import.log, NONE, 1.1 xylib.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090720160310.EE02011C00D5@cvs1.fedora.phx.redhat.com> Author: wojdyr Update of /cvs/pkgs/rpms/xylib/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13071/F-10 Modified Files: .cvsignore sources Added Files: import.log xylib.spec Log Message: auto-import xylib-0.4-4 to F-10 --- NEW FILE import.log --- xylib-0_4-4_fc11:F-10:xylib-0.4-4.fc11.src.rpm:1248105719 --- NEW FILE xylib.spec --- Name: xylib Summary: Library for reading x-y data from several file formats Version: 0.4 Release: 4%{?dist} License: LGPLv2 Group: Development/Libraries Url: http://www.unipress.waw.pl/fityk/xylib/ Source0: http://downloads.sourceforge.net/fityk/%{name}-%{version}.tar.bz2 BuildRequires: gcc-c++, boost-devel BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. The supported formats include: VAMAS, pdCIF, Bruker UXD and RAW, Philips UDF and RD, Rigaku DAT, Sietronics CPI, DBWS/DMPLOT, Koalariet XDD and others. %package devel Summary: Development files for xylib Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: boost-devel %description devel Files needed for developing apps using xylib. xylib is a C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" rm -f $RPM_BUILD_ROOT%{_libdir}/*.la # install xyconv mkdir -p $RPM_BUILD_ROOT%{_bindir} ./libtool --mode=install install -m 755 xyconv $RPM_BUILD_ROOT%{_bindir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README COPYING TODO %{_libdir}/libxy.so.* %{_bindir}/xyconv %files devel %defattr(-,root,root,-) %{_includedir}/xylib/ %{_libdir}/libxy.so %changelog * Wed Jul 15 2009 Marcin Wojdyr - 0.4-4 - added "Requires: boost-devel" to -devel package * Mon Jul 06 2009 Marcin Wojdyr - 0.4-3 - install xyconv manually instead of changing Makefile.am * Fri Jun 26 2009 Marcin Wojdyr - 0.4-2 - add INSTALL="install -p" - change Makefile.am instead of calling libtool manually - use SMP make flags - replace %%defattr(-,root,root) with %%defattr(-,root,root,-) - use a more recommended version of the BuildRoot tag * Sat Jun 13 2009 Marcin Wojdyr - 0.4-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xylib/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:56:22 -0000 1.1 +++ .cvsignore 20 Jul 2009 16:02:40 -0000 1.2 @@ -0,0 +1 @@ +xylib-0.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xylib/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:56:22 -0000 1.1 +++ sources 20 Jul 2009 16:02:40 -0000 1.2 @@ -0,0 +1 @@ +add76a6bda7a24b567487cda195b2a24 xylib-0.4.tar.bz2 From s4504kr at fedoraproject.org Mon Jul 20 16:04:14 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 16:04:14 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,NONE,1.1 sources,1.1,1.2 Message-ID: <20090720160414.AA8E711C00D5@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13522 Modified Files: sources Added Files: ghc-editline.spec Log Message: Initial import for F-10 --- NEW FILE ghc-editline.spec --- %global pkg_name editline %global debug_package %{nil} %global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 Release: 3%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif %if %{with_prof} BuildRequires: ghc-prof %endif %description This package contains binding to the BSD editline library (http://thrysoee.dk/editline). It provides a basic interface to the editline API for reading lines in input for the user. Additionally, a readline compatibility module is included, which provides a subset of the functionality of the readline library. %package devel Summary: Haskell %{pgk_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} %description devel This package will contains the development files for %{name} built for ghc-%{ghc_version} %if %{with_doc} %package doc Summary: Documentation for %{name} Group: Development/Libraries Requires: ghc-doc = %{ghc_version} Requires(post): ghc-doc = %{ghc_version} Requires(postun): ghc-doc = %{ghc_version} %description doc Thsi package contains the documentation files for the %{name} library %endif %if %{with_prof} %package prof Summary: Profiling libraries for %{name} Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} Requires: ghc-prof = %{ghc_version} %description prof This package contains profiling libraries for %{name} built for ghc-%{version} %endif %prep %setup -q -n %{pkg_name}-%{version} %build %cabal_configure --ghc %{?with_prof:-p} %cabal build %if %{with_doc} %cabal haddock %endif %ghc_gen_scripts %install rm -rf $RPM_BUILD_ROOT %cabal_install %ghc_install_scripts %ghc_gen_filelists %{name} %clean rm -rf $RPM_BUILD_ROOT %post devel %ghc_register_pkg %if %{with_doc} %post doc %ghc_reindex_haddock %endif %postun devel if [ "$1" -eq 0 ] ; then %ghc_unregister_pkg fi %if %{with_doc} %postun doc if [ "$1" -eq 0 ] ; then %ghc_reindex_haddock fi %endif %files devel -f %{name}-devel.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} %files doc -f %{name}-doc.files %defattr(-,root,root,-) %endif %if %{with_prof} %files prof -f %{name}-prof.files %defattr(-,root,root,-) %endif %Changelog * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue * Thu Jul 16 2009 Jochen Schmitt 0.2.1.0-2 - Fix typos reported in review reqest * Thu Jul 9 2009 Jochen Schmitt 0.2.1.0-1 - Initial package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:53:30 -0000 1.1 +++ sources 20 Jul 2009 16:03:44 -0000 1.2 @@ -0,0 +1 @@ +fa57f434e538bb32bbfa97aface34358 editline-0.2.1.0.tar.gz From astokes at fedoraproject.org Mon Jul 20 16:06:06 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 16:06:06 +0000 (UTC) Subject: rpms/sos/devel sources,1.6,1.7 Message-ID: <20090720160606.95CE411C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14019 Modified Files: sources Log Message: updated sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 6 May 2009 15:33:54 -0000 1.6 +++ sources 20 Jul 2009 16:05:36 -0000 1.7 @@ -1 +1 @@ -7aa30837d431ed2546b26d2ae30cd6bb sos-1.8.tar.gz +548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz From astokes at fedoraproject.org Mon Jul 20 16:07:00 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 16:07:00 +0000 (UTC) Subject: rpms/sos/F-11 sources,1.6,1.7 Message-ID: <20090720160700.DB2C611C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14250 Modified Files: sources Log Message: updated sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 6 May 2009 16:58:46 -0000 1.6 +++ sources 20 Jul 2009 16:06:30 -0000 1.7 @@ -1 +1 @@ -7aa30837d431ed2546b26d2ae30cd6bb sos-1.8.tar.gz +548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz From astokes at fedoraproject.org Mon Jul 20 16:07:48 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 16:07:48 +0000 (UTC) Subject: rpms/sos/F-10 .cvsignore,1.4,1.5 sources,1.7,1.8 Message-ID: <20090720160748.B3DA611C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14509 Modified Files: .cvsignore sources Log Message: updated sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 Jul 2009 15:36:09 -0000 1.4 +++ .cvsignore 20 Jul 2009 16:07:18 -0000 1.5 @@ -0,0 +1 @@ +sos-1.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 20 Jul 2009 15:36:09 -0000 1.7 +++ sources 20 Jul 2009 16:07:18 -0000 1.8 @@ -0,0 +1 @@ +548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz From rjones at fedoraproject.org Mon Jul 20 16:07:48 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Mon, 20 Jul 2009 16:07:48 +0000 (UTC) Subject: rpms/chntpw/devel chntpw-080526-robustness.patch, NONE, 1.1 chntpw.spec, 1.7, 1.8 Message-ID: <20090720160748.5DEBC11C00D5@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/chntpw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14449 Modified Files: chntpw.spec Added Files: chntpw-080526-robustness.patch Log Message: - Three patches from Jim Meyering aiming to improve the general robustness of the code. chntpw-080526-robustness.patch: b/ntreg.c | 10 ++++++---- ntreg.c | 16 +++++++++++++--- 2 files changed, 19 insertions(+), 7 deletions(-) --- NEW FILE chntpw-080526-robustness.patch --- >From jim at meyering.net Mon Jul 20 16:46:56 2009 Return-Path: jim at meyering.net X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on amd.home.annexia.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.2.5 Received: from mail.corp.redhat.com [10.5.5.51] by amd.home.annexia.org with IMAP (fetchmail-6.3.8) for (single-drop); Mon, 20 Jul 2009 16:46:56 +0100 (BST) Received: from zmta02.collab.prod.int.phx2.redhat.com (LHLO zmta02.collab.prod.int.phx2.redhat.com) (10.5.5.32) by mail06.corp.redhat.com with LMTP; Mon, 20 Jul 2009 11:31:43 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by zmta02.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 27CD09E195 for ; Mon, 20 Jul 2009 11:31:43 -0400 (EDT) Received: from zmta02.collab.prod.int.phx2.redhat.com ([127.0.0.1]) by localhost (zmta02.collab.prod.int.phx2.redhat.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TTbuqA5poqWA for ; Mon, 20 Jul 2009 11:31:43 -0400 (EDT) Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by zmta02.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 087319E193 for ; Mon, 20 Jul 2009 11:31:43 -0400 (EDT) Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6KFVfBF002494 for ; Mon, 20 Jul 2009 11:31:42 -0400 Received: from mx.meyering.net (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6KFVeiP013799 for ; Mon, 20 Jul 2009 11:31:41 -0400 Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id D157838154; Mon, 20 Jul 2009 17:31:40 +0200 (CEST) From: Jim Meyering To: "Richard W. M. Jones" Subject: chntpw patches Date: Mon, 20 Jul 2009 17:31:40 +0200 Message-ID: <87my6z8j6r.fsf at meyering.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Status: RO Content-Length: 4197 Lines: 140 Hi Rich, The first two were spotted via inspection. The 3rd one was to address this: $ : > j && valgrind ./reged -e j ~/w/co/chntpw: ==16084== Memcheck, a memory error detector. ==16084== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al. ==16084== Using LibVEX rev 1884, a library for dynamic binary translation. ==16084== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP. ==16084== Using valgrind-3.4.1, a dynamic binary instrumentation framework. ==16084== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al. ==16084== For more details, rerun with: -v ==16084== reged version 0.1 080526, (c) Petter N Hagen ==16084== Invalid read of size 4 ==16084== at 0x407D09: openHive (ntreg.c:2856) ==16084== by 0x4011E3: main (reged.c:103) ==16084== Address 0x4c230d8 is 0 bytes after a block of size 0 alloc'd ==16084== at 0x4A05414: calloc (vg_replace_malloc.c:397) ==16084== by 0x407C5C: openHive (ntreg.c:2840) ==16084== by 0x4011E3: main (reged.c:103) openHive(j): File does not seem to be a registry hive! Simple registry editor. ? for help. ==16084== ==16084== Invalid read of size 2 ==16084== at 0x403C4D: get_abs_path (ntreg.c:1204) ==16084== by 0x408D57: regedit_interactive (edlib.c:379) ==16084== by 0x401277: main (reged.c:111) ==16084== Address 0x4c230dc is 4 bytes after a block of size 0 alloc'd ==16084== at 0x4A05414: calloc (vg_replace_malloc.c:397) ==16084== by 0x407C5C: openHive (ntreg.c:2840) ==16084== by 0x4011E3: main (reged.c:103) get_abs_path: Not a 'nk' node! > >From 5c287bb158db10af96b1f1f67d4df49a47323b94 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jul 2009 09:57:13 -0400 Subject: [PATCH 1/3] improved robustness * ntreg.c (fmyinput): Don't clobber ibuf[-1] upon NUL input. --- ntreg.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ntreg.c b/ntreg.c index e27a5b9..1b84410 100644 --- a/ntreg.c +++ b/ntreg.c @@ -82,14 +82,16 @@ char *str_dup( const char *str ) int fmyinput(char *prmpt, char *ibuf, int maxlen) { - + int len; printf("%s",prmpt); fgets(ibuf,maxlen+1,stdin); + len = strlen(ibuf); - ibuf[strlen(ibuf)-1] = 0; + if (len) + ibuf[len-1] = 0; - return(strlen(ibuf)); + return len; } /* Print len number of hexbytes */ -- 1.6.2.5 >From b9bfb44aa1bff1f9b7badf65425f8190352966a0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jul 2009 10:04:23 -0400 Subject: [PATCH 2/3] robustness: avoid low-memory segfault * ntreg.c (convert_string): Don't segfault upon low memory. --- ntreg.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ntreg.c b/ntreg.c index 1b84410..08f9124 100644 --- a/ntreg.c +++ b/ntreg.c @@ -2585,7 +2585,10 @@ char * convert_string(void *string, int len) int i, k; int reallen = len / 2; char *cstring = (char *)malloc(reallen); - + if (cstring == NULL) { + printf("FATAL! convert_string: malloc() failed! Out of memory?\n"); + abort(); + } for(i = 0, k = 0; i < len; i += 2, k++) { cstring[k] = ((char *)string)[i]; -- 1.6.2.5 >From 81ae3189a8dffcdb3db7229cbe992ed12b8d1327 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jul 2009 11:04:38 -0400 Subject: [PATCH 3/3] robustness: avoid malfunction for too-small hive file * ntreg.c (openHive): Don't read uninitialized when file is too small. --- ntreg.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ntreg.c b/ntreg.c index 08f9124..be6b680 100644 --- a/ntreg.c +++ b/ntreg.c @@ -2847,6 +2847,14 @@ struct hive *openHive(char *filename, int mode) return(NULL); } + if (r < sizeof (*hdesc)) { + fprintf(stderr, + "file is too small; got %d bytes while expecting %d or more\n", + r, sizeof (*hdesc)); + closeHive(hdesc); + return(NULL); + } + /* Now run through file, tallying all pages */ /* NOTE/KLUDGE: Assume first page starts at offset 0x1000 */ -- 1.6.2.5 Index: chntpw.spec =================================================================== RCS file: /cvs/pkgs/rpms/chntpw/devel/chntpw.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- chntpw.spec 9 Jun 2009 11:55:18 -0000 1.7 +++ chntpw.spec 20 Jul 2009 16:07:18 -0000 1.8 @@ -1,7 +1,7 @@ Name: chntpw # Version is taken from HISTORY.txt Version: 0.99.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Change passwords in Windows SAM files Group: Applications/Engineering License: GPLv2 @@ -22,6 +22,9 @@ Patch2: chntpw-080526-no-value.p # Patch from Debian (RHBZ#504595). Patch3: chntpw-080526-port-to-gcrypt-debian.patch +# Patches from Jim Meyering to improve robustness of the code. +Patch4: chntpw-080526-robustness.patch + %description This is a utility to (re)set the password of any user that has a valid @@ -45,6 +48,7 @@ mv WinReg.txt.eol WinReg.txt %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build @@ -76,6 +80,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Richard W.M. Jones - 0.99.6-10 +- Three patches from Jim Meyering aiming to improve the general + robustness of the code. + * Mon Jun 8 2009 Richard W.M. Jones - 0.99.6-9 - Compile against libgcrypt instead of OpenSSL (RHBZ#504595). - Compile as a 64 bit native binary on 64 bit platforms. From s4504kr at fedoraproject.org Mon Jul 20 16:10:16 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 16:10:16 +0000 (UTC) Subject: rpms/kaya/devel kaya-0.5.2-conf.patch, NONE, 1.1 kaya.spec, 1.6, 1.7 kaya-0.5.1-ghc.patch, 1.1, NONE kaya-0.5.1-tst.patch, 1.1, NONE Message-ID: <20090720161016.AE92411C049E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15386 Modified Files: kaya.spec Added Files: kaya-0.5.2-conf.patch Removed Files: kaya-0.5.1-ghc.patch kaya-0.5.1-tst.patch Log Message: New upstream release kaya-0.5.2-conf.patch: configure.ac | 3 ++- stdlib/Makefile.in | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE kaya-0.5.2-conf.patch --- diff -up kaya-0.5.2/configure.ac.orig kaya-0.5.2/configure.ac --- kaya-0.5.2/configure.ac.orig 2009-04-12 12:02:24.000000000 +0200 +++ kaya-0.5.2/configure.ac 2009-07-09 19:11:20.000000000 +0200 @@ -248,7 +248,7 @@ PGINC="" AC_ARG_DISABLE([postgres], AS_HELP_STRING([--disable-postgres], [Disable Postgres database support]), - [AC_CHECK_HEADER([postgresql/libpq-fe.h],[PGINC="-I/usr/include/postgresql"]) + [AC_CHECK_HEADER([libpq-fe.h],[PGINC="-I/usr/include"]) AC_CHECK_LIB(pq, PQconnectdb, [PGSTUB="" PGMAN="PostgresDB.libs" @@ -275,6 +275,7 @@ AC_ARG_DISABLE([mysql], AS_HELP_STRING([--disable-mysql], [Disable MySQL database support]), [AC_CHECK_HEADER([mysql/mysql.h]) +LIBS="$LIBS -L${libdir}/mysql" AC_CHECK_LIB(mysqlclient, mysql_init, [AC_MSG_NOTICE([Found libmysqlclient, is it recent enough?]) AC_CHECK_LIB(mysqlclient, mysql_stmt_init, diff -up kaya-0.5.2/stdlib/Makefile.in.orig kaya-0.5.2/stdlib/Makefile.in --- kaya-0.5.2/stdlib/Makefile.in.orig 2009-04-12 12:02:24.000000000 +0200 +++ kaya-0.5.2/stdlib/Makefile.in 2009-07-09 19:15:23.000000000 +0200 @@ -87,7 +87,7 @@ Mime.o: Binary.ki Strings.ki IO.ki Regex Compress.o: Binary.ki zlib_glue.h Strings.ki Regex.ki Reflect.o: Builtins.ki Prelude.ki Pickle.o: Prelude.ki Binary.ki Reflect.ki Strings.ki Parse.ki -Plugins.o: dl.h +Plugins.o: dl.h Array.ki Regex.ki KayaDoc.o: ElementTree.ki Strings.ki HTMLDocument.ki Time.ki Regex.ki ElementTreeData.o: Dict.ki ElementTree.o: XMLentities.ki ElementTreeData.ki Regex.ki Index: kaya.spec =================================================================== RCS file: /cvs/extras/rpms/kaya/devel/kaya.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kaya.spec 5 Mar 2009 21:05:46 -0000 1.6 +++ kaya.spec 20 Jul 2009 16:10:16 -0000 1.7 @@ -3,17 +3,15 @@ %define debug_package %{nil} Name: kaya -Version: 0.5.1 -Release: 4%{?dist} +Version: 0.5.2 +Release: 1%{?dist} Summary: A Statically typed, imperative programming-language Group: Development/Languages License: GPLv2+ and LGPLv2+ URL: http://kayalang.org Source0: http://kayalang.org/src/%{name}-%{version}.tgz -Patch1: kaya-0.5.1-tst.patch -Patch2: kaya-0.5.0-conf.patch -Patch3: kaya-0.5.1-ghc.patch +Patch1: kaya-0.5.2-conf.patch # # ghc is not supported on alpha and ppc64 @@ -23,12 +21,12 @@ ExcludeArch: alpha ppc64 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf -BuildRequires: ghc >= 6.10.0, gc-devel, happy, zlib-devel, gnutls-devel -BuildRequires: libgcrypt-devel, pcre-devel +BuildRequires: ghc >= 6.10.3, gc-devel, happy, zlib-devel, gnutls-devel +BuildRequires: libgcrypt-devel, pcre-devel ghc-editline BuildRequires: postgresql-devel, mysql-devel, sqlite-devel BuildRequires: gd-devel, SDL-devel, mesa-libGL-devel BuildRequires: ncurses-devel, freeglut-devel -BuildRequires: libtool +BuildRequires: libtool, autoconf %description Kaya is a compiled statically typed (ie, types are checked at compile time) @@ -53,12 +51,10 @@ Additional you may find samples for this %prep %setup -q -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%patch1 -p1 -b .orig %build -autoconf +autoreconf CFLAGS=$(echo $RPM_OPT_FLAGS | sed -e 's/\-wp,\-D_FORTIFY_SOURCE=2//g' | \ sed -e 's/\-fstack\-protector//g' ) %configure @@ -99,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Sun Jun 28 2009 Jochen Schmitt 0.5.2-1 +- New upstream release + * Thu Mar 5 2009 Jochen Schmitt 0.5.1-4 - Supporting noarch subpackages --- kaya-0.5.1-ghc.patch DELETED --- --- kaya-0.5.1-tst.patch DELETED --- From dledford at fedoraproject.org Mon Jul 20 16:25:57 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:25:57 +0000 (UTC) Subject: rpms/libibumad/devel .cvsignore, 1.3, 1.4 libibumad.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090720162557.2A34E11C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19137 Modified Files: .cvsignore libibumad.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 22 Apr 2009 13:24:37 -0000 1.3 +++ .cvsignore 20 Jul 2009 16:25:26 -0000 1.4 @@ -1,2 +1,3 @@ libibumad-1.2.0.tar.gz libibumad-1.3.1.tar.gz +libibumad-1.3.2.tar.gz Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/libibumad.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libibumad.spec 22 Apr 2009 13:24:37 -0000 1.4 +++ libibumad.spec 20 Jul 2009 16:25:26 -0000 1.5 @@ -1,6 +1,6 @@ Summary: OpenFabrics Alliance InfiniBand umad (user MAD) library Name: libibumad -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries @@ -9,7 +9,7 @@ Source: http://www.openfabrics.org/downl Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -BuildRequires: libibcommon-devel >= 1.2.0, libtool, automake, autoconf +BuildRequires: libtool, automake, autoconf %description libibumad provides the user MAD library functions which sit on top of @@ -70,6 +70,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibumad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-1 +- Update to latest upstream version +- Remove requirement on libibcommon since that library is no longer needed + * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 13:24:37 -0000 1.3 +++ sources 20 Jul 2009 16:25:26 -0000 1.4 @@ -1 +1 @@ -97b2609f5eaaf4320b39f44a50500b70 libibumad-1.3.1.tar.gz +8d88ad53f0adeb9a5be24754d7c3058c libibumad-1.3.2.tar.gz From dledford at fedoraproject.org Mon Jul 20 16:28:28 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:28:28 +0000 (UTC) Subject: rpms/libibumad/F-11 libibumad.spec,1.4,1.5 sources,1.3,1.4 Message-ID: <20090720162828.89E2511C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19670 Modified Files: libibumad.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/F-11/libibumad.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libibumad.spec 22 Apr 2009 13:23:00 -0000 1.4 +++ libibumad.spec 20 Jul 2009 16:27:58 -0000 1.5 @@ -1,6 +1,6 @@ Summary: OpenFabrics Alliance InfiniBand umad (user MAD) library Name: libibumad -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries @@ -9,7 +9,7 @@ Source: http://www.openfabrics.org/downl Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -BuildRequires: libibcommon-devel >= 1.2.0, libtool, automake, autoconf +BuildRequires: libtool, automake, autoconf %description libibumad provides the user MAD library functions which sit on top of @@ -70,6 +70,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibumad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-1 +- Update to latest upstream version +- Remove requirement on libibcommon since that library is no longer needed + * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/libibumad/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 13:23:00 -0000 1.3 +++ sources 20 Jul 2009 16:27:58 -0000 1.4 @@ -1 +1 @@ -97b2609f5eaaf4320b39f44a50500b70 libibumad-1.3.1.tar.gz +8d88ad53f0adeb9a5be24754d7c3058c libibumad-1.3.2.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 16:34:59 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:34:59 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple-Mason/F-10 .cvsignore, 1.3, 1.4 perl-HTTP-Server-Simple-Mason.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090720163459.869FB11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21053/F-10 Modified Files: .cvsignore perl-HTTP-Server-Simple-Mason.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Dec 2008 15:33:56 -0000 1.3 +++ .cvsignore 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -HTTP-Server-Simple-Mason-0.11.tar.gz +HTTP-Server-Simple-Mason-0.12.tar.gz Index: perl-HTTP-Server-Simple-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-10/perl-HTTP-Server-Simple-Mason.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-HTTP-Server-Simple-Mason.spec 15 Dec 2008 15:33:56 -0000 1.7 +++ perl-HTTP-Server-Simple-Mason.spec 20 Jul 2009 16:34:29 -0000 1.8 @@ -1,5 +1,5 @@ Name: perl-HTTP-Server-Simple-Mason -Version: 0.11 +Version: 0.12 Release: 1%{?dist} Summary: HTTP::Server::Simple::Mason Perl module License: GPL+ or Artistic @@ -55,7 +55,10 @@ make test %{_mandir}/man3/* %changelog -* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 +* Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 +- Upstream update. + +* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 - Upstream update. * Wed Mar 05 2008 Tom "spot" Callaway - 0.09-7 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Dec 2008 15:33:56 -0000 1.3 +++ sources 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -ef54e39b81858cd4498e4db445c5593c HTTP-Server-Simple-Mason-0.11.tar.gz +9331c279f3fadb3ccba3b6ef42647e0b HTTP-Server-Simple-Mason-0.12.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 16:34:59 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:34:59 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple-Mason/devel .cvsignore, 1.3, 1.4 perl-HTTP-Server-Simple-Mason.spec, 1.8, 1.9 sources, 1.3, 1.4 Message-ID: <20090720163459.4B77611C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21053/devel Modified Files: .cvsignore perl-HTTP-Server-Simple-Mason.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Dec 2008 15:33:55 -0000 1.3 +++ .cvsignore 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -HTTP-Server-Simple-Mason-0.11.tar.gz +HTTP-Server-Simple-Mason-0.12.tar.gz Index: perl-HTTP-Server-Simple-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel/perl-HTTP-Server-Simple-Mason.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-HTTP-Server-Simple-Mason.spec 26 Feb 2009 18:04:30 -0000 1.8 +++ perl-HTTP-Server-Simple-Mason.spec 20 Jul 2009 16:34:29 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-HTTP-Server-Simple-Mason -Version: 0.11 -Release: 2%{?dist} +Version: 0.12 +Release: 1%{?dist} Summary: HTTP::Server::Simple::Mason Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -55,10 +55,13 @@ make test %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 +* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 - Upstream update. * Wed Mar 05 2008 Tom "spot" Callaway - 0.09-7 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Dec 2008 15:33:56 -0000 1.3 +++ sources 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -ef54e39b81858cd4498e4db445c5593c HTTP-Server-Simple-Mason-0.11.tar.gz +9331c279f3fadb3ccba3b6ef42647e0b HTTP-Server-Simple-Mason-0.12.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 16:34:59 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:34:59 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple-Mason/F-11 .cvsignore, 1.3, 1.4 perl-HTTP-Server-Simple-Mason.spec, 1.8, 1.9 sources, 1.3, 1.4 Message-ID: <20090720163459.5C80F11C025F@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21053/F-11 Modified Files: .cvsignore perl-HTTP-Server-Simple-Mason.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Dec 2008 15:33:55 -0000 1.3 +++ .cvsignore 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -HTTP-Server-Simple-Mason-0.11.tar.gz +HTTP-Server-Simple-Mason-0.12.tar.gz Index: perl-HTTP-Server-Simple-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-11/perl-HTTP-Server-Simple-Mason.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-HTTP-Server-Simple-Mason.spec 26 Feb 2009 18:04:30 -0000 1.8 +++ perl-HTTP-Server-Simple-Mason.spec 20 Jul 2009 16:34:29 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-HTTP-Server-Simple-Mason -Version: 0.11 -Release: 2%{?dist} +Version: 0.12 +Release: 1%{?dist} Summary: HTTP::Server::Simple::Mason Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -55,10 +55,13 @@ make test %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 0.12-1 +- Upstream update. + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 +* Mon Dec 15 2008 Ralf Cors??pius - 0.11-1 - Upstream update. * Wed Mar 05 2008 Tom "spot" Callaway - 0.09-7 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Dec 2008 15:33:56 -0000 1.3 +++ sources 20 Jul 2009 16:34:29 -0000 1.4 @@ -1 +1 @@ -ef54e39b81858cd4498e4db445c5593c HTTP-Server-Simple-Mason-0.11.tar.gz +9331c279f3fadb3ccba3b6ef42647e0b HTTP-Server-Simple-Mason-0.12.tar.gz From s4504kr at fedoraproject.org Mon Jul 20 16:37:21 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Mon, 20 Jul 2009 16:37:21 +0000 (UTC) Subject: rpms/kaya/devel .cvsignore,1.3,1.4 sources,1.3,1.4 Message-ID: <20090720163722.0481311C00D5@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21824 Modified Files: .cvsignore sources Log Message: Uploading forgotten sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kaya/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Aug 2008 16:25:45 -0000 1.3 +++ .cvsignore 20 Jul 2009 16:37:21 -0000 1.4 @@ -1 +1 @@ -kaya-0.5.1.tgz +kaya-0.5.2.tgz Index: sources =================================================================== RCS file: /cvs/extras/rpms/kaya/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Aug 2008 16:25:45 -0000 1.3 +++ sources 20 Jul 2009 16:37:21 -0000 1.4 @@ -1 +1 @@ -74b56a819ac29f59f8a2ace065784f32 kaya-0.5.1.tgz +df844dc5982b576f5dc11e0e3805d49c kaya-0.5.2.tgz From dledford at fedoraproject.org Mon Jul 20 16:39:19 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:39:19 +0000 (UTC) Subject: rpms/libibumad/devel libibumad-1.3.2-man.patch, NONE, 1.1 libibumad.spec, 1.5, 1.6 Message-ID: <20090720163919.582DC11C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22317 Modified Files: libibumad.spec Added Files: libibumad-1.3.2-man.patch Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed - Fix a problem with man page listing libibumad-1.3.2-man.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libibumad-1.3.2-man.patch --- --- libibumad-1.3.2/Makefile.am.man 2009-07-20 12:36:48.944670111 -0400 +++ libibumad-1.3.2/Makefile.am 2009-07-20 12:36:58.910668774 -0400 @@ -5,7 +5,7 @@ man_MANS = man/umad_debug.3 man/umad_get_ca.3 \ man/umad_get_ca_portguids.3 man/umad_get_cas_names.3 \ - man/umad_get_mad.3 man/umad_get_port.3 man/umad_init.3 \ + man/umad_get_port.3 man/umad_init.3 \ man/umad_open_port.3 man/umad_close_port.3 man/umad_size.3 \ man/umad_status.3 man/umad_alloc.3 man/umad_free.3 \ man/umad_dump.3 man/umad_addr_dump.3 man/umad_get_fd.3 \ Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/libibumad.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libibumad.spec 20 Jul 2009 16:25:26 -0000 1.5 +++ libibumad.spec 20 Jul 2009 16:39:19 -0000 1.6 @@ -6,6 +6,7 @@ License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.openfabrics.org/downloads/management/%{name}-%{version}.tar.gz +Patch0: libibumad-1.3.2-man.patch Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -34,6 +35,7 @@ Static version of the libibumad library. %prep %setup -q +%patch0 -p1 libtoolize --copy --force touch NEWS README autoreconf --install --force @@ -73,6 +75,7 @@ rm -rf $RPM_BUILD_ROOT * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed +- Fix a problem with man page listing * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version From dledford at fedoraproject.org Mon Jul 20 16:40:38 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:40:38 +0000 (UTC) Subject: rpms/libibumad/F-11 libibumad-1.3.2-man.patch, NONE, 1.1 libibumad.spec, 1.5, 1.6 Message-ID: <20090720164038.68C8911C049E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22596 Modified Files: libibumad.spec Added Files: libibumad-1.3.2-man.patch Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed - Fix a problem with man page listing libibumad-1.3.2-man.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libibumad-1.3.2-man.patch --- --- libibumad-1.3.2/Makefile.am.man 2009-07-20 12:36:48.944670111 -0400 +++ libibumad-1.3.2/Makefile.am 2009-07-20 12:36:58.910668774 -0400 @@ -5,7 +5,7 @@ man_MANS = man/umad_debug.3 man/umad_get_ca.3 \ man/umad_get_ca_portguids.3 man/umad_get_cas_names.3 \ - man/umad_get_mad.3 man/umad_get_port.3 man/umad_init.3 \ + man/umad_get_port.3 man/umad_init.3 \ man/umad_open_port.3 man/umad_close_port.3 man/umad_size.3 \ man/umad_status.3 man/umad_alloc.3 man/umad_free.3 \ man/umad_dump.3 man/umad_addr_dump.3 man/umad_get_fd.3 \ Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/F-11/libibumad.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libibumad.spec 20 Jul 2009 16:27:58 -0000 1.5 +++ libibumad.spec 20 Jul 2009 16:40:08 -0000 1.6 @@ -6,6 +6,7 @@ License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.openfabrics.org/downloads/management/%{name}-%{version}.tar.gz +Patch0: libibumad-1.3.2-man.patch Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -34,6 +35,7 @@ Static version of the libibumad library. %prep %setup -q +%patch0 -p1 libtoolize --copy --force touch NEWS README autoreconf --install --force @@ -73,6 +75,7 @@ rm -rf $RPM_BUILD_ROOT * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed +- Fix a problem with man page listing * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version From corsepiu at fedoraproject.org Mon Jul 20 16:43:49 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:43:49 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-Perl/devel .cvsignore, 1.4, 1.5 perl-File-Find-Rule-Perl.spec, 1.8, 1.9 sources, 1.4, 1.5 Message-ID: <20090720164349.B8A8E11C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23478/devel Modified Files: .cvsignore perl-File-Find-Rule-Perl.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jun 2009 08:20:46 -0000 1.4 +++ .cvsignore 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -File-Find-Rule-Perl-1.06.tar.gz +File-Find-Rule-Perl-1.08.tar.gz Index: perl-File-Find-Rule-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel/perl-File-Find-Rule-Perl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-File-Find-Rule-Perl.spec 17 Jun 2009 08:20:46 -0000 1.8 +++ perl-File-Find-Rule-Perl.spec 20 Jul 2009 16:43:19 -0000 1.9 @@ -1,5 +1,5 @@ Name: perl-File-Find-Rule-Perl -Version: 1.06 +Version: 1.08 Release: 1%{?dist} Summary: Common rules for searching for Perl things License: GPL+ or Artistic @@ -60,6 +60,9 @@ cd .. %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 1.06-1 - Upsteam update. - Build in subdir to work-around rpm disturbing testsuite. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Jun 2009 08:20:46 -0000 1.4 +++ sources 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -6203f16bed4d0740a7fcc5515ad965a0 File-Find-Rule-Perl-1.06.tar.gz +c9951ae98727d3f7e8bc91b3d0733a77 File-Find-Rule-Perl-1.08.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 16:43:50 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:43:50 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-Perl/F-11 .cvsignore, 1.4, 1.5 perl-File-Find-Rule-Perl.spec, 1.8, 1.9 sources, 1.4, 1.5 Message-ID: <20090720164350.2BD7511C00D5@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23478/F-11 Modified Files: .cvsignore perl-File-Find-Rule-Perl.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jun 2009 08:20:48 -0000 1.4 +++ .cvsignore 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -File-Find-Rule-Perl-1.06.tar.gz +File-Find-Rule-Perl-1.08.tar.gz Index: perl-File-Find-Rule-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-11/perl-File-Find-Rule-Perl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-File-Find-Rule-Perl.spec 17 Jun 2009 08:20:49 -0000 1.8 +++ perl-File-Find-Rule-Perl.spec 20 Jul 2009 16:43:19 -0000 1.9 @@ -1,5 +1,5 @@ Name: perl-File-Find-Rule-Perl -Version: 1.06 +Version: 1.08 Release: 1%{?dist} Summary: Common rules for searching for Perl things License: GPL+ or Artistic @@ -60,6 +60,9 @@ cd .. %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 1.06-1 - Upsteam update. - Build in subdir to work-around rpm disturbing testsuite. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Jun 2009 08:20:49 -0000 1.4 +++ sources 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -6203f16bed4d0740a7fcc5515ad965a0 File-Find-Rule-Perl-1.06.tar.gz +c9951ae98727d3f7e8bc91b3d0733a77 File-Find-Rule-Perl-1.08.tar.gz From corsepiu at fedoraproject.org Mon Jul 20 16:43:50 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Mon, 20 Jul 2009 16:43:50 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-Perl/F-10 .cvsignore, 1.4, 1.5 perl-File-Find-Rule-Perl.spec, 1.7, 1.8 sources, 1.4, 1.5 Message-ID: <20090720164350.11BCD11C025F@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23478/F-10 Modified Files: .cvsignore perl-File-Find-Rule-Perl.spec sources Log Message: * Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 - Upstream update. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jun 2009 08:20:47 -0000 1.4 +++ .cvsignore 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -File-Find-Rule-Perl-1.06.tar.gz +File-Find-Rule-Perl-1.08.tar.gz Index: perl-File-Find-Rule-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-10/perl-File-Find-Rule-Perl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-File-Find-Rule-Perl.spec 17 Jun 2009 08:20:48 -0000 1.7 +++ perl-File-Find-Rule-Perl.spec 20 Jul 2009 16:43:19 -0000 1.8 @@ -1,5 +1,5 @@ Name: perl-File-Find-Rule-Perl -Version: 1.06 +Version: 1.08 Release: 1%{?dist} Summary: Common rules for searching for Perl things License: GPL+ or Artistic @@ -60,6 +60,9 @@ cd .. %{_mandir}/man3/* %changelog +* Mon Jul 20 2009 Ralf Cors??pius - 1.08-1 +- Upstream update. + * Wed Jun 17 2009 Ralf Cors??pius - 1.06-1 - Upsteam update. - Build in subdir to work-around rpm disturbing testsuite. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 17 Jun 2009 08:20:48 -0000 1.4 +++ sources 20 Jul 2009 16:43:19 -0000 1.5 @@ -1 +1 @@ -6203f16bed4d0740a7fcc5515ad965a0 File-Find-Rule-Perl-1.06.tar.gz +c9951ae98727d3f7e8bc91b3d0733a77 File-Find-Rule-Perl-1.08.tar.gz From davej at fedoraproject.org Mon Jul 20 16:44:01 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 16:44:01 +0000 (UTC) Subject: rpms/kernel/devel Makefile.config, 1.70, 1.71 config-i686-PAE, 1.2, 1.3 config-x86-generic, 1.84, 1.85 kernel.spec, 1.1639, 1.1640 Message-ID: <20090720164401.8E90211C00D5@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23798 Modified Files: Makefile.config config-i686-PAE config-x86-generic kernel.spec Log Message: Don't build 586 kernels any more. Index: Makefile.config =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Makefile.config,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- Makefile.config 5 Feb 2009 21:11:18 -0000 1.70 +++ Makefile.config 20 Jul 2009 16:43:59 -0000 1.71 @@ -5,7 +5,7 @@ CFG = kernel-$(VERSION) CONFIGFILES = \ - $(CFG)-i586.config $(CFG)-i586-debug.config \ + $(CFG)-i686.config $(CFG)-i686-debug.config \ $(CFG)-i686-PAE.config $(CFG)-i686-PAEdebug.config \ $(CFG)-x86_64.config $(CFG)-x86_64-debug.config \ $(CFG)-s390x.config $(CFG)-arm.config \ @@ -68,10 +68,10 @@ kernel-$(VERSION)-i686-PAE.config: confi kernel-$(VERSION)-i686-PAEdebug.config: config-i686-PAE temp-x86-debug-generic perl merge.pl $^ i386 > $@ -kernel-$(VERSION)-i586.config: config-i586 temp-x86-generic +kernel-$(VERSION)-i686.config: /dev/null temp-x86-generic perl merge.pl $^ i386 > $@ -kernel-$(VERSION)-i586-debug.config: config-i586 temp-x86-debug-generic +kernel-$(VERSION)-i686-debug.config: /dev/null temp-x86-debug-generic perl merge.pl $^ i386 > $@ kernel-$(VERSION)-x86_64.config: /dev/null temp-x86_64-generic Index: config-i686-PAE =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-i686-PAE,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- config-i686-PAE 18 Jun 2009 19:05:53 -0000 1.2 +++ config-i686-PAE 20 Jul 2009 16:43:59 -0000 1.3 @@ -1,5 +1,3 @@ -CONFIG_M686=y -# CONFIG_NOHIGHMEM is not set # CONFIG_HIGHMEM4G is not set CONFIG_HIGHMEM64G=y Index: config-x86-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86-generic,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- config-x86-generic 7 Jul 2009 13:31:39 -0000 1.84 +++ config-x86-generic 20 Jul 2009 16:43:59 -0000 1.85 @@ -26,7 +26,7 @@ CONFIG_X86_BIGSMP=y # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set -# CONFIG_M686 is not set +CONFIG_M686=y # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set @@ -75,8 +75,13 @@ CONFIG_X86_CPU_DEBUG=m CONFIG_EDD=m # CONFIG_EDD_OFF is not set # CONFIG_NUMA is not set + +# CONFIG_NOHIGHMEM is not set +CONFIG_HIGHMEM4G=y +# CONFIG_HIGHMEM64G is not set CONFIG_HIGHMEM=y CONFIG_HIGHPTE=y + # CONFIG_MATH_EMULATION is not set CONFIG_MTRR=y CONFIG_X86_PAT=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1639 retrieving revision 1.1640 diff -u -p -r1.1639 -r1.1640 --- kernel.spec 20 Jul 2009 02:58:04 -0000 1.1639 +++ kernel.spec 20 Jul 2009 16:44:00 -0000 1.1640 @@ -197,7 +197,6 @@ Summary: The Linux kernel # We only build -PAE on 686. %ifarch i686 -%define with_up 0 %define with_pae 1 %else %define with_pae 0 @@ -217,7 +216,7 @@ Summary: The Linux kernel %define with_debug 0 %endif -%define all_x86 i386 i586 i686 +%define all_x86 i386 i686 %if %{with_vdso_install} # These arches install vdso/ directories. @@ -520,7 +519,7 @@ Source23: config-generic Source24: config-rhel-generic Source30: config-x86-generic -Source31: config-i586 +Source31: config-i686 Source32: config-i686-PAE Source40: config-x86_64-generic @@ -1885,6 +1884,9 @@ fi # and build. %changelog +* Mon Jul 20 2009 Dave Jones 2.6.31-0.77.rc3.git4 +- Don't build 586 kernels any more. + * Sun Jul 19 2009 Dave Jones 2.6.31-0.75.rc3.git4 - build a 'full' package on i686 (Bill Nottingham) From davej at fedoraproject.org Mon Jul 20 16:45:42 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 16:45:42 +0000 (UTC) Subject: rpms/kernel/devel config-generic, 1.306, 1.307 kernel.spec, 1.1640, 1.1641 Message-ID: <20090720164542.B7FFC11C00D5@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24340 Modified Files: config-generic kernel.spec Log Message: Enable CONFIG_RTC_HCTOSYS (#489494) Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.306 retrieving revision 1.307 diff -u -p -r1.306 -r1.307 --- config-generic 16 Jul 2009 21:24:36 -0000 1.306 +++ config-generic 20 Jul 2009 16:45:12 -0000 1.307 @@ -2177,7 +2177,7 @@ CONFIG_HW_RANDOM_TIMERIOMEM=m # CONFIG_RTC_DEBUG is not set # CONFIG_GEN_RTC is not set CONFIG_RTC_CLASS=y -# CONFIG_RTC_HCTOSYS is not set +CONFIG_RTC_HCTOSYS=y CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1640 retrieving revision 1.1641 diff -u -p -r1.1640 -r1.1641 --- kernel.spec 20 Jul 2009 16:44:00 -0000 1.1640 +++ kernel.spec 20 Jul 2009 16:45:12 -0000 1.1641 @@ -1884,6 +1884,9 @@ fi # and build. %changelog +* Mon Jul 20 2009 Dave Jones 2.6.31-0.78.rc3.git4 +- Enable CONFIG_RTC_HCTOSYS (#489494) + * Mon Jul 20 2009 Dave Jones 2.6.31-0.77.rc3.git4 - Don't build 586 kernels any more. From dledford at fedoraproject.org Mon Jul 20 16:47:29 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:47:29 +0000 (UTC) Subject: rpms/libibumad/devel libibumad.spec,1.6,1.7 Message-ID: <20090720164729.4AA6911C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25074 Modified Files: libibumad.spec Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-2 - Forgot to remove both instances of the libibcommon requires Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/libibumad.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libibumad.spec 20 Jul 2009 16:39:19 -0000 1.6 +++ libibumad.spec 20 Jul 2009 16:46:58 -0000 1.7 @@ -1,7 +1,7 @@ Summary: OpenFabrics Alliance InfiniBand umad (user MAD) library Name: libibumad Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -20,7 +20,7 @@ and management tools, including OpenSM. %package devel Summary: Development files for the libibumad library Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release}, libibcommon-devel +Requires: %{name} = %{version}-%{release} %description devel Development files for the libibumad library. @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibumad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-2 +- Forgot to remove both instances of the libibcommon requires + * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed From dledford at fedoraproject.org Mon Jul 20 16:50:26 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:50:26 +0000 (UTC) Subject: rpms/libibumad/devel libibumad.spec,1.7,1.8 Message-ID: <20090720165026.A1D1011C049B@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26304 Modified Files: libibumad.spec Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-2 - Forgot to remove both instances of the libibcommon requires - Add build requires on glibc-static Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/devel/libibumad.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libibumad.spec 20 Jul 2009 16:46:58 -0000 1.7 +++ libibumad.spec 20 Jul 2009 16:49:56 -0000 1.8 @@ -10,7 +10,7 @@ Patch0: libibumad-1.3.2-man.patch Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -BuildRequires: libtool, automake, autoconf +BuildRequires: libtool, automake, autoconf, glibc-static %description libibumad provides the user MAD library functions which sit on top of @@ -74,6 +74,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Mon Jul 20 2009 Doug Ledford - 1.3.2-2 - Forgot to remove both instances of the libibcommon requires +- Add build requires on glibc-static * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version From dledford at fedoraproject.org Mon Jul 20 16:51:44 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 16:51:44 +0000 (UTC) Subject: rpms/libibumad/F-11 libibumad.spec,1.6,1.7 Message-ID: <20090720165144.DFB0611C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibumad/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27463 Modified Files: libibumad.spec Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-2 - Forgot to remove both instances of the libibcommon requires - Add build requires on glibc-static Index: libibumad.spec =================================================================== RCS file: /cvs/extras/rpms/libibumad/F-11/libibumad.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libibumad.spec 20 Jul 2009 16:40:08 -0000 1.6 +++ libibumad.spec 20 Jul 2009 16:51:43 -0000 1.7 @@ -1,7 +1,7 @@ Summary: OpenFabrics Alliance InfiniBand umad (user MAD) library Name: libibumad Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -10,7 +10,7 @@ Patch0: libibumad-1.3.2-man.patch Url: http://openfabrics.org Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -BuildRequires: libtool, automake, autoconf +BuildRequires: libtool, automake, autoconf, glibc-static %description libibumad provides the user MAD library functions which sit on top of @@ -20,7 +20,7 @@ and management tools, including OpenSM. %package devel Summary: Development files for the libibumad library Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release}, libibcommon-devel +Requires: %{name} = %{version}-%{release} %description devel Development files for the libibumad library. @@ -72,6 +72,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibumad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-2 +- Forgot to remove both instances of the libibcommon requires +- Add build requires on glibc-static + * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Remove requirement on libibcommon since that library is no longer needed From astokes at fedoraproject.org Mon Jul 20 17:04:01 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Mon, 20 Jul 2009 17:04:01 +0000 (UTC) Subject: rpms/sos/F-11 sos.spec,1.10,1.11 Message-ID: <20090720170401.26B9F11C00D5@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32048 Modified Files: sos.spec Log Message: spec update Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-11/sos.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sos.spec 6 May 2009 16:58:46 -0000 1.10 +++ sos.spec 20 Jul 2009 17:04:00 -0000 1.11 @@ -1,11 +1,9 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define _localedir %_datadir/locale - Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 11%{?dist} +Release: 13%{?dist} Group: Application/Tools Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ @@ -14,6 +12,7 @@ BuildArch: noarch Url: http://fedorahosted.org/sos BuildRequires: python-devel Requires: libxml2-python +Requires: tar, bzip2 Provides: sysreport = 1.4.3-13 Obsoletes: sysreport @@ -54,6 +53,11 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Mon Jul 20 2009 Adam Stokes = 1.8-13 +- Add requirements for tar,bzip2 during minimal installs +- More merges from reports against RHEL version of plugins +- Remove unecessary definition of localdir in spec + * Wed May 05 2009 Adam Stokes - 1.8-11 - Remove all instances of sysrq - Consistent macro usage in spec From bioinfornatics at fedoraproject.org Mon Jul 20 17:14:13 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Mon, 20 Jul 2009 17:14:13 +0000 (UTC) Subject: rpms/valide/devel .cvsignore, 1.3, 1.4 import.log, 1.3, 1.4 sources, 1.3, 1.4 valide.spec, 1.3, 1.4 Message-ID: <20090720171413.89E2411C00D5@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2359/devel Modified Files: .cvsignore import.log sources valide.spec Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Jul 2009 17:41:08 -0000 1.3 +++ .cvsignore 20 Jul 2009 17:14:13 -0000 1.4 @@ -1 +1 @@ -valide-20090715svn280.tar.gz +valide-20090720svn291.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 15 Jul 2009 19:05:25 -0000 1.3 +++ import.log 20 Jul 2009 17:14:13 -0000 1.4 @@ -1,3 +1,4 @@ valide-0_5_1-0_11_20090713svn278_fc11:HEAD:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247657817 valide-0_5_1-0_12_20090715svn280_fc11:HEAD:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247679623 valide-0_5_1-0_13_20090715svn280_fc11:HEAD:valide-0.5.1-0.13.20090715svn280.fc11.src.rpm:1247684671 +valide-0_5_1-0_14_20090720svn291_fc11:HEAD:valide-0.5.1-0.14.20090720svn291.fc11.src.rpm:1248110015 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Jul 2009 17:41:08 -0000 1.3 +++ sources 20 Jul 2009 17:14:13 -0000 1.4 @@ -1 +1 @@ -43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz +ed9402d7d6bec482c3aab41085e1fcd1 valide-20090720svn291.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- valide.spec 15 Jul 2009 19:05:25 -0000 1.3 +++ valide.spec 20 Jul 2009 17:14:13 -0000 1.4 @@ -1,16 +1,16 @@ -%global alphatag 20090715 -%global svn_revision svn280 +%global alphatag 20090720 +%global svn_revision svn291 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 -# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 +# svn export -r 291 http://valide.googlecode.com/svn/trunk/ valide-20090720svn291 +# tar -czvf valide-20090720svn291.tar.gz valide-20090720svn291 Name: valide Version: 0.5.1 -Release: 0.13.%{alphatag}%{svn_revision}%{?dist} +Release: 0.14.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 +- Update valide to revision 291 + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.13.20090713svn280 - Fix changelog From rstrode at fedoraproject.org Mon Jul 20 17:20:52 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Mon, 20 Jul 2009 17:20:52 +0000 (UTC) Subject: rpms/gdm/devel gdm-2.27.4-multistack.patch, NONE, 1.1 gdm-system-keyboard.patch, 1.3, 1.4 gdm.spec, 1.475, 1.476 gdm-2.26.0-fix-lang-regex.patch, 1.1, NONE gdm-2.26.1-multistack.patch, 1.1, NONE polkit1.patch, 1.1, NONE xklavier4.patch, 1.1, NONE Message-ID: <20090720172052.08AE411C00D5@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4087 Modified Files: gdm-system-keyboard.patch gdm.spec Added Files: gdm-2.27.4-multistack.patch Removed Files: gdm-2.26.0-fix-lang-regex.patch gdm-2.26.1-multistack.patch polkit1.patch xklavier4.patch Log Message: - Update to 2.27.4 gdm-2.27.4-multistack.patch: b/common/gdm-marshal.list | 1 b/configure.ac | 45 b/daemon/gdm-factory-slave.c | 13 b/daemon/gdm-greeter-server.c | 2 b/daemon/gdm-greeter-server.h | 5 b/daemon/gdm-product-slave.c | 47 b/daemon/gdm-session-direct.c | 14 b/daemon/gdm-session-private.h | 3 b/daemon/gdm-session-relay.c | 29 b/daemon/gdm-session-worker-job.c | 11 b/daemon/gdm-session-worker-job.h | 2 b/daemon/gdm-session-worker.c | 27 b/daemon/gdm-session.c | 20 b/daemon/gdm-session.h | 9 b/daemon/gdm-simple-slave.c | 3 b/daemon/test-session.c | 14 b/gui/simple-greeter/Makefile.am | 4 b/gui/simple-greeter/gdm-chooser-widget.c | 32 b/gui/simple-greeter/gdm-chooser-widget.h | 3 b/gui/simple-greeter/gdm-greeter-client.c | 18 b/gui/simple-greeter/gdm-greeter-client.h | 4 b/gui/simple-greeter/gdm-greeter-login-window.c | 91 b/gui/simple-greeter/gdm-greeter-login-window.glade | 39 b/gui/simple-greeter/gdm-greeter-login-window.h | 11 b/gui/simple-greeter/gdm-greeter-plugin.c | 255 + b/gui/simple-greeter/gdm-greeter-plugin.h | 61 b/gui/simple-greeter/gdm-greeter-session.c | 5 b/gui/simple-greeter/gdm-plugin-manager.c | 478 +++ b/gui/simple-greeter/gdm-plugin-manager.h | 66 b/gui/simple-greeter/gdm-task-list.c | 198 + b/gui/simple-greeter/gdm-task-list.h | 65 b/gui/simple-greeter/gdm-user-chooser-widget.c | 23 b/gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 46 b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 147 + b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 87 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.c | 93 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.h | 55 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 117 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 62 b/gui/simple-greeter/libgdmsimplegreeter/gdmsimplegreeter.pc.in | 11 b/gui/simple-greeter/plugins/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/Makefile.am | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 299 ++ b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.h | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint.pam | 17 b/gui/simple-greeter/plugins/fingerprint/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/page.ui | 56 b/gui/simple-greeter/plugins/fingerprint/plugin.c | 41 b/gui/simple-greeter/plugins/password/Makefile.am | 53 b/gui/simple-greeter/plugins/password/gdm-password-extension.c | 316 ++ b/gui/simple-greeter/plugins/password/gdm-password-extension.h | 56 b/gui/simple-greeter/plugins/password/gdm-password.pam | 19 b/gui/simple-greeter/plugins/password/page.ui | 56 b/gui/simple-greeter/plugins/password/plugin.c | 41 b/gui/simple-greeter/plugins/smartcard/Makefile.am | 77 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 420 +++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.h | 56 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.c | 1394 ++++++++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.h | 86 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-worker.c | 167 + b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.c | 558 ++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.h | 94 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.pam | 18 b/gui/simple-greeter/plugins/smartcard/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/smartcard/page.ui | 56 b/gui/simple-greeter/plugins/smartcard/plugin.c | 41 configure.ac | 15 daemon/gdm-factory-slave.c | 103 daemon/gdm-greeter-server.c | 187 + daemon/gdm-greeter-server.h | 19 daemon/gdm-product-slave.c | 263 + daemon/gdm-session-direct.c | 1132 +++++--- daemon/gdm-session-private.h | 29 daemon/gdm-session-relay.c | 190 + daemon/gdm-session-worker-job.c | 70 daemon/gdm-session-worker-job.h | 6 daemon/gdm-session-worker.c | 18 daemon/gdm-session.c | 229 + daemon/gdm-session.h | 59 daemon/gdm-simple-slave.c | 223 + daemon/test-session.c | 22 gui/simple-greeter/Makefile.am | 15 gui/simple-greeter/gdm-chooser-widget.c | 9 gui/simple-greeter/gdm-chooser-widget.h | 3 gui/simple-greeter/gdm-greeter-client.c | 209 + gui/simple-greeter/gdm-greeter-client.h | 18 gui/simple-greeter/gdm-greeter-login-window.c | 1147 ++++++-- gui/simple-greeter/gdm-greeter-login-window.glade | 144 - gui/simple-greeter/gdm-greeter-login-window.h | 21 gui/simple-greeter/gdm-greeter-session.c | 133 gui/simple-greeter/gdm-task-list.c | 228 + gui/simple-greeter/gdm-task-list.h | 36 gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 2 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 51 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 13 gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 6 gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 2 gui/simple-greeter/plugins/Makefile.am | 4 gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 10 gui/simple-greeter/plugins/password/gdm-password-extension.c | 7 gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 35 105 files changed, 9643 insertions(+), 1287 deletions(-) --- NEW FILE gdm-2.27.4-multistack.patch --- >From a1ab1c57fa91751f067ff10465f01034bc5c1953 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 13:52:19 -0500 Subject: [PATCH 01/36] Add a comment marking protected api in chooser The chooser widget has methods that only its subclasses are supposed to call. We should mark them as such. --- gui/simple-greeter/gdm-chooser-widget.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/gui/simple-greeter/gdm-chooser-widget.h b/gui/simple-greeter/gdm-chooser-widget.h index 578e613..7e3e59c 100644 --- a/gui/simple-greeter/gdm-chooser-widget.h +++ b/gui/simple-greeter/gdm-chooser-widget.h @@ -136,6 +136,8 @@ int gdm_chooser_widget_get_number_of_items (GdmChooserWidget void gdm_chooser_widget_activate_if_one_item (GdmChooserWidget *widget); void gdm_chooser_widget_propagate_pending_key_events (GdmChooserWidget *widget); +/* Protected + */ void gdm_chooser_widget_loaded (GdmChooserWidget *widget); G_END_DECLS -- 1.6.3.3 >From 4e9cef5860311e3b39d2076f4dc9de5f69dfa51f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 17:44:37 -0500 Subject: [PATCH 02/36] Drop duplicated entry introspection output --- daemon/gdm-greeter-server.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/daemon/gdm-greeter-server.c b/daemon/gdm-greeter-server.c index 2e01d33..cecce83 100644 --- a/daemon/gdm-greeter-server.c +++ b/daemon/gdm-greeter-server.c @@ -752,7 +752,6 @@ do_introspect (DBusConnection *connection, " \n" " \n" " \n" - " \n" " \n" " \n" " \n" -- 1.6.3.3 >From ca75999e3ce75549554efb758c9210e2997cc9f6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 10:07:03 -0500 Subject: [PATCH 03/36] Make lookup_item not warn when passing NULL for args gtk_tree_model_get doesn't like NULL, and we allow NULL for optional return values. We now check each argument for NULL and call gtk_tree_model_get individually N times (one for each argument) instead of just once. --- gui/simple-greeter/gdm-chooser-widget.c | 31 ++++++++++++++++++++++++------- 1 files changed, 24 insertions(+), 7 deletions(-) diff --git a/gui/simple-greeter/gdm-chooser-widget.c b/gui/simple-greeter/gdm-chooser-widget.c index b3f2a0d..4e76439 100644 --- a/gui/simple-greeter/gdm-chooser-widget.c +++ b/gui/simple-greeter/gdm-chooser-widget.c @@ -2157,13 +2157,30 @@ gdm_chooser_widget_lookup_item (GdmChooserWidget *widget, } g_free (active_item_id); - gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, - CHOOSER_IMAGE_COLUMN, image, - CHOOSER_NAME_COLUMN, name, - CHOOSER_PRIORITY_COLUMN, priority, - CHOOSER_ITEM_IS_IN_USE_COLUMN, is_in_use, - CHOOSER_ITEM_IS_SEPARATED_COLUMN, is_separate, - -1); + if (image != NULL) { + gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, + CHOOSER_IMAGE_COLUMN, image, -1); + } + + if (name != NULL) { + gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, + CHOOSER_NAME_COLUMN, name, -1); + } + + if (priority != NULL) { + gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, + CHOOSER_PRIORITY_COLUMN, priority, -1); + } + + if (is_in_use != NULL) { + gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, + CHOOSER_ITEM_IS_IN_USE_COLUMN, is_in_use, -1); + } + + if (is_separate != NULL) { + gtk_tree_model_get (GTK_TREE_MODEL (widget->priv->list_store), &iter, + CHOOSER_ITEM_IS_SEPARATED_COLUMN, is_separate, -1); + } return TRUE; } -- 1.6.3.3 >From 835922303f2b08036727aca11adf256f2209ac0c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 15:35:00 -0500 Subject: [PATCH 04/36] Drop "stopped" signal from worker-job class It was unused, dead code. --- daemon/gdm-session-direct.c | 14 -------------- daemon/gdm-session-worker-job.c | 11 ----------- daemon/gdm-session-worker-job.h | 1 - 3 files changed, 0 insertions(+), 26 deletions(-) diff --git a/daemon/gdm-session-direct.c b/daemon/gdm-session-direct.c index e1ea8a0..e4c8e05 100644 --- a/daemon/gdm-session-direct.c +++ b/daemon/gdm-session-direct.c @@ -1538,13 +1538,6 @@ gdm_session_direct_init (GdmSessionDirect *session) } static void -worker_stopped (GdmSessionWorkerJob *job, - GdmSessionDirect *session) -{ - g_debug ("GdmSessionDirect: Worker job stopped"); -} - -static void worker_started (GdmSessionWorkerJob *job, GdmSessionDirect *session) { @@ -1587,10 +1580,6 @@ start_worker (GdmSessionDirect *session) session->priv->job = gdm_session_worker_job_new (); gdm_session_worker_job_set_server_address (session->priv->job, session->priv->server_address); g_signal_connect (session->priv->job, - "stopped", - G_CALLBACK (worker_stopped), - session); - g_signal_connect (session->priv->job, "started", G_CALLBACK (worker_started), session); @@ -1612,9 +1601,6 @@ static void stop_worker (GdmSessionDirect *session) { g_signal_handlers_disconnect_by_func (session->priv->job, - G_CALLBACK (worker_stopped), - session); - g_signal_handlers_disconnect_by_func (session->priv->job, G_CALLBACK (worker_started), session); g_signal_handlers_disconnect_by_func (session->priv->job, diff --git a/daemon/gdm-session-worker-job.c b/daemon/gdm-session-worker-job.c index 6723464..633d6e2 100644 --- a/daemon/gdm-session-worker-job.c +++ b/daemon/gdm-session-worker-job.c @@ -68,7 +68,6 @@ enum { enum { STARTED, - STOPPED, EXITED, DIED, LAST_SIGNAL @@ -390,16 +389,6 @@ gdm_session_worker_job_class_init (GdmSessionWorkerJobClass *klass) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); - signals [STOPPED] = - g_signal_new ("stopped", - G_OBJECT_CLASS_TYPE (object_class), - G_SIGNAL_RUN_FIRST, - G_STRUCT_OFFSET (GdmSessionWorkerJobClass, stopped), - NULL, - NULL, - g_cclosure_marshal_VOID__VOID, - G_TYPE_NONE, - 0); signals [EXITED] = g_signal_new ("exited", G_OBJECT_CLASS_TYPE (object_class), diff --git a/daemon/gdm-session-worker-job.h b/daemon/gdm-session-worker-job.h index d42eb37..5ad1c92 100644 --- a/daemon/gdm-session-worker-job.h +++ b/daemon/gdm-session-worker-job.h [...17728 lines suppressed...] - g_hash_table_iter_init (&iter, session->priv->conversations); - while (g_hash_table_iter_next (&iter, &key, &value)) { - GdmSessionConversation *conversation; - - conversation = (GdmSessionConversation *) value; - - stop_conversation (conversation); - } - - g_hash_table_remove_all (session->priv->conversations); + stop_all_other_conversations (session, NULL); } static void diff --git a/daemon/gdm-simple-slave.c b/daemon/gdm-simple-slave.c index 337718b..63ea82c 100644 --- a/daemon/gdm-simple-slave.c +++ b/daemon/gdm-simple-slave.c @@ -575,7 +575,7 @@ on_session_conversation_stopped (GdmSession *session, gboolean res; g_debug ("GdmSimpleSlave: conversation stopped"); - if (slave->priv->greeter_server != NULL) { + if (slave->priv->greeter != NULL) { res = gdm_greeter_server_conversation_stopped (slave->priv->greeter_server, service_name); if (! res) { -- 1.6.3.3 >From ba40486a7e8a7be80b16a89d8a0f7fd264ddfe21 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 21 Apr 2009 15:30:28 -0400 Subject: [PATCH 33/36] When one PAM conv. wins, actually stop the others We weren't properly keeping the winning conversation around in the previous commit --- daemon/gdm-session-direct.c | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/daemon/gdm-session-direct.c b/daemon/gdm-session-direct.c index e63e453..2899ea2 100644 --- a/daemon/gdm-session-direct.c +++ b/daemon/gdm-session-direct.c @@ -2293,13 +2293,20 @@ stop_all_other_conversations (GdmSessionDirect *session, conversation = (GdmSessionConversation *) value; if (conversation == conversation_to_keep) { - continue; + g_hash_table_iter_steal (&iter); + g_free (key); + } else { + stop_conversation (conversation); } - - stop_conversation (conversation); } g_hash_table_remove_all (session->priv->conversations); + + if (conversation_to_keep != NULL) { + g_hash_table_insert (session->priv->conversations, + g_strdup (conversation_to_keep->service_name), + conversation_to_keep); + } } static void -- 1.6.3.3 >From c4ebe26db9c963d587694d0197e145e086ec43ca Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 13 May 2009 13:43:33 -0400 Subject: [PATCH 34/36] Don't send auth-failed when worker dies Authentication hasn't failed, it just got aborted before it could. This prevents a crash that happens when switching runlevels while the login screen is up. --- daemon/gdm-session-direct.c | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/daemon/gdm-session-direct.c b/daemon/gdm-session-direct.c index 2899ea2..689e4cf 100644 --- a/daemon/gdm-session-direct.c +++ b/daemon/gdm-session-direct.c @@ -87,7 +87,6 @@ struct _GdmSessionDirectPrivate GList *pending_connections; - guint32 is_authenticated : 1; guint32 is_running : 1; GPid session_pid; @@ -1761,9 +1760,7 @@ worker_exited (GdmSessionWorkerJob *job, g_debug ("GdmSessionDirect: Worker job exited: %d", code); g_object_ref (conversation); - if (!conversation->session->priv->is_authenticated) { - _gdm_session_authentication_failed (GDM_SESSION (conversation->session), NULL); - } else if (conversation->session->priv->is_running) { + if (conversation->session->priv->is_running) { _gdm_session_session_exited (GDM_SESSION (conversation->session), code); } @@ -1781,9 +1778,7 @@ worker_died (GdmSessionWorkerJob *job, g_debug ("GdmSessionDirect: Worker job died: %d", signum); g_object_ref (conversation); - if (!conversation->session->priv->is_authenticated) { - _gdm_session_authentication_failed (GDM_SESSION (conversation->session), NULL); - } else if (conversation->session->priv->is_running) { + if (conversation->session->priv->is_running) { _gdm_session_session_died (GDM_SESSION (conversation->session), signum); } @@ -2398,7 +2393,6 @@ gdm_session_direct_close (GdmSession *session) g_hash_table_remove_all (impl->priv->environment); - impl->priv->is_authenticated = FALSE; impl->priv->is_running = FALSE; } -- 1.6.3.3 >From 68384fcc0d1dfb5b451d4be8136959a037c6c2a6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 16 Jun 2009 08:49:05 -0400 Subject: [PATCH 35/36] Drop bogus conversation = NULL line cancel_pending_query would set conversation to NULL immediately before trying to use the conversation. I probably introduced this bug when converting the code over to work in terms of multiple conversation objects instead of one conversation per session. Spotted by Michael Young: https://bugzilla.redhat.com/show_bug.cgi?id=499489#c9 --- daemon/gdm-session-direct.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/daemon/gdm-session-direct.c b/daemon/gdm-session-direct.c index 689e4cf..7528ae6 100644 --- a/daemon/gdm-session-direct.c +++ b/daemon/gdm-session-direct.c @@ -789,7 +789,6 @@ cancel_pending_query (GdmSessionConversation *conversation) reply = dbus_message_new_error (conversation->message_pending_reply, GDM_SESSION_DBUS_ERROR_CANCEL, "Operation cancelled"); - conversation = NULL; dbus_connection_send (conversation->worker_connection, reply, NULL); dbus_connection_flush (conversation->worker_connection); -- 1.6.3.3 >From 0daaf4814f9f78be4e85bef7f181426c06c5349c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 20 Jul 2009 11:06:59 -0400 Subject: [PATCH 36/36] Drop is_authenticated flag in session It's not used anymore, so no reason to set it. --- daemon/gdm-session-direct.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/daemon/gdm-session-direct.c b/daemon/gdm-session-direct.c index 7528ae6..4b08da3 100644 --- a/daemon/gdm-session-direct.c +++ b/daemon/gdm-session-direct.c @@ -377,7 +377,6 @@ gdm_session_direct_handle_authenticated (GdmSessionDirect *session, dbus_connection_send (conversation->worker_connection, reply, NULL); dbus_message_unref (reply); - session->priv->is_authenticated = TRUE; _gdm_session_authenticated (GDM_SESSION (session), conversation->service_name); return DBUS_HANDLER_RESULT_HANDLED; @@ -405,7 +404,6 @@ gdm_session_direct_handle_authentication_failed (GdmSessionDirect *session, g_debug ("GdmSessionDirect: Emitting 'authentication-failed' signal"); - session->priv->is_authenticated = FALSE; _gdm_session_authentication_failed (GDM_SESSION (session), conversation->service_name, text); return DBUS_HANDLER_RESULT_HANDLED; -- 1.6.3.3 gdm-system-keyboard.patch: configure.ac | 1 daemon/gdm-session-direct.c | 60 +++++++++++++++++++++++++++++++++++++++--- daemon/gdm-session-settings.c | 3 -- 3 files changed, 59 insertions(+), 5 deletions(-) Index: gdm-system-keyboard.patch =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm-system-keyboard.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gdm-system-keyboard.patch 25 Feb 2009 03:56:44 -0000 1.3 +++ gdm-system-keyboard.patch 20 Jul 2009 17:20:51 -0000 1.4 @@ -60,8 +60,8 @@ diff -up gdm-2.25.2/daemon/gdm-session-d + "input.xkb.layout", + NULL); + } -+ result = g_strdup (layout); -+ libhal_free_string (layout); ++ result = g_strdup (layout); ++ libhal_free_string (layout); + } + + libhal_free_string_array (devices); @@ -82,7 +82,7 @@ diff -up gdm-2.25.2/daemon/gdm-session-d { - if (session->priv->saved_layout != NULL) { - return session->priv->saved_layout; -+ if (!session->priv->saved_layout) { ++ if (session->priv->saved_layout == NULL) { + session->priv->saved_layout = get_system_default_layout (session); } @@ -91,20 +91,6 @@ diff -up gdm-2.25.2/daemon/gdm-session-d } static char * -@@ -1971,9 +2025,10 @@ setup_session_environment (GdmSessionDir - "GDM_LANG", - get_language_name (session)); - -- gdm_session_direct_set_environment_variable (session, -- "GDM_KEYBOARD_LAYOUT", -- get_layout_name (session)); -+ if (g_strcmp0 (get_layout_name (session), get_system_default_layout (session)) != 0) -+ gdm_session_direct_set_environment_variable (session, -+ "GDM_KEYBOARD_LAYOUT", -+ get_layout_name (session)); - - gdm_session_direct_set_environment_variable (session, - "DISPLAY", diff -up gdm-2.25.2/daemon/gdm-session-settings.c.system-keyboard gdm-2.25.2/daemon/gdm-session-settings.c --- gdm-2.25.2/daemon/gdm-session-settings.c.system-keyboard 2008-08-26 15:04:00.000000000 -0400 +++ gdm-2.25.2/daemon/gdm-session-settings.c 2009-02-24 22:51:00.158815919 -0500 Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.475 retrieving revision 1.476 diff -u -p -r1.475 -r1.476 --- gdm.spec 2 Jul 2009 19:53:37 -0000 1.475 +++ gdm.spec 20 Jul 2009 17:20:51 -0000 1.476 @@ -15,8 +15,8 @@ Summary: The GNOME Display Manager Name: gdm -Version: 2.26.1 -Release: 13%{?dist} +Version: 2.27.4 +Release: 1%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -31,6 +31,7 @@ Source6: gdm-smartcard-16.png Source7: gdm-smartcard-48.png Source8: gdm-fingerprint-16.png Source9: gdm-fingerprint-48.png +Source10: polkit-gnome-authentication-agent-1.desktop BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Prereq: /usr/sbin/useradd @@ -49,6 +50,7 @@ Requires: ConsoleKit >= %{consolekit_ver Requires: gnome-settings-daemon >= 2.21.92 Requires: iso-codes Requires: gnome-session +Requires: polkit-gnome # since we use it, and pam spams the log if the module is missing Requires: gnome-keyring-pam Requires: plymouth-gdm-hooks @@ -94,15 +96,7 @@ Patch3: gdm-2.23.92-save-root-window.pat # should probably be changed to get the system layout from the X server Patch13: gdm-system-keyboard.patch -Patch19: gdm-2.26.1-multistack.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=498361 -Patch20: polkit1.patch - -# fixed upstream, rh 502778 -Patch22: gdm-2.26.0-fix-lang-regex.patch - -Patch35: xklavier4.patch +Patch19: gdm-2.27.4-multistack.patch # Fedora-specific Patch99: gdm-2.23.1-fedora-logo.patch @@ -147,9 +141,6 @@ The GDM fingerprint plugin provides func %patch13 -p1 -b .system-keyboard %patch19 -p1 -b .multistack -%patch20 -p1 -b .polkit1 -%patch22 -p1 -b .fix-lang-regex -%patch35 -p1 -b .xklavier4 %patch99 -p1 -b .fedora-logo @@ -211,6 +202,9 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/ mkdir -p $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow +# temporarily manually copy this +cp -f %{SOURCE10} $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow/polkit-gnome-authentication-agent-1.desktop + rm -rf $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper find $RPM_BUILD_ROOT -name '*.a' -delete @@ -391,6 +385,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Mon Jul 20 2009 Ray Strode 1:2.27.4-1 +- Update to 2.27.4 + * Thu Jul 02 2009 Adam Jackson 1:2.26.1-13 - Requires: xorg-x11-xkb-utils -> Requires: setxkbmap --- gdm-2.26.0-fix-lang-regex.patch DELETED --- --- gdm-2.26.1-multistack.patch DELETED --- --- polkit1.patch DELETED --- --- xklavier4.patch DELETED --- From ajax at fedoraproject.org Mon Jul 20 17:25:11 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 17:25:11 +0000 (UTC) Subject: rpms/lftp/devel lftp.spec,1.80,1.81 Message-ID: <20090720172511.4004311C00D5@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/lftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5738 Modified Files: lftp.spec Log Message: * Mon Jul 20 2009 Adam Jackson 3.7.14-4 - Split utility scripts to subpackage to isolate perl dependency. (#510813) Index: lftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/lftp/devel/lftp.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- lftp.spec 10 Jun 2009 14:33:11 -0000 1.80 +++ lftp.spec 20 Jul 2009 17:24:40 -0000 1.81 @@ -1,7 +1,7 @@ Summary: A sophisticated file transfer program Name: lftp Version: 3.7.14 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Internet Source0: ftp://ftp.yar.ru/lftp/lftp-%{version}.tar.gz @@ -17,6 +17,15 @@ control and uses the readline library fo mirroring, and can transfer several files in parallel. It is designed with reliability in mind. +%package scripts +Summary: Scripts for lftp +Group: Applications/Internet +Requires: lftp >= %{version}-%{release} +BuildArch: noarch + +%description scripts +Utility scripts for use with lftp. + %prep %setup -q @@ -60,10 +69,8 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc BUGS COPYING ChangeLog FAQ FEATURES README* NEWS THANKS TODO %config(noreplace) %{_sysconfdir}/lftp.conf - %{_bindir}/* %{_mandir}/*/* -%{_datadir}/lftp %dir %{_libdir}/lftp %dir %{_libdir}/lftp/%{version} %{_libdir}/lftp/%{version}/cmd-mirror.so @@ -78,7 +85,15 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/liblftp-jobs.so.* %{_libdir}/liblftp-tasks.so.* +%files scripts +%defattr(-,root,root,-) +%{_datadir}/lftp + + %changelog +* Mon Jul 20 2009 Adam Jackson 3.7.14-4 +- Split utility scripts to subpackage to isolate perl dependency. (#510813) + * Wed Jun 10 2009 Jiri Skala - 3.7.14-3 - fixed bug in ls via http - corrupted file names containing spaces From jkeating at fedoraproject.org Mon Jul 20 17:42:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 20 Jul 2009 17:42:10 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/devel trac-mercurial-plugin-hg-1.3.patch, NONE, 1.1 trac-mercurial-plugin.spec, 1.8, 1.9 Message-ID: <20090720174210.7784011C00D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9445 Modified Files: trac-mercurial-plugin.spec Added Files: trac-mercurial-plugin-hg-1.3.patch Log Message: * Mon Jul 20 2009 Jesse Keating - 0.11.0.7-5.20090715svn8072 - Patch for hg 1.3 trac-mercurial-plugin-hg-1.3.patch: backend.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- NEW FILE trac-mercurial-plugin-hg-1.3.patch --- Index: tracext/hg/backend.py =================================================================== --- tracext/hg/backend.py (revision 8352) +++ tracext/hg/backend.py (working copy) @@ -257,9 +257,8 @@ class trac_ui(ui): def __init__(self, log, *args, **kwargs): - kwargs = kwargs.copy() - kwargs['interactive'] = False - ui.__init__(self, *args, **kwargs) + ui.__init__(self, *args) + self.setconfig('ui', 'interactive', 'off') self.log = log def write(self, *args): Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- trac-mercurial-plugin.spec 15 Jul 2009 20:26:06 -0000 1.8 +++ trac-mercurial-plugin.spec 20 Jul 2009 17:41:40 -0000 1.9 @@ -5,7 +5,7 @@ Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 4.20090715svn%{svnrev}%{?dist} +Release: 5.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -17,18 +17,21 @@ URL: http://trac.edgewall.org # echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz +# This patch is from http://trac.edgewall.org/attachment/ticket/8460/patch_8352_for_hg_1.3 +Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial >= 1.2, trac >= 0.11, python-setuptools +Requires: mercurial >= 1.3, trac >= 0.11, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. %prep %setup -n TracMercurial-%{version} -q +%patch0 -p0 %build @@ -56,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Jesse Keating - 0.11.0.7-5.20090715svn8072 +- Patch for hg 1.3 + * Wed Jul 15 2009 Jesse Keating - 0.11.0.7-4.20090715svn8072 - Update tarball generation steps From dledford at fedoraproject.org Mon Jul 20 17:46:47 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 17:46:47 +0000 (UTC) Subject: rpms/libibmad/devel .cvsignore, 1.3, 1.4 libibmad.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090720174647.9218311C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibmad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10971 Modified Files: .cvsignore libibmad.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Require the same version of libibumad as our version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libibmad/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 22 Apr 2009 13:30:31 -0000 1.3 +++ .cvsignore 20 Jul 2009 17:46:46 -0000 1.4 @@ -1,2 +1,3 @@ libibmad-1.2.0.tar.gz libibmad-1.3.1.tar.gz +libibmad-1.3.2.tar.gz Index: libibmad.spec =================================================================== RCS file: /cvs/extras/rpms/libibmad/devel/libibmad.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libibmad.spec 22 Apr 2009 13:30:31 -0000 1.4 +++ libibmad.spec 20 Jul 2009 17:46:46 -0000 1.5 @@ -1,13 +1,13 @@ Summary: OpenFabrics Alliance InfiniBand MAD library Name: libibmad -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.openfabrics.org/downloads/management/%{name}-%{version}.tar.gz Url: http://openfabrics.org/ -BuildRequires: libibumad-devel >= 1.3.0, libtool, automake, autoconf +BuildRequires: libibumad-devel = %{version}, libtool, automake, autoconf, glibc-static Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -69,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibmad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-1 +- Update to latest upstream version +- Require the same version of libibumad as our version + * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/libibmad/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 13:30:31 -0000 1.3 +++ sources 20 Jul 2009 17:46:46 -0000 1.4 @@ -1 +1 @@ -e60b1c787d7cd2768967ca4766238210 libibmad-1.3.1.tar.gz +b3af39af187b0d7da13f15fd2fc7987d libibmad-1.3.2.tar.gz From dledford at fedoraproject.org Mon Jul 20 17:47:07 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 17:47:07 +0000 (UTC) Subject: rpms/libibmad/F-11 libibmad.spec,1.4,1.5 sources,1.3,1.4 Message-ID: <20090720174707.3759511C00D5@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/libibmad/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11201 Modified Files: libibmad.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Require the same version of libibumad as our version Index: libibmad.spec =================================================================== RCS file: /cvs/extras/rpms/libibmad/F-11/libibmad.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libibmad.spec 22 Apr 2009 13:49:22 -0000 1.4 +++ libibmad.spec 20 Jul 2009 17:47:04 -0000 1.5 @@ -1,13 +1,13 @@ Summary: OpenFabrics Alliance InfiniBand MAD library Name: libibmad -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.openfabrics.org/downloads/management/%{name}-%{version}.tar.gz Url: http://openfabrics.org/ -BuildRequires: libibumad-devel >= 1.3.0, libtool, automake, autoconf +BuildRequires: libibumad-devel = %{version}, libtool, automake, autoconf, glibc-static Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -69,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibmad.a %changelog +* Mon Jul 20 2009 Doug Ledford - 1.3.2-1 +- Update to latest upstream version +- Require the same version of libibumad as our version + * Wed Apr 22 2009 Doug Ledford - 1.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/libibmad/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 13:49:22 -0000 1.3 +++ sources 20 Jul 2009 17:47:05 -0000 1.4 @@ -1 +1 @@ -e60b1c787d7cd2768967ca4766238210 libibmad-1.3.1.tar.gz +b3af39af187b0d7da13f15fd2fc7987d libibmad-1.3.2.tar.gz From jkeating at fedoraproject.org Mon Jul 20 17:47:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 20 Jul 2009 17:47:57 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-11 trac-mercurial-plugin-hg-1.3.patch, NONE, 1.1 import.log, 1.1, 1.2 trac-mercurial-plugin.spec, 1.7, 1.8 Message-ID: <20090720174757.856A511C00D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11578/F-11 Modified Files: import.log trac-mercurial-plugin.spec Added Files: trac-mercurial-plugin-hg-1.3.patch Log Message: Backport fix for hg 1.3 trac-mercurial-plugin-hg-1.3.patch: backend.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- NEW FILE trac-mercurial-plugin-hg-1.3.patch --- Index: tracext/hg/backend.py =================================================================== --- tracext/hg/backend.py (revision 8352) +++ tracext/hg/backend.py (working copy) @@ -257,9 +257,8 @@ class trac_ui(ui): def __init__(self, log, *args, **kwargs): - kwargs = kwargs.copy() - kwargs['interactive'] = False - ui.__init__(self, *args, **kwargs) + ui.__init__(self, *args) + self.setconfig('ui', 'interactive', 'off') self.log = log def write(self, *args): Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 15 Jul 2009 20:34:31 -0000 1.1 +++ import.log 20 Jul 2009 17:47:27 -0000 1.2 @@ -1 +1,2 @@ trac-mercurial-plugin-0_11_0_7-4_20090715svn8072_fc12:F-11:trac-mercurial-plugin-0.11.0.7-4.20090715svn8072.fc12.src.rpm:1247689927 +trac-mercurial-plugin-0_11_0_7-5_20090715svn8072_fc12:F-11:trac-mercurial-plugin-0.11.0.7-5.20090715svn8072.fc12.src.rpm:1248111961 Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/trac-mercurial-plugin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- trac-mercurial-plugin.spec 15 Jul 2009 20:34:31 -0000 1.7 +++ trac-mercurial-plugin.spec 20 Jul 2009 17:47:27 -0000 1.8 @@ -5,7 +5,7 @@ Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 4.20090715svn%{svnrev}%{?dist} +Release: 5.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -17,18 +17,21 @@ URL: http://trac.edgewall.org # echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz +# This patch is from http://trac.edgewall.org/attachment/ticket/8460/patch_8352_for_hg_1.3 +Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial >= 1.2, trac >= 0.11, python-setuptools +Requires: mercurial >= 1.3, trac >= 0.11, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. %prep %setup -n TracMercurial-%{version} -q +%patch0 -p0 %build @@ -56,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Jesse Keating - 0.11.0.7-5.20090715svn8072 +- Patch for hg 1.3 + * Wed Jul 15 2009 Jesse Keating - 0.11.0.7-4.20090715svn8072 - Update tarball generation steps From bioinfornatics at fedoraproject.org Mon Jul 20 17:48:26 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Mon, 20 Jul 2009 17:48:26 +0000 (UTC) Subject: rpms/valide/F-10 .cvsignore, 1.3, 1.4 import.log, 1.2, 1.3 sources, 1.3, 1.4 valide.spec, 1.2, 1.3 Message-ID: <20090720174826.9C03511C00D5@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11774/F-10 Modified Files: .cvsignore import.log sources valide.spec Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Jul 2009 17:56:31 -0000 1.3 +++ .cvsignore 20 Jul 2009 17:47:55 -0000 1.4 @@ -1 +1 @@ -valide-20090715svn280.tar.gz +valide-20090720svn291.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 15 Jul 2009 17:56:32 -0000 1.2 +++ import.log 20 Jul 2009 17:47:55 -0000 1.3 @@ -1,2 +1,3 @@ valide-0_5_1-0_11_20090713svn278_fc11:F-10:valide-0.5.1-0.11.20090713svn278.fc11.src.rpm:1247664182 valide-0_5_1-0_12_20090715svn280_fc11:F-10:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247680569 +valide-0_5_1-0_14_20090720svn291_fc11:F-10:valide-0.5.1-0.14.20090720svn291.fc11.src.rpm:1248112050 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Jul 2009 17:56:32 -0000 1.3 +++ sources 20 Jul 2009 17:47:55 -0000 1.4 @@ -1 +1 @@ -43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz +ed9402d7d6bec482c3aab41085e1fcd1 valide-20090720svn291.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-10/valide.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- valide.spec 15 Jul 2009 17:56:32 -0000 1.2 +++ valide.spec 20 Jul 2009 17:47:55 -0000 1.3 @@ -1,16 +1,16 @@ -%global alphatag 20090715 -%global svn_revision svn280 +%global alphatag 20090720 +%global svn_revision svn291 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 -# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 +# svn export -r 291 http://valide.googlecode.com/svn/trunk/ valide-20090720svn291 +# tar -czvf valide-20090720svn291.tar.gz valide-20090720svn291 Name: valide Version: 0.5.1 -Release: 0.12.%{alphatag}%{svn_revision}%{?dist} +Release: 0.14.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,8 +106,14 @@ fi %{_libdir}/libvalide-*.so %changelog +* Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 +- Update valide to revision 291 + +* Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.13.20090713svn280 +- Fix changelog + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.12.20090713svn280 -- Update to revision +- Update to revision 280 * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.11.20090713svn278 - fixe changelog From bioinfornatics at fedoraproject.org Mon Jul 20 17:51:05 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Mon, 20 Jul 2009 17:51:05 +0000 (UTC) Subject: rpms/valide/F-11 .cvsignore, 1.3, 1.4 import.log, 1.2, 1.3 sources, 1.3, 1.4 valide.spec, 1.3, 1.4 Message-ID: <20090720175106.4D27C11C00D5@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12656/F-11 Modified Files: .cvsignore import.log sources valide.spec Log Message: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Jul 2009 17:54:23 -0000 1.3 +++ .cvsignore 20 Jul 2009 17:50:34 -0000 1.4 @@ -1 +1 @@ -valide-20090715svn280.tar.gz +valide-20090720svn291.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 15 Jul 2009 19:17:59 -0000 1.2 +++ import.log 20 Jul 2009 17:50:34 -0000 1.3 @@ -1,2 +1,3 @@ valide-0_5_1-0_12_20090715svn280_fc11:F-11:valide-0.5.1-0.12.20090715svn280.fc11.src.rpm:1247680422 valide-0_5_1-0_13_20090715svn280_fc11:F-11:valide-0.5.1-0.13.20090715svn280.fc11.src.rpm:1247685453 +valide-0_5_1-0_14_20090720svn291_fc11:F-11:valide-0.5.1-0.14.20090720svn291.fc11.src.rpm:1248112158 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Jul 2009 17:54:24 -0000 1.3 +++ sources 20 Jul 2009 17:50:34 -0000 1.4 @@ -1 +1 @@ -43cbbdf742003110f7112580da8fe73a valide-20090715svn280.tar.gz +ed9402d7d6bec482c3aab41085e1fcd1 valide-20090720svn291.tar.gz Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/valide.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- valide.spec 15 Jul 2009 19:17:59 -0000 1.3 +++ valide.spec 20 Jul 2009 17:50:34 -0000 1.4 @@ -1,16 +1,16 @@ -%global alphatag 20090715 -%global svn_revision svn280 +%global alphatag 20090720 +%global svn_revision svn291 %global gtk2_version 2.11.0 %global vala_version 0.7.3 # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 280 http://valide.googlecode.com/svn/trunk/ valide-20090715svn280 -# tar -czvf valide-20090715svn280.tar.gz valide-20090715svn280 +# svn export -r 291 http://valide.googlecode.com/svn/trunk/ valide-20090720svn291 +# tar -czvf valide-20090720svn291.tar.gz valide-20090720svn291 Name: valide Version: 0.5.1 -Release: 0.13.%{alphatag}%{svn_revision}%{?dist} +Release: 0.14.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 +- Update valide to revision 291 + * Tue Jul 14 2009 Jonathan MERCIER 0.5.1-0.13.20090713svn280 - Fix changelog From rstrode at fedoraproject.org Mon Jul 20 17:54:18 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Mon, 20 Jul 2009 17:54:18 +0000 (UTC) Subject: rpms/gdm/devel polkit-gnome-authentication-agent-1.desktop, NONE, 1.1 .cvsignore, 1.76, 1.77 sources, 1.111, 1.112 Message-ID: <20090720175418.B8DAE11C00D4@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14835 Modified Files: .cvsignore sources Added Files: polkit-gnome-authentication-agent-1.desktop Log Message: adding missing file --- NEW FILE polkit-gnome-authentication-agent-1.desktop --- [Desktop Entry] Type=Application Name=PolicyKit Authentication Agent Exec=/usr/libexec/polkit-gnome-authentication-agent-1 OnlyShowIn=GNOME; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/.cvsignore,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- .cvsignore 14 Apr 2009 15:04:19 -0000 1.76 +++ .cvsignore 20 Jul 2009 17:53:48 -0000 1.77 @@ -1 +1 @@ -gdm-2.26.1.tar.bz2 +gdm-2.27.4.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/sources,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- sources 14 Apr 2009 15:04:19 -0000 1.111 +++ sources 20 Jul 2009 17:53:48 -0000 1.112 @@ -1 +1 @@ -c2c15f8b741962f278fa7e790aaa9a2b gdm-2.26.1.tar.bz2 +82f19b1c68d70638d6f4a6676b1b438e gdm-2.27.4.tar.bz2 From mtasaka at fedoraproject.org Mon Jul 20 18:01:30 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Mon, 20 Jul 2009 18:01:30 +0000 (UTC) Subject: rpms/kazehakase/devel kazehakase-rev3773-gtk021705.patch, NONE, 1.1 kazehakase.spec, 1.85, 1.86 Message-ID: <20090720180130.89E2911C00D4@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kazehakase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17206 Modified Files: kazehakase.spec Added Files: kazehakase-rev3773-gtk021705.patch Log Message: * Tue Jul 21 2009 Mamoru Tasaka - 0.5.6-14.svn3773_trunk - Attempt to compile with GTK 2.17.5 kazehakase-rev3773-gtk021705.patch: kz-entry.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- NEW FILE kazehakase-rev3773-gtk021705.patch --- Index: src/widget/kz-entry.c =================================================================== --- src/widget/kz-entry.c (revision 3773) +++ src/widget/kz-entry.c (working copy) @@ -514,7 +514,7 @@ if (entry->visible) { - g_string_prepend_len (tmp_string, entry->text, entry->n_bytes); + g_string_prepend_len (tmp_string, entry->text, -1); g_string_insert (tmp_string, cursor_index, preedit_string); } else @@ -523,7 +523,7 @@ gint preedit_len_chars; gunichar invisible_char; - ch_len = g_utf8_strlen (entry->text, entry->n_bytes); + ch_len = g_utf8_strlen (entry->text, -1); preedit_len_chars = g_utf8_strlen (preedit_string, -1); ch_len += preedit_len_chars; @@ -555,9 +555,9 @@ } else { - if (entry->visible) + if (entry->visible && entry->text) { - pango_layout_set_text (layout, entry->text, entry->n_bytes); + pango_layout_set_text (layout, entry->text, -1); } else { @@ -1372,7 +1372,7 @@ if (entry->backtext && !GTK_WIDGET_HAS_FOCUS(widget) && - GTK_ENTRY(entry)->text[0] == '\0') + ((! GTK_ENTRY(entry)->text) || GTK_ENTRY(entry)->text[0] == '\0')) { PangoLayout *layout; layout = gtk_widget_create_pango_layout (widget, Index: kazehakase.spec =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/kazehakase.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- kazehakase.spec 1 Jul 2009 02:09:59 -0000 1.85 +++ kazehakase.spec 20 Jul 2009 18:01:30 -0000 1.86 @@ -34,7 +34,7 @@ %define svnver 3773_trunk -%define fedorarel 13 +%define fedorarel 14 %define _release %{fedorarel}%{?usesvn:.svn%svnver} %if 0%{?fedora} < 1 @@ -54,6 +54,7 @@ URL: http://kazehakase.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/kazehakase/%{repoid}/%{name}-%{version}%{?usesvn:-svn%svnver}.tar.gz Patch11: kazehakase-svn3756_trunk-workaround-rh447444.patch Patch14: kazehakase-0.5.6-rev3769-embed-vendor-version.patch +Patch15: kazehakase-rev3773-gtk021705.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: expat-devel @@ -181,6 +182,7 @@ This package uses WebKit for HTML render %patch11 -p0 -b .rhbug %patch14 -p1 -b .evr +%patch15 -p0 -b .gtk %if %{need_autogen} sh autogen.sh @@ -319,6 +321,9 @@ desktop-file-install \ %endif %changelog +* Tue Jul 21 2009 Mamoru Tasaka - 0.5.6-14.svn3773_trunk +- Attempt to compile with GTK 2.17.5 + * Wed Jul 1 2009 Mamoru Tasaka - Rebuild From hno at fedoraproject.org Mon Jul 20 18:02:10 2009 From: hno at fedoraproject.org (=?utf-8?q?Henrik_Nordstr=C3=B6m?=) Date: Mon, 20 Jul 2009 18:02:10 +0000 (UTC) Subject: rpms/bzr/devel .cvsignore, 1.48, 1.49 bzr.spec, 1.67, 1.68 sources, 1.48, 1.49 Message-ID: <20090720180210.7081911C00D4@cvs1.fedora.phx.redhat.com> Author: hno Update of /cvs/pkgs/rpms/bzr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17335 Modified Files: .cvsignore bzr.spec sources Log Message: 1.17 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 13 Jul 2009 10:06:16 -0000 1.48 +++ .cvsignore 20 Jul 2009 18:01:39 -0000 1.49 @@ -1,2 +1,2 @@ -bzr-1.17rc1.tar.gz -bzr-1.17rc1.tar.gz.sig +bzr-1.17.tar.gz +bzr-1.17.tar.gz.sig Index: bzr.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/bzr.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- bzr.spec 13 Jul 2009 10:06:16 -0000 1.67 +++ bzr.spec 20 Jul 2009 18:01:39 -0000 1.68 @@ -7,8 +7,8 @@ # bzrrc: release candidate version, if any, line starts with % for rc, # for stable releas (no %). # release: rpm subrelease (0.N for rc candidates, N for stable releases) %define bzrmajor 1.17 -%define bzrrc rc1 -%define release 0.1 +#define bzrrc rc1 +%define release 1 # Magics to get the dots in Release string correct per the above %define subrelease %{?bzrrc:.}%{?bzrrc} @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 20 2009 Henrik Nordstrom - 1.17-1 +- Upgade to 1.17 + * Mon Jul 13 2009 Henrik Nordstrom - 1.17-0.1 - Update to 1.17rc1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 13 Jul 2009 10:06:16 -0000 1.48 +++ sources 20 Jul 2009 18:01:39 -0000 1.49 @@ -1,2 +1,2 @@ -68e978447ca8f9f7d7bbc862acc0c10f bzr-1.17rc1.tar.gz -8da88865c11945d57a6321b4c11639dd bzr-1.17rc1.tar.gz.sig +d772508e60b47a1641fa487c5cf7e08e bzr-1.17.tar.gz +4be8b74d4501934f8bea62839203c42c bzr-1.17.tar.gz.sig From scop at fedoraproject.org Mon Jul 20 18:02:47 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Mon, 20 Jul 2009 18:02:47 +0000 (UTC) Subject: rpms/portecle/devel portecle.spec,1.5,1.6 Message-ID: <20090720180247.A75CF11C00D4@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/portecle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17597 Modified Files: portecle.spec Log Message: * Mon Jul 20 2009 Ville Skytt?? - 1.4-3 - Drop excess arguments to %jpackage_script. Index: portecle.spec =================================================================== RCS file: /cvs/pkgs/rpms/portecle/devel/portecle.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- portecle.spec 27 Feb 2009 01:37:22 -0000 1.5 +++ portecle.spec 20 Jul 2009 18:02:17 -0000 1.6 @@ -2,7 +2,7 @@ Name: portecle Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Multipurpose keystore and certificate tool Group: Applications/System @@ -49,7 +49,7 @@ install -Dpm 644 src/icons/portecle.png desktop-file-install --vendor=fedora --mode=644 \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications src/etc/portecle.desktop -%jpackage_script net.sf.portecle.FPortecle "-splash:%{docdir}/images/splash.png" "" bcprov:portecle portecle portecle +%jpackage_script net.sf.portecle.FPortecle "-splash:%{docdir}/images/splash.png" "" bcprov:portecle portecle %clean @@ -81,6 +81,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 20 2009 Ville Skytt?? - 1.4-3 +- Drop excess arguments to %%jpackage_script. + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mmaslano at fedoraproject.org Mon Jul 20 18:13:06 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 20 Jul 2009 18:13:06 +0000 (UTC) Subject: rpms/cronie/devel .cvsignore, 1.5, 1.6 cronie.spec, 1.18, 1.19 sources, 1.5, 1.6 Message-ID: <20090720181307.0032E11C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/cronie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19635 Modified Files: .cvsignore cronie.spec sources Log Message: *docs* For better cooperation between cronie and anacron, cronie now include anacron as a subpackage. Each hour cron executes scripts from cron.hourly which contains 0anacron executable. 0anacron script checks whether the regular jobs - cron.daily, cron.weekly and cron.monthly - were executed or not. The list of all regular jobs is in /etc/regular-jobs instead of /etc/crontab. Manual pages mentioned options how to set up regularly-jobs to behave the same way as in the previous versions of cron. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 27 Apr 2009 10:22:21 -0000 1.5 +++ .cvsignore 20 Jul 2009 18:12:36 -0000 1.6 @@ -1 +1 @@ -cronie-1.3.tar.gz +cronie-1.4.tar.gz Index: cronie.spec =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/cronie.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cronie.spec 18 Jun 2009 11:42:28 -0000 1.18 +++ cronie.spec 20 Jul 2009 18:12:36 -0000 1.19 @@ -5,19 +5,16 @@ Summary: Cron daemon for executing programs at set times Name: cronie -Version: 1.3 -Release: 2%{?dist} -License: MIT and BSD +Version: 1.4 +Release: 1%{?dist} +License: MIT and BSD and GPLv2 Group: System Environment/Base URL: https://fedorahosted.org/cronie Source0: https://fedorahosted.org/releases/c/r/cronie/%{name}-%{version}.tar.gz -Patch0: reboot-alias-check-the-return-value.patch -#Source0: http://mmaslano.fedorapeople.org/cronie/%{name}-%{version}.tar.gz Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: syslog, bash >= 2.0 Requires: /usr/sbin/sendmail -Requires: anacron Conflicts: sysklogd < 1.4.1 Provides: vixie-cron = 4:4.4 Obsoletes: vixie-cron <= 4:4.3 @@ -46,9 +43,18 @@ scheduled times and related tools. It is has security and configuration enhancements like the ability to use pam and SELinux. +%package anacron +Summary: Utility for running regular jobs +Requires: crontabs +Group: System Environment/Base + +%description anacron +Anacron becames part of cronie. Anacron is used only for running regular jobs. +The default settings execute regular jobs by anacron, however this could be +overloaded in settings. + %prep %setup -q -%patch0 -p1 %build @@ -63,8 +69,10 @@ SELinux. --with-audit \ %endif %if %{with inotify} ---with-inotify +--with-inotify \ %endif +--enable-anacron + make %{?_smp_mflags} %install @@ -80,6 +88,10 @@ mkdir -pm755 $RPM_BUILD_ROOT%{_sysconfdi install -m 755 cronie.init $RPM_BUILD_ROOT%{_initrddir}/crond install -m 644 crond.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/crond touch $RPM_BUILD_ROOT%{_sysconfdir}/cron.deny +install -m 644 contrib/regularly-jobs $RPM_BUILD_ROOT%{_sysconfdir}/regularly-jobs +install -c -m755 contrib/0hourly $RPM_BUILD_ROOT%{_sysconfdir}/cron.d/0hourly +mkdir -pm 755 $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly +install -c -m755 contrib/0anacron $RPM_BUILD_ROOT%{_sysconfdir}/cron.hourly/0anacron %clean rm -rf $RPM_BUILD_ROOT @@ -125,8 +137,21 @@ cp -a /var/lock/subsys/crond /var/lock/s %endif %config(noreplace) %{_sysconfdir}/sysconfig/crond %config(noreplace) %{_sysconfdir}/cron.deny +%config(noreplace) %{_sysconfdir}/regularly-jobs + +%files anacron +%defattr(-,root,root,-) +%{_sbindir}/anacron +%attr(0644,root,root) %{_sysconfdir}/cron.d/0hourly +%attr(0755,root,root) %{_sysconfdir}/cron.hourly/0anacron +%{_mandir}/man5/regularly-jobs.* +%{_mandir}/man5/anacrontab.* +%{_mandir}/man8/anacron.* %changelog +* Mon Jul 20 2009 Marcela Ma??l????ov?? - 1.4-1 +- merge cronie and anacron + * Thu Jun 18 2009 Marcela Ma??l????ov?? - 1.3-2 - 506560 check return value of access Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 27 Apr 2009 10:22:22 -0000 1.5 +++ sources 20 Jul 2009 18:12:36 -0000 1.6 @@ -1 +1 @@ -dbb21448103e80c61d0a2c0f6ec2475c cronie-1.3.tar.gz +10728a81af9f5995a39bf541aaf14422 cronie-1.4.tar.gz From mmaslano at fedoraproject.org Mon Jul 20 18:17:34 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 20 Jul 2009 18:17:34 +0000 (UTC) Subject: rpms/cronie/devel cronie.spec,1.19,1.20 Message-ID: <20090720181734.80C4411C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/cronie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21479 Modified Files: cronie.spec Log Message: Provides/Obsoletes anacron. Index: cronie.spec =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/cronie.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- cronie.spec 20 Jul 2009 18:12:36 -0000 1.19 +++ cronie.spec 20 Jul 2009 18:17:04 -0000 1.20 @@ -18,6 +18,8 @@ Requires: /usr/sbin/sendmail Conflicts: sysklogd < 1.4.1 Provides: vixie-cron = 4:4.4 Obsoletes: vixie-cron <= 4:4.3 +Provides: anacron = 2.3 +Obsoletes: anacron <= 2.3 %if %{with selinux} Requires: libselinux >= 2.0.64 From mmaslano at fedoraproject.org Mon Jul 20 18:22:12 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 20 Jul 2009 18:22:12 +0000 (UTC) Subject: rpms/anacron/devel anacron-2.3-fdclose.patch, 1.2, NONE anacron-2.3-log_jobs_correct.patch, 1.1, NONE anacron-2.3-mail-content-type-77108.patch, 1.2, NONE anacron-2.3-memleaking.patch, 1.2, NONE anacron-2.3-pic.patch, 1.1, NONE anacron-2.3-random.patch, 1.3, NONE anacron-2.3-range-rnd.patch, 1.2, NONE anacron-2.3-range.patch, 1.3, NONE anacron-2.3-spooldir.patch, 1.1, NONE anacron.init, 1.22, NONE anacron.spec, 1.66, NONE anacron_2.3-13.patch, 1.1, NONE anacrontab, 1.8, NONE manAUX_Limit.patch, 1.3, NONE Message-ID: <20090720182212.873FF11C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/anacron/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23057 Removed Files: anacron-2.3-fdclose.patch anacron-2.3-log_jobs_correct.patch anacron-2.3-mail-content-type-77108.patch anacron-2.3-memleaking.patch anacron-2.3-pic.patch anacron-2.3-random.patch anacron-2.3-range-rnd.patch anacron-2.3-range.patch anacron-2.3-spooldir.patch anacron.init anacron.spec anacron_2.3-13.patch anacrontab manAUX_Limit.patch Log Message: This package has been obsoleted by cronie. --- anacron-2.3-fdclose.patch DELETED --- --- anacron-2.3-log_jobs_correct.patch DELETED --- --- anacron-2.3-mail-content-type-77108.patch DELETED --- --- anacron-2.3-memleaking.patch DELETED --- --- anacron-2.3-pic.patch DELETED --- --- anacron-2.3-random.patch DELETED --- --- anacron-2.3-range-rnd.patch DELETED --- --- anacron-2.3-range.patch DELETED --- --- anacron-2.3-spooldir.patch DELETED --- --- anacron.init DELETED --- --- anacron.spec DELETED --- --- anacron_2.3-13.patch DELETED --- --- anacrontab DELETED --- --- manAUX_Limit.patch DELETED --- From suravee at fedoraproject.org Mon Jul 20 18:25:54 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Mon, 20 Jul 2009 18:25:54 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel ca-fix-basename.patch, NONE, 1.1 ca-fix-oprofile-ibs-check.patch, NONE, 1.1 ca-use-lbfd.patch, NONE, 1.1 CodeAnalyst-gui.spec, 1.9, 1.10 Message-ID: <20090720182554.0C1EA11C00D4@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23033 Modified Files: CodeAnalyst-gui.spec Added Files: ca-fix-basename.patch ca-fix-oprofile-ibs-check.patch ca-use-lbfd.patch Log Message: - Bump revision number - Add patch to fix basename issue when building on newer gcc - Add patch to fix IBS feature checking in OProfile-0.9.5 - Add patch to force using -lbfd ca-fix-basename.patch: configure.ac | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE ca-fix-basename.patch --- --- CodeAnalyst-gui-2.8.54/configure.ac 2009-07-06 15:27:20.000000000 -0500 +++ CodeAnalyst-gui-2.8.54-fix-basename/configure.ac 2009-07-17 16:43:50.905147989 -0500 @@ -35,6 +35,9 @@ AC_PREREQ(2.13) #Initialize Libtool AM_PROG_LIBTOOL +# Fix issue with basename in gcc-4.4 +AC_CHECK_DECLS([basename], [], [], [[#include ]]) + AM_INIT_AUTOMAKE #Default installation directory ca-fix-oprofile-ibs-check.patch: oprofile_interface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE ca-fix-oprofile-ibs-check.patch --- Fix BUG163976: Cannot profile IBS when build with OProfile-0.9.5 with option --with-oprofile --- Index: src/ca/gui/oprofile_interface.cpp =================================================================== --- src/ca/gui/oprofile_interface.cpp (revision 16837) +++ src/ca/gui/oprofile_interface.cpp (working copy) @@ -1144,15 +1144,16 @@ #if (OP_VERSION_BASE == 0x00903) command = QString(OP_BINDIR) + - "opcontrol --help 2>&1 " + + "/opcontrol --help 2>&1 " + "| grep ibs-fetch 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif #if (OP_VERSION_BASE >= 0x00905) + command = QString(OP_BINDIR) + - "oprofiled --help 2>&1 " + + "/oprofiled --help 2>&1 " + "| grep ext-feature 2> /dev/null > /dev/null"; ret = (system(command.ascii()) == 0)? true: false; #endif ca-use-lbfd.patch: libbfd.m4 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) --- NEW FILE ca-use-lbfd.patch --- Index: m4/libbfd.m4 =================================================================== --- m4/libbfd.m4 (revision 16845) +++ m4/libbfd.m4 (working copy) @@ -33,16 +33,16 @@ AC_DEFUN([CHECK_LBFD], [ - LIBBFD=`/sbin/ldconfig -p | \ - grep "libbfd" | \ - awk '{split($[]1,a," "); \ - sub (/lib/,"", [a[1]]) ; \ - sub(/.so/,"",[a[1]]); \ - print [a[1]]; \ - exit;}' 2> /dev/null` - if test "$LIBBFD" != "" ; then - BFD_LIB="$LIBBFD" - else +dnl LIBBFD=`/sbin/ldconfig -p | \ +dnl grep "libbfd" | \ +dnl awk '{split($[]1,a," "); \ +dnl sub (/lib/,"", [a[1]]) ; \ +dnl sub(/.so/,"",[a[1]]); \ +dnl print [a[1]]; \ +dnl exit;}' 2> /dev/null` +dnl if test "$LIBBFD" != "" ; then +dnl BFD_LIB="$LIBBFD" +dnl else BFD_LIB="bfd" - fi +dnl fi ]) Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- CodeAnalyst-gui.spec 20 Jul 2009 13:31:13 -0000 1.9 +++ CodeAnalyst-gui.spec 20 Jul 2009 18:25:23 -0000 1.10 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.54 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -14,6 +14,15 @@ Source2: DiffAnalyst-gui.desktop # since using stock oprofile daemon/driver Patch0: ca-use-oprofile-default-buffersize.patch +# Fix OProfile-0.9.5 IBS feature check +Patch1: ca-fix-oprofile-ibs-check.patch + +# Fix basename +Patch2: ca-fix-basename.patch + +# Force using lbfd +Patch3: ca-use-lbfd.patch + Requires: popt Requires: binutils Requires: elfutils-libelf @@ -54,6 +63,9 @@ profile comparison, DiffAnalayst. %prep %setup -q -n %{name}-%{version} %patch0 -p1 -b .ca-use-oprofile-default-buffersize +%patch1 -p0 -b .ca-fix-oprofile-ibs-check +%patch2 -p1 -b .ca-fix-basename +%patch3 -p0 -b .ca-use-lbfd %build @@ -149,6 +161,12 @@ fi %changelog +* Mon Jul 20 2009 - Suravee Suthikulpanit +- 2.8.54-17 +- Add Patch1 (ca-fix-oprofile-ibs-check.patch) +- Add Patch2 (ca-fix-basename.patch) +- Add Patch3 (ca-use-lbfd.patch) + * Mon Jul 20 2009 - Parag Nemade - 2.8.54-16 - Rebuild against new libbfd-2.19.51.0.11-24.fc12.so @@ -157,14 +175,14 @@ fi - 2.8.54-15 - Rebuild against new libbfd-2.19.51.0.11-23.fc12.so -* Wed Jul 8 2009 - Suravee Suthikulpanit +* Wed Jul 8 2009 - Suravee Suthikulpanit - 2.8.54-14 - Update new release - Update source - Update patch0 - Remove patches1-4 -* Tue Jul 7 2009 - Suravee Suthikulpanit +* Tue Jul 7 2009 - Suravee Suthikulpanit - 2.8.38-13 - Rebuild against new libbfd-2.19.51.0.2-20.fc12.so From cwickert at fedoraproject.org Mon Jul 20 18:45:05 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Mon, 20 Jul 2009 18:45:05 +0000 (UTC) Subject: rpms/Terminal/devel .cvsignore, 1.10, 1.11 Terminal.spec, 1.28, 1.29 sources, 1.10, 1.11 Message-ID: <20090720184505.9979A11C00D4@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/Terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29825 Modified Files: .cvsignore Terminal.spec sources Log Message: * Mon Jul 20 2009 Christoph Wickert - 0.4.0-1 - Update to 0.4.0 - Use desktop-file-install Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/Terminal/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 19 Jul 2009 23:03:34 -0000 1.10 +++ .cvsignore 20 Jul 2009 18:44:35 -0000 1.11 @@ -1 +1 @@ -Terminal-0.2.99.1.tar.bz2 +Terminal-0.4.0.tar.bz2 Index: Terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/Terminal/devel/Terminal.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- Terminal.spec 19 Jul 2009 23:03:34 -0000 1.28 +++ Terminal.spec 20 Jul 2009 18:44:35 -0000 1.29 @@ -1,18 +1,19 @@ Summary: X Terminal Emulator Name: Terminal -Version: 0.2.99.1 +Version: 0.4.0 Release: 1%{?dist} License: GPLv2+ URL: http://goodies.xfce.org/projects/applications/terminal/ Source0: http://goodies.xfce.org/releases/terminal/Terminal-%{version}.tar.bz2 Group: User Interface/Desktops Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: vte-devel +BuildRequires: vte-devel >= 0.17.1 BuildRequires: exo-devel >= 0.3.4 BuildRequires: libSM-devel BuildRequires: gettext intltool BuildRequires: startup-notification-devel -BuildRequires: dbus-glib-devel +BuildRequires: dbus-glib-devel >= 0.22 +BuildRequires: desktop-file-utils %description Terminal is a lightweight and easy to use terminal emulator application @@ -30,6 +31,11 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} +desktop-file-install \ + --delete-original \ + --add-category="GTK" \ + --dir=${RPM_BUILD_ROOT}%{_datadir}/applications \ + ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop %clean rm -rf $RPM_BUILD_ROOT @@ -62,6 +68,10 @@ fi %{_libexecdir}/TerminalHelp %changelog +* Mon Jul 20 2009 Christoph Wickert - 0.4.0-1 +- Update to 0.4.0 +- Use desktop-file-install + * Sun Jul 19 2009 Kevin Fenzi - 0.2.99.1-1 - Update to 0.2.99.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/Terminal/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 19 Jul 2009 23:03:34 -0000 1.10 +++ sources 20 Jul 2009 18:44:35 -0000 1.11 @@ -1 +1 @@ -730c0fefbe670c9462c6ec565d4f42e6 Terminal-0.2.99.1.tar.bz2 +07efc1c2a2f2a08d06c110ff206fa836 Terminal-0.4.0.tar.bz2 From pmachata at fedoraproject.org Mon Jul 20 15:44:04 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Mon, 20 Jul 2009 15:44:04 +0000 (UTC) Subject: rpms/tzdata/F-10 sources,1.59,1.60 tzdata.spec,1.78,1.79 Message-ID: <20090720154404.5ADF911C00D5@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/tzdata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6299 Modified Files: sources tzdata.spec Log Message: - Upstream 2009k - Mauritius will not continue to observe DST the coming summer - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time zone string can appear in the Dhaka binary file Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/F-10/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 18 Jun 2009 12:24:54 -0000 1.59 +++ sources 20 Jul 2009 15:43:34 -0000 1.60 @@ -1,4 +1,4 @@ 6a3392cd5f1594d13c12c1a836ac8d91 javazic.tar.gz e36d2f742c22f8c8dbf0686ac9769b55 tzdata-base-0.tar.bz2 -5708cf87bd6e55d7132d4faab40bcfcf tzcode2009i.tar.gz -ad733f772e722873bf0daa7d88dda603 tzdata2009j.tar.gz +54fce464fa9d9f77d48632bbf6fd74aa tzdata2009k.tar.gz +d181116286661375966a350e3e358cfa tzcode2009k.tar.gz Index: tzdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/F-10/tzdata.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- tzdata.spec 18 Jun 2009 12:24:55 -0000 1.78 +++ tzdata.spec 20 Jul 2009 15:43:34 -0000 1.79 @@ -1,8 +1,8 @@ Summary: Timezone data Name: tzdata -Version: 2009j +Version: 2009k %define tzdata_version %{version} -%define tzcode_version 2009i +%define tzcode_version %{version} Release: 1%{?dist} License: Public Domain Group: System Environment/Base @@ -107,6 +107,12 @@ rm -rf %{buildroot} %{_datadir}/javazi %changelog +* Mon Jul 20 2009 Petr Machata - 2009k-1 +- Upstream 2009k + - Mauritius will not continue to observe DST the coming summer + - Arbitrarily end DST at the end of 2009 so that a POSIX-sytle time + zone string can appear in the Dhaka binary file + * Thu Jun 18 2009 Petr Machata - 2009j-1 - Upstream 2009j - DST switch for Bangladesh will occur an hour earlier than was From mmaslano at fedoraproject.org Mon Jul 20 18:54:18 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 20 Jul 2009 18:54:18 +0000 (UTC) Subject: rpms/cronie/devel cronie.spec,1.20,1.21 Message-ID: <20090720185418.0DFCA11C00D4@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/cronie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1103 Modified Files: cronie.spec Log Message: * Mon Jul 20 2009 Marcela Ma??l????ov?? - 1.4-2 - merge cronie and anacron in new release of cronie - obsolete/provide anacron in spec Index: cronie.spec =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/cronie.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- cronie.spec 20 Jul 2009 18:17:04 -0000 1.20 +++ cronie.spec 20 Jul 2009 18:53:47 -0000 1.21 @@ -6,7 +6,7 @@ Summary: Cron daemon for executing programs at set times Name: cronie Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT and BSD and GPLv2 Group: System Environment/Base URL: https://fedorahosted.org/cronie @@ -151,8 +151,9 @@ cp -a /var/lock/subsys/crond /var/lock/s %{_mandir}/man8/anacron.* %changelog -* Mon Jul 20 2009 Marcela Ma??l????ov?? - 1.4-1 -- merge cronie and anacron +* Mon Jul 20 2009 Marcela Ma??l????ov?? - 1.4-2 +- merge cronie and anacron in new release of cronie +- obsolete/provide anacron in spec * Thu Jun 18 2009 Marcela Ma??l????ov?? - 1.3-2 - 506560 check return value of access From ajax at fedoraproject.org Mon Jul 20 18:54:33 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 18:54:33 +0000 (UTC) Subject: rpms/kernel/devel drm-intel-gen3-fb-hack.patch, 1.1, 1.2 kernel.spec, 1.1641, 1.1642 Message-ID: <20090720185433.2E62811C00D4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1255 Modified Files: kernel.spec Added Files: drm-intel-gen3-fb-hack.patch Log Message: * Mon Jul 20 2009 Adam Jackson - Revive 4k framebuffers for intel gen3 drm-intel-gen3-fb-hack.patch: intel_display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: drm-intel-gen3-fb-hack.patch =================================================================== RCS file: drm-intel-gen3-fb-hack.patch diff -N drm-intel-gen3-fb-hack.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ drm-intel-gen3-fb-hack.patch 20 Jul 2009 18:54:32 -0000 1.2 @@ -0,0 +1,14 @@ +diff -up linux-2.6.29.noarch/drivers/gpu/drm/i915/intel_display.c.jx linux-2.6.29.noarch/drivers/gpu/drm/i915/intel_display.c +--- linux-2.6.29.noarch/drivers/gpu/drm/i915/intel_display.c.jx 2009-04-09 13:42:51.000000000 -0400 ++++ linux-2.6.29.noarch/drivers/gpu/drm/i915/intel_display.c 2009-04-09 13:44:14.000000000 -0400 +@@ -2011,8 +2011,8 @@ void intel_modeset_init(struct drm_devic + dev->mode_config.max_width = 8192; + dev->mode_config.max_height = 8192; + } else { +- dev->mode_config.max_width = 2048; +- dev->mode_config.max_height = 2048; ++ dev->mode_config.max_width = 4096; ++ dev->mode_config.max_height = 4096; + } + + /* set memory base */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1641 retrieving revision 1.1642 diff -u -p -r1.1641 -r1.1642 --- kernel.spec 20 Jul 2009 16:45:12 -0000 1.1641 +++ kernel.spec 20 Jul 2009 18:54:32 -0000 1.1642 @@ -661,6 +661,7 @@ Patch1813: drm-radeon-pm.patch Patch1814: drm-nouveau.patch Patch1818: drm-i915-resume-force-mode.patch Patch1819: drm-intel-big-hammer.patch +Patch1820: drm-intel-gen3-fb-hack.patch # vga arb Patch1900: linux-2.6-vga-arb.patch @@ -1248,6 +1249,7 @@ ApplyPatch drm-nouveau.patch #ApplyPatch drm-radeon-pm.patch ApplyPatch drm-i915-resume-force-mode.patch ApplyPatch drm-intel-big-hammer.patch +ApplyPatch drm-intel-gen3-fb-hack.patch # VGA arb + drm ApplyPatch linux-2.6-vga-arb.patch @@ -1884,6 +1886,9 @@ fi # and build. %changelog +* Mon Jul 20 2009 Adam Jackson +- Revive 4k framebuffers for intel gen3 + * Mon Jul 20 2009 Dave Jones 2.6.31-0.78.rc3.git4 - Enable CONFIG_RTC_HCTOSYS (#489494) From ajax at fedoraproject.org Mon Jul 20 19:07:06 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 19:07:06 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1642,1.1643 Message-ID: <20090720190706.4CA2611C00D4@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4529 Modified Files: kernel.spec Log Message: * Mon Jul 20 2009 Adam Jackson - Disable VGA arbiter patches for a moment Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1642 retrieving revision 1.1643 diff -u -p -r1.1642 -r1.1643 --- kernel.spec 20 Jul 2009 18:54:32 -0000 1.1642 +++ kernel.spec 20 Jul 2009 19:06:35 -0000 1.1643 @@ -1252,8 +1252,8 @@ ApplyPatch drm-intel-big-hammer.patch ApplyPatch drm-intel-gen3-fb-hack.patch # VGA arb + drm -ApplyPatch linux-2.6-vga-arb.patch -ApplyPatch drm-vga-arb.patch +#ApplyPatch linux-2.6-vga-arb.patch +#ApplyPatch drm-vga-arb.patch # linux1394 git patches #ApplyPatch linux-2.6-firewire-git-update.patch @@ -1887,6 +1887,9 @@ fi %changelog * Mon Jul 20 2009 Adam Jackson +- Disable VGA arbiter patches for a moment + +* Mon Jul 20 2009 Adam Jackson - Revive 4k framebuffers for intel gen3 * Mon Jul 20 2009 Dave Jones 2.6.31-0.78.rc3.git4 From lmacken at fedoraproject.org Mon Jul 20 19:41:59 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 19:41:59 +0000 (UTC) Subject: rpms/python-clientform/devel python-clientform.spec,1.17,1.18 Message-ID: <20090720194159.3928211C00D4@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-clientform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12946 Modified Files: python-clientform.spec Log Message: Remove duplicate README html file (#480678) Index: python-clientform.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-clientform/devel/python-clientform.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- python-clientform.spec 26 Feb 2009 20:59:17 -0000 1.17 +++ python-clientform.spec 20 Jul 2009 19:41:28 -0000 1.18 @@ -3,7 +3,7 @@ Name: python-clientform Version: 0.2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python module for client-side HTML forms Group: Development/Languages @@ -47,13 +47,15 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc COPYING.txt GeneralFAQ.html README.txt README.html examples +%doc COPYING.txt GeneralFAQ.html README.html examples %{python_sitelib}/ClientForm.py %{python_sitelib}/ClientForm.pyc %{python_sitelib}/ClientForm.pyo %{python_sitelib}/ClientForm-%{version}-py%{pyver}.egg-info %changelog +* Mon Jul 20 2009 Luke Macken - 0.2.7-5 +- Remove duplicate README html file (#480678) * Thu Feb 26 2009 Fedora Release Engineering - 0.2.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mschwendt at fedoraproject.org Mon Jul 20 19:55:16 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 19:55:16 +0000 (UTC) Subject: rpms/audacity/devel audacity-1.3.8-audiodevdefaults.patch, NONE, 1.1 audacity-1.3.8-libdir.patch, NONE, 1.1 .cvsignore, 1.10, 1.11 audacity.spec, 1.77, 1.78 sources, 1.12, 1.13 audacity-1.3.6-flac-import.patch, 1.2, NONE audacity-1.3.7-audiodevdefaults.patch, 1.2, NONE audacity-1.3.7-portaudio-non-mmap-alsa.patch, 1.3, NONE audacity-1.3.7-repeat.patch, 1.2, NONE Message-ID: <20090720195516.5C30711C0072@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15830 Modified Files: .cvsignore audacity.spec sources Added Files: audacity-1.3.8-audiodevdefaults.patch audacity-1.3.8-libdir.patch Removed Files: audacity-1.3.6-flac-import.patch audacity-1.3.7-audiodevdefaults.patch audacity-1.3.7-portaudio-non-mmap-alsa.patch audacity-1.3.7-repeat.patch Log Message: * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.1.beta - upgrade to 1.3.8-beta - BR taglib-devel - patches merged/obsoleted upstream: audacity-1.3.7-portaudio-non-mmap-alsa.patch audacity-1.3.7-repeat.patch audacity-1.3.6-flac-import.patch audacity-1.3.8-audiodevdefaults.patch: DevicePrefs.cpp | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) --- NEW FILE audacity-1.3.8-audiodevdefaults.patch --- diff -Nur audacity-src-1.3.8-orig/src/prefs/DevicePrefs.cpp audacity-src-1.3.8/src/prefs/DevicePrefs.cpp --- audacity-src-1.3.8-orig/src/prefs/DevicePrefs.cpp 2009-07-16 05:27:35.000000000 +0200 +++ audacity-src-1.3.8/src/prefs/DevicePrefs.cpp 2009-07-20 20:55:26.000000000 +0200 @@ -172,6 +172,15 @@ wxArrayString playnames; wxArrayString recordnames; + int playDeviceNum = -1; // use device name from gPrefs + if ( mPlayDevice == wxT("") ) { + playDeviceNum = Pa_GetDefaultOutputDevice(); + } + int recDeviceNum = -1; // use device name from gPrefs + if ( mRecordDevice == wxT("") ) { + recDeviceNum = Pa_GetDefaultInputDevice(); + } + for (int i = 0; i < nDevices; i++) { const PaDeviceInfo *info = Pa_GetDeviceInfo(i); if (info->hostApi == index) { @@ -182,7 +191,10 @@ if (info->maxOutputChannels > 0) { playnames.Add(name); index = mPlay->Append(name, (void *) info); - if (device == mPlayDevice) { + if (playDeviceNum == i) { + mPlay->SetSelection(index); + } + else if (device == mPlayDevice) { mPlay->SetSelection(index); } } @@ -190,7 +202,10 @@ if (info->maxInputChannels > 0) { recordnames.Add(name); index = mRecord->Append(name, (void *) info); - if (device == mRecordDevice) { + if (recDeviceNum == i) { + mRecord->SetSelection(index); + } + else if (device == mRecordDevice) { mRecord->SetSelection(index); } } audacity-1.3.8-libdir.patch: LoadLadspa.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE audacity-1.3.8-libdir.patch --- diff -Nur audacity-src-1.3.8-orig/src/effects/ladspa/LoadLadspa.cpp audacity-src-1.3.8/src/effects/ladspa/LoadLadspa.cpp --- audacity-src-1.3.8-orig/src/effects/ladspa/LoadLadspa.cpp 2009-07-16 05:27:35.000000000 +0200 +++ audacity-src-1.3.8/src/effects/ladspa/LoadLadspa.cpp 2009-07-20 11:40:02.000000000 +0200 @@ -278,8 +278,7 @@ #ifdef __WXGTK__ wxGetApp().AddUniquePathToPathList(wxT(INSTALL_PREFIX) wxT("/ladspa"), pathList); - wxGetApp().AddUniquePathToPathList(wxT("/usr/local/lib/ladspa"), pathList); - wxGetApp().AddUniquePathToPathList(wxT("/usr/lib/ladspa"), pathList); + wxGetApp().AddUniquePathToPathList(wxT("/usr/local/__RPM_LIB__/ladspa"), pathList); wxGetApp().AddUniquePathToPathList(wxT(LIBDIR) wxT("/ladspa"), pathList); #endif Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 28 Feb 2009 14:21:16 -0000 1.10 +++ .cvsignore 20 Jul 2009 19:55:15 -0000 1.11 @@ -1 +1 @@ -audacity-minsrc-1.3.7.tar.bz2 +audacity-minsrc-1.3.8.tar.bz2 Index: audacity.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/audacity.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- audacity.spec 13 May 2009 08:37:00 -0000 1.77 +++ audacity.spec 20 Jul 2009 19:55:16 -0000 1.78 @@ -1,27 +1,24 @@ # Compile options: # --with mp3 : enable mp3 support -%define tartopdir audacity-src-1.3.7 +%define tartopdir audacity-src-1.3.8 Name: audacity -Version: 1.3.7 -Release: 0.7.beta%{?dist} +Version: 1.3.8 +Release: 0.1.beta%{?dist} Summary: Multitrack audio editor Group: Applications/Multimedia License: GPLv2 URL: http://audacity.sourceforge.net -Source0: http://downloads.sf.net/sourceforge/audacity/audacity-minsrc-1.3.7.tar.bz2 +Source0: http://downloads.sf.net/sourceforge/audacity/audacity-minsrc-%{version}.tar.bz2 Source1: audacity.png Source2: audacity.desktop Patch1: audacity-1.3.7-libmp3lame-default.patch -Patch2: audacity-1.3.7-libdir.patch -Patch3: audacity-1.3.6-flac-import.patch -Patch4: audacity-1.3.7-portaudio-non-mmap-alsa.patch -Patch5: audacity-1.3.7-repeat.patch +Patch2: audacity-1.3.8-libdir.patch Patch6: audacity-1.3.7-vamp-1.3.patch -Patch7: audacity-1.3.7-audiodevdefaults.patch +Patch7: audacity-1.3.8-audiodevdefaults.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: alsa-lib-devel @@ -32,6 +29,7 @@ BuildRequires: gettext BuildRequires: jack-audio-connection-kit-devel BuildRequires: ladspa-devel BuildRequires: libid3tag-devel +BuildRequires: taglib-devel BuildRequires: libogg-devel BuildRequires: libsamplerate-devel BuildRequires: libsndfile-devel @@ -69,9 +67,6 @@ do done grep -q -s __RPM_LIB * -R && exit 1 -%patch3 -p1 -b .dumb-flac-import -%patch4 -p1 -b .pa-non-mmap-alsa -%patch5 -p1 -b .repeat %if 0%{?fedora} < 11 %patch6 -p1 -b .vamp-1.3 %endif @@ -110,6 +105,10 @@ cp %{SOURCE1} $RPM_BUILD_ROOT%{_datadir} make DESTDIR=${RPM_BUILD_ROOT} install +# Audacity 1.3.8-beta complains if the help/manual directories +# don't exist. +mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/help/manual + %{find_lang} %{name} rm -f $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop @@ -147,6 +146,14 @@ update-desktop-database &> /dev/null || %changelog +* Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.1.beta +- upgrade to 1.3.8-beta +- BR taglib-devel +- patches merged/obsoleted upstream: + audacity-1.3.7-portaudio-non-mmap-alsa.patch + audacity-1.3.7-repeat.patch + audacity-1.3.6-flac-import.patch + * Wed May 13 2009 Michael Schwendt - 1.3.7-0.7.beta - retag up-to-date files and copy to F-10/F-11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 28 Feb 2009 14:21:17 -0000 1.12 +++ sources 20 Jul 2009 19:55:16 -0000 1.13 @@ -1 +1 @@ -7dcbcd8ed417413fd824d446001058d9 audacity-minsrc-1.3.7.tar.bz2 +88b3c68663a06f146fe822b91608e8f1 audacity-minsrc-1.3.8.tar.bz2 --- audacity-1.3.6-flac-import.patch DELETED --- --- audacity-1.3.7-audiodevdefaults.patch DELETED --- --- audacity-1.3.7-portaudio-non-mmap-alsa.patch DELETED --- --- audacity-1.3.7-repeat.patch DELETED --- From mschwendt at fedoraproject.org Mon Jul 20 19:58:53 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 19:58:53 +0000 (UTC) Subject: rpms/audacity/devel audacity-1.3.7-libdir.patch,1.2,NONE Message-ID: <20090720195853.73A6511C0072@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17370 Removed Files: audacity-1.3.7-libdir.patch Log Message: remove unused patch --- audacity-1.3.7-libdir.patch DELETED --- From hadess at fedoraproject.org Mon Jul 20 20:01:03 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Mon, 20 Jul 2009 20:01:03 +0000 (UTC) Subject: rpms/libgdata/devel .cvsignore, 1.4, 1.5 libgdata.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090720200103.2A18711C0072@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/libgdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17818 Modified Files: .cvsignore libgdata.spec sources Log Message: * Mon Jul 20 2009 Bastien Nocera 0.4.0-1 - Update to 0.4.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libgdata/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 26 May 2009 15:37:52 -0000 1.4 +++ .cvsignore 20 Jul 2009 20:00:32 -0000 1.5 @@ -1 +1 @@ -libgdata-0.3.0.tar.bz2 +libgdata-0.4.0.tar.bz2 Index: libgdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdata/devel/libgdata.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libgdata.spec 26 May 2009 15:37:52 -0000 1.3 +++ libgdata.spec 20 Jul 2009 20:00:32 -0000 1.4 @@ -1,5 +1,5 @@ Name: libgdata -Version: 0.3.0 +Version: 0.4.0 Release: 1%{?dist} Summary: Library for the GData protocol @@ -69,6 +69,9 @@ cd gdata/tests %{_datadir}/gtk-doc/html/gdata/ %changelog +* Mon Jul 20 2009 Bastien Nocera 0.4.0-1 +- Update to 0.4.0 + * Tue May 26 2009 Bastien Nocera 0.3.0-1 - Update to 0.3.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libgdata/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 26 May 2009 15:37:52 -0000 1.4 +++ sources 20 Jul 2009 20:00:32 -0000 1.5 @@ -1 +1 @@ -54c4de90fd00cd6685cbdd8c5054abb7 libgdata-0.3.0.tar.bz2 +06b14f1cd96432b0717ed03fe013ca4d libgdata-0.4.0.tar.bz2 From dledford at fedoraproject.org Mon Jul 20 20:07:27 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 20:07:27 +0000 (UTC) Subject: rpms/opensm/devel .cvsignore, 1.3, 1.4 opensm.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090720200727.5029311C0072@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/opensm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19006 Modified Files: .cvsignore opensm.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 3.3.2-1 - Update to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/opensm/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 22 Apr 2009 14:24:01 -0000 1.3 +++ .cvsignore 20 Jul 2009 20:06:57 -0000 1.4 @@ -1,2 +1,3 @@ opensm-3.2.1.tar.gz opensm-3.3.1.tar.gz +opensm-3.3.2.tar.gz Index: opensm.spec =================================================================== RCS file: /cvs/extras/rpms/opensm/devel/opensm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- opensm.spec 22 Apr 2009 14:24:05 -0000 1.5 +++ opensm.spec 20 Jul 2009 20:06:57 -0000 1.6 @@ -1,5 +1,5 @@ Name: opensm -Version: 3.3.1 +Version: 3.3.2 Release: 1%{?dist} Summary: OpenIB InfiniBand Subnet Manager and management utilities Group: System Environment/Daemons @@ -11,7 +11,7 @@ Source2: opensm.logrotate Source3: opensm.initd Patch1: opensm-3.2.1-elif.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libibmad-devel >= 1.3.0, libtool, bison, flex, byacc +BuildRequires: libibmad-devel = 1.3.2, libtool, bison, flex, byacc Requires: %{name}-libs = %{version}-%{release}, logrotate, rdma %description @@ -108,6 +108,9 @@ fi %{_libdir}/lib*.a %changelog +* Mon Jul 20 2009 Doug Ledford - 3.3.2-1 +- Update to latest upstream version + * Wed Apr 22 2009 Doug Ledford - 3.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/opensm/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 14:24:05 -0000 1.3 +++ sources 20 Jul 2009 20:06:57 -0000 1.4 @@ -1 +1 @@ -8c8c153f21d9f6cee51fc3d501c54fe7 opensm-3.3.1.tar.gz +8925a54defa3e87573a6d127b8790f7f opensm-3.3.2.tar.gz From dledford at fedoraproject.org Mon Jul 20 20:08:03 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Mon, 20 Jul 2009 20:08:03 +0000 (UTC) Subject: rpms/opensm/F-11 opensm.spec,1.5,1.6 sources,1.3,1.4 Message-ID: <20090720200803.A381A11C0072@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/opensm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19291 Modified Files: opensm.spec sources Log Message: * Mon Jul 20 2009 Doug Ledford - 3.3.2-1 - Update to latest upstream version Index: opensm.spec =================================================================== RCS file: /cvs/extras/rpms/opensm/F-11/opensm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- opensm.spec 22 Apr 2009 14:28:33 -0000 1.5 +++ opensm.spec 20 Jul 2009 20:08:03 -0000 1.6 @@ -1,5 +1,5 @@ Name: opensm -Version: 3.3.1 +Version: 3.3.2 Release: 1%{?dist} Summary: OpenIB InfiniBand Subnet Manager and management utilities Group: System Environment/Daemons @@ -11,7 +11,7 @@ Source2: opensm.logrotate Source3: opensm.initd Patch1: opensm-3.2.1-elif.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libibmad-devel >= 1.3.0, libtool, bison, flex, byacc +BuildRequires: libibmad-devel = 1.3.2, libtool, bison, flex, byacc Requires: %{name}-libs = %{version}-%{release}, logrotate, rdma %description @@ -108,6 +108,9 @@ fi %{_libdir}/lib*.a %changelog +* Mon Jul 20 2009 Doug Ledford - 3.3.2-1 +- Update to latest upstream version + * Wed Apr 22 2009 Doug Ledford - 3.3.1-1 - Update to latest upstream version Index: sources =================================================================== RCS file: /cvs/extras/rpms/opensm/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 22 Apr 2009 14:28:33 -0000 1.3 +++ sources 20 Jul 2009 20:08:03 -0000 1.4 @@ -1 +1 @@ -8c8c153f21d9f6cee51fc3d501c54fe7 opensm-3.3.1.tar.gz +8925a54defa3e87573a6d127b8790f7f opensm-3.3.2.tar.gz From lmacken at fedoraproject.org Mon Jul 20 20:08:30 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 20:08:30 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/devel python-repoze-who-plugins-sa.spec, 1.1, 1.2 Message-ID: <20090720200830.1DB7711C0072@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19422 Modified Files: python-repoze-who-plugins-sa.spec Log Message: Remove the test suite, since it conflicts with other packages (#512759) Index: python-repoze-who-plugins-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel/python-repoze-who-plugins-sa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-who-plugins-sa.spec 16 Jul 2009 07:15:41 -0000 1.1 +++ python-repoze-who-plugins-sa.spec 20 Jul 2009 20:08:29 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-who-plugins-sa Version: 1.0 -Release: 0.2.%{_rcver}%{?dist} +Release: 0.3.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages @@ -34,15 +34,15 @@ or Elixir-based models. %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT - +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} +%{__rm} -fr %{buildroot}%{python_sitelib}/tests #%check #PYTHONPATH=$(pwd) nosetests %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Luke Macken - 1.0-0.3.rc1 +- Remove the test suite, since it conflicts with other packages (#512759) + * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, From lmacken at fedoraproject.org Mon Jul 20 20:15:09 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 20:15:09 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/F-10 python-repoze-who-plugins-sa.spec, 1.1, 1.2 Message-ID: <20090720201509.C74C111C0072@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20414 Modified Files: python-repoze-who-plugins-sa.spec Log Message: Remove the test suite, since it conflicts with other packages (#512759) Index: python-repoze-who-plugins-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-10/python-repoze-who-plugins-sa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-who-plugins-sa.spec 16 Jul 2009 07:28:34 -0000 1.1 +++ python-repoze-who-plugins-sa.spec 20 Jul 2009 20:15:09 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-who-plugins-sa Version: 1.0 -Release: 0.2.%{_rcver}%{?dist} +Release: 0.3.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages @@ -34,15 +34,15 @@ or Elixir-based models. %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT - +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} +%{__rm} -fr %{buildroot}%{python_sitelib}/tests #%check #PYTHONPATH=$(pwd) nosetests %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Luke Macken - 1.0-0.3.rc1 +- Remove the test suite, since it conflicts with other packages (#512759) + * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, From mschwendt at fedoraproject.org Mon Jul 20 20:15:42 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 20:15:42 +0000 (UTC) Subject: rpms/audacity/devel audacity-1.3.8-gsocket-conflict.patch, NONE, 1.1 audacity.spec, 1.78, 1.79 Message-ID: <20090720201542.7FCC011C0072@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20525 Modified Files: audacity.spec Added Files: audacity-1.3.8-gsocket-conflict.patch Log Message: There may be more like this in the code, but I currently cannot do local builds in Rawhide to check it. * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.2.beta - glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that conflicts with wxGTK's GSocket class (gsocket.h): as a work-around, include gtk/gtk.h first and undefine GSocket audacity-1.3.8-gsocket-conflict.patch: AudacityApp.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE audacity-1.3.8-gsocket-conflict.patch --- diff -Nur audacity-src-1.3.8-orig/src/AudacityApp.cpp audacity-src-1.3.8/src/AudacityApp.cpp --- audacity-src-1.3.8-orig/src/AudacityApp.cpp 2009-07-16 05:27:35.000000000 +0200 +++ audacity-src-1.3.8/src/AudacityApp.cpp 2009-07-20 22:18:14.000000000 +0200 @@ -21,6 +21,9 @@ #include #endif +#include +#undef GSocket + #include "Audacity.h" // This should always be included first #include @@ -331,7 +334,7 @@ /////////////////////////////////////////////////////////////////////////////// #include -#include +/* #include */ typedef struct _GnomeProgram GnomeProgram; typedef struct _GnomeModuleInfo GnomeModuleInfo; Index: audacity.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/audacity.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- audacity.spec 20 Jul 2009 19:55:16 -0000 1.78 +++ audacity.spec 20 Jul 2009 20:15:42 -0000 1.79 @@ -5,7 +5,7 @@ Name: audacity Version: 1.3.8 -Release: 0.1.beta%{?dist} +Release: 0.2.beta%{?dist} Summary: Multitrack audio editor Group: Applications/Multimedia License: GPLv2 @@ -17,6 +17,7 @@ Source2: audacity.desktop Patch1: audacity-1.3.7-libmp3lame-default.patch Patch2: audacity-1.3.8-libdir.patch +Patch3: audacity-1.3.8-gsocket-conflict.patch Patch6: audacity-1.3.7-vamp-1.3.patch Patch7: audacity-1.3.8-audiodevdefaults.patch @@ -67,6 +68,7 @@ do done grep -q -s __RPM_LIB * -R && exit 1 +%patch3 -p1 -b .gsocket-conflict %if 0%{?fedora} < 11 %patch6 -p1 -b .vamp-1.3 %endif @@ -146,6 +148,11 @@ update-desktop-database &> /dev/null || %changelog +* Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.2.beta +- glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that + conflicts with wxGTK's GSocket class (gsocket.h): as a work-around, + include gtk/gtk.h first and undefine GSocket + * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.1.beta - upgrade to 1.3.8-beta - BR taglib-devel From rstrode at fedoraproject.org Mon Jul 20 20:16:34 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Mon, 20 Jul 2009 20:16:34 +0000 (UTC) Subject: rpms/gdm/devel gdm-2.27.4-multistack.patch, 1.1, 1.2 gdm.spec, 1.476, 1.477 Message-ID: <20090720201634.AA14411C0072@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20722 Modified Files: gdm-2.27.4-multistack.patch gdm.spec Log Message: - Use correct multi-stack patch gdm-2.27.4-multistack.patch: b/common/gdm-marshal.list | 1 b/configure.ac | 45 b/daemon/gdm-factory-slave.c | 13 b/daemon/gdm-greeter-server.c | 2 b/daemon/gdm-greeter-server.h | 5 b/daemon/gdm-product-slave.c | 47 b/daemon/gdm-session-direct.c | 14 b/daemon/gdm-session-private.h | 3 b/daemon/gdm-session-relay.c | 29 b/daemon/gdm-session-worker-job.c | 11 b/daemon/gdm-session-worker-job.h | 2 b/daemon/gdm-session-worker.c | 27 b/daemon/gdm-session.c | 20 b/daemon/gdm-session.h | 9 b/daemon/gdm-simple-slave.c | 3 b/daemon/test-session.c | 14 b/gui/simple-greeter/Makefile.am | 4 b/gui/simple-greeter/gdm-chooser-widget.c | 32 b/gui/simple-greeter/gdm-chooser-widget.h | 3 b/gui/simple-greeter/gdm-greeter-client.c | 18 b/gui/simple-greeter/gdm-greeter-client.h | 4 b/gui/simple-greeter/gdm-greeter-login-window.c | 91 b/gui/simple-greeter/gdm-greeter-login-window.glade | 39 b/gui/simple-greeter/gdm-greeter-login-window.h | 11 b/gui/simple-greeter/gdm-greeter-plugin.c | 255 + b/gui/simple-greeter/gdm-greeter-plugin.h | 61 b/gui/simple-greeter/gdm-greeter-session.c | 5 b/gui/simple-greeter/gdm-plugin-manager.c | 478 +++ b/gui/simple-greeter/gdm-plugin-manager.h | 66 b/gui/simple-greeter/gdm-task-list.c | 198 + b/gui/simple-greeter/gdm-task-list.h | 65 b/gui/simple-greeter/gdm-user-chooser-widget.c | 23 b/gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 46 b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 147 + b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 87 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.c | 93 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.h | 55 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 117 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 62 b/gui/simple-greeter/libgdmsimplegreeter/gdmsimplegreeter.pc.in | 11 b/gui/simple-greeter/plugins/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/Makefile.am | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 299 ++ b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.h | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint.pam | 17 b/gui/simple-greeter/plugins/fingerprint/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/page.ui | 56 b/gui/simple-greeter/plugins/fingerprint/plugin.c | 41 b/gui/simple-greeter/plugins/password/Makefile.am | 53 b/gui/simple-greeter/plugins/password/gdm-password-extension.c | 316 ++ b/gui/simple-greeter/plugins/password/gdm-password-extension.h | 56 b/gui/simple-greeter/plugins/password/gdm-password.pam | 19 b/gui/simple-greeter/plugins/password/page.ui | 56 b/gui/simple-greeter/plugins/password/plugin.c | 41 b/gui/simple-greeter/plugins/smartcard/Makefile.am | 77 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 420 +++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.h | 56 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.c | 1394 ++++++++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.h | 86 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-worker.c | 167 + b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.c | 558 ++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.h | 94 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.pam | 18 b/gui/simple-greeter/plugins/smartcard/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/smartcard/page.ui | 56 b/gui/simple-greeter/plugins/smartcard/plugin.c | 41 configure.ac | 15 daemon/gdm-factory-slave.c | 103 daemon/gdm-greeter-server.c | 187 + daemon/gdm-greeter-server.h | 19 daemon/gdm-product-slave.c | 263 + daemon/gdm-session-direct.c | 1132 +++++--- daemon/gdm-session-private.h | 29 daemon/gdm-session-relay.c | 190 + daemon/gdm-session-worker-job.c | 70 daemon/gdm-session-worker-job.h | 6 daemon/gdm-session-worker.c | 21 daemon/gdm-session.c | 229 + daemon/gdm-session.h | 59 daemon/gdm-simple-slave.c | 223 + daemon/test-session.c | 22 gui/simple-greeter/Makefile.am | 15 gui/simple-greeter/gdm-chooser-widget.c | 9 gui/simple-greeter/gdm-chooser-widget.h | 3 gui/simple-greeter/gdm-greeter-client.c | 209 + gui/simple-greeter/gdm-greeter-client.h | 18 gui/simple-greeter/gdm-greeter-login-window.c | 1147 ++++++-- gui/simple-greeter/gdm-greeter-login-window.glade | 144 - gui/simple-greeter/gdm-greeter-login-window.h | 21 gui/simple-greeter/gdm-greeter-session.c | 133 gui/simple-greeter/gdm-task-list.c | 228 + gui/simple-greeter/gdm-task-list.h | 36 gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 2 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 51 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 13 gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 6 gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 2 gui/simple-greeter/plugins/Makefile.am | 4 gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 10 gui/simple-greeter/plugins/password/gdm-password-extension.c | 7 gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 35 105 files changed, 9644 insertions(+), 1289 deletions(-) Index: gdm-2.27.4-multistack.patch =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm-2.27.4-multistack.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gdm-2.27.4-multistack.patch 20 Jul 2009 17:20:51 -0000 1.1 +++ gdm-2.27.4-multistack.patch 20 Jul 2009 20:16:34 -0000 1.2 @@ -1,7 +1,7 @@ From a1ab1c57fa91751f067ff10465f01034bc5c1953 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 13:52:19 -0500 -Subject: [PATCH 01/36] Add a comment marking protected api in chooser +Subject: [PATCH 01/37] Add a comment marking protected api in chooser The chooser widget has methods that only its subclasses are supposed to call. We should @@ -30,7 +30,7 @@ index 578e613..7e3e59c 100644 From 4e9cef5860311e3b39d2076f4dc9de5f69dfa51f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 17:44:37 -0500 -Subject: [PATCH 02/36] Drop duplicated entry introspection output +Subject: [PATCH 02/37] Drop duplicated entry introspection output --- daemon/gdm-greeter-server.c | 1 - @@ -55,7 +55,7 @@ index 2e01d33..cecce83 100644 From ca75999e3ce75549554efb758c9210e2997cc9f6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 10:07:03 -0500 -Subject: [PATCH 03/36] Make lookup_item not warn when passing NULL for args +Subject: [PATCH 03/37] Make lookup_item not warn when passing NULL for args gtk_tree_model_get doesn't like NULL, and we allow NULL for optional return values. @@ -116,7 +116,7 @@ index b3f2a0d..4e76439 100644 From 835922303f2b08036727aca11adf256f2209ac0c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 15:35:00 -0500 -Subject: [PATCH 04/36] Drop "stopped" signal from worker-job class +Subject: [PATCH 04/37] Drop "stopped" signal from worker-job class It was unused, dead code. --- @@ -212,7 +212,7 @@ index d42eb37..5ad1c92 100644 From 910f5f152f3cb71a8084f44374514d9cb45eca5f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 11:00:08 -0500 -Subject: [PATCH 05/36] Drop session "Open" in favor of "StartConversation" +Subject: [PATCH 05/37] Drop session "Open" in favor of "StartConversation" We want to eventually support having multiple simultaneous PAM conversations in one login @@ -1412,7 +1412,7 @@ index c6a158c..d9fa26e 100644 From f4596a6df988f88afe2d9d06ffeaf978eb519931 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 4 Feb 2009 10:55:03 -0500 -Subject: [PATCH 06/36] Rename session worker to the service it's managing +Subject: [PATCH 06/37] Rename session worker to the service it's managing This way when we're running multiple PAM conversations at once it will be obvious which worker is managing which conversation. @@ -1601,7 +1601,7 @@ index d24f025..4833f23 100644 From bae5bb00c77b693ab31d58aba416ec4a103f8501 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 13:01:48 -0500 -Subject: [PATCH 07/36] Make greeter explicitly request PAM conversation +Subject: [PATCH 07/37] Make greeter explicitly request PAM conversation Now the greeter has to say what PAM stack it wants the slave to run. When that stack is ready, we emit the Ready signal as @@ -1947,7 +1947,7 @@ index fe2de48..ec99c12 100644 From d3004477cb4424526f6ae2132d0554501cd9ffc5 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 15:18:31 -0500 -Subject: [PATCH 08/36] Store multiple conversations in the session +Subject: [PATCH 08/37] Store multiple conversations in the session We keep multiple conversations in the session now, keyed off of PAM service is at the other end. Much of the guts still @@ -2215,7 +2215,7 @@ index 86bd59d..9af8252 100644 From c26960e1b2b5f9dbd2afb68c60b68e972c85b2eb Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 4 Mar 2009 22:09:21 -0500 -Subject: [PATCH 09/36] start autologin conversation when creating session if necessary +Subject: [PATCH 09/37] start autologin conversation when creating session if necessary Without this autologin breaks, since when it comes time to autologin, there's no worker to do it. @@ -2253,7 +2253,7 @@ index 8863fd4..4db7440 100644 From 4cab3c989f849f27ed4b225d50e40c89a25eadd1 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 22 Jan 2009 08:52:01 -0500 -Subject: [PATCH 10/36] Propagate service name to more layers +Subject: [PATCH 10/37] Propagate service name to more layers This is more prep work to get multiple concurrent PAM stacks going. @@ -6265,7 +6265,7 @@ index ec99c12..7873679 100644 From 2d43cb675898b5c2c2d124050ccdb4b43502f036 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 7 Feb 2009 11:36:40 -0500 -Subject: [PATCH 11/36] emit "ConversationStopped" signal at end of conv +Subject: [PATCH 11/37] emit "ConversationStopped" signal at end of conv This will allow us to track when individual PAM conversations fail, instead of doing one @@ -6612,7 +6612,7 @@ index 9421a64..6eadf62 100644 From a6469d77a955e7ca174d2c763a3b261831618612 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 9 Mar 2009 15:41:12 -0400 -Subject: [PATCH 12/36] Don't tear down greeter until pam_open_session finishes +Subject: [PATCH 12/37] Don't tear down greeter until pam_open_session finishes Some PAM modules ask questions at that late stage of the game, and so we need a greeter to forward the questions on to the @@ -7182,7 +7182,7 @@ index 6eadf62..4c68974 100644 From 7d088d42327ecdcacd646b3f1865fd7ea3128a0d Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 30 Jan 2009 23:57:31 -0500 -Subject: [PATCH 13/36] Add limited support for multiple pam stacks +Subject: [PATCH 13/37] Add limited support for multiple pam stacks This hard codes 3 pam stacks and doesn't handle switching between them very well yet. @@ -7939,7 +7939,7 @@ index 0000000..ade21b6 From 287eeb864410a8504023fb39ef2312abdcdc788e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Mar 2009 11:19:40 -0500 -Subject: [PATCH 14/36] Create session settings object when first starting worker +Subject: [PATCH 14/37] Create session settings object when first starting worker This is because one PAM module may complete before setup gets called on another, and when one completes *all* PAM @@ -7977,7 +7977,7 @@ index 194de7d..1b1f14b 100644 From 5d580cde9e73d3e6cd41d37ca1983883dc5db4ed Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 5 Feb 2009 15:20:25 -0500 -Subject: [PATCH 15/36] Queue a greeter reset when the user clicks cancel +Subject: [PATCH 15/37] Queue a greeter reset when the user clicks cancel --- daemon/gdm-simple-slave.c | 37 +++++++++++++++++++++++++++++++++++++ @@ -8116,7 +8116,7 @@ index 4c68974..337718b 100644 From 21ebc4975e94c73c3a49d61e9655070c09e50926 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 16:23:48 -0500 -Subject: [PATCH 16/36] Add a plugin based extension system to greeter +Subject: [PATCH 16/37] Add a plugin based extension system to greeter This allows plugins to drive which PAM conversations get run. This commit just adds one plugin "password" @@ -12300,7 +12300,7 @@ index 0000000..9b87c67 From f65b1f138fa4f8e3e9ee5add0c83a64b6fb281d4 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 7 Feb 2009 21:17:49 -0500 -Subject: [PATCH 17/36] Force session reset if all PAM conversations fail +Subject: [PATCH 17/37] Force session reset if all PAM conversations fail --- gui/simple-greeter/gdm-greeter-login-window.c | 22 +++++++++++++++++++--- @@ -12359,7 +12359,7 @@ index 07cb4e3..7f01748 100644 From b235677b51bd727e60520208bfd3f9d75f9c6033 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 18 Feb 2009 12:32:39 -0500 -Subject: [PATCH 18/36] Add a way for plugins to pick users from list +Subject: [PATCH 18/37] Add a way for plugins to pick users from list The smartcard plugin is going to want to start its conversation as soon as the card @@ -12516,7 +12516,7 @@ index f1910cf..fb4bf49 100644 From bd3ea14146897f47a7b4fcb7f698e47ad9185c31 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 14:05:20 -0500 -Subject: [PATCH 19/36] Add new api to ask when chooser widget is done loading items +Subject: [PATCH 19/37] Add new api to ask when chooser widget is done loading items --- gui/simple-greeter/gdm-chooser-widget.c | 9 +++++++++ @@ -12572,7 +12572,7 @@ index 7e3e59c..6a07843 100644 From 958f7acdca959afa04aa0ce05be6ffe9b531bd0e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 14:31:27 -0500 -Subject: [PATCH 20/36] Tell tasks they're ready only after user list loads +Subject: [PATCH 20/37] Tell tasks they're ready only after user list loads This way they won't try to access the list prematurely. --- @@ -12632,7 +12632,7 @@ index 9fdf50e..6ef3d00 100644 From 4f8000921ea2c762d460629f93c88e8384923cbc Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 16:25:47 -0500 -Subject: [PATCH 21/36] Add fingerprint plugin +Subject: [PATCH 21/37] Add fingerprint plugin This commit adds a plugin to initiate a conversation for fingerprint scans. @@ -13277,7 +13277,7 @@ index 0000000..5ea9925 From d47888f0c98007a00e93c178370d1d1eafcc56ae Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 11 Feb 2009 08:47:52 -0500 -Subject: [PATCH 22/36] Add start of a smartcard plugin +Subject: [PATCH 22/37] Add start of a smartcard plugin It contains a copy and paste of an old RHEL patch I did a few years ago. @@ -16546,7 +16546,7 @@ index 0000000..fffbd50 From 6a736eae4072d7779f333fd4114481317a864523 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 23 Feb 2009 17:57:06 -0500 -Subject: [PATCH 23/36] Add a new "choosable" property to show tasks in user list +Subject: [PATCH 23/37] Add a new "choosable" property to show tasks in user list Useful for Smartcard and some future "Guest" account plugin --- @@ -16705,7 +16705,7 @@ index 632ee2d..ed19e62 100644 From 9f7550eaf2a02a0b7f48e81f4e2ced1aed13337f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 24 Feb 2009 15:12:35 -0500 -Subject: [PATCH 24/36] Separate handling of non-users in user list from users +Subject: [PATCH 24/37] Separate handling of non-users in user list from users Now get_chosen_user returns NULL if the activated item wasn't a user. We also separate the handling of on item @@ -16868,7 +16868,7 @@ index 7aa99e7..316ef46 100644 From a1598f4fb8fdd16314c3172a3fed7550bc9027ff Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 27 Feb 2009 15:44:13 -0500 -Subject: [PATCH 25/36] Initiate smart card auth when clicking on it in list +Subject: [PATCH 25/37] Initiate smart card auth when clicking on it in list --- gui/simple-greeter/gdm-greeter-login-window.c | 24 ++++++++++++++++++++ @@ -16944,7 +16944,7 @@ index ed19e62..d3641ba 100644 From 5abe595674643baf0e7c811bf39adbd717910c3f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 11:10:28 -0500 -Subject: [PATCH 26/36] Only show task list if user is selected +Subject: [PATCH 26/37] Only show task list if user is selected --- gui/simple-greeter/gdm-greeter-login-window.c | 52 +++++++++++++++++-------- @@ -17142,7 +17142,7 @@ index 25831a6..162b784 100644 From 071d53902b55c4ac74553040703009d25ab770f0 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 13:53:34 -0500 -Subject: [PATCH 27/36] Pull verification functions out into their own subroutines +Subject: [PATCH 27/37] Pull verification functions out into their own subroutines This makes the function smaller and easier to read --- @@ -17314,7 +17314,7 @@ index c7c579b..6c625ba 100644 From ed50184115bb835c89bc0492e2a74c9cc6095b0b Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 13:57:34 -0500 -Subject: [PATCH 28/36] Add new function find_task_with_service_name +Subject: [PATCH 28/37] Add new function find_task_with_service_name It hides a bunch of icky foreach calls. --- @@ -17438,7 +17438,7 @@ index 6c625ba..b04549f 100644 From a80bfcb439d7cdd9ae1c719c5197f993c4062995 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 15:23:51 -0500 -Subject: [PATCH 29/36] Drop the different auth modes in favor of calling reset manually +Subject: [PATCH 29/37] Drop the different auth modes in favor of calling reset manually --- gui/simple-greeter/gdm-greeter-login-window.c | 57 +++++++++++++++---------- @@ -17589,7 +17589,7 @@ index b04549f..4256e1f 100644 From 60c4b08b34f72bfa19509f17785ce570426f5cde Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 17:09:16 -0500 -Subject: [PATCH 30/36] Notify plugins if their user choose requests fail +Subject: [PATCH 30/37] Notify plugins if their user choose requests fail This allows the smart card plugin to cancel pending conversations when a card gets inserted. @@ -17802,7 +17802,7 @@ index d3641ba..73e0f84 100644 From be8d9a5363300545f7ea51682ff6e1c17e3fdf26 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 13 Apr 2009 14:19:50 -0400 -Subject: [PATCH 31/36] reset all conversations if password conversation fails +Subject: [PATCH 31/37] reset all conversations if password conversation fails This is a temporary hack until we store plugin policy in gconf. @@ -17838,7 +17838,7 @@ index add0393..9613695 100644 From 10530c87e295f3ba83e16e75763217818480f224 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 21 Apr 2009 10:25:18 -0400 -Subject: [PATCH 32/36] When one PAM conversation wins, stop the others +Subject: [PATCH 32/37] When one PAM conversation wins, stop the others This doesn't work yet, it's still in progress code. --- @@ -17959,7 +17959,7 @@ index 337718b..63ea82c 100644 From ba40486a7e8a7be80b16a89d8a0f7fd264ddfe21 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 21 Apr 2009 15:30:28 -0400 -Subject: [PATCH 33/36] When one PAM conv. wins, actually stop the others +Subject: [PATCH 33/37] When one PAM conv. wins, actually stop the others We weren't properly keeping the winning conversation around in the previous commit @@ -18002,7 +18002,7 @@ index e63e453..2899ea2 100644 From c4ebe26db9c963d587694d0197e145e086ec43ca Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 13 May 2009 13:43:33 -0400 -Subject: [PATCH 34/36] Don't send auth-failed when worker dies +Subject: [PATCH 34/37] Don't send auth-failed when worker dies Authentication hasn't failed, it just got aborted before it could. This prevents a crash that happens when switching @@ -18060,7 +18060,7 @@ index 2899ea2..689e4cf 100644 From 68384fcc0d1dfb5b451d4be8136959a037c6c2a6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 16 Jun 2009 08:49:05 -0400 -Subject: [PATCH 35/36] Drop bogus conversation = NULL line +Subject: [PATCH 35/37] Drop bogus conversation = NULL line cancel_pending_query would set conversation to NULL immediately before trying to use the conversation. @@ -18095,7 +18095,7 @@ index 689e4cf..7528ae6 100644 From 0daaf4814f9f78be4e85bef7f181426c06c5349c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 20 Jul 2009 11:06:59 -0400 -Subject: [PATCH 36/36] Drop is_authenticated flag in session +Subject: [PATCH 36/37] Drop is_authenticated flag in session It's not used anymore, so no reason to set it. --- @@ -18125,3 +18125,31 @@ index 7528ae6..4b08da3 100644 -- 1.6.3.3 + +From 790263cf9b8cab0bf3dc39c29e814d8c9034d802 Mon Sep 17 00:00:00 2001 +From: Ray Strode +Date: Mon, 20 Jul 2009 12:56:08 -0400 +Subject: [PATCH 37/37] Only start session if in SESSION_OPEN state no accredited state + +The state machine check wasn't quite right in light of the new +SESSION_OPEN state +--- + daemon/gdm-session-worker.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/daemon/gdm-session-worker.c b/daemon/gdm-session-worker.c +index 1b1f14b..4ebde84 100644 +--- a/daemon/gdm-session-worker.c ++++ b/daemon/gdm-session-worker.c +@@ -2317,7 +2317,7 @@ on_start_program (GdmSessionWorker *worker, + const char *text; + dbus_bool_t res; + +- if (worker->priv->state != GDM_SESSION_WORKER_STATE_ACCREDITED) { ++ if (worker->priv->state != GDM_SESSION_WORKER_STATE_SESSION_OPENED) { + g_debug ("GdmSessionWorker: ignoring spurious start program while in state %s", get_state_name (worker->priv->state)); + return; + } +-- +1.6.3.3 + Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.476 retrieving revision 1.477 diff -u -p -r1.476 -r1.477 --- gdm.spec 20 Jul 2009 17:20:51 -0000 1.476 +++ gdm.spec 20 Jul 2009 20:16:34 -0000 1.477 @@ -16,7 +16,7 @@ Summary: The GNOME Display Manager Name: gdm Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -385,6 +385,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Mon Jul 20 2009 Ray Strode 1:2.27.4-2 +- Use correct multi-stack patch + * Mon Jul 20 2009 Ray Strode 1:2.27.4-1 - Update to 2.27.4 From lmacken at fedoraproject.org Mon Jul 20 20:19:22 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 20:19:22 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/F-11 python-repoze-who-plugins-sa.spec, 1.1, 1.2 Message-ID: <20090720201922.241A511C0072@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21400 Modified Files: python-repoze-who-plugins-sa.spec Log Message: Remove the test suite, since it conflicts with other packages (#512759) Index: python-repoze-who-plugins-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/F-11/python-repoze-who-plugins-sa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-who-plugins-sa.spec 16 Jul 2009 07:33:09 -0000 1.1 +++ python-repoze-who-plugins-sa.spec 20 Jul 2009 20:18:51 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-who-plugins-sa Version: 1.0 -Release: 0.2.%{_rcver}%{?dist} +Release: 0.3.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages @@ -34,15 +34,15 @@ or Elixir-based models. %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT - +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} +%{__rm} -fr %{buildroot}%{python_sitelib}/tests #%check #PYTHONPATH=$(pwd) nosetests %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Luke Macken - 1.0-0.3.rc1 +- Remove the test suite, since it conflicts with other packages (#512759) + * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, From pkgdb at fedoraproject.org Mon Jul 20 20:21:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:21:07 +0000 Subject: [pkgdb] xz: toshio has requested watchbugzilla Message-ID: <20090720202107.836A810F87C@bastion2.fedora.phx.redhat.com> toshio has requested the watchbugzilla acl on xz (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Mon Jul 20 20:21:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:21:08 +0000 Subject: [pkgdb] xz: toshio has requested watchcommits Message-ID: <20090720202108.230C910F89B@bastion2.fedora.phx.redhat.com> toshio has requested the watchcommits acl on xz (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From lmacken at fedoraproject.org Mon Jul 20 20:25:08 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 20:25:08 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/EL-5 python-repoze-who-plugins-sa.spec, 1.1, 1.2 Message-ID: <20090720202508.B5FCE11C0072@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22354 Modified Files: python-repoze-who-plugins-sa.spec Log Message: Remove the test suite, since it conflicts with other packages (#512759) Index: python-repoze-who-plugins-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/EL-5/python-repoze-who-plugins-sa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-who-plugins-sa.spec 16 Jul 2009 07:38:27 -0000 1.1 +++ python-repoze-who-plugins-sa.spec 20 Jul 2009 20:24:38 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-who-plugins-sa Version: 1.0 -Release: 0.2.%{_rcver}%{?dist} +Release: 0.3.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages @@ -34,15 +34,15 @@ or Elixir-based models. %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT - +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} +%{__rm} -fr %{buildroot}%{python_sitelib}/tests #%check #PYTHONPATH=$(pwd) nosetests %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Luke Macken - 1.0-0.3.rc1 +- Remove the test suite, since it conflicts with other packages (#512759) + * Thu May 21 2009 Luke Macken - 1.0-0.2.rc1 - Update to 1.0rc1 - Add python-elixir, python-sqlalchemy, python-coverage, python-nose, From xavierb at fedoraproject.org Mon Jul 20 20:42:57 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Mon, 20 Jul 2009 20:42:57 +0000 (UTC) Subject: rpms/nsca/EL-4 nsca-increase_max_plugin_output_length.patch, NONE, 1.1 nsca.spec, 1.1, 1.2 Message-ID: <20090720204257.7936211C0072@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/nsca/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25775 Modified Files: nsca.spec Added Files: nsca-increase_max_plugin_output_length.patch Log Message: Increase max plugin output length to match nagios nsca-increase_max_plugin_output_length.patch: common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE nsca-increase_max_plugin_output_length.patch --- --- include/common.h.orig 2009-07-17 11:38:58.000000000 +0200 +++ include/common.h 2009-07-17 11:40:23.000000000 +0200 @@ -48,7 +48,7 @@ #define MAX_HOSTNAME_LENGTH 64 #define MAX_DESCRIPTION_LENGTH 128 -#define MAX_PLUGINOUTPUT_LENGTH 512 +#define MAX_PLUGINOUTPUT_LENGTH 8192 #define MAX_PASSWORD_LENGTH 512 Index: nsca.spec =================================================================== RCS file: /cvs/pkgs/rpms/nsca/EL-4/nsca.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nsca.spec 3 Apr 2008 22:56:28 -0000 1.1 +++ nsca.spec 20 Jul 2009 20:42:27 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Nagios Service Check Acceptor Name: nsca Version: 2.7.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.nagios.org/ @@ -10,6 +10,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: nsca-2.7.2-initscript.patch Patch1: nsca-2.7.2-confpath.patch +Patch2: nsca-increase_max_plugin_output_length.patch BuildRequires: libmcrypt-devel Requires: nagios @@ -36,6 +37,7 @@ Client application for sending updates t %setup -q %patch0 -p0 -b .initscript %patch1 -p1 -b .confpath +%patch2 -p0 -b .max_plugin_output_length # Change defaults in the config file to match the nagios package sed -i -e "s|^command_file=.*|command_file=%{_localstatedir}/spool/nagios/cmd/nagios.cmd|" \ -e "s|^alternate_dump_file=.*|alternate_dump_file=%{_localstatedir}/spool/nagios/cmd/nsca.dump|" \ @@ -99,6 +101,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Xavier Bachelot - 2.7.2-7 +- Increase max plugin output length to match nagios + (RHBZ#497847, related to RHBZ#469198). + * Mon Mar 31 2008 Wart - 2.7.2-6 - Change license to match sources From awjb at fedoraproject.org Mon Jul 20 20:43:09 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Mon, 20 Jul 2009 20:43:09 +0000 (UTC) Subject: rpms/wine/devel noautobuild,NONE,1.1 Message-ID: <20090720204309.431F611C0072@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/wine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25858 Added Files: noautobuild Log Message: - evade autobuild --- NEW FILE noautobuild --- transition from ix86 only build to ix86/x86_64 32bit build From xavierb at fedoraproject.org Mon Jul 20 20:43:48 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Mon, 20 Jul 2009 20:43:48 +0000 (UTC) Subject: rpms/nsca/EL-5 nsca-increase_max_plugin_output_length.patch, NONE, 1.1 nsca.spec, 1.1, 1.2 Message-ID: <20090720204348.A537E11C0072@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/nsca/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26003 Modified Files: nsca.spec Added Files: nsca-increase_max_plugin_output_length.patch Log Message: Increase max plugin output length to match nagios nsca-increase_max_plugin_output_length.patch: common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE nsca-increase_max_plugin_output_length.patch --- --- include/common.h.orig 2009-07-17 11:38:58.000000000 +0200 +++ include/common.h 2009-07-17 11:40:23.000000000 +0200 @@ -48,7 +48,7 @@ #define MAX_HOSTNAME_LENGTH 64 #define MAX_DESCRIPTION_LENGTH 128 -#define MAX_PLUGINOUTPUT_LENGTH 512 +#define MAX_PLUGINOUTPUT_LENGTH 8192 #define MAX_PASSWORD_LENGTH 512 Index: nsca.spec =================================================================== RCS file: /cvs/pkgs/rpms/nsca/EL-5/nsca.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nsca.spec 3 Apr 2008 22:52:28 -0000 1.1 +++ nsca.spec 20 Jul 2009 20:43:18 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Nagios Service Check Acceptor Name: nsca Version: 2.7.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.nagios.org/ @@ -10,6 +10,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: nsca-2.7.2-initscript.patch Patch1: nsca-2.7.2-confpath.patch +Patch2: nsca-increase_max_plugin_output_length.patch BuildRequires: libmcrypt-devel Requires: nagios @@ -36,6 +37,7 @@ Client application for sending updates t %setup -q %patch0 -p0 -b .initscript %patch1 -p1 -b .confpath +%patch2 -p0 -b .max_plugin_output_length # Change defaults in the config file to match the nagios package sed -i -e "s|^command_file=.*|command_file=%{_localstatedir}/spool/nagios/cmd/nagios.cmd|" \ -e "s|^alternate_dump_file=.*|alternate_dump_file=%{_localstatedir}/spool/nagios/cmd/nsca.dump|" \ @@ -99,6 +101,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 17 2009 Xavier Bachelot - 2.7.2-7 +- Increase max plugin output length to match nagios + (RHBZ#497847, related to RHBZ#469198). + * Mon Mar 31 2008 Wart - 2.7.2-6 - Change license to match sources From pkgdb at fedoraproject.org Mon Jul 20 20:48:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:48:34 +0000 Subject: [pkgdb] PackageKit had acl change status Message-ID: <20090720204835.00D9610F87C@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on PackageKit (Fedora devel) to Obsolete for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/PackageKit From pkgdb at fedoraproject.org Mon Jul 20 20:48:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:48:54 +0000 Subject: [pkgdb] PackageKit had acl change status Message-ID: <20090720204855.0859110F897@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on PackageKit (Fedora 9) to Obsolete for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/PackageKit From pkgdb at fedoraproject.org Mon Jul 20 20:48:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:48:57 +0000 Subject: [pkgdb] PackageKit had acl change status Message-ID: <20090720204857.9C66E10F89D@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on PackageKit (Fedora 10) to Obsolete for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/PackageKit From pkgdb at fedoraproject.org Mon Jul 20 20:49:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 20:49:01 +0000 Subject: [pkgdb] PackageKit had acl change status Message-ID: <20090720204901.51DAE10F8A6@bastion2.fedora.phx.redhat.com> lmacken has set the watchbugzilla acl on PackageKit (Fedora 11) to Obsolete for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/PackageKit From bpostle at fedoraproject.org Mon Jul 20 20:54:47 2009 From: bpostle at fedoraproject.org (bpostle) Date: Mon, 20 Jul 2009 20:54:47 +0000 (UTC) Subject: rpms/hugin/devel .cvsignore, 1.3, 1.4 hugin.spec, 1.21, 1.22 sources, 1.7, 1.8 Message-ID: <20090720205447.6A19711C0072@cvs1.fedora.phx.redhat.com> Author: bpostle Update of /cvs/extras/rpms/hugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28472 Modified Files: .cvsignore hugin.spec sources Log Message: Update to 0.8.0 release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/hugin/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jan 2008 00:17:39 -0000 1.3 +++ .cvsignore 20 Jul 2009 20:54:16 -0000 1.4 @@ -1 +1 @@ -hugin-0.7.0.tar.gz +hugin-0.8.0.tar.gz Index: hugin.spec =================================================================== RCS file: /cvs/extras/rpms/hugin/devel/hugin.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- hugin.spec 27 May 2009 23:07:37 -0000 1.21 +++ hugin.spec 20 Jul 2009 20:54:17 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A panoramic photo stitcher and more Name: hugin -Version: 0.7.0 -Release: 7%{?dist} +Version: 0.8.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://downloads.sourceforge.net/hugin/%{name}-%{version}.tar.gz @@ -9,10 +9,9 @@ URL: http://hugin.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: shared-mime-info Requires: %{name}-base = %{version}-%{release} -BuildRequires: libpano13-devel zlib-devel libtiff-devel libjpeg-devel -BuildRequires: libpng-devel gettext-devel wxGTK-devel >= 2.6.0 boost-devel -BuildRequires: cmake desktop-file-utils OpenEXR-devel exiv2-devel -Patch1: hugin-0.7.0-includes.patch +BuildRequires: libpano13-devel >= 2.9.14 zlib-devel libtiff-devel libjpeg-devel +BuildRequires: libpng-devel gettext-devel wxGTK-devel >= 2.7.0 boost-devel +BuildRequires: cmake desktop-file-utils OpenEXR-devel exiv2-devel glew-devel %description hugin can be used to stitch multiple images together. The resulting image can @@ -23,7 +22,7 @@ to create high quality images %package base Summary: Command-line tools and libraries required by hugin Group: Applications/Multimedia -Requires: make enblend >= 3.1 libpano13-tools >= 2.9.12 perl-Image-ExifTool +Requires: make enblend >= 3.2 perl-Image-ExifTool %description base Command-line tools used to generate panoramic images, install this package @@ -32,7 +31,6 @@ without a GUI environment. %prep %setup -q -%patch1 -p1 -b .includes # replace autopano-sift default with info message sed -i 's/"autopano-sift-c"/"autopano-noop.sh"/' \ src/hugin1/hugin/config_defaults.h @@ -50,14 +48,14 @@ install -m 0755 utils/autopano-noop.sh % rm %{buildroot}/%{_libdir}/libhuginbase.so rm %{buildroot}/%{_libdir}/libhuginANN.so rm %{buildroot}/%{_libdir}/libhuginvigraimpex.so -rm %{buildroot}/%{_libdir}/libhuginjhead.so +rm %{buildroot}/%{_libdir}/libceleste.so desktop-file-install --vendor="" --delete-original \ --dir=%{buildroot}/%{_datadir}/applications \ - %{buildroot}/%{_datadir}/applications/hugin_stitch_project.desktop + %{buildroot}/%{_datadir}/applications/%{name}.desktop desktop-file-install --vendor="" --delete-original \ --dir=%{buildroot}/%{_datadir}/applications \ - %{buildroot}/%{_datadir}/applications/%{name}.desktop + %{buildroot}/%{_datadir}/applications/PTBatcherGUI.desktop %find_lang %{name} %clean @@ -81,34 +79,55 @@ touch --no-create %{_datadir}/icons/gnom %files -f %{name}.lang %defattr(-, root, root,-) +%{_bindir}/PTBatcher +%{_bindir}/PTBatcherGUI +%{_bindir}/celeste_standalone %{_bindir}/hugin %{_bindir}/hugin_stitch_project %{_bindir}/nona_gui -%{_datadir}/%{name} +%{_bindir}/autopano-noop.sh +%{_datadir}/%{name}/xrc %{_datadir}/applications/%{name}.desktop -%{_datadir}/applications/hugin_stitch_project.desktop +%{_datadir}/applications/PTBatcherGUI.desktop %{_datadir}/pixmaps/%{name}.png %{_datadir}/icons/gnome/48x48/mimetypes/* %{_datadir}/mime/packages/%{name}.xml +%{_mandir}/man1/PTBatcherGUI.1.gz +%{_mandir}/man1/celeste_standalone.1.gz +%{_mandir}/man1/hugin.1.gz +%{_mandir}/man1/hugin_stitch_project.1.gz +%{_mandir}/man1/nona_gui.1.gz -%doc AUTHORS COPYING INSTALL_cmake LICENCE README README_JP TODO LICENCE_JHEAD LICENCE_VIGRA doc/nona.txt doc/fulla.html src/hugin1/hugin/xrc/data/help_en_EN/LICENCE.manual doc/batch-processing/README.batch doc/batch-processing/*.mk +%doc AUTHORS COPYING INSTALL_cmake LICENCE README README_JP TODO LICENCE_JHEAD LICENCE_VIGRA doc/nona.txt doc/fulla.html src/hugin1/hugin/xrc/data/help_en_EN/LICENCE.manual %files base %defattr(-, root, root,-) %{_bindir}/align_image_stack %{_bindir}/autooptimiser -%{_bindir}/autopano-noop.sh %{_bindir}/fulla -%{_bindir}/pto2mk %{_bindir}/hugin_hdrmerge %{_bindir}/matchpoint %{_bindir}/nona -%{_bindir}/vig_optimize +%{_bindir}/pto2mk %{_bindir}/tca_correct +%{_bindir}/vig_optimize %{_libdir}/libhugin* -%{_mandir}/man1/* +%{_libdir}/libceleste* +%{_datadir}/%{name} +%{_datadir}/%{name}/Makefile.*.mk +%{_mandir}/man1/align_image_stack.1.gz +%{_mandir}/man1/autooptimiser.1.gz +%{_mandir}/man1/fulla.1.gz +%{_mandir}/man1/hugin_hdrmerge.1.gz +%{_mandir}/man1/nona.1.gz +%{_mandir}/man1/pto2mk.1.gz +%{_mandir}/man1/tca_correct.1.gz +%{_mandir}/man1/vig_optimize.1.gz %changelog +* Fri Jul 17 2009 Bruno Postle 0.8.0-1 +- 0.8.0 release + * Thu May 28 2009 Bruno Postle - 0.7.0-7 - Rebuild for libpano13 soname change Index: sources =================================================================== RCS file: /cvs/extras/rpms/hugin/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Oct 2008 10:43:54 -0000 1.7 +++ sources 20 Jul 2009 20:54:17 -0000 1.8 @@ -1 +1 @@ -6efbfc72ceba028ca3dff3c23806a7f3 hugin-0.7.0.tar.gz +0c88afbd7f8159aac29404ff40370400 hugin-0.8.0.tar.gz From lmacken at fedoraproject.org Mon Jul 20 20:56:07 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Mon, 20 Jul 2009 20:56:07 +0000 (UTC) Subject: rpms/openbox/devel openbox.spec,1.41,1.42 Message-ID: <20090720205607.7339011C0072@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/openbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28921 Modified Files: openbox.spec Log Message: Require the gnome-menu package to get our xdg-menu dynamic pipe menu to work out of the box. Index: openbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/openbox/devel/openbox.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- openbox.spec 26 Feb 2009 08:22:07 -0000 1.41 +++ openbox.spec 20 Jul 2009 20:55:37 -0000 1.42 @@ -1,6 +1,6 @@ Name: openbox Version: 3.4.7.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A highly configurable and standards-compliant X11 window manager Group: User Interface/Desktops @@ -21,6 +21,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: %{name}-libs = %{version}-%{release} +# The xdg-menu dynamic pipe menu requires the gmenu Python module +Requires: gnome-menus + BuildRequires: gettext BuildRequires: desktop-file-utils BuildRequires: pango-devel @@ -143,6 +146,10 @@ rm -rf %{buildroot} %changelog +* Mon Jul 20 2009 Luke Macken - 3.4.7.2-8 +- Require the gnome-menus package to get our xdg-menu dynamic pipe menu + to work out of the box. + * Thu Feb 26 2009 Fedora Release Engineering - 3.4.7.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bpostle at fedoraproject.org Mon Jul 20 20:59:01 2009 From: bpostle at fedoraproject.org (bpostle) Date: Mon, 20 Jul 2009 20:59:01 +0000 (UTC) Subject: rpms/hugin/devel hugin-0.7.0-includes.patch,1.1,NONE Message-ID: <20090720205901.88C0111C0072@cvs1.fedora.phx.redhat.com> Author: bpostle Update of /cvs/extras/rpms/hugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30347 Removed Files: hugin-0.7.0-includes.patch Log Message: no longer needed patch --- hugin-0.7.0-includes.patch DELETED --- From ajax at fedoraproject.org Mon Jul 20 21:08:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 21:08:47 +0000 (UTC) Subject: rpms/mesa/devel mesa.spec,1.243,1.244 sources,1.35,1.36 Message-ID: <20090720210847.ABAFF11C0072@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv789 Modified Files: mesa.spec sources Log Message: sync with F11 Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.243 retrieving revision 1.244 diff -u -p -r1.243 -r1.244 --- mesa.spec 11 Jun 2009 17:17:22 -0000 1.243 +++ mesa.spec 20 Jul 2009 21:08:47 -0000 1.244 @@ -1,26 +1,27 @@ # When bootstrapping an arch, omit the -demos subpackage. -# S390 doesn't have video cards, so it's not much use building DRI there. +# S390 doesn't have video cards, but we need swrast for xserver's GLX %ifarch s390 s390x -%define with_dri 0 -%define driver xlib +%define with_hardware 0 +%define dri_drivers --with-dri-drivers=swrast %else -%define with_dri 1 -%define driver dri +%define with_hardware 1 %endif %define _default_patch_fuzz 2 %define manpages gl-manpages-1.0.1 %define xdriinfo xdriinfo-1.0.2 -%define gitdate 20090428 +%define gitdate 20090612 #% define snapshot +%define demodir %{_libdir}/mesa + Summary: Mesa graphics libraries Name: mesa -Version: 7.5 -Release: 0.15%{?dist} +Version: 7.6 +Release: 0.3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -40,22 +41,17 @@ Patch1: mesa-7.1-osmesa-version.patch Patch2: mesa-7.1-nukeglthread-debug.patch Patch3: mesa-no-mach64.patch -Patch6: radeon-rewrite.patch - Patch7: mesa-7.1-link-shared.patch Patch9: intel-revert-vbl.patch Patch12: mesa-7.1-disable-intel-classic-warn.patch Patch13: mesa-7.5-sparc64.patch -Patch15: radeon-rewrite-emit1clip.patch -Patch16: mesa-7.5-r300-batch-accounting.patch - BuildRequires: pkgconfig autoconf automake -%if %{with_dri} -BuildRequires: libdrm-devel >= 2.4.5-1 +%if %{with_hardware} BuildRequires: kernel-headers >= 2.6.27-0.305.rc5.git6 %endif +BuildRequires: libdrm-devel >= 2.4.5-1 BuildRequires: libXxf86vm-devel BuildRequires: expat-devel >= 2.0 BuildRequires: xorg-x11-proto-devel >= 7.1-10 @@ -78,9 +74,9 @@ Group: System Environment/Libraries Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig Provides: libGL -%if %{with_dri} -Requires: libdrm >= 2.4.5-1 Requires: mesa-dri-drivers%{?_isa} = %{version}-%{release} +Requires: libdrm >= 2.4.5-1 +%if %{with_hardware} Conflicts: xorg-x11-server-Xorg < 1.4.99.901-14 %endif @@ -88,13 +84,11 @@ Conflicts: xorg-x11-server-Xorg < 1.4.99 Mesa libGL runtime library. -%if %{with_dri} %package dri-drivers Summary: Mesa-based DRI drivers Group: User Interface/X Hardware Support %description dri-drivers Mesa-based DRI drivers. -%endif %package libGL-devel @@ -168,24 +162,21 @@ This package provides some demo applicat %prep -#%setup -q -n mesa-%{version}%{?snapshot} -b0 -b2 -b5 +#setup -q -n mesa-%{version}%{?snapshot} -b0 -b2 -b5 %setup -q -n mesa-%{gitdate} -b2 -b5 %patch1 -p1 -b .osmesa %patch2 -p1 -b .intel-glthread %patch3 -p0 -b .no-mach64 -%patch6 -p1 -b .radeon-rewrite %patch7 -p1 -b .dricore %patch9 -p1 -b .intel-vbl %patch12 -p1 -b .intel-nowarn %patch13 -p1 -b .sparc64 -%patch15 -p1 -b .fix-clip -%patch16 -p1 -b .r300-accounting # Hack the demos to use installed data files -sed -i 's,../images,%{_libdir}/mesa-demos-data,' progs/demos/*.c -sed -i 's,geartrain.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/geartrain.c -sed -i 's,isosurf.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/isosurf.c -sed -i 's,terrain.dat,%{_libdir}/mesa-demos-data/&,' progs/demos/terrain.c +sed -i 's,../images,%{_libdir}/mesa,' progs/demos/*.c +sed -i 's,geartrain.dat,%{_libdir}/mesa/&,' progs/demos/geartrain.c +sed -i 's,isosurf.dat,%{_libdir}/mesa/&,' progs/demos/isosurf.c +sed -i 's,terrain.dat,%{_libdir}/mesa/&,' progs/demos/terrain.c %build @@ -228,8 +219,9 @@ export CXXFLAGS="$RPM_OPT_FLAGS -Os" --disable-glut \ --disable-gallium \ --disable-gl-osmesa \ - --with-driver=%{driver} \ - --with-dri-driverdir=%{_libdir}/dri + --with-driver=dri \ + --with-dri-driverdir=%{_libdir}/dri \ + %{dri_drivers} make #{?_smp_mflags} @@ -253,14 +245,12 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT DRI_DIRS= # just the DRI drivers that are sane -%if %{with_dri} install -d $RPM_BUILD_ROOT%{_libdir}/dri install -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/dri %{_lib}/libdricore.so >& /dev/null for f in i810 i915 i965 mach64 mga r128 r200 r300 radeon savage sis swrast tdfx unichrome; do so=%{_lib}/${f}_dri.so test -e $so && echo $so done | xargs install -m 0755 -t $RPM_BUILD_ROOT%{_libdir}/dri >& /dev/null || : -%endif # strip out undesirable headers pushd $RPM_BUILD_ROOT%{_includedir}/GL @@ -268,20 +258,18 @@ rm [a-fh-np-wyz]*.h gg*.h glf*.h glew.h popd pushd $RPM_BUILD_ROOT%{_libdir} -rm libEGL* demodriver.so +rm -f libEGL* popd # XXX demos, since they don't install automatically. should fix that. install -d $RPM_BUILD_ROOT%{_bindir} install -m 0755 progs/xdemos/glxgears $RPM_BUILD_ROOT%{_bindir} install -m 0755 progs/xdemos/glxinfo $RPM_BUILD_ROOT%{_bindir} +install -d $RPM_BUILD_ROOT%{demodir} find progs/demos/ -type f -perm /0111 | - xargs install -m 0755 -t $RPM_BUILD_ROOT/%{_bindir} -# bah, name conflicts -mv $RPM_BUILD_ROOT/%{_bindir}/{rain,mesa-rain} -install -d $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data -install -m 0644 progs/images/*.rgb $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data -install -m 0644 progs/demos/*.dat $RPM_BUILD_ROOT/%{_libdir}/mesa-demos-data + xargs install -m 0755 -t $RPM_BUILD_ROOT/%{demodir} +install -m 0644 progs/images/*.rgb $RPM_BUILD_ROOT/%{demodir} +install -m 0644 progs/demos/*.dat $RPM_BUILD_ROOT/%{demodir} # and osmesa mv osmesa*/* $RPM_BUILD_ROOT%{_libdir} @@ -318,13 +306,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libGL.so.1 %{_libdir}/libGL.so.1.* -%if %{with_dri} %files dri-drivers %defattr(-,root,root,-) %dir %{_libdir}/dri %{_libdir}/dri/libdricore.so %{_libdir}/dri/*_dri.so -%endif %files libGL-devel %defattr(-,root,root,-) @@ -334,11 +320,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/GL/glx.h %{_includedir}/GL/glx_mangle.h %{_includedir}/GL/glxext.h -%if %{with_dri} %dir %{_includedir}/GL/internal %{_includedir}/GL/internal/dri_interface.h %{_libdir}/pkgconfig/dri.pc -%endif %{_libdir}/libGL.so %{_libdir}/pkgconfig/gl.pc %{_datadir}/man/man3/gl[^uX]*.3gl* @@ -379,61 +363,21 @@ rm -rf $RPM_BUILD_ROOT %files demos %defattr(-,root,root,-) -%{_bindir}/arbfplight -%{_bindir}/arbfslight -%{_bindir}/arbocclude -%{_bindir}/bounce -%{_bindir}/clearspd -%{_bindir}/copypix -%{_bindir}/cubemap -%{_bindir}/dinoshade -%{_bindir}/drawpix -%{_bindir}/engine -%{_bindir}/fbo_firecube -%{_bindir}/fbotexture -%{_bindir}/fire -%{_bindir}/fogcoord -%{_bindir}/fplight -%{_bindir}/fslight -%{_bindir}/gamma -%{_bindir}/gearbox -%{_bindir}/gears -%{_bindir}/geartrain -%{_bindir}/glinfo -%{_bindir}/gloss -%{_bindir}/gltestperf -%{_bindir}/ipers -%{_bindir}/isosurf -%{_bindir}/lodbias -%{_bindir}/morph3d -%{_bindir}/multiarb -%{_bindir}/paltex -%{_bindir}/pointblast -%{_bindir}/projtex -%{_bindir}/mesa-rain -%{_bindir}/ray -%{_bindir}/readpix -%{_bindir}/reflect -%{_bindir}/renormal -%{_bindir}/shadowtex -%{_bindir}/singlebuffer -%{_bindir}/spectex -%{_bindir}/spriteblast -%{_bindir}/stex3d -%{_bindir}/teapot -%{_bindir}/terrain -%{_bindir}/tessdemo -%{_bindir}/texcyl -%{_bindir}/texenv -%{_bindir}/textures -%{_bindir}/trispd -%{_bindir}/tunnel -%{_bindir}/tunnel2 -%{_bindir}/vao_demo -%{_bindir}/winpos -%{_libdir}/mesa-demos-data +%{demodir} %changelog +* Tue Jun 16 2009 Karsten Hopp 7.6-0.3 +- some more fixes for s390(x) + +* Tue Jun 16 2009 Adam Jackson 7.6-0.2 +- Rework the DRI driver support for s390 and friends. + +* Fri Jun 12 2009 Dave Airlie 7.6-0.1 +- rebase mesa to latest git snapshot - fixes a lot of radeon issues + +* Thu Jun 11 2009 Adam Jackson 7.5-0.16 +- Install demos to %%{_libdir}/mesa + * Thu May 21 2009 Adam Jackson 7.5-0.15 - mesa-7.5-r300-batch-accounting.patch: Fix cmdbuf sizing (#501312) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 11 Jun 2009 17:17:23 -0000 1.35 +++ sources 20 Jul 2009 21:08:47 -0000 1.36 @@ -1,3 +1,3 @@ 6ae05158e678f4594343f32c2ca50515 gl-manpages-1.0.1.tar.bz2 a5ec51ed9f0a55dc3462d90d52ff899c xdriinfo-1.0.2.tar.bz2 -d7ff7c44fe42f2639845a2975804792d mesa-20090428.tar.bz2 +93b7016851831fc31d02103e7d9551b3 mesa-20090612.tar.bz2 From tmz at fedoraproject.org Mon Jul 20 21:22:08 2009 From: tmz at fedoraproject.org (Todd M. Zullinger) Date: Mon, 20 Jul 2009 21:22:08 +0000 (UTC) Subject: rpms/paperkey/F-9 paperkey.spec,1.3,1.4 Message-ID: <20090720212208.3BD8611C0072@cvs1.fedora.phx.redhat.com> Author: tmz Update of /cvs/extras/rpms/paperkey/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4067 Modified Files: paperkey.spec Log Message: * Mon Jul 20 2009 T?dd Z?llinger - Testing CVS syncmail changes Index: paperkey.spec =================================================================== RCS file: /cvs/extras/rpms/paperkey/F-9/paperkey.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- paperkey.spec 12 Feb 2008 07:58:57 -0000 1.3 +++ paperkey.spec 20 Jul 2009 21:21:37 -0000 1.4 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 T?dd Z?llinger +- Testing CVS syncmail changes + * Tue Feb 12 2008 Todd Zullinger - 0.8-1 - update to 0.8 - update %%description from upstream spec file From jkeating at fedoraproject.org Mon Jul 20 21:25:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 20 Jul 2009 21:25:13 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-10 trac-mercurial-plugin-hg-1.3.patch, NONE, 1.1 trac-mercurial-plugin.spec, 1.4, 1.5 Message-ID: <20090720212513.2ABC911C0072@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4711 Modified Files: trac-mercurial-plugin.spec Added Files: trac-mercurial-plugin-hg-1.3.patch Log Message: * Mon Jul 20 2009 Jesse Keating - 0.10.0.3-2.20090715svn7951 - Add support for hg 1.3 trac-mercurial-plugin-hg-1.3.patch: backend.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- NEW FILE trac-mercurial-plugin-hg-1.3.patch --- diff -up ./tracvc/hg/backend.py.jk ./tracvc/hg/backend.py --- ./tracvc/hg/backend.py.jk 2009-07-20 14:19:26.404008302 -0700 +++ ./tracvc/hg/backend.py 2009-07-20 14:22:34.387008040 -0700 @@ -133,7 +133,8 @@ class MercurialConnector(Component): class trac_ui(ui): def __init__(self): - ui.__init__(self, interactive=False) + ui.__init__(self) + self.setconfig('ui', 'interactive', 'off') def write(self, *args): pass def write_err(self, str): pass Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/trac-mercurial-plugin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- trac-mercurial-plugin.spec 15 Jul 2009 21:00:03 -0000 1.4 +++ trac-mercurial-plugin.spec 20 Jul 2009 21:24:42 -0000 1.5 @@ -5,7 +5,7 @@ Name: trac-mercurial-plugin Version: 0.10.0.3 -Release: 1.20090715svn%{svnrev}%{?dist} +Release: 2.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -16,18 +16,20 @@ URL: http://trac.edgewall.org # cd mercurial-plugin; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz +Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: mercurial >= 1.2, trac, python-setuptools +Requires: mercurial >= 1.3, trac, python-setuptools %description This plugin for Trac provides support for the Mercurial SCM. %prep %setup -n TracMercurial-%{version} -q +%patch0 -p0 %build @@ -55,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Jesse Keating - 0.10.0.3-2.20090715svn7951 +- Add support for hg 1.3 + * Wed Jul 15 2009 Jesse Keating - 0.10.0.3-1.20090715svn7951 - New upstream release to support mercurial 1.2 API From scop at fedoraproject.org Mon Jul 20 21:25:13 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Mon, 20 Jul 2009 21:25:13 +0000 (UTC) Subject: rpms/colordiff/devel colordiff-1.0.9-cdiff-xz.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 colordiff.spec, 1.15, 1.16 sources, 1.8, 1.9 colordiff-1.0.7-wget111-441862.patch, 1.1, NONE colordiff-1.0.8a-cdiff.patch, 1.1, NONE colordiff-1.0.8a-destdir.patch, 1.2, NONE Message-ID: <20090720212513.358B611C00D5@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/colordiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4767 Modified Files: .cvsignore colordiff.spec sources Added Files: colordiff-1.0.9-cdiff-xz.patch Removed Files: colordiff-1.0.7-wget111-441862.patch colordiff-1.0.8a-cdiff.patch colordiff-1.0.8a-destdir.patch Log Message: * Tue Jul 21 2009 Ville Skytt? - 1.0.9-1 - Update to 1.0.9; wget 1.11, lzma and destdir patches applied upstream. - Patch cdiff for xz support. colordiff-1.0.9-cdiff-xz.patch: cdiff.sh | 3 ++- cdiff.xml | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) --- NEW FILE colordiff-1.0.9-cdiff-xz.patch --- diff -up colordiff-1.0.9/cdiff.sh~ colordiff-1.0.9/cdiff.sh --- colordiff-1.0.9/cdiff.sh~ 2009-01-26 22:17:47.000000000 +0200 +++ colordiff-1.0.9/cdiff.sh 2009-07-21 00:20:05.000000000 +0300 @@ -2,7 +2,7 @@ # cdiff.sh - Convenience wrapper for colordiff # -# Copyright (C) 2003-2004 Ville Skytt? +# Copyright (C) 2003-2009 Ville Skytt? # Based on cdiff version 1.4 by eivind at FreeBSD.org # # This program is free software; you can redistribute it and/or @@ -24,6 +24,7 @@ file=`echo "$1" | perl -pe 's|^file:/+|/|i'` case "$file" in *.bz2) cat="bzip2 -dcf" ;; + *.xz) cat="xz -dc" ;; *.lzma) cat="lzma -dc" ;; *) cat="gzip -dcf" ;; esac diff -up colordiff-1.0.9/cdiff.xml~ colordiff-1.0.9/cdiff.xml --- colordiff-1.0.9/cdiff.xml~ 2009-01-26 22:16:44.000000000 +0200 +++ colordiff-1.0.9/cdiff.xml 2009-07-21 00:11:58.000000000 +0300 @@ -35,9 +35,9 @@ in a URL or a file, e.g. cdiff http://some.url.com/foo/thing.patch -It also adds support for reading gzip, bzip2 and lzma compressed diffs, -and like colordiff, also supports reading diffs from standard input if URL -or a filename is not specified. &cdiff; pipes colordiff's output through +It also adds support for reading gzip, bzip2, xz, and lzma compressed +diffs, and like colordiff, also supports reading diffs from standard input if +URL or a filename is not specified. &cdiff; pipes colordiff's output through less -R. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 26 Jan 2009 17:29:16 -0000 1.7 +++ .cvsignore 20 Jul 2009 21:25:12 -0000 1.8 @@ -1 +1 @@ -colordiff-1.0.8a.tar.gz +colordiff-1.0.9.tar.gz Index: colordiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/colordiff.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- colordiff.spec 24 Feb 2009 08:22:50 -0000 1.15 +++ colordiff.spec 20 Jul 2009 21:25:12 -0000 1.16 @@ -1,6 +1,6 @@ Name: colordiff -Version: 1.0.8a -Release: 3 +Version: 1.0.9 +Release: 1%{?dist} Summary: Color terminal highlighter for diff files Group: Applications/Text @@ -9,18 +9,15 @@ URL: http://colordiff.sourcef Source0: http://colordiff.sourceforge.net/%{name}-%{version}.tar.gz # Non-upstream, better default colors for Fedora default desktop themes Patch0: %{name}-1.0.6-colors.patch -# Sent upstream 2008-04-?? -Patch1: %{name}-1.0.7-wget111-441862.patch -# Sent upstream 2009-01-26 -Patch2: %{name}-1.0.8a-destdir.patch -# Sent upstream 2009-01-26 -Patch3: %{name}-1.0.8a-cdiff.patch +# Sent upstream 2009-07-21 +Patch1: %{name}-1.0.9-cdiff-xz.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -# xmlto, docbook-dtds for patch3 +# xmlto, docbook-dtds for patch1 BuildRequires: xmlto, docbook-dtd412-xml Requires: lzma +Requires: xz Requires: bzip2 Requires: gzip Requires: less @@ -37,8 +34,6 @@ pretty syntax highlighting. Color schem %setup -q %patch0 -p1 %patch1 -p1 -%patch2 -p1 -%patch3 -p1 mv colordiffrc colordiffrc-darkbg ; cp -p colordiffrc-lightbg colordiffrc f=CHANGES ; iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f @@ -68,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Ville Skytt? - 1.0.9-1 +- Update to 1.0.9; wget 1.11, lzma and destdir patches applied upstream. +- Patch cdiff for xz support. + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.8a-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 26 Jan 2009 17:29:17 -0000 1.8 +++ sources 20 Jul 2009 21:25:13 -0000 1.9 @@ -1 +1 @@ -2355debed9a9a0183c33ef27c62feb3b colordiff-1.0.8a.tar.gz +31864847eaa4e900f72bbb6bbc64f1ec colordiff-1.0.9.tar.gz --- colordiff-1.0.7-wget111-441862.patch DELETED --- --- colordiff-1.0.8a-cdiff.patch DELETED --- --- colordiff-1.0.8a-destdir.patch DELETED --- From tmz at fedoraproject.org Mon Jul 20 21:28:44 2009 From: tmz at fedoraproject.org (Todd M. Zullinger) Date: Mon, 20 Jul 2009 21:28:44 +0000 (UTC) Subject: rpms/paperkey/F-9 paperkey.spec,1.4,1.5 Message-ID: <20090720212844.7C4C511C0072@cvs1.fedora.phx.redhat.com> Author: tmz Update of /cvs/extras/rpms/paperkey/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6131 Modified Files: paperkey.spec Log Message: Remove changes from CVS syncmail testing Index: paperkey.spec =================================================================== RCS file: /cvs/extras/rpms/paperkey/F-9/paperkey.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- paperkey.spec 20 Jul 2009 21:21:37 -0000 1.4 +++ paperkey.spec 20 Jul 2009 21:28:14 -0000 1.5 @@ -45,9 +45,6 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Mon Jul 20 2009 T?dd Z?llinger -- Testing CVS syncmail changes - * Tue Feb 12 2008 Todd Zullinger - 0.8-1 - update to 0.8 - update %%description from upstream spec file From nhorman at fedoraproject.org Mon Jul 20 21:37:24 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 20 Jul 2009 21:37:24 +0000 (UTC) Subject: rpms/coda/F-11 coda-6.9.4-sname-fault.patch, NONE, 1.1 coda.spec, 1.11, 1.12 Message-ID: <20090720213724.5E03411C0072@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7787 Modified Files: coda.spec Added Files: coda-6.9.4-sname-fault.patch Log Message: Fixing fortify source error in sname variable coda-6.9.4-sname-fault.patch: srv.cc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) --- NEW FILE coda-6.9.4-sname-fault.patch --- diff -up coda-6.9.4/coda-src/vice/srv.cc.orig coda-6.9.4/coda-src/vice/srv.cc --- coda-6.9.4/coda-src/vice/srv.cc.orig 2009-07-20 17:28:11.000000000 -0400 +++ coda-6.9.4/coda-src/vice/srv.cc 2009-07-20 17:30:32.000000000 -0400 @@ -315,7 +315,7 @@ void zombie(int sig) int main(int argc, char *argv[]) { - char sname[20]; + char sname[64]; int i; struct stat buff; PROCESS serverPid, resPid, smonPid, resworkerPid; @@ -522,12 +522,15 @@ int main(int argc, char *argv[]) CODA_ASSERT(LWP_CreateProcess(CallBackCheckLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&cbwait, "CheckCallBack", &serverPid) == LWP_SUCCESS); + for (i=0; i < auth_lwps; i++) { + memset(sname, 0, SNAMESIZE); sprintf(sname, "AuthLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(AuthLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); } for (i=0; i < server_lwps; i++) { + memset(sname, 0, SNAMESIZE); sprintf(sname, "ServerLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(ServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); @@ -535,16 +538,18 @@ int main(int argc, char *argv[]) /* set up resolution threads */ for (i = 0; i < 2; i++){ + memset(sname, 0, SNAMESIZE); sprintf(sname, "ResLWP-%d", i); CODA_ASSERT(LWP_CreateProcess(ResLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - } + } + memset(sname, 0, SNAMESIZE); sprintf(sname, "ResCheckSrvrLWP"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - + memset(sname, 0, SNAMESIZE); sprintf(sname, "ResCheckSrvrLWP_worker"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP_worker, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, @@ -557,6 +562,7 @@ int main(int argc, char *argv[]) SLog(29, "fileserver: returning from InitvolUtil"); extern void SmonDaemon(void *); + memset(sname, 0, SNAMESIZE); sprintf(sname, "SmonDaemon"); CODA_ASSERT(LWP_CreateProcess(SmonDaemon, stack*1024, LWP_NORMAL_PRIORITY, (void *)&smonPid, Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/F-11/coda.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- coda.spec 31 Mar 2009 10:56:47 -0000 1.11 +++ coda.spec 20 Jul 2009 21:36:53 -0000 1.12 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -14,6 +14,7 @@ Patch0: coda-6.9.3-client-fhs.pa Patch1: coda-6.9.4-rc2-no-default-krb.patch Patch2: coda-6.9.4-rc2-kernel-alias.patch Patch3: coda-6.9.4-gcc44.patch +Patch4: coda-6.9.4-sname-fault.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lwp-devel >= 2.5 BuildRequires: rpc2-devel >= 2.8 @@ -93,6 +94,8 @@ system client. # 04d3fefdf27127589617cf955b1d3da799ebde5d %patch3 -p1 +#fix sname fortification break in main +%patch4 -p1 %build # note: remove the -I and -l here when upstream releases fix for krb5 building @@ -303,6 +306,9 @@ fi %changelog +* Mon Jul 20 2009 Neil Horman - 6.9.4-3 +- Fix fortification breaks in sname variable + * Tue Mar 31 2009 Neil Horman - 6.9.4-2 - Remove parser from coda-client, due to name conflict (bz 492953) From mschwendt at fedoraproject.org Mon Jul 20 21:44:25 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Mon, 20 Jul 2009 21:44:25 +0000 (UTC) Subject: rpms/audacity/devel audacity-1.3.8-gsocket-conflict.patch, 1.1, 1.2 audacity.spec, 1.79, 1.80 Message-ID: <20090720214425.4EA9E11C0072@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/pkgs/rpms/audacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9165 Modified Files: audacity-1.3.8-gsocket-conflict.patch audacity.spec Log Message: another try at working around the GSocket conflict audacity-1.3.8-gsocket-conflict.patch: AudacityApp.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Index: audacity-1.3.8-gsocket-conflict.patch =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/audacity-1.3.8-gsocket-conflict.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- audacity-1.3.8-gsocket-conflict.patch 20 Jul 2009 20:15:42 -0000 1.1 +++ audacity-1.3.8-gsocket-conflict.patch 20 Jul 2009 21:44:24 -0000 1.2 @@ -1,22 +1,14 @@ diff -Nur audacity-src-1.3.8-orig/src/AudacityApp.cpp audacity-src-1.3.8/src/AudacityApp.cpp --- audacity-src-1.3.8-orig/src/AudacityApp.cpp 2009-07-16 05:27:35.000000000 +0200 -+++ audacity-src-1.3.8/src/AudacityApp.cpp 2009-07-20 22:18:14.000000000 +0200 -@@ -21,6 +21,9 @@ - #include - #endif - -+#include -+#undef GSocket -+ - #include "Audacity.h" // This should always be included first - - #include -@@ -331,7 +334,7 @@ ++++ audacity-src-1.3.8/src/AudacityApp.cpp 2009-07-20 23:45:41.000000000 +0200 +@@ -331,7 +331,9 @@ /////////////////////////////////////////////////////////////////////////////// #include -#include -+/* #include */ ++/*#include */ ++#include ++#include typedef struct _GnomeProgram GnomeProgram; typedef struct _GnomeModuleInfo GnomeModuleInfo; Index: audacity.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/audacity.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- audacity.spec 20 Jul 2009 20:15:42 -0000 1.79 +++ audacity.spec 20 Jul 2009 21:44:25 -0000 1.80 @@ -151,7 +151,7 @@ update-desktop-database &> /dev/null || * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.2.beta - glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that conflicts with wxGTK's GSocket class (gsocket.h): as a work-around, - include gtk/gtk.h first and undefine GSocket + include less glib headers * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.1.beta - upgrade to 1.3.8-beta From ajax at fedoraproject.org Mon Jul 20 21:49:45 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 21:49:45 +0000 (UTC) Subject: rpms/xorg-x11-xdm/devel xorg-x11-xdm.spec,1.47,1.48 Message-ID: <20090720214945.B06BC11C0072@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10360 Modified Files: xorg-x11-xdm.spec Log Message: * Mon Jul 20 2009 Adam Jackson 1.1.6-12 - Fix FTBFS due to Xaw xprint build macro disappearing. (#511508) Index: xorg-x11-xdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xdm/devel/xorg-x11-xdm.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- xorg-x11-xdm.spec 15 Jul 2009 19:13:53 -0000 1.47 +++ xorg-x11-xdm.spec 20 Jul 2009 21:49:15 -0000 1.48 @@ -3,7 +3,7 @@ Summary: X.Org X11 xdm - X Display Manager Name: xorg-x11-%{pkgname} Version: 1.1.6 -Release: 11%{?dist} +Release: 12%{?dist} # NOTE: Remove Epoch line if/when the package ever gets renamed. Epoch: 1 License: MIT @@ -85,10 +85,8 @@ X.Org X11 xdm - X Display Manager %patch13 -p1 -b .redhat-xresources-bug470348 %build -# FIXME: Work around pointer aliasing warnings from compiler for now export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" -# NOTE: We invoke aclocal/automake/autoconf to enable the changes present in -# xdm-0.99.3-xdm-app-defaults-in-datadir.patch & xdm-0.99.3-xdm-configdir.patch +sed -i '/XAW_/ s/)/, xaw7)/; /XAW_/ s/XAW_CHECK_XPRINT_SUPPORT/PKG_CHECK_MODULES/' configure.ac aclocal ; libtoolize --force ; automake ; autoconf %configure \ --disable-static \ @@ -163,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Mon Jul 20 2009 Adam Jackson 1.1.6-12 +- Fix FTBFS due to Xaw xprint build macro disappearing. (#511508) + * Wed Jul 15 2009 Adam Jackson 1.1.6-11 - Remove xserver PAM config file, it belongs (unsurprisingly) in xserver. (#500469) From ajax at fedoraproject.org Mon Jul 20 21:53:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Mon, 20 Jul 2009 21:53:22 +0000 (UTC) Subject: rpms/xorg-x11-xsm/devel xorg-x11-xsm.spec,1.21,1.22 Message-ID: <20090720215322.4DDEA11C0072@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11011 Modified Files: xorg-x11-xsm.spec Log Message: * Mon Jul 20 2009 Adam Jackson 1.0.2-10 - Fix FTBFS due to Xaw xprint macro disappearing. (#511614) Index: xorg-x11-xsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xsm/devel/xorg-x11-xsm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-xsm.spec 26 Feb 2009 11:43:30 -0000 1.21 +++ xorg-x11-xsm.spec 20 Jul 2009 21:53:22 -0000 1.22 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # NOTE: The Version field should be the version of the xsm tarball. Version: 1.0.2 # Bump the release on rebuilds/bugfixes/etc. -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -24,7 +24,6 @@ Patch10: xsm-1.0.1-xsm-installation-loca # Patches for rstart (30-39) Patch30: rstart-1.0.2-rstart-installation-location-fixes.patch -# FIXME: Temporary dependency on automake/autoconf while they're still needed. BuildRequires: automake autoconf BuildRequires: pkgconfig @@ -54,23 +53,17 @@ X.Org X11 X Session Manager %build # Build everything -{ - for pkg in xsm smproxy rstart ; do - pushd $pkg-* - case $pkg in - # FIXME: Required for rstart-0.99.1-installation-location-fixes.patch - # and xsm-0.99.2-xsm-installation-location-fixes.patch - xsm|rstart) - aclocal ; automake ; autoconf - ;; - esac +for pkg in xsm smproxy rstart ; do + pushd $pkg-* - %configure --disable-xprint - make - popd - done -} + sed -i '/XAW_/ s/)/, xaw7)/; /XAW_/ s/XAW_CHECK_XPRINT_SUPPORT/PKG_CHECK_MODULES/' configure.ac + aclocal ; automake ; autoconf + + %configure --disable-xprint + make + popd +done %install rm -rf $RPM_BUILD_ROOT @@ -132,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/X11/xsm/system.xsm %changelog +* Mon Jul 20 2009 Adam Jackson 1.0.2-10 +- Fix FTBFS due to Xaw xprint macro disappearing. (#511614) + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 20 21:56:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:56:41 +0000 Subject: [pkgdb] tremulous-data ownership updated Message-ID: <20090720215642.2D2D510F895@bastion2.fedora.phx.redhat.com> Package tremulous-data in Fedora devel is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous-data From pkgdb at fedoraproject.org Mon Jul 20 21:56:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:56:49 +0000 Subject: [pkgdb] tremulous-data ownership updated Message-ID: <20090720215649.3666410F86B@bastion2.fedora.phx.redhat.com> Package tremulous-data in Fedora 10 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous-data From pkgdb at fedoraproject.org Mon Jul 20 21:56:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:56:52 +0000 Subject: [pkgdb] tremulous-data ownership updated Message-ID: <20090720215652.2E4A510F898@bastion2.fedora.phx.redhat.com> Package tremulous-data in Fedora 11 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous-data From nushio at fedoraproject.org Mon Jul 20 21:57:33 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Mon, 20 Jul 2009 21:57:33 +0000 (UTC) Subject: rpms/gnome-do-plugins/F-11 gnome-do-plugins.spec,1.1,1.2 Message-ID: <20090720215733.1C58E11C0072@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11626/F-11 Modified Files: gnome-do-plugins.spec Log Message: Fixes the bibtex dependency Index: gnome-do-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/F-11/gnome-do-plugins.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnome-do-plugins.spec 20 Jul 2009 15:00:12 -0000 1.1 +++ gnome-do-plugins.spec 20 Jul 2009 21:57:02 -0000 1.2 @@ -2,7 +2,7 @@ Name: gnome-do-plugins Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ @@ -38,7 +38,8 @@ Summary: gnome-do plugin for bans Group: Applications/Productivity BuildRequires: banshee-devel BuildRequires: banshee -Requires: gnome-do >= %{version} banshee +Requires: gnome-do >= %{version} +Requires: banshee Requires: gnome-do-plugins = %{version} %description banshee @@ -47,7 +48,7 @@ gnone-do plugins for banshee %package bibtex Summary: gnome-do plugin for bibtex Group: Applications/Productivity -Requires: gnome-do >= %{version} bibtex +Requires: gnome-do >= %{version} Requires: gnome-do-plugins = %{version} %description bibtex @@ -273,6 +274,9 @@ rm -rf %{buildroot} %{_libdir}/gnome-do/plugins/* %changelog +* Mon Jul 20 2009 Juan Rodriguez 0.8.1-5 +- Fixes bibtex dependency + * Thu Jul 16 2009 Juan Rodriguez 0.8.1-4 - Subpackages now require gnome-do-plugins. From nushio at fedoraproject.org Mon Jul 20 21:57:33 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Mon, 20 Jul 2009 21:57:33 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel gnome-do-plugins.spec,1.1,1.2 Message-ID: <20090720215733.2C0DA11C00D5@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11626/devel Modified Files: gnome-do-plugins.spec Log Message: Fixes the bibtex dependency Index: gnome-do-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/devel/gnome-do-plugins.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnome-do-plugins.spec 20 Jul 2009 15:29:38 -0000 1.1 +++ gnome-do-plugins.spec 20 Jul 2009 21:57:02 -0000 1.2 @@ -2,7 +2,7 @@ Name: gnome-do-plugins Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ @@ -38,7 +38,8 @@ Summary: gnome-do plugin for bans Group: Applications/Productivity BuildRequires: banshee-devel BuildRequires: banshee -Requires: gnome-do >= %{version} banshee +Requires: gnome-do >= %{version} +Requires: banshee Requires: gnome-do-plugins = %{version} %description banshee @@ -47,7 +48,7 @@ gnone-do plugins for banshee %package bibtex Summary: gnome-do plugin for bibtex Group: Applications/Productivity -Requires: gnome-do >= %{version} bibtex +Requires: gnome-do >= %{version} Requires: gnome-do-plugins = %{version} %description bibtex @@ -273,6 +274,9 @@ rm -rf %{buildroot} %{_libdir}/gnome-do/plugins/* %changelog +* Mon Jul 20 2009 Juan Rodriguez 0.8.1-5 +- Fixes bibtex dependency + * Thu Jul 16 2009 Juan Rodriguez 0.8.1-4 - Subpackages now require gnome-do-plugins. From pkgdb at fedoraproject.org Mon Jul 20 21:57:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:57:56 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchbugzilla Message-ID: <20090720215756.5360810F87C@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on tremulous (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:57:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:57:57 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchcommits Message-ID: <20090720215757.B677010F89B@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on tremulous (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:57:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:57:59 +0000 Subject: [pkgdb] tremulous: sundaram has requested approveacls Message-ID: <20090720215759.2FF6D10F8A5@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on tremulous (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:57:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:57:59 +0000 Subject: [pkgdb] tremulous: sundaram has requested commit Message-ID: <20090720215759.4F3E510F8A9@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on tremulous (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:58:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:08 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchbugzilla Message-ID: <20090720215808.A6C1910F862@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on tremulous (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:58:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:09 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchcommits Message-ID: <20090720215809.2E8D510F8B6@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on tremulous (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:58:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:15 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchbugzilla Message-ID: <20090720215815.E233F10F897@bastion2.fedora.phx.redhat.com> sundaram has requested the watchbugzilla acl on tremulous (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:58:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:17 +0000 Subject: [pkgdb] tremulous: sundaram has requested commit Message-ID: <20090720215818.1E3BE10F8BC@bastion2.fedora.phx.redhat.com> sundaram has requested the commit acl on tremulous (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Mon Jul 20 21:58:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:16 +0000 Subject: [pkgdb] tremulous: sundaram has requested watchcommits Message-ID: <20090720215816.72B0710F8B9@bastion2.fedora.phx.redhat.com> sundaram has requested the watchcommits acl on tremulous (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From jwilson at fedoraproject.org Mon Jul 20 21:58:31 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Mon, 20 Jul 2009 21:58:31 +0000 (UTC) Subject: rpms/linuxwacom/devel linuxwacom-0.8.2.2-intuos4-support-backport.patch, NONE, 1.1 linuxwacom.spec, 1.79, 1.80 Message-ID: <20090720215831.0126D11C0072@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/linuxwacom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12575 Modified Files: linuxwacom.spec Added Files: linuxwacom-0.8.2.2-intuos4-support-backport.patch Log Message: * Mon Jul 20 2009 Jarod Wilson 0.8.2.2-12 - Backport support for Intuos4 tablets from linuxwacom-dev branch linuxwacom-0.8.2.2-intuos4-support-backport.patch: include/Xwacom.h | 6 util/xsetwacom.c | 11 xdrv/wcmCommon.c | 310 +++++++------- xdrv/wcmConfig.c.orig | 1013 ------------------------------------------------ xdrv/wcmTilt2Rotation.c | 740 +++++++++++++++++++++++++++++++++++ xdrv/wcmUSB.c | 65 ++- xdrv/wcmXCommand.c | 25 - xdrv/xf86Wacom.c | 254 +++++++----- xdrv/xf86Wacom.h.orig | 236 ----------- xdrv/xf86WacomDefs.h | 4 10 files changed, 1156 insertions(+), 1508 deletions(-) --- NEW FILE linuxwacom-0.8.2.2-intuos4-support-backport.patch --- diff -Naurp linuxwacom-0.8.2-2/src/include/Xwacom.h linuxwacom-0.8.2-2.new/src/include/Xwacom.h --- linuxwacom-0.8.2-2/src/include/Xwacom.h 2009-01-19 13:58:37.000000000 -0500 +++ linuxwacom-0.8.2-2.new/src/include/Xwacom.h 2009-07-20 17:51:46.854323665 -0400 @@ -1,6 +1,6 @@ /* * Copyright 2003 by John Joganic - * Copyright 2003 - 2008 by Ping Cheng + * Copyright 2003 - 2009 by Ping Cheng * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -95,6 +95,7 @@ #define XWACOM_PARAM_TVRESOLUTION0 207 #define XWACOM_PARAM_TVRESOLUTION1 208 #define XWACOM_PARAM_COREEVENT 209 +#define XWACOM_PARAM_THRESHOLD 210 #define XWACOM_PARAM_GETONLYPARAM 320 #define XWACOM_PARAM_TID 321 @@ -138,6 +139,9 @@ #define TV_NONE 0 #define TV_ABOVE_BELOW 1 #define TV_LEFT_RIGHT 2 +#define TV_BELOW_ABOVE 3 +#define TV_RIGHT_LEFT 4 +#define TV_MAX 4 #define ROTATE_NONE 0 #define ROTATE_CW 1 diff -Naurp linuxwacom-0.8.2-2/src/util/xsetwacom.c linuxwacom-0.8.2-2.new/src/util/xsetwacom.c --- linuxwacom-0.8.2-2/src/util/xsetwacom.c 2009-01-19 13:58:37.000000000 -0500 +++ linuxwacom-0.8.2-2.new/src/util/xsetwacom.c 2009-07-20 17:55:05.006448526 -0400 @@ -105,6 +105,8 @@ static const char* tv_char[] = "none", "vertical", "horizontal", + "aboveof", + "leftof", "NULL" }; @@ -330,9 +332,9 @@ static PARAMINFO gParamInfo[] = { "TwinView", "Sets the mapping to TwinView horizontal/vertical/none. " - "Values = none, vertical, horizontal (default is none).", + "Values = none, vertical, horizontal, leftof, aboveof (default is none).", XWACOM_PARAM_TWINVIEW, VALUE_OPTIONAL, RANGE, - TV_NONE, TV_LEFT_RIGHT, SINGLE_VALUE, TV_NONE }, + TV_NONE, TV_MAX, SINGLE_VALUE, TV_NONE }, { "Mode", "Switches cursor movement mode (default is absolute/on). ", @@ -438,6 +440,11 @@ static PARAMINFO gParamInfo[] = XWACOM_PARAM_CLICKFORCE, VALUE_OPTIONAL, RANGE, 1, 21, SINGLE_VALUE, 6 }, + { "Threshold", + "Sets tip/eraser pressure threshold directly to the pressure " + "(default is 6*MaxZ/100)", + XWACOM_PARAM_THRESHOLD, VALUE_REQUIRED }, + { "Accel", "Sets relative cursor movement acceleration " "(default is 1)", diff -Naurp linuxwacom-0.8.2-2/src/xdrv/wcmCommon.c linuxwacom-0.8.2-2.new/src/xdrv/wcmCommon.c --- linuxwacom-0.8.2-2/src/xdrv/wcmCommon.c 2009-07-20 17:55:12.880446282 -0400 +++ linuxwacom-0.8.2-2.new/src/xdrv/wcmCommon.c 2009-07-20 17:34:00.255321464 -0400 @@ -1,6 +1,6 @@ /* * Copyright 1995-2002 by Frederic Lepied, France. - * Copyright 2002-2008 by Ping Cheng, Wacom Technology. + * Copyright 2002-2009 by Ping Cheng, Wacom Technology. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -45,6 +45,9 @@ WacomDeviceClass* wcmDeviceClasses[] = extern int xf86WcmDevSwitchModeCall(LocalDevicePtr local, int mode); extern void xf86WcmChangeScreen(LocalDevicePtr local, int value); extern void xf86WcmInitialCoordinates(LocalDevicePtr local, int axes); +extern void xf86WcmVirtaulTabletSize(LocalDevicePtr local); +extern void xf86WcmVirtaulTabletPadding(LocalDevicePtr local); +extern void xf86WcmTilt2R(WacomDeviceStatePtr ds); /***************************************************************************** * Static functions @@ -66,13 +69,10 @@ static void sendAButton(LocalDevicePtr l void xf86WcmMappingFactor(LocalDevicePtr local) { WacomDevicePtr priv = (WacomDevicePtr) local->private; - int i = 0, minX = 0, minY = 0, maxX = 0, maxY = 0; DBG(10, priv->debugLevel, ErrorF("xf86WcmMappingFactor \n")); - priv->sizeX = priv->bottomX - priv->topX - 2*priv->tvoffsetX; - priv->sizeY = priv->bottomY - priv->topY - 2*priv->tvoffsetY; - priv->maxWidth = 0, priv->maxHeight = 0; + xf86WcmVirtaulTabletSize(local); if (!(priv->flags & ABSOLUTE_FLAG) || !priv->wcmMMonitor) { @@ -104,44 +104,11 @@ void xf86WcmMappingFactor(LocalDevicePtr if (priv->currentScreen == -1) /* tool on the tablet */ priv->currentScreen = 0; - if ( ((priv->twinview != TV_NONE) || /* TwinView & whole desktop */ - /* stay in one screen at a time (multimonitor) */ - !priv->wcmMMonitor || - /* always stay in the configured screen */ - (screenInfo.numScreens > 1 && priv->screen_no != -1)) - && (priv->flags & ABSOLUTE_FLAG) ) - { - priv->maxWidth = priv->screenBottomX[priv->currentScreen] - - priv->screenTopX[priv->currentScreen]; - priv->maxHeight = priv->screenBottomY[priv->currentScreen] - - priv->screenTopY[priv->currentScreen]; - } - else - { - /* count the whole desktop when no specific screen is defined or - * tool is in relative mode - */ - minX = priv->screenTopX[0]; - minY = priv->screenTopY[0]; - maxX = priv->screenBottomX[0]; - maxY = priv->screenBottomY[0]; - for (i = 1; i < priv->numScreen; i++) - { - if (priv->screenTopX[i] < minX) - minX = priv->screenTopX[i]; - if (priv->screenTopY[i] < minY) - minY = priv->screenTopY[i]; - if (priv->screenBottomX[i] > maxX) - maxX = priv->screenBottomX[i]; - if (priv->screenBottomY[i] > maxY) - maxY = priv->screenBottomY[i]; - } - priv->maxWidth = maxX - minX; - priv->maxHeight = maxY - minY; - } DBG(10, priv->debugLevel, ErrorF("xf86WcmMappingFactor" - " Active tablet area x=%d y=%d map to maxWidth =%d maxHeight =%d\n", - priv->sizeX, priv->sizeY, priv->maxWidth, priv->maxHeight)); + " Active tablet area x=%d y=%d (virtual table area x=%d y=%d) map" + " to maxWidth =%d maxHeight =%d\n", + priv->bottomX, priv->bottomY, priv->sizeX, priv->sizeY, + priv->maxWidth, priv->maxHeight)); priv->factorX = (double)priv->maxWidth / (double)priv->sizeX; priv->factorY = (double)priv->maxHeight / (double)priv->sizeY; @@ -157,15 +124,20 @@ void xf86WcmMappingFactor(LocalDevicePtr * combined horizontal and vertical setups ****************************************************************************/ -static void xf86WcmSetScreen(LocalDevicePtr local, int *value0, int *value1) +static void xf86WcmSetScreen(LocalDevicePtr local, int v0, int v1) { WacomDevicePtr priv = (WacomDevicePtr) local->private; - int screenToSet = -1, letfPadding = 0, topPadding = 0; - int i, j, x, y, v0 = *value0, v1 = *value1; + int screenToSet = -1, i, j, x, y, tabletSize = 0; - DBG(6, priv->debugLevel, ErrorF("xf86WcmSetScreen " - "v0=%d v1=%d currentScreen=%d\n", *value0, - *value1, priv->currentScreen)); + DBG(6, priv->debugLevel, ErrorF("xf86WcmSetScreen v0=%d v1=%d " + "currentScreen=%d\n", v0, v1, priv->currentScreen)); + + if (priv->screen_no != -1 && priv->screen_no >= priv->numScreen) + { + ErrorF("xf86WcmSetScreen Screen%d is larger than number of available screens (%d)\n", + priv->screen_no, priv->numScreen); + priv->screen_no = -1; + } if (!(local->flags & (XI86_ALWAYS_CORE | XI86_CORE_POINTER))) return; @@ -173,18 +145,38 @@ static void xf86WcmSetScreen(LocalDevice { if (priv->twinview == TV_LEFT_RIGHT) { - if (v0 > priv->bottomX - priv->tvoffsetX && v0 <= priv->bottomX) + tabletSize = priv->bottomX - priv->tvoffsetX; + if (v0 > tabletSize && v0 <= priv->bottomX) priv->currentScreen = 1; if (v0 > priv->topX && v0 <= priv->topX + priv->tvoffsetX) priv->currentScreen = 0; } if (priv->twinview == TV_ABOVE_BELOW) { - if (v1 > priv->bottomY - priv->tvoffsetY && v1 <= priv->bottomY) + tabletSize = priv->bottomY - priv->tvoffsetY; + if (v0 > tabletSize && v0 <= priv->bottomY) priv->currentScreen = 1; - if (v1 > priv->topY && v1 <= priv->topY + priv->tvoffsetY) + if (v0 > priv->topY && v0 <= priv->topY + priv->tvoffsetY) priv->currentScreen = 0; } + if (priv->twinview == TV_RIGHT_LEFT) [...2940 lines suppressed...] - -#ifdef WCM_ENABLE_LINUXINPUT -#include -#include - -/* keithp - a hack to avoid redefinitions of these in xf86str.h */ -#ifdef BUS_PCI -#undef BUS_PCI -#endif -#ifdef BUS_ISA -#undef BUS_ISA -#endif - -#define MAX_USB_EVENTS 32 - -#endif /* WCM_ENABLE_LINUXINPUT */ - -/* max number of input events to read in one read call */ -#define MAX_EVENTS 50 - -/***************************************************************************** - * XFree86 V4.x Headers - ****************************************************************************/ - -#ifndef XFree86LOADER -#include -#include -#endif - -#include -#include -#define NEED_XF86_TYPES -#if !defined(DGUX) -# include -/* X.org recently kicked out the libc-wrapper */ -# ifdef WCM_NO_LIBCWRAPPER -# include -# include -# else -# include -# endif -#endif -#include -#include -#include /* Needed for InitValuator/Proximity stuff */ -#include -#include - -#ifdef XFree86LOADER -#include -#endif - -/***************************************************************************** - * QNX support - ****************************************************************************/ - -#if defined(__QNX__) || defined(__QNXNTO__) -#define POSIX_TTY -#endif - -/****************************************************************************** - * Debugging support - *****************************************************************************/ - -#ifdef DBG -#undef DBG -#endif -#ifdef DEBUG -#undef DEBUG -#endif - -#define DEBUG 1 -#if DEBUG -#define DBG(lvl, dLevel, f) do { if ((lvl) <= dLevel) f; } while (0) -#else -#define DBG(lvl, dLevel, f) -#endif - -/***************************************************************************** - * General Macros - ****************************************************************************/ - -#define ABS(x) ((x) > 0 ? (x) : -(x)) - -/***************************************************************************** - * General Defines - ****************************************************************************/ -#define XI_STYLUS "STYLUS" /* X device name for the stylus */ -#define XI_CURSOR "CURSOR" /* X device name for the cursor */ -#define XI_ERASER "ERASER" /* X device name for the eraser */ -#define XI_PAD "PAD" /* X device name for the Pad */ -#define XI_TOUCH "TOUCH" /* X device name for the touch */ - -/****************************************************************************** - * WacomModule - all globals are packed in a single structure to keep the - * global namespaces as clean as possible. - *****************************************************************************/ -typedef struct _WacomModule WacomModule; - -struct _WacomModule -{ - const char* identification; - - InputDriverPtr wcmDrv; - - int (*DevOpen)(DeviceIntPtr pWcm); - void (*DevReadInput)(LocalDevicePtr local); - void (*DevControlProc)(DeviceIntPtr device, PtrCtrl* ctrl); - void (*DevClose)(LocalDevicePtr local); - int (*DevProc)(DeviceIntPtr pWcm, int what); - int (*DevChangeControl)(LocalDevicePtr local, xDeviceCtl* control); - int (*DevSwitchMode)(ClientPtr client, DeviceIntPtr dev, int mode); - Bool (*DevConvert)(LocalDevicePtr local, int first, int num, - int v0, int v1, int v2, int v3, int v4, int v5, int* x, int* y); - Bool (*DevReverseConvert)(LocalDevicePtr local, int x, int y, - int* valuators); -}; - - extern WacomModule gWacomModule; - -/* The rest are defined in a separate .h-file */ -#include "xf86WacomDefs.h" - -/***************************************************************************** - * XFree86 V4 Inlined Functions and Prototypes - ****************************************************************************/ - -#define xf86WcmFlushTablet(fd) xf86FlushInput(fd) -#define xf86WcmSetSerialSpeed(fd,rate) xf86SetSerialSpeed((fd),(rate)) - -#define xf86WcmRead(a,b,c) xf86ReadSerial((a),(b),(c)) -#define xf86WcmWrite(a,b,c) xf86WriteSerial((a),(char*)(b),(c)) -#define xf86WcmClose(a) xf86CloseSerial((a)) - -#define XCONFIG_PROBED "(==)" -#define XCONFIG_GIVEN "(**)" -#define xf86Verbose 1 -#undef PRIVATE -#define PRIVATE(x) XI_PRIVATE(x) - -/***************************************************************************** - * General Inlined functions and Prototypes - ****************************************************************************/ -/* BIG HAIRY WARNING: - * Don't overuse SYSCALL(): use it ONLY when you call low-level functions such - * as ioctl(), read(), write() and such. Otherwise you can easily lock up X11, - * for example: you pull out the USB tablet, the handle becomes invalid, - * xf86WcmRead() returns -1 AND errno is left as EINTR from hell knows where. - * Then you'll loop forever, and even Ctrl+Alt+Backspace doesn't help. - * xf86WcmReadSerial, WriteSerial, CloseSerial & company already use SYSCALL() - * internally; there's no need to duplicate it outside the call. - */ -#define SYSCALL(call) while(((call) == -1) && (errno == EINTR)) - -#define RESET_RELATIVE(ds) do { (ds).relwheel = 0; } while (0) - -int xf86WcmWait(int t); -int xf86WcmReady(int fd); - -LocalDevicePtr xf86WcmAllocate(char* name, int flag); -LocalDevicePtr xf86WcmAllocateStylus(void); -LocalDevicePtr xf86WcmAllocateCursor(void); -LocalDevicePtr xf86WcmAllocateEraser(void); -LocalDevicePtr xf86WcmAllocatePad(void); - -Bool xf86WcmOpen(LocalDevicePtr local); - -/* device autoprobing */ -char *xf86WcmEventAutoDevProbe (LocalDevicePtr local); - -/* serial write and wait command */ -int xf86WcmWriteWait(int fd, const char* request); - -/*wait for tablet data */ -int xf86WcmWaitForTablet(int fd, char * data, int size); - -/* common tablet initialization regime */ -int xf86WcmInitTablet(LocalDevicePtr local, const char* id, float version); - -/* standard packet handler */ -void xf86WcmReadPacket(LocalDevicePtr local); - -/* handles suppression, filtering, and dispatch. */ -void xf86WcmEvent(WacomCommonPtr common, unsigned int channel, const WacomDeviceState* ds); - -/* dispatches data to XInput event system */ -void xf86WcmSendEvents(LocalDevicePtr local, const WacomDeviceState* ds); - -/* generic area check for wcmConfig.c, xf86Wacom.c, and wcmCommon.c */ -Bool xf86WcmPointInArea(WacomToolAreaPtr area, int x, int y); -Bool xf86WcmAreaListOverlap(WacomToolAreaPtr area, WacomToolAreaPtr list); - -/* Change pad's mode according to it core event status */ -int xf86WcmSetPadCoreMode(LocalDevicePtr local); - -/* calculate the proper tablet to screen mapping factor */ -void xf86WcmMappingFactor(LocalDevicePtr local); - -/****************************************************************************/ -#endif /* __XF86WACOM_H */ Index: linuxwacom.spec =================================================================== RCS file: /cvs/pkgs/rpms/linuxwacom/devel/linuxwacom.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- linuxwacom.spec 6 Apr 2009 02:29:16 -0000 1.79 +++ linuxwacom.spec 20 Jul 2009 21:58:30 -0000 1.80 @@ -3,7 +3,7 @@ # Upstream's versioning is goofy. Note the mapping from tarname to version. Name: linuxwacom Version: 0.8.2.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Wacom Drivers from Linux Wacom Project Group: User Interface/X Hardware Support @@ -11,15 +11,27 @@ License: LGPLv2+ and GPLv2+ URL: http://linuxwacom.sourceforge.net Source0: http://prdownloads.sourceforge.net/linuxwacom/%{tarname}.tar.bz2 Source1: 60-wacom.rules +# in upstream linuxwacom-dev tree Source2: 10-linuxwacom.fdi +# in upstream linuxwacom-dev tree Patch1: linuxwacom-0.7.8.3-sdk-me-harder.patch +# in upstream linuxwacom-dev tree Patch2: linuxwacom-0.7.9.7-fix_build.patch +# not upstream, reason unknown Patch3: linuxwacom-0.8.2.1-fix_build.patch +# appears to be fixed differently upstream Patch4: linuxwacom-0.8.2.2-fix-mapping.patch +# in upstream linuxwacom-dev tree Patch5: linuxwacom-0.8.2.2-export-module.patch +# in upstream linuxwacom-dev tree Patch7: linuxwacom-0.8.2.2-wcmMaxX.patch +# in upstream linuxwacom-dev tree Patch8: linuxwacom-0.8.2.2-hal-setup.patch +# a revert of an upstream change that is irrelevant for current Xorg, +# an in fact, breaks some devices Patch9: linuxwacom-0.8.2.2-serial-check.patch +# backport of upstream intuos4 support +Patch10: linuxwacom-0.8.2.2-intuos4-support-backport.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} BuildRequires: libX11-devel libXi-devel ncurses-devel @@ -55,6 +67,7 @@ compiling applications for manipulating %patch7 -p1 %patch8 -p1 %patch9 -p1 +%patch10 -p1 %build @@ -117,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libwacomcfg*.so %changelog +* Mon Jul 20 2009 Jarod Wilson 0.8.2.2-12 +- Backport support for Intuos4 tablets from linuxwacom-dev branch + * Mon Apr 06 2009 Peter Hutterer 0.8.2.2-11 - linuxwacom-0.8.2.2-serial-check.patch: revert serial channel checking, it breaks waltop tablets. From pkgdb at fedoraproject.org Mon Jul 20 21:58:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 20 Jul 2009 21:58:18 +0000 Subject: [pkgdb] tremulous: sundaram has requested approveacls Message-ID: <20090720215819.0940010F8BF@bastion2.fedora.phx.redhat.com> sundaram has requested the approveacls acl on tremulous (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From xavierb at fedoraproject.org Mon Jul 20 22:18:54 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Mon, 20 Jul 2009 22:18:54 +0000 (UTC) Subject: rpms/perl-XML-Stream/EL-5 perl-XML-Stream.spec,1.4,1.5 Message-ID: <20090720221854.3D5FD11C0072@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-XML-Stream/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15855 Modified Files: perl-XML-Stream.spec Log Message: Sync EL-5 branch with Fedora branches Index: perl-XML-Stream.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Stream/EL-5/perl-XML-Stream.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-XML-Stream.spec 17 Oct 2007 04:55:03 -0000 1.4 +++ perl-XML-Stream.spec 20 Jul 2009 22:18:22 -0000 1.5 @@ -1,22 +1,28 @@ -# $Id$ - Name: perl-XML-Stream Version: 1.22 -Release: 6%{?dist} +Release: 10%{?dist} Summary: XML::Stream - streaming XML library Group: Development/Libraries -License: GPL+ or Artistic or LGPLv2+ +License: (GPL+ or Artistic) or LGPLv2+ URL: http://search.cpan.org/dist/XML-Stream/ Source0: http://search.cpan.org/CPAN/authors/id/R/RE/REATMON/XML-Stream-%{version}.tar.gz Source1: LICENSING.correspondance Patch0: tests.patch +BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -BuildArch: noarch -BuildRequires: perl, perl(Authen::SASL), perl(MIME::Base64) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(IO::Socket::SSL) +BuildRequires: perl(Net::DNS) +BuildRequires: perl(Authen::SASL) +BuildRequires: perl(MIME::Base64) -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: perl(IO::Socket::SSL) +Requires: perl(Net::DNS) +# also pulled in via a 'requires' construct; but not yet in Fedora +#Requires: perl(HTTP::ProxyAutoConfig) %description This module provides the user with methods to connect to a remote server, @@ -42,7 +48,7 @@ look at the detailed description at the cp %{SOURCE1} . # generate our other two licenses... -perldoc perlgpl > LICENSE.GPL +perldoc perlgpl > LICENSE.GPL perldoc perlartistic > LICENSE.Artistic %build @@ -53,16 +59,17 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make pure_install PERL_INSTALL_ROOT=%{buildroot} + find %{buildroot} -type f -name .packlist -exec rm -f {} ';' -find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';' -chmod -R u+w %{buildroot}/* +%{_fixperms} %{buildroot}/* -#%check -# builders are (or may be) firewalled -#make test +%check +%{?_with_network_tests: make test} + +rm -rf t/lib %clean rm -rf %{buildroot} @@ -70,12 +77,32 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc CHANGES README INFO LICENSE.* LICENSING* +%doc CHANGES README INFO LICENSE.* LICENSING* t/ %{perl_vendorlib}/* %{_mandir}/man3/*.3* %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 1.22-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Aug 28 2008 Tom "spot" Callaway 1.22-9 +- fix license tag (technically, it was correct before, but this change prevents + rpmlint from flagging it as bad in a false positive) + +* Mon Jul 14 2008 Chris Weyl 1.22-8 +- add IO::Socket::SSL as a BR/R (see BZ#455344) +- also add Net::DNS +- make tests run if --with network-tests +- misc spec touchups + +* Thu Feb 7 2008 Tom "spot" Callaway 1.22-7 +- rebuild for new perl + +* Wed Oct 17 2007 Tom "spot" Callaway 1.22-6.1 +- correct license tag +- add BR: perl(ExtUtils::MakeMaker) + * Thu Aug 31 2006 Chris Weyl 1.22-6 - bump for mass rebuild From xavierb at fedoraproject.org Mon Jul 20 22:26:59 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Mon, 20 Jul 2009 22:26:59 +0000 (UTC) Subject: rpms/perl-Net-XMPP/EL-5 perl-Net-XMPP.spec,1.5,1.6 Message-ID: <20090720222659.0F60211C0072@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Net-XMPP/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17088 Modified Files: perl-Net-XMPP.spec Log Message: Sync EL-5 branch with Fedora branches Index: perl-Net-XMPP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-XMPP/EL-5/perl-Net-XMPP.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Net-XMPP.spec 2 Apr 2007 16:14:05 -0000 1.5 +++ perl-Net-XMPP.spec 20 Jul 2009 22:26:28 -0000 1.6 @@ -1,17 +1,18 @@ Name: perl-Net-XMPP Version: 1.02 -Release: 2%{?dist} +Release: 6%{?dist} Summary: Net::XMPP - perl XMPP library Group: Development/Libraries -License: GPL or Artistic or LGPL +License: (GPL+ or Artistic) or LGPLv2+ URL: http://search.cpan.org/dist/Net-XMPP/ Source0: http://search.cpan.org/CPAN/modules/by-module/Net/Net-XMPP-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: perl, perl(Module::Build) -BuildRequires: perl, perl(XML::Stream), perl(Digest::SHA1) +BuildRequires: perl(Module::Build) +BuildRequires: perl(Test::More) +BuildRequires: perl(XML::Stream), perl(Digest::SHA1) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -60,6 +61,20 @@ rm -rf %{buildroot} %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 1.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Aug 28 2008 Tom "spot" Callaway 1.02-5 +- fix license tag (technically, it was correct before, but this change prevents + rpmlint from flagging it as bad in a false positive) + +* Thu Feb 07 2008 Tom "spot" Callaway 1.02-4 +- rebuild for new perl + +* Wed Jan 02 2008 Ralf Cors?pius 1.02-3 +- BR: perl(Test::More) (BZ 419631). +- Spec file cleanup. + * Mon Apr 02 2007 Chris Weyl 1.02-2 - nix troublesome test that fails due to resolver configuration under builder's mock From xavierb at fedoraproject.org Mon Jul 20 22:29:59 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Mon, 20 Jul 2009 22:29:59 +0000 (UTC) Subject: rpms/perl-Net-Jabber/EL-5 perl-Net-Jabber.spec,1.4,1.5 Message-ID: <20090720222959.71FEE11C0072@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/perl-Net-Jabber/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18158 Modified Files: perl-Net-Jabber.spec Log Message: Sync EL-5 branch with Fedora branches Index: perl-Net-Jabber.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Jabber/EL-5/perl-Net-Jabber.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-Jabber.spec 17 Oct 2007 01:43:36 -0000 1.4 +++ perl-Net-Jabber.spec 20 Jul 2009 22:29:29 -0000 1.5 @@ -1,19 +1,18 @@ -# $Id$ - Name: perl-Net-Jabber Version: 2.0 -Release: 7%{?dist} +Release: 10%{?dist} Summary: Net::Jabber - Jabber Perl Library Group: Development/Libraries -License: GPL+ or Artistic or LGPLv2+ +License: (GPL+ or Artistic) or LGPLv2+ URL: http://search.cpan.org/dist/Net-Jabber/ -Source0: http://search.cpan.org/CPAN/authors/id/R/RE/REATMON/Net-Jabber-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/R/RE/REATMON/Net-Jabber-%{version}.tar.gz Source1: LICENSING.correspondance BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl, perl(Net::XMPP), perl(Time::Timezone) +BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(Time::Timezone) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -75,6 +74,20 @@ rm -rf %{buildroot} %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Aug 28 2008 Tom "spot" Callaway 2.0-9 +- fix license tag (technically, it was correct before, but this change prevents + rpmlint from flagging it as bad in a false positive) + +* Thu Feb 07 2008 Tom "spot" Callaway 2.0-8 +- rebuild for new perl + +* Tue Oct 16 2007 Tom "spot" Callaway 2.0-7.1 +- correct license tag +- add BR: perl(ExtUtils::MakeMaker) + * Thu Aug 31 2006 Chris Weyl 2.0-7 - bump for mass rebuild From davej at fedoraproject.org Mon Jul 20 22:49:17 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 22:49:17 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1643,1.1644 config-i586,1.6,NONE Message-ID: <20090720224917.1732911C0072@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22676 Modified Files: kernel.spec Removed Files: config-i586 Log Message: this file isn't needed Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1643 retrieving revision 1.1644 diff -u -p -r1.1643 -r1.1644 --- kernel.spec 20 Jul 2009 19:06:35 -0000 1.1643 +++ kernel.spec 20 Jul 2009 22:48:45 -0000 1.1644 @@ -519,8 +519,7 @@ Source23: config-generic Source24: config-rhel-generic Source30: config-x86-generic -Source31: config-i686 -Source32: config-i686-PAE +Source31: config-i686-PAE Source40: config-x86_64-generic --- config-i586 DELETED --- From nhorman at fedoraproject.org Mon Jul 20 22:51:01 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 20 Jul 2009 22:51:01 +0000 (UTC) Subject: rpms/coda/F-11 coda-6.9.4-sname-fault.patch, 1.1, 1.2 coda.spec, 1.12, 1.13 Message-ID: <20090720225101.8E0B911C0072@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23442 Modified Files: coda-6.9.4-sname-fault.patch coda.spec Log Message: Fixing build break coda-6.9.4-sname-fault.patch: srv.cc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) Index: coda-6.9.4-sname-fault.patch =================================================================== RCS file: /cvs/extras/rpms/coda/F-11/coda-6.9.4-sname-fault.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- coda-6.9.4-sname-fault.patch 20 Jul 2009 21:36:53 -0000 1.1 +++ coda-6.9.4-sname-fault.patch 20 Jul 2009 22:51:01 -0000 1.2 @@ -16,13 +16,13 @@ diff -up coda-6.9.4/coda-src/vice/srv.cc + for (i=0; i < auth_lwps; i++) { -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "AuthLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(AuthLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); } for (i=0; i < server_lwps; i++) { -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "ServerLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(ServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); @@ -30,20 +30,20 @@ diff -up coda-6.9.4/coda-src/vice/srv.cc /* set up resolution threads */ for (i = 0; i < 2; i++){ -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "ResLWP-%d", i); CODA_ASSERT(LWP_CreateProcess(ResLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - } + } -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "ResCheckSrvrLWP"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "ResCheckSrvrLWP_worker"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP_worker, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, @@ -51,7 +51,7 @@ diff -up coda-6.9.4/coda-src/vice/srv.cc SLog(29, "fileserver: returning from InitvolUtil"); extern void SmonDaemon(void *); -+ memset(sname, 0, SNAMESIZE); ++ memset(sname, 0, 64); sprintf(sname, "SmonDaemon"); CODA_ASSERT(LWP_CreateProcess(SmonDaemon, stack*1024, LWP_NORMAL_PRIORITY, (void *)&smonPid, Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/F-11/coda.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- coda.spec 20 Jul 2009 21:36:53 -0000 1.12 +++ coda.spec 20 Jul 2009 22:51:01 -0000 1.13 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -306,6 +306,9 @@ fi %changelog +* Mon Jul 20 2009 Neil Horman - 6.9.4-4 +- Fix patch build break + * Mon Jul 20 2009 Neil Horman - 6.9.4-3 - Fix fortification breaks in sname variable From davej at fedoraproject.org Mon Jul 20 23:17:43 2009 From: davej at fedoraproject.org (Dave Jones) Date: Mon, 20 Jul 2009 23:17:43 +0000 (UTC) Subject: rpms/kernel/devel config-generic,1.307,1.308 Message-ID: <20090720231743.7671D11C0072@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32026 Modified Files: config-generic Log Message: missing config option Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.307 retrieving revision 1.308 diff -u -p -r1.307 -r1.308 --- config-generic 20 Jul 2009 16:45:12 -0000 1.307 +++ config-generic 20 Jul 2009 23:17:11 -0000 1.308 @@ -2178,6 +2178,7 @@ CONFIG_HW_RANDOM_TIMERIOMEM=m # CONFIG_GEN_RTC is not set CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y From orion at fedoraproject.org Mon Jul 20 23:25:06 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Mon, 20 Jul 2009 23:25:06 +0000 (UTC) Subject: rpms/perl-PDL/devel .cvsignore, 1.9, 1.10 perl-PDL.spec, 1.50, 1.51 sources, 1.9, 1.10 perl-PDL-2.4.4-test.patch, 1.1, NONE Message-ID: <20090720232506.71AF011C0072@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/perl-PDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2204 Modified Files: .cvsignore perl-PDL.spec sources Removed Files: perl-PDL-2.4.4-test.patch Log Message: * Wed Jul 15 2009 Orion Poplawski - 2.4.4_05-1 - Update to 2.4.4_05 and PDL-Graphics-PLplot-0.50 - Drop test patch, no longer needed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDL/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 1 Jan 2009 15:41:13 -0000 1.9 +++ .cvsignore 20 Jul 2009 23:25:05 -0000 1.10 @@ -1,2 +1,2 @@ -PDL-2.4.4.tar.gz -PDL-Graphics-PLplot-0.47.tar.gz +PDL-2.4.4_05.tar.gz +PDL-Graphics-PLplot-0.50.tar.gz Index: perl-PDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDL/devel/perl-PDL.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- perl-PDL.spec 24 Feb 2009 10:48:44 -0000 1.50 +++ perl-PDL.spec 20 Jul 2009 23:25:05 -0000 1.51 @@ -1,8 +1,8 @@ -%global plplotver 0.47 +%global plplotver 0.50 Name: perl-PDL -Version: 2.4.4 -Release: 3%{?dist} +Version: 2.4.4_05 +Release: 1%{?dist} Summary: The Perl Data Language Group: Development/Libraries @@ -13,7 +13,6 @@ Source1: http://search.cpan.org/C Patch0: perl-PDL-settings.patch Patch1: perl-PDL-2.4.2-fix_ia64_sdump.patch Patch2: perl-PDL-2.4.4-cleanup.patch -Patch3: perl-PDL-2.4.4-test.patch Patch4: perl-PDL-2.4.4-x86_64.patch Patch5: perl-PDL-2.4.3-hdf.patch Patch6: perl-PDL-2.4.4-Xext.patch @@ -62,7 +61,6 @@ sed -i -e '/^\$VERSION =/d' Graphics/PLp %patch0 -p1 -b .settings %patch1 -p1 %patch2 -p1 -b .cleanup -%patch3 -p1 -b .test %patch4 -p1 -b .x86_64 %patch5 -p1 -b .hdf %patch6 -p1 -b .Xext @@ -153,6 +151,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 15 2009 Orion Poplawski - 2.4.4_05-1 +- Update to 2.4.4_05 and PDL-Graphics-PLplot-0.50 +- Drop test patch, no longer needed + * Tue Feb 24 2009 Marcela Ma?l??ov? - 2.4.4-3 - rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDL/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 1 Jan 2009 15:41:13 -0000 1.9 +++ sources 20 Jul 2009 23:25:05 -0000 1.10 @@ -1,2 +1,2 @@ -1c3e8f2fd001a8b48687fb277bc16eed PDL-2.4.4.tar.gz -f57df85c3cb3b1e731601beed90e2871 PDL-Graphics-PLplot-0.47.tar.gz +f00bf655a28d9bb0fdc968b7327b83f1 PDL-2.4.4_05.tar.gz +b4d60ef5ab25d169c627d4a1ffd12dd1 PDL-Graphics-PLplot-0.50.tar.gz --- perl-PDL-2.4.4-test.patch DELETED --- From nhorman at fedoraproject.org Mon Jul 20 23:25:43 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Mon, 20 Jul 2009 23:25:43 +0000 (UTC) Subject: rpms/coda/devel coda-6.9.4-sname-fault.patch, NONE, 1.1 coda.spec, 1.13, 1.14 Message-ID: <20090720232543.5C6A211C0072@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2477 Modified Files: coda.spec Added Files: coda-6.9.4-sname-fault.patch Log Message: Fix some sname overflows coda-6.9.4-sname-fault.patch: srv.cc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) --- NEW FILE coda-6.9.4-sname-fault.patch --- diff -up coda-6.9.4/coda-src/vice/srv.cc.orig coda-6.9.4/coda-src/vice/srv.cc --- coda-6.9.4/coda-src/vice/srv.cc.orig 2009-07-20 17:28:11.000000000 -0400 +++ coda-6.9.4/coda-src/vice/srv.cc 2009-07-20 17:30:32.000000000 -0400 @@ -315,7 +315,7 @@ void zombie(int sig) int main(int argc, char *argv[]) { - char sname[20]; + char sname[64]; int i; struct stat buff; PROCESS serverPid, resPid, smonPid, resworkerPid; @@ -522,12 +522,15 @@ int main(int argc, char *argv[]) CODA_ASSERT(LWP_CreateProcess(CallBackCheckLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&cbwait, "CheckCallBack", &serverPid) == LWP_SUCCESS); + for (i=0; i < auth_lwps; i++) { + memset(sname, 0, 64); sprintf(sname, "AuthLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(AuthLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); } for (i=0; i < server_lwps; i++) { + memset(sname, 0, 64); sprintf(sname, "ServerLWP-%d",i); CODA_ASSERT(LWP_CreateProcess(ServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &serverPid) == LWP_SUCCESS); @@ -535,16 +538,18 @@ int main(int argc, char *argv[]) /* set up resolution threads */ for (i = 0; i < 2; i++){ + memset(sname, 0, 64); sprintf(sname, "ResLWP-%d", i); CODA_ASSERT(LWP_CreateProcess(ResLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - } + } + memset(sname, 0, 64); sprintf(sname, "ResCheckSrvrLWP"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, sname, &resPid) == LWP_SUCCESS); - + memset(sname, 0, 64); sprintf(sname, "ResCheckSrvrLWP_worker"); CODA_ASSERT(LWP_CreateProcess(ResCheckServerLWP_worker, stack*1024, LWP_NORMAL_PRIORITY, (void *)&i, @@ -557,6 +562,7 @@ int main(int argc, char *argv[]) SLog(29, "fileserver: returning from InitvolUtil"); extern void SmonDaemon(void *); + memset(sname, 0, 64); sprintf(sname, "SmonDaemon"); CODA_ASSERT(LWP_CreateProcess(SmonDaemon, stack*1024, LWP_NORMAL_PRIORITY, (void *)&smonPid, Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- coda.spec 20 Jul 2009 14:31:42 -0000 1.13 +++ coda.spec 20 Jul 2009 23:25:43 -0000 1.14 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -15,6 +15,7 @@ Patch1: coda-6.9.4-rc2-no-default-krb.p Patch2: coda-6.9.4-rc2-kernel-alias.patch Patch3: coda-6.9.4-gcc44.patch Patch4: coda-configure.patch +Patch5: coda-6.9.4-sname-fault.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lwp-devel >= 2.5 BuildRequires: rpc2-devel >= 2.8 @@ -98,6 +99,9 @@ system client. # Convert configure script to pick up compat-readline5 %patch4 -p1 +#sname overflows +%patch5 -p1 + %build # note: remove the -I and -l here when upstream releases fix for krb5 building export CFLAGS="$RPM_OPT_FLAGS -I/usr/include/et" @@ -307,6 +311,9 @@ fi %changelog +* Mon Jul 20 2009 Neil Horman - 6.9.4-5 +- Fix some sname stack overflows + * Mon Jul 20 2009 Neil Horman - 6.9.4-4 - Further changes to support compat-readline5 (bz 511305) From pbrady at fedoraproject.org Mon Jul 20 23:45:36 2009 From: pbrady at fedoraproject.org (=?utf-8?q?P=C3=A1draig_Brady?=) Date: Mon, 20 Jul 2009 23:45:36 +0000 (UTC) Subject: rpms/fslint/devel .cvsignore, 1.10, 1.11 fslint.spec, 1.20, 1.21 sources, 1.10, 1.11 Message-ID: <20090720234536.9C73011C0072@cvs1.fedora.phx.redhat.com> Author: pbrady Update of /cvs/extras/rpms/fslint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7828 Modified Files: .cvsignore fslint.spec sources Log Message: Update to 2.40 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fslint/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 9 Sep 2008 11:35:30 -0000 1.10 +++ .cvsignore 20 Jul 2009 23:45:05 -0000 1.11 @@ -1 +1 @@ -fslint-2.28.tar.gz +fslint-2.40.tar.gz Index: fslint.spec =================================================================== RCS file: /cvs/extras/rpms/fslint/devel/fslint.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- fslint.spec 24 Feb 2009 18:37:09 -0000 1.20 +++ fslint.spec 20 Jul 2009 23:45:05 -0000 1.21 @@ -1,6 +1,6 @@ Name: fslint -Version: 2.28 -Release: 4%{?dist} +Version: 2.40 +Release: 1%{?dist} Summary: File System "lint" discovery and cleaning utility Group: Applications/File @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: gettext >= 0.13, desktop-file-utils -Requires: python >= 2.0, pygtk2, pygtk2-libglade, cpio +Requires: python >= 2.3, pygtk2 >= 2.4, pygtk2-libglade, cpio, findutils %description FSlint is a utility to find redundant disk usage like duplicate files @@ -75,7 +75,6 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc doc/* -%exclude %{_datadir}/%{name}/fslint/supprt/rmlint/fixdup.py[oc] %{_mandir}/man1/fslint* %{_bindir}/fslint-gui %{_datadir}/%{name} @@ -84,6 +83,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 P?draig Brady

- 2.40-1 +- Update to 2.40. Note this updates GTK+ and Python dependencies + to 2.4 and 2.3 respectively (Fedora Core 2). + * Tue Feb 24 2009 Fedora Release Engineering - 2.28-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fslint/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 9 Sep 2008 11:35:30 -0000 1.10 +++ sources 20 Jul 2009 23:45:05 -0000 1.11 @@ -1 +1 @@ -e6a9946f7db9cbdb15f70a9fe79470fc fslint-2.28.tar.gz +8e3a1d0a5408bc16f1f589e2ee8d0048 fslint-2.40.tar.gz From konradm at fedoraproject.org Tue Jul 21 00:19:34 2009 From: konradm at fedoraproject.org (konradm) Date: Tue, 21 Jul 2009 00:19:34 +0000 (UTC) Subject: rpms/sdcc/devel sdcc-2.9.0-r5476-fix-doublefree.diff, NONE, 1.1 sdcc.spec, 1.16, 1.17 Message-ID: <20090721001934.4DCEB11C0072@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/sdcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17126 Modified Files: sdcc.spec Added Files: sdcc-2.9.0-r5476-fix-doublefree.diff Log Message: * Mon Jul 20 2009 Conrad Meyer - 2.9.0-3 - Fix double-free (rhbz# 509278) with patch from upstream. sdcc-2.9.0-r5476-fix-doublefree.diff: lkar.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- NEW FILE sdcc-2.9.0-r5476-fix-doublefree.diff --- --- trunk/sdcc/as/link/lkar.c 2009/07/18 08:25:57 5475 +++ trunk/sdcc/as/link/lkar.c 2009/07/18 09:11:36 5476 @@ -454,8 +454,6 @@ { long moduleOffset = ftell (libfp); - free (obj_name); - /* Opened OK - create a new libraryfile object for it */ if (This == NULL) { @@ -484,7 +482,7 @@ add_rel_index (libfp, hdr.ar_size, This); - fseek (libfp, moduleOffset + hdr.ar_size + (hdr.ar_size & 1), SEEK_SET); + fseek (libfp, moduleOffset + hdr.ar_size + (hdr.ar_size & 1), SEEK_SET);; } } Index: sdcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdcc/devel/sdcc.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sdcc.spec 1 Jul 2009 22:40:33 -0000 1.16 +++ sdcc.spec 21 Jul 2009 00:19:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: sdcc Version: 2.9.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Small Device C Compiler Group: Applications/Engineering License: GPLv2+ @@ -9,8 +9,7 @@ Source0: http://downloads.sourcef Source1: README.fedora Patch0: sdcc-2.9.0-patch-out-getline.diff Patch1: sdcc-2.9.0-configure.diff -#Patch1: sdcc-2.8.0-debugger-makefile.diff -#Patch2: sdcc-2.8.0-doc-lyx.diff +Patch2: sdcc-2.9.0-r5476-fix-doublefree.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf @@ -56,8 +55,7 @@ Emacs extensions for SDCC. %setup -q -n sdcc %patch0 -p1 %patch1 -p1 -#%%patch1 -p0 -#%%patch2 -p1 +%patch2 -p2 find -name '*.[ch]' -exec chmod -x '{}' \; # Extract %%__os_install_post into os_install_post~ @@ -137,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Conrad Meyer - 2.9.0-3 +- Fix double-free (rhbz# 509278) with patch from upstream. + * Wed Jul 1 2009 Conrad Meyer - 2.9.0-2 - Fix #454205 by BR'ing gputils and re-adding install_post hack. From konradm at fedoraproject.org Tue Jul 21 00:21:13 2009 From: konradm at fedoraproject.org (konradm) Date: Tue, 21 Jul 2009 00:21:13 +0000 (UTC) Subject: rpms/sdcc/F-11 sdcc-2.9.0-r5476-fix-doublefree.diff, NONE, 1.1 sdcc.spec, 1.14, 1.15 Message-ID: <20090721002113.1DA8811C0072@cvs1.fedora.phx.redhat.com> Author: konradm Update of /cvs/pkgs/rpms/sdcc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17504 Modified Files: sdcc.spec Added Files: sdcc-2.9.0-r5476-fix-doublefree.diff Log Message: * Mon Jul 20 2009 Conrad Meyer - 2.9.0-3 - Fix double-free (rhbz# 509278) with patch from upstream. sdcc-2.9.0-r5476-fix-doublefree.diff: lkar.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- NEW FILE sdcc-2.9.0-r5476-fix-doublefree.diff --- --- trunk/sdcc/as/link/lkar.c 2009/07/18 08:25:57 5475 +++ trunk/sdcc/as/link/lkar.c 2009/07/18 09:11:36 5476 @@ -454,8 +454,6 @@ { long moduleOffset = ftell (libfp); - free (obj_name); - /* Opened OK - create a new libraryfile object for it */ if (This == NULL) { @@ -484,7 +482,7 @@ add_rel_index (libfp, hdr.ar_size, This); - fseek (libfp, moduleOffset + hdr.ar_size + (hdr.ar_size & 1), SEEK_SET); + fseek (libfp, moduleOffset + hdr.ar_size + (hdr.ar_size & 1), SEEK_SET);; } } Index: sdcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdcc/F-11/sdcc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sdcc.spec 11 May 2009 23:41:07 -0000 1.14 +++ sdcc.spec 21 Jul 2009 00:20:42 -0000 1.15 @@ -1,6 +1,6 @@ Name: sdcc Version: 2.9.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Small Device C Compiler Group: Applications/Engineering License: GPLv2+ @@ -9,14 +9,14 @@ Source0: http://downloads.sourcef Source1: README.fedora Patch0: sdcc-2.9.0-patch-out-getline.diff Patch1: sdcc-2.9.0-configure.diff -#Patch1: sdcc-2.8.0-debugger-makefile.diff -#Patch2: sdcc-2.8.0-doc-lyx.diff +Patch2: sdcc-2.9.0-r5476-fix-doublefree.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf BuildRequires: bison BuildRequires: flex BuildRequires: gc-devel +BuilDrequires: gputils BuildRequires: lyx BuildRequires: latex2html @@ -55,10 +55,29 @@ Emacs extensions for SDCC. %setup -q -n sdcc %patch0 -p1 %patch1 -p1 -#%%patch1 -p0 -#%%patch2 -p1 +%patch2 -p2 find -name '*.[ch]' -exec chmod -x '{}' \; +# Extract %%__os_install_post into os_install_post~ +cat << \EOF > os_install_post~ +%__os_install_post +EOF + +# Generate customized brp-*scripts +cat os_install_post~ | while read a x y; do +case $a in +# Prevent brp-strip* from trying to handle foreign binaries +*/brp-strip*) + b=$(basename $a) + sed -e 's,find $RPM_BUILD_ROOT,find $RPM_BUILD_ROOT%_bindir $RPM_BUILD_ROOT%_libexecdir,' $a > $b + chmod a+x $b + ;; +esac +done + +sed -e 's,^[ ]*/usr/lib/rpm.*/brp-strip,./brp-strip,' \ +< os_install_post~ > os_install_post + %build # Rebuild configure scripts (patched configure.in s in patch0). @@ -116,6 +135,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 20 2009 Conrad Meyer - 2.9.0-3 +- Fix double-free (rhbz# 509278) with patch from upstream. + +* Wed Jul 1 2009 Conrad Meyer - 2.9.0-2 +- Fix #454205 by BR'ing gputils and re-adding install_post hack. + * Thu Apr 30 2009 Conrad Meyer - 2.9.0-1 - Bump to 2.9.0. From davidz at fedoraproject.org Tue Jul 21 00:30:34 2009 From: davidz at fedoraproject.org (David Zeuthen) Date: Tue, 21 Jul 2009 00:30:34 +0000 (UTC) Subject: rpms/polkit/devel polkit.spec,1.3,1.4 Message-ID: <20090721003034.299F611C00D6@cvs1.fedora.phx.redhat.com> Author: davidz Update of /cvs/pkgs/rpms/polkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20059 Modified Files: polkit.spec Log Message: * Mon Jul 20 2009 David Zeuthen - 0.93-1 - Update to 0.93 Index: polkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit/devel/polkit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- polkit.spec 9 Jun 2009 13:33:04 -0000 1.3 +++ polkit.spec 21 Jul 2009 00:30:33 -0000 1.4 @@ -1,7 +1,7 @@ Summary: PolicyKit Authorization Framework Name: polkit -Version: 0.92 -Release: 3%{?dist} +Version: 0.93 +Release: 1%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -46,7 +46,7 @@ Development documentation for PolicyKit. %setup -q %build -%configure --enable-gtk-doc --disable-static +%configure --enable-gtk-doc --disable-static --libexecdir=%{_libexecdir}/polkit-1 make %install @@ -75,8 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/man/man1/pkexec.1.gz %{_datadir}/man/man1/pkaction.1.gz %{_datadir}/man/man1/pkcheck.1.gz -%{_datadir}/man/man8/polkitd-1.8.gz -%{_datadir}/man/man8/PolicyKit-1.8.gz +%{_datadir}/man/man8/polkitd.8.gz +%{_datadir}/man/man8/polkit.8.gz +%{_datadir}/man/man8/pklocalauthority.8.gz %{_datadir}/dbus-1/system-services/* %dir %{_datadir}/polkit-1/ %dir %{_datadir}/polkit-1/actions @@ -86,12 +87,12 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/polkit-1 %{_bindir}/pkaction %{_bindir}/pkcheck -%{_libexecdir}/polkitd-1 +%{_libexecdir}/polkit-1/polkitd # see upstream docs for why these permissions are necessary %attr(0700,root,root) %dir %{_localstatedir}/lib/polkit-1/ %attr(4755,root,root) %{_bindir}/pkexec -%attr(4755,root,root) %{_libexecdir}/polkit-agent-helper-1 +%attr(4755,root,root) %{_libexecdir}/polkit-1/polkit-agent-helper-1 %files devel %defattr(-,root,root,-) @@ -106,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Mon Jul 20 2009 David Zeuthen - 0.93-1 +- Update to 0.93 + * Tue Jun 09 2009 David Zeuthen - 0.92-3 - Don't make docs noarch (I *heart* multilib) - Change license to LGPLv2+ From davidz at fedoraproject.org Tue Jul 21 00:31:26 2009 From: davidz at fedoraproject.org (David Zeuthen) Date: Tue, 21 Jul 2009 00:31:26 +0000 (UTC) Subject: rpms/polkit-gnome/devel polkit-gnome.spec,1.3,1.4 Message-ID: <20090721003126.B5B0B11C0072@cvs1.fedora.phx.redhat.com> Author: davidz Update of /cvs/pkgs/rpms/polkit-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20241 Modified Files: polkit-gnome.spec Log Message: * Mon Jul 20 2009 David Zeuthen - 0.93-1 - Update to 0.93 Index: polkit-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit-gnome/devel/polkit-gnome.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- polkit-gnome.spec 9 Jun 2009 23:03:46 -0000 1.3 +++ polkit-gnome.spec 21 Jul 2009 00:30:56 -0000 1.4 @@ -1,24 +1,17 @@ Summary: PolicyKit integration for the GNOME desktop Name: polkit-gnome -Version: 0.92 -Release: 3%{?dist} +Version: 0.93 +Release: 1%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Group: Applications/System Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: gtk2-devel -BuildRequires: polkit-devel >= 0.92 +BuildRequires: polkit-devel >= 0.93 BuildRequires: desktop-file-utils BuildRequires: intltool -# Tecnically we should have -# -# Requires: gnome-session -# -# for %{_datadir}/gnome/autostart but since e.g. XFCE wants to avoid -# too many GNOME dependencies avoid doing that. - %description polkit-gnome provides an authentication agent for PolicyKit that matches the look and feel of the GNOME desktop. @@ -35,8 +28,8 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT desktop-file-install --delete-original \ - --dir $RPM_BUILD_ROOT%{_datadir}/gnome/autostart \ - $RPM_BUILD_ROOT%{_datadir}/gnome/autostart/polkit-gnome-authentication-agent-1.desktop + --dir $RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart \ + $RPM_BUILD_ROOT%{_sysconfdir}/xdg/autostart/polkit-gnome-authentication-agent-1.desktop %find_lang polkit-gnome-1 @@ -46,10 +39,13 @@ rm -rf $RPM_BUILD_ROOT %files -f polkit-gnome-1.lang %defattr(-,root,root,-) %doc COPYING AUTHORS README -%{_datadir}/gnome/autostart/* +%{_sysconfdir}/xdg/autostart/* %{_libexecdir}/* %changelog +* Mon Jul 20 2009 David Zeuthen - 0.93-1 +- Update to 0.93 + * Tue Jun 9 2009 Matthias Clasen - 0.9.2-3 - Fix BuildRequires From pbrady at fedoraproject.org Tue Jul 21 00:43:41 2009 From: pbrady at fedoraproject.org (=?utf-8?q?P=C3=A1draig_Brady?=) Date: Tue, 21 Jul 2009 00:43:41 +0000 (UTC) Subject: rpms/fslint/F-10 .cvsignore, 1.10, 1.11 fslint.spec, 1.17, 1.18 sources, 1.10, 1.11 Message-ID: <20090721004341.5130F11C0072@cvs1.fedora.phx.redhat.com> Author: pbrady Update of /cvs/extras/rpms/fslint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25323 Modified Files: .cvsignore fslint.spec sources Log Message: Update to 2.40 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fslint/F-10/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 9 Sep 2008 11:35:30 -0000 1.10 +++ .cvsignore 21 Jul 2009 00:43:10 -0000 1.11 @@ -1 +1 @@ -fslint-2.28.tar.gz +fslint-2.40.tar.gz Index: fslint.spec =================================================================== RCS file: /cvs/extras/rpms/fslint/F-10/fslint.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fslint.spec 1 Dec 2008 15:52:38 -0000 1.17 +++ fslint.spec 21 Jul 2009 00:43:10 -0000 1.18 @@ -1,6 +1,6 @@ Name: fslint -Version: 2.28 -Release: 3%{?dist} +Version: 2.40 +Release: 1%{?dist} Summary: File System "lint" discovery and cleaning utility Group: Applications/File @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: gettext >= 0.13, desktop-file-utils -Requires: python >= 2.0, pygtk2, pygtk2-libglade, cpio +Requires: python >= 2.3, pygtk2 >= 2.4, pygtk2-libglade, cpio, findutils %description FSlint is a utility to find redundant disk usage like duplicate files @@ -75,7 +75,6 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc doc/* -%exclude %{_datadir}/%{name}/fslint/supprt/rmlint/fixdup.py[oc] %{_mandir}/man1/fslint* %{_bindir}/fslint-gui %{_datadir}/%{name} @@ -84,6 +83,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 P?draig Brady

- 2.40-1 +- Update to 2.40. Note this updates GTK+ and Python dependencies + to 2.4 and 2.3 respectively (Fedora Core 2). + +* Tue Feb 24 2009 Fedora Release Engineering - 2.28-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Dec 01 2008 P?draig Brady

- 2.28-3 - Remove redundant py[co] files (dependency on python(abi)) Index: sources =================================================================== RCS file: /cvs/extras/rpms/fslint/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 9 Sep 2008 11:35:30 -0000 1.10 +++ sources 21 Jul 2009 00:43:10 -0000 1.11 @@ -1 +1 @@ -e6a9946f7db9cbdb15f70a9fe79470fc fslint-2.28.tar.gz +8e3a1d0a5408bc16f1f589e2ee8d0048 fslint-2.40.tar.gz From cwickert at fedoraproject.org Tue Jul 21 00:44:33 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 21 Jul 2009 00:44:33 +0000 (UTC) Subject: comps comps-f11.xml.in,1.269,1.270 comps-f12.xml.in,1.45,1.46 Message-ID: <20090721004433.9BB1011C0072@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21761 Modified Files: comps-f11.xml.in comps-f12.xml.in Log Message: xfce4-notify-daemon is xfce4-notifyd Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.269 retrieving revision 1.270 diff -u -p -r1.269 -r1.270 --- comps-f11.xml.in 20 Jul 2009 10:27:31 -0000 1.269 +++ comps-f11.xml.in 21 Jul 2009 00:44:03 -0000 1.270 @@ -5852,7 +5852,7 @@ xfce4-mpc-plugin xfce4-netload-plugin xfce4-notes-plugin - xfce4-notify-daemon + xfce4-notifyd xfce4-places-plugin xfce4-power-manager xfce4-quicklauncher-plugin Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- comps-f12.xml.in 20 Jul 2009 10:22:27 -0000 1.45 +++ comps-f12.xml.in 21 Jul 2009 00:44:03 -0000 1.46 @@ -5995,7 +5995,7 @@ xfce4-mpc-plugin xfce4-netload-plugin xfce4-notes-plugin - xfce4-notify-daemon + xfce4-notifyd xfce4-places-plugin xfce4-power-manager xfce4-quicklauncher-plugin From pbrady at fedoraproject.org Tue Jul 21 00:44:48 2009 From: pbrady at fedoraproject.org (=?utf-8?q?P=C3=A1draig_Brady?=) Date: Tue, 21 Jul 2009 00:44:48 +0000 (UTC) Subject: rpms/fslint/F-11 .cvsignore, 1.10, 1.11 fslint.spec, 1.20, 1.21 sources, 1.10, 1.11 Message-ID: <20090721004448.95ED011C0072@cvs1.fedora.phx.redhat.com> Author: pbrady Update of /cvs/extras/rpms/fslint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25675 Modified Files: .cvsignore fslint.spec sources Log Message: Update to 2.40 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fslint/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 9 Sep 2008 11:35:30 -0000 1.10 +++ .cvsignore 21 Jul 2009 00:44:18 -0000 1.11 @@ -1 +1 @@ -fslint-2.28.tar.gz +fslint-2.40.tar.gz Index: fslint.spec =================================================================== RCS file: /cvs/extras/rpms/fslint/F-11/fslint.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- fslint.spec 24 Feb 2009 18:37:09 -0000 1.20 +++ fslint.spec 21 Jul 2009 00:44:18 -0000 1.21 @@ -1,6 +1,6 @@ Name: fslint -Version: 2.28 -Release: 4%{?dist} +Version: 2.40 +Release: 1%{?dist} Summary: File System "lint" discovery and cleaning utility Group: Applications/File @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: gettext >= 0.13, desktop-file-utils -Requires: python >= 2.0, pygtk2, pygtk2-libglade, cpio +Requires: python >= 2.3, pygtk2 >= 2.4, pygtk2-libglade, cpio, findutils %description FSlint is a utility to find redundant disk usage like duplicate files @@ -75,7 +75,6 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc doc/* -%exclude %{_datadir}/%{name}/fslint/supprt/rmlint/fixdup.py[oc] %{_mandir}/man1/fslint* %{_bindir}/fslint-gui %{_datadir}/%{name} @@ -84,6 +83,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 P?draig Brady

- 2.40-1 +- Update to 2.40. Note this updates GTK+ and Python dependencies + to 2.4 and 2.3 respectively (Fedora Core 2). + * Tue Feb 24 2009 Fedora Release Engineering - 2.28-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fslint/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 9 Sep 2008 11:35:30 -0000 1.10 +++ sources 21 Jul 2009 00:44:18 -0000 1.11 @@ -1 +1 @@ -e6a9946f7db9cbdb15f70a9fe79470fc fslint-2.28.tar.gz +8e3a1d0a5408bc16f1f589e2ee8d0048 fslint-2.40.tar.gz From davidz at fedoraproject.org Tue Jul 21 00:48:18 2009 From: davidz at fedoraproject.org (David Zeuthen) Date: Tue, 21 Jul 2009 00:48:18 +0000 (UTC) Subject: rpms/polkit/devel .cvsignore, 1.2, 1.3 polkit.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090721004818.3E4ED11C0072@cvs1.fedora.phx.redhat.com> Author: davidz Update of /cvs/pkgs/rpms/polkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26507 Modified Files: .cvsignore polkit.spec sources Log Message: * Mon Jul 20 2009 David Zeuthen - 0.93-2 - Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/polkit/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Jun 2009 20:36:45 -0000 1.2 +++ .cvsignore 21 Jul 2009 00:47:47 -0000 1.3 @@ -1 +1,2 @@ polkit-0.92.tar.gz +polkit-0.93.tar.gz Index: polkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit/devel/polkit.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- polkit.spec 21 Jul 2009 00:30:33 -0000 1.4 +++ polkit.spec 21 Jul 2009 00:47:47 -0000 1.5 @@ -1,7 +1,7 @@ Summary: PolicyKit Authorization Framework Name: polkit Version: 0.93 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Mon Jul 20 2009 David Zeuthen - 0.93-2 +- Rebuild + * Mon Jul 20 2009 David Zeuthen - 0.93-1 - Update to 0.93 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/polkit/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Jun 2009 20:36:45 -0000 1.2 +++ sources 21 Jul 2009 00:47:47 -0000 1.3 @@ -1 +1 @@ -16ba7d33ea9d130e093e9ab8b4c267e6 polkit-0.92.tar.gz +16e9361b6c8dbbecc29ee263d7880998 polkit-0.93.tar.gz From davidz at fedoraproject.org Tue Jul 21 00:49:43 2009 From: davidz at fedoraproject.org (David Zeuthen) Date: Tue, 21 Jul 2009 00:49:43 +0000 (UTC) Subject: rpms/polkit-gnome/devel .cvsignore, 1.2, 1.3 polkit-gnome.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090721004943.22DCD11C0072@cvs1.fedora.phx.redhat.com> Author: davidz Update of /cvs/pkgs/rpms/polkit-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27086 Modified Files: .cvsignore polkit-gnome.spec sources Log Message: * Mon Jul 20 2009 David Zeuthen - 0.93-2 - Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/polkit-gnome/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 8 Jun 2009 20:47:20 -0000 1.2 +++ .cvsignore 21 Jul 2009 00:49:12 -0000 1.3 @@ -1 +1,2 @@ polkit-gnome-0.92.tar.bz2 +polkit-gnome-0.93.tar.bz2 Index: polkit-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit-gnome/devel/polkit-gnome.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- polkit-gnome.spec 21 Jul 2009 00:30:56 -0000 1.4 +++ polkit-gnome.spec 21 Jul 2009 00:49:12 -0000 1.5 @@ -1,7 +1,7 @@ Summary: PolicyKit integration for the GNOME desktop Name: polkit-gnome Version: 0.93 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Group: Applications/System @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/* %changelog +* Mon Jul 20 2009 David Zeuthen - 0.93-2 +- Rebuild + * Mon Jul 20 2009 David Zeuthen - 0.93-1 - Update to 0.93 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/polkit-gnome/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 8 Jun 2009 20:47:20 -0000 1.2 +++ sources 21 Jul 2009 00:49:12 -0000 1.3 @@ -1 +1 @@ -e515733e671dc226cd58291e9af96de8 polkit-gnome-0.92.tar.bz2 +b30bd877f674e89a80848ed45257375d polkit-gnome-0.93.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 21 01:19:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:19:56 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721011956.BC7CA10F87C@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on tremulous (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:19:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:19:58 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721011958.6C25910F898@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on tremulous (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:19:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:19:59 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721011959.8F35110F8A8@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on tremulous (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:01 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012001.A588910F8AB@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on tremulous (Fedora devel) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:11 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012011.7C8A910F8AC@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on tremulous (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:11 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012012.19CEF10F8B0@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on tremulous (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:13 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012014.06FAD10F8B3@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on tremulous (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:15 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012015.27CB910F897@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on tremulous (Fedora 10) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:17 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012017.BB3A810F8B4@bastion2.fedora.phx.redhat.com> ianweller has set the watchbugzilla acl on tremulous (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:17 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012017.CD96E10F8B7@bastion2.fedora.phx.redhat.com> ianweller has set the watchcommits acl on tremulous (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:19 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012019.537F210F8BB@bastion2.fedora.phx.redhat.com> ianweller has set the commit acl on tremulous (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From pkgdb at fedoraproject.org Tue Jul 21 01:20:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 01:20:20 +0000 Subject: [pkgdb] tremulous had acl change status Message-ID: <20090721012020.400E010F8BD@bastion2.fedora.phx.redhat.com> ianweller has set the approveacls acl on tremulous (Fedora 11) to Approved for sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tremulous From cwickert at fedoraproject.org Tue Jul 21 01:37:52 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 21 Jul 2009 01:37:52 +0000 (UTC) Subject: comps comps-f10.xml.in, 1.257, 1.258 comps-f11.xml.in, 1.270, 1.271 comps-f12.xml.in, 1.46, 1.47 Message-ID: <20090721013752.286C311C0072@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8877 Modified Files: comps-f10.xml.in comps-f11.xml.in comps-f12.xml.in Log Message: add gigolo Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.257 retrieving revision 1.258 diff -u -p -r1.257 -r1.258 --- comps-f10.xml.in 20 Jul 2009 10:27:31 -0000 1.257 +++ comps-f10.xml.in 21 Jul 2009 01:37:21 -0000 1.258 @@ -4454,6 +4454,7 @@ geoclue ghasher ghex + gigolo gkrellm gnokii gnome-nettool Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.270 retrieving revision 1.271 diff -u -p -r1.270 -r1.271 --- comps-f11.xml.in 21 Jul 2009 00:44:03 -0000 1.270 +++ comps-f11.xml.in 21 Jul 2009 01:37:21 -0000 1.271 @@ -5144,6 +5144,7 @@ geoclue ghasher ghex + gigolo gkrellm gnokii gnome-nettool Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- comps-f12.xml.in 21 Jul 2009 00:44:03 -0000 1.46 +++ comps-f12.xml.in 21 Jul 2009 01:37:21 -0000 1.47 @@ -5272,6 +5272,7 @@ geoclue ghasher ghex + gigolo gkrellm gnokii gnome-nettool From hadess at fedoraproject.org Tue Jul 21 01:56:21 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 01:56:21 +0000 (UTC) Subject: rpms/gstreamer/devel .cvsignore, 1.39, 1.40 gstreamer.spec, 1.100, 1.101 sources, 1.40, 1.41 Message-ID: <20090721015621.3DAE611C0072@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14170 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Update to 0.10.23.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 16 Jul 2009 14:36:37 -0000 1.39 +++ .cvsignore 21 Jul 2009 01:55:50 -0000 1.40 @@ -1 +1 @@ -gstreamer-0.10.23.2.tar.bz2 +gstreamer-0.10.23.3.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- gstreamer.spec 16 Jul 2009 14:36:37 -0000 1.100 +++ gstreamer.spec 21 Jul 2009 01:55:50 -0000 1.101 @@ -5,7 +5,7 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23.2 +Version: 0.10.23.3 Release: 1%{?dist} Summary: GStreamer streaming media framework runtime @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 +- Update to 0.10.23.3 + * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 16 Jul 2009 14:36:37 -0000 1.40 +++ sources 21 Jul 2009 01:55:50 -0000 1.41 @@ -1 +1 @@ -f3ea565fbcb765a768bca7118801acfc gstreamer-0.10.23.2.tar.bz2 +8ee3a5474e109b749138703473deeeab gstreamer-0.10.23.3.tar.bz2 From katzj at fedoraproject.org Tue Jul 21 02:27:26 2009 From: katzj at fedoraproject.org (Jeremy Katz) Date: Tue, 21 Jul 2009 02:27:26 +0000 (UTC) Subject: rpms/mkinitrd/devel .cvsignore, 1.229, 1.230 mkinitrd.spec, 1.327, 1.328 sources, 1.271, 1.272 Message-ID: <20090721022727.01C8F11C00D6@cvs1.fedora.phx.redhat.com> Author: katzj Update of /cvs/pkgs/rpms/mkinitrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23123 Modified Files: .cvsignore mkinitrd.spec sources Log Message: * Mon Jul 20 2009 Jeremy Katz - 6.0.92-1 - Fix live image booting with udev creating /dev/mapper/control - Workaround to try to stop the live image dm backing images from showing up in devkit-disks (#495170) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/devel/.cvsignore,v retrieving revision 1.229 retrieving revision 1.230 diff -u -p -r1.229 -r1.230 --- .cvsignore 6 Jul 2009 08:54:06 -0000 1.229 +++ .cvsignore 21 Jul 2009 02:26:56 -0000 1.230 @@ -1 +1 @@ -mkinitrd-6.0.91.tar.bz2 +mkinitrd-6.0.92.tar.bz2 Index: mkinitrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/devel/mkinitrd.spec,v retrieving revision 1.327 retrieving revision 1.328 diff -u -p -r1.327 -r1.328 --- mkinitrd.spec 10 Jul 2009 22:00:52 -0000 1.327 +++ mkinitrd.spec 21 Jul 2009 02:26:56 -0000 1.328 @@ -2,8 +2,8 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd -Version: 6.0.91 -Release: 2%{?dist} +Version: 6.0.92 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base Source0: mkinitrd-%{version}.tar.bz2 @@ -119,6 +119,11 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Mon Jul 20 2009 Jeremy Katz - 6.0.92-1 +- Fix live image booting with udev creating /dev/mapper/control +- Workaround to try to stop the live image dm backing images from showing + up in devkit-disks (#495170) + * Fri Jul 10 2009 Tom "spot" Callaway - 6.0.91-2 - rebuild against new parted Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/devel/sources,v retrieving revision 1.271 retrieving revision 1.272 diff -u -p -r1.271 -r1.272 --- sources 6 Jul 2009 08:54:06 -0000 1.271 +++ sources 21 Jul 2009 02:26:56 -0000 1.272 @@ -1 +1 @@ -f550e51c7122cc3679a0fdcc888dfc9c mkinitrd-6.0.91.tar.bz2 +86685bbba9a17368b658eb65dd60bdd2 mkinitrd-6.0.92.tar.bz2 From cchance at fedoraproject.org Tue Jul 21 02:30:54 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Tue, 21 Jul 2009 02:30:54 +0000 (UTC) Subject: rpms/liberation-fonts/devel .cvsignore, 1.11, 1.12 liberation-fonts.spec, 1.41, 1.42 sources, 1.15, 1.16 Message-ID: <20090721023054.D679E11C048A@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/liberation-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24277 Modified Files: .cvsignore liberation-fonts.spec sources Log Message: - Fixed fontforge scripting of sfd -> ttf generation. - Checked existance of traditionat kern table in Sans and Serif. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 13 Jul 2009 06:31:40 -0000 1.11 +++ .cvsignore 21 Jul 2009 02:30:24 -0000 1.12 @@ -1 +1 @@ -liberation-fonts-1.05.1.20090713.tar.gz +liberation-fonts-1.05.1.20090721.tar.gz Index: liberation-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/liberation-fonts.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- liberation-fonts.spec 14 Jul 2009 00:55:52 -0000 1.41 +++ liberation-fonts.spec 21 Jul 2009 02:30:24 -0000 1.42 @@ -9,8 +9,8 @@ New. Name: %{fontname}-fonts Summary: Fonts to replace commonly used Microsoft Windows fonts -Version: 1.05.1.20090713 -Release: 2%{?dist} +Version: 1.05.1.20090721 +Release: 1%{?dist} # The license of the Liberation Fonts is a EULA that contains GPLv2 and two # exceptions: # The first exception is the standard FSF font exception. @@ -112,6 +112,10 @@ mkfontscale %{buildroot}%{_fontdir} rm -rf %{buildroot} %changelog +* Tue Jul 21 2009 Caius 'kaio' Chance - 1.05.1.20090721-1.fc12 +- Fixed fontforge scripting of sfd -> ttf generation. +- Checked existance of traditionat kern table in Sans and Serif. + * Tue Jul 14 2009 Caius 'kaio' Chance - 1.05.1.20090713-2.fc12 - Required fontforge ver 20090408 which supports generation with traditional kern table. (rhbz#503430) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 13 Jul 2009 06:31:40 -0000 1.15 +++ sources 21 Jul 2009 02:30:24 -0000 1.16 @@ -1 +1 @@ -97a10ca1feb065d022bb9942e21b15ad liberation-fonts-1.05.1.20090713.tar.gz +64d10e33c4f7e7553ae220c0e85c00b9 liberation-fonts-1.05.1.20090721.tar.gz From kkofler at fedoraproject.org Tue Jul 21 03:19:16 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:19:16 +0000 (UTC) Subject: rpms/z88dk/devel z88dk-1.9-64bit.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 z88dk.spec, 1.18, 1.19 z88dk-1.7-64bit.patch, 1.1, NONE Message-ID: <20090721031916.5473F11C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/z88dk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8532/devel Modified Files: .cvsignore sources z88dk.spec Added Files: z88dk-1.9-64bit.patch Removed Files: z88dk-1.7-64bit.patch Log Message: * Tue Jul 21 2009 Kevin Kofler - 1.9-1 - update to 1.9 - update 64bit patch (one issue fixed upstream, many left) z88dk-1.9-64bit.patch: copt/copt.c | 4 ++-- sccz80/io.c | 4 ++-- sccz80/io.h | 4 ++-- sccz80/primary.c | 4 ++-- z80asm/config.h | 7 +++++++ z80asm/modlink.c | 30 +++++++++++++++--------------- z80asm/symbol.h | 2 +- z80asm/z80asm.c | 2 +- z80asm/z80pass.c | 4 ++-- 9 files changed, 34 insertions(+), 27 deletions(-) --- NEW FILE z88dk-1.9-64bit.patch --- diff -ur z88dk/src/copt/copt.c z88dk-64bit/src/copt/copt.c --- z88dk/src/copt/copt.c 2002-09-15 19:10:07.000000000 +0200 +++ z88dk-64bit/src/copt/copt.c 2009-07-21 05:11:59.000000000 +0200 @@ -507,12 +507,12 @@ /* check for activation rules */ if (o->o_new && strcmp(o->o_new->l_text, "%activate\n") == 0) { /* we have to prevent repeated activation of rules */ - char signature[160]; + char signature[240]; struct lnode *lnp; struct onode *nn, *last; int skip = 0; /* since we 'install()' strings, we can compare pointers */ - sprintf(signature, "%s%08x%08x%08x%08x%08x%08x%08x%08x%08x%08x\n", + sprintf(signature, (sizeof(char*)>4)?"%s%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx\n":"%s%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx\n", activated, vars[0], vars[1], vars[2], vars[3], vars[4], vars[5], vars[6], vars[7], vars[8], vars[9]); diff -ur z88dk/src/sccz80/io.c z88dk-64bit/src/sccz80/io.c --- z88dk/src/sccz80/io.c 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.c 2009-07-21 05:11:59.000000000 +0200 @@ -334,7 +334,7 @@ } -void outdec(long number) +void outdec(int number) { if ( number < 0 ) { number=-number; @@ -344,7 +344,7 @@ outd2(number); } -void outd2(long n) +void outd2(int n) { if ( n > 9 ) { outd2(n/10) ; diff -ur z88dk/src/sccz80/io.h z88dk-64bit/src/sccz80/io.h --- z88dk/src/sccz80/io.h 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.h 2009-07-21 05:11:59.000000000 +0200 @@ -26,8 +26,8 @@ extern void ol(char *ptr); extern void ot(char *ptr); extern void blanks(void); -extern void outdec(long number); -extern void outd2(long n); +extern void outdec(int number); +extern void outd2(int n); extern void queuelabel(int); typedef struct { diff -ur z88dk/src/sccz80/primary.c z88dk-64bit/src/sccz80/primary.c --- z88dk/src/sccz80/primary.c 2007-07-05 20:39:00.000000000 +0200 +++ z88dk-64bit/src/sccz80/primary.c 2009-07-21 05:11:59.000000000 +0200 @@ -739,7 +739,7 @@ SYMBOL *ptr; char temp_type; int itag; - char nam[20]; + char nam[26]; @@ -794,7 +794,7 @@ * returning pointers - to do this, we will define dummy symbols in * the local symbol table so that they do what we want them to do! */ - sprintf(nam,"0dptr%d",(int)locptr); + sprintf(nam,"0dptr%lu",(unsigned long)locptr); temp_type = ( (lval->c_flags&FARPTR) ? CPTR : CINT ); itag=0; if ( lval->c_tag) diff -ur z88dk/src/z80asm/config.h z88dk-64bit/src/z80asm/config.h --- z88dk/src/z80asm/config.h 2007-06-24 18:41:41.000000000 +0200 +++ z88dk-64bit/src/z80asm/config.h 2009-07-21 05:11:59.000000000 +0200 @@ -64,6 +64,12 @@ #define MAXCODESIZE 65536 #endif +#ifdef __linux__ +#include +#if __BYTE_ORDER == __BIG_ENDIAN +#define ENDIAN 1 +#endif +#else /* Some clever config-ing if we're using GNUC */ #ifdef __BIG_ENDIAN__ /* Sadly the compiler on OS-X falls over with the #if below... */ @@ -75,3 +81,4 @@ #endif #endif /* __GNUC__ */ #endif +#endif diff -ur z88dk/src/z80asm/modlink.c z88dk-64bit/src/z80asm/modlink.c --- z88dk/src/z80asm/modlink.c 2002-11-05 12:45:56.000000000 +0100 +++ z88dk-64bit/src/z80asm/modlink.c 2009-07-21 05:11:59.000000000 +0200 @@ -106,11 +106,11 @@ int LinkLibModule (struct libfile *library, long curmodule, char *modname); int SearchLibfile (struct libfile *curlib, char *modname); char *ReadName (void); -long ReadLong (FILE * fileid); +int ReadLong (FILE * fileid); void redefinedmsg (void); void CreateLib (void); void SearchLibraries (char *modname); -void WriteLong (long fptr, FILE * fileid); +void WriteLong (int fptr, FILE * fileid); void LinkModules (void); void ModuleExpr (void); void CreateBinFile (void); @@ -160,7 +160,7 @@ ReadNames (long nextname, long endnames) { char scope, symtype; - long value; + int value; symbol *foundsymbol; do @@ -509,7 +509,7 @@ while (CURRENTMODULE != lastobjmodule->nextmodule); /* parse only object modules, not added library modules */ if (verbose == ON) - printf ("Code size of linked modules is %d bytes\n", CODESIZE); + printf ("Code size of linked modules is %lu bytes\n", (unsigned long) CODESIZE); if (ASMERROR == OFF) ModuleExpr (); /* Evaluate expressions in all modules */ @@ -531,7 +531,7 @@ int LinkModule (char *filename, long fptr_base) { - long fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; + int fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; size_t lowbyte, highbyte, size; int flag = 0; @@ -661,7 +661,7 @@ SearchLibfile (struct libfile *curlib, char *modname) { - long currentlibmodule, modulesize, fptr_mname; + int currentlibmodule, modulesize, fptr_mname; int flag; char *mname; @@ -755,8 +755,8 @@ void ModuleExpr (void) { - long fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; - long fptr_base; + int fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; + int fptr_base; struct linkedmod *curlink; if (verbose) @@ -837,7 +837,7 @@ *(reloctable + 3) = (unsigned short) sizeof_reloctable / 256U;/* total size of relocation table elements */ fwrite (reloctable, 1U, sizeof_reloctable + 4, binaryfile); /* write relocation table, inclusive 4 byte header */ - printf ("Relocation header is %d bytes.\n", sizeof_relocroutine + sizeof_reloctable + 4); + printf ("Relocation header is %lu bytes.\n", (unsigned long) (sizeof_relocroutine + sizeof_reloctable + 4)); fwrite (codearea, sizeof (char), CODESIZE, binaryfile); /* write code as one big chunk */ fclose (binaryfile); } @@ -880,9 +880,9 @@ void CreateLib (void) { - long Codesize; + int Codesize; FILE *objectfile = NULL; - long fptr; + int fptr; char *filebuffer, *fname; if (verbose) @@ -1035,13 +1035,13 @@ -long +int ReadLong (FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; - unsigned long c, fptr = 0; + unsigned int c, fptr = 0; for (i = 1; i <= 3; i++) { @@ -1052,7 +1052,7 @@ return fptr; #else /* low byte, high byte order... */ - long fptr = 0; + int fptr = 0; /* long is *at least* 4 bytes long, and we have to write exactly 4 bytes */ fread (&fptr, 4, 1, fileid); @@ -1063,7 +1063,7 @@ void -WriteLong (long fptr, FILE * fileid) +WriteLong (int fptr, FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; diff -ur z88dk/src/z80asm/symbol.h z88dk-64bit/src/z80asm/symbol.h --- z88dk/src/z80asm/symbol.h 2003-10-11 17:41:04.000000000 +0200 +++ z88dk-64bit/src/z80asm/symbol.h 2009-07-21 05:11:59.000000000 +0200 @@ -113,7 +113,7 @@ struct libfile { struct libfile *nextlib; /* pointer to next library file in list */ char *libfilename; /* filename of library (incl. extension) */ - long nextobjfile; /* file pointer to next object file in library */ + int nextobjfile; /* file pointer to next object file in library */ }; struct linklist { struct linkedmod *firstlink; /* pointer to first linked object module */ diff -ur z88dk/src/z80asm/z80asm.c z88dk-64bit/src/z80asm/z80asm.c --- z88dk/src/z80asm/z80asm.c 2009-06-23 00:12:53.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80asm.c 2009-07-21 05:11:59.000000000 +0200 @@ -834,7 +834,7 @@ } if (*flagid == 'r') { - sscanf (flagid + 1, "%x", &EXPLICIT_ORIGIN); + sscanf (flagid + 1, "%lx", &EXPLICIT_ORIGIN); deforigin = ON; /* explicit origin has been defined */ return; } diff -ur z88dk/src/z80asm/z80pass.c z88dk-64bit/src/z80asm/z80pass.c --- z88dk/src/z80asm/z80pass.c 2002-05-11 22:09:38.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80pass.c 2009-07-21 05:11:59.000000000 +0200 @@ -853,9 +853,9 @@ fprintf (listfile, "%*.*s", 122 - strlen (_prog_name) - strlen (_version) - strlen (_copyright) - 3, strlen (date), date); #else fprintf (listfile, "%s", copyrightmsg); - fprintf (listfile, "%*.*s", (int) 122 - strlen (copyrightmsg), (int) strlen (date), date); + fprintf (listfile, "%*.*s", (int) (122 - strlen (copyrightmsg)), (int) strlen (date), date); #endif - fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) 122 - 9 - 2 - strlen (lstfilename), "", lstfilename); + fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) (122 - 9 - 2 - strlen (lstfilename)), "", lstfilename); } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Mar 2008 23:13:46 -0000 1.4 +++ .cvsignore 21 Jul 2009 03:19:14 -0000 1.5 @@ -1 +1 @@ -z88dk-src-1.8.tgz +z88dk-src-1.9.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Mar 2008 23:13:46 -0000 1.4 +++ sources 21 Jul 2009 03:19:14 -0000 1.5 @@ -1 +1 @@ -f3a762cb6263430f76163e3e85fa1102 z88dk-src-1.8.tgz +405de32baa962e30b8951270f5a4799d z88dk-src-1.9.tgz Index: z88dk.spec =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/devel/z88dk.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- z88dk.spec 10 Apr 2009 00:04:22 -0000 1.18 +++ z88dk.spec 21 Jul 2009 03:19:15 -0000 1.19 @@ -1,13 +1,13 @@ Summary: A Z80 cross compiler Name: z88dk -Version: 1.8 -Release: 3%{?dist} +Version: 1.9 +Release: 1%{?dist} License: Artistic clarified Group: Development/Tools Source: http://downloads.sourceforge.net/z88dk/z88dk-src-%{version}.tgz Patch0: z88dk-1.8-makefile-usr-share.patch Patch1: z88dk-1.8-makefile-fixes.patch -Patch2: z88dk-1.7-64bit.patch +Patch2: z88dk-1.9-64bit.patch Patch3: z88dk-1.8-getline-name-conflict.patch URL: http://z88dk.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -80,6 +80,10 @@ export ZCCCFG=%{_datadir}/z88dk-%{versio %{_mandir}/man3z/ %changelog +* Tue Jul 21 2009 Kevin Kofler - 1.9-1 +- update to 1.9 +- update 64bit patch (one issue fixed upstream, many left) + * Fri Apr 10 2009 Kevin Kofler - 1.8-3 - fix name conflict with the getline function in POSIX 2008 --- z88dk-1.7-64bit.patch DELETED --- From kkofler at fedoraproject.org Tue Jul 21 03:25:59 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:25:59 +0000 (UTC) Subject: rpms/z88dk/devel z88dk.spec,1.19,1.20 Message-ID: <20090721032559.504F111C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/z88dk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10502/devel Modified Files: z88dk.spec Log Message: Mention BZ ID. Index: z88dk.spec =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/devel/z88dk.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- z88dk.spec 21 Jul 2009 03:19:15 -0000 1.19 +++ z88dk.spec 21 Jul 2009 03:25:28 -0000 1.20 @@ -81,7 +81,7 @@ export ZCCCFG=%{_datadir}/z88dk-%{versio %changelog * Tue Jul 21 2009 Kevin Kofler - 1.9-1 -- update to 1.9 +- update to 1.9 (#512391) - update 64bit patch (one issue fixed upstream, many left) * Fri Apr 10 2009 Kevin Kofler - 1.8-3 From kkofler at fedoraproject.org Tue Jul 21 03:31:28 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:31:28 +0000 (UTC) Subject: rpms/z88dk/F-11 z88dk-1.9-64bit.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 z88dk.spec, 1.18, 1.19 z88dk-1.7-64bit.patch, 1.1, NONE Message-ID: <20090721033128.AEAE511C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/z88dk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12727/F-11 Modified Files: .cvsignore sources z88dk.spec Added Files: z88dk-1.9-64bit.patch Removed Files: z88dk-1.7-64bit.patch Log Message: Sync from devel: * Tue Jul 21 2009 Kevin Kofler - 1.9-1 - update to 1.9 (#512391) - update 64bit patch (one issue fixed upstream, many left) z88dk-1.9-64bit.patch: copt/copt.c | 4 ++-- sccz80/io.c | 4 ++-- sccz80/io.h | 4 ++-- sccz80/primary.c | 4 ++-- z80asm/config.h | 7 +++++++ z80asm/modlink.c | 30 +++++++++++++++--------------- z80asm/symbol.h | 2 +- z80asm/z80asm.c | 2 +- z80asm/z80pass.c | 4 ++-- 9 files changed, 34 insertions(+), 27 deletions(-) --- NEW FILE z88dk-1.9-64bit.patch --- diff -ur z88dk/src/copt/copt.c z88dk-64bit/src/copt/copt.c --- z88dk/src/copt/copt.c 2002-09-15 19:10:07.000000000 +0200 +++ z88dk-64bit/src/copt/copt.c 2009-07-21 05:11:59.000000000 +0200 @@ -507,12 +507,12 @@ /* check for activation rules */ if (o->o_new && strcmp(o->o_new->l_text, "%activate\n") == 0) { /* we have to prevent repeated activation of rules */ - char signature[160]; + char signature[240]; struct lnode *lnp; struct onode *nn, *last; int skip = 0; /* since we 'install()' strings, we can compare pointers */ - sprintf(signature, "%s%08x%08x%08x%08x%08x%08x%08x%08x%08x%08x\n", + sprintf(signature, (sizeof(char*)>4)?"%s%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx\n":"%s%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx\n", activated, vars[0], vars[1], vars[2], vars[3], vars[4], vars[5], vars[6], vars[7], vars[8], vars[9]); diff -ur z88dk/src/sccz80/io.c z88dk-64bit/src/sccz80/io.c --- z88dk/src/sccz80/io.c 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.c 2009-07-21 05:11:59.000000000 +0200 @@ -334,7 +334,7 @@ } -void outdec(long number) +void outdec(int number) { if ( number < 0 ) { number=-number; @@ -344,7 +344,7 @@ outd2(number); } -void outd2(long n) +void outd2(int n) { if ( n > 9 ) { outd2(n/10) ; diff -ur z88dk/src/sccz80/io.h z88dk-64bit/src/sccz80/io.h --- z88dk/src/sccz80/io.h 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.h 2009-07-21 05:11:59.000000000 +0200 @@ -26,8 +26,8 @@ extern void ol(char *ptr); extern void ot(char *ptr); extern void blanks(void); -extern void outdec(long number); -extern void outd2(long n); +extern void outdec(int number); +extern void outd2(int n); extern void queuelabel(int); typedef struct { diff -ur z88dk/src/sccz80/primary.c z88dk-64bit/src/sccz80/primary.c --- z88dk/src/sccz80/primary.c 2007-07-05 20:39:00.000000000 +0200 +++ z88dk-64bit/src/sccz80/primary.c 2009-07-21 05:11:59.000000000 +0200 @@ -739,7 +739,7 @@ SYMBOL *ptr; char temp_type; int itag; - char nam[20]; + char nam[26]; @@ -794,7 +794,7 @@ * returning pointers - to do this, we will define dummy symbols in * the local symbol table so that they do what we want them to do! */ - sprintf(nam,"0dptr%d",(int)locptr); + sprintf(nam,"0dptr%lu",(unsigned long)locptr); temp_type = ( (lval->c_flags&FARPTR) ? CPTR : CINT ); itag=0; if ( lval->c_tag) diff -ur z88dk/src/z80asm/config.h z88dk-64bit/src/z80asm/config.h --- z88dk/src/z80asm/config.h 2007-06-24 18:41:41.000000000 +0200 +++ z88dk-64bit/src/z80asm/config.h 2009-07-21 05:11:59.000000000 +0200 @@ -64,6 +64,12 @@ #define MAXCODESIZE 65536 #endif +#ifdef __linux__ +#include +#if __BYTE_ORDER == __BIG_ENDIAN +#define ENDIAN 1 +#endif +#else /* Some clever config-ing if we're using GNUC */ #ifdef __BIG_ENDIAN__ /* Sadly the compiler on OS-X falls over with the #if below... */ @@ -75,3 +81,4 @@ #endif #endif /* __GNUC__ */ #endif +#endif diff -ur z88dk/src/z80asm/modlink.c z88dk-64bit/src/z80asm/modlink.c --- z88dk/src/z80asm/modlink.c 2002-11-05 12:45:56.000000000 +0100 +++ z88dk-64bit/src/z80asm/modlink.c 2009-07-21 05:11:59.000000000 +0200 @@ -106,11 +106,11 @@ int LinkLibModule (struct libfile *library, long curmodule, char *modname); int SearchLibfile (struct libfile *curlib, char *modname); char *ReadName (void); -long ReadLong (FILE * fileid); +int ReadLong (FILE * fileid); void redefinedmsg (void); void CreateLib (void); void SearchLibraries (char *modname); -void WriteLong (long fptr, FILE * fileid); +void WriteLong (int fptr, FILE * fileid); void LinkModules (void); void ModuleExpr (void); void CreateBinFile (void); @@ -160,7 +160,7 @@ ReadNames (long nextname, long endnames) { char scope, symtype; - long value; + int value; symbol *foundsymbol; do @@ -509,7 +509,7 @@ while (CURRENTMODULE != lastobjmodule->nextmodule); /* parse only object modules, not added library modules */ if (verbose == ON) - printf ("Code size of linked modules is %d bytes\n", CODESIZE); + printf ("Code size of linked modules is %lu bytes\n", (unsigned long) CODESIZE); if (ASMERROR == OFF) ModuleExpr (); /* Evaluate expressions in all modules */ @@ -531,7 +531,7 @@ int LinkModule (char *filename, long fptr_base) { - long fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; + int fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; size_t lowbyte, highbyte, size; int flag = 0; @@ -661,7 +661,7 @@ SearchLibfile (struct libfile *curlib, char *modname) { - long currentlibmodule, modulesize, fptr_mname; + int currentlibmodule, modulesize, fptr_mname; int flag; char *mname; @@ -755,8 +755,8 @@ void ModuleExpr (void) { - long fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; - long fptr_base; + int fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; + int fptr_base; struct linkedmod *curlink; if (verbose) @@ -837,7 +837,7 @@ *(reloctable + 3) = (unsigned short) sizeof_reloctable / 256U;/* total size of relocation table elements */ fwrite (reloctable, 1U, sizeof_reloctable + 4, binaryfile); /* write relocation table, inclusive 4 byte header */ - printf ("Relocation header is %d bytes.\n", sizeof_relocroutine + sizeof_reloctable + 4); + printf ("Relocation header is %lu bytes.\n", (unsigned long) (sizeof_relocroutine + sizeof_reloctable + 4)); fwrite (codearea, sizeof (char), CODESIZE, binaryfile); /* write code as one big chunk */ fclose (binaryfile); } @@ -880,9 +880,9 @@ void CreateLib (void) { - long Codesize; + int Codesize; FILE *objectfile = NULL; - long fptr; + int fptr; char *filebuffer, *fname; if (verbose) @@ -1035,13 +1035,13 @@ -long +int ReadLong (FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; - unsigned long c, fptr = 0; + unsigned int c, fptr = 0; for (i = 1; i <= 3; i++) { @@ -1052,7 +1052,7 @@ return fptr; #else /* low byte, high byte order... */ - long fptr = 0; + int fptr = 0; /* long is *at least* 4 bytes long, and we have to write exactly 4 bytes */ fread (&fptr, 4, 1, fileid); @@ -1063,7 +1063,7 @@ void -WriteLong (long fptr, FILE * fileid) +WriteLong (int fptr, FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; diff -ur z88dk/src/z80asm/symbol.h z88dk-64bit/src/z80asm/symbol.h --- z88dk/src/z80asm/symbol.h 2003-10-11 17:41:04.000000000 +0200 +++ z88dk-64bit/src/z80asm/symbol.h 2009-07-21 05:11:59.000000000 +0200 @@ -113,7 +113,7 @@ struct libfile { struct libfile *nextlib; /* pointer to next library file in list */ char *libfilename; /* filename of library (incl. extension) */ - long nextobjfile; /* file pointer to next object file in library */ + int nextobjfile; /* file pointer to next object file in library */ }; struct linklist { struct linkedmod *firstlink; /* pointer to first linked object module */ diff -ur z88dk/src/z80asm/z80asm.c z88dk-64bit/src/z80asm/z80asm.c --- z88dk/src/z80asm/z80asm.c 2009-06-23 00:12:53.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80asm.c 2009-07-21 05:11:59.000000000 +0200 @@ -834,7 +834,7 @@ } if (*flagid == 'r') { - sscanf (flagid + 1, "%x", &EXPLICIT_ORIGIN); + sscanf (flagid + 1, "%lx", &EXPLICIT_ORIGIN); deforigin = ON; /* explicit origin has been defined */ return; } diff -ur z88dk/src/z80asm/z80pass.c z88dk-64bit/src/z80asm/z80pass.c --- z88dk/src/z80asm/z80pass.c 2002-05-11 22:09:38.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80pass.c 2009-07-21 05:11:59.000000000 +0200 @@ -853,9 +853,9 @@ fprintf (listfile, "%*.*s", 122 - strlen (_prog_name) - strlen (_version) - strlen (_copyright) - 3, strlen (date), date); #else fprintf (listfile, "%s", copyrightmsg); - fprintf (listfile, "%*.*s", (int) 122 - strlen (copyrightmsg), (int) strlen (date), date); + fprintf (listfile, "%*.*s", (int) (122 - strlen (copyrightmsg)), (int) strlen (date), date); #endif - fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) 122 - 9 - 2 - strlen (lstfilename), "", lstfilename); + fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) (122 - 9 - 2 - strlen (lstfilename)), "", lstfilename); } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Mar 2008 23:13:46 -0000 1.4 +++ .cvsignore 21 Jul 2009 03:31:27 -0000 1.5 @@ -1 +1 @@ -z88dk-src-1.8.tgz +z88dk-src-1.9.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Mar 2008 23:13:46 -0000 1.4 +++ sources 21 Jul 2009 03:31:28 -0000 1.5 @@ -1 +1 @@ -f3a762cb6263430f76163e3e85fa1102 z88dk-src-1.8.tgz +405de32baa962e30b8951270f5a4799d z88dk-src-1.9.tgz Index: z88dk.spec =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-11/z88dk.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- z88dk.spec 10 Apr 2009 00:04:22 -0000 1.18 +++ z88dk.spec 21 Jul 2009 03:31:28 -0000 1.19 @@ -1,13 +1,13 @@ Summary: A Z80 cross compiler Name: z88dk -Version: 1.8 -Release: 3%{?dist} +Version: 1.9 +Release: 1%{?dist} License: Artistic clarified Group: Development/Tools Source: http://downloads.sourceforge.net/z88dk/z88dk-src-%{version}.tgz Patch0: z88dk-1.8-makefile-usr-share.patch Patch1: z88dk-1.8-makefile-fixes.patch -Patch2: z88dk-1.7-64bit.patch +Patch2: z88dk-1.9-64bit.patch Patch3: z88dk-1.8-getline-name-conflict.patch URL: http://z88dk.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -80,6 +80,10 @@ export ZCCCFG=%{_datadir}/z88dk-%{versio %{_mandir}/man3z/ %changelog +* Tue Jul 21 2009 Kevin Kofler - 1.9-1 +- update to 1.9 (#512391) +- update 64bit patch (one issue fixed upstream, many left) + * Fri Apr 10 2009 Kevin Kofler - 1.8-3 - fix name conflict with the getline function in POSIX 2008 --- z88dk-1.7-64bit.patch DELETED --- From kkofler at fedoraproject.org Tue Jul 21 03:32:43 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:32:43 +0000 (UTC) Subject: rpms/z88dk/F-10 z88dk-1.8-getline-name-conflict.patch, NONE, 1.1 z88dk-1.9-64bit.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 z88dk.spec, 1.16, 1.17 z88dk-1.7-64bit.patch, 1.1, NONE Message-ID: <20090721033243.DB1E911C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/z88dk/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12995/F-10 Modified Files: .cvsignore sources z88dk.spec Added Files: z88dk-1.8-getline-name-conflict.patch z88dk-1.9-64bit.patch Removed Files: z88dk-1.7-64bit.patch Log Message: Sync from devel: * Tue Jul 21 2009 Kevin Kofler - 1.9-1 - update to 1.9 (#512391) - update 64bit patch (one issue fixed upstream, many left) * Fri Apr 10 2009 Kevin Kofler - 1.8-3 - fix name conflict with the getline function in POSIX 2008 * Wed Feb 25 2009 Fedora Release Engineering - 1.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild z88dk-1.8-getline-name-conflict.patch: z80pass.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE z88dk-1.8-getline-name-conflict.patch --- diff -ur z88dk/src/z80asm/z80pass.c z88dk-1.8-getline-name-conflict/src/z80asm/z80pass.c --- z88dk/src/z80asm/z80pass.c 2002-05-11 22:09:38.000000000 +0200 +++ z88dk-1.8-getline-name-conflict/src/z80asm/z80pass.c 2009-04-10 02:01:28.000000000 +0200 @@ -94,7 +94,7 @@ /* local functions */ void ifstatement (enum flag interpret); void parseline (enum flag interpret); -void getline (void); +void getasmline (void); void Pass2info (struct expr *expression, char constrange, long lfileptr); void Z80pass1 (void); void Z80pass2 (void); @@ -165,7 +165,7 @@ void -getline (void) +getasmline (void) { long fptr; int l,c; @@ -198,7 +198,7 @@ ++CURRENTFILE->line; ++TOTALLINES; if (listing) - getline (); /* get a copy of current source line */ + getasmline (); /* get a copy of current source line */ EOL = OFF; /* reset END OF LINE flag */ GetSym (); z88dk-1.9-64bit.patch: copt/copt.c | 4 ++-- sccz80/io.c | 4 ++-- sccz80/io.h | 4 ++-- sccz80/primary.c | 4 ++-- z80asm/config.h | 7 +++++++ z80asm/modlink.c | 30 +++++++++++++++--------------- z80asm/symbol.h | 2 +- z80asm/z80asm.c | 2 +- z80asm/z80pass.c | 4 ++-- 9 files changed, 34 insertions(+), 27 deletions(-) --- NEW FILE z88dk-1.9-64bit.patch --- diff -ur z88dk/src/copt/copt.c z88dk-64bit/src/copt/copt.c --- z88dk/src/copt/copt.c 2002-09-15 19:10:07.000000000 +0200 +++ z88dk-64bit/src/copt/copt.c 2009-07-21 05:11:59.000000000 +0200 @@ -507,12 +507,12 @@ /* check for activation rules */ if (o->o_new && strcmp(o->o_new->l_text, "%activate\n") == 0) { /* we have to prevent repeated activation of rules */ - char signature[160]; + char signature[240]; struct lnode *lnp; struct onode *nn, *last; int skip = 0; /* since we 'install()' strings, we can compare pointers */ - sprintf(signature, "%s%08x%08x%08x%08x%08x%08x%08x%08x%08x%08x\n", + sprintf(signature, (sizeof(char*)>4)?"%s%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx%016lx\n":"%s%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx%08lx\n", activated, vars[0], vars[1], vars[2], vars[3], vars[4], vars[5], vars[6], vars[7], vars[8], vars[9]); diff -ur z88dk/src/sccz80/io.c z88dk-64bit/src/sccz80/io.c --- z88dk/src/sccz80/io.c 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.c 2009-07-21 05:11:59.000000000 +0200 @@ -334,7 +334,7 @@ } -void outdec(long number) +void outdec(int number) { if ( number < 0 ) { number=-number; @@ -344,7 +344,7 @@ outd2(number); } -void outd2(long n) +void outd2(int n) { if ( n > 9 ) { outd2(n/10) ; diff -ur z88dk/src/sccz80/io.h z88dk-64bit/src/sccz80/io.h --- z88dk/src/sccz80/io.h 2009-06-21 23:16:52.000000000 +0200 +++ z88dk-64bit/src/sccz80/io.h 2009-07-21 05:11:59.000000000 +0200 @@ -26,8 +26,8 @@ extern void ol(char *ptr); extern void ot(char *ptr); extern void blanks(void); -extern void outdec(long number); -extern void outd2(long n); +extern void outdec(int number); +extern void outd2(int n); extern void queuelabel(int); typedef struct { diff -ur z88dk/src/sccz80/primary.c z88dk-64bit/src/sccz80/primary.c --- z88dk/src/sccz80/primary.c 2007-07-05 20:39:00.000000000 +0200 +++ z88dk-64bit/src/sccz80/primary.c 2009-07-21 05:11:59.000000000 +0200 @@ -739,7 +739,7 @@ SYMBOL *ptr; char temp_type; int itag; - char nam[20]; + char nam[26]; @@ -794,7 +794,7 @@ * returning pointers - to do this, we will define dummy symbols in * the local symbol table so that they do what we want them to do! */ - sprintf(nam,"0dptr%d",(int)locptr); + sprintf(nam,"0dptr%lu",(unsigned long)locptr); temp_type = ( (lval->c_flags&FARPTR) ? CPTR : CINT ); itag=0; if ( lval->c_tag) diff -ur z88dk/src/z80asm/config.h z88dk-64bit/src/z80asm/config.h --- z88dk/src/z80asm/config.h 2007-06-24 18:41:41.000000000 +0200 +++ z88dk-64bit/src/z80asm/config.h 2009-07-21 05:11:59.000000000 +0200 @@ -64,6 +64,12 @@ #define MAXCODESIZE 65536 #endif +#ifdef __linux__ +#include +#if __BYTE_ORDER == __BIG_ENDIAN +#define ENDIAN 1 +#endif +#else /* Some clever config-ing if we're using GNUC */ #ifdef __BIG_ENDIAN__ /* Sadly the compiler on OS-X falls over with the #if below... */ @@ -75,3 +81,4 @@ #endif #endif /* __GNUC__ */ #endif +#endif diff -ur z88dk/src/z80asm/modlink.c z88dk-64bit/src/z80asm/modlink.c --- z88dk/src/z80asm/modlink.c 2002-11-05 12:45:56.000000000 +0100 +++ z88dk-64bit/src/z80asm/modlink.c 2009-07-21 05:11:59.000000000 +0200 @@ -106,11 +106,11 @@ int LinkLibModule (struct libfile *library, long curmodule, char *modname); int SearchLibfile (struct libfile *curlib, char *modname); char *ReadName (void); -long ReadLong (FILE * fileid); +int ReadLong (FILE * fileid); void redefinedmsg (void); void CreateLib (void); void SearchLibraries (char *modname); -void WriteLong (long fptr, FILE * fileid); +void WriteLong (int fptr, FILE * fileid); void LinkModules (void); void ModuleExpr (void); void CreateBinFile (void); @@ -160,7 +160,7 @@ ReadNames (long nextname, long endnames) { char scope, symtype; - long value; + int value; symbol *foundsymbol; do @@ -509,7 +509,7 @@ while (CURRENTMODULE != lastobjmodule->nextmodule); /* parse only object modules, not added library modules */ if (verbose == ON) - printf ("Code size of linked modules is %d bytes\n", CODESIZE); + printf ("Code size of linked modules is %lu bytes\n", (unsigned long) CODESIZE); if (ASMERROR == OFF) ModuleExpr (); /* Evaluate expressions in all modules */ @@ -531,7 +531,7 @@ int LinkModule (char *filename, long fptr_base) { - long fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; + int fptr_namedecl, fptr_modname, fptr_modcode, fptr_libnmdecl; size_t lowbyte, highbyte, size; int flag = 0; @@ -661,7 +661,7 @@ SearchLibfile (struct libfile *curlib, char *modname) { - long currentlibmodule, modulesize, fptr_mname; + int currentlibmodule, modulesize, fptr_mname; int flag; char *mname; @@ -755,8 +755,8 @@ void ModuleExpr (void) { - long fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; - long fptr_base; + int fptr_namedecl, fptr_modname, fptr_exprdecl, fptr_libnmdecl; + int fptr_base; struct linkedmod *curlink; if (verbose) @@ -837,7 +837,7 @@ *(reloctable + 3) = (unsigned short) sizeof_reloctable / 256U;/* total size of relocation table elements */ fwrite (reloctable, 1U, sizeof_reloctable + 4, binaryfile); /* write relocation table, inclusive 4 byte header */ - printf ("Relocation header is %d bytes.\n", sizeof_relocroutine + sizeof_reloctable + 4); + printf ("Relocation header is %lu bytes.\n", (unsigned long) (sizeof_relocroutine + sizeof_reloctable + 4)); fwrite (codearea, sizeof (char), CODESIZE, binaryfile); /* write code as one big chunk */ fclose (binaryfile); } @@ -880,9 +880,9 @@ void CreateLib (void) { - long Codesize; + int Codesize; FILE *objectfile = NULL; - long fptr; + int fptr; char *filebuffer, *fname; if (verbose) @@ -1035,13 +1035,13 @@ -long +int ReadLong (FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; - unsigned long c, fptr = 0; + unsigned int c, fptr = 0; for (i = 1; i <= 3; i++) { @@ -1052,7 +1052,7 @@ return fptr; #else /* low byte, high byte order... */ - long fptr = 0; + int fptr = 0; /* long is *at least* 4 bytes long, and we have to write exactly 4 bytes */ fread (&fptr, 4, 1, fileid); @@ -1063,7 +1063,7 @@ void -WriteLong (long fptr, FILE * fileid) +WriteLong (int fptr, FILE * fileid) { #ifdef ENDIAN /* high byte, low byte order... */ int i; diff -ur z88dk/src/z80asm/symbol.h z88dk-64bit/src/z80asm/symbol.h --- z88dk/src/z80asm/symbol.h 2003-10-11 17:41:04.000000000 +0200 +++ z88dk-64bit/src/z80asm/symbol.h 2009-07-21 05:11:59.000000000 +0200 @@ -113,7 +113,7 @@ struct libfile { struct libfile *nextlib; /* pointer to next library file in list */ char *libfilename; /* filename of library (incl. extension) */ - long nextobjfile; /* file pointer to next object file in library */ + int nextobjfile; /* file pointer to next object file in library */ }; struct linklist { struct linkedmod *firstlink; /* pointer to first linked object module */ diff -ur z88dk/src/z80asm/z80asm.c z88dk-64bit/src/z80asm/z80asm.c --- z88dk/src/z80asm/z80asm.c 2009-06-23 00:12:53.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80asm.c 2009-07-21 05:11:59.000000000 +0200 @@ -834,7 +834,7 @@ } if (*flagid == 'r') { - sscanf (flagid + 1, "%x", &EXPLICIT_ORIGIN); + sscanf (flagid + 1, "%lx", &EXPLICIT_ORIGIN); deforigin = ON; /* explicit origin has been defined */ return; } diff -ur z88dk/src/z80asm/z80pass.c z88dk-64bit/src/z80asm/z80pass.c --- z88dk/src/z80asm/z80pass.c 2002-05-11 22:09:38.000000000 +0200 +++ z88dk-64bit/src/z80asm/z80pass.c 2009-07-21 05:11:59.000000000 +0200 @@ -853,9 +853,9 @@ fprintf (listfile, "%*.*s", 122 - strlen (_prog_name) - strlen (_version) - strlen (_copyright) - 3, strlen (date), date); #else fprintf (listfile, "%s", copyrightmsg); - fprintf (listfile, "%*.*s", (int) 122 - strlen (copyrightmsg), (int) strlen (date), date); + fprintf (listfile, "%*.*s", (int) (122 - strlen (copyrightmsg)), (int) strlen (date), date); #endif - fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) 122 - 9 - 2 - strlen (lstfilename), "", lstfilename); + fprintf (listfile, "Page %03d%*s'%s'\n\n\n", ++PAGENR, (int) (122 - 9 - 2 - strlen (lstfilename)), "", lstfilename); } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Mar 2008 23:13:46 -0000 1.4 +++ .cvsignore 21 Jul 2009 03:32:13 -0000 1.5 @@ -1 +1 @@ -z88dk-src-1.8.tgz +z88dk-src-1.9.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Mar 2008 23:13:46 -0000 1.4 +++ sources 21 Jul 2009 03:32:13 -0000 1.5 @@ -1 +1 @@ -f3a762cb6263430f76163e3e85fa1102 z88dk-src-1.8.tgz +405de32baa962e30b8951270f5a4799d z88dk-src-1.9.tgz Index: z88dk.spec =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/F-10/z88dk.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- z88dk.spec 11 Mar 2008 00:30:03 -0000 1.16 +++ z88dk.spec 21 Jul 2009 03:32:13 -0000 1.17 @@ -1,13 +1,14 @@ Summary: A Z80 cross compiler Name: z88dk -Version: 1.8 +Version: 1.9 Release: 1%{?dist} License: Artistic clarified Group: Development/Tools Source: http://downloads.sourceforge.net/z88dk/z88dk-src-%{version}.tgz Patch0: z88dk-1.8-makefile-usr-share.patch Patch1: z88dk-1.8-makefile-fixes.patch -Patch2: z88dk-1.7-64bit.patch +Patch2: z88dk-1.9-64bit.patch +Patch3: z88dk-1.8-getline-name-conflict.patch URL: http://z88dk.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -25,6 +26,8 @@ calculators). %patch1 -p1 # 64-bit fixes %patch2 -p1 +# Fix name conflict with the getline function in POSIX 2008 +%patch3 -p1 %{_bindir}/find . -depth -name CVS -type d -exec %{__rm} -rf {} \; # Separate manpages from other docs and fix their permissions %{__mv} doc/netman . @@ -77,6 +80,16 @@ export ZCCCFG=%{_datadir}/z88dk-%{versio %{_mandir}/man3z/ %changelog +* Tue Jul 21 2009 Kevin Kofler - 1.9-1 +- update to 1.9 (#512391) +- update 64bit patch (one issue fixed upstream, many left) + +* Fri Apr 10 2009 Kevin Kofler - 1.8-3 +- fix name conflict with the getline function in POSIX 2008 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Mar 10 2008 Kevin Kofler - 1.8-1 - update to 1.8 - update makefile-fixes patch (most issues fixed upstream, only one left) --- z88dk-1.7-64bit.patch DELETED --- From kkofler at fedoraproject.org Tue Jul 21 03:36:55 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:36:55 +0000 (UTC) Subject: rpms/mingw32-nsis/devel .cvsignore, 1.3, 1.4 mingw32-nsis.spec, 1.9, 1.10 sources, 1.3, 1.4 Message-ID: <20090721033655.9145D11C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/mingw32-nsis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14417/devel Modified Files: .cvsignore mingw32-nsis.spec sources Log Message: * Tue Jul 21 2009 Kevin Kofler - 2.45-1 - Update to 2.45 (#512429) * Tue Jun 30 2009 Stu Tomlinson - 2.44-2 - Re-enable System.dll plugin, inline Microsoft assembler code was replaced in 2.42 (#509234) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Mar 2009 23:50:08 -0000 1.3 +++ .cvsignore 21 Jul 2009 03:36:24 -0000 1.4 @@ -1 +1 @@ -nsis-2.44-src.tar.bz2 +nsis-2.45-src.tar.bz2 Index: mingw32-nsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/devel/mingw32-nsis.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mingw32-nsis.spec 14 Mar 2009 23:51:15 -0000 1.9 +++ mingw32-nsis.spec 21 Jul 2009 03:36:25 -0000 1.10 @@ -1,8 +1,8 @@ -%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPPLUGINS=System SKIPUTILS='NSIS Menu' STRIP_CP=false +%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPUTILS='NSIS Menu' STRIP_CP=false %define _default_patch_fuzz 2 Name: mingw32-nsis -Version: 2.44 +Version: 2.45 Release: 1%{?dist} Summary: Nullsoft Scriptable Install System @@ -50,9 +50,7 @@ NSIS, the Nullsoft Scriptable Install Sy Windows installation system. This package includes native Fedora binaries of makensis (etc.) and -all plugins except for System.dll. The System.dll plugin cannot be -built natively at this time since it includes inline Microsoft -assembler code. +all plugins. %prep @@ -89,6 +87,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Kevin Kofler - 2.45-1 +- Update to 2.45 (#512429) + +* Tue Jun 30 2009 Stu Tomlinson - 2.44-2 +- Re-enable System.dll plugin, inline Microsoft assembler code was + replaced in 2.42 (#509234) + * Sat Mar 14 2009 Kevin Kofler - 2.44-1 - Update to 2.44 (#488522) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Mar 2009 23:50:08 -0000 1.3 +++ sources 21 Jul 2009 03:36:25 -0000 1.4 @@ -1 +1 @@ -b7f508d5e66ea6730f15702dd793237b nsis-2.44-src.tar.bz2 +91a167a19c75f8dd52654e4cdc2ae0d4 nsis-2.45-src.tar.bz2 From kkofler at fedoraproject.org Tue Jul 21 03:48:46 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:48:46 +0000 (UTC) Subject: rpms/mingw32-nsis/F-11 .cvsignore, 1.3, 1.4 mingw32-nsis.spec, 1.9, 1.10 sources, 1.3, 1.4 Message-ID: <20090721034846.DF4A311C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/mingw32-nsis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18676/F-11 Modified Files: .cvsignore mingw32-nsis.spec sources Log Message: Sync from devel: * Tue Jul 21 2009 Kevin Kofler - 2.45-1 - Update to 2.45 (#512429) * Tue Jun 30 2009 Stu Tomlinson - 2.44-2 - Re-enable System.dll plugin, inline Microsoft assembler code was replaced in 2.42 (#509234) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Mar 2009 23:50:08 -0000 1.3 +++ .cvsignore 21 Jul 2009 03:48:16 -0000 1.4 @@ -1 +1 @@ -nsis-2.44-src.tar.bz2 +nsis-2.45-src.tar.bz2 Index: mingw32-nsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-11/mingw32-nsis.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mingw32-nsis.spec 14 Mar 2009 23:51:15 -0000 1.9 +++ mingw32-nsis.spec 21 Jul 2009 03:48:16 -0000 1.10 @@ -1,8 +1,8 @@ -%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPPLUGINS=System SKIPUTILS='NSIS Menu' STRIP_CP=false +%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPUTILS='NSIS Menu' STRIP_CP=false %define _default_patch_fuzz 2 Name: mingw32-nsis -Version: 2.44 +Version: 2.45 Release: 1%{?dist} Summary: Nullsoft Scriptable Install System @@ -50,9 +50,7 @@ NSIS, the Nullsoft Scriptable Install Sy Windows installation system. This package includes native Fedora binaries of makensis (etc.) and -all plugins except for System.dll. The System.dll plugin cannot be -built natively at this time since it includes inline Microsoft -assembler code. +all plugins. %prep @@ -89,6 +87,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Kevin Kofler - 2.45-1 +- Update to 2.45 (#512429) + +* Tue Jun 30 2009 Stu Tomlinson - 2.44-2 +- Re-enable System.dll plugin, inline Microsoft assembler code was + replaced in 2.42 (#509234) + * Sat Mar 14 2009 Kevin Kofler - 2.44-1 - Update to 2.44 (#488522) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Mar 2009 23:50:08 -0000 1.3 +++ sources 21 Jul 2009 03:48:16 -0000 1.4 @@ -1 +1 @@ -b7f508d5e66ea6730f15702dd793237b nsis-2.44-src.tar.bz2 +91a167a19c75f8dd52654e4cdc2ae0d4 nsis-2.45-src.tar.bz2 From kkofler at fedoraproject.org Tue Jul 21 03:48:46 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Tue, 21 Jul 2009 03:48:46 +0000 (UTC) Subject: rpms/mingw32-nsis/F-10 .cvsignore, 1.3, 1.4 mingw32-nsis.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090721034846.9FCC211C00D6@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/mingw32-nsis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18676/F-10 Modified Files: .cvsignore mingw32-nsis.spec sources Log Message: Sync from devel: * Tue Jul 21 2009 Kevin Kofler - 2.45-1 - Update to 2.45 (#512429) * Tue Jun 30 2009 Stu Tomlinson - 2.44-2 - Re-enable System.dll plugin, inline Microsoft assembler code was replaced in 2.42 (#509234) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 14 Mar 2009 23:55:05 -0000 1.3 +++ .cvsignore 21 Jul 2009 03:48:15 -0000 1.4 @@ -1 +1 @@ -nsis-2.44-src.tar.bz2 +nsis-2.45-src.tar.bz2 Index: mingw32-nsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-10/mingw32-nsis.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-nsis.spec 14 Mar 2009 23:55:05 -0000 1.5 +++ mingw32-nsis.spec 21 Jul 2009 03:48:16 -0000 1.6 @@ -1,8 +1,8 @@ -%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPPLUGINS=System SKIPUTILS='NSIS Menu' STRIP_CP=false +%define sconsopts VERSION=%{version} PREFIX=%{_prefix} PREFIX_CONF=%{_sysconfdir} SKIPUTILS='NSIS Menu' STRIP_CP=false %define _default_patch_fuzz 2 Name: mingw32-nsis -Version: 2.44 +Version: 2.45 Release: 1%{?dist} Summary: Nullsoft Scriptable Install System @@ -50,9 +50,7 @@ NSIS, the Nullsoft Scriptable Install Sy Windows installation system. This package includes native Fedora binaries of makensis (etc.) and -all plugins except for System.dll. The System.dll plugin cannot be -built natively at this time since it includes inline Microsoft -assembler code. +all plugins. %prep @@ -89,6 +87,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Kevin Kofler - 2.45-1 +- Update to 2.45 (#512429) + +* Tue Jun 30 2009 Stu Tomlinson - 2.44-2 +- Re-enable System.dll plugin, inline Microsoft assembler code was + replaced in 2.42 (#509234) + * Sat Mar 14 2009 Kevin Kofler - 2.44-1 - Update to 2.44 (#488522) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 14 Mar 2009 23:55:05 -0000 1.3 +++ sources 21 Jul 2009 03:48:16 -0000 1.4 @@ -1 +1 @@ -b7f508d5e66ea6730f15702dd793237b nsis-2.44-src.tar.bz2 +91a167a19c75f8dd52654e4cdc2ae0d4 nsis-2.45-src.tar.bz2 From gavin at fedoraproject.org Tue Jul 21 04:12:25 2009 From: gavin at fedoraproject.org (Gavin Romig-Koch) Date: Tue, 21 Jul 2009 04:12:25 +0000 (UTC) Subject: rpms/squeak-vm/devel squeak-vm-dprintf.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 squeak-vm.spec, 1.2, 1.3 Message-ID: <20090721041225.13EFB11C005E@cvs1.fedora.phx.redhat.com> Author: gavin Update of /cvs/pkgs/rpms/squeak-vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13966 Modified Files: .cvsignore sources squeak-vm.spec Added Files: squeak-vm-dprintf.patch Log Message: - upgrade to new upstream - work around dprintf problem - UUID lib now in libuuid-devel (moved from e2fsprogs-devel) squeak-vm-dprintf.patch: plugins/MIDIPlugin/sqUnixMIDIALSA.inc | 22 ++++++++++++---------- vm-display-fbdev/sqUnixFBDev.c | 13 ++++--------- vm-display-fbdev/sqUnixFBDevFramebuffer.c | 2 +- vm/debug.c | 3 ++- 4 files changed, 19 insertions(+), 21 deletions(-) --- NEW FILE squeak-vm-dprintf.patch --- diff -up Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc.dprintf Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc --- Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc.dprintf 2007-03-11 19:56:13.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc 2009-07-20 22:44:53.000000000 -0400 @@ -33,6 +33,8 @@ * Last edited: 2007-03-11 14:17:34 by piumarta on emilia.local */ +#include "debug.h" + /*** MIDI Parameters (used with sqMIDIParameter function) ***/ /* TODO: Why is this not in Cross/plugins/MIDIPlugin/MIDIPlugin.h ??? */ @@ -184,7 +186,7 @@ int sqMIDIClosePort(int portNum) */ int sqMIDIGetClock(void) { - dprintf("sqMIDIGetClock\n"); + dprintf(("sqMIDIGetClock\n")); success(false); return 0; } @@ -196,7 +198,7 @@ int sqMIDIGetClock(void) */ int sqMIDIGetPortCount(void) { - dprintf("sqMIDIGetPortCount\n"); + dprintf(("sqMIDIGetPortCount\n")); success(true); return 1; } @@ -244,7 +246,7 @@ int sqMIDIGetPortName(int portNum, int n */ int sqMIDIOpenPort(int portNum, int readSemaIndex, int interfaceClockRate) { - dprintf("sqMIDIOpenPort(%d, %d, %d)\n", portNum, readSemaIndex, interfaceClockRate); + dprintf(("sqMIDIOpenPort(%d, %d, %d)\n", portNum, readSemaIndex, interfaceClockRate)); int type= SND_SEQ_PORT_TYPE_APPLICATION; switch (portNum) @@ -406,7 +408,7 @@ int sqMIDIParameter(int whichParameter, */ int sqMIDIPortReadInto(int portNum, int count, int bufferPtr) { - dprintf("sqMIDIPortRead\n"); + dprintf(("sqMIDIPortRead\n")); success(false); return 0; } @@ -426,9 +428,9 @@ int sqMIDIPortWriteFromAt(int portNum, i snd_seq_event_t ev; unsigned char *bytePtr= (unsigned char *)bufferPtr; - dprintf("Port %d Write:", portNum); - for (i= 0; i < count; ++i) dprintf(" %d", (int)bytePtr[i]); - dprintf(" at %d\n", time); + dprintf(("Port %d Write:", portNum)); + for (i= 0; i < count; ++i) dprintf((" %d", (int)bytePtr[i])); + dprintf((" at %d\n", time)); snd_seq_ev_clear(&ev); snd_seq_ev_set_source(&ev, out_port); @@ -483,7 +485,7 @@ int sqMIDIParameterGet(int whichParamete int midiShutdown(void) { - dprintf("midiShutdown\n"); + dprintf(("midiShutdown\n")); success(false); return 0; } @@ -496,12 +498,12 @@ static void performMIDICmd(snd_seq_event switch (cmd) { case 128: /* note off */ - dprintf("Note off %d, %d\n", ch, arg1); + dprintf(("Note off %d, %d\n", ch, arg1)); snd_seq_ev_set_noteoff(ev, ch, arg1, 0); break; case 144: /* note on */ - dprintf("Note on %d, %d, %d\n", ch, arg1, arg2); + dprintf(("Note on %d, %d, %d\n", ch, arg1, arg2)); snd_seq_ev_set_noteon(ev, ch, arg1, arg2); break; diff -up Squeak-3.10-5/platforms/unix/vm/debug.c.dprintf Squeak-3.10-5/platforms/unix/vm/debug.c --- Squeak-3.10-5/platforms/unix/vm/debug.c.dprintf 2006-09-14 13:52:28.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm/debug.c 2009-07-20 22:45:00.000000000 -0400 @@ -1,9 +1,10 @@ -#include "debug.h" #include #include #include +#include "debug.h" + void __sq_dprintf(const char *fmt, ...) { va_list ap; diff -up Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c.dprintf Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c --- Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c.dprintf 2009-04-29 12:32:52.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c 2009-07-20 22:45:05.000000000 -0400 @@ -67,16 +67,11 @@ # define DEBUG 0 #endif - -static void dprintf(const char *fmt, ...) -{ -#if (DEBUG) - va_list ap; - va_start(ap, fmt); - vprintf(fmt, ap); - va_end(ap); +#ifdef DEBUG +# define dprintf printf +#else + static void dprintf(char *fmt, ...) {} #endif -} static void fatalError(const char *who) { diff -up Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c.dprintf Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c --- Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c.dprintf 2006-10-18 13:03:56.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c 2009-07-20 22:45:11.000000000 -0400 @@ -508,7 +508,7 @@ static void fb_initVisual(_self) self->size= fb_height(self) * self->fix.line_length; self->pitch= self->fix.line_length / self->var.bits_per_pixel * 8; - dprintf("%s: %dx%dx%d+%x+%x (%dx%d) %s, rgb %d+%d %d+%d %d+%d pitch %d(%d)\n", self->fbName, + dprintf("%s: %dx%dx%d+%x+%x (%dx%d) %s, rgb %d+%d %d+%d %d+%d pitch %d(%ld)\n", self->fbName, self->var.xres, self->var.yres, self->var.bits_per_pixel, self->var.xoffset, self->var.yoffset, self->var.xres_virtual, self->var.yres_virtual, visualName(self), Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 21 Feb 2009 01:49:29 -0000 1.2 +++ .cvsignore 21 Jul 2009 04:12:24 -0000 1.3 @@ -1,2 +1,2 @@ -Squeak-3.10-4.src.tar.gz +Squeak-3.10-5.src.tar.gz squeak-desktop-files.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Feb 2009 01:49:29 -0000 1.2 +++ sources 21 Jul 2009 04:12:24 -0000 1.3 @@ -1,2 +1,2 @@ -bd8c32860d7e80540a497149a387a898 Squeak-3.10-4.src.tar.gz +27d56539f051b19c73517cad72dd217d Squeak-3.10-5.src.tar.gz 9cdcd2067b498c217f1a1131dc1356a3 squeak-desktop-files.tar.gz Index: squeak-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/devel/squeak-vm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- squeak-vm.spec 26 Feb 2009 02:40:59 -0000 1.2 +++ squeak-vm.spec 21 Jul 2009 04:12:24 -0000 1.3 @@ -1,11 +1,11 @@ %define major 3.10 -%define minor 4 +%define minor 5 %define vmver %{major}-%{minor} %define source Squeak-%{vmver} Name: squeak-vm Version: %{major}.%{minor} -Release: 4%{?dist} +Release: 1%{?dist} Summary: The Squeak virtual machine Group: Development/Languages @@ -17,6 +17,7 @@ Patch0: squeak-vm-rpath.patch Patch1: squeak-vm-install-inisqueak.patch Patch2: squeak-vm-imgdir.patch Patch3: squeak-vm-tail-options.patch +Patch4: squeak-vm-dprintf.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(post): shared-mime-info @@ -37,7 +38,7 @@ BuildRequires: mesa-libGL-devel BuildRequires: libICE-devel BuildRequires: libSM-devel BuildRequires: libXext-devel -BuildRequires: e2fsprogs-devel +BuildRequires: libuuid-devel # # define nonXOplugins to be non-zero if you would like the plugins that @@ -85,6 +86,7 @@ find platforms -name '*.[ch]' -exec chmo %patch1 -p1 -b .install-inisqueak %patch2 -p1 -b .imgdir %patch3 -p1 -b .tail-options +%patch4 -p1 -b .dprintf %build mkdir -p bld @@ -160,7 +162,6 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch i686 %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif @@ -181,6 +182,7 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/Squeak3D %{_libdir}/squeak/%{vmver}/UUIDPlugin %{_libdir}/squeak/%{vmver}/VideoForLinuxPlugin +%{_libdir}/squeak/%{vmver}/HostWindowPlugin %{_libdir}/squeak/%{vmver}/SqueakV3.sources %{_libdir}/squeak/%{vmver}/SqueakV39.sources @@ -210,13 +212,16 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch %{ix86} ppc %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif %endif %changelog +* Mon Jul 20 2009 Gavin Romig-Koch - 3.10.5-1 + - upgrade to new upstream + - work around dprintf problem + - UUID lib now in libuuid-devel (moved from e2fsprogs-devel) * Wed Feb 25 2009 Fedora Release Engineering - 3.10.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From gavin at fedoraproject.org Tue Jul 21 04:20:21 2009 From: gavin at fedoraproject.org (Gavin Romig-Koch) Date: Tue, 21 Jul 2009 04:20:21 +0000 (UTC) Subject: rpms/squeak-vm/F-11 squeak-vm-dprintf.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 squeak-vm.spec, 1.2, 1.3 Message-ID: <20090721042021.A734E11C049E@cvs1.fedora.phx.redhat.com> Author: gavin Update of /cvs/pkgs/rpms/squeak-vm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16732 Modified Files: .cvsignore sources squeak-vm.spec Added Files: squeak-vm-dprintf.patch Log Message: - upgrade to new upstream - work around dprintf problem squeak-vm-dprintf.patch: plugins/MIDIPlugin/sqUnixMIDIALSA.inc | 22 ++++++++++++---------- vm-display-fbdev/sqUnixFBDev.c | 13 ++++--------- vm-display-fbdev/sqUnixFBDevFramebuffer.c | 2 +- vm/debug.c | 3 ++- 4 files changed, 19 insertions(+), 21 deletions(-) --- NEW FILE squeak-vm-dprintf.patch --- diff -up Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc.dprintf Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc --- Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc.dprintf 2007-03-11 19:56:13.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/plugins/MIDIPlugin/sqUnixMIDIALSA.inc 2009-07-20 22:44:53.000000000 -0400 @@ -33,6 +33,8 @@ * Last edited: 2007-03-11 14:17:34 by piumarta on emilia.local */ +#include "debug.h" + /*** MIDI Parameters (used with sqMIDIParameter function) ***/ /* TODO: Why is this not in Cross/plugins/MIDIPlugin/MIDIPlugin.h ??? */ @@ -184,7 +186,7 @@ int sqMIDIClosePort(int portNum) */ int sqMIDIGetClock(void) { - dprintf("sqMIDIGetClock\n"); + dprintf(("sqMIDIGetClock\n")); success(false); return 0; } @@ -196,7 +198,7 @@ int sqMIDIGetClock(void) */ int sqMIDIGetPortCount(void) { - dprintf("sqMIDIGetPortCount\n"); + dprintf(("sqMIDIGetPortCount\n")); success(true); return 1; } @@ -244,7 +246,7 @@ int sqMIDIGetPortName(int portNum, int n */ int sqMIDIOpenPort(int portNum, int readSemaIndex, int interfaceClockRate) { - dprintf("sqMIDIOpenPort(%d, %d, %d)\n", portNum, readSemaIndex, interfaceClockRate); + dprintf(("sqMIDIOpenPort(%d, %d, %d)\n", portNum, readSemaIndex, interfaceClockRate)); int type= SND_SEQ_PORT_TYPE_APPLICATION; switch (portNum) @@ -406,7 +408,7 @@ int sqMIDIParameter(int whichParameter, */ int sqMIDIPortReadInto(int portNum, int count, int bufferPtr) { - dprintf("sqMIDIPortRead\n"); + dprintf(("sqMIDIPortRead\n")); success(false); return 0; } @@ -426,9 +428,9 @@ int sqMIDIPortWriteFromAt(int portNum, i snd_seq_event_t ev; unsigned char *bytePtr= (unsigned char *)bufferPtr; - dprintf("Port %d Write:", portNum); - for (i= 0; i < count; ++i) dprintf(" %d", (int)bytePtr[i]); - dprintf(" at %d\n", time); + dprintf(("Port %d Write:", portNum)); + for (i= 0; i < count; ++i) dprintf((" %d", (int)bytePtr[i])); + dprintf((" at %d\n", time)); snd_seq_ev_clear(&ev); snd_seq_ev_set_source(&ev, out_port); @@ -483,7 +485,7 @@ int sqMIDIParameterGet(int whichParamete int midiShutdown(void) { - dprintf("midiShutdown\n"); + dprintf(("midiShutdown\n")); success(false); return 0; } @@ -496,12 +498,12 @@ static void performMIDICmd(snd_seq_event switch (cmd) { case 128: /* note off */ - dprintf("Note off %d, %d\n", ch, arg1); + dprintf(("Note off %d, %d\n", ch, arg1)); snd_seq_ev_set_noteoff(ev, ch, arg1, 0); break; case 144: /* note on */ - dprintf("Note on %d, %d, %d\n", ch, arg1, arg2); + dprintf(("Note on %d, %d, %d\n", ch, arg1, arg2)); snd_seq_ev_set_noteon(ev, ch, arg1, arg2); break; diff -up Squeak-3.10-5/platforms/unix/vm/debug.c.dprintf Squeak-3.10-5/platforms/unix/vm/debug.c --- Squeak-3.10-5/platforms/unix/vm/debug.c.dprintf 2006-09-14 13:52:28.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm/debug.c 2009-07-20 22:45:00.000000000 -0400 @@ -1,9 +1,10 @@ -#include "debug.h" #include #include #include +#include "debug.h" + void __sq_dprintf(const char *fmt, ...) { va_list ap; diff -up Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c.dprintf Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c --- Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c.dprintf 2009-04-29 12:32:52.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDev.c 2009-07-20 22:45:05.000000000 -0400 @@ -67,16 +67,11 @@ # define DEBUG 0 #endif - -static void dprintf(const char *fmt, ...) -{ -#if (DEBUG) - va_list ap; - va_start(ap, fmt); - vprintf(fmt, ap); - va_end(ap); +#ifdef DEBUG +# define dprintf printf +#else + static void dprintf(char *fmt, ...) {} #endif -} static void fatalError(const char *who) { diff -up Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c.dprintf Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c --- Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c.dprintf 2006-10-18 13:03:56.000000000 -0400 +++ Squeak-3.10-5/platforms/unix/vm-display-fbdev/sqUnixFBDevFramebuffer.c 2009-07-20 22:45:11.000000000 -0400 @@ -508,7 +508,7 @@ static void fb_initVisual(_self) self->size= fb_height(self) * self->fix.line_length; self->pitch= self->fix.line_length / self->var.bits_per_pixel * 8; - dprintf("%s: %dx%dx%d+%x+%x (%dx%d) %s, rgb %d+%d %d+%d %d+%d pitch %d(%d)\n", self->fbName, + dprintf("%s: %dx%dx%d+%x+%x (%dx%d) %s, rgb %d+%d %d+%d %d+%d pitch %d(%ld)\n", self->fbName, self->var.xres, self->var.yres, self->var.bits_per_pixel, self->var.xoffset, self->var.yoffset, self->var.xres_virtual, self->var.yres_virtual, visualName(self), Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 21 Feb 2009 01:49:29 -0000 1.2 +++ .cvsignore 21 Jul 2009 04:20:21 -0000 1.3 @@ -1,2 +1,2 @@ -Squeak-3.10-4.src.tar.gz +Squeak-3.10-5.src.tar.gz squeak-desktop-files.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Feb 2009 01:49:29 -0000 1.2 +++ sources 21 Jul 2009 04:20:21 -0000 1.3 @@ -1,2 +1,2 @@ -bd8c32860d7e80540a497149a387a898 Squeak-3.10-4.src.tar.gz +27d56539f051b19c73517cad72dd217d Squeak-3.10-5.src.tar.gz 9cdcd2067b498c217f1a1131dc1356a3 squeak-desktop-files.tar.gz Index: squeak-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-11/squeak-vm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- squeak-vm.spec 26 Feb 2009 02:40:59 -0000 1.2 +++ squeak-vm.spec 21 Jul 2009 04:20:21 -0000 1.3 @@ -1,11 +1,11 @@ %define major 3.10 -%define minor 4 +%define minor 5 %define vmver %{major}-%{minor} %define source Squeak-%{vmver} Name: squeak-vm Version: %{major}.%{minor} -Release: 4%{?dist} +Release: 1%{?dist} Summary: The Squeak virtual machine Group: Development/Languages @@ -17,6 +17,7 @@ Patch0: squeak-vm-rpath.patch Patch1: squeak-vm-install-inisqueak.patch Patch2: squeak-vm-imgdir.patch Patch3: squeak-vm-tail-options.patch +Patch4: squeak-vm-dprintf.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(post): shared-mime-info @@ -85,6 +86,7 @@ find platforms -name '*.[ch]' -exec chmo %patch1 -p1 -b .install-inisqueak %patch2 -p1 -b .imgdir %patch3 -p1 -b .tail-options +%patch4 -p1 -b .dprintf %build mkdir -p bld @@ -160,7 +162,6 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch i686 %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif @@ -181,6 +182,7 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/Squeak3D %{_libdir}/squeak/%{vmver}/UUIDPlugin %{_libdir}/squeak/%{vmver}/VideoForLinuxPlugin +%{_libdir}/squeak/%{vmver}/HostWindowPlugin %{_libdir}/squeak/%{vmver}/SqueakV3.sources %{_libdir}/squeak/%{vmver}/SqueakV39.sources @@ -210,13 +212,15 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch %{ix86} ppc %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif %endif %changelog +* Mon Jul 20 2009 Gavin Romig-Koch - 3.10.5-1 + - upgrade to new upstream + - work around dprintf problem * Wed Feb 25 2009 Fedora Release Engineering - 3.10.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From james at fedoraproject.org Tue Jul 21 04:23:43 2009 From: james at fedoraproject.org (James Antill) Date: Tue, 21 Jul 2009 04:23:43 +0000 (UTC) Subject: rpms/zsh/devel zsh.spec,1.59,1.60 Message-ID: <20090721042343.2F68111C005E@cvs1.fedora.phx.redhat.com> Author: james Update of /cvs/pkgs/rpms/zsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18131 Modified Files: zsh.spec Log Message: * Mon Jul 20 2009 James Antill - 4.3.10-1 - Import new upstream 4.3.10 Index: zsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/zsh/devel/zsh.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- zsh.spec 10 Jun 2009 12:43:06 -0000 1.59 +++ zsh.spec 21 Jul 2009 04:23:12 -0000 1.60 @@ -2,8 +2,8 @@ Summary: A powerful interactive shell Name: zsh -Version: 4.3.9 -Release: 4%{?dist}.1 +Version: 4.3.10 +Release: 1%{?dist} License: BSD URL: http://zsh.sunsite.dk/ Group: System Environment/Shells @@ -168,6 +168,9 @@ fi %doc Doc/*.html %changelog +* Mon Jul 20 2009 James Antill - 4.3.10-1 +- Import new upstream 4.3.10 + * Wed Jun 10 2009 Karsten Hopp 4.3.9-4.1 - skip D02glob test on s390, too From awjb at fedoraproject.org Tue Jul 21 04:31:33 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:31:33 +0000 (UTC) Subject: rpms/libsynce/F-10 .cvsignore, 1.6, 1.7 libsynce.spec, 1.7, 1.8 sources, 1.6, 1.7 Message-ID: <20090721043133.43EA311C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libsynce/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20620/F-10 Modified Files: .cvsignore libsynce.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 09:47:33 -0000 1.6 +++ .cvsignore 21 Jul 2009 04:31:02 -0000 1.7 @@ -1 +1 @@ -libsynce-0.13.tar.gz +libsynce-0.14.tar.gz Index: libsynce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-10/libsynce.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libsynce.spec 8 Feb 2009 09:47:34 -0000 1.7 +++ libsynce.spec 21 Jul 2009 04:31:02 -0000 1.8 @@ -1,5 +1,5 @@ Name: libsynce -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: Connection library for Pocket PC devices @@ -73,6 +73,13 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13-1 - version upgrade (#457949) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 09:47:34 -0000 1.6 +++ sources 21 Jul 2009 04:31:02 -0000 1.7 @@ -1 +1 @@ -dcd2eef46000d4a8e44ac3c478095ea5 libsynce-0.13.tar.gz +275ed88d7b2725d653d322c0e767129a libsynce-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 04:31:33 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:31:33 +0000 (UTC) Subject: rpms/libsynce/F-11 .cvsignore, 1.6, 1.7 libsynce.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090721043133.5E4FE11C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libsynce/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20620/F-11 Modified Files: .cvsignore libsynce.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 09:47:35 -0000 1.6 +++ .cvsignore 21 Jul 2009 04:31:03 -0000 1.7 @@ -1 +1 @@ -libsynce-0.13.tar.gz +libsynce-0.14.tar.gz Index: libsynce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-11/libsynce.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libsynce.spec 25 Feb 2009 19:14:33 -0000 1.9 +++ libsynce.spec 21 Jul 2009 04:31:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: libsynce -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection library for Pocket PC devices Group: System Environment/Libraries @@ -73,6 +73,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 09:47:35 -0000 1.6 +++ sources 21 Jul 2009 04:31:03 -0000 1.7 @@ -1 +1 @@ -dcd2eef46000d4a8e44ac3c478095ea5 libsynce-0.13.tar.gz +275ed88d7b2725d653d322c0e767129a libsynce-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 04:31:33 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:31:33 +0000 (UTC) Subject: rpms/libsynce/devel .cvsignore, 1.6, 1.7 libsynce.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090721043133.A98BD11C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libsynce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20620/devel Modified Files: .cvsignore libsynce.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 09:47:35 -0000 1.6 +++ .cvsignore 21 Jul 2009 04:31:03 -0000 1.7 @@ -1 +1 @@ -libsynce-0.13.tar.gz +libsynce-0.14.tar.gz Index: libsynce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/devel/libsynce.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libsynce.spec 25 Feb 2009 19:14:33 -0000 1.9 +++ libsynce.spec 21 Jul 2009 04:31:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: libsynce -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection library for Pocket PC devices Group: System Environment/Libraries @@ -73,6 +73,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 09:47:35 -0000 1.6 +++ sources 21 Jul 2009 04:31:03 -0000 1.7 @@ -1 +1 @@ -dcd2eef46000d4a8e44ac3c478095ea5 libsynce-0.13.tar.gz +275ed88d7b2725d653d322c0e767129a libsynce-0.14.tar.gz From james at fedoraproject.org Tue Jul 21 04:31:42 2009 From: james at fedoraproject.org (James Antill) Date: Tue, 21 Jul 2009 04:31:42 +0000 (UTC) Subject: rpms/zsh/devel .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 zsh.spec, 1.60, 1.61 Message-ID: <20090721043142.3827711C005E@cvs1.fedora.phx.redhat.com> Author: james Update of /cvs/pkgs/rpms/zsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20811 Modified Files: .cvsignore sources zsh.spec Log Message: * Mon Jul 20 2009 James Antill - 4.3.10-1 - Import new upstream 4.3.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zsh/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 20 Dec 2008 17:22:44 -0000 1.14 +++ .cvsignore 21 Jul 2009 04:31:11 -0000 1.15 @@ -1 +1 @@ -zsh-4.3.9.tar.bz2 +zsh-4.3.10.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zsh/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 20 Dec 2008 17:22:44 -0000 1.14 +++ sources 21 Jul 2009 04:31:12 -0000 1.15 @@ -1 +1 @@ -0539d0a590e545ad8c40ff8c97e94538 zsh-4.3.9.tar.bz2 +74c5b275544400082a1cde806c98682a zsh-4.3.10.tar.bz2 Index: zsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/zsh/devel/zsh.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- zsh.spec 21 Jul 2009 04:23:12 -0000 1.60 +++ zsh.spec 21 Jul 2009 04:31:12 -0000 1.61 @@ -3,7 +3,7 @@ Summary: A powerful interactive shell Name: zsh Version: 4.3.10 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD URL: http://zsh.sunsite.dk/ Group: System Environment/Shells From awjb at fedoraproject.org Tue Jul 21 04:41:54 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:41:54 +0000 (UTC) Subject: rpms/unshield/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 unshield.spec, 1.11, 1.12 Message-ID: <20090721044154.B8AF711C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/unshield/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25790/devel Modified Files: .cvsignore sources unshield.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/unshield/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Jun 2008 08:46:13 -0000 1.3 +++ .cvsignore 21 Jul 2009 04:41:53 -0000 1.4 @@ -1 +1 @@ -unshield-0.5.1.tar.gz +unshield-0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unshield/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Jun 2008 08:46:13 -0000 1.3 +++ sources 21 Jul 2009 04:41:53 -0000 1.4 @@ -1 +1 @@ -cc06e5573a4d5095871bf1bb14f3da1f unshield-0.5.1.tar.gz +31a829192a255160d1f71cda4c865c9c unshield-0.6.tar.gz Index: unshield.spec =================================================================== RCS file: /cvs/pkgs/rpms/unshield/devel/unshield.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- unshield.spec 25 Feb 2009 23:13:53 -0000 1.11 +++ unshield.spec 21 Jul 2009 04:41:53 -0000 1.12 @@ -1,12 +1,12 @@ Name: unshield -Version: 0.5.1 -Release: 3%{?dist} +Version: 0.6 +Release: 1%{?dist} Summary: Install InstallShield applications on a Pocket PC Group: Applications/Communications License: MIT URL: http://synce.sourceforge.net/ -Source0: http://dl.sf.net/synce/unshield-0.5.1.tar.gz +Source0: http://dl.sf.net/synce/unshield-0.6.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel @@ -68,6 +68,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libunshield.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.6 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From awjb at fedoraproject.org Tue Jul 21 04:42:23 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:42:23 +0000 (UTC) Subject: rpms/unshield/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 unshield.spec, 1.9, 1.10 Message-ID: <20090721044223.A117F11C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/unshield/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25790/F-10 Modified Files: .cvsignore sources unshield.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Jun 2008 08:46:13 -0000 1.3 +++ .cvsignore 21 Jul 2009 04:41:52 -0000 1.4 @@ -1 +1 @@ -unshield-0.5.1.tar.gz +unshield-0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Jun 2008 08:46:13 -0000 1.3 +++ sources 21 Jul 2009 04:41:53 -0000 1.4 @@ -1 +1 @@ -cc06e5573a4d5095871bf1bb14f3da1f unshield-0.5.1.tar.gz +31a829192a255160d1f71cda4c865c9c unshield-0.6.tar.gz Index: unshield.spec =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-10/unshield.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- unshield.spec 17 Jun 2008 08:46:13 -0000 1.9 +++ unshield.spec 21 Jul 2009 04:41:53 -0000 1.10 @@ -1,12 +1,12 @@ Name: unshield -Version: 0.5.1 +Version: 0.6 Release: 1%{?dist} Summary: Install InstallShield applications on a Pocket PC Group: Applications/Communications License: MIT URL: http://synce.sourceforge.net/ -Source0: http://dl.sf.net/synce/unshield-0.5.1.tar.gz +Source0: http://dl.sf.net/synce/unshield-0.6.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel @@ -68,6 +68,17 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libunshield.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.6 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Feb 08 2009 Andreas Bierfert +- 0.5.1-2 +- bump for pkgconfig + * Tue Jun 17 2008 Andreas Bierfert - 0.5.1-1 - version upgrade From awjb at fedoraproject.org Tue Jul 21 04:42:23 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 04:42:23 +0000 (UTC) Subject: rpms/unshield/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 unshield.spec, 1.11, 1.12 Message-ID: <20090721044223.E43AB11C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/unshield/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25790/F-11 Modified Files: .cvsignore sources unshield.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Jun 2008 08:46:13 -0000 1.3 +++ .cvsignore 21 Jul 2009 04:41:53 -0000 1.4 @@ -1 +1 @@ -unshield-0.5.1.tar.gz +unshield-0.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Jun 2008 08:46:13 -0000 1.3 +++ sources 21 Jul 2009 04:41:53 -0000 1.4 @@ -1 +1 @@ -cc06e5573a4d5095871bf1bb14f3da1f unshield-0.5.1.tar.gz +31a829192a255160d1f71cda4c865c9c unshield-0.6.tar.gz Index: unshield.spec =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-11/unshield.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- unshield.spec 25 Feb 2009 23:13:53 -0000 1.11 +++ unshield.spec 21 Jul 2009 04:41:53 -0000 1.12 @@ -1,12 +1,12 @@ Name: unshield -Version: 0.5.1 -Release: 3%{?dist} +Version: 0.6 +Release: 1%{?dist} Summary: Install InstallShield applications on a Pocket PC Group: Applications/Communications License: MIT URL: http://synce.sourceforge.net/ -Source0: http://dl.sf.net/synce/unshield-0.5.1.tar.gz +Source0: http://dl.sf.net/synce/unshield-0.6.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel @@ -68,6 +68,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libunshield.pc %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.6 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dcantrel at fedoraproject.org Tue Jul 21 04:46:23 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Tue, 21 Jul 2009 04:46:23 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.645, 1.646 anaconda.spec, 1.794, 1.795 sources, 1.779, 1.780 Message-ID: <20090721044624.0124411C005E@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27949 Modified Files: .cvsignore anaconda.spec sources Log Message: * Mon Jul 20 2009 David Cantrell - 12.3-1 - Set GECOS field for new user accounts specific in ks files (dcantrell) - Show MAC address of network device in text mode too. (rvykydal) - Fix selection of alternative iface in UI after fail (#507084). (rvykydal) - Stop the cdrom device before ejecting (#505067) (msivak) - Add hipersockets to NETTYPE description (bhinson, #511962). (clumens) - Don't show formatting progress bar after mkfs has exited. (eric_kerin) - Run firstaidkit-qs script instead of the shell (shows rescue menu) (#508512) Add dialog package required for firstaidkit Create /etc/fstab in ramdisk to make mount commands easier (#440327) (msivak) - When ignoring partitions make sure lvm also ignores them (hdegoede) - 70-anaconda.rules: pass --ignorelockingfailure to lvm invocation (hdegoede) - Call mdadm -I with --no-degraded for all disks but the last (hdegoede) - There is no /bin on the initrd so sleep needs to go into /sbin. (clumens) - Add deviceNameToDiskByPath(). (dcantrell) - Display drive model and size in MB in partitioning UI (#460697) (dcantrell) - Lots of small grammar and wording changes. (pjones) - Edit user-visible dialogs for style. (pjones) - Get rid of sloppy elipses usage. (pjones) - Don't write optical devices to /etc/fstab (#505697). (clumens) - error messages of zFCP on s390: log or pass to the UI (maier) - correctly delete a SCSI device provided by a zFCP LUN on s390 (maier) - All other teardown methods take a "recursive" argument (#506166). (clumens) - Clean yum caches following preupgrade, too (#503096). (clumens) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.645 retrieving revision 1.646 diff -u -p -r1.645 -r1.646 --- .cvsignore 10 Jul 2009 01:48:19 -0000 1.645 +++ .cvsignore 21 Jul 2009 04:45:53 -0000 1.646 @@ -1 +1 @@ -anaconda-12.2.tar.bz2 +anaconda-12.3.tar.bz2 Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.794 retrieving revision 1.795 diff -u -p -r1.794 -r1.795 --- anaconda.spec 10 Jul 2009 01:48:20 -0000 1.794 +++ anaconda.spec 21 Jul 2009 04:45:53 -0000 1.795 @@ -3,7 +3,7 @@ Summary: Graphical system installer Name: anaconda -Version: 12.2 +Version: 12.3 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -26,7 +26,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version %define libnlver 1.0 %define libselinuxver 1.6 %define mkinitrdver 5.1.2-1 -%define pykickstartver 1.56 +%define pykickstartver 1.58 %define rpmpythonver 4.2-0.61 %define slangver 2.0.6-2 %define yumver 2.9.2 @@ -212,6 +212,31 @@ update-desktop-database &> /dev/null || %endif %changelog +* Mon Jul 20 2009 David Cantrell - 12.3-1 +- Set GECOS field for new user accounts specific in ks files (dcantrell) +- Show MAC address of network device in text mode too. (rvykydal) +- Fix selection of alternative iface in UI after fail (#507084). (rvykydal) +- Stop the cdrom device before ejecting (#505067) (msivak) +- Add hipersockets to NETTYPE description (bhinson, #511962). (clumens) +- Don't show formatting progress bar after mkfs has exited. (eric_kerin) +- Run firstaidkit-qs script instead of the shell (shows rescue menu) + (#508512) Add dialog package required for firstaidkit Create /etc/fstab in + ramdisk to make mount commands easier (#440327) (msivak) +- When ignoring partitions make sure lvm also ignores them (hdegoede) +- 70-anaconda.rules: pass --ignorelockingfailure to lvm invocation (hdegoede) +- Call mdadm -I with --no-degraded for all disks but the last (hdegoede) +- There is no /bin on the initrd so sleep needs to go into /sbin. (clumens) +- Add deviceNameToDiskByPath(). (dcantrell) +- Display drive model and size in MB in partitioning UI (#460697) (dcantrell) +- Lots of small grammar and wording changes. (pjones) +- Edit user-visible dialogs for style. (pjones) +- Get rid of sloppy elipses usage. (pjones) +- Don't write optical devices to /etc/fstab (#505697). (clumens) +- error messages of zFCP on s390: log or pass to the UI (maier) +- correctly delete a SCSI device provided by a zFCP LUN on s390 (maier) +- All other teardown methods take a "recursive" argument (#506166). (clumens) +- Clean yum caches following preupgrade, too (#503096). (clumens) + * Thu Jul 09 2009 David Cantrell - 12.2-1 - mdmon added to install.img (Jacek.Danecki) - Remove some unnecessary code. (clumens) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.779 retrieving revision 1.780 diff -u -p -r1.779 -r1.780 --- sources 10 Jul 2009 01:48:20 -0000 1.779 +++ sources 21 Jul 2009 04:45:53 -0000 1.780 @@ -1 +1 @@ -dcc4826488ffc6a918cf050637bf66d6 anaconda-12.2.tar.bz2 +bf20175d6e08d52285d8bd589c66e4a3 anaconda-12.3.tar.bz2 From gavin at fedoraproject.org Tue Jul 21 04:53:03 2009 From: gavin at fedoraproject.org (Gavin Romig-Koch) Date: Tue, 21 Jul 2009 04:53:03 +0000 (UTC) Subject: rpms/squeak-vm/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 squeak-vm.spec, 1.1, 1.2 Message-ID: <20090721045303.404E411C005E@cvs1.fedora.phx.redhat.com> Author: gavin Update of /cvs/pkgs/rpms/squeak-vm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31167 Modified Files: .cvsignore sources squeak-vm.spec Log Message: upgrade to new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 21 Feb 2009 02:12:18 -0000 1.2 +++ .cvsignore 21 Jul 2009 04:53:02 -0000 1.3 @@ -1,2 +1,2 @@ -Squeak-3.10-4.src.tar.gz +Squeak-3.10-5.src.tar.gz squeak-desktop-files.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Feb 2009 02:12:18 -0000 1.2 +++ sources 21 Jul 2009 04:53:02 -0000 1.3 @@ -1,2 +1,2 @@ -bd8c32860d7e80540a497149a387a898 Squeak-3.10-4.src.tar.gz +27d56539f051b19c73517cad72dd217d Squeak-3.10-5.src.tar.gz 9cdcd2067b498c217f1a1131dc1356a3 squeak-desktop-files.tar.gz Index: squeak-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/F-10/squeak-vm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squeak-vm.spec 21 Feb 2009 02:12:18 -0000 1.1 +++ squeak-vm.spec 21 Jul 2009 04:53:02 -0000 1.2 @@ -1,11 +1,11 @@ %define major 3.10 -%define minor 4 +%define minor 5 %define vmver %{major}-%{minor} %define source Squeak-%{vmver} Name: squeak-vm Version: %{major}.%{minor} -Release: 3%{?dist} +Release: 1%{?dist} Summary: The Squeak virtual machine Group: Development/Languages @@ -160,7 +160,6 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch i686 %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif @@ -181,6 +180,7 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/Squeak3D %{_libdir}/squeak/%{vmver}/UUIDPlugin %{_libdir}/squeak/%{vmver}/VideoForLinuxPlugin +%{_libdir}/squeak/%{vmver}/HostWindowPlugin %{_libdir}/squeak/%{vmver}/SqueakV3.sources %{_libdir}/squeak/%{vmver}/SqueakV39.sources @@ -210,13 +210,14 @@ update-desktop-database &> /dev/null || %{_libdir}/squeak/%{vmver}/PseudoTTYPlugin %{_libdir}/squeak/%{vmver}/UnixOSProcessPlugin %{_libdir}/squeak/%{vmver}/XDisplayControlPlugin -%{_libdir}/squeak/%{vmver}/Mpeg3Plugin %ifarch %{ix86} ppc %{_libdir}/squeak/%{vmver}/SqueakFFIPrims %endif %endif %changelog +* Mon Jul 20 2009 Gavin Romig-Koch - 3.10.5-1 + - upgrade to new upstream * Tue Jan 20 2009 Gavin Romig-Koch - 3.10.4-3 - SqueakFFIPrims only works on ix86 and ppc - add a missing dir macro From mmaslano at fedoraproject.org Tue Jul 21 05:35:09 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Tue, 21 Jul 2009 05:35:09 +0000 (UTC) Subject: comps comps-f12.xml.in,1.47,1.48 Message-ID: <20090721053509.2D3BA11C005E@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13755 Modified Files: comps-f12.xml.in Log Message: Removing anacron from comps Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- comps-f12.xml.in 21 Jul 2009 01:37:21 -0000 1.47 +++ comps-f12.xml.in 21 Jul 2009 05:34:38 -0000 1.48 @@ -228,7 +228,6 @@ aspell-en hunspell-en acpid - anacron ccid coolkey cpuspeed From tanguy at fedoraproject.org Tue Jul 21 06:08:01 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Tue, 21 Jul 2009 06:08:01 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis.spec,1.23,1.24 Message-ID: <20090721060802.063E111C005E@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26074 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- scidavis.spec 19 Jul 2009 18:24:50 -0000 1.23 +++ scidavis.spec 21 Jul 2009 06:07:29 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -33,6 +33,7 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +touch manual/scidavis.adp %build cd scidavis @@ -100,6 +101,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 +- Touch manual/scidavis.adp to make Assistant update the cache + * Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 - Rebuild From mhlavink at fedoraproject.org Tue Jul 21 06:31:55 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Tue, 21 Jul 2009 06:31:55 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel ecryptfs-utils-75-werror.patch,1.2,1.3 Message-ID: <20090721063155.6CAB411C005E@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1911 Modified Files: ecryptfs-utils-75-werror.patch Log Message: fix Werror build issues ecryptfs-utils-75-werror.patch: libecryptfs/ecryptfs-stat.c | 2 +- pam_ecryptfs/pam_ecryptfs.c | 31 ++----------------------------- 2 files changed, 3 insertions(+), 30 deletions(-) Index: ecryptfs-utils-75-werror.patch =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/devel/ecryptfs-utils-75-werror.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ecryptfs-utils-75-werror.patch 20 Jul 2009 13:25:26 -0000 1.2 +++ ecryptfs-utils-75-werror.patch 21 Jul 2009 06:31:52 -0000 1.3 @@ -1,6 +1,18 @@ +diff -up ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c +--- ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c 2009-07-21 08:10:43.516946733 +0200 +@@ -146,7 +146,7 @@ int ecryptfs_parse_stat(struct ecryptfs_ + if (buf_size < (ECRYPTFS_FILE_SIZE_BYTES + + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES + + 4)) { +- printf("%s: Invalid metadata size; must have at least [%lu] " ++ printf("%s: Invalid metadata size; must have at least [%zu] " + "bytes; there are only [%zu] bytes\n", __FUNCTION__, + (ECRYPTFS_FILE_SIZE_BYTES + + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES diff -up ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c ---- ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-07-20 15:17:30.013884686 +0200 -+++ ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c 2009-07-20 15:19:17.111071710 +0200 +--- ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c 2009-07-21 08:10:07.068947047 +0200 @@ -42,31 +42,6 @@ #define PRIVATE_DIR "Private" From tanguy at fedoraproject.org Tue Jul 21 06:35:47 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Tue, 21 Jul 2009 06:35:47 +0000 (UTC) Subject: rpms/scidavis/F-10 scidavis.spec,1.11,1.12 Message-ID: <20090721063547.2912811C005E@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2939 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/scidavis.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- scidavis.spec 19 Jul 2009 20:21:14 -0000 1.11 +++ scidavis.spec 21 Jul 2009 06:35:16 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -33,6 +33,7 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +touch manual/scidavis.adp %build cd scidavis @@ -100,6 +101,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 +- Touch manual/scidavis.adp to make Assistant update the cache + * Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 - Rebuild From tanguy at fedoraproject.org Tue Jul 21 06:38:50 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Tue, 21 Jul 2009 06:38:50 +0000 (UTC) Subject: rpms/scidavis/devel scidavis.spec,1.20,1.21 Message-ID: <20090721063850.5FF5411C005E@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3869 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/scidavis.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- scidavis.spec 19 Jul 2009 20:24:20 -0000 1.20 +++ scidavis.spec 21 Jul 2009 06:38:19 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -33,6 +33,7 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +touch manual/scidavis.adp %build cd scidavis @@ -100,6 +101,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 +- Touch manual/scidavis.adp to make Assistant update the cache + * Sun Jul 19 2009 Eric Tanguy - 0.2.3-5 - Rebuild From mhlavink at fedoraproject.org Tue Jul 21 07:20:18 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Tue, 21 Jul 2009 07:20:18 +0000 (UTC) Subject: rpms/ecryptfs-utils/F-11 .cvsignore, 1.24, 1.25 ecryptfs-utils-75-werror.patch, 1.4, 1.5 ecryptfs-utils.spec, 1.48, 1.49 sources, 1.27, 1.28 Message-ID: <20090721072018.E2C8C11C049E@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19586 Modified Files: .cvsignore ecryptfs-utils-75-werror.patch ecryptfs-utils.spec sources Log Message: updated to 76 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 21 Mar 2009 07:30:12 -0000 1.24 +++ .cvsignore 21 Jul 2009 07:19:47 -0000 1.25 @@ -1 +1,2 @@ -ecryptfs-utils_73.orig.tar.gz +ecryptfs-utils_76.orig.tar.gz +ecryptfs-mount-private.png ecryptfs-utils-75-werror.patch: libecryptfs/ecryptfs-stat.c | 2 +- pam_ecryptfs/pam_ecryptfs.c | 31 ++----------------------------- 2 files changed, 3 insertions(+), 30 deletions(-) Index: ecryptfs-utils-75-werror.patch =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/ecryptfs-utils-75-werror.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ecryptfs-utils-75-werror.patch 5 May 2009 12:18:58 -0000 1.4 +++ ecryptfs-utils-75-werror.patch 21 Jul 2009 07:19:47 -0000 1.5 @@ -1,6 +1,6 @@ -diff -up ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c.werror ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c ---- ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c.werror 2009-03-05 22:17:36.000000000 +0100 -+++ ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c 2009-05-05 14:16:47.965159244 +0200 +diff -up ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c +--- ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c 2009-07-21 08:10:43.516946733 +0200 @@ -146,7 +146,7 @@ int ecryptfs_parse_stat(struct ecryptfs_ if (buf_size < (ECRYPTFS_FILE_SIZE_BYTES + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES @@ -10,28 +10,9 @@ diff -up ecryptfs-utils-75/src/libecrypt "bytes; there are only [%zu] bytes\n", __FUNCTION__, (ECRYPTFS_FILE_SIZE_BYTES + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES -diff -up ecryptfs-utils-75/src/libecryptfs/key_management.c.werror ecryptfs-utils-75/src/libecryptfs/key_management.c ---- ecryptfs-utils-75/src/libecryptfs/key_management.c.werror 2009-05-01 00:53:13.000000000 +0200 -+++ ecryptfs-utils-75/src/libecryptfs/key_management.c 2009-05-05 13:57:18.142095484 +0200 -@@ -18,6 +18,7 @@ - * 02111-1307, USA. - */ - -+#include "config.h" - #include - #ifdef ENABLE_NSS - #include -@@ -39,7 +40,6 @@ - #include - #include - #include --#include "config.h" - #include "../include/ecryptfs.h" - - #ifndef ENOKEY -diff -up ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c ---- ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-04-30 23:40:12.000000000 +0200 -+++ ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c 2009-05-05 13:57:18.142095484 +0200 +diff -up ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c +--- ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c 2009-07-21 08:10:07.068947047 +0200 @@ -42,31 +42,6 @@ #define PRIVATE_DIR "Private" @@ -78,7 +59,7 @@ diff -up ecryptfs-utils-75/src/pam_ecryp /* User has not recorded their passphrase */ unlink("/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); - symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); -+ rc = symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); ++ rc=symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); fd = open("/var/lib/update-notifier/dpkg-run-stamp", O_WRONLY|O_CREAT|O_NONBLOCK, 0666); close(fd); } @@ -91,14 +72,3 @@ diff -up ecryptfs-utils-75/src/pam_ecryp goto out; } saved_uid = geteuid(); -diff -up ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c ---- ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror 2009-05-01 01:04:38.000000000 +0200 -+++ ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c 2009-05-05 13:57:18.142095484 +0200 -@@ -42,7 +42,6 @@ int main(int argc, char *argv[]) - char *wrapping_passphrase; - char salt[ECRYPTFS_SALT_SIZE]; - char salt_hex[ECRYPTFS_SALT_SIZE_HEX]; -- struct passwd *pwd; - int rc = 0; - - if (argc == 1) { Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/ecryptfs-utils.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- ecryptfs-utils.spec 23 Jun 2009 08:37:27 -0000 1.48 +++ ecryptfs-utils.spec 21 Jul 2009 07:19:47 -0000 1.49 @@ -2,8 +2,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: ecryptfs-utils -Version: 75 -Release: 4%{?dist} +Version: 76 +Release: 1%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base License: GPLv2+ @@ -14,33 +14,22 @@ Source1: ecryptfs-mount-private.png #fix wrong Makefile for umount.ecryptfs Patch2: ecryptfs-utils-74-build.patch -#restrict suid mount.ecryptfs_private to ecryptfs group only -#required for ecryptfs-utils <=75 -Patch3: ecryptfs-utils-74-group.patch - #allow building with -Werror #required for ecryptfs-utils <= 75 Patch4: ecryptfs-utils-75-werror.patch -#taken from upstream, required for ecryptfs-utils <= 75, rhbz#500820 -Patch5: ecryptfs-utils-75-blkid.patch - #rhbz#500829 Patch6: ecryptfs-utils-75-nocryptdisks.patch -#sent upstream, rhbz#495143 -Patch7: ecryptfs-utils-75-pamcheck.patch - -#sent upstream, rhbz#495143 -Patch8: ecryptfs-utils-75-fnekonfail.patch - #temporary workaround for rhbz#503261 Patch9: ecryptfs-utils-75-workaround503261.patch +#Patch11: ecryptfs-utils-75-testdebug.patch + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils +BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake libtool %description eCryptfs is a stacked cryptographic filesystem that ships in Linux @@ -71,17 +60,15 @@ applications written in the Python progr the interface supplied by the ecryptfs-utils library. %prep -%setup -q +%setup -q -n %{name}_%{version}.orig %patch2 -p1 -b .build -%patch3 -p1 -b .group %patch4 -p1 -b .werror -%patch5 -p0 -b .blkid %patch6 -p0 -b .nocryptdisks -%patch7 -p0 -b .pamcheck -%patch8 -p0 -b .fnekonfail %patch9 -p1 -b .rhbz503261 +#%patch11 -p1 -b .testdebug %build +autoreconf -fiv export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror" %configure --disable-rpath --enable-tspi --enable-nss --enable-static make clean @@ -135,7 +122,7 @@ rm -rf $RPM_BUILD_ROOT %doc doc/ecryptfs-pkcs11-helper-doc.txt /sbin/mount.ecryptfs /sbin/umount.ecryptfs -%attr(4755,root,ecryptfs) /sbin/mount.ecryptfs_private +%attr(4750,root,ecryptfs) /sbin/mount.ecryptfs_private /sbin/umount.ecryptfs_private %{_bindir}/ecryptfs-manager %{_bindir}/ecryptfs-insert-wrapped-passphrase-into-keyring @@ -197,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Tue Jul 21 2009 Michal Hlavinka 76-1 +- updated to 76 + * Tue Jun 23 2009 Michal Hlavinka 75-4 - add temporary workaround for #503261 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-11/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 21 May 2009 09:58:45 -0000 1.27 +++ sources 21 Jul 2009 07:19:47 -0000 1.28 @@ -1,2 +1,2 @@ -2c4e8be38d1ea8cadd9f870f15430f07 ecryptfs-utils_75.orig.tar.gz +0e6a58a0730838dc832ecd8bd9e0c463 ecryptfs-utils_76.orig.tar.gz e612ddb9ccb17f8fec79df26e626a8c6 ecryptfs-mount-private.png From mhlavink at fedoraproject.org Tue Jul 21 07:34:47 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Tue, 21 Jul 2009 07:34:47 +0000 (UTC) Subject: rpms/ecryptfs-utils/F-10 ecryptfs-utils-75-workaround503261.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 ecryptfs-utils-75-werror.patch, 1.1, 1.2 ecryptfs-utils.spec, 1.35, 1.36 sources, 1.23, 1.24 Message-ID: <20090721073447.B41EA11C005E@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/ecryptfs-utils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24850 Modified Files: .cvsignore ecryptfs-utils-75-werror.patch ecryptfs-utils.spec sources Added Files: ecryptfs-utils-75-workaround503261.patch Log Message: updated to 76 ecryptfs-utils-75-workaround503261.patch: mount.ecryptfs.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) --- NEW FILE ecryptfs-utils-75-workaround503261.patch --- diff -up ecryptfs-utils-75/src/utils/mount.ecryptfs.c.tempfix ecryptfs-utils-75/src/utils/mount.ecryptfs.c --- ecryptfs-utils-75/src/utils/mount.ecryptfs.c.tempfix 2009-06-23 10:26:27.706393260 +0200 +++ ecryptfs-utils-75/src/utils/mount.ecryptfs.c 2009-06-23 10:29:17.735200580 +0200 @@ -545,6 +545,7 @@ int main(int argc, char **argv) int sig_cache = 1; int rc; struct passwd *pw; + int mlocked = 0; /* Nasty hack; On some systems, this need to run before we mlock. * See: @@ -556,11 +557,14 @@ int main(int argc, char **argv) rc = -EIO; goto out; } - - rc = mlockall(MCL_FUTURE); - if (rc) { - fprintf(stderr, "Exiting. Unable to mlockall address space: %m\n"); - return -1; + /* TODO: do propper fix - mlock only really required code (and use safe_allock?) */ + if (geteuid()==0) { + mlocked = 1; + rc = mlockall(MCL_FUTURE); + if (rc) { + fprintf(stderr, "Exiting. Unable to mlockall address space: %m\n"); + return -1; + } } if (dump_args) { int i; @@ -660,6 +664,7 @@ int main(int argc, char **argv) } out: - munlockall(); + if (mlocked) + munlockall(); return rc; } Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-10/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 21 Mar 2009 07:30:45 -0000 1.20 +++ .cvsignore 21 Jul 2009 07:34:46 -0000 1.21 @@ -1 +1,2 @@ -ecryptfs-utils_73.orig.tar.gz +ecryptfs-utils_76.orig.tar.gz +ecryptfs-mount-private.png ecryptfs-utils-75-werror.patch: libecryptfs/ecryptfs-stat.c | 2 +- pam_ecryptfs/pam_ecryptfs.c | 31 ++----------------------------- 2 files changed, 3 insertions(+), 30 deletions(-) Index: ecryptfs-utils-75-werror.patch =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-10/ecryptfs-utils-75-werror.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ecryptfs-utils-75-werror.patch 5 May 2009 14:01:36 -0000 1.1 +++ ecryptfs-utils-75-werror.patch 21 Jul 2009 07:34:46 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c.werror ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c ---- ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c.werror 2009-03-05 22:17:36.000000000 +0100 -+++ ecryptfs-utils-75/src/libecryptfs/ecryptfs-stat.c 2009-05-05 14:16:47.965159244 +0200 +diff -up ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c +--- ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/libecryptfs/ecryptfs-stat.c 2009-07-21 08:10:43.516946733 +0200 @@ -146,7 +146,7 @@ int ecryptfs_parse_stat(struct ecryptfs_ if (buf_size < (ECRYPTFS_FILE_SIZE_BYTES + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES @@ -10,28 +10,9 @@ diff -up ecryptfs-utils-75/src/libecrypt "bytes; there are only [%zu] bytes\n", __FUNCTION__, (ECRYPTFS_FILE_SIZE_BYTES + MAGIC_ECRYPTFS_MARKER_SIZE_BYTES -diff -up ecryptfs-utils-75/src/libecryptfs/key_management.c.werror ecryptfs-utils-75/src/libecryptfs/key_management.c ---- ecryptfs-utils-75/src/libecryptfs/key_management.c.werror 2009-05-01 00:53:13.000000000 +0200 -+++ ecryptfs-utils-75/src/libecryptfs/key_management.c 2009-05-05 13:57:18.142095484 +0200 -@@ -18,6 +18,7 @@ - * 02111-1307, USA. - */ - -+#include "config.h" - #include - #ifdef ENABLE_NSS - #include -@@ -39,7 +40,6 @@ - #include - #include - #include --#include "config.h" - #include "../include/ecryptfs.h" - - #ifndef ENOKEY -diff -up ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c ---- ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-04-30 23:40:12.000000000 +0200 -+++ ecryptfs-utils-75/src/pam_ecryptfs/pam_ecryptfs.c 2009-05-05 13:57:18.142095484 +0200 +diff -up ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c +--- ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c.werror 2009-07-17 01:24:18.000000000 +0200 ++++ ecryptfs-utils_76.orig/src/pam_ecryptfs/pam_ecryptfs.c 2009-07-21 08:10:07.068947047 +0200 @@ -42,31 +42,6 @@ #define PRIVATE_DIR "Private" @@ -78,7 +59,7 @@ diff -up ecryptfs-utils-75/src/pam_ecryp /* User has not recorded their passphrase */ unlink("/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); - symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); -+ rc = symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); ++ rc=symlink("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", "/var/lib/update-notifier/user.d/ecryptfs-record-passphrase"); fd = open("/var/lib/update-notifier/dpkg-run-stamp", O_WRONLY|O_CREAT|O_NONBLOCK, 0666); close(fd); } @@ -91,14 +72,3 @@ diff -up ecryptfs-utils-75/src/pam_ecryp goto out; } saved_uid = geteuid(); -diff -up ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c ---- ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c.werror 2009-05-01 01:04:38.000000000 +0200 -+++ ecryptfs-utils-75/src/utils/ecryptfs_unwrap_passphrase.c 2009-05-05 13:57:18.142095484 +0200 -@@ -42,7 +42,6 @@ int main(int argc, char *argv[]) - char *wrapping_passphrase; - char salt[ECRYPTFS_SALT_SIZE]; - char salt_hex[ECRYPTFS_SALT_SIZE_HEX]; -- struct passwd *pwd; - int rc = 0; - - if (argc == 1) { Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-10/ecryptfs-utils.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- ecryptfs-utils.spec 21 May 2009 10:03:32 -0000 1.35 +++ ecryptfs-utils.spec 21 Jul 2009 07:34:47 -0000 1.36 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: ecryptfs-utils -Version: 75 +Version: 76 Release: 1%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base @@ -18,16 +18,16 @@ Patch2: ecryptfs-utils-74-build.patch #required for ecryptfs-utils <= 75 Patch4: ecryptfs-utils-75-werror.patch -#taken from upstream, required for ecryptfs-utils <= 75, rhbz#500820 -Patch5: ecryptfs-utils-75-blkid.patch - #rhbz#500829 Patch6: ecryptfs-utils-75-nocryptdisks.patch +#temporary workaround for rhbz#503261 +Patch9: ecryptfs-utils-75-workaround503261.patch + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: keyutils, cryptsetup-luks, e2fsprogs BuildRequires: libgcrypt-devel keyutils-libs-devel openssl-devel pam-devel -BuildRequires: trousers-devel nss-devel desktop-file-utils +BuildRequires: trousers-devel nss-devel desktop-file-utils autoconf automake libtool %description eCryptfs is a stacked cryptographic filesystem that ships in Linux @@ -58,13 +58,14 @@ applications written in the Python progr the interface supplied by the ecryptfs-utils library. %prep -%setup -q +%setup -q -n %{name}_%{version}.orig %patch2 -p1 -b .build %patch4 -p1 -b .werror -%patch5 -p0 -b .blkid %patch6 -p0 -b .nocryptdisks +%patch9 -p1 -b .rhbz503261 %build +autoreconf -fiv export CFLAGS="$RPM_OPT_FLAGS -ggdb -O2 -Werror" %configure --disable-rpath --enable-tspi --enable-nss --enable-static make clean @@ -177,6 +178,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Tue Jul 21 2009 Michal Hlavinka 76-1 +- updated to 76 + * Thu May 21 2009 Michal Hlavinka 75-2 - removed executable permission from ecryptfs-dot-private (#500817) - require cryptsetup-luks for encrypted swap (#500824) Index: sources =================================================================== RCS file: /cvs/extras/rpms/ecryptfs-utils/F-10/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 21 May 2009 10:03:32 -0000 1.23 +++ sources 21 Jul 2009 07:34:47 -0000 1.24 @@ -1,2 +1,2 @@ -2c4e8be38d1ea8cadd9f870f15430f07 ecryptfs-utils_75.orig.tar.gz +0e6a58a0730838dc832ecd8bd9e0c463 ecryptfs-utils_76.orig.tar.gz e612ddb9ccb17f8fec79df26e626a8c6 ecryptfs-mount-private.png From pkgdb at fedoraproject.org Tue Jul 21 07:51:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:51:18 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075118.8A5F710F897@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora devel is now owned by pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:02 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075202.1736E10F89D@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora 11 is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:08 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075208.4644310F898@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora 10 is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:25 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075225.A608410F897@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora devel is now owned by pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:43 +0000 Subject: [pkgdb] lklug-fonts had acl change status Message-ID: <20090721075243.710AE10F898@bastion2.fedora.phx.redhat.com> petersen has set the commit acl on lklug-fonts (Fedora devel) to Obsolete for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:47 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075247.67EDC10F8B3@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora devel is now owned by pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:52:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:52:54 +0000 Subject: [pkgdb] lklug-fonts had acl change status Message-ID: <20090721075255.1435010F8BB@bastion2.fedora.phx.redhat.com> petersen has set the commit acl on lklug-fonts (Fedora devel) to Approved for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:53:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:53:00 +0000 Subject: [pkgdb] lklug-fonts had acl change status Message-ID: <20090721075300.5A6F010F8A9@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lklug-fonts (Fedora devel) to Obsolete for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:53:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:53:04 +0000 Subject: [pkgdb] lklug-fonts ownership updated Message-ID: <20090721075304.4018510F8C0@bastion2.fedora.phx.redhat.com> Package lklug-fonts in Fedora devel is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:53:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:53:08 +0000 Subject: [pkgdb] lklug-fonts had acl change status Message-ID: <20090721075309.0C60810F8C4@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lklug-fonts (Fedora devel) to Approved for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lklug-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:54:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:54:14 +0000 Subject: [pkgdb] lohit-fonts ownership updated Message-ID: <20090721075414.3ECFD10F8A9@bastion2.fedora.phx.redhat.com> Package lohit-fonts in Fedora devel is now owned by pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:54:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:54:27 +0000 Subject: [pkgdb] lohit-fonts ownership updated Message-ID: <20090721075427.4780310F8BD@bastion2.fedora.phx.redhat.com> Package lohit-fonts in Fedora devel is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:54:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:54:23 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075423.3E65110F8BA@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora devel) to Obsolete for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:54:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:54:37 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075437.BDB9010F8C4@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora devel) to Approved for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:25 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075525.D0B8010F8A6@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora 11) to Obsolete for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:29 +0000 Subject: [pkgdb] lohit-fonts ownership updated Message-ID: <20090721075529.C7E4110F8AD@bastion2.fedora.phx.redhat.com> Package lohit-fonts in Fedora 11 is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:34 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075534.4486A10F8C6@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora 11) to Approved for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:39 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075539.606AF10F8B8@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora 10) to Obsolete for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:42 +0000 Subject: [pkgdb] lohit-fonts ownership updated Message-ID: <20090721075542.8439310F8D3@bastion2.fedora.phx.redhat.com> Package lohit-fonts in Fedora 10 is now owned by pravins To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From pkgdb at fedoraproject.org Tue Jul 21 07:55:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 07:55:45 +0000 Subject: [pkgdb] lohit-fonts had acl change status Message-ID: <20090721075546.2CA8410F8BA@bastion2.fedora.phx.redhat.com> petersen has set the approveacls acl on lohit-fonts (Fedora 10) to Approved for pnemade To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lohit-fonts From ovasik at fedoraproject.org Tue Jul 21 08:19:03 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Tue, 21 Jul 2009 08:19:03 +0000 (UTC) Subject: rpms/docbook-style-xsl/devel .cvsignore, 1.27, 1.28 docbook-style-xsl.spec, 1.60, 1.61 sources, 1.27, 1.28 Message-ID: <20090721081903.5FF9B11C005E@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8082 Modified Files: .cvsignore docbook-style-xsl.spec sources Log Message: New upstream release 1.75.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/.cvsignore,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- .cvsignore 28 May 2009 06:49:55 -0000 1.27 +++ .cvsignore 21 Jul 2009 08:18:32 -0000 1.28 @@ -1,2 +1,2 @@ -docbook-xsl-1.75.1.tar.bz2 -docbook-xsl-doc-1.75.1.tar.bz2 +docbook-xsl-1.75.2.tar.bz2 +docbook-xsl-doc-1.75.2.tar.bz2 Index: docbook-style-xsl.spec =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/docbook-style-xsl.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- docbook-style-xsl.spec 28 May 2009 06:49:55 -0000 1.60 +++ docbook-style-xsl.spec 21 Jul 2009 08:18:33 -0000 1.61 @@ -1,5 +1,5 @@ Name: docbook-style-xsl -Version: 1.75.1 +Version: 1.75.2 Release: 1%{?dist} Group: Applications/Text @@ -117,6 +117,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Tue Jul 21 2009 Ondrej Vasik 1.75.2-1 +- New upstream release 1.75.2 + * Thu May 28 2009 Ondrej Vasik 1.75.1-1 - New upstream release 1.75.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 28 May 2009 06:49:55 -0000 1.27 +++ sources 21 Jul 2009 08:18:33 -0000 1.28 @@ -1,2 +1,2 @@ -76f005edb4edcb949c7a705542e0d0f3 docbook-xsl-1.75.1.tar.bz2 -9eef141ee8d801045f8e38c651ad43fe docbook-xsl-doc-1.75.1.tar.bz2 +d243db1b21b9856d41cb15c6fb488f2b docbook-xsl-1.75.2.tar.bz2 +db8947bf922368b1abcdcef94c508925 docbook-xsl-doc-1.75.2.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 21 08:20:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 08:20:15 +0000 Subject: [pkgdb] CastPodder: nask0 has requested watchbugzilla Message-ID: <20090721082015.78D8310F87B@bastion2.fedora.phx.redhat.com> nask0 has requested the watchbugzilla acl on CastPodder (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/CastPodder From pkgdb at fedoraproject.org Tue Jul 21 08:20:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 08:20:18 +0000 Subject: [pkgdb] CastPodder: nask0 has given up watchbugzilla Message-ID: <20090721082018.EFAD610F89D@bastion2.fedora.phx.redhat.com> nask0 has given up the watchbugzilla acl on CastPodder (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/CastPodder From pkgdb at fedoraproject.org Tue Jul 21 08:20:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 08:20:22 +0000 Subject: [pkgdb] CastPodder: nask0 has requested watchbugzilla Message-ID: <20090721082022.D8E7310F8A5@bastion2.fedora.phx.redhat.com> nask0 has requested the watchbugzilla acl on CastPodder (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/CastPodder From pkgdb at fedoraproject.org Tue Jul 21 08:20:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 08:20:24 +0000 Subject: [pkgdb] CastPodder: nask0 has given up watchbugzilla Message-ID: <20090721082024.C040D10F8A8@bastion2.fedora.phx.redhat.com> nask0 has given up the watchbugzilla acl on CastPodder (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/CastPodder From caolanm at fedoraproject.org Tue Jul 21 08:44:19 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 08:44:19 +0000 (UTC) Subject: rpms/openoffice.org/devel .cvsignore, 1.225, 1.226 sources, 1.367, 1.368 Message-ID: <20090721084419.47FE411C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16832 Modified Files: .cvsignore sources Log Message: next sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/.cvsignore,v retrieving revision 1.225 retrieving revision 1.226 diff -u -p -r1.225 -r1.226 --- .cvsignore 3 Jul 2009 13:52:59 -0000 1.225 +++ .cvsignore 21 Jul 2009 08:43:47 -0000 1.226 @@ -10,3 +10,4 @@ or-IN_DEV300_m40.sdf acor_en-GB.dat acor_en-ZA.dat OOO310_m15.tar.bz2 +OOO310_m16.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/sources,v retrieving revision 1.367 retrieving revision 1.368 diff -u -p -r1.367 -r1.368 --- sources 3 Jul 2009 13:52:59 -0000 1.367 +++ sources 21 Jul 2009 08:43:47 -0000 1.368 @@ -9,4 +9,4 @@ f501a4d62ed251d360ea6c544177a94f redhat 7d7eb194a61b3b1c59e3c82da889ac27 or-IN_DEV300_m40.sdf f3842c64faf98fe9a8752e4a820c97bc acor_en-GB.dat bccdb30725b178260e5ce74d0ad27879 acor_en-ZA.dat -4fb60038d0e39fb124e346ef5832ee1a OOO310_m15.tar.bz2 +19343b5f59e716bd0ce2efaa6e3eb82e OOO310_m16.tar.bz2 From jamatos at fedoraproject.org Tue Jul 21 08:45:27 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Tue, 21 Jul 2009 08:45:27 +0000 (UTC) Subject: rpms/grace/devel grace.spec,1.27,1.28 Message-ID: <20090721084527.1525911C049A@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/grace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17226 Modified Files: grace.spec Log Message: * Tue Jul 21 2009 Jos? Matos - 5.1.22-4 - Fix #504413 (remove last newline in FontDataBase) Index: grace.spec =================================================================== RCS file: /cvs/pkgs/rpms/grace/devel/grace.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- grace.spec 25 Feb 2009 00:52:19 -0000 1.27 +++ grace.spec 21 Jul 2009 08:44:56 -0000 1.28 @@ -3,7 +3,7 @@ Name: grace Version: 5.1.22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Numerical Data Processing and Visualization Tool License: GPLv2+ @@ -149,6 +149,8 @@ fontcount=`wc -l $FontDataBaseFile.tmp` echo $fontcount | sed 's:%{buildroot}.*::' > $FontDataBaseFile cat $FontDataBaseFile.tmp >> $FontDataBaseFile rm $FontDataBaseFile.tmp +# remove last newline in file (fixes bug 504413) +sed -i ':a;N;$!ba;s/\(.*\)\n/\1/' $FontDataBaseFile install -pm 644 doc/*.1 %{buildroot}%{_mandir}/man1/ # doc and example directories are removed from GRACE_HOME and put in %doc @@ -224,6 +226,9 @@ fi %changelog +* Tue Jul 21 2009 Jos? Matos - 5.1.22-4 +- Fix #504413 (remove last newline in FontDataBase) + * Tue Feb 24 2009 Fedora Release Engineering - 5.1.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ovasik at fedoraproject.org Tue Jul 21 08:46:35 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Tue, 21 Jul 2009 08:46:35 +0000 (UTC) Subject: rpms/docbook5-style-xsl/devel .cvsignore, 1.7, 1.8 docbook5-style-xsl.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090721084635.C39D311C005E@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook5-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17673 Modified Files: .cvsignore docbook5-style-xsl.spec sources Log Message: new upstream release 1.75.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/docbook5-style-xsl/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 28 May 2009 06:32:09 -0000 1.7 +++ .cvsignore 21 Jul 2009 08:46:05 -0000 1.8 @@ -1 +1 @@ -docbook-xsl-ns-1.75.1.tar.bz2 +docbook-xsl-ns-1.75.2.tar.bz2 Index: docbook5-style-xsl.spec =================================================================== RCS file: /cvs/extras/rpms/docbook5-style-xsl/devel/docbook5-style-xsl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- docbook5-style-xsl.spec 28 May 2009 06:32:09 -0000 1.8 +++ docbook5-style-xsl.spec 21 Jul 2009 08:46:05 -0000 1.9 @@ -1,5 +1,5 @@ Name: docbook5-style-xsl -Version: 1.75.1 +Version: 1.75.2 Release: 1%{?dist} Group: Applications/Text @@ -88,6 +88,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Tue Jul 21 2009 Ondrej Vasik 1.75.2-1 +- new upstream release 1.75.2 + * Thu May 28 2009 Ondrej Vasik 1.75.1-1 - new upstream release 1.75.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/docbook5-style-xsl/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 28 May 2009 06:32:09 -0000 1.7 +++ sources 21 Jul 2009 08:46:05 -0000 1.8 @@ -1 +1 @@ -e38376491a70cac22078d688ca38e1e1 docbook-xsl-ns-1.75.1.tar.bz2 +e9b202d49accdca7a1883bcbaee5f984 docbook-xsl-ns-1.75.2.tar.bz2 From caolanm at fedoraproject.org Tue Jul 21 08:46:32 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 08:46:32 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1966,1.1967 Message-ID: <20090721084632.731C411C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17625 Modified Files: openoffice.org.spec Log Message: next milestone Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1966 retrieving revision 1.1967 diff -u -p -r1.1966 -r1.1967 --- openoffice.org.spec 20 Jul 2009 08:47:39 -0000 1.1966 +++ openoffice.org.spec 21 Jul 2009 08:46:02 -0000 1.1967 @@ -1,6 +1,6 @@ %define oootag OOO310 -%define ooomilestone 15 -%define rh_rpm_release 3 +%define ooomilestone 16 +%define rh_rpm_release 1 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -4174,7 +4174,8 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Mon Jul 20 2009 Caol?n McNamara - 1:3.1.1-15.3 +* Tue Jul 21 2009 Caol?n McNamara - 1:3.1.1-16.1 +- next milestone - Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch * Thu Jul 16 2009 Caol?n McNamara - 1:3.1.1-15.2 From jfch2222 at fedoraproject.org Tue Jul 21 08:59:16 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Tue, 21 Jul 2009 08:59:16 +0000 (UTC) Subject: rpms/openssh/devel openssh-5.2p1-sesftp.patch,1.1,1.2 Message-ID: <20090721085916.ADC2111C005E@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22710 Modified Files: openssh-5.2p1-sesftp.patch Log Message: changed internal-sftp context to sftpd_t openssh-5.2p1-sesftp.patch: session.c | 4 ++++ 1 file changed, 4 insertions(+) Index: openssh-5.2p1-sesftp.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-sesftp.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openssh-5.2p1-sesftp.patch 17 Jul 2009 07:06:59 -0000 1.1 +++ openssh-5.2p1-sesftp.patch 21 Jul 2009 08:59:16 -0000 1.2 @@ -1,6 +1,6 @@ diff -up openssh-5.2p1/session.c.sesftp openssh-5.2p1/session.c ---- openssh-5.2p1/session.c.sesftp 2009-07-16 22:34:26.000000000 +0200 -+++ openssh-5.2p1/session.c 2009-07-16 22:59:22.000000000 +0200 +--- openssh-5.2p1/session.c.sesftp 2009-07-10 20:32:04.348435048 +0200 ++++ openssh-5.2p1/session.c 2009-07-10 21:10:42.247557847 +0200 @@ -58,6 +58,7 @@ #include #include @@ -9,11 +9,13 @@ diff -up openssh-5.2p1/session.c.sesftp #include "openbsd-compat/sys-queue.h" #include "xmalloc.h" -@@ -1816,6 +1817,7 @@ do_child(Session *s, const char *command +@@ -1816,6 +1817,9 @@ do_child(Session *s, const char *command argv[i] = NULL; optind = optreset = 1; __progname = argv[0]; -+ setcon ("system_u:system_r:sftpd_t"); ++ if (setcon ("unconfined_u:system_r:sftpd_t:s0-s0:c0.c1023") < 0) ++ logit("do_child: setcon failed witch %s", strerror (errno)); ++ exit(sftp_server_main(i, argv, s->pw)); } From jamatos at fedoraproject.org Tue Jul 21 09:04:54 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Tue, 21 Jul 2009 09:04:54 +0000 (UTC) Subject: rpms/grace/F-11 grace.spec,1.27,1.28 Message-ID: <20090721090454.05BC411C005E@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/grace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24801 Modified Files: grace.spec Log Message: * Tue Jul 21 2009 Jos? Matos - 5.1.22-4 - Fix #504413 (remove last newline in FontDataBase) Index: grace.spec =================================================================== RCS file: /cvs/pkgs/rpms/grace/F-11/grace.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- grace.spec 25 Feb 2009 00:52:19 -0000 1.27 +++ grace.spec 21 Jul 2009 09:04:53 -0000 1.28 @@ -3,7 +3,7 @@ Name: grace Version: 5.1.22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Numerical Data Processing and Visualization Tool License: GPLv2+ @@ -149,6 +149,8 @@ fontcount=`wc -l $FontDataBaseFile.tmp` echo $fontcount | sed 's:%{buildroot}.*::' > $FontDataBaseFile cat $FontDataBaseFile.tmp >> $FontDataBaseFile rm $FontDataBaseFile.tmp +# remove last newline in file (fixes bug 504413) +sed -i ':a;N;$!ba;s/\(.*\)\n/\1/' $FontDataBaseFile install -pm 644 doc/*.1 %{buildroot}%{_mandir}/man1/ # doc and example directories are removed from GRACE_HOME and put in %doc @@ -224,6 +226,9 @@ fi %changelog +* Tue Jul 21 2009 Jos? Matos - 5.1.22-4 +- Fix #504413 (remove last newline in FontDataBase) + * Tue Feb 24 2009 Fedora Release Engineering - 5.1.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Tue Jul 21 09:07:50 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 09:07:50 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec, 1.1967, 1.1968 openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch, 1.1, NONE Message-ID: <20090721090750.7767511C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25687 Modified Files: openoffice.org.spec Removed Files: openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch Log Message: drop integrated openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1967 retrieving revision 1.1968 diff -u -p -r1.1967 -r1.1968 --- openoffice.org.spec 21 Jul 2009 08:46:02 -0000 1.1967 +++ openoffice.org.spec 21 Jul 2009 09:07:20 -0000 1.1968 @@ -145,15 +145,14 @@ Patch67: workspace.unifypaper01.patch Patch68: openoffice.org-3.1.0.ooo102061.sc.cellanchoring.patch Patch69: openoffice.org-3.1.0.ooo102142.sd.resleak.patch Patch70: workspace.calc51.patch -Patch71: openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch -Patch72: openoffice.org-2.0.0.ooo46270.svx.search-dialog.no-find-all-in-draw.patch -Patch73: openoffice.org-3.1.0.ooo102920.i18npool.utf16bustage.patch -Patch74: workspace.aw073.patch -Patch75: workspace.cmcfixes60.patch -Patch76: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch -Patch77: workspace.vcl103.patch -Patch78: openoffice.org-3.1.0.ooo103451.svx.64bit.patch -Patch79: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch +Patch71: openoffice.org-2.0.0.ooo46270.svx.search-dialog.no-find-all-in-draw.patch +Patch72: openoffice.org-3.1.0.ooo102920.i18npool.utf16bustage.patch +Patch73: workspace.aw073.patch +Patch74: workspace.cmcfixes60.patch +Patch75: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch +Patch76: workspace.vcl103.patch +Patch77: openoffice.org-3.1.0.ooo103451.svx.64bit.patch +Patch78: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1656,15 +1655,14 @@ cat %{PATCH11} >> svtools/source/dialogs %patch68 -p0 -b .ooo102061.sc.cellanchoring.patch %patch69 -p0 -b .ooo102142.sd.resleak.patch %patch70 -p0 -b .workspace.calc51.patch -%patch71 -p0 -b .ooo102679.sdext.buildfix.patch -%patch72 -p0 -b .ooo46270.svx.search-dialog.no-find-all-in-draw.patch -%patch73 -p0 -b .ooo102920.i18npool.utf16bustage.patch -%patch74 -p0 -b .workspace.aw073.patch -%patch75 -p0 -b .workspace.cmcfixes60.patch -%patch76 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch -%patch77 -p0 -b .workspace.vcl103.patch -%patch78 -p0 -b .ooo103451.svx.64bit.patch -%patch79 -p0 -b .ooo103651.canvas.nosubpixel.patch +%patch71 -p0 -b .ooo46270.svx.search-dialog.no-find-all-in-draw.patch +%patch72 -p0 -b .ooo102920.i18npool.utf16bustage.patch +%patch73 -p0 -b .workspace.aw073.patch +%patch74 -p0 -b .workspace.cmcfixes60.patch +%patch75 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch +%patch76 -p0 -b .workspace.vcl103.patch +%patch77 -p0 -b .ooo103451.svx.64bit.patch +%patch78 -p0 -b .ooo103651.canvas.nosubpixel.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4176,6 +4174,7 @@ fi %changelog * Tue Jul 21 2009 Caol?n McNamara - 1:3.1.1-16.1 - next milestone +- drop integrated openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch - Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch * Thu Jul 16 2009 Caol?n McNamara - 1:3.1.1-15.2 --- openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch DELETED --- From pbrobinson at fedoraproject.org Tue Jul 21 09:11:54 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Tue, 21 Jul 2009 09:11:54 +0000 (UTC) Subject: rpms/clutter-cairo/devel dead.package, NONE, 1.1 .cvsignore, 1.4, NONE Makefile, 1.1, NONE clutter-cairo.spec, 1.4, NONE import.log, 1.2, NONE sources, 1.4, NONE Message-ID: <20090721091154.3D04A11C005E@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/clutter-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27123 Added Files: dead.package Removed Files: .cvsignore Makefile clutter-cairo.spec import.log sources Log Message: Mark clutter-cairo as a dead.package for the F-12/devel branch --- NEW FILE dead.package --- The clutter-cairo library has been deprecated by the Cairo API inside Clutter 0.9. Use the ClutterCairoTexture in Clutter 0.9 instead. --- .cvsignore DELETED --- --- Makefile DELETED --- --- clutter-cairo.spec DELETED --- --- import.log DELETED --- --- sources DELETED --- From mcrha at fedoraproject.org Tue Jul 21 09:16:30 2009 From: mcrha at fedoraproject.org (Milan Crha) Date: Tue, 21 Jul 2009 09:16:30 +0000 (UTC) Subject: rpms/evolution-exchange/F-11 evolution-exchange-2.26.3-often-drop-connection.patch, NONE, 1.1 evolution-exchange.spec, 1.61, 1.62 Message-ID: <20090721091630.944A511C005E@cvs1.fedora.phx.redhat.com> Author: mcrha Update of /cvs/pkgs/rpms/evolution-exchange/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28399 Modified Files: evolution-exchange.spec Added Files: evolution-exchange-2.26.3-often-drop-connection.patch Log Message: Resolves: bug 510725 evolution-exchange-2.26.3-often-drop-connection.patch: mail-stub-exchange.c | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) --- NEW FILE evolution-exchange-2.26.3-often-drop-connection.patch --- diff -up evolution-exchange-2.26.3/mail/mail-stub-exchange.c.often-drop-connection evolution-exchange-2.26.3/mail/mail-stub-exchange.c --- evolution-exchange-2.26.3/mail/mail-stub-exchange.c.often-drop-connection 2009-07-21 11:12:09.000000000 +0200 +++ evolution-exchange-2.26.3/mail/mail-stub-exchange.c 2009-07-21 11:12:48.000000000 +0200 @@ -402,13 +402,17 @@ message_removed (MailStub *stub, MailStu MailStubExchangeMessage *mmsg; guint index; + g_static_rec_mutex_lock (&g_changed_msgs_mutex); mmsg = g_hash_table_lookup (mfld->messages_by_href, href); - if (!mmsg) + if (!mmsg) { + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); return; + } index = find_message_index (mfld, mmsg->seq); g_return_if_fail (index != -1); message_remove_at_index (stub, mfld, index); + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); } static void @@ -1134,12 +1138,16 @@ sync_deletions (MailStubExchange *mse, M e2k_results_free (results, nresults); + g_static_rec_mutex_lock (&g_changed_msgs_mutex); if (visible_count >= mfld->messages->len) { - if (mfld->deleted_count == deleted_count) + if (mfld->deleted_count == deleted_count) { + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); return; + } if (mfld->deleted_count == 0) { mfld->deleted_count = deleted_count; + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); return; } } @@ -1165,7 +1173,7 @@ sync_deletions (MailStubExchange *mse, M my_i = mfld->messages->len - 1; while ((result = e2k_result_iter_next (iter))) { mmsg = find_message_by_href (mfld, result->href); - if (!mmsg || mmsg->seq >= highest_verified_seq) { + if (!mmsg || (mmsg->seq >= highest_verified_seq && highest_verified_seq != -1)) { /* This is a new message or a message we already * verified. Skip it. */ @@ -1193,6 +1201,7 @@ sync_deletions (MailStubExchange *mse, M message_removed (stub, mfld, my_mmsg->href); changes = TRUE; my_i--; + highest_unverified_index--; my_mmsg = mfld->messages->pdata[my_i]; } highest_verified_seq = mmsg->seq; @@ -1206,6 +1215,7 @@ sync_deletions (MailStubExchange *mse, M } my_i--; + highest_unverified_index--; } status = e2k_result_iter_free (iter); @@ -1220,6 +1230,8 @@ sync_deletions (MailStubExchange *mse, M changes = TRUE; } + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); + if (changes) mail_stub_push_changes (stub); } @@ -1446,6 +1458,7 @@ refresh_folder_internal (MailStub *stub, CAMEL_STUB_ARG_FOLDER, mfld->name, CAMEL_STUB_ARG_END); + g_static_rec_mutex_lock (&g_changed_msgs_mutex); qsort (messages->data, messages->len, sizeof (rm), refresh_message_compar); for (i = 0; i < messages->len; i++) { @@ -1500,6 +1513,7 @@ refresh_folder_internal (MailStub *stub, CAMEL_STUB_ARG_END); mfld->scanned = TRUE; + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); folder_changed (mfld); if (background) @@ -1591,6 +1605,7 @@ expunge_uids (MailStub *stub, const char if (!mfld) return; + g_static_rec_mutex_lock (&g_changed_msgs_mutex); hrefs = g_ptr_array_new (); for (i = 0; i < uids->len; i++) { mmsg = find_message (mfld, uids->pdata[i]); @@ -1604,6 +1619,7 @@ expunge_uids (MailStub *stub, const char */ g_ptr_array_free (hrefs, TRUE); mail_stub_return_ok (stub); + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); return; } @@ -1627,6 +1643,7 @@ expunge_uids (MailStub *stub, const char mail_stub_return_progress (stub, ndeleted * 100 / hrefs->len); } status = e2k_result_iter_free (iter); + g_static_rec_mutex_unlock (&g_changed_msgs_mutex); mail_stub_return_data (stub, CAMEL_STUB_RETVAL_THAW_FOLDER, CAMEL_STUB_ARG_FOLDER, mfld->name, Index: evolution-exchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/F-11/evolution-exchange.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- evolution-exchange.spec 29 Jun 2009 13:17:54 -0000 1.61 +++ evolution-exchange.spec 21 Jul 2009 09:16:30 -0000 1.62 @@ -21,7 +21,7 @@ Name: evolution-exchange Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Evolution plugin to interact with MS Exchange Server License: GPLv2+ @@ -39,6 +39,9 @@ Patch11: evolution-exchange-2.10.1-fix-6 # GNOME bug #443022 Patch12: evolution-exchange-2.11.2-fix-library-order.patch +# GNOME bug #522277 / RH bug #510725 +Patch13: evolution-exchange-2.26.3-often-drop-connection.patch + ### Dependencies ### Requires: gnutls @@ -70,6 +73,7 @@ Microsoft Exchange Server. %patch11 -p1 -b .fix-64bit-acinclude.m4 %patch12 -p1 -b .fix-library-order +%patch13 -p1 -b .often-drop-connection %build export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED" @@ -151,6 +155,9 @@ gconftool-2 --makefile-install-rule %{_s %{_sysconfdir}/gconf/schemas/apps_exchange_addressbook-%{evo_major}.schemas %changelog +* Tue Jul 21 2009 Milan Crha - 2.26.3-2.fc11 +- Add patch to RH bug #510725 (often connection drop to eex) + * Mon Jun 29 2009 Matthew Barnes - 2.26.3-1.fc11 - Update to 2.26.3 From caolanm at fedoraproject.org Tue Jul 21 09:33:34 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 09:33:34 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec, 1.1968, 1.1969 workspace.aw073.patch, 1.1, NONE Message-ID: <20090721093334.C355D11C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1708 Modified Files: openoffice.org.spec Removed Files: workspace.aw073.patch Log Message: drop integrated workspace.aw073.patch Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1968 retrieving revision 1.1969 diff -u -p -r1.1968 -r1.1969 --- openoffice.org.spec 21 Jul 2009 09:07:20 -0000 1.1968 +++ openoffice.org.spec 21 Jul 2009 09:33:02 -0000 1.1969 @@ -147,12 +147,11 @@ Patch69: openoffice.org-3.1.0.ooo102142. Patch70: workspace.calc51.patch Patch71: openoffice.org-2.0.0.ooo46270.svx.search-dialog.no-find-all-in-draw.patch Patch72: openoffice.org-3.1.0.ooo102920.i18npool.utf16bustage.patch -Patch73: workspace.aw073.patch -Patch74: workspace.cmcfixes60.patch -Patch75: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch -Patch76: workspace.vcl103.patch -Patch77: openoffice.org-3.1.0.ooo103451.svx.64bit.patch -Patch78: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch +Patch73: workspace.cmcfixes60.patch +Patch74: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch +Patch75: workspace.vcl103.patch +Patch76: openoffice.org-3.1.0.ooo103451.svx.64bit.patch +Patch77: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1657,12 +1656,11 @@ cat %{PATCH11} >> svtools/source/dialogs %patch70 -p0 -b .workspace.calc51.patch %patch71 -p0 -b .ooo46270.svx.search-dialog.no-find-all-in-draw.patch %patch72 -p0 -b .ooo102920.i18npool.utf16bustage.patch -%patch73 -p0 -b .workspace.aw073.patch -%patch74 -p0 -b .workspace.cmcfixes60.patch -%patch75 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch -%patch76 -p0 -b .workspace.vcl103.patch -%patch77 -p0 -b .ooo103451.svx.64bit.patch -%patch78 -p0 -b .ooo103651.canvas.nosubpixel.patch +%patch73 -p0 -b .workspace.cmcfixes60.patch +%patch74 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch +%patch75 -p0 -b .workspace.vcl103.patch +%patch76 -p0 -b .ooo103451.svx.64bit.patch +%patch77 -p0 -b .ooo103651.canvas.nosubpixel.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4175,6 +4173,7 @@ fi * Tue Jul 21 2009 Caol?n McNamara - 1:3.1.1-16.1 - next milestone - drop integrated openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch +- drop integrated workspace.aw073.patch - Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch * Thu Jul 16 2009 Caol?n McNamara - 1:3.1.1-15.2 --- workspace.aw073.patch DELETED --- From atkac at fedoraproject.org Tue Jul 21 10:07:29 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Tue, 21 Jul 2009 10:07:29 +0000 (UTC) Subject: rpms/notification-daemon/devel notification-daemon.spec, 1.28, 1.29 sexy.patch, 1.1, 1.2 Message-ID: <20090721100729.2DDE911C005E@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/notification-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14234 Modified Files: notification-daemon.spec sexy.patch Log Message: - improve libsexy patch Get rid of notification-daemon termination caused by undefined symbol: /usr/libexec/notification-daemon: symbol lookup error: /usr/lib64/notification-daemon-1.0/engines/libstandard.so: undefined symbol: SEXY_URL_LABEL Index: notification-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon/devel/notification-daemon.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- notification-daemon.spec 2 Jul 2009 04:32:00 -0000 1.28 +++ notification-daemon.spec 21 Jul 2009 10:06:58 -0000 1.29 @@ -7,7 +7,7 @@ Summary: Desktop Notification Daemon Name: notification-daemon Version: 0.4.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.galago-project.org/specs/notification/ License: GPLv2+ Group: System Environment/Libraries @@ -107,6 +107,9 @@ gconftool-2 --makefile-install-rule \ %changelog +* Tue Jul 21 2009 Adam Tkac - 0.4.0-4 +- improve libsexy patch + * Thu Jul 2 2009 Matthias Clasen - 0.4.0-3 - Drop libsexy dependency sexy.patch: configure.ac | 2 -- src/themes/standard/theme.c | 17 ++++++++++++----- 2 files changed, 12 insertions(+), 7 deletions(-) Index: sexy.patch =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon/devel/sexy.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sexy.patch 2 Jul 2009 04:32:00 -0000 1.1 +++ sexy.patch 21 Jul 2009 10:06:58 -0000 1.2 @@ -1,6 +1,7 @@ ---- notification-daemon-0.4.0/configure.ac 2008-11-20 05:46:52.000000000 -0500 -+++ notification-daemon-0.4.0.sexy/configure.ac 2009-07-02 00:19:42.150024570 -0400 -@@ -75,14 +75,12 @@ +diff -up notification-daemon-0.4.0/configure.ac.sexy notification-daemon-0.4.0/configure.ac +--- notification-daemon-0.4.0/configure.ac.sexy 2008-11-20 11:46:52.000000000 +0100 ++++ notification-daemon-0.4.0/configure.ac 2009-07-21 11:46:18.769094999 +0200 +@@ -75,14 +75,12 @@ AM_GLIB_GNU_GETTEXT REQ_GTK_VERSION=2.10.0 REQ_GLIB_VERSION=$REQ_GTK_VERSION @@ -15,8 +16,9 @@ gconf-2.0, \ libwnck-1.0 \ " ---- notification-daemon-0.4.0/src/themes/standard/theme.c 2008-11-20 04:38:01.000000000 -0500 -+++ notification-daemon-0.4.0.sexy/src/themes/standard/theme.c 2009-07-02 00:19:11.524018225 -0400 +diff -up notification-daemon-0.4.0/src/themes/standard/theme.c.sexy notification-daemon-0.4.0/src/themes/standard/theme.c +--- notification-daemon-0.4.0/src/themes/standard/theme.c.sexy 2008-11-20 10:38:01.000000000 +0100 ++++ notification-daemon-0.4.0/src/themes/standard/theme.c 2009-07-21 11:59:09.869092990 +0200 @@ -1,7 +1,6 @@ #include "config.h" @@ -25,7 +27,7 @@ typedef void (*ActionInvokedCb)(GtkWindow *nw, const char *key); typedef void (*UrlClickedCb)(GtkWindow *nw, const char *url); -@@ -563,6 +562,14 @@ +@@ -563,6 +562,14 @@ configure_event_cb(GtkWidget *nw, return FALSE; } @@ -40,7 +42,7 @@ GtkWindow * create_notification(UrlClickedCb url_clicked) { -@@ -722,12 +729,12 @@ +@@ -722,12 +729,12 @@ create_notification(UrlClickedCb url_cli gtk_widget_show(vbox); gtk_box_pack_start(GTK_BOX(windata->content_hbox), vbox, TRUE, TRUE, 0); @@ -56,3 +58,12 @@ atkobj = gtk_widget_get_accessible(windata->body_label); atk_object_set_description(atkobj, "Notification body text."); +@@ -801,7 +808,7 @@ set_notification_text(GtkWindow *nw, con + gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); + g_free(str); + +- sexy_url_label_set_markup(SEXY_URL_LABEL(windata->body_label), body); ++ gtk_label_set_text(windata->body_label, body); + + if (body == NULL || *body == '\0') + gtk_widget_hide(windata->body_label); From pmatilai at fedoraproject.org Tue Jul 21 10:16:03 2009 From: pmatilai at fedoraproject.org (Panu Matilainen) Date: Tue, 21 Jul 2009 10:16:03 +0000 (UTC) Subject: rpms/rpm/devel .cvsignore, 1.36, 1.37 rpm.spec, 1.355, 1.356 sources, 1.142, 1.143 rpm-4.7.0-dwarf3.patch, 1.1, NONE rpm-4.7.0-findlang-kde3.patch, 1.1, NONE rpm-4.7.0-fp-findbyfile.patch, 1.1, NONE rpm-4.7.0-fp-symlink.patch, 1.1, NONE rpm-4.7.0-hardlink-sizes.patch, 1.1, NONE rpm-4.7.0-osgideps.patch, 1.1, NONE rpm-4.7.0-prtsig.patch, 1.1, NONE rpm-4.7.0-python-altnevr.patch, 1.1, NONE Message-ID: <20090721101603.A2C8011C005E@cvs1.fedora.phx.redhat.com> Author: pmatilai Update of /cvs/pkgs/rpms/rpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17583 Modified Files: .cvsignore rpm.spec sources Removed Files: rpm-4.7.0-dwarf3.patch rpm-4.7.0-findlang-kde3.patch rpm-4.7.0-fp-findbyfile.patch rpm-4.7.0-fp-symlink.patch rpm-4.7.0-hardlink-sizes.patch rpm-4.7.0-osgideps.patch rpm-4.7.0-prtsig.patch rpm-4.7.0-python-altnevr.patch Log Message: - update to 4.7.1, drop merged patches - fix source url Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rpm/devel/.cvsignore,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- .cvsignore 16 Apr 2009 09:10:33 -0000 1.36 +++ .cvsignore 21 Jul 2009 10:15:32 -0000 1.37 @@ -1 +1 @@ -rpm-4.7.0.tar.bz2 +rpm-4.7.1.tar.bz2 Index: rpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpm/devel/rpm.spec,v retrieving revision 1.355 retrieving revision 1.356 diff -u -p -r1.355 -r1.356 --- rpm.spec 20 Jul 2009 14:06:20 -0000 1.355 +++ rpm.spec 21 Jul 2009 10:15:33 -0000 1.356 @@ -11,7 +11,7 @@ %define rpmhome /usr/lib/rpm -%define rpmver 4.7.0 +%define rpmver 4.7.1 %define snapver {nil} %define srcver %{rpmver} @@ -21,10 +21,10 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: 9%{?dist} +Release: 1%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ -Source0: http://rpm.org/releases/testing/%{name}-%{srcver}.tar.bz2 +Source0: http://rpm.org/releases/rpm-4.7.x/%{name}-%{srcver}.tar.bz2 %if %{with int_bdb} Source1: db-%{bdbver}.tar.gz %endif @@ -39,14 +39,6 @@ Patch2: rpm-4.5.90-gstreamer-provides.pa Patch3: rpm-4.6.0-fedora-specspo.patch # Patches already in upstream -Patch200: rpm-4.7.0-findlang-kde3.patch -Patch201: rpm-4.7.0-prtsig.patch -Patch202: rpm-4.7.0-python-altnevr.patch -Patch203: rpm-4.7.0-hardlink-sizes.patch -Patch204: rpm-4.7.0-dwarf3.patch -Patch205: rpm-4.7.0-osgideps.patch -Patch206: rpm-4.7.0-fp-symlink.patch -Patch207: rpm-4.7.0-fp-findbyfile.patch # These are not yet upstream Patch300: rpm-4.7.0-extra-provides.patch @@ -199,15 +191,6 @@ packages on a system. %patch2 -p1 -b .gstreamer-prov %patch3 -p1 -b .fedora-specspo -%patch200 -p1 -b .findlang-kde3 -%patch201 -p1 -b .prtsig -%patch202 -p1 -b .py-altnevr -%patch203 -p1 -b .hardlink-sizes -%patch204 -p1 -b .dwarf3 -%patch205 -p1 -b .osgideps -%patch206 -p1 -b .fp-symlink -%patch207 -p1 -b .fp-findbyfile - %patch300 -p1 -b .extra-prov %patch301 -p1 -b .niagara @@ -421,6 +404,10 @@ exit 0 %doc doc/librpm/html/* %changelog +* Tue Jul 21 2009 Panu Matilainen - 4.7.1-1 +- update to 4.7.1 ((http://rpm.org/wiki/Releases/4.7.1) +- fix source url + * Mon Jul 20 2009 Bill Nottingham - 4.7.0-9 - enable XZ support Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpm/devel/sources,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- sources 16 Apr 2009 09:10:33 -0000 1.142 +++ sources 21 Jul 2009 10:15:33 -0000 1.143 @@ -1 +1 @@ -74791d638c571ec79f06227d453a6a03 rpm-4.7.0.tar.bz2 +e1abe3bcf6514a319a3803d2cf3bf83b rpm-4.7.1.tar.bz2 --- rpm-4.7.0-dwarf3.patch DELETED --- --- rpm-4.7.0-findlang-kde3.patch DELETED --- --- rpm-4.7.0-fp-findbyfile.patch DELETED --- --- rpm-4.7.0-fp-symlink.patch DELETED --- --- rpm-4.7.0-hardlink-sizes.patch DELETED --- --- rpm-4.7.0-osgideps.patch DELETED --- --- rpm-4.7.0-prtsig.patch DELETED --- --- rpm-4.7.0-python-altnevr.patch DELETED --- From xhorak at fedoraproject.org Tue Jul 21 10:24:05 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 10:24:05 +0000 (UTC) Subject: rpms/thunderbird/F-11 .cvsignore, 1.23, 1.24 sources, 1.31, 1.32 thunderbird-shared-error.patch, 1.1, 1.2 thunderbird.spec, 1.136, 1.137 Message-ID: <20090721102405.B8DE111C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20879 Modified Files: .cvsignore sources thunderbird-shared-error.patch thunderbird.spec Log Message: Update to 3.0 beta3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/F-11/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 2 Mar 2009 12:50:21 -0000 1.23 +++ .cvsignore 21 Jul 2009 10:24:05 -0000 1.24 @@ -1,2 +1,4 @@ thunderbird-langpacks-3.0-20090302.tar.bz2 thunderbird-3.0b2-source.tar.bz2 +thunderbird-3.0b3-source.tar.bz2 +thunderbird-langpacks-3.0-20090721.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/F-11/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 13 May 2009 22:51:44 -0000 1.31 +++ sources 21 Jul 2009 10:24:05 -0000 1.32 @@ -1,2 +1,2 @@ -91bcb8746641112642f043a81cb6d2f8 thunderbird-langpacks-3.0-20090302.tar.bz2 -ec5efa909535d4a764d8a0c0fa5d4a38 thunderbird-3.0-6a6386c16e98-source.tar.bz2 +84a004d76e82325dd2cc5ff271fd3952 thunderbird-3.0b3-source.tar.bz2 +f38cc1a9e69bff77e4eba2385272c671 thunderbird-langpacks-3.0-20090721.tar.bz2 thunderbird-shared-error.patch: Makefile.in | 2 ++ 1 file changed, 2 insertions(+) Index: thunderbird-shared-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/F-11/thunderbird-shared-error.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- thunderbird-shared-error.patch 2 Mar 2009 12:57:03 -0000 1.1 +++ thunderbird-shared-error.patch 21 Jul 2009 10:24:05 -0000 1.2 @@ -1,39 +1,15 @@ -diff -upU8 thunderbird-3.0/mail/installer/Makefile.in.shared-error thunderbird-3.0/mail/installer/Makefile.in ---- thunderbird-3.0/mail/installer/Makefile.in.shared-error 2009-02-24 03:16:03.000000000 +0100 -+++ thunderbird-3.0/mail/installer/Makefile.in 2009-02-27 16:02:31.000000000 +0100 -@@ -56,16 +56,17 @@ NO_PKG_FILES = \ - PalmSyncInstall.exe \ - $(NULL) - - include $(topsrcdir)/config/rules.mk - - MOZ_PKG_REMOVALS = $(srcdir)/removed-files.in - - ifdef BUILD_STATIC_LIBS +diff -up thunderbird-3.0/mail/installer/Makefile.in.shared-error thunderbird-3.0/mail/installer/Makefile.in +--- thunderbird-3.0/mail/installer/Makefile.in.shared-error 2009-07-13 14:56:36.000000000 +0200 ++++ thunderbird-3.0/mail/installer/Makefile.in 2009-07-14 12:41:16.000000000 +0200 +@@ -94,9 +94,11 @@ endif + # mozconfig instead. + ifndef MAIL_PKG_SHARED + ifndef BUILD_STATIC_LIBS +ifeq (BUILD_STATIC_LIBS, 1) - ifeq (WINNT,$(OS_ARCH)) - MOZ_PKG_MANIFEST_P = $(srcdir)/windows/packages-static - endif - else - $(error you need a "--enable-static --disable-shared" build to create an installer) + $(error you need an "--enable-static" build to package a build) endif - - MOZ_NONLOCALIZED_PKG_LIST = \ -@@ -80,16 +81,17 @@ MOZ_LOCALIZED_PKG_LIST = $(AB_CD) - DEFINES += -DAB_CD=$(AB_CD) - - ifdef MOZ_PKG_MANIFEST_P - MOZ_PKG_MANIFEST = packages-static - - $(MOZ_PKG_MANIFEST): $(MOZ_PKG_MANIFEST_P) - $(PERL) $(MOZILLA_SRCDIR)/config/preprocessor.pl $(DEFINES) $(ACDEFINES) $< > $@ endif +endif - ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) - MOZ_PKG_MAC_DSSTORE=branding/dsstore - MOZ_PKG_MAC_BACKGROUND=branding/background.png - MOZ_PKG_MAC_ICON=branding/disk.icns - MOZ_PKG_MAC_EXTRA=--symlink "/Applications:/ " - endif + include $(MOZILLA_SRCDIR)/toolkit/mozapps/installer/packager.mk Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/F-11/thunderbird.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- thunderbird.spec 13 May 2009 22:51:45 -0000 1.136 +++ thunderbird.spec 21 Jul 2009 10:24:05 -0000 1.137 @@ -3,26 +3,26 @@ %define nss_version 3.12.3 %define cairo_version 1.0 %define dbus_glib_version 0.6 -%define version_internal 3.0b3pre -%define build_langpacks 0 +%define version_internal 3.0b3 +%define build_langpacks 1 %define official_branding 1 Summary: Mozilla Thunderbird mail/newsgroup client Name: thunderbird Version: 3.0 -Release: 2.4.b3pre.hg.6a6386c16e98%{?dist} +Release: 2.5.b3%{?dist} URL: http://www.mozilla.org/projects/thunderbird/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet %if %{official_branding} -%define tarball thunderbird-%{version}-6a6386c16e98-source.tar.bz2 +%define tarball thunderbird-%{version}b3-source.tar.bz2 %else %define tarball thunderbird-3.0b2-source.tar.bz2 %endif Source0: %{tarball} %if %{build_langpacks} -Source1: thunderbird-langpacks-%{version}-20090302.tar.bz2 +Source1: thunderbird-langpacks-%{version}-20090721.tar.bz2 %endif Source10: thunderbird-mozconfig Source11: thunderbird-mozconfig-branded @@ -169,18 +169,6 @@ install -Dm755 %{SOURCE30} $RPM_BUILD_RO %{__rm} -f $RPM_BUILD_ROOT%{_bindir}/thunderbird-config -cd $RPM_BUILD_ROOT%{mozappdir}/chrome -find . -name "*" -type d -maxdepth 1 -exec %{__rm} -rf {} \; -cd - - -%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/chrome/icons/default/ -%{__cp} other-licenses/branding/%{name}/default.xpm \ - $RPM_BUILD_ROOT%{mozappdir}/chrome/icons/default/ - -%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/icons/ -%{__cp} other-licenses/branding/%{name}/default.xpm \ - $RPM_BUILD_ROOT%{mozappdir}/icons/ - # own mozilla plugin dir (#135050) %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins @@ -295,10 +283,14 @@ fi %exclude %{mozappdir}/license.html %exclude %{mozappdir}/dependentlibs.list %exclude %{mozappdir}/removed-files +%{mozappdir}/update.locale #=============================================================================== %changelog +* Thu Jul 16 2009 Jan Horak - 3.0-2.5 +- Update to 3.0 beta3 + * Wed May 13 2009 Christopher Aillon - 3.0-2.4 - Update to a post beta2 snapshot From vcrhonek at fedoraproject.org Tue Jul 21 11:07:05 2009 From: vcrhonek at fedoraproject.org (vcrhonek) Date: Tue, 21 Jul 2009 11:07:05 +0000 (UTC) Subject: rpms/tog-pegasus/devel tog-pegasus.spec,1.71,1.72 Message-ID: <20090721110705.DDFF111C005E@cvs1.fedora.phx.redhat.com> Author: vcrhonek Update of /cvs/extras/rpms/tog-pegasus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1523 Modified Files: tog-pegasus.spec Log Message: Fix Group Index: tog-pegasus.spec =================================================================== RCS file: /cvs/extras/rpms/tog-pegasus/devel/tog-pegasus.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- tog-pegasus.spec 16 Jun 2009 12:09:03 -0000 1.71 +++ tog-pegasus.spec 21 Jul 2009 11:06:35 -0000 1.72 @@ -41,12 +41,12 @@ %endif Version: 2.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 2 # Summary: OpenPegasus WBEM Services for Linux Name: tog-pegasus -Group: Systems Management/Base +Group: System Environment/Daemons URL: http://www.openpegasus.org # License: MIT @@ -461,6 +461,9 @@ fi %changelog +* Tue Jul 21 2009 Vitezslav Crhonek - 2:2.9.0-2 +- Fix Group + * Mon Jun 16 2009 Vitezslav Crhonek - 2:2.9.0-1 - Update to upstream version 2.9.0 - Remove redhat-lsb requires From ssp at fedoraproject.org Tue Jul 21 11:36:41 2009 From: ssp at fedoraproject.org (Soren Sandmann Pedersen) Date: Tue, 21 Jul 2009 11:36:41 +0000 (UTC) Subject: rpms/pixman/devel .cvsignore, 1.24, 1.25 pixman.spec, 1.38, 1.39 sources, 1.26, 1.27 Message-ID: <20090721113641.CCDDC11C005E@cvs1.fedora.phx.redhat.com> Author: ssp Update of /cvs/pkgs/rpms/pixman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11537 Modified Files: .cvsignore pixman.spec sources Log Message: pixman 0.15.18 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 14 Jul 2009 04:53:56 -0000 1.24 +++ .cvsignore 21 Jul 2009 11:36:10 -0000 1.25 @@ -8,3 +8,4 @@ pixman-0.15.10.tar.gz pixman-0.15.12.tar.gz pixman-0.15.14.tar.gz pixman-0.15.16.tar.gz +pixman-0.15.18.tar.gz Index: pixman.spec =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/pixman.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- pixman.spec 14 Jul 2009 04:53:56 -0000 1.38 +++ pixman.spec 21 Jul 2009 11:36:10 -0000 1.39 @@ -2,7 +2,7 @@ %define gitrev 8ff7213f39edc1b2b8b60d6b0cc5d5f14ca1928d Name: pixman -Version: 0.15.16 +Version: 0.15.18 Release: 1%{?dist} Summary: Pixel manipulation library @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pixman-1.pc %changelog +* Mon Jul 21 2009 Soren Sandmann 0.15.18-1 +- pixman 0.15.18 + * Mon Jul 13 2009 Soren Sandmann 0.15.16-1 - pixman 0.15.16 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 14 Jul 2009 04:53:56 -0000 1.26 +++ sources 21 Jul 2009 11:36:10 -0000 1.27 @@ -1,2 +1,3 @@ bfbb075dd60402e86528add13f8e27ad pixman-0.15.14.tar.gz 831b846d23e7b90abd56b4f614101542 pixman-0.15.16.tar.gz +9b60fe7623621b546b76777b8b7d2490 pixman-0.15.18.tar.gz From caolanm at fedoraproject.org Tue Jul 21 11:41:28 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 11:41:28 +0000 (UTC) Subject: rpms/openoffice.org/devel workspace.cmcfixes61.patch, NONE, 1.1 openoffice.org.spec, 1.1969, 1.1970 openoffice.org-3.1.0.ooo103451.svx.64bit.patch, 1.1, NONE openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch, 1.1, NONE Message-ID: <20090721114128.B1F4311C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13252 Modified Files: openoffice.org.spec Added Files: workspace.cmcfixes61.patch Removed Files: openoffice.org-3.1.0.ooo103451.svx.64bit.patch openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch Log Message: bundle patches together into upstream workspace workspace.cmcfixes61.patch: canvas/source/cairo/cairo_canvashelper.cxx | 2 - svx/inc/svx/xcolit.hxx | 2 - svx/inc/svx/xflclit.hxx | 2 - svx/inc/svx/xflftrit.hxx | 2 - svx/inc/svx/xflgrit.hxx | 2 - svx/inc/svx/xflhtit.hxx | 2 - svx/inc/svx/xftshcit.hxx | 2 - svx/inc/svx/xit.hxx | 8 ++-- svx/inc/svx/xlnclit.hxx | 2 - svx/inc/svx/xlndsit.hxx | 2 - svx/inc/svx/xlnedit.hxx | 2 - svx/inc/svx/xlnstit.hxx | 2 - svx/inc/svx/xsflclit.hxx | 2 - svx/source/xoutdev/xattr.cxx | 50 +++++++++++++++-------------- 14 files changed, 42 insertions(+), 40 deletions(-) --- NEW FILE workspace.cmcfixes61.patch --- Avoid subpixel clipping for cairocanvas. nobody is expecting this. From: Thorsten Behrens --- canvas/source/cairo/cairo_canvashelper.cxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git canvas/source/cairo/cairo_canvashelper.cxx canvas/source/cairo/cairo_canvashelper.cxx index 3b3571a..9684b8d 100644 --- canvas/source/cairo/cairo_canvashelper.cxx +++ canvas/source/cairo/cairo_canvashelper.cxx @@ -888,7 +888,7 @@ namespace cairocanvas nY = aP.getY(); cairo_matrix_transform_point( &aOrigMatrix, &nX, &nY ); - if( ! bIsBezier && bIsRectangle ) { + if( ! bIsBezier && (bIsRectangle || aOperation == Clip) ) { nX = basegfx::fround( nX ); nY = basegfx::fround( nY ); } diff -ru svx.orig/inc/svx/xcolit.hxx svx/inc/svx/xcolit.hxx --- svx.orig/inc/svx/xcolit.hxx 2009-07-09 15:28:15.000000000 +0100 +++ svx/inc/svx/xcolit.hxx 2009-07-09 16:34:22.000000000 +0100 @@ -48,7 +48,7 @@ public: TYPEINFO(); XColorItem() {} - XColorItem(USHORT nWhich, long nIndex, const Color& rTheColor); + XColorItem(USHORT nWhich, INT32 nIndex, const Color& rTheColor); virtual sal_Bool QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const; virtual sal_Bool PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ); diff -ru svx.orig/inc/svx/xflclit.hxx svx/inc/svx/xflclit.hxx --- svx.orig/inc/svx/xflclit.hxx 2009-07-09 15:28:15.000000000 +0100 +++ svx/inc/svx/xflclit.hxx 2009-07-09 16:32:16.000000000 +0100 @@ -46,7 +46,7 @@ public: TYPEINFO(); XFillColorItem() {} - XFillColorItem(long nIndex, const Color& rTheColor); + XFillColorItem(INT32 nIndex, const Color& rTheColor); XFillColorItem(const String& rName, const Color& rTheColor); XFillColorItem(SvStream& rIn); diff -ru svx.orig/inc/svx/xflftrit.hxx svx/inc/svx/xflftrit.hxx --- svx.orig/inc/svx/xflftrit.hxx 2009-07-09 15:28:15.000000000 +0100 +++ svx/inc/svx/xflftrit.hxx 2009-07-09 16:11:19.000000000 +0100 @@ -50,7 +50,7 @@ TYPEINFO(); XFillFloatTransparenceItem(); - XFillFloatTransparenceItem( long nIndex, const XGradient& rGradient, BOOL bEnable = TRUE ); + XFillFloatTransparenceItem( INT32 nIndex, const XGradient& rGradient, BOOL bEnable = TRUE ); XFillFloatTransparenceItem(const String& rName, const XGradient& rGradient, BOOL bEnable = TRUE ); XFillFloatTransparenceItem(SfxItemPool* pPool, const XGradient& rTheGradient, BOOL bEnable = TRUE ); XFillFloatTransparenceItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xflgrit.hxx svx/inc/svx/xflgrit.hxx --- svx.orig/inc/svx/xflgrit.hxx 2009-07-09 15:28:12.000000000 +0100 +++ svx/inc/svx/xflgrit.hxx 2009-07-09 16:31:03.000000000 +0100 @@ -47,7 +47,7 @@ public: TYPEINFO(); XFillGradientItem() : NameOrIndex(XATTR_FILLGRADIENT, -1) {} - XFillGradientItem(long nIndex, const XGradient& rTheGradient); + XFillGradientItem(INT32 nIndex, const XGradient& rTheGradient); XFillGradientItem(const UniString& rName, const XGradient& rTheGradient); XFillGradientItem(SfxItemPool* pPool, const XGradient& rTheGradient); XFillGradientItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xflhtit.hxx svx/inc/svx/xflhtit.hxx --- svx.orig/inc/svx/xflhtit.hxx 2009-07-09 15:28:13.000000000 +0100 +++ svx/inc/svx/xflhtit.hxx 2009-07-09 16:11:08.000000000 +0100 @@ -47,7 +47,7 @@ public: TYPEINFO(); XFillHatchItem() : NameOrIndex(XATTR_FILLHATCH, -1) {} - XFillHatchItem(long nIndex, const XHatch& rTheHatch); + XFillHatchItem(INT32 nIndex, const XHatch& rTheHatch); XFillHatchItem(const String& rName, const XHatch& rTheHatch); XFillHatchItem(SfxItemPool* pPool, const XHatch& rTheHatch); XFillHatchItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xftshcit.hxx svx/inc/svx/xftshcit.hxx --- svx.orig/inc/svx/xftshcit.hxx 2009-07-09 15:28:12.000000000 +0100 +++ svx/inc/svx/xftshcit.hxx 2009-07-09 16:10:52.000000000 +0100 @@ -45,7 +45,7 @@ public: TYPEINFO(); XFormTextShadowColorItem() {} - XFormTextShadowColorItem(long nIndex, const Color& rTheColor); + XFormTextShadowColorItem(INT32 nIndex, const Color& rTheColor); XFormTextShadowColorItem(const String& rName, const Color& rTheColor); XFormTextShadowColorItem(SvStream& rIn); diff -ru svx.orig/inc/svx/xit.hxx svx/inc/svx/xit.hxx --- svx.orig/inc/svx/xit.hxx 2009-07-09 15:28:12.000000000 +0100 +++ svx/inc/svx/xit.hxx 2009-07-09 15:29:13.000000000 +0100 @@ -54,7 +54,7 @@ //------------------- class SVX_DLLPUBLIC NameOrIndex : public SfxStringItem { - long nPalIndex; + INT32 nPalIndex; protected: void Detach() { nPalIndex = -1; } @@ -62,7 +62,7 @@ public: TYPEINFO(); NameOrIndex() { nPalIndex = -1; } - NameOrIndex(USHORT nWhich, long nIndex); + NameOrIndex(USHORT nWhich, INT32 nIndex); NameOrIndex(USHORT nWhich, const String& rName= String()); NameOrIndex(USHORT nWhich, SvStream& rIn); @@ -76,8 +76,8 @@ String GetName() const { return GetValue(); } void SetName(const String& rName) { SetValue(rName); } - long GetIndex() const { return nPalIndex; } - void SetIndex(long nIndex) { nPalIndex = nIndex; } + INT32 GetIndex() const { return nPalIndex; } + void SetIndex(INT32 nIndex) { nPalIndex = nIndex; } BOOL IsIndex() const { return (nPalIndex >= 0); } /** this static checks if the given NameOrIndex item has a unique name for its value. diff -ru svx.orig/inc/svx/xlnclit.hxx svx/inc/svx/xlnclit.hxx --- svx.orig/inc/svx/xlnclit.hxx 2009-07-09 15:28:15.000000000 +0100 +++ svx/inc/svx/xlnclit.hxx 2009-07-09 16:34:06.000000000 +0100 @@ -42,7 +42,7 @@ public: TYPEINFO(); XLineColorItem() {} - XLineColorItem(long nIndex, const Color& rTheColor); + XLineColorItem(INT32 nIndex, const Color& rTheColor); XLineColorItem(const String& rName, const Color& rTheColor); XLineColorItem(SvStream& rIn); diff -ru svx.orig/inc/svx/xlndsit.hxx svx/inc/svx/xlndsit.hxx --- svx.orig/inc/svx/xlndsit.hxx 2009-07-09 15:28:12.000000000 +0100 +++ svx/inc/svx/xlndsit.hxx 2009-07-09 16:34:14.000000000 +0100 @@ -50,7 +50,7 @@ public: TYPEINFO(); XLineDashItem() : NameOrIndex(XATTR_LINEDASH, -1) {} - XLineDashItem(long nIndex, const XDash& rTheDash); + XLineDashItem(INT32 nIndex, const XDash& rTheDash); XLineDashItem(const String& rName, const XDash& rTheDash); XLineDashItem(SfxItemPool* pPool, const XDash& rTheDash); XLineDashItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xlnedit.hxx svx/inc/svx/xlnedit.hxx --- svx.orig/inc/svx/xlnedit.hxx 2009-07-09 15:28:14.000000000 +0100 +++ svx/inc/svx/xlnedit.hxx 2009-07-09 16:31:26.000000000 +0100 @@ -46,7 +46,7 @@ public: TYPEINFO(); - XLineEndItem(long nIndex = -1); + XLineEndItem(INT32 nIndex = -1); XLineEndItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon); XLineEndItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon); XLineEndItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xlnstit.hxx svx/inc/svx/xlnstit.hxx --- svx.orig/inc/svx/xlnstit.hxx 2009-07-09 15:28:14.000000000 +0100 +++ svx/inc/svx/xlnstit.hxx 2009-07-09 16:32:26.000000000 +0100 @@ -46,7 +46,7 @@ public: TYPEINFO(); - XLineStartItem(long nIndex = -1); + XLineStartItem(INT32 nIndex = -1); XLineStartItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon); XLineStartItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon); XLineStartItem(SfxItemPool* pPool ); diff -ru svx.orig/inc/svx/xsflclit.hxx svx/inc/svx/xsflclit.hxx --- svx.orig/inc/svx/xsflclit.hxx 2009-07-09 15:28:15.000000000 +0100 +++ svx/inc/svx/xsflclit.hxx 2009-07-09 16:31:12.000000000 +0100 @@ -41,7 +41,7 @@ public: TYPEINFO(); XSecondaryFillColorItem() {} - XSecondaryFillColorItem(long nIndex, const Color& rTheColor); + XSecondaryFillColorItem(INT32 nIndex, const Color& rTheColor); XSecondaryFillColorItem(const String& rName, const Color& rTheColor); XSecondaryFillColorItem(SvStream& rIn); diff -ru svx.orig/source/xoutdev/xattr.cxx svx/source/xoutdev/xattr.cxx --- svx.orig/source/xoutdev/xattr.cxx 2009-07-09 15:26:56.000000000 +0100 +++ svx/source/xoutdev/xattr.cxx 2009-07-09 16:32:04.000000000 +0100 @@ -66,6 +66,8 @@ #include #include +#include + using namespace ::rtl; using namespace ::com::sun::star; @@ -108,7 +110,7 @@ /************************************************************************* |* -|* NameOrIndex::NameOrIndex(USHORT nWhich, long nIndex) +|* NameOrIndex::NameOrIndex(USHORT nWhich, INT32 nIndex) |* |* Beschreibung |* Ersterstellung 14.11.94 @@ -116,7 +118,7 @@ |* *************************************************************************/ -NameOrIndex::NameOrIndex(USHORT _nWhich, long nIndex) : +NameOrIndex::NameOrIndex(USHORT _nWhich, INT32 nIndex) : SfxStringItem(_nWhich, aNameOrIndexEmptyString), nPalIndex(nIndex) { @@ -134,7 +136,7 @@ NameOrIndex::NameOrIndex(USHORT _nWhich, const XubString& rName) : SfxStringItem(_nWhich, rName), - nPalIndex((long)-1) + nPalIndex(-1) { } @@ -230,7 +233,7 @@ SvStream& NameOrIndex::Store( SvStream& rOut, USHORT nItemVersion ) const { SfxStringItem::Store( rOut, nItemVersion ); - rOut << (INT32)nPalIndex; + rOut << nPalIndex; return rOut; } @@ -369,11 +373,11 @@ /************************************************************************* |* -|* XColorItem::XColorItem(USHORT nWhich, long nIndex, const Color& rTheColor) +|* XColorItem::XColorItem(USHORT nWhich, INT32 nIndex, const Color& rTheColor) |* \************************************************************************/ -XColorItem::XColorItem(USHORT _nWhich, long nIndex, const Color& rTheColor) : +XColorItem::XColorItem(USHORT _nWhich, INT32 nIndex, const Color& rTheColor) : NameOrIndex(_nWhich, nIndex), aColor(rTheColor) { @@ -884,7 +888,7 @@ /************************************************************************* |* -|* XLineDashItem::XLineDashItem(long nIndex, const XDash& rTheDash) +|* XLineDashItem::XLineDashItem(INT32 nIndex, const XDash& rTheDash) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -892,7 +896,7 @@ |* *************************************************************************/ -XLineDashItem::XLineDashItem(long nIndex, const XDash& rTheDash) : +XLineDashItem::XLineDashItem(INT32 nIndex, const XDash& rTheDash) : NameOrIndex(XATTR_LINEDASH, nIndex), aDash(rTheDash) { @@ -1501,7 +1505,7 @@ /************************************************************************* |* -|* XLineColorItem::XLineColorItem(long nIndex, const Color& rTheColor) +|* XLineColorItem::XLineColorItem(INT32 nIndex, const Color& rTheColor) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -1509,7 +1513,7 @@ |* *************************************************************************/ -XLineColorItem::XLineColorItem(long nIndex, const Color& rTheColor) : +XLineColorItem::XLineColorItem(INT32 nIndex, const Color& rTheColor) : XColorItem(XATTR_LINECOLOR, nIndex, rTheColor) { } @@ -1720,7 +1724,7 @@ /************************************************************************* |* -|* XLineStartItem::XLineStartItem(long nIndex) +|* XLineStartItem::XLineStartItem(INT32 nIndex) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -1728,7 +1732,7 @@ |* *************************************************************************/ -XLineStartItem::XLineStartItem(long nIndex) +XLineStartItem::XLineStartItem(INT32 nIndex) : NameOrIndex(XATTR_LINESTART, nIndex) { } @@ -2192,7 +2196,7 @@ /************************************************************************* |* -|* XLineEndItem::XLineEndItem(long nIndex) +|* XLineEndItem::XLineEndItem(INT32 nIndex) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -2200,7 +2204,7 @@ |* *************************************************************************/ -XLineEndItem::XLineEndItem(long nIndex) +XLineEndItem::XLineEndItem(INT32 nIndex) : NameOrIndex(XATTR_LINEEND, nIndex) { } @@ -2664,7 +2668,7 @@ /************************************************************************* |* -|* XLineStartWidthItem::XLineStartWidthItem(long nWidth) +|* XLineStartWidthItem::XLineStartWidthItem(INT32 nWidth) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -3249,7 +3253,7 @@ /************************************************************************* |* -|* XFillColorItem::XFillColorItem(long nIndex, const Color& rTheColor) +|* XFillColorItem::XFillColorItem(INT32 nIndex, const Color& rTheColor) |* |* Beschreibung |* Ersterstellung 15.11.94 @@ -3257,7 +3261,7 @@ |* *************************************************************************/ -XFillColorItem::XFillColorItem(long nIndex, const Color& rTheColor) : +XFillColorItem::XFillColorItem(INT32 nIndex, const Color& rTheColor) : XColorItem(XATTR_FILLCOLOR, nIndex, rTheColor) { } @@ -3372,7 +3376,7 @@ // ----------------------------- TYPEINIT1_AUTOFACTORY(XSecondaryFillColorItem, XColorItem); -XSecondaryFillColorItem::XSecondaryFillColorItem(long nIndex, const Color& rTheColor) : +XSecondaryFillColorItem::XSecondaryFillColorItem(INT32 nIndex, const Color& rTheColor) : XColorItem(XATTR_SECONDARYFILLCOLOR, nIndex, rTheColor) { } @@ -3510,7 +3514,7 @@ /************************************************************************* |* -|* XFillGradientItem::XFillGradientItem(long nIndex, +|* XFillGradientItem::XFillGradientItem(INT32 nIndex, |* const XGradient& rTheGradient) |* |* Beschreibung @@ -3519,7 +3523,7 @@ |* *************************************************************************/ -XFillGradientItem::XFillGradientItem(long nIndex, +XFillGradientItem::XFillGradientItem(INT32 nIndex, const XGradient& rTheGradient) : NameOrIndex(XATTR_FILLGRADIENT, nIndex), aGradient(rTheGradient) @@ -4042,7 +4046,7 @@ //------------------------------------------------------------------------ -XFillFloatTransparenceItem::XFillFloatTransparenceItem( long nIndex, const XGradient& rGradient, BOOL bEnable ) : +XFillFloatTransparenceItem::XFillFloatTransparenceItem( INT32 nIndex, const XGradient& rGradient, BOOL bEnable ) : XFillGradientItem ( nIndex, rGradient ), bEnabled ( bEnable ) { @@ -4246,7 +4250,7 @@ /************************************************************************* |* -|* XFillHatchItem::XFillHatchItem(long nIndex, +|* XFillHatchItem::XFillHatchItem(INT32 nIndex, |* const XHatch& rTheHatch) |* |* Beschreibung @@ -4255,7 +4259,7 @@ |* *************************************************************************/ -XFillHatchItem::XFillHatchItem(long nIndex, +XFillHatchItem::XFillHatchItem(INT32 nIndex, const XHatch& rTheHatch) : NameOrIndex(XATTR_FILLHATCH, nIndex), aHatch(rTheHatch) @@ -5258,7 +5262,7 @@ |* *************************************************************************/ -XFormTextShadowColorItem::XFormTextShadowColorItem(long nIndex, +XFormTextShadowColorItem::XFormTextShadowColorItem(INT32 nIndex, const Color& rTheColor) : XColorItem(XATTR_FORMTXTSHDWCOLOR, nIndex, rTheColor) { Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1969 retrieving revision 1.1970 diff -u -p -r1.1969 -r1.1970 --- openoffice.org.spec 21 Jul 2009 09:33:02 -0000 1.1969 +++ openoffice.org.spec 21 Jul 2009 11:41:28 -0000 1.1970 @@ -150,8 +150,7 @@ Patch72: openoffice.org-3.1.0.ooo102920. Patch73: workspace.cmcfixes60.patch Patch74: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch Patch75: workspace.vcl103.patch -Patch76: openoffice.org-3.1.0.ooo103451.svx.64bit.patch -Patch77: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch +Patch76: workspace.cmcfixes61.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1659,8 +1658,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch73 -p0 -b .workspace.cmcfixes60.patch %patch74 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch %patch75 -p0 -b .workspace.vcl103.patch -%patch76 -p0 -b .ooo103451.svx.64bit.patch -%patch77 -p0 -b .ooo103651.canvas.nosubpixel.patch +%patch76 -p0 -b .workspace.cmcfixes61.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` --- openoffice.org-3.1.0.ooo103451.svx.64bit.patch DELETED --- --- openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch DELETED --- From xhorak at fedoraproject.org Tue Jul 21 11:43:38 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 11:43:38 +0000 (UTC) Subject: rpms/thunderbird/devel .cvsignore, 1.24, 1.25 sources, 1.31, 1.32 thunderbird-shared-error.patch, 1.1, 1.2 thunderbird.spec, 1.135, 1.136 Message-ID: <20090721114338.A89D511C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13699 Modified Files: .cvsignore sources thunderbird-shared-error.patch thunderbird.spec Log Message: Update to 3.0 beta3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 13 May 2009 06:22:26 -0000 1.24 +++ .cvsignore 21 Jul 2009 11:43:08 -0000 1.25 @@ -1 +1,3 @@ thunderbird-3.0-6a6386c16e98-source.tar.bz2 +thunderbird-3.0b3-source.tar.bz2 +thunderbird-langpacks-3.0-20090721.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 13 May 2009 06:22:26 -0000 1.31 +++ sources 21 Jul 2009 11:43:08 -0000 1.32 @@ -1 +1,2 @@ -ec5efa909535d4a764d8a0c0fa5d4a38 thunderbird-3.0-6a6386c16e98-source.tar.bz2 +84a004d76e82325dd2cc5ff271fd3952 thunderbird-3.0b3-source.tar.bz2 +f38cc1a9e69bff77e4eba2385272c671 thunderbird-langpacks-3.0-20090721.tar.bz2 thunderbird-shared-error.patch: Makefile.in | 2 ++ 1 file changed, 2 insertions(+) Index: thunderbird-shared-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird-shared-error.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- thunderbird-shared-error.patch 2 Mar 2009 12:57:03 -0000 1.1 +++ thunderbird-shared-error.patch 21 Jul 2009 11:43:08 -0000 1.2 @@ -1,39 +1,15 @@ -diff -upU8 thunderbird-3.0/mail/installer/Makefile.in.shared-error thunderbird-3.0/mail/installer/Makefile.in ---- thunderbird-3.0/mail/installer/Makefile.in.shared-error 2009-02-24 03:16:03.000000000 +0100 -+++ thunderbird-3.0/mail/installer/Makefile.in 2009-02-27 16:02:31.000000000 +0100 -@@ -56,16 +56,17 @@ NO_PKG_FILES = \ - PalmSyncInstall.exe \ - $(NULL) - - include $(topsrcdir)/config/rules.mk - - MOZ_PKG_REMOVALS = $(srcdir)/removed-files.in - - ifdef BUILD_STATIC_LIBS +diff -up thunderbird-3.0/mail/installer/Makefile.in.shared-error thunderbird-3.0/mail/installer/Makefile.in +--- thunderbird-3.0/mail/installer/Makefile.in.shared-error 2009-07-13 14:56:36.000000000 +0200 ++++ thunderbird-3.0/mail/installer/Makefile.in 2009-07-14 12:41:16.000000000 +0200 +@@ -94,9 +94,11 @@ endif + # mozconfig instead. + ifndef MAIL_PKG_SHARED + ifndef BUILD_STATIC_LIBS +ifeq (BUILD_STATIC_LIBS, 1) - ifeq (WINNT,$(OS_ARCH)) - MOZ_PKG_MANIFEST_P = $(srcdir)/windows/packages-static - endif - else - $(error you need a "--enable-static --disable-shared" build to create an installer) + $(error you need an "--enable-static" build to package a build) endif - - MOZ_NONLOCALIZED_PKG_LIST = \ -@@ -80,16 +81,17 @@ MOZ_LOCALIZED_PKG_LIST = $(AB_CD) - DEFINES += -DAB_CD=$(AB_CD) - - ifdef MOZ_PKG_MANIFEST_P - MOZ_PKG_MANIFEST = packages-static - - $(MOZ_PKG_MANIFEST): $(MOZ_PKG_MANIFEST_P) - $(PERL) $(MOZILLA_SRCDIR)/config/preprocessor.pl $(DEFINES) $(ACDEFINES) $< > $@ endif +endif - ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) - MOZ_PKG_MAC_DSSTORE=branding/dsstore - MOZ_PKG_MAC_BACKGROUND=branding/background.png - MOZ_PKG_MAC_ICON=branding/disk.icns - MOZ_PKG_MAC_EXTRA=--symlink "/Applications:/ " - endif + include $(MOZILLA_SRCDIR)/toolkit/mozapps/installer/packager.mk Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- thunderbird.spec 13 May 2009 06:22:26 -0000 1.135 +++ thunderbird.spec 21 Jul 2009 11:43:08 -0000 1.136 @@ -1,28 +1,28 @@ %define desktop_file_utils_version 0.9 %define nspr_version 4.6 -%define nss_version 3.10 +%define nss_version 3.12.3 %define cairo_version 1.0 %define dbus_glib_version 0.6 -%define version_internal 3.0b3pre -%define build_langpacks 0 +%define version_internal 3.0b3 +%define build_langpacks 1 %define official_branding 1 Summary: Mozilla Thunderbird mail/newsgroup client Name: thunderbird Version: 3.0 -Release: 2.3.b3pre.hg.6a6386c16e98%{?dist} +Release: 2.4.b3%{?dist} URL: http://www.mozilla.org/projects/thunderbird/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet %if %{official_branding} -%define tarball thunderbird-%{version}-6a6386c16e98-source.tar.bz2 +%define tarball thunderbird-%{version}b3-source.tar.bz2 %else %define tarball thunderbird-3.0b2-source.tar.bz2 %endif Source0: %{tarball} %if %{build_langpacks} -Source1: thunderbird-langpacks-%{version}-20090302.tar.bz2 +Source1: thunderbird-langpacks-%{version}-20090721.tar.bz2 %endif Source10: thunderbird-mozconfig Source11: thunderbird-mozconfig-branded @@ -173,18 +173,6 @@ install -Dm755 %{SOURCE30} $RPM_BUILD_RO %{__rm} -f $RPM_BUILD_ROOT%{_bindir}/thunderbird-config -cd $RPM_BUILD_ROOT%{mozappdir}/chrome -find . -name "*" -type d -maxdepth 1 -exec %{__rm} -rf {} \; -cd - - -%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/chrome/icons/default/ -%{__cp} other-licenses/branding/%{name}/default.xpm \ - $RPM_BUILD_ROOT%{mozappdir}/chrome/icons/default/ - -%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/icons/ -%{__cp} other-licenses/branding/%{name}/default.xpm \ - $RPM_BUILD_ROOT%{mozappdir}/icons/ - # own mozilla plugin dir (#135050) %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins @@ -299,10 +287,14 @@ fi %exclude %{mozappdir}/license.html %exclude %{mozappdir}/dependentlibs.list %exclude %{mozappdir}/removed-files +%{mozappdir}/update.locale #=============================================================================== %changelog +* Tue Jul 21 2009 Jan Horak - 3.0-2.4.beta3 +- Update to 3.0 beta3 + * Mon Mar 30 2009 Jan Horak - 3.0-2.2.beta2 - Fixed open-browser.sh to use xdg-open instead of gnome-open From hadess at fedoraproject.org Tue Jul 21 12:03:58 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 12:03:58 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel .cvsignore, 1.25, 1.26 gstreamer-plugins-base.spec, 1.80, 1.81 sources, 1.26, 1.27 Message-ID: <20090721120358.3979411C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20856 Modified Files: .cvsignore gstreamer-plugins-base.spec sources Log Message: * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Udpate to 0.10.23.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 16 Jul 2009 15:16:41 -0000 1.25 +++ .cvsignore 21 Jul 2009 12:03:57 -0000 1.26 @@ -1 +1 @@ -gst-plugins-base-0.10.23.2.tar.bz2 +gst-plugins-base-0.10.23.3.tar.bz2 Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- gstreamer-plugins-base.spec 16 Jul 2009 22:02:47 -0000 1.80 +++ gstreamer-plugins-base.spec 21 Jul 2009 12:03:57 -0000 1.81 @@ -4,7 +4,7 @@ %define _gst 0.10.22 Name: %{gstreamer}-plugins-base -Version: 0.10.23.2 +Version: 0.10.23.3 Release: 1%{?dist} Summary: GStreamer streaming media framework base plug-ins @@ -69,7 +69,7 @@ autoreconf --enable-gtk-doc \ --enable-experimental \ --disable-static \ - --disable-examples + --disable-gnome_vfs make %{?_smp_mflags} ERROR_CFLAGS="" @@ -256,6 +256,9 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 +- Udpate to 0.10.23.3 + * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 16 Jul 2009 15:16:41 -0000 1.26 +++ sources 21 Jul 2009 12:03:57 -0000 1.27 @@ -1 +1 @@ -3bacdeb2dd33e739b3bee5f61b7dee1c gst-plugins-base-0.10.23.2.tar.bz2 +ae26e7cfd13cbbcf78658f9ada7866a0 gst-plugins-base-0.10.23.3.tar.bz2 From hadess at fedoraproject.org Tue Jul 21 12:20:25 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 12:20:25 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel gstreamer-plugins-base.spec, 1.81, 1.82 0001-Move-plugin-selector-to-gst-plugins-base.patch, 1.1, NONE gstpb-0.10.15-cd-speed.patch, 1.1, NONE Message-ID: <20090721122025.9A88611C049E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25955 Modified Files: gstreamer-plugins-base.spec Removed Files: 0001-Move-plugin-selector-to-gst-plugins-base.patch gstpb-0.10.15-cd-speed.patch Log Message: * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-2 - Remove old patches (the input-selector has been moved to be an internal playbin2 plugin) Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- gstreamer-plugins-base.spec 21 Jul 2009 12:03:57 -0000 1.81 +++ gstreamer-plugins-base.spec 21 Jul 2009 12:19:55 -0000 1.82 @@ -5,7 +5,7 @@ Name: %{gstreamer}-plugins-base Version: 0.10.23.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GStreamer streaming media framework base plug-ins Group: Applications/Multimedia @@ -14,12 +14,6 @@ URL: http://gstreamer.freedesktop.org/ Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#Patch0: gstpb-0.10.15-cd-speed.patch -# http://bugzilla.gnome.org/show_bug.cgi?id=586356 -# https://bugzilla.redhat.com/show_bug.cgi?id=506767 -Patch1: 0001-Move-plugin-selector-to-gst-plugins-base.patch -BuildRequires: automake autoconf libtool - Requires: %{gstreamer} >= %{_gst} Requires: liboil >= 0.3.12-9 BuildRequires: %{gstreamer}-devel >= %{_gst} @@ -57,10 +51,6 @@ This package contains a set of well-main %prep %setup -q -n gst-plugins-base-%{version} -#%patch0 -p1 -b .cd-speed -%patch1 -p1 -b .input-selector -libtoolize -f -autoreconf %build %configure \ @@ -256,6 +246,10 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Tue Jul 21 2009 Bastien Nocera 0.10.23.3-2 +- Remove old patches (the input-selector has been moved to be + an internal playbin2 plugin) + * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Udpate to 0.10.23.3 --- 0001-Move-plugin-selector-to-gst-plugins-base.patch DELETED --- --- gstpb-0.10.15-cd-speed.patch DELETED --- From hadess at fedoraproject.org Tue Jul 21 12:34:40 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 12:34:40 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel gstreamer-plugins-base.spec, 1.82, 1.83 Message-ID: <20090721123440.448E711C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31477 Modified Files: gstreamer-plugins-base.spec Log Message: Remove input-selector from the file list Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- gstreamer-plugins-base.spec 21 Jul 2009 12:19:55 -0000 1.82 +++ gstreamer-plugins-base.spec 21 Jul 2009 12:34:09 -0000 1.83 @@ -108,7 +108,6 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-%{majorminor}/libgstdecodebin.so %{_libdir}/gstreamer-%{majorminor}/libgstdecodebin2.so %{_libdir}/gstreamer-%{majorminor}/libgstplaybin.so -%{_libdir}/gstreamer-%{majorminor}/libgstselector.so %{_libdir}/gstreamer-%{majorminor}/libgsttypefindfunctions.so %{_libdir}/gstreamer-%{majorminor}/libgstvideotestsrc.so %{_libdir}/gstreamer-%{majorminor}/libgstaudiorate.so From ovasik at fedoraproject.org Tue Jul 21 12:48:10 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Tue, 21 Jul 2009 12:48:10 +0000 (UTC) Subject: rpms/setup/devel .cvsignore, 1.64, 1.65 setup.spec, 1.81, 1.82 sources, 1.65, 1.66 Message-ID: <20090721124810.8270311C005E@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/setup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4560 Modified Files: .cvsignore setup.spec sources Log Message: increase threshold for uidgid reservations to 200, reserve uidgid pair 107:107 for qemu (libvirt,#511957), reflect threshold in profile and bashrc, do inform about uidgid file existence there, remove old remnants about portmap from hosts.deny(#509919) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setup/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 29 Jun 2009 13:42:53 -0000 1.64 +++ .cvsignore 21 Jul 2009 12:47:40 -0000 1.65 @@ -1 +1 @@ -setup-2.8.6.tar.bz2 +setup-2.8.7.tar.bz2 Index: setup.spec =================================================================== RCS file: /cvs/extras/rpms/setup/devel/setup.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- setup.spec 29 Jun 2009 13:42:53 -0000 1.81 +++ setup.spec 21 Jul 2009 12:47:40 -0000 1.82 @@ -1,6 +1,6 @@ Summary: A set of system configuration and setup files Name: setup -Version: 2.8.6 +Version: 2.8.7 Release: 1%{?dist} License: Public Domain Group: System Environment/Base @@ -89,6 +89,13 @@ end %ghost %verify(not md5 size mtime) %config(noreplace,missingok) /etc/mtab %changelog +* Tue Jul 21 2009 Ondrej Vasik 2.8.7-1 +- increase threshold for uidgid reservations to 200 +- reserve uidgid pair 107:107 for qemu (libvirt,#511957) +- reflect threshold in profile and bashrc, do inform about + uidgid file existence there +- remove old remnants about portmap from hosts.deny(#509919) + * Mon Jun 29 2009 Ondrej Vasik 2.8.6-1 - update protocols and services to latest IANA - add example for tty in prompt(#503304) Index: sources =================================================================== RCS file: /cvs/extras/rpms/setup/devel/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 29 Jun 2009 13:42:53 -0000 1.65 +++ sources 21 Jul 2009 12:47:40 -0000 1.66 @@ -1 +1 @@ -9be11359c5c3bd44f80d3eccad240638 setup-2.8.6.tar.bz2 +ac42794c9b5ea07cde4b33fe5301216e setup-2.8.7.tar.bz2 From hadess at fedoraproject.org Tue Jul 21 12:48:32 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 12:48:32 +0000 (UTC) Subject: rpms/fprintd/devel fprintd.spec,1.14,1.15 Message-ID: <20090721124832.F351411C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/fprintd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4757 Modified Files: fprintd.spec Log Message: * Tue Jul 21 2009 Bastien Nocera 0.1-13.git04fd09cfa - Make the -devel package noarch (#507698) Index: fprintd.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprintd/devel/fprintd.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fprintd.spec 9 Jul 2009 04:15:35 -0000 1.14 +++ fprintd.spec 21 Jul 2009 12:48:02 -0000 1.15 @@ -3,7 +3,7 @@ Name: fprintd Version: 0.1 -Release: 12.git%{short_hash}%{?dist} +Release: 13.git%{short_hash}%{?dist} Summary: D-Bus service for Fingerprint reader access Group: System Environment/Daemons @@ -54,6 +54,7 @@ Requires: %{name} = %{version}-%{release Requires: gtk-doc Group: Development/Libraries License: GFDLv1.1+ +BuildArch: noarch %description devel Development documentation for fprintd, the D-Bus service for @@ -106,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/interfaces/net.reactivated.Fprint.Manager.xml %changelog +* Tue Jul 21 2009 Bastien Nocera 0.1-13.git04fd09cfa +- Make the -devel package noarch (#507698) + * Thu Jul 9 2009 Matthias Clasen 0.1-12.git04fd09cfa - Fix the pam module (#510152) From rmeggins at fedoraproject.org Tue Jul 21 12:56:43 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:56:43 +0000 (UTC) Subject: rpms/389-admin/F-10 389-admin.spec,1.1,1.2 Message-ID: <20090721125643.12C0111C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8339/F-10 Modified Files: 389-admin.spec Log Message: use 389-adminutil instead of adminutil Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-10/389-admin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-admin.spec 23 Jun 2009 02:39:41 -0000 1.1 +++ 389-admin.spec 21 Jul 2009 12:56:12 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Administration Server (admin) Name: 389-admin Version: 1.1.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 and ASL 2.0 URL: http://port389.org/ Group: System Environment/Daemons @@ -21,7 +21,7 @@ BuildRequires: libicu-devel BuildRequires: httpd-devel BuildRequires: apr-devel BuildRequires: mod_nss -BuildRequires: adminutil-devel +BuildRequires: 389-adminutil-devel Requires: 389-ds-base Requires: mod_nss @@ -148,6 +148,9 @@ fi %{_mandir}/man8/* %changelog +* Tue Jul 21 Rich Megginson - 1.1.8-2 +- change adminutil to 389-adminutil + * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 - bump version to 1.1.8 - change license to GPLv2 + ASL 2.0 From rmeggins at fedoraproject.org Tue Jul 21 12:56:43 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:56:43 +0000 (UTC) Subject: rpms/389-admin/F-11 389-admin.spec,1.1,1.2 Message-ID: <20090721125643.3927111C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8339/F-11 Modified Files: 389-admin.spec Log Message: use 389-adminutil instead of adminutil Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-11/389-admin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-admin.spec 23 Jun 2009 02:39:41 -0000 1.1 +++ 389-admin.spec 21 Jul 2009 12:56:12 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Administration Server (admin) Name: 389-admin Version: 1.1.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 and ASL 2.0 URL: http://port389.org/ Group: System Environment/Daemons @@ -21,7 +21,7 @@ BuildRequires: libicu-devel BuildRequires: httpd-devel BuildRequires: apr-devel BuildRequires: mod_nss -BuildRequires: adminutil-devel +BuildRequires: 389-adminutil-devel Requires: 389-ds-base Requires: mod_nss @@ -150,6 +150,9 @@ fi %{_mandir}/man8/* %changelog +* Tue Jul 21 Rich Megginson - 1.1.8-2 +- change adminutil to 389-adminutil + * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 - bump version to 1.1.8 - change license to GPLv2 + ASL 2.0 From rmeggins at fedoraproject.org Tue Jul 21 12:56:43 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:56:43 +0000 (UTC) Subject: rpms/389-admin/devel 389-admin.spec,1.1,1.2 Message-ID: <20090721125643.689D811C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8339/devel Modified Files: 389-admin.spec Log Message: use 389-adminutil instead of adminutil Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/devel/389-admin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-admin.spec 23 Jun 2009 02:36:44 -0000 1.1 +++ 389-admin.spec 21 Jul 2009 12:56:13 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Administration Server (admin) Name: 389-admin Version: 1.1.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 and ASL 2.0 URL: http://port389.org/ Group: System Environment/Daemons @@ -21,7 +21,7 @@ BuildRequires: libicu-devel BuildRequires: httpd-devel BuildRequires: apr-devel BuildRequires: mod_nss -BuildRequires: adminutil-devel +BuildRequires: 389-adminutil-devel Requires: 389-ds-base Requires: mod_nss @@ -150,6 +150,9 @@ fi %{_mandir}/man8/* %changelog +* Tue Jul 21 Rich Megginson - 1.1.8-2 +- change adminutil to 389-adminutil + * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 - bump version to 1.1.8 - change license to GPLv2 + ASL 2.0 From rmeggins at fedoraproject.org Tue Jul 21 12:59:12 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:59:12 +0000 (UTC) Subject: rpms/389-admin/devel 389-admin.spec,1.2,1.3 Message-ID: <20090721125912.0F60A11C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10044/devel Modified Files: 389-admin.spec Log Message: fix bad date Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/devel/389-admin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 389-admin.spec 21 Jul 2009 12:56:13 -0000 1.2 +++ 389-admin.spec 21 Jul 2009 12:59:11 -0000 1.3 @@ -150,7 +150,7 @@ fi %{_mandir}/man8/* %changelog -* Tue Jul 21 Rich Megginson - 1.1.8-2 +* Tue Jul 21 2009 Rich Megginson - 1.1.8-2 - change adminutil to 389-adminutil * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 From rmeggins at fedoraproject.org Tue Jul 21 12:59:41 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:59:41 +0000 (UTC) Subject: rpms/389-admin/F-10 389-admin.spec,1.2,1.3 Message-ID: <20090721125941.A118311C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10044/F-10 Modified Files: 389-admin.spec Log Message: fix bad date Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-10/389-admin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 389-admin.spec 21 Jul 2009 12:56:12 -0000 1.2 +++ 389-admin.spec 21 Jul 2009 12:59:11 -0000 1.3 @@ -148,7 +148,7 @@ fi %{_mandir}/man8/* %changelog -* Tue Jul 21 Rich Megginson - 1.1.8-2 +* Tue Jul 21 2009 Rich Megginson - 1.1.8-2 - change adminutil to 389-adminutil * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 From rmeggins at fedoraproject.org Tue Jul 21 12:59:41 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 12:59:41 +0000 (UTC) Subject: rpms/389-admin/F-11 389-admin.spec,1.2,1.3 Message-ID: <20090721125941.CC91211C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10044/F-11 Modified Files: 389-admin.spec Log Message: fix bad date Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-11/389-admin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 389-admin.spec 21 Jul 2009 12:56:12 -0000 1.2 +++ 389-admin.spec 21 Jul 2009 12:59:11 -0000 1.3 @@ -150,7 +150,7 @@ fi %{_mandir}/man8/* %changelog -* Tue Jul 21 Rich Megginson - 1.1.8-2 +* Tue Jul 21 2009 Rich Megginson - 1.1.8-2 - change adminutil to 389-adminutil * Thu Jun 18 2009 Rich Megginson - 1.1.8-1 From hadess at fedoraproject.org Tue Jul 21 13:02:47 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 13:02:47 +0000 (UTC) Subject: rpms/libfprint/devel libfprint.spec,1.22,1.23 Message-ID: <20090721130247.54CAA11C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/libfprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11360 Modified Files: libfprint.spec Log Message: * Tue Jul 21 2009 Bastien Nocera 0.1.0-9.pre2 - Use gdk-pixbuf for image manipulation instead of ImageMagick (#472103) Index: libfprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfprint/devel/libfprint.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libfprint.spec 20 Jun 2009 14:47:28 -0000 1.22 +++ libfprint.spec 21 Jul 2009 13:02:16 -0000 1.23 @@ -1,6 +1,6 @@ Name: libfprint Version: 0.1.0 -Release: 8.pre2%{?dist} +Release: 9.pre2%{?dist} Summary: Tool kit for fingerprint scanner Group: System Environment/Libraries @@ -9,11 +9,11 @@ URL: http://www.reactivated.n Source0: http://downloads.sourceforge.net/fprint/%{name}-0.1.0-pre2.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch1: fprint-add-udev-rules.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=472103 +Patch2: 0001-Add-gdk-pixbuf-support.patch ExcludeArch: s390 s390x -# FIXME remove the ImageMagick dependency when we either have the -# gdk-pixbuf support merged, or disable the driver that requires it (F10) -BuildRequires: libusb1-devel ImageMagick-devel glib2-devel openssl-devel +BuildRequires: libusb1-devel glib2-devel gtk2-devel openssl-devel BuildRequires: doxygen autoconf automake libtool Requires: ConsoleKit @@ -35,6 +35,7 @@ developing applications that use %{name} %prep %setup -q -n %{name}-0.1.0-pre2 %patch1 -p1 +%patch2 -p1 %build autoreconf -f -i @@ -74,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Jul 21 2009 Bastien Nocera 0.1.0-9.pre2 +- Use gdk-pixbuf for image manipulation instead of ImageMagick (#472103) + * Sat Jun 20 2009 Bastien Nocera 0.1.0-8.pre2 - Update to 0.1.0-pre2 From rmeggins at fedoraproject.org Tue Jul 21 13:03:44 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 13:03:44 +0000 (UTC) Subject: rpms/389-dsgw/F-10 389-dsgw.spec,1.1,1.2 Message-ID: <20090721130344.CBD3111C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-dsgw/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11836/F-10 Modified Files: 389-dsgw.spec Log Message: use 389-adminutil instead of adminutil Index: 389-dsgw.spec =================================================================== RCS file: /cvs/extras/rpms/389-dsgw/F-10/389-dsgw.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-dsgw.spec 4 Jun 2009 15:54:57 -0000 1.1 +++ 389-dsgw.spec 21 Jul 2009 13:03:14 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Directory Server Gateway (dsgw) Name: 389-dsgw Version: 1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -16,7 +16,7 @@ BuildRequires: mozldap-devel BuildRequires: cyrus-sasl-devel BuildRequires: icu BuildRequires: libicu-devel -BuildRequires: adminutil-devel >= 1.1.8 +BuildRequires: 389-adminutil-devel Requires: /etc/dirsrv/admin-serv/httpd.conf # orgchart uses perldap @@ -86,6 +86,9 @@ fi %{_libdir}/%{pkgname}/dsgw-cgi-bin %changelog +* Tue Jul 21 2009 Rich Megginson - 1.1.3-2 +- use 389-adminutil instead of adminutil + * Wed Jun 3 2009 Rich Megginson - 1.1.3-1 - bump version to 1.1.3 for fedora package review From rmeggins at fedoraproject.org Tue Jul 21 13:03:44 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 13:03:44 +0000 (UTC) Subject: rpms/389-dsgw/F-11 389-dsgw.spec,1.1,1.2 Message-ID: <20090721130344.F400011C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-dsgw/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11836/F-11 Modified Files: 389-dsgw.spec Log Message: use 389-adminutil instead of adminutil Index: 389-dsgw.spec =================================================================== RCS file: /cvs/extras/rpms/389-dsgw/F-11/389-dsgw.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-dsgw.spec 4 Jun 2009 15:54:58 -0000 1.1 +++ 389-dsgw.spec 21 Jul 2009 13:03:14 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Directory Server Gateway (dsgw) Name: 389-dsgw Version: 1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -16,7 +16,7 @@ BuildRequires: mozldap-devel BuildRequires: cyrus-sasl-devel BuildRequires: icu BuildRequires: libicu-devel -BuildRequires: adminutil-devel >= 1.1.8 +BuildRequires: 389-adminutil-devel Requires: /etc/dirsrv/admin-serv/httpd.conf # orgchart uses perldap @@ -86,6 +86,9 @@ fi %{_libdir}/%{pkgname}/dsgw-cgi-bin %changelog +* Tue Jul 21 2009 Rich Megginson - 1.1.3-2 +- use 389-adminutil instead of adminutil + * Wed Jun 3 2009 Rich Megginson - 1.1.3-1 - bump version to 1.1.3 for fedora package review From rmeggins at fedoraproject.org Tue Jul 21 13:03:45 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 13:03:45 +0000 (UTC) Subject: rpms/389-dsgw/devel 389-dsgw.spec,1.1,1.2 Message-ID: <20090721130345.1EB3611C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-dsgw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11836/devel Modified Files: 389-dsgw.spec Log Message: use 389-adminutil instead of adminutil Index: 389-dsgw.spec =================================================================== RCS file: /cvs/extras/rpms/389-dsgw/devel/389-dsgw.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-dsgw.spec 4 Jun 2009 15:50:45 -0000 1.1 +++ 389-dsgw.spec 21 Jul 2009 13:03:14 -0000 1.2 @@ -3,7 +3,7 @@ Summary: 389 Directory Server Gateway (dsgw) Name: 389-dsgw Version: 1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -16,7 +16,7 @@ BuildRequires: mozldap-devel BuildRequires: cyrus-sasl-devel BuildRequires: icu BuildRequires: libicu-devel -BuildRequires: adminutil-devel >= 1.1.8 +BuildRequires: 389-adminutil-devel Requires: /etc/dirsrv/admin-serv/httpd.conf # orgchart uses perldap @@ -86,6 +86,9 @@ fi %{_libdir}/%{pkgname}/dsgw-cgi-bin %changelog +* Tue Jul 21 2009 Rich Megginson - 1.1.3-2 +- use 389-adminutil instead of adminutil + * Wed Jun 3 2009 Rich Megginson - 1.1.3-1 - bump version to 1.1.3 for fedora package review From ndim at fedoraproject.org Tue Jul 21 13:04:54 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Tue, 21 Jul 2009 13:04:54 +0000 (UTC) Subject: rpms/nted/devel .cvsignore, 1.10, 1.11 nted.spec, 1.16, 1.17 sources, 1.10, 1.11 Message-ID: <20090721130454.A732011C005E@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/nted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12527 Modified Files: .cvsignore nted.spec sources Log Message: * Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 - Upstream release 1.6.0/1.6.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 21 Feb 2009 01:17:00 -0000 1.10 +++ .cvsignore 21 Jul 2009 13:04:53 -0000 1.11 @@ -1 +1 @@ -nted-1.5.0.tar.gz +nted-1.6.1.tar.gz Index: nted.spec =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/nted.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- nted.spec 24 Mar 2009 23:04:23 -0000 1.16 +++ nted.spec 21 Jul 2009 13:04:53 -0000 1.17 @@ -14,8 +14,8 @@ Name: nted -Version: 1.5.0 -Release: 6%{?dist} +Version: 1.6.1 +Release: 1%{?dist} Summary: Musical score editor Summary(de): Partitureditor @@ -125,6 +125,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 +- Upstream release 1.6.0/1.6.1 + * Wed Mar 25 2009 Hans Ulrich Niedermann - 1.5.0-6 - Rebuild for Fedora 11 to pick up font autodeps (#491970) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 21 Feb 2009 01:17:00 -0000 1.10 +++ sources 21 Jul 2009 13:04:53 -0000 1.11 @@ -1 +1 @@ -e9d0013788a9173c4550739f0047ea1f nted-1.5.0.tar.gz +ba40d2397d13e1585f113ba1f8db3bde nted-1.6.1.tar.gz From hadess at fedoraproject.org Tue Jul 21 13:04:56 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 13:04:56 +0000 (UTC) Subject: rpms/libfprint/devel 0001-Add-gdk-pixbuf-support.patch,NONE,1.1 Message-ID: <20090721130456.F412C11C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/libfprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12566 Added Files: 0001-Add-gdk-pixbuf-support.patch Log Message: Add missing patch 0001-Add-gdk-pixbuf-support.patch: configure.ac | 30 ++++++++++++---- examples/Makefile.am | 10 ++--- libfprint/Makefile.am | 10 ++++- libfprint/gdkpixbuf.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 123 insertions(+), 16 deletions(-) --- NEW FILE 0001-Add-gdk-pixbuf-support.patch --- >From 2028670e54184aa57a30b7b800ae19671db5deb9 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Wed, 29 Oct 2008 12:53:24 +0000 Subject: [PATCH] Add gdk-pixbuf support When imaging support is required, we prefer to use gdk-pixbuf, as it's already on things like Live CDs. Also fix the examples building against the system libfprint. --- configure.ac | 30 ++++++++++++---- examples/Makefile.am | 10 +++--- libfprint/Makefile.am | 10 ++++- libfprint/gdkpixbuf.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 123 insertions(+), 15 deletions(-) create mode 100644 libfprint/gdkpixbuf.c diff --git a/configure.ac b/configure.ac index d77340f..b3942ff 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AC_SUBST(lt_age) all_drivers="upekts upektc upeksonly vcom5s uru4000 fdu2000 aes1610 aes2501 aes4000" -require_imagemagick='no' +require_imaging='no' require_aeslib='no' enable_upekts='no' enable_upektc='no' @@ -76,7 +76,7 @@ for driver in `echo ${drivers} | sed -e 's/,/ /g' -e 's/,$//g'`; do aes4000) AC_DEFINE([ENABLE_AES4000], [], [Build AuthenTec AES4000 driver]) require_aeslib="yes" - require_imagemagick="yes" + require_imaging="yes" enable_aes4000="yes" ;; esac @@ -91,7 +91,6 @@ AM_CONDITIONAL([ENABLE_URU4000], [test "$enable_uru4000" != "no"]) #AM_CONDITIONAL([ENABLE_AES1610], [test "$enable_aes1610" != "no"]) AM_CONDITIONAL([ENABLE_AES2501], [test "$enable_aes2501" != "no"]) AM_CONDITIONAL([ENABLE_AES4000], [test "$enable_aes4000" != "no"]) -AM_CONDITIONAL([REQUIRE_IMAGEMAGICK], [test "$require_imagemagick" != "no"]) AM_CONDITIONAL([REQUIRE_AESLIB], [test "$require_aeslib" != "no"]) @@ -108,11 +107,26 @@ PKG_CHECK_MODULES(GLIB, "glib-2.0") AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) -if test "$require_imagemagick" != "no"; then -PKG_CHECK_MODULES(IMAGEMAGICK, "ImageMagick") -AC_SUBST(IMAGEMAGICK_CFLAGS) -AC_SUBST(IMAGEMAGICK_LIBS) -fi; +imagemagick_found=no +gdkpixbuf_found=no + +if test "$require_imaging" != "no"; then + PKG_CHECK_MODULES(IMAGING, gthread-2.0 gdk-pixbuf-2.0, [gdkpixbuf_found=yes], [gdkpixbuf_found=no]) + if test "$gdkpixbuf_found" != "yes"; then + PKG_CHECK_MODULES(IMAGING, ImageMagick, [imagemagick_found=yes], [imagemagick_found=no]) + fi +fi + +if test "$require_imaging" != "no"; then + if test "$gdkpixbuf_found" != "yes" && test "$imagemagick_found" != "yes"; then + AC_MSG_ERROR([gdk-pixbuf or ImageMagick is required for imaging support]) + fi +fi + +AM_CONDITIONAL([REQUIRE_GDKPIXBUF], [test "$gdkpixbuf_found" != "no"]) +AM_CONDITIONAL([REQUIRE_IMAGEMAGICK], [test "$imagemagick_found" != "no"]) +AC_SUBST(IMAGING_CFLAGS) +AC_SUBST(IMAGING_LIBS) # Examples build AC_ARG_ENABLE([examples-build], [AS_HELP_STRING([--enable-examples-build], diff --git a/examples/Makefile.am b/examples/Makefile.am index eb6dedb..3f89134 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -2,22 +2,22 @@ INCLUDES = -I$(top_srcdir) noinst_PROGRAMS = verify_live enroll verify img_capture verify_live_SOURCES = verify_live.c -verify_live_LDADD = ../libfprint/libfprint.la -lfprint +verify_live_LDADD = ../libfprint/libfprint.la enroll_SOURCES = enroll.c -enroll_LDADD = ../libfprint/libfprint.la -lfprint +enroll_LDADD = ../libfprint/libfprint.la verify_SOURCES = verify.c -verify_LDADD = ../libfprint/libfprint.la -lfprint +verify_LDADD = ../libfprint/libfprint.la img_capture_SOURCES = img_capture.c -img_capture_LDADD = ../libfprint/libfprint.la -lfprint +img_capture_LDADD = ../libfprint/libfprint.la if BUILD_X11_EXAMPLES noinst_PROGRAMS += img_capture_continuous img_capture_continuous_CFLAGS = $(X_CFLAGS) $(XV_CFLAGS) img_capture_continuous_SOURCES = img_capture_continuous.c -img_capture_continuous_LDADD = ../libfprint/libfprint.la -lfprint $(X_LIBS) $(X_PRE_LIBS) $(XV_LIBS) -lX11 $(X_EXTRA_LIBS); +img_capture_continuous_LDADD = ../libfprint/libfprint.la $(X_LIBS) $(X_PRE_LIBS) $(XV_LIBS) -lX11 $(X_EXTRA_LIBS); endif diff --git a/libfprint/Makefile.am b/libfprint/Makefile.am index 844b09e..0ffa0f6 100644 --- a/libfprint/Makefile.am +++ b/libfprint/Makefile.am @@ -92,8 +92,14 @@ endif if REQUIRE_IMAGEMAGICK OTHER_SRC += imagemagick.c -libfprint_la_CFLAGS += $(IMAGEMAGICK_CFLAGS) -libfprint_la_LIBADD += $(IMAGEMAGICK_LIBS) +libfprint_la_CFLAGS += $(IMAGING_CFLAGS) +libfprint_la_LIBADD += $(IMAGING_LIBS) +endif + +if REQUIRE_GDKPIXBUF +OTHER_SRC += gdkpixbuf.c +libfprint_la_CFLAGS += $(IMAGING_CFLAGS) +libfprint_la_LIBADD += $(IMAGING_LIBS) endif if REQUIRE_AESLIB diff --git a/libfprint/gdkpixbuf.c b/libfprint/gdkpixbuf.c new file mode 100644 index 0000000..7ffc099 --- /dev/null +++ b/libfprint/gdkpixbuf.c @@ -0,0 +1,88 @@ +/* + * Imaging utility functions for libfprint + * Copyright (C) 2007-2008 Daniel Drake + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include + +#include "fp_internal.h" + +struct fp_img *fpi_im_resize(struct fp_img *img, unsigned int factor) +{ + int new_width = img->width * factor; + int new_height = img->height * factor; + GdkPixbuf *orig, *resized; + struct fp_img *newimg; + guchar *pixels; + guint y; + int rowstride; + + g_type_init (); + + /* It is possible to implement resizing using a simple algorithm, however + * we use gdk-pixbuf because it applies some kind of smoothing to the + * result, which improves matching performances in my experiments. */ + + /* Create the original pixbuf, and fill it in from the grayscale data */ + orig = gdk_pixbuf_new (GDK_COLORSPACE_RGB, + FALSE, + 8, + img->width, + img->height); + rowstride = gdk_pixbuf_get_rowstride (orig); + pixels = gdk_pixbuf_get_pixels (orig); + for (y = 0; y < img->height; y++) { + guint x; + for (x = 0; x < img->width; x++) { + guchar *p, *r; + + p = pixels + y * rowstride + x * 3; + r = img->data + y * img->width + x; + p[0] = r[0]; + p[1] = r[0]; + p[2] = r[0]; + } + } + + /* Resize the pixbuf, and create the new fp_img */ + resized = gdk_pixbuf_scale_simple (orig, new_width, new_height, GDK_INTERP_HYPER); + g_object_unref (orig); + + newimg = fpi_img_new(new_width * new_height); + newimg->width = new_width; + newimg->height = new_height; + newimg->flags = img->flags; + + rowstride = gdk_pixbuf_get_rowstride (resized); + pixels = gdk_pixbuf_get_pixels (resized); + for (y = 0; y < newimg->height; y++) { + guint x; + for (x = 0; x < newimg->width; x++) { + guchar *p, *r; + + r = img->data + y * img->width + x; + p = pixels + y * rowstride + x * 3; + r[0] = p[0]; + } + } + + g_object_unref (resized); + + return newimg; +} + -- 1.6.0.3 From pkgdb at fedoraproject.org Tue Jul 21 13:26:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:39 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132639.335EC10F87B@bastion2.fedora.phx.redhat.com> sadmac has set the commit acl on upstart (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Tue Jul 21 13:26:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:40 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132640.5DE6710F8AB@bastion2.fedora.phx.redhat.com> sadmac has set the watchcommits acl on upstart (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Tue Jul 21 13:26:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:42 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132642.7619310F8AC@bastion2.fedora.phx.redhat.com> sadmac has set the watchbugzilla acl on upstart (Fedora 11) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Tue Jul 21 13:26:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:46 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132646.9446B10F8B3@bastion2.fedora.phx.redhat.com> sadmac has set the watchbugzilla acl on upstart (Fedora 10) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Tue Jul 21 13:26:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:49 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132650.2006410F8B7@bastion2.fedora.phx.redhat.com> sadmac has set the watchcommits acl on upstart (Fedora 10) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From pkgdb at fedoraproject.org Tue Jul 21 13:26:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 13:26:53 +0000 Subject: [pkgdb] upstart had acl change status Message-ID: <20090721132653.85A7110F88D@bastion2.fedora.phx.redhat.com> sadmac has set the commit acl on upstart (Fedora 10) to Approved for plautrba To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/upstart From xhorak at fedoraproject.org Tue Jul 21 13:46:15 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 13:46:15 +0000 (UTC) Subject: rpms/xulrunner/F-10 .cvsignore, 1.70, 1.71 sources, 1.73, 1.74 xulrunner.spec, 1.147, 1.148 Message-ID: <20090721134615.9E1FC11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/xulrunner/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25970 Modified Files: .cvsignore sources xulrunner.spec Log Message: Update to 1.9.0.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-10/.cvsignore,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- .cvsignore 11 Jun 2009 22:14:46 -0000 1.70 +++ .cvsignore 21 Jul 2009 13:45:45 -0000 1.71 @@ -1 +1,2 @@ xulrunner-1.9.0.11-source.tar.bz2 +xulrunner-1.9.0.12-source.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-10/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 11 Jun 2009 22:14:46 -0000 1.73 +++ sources 21 Jul 2009 13:45:45 -0000 1.74 @@ -1 +1 @@ -b509f7c05e9566ed290e2c098316c7c3 xulrunner-1.9.0.11-source.tar.bz2 +0fe3631afc61afb5d77c843a49dc8320 xulrunner-1.9.0.12-source.tar.bz2 Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/F-10/xulrunner.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- xulrunner.spec 11 Jun 2009 22:14:46 -0000 1.147 +++ xulrunner.spec 21 Jul 2009 13:45:45 -0000 1.148 @@ -7,7 +7,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner -Version: 1.9.0.11 +Version: 1.9.0.12 Release: 1%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -423,6 +423,9 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Jul 21 2009 Jan Horak - 1.9.0.12-1 +- Update to 1.9.0.12 + * Thu Jun 11 2009 Christopher Aillon - 1.9.0.11-1 - Update to 1.9.0.11 From ndim at fedoraproject.org Tue Jul 21 13:53:58 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Tue, 21 Jul 2009 13:53:58 +0000 (UTC) Subject: rpms/nted/F-11 .cvsignore, 1.10, 1.11 nted.spec, 1.16, 1.17 sources, 1.10, 1.11 Message-ID: <20090721135358.8DBCA11C005E@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/nted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28983 Modified Files: .cvsignore nted.spec sources Log Message: * Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 - Upstream release 1.6.0/1.6.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 21 Feb 2009 01:17:00 -0000 1.10 +++ .cvsignore 21 Jul 2009 13:53:27 -0000 1.11 @@ -1 +1 @@ -nted-1.5.0.tar.gz +nted-1.6.1.tar.gz Index: nted.spec =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/nted.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- nted.spec 24 Mar 2009 23:04:23 -0000 1.16 +++ nted.spec 21 Jul 2009 13:53:28 -0000 1.17 @@ -14,8 +14,8 @@ Name: nted -Version: 1.5.0 -Release: 6%{?dist} +Version: 1.6.1 +Release: 1%{?dist} Summary: Musical score editor Summary(de): Partitureditor @@ -125,6 +125,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 +- Upstream release 1.6.0/1.6.1 + * Wed Mar 25 2009 Hans Ulrich Niedermann - 1.5.0-6 - Rebuild for Fedora 11 to pick up font autodeps (#491970) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 21 Feb 2009 01:17:00 -0000 1.10 +++ sources 21 Jul 2009 13:53:28 -0000 1.11 @@ -1 +1 @@ -e9d0013788a9173c4550739f0047ea1f nted-1.5.0.tar.gz +ba40d2397d13e1585f113ba1f8db3bde nted-1.6.1.tar.gz From hadess at fedoraproject.org Tue Jul 21 14:02:37 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 14:02:37 +0000 (UTC) Subject: rpms/fprintd/devel fprintd.spec, 1.15, 1.16 polkit1.patch, 1.1, 1.2 pam-module.patch, 1.1, NONE Message-ID: <20090721140237.730E711C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/fprintd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1039 Modified Files: fprintd.spec polkit1.patch Removed Files: pam-module.patch Log Message: * Tue Jul 21 2009 Bastien Nocera 0.1-14.git04fd09cfa - Merge polkit patch and fix for polkit patch Index: fprintd.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprintd/devel/fprintd.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fprintd.spec 21 Jul 2009 12:48:02 -0000 1.15 +++ fprintd.spec 21 Jul 2009 14:02:07 -0000 1.16 @@ -3,7 +3,7 @@ Name: fprintd Version: 0.1 -Release: 13.git%{short_hash}%{?dist} +Release: 14.git%{short_hash}%{?dist} Summary: D-Bus service for Fingerprint reader access Group: System Environment/Daemons @@ -17,7 +17,6 @@ Source0: fprintd-0.1-%{short_hash}.tar.b Patch1: 0001-Detect-when-a-device-is-disconnected.patch # https://bugzilla.redhat.com/show_bug.cgi?id=498368 Patch2: polkit1.patch -Patch3: pam-module.patch Url: http://www.reactivated.net/fprint/wiki/Fprintd BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) ExcludeArch: s390 s390x @@ -64,7 +63,6 @@ fingerprint readers access. %setup -q -n %{name}-%{version} %patch1 -p1 %patch2 -p1 -b .polkit1 -%patch3 -p1 -b .pam-module autoreconf -i -f @@ -107,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/interfaces/net.reactivated.Fprint.Manager.xml %changelog +* Tue Jul 21 2009 Bastien Nocera 0.1-14.git04fd09cfa +- Merge polkit patch and fix for polkit patch + * Tue Jul 21 2009 Bastien Nocera 0.1-13.git04fd09cfa - Make the -devel package noarch (#507698) polkit1.patch: configure.ac | 5 - data/Makefile.am | 6 - data/net.reactivated.fprint.device.policy.in | 2 pam/Makefile.am | 10 +- src/device.c | 92 +++++---------------------- src/net.reactivated.Fprint.Device.xml | 13 +++ 6 files changed, 41 insertions(+), 87 deletions(-) Index: polkit1.patch =================================================================== RCS file: /cvs/pkgs/rpms/fprintd/devel/polkit1.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- polkit1.patch 10 Jun 2009 00:14:14 -0000 1.1 +++ polkit1.patch 21 Jul 2009 14:02:07 -0000 1.2 @@ -68,7 +68,7 @@ diff -up fprintd-0.1/pam/Makefile.am.pol -pam_fprintd_so_LDADD = $(PAM_LIBS) $(GLIB_LIBS) +pam_fprintd_la_SOURCES = pam_fprintd.c $(MARSHALFILES) +pam_fprintd_la_CFLAGS = -fPIC $(WARN_CFLAGS) $(GLIB_CFLAGS) -+pam_fprintd_la_LDFLAGS = -module ++pam_fprintd_la_LDFLAGS = -avoid-version -module +pam_fprintd_la_LIBADD = $(PAM_LIBS) $(GLIB_LIBS) MARSHALFILES = marshal.c marshal.h --- pam-module.patch DELETED --- From s4504kr at fedoraproject.org Tue Jul 21 14:07:13 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 14:07:13 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.1,1.2 Message-ID: <20090721140713.E315F11C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2795 Modified Files: ghc-editline.spec Log Message: Fix typo in definition of %{pkg_libdir} Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghc-editline.spec 20 Jul 2009 15:42:01 -0000 1.1 +++ ghc-editline.spec 21 Jul 2009 14:06:43 -0000 1.2 @@ -1,13 +1,13 @@ %global pkg_name editline %global debug_package %{nil} -%global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} +%global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD @@ -127,6 +127,9 @@ fi %endif %Changelog +* Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 +- Fix typo in definition of %%{pkg_libdir} + * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue From s4504kr at fedoraproject.org Tue Jul 21 14:15:52 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 14:15:52 +0000 (UTC) Subject: rpms/ghc-editline/F-11 ghc-editline.spec,1.1,1.2 Message-ID: <20090721141552.BE5DB11C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6430 Modified Files: ghc-editline.spec Log Message: Fix typo in definition of %{pkg_libdir} Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-11/ghc-editline.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghc-editline.spec 20 Jul 2009 15:55:37 -0000 1.1 +++ ghc-editline.spec 21 Jul 2009 14:15:52 -0000 1.2 @@ -1,13 +1,13 @@ %global pkg_name editline %global debug_package %{nil} -%global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} +%global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD @@ -127,6 +127,9 @@ fi %endif %Changelog +* Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 +- Fix typo in definition of %%{pkg_libdir} + * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue From mtruch at fedoraproject.org Tue Jul 21 14:24:20 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Tue, 21 Jul 2009 14:24:20 +0000 (UTC) Subject: rpms/kst/devel noautobuild,1.2,1.3 Message-ID: <20090721142420.447BA11C005E@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9755 Added Files: noautobuild Log Message: Don't rebuild kst just yet. Index: noautobuild =================================================================== RCS file: noautobuild diff -N noautobuild --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ noautobuild 21 Jul 2009 14:24:19 -0000 1.3 @@ -0,0 +1,2 @@ +A new version of kst is out. No reason to rebuild the old version. +Local testing is comencing and the new version will be in rawhide asap. From nphilipp at fedoraproject.org Tue Jul 21 14:24:24 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Tue, 21 Jul 2009 14:24:24 +0000 (UTC) Subject: rpms/xsane/devel xsane-0.996-no-eula.patch, NONE, 1.1 xsane.spec, 1.71, 1.72 xsane-0.995-eula-license-size.patch, 1.1, NONE Message-ID: <20090721142424.424E811C005E@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9809 Modified Files: xsane.spec Added Files: xsane-0.996-no-eula.patch Removed Files: xsane-0.995-eula-license-size.patch Log Message: don't show EULA, mention bugzilla in about dialog (#504344) xsane-0.996-no-eula.patch: xsane-text.h | 2 ++ xsane.c | 16 ++++++---------- xsane.h | 3 +++ 3 files changed, 11 insertions(+), 10 deletions(-) --- NEW FILE xsane-0.996-no-eula.patch --- diff -up xsane-0.996/src/xsane.c.no-eula xsane-0.996/src/xsane.c --- xsane-0.996/src/xsane.c.no-eula 2009-07-21 15:33:00.927455229 +0200 +++ xsane-0.996/src/xsane.c 2009-07-21 15:39:28.661456472 +0200 @@ -3524,10 +3524,13 @@ static void xsane_about_dialog(GtkWidget snprintf(buf, sizeof(buf), "XSane %s %s\n" "%s %s\n" "\n" + "%s\n%s" + "\n\n" "%s %s\n" "%s %s\n", TEXT_VERSION, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT, + TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL, TEXT_HOMEPAGE, XSANE_HOMEPAGE, TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); @@ -5714,6 +5717,7 @@ static int xsane_init(int argc, char **a case 'v': /* --version */ g_print("%s-%s %s %s\n", xsane.prog_name, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT); + g_print("\n%s\n%s\n\n", TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL); g_print(" %s %s\n", TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); g_print(" %s %s\n", TEXT_PACKAGE, XSANE_PACKAGE_VERSION); g_print(" %s%d.%d.%d\n", TEXT_GTK_VERSION, GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); @@ -5840,17 +5844,9 @@ static int xsane_init(int argc, char **a } - if (xsane_pref_restore()) /* restore preferences, returns TRUE if license is not accpted yet */ + if (xsane_pref_restore()) /* restore preferences, returns TRUE if the version is different from the last run */ { - if (xsane_display_eula(1)) /* show license and ask for accept/not accept */ - { - DBG(DBG_info, "user did not accept eula, we abort\n"); - return 1; /* User did not accept eula */ - } - else /* User did accept eula */ - { - xsane_pref_save(); - } + xsane_pref_save(); } xsane_pref_restore_media(); diff -up xsane-0.996/src/xsane.h.no-eula xsane-0.996/src/xsane.h --- xsane-0.996/src/xsane.h.no-eula 2009-07-21 15:33:00.921470546 +0200 +++ xsane-0.996/src/xsane.h 2009-07-21 16:08:01.398707123 +0200 @@ -98,6 +98,9 @@ #define XSANE_EMAIL_ADR "Oliver.Rauch at xsane.org" #define XSANE_HOMEPAGE "http://www.xsane.org" #define XSANE_COPYRIGHT_TXT XSANE_DATE " " XSANE_COPYRIGHT +#ifndef XSANE_BUGTRACKER_URL +#define XSANE_BUGTRACKER_URL "(no bug tracker configured)" +#endif /* ---------------------------------------------------------------------------------------------------------------------- */ diff -up xsane-0.996/src/xsane-text.h.no-eula xsane-0.996/src/xsane-text.h --- xsane-0.996/src/xsane-text.h.no-eula 2007-08-13 09:16:43.000000000 +0200 +++ xsane-0.996/src/xsane-text.h 2009-07-21 15:42:00.609707360 +0200 @@ -230,6 +230,8 @@ "This program is distributed in the hope that it will be useful, but\n" \ "WITHOUT ANY WARRANTY; without even the implied warranty of\n" \ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n") +#define TEXT_MODIFIED_BLURB _("This package is modified from the original version.\n" \ + "Please contact your vendor or report problems at") #define TEXT_EMAIL_ADR _("E-mail:") #define TEXT_HOMEPAGE _("Homepage:") #define TEXT_FILE _("File:") Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/xsane.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- xsane.spec 20 Jul 2009 13:27:04 -0000 1.71 +++ xsane.spec 21 Jul 2009 14:24:24 -0000 1.72 @@ -1,16 +1,18 @@ -%define desktop_vendor fedora +# if you rebuild, please change bugtracker_url accordingly: +%global bugtracker_url http://bugzilla.redhat.com +%global desktop_vendor fedora Name: xsane Summary: X Window System front-end for the SANE scanner interface Version: 0.996 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in Patch0: xsane-0.995-xdg-open.patch -Patch1: xsane-0.995-eula-license-size.patch -Patch2: xsane-0.995-close-fds.patch -Patch3: xsane-0.996-sane-backends-1.0.20.patch +Patch1: xsane-0.995-close-fds.patch +Patch2: xsane-0.996-sane-backends-1.0.20.patch +Patch3: xsane-0.996-no-eula.patch License: GPLv2+ URL: http://www.xsane.org/ Group: Applications/Multimedia @@ -53,11 +55,13 @@ for doc in xsane.{CHANGES,PROBLEMS,INSTA done %patch0 -p1 -b .xdg-open -%patch1 -p1 -b .eula-license-size -%patch2 -p1 -b .close-fds -%patch3 -p1 -b .sane-backends-1.0.20 +%patch1 -p1 -b .close-fds +%patch2 -p1 -b .sane-backends-1.0.20 +%patch3 -p1 -b .no-eula %build +CC='gcc -DXSANE_BUGTRACKER_URL=\"%{bugtracker_url}\"' +export CC %configure --enable-gimp make LDFLAGS= @@ -119,6 +123,9 @@ fi %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog +* Tue Jul 21 2009 Nils Philippsen 0.996-9 +- don't show EULA, mention bugzilla in about dialog (#504344) + * Mon Jul 20 2009 Nils Philippsen 0.996-8 - don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) --- xsane-0.995-eula-license-size.patch DELETED --- From mtruch at fedoraproject.org Tue Jul 21 14:26:48 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Tue, 21 Jul 2009 14:26:48 +0000 (UTC) Subject: rpms/cfitsio/devel noautobuild,1.2,1.3 Message-ID: <20090721142649.04D6011C005E@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/cfitsio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10550 Added Files: noautobuild Log Message: Rational for no auto build of cfitsio just yet. Index: noautobuild =================================================================== RCS file: noautobuild diff -N noautobuild --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ noautobuild 21 Jul 2009 14:26:18 -0000 1.3 @@ -0,0 +1,2 @@ +A new version of cfitsio is available and will be in rawhide asap. +No need to bump and rebuild the older version. From rmeggins at fedoraproject.org Tue Jul 21 14:30:16 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 14:30:16 +0000 (UTC) Subject: rpms/389-admin/devel sources,1.2,1.3 Message-ID: <20090721143016.285AB11C049E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12756 Modified Files: sources Log Message: use 389-adminutil Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Jun 2009 02:36:44 -0000 1.2 +++ sources 21 Jul 2009 14:29:45 -0000 1.3 @@ -1 +1 @@ -6d9ba5141022e10696dc92f296ae5ed3 389-admin-1.1.8.tar.bz2 +37dd57c0d64cde2f78e106bead6538a0 389-admin-1.1.8.tar.bz2 From jussilehtola at fedoraproject.org Tue Jul 21 14:31:35 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Tue, 21 Jul 2009 14:31:35 +0000 (UTC) Subject: rpms/pygrace/devel pygrace.spec,1.6,1.7 Message-ID: <20090721143135.2123711C005E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435/devel Modified Files: pygrace.spec Log Message: * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/pygrace.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pygrace.spec 16 Jul 2009 14:56:05 -0000 1.6 +++ pygrace.spec 21 Jul 2009 14:31:34 -0000 1.7 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -13,10 +13,10 @@ BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -BuildRequires: python-numeric +BuildRequires: numpy Requires: grace -Requires: python-numeric +Requires: numpy %description Python bindings for grace, based on Nathan Gray's gracePlot. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Tue Jul 21 2009 Jussi Lehtola - 0.4-2 +- Change Requires: python-numeric to numpy. + * Thu Jul 16 2009 Jussi Lehtola - 0.4-1 - Update to 0.4. From jussilehtola at fedoraproject.org Tue Jul 21 14:32:04 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Tue, 21 Jul 2009 14:32:04 +0000 (UTC) Subject: rpms/pygrace/EL-4 pygrace.spec,1.2,1.3 Message-ID: <20090721143204.4387711C005E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435/EL-4 Modified Files: pygrace.spec Log Message: * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-4/pygrace.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pygrace.spec 16 Jul 2009 15:00:27 -0000 1.2 +++ pygrace.spec 21 Jul 2009 14:31:34 -0000 1.3 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -13,10 +13,10 @@ BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -BuildRequires: python-numeric +BuildRequires: numpy Requires: grace -Requires: python-numeric +Requires: numpy %description Python bindings for grace, based on Nathan Gray's gracePlot. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Tue Jul 21 2009 Jussi Lehtola - 0.4-2 +- Change Requires: python-numeric to numpy. + * Thu Jul 16 2009 Jussi Lehtola - 0.4-1 - Update to 0.4. From jussilehtola at fedoraproject.org Tue Jul 21 14:32:04 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Tue, 21 Jul 2009 14:32:04 +0000 (UTC) Subject: rpms/pygrace/EL-5 pygrace.spec,1.5,1.6 Message-ID: <20090721143204.73E9211C048A@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435/EL-5 Modified Files: pygrace.spec Log Message: * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/EL-5/pygrace.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pygrace.spec 16 Jul 2009 15:00:27 -0000 1.5 +++ pygrace.spec 21 Jul 2009 14:31:34 -0000 1.6 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -13,10 +13,10 @@ BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -BuildRequires: python-numeric +BuildRequires: numpy Requires: grace -Requires: python-numeric +Requires: numpy %description Python bindings for grace, based on Nathan Gray's gracePlot. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Tue Jul 21 2009 Jussi Lehtola - 0.4-2 +- Change Requires: python-numeric to numpy. + * Thu Jul 16 2009 Jussi Lehtola - 0.4-1 - Update to 0.4. From jussilehtola at fedoraproject.org Tue Jul 21 14:32:04 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Tue, 21 Jul 2009 14:32:04 +0000 (UTC) Subject: rpms/pygrace/F-10 pygrace.spec,1.2,1.3 Message-ID: <20090721143204.B190711C005E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435/F-10 Modified Files: pygrace.spec Log Message: * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-10/pygrace.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pygrace.spec 16 Jul 2009 15:00:28 -0000 1.2 +++ pygrace.spec 21 Jul 2009 14:31:34 -0000 1.3 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -13,10 +13,10 @@ BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -BuildRequires: python-numeric +BuildRequires: numpy Requires: grace -Requires: python-numeric +Requires: numpy %description Python bindings for grace, based on Nathan Gray's gracePlot. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Tue Jul 21 2009 Jussi Lehtola - 0.4-2 +- Change Requires: python-numeric to numpy. + * Thu Jul 16 2009 Jussi Lehtola - 0.4-1 - Update to 0.4. From jussilehtola at fedoraproject.org Tue Jul 21 14:32:04 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Tue, 21 Jul 2009 14:32:04 +0000 (UTC) Subject: rpms/pygrace/F-11 pygrace.spec,1.6,1.7 Message-ID: <20090721143204.DDCF211C005E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pygrace/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435/F-11 Modified Files: pygrace.spec Log Message: * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/F-11/pygrace.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pygrace.spec 16 Jul 2009 15:00:28 -0000 1.6 +++ pygrace.spec 21 Jul 2009 14:31:34 -0000 1.7 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -13,10 +13,10 @@ BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -BuildRequires: python-numeric +BuildRequires: numpy Requires: grace -Requires: python-numeric +Requires: numpy %description Python bindings for grace, based on Nathan Gray's gracePlot. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Tue Jul 21 2009 Jussi Lehtola - 0.4-2 +- Change Requires: python-numeric to numpy. + * Thu Jul 16 2009 Jussi Lehtola - 0.4-1 - Update to 0.4. From atkac at fedoraproject.org Tue Jul 21 14:53:39 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Tue, 21 Jul 2009 14:53:39 +0000 (UTC) Subject: rpms/nasm/devel .cvsignore, 1.13, 1.14 nasm.spec, 1.28, 1.29 sources, 1.12, 1.13 Message-ID: <20090721145339.BF86011C005E@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/nasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20224 Modified Files: .cvsignore nasm.spec sources Log Message: - update to 2.07 2.06 version produces wrong .strtab section in the ELF64 output format which breaks TigerVNC compilation. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nasm/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 10 Jul 2009 08:59:09 -0000 1.13 +++ .cvsignore 21 Jul 2009 14:53:08 -0000 1.14 @@ -1,2 +1,2 @@ -nasm-2.06.tar.bz2 -nasm-2.06-xdoc.tar.bz2 +nasm-2.07.tar.bz2 +nasm-2.07-xdoc.tar.bz2 Index: nasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/nasm/devel/nasm.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- nasm.spec 10 Jul 2009 08:59:09 -0000 1.28 +++ nasm.spec 21 Jul 2009 14:53:08 -0000 1.29 @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- Summary: A portable x86 assembler which uses Intel-like syntax Name: nasm -Version: 2.06 +Version: 2.07 Release: 1%{?dist} # No version specified. License: LGPLv2+ @@ -86,8 +86,13 @@ fi %{_bindir}/rdfdump %{_bindir}/rdflib %{_bindir}/rdx +%{_bindir}/rdf2ith +%{_bindir}/rdf2srec %changelog +* Tue Jul 21 2009 Adam Tkac - 2.07-1 +- update to 2.07 + * Wed Jul 10 2009 Zdenek Prikryl - 2.06-1 - updated to 2.06 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nasm/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 10 Jul 2009 08:59:09 -0000 1.12 +++ sources 21 Jul 2009 14:53:08 -0000 1.13 @@ -1,2 +1,2 @@ -0db94e88fd9b7a360f826f9ffd6c0fc7 nasm-2.06.tar.bz2 -464fce1a781d7bc1956a6bca10cf0e75 nasm-2.06-xdoc.tar.bz2 +d8934231e81874c29374ddef1fbdb1ed nasm-2.07.tar.bz2 +ef3c3eeb62f155adf27a7185d603b1dd nasm-2.07-xdoc.tar.bz2 From jgranado at fedoraproject.org Tue Jul 21 14:55:52 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Tue, 21 Jul 2009 14:55:52 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-pop-push-error.patch, 1.2, 1.3 parted-1.9.0.tar.gz, 1.1, 1.2 parted.spec, 1.136, 1.137 sources, 1.37, 1.38 parted-1.9.0-device-path.patch, 1.1, NONE parted-1.9.0-extra-var.patch, 1.1, NONE parted-1.9.0-use-linuxh.patch, 1.1, NONE Message-ID: <20090721145552.2E6EA11C005E@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21332 Modified Files: parted-1.9.0-pop-push-error.patch parted-1.9.0.tar.gz parted.spec sources Removed Files: parted-1.9.0-device-path.patch parted-1.9.0-extra-var.patch parted-1.9.0-use-linuxh.patch Log Message: New snapshot version. parted-1.9.0-pop-push-error.patch: disk.c | 86 ++++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 56 insertions(+), 30 deletions(-) Index: parted-1.9.0-pop-push-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0-pop-push-error.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- parted-1.9.0-pop-push-error.patch 18 Jul 2009 10:33:15 -0000 1.2 +++ parted-1.9.0-pop-push-error.patch 21 Jul 2009 14:55:51 -0000 1.3 @@ -1,4 +1,4 @@ -From 72866a8b24da93e982142304c614d08bae5589c7 Mon Sep 17 00:00:00 2001 +From 7c7d7b3efc1eb39f884083c852875e1451efc29f Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 17:05:39 +0200 Subject: [PATCH] return errro on push or pop update mode. @@ -8,7 +8,7 @@ Subject: [PATCH] return errro on push or 1 files changed, 56 insertions(+), 29 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c -index 5fb8060..8bab741 100644 +index 3269b9d..39f3a74 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -54,8 +54,8 @@ @@ -276,5 +276,5 @@ index 5fb8060..8bab741 100644 } -- -1.6.3.3 +1.6.0.6 Index: parted-1.9.0.tar.gz =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0.tar.gz,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 Binary files /tmp/cvsMO37Ep and /tmp/cvsR5xncA differ Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- parted.spec 18 Jul 2009 10:33:15 -0000 1.136 +++ parted.spec 21 Jul 2009 14:55:51 -0000 1.137 @@ -4,23 +4,30 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 3.20090610git32dc%{?dist} +Release: 4.20090721git980c%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted +# Reproduce the snapshot tar.gz run this script: +# run http://jgranado.fedorapeople.org/packages/parted/upstream/parted-release +# +# the line that was used is: +# parted-release --version 1.9.0 --key-id PUB_KEY +# +# Note that this script will give different results if master changes in upstream. +# Source: %{name}/%{name}-%{version}.tar.gz Patch1: %{name}-1.9.0-appletv-support.patch Patch2: %{name}-1.9.0-extended-mbr.patch -Patch3: %{name}-1.9.0-extra-var.patch -Patch4: %{name}-1.9.0-noheaders.patch -Patch5: %{name}-1.9.0-pop-push-error.patch -Patch6: %{name}-1.9.0-no-cylinder-align.patch -Patch7: %{name}-1.9.0-swap-flag.patch -Patch8: %{name}-1.9.0-remove-struct-elem.patch -Patch9: %{name}-1.9.0-move-function-declarations.patch -Patch10: %{name}-1.9.0-use-linuxh.patch -Patch11: %{name}-1.9.0-device-path.patch +Patch3: %{name}-1.9.0-noheaders.patch +Patch4: %{name}-1.9.0-pop-push-error.patch +Patch5: %{name}-1.9.0-no-cylinder-align.patch +Patch6: %{name}-1.9.0-swap-flag.patch +Patch7: %{name}-1.9.0-remove-struct-elem.patch +Patch8: %{name}-1.9.0-move-function-declarations.patch +Patch9: %{name}-1.9.0-dasd-duplicate.patch +Patch10: %{name}-1.9.0-new-duplicate.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -62,15 +69,15 @@ Parted library, you need to install this %setup -q -n %{name}-%{version} %patch1 -p1 -b .appletv %patch2 -p1 -b .extended-mbr -%patch3 -p1 -b .extra-var -%patch4 -p1 -b .noheaders -%patch5 -p1 -b .pop-push-error -%patch6 -p1 -b .no-cylinder-align -%patch7 -p1 -b .swap-flag -%patch8 -p1 -b .remove-struct-elem -%patch9 -p1 -b .move-function-declarations -%patch10 -p1 -b .use-linuxh -%patch11 -p1 -b .device-path +%patch3 -p1 -b .noheaders +%patch4 -p1 -b .pop-push-error +%patch5 -p1 -b .no-cylinder-align +%patch6 -p1 -b .swap-flag +%patch7 -p1 -b .remove-struct-elem +%patch8 -p1 -b .move-function-declarations +%patch9 -p1 -b .dasd-duplicate +%patch10 -p1 -b .new-duplicate + %build %configure --enable-selinux --disable-static @@ -128,6 +135,10 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Tue Jul 21 2009 Joel Granados - 1.9.0-20090721git980c +- New snapshot. +- Add patches to make dasd duplicate disk work. + * Sat Jul 18 2009 Lubomir Rintel - 1.9.0-3.20090610git32dc - Fix a typo in the errno patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 10 Jul 2009 13:16:25 -0000 1.37 +++ sources 21 Jul 2009 14:55:51 -0000 1.38 @@ -1 +1 @@ -ba0122a5ab71cb3b040d6193532f1aed parted-1.9.0.tar.gz +d76712c8b6855e6810283c9e91fd25ee parted-1.9.0.tar.gz --- parted-1.9.0-device-path.patch DELETED --- --- parted-1.9.0-extra-var.patch DELETED --- --- parted-1.9.0-use-linuxh.patch DELETED --- From awjb at fedoraproject.org Tue Jul 21 14:56:29 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 14:56:29 +0000 (UTC) Subject: rpms/claws-mail-plugins/F-10 claws-mail-plugins.spec,1.39,1.40 Message-ID: <20090721145629.4E7D611C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/claws-mail-plugins/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21590 Modified Files: claws-mail-plugins.spec Log Message: - no fancy on F10 for now Index: claws-mail-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail-plugins/F-10/claws-mail-plugins.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- claws-mail-plugins.spec 7 Jul 2009 04:42:01 -0000 1.39 +++ claws-mail-plugins.spec 21 Jul 2009 14:56:28 -0000 1.40 @@ -4,7 +4,6 @@ %define attachwarner 0.2.17 %define attremover 1.0.10 %define cachesaver 0.10.9 -%define fancy 0.9.7 %define fetchinfo 0.4.24 %define gtkhtml2viewer 0.24 %define mailmbox 1.14.3 @@ -54,7 +53,6 @@ Requires: %{name}-att-remover = %{ Requires: %{name}-attachwarner = %{version}-%{release} Requires: %{name}-cachesaver = %{version}-%{release} Obsoletes: %{name}-etpan-privacy < %{version}-%{release} -Requires: %{name}-fancy = %{version}-%{release} Requires: %{name}-fetchinfo = %{version}-%{release} Requires: %{name}-gtkhtml2-viewer = %{version}-%{release} Obsoletes: %{name}-maildir < %{version}-%{release} @@ -137,14 +135,6 @@ Obsoletes: sylpheed-claws-plugins-c This plugin saves the caches every 60 seconds (or user-defined period). It helps avoiding the loss of metadata on crashes. -%package fancy -Summary: Render html email using WebKit -Group: Applications/Internet -Requires: claws-mail >= %{version} - -%description fancy -This plugin renders html email using the GTK+ port of WebKit library. - %package fetchinfo Summary: Inserts headers containing some download information Group: Applications/Internet @@ -294,11 +284,6 @@ cd ../cachesaver-%{cachesaver} %configure --disable-static --disable-dependency-tracking %{__make} %{?_smp_mflags} -# fancy -cd ../fancy-%{fancy} -%configure --disable-static --disable-dependency-tracking -%{__make} %{?_smp_mflags} - #fetchinfo-plugin cd ../fetchinfo-plugin-%{fetchinfo} %configure --disable-static --disable-dependency-tracking @@ -386,12 +371,6 @@ cd cachesaver-%{cachesaver} %{__make} install DESTDIR=$RPM_BUILD_ROOT CLAWS_MAIL_PLUGINDIR=%{_libdir}/claws-mail/plugins/ cd - -#fancy -cd fancy-%{fancy} -%{__make} install DESTDIR=$RPM_BUILD_ROOT CLAWS_MAIL_PLUGINDIR=%{_libdir}/claws-mail/plugins/ -cd - -%find_lang fancy - #fetchinfo-plugin cd fetchinfo-plugin-%{fetchinfo} %{__make} install DESTDIR=$RPM_BUILD_ROOT CLAWS_MAIL_PLUGINDIR=%{_libdir}/claws-mail/plugins/ @@ -512,14 +491,6 @@ rm -rf $RPM_BUILD_ROOT %doc cachesaver-%{cachesaver}/COPYING %{_libdir}/claws-mail/plugins/cachesaver* -%files fancy -f fancy.lang -%defattr(-,root,root,-) -%doc fancy-%{fancy}/COPYING -%doc fancy-%{fancy}/AUTHORS -%doc fancy-%{fancy}/README -%doc fancy-%{fancy}/ChangeLog -%{_libdir}/claws-mail/plugins/fancy* - %files fetchinfo %defattr(-,root,root,-) %doc fetchinfo-plugin-%{fetchinfo}/ChangeLog @@ -609,7 +580,6 @@ rm -rf $RPM_BUILD_ROOT * Mon Jul 06 2009 Andreas Bierfert - 3.7.2-1 - version upgrade -- new plugin: fancy - fix notification plugin to work with libnotify (#496149) * Mon Mar 30 2009 Michael Schwendt From s4504kr at fedoraproject.org Tue Jul 21 14:57:36 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 14:57:36 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,1.1,1.2 Message-ID: <20090721145736.ED08F11C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22158 Modified Files: ghc-editline.spec Log Message: Fix typo in definition of %{pkg_libdir} Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/ghc-editline.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghc-editline.spec 20 Jul 2009 16:03:44 -0000 1.1 +++ ghc-editline.spec 21 Jul 2009 14:57:36 -0000 1.2 @@ -1,13 +1,15 @@ %global pkg_name editline +%global ghc_version 6.10.1 %global debug_package %{nil} -%global pgk_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} +%global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} +%global pkg_docdir %{_docdir}/ghc/libraries/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Haskell %{pgk_name} library Group: Development/Libraries License: BSD @@ -17,7 +19,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version ExclusiveArch: %{ix86} x86_64 ppc alpha -BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel +BuildRequires: ghc >= 6.10, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif @@ -112,13 +114,14 @@ if [ "$1" -eq 0 ] ; then fi %endif -%files devel -f %{name}-devel.files +%files devel -f %{name}.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} -%files doc -f %{name}-doc.files +%files doc %defattr(-,root,root,-) +%{pkg_docdir} %endif %if %{with_prof} @@ -127,6 +130,9 @@ fi %endif %Changelog +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-4 +- Fix typo in definition of %%{pkg_libdir} + * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 - Fix monor grammer issue From jgranado at fedoraproject.org Tue Jul 21 14:57:58 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Tue, 21 Jul 2009 14:57:58 +0000 (UTC) Subject: rpms/parted/devel parted.spec,1.137,1.138 Message-ID: <20090721145758.0A2D611C005E@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22170 Modified Files: parted.spec Log Message: Correct little error in the change log version. Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- parted.spec 21 Jul 2009 14:55:51 -0000 1.137 +++ parted.spec 21 Jul 2009 14:57:57 -0000 1.138 @@ -135,7 +135,7 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog -* Tue Jul 21 2009 Joel Granados - 1.9.0-20090721git980c +* Tue Jul 21 2009 Joel Granados - 1.9.0-4.20090721git980c - New snapshot. - Add patches to make dasd duplicate disk work. From mclasen at fedoraproject.org Tue Jul 21 14:58:03 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Tue, 21 Jul 2009 14:58:03 +0000 (UTC) Subject: rpms/notification-daemon-engine-nodoka/devel notification-daemon-engine-nodoka.spec, 1.8, 1.9 sexy.patch, 1.1, 1.2 Message-ID: <20090721145803.4559211C005E@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22059 Modified Files: notification-daemon-engine-nodoka.spec sexy.patch Log Message: fix libsexy removal Index: notification-daemon-engine-nodoka.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel/notification-daemon-engine-nodoka.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- notification-daemon-engine-nodoka.spec 2 Jul 2009 04:46:39 -0000 1.8 +++ notification-daemon-engine-nodoka.spec 21 Jul 2009 14:57:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: notification-daemon-engine-nodoka Version: 0.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: The Nodoka theme engine for the notification daemon Group: System Environment/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/notification-daemon-1.0/engines/libnodoka.so %changelog +* Tue Jul 21 2009 Matthias Clasen - 0.1.0-9 +- Fix the libsexy removal patch + * Thu Jul 2 2009 Matthias Clasen - 0.1.0-8 - Drop libsexy dep sexy.patch: configure.ac | 6 ------ src/nodoka-theme.c | 17 ++++++++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) Index: sexy.patch =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel/sexy.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sexy.patch 2 Jul 2009 04:39:41 -0000 1.1 +++ sexy.patch 21 Jul 2009 14:57:33 -0000 1.2 @@ -1,6 +1,6 @@ diff -up notification-daemon-engine-nodoka-0.1.0/configure.ac.sexy notification-daemon-engine-nodoka-0.1.0/configure.ac ---- notification-daemon-engine-nodoka-0.1.0/configure.ac.sexy 2009-07-02 00:36:31.195289044 -0400 -+++ notification-daemon-engine-nodoka-0.1.0/configure.ac 2009-07-02 00:36:41.615030951 -0400 +--- notification-daemon-engine-nodoka-0.1.0/configure.ac.sexy 2008-04-20 05:46:42.000000000 -0400 ++++ notification-daemon-engine-nodoka-0.1.0/configure.ac 2009-07-02 00:45:44.654266038 -0400 @@ -40,12 +40,6 @@ PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.10. AC_SUBST(GTK_CFLAGS) AC_SUBST(GTK_LIBS) @@ -15,8 +15,8 @@ diff -up notification-daemon-engine-nodo AC_CONFIG_FILES([Makefile src/Makefile]) diff -up notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c.sexy notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c ---- notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c.sexy 2009-07-02 00:34:45.446017948 -0400 -+++ notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c 2009-07-02 00:36:21.362018441 -0400 +--- notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c.sexy 2009-07-02 00:45:44.647264442 -0400 ++++ notification-daemon-engine-nodoka-0.1.0/src/nodoka-theme.c 2009-07-21 10:55:05.596047665 -0400 @@ -25,7 +25,6 @@ #include "config.h" @@ -56,3 +56,12 @@ diff -up notification-daemon-engine-nodo atkobj = gtk_widget_get_accessible(windata->body_label); atk_object_set_description(atkobj, "Notification body text."); +@@ -837,7 +844,7 @@ set_notification_text(GtkWindow *nw, con + gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); + g_free(str); + +- sexy_url_label_set_markup(SEXY_URL_LABEL(windata->body_label), body); ++ gtk_label_set_markup (GTK_LABEL (windata->body_label), body); + + if (body == NULL || *body == '\0') + gtk_widget_hide(windata->body_label); From jgranado at fedoraproject.org Tue Jul 21 14:59:01 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Tue, 21 Jul 2009 14:59:01 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-dasd-duplicate.patch, NONE, 1.1 parted-1.9.0-new-duplicate.patch, NONE, 1.1 Message-ID: <20090721145901.CBBC911C005E@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22646 Added Files: parted-1.9.0-dasd-duplicate.patch parted-1.9.0-new-duplicate.patch Log Message: Add the patches for dasd duplication. parted-1.9.0-dasd-duplicate.patch: dasd.c | 235 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 222 insertions(+), 13 deletions(-) --- NEW FILE parted-1.9.0-dasd-duplicate.patch --- >From bc854d48563ff30ba4c55914baa8db0a271790e5 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 16 Jul 2009 20:16:43 +0200 Subject: [PATCH] Add duplicate functionality to dasd type lables. * libparted/labels/dasd.c (dasd_alloc): Add the errno to the exception message to ease debugging. (dasd_partition_duplicate): New function. (dasd_duplicate): Include all the dasd specific structures in the duplicate disk. (dasd_partition_new): Handle the case when malloc fails because of lack of memory. (dasd_disk_ops): Add the new dasd_partition_duplicate hook. --- libparted/labels/dasd.c | 234 ++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 222 insertions(+), 12 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index ec73d09..e87daba 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -58,6 +59,9 @@ extern void ped_disk_dasd_init (); extern void ped_disk_dasd_done (); +static PedPartition* dasd_partition_new (const PedDisk*, PedPartitionType, + const PedFileSystemType*, + PedSector, PedSector); #define DASD_NAME "dasd" @@ -104,7 +108,8 @@ dasd_alloc (const PedDevice* dev) &disk_specific->real_sector_size) == -1) { ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, _("Unable to determine the block " - "size of this dasd")); + "size of this dasd - %s"), + strerror(errno)); free(disk_specific); free(disk); return NULL; @@ -113,19 +118,216 @@ dasd_alloc (const PedDevice* dev) return disk; } +static PedPartition* +dasd_partition_duplicate (const PedPartition* part, PedDisk* disk) +{ + PedPartition* walk; + PedPartition* new_part; + format1_label_t* new_format1; + partition_info_t* new_part_info; + partition_info_t* old_part_info; + DasdPartitionData* old_dasd_data; + DasdPartitionData* temp_dasd_data; + DasdDiskSpecific* old_disk_specific; + partition_info_t* old_anchor_first; + partition_info_t* old_anchor_last; + char* error_message; + + /* Initialize old_* variables. */ + old_dasd_data = (DasdPartitionData*) part->disk_specific; + old_part_info = (partition_info_t*) old_dasd_data->part_info; + old_disk_specific = (DasdDiskSpecific*) part->disk->disk_specific; + old_anchor_first = (partition_info_t*) old_disk_specific->anchor->first; + old_anchor_last = (partition_info_t*) old_disk_specific->anchor->last; + /* The default error message. */ + error_message = "Could not allocate memory for dasd specific structure."; + + /* Handle the DasdPartitionData->partition_info_t->format1_label_t pointer. */ + new_format1 = (format1_label_t*) ped_malloc (sizeof (format1_label_t)); + if (!new_format1) + goto error; + memcpy (new_format1, old_part_info->f1, sizeof (format1_label_t)); + + /* Handle the DasdPartitionData->partition_info_t pointer. */ + new_part_info = (partition_info_t*) ped_malloc (sizeof (partition_info_t)); + if (!new_part_info) + goto error_free_format1; + memcpy (new_part_info, old_part_info, sizeof (partition_info_t)); + new_part_info->f1 = new_format1; + new_part_info->next = NULL; + new_part_info->prev = NULL; + + /* Try to set new_part_info->next, new_part_info->prev, + * disk->disk_specific->anchor->first & disk->disk_specific->anchor->last + * when disk is not NULL. + */ + if (disk) + { + /* Handle the next and prev pointers. */ + /* Look for the prev. */ + if (old_part_info->prev == NULL || part->prev == NULL) + new_part_info->prev = NULL; + else + { + for (walk = disk->part_list ; walk ; walk = walk->next) + { + /* Identify the partition by start and length sectors. */ + if (walk->geom.start == part->prev->geom.start + && walk->geom.length == part->prev->geom.length) + { + /* Verify the new_part_info->prev and the walk->next. */ + temp_dasd_data = (DasdPartitionData*) walk->disk_specific; + new_part_info->prev = (partition_info_t*) temp_dasd_data->part_info; + ((partition_info_t*)temp_dasd_data->part_info)->next = new_part_info; + break; + } + } + } + + /* Look for the next. */ + if (old_part_info->next == NULL || part->next == NULL) + new_part_info->next = NULL; + else + { + for (walk = disk->part_list ; walk ; walk = walk->next) + { + /* Identify the partition by start and length sectors. */ + if (walk->geom.start == part->next->geom.start + && walk->geom.length == part->next->geom.length) + { + /* Verify the new_part_info->next and the walk->prev. */ + temp_dasd_data = (DasdPartitionData*) walk->disk_specific; + new_part_info->next = (partition_info_t*) temp_dasd_data->part_info; + ((partition_info_t*)temp_dasd_data->part_info)->prev = new_part_info; + break; + } + } + } + + /* Handle the DasdDiskSpecific->fdasd_anchor->last && + * Handle the DasdDiskSpecific->fdasd_anchor->first. */ + if ( old_anchor_first->start_trk == new_part_info->start_trk + && old_anchor_first->len_trk == new_part_info->len_trk) + ((DasdDiskSpecific*) disk->disk_specific)->anchor->first = new_part_info; + else if ( old_anchor_last->start_trk == new_part_info->start_trk + && old_anchor_last->len_trk == new_part_info->len_trk) + ((DasdDiskSpecific*) disk->disk_specific)->anchor->last = new_part_info; + } + + /* Create new partition. Allocates memory for DasdPartitionData. */ + new_part = dasd_partition_new (part->disk, part->type, part->fs_type, + part->geom.start, part->geom.end); + if (!new_part) + goto error_free_part_info; + new_part->num = part->num; + + /* Handle the DasdPartitionData pointer. */ + memcpy (new_part->disk_specific, old_dasd_data, sizeof (DasdPartitionData)); + ((DasdPartitionData*)new_part->disk_specific)->part_info = new_part_info; + + return new_part; + +error_free_part_info: + free(new_part_info); +error_free_format1: + free(new_format1); +error: + ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, + _(error_message)); + return NULL; +} + static PedDisk* dasd_duplicate (const PedDisk* disk) { - PedDisk* new_disk; - - new_disk = ped_disk_new_fresh(disk->dev, &dasd_disk_type); - - if (!new_disk) - return NULL; - - new_disk->disk_specific = NULL; - - return new_disk; + PedDisk* new_disk; + DasdDiskSpecific* old_disk_specific; + fdasd_anchor_t* new_anchor; + fdasd_anchor_t* old_anchor; + format4_label_t* new_format4; + format5_label_t* new_format5; + format7_label_t* new_format7; + volume_label_t* new_volume; + char* error_message; + + /* Initialize old_* variables. */ + old_disk_specific = disk->disk_specific; + old_anchor = old_disk_specific->anchor; + /* The default error message. */ + error_message = "Could not allocate memory for dasd specific structure."; + + /* Handle DasdDiskSpecific->fdasd_anchor->format4_label_t. */ + new_format4 = (format4_label_t*) ped_malloc (sizeof (format4_label_t)); + if (!new_format4) + goto error; + memcpy (new_format4, old_disk_specific->anchor->f4, sizeof (format4_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->format5_label_t. */ + new_format5 = (format5_label_t*) ped_malloc (sizeof (format5_label_t)); + if (!new_format5) + goto error_free_format4; + memcpy (new_format5, old_disk_specific->anchor->f5, sizeof (format5_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->format7_label_t. */ + new_format7 = (format7_label_t*) ped_malloc (sizeof (format7_label_t)); + if (!new_format7) + goto error_free_format5; + memcpy (new_format7, old_disk_specific->anchor->f7, sizeof (format7_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->volume_label_t. */ + new_volume = (volume_label_t*) ped_malloc (sizeof (volume_label_t)); + if (!new_volume) + goto error_free_format7; + memcpy (new_volume, old_disk_specific->anchor->vlabel, + sizeof (volume_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor. */ + if (! (new_anchor = (fdasd_anchor_t*) ped_malloc (sizeof (fdasd_anchor_t)))) + goto error_free_volume; + memcpy (new_anchor, old_anchor, sizeof (fdasd_anchor_t)); + new_anchor->f4 = new_format4; + new_anchor->f5 = new_format5; + new_anchor->f7 = new_format7; + new_anchor->vlabel = new_volume; + /* We dont have last and first info yet. */ + new_anchor->last = NULL; + new_anchor->first = NULL; + + /* Handle new disk creation. ped_disk_new_fresh allocates memory for + * new_disk->disk_specific. */ + /* We need to make sure that the device is open for reading. */ + if (!ped_device_open(disk->dev)) + { + error_message = "Could not open device for dasd disk duplication"; + goto error_free_anchor; + } + new_disk = ped_disk_new_fresh (disk->dev, &dasd_disk_type); + if (!ped_device_close(disk->dev)) + { + error_message = "Could not close device for dasd disk duplication"; + goto error_free_anchor; + } + if (!new_disk) + goto error_free_anchor; + memcpy (new_disk->disk_specific, old_disk_specific, sizeof(DasdDiskSpecific)); + ((DasdDiskSpecific*)new_disk->disk_specific)->anchor = new_anchor; + + return new_disk; + +error_free_anchor: + free(new_anchor); +error_free_volume: + free(new_volume); +error_free_format7: + free(new_format7); +error_free_format5: + free(new_format5); +error_free_format4: + free(new_format4); +error: + ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, + _(error_message)); + return NULL; } static void @@ -551,12 +753,20 @@ dasd_partition_new (const PedDisk* disk, PedPartitionType part_type, goto error; part->disk_specific = ped_malloc (sizeof (DasdPartitionData)); + if (!part->disk_specific) + goto error_free_part; return part; +error_free_part: + free(part); error: return 0; } +/* + * Frees the memory of an active partition. Active here is whatever + * ped_partition_is_active returns. + */ static void dasd_partition_destroy (PedPartition* part) { @@ -818,6 +1028,7 @@ static PedDiskOps dasd_disk_ops = { partition_set_system: dasd_partition_set_system, partition_new: dasd_partition_new, + partition_duplicate: dasd_partition_duplicate, partition_destroy: dasd_partition_destroy, partition_set_flag: dasd_partition_set_flag, partition_get_flag: dasd_partition_get_flag, @@ -831,7 +1042,6 @@ static PedDiskOps dasd_disk_ops = { get_max_primary_partition_count: dasd_get_max_primary_partition_count, get_max_supported_partition_count: dasd_get_max_supported_partition_count, - partition_duplicate: NULL }; static PedDiskType dasd_disk_type = { -- 1.6.0.6 parted-1.9.0-new-duplicate.patch: include/parted/disk.h | 4 +++- libparted/disk.c | 2 +- libparted/labels/aix.c | 2 +- libparted/labels/bsd.c | 2 +- libparted/labels/dos.c | 2 +- libparted/labels/dvh.c | 2 +- libparted/labels/gpt.c | 2 +- libparted/labels/loop.c | 2 +- libparted/labels/mac.c | 2 +- libparted/labels/pc98.c | 2 +- libparted/labels/rdb.c | 2 +- libparted/labels/sun.c | 3 +-- 12 files changed, 14 insertions(+), 13 deletions(-) --- NEW FILE parted-1.9.0-new-duplicate.patch --- >From 3b3113cff84f89ae6a64e195acb3423125f6d681 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 16 Jul 2009 18:35:30 +0200 Subject: [PATCH] Add disk as an argument to partition_duplicate. The disk is needed to provide some context when creating the duplicate partition. The disk is needed by the dasd type labels. * include/parted/disk.h (partition_duplicate): Add the disk to the function definition * libparted/disk.c (_add_duplicate_part): Pass the "new disk" to the partition_duplicate function. * libparted/labels/aix.c (aix_partition_duplicate): Comply with the new partition_duplicate function definition. * libparted/labels/bsd.c (bsd_partition_duplicate): Likewise * libparted/labels/dos.c (msdos_partition_duplicate): Likewise * libparted/labels/dvh.c (dvh_partition_duplicate): Likewise * libparted/labels/gpt.c (gpt_partition_duplicate): Likewise * libparted/labels/loop.c (loop_partition_duplicate): Likewise * libparted/labels/mac.c (mac_partition_duplicate): Likewise * libparted/labels/pc98.c (pc98_partition_duplicate): Likewise * libparted/labels/rdb.c (amiga_partition_duplicate): Likewise * libparted/labels/sun.c (sun_partition_duplicate): Likewise --- include/parted/disk.h | 4 +++- libparted/disk.c | 2 +- libparted/labels/aix.c | 2 +- libparted/labels/bsd.c | 2 +- libparted/labels/dos.c | 2 +- libparted/labels/dvh.c | 2 +- libparted/labels/gpt.c | 2 +- libparted/labels/loop.c | 2 +- libparted/labels/mac.c | 2 +- libparted/labels/pc98.c | 2 +- libparted/labels/rdb.c | 2 +- libparted/labels/sun.c | 2 +- 12 files changed, 14 insertions(+), 12 deletions(-) diff --git a/include/parted/disk.h b/include/parted/disk.h index 664c388..7548be8 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -189,7 +189,9 @@ struct _PedDiskOps { const PedFileSystemType* fs_type, PedSector start, PedSector end); - PedPartition* (*partition_duplicate) (const PedPartition* part); + /* disk is the result of duplicate (the new disk). Can be NULL */ + PedPartition* (*partition_duplicate) (const PedPartition* part, + PedDisk* disk); void (*partition_destroy) (PedPartition* part); int (*partition_set_system) (PedPartition* part, const PedFileSystemType* fs_type); diff --git a/libparted/disk.c b/libparted/disk.c index 44a2f2f..99cb563 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -227,7 +227,7 @@ _add_duplicate_part (PedDisk* disk, PedPartition* old_part) PedPartition* new_part; int ret; - new_part = disk->type->ops->partition_duplicate (old_part); + new_part = disk->type->ops->partition_duplicate (old_part, disk); if (!new_part) goto error; new_part->disk = disk; diff --git a/libparted/labels/aix.c b/libparted/labels/aix.c index de81270..a544cbb 100644 --- a/libparted/labels/aix.c +++ b/libparted/labels/aix.c @@ -165,7 +165,7 @@ aix_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -aix_partition_duplicate (const PedPartition* part) +aix_partition_duplicate (const PedPartition* part, PedDisk* disk) { ped_exception_throw (PED_EXCEPTION_NO_FEATURE, PED_EXCEPTION_CANCEL, diff --git a/libparted/labels/bsd.c b/libparted/labels/bsd.c index 3d6b5ab..62634a6 100644 --- a/libparted/labels/bsd.c +++ b/libparted/labels/bsd.c @@ -417,7 +417,7 @@ error: } static PedPartition* -bsd_partition_duplicate (const PedPartition* part) +bsd_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; BSDPartitionData* new_bsd_data; diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index e7d416d..0987c70 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1215,7 +1215,7 @@ error: } static PedPartition* -msdos_partition_duplicate (const PedPartition* part) +msdos_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; DosPartitionData* new_dos_data; diff --git a/libparted/labels/dvh.c b/libparted/labels/dvh.c index 93de8f9..c4de55a 100644 --- a/libparted/labels/dvh.c +++ b/libparted/labels/dvh.c @@ -534,7 +534,7 @@ error: } static PedPartition* -dvh_partition_duplicate (const PedPartition* part) +dvh_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; DVHPartData* part_data = part->disk_specific; diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 1d7f0c5..b5c8cdb 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -1212,7 +1212,7 @@ error: } static PedPartition* -gpt_partition_duplicate (const PedPartition* part) +gpt_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; GPTPartitionData* part_data = part->disk_specific; diff --git a/libparted/labels/loop.c b/libparted/labels/loop.c index 10ba29e..60c22eb 100644 --- a/libparted/labels/loop.c +++ b/libparted/labels/loop.c @@ -201,7 +201,7 @@ loop_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -loop_partition_duplicate (const PedPartition* part) +loop_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; diff --git a/libparted/labels/mac.c b/libparted/labels/mac.c index c1f3dc7..42abd66 100644 --- a/libparted/labels/mac.c +++ b/libparted/labels/mac.c @@ -1154,7 +1154,7 @@ error: } static PedPartition* -mac_partition_duplicate (const PedPartition* part) +mac_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; MacPartitionData* new_mac_data; diff --git a/libparted/labels/pc98.c b/libparted/labels/pc98.c index f392bea..7fe23ab 100644 --- a/libparted/labels/pc98.c +++ b/libparted/labels/pc98.c @@ -568,7 +568,7 @@ error: } static PedPartition* -pc98_partition_duplicate (const PedPartition* part) +pc98_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; PC98PartitionData* new_pc98_data; diff --git a/libparted/labels/rdb.c b/libparted/labels/rdb.c index c39230d..e0bb936 100644 --- a/libparted/labels/rdb.c +++ b/libparted/labels/rdb.c @@ -851,7 +851,7 @@ amiga_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -amiga_partition_duplicate (const PedPartition* part) +amiga_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition *new_part; struct PartitionBlock *new_amiga_part; diff --git a/libparted/labels/sun.c b/libparted/labels/sun.c index 41580a4..1451252 100644 --- a/libparted/labels/sun.c +++ b/libparted/labels/sun.c @@ -500,7 +500,7 @@ error: } static PedPartition* -sun_partition_duplicate (const PedPartition* part) +sun_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; SunPartitionData* new_sun_data; -- 1.6.0.6 From hadess at fedoraproject.org Tue Jul 21 15:02:12 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 15:02:12 +0000 (UTC) Subject: rpms/totem/devel totem.spec,1.243,1.244 Message-ID: <20090721150213.10C2C11C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24918 Modified Files: totem.spec Log Message: * Tue Jul 21 2009 Bastien Nocera 2.27.1-3 - Rebuild for new libgdata Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/totem.spec,v retrieving revision 1.243 retrieving revision 1.244 diff -u -p -r1.243 -r1.244 --- totem.spec 8 Jun 2009 08:49:03 -0000 1.243 +++ totem.spec 21 Jul 2009 15:02:12 -0000 1.244 @@ -6,7 +6,7 @@ Summary: Movie player for GNOME Name: totem Version: 2.27.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ with exceptions Group: Applications/Multimedia URL: http://projects.gnome.org/totem/ @@ -375,6 +375,9 @@ fi %{_libdir}/totem/plugins/publish %changelog +* Tue Jul 21 2009 Bastien Nocera 2.27.1-3 +- Rebuild for new libgdata + * Mon Jun 08 2009 Bastien Nocera 2.27.1-2 - Rebuild against newer libgdata From xhorak at fedoraproject.org Tue Jul 21 15:04:57 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 15:04:57 +0000 (UTC) Subject: rpms/firefox/F-10 .cvsignore, 1.101, 1.102 firefox.spec, 1.325, 1.326 sources, 1.115, 1.116 Message-ID: <20090721150457.BE46A11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25725 Modified Files: .cvsignore firefox.spec sources Log Message: Update to 3.0.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-10/.cvsignore,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- .cvsignore 11 Jun 2009 22:31:48 -0000 1.101 +++ .cvsignore 21 Jul 2009 15:04:27 -0000 1.102 @@ -1,2 +1,4 @@ firefox-langpacks-3.0.11-20090611.tar.bz2 firefox-3.0.11-source.tar.bz2 +firefox-3.0.12-source.tar.bz2 +firefox-langpacks-3.0.12-20090708.tar.bz2 Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-10/firefox.spec,v retrieving revision 1.325 retrieving revision 1.326 diff -u -p -r1.325 -r1.326 --- firefox.spec 11 Jun 2009 22:31:48 -0000 1.325 +++ firefox.spec 21 Jul 2009 15:04:27 -0000 1.326 @@ -5,7 +5,7 @@ %define mozappdir %{_libdir}/%{name}-%{version} -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 %define official_branding 1 %define build_langpacks 1 @@ -17,7 +17,7 @@ Summary: Mozilla Firefox Web browser Name: firefox -Version: 3.0.11 +Version: 3.0.12 Release: 1%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -29,7 +29,7 @@ Group: Applications/Internet %endif Source0: %{tarball} %if %{build_langpacks} -Source2: firefox-langpacks-%{version}-20090611.tar.bz2 +Source2: firefox-langpacks-%{version}-20090708.tar.bz2 %endif Source10: firefox-mozconfig Source11: firefox-mozconfig-branded @@ -322,6 +322,9 @@ fi #--------------------------------------------------------------------- %changelog +* Tue Jul 21 2009 Jan Horak - 3.0.12-1 +- Update to 3.0.12 + * Thu Jun 11 2009 Christopher Aillon - 3.0.11-1 - Update to 3.0.11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-10/sources,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- sources 11 Jun 2009 22:31:48 -0000 1.115 +++ sources 21 Jul 2009 15:04:27 -0000 1.116 @@ -1,2 +1,2 @@ -d380b77cbfebc58532a2260f264b1423 firefox-langpacks-3.0.11-20090611.tar.bz2 -b509f7c05e9566ed290e2c098316c7c3 firefox-3.0.11-source.tar.bz2 +0fe3631afc61afb5d77c843a49dc8320 firefox-3.0.12-source.tar.bz2 +8ea6545553ed1864fae41272d782ad8c firefox-langpacks-3.0.12-20090708.tar.bz2 From hadess at fedoraproject.org Tue Jul 21 15:12:30 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 15:12:30 +0000 (UTC) Subject: rpms/gstreamer/F-11 .cvsignore, 1.38, 1.39 gstreamer.spec, 1.100, 1.101 sources, 1.39, 1.40 Message-ID: <20090721151230.EFE6611C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28687 Modified Files: .cvsignore gstreamer.spec sources Log Message: * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Update to 0.10.23.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/.cvsignore,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- .cvsignore 16 Jul 2009 14:32:04 -0000 1.38 +++ .cvsignore 21 Jul 2009 15:12:00 -0000 1.39 @@ -1 +1 @@ -gstreamer-0.10.23.2.tar.bz2 +gstreamer-0.10.23.3.tar.bz2 Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/gstreamer.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- gstreamer.spec 16 Jul 2009 14:32:05 -0000 1.100 +++ gstreamer.spec 21 Jul 2009 15:12:00 -0000 1.101 @@ -5,7 +5,7 @@ %define _libxml2 2.4.0 Name: %{gstreamer} -Version: 0.10.23.2 +Version: 0.10.23.3 Release: 1%{?dist} Summary: GStreamer streaming media framework runtime @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 +- Update to 0.10.23.3 + * Thu Jul 16 2009 Bastien Nocera 0.10.23.2-1 - Update to 0.10.23.2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/F-11/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 16 Jul 2009 14:32:05 -0000 1.39 +++ sources 21 Jul 2009 15:12:00 -0000 1.40 @@ -1 +1 @@ -f3ea565fbcb765a768bca7118801acfc gstreamer-0.10.23.2.tar.bz2 +8ee3a5474e109b749138703473deeeab gstreamer-0.10.23.3.tar.bz2 From pkgdb at fedoraproject.org Tue Jul 21 15:17:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:17:35 +0000 Subject: [pkgdb] uClibc was added for varekova Message-ID: <20090721151736.0124210F87E@bastion2.fedora.phx.redhat.com> tibbs has added Package uClibc with summary C library for embedded Linux tibbs has approved Package uClibc tibbs has added a Fedora devel branch for uClibc with an owner of varekova tibbs has approved uClibc in Fedora devel tibbs has approved Package uClibc tibbs has set commit to Approved for 107427 on uClibc (Fedora devel) tibbs has set checkout to Approved for 107427 on uClibc (Fedora devel) tibbs has set build to Approved for 107427 on uClibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From pkgdb at fedoraproject.org Tue Jul 21 15:17:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:17:37 +0000 Subject: [pkgdb] uClibc summary updated by tibbs Message-ID: <20090721151737.A51E910F89D@bastion2.fedora.phx.redhat.com> tibbs set package uClibc summary to C library for embedded Linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From pkgdb at fedoraproject.org Tue Jul 21 15:17:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:17:37 +0000 Subject: [pkgdb] uClibc (Fedora, 11) updated by tibbs Message-ID: <20090721151737.B1EA010F8AA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on uClibc (Fedora devel) for varekova tibbs approved watchcommits on uClibc (Fedora devel) for varekova tibbs approved watchbugzilla on uClibc (Fedora devel) for vda tibbs approved watchcommits on uClibc (Fedora devel) for vda tibbs approved commit on uClibc (Fedora devel) for vda tibbs approved build on uClibc (Fedora devel) for vda tibbs approved approveacls on uClibc (Fedora devel) for vda To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From tibbs at fedoraproject.org Tue Jul 21 15:17:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:17:44 +0000 (UTC) Subject: rpms/uClibc - New directory Message-ID: <20090721151744.2F27411C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uClibc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF30984/rpms/uClibc Log Message: Directory /cvs/pkgs/rpms/uClibc added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:17:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:17:44 +0000 (UTC) Subject: rpms/uClibc/devel - New directory Message-ID: <20090721151744.61BFF11C048A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uClibc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF30984/rpms/uClibc/devel Log Message: Directory /cvs/pkgs/rpms/uClibc/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 21 15:17:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:17:37 +0000 Subject: [pkgdb] uClibc (Fedora, 11) updated by tibbs Message-ID: <20090721151737.BF62410F8AF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for uClibc tibbs has set commit to Approved for 107427 on uClibc (Fedora 11) tibbs has set checkout to Approved for 107427 on uClibc (Fedora 11) tibbs has set build to Approved for 107427 on uClibc (Fedora 11) tibbs approved watchbugzilla on uClibc (Fedora 11) for varekova tibbs approved watchcommits on uClibc (Fedora 11) for varekova tibbs approved watchbugzilla on uClibc (Fedora 11) for vda tibbs approved watchcommits on uClibc (Fedora 11) for vda tibbs approved commit on uClibc (Fedora 11) for vda tibbs approved build on uClibc (Fedora 11) for vda tibbs approved approveacls on uClibc (Fedora 11) for vda To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From tibbs at fedoraproject.org Tue Jul 21 15:17:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:17:50 +0000 (UTC) Subject: rpms/uClibc Makefile,NONE,1.1 Message-ID: <20090721151750.4651A11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uClibc In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF30984/rpms/uClibc Added Files: Makefile Log Message: Setup of module uClibc --- NEW FILE Makefile --- # Top level Makefile for module uClibc all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:17:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:17:50 +0000 (UTC) Subject: rpms/uClibc/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721151750.8217B11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/uClibc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsF30984/rpms/uClibc/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module uClibc --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: uClibc # $Id: Makefile,v 1.1 2009/07/21 15:17:50 tibbs Exp $ NAME := uClibc SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 21 15:18:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:10 +0000 Subject: [pkgdb] python-tgext-crud was added for lmacken Message-ID: <20090721151810.D7F5510F89D@bastion2.fedora.phx.redhat.com> tibbs has added Package python-tgext-crud with summary Crud Controller Extension for TG2 tibbs has approved Package python-tgext-crud tibbs has added a Fedora devel branch for python-tgext-crud with an owner of lmacken tibbs has approved python-tgext-crud in Fedora devel tibbs has approved Package python-tgext-crud tibbs has set commit to Approved for 107427 on python-tgext-crud (Fedora devel) tibbs has set checkout to Approved for 107427 on python-tgext-crud (Fedora devel) tibbs has set build to Approved for 107427 on python-tgext-crud (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From pkgdb at fedoraproject.org Tue Jul 21 15:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:12 +0000 Subject: [pkgdb] python-tgext-crud summary updated by tibbs Message-ID: <20090721151812.9ECD110F8A9@bastion2.fedora.phx.redhat.com> tibbs set package python-tgext-crud summary to Crud Controller Extension for TG2 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From pkgdb at fedoraproject.org Tue Jul 21 15:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:12 +0000 Subject: [pkgdb] python-tgext-crud (Fedora EPEL, 5) updated by tibbs Message-ID: <20090721151812.A56E210F8AB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-tgext-crud tibbs has set commit to Approved for 107427 on python-tgext-crud (Fedora 11) tibbs has set checkout to Approved for 107427 on python-tgext-crud (Fedora 11) tibbs has set build to Approved for 107427 on python-tgext-crud (Fedora 11) tibbs approved watchbugzilla on python-tgext-crud (Fedora 11) for johnp tibbs approved watchcommits on python-tgext-crud (Fedora 11) for johnp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From pkgdb at fedoraproject.org Tue Jul 21 15:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:12 +0000 Subject: [pkgdb] python-tgext-crud (Fedora EPEL, 5) updated by tibbs Message-ID: <20090721151812.B42A510F8BA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on python-tgext-crud (Fedora devel) for johnp tibbs approved watchcommits on python-tgext-crud (Fedora devel) for johnp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From pkgdb at fedoraproject.org Tue Jul 21 15:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:12 +0000 Subject: [pkgdb] python-tgext-crud (Fedora EPEL, 5) updated by tibbs Message-ID: <20090721151812.BA96610F8BD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-tgext-crud tibbs has set commit to Approved for 107427 on python-tgext-crud (Fedora 10) tibbs has set checkout to Approved for 107427 on python-tgext-crud (Fedora 10) tibbs has set build to Approved for 107427 on python-tgext-crud (Fedora 10) tibbs approved watchbugzilla on python-tgext-crud (Fedora 10) for johnp tibbs approved watchcommits on python-tgext-crud (Fedora 10) for johnp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From pkgdb at fedoraproject.org Tue Jul 21 15:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:18:12 +0000 Subject: [pkgdb] python-tgext-crud (Fedora EPEL, 5) updated by tibbs Message-ID: <20090721151812.C536A10F8C0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-tgext-crud tibbs has set commit to Approved for 107427 on python-tgext-crud (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-tgext-crud (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-tgext-crud (Fedora EPEL 5) tibbs approved watchbugzilla on python-tgext-crud (Fedora EPEL 5) for johnp tibbs approved watchcommits on python-tgext-crud (Fedora EPEL 5) for johnp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-crud From tibbs at fedoraproject.org Tue Jul 21 15:18:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:18:19 +0000 (UTC) Subject: rpms/python-tgext-crud - New directory Message-ID: <20090721151819.15EC911C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-crud In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsM31387/rpms/python-tgext-crud Log Message: Directory /cvs/pkgs/rpms/python-tgext-crud added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:18:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:18:19 +0000 (UTC) Subject: rpms/python-tgext-crud/devel - New directory Message-ID: <20090721151819.3870D11C049A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-crud/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsM31387/rpms/python-tgext-crud/devel Log Message: Directory /cvs/pkgs/rpms/python-tgext-crud/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:18:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:18:26 +0000 (UTC) Subject: rpms/python-tgext-crud Makefile,NONE,1.1 Message-ID: <20090721151826.E19AC11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-crud In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsM31387/rpms/python-tgext-crud Added Files: Makefile Log Message: Setup of module python-tgext-crud --- NEW FILE Makefile --- # Top level Makefile for module python-tgext-crud all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:18:27 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:18:27 +0000 (UTC) Subject: rpms/python-tgext-crud/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721151827.7F40E11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-crud/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsM31387/rpms/python-tgext-crud/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-tgext-crud --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-tgext-crud # $Id: Makefile,v 1.1 2009/07/21 15:18:27 tibbs Exp $ NAME := python-tgext-crud SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 21 15:19:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:19:05 +0000 Subject: [pkgdb] matahari was added for arjunroy Message-ID: <20090721151905.95E4310F8AA@bastion2.fedora.phx.redhat.com> tibbs has added Package matahari with summary host qmf agent used by ovirt tibbs has approved Package matahari tibbs has added a Fedora devel branch for matahari with an owner of arjunroy tibbs has approved matahari in Fedora devel tibbs has approved Package matahari tibbs has set commit to Approved for 107427 on matahari (Fedora devel) tibbs has set checkout to Approved for 107427 on matahari (Fedora devel) tibbs has set build to Approved for 107427 on matahari (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/matahari From pkgdb at fedoraproject.org Tue Jul 21 15:19:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:19:06 +0000 Subject: [pkgdb] matahari summary updated by tibbs Message-ID: <20090721151906.93E7510F8B9@bastion2.fedora.phx.redhat.com> tibbs set package matahari summary to host qmf agent used by ovirt To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/matahari From tibbs at fedoraproject.org Tue Jul 21 15:19:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:19:13 +0000 (UTC) Subject: rpms/matahari - New directory Message-ID: <20090721151913.21ED211C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/matahari In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm32084/rpms/matahari Log Message: Directory /cvs/pkgs/rpms/matahari added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:19:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:19:13 +0000 (UTC) Subject: rpms/matahari/devel - New directory Message-ID: <20090721151913.54B0011C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/matahari/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm32084/rpms/matahari/devel Log Message: Directory /cvs/pkgs/rpms/matahari/devel added to the repository From pkgdb at fedoraproject.org Tue Jul 21 15:19:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:19:06 +0000 Subject: [pkgdb] matahari (Fedora, 11) updated by tibbs Message-ID: <20090721151906.AB09D10F8C6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for matahari tibbs has set commit to Approved for 107427 on matahari (Fedora 11) tibbs has set checkout to Approved for 107427 on matahari (Fedora 11) tibbs has set build to Approved for 107427 on matahari (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/matahari From tibbs at fedoraproject.org Tue Jul 21 15:19:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:19:23 +0000 (UTC) Subject: rpms/matahari Makefile,NONE,1.1 Message-ID: <20090721151923.8AD4411C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/matahari In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm32084/rpms/matahari Added Files: Makefile Log Message: Setup of module matahari --- NEW FILE Makefile --- # Top level Makefile for module matahari all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:19:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:19:24 +0000 (UTC) Subject: rpms/matahari/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721151924.21E4911C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/matahari/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm32084/rpms/matahari/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module matahari --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: matahari # $Id: Makefile,v 1.1 2009/07/21 15:19:23 tibbs Exp $ NAME := matahari SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 21 15:20:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:20:18 +0000 Subject: [pkgdb] xz (Fedora EPEL, 5) updated by tibbs Message-ID: <20090721152018.66AED10F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for xz tibbs has set commit to Approved for 107427 on xz (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on xz (Fedora EPEL 5) tibbs has set build to Approved for 107427 on xz (Fedora EPEL 5) tibbs changed owner of xz in Fedora EPEL 5 to toshio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xz From pkgdb at fedoraproject.org Tue Jul 21 15:20:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:20:56 +0000 Subject: [pkgdb] openssh-blacklist was added for jfch2222 Message-ID: <20090721152056.062AD10F898@bastion2.fedora.phx.redhat.com> tibbs has added Package openssh-blacklist with summary Fingerprints of the openssh keys affected by CVE-2008-0166 tibbs has approved Package openssh-blacklist tibbs has added a Fedora devel branch for openssh-blacklist with an owner of jfch2222 tibbs has approved openssh-blacklist in Fedora devel tibbs has approved Package openssh-blacklist tibbs has set commit to Approved for 107427 on openssh-blacklist (Fedora devel) tibbs has set checkout to Approved for 107427 on openssh-blacklist (Fedora devel) tibbs has set build to Approved for 107427 on openssh-blacklist (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssh-blacklist From pkgdb at fedoraproject.org Tue Jul 21 15:20:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:20:57 +0000 Subject: [pkgdb] openssh-blacklist summary updated by tibbs Message-ID: <20090721152057.A9DFC10F8BA@bastion2.fedora.phx.redhat.com> tibbs set package openssh-blacklist summary to Fingerprints of the openssh keys affected by CVE-2008-0166 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssh-blacklist From pkgdb at fedoraproject.org Tue Jul 21 15:20:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:20:57 +0000 Subject: [pkgdb] openssh-blacklist (Fedora, 11) updated by tibbs Message-ID: <20090721152057.B7BC210F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for openssh-blacklist tibbs has set commit to Approved for 107427 on openssh-blacklist (Fedora 11) tibbs has set checkout to Approved for 107427 on openssh-blacklist (Fedora 11) tibbs has set build to Approved for 107427 on openssh-blacklist (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssh-blacklist From pkgdb at fedoraproject.org Tue Jul 21 15:20:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:20:57 +0000 Subject: [pkgdb] openssh-blacklist (Fedora, 11) updated by tibbs Message-ID: <20090721152057.C2B5010F8C1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for openssh-blacklist tibbs has set commit to Approved for 107427 on openssh-blacklist (Fedora 10) tibbs has set checkout to Approved for 107427 on openssh-blacklist (Fedora 10) tibbs has set build to Approved for 107427 on openssh-blacklist (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openssh-blacklist From pkgdb at fedoraproject.org Tue Jul 21 15:22:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:05 +0000 Subject: [pkgdb] chunkd was added for jgarzik Message-ID: <20090721152205.E48F410F8D0@bastion2.fedora.phx.redhat.com> tibbs has added Package chunkd with summary Data storage service for cloud computing tibbs has approved Package chunkd tibbs has added a Fedora devel branch for chunkd with an owner of jgarzik tibbs has approved chunkd in Fedora devel tibbs has approved Package chunkd tibbs has set commit to Approved for 107427 on chunkd (Fedora devel) tibbs has set checkout to Approved for 107427 on chunkd (Fedora devel) tibbs has set build to Approved for 107427 on chunkd (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chunkd From pkgdb at fedoraproject.org Tue Jul 21 15:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:07 +0000 Subject: [pkgdb] chunkd summary updated by tibbs Message-ID: <20090721152208.0210510F8D1@bastion2.fedora.phx.redhat.com> tibbs set package chunkd summary to Data storage service for cloud computing To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chunkd From pkgdb at fedoraproject.org Tue Jul 21 15:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:07 +0000 Subject: [pkgdb] chunkd (Fedora, 11) updated by tibbs Message-ID: <20090721152208.1989810F8D8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for chunkd tibbs has set commit to Approved for 107427 on chunkd (Fedora 11) tibbs has set checkout to Approved for 107427 on chunkd (Fedora 11) tibbs has set build to Approved for 107427 on chunkd (Fedora 11) tibbs approved watchbugzilla on chunkd (Fedora 11) for zaitcev tibbs approved watchcommits on chunkd (Fedora 11) for zaitcev tibbs approved commit on chunkd (Fedora 11) for zaitcev tibbs approved build on chunkd (Fedora 11) for zaitcev tibbs approved approveacls on chunkd (Fedora 11) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chunkd From pkgdb at fedoraproject.org Tue Jul 21 15:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:07 +0000 Subject: [pkgdb] chunkd (Fedora, 11) updated by tibbs Message-ID: <20090721152208.2033B10F8DA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for chunkd tibbs has set commit to Approved for 107427 on chunkd (Fedora 10) tibbs has set checkout to Approved for 107427 on chunkd (Fedora 10) tibbs has set build to Approved for 107427 on chunkd (Fedora 10) tibbs approved watchbugzilla on chunkd (Fedora 10) for zaitcev tibbs approved watchcommits on chunkd (Fedora 10) for zaitcev tibbs approved commit on chunkd (Fedora 10) for zaitcev tibbs approved build on chunkd (Fedora 10) for zaitcev tibbs approved approveacls on chunkd (Fedora 10) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chunkd From tibbs at fedoraproject.org Tue Jul 21 15:22:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:14 +0000 (UTC) Subject: rpms/chunkd - New directory Message-ID: <20090721152214.B956711C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/chunkd In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsAC1558/rpms/chunkd Log Message: Directory /cvs/pkgs/rpms/chunkd added to the repository From pkgdb at fedoraproject.org Tue Jul 21 15:22:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:08 +0000 Subject: [pkgdb] chunkd (Fedora, 11) updated by tibbs Message-ID: <20090721152208.3BDCA10F8DF@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on chunkd (Fedora devel) for zaitcev tibbs approved watchcommits on chunkd (Fedora devel) for zaitcev tibbs approved commit on chunkd (Fedora devel) for zaitcev tibbs approved build on chunkd (Fedora devel) for zaitcev tibbs approved approveacls on chunkd (Fedora devel) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/chunkd From tibbs at fedoraproject.org Tue Jul 21 15:22:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:22 +0000 (UTC) Subject: rpms/chunkd Makefile,NONE,1.1 Message-ID: <20090721152222.36EE611C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/chunkd In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsAC1558/rpms/chunkd Added Files: Makefile Log Message: Setup of module chunkd --- NEW FILE Makefile --- # Top level Makefile for module chunkd all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:22:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:15 +0000 (UTC) Subject: rpms/chunkd/devel - New directory Message-ID: <20090721152215.1719411C048A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsAC1558/rpms/chunkd/devel Log Message: Directory /cvs/pkgs/rpms/chunkd/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:22:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:22 +0000 (UTC) Subject: rpms/chunkd/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721152222.6960611C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsAC1558/rpms/chunkd/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module chunkd --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: chunkd # $Id: Makefile,v 1.1 2009/07/21 15:22:22 tibbs Exp $ NAME := chunkd SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From dledford at fedoraproject.org Tue Jul 21 15:22:33 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:22:33 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.spec,1.36,1.37 Message-ID: <20090721152233.4F28E11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1446 Modified Files: openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- openmpi.spec 21 Jul 2009 15:08:21 -0000 1.36 +++ openmpi.spec 21 Jul 2009 15:22:03 -0000 1.37 @@ -27,7 +27,7 @@ Source0: http://www.open-mpi.org/softwa Source1: openmpi.pc.in Source2: openmpi.module.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gcc-gfortran, libtool, numactl-devel +BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind BuildRequires: libibverbs-devel, opensm-devel > 3.3.0 #%ifnarch ppc #BuildRequires: compat-dapl-devel From pkgdb at fedoraproject.org Tue Jul 21 15:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:41 +0000 Subject: [pkgdb] tabled summary updated by tibbs Message-ID: <20090721152241.8B77010F8C6@bastion2.fedora.phx.redhat.com> tibbs set package tabled summary to Scalable, distributed key/value lookup table service To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tabled From pkgdb at fedoraproject.org Tue Jul 21 15:22:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:39 +0000 Subject: [pkgdb] tabled was added for jgarzik Message-ID: <20090721152239.75A5F10F8B5@bastion2.fedora.phx.redhat.com> tibbs has added Package tabled with summary Scalable, distributed key/value lookup table service tibbs has approved Package tabled tibbs has added a Fedora devel branch for tabled with an owner of jgarzik tibbs has approved tabled in Fedora devel tibbs has approved Package tabled tibbs has set commit to Approved for 107427 on tabled (Fedora devel) tibbs has set checkout to Approved for 107427 on tabled (Fedora devel) tibbs has set build to Approved for 107427 on tabled (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tabled From pkgdb at fedoraproject.org Tue Jul 21 15:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:41 +0000 Subject: [pkgdb] tabled (Fedora, 11) updated by tibbs Message-ID: <20090721152241.93FA110F8E7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for tabled tibbs has set commit to Approved for 107427 on tabled (Fedora 11) tibbs has set checkout to Approved for 107427 on tabled (Fedora 11) tibbs has set build to Approved for 107427 on tabled (Fedora 11) tibbs approved watchbugzilla on tabled (Fedora 11) for zaitcev tibbs approved watchcommits on tabled (Fedora 11) for zaitcev tibbs approved commit on tabled (Fedora 11) for zaitcev tibbs approved build on tabled (Fedora 11) for zaitcev tibbs approved approveacls on tabled (Fedora 11) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tabled From dledford at fedoraproject.org Tue Jul 21 15:22:41 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:22:41 +0000 (UTC) Subject: rpms/openmpi/F-11 openmpi.spec,1.34,1.35 Message-ID: <20090721152241.855CC11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1544 Modified Files: openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- openmpi.spec 21 Jul 2009 15:13:00 -0000 1.34 +++ openmpi.spec 21 Jul 2009 15:22:11 -0000 1.35 @@ -27,7 +27,7 @@ Source0: http://www.open-mpi.org/softwa Source1: openmpi.pc.in Source2: openmpi.module.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gcc-gfortran, libtool, numactl-devel +BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind BuildRequires: libibverbs-devel, opensm-devel > 3.3.0 #%ifnarch ppc #BuildRequires: compat-dapl-devel From pkgdb at fedoraproject.org Tue Jul 21 15:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:41 +0000 Subject: [pkgdb] tabled (Fedora, 11) updated by tibbs Message-ID: <20090721152241.B5B9210F8EC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for tabled tibbs has set commit to Approved for 107427 on tabled (Fedora 10) tibbs has set checkout to Approved for 107427 on tabled (Fedora 10) tibbs has set build to Approved for 107427 on tabled (Fedora 10) tibbs approved watchbugzilla on tabled (Fedora 10) for zaitcev tibbs approved watchcommits on tabled (Fedora 10) for zaitcev tibbs approved commit on tabled (Fedora 10) for zaitcev tibbs approved build on tabled (Fedora 10) for zaitcev tibbs approved approveacls on tabled (Fedora 10) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tabled From pkgdb at fedoraproject.org Tue Jul 21 15:22:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:22:41 +0000 Subject: [pkgdb] tabled (Fedora, 11) updated by tibbs Message-ID: <20090721152241.CA3CE10F8F1@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on tabled (Fedora devel) for zaitcev tibbs approved watchcommits on tabled (Fedora devel) for zaitcev tibbs approved commit on tabled (Fedora devel) for zaitcev tibbs approved build on tabled (Fedora devel) for zaitcev tibbs approved approveacls on tabled (Fedora devel) for zaitcev To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tabled From tibbs at fedoraproject.org Tue Jul 21 15:22:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:48 +0000 (UTC) Subject: rpms/tabled - New directory Message-ID: <20090721152248.16FA511C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/tabled In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsja1982/rpms/tabled Log Message: Directory /cvs/pkgs/rpms/tabled added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:22:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:48 +0000 (UTC) Subject: rpms/tabled/devel - New directory Message-ID: <20090721152248.406D511C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsja1982/rpms/tabled/devel Log Message: Directory /cvs/pkgs/rpms/tabled/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:22:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:54 +0000 (UTC) Subject: rpms/tabled Makefile,NONE,1.1 Message-ID: <20090721152254.6B4B811C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/tabled In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsja1982/rpms/tabled Added Files: Makefile Log Message: Setup of module tabled --- NEW FILE Makefile --- # Top level Makefile for module tabled all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:22:54 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:22:54 +0000 (UTC) Subject: rpms/tabled/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721152254.BD61511C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsja1982/rpms/tabled/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module tabled --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: tabled # $Id: Makefile,v 1.1 2009/07/21 15:22:54 tibbs Exp $ NAME := tabled SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 21 15:23:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:23:48 +0000 Subject: [pkgdb] perl-Titanium was added for eseyman Message-ID: <20090721152348.D6A2310F8BA@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Titanium with summary Strong, lightweight web application famework tibbs has approved Package perl-Titanium tibbs has added a Fedora devel branch for perl-Titanium with an owner of eseyman tibbs has approved perl-Titanium in Fedora devel tibbs has approved Package perl-Titanium tibbs has set commit to Approved for 107427 on perl-Titanium (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Titanium (Fedora devel) tibbs has set build to Approved for 107427 on perl-Titanium (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Titanium From pkgdb at fedoraproject.org Tue Jul 21 15:23:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:23:50 +0000 Subject: [pkgdb] perl-Titanium summary updated by tibbs Message-ID: <20090721152350.110FF10F8C8@bastion2.fedora.phx.redhat.com> tibbs set package perl-Titanium summary to Strong, lightweight web application famework To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Titanium From pkgdb at fedoraproject.org Tue Jul 21 15:23:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:23:50 +0000 Subject: [pkgdb] perl-Titanium (Fedora, 10) updated by tibbs Message-ID: <20090721152350.147BF10F8CB@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Titanium (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Titanium (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Titanium From pkgdb at fedoraproject.org Tue Jul 21 15:23:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:23:50 +0000 Subject: [pkgdb] perl-Titanium (Fedora, 10) updated by tibbs Message-ID: <20090721152350.2308E10F8D1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Titanium tibbs has set commit to Approved for 107427 on perl-Titanium (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Titanium (Fedora 11) tibbs has set build to Approved for 107427 on perl-Titanium (Fedora 11) tibbs approved watchbugzilla on perl-Titanium (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Titanium (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Titanium From pkgdb at fedoraproject.org Tue Jul 21 15:23:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:23:50 +0000 Subject: [pkgdb] perl-Titanium (Fedora, 10) updated by tibbs Message-ID: <20090721152350.1D0A410F8CF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Titanium tibbs has set commit to Approved for 107427 on perl-Titanium (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Titanium (Fedora 10) tibbs has set build to Approved for 107427 on perl-Titanium (Fedora 10) tibbs approved watchbugzilla on perl-Titanium (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Titanium (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Titanium From tibbs at fedoraproject.org Tue Jul 21 15:23:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:23:55 +0000 (UTC) Subject: rpms/perl-Titanium - New directory Message-ID: <20090721152355.1AB7111C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Titanium In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsne2680/rpms/perl-Titanium Log Message: Directory /cvs/pkgs/rpms/perl-Titanium added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:23:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:23:55 +0000 (UTC) Subject: rpms/perl-Titanium/devel - New directory Message-ID: <20090721152355.54A2211C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Titanium/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsne2680/rpms/perl-Titanium/devel Log Message: Directory /cvs/pkgs/rpms/perl-Titanium/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:24:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:24:07 +0000 (UTC) Subject: rpms/perl-Titanium Makefile,NONE,1.1 Message-ID: <20090721152407.D698411C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Titanium In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsne2680/rpms/perl-Titanium Added Files: Makefile Log Message: Setup of module perl-Titanium --- NEW FILE Makefile --- # Top level Makefile for module perl-Titanium all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:24:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:24:08 +0000 (UTC) Subject: rpms/perl-Titanium/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721152408.8017411C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Titanium/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsne2680/rpms/perl-Titanium/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Titanium --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Titanium # $Id: Makefile,v 1.1 2009/07/21 15:24:07 tibbs Exp $ NAME := perl-Titanium SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Tue Jul 21 15:24:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:24:50 +0000 Subject: [pkgdb] volume_key was added for mitr Message-ID: <20090721152450.CADEA10F8C4@bastion2.fedora.phx.redhat.com> tibbs has added Package volume_key with summary An utility for manipulating storage encryption keys and passphrases tibbs has approved Package volume_key tibbs has added a Fedora devel branch for volume_key with an owner of mitr tibbs has approved volume_key in Fedora devel tibbs has approved Package volume_key tibbs has set commit to Approved for 107427 on volume_key (Fedora devel) tibbs has set checkout to Approved for 107427 on volume_key (Fedora devel) tibbs has set build to Approved for 107427 on volume_key (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/volume_key From pkgdb at fedoraproject.org Tue Jul 21 15:24:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 15:24:53 +0000 Subject: [pkgdb] volume_key summary updated by tibbs Message-ID: <20090721152454.1A4BD10F8E0@bastion2.fedora.phx.redhat.com> tibbs set package volume_key summary to An utility for manipulating storage encryption keys and passphrases To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/volume_key From tibbs at fedoraproject.org Tue Jul 21 15:25:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:25:07 +0000 (UTC) Subject: rpms/volume_key - New directory Message-ID: <20090721152507.229FD11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/volume_key In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsnL3442/rpms/volume_key Log Message: Directory /cvs/pkgs/rpms/volume_key added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:25:07 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:25:07 +0000 (UTC) Subject: rpms/volume_key/devel - New directory Message-ID: <20090721152507.4398A11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/volume_key/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsnL3442/rpms/volume_key/devel Log Message: Directory /cvs/pkgs/rpms/volume_key/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:25:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:25:18 +0000 (UTC) Subject: rpms/volume_key Makefile,NONE,1.1 Message-ID: <20090721152518.D44CA11C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/volume_key In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsnL3442/rpms/volume_key Added Files: Makefile Log Message: Setup of module volume_key --- NEW FILE Makefile --- # Top level Makefile for module volume_key all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Tue Jul 21 15:25:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:25:19 +0000 (UTC) Subject: rpms/volume_key/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721152519.91E2111C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/volume_key/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsnL3442/rpms/volume_key/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module volume_key --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: volume_key # $Id: Makefile,v 1.1 2009/07/21 15:25:19 tibbs Exp $ NAME := volume_key SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From dledford at fedoraproject.org Tue Jul 21 15:28:31 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:28:31 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.spec,1.37,1.38 Message-ID: <20090721152831.2D6BC11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5061 Modified Files: openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- openmpi.spec 21 Jul 2009 15:22:03 -0000 1.37 +++ openmpi.spec 21 Jul 2009 15:28:00 -0000 1.38 @@ -27,7 +27,7 @@ Source0: http://www.open-mpi.org/softwa Source1: openmpi.pc.in Source2: openmpi.module.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind +BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind-devel BuildRequires: libibverbs-devel, opensm-devel > 3.3.0 #%ifnarch ppc #BuildRequires: compat-dapl-devel From dledford at fedoraproject.org Tue Jul 21 15:28:39 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:28:39 +0000 (UTC) Subject: rpms/openmpi/F-11 openmpi.spec,1.35,1.36 Message-ID: <20090721152839.2BC6B11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5150 Modified Files: openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- openmpi.spec 21 Jul 2009 15:22:11 -0000 1.35 +++ openmpi.spec 21 Jul 2009 15:28:08 -0000 1.36 @@ -27,7 +27,7 @@ Source0: http://www.open-mpi.org/softwa Source1: openmpi.pc.in Source2: openmpi.module.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind +BuildRequires: gcc-gfortran, libtool, numactl-devel, valgrind-devel BuildRequires: libibverbs-devel, opensm-devel > 3.3.0 #%ifnarch ppc #BuildRequires: compat-dapl-devel From tibbs at fedoraproject.org Tue Jul 21 15:21:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:21:04 +0000 (UTC) Subject: rpms/openssh-blacklist - New directory Message-ID: <20090721152104.297D211C049E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssh-blacklist In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsEhL737/rpms/openssh-blacklist Log Message: Directory /cvs/pkgs/rpms/openssh-blacklist added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:21:04 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:21:04 +0000 (UTC) Subject: rpms/openssh-blacklist/devel - New directory Message-ID: <20090721152104.9B50C11C04B4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssh-blacklist/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsEhL737/rpms/openssh-blacklist/devel Log Message: Directory /cvs/pkgs/rpms/openssh-blacklist/devel added to the repository From tibbs at fedoraproject.org Tue Jul 21 15:21:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:21:13 +0000 (UTC) Subject: rpms/openssh-blacklist Makefile,NONE,1.1 Message-ID: <20090721152113.378F011C005E@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssh-blacklist In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsEhL737/rpms/openssh-blacklist Added Files: Makefile Log Message: Setup of module openssh-blacklist --- NEW FILE Makefile --- # Top level Makefile for module openssh-blacklist all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From jgranado at fedoraproject.org Tue Jul 21 15:31:56 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Tue, 21 Jul 2009 15:31:56 +0000 (UTC) Subject: rpms/parted/F-11 parted-1.9.0-dasd-duplicate.patch, NONE, 1.1 parted-1.9.0-new-duplicate.patch, NONE, 1.1 parted-1.9.0-pop-push-error.patch, 1.1, 1.2 parted.spec, 1.135, 1.136 sources, 1.37, 1.38 parted-1.9.0-device-path.patch, 1.1, NONE parted-1.9.0-extra-var.patch, 1.1, NONE parted-1.9.0-use-linuxh.patch, 1.1, NONE Message-ID: <20090721153156.AFFEB11C005E@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7657 Modified Files: parted-1.9.0-pop-push-error.patch parted.spec sources Added Files: parted-1.9.0-dasd-duplicate.patch parted-1.9.0-new-duplicate.patch Removed Files: parted-1.9.0-device-path.patch parted-1.9.0-extra-var.patch parted-1.9.0-use-linuxh.patch Log Message: New snapshot version. parted-1.9.0-dasd-duplicate.patch: dasd.c | 235 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 222 insertions(+), 13 deletions(-) --- NEW FILE parted-1.9.0-dasd-duplicate.patch --- >From bc854d48563ff30ba4c55914baa8db0a271790e5 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 16 Jul 2009 20:16:43 +0200 Subject: [PATCH] Add duplicate functionality to dasd type lables. * libparted/labels/dasd.c (dasd_alloc): Add the errno to the exception message to ease debugging. (dasd_partition_duplicate): New function. (dasd_duplicate): Include all the dasd specific structures in the duplicate disk. (dasd_partition_new): Handle the case when malloc fails because of lack of memory. (dasd_disk_ops): Add the new dasd_partition_duplicate hook. --- libparted/labels/dasd.c | 234 ++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 222 insertions(+), 12 deletions(-) diff --git a/libparted/labels/dasd.c b/libparted/labels/dasd.c index ec73d09..e87daba 100644 --- a/libparted/labels/dasd.c +++ b/libparted/labels/dasd.c @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -58,6 +59,9 @@ extern void ped_disk_dasd_init (); extern void ped_disk_dasd_done (); +static PedPartition* dasd_partition_new (const PedDisk*, PedPartitionType, + const PedFileSystemType*, + PedSector, PedSector); #define DASD_NAME "dasd" @@ -104,7 +108,8 @@ dasd_alloc (const PedDevice* dev) &disk_specific->real_sector_size) == -1) { ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, _("Unable to determine the block " - "size of this dasd")); + "size of this dasd - %s"), + strerror(errno)); free(disk_specific); free(disk); return NULL; @@ -113,19 +118,216 @@ dasd_alloc (const PedDevice* dev) return disk; } +static PedPartition* +dasd_partition_duplicate (const PedPartition* part, PedDisk* disk) +{ + PedPartition* walk; + PedPartition* new_part; + format1_label_t* new_format1; + partition_info_t* new_part_info; + partition_info_t* old_part_info; + DasdPartitionData* old_dasd_data; + DasdPartitionData* temp_dasd_data; + DasdDiskSpecific* old_disk_specific; + partition_info_t* old_anchor_first; + partition_info_t* old_anchor_last; + char* error_message; + + /* Initialize old_* variables. */ + old_dasd_data = (DasdPartitionData*) part->disk_specific; + old_part_info = (partition_info_t*) old_dasd_data->part_info; + old_disk_specific = (DasdDiskSpecific*) part->disk->disk_specific; + old_anchor_first = (partition_info_t*) old_disk_specific->anchor->first; + old_anchor_last = (partition_info_t*) old_disk_specific->anchor->last; + /* The default error message. */ + error_message = "Could not allocate memory for dasd specific structure."; + + /* Handle the DasdPartitionData->partition_info_t->format1_label_t pointer. */ + new_format1 = (format1_label_t*) ped_malloc (sizeof (format1_label_t)); + if (!new_format1) + goto error; + memcpy (new_format1, old_part_info->f1, sizeof (format1_label_t)); + + /* Handle the DasdPartitionData->partition_info_t pointer. */ + new_part_info = (partition_info_t*) ped_malloc (sizeof (partition_info_t)); + if (!new_part_info) + goto error_free_format1; + memcpy (new_part_info, old_part_info, sizeof (partition_info_t)); + new_part_info->f1 = new_format1; + new_part_info->next = NULL; + new_part_info->prev = NULL; + + /* Try to set new_part_info->next, new_part_info->prev, + * disk->disk_specific->anchor->first & disk->disk_specific->anchor->last + * when disk is not NULL. + */ + if (disk) + { + /* Handle the next and prev pointers. */ + /* Look for the prev. */ + if (old_part_info->prev == NULL || part->prev == NULL) + new_part_info->prev = NULL; + else + { + for (walk = disk->part_list ; walk ; walk = walk->next) + { + /* Identify the partition by start and length sectors. */ + if (walk->geom.start == part->prev->geom.start + && walk->geom.length == part->prev->geom.length) + { + /* Verify the new_part_info->prev and the walk->next. */ + temp_dasd_data = (DasdPartitionData*) walk->disk_specific; + new_part_info->prev = (partition_info_t*) temp_dasd_data->part_info; + ((partition_info_t*)temp_dasd_data->part_info)->next = new_part_info; + break; + } + } + } + + /* Look for the next. */ + if (old_part_info->next == NULL || part->next == NULL) + new_part_info->next = NULL; + else + { + for (walk = disk->part_list ; walk ; walk = walk->next) + { + /* Identify the partition by start and length sectors. */ + if (walk->geom.start == part->next->geom.start + && walk->geom.length == part->next->geom.length) + { + /* Verify the new_part_info->next and the walk->prev. */ + temp_dasd_data = (DasdPartitionData*) walk->disk_specific; + new_part_info->next = (partition_info_t*) temp_dasd_data->part_info; + ((partition_info_t*)temp_dasd_data->part_info)->prev = new_part_info; + break; + } + } + } + + /* Handle the DasdDiskSpecific->fdasd_anchor->last && + * Handle the DasdDiskSpecific->fdasd_anchor->first. */ + if ( old_anchor_first->start_trk == new_part_info->start_trk + && old_anchor_first->len_trk == new_part_info->len_trk) + ((DasdDiskSpecific*) disk->disk_specific)->anchor->first = new_part_info; + else if ( old_anchor_last->start_trk == new_part_info->start_trk + && old_anchor_last->len_trk == new_part_info->len_trk) + ((DasdDiskSpecific*) disk->disk_specific)->anchor->last = new_part_info; + } + + /* Create new partition. Allocates memory for DasdPartitionData. */ + new_part = dasd_partition_new (part->disk, part->type, part->fs_type, + part->geom.start, part->geom.end); + if (!new_part) + goto error_free_part_info; + new_part->num = part->num; + + /* Handle the DasdPartitionData pointer. */ + memcpy (new_part->disk_specific, old_dasd_data, sizeof (DasdPartitionData)); + ((DasdPartitionData*)new_part->disk_specific)->part_info = new_part_info; + + return new_part; + +error_free_part_info: + free(new_part_info); +error_free_format1: + free(new_format1); +error: + ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, + _(error_message)); + return NULL; +} + static PedDisk* dasd_duplicate (const PedDisk* disk) { - PedDisk* new_disk; - - new_disk = ped_disk_new_fresh(disk->dev, &dasd_disk_type); - - if (!new_disk) - return NULL; - - new_disk->disk_specific = NULL; - - return new_disk; + PedDisk* new_disk; + DasdDiskSpecific* old_disk_specific; + fdasd_anchor_t* new_anchor; + fdasd_anchor_t* old_anchor; + format4_label_t* new_format4; + format5_label_t* new_format5; + format7_label_t* new_format7; + volume_label_t* new_volume; + char* error_message; + + /* Initialize old_* variables. */ + old_disk_specific = disk->disk_specific; + old_anchor = old_disk_specific->anchor; + /* The default error message. */ + error_message = "Could not allocate memory for dasd specific structure."; + + /* Handle DasdDiskSpecific->fdasd_anchor->format4_label_t. */ + new_format4 = (format4_label_t*) ped_malloc (sizeof (format4_label_t)); + if (!new_format4) + goto error; + memcpy (new_format4, old_disk_specific->anchor->f4, sizeof (format4_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->format5_label_t. */ + new_format5 = (format5_label_t*) ped_malloc (sizeof (format5_label_t)); + if (!new_format5) + goto error_free_format4; + memcpy (new_format5, old_disk_specific->anchor->f5, sizeof (format5_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->format7_label_t. */ + new_format7 = (format7_label_t*) ped_malloc (sizeof (format7_label_t)); + if (!new_format7) + goto error_free_format5; + memcpy (new_format7, old_disk_specific->anchor->f7, sizeof (format7_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor->volume_label_t. */ + new_volume = (volume_label_t*) ped_malloc (sizeof (volume_label_t)); + if (!new_volume) + goto error_free_format7; + memcpy (new_volume, old_disk_specific->anchor->vlabel, + sizeof (volume_label_t)); + + /* Handle DasdDiskSpecific->fdasd_anchor. */ + if (! (new_anchor = (fdasd_anchor_t*) ped_malloc (sizeof (fdasd_anchor_t)))) + goto error_free_volume; + memcpy (new_anchor, old_anchor, sizeof (fdasd_anchor_t)); + new_anchor->f4 = new_format4; + new_anchor->f5 = new_format5; + new_anchor->f7 = new_format7; + new_anchor->vlabel = new_volume; + /* We dont have last and first info yet. */ + new_anchor->last = NULL; + new_anchor->first = NULL; + + /* Handle new disk creation. ped_disk_new_fresh allocates memory for + * new_disk->disk_specific. */ + /* We need to make sure that the device is open for reading. */ + if (!ped_device_open(disk->dev)) + { + error_message = "Could not open device for dasd disk duplication"; + goto error_free_anchor; + } + new_disk = ped_disk_new_fresh (disk->dev, &dasd_disk_type); + if (!ped_device_close(disk->dev)) + { + error_message = "Could not close device for dasd disk duplication"; + goto error_free_anchor; + } + if (!new_disk) + goto error_free_anchor; + memcpy (new_disk->disk_specific, old_disk_specific, sizeof(DasdDiskSpecific)); + ((DasdDiskSpecific*)new_disk->disk_specific)->anchor = new_anchor; + + return new_disk; + +error_free_anchor: + free(new_anchor); +error_free_volume: + free(new_volume); +error_free_format7: + free(new_format7); +error_free_format5: + free(new_format5); +error_free_format4: + free(new_format4); +error: + ped_exception_throw(PED_EXCEPTION_ERROR, PED_EXCEPTION_CANCEL, + _(error_message)); + return NULL; } static void @@ -551,12 +753,20 @@ dasd_partition_new (const PedDisk* disk, PedPartitionType part_type, goto error; part->disk_specific = ped_malloc (sizeof (DasdPartitionData)); + if (!part->disk_specific) + goto error_free_part; return part; +error_free_part: + free(part); error: return 0; } +/* + * Frees the memory of an active partition. Active here is whatever + * ped_partition_is_active returns. + */ static void dasd_partition_destroy (PedPartition* part) { @@ -818,6 +1028,7 @@ static PedDiskOps dasd_disk_ops = { partition_set_system: dasd_partition_set_system, partition_new: dasd_partition_new, + partition_duplicate: dasd_partition_duplicate, partition_destroy: dasd_partition_destroy, partition_set_flag: dasd_partition_set_flag, partition_get_flag: dasd_partition_get_flag, @@ -831,7 +1042,6 @@ static PedDiskOps dasd_disk_ops = { get_max_primary_partition_count: dasd_get_max_primary_partition_count, get_max_supported_partition_count: dasd_get_max_supported_partition_count, - partition_duplicate: NULL }; static PedDiskType dasd_disk_type = { -- 1.6.0.6 parted-1.9.0-new-duplicate.patch: include/parted/disk.h | 4 +++- libparted/disk.c | 2 +- libparted/labels/aix.c | 2 +- libparted/labels/bsd.c | 2 +- libparted/labels/dos.c | 2 +- libparted/labels/dvh.c | 2 +- libparted/labels/gpt.c | 2 +- libparted/labels/loop.c | 2 +- libparted/labels/mac.c | 2 +- libparted/labels/pc98.c | 2 +- libparted/labels/rdb.c | 2 +- libparted/labels/sun.c | 3 +-- 12 files changed, 14 insertions(+), 13 deletions(-) --- NEW FILE parted-1.9.0-new-duplicate.patch --- >From 3b3113cff84f89ae6a64e195acb3423125f6d681 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 16 Jul 2009 18:35:30 +0200 Subject: [PATCH] Add disk as an argument to partition_duplicate. The disk is needed to provide some context when creating the duplicate partition. The disk is needed by the dasd type labels. * include/parted/disk.h (partition_duplicate): Add the disk to the function definition * libparted/disk.c (_add_duplicate_part): Pass the "new disk" to the partition_duplicate function. * libparted/labels/aix.c (aix_partition_duplicate): Comply with the new partition_duplicate function definition. * libparted/labels/bsd.c (bsd_partition_duplicate): Likewise * libparted/labels/dos.c (msdos_partition_duplicate): Likewise * libparted/labels/dvh.c (dvh_partition_duplicate): Likewise * libparted/labels/gpt.c (gpt_partition_duplicate): Likewise * libparted/labels/loop.c (loop_partition_duplicate): Likewise * libparted/labels/mac.c (mac_partition_duplicate): Likewise * libparted/labels/pc98.c (pc98_partition_duplicate): Likewise * libparted/labels/rdb.c (amiga_partition_duplicate): Likewise * libparted/labels/sun.c (sun_partition_duplicate): Likewise --- include/parted/disk.h | 4 +++- libparted/disk.c | 2 +- libparted/labels/aix.c | 2 +- libparted/labels/bsd.c | 2 +- libparted/labels/dos.c | 2 +- libparted/labels/dvh.c | 2 +- libparted/labels/gpt.c | 2 +- libparted/labels/loop.c | 2 +- libparted/labels/mac.c | 2 +- libparted/labels/pc98.c | 2 +- libparted/labels/rdb.c | 2 +- libparted/labels/sun.c | 2 +- 12 files changed, 14 insertions(+), 12 deletions(-) diff --git a/include/parted/disk.h b/include/parted/disk.h index 664c388..7548be8 100644 --- a/include/parted/disk.h +++ b/include/parted/disk.h @@ -189,7 +189,9 @@ struct _PedDiskOps { const PedFileSystemType* fs_type, PedSector start, PedSector end); - PedPartition* (*partition_duplicate) (const PedPartition* part); + /* disk is the result of duplicate (the new disk). Can be NULL */ + PedPartition* (*partition_duplicate) (const PedPartition* part, + PedDisk* disk); void (*partition_destroy) (PedPartition* part); int (*partition_set_system) (PedPartition* part, const PedFileSystemType* fs_type); diff --git a/libparted/disk.c b/libparted/disk.c index 44a2f2f..99cb563 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -227,7 +227,7 @@ _add_duplicate_part (PedDisk* disk, PedPartition* old_part) PedPartition* new_part; int ret; - new_part = disk->type->ops->partition_duplicate (old_part); + new_part = disk->type->ops->partition_duplicate (old_part, disk); if (!new_part) goto error; new_part->disk = disk; diff --git a/libparted/labels/aix.c b/libparted/labels/aix.c index de81270..a544cbb 100644 --- a/libparted/labels/aix.c +++ b/libparted/labels/aix.c @@ -165,7 +165,7 @@ aix_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -aix_partition_duplicate (const PedPartition* part) +aix_partition_duplicate (const PedPartition* part, PedDisk* disk) { ped_exception_throw (PED_EXCEPTION_NO_FEATURE, PED_EXCEPTION_CANCEL, diff --git a/libparted/labels/bsd.c b/libparted/labels/bsd.c index 3d6b5ab..62634a6 100644 --- a/libparted/labels/bsd.c +++ b/libparted/labels/bsd.c @@ -417,7 +417,7 @@ error: } static PedPartition* -bsd_partition_duplicate (const PedPartition* part) +bsd_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; BSDPartitionData* new_bsd_data; diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c index e7d416d..0987c70 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c @@ -1215,7 +1215,7 @@ error: } static PedPartition* -msdos_partition_duplicate (const PedPartition* part) +msdos_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; DosPartitionData* new_dos_data; diff --git a/libparted/labels/dvh.c b/libparted/labels/dvh.c index 93de8f9..c4de55a 100644 --- a/libparted/labels/dvh.c +++ b/libparted/labels/dvh.c @@ -534,7 +534,7 @@ error: } static PedPartition* -dvh_partition_duplicate (const PedPartition* part) +dvh_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; DVHPartData* part_data = part->disk_specific; diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c index 1d7f0c5..b5c8cdb 100644 --- a/libparted/labels/gpt.c +++ b/libparted/labels/gpt.c @@ -1212,7 +1212,7 @@ error: } static PedPartition* -gpt_partition_duplicate (const PedPartition* part) +gpt_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; GPTPartitionData* part_data = part->disk_specific; diff --git a/libparted/labels/loop.c b/libparted/labels/loop.c index 10ba29e..60c22eb 100644 --- a/libparted/labels/loop.c +++ b/libparted/labels/loop.c @@ -201,7 +201,7 @@ loop_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -loop_partition_duplicate (const PedPartition* part) +loop_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* result; diff --git a/libparted/labels/mac.c b/libparted/labels/mac.c index c1f3dc7..42abd66 100644 --- a/libparted/labels/mac.c +++ b/libparted/labels/mac.c @@ -1154,7 +1154,7 @@ error: } static PedPartition* -mac_partition_duplicate (const PedPartition* part) +mac_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; MacPartitionData* new_mac_data; diff --git a/libparted/labels/pc98.c b/libparted/labels/pc98.c index f392bea..7fe23ab 100644 --- a/libparted/labels/pc98.c +++ b/libparted/labels/pc98.c @@ -568,7 +568,7 @@ error: } static PedPartition* -pc98_partition_duplicate (const PedPartition* part) +pc98_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; PC98PartitionData* new_pc98_data; diff --git a/libparted/labels/rdb.c b/libparted/labels/rdb.c index c39230d..e0bb936 100644 --- a/libparted/labels/rdb.c +++ b/libparted/labels/rdb.c @@ -851,7 +851,7 @@ amiga_partition_new (const PedDisk* disk, PedPartitionType part_type, } static PedPartition* -amiga_partition_duplicate (const PedPartition* part) +amiga_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition *new_part; struct PartitionBlock *new_amiga_part; diff --git a/libparted/labels/sun.c b/libparted/labels/sun.c index 41580a4..1451252 100644 --- a/libparted/labels/sun.c +++ b/libparted/labels/sun.c @@ -500,7 +500,7 @@ error: } static PedPartition* -sun_partition_duplicate (const PedPartition* part) +sun_partition_duplicate (const PedPartition* part, PedDisk* disk) { PedPartition* new_part; SunPartitionData* new_sun_data; -- 1.6.0.6 parted-1.9.0-pop-push-error.patch: disk.c | 86 ++++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 56 insertions(+), 30 deletions(-) Index: parted-1.9.0-pop-push-error.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted-1.9.0-pop-push-error.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parted-1.9.0-pop-push-error.patch 13 Jul 2009 16:30:15 -0000 1.1 +++ parted-1.9.0-pop-push-error.patch 21 Jul 2009 15:31:56 -0000 1.2 @@ -1,4 +1,4 @@ -From fd2df92bbaaa5926b0c67916a5947af102cac20c Mon Sep 17 00:00:00 2001 +From 7c7d7b3efc1eb39f884083c852875e1451efc29f Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Thu, 11 Jun 2009 17:05:39 +0200 Subject: [PATCH] return errro on push or pop update mode. @@ -8,7 +8,7 @@ Subject: [PATCH] return errro on push or 1 files changed, 56 insertions(+), 29 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c -index 3269b9d..6884c83 100644 +index 3269b9d..39f3a74 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -54,8 +54,8 @@ @@ -31,7 +31,7 @@ index 3269b9d..6884c83 100644 + goto error_destroy_new_part; ret = _disk_raw_add (disk, new_part); - _disk_pop_update_mode (disk); -+ if (_disk_pop_update_mode (disk)) ++ if (!_disk_pop_update_mode (disk)) + goto error_destroy_new_part; if (!ret) goto error_destroy_new_part; Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- parted.spec 13 Jul 2009 18:14:45 -0000 1.135 +++ parted.spec 21 Jul 2009 15:31:56 -0000 1.136 @@ -4,23 +4,30 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 2.20090610git32dc%{?dist} +Release: 4.20090721git980c%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted +# Reproduce the snapshot tar.gz run this script: +# run http://jgranado.fedorapeople.org/packages/parted/upstream/parted-release +# +# the line that was used is: +# parted-release --version 1.9.0 --key-id PUB_KEY +# +# Note that this script will give different results if master changes in upstream. +# Source: %{name}/%{name}-%{version}.tar.gz Patch1: %{name}-1.9.0-appletv-support.patch Patch2: %{name}-1.9.0-extended-mbr.patch -Patch3: %{name}-1.9.0-extra-var.patch -Patch4: %{name}-1.9.0-noheaders.patch -Patch5: %{name}-1.9.0-pop-push-error.patch -Patch6: %{name}-1.9.0-no-cylinder-align.patch -Patch7: %{name}-1.9.0-swap-flag.patch -Patch8: %{name}-1.9.0-remove-struct-elem.patch -Patch9: %{name}-1.9.0-move-function-declarations.patch -Patch10: %{name}-1.9.0-use-linuxh.patch -Patch11: %{name}-1.9.0-device-path.patch +Patch3: %{name}-1.9.0-noheaders.patch +Patch4: %{name}-1.9.0-pop-push-error.patch +Patch5: %{name}-1.9.0-no-cylinder-align.patch +Patch6: %{name}-1.9.0-swap-flag.patch +Patch7: %{name}-1.9.0-remove-struct-elem.patch +Patch8: %{name}-1.9.0-move-function-declarations.patch +Patch9: %{name}-1.9.0-dasd-duplicate.patch +Patch10: %{name}-1.9.0-new-duplicate.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -62,15 +69,15 @@ Parted library, you need to install this %setup -q -n %{name}-%{version} %patch1 -p1 -b .appletv %patch2 -p1 -b .extended-mbr -%patch3 -p1 -b .extra-var -%patch4 -p1 -b .noheaders -%patch5 -p1 -b .pop-push-error -%patch6 -p1 -b .no-cylinder-align -%patch7 -p1 -b .swap-flag -%patch8 -p1 -b .remove-struct-elem -%patch9 -p1 -b .move-function-declarations -%patch10 -p1 -b .use-linuxh -%patch11 -p1 -b .device-path +%patch3 -p1 -b .noheaders +%patch4 -p1 -b .pop-push-error +%patch5 -p1 -b .no-cylinder-align +%patch6 -p1 -b .swap-flag +%patch7 -p1 -b .remove-struct-elem +%patch8 -p1 -b .move-function-declarations +%patch9 -p1 -b .dasd-duplicate +%patch10 -p1 -b .new-duplicate + %build %configure --enable-selinux --disable-static @@ -128,6 +135,13 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Tue Jul 21 2009 Joel Granados - 1.9.0-4.20090721git980c +- New snapshot. +- Add patches to make dasd duplicate disk work. + +* Sat Jul 18 2009 Lubomir Rintel - 1.9.0-3.20090610git32dc +- Fix a typo in the errno patch + * Mon Jul 13 2009 Joel Granados - 1.9.0-2.20090610git32dc - Correctly number the snapshot. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/sources,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sources 13 Jul 2009 17:37:24 -0000 1.37 +++ sources 21 Jul 2009 15:31:56 -0000 1.38 @@ -1 +1 @@ -ba0122a5ab71cb3b040d6193532f1aed parted-1.9.0.tar.gz +d76712c8b6855e6810283c9e91fd25ee parted-1.9.0.tar.gz --- parted-1.9.0-device-path.patch DELETED --- --- parted-1.9.0-extra-var.patch DELETED --- --- parted-1.9.0-use-linuxh.patch DELETED --- From rhughes at fedoraproject.org Tue Jul 21 15:32:28 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 21 Jul 2009 15:32:28 +0000 (UTC) Subject: rpms/gnome-power-manager/devel .cvsignore, 1.61, 1.62 gnome-power-manager.spec, 1.164, 1.165 sources, 1.61, 1.62 gnome-power-manager-2.27.2-fix-potfiles.patch, 1.1, NONE gnome-power-manager-port-to-polkit1.patch, 1.2, NONE Message-ID: <20090721153228.387FB11C005E@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7750 Modified Files: .cvsignore gnome-power-manager.spec sources Removed Files: gnome-power-manager-2.27.2-fix-potfiles.patch gnome-power-manager-port-to-polkit1.patch Log Message: * Tue Jul 21 2009 Richard Hughes - 2.27.3-0.1.20090721git - Update to todays git snapshot to fix many issues with multiple composite laptop batteries and notifications. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 6 Jul 2009 14:50:35 -0000 1.61 +++ .cvsignore 21 Jul 2009 15:31:57 -0000 1.62 @@ -1 +1 @@ -gnome-power-manager-2.27.2.tar.gz +gnome-power-manager-2.27.3-20090721.tar.gz Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.164 retrieving revision 1.165 diff -u -p -r1.164 -r1.165 --- gnome-power-manager.spec 7 Jul 2009 15:30:12 -0000 1.164 +++ gnome-power-manager.spec 21 Jul 2009 15:31:57 -0000 1.165 @@ -1,25 +1,19 @@ %define hal_version 0.5.8 %define dbus_version 0.61 -%define alphatag 20090616 +%define alphatag 20090721 Summary: GNOME Power Manager Name: gnome-power-manager -Version: 2.27.2 -Release: 2%{?dist} -#Release: 0.2.%{?alphatag}git%{?dist} +Version: 2.27.3 +#Release: 2%{?dist} +Release: 0.1.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System -Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz -#Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz +#Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz +Source: http://download.gnome.org/sources/gnome-power-manager/2.27/%{name}-%{version}-%{?alphatag}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://projects.gnome.org/gnome-power-manager/ -# from upstream polkit1 branch, automatically generated -Patch0: gnome-power-manager-port-to-polkit1.patch - -# trivial, already upstream -Patch1: gnome-power-manager-2.27.2-fix-potfiles.patch - BuildRequires: libwnck-devel BuildRequires: hal-devel >= %{hal_version} BuildRequires: dbus-devel >= %{dbus_version} @@ -58,13 +52,8 @@ GNOME Power Preferences allows authorise change preferences. %prep -%setup -q -#%setup -q -n %{?name}-%{?version}-%{?alphatag} -%patch0 -p1 -b .polkit1 -%patch1 -p1 -b .potfiles - -# we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) -autoreconf +#%setup -q +%setup -q -n %{?name}-%{?version}-%{?alphatag} %build %configure \ @@ -167,8 +156,12 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Tue Jul 21 2009 Richard Hughes - 2.27.3-0.1.20090721git +- Update to todays git snapshot to fix many issues with multiple composite + laptop batteries and notifications. + * Tue Jul 07 2009 Tom "spot" Callaway - 2.27.2-2 -- fix file ownership so that only this packages manpages are owned, +- Fix file ownership so that only this packages manpages are owned, resolves duplicate directory ownership with "filesystem" package * Mon Jul 06 2009 Richard Hughes - 2.27.2-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/sources,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sources 6 Jul 2009 14:50:35 -0000 1.61 +++ sources 21 Jul 2009 15:31:58 -0000 1.62 @@ -1 +1 @@ -9245008c9dd1480e925156d84ef4f275 gnome-power-manager-2.27.2.tar.gz +743abe92b54c5a31bbae97ad974bbd51 gnome-power-manager-2.27.3-20090721.tar.gz --- gnome-power-manager-2.27.2-fix-potfiles.patch DELETED --- --- gnome-power-manager-port-to-polkit1.patch DELETED --- From eseyman at fedoraproject.org Tue Jul 21 15:32:52 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Tue, 21 Jul 2009 15:32:52 +0000 (UTC) Subject: rpms/perl-Titanium/devel import.log, NONE, 1.1 perl-Titanium.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721153252.9377D11C005E@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-Titanium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8384/devel Modified Files: .cvsignore sources Added Files: import.log perl-Titanium.spec Log Message: Initial import. --- NEW FILE import.log --- perl-Titanium-1_03-1_fc11:HEAD:perl-Titanium-1.03-1.fc11.src.rpm:1248190353 --- NEW FILE perl-Titanium.spec --- Name: perl-Titanium Version: 1.03 Release: 1%{?dist} Summary: Strong, lightweight web application famework License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Titanium/ Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/Titanium-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 4 BuildRequires: perl(CGI::Application::Dispatch) BuildRequires: perl(CGI::Application::Plugin::ConfigAuto) BuildRequires: perl(CGI::Application::Plugin::DBH) BuildRequires: perl(CGI::Application::Plugin::DebugScreen) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(CGI::Application::Plugin::ErrorPage) BuildRequires: perl(CGI::Application::Plugin::FillInForm) BuildRequires: perl(CGI::Application::Plugin::Forward) BuildRequires: perl(CGI::Application::Plugin::LogDispatch) BuildRequires: perl(CGI::Application::Plugin::Redirect) BuildRequires: perl(CGI::Application::Plugin::Session) BuildRequires: perl(CGI::Application::Plugin::Stream) BuildRequires: perl(CGI::Application::Plugin::ValidateRM) BuildRequires: perl(CGI::Application::Server) BuildRequires: perl(CGI::Application::Standard::Config) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Starter::Plugin::CGIApp) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::WWW::Mechanize::CGIApp) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Titanium is a more user-friendly packaging of the mature CGI::Application framework and some useful plugins, with the intention of creating a strong but lightweight web application framework. It runs well in a plain CGI environment and provides excellent performance in a persistent environment such as FastCGI or mod_perl. %prep %setup -q -n Titanium-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sat Jun 27 2009 Emmanuel Seyman 1.03-1 - Update to 1.03 * Tue Jun 23 2009 Emmanuel Seyman 1.02-1 - Update to 1.02 * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:24:07 -0000 1.1 +++ .cvsignore 21 Jul 2009 15:32:51 -0000 1.2 @@ -0,0 +1 @@ +Titanium-1.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:24:08 -0000 1.1 +++ sources 21 Jul 2009 15:32:52 -0000 1.2 @@ -0,0 +1 @@ +e75f72ff1a4855125774b31f1bf8e1e4 Titanium-1.03.tar.gz From eseyman at fedoraproject.org Tue Jul 21 15:35:41 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Tue, 21 Jul 2009 15:35:41 +0000 (UTC) Subject: rpms/perl-Titanium/F-11 import.log, NONE, 1.1 perl-Titanium.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721153541.8FBA411C005E@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-Titanium/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9753/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Titanium.spec Log Message: Initial import. --- NEW FILE import.log --- perl-Titanium-1_03-1_fc11:F-11:perl-Titanium-1.03-1.fc11.src.rpm:1248190434 --- NEW FILE perl-Titanium.spec --- Name: perl-Titanium Version: 1.03 Release: 1%{?dist} Summary: Strong, lightweight web application famework License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Titanium/ Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/Titanium-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 4 BuildRequires: perl(CGI::Application::Dispatch) BuildRequires: perl(CGI::Application::Plugin::ConfigAuto) BuildRequires: perl(CGI::Application::Plugin::DBH) BuildRequires: perl(CGI::Application::Plugin::DebugScreen) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(CGI::Application::Plugin::ErrorPage) BuildRequires: perl(CGI::Application::Plugin::FillInForm) BuildRequires: perl(CGI::Application::Plugin::Forward) BuildRequires: perl(CGI::Application::Plugin::LogDispatch) BuildRequires: perl(CGI::Application::Plugin::Redirect) BuildRequires: perl(CGI::Application::Plugin::Session) BuildRequires: perl(CGI::Application::Plugin::Stream) BuildRequires: perl(CGI::Application::Plugin::ValidateRM) BuildRequires: perl(CGI::Application::Server) BuildRequires: perl(CGI::Application::Standard::Config) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Starter::Plugin::CGIApp) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::WWW::Mechanize::CGIApp) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Titanium is a more user-friendly packaging of the mature CGI::Application framework and some useful plugins, with the intention of creating a strong but lightweight web application framework. It runs well in a plain CGI environment and provides excellent performance in a persistent environment such as FastCGI or mod_perl. %prep %setup -q -n Titanium-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sat Jun 27 2009 Emmanuel Seyman 1.03-1 - Update to 1.03 * Tue Jun 23 2009 Emmanuel Seyman 1.02-1 - Update to 1.02 * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:24:07 -0000 1.1 +++ .cvsignore 21 Jul 2009 15:35:41 -0000 1.2 @@ -0,0 +1 @@ +Titanium-1.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:24:08 -0000 1.1 +++ sources 21 Jul 2009 15:35:41 -0000 1.2 @@ -0,0 +1 @@ +e75f72ff1a4855125774b31f1bf8e1e4 Titanium-1.03.tar.gz From rmeggins at fedoraproject.org Tue Jul 21 15:38:09 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 15:38:09 +0000 (UTC) Subject: rpms/389-admin/devel sources,1.3,1.4 Message-ID: <20090721153809.E342511C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10925/devel Modified Files: sources Log Message: final release of 1.1.8 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jul 2009 14:29:45 -0000 1.3 +++ sources 21 Jul 2009 15:38:09 -0000 1.4 @@ -1 +1 @@ -37dd57c0d64cde2f78e106bead6538a0 389-admin-1.1.8.tar.bz2 +44fa5cfbb7570ebb2cd775ac8379b5de 389-admin-1.1.8.tar.bz2 From rmeggins at fedoraproject.org Tue Jul 21 15:38:39 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 15:38:39 +0000 (UTC) Subject: rpms/389-admin/F-10 sources,1.2,1.3 Message-ID: <20090721153839.41DE611C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10925/F-10 Modified Files: sources Log Message: final release of 1.1.8 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Jun 2009 02:39:41 -0000 1.2 +++ sources 21 Jul 2009 15:38:08 -0000 1.3 @@ -1 +1 @@ -6d9ba5141022e10696dc92f296ae5ed3 389-admin-1.1.8.tar.bz2 +44fa5cfbb7570ebb2cd775ac8379b5de 389-admin-1.1.8.tar.bz2 From rmeggins at fedoraproject.org Tue Jul 21 15:38:39 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 15:38:39 +0000 (UTC) Subject: rpms/389-admin/F-11 sources,1.2,1.3 Message-ID: <20090721153839.65BA311C048A@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10925/F-11 Modified Files: sources Log Message: final release of 1.1.8 Index: sources =================================================================== RCS file: /cvs/extras/rpms/389-admin/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 Jun 2009 02:39:41 -0000 1.2 +++ sources 21 Jul 2009 15:38:09 -0000 1.3 @@ -1 +1 @@ -6d9ba5141022e10696dc92f296ae5ed3 389-admin-1.1.8.tar.bz2 +44fa5cfbb7570ebb2cd775ac8379b5de 389-admin-1.1.8.tar.bz2 From tibbs at fedoraproject.org Tue Jul 21 15:21:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Tue, 21 Jul 2009 15:21:13 +0000 (UTC) Subject: rpms/openssh-blacklist/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090721152113.95FA911C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/openssh-blacklist/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsEhL737/rpms/openssh-blacklist/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module openssh-blacklist --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: openssh-blacklist # $Id: Makefile,v 1.1 2009/07/21 15:21:13 tibbs Exp $ NAME := openssh-blacklist SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From dledford at fedoraproject.org Tue Jul 21 15:08:52 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:08:52 +0000 (UTC) Subject: rpms/openmpi/devel .cvsignore, 1.7, 1.8 openmpi.module.in, 1.4, 1.5 openmpi.spec, 1.35, 1.36 sources, 1.8, 1.9 Message-ID: <20090721150852.203BE11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27125 Modified Files: .cvsignore openmpi.module.in openmpi.spec sources Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 14 Apr 2009 20:55:48 -0000 1.7 +++ .cvsignore 21 Jul 2009 15:08:21 -0000 1.8 @@ -1 +1,2 @@ openmpi-1.3.1.tar.bz2 +openmpi-1.3.3.tar.bz2 Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.module.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openmpi.module.in 22 Apr 2009 15:04:12 -0000 1.4 +++ openmpi.module.in 21 Jul 2009 15:08:21 -0000 1.5 @@ -4,5 +4,5 @@ # prepend-path PATH @LIBDIR@/@MPIDIR@/bin prepend-path LD_LIBRARY_PATH @LIBDIR@/@MPIDIR@/lib -setenv CFLAGS -I at LIBDIR@/@MPIDIR@/include @MODEFLAG@ -setenv LDFLAGS -L at LIBDIR@/@MPIDIR@/lib -lmpi +setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/include @MODEFLAG@" +setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- openmpi.spec 18 Jul 2009 17:20:38 -0000 1.35 +++ openmpi.spec 21 Jul 2009 15:08:21 -0000 1.36 @@ -17,8 +17,8 @@ #define cc_name_suffix -gcc Name: openmpi%{?cc_name_suffix} -Version: 1.3.1 -Release: 4%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -34,10 +34,7 @@ BuildRequires: libibverbs-devel, opensm #%endif Provides: mpi Requires: environment-modules - -# Provide the obsoleted -devel which is used by other packages -Provides: openmpi-devel = %{version}-%{release} -Obsoletes: openmpi-libs, openmpi-devel +Obsoletes: openmpi-libs %description Open MPI is an open source, freely available implementation of both the @@ -48,6 +45,15 @@ compliant implementation, Open MPI offer software vendors, application developers, and computer science researchers. For more information, see http://www.open-mpi.org/ . +%package devel +Summary: Development files for openmpi +Group: Development/Libraries +Requires: %{name} = %{version}-%{release}, gcc-gfortran +Provides: mpi-devel + +%description devel +Contains development headers and libraries for openmpi + # When dealing with multilib installations, aka the ability to run either # i386 or x86_64 binaries on x86_64 machines, we install the native i386 # openmpi libs/compilers and the native x86_64 libs/compilers. Obviously, @@ -87,7 +93,12 @@ XFLAGS="-fPIC" ./configure --prefix=%{_libdir}/%{mpidir} --with-libnuma=/usr \ --with-openib=/usr --enable-mpirun-prefix-by-default \ - --mandir=%{_libdir}/%{mpidir}/man \ + --mandir=%{_libdir}/%{mpidir}/man --enable-mpi-threads \ + --with-ft=cr --with-valgrind \ + --with-wrapper-cflags="%{?opt_cflags} %{?modeflag}" \ + --with-wrapper-cxxflags="%{?opt_cxxflags} %{?modeflag}" \ + --with-wrapper-fflags="%{?opt_fflags} %{?modeflag}" \ + --with-wrapper-fcflags="%{?opt_fcflags} %{?modeflag}" \ CC=%{opt_cc} CXX=%{opt_cxx} \ LDFLAGS='-Wl,-z,noexecstack' \ CFLAGS="%{?opt_cflags} $RPM_OPT_FLAGS $XFLAGS" \ @@ -109,38 +120,80 @@ rm -f %{buildroot}%{_libdir}/%{mpidir}/s # Make the pkgconfig file mkdir -p %{buildroot}%{_libdir}/pkgconfig -sed 's#@NAME@#'%{name}'#g;s#@VERSION@#'%{version}'#g;s#@LIBDIR@#'%{_libdir}'#g;s#@CC@#'%{opt_cc}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE1 > %{buildroot}/%{_libdir}/pkgconfig/%{name}-%{version}-%{opt_cc}.pc +sed 's#@NAME@#'%{name}'#g;s#@VERSION@#'%{version}'#g;s#@LIBDIR@#'%{_libdir}'#g;s#@CC@#'%{opt_cc}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE1 > %{buildroot}/%{_libdir}/pkgconfig/%{name}%{?cc_name_suffix}.pc # Make the environment-modules file mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles -sed 's#@LIBDIR@#'%{_libdir}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE2 > %{buildroot}/%{_datadir}/Modules/modulefiles/%{name}-%{version}-%{opt_cc}-%{_arch}.module - -# we need to force the compile mode via the wrapper-data.txt files -# (except on ia64 where the -m64 flag is not allowed by gcc) -%ifnarch ia64 -for i in %{buildroot}%{_libdir}/%{mpidir}/share/openmpi/*wrapper-data.txt -do - sed -e 's#compiler_flags=#compiler_flags='%{?modeflag}' #' < $i > $i.out - mv $i.out $i -done -%endif +sed 's#@LIBDIR@#'%{_libdir}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE2 > %{buildroot}/%{_datadir}/Modules/modulefiles/%{name}-%{_arch}%{?cc_name_suffix} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) +%dir %{_libdir}/%{name} %dir %{_libdir}/%{mpidir} %dir %{_libdir}/%{mpidir}/etc +%dir %{_libdir}/%{mpidir}/bin +%dir %{_libdir}/%{mpidir}/lib +%dir %{_libdir}/%{mpidir}/lib/openmpi +%dir %{_libdir}/%{mpidir}/man +%dir %{_libdir}/%{mpidir}/man/man1 +%dir %{_libdir}/%{mpidir}/man/man7 +%dir %{_libdir}/%{mpidir}/share +%dir %{_libdir}/%{mpidir}/share/openmpi %config(noreplace) %{_libdir}/%{mpidir}/etc/* -%{_libdir}/%{mpidir}/bin -%{_libdir}/%{mpidir}/include -%{_libdir}/%{mpidir}/lib -%{_libdir}/%{mpidir}/man -%{_libdir}/%{mpidir}/share -%{_libdir}/pkgconfig/%{name}-%{version}-%{opt_cc}.pc +%{_libdir}/%{mpidir}/bin/mpi[er]* +%{_libdir}/%{mpidir}/bin/ompi* +%{_libdir}/%{mpidir}/bin/opal-* +%{_libdir}/%{mpidir}/bin/opari +%{_libdir}/%{mpidir}/bin/orte* +%{_libdir}/%{mpidir}/bin/otf* +%{_libdir}/%{mpidir}/lib/openmpi/* +%{_libdir}/%{mpidir}/lib/*.so.* +%{_libdir}/%{mpidir}/man/man1/mpi[er]* +%{_libdir}/%{mpidir}/man/man1/ompi* +%{_libdir}/%{mpidir}/man/man1/opal-* +%{_libdir}/%{mpidir}/man/man1/orte* +%{_libdir}/%{mpidir}/man/man7/ompi* +%{_libdir}/%{mpidir}/man/man7/orte* +%{_libdir}/%{mpidir}/share/openmpi/doc +%{_libdir}/%{mpidir}/share/openmpi/amca-param-sets +%{_libdir}/%{mpidir}/share/openmpi/help* +%{_libdir}/%{mpidir}/share/openmpi/mca* %{_datadir}/Modules/modulefiles/* +%files devel +%defattr(-,root,root,-) +%dir %{_libdir}/%{mpidir}/include +%dir %{_libdir}/%{mpidir}/man/man3 +%dir %{_libdir}/%{mpidir}/share/vampirtrace +%{_libdir}/pkgconfig/%{name}%{?cc_name_suffix}.pc +%{_libdir}/%{mpidir}/bin/mpi[cCf]* +%{_libdir}/%{mpidir}/bin/vt* +%{_libdir}/%{mpidir}/bin/opal_* +%{_libdir}/%{mpidir}/include/* +%{_libdir}/%{mpidir}/lib/*.so +%{_libdir}/%{mpidir}/lib/lib*.a +%{_libdir}/%{mpidir}/lib/mpi.mod +%{_libdir}/%{mpidir}/man/man1/mpi[cCf]* +%{_libdir}/%{mpidir}/man/man1/opal_* +%{_libdir}/%{mpidir}/man/man3/* +%{_libdir}/%{mpidir}/man/man7/opal* +%{_libdir}/%{mpidir}/share/openmpi/mpi* +%{_libdir}/%{mpidir}/share/vampirtrace/* + %changelog +* Tue Jul 21 2009 Doug Ledford - 1.3.3-1 +- Make sure all created dirs are owned (bz474677) +- Fix loading of pkgconfig file (bz476844) +- Resolve file conflict between us and libotf (bz496131) +- Resolve dangling symlinks issue (bz496909) +- Resolve unexpanded %%{mode} issues (bz496911) +- Restore -devel subpackage (bz499851) +- Make getting the default openmpi devel environment easier (bz504357) +- Make the -devel package pull in the base package (bz459458) +- Make it easier to use alternative compilers to build package (bz246484) + * Sat Jul 18 2009 Jussi Lehtola - 1.3.1-4 - Add Provides: openmpi-devel to fix other package builds in rawhide. Index: sources =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 14 Apr 2009 20:55:48 -0000 1.8 +++ sources 21 Jul 2009 15:08:21 -0000 1.9 @@ -1 +1 @@ -d759523b0752139872c534714d641d64 openmpi-1.3.1.tar.bz2 +f6cdc9c195daa8571b2e509e952d6755 openmpi-1.3.3.tar.bz2 From dledford at fedoraproject.org Tue Jul 21 15:13:31 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 15:13:31 +0000 (UTC) Subject: rpms/openmpi/F-11 openmpi.module.in, 1.4, 1.5 openmpi.spec, 1.33, 1.34 sources, 1.8, 1.9 Message-ID: <20090721151331.1231A11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29136 Modified Files: openmpi.module.in openmpi.spec sources Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) - Resolve file conflict between us and libotf (bz496131) - Resolve dangling symlinks issue (bz496909) - Resolve unexpanded %{mode} issues (bz496911) - Restore -devel subpackage (bz499851) - Make getting the default openmpi devel environment easier (bz504357) - Make the -devel package pull in the base package (bz459458) - Make it easier to use alternative compilers to build package (bz246484) Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.module.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openmpi.module.in 22 Apr 2009 15:02:29 -0000 1.4 +++ openmpi.module.in 21 Jul 2009 15:13:00 -0000 1.5 @@ -4,5 +4,5 @@ # prepend-path PATH @LIBDIR@/@MPIDIR@/bin prepend-path LD_LIBRARY_PATH @LIBDIR@/@MPIDIR@/lib -setenv CFLAGS -I at LIBDIR@/@MPIDIR@/include @MODEFLAG@ -setenv LDFLAGS -L at LIBDIR@/@MPIDIR@/lib -lmpi +setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/include @MODEFLAG@" +setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- openmpi.spec 22 Apr 2009 21:25:49 -0000 1.33 +++ openmpi.spec 21 Jul 2009 15:13:00 -0000 1.34 @@ -17,8 +17,8 @@ #define cc_name_suffix -gcc Name: openmpi%{?cc_name_suffix} -Version: 1.3.1 -Release: 2%{?dist} +Version: 1.3.3 +Release: 1%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -34,7 +34,7 @@ BuildRequires: libibverbs-devel, opensm #%endif Provides: mpi Requires: environment-modules -Obsoletes: openmpi-libs, openmpi-devel +Obsoletes: openmpi-libs %description Open MPI is an open source, freely available implementation of both the @@ -45,6 +45,15 @@ compliant implementation, Open MPI offer software vendors, application developers, and computer science researchers. For more information, see http://www.open-mpi.org/ . +%package devel +Summary: Development files for openmpi +Group: Development/Libraries +Requires: %{name} = %{version}-%{release}, gcc-gfortran +Provides: mpi-devel + +%description devel +Contains development headers and libraries for openmpi + # When dealing with multilib installations, aka the ability to run either # i386 or x86_64 binaries on x86_64 machines, we install the native i386 # openmpi libs/compilers and the native x86_64 libs/compilers. Obviously, @@ -60,7 +69,7 @@ researchers. For more information, see h # in default arch packages (aka, the x86_64 package). There are, however, # some arches that don't support forcing *any* mode, those we just leave # undefined. -%ifarch i386 ppc sparcv9 +%ifarch %{ix86} ppc sparcv9 %define mode 32 %define modeflag -m32 %endif @@ -84,7 +93,12 @@ XFLAGS="-fPIC" ./configure --prefix=%{_libdir}/%{mpidir} --with-libnuma=/usr \ --with-openib=/usr --enable-mpirun-prefix-by-default \ - --mandir=%{_libdir}/%{mpidir}/man \ + --mandir=%{_libdir}/%{mpidir}/man --enable-mpi-threads \ + --with-ft=cr --with-valgrind \ + --with-wrapper-cflags="%{?opt_cflags} %{?modeflag}" \ + --with-wrapper-cxxflags="%{?opt_cxxflags} %{?modeflag}" \ + --with-wrapper-fflags="%{?opt_fflags} %{?modeflag}" \ + --with-wrapper-fcflags="%{?opt_fcflags} %{?modeflag}" \ CC=%{opt_cc} CXX=%{opt_cxx} \ LDFLAGS='-Wl,-z,noexecstack' \ CFLAGS="%{?opt_cflags} $RPM_OPT_FLAGS $XFLAGS" \ @@ -106,38 +120,86 @@ rm -f %{buildroot}%{_libdir}/%{mpidir}/s # Make the pkgconfig file mkdir -p %{buildroot}%{_libdir}/pkgconfig -sed 's#@NAME@#'%{name}'#g;s#@VERSION@#'%{version}'#g;s#@LIBDIR@#'%{_libdir}'#g;s#@CC@#'%{opt_cc}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE1 > %{buildroot}/%{_libdir}/pkgconfig/%{name}-%{version}-%{opt_cc}.pc +sed 's#@NAME@#'%{name}'#g;s#@VERSION@#'%{version}'#g;s#@LIBDIR@#'%{_libdir}'#g;s#@CC@#'%{opt_cc}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE1 > %{buildroot}/%{_libdir}/pkgconfig/%{name}%{?cc_name_suffix}.pc # Make the environment-modules file mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles -sed 's#@LIBDIR@#'%{_libdir}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE2 > %{buildroot}/%{_datadir}/Modules/modulefiles/%{name}-%{version}-%{opt_cc}-%{_arch}.module - -# we need to force the compile mode via the wrapper-data.txt files -# (except on ia64 where the -m64 flag is not allowed by gcc) -%ifnarch ia64 -for i in %{buildroot}%{_libdir}/%{mpidir}/share/openmpi/*wrapper-data.txt -do - sed -e 's#compiler_flags=#compiler_flags='%{?modeflag}' #' < $i > $i.out - mv $i.out $i -done -%endif +sed 's#@LIBDIR@#'%{_libdir}'#g;s#@MPIDIR@#'%{mpidir}'#g;s#@MODEFLAG@#'%{?modeflag}'#g' < %SOURCE2 > %{buildroot}/%{_datadir}/Modules/modulefiles/%{name}-%{_arch}%{?cc_name_suffix} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) +%dir %{_libdir}/%{name} %dir %{_libdir}/%{mpidir} %dir %{_libdir}/%{mpidir}/etc +%dir %{_libdir}/%{mpidir}/bin +%dir %{_libdir}/%{mpidir}/lib +%dir %{_libdir}/%{mpidir}/lib/openmpi +%dir %{_libdir}/%{mpidir}/man +%dir %{_libdir}/%{mpidir}/man/man1 +%dir %{_libdir}/%{mpidir}/man/man7 +%dir %{_libdir}/%{mpidir}/share +%dir %{_libdir}/%{mpidir}/share/openmpi %config(noreplace) %{_libdir}/%{mpidir}/etc/* -%{_libdir}/%{mpidir}/bin -%{_libdir}/%{mpidir}/include -%{_libdir}/%{mpidir}/lib -%{_libdir}/%{mpidir}/man -%{_libdir}/%{mpidir}/share -%{_libdir}/pkgconfig/%{name}-%{version}-%{opt_cc}.pc +%{_libdir}/%{mpidir}/bin/mpi[er]* +%{_libdir}/%{mpidir}/bin/ompi* +%{_libdir}/%{mpidir}/bin/opal-* +%{_libdir}/%{mpidir}/bin/opari +%{_libdir}/%{mpidir}/bin/orte* +%{_libdir}/%{mpidir}/bin/otf* +%{_libdir}/%{mpidir}/lib/openmpi/* +%{_libdir}/%{mpidir}/lib/*.so.* +%{_libdir}/%{mpidir}/man/man1/mpi[er]* +%{_libdir}/%{mpidir}/man/man1/ompi* +%{_libdir}/%{mpidir}/man/man1/opal-* +%{_libdir}/%{mpidir}/man/man1/orte* +%{_libdir}/%{mpidir}/man/man7/ompi* +%{_libdir}/%{mpidir}/man/man7/orte* +%{_libdir}/%{mpidir}/share/openmpi/doc +%{_libdir}/%{mpidir}/share/openmpi/amca-param-sets +%{_libdir}/%{mpidir}/share/openmpi/help* +%{_libdir}/%{mpidir}/share/openmpi/mca* %{_datadir}/Modules/modulefiles/* +%files devel +%defattr(-,root,root,-) +%dir %{_libdir}/%{mpidir}/include +%dir %{_libdir}/%{mpidir}/man/man3 +%dir %{_libdir}/%{mpidir}/share/vampirtrace +%{_libdir}/pkgconfig/%{name}%{?cc_name_suffix}.pc +%{_libdir}/%{mpidir}/bin/mpi[cCf]* +%{_libdir}/%{mpidir}/bin/vt* +%{_libdir}/%{mpidir}/bin/opal_* +%{_libdir}/%{mpidir}/include/* +%{_libdir}/%{mpidir}/lib/*.so +%{_libdir}/%{mpidir}/lib/lib*.a +%{_libdir}/%{mpidir}/lib/mpi.mod +%{_libdir}/%{mpidir}/man/man1/mpi[cCf]* +%{_libdir}/%{mpidir}/man/man1/opal_* +%{_libdir}/%{mpidir}/man/man3/* +%{_libdir}/%{mpidir}/man/man7/opal* +%{_libdir}/%{mpidir}/share/openmpi/mpi* +%{_libdir}/%{mpidir}/share/vampirtrace/* + %changelog +* Tue Jul 21 2009 Doug Ledford - 1.3.3-1 +- Make sure all created dirs are owned (bz474677) +- Fix loading of pkgconfig file (bz476844) +- Resolve file conflict between us and libotf (bz496131) +- Resolve dangling symlinks issue (bz496909) +- Resolve unexpanded %%{mode} issues (bz496911) +- Restore -devel subpackage (bz499851) +- Make getting the default openmpi devel environment easier (bz504357) +- Make the -devel package pull in the base package (bz459458) +- Make it easier to use alternative compilers to build package (bz246484) + +* Sat Jul 18 2009 Jussi Lehtola - 1.3.1-4 +- Add Provides: openmpi-devel to fix other package builds in rawhide. + +* Fri May 08 2009 Lubomir Rintel - 1.3.1-3 +- Treat i586 the same way as i386 + * Wed Apr 22 2009 Doug Ledford - 1.3.1-2 - fixed broken update - Resolves: bz496909, bz496131, bz496911 Index: sources =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 14 Apr 2009 20:55:48 -0000 1.8 +++ sources 21 Jul 2009 15:13:00 -0000 1.9 @@ -1 +1 @@ -d759523b0752139872c534714d641d64 openmpi-1.3.1.tar.bz2 +f6cdc9c195daa8571b2e509e952d6755 openmpi-1.3.3.tar.bz2 From rmeggins at fedoraproject.org Tue Jul 21 15:39:42 2009 From: rmeggins at fedoraproject.org (Richard Allen Megginson) Date: Tue, 21 Jul 2009 15:39:42 +0000 (UTC) Subject: rpms/389-admin/devel 389-admin.spec,1.3,1.4 Message-ID: <20090721153942.4B12211C005E@cvs1.fedora.phx.redhat.com> Author: rmeggins Update of /cvs/extras/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11574/devel Modified Files: 389-admin.spec Log Message: bump rev for final rebuild Index: 389-admin.spec =================================================================== RCS file: /cvs/extras/rpms/389-admin/devel/389-admin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- 389-admin.spec 21 Jul 2009 12:59:11 -0000 1.3 +++ 389-admin.spec 21 Jul 2009 15:39:42 -0000 1.4 @@ -3,7 +3,7 @@ Summary: 389 Administration Server (admin) Name: 389-admin Version: 1.1.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 and ASL 2.0 URL: http://port389.org/ Group: System Environment/Daemons @@ -150,6 +150,9 @@ fi %{_mandir}/man8/* %changelog +* Tue Jul 21 2009 Rich Megginson - 1.1.8-3 +- bump rev for final rebuild + * Tue Jul 21 2009 Rich Megginson - 1.1.8-2 - change adminutil to 389-adminutil From awjb at fedoraproject.org Tue Jul 21 15:41:23 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 15:41:23 +0000 (UTC) Subject: rpms/claws-mail-plugins/F-10 claws-mail-plugins.spec,1.40,1.41 Message-ID: <20090721154123.3245911C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/claws-mail-plugins/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12101 Modified Files: claws-mail-plugins.spec Log Message: - drop webkitgtk BR Index: claws-mail-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail-plugins/F-10/claws-mail-plugins.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- claws-mail-plugins.spec 21 Jul 2009 14:56:28 -0000 1.40 +++ claws-mail-plugins.spec 21 Jul 2009 15:40:52 -0000 1.41 @@ -43,7 +43,6 @@ BuildRequires: libarchive-devel BuildRequires: libytnef-devel BuildRequires: ghostscript BuildRequires: enchant-devel -BuildRequires: webkitgtk-devel # fix #496149 BuildRequires: libnotify-devel From jgarzik at fedoraproject.org Tue Jul 21 15:45:50 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 15:45:50 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.init, NONE, 1.1 chunkd.spec, NONE, 1.1 chunkd.sysconf, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721154550.70CC711C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13813/devel Modified Files: .cvsignore sources Added Files: chunkd.init chunkd.spec chunkd.sysconf import.log Log Message: initial revision --- NEW FILE chunkd.init --- #!/bin/sh # # chunkd Starts/stop the data storage daemon # # chkconfig: - 96 5 # description: A data storage service ### BEGIN INIT INFO # Provides: chunkd # Required-Start: $local_fs $network # Required-Stop: $local_fs $network # Should-Start: # Default-Start: # Default-Stop: 0 1 2 3 4 5 6 # Short-Description: A data storage service # Description: Data storage service ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec=/usr/sbin/chunkd prog="chunkd" config=/etc/sysconfig/chunkd [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " daemon $exec $OPTS && success || failure retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " if [ -n "`pidfileofproc $exec`" ] ; then killproc $exec RETVAL=3 else failure $"Stopping $prog" fi retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE chunkd.spec --- Name: chunkd Version: 0.4 Release: 0.2.ge073b822%{?dist} Summary: Data storage daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ # pulled from upstream git, commit e073b82297fc3c88f94f524c82e9e6e86fb2cd0a # to recreate tarball, check out commit, then run "make dist" Source0: chunkd-%{version}git.tar.gz Source2: chunkd.init Source3: chunkd.sysconf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # N.B. We need cld to build, because our "make check" spawns a private copy. BuildRequires: libevent-devel glib2-devel openssl-devel zlib-devel BuildRequires: libxml2-devel procps cld cld-devel # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed ExcludeArch: ppc ppc64 %description Single-node data storage daemon for cloud computing. This TCP network service is a very simple PUT/GET/DELETE data storage service. It is intended to be used as a low-level piece of large-scale distributed data storage infrastructure. The service provides operations on stored data ("objects"). %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n %{name}-%{version}git %build %configure --disable-static make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_initddir} install -m 755 %{SOURCE2} %{buildroot}%{_initddir}/chunkd mkdir -p %{buildroot}%{_sysconfdir}/sysconfig install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/chunkd find %{buildroot} -name '*.la' -exec rm -f {} ';' %check make check %clean rm -rf %{buildroot} %post /sbin/ldconfig # must be in chkconfig on /sbin/chkconfig --add chunkd %preun if [ "$1" = 0 ] ; then /sbin/service chunkd stop >/dev/null 2>&1 ||: /sbin/chkconfig --del chunkd fi %postun /sbin/ldconfig if [ "$1" -ge "1" ]; then /sbin/service chunkd condrestart >/dev/null 2>&1 ||: fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE README NEWS doc/*.txt %{_sbindir}/chunkd %{_libdir}/*.so.* %attr(0755,root,root) %{_initddir}/chunkd %config(noreplace) %{_sysconfdir}/sysconfig/chunkd %files devel %defattr(-,root,root,-) %{_libdir}/lib*.so %{_libdir}/pkgconfig/* %{_includedir}/* %changelog * Sun Jul 19 2009 Jeff Garzik - 0.4-0.2.ge073b822 - update source to commit e073b82297fc3c88f94f524c82e9e6e86fb2cd0a - improve pkg description - per pkg guidelines, describe how to regen source tarball from git - add doc LICENSE * Fri Jul 17 2009 Jeff Garzik - 0.4-0.1.g6f54181c - kill RPM_BUILD_ROOT - new release version scheme * Thu Jul 16 2009 Jeff Garzik - 0.3-4%{?dist} - chkconfig default off - add doc: COPYING - config(noreplace) sysconfig/chunkd * Thu Jul 16 2009 Jeff Garzik - 0.3-3%{?dist} - minor spec updates for review feedback, Fedora packaging guidelines * Thu Jul 16 2009 Jeff Garzik - 0.3-2%{?dist} - updated BuildRequires - rpmlint fixes - updated to latest git repo * Fri May 15 2009 Jeff Garzik - 0.3-1%{?dist} - Version 0.3 * Fri May 15 2009 Jeff Garzik - 0.2-1%{?dist} - Version 0.2 * Wed Mar 18 2009 Jeff Garzik - 0.2git-2%{?dist} - package and ship libchunkdc * Wed Mar 18 2009 Jeff Garzik - 0.2git-1%{?dist} - initial release --- NEW FILE chunkd.sysconf --- # specify additional command line arguments for chunkd # #example: #OPTS="--debug" --- NEW FILE import.log --- chunkd-0_4-0_2_ge073b822_fc10:HEAD:chunkd-0.4-0.2.ge073b822.fc10.src.rpm:1248191086 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:22:22 -0000 1.1 +++ .cvsignore 21 Jul 2009 15:45:20 -0000 1.2 @@ -0,0 +1 @@ +chunkd-0.4git.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:22:22 -0000 1.1 +++ sources 21 Jul 2009 15:45:20 -0000 1.2 @@ -0,0 +1 @@ +26655e13339e3b4bcb8903520134c40c chunkd-0.4git.tar.gz From eseyman at fedoraproject.org Tue Jul 21 15:54:03 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Tue, 21 Jul 2009 15:54:03 +0000 (UTC) Subject: rpms/perl-Titanium/F-10 import.log, NONE, 1.1 perl-Titanium.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721155403.B4CDD11C005E@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-Titanium/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16767/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Titanium.spec Log Message: Initial import. --- NEW FILE import.log --- perl-Titanium-1_03-1_fc11:F-10:perl-Titanium-1.03-1.fc11.src.rpm:1248191595 --- NEW FILE perl-Titanium.spec --- Name: perl-Titanium Version: 1.03 Release: 1%{?dist} Summary: Strong, lightweight web application famework License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Titanium/ Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/Titanium-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 4 BuildRequires: perl(CGI::Application::Dispatch) BuildRequires: perl(CGI::Application::Plugin::ConfigAuto) BuildRequires: perl(CGI::Application::Plugin::DBH) BuildRequires: perl(CGI::Application::Plugin::DebugScreen) BuildRequires: perl(CGI::Application::Plugin::DevPopup) BuildRequires: perl(CGI::Application::Plugin::ErrorPage) BuildRequires: perl(CGI::Application::Plugin::FillInForm) BuildRequires: perl(CGI::Application::Plugin::Forward) BuildRequires: perl(CGI::Application::Plugin::LogDispatch) BuildRequires: perl(CGI::Application::Plugin::Redirect) BuildRequires: perl(CGI::Application::Plugin::Session) BuildRequires: perl(CGI::Application::Plugin::Stream) BuildRequires: perl(CGI::Application::Plugin::ValidateRM) BuildRequires: perl(CGI::Application::Server) BuildRequires: perl(CGI::Application::Standard::Config) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Starter::Plugin::CGIApp) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::WWW::Mechanize::CGIApp) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Titanium is a more user-friendly packaging of the mature CGI::Application framework and some useful plugins, with the intention of creating a strong but lightweight web application framework. It runs well in a plain CGI environment and provides excellent performance in a persistent environment such as FastCGI or mod_perl. %prep %setup -q -n Titanium-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check ./Build test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes README %{perl_vendorlib}/* %{_mandir}/man3/* %changelog * Sat Jun 27 2009 Emmanuel Seyman 1.03-1 - Update to 1.03 * Tue Jun 23 2009 Emmanuel Seyman 1.02-1 - Update to 1.02 * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:24:07 -0000 1.1 +++ .cvsignore 21 Jul 2009 15:53:33 -0000 1.2 @@ -0,0 +1 @@ +Titanium-1.03.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:24:08 -0000 1.1 +++ sources 21 Jul 2009 15:53:33 -0000 1.2 @@ -0,0 +1 @@ +e75f72ff1a4855125774b31f1bf8e1e4 Titanium-1.03.tar.gz From rhughes at fedoraproject.org Tue Jul 21 15:54:10 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 21 Jul 2009 15:54:10 +0000 (UTC) Subject: rpms/DeviceKit-power/F-11 .cvsignore, 1.11, 1.12 DeviceKit-power.spec, 1.14, 1.15 sources, 1.11, 1.12 Message-ID: <20090721155410.3451911C005E@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/DeviceKit-power/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16975 Modified Files: .cvsignore DeviceKit-power.spec sources Log Message: * Tue Jul 21 2009 Richard Hughes - 010-0.1.20090721git - Update to todays git snapshot which detects batteries that stop charging at less than 95%. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 6 Jul 2009 12:43:31 -0000 1.11 +++ .cvsignore 21 Jul 2009 15:54:09 -0000 1.12 @@ -1 +1 @@ -DeviceKit-power-009.tar.gz +DeviceKit-power-010-20090721.tar.gz Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/DeviceKit-power.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- DeviceKit-power.spec 6 Jul 2009 12:43:31 -0000 1.14 +++ DeviceKit-power.spec 21 Jul 2009 15:54:09 -0000 1.15 @@ -4,18 +4,21 @@ %define DeviceKit_version 002 %define polkit_version 0.8 %define parted_version 1.8.8 -#%define alphatag 20090513 +%define alphatag 20090721 Summary: Power Management Service Name: DeviceKit-power -Version: 009 -#Release: 0.3.%{?alphatag}git%{?dist} -Release: 1%{?dist} +Version: 010 +Release: 0.1.%{?alphatag}git%{?dist} +#Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit.git;a=summary -#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz -Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz + +# this is a special build from the fedora11 branch +Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz +#Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -51,8 +54,8 @@ Requires: %{name} = %{version}-%{release Headers and libraries for DeviceKit-power. %prep -%setup -q -#%setup -q -n %{?name}-%{?version}-%{?alphatag} +#%setup -q +%setup -q -n %{?name}-%{?version}-%{?alphatag} %build %configure @@ -110,6 +113,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 21 2009 Richard Hughes - 010-0.1.20090721git +- Update to todays git snapshot which detects batteries that stop charging at + less than 95%. + * Mon Jul 06 2009 Richard Hughes - 009-1 - Update to 009 - Fixes many problems with multi-battery laptops Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 6 Jul 2009 12:43:31 -0000 1.11 +++ sources 21 Jul 2009 15:54:09 -0000 1.12 @@ -1 +1 @@ -535703fa7b9c323d6388b5aff28cfeeb DeviceKit-power-009.tar.gz +4244dd809a156a194cfc6207adb58ad7 DeviceKit-power-010-20090721.tar.gz From jgarzik at fedoraproject.org Tue Jul 21 16:00:07 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 16:00:07 +0000 (UTC) Subject: rpms/tabled/devel import.log, NONE, 1.1 tabled.init, NONE, 1.1 tabled.spec, NONE, 1.1 tabled.sysconf, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721160007.7977211C04A0@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19129/devel Modified Files: .cvsignore sources Added Files: import.log tabled.init tabled.spec tabled.sysconf Log Message: initial revision --- NEW FILE import.log --- tabled-0_3-0_2_g6f015fa5_fc10:HEAD:tabled-0.3-0.2.g6f015fa5.fc10.src.rpm:1248191988 --- NEW FILE tabled.init --- #!/bin/sh # # tabled Starts/stop the distributed table daemon # # chkconfig: - 97 5 # description: Distributed key/value table service # processname: tabled ### BEGIN INIT INFO # Provides: tabled # Required-Start: $local_fs $network # Required-Stop: $local_fs $network # Should-Start: # Default-Start: # Default-Stop: 0 1 2 3 4 5 6 # Short-Description: Distributed key/value table service # Description: Distributed key/value table service ### END INIT INFO # Source function library. . /etc/rc.d/init.d/functions exec=/usr/sbin/tabled prog="tabled" config=/etc/sysconfig/tabled [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog lockfile=/var/lock/subsys/$prog start() { [ -x $exec ] || exit 5 [ -f $config ] || exit 6 echo -n $"Starting $prog: " daemon $exec $OPTS && success || failure retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " if [ -n "`pidfileofproc $exec`" ] ; then killproc $exec RETVAL=3 else failure $"Stopping $prog" fi retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { restart } force_reload() { restart } rh_status() { # run checks to determine if the service is running or use generic status status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}" exit 2 esac exit $? --- NEW FILE tabled.spec --- Name: tabled Version: 0.3 Release: 0.2.g6f015fa5%{?dist} Summary: Distributed key/value table service Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ # pulled from upstream git, commit 6f015fa5f920da809d66e57515672b26d0e82b89 # to recreate tarball, check out commit, then run "make dist" Source0: tabled-%{version}git.tar.gz Source2: tabled.init Source3: tabled.sysconf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # N.B. We need chunkd and cld to build, because our "make check" spawns # private copies of infrastructure daemons. BuildRequires: db4-devel libevent-devel glib2-devel pcre-devel BuildRequires: chunkd chunkd-devel cld cld-devel # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed ExcludeArch: ppc ppc64 %description tabled provides an infinitely scalable, lexicographically sorted key/value lookup table. Keys cannot exceed 1024 bytes; values can be any size, including several gigabytes or more. tabled user interface is HTTP REST, and is intended to be compatible with existing Amazon S3 clients. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n %{name}-%{version}git %build %configure --disable-static make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_initddir} install -m 755 %{SOURCE2} %{buildroot}%{_initddir}/tabled mkdir -p %{buildroot}%{_sysconfdir}/sysconfig install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/tabled find %{buildroot} -name '*.la' -exec rm -f {} ';' %check make -s check %clean rm -rf %{buildroot} %post /sbin/ldconfig # must be in chkconfig on /sbin/chkconfig --add tabled %preun if [ "$1" = 0 ] ; then /sbin/service tabled stop >/dev/null 2>&1 ||: /sbin/chkconfig --del tabled fi %postun /sbin/ldconfig if [ "$1" -ge "1" ]; then /sbin/service tabled condrestart >/dev/null 2>&1 ||: fi %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE README NEWS doc/*.txt %{_sbindir}/tabled %{_sbindir}/tdbadm %{_libdir}/*.so.* %attr(0755,root,root) %{_initddir}/tabled %config(noreplace) %{_sysconfdir}/sysconfig/tabled %files devel %defattr(-,root,root,-) %{_libdir}/lib*.so %{_libdir}/pkgconfig/* %{_includedir}/* %changelog * Sun Jul 19 2009 Jeff Garzik - 0.3-0.2.g6f015fa5 - update to git commit 6f015fa5f920da809d66e57515672b26d0e82b89 - expanded description - describe source tarball regen, per pkg guidelines * Fri Jul 17 2009 Jeff Garzik - 0.3-0.1.g2783d260 - new release version scheme * Thu Jul 16 2009 Jeff Garzik - 0.3git-5 - chkconfig default off - add docs: COPYING, LICENSE - config(noreplace) sysconfig/tabled * Thu Jul 16 2009 Jeff Garzik - 0.3git-4 - minor spec updates for review feedback, Fedora packaging guidelines * Wed Mar 18 2009 Jeff Garzik - 0.3git-3 - rename lib to libhttpstor * Wed Mar 18 2009 Jeff Garzik - 0.3git-2 - package and ship libs3c * Wed Mar 18 2009 Jeff Garzik - 0.3git-1 - initial release --- NEW FILE tabled.sysconf --- # specify additional command line arguments for tabled # #example: #OPTS="--debug" Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:22:54 -0000 1.1 +++ .cvsignore 21 Jul 2009 16:00:06 -0000 1.2 @@ -0,0 +1 @@ +tabled-0.3git.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:22:54 -0000 1.1 +++ sources 21 Jul 2009 16:00:07 -0000 1.2 @@ -0,0 +1 @@ +020857a49bb22d2f2dedd52531a66dd8 tabled-0.3git.tar.gz From mlichvar at fedoraproject.org Tue Jul 21 15:55:15 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Tue, 21 Jul 2009 15:55:15 +0000 (UTC) Subject: rpms/ntp/devel ntp-4.2.4p7-editline.patch, NONE, 1.1 ntp-4.2.4p7-sleep.patch, NONE, 1.1 ntpstat-0.2-clksrc.patch, NONE, 1.1 ntpstat-0.2-multipacket.patch, NONE, 1.1 ntp.conf, 1.15, 1.16 ntp.spec, 1.91, 1.92 ntp-4.2.4p4-bsdadv.patch, 1.1, NONE ntp-4.2.4p5-sleep.patch, 1.2, NONE Message-ID: <20090721155515.0CFA311C005E@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/ntp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16925 Modified Files: ntp.conf ntp.spec Added Files: ntp-4.2.4p7-editline.patch ntp-4.2.4p7-sleep.patch ntpstat-0.2-clksrc.patch ntpstat-0.2-multipacket.patch Removed Files: ntp-4.2.4p4-bsdadv.patch ntp-4.2.4p5-sleep.patch Log Message: - handle system time jumps better - don't wake up every second for refclocks without timer - don't crash in ntpstat when unknown clock type is received (#505564) - make ntpstat process first packet in multipacket response - switch to editline - set pool.ntp.org vendor zone in spec (#512711) - compile with -fno-strict-aliasing ntp-4.2.4p7-editline.patch: configure | 8 +++++++- ntpdc/ntpdc.c | 5 ++--- ntpq/ntpq.c | 5 ++--- 3 files changed, 11 insertions(+), 7 deletions(-) --- NEW FILE ntp-4.2.4p7-editline.patch --- diff -up ntp-4.2.4p7/configure.editline ntp-4.2.4p7/configure --- ntp-4.2.4p7/configure.editline 2009-05-18 10:44:23.000000000 +0200 +++ ntp-4.2.4p7/configure 2009-07-20 15:18:48.000000000 +0200 @@ -24614,8 +24614,14 @@ done # following block becomes on 4.2.5: NTP_LINEEDITLIBS +READLINE_LIBS="-ledit" +cat >>confdefs.h <<\_ACEOF +#define HAVE_LIBEDIT +_ACEOF + for ac_header in readline/history.h readline/readline.h do +break as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 @@ -24764,7 +24770,7 @@ fi done case "$ac_cv_header_readline_history_h$ac_cv_header_readline_readline_h" in - *no*) ;; + *) ;; *) save_LIBS=$LIBS LIBS= # Ralf Wildenhues: either unset ... or cache READLINE_LIBS diff -up ntp-4.2.4p7/ntpdc/ntpdc.c.editline ntp-4.2.4p7/ntpdc/ntpdc.c --- ntp-4.2.4p7/ntpdc/ntpdc.c.editline 2009-05-18 10:22:36.000000000 +0200 +++ ntp-4.2.4p7/ntpdc/ntpdc.c 2009-07-20 15:17:25.000000000 +0200 @@ -26,9 +26,8 @@ # define closesocket close #endif /* SYS_WINNT */ -#if defined(HAVE_LIBREADLINE) || defined (HAVE_LIBEDIT) -# include -# include +#if defined (HAVE_LIBEDIT) +# include #endif /* HAVE_LIBREADLINE || HAVE_LIBEDIT */ #ifdef SYS_VXWORKS diff -up ntp-4.2.4p7/ntpq/ntpq.c.editline ntp-4.2.4p7/ntpq/ntpq.c --- ntp-4.2.4p7/ntpq/ntpq.c.editline 2009-05-18 10:22:36.000000000 +0200 +++ ntp-4.2.4p7/ntpq/ntpq.c 2009-07-20 15:17:25.000000000 +0200 @@ -30,9 +30,8 @@ # define closesocket close #endif /* SYS_WINNT */ -#if defined(HAVE_LIBREADLINE) || defined(HAVE_LIBEDIT) -# include -# include +#if defined(HAVE_LIBEDIT) +# include #endif /* HAVE_LIBREADLINE || HAVE_LIBEDIT */ #ifdef SYS_VXWORKS ntp-4.2.4p7-sleep.patch: include/ntp_refclock.h | 1 include/ntp_stdlib.h | 1 include/ntpd.h | 5 +- libntp/authkeys.c | 18 ++++++++ ntpd/ntp_loopfilter.c | 14 +++++- ntpd/ntp_refclock.c | 15 +++++++ ntpd/ntp_timer.c | 53 ++++++++++++++++++++++++-- ntpd/ntpd.c | 99 ++++++++++++++++++++++++++++--------------------- 8 files changed, 158 insertions(+), 48 deletions(-) --- NEW FILE ntp-4.2.4p7-sleep.patch --- diff -up ntp-4.2.4p7/include/ntp_refclock.h.sleep ntp-4.2.4p7/include/ntp_refclock.h --- ntp-4.2.4p7/include/ntp_refclock.h.sleep 2006-06-06 22:16:19.000000000 +0200 +++ ntp-4.2.4p7/include/ntp_refclock.h 2009-07-21 16:38:47.000000000 +0200 @@ -260,6 +260,7 @@ extern void refclock_control P((struct s struct refclockstat *)); extern int refclock_open P((char *, u_int, u_int)); extern int refclock_setup P((int, u_int, u_int)); +extern int refclock_timer_needed P((struct peer *)); extern void refclock_timer P((struct peer *)); extern void refclock_transmit P((struct peer *)); extern int refclock_ioctl P((int, u_int)); diff -up ntp-4.2.4p7/include/ntp_stdlib.h.sleep ntp-4.2.4p7/include/ntp_stdlib.h --- ntp-4.2.4p7/include/ntp_stdlib.h.sleep 2006-12-28 13:03:05.000000000 +0100 +++ ntp-4.2.4p7/include/ntp_stdlib.h 2009-07-21 16:38:47.000000000 +0200 @@ -101,6 +101,7 @@ extern const char * FindConfig P((const extern void signal_no_reset P((int, RETSIGTYPE (*func)(int))); extern void getauthkeys P((const char *)); +extern int auth_agekeys_is_needed P((void)); extern void auth_agekeys P((void)); extern void rereadkeys P((void)); diff -up ntp-4.2.4p7/include/ntpd.h.sleep ntp-4.2.4p7/include/ntpd.h --- ntp-4.2.4p7/include/ntpd.h.sleep 2009-07-21 16:38:47.000000000 +0200 +++ ntp-4.2.4p7/include/ntpd.h 2009-07-21 16:38:47.000000000 +0200 @@ -120,8 +120,10 @@ extern int leap_actual P((int)); /* ntp_loopfilter.c */ extern void init_loopfilter P((void)); extern int local_clock P((struct peer *, double)); -extern void adj_host_clock P((void)); +extern int adj_host_clock_is_needed P((void)); +extern void adj_host_clock P((int)); extern void loop_config P((int, double)); +extern int huffpuff_enabled P((void)); extern void huffpuff P((void)); extern u_long sys_clocktime; extern u_long sys_tai; @@ -221,6 +223,7 @@ extern void hack_restrict P((int, struct /* ntp_timer.c */ extern void init_timer P((void)); extern void reinit_timer P((void)); +extern int when_next_event P((void)); extern void timer P((void)); extern void timer_clr_stats P((void)); extern void timer_interfacetimeout P((u_long)); diff -up ntp-4.2.4p7/libntp/authkeys.c.sleep ntp-4.2.4p7/libntp/authkeys.c --- ntp-4.2.4p7/libntp/authkeys.c.sleep 2004-02-25 06:58:03.000000000 +0100 +++ ntp-4.2.4p7/libntp/authkeys.c 2009-07-21 16:38:47.000000000 +0200 @@ -394,6 +394,24 @@ auth_delkeys(void) } } +int auth_agekeys_is_needed() { + struct savekey *sk; + int i; + + if (authnumkeys > 20) + return 1; + + for (i = 0; i < HASHSIZE; i++) { + sk = key_hash[i]; + while (sk != 0) { + if (sk->lifetime > 0) + return 1; + sk = sk->next; + } + } + return 0; +} + /* * auth_agekeys - delete keys whose lifetimes have expired */ diff -up ntp-4.2.4p7/ntpd/ntp_loopfilter.c.sleep ntp-4.2.4p7/ntpd/ntp_loopfilter.c --- ntp-4.2.4p7/ntpd/ntp_loopfilter.c.sleep 2009-07-21 16:38:47.000000000 +0200 +++ ntp-4.2.4p7/ntpd/ntp_loopfilter.c 2009-07-21 16:38:47.000000000 +0200 @@ -752,6 +752,10 @@ local_clock( #endif /* LOCKCLOCK */ } +int adj_host_clock_is_needed() { + return !(!ntp_enable || mode_ntpdate || (pll_control && + kern_enable)); +} /* * adj_host_clock - Called once every second to update the local clock. @@ -761,7 +765,7 @@ local_clock( */ void adj_host_clock( - void + int time_elapsed ) { double adjustment; @@ -776,7 +780,8 @@ adj_host_clock( * maximum error and the local clock driver will pick it up and * pass to the common refclock routines. Very elegant. */ - sys_rootdispersion += clock_phi; + sys_rootdispersion += clock_phi * time_elapsed; + DPRINTF(2, ("loopfilter: %d\n", time_elapsed)); #ifndef LOCKCLOCK /* @@ -833,6 +838,11 @@ rstclock( } +int huffpuff_enabled() +{ + return sys_huffpuff != NULL; +} + /* * huff-n'-puff filter */ diff -up ntp-4.2.4p7/ntpd/ntp_refclock.c.sleep ntp-4.2.4p7/ntpd/ntp_refclock.c --- ntp-4.2.4p7/ntpd/ntp_refclock.c.sleep 2006-06-06 22:16:43.000000000 +0200 +++ ntp-4.2.4p7/ntpd/ntp_refclock.c 2009-07-21 16:38:47.000000000 +0200 @@ -309,6 +309,21 @@ refclock_unpeer( } +int +refclock_timer_needed( + struct peer *peer /* peer structure pointer */ + ) +{ + u_char clktype; + int unit; + + clktype = peer->refclktype; + unit = peer->refclkunit; + if (refclock_conf[clktype]->clock_timer != noentry) + return 1; + return 0; +} + /* * refclock_timer - called once per second for housekeeping. */ diff -up ntp-4.2.4p7/ntpd/ntp_timer.c.sleep ntp-4.2.4p7/ntpd/ntp_timer.c --- ntp-4.2.4p7/ntpd/ntp_timer.c.sleep 2009-05-12 07:58:55.000000000 +0200 +++ ntp-4.2.4p7/ntpd/ntp_timer.c 2009-07-21 16:38:47.000000000 +0200 @@ -63,6 +63,7 @@ volatile u_long alarm_overflow; #define HOUR (60*60) u_long current_time; +l_fp timer_base; /* * Stats. Number of overflows and number of calls to transmit(). @@ -99,6 +100,8 @@ static RETSIGTYPE alarming P((int)); void reinit_timer(void) { + get_systime(&timer_base); +#if 0 #if !defined(SYS_WINNT) && !defined(VMS) # if defined(HAVE_TIMER_CREATE) && defined(HAVE_TIMER_SETTIME) timer_gettime(ntpd_timerid, &itimer); @@ -132,6 +135,7 @@ reinit_timer(void) setitimer(ITIMER_REAL, &itimer, (struct itimerval *)0); # endif # endif /* VMS */ +#endif } /* @@ -159,6 +163,8 @@ init_timer(void) timer_xmtcalls = 0; timer_timereset = 0; + get_systime(&timer_base); +#if 0 #if !defined(SYS_WINNT) /* * Set up the alarm interrupt. The first comes 2**EVENT_TIMEOUT @@ -242,6 +248,7 @@ init_timer(void) } #endif /* SYS_WINNT */ +#endif } #if defined(SYS_WINNT) @@ -252,6 +259,46 @@ get_timer_handle(void) } #endif +int when_next_event() { + register struct peer *peer, *next_peer; + u_int n; + int next = current_time + HOUR; + + if (adj_host_clock_is_needed()) + return 1; + for (n = 0; n < NTP_HASH_SIZE; n++) { + for (peer = peer_hash[n]; peer != 0; peer = next_peer) { + next_peer = peer->next; +#ifdef REFCLOCK + if (peer->flags & FLAG_REFCLOCK && refclock_timer_needed(peer)) + return 1; +#endif /* REFCLOCK */ + if (peer->action && peer->nextaction < next) + next = peer->nextaction; + if (peer->nextdate < next) + next = peer->nextdate; + } + } + + if (auth_agekeys_is_needed() && keys_timer < next) + next = keys_timer; + if (huffpuff_enabled() && huffpuff_timer < next) + next = huffpuff_timer; +#ifdef OPENSSL + if (revoke_timer < next) + next = revoke_timer; +#endif /* OPENSSL */ + if (interface_interval && interface_timer < next) + next = interface_timer; + if (stats_timer < next) + next = stats_timer; + + next -= current_time; + if (next <= 0) + next = 1; + return next; +} + /* * timer - dispatch anyone who needs to be */ @@ -264,14 +311,12 @@ timer(void) #endif /* OPENSSL */ u_int n; - current_time += (1< 0.0) { struct timeval t1; - t1.tv_sec = 1; t1.tv_usec = 0; + t1.tv_sec = d; + t1.tv_usec = (d - t1.tv_sec) * 1000000; nfound = select(maxactivefd+1, &rdfdes, (fd_set *)0, (fd_set *)0, &t1); + get_systime(&ts); + } else + nfound = 0; + + ts3 = ts; + L_SUB(&ts3, &timer_base); +#ifdef DEBUG + LFPTOD(&ts3, d); + DPRINTF(2, ("main: elapsed %f\n", d)); +#endif + + if (ts3.l_i < 0 || ts3.l_ui > ts2.l_ui + 10) { +#ifdef DEBUG + DPRINTF(2, ("main: unexpected time jump\n")); +#endif + ts3.l_ui = 0; + reinit_timer(); } -# else - nfound = select(maxactivefd+1, &rdfdes, (fd_set *)0, - (fd_set *)0, (struct timeval *)0); -# endif /* VMS */ - if (nfound > 0) - { - l_fp ts; - get_systime(&ts); + time_elapsed += ts3.l_ui; + current_time += ts3.l_ui; + timer_base.l_ui += ts3.l_ui; + if (nfound > 0) + { (void)input_handler(&ts); + ts_last[ts_last_index] = ts; + ts_last_index = (ts_last_index + 1) % TS_LAST_SIZE; } else if (nfound == -1 && errno != EINTR) netsyslog(LOG_ERR, "select() error: %m"); @@ -1050,17 +1083,12 @@ getgroup: netsyslog(LOG_DEBUG, "select(): nfound=%d, error: %m", nfound); # endif /* DEBUG */ # else /* HAVE_SIGNALED_IO */ - +# error not supported wait_for_signal(); # endif /* HAVE_SIGNALED_IO */ - if (alarm_flag) /* alarmed? */ - { - was_alarmed = 1; - alarm_flag = 0; - } } - if (was_alarmed) + if (time_elapsed) { UNBLOCK_IO_AND_ALARM(); /* @@ -1068,7 +1096,7 @@ getgroup: * to process expiry. */ timer(); - was_alarmed = 0; + time_elapsed = 0; BLOCK_IO_AND_ALARM(); } @@ -1086,19 +1114,8 @@ getgroup: rbuf = get_full_recv_buffer(); while (rbuf != NULL) { - if (alarm_flag) - { - was_alarmed = 1; - alarm_flag = 0; - } UNBLOCK_IO_AND_ALARM(); - if (was_alarmed) - { /* avoid timer starvation during lengthy I/O handling */ - timer(); - was_alarmed = 0; - } - /* * Call the data procedure to handle each received * packet. ntpstat-0.2-clksrc.patch: ntpstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE ntpstat-0.2-clksrc.patch --- diff -up ntp-4.2.4p7/ntpstat-0.2/ntpstat.c.ntpstat ntp-4.2.4p7/ntpstat-0.2/ntpstat.c --- ntp-4.2.4p7/ntpstat-0.2/ntpstat.c.ntpstat 2002-06-10 08:02:12.000000000 +0200 +++ ntp-4.2.4p7/ntpstat-0.2/ntpstat.c 2009-07-20 12:22:35.000000000 +0200 @@ -187,7 +187,7 @@ int main (void) { else printf("unknown source"); - if (!strncmp(clksrcname[clksrc],clksrcname[6],sizeof(clksrcname[6]))) { + if (clksrc == 6) { // source of sync is another NTP server so check the IP address strncpy(buff, ntpmsg.payload, sizeof(buff)); if ((newstr = strstr (buff, REFID))) { ntpstat-0.2-multipacket.patch: ntpstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE ntpstat-0.2-multipacket.patch --- diff -up ntp-4.2.4p7/ntpstat-0.2/ntpstat.c.ntpstat ntp-4.2.4p7/ntpstat-0.2/ntpstat.c --- ntp-4.2.4p7/ntpstat-0.2/ntpstat.c.ntpstat 2002-06-10 08:02:12.000000000 +0200 +++ ntp-4.2.4p7/ntpstat-0.2/ntpstat.c 2009-07-20 12:22:35.000000000 +0200 @@ -151,7 +151,7 @@ int main (void) { /* For the reply message to be valid, the first byte should be as sent, and the second byte should be the same, with the response bit set */ byte1ok = ((ntpmsg.byte1&0x3F) == B1VAL); - byte2ok = (ntpmsg.byte2 == (B2VAL|RMASK)); + byte2ok = ((ntpmsg.byte2 & ~MMASK) == (B2VAL|RMASK)); if (!(byte1ok && byte2ok)) { fprintf (stderr,"status word is 0x%02x%02x\n", ntpmsg.byte1,ntpmsg.byte2 ); die ("return data appears to be invalid based on status word"); Index: ntp.conf =================================================================== RCS file: /cvs/pkgs/rpms/ntp/devel/ntp.conf,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ntp.conf 29 Aug 2008 08:26:04 -0000 1.15 +++ ntp.conf 21 Jul 2009 15:55:14 -0000 1.16 @@ -19,9 +19,9 @@ restrict -6 ::1 # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). -server 0.fedora.pool.ntp.org -server 1.fedora.pool.ntp.org -server 2.fedora.pool.ntp.org +server 0.VENDORZONE.pool.ntp.org +server 1.VENDORZONE.pool.ntp.org +server 2.VENDORZONE.pool.ntp.org #broadcast 192.168.1.255 autokey # broadcast server #broadcastclient # broadcast client Index: ntp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntp/devel/ntp.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- ntp.spec 28 May 2009 18:49:30 -0000 1.91 +++ ntp.spec 21 Jul 2009 15:55:14 -0000 1.92 @@ -1,19 +1,19 @@ Summary: The NTP daemon and utilities Name: ntp Version: 4.2.4p7 -Release: 2%{?dist} +Release: 3%{?dist} # primary license (COPYRIGHT) : MIT # ElectricFence/ (not used) : GPLv2 # kernel/sys/ppsclock.h (not used) : BSD with advertising # include/ntif.h (not used) : BSD -# include/rsa_md5.h (replaced) : BSD with advertising -# include/ntp_rfc2553.h (replaced) : BSD with advertising +# include/rsa_md5.h : BSD with advertising +# include/ntp_rfc2553.h : BSD with advertising # libisc/inet_aton.c (not used) : BSD with advertising -# libntp/md5c.c (replaced) : BSD with advertising -# libntp/mktime.c (replaced) : BSD with advertising -# libntp/ntp_random.c (replaced) : BSD with advertising -# libntp/memmove.c (replaced) : BSD with advertising -# libntp/ntp_rfc2553.c (replaced) : BSD with advertising +# libntp/md5c.c : BSD with advertising +# libntp/mktime.c : BSD with advertising +# libntp/ntp_random.c : BSD with advertising +# libntp/memmove.c : BSD with advertising +# libntp/ntp_rfc2553.c : BSD with advertising # libntp/adjtimex.c (not used) : BSD # libopts/ : BSD or GPLv2+ # libparse/ : BSD @@ -26,7 +26,7 @@ Release: 2%{?dist} # ntpstat-0.2/ : GPLv2 # util/ansi2knr.c (not used) : GPL+ # sntp/ (not packaged) : MSNTP -License: (MIT and BSD and BSD with advertising) and (MIT and BSD) and GPLv2 +License: (MIT and BSD and BSD with advertising) and GPLv2 Group: System Environment/Daemons Source0: http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-%{version}.tar.gz Source1: ntp.conf @@ -64,8 +64,8 @@ Patch10: ntp-4.2.4p5-htmldoc.patch Patch11: ntp-4.2.4p2-filegen.patch # ntpbz #738 Patch12: ntp-4.2.4-sprintf.patch -# drop this and switch to libedit in 4.2.6 -Patch13: ntp-4.2.4p4-bsdadv.patch +# use editline instead of readline +Patch13: ntp-4.2.4p7-editline.patch # add option -m to lock memory Patch14: ntp-4.2.4p7-mlock.patch # fixed in 4.2.5 @@ -73,7 +73,7 @@ Patch15: ntp-4.2.4p2-clockselect.patch # don't build sntp Patch16: ntp-4.2.4p7-nosntp.patch # ntpbz #802 -Patch17: ntp-4.2.4p5-sleep.patch +Patch17: ntp-4.2.4p7-sleep.patch # ntpbz #779, #823 Patch18: ntp-4.2.4p7-bcast.patch # ntpbz #759 @@ -100,15 +100,17 @@ Patch28: ntp-4.2.4p7-nano.patch Patch29: ntp-4.2.4p7-minpoll.patch # fix frequency mode, backported from 4.2.5 Patch30: ntp-4.2.4p7-freqmode.patch +# handle unknown clock types +Patch31: ntpstat-0.2-clksrc.patch +# process first packet in multipacket response +Patch32: ntpstat-0.2-multipacket.patch URL: http://www.ntp.org Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig /sbin/service Requires(postun): /sbin/service Requires: ntpdate = %{version}-%{release} -# Require libreadline linked with libtinfo -Requires: readline >= 5.2-3 -BuildRequires: libcap-devel openssl-devel readline-devel perl-HTML-Parser +BuildRequires: libcap-devel openssl-devel libedit-devel perl-HTML-Parser BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -151,6 +153,12 @@ This package contains NTP documentation %define ntpdocdir %{_datadir}/doc/%{name}-%{version} +# pool.ntp.org vendor zone which will be used in ntp.conf +%if 0%{!?vendorzone:1} +%{?fedora: %define vendorzone fedora.} +%{?rhel: %define vendorzone rhel.} +%endif + %prep %setup -q -a 5 @@ -165,6 +173,7 @@ This package contains NTP documentation %patch10 -p1 -b .htmldoc %patch11 -p1 -b .filegen %patch12 -p1 -b .sprintf +%patch13 -p1 -b .editline %patch14 -p1 -b .mlock %patch15 -p1 -b .clockselect %patch16 -p1 -b .nosntp @@ -181,6 +190,8 @@ This package contains NTP documentation %patch28 -p1 -b .nano %patch29 -p1 -b .minpoll %patch30 -p1 -b .freqmode +%patch31 -p1 -b .clksrc +%patch32 -p1 -b .multipacket # clock_gettime needs -lrt sed -i.gettime 's|^LIBS = @LIBS@|& -lrt|' ntp{d,q,dc,date}/Makefile.in @@ -190,20 +201,12 @@ sed -i.gettime 's|^LIBS = @LIBS@|& -lrt| %patch5 -p1 -b .linkfastmath %endif -# replace BSD with advertising code in ntp{dc,q} to allow linking with readline -for f in include/{ntp_rfc2553,rsa_md5}.h \ - libntp/{mktime,memmove,md5c,ntp_rfc2553,ntp_random}.c -do rm -f $f; touch $f; done -ln -sf md5.h include/rsa_md5.h -ln -sf md5.c libntp/md5c.c -%patch13 -p1 -b .bsdadv - for f in COPYRIGHT; do iconv -f iso8859-1 -t utf8 -o ${f}{_,} && touch -r ${f}{,_} && mv -f ${f}{_,} done %build -export CFLAGS="$RPM_OPT_FLAGS" +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" if echo 'int main () { return 0; }' | gcc -pie -fPIE -O2 -xc - -o pietest 2>/dev/null; then ./pietest && export CFLAGS="$CFLAGS -pie -fPIE" rm -f pietest @@ -260,7 +263,9 @@ pushd $RPM_BUILD_ROOT mkdir -p .%{_sysconfdir}/{ntp/crypto,sysconfig,dhcp/dhclient.d} .%{_initrddir} mkdir -p .%{_localstatedir}/{lib/ntp,log/ntpstats} touch .%{_localstatedir}/lib/ntp/drift -sed -e 's|ETCNTP|%{_sysconfdir}/ntp|' -e 's|VARNTP|%{_localstatedir}/lib/ntp|' \ +sed -e 's|VENDORZONE\.|%{vendorzone}|' \ + -e 's|ETCNTP|%{_sysconfdir}/ntp|' \ + -e 's|VARNTP|%{_localstatedir}/lib/ntp|' \ < %{SOURCE1} > .%{_sysconfdir}/ntp.conf touch -r %{SOURCE1} .%{_sysconfdir}/ntp.conf install -p -m600 %{SOURCE2} .%{_sysconfdir}/ntp/keys @@ -360,6 +365,15 @@ fi %{ntpdocdir}/html %changelog +* Tue Jul 21 2009 Miroslav Lichvar 4.2.4p7-3 +- handle system time jumps better +- don't wake up every second for refclocks without timer +- don't crash in ntpstat when unknown clock type is received (#505564) +- make ntpstat process first packet in multipacket response +- switch to editline +- set pool.ntp.org vendor zone in spec (#512711) +- compile with -fno-strict-aliasing + * Thu May 28 2009 Miroslav Lichvar 4.2.4p7-2 - fix frequency calculation when starting with no drift file - reduce phase adjustments beyond Allan intercept in daemon PLL --- ntp-4.2.4p4-bsdadv.patch DELETED --- --- ntp-4.2.4p5-sleep.patch DELETED --- From awjb at fedoraproject.org Tue Jul 21 16:00:18 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 16:00:18 +0000 (UTC) Subject: rpms/librapi/devel .cvsignore, 1.6, 1.7 librapi.spec, 1.10, 1.11 sources, 1.6, 1.7 Message-ID: <20090721160018.2764311C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19082/devel Modified Files: .cvsignore librapi.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librapi/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 10:15:16 -0000 1.6 +++ .cvsignore 21 Jul 2009 16:00:17 -0000 1.7 @@ -1 +1 @@ -librapi2-0.13.1.tar.gz +librapi2-0.14.tar.gz Index: librapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/librapi/devel/librapi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- librapi.spec 25 Feb 2009 17:41:15 -0000 1.10 +++ librapi.spec 21 Jul 2009 16:00:17 -0000 1.11 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librapi -Version: 0.13.1 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Library to connect to Pocket PC devices Group: System Environment/Libraries @@ -11,8 +11,10 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librapi2-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 BuildRequires: Pyrex +BuildRequires: dbus-devel dbus-glib-devel +BuildRequires: hal-devel # Provide an upgrade path from the monilithic synce package Provides: synce = %{version}-%{release} @@ -91,6 +93,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librapi/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 10:15:16 -0000 1.6 +++ sources 21 Jul 2009 16:00:17 -0000 1.7 @@ -1 +1 @@ -f44ca31d8a8cd44e9eb517b35ed87419 librapi2-0.13.1.tar.gz +cffa19b32817db211ee21e1ac7c7eb5f librapi2-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 16:00:47 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 16:00:47 +0000 (UTC) Subject: rpms/librapi/F-10 .cvsignore, 1.6, 1.7 librapi.spec, 1.8, 1.9 sources, 1.6, 1.7 Message-ID: <20090721160047.387C911C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librapi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19082/F-10 Modified Files: .cvsignore librapi.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 10:15:15 -0000 1.6 +++ .cvsignore 21 Jul 2009 16:00:16 -0000 1.7 @@ -1 +1 @@ -librapi2-0.13.1.tar.gz +librapi2-0.14.tar.gz Index: librapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-10/librapi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- librapi.spec 8 Feb 2009 10:15:15 -0000 1.8 +++ librapi.spec 21 Jul 2009 16:00:16 -0000 1.9 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librapi -Version: 0.13.1 +Version: 0.14 Release: 1%{?dist} Summary: Library to connect to Pocket PC devices @@ -11,8 +11,10 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librapi2-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 BuildRequires: Pyrex +BuildRequires: dbus-devel dbus-glib-devel +BuildRequires: hal-devel # Provide an upgrade path from the monilithic synce package Provides: synce = %{version}-%{release} @@ -91,6 +93,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13.1-1 - version upgrade (#457949) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 10:15:15 -0000 1.6 +++ sources 21 Jul 2009 16:00:16 -0000 1.7 @@ -1 +1 @@ -f44ca31d8a8cd44e9eb517b35ed87419 librapi2-0.13.1.tar.gz +cffa19b32817db211ee21e1ac7c7eb5f librapi2-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 16:00:47 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 16:00:47 +0000 (UTC) Subject: rpms/librapi/F-11 .cvsignore, 1.6, 1.7 librapi.spec, 1.10, 1.11 sources, 1.6, 1.7 Message-ID: <20090721160047.C3A3F11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librapi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19082/F-11 Modified Files: .cvsignore librapi.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 8 Feb 2009 10:15:16 -0000 1.6 +++ .cvsignore 21 Jul 2009 16:00:17 -0000 1.7 @@ -1 +1 @@ -librapi2-0.13.1.tar.gz +librapi2-0.14.tar.gz Index: librapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-11/librapi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- librapi.spec 25 Feb 2009 17:41:15 -0000 1.10 +++ librapi.spec 21 Jul 2009 16:00:17 -0000 1.11 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librapi -Version: 0.13.1 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Library to connect to Pocket PC devices Group: System Environment/Libraries @@ -11,8 +11,10 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librapi2-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 BuildRequires: Pyrex +BuildRequires: dbus-devel dbus-glib-devel +BuildRequires: hal-devel # Provide an upgrade path from the monilithic synce package Provides: synce = %{version}-%{release} @@ -91,6 +93,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librapi/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 8 Feb 2009 10:15:16 -0000 1.6 +++ sources 21 Jul 2009 16:00:17 -0000 1.7 @@ -1 +1 @@ -f44ca31d8a8cd44e9eb517b35ed87419 librapi2-0.13.1.tar.gz +cffa19b32817db211ee21e1ac7c7eb5f librapi2-0.14.tar.gz From hadess at fedoraproject.org Tue Jul 21 16:11:29 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 16:11:29 +0000 (UTC) Subject: rpms/gnome-bluetooth/devel .cvsignore, 1.17, 1.18 gnome-bluetooth.spec, 1.81, 1.82 sources, 1.18, 1.19 Message-ID: <20090721161129.D849911C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-bluetooth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23993 Modified Files: .cvsignore gnome-bluetooth.spec sources Log Message: * Tue Jul 21 2009 Bastien Nocera 2.27.8-1 - Update to 2.27.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 25 Jun 2009 17:18:01 -0000 1.17 +++ .cvsignore 21 Jul 2009 16:11:29 -0000 1.18 @@ -1 +1 @@ -gnome-bluetooth-2.27.7.1.tar.bz2 +gnome-bluetooth-2.27.8.tar.bz2 Index: gnome-bluetooth.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/devel/gnome-bluetooth.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- gnome-bluetooth.spec 25 Jun 2009 17:18:01 -0000 1.81 +++ gnome-bluetooth.spec 21 Jul 2009 16:11:29 -0000 1.82 @@ -1,5 +1,5 @@ Name: gnome-bluetooth -Version: 2.27.7.1 +Version: 2.27.8 Release: 1%{?dist} Summary: Bluetooth graphical utilities @@ -185,6 +185,9 @@ fi %{_datadir}/gtk-doc/html/gnome-bluetooth/ %changelog +* Tue Jul 21 2009 Bastien Nocera 2.27.8-1 +- Update to 2.27.8 + * Thu Jun 25 2009 Bastien Nocera 2.27.7.1-1 - Update to 2.27.7.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 25 Jun 2009 17:18:01 -0000 1.18 +++ sources 21 Jul 2009 16:11:29 -0000 1.19 @@ -1 +1 @@ -4d95a0d2ebe4495fc4bd9af59e791f7e gnome-bluetooth-2.27.7.1.tar.bz2 +c82f33830c279e36a71c896be99a8035 gnome-bluetooth-2.27.8.tar.bz2 From jreznik at fedoraproject.org Tue Jul 21 16:12:29 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Tue, 21 Jul 2009 16:12:29 +0000 (UTC) Subject: rpms/arora/devel arora-0.8.0-fedorahome.patch, NONE, 1.1 arora-0.8.0-gitversion.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 arora.spec, 1.15, 1.16 sources, 1.8, 1.9 arora-0.6-fedorahome.patch, 1.1, NONE arora-0.7.1-gitversion.patch, 1.1, NONE Message-ID: <20090721161229.D329E11C005E@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/arora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24225 Modified Files: .cvsignore arora.spec sources Added Files: arora-0.8.0-fedorahome.patch arora-0.8.0-gitversion.patch Removed Files: arora-0.6-fedorahome.patch arora-0.7.1-gitversion.patch Log Message: * Tue Tue 21 2009 Jaroslav Reznik - 0.8.0-1 - Update to 0.8.0 - Removed custom arora.xml arora-0.8.0-fedorahome.patch: browsermainwindow.cpp | 2 +- settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE arora-0.8.0-fedorahome.patch --- diff -up arora-0.8.0/src/browsermainwindow.cpp.fedorahome arora-0.8.0/src/browsermainwindow.cpp --- arora-0.8.0/src/browsermainwindow.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/browsermainwindow.cpp 2009-07-21 18:03:47.990573142 +0200 @@ -1328,7 +1328,7 @@ void BrowserMainWindow::goHome() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString home = settings.value(QLatin1String("home"), QLatin1String("about:home")).toString(); + QString home = settings.value(QLatin1String("home"), QLatin1String("http://start.fedoraproject.org/")).toString(); tabWidget()->loadString(home); } diff -up arora-0.8.0/src/settings.cpp.fedorahome arora-0.8.0/src/settings.cpp --- arora-0.8.0/src/settings.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/settings.cpp 2009-07-21 18:04:14.597573494 +0200 @@ -135,7 +135,7 @@ void SettingsDialog::loadFromSettings() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString defaultHome = QLatin1String("about:home"); + QString defaultHome = QLatin1String("http://start.fedoraproject.org/"); homeLineEdit->setText(settings.value(QLatin1String("home"), defaultHome).toString()); startupBehavior->setCurrentIndex(settings.value(QLatin1String("startupBehavior"), 0).toInt()); settings.endGroup(); arora-0.8.0-gitversion.patch: src.pri | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) --- NEW FILE arora-0.8.0-gitversion.patch --- diff -up arora-0.7.1/src/src.pri.gitversion arora-0.7.1/src/src.pri --- arora-0.7.1/src/src.pri.gitversion 2009-05-29 22:45:15.000000000 +0200 +++ arora-0.7.1/src/src.pri 2009-06-01 11:03:26.000000000 +0200 @@ -9,27 +9,8 @@ DEPENDPATH += $$PWD QT += webkit network -win32 { - DEFINES += GITVERSION=0 - DEFINES += GITCHANGENUMBER=0 -} -!win32 { - exists($$PWD/../.git/HEAD) { - # Share object files for faster compiling - RCC_DIR = $$PWD/.rcc - UI_DIR = $$PWD/.ui - MOC_DIR = $$PWD/.moc - OBJECTS_DIR = $$PWD/.obj - - GITVERSION=$$system(git log -n1 --pretty=format:%h) - DEFINES += GITVERSION=\"\\\"$$GITVERSION\\\"\" - GITCHANGENUMBER=$$system(git log --pretty=format:%h | wc -l) - DEFINES += GITCHANGENUMBER=\"\\\"$$GITCHANGENUMBER\\\"\" - } else { - DEFINES += GITVERSION=\"\\\"0\\\"\" - DEFINES += GITCHANGENUMBER=\"\\\"0\\\"\" - } -} +DEFINES += GITVERSION=\"\\\"b158ec3\\\"\" +DEFINES += GITCHANGENUMBER=\"\\\"1059\\\"\" FORMS += \ aboutdialog.ui \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 1 Jun 2009 09:11:15 -0000 1.8 +++ .cvsignore 21 Jul 2009 16:11:59 -0000 1.9 @@ -1 +1 @@ -arora-0.7.1.tar.gz +arora-0.8.0.tar.gz Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/arora.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- arora.spec 16 Jul 2009 11:42:25 -0000 1.15 +++ arora.spec 21 Jul 2009 16:11:59 -0000 1.16 @@ -1,20 +1,21 @@ Name: arora -Version: 0.7.1 -Release: 3%{?dist} +Version: 0.8.0 +Release: 1%{?dist} Summary: A cross platform web browser Group: Applications/Internet License: GPLv2+ URL: http://code.google.com/p/arora/ Source0: http://arora.googlecode.com/files/%{name}-%{version}.tar.gz -Source1: arora.xml -Patch0: arora-0.7.1-gitversion.patch +Patch0: arora-0.8.0-gitversion.patch Patch1: arora-0.6-fedorabookmarks.patch -Patch2: arora-0.6-fedorahome.patch +Patch2: arora-0.8.0-fedorahome.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: qt-devel >= 4.4.0 +# for gnome default app path +BuildRequires: control-center-devel %description @@ -52,8 +53,6 @@ desktop-file-install --vendor fedora \ --delete-original\ $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -install -p -m 0644 -D %{SOURCE1} $RPM_BUILD_ROOT/%{_datadir}/gnome-control-center/default-apps/arora.xml - %clean rm -rf $RPM_BUILD_ROOT @@ -73,7 +72,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/scalable/apps/arora.svg %{_datadir}/arora %{_datadir}/pixmaps/arora.xpm -%{_datadir}/man/man1/arora.1.gz +%{_datadir}/man/man1 %files gnome %defattr(-,root,root,-) @@ -81,6 +80,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Tue 21 2009 Jaroslav Reznik - 0.8.0-1 +- Update to 0.8.0 +- Removed custom arora.xml + * Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 - Arora-gnome subpackage now requires Arora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 1 Jun 2009 09:11:15 -0000 1.8 +++ sources 21 Jul 2009 16:11:59 -0000 1.9 @@ -1 +1 @@ -3ae2cc30424a91b7e7bb2ccdee404911 arora-0.7.1.tar.gz +f8c9a12cadbed8c85e8396db2ee62b8c arora-0.8.0.tar.gz --- arora-0.6-fedorahome.patch DELETED --- --- arora-0.7.1-gitversion.patch DELETED --- From jreznik at fedoraproject.org Tue Jul 21 16:15:19 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Tue, 21 Jul 2009 16:15:19 +0000 (UTC) Subject: rpms/arora/devel arora.spec,1.16,1.17 Message-ID: <20090721161519.9DA0411C005E@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/arora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25295 Modified Files: arora.spec Log Message: Fixed date Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/arora.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- arora.spec 21 Jul 2009 16:11:59 -0000 1.16 +++ arora.spec 21 Jul 2009 16:14:49 -0000 1.17 @@ -80,7 +80,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Tue 21 2009 Jaroslav Reznik - 0.8.0-1 +* Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 - Update to 0.8.0 - Removed custom arora.xml From dledford at fedoraproject.org Tue Jul 21 16:28:05 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 16:28:05 +0000 (UTC) Subject: rpms/openmpi/F-11 openmpi.module.in,1.5,1.6 openmpi.spec,1.36,1.37 Message-ID: <20090721162805.B317B11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29901 Modified Files: openmpi.module.in openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-2 - Add MPI_BIN and MPI_LIB to the modules file (related bz511099) Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.module.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openmpi.module.in 21 Jul 2009 15:13:00 -0000 1.5 +++ openmpi.module.in 21 Jul 2009 16:28:05 -0000 1.6 @@ -6,3 +6,5 @@ prepend-path PATH @LIBDIR@/@MPIDIR@/ prepend-path LD_LIBRARY_PATH @LIBDIR@/@MPIDIR@/lib setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/include @MODEFLAG@" setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" +setenv MPI_BIN @LIBDIR@/@MPIDIR@/bin +setenv MPI_LIB @LIBDIR@/@MPIDIR@/lib Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- openmpi.spec 21 Jul 2009 15:28:08 -0000 1.36 +++ openmpi.spec 21 Jul 2009 16:28:05 -0000 1.37 @@ -18,7 +18,7 @@ Name: openmpi%{?cc_name_suffix} Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -183,6 +183,9 @@ rm -rf %{buildroot} %{_libdir}/%{mpidir}/share/vampirtrace/* %changelog +* Tue Jul 21 2009 Doug Ledford - 1.3.3-2 +- Add MPI_BIN and MPI_LIB to the modules file (related bz511099) + * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) From dledford at fedoraproject.org Tue Jul 21 16:29:17 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 16:29:17 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.module.in, 1.5, 1.6 openmpi.spec, 1.38, 1.39 Message-ID: <20090721162917.2E78A11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30266 Modified Files: openmpi.module.in openmpi.spec Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-2 - Add MPI_BIN and MPI_LIB to the modules file (related bz511099) Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.module.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openmpi.module.in 21 Jul 2009 15:08:21 -0000 1.5 +++ openmpi.module.in 21 Jul 2009 16:28:46 -0000 1.6 @@ -6,3 +6,5 @@ prepend-path PATH @LIBDIR@/@MPIDIR@/ prepend-path LD_LIBRARY_PATH @LIBDIR@/@MPIDIR@/lib setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/include @MODEFLAG@" setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" +setenv MPI_BIN @LIBDIR@/@MPIDIR@/bin +setenv MPI_LIB @LIBDIR@/@MPIDIR@/lib Index: openmpi.spec =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- openmpi.spec 21 Jul 2009 15:28:00 -0000 1.38 +++ openmpi.spec 21 Jul 2009 16:28:46 -0000 1.39 @@ -18,7 +18,7 @@ Name: openmpi%{?cc_name_suffix} Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -183,6 +183,9 @@ rm -rf %{buildroot} %{_libdir}/%{mpidir}/share/vampirtrace/* %changelog +* Tue Jul 21 2009 Doug Ledford - 1.3.3-2 +- Add MPI_BIN and MPI_LIB to the modules file (related bz511099) + * Tue Jul 21 2009 Doug Ledford - 1.3.3-1 - Make sure all created dirs are owned (bz474677) - Fix loading of pkgconfig file (bz476844) From caolanm at fedoraproject.org Tue Jul 21 16:32:19 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Tue, 21 Jul 2009 16:32:19 +0000 (UTC) Subject: rpms/pcmanx-gtk2/devel pcmanx-gtk2-0.3.8-xulrunner.patch, 1.1, 1.2 pcmanx-gtk2.spec, 1.12, 1.13 Message-ID: <20090721163219.3518211C005E@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/pcmanx-gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31626 Modified Files: pcmanx-gtk2-0.3.8-xulrunner.patch pcmanx-gtk2.spec Log Message: Resolves: rhbz#511615 FTBFS pcmanx-gtk2-0.3.8-xulrunner.patch: np_entry.cpp | 1 npn_gate.cpp | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---- npp_gate.cpp | 16 +++--- npplat.h | 6 +- pluginbase.h | 16 +++--- 5 files changed, 165 insertions(+), 26 deletions(-) Index: pcmanx-gtk2-0.3.8-xulrunner.patch =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/devel/pcmanx-gtk2-0.3.8-xulrunner.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pcmanx-gtk2-0.3.8-xulrunner.patch 7 Jan 2009 21:44:34 -0000 1.1 +++ pcmanx-gtk2-0.3.8-xulrunner.patch 21 Jul 2009 16:32:18 -0000 1.2 @@ -12,7 +12,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np diff -up pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp.xul pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp --- pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp.xul 2008-08-10 09:06:29.000000000 +0200 +++ pcmanx-gtk2-0.3.8/plugin/src/npn_gate.cpp 2009-01-07 22:36:21.000000000 +0100 -@@ -42,6 +42,126 @@ +@@ -42,6 +42,138 @@ // #include "npplat.h" @@ -133,13 +133,25 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np +#define CallNPN_ForceRedrawProc(FUNC, ARG1) \ + (*(FUNC))((ARG1)) + ++typedef JRIEnv* (* NP_LOADDS NPN_GetJavaEnvUPP)(void); ++#define NewNPN_GetJavaEnvProc(FUNC) \ ++ ((NPN_GetJavaEnvUPP) (FUNC)) ++#define CallNPN_GetJavaEnvProc(FUNC) \ ++ (*(FUNC))() ++ ++typedef jref (* NP_LOADDS NPN_GetJavaPeerUPP)(NPP instance); ++#define NewNPN_GetJavaPeerProc(FUNC) \ ++ ((NPN_GetJavaPeerUPP) (FUNC)) ++#define CallNPN_GetJavaPeerProc(FUNC, ARG1) \ ++ (*(FUNC))((ARG1)) ++ +// ------------------------------------------------ + + extern NPNetscapeFuncs NPNFuncs; void NPN_Version(int* plugin_major, int* plugin_minor, int* netscape_major, int* netscape_minor) -@@ -71,7 +191,7 @@ NPError NPN_GetURL(NPP instance, const c +@@ -71,7 +203,7 @@ return rv; } @@ -148,7 +160,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { int navMinorVers = NPNFuncs.version & 0xFF; NPError rv = NPERR_NO_ERROR; -@@ -84,7 +204,7 @@ NPError NPN_PostURLNotify(NPP instance, +@@ -84,7 +216,7 @@ return rv; } @@ -157,7 +169,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { NPError rv = CallNPN_PostURLProc(NPNFuncs.posturl, instance, url, window, len, buf, file); return rv; -@@ -110,10 +230,10 @@ NPError NPN_NewStream(NPP instance, NPMI +@@ -110,10 +242,10 @@ return rv; } @@ -170,7 +182,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) rv = CallNPN_WriteProc(NPNFuncs.write, instance, stream, len, buffer); -@@ -143,12 +263,12 @@ void NPN_Status(NPP instance, const char +@@ -143,12 +275,12 @@ const char* NPN_UserAgent(NPP instance) { @@ -185,7 +197,7 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np { void * rv = NULL; rv = CallNPN_MemAllocProc(NPNFuncs.memalloc, size); -@@ -160,9 +280,9 @@ void NPN_MemFree(void* ptr) +@@ -160,9 +292,9 @@ CallNPN_MemFreeProc(NPNFuncs.memfree, ptr); } @@ -197,6 +209,23 @@ diff -up pcmanx-gtk2-0.3.8/plugin/src/np return rv; } +@@ -175,14 +307,14 @@ + JRIEnv* NPN_GetJavaEnv(void) + { + JRIEnv * rv = NULL; +- rv = CallNPN_GetJavaEnvProc(NPNFuncs.getJavaEnv); ++ rv = (JRIEnv*)CallNPN_GetJavaEnvProc(NPNFuncs.getJavaEnv); + return rv; + } + + jref NPN_GetJavaPeer(NPP instance) + { + jref rv; +- rv = CallNPN_GetJavaPeerProc(NPNFuncs.getJavaPeer, instance); ++ rv = (jref)CallNPN_GetJavaPeerProc(NPNFuncs.getJavaPeer, instance); + return rv; + } + #endif diff -up pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp.xul pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp --- pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp.xul 2008-08-10 09:06:29.000000000 +0200 +++ pcmanx-gtk2-0.3.8/plugin/src/npp_gate.cpp 2009-01-07 22:36:21.000000000 +0100 Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/devel/pcmanx-gtk2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pcmanx-gtk2.spec 20 Jul 2009 09:19:49 -0000 1.12 +++ pcmanx-gtk2.spec 21 Jul 2009 16:32:18 -0000 1.13 @@ -7,7 +7,7 @@ Summary: Telnet client designed for BBS browsing Name: pcmanx-gtk2 Version: 0.3.8 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://pcmanx.csie.net/release/%{name}-%{version}.tar.bz2 @@ -60,16 +60,9 @@ webpage in the browser window. %patch4 -p1 -b .includes ######################################################################## -# automake 1.10 fails without config.rpath. # Check the following code and see if it can be removed. - for f in `ls -d %{_datadir}/automake-1.* | sort -g -k 2 -t .` ; do - automakever=`echo $f | sed -e 's|%{_datadir}/automake-||'` - done - eval %{__sed} -i.orig -e \'s\|-1\\\.9\|-$automakever\|\' autogen.sh - %{__sed} -i -e 's|set -x|set -e -x|' autogen.sh - - touch config.rpath + %{__sed} -i -e 's/AM_VERSION=-1.10/AM_VERSION=-1.11/' autogen.sh ######################################################################## %build @@ -128,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mozilla/plugins/ %changelog +* Tue Jul 21 2009 Caol?n McNamara - 0.3.8-7 +- Resolves: rhbz#511615 FTBFS + * Mon Jul 20 2009 Jan Horak - 0.3.8-6 - Rebuild against newer gecko From hadess at fedoraproject.org Tue Jul 21 16:34:47 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 16:34:47 +0000 (UTC) Subject: rpms/gnome-bluetooth/F-11 .cvsignore, 1.16, 1.17 gnome-bluetooth.spec, 1.81, 1.82 sources, 1.17, 1.18 Message-ID: <20090721163447.E8A1E11C005E@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-bluetooth/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32752 Modified Files: .cvsignore gnome-bluetooth.spec sources Log Message: * Tue Jul 21 2009 Bastien Nocera 2.27.8-1 - Update to 2.27.8 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 25 Jun 2009 17:20:06 -0000 1.16 +++ .cvsignore 21 Jul 2009 16:34:17 -0000 1.17 @@ -1 +1 @@ -gnome-bluetooth-2.27.7.1.tar.bz2 +gnome-bluetooth-2.27.8.tar.bz2 Index: gnome-bluetooth.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/F-11/gnome-bluetooth.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- gnome-bluetooth.spec 25 Jun 2009 17:27:12 -0000 1.81 +++ gnome-bluetooth.spec 21 Jul 2009 16:34:17 -0000 1.82 @@ -1,5 +1,5 @@ Name: gnome-bluetooth -Version: 2.27.7.1 +Version: 2.27.8 Release: 1%{?dist} Summary: Bluetooth graphical utilities @@ -185,6 +185,9 @@ fi %{_datadir}/gtk-doc/html/gnome-bluetooth/ %changelog +* Tue Jul 21 2009 Bastien Nocera 2.27.8-1 +- Update to 2.27.8 + * Thu Jun 25 2009 Bastien Nocera 2.27.7.1-1 - Update to 2.27.7.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 25 Jun 2009 17:20:06 -0000 1.17 +++ sources 21 Jul 2009 16:34:17 -0000 1.18 @@ -1 +1 @@ -4d95a0d2ebe4495fc4bd9af59e791f7e gnome-bluetooth-2.27.7.1.tar.bz2 +c82f33830c279e36a71c896be99a8035 gnome-bluetooth-2.27.8.tar.bz2 From dledford at fedoraproject.org Tue Jul 21 16:36:59 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 16:36:59 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.module.in,1.6,1.7 Message-ID: <20090721163659.7288811C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1118 Modified Files: openmpi.module.in Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-2 - Add MPI_BIN and MPI_LIB to the modules file (related bz511099) Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/devel/openmpi.module.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- openmpi.module.in 21 Jul 2009 16:28:46 -0000 1.6 +++ openmpi.module.in 21 Jul 2009 16:36:29 -0000 1.7 @@ -8,3 +8,4 @@ setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/in setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" setenv MPI_BIN @LIBDIR@/@MPIDIR@/bin setenv MPI_LIB @LIBDIR@/@MPIDIR@/lib +setenv MPI_HOME @LIBDIR@/@MPIDIR@ From dledford at fedoraproject.org Tue Jul 21 16:37:01 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 16:37:01 +0000 (UTC) Subject: rpms/openmpi/F-11 openmpi.module.in,1.6,1.7 Message-ID: <20090721163701.B0DCF11C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/openmpi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1155 Modified Files: openmpi.module.in Log Message: * Tue Jul 21 2009 Doug Ledford - 1.3.3-2 - Add MPI_BIN and MPI_LIB to the modules file (related bz511099) Index: openmpi.module.in =================================================================== RCS file: /cvs/extras/rpms/openmpi/F-11/openmpi.module.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- openmpi.module.in 21 Jul 2009 16:28:05 -0000 1.6 +++ openmpi.module.in 21 Jul 2009 16:36:31 -0000 1.7 @@ -8,3 +8,4 @@ setenv CFLAGS "-I at LIBDIR@/@MPIDIR@/in setenv LDFLAGS "-L at LIBDIR@/@MPIDIR@/lib -lmpi" setenv MPI_BIN @LIBDIR@/@MPIDIR@/bin setenv MPI_LIB @LIBDIR@/@MPIDIR@/lib +setenv MPI_HOME @LIBDIR@/@MPIDIR@ From gerd at fedoraproject.org Tue Jul 21 16:47:02 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Tue, 21 Jul 2009 16:47:02 +0000 (UTC) Subject: rpms/parrot/F-9 parrot-1.x.0.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 parrot.spec, 1.1, 1.2 sources, 1.2, 1.3 parrot-1.0.0-rpath-removal.patch, 1.1, NONE parrot-install_files.patch, 1.1, NONE Message-ID: <20090721164702.6979811C005E@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5332/F-9 Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-1.x.0.patch Removed Files: parrot-1.0.0-rpath-removal.patch parrot-install_files.patch Log Message: parrot-1.x.0.patch: MANIFEST.generated | 3 ++- lib/Parrot/Install.pm | 10 ++++++++++ tools/dev/install_dev_files.pl | 1 - tools/dev/install_files.pl | 3 +-- 4 files changed, 13 insertions(+), 4 deletions(-) --- NEW FILE parrot-1.x.0.patch --- --- tools/dev/install_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_files.pl 2009-06-02 16:12:00.000000000 +0200 @@ -133,7 +133,6 @@ transform => sub { my($filehash) = @_; $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, @@ -157,7 +156,7 @@ # libdir as it is typically done with automake installed packages. # If there is a use case to make this configurable we'll add a # seperate --pkgconfigdir option. - $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; + $filehash->{DestDirs} = ['pkgconfig']; return($filehash); }, }, --- tools/dev/install_dev_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_dev_files.pl 2009-06-02 16:19:07.000000000 +0200 @@ -124,7 +124,6 @@ my($filehash) = @_; $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, --- lib/Parrot/Install.pm 2009-06-01 09:29:57.000000000 +0200 +++ lib/Parrot/Install.pm 2009-06-03 08:41:22.000000000 +0200 @@ -220,6 +220,16 @@ else { next unless -e $src; next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not + if (-l $src) { + # check if the system supports symbolic linking + use Config; + if ($Config{d_symlink} && $Config{d_readlink}) { + # copy as symbolic link + symlink(readlink($src), $dest); + print "$dest\n"; + next; + } + } copy( $src, $dest ) or die "Error: couldn't copy $src to $dest: $!\n"; print "$dest\n"; } --- MANIFEST.generated 2009-07-14 23:49:14.000000000 +0200 +++ MANIFEST.generated.new 2009-07-17 13:39:08.000000000 +0200 @@ -241,5 +241,6 @@ src/pmc/sub.dump [devel]src src/pmc/undef.dump [devel]src src/string_private_cstring.h [] -tools/build/dynpmc.pl [] +tools/build/dynoplibs.pl [devel] +tools/build/dynpmc.pl [devel] vtable.dump [devel]src Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 11:05:56 -0000 1.2 +++ .cvsignore 21 Jul 2009 16:46:31 -0000 1.3 @@ -1 +1 @@ -parrot-1.0.0.tar.gz +parrot-1.4.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Apr 2009 11:05:56 -0000 1.1 +++ import.log 21 Jul 2009 16:46:31 -0000 1.2 @@ -1 +1,2 @@ parrot-1_0_0-6_fc10:F-9:parrot-1.0.0-6.fc10.src.rpm:1241002909 +parrot-1_4_0-1_fc11:F-9:parrot-1.4.0-1.fc11.src.rpm:1248194441 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/parrot.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parrot.spec 29 Apr 2009 11:05:56 -0000 1.1 +++ parrot.spec 21 Jul 2009 16:46:32 -0000 1.2 @@ -1,19 +1,29 @@ Name: parrot -Version: 1.0.0 -Release: 6%{?dist} +Version: 1.4.0 +Release: 1%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ -Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz -# Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to +Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz + +Patch0: parrot-1.x.0.patch +# see for upstream: https://trac.parrot.org/parrot/ticket/735 +# patched files: tools/dev/install_files.pl +# tools/dev/install_dev_files.pl +# Changes the path for header files (to have no version subdirectory) +# It is also responsible to have no subdirectory under pkgconfig. +# +# see for upstream: https://trac.parrot.org/parrot/ticket/509 +# patched file: lib/Parrot/Install.pm +# is to have the symlink: libparrot.so -> libparrot.so.%{version} +# Without this %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} -# Symlink: libparrot.so -> libparrot.so.%{version} -# See for upstream: https://trac.parrot.org/parrot/ticket/509 -# Extended for the package to have no subdirectory under pkgconfig -Patch0: parrot-install_files.patch -Patch1: parrot-1.0.0-rpath-removal.patch +# +# see for upstream: https://trac.parrot.org/parrot/ticket/844 +# patched file: MANIFEST.generated +# Add two perl-srcipts that are need to build Rakudo BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel @@ -25,6 +35,7 @@ BuildRequires: perl(Test::Harness) BuildRequires: perl(Test::Simple) BuildRequires: ctags BuildRequires: openssl-devel +BuildRequires: flex %package docs @@ -32,6 +43,9 @@ Summary: Parrot Virtual Machine d Group: Documentation Requires: perl(strict) Requires: perl(warnings) +BuildArch: noarch + +#-- %package devel Summary: Parrot Virtual Machine development headers and libraries @@ -39,6 +53,8 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig +#-- + %package tools Summary: Parrot Virtual Machine development for languages Group: Development/Libraries @@ -51,25 +67,32 @@ Provides: perl(Parrot::Pmc2c::Meth Provides: perl(Parrot::Pmc2c::PCCMETHOD_BITS) = %{version} Provides: perl(Parrot::Pmc2c::PMCEmitter) = %{version} + %description Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Parrot is the target for Rakudo Perl 6, as well as variety of other languages. +#-- + %description docs Documentation in text-, POD- and HTML-format (docs/html-subdirectory) and also examples about the Parrot Virtual Machine. +#-- + %description devel Parrot Virtual Machine development headers and libraries. +#-- + %description tools Parrot Virtual Machine development files for building languages. + %prep %setup -q %patch0 -p0 -%patch1 -b .rpatch %{__perl} -pi -e 's,"lib/,"%{_lib}/, if (/CONST_STRING\(interp,/)' \ src/library.c @@ -105,6 +128,7 @@ chmod +x %{__perl_provides} --cxx=%{__cxx} \ --optimize="$RPM_OPT_FLAGS" \ --parrot_is_shared \ + --disable-rpath \ --lex=%{_bindir}/flex \ --yacc=%{_bindir}/yacc \ --libs='-lcurses -lm' @@ -157,6 +181,9 @@ find %{RPM_PAR_LIB_DIR}tools -type f -na find %{RPM_PAR_LIB_DIR}tools/dev -type f -name "pbc_to_exe.pir" \ -exec %{__sed} -i -e '1 s&#! parrot&#!/usr/bin/parrot&' {} \; \ -exec chmod 755 {} \; +# Set path to perl binary +find %{RPM_PAR_LIB_DIR}tools/build -type f -name "dyn*.pl" \ + -exec %{__sed} -i -e '1 s&# ex: set ro:&#!/usr/bin/perl&' {} \; # This module is only needed for building and should not be installed (I think) # module "Parrot::OpLib::core" rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parrot/OpLib @@ -165,6 +192,8 @@ rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parro find docs/html -type f -size 0 -exec rm -f {} \; # Set path for installed programs in docs package +find examples/json -type f -name "*.pir" \ + -exec %{__sed} -i -e '1 s&#!../../parrot&#!/usr/bin/parrot&' {} \; find examples -type f -name "*.pl" \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; find examples -wholename 'examples/pir/befunge/t/basic.t' \ @@ -189,7 +218,7 @@ find examples -wholename 'examples/langu find examples/languages -type f -name harness \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; -for file in docs/book/ch09_pct.pod docs/memory_internals.pod; do +for file in docs/book/draft/ch05_pge.pod docs/memory_internals.pod; do %{__mv} $file timestamp iconv -f ISO-8859-1 -t UTF-8 -o $file timestamp touch -r timestamp $file @@ -243,6 +272,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pbc_to_exe %{_bindir}/pbc_dump %{_includedir}/parrot +%{_includedir}/pmc %{_libdir}/libparrot.so %exclude %{_libdir}/libparrot.a %{_libdir}/pkgconfig/* @@ -256,6 +286,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 +- add the new disable-rpath configure option + * Thu Apr 23 2009 Gerd Pokorra 1.0.0-6 - add a list of changes from Lubomir Rintel - add patch to remove rpath @@ -298,30 +331,18 @@ rm -rf $RPM_BUILD_ROOT - added make html - make reallyinstall => make install -* Tue Jan 20 2009 chromatic 0.9.0 -- updated to 0.9.0 - * Tue Dec 16 2008 Whiteknight 0.8.2 - updated to 0.8.2 -* Tue Nov 18 2008 chromatic 0.8.1 -- updated to 0.8.1 - * Tue Oct 21 2008 particle 0.8.0 - updated to 0.8.0 -* Tue Sep 16 2008 pmichaud 0.7.1 -- updated to 0.7.1 - * Wed Sep 3 2008 chromatic 0.7.0 - install parrot_config (not parrot-config) * Tue Jun 17 2008 Nuno Carvalho 0.6.3 - updated to 0.6.3 -* Tue May 20 2008 chromatic > 0.6.2 -- updated to 0.6.2 - * Mon Apr 28 2008 chromatic 0.6.1 - minor fixes; tested with Fedora 7, 8, and 9-beta @@ -337,27 +358,12 @@ rm -rf $RPM_BUILD_ROOT * Tue Dec 18 2007 Jonathan Worthington 0.5.1 - Update to 0.5.1. -* Tue Nov 20 2007 chromatic 0.5.0 -- Update to 0.5.0. - -* Fri May 25 2007 David Fetter 0.4.12-1 -- Update to 0.4.12. - -* Wed Apr 18 2007 Steven Pritchard 0.4.11-1 -- Update to 0.4.11. - -* Wed Mar 21 2007 Steven Pritchard 0.4.10-1 -- Update to 0.4.10. - * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. - BR ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. -* Wed Jan 17 2007 Steven Pritchard 0.4.8-1 -- Attempt update to 0.4.8. - * Fri Jun 30 2006 Steven Pritchard 0.4.5-5 - Override lib_dir and make various substitutions to try to fix multilib. - Remove rpath use from Makefile. @@ -377,8 +383,5 @@ rm -rf $RPM_BUILD_ROOT - Add -lcurses to get readline detection to work. - BR libicu-devel. -* Tue Jun 27 2006 Steven Pritchard 0.4.5-1 -- Initial packaging attempt. - * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 11:05:56 -0000 1.2 +++ sources 21 Jul 2009 16:46:32 -0000 1.3 @@ -1 +1 @@ -649ce1fb7c0edaf89dc1cd52ff267b1a parrot-1.0.0.tar.gz +3f66816c0f2ba18bdd2cf7bedd59f045 parrot-1.4.0.tar.gz --- parrot-1.0.0-rpath-removal.patch DELETED --- --- parrot-install_files.patch DELETED --- From gerd at fedoraproject.org Tue Jul 21 16:49:22 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Tue, 21 Jul 2009 16:49:22 +0000 (UTC) Subject: rpms/parrot/F-10 parrot-1.x.0.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 parrot.spec, 1.1, 1.2 sources, 1.2, 1.3 parrot-1.0.0-rpath-removal.patch, 1.1, NONE parrot-install_files.patch, 1.1, NONE Message-ID: <20090721164922.7E62B11C005E@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6466/F-10 Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-1.x.0.patch Removed Files: parrot-1.0.0-rpath-removal.patch parrot-install_files.patch Log Message: parrot-1.x.0.patch: MANIFEST.generated | 3 ++- lib/Parrot/Install.pm | 10 ++++++++++ tools/dev/install_dev_files.pl | 1 - tools/dev/install_files.pl | 3 +-- 4 files changed, 13 insertions(+), 4 deletions(-) --- NEW FILE parrot-1.x.0.patch --- --- tools/dev/install_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_files.pl 2009-06-02 16:12:00.000000000 +0200 @@ -133,7 +133,6 @@ transform => sub { my($filehash) = @_; $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, @@ -157,7 +156,7 @@ # libdir as it is typically done with automake installed packages. # If there is a use case to make this configurable we'll add a # seperate --pkgconfigdir option. - $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; + $filehash->{DestDirs} = ['pkgconfig']; return($filehash); }, }, --- tools/dev/install_dev_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_dev_files.pl 2009-06-02 16:19:07.000000000 +0200 @@ -124,7 +124,6 @@ my($filehash) = @_; $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, --- lib/Parrot/Install.pm 2009-06-01 09:29:57.000000000 +0200 +++ lib/Parrot/Install.pm 2009-06-03 08:41:22.000000000 +0200 @@ -220,6 +220,16 @@ else { next unless -e $src; next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not + if (-l $src) { + # check if the system supports symbolic linking + use Config; + if ($Config{d_symlink} && $Config{d_readlink}) { + # copy as symbolic link + symlink(readlink($src), $dest); + print "$dest\n"; + next; + } + } copy( $src, $dest ) or die "Error: couldn't copy $src to $dest: $!\n"; print "$dest\n"; } --- MANIFEST.generated 2009-07-14 23:49:14.000000000 +0200 +++ MANIFEST.generated.new 2009-07-17 13:39:08.000000000 +0200 @@ -241,5 +241,6 @@ src/pmc/sub.dump [devel]src src/pmc/undef.dump [devel]src src/string_private_cstring.h [] -tools/build/dynpmc.pl [] +tools/build/dynoplibs.pl [devel] +tools/build/dynpmc.pl [devel] vtable.dump [devel]src Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 11:11:20 -0000 1.2 +++ .cvsignore 21 Jul 2009 16:48:52 -0000 1.3 @@ -1 +1 @@ -parrot-1.0.0.tar.gz +parrot-1.4.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Apr 2009 11:11:20 -0000 1.1 +++ import.log 21 Jul 2009 16:48:52 -0000 1.2 @@ -1 +1,2 @@ parrot-1_0_0-6_fc10:F-10:parrot-1.0.0-6.fc10.src.rpm:1241003119 +parrot-1_4_0-1_fc11:F-10:parrot-1.4.0-1.fc11.src.rpm:1248194576 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/parrot.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parrot.spec 29 Apr 2009 11:11:20 -0000 1.1 +++ parrot.spec 21 Jul 2009 16:48:52 -0000 1.2 @@ -1,19 +1,29 @@ Name: parrot -Version: 1.0.0 -Release: 6%{?dist} +Version: 1.4.0 +Release: 1%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ -Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz -# Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to +Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz + +Patch0: parrot-1.x.0.patch +# see for upstream: https://trac.parrot.org/parrot/ticket/735 +# patched files: tools/dev/install_files.pl +# tools/dev/install_dev_files.pl +# Changes the path for header files (to have no version subdirectory) +# It is also responsible to have no subdirectory under pkgconfig. +# +# see for upstream: https://trac.parrot.org/parrot/ticket/509 +# patched file: lib/Parrot/Install.pm +# is to have the symlink: libparrot.so -> libparrot.so.%{version} +# Without this %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} -# Symlink: libparrot.so -> libparrot.so.%{version} -# See for upstream: https://trac.parrot.org/parrot/ticket/509 -# Extended for the package to have no subdirectory under pkgconfig -Patch0: parrot-install_files.patch -Patch1: parrot-1.0.0-rpath-removal.patch +# +# see for upstream: https://trac.parrot.org/parrot/ticket/844 +# patched file: MANIFEST.generated +# Add two perl-srcipts that are need to build Rakudo BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel @@ -25,6 +35,7 @@ BuildRequires: perl(Test::Harness) BuildRequires: perl(Test::Simple) BuildRequires: ctags BuildRequires: openssl-devel +BuildRequires: flex %package docs @@ -32,6 +43,9 @@ Summary: Parrot Virtual Machine d Group: Documentation Requires: perl(strict) Requires: perl(warnings) +BuildArch: noarch + +#-- %package devel Summary: Parrot Virtual Machine development headers and libraries @@ -39,6 +53,8 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig +#-- + %package tools Summary: Parrot Virtual Machine development for languages Group: Development/Libraries @@ -51,25 +67,32 @@ Provides: perl(Parrot::Pmc2c::Meth Provides: perl(Parrot::Pmc2c::PCCMETHOD_BITS) = %{version} Provides: perl(Parrot::Pmc2c::PMCEmitter) = %{version} + %description Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Parrot is the target for Rakudo Perl 6, as well as variety of other languages. +#-- + %description docs Documentation in text-, POD- and HTML-format (docs/html-subdirectory) and also examples about the Parrot Virtual Machine. +#-- + %description devel Parrot Virtual Machine development headers and libraries. +#-- + %description tools Parrot Virtual Machine development files for building languages. + %prep %setup -q %patch0 -p0 -%patch1 -b .rpatch %{__perl} -pi -e 's,"lib/,"%{_lib}/, if (/CONST_STRING\(interp,/)' \ src/library.c @@ -105,6 +128,7 @@ chmod +x %{__perl_provides} --cxx=%{__cxx} \ --optimize="$RPM_OPT_FLAGS" \ --parrot_is_shared \ + --disable-rpath \ --lex=%{_bindir}/flex \ --yacc=%{_bindir}/yacc \ --libs='-lcurses -lm' @@ -157,6 +181,9 @@ find %{RPM_PAR_LIB_DIR}tools -type f -na find %{RPM_PAR_LIB_DIR}tools/dev -type f -name "pbc_to_exe.pir" \ -exec %{__sed} -i -e '1 s&#! parrot&#!/usr/bin/parrot&' {} \; \ -exec chmod 755 {} \; +# Set path to perl binary +find %{RPM_PAR_LIB_DIR}tools/build -type f -name "dyn*.pl" \ + -exec %{__sed} -i -e '1 s&# ex: set ro:&#!/usr/bin/perl&' {} \; # This module is only needed for building and should not be installed (I think) # module "Parrot::OpLib::core" rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parrot/OpLib @@ -165,6 +192,8 @@ rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parro find docs/html -type f -size 0 -exec rm -f {} \; # Set path for installed programs in docs package +find examples/json -type f -name "*.pir" \ + -exec %{__sed} -i -e '1 s&#!../../parrot&#!/usr/bin/parrot&' {} \; find examples -type f -name "*.pl" \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; find examples -wholename 'examples/pir/befunge/t/basic.t' \ @@ -189,7 +218,7 @@ find examples -wholename 'examples/langu find examples/languages -type f -name harness \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; -for file in docs/book/ch09_pct.pod docs/memory_internals.pod; do +for file in docs/book/draft/ch05_pge.pod docs/memory_internals.pod; do %{__mv} $file timestamp iconv -f ISO-8859-1 -t UTF-8 -o $file timestamp touch -r timestamp $file @@ -243,6 +272,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pbc_to_exe %{_bindir}/pbc_dump %{_includedir}/parrot +%{_includedir}/pmc %{_libdir}/libparrot.so %exclude %{_libdir}/libparrot.a %{_libdir}/pkgconfig/* @@ -256,6 +286,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 +- add the new disable-rpath configure option + * Thu Apr 23 2009 Gerd Pokorra 1.0.0-6 - add a list of changes from Lubomir Rintel - add patch to remove rpath @@ -298,30 +331,18 @@ rm -rf $RPM_BUILD_ROOT - added make html - make reallyinstall => make install -* Tue Jan 20 2009 chromatic 0.9.0 -- updated to 0.9.0 - * Tue Dec 16 2008 Whiteknight 0.8.2 - updated to 0.8.2 -* Tue Nov 18 2008 chromatic 0.8.1 -- updated to 0.8.1 - * Tue Oct 21 2008 particle 0.8.0 - updated to 0.8.0 -* Tue Sep 16 2008 pmichaud 0.7.1 -- updated to 0.7.1 - * Wed Sep 3 2008 chromatic 0.7.0 - install parrot_config (not parrot-config) * Tue Jun 17 2008 Nuno Carvalho 0.6.3 - updated to 0.6.3 -* Tue May 20 2008 chromatic > 0.6.2 -- updated to 0.6.2 - * Mon Apr 28 2008 chromatic 0.6.1 - minor fixes; tested with Fedora 7, 8, and 9-beta @@ -337,27 +358,12 @@ rm -rf $RPM_BUILD_ROOT * Tue Dec 18 2007 Jonathan Worthington 0.5.1 - Update to 0.5.1. -* Tue Nov 20 2007 chromatic 0.5.0 -- Update to 0.5.0. - -* Fri May 25 2007 David Fetter 0.4.12-1 -- Update to 0.4.12. - -* Wed Apr 18 2007 Steven Pritchard 0.4.11-1 -- Update to 0.4.11. - -* Wed Mar 21 2007 Steven Pritchard 0.4.10-1 -- Update to 0.4.10. - * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. - BR ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. -* Wed Jan 17 2007 Steven Pritchard 0.4.8-1 -- Attempt update to 0.4.8. - * Fri Jun 30 2006 Steven Pritchard 0.4.5-5 - Override lib_dir and make various substitutions to try to fix multilib. - Remove rpath use from Makefile. @@ -377,8 +383,5 @@ rm -rf $RPM_BUILD_ROOT - Add -lcurses to get readline detection to work. - BR libicu-devel. -* Tue Jun 27 2006 Steven Pritchard 0.4.5-1 -- Initial packaging attempt. - * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 11:11:20 -0000 1.2 +++ sources 21 Jul 2009 16:48:52 -0000 1.3 @@ -1 +1 @@ -649ce1fb7c0edaf89dc1cd52ff267b1a parrot-1.0.0.tar.gz +3f66816c0f2ba18bdd2cf7bedd59f045 parrot-1.4.0.tar.gz --- parrot-1.0.0-rpath-removal.patch DELETED --- --- parrot-install_files.patch DELETED --- From gerd at fedoraproject.org Tue Jul 21 16:51:42 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Tue, 21 Jul 2009 16:51:42 +0000 (UTC) Subject: rpms/parrot/F-11 parrot-1.x.0.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 parrot.spec, 1.1, 1.2 sources, 1.2, 1.3 parrot-1.0.0-rpath-removal.patch, 1.1, NONE parrot-install_files.patch, 1.1, NONE Message-ID: <20090721165142.1437A11C005E@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7349/F-11 Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-1.x.0.patch Removed Files: parrot-1.0.0-rpath-removal.patch parrot-install_files.patch Log Message: parrot-1.x.0.patch: MANIFEST.generated | 3 ++- lib/Parrot/Install.pm | 10 ++++++++++ tools/dev/install_dev_files.pl | 1 - tools/dev/install_files.pl | 3 +-- 4 files changed, 13 insertions(+), 4 deletions(-) --- NEW FILE parrot-1.x.0.patch --- --- tools/dev/install_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_files.pl 2009-06-02 16:12:00.000000000 +0200 @@ -133,7 +133,6 @@ transform => sub { my($filehash) = @_; $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, @@ -157,7 +156,7 @@ # libdir as it is typically done with automake installed packages. # If there is a use case to make this configurable we'll add a # seperate --pkgconfigdir option. - $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; + $filehash->{DestDirs} = ['pkgconfig']; return($filehash); }, }, --- tools/dev/install_dev_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_dev_files.pl 2009-06-02 16:19:07.000000000 +0200 @@ -124,7 +124,6 @@ my($filehash) = @_; $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, --- lib/Parrot/Install.pm 2009-06-01 09:29:57.000000000 +0200 +++ lib/Parrot/Install.pm 2009-06-03 08:41:22.000000000 +0200 @@ -220,6 +220,16 @@ else { next unless -e $src; next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not + if (-l $src) { + # check if the system supports symbolic linking + use Config; + if ($Config{d_symlink} && $Config{d_readlink}) { + # copy as symbolic link + symlink(readlink($src), $dest); + print "$dest\n"; + next; + } + } copy( $src, $dest ) or die "Error: couldn't copy $src to $dest: $!\n"; print "$dest\n"; } --- MANIFEST.generated 2009-07-14 23:49:14.000000000 +0200 +++ MANIFEST.generated.new 2009-07-17 13:39:08.000000000 +0200 @@ -241,5 +241,6 @@ src/pmc/sub.dump [devel]src src/pmc/undef.dump [devel]src src/string_private_cstring.h [] -tools/build/dynpmc.pl [] +tools/build/dynoplibs.pl [devel] +tools/build/dynpmc.pl [devel] vtable.dump [devel]src Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Apr 2009 11:13:44 -0000 1.2 +++ .cvsignore 21 Jul 2009 16:51:41 -0000 1.3 @@ -1 +1 @@ -parrot-1.0.0.tar.gz +parrot-1.4.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 29 Apr 2009 11:13:45 -0000 1.1 +++ import.log 21 Jul 2009 16:51:41 -0000 1.2 @@ -1 +1,2 @@ parrot-1_0_0-6_fc10:F-11:parrot-1.0.0-6.fc10.src.rpm:1241003453 +parrot-1_4_0-1_fc11:F-11:parrot-1.4.0-1.fc11.src.rpm:1248194723 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/parrot.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parrot.spec 29 Apr 2009 11:13:45 -0000 1.1 +++ parrot.spec 21 Jul 2009 16:51:41 -0000 1.2 @@ -1,19 +1,29 @@ Name: parrot -Version: 1.0.0 -Release: 6%{?dist} +Version: 1.4.0 +Release: 1%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ -Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz -# Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to +Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz + +Patch0: parrot-1.x.0.patch +# see for upstream: https://trac.parrot.org/parrot/ticket/735 +# patched files: tools/dev/install_files.pl +# tools/dev/install_dev_files.pl +# Changes the path for header files (to have no version subdirectory) +# It is also responsible to have no subdirectory under pkgconfig. +# +# see for upstream: https://trac.parrot.org/parrot/ticket/509 +# patched file: lib/Parrot/Install.pm +# is to have the symlink: libparrot.so -> libparrot.so.%{version} +# Without this %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} -# Symlink: libparrot.so -> libparrot.so.%{version} -# See for upstream: https://trac.parrot.org/parrot/ticket/509 -# Extended for the package to have no subdirectory under pkgconfig -Patch0: parrot-install_files.patch -Patch1: parrot-1.0.0-rpath-removal.patch +# +# see for upstream: https://trac.parrot.org/parrot/ticket/844 +# patched file: MANIFEST.generated +# Add two perl-srcipts that are need to build Rakudo BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel @@ -25,6 +35,7 @@ BuildRequires: perl(Test::Harness) BuildRequires: perl(Test::Simple) BuildRequires: ctags BuildRequires: openssl-devel +BuildRequires: flex %package docs @@ -32,6 +43,9 @@ Summary: Parrot Virtual Machine d Group: Documentation Requires: perl(strict) Requires: perl(warnings) +BuildArch: noarch + +#-- %package devel Summary: Parrot Virtual Machine development headers and libraries @@ -39,6 +53,8 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig +#-- + %package tools Summary: Parrot Virtual Machine development for languages Group: Development/Libraries @@ -51,25 +67,32 @@ Provides: perl(Parrot::Pmc2c::Meth Provides: perl(Parrot::Pmc2c::PCCMETHOD_BITS) = %{version} Provides: perl(Parrot::Pmc2c::PMCEmitter) = %{version} + %description Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Parrot is the target for Rakudo Perl 6, as well as variety of other languages. +#-- + %description docs Documentation in text-, POD- and HTML-format (docs/html-subdirectory) and also examples about the Parrot Virtual Machine. +#-- + %description devel Parrot Virtual Machine development headers and libraries. +#-- + %description tools Parrot Virtual Machine development files for building languages. + %prep %setup -q %patch0 -p0 -%patch1 -b .rpatch %{__perl} -pi -e 's,"lib/,"%{_lib}/, if (/CONST_STRING\(interp,/)' \ src/library.c @@ -105,6 +128,7 @@ chmod +x %{__perl_provides} --cxx=%{__cxx} \ --optimize="$RPM_OPT_FLAGS" \ --parrot_is_shared \ + --disable-rpath \ --lex=%{_bindir}/flex \ --yacc=%{_bindir}/yacc \ --libs='-lcurses -lm' @@ -157,6 +181,9 @@ find %{RPM_PAR_LIB_DIR}tools -type f -na find %{RPM_PAR_LIB_DIR}tools/dev -type f -name "pbc_to_exe.pir" \ -exec %{__sed} -i -e '1 s&#! parrot&#!/usr/bin/parrot&' {} \; \ -exec chmod 755 {} \; +# Set path to perl binary +find %{RPM_PAR_LIB_DIR}tools/build -type f -name "dyn*.pl" \ + -exec %{__sed} -i -e '1 s&# ex: set ro:&#!/usr/bin/perl&' {} \; # This module is only needed for building and should not be installed (I think) # module "Parrot::OpLib::core" rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parrot/OpLib @@ -165,6 +192,8 @@ rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parro find docs/html -type f -size 0 -exec rm -f {} \; # Set path for installed programs in docs package +find examples/json -type f -name "*.pir" \ + -exec %{__sed} -i -e '1 s&#!../../parrot&#!/usr/bin/parrot&' {} \; find examples -type f -name "*.pl" \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; find examples -wholename 'examples/pir/befunge/t/basic.t' \ @@ -189,7 +218,7 @@ find examples -wholename 'examples/langu find examples/languages -type f -name harness \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; -for file in docs/book/ch09_pct.pod docs/memory_internals.pod; do +for file in docs/book/draft/ch05_pge.pod docs/memory_internals.pod; do %{__mv} $file timestamp iconv -f ISO-8859-1 -t UTF-8 -o $file timestamp touch -r timestamp $file @@ -243,6 +272,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pbc_to_exe %{_bindir}/pbc_dump %{_includedir}/parrot +%{_includedir}/pmc %{_libdir}/libparrot.so %exclude %{_libdir}/libparrot.a %{_libdir}/pkgconfig/* @@ -256,6 +286,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 +- add the new disable-rpath configure option + * Thu Apr 23 2009 Gerd Pokorra 1.0.0-6 - add a list of changes from Lubomir Rintel - add patch to remove rpath @@ -298,30 +331,18 @@ rm -rf $RPM_BUILD_ROOT - added make html - make reallyinstall => make install -* Tue Jan 20 2009 chromatic 0.9.0 -- updated to 0.9.0 - * Tue Dec 16 2008 Whiteknight 0.8.2 - updated to 0.8.2 -* Tue Nov 18 2008 chromatic 0.8.1 -- updated to 0.8.1 - * Tue Oct 21 2008 particle 0.8.0 - updated to 0.8.0 -* Tue Sep 16 2008 pmichaud 0.7.1 -- updated to 0.7.1 - * Wed Sep 3 2008 chromatic 0.7.0 - install parrot_config (not parrot-config) * Tue Jun 17 2008 Nuno Carvalho 0.6.3 - updated to 0.6.3 -* Tue May 20 2008 chromatic > 0.6.2 -- updated to 0.6.2 - * Mon Apr 28 2008 chromatic 0.6.1 - minor fixes; tested with Fedora 7, 8, and 9-beta @@ -337,27 +358,12 @@ rm -rf $RPM_BUILD_ROOT * Tue Dec 18 2007 Jonathan Worthington 0.5.1 - Update to 0.5.1. -* Tue Nov 20 2007 chromatic 0.5.0 -- Update to 0.5.0. - -* Fri May 25 2007 David Fetter 0.4.12-1 -- Update to 0.4.12. - -* Wed Apr 18 2007 Steven Pritchard 0.4.11-1 -- Update to 0.4.11. - -* Wed Mar 21 2007 Steven Pritchard 0.4.10-1 -- Update to 0.4.10. - * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. - BR ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. -* Wed Jan 17 2007 Steven Pritchard 0.4.8-1 -- Attempt update to 0.4.8. - * Fri Jun 30 2006 Steven Pritchard 0.4.5-5 - Override lib_dir and make various substitutions to try to fix multilib. - Remove rpath use from Makefile. @@ -377,8 +383,5 @@ rm -rf $RPM_BUILD_ROOT - Add -lcurses to get readline detection to work. - BR libicu-devel. -* Tue Jun 27 2006 Steven Pritchard 0.4.5-1 -- Initial packaging attempt. - * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Apr 2009 11:13:45 -0000 1.2 +++ sources 21 Jul 2009 16:51:41 -0000 1.3 @@ -1 +1 @@ -649ce1fb7c0edaf89dc1cd52ff267b1a parrot-1.0.0.tar.gz +3f66816c0f2ba18bdd2cf7bedd59f045 parrot-1.4.0.tar.gz --- parrot-1.0.0-rpath-removal.patch DELETED --- --- parrot-install_files.patch DELETED --- From jakub at fedoraproject.org Tue Jul 21 16:53:03 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 21 Jul 2009 16:53:03 +0000 (UTC) Subject: rpms/gcc/devel gcc.spec,1.52,1.53 Message-ID: <20090721165303.8356611C005E@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8277 Modified Files: gcc.spec Log Message: joe Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- gcc.spec 17 Jul 2009 11:26:30 -0000 1.52 +++ gcc.spec 21 Jul 2009 16:52:33 -0000 1.53 @@ -1,9 +1,9 @@ -%global DATE 20090717 -%global SVNREV 149742 +%global DATE 20090721 +%global SVNREV 149860 %global gcc_version 4.4.0 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 14 +%global gcc_release 15 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -160,6 +160,7 @@ Patch28: gcc44-pr38757.patch Patch29: gcc44-libstdc++-docs.patch Patch30: gcc44-rh503816-1.patch Patch31: gcc44-rh503816-2.patch +Patch32: gcc44-pr40811.patch Patch1000: fastjar-0.97-segfault.patch @@ -469,6 +470,7 @@ which are required to compile with the G %endif %patch30 -p0 -b .rh503816-1~ %patch31 -p0 -b .rh503816-2~ +%patch32 -p0 -b .pr40811~ # This testcase doesn't compile. rm libjava/testsuite/libjava.lang/PR35020* @@ -1807,6 +1809,16 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Tue Jul 21 2009 Jakub Jelinek 4.4.0-15 +- update from gcc-4_4-branch + - PRs libfortran/40714, target/39943, target/40809, tree-optimization/40792 + - fix ICE in gsi_insert_seq_nodes_after (#505798, + PR tree-optimization/40813) +- slightly relax -D_FORTIFY_SOURCE=2 rules for flexible-array-member like + constructs (#512689, #511573) +- vectorize unsigned int -> {float,double} conversions on x86/x86_64 + (PR target/40811) + * Fri Jul 17 2009 Jakub Jelinek 4.4.0-14 - update from gcc-4_4-branch - PRs c++/40740, libstdc++/40691, middle-end/40747 From gerd at fedoraproject.org Tue Jul 21 16:55:03 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Tue, 21 Jul 2009 16:55:03 +0000 (UTC) Subject: rpms/parrot/devel parrot-1.x.0.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 import.log, 1.4, 1.5 parrot.spec, 1.4, 1.5 sources, 1.5, 1.6 parrot-inst_files.patch, 1.1, NONE Message-ID: <20090721165503.CADF911C005E@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9172/devel Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-1.x.0.patch Removed Files: parrot-inst_files.patch Log Message: parrot-1.x.0.patch: MANIFEST.generated | 3 ++- lib/Parrot/Install.pm | 10 ++++++++++ tools/dev/install_dev_files.pl | 1 - tools/dev/install_files.pl | 3 +-- 4 files changed, 13 insertions(+), 4 deletions(-) --- NEW FILE parrot-1.x.0.patch --- --- tools/dev/install_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_files.pl 2009-06-02 16:12:00.000000000 +0200 @@ -133,7 +133,6 @@ transform => sub { my($filehash) = @_; $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, @@ -157,7 +156,7 @@ # libdir as it is typically done with automake installed packages. # If there is a use case to make this configurable we'll add a # seperate --pkgconfigdir option. - $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; + $filehash->{DestDirs} = ['pkgconfig']; return($filehash); }, }, --- tools/dev/install_dev_files.pl 2009-06-01 09:29:54.000000000 +0200 +++ tools/dev/install_dev_files.pl 2009-06-02 16:19:07.000000000 +0200 @@ -124,7 +124,6 @@ my($filehash) = @_; $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir $filehash->{Dest} =~ s/^include//; - $filehash->{DestDirs} = [$parrotdir]; return($filehash); }, }, --- lib/Parrot/Install.pm 2009-06-01 09:29:57.000000000 +0200 +++ lib/Parrot/Install.pm 2009-06-03 08:41:22.000000000 +0200 @@ -220,6 +220,16 @@ else { next unless -e $src; next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not + if (-l $src) { + # check if the system supports symbolic linking + use Config; + if ($Config{d_symlink} && $Config{d_readlink}) { + # copy as symbolic link + symlink(readlink($src), $dest); + print "$dest\n"; + next; + } + } copy( $src, $dest ) or die "Error: couldn't copy $src to $dest: $!\n"; print "$dest\n"; } --- MANIFEST.generated 2009-07-14 23:49:14.000000000 +0200 +++ MANIFEST.generated.new 2009-07-17 13:39:08.000000000 +0200 @@ -241,5 +241,6 @@ src/pmc/sub.dump [devel]src src/pmc/undef.dump [devel]src src/string_private_cstring.h [] -tools/build/dynpmc.pl [] +tools/build/dynoplibs.pl [devel] +tools/build/dynpmc.pl [devel] vtable.dump [devel]src Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 6 Jul 2009 11:57:06 -0000 1.5 +++ .cvsignore 21 Jul 2009 16:54:33 -0000 1.6 @@ -1 +1 @@ -parrot-1.3.0.tar.gz +parrot-1.4.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 6 Jul 2009 11:57:06 -0000 1.4 +++ import.log 21 Jul 2009 16:54:33 -0000 1.5 @@ -2,3 +2,4 @@ parrot-1_0_0-6_fc10:HEAD:parrot-1.0.0-6. parrot-1_1_0-1_38922svn_fc10:HEAD:parrot-1.1.0-1.38922svn.fc10.src.rpm:1242718694 parrot-1_2_0-1_fc11:HEAD:parrot-1.2.0-1.fc11.src.rpm:1243357683 parrot-1_3_0-1_39897svn_fc10:HEAD:parrot-1.3.0-1.39897svn.fc10.src.rpm:1246881189 +parrot-1_4_0-1_fc11:HEAD:parrot-1.4.0-1.fc11.src.rpm:1248194953 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/parrot.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- parrot.spec 6 Jul 2009 11:57:06 -0000 1.4 +++ parrot.spec 21 Jul 2009 16:54:33 -0000 1.5 @@ -1,20 +1,29 @@ Name: parrot -Version: 1.3.0 -Release: 1.39897svn%{?dist} +Version: 1.4.0 +Release: 1%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz -#Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz -# Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to + +Patch0: parrot-1.x.0.patch +# see for upstream: https://trac.parrot.org/parrot/ticket/735 +# patched files: tools/dev/install_files.pl +# tools/dev/install_dev_files.pl +# Changes the path for header files (to have no version subdirectory) +# It is also responsible to have no subdirectory under pkgconfig. +# +# see for upstream: https://trac.parrot.org/parrot/ticket/509 +# patched file: lib/Parrot/Install.pm +# is to have the symlink: libparrot.so -> libparrot.so.%{version} +# Without this %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} -# Symlink: libparrot.so -> libparrot.so.%{version} -# See for upstream: https://trac.parrot.org/parrot/ticket/509 -# Extended for the package to have no subdirectory under pkgconfig -Patch0: parrot-inst_files.patch -#Patch1: parrot-1.0.0-rpath-removal.patch +# +# see for upstream: https://trac.parrot.org/parrot/ticket/844 +# patched file: MANIFEST.generated +# Add two perl-srcipts that are need to build Rakudo BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel @@ -84,7 +93,6 @@ Parrot Virtual Machine development files %prep %setup -q %patch0 -p0 -#%patch1 -b .rpatch %{__perl} -pi -e 's,"lib/,"%{_lib}/, if (/CONST_STRING\(interp,/)' \ src/library.c @@ -173,6 +181,9 @@ find %{RPM_PAR_LIB_DIR}tools -type f -na find %{RPM_PAR_LIB_DIR}tools/dev -type f -name "pbc_to_exe.pir" \ -exec %{__sed} -i -e '1 s&#! parrot&#!/usr/bin/parrot&' {} \; \ -exec chmod 755 {} \; +# Set path to perl binary +find %{RPM_PAR_LIB_DIR}tools/build -type f -name "dyn*.pl" \ + -exec %{__sed} -i -e '1 s&# ex: set ro:&#!/usr/bin/perl&' {} \; # This module is only needed for building and should not be installed (I think) # module "Parrot::OpLib::core" rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parrot/OpLib @@ -181,6 +192,8 @@ rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parro find docs/html -type f -size 0 -exec rm -f {} \; # Set path for installed programs in docs package +find examples/json -type f -name "*.pir" \ + -exec %{__sed} -i -e '1 s&#!../../parrot&#!/usr/bin/parrot&' {} \; find examples -type f -name "*.pl" \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; find examples -wholename 'examples/pir/befunge/t/basic.t' \ @@ -205,7 +218,7 @@ find examples -wholename 'examples/langu find examples/languages -type f -name harness \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; -for file in docs/memory_internals.pod; do +for file in docs/book/draft/ch05_pge.pod docs/memory_internals.pod; do %{__mv} $file timestamp iconv -f ISO-8859-1 -t UTF-8 -o $file timestamp touch -r timestamp $file @@ -221,8 +234,8 @@ rm -rf $RPM_BUILD_ROOT%{_usr}/config \ # 'make fulltest' is done by default; it take a lot of time export LD_LIBRARY_PATH=$( pwd )/blib/lib FULL='full' -#%{?_without_fulltest: FULL=''} -#%{?!_without_tests: make ${FULL}test} +%{?_without_fulltest: FULL=''} +%{?!_without_tests: make ${FULL}test} %clean @@ -273,6 +286,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 +- add the new disable-rpath configure option + * Thu Apr 23 2009 Gerd Pokorra 1.0.0-6 - add a list of changes from Lubomir Rintel - add patch to remove rpath @@ -315,30 +331,18 @@ rm -rf $RPM_BUILD_ROOT - added make html - make reallyinstall => make install -* Tue Jan 20 2009 chromatic 0.9.0 -- updated to 0.9.0 - * Tue Dec 16 2008 Whiteknight 0.8.2 - updated to 0.8.2 -* Tue Nov 18 2008 chromatic 0.8.1 -- updated to 0.8.1 - * Tue Oct 21 2008 particle 0.8.0 - updated to 0.8.0 -* Tue Sep 16 2008 pmichaud 0.7.1 -- updated to 0.7.1 - * Wed Sep 3 2008 chromatic 0.7.0 - install parrot_config (not parrot-config) * Tue Jun 17 2008 Nuno Carvalho 0.6.3 - updated to 0.6.3 -* Tue May 20 2008 chromatic > 0.6.2 -- updated to 0.6.2 - * Mon Apr 28 2008 chromatic 0.6.1 - minor fixes; tested with Fedora 7, 8, and 9-beta @@ -354,27 +358,12 @@ rm -rf $RPM_BUILD_ROOT * Tue Dec 18 2007 Jonathan Worthington 0.5.1 - Update to 0.5.1. -* Tue Nov 20 2007 chromatic 0.5.0 -- Update to 0.5.0. - -* Fri May 25 2007 David Fetter 0.4.12-1 -- Update to 0.4.12. - -* Wed Apr 18 2007 Steven Pritchard 0.4.11-1 -- Update to 0.4.11. - -* Wed Mar 21 2007 Steven Pritchard 0.4.10-1 -- Update to 0.4.10. - * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. - BR ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. -* Wed Jan 17 2007 Steven Pritchard 0.4.8-1 -- Attempt update to 0.4.8. - * Fri Jun 30 2006 Steven Pritchard 0.4.5-5 - Override lib_dir and make various substitutions to try to fix multilib. - Remove rpath use from Makefile. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 6 Jul 2009 11:57:06 -0000 1.5 +++ sources 21 Jul 2009 16:54:33 -0000 1.6 @@ -1 +1 @@ -803cfbd69a0260e93b894c7036e64d94 parrot-1.3.0.tar.gz +3f66816c0f2ba18bdd2cf7bedd59f045 parrot-1.4.0.tar.gz --- parrot-inst_files.patch DELETED --- From jakub at fedoraproject.org Tue Jul 21 16:56:01 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 21 Jul 2009 16:56:01 +0000 (UTC) Subject: rpms/gcc/devel gcc44-pr40811.patch, NONE, 1.1 .cvsignore, 1.277, 1.278 gcc.spec, 1.53, 1.54 sources, 1.280, 1.281 Message-ID: <20090721165601.37D4411C005E@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9542 Modified Files: .cvsignore gcc.spec sources Added Files: gcc44-pr40811.patch Log Message: 4.4.0-15 gcc44-pr40811.patch: config/i386/i386.c | 15 +++-- config/i386/sse.md | 90 +++++++++++++++++++++++++++++++++ testsuite/gcc.target/i386/vectorize7.c | 15 +++++ testsuite/gcc.target/i386/vectorize8.c | 16 +++++ testsuite/lib/target-supports.exp | 6 +- 5 files changed, 135 insertions(+), 7 deletions(-) --- NEW FILE gcc44-pr40811.patch --- 2009-07-21 Uros Bizjak * config/i386/sse.md (vec_unpacku_float_hi_v4si): New expander. (vec_unpacku_float_lo_v4si): Ditto. 2009-07-21 Uros Bizjak PR target/40811 * config/i386/sse.md (sse2_cvtudq2ps): New expander. (enum ix86_builtins): Add IX86_BUILTIN_CVTUDQ2PS. (builtin_description): Add __builtin_ia32_cvtudq2ps. (ix86_vectorize_builtin_conversion): Handle IX86_BUILTIN_CVTUDQ2PS. 2009-07-21 Uros Bizjak * gcc.target/i386/vectorize8.c: New test. 2009-07-21 Uros Bizjak PR target/40811 * lib/target-supports.exp (check_effective_target_vect_uintfloat_cvt): Add i?86 and x86_64 targets. * gcc.target/i386/vectorize7.c: New test. --- gcc/config/i386/sse.md (revision 149860) +++ gcc/config/i386/sse.md (revision 149862) @@ -2420,6 +2420,31 @@ (define_insn "sse2_cvtdq2ps" [(set_attr "type" "ssecvt") (set_attr "mode" "V4SF")]) +(define_expand "sse2_cvtudq2ps" + [(set (match_dup 5) + (float:V4SF (match_operand:V4SI 1 "nonimmediate_operand" ""))) + (set (match_dup 6) + (lt:V4SF (match_dup 5) (match_dup 3))) + (set (match_dup 7) + (and:V4SF (match_dup 6) (match_dup 4))) + (set (match_operand:V4SF 0 "register_operand" "") + (plus:V4SF (match_dup 5) (match_dup 7)))] + "TARGET_SSE2" +{ + REAL_VALUE_TYPE TWO32r; + rtx x; + int i; + + real_ldexp (&TWO32r, &dconst1, 32); + x = const_double_from_real_value (TWO32r, SFmode); + + operands[3] = force_reg (V4SFmode, CONST0_RTX (V4SFmode)); + operands[4] = force_reg (V4SFmode, ix86_build_const_vector (SFmode, 1, x)); + + for (i = 5; i < 8; i++) + operands[i] = gen_reg_rtx (V4SFmode); +}) + (define_insn "avx_cvtps2dq" [(set (match_operand:AVXMODEDCVTPS2DQ 0 "register_operand" "=x") (unspec:AVXMODEDCVTPS2DQ @@ -2945,6 +2970,71 @@ (define_expand "vec_unpacks_float_lo_v4s (parallel [(const_int 0) (const_int 1)]))))] "TARGET_SSE2") +(define_expand "vec_unpacku_float_hi_v4si" + [(set (match_dup 5) + (vec_select:V4SI + (match_operand:V4SI 1 "nonimmediate_operand" "") + (parallel [(const_int 2) + (const_int 3) + (const_int 2) + (const_int 3)]))) + (set (match_dup 6) + (float:V2DF + (vec_select:V2SI + (match_dup 5) + (parallel [(const_int 0) (const_int 1)])))) + (set (match_dup 7) + (lt:V2DF (match_dup 6) (match_dup 3))) + (set (match_dup 8) + (and:V2DF (match_dup 7) (match_dup 4))) + (set (match_operand:V2DF 0 "register_operand" "") + (plus:V2DF (match_dup 6) (match_dup 8)))] + "TARGET_SSE2" +{ + REAL_VALUE_TYPE TWO32r; + rtx x; + int i; + + real_ldexp (&TWO32r, &dconst1, 32); + x = const_double_from_real_value (TWO32r, DFmode); + + operands[3] = force_reg (V2DFmode, CONST0_RTX (V2DFmode)); + operands[4] = force_reg (V2DFmode, ix86_build_const_vector (DFmode, 1, x)); + + operands[5] = gen_reg_rtx (V4SImode); + + for (i = 6; i < 9; i++) + operands[i] = gen_reg_rtx (V2DFmode); +}) + +(define_expand "vec_unpacku_float_lo_v4si" + [(set (match_dup 5) + (float:V2DF + (vec_select:V2SI + (match_operand:V4SI 1 "nonimmediate_operand" "") + (parallel [(const_int 0) (const_int 1)])))) + (set (match_dup 6) + (lt:V2DF (match_dup 5) (match_dup 3))) + (set (match_dup 7) + (and:V2DF (match_dup 6) (match_dup 4))) + (set (match_operand:V2DF 0 "register_operand" "") + (plus:V2DF (match_dup 5) (match_dup 7)))] + "TARGET_SSE2" +{ + REAL_VALUE_TYPE TWO32r; + rtx x; + int i; + + real_ldexp (&TWO32r, &dconst1, 32); + x = const_double_from_real_value (TWO32r, DFmode); + + operands[3] = force_reg (V2DFmode, CONST0_RTX (V2DFmode)); + operands[4] = force_reg (V2DFmode, ix86_build_const_vector (DFmode, 1, x)); + + for (i = 5; i < 8; i++) + operands[i] = gen_reg_rtx (V2DFmode); +}) + (define_expand "vec_pack_trunc_v2df" [(match_operand:V4SF 0 "register_operand" "") (match_operand:V2DF 1 "nonimmediate_operand" "") --- gcc/config/i386/i386.c (revision 149860) +++ gcc/config/i386/i386.c (revision 149862) @@ -20908,6 +20908,8 @@ enum ix86_builtins IX86_BUILTIN_CPYSGNPS, IX86_BUILTIN_CPYSGNPD, + IX86_BUILTIN_CVTUDQ2PS, + /* SSE5 instructions */ IX86_BUILTIN_FMADDSS, IX86_BUILTIN_FMADDSD, @@ -21785,6 +21787,7 @@ static const struct builtin_description { OPTION_MASK_ISA_SSE2, CODE_FOR_sqrtv2df2, "__builtin_ia32_sqrtpd", IX86_BUILTIN_SQRTPD, UNKNOWN, (int) V2DF_FTYPE_V2DF }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtdq2pd, "__builtin_ia32_cvtdq2pd", IX86_BUILTIN_CVTDQ2PD, UNKNOWN, (int) V2DF_FTYPE_V4SI }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtdq2ps, "__builtin_ia32_cvtdq2ps", IX86_BUILTIN_CVTDQ2PS, UNKNOWN, (int) V4SF_FTYPE_V4SI }, + { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtudq2ps, "__builtin_ia32_cvtudq2ps", IX86_BUILTIN_CVTUDQ2PS, UNKNOWN, (int) V4SF_FTYPE_V4SI }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtpd2dq, "__builtin_ia32_cvtpd2dq", IX86_BUILTIN_CVTPD2DQ, UNKNOWN, (int) V4SI_FTYPE_V2DF }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtpd2pi, "__builtin_ia32_cvtpd2pi", IX86_BUILTIN_CVTPD2PI, UNKNOWN, (int) V2SI_FTYPE_V2DF }, @@ -25962,9 +25965,7 @@ ix86_veclibabi_acml (enum built_in_funct static tree ix86_vectorize_builtin_conversion (unsigned int code, tree type) { - if (TREE_CODE (type) != VECTOR_TYPE - /* There are only conversions from/to signed integers. */ - || TYPE_UNSIGNED (TREE_TYPE (type))) + if (TREE_CODE (type) != VECTOR_TYPE) return NULL_TREE; switch (code) @@ -25973,7 +25974,9 @@ ix86_vectorize_builtin_conversion (unsig switch (TYPE_MODE (type)) { case V4SImode: - return ix86_builtins[IX86_BUILTIN_CVTDQ2PS]; + return TYPE_UNSIGNED (type) + ? ix86_builtins[IX86_BUILTIN_CVTUDQ2PS] + : ix86_builtins[IX86_BUILTIN_CVTDQ2PS]; default: return NULL_TREE; } @@ -25982,7 +25985,9 @@ ix86_vectorize_builtin_conversion (unsig switch (TYPE_MODE (type)) { case V4SImode: - return ix86_builtins[IX86_BUILTIN_CVTTPS2DQ]; + return TYPE_UNSIGNED (type) + ? NULL_TREE + : ix86_builtins[IX86_BUILTIN_CVTTPS2DQ]; default: return NULL_TREE; } --- gcc/testsuite/gcc.target/i386/vectorize8.c (revision 0) +++ gcc/testsuite/gcc.target/i386/vectorize8.c (revision 149862) @@ -0,0 +1,16 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -ftree-vectorize -msse2" } */ + +unsigned int a[256]; +double b[256]; + +void foo(void) +{ + int i; + + for (i=0; i<256; ++i) + b[i] = a[i]; +} + +/* { dg-final { scan-assembler "cvtdq2pd" } } */ + --- gcc/testsuite/gcc.target/i386/vectorize7.c (revision 0) +++ gcc/testsuite/gcc.target/i386/vectorize7.c (revision 149862) @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -ftree-vectorize -msse2" } */ + +unsigned int a[256]; +float b[256]; + +void foo(void) +{ + int i; + + for (i=0; i<256; ++i) + b[i] = a[i]; +} + +/* { dg-final { scan-assembler "cvtdq2ps" } } */ --- gcc/testsuite/lib/target-supports.exp (revision 149860) +++ gcc/testsuite/lib/target-supports.exp (revision 149862) @@ -1399,8 +1399,10 @@ proc check_effective_target_vect_uintflo verbose "check_effective_target_vect_uintfloat_cvt: using cached result" 2 } else { set et_vect_uintfloat_cvt_saved 0 - if { ([istarget powerpc*-*-*] - && ![istarget powerpc-*-linux*paired*]) } { + if { [istarget i?86-*-*] + || ([istarget powerpc*-*-*] + && ![istarget powerpc-*-linux*paired*]) + || [istarget x86_64-*-*] } { set et_vect_uintfloat_cvt_saved 1 } } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.277 retrieving revision 1.278 diff -u -p -r1.277 -r1.278 --- .cvsignore 17 Jul 2009 11:26:29 -0000 1.277 +++ .cvsignore 21 Jul 2009 16:55:30 -0000 1.278 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090717.tar.bz2 +gcc-4.4.0-20090721.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- gcc.spec 21 Jul 2009 16:52:33 -0000 1.53 +++ gcc.spec 21 Jul 2009 16:55:30 -0000 1.54 @@ -35,7 +35,7 @@ %global multilib_32_arch ppc %endif %ifarch x86_64 -%global multilib_32_arch i586 +%global multilib_32_arch i686 %endif Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc @@ -652,10 +652,10 @@ CC="$CC" CFLAGS="$OPT_FLAGS" CXXFLAGS="` --with-tune=generic \ %endif %ifarch %{ix86} - --with-arch=i586 \ + --with-arch=i686 \ %endif %ifarch x86_64 - --with-arch_32=i586 \ + --with-arch_32=i686 \ %endif %ifarch s390 s390x --with-arch=z9-109 --with-tune=z10 \ @@ -1818,6 +1818,8 @@ fi constructs (#512689, #511573) - vectorize unsigned int -> {float,double} conversions on x86/x86_64 (PR target/40811) +- update for i586.rpm -> i686.rpm switch (default to -march=i686 -mtune=generic + in i686.rpm gcc and also with -m32 in x86_64.rpm gcc) * Fri Jul 17 2009 Jakub Jelinek 4.4.0-14 - update from gcc-4_4-branch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.280 retrieving revision 1.281 diff -u -p -r1.280 -r1.281 --- sources 17 Jul 2009 11:26:30 -0000 1.280 +++ sources 21 Jul 2009 16:55:31 -0000 1.281 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -ff8cd10e00eb4805d0233c6cf60508d0 gcc-4.4.0-20090717.tar.bz2 +aed249015ac92356fa93a70f0b40666f gcc-4.4.0-20090721.tar.bz2 From sgrubb at fedoraproject.org Tue Jul 21 17:10:28 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Tue, 21 Jul 2009 17:10:28 +0000 (UTC) Subject: rpms/prelude-lml/devel prelude-lml-0.9.15-pie.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 prelude-lml.spec, 1.19, 1.20 sources, 1.6, 1.7 prelude-lml-0.9.12-pie.patch, 1.2, NONE Message-ID: <20090721171029.01FF111C04A0@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/prelude-lml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14685 Modified Files: .cvsignore prelude-lml.spec sources Added Files: prelude-lml-0.9.15-pie.patch Removed Files: prelude-lml-0.9.12-pie.patch Log Message: * Tue Jul 21 2009 Steve Grubb 0.9.15-1 - new upstream release prelude-lml-0.9.15-pie.patch: configure | 2 +- plugins/pcre/Makefile.in | 2 +- src/Makefile.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE prelude-lml-0.9.15-pie.patch --- diff -ur prelude-lml-0.9.15.orig/configure prelude-lml-0.9.15/configure --- prelude-lml-0.9.15.orig/configure 2009-07-21 12:11:17.000000000 -0400 +++ prelude-lml-0.9.15/configure 2009-07-21 12:12:15.000000000 -0400 @@ -41295,7 +41295,7 @@ #AC_LANG_PUSH([C]) save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -z now" + LDFLAGS="$LDFLAGS -z now -pie" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ diff -ur prelude-lml-0.9.15.orig/plugins/pcre/Makefile.in prelude-lml-0.9.15/plugins/pcre/Makefile.in --- prelude-lml-0.9.15.orig/plugins/pcre/Makefile.in 2009-07-21 12:11:17.000000000 -0400 +++ prelude-lml-0.9.15/plugins/pcre/Makefile.in 2009-07-21 12:12:15.000000000 -0400 @@ -239,7 +239,7 @@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ +CFLAGS = @CFLAGS@ -fPIC CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ diff -ur prelude-lml-0.9.15.orig/src/Makefile.in prelude-lml-0.9.15/src/Makefile.in --- prelude-lml-0.9.15.orig/src/Makefile.in 2009-07-21 12:11:17.000000000 -0400 +++ prelude-lml-0.9.15/src/Makefile.in 2009-07-21 12:12:15.000000000 -0400 @@ -767,7 +767,7 @@ top_srcdir = @top_srcdir@ SUBDIRS = include AM_CPPFLAGS = -I$(srcdir)/include/ -I$(top_srcdir)/libmissing -I$(top_builddir)/libmissing -I$(top_srcdir)/libev @LIBPRELUDE_CFLAGS@ @PCRE_CFLAGS@ -AM_CFLAGS = @GLOBAL_CFLAGS@ +AM_CFLAGS = @GLOBAL_CFLAGS@ -fPIE -DPIE prelude_lml_LDADD = @LIBPRELUDE_LIBS@ @PCRE_LIBS@ $(top_builddir)/libev/libev.la $(top_builddir)/libmissing/libmissing.la prelude_lml_LDFLAGS = @LIBPRELUDE_LDFLAGS@ -export-dynamic \ "-dlopen" $(top_builddir)/plugins/debug/debug.la \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/prelude-lml/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 Oct 2008 12:55:39 -0000 1.5 +++ .cvsignore 21 Jul 2009 17:09:58 -0000 1.6 @@ -2,3 +2,4 @@ prelude-lml-0.9.8.1.tar.gz prelude-lml-0.9.11.tar.gz prelude-lml-0.9.13.tar.gz prelude-lml-0.9.14.tar.gz +prelude-lml-0.9.15.tar.gz Index: prelude-lml.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-lml/devel/prelude-lml.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- prelude-lml.spec 22 Apr 2009 22:22:57 -0000 1.19 +++ prelude-lml.spec 21 Jul 2009 17:09:58 -0000 1.20 @@ -1,6 +1,6 @@ Name: prelude-lml -Version: 0.9.14 -Release: 3%{?dist} +Version: 0.9.15 +Release: 1%{?dist} Summary: The prelude log analyzer Group: System Environment/Libraries @@ -8,20 +8,22 @@ License: GPLv2+ URL: http://prelude-ids.org/ Source0: http://www.prelude-ids.org/download/releases/%{name}/%{name}-%{version}.tar.gz Source1: prelude-lml.init -Patch1: prelude-lml-0.9.12-pie.patch +Patch1: prelude-lml-0.9.15-pie.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gamin-devel, libprelude-devel, pcre-devel +BuildRequires: gamin-devel, pcre-devel +BuildRequires: libprelude-devel >= 0.9.21.3 Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service Requires(postun): /sbin/service %description -Prelude-LML?s primary function is log analysis. Logs on a local system or -logs monitored over the network (if configured to accept syslog messages -from other hosts) can be processed and analyzed in order to discover -security anomalies. +Prelude-LML is a log analyser that allows Prelude to collect and +analyze information from all kind of applications emitting logs or +syslog messages in order to detect suspicious activities and transform +them into Prelude-IDMEF alerts. Prelude-LML handles events generated +by a large set of applications, %package devel Summary: Header files and libraries for libprelude development @@ -29,17 +31,9 @@ Group: Development/Libraries Requires: libprelude-devel, prelude-lml = %{version}-%{release} %description devel -Libraries, include files, etc you can use to develop Prelude IDS -sensors using the Prelude Library. The Prelude Library is a -collection of generic functions providing communication between -the Prelude Hybrid IDS suite componentst It provides a convenient -interface for sending alerts to Prelude Manager with transparent -SSL, failover and replication support, asynchronous events and -timer interfaces, an abstracted configuration API (hooking at the -commandline, the configuration line, or wide configuration, -available from the Manager), and a generic plugin API. It allows -you to easily turn your favorite security program into a Prelude -sensor. +Libraries, include files, etc you can use to develop custom +Prelude LML plugins. + %prep %setup -q @@ -111,6 +105,9 @@ fi %changelog +* Tue Jul 21 2009 Steve Grubb 0.9.15-1 +- new upstream release + * Wed Apr 22 2009 Steve Grubb 0.9.14-3 - Adjust dir and config file permissions Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/prelude-lml/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Oct 2008 12:55:39 -0000 1.6 +++ sources 21 Jul 2009 17:09:58 -0000 1.7 @@ -1 +1 @@ -e95c1e4c6a8f4196d87121914a4683e6 prelude-lml-0.9.14.tar.gz +7a2921fa737df2605f739ce734c14c2c prelude-lml-0.9.15.tar.gz --- prelude-lml-0.9.12-pie.patch DELETED --- From xhorak at fedoraproject.org Tue Jul 21 17:11:33 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 17:11:33 +0000 (UTC) Subject: rpms/firefox/F-10 sources,1.116,1.117 Message-ID: <20090721171133.6836311C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15042 Modified Files: sources Log Message: Version update Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-10/sources,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- sources 21 Jul 2009 15:04:27 -0000 1.116 +++ sources 21 Jul 2009 17:11:03 -0000 1.117 @@ -1,2 +1,2 @@ -0fe3631afc61afb5d77c843a49dc8320 firefox-3.0.12-source.tar.bz2 8ea6545553ed1864fae41272d782ad8c firefox-langpacks-3.0.12-20090708.tar.bz2 +51ee3e72001b15b6af8c0a1bdf8256d2 firefox-3.0.12-source.tar.bz2 From scop at fedoraproject.org Tue Jul 21 17:15:50 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Tue, 21 Jul 2009 17:15:50 +0000 (UTC) Subject: rpms/bonnie++/devel bonnie++.spec,1.20,1.21 Message-ID: <20090721171550.A994111C005E@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/bonnie++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16322 Modified Files: bonnie++.spec Log Message: * Fri Jun 12 2009 Ville Skytt? - 1.03e-2 - Don't strip binaries before -debuginfo is generated (#505570). Index: bonnie++.spec =================================================================== RCS file: /cvs/pkgs/rpms/bonnie++/devel/bonnie++.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- bonnie++.spec 15 May 2009 17:19:43 -0000 1.20 +++ bonnie++.spec 21 Jul 2009 17:15:20 -0000 1.21 @@ -1,6 +1,6 @@ Name: bonnie++ Version: 1.03e -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem and disk benchmark & burn-in suite @@ -24,11 +24,10 @@ test servers. %prep %setup -q -n bonnie++-1.03e %patch0 -p1 -sed -i 's|${INSTALL}\s\+-s\b|${INSTALL}|' Makefile %build -%configure +%configure --disable-stripping make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" @@ -55,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 12 2009 Ville Skytt? - 1.03e-2 +- Don't strip binaries before -debuginfo is generated (#505570). + * Wed May 13 2009 Steven Pritchard 1.03e-1 - Update to 1.03e - Drop gcc43 patch (upstream has a fix) From jakub at fedoraproject.org Tue Jul 21 17:18:40 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Tue, 21 Jul 2009 17:18:40 +0000 (UTC) Subject: rpms/gcc/devel gcc44-pr40811.patch,1.1,1.2 Message-ID: <20090721171840.1AB9411C005E@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17479 Modified Files: gcc44-pr40811.patch Log Message: 4.4.0-15 gcc44-pr40811.patch: config/i386/i386.c | 16 ++++- config/i386/sse.md | 90 +++++++++++++++++++++++++++++++++ testsuite/gcc.target/i386/vectorize7.c | 15 +++++ testsuite/gcc.target/i386/vectorize8.c | 16 +++++ testsuite/lib/target-supports.exp | 6 +- 5 files changed, 136 insertions(+), 7 deletions(-) Index: gcc44-pr40811.patch =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc44-pr40811.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gcc44-pr40811.patch 21 Jul 2009 16:55:31 -0000 1.1 +++ gcc44-pr40811.patch 21 Jul 2009 17:18:39 -0000 1.2 @@ -130,16 +130,17 @@ (match_operand:V2DF 1 "nonimmediate_operand" "") --- gcc/config/i386/i386.c (revision 149860) +++ gcc/config/i386/i386.c (revision 149862) -@@ -20908,6 +20908,8 @@ enum ix86_builtins - IX86_BUILTIN_CPYSGNPS, - IX86_BUILTIN_CPYSGNPD, +@@ -21080,6 +21080,9 @@ enum ix86_builtins + IX86_BUILTIN_FABSQ, + IX86_BUILTIN_COPYSIGNQ, ++ /* Vectorizer support builtins. */ + IX86_BUILTIN_CVTUDQ2PS, + /* SSE5 instructions */ IX86_BUILTIN_FMADDSS, IX86_BUILTIN_FMADDSD, -@@ -21785,6 +21787,7 @@ static const struct builtin_description +@@ -21938,6 +21941,7 @@ static const struct builtin_description { OPTION_MASK_ISA_SSE2, CODE_FOR_sqrtv2df2, "__builtin_ia32_sqrtpd", IX86_BUILTIN_SQRTPD, UNKNOWN, (int) V2DF_FTYPE_V2DF }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtdq2pd, "__builtin_ia32_cvtdq2pd", IX86_BUILTIN_CVTDQ2PD, UNKNOWN, (int) V2DF_FTYPE_V4SI }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtdq2ps, "__builtin_ia32_cvtdq2ps", IX86_BUILTIN_CVTDQ2PS, UNKNOWN, (int) V4SF_FTYPE_V4SI }, @@ -147,7 +148,7 @@ { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtpd2dq, "__builtin_ia32_cvtpd2dq", IX86_BUILTIN_CVTPD2DQ, UNKNOWN, (int) V4SI_FTYPE_V2DF }, { OPTION_MASK_ISA_SSE2, CODE_FOR_sse2_cvtpd2pi, "__builtin_ia32_cvtpd2pi", IX86_BUILTIN_CVTPD2PI, UNKNOWN, (int) V2SI_FTYPE_V2DF }, -@@ -25962,9 +25965,7 @@ ix86_veclibabi_acml (enum built_in_funct +@@ -26028,9 +26032,7 @@ ix86_veclibabi_acml (enum built_in_funct static tree ix86_vectorize_builtin_conversion (unsigned int code, tree type) { @@ -158,7 +159,7 @@ return NULL_TREE; switch (code) -@@ -25973,7 +25974,9 @@ ix86_vectorize_builtin_conversion (unsig +@@ -26039,7 +26041,9 @@ ix86_vectorize_builtin_conversion (unsig switch (TYPE_MODE (type)) { case V4SImode: @@ -169,7 +170,7 @@ default: return NULL_TREE; } -@@ -25982,7 +25985,9 @@ ix86_vectorize_builtin_conversion (unsig +@@ -26048,7 +26052,9 @@ ix86_vectorize_builtin_conversion (unsig switch (TYPE_MODE (type)) { case V4SImode: @@ -180,14 +181,14 @@ default: return NULL_TREE; } ---- gcc/testsuite/gcc.target/i386/vectorize8.c (revision 0) -+++ gcc/testsuite/gcc.target/i386/vectorize8.c (revision 149862) -@@ -0,0 +1,16 @@ +--- gcc/testsuite/gcc.target/i386/vectorize7.c (revision 0) ++++ gcc/testsuite/gcc.target/i386/vectorize7.c (revision 149862) +@@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -ftree-vectorize -msse2" } */ + +unsigned int a[256]; -+double b[256]; ++float b[256]; + +void foo(void) +{ @@ -197,16 +198,15 @@ + b[i] = a[i]; +} + -+/* { dg-final { scan-assembler "cvtdq2pd" } } */ -+ ---- gcc/testsuite/gcc.target/i386/vectorize7.c (revision 0) -+++ gcc/testsuite/gcc.target/i386/vectorize7.c (revision 149862) -@@ -0,0 +1,15 @@ ++/* { dg-final { scan-assembler "cvtdq2ps" } } */ +--- gcc/testsuite/gcc.target/i386/vectorize8.c (revision 0) ++++ gcc/testsuite/gcc.target/i386/vectorize8.c (revision 149862) +@@ -0,0 +1,16 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -ftree-vectorize -msse2" } */ + +unsigned int a[256]; -+float b[256]; ++double b[256]; + +void foo(void) +{ @@ -216,7 +216,8 @@ + b[i] = a[i]; +} + -+/* { dg-final { scan-assembler "cvtdq2ps" } } */ ++/* { dg-final { scan-assembler "cvtdq2pd" } } */ ++ --- gcc/testsuite/lib/target-supports.exp (revision 149860) +++ gcc/testsuite/lib/target-supports.exp (revision 149862) @@ -1399,8 +1399,10 @@ proc check_effective_target_vect_uintflo From ajax at fedoraproject.org Tue Jul 21 17:21:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 17:21:46 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.52, 1.53 sources, 1.51, 1.52 xorg-x11-proto-devel.spec, 1.97, 1.98 Message-ID: <20090721172146.3DC3F11C005E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18376 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Tue Jul 21 2009 Adam Jackson 7.4-22 - xextproto 7.0.99.1 - fixesproto snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- .cvsignore 16 Jul 2009 20:26:36 -0000 1.52 +++ .cvsignore 21 Jul 2009 17:21:15 -0000 1.53 @@ -27,3 +27,5 @@ glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 inputproto-1.9.99.14.tar.bz2 randrproto-1.3.0.tar.bz2 +xextproto-7.0.99.1.tar.bz2 +fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 16 Jul 2009 20:26:36 -0000 1.51 +++ sources 21 Jul 2009 17:21:15 -0000 1.52 @@ -3,7 +3,6 @@ 33ee591e0b1ca5ad7902934541db7d24 damageproto-1.1.0.tar.bz2 d80acad88411e7944b9b085463d53302 dmxproto-2.2.2.tar.bz2 2507b5d0f4b2848147fbddd155aa6cfe evieext-1.0.2.tar.bz2 -8b298cc3424597f8138c7faf7763dce9 fixesproto-4.0.tar.bz2 c946f166107b016a21cc7a02e1132724 fontsproto-2.0.2.tar.bz2 6092cdb0a1225f95356ddbe6c2abaad5 kbproto-1.0.3.tar.bz2 0ed4706564a34fc2aff724aa16d3ff00 recordproto-1.13.2.tar.bz2 @@ -12,7 +11,6 @@ b823b314e37eb19dae1f297951d2e933 resour 5d551850e6f4acdf49a13f4eb3a5bbfa scrnsaverproto-1.1.0.tar.bz2 44292d74a9a3c94b1ecb9d77a0da83e8 videoproto-2.2.2.tar.bz2 fde0b050901f024b19159cdacdcfbd20 xcmiscproto-1.1.2.tar.bz2 -64c19cbf368f053cfc689609589dacfe xextproto-7.0.4.tar.bz2 a318c1e86123832d7b0c95fc7d47ef35 xf86bigfontproto-1.1.2.tar.bz2 42fdcebc66efac02ab4beec2b1b0ad6e xf86dgaproto-2.0.3.tar.bz2 01470d088da3a8a3deefa8e1f45d69cb xf86driproto-2.0.4.tar.bz2 @@ -25,3 +23,5 @@ c9f8cebfba72bfab674bc0170551fb8d glprot 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 291ba427a40869cf9909b6c950bf6eab inputproto-1.9.99.14.tar.bz2 a49416013fff33c853efb32f1926551e randrproto-1.3.0.tar.bz2 +8439d47c486b7dbd85e4071d6c8408ca xextproto-7.0.99.1.tar.bz2 +7089b823b1a7cff05478e2330a85e541 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- xorg-x11-proto-devel.spec 16 Jul 2009 20:26:36 -0000 1.97 +++ xorg-x11-proto-devel.spec 21 Jul 2009 17:21:16 -0000 1.98 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 21%{?dist} +Release: 22%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -20,7 +20,8 @@ Source2: http://www.x.org/pub/individua Source3: http://www.x.org/pub/individual/proto/dmxproto-2.2.2.tar.bz2 Source31: http://www.x.org/pub/individual/proto/dri2proto-2.1.tar.bz2 Source4: http://www.x.org/pub/individual/proto/evieext-1.0.2.tar.bz2 -Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 +#Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 +Source5: http://cgit.freedesktop.org/xorg/proto/fixesproto/snapshot/fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.14.tar.bz2 @@ -32,7 +33,7 @@ Source16: http://www.x.org/pub/individua Source17: http://www.x.org/pub/individual/proto/scrnsaverproto-1.1.0.tar.bz2 Source19: http://www.x.org/pub/individual/proto/videoproto-2.2.2.tar.bz2 Source20: http://www.x.org/pub/individual/proto/xcmiscproto-1.1.2.tar.bz2 -Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.4.tar.bz2 +Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.99.1.tar.bz2 Source22: http://www.x.org/pub/individual/proto/xf86bigfontproto-1.1.2.tar.bz2 Source23: http://www.x.org/pub/individual/proto/xf86dgaproto-2.0.3.tar.bz2 Source24: http://www.x.org/pub/individual/proto/xf86driproto-2.0.4.tar.bz2 @@ -62,6 +63,7 @@ X.Org X11 Protocol headers # Proceed through each proto package directory, building them all for dir in $(ls -1) ; do pushd $dir + [ -e configure ] || ./autogen.sh # yes, this looks horrible, but it's to get the .pc files in datadir %configure --libdir=%{_datadir} make %{?_smp_mflags} @@ -77,7 +79,7 @@ for dir in $(ls -1) ; do install -m 444 COPYING-${dir%%-*} $OLDPWD popd done -for i in composite damage randr render ; do +for i in composite damage fixes randr render ; do mv $RPM_BUILD_ROOT/usr/share/doc/${i}proto/${i}proto.txt . done @@ -97,6 +99,7 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING-* %doc compositeproto.txt %doc damageproto.txt +%doc fixesproto.txt %doc randrproto.txt %doc renderproto.txt %dir %{_includedir}/GL @@ -138,54 +141,49 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/dri/xf86dri.h %{_includedir}/X11/dri/xf86dristr.h %dir %{_includedir}/X11/extensions -%{_includedir}/X11/extensions/MITMisc.h -%{_includedir}/X11/extensions/XEVI.h -%{_includedir}/X11/extensions/XEVIstr.h +%{_includedir}/X11/extensions/EVI.h +%{_includedir}/X11/extensions/EVIproto.h %{_includedir}/X11/extensions/XI.h -%{_includedir}/X11/extensions/XIproto.h %{_includedir}/X11/extensions/XI2.h %{_includedir}/X11/extensions/XI2proto.h +%{_includedir}/X11/extensions/XIproto.h %{_includedir}/X11/extensions/XKB.h %{_includedir}/X11/extensions/XKBgeom.h %{_includedir}/X11/extensions/XKBproto.h %{_includedir}/X11/extensions/XKBsrv.h %{_includedir}/X11/extensions/XKBstr.h -%{_includedir}/X11/extensions/XLbx.h %{_includedir}/X11/extensions/XResproto.h -%{_includedir}/X11/extensions/XShm.h -%{_includedir}/X11/extensions/XTest.h -%{_includedir}/X11/extensions/Xag.h -%{_includedir}/X11/extensions/Xagstr.h -%{_includedir}/X11/extensions/Xcup.h -%{_includedir}/X11/extensions/Xcupstr.h -%{_includedir}/X11/extensions/Xdbe.h -%{_includedir}/X11/extensions/Xdbeproto.h -%{_includedir}/X11/extensions/Xext.h %{_includedir}/X11/extensions/Xeviestr.h -%{_includedir}/X11/extensions/Xge.h %{_includedir}/X11/extensions/Xinerama.h %{_includedir}/X11/extensions/Xv.h %{_includedir}/X11/extensions/XvMC.h %{_includedir}/X11/extensions/XvMCproto.h %{_includedir}/X11/extensions/Xvproto.h +%{_includedir}/X11/extensions/ag.h +%{_includedir}/X11/extensions/agproto.h %{_includedir}/X11/extensions/bigreqstr.h %{_includedir}/X11/extensions/composite.h %{_includedir}/X11/extensions/compositeproto.h +%{_includedir}/X11/extensions/cup.h +%{_includedir}/X11/extensions/cupproto.h %{_includedir}/X11/extensions/damageproto.h %{_includedir}/X11/extensions/damagewire.h +%{_includedir}/X11/extensions/dbe.h +%{_includedir}/X11/extensions/dbeproto.h %{_includedir}/X11/extensions/dmxext.h %{_includedir}/X11/extensions/dmxproto.h -%{_includedir}/X11/extensions/dpms.h -%{_includedir}/X11/extensions/dpmsstr.h +%{_includedir}/X11/extensions/dpmsconst.h +%{_includedir}/X11/extensions/dpmsproto.h %{_includedir}/X11/extensions/dri2proto.h %{_includedir}/X11/extensions/dri2tokens.h -%{_includedir}/X11/extensions/extutil.h %{_includedir}/X11/extensions/ge.h %{_includedir}/X11/extensions/geproto.h -%{_includedir}/X11/extensions/lbxstr.h -%{_includedir}/X11/extensions/mitmiscstr.h -%{_includedir}/X11/extensions/multibuf.h -%{_includedir}/X11/extensions/multibufst.h +%{_includedir}/X11/extensions/lbx.h +%{_includedir}/X11/extensions/lbxproto.h +%{_includedir}/X11/extensions/mitmisc.h +%{_includedir}/X11/extensions/mitmiscproto.h +%{_includedir}/X11/extensions/multibufconst.h +%{_includedir}/X11/extensions/multibufproto.h %{_includedir}/X11/extensions/panoramiXext.h %{_includedir}/X11/extensions/panoramiXproto.h %{_includedir}/X11/extensions/randr.h @@ -197,13 +195,14 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/extensions/saver.h %{_includedir}/X11/extensions/saverproto.h %{_includedir}/X11/extensions/scrnsaver.h -%{_includedir}/X11/extensions/security.h -%{_includedir}/X11/extensions/securstr.h -%{_includedir}/X11/extensions/shape.h -%{_includedir}/X11/extensions/shapestr.h -%{_includedir}/X11/extensions/shmstr.h -%{_includedir}/X11/extensions/sync.h -%{_includedir}/X11/extensions/syncstr.h +%{_includedir}/X11/extensions/secur.h +%{_includedir}/X11/extensions/securproto.h +%{_includedir}/X11/extensions/shapeconst.h +%{_includedir}/X11/extensions/shapeproto.h +%{_includedir}/X11/extensions/shm.h +%{_includedir}/X11/extensions/shmproto.h +%{_includedir}/X11/extensions/syncconst.h +%{_includedir}/X11/extensions/syncproto.h %{_includedir}/X11/extensions/vldXvMC.h %{_includedir}/X11/extensions/xcmiscstr.h %{_includedir}/X11/extensions/xf86bigfont.h @@ -218,8 +217,10 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/extensions/xf86vmstr.h %{_includedir}/X11/extensions/xfixesproto.h %{_includedir}/X11/extensions/xfixeswire.h -%{_includedir}/X11/extensions/xtestext1.h -%{_includedir}/X11/extensions/xteststr.h +%{_includedir}/X11/extensions/xtest.h +%{_includedir}/X11/extensions/xtestext1const.h +%{_includedir}/X11/extensions/xtestext1proto.h +%{_includedir}/X11/extensions/xtestproto.h %dir %{_includedir}/X11/fonts %{_includedir}/X11/fonts/FS.h %{_includedir}/X11/fonts/FSproto.h @@ -258,6 +259,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Tue Jul 21 2009 Adam Jackson 7.4-22 +- xextproto 7.0.99.1 +- fixesproto snapshot + * Thu Jul 16 2009 Adam Jackson 7.4-21 - randrproto 1.3.0 From jgarzik at fedoraproject.org Tue Jul 21 17:25:41 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 17:25:41 +0000 (UTC) Subject: rpms/tabled/devel tabled.spec,1.1,1.2 Message-ID: <20090721172541.4022A11C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19507 Modified Files: tabled.spec Log Message: update BuildRequires for libcurl-devel dependency Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tabled.spec 21 Jul 2009 16:00:07 -0000 1.1 +++ tabled.spec 21 Jul 2009 17:25:10 -0000 1.2 @@ -1,6 +1,6 @@ Name: tabled Version: 0.3 -Release: 0.2.g6f015fa5%{?dist} +Release: 0.3.g6f015fa5%{?dist} Summary: Distributed key/value table service Group: System Environment/Base @@ -17,7 +17,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version # N.B. We need chunkd and cld to build, because our "make check" spawns # private copies of infrastructure daemons. BuildRequires: db4-devel libevent-devel glib2-devel pcre-devel -BuildRequires: chunkd chunkd-devel cld cld-devel +BuildRequires: chunkd chunkd-devel cld cld-devel libcurl-devel # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed @@ -101,6 +101,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.3-0.3.g6f015fa5 +- BuildRequires: libcurl-devel + * Sun Jul 19 2009 Jeff Garzik - 0.3-0.2.g6f015fa5 - update to git commit 6f015fa5f920da809d66e57515672b26d0e82b89 - expanded description From pkgdb at fedoraproject.org Tue Jul 21 17:26:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 17:26:18 +0000 Subject: [pkgdb] asciidoc: tmz has requested commit Message-ID: <20090721172618.E953A10F87E@bastion2.fedora.phx.redhat.com> tmz has requested the commit acl on asciidoc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From pkgdb at fedoraproject.org Tue Jul 21 17:26:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 17:26:20 +0000 Subject: [pkgdb] asciidoc: tmz has requested watchcommits Message-ID: <20090721172620.973BF10F8AF@bastion2.fedora.phx.redhat.com> tmz has requested the watchcommits acl on asciidoc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From pkgdb at fedoraproject.org Tue Jul 21 17:26:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 17:26:23 +0000 Subject: [pkgdb] asciidoc: tmz has requested watchbugzilla Message-ID: <20090721172623.5AB7810F898@bastion2.fedora.phx.redhat.com> tmz has requested the watchbugzilla acl on asciidoc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From ajax at fedoraproject.org Tue Jul 21 17:31:45 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 17:31:45 +0000 (UTC) Subject: rpms/xorg-x11-server/devel .cvsignore, 1.63, 1.64 commitid, 1.26, 1.27 sources, 1.58, 1.59 xorg-x11-server.spec, 1.448, 1.449 Message-ID: <20090721173145.8AB0D11C005E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21457 Modified Files: .cvsignore commitid sources xorg-x11-server.spec Log Message: * Tue Jul 21 2009 Adam Jackson 1.6.99-15.20090721 - Today's git snapshot. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 15 Jul 2009 06:20:20 -0000 1.63 +++ .cvsignore 21 Jul 2009 17:31:15 -0000 1.64 @@ -1 +1 @@ -xorg-server-20090715.tar.bz2 +xorg-server-20090721.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/commitid,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- commitid 15 Jul 2009 06:20:20 -0000 1.26 +++ commitid 21 Jul 2009 17:31:15 -0000 1.27 @@ -1 +1 @@ -693babbf12cc7969c3e211c4037c7af0d41c13e9 +afc3e3b5955ea4a49308399820cc4c499f4312da Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/sources,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- sources 15 Jul 2009 06:20:20 -0000 1.58 +++ sources 21 Jul 2009 17:31:15 -0000 1.59 @@ -1 +1 @@ -95878d40ed265bacb65f5c1de9a887bd xorg-server-20090715.tar.bz2 +78de268918337f01dd534ac42e8bfffa xorg-server-20090721.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.448 retrieving revision 1.449 diff -u -p -r1.448 -r1.449 --- xorg-x11-server.spec 15 Jul 2009 19:22:14 -0000 1.448 +++ xorg-x11-server.spec 21 Jul 2009 17:31:15 -0000 1.449 @@ -14,12 +14,12 @@ # Fix rhpxl to no longer need vesamodes/extramodes %define pkgname xorg-server -%define gitdate 20090715 +%define gitdate 20090721 Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 14.%{gitdate}%{?dist} +Release: 15.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -521,6 +521,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Adam Jackson 1.6.99-15.20090721 +- Today's git snapshot. + * Wed Jul 15 2009 Adam Jackson 1.6.99-14.20090715 - Move PAM config file here from xdm. From ajax at fedoraproject.org Tue Jul 21 17:33:44 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 17:33:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-intel/devel intel-2.8.0-build-fix.patch, NONE, 1.1 intel-chip-names.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.6, 1.7 xorg-x11-drv-intel.spec, 1.16, 1.17 Message-ID: <20090721173344.61EC211C005E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-drv-intel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22656 Modified Files: .cvsignore sources xorg-x11-drv-intel.spec Added Files: intel-2.8.0-build-fix.patch intel-chip-names.patch Log Message: * Tue Jul 21 2009 Adam Jackson 2.8.0-1 - intel 2.8.0 - Fix chip names to match pci.ids where no official product name is known. intel-2.8.0-build-fix.patch: src/ch7017/ch7017.c | 2 +- src/ch7xxx/ch7xxx.c | 2 +- src/ivch/ivch.c | 2 +- src/sil164/sil164.c | 2 +- src/tfp410/tfp410.c | 2 +- uxa/uxa-priv.h | 4 +--- 6 files changed, 6 insertions(+), 8 deletions(-) --- NEW FILE intel-2.8.0-build-fix.patch --- diff -up xf86-video-intel-2.8.0/uxa/uxa-priv.h.jx xf86-video-intel-2.8.0/uxa/uxa-priv.h --- xf86-video-intel-2.8.0/uxa/uxa-priv.h.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/uxa/uxa-priv.h 2009-07-21 11:39:10.000000000 -0400 @@ -1,5 +1,4 @@ /* - * * Copyright ? 2000,2008 Keith Packard * 2005 Zack Rusin, Trolltech * @@ -42,8 +41,7 @@ #define NEED_EVENTS #include #ifdef MITSHM -#define _XSHM_SERVER_ -#include +#include "shmint.h" #endif #include "scrnintstr.h" #include "pixmapstr.h" diff -up xf86-video-intel-2.8.0/src/ch7017/ch7017.c.jx xf86-video-intel-2.8.0/src/ch7017/ch7017.c --- xf86-video-intel-2.8.0/src/ch7017/ch7017.c.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/src/ch7017/ch7017.c 2009-07-21 12:34:56.000000000 -0400 @@ -40,7 +40,7 @@ #include "xf86i2c.h" #include "xf86Crtc.h" #define DPMS_SERVER -#include +#include #include "../i2c_vid.h" #include "ch7017_reg.h" diff -up xf86-video-intel-2.8.0/src/ch7xxx/ch7xxx.c.jx xf86-video-intel-2.8.0/src/ch7xxx/ch7xxx.c --- xf86-video-intel-2.8.0/src/ch7xxx/ch7xxx.c.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/src/ch7xxx/ch7xxx.c 2009-07-21 12:35:38.000000000 -0400 @@ -40,7 +40,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN #include "xf86i2c.h" #include "xf86Crtc.h" #define DPMS_SERVER -#include +#include #include "../i2c_vid.h" #include "ch7xxx.h" diff -up xf86-video-intel-2.8.0/src/ivch/ivch.c.jx xf86-video-intel-2.8.0/src/ivch/ivch.c --- xf86-video-intel-2.8.0/src/ivch/ivch.c.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/src/ivch/ivch.c 2009-07-21 12:36:00.000000000 -0400 @@ -37,7 +37,7 @@ #include "xf86i2c.h" #include "xf86Crtc.h" #define DPMS_SERVER -#include +#include #include #include "../i2c_vid.h" diff -up xf86-video-intel-2.8.0/src/sil164/sil164.c.jx xf86-video-intel-2.8.0/src/sil164/sil164.c --- xf86-video-intel-2.8.0/src/sil164/sil164.c.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/src/sil164/sil164.c 2009-07-21 12:36:00.000000000 -0400 @@ -41,7 +41,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN #include "xf86i2c.h" #include "xf86Crtc.h" #define DPMS_SERVER -#include +#include #include "../i2c_vid.h" #include "sil164.h" diff -up xf86-video-intel-2.8.0/src/tfp410/tfp410.c.jx xf86-video-intel-2.8.0/src/tfp410/tfp410.c --- xf86-video-intel-2.8.0/src/tfp410/tfp410.c.jx 2009-07-21 02:00:14.000000000 -0400 +++ xf86-video-intel-2.8.0/src/tfp410/tfp410.c 2009-07-21 12:36:00.000000000 -0400 @@ -40,7 +40,7 @@ #include "xf86i2c.h" #include "xf86Crtc.h" #define DPMS_SERVER -#include +#include #include "../i2c_vid.h" #include "tfp410.h" intel-chip-names.patch: i810_driver.c | 12 ++++++------ i830_driver.c | 24 ++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) --- NEW FILE intel-chip-names.patch --- diff -up xf86-video-intel-2.8.0/src/i810_driver.c.names xf86-video-intel-2.8.0/src/i810_driver.c --- xf86-video-intel-2.8.0/src/i810_driver.c.names 2009-06-12 20:05:25.000000000 -0400 +++ xf86-video-intel-2.8.0/src/i810_driver.c 2009-07-21 13:12:59.000000000 -0400 @@ -175,8 +175,8 @@ static SymTabRec I810Chipsets[] = { {PCI_CHIP_I945_G, "945G"}, {PCI_CHIP_I945_GM, "945GM"}, {PCI_CHIP_I945_GME, "945GME"}, - {PCI_CHIP_IGD_GM, "IGD_GM"}, - {PCI_CHIP_IGD_G, "IGD_G"}, + {PCI_CHIP_IGD_GM, "Pineview GM"}, + {PCI_CHIP_IGD_G, "Pineview G"}, {PCI_CHIP_I965_G, "965G"}, {PCI_CHIP_G35_G, "G35"}, {PCI_CHIP_I965_Q, "965Q"}, @@ -186,13 +186,13 @@ static SymTabRec I810Chipsets[] = { {PCI_CHIP_G33_G, "G33"}, {PCI_CHIP_Q35_G, "Q35"}, {PCI_CHIP_Q33_G, "Q33"}, - {PCI_CHIP_GM45_GM, "Mobile Intel? GM45 Express Chipset"}, - {PCI_CHIP_IGD_E_G, "Intel Integrated Graphics Device"}, + {PCI_CHIP_GM45_GM, "GM45"}, + {PCI_CHIP_IGD_E_G, "4 Series"}, {PCI_CHIP_G45_G, "G45/G43"}, {PCI_CHIP_Q45_G, "Q45/Q43"}, {PCI_CHIP_G41_G, "G41"}, - {PCI_CHIP_IGDNG_D_G, "IGDNG_D"}, - {PCI_CHIP_IGDNG_M_G, "IGDNG_M"}, + {PCI_CHIP_IGDNG_D_G, "Clarkdale"}, + {PCI_CHIP_IGDNG_M_G, "Arrandale"}, {-1, NULL} }; diff -up xf86-video-intel-2.8.0/src/i830_driver.c.names xf86-video-intel-2.8.0/src/i830_driver.c --- xf86-video-intel-2.8.0/src/i830_driver.c.names 2009-07-21 12:37:18.000000000 -0400 +++ xf86-video-intel-2.8.0/src/i830_driver.c 2009-07-21 13:12:57.000000000 -0400 @@ -102,8 +102,8 @@ static SymTabRec I830Chipsets[] = { {PCI_CHIP_I945_G, "945G"}, {PCI_CHIP_I945_GM, "945GM"}, {PCI_CHIP_I945_GME, "945GME"}, - {PCI_CHIP_IGD_GM, "IGD"}, - {PCI_CHIP_IGD_G, "IGD"}, + {PCI_CHIP_IGD_GM, "Pineview GM"}, + {PCI_CHIP_IGD_G, "Pineview G"}, {PCI_CHIP_I965_G, "965G"}, {PCI_CHIP_G35_G, "G35"}, {PCI_CHIP_I965_Q, "965Q"}, @@ -113,13 +113,13 @@ static SymTabRec I830Chipsets[] = { {PCI_CHIP_G33_G, "G33"}, {PCI_CHIP_Q35_G, "Q35"}, {PCI_CHIP_Q33_G, "Q33"}, - {PCI_CHIP_GM45_GM, "Mobile Intel? GM45 Express Chipset"}, - {PCI_CHIP_IGD_E_G, "Intel Integrated Graphics Device"}, + {PCI_CHIP_GM45_GM, "GM45"}, + {PCI_CHIP_IGD_E_G, "4 Series"}, {PCI_CHIP_G45_G, "G45/G43"}, {PCI_CHIP_Q45_G, "Q45/Q43"}, {PCI_CHIP_G41_G, "G41"}, - {PCI_CHIP_IGDNG_D_G, "IGDNG_D"}, - {PCI_CHIP_IGDNG_M_G, "IGDNG_M"}, + {PCI_CHIP_IGDNG_D_G, "Clarkdale"}, + {PCI_CHIP_IGDNG_M_G, "Arrandale"}, {-1, NULL} }; @@ -1051,10 +1051,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "945GME"; break; case PCI_CHIP_IGD_GM: - chipname = "IGD"; + chipname = "Pineview GM"; break; case PCI_CHIP_IGD_G: - chipname = "IGD"; + chipname = "Pineview G"; break; case PCI_CHIP_I965_G: chipname = "965G"; @@ -1084,10 +1084,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "Q33"; break; case PCI_CHIP_GM45_GM: - chipname = "Mobile Intel? GM45 Express Chipset"; + chipname = "GM45"; break; case PCI_CHIP_IGD_E_G: - chipname = "Intel Integrated Graphics Device"; + chipname = "4 Series"; break; case PCI_CHIP_G45_G: chipname = "G45/G43"; @@ -1099,10 +1099,10 @@ i830_detect_chipset(ScrnInfoPtr pScrn) chipname = "G41"; break; case PCI_CHIP_IGDNG_D_G: - chipname = "IGDNG_D"; + chipname = "Clarkdale"; break; case PCI_CHIP_IGDNG_M_G: - chipname = "IGDNG_M"; + chipname = "Arrandale"; break; default: chipname = "unknown chipset"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 14 Jul 2009 14:15:12 -0000 1.5 +++ .cvsignore 21 Jul 2009 17:33:43 -0000 1.6 @@ -3,3 +3,4 @@ intel-gpu-tools-20090624.tar.bz2 xf86-video-intel-20090624.tar.bz2 intel-gpu-tools-20090714.tar.bz2 xf86-video-intel-20090714.tar.bz2 +xf86-video-intel-2.8.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 14 Jul 2009 14:15:12 -0000 1.6 +++ sources 21 Jul 2009 17:33:44 -0000 1.7 @@ -1,2 +1,2 @@ 9a71381224168221894ec723bf6a98e0 intel-gpu-tools-20090714.tar.bz2 -113887c4aed49f05647e351055051d8b xf86-video-intel-20090714.tar.bz2 +15a390fe3e126e954ed95aeb8bc02196 xf86-video-intel-2.8.0.tar.bz2 Index: xorg-x11-drv-intel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/xorg-x11-drv-intel.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xorg-x11-drv-intel.spec 15 Jul 2009 13:18:34 -0000 1.16 +++ xorg-x11-drv-intel.spec 21 Jul 2009 17:33:44 -0000 1.17 @@ -3,19 +3,19 @@ %define moduledir %(pkg-config xorg-server --variable=moduledir ) %define driverdir %{moduledir}/drivers %define gputoolsdate 20090714 -%define gitdate 20090714 +#define gitdate 20090714 Summary: Xorg X11 Intel video driver Name: xorg-x11-drv-intel Version: 2.8.0 -Release: 0.3%{?dist} +Release: 1%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#Source0: http://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-%{version}.tar.bz2 -Source0: xf86-video-intel-%{gitdate}.tar.bz2 +Source0: http://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-%{version}.tar.bz2 +#Source0: xf86-video-intel-%{gitdate}.tar.bz2 Source1: make-intel-gpu-tools-snapshot.sh Source2: intel.xinf Source3: intel-gpu-tools-%{gputoolsdate}.tar.bz2 @@ -23,10 +23,13 @@ Source4: make-git-snapshot.sh Patch1: kill-svideo.patch Patch2: copy-fb.patch +Patch3: intel-2.8.0-build-fix.patch # needs to be upstreamed Patch20: intel-2.8.0-kms-get-crtc.patch +Patch30: intel-chip-names.patch + ExclusiveArch: %{ix86} x86_64 ia64 BuildRequires: autoconf automake libtool @@ -64,11 +67,19 @@ Group: Development/Tools %description -n intel-gpu-tools Debugging tools for Intel graphics chips +%if 0%{?gitdate} +%define dirsuffix %{gitdate} +%else +%define dirsuffix %{version} +%endif + %prep -%setup -q -n xf86-video-intel-%{gitdate} -b3 +%setup -q -n xf86-video-intel-%{dirsuffix} -b3 %patch1 -p1 -b .svideo %patch2 -p1 -b .copy-fb +%patch3 -p1 -b .xext %patch20 -p1 -b .get-crtc +%patch30 -p1 -b .names %build @@ -124,6 +135,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/intel_*.1* %changelog +* Tue Jul 21 2009 Adam Jackson 2.8.0-1 +- intel 2.8.0 +- Fix chip names to match pci.ids where no official product name is known. + * Wed Jul 15 2009 Matthias Clasen - 2.8.0-0.3 - Rebuild for new API From spot at fedoraproject.org Tue Jul 21 17:35:51 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 21 Jul 2009 17:35:51 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch, NONE, 1.1 redhat-rpm-config.spec, 1.65, 1.66 Message-ID: <20090721173551.0A62911C005E@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24169/devel Modified Files: redhat-rpm-config.spec Added Files: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch Log Message: always delete %buildroot at %install (unless it is /) redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch: macros | 11 +++++++++++ 1 file changed, 11 insertions(+) --- NEW FILE redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch --- diff -up redhat-rpm-config-9.0.3/macros.BAD redhat-rpm-config-9.0.3/macros --- redhat-rpm-config-9.0.3/macros.BAD 2009-07-21 13:22:43.427201497 -0400 +++ redhat-rpm-config-9.0.3/macros 2009-07-21 13:23:57.692440712 -0400 @@ -73,6 +73,17 @@ #============================================================================== # ---- Build policy macros. # +# +#--------------------------------------------------------------------- +# Expanded at beginning of %install scriptlet. +# + +%__spec_install_pre %{___build_pre}\ + [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "${RPM_BUILD_ROOT}"\ + mkdir -p `dirname "$RPM_BUILD_ROOT"`\ + mkdir "$RPM_BUILD_ROOT"\ +%{nil} + #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- redhat-rpm-config.spec 17 Jul 2009 19:51:35 -0000 1.65 +++ redhat-rpm-config.spec 21 Jul 2009 17:35:50 -0000 1.66 @@ -1,7 +1,7 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 10%{?dist} +Release: 11%{?dist} # No version specified. License: GPL+ Group: Development/System @@ -11,6 +11,7 @@ Patch1: limit-smp-16-threads.patch Patch2: redhat-rpm-config-9.0.3-F-11-Architectures.patch Patch3: redhat-rpm-config-9.0.3-F-11-StrongerHashes.patch Patch4: redhat-rpm-config-9.0.3-F-12-Architectures.patch +Patch5: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch BuildArch: noarch Requires: mktemp BuildRoot: %{_tmppath}/%{name}-root @@ -25,6 +26,7 @@ Red Hat specific rpm configuration files %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 %install make DESTDIR=${RPM_BUILD_ROOT} install @@ -37,6 +39,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Tue Jul 21 2009 Tom "spot" Callaway - 9.0.3-10 +- always delete %%buildroot as first step of %%install (as long as %buildroot is not /) + * Fri Jul 17 2009 Bill Nottingham 9.0.3-10 - apply fedora 12 default buildflags From spot at fedoraproject.org Tue Jul 21 17:36:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 21 Jul 2009 17:36:20 +0000 (UTC) Subject: rpms/redhat-rpm-config/F-11 redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch, NONE, 1.1 redhat-rpm-config.spec, 1.63, 1.64 Message-ID: <20090721173620.B53BB11C005E@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/redhat-rpm-config/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24169/F-11 Modified Files: redhat-rpm-config.spec Added Files: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch Log Message: always delete %buildroot at %install (unless it is /) redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch: macros | 11 +++++++++++ 1 file changed, 11 insertions(+) --- NEW FILE redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch --- diff -up redhat-rpm-config-9.0.3/macros.BAD redhat-rpm-config-9.0.3/macros --- redhat-rpm-config-9.0.3/macros.BAD 2009-07-21 13:22:43.427201497 -0400 +++ redhat-rpm-config-9.0.3/macros 2009-07-21 13:23:57.692440712 -0400 @@ -73,6 +73,17 @@ #============================================================================== # ---- Build policy macros. # +# +#--------------------------------------------------------------------- +# Expanded at beginning of %install scriptlet. +# + +%__spec_install_pre %{___build_pre}\ + [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "${RPM_BUILD_ROOT}"\ + mkdir -p `dirname "$RPM_BUILD_ROOT"`\ + mkdir "$RPM_BUILD_ROOT"\ +%{nil} + #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-rpm-config/F-11/redhat-rpm-config.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- redhat-rpm-config.spec 3 Jun 2009 19:17:55 -0000 1.63 +++ redhat-rpm-config.spec 21 Jul 2009 17:35:50 -0000 1.64 @@ -1,7 +1,7 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 9%{?dist} +Release: 10%{?dist} # No version specified. License: GPL+ Group: Development/System @@ -10,6 +10,7 @@ Patch0: redhat-rpm-config-9.0.3-fix-requ Patch1: limit-smp-16-threads.patch Patch2: redhat-rpm-config-9.0.3-F-11-Architectures.patch Patch3: redhat-rpm-config-9.0.3-F-11-StrongerHashes.patch +Patch4: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch BuildArch: noarch Requires: mktemp BuildRoot: %{_tmppath}/%{name}-root @@ -23,6 +24,7 @@ Red Hat specific rpm configuration files %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %install make DESTDIR=${RPM_BUILD_ROOT} install @@ -35,6 +37,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Tue Jul 21 2009 Tom "spot" Callaway - 9.0.3-10 +- always delete %%buildroot as first step of %%install (as long as %buildroot is not /) + * Wed Jun 03 2009 Adam Jackson 9.0.3-9 - limit-smp-16-threads.patch: Rediff so we don't ship a .orig file (#500316) From spot at fedoraproject.org Tue Jul 21 17:36:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Tue, 21 Jul 2009 17:36:20 +0000 (UTC) Subject: rpms/redhat-rpm-config/F-10 redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch, NONE, 1.1 redhat-rpm-config.spec, 1.57, 1.58 Message-ID: <20090721173620.7B4F511C005E@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/redhat-rpm-config/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24169/F-10 Modified Files: redhat-rpm-config.spec Added Files: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch Log Message: always delete %buildroot at %install (unless it is /) redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch: macros | 11 +++++++++++ 1 file changed, 11 insertions(+) --- NEW FILE redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch --- diff -up redhat-rpm-config-9.0.3/macros.BAD redhat-rpm-config-9.0.3/macros --- redhat-rpm-config-9.0.3/macros.BAD 2009-07-21 13:22:43.427201497 -0400 +++ redhat-rpm-config-9.0.3/macros 2009-07-21 13:23:57.692440712 -0400 @@ -73,6 +73,17 @@ #============================================================================== # ---- Build policy macros. # +# +#--------------------------------------------------------------------- +# Expanded at beginning of %install scriptlet. +# + +%__spec_install_pre %{___build_pre}\ + [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "${RPM_BUILD_ROOT}"\ + mkdir -p `dirname "$RPM_BUILD_ROOT"`\ + mkdir "$RPM_BUILD_ROOT"\ +%{nil} + #--------------------------------------------------------------------- # Expanded at end of %install scriptlet. # Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-rpm-config/F-10/redhat-rpm-config.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- redhat-rpm-config.spec 16 Feb 2009 17:02:51 -0000 1.57 +++ redhat-rpm-config.spec 21 Jul 2009 17:35:50 -0000 1.58 @@ -1,13 +1,14 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 4%{?dist} +Release: 5%{?dist} # No version specified. License: GPL+ Group: Development/System Source: redhat-rpm-config-%{version}.tar.bz2 Patch0: redhat-rpm-config-9.0.3-fix-requires.patch Patch1: limit-smp-16-threads.patch +Patch2: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch BuildArch: noarch Requires: mktemp BuildRoot: %{_tmppath}/%{name}-root @@ -19,6 +20,7 @@ Red Hat specific rpm configuration files %setup -q %patch0 -p0 %patch1 -p1 +%patch2 -p1 %install make DESTDIR=${RPM_BUILD_ROOT} install @@ -31,6 +33,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Tue Jul 21 2009 Tom "spot" Callaway - 9.0.3-5 +- always delete %%buildroot as first step of %%install (as long as %buildroot is not /) + * Mon Feb 16 2009 Dennis Gilmore - 9.0.3-4 - limit _smp_flags to -j16 From jgarzik at fedoraproject.org Tue Jul 21 17:43:54 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 17:43:54 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.2,1.3 sources,1.2,1.3 Message-ID: <20090721174354.0EFDD11C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27529 Modified Files: cld.spec sources Log Message: update to latest upstream source Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cld.spec 19 Jul 2009 19:09:54 -0000 1.2 +++ cld.spec 21 Jul 2009 17:43:53 -0000 1.3 @@ -1,13 +1,13 @@ Name: cld Version: 0.2 -Release: 0.2.g023a127d%{?dist} +Release: 0.3.gc5b5f962%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 023a127de02c91f62f3911978b59244009c67b2c +# pulled from upstream git, commit c5b5f9622334b273c47e7aad5bd53e280041a045 # to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init @@ -101,6 +101,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.2-0.3.gc5b5f962 +- update to commit c5b5f9622334b273c47e7aad5bd53e280041a045 + * Sun Jul 19 2009 Jeff Garzik - 0.2-0.2.g023a127d - improve package description - per guidelines, indicate how to regenerate tarball from git repo Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 17 Jul 2009 20:12:33 -0000 1.2 +++ sources 21 Jul 2009 17:43:53 -0000 1.3 @@ -1 +1 @@ -262b157bf44bb73b9d3dc483babff237 cld-0.2git.tar.gz +0324c5f35cb0fa726eb795b4fd48c654 cld-0.2git.tar.gz From cwickert at fedoraproject.org Tue Jul 21 18:01:58 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 21 Jul 2009 18:01:58 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2.spec,1.41,1.42 Message-ID: <20090721180158.23BD311C005E@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv726 Modified Files: emelfm2.spec Log Message: * Tue Jul 21 2009 Christoph Wickert - 0.6.2-2 - Fix a typo that prefented the debuginfo from being built (#513031) Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- emelfm2.spec 20 Jul 2009 01:07:58 -0000 1.41 +++ emelfm2.spec 21 Jul 2009 18:01:27 -0000 1.42 @@ -6,7 +6,7 @@ Name: emelfm2 Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -55,7 +55,7 @@ make %{?_smp_mflags} \ WITH_TRACKER=1 \ USE_LATEST=1 \ NEW_COMMAND=1 \ - WITH_ACL=1 + WITH_ACL=1 \ STRIP=0 \ %if 0%{?fedora} > 10 WITH_DEVKIT=1 \ @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Christoph Wickert - 0.6.2-2 +- Fix a typo that prefented the debuginfo from being built (#513031) + * Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 - Update to 0.6.2 From fkooman at fedoraproject.org Tue Jul 21 18:02:11 2009 From: fkooman at fedoraproject.org (=?utf-8?q?Fran=C3=A7ois_Kooman?=) Date: Tue, 21 Jul 2009 18:02:11 +0000 (UTC) Subject: rpms/dumpasn1/devel change_byte_to_char.diff, NONE, 1.1 dumpasn1.spec, 1.12, 1.13 sources, 1.10, 1.11 Message-ID: <20090721180211.1DFC111C005E@cvs1.fedora.phx.redhat.com> Author: fkooman Update of /cvs/pkgs/rpms/dumpasn1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv711 Modified Files: dumpasn1.spec sources Added Files: change_byte_to_char.diff Log Message: * Fri Jul 17 2009 Fran?ois Kooman - 20090318-2 - cfg file already has unix line endings - create patch instead of using sed to replace BYTE with char * Thu Jul 16 2009 Fran?ois Kooman - 20090318-1 - Update to 20090318 and config to 20090531 change_byte_to_char.diff: dumpasn1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE change_byte_to_char.diff --- --- dumpasn1.c.orig 2009-07-10 10:21:20.000000000 +0200 +++ dumpasn1.c 2009-07-17 13:21:28.963825607 +0200 @@ -1969,7 +1969,7 @@ { OIDINFO *oidInfo; STR_OPTION stringType; - BYTE buffer[ MAX_OID_SIZE ]; + char buffer[ MAX_OID_SIZE ]; long value; if( ( item->id & CLASS_MASK ) != UNIVERSAL ) Index: dumpasn1.spec =================================================================== RCS file: /cvs/pkgs/rpms/dumpasn1/devel/dumpasn1.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dumpasn1.spec 24 Feb 2009 12:59:49 -0000 1.12 +++ dumpasn1.spec 21 Jul 2009 18:01:40 -0000 1.13 @@ -1,15 +1,20 @@ Name: dumpasn1 -Version: 20090107 +Version: 20090318 Release: 2%{?dist} Summary: ASN.1 object dump utility Group: Development/Tools License: Copyright only +# You can use this code in whatever way you want, as long as you don't try +# to claim you wrote it. URL: http://www.cs.auckland.ac.nz/~pgut001/ Source0: http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c Source1: http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg # man page extracted from http://ftp.debian.org/debian/pool/main/d/dumpasn1/dumpasn1_20030222-1.diff.gz Source2: dumpasn1.1 +# somehow "char" got replaced by "BYTE" in 20090318, reverting back to char +# makes it compile again, probably because of wide char support +Patch0: change_byte_to_char.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: sed >= 3.95 @@ -22,16 +27,14 @@ formats. %prep %setup -q -c -T -install -pm 644 %{SOURCE0} %{SOURCE2} . +install -pm 644 %{SOURCE0} %{SOURCE1} %{SOURCE2} . +%patch0 sed -i -e 's|/etc/dumpasn1/|%{_sysconfdir}/dumpasn1/|' dumpasn1.{c,1} -sed -e 's/\r//g' %{SOURCE1} > dumpasn1.cfg - %build # -std=c99 for fwide %{__cc} $RPM_OPT_FLAGS -std=c99 -DDEBIAN -o dumpasn1 dumpasn1.c - %install rm -rf $RPM_BUILD_ROOT install -Dpm 755 dumpasn1 $RPM_BUILD_ROOT%{_bindir}/dumpasn1 @@ -52,6 +55,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Fran?ois Kooman - 20090318-2 +- cfg file already has unix line endings +- create patch instead of using sed to replace BYTE with char + +* Thu Jul 16 2009 Fran?ois Kooman - 20090318-1 +- Update to 20090318 and config to 20090531 + * Tue Feb 24 2009 Fedora Release Engineering - 20090107-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dumpasn1/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Feb 2009 17:28:24 -0000 1.10 +++ sources 21 Jul 2009 18:01:40 -0000 1.11 @@ -1,2 +1,2 @@ -bfbe78b0df2d76d70b3b5d7678950d89 dumpasn1.c -cddea448af74f0f07dc8f05b326a9c2f dumpasn1.cfg +b25f4feca205915b4ba3587b9355d47c dumpasn1.c +81a057e27e8584001d93d2852dc4f096 dumpasn1.cfg From jgarzik at fedoraproject.org Tue Jul 21 18:02:56 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 18:02:56 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.spec,1.1,1.2 sources,1.2,1.3 Message-ID: <20090721180256.0350C11C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1190 Modified Files: chunkd.spec sources Log Message: update to latest upstream source Index: chunkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/chunkd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chunkd.spec 21 Jul 2009 15:45:20 -0000 1.1 +++ chunkd.spec 21 Jul 2009 18:02:25 -0000 1.2 @@ -1,13 +1,13 @@ Name: chunkd Version: 0.4 -Release: 0.2.ge073b822%{?dist} -Summary: Data storage daemon +Release: 0.3.g5f69efd9%{?dist} +Summary: Data storage daemon for cloud computing Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit e073b82297fc3c88f94f524c82e9e6e86fb2cd0a +# pulled from upstream git, commit 5f69efd93fb6dc0c2e9882cd3c22cc096eede486 # to recreate tarball, check out commit, then run "make dist" Source0: chunkd-%{version}git.tar.gz Source2: chunkd.init @@ -99,6 +99,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.4-0.3.g5f69efd9 +- update source to commit 5f69efd93fb6dc0c2e9882cd3c22cc096eede486 + * Sun Jul 19 2009 Jeff Garzik - 0.4-0.2.ge073b822 - update source to commit e073b82297fc3c88f94f524c82e9e6e86fb2cd0a - improve pkg description Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Jul 2009 15:45:20 -0000 1.2 +++ sources 21 Jul 2009 18:02:25 -0000 1.3 @@ -1 +1 @@ -26655e13339e3b4bcb8903520134c40c chunkd-0.4git.tar.gz +29a137c9e4cb418a84814649b2b81098 chunkd-0.4git.tar.gz From cwickert at fedoraproject.org Tue Jul 21 18:03:15 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Tue, 21 Jul 2009 18:03:15 +0000 (UTC) Subject: rpms/emelfm2/F-11 emelfm2.spec,1.37,1.38 Message-ID: <20090721180315.6165511C005E@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/emelfm2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1374 Modified Files: emelfm2.spec Log Message: * Tue Jul 21 2009 Christoph Wickert - 0.6.2-2 - Fix a typo that prefented the debuginfo from being built (#513031) Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/F-11/emelfm2.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- emelfm2.spec 20 Jul 2009 13:01:32 -0000 1.37 +++ emelfm2.spec 21 Jul 2009 18:02:45 -0000 1.38 @@ -6,7 +6,7 @@ Name: emelfm2 Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -55,7 +55,7 @@ make %{?_smp_mflags} \ WITH_TRACKER=1 \ USE_LATEST=1 \ NEW_COMMAND=1 \ - WITH_ACL=1 + WITH_ACL=1 \ STRIP=0 \ %if 0%{?fedora} > 10 WITH_DEVKIT=1 \ @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Christoph Wickert - 0.6.2-2 +- Fix a typo that prefented the debuginfo from being built (#513031) + * Mon Jul 20 2009 Christoph Wickert - 0.6.2-1 - Update to 0.6.2 From dledford at fedoraproject.org Tue Jul 21 18:08:50 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Tue, 21 Jul 2009 18:08:50 +0000 (UTC) Subject: rpms/lam/devel lam-7.1.4-man.patch, NONE, 1.1 lam.module.in, 1.4, 1.5 lam.spec, 1.56, 1.57 Message-ID: <20090721180850.9831411C005E@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/lam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3857 Modified Files: lam.module.in lam.spec Added Files: lam-7.1.4-man.patch Log Message: * Tue Jul 21 2009 Doug Ledford - 2:7.1.4-8 - Update module file - Fix Group listing (bz512542) - Fix build (bz511490) lam-7.1.4-man.patch: Makefile.am | 1 - 1 file changed, 1 deletion(-) --- NEW FILE lam-7.1.4-man.patch --- --- lam-7.1.4-rh1/man/man1/Makefile.am.man 2009-07-21 14:04:22.854795208 -0400 +++ lam-7.1.4-rh1/man/man1/Makefile.am 2009-07-21 14:04:31.052843603 -0400 @@ -57,7 +57,6 @@ no_dist_mpi_man = \ hcp.1 \ - lamd.1 \ mpic++.1 if CASE_SENSITIVE_FS Index: lam.module.in =================================================================== RCS file: /cvs/extras/rpms/lam/devel/lam.module.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lam.module.in 25 Jun 2008 17:46:54 -0000 1.4 +++ lam.module.in 21 Jul 2009 18:08:20 -0000 1.5 @@ -6,3 +6,6 @@ prepend-path PATH @LAMDIR@/bin prepend-path LD_LIBRARY_PATH @LAMDIR@/lib setenv CFLAGS -I at LAMDIR@/include setenv LDFLAGS -L at LAMDIR@/lib +setenv MPI_HOME -L at LAMDIR@ +setenv MPI_BIN -L at LAMDIR@/bin +setenv MPI_LIB -L at LAMDIR@/lib Index: lam.spec =================================================================== RCS file: /cvs/extras/rpms/lam/devel/lam.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- lam.spec 20 May 2009 18:59:00 -0000 1.56 +++ lam.spec 21 Jul 2009 18:08:20 -0000 1.57 @@ -1,16 +1,17 @@ Summary: The Local Area Multicomputer programming environment Name: lam Version: 7.1.4 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD Epoch: 2 -Group: System/Base +Group: System Environment/Base Source: lam-%{version}-rh1.tar.bz2 Source1: lam.pc.in Source2: lam.module.in Patch0: lam-7.1.2-no_darwin.patch Patch1: lam-7.1.2-archmode.patch Patch2: lam-gcc43-build.patch +Patch3: lam-7.1.4-man.patch URL: http://www.lam-mpi.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl gcc gcc-c++ gcc-gfortran libaio-devel automake libtool @@ -31,7 +32,7 @@ will go away soon. %package libs Summary: Libraries for LAM -Group: System/Base +Group: System Environment/Libraries Requires(post): chkconfig %description libs @@ -57,6 +58,7 @@ Contains development headers and librari %patch1 -p1 -b .archmode %endif %patch2 -p1 -b .gcc43 +%patch3 -p1 -b .man libtoolize autoreconf @@ -203,6 +205,11 @@ fi %{mpidir}/man/man[23]/* %changelog +* Tue Jul 21 2009 Doug Ledford - 2:7.1.4-8 +- Update module file +- Fix Group listing (bz512542) +- Fix build (bz511490) + * Wed May 20 2009 Doug Ledford - 2:7.1.4-7 - Lam build is not smp safe From jgarzik at fedoraproject.org Tue Jul 21 18:08:56 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 18:08:56 +0000 (UTC) Subject: rpms/tabled/devel sources,1.2,1.3 tabled.spec,1.2,1.3 Message-ID: <20090721180856.843A811C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3920 Modified Files: sources tabled.spec Log Message: update to latest upstream source Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Jul 2009 16:00:07 -0000 1.2 +++ sources 21 Jul 2009 18:08:26 -0000 1.3 @@ -1 +1 @@ -020857a49bb22d2f2dedd52531a66dd8 tabled-0.3git.tar.gz +4a5f2dd34ff5f4056a89396f04be37c2 tabled-0.3git.tar.gz Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tabled.spec 21 Jul 2009 17:25:10 -0000 1.2 +++ tabled.spec 21 Jul 2009 18:08:26 -0000 1.3 @@ -1,13 +1,13 @@ Name: tabled Version: 0.3 -Release: 0.3.g6f015fa5%{?dist} +Release: 0.4.g8102bcda%{?dist} Summary: Distributed key/value table service Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 6f015fa5f920da809d66e57515672b26d0e82b89 +# pulled from upstream git, commit 8102bcda428a9c2d9647d33f21ede6764a514c6e # to recreate tarball, check out commit, then run "make dist" Source0: tabled-%{version}git.tar.gz Source2: tabled.init @@ -101,6 +101,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.3-0.4.g8102bcda +- update to git commit 8102bcda428a9c2d9647d33f21ede6764a514c6e + * Tue Jul 21 2009 Jeff Garzik - 0.3-0.3.g6f015fa5 - BuildRequires: libcurl-devel From xhorak at fedoraproject.org Tue Jul 21 18:18:40 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:18:40 +0000 (UTC) Subject: rpms/epiphany/F-10 epiphany.spec,1.228,1.229 Message-ID: <20090721181840.BE34411C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/epiphany/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6877 Modified Files: epiphany.spec Log Message: * Tue Jul 21 2009 Jan Horak - 2.24.3-8 - Rebuild against newer gecko Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-10/epiphany.spec,v retrieving revision 1.228 retrieving revision 1.229 diff -u -p -r1.228 -r1.229 --- epiphany.spec 11 Jun 2009 23:04:25 -0000 1.228 +++ epiphany.spec 21 Jul 2009 18:18:10 -0000 1.229 @@ -1,4 +1,4 @@ -%define gecko_ver 1.9.0.11 +%define gecko_ver 1.9.0.12 %define desktop_file_utils_version 0.9 %define glib2_devel_ver 2.15.2 %define gtk2_devel_ver 2.12.0 @@ -8,7 +8,7 @@ Summary: GNOME web browser based on the Mozilla rendering engine Name: epiphany Version: 2.24.3 -Release: 7%{?dist} +Release: 8%{?dist} %define major_version 2.24 Provides: epiphany(abi) = %{major_version} License: GPLv2+ and GFDL @@ -259,6 +259,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/epiphany.defs %changelog +* Tue Jul 21 2009 Jan Horak - 2.24.3-8 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 2.24.3-7 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:21:08 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:21:08 +0000 (UTC) Subject: rpms/blam/F-10 blam.spec,1.34,1.35 Message-ID: <20090721182108.741F811C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/blam/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7652 Modified Files: blam.spec Log Message: * Tue Jul 21 2009 Jan Horak - 1.8.5-12 - Rebuild against newer gecko Index: blam.spec =================================================================== RCS file: /cvs/pkgs/rpms/blam/F-10/blam.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- blam.spec 11 Jun 2009 23:53:59 -0000 1.34 +++ blam.spec 21 Jul 2009 18:20:38 -0000 1.35 @@ -1,11 +1,11 @@ ## XXX: Hopefully Mono, Blam and multilib will play nicely soon... %define _libdir %{_prefix}/lib %define dbus_sharp_min_version 0.60 -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 Name: blam Version: 1.8.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -138,6 +138,9 @@ update-desktop-database &> /dev/null ||: %{_mandir}/man?/%{name}.1* %changelog +* Tue Jul 21 2009 Jan Horak - 1.8.5-12 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 1.8.5-11 - Rebuild against newer gecko From s4504kr at fedoraproject.org Tue Jul 21 18:21:51 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 18:21:51 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.2,1.3 Message-ID: <20090721182151.AAEDB11C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8146 Modified Files: ghc-editline.spec Log Message: Fix typo in %{pkg_name} macro Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ghc-editline.spec 21 Jul 2009 14:06:43 -0000 1.2 +++ ghc-editline.spec 21 Jul 2009 18:21:51 -0000 1.3 @@ -7,8 +7,8 @@ Name: ghc-editline Version: 0.2.1.0 -Release: 4%{?dist} -Summary: Haskell %{pgk_name} library +Release: 5%{?dist} +Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline @@ -35,7 +35,7 @@ Additionally, a readline compatibility m provides a subset of the functionality of the readline library. %package devel -Summary: Haskell %{pgk_name} library +Summary: Haskell %{pkg_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} @@ -127,6 +127,9 @@ fi %endif %Changelog +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 +- Fix typo in %%{pkg_name} macro + * Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 - Fix typo in definition of %%{pkg_libdir} From fkooman at fedoraproject.org Tue Jul 21 18:24:02 2009 From: fkooman at fedoraproject.org (=?utf-8?q?Fran=C3=A7ois_Kooman?=) Date: Tue, 21 Jul 2009 18:24:02 +0000 (UTC) Subject: rpms/proguard/devel .cvsignore, 1.2, 1.3 proguard.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090721182402.B52B111C005E@cvs1.fedora.phx.redhat.com> Author: fkooman Update of /cvs/pkgs/rpms/proguard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9023 Modified Files: .cvsignore proguard.spec sources Log Message: * Tue Jul 21 2009 Fran?ois Kooman - 4.4-1 - update to ProGuard 4.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/proguard/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 12 Jun 2009 12:16:55 -0000 1.2 +++ .cvsignore 21 Jul 2009 18:24:02 -0000 1.3 @@ -1 +1 @@ -proguard4.3.tar.gz +proguard4.4.tar.gz Index: proguard.spec =================================================================== RCS file: /cvs/pkgs/rpms/proguard/devel/proguard.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- proguard.spec 12 Jun 2009 12:16:55 -0000 1.1 +++ proguard.spec 21 Jul 2009 18:24:02 -0000 1.2 @@ -1,8 +1,8 @@ %global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} Name: proguard -Version: 4.3 -Release: 4%{?dist} +Version: 4.4 +Release: 1%{?dist} Summary: Java class file shrinker, optimizer, obfuscator and preverifier Group: Development/Tools @@ -154,6 +154,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc README examples/ docs/ README.dist %changelog +* Tue Jul 21 2009 Fran?ois Kooman - 4.4-1 +- update to ProGuard 4.4 + * Mon Jun 10 2009 Fran?ois Kooman - 4.3-4 - move creation of icon inside spec - add GenericName key in .desktop file for KDE users Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/proguard/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 12 Jun 2009 12:16:55 -0000 1.2 +++ sources 21 Jul 2009 18:24:02 -0000 1.3 @@ -1 +1 @@ -01ef52a1d3faa9eef3aa3385b8b5685d proguard4.3.tar.gz +18b8d00951be8d9f85a813c67a46b8ec proguard4.4.tar.gz From xhorak at fedoraproject.org Tue Jul 21 18:24:04 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:24:04 +0000 (UTC) Subject: rpms/devhelp/F-10 devhelp.spec,1.108,1.109 Message-ID: <20090721182404.EFB5011C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/devhelp/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8878 Modified Files: devhelp.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.22-10 - Rebuild against newer gecko Index: devhelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/devhelp/F-10/devhelp.spec,v retrieving revision 1.108 retrieving revision 1.109 diff -u -p -r1.108 -r1.109 --- devhelp.spec 11 Jun 2009 23:54:47 -0000 1.108 +++ devhelp.spec 21 Jul 2009 18:23:34 -0000 1.109 @@ -6,7 +6,7 @@ Name: devhelp Version: 0.22 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Development/Tools Summary: API document browser @@ -135,6 +135,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Tue Jul 21 2009 Jan Horak - 0.22-10 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.22-9 - Rebuild against newer gecko From s4504kr at fedoraproject.org Tue Jul 21 18:24:19 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 18:24:19 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,1.2,1.3 Message-ID: <20090721182419.F318F11C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8983 Modified Files: ghc-editline.spec Log Message: Fix typo in %{pkg_name} macro Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/ghc-editline.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ghc-editline.spec 21 Jul 2009 14:57:36 -0000 1.2 +++ ghc-editline.spec 21 Jul 2009 18:23:49 -0000 1.3 @@ -1,16 +1,14 @@ %global pkg_name editline -%global ghc_version 6.10.1 %global debug_package %{nil} %global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} -%global pkg_docdir %{_docdir}/ghc/libraries/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 -Release: 4%{?dist} -Summary: Haskell %{pgk_name} library +Release: 5%{?dist} +Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline @@ -19,7 +17,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version ExclusiveArch: %{ix86} x86_64 ppc alpha -BuildRequires: ghc >= 6.10, libedit-devel +BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif @@ -37,7 +35,7 @@ Additionally, a readline compatibility m provides a subset of the functionality of the readline library. %package devel -Summary: Haskell %{pgk_name} library +Summary: Haskell %{pkg_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} @@ -114,14 +112,13 @@ if [ "$1" -eq 0 ] ; then fi %endif -%files devel -f %{name}.files +%files devel -f %{name}-devel.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} -%files doc +%files doc -f %{name}-doc.files %defattr(-,root,root,-) -%{pkg_docdir} %endif %if %{with_prof} @@ -130,7 +127,10 @@ fi %endif %Changelog -* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-4 +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 +- Fix typo in %%{pkg_name} macro + +* Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 - Fix typo in definition of %%{pkg_libdir} * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 From xhorak at fedoraproject.org Tue Jul 21 18:25:40 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:25:40 +0000 (UTC) Subject: rpms/evolution-rss/F-10 evolution-rss.spec,1.27,1.28 Message-ID: <20090721182540.5087C11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/evolution-rss/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9591 Modified Files: evolution-rss.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.1.2-8 - Rebuild against newer gecko Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/F-10/evolution-rss.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- evolution-rss.spec 12 Apr 2009 18:02:18 -0000 1.27 +++ evolution-rss.spec 21 Jul 2009 18:25:10 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Evolution RSS Reader Name: evolution-rss Version: 0.1.2 -Release: 7%{?dist} +Release: 8%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ Source: http://gnome.eu.org/%{name}-%{version}.tar.gz @@ -87,6 +87,9 @@ fi %doc TODO %changelog +* Tue Jul 21 2009 Jan Horak - 0.1.2-8 +- Rebuild against newer gecko + * Sun Apr 12 2009 Lucian Langa - 0.1.2-7 - temporary fix for bug #489217: set interval longer than 100 minutes From xhorak at fedoraproject.org Tue Jul 21 18:27:05 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:27:05 +0000 (UTC) Subject: rpms/galeon/F-10 galeon.spec,1.64,1.65 Message-ID: <20090721182705.3D6FF11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/galeon/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10050 Modified Files: galeon.spec Log Message: * Tue Jul 21 2009 Jan Horak - 2.0.7-12 - Rebuild against newer gecko Index: galeon.spec =================================================================== RCS file: /cvs/pkgs/rpms/galeon/F-10/galeon.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- galeon.spec 11 Jun 2009 23:55:30 -0000 1.64 +++ galeon.spec 21 Jul 2009 18:26:34 -0000 1.65 @@ -3,7 +3,7 @@ Summary: GNOME2 Web browser based on Mozilla Name: galeon Version: 2.0.7 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://galeon.sourceforge.net/ @@ -123,6 +123,9 @@ update-desktop-database > /dev/null 2>&1 %changelog +* Tue Jul 21 2009 Jan Horak - 2.0.7-12 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 2.0.7-11 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:28:44 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:28:44 +0000 (UTC) Subject: rpms/gecko-sharp2/F-10 gecko-sharp2.spec,1.35,1.36 Message-ID: <20090721182844.A928711C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gecko-sharp2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10945 Modified Files: gecko-sharp2.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.13-10 - Rebuild against newer gecko Index: gecko-sharp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gecko-sharp2/F-10/gecko-sharp2.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gecko-sharp2.spec 11 Jun 2009 23:56:15 -0000 1.35 +++ gecko-sharp2.spec 21 Jul 2009 18:28:44 -0000 1.36 @@ -1,6 +1,6 @@ Name: gecko-sharp2 Version: 0.13 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Gecko bindings for Mono Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Jan Horak - 0.13-10 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.13-9 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:30:04 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:30:04 +0000 (UTC) Subject: rpms/gnome-python2-extras/F-10 gnome-python2-extras.spec,1.43,1.44 Message-ID: <20090721183004.7DFB211C04A0@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-python2-extras/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11538 Modified Files: gnome-python2-extras.spec Log Message: * Tue Jul 21 2009 Jan Horak - 2.19.1-32 - Rebuild against newer gecko Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/F-10/gnome-python2-extras.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- gnome-python2-extras.spec 11 Jun 2009 23:57:01 -0000 1.43 +++ gnome-python2-extras.spec 21 Jul 2009 18:30:04 -0000 1.44 @@ -5,7 +5,7 @@ %define gnome_panel_version 2.2.0 %define gnome_python_version 2.10.0 %define gtkhtml2_version 2.3.1 -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 %define gtkspell_version 2.0.7 %define libgda_version 2.99.6 %define libgdl_version 2.24.0 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.19.1 -Release: 31%{?dist} +Release: 32%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: The sources for additional. PyGNOME Python extension modules. @@ -191,6 +191,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-3.0.pc %changelog +* Tue Jul 21 2009 Jan Horak - 2.19.1-32 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 2.19.1-31 - Rebuild against newer gecko From awjb at fedoraproject.org Tue Jul 21 18:30:45 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 18:30:45 +0000 (UTC) Subject: rpms/librra/F-10 .cvsignore, 1.7, 1.8 librra.spec, 1.10, 1.11 sources, 1.7, 1.8 Message-ID: <20090721183045.1FA0411C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librra/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11391/F-10 Modified Files: .cvsignore librra.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 8 Feb 2009 10:29:44 -0000 1.7 +++ .cvsignore 21 Jul 2009 18:30:14 -0000 1.8 @@ -1 +1 @@ -librra-0.13.tar.gz +librra-0.14.tar.gz Index: librra.spec =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-10/librra.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- librra.spec 8 Feb 2009 10:29:44 -0000 1.10 +++ librra.spec 21 Jul 2009 18:30:14 -0000 1.11 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librra -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: Connection to Pocket PC devices, part of SynCE @@ -11,8 +11,8 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librra-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 -BuildRequires: librapi-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 +BuildRequires: librapi-devel >= 0.14 BuildRequires: libmimedir-devel BuildRequires: libtool, Pyrex @@ -88,6 +88,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13-1 - version upgrade (#457949) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Feb 2009 10:29:44 -0000 1.7 +++ sources 21 Jul 2009 18:30:14 -0000 1.8 @@ -1 +1 @@ -ec7d655747e1b19d9e39702e332780b5 librra-0.13.tar.gz +3a608174a3a476c96dd4dd4929448fe8 librra-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 18:30:46 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 18:30:46 +0000 (UTC) Subject: rpms/librra/devel .cvsignore, 1.7, 1.8 librra.spec, 1.14, 1.15 sources, 1.7, 1.8 Message-ID: <20090721183046.1094411C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11391/devel Modified Files: .cvsignore librra.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librra/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 8 Feb 2009 10:29:45 -0000 1.7 +++ .cvsignore 21 Jul 2009 18:30:15 -0000 1.8 @@ -1 +1 @@ -librra-0.13.tar.gz +librra-0.14.tar.gz Index: librra.spec =================================================================== RCS file: /cvs/pkgs/rpms/librra/devel/librra.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- librra.spec 25 Feb 2009 17:48:51 -0000 1.14 +++ librra.spec 21 Jul 2009 18:30:15 -0000 1.15 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librra -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection to Pocket PC devices, part of SynCE Group: System Environment/Libraries @@ -11,8 +11,8 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librra-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 -BuildRequires: librapi-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 +BuildRequires: librapi-devel >= 0.14 BuildRequires: libmimedir-devel BuildRequires: libtool, Pyrex @@ -88,6 +88,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librra/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Feb 2009 10:29:45 -0000 1.7 +++ sources 21 Jul 2009 18:30:15 -0000 1.8 @@ -1 +1 @@ -ec7d655747e1b19d9e39702e332780b5 librra-0.13.tar.gz +3a608174a3a476c96dd4dd4929448fe8 librra-0.14.tar.gz From awjb at fedoraproject.org Tue Jul 21 18:30:45 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 18:30:45 +0000 (UTC) Subject: rpms/librra/F-11 .cvsignore, 1.7, 1.8 librra.spec, 1.14, 1.15 sources, 1.7, 1.8 Message-ID: <20090721183045.BBECC11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/librra/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11391/F-11 Modified Files: .cvsignore librra.spec sources Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 8 Feb 2009 10:29:45 -0000 1.7 +++ .cvsignore 21 Jul 2009 18:30:15 -0000 1.8 @@ -1 +1 @@ -librra-0.13.tar.gz +librra-0.14.tar.gz Index: librra.spec =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-11/librra.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- librra.spec 25 Feb 2009 17:48:51 -0000 1.14 +++ librra.spec 21 Jul 2009 18:30:15 -0000 1.15 @@ -1,8 +1,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librra -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection to Pocket PC devices, part of SynCE Group: System Environment/Libraries @@ -11,8 +11,8 @@ URL: http://www.synce.org Source0: http://download.sf.net/synce/librra-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libsynce-devel >= 0.13 -BuildRequires: librapi-devel >= 0.13 +BuildRequires: libsynce-devel >= 0.14 +BuildRequires: librapi-devel >= 0.14 BuildRequires: libmimedir-devel BuildRequires: libtool, Pyrex @@ -88,6 +88,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/librra/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 8 Feb 2009 10:29:45 -0000 1.7 +++ sources 21 Jul 2009 18:30:15 -0000 1.8 @@ -1 +1 @@ -ec7d655747e1b19d9e39702e332780b5 librra-0.13.tar.gz +3a608174a3a476c96dd4dd4929448fe8 librra-0.14.tar.gz From s4504kr at fedoraproject.org Tue Jul 21 18:30:44 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 18:30:44 +0000 (UTC) Subject: rpms/ghc-editline/F-11 ghc-editline.spec,1.2,1.3 Message-ID: <20090721183044.2B2E111C0497@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11636 Modified Files: ghc-editline.spec Log Message: Fix typo in %{pkg_name} macro Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-11/ghc-editline.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ghc-editline.spec 21 Jul 2009 14:15:52 -0000 1.2 +++ ghc-editline.spec 21 Jul 2009 18:30:13 -0000 1.3 @@ -7,8 +7,8 @@ Name: ghc-editline Version: 0.2.1.0 -Release: 4%{?dist} -Summary: Haskell %{pgk_name} library +Release: 5%{?dist} +Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD URL: http://code.haskell.org/editline @@ -35,7 +35,7 @@ Additionally, a readline compatibility m provides a subset of the functionality of the readline library. %package devel -Summary: Haskell %{pgk_name} library +Summary: Haskell %{pkg_name} library Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} @@ -127,6 +127,9 @@ fi %endif %Changelog +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 +- Fix typo in %%{pkg_name} macro + * Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 - Fix typo in definition of %%{pkg_libdir} From firewing at fedoraproject.org Tue Jul 21 18:31:03 2009 From: firewing at fedoraproject.org (Stewart Adam) Date: Tue, 21 Jul 2009 18:31:03 +0000 (UTC) Subject: rpms/fwbackups/F-10 fwbackups-1.43.3rc2-oldtokeep.patch, NONE, 1.1 fwbackups.spec, 1.27, 1.28 Message-ID: <20090721183103.0307911C005E@cvs1.fedora.phx.redhat.com> Author: firewing Update of /cvs/pkgs/rpms/fwbackups/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11816/F-10 Modified Files: fwbackups.spec Added Files: fwbackups-1.43.3rc2-oldtokeep.patch Log Message: * Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 - Add patch to fix one-time backups (#512356) fwbackups-1.43.3rc2-oldtokeep.patch: backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE fwbackups-1.43.3rc2-oldtokeep.patch --- diff --git a/src/fwbackups/operations/backup.py b/src/fwbackups/operations/backup.py index 4c23e21..94ac729 100644 --- a/src/fwbackups/operations/backup.py +++ b/src/fwbackups/operations/backup.py @@ -56,7 +56,6 @@ class BackupOperation(operations.Common): else: options['RemotePort'] = int(options['RemotePort']) options['Nice'] = int(options['Nice']) - options['OldToKeep'] = int(float(options['OldToKeep'])) options['RemotePassword'] = options['RemotePassword'].decode('base64') for option in ['Recursive', 'PkgListsToFile', 'DiskInfoToFile', 'BackupHidden', 'FollowLinks', 'Sparse']: @@ -549,6 +548,7 @@ class SetBackupOperation(BackupOperation): options = BackupOperation.getOptions(self, config) options['Enabled'] = int(options['Enabled']) options['Incremental'] = _bool(options['Incremental']) + options['OldToKeep'] = int(float(options['OldToKeep'])) return options def removeOldBackups(self): Index: fwbackups.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwbackups/F-10/fwbackups.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- fwbackups.spec 9 Jun 2009 14:22:56 -0000 1.27 +++ fwbackups.spec 21 Jul 2009 18:30:32 -0000 1.28 @@ -2,12 +2,14 @@ Name: fwbackups Version: 1.43.3 -Release: 0.3.rc2%{?dist} +Release: 0.4.rc2%{?dist} Summary: A feature-rich user backup program Group: Applications/Archiving License: GPLv2+ URL: http://www.diffingo.com/oss/fwbackups/ Source0: http://downloads.diffingo.com/fwbackups/fwbackups-%{version}rc2.tar.bz2 +# Fixes one-time backups in 1.43.3rc2 (RH bug #512356) +Patch0: fwbackups-1.43.3rc2-oldtokeep.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -39,7 +41,7 @@ or from the contents of an external fold %prep %setup -q -n %{name}-%{version}rc2 - +%patch0 -p1 -b .oldtokeep %build autoreconf -v -i -f @@ -79,6 +81,9 @@ scrollkeeper-update -q || : %{python_sitelib}/%{name}/ %changelog +* Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 +- Add patch to fix one-time backups (#512356) + * Tue Jun 9 2009 Stewart Adam 1.43.3-0.3.rc2 - s/glib2/glib2-devel/ From firewing at fedoraproject.org Tue Jul 21 18:31:03 2009 From: firewing at fedoraproject.org (Stewart Adam) Date: Tue, 21 Jul 2009 18:31:03 +0000 (UTC) Subject: rpms/fwbackups/F-11 fwbackups-1.43.3rc2-oldtokeep.patch, NONE, 1.1 fwbackups.spec, 1.27, 1.28 Message-ID: <20090721183103.34E7711C005E@cvs1.fedora.phx.redhat.com> Author: firewing Update of /cvs/pkgs/rpms/fwbackups/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11816/F-11 Modified Files: fwbackups.spec Added Files: fwbackups-1.43.3rc2-oldtokeep.patch Log Message: * Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 - Add patch to fix one-time backups (#512356) fwbackups-1.43.3rc2-oldtokeep.patch: backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE fwbackups-1.43.3rc2-oldtokeep.patch --- diff --git a/src/fwbackups/operations/backup.py b/src/fwbackups/operations/backup.py index 4c23e21..94ac729 100644 --- a/src/fwbackups/operations/backup.py +++ b/src/fwbackups/operations/backup.py @@ -56,7 +56,6 @@ class BackupOperation(operations.Common): else: options['RemotePort'] = int(options['RemotePort']) options['Nice'] = int(options['Nice']) - options['OldToKeep'] = int(float(options['OldToKeep'])) options['RemotePassword'] = options['RemotePassword'].decode('base64') for option in ['Recursive', 'PkgListsToFile', 'DiskInfoToFile', 'BackupHidden', 'FollowLinks', 'Sparse']: @@ -549,6 +548,7 @@ class SetBackupOperation(BackupOperation): options = BackupOperation.getOptions(self, config) options['Enabled'] = int(options['Enabled']) options['Incremental'] = _bool(options['Incremental']) + options['OldToKeep'] = int(float(options['OldToKeep'])) return options def removeOldBackups(self): Index: fwbackups.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwbackups/F-11/fwbackups.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- fwbackups.spec 9 Jun 2009 15:10:09 -0000 1.27 +++ fwbackups.spec 21 Jul 2009 18:30:33 -0000 1.28 @@ -2,12 +2,14 @@ Name: fwbackups Version: 1.43.3 -Release: 0.3.rc2%{?dist} +Release: 0.4.rc2%{?dist} Summary: A feature-rich user backup program Group: Applications/Archiving License: GPLv2+ URL: http://www.diffingo.com/oss/fwbackups/ Source0: http://downloads.diffingo.com/fwbackups/fwbackups-%{version}rc2.tar.bz2 +# Fixes one-time backups in 1.43.3rc2 (RH bug #512356) +Patch0: fwbackups-1.43.3rc2-oldtokeep.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -39,7 +41,7 @@ or from the contents of an external fold %prep %setup -q -n %{name}-%{version}rc2 - +%patch0 -p1 -b .oldtokeep %build autoreconf -v -i -f @@ -79,6 +81,9 @@ scrollkeeper-update -q || : %{python_sitelib}/%{name}/ %changelog +* Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 +- Add patch to fix one-time backups (#512356) + * Tue Jun 9 2009 Stewart Adam 1.43.3-0.3.rc2 - Add glib2-devel BR From firewing at fedoraproject.org Tue Jul 21 18:31:03 2009 From: firewing at fedoraproject.org (Stewart Adam) Date: Tue, 21 Jul 2009 18:31:03 +0000 (UTC) Subject: rpms/fwbackups/devel fwbackups-1.43.3rc2-oldtokeep.patch, NONE, 1.1 fwbackups.spec, 1.29, 1.30 Message-ID: <20090721183103.7010E11C005E@cvs1.fedora.phx.redhat.com> Author: firewing Update of /cvs/pkgs/rpms/fwbackups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11816/devel Modified Files: fwbackups.spec Added Files: fwbackups-1.43.3rc2-oldtokeep.patch Log Message: * Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 - Add patch to fix one-time backups (#512356) fwbackups-1.43.3rc2-oldtokeep.patch: backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE fwbackups-1.43.3rc2-oldtokeep.patch --- diff --git a/src/fwbackups/operations/backup.py b/src/fwbackups/operations/backup.py index 4c23e21..94ac729 100644 --- a/src/fwbackups/operations/backup.py +++ b/src/fwbackups/operations/backup.py @@ -56,7 +56,6 @@ class BackupOperation(operations.Common): else: options['RemotePort'] = int(options['RemotePort']) options['Nice'] = int(options['Nice']) - options['OldToKeep'] = int(float(options['OldToKeep'])) options['RemotePassword'] = options['RemotePassword'].decode('base64') for option in ['Recursive', 'PkgListsToFile', 'DiskInfoToFile', 'BackupHidden', 'FollowLinks', 'Sparse']: @@ -549,6 +548,7 @@ class SetBackupOperation(BackupOperation): options = BackupOperation.getOptions(self, config) options['Enabled'] = int(options['Enabled']) options['Incremental'] = _bool(options['Incremental']) + options['OldToKeep'] = int(float(options['OldToKeep'])) return options def removeOldBackups(self): Index: fwbackups.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwbackups/devel/fwbackups.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- fwbackups.spec 9 Jun 2009 15:17:32 -0000 1.29 +++ fwbackups.spec 21 Jul 2009 18:30:33 -0000 1.30 @@ -2,16 +2,19 @@ Name: fwbackups Version: 1.43.3 -Release: 0.3.rc2%{?dist} +Release: 0.4.rc2%{?dist} Summary: A feature-rich user backup program Group: Applications/Archiving License: GPLv2+ URL: http://www.diffingo.com/oss/fwbackups/ Source0: http://downloads.diffingo.com/fwbackups/fwbackups-%{version}rc2.tar.bz2 +# Fixes one-time backups in 1.43.3rc2 (RH bug #512356) +Patch0: fwbackups-1.43.3rc2-oldtokeep.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: desktop-file-utils +# Pulls gettext, autotools BuildRequires: intltool, glib2-devel BuildRequires: python-devel >= 2.4 BuildRequires: scrollkeeper @@ -38,7 +41,7 @@ or from the contents of an external fold %prep %setup -q -n %{name}-%{version}rc2 - +%patch0 -p1 -b .oldtokeep %build autoreconf -v -f -i @@ -78,6 +81,9 @@ scrollkeeper-update -q || : %{python_sitelib}/%{name}/ %changelog +* Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 +- Add patch to fix one-time backups (#512356) + * Tue Jun 9 2009 Stewart Adam 1.43.3-0.3rc2 - s/glib2/glib2-devel/ From xhorak at fedoraproject.org Tue Jul 21 18:31:48 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:31:48 +0000 (UTC) Subject: rpms/gnome-web-photo/F-10 gnome-web-photo.spec,1.20,1.21 Message-ID: <20090721183148.B7D3711C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/gnome-web-photo/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12081 Modified Files: gnome-web-photo.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.3-20 - Rebuild against newer gecko Index: gnome-web-photo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-web-photo/F-10/gnome-web-photo.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gnome-web-photo.spec 11 Jun 2009 23:57:50 -0000 1.20 +++ gnome-web-photo.spec 21 Jul 2009 18:31:18 -0000 1.21 @@ -1,9 +1,9 @@ -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 Summary: HTML pages thumbnailer Name: gnome-web-photo Version: 0.3 -Release: 19%{?dist} +Release: 20%{?dist} License: LGPLv2+ Group: Applications/Internet URL: http://ftp.gnome.org/pub/GNOME/sources/gnome-web-photo/%{version}/ @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-web-photo %changelog +* Tue Jul 21 2009 Jan Horak - 0.3-20 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.3-19 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:33:24 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:33:24 +0000 (UTC) Subject: rpms/google-gadgets/F-10 google-gadgets.spec,1.14,1.15 Message-ID: <20090721183324.1255B11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/google-gadgets/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12703 Modified Files: google-gadgets.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.10.5-8 - Rebuild against newer gecko Index: google-gadgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/F-10/google-gadgets.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- google-gadgets.spec 11 Jun 2009 23:58:39 -0000 1.14 +++ google-gadgets.spec 21 Jul 2009 18:32:53 -0000 1.15 @@ -1,6 +1,6 @@ Name: google-gadgets Version: 0.10.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Google Gadgets for Linux Group: User Interface/Desktops @@ -189,6 +189,9 @@ update-desktop-database &> /dev/null || %changelog +* Tue Jul 21 2009 Jan Horak - 0.10.5-8 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.10.5-7 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:35:08 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:35:08 +0000 (UTC) Subject: rpms/kazehakase/F-10 kazehakase.spec,1.79,1.80 Message-ID: <20090721183508.68A8111C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/kazehakase/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13606 Modified Files: kazehakase.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.5.6-4.4 - Rebuild against newer gecko Index: kazehakase.spec =================================================================== RCS file: /cvs/pkgs/rpms/kazehakase/F-10/kazehakase.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- kazehakase.spec 11 Jun 2009 23:59:27 -0000 1.79 +++ kazehakase.spec 21 Jul 2009 18:35:08 -0000 1.80 @@ -40,7 +40,7 @@ Name: kazehakase Version: 0.5.6 -Release: %{_release}%{?dist}.3 +Release: %{_release}%{?dist}.4 Summary: Kazehakase browser using Gecko rendering engine Group: Applications/Internet @@ -303,6 +303,9 @@ desktop-file-install \ %endif %changelog +* Tue Jul 21 2009 Jan Horak - 0.5.6-4.4 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.5.6-4.3 - Rebuild against newer gecko From s4504kr at fedoraproject.org Tue Jul 21 18:35:12 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Tue, 21 Jul 2009 18:35:12 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,1.3,1.4 Message-ID: <20090721183512.4A2D811C005E@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13717 Modified Files: ghc-editline.spec Log Message: Fix typo in %{pkg_name} name Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/ghc-editline.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghc-editline.spec 21 Jul 2009 18:23:49 -0000 1.3 +++ ghc-editline.spec 21 Jul 2009 18:35:12 -0000 1.4 @@ -1,13 +1,15 @@ %global pkg_name editline +%global ghc_version 6.10.1 %global debug_package %{nil} %global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} +%global pkg_docdir %{_docdir}/ghc/libraries/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof Name: ghc-editline Version: 0.2.1.0 -Release: 5%{?dist} +Release: 5%{?dist}.1 Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -17,7 +19,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version ExclusiveArch: %{ix86} x86_64 ppc alpha -BuildRequires: ghc >= 6.10, ghc-rpm-macros, libedit-devel +BuildRequires: ghc >= 6.10, libedit-devel %if %{with_doc} BuildRequires: ghc-doc %endif @@ -112,13 +114,14 @@ if [ "$1" -eq 0 ] ; then fi %endif -%files devel -f %{name}-devel.files +%files devel -f %{name}.files %defattr(-,root,root,-) %{_docdir}/%{name}-%{version} %if %{with_doc} -%files doc -f %{name}-doc.files +%files doc %defattr(-,root,root,-) +%{pkg_docdir} %endif %if %{with_prof} @@ -127,10 +130,10 @@ fi %endif %Changelog -* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 -- Fix typo in %%{pkg_name} macro +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5.1 +- Fix typo in %{pkg_name} macro -* Mon Jul 20 2009 Jochen Schmitt 0.2.1.0-4 +* Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-4 - Fix typo in definition of %%{pkg_libdir} * Sun Jul 19 2009 Jochen Schmitt 0.2.1.0-3 From xhorak at fedoraproject.org Tue Jul 21 18:35:58 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:35:58 +0000 (UTC) Subject: rpms/Miro/F-10 Miro.spec,1.55,1.56 Message-ID: <20090721183558.A421611C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/Miro/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14491 Modified Files: Miro.spec Log Message: * Tue Jul 21 2009 Jan Horak - 2.0.5-2 - Rebuild against newer gecko Index: Miro.spec =================================================================== RCS file: /cvs/pkgs/rpms/Miro/F-10/Miro.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- Miro.spec 1 Jul 2009 21:37:54 -0000 1.55 +++ Miro.spec 21 Jul 2009 18:35:57 -0000 1.56 @@ -1,11 +1,11 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define gecko_ver 1.9.0.11 +%define gecko_ver 1.9.0.12 Name: Miro Version: 2.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Tue Jul 21 2009 Jan Horak - 2.0.5-2 +- Rebuild against newer gecko + * Wed Jul 1 2009 Alex Lancaster - 2.0.5-1 - Update to latest upstream (2.0.5) fixes #507642 From xhorak at fedoraproject.org Tue Jul 21 18:37:22 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:37:22 +0000 (UTC) Subject: rpms/mozvoikko/F-10 mozvoikko.spec,1.12,1.13 Message-ID: <20090721183722.8035311C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/mozvoikko/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14971 Modified Files: mozvoikko.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.9.5-12 - Rebuild against newer gecko Index: mozvoikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozvoikko/F-10/mozvoikko.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mozvoikko.spec 12 Jun 2009 00:01:05 -0000 1.12 +++ mozvoikko.spec 21 Jul 2009 18:36:52 -0000 1.13 @@ -1,5 +1,5 @@ # For the xulrunner unstable requires -%define gecko_ver 1.9.0.11 +%define gecko_ver 1.9.0.12 # These come from install.rdf %define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\} %define firefox_ext_id \{b676e3ff-cda7-4e0c-b2b8-74e4bb40a67a\} @@ -12,7 +12,7 @@ Name: mozvoikko Version: 0.9.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Finnish Voikko spell-checker extension for Mozilla programs Group: Applications/Internet License: GPLv2+ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Jan Horak - 0.9.5-12 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.9.5-11 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:39:22 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:39:22 +0000 (UTC) Subject: rpms/mugshot/F-10 mugshot.spec,1.49,1.50 Message-ID: <20090721183922.142AA11C049B@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/mugshot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15822 Modified Files: mugshot.spec Log Message: * Tue Jul 21 2009 Jan Horak - 1.2.2-11 - Rebuild against newer gecko Index: mugshot.spec =================================================================== RCS file: /cvs/pkgs/rpms/mugshot/F-10/mugshot.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- mugshot.spec 12 Jun 2009 00:01:55 -0000 1.49 +++ mugshot.spec 21 Jul 2009 18:38:51 -0000 1.50 @@ -3,7 +3,7 @@ Name: mugshot Version: 1.2.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Companion software for mugshot.org Group: Applications/Internet @@ -172,6 +172,9 @@ fi %{_sysconfdir}/gconf/schemas/*.schemas %changelog +* Tue Jul 21 2009 Jan Horak - 1.2.2-11 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 1.2.2-10 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:40:44 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:40:44 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-10 pcmanx-gtk2.spec,1.16,1.17 Message-ID: <20090721184044.1CC6C11C04A0@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16372 Modified Files: pcmanx-gtk2.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.3.8-11 - Rebuild against newer gecko Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-10/pcmanx-gtk2.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pcmanx-gtk2.spec 12 Jun 2009 00:02:41 -0000 1.16 +++ pcmanx-gtk2.spec 21 Jul 2009 18:40:13 -0000 1.17 @@ -2,12 +2,12 @@ # We hardcode this here because everytime xulrunner increments # it tends to break things that depend on it. %define xulmajorver 1.9 -%define xulver 1.9.0.11 +%define xulver 1.9.0.12 Summary: Telnet client designed for BBS browsing Name: pcmanx-gtk2 Version: 0.3.8 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://pcmanx.csie.net/release/%{name}-%{version}.tar.bz2 @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mozilla/plugins/ %changelog +* Tue Jul 21 2009 Jan Horak - 0.3.8-11 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 0.3.8-10 - Rebuild against newer gecko From xhorak at fedoraproject.org Tue Jul 21 18:42:09 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:42:09 +0000 (UTC) Subject: rpms/ruby-gnome2/F-10 ruby-gnome2.spec,1.45,1.46 Message-ID: <20090721184209.E290311C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/ruby-gnome2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16785 Modified Files: ruby-gnome2.spec Log Message: * Tue Jul 21 2009 Jan Horak - 0.19.0-3.1 - Rebuild against newer gecko Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-gnome2/F-10/ruby-gnome2.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- ruby-gnome2.spec 15 Jul 2009 16:54:20 -0000 1.45 +++ ruby-gnome2.spec 21 Jul 2009 18:41:39 -0000 1.46 @@ -13,7 +13,7 @@ Name: ruby-gnome2 Version: 0.19.0 -Release: %{mainrel}%{?dist} +Release: %{mainrel}%{?dist}.1 Summary: Ruby binding of libgnome/libgnomeui-2.x Group: System Environment/Libraries @@ -730,6 +730,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Jan Horak - 0.19.0-3.1 +- Rebuild against newer gecko + * Thu Jul 16 2009 Mamoru Tasaka - 0.19.0-3 - Make ruby-gtkglext require ruby(opengl) From xhorak at fedoraproject.org Tue Jul 21 18:44:23 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Tue, 21 Jul 2009 18:44:23 +0000 (UTC) Subject: rpms/yelp/F-10 yelp.spec,1.154,1.155 Message-ID: <20090721184423.EEAFA11C005E@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/yelp/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17518 Modified Files: yelp.spec Log Message: * Tue Jul 21 2009 Jan Horak - 2.24.0-11 - Rebuild against newer gecko Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/F-10/yelp.spec,v retrieving revision 1.154 retrieving revision 1.155 diff -u -p -r1.154 -r1.155 --- yelp.spec 12 Jun 2009 00:05:02 -0000 1.154 +++ yelp.spec 21 Jul 2009 18:43:53 -0000 1.155 @@ -12,7 +12,7 @@ %define libxslt_version 1.1.4 %define startup_notification_version 0.8 %define rarian_version 0.7.0 -%define gecko_version 1.9.0.11 +%define gecko_version 1.9.0.12 %define pango_version 1.0.99 %define desktop_file_utils_version 0.3-7 @@ -20,7 +20,7 @@ Summary: A system documentation reader from the Gnome project Name: yelp Version: 2.24.0 -Release: 10%{?dist} +Release: 11%{?dist} Source: http://ftp.gnome.org/pub/GNOME/sources/yelp/2.24/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp # http://bugzilla.gnome.org/show_bug.cgi?id=319096 @@ -157,6 +157,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Tue Jul 21 2009 Jan Horak - 2.24.0-11 +- Rebuild against newer gecko + * Thu Jun 11 2009 Christopher Aillon - 2.24.0-10 - Rebuild against newer gecko From jwilson at fedoraproject.org Tue Jul 21 18:49:06 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Tue, 21 Jul 2009 18:49:06 +0000 (UTC) Subject: rpms/linuxwacom/devel noautobuild,NONE,1.1 Message-ID: <20090721184906.4E8D711C005E@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/linuxwacom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19134 Added Files: noautobuild Log Message: Does not build on F12 at the moment, but some patches are floating around that fix the build. They're currently untested though, so I've not yet committed them... So hold off on a build until they're tested and committed, lest we try building something we already know won't build. --- NEW FILE noautobuild --- Does not build on F12 at the moment, but some patches are floating around that fix the build. They're currently untested though, so I've not yet committed them... So hold off on a build until they're tested and committed, lest we try building something we already know won't build. From sharkcz at fedoraproject.org Tue Jul 21 18:53:32 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Tue, 21 Jul 2009 18:53:32 +0000 (UTC) Subject: rpms/scribus/devel scribus-1.3.5-install-headers.patch, NONE, 1.1 scribus-1.3.5-system-hyphen.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 scribus.spec, 1.44, 1.45 sources, 1.20, 1.21 Message-ID: <20090721185332.754E011C005E@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/scribus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20416 Modified Files: .cvsignore scribus.spec sources Added Files: scribus-1.3.5-install-headers.patch scribus-1.3.5-system-hyphen.patch Log Message: * Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.15.rc3 - update to 1.3.5-rc3 - use system hyphen library (#506074) - fix update path for the doc subpackage (#512498) - preserve directories when installing headers (#511800) scribus-1.3.5-install-headers.patch: CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE scribus-1.3.5-install-headers.patch --- --- scribus-1.3.5.rc3/scribus/CMakeLists.txt.orig 2009-05-17 23:23:08.000000000 +0200 +++ scribus-1.3.5.rc3/scribus/CMakeLists.txt 2009-07-21 15:09:25.000000000 +0200 @@ -834,8 +834,7 @@ ENDIF(APPLEBUNDLE) #Install our header files, selected from all existing dirs IF(NOT WANT_NOHEADERINSTALL) - FILE( GLOB_RECURSE SCRIBUS_HEADER_FILES *.h ) - INSTALL(FILES ${SCRIBUS_HEADER_FILES} DESTINATION ${INCLUDEDIR}) + INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ DESTINATION ${INCLUDEDIR} FILES_MATCHING PATTERN "*.h") ELSE(NOT WANT_NOHEADERINSTALL) MESSAGE(STATUS "No source header files will be installed") ENDIF(NOT WANT_NOHEADERINSTALL) scribus-1.3.5-system-hyphen.patch: CMakeLists.txt | 10 ++++++++ scribus-1.3.5.rc3/cmake/modules/FindHYPHEN.cmake | 28 +++++++++++++++++++++++ scribus-1.3.5.rc3/scribus/CMakeLists.txt | 16 +++++++++++-- scribus-1.3.5.rc3/scribus/hyphenator.h | 2 - 4 files changed, 53 insertions(+), 3 deletions(-) --- NEW FILE scribus-1.3.5-system-hyphen.patch --- diff -Nrup scribus-1.3.5.rc3.orig/cmake/modules/FindHYPHEN.cmake scribus-1.3.5.rc3/cmake/modules/FindHYPHEN.cmake --- scribus-1.3.5.rc3.orig/cmake/modules/FindHYPHEN.cmake 1970-01-01 01:00:00.000000000 +0100 +++ scribus-1.3.5.rc3/cmake/modules/FindHYPHEN.cmake 2009-07-02 14:23:26.000000000 +0200 @@ -0,0 +1,28 @@ +# - Find HYPHEN library +# Find the native HYPHEN includes and library +# This module defines +# HYPHEN_INCLUDE_DIR, where to find hyphen.h, etc. +# HYPHEN_LIBRARIES, libraries to link against to use HYPHEN. +# HYPHEN_FOUND, If false, do not try to use HYPHEN. +# also defined, but not for general use are +# HYPHEN_LIBRARY, where to find the HYPHEN library. + +FIND_PATH(HYPHEN_INCLUDE_DIR hyphen.h) + +SET(HYPHEN_NAMES_RELEASE ${HYPHEN_NAMES_RELEASE} ${HYPHEN_NAMES} hyphen libhyphen) +SET(HYPHEN_NAMES_DEBUG ${HYPHEN_NAMES_DEBUG} hyphend libhyphend) + +FIND_LIBRARY(HYPHEN_LIBRARY_RELEASE NAMES ${HYPHEN_NAMES_RELEASE} ) +FIND_LIBRARY(HYPHEN_LIBRARY_DEBUG NAMES ${HYPHEN_NAMES_DEBUG} ) + +INCLUDE(LibraryDebugAndRelease) +SET_LIBRARY_FROM_DEBUG_AND_RELEASE(HYPHEN) + +# handle the QUIETLY and REQUIRED arguments and set HYPHEN_FOUND to TRUE if +# all listed variables are TRUE +INCLUDE(ScribusFindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(HYPHEN DEFAULT_MSG HYPHEN_LIBRARY HYPHEN_INCLUDE_DIR) + +IF(HYPHEN_FOUND) + SET( HYPHEN_LIBRARIES ${HYPHEN_LIBRARY} ) +ENDIF(HYPHEN_FOUND) --- scribus-1.3.5.rc3.orig/CMakeLists.txt 2009-05-30 14:38:09.000000000 +0200 +++ scribus-1.3.5.rc3/CMakeLists.txt 2009-07-02 14:32:24.000000000 +0200 @@ -638,6 +638,16 @@ ELSE(LIBPODOFO_FOUND) ENDIF(LIBPODOFO_FOUND) #>>PoDoFo for AI PDF import +#<>HYPHEN for system hyphenation library + ############################################################################################################## ########## Include Setup ########## diff -Nrup -x CMakeFiles -x Makefile -x FindHYPHEN.cmake scribus-1.3.5.rc3.orig/scribus/CMakeLists.txt scribus-1.3.5.rc3/scribus/CMakeLists.txt --- scribus-1.3.5.rc3.orig/scribus/CMakeLists.txt 2009-06-07 09:05:54.000000000 +0200 +++ scribus-1.3.5.rc3/scribus/CMakeLists.txt 2009-07-02 15:22:52.000000000 +0200 @@ -403,10 +403,8 @@ SET(SCRIBUS_SOURCES guidesdelegate.cpp guidesmodel.cpp helpbrowser.cpp - hnjalloc.c hruler.cpp hyask.cpp - hyphen.c hyphenator.cpp hysettings.cpp imageinfodialog.cpp @@ -641,6 +639,14 @@ SET(SCRIBUS_SOURCES vruler.cpp ) +IF(NOT HAVE_HYPHEN) + SET(SCRIBUS_SOURCES + ${SCRIBUS_SOURCES} + hnjalloc.c + hyphen.c + ) +ENDIF(NOT HAVE_HYPHEN) + IF(WIN32) SET(SCRIBUS_MOC_WIN32_ONLY_CLASSES scprintengine_gdi.h) SET(SCRIBUS_WIN32_ONLY_SOURCES @@ -785,6 +791,12 @@ IF(HAVE_PODOFO) ) ENDIF(HAVE_PODOFO) +IF(HAVE_HYPHEN) + TARGET_LINK_LIBRARIES(${EXE_NAME} + ${HYPHEN_LIBRARY} + ) +ENDIF(HAVE_HYPHEN) + # Now build plugins SET(PLUGIN_LIBRARIES) IF(WIN32) diff -Nrup -x CMakeFiles -x Makefile -x '*.cmake' scribus-1.3.5.rc3.orig/scribus/hyphenator.h scribus-1.3.5.rc3/scribus/hyphenator.h --- scribus-1.3.5.rc3.orig/scribus/hyphenator.h 2007-07-10 22:33:09.000000000 +0200 +++ scribus-1.3.5.rc3/scribus/hyphenator.h 2009-07-02 14:03:11.000000000 +0200 @@ -13,7 +13,7 @@ for which a new license (GPL+exception) #include #include "scribusapi.h" -#include "hyphen.h" +#include class ScribusDoc; class ScribusMainWindow; class PageItem; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/scribus/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 4 Jun 2009 08:08:48 -0000 1.20 +++ .cvsignore 21 Jul 2009 18:53:02 -0000 1.21 @@ -1 +1 @@ -scribus-1.3.5.rc2.tar.bz2 +scribus-1.3.5.rc3.tar.bz2 Index: scribus.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribus/devel/scribus.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- scribus.spec 4 Jun 2009 08:08:48 -0000 1.44 +++ scribus.spec 21 Jul 2009 18:53:02 -0000 1.45 @@ -1,13 +1,15 @@ Name: scribus Version: 1.3.5 -Release: 0.14.rc2%{?dist} +Release: 0.15.rc3%{?dist} Summary: DeskTop Publishing application written in Qt Group: Applications/Productivity License: GPLv2+ URL: http://www.scribus.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc2.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc3.tar.bz2 +Patch0: %{name}-1.3.5-system-hyphen.patch +Patch1: %{name}-1.3.5-install-headers.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake @@ -31,6 +33,7 @@ BuildRequires: cairo-devel BuildRequires: aspell-devel BuildRequires: boost-devel BuildRequires: podofo-devel +BuildRequires: hyphen-devel Requires: ghostscript >= 7.07 Requires: python >= 2.3 Requires: python-imaging @@ -63,6 +66,7 @@ Group: Development/Tools Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch +Obsoletes: %{name}-doc < 1.3.5-0.12.beta %endif @@ -70,7 +74,9 @@ BuildArch: noarch %{summary} %prep -%setup -q -n %{name}-%{version}.rc2 +%setup -q -n %{name}-%{version}.rc3 +%patch0 -p1 -b .system-hyphen +%patch1 -p1 -b .install-headers # recode man page to UTF-8 pushd scribus/manpages @@ -86,8 +92,8 @@ chmod a-x scribus/pageitem_latexframe.h %build mkdir build pushd build -%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} \ - -DCMAKE_SKIP_RPATH=YES ../ +%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} .. + make VERBOSE=1 %{?_smp_mflags} popd @@ -103,6 +109,9 @@ install -p -D -m0644 ${RPM_BUILD_ROOT}%{ find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';' +# remove empty dirs in %{_includedir} +rm -rf ${RPM_BUILD_ROOT}%{_includedir}/%{name}/{dicts,doc,dtd,editorconfig,icons,keysets,loremipsum,manpages,profiles,swatches,templates,unicodemap} + # install the global desktop file rm -f ${RPM_BUILD_ROOT}%{_datadir}/mimelnk/application/*scribus.desktop desktop-file-install --vendor="fedora" \ @@ -125,12 +134,12 @@ update-mime-database %{_datadir}/mime > %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog ChangeLogSVN COPYING README TODO -%{_bindir}/scribus +%{_bindir}/%{name} %{_datadir}/applications/fedora-scribus.desktop %{_datadir}/mime/packages/scribus.xml %{_datadir}/pixmaps/* -%{_datadir}/scribus/ -%{_libdir}/scribus/ +%{_datadir}/%{name} +%{_libdir}/%{name} %{_mandir}/man1/* %{_mandir}/pl/man1/* %{_mandir}/de/man1/* @@ -138,33 +147,38 @@ update-mime-database %{_datadir}/mime > %files devel %defattr(-,root,root,-) %doc AUTHORS COPYING -%{_includedir}/scribus/ +%{_includedir}/%{name} %files doc %defattr(-,root,root,-) -%dir %{_datadir}/doc/%{name}-1.3.5.rc2 -%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc2/cs -%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc2/de -%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc2/en -%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc2/fr -%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc2/pl -%{_datadir}/doc/%{name}-1.3.5.rc2/AUTHORS -%{_datadir}/doc/%{name}-1.3.5.rc2/BUILDING -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLog -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLogSVN -%{_datadir}/doc/%{name}-1.3.5.rc2/COPYING -%{_datadir}/doc/%{name}-1.3.5.rc2/NEWS -%{_datadir}/doc/%{name}-1.3.5.rc2/README* -%{_datadir}/doc/%{name}-1.3.5.rc2/TODO -%{_datadir}/doc/%{name}-1.3.5.rc2/PACKAGING -%{_datadir}/doc/%{name}-1.3.5.rc2/LINKS -%{_datadir}/doc/%{name}-1.3.5.rc2/TRANSLATION +%dir %{_datadir}/doc/%{name}-1.3.5.rc3 +%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc3/cs +%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc3/de +%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc3/en +%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc3/fr +%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc3/pl +%{_datadir}/doc/%{name}-1.3.5.rc3/AUTHORS +%{_datadir}/doc/%{name}-1.3.5.rc3/BUILDING +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLog +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLogSVN +%{_datadir}/doc/%{name}-1.3.5.rc3/COPYING +%{_datadir}/doc/%{name}-1.3.5.rc3/NEWS +%{_datadir}/doc/%{name}-1.3.5.rc3/README* +%{_datadir}/doc/%{name}-1.3.5.rc3/TODO +%{_datadir}/doc/%{name}-1.3.5.rc3/PACKAGING +%{_datadir}/doc/%{name}-1.3.5.rc3/LINKS +%{_datadir}/doc/%{name}-1.3.5.rc3/TRANSLATION - %changelog +* Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.15.rc3 +- update to 1.3.5-rc3 +- use system hyphen library (#506074) +- fix update path for the doc subpackage (#512498) +- preserve directories when installing headers (#511800) + * Thu Jun 4 2009 Dan Hor?k - 1.3.5-0.14.rc2 -- update to 1.3.5.beta +- update to 1.3.5-rc2 * Mon May 18 2009 Dan Hor?k - 1.3.5-0.13.beta - rebuilt with podofo enabled Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/scribus/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 4 Jun 2009 08:08:48 -0000 1.20 +++ sources 21 Jul 2009 18:53:02 -0000 1.21 @@ -1 +1 @@ -161eaae7a97bd9f2824a677e771bd36f scribus-1.3.5.rc2.tar.bz2 +4c030bbec4405743fd2d3f842622351c scribus-1.3.5.rc3.tar.bz2 From akurtakov at fedoraproject.org Tue Jul 21 19:01:51 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Tue, 21 Jul 2009 19:01:51 +0000 (UTC) Subject: rpms/eclipse-checkstyle/devel eclipse-checkstyle.spec,1.7,1.8 Message-ID: <20090721190151.AAA5511C005E@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-checkstyle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23859/devel Modified Files: eclipse-checkstyle.spec Log Message: - Fix build with Eclipse 3.5. - Remove gcj_support. Index: eclipse-checkstyle.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-checkstyle/devel/eclipse-checkstyle.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- eclipse-checkstyle.spec 24 Feb 2009 13:38:10 -0000 1.7 +++ eclipse-checkstyle.spec 21 Jul 2009 19:01:50 -0000 1.8 @@ -1,16 +1,17 @@ -%define eclipse_base %{_libdir}/eclipse -%define cs_ver 4.1 -%define eclipse_ver 3.4 -%define gcj_support 1 +%global eclipse_base %{_libdir}/eclipse +%global install_loc %{_datadir}/eclipse/dropins/checkstyle +%global cs_ver 4.1 +%global eclipse_ver 3.5 Summary: Checkstyle plugin for Eclipse Name: eclipse-checkstyle Version: 4.0.1 -Release: 12%{?dist} +Release: 13%{?dist} License: LGPLv2+ Group: Development/Tools URL: http://eclipse-cs.sourceforge.net -Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +BuildArch: noarch Source0: CheckstylePlugin-v4_0_1.tar.bz2 Source10: checkout_and_build_tarball.sh @@ -32,13 +33,7 @@ BuildRequires: eclipse-pde >= 1:%{eclips BuildRequires: eclipse-cvs-client BuildRequires: checkstyle = 0:%{cs_ver} BuildRequires: checkstyle-optional = 0:%{cs_ver} -%if %{gcj_support} -BuildRequires: java-gcj-compat-devel >= 1.0.33 -Requires(post): java-gcj-compat >= 1.0.33 -Requires(postun): java-gcj-compat >= 1.0.33 -%else BuildRequires: java-devel >= 1.4.2 -%endif %description The Eclipse Checkstyle plugin integrates the Checkstyle Java code @@ -72,7 +67,7 @@ for jar in \ %{eclipse_base}/plugins/org.eclipse.core.commands_%{eclipse_ver}.*.jar \ %{eclipse_base}/plugins/org.eclipse.core.filebuffers_%{eclipse_ver}.*.jar \ %{eclipse_base}/plugins/org.eclipse.core.resources_%{eclipse_ver}.*.jar \ -%{eclipse_base}/plugins/org.eclipse.core.runtime_%{eclipse_ver}.*.jar \ +%{eclipse_base}/plugins/org.eclipse.core.runtime*.jar \ %{eclipse_base}/dropins/jdt/plugins/org.eclipse.jdt.core_%{eclipse_ver}.*.jar \ %{eclipse_base}/dropins/jdt/plugins/org.eclipse.jdt.ui_%{eclipse_ver}.*.jar \ %{eclipse_base}/plugins/org.eclipse.jface_%{eclipse_ver}.*.jar \ @@ -88,8 +83,8 @@ for jar in \ %{eclipse_base}/plugins/org.eclipse.ui.workbench_%{eclipse_ver}.*.jar \ %{eclipse_base}/plugins/org.eclipse.ui.workbench.texteditor_%{eclipse_ver}.*.jar \ %{eclipse_base}/plugins/org.eclipse.equinox.common_%{eclipse_ver}.*.jar \ -%{eclipse_base}/plugins/org.eclipse.equinox.registry_%{eclipse_ver}.*.jar \ -%{eclipse_base}/plugins/org.eclipse.core.jobs_%{eclipse_ver}.*.jar +%{eclipse_base}/plugins/org.eclipse.equinox.registry*.jar \ +%{eclipse_base}/plugins/org.eclipse.core.jobs_*.jar do CLASSPATH=$CLASSPATH:${jar} done @@ -108,57 +103,40 @@ popd %install rm -rf %{buildroot} -installDir=%{buildroot}/%{eclipse_base}/dropins/checkstyle -install -d -m755 $installDir/features/com.atlassw.tools.eclipse.checkstyle_%{version} +install -d -m 755 $RPM_BUILD_ROOT%{install_loc} +install -d -m 755 $RPM_BUILD_ROOT%{install_loc}/features/com.atlassw.tools.eclipse.checkstyle_%{version} BUILD_DIR=`pwd`/CheckstylePlugin # install feature -pushd $installDir/features/com.atlassw.tools.eclipse.checkstyle_%{version} +pushd $RPM_BUILD_ROOT%{install_loc}/features/com.atlassw.tools.eclipse.checkstyle_%{version} jar xvf ${BUILD_DIR}/dist/com.atlassw.tools.eclipse.checkstyle_%{version}-feature.jar popd # install plugin -pushd $installDir +pushd $RPM_BUILD_ROOT%{install_loc} jar xvf ${BUILD_DIR}/dist/com.atlassw.tools.eclipse.checkstyle_%{version}-bin.zip find . -type f -name '*src.zip' -print | xargs -t rm -f build-jar-repository \ - $installDir/plugins/com.atlassw.tools.eclipse.checkstyle_%{version} \ + $RPM_BUILD_ROOT%{install_loc}/plugins/com.atlassw.tools.eclipse.checkstyle_%{version} \ checkstyle-%{cs_ver} \ checkstyle-optional-%{cs_ver} \ commons-beanutils-core \ commons-logging antlr popd -%if %{gcj_support} - %{_bindir}/aot-compile-rpm -%endif - %clean rm -rf %{buildroot} -%if %{gcj_support} -%post -if [ -x %{_bindir}/rebuild-gcj-db ] -then - %{_bindir}/rebuild-gcj-db -fi -%postun -if [ -x %{_bindir}/rebuild-gcj-db ] -then - %{_bindir}/rebuild-gcj-db -fi -%endif - %files %defattr(-,root,root) %doc CheckstylePlugin/license/LICENSE.* -%{eclipse_base}/dropins/checkstyle - -%if %{gcj_support} -%attr(-,root,root) %{_libdir}/gcj/%{name} -%endif +%{install_loc} %changelog +* Tue Jul 21 2009 Alexander Kurtakov 4.0.1-13 +- Fix build with Eclipse 3.5. +- Remove gcj_support. + * Tue Feb 24 2009 Fedora Release Engineering - 4.0.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Tue Jul 21 19:13:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:13:57 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090721191357.B528010F87B@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From pkgdb at fedoraproject.org Tue Jul 21 19:14:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:15 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090721191415.D40E710F87B@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From pkgdb at fedoraproject.org Tue Jul 21 19:14:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:16 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090721191416.D992B10F89E@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From pkgdb at fedoraproject.org Tue Jul 21 19:14:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:21 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090721191421.7822A10F8A8@bastion2.fedora.phx.redhat.com> Package ecore in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From pkgdb at fedoraproject.org Tue Jul 21 19:14:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:25 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090721191425.E9B9B10F897@bastion2.fedora.phx.redhat.com> Package ecore in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From pkgdb at fedoraproject.org Tue Jul 21 19:14:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:35 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090721191435.7B6A810F89D@bastion2.fedora.phx.redhat.com> Package edje in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From pkgdb at fedoraproject.org Tue Jul 21 19:14:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:26 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090721191427.01DFE10F89B@bastion2.fedora.phx.redhat.com> Package ecore in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From pkgdb at fedoraproject.org Tue Jul 21 19:14:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:38 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090721191438.EEB3810F8A5@bastion2.fedora.phx.redhat.com> Package edje in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From pkgdb at fedoraproject.org Tue Jul 21 19:14:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:40 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090721191440.22E8E10F8A9@bastion2.fedora.phx.redhat.com> Package edje in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From pkgdb at fedoraproject.org Tue Jul 21 19:14:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:48 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090721191448.5548B10F897@bastion2.fedora.phx.redhat.com> Package eet in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From pkgdb at fedoraproject.org Tue Jul 21 19:14:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:51 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090721191451.DC62C10F898@bastion2.fedora.phx.redhat.com> Package eet in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From pkgdb at fedoraproject.org Tue Jul 21 19:14:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:14:50 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090721191450.E954610F8A8@bastion2.fedora.phx.redhat.com> Package eet in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From pkgdb at fedoraproject.org Tue Jul 21 19:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:02 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090721191502.6546410F89D@bastion2.fedora.phx.redhat.com> Package efreet in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From pkgdb at fedoraproject.org Tue Jul 21 19:15:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:00 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090721191500.0EE5C10F89B@bastion2.fedora.phx.redhat.com> Package efreet in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From pkgdb at fedoraproject.org Tue Jul 21 19:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:02 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090721191502.C8C7710F8B3@bastion2.fedora.phx.redhat.com> Package efreet in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From pkgdb at fedoraproject.org Tue Jul 21 19:15:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:08 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090721191508.D13FA10F8A9@bastion2.fedora.phx.redhat.com> Package embryo in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From pkgdb at fedoraproject.org Tue Jul 21 19:15:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:11 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090721191511.2361C10F8BB@bastion2.fedora.phx.redhat.com> Package embryo in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From pkgdb at fedoraproject.org Tue Jul 21 19:15:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:11 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090721191511.B49B010F8C5@bastion2.fedora.phx.redhat.com> Package embryo in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From pkgdb at fedoraproject.org Tue Jul 21 19:15:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:14 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090721191515.0E6B610F8C8@bastion2.fedora.phx.redhat.com> Package emotion in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From pkgdb at fedoraproject.org Tue Jul 21 19:15:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:15 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090721191515.EFCD710F8CA@bastion2.fedora.phx.redhat.com> Package emotion in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From pkgdb at fedoraproject.org Tue Jul 21 19:15:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:16 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090721191516.47F0C10F8CC@bastion2.fedora.phx.redhat.com> Package emotion in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From pkgdb at fedoraproject.org Tue Jul 21 19:15:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:20 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090721191520.8852C10F8AD@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From pkgdb at fedoraproject.org Tue Jul 21 19:15:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:22 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090721191522.B389310F8AF@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From pkgdb at fedoraproject.org Tue Jul 21 19:15:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:23 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090721191523.43E1D10F8CF@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From pkgdb at fedoraproject.org Tue Jul 21 19:15:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:27 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090721191527.BAA7E10F8A6@bastion2.fedora.phx.redhat.com> Package epeg in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From pkgdb at fedoraproject.org Tue Jul 21 19:15:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:29 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090721191529.3AE2110F8B0@bastion2.fedora.phx.redhat.com> Package epeg in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From pkgdb at fedoraproject.org Tue Jul 21 19:15:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:29 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090721191530.0AB8510F8D2@bastion2.fedora.phx.redhat.com> Package epeg in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From pkgdb at fedoraproject.org Tue Jul 21 19:15:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:32 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090721191532.99EF910F8D4@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From pkgdb at fedoraproject.org Tue Jul 21 19:15:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:33 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090721191533.8DC9810F8D7@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From pkgdb at fedoraproject.org Tue Jul 21 19:15:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:34 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090721191534.1994910F8D9@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From pkgdb at fedoraproject.org Tue Jul 21 19:15:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:40 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090721191540.E2F5810F89B@bastion2.fedora.phx.redhat.com> Package evas in Fedora devel was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From pkgdb at fedoraproject.org Tue Jul 21 19:15:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:42 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090721191542.2BAF610F8DA@bastion2.fedora.phx.redhat.com> Package evas in Fedora 10 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From pkgdb at fedoraproject.org Tue Jul 21 19:15:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 19:15:43 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090721191543.0400C10F8DC@bastion2.fedora.phx.redhat.com> Package evas in Fedora 11 was orphaned by stalwart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From awjb at fedoraproject.org Tue Jul 21 19:22:45 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:22:45 +0000 (UTC) Subject: rpms/synce-sync-engine/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 synce-sync-engine.spec, 1.9, 1.10 Message-ID: <20090721192245.C99FD11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-sync-engine/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30492/F-10 Modified Files: .cvsignore sources synce-sync-engine.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 8 Feb 2009 11:53:08 -0000 1.4 +++ .cvsignore 21 Jul 2009 19:22:15 -0000 1.5 @@ -1 +1 @@ -sync-engine-0.13.tar.gz +synce-sync-engine-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 8 Feb 2009 11:53:08 -0000 1.4 +++ sources 21 Jul 2009 19:22:15 -0000 1.5 @@ -1 +1 @@ -6b3d776d0cbba16fb2b9e89c1ef84ba2 sync-engine-0.13.tar.gz +b77bed369048a295e8e5d1846bb348f4 synce-sync-engine-0.14.tar.gz Index: synce-sync-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-10/synce-sync-engine.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- synce-sync-engine.spec 16 Jun 2009 20:50:57 -0000 1.9 +++ synce-sync-engine.spec 21 Jul 2009 19:22:15 -0000 1.10 @@ -2,14 +2,14 @@ %define debug_package %{nil} Name: synce-sync-engine -Version: 0.13 -Release: 3%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Synce synchronization engine Group: Applications/Communications License: GPLv2+ URL: http://www.synce.org/ -Source0: http://dl.sourceforge.net/sourceforge/synce/sync-engine-%{version}.tar.gz +Source0: http://dl.sourceforge.net/sourceforge/synce/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel python-setuptools @@ -41,7 +41,7 @@ Obsoletes: syncekonnector %{summary} %prep -%setup -q -n sync-engine-%{version} +%setup -q %build %{__python} setup.py build @@ -78,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/*py %{_bindir}/sync-engine %{python_sitelib}/SyncEngine/ -%{python_sitelib}/sync_engine-%{version}-py?.?.egg-info/ +%{python_sitelib}/synce_sync_engine-%{version}-py?.?.egg-info/ %{_datadir}/doc/sync-engine/ %files -n libopensync-plugin-synce-wm5 @@ -87,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/* %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jun 16 2009 Andreas Bierfert - 0.13-3 - fix typo (#506352) From awjb at fedoraproject.org Tue Jul 21 19:22:46 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:22:46 +0000 (UTC) Subject: rpms/synce-sync-engine/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 synce-sync-engine.spec, 1.12, 1.13 Message-ID: <20090721192246.039DD11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-sync-engine/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30492/F-11 Modified Files: .cvsignore sources synce-sync-engine.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 8 Feb 2009 11:53:10 -0000 1.4 +++ .cvsignore 21 Jul 2009 19:22:15 -0000 1.5 @@ -1 +1 @@ -sync-engine-0.13.tar.gz +synce-sync-engine-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 8 Feb 2009 11:53:11 -0000 1.4 +++ sources 21 Jul 2009 19:22:15 -0000 1.5 @@ -1 +1 @@ -6b3d776d0cbba16fb2b9e89c1ef84ba2 sync-engine-0.13.tar.gz +b77bed369048a295e8e5d1846bb348f4 synce-sync-engine-0.14.tar.gz Index: synce-sync-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-11/synce-sync-engine.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- synce-sync-engine.spec 16 Jun 2009 20:50:57 -0000 1.12 +++ synce-sync-engine.spec 21 Jul 2009 19:22:15 -0000 1.13 @@ -2,14 +2,14 @@ %define debug_package %{nil} Name: synce-sync-engine -Version: 0.13 -Release: 3%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Synce synchronization engine Group: Applications/Communications License: GPLv2+ URL: http://www.synce.org/ -Source0: http://dl.sourceforge.net/sourceforge/synce/sync-engine-%{version}.tar.gz +Source0: http://dl.sourceforge.net/sourceforge/synce/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel python-setuptools @@ -41,7 +41,7 @@ Obsoletes: syncekonnector %{summary} %prep -%setup -q -n sync-engine-%{version} +%setup -q %build %{__python} setup.py build @@ -78,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/*py %{_bindir}/sync-engine %{python_sitelib}/SyncEngine/ -%{python_sitelib}/sync_engine-%{version}-py?.?.egg-info/ +%{python_sitelib}/synce_sync_engine-%{version}-py?.?.egg-info/ %{_datadir}/doc/sync-engine/ %files -n libopensync-plugin-synce-wm5 @@ -87,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/* %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jun 16 2009 Andreas Bierfert - 0.13-3 - fix typo (#506352) From awjb at fedoraproject.org Tue Jul 21 19:22:46 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:22:46 +0000 (UTC) Subject: rpms/synce-sync-engine/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 synce-sync-engine.spec, 1.12, 1.13 Message-ID: <20090721192246.41A5B11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-sync-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30492/devel Modified Files: .cvsignore sources synce-sync-engine.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 8 Feb 2009 11:53:10 -0000 1.4 +++ .cvsignore 21 Jul 2009 19:22:15 -0000 1.5 @@ -1 +1 @@ -sync-engine-0.13.tar.gz +synce-sync-engine-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 8 Feb 2009 11:53:11 -0000 1.4 +++ sources 21 Jul 2009 19:22:16 -0000 1.5 @@ -1 +1 @@ -6b3d776d0cbba16fb2b9e89c1ef84ba2 sync-engine-0.13.tar.gz +b77bed369048a295e8e5d1846bb348f4 synce-sync-engine-0.14.tar.gz Index: synce-sync-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/devel/synce-sync-engine.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- synce-sync-engine.spec 16 Jun 2009 20:50:58 -0000 1.12 +++ synce-sync-engine.spec 21 Jul 2009 19:22:16 -0000 1.13 @@ -2,14 +2,14 @@ %define debug_package %{nil} Name: synce-sync-engine -Version: 0.13 -Release: 3%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Synce synchronization engine Group: Applications/Communications License: GPLv2+ URL: http://www.synce.org/ -Source0: http://dl.sourceforge.net/sourceforge/synce/sync-engine-%{version}.tar.gz +Source0: http://dl.sourceforge.net/sourceforge/synce/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel python-setuptools @@ -41,7 +41,7 @@ Obsoletes: syncekonnector %{summary} %prep -%setup -q -n sync-engine-%{version} +%setup -q %build %{__python} setup.py build @@ -78,7 +78,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/*py %{_bindir}/sync-engine %{python_sitelib}/SyncEngine/ -%{python_sitelib}/sync_engine-%{version}-py?.?.egg-info/ +%{python_sitelib}/synce_sync_engine-%{version}-py?.?.egg-info/ %{_datadir}/doc/sync-engine/ %files -n libopensync-plugin-synce-wm5 @@ -87,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/* %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jun 16 2009 Andreas Bierfert - 0.13-3 - fix typo (#506352) From awjb at fedoraproject.org Tue Jul 21 19:22:49 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:22:49 +0000 (UTC) Subject: rpms/synce-hal/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 synce-hal.spec, 1.5, 1.6 synce-dbus.conf, 1.1, NONE Message-ID: <20090721192249.10D3111C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30621/devel Modified Files: .cvsignore sources synce-hal.spec Removed Files: synce-dbus.conf Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Feb 2009 11:21:37 -0000 1.3 +++ .cvsignore 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -synce-hal-0.13.1.tar.gz +synce-hal-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Feb 2009 11:21:38 -0000 1.3 +++ sources 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -bf5d36ed73d6db6bdb310410c294a124 synce-hal-0.13.1.tar.gz +1c3842c2361bbefc92525a431312516f synce-hal-0.14.tar.gz Index: synce-hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/devel/synce-hal.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- synce-hal.spec 9 Jul 2009 16:03:43 -0000 1.5 +++ synce-hal.spec 21 Jul 2009 19:22:48 -0000 1.6 @@ -1,19 +1,19 @@ Name: synce-hal -Version: 0.13.1 -Release: 4%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection framework and dccm-implementation Group: Applications/Communications License: GPLv2 URL: http://www.synce.org Source0: http://downloads.sourceforge.net/synce/%{name}-%{version}.tar.gz -Source1: synce-dbus.conf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsynce-devel BuildRequires: glib2-devel gnet2-devel BuildRequires: hal-devel BuildRequires: dbus-glib-devel +BuildRequires: python Obsoletes: odccm <= %{version} Provides: odccm = %{version}-%{release} @@ -35,7 +35,6 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -install -Dpm644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/dbus-1/system.d/synce.conf install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-up.d/synce-bt-ipup \ $RPM_BUILD_ROOT/%{_sysconfdir}/ppp/synce-bt-ipup install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-down.d/synce-bt-ipdown \ @@ -49,13 +48,21 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO +%{_bindir}/* %{_libexecdir}/* %{_datadir}/hal/fdi/policy/20thirdparty/10-synce.fdi %{_datadir}/synce-hal/ -%config %{_sysconfdir}/dbus-1/system.d/synce.conf +%config %{_sysconfdir}/dbus-1/system.d/* %{_sysconfdir}/ppp/peers/* -%{_sysconfdir}/ppp/* +%{_sysconfdir}/ppp/synce-bt* +%{_sysconfdir}/ppp/ip-down.d/synce-bt* +%{_sysconfdir}/ppp/ip-up.d/synce-bt* + %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jul 07 2009 Adam Jackson 0.13.1-4 - Fix Provides: of synce-serial. --- synce-dbus.conf DELETED --- From awjb at fedoraproject.org Tue Jul 21 19:23:18 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:23:18 +0000 (UTC) Subject: rpms/synce-hal/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 synce-hal.spec, 1.4, 1.5 synce-dbus.conf, 1.1, NONE Message-ID: <20090721192318.5F1A511C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-hal/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30621/F-10 Modified Files: .cvsignore sources synce-hal.spec Removed Files: synce-dbus.conf Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Feb 2009 11:21:37 -0000 1.3 +++ .cvsignore 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -synce-hal-0.13.1.tar.gz +synce-hal-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Feb 2009 11:21:37 -0000 1.3 +++ sources 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -bf5d36ed73d6db6bdb310410c294a124 synce-hal-0.13.1.tar.gz +1c3842c2361bbefc92525a431312516f synce-hal-0.14.tar.gz Index: synce-hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-10/synce-hal.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- synce-hal.spec 9 Jul 2009 16:03:43 -0000 1.4 +++ synce-hal.spec 21 Jul 2009 19:22:48 -0000 1.5 @@ -1,19 +1,19 @@ Name: synce-hal -Version: 0.13.1 -Release: 4%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection framework and dccm-implementation Group: Applications/Communications License: GPLv2 URL: http://www.synce.org Source0: http://downloads.sourceforge.net/synce/%{name}-%{version}.tar.gz -Source1: synce-dbus.conf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsynce-devel BuildRequires: glib2-devel gnet2-devel BuildRequires: hal-devel BuildRequires: dbus-glib-devel +BuildRequires: python Obsoletes: odccm <= %{version} Provides: odccm = %{version}-%{release} @@ -35,7 +35,6 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -install -Dpm644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/dbus-1/system.d/synce.conf install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-up.d/synce-bt-ipup \ $RPM_BUILD_ROOT/%{_sysconfdir}/ppp/synce-bt-ipup install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-down.d/synce-bt-ipdown \ @@ -49,13 +48,21 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO +%{_bindir}/* %{_libexecdir}/* %{_datadir}/hal/fdi/policy/20thirdparty/10-synce.fdi %{_datadir}/synce-hal/ -%config %{_sysconfdir}/dbus-1/system.d/synce.conf +%config %{_sysconfdir}/dbus-1/system.d/* %{_sysconfdir}/ppp/peers/* -%{_sysconfdir}/ppp/* +%{_sysconfdir}/ppp/synce-bt* +%{_sysconfdir}/ppp/ip-down.d/synce-bt* +%{_sysconfdir}/ppp/ip-up.d/synce-bt* + %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jul 07 2009 Adam Jackson 0.13.1-4 - Fix Provides: of synce-serial. --- synce-dbus.conf DELETED --- From awjb at fedoraproject.org Tue Jul 21 19:23:18 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:23:18 +0000 (UTC) Subject: rpms/synce-hal/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 synce-hal.spec, 1.5, 1.6 synce-dbus.conf, 1.1, NONE Message-ID: <20090721192318.A876C11C0497@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-hal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30621/F-11 Modified Files: .cvsignore sources synce-hal.spec Removed Files: synce-dbus.conf Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Feb 2009 11:21:37 -0000 1.3 +++ .cvsignore 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -synce-hal-0.13.1.tar.gz +synce-hal-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Feb 2009 11:21:38 -0000 1.3 +++ sources 21 Jul 2009 19:22:48 -0000 1.4 @@ -1 +1 @@ -bf5d36ed73d6db6bdb310410c294a124 synce-hal-0.13.1.tar.gz +1c3842c2361bbefc92525a431312516f synce-hal-0.14.tar.gz Index: synce-hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/F-11/synce-hal.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- synce-hal.spec 7 Jul 2009 14:38:13 -0000 1.5 +++ synce-hal.spec 21 Jul 2009 19:22:48 -0000 1.6 @@ -1,19 +1,19 @@ Name: synce-hal -Version: 0.13.1 -Release: 4%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: Connection framework and dccm-implementation Group: Applications/Communications License: GPLv2 URL: http://www.synce.org Source0: http://downloads.sourceforge.net/synce/%{name}-%{version}.tar.gz -Source1: synce-dbus.conf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsynce-devel BuildRequires: glib2-devel gnet2-devel BuildRequires: hal-devel BuildRequires: dbus-glib-devel +BuildRequires: python Obsoletes: odccm <= %{version} Provides: odccm = %{version}-%{release} @@ -35,7 +35,6 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -install -Dpm644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/dbus-1/system.d/synce.conf install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-up.d/synce-bt-ipup \ $RPM_BUILD_ROOT/%{_sysconfdir}/ppp/synce-bt-ipup install -Dpm644 $RPM_BUILD_ROOT%{_sysconfdir}/ppp/ip-down.d/synce-bt-ipdown \ @@ -49,13 +48,21 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO +%{_bindir}/* %{_libexecdir}/* %{_datadir}/hal/fdi/policy/20thirdparty/10-synce.fdi %{_datadir}/synce-hal/ -%config %{_sysconfdir}/dbus-1/system.d/synce.conf +%config %{_sysconfdir}/dbus-1/system.d/* %{_sysconfdir}/ppp/peers/* -%{_sysconfdir}/ppp/* +%{_sysconfdir}/ppp/synce-bt* +%{_sysconfdir}/ppp/ip-down.d/synce-bt* +%{_sysconfdir}/ppp/ip-up.d/synce-bt* + %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Tue Jul 07 2009 Adam Jackson 0.13.1-4 - Fix Provides: of synce-serial. --- synce-dbus.conf DELETED --- From jgarzik at fedoraproject.org Tue Jul 21 19:24:20 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 19:24:20 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.3,1.4 Message-ID: <20090721192420.CD0AA11C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30950 Modified Files: cld.spec Log Message: rebuild Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cld.spec 21 Jul 2009 17:43:53 -0000 1.3 +++ cld.spec 21 Jul 2009 19:23:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.3.gc5b5f962%{?dist} +Release: 0.4.gc5b5f962%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -101,6 +101,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 +- rebuild for koji silliness + * Tue Jul 21 2009 Jeff Garzik - 0.2-0.3.gc5b5f962 - update to commit c5b5f9622334b273c47e7aad5bd53e280041a045 From jgarzik at fedoraproject.org Tue Jul 21 19:25:13 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 19:25:13 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.spec,1.2,1.3 Message-ID: <20090721192513.B18E011C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31252 Modified Files: chunkd.spec Log Message: rebuild Index: chunkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/chunkd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- chunkd.spec 21 Jul 2009 18:02:25 -0000 1.2 +++ chunkd.spec 21 Jul 2009 19:24:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: chunkd Version: 0.4 -Release: 0.3.g5f69efd9%{?dist} +Release: 0.4.g5f69efd9%{?dist} Summary: Data storage daemon for cloud computing Group: System Environment/Base @@ -99,6 +99,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.4-0.4.g5f69efd9 +- rebuild for koji silliness + * Tue Jul 21 2009 Jeff Garzik - 0.4-0.3.g5f69efd9 - update source to commit 5f69efd93fb6dc0c2e9882cd3c22cc096eede486 From jgarzik at fedoraproject.org Tue Jul 21 19:25:55 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Tue, 21 Jul 2009 19:25:55 +0000 (UTC) Subject: rpms/tabled/devel tabled.spec,1.3,1.4 Message-ID: <20090721192555.58F9D11C005E@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31567 Modified Files: tabled.spec Log Message: rebuild Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tabled.spec 21 Jul 2009 18:08:26 -0000 1.3 +++ tabled.spec 21 Jul 2009 19:25:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: tabled Version: 0.3 -Release: 0.4.g8102bcda%{?dist} +Release: 0.5.g8102bcda%{?dist} Summary: Distributed key/value table service Group: System Environment/Base @@ -101,6 +101,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.3-0.5.g8102bcda +- rebuild for koji silliness + * Tue Jul 21 2009 Jeff Garzik - 0.3-0.4.g8102bcda - update to git commit 8102bcda428a9c2d9647d33f21ede6764a514c6e From ajax at fedoraproject.org Tue Jul 21 19:32:33 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 19:32:33 +0000 (UTC) Subject: comps comps-f12.xml.in,1.48,1.49 Message-ID: <20090721193233.8E56F11C005E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv980 Modified Files: comps-f12.xml.in Log Message: enscript -> optional Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- comps-f12.xml.in 21 Jul 2009 05:34:38 -0000 1.48 +++ comps-f12.xml.in 21 Jul 2009 19:32:03 -0000 1.49 @@ -4628,7 +4628,6 @@ ghostscript bluez-cups cups-pk-helper - enscript gutenprint gutenprint-foomatic hal-cups-utils @@ -4638,6 +4637,7 @@ samba-client system-config-printer a2ps + enscript From awjb at fedoraproject.org Tue Jul 21 19:43:25 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:43:25 +0000 (UTC) Subject: rpms/synce-kpm/F-10 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 synce-kpm.spec, 1.4, 1.5 Message-ID: <20090721194325.73C5411C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-kpm/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3404/F-10 Modified Files: .cvsignore sources synce-kpm.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 8 Feb 2009 12:15:22 -0000 1.5 +++ .cvsignore 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -synce-kpm-0.13.tar.gz +synce-kpm-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Feb 2009 12:15:22 -0000 1.5 +++ sources 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -ddc1cd10e634090b68344f50fd330b35 synce-kpm-0.13.tar.gz +5eb690c9b1a4e3114056f87cd2a27551 synce-kpm-0.14.tar.gz Index: synce-kpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-10/synce-kpm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- synce-kpm.spec 8 Feb 2009 12:15:22 -0000 1.4 +++ synce-kpm.spec 21 Jul 2009 19:42:55 -0000 1.5 @@ -2,7 +2,7 @@ %define debug_package %{nil} Name: synce-kpm -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: SynCE KDE PDA Manager @@ -54,6 +54,13 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-synce-kpm.desktop %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + +* Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13-1 - version upgrade (#457949) From awjb at fedoraproject.org Tue Jul 21 19:43:25 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:43:25 +0000 (UTC) Subject: rpms/synce-kpm/F-11 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 synce-kpm.spec, 1.6, 1.7 Message-ID: <20090721194325.957C911C048A@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-kpm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3404/F-11 Modified Files: .cvsignore sources synce-kpm.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 8 Feb 2009 12:15:23 -0000 1.5 +++ .cvsignore 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -synce-kpm-0.13.tar.gz +synce-kpm-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Feb 2009 12:15:23 -0000 1.5 +++ sources 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -ddc1cd10e634090b68344f50fd330b35 synce-kpm-0.13.tar.gz +5eb690c9b1a4e3114056f87cd2a27551 synce-kpm-0.14.tar.gz Index: synce-kpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/F-11/synce-kpm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- synce-kpm.spec 26 Feb 2009 04:42:50 -0000 1.6 +++ synce-kpm.spec 21 Jul 2009 19:42:55 -0000 1.7 @@ -2,8 +2,8 @@ %define debug_package %{nil} Name: synce-kpm -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: SynCE KDE PDA Manager Group: Applications/Communications @@ -54,6 +54,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-synce-kpm.desktop %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From awjb at fedoraproject.org Tue Jul 21 19:43:25 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 19:43:25 +0000 (UTC) Subject: rpms/synce-kpm/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 synce-kpm.spec, 1.6, 1.7 Message-ID: <20090721194325.C8EAF11C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-kpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3404/devel Modified Files: .cvsignore sources synce-kpm.spec Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 8 Feb 2009 12:15:23 -0000 1.5 +++ .cvsignore 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -synce-kpm-0.13.tar.gz +synce-kpm-0.14.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 8 Feb 2009 12:15:23 -0000 1.5 +++ sources 21 Jul 2009 19:42:55 -0000 1.6 @@ -1 +1 @@ -ddc1cd10e634090b68344f50fd330b35 synce-kpm-0.13.tar.gz +5eb690c9b1a4e3114056f87cd2a27551 synce-kpm-0.14.tar.gz Index: synce-kpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/devel/synce-kpm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- synce-kpm.spec 26 Feb 2009 04:42:50 -0000 1.6 +++ synce-kpm.spec 21 Jul 2009 19:42:55 -0000 1.7 @@ -2,8 +2,8 @@ %define debug_package %{nil} Name: synce-kpm -Version: 0.13 -Release: 2%{?dist} +Version: 0.14 +Release: 1%{?dist} Summary: SynCE KDE PDA Manager Group: Applications/Communications @@ -54,6 +54,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-synce-kpm.desktop %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 0.14-1 +- version upgrade + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From limb at fedoraproject.org Tue Jul 21 19:50:46 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Tue, 21 Jul 2009 19:50:46 +0000 (UTC) Subject: rpms/chkrootkit/devel chkrootkit-0.48-chkutmp-outofbounds.patch, NONE, 1.1 chkrootkit.spec, 1.36, 1.37 Message-ID: <20090721195046.CDC8111C005E@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/chkrootkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5146 Modified Files: chkrootkit.spec Added Files: chkrootkit-0.48-chkutmp-outofbounds.patch Log Message: Patch for x86_64 chkutmp crash, BZ 513029. chkrootkit-0.48-chkutmp-outofbounds.patch: chkutmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE chkrootkit-0.48-chkutmp-outofbounds.patch --- --- chkutmp.c~ 2006-10-18 13:00:29.000000000 -0500 +++ chkutmp.c 2009-07-21 14:42:41.000000000 -0500 @@ -83 +83 @@ - struct ps_line *endp = &psl_p[MAXBUF]; + struct ps_line *endp = &psl_p[MAXBUF-1]; @@ -135 +135 @@ - struct utmp_line *endp = &utl_p[MAXBUF]; + struct utmp_line *endp = &utl_p[MAXBUF-1]; Index: chkrootkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/chkrootkit/devel/chkrootkit.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- chkrootkit.spec 24 Feb 2009 08:57:49 -0000 1.36 +++ chkrootkit.spec 21 Jul 2009 19:50:16 -0000 1.37 @@ -1,6 +1,6 @@ Name: chkrootkit Version: 0.48 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Tool to locally check for signs of a rootkit Group: Applications/System License: BSD and GPLv2+ and Python @@ -20,6 +20,7 @@ Patch6: chkrootkit-0.47-chklastl Patch7: chkrootkit-0.48-anomalies.patch Patch8: chkrootkit-0.48-nophpcheck.patch Patch9: chkrootkit-0.48-chkproc-psver.patch +Patch10: chkrootkit-0.48-chkutmp-outofbounds.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -56,6 +57,7 @@ It contains: %patch7 -p1 -b .anomalies %patch8 -p1 -b .nophpcheck %patch9 -p1 -b .chkproc-psver +%patch10 -p0 sed -i -e 's!\s\+ at strip.*!!g' Makefile @@ -123,6 +125,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Tue Jul 21 2009 Jon Ciesla 0.48-12 +- Patch to fix crash in chkutmp on x86_64. + * Tue Feb 24 2009 Michael Schwendt - 0.48-11 - update .desktop file for Icon Theme Specification - no longer add X-Fedora category to .desktop file From rhughes at fedoraproject.org Tue Jul 21 19:51:47 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 21 Jul 2009 19:51:47 +0000 (UTC) Subject: rpms/DeviceKit-power/F-11 DeviceKit-power.spec, 1.15, 1.16 sources, 1.12, 1.13 Message-ID: <20090721195147.720E411C005E@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/DeviceKit-power/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5543 Modified Files: DeviceKit-power.spec sources Log Message: * Tue Jul 21 2009 Richard Hughes - 010-0.2.20090721git - Update to todays git snapshot which detects hibernate properly, and may fix battery refreshing when the power state is changed. Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/DeviceKit-power.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- DeviceKit-power.spec 21 Jul 2009 15:54:09 -0000 1.15 +++ DeviceKit-power.spec 21 Jul 2009 19:51:47 -0000 1.16 @@ -9,7 +9,7 @@ Summary: Power Management Service Name: DeviceKit-power Version: 010 -Release: 0.1.%{?alphatag}git%{?dist} +Release: 0.2.%{?alphatag}git%{?dist} #Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -113,6 +113,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 21 2009 Richard Hughes - 010-0.2.20090721git +- Update to todays git snapshot which detects hibernate properly, and may + fix battery refreshing when the power state is changed. + * Tue Jul 21 2009 Richard Hughes - 010-0.1.20090721git - Update to todays git snapshot which detects batteries that stop charging at less than 95%. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 21 Jul 2009 15:54:09 -0000 1.12 +++ sources 21 Jul 2009 19:51:47 -0000 1.13 @@ -1 +1 @@ -4244dd809a156a194cfc6207adb58ad7 DeviceKit-power-010-20090721.tar.gz +cee884a47ba13cc1df027d88a1d43582 DeviceKit-power-010-20090721.tar.gz From rhughes at fedoraproject.org Tue Jul 21 19:57:44 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Tue, 21 Jul 2009 19:57:44 +0000 (UTC) Subject: rpms/gnome-power-manager/devel gnome-power-manager.spec, 1.165, 1.166 sources, 1.62, 1.63 Message-ID: <20090721195744.E3D4E11C005E@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6732 Modified Files: gnome-power-manager.spec sources Log Message: * Tue Jul 21 2009 Richard Hughes - 2.27.3-0.2.20090721git - Update to todays git snapshot to fix some issues found during the test day. Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.165 retrieving revision 1.166 diff -u -p -r1.165 -r1.166 --- gnome-power-manager.spec 21 Jul 2009 15:31:57 -0000 1.165 +++ gnome-power-manager.spec 21 Jul 2009 19:57:14 -0000 1.166 @@ -6,7 +6,7 @@ Summary: GNOME Power Manager Name: gnome-power-manager Version: 2.27.3 #Release: 2%{?dist} -Release: 0.1.%{?alphatag}git%{?dist} +Release: 0.2.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System #Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz @@ -156,6 +156,9 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Tue Jul 21 2009 Richard Hughes - 2.27.3-0.2.20090721git +- Update to todays git snapshot to fix some issues found during the test day. + * Tue Jul 21 2009 Richard Hughes - 2.27.3-0.1.20090721git - Update to todays git snapshot to fix many issues with multiple composite laptop batteries and notifications. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/sources,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- sources 21 Jul 2009 15:31:58 -0000 1.62 +++ sources 21 Jul 2009 19:57:14 -0000 1.63 @@ -1 +1 @@ -743abe92b54c5a31bbae97ad974bbd51 gnome-power-manager-2.27.3-20090721.tar.gz +4e9952e5347df245fa2ad2bf3d316584 gnome-power-manager-2.27.3-20090721.tar.gz From sharkcz at fedoraproject.org Tue Jul 21 19:59:11 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Tue, 21 Jul 2009 19:59:11 +0000 (UTC) Subject: rpms/scribus/F-11 scribus-1.3.5-install-headers.patch, NONE, 1.1 .cvsignore, 1.20, 1.21 scribus.spec, 1.43, 1.44 sources, 1.20, 1.21 Message-ID: <20090721195911.4B6F411C005E@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/scribus/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7293 Modified Files: .cvsignore scribus.spec sources Added Files: scribus-1.3.5-install-headers.patch Log Message: * Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.14.rc3 - update to 1.3.5-rc3 - fix update path for the doc subpackage (#512498) - preserve directories when installing headers (#511800) scribus-1.3.5-install-headers.patch: CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE scribus-1.3.5-install-headers.patch --- --- scribus-1.3.5.rc3/scribus/CMakeLists.txt.orig 2009-05-17 23:23:08.000000000 +0200 +++ scribus-1.3.5.rc3/scribus/CMakeLists.txt 2009-07-21 15:09:25.000000000 +0200 @@ -834,8 +834,7 @@ ENDIF(APPLEBUNDLE) #Install our header files, selected from all existing dirs IF(NOT WANT_NOHEADERINSTALL) - FILE( GLOB_RECURSE SCRIBUS_HEADER_FILES *.h ) - INSTALL(FILES ${SCRIBUS_HEADER_FILES} DESTINATION ${INCLUDEDIR}) + INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ DESTINATION ${INCLUDEDIR} FILES_MATCHING PATTERN "*.h") ELSE(NOT WANT_NOHEADERINSTALL) MESSAGE(STATUS "No source header files will be installed") ENDIF(NOT WANT_NOHEADERINSTALL) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-11/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 4 Jun 2009 08:47:59 -0000 1.20 +++ .cvsignore 21 Jul 2009 19:59:10 -0000 1.21 @@ -1 +1 @@ -scribus-1.3.5.rc2.tar.bz2 +scribus-1.3.5.rc3.tar.bz2 Index: scribus.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-11/scribus.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- scribus.spec 4 Jun 2009 08:47:59 -0000 1.43 +++ scribus.spec 21 Jul 2009 19:59:10 -0000 1.44 @@ -1,13 +1,14 @@ Name: scribus Version: 1.3.5 -Release: 0.13.rc2%{?dist} +Release: 0.14.rc3%{?dist} Summary: DeskTop Publishing application written in Qt Group: Applications/Productivity License: GPLv2+ URL: http://www.scribus.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc2.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc3.tar.bz2 +Patch1: %{name}-1.3.5-install-headers.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake @@ -62,6 +63,7 @@ Group: Development/Tools Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch +Obsoletes: %{name}-doc < 1.3.5-0.12.beta %endif @@ -69,7 +71,8 @@ BuildArch: noarch %{summary} %prep -%setup -q -n %{name}-%{version}.rc2 +%setup -q -n %{name}-%{version}.rc3 +%patch1 -p1 -b .install-headers # recode man page to UTF-8 pushd scribus/manpages @@ -85,8 +88,8 @@ chmod a-x scribus/pageitem_latexframe.h %build mkdir build pushd build -%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} \ - -DCMAKE_SKIP_RPATH=YES ../ +%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} .. + make VERBOSE=1 %{?_smp_mflags} popd @@ -102,6 +105,9 @@ install -p -D -m0644 ${RPM_BUILD_ROOT}%{ find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';' +# remove empty dirs in %{_includedir} +rm -rf ${RPM_BUILD_ROOT}%{_includedir}/%{name}/{dicts,doc,dtd,editorconfig,icons,keysets,loremipsum,manpages,profiles,swatches,templates,unicodemap} + # install the global desktop file rm -f ${RPM_BUILD_ROOT}%{_datadir}/mimelnk/application/*scribus.desktop desktop-file-install --vendor="fedora" \ @@ -141,27 +147,31 @@ update-mime-database %{_datadir}/mime > %files doc %defattr(-,root,root,-) -%dir %{_datadir}/doc/%{name}-1.3.5.rc2 -%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc2/cs -%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc2/de -%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc2/en -%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc2/fr -%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc2/pl -%{_datadir}/doc/%{name}-1.3.5.rc2/AUTHORS -%{_datadir}/doc/%{name}-1.3.5.rc2/BUILDING -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLog -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLogSVN -%{_datadir}/doc/%{name}-1.3.5.rc2/COPYING -%{_datadir}/doc/%{name}-1.3.5.rc2/NEWS -%{_datadir}/doc/%{name}-1.3.5.rc2/README* -%{_datadir}/doc/%{name}-1.3.5.rc2/TODO -%{_datadir}/doc/%{name}-1.3.5.rc2/PACKAGING -%{_datadir}/doc/%{name}-1.3.5.rc2/LINKS -%{_datadir}/doc/%{name}-1.3.5.rc2/TRANSLATION +%dir %{_datadir}/doc/%{name}-1.3.5.rc3 +%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc3/cs +%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc3/de +%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc3/en +%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc3/fr +%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc3/pl +%{_datadir}/doc/%{name}-1.3.5.rc3/AUTHORS +%{_datadir}/doc/%{name}-1.3.5.rc3/BUILDING +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLog +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLogSVN +%{_datadir}/doc/%{name}-1.3.5.rc3/COPYING +%{_datadir}/doc/%{name}-1.3.5.rc3/NEWS +%{_datadir}/doc/%{name}-1.3.5.rc3/README* +%{_datadir}/doc/%{name}-1.3.5.rc3/TODO +%{_datadir}/doc/%{name}-1.3.5.rc3/PACKAGING +%{_datadir}/doc/%{name}-1.3.5.rc3/LINKS +%{_datadir}/doc/%{name}-1.3.5.rc3/TRANSLATION - %changelog +* Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.14.rc3 +- update to 1.3.5-rc3 +- fix update path for the doc subpackage (#512498) +- preserve directories when installing headers (#511800) + * Thu Jun 4 2009 Dan Hor?k - 1.3.5-0.13.rc2 - update to 1.3.5.rc2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-11/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 4 Jun 2009 08:47:59 -0000 1.20 +++ sources 21 Jul 2009 19:59:10 -0000 1.21 @@ -1 +1 @@ -161eaae7a97bd9f2824a677e771bd36f scribus-1.3.5.rc2.tar.bz2 +4c030bbec4405743fd2d3f842622351c scribus-1.3.5.rc3.tar.bz2 From sharkcz at fedoraproject.org Tue Jul 21 20:00:31 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Tue, 21 Jul 2009 20:00:31 +0000 (UTC) Subject: rpms/scribus/F-10 scribus-1.3.5-install-headers.patch, NONE, 1.1 .cvsignore, 1.19, 1.20 scribus.spec, 1.37, 1.38 sources, 1.19, 1.20 Message-ID: <20090721200031.F2F9211C0497@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/scribus/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7840 Modified Files: .cvsignore scribus.spec sources Added Files: scribus-1.3.5-install-headers.patch Log Message: * Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.14.rc3 - update to 1.3.5-rc3 - fix update path for the doc subpackage (#512498) - preserve directories when installing headers (#511800) scribus-1.3.5-install-headers.patch: CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE scribus-1.3.5-install-headers.patch --- --- scribus-1.3.5.rc3/scribus/CMakeLists.txt.orig 2009-05-17 23:23:08.000000000 +0200 +++ scribus-1.3.5.rc3/scribus/CMakeLists.txt 2009-07-21 15:09:25.000000000 +0200 @@ -834,8 +834,7 @@ ENDIF(APPLEBUNDLE) #Install our header files, selected from all existing dirs IF(NOT WANT_NOHEADERINSTALL) - FILE( GLOB_RECURSE SCRIBUS_HEADER_FILES *.h ) - INSTALL(FILES ${SCRIBUS_HEADER_FILES} DESTINATION ${INCLUDEDIR}) + INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ DESTINATION ${INCLUDEDIR} FILES_MATCHING PATTERN "*.h") ELSE(NOT WANT_NOHEADERINSTALL) MESSAGE(STATUS "No source header files will be installed") ENDIF(NOT WANT_NOHEADERINSTALL) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-10/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 4 Jun 2009 08:49:20 -0000 1.19 +++ .cvsignore 21 Jul 2009 20:00:30 -0000 1.20 @@ -1 +1 @@ -scribus-1.3.5.rc2.tar.bz2 +scribus-1.3.5.rc3.tar.bz2 Index: scribus.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-10/scribus.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- scribus.spec 4 Jun 2009 08:49:20 -0000 1.37 +++ scribus.spec 21 Jul 2009 20:00:30 -0000 1.38 @@ -1,13 +1,14 @@ Name: scribus Version: 1.3.5 -Release: 0.13.rc2%{?dist} +Release: 0.14.rc3%{?dist} Summary: DeskTop Publishing application written in Qt Group: Applications/Productivity License: GPLv2+ URL: http://www.scribus.net/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc2.tar.bz2 +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.rc3.tar.bz2 +Patch1: %{name}-1.3.5-install-headers.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake @@ -62,6 +63,7 @@ Group: Development/Tools Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch +Obsoletes: %{name}-doc < 1.3.5-0.12.beta %endif @@ -69,7 +71,8 @@ BuildArch: noarch %{summary} %prep -%setup -q -n %{name}-%{version}.rc2 +%setup -q -n %{name}-%{version}.rc3 +%patch1 -p1 -b .install-headers # recode man page to UTF-8 pushd scribus/manpages @@ -85,8 +88,8 @@ chmod a-x scribus/pageitem_latexframe.h %build mkdir build pushd build -%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} \ - -DCMAKE_SKIP_RPATH=YES ../ +%cmake -DOPENSYNC_LIBEXEC_DIR=%{_libexecdir} .. + make VERBOSE=1 %{?_smp_mflags} popd @@ -102,6 +105,9 @@ install -p -D -m0644 ${RPM_BUILD_ROOT}%{ find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';' +# remove empty dirs in %{_includedir} +rm -rf ${RPM_BUILD_ROOT}%{_includedir}/%{name}/{dicts,doc,dtd,editorconfig,icons,keysets,loremipsum,manpages,profiles,swatches,templates,unicodemap} + # install the global desktop file rm -f ${RPM_BUILD_ROOT}%{_datadir}/mimelnk/application/*scribus.desktop desktop-file-install --vendor="fedora" \ @@ -141,27 +147,31 @@ update-mime-database %{_datadir}/mime > %files doc %defattr(-,root,root,-) -%dir %{_datadir}/doc/%{name}-1.3.5.rc2 -%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc2/cs -%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc2/de -%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc2/en -%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc2/fr -%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc2/pl -%{_datadir}/doc/%{name}-1.3.5.rc2/AUTHORS -%{_datadir}/doc/%{name}-1.3.5.rc2/BUILDING -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLog -%{_datadir}/doc/%{name}-1.3.5.rc2/ChangeLogSVN -%{_datadir}/doc/%{name}-1.3.5.rc2/COPYING -%{_datadir}/doc/%{name}-1.3.5.rc2/NEWS -%{_datadir}/doc/%{name}-1.3.5.rc2/README* -%{_datadir}/doc/%{name}-1.3.5.rc2/TODO -%{_datadir}/doc/%{name}-1.3.5.rc2/PACKAGING -%{_datadir}/doc/%{name}-1.3.5.rc2/LINKS -%{_datadir}/doc/%{name}-1.3.5.rc2/TRANSLATION +%dir %{_datadir}/doc/%{name}-1.3.5.rc3 +%lang(cd) %{_datadir}/doc/%{name}-1.3.5.rc3/cs +%lang(de) %{_datadir}/doc/%{name}-1.3.5.rc3/de +%lang(en) %{_datadir}/doc/%{name}-1.3.5.rc3/en +%lang(fr) %{_datadir}/doc/%{name}-1.3.5.rc3/fr +%lang(pl) %{_datadir}/doc/%{name}-1.3.5.rc3/pl +%{_datadir}/doc/%{name}-1.3.5.rc3/AUTHORS +%{_datadir}/doc/%{name}-1.3.5.rc3/BUILDING +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLog +%{_datadir}/doc/%{name}-1.3.5.rc3/ChangeLogSVN +%{_datadir}/doc/%{name}-1.3.5.rc3/COPYING +%{_datadir}/doc/%{name}-1.3.5.rc3/NEWS +%{_datadir}/doc/%{name}-1.3.5.rc3/README* +%{_datadir}/doc/%{name}-1.3.5.rc3/TODO +%{_datadir}/doc/%{name}-1.3.5.rc3/PACKAGING +%{_datadir}/doc/%{name}-1.3.5.rc3/LINKS +%{_datadir}/doc/%{name}-1.3.5.rc3/TRANSLATION - %changelog +* Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.14.rc3 +- update to 1.3.5-rc3 +- fix update path for the doc subpackage (#512498) +- preserve directories when installing headers (#511800) + * Thu Jun 4 2009 Dan Hor?k - 1.3.5-0.13.rc2 - update to 1.3.5.rc2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/scribus/F-10/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 4 Jun 2009 08:49:20 -0000 1.19 +++ sources 21 Jul 2009 20:00:31 -0000 1.20 @@ -1 +1 @@ -161eaae7a97bd9f2824a677e771bd36f scribus-1.3.5.rc2.tar.bz2 +4c030bbec4405743fd2d3f842622351c scribus-1.3.5.rc3.tar.bz2 From notting at fedoraproject.org Tue Jul 21 20:09:32 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Tue, 21 Jul 2009 20:09:32 +0000 (UTC) Subject: rpms/mash/EL-5 mash-nosigcheck.patch, NONE, 1.1 mash.spec, 1.27, 1.28 mash-multilib-sync.patch, 1.3, NONE mash-multilib_yum_reponame-fix.patch, 1.1, NONE mash-noarch_build_nosrc-fix.patch, 1.1, NONE Message-ID: <20090721200932.308D811C005E@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/mash/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11325 Modified Files: mash.spec Added Files: mash-nosigcheck.patch Removed Files: mash-multilib-sync.patch mash-multilib_yum_reponame-fix.patch mash-noarch_build_nosrc-fix.patch Log Message: Don't sig-check delta RPMs, as it doesn't work right now. mash-nosigcheck.patch: metadata.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE mash-nosigcheck.patch --- diff -up mash-0.5.8/mash/metadata.py.foo mash-0.5.8/mash/metadata.py --- mash-0.5.8/mash/metadata.py.foo 2009-06-23 11:05:52.000000000 -0400 +++ mash-0.5.8/mash/metadata.py 2009-07-21 16:06:53.000000000 -0400 @@ -117,8 +117,7 @@ class MetadataNew: hdr = rpmUtils.miscutils.hdrFromPackage(ts, file) fname = '%s-%s-%s.%s.rpm' % (hdr['name'], hdr['version'], hdr['release'], hdr['arch']) if fname in list.keys(): - if _sigmatches(hdr, list[fname]): - return True + return True return False def _copy(file, path): Index: mash.spec =================================================================== RCS file: /cvs/extras/rpms/mash/EL-5/mash.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mash.spec 30 Jun 2009 14:07:43 -0000 1.27 +++ mash.spec 21 Jul 2009 20:09:31 -0000 1.28 @@ -2,12 +2,13 @@ Name: mash Version: 0.5.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Koji buildsystem to yum repository converter Group: Development/Tools License: GPL URL: http://people.redhat.com/notting/mash/ Source0: http://people.redhat.com/notting/mash/%{name}-%{version}.tar.gz +Patch0: mash-nosigcheck.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: yum, createrepo, koji Conflicts: pungi < 1.0.0 @@ -21,6 +22,7 @@ any multlib RPMs that are necessary. %prep %setup -q +%patch0 -p1 %build %{__python} setup.py build @@ -44,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT /var/cache/mash %changelog +* Tue Jul 21 2009 Bill Nottingham 0.5.8-2 +- don't sigcheck deltas + * Mon Jun 29 2009 Bill Nottingham 0.5.8-1 - noarch packages can have debuginfo too (#508746) - remove wine-arts from multilib whitelist (not needed, doesn't exist) --- mash-multilib-sync.patch DELETED --- --- mash-multilib_yum_reponame-fix.patch DELETED --- --- mash-noarch_build_nosrc-fix.patch DELETED --- From awjb at fedoraproject.org Tue Jul 21 20:12:06 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 20:12:06 +0000 (UTC) Subject: rpms/unshield/F-10 unshield.spec,1.10,1.11 Message-ID: <20090721201206.4B9F811C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/unshield/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11875 Modified Files: unshield.spec Log Message: - fix build Index: unshield.spec =================================================================== RCS file: /cvs/pkgs/rpms/unshield/F-10/unshield.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- unshield.spec 21 Jul 2009 04:41:53 -0000 1.10 +++ unshield.spec 21 Jul 2009 20:11:36 -0000 1.11 @@ -10,7 +10,6 @@ Source0: http://dl.sf.net/synce/u BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: zlib-devel -BuildRequires: libtool %description To install a Pocket PC application remotely, an installable @@ -38,7 +37,7 @@ The %{name}-devel package contains the f %build %configure --disable-static --disable-rpath -make LIBTOOL=%{_bindir}/libtool %{?_smp_mflags} +make %{?_smp_mflags} %install From awjb at fedoraproject.org Tue Jul 21 20:12:15 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 20:12:15 +0000 (UTC) Subject: rpms/synce-sync-engine/F-10 synce-sync-engine.spec,1.10,1.11 Message-ID: <20090721201215.E87A211C005E@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/synce-sync-engine/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11921 Modified Files: synce-sync-engine.spec Log Message: - exclude some py stuff Index: synce-sync-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/F-10/synce-sync-engine.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- synce-sync-engine.spec 21 Jul 2009 19:22:15 -0000 1.10 +++ synce-sync-engine.spec 21 Jul 2009 20:11:45 -0000 1.11 @@ -80,6 +80,8 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/SyncEngine/ %{python_sitelib}/synce_sync_engine-%{version}-py?.?.egg-info/ %{_datadir}/doc/sync-engine/ +%exclude %{_bindir}/*pyc +%exclude %{_bindir}/*pyo %files -n libopensync-plugin-synce-wm5 %defattr(-,root,root,-) From orion at fedoraproject.org Tue Jul 21 20:14:29 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 21 Jul 2009 20:14:29 +0000 (UTC) Subject: rpms/ncl/devel .cvsignore, 1.3, 1.4 Site.local.ncl, 1.3, 1.4 ncl.spec, 1.18, 1.19 sources, 1.3, 1.4 Message-ID: <20090721201429.86CFD11C005E@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/ncl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12773 Modified Files: .cvsignore Site.local.ncl ncl.spec sources Log Message: * Mon Jul 13 2009 - Orion Poplawski - 5.1.1-1 - Update to 5.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Mar 2009 14:52:17 -0000 1.3 +++ .cvsignore 21 Jul 2009 20:13:59 -0000 1.4 @@ -1 +1 @@ -ncl_ncarg_src-5.1.0.tar.gz +ncl_ncarg_src-5.1.1.tar.gz Index: Site.local.ncl =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/Site.local.ncl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- Site.local.ncl 28 Nov 2008 03:21:27 -0000 1.3 +++ Site.local.ncl 21 Jul 2009 20:13:59 -0000 1.4 @@ -7,8 +7,9 @@ #define IncSearch -I/usr/include/netcdf #define LibSearch -L at libdir@/hdf -#define BuildV5D FALSE -#define BuildHDFEOS FALSE +#define BuildNetCDF4 0 +#define BuildV5D 0 +#define BuildHDFEOS 0 #define BuildTRIANGLE 0 #define V5Dlib -#define BuildDODS TRUE +#define BuildDODS 1 Index: ncl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/ncl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ncl.spec 7 Jul 2009 20:35:49 -0000 1.18 +++ ncl.spec 21 Jul 2009 20:13:59 -0000 1.19 @@ -1,6 +1,6 @@ Name: ncl -Version: 5.1.0 -Release: 4%{?dist} +Version: 5.1.1 +Release: 1%{?dist} Summary: NCAR Command Language and NCAR Graphics Group: Applications/Engineering @@ -281,6 +281,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ncarg/libngmath.a %{_libdir}/ncarg/libnfp.a %{_libdir}/ncarg/libnfpfort.a +%{_libdir}/ncarg/libnio.a %{_libdir}/ncarg/libsphere3.1_dp.a %{_libdir}/ncarg/ncarg/ %{_mandir}/man3/*.gz @@ -298,6 +299,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 - Orion Poplawski - 5.1.1-1 +- Update to 5.1.1 + * Tue Jul 7 2009 - Orion Poplawski - 5.1.0-4 - Fixup more paths in shipped ncl scripts (bug #505240) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Mar 2009 14:52:18 -0000 1.3 +++ sources 21 Jul 2009 20:13:59 -0000 1.4 @@ -1 +1 @@ -6fbc5e0e378dff1caaf1bf6a9c76ea5e ncl_ncarg_src-5.1.0.tar.gz +42154992f2966320dc9f8958b9d81da3 ncl_ncarg_src-5.1.1.tar.gz From awjb at fedoraproject.org Tue Jul 21 20:26:02 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 20:26:02 +0000 (UTC) Subject: rpms/libopensync-plugin-synce/devel .cvsignore, 1.2, 1.3 libopensync-plugin-synce.spec, 1.6, 1.7 sources, 1.2, 1.3 libopensync-plugin-synce-autotools.patch, 1.2, NONE Message-ID: <20090721202602.5F43411C0383@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libopensync-plugin-synce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15457/devel Modified Files: .cvsignore libopensync-plugin-synce.spec sources Removed Files: libopensync-plugin-synce-autotools.patch Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 Jul 2007 15:26:29 -0000 1.2 +++ .cvsignore 21 Jul 2009 20:26:02 -0000 1.3 @@ -1 +1 @@ -libopensync-plugin-synce-0.22.tar.bz2 +libopensync-plugin-synce-rra-0.22.1.tar.gz Index: libopensync-plugin-synce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/devel/libopensync-plugin-synce.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libopensync-plugin-synce.spec 27 Mar 2009 19:30:50 -0000 1.6 +++ libopensync-plugin-synce.spec 21 Jul 2009 20:26:02 -0000 1.7 @@ -1,20 +1,20 @@ Name: libopensync-plugin-synce Epoch: 1 -Version: 0.22 -Release: 2%{?dist} +Version: 0.22.1 +Release: 1%{?dist} Summary: Synce plugin for libopensync to sync WM2003 devices Group: System Environment/Libraries License: LGPLv2+ -URL: http://www.opensync.org -Source0: http://www.opensync.org/download/releases/%{version}/%{name}-%{version}.tar.bz2 -Patch0: libopensync-plugin-synce-autotools.patch +URL: http://www.synce.org +Source0: http://sourceforge.net/projects/synce/files/SynCE/libopensync-plugin-synce-rra-0.22.1.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libopensync-devel = 1:0.22 -BuildRequires: librra-devel librapi-devel +BuildRequires: librra-devel >= 0.14 +BuildRequires: librapi-devel >= 0.14 BuildRequires: libmimedir-devel -BuildRequires: automake libtool +BuildRequires: libtool # see 244917 Obsoletes: syncekonnector <= 0.3.2-2 @@ -24,9 +24,7 @@ Obsoletes: syncekonnector <= 0.3.2-2 For WM5+ devices use libopensync-plugin-synce-wm5. %prep -%setup -q -%patch0 -autoreconf +%setup -q -n %{name}-rra-%{version} %build %configure --disable-static @@ -49,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/synce-plugin %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 1:0.22.1-1 +- version upgrade + * Thu Feb 12 2009 Andreas Bierfert - 1:0.22-2 - use versioned dependencies Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 Jul 2007 15:26:29 -0000 1.2 +++ sources 21 Jul 2009 20:26:02 -0000 1.3 @@ -1 +1 @@ -f325b7dd9f273c46e77fb7b337325880 libopensync-plugin-synce-0.22.tar.bz2 +c7a0a63b689d8d49ac86948699f1b79d libopensync-plugin-synce-rra-0.22.1.tar.gz --- libopensync-plugin-synce-autotools.patch DELETED --- From awjb at fedoraproject.org Tue Jul 21 20:26:32 2009 From: awjb at fedoraproject.org (Andreas Bierfert) Date: Tue, 21 Jul 2009 20:26:32 +0000 (UTC) Subject: rpms/libopensync-plugin-synce/F-11 .cvsignore, 1.2, 1.3 libopensync-plugin-synce.spec, 1.6, 1.7 sources, 1.2, 1.3 libopensync-plugin-synce-autotools.patch, 1.2, NONE Message-ID: <20090721202632.0E73C11C0383@cvs1.fedora.phx.redhat.com> Author: awjb Update of /cvs/pkgs/rpms/libopensync-plugin-synce/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15457/F-11 Modified Files: .cvsignore libopensync-plugin-synce.spec sources Removed Files: libopensync-plugin-synce-autotools.patch Log Message: - version upgrade Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 Jul 2007 15:26:29 -0000 1.2 +++ .cvsignore 21 Jul 2009 20:26:01 -0000 1.3 @@ -1 +1 @@ -libopensync-plugin-synce-0.22.tar.bz2 +libopensync-plugin-synce-rra-0.22.1.tar.gz Index: libopensync-plugin-synce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/F-11/libopensync-plugin-synce.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libopensync-plugin-synce.spec 27 Mar 2009 19:30:50 -0000 1.6 +++ libopensync-plugin-synce.spec 21 Jul 2009 20:26:01 -0000 1.7 @@ -1,20 +1,20 @@ Name: libopensync-plugin-synce Epoch: 1 -Version: 0.22 -Release: 2%{?dist} +Version: 0.22.1 +Release: 1%{?dist} Summary: Synce plugin for libopensync to sync WM2003 devices Group: System Environment/Libraries License: LGPLv2+ -URL: http://www.opensync.org -Source0: http://www.opensync.org/download/releases/%{version}/%{name}-%{version}.tar.bz2 -Patch0: libopensync-plugin-synce-autotools.patch +URL: http://www.synce.org +Source0: http://sourceforge.net/projects/synce/files/SynCE/libopensync-plugin-synce-rra-0.22.1.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libopensync-devel = 1:0.22 -BuildRequires: librra-devel librapi-devel +BuildRequires: librra-devel >= 0.14 +BuildRequires: librapi-devel >= 0.14 BuildRequires: libmimedir-devel -BuildRequires: automake libtool +BuildRequires: libtool # see 244917 Obsoletes: syncekonnector <= 0.3.2-2 @@ -24,9 +24,7 @@ Obsoletes: syncekonnector <= 0.3.2-2 For WM5+ devices use libopensync-plugin-synce-wm5. %prep -%setup -q -%patch0 -autoreconf +%setup -q -n %{name}-rra-%{version} %build %configure --disable-static @@ -49,6 +47,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/synce-plugin %changelog +* Tue Jul 21 2009 Andreas Bierfert +- 1:0.22.1-1 +- version upgrade + * Thu Feb 12 2009 Andreas Bierfert - 1:0.22-2 - use versioned dependencies Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 Jul 2007 15:26:29 -0000 1.2 +++ sources 21 Jul 2009 20:26:01 -0000 1.3 @@ -1 +1 @@ -f325b7dd9f273c46e77fb7b337325880 libopensync-plugin-synce-0.22.tar.bz2 +c7a0a63b689d8d49ac86948699f1b79d libopensync-plugin-synce-rra-0.22.1.tar.gz --- libopensync-plugin-synce-autotools.patch DELETED --- From orion at fedoraproject.org Tue Jul 21 20:54:34 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 21 Jul 2009 20:54:34 +0000 (UTC) Subject: rpms/ncl/F-11 ncl.spec,1.18,1.19 sources,1.3,1.4 Message-ID: <20090721205434.3875111C0382@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/ncl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24367 Modified Files: ncl.spec sources Log Message: * Mon Jul 13 2009 - Orion Poplawski - 5.1.1-1 - Update to 5.1.1 Index: ncl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncl/F-11/ncl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ncl.spec 7 Jul 2009 20:35:49 -0000 1.18 +++ ncl.spec 21 Jul 2009 20:54:03 -0000 1.19 @@ -1,6 +1,6 @@ Name: ncl -Version: 5.1.0 -Release: 4%{?dist} +Version: 5.1.1 +Release: 1%{?dist} Summary: NCAR Command Language and NCAR Graphics Group: Applications/Engineering @@ -281,6 +281,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ncarg/libngmath.a %{_libdir}/ncarg/libnfp.a %{_libdir}/ncarg/libnfpfort.a +%{_libdir}/ncarg/libnio.a %{_libdir}/ncarg/libsphere3.1_dp.a %{_libdir}/ncarg/ncarg/ %{_mandir}/man3/*.gz @@ -298,6 +299,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 13 2009 - Orion Poplawski - 5.1.1-1 +- Update to 5.1.1 + * Tue Jul 7 2009 - Orion Poplawski - 5.1.0-4 - Fixup more paths in shipped ncl scripts (bug #505240) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ncl/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Mar 2009 14:52:18 -0000 1.3 +++ sources 21 Jul 2009 20:54:04 -0000 1.4 @@ -1 +1 @@ -6fbc5e0e378dff1caaf1bf6a9c76ea5e ncl_ncarg_src-5.1.0.tar.gz +42154992f2966320dc9f8958b9d81da3 ncl_ncarg_src-5.1.1.tar.gz From hadess at fedoraproject.org Tue Jul 21 20:59:49 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Tue, 21 Jul 2009 20:59:49 +0000 (UTC) Subject: rpms/gstreamer-plugins-good/F-11 0001-flacdec-fix-intermittent-FLAC__STREAM_DECODER_ABORTE.patch, NONE, 1.1 gstreamer-plugins-good.spec, 1.97, 1.98 Message-ID: <20090721205949.B0B6611C0382@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gstreamer-plugins-good/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26058 Modified Files: gstreamer-plugins-good.spec Added Files: 0001-flacdec-fix-intermittent-FLAC__STREAM_DECODER_ABORTE.patch Log Message: * Tue Jul 21 2009 Bastien Nocera 0.10.15-4 - Fix FLAC seeking 0001-flacdec-fix-intermittent-FLAC__STREAM_DECODER_ABORTE.patch: gstflacdec.c | 36 +++++++++++++++++++++++++++++++----- gstflacdec.h | 3 ++- 2 files changed, 33 insertions(+), 6 deletions(-) --- NEW FILE 0001-flacdec-fix-intermittent-FLAC__STREAM_DECODER_ABORTE.patch --- >From ee98c0f1d06e5f401218f88b96e39e33f0d2c7aa Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 21 Jul 2009 19:46:55 +0100 Subject: [PATCH] flacdec: fix intermittent FLAC__STREAM_DECODER_ABORTED errors when seeking When seeking in a local flac file (ie. operating pull-based), the decoder would often just error out after the loop function sees a DECODER_ABORTED status. This, however, is the read callback's way of telling our loop function that pull_range failed and streaming should stop, in this case because of the flush-start event that the seek handler pushed upstream from the seeking thread. Handle this slightly better by storing the last flow return from pull_range, so the loop function can evaluate it properly when it encounters a DECODER_ABORTED and take the right action. Fixes #578612. --- ext/flac/gstflacdec.c | 36 +++++++++++++++++++++++++++++++----- ext/flac/gstflacdec.h | 2 ++ 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c index 3f9c75f..4d04702 100644 --- a/ext/flac/gstflacdec.c +++ b/ext/flac/gstflacdec.c @@ -773,15 +773,25 @@ static FLAC__StreamDecoderReadStatus gst_flac_dec_read_seekable (const FLAC__StreamDecoder * decoder, FLAC__byte buffer[], size_t * bytes, void *client_data) { + GstFlowReturn flow; GstFlacDec *flacdec; - GstBuffer *buf; flacdec = GST_FLAC_DEC (client_data); - if (gst_pad_pull_range (flacdec->sinkpad, flacdec->offset, *bytes, - &buf) != GST_FLOW_OK) - return FLAC__STREAM_DECODER_READ_STATUS_ABORT; + flow = gst_pad_pull_range (flacdec->sinkpad, flacdec->offset, *bytes, &buf); + + GST_PAD_STREAM_LOCK (flacdec->sinkpad); + flacdec->pull_flow = flow; + GST_PAD_STREAM_UNLOCK (flacdec->sinkpad); + + if (G_UNLIKELY (flow != GST_FLOW_OK)) { + GST_INFO_OBJECT (flacdec, "pull_range flow: %s", gst_flow_get_name (flow)); + if (flow == GST_FLOW_UNEXPECTED) + return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM; + else + return FLAC__STREAM_DECODER_READ_STATUS_ABORT; + } GST_DEBUG_OBJECT (flacdec, "Read %d bytes at %" G_GUINT64_FORMAT, GST_BUFFER_SIZE (buf), flacdec->offset); @@ -1152,9 +1162,23 @@ analyze_state: goto eos_and_pause; } + /* gst_flac_dec_read_seekable() returned ABORTED */ + case FLAC__STREAM_DECODER_ABORTED: + { + GST_INFO_OBJECT (flacdec, "read aborted: last pull_range flow = %s", + gst_flow_get_name (flacdec->pull_flow)); + if (!GST_FLOW_IS_FATAL (flacdec->pull_flow)) { + /* it seems we need to flush the decoder here to reset the decoder + * state after the abort for FLAC__stream_decoder_seek_absolute() + * to work properly */ + GST_DEBUG_OBJECT (flacdec, "flushing decoder to reset decoder state"); + FLAC__stream_decoder_flush (flacdec->seekable_decoder); + goto pause; + } + /* fall through */ + } case FLAC__STREAM_DECODER_OGG_ERROR: case FLAC__STREAM_DECODER_SEEK_ERROR: - case FLAC__STREAM_DECODER_ABORTED: case FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR: case FLAC__STREAM_DECODER_UNINITIALIZED: default:{ @@ -1782,8 +1806,10 @@ gst_flac_dec_handle_seek_event (GstFlacDec * flacdec, GstEvent * event) * callbacks that need to behave differently when seeking */ flacdec->seeking = TRUE; + GST_LOG_OBJECT (flacdec, "calling seek_absolute"); seek_ok = FLAC__stream_decoder_seek_absolute (flacdec->seekable_decoder, flacdec->segment.last_stop); + GST_LOG_OBJECT (flacdec, "done with seek_absolute, seek_ok=%d", seek_ok); flacdec->seeking = FALSE; diff --git a/ext/flac/gstflacdec.h b/ext/flac/gstflacdec.h index a9daf3e..e6a76bb 100644 --- a/ext/flac/gstflacdec.h +++ b/ext/flac/gstflacdec.h @@ -74,6 +74,8 @@ struct _GstFlacDec { GstEvent *start_segment; GstTagList *tags; + GstFlowReturn pull_flow; /* last flow from pull_range */ /* STREAM_LOCK */ + GstFlowReturn last_flow; /* the last flow return received from either * gst_pad_push or gst_pad_buffer_alloc */ -- 1.6.3.3 Index: gstreamer-plugins-good.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-good/F-11/gstreamer-plugins-good.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- gstreamer-plugins-good.spec 22 Jun 2009 17:12:06 -0000 1.97 +++ gstreamer-plugins-good.spec 21 Jul 2009 20:59:49 -0000 1.98 @@ -6,7 +6,7 @@ Name: %{gstreamer}-plugins-good Version: 0.10.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GStreamer plug-ins with good code and licensing Group: Applications/Multimedia @@ -71,6 +71,8 @@ BuildRequires: automake autoconf libtool Provides: gstreamer-plugins-farsight = 0.12.12-1 Obsoletes: gstreamer-plugins-farsight < 0.12.12 +Patch1: 0001-flacdec-fix-intermittent-FLAC__STREAM_DECODER_ABORTE.patch + %description GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything @@ -108,6 +110,7 @@ This is a dummy package to make gstreame %patch0 -p1 -b .farsight libtoolize -f autoreconf +%patch1 -p1 -b .flac %build @@ -271,6 +274,9 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer-%{majorminor}.schemas > /dev/null || : %changelog +* Tue Jul 21 2009 Bastien Nocera 0.10.15-4 +- Fix FLAC seeking + * Mon Jun 22 2009 Brian Pepple - 0.10.15-3 - Add obsolete for gst-plugins-farsight. From wtogami at fedoraproject.org Tue Jul 21 21:05:21 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Tue, 21 Jul 2009 21:05:21 +0000 (UTC) Subject: rpms/pidgin/devel pidgin-NOT-UPSTREAM-2.6.0-reread-resolvconf.patch, NONE, 1.1 .cvsignore, 1.26, 1.27 pidgin.spec, 1.80, 1.81 sources, 1.26, 1.27 pidgin-NOT-UPSTREAM-2.5.3-reread-resolvconf.patch, 1.1, NONE Message-ID: <20090721210522.1B69011C0382@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26859 Modified Files: .cvsignore pidgin.spec sources Added Files: pidgin-NOT-UPSTREAM-2.6.0-reread-resolvconf.patch Removed Files: pidgin-NOT-UPSTREAM-2.5.3-reread-resolvconf.patch Log Message: 2.6.0 snapshot with voice and video support via farsight2 pidgin-NOT-UPSTREAM-2.6.0-reread-resolvconf.patch: connection.c | 7 +++++++ network.c | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) --- NEW FILE pidgin-NOT-UPSTREAM-2.6.0-reread-resolvconf.patch --- diff -urN pidgin-2.6.0devel/libpurple/connection.c pidgin-2.6.0devel.new/libpurple/connection.c --- pidgin-2.6.0devel/libpurple/connection.c 2009-07-09 19:24:06.000000000 -0400 +++ pidgin-2.6.0devel.new/libpurple/connection.c 2009-07-21 14:56:10.747078333 -0400 @@ -42,6 +42,10 @@ #define KEEPALIVE_INTERVAL 30 +#include +#include +#include + static GList *connections = NULL; static GList *connections_connecting = NULL; static PurpleConnectionUiOps *connection_ui_ops = NULL; @@ -161,6 +165,9 @@ purple_signal_emit(purple_connections_get_handle(), "signing-on", gc); + /* Re-read resolv.conf and friends in case DNS servers have changed */ + res_init(); + if (regist) { purple_debug_info("connection", "Registering. gc = %p\n", gc); diff -urN pidgin-2.6.0devel/libpurple/network.c pidgin-2.6.0devel.new/libpurple/network.c --- pidgin-2.6.0devel/libpurple/network.c 2009-07-09 19:24:06.000000000 -0400 +++ pidgin-2.6.0devel.new/libpurple/network.c 2009-07-21 14:56:26.698327302 -0400 @@ -746,8 +746,6 @@ switch(state) { case NM_STATE_CONNECTED: - /* Call res_init in case DNS servers have changed */ - res_init(); /* update STUN IP in case we it changed (theoretically we could have gone from IPv4 to IPv6, f.ex. or we were previously offline */ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 29 Jun 2009 00:07:27 -0000 1.26 +++ .cvsignore 21 Jul 2009 21:04:51 -0000 1.27 @@ -1 +1 @@ -pidgin-2.5.8.tar.bz2 +pidgin-2.6.0-devel-20090721.tar.bz2 Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- pidgin.spec 20 Jul 2009 01:15:21 -0000 1.80 +++ pidgin.spec 21 Jul 2009 21:04:51 -0000 1.81 @@ -65,22 +65,26 @@ %if 0%{?fedora} >= 10 %define nss_md2_disabled 1 %endif +# F11+: voice and video support +%if 0%{?fedora} >= 11 +%define vv_support 1 +%endif # F12+: krb4 removed %if 0%{?fedora} >= 12 %define krb4_removed 1 %endif - Name: pidgin -Version: 2.5.8 -Release: 2%{?dist} +Version: 2.6.0 +%define snapshot 20090721 +Release: 0.1.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls # MIT - Zephyr prpl Group: Applications/Internet URL: http://pidgin.im/ -Source0: http://downloads.sourceforge.net/pidgin/pidgin-%{version}.tar.bz2 +Source0: http://downloads.sourceforge.net/pidgin/pidgin-%{version}-devel-%{snapshot}.tar.bz2 Obsoletes: gaim < 999:1 Provides: gaim = 999:1 ExcludeArch: s390 s390x @@ -104,11 +108,10 @@ Source2: one_time_password.c ## Patches 0-99: Fedora specific or upstream wont accept -Patch0: pidgin-NOT-UPSTREAM-2.5.3-reread-resolvconf.patch +Patch0: pidgin-NOT-UPSTREAM-2.6.0-reread-resolvconf.patch Patch1: pidgin-NOT-UPSTREAM-2.5.2-rhel4-sound-migration.patch ## Patches 100+: To be Included in Future Upstream -Patch100: pidgin-2.5.8-nss-md2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root Summary: A Gtk+ based multiprotocol instant messaging client @@ -201,6 +204,10 @@ BuildRequires: perl-devel %if %{perl_embed_separated} BuildRequires: perl(ExtUtils::Embed) %endif +# Voice and video support (F11+) +%if %{vv_support} +BuildRequires: farsight2-devel +%endif %if %{api_docs} BuildRequires: doxygen @@ -351,7 +358,7 @@ Doxygen generated API documentation. %prep echo "FEDORA=%{fedora} RHEL=%{rhel}" -%setup -q +%setup -q -n pidgin-2.6.0devel ## Patches 0-99: Fedora specific or upstream wont accept %patch0 -p1 -b .resolv %if %{force_sound_aplay} @@ -359,9 +366,6 @@ echo "FEDORA=%{fedora} RHEL=%{rhel}" %endif ## Patches 100+: To be Included in Future Upstream -%if %{nss_md2_disabled} -%patch100 -p0 -b .nssmd2 -%endif # Our preferences cp %{SOURCE1} prefs.xml @@ -435,8 +439,8 @@ desktop-file-install --vendor pidgin --d # remove libtool libraries and static libraries rm -f `find $RPM_BUILD_ROOT -name "*.la" -o -name "*.a"` -# remove the old perllocal.pod file -rm -f $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod +# remove the perllocal.pod file +find $RPM_BUILD_ROOT -name perllocal.pod |xargs rm # remove relnot.so plugin since it is unusable for our package rm -f $RPM_BUILD_ROOT%{_libdir}/pidgin/relnot.so # remove dummy nullclient @@ -522,9 +526,7 @@ rm -rf $RPM_BUILD_ROOT %files perl %defattr(-,root,root,-) %{_mandir}/man3/Pidgin* -%{perl_vendorarch}/Pidgin.pm -%dir %{perl_vendorarch}/auto/Pidgin/ -%{perl_vendorarch}/auto/Pidgin/Pidgin.so +%{_libdir}/pidgin/perl/ %files devel %defattr(-,root,root,-) @@ -565,10 +567,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{_mandir}/man3/Purple* %{_libdir}/purple-2/perl.so -%{perl_vendorarch}/Purple.pm -%dir %{perl_vendorarch}/auto/Purple/ -%{perl_vendorarch}/auto/Purple/Purple.so -%{perl_vendorarch}/auto/Purple/autosplit.ix +%{_libdir}/purple-2/perl/ %files -n libpurple-tcl %defattr(-,root,root,-) @@ -598,6 +597,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 21 2009 Warren Togami 2.6.0-0.1.20090721 +- 2.6.0 snapshot with voice and video support via farsight2 + * Sat Jul 11 2009 Stu Tomlison 2.5.8-2 - Backport patch from upstream to enable NSS to recognize root CA certificates that use MD2 & MD4 algorithms in their signature, as Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 29 Jun 2009 00:07:28 -0000 1.26 +++ sources 21 Jul 2009 21:04:51 -0000 1.27 @@ -1 +1 @@ -c207407dca71c6357c82135875e472f0 pidgin-2.5.8.tar.bz2 +3bf334cc0159963fd65bc4a920025e15 pidgin-2.6.0-devel-20090721.tar.bz2 --- pidgin-NOT-UPSTREAM-2.5.3-reread-resolvconf.patch DELETED --- From epienbro at fedoraproject.org Tue Jul 21 21:12:09 2009 From: epienbro at fedoraproject.org (epienbro) Date: Tue, 21 Jul 2009 21:12:09 +0000 (UTC) Subject: rpms/libmicrohttpd/devel .cvsignore, 1.4, 1.5 libmicrohttpd.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090721211209.0824C11C0382@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/libmicrohttpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28897/devel Modified Files: .cvsignore libmicrohttpd.spec sources Log Message: - Update to version 0.4.2 - Drop upstreamed patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 27 Feb 2009 23:09:16 -0000 1.4 +++ .cvsignore 21 Jul 2009 21:11:38 -0000 1.5 @@ -1 +1 @@ -libmicrohttpd-0.4.0a.tar.gz +libmicrohttpd-0.4.2.tar.gz Index: libmicrohttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/devel/libmicrohttpd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libmicrohttpd.spec 27 Feb 2009 22:43:35 -0000 1.5 +++ libmicrohttpd.spec 21 Jul 2009 21:11:38 -0000 1.6 @@ -1,6 +1,6 @@ Summary: Lightweight library for embedding a webserver in applications Name: libmicrohttpd -Version: 0.4.0a +Version: 0.4.2 Release: 1%{?dist} Group: Development/Libraries License: LGPLv2+ @@ -8,9 +8,6 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na URL: http://www.gnu.org/software/libmicrohttpd/ Source0: ftp://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz -# https://gnunet.org/mantis/view.php?id=1459 -Patch0: libmicrohttpd_64bit_fix.patch - BuildRequires: libcurl-devel BuildRequires: graphviz BuildRequires: doxygen @@ -53,7 +50,6 @@ Doxygen documentation for libmicrohttpd %prep %setup -q -%patch0 -p0 # The doxygen file contains references to /home/grothoff/svn/libmicrohttpd/... replace these with . sed s/\\/home\\/grothoff\\/svn\\/libmicrohttpd/./ doc/Doxyfile > tmp @@ -100,7 +96,7 @@ fi %defattr(-,root,root,-) %doc COPYING %{_libdir}/libmicrohttpd.so.5 -%{_libdir}/libmicrohttpd.so.5.0.0 +%{_libdir}/libmicrohttpd.so.5.1.0 %files devel %defattr(-,root,root,-) @@ -117,6 +113,10 @@ fi %doc html %changelog +* Tue Jul 21 2009 Erik van Pienbroek - 0.4.2-1 +- Update to version 0.4.2 +- Drop upstreamed patch + * Fri Feb 27 2009 Erik van Pienbroek - 0.4.0a-1 - Update to version 0.4.0a - Drop upstreamed patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 27 Feb 2009 23:09:16 -0000 1.4 +++ sources 21 Jul 2009 21:11:38 -0000 1.5 @@ -1 +1 @@ -e6f316064d674be55addcb2e4bf22fcd libmicrohttpd-0.4.0a.tar.gz +2853d8f32417e3c5f3b18fda38f96e52 libmicrohttpd-0.4.2.tar.gz From epienbro at fedoraproject.org Tue Jul 21 21:12:09 2009 From: epienbro at fedoraproject.org (epienbro) Date: Tue, 21 Jul 2009 21:12:09 +0000 (UTC) Subject: rpms/libmicrohttpd/F-11 .cvsignore, 1.4, 1.5 libmicrohttpd.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090721211209.1ACDE11C048A@cvs1.fedora.phx.redhat.com> Author: epienbro Update of /cvs/pkgs/rpms/libmicrohttpd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28897/F-11 Modified Files: .cvsignore libmicrohttpd.spec sources Log Message: - Update to version 0.4.2 - Drop upstreamed patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 27 Feb 2009 23:09:16 -0000 1.4 +++ .cvsignore 21 Jul 2009 21:11:38 -0000 1.5 @@ -1 +1 @@ -libmicrohttpd-0.4.0a.tar.gz +libmicrohttpd-0.4.2.tar.gz Index: libmicrohttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/F-11/libmicrohttpd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libmicrohttpd.spec 27 Feb 2009 22:43:35 -0000 1.5 +++ libmicrohttpd.spec 21 Jul 2009 21:11:38 -0000 1.6 @@ -1,6 +1,6 @@ Summary: Lightweight library for embedding a webserver in applications Name: libmicrohttpd -Version: 0.4.0a +Version: 0.4.2 Release: 1%{?dist} Group: Development/Libraries License: LGPLv2+ @@ -8,9 +8,6 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na URL: http://www.gnu.org/software/libmicrohttpd/ Source0: ftp://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz -# https://gnunet.org/mantis/view.php?id=1459 -Patch0: libmicrohttpd_64bit_fix.patch - BuildRequires: libcurl-devel BuildRequires: graphviz BuildRequires: doxygen @@ -53,7 +50,6 @@ Doxygen documentation for libmicrohttpd %prep %setup -q -%patch0 -p0 # The doxygen file contains references to /home/grothoff/svn/libmicrohttpd/... replace these with . sed s/\\/home\\/grothoff\\/svn\\/libmicrohttpd/./ doc/Doxyfile > tmp @@ -100,7 +96,7 @@ fi %defattr(-,root,root,-) %doc COPYING %{_libdir}/libmicrohttpd.so.5 -%{_libdir}/libmicrohttpd.so.5.0.0 +%{_libdir}/libmicrohttpd.so.5.1.0 %files devel %defattr(-,root,root,-) @@ -117,6 +113,10 @@ fi %doc html %changelog +* Tue Jul 21 2009 Erik van Pienbroek - 0.4.2-1 +- Update to version 0.4.2 +- Drop upstreamed patch + * Fri Feb 27 2009 Erik van Pienbroek - 0.4.0a-1 - Update to version 0.4.0a - Drop upstreamed patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 27 Feb 2009 23:09:16 -0000 1.4 +++ sources 21 Jul 2009 21:11:38 -0000 1.5 @@ -1 +1 @@ -e6f316064d674be55addcb2e4bf22fcd libmicrohttpd-0.4.0a.tar.gz +2853d8f32417e3c5f3b18fda38f96e52 libmicrohttpd-0.4.2.tar.gz From lmacken at fedoraproject.org Tue Jul 21 21:26:35 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Tue, 21 Jul 2009 21:26:35 +0000 (UTC) Subject: rpms/python-tgext-crud/devel import.log, NONE, 1.1 python-tgext-crud.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721212635.6882511C0382@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-tgext-crud/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31774/devel Modified Files: .cvsignore sources Added Files: import.log python-tgext-crud.spec Log Message: Initial import of python-tgadmin-crud --- NEW FILE import.log --- python-tgext-crud-0_2_4-1_fc10:HEAD:python-tgext-crud-0.2.4-1.fc10.src.rpm:1248196954 --- NEW FILE python-tgext-crud.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-tgext-crud Version: 0.2.4 Release: 1%{?dist} Summary: Crud Controller Extension for TG2 Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/tgext.crud/ Source0: http://pypi.python.org/packages/source/t/tgext.crud/tgext.crud-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel python-devel Requires: python-sprox >= 0.5.4.1 Requires: python-tw-forms >= 0.9 %description Crud Controller Extension for TG2 %prep %setup -q -n tgext.crud-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %{python_sitelib}/tgext.crud-%{version}-py%{pyver}* %{python_sitelib}/tgext/crud/ %changelog * Mon Jun 01 2009 Luke Macken - 0.2.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:18:26 -0000 1.1 +++ .cvsignore 21 Jul 2009 21:26:05 -0000 1.2 @@ -0,0 +1 @@ +tgext.crud-0.2.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:18:27 -0000 1.1 +++ sources 21 Jul 2009 21:26:05 -0000 1.2 @@ -0,0 +1 @@ +7dda7f32440bf74c2a9694bebdcf8a55 tgext.crud-0.2.4.tar.gz From dwalsh at fedoraproject.org Tue Jul 21 21:29:06 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Tue, 21 Jul 2009 21:29:06 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.112, 1.113 setroubleshoot.spec, 1.147, 1.148 sources, 1.124, 1.125 Message-ID: <20090721212906.4FA3411C0382@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32429 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Tue Jul 21 2009 Dan Walsh - 2.2.16-1 - Fix sesearch handling Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- .cvsignore 19 Jul 2009 16:15:20 -0000 1.112 +++ .cvsignore 21 Jul 2009 21:29:05 -0000 1.113 @@ -29,3 +29,4 @@ setroubleshoot-2.2.12.tar.gz setroubleshoot-2.2.13.tar.gz setroubleshoot-2.2.14.tar.gz setroubleshoot-2.2.15.tar.gz +setroubleshoot-2.2.16.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- setroubleshoot.spec 19 Jul 2009 16:17:07 -0000 1.147 +++ setroubleshoot.spec 21 Jul 2009 21:29:05 -0000 1.148 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.15 +Version: 2.2.16 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Tue Jul 21 2009 Dan Walsh - 2.2.16-1 +- Fix sesearch handling + * Sun Jul 19 2009 Dan Walsh - 2.2.15-1 - Fix a1 handling Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.124 retrieving revision 1.125 diff -u -p -r1.124 -r1.125 --- sources 19 Jul 2009 16:15:20 -0000 1.124 +++ sources 21 Jul 2009 21:29:06 -0000 1.125 @@ -1 +1 @@ -e43176c819a935ddce505f86b93b27ea setroubleshoot-2.2.15.tar.gz +8e6920d3d9df8980a75793e0aa8a2c13 setroubleshoot-2.2.16.tar.gz From orion at fedoraproject.org Tue Jul 21 21:34:30 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 21 Jul 2009 21:34:30 +0000 (UTC) Subject: rpms/ncl/F-11 Site.local.ncl,1.3,1.4 Message-ID: <20090721213430.54CD611C0382@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/ncl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv717 Modified Files: Site.local.ncl Log Message: Update the site file for 4.0.1 Index: Site.local.ncl =================================================================== RCS file: /cvs/pkgs/rpms/ncl/F-11/Site.local.ncl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- Site.local.ncl 28 Nov 2008 03:21:27 -0000 1.3 +++ Site.local.ncl 21 Jul 2009 21:33:59 -0000 1.4 @@ -7,8 +7,9 @@ #define IncSearch -I/usr/include/netcdf #define LibSearch -L at libdir@/hdf -#define BuildV5D FALSE -#define BuildHDFEOS FALSE +#define BuildNetCDF4 0 +#define BuildV5D 0 +#define BuildHDFEOS 0 #define BuildTRIANGLE 0 #define V5Dlib -#define BuildDODS TRUE +#define BuildDODS 1 From than at fedoraproject.org Tue Jul 21 21:36:38 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 21:36:38 +0000 (UTC) Subject: rpms/kdeaccessibility/devel .cvsignore, 1.42, 1.43 kdeaccessibility.spec, 1.84, 1.85 sources, 1.43, 1.44 Message-ID: <20090721213638.CC0C911C0382@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeaccessibility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1072 Modified Files: .cvsignore kdeaccessibility.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 9 Jul 2009 20:55:46 -0000 1.42 +++ .cvsignore 21 Jul 2009 21:36:08 -0000 1.43 @@ -1,3 +1,4 @@ kdeaccessibility-4.2.90.tar.bz2 kdeaccessibility-4.2.95.tar.bz2 kdeaccessibility-4.2.96.tar.bz2 +kdeaccessibility-4.2.98.tar.bz2 Index: kdeaccessibility.spec =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/kdeaccessibility.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- kdeaccessibility.spec 9 Jul 2009 20:55:46 -0000 1.84 +++ kdeaccessibility.spec 21 Jul 2009 21:36:08 -0000 1.85 @@ -1,7 +1,7 @@ Summary: K Desktop Environment - Accessibility Name: kdeaccessibility Epoch: 1 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Group: User Interface/Desktops @@ -111,6 +111,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %changelog +* Tue Jul 21 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 9 Jul 2009 20:55:46 -0000 1.43 +++ sources 21 Jul 2009 21:36:08 -0000 1.44 @@ -1 +1,2 @@ 6ed65afd8fa759fad7e538beda6d9539 kdeaccessibility-4.2.96.tar.bz2 +5afe49a97ced26b4b0be440b96dd7599 kdeaccessibility-4.2.98.tar.bz2 From than at fedoraproject.org Tue Jul 21 21:37:47 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 21:37:47 +0000 (UTC) Subject: rpms/kdeaccessibility/devel sources,1.44,1.45 Message-ID: <20090721213747.8FAE511C0382@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeaccessibility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1305 Modified Files: sources Log Message: 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeaccessibility/devel/sources,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- sources 21 Jul 2009 21:36:08 -0000 1.44 +++ sources 21 Jul 2009 21:37:17 -0000 1.45 @@ -1,2 +1 @@ -6ed65afd8fa759fad7e538beda6d9539 kdeaccessibility-4.2.96.tar.bz2 5afe49a97ced26b4b0be440b96dd7599 kdeaccessibility-4.2.98.tar.bz2 From lmacken at fedoraproject.org Tue Jul 21 21:47:01 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Tue, 21 Jul 2009 21:47:01 +0000 (UTC) Subject: rpms/python-tgext-crud/F-10 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090721214701.5773F11C025F@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-tgext-crud/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4226 Modified Files: .cvsignore sources Log Message: Initial commit of python-tgext-crud in F-10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:18:26 -0000 1.1 +++ .cvsignore 21 Jul 2009 21:47:01 -0000 1.2 @@ -0,0 +1 @@ +tgext.crud-0.2.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:18:27 -0000 1.1 +++ sources 21 Jul 2009 21:47:01 -0000 1.2 @@ -0,0 +1 @@ +7dda7f32440bf74c2a9694bebdcf8a55 tgext.crud-0.2.4.tar.gz From than at fedoraproject.org Tue Jul 21 21:47:35 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 21:47:35 +0000 (UTC) Subject: rpms/kdeadmin/devel .cvsignore, 1.63, 1.64 kdeadmin.spec, 1.141, 1.142 sources, 1.65, 1.66 Message-ID: <20090721214735.A42F411C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4244 Modified Files: .cvsignore kdeadmin.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 9 Jul 2009 21:00:09 -0000 1.63 +++ .cvsignore 21 Jul 2009 21:47:05 -0000 1.64 @@ -1,3 +1,4 @@ kdeadmin-4.2.90.tar.bz2 kdeadmin-4.2.95.tar.bz2 kdeadmin-4.2.96.tar.bz2 +kdeadmin-4.2.98.tar.bz2 Index: kdeadmin.spec =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.141 retrieving revision 1.142 diff -u -p -r1.141 -r1.142 --- kdeadmin.spec 16 Jul 2009 16:50:51 -0000 1.141 +++ kdeadmin.spec 21 Jul 2009 21:47:05 -0000 1.142 @@ -3,7 +3,7 @@ Name: kdeadmin Summary: K Desktop Environment - Administrative tools Epoch: 7 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Group: User Interface/Desktops @@ -150,6 +150,9 @@ fi %changelog +* Tue Jul 21 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/sources,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- sources 9 Jul 2009 21:00:09 -0000 1.65 +++ sources 21 Jul 2009 21:47:05 -0000 1.66 @@ -1 +1 @@ -aef2174a1127d6bfa4e1c2f80ff665b5 kdeadmin-4.2.96.tar.bz2 +dac1a55360fec5724a6214df7d1fd1a0 kdeadmin-4.2.98.tar.bz2 From lmacken at fedoraproject.org Tue Jul 21 21:47:50 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Tue, 21 Jul 2009 21:47:50 +0000 (UTC) Subject: rpms/python-tgext-crud/F-10 python-tgext-crud.spec,NONE,1.1 Message-ID: <20090721214750.2B24311C025F@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-tgext-crud/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4537 Added Files: python-tgext-crud.spec Log Message: Initial commit of python-tgext-crud in F-10 --- NEW FILE python-tgext-crud.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-tgext-crud Version: 0.2.4 Release: 1%{?dist} Summary: Crud Controller Extension for TG2 Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/tgext.crud/ Source0: http://pypi.python.org/packages/source/t/tgext.crud/tgext.crud-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel python-devel Requires: python-sprox >= 0.5.4.1 Requires: python-tw-forms >= 0.9 %description Crud Controller Extension for TG2 %prep %setup -q -n tgext.crud-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %{python_sitelib}/tgext.crud-%{version}-py%{pyver}* %{python_sitelib}/tgext/crud/ %changelog * Mon Jun 01 2009 Luke Macken - 0.2.4-1 - Initial package From than at fedoraproject.org Tue Jul 21 21:50:59 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 21:50:59 +0000 (UTC) Subject: rpms/kdeartwork/devel .cvsignore, 1.61, 1.62 kdeartwork.spec, 1.111, 1.112 sources, 1.63, 1.64 Message-ID: <20090721215059.7C00811C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeartwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5032 Modified Files: .cvsignore kdeartwork.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 9 Jul 2009 21:16:26 -0000 1.61 +++ .cvsignore 21 Jul 2009 21:50:29 -0000 1.62 @@ -1,3 +1,4 @@ kdeartwork-4.2.90.tar.bz2 kdeartwork-4.2.95.tar.bz2 kdeartwork-4.2.96.tar.bz2 +kdeartwork-4.2.98.tar.bz2 Index: kdeartwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/kdeartwork.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- kdeartwork.spec 9 Jul 2009 21:16:27 -0000 1.111 +++ kdeartwork.spec 21 Jul 2009 21:50:29 -0000 1.112 @@ -1,5 +1,5 @@ Name: kdeartwork -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Summary: Additional artwork for KDE @@ -185,6 +185,9 @@ fi %changelog +* Tue Jul 21 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3.rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeartwork/devel/sources,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sources 9 Jul 2009 21:16:27 -0000 1.63 +++ sources 21 Jul 2009 21:50:29 -0000 1.64 @@ -1 +1 @@ -84097eff13e9ff3db813ca90551993c9 kdeartwork-4.2.96.tar.bz2 +d7ce2e6a819d4b3f524941343321de72 kdeartwork-4.2.98.tar.bz2 From lmacken at fedoraproject.org Tue Jul 21 21:52:42 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Tue, 21 Jul 2009 21:52:42 +0000 (UTC) Subject: rpms/python-tgext-crud/F-11 python-tgext-crud.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721215242.48D1311C025F@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-tgext-crud/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5423 Modified Files: .cvsignore sources Added Files: python-tgext-crud.spec Log Message: Initial commit of python-tgext-crud in F-11 --- NEW FILE python-tgext-crud.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-tgext-crud Version: 0.2.4 Release: 1%{?dist} Summary: Crud Controller Extension for TG2 Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/tgext.crud/ Source0: http://pypi.python.org/packages/source/t/tgext.crud/tgext.crud-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel python-devel Requires: python-sprox >= 0.5.4.1 Requires: python-tw-forms >= 0.9 %description Crud Controller Extension for TG2 %prep %setup -q -n tgext.crud-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %{python_sitelib}/tgext.crud-%{version}-py%{pyver}* %{python_sitelib}/tgext/crud/ %changelog * Mon Jun 01 2009 Luke Macken - 0.2.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:18:26 -0000 1.1 +++ .cvsignore 21 Jul 2009 21:52:41 -0000 1.2 @@ -0,0 +1 @@ +tgext.crud-0.2.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:18:27 -0000 1.1 +++ sources 21 Jul 2009 21:52:42 -0000 1.2 @@ -0,0 +1 @@ +7dda7f32440bf74c2a9694bebdcf8a55 tgext.crud-0.2.4.tar.gz From lmacken at fedoraproject.org Tue Jul 21 21:53:25 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Tue, 21 Jul 2009 21:53:25 +0000 (UTC) Subject: rpms/python-tgext-crud/EL-5 python-tgext-crud.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721215325.E610511C025F@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-tgext-crud/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5573 Modified Files: .cvsignore sources Added Files: python-tgext-crud.spec Log Message: Initial commit of python-tgext-crud in EL-5 --- NEW FILE python-tgext-crud.spec --- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-tgext-crud Version: 0.2.4 Release: 1%{?dist} Summary: Crud Controller Extension for TG2 Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/tgext.crud/ Source0: http://pypi.python.org/packages/source/t/tgext.crud/tgext.crud-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel python-devel Requires: python-sprox >= 0.5.4.1 Requires: python-tw-forms >= 0.9 %description Crud Controller Extension for TG2 %prep %setup -q -n tgext.crud-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc %{python_sitelib}/tgext.crud-%{version}-py%{pyver}* %{python_sitelib}/tgext/crud/ %changelog * Mon Jun 01 2009 Luke Macken - 0.2.4-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:18:26 -0000 1.1 +++ .cvsignore 21 Jul 2009 21:52:55 -0000 1.2 @@ -0,0 +1 @@ +tgext.crud-0.2.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:18:27 -0000 1.1 +++ sources 21 Jul 2009 21:52:55 -0000 1.2 @@ -0,0 +1 @@ +7dda7f32440bf74c2a9694bebdcf8a55 tgext.crud-0.2.4.tar.gz From than at fedoraproject.org Tue Jul 21 21:54:27 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 21:54:27 +0000 (UTC) Subject: rpms/kdebase/devel .cvsignore, 1.89, 1.90 kdebase.spec, 1.383, 1.384 sources, 1.112, 1.113 Message-ID: <20090721215427.6B02711C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5843 Modified Files: .cvsignore kdebase.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/.cvsignore,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- .cvsignore 9 Jul 2009 21:22:28 -0000 1.89 +++ .cvsignore 21 Jul 2009 21:53:57 -0000 1.90 @@ -1,3 +1,4 @@ kdebase-4.2.90.tar.bz2 kdebase-4.2.95.tar.bz2 kdebase-4.2.96.tar.bz2 +kdebase-4.2.98.tar.bz2 Index: kdebase.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/kdebase.spec,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- kdebase.spec 9 Jul 2009 21:22:28 -0000 1.383 +++ kdebase.spec 21 Jul 2009 21:53:57 -0000 1.384 @@ -1,6 +1,6 @@ Name: kdebase Summary: K Desktop Environment 4 - Core Files -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Epoch: 6 @@ -202,6 +202,9 @@ fi %changelog +* Tue Jul 21 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase/devel/sources,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- sources 9 Jul 2009 21:22:28 -0000 1.112 +++ sources 21 Jul 2009 21:53:57 -0000 1.113 @@ -1 +1 @@ -8d4312aed471eeb974fe539ccbb8fd3c kdebase-4.2.96.tar.bz2 +1d33d01d11dc6d96449fe95fff5c151c kdebase-4.2.98.tar.bz2 From pfrields at fedoraproject.org Tue Jul 21 21:58:39 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Tue, 21 Jul 2009 21:58:39 +0000 (UTC) Subject: rpms/zikula-module-News/devel import.log, NONE, 1.1 zikula-module-News.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090721215839.753F311C025F@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/zikula-module-News/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7045/devel Modified Files: .cvsignore sources Added Files: import.log zikula-module-News.spec Log Message: Import SRPM --- NEW FILE import.log --- zikula-module-News-2_4_1-2_fc11:HEAD:zikula-module-News-2.4.1-2.fc11.src.rpm:1248213448 --- NEW FILE zikula-module-News.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname News Name: zikula-module-%{zikula_modname} Version: 2.4.1 Release: 2%{?dist} Summary: Manages news articles on your Zikula site Group: Applications/Publishing License: GPL+ URL: http://code.zikula.org/news # http://code.zikula.org/news/changeset/167/tags/News-2.4.1?old_path=%2F&format=zip Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: dos2unix Requires: zikula %description News module to manage news articles on your site. Provides multi-categorization, scheduled publishing, the basic management features and includes some highly customizable blocks and plugins for the Content module. %prep %setup -qn tags/%{zikula_modname}-%{version} # Remove empty index.html and others find -size 0 | xargs rm -f dos2unix modules/News/pndocs/NewsTODO.txt %build %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} pushd modules/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} popd rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc modules/News/pndocs/NewsTODO.txt modules/News/pndocs/tour_page1.htm %{zikula_moddir}/%{zikula_modname} %changelog * Thu Jul 16 2009 Paul W. Frields - 2.4.1-2 - Fix packaging errors * Sun Jun 14 2009 Fedora Docs Team - 2.4.1-1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-News/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:50:34 -0000 1.1 +++ .cvsignore 21 Jul 2009 21:58:09 -0000 1.2 @@ -0,0 +1 @@ +News_2.4.1.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-News/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:50:34 -0000 1.1 +++ sources 21 Jul 2009 21:58:09 -0000 1.2 @@ -0,0 +1 @@ +cac873b9b459d64b9aaceeeea9a8a136 News_2.4.1.zip From than at fedoraproject.org Tue Jul 21 22:01:58 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 22:01:58 +0000 (UTC) Subject: rpms/kdebase-runtime/devel .cvsignore, 1.34, 1.35 kdebase-runtime.spec, 1.128, 1.129 sources, 1.35, 1.36 Message-ID: <20090721220158.1B64011C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8111 Modified Files: .cvsignore kdebase-runtime.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 9 Jul 2009 21:33:07 -0000 1.34 +++ .cvsignore 21 Jul 2009 22:01:27 -0000 1.35 @@ -1,3 +1,4 @@ kdebase-runtime-4.2.90.tar.bz2 kdebase-runtime-4.2.95.tar.bz2 kdebase-runtime-4.2.96.tar.bz2 +kdebase-runtime-4.2.98.tar.bz2 Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- kdebase-runtime.spec 16 Jul 2009 20:18:41 -0000 1.128 +++ kdebase-runtime.spec 21 Jul 2009 22:01:27 -0000 1.129 @@ -3,8 +3,8 @@ Name: kdebase-runtime Summary: K Desktop Environment - Runtime -Version: 4.2.96 -Release: 2%{?dist} +Version: 4.2.98 +Release: 1%{?dist} # http://techbase.kde.org/Policies/Licensing_Policy License: LGPLv2+ @@ -213,6 +213,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - respin (soprano-2.3.0) - License: LGPLv2+ Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 9 Jul 2009 21:33:07 -0000 1.35 +++ sources 21 Jul 2009 22:01:27 -0000 1.36 @@ -1 +1 @@ -8966e6f1314104097125dec40339d18c kdebase-runtime-4.2.96.tar.bz2 +f31373a7cc1fc1d465d0385887e783a5 kdebase-runtime-4.2.98.tar.bz2 From pfrields at fedoraproject.org Tue Jul 21 22:03:59 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Tue, 21 Jul 2009 22:03:59 +0000 (UTC) Subject: rpms/zikula-module-News/F-11 zikula-module-News.spec,NONE,1.1 Message-ID: <20090721220359.2A1C811C025F@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/zikula-module-News/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8855 Added Files: zikula-module-News.spec Log Message: Add F-11 branch files --- NEW FILE zikula-module-News.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname News Name: zikula-module-%{zikula_modname} Version: 2.4.1 Release: 2%{?dist} Summary: Manages news articles on your Zikula site Group: Applications/Publishing License: GPL+ URL: http://code.zikula.org/news # http://code.zikula.org/news/changeset/167/tags/News-2.4.1?old_path=%2F&format=zip Source0: %{zikula_modname}_%{version}.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: dos2unix Requires: zikula %description News module to manage news articles on your site. Provides multi-categorization, scheduled publishing, the basic management features and includes some highly customizable blocks and plugins for the Content module. %prep %setup -qn tags/%{zikula_modname}-%{version} # Remove empty index.html and others find -size 0 | xargs rm -f dos2unix modules/News/pndocs/NewsTODO.txt %build %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} pushd modules/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} popd rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc modules/News/pndocs/NewsTODO.txt modules/News/pndocs/tour_page1.htm %{zikula_moddir}/%{zikula_modname} %changelog * Thu Jul 16 2009 Paul W. Frields - 2.4.1-2 - Fix packaging errors * Sun Jun 14 2009 Fedora Docs Team - 2.4.1-1 - Initial RPM release From orion at fedoraproject.org Tue Jul 21 22:05:26 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 21 Jul 2009 22:05:26 +0000 (UTC) Subject: rpms/GMT-coastlines/F-11 GMT-coastlines.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090721220526.B220B11C025F@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/GMT-coastlines/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9174 Modified Files: GMT-coastlines.spec sources Log Message: * Fri Jul 17 2009 Orion Poplawski 2.0-1 - Update to 2.0 Index: GMT-coastlines.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/F-11/GMT-coastlines.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- GMT-coastlines.spec 23 Feb 2009 21:16:18 -0000 1.5 +++ GMT-coastlines.spec 21 Jul 2009 22:04:56 -0000 1.6 @@ -1,6 +1,6 @@ Name: GMT-coastlines -Version: 1.10 -Release: 3%{?dist} +Version: 2.0 +Release: 1%{?dist} Summary: Coastline data for GMT Group: Applications/Engineering @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Orion Poplawski 2.0-1 +- Update to 2.0 + * Mon Feb 23 2009 Fedora Release Engineering - 1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 4 Aug 2008 22:06:42 -0000 1.4 +++ sources 21 Jul 2009 22:04:56 -0000 1.5 @@ -1,3 +1,3 @@ -d160db8dc5390731bce42d4e2a55d5e1 GSHHS1.10_coast.tar.bz2 -d029e624dfe8d15685779fa9f84ff78e GSHHS1.10_full.tar.bz2 -ccf1fe0e5231f3e8e3b64140afb7de8d GSHHS1.10_high.tar.bz2 +23ccee4b943ef1fc35ddc03b91b55521 GSHHS2.0_coast.tar.bz2 +fc5a70acf663c402b3dfc5a951b29244 GSHHS2.0_full.tar.bz2 +930ddfd9d576d75079455df4240b7a3a GSHHS2.0_high.tar.bz2 From than at fedoraproject.org Tue Jul 21 22:07:15 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 22:07:15 +0000 (UTC) Subject: rpms/kdebase-workspace/devel .cvsignore, 1.33, 1.34 kdebase-workspace.spec, 1.252, 1.253 sources, 1.39, 1.40 Message-ID: <20090721220715.5F54411C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9675 Modified Files: .cvsignore kdebase-workspace.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 9 Jul 2009 21:46:58 -0000 1.33 +++ .cvsignore 21 Jul 2009 22:06:44 -0000 1.34 @@ -1,3 +1,4 @@ kdebase-workspace-4.2.90.tar.bz2 kdebase-workspace-4.2.95.tar.bz2 kdebase-workspace-4.2.96.tar.bz2 +kdebase-workspace-4.2.98.tar.bz2 Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.252 retrieving revision 1.253 diff -u -p -r1.252 -r1.253 --- kdebase-workspace.spec 16 Jul 2009 14:36:59 -0000 1.252 +++ kdebase-workspace.spec 21 Jul 2009 22:06:45 -0000 1.253 @@ -2,7 +2,7 @@ Summary: K Desktop Environment - Workspace Name: kdebase-workspace -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 @@ -508,6 +508,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 09 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 9 Jul 2009 21:46:58 -0000 1.39 +++ sources 21 Jul 2009 22:06:45 -0000 1.40 @@ -1 +1 @@ -ee9a57af00c895afbf949fbf8d2a1590 kdebase-workspace-4.2.96.tar.bz2 +d4fdf45a38f521a34342303e9e4d291c kdebase-workspace-4.2.98.tar.bz2 From than at fedoraproject.org Tue Jul 21 22:13:25 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 22:13:25 +0000 (UTC) Subject: rpms/kdebindings/devel .cvsignore, 1.59, 1.60 kdebindings.spec, 1.223, 1.224 sources, 1.66, 1.67 kdebindings-4.2.96-kdebug#198632.patch, 1.1, NONE kdebindings-4.2.96-php-5.3.patch, 1.3, NONE Message-ID: <20090721221325.C1A8D11C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12150 Modified Files: .cvsignore kdebindings.spec sources Removed Files: kdebindings-4.2.96-kdebug#198632.patch kdebindings-4.2.96-php-5.3.patch Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/.cvsignore,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- .cvsignore 10 Jul 2009 14:47:23 -0000 1.59 +++ .cvsignore 21 Jul 2009 22:13:25 -0000 1.60 @@ -1,3 +1,4 @@ kdebindings-4.2.90.tar.bz2 kdebindings-4.2.95.tar.bz2 kdebindings-4.2.96.tar.bz2 +kdebindings-4.2.98.tar.bz2 Index: kdebindings.spec =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.223 retrieving revision 1.224 diff -u -p -r1.223 -r1.224 --- kdebindings.spec 20 Jul 2009 15:10:57 -0000 1.223 +++ kdebindings.spec 21 Jul 2009 22:13:25 -0000 1.224 @@ -31,8 +31,8 @@ %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") Name: kdebindings -Version: 4.2.96 -Release: 5%{?dist} +Version: 4.2.98 +Release: 1%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -48,9 +48,6 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa # make the Python plugin factory work without python-devel Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch ## upstream patches -# http://bugs.kde.org/198632#c5 -Patch100: kdebindings-4.2.96-kdebug#198632.patch -Patch101: kdebindings-4.2.96-php-5.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -258,8 +255,6 @@ Falcon plugin for the Kross archtecture %patch2 -p1 -b .fix-kpythonpluginfactory # upstream patches -%patch100 -p1 -b .kdebug#198632 -%patch101 -p1 -b .php-5.3 %build @@ -495,6 +490,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Mon Jul 20 2009 Than Ngo - 4.2.96-5 - add correct check for php version Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebindings/devel/sources,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- sources 10 Jul 2009 14:52:34 -0000 1.66 +++ sources 21 Jul 2009 22:13:25 -0000 1.67 @@ -1 +1 @@ -b85be1ab3de88650b7f22ae7e0a2cf5e kdebindings-4.2.96.tar.bz2 +23778a672635c8dd4cc46ee1d00765c1 kdebindings-4.2.98.tar.bz2 --- kdebindings-4.2.96-kdebug#198632.patch DELETED --- --- kdebindings-4.2.96-php-5.3.patch DELETED --- From ajax at fedoraproject.org Tue Jul 21 22:16:05 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 22:16:05 +0000 (UTC) Subject: comps comps-f12.xml.in,1.49,1.50 Message-ID: <20090721221605.DBB3F11C025F@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5481 Modified Files: comps-f12.xml.in Log Message: logwatch -> optional Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- comps-f12.xml.in 21 Jul 2009 19:32:03 -0000 1.49 +++ comps-f12.xml.in 21 Jul 2009 22:16:05 -0000 1.50 @@ -252,7 +252,6 @@ jwhois krb5-workstation lftp - logwatch man-pages mcelog mdadm @@ -326,6 +325,7 @@ jfsutils kexec-tools ksh + logwatch mgetty mkbootdisk mtools From than at fedoraproject.org Tue Jul 21 22:17:07 2009 From: than at fedoraproject.org (Than Ngo) Date: Tue, 21 Jul 2009 22:17:07 +0000 (UTC) Subject: rpms/kdeedu/devel .cvsignore, 1.66, 1.67 kdeedu.spec, 1.192, 1.193 sources, 1.68, 1.69 Message-ID: <20090721221707.7098411C025F@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12961 Modified Files: .cvsignore kdeedu.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/.cvsignore,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- .cvsignore 10 Jul 2009 14:55:59 -0000 1.66 +++ .cvsignore 21 Jul 2009 22:16:37 -0000 1.67 @@ -1,3 +1,4 @@ kdeedu-4.2.90.tar.bz2 kdeedu-4.2.95.tar.bz2 kdeedu-4.2.96.tar.bz2 +kdeedu-4.2.98.tar.bz2 Index: kdeedu.spec =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/kdeedu.spec,v retrieving revision 1.192 retrieving revision 1.193 diff -u -p -r1.192 -r1.193 --- kdeedu.spec 10 Jul 2009 14:55:59 -0000 1.192 +++ kdeedu.spec 21 Jul 2009 22:16:37 -0000 1.193 @@ -6,7 +6,7 @@ Name: kdeedu Summary: Educational/Edutainment applications -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 @@ -450,6 +450,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeedu/devel/sources,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sources 10 Jul 2009 14:55:59 -0000 1.68 +++ sources 21 Jul 2009 22:16:37 -0000 1.69 @@ -1 +1 @@ -ead56652dd09cd813ae6a0fdee965040 kdeedu-4.2.96.tar.bz2 +5b8a6daa5c01e861a8fe8001ce3fdec7 kdeedu-4.2.98.tar.bz2 From ajax at fedoraproject.org Tue Jul 21 22:18:00 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 22:18:00 +0000 (UTC) Subject: comps comps-f12.xml.in,1.50,1.51 Message-ID: <20090721221800.491A811C025F@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13239 Modified Files: comps-f12.xml.in Log Message: fbset -> optional Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- comps-f12.xml.in 21 Jul 2009 22:16:05 -0000 1.50 +++ comps-f12.xml.in 21 Jul 2009 22:17:29 -0000 1.51 @@ -239,7 +239,6 @@ dosfstools dump eject - fbset fedora-release-notes finger fprintd-pam @@ -315,6 +314,7 @@ bridge-utils brltty btrfs-progs + fbset gnupg2 gpart gpgme From timfenn at fedoraproject.org Tue Jul 21 22:21:40 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Tue, 21 Jul 2009 22:21:40 +0000 (UTC) Subject: rpms/pymol/devel pymol.spec,1.11,1.12 Message-ID: <20090721222140.43E3411C025F@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/pymol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14653 Modified Files: pymol.spec Log Message: * Tue Jul 21 2009 Tim Fenn - 1.2-6.20090709svn3827 - include chempy, pmg_tk and tut subdirectories in data folder Index: pymol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymol/devel/pymol.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pymol.spec 10 Jul 2009 02:43:19 -0000 1.11 +++ pymol.spec 21 Jul 2009 22:21:39 -0000 1.12 @@ -3,7 +3,7 @@ Summary: PyMOL Molecular Graphics System Name: pymol Version: 1.2 -Release: 5.20090709svn3827%{?dist} +Release: 6.20090709svn3827%{?dist} License: MIT and BSD and ZPLv2.0 and Bitstream Vera and OFL Group: Applications/Engineering URL: http://www.pymol.org @@ -75,6 +75,9 @@ cp -pr data/demo/cgo03.py ${RPM_BUILD_RO cp -pr data/demo/il2.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pkl ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ +cp -pr data/chempy ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/chempy +cp -pr data/pmg_tk ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/pmg_tk +cp -pr data/tut ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/tut chmod 644 ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/1tii.pdb mkdir -p ${RPM_BUILD_ROOT}%{_bindir} @@ -104,6 +107,9 @@ rm -rf ${RPM_BUILD_ROOT} %{python_sitearch}/pmg_wx/ %changelog +* Tue Jul 21 2009 Tim Fenn - 1.2-6.20090709svn3827 +- include chempy, pmg_tk and tut subdirectories in data folder + * Thu Jul 07 2009 Tim Fenn - 1.2-5.20090709svn3827 - update to SVN 3827, 1.2r1 From mjakubicek at fedoraproject.org Tue Jul 21 22:36:16 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Tue, 21 Jul 2009 22:36:16 +0000 (UTC) Subject: rpms/boinc-client/devel USAGE_FEDORA, NONE, 1.1 boinc-client.spec, 1.36, 1.37 boinc-gcc44.patch, 1.2, 1.3 sources, 1.6, 1.7 boinc-client-6.4.5-event.patch, 1.2, NONE boinc-cuda.patch, 1.1, NONE boinc-gccflags.patch, 1.4, NONE boinc-rsa.patch, 1.1, NONE Message-ID: <20090721223616.C681911C025F@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18430 Modified Files: boinc-client.spec boinc-gcc44.patch sources Added Files: USAGE_FEDORA Removed Files: boinc-client-6.4.5-event.patch boinc-cuda.patch boinc-gccflags.patch boinc-rsa.patch Log Message: - Rebase to 6.6a branch (resolves BZ#477882) - Ship shared libraries too, link client dynamically to them - Dropped boinc-rsa.patch (merged upstream) - Dropped boinc-client-6.4.5-event.patch (merged upstream) - Dropped boinc-cuda.patch (merged upstream) - Dropped boinc-gccflags.patch (merged upstream) - Updated boinc-gcc44.patch (merged partially) - Disable newly appeared standard rpaths - Added short user guide exported from wiki as USAGE_FEDORA --- NEW FILE USAGE_FEDORA --- ##################################################################################################################### Exported from http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora on July 22, 2009, see current version online. ##################################################################################################################### Installing BOINC on Fedora * 1 Basic installation * 2 What the installer does * 3 Verify the installation * 4 Set up your accounts * 5 Optional setup hints * 6 Uninstallation * 7 Known problems Basic installation Installs BOINC Client as a daemon (autostarts the BOINC client at boot time) and puts a BOINC Manager icon on the applications menu. The steps are: 1. Open a terminal, enter |su|, give the root password when prompted. 2. Enter |yum install boinc-client boinc-manager| (be patient while the BOINC package downloads and installs). 3. Optional: after the installation is finished, enter |/sbin/chkconfig boinc-client on| to have Linux auto-start the boinc-client daemon at boot time. (See Stop or start BOINC daemon after boot page for helpful commands for managing the daemon) What the installer does 1. Creates the daemon script at /etc/init.d/boinc-client. 2. Places the BOINC binaries (boinc_client, boinc_cmd and boincmgr) in /usr/bin/. 3. Creates /var/lib/boinc/ for BOINC data files and the slots and projects directories. 4. Names the daemon boinc-client. 5. Creates a user named boinc. For security, boinc owns the BOINC data directory (/var/lib/boinc/) and all the data files and sub-directories it creates in the data directory. Verify the installation 1. If you elected to have Linux start the daemon at boot time (see step 3 in section Basic installation), logout and reboot Linux now and login under your normal user account. 2. If you elected to not have Linux start the daemon at boot time, start the daemon manually with |/sbin/service boinc-client start| 3. Open a terminal and enter |ps aux | grep boinc| to print a partial list of running processes. You should see |boinc_client --daemon| in that list, if not then something went wrong in the steps above. Set up your accounts To use the GUI to set up your accounts and monitor progress: * Start "boincmgr" on the command line or select Applications -> System Tools -> Boinc Manager from the GNOME menu. * Select Advanced -> Select computer... from the Boinc Manager menu. * Put "localhost" in for "Host name" and the contents of /var/lib/boinc/gui_rpc_auth.cfg for "Password" and hit "OK". If you do only the basic installation as described above, BOINC manager will not be able to automatically connect to the client. To connect the client you will be required to give the GUI RPC password every time you start BOINC manager. That is not a bug, it is a security feature to prevent other users from using the manager to manipulate the client, change your projects, etc. If you don't want to put the password every time you run the BOINC manager, you can: 1. disable the password at all [*not recommended*] To make the GUI passwordless, do "echo > /var/lib/boinc/gui_rpc_auth.cfg" (which replaces the contents of the file with a newline) and then restart boinc-client (with e.g. "/sbin/service boinc-client restart"). 2. *with boinc-client-6.4.7-1.r17542svn and newer* it is enough if you just add your user account into the "boinc" group, e.g. by typing |/usr/sbin/usermod -G boinc -a username| 3. *with older versions* the procedure is a bit more complicated: Boinc (the user named boinc) owns /var/lib/boinc/ and all the files and directories in it so you will not be able to edit those files easily from your regular user account. The steps below add your username to the boinc group and adjust some permissions so that BOINC manager will automatically connect to BOINC client whenever you start the manager from your regular Linux user account. Also you will be able to edit files in the BOINC directory without becoming root. As you type in each command below, substitute your Linux username wherever you see |username|. Enter the following commands in a terminal, as root: 1. |/usr/sbin/usermod -G boinc -a username| 2. |chmod g+rw /var/lib/boinc| 3. |chmod g+rw /var/lib/boinc/*.*| 4. |ln -s /var/lib/boinc/gui_rpc_auth.cfg /home/username/gui_rpc_auth.cfg| 5. |chown boinc:boinc /home/username/gui_rpc_auth.cfg| Uninstallation As root, in a terminal, enter yum remove boinc-client boinc-manager Known problems boinc-client sometimes has problems connecting to the network, if the network connection comes up after the client has already started. This is a known BOINC bug, which is filed as #707. In the meantime, you can fix this by restarting boinc-client. On the command line as root, do "/sbin/service boinc-client restart". Alternatively, from the GNOME menu, you can choose System -> Administration -> Services and then stop and start the boinc-client service. Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- boinc-client.spec 20 Jul 2009 00:00:55 -0000 1.36 +++ boinc-client.spec 21 Jul 2009 22:35:45 -0000 1.37 @@ -1,10 +1,10 @@ -%define revision 18631 -%define version_ 6_6 +%global revision 18632 +%global version_ 6_6a Summary: The BOINC client core Name: boinc-client Version: 6.6.37 -Release: 1.r%{revision}svn%{?dist} +Release: 2.r%{revision}svn%{?dist} License: LGPLv2+ Group: Applications/Engineering URL: http://boinc.berkeley.edu/ @@ -12,11 +12,6 @@ URL: http://boinc.berkeley.edu/ # following commands to generate the tarball: # svn export http://boinc.berkeley.edu/svn/tags/boinc_core_release_%{version_} # pushd boinc_core_release_%{version_} -# mkdir locale/client -# touch locale/client/Makefile.in -# mkdir -p packages/generic/sea/ -# touch packages/generic/sea/Makefile.in -# sed -i "s/BUILD_CLIENTGUI/ENABLE_MANAGER/" doc/manpages/Makefile.am # ./_autosetup # ./trim . Trim all binaries and other unnecessary things. # popd @@ -26,25 +21,16 @@ Source1: boinc-client-init-d Source2: boinc-client-logrotate-d Source3: boinc-manager.desktop Source8: trim -#Remove -fomit-frame-pointer and -ffast-math gcc flags: -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/647 -Patch1: boinc-gccflags.patch -#Fix security bug BZ#479664 -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 -Patch2: boinc-rsa.patch -#Both of these patches fix the gcc 4.4 build +#Fix the gcc 4.4 at glibc2.10 build #Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 Patch4: boinc-gcc44.patch -Patch5: boinc-client-6.4.5-event.patch #Create password file rw for group, this enables passwordless connection #of manager from users of the boinc group. #This won't be probably upstreamed as it might be unsafe for common usage #without setting proper group ownership of the password file. Patch6: boinc-guirpcauth.patch -#Enable dlopening libcudart.so from standard paths -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/863 -Patch7: boinc-cuda.patch #Fix Mac build: +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/941 Patch8: boinc-macbuild.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -104,11 +90,19 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: openssl-devel Requires: mysql-devel -Provides: %{name}-static = %{version}-%{release} %description devel This package contains development files for %{name}. +%package static +Summary: Static libraries for %{name} +Group: Development/Libraries + +Requires: %{name}-devel = %{version}-%{release} + +%description static +This package contains static libraries for %{name}. + %package doc Summary: Documentation files for %{name} Group: Documentation @@ -121,12 +115,8 @@ This package contains documentation file %prep %setup -q -n boinc_core_release_%{version_} -%patch1 -p1 -%patch2 -p1 %patch4 -%patch5 -p1 %patch6 -%patch7 %patch8 -p1 # fix utf8 @@ -142,32 +132,25 @@ iconv -f ISO88591 -t UTF8 < checkin_note touch -r checkin_notes_2006 checkin_notes_2006.utf8 mv checkin_notes_2006.utf8 checkin_notes_2006 +# fix permissions and newlines on source files +chmod 644 clientgui/{DlgItemProperties.h,AsyncRPC.cpp,DlgItemProperties.cpp} +sed -i 's/\r//' clientgui/DlgItemProperties.cpp + %build %ifarch %{ix86} -%define boinc_platform i686-pc-linux-gnu +%global boinc_platform i686-pc-linux-gnu %endif %ifarch powerpc ppc -%define boinc_platform powerpc-linux-gnu +%global boinc_platform powerpc-linux-gnu %endif %ifarch powerpc64 ppc64 -%define boinc_platform ppc64-linux-gnu +%global boinc_platform ppc64-linux-gnu %endif -#quick fixes to make build & install to work, filed in upstream's bugtracker under -#http://boinc.berkeley.edu/trac/ticket/811 -# - this should just go away -sed -i "s/boincmgr.16x16.png boincmgr.32x32.png boincmgr.48x48.png//" clientgui/res/Makefile.in -# - missing in the Makefile -echo "install:" >> samples/example_app/Makefile -# - because "-lssl" is needed -sed -i 's/crypt_prog_LDADD = $(lib_LIBRARIES) $(RSA_LIBS) $(PTHREAD_LIBS)/crypt_prog_LDADD = $(lib_LIBRARIES) $(RSA_LIBS) $(PTHREAD_LIBS) $(BOINC_EXTRA_LIBS)/' lib/Makefile.in -# - because "-lcurl" is needed -sed -i 's/boinc_client_LDADD = $(LIBBOINC) $(PTHREAD_LIBS)/boinc_client_LDADD = $(LIBBOINC) $(PTHREAD_LIBS) $(BOINC_EXTRA_LIBS)/' client/Makefile.in - -#We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 +# We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in -%define confflags --disable-static --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man +%global confflags --disable-dependency-tracking --enable-dynamic-client-linkage --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man %if %{defined boinc_platform} %configure %{confflags} --with-boinc-platform=%{boinc_platform} @@ -175,10 +158,12 @@ sed -i 's/BOINC-Manager\.po/BOINC-Manage %configure %{confflags} %endif +# Disable rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool # Parallel make does not work, see upstream bugtracker at: # http://boinc.berkeley.edu/trac/ticket/775 -echo -e "all:\ninstall:" >> locale/client/Makefile make %install @@ -206,8 +191,17 @@ rm -rf $RPM_BUILD_ROOT%{_bindir}/updater rm -rf $RPM_BUILD_ROOT%{_bindir}/upper_case pushd $RPM_BUILD_ROOT%{_bindir} + +# use symlink instead of hardlink +rm boinc ln -s boinc_client boinc -mv boinc_cmd boinccmd + +# remove libtool archives +rm $RPM_BUILD_ROOT%{_libdir}/*.la + +# rename boincmgr and wrap it +mv $RPM_BUILD_ROOT%{_bindir}/boincmgr $RPM_BUILD_ROOT%{_bindir}/boinc_gui + cat > boincmgr < USAGE_FEDORA <<-EOF - For up-to-date instructions on how to setup BOINC client on Fedora, please have a look at: http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora -EOF - %clean rm -rf $RPM_BUILD_ROOT @@ -273,6 +256,7 @@ useradd -r -g boinc -d %{_localstatedir} exit 0 %post +/sbin/ldconfig /sbin/chkconfig --add boinc-client #correct wrong owner and group on files under /var/lib/boinc and log files @@ -287,6 +271,8 @@ if [ $1 -eq 0 ]; then #if uninstalling, fi %postun +/sbin/ldconfig + if [ "$1" -ge "1" ] ; then /sbin/service boinc-client condrestart >/dev/null 2>&1 || : fi @@ -313,13 +299,13 @@ fi %{_bindir}/boinc %{_bindir}/boinc_client %{_bindir}/boinccmd -%{_bindir}/crypt_prog %{_bindir}/switcher %{_initrddir}/%{name} %{_mandir}/man1/boinccmd.1.gz %{_mandir}/man1/boinc.1.gz %defattr(-,boinc,boinc,-) %{_localstatedir}/lib/boinc/ +%{_libdir}/*.so.* %files doc %defattr(-,root,root,-) @@ -335,21 +321,35 @@ fi %{_datadir}/icons/hicolor/48x48/apps/boincmgr.png %{_mandir}/man1/boincmgr.1.gz -%files devel +%files static %defattr(-,root,root,-) %{_libdir}/libboinc.a %{_libdir}/libboinc_api.a %{_libdir}/libboinc_graphics2.a -%dir %{_includedir}/boinc -%{_includedir}/boinc/* +%files devel +%defattr(-,root,root,-) +%{_libdir}/*.so +%{_includedir}/boinc %changelog +* Tue Jul 21 2009 Milos Jakubicek - 6.6.37-2.r18632svn +- Rebase to 6.6a branch (resolves BZ#477882) +- Ship shared libraries too, link client dynamically to them +- Dropped boinc-rsa.patch (merged upstream) +- Dropped boinc-client-6.4.5-event.patch (merged upstream) +- Dropped boinc-cuda.patch (merged upstream) +- Dropped boinc-gccflags.patch (merged upstream) +- Updated boinc-gcc44.patch (merged partially) +- Disable newly appeared standard rpaths +- Added short user guide exported from wiki as USAGE_FEDORA + * Sun Jul 19 2009 Milos Jakubicek - 6.6.37-1.r18631svn - Update to 6.6 branch - Removed boinc-locales.patch (merged upstream) - Added boinc-macbuild.patch to fix ppc/ppc64 build failure - Fixed typo in upstream bugtracker link +- Fix SELinux issue in logrotate script, resolves BZ#498165 * Thu May 14 2009 Milos Jakubicek - 6.4.7-11.r17542svn - Condrestart the service after package update. boinc-gcc44.patch: str_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: boinc-gcc44.patch =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-gcc44.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- boinc-gcc44.patch 15 Feb 2009 22:31:47 -0000 1.2 +++ boinc-gcc44.patch 21 Jul 2009 22:35:45 -0000 1.3 @@ -1,16 +1,6 @@ ---- sched/sched_driver.cpp.orig 2009-02-04 00:51:45.000000000 +0100 -+++ sched/sched_driver.cpp 2009-02-04 00:52:00.000000000 +0100 -@@ -40,6 +40,7 @@ - #define HOSTID "7" - // ID of a host belonging to that user - -+#include - #include - #include "util.h" - ---- lib/str_util.h.orig 2009-02-05 17:24:36.000000000 +0100 -+++ lib/str_util.h 2009-02-05 17:28:46.000000000 +0100 -@@ -38,7 +38,7 @@ +--- lib/str_util.h.orig 2009-07-20 22:41:29.000000000 +0200 ++++ lib/str_util.h 2009-07-20 22:41:50.000000000 +0200 +@@ -38,7 +39,7 @@ #endif #if !defined(HAVE_STRCASESTR) @@ -19,14 +9,3 @@ #endif extern int ndays_to_string(double x, int smallest_timescale, char *buf); ---- sched/sched_util.cpp.orig 2009-02-05 17:34:18.000000000 +0100 -+++ sched/sched_util.cpp 2009-02-05 17:39:20.000000000 +0100 -@@ -104,7 +104,7 @@ - #else - int try_fopen(const char* path, FCGI_FILE*& f, const char *mode) { - #endif -- char* p; -+ const char* p; - DIR* d; - char dirpath[256]; - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 20 Jul 2009 00:00:56 -0000 1.6 +++ sources 21 Jul 2009 22:35:45 -0000 1.7 @@ -1 +1 @@ -77f5a1cc0b305ff448cb1030956426f1 boinc-6.6.37.tar.bz2 +b5c60cbad27be3a136b2384151ec6b17 boinc-6.6.37.tar.bz2 --- boinc-client-6.4.5-event.patch DELETED --- --- boinc-cuda.patch DELETED --- --- boinc-gccflags.patch DELETED --- --- boinc-rsa.patch DELETED --- From orion at fedoraproject.org Tue Jul 21 22:40:09 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Tue, 21 Jul 2009 22:40:09 +0000 (UTC) Subject: rpms/GMT/F-11 GMT.spec,1.7,1.8 sources,1.4,1.5 Message-ID: <20090721224009.1BDD811C04A0@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/GMT/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19225 Modified Files: GMT.spec sources Log Message: * Fri Jul 17 2009 Orion Poplawski 4.5.0-1 - Update to 4.5.0 Index: GMT.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT/F-11/GMT.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- GMT.spec 10 Apr 2009 18:01:03 -0000 1.7 +++ GMT.spec 21 Jul 2009 22:39:38 -0000 1.8 @@ -7,8 +7,8 @@ %define octave_octdir %(octave-config -p LOCALAPIOCTFILEDIR || echo) Name: GMT -Version: 4.4.0 -Release: 2%{?dist} +Version: 4.5.0 +Release: 1%{?dist} Summary: Generic Mapping Tools Group: Applications/Engineering @@ -235,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 17 2009 Orion Poplawski 4.5.0-1 +- Update to 4.5.0 + * Fri Apr 10 2009 Orion Poplawski 4.4.0-2 - Add --enable-debug to avoid stripping of -g from CFLAGS Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/GMT/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 Feb 2009 20:15:54 -0000 1.4 +++ sources 21 Jul 2009 22:39:38 -0000 1.5 @@ -1,4 +1,4 @@ -e37256c2c0e710a207d3788a84795ad5 GMT4.4.0_share.tar.bz2 -e5aa473a2bb93001942730f3da7c915f GMT4.4.0_src.tar.bz2 -ca3c570645c4159a1f6c048ff8c2a7b1 GMT4.4.0_suppl.tar.bz2 -247e62f8468339b12d73f17dd5dbb0ad GMT4.4.0_doc.tar.bz2 +3185bda3a8245d58cadebe77ce8b6062 GMT4.5.0_doc.tar.bz2 +773a1e290e127e8de365ef33366d4247 GMT4.5.0_share.tar.bz2 +d24e5aad2f6461302ecfef94934f56c0 GMT4.5.0_src.tar.bz2 +b04baf4fc08a46ceeda4c0a5ae7dc8d7 GMT4.5.0_suppl.tar.bz2 From twaugh at fedoraproject.org Tue Jul 21 22:49:08 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 21 Jul 2009 22:49:08 +0000 (UTC) Subject: rpms/hplip/F-11 hplip-device-id.patch, NONE, 1.1 hplip.spec, 1.204, 1.205 Message-ID: <20090721224908.DD7C411C025F@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21849 Modified Files: hplip.spec Added Files: hplip-device-id.patch Log Message: * Tue Jul 21 2009 Tim Waugh 3.9.2-6 - Fixed device-id reporting. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 151 insertions(+), 15 deletions(-) --- NEW FILE hplip-device-id.patch --- diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c --- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 +++ hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 @@ -26,6 +26,8 @@ #include "hpmud.h" #include "hpmudi.h" +#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE 1 +#include mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { @@ -1959,6 +1961,137 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ +static void +get_device_id (struct usb_device *dev, const char *serial, + char *device_id, size_t len) +{ + struct usb_config_descriptor *confptr; + int try_usblp = 0; + int conf; + + *device_id = '\0'; + if (dev->descriptor.idVendor != 0x3f0) + return; + + for (conf = 0, confptr = dev->config; + conf < dev->descriptor.bNumConfigurations; + conf++, confptr++) + { + struct usb_interface *ifaceptr; + int iface = 0; + for (ifaceptr = confptr->interface; + iface < confptr->bNumInterfaces; + iface++, ifaceptr++) + { + struct usb_interface_descriptor *altptr; + int altset = 0; + for (altptr = ifaceptr->altsetting; + altset < ifaceptr->num_altsetting; + altset++, altptr++) + { + if (altptr->bInterfaceClass == USB_CLASS_PRINTER && + altptr->bInterfaceSubClass == 1) + { + int n; + struct usb_dev_handle *hd; + + if ((hd = usb_open (dev)) == NULL) + continue; + + n = confptr->bConfigurationValue; + if (usb_set_configuration (hd, n) < 0) + goto try_usblp_instead; + + n = altptr->bInterfaceNumber; + if (usb_claim_interface (hd, n) < 0) + goto try_usblp_instead; + + n = altptr->bAlternateSetting; + if (usb_set_altinterface (hd, n) < 0) + goto try_usblp_instead; + + memset (device_id, '\0', + sizeof (device_id)); + if (usb_control_msg (hd, + USB_TYPE_CLASS | + USB_ENDPOINT_IN | + USB_RECIP_INTERFACE, + 0, conf, iface, + device_id, len, + 5000) < 0) + goto try_usblp_instead; + + usb_close (hd); + memmove (device_id, device_id + 2, + len - 2); + device_id[len - 2] = '\0'; + device_id[len - 1] = '\0'; + return; + + try_usblp_instead: + usb_close (hd); + try_usblp = 1; + goto out; + } + } + } + } + + out: + if (try_usblp) + { + struct udev *udev = udev_new (); + struct udev_enumerate *en = udev_enumerate_new (udev); + struct udev_list_entry *list, *each; + udev_enumerate_add_match_subsystem (en, "usb"); + udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); + udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); + udev_enumerate_scan_devices (en); + list = udev_enumerate_get_list_entry (en); + udev_list_entry_foreach (each, list) + { + const char *syspath = udev_list_entry_get_name (each); + struct udev_device *parent_dev, *ddev; + const char *ieee1284_id; + const char *idVendor; + const char *idProductStr; + const char *serialstr; + unsigned long idProduct; + ddev = udev_device_new_from_syspath (udev, syspath); + parent_dev = + udev_device_get_parent_with_subsystem_devtype (ddev, + "usb", + "usb_device"); + idVendor = udev_device_get_sysattr_value (parent_dev, + "idVendor"); + if (!idVendor || strcmp (idVendor, "03f0")) + continue; + + idProductStr = udev_device_get_sysattr_value (parent_dev, + "idProduct"); + if (!idProductStr || + strtoul (idProductStr, NULL, 16) != + dev->descriptor.idProduct) + continue; + + serialstr = udev_device_get_sysattr_value (parent_dev, + "serial"); + if (!serialstr || strcmp (serialstr, serial)) + continue; + + ieee1284_id = udev_device_get_sysattr_value (ddev, + "ieee1284_id"); + strncpy (device_id, ieee1284_id, len); + device_id[len - 1] = '\0'; + } + + udev_enumerate_unref (en); + udev_unref (udev); + } + + return; +} + int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; @@ -2006,6 +2139,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { + char device_id[1024]; snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ @@ -2016,17 +2150,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } - /* - * For Cups 1.2 we append a dummy deviceid. A valid deviceid would require us to claim the USB interface, thus removing usblp. - * This will allow us to do discovery and not disable other CUPS backend(s) who use /dev/usb/lpx instead of libusb. - */ - if (strncasecmp(rmodel, "hp ", 3) == 0) - size += snprintf(lst+size, lst_size-size, "direct %s \"HP %s\" \"HP %s USB %s HPLIP\" \"MFG:HP;MDL:%s;CLS:PRINTER;DES:%s;SN:%s;\"\n", - sz, &rmodel[3], &rmodel[3], serial, rmodel, rmodel, rserial); - else - size += snprintf(lst+size, lst_size-size, "direct %s \"HP %s\" \"HP %s USB %s HPLIP\" \"MFG:HP;MDL:%s;CLS:PRINTER;DES:%s;SN:%s;\"\n", - sz, rmodel, rmodel, serial, rmodel, rmodel, rserial); - + get_device_id (dev, rserial, device_id, sizeof (device_id)); + if (strncasecmp(rmodel, "hp ", 3) == 0) + size += snprintf(lst+size, lst_size-size, + "direct %s \"HP %s\" \"HP %s USB %s " + "HPLIP\" \"%s\"\n", + sz, &rmodel[3], &rmodel[3], serial, + device_id); + else + size += snprintf(lst+size, lst_size-size, + "direct %s \"HP %s\" \"HP %s USB %s " + "HPLIP\" \"%s\"\n", + sz, rmodel, rmodel, serial, + device_id); *cnt+=1; } } diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 +++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h if NETWORK_BUILD -libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto +libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto else -libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread +libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 +++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h - at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread - at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto + at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread + at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto @HPLIP_BUILD_TRUE at libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" # hpmudext Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.204 retrieving revision 1.205 diff -u -p -r1.204 -r1.205 --- hplip.spec 24 Jun 2009 09:19:49 -0000 1.204 +++ hplip.spec 21 Jul 2009 22:49:07 -0000 1.205 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -16,6 +16,7 @@ Source0: http://kent.dl.sourceforge.net/ Source1: hplip.fdi Patch1: hplip-desktop.patch Patch2: hplip-segfault.patch +Patch3: hplip-device-id.patch Patch4: hplip-marker-supply.patch Patch5: hplip-dbus.patch Patch6: hplip-strstr-const.patch @@ -42,6 +43,7 @@ BuildRequires: python-devel BuildRequires: libjpeg-devel BuildRequires: desktop-file-utils BuildRequires: libusb-devel +BuildRequires: libudev-devel BuildRequires: openssl-devel BuildRequires: sane-backends-devel BuildRequires: dbus-devel @@ -110,6 +112,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} # set (bug #479808 comment 6). %patch2 -p1 -b .segfault +# Fixed device-id attributes reported by backend. +%patch3 -p1 -b .device-id + # Low ink is a warning condition, not an error. %patch4 -p1 -b .marker-supply @@ -331,6 +336,9 @@ fi exit 0 %changelog +* Tue Jul 21 2009 Tim Waugh 3.9.2-6 +- Fixed device-id reporting. + * Wed Jun 24 2009 Tim Waugh 3.9.2-5 - Set disc media for disc page sizes (bug #495672). From twaugh at fedoraproject.org Tue Jul 21 22:49:23 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Tue, 21 Jul 2009 22:49:23 +0000 (UTC) Subject: rpms/hplip/devel hplip-device-id.patch, NONE, 1.1 hplip.spec, 1.204, 1.205 Message-ID: <20090721224923.D2CCE11C025F@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21977 Modified Files: hplip.spec Added Files: hplip-device-id.patch Log Message: * Tue Jul 21 2009 Tim Waugh 3.9.2-6 - Fixed device-id reporting. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 151 insertions(+), 15 deletions(-) --- NEW FILE hplip-device-id.patch --- diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c --- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 +++ hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 @@ -26,6 +26,8 @@ #include "hpmud.h" #include "hpmudi.h" +#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE 1 +#include mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { @@ -1959,6 +1961,137 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ +static void +get_device_id (struct usb_device *dev, const char *serial, + char *device_id, size_t len) +{ + struct usb_config_descriptor *confptr; + int try_usblp = 0; + int conf; + + *device_id = '\0'; + if (dev->descriptor.idVendor != 0x3f0) + return; + + for (conf = 0, confptr = dev->config; + conf < dev->descriptor.bNumConfigurations; + conf++, confptr++) + { + struct usb_interface *ifaceptr; + int iface = 0; + for (ifaceptr = confptr->interface; + iface < confptr->bNumInterfaces; + iface++, ifaceptr++) + { + struct usb_interface_descriptor *altptr; + int altset = 0; + for (altptr = ifaceptr->altsetting; + altset < ifaceptr->num_altsetting; + altset++, altptr++) + { + if (altptr->bInterfaceClass == USB_CLASS_PRINTER && + altptr->bInterfaceSubClass == 1) + { + int n; + struct usb_dev_handle *hd; + + if ((hd = usb_open (dev)) == NULL) + continue; + + n = confptr->bConfigurationValue; + if (usb_set_configuration (hd, n) < 0) + goto try_usblp_instead; + + n = altptr->bInterfaceNumber; + if (usb_claim_interface (hd, n) < 0) + goto try_usblp_instead; + + n = altptr->bAlternateSetting; + if (usb_set_altinterface (hd, n) < 0) + goto try_usblp_instead; + + memset (device_id, '\0', + sizeof (device_id)); + if (usb_control_msg (hd, + USB_TYPE_CLASS | + USB_ENDPOINT_IN | + USB_RECIP_INTERFACE, + 0, conf, iface, + device_id, len, + 5000) < 0) + goto try_usblp_instead; + + usb_close (hd); + memmove (device_id, device_id + 2, + len - 2); + device_id[len - 2] = '\0'; + device_id[len - 1] = '\0'; + return; + + try_usblp_instead: + usb_close (hd); + try_usblp = 1; + goto out; + } + } + } + } + + out: + if (try_usblp) + { + struct udev *udev = udev_new (); + struct udev_enumerate *en = udev_enumerate_new (udev); + struct udev_list_entry *list, *each; + udev_enumerate_add_match_subsystem (en, "usb"); + udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); + udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); + udev_enumerate_scan_devices (en); + list = udev_enumerate_get_list_entry (en); + udev_list_entry_foreach (each, list) + { + const char *syspath = udev_list_entry_get_name (each); + struct udev_device *parent_dev, *ddev; + const char *ieee1284_id; + const char *idVendor; + const char *idProductStr; + const char *serialstr; + unsigned long idProduct; + ddev = udev_device_new_from_syspath (udev, syspath); + parent_dev = + udev_device_get_parent_with_subsystem_devtype (ddev, + "usb", + "usb_device"); + idVendor = udev_device_get_sysattr_value (parent_dev, + "idVendor"); + if (!idVendor || strcmp (idVendor, "03f0")) + continue; + + idProductStr = udev_device_get_sysattr_value (parent_dev, + "idProduct"); + if (!idProductStr || + strtoul (idProductStr, NULL, 16) != + dev->descriptor.idProduct) + continue; + + serialstr = udev_device_get_sysattr_value (parent_dev, + "serial"); + if (!serialstr || strcmp (serialstr, serial)) + continue; + + ieee1284_id = udev_device_get_sysattr_value (ddev, + "ieee1284_id"); + strncpy (device_id, ieee1284_id, len); + device_id[len - 1] = '\0'; + } + + udev_enumerate_unref (en); + udev_unref (udev); + } + + return; +} + int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; @@ -2006,6 +2139,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { + char device_id[1024]; snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ @@ -2016,17 +2150,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } - /* - * For Cups 1.2 we append a dummy deviceid. A valid deviceid would require us to claim the USB interface, thus removing usblp. - * This will allow us to do discovery and not disable other CUPS backend(s) who use /dev/usb/lpx instead of libusb. - */ - if (strncasecmp(rmodel, "hp ", 3) == 0) - size += snprintf(lst+size, lst_size-size, "direct %s \"HP %s\" \"HP %s USB %s HPLIP\" \"MFG:HP;MDL:%s;CLS:PRINTER;DES:%s;SN:%s;\"\n", - sz, &rmodel[3], &rmodel[3], serial, rmodel, rmodel, rserial); - else - size += snprintf(lst+size, lst_size-size, "direct %s \"HP %s\" \"HP %s USB %s HPLIP\" \"MFG:HP;MDL:%s;CLS:PRINTER;DES:%s;SN:%s;\"\n", - sz, rmodel, rmodel, serial, rmodel, rmodel, rserial); - + get_device_id (dev, rserial, device_id, sizeof (device_id)); + if (strncasecmp(rmodel, "hp ", 3) == 0) + size += snprintf(lst+size, lst_size-size, + "direct %s \"HP %s\" \"HP %s USB %s " + "HPLIP\" \"%s\"\n", + sz, &rmodel[3], &rmodel[3], serial, + device_id); + else + size += snprintf(lst+size, lst_size-size, + "direct %s \"HP %s\" \"HP %s USB %s " + "HPLIP\" \"%s\"\n", + sz, rmodel, rmodel, serial, + device_id); *cnt+=1; } } diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 +++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h if NETWORK_BUILD -libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto +libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto else -libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread +libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 +++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h - at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread - at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -lpthread -lnetsnmp -lcrypto + at HPLIP_BUILD_TRUE@@NETWORK_BUILD_FALSE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread + at HPLIP_BUILD_TRUE@@NETWORK_BUILD_TRUE at libhpmud_la_LDFLAGS = -version-info 0:4:0 -lusb -ludev -lpthread -lnetsnmp -lcrypto @HPLIP_BUILD_TRUE at libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" # hpmudext Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.204 retrieving revision 1.205 diff -u -p -r1.204 -r1.205 --- hplip.spec 24 Jun 2009 09:21:13 -0000 1.204 +++ hplip.spec 21 Jul 2009 22:49:23 -0000 1.205 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -16,6 +16,7 @@ Source0: http://kent.dl.sourceforge.net/ Source1: hplip.fdi Patch1: hplip-desktop.patch Patch2: hplip-segfault.patch +Patch3: hplip-device-id.patch Patch4: hplip-marker-supply.patch Patch5: hplip-dbus.patch Patch6: hplip-strstr-const.patch @@ -42,6 +43,7 @@ BuildRequires: python-devel BuildRequires: libjpeg-devel BuildRequires: desktop-file-utils BuildRequires: libusb-devel +BuildRequires: libudev-devel BuildRequires: openssl-devel BuildRequires: sane-backends-devel BuildRequires: dbus-devel @@ -110,6 +112,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version} # set (bug #479808 comment 6). %patch2 -p1 -b .segfault +# Fixed device-id attributes reported by backend. +%patch3 -p1 -b .device-id + # Low ink is a warning condition, not an error. %patch4 -p1 -b .marker-supply @@ -331,6 +336,9 @@ fi exit 0 %changelog +* Tue Jul 21 2009 Tim Waugh 3.9.2-6 +- Fixed device-id reporting. + * Wed Jun 24 2009 Tim Waugh 3.9.2-5 - Set disc media for disc page sizes (bug #495672). From timfenn at fedoraproject.org Tue Jul 21 22:50:41 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Tue, 21 Jul 2009 22:50:41 +0000 (UTC) Subject: rpms/pymol/F-10 pymol.spec,1.4,1.5 Message-ID: <20090721225041.3BFAC11C049E@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/pymol/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22197 Modified Files: pymol.spec Log Message: * Tue Jul 21 2009 Tim Fenn - 1.1-14.20081015svn3468 - include chempy, pmg_tk and tut subdirectories in data folder Index: pymol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymol/F-10/pymol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pymol.spec 30 Oct 2008 12:11:42 -0000 1.4 +++ pymol.spec 21 Jul 2009 22:50:10 -0000 1.5 @@ -3,7 +3,7 @@ Summary: PyMOL Molecular Graphics System Name: pymol Version: 1.1 -Release: 13.20081015svn3468%{?dist} +Release: 14.20081015svn3468%{?dist} License: MIT and BSD and ZPLv2.0 and Bitstream Vera and OFL Group: Applications/Engineering URL: http://www.pymol.org @@ -81,6 +81,9 @@ cp -pr data/demo/cgo03.py ${RPM_BUILD_RO cp -pr data/demo/il2.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pkl ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ +cp -pr data/chempy ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/chempy +cp -pr data/pmg_tk ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/pmg_tk +cp -pr data/tut ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/tut chmod 644 ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/1tii.pdb mkdir -p ${RPM_BUILD_ROOT}%{_bindir} @@ -109,6 +112,9 @@ rm -rf ${RPM_BUILD_ROOT} %{python_sitearch}/pmg_wx/ %changelog +* Tue Jul 21 2009 Tim Fenn - 1.1-14.20081015svn3468 +- include chempy, pmg_tk and tut subdirectories in data folder + * Thu Oct 30 2008 Jon Ciesla - 1.1-13-20081015svn3468 - Fixed vendor flag per kkofler. From timfenn at fedoraproject.org Tue Jul 21 22:55:29 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Tue, 21 Jul 2009 22:55:29 +0000 (UTC) Subject: rpms/pymol/EL-5 pymol.spec,1.4,1.5 Message-ID: <20090721225529.15A2511C025F@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/pymol/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23161 Modified Files: pymol.spec Log Message: * Tue Jul 21 2009 Tim Fenn - 1.1-14.20081015svn3468 - include chempy, pmg_tk and tut subdirectories in data folder Index: pymol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymol/EL-5/pymol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pymol.spec 30 Oct 2008 12:11:42 -0000 1.4 +++ pymol.spec 21 Jul 2009 22:54:58 -0000 1.5 @@ -3,7 +3,7 @@ Summary: PyMOL Molecular Graphics System Name: pymol Version: 1.1 -Release: 13.20081015svn3468%{?dist} +Release: 14.20081015svn3468%{?dist} License: MIT and BSD and ZPLv2.0 and Bitstream Vera and OFL Group: Applications/Engineering URL: http://www.pymol.org @@ -81,6 +81,9 @@ cp -pr data/demo/cgo03.py ${RPM_BUILD_RO cp -pr data/demo/il2.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pkl ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ +cp -pr data/chempy ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/chempy +cp -pr data/pmg_tk ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/pmg_tk +cp -pr data/tut ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/tut chmod 644 ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/1tii.pdb mkdir -p ${RPM_BUILD_ROOT}%{_bindir} @@ -109,6 +112,9 @@ rm -rf ${RPM_BUILD_ROOT} %{python_sitearch}/pmg_wx/ %changelog +* Tue Jul 21 2009 Tim Fenn - 1.1-14.20081015svn3468 +- include chempy, pmg_tk and tut subdirectories in data folder + * Thu Oct 30 2008 Jon Ciesla - 1.1-13-20081015svn3468 - Fixed vendor flag per kkofler. From pkgdb at fedoraproject.org Tue Jul 21 22:57:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:57:00 +0000 Subject: [pkgdb] libdap ownership updated Message-ID: <20090721225700.EFE5D10F892@bastion2.fedora.phx.redhat.com> Package libdap in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libdap From pkgdb at fedoraproject.org Tue Jul 21 22:57:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:57:18 +0000 Subject: [pkgdb] libdap ownership updated Message-ID: <20090721225718.394EC10F892@bastion2.fedora.phx.redhat.com> Package libdap in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libdap From pkgdb at fedoraproject.org Tue Jul 21 22:58:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:58:32 +0000 Subject: [pkgdb] libnc-dap ownership updated Message-ID: <20090721225832.4139F10F890@bastion2.fedora.phx.redhat.com> Package libnc-dap in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libnc-dap From pkgdb at fedoraproject.org Tue Jul 21 22:58:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:58:43 +0000 Subject: [pkgdb] libnc-dap ownership updated Message-ID: <20090721225843.EF01E10F89B@bastion2.fedora.phx.redhat.com> Package libnc-dap in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libnc-dap From pkgdb at fedoraproject.org Tue Jul 21 22:59:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:59:08 +0000 Subject: [pkgdb] bes ownership updated Message-ID: <20090721225908.C4DB310F89B@bastion2.fedora.phx.redhat.com> Package bes in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bes From pkgdb at fedoraproject.org Tue Jul 21 22:59:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 22:59:38 +0000 Subject: [pkgdb] bes ownership updated Message-ID: <20090721225939.1315310F89B@bastion2.fedora.phx.redhat.com> Package bes in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bes From pkgdb at fedoraproject.org Tue Jul 21 23:00:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:00:37 +0000 Subject: [pkgdb] dap-freeform_handler ownership updated Message-ID: <20090721230037.8F55910F890@bastion2.fedora.phx.redhat.com> Package dap-freeform_handler in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-freeform_handler From pkgdb at fedoraproject.org Tue Jul 21 23:00:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:00:46 +0000 Subject: [pkgdb] dap-freeform_handler ownership updated Message-ID: <20090721230046.C810310F89B@bastion2.fedora.phx.redhat.com> Package dap-freeform_handler in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-freeform_handler From mjakubicek at fedoraproject.org Tue Jul 21 23:01:41 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Tue, 21 Jul 2009 23:01:41 +0000 (UTC) Subject: rpms/boinc-client/devel boinc-client.spec,1.37,1.38 Message-ID: <20090721230141.857CB11C025F@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24193 Modified Files: boinc-client.spec Log Message: - Do install the new user hints, actually Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- boinc-client.spec 21 Jul 2009 22:35:45 -0000 1.37 +++ boinc-client.spec 21 Jul 2009 23:01:11 -0000 1.38 @@ -20,6 +20,7 @@ Source0: boinc-%{version}.tar.bz2 Source1: boinc-client-init-d Source2: boinc-client-logrotate-d Source3: boinc-manager.desktop +Source4: USAGE_FEDORA Source8: trim #Fix the gcc 4.4 at glibc2.10 build #Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 @@ -150,6 +151,9 @@ sed -i 's/\r//' clientgui/DlgItemPropert # We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in +# Install user hints +install -p -m644 %{SOURCE4} . + %global confflags --disable-dependency-tracking --enable-dynamic-client-linkage --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man %if %{defined boinc_platform} From pkgdb at fedoraproject.org Tue Jul 21 23:02:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:02:58 +0000 Subject: [pkgdb] dap-server ownership updated Message-ID: <20090721230258.6D36110F892@bastion2.fedora.phx.redhat.com> Package dap-server in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-server From pkgdb at fedoraproject.org Tue Jul 21 23:03:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:03:05 +0000 Subject: [pkgdb] dap-server ownership updated Message-ID: <20090721230305.7D54E10F898@bastion2.fedora.phx.redhat.com> Package dap-server in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-server From pkgdb at fedoraproject.org Tue Jul 21 23:03:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:03:34 +0000 Subject: [pkgdb] dap-netcdf_handler ownership updated Message-ID: <20090721230334.2740A10F892@bastion2.fedora.phx.redhat.com> Package dap-netcdf_handler in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-netcdf_handler From pkgdb at fedoraproject.org Tue Jul 21 23:03:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:03:41 +0000 Subject: [pkgdb] dap-netcdf_handler ownership updated Message-ID: <20090721230341.5414610F8A5@bastion2.fedora.phx.redhat.com> Package dap-netcdf_handler in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-netcdf_handler From pkgdb at fedoraproject.org Tue Jul 21 23:03:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:03:57 +0000 Subject: [pkgdb] dap-hdf4_handler ownership updated Message-ID: <20090721230357.8503F10F890@bastion2.fedora.phx.redhat.com> Package dap-hdf4_handler in Fedora devel is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-hdf4_handler From pkgdb at fedoraproject.org Tue Jul 21 23:04:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Tue, 21 Jul 2009 23:04:05 +0000 Subject: [pkgdb] dap-hdf4_handler ownership updated Message-ID: <20090721230405.6360F10F89B@bastion2.fedora.phx.redhat.com> Package dap-hdf4_handler in Fedora 11 is now owned by orion To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/dap-hdf4_handler From timfenn at fedoraproject.org Tue Jul 21 23:08:56 2009 From: timfenn at fedoraproject.org (Timothy Fenn) Date: Tue, 21 Jul 2009 23:08:56 +0000 (UTC) Subject: rpms/pymol/F-11 .cvsignore, 1.6, 1.7 pymol.spec, 1.10, 1.11 sources, 1.6, 1.7 Message-ID: <20090721230856.4900A11C025F@cvs1.fedora.phx.redhat.com> Author: timfenn Update of /cvs/pkgs/rpms/pymol/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25842 Modified Files: .cvsignore pymol.spec sources Log Message: * Tue Jul 21 2009 Tim Fenn - 1.2-6.20090709svn3827 - include chempy, pmg_tk and tut subdirectories in data folder Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pymol/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 12 Jun 2009 16:46:12 -0000 1.6 +++ .cvsignore 21 Jul 2009 23:08:25 -0000 1.7 @@ -1,2 +1,2 @@ -pymol-1.2-20090612svn3729.tar.gz +pymol-1.2-20090709svn3827.tar.gz pymol-setup.py.patch Index: pymol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymol/F-11/pymol.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pymol.spec 12 Jun 2009 16:46:12 -0000 1.10 +++ pymol.spec 21 Jul 2009 23:08:25 -0000 1.11 @@ -3,15 +3,15 @@ Summary: PyMOL Molecular Graphics System Name: pymol Version: 1.2 -Release: 4.20090612svn3729%{?dist} +Release: 6.20090709svn3827%{?dist} License: MIT and BSD and ZPLv2.0 and Bitstream Vera and OFL Group: Applications/Engineering URL: http://www.pymol.org # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn co -r 3729 https://pymol.svn.sourceforge.net/svnroot/pymol/trunk/pymol pymol-1.2 -# tar cvzf pymol-1.2-20090612svn3729.tar.gz pymol-1.2 -Source0: pymol-1.2-20090612svn3729.tar.gz +# svn co -r 3827 https://pymol.svn.sourceforge.net/svnroot/pymol/trunk/pymol pymol-1.2 +# tar cvzf pymol-1.2-20090709svn3827.tar.gz pymol-1.2 +Source0: pymol-1.2-20090709svn3827.tar.gz # the source for this xpm pulled from: # https://launchpad.net/ubuntu/intrepid/+source/pymol/1.1~beta3-3/+files/pymol_1.1~beta3-3.diff.gz Source1: %{name}-32.xpm @@ -75,6 +75,9 @@ cp -pr data/demo/cgo03.py ${RPM_BUILD_RO cp -pr data/demo/il2.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pdb ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ cp -pr data/demo/pept.pkl ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/ +cp -pr data/chempy ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/chempy +cp -pr data/pmg_tk ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/pmg_tk +cp -pr data/tut ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/tut chmod 644 ${RPM_BUILD_ROOT}%{python_sitearch}/pymol/pymol_path/data/demo/1tii.pdb mkdir -p ${RPM_BUILD_ROOT}%{_bindir} @@ -104,6 +107,12 @@ rm -rf ${RPM_BUILD_ROOT} %{python_sitearch}/pmg_wx/ %changelog +* Tue Jul 21 2009 Tim Fenn - 1.2-6.20090709svn3827 +- include chempy, pmg_tk and tut subdirectories in data folder + +* Thu Jul 07 2009 Tim Fenn - 1.2-5.20090709svn3827 +- update to SVN 3827, 1.2r1 + * Fri Jun 12 2009 Tim Fenn - 1.2-4.20090612svn3729 - update to SVN 3729, fixes contrib module bug Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pymol/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 12 Jun 2009 16:46:12 -0000 1.6 +++ sources 21 Jul 2009 23:08:25 -0000 1.7 @@ -1,2 +1,2 @@ -859f5efca2ab305430f2ae6ee372eeb7 pymol-1.2-20090612svn3729.tar.gz -1d0686173a5fb4e8b397c0dd63058185 pymol-setup.py.patch +c320a86be41098dec93acd6a17ff637b pymol-1.2-20090709svn3827.tar.gz +5d4c9a9de18416892f303f5c202f3198 pymol-setup.py.patch From bpepple at fedoraproject.org Tue Jul 21 23:11:26 2009 From: bpepple at fedoraproject.org (Brian Pepple) Date: Tue, 21 Jul 2009 23:11:26 +0000 (UTC) Subject: rpms/gstreamer-plugins-good/devel gstreamer-plugins-good.spec, 1.97, 1.98 Message-ID: <20090721231126.0635011C025F@cvs1.fedora.phx.redhat.com> Author: bpepple Update of /cvs/pkgs/rpms/gstreamer-plugins-good/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26464 Modified Files: gstreamer-plugins-good.spec Log Message: * Tue Jul 21 2009 Brian Pepple - 0.10.15-4 - Add missing provides on gst-plugins-farsight. Index: gstreamer-plugins-good.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-good/devel/gstreamer-plugins-good.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- gstreamer-plugins-good.spec 22 Jun 2009 16:57:21 -0000 1.97 +++ gstreamer-plugins-good.spec 21 Jul 2009 23:10:55 -0000 1.98 @@ -6,7 +6,7 @@ Name: %{gstreamer}-plugins-good Version: 0.10.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GStreamer plug-ins with good code and licensing Group: Applications/Multimedia @@ -68,6 +68,7 @@ Obsoletes: gstreamer-plugins-pulse < 0.9 # farsight plugins Patch0: 0001-Move-farsight-plugins-from-bad-to-good.patch BuildRequires: automake autoconf libtool +Provides: gstreamer-plugins-farsight = 0.12.12-1 Obsoletes: gstreamer-plugins-farsight < 0.12.12 %description @@ -270,6 +271,9 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer-%{majorminor}.schemas > /dev/null || : %changelog +* Tue Jul 21 2009 Brian Pepple - 0.10.15-4 +- Add missing provides on gst-plugins-farsight. + * Mon Jun 22 2009 Brian Pepple - 0.10.15-3 - Add obsolete for gst-plugins-farsight. From ajax at fedoraproject.org Tue Jul 21 23:16:03 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 23:16:03 +0000 (UTC) Subject: rpms/libXext/devel fix.patch,NONE,1.1 Message-ID: <20090721231603.978FE11C025F@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28554 Added Files: fix.patch Log Message: * Tue Jul 21 2009 Adam Jackson 1.0.99.2-0 - libXext snapshot fix.patch: DPMS.c | 2 +- XMultibuf.c | 2 +- XSecurity.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE fix.patch --- diff -up libXext-1.0.99.2/src/DPMS.c.jx libXext-1.0.99.2/src/DPMS.c --- libXext-1.0.99.2/src/DPMS.c.jx 2009-07-15 23:33:08.000000000 -0400 +++ libXext-1.0.99.2/src/DPMS.c 2009-07-16 17:17:34.000000000 -0400 @@ -38,7 +38,7 @@ Equipment Corporation. #endif #include #include -#include +#include #include #include #include diff -up libXext-1.0.99.2/src/XMultibuf.c.jx libXext-1.0.99.2/src/XMultibuf.c --- libXext-1.0.99.2/src/XMultibuf.c.jx 2009-07-15 23:33:08.000000000 -0400 +++ libXext-1.0.99.2/src/XMultibuf.c 2009-07-16 17:19:02.000000000 -0400 @@ -36,7 +36,7 @@ in this Software without prior written a #include #include #include -#include +#include #include static XExtensionInfo _multibuf_info_data; diff -up libXext-1.0.99.2/src/XSecurity.c.jx libXext-1.0.99.2/src/XSecurity.c --- libXext-1.0.99.2/src/XSecurity.c.jx 2009-07-15 23:33:08.000000000 -0400 +++ libXext-1.0.99.2/src/XSecurity.c 2009-07-16 17:19:32.000000000 -0400 @@ -33,7 +33,7 @@ in this Software without prior written a #include #include #include -#include +#include #include static XExtensionInfo _Security_info_data; From ajax at fedoraproject.org Tue Jul 21 23:16:12 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Tue, 21 Jul 2009 23:16:12 +0000 (UTC) Subject: rpms/libXext/devel .cvsignore, 1.9, 1.10 libXext.spec, 1.25, 1.26 sources, 1.10, 1.11 Message-ID: <20090721231612.D435711C025F@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28444 Modified Files: .cvsignore libXext.spec sources Log Message: * Tue Jul 21 2009 Adam Jackson 1.0.99.2-0 - libXext snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 19 Dec 2008 13:13:04 -0000 1.9 +++ .cvsignore 21 Jul 2009 23:15:42 -0000 1.10 @@ -1 +1,2 @@ libXext-1.0.99.1.tar.bz2 +libXext-1.0.99.2.tar.bz2 Index: libXext.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/libXext.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXext.spec 25 Feb 2009 13:18:07 -0000 1.25 +++ libXext.spec 21 Jul 2009 23:15:42 -0000 1.26 @@ -1,14 +1,15 @@ Summary: X.Org X11 libXext runtime library Name: libXext -Version: 1.0.99.1 -Release: 2%{?dist} +Version: 1.0.99.2 +Release: 0%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 -Source0: http://cgit.freedesktop.org/xorg/lib/libXext/snapshot/libXext-1.0.99.1.tar.bz2 +Source0: http://cgit.freedesktop.org/xorg/lib/libXext/snapshot/libXext-1.0.99.2.tar.bz2 +Patch0: fix.patch BuildRequires: xorg-x11-proto-devel >= 7.1-10 BuildRequires: libX11-devel @@ -35,6 +36,7 @@ X.Org X11 libXext development package %prep %setup -q +%patch0 -p1 -b .jx %build ./autogen.sh @@ -63,12 +65,35 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) +%{_includedir}/X11/extensions/MITMisc.h +%{_includedir}/X11/extensions/XEVI.h +%{_includedir}/X11/extensions/XLbx.h +%{_includedir}/X11/extensions/XShm.h +%{_includedir}/X11/extensions/XTest.h +%{_includedir}/X11/extensions/Xag.h +%{_includedir}/X11/extensions/Xcup.h +%{_includedir}/X11/extensions/Xdbe.h +%{_includedir}/X11/extensions/Xext.h +%{_includedir}/X11/extensions/Xge.h +%{_includedir}/X11/extensions/dpms.h +%{_includedir}/X11/extensions/extutil.h +%{_includedir}/X11/extensions/lbxbuf.h +%{_includedir}/X11/extensions/lbxbufstr.h +%{_includedir}/X11/extensions/lbximage.h +%{_includedir}/X11/extensions/multibuf.h +%{_includedir}/X11/extensions/security.h +%{_includedir}/X11/extensions/shape.h +%{_includedir}/X11/extensions/sync.h +%{_includedir}/X11/extensions/xtestext1.h %{_libdir}/libXext.so %{_libdir}/pkgconfig/xext.pc #%dir %{_mandir}/man3x %{_mandir}/man3/*.3* %changelog +* Tue Jul 21 2009 Adam Jackson 1.0.99.2-0 +- libXext snapshot + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.99.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 19 Dec 2008 13:13:04 -0000 1.10 +++ sources 21 Jul 2009 23:15:42 -0000 1.11 @@ -1 +1,2 @@ 28a0c215dca5960405634242e0f5957c libXext-1.0.99.1.tar.bz2 +520ca5f70db34767075db3366e1440e3 libXext-1.0.99.2.tar.bz2 From mjakubicek at fedoraproject.org Tue Jul 21 23:30:19 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Tue, 21 Jul 2009 23:30:19 +0000 (UTC) Subject: rpms/boinc-client/F-11 USAGE_FEDORA, NONE, 1.1 boinc-macbuild.patch, NONE, 1.1 boinc-client-logrotate-d, 1.3, 1.4 boinc-client.spec, 1.35, 1.36 boinc-gcc44.patch, 1.2, 1.3 sources, 1.5, 1.6 trim, 1.2, 1.3 boinc-client-6.4.5-event.patch, 1.1, NONE boinc-cuda.patch, 1.1, NONE boinc-gccflags.patch, 1.4, NONE boinc-locales.patch, 1.2, NONE boinc-rsa.patch, 1.1, NONE Message-ID: <20090721233019.6C57A11C04D1@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32101 Modified Files: boinc-client-logrotate-d boinc-client.spec boinc-gcc44.patch sources trim Added Files: USAGE_FEDORA boinc-macbuild.patch Removed Files: boinc-client-6.4.5-event.patch boinc-cuda.patch boinc-gccflags.patch boinc-locales.patch boinc-rsa.patch Log Message: Sync with F12/devel branch: - Rebase to 6.6a branch (resolves BZ#477882) - Ship shared libraries too, link client dynamically to them - Dropped boinc-rsa.patch (merged upstream) - Dropped boinc-client-6.4.5-event.patch (merged upstream) - Dropped boinc-cuda.patch (merged upstream) - Dropped boinc-gccflags.patch (merged upstream) - Updated boinc-gcc44.patch (merged partially) - Disable newly appeared standard rpaths - Added short user guide exported from wiki as USAGE_FEDORA - Removed boinc-locales.patch (merged upstream) - Added boinc-macbuild.patch to fix ppc/ppc64 build failure - Fixed typo in upstream bugtracker link - Fix SELinux issue in logrotate script, resolves BZ#498165 - Condrestart the service after package update. - - Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. --- NEW FILE USAGE_FEDORA --- ##################################################################################################################### Exported from http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora on July 22, 2009, see current version online. ##################################################################################################################### Installing BOINC on Fedora * 1 Basic installation * 2 What the installer does * 3 Verify the installation * 4 Set up your accounts * 5 Optional setup hints * 6 Uninstallation * 7 Known problems Basic installation Installs BOINC Client as a daemon (autostarts the BOINC client at boot time) and puts a BOINC Manager icon on the applications menu. The steps are: 1. Open a terminal, enter |su|, give the root password when prompted. 2. Enter |yum install boinc-client boinc-manager| (be patient while the BOINC package downloads and installs). 3. Optional: after the installation is finished, enter |/sbin/chkconfig boinc-client on| to have Linux auto-start the boinc-client daemon at boot time. (See Stop or start BOINC daemon after boot page for helpful commands for managing the daemon) What the installer does 1. Creates the daemon script at /etc/init.d/boinc-client. 2. Places the BOINC binaries (boinc_client, boinc_cmd and boincmgr) in /usr/bin/. 3. Creates /var/lib/boinc/ for BOINC data files and the slots and projects directories. 4. Names the daemon boinc-client. 5. Creates a user named boinc. For security, boinc owns the BOINC data directory (/var/lib/boinc/) and all the data files and sub-directories it creates in the data directory. Verify the installation 1. If you elected to have Linux start the daemon at boot time (see step 3 in section Basic installation), logout and reboot Linux now and login under your normal user account. 2. If you elected to not have Linux start the daemon at boot time, start the daemon manually with |/sbin/service boinc-client start| 3. Open a terminal and enter |ps aux | grep boinc| to print a partial list of running processes. You should see |boinc_client --daemon| in that list, if not then something went wrong in the steps above. Set up your accounts To use the GUI to set up your accounts and monitor progress: * Start "boincmgr" on the command line or select Applications -> System Tools -> Boinc Manager from the GNOME menu. * Select Advanced -> Select computer... from the Boinc Manager menu. * Put "localhost" in for "Host name" and the contents of /var/lib/boinc/gui_rpc_auth.cfg for "Password" and hit "OK". If you do only the basic installation as described above, BOINC manager will not be able to automatically connect to the client. To connect the client you will be required to give the GUI RPC password every time you start BOINC manager. That is not a bug, it is a security feature to prevent other users from using the manager to manipulate the client, change your projects, etc. If you don't want to put the password every time you run the BOINC manager, you can: 1. disable the password at all [*not recommended*] To make the GUI passwordless, do "echo > /var/lib/boinc/gui_rpc_auth.cfg" (which replaces the contents of the file with a newline) and then restart boinc-client (with e.g. "/sbin/service boinc-client restart"). 2. *with boinc-client-6.4.7-1.r17542svn and newer* it is enough if you just add your user account into the "boinc" group, e.g. by typing |/usr/sbin/usermod -G boinc -a username| 3. *with older versions* the procedure is a bit more complicated: Boinc (the user named boinc) owns /var/lib/boinc/ and all the files and directories in it so you will not be able to edit those files easily from your regular user account. The steps below add your username to the boinc group and adjust some permissions so that BOINC manager will automatically connect to BOINC client whenever you start the manager from your regular Linux user account. Also you will be able to edit files in the BOINC directory without becoming root. As you type in each command below, substitute your Linux username wherever you see |username|. Enter the following commands in a terminal, as root: 1. |/usr/sbin/usermod -G boinc -a username| 2. |chmod g+rw /var/lib/boinc| 3. |chmod g+rw /var/lib/boinc/*.*| 4. |ln -s /var/lib/boinc/gui_rpc_auth.cfg /home/username/gui_rpc_auth.cfg| 5. |chown boinc:boinc /home/username/gui_rpc_auth.cfg| Uninstallation As root, in a terminal, enter yum remove boinc-client boinc-manager Known problems boinc-client sometimes has problems connecting to the network, if the network connection comes up after the client has already started. This is a known BOINC bug, which is filed as #707. In the meantime, you can fix this by restarting boinc-client. On the command line as root, do "/sbin/service boinc-client restart". Alternatively, from the GNOME menu, you can choose System -> Administration -> Services and then stop and start the boinc-client service. boinc-macbuild.patch: gui_rpc_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE boinc-macbuild.patch --- --- boinc_core_release_6_6/client/gui_rpc_server.cpp.orig 2009-07-19 17:04:24.000000000 +0200 +++ boinc_core_release_6_6/client/gui_rpc_server.cpp 2009-07-19 17:04:32.000000000 +0200 @@ -351,7 +351,7 @@ } boinc_socklen_t addr_len = sizeof(addr); - sock = accept(lsock, (struct sockaddr*)&addr, (boinc_socklen_t*)&addr_len); + sock = accept(lsock, (struct sockaddr*)&addr, (socklen_t*)&addr_len); if (sock == -1) { return; } Index: boinc-client-logrotate-d =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-11/boinc-client-logrotate-d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- boinc-client-logrotate-d 14 Apr 2009 16:06:09 -0000 1.3 +++ boinc-client-logrotate-d 21 Jul 2009 23:30:17 -0000 1.4 @@ -10,7 +10,7 @@ # Author: Kathryn Marks # Created: October 6, 2007 # Modified: Milos Jakubicek -# Last Modified: April 12, 2009 +# Last Modified: July 19, 2009 ###################################################################### /var/log/boinc.log /var/log/boincerr.log @@ -24,13 +24,13 @@ sharedscripts prerotate if [ -f /var/lock/subsys/boinc-client ]; then - touch /var/run/boinc_was_running + touch /tmp/boinc_was_running service boinc-client stop >& /dev/null fi endscript postrotate - if [ -f /var/run/boinc_was_running ]; then - rm /var/run/boinc_was_running + if [ -f /tmp/boinc_was_running ]; then + rm /tmp/boinc_was_running service boinc-client start >& /dev/null fi endscript Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-11/boinc-client.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- boinc-client.spec 14 Apr 2009 16:06:09 -0000 1.35 +++ boinc-client.spec 21 Jul 2009 23:30:17 -0000 1.36 @@ -1,10 +1,10 @@ -%define revision 17542 -%define version_ 6_4 +%global revision 18632 +%global version_ 6_6a Summary: The BOINC client core Name: boinc-client -Version: 6.4.7 -Release: 10.r%{revision}svn%{?dist} +Version: 6.6.37 +Release: 2.r%{revision}svn%{?dist} License: LGPLv2+ Group: Applications/Engineering URL: http://boinc.berkeley.edu/ @@ -20,34 +20,26 @@ Source0: boinc-%{version}.tar.bz2 Source1: boinc-client-init-d Source2: boinc-client-logrotate-d Source3: boinc-manager.desktop +Source4: USAGE_FEDORA Source8: trim -#Remove -fomit-frame-pointer and -ffast-math gcc flags: -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/647 -Patch1: boinc-gccflags.patch -#Fix security bug BZ#479664 -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 -Patch2: boinc-rsa.patch -#Change locales filenames from "BOINC Manager.mo" into "BOINC-Manager.mo" -#so that we can use the find_lang macro. -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/722 -#Fixed in SVN trunk, not yet in BOINC 6 branch. -Patch3: boinc-locales.patch -#Both of these patches fix the gcc 4.4 build -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 +#Fix the gcc 4.4 at glibc2.10 build +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 Patch4: boinc-gcc44.patch -Patch5: boinc-client-6.4.5-event.patch #Create password file rw for group, this enables passwordless connection #of manager from users of the boinc group. #This won't be probably upstreamed as it might be unsafe for common usage #without setting proper group ownership of the password file. Patch6: boinc-guirpcauth.patch -#Enable dlopening libcudart.so from standard paths -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/863 -Patch7: boinc-cuda.patch +#Fix Mac build: +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/941 +Patch8: boinc-macbuild.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: logrotate -Requires: chkconfig +Requires(post): chkconfig +Requires(preun): chkconfig +Requires(preun): initscripts +Requires(postun): initscripts Requires(pre): shadow-utils BuildRequires: MySQL-python @@ -99,11 +91,19 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: openssl-devel Requires: mysql-devel -Provides: %{name}-static = %{version}-%{release} %description devel This package contains development files for %{name}. +%package static +Summary: Static libraries for %{name} +Group: Development/Libraries + +Requires: %{name}-devel = %{version}-%{release} + +%description static +This package contains static libraries for %{name}. + %package doc Summary: Documentation files for %{name} Group: Documentation @@ -116,13 +116,9 @@ This package contains documentation file %prep %setup -q -n boinc_core_release_%{version_} -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 %patch4 -%patch5 -p1 %patch6 -%patch7 +%patch8 -p1 # fix utf8 iconv -f ISO88591 -t UTF8 < checkin_notes_2004 > checkin_notes_2004.utf8 @@ -137,23 +133,28 @@ iconv -f ISO88591 -t UTF8 < checkin_note touch -r checkin_notes_2006 checkin_notes_2006.utf8 mv checkin_notes_2006.utf8 checkin_notes_2006 +# fix permissions and newlines on source files +chmod 644 clientgui/{DlgItemProperties.h,AsyncRPC.cpp,DlgItemProperties.cpp} +sed -i 's/\r//' clientgui/DlgItemProperties.cpp + %build %ifarch %{ix86} -%define boinc_platform i686-pc-linux-gnu +%global boinc_platform i686-pc-linux-gnu %endif %ifarch powerpc ppc -%define boinc_platform powerpc-linux-gnu +%global boinc_platform powerpc-linux-gnu %endif %ifarch powerpc64 ppc64 -%define boinc_platform ppc64-linux-gnu +%global boinc_platform ppc64-linux-gnu %endif -#quick fix to make build & install to work, filed in upstream's bugtracker under -#http://boinc.berkeley.edu/trac/ticket/811 -sed -i "s/boincmgr.16x16.png boincmgr.32x32.png boincmgr.48x48.png//" clientgui/res/Makefile.in -echo "install:" >> samples/example_app/Makefile +# We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 +sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in + +# Install user hints +install -p -m644 %{SOURCE4} . -%define confflags --disable-static --enable-unicode STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man +%global confflags --disable-dependency-tracking --enable-dynamic-client-linkage --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man %if %{defined boinc_platform} %configure %{confflags} --with-boinc-platform=%{boinc_platform} @@ -161,8 +162,12 @@ echo "install:" >> samples/example_app/M %configure %{confflags} %endif +# Disable rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Parallel make does not work. +# Parallel make does not work, see upstream bugtracker at: +# http://boinc.berkeley.edu/trac/ticket/775 make %install @@ -190,8 +195,17 @@ rm -rf $RPM_BUILD_ROOT%{_bindir}/updater rm -rf $RPM_BUILD_ROOT%{_bindir}/upper_case pushd $RPM_BUILD_ROOT%{_bindir} + +# use symlink instead of hardlink +rm boinc ln -s boinc_client boinc -mv boinc_cmd boinccmd + +# remove libtool archives +rm $RPM_BUILD_ROOT%{_libdir}/*.la + +# rename boincmgr and wrap it +mv $RPM_BUILD_ROOT%{_bindir}/boincmgr $RPM_BUILD_ROOT%{_bindir}/boinc_gui + cat > boincmgr < USAGE_FEDORA <<-EOF - For up-to-date instructions on how to setup BOINC client on Fedora, please have a look at: http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora -EOF - %clean rm -rf $RPM_BUILD_ROOT @@ -263,6 +260,7 @@ useradd -r -g boinc -d %{_localstatedir} exit 0 %post +/sbin/ldconfig /sbin/chkconfig --add boinc-client #correct wrong owner and group on files under /var/lib/boinc and log files @@ -276,6 +274,14 @@ if [ $1 -eq 0 ]; then #if uninstalling, /sbin/chkconfig --del boinc-client fi +%postun +/sbin/ldconfig + +if [ "$1" -ge "1" ] ; then + /sbin/service boinc-client condrestart >/dev/null 2>&1 || : +fi + + %post -n boinc-manager touch --no-create %{_datadir}/icons/hicolor || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then @@ -297,13 +303,13 @@ fi %{_bindir}/boinc %{_bindir}/boinc_client %{_bindir}/boinccmd -%{_bindir}/crypt_prog %{_bindir}/switcher %{_initrddir}/%{name} %{_mandir}/man1/boinccmd.1.gz %{_mandir}/man1/boinc.1.gz %defattr(-,boinc,boinc,-) %{_localstatedir}/lib/boinc/ +%{_libdir}/*.so.* %files doc %defattr(-,root,root,-) @@ -319,18 +325,40 @@ fi %{_datadir}/icons/hicolor/48x48/apps/boincmgr.png %{_mandir}/man1/boincmgr.1.gz -%files devel +%files static %defattr(-,root,root,-) %{_libdir}/libboinc.a %{_libdir}/libboinc_api.a -%{_libdir}/libboinc_zip.a -%{_libdir}/libsched.a %{_libdir}/libboinc_graphics2.a -%dir %{_includedir}/boinc -%{_includedir}/boinc/* +%files devel +%defattr(-,root,root,-) +%{_libdir}/*.so +%{_includedir}/boinc %changelog +* Tue Jul 21 2009 Milos Jakubicek - 6.6.37-2.r18632svn +- Rebase to 6.6a branch (resolves BZ#477882) +- Ship shared libraries too, link client dynamically to them +- Dropped boinc-rsa.patch (merged upstream) +- Dropped boinc-client-6.4.5-event.patch (merged upstream) +- Dropped boinc-cuda.patch (merged upstream) +- Dropped boinc-gccflags.patch (merged upstream) +- Updated boinc-gcc44.patch (merged partially) +- Disable newly appeared standard rpaths +- Added short user guide exported from wiki as USAGE_FEDORA + +* Sun Jul 19 2009 Milos Jakubicek - 6.6.37-1.r18631svn +- Update to 6.6 branch +- Removed boinc-locales.patch (merged upstream) +- Added boinc-macbuild.patch to fix ppc/ppc64 build failure +- Fixed typo in upstream bugtracker link +- Fix SELinux issue in logrotate script, resolves BZ#498165 + +* Thu May 14 2009 Milos Jakubicek - 6.4.7-11.r17542svn +- Condrestart the service after package update. +- Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. + * Wed Apr 14 2009 Milos Jakubicek - 6.4.7-10.r17542svn - Fix lock file name in logrotate script, do not override global logrotate configuration (BZ#494179). boinc-gcc44.patch: str_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: boinc-gcc44.patch =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-11/boinc-gcc44.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- boinc-gcc44.patch 15 Feb 2009 22:31:47 -0000 1.2 +++ boinc-gcc44.patch 21 Jul 2009 23:30:17 -0000 1.3 @@ -1,16 +1,6 @@ ---- sched/sched_driver.cpp.orig 2009-02-04 00:51:45.000000000 +0100 -+++ sched/sched_driver.cpp 2009-02-04 00:52:00.000000000 +0100 -@@ -40,6 +40,7 @@ - #define HOSTID "7" - // ID of a host belonging to that user - -+#include - #include - #include "util.h" - ---- lib/str_util.h.orig 2009-02-05 17:24:36.000000000 +0100 -+++ lib/str_util.h 2009-02-05 17:28:46.000000000 +0100 -@@ -38,7 +38,7 @@ +--- lib/str_util.h.orig 2009-07-20 22:41:29.000000000 +0200 ++++ lib/str_util.h 2009-07-20 22:41:50.000000000 +0200 +@@ -38,7 +39,7 @@ #endif #if !defined(HAVE_STRCASESTR) @@ -19,14 +9,3 @@ #endif extern int ndays_to_string(double x, int smallest_timescale, char *buf); ---- sched/sched_util.cpp.orig 2009-02-05 17:34:18.000000000 +0100 -+++ sched/sched_util.cpp 2009-02-05 17:39:20.000000000 +0100 -@@ -104,7 +104,7 @@ - #else - int try_fopen(const char* path, FCGI_FILE*& f, const char *mode) { - #endif -- char* p; -+ const char* p; - DIR* d; - char dirpath[256]; - Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 7 Mar 2009 01:36:17 -0000 1.5 +++ sources 21 Jul 2009 23:30:18 -0000 1.6 @@ -1 +1 @@ -9593e6daa2d8604e274470065bd31b80 boinc-6.4.7.tar.bz2 +b5c60cbad27be3a136b2384151ec6b17 boinc-6.6.37.tar.bz2 Index: trim =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-11/trim,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- trim 1 Jan 2009 22:35:38 -0000 1.2 +++ trim 21 Jul 2009 23:30:18 -0000 1.3 @@ -9,7 +9,7 @@ fi echo "Trimming directories..." -DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs/CUDA/mswin" +DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs" for DIR in $DIRS; do /bin/rm -rf $1/$DIR; --- boinc-client-6.4.5-event.patch DELETED --- --- boinc-cuda.patch DELETED --- --- boinc-gccflags.patch DELETED --- --- boinc-locales.patch DELETED --- --- boinc-rsa.patch DELETED --- From mjakubicek at fedoraproject.org Tue Jul 21 23:56:50 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Tue, 21 Jul 2009 23:56:50 +0000 (UTC) Subject: rpms/boinc-client/F-10 USAGE_FEDORA, NONE, 1.1 boinc-macbuild.patch, NONE, 1.1 boinc-client-logrotate-d, 1.3, 1.4 boinc-client.spec, 1.30, 1.31 sources, 1.5, 1.6 trim, 1.2, 1.3 boinc-cuda.patch, 1.1, NONE boinc-gccflags.patch, 1.4, NONE boinc-locales.patch, 1.2, NONE boinc-rsa.patch, 1.1, NONE Message-ID: <20090721235650.5070011C025F@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9716 Modified Files: boinc-client-logrotate-d boinc-client.spec sources trim Added Files: USAGE_FEDORA boinc-macbuild.patch Removed Files: boinc-cuda.patch boinc-gccflags.patch boinc-locales.patch boinc-rsa.patch Log Message: Sync with F12/devel branch: - Rebase to 6.6a branch (resolves BZ#477882) - Ship shared libraries too, link client dynamically to them - Dropped boinc-rsa.patch (merged upstream) - Dropped boinc-client-6.4.5-event.patch (merged upstream) - Dropped boinc-cuda.patch (merged upstream) - Dropped boinc-gccflags.patch (merged upstream) - Updated boinc-gcc44.patch (merged partially) - Disable newly appeared standard rpaths - Added short user guide exported from wiki as USAGE_FEDORA - Removed boinc-locales.patch (merged upstream) - Added boinc-macbuild.patch to fix ppc/ppc64 build failure - Fixed typo in upstream bugtracker link - Fix SELinux issue in logrotate script, resolves BZ#498165 - Condrestart the service after package update. - Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. --- NEW FILE USAGE_FEDORA --- ##################################################################################################################### Exported from http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora on July 22, 2009, see current version online. ##################################################################################################################### Installing BOINC on Fedora * 1 Basic installation * 2 What the installer does * 3 Verify the installation * 4 Set up your accounts * 5 Optional setup hints * 6 Uninstallation * 7 Known problems Basic installation Installs BOINC Client as a daemon (autostarts the BOINC client at boot time) and puts a BOINC Manager icon on the applications menu. The steps are: 1. Open a terminal, enter |su|, give the root password when prompted. 2. Enter |yum install boinc-client boinc-manager| (be patient while the BOINC package downloads and installs). 3. Optional: after the installation is finished, enter |/sbin/chkconfig boinc-client on| to have Linux auto-start the boinc-client daemon at boot time. (See Stop or start BOINC daemon after boot page for helpful commands for managing the daemon) What the installer does 1. Creates the daemon script at /etc/init.d/boinc-client. 2. Places the BOINC binaries (boinc_client, boinc_cmd and boincmgr) in /usr/bin/. 3. Creates /var/lib/boinc/ for BOINC data files and the slots and projects directories. 4. Names the daemon boinc-client. 5. Creates a user named boinc. For security, boinc owns the BOINC data directory (/var/lib/boinc/) and all the data files and sub-directories it creates in the data directory. Verify the installation 1. If you elected to have Linux start the daemon at boot time (see step 3 in section Basic installation), logout and reboot Linux now and login under your normal user account. 2. If you elected to not have Linux start the daemon at boot time, start the daemon manually with |/sbin/service boinc-client start| 3. Open a terminal and enter |ps aux | grep boinc| to print a partial list of running processes. You should see |boinc_client --daemon| in that list, if not then something went wrong in the steps above. Set up your accounts To use the GUI to set up your accounts and monitor progress: * Start "boincmgr" on the command line or select Applications -> System Tools -> Boinc Manager from the GNOME menu. * Select Advanced -> Select computer... from the Boinc Manager menu. * Put "localhost" in for "Host name" and the contents of /var/lib/boinc/gui_rpc_auth.cfg for "Password" and hit "OK". If you do only the basic installation as described above, BOINC manager will not be able to automatically connect to the client. To connect the client you will be required to give the GUI RPC password every time you start BOINC manager. That is not a bug, it is a security feature to prevent other users from using the manager to manipulate the client, change your projects, etc. If you don't want to put the password every time you run the BOINC manager, you can: 1. disable the password at all [*not recommended*] To make the GUI passwordless, do "echo > /var/lib/boinc/gui_rpc_auth.cfg" (which replaces the contents of the file with a newline) and then restart boinc-client (with e.g. "/sbin/service boinc-client restart"). 2. *with boinc-client-6.4.7-1.r17542svn and newer* it is enough if you just add your user account into the "boinc" group, e.g. by typing |/usr/sbin/usermod -G boinc -a username| 3. *with older versions* the procedure is a bit more complicated: Boinc (the user named boinc) owns /var/lib/boinc/ and all the files and directories in it so you will not be able to edit those files easily from your regular user account. The steps below add your username to the boinc group and adjust some permissions so that BOINC manager will automatically connect to BOINC client whenever you start the manager from your regular Linux user account. Also you will be able to edit files in the BOINC directory without becoming root. As you type in each command below, substitute your Linux username wherever you see |username|. Enter the following commands in a terminal, as root: 1. |/usr/sbin/usermod -G boinc -a username| 2. |chmod g+rw /var/lib/boinc| 3. |chmod g+rw /var/lib/boinc/*.*| 4. |ln -s /var/lib/boinc/gui_rpc_auth.cfg /home/username/gui_rpc_auth.cfg| 5. |chown boinc:boinc /home/username/gui_rpc_auth.cfg| Uninstallation As root, in a terminal, enter yum remove boinc-client boinc-manager Known problems boinc-client sometimes has problems connecting to the network, if the network connection comes up after the client has already started. This is a known BOINC bug, which is filed as #707. In the meantime, you can fix this by restarting boinc-client. On the command line as root, do "/sbin/service boinc-client restart". Alternatively, from the GNOME menu, you can choose System -> Administration -> Services and then stop and start the boinc-client service. boinc-macbuild.patch: gui_rpc_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE boinc-macbuild.patch --- --- boinc_core_release_6_6/client/gui_rpc_server.cpp.orig 2009-07-19 17:04:24.000000000 +0200 +++ boinc_core_release_6_6/client/gui_rpc_server.cpp 2009-07-19 17:04:32.000000000 +0200 @@ -351,7 +351,7 @@ } boinc_socklen_t addr_len = sizeof(addr); - sock = accept(lsock, (struct sockaddr*)&addr, (boinc_socklen_t*)&addr_len); + sock = accept(lsock, (struct sockaddr*)&addr, (socklen_t*)&addr_len); if (sock == -1) { return; } Index: boinc-client-logrotate-d =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/boinc-client-logrotate-d,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- boinc-client-logrotate-d 14 Apr 2009 16:08:06 -0000 1.3 +++ boinc-client-logrotate-d 21 Jul 2009 23:56:19 -0000 1.4 @@ -10,7 +10,7 @@ # Author: Kathryn Marks # Created: October 6, 2007 # Modified: Milos Jakubicek -# Last Modified: April 12, 2009 +# Last Modified: July 19, 2009 ###################################################################### /var/log/boinc.log /var/log/boincerr.log @@ -24,13 +24,13 @@ sharedscripts prerotate if [ -f /var/lock/subsys/boinc-client ]; then - touch /var/run/boinc_was_running + touch /tmp/boinc_was_running service boinc-client stop >& /dev/null fi endscript postrotate - if [ -f /var/run/boinc_was_running ]; then - rm /var/run/boinc_was_running + if [ -f /tmp/boinc_was_running ]; then + rm /tmp/boinc_was_running service boinc-client start >& /dev/null fi endscript Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/boinc-client.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- boinc-client.spec 14 Apr 2009 16:08:06 -0000 1.30 +++ boinc-client.spec 21 Jul 2009 23:56:19 -0000 1.31 @@ -1,10 +1,10 @@ -%define revision 17542 -%define version_ 6_4 +%global revision 18632 +%global version_ 6_6a Summary: The BOINC client core Name: boinc-client -Version: 6.4.7 -Release: 10.r%{revision}svn%{?dist} +Version: 6.6.37 +Release: 2.r%{revision}svn%{?dist} License: LGPLv2+ Group: Applications/Engineering URL: http://boinc.berkeley.edu/ @@ -20,34 +20,26 @@ Source0: boinc-%{version}.tar.bz2 Source1: boinc-client-init-d Source2: boinc-client-logrotate-d Source3: boinc-manager.desktop +Source4: USAGE_FEDORA Source8: trim -#Remove -fomit-frame-pointer and -ffast-math gcc flags: -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/647 -Patch1: boinc-gccflags.patch -#Fix security bug BZ#479664 -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 -Patch2: boinc-rsa.patch -#Change locales filenames from "BOINC Manager.mo" into "BOINC-Manager.mo" -#so that we can use the find_lang macro. -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/722 -#Fixed in SVN trunk, not yet in BOINC 6 branch. -Patch3: boinc-locales.patch -#Both of these patches fix the gcc 4.4 build -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/823 -#Patch4: boinc-gcc44.patch -#Patch5: boinc-client-6.4.5-event.patch +#Fix the gcc 4.4 at glibc2.10 build +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 +Patch4: boinc-gcc44.patch #Create password file rw for group, this enables passwordless connection #of manager from users of the boinc group. #This won't be probably upstreamed as it might be unsafe for common usage #without setting proper group ownership of the password file. Patch6: boinc-guirpcauth.patch -#Enable dlopening libcudart.so from standard paths -#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/863 -Patch7: boinc-cuda.patch +#Fix Mac build: +#Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/941 +Patch8: boinc-macbuild.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: logrotate -Requires: chkconfig +Requires(post): chkconfig +Requires(preun): chkconfig +Requires(preun): initscripts +Requires(postun): initscripts Requires(pre): shadow-utils BuildRequires: MySQL-python @@ -99,11 +91,19 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: openssl-devel Requires: mysql-devel -Provides: %{name}-static = %{version}-%{release} %description devel This package contains development files for %{name}. +%package static +Summary: Static libraries for %{name} +Group: Development/Libraries + +Requires: %{name}-devel = %{version}-%{release} + +%description static +This package contains static libraries for %{name}. + %package doc Summary: Documentation files for %{name} Group: Documentation @@ -116,13 +116,9 @@ This package contains documentation file %prep %setup -q -n boinc_core_release_%{version_} -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -#%patch4 -#%patch5 -p1 +%patch4 %patch6 -%patch7 +%patch8 -p1 # fix utf8 iconv -f ISO88591 -t UTF8 < checkin_notes_2004 > checkin_notes_2004.utf8 @@ -137,23 +133,28 @@ iconv -f ISO88591 -t UTF8 < checkin_note touch -r checkin_notes_2006 checkin_notes_2006.utf8 mv checkin_notes_2006.utf8 checkin_notes_2006 +# fix permissions and newlines on source files +chmod 644 clientgui/{DlgItemProperties.h,AsyncRPC.cpp,DlgItemProperties.cpp} +sed -i 's/\r//' clientgui/DlgItemProperties.cpp + %build %ifarch %{ix86} -%define boinc_platform i686-pc-linux-gnu +%global boinc_platform i686-pc-linux-gnu %endif %ifarch powerpc ppc -%define boinc_platform powerpc-linux-gnu +%global boinc_platform powerpc-linux-gnu %endif %ifarch powerpc64 ppc64 -%define boinc_platform ppc64-linux-gnu +%global boinc_platform ppc64-linux-gnu %endif -#quick fix to make build & install to work, filed in upstream's bugtracker under -#http://boinc.berkeley.edu/trac/ticket/811 -sed -i "s/boincmgr.16x16.png boincmgr.32x32.png boincmgr.48x48.png//" clientgui/res/Makefile.in -echo "install:" >> samples/example_app/Makefile +# We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 +sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in + +# Install user hints +install -p -m644 %{SOURCE4} . -%define confflags --disable-static --enable-unicode STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man +%global confflags --disable-dependency-tracking --enable-dynamic-client-linkage --disable-server --disable-fcgi --enable-unicode --with-ssl --with-x STRIP=: DOCBOOK2X_MAN=/usr/bin/db2x_docbook2man %if %{defined boinc_platform} %configure %{confflags} --with-boinc-platform=%{boinc_platform} @@ -161,8 +162,12 @@ echo "install:" >> samples/example_app/M %configure %{confflags} %endif +# Disable rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -# Parallel make does not work. +# Parallel make does not work, see upstream bugtracker at: +# http://boinc.berkeley.edu/trac/ticket/775 make %install @@ -190,8 +195,17 @@ rm -rf $RPM_BUILD_ROOT%{_bindir}/updater rm -rf $RPM_BUILD_ROOT%{_bindir}/upper_case pushd $RPM_BUILD_ROOT%{_bindir} + +# use symlink instead of hardlink +rm boinc ln -s boinc_client boinc -mv boinc_cmd boinccmd + +# remove libtool archives +rm $RPM_BUILD_ROOT%{_libdir}/*.la + +# rename boincmgr and wrap it +mv $RPM_BUILD_ROOT%{_bindir}/boincmgr $RPM_BUILD_ROOT%{_bindir}/boinc_gui + cat > boincmgr < USAGE_FEDORA <<-EOF - For up-to-date instructions on how to setup BOINC client on Fedora, please have a look at: http://boinc.berkeley.edu/wiki/Installing_BOINC_on_Fedora -EOF - %clean rm -rf $RPM_BUILD_ROOT @@ -263,6 +260,7 @@ useradd -r -g boinc -d %{_localstatedir} exit 0 %post +/sbin/ldconfig /sbin/chkconfig --add boinc-client #correct wrong owner and group on files under /var/lib/boinc and log files @@ -276,6 +274,14 @@ if [ $1 -eq 0 ]; then #if uninstalling, /sbin/chkconfig --del boinc-client fi +%postun +/sbin/ldconfig + +if [ "$1" -ge "1" ] ; then + /sbin/service boinc-client condrestart >/dev/null 2>&1 || : +fi + + %post -n boinc-manager touch --no-create %{_datadir}/icons/hicolor || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then @@ -297,13 +303,13 @@ fi %{_bindir}/boinc %{_bindir}/boinc_client %{_bindir}/boinccmd -%{_bindir}/crypt_prog %{_bindir}/switcher %{_initrddir}/%{name} %{_mandir}/man1/boinccmd.1.gz %{_mandir}/man1/boinc.1.gz %defattr(-,boinc,boinc,-) %{_localstatedir}/lib/boinc/ +%{_libdir}/*.so.* %files doc %defattr(-,root,root,-) @@ -319,18 +325,40 @@ fi %{_datadir}/icons/hicolor/48x48/apps/boincmgr.png %{_mandir}/man1/boincmgr.1.gz -%files devel +%files static %defattr(-,root,root,-) %{_libdir}/libboinc.a %{_libdir}/libboinc_api.a -%{_libdir}/libboinc_zip.a -%{_libdir}/libsched.a %{_libdir}/libboinc_graphics2.a -%dir %{_includedir}/boinc -%{_includedir}/boinc/* +%files devel +%defattr(-,root,root,-) +%{_libdir}/*.so +%{_includedir}/boinc %changelog +* Tue Jul 21 2009 Milos Jakubicek - 6.6.37-2.r18632svn +- Rebase to 6.6a branch (resolves BZ#477882) +- Ship shared libraries too, link client dynamically to them +- Dropped boinc-rsa.patch (merged upstream) +- Dropped boinc-client-6.4.5-event.patch (merged upstream) +- Dropped boinc-cuda.patch (merged upstream) +- Dropped boinc-gccflags.patch (merged upstream) +- Updated boinc-gcc44.patch (merged partially) +- Disable newly appeared standard rpaths +- Added short user guide exported from wiki as USAGE_FEDORA + +* Sun Jul 19 2009 Milos Jakubicek - 6.6.37-1.r18631svn +- Update to 6.6 branch +- Removed boinc-locales.patch (merged upstream) +- Added boinc-macbuild.patch to fix ppc/ppc64 build failure +- Fixed typo in upstream bugtracker link +- Fix SELinux issue in logrotate script, resolves BZ#498165 + +* Thu May 14 2009 Milos Jakubicek - 6.4.7-11.r17542svn +- Condrestart the service after package update. +- Added R: initscripts (needed for /sbin/service), chkconfig R: moved to scriptlets. + * Wed Apr 14 2009 Milos Jakubicek - 6.4.7-10.r17542svn - Fix lock file name in logrotate script, do not override global logrotate configuration (BZ#494179). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 7 Mar 2009 02:54:53 -0000 1.5 +++ sources 21 Jul 2009 23:56:20 -0000 1.6 @@ -1 +1 @@ -9593e6daa2d8604e274470065bd31b80 boinc-6.4.7.tar.bz2 +b5c60cbad27be3a136b2384151ec6b17 boinc-6.6.37.tar.bz2 Index: trim =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/trim,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- trim 15 Jan 2009 01:23:57 -0000 1.2 +++ trim 21 Jul 2009 23:56:20 -0000 1.3 @@ -9,7 +9,7 @@ fi echo "Trimming directories..." -DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs/CUDA/mswin" +DIRS="win_build html openssl client/os2 client/win clientgui/mac clientlib clienttray curl/include curl/mswin curl/patches lib/mac mac_build mac_installer zip/zip/macos zip/zip/win32 zip/unzip/macos zip/unzip/win32 zlib RSAEuro stripchart coprocs" for DIR in $DIRS; do /bin/rm -rf $1/$DIR; --- boinc-cuda.patch DELETED --- --- boinc-gccflags.patch DELETED --- --- boinc-locales.patch DELETED --- --- boinc-rsa.patch DELETED --- From zaitcev at fedoraproject.org Wed Jul 22 00:16:12 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 00:16:12 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch,NONE,1.1.2.1 cld.spec,1.4,1.4.2.1 Message-ID: <20090722001612.A593B11C025F@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17269 Modified Files: Tag: private-zaitcev-bz512560 cld.spec Added Files: Tag: private-zaitcev-bz512560 cld-test.patch Log Message: Tipping toes for the assault on PPC. cld-test.patch: load-file-event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE cld-test.patch --- diff -urp cld-0.2git/test/load-file-event.c cld-0.2git-p3/test/load-file-event.c --- cld-0.2git/test/load-file-event.c 2009-07-20 14:30:47.000000000 -0600 +++ cld-0.2git-p3/test/load-file-event.c 2009-07-21 17:43:49.000000000 -0600 @@ -212,7 +212,7 @@ static int init(char *name) if (rc) return rc; - // run.udp->sess->verbose = true; + run.udp->sess->verbose = true; event_set(&run.udp_ev, run.udp->fd, EV_READ | EV_PERSIST, udp_event, &run); Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -u -p -r1.4 -r1.4.2.1 --- cld.spec 21 Jul 2009 19:23:50 -0000 1.4 +++ cld.spec 22 Jul 2009 00:15:42 -0000 1.4.2.1 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962%{?dist} +Release: 0.4.gc5b5f962.bz512560.1%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -12,6 +12,10 @@ URL: http://hail.wiki.kernel.org/ Source0: cld-%{version}git.tar.gz Source2: cld.init Source3: cld.sysconf + +# The placeholder for experimentation +Patch1001: cld-test.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: db4-devel libevent-devel glib2-devel doxygen openssl-devel @@ -42,6 +46,7 @@ developing applications that use %{name} %prep %setup -q -n cld-0.2git +%patch1001 -p1 %build %configure --disable-static @@ -101,6 +106,9 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Pete Zaitcev +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.1 + * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From cchance at fedoraproject.org Wed Jul 22 00:43:03 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 00:43:03 +0000 (UTC) Subject: rpms/ibus-table-yong/devel Makefile,1.1,1.2 Message-ID: <20090722004303.BF36F11C025F@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27591 Modified Files: Makefile Log Message: - Removed BuildRequires of gettext-devel and automake. - Removed directories that do not need to own. Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- Makefile 6 May 2009 21:00:43 -0000 1.1 +++ Makefile 22 Jul 2009 00:43:02 -0000 1.2 @@ -1,7 +1,7 @@ # Makefile for source rpm: ibus-table-yong # $Id$ -NAME := ibus-table-yong -SPECFILE = $(firstword $(wildcard *.spec)) +NAME := ibus-table-translit +SPECFILE = ibus-table-translit.spec define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done From ovasik at fedoraproject.org Wed Jul 22 01:05:08 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Wed, 22 Jul 2009 01:05:08 +0000 (UTC) Subject: rpms/docbook-style-xsl/devel docbook-style-xsl.spec, 1.61, 1.62 sources, 1.28, 1.29 Message-ID: <20090722010508.1735411C025F@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5052 Modified Files: docbook-style-xsl.spec sources Log Message: upstream changed tarballs after release Index: docbook-style-xsl.spec =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/docbook-style-xsl.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- docbook-style-xsl.spec 21 Jul 2009 08:18:33 -0000 1.61 +++ docbook-style-xsl.spec 22 Jul 2009 01:04:37 -0000 1.62 @@ -1,6 +1,6 @@ Name: docbook-style-xsl Version: 1.75.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Summary: Norman Walsh's XSL stylesheets for DocBook XML @@ -117,6 +117,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Wed Jul 22 2009 Ondrej Vasik 1.75.2-2 +- upstream changed tarballs after release + * Tue Jul 21 2009 Ondrej Vasik 1.75.2-1 - New upstream release 1.75.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 21 Jul 2009 08:18:33 -0000 1.28 +++ sources 22 Jul 2009 01:04:37 -0000 1.29 @@ -1,2 +1,2 @@ -d243db1b21b9856d41cb15c6fb488f2b docbook-xsl-1.75.2.tar.bz2 -db8947bf922368b1abcdcef94c508925 docbook-xsl-doc-1.75.2.tar.bz2 +0c76a58a8e6cb5ab49f819e79917308f docbook-xsl-1.75.2.tar.bz2 +312e7ff73494875269260d36636ccdd3 docbook-xsl-doc-1.75.2.tar.bz2 From mjakubicek at fedoraproject.org Wed Jul 22 01:14:02 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Wed, 22 Jul 2009 01:14:02 +0000 (UTC) Subject: rpms/boinc-client/F-10 boinc-client.spec,1.31,1.32 Message-ID: <20090722011403.3998511C025F@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8031 Modified Files: boinc-client.spec Log Message: - Disable boinc-gcc44.patch (GCC 4.4 not in F10) Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/boinc-client.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- boinc-client.spec 21 Jul 2009 23:56:19 -0000 1.31 +++ boinc-client.spec 22 Jul 2009 01:13:32 -0000 1.32 @@ -24,7 +24,7 @@ Source4: USAGE_FEDORA Source8: trim #Fix the gcc 4.4 at glibc2.10 build #Reported in upstream bugtracker: http://boinc.berkeley.edu/trac/ticket/854 -Patch4: boinc-gcc44.patch +#Patch4: boinc-gcc44.patch #Create password file rw for group, this enables passwordless connection #of manager from users of the boinc group. #This won't be probably upstreamed as it might be unsafe for common usage @@ -116,7 +116,7 @@ This package contains documentation file %prep %setup -q -n boinc_core_release_%{version_} -%patch4 +#%patch4 %patch6 %patch8 -p1 From ovasik at fedoraproject.org Wed Jul 22 01:15:19 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Wed, 22 Jul 2009 01:15:19 +0000 (UTC) Subject: rpms/docbook5-style-xsl/devel docbook5-style-xsl.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090722011519.CAC2B11C025F@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook5-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9126 Modified Files: docbook5-style-xsl.spec sources Log Message: upstream changed tarballs after release Index: docbook5-style-xsl.spec =================================================================== RCS file: /cvs/extras/rpms/docbook5-style-xsl/devel/docbook5-style-xsl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- docbook5-style-xsl.spec 21 Jul 2009 08:46:05 -0000 1.9 +++ docbook5-style-xsl.spec 22 Jul 2009 01:15:18 -0000 1.10 @@ -1,6 +1,6 @@ Name: docbook5-style-xsl Version: 1.75.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Summary: Norman Walsh's XSL stylesheets for DocBook 5.X @@ -88,6 +88,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Wed Jul 22 2009 Ondrej Vasik 1.75.2-2 +- upstream changed tarballs after release + * Tue Jul 21 2009 Ondrej Vasik 1.75.2-1 - new upstream release 1.75.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/docbook5-style-xsl/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 21 Jul 2009 08:46:05 -0000 1.8 +++ sources 22 Jul 2009 01:15:19 -0000 1.9 @@ -1 +1 @@ -e9b202d49accdca7a1883bcbaee5f984 docbook-xsl-ns-1.75.2.tar.bz2 +e5a58277ca9e1bda98a962e72aa0050e docbook-xsl-ns-1.75.2.tar.bz2 From zaitcev at fedoraproject.org Wed Jul 22 01:41:30 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 01:41:30 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch, 1.1.2.1, 1.1.2.2 cld.spec, 1.4.2.1, 1.4.2.2 Message-ID: <20090722014130.6434311C025F@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19799 Modified Files: Tag: private-zaitcev-bz512560 cld-test.patch cld.spec Log Message: Test 512560 2. cld-test.patch: lib/cldc.c | 38 +++++++++++++++++++++++++++++++------- test/load-file-event.c | 2 +- 2 files changed, 32 insertions(+), 8 deletions(-) Index: cld-test.patch =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/Attic/cld-test.patch,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -p -r1.1.2.1 -r1.1.2.2 --- cld-test.patch 22 Jul 2009 00:15:42 -0000 1.1.2.1 +++ cld-test.patch 22 Jul 2009 01:41:29 -0000 1.1.2.2 @@ -1,6 +1,69 @@ -diff -urp cld-0.2git/test/load-file-event.c cld-0.2git-p3/test/load-file-event.c ---- cld-0.2git/test/load-file-event.c 2009-07-20 14:30:47.000000000 -0600 -+++ cld-0.2git-p3/test/load-file-event.c 2009-07-21 17:43:49.000000000 -0600 +diff --git a/lib/cldc.c b/lib/cldc.c +index cf70fc7..ab82b32 100644 +--- a/lib/cldc.c ++++ b/lib/cldc.c +@@ -107,12 +107,14 @@ static int cldc_rx_generic(struct cldc_session *sess, + while (tmp) { + req = tmp->data; + ++#if 0 + if (sess->verbose) + sess->act_log("rx_gen: comparing req->xid (%llu) with resp->xid_in (%llu)\n", + (unsigned long long) + GUINT64_FROM_LE(req->xid), + (unsigned long long) + GUINT64_FROM_LE(resp->xid_in)); ++#endif + + if (req->xid == resp->xid_in) + break; +@@ -409,13 +411,35 @@ int cldc_receive_pkt(struct cldc_session *sess, + return -EPROTO; + } + +- if (sess->verbose) +- sess->act_log("receive pkt: len %u, " +- "op %s, seqid %llu, user %s\n", +- (unsigned int) pkt_len, +- opstr(msg->op), +- (unsigned long long) GUINT64_FROM_LE(pkt->seqid), +- pkt->user); ++ if (sess->verbose) { ++ if (msg->op == cmo_get) { ++ struct cld_msg_get_resp *resp; ++ resp = (struct cld_msg_get_resp *) msg; ++ sess->act_log("receive pkt: len %u, op cmo_data_c" ++ ", seqid %llu, user %s, size %u\n", ++ (unsigned int) pkt_len, ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid), ++ pkt->user, ++ GUINT32_FROM_LE(resp->size)); ++ } else if (msg->op == cmo_data_c) { ++ struct cld_msg_data *resp; ++ resp = (struct cld_msg_data *) msg; ++ sess->act_log("receive pkt: len %u, op cmo_get" ++ ", seqid %llu, user %s, seg %u, len %u\n", ++ (unsigned int) pkt_len, ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid), ++ pkt->user, ++ GUINT32_FROM_LE(resp->seg), ++ GUINT32_FROM_LE(resp->seg_len)); ++ } else { ++ sess->act_log("receive pkt: len %u, " ++ "op %s, seqid %llu, user %s\n", ++ (unsigned int) pkt_len, ++ opstr(msg->op), ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid), ++ pkt->user); ++ } ++ } + + if (memcmp(pkt->magic, CLD_PKT_MAGIC, sizeof(pkt->magic))) { + if (sess->verbose) +diff --git a/test/load-file-event.c b/test/load-file-event.c +index d23c501..5846052 100644 +--- a/test/load-file-event.c ++++ b/test/load-file-event.c @@ -212,7 +212,7 @@ static int init(char *name) if (rc) return rc; Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -u -p -r1.4.2.1 -r1.4.2.2 --- cld.spec 22 Jul 2009 00:15:42 -0000 1.4.2.1 +++ cld.spec 22 Jul 2009 01:41:30 -0000 1.4.2.2 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962.bz512560.1%{?dist} +Release: 0.4.gc5b5f962.bz512560.2%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -23,7 +23,7 @@ BuildRequires: texlive-latex # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed -ExcludeArch: ppc ppc64 +# ExcludeArch: ppc ppc64 %description Coarse locking daemon for cloud computing. This software provides @@ -107,7 +107,7 @@ fi %changelog * Tue Jul 21 2009 Pete Zaitcev -- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.1 +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.2 * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From petersen at fedoraproject.org Wed Jul 22 01:56:28 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Wed, 22 Jul 2009 01:56:28 +0000 (UTC) Subject: rpms/scim-qtimm/devel scim-qtimm.spec,1.19,1.20 Message-ID: <20090722015628.440AD11C025F@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/pkgs/rpms/scim-qtimm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24849 Modified Files: scim-qtimm.spec Log Message: add tag Index: scim-qtimm.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-qtimm/devel/scim-qtimm.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- scim-qtimm.spec 20 Jul 2009 03:37:12 -0000 1.19 +++ scim-qtimm.spec 22 Jul 2009 01:56:27 -0000 1.20 @@ -57,7 +57,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Mon Jul 20 2009 Jens Petersen +* Wed Jul 22 2009 Jens Petersen - 0.9.4-12 - correct the Group name (reported by Edwin ten Brink, #512544) * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-12 From mclasen at fedoraproject.org Wed Jul 22 01:59:44 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 22 Jul 2009 01:59:44 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel locate-pointer-process.patch, NONE, 1.1 gnome-settings-daemon.spec, 1.111, 1.112 Message-ID: <20090722015944.8B98C11C025F@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25618 Modified Files: gnome-settings-daemon.spec Added Files: locate-pointer-process.patch Log Message: amake locate-pointer not interfere with media keys locate-pointer-process.patch: Makefile.am | 21 ++++-- gsd-locate-pointer.c | 133 +++++++++++++++++++++++++++++++++++++++ gsd-mouse-manager.c | 170 +++++++++------------------------------------------ 3 files changed, 179 insertions(+), 145 deletions(-) --- NEW FILE locate-pointer-process.patch --- --- gnome-settings-daemon-2.27.4/plugins/mouse/gsd-mouse-manager.c 2009-07-21 20:59:56.686332813 -0400 +++ gnome-settings-daemon-2.27.4.hacked/plugins/mouse/gsd-mouse-manager.c 2009-07-21 20:56:10.516337831 -0400 @@ -50,8 +50,6 @@ #include "gnome-settings-profile.h" #include "gsd-mouse-manager.h" -#include "gsd-locate-pointer.h" - #define GSD_MOUSE_MANAGER_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GSD_TYPE_MOUSE_MANAGER, GsdMouseManagerPrivate)) #define GCONF_MOUSE_DIR "/desktop/gnome/peripherals/mouse" @@ -78,6 +76,8 @@ gboolean mousetweaks_daemon_running; gboolean syndaemon_spawned; GPid syndaemon_pid; + gboolean locate_pointer_spawned; + GPid locate_pointer_pid; }; static void gsd_mouse_manager_class_init (GsdMouseManagerClass *klass); @@ -714,149 +714,39 @@ return 0; } -#define KEYBOARD_GROUP_SHIFT 13 -#define KEYBOARD_GROUP_MASK ((1 << 13) | (1 << 14)) - -/* Owen magic */ -static GdkFilterReturn -filter (GdkXEvent *xevent, - GdkEvent *event, - gpointer data) +static void +set_locate_pointer (GsdMouseManager *manager, + gboolean state) { - XEvent *xev = (XEvent *) xevent; - guint keyval; - gint group; + if (state) { + GError *error = NULL; + const char *args[2]; - GdkScreen *screen = (GdkScreen *)data; + if (manager->priv->locate_pointer_spawned) + return 0; - if (xev->type == KeyPress || - xev->type == KeyRelease) { - /* get the keysym */ - group = (xev->xkey.state & KEYBOARD_GROUP_MASK) >> KEYBOARD_GROUP_SHIFT; - gdk_keymap_translate_keyboard_state (gdk_keymap_get_default (), - xev->xkey.keycode, - xev->xkey.state, - group, - &keyval, - NULL, NULL, NULL); - if (keyval == GDK_Control_L || keyval == GDK_Control_R) { - if (xev->type == KeyPress) { - XAllowEvents (xev->xkey.display, - SyncKeyboard, - xev->xkey.time); - } else { - XAllowEvents (xev->xkey.display, - AsyncKeyboard, - xev->xkey.time); - gsd_locate_pointer (screen); - } - } else { - XAllowEvents (xev->xkey.display, - ReplayKeyboard, - xev->xkey.time); - XUngrabKeyboard (gdk_x11_get_default_xdisplay (), - xev->xkey.time); - } - } - return GDK_FILTER_CONTINUE; -} + args[0] = "/usr/libexec/gsd-locate-pointer"; + args[1] = NULL; -static void -set_locate_pointer (GsdMouseManager *manager, - gboolean locate_pointer) -{ - GdkKeymapKey *keys; - GdkDisplay *display; - int n_screens; - int n_keys; - gboolean has_entries; - static const guint keyvals[] = { GDK_Control_L, GDK_Control_R }; - unsigned j; - - display = gdk_display_get_default (); - n_screens = gdk_display_get_n_screens (display); - - for (j = 0 ; j < G_N_ELEMENTS (keyvals) ; j++) { - has_entries = gdk_keymap_get_entries_for_keyval (gdk_keymap_get_default (), - keyvals[j], - &keys, - &n_keys); - if (has_entries) { - gint i, j; - - for (i = 0; i < n_keys; i++) { - for(j=0; j< n_screens; j++) { - GdkScreen *screen = gdk_display_get_screen (display, j); - Window xroot = gdk_x11_drawable_get_xid (gdk_screen_get_root_window (screen)); - - if (locate_pointer) { - XGrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - 0, - xroot, - False, - GrabModeAsync, - GrabModeSync); - XGrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - LockMask, - xroot, - False, - GrabModeAsync, - GrabModeSync); - XGrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - Mod2Mask, - xroot, - False, - GrabModeAsync, - GrabModeSync); - XGrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - Mod4Mask, - xroot, - False, - GrabModeAsync, - GrabModeSync); - } else { - XUngrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - Mod4Mask, - xroot); - XUngrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - Mod2Mask, - xroot); - XUngrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - LockMask, - xroot); - XUngrabKey (GDK_DISPLAY_XDISPLAY (display), - keys[i].keycode, - 0, - xroot); - } - } - } - g_free (keys); - if (locate_pointer) { - for (i = 0; i < n_screens; i++) { - GdkScreen *screen; - screen = gdk_display_get_screen (display, i); - gdk_window_add_filter (gdk_screen_get_root_window (screen), - filter, - screen); - } - } else { - for (i = 0; i < n_screens; i++) { - GdkScreen *screen; - screen = gdk_display_get_screen (display, i); - gdk_window_remove_filter (gdk_screen_get_root_window (screen), - filter, - screen); - } - } + g_spawn_async (NULL, args, NULL, + 0, NULL, NULL, + &manager->priv->locate_pointer_pid, &error); + + manager->priv->locate_pointer_spawned = (error == NULL); + + if (error) { + GConfClient *client; + client = gconf_client_get_default (); + gconf_client_set_bool (client, KEY_LOCATE_POINTER, FALSE, NULL); + g_object_unref (client); + g_error_free (error); } + + } + else if (manager->priv->locate_pointer_spawned) { + kill (manager->priv->locate_pointer_pid, SIGHUP); + g_spawn_close_pid (manager->priv->locate_pointer_pid); + manager->priv->locate_pointer_spawned = FALSE; } } --- gnome-settings-daemon-2.27.4/plugins/mouse/gsd-locate-pointer.c 2009-06-15 05:09:35.000000000 -0400 +++ gnome-settings-daemon-2.27.4.hacked/plugins/mouse/gsd-locate-pointer.c 2009-07-21 20:54:29.284087108 -0400 @@ -21,6 +21,10 @@ #include "gsd-timeline.h" #include "gsd-locate-pointer.h" +#include +#include +#include + #define ANIMATION_LENGTH 750 #define WINDOW_SIZE 101 #define N_CIRCLES 4 @@ -343,3 +347,132 @@ gsd_timeline_start (data->timeline); } + + +#define KEYBOARD_GROUP_SHIFT 13 +#define KEYBOARD_GROUP_MASK ((1 << 13) | (1 << 14)) + +/* Owen magic */ +static GdkFilterReturn +filter (GdkXEvent *xevent, + GdkEvent *event, + gpointer data) +{ + XEvent *xev = (XEvent *) xevent; + guint keyval; + gint group; + + GdkScreen *screen = (GdkScreen *)data; + + if (xev->type == KeyPress || + xev->type == KeyRelease) { + /* get the keysym */ + group = (xev->xkey.state & KEYBOARD_GROUP_MASK) >> KEYBOARD_GROUP_SHIFT; + gdk_keymap_translate_keyboard_state (gdk_keymap_get_default (), + xev->xkey.keycode, + xev->xkey.state, + group, + &keyval, + NULL, NULL, NULL); + if (keyval == GDK_Control_L || keyval == GDK_Control_R) { + if (xev->type == KeyPress) { + XAllowEvents (xev->xkey.display, + SyncKeyboard, + xev->xkey.time); + } else { + XAllowEvents (xev->xkey.display, + AsyncKeyboard, + xev->xkey.time); + gsd_locate_pointer (screen); + } + } else { + XAllowEvents (xev->xkey.display, + ReplayKeyboard, + xev->xkey.time); + XUngrabKeyboard (gdk_x11_get_default_xdisplay (), + xev->xkey.time); + } + } + return GDK_FILTER_CONTINUE; +} + +set_locate_pointer (void) +{ + GdkKeymapKey *keys; + GdkDisplay *display; + int n_screens; + int n_keys; + gboolean has_entries; + static const guint keyvals[] = { GDK_Control_L, GDK_Control_R }; + unsigned j; + + display = gdk_display_get_default (); + n_screens = gdk_display_get_n_screens (display); + + for (j = 0 ; j < G_N_ELEMENTS (keyvals) ; j++) { + has_entries = gdk_keymap_get_entries_for_keyval (gdk_keymap_get_default (), + keyvals[j], + &keys, + &n_keys); + if (has_entries) { + gint i, j; + for (i = 0; i < n_keys; i++) { + for(j=0; j< n_screens; j++) { + GdkScreen *screen = gdk_display_get_screen (display, j); + Window xroot = gdk_x11_drawable_get_xid (gdk_screen_get_root_window (screen)); + + XGrabKey (GDK_DISPLAY_XDISPLAY (display), + keys[i].keycode, + 0, + xroot, + False, + GrabModeAsync, + GrabModeSync); + XGrabKey (GDK_DISPLAY_XDISPLAY (display), + keys[i].keycode, + LockMask, + xroot, + False, + GrabModeAsync, + GrabModeSync); + XGrabKey (GDK_DISPLAY_XDISPLAY (display), + keys[i].keycode, + Mod2Mask, + xroot, + False, + GrabModeAsync, + GrabModeSync); + XGrabKey (GDK_DISPLAY_XDISPLAY (display), + keys[i].keycode, + Mod4Mask, + xroot, + False, + GrabModeAsync, + GrabModeSync); + } + } + g_free (keys); + for (i = 0; i < n_screens; i++) { + GdkScreen *screen; + screen = gdk_display_get_screen (display, i); + gdk_window_add_filter (gdk_screen_get_root_window (screen), + filter, + screen); + } + } + } +} + + +int +main (int argc, char *argv[]) +{ + gtk_init (&argc, &argv); + + set_locate_pointer (); + + gtk_main (); + + return 0; +} + --- gnome-settings-daemon-2.27.4/plugins/mouse/Makefile.am 2009-05-03 14:15:30.000000000 -0400 +++ gnome-settings-daemon-2.27.4.hacked/plugins/mouse/Makefile.am 2009-07-21 20:58:10.619086849 -0400 @@ -4,11 +4,7 @@ gsd-mouse-plugin.h \ gsd-mouse-plugin.c \ gsd-mouse-manager.h \ - gsd-mouse-manager.c \ - gsd-locate-pointer.h \ - gsd-locate-pointer.c \ - gsd-timeline.h \ - gsd-timeline.c + gsd-mouse-manager.c libmouse_la_CPPFLAGS = \ -I$(top_srcdir)/gnome-settings-daemon \ @@ -30,6 +26,21 @@ plugin_DATA = $(plugin_in_files:.gnome-settings-plugin.in=.gnome-settings-plugin) +libexec_PROGRAMS = gsd-locate-pointer + +gsd_locate_pointer_SOURCES = \ + gsd-locate-pointer.h \ + gsd-locate-pointer.c \ + gsd-timeline.h \ + gsd-timeline.c + +gsd_locate_pointer_CFLAGS = \ + $(SETTINGS_PLUGIN_CFLAGS) \ + $(AM_CFLAGS) + +gsd_locate_pointer_LDADD = \ + $(SETTINGS_PLUGIN_LIBS) + EXTRA_DIST = $(plugin_in_files) CLEANFILES = $(plugin_DATA) DISTCLEANFILES = $(plugin_DATA) Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- gnome-settings-daemon.spec 15 Jul 2009 21:53:38 -0000 1.111 +++ gnome-settings-daemon.spec 22 Jul 2009 01:59:14 -0000 1.112 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -34,6 +34,8 @@ BuildRequires: fontconfig-devel # https://bugzilla.redhat.com/show_bug.cgi?id=483639 Patch12: gnome-settings-daemon-2.26.1-fix-touchpad.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=524499 +Patch13: locate-pointer-process.patch %description A daemon to share settings from GNOME to other applications. It also @@ -54,6 +56,7 @@ developing applications that use %{name} %setup -q %patch12 -p1 -b .lefthand-touchpad +%patch13 -p1 -b .locate-pointer autoreconf -i -f @@ -154,6 +157,7 @@ fi %{_sysconfdir}/gconf/schemas/* %{_libdir}/gnome-settings-daemon-2.0 %{_libexecdir}/gnome-settings-daemon +%{_libexecdir}/gsd-locate-pointer %{_datadir}/gnome-settings-daemon/ %{_datadir}/gnome-control-center/keybindings/50-accessibility.xml %{_datadir}/dbus-1/services/org.gnome.SettingsDaemon.service @@ -166,6 +170,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Tue Jul 21 2009 Matthias Clasen 2.27.4-3 +- Make locate-pointer not interfere with media keys + * Wed Jul 15 2009 Matthias Clasen 2.27.4-2 - Rebuild against new libgnomekbd From kylev at fedoraproject.org Wed Jul 22 02:05:06 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Wed, 22 Jul 2009 02:05:06 +0000 (UTC) Subject: rpms/python-beaker/devel python-beaker-middleware-config.patch, NONE, 1.1 python-beaker.spec, 1.13, 1.14 Message-ID: <20090722020506.DA21211C025F@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-beaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27297 Modified Files: python-beaker.spec Added Files: python-beaker-middleware-config.patch Log Message: Add upstream patch that fixes accidental config defaults overwriting python-beaker-middleware-config.patch: middleware.py | 11 +++++++---- util.py | 9 ++++++--- 2 files changed, 13 insertions(+), 7 deletions(-) --- NEW FILE python-beaker-middleware-config.patch --- # HG changeset patch -- Bitbucket.org # Project beaker # URL http://bitbucket.org/bbangert/beaker/overview/ # User Ben Bangert # Date 1245698939 25200 # Node ID 403ef7c82d328c7c0057cde5510a387d830e1595 # Parent 9d0c12f93b4d65771e243fd96e81b40e137843cd * Fixed bug with CacheMiddleware overwriting configuration with default arguments despite prior setting. --- a/beaker/util.py +++ b/beaker/util.py @@ -304,12 +304,15 @@ def coerce_cache_params(params): return verify_rules(params, rules) -def parse_cache_config_options(config): +def parse_cache_config_options(config, include_defaults=True): """Parse configuration options and validate for use with the CacheManager""" # Load default cache options - options= dict(type='memory', data_dir=None, expire=None, - log_file=None) + if include_defaults: + options= dict(type='memory', data_dir=None, expire=None, + log_file=None) + else: + options = {} for key, val in config.iteritems(): if key.startswith('beaker.cache.'): options[key[13:]] = val --- a/beaker/middleware.py +++ b/beaker/middleware.py @@ -47,11 +47,14 @@ class CacheMiddleware(object): self.options = {} - # Pull out any config args starting with beaker cache. if there are any - for dct in [config, kwargs]: - parsed_opts = parse_cache_config_options(dct) - self.options.update(parsed_opts) + # Update the options with the parsed config + self.options.update(parse_cache_config_options(config)) + # Add any options from kwargs, but leave out the defaults this + # time + self.options.update( + parse_cache_config_options(kwargs, include_defaults=False)) + # Assume all keys are intended for cache if none are prefixed with # 'cache.' if not self.options and config: Index: python-beaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-beaker/devel/python-beaker.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-beaker.spec 27 Jun 2009 22:06:43 -0000 1.13 +++ python-beaker.spec 22 Jul 2009 02:05:06 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-beaker Version: 1.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: WSGI middleware layer to provide sessions Group: Development/Languages @@ -14,6 +14,7 @@ BuildArch: noarch BuildRequires: python-setuptools-devel Patch0: beaker-hmac2.4.patch Patch1: %{name}-absimport.patch +Patch2: %{name}-middleware-config.patch %description Beaker is a caching library that includes Session and Cache objects built on @@ -25,6 +26,7 @@ manage Session objects and signed cookie %setup -q -n Beaker-%{version} %patch0 -p1 -b .hashlib %patch1 -p0 -b .absimport +%patch2 -p1 -b .middleconfig %build @@ -48,6 +50,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Kyle VanderBeek - 1.3.1-5 +- Add patch based on upstream hg 403ef7c82d32 for config overwriting that + breaks Pylons unit tests + * Sat Jun 27 2009 Luke Macken - 1.3.1-4 - Add a patch to remove the use of __future__.absolute_import in the google backend From bjohnson at fedoraproject.org Wed Jul 22 02:17:22 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Wed, 22 Jul 2009 02:17:22 +0000 (UTC) Subject: rpms/pdfedit/devel .cvsignore, 1.8, 1.9 pdfedit.spec, 1.14, 1.15 sources, 1.8, 1.9 Message-ID: <20090722021722.5A94511C025F@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/pdfedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30314/devel Modified Files: .cvsignore pdfedit.spec sources Log Message: - v 0.4.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 21 Dec 2008 23:49:05 -0000 1.8 +++ .cvsignore 22 Jul 2009 02:17:20 -0000 1.9 @@ -1 +1 @@ -pdfedit-0.4.2.tar.bz2 +pdfedit-0.4.3.tar.bz2 Index: pdfedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/devel/pdfedit.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- pdfedit.spec 26 Feb 2009 10:21:08 -0000 1.14 +++ pdfedit.spec 22 Jul 2009 02:17:20 -0000 1.15 @@ -1,6 +1,6 @@ Name: pdfedit -Version: 0.4.2 -Release: 2%{?dist} +Version: 0.4.3 +Release: 1%{?dist} Summary: A complete pdf document editing solution Group: Applications/Publishing @@ -100,6 +100,9 @@ fi %{_docdir} %changelog +* Tue Jul 21 2009 Bernard Johnson - 0.4.3-1 +- 0.4.3 + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 21 Dec 2008 23:49:06 -0000 1.8 +++ sources 22 Jul 2009 02:17:20 -0000 1.9 @@ -1 +1 @@ -378a3bd9105031529a2d4e402ee61aee pdfedit-0.4.2.tar.bz2 +98eb8d8d42027241c10a5c9bedacc20e pdfedit-0.4.3.tar.bz2 From bjohnson at fedoraproject.org Wed Jul 22 02:17:52 2009 From: bjohnson at fedoraproject.org (Bernard Johnson) Date: Wed, 22 Jul 2009 02:17:52 +0000 (UTC) Subject: rpms/pdfedit/F-11 .cvsignore, 1.8, 1.9 pdfedit.spec, 1.14, 1.15 sources, 1.8, 1.9 Message-ID: <20090722021752.1D0B411C025F@cvs1.fedora.phx.redhat.com> Author: bjohnson Update of /cvs/pkgs/rpms/pdfedit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30314/F-11 Modified Files: .cvsignore pdfedit.spec sources Log Message: - v 0.4.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 21 Dec 2008 23:49:05 -0000 1.8 +++ .cvsignore 22 Jul 2009 02:17:20 -0000 1.9 @@ -1 +1 @@ -pdfedit-0.4.2.tar.bz2 +pdfedit-0.4.3.tar.bz2 Index: pdfedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/F-11/pdfedit.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- pdfedit.spec 26 Feb 2009 10:21:08 -0000 1.14 +++ pdfedit.spec 22 Jul 2009 02:17:20 -0000 1.15 @@ -1,6 +1,6 @@ Name: pdfedit -Version: 0.4.2 -Release: 2%{?dist} +Version: 0.4.3 +Release: 1%{?dist} Summary: A complete pdf document editing solution Group: Applications/Publishing @@ -100,6 +100,9 @@ fi %{_docdir} %changelog +* Tue Jul 21 2009 Bernard Johnson - 0.4.3-1 +- 0.4.3 + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 21 Dec 2008 23:49:06 -0000 1.8 +++ sources 22 Jul 2009 02:17:20 -0000 1.9 @@ -1 +1 @@ -378a3bd9105031529a2d4e402ee61aee pdfedit-0.4.2.tar.bz2 +98eb8d8d42027241c10a5c9bedacc20e pdfedit-0.4.3.tar.bz2 From oget at fedoraproject.org Wed Jul 22 02:27:08 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 02:27:08 +0000 (UTC) Subject: rpms/ardour/devel .cvsignore, 1.13, 1.14 ardour.spec, 1.27, 1.28 sources, 1.13, 1.14 ardour-SConstruct.patch, 1.1, NONE Message-ID: <20090722022708.CF69711C025F@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1262 Modified Files: .cvsignore ardour.spec sources Removed Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ardour/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 9 Jul 2009 23:20:05 -0000 1.13 +++ .cvsignore 22 Jul 2009 02:27:06 -0000 1.14 @@ -1 +1 @@ -ardour-2.8.1.tar.bz2 +ardour-2.8.2.tar.bz2 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/devel/ardour.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ardour.spec 9 Jul 2009 23:20:09 -0000 1.27 +++ ardour.spec 22 Jul 2009 02:27:07 -0000 1.28 @@ -1,12 +1,11 @@ Summary: Multichannel Digital Audio Workstation Name: ardour -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script -Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -60,7 +59,6 @@ digital mixers. %prep %setup -q -%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -175,6 +173,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 +- New upstream release 2.8.2. + * Thu Jul 09 2009 Orcan Ogetbil 2.8.1-1 - New upstream release 2.8.1. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ardour/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 9 Jul 2009 23:20:09 -0000 1.13 +++ sources 22 Jul 2009 02:27:07 -0000 1.14 @@ -1 +1 @@ -80b38c6381e9b285734978478079dbfe ardour-2.8.1.tar.bz2 +054640c746e806be81857754fc72c02e ardour-2.8.2.tar.bz2 --- ardour-SConstruct.patch DELETED --- From oget at fedoraproject.org Wed Jul 22 02:30:02 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 02:30:02 +0000 (UTC) Subject: rpms/ardour/F-11 .cvsignore, 1.13, 1.14 ardour.spec, 1.26, 1.27 sources, 1.13, 1.14 ardour-SConstruct.patch, 1.1, NONE Message-ID: <20090722023002.3C44D11C049E@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2387 Modified Files: .cvsignore ardour.spec sources Removed Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-11/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 9 Jul 2009 23:49:50 -0000 1.13 +++ .cvsignore 22 Jul 2009 02:29:31 -0000 1.14 @@ -1 +1 @@ -ardour-2.8.1.tar.bz2 +ardour-2.8.2.tar.bz2 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-11/ardour.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- ardour.spec 9 Jul 2009 23:49:50 -0000 1.26 +++ ardour.spec 22 Jul 2009 02:29:31 -0000 1.27 @@ -1,12 +1,11 @@ Summary: Multichannel Digital Audio Workstation Name: ardour -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script -Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -60,7 +59,6 @@ digital mixers. %prep %setup -q -%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -175,6 +173,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 +- New upstream release 2.8.2. + * Thu Jul 09 2009 Orcan Ogetbil 2.8.1-1 - New upstream release 2.8.1. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-11/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 9 Jul 2009 23:49:50 -0000 1.13 +++ sources 22 Jul 2009 02:29:31 -0000 1.14 @@ -1 +1 @@ -80b38c6381e9b285734978478079dbfe ardour-2.8.1.tar.bz2 +054640c746e806be81857754fc72c02e ardour-2.8.2.tar.bz2 --- ardour-SConstruct.patch DELETED --- From oget at fedoraproject.org Wed Jul 22 02:31:49 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 02:31:49 +0000 (UTC) Subject: rpms/ardour/F-10 .cvsignore, 1.12, 1.13 ardour.spec, 1.25, 1.26 sources, 1.13, 1.14 ardour-SConstruct.patch, 1.1, NONE Message-ID: <20090722023149.6137A11C025F@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3060 Modified Files: .cvsignore ardour.spec sources Removed Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-10/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 9 Jul 2009 23:52:38 -0000 1.12 +++ .cvsignore 22 Jul 2009 02:31:48 -0000 1.13 @@ -1 +1 @@ -ardour-2.8.1.tar.bz2 +ardour-2.8.2.tar.bz2 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-10/ardour.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- ardour.spec 9 Jul 2009 23:52:39 -0000 1.25 +++ ardour.spec 22 Jul 2009 02:31:49 -0000 1.26 @@ -1,12 +1,11 @@ Summary: Multichannel Digital Audio Workstation Name: ardour -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script -Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -60,7 +59,6 @@ digital mixers. %prep %setup -q -%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -175,6 +173,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 +- New upstream release 2.8.2. + * Thu Jul 09 2009 Orcan Ogetbil 2.8.1-1 - New upstream release 2.8.1. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-10/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 9 Jul 2009 23:52:39 -0000 1.13 +++ sources 22 Jul 2009 02:31:49 -0000 1.14 @@ -1 +1 @@ -80b38c6381e9b285734978478079dbfe ardour-2.8.1.tar.bz2 +054640c746e806be81857754fc72c02e ardour-2.8.2.tar.bz2 --- ardour-SConstruct.patch DELETED --- From jwilson at fedoraproject.org Wed Jul 22 02:41:45 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Wed, 22 Jul 2009 02:41:45 +0000 (UTC) Subject: rpms/lirc/devel lirc.spec,1.57,1.58 Message-ID: <20090722024145.5D85311C025F@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/lirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5545 Modified Files: lirc.spec Log Message: * Tue Jul 21 2009 Jarod Wilson 0.8.6-0.3.pre1 - Set up tools to use /dev/lirc0 instead of /dev/lirc by default - Set a default font for xmode2 most people actually have (#467339) Index: lirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/lirc/devel/lirc.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- lirc.spec 24 Jun 2009 23:39:51 -0000 1.57 +++ lirc.spec 22 Jul 2009 02:41:45 -0000 1.58 @@ -18,7 +18,7 @@ Name: lirc Version: 0.8.6 -Release: 0.2%{?pre:.%{pre}}%{?dist} +Release: 0.3%{?pre:.%{pre}}%{?dist} Summary: The Linux Infrared Remote Control package Group: System Environment/Daemons @@ -136,6 +136,12 @@ for f in remotes/chronos/lircd.conf.chro iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f done +# use /dev/lirc0 by default instead of /dev/lirc +sed -i -e 's|#define DEV_LIRC "lirc"|#define DEV_LIRC "lirc0"|' config.h.in + +# use fixed instead of Courier w/xmode2, should be more prevalent on linux boxen +sed -i -e 's|char.*font1_name.*Courier.*$|char font1_name[]="-misc-fixed-*-r-*-*-12-*-*-*-*-*-iso8859-1";|g' tools/xmode2.c + sed -i -e 's|"/lib /usr/lib |"/%{_lib} %{_libdir} |' configure # lib64 rpath # *cough* I wish there was a good way to disable alsa/portaudio/svgalib... @@ -267,6 +273,10 @@ fi %changelog +* Tue Jul 21 2009 Jarod Wilson 0.8.6-0.3.pre1 +- Set up tools to use /dev/lirc0 instead of /dev/lirc by default +- Set a default font for xmode2 most people actually have (#467339) + * Wed Jun 24 2009 Jarod Wilson 0.8.6-0.2.pre1 - Fix things up so the relocated socket actually works out of the box From wtogami at fedoraproject.org Wed Jul 22 02:52:13 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Wed, 22 Jul 2009 02:52:13 +0000 (UTC) Subject: rpms/libnice/devel libnice-0.0.8-sha1.patch, NONE, 1.1 libnice.spec, 1.6, 1.7 Message-ID: <20090722025213.9066211C025F@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/libnice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9316 Modified Files: libnice.spec Added Files: libnice-0.0.8-sha1.patch Log Message: stun sha1 patch from upstream to make it work at all libnice-0.0.8-sha1.patch: sha1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE libnice-0.0.8-sha1.patch --- http://bugs.archlinux.org/task/15189 X-Git-Url: http://git.collabora.co.uk/?p=user%2Fkakaroto%2Flibnice.git;a=blobdiff_plain;f=stun%2Fsha1.c;h=d0e75d5047766c11fd5c37166e29d9a73e6e0d61;hp=94b2b4b096114d20ee0e12c3a688a10769eb678e;hb=e571e13fb03d217d27c1164379760f9d0c13d3ca;hpb=52f330873715fea4198c1450bd9bf3ff6bdd2f6d diff --git a/stun/sha1.c b/stun/sha1.c index 94b2b4b..d0e75d5 100644 --- a/stun/sha1.c +++ b/stun/sha1.c @@ -143,11 +143,11 @@ static void SHA1Transform(uint32_t state[5], const unsigned char buffer[64]) { uint32_t a, b, c, d, e; typedef union { - unsigned char c[64]; + uint8_t c[64]; uint32_t l[16]; } CHAR64LONG16; CHAR64LONG16* block; - uint32_t workspace[16]; + uint8_t workspace[64]; block = (CHAR64LONG16 *) workspace; memcpy(block, buffer, 64); Index: libnice.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnice/devel/libnice.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libnice.spec 22 Jun 2009 00:04:41 -0000 1.6 +++ libnice.spec 22 Jul 2009 02:52:13 -0000 1.7 @@ -1,12 +1,13 @@ Name: libnice Version: 0.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GLib ICE implementation Group: System Environment/Libraries License: LGPLv2 and MPLv1.1 URL: http://nice.freedesktop.org/wiki/ Source0: http://nice.freedesktop.org/releases/%{name}-%{version}.tar.gz +Patch0: libnice-0.0.8-sha1.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -39,6 +40,7 @@ developing applications that use %{name} %prep %setup -q +%patch0 -p1 %build @@ -82,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 21 2009 Warren Togami - 0.0.8-2 +- stun sha1 patch from upstream to make it work at all + * Sun Jun 21 2009 Brian Pepple - 0.0.8-1 - Update to 0.0.8. From wtogami at fedoraproject.org Wed Jul 22 03:07:24 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Wed, 22 Jul 2009 03:07:24 +0000 (UTC) Subject: rpms/pidgin/devel pidgin-2.6.0devel-nocamera-crash.patch, NONE, 1.1 pidgin.spec, 1.81, 1.82 Message-ID: <20090722030724.B83EB11C025F@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15307 Modified Files: pidgin.spec Added Files: pidgin-2.6.0devel-nocamera-crash.patch Log Message: prevent crash with no camera when closing vv window pidgin-2.6.0devel-nocamera-crash.patch: mediamanager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- NEW FILE pidgin-2.6.0devel-nocamera-crash.patch --- --- libpurple/mediamanager.c 2fafe3d7f9ea11fc9275a9114cbba9d93576c9bf +++ libpurple/mediamanager.c 1d55fd9e6e4068c2343d62595b03f26663215867 @@ -780,7 +780,8 @@ purple_media_manager_remove_output_windo pad = gst_element_get_static_pad(queue, "sink"); peer = gst_pad_get_peer(pad); gst_object_unref(pad); - gst_element_release_request_pad(GST_ELEMENT_PARENT(peer), peer); + if (peer != NULL) + gst_element_release_request_pad(GST_ELEMENT_PARENT(peer), peer); gst_element_set_locked_state(queue, TRUE); gst_element_set_state(queue, GST_STATE_NULL); gst_bin_remove(GST_BIN(GST_ELEMENT_PARENT(queue)), queue); Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- pidgin.spec 21 Jul 2009 21:04:51 -0000 1.81 +++ pidgin.spec 22 Jul 2009 03:07:24 -0000 1.82 @@ -77,7 +77,7 @@ Name: pidgin Version: 2.6.0 %define snapshot 20090721 -Release: 0.1.%{snapshot}%{?dist} +Release: 0.3.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -112,6 +112,7 @@ Patch0: pidgin-NOT-UPSTREAM-2.6.0-reread Patch1: pidgin-NOT-UPSTREAM-2.5.2-rhel4-sound-migration.patch ## Patches 100+: To be Included in Future Upstream +Patch100: pidgin-2.6.0devel-nocamera-crash.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root Summary: A Gtk+ based multiprotocol instant messaging client @@ -366,6 +367,7 @@ echo "FEDORA=%{fedora} RHEL=%{rhel}" %endif ## Patches 100+: To be Included in Future Upstream +%patch100 -p0 # Our preferences cp %{SOURCE1} prefs.xml @@ -597,6 +599,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Jul 21 2009 Warren Togami 2.6.0-0.3.20090721 +- prevent crash with no camera when closing vv window + * Tue Jul 21 2009 Warren Togami 2.6.0-0.1.20090721 - 2.6.0 snapshot with voice and video support via farsight2 From oget at fedoraproject.org Wed Jul 22 03:20:47 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 03:20:47 +0000 (UTC) Subject: rpms/ardour/devel ardour-SConstruct.patch, 1.2, 1.3 ardour.spec, 1.28, 1.29 Message-ID: <20090722032047.BB34D11C049E@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21778 Modified Files: ardour.spec Added Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 - Fix libdir once more ardour-SConstruct.patch: SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: ardour-SConstruct.patch =================================================================== RCS file: ardour-SConstruct.patch diff -N ardour-SConstruct.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ardour-SConstruct.patch 22 Jul 2009 03:20:46 -0000 1.3 @@ -0,0 +1,18 @@ +diff -rupN ardour-2.8.2.old/SConstruct ardour-2.8.2/SConstruct +--- ardour-2.8.2.old/SConstruct 2009-07-20 11:55:10.000000000 -0400 ++++ ardour-2.8.2/SConstruct 2009-07-21 22:56:35.000000000 -0400 +@@ -742,10 +742,10 @@ if env['FPU_OPTIMIZATION']: + + # handle x86/x86_64 libdir properly + +-if env['DIST_TARGET'] == 'x86_64': +- env['LIBDIR']='lib64' +-else: +- env['LIBDIR']='lib' ++#if env['DIST_TARGET'] == 'x86_64': ++# env['LIBDIR']='lib64' ++#else: ++# env['LIBDIR']='lib' + + # + # no VST on x86_64 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/devel/ardour.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- ardour.spec 22 Jul 2009 02:27:07 -0000 1.28 +++ ardour.spec 22 Jul 2009 03:20:46 -0000 1.29 @@ -1,11 +1,12 @@ Summary: Multichannel Digital Audio Workstation Name: ardour Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script +Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -59,6 +60,7 @@ digital mixers. %prep %setup -q +%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -173,6 +175,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 +- Fix libdir once more + * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. From oget at fedoraproject.org Wed Jul 22 03:22:23 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 03:22:23 +0000 (UTC) Subject: rpms/ardour/F-11 ardour-SConstruct.patch, 1.2, 1.3 ardour.spec, 1.27, 1.28 Message-ID: <20090722032223.B3BA111C025F@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23146 Modified Files: ardour.spec Added Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 - Fix libdir once more ardour-SConstruct.patch: SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: ardour-SConstruct.patch =================================================================== RCS file: ardour-SConstruct.patch diff -N ardour-SConstruct.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ardour-SConstruct.patch 22 Jul 2009 03:22:23 -0000 1.3 @@ -0,0 +1,18 @@ +diff -rupN ardour-2.8.2.old/SConstruct ardour-2.8.2/SConstruct +--- ardour-2.8.2.old/SConstruct 2009-07-20 11:55:10.000000000 -0400 ++++ ardour-2.8.2/SConstruct 2009-07-21 22:56:35.000000000 -0400 +@@ -742,10 +742,10 @@ if env['FPU_OPTIMIZATION']: + + # handle x86/x86_64 libdir properly + +-if env['DIST_TARGET'] == 'x86_64': +- env['LIBDIR']='lib64' +-else: +- env['LIBDIR']='lib' ++#if env['DIST_TARGET'] == 'x86_64': ++# env['LIBDIR']='lib64' ++#else: ++# env['LIBDIR']='lib' + + # + # no VST on x86_64 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-11/ardour.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ardour.spec 22 Jul 2009 02:29:31 -0000 1.27 +++ ardour.spec 22 Jul 2009 03:22:23 -0000 1.28 @@ -1,11 +1,12 @@ Summary: Multichannel Digital Audio Workstation Name: ardour Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script +Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -59,6 +60,7 @@ digital mixers. %prep %setup -q +%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -173,6 +175,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 +- Fix libdir once more + * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. From oget at fedoraproject.org Wed Jul 22 03:23:03 2009 From: oget at fedoraproject.org (Orcan Ogetbil) Date: Wed, 22 Jul 2009 03:23:03 +0000 (UTC) Subject: rpms/ardour/F-10 ardour-SConstruct.patch, 1.2, 1.3 ardour.spec, 1.26, 1.27 Message-ID: <20090722032303.7786A11C025F@cvs1.fedora.phx.redhat.com> Author: oget Update of /cvs/pkgs/rpms/ardour/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23507 Modified Files: ardour.spec Added Files: ardour-SConstruct.patch Log Message: * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 - Fix libdir once more ardour-SConstruct.patch: SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: ardour-SConstruct.patch =================================================================== RCS file: ardour-SConstruct.patch diff -N ardour-SConstruct.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ardour-SConstruct.patch 22 Jul 2009 03:23:03 -0000 1.3 @@ -0,0 +1,18 @@ +diff -rupN ardour-2.8.2.old/SConstruct ardour-2.8.2/SConstruct +--- ardour-2.8.2.old/SConstruct 2009-07-20 11:55:10.000000000 -0400 ++++ ardour-2.8.2/SConstruct 2009-07-21 22:56:35.000000000 -0400 +@@ -742,10 +742,10 @@ if env['FPU_OPTIMIZATION']: + + # handle x86/x86_64 libdir properly + +-if env['DIST_TARGET'] == 'x86_64': +- env['LIBDIR']='lib64' +-else: +- env['LIBDIR']='lib' ++#if env['DIST_TARGET'] == 'x86_64': ++# env['LIBDIR']='lib64' ++#else: ++# env['LIBDIR']='lib' + + # + # no VST on x86_64 Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/F-10/ardour.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- ardour.spec 22 Jul 2009 02:31:49 -0000 1.26 +++ ardour.spec 22 Jul 2009 03:23:03 -0000 1.27 @@ -1,11 +1,12 @@ Summary: Multichannel Digital Audio Workstation Name: ardour Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 Source2: ardour.script +Patch0: ardour-SConstruct.patch Patch1: ardour-2.8-session.cc-no_stomp.patch Patch3: ardour-2.5-HOST_NOT_FOUND.patch URL: http://ardour.org @@ -59,6 +60,7 @@ digital mixers. %prep %setup -q +%patch0 -p1 -b .SConstruct %patch1 -p1 -b .no_stomp %patch3 -p0 -b .host.not.found @@ -173,6 +175,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 +- Fix libdir once more + * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-1 - New upstream release 2.8.2. From mtruch at fedoraproject.org Wed Jul 22 03:24:54 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Wed, 22 Jul 2009 03:24:54 +0000 (UTC) Subject: rpms/cfitsio/devel cfitsio.spec,1.33,1.34 Message-ID: <20090722032454.E3CCB11C025F@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/cfitsio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24319 Modified Files: cfitsio.spec Log Message: Upgrade cfitsio to match current upstream release. Index: cfitsio.spec =================================================================== RCS file: /cvs/extras/rpms/cfitsio/devel/cfitsio.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- cfitsio.spec 18 Jun 2009 03:51:30 -0000 1.33 +++ cfitsio.spec 22 Jul 2009 03:24:54 -0000 1.34 @@ -1,12 +1,12 @@ Name: cfitsio -Version: 3.130 -Release: 5%{?dist} +Version: 3.140 +Release: 1%{?dist} Summary: Library for manipulating FITS data files Group: Development/Libraries License: GPLv2+ URL: http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html -Source0: ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3130.tar.gz +Source0: ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3140.tar.gz Patch: cfitsio.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -111,6 +111,10 @@ rm -rf %{buildroot} %doc fitsio.doc fitsio.ps cfitsio.doc cfitsio.ps %changelog +* Tue Jul 21 2009 Matthew Truch - 3.140-1 +- Update to upstream 3.140 release. +- Bump for mass rebuild. + * Wed Jun 17 2009 Matthew Truch - 3.130-5 - Separate -docs noarch subpackage as per BZ 492438. - Explicitly set file attributes correctly. From zaitcev at fedoraproject.org Wed Jul 22 03:33:15 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 03:33:15 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch, 1.1.2.2, 1.1.2.3 cld.spec, 1.4.2.2, 1.4.2.3 Message-ID: <20090722033315.E969811C025F@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27766 Modified Files: Tag: private-zaitcev-bz512560 cld-test.patch cld.spec Log Message: Test 3, now with -E flag. cld-test.patch: lib/cldc.c | 38 ++++++++++++++++++++++++------ server/cld.h | 1 server/cldb.c | 9 ++----- server/msg.c | 58 +++++++++++++++++++++++++++++++++++++--------- server/server.c | 61 ++++++++++++++++++++++++++++++++----------------- server/session.c | 21 ++++++++-------- server/util.c | 17 +++++++------ test/load-file-event.c | 2 - test/start-daemon | 2 - 9 files changed, 144 insertions(+), 65 deletions(-) Index: cld-test.patch =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/Attic/cld-test.patch,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -p -r1.1.2.2 -r1.1.2.3 --- cld-test.patch 22 Jul 2009 01:41:29 -0000 1.1.2.2 +++ cld-test.patch 22 Jul 2009 03:33:14 -0000 1.1.2.3 @@ -1,8 +1,8 @@ diff --git a/lib/cldc.c b/lib/cldc.c -index cf70fc7..ab82b32 100644 +index ab3a2a4..f0dc086 100644 --- a/lib/cldc.c +++ b/lib/cldc.c -@@ -107,12 +107,14 @@ static int cldc_rx_generic(struct cldc_session *sess, +@@ -133,12 +133,14 @@ static int cldc_rx_generic(struct cldc_session *sess, while (tmp) { req = tmp->data; @@ -17,7 +17,7 @@ index cf70fc7..ab82b32 100644 if (req->xid == resp->xid_in) break; -@@ -409,13 +411,35 @@ int cldc_receive_pkt(struct cldc_session *sess, +@@ -436,13 +438,35 @@ int cldc_receive_pkt(struct cldc_session *sess, return -EPROTO; } @@ -32,7 +32,7 @@ index cf70fc7..ab82b32 100644 + if (msg->op == cmo_get) { + struct cld_msg_get_resp *resp; + resp = (struct cld_msg_get_resp *) msg; -+ sess->act_log("receive pkt: len %u, op cmo_data_c" ++ sess->act_log("receive pkt: len %u, op cmo_get" + ", seqid %llu, user %s, size %u\n", + (unsigned int) pkt_len, + (unsigned long long) GUINT64_FROM_LE(pkt->seqid), @@ -41,7 +41,7 @@ index cf70fc7..ab82b32 100644 + } else if (msg->op == cmo_data_c) { + struct cld_msg_data *resp; + resp = (struct cld_msg_data *) msg; -+ sess->act_log("receive pkt: len %u, op cmo_get" ++ sess->act_log("receive pkt: len %u, op cmo_data_c" + ", seqid %llu, user %s, seg %u, len %u\n", + (unsigned int) pkt_len, + (unsigned long long) GUINT64_FROM_LE(pkt->seqid), @@ -60,6 +60,615 @@ index cf70fc7..ab82b32 100644 if (memcmp(pkt->magic, CLD_PKT_MAGIC, sizeof(pkt->magic))) { if (sess->verbose) +diff --git a/server/cld.h b/server/cld.h +index 2b14060..21f103d 100644 +--- a/server/cld.h ++++ b/server/cld.h +@@ -170,6 +170,7 @@ extern void resp_err(struct session *sess, + const struct cld_msg_hdr *src, enum cle_err_codes errcode); + extern void resp_ok(struct session *sess, const struct cld_msg_hdr *src); + extern bool authsign(struct cld_packet *pkt, size_t pkt_len); ++extern void cldlog(int prio, const char *fmt, ...); + + /* util.c */ + extern int write_pid_file(const char *pid_fn); +diff --git a/server/cldb.c b/server/cldb.c +index cb73523..cef9092 100644 +--- a/server/cldb.c ++++ b/server/cldb.c +@@ -240,10 +240,7 @@ int cldb_init(struct cldb *cldb, const char *db_home, const char *db_password, + + rc = db_env_create(&cldb->env, 0); + if (rc) { +- if (do_syslog) +- syslog(LOG_WARNING, "cldb->env_create failed: %d", rc); +- else +- fprintf(stderr, "cldb->env_create failed: %d\n", rc); ++ cldlog(LOG_WARNING, "cldb->env_create failed: %d\n", rc); + return rc; + } + +@@ -377,7 +374,7 @@ static int cldb_up(struct cldb *cldb, unsigned int flags) + + cldb->up = true; + +- syslog(LOG_INFO, "databases up"); ++ cldlog(LOG_INFO, "databases up\n"); + return 0; + + err_out_handle_idx: +@@ -419,7 +416,7 @@ void cldb_down(struct cldb *cldb) + cldb->inodes = NULL; + cldb->sessions = NULL; + +- syslog(LOG_INFO, "databases down"); ++ cldlog(LOG_INFO, "databases down\n"); + } + + void cldb_fini(struct cldb *cldb) +diff --git a/server/msg.c b/server/msg.c +index 2877348..5ace380 100644 +--- a/server/msg.c ++++ b/server/msg.c +@@ -31,6 +31,21 @@ enum { + CLD_MAX_UDP_SEG = 1024, + }; + ++/* P3 */ ++static void inode_diag(struct raw_inode *inode, char *tag, char *act) ++{ ++ char *p; ++ uint64_t n; ++ int l; ++ ++ l = GUINT32_FROM_LE(inode->ino_len); ++ p = strndup((char *)inode + sizeof(struct raw_inode), l); ++ n = GUINT64_FROM_LE(inode->inum); ++ cldlog(LOG_INFO, "%s>inode.%s 0x%016llx %s[%d]\n", tag, act, ++ (long long)n, p, l); ++ free(p); ++} ++ + struct pathname_info { + const char *dir; + size_t dir_len; +@@ -168,7 +183,8 @@ static bool dirdata_append(void **data, size_t *data_len, + + mem = realloc(*data, new_len); + if (!mem) { +- syslog(LOG_CRIT, "out of memory for data [%lu]", new_len); ++ cldlog(LOG_CRIT, "out of memory for data [%lu]\n", ++ (long)new_len); + return false; + } + +@@ -236,14 +252,14 @@ static int inode_notify(DB_TXN *txn, cldino_t inum, bool deleted) + + sess = g_hash_table_lookup(cld_srv.sessions, h.sid); + if (!sess) { +- syslog(LOG_WARNING, "inode_notify BUG"); ++ cldlog(LOG_WARNING, "inode_notify BUG\n"); + continue; + } + + if (!sess->sock) { /* Freshly recovered session */ + if (debugging) +- syslog(LOG_DEBUG, +- "Lost notify sid " SIDFMT " ino %lld", ++ cldlog(LOG_DEBUG, ++ "Lost notify sid " SIDFMT " ino %lld\n", + SIDARG(sess->sid), (long long) inum); + continue; + } +@@ -360,7 +376,7 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) + + sess = g_hash_table_lookup(cld_srv.sessions, lock.sid); + if (!sess) { +- syslog(LOG_WARNING, "inode_lock_rescan BUG"); ++ cldlog(LOG_WARNING, "inode_lock_rescan BUG\n"); + break; + } + +@@ -370,8 +386,8 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) + + if (!sess->sock) { /* Freshly recovered session */ + if (debugging) +- syslog(LOG_DEBUG, +- "Lost success sid " SIDFMT " ino %lld", ++ cldlog(LOG_DEBUG, ++ "Lost success sid " SIDFMT " ino %lld\n", + SIDARG(sess->sid), (long long) inum); + continue; + } +@@ -592,6 +608,19 @@ void msg_open(struct msg_params *mp) + + /* read inode from db, if it exists */ + rc = cldb_inode_get_byname(txn, name, name_len, &inode, false, DB_RMW); ++if (debugging) ++{ /* P3 */ ++ char *n = strndup(name, name_len); ++ char *d = strndup(pinfo.dir, pinfo.dir_len); ++ char *b = strndup(pinfo.base, pinfo.base_len); ++ cldlog(LOG_DEBUG, ++ "msg_open name %s[%ld] dir %s[%ld] base %s[%ld] create %d getrc %d\n", ++ n, (long)name_len, d, (long)pinfo.dir_len, b, (long)pinfo.base_len, ++ create, rc); ++ free(n); ++ free(d); ++ free(b); ++} + if (rc && (rc != DB_NOTFOUND)) { + resp_rc = CLE_DB_ERR; + goto err_out; +@@ -621,10 +650,11 @@ void msg_open(struct msg_params *mp) + /* create new in-memory inode */ + inode = cldb_inode_new(txn, name, name_len, 0); + if (!inode) { +- syslog(LOG_CRIT, "cannot allocate new inode"); ++ cldlog(LOG_CRIT, "cannot allocate new inode\n"); + resp_rc = CLE_OOM; + goto err_out; + } ++ /* P3 */ inode_diag(inode, "open.inode", "new"); + + if (do_dir) + inode->flags = GUINT32_TO_LE( +@@ -666,6 +696,7 @@ void msg_open(struct msg_params *mp) + + parent->size = GUINT32_TO_LE(parent_len); + ++ /* P3 */ inode_diag(parent, "open.parent", "touch"); + rc = inode_touch(txn, parent); + if (rc) { + resp_rc = CLE_DB_ERR; +@@ -678,7 +709,7 @@ void msg_open(struct msg_params *mp) + /* alloc & init new handle; updates session's next_fh */ + h = cldb_handle_new(mp->sess, inum, msg_mode, msg_events); + if (!h) { +- syslog(LOG_CRIT, "cannot allocate handle"); ++ cldlog(LOG_CRIT, "cannot allocate handle\n"); + resp_rc = CLE_OOM; + goto err_out; + } +@@ -694,6 +725,7 @@ void msg_open(struct msg_params *mp) + + if (create) { + /* write inode */ ++ /* P3 */ inode_diag(inode, "open.inode", "touch"); + rc = inode_touch(txn, inode); + + if (rc) { +@@ -706,7 +738,7 @@ void msg_open(struct msg_params *mp) + raw_sess = session_new_raw(mp->sess); + + if (!raw_sess) { +- syslog(LOG_CRIT, "cannot allocate session"); ++ cldlog(LOG_CRIT, "cannot allocate session\n"); + resp_rc = CLE_OOM; + goto err_out; + } +@@ -913,6 +945,7 @@ static void try_commit_data(struct msg_params *mp, + inode->size = GUINT32_TO_LE(data_size); + + /* update inode */ ++ /* P3 */ inode_diag(inode, "commit.inode", "touch"); + rc = inode_touch(txn, inode); + if (rc) { + resp_rc = CLE_DB_ERR; +@@ -1221,6 +1254,7 @@ void msg_del(struct msg_params *mp) + resp_rc = CLE_DB_ERR; + goto err_out; + } ++ /* P3 */ inode_diag(parent, "del.parent", "lookup"); + + /* read parent inode data */ + rc = cldb_data_get(txn, cldino_from_le(parent->inum), +@@ -1239,6 +1273,7 @@ void msg_del(struct msg_params *mp) + resp_rc = CLE_DB_ERR; + goto err_out; + } ++ /* P3 */ inode_diag(parent, "del.inode", "delete"); + + /* prevent deletion of non-empty dirs */ + if (GUINT32_FROM_LE(ino->flags) & CIFL_DIR) { +@@ -1311,7 +1346,7 @@ void msg_del(struct msg_params *mp) + /* remove record from inode's directory data */ + if (!dirdata_delete(&parent_data, &parent_len, + pinfo.base, pinfo.base_len)) { +- syslog(LOG_WARNING, "dirent del failed"); ++ cldlog(LOG_WARNING, "dirent del failed\n"); + resp_rc = CLE_DB_ERR; + goto err_out; + } +@@ -1327,6 +1362,7 @@ void msg_del(struct msg_params *mp) + parent->size = GUINT32_TO_LE(parent_len); + + /* update parent dir inode */ ++ /* P3 */ inode_diag(parent, "del.parent", "touch"); + rc = inode_touch(txn, parent); + if (rc) { + resp_rc = CLE_DB_ERR; +diff --git a/server/server.c b/server/server.c +index e4b027d..3540d4e 100644 +--- a/server/server.c ++++ b/server/server.c +@@ -51,6 +51,8 @@ static struct argp_option options[] = { + "Store database environment in DIRECTORY" }, + { "debug", 'D', "LEVEL", 0, + "Set debug output to LEVEL (0 = off, 2 = max verbose)" }, ++ { "stderr", 'E', NULL, 0, ++ "Switch the log to standard error" }, + { "foreground", 'F', NULL, 0, + "Run in foreground, do not fork" }, + { "port", 'p', "PORT", 0, +@@ -70,6 +72,7 @@ static const struct argp argp = { options, parse_opt, NULL, doc }; + + static bool server_running = true; + static bool dump_stats; ++static bool use_syslog = true; + int debugging = 0; + struct timeval current_time; + +@@ -81,6 +84,18 @@ struct server cld_srv = { + + static void ensure_root(void); + ++void cldlog(int prio, const char *fmt, ...) ++{ ++ va_list ap; ++ ++ va_start(ap, fmt); ++ if (use_syslog) ++ vsyslog(prio, fmt, ap); ++ else ++ vfprintf(stderr, fmt, ap); ++ va_end(ap); ++} ++ + int udp_tx(struct server_socket *sock, struct sockaddr *addr, + socklen_t addr_len, const void *data, size_t data_len) + { +@@ -113,7 +128,7 @@ void resp_err(struct session *sess, + resp.code = GUINT32_TO_LE(errcode); + + if (sess->sock == NULL) { +- syslog(LOG_ERR, "Nul sock in response\n"); ++ cldlog(LOG_ERR, "Nul sock in response\n"); + return; + } + +@@ -175,7 +190,7 @@ bool authsign(struct cld_packet *pkt, size_t pkt_len) + md, &md_len); + + if (md_len != SHA_DIGEST_LENGTH) +- syslog(LOG_ERR, "authsign BUG: md_len != SHA_DIGEST_LENGTH"); ++ cldlog(LOG_ERR, "authsign BUG: md_len != SHA_DIGEST_LENGTH\n"); + + memcpy(buf + pkt_len - SHA_DIGEST_LENGTH, md, SHA_DIGEST_LENGTH); + +@@ -278,7 +293,7 @@ static void udp_rx(struct server_socket *sock, + mp.msg_len = pkt_len - sizeof(*pkt); + + if (debugging) +- syslog(LOG_DEBUG, " msg op %s, seqid %llu", ++ cldlog(LOG_DEBUG, " msg op %s, seqid %llu\n", + opstr(msg->op), + (unsigned long long) GUINT64_FROM_LE(pkt->seqid)); + +@@ -295,7 +310,7 @@ static void udp_rx(struct server_socket *sock, + /* eliminate duplicates; do not return any response */ + if (GUINT64_FROM_LE(pkt->seqid) != sess->next_seqid_in) { + if (debugging) +- syslog(LOG_DEBUG, "dropping dup"); ++ cldlog(LOG_DEBUG, "dropping dup\n"); + return; + } + +@@ -307,7 +322,7 @@ static void udp_rx(struct server_socket *sock, + /* eliminate duplicates; do not return any response */ + if (GUINT64_FROM_LE(pkt->seqid) != sess->next_seqid_in) { + if (debugging) +- syslog(LOG_DEBUG, "dropping dup"); ++ cldlog(LOG_DEBUG, "dropping dup\n"); + return; + } + +@@ -334,8 +349,8 @@ err_out: + authsign(outpkt, alloc_len); + + if (debugging) +- syslog(LOG_DEBUG, +- "udp_rx err: sid " SIDFMT ", op %s, seqid %llu, code %d", ++ cldlog(LOG_DEBUG, "udp_rx err: " ++ "sid " SIDFMT ", op %s, seqid %llu, code %d\n", + SIDARG(outpkt->sid), + opstr(resp->hdr.op), + (unsigned long long) GUINT64_FROM_LE(outpkt->seqid), +@@ -384,7 +399,7 @@ static bool udp_srv_event(int fd, short events, void *userdata) + strcpy(cli.addr_host, host); + + if (debugging) +- syslog(LOG_DEBUG, "client %s message (%d bytes)", ++ cldlog(LOG_DEBUG, "client %s message (%d bytes)\n", + host, (int) rrc); + + if (cld_srv.cldb.is_master && cld_srv.cldb.up) +@@ -429,7 +444,7 @@ static void cldb_checkpoint(struct timer *timer) + gettimeofday(¤t_time, NULL); + + if (debugging) +- syslog(LOG_INFO, "db4 checkpoint"); ++ cldlog(LOG_INFO, "db4 checkpoint\n"); + + /* flush logs to db, if log files >= 1MB */ + rc = dbenv->txn_checkpoint(dbenv, 1024, 0, 0); +@@ -453,7 +468,7 @@ static int net_open(void) + + rc = getaddrinfo(NULL, cld_srv.port, &hints, &res0); + if (rc) { +- syslog(LOG_ERR, "getaddrinfo(*:%s) failed: %s", ++ cldlog(LOG_ERR, "getaddrinfo(*:%s) failed: %s\n", + cld_srv.port, gai_strerror(rc)); + rc = -EINVAL; + goto err_addr; +@@ -533,7 +548,7 @@ err_addr: + + static void segv_signal(int signal) + { +- syslog(LOG_ERR, "SIGSEGV"); ++ cldlog(LOG_ERR, "SIGSEGV\n"); + exit(1); + } + +@@ -548,7 +563,7 @@ static void stats_signal(int signal) + } + + #define X(stat) \ +- syslog(LOG_INFO, "STAT %s %lu", #stat, cld_srv.stats.stat) ++ cldlog(LOG_INFO, "STAT %s %lu\n", #stat, cld_srv.stats.stat) + + static void stats_dump(void) + { +@@ -572,6 +587,9 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) + argp_usage(state); + } + break; ++ case 'E': ++ use_syslog = false; ++ break; + case 'F': + cld_srv.flags |= SFL_FOREGROUND; + break; +@@ -624,9 +642,10 @@ int main (int argc, char *argv[]) + * open syslog, background outselves, write PID file ASAP + */ + +- openlog(PROGRAM_NAME, LOG_PID, LOG_LOCAL3); ++ if (use_syslog) ++ openlog(PROGRAM_NAME, LOG_PID, LOG_LOCAL3); + +- if ((!(cld_srv.flags & SFL_FOREGROUND)) && (daemon(1, 0) < 0)) { ++ if (!(cld_srv.flags & SFL_FOREGROUND) && (daemon(1, !use_syslog) < 0)) { + syslogerr("daemon"); + goto err_out; + } +@@ -647,7 +666,7 @@ int main (int argc, char *argv[]) + + if (cldb_init(&cld_srv.cldb, cld_srv.data_dir, NULL, + DB_CREATE | DB_THREAD | DB_RECOVER, +- "cld", true, ++ "cld", use_syslog, + DB_CREATE | DB_THREAD, NULL)) + exit(1); + +@@ -675,7 +694,7 @@ int main (int argc, char *argv[]) + if (rc) + goto err_out_pid; + +- syslog(LOG_INFO, "initialized: cport %s, dbg %u", ++ cldlog(LOG_INFO, "initialized: cport %s, dbg %u\n", + cld_srv.port, + debugging); + +@@ -742,7 +761,7 @@ int main (int argc, char *argv[]) + next_timeout = timers_run(); + } + +- syslog(LOG_INFO, "shutting down"); ++ cldlog(LOG_INFO, "shutting down\n"); + + if (cld_srv.cldb.up) + cldb_down(&cld_srv.cldb); +@@ -777,12 +796,12 @@ static void ensure_root() + rc = cldb_inode_get_byname(txn, "/", sizeof("/")-1, &inode, false, 0); + if (rc == 0) { + if (debugging) +- syslog(LOG_DEBUG, "Root inode found, ino %llu\n", ++ cldlog(LOG_DEBUG, "Root inode found, ino %llu\n", + (unsigned long long) cldino_from_le(inode->inum)); + } else if (rc == DB_NOTFOUND) { + inode = cldb_inode_mem("/", sizeof("/")-1, CIFL_DIR, CLD_INO_ROOT); + if (!inode) { +- syslog(LOG_CRIT, "Cannot allocate new root inode"); ++ cldlog(LOG_CRIT, "Cannot allocate new root inode\n"); + goto err_; + } + +@@ -793,12 +812,12 @@ static void ensure_root() + rc = cldb_inode_put(txn, inode, 0); + if (rc) { + free(inode); +- syslog(LOG_CRIT, "Cannot allocate new root inode"); ++ cldlog(LOG_CRIT, "Cannot allocate new root inode\n"); + goto err_; + } + + if (debugging) +- syslog(LOG_DEBUG, "Root inode created, ino %llu\n", ++ cldlog(LOG_DEBUG, "Root inode created, ino %llu\n", + (unsigned long long) cldino_from_le(inode->inum)); + free(inode); + } else { +diff --git a/server/session.c b/server/session.c +index a3332e9..1962b22 100644 +--- a/server/session.c ++++ b/server/session.c +@@ -355,7 +355,7 @@ int session_dispose(DB_TXN *txn, struct session *sess) + session_free(sess); + + if (rc) +- syslog(LOG_WARNING, "failed to remove session"); ++ cldlog(LOG_WARNING, "failed to remove session\n"); + + return rc; + } +@@ -397,7 +397,7 @@ static void session_timeout(struct timer *timer) + return; /* timer added; do not time out session */ + } + +- syslog(LOG_INFO, "session timeout, addr %s sid " SIDFMT, ++ cldlog(LOG_INFO, "session timeout, addr %s sid " SIDFMT "\n", + sess->ipaddr, SIDARG(sess->sid)); + + /* open transaction */ +@@ -531,8 +531,8 @@ static int sess_retry_output(struct session *sess) + continue; + + if (debugging) +- syslog(LOG_DEBUG, +- "retry: sid " SIDFMT ", op %s, seqid %llu", ++ cldlog(LOG_DEBUG, ++ "retry: sid " SIDFMT ", op %s, seqid %llu\n", + SIDARG(outpkt->sid), + opstr(outmsg->op), + (unsigned long long) +@@ -570,7 +570,7 @@ bool sess_sendmsg(struct session *sess, const void *msg_, size_t msglen, + if (debugging) { + const struct cld_msg_hdr *hdr = msg_; + +- syslog(LOG_DEBUG, "sendmsg: sid " SIDFMT ", op %s, msglen %u", ++ cldlog(LOG_DEBUG, "sendmsg: sid " SIDFMT ", op %s, msglen %u\n", + SIDARG(sess->sid), + opstr(hdr->op), + (unsigned int) msglen); +@@ -646,7 +646,7 @@ void msg_ack(struct msg_params *mp) + continue; + + if (debugging) +- syslog(LOG_DEBUG, " expiring seqid %llu", ++ cldlog(LOG_DEBUG, " expiring seqid %llu\n", + (unsigned long long) GUINT64_FROM_LE(outpkt->seqid)); + + /* remove and delete the ack'd msg; call ack'd callback */ +@@ -740,7 +740,8 @@ err_out: + authsign(outpkt, alloc_len); + + if (debugging) +- syslog(LOG_DEBUG, "new_sess err: sid " SIDFMT ", op %s, seqid %llu", ++ cldlog(LOG_DEBUG, ++ "new_sess err: sid " SIDFMT ", op %s, seqid %llu\n", + SIDARG(outpkt->sid), + opstr(resp->hdr.op), + (unsigned long long) GUINT64_FROM_LE(outpkt->seqid)); +@@ -749,7 +750,7 @@ err_out: + mp->cli->addr_len, outpkt, alloc_len); + + if (debugging) +- syslog(LOG_DEBUG, "NEW-SESS failed: %d", resp_rc); ++ cldlog(LOG_DEBUG, "NEW-SESS failed: %d\n", resp_rc); + } + + static void end_sess_done(struct session_outpkt *outpkt) +@@ -804,7 +805,7 @@ err_out_noabort: + + /* + * Fill ss with contents of the database. +- * Returns -1 on error because it prints the diagnostic to syslog. ++ * Returns -1 on error because it prints the diagnostic to the log. + */ + int sess_load(GHashTable *ss) + { +@@ -876,7 +877,7 @@ static int sess_load_db(GHashTable *ss, DB_TXN *txn) + session_decode(sess, &raw_sess); + + if (debugging) +- syslog(LOG_DEBUG, ++ cldlog(LOG_DEBUG, + " loaded sid " SIDFMT " next seqid %llu/%llu", + SIDARG(sess->sid), + (unsigned long long) +diff --git a/server/util.c b/server/util.c +index 2392595..02bf3af 100644 +--- a/server/util.c ++++ b/server/util.c +@@ -49,7 +49,7 @@ int write_pid_file(const char *pid_fn) + fd = open(pid_fn, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR); + if (fd < 0) { + err = errno; +- syslog(LOG_ERR, "Cannot open PID file %s: %s", ++ cldlog(LOG_ERR, "Cannot open PID file %s: %s\n", + pid_fn, strerror(err)); + return -err; + } +@@ -61,10 +61,10 @@ int write_pid_file(const char *pid_fn) + if (fcntl(fd, F_SETLK, &lock) != 0) { + err = errno; + if (err == EAGAIN) { +- syslog(LOG_ERR, "PID file %s is already locked", ++ cldlog(LOG_ERR, "PID file %s is already locked\n", + pid_fn); + } else { +- syslog(LOG_ERR, "Cannot lock PID file %s: %s", ++ cldlog(LOG_ERR, "Cannot lock PID file %s: %s\n", + pid_fn, strerror(err)); + } + close(fd); +@@ -78,7 +78,7 @@ int write_pid_file(const char *pid_fn) + ssize_t rc = write(fd, s, bytes); + if (rc < 0) { + err = errno; +- syslog(LOG_ERR, "PID number write failed: %s", ++ cldlog(LOG_ERR, "PID number write failed: %s\n", + strerror(err)); + goto err_out; + } +@@ -90,7 +90,7 @@ int write_pid_file(const char *pid_fn) + /* make sure file data is written to disk */ + if (fsync(fd) < 0) { + err = errno; +- syslog(LOG_ERR, "PID file fsync failed: %s", strerror(err)); ++ cldlog(LOG_ERR, "PID file fsync failed: %s\n", strerror(err)); + goto err_out; + } + +@@ -104,7 +104,7 @@ err_out: + + void syslogerr(const char *prefix) + { +- syslog(LOG_ERR, "%s: %s", prefix, strerror(errno)); ++ cldlog(LOG_ERR, "%s: %s\n", prefix, strerror(errno)); + } + + int fsetflags(const char *prefix, int fd, int or_flags) +@@ -114,7 +114,7 @@ int fsetflags(const char *prefix, int fd, int or_flags) + /* get current flags */ + old_flags = fcntl(fd, F_GETFL); + if (old_flags < 0) { +- syslog(LOG_ERR, "%s F_GETFL: %s", prefix, strerror(errno)); ++ cldlog(LOG_ERR, "%s F_GETFL: %s\n", prefix, strerror(errno)); + return -errno; + } + +@@ -125,7 +125,8 @@ int fsetflags(const char *prefix, int fd, int or_flags) + /* set new flags */ + if (flags != old_flags) + if (fcntl(fd, F_SETFL, flags) < 0) { +- syslog(LOG_ERR, "%s F_SETFL: %s", prefix, strerror(errno)); ++ cldlog(LOG_ERR, "%s F_SETFL: %s\n", prefix, ++ strerror(errno)); + rc = -errno; + } + diff --git a/test/load-file-event.c b/test/load-file-event.c index d23c501..5846052 100644 --- a/test/load-file-event.c @@ -73,3 +682,16 @@ index d23c501..5846052 100644 event_set(&run.udp_ev, run.udp->fd, EV_READ | EV_PERSIST, udp_event, &run); +diff --git a/test/start-daemon b/test/start-daemon +index 6124ff4..4cb9fd7 100755 +--- a/test/start-daemon ++++ b/test/start-daemon +@@ -6,7 +6,7 @@ then + exit 1 + fi + +-../server/cld -P cld.pid -d "$PWD/data" -p 18181 ++../server/cld -P cld.pid -d "$PWD/data" -p 18181 -E + + sleep 3 + Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -u -p -r1.4.2.2 -r1.4.2.3 --- cld.spec 22 Jul 2009 01:41:30 -0000 1.4.2.2 +++ cld.spec 22 Jul 2009 03:33:14 -0000 1.4.2.3 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962.bz512560.2%{?dist} +Release: 0.4.gc5b5f962.bz512560.3%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -21,10 +21,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: db4-devel libevent-devel glib2-devel doxygen openssl-devel BuildRequires: texlive-latex -# cld is broken on big-endian... embarrassing!!! -# FIXME: remove this when cld is fixed -# ExcludeArch: ppc ppc64 - %description Coarse locking daemon for cloud computing. This software provides a cache-coherent, highly-available distributed filesystem for small @@ -107,7 +103,7 @@ fi %changelog * Tue Jul 21 2009 Pete Zaitcev -- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.2 +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.3 * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From bskeggs at fedoraproject.org Wed Jul 22 03:36:16 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Wed, 22 Jul 2009 03:36:16 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.35, 1.36 kernel.spec, 1.1644, 1.1645 Message-ID: <20090722033616.7B7D311C04A1@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29331 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Wed Jul 22 2009 Ben Skeggs - Update nouveau from upstream (initial suspend/resume + misc bugfixes) drm-nouveau.patch: drivers/gpu/drm/Kconfig | 30 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/nouveau/Makefile | 27 drivers/gpu/drm/nouveau/nouveau_backlight.c | 154 drivers/gpu/drm/nouveau/nouveau_bios.c | 5037 ++++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 226 drivers/gpu/drm/nouveau/nouveau_bo.c | 567 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 55 drivers/gpu/drm/nouveau/nouveau_crtc.h | 89 drivers/gpu/drm/nouveau/nouveau_display.c | 115 drivers/gpu/drm/nouveau/nouveau_dma.c | 143 drivers/gpu/drm/nouveau/nouveau_dma.h | 136 drivers/gpu/drm/nouveau/nouveau_drv.c | 353 drivers/gpu/drm/nouveau/nouveau_drv.h | 1077 + drivers/gpu/drm/nouveau/nouveau_encoder.h | 51 drivers/gpu/drm/nouveau/nouveau_fb.h | 43 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 1018 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 49 drivers/gpu/drm/nouveau/nouveau_fence.c | 261 drivers/gpu/drm/nouveau/nouveau_fifo.c | 664 drivers/gpu/drm/nouveau/nouveau_gem.c | 769 drivers/gpu/drm/nouveau/nouveau_hw.c | 1015 + drivers/gpu/drm/nouveau/nouveau_hw.h | 427 drivers/gpu/drm/nouveau/nouveau_i2c.c | 273 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 667 drivers/gpu/drm/nouveau/nouveau_mem.c | 539 drivers/gpu/drm/nouveau/nouveau_notifier.c | 194 drivers/gpu/drm/nouveau/nouveau_object.c | 1259 + drivers/gpu/drm/nouveau/nouveau_reg.h | 831 + drivers/gpu/drm/nouveau/nouveau_sgdma.c | 329 drivers/gpu/drm/nouveau/nouveau_state.c | 1036 + drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nouveau_ttm.c | 116 drivers/gpu/drm/nouveau/nv04_crtc.c | 1025 + drivers/gpu/drm/nouveau/nv04_cursor.c | 75 drivers/gpu/drm/nouveau/nv04_display.c | 245 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fbcon.c | 291 drivers/gpu/drm/nouveau/nv04_fifo.c | 144 drivers/gpu/drm/nouveau/nv04_graph.c | 578 drivers/gpu/drm/nouveau/nv04_instmem.c | 182 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_output.c | 1194 + drivers/gpu/drm/nouveau/nv04_timer.c | 50 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 175 drivers/gpu/drm/nouveau/nv10_graph.c | 935 + drivers/gpu/drm/nouveau/nv20_graph.c | 949 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 216 drivers/gpu/drm/nouveau/nv40_graph.c | 2200 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 495 drivers/gpu/drm/nouveau/nv50_crtc.c | 805 + drivers/gpu/drm/nouveau/nv50_cursor.c | 153 drivers/gpu/drm/nouveau/nv50_dac.c | 284 drivers/gpu/drm/nouveau/nv50_display.c | 803 + drivers/gpu/drm/nouveau/nv50_display.h | 46 drivers/gpu/drm/nouveau/nv50_evo.h | 113 drivers/gpu/drm/nouveau/nv50_fbcon.c | 254 drivers/gpu/drm/nouveau/nv50_fifo.c | 474 drivers/gpu/drm/nouveau/nv50_graph.c | 428 drivers/gpu/drm/nouveau/nv50_grctx.h |22284 ++++++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 499 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 268 drivers/gpu/drm/nouveau/nvreg.h | 503 drivers/gpu/drm/ttm/ttm_bo.c | 4 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 298 75 files changed, 54509 insertions(+), 21 deletions(-) View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.35 -r 1.36 drm-nouveau.patchIndex: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- drm-nouveau.patch 13 Jul 2009 06:42:41 -0000 1.35 +++ drm-nouveau.patch 22 Jul 2009 03:36:13 -0000 1.36 @@ -1,8 +1,8 @@ diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig -index 39b393d..3339338 100644 +index 39b393d..5ea10e5 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig -@@ -143,3 +143,22 @@ config DRM_SAVAGE +@@ -143,3 +143,33 @@ config DRM_SAVAGE help Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister chipset. If M is selected the module will be called savage. @@ -14,6 +14,9 @@ index 39b393d..3339338 100644 + select FB_CFB_FILLRECT + select FB_CFB_COPYAREA + select FB_CFB_IMAGEBLIT ++ select FB ++ select FRAMEBUFFER_CONSOLE if !EMBEDDED ++ select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT + help + Choose this option for open-source nVidia support. + @@ -25,6 +28,14 @@ index 39b393d..3339338 100644 + and you have a new enough userspace to support this. Running old + userspaces with this enabled will cause pain. + ++config DRM_NOUVEAU_BACKLIGHT ++ bool "Support for backlight control" ++ depends on DRM_NOUVEAU ++ default y ++ help ++ Say Y here if you want to control the backlight of your display ++ (e.g. a laptop panel). ++ diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile index fe23f29..4c6a38d 100644 --- a/drivers/gpu/drm/Makefile @@ -94,10 +105,10 @@ index 6246e3f..436e2fe 100644 if (map->type == _DRM_REGISTERS) diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile new file mode 100644 -index 0000000..f5d93b5 +index 0000000..67a9582 --- /dev/null +++ b/drivers/gpu/drm/nouveau/Makefile -@@ -0,0 +1,26 @@ +@@ -0,0 +1,27 @@ +# +# Makefile for the drm device driver. This driver provides support for the +# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. @@ -108,7 +119,7 @@ index 0000000..f5d93b5 + nouveau_sgdma.o nouveau_dma.o \ + nouveau_bo.o nouveau_fence.o nouveau_gem.o nouveau_ttm.o \ + nouveau_hw.o nouveau_calc.o nouveau_bios.o nouveau_i2c.o \ -+ nouveau_display.o nouveau_fbcon.o nouveau_backlight.o \ ++ nouveau_display.o nouveau_fbcon.o \ + nv04_timer.o \ + nv04_mc.o nv40_mc.o nv50_mc.o \ + nv04_fb.o nv10_fb.o nv40_fb.o \ @@ -119,14 +130,15 @@ index 0000000..f5d93b5 + nv50_crtc.o nv50_dac.o nv50_sor.o nv50_connector.o \ + nv50_cursor.o nv50_display.o nv50_fbcon.o \ + nv04_display.o nv04_output.o nv04_crtc.o nv04_cursor.o \ -+ nv04_fbcon.o ++ nv04_fbcon.o + +nouveau-$(CONFIG_COMPAT) += nouveau_ioc32.o ++nouveau-$(CONFIG_DRM_NOUVEAU_BACKLIGHT) += nouveau_backlight.o + +obj-$(CONFIG_DRM_NOUVEAU)+= nouveau.o diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c new file mode 100644 -index 0000000..395639b +index 0000000..4f4919e --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_backlight.c @@ -0,0 +1,154 @@ @@ -199,7 +211,7 @@ index 0000000..395639b +{ + struct drm_device *dev = bl_get_data(bd); + -+ return nv_rd32(NV50_PDISPLAY_BACKLIGHT); ++ return nv_rd32(NV50_PDISPLAY_SOR_BACKLIGHT); +} + +static int nv50_set_intensity(struct backlight_device *bd) @@ -207,8 +219,8 @@ index 0000000..395639b + struct drm_device *dev = bl_get_data(bd); + int val = bd->props.brightness; + -+ nv_wr32(NV50_PDISPLAY_BACKLIGHT, val | NV50_PDISPLAY_BACKLIGHT_ENABLE); -+ ++ nv_wr32(NV50_PDISPLAY_SOR_BACKLIGHT, val | ++ NV50_PDISPLAY_SOR_BACKLIGHT_ENABLE); + return 0; +} + @@ -244,7 +256,7 @@ index 0000000..395639b + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct backlight_device *bd; + -+ if (!nv_rd32(NV50_PDISPLAY_BACKLIGHT)) ++ if (!nv_rd32(NV50_PDISPLAY_SOR_BACKLIGHT)) + return 0; + + bd = backlight_device_register("nv_backlight", &dev->pdev->dev, dev, @@ -286,10 +298,10 @@ index 0000000..395639b +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..f719eb4 +index 0000000..e2a64c3 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c -@@ -0,0 +1,4861 @@ +@@ -0,0 +1,5037 @@ +/* + * Copyright 2005-2006 Erik Waling + * Copyright 2006 Stephane Marchesin @@ -601,14 +613,21 @@ index 0000000..f719eb4 + +static bool valid_idx_port(struct drm_device *dev, uint16_t port) +{ ++ struct drm_nouveau_private *dev_priv = dev->dev_private; ++ + /* if adding more ports here, the read/write functions below will need + * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is + * used for the port in question + */ -+ if (port == NV_CIO_CRX__COLOR) -+ return true; -+ if (port == NV_VIO_SRX) -+ return true; ++ if (dev_priv->card_type < NV_50) { ++ if (port == NV_CIO_CRX__COLOR) ++ return true; ++ if (port == NV_VIO_SRX) ++ return true; ++ } else { ++ if (port == NV_CIO_CRX__COLOR) ++ return true; ++ } + + NV_ERROR(dev, "========== unknown indexed io port 0x%04X ==========\n", + port); @@ -680,25 +699,36 @@ index 0000000..f719eb4 + } +} + -+static uint8_t bios_idxprt_rd(struct drm_device *dev, uint16_t port, uint8_t index) ++static uint8_t ++bios_idxprt_rd(struct drm_device *dev, uint16_t port, uint8_t index) +{ ++ struct drm_nouveau_private *dev_priv = dev->dev_private; + uint8_t data; + + if (!valid_idx_port(dev, port)) + return 0; + -+ if (port == NV_VIO_SRX) -+ data = NVReadVgaSeq(dev, crtchead, index); -+ else /* assume NV_CIO_CRX__COLOR */ -+ data = NVReadVgaCrtc(dev, crtchead, index); ++ if (dev_priv->card_type < NV_50) { ++ if (port == NV_VIO_SRX) ++ data = NVReadVgaSeq(dev, crtchead, index); ++ else /* assume NV_CIO_CRX__COLOR */ ++ data = NVReadVgaCrtc(dev, crtchead, index); ++ } else { ++ uint32_t data32; + -+ BIOSLOG(dev, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, Head: 0x%02X, Data: 0x%02X\n", -+ port, index, crtchead, data); ++ data32 = bios_rd32(dev, NV50_PDISPLAY_VGACRTC(index & ~3)); ++ data = (data32 >> ((index & 3) << 3)) & 0xff; ++ } + ++ BIOSLOG(dev, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, " ++ "Head: 0x%02X, Data: 0x%02X\n", ++ port, index, crtchead, data); + return data; +} + -+static void bios_idxprt_wr(struct drm_device *dev, uint16_t port, uint8_t index, uint8_t data) ++static void ++bios_idxprt_wr(struct drm_device *dev, uint16_t port, ++ uint8_t index, uint8_t data) +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; + @@ -711,22 +741,35 @@ index 0000000..f719eb4 + * As CR44 only exists on CRTC0, we update crtchead to head0 in advance + * of the write, and to head1 after the write [...4197 lines suppressed...] ++ /* Poke the relevant regs, and pray it works :) */ ++ nv_wr32(NV50_PUNK_BAR_CFG_BASE, (chan->ramin->instance >> 12)); ++ nv_wr32(NV50_PUNK_UNK1710, 0); ++ nv_wr32(NV50_PUNK_BAR_CFG_BASE, (chan->ramin->instance >> 12) | ++ NV50_PUNK_BAR_CFG_BASE_VALID); ++ nv_wr32(NV50_PUNK_BAR1_CTXDMA, (priv->fb_bar->instance >> 4) | ++ NV50_PUNK_BAR1_CTXDMA_VALID); ++ nv_wr32(NV50_PUNK_BAR3_CTXDMA, (priv->pramin_bar->instance >> 4) | ++ NV50_PUNK_BAR3_CTXDMA_VALID); ++ ++ for (i = 0; i < 8; i++) ++ nv_wr32(0x1900 + (i*4), 0); ++} ++ ++int +nv50_instmem_populate(struct drm_device *dev, struct nouveau_gpuobj *gpuobj, + uint32_t *sz) +{ @@ -53052,8 +53723,16 @@ index 0000000..9b5f802 + true, false, &gpuobj->im_backing); + if (ret) { + NV_ERROR(dev, "error getting PRAMIN backing pages: %d\n", ret); -+ return -ENOMEM; ++ return ret; + } ++ ++ ret = nouveau_bo_pin(gpuobj->im_backing, TTM_PL_FLAG_VRAM); ++ if (ret) { ++ NV_ERROR(dev, "error pinning PRAMIN backing VRAM: %d\n", ret); ++ nouveau_bo_ref(NULL, &gpuobj->im_backing); ++ return ret; ++ } ++ + gpuobj->im_backing_start = gpuobj->im_backing->bo.mem.mm_node->start; + gpuobj->im_backing_start <<= PAGE_SHIFT; + @@ -53217,10 +53896,10 @@ index 0000000..6572f12 +} diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c new file mode 100644 -index 0000000..5429266 +index 0000000..23eb86d --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_sor.c -@@ -0,0 +1,304 @@ +@@ -0,0 +1,268 @@ +/* + * Copyright (C) 2008 Maarten Maathuis. + * All Rights Reserved. @@ -53264,7 +53943,7 @@ index 0000000..5429266 +{ + struct drm_device *dev = encoder->base.dev; + struct drm_nouveau_private *dev_priv = dev->dev_private; -+ struct nouveau_channel *evo = &dev_priv->evo.chan; ++ struct nouveau_channel *evo = dev_priv->evo; + int ret; + + NV_DEBUG(dev, "Disconnecting SOR %d\n", encoder->or); @@ -53278,34 +53957,11 @@ index 0000000..5429266 + OUT_RING (evo, 0); +} + -+static int -+nv50_sor_set_clock_mode(struct nouveau_encoder *encoder, -+ struct drm_display_mode *mode) -+{ -+ struct drm_device *dev = encoder->base.dev; -+ uint32_t limit = encoder->dcb->type == OUTPUT_LVDS ? 112000 : 165000; -+ -+ NV_DEBUG(dev, "or %d\n", encoder->or); -+ -+ /* We don't yet know what to do, if anything at all. */ -+ if (encoder->dcb->type == OUTPUT_LVDS) -+ return 0; -+ -+ /* 0x70000 was a late addition to nv, mentioned as fixing tmds -+ * initialisation on certain gpu's. I presume it's some kind of -+ * clock setting, but what precisely i do not know. -+ */ -+ nv_wr32(NV50_PDISPLAY_SOR_CLK_CTRL2(encoder->or), -+ 0x70000 | ((mode->clock > limit) ? 0x101 : 0)); -+ -+ return 0; -+} -+ +static void nv50_sor_dpms(struct drm_encoder *drm_encoder, int mode) +{ + struct drm_device *dev = drm_encoder->dev; + struct drm_nouveau_private *dev_priv = dev->dev_private; -+ struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); ++ struct nouveau_encoder *encoder = nouveau_encoder(drm_encoder); + uint32_t val; + int or = encoder->or; + @@ -53317,27 +53973,27 @@ index 0000000..5429266 + } + + /* wait for it to be done */ -+ if (!nv_wait(NV50_PDISPLAY_SOR_REGS_DPMS_CTRL(or), -+ NV50_PDISPLAY_SOR_REGS_DPMS_CTRL_PENDING, 0)) { ++ if (!nv_wait(NV50_PDISPLAY_SOR_DPMS_CTRL(or), ++ NV50_PDISPLAY_SOR_DPMS_CTRL_PENDING, 0)) { + NV_ERROR(dev, "timeout: SOR_DPMS_CTRL_PENDING(%d) == 0\n", or); + NV_ERROR(dev, "SOR_DPMS_CTRL(%d) = 0x%08x\n", or, -+ nv_rd32(NV50_PDISPLAY_SOR_REGS_DPMS_CTRL(or))); ++ nv_rd32(NV50_PDISPLAY_SOR_DPMS_CTRL(or))); + } + -+ val = nv_rd32(NV50_PDISPLAY_SOR_REGS_DPMS_CTRL(or)); ++ val = nv_rd32(NV50_PDISPLAY_SOR_DPMS_CTRL(or)); + + if (mode == DRM_MODE_DPMS_ON) -+ val |= NV50_PDISPLAY_SOR_REGS_DPMS_CTRL_ON; ++ val |= NV50_PDISPLAY_SOR_DPMS_CTRL_ON; + else -+ val &= ~NV50_PDISPLAY_SOR_REGS_DPMS_CTRL_ON; ++ val &= ~NV50_PDISPLAY_SOR_DPMS_CTRL_ON; + -+ nv_wr32(NV50_PDISPLAY_SOR_REGS_DPMS_CTRL(or), val | -+ NV50_PDISPLAY_SOR_REGS_DPMS_CTRL_PENDING); -+ if (!nv_wait(NV50_PDISPLAY_SOR_REGS_DPMS_STATE(or), -+ NV50_PDISPLAY_SOR_REGS_DPMS_STATE_WAIT, 0)) { ++ nv_wr32(NV50_PDISPLAY_SOR_DPMS_CTRL(or), val | ++ NV50_PDISPLAY_SOR_DPMS_CTRL_PENDING); ++ if (!nv_wait(NV50_PDISPLAY_SOR_DPMS_STATE(or), ++ NV50_PDISPLAY_SOR_DPMS_STATE_WAIT, 0)) { + NV_ERROR(dev, "timeout: SOR_DPMS_STATE_WAIT(%d) == 0\n", or); + NV_ERROR(dev, "SOR_DPMS_STATE(%d) = 0x%08x\n", or, -+ nv_rd32(NV50_PDISPLAY_SOR_REGS_DPMS_STATE(or))); ++ nv_rd32(NV50_PDISPLAY_SOR_DPMS_STATE(or))); + } +} + @@ -53359,7 +54015,7 @@ index 0000000..5429266 + + list_for_each_entry(drm_connector, &dev->mode_config.connector_list, head) { + if (drm_connector->encoder == &encoder->base) -+ return to_nouveau_connector(drm_connector); ++ return nouveau_connector(drm_connector); + } + + return NULL; @@ -53369,7 +54025,7 @@ index 0000000..5429266 + struct drm_display_mode *mode, + struct drm_display_mode *adjusted_mode) +{ -+ struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); ++ struct nouveau_encoder *encoder = nouveau_encoder(drm_encoder); + struct nouveau_connector *connector; + + connector = nouveau_encoder_connector_get(encoder); @@ -53400,10 +54056,10 @@ index 0000000..5429266 + struct drm_display_mode *adjusted_mode) +{ + struct drm_nouveau_private *dev_priv = drm_encoder->dev->dev_private; -+ struct nouveau_channel *evo = &dev_priv->evo.chan; -+ struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); ++ struct nouveau_channel *evo = dev_priv->evo; ++ struct nouveau_encoder *encoder = nouveau_encoder(drm_encoder); + struct drm_device *dev = drm_encoder->dev; -+ struct nouveau_crtc *crtc = to_nouveau_crtc(drm_encoder->crtc); ++ struct nouveau_crtc *crtc = nouveau_crtc(drm_encoder->crtc); + uint32_t mode_ctl = 0; + int ret; + @@ -53453,7 +54109,7 @@ index 0000000..5429266 + +static void nv50_sor_destroy(struct drm_encoder *drm_encoder) +{ -+ struct nouveau_encoder *encoder = to_nouveau_encoder(drm_encoder); ++ struct nouveau_encoder *encoder = nouveau_encoder(drm_encoder); + + NV_DEBUG(drm_encoder->dev, "\n"); + @@ -53504,25 +54160,12 @@ index 0000000..5429266 + + encoder->dual_link = nouveau_duallink; + -+ /* Set function pointers. */ -+ encoder->set_clock_mode = nv50_sor_set_clock_mode; -+ + drm_encoder_init(dev, &encoder->base, &nv50_sor_encoder_funcs, type); + drm_encoder_helper_add(&encoder->base, &nv50_sor_helper_funcs); + + encoder->base.possible_crtcs = entry->heads; + encoder->base.possible_clones = 0; + -+ /* Some default state, unknown what it precisely means. */ -+ if (encoder->base.encoder_type == DRM_MODE_ENCODER_TMDS) { -+ int or = encoder->or; -+ -+ nv_wr32(NV50_PDISPLAY_SOR_REGS_UNK_00C(or), 0x03010700); -+ nv_wr32(NV50_PDISPLAY_SOR_REGS_UNK_010(or), 0x0000152f); -+ nv_wr32(NV50_PDISPLAY_SOR_REGS_UNK_014(or), 0x00000000); -+ nv_wr32(NV50_PDISPLAY_SOR_REGS_UNK_018(or), 0x00245af8); -+ } -+ + return 0; +} diff --git a/drivers/gpu/drm/nouveau/nvreg.h b/drivers/gpu/drm/nouveau/nvreg.h Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1644 retrieving revision 1.1645 diff -u -p -r1.1644 -r1.1645 --- kernel.spec 20 Jul 2009 22:48:45 -0000 1.1644 +++ kernel.spec 22 Jul 2009 03:36:14 -0000 1.1645 @@ -1885,6 +1885,9 @@ fi # and build. %changelog +* Wed Jul 22 2009 Ben Skeggs +- Update nouveau from upstream (initial suspend/resume + misc bugfixes) + * Mon Jul 20 2009 Adam Jackson - Disable VGA arbiter patches for a moment From bskeggs at fedoraproject.org Wed Jul 22 03:45:29 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Wed, 22 Jul 2009 03:45:29 +0000 (UTC) Subject: rpms/kernel/devel config-generic, 1.308, 1.309 kernel.spec, 1.1645, 1.1646 Message-ID: <20090722034529.62EB711C025F@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1273 Modified Files: config-generic kernel.spec Log Message: * Wed Jul 22 2009 Ben Skeggs 2.6.31-0.82.rc3.git4 - Enable KMS for nouveau Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.308 retrieving revision 1.309 diff -u -p -r1.308 -r1.309 --- config-generic 20 Jul 2009 23:17:11 -0000 1.308 +++ config-generic 22 Jul 2009 03:45:28 -0000 1.309 @@ -2247,7 +2247,8 @@ CONFIG_DRM_I915=m CONFIG_DRM_I915_KMS=y CONFIG_DRM_VIA=m CONFIG_DRM_NOUVEAU=m -# CONFIG_DRM_NOUVEAU_KMS is not set +CONFIG_DRM_NOUVEAU_KMS=y +CONFIG_DRM_NOUVEAU_BACKLIGHT=y # # PCMCIA character devices Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1645 retrieving revision 1.1646 diff -u -p -r1.1645 -r1.1646 --- kernel.spec 22 Jul 2009 03:36:14 -0000 1.1645 +++ kernel.spec 22 Jul 2009 03:45:29 -0000 1.1646 @@ -1885,6 +1885,9 @@ fi # and build. %changelog +* Wed Jul 22 2009 Ben Skeggs 2.6.31-0.82.rc3.git4 +- Enable KMS for nouveau + * Wed Jul 22 2009 Ben Skeggs - Update nouveau from upstream (initial suspend/resume + misc bugfixes) From bos at fedoraproject.org Wed Jul 22 04:05:16 2009 From: bos at fedoraproject.org (Bryan O'Sullivan) Date: Wed, 22 Jul 2009 04:05:16 +0000 (UTC) Subject: rpms/ghc/devel .cvsignore, 1.17, 1.18 ghc.spec, 1.93, 1.94 sources, 1.19, 1.20 Message-ID: <20090722040516.0A26811C00D6@cvs1.fedora.phx.redhat.com> Author: bos Update of /cvs/extras/rpms/ghc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25773 Modified Files: .cvsignore ghc.spec sources Log Message: ghc 6.10.4 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ghc/devel/.cvsignore,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- .cvsignore 13 May 2009 07:17:04 -0000 1.17 +++ .cvsignore 22 Jul 2009 04:04:45 -0000 1.18 @@ -1,2 +1,2 @@ -ghc-6.10.3-src.tar.bz2 -ghc-6.10.3-src-extralibs.tar.bz2 +ghc-6.10.4-src.tar.bz2 +ghc-6.10.4-src-extralibs.tar.bz2 Index: ghc.spec =================================================================== RCS file: /cvs/extras/rpms/ghc/devel/ghc.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- ghc.spec 30 May 2009 06:16:53 -0000 1.93 +++ ghc.spec 22 Jul 2009 04:04:45 -0000 1.94 @@ -28,8 +28,8 @@ Name: ghc # part of haskell-platform -Version: 6.10.3 -Release: 3%{?dist} +Version: 6.10.4 +Release: 1%{?dist} Summary: Glasgow Haskell Compilation system # fedora ghc has only been bootstrapped on the following archs: ExclusiveArch: %{ix86} x86_64 ppc alpha @@ -278,6 +278,9 @@ fi %endif %changelog +* Tue Jul 21 2009 Bryan O'Sullivan - 6.10.4-1 +- update to 6.10.4 + * Sat May 30 2009 Jens Petersen - 6.10.3-3 - add haddock_version and use it to obsolete haddock and ghc-haddock-* Index: sources =================================================================== RCS file: /cvs/extras/rpms/ghc/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 13 May 2009 07:17:04 -0000 1.19 +++ sources 22 Jul 2009 04:04:45 -0000 1.20 @@ -1,2 +1,2 @@ -3de6a6d434c2b43def10c4cc613b265e ghc-6.10.3-src.tar.bz2 -d0fe09625556ea274df11d601c1b2a15 ghc-6.10.3-src-extralibs.tar.bz2 +167687fa582ef6702aaac24e139ec982 ghc-6.10.4-src.tar.bz2 +37ce285617d7cebabc3cf6805bdbca25 ghc-6.10.4-src-extralibs.tar.bz2 From rishi at fedoraproject.org Wed Jul 22 04:05:54 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Wed, 22 Jul 2009 04:05:54 +0000 (UTC) Subject: rpms/gajim/F-11 .cvsignore, 1.14, 1.15 gajim.spec, 1.32, 1.33 sources, 1.14, 1.15 Message-ID: <20090722040554.A026111C00D6@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/gajim/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27116 Modified Files: .cvsignore gajim.spec sources Log Message: * Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 - Version bump to 0.12.3. (Red Hat Bugzilla #510803) * Better keepalive / ping behaviour. * Fixed custom port handling. * Fixed PEP discovery. * Fixed PLAIN authentication (in particular with Google Talk). * Fixed SSL with some servers. * Handle XFCE notification-daemon. * Improve Kerberos support. * NetworkManager 0.7 support. * Restore old behaviour of click on systray: left click to open events. * Totem support for played music. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-11/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 23 Dec 2008 20:02:26 -0000 1.14 +++ .cvsignore 22 Jul 2009 04:05:24 -0000 1.15 @@ -1 +1 @@ -gajim-0.12.1.tar.gz +gajim-0.12.3.tar.gz Index: gajim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-11/gajim.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gajim.spec 2 May 2009 11:52:10 -0000 1.32 +++ gajim.spec 22 Jul 2009 04:05:24 -0000 1.33 @@ -2,9 +2,9 @@ Summary: Jabber client written in PyGTK Name: gajim -Version: 0.12.1 -Release: 3%{?dist} -License: GPLv2 +Version: 0.12.3 +Release: 1%{?dist} +License: GPLv3 Group: Applications/Internet URL: http://gajim.org/ Source0: http://gajim.org/downloads/%{name}-%{version}.tar.gz @@ -22,10 +22,13 @@ Requires: gnome-python2-gnome Requires: gnome-python2-bonobo Requires: gnome-python2-canvas +Requires: gnupg Requires: notify-python Requires: pygtk2-libglade Requires: pyOpenSSL +Requires: python-crypto Requires: python-docutils +Requires: python-GnuPGInterface Requires: python-kerberos Requires: python-sexy @@ -46,10 +49,6 @@ Gajim does not require GNOME to run, eve %prep %setup -q -# Suppress error. -sed --in-place --expression '1d' ./src/gajim.py -sed --in-place --expression '1d' ./src/gajim-remote.py - %build %configure --docdir=%{_docdir}/%{name}-%{version} \ --libdir=%{python_sitearch} \ @@ -65,9 +64,6 @@ make install INSTALL="%{__install} -p" D rm -rf $RPM_BUILD_ROOT%{python_sitearch}/%{name}/*.la -# Suppress rpmlint error. -chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/src/history_manager.py - desktop-file-install --vendor fedora --delete-original \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --remove-category=Application \ @@ -85,9 +81,11 @@ rm -rf %{buildroot} %doc COPYING %doc README.html %doc THANKS +%doc THANKS.artists %doc %{_mandir}/man1/%{name}.1* %doc %{_mandir}/man1/%{name}-remote.1* %{_bindir}/%{name} +%{_bindir}/%{name}-history-manager %{_bindir}/%{name}-remote %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/pixmaps/%{name}.png @@ -103,6 +101,24 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}/trayicon.so %changelog +* Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 +- Version bump to 0.12.3. (Red Hat Bugzilla #510803) + * Better keepalive / ping behaviour. + * Fixed custom port handling. + * Fixed PEP discovery. + * Fixed PLAIN authentication (in particular with Google Talk). + * Fixed SSL with some servers. + * Handle XFCE notification-daemon. + * Improve Kerberos support. + * NetworkManager 0.7 support. + * Restore old behaviour of click on systray: left click to open events. + * Totem support for played music. + +* Tue Jul 14 2009 Debarshi Ray - 0.12.1-2 +- Replaced 'License: GPLv2' with 'License: GPLv3'. +- Added 'Requires: gnupg python-crypto python-GnuPGInterface'. (Red Hat + Bugzilla #510804) + * Sat May 02 2009 Debarshi Ray - 0.12.1-3 - Added 'Requires: gnome-python2-bonobo'. (Red Hat Bugzilla #470181) @@ -111,11 +127,22 @@ rm -rf %{buildroot} * Tue Dec 23 2008 Debarshi Ray - 0.12.1-1 - Version bump to 0.12.1. + * Fixed click on notifications when text string is empty. + * Fixed file transfer. + * Improve systray popup menu. + * Translation updates: de. - /usr/share/gajim/src/gajim-{remote}.py need not contain shebangs nor have the executable bits. * Thu Dec 18 2008 Debarshi Ray - 0.12-1 - Version bump to 0.12. + * Better auto-away support. + * Better sessions support. + * Fixed Banshee support. + * Fixed end to end encryption autonegation. + * Fixed GSSAPI authentication. + * Fixed text rendering in notifications. + * Quodlibet support. - Added 'Requires: notify-python python-kerberos'. * Sun Nov 30 2008 Debarshi Ray - 0.12-0.1.beta1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-11/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 23 Dec 2008 20:02:26 -0000 1.14 +++ sources 22 Jul 2009 04:05:24 -0000 1.15 @@ -1 +1 @@ -195a7973d3fbfb538e2ee74156aa6e9e gajim-0.12.1.tar.gz +088ebbcd8cb4242452831bee5de70639 gajim-0.12.3.tar.gz From cchance at fedoraproject.org Wed Jul 22 04:07:51 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:07:51 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel Makefile,1.2,1.3 Message-ID: <20090722040751.2360F11C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30899 Modified Files: Makefile Log Message: Revert Makefile Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- Makefile 20 Jul 2009 05:39:40 -0000 1.2 +++ Makefile 22 Jul 2009 04:07:50 -0000 1.3 @@ -1,7 +1,7 @@ # Makefile for source rpm: ibus-table-cangjie # $Id$ NAME := ibus-table-cangjie -SPECFILE = ibus-table-cangjie.spec +SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done From cchance at fedoraproject.org Wed Jul 22 04:17:11 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:17:11 +0000 (UTC) Subject: rpms/ibus-table-yong/devel Makefile,1.2,1.3 Message-ID: <20090722041711.3C01511C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1816 Modified Files: Makefile Log Message: reverted Makefile Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- Makefile 22 Jul 2009 00:43:02 -0000 1.2 +++ Makefile 22 Jul 2009 04:16:40 -0000 1.3 @@ -1,7 +1,7 @@ # Makefile for source rpm: ibus-table-yong # $Id$ -NAME := ibus-table-translit -SPECFILE = ibus-table-translit.spec +NAME := ibus-table-yong +SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done From cchance at fedoraproject.org Wed Jul 22 04:20:05 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:20:05 +0000 (UTC) Subject: rpms/ibus-table-yong/devel ibus-table-yong.spec,1.4,1.5 Message-ID: <20090722042005.B681511C049E@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3011 Modified Files: ibus-table-yong.spec Log Message: - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. - Changed autogen.sh into configure. Index: ibus-table-yong.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/ibus-table-yong.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ibus-table-yong.spec 17 Jul 2009 07:01:36 -0000 1.4 +++ ibus-table-yong.spec 22 Jul 2009 04:19:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: ibus-table-yong Version: 1.2.0.20090717 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Yong input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -13,7 +13,6 @@ BuildArch: noarch Requires: ibus >= 1.2, ibus-table >= 1.2 Requires(post): ibus >= 1.2, ibus-table >= 1.2 BuildRequires: ibus >= 1.2, ibus-table >= 1.2 -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Yong input methods for Table engine of IBus platform. @@ -23,7 +22,7 @@ The package contains Yong input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -./autogen.sh --prefix=%{_prefix} +%configure --prefix=%{_prefix} %__make %{?_smp_mflags} %install @@ -42,13 +41,15 @@ cd %{_datadir}/ibus-table/tables/ %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%dir %{_datadir}/ibus-table -%dir %{_datadir}/ibus-table/icons -%dir %{_datadir}/ibus-table/tables %{_datadir}/ibus-table/tables/yong_ibus.db %{_datadir}/ibus-table/icons/yong.png %changelog +* Wed Jul 22 2009 Caius 'kaio' Chance - 1.1.0.20090717-2.fc12 +- Removed unneccessary BuildRequires. +- Removed unneccessary owned directories. +- Changed autogen.sh into configure. + * Fri Jul 17 2009 Caius 'kaio' Chance - 1.1.0.20090717-1.fc12 - Rebuilt with IBus 1.2. From cchance at fedoraproject.org Wed Jul 22 04:21:53 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:21:53 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel ibus-table-wubi.spec,1.9,1.10 Message-ID: <20090722042153.EEFEB11C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3703 Modified Files: ibus-table-wubi.spec Log Message: - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. - Changed autogen.sh into configure. Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ibus-table-wubi.spec 15 Jul 2009 07:20:25 -0000 1.9 +++ ibus-table-wubi.spec 22 Jul 2009 04:21:23 -0000 1.10 @@ -1,6 +1,6 @@ Name: ibus-table-wubi Version: 1.2.0.20090715 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wubi input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -13,7 +13,6 @@ BuildArch: noarch Requires: ibus >= 1.2, ibus-table >= 1.2 Requires(post): ibus >= 1.2, ibus-table >= 1.2 BuildRequires: ibus >= 1.2, ibus-table >= 1.2 -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Wubi input methods for Table engine of IBus platform. @@ -23,7 +22,7 @@ The package contains Wubi input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb -o" -./autogen.sh --prefix=%{_prefix} --enable-wubi86 +%configure --prefix=%{_prefix} --enable-wubi86 %__make %{?_smp_mflags} %install @@ -40,13 +39,15 @@ cd %{_datadir}/ibus-table/tables/ %files %defattr(-,root,root,-) %doc AUTHORS COPYING README -%dir %{_datadir}/ibus-table -%dir %{_datadir}/ibus-table/tables -%dir %{_datadir}/ibus-table/icons %{_datadir}/ibus-table/tables/wubi86.db %{_datadir}/ibus-table/icons/wubi86.svg %changelog +* Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090715-2.fc12 +- Removed unneccessary BuildRequires. +- Removed unneccessary owned directories. +- Changed autogen.sh into configure. + * Wed Jul 15 2009 Caius 'kaio' Chance - 1.2.0.20090715-1.fc12 - Rebuilt with IBus version 1.2. From cchance at fedoraproject.org Wed Jul 22 04:27:43 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:27:43 +0000 (UTC) Subject: rpms/ibus-table-erbi/devel ibus-table-erbi.spec,1.10,1.11 Message-ID: <20090722042743.102AB11C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-erbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6882 Modified Files: ibus-table-erbi.spec Log Message: - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. - Changed autogen.sh into configure. Index: ibus-table-erbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/ibus-table-erbi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ibus-table-erbi.spec 17 Jul 2009 06:26:41 -0000 1.10 +++ ibus-table-erbi.spec 22 Jul 2009 04:27:42 -0000 1.11 @@ -1,6 +1,6 @@ Name: ibus-table-erbi Version: 1.2.0.20090717 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Erbi input methods for ibus-table License: GPLv2+ Group: System Environment/Libraries @@ -13,7 +13,6 @@ BuildArch: noarch Requires: ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 Requires(post): ibus-table >= 1.1.0.20090610, ibus-table >= 1.1.0.20090610 BuildRequires: ibus >= 1.2.0.20090617, ibus-table >= 1.1.0.20090610 -BuildRequires: gettext-devel >= 0.17, automake >= 1.10.1 %description The package contains Erbi input methods for Table engine of IBus platform. @@ -23,7 +22,7 @@ The package contains Erbi input methods %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb --no-create-index" -./autogen.sh --prefix=%{_prefix} +%configure --prefix=%{_prefix} %__make %{?_smp_mflags} %install @@ -40,13 +39,15 @@ cd %{_datadir}/ibus-table/tables/ %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%dir %{_datadir}/ibus-table -%dir %{_datadir}/ibus-table/tables -%dir %{_datadir}/ibus-table/icons %{_datadir}/ibus-table/tables/erbi_qs.db %{_datadir}/ibus-table/icons/erbi-qs.svg %changelog +* Wed Jul 22 2009 Caius 'kaio' Chance - 1.1.0.20090717-2.fc12 +- Removed unneccessary BuildRequires. +- Removed unneccessary owned directories. +- Changed autogen.sh into configure. + * Fri Jul 17 2009 Caius Chance - 1.1.0.20090717-1.fc12 - Rebuilt with IBus 1.2. From rishi at fedoraproject.org Wed Jul 22 04:29:02 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Wed, 22 Jul 2009 04:29:02 +0000 (UTC) Subject: rpms/gajim/devel .cvsignore, 1.14, 1.15 gajim.spec, 1.32, 1.33 sources, 1.14, 1.15 Message-ID: <20090722042902.788C711C0099@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/gajim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7522 Modified Files: .cvsignore gajim.spec sources Log Message: * Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 - Version bump to 0.12.3. (Red Hat Bugzilla #510803) * Better keepalive / ping behaviour. * Fixed custom port handling. * Fixed PEP discovery. * Fixed PLAIN authentication (in particular with Google Talk). * Fixed SSL with some servers. * Handle XFCE notification-daemon. * Improve Kerberos support. * NetworkManager 0.7 support. * Restore old behaviour of click on systray: left click to open events. * Totem support for played music. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gajim/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 23 Dec 2008 20:02:26 -0000 1.14 +++ .cvsignore 22 Jul 2009 04:29:02 -0000 1.15 @@ -1 +1 @@ -gajim-0.12.1.tar.gz +gajim-0.12.3.tar.gz Index: gajim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gajim/devel/gajim.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gajim.spec 2 May 2009 11:53:16 -0000 1.32 +++ gajim.spec 22 Jul 2009 04:29:02 -0000 1.33 @@ -2,9 +2,9 @@ Summary: Jabber client written in PyGTK Name: gajim -Version: 0.12.1 -Release: 3%{?dist} -License: GPLv2 +Version: 0.12.3 +Release: 1%{?dist} +License: GPLv3 Group: Applications/Internet URL: http://gajim.org/ Source0: http://gajim.org/downloads/%{name}-%{version}.tar.gz @@ -22,10 +22,13 @@ Requires: gnome-python2-gnome Requires: gnome-python2-bonobo Requires: gnome-python2-canvas +Requires: gnupg Requires: notify-python Requires: pygtk2-libglade Requires: pyOpenSSL +Requires: python-crypto Requires: python-docutils +Requires: python-GnuPGInterface Requires: python-kerberos Requires: python-sexy @@ -46,10 +49,6 @@ Gajim does not require GNOME to run, eve %prep %setup -q -# Suppress error. -sed --in-place --expression '1d' ./src/gajim.py -sed --in-place --expression '1d' ./src/gajim-remote.py - %build %configure --docdir=%{_docdir}/%{name}-%{version} \ --libdir=%{python_sitearch} \ @@ -65,9 +64,6 @@ make install INSTALL="%{__install} -p" D rm -rf $RPM_BUILD_ROOT%{python_sitearch}/%{name}/*.la -# Suppress rpmlint error. -chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/src/history_manager.py - desktop-file-install --vendor fedora --delete-original \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --remove-category=Application \ @@ -85,9 +81,11 @@ rm -rf %{buildroot} %doc COPYING %doc README.html %doc THANKS +%doc THANKS.artists %doc %{_mandir}/man1/%{name}.1* %doc %{_mandir}/man1/%{name}-remote.1* %{_bindir}/%{name} +%{_bindir}/%{name}-history-manager %{_bindir}/%{name}-remote %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/pixmaps/%{name}.png @@ -103,6 +101,24 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}/trayicon.so %changelog +* Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 +- Version bump to 0.12.3. (Red Hat Bugzilla #510803) + * Better keepalive / ping behaviour. + * Fixed custom port handling. + * Fixed PEP discovery. + * Fixed PLAIN authentication (in particular with Google Talk). + * Fixed SSL with some servers. + * Handle XFCE notification-daemon. + * Improve Kerberos support. + * NetworkManager 0.7 support. + * Restore old behaviour of click on systray: left click to open events. + * Totem support for played music. + +* Tue Jul 14 2009 Debarshi Ray - 0.12.1-2 +- Replaced 'License: GPLv2' with 'License: GPLv3'. +- Added 'Requires: gnupg python-crypto python-GnuPGInterface'. (Red Hat + Bugzilla #510804) + * Sat May 02 2009 Debarshi Ray - 0.12.1-3 - Added 'Requires: gnome-python2-bonobo'. (Red Hat Bugzilla #470181) @@ -111,11 +127,22 @@ rm -rf %{buildroot} * Tue Dec 23 2008 Debarshi Ray - 0.12.1-1 - Version bump to 0.12.1. + * Fixed click on notifications when text string is empty. + * Fixed file transfer. + * Improve systray popup menu. + * Translation updates: de. - /usr/share/gajim/src/gajim-{remote}.py need not contain shebangs nor have the executable bits. * Thu Dec 18 2008 Debarshi Ray - 0.12-1 - Version bump to 0.12. + * Better auto-away support. + * Better sessions support. + * Fixed Banshee support. + * Fixed end to end encryption autonegation. + * Fixed GSSAPI authentication. + * Fixed text rendering in notifications. + * Quodlibet support. - Added 'Requires: notify-python python-kerberos'. * Sun Nov 30 2008 Debarshi Ray - 0.12-0.1.beta1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gajim/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 23 Dec 2008 20:02:26 -0000 1.14 +++ sources 22 Jul 2009 04:29:02 -0000 1.15 @@ -1 +1 @@ -195a7973d3fbfb538e2ee74156aa6e9e gajim-0.12.1.tar.gz +088ebbcd8cb4242452831bee5de70639 gajim-0.12.3.tar.gz From cchance at fedoraproject.org Wed Jul 22 04:31:20 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:31:20 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.11,1.12 Message-ID: <20090722043120.2501F11C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8098 Modified Files: ibus-table-cangjie.spec Log Message: - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. - Changed autogen.sh into configure. Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ibus-table-cangjie.spec 20 Jul 2009 05:39:40 -0000 1.11 +++ ibus-table-cangjie.spec 22 Jul 2009 04:30:49 -0000 1.12 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.2.0.20090717 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -14,7 +14,6 @@ BuildArch: noarch Requires: ibus >= 1.2, ibus-table >= 1.2 Requires(post): ibus >= 1.2, ibus-table >= 1.2 BuildRequires: ibus >= 1.2, ibus-table >= 1.2 -BuildRequires: gettext-devel >= 0.17, automake >= 1.10 %description The package contains Cang Jie input methods for Table engine of IBus platform. @@ -26,7 +25,7 @@ The package contains Cang Jie input meth %build export IBUS_TABLE_CREATEDB="%{_bindir}/ibus-table-createdb -o" -./autogen.sh \ +%configure \ --prefix=%{_prefix} \ --enable-cangjie5 \ --enable-cangjie3 \ @@ -47,15 +46,17 @@ cd %{_datadir}/ibus-table/tables/ %files %defattr(-,root,root,-) %doc AUTHORS icons/COPYING.icons tables/COPYING.tables README -%dir %{_datadir}/ibus-table -%dir %{_datadir}/ibus-table/icons -%dir %{_datadir}/ibus-table/tables %verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie3.db %verify(not md5 size mtime) %{_datadir}/ibus-table/tables/cangjie5.db %{_datadir}/ibus-table/icons/cangjie3.svg %{_datadir}/ibus-table/icons/cangjie5.svg %changelog +* Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090717-4.fc12 +- Removed unneccessary BuildRequires. +- Removed unneccessary owned directories. +- Changed autogen.sh into configure. + * Mon Jul 20 2009 Caius 'kaio' Chance - 1.2.0.20090717-3.fc12 - Rebuilt. From mtruch at fedoraproject.org Wed Jul 22 04:48:13 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Wed, 22 Jul 2009 04:48:13 +0000 (UTC) Subject: rpms/kst/devel kst-except.diff,NONE,1.1 kst.spec,1.34,1.35 Message-ID: <20090722044813.588E111C0099@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12795 Modified Files: kst.spec Added Files: kst-except.diff Log Message: Upstream 1.8.0 kst-except.diff: ***** Error reading new file: [Errno 2] No such file or directory: 'kst-except.diff' Index: kst.spec =================================================================== RCS file: /cvs/extras/rpms/kst/devel/kst.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- kst.spec 12 Mar 2009 17:33:25 -0000 1.34 +++ kst.spec 22 Jul 2009 04:47:42 -0000 1.35 @@ -1,6 +1,6 @@ Name: kst -Version: 1.7.0 -Release: 6%{?dist} +Version: 1.8.0 +Release: 1%{?dist} Summary: A data viewing program for KDE Group: Applications/Engineering @@ -8,7 +8,8 @@ License: GPLv3 URL: http://kst.kde.org/ Source0: ftp://ftp.kde.org/pub/kde/stable/apps/KDE3.x/scientific/kst-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: saveperiod.diff + +Patch0: kst-except.diff Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -18,6 +19,7 @@ BuildRequires: gsl-devel BuildRequires: readline-devel ncurses-devel BuildRequires: kdelibs3-devel BuildRequires: cfitsio-devel netcdf-devel +BuildRequires: getdata-devel muParser-devel BuildRequires: desktop-file-utils BuildRequires: autoconf automake @@ -79,6 +81,14 @@ Requires: cfitsio = %(pkg-config --mod A plugin allowing kst to open and read data and images contained within fits files. This includes healpix encoded fits files, and lfiio data. +%package getdata +Summary: getdata datasource plugin for kst +Group: Applications/Engineering +Requires: %{name} = %{version}-%{release} + +%description getdata +A plugin allowing kst to open and read data in getdata (dirfile) format. + %prep %setup -q %patch0 -p1 @@ -104,7 +114,7 @@ make DESTDIR=%{buildroot} SUID_ROOT="" i #find %{buildroot} -wholename '*.la' | xargs rm -f # Delete wmap and scuba2 datasources; it's a packaging bug at the -# kst upstream end that they are installed in 1.6.0 (they are unfinished?). +# kst upstream end that they are installed in 1.8.0 (they are unfinished?). rm -f %{buildroot}%{_libdir}/kde3/kstdata_scuba.la \ %{buildroot}%{_libdir}/kde3/kstdata_scuba.so \ %{buildroot}%{_libdir}/kde3/kstdata_wmap.la \ @@ -144,8 +154,8 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %files -f %{name}.lang -%defattr(-,root,root) -%doc ChangeLog INSTALL AUTHORS README COPYING kst/RELEASE.NOTES kst/NEWS +%defattr(-,root,root,-) +%doc INSTALL AUTHORS README COPYING kst/RELEASE.NOTES kst/NEWS #binaries %{_bindir}/kst @@ -207,7 +217,7 @@ rm -rf %{buildroot} %{_mandir}/man1/kst.1.gz %files devel -%defattr(-,root,root) +%defattr(-,root,root,-) %{_includedir}/kstdatasource.h %{_includedir}/kstobject.h %{_includedir}/kst_export.h @@ -220,12 +230,12 @@ rm -rf %{buildroot} %{_libdir}/lib*.so %files docs -%defattr(-,root,root) +%defattr(-,root,root,-) %{_datadir}/doc/HTML/*/kst %{_datadir}/apps/kst/tutorial %files fits -%defattr(-,root,root) +%defattr(-,root,root,-) %{_libdir}/kde3/kstdata_fitsimage.* %{_libdir}/kde3/kstdata_healpix.* %{_libdir}/kde3/kstdata_lfiio.* @@ -234,11 +244,23 @@ rm -rf %{buildroot} %{_datadir}/services/kst/kstdata_lfiio.desktop %files netcdf -%defattr(-,root,root) +%defattr(-,root,root,-) %{_libdir}/kde3/kstdata_netcdf.* %{_datadir}/services/kst/kstdata_netcdf.desktop +%files getdata +%defattr(-,root,root,-) +%{_libdir}/kde3/kstdata_dirfile.* +%{_datadir}/services/kst/kstdata_dirfile.desktop + %changelog +* Sat Jul 18 2009 Matthew Truch - 1.8.0-1 +- Upstream kst 1.8.0 +- Drop patch for saveperiod as it's included in upstream 1.8.0 +- Separate out getdata support to subpackage (requires getdata) +- Include muParser support for general non-linear fit plugin. +- Bump for mass rebuild. + * Tue Mar 10 2009 Matthew Truch - 1.7.0-6 - Make cfitsio explicit version check work. From cchance at fedoraproject.org Wed Jul 22 04:55:39 2009 From: cchance at fedoraproject.org (Caius Chance) Date: Wed, 22 Jul 2009 04:55:39 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.12,1.13 Message-ID: <20090722045539.89F1F11C0099@cvs1.fedora.phx.redhat.com> Author: cchance Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15451 Modified Files: ibus-table-cangjie.spec Log Message: Rebuilt. Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ibus-table-cangjie.spec 22 Jul 2009 04:30:49 -0000 1.12 +++ ibus-table-cangjie.spec 22 Jul 2009 04:55:09 -0000 1.13 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.2.0.20090717 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -28,7 +28,7 @@ export IBUS_TABLE_CREATEDB="%{_bindir}/i %configure \ --prefix=%{_prefix} \ --enable-cangjie5 \ - --enable-cangjie3 \ + --enable-cangjie3 %__make %{?_smp_mflags} %install @@ -52,6 +52,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/cangjie5.svg %changelog +* Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090717-5.fc12 +- Rebuilt. + * Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090717-4.fc12 - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. From bskeggs at fedoraproject.org Wed Jul 22 05:06:10 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Wed, 22 Jul 2009 05:06:10 +0000 (UTC) Subject: rpms/kernel/F-11 drm-nouveau.patch, 1.58, 1.59 kernel.spec, 1.1675, 1.1676 Message-ID: <20090722050610.2682311C0099@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18515 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Wed Jul 22 2009 Ben Skeggs - drm-nouveau.patch: Fix DPMS off for DAC outputs, NV4x PFIFO typo drm-nouveau.patch: drivers/gpu/drm/Kconfig | 15 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/drm_fence.c | 2 drivers/gpu/drm/drm_gem.c | 50 drivers/gpu/drm/nouveau/Makefile | 24 drivers/gpu/drm/nouveau/nouveau_backlight.c | 152 drivers/gpu/drm/nouveau/nouveau_bios.c | 4852 +++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 223 drivers/gpu/drm/nouveau/nouveau_bo.c | 415 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 51 drivers/gpu/drm/nouveau/nouveau_crtc.h | 74 drivers/gpu/drm/nouveau/nouveau_display.c | 114 drivers/gpu/drm/nouveau/nouveau_dma.c | 209 drivers/gpu/drm/nouveau/nouveau_dma.h | 107 drivers/gpu/drm/nouveau/nouveau_drv.c | 194 drivers/gpu/drm/nouveau/nouveau_drv.h | 836 drivers/gpu/drm/nouveau/nouveau_encoder.h | 46 drivers/gpu/drm/nouveau/nouveau_fb.h | 44 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 946 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 48 drivers/gpu/drm/nouveau/nouveau_fence.c | 126 drivers/gpu/drm/nouveau/nouveau_fifo.c | 692 drivers/gpu/drm/nouveau/nouveau_gem.c | 729 drivers/gpu/drm/nouveau/nouveau_hw.c | 1019 + drivers/gpu/drm/nouveau/nouveau_hw.h | 530 drivers/gpu/drm/nouveau/nouveau_i2c.c | 222 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 592 drivers/gpu/drm/nouveau/nouveau_mem.c | 1073 + drivers/gpu/drm/nouveau/nouveau_notifier.c | 176 drivers/gpu/drm/nouveau/nouveau_object.c | 1236 + drivers/gpu/drm/nouveau/nouveau_reg.h | 854 drivers/gpu/drm/nouveau/nouveau_sgdma.c | 340 drivers/gpu/drm/nouveau/nouveau_state.c | 1043 + drivers/gpu/drm/nouveau/nouveau_swmthd.c | 190 drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fifo.c | 144 drivers/gpu/drm/nouveau/nv04_graph.c | 521 drivers/gpu/drm/nouveau/nv04_instmem.c | 190 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_timer.c | 50 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 175 drivers/gpu/drm/nouveau/nv10_graph.c | 912 + drivers/gpu/drm/nouveau/nv20_graph.c | 907 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 216 drivers/gpu/drm/nouveau/nv40_graph.c | 2179 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 491 drivers/gpu/drm/nouveau/nv50_crtc.c | 810 drivers/gpu/drm/nouveau/nv50_cursor.c | 144 drivers/gpu/drm/nouveau/nv50_dac.c | 288 drivers/gpu/drm/nouveau/nv50_display.c | 637 drivers/gpu/drm/nouveau/nv50_display.h | 44 drivers/gpu/drm/nouveau/nv50_display_commands.h | 195 drivers/gpu/drm/nouveau/nv50_fbcon.c | 222 drivers/gpu/drm/nouveau/nv50_fifo.c | 343 drivers/gpu/drm/nouveau/nv50_graph.c | 336 drivers/gpu/drm/nouveau/nv50_grctx.h |20935 ++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 382 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 303 drivers/gpu/drm/nouveau/nvreg.h | 495 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 299 71 files changed, 49410 insertions(+), 42 deletions(-) Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/drm-nouveau.patch,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- drm-nouveau.patch 29 Jun 2009 23:43:07 -0000 1.58 +++ drm-nouveau.patch 22 Jul 2009 05:06:09 -0000 1.59 @@ -21413,7 +21413,7 @@ index 0000000..530bbee +} diff --git a/drivers/gpu/drm/nouveau/nv40_fifo.c b/drivers/gpu/drm/nouveau/nv40_fifo.c new file mode 100644 -index 0000000..2f44daa +index 0000000..742ef4c --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv40_fifo.c @@ -0,0 +1,216 @@ @@ -21560,7 +21560,7 @@ index 0000000..2f44daa + + /* Set channel active, and in DMA mode */ + nv_wr32(NV03_PFIFO_CACHE1_PUSH1, -+ NV03_PFIFO_CACHE1_PUSH1_DMA | chan->id); ++ NV40_PFIFO_CACHE1_PUSH1_DMA | chan->id); + + /* Reset DMA_CTL_AT_INFO to INVALID */ + tmp = nv_rd32(NV04_PFIFO_CACHE1_DMA_CTL) & ~(1<<31); @@ -25327,10 +25327,10 @@ index 0000000..763cffe + diff --git a/drivers/gpu/drm/nouveau/nv50_dac.c b/drivers/gpu/drm/nouveau/nv50_dac.c new file mode 100644 -index 0000000..e0569d0 +index 0000000..6140391 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_dac.c -@@ -0,0 +1,287 @@ +@@ -0,0 +1,288 @@ +/* + * Copyright (C) 2008 Maarten Maathuis. + * All Rights Reserved. @@ -25431,7 +25431,8 @@ index 0000000..e0569d0 + load_state = nv_rd32(NV50_PDISPLAY_DAC_REGS_LOAD_CTRL(or)); + + nv_wr32(NV50_PDISPLAY_DAC_REGS_LOAD_CTRL(or), 0); -+ nv_wr32(NV50_PDISPLAY_DAC_REGS_DPMS_CTRL(or), dpms_state); ++ nv_wr32(NV50_PDISPLAY_DAC_REGS_DPMS_CTRL(or), dpms_state | ++ NV50_PDISPLAY_DAC_REGS_DPMS_CTRL_PENDING); + + if ((load_state & NV50_PDISPLAY_DAC_REGS_LOAD_CTRL_PRESENT) == + NV50_PDISPLAY_DAC_REGS_LOAD_CTRL_PRESENT) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1675 retrieving revision 1.1676 diff -u -p -r1.1675 -r1.1676 --- kernel.spec 8 Jul 2009 00:28:17 -0000 1.1675 +++ kernel.spec 22 Jul 2009 05:06:09 -0000 1.1676 @@ -2096,6 +2096,9 @@ fi # and build. %changelog +* Wed Jul 22 2009 Ben Skeggs +- drm-nouveau.patch: Fix DPMS off for DAC outputs, NV4x PFIFO typo + * Tue Jul 07 2009 Chuck Ebbert 2.6.29.6-213 - Drop the correct patch to fix bug #498858 From zaitcev at fedoraproject.org Wed Jul 22 05:19:13 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 05:19:13 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch, 1.1.2.3, 1.1.2.4 cld.spec, 1.4.2.3, 1.4.2.4 Message-ID: <20090722051913.71AA811C0099@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22390 Modified Files: Tag: private-zaitcev-bz512560 cld-test.patch cld.spec Log Message: Test 4 cld-test.patch: lib/cldc.c | 38 +++++++++++++++++---- server/cld.h | 1 server/cldb.c | 15 +++----- server/msg.c | 60 +++++++++++++++++++++++++++------- server/server.c | 86 +++++++++++++++++++++++++++++++++++-------------- server/session.c | 21 ++++++----- server/util.c | 17 +++++---- test/load-file-event.c | 2 - test/start-daemon | 2 - 9 files changed, 171 insertions(+), 71 deletions(-) Index: cld-test.patch =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/Attic/cld-test.patch,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -p -r1.1.2.3 -r1.1.2.4 --- cld-test.patch 22 Jul 2009 03:33:14 -0000 1.1.2.3 +++ cld-test.patch 22 Jul 2009 05:19:13 -0000 1.1.2.4 @@ -1,5 +1,5 @@ diff --git a/lib/cldc.c b/lib/cldc.c -index ab3a2a4..f0dc086 100644 +index ab3a2a4..9ed26fd 100644 --- a/lib/cldc.c +++ b/lib/cldc.c @@ -133,12 +133,14 @@ static int cldc_rx_generic(struct cldc_session *sess, @@ -30,24 +30,24 @@ index ab3a2a4..f0dc086 100644 - pkt->user); + if (sess->verbose) { + if (msg->op == cmo_get) { -+ struct cld_msg_get_resp *resp; -+ resp = (struct cld_msg_get_resp *) msg; ++ struct cld_msg_get_resp *dp; ++ dp = (struct cld_msg_get_resp *) msg; + sess->act_log("receive pkt: len %u, op cmo_get" + ", seqid %llu, user %s, size %u\n", + (unsigned int) pkt_len, + (unsigned long long) GUINT64_FROM_LE(pkt->seqid), + pkt->user, -+ GUINT32_FROM_LE(resp->size)); ++ GUINT32_FROM_LE(dp->size)); + } else if (msg->op == cmo_data_c) { -+ struct cld_msg_data *resp; -+ resp = (struct cld_msg_data *) msg; ++ struct cld_msg_data *dp; ++ dp = (struct cld_msg_data *) msg; + sess->act_log("receive pkt: len %u, op cmo_data_c" + ", seqid %llu, user %s, seg %u, len %u\n", + (unsigned int) pkt_len, + (unsigned long long) GUINT64_FROM_LE(pkt->seqid), + pkt->user, -+ GUINT32_FROM_LE(resp->seg), -+ GUINT32_FROM_LE(resp->seg_len)); ++ GUINT32_FROM_LE(dp->seg), ++ GUINT32_FROM_LE(dp->seg_len)); + } else { + sess->act_log("receive pkt: len %u, " + "op %s, seqid %llu, user %s\n", @@ -106,11 +106,36 @@ index cb73523..cef9092 100644 } void cldb_fini(struct cldb *cldb) +@@ -655,8 +652,10 @@ struct raw_inode *cldb_inode_mem(const char *name, size_t name_len, + ino = mem; + ino->inum = cldino_to_le(new_inum); + ino->ino_len = GUINT32_TO_LE(name_len); ++#if 0 + ino->time_create = + ino->time_modify = GUINT64_TO_LE(current_time.tv_sec); ++#endif + ino->flags = GUINT32_TO_LE(flags); + + memcpy(mem + sizeof(*ino), name, name_len); +@@ -677,12 +676,10 @@ int cldb_data_get(DB_TXN *txn, cldino_t inum, + *data_out = NULL; + + memset(&key, 0, sizeof(key)); +- memset(&val, 0, sizeof(val)); +- +- /* key: inode number */ + key.data = &inum_le; + key.size = sizeof(inum_le); + ++ memset(&val, 0, sizeof(val)); + val.flags = DB_DBT_MALLOC; + + rc = db_data->get(db_data, txn, &key, &val, rmw ? DB_RMW : 0); diff --git a/server/msg.c b/server/msg.c -index 2877348..5ace380 100644 +index 2877348..bb46fca 100644 --- a/server/msg.c +++ b/server/msg.c -@@ -31,6 +31,21 @@ enum { +@@ -31,6 +31,23 @@ enum { CLD_MAX_UDP_SEG = 1024, }; @@ -120,19 +145,21 @@ index 2877348..5ace380 100644 + char *p; + uint64_t n; + int l; ++ unsigned m; + + l = GUINT32_FROM_LE(inode->ino_len); + p = strndup((char *)inode + sizeof(struct raw_inode), l); + n = GUINT64_FROM_LE(inode->inum); -+ cldlog(LOG_INFO, "%s>inode.%s 0x%016llx %s[%d]\n", tag, act, -+ (long long)n, p, l); ++ m = GUINT32_FROM_LE(inode->size); ++ cldlog(LOG_INFO, "%s>inode.%s 0x%016llx %s[%d] %u\n", tag, act, ++ (long long)n, p, l, m); + free(p); +} + struct pathname_info { const char *dir; size_t dir_len; -@@ -168,7 +183,8 @@ static bool dirdata_append(void **data, size_t *data_len, +@@ -168,7 +185,8 @@ static bool dirdata_append(void **data, size_t *data_len, mem = realloc(*data, new_len); if (!mem) { @@ -142,7 +169,7 @@ index 2877348..5ace380 100644 return false; } -@@ -236,14 +252,14 @@ static int inode_notify(DB_TXN *txn, cldino_t inum, bool deleted) +@@ -236,14 +254,14 @@ static int inode_notify(DB_TXN *txn, cldino_t inum, bool deleted) sess = g_hash_table_lookup(cld_srv.sessions, h.sid); if (!sess) { @@ -160,7 +187,7 @@ index 2877348..5ace380 100644 SIDARG(sess->sid), (long long) inum); continue; } -@@ -360,7 +376,7 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) +@@ -360,7 +378,7 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) sess = g_hash_table_lookup(cld_srv.sessions, lock.sid); if (!sess) { @@ -169,7 +196,7 @@ index 2877348..5ace380 100644 break; } -@@ -370,8 +386,8 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) +@@ -370,8 +388,8 @@ int inode_lock_rescan(DB_TXN *txn, cldino_t inum) if (!sess->sock) { /* Freshly recovered session */ if (debugging) @@ -180,7 +207,7 @@ index 2877348..5ace380 100644 SIDARG(sess->sid), (long long) inum); continue; } -@@ -592,6 +608,19 @@ void msg_open(struct msg_params *mp) +@@ -592,6 +610,19 @@ void msg_open(struct msg_params *mp) /* read inode from db, if it exists */ rc = cldb_inode_get_byname(txn, name, name_len, &inode, false, DB_RMW); @@ -200,7 +227,7 @@ index 2877348..5ace380 100644 if (rc && (rc != DB_NOTFOUND)) { resp_rc = CLE_DB_ERR; goto err_out; -@@ -621,10 +650,11 @@ void msg_open(struct msg_params *mp) +@@ -621,10 +652,11 @@ void msg_open(struct msg_params *mp) /* create new in-memory inode */ inode = cldb_inode_new(txn, name, name_len, 0); if (!inode) { @@ -213,7 +240,7 @@ index 2877348..5ace380 100644 if (do_dir) inode->flags = GUINT32_TO_LE( -@@ -666,6 +696,7 @@ void msg_open(struct msg_params *mp) +@@ -666,6 +698,7 @@ void msg_open(struct msg_params *mp) parent->size = GUINT32_TO_LE(parent_len); @@ -221,7 +248,7 @@ index 2877348..5ace380 100644 rc = inode_touch(txn, parent); if (rc) { resp_rc = CLE_DB_ERR; -@@ -678,7 +709,7 @@ void msg_open(struct msg_params *mp) +@@ -678,7 +711,7 @@ void msg_open(struct msg_params *mp) /* alloc & init new handle; updates session's next_fh */ h = cldb_handle_new(mp->sess, inum, msg_mode, msg_events); if (!h) { @@ -230,7 +257,7 @@ index 2877348..5ace380 100644 resp_rc = CLE_OOM; goto err_out; } -@@ -694,6 +725,7 @@ void msg_open(struct msg_params *mp) +@@ -694,6 +727,7 @@ void msg_open(struct msg_params *mp) if (create) { /* write inode */ @@ -238,7 +265,7 @@ index 2877348..5ace380 100644 rc = inode_touch(txn, inode); if (rc) { -@@ -706,7 +738,7 @@ void msg_open(struct msg_params *mp) +@@ -706,7 +740,7 @@ void msg_open(struct msg_params *mp) raw_sess = session_new_raw(mp->sess); if (!raw_sess) { @@ -247,7 +274,7 @@ index 2877348..5ace380 100644 resp_rc = CLE_OOM; goto err_out; } -@@ -913,6 +945,7 @@ static void try_commit_data(struct msg_params *mp, +@@ -913,6 +947,7 @@ static void try_commit_data(struct msg_params *mp, inode->size = GUINT32_TO_LE(data_size); /* update inode */ @@ -255,7 +282,7 @@ index 2877348..5ace380 100644 rc = inode_touch(txn, inode); if (rc) { resp_rc = CLE_DB_ERR; -@@ -1221,6 +1254,7 @@ void msg_del(struct msg_params *mp) +@@ -1221,6 +1256,7 @@ void msg_del(struct msg_params *mp) resp_rc = CLE_DB_ERR; goto err_out; } @@ -263,7 +290,7 @@ index 2877348..5ace380 100644 /* read parent inode data */ rc = cldb_data_get(txn, cldino_from_le(parent->inum), -@@ -1239,6 +1273,7 @@ void msg_del(struct msg_params *mp) +@@ -1239,6 +1275,7 @@ void msg_del(struct msg_params *mp) resp_rc = CLE_DB_ERR; goto err_out; } @@ -271,7 +298,7 @@ index 2877348..5ace380 100644 /* prevent deletion of non-empty dirs */ if (GUINT32_FROM_LE(ino->flags) & CIFL_DIR) { -@@ -1311,7 +1346,7 @@ void msg_del(struct msg_params *mp) +@@ -1311,7 +1348,7 @@ void msg_del(struct msg_params *mp) /* remove record from inode's directory data */ if (!dirdata_delete(&parent_data, &parent_len, pinfo.base, pinfo.base_len)) { @@ -280,7 +307,7 @@ index 2877348..5ace380 100644 resp_rc = CLE_DB_ERR; goto err_out; } -@@ -1327,6 +1362,7 @@ void msg_del(struct msg_params *mp) +@@ -1327,6 +1364,7 @@ void msg_del(struct msg_params *mp) parent->size = GUINT32_TO_LE(parent_len); /* update parent dir inode */ @@ -289,7 +316,7 @@ index 2877348..5ace380 100644 if (rc) { resp_rc = CLE_DB_ERR; diff --git a/server/server.c b/server/server.c -index e4b027d..3540d4e 100644 +index e4b027d..fbad5c1 100644 --- a/server/server.c +++ b/server/server.c @@ -51,6 +51,8 @@ static struct argp_option options[] = { @@ -346,16 +373,41 @@ index e4b027d..3540d4e 100644 memcpy(buf + pkt_len - SHA_DIGEST_LENGTH, md, SHA_DIGEST_LENGTH); -@@ -278,7 +293,7 @@ static void udp_rx(struct server_socket *sock, +@@ -277,10 +292,29 @@ static void udp_rx(struct server_socket *sock, + mp.msg = msg; mp.msg_len = pkt_len - sizeof(*pkt); - if (debugging) +- if (debugging) - syslog(LOG_DEBUG, " msg op %s, seqid %llu", -+ cldlog(LOG_DEBUG, " msg op %s, seqid %llu\n", - opstr(msg->op), - (unsigned long long) GUINT64_FROM_LE(pkt->seqid)); +- opstr(msg->op), +- (unsigned long long) GUINT64_FROM_LE(pkt->seqid)); ++ if (debugging) { ++ if (msg->op == cmo_data_s) { ++ struct cld_msg_data *dp = (struct cld_msg_data *) msg; ++ cldlog(LOG_DEBUG, ++ " msg op %s, seqid %llu, seg %u, len %u\n", ++ opstr(msg->op), ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid), ++ GUINT32_FROM_LE(dp->seg), ++ GUINT32_FROM_LE(dp->seg_len)); ++ } else if (msg->op == cmo_put) { ++ struct cld_msg_put *dp = (struct cld_msg_put *) msg; ++ cldlog(LOG_DEBUG, ++ " msg op %s, seqid %llu, size %u\n", ++ opstr(msg->op), ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid), ++ dp->data_size); ++ } else { ++ cldlog(LOG_DEBUG, ++ " msg op %s, seqid %llu\n", ++ opstr(msg->op), ++ (unsigned long long) GUINT64_FROM_LE(pkt->seqid)); ++ } ++ } -@@ -295,7 +310,7 @@ static void udp_rx(struct server_socket *sock, + if (msg->op != cmo_new_sess) { + if (!sess) { +@@ -295,7 +329,7 @@ static void udp_rx(struct server_socket *sock, /* eliminate duplicates; do not return any response */ if (GUINT64_FROM_LE(pkt->seqid) != sess->next_seqid_in) { if (debugging) @@ -364,7 +416,7 @@ index e4b027d..3540d4e 100644 return; } -@@ -307,7 +322,7 @@ static void udp_rx(struct server_socket *sock, +@@ -307,7 +341,7 @@ static void udp_rx(struct server_socket *sock, /* eliminate duplicates; do not return any response */ if (GUINT64_FROM_LE(pkt->seqid) != sess->next_seqid_in) { if (debugging) @@ -373,7 +425,7 @@ index e4b027d..3540d4e 100644 return; } -@@ -334,8 +349,8 @@ err_out: +@@ -334,8 +368,8 @@ err_out: authsign(outpkt, alloc_len); if (debugging) @@ -384,7 +436,7 @@ index e4b027d..3540d4e 100644 SIDARG(outpkt->sid), opstr(resp->hdr.op), (unsigned long long) GUINT64_FROM_LE(outpkt->seqid), -@@ -384,7 +399,7 @@ static bool udp_srv_event(int fd, short events, void *userdata) +@@ -384,7 +418,7 @@ static bool udp_srv_event(int fd, short events, void *userdata) strcpy(cli.addr_host, host); if (debugging) @@ -393,7 +445,7 @@ index e4b027d..3540d4e 100644 host, (int) rrc); if (cld_srv.cldb.is_master && cld_srv.cldb.up) -@@ -429,7 +444,7 @@ static void cldb_checkpoint(struct timer *timer) +@@ -429,7 +463,7 @@ static void cldb_checkpoint(struct timer *timer) gettimeofday(¤t_time, NULL); if (debugging) @@ -402,7 +454,7 @@ index e4b027d..3540d4e 100644 /* flush logs to db, if log files >= 1MB */ rc = dbenv->txn_checkpoint(dbenv, 1024, 0, 0); -@@ -453,7 +468,7 @@ static int net_open(void) +@@ -453,7 +487,7 @@ static int net_open(void) rc = getaddrinfo(NULL, cld_srv.port, &hints, &res0); if (rc) { @@ -411,7 +463,7 @@ index e4b027d..3540d4e 100644 cld_srv.port, gai_strerror(rc)); rc = -EINVAL; goto err_addr; -@@ -533,7 +548,7 @@ err_addr: +@@ -533,7 +567,7 @@ err_addr: static void segv_signal(int signal) { @@ -420,7 +472,7 @@ index e4b027d..3540d4e 100644 exit(1); } -@@ -548,7 +563,7 @@ static void stats_signal(int signal) +@@ -548,7 +582,7 @@ static void stats_signal(int signal) } #define X(stat) \ @@ -429,7 +481,7 @@ index e4b027d..3540d4e 100644 static void stats_dump(void) { -@@ -572,6 +587,9 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) +@@ -572,6 +606,9 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) argp_usage(state); } break; @@ -439,7 +491,7 @@ index e4b027d..3540d4e 100644 case 'F': cld_srv.flags |= SFL_FOREGROUND; break; -@@ -624,9 +642,10 @@ int main (int argc, char *argv[]) +@@ -624,9 +661,10 @@ int main (int argc, char *argv[]) * open syslog, background outselves, write PID file ASAP */ @@ -452,7 +504,7 @@ index e4b027d..3540d4e 100644 syslogerr("daemon"); goto err_out; } -@@ -647,7 +666,7 @@ int main (int argc, char *argv[]) +@@ -647,7 +685,7 @@ int main (int argc, char *argv[]) if (cldb_init(&cld_srv.cldb, cld_srv.data_dir, NULL, DB_CREATE | DB_THREAD | DB_RECOVER, @@ -461,7 +513,7 @@ index e4b027d..3540d4e 100644 DB_CREATE | DB_THREAD, NULL)) exit(1); -@@ -675,7 +694,7 @@ int main (int argc, char *argv[]) +@@ -675,7 +713,7 @@ int main (int argc, char *argv[]) if (rc) goto err_out_pid; @@ -470,7 +522,7 @@ index e4b027d..3540d4e 100644 cld_srv.port, debugging); -@@ -742,7 +761,7 @@ int main (int argc, char *argv[]) +@@ -742,7 +780,7 @@ int main (int argc, char *argv[]) next_timeout = timers_run(); } @@ -479,7 +531,7 @@ index e4b027d..3540d4e 100644 if (cld_srv.cldb.up) cldb_down(&cld_srv.cldb); -@@ -777,12 +796,12 @@ static void ensure_root() +@@ -777,12 +815,12 @@ static void ensure_root() rc = cldb_inode_get_byname(txn, "/", sizeof("/")-1, &inode, false, 0); if (rc == 0) { if (debugging) @@ -494,7 +546,7 @@ index e4b027d..3540d4e 100644 goto err_; } -@@ -793,12 +812,12 @@ static void ensure_root() +@@ -793,12 +831,12 @@ static void ensure_root() rc = cldb_inode_put(txn, inode, 0); if (rc) { free(inode); @@ -683,7 +735,7 @@ index d23c501..5846052 100644 event_set(&run.udp_ev, run.udp->fd, EV_READ | EV_PERSIST, udp_event, &run); diff --git a/test/start-daemon b/test/start-daemon -index 6124ff4..4cb9fd7 100755 +index 6124ff4..010f7db 100755 --- a/test/start-daemon +++ b/test/start-daemon @@ -6,7 +6,7 @@ then @@ -691,7 +743,7 @@ index 6124ff4..4cb9fd7 100755 fi -../server/cld -P cld.pid -d "$PWD/data" -p 18181 -+../server/cld -P cld.pid -d "$PWD/data" -p 18181 -E ++../server/cld -P cld.pid -d "$PWD/data" -p 18181 -E -D 2 sleep 3 Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4.2.3 retrieving revision 1.4.2.4 diff -u -p -r1.4.2.3 -r1.4.2.4 --- cld.spec 22 Jul 2009 03:33:14 -0000 1.4.2.3 +++ cld.spec 22 Jul 2009 05:19:13 -0000 1.4.2.4 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962.bz512560.3%{?dist} +Release: 0.4.gc5b5f962.bz512560.4%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -103,7 +103,7 @@ fi %changelog * Tue Jul 21 2009 Pete Zaitcev -- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.3 +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.4 * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From phuang at fedoraproject.org Wed Jul 22 05:37:34 2009 From: phuang at fedoraproject.org (Huang Peng) Date: Wed, 22 Jul 2009 05:37:34 +0000 (UTC) Subject: rpms/ibus/devel .cvsignore, 1.34, 1.35 ibus.spec, 1.73, 1.74 sources, 1.39, 1.40 Message-ID: <20090722053734.5402711C0099@cvs1.fedora.phx.redhat.com> Author: phuang Update of /cvs/pkgs/rpms/ibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27477 Modified Files: .cvsignore ibus.spec sources Log Message: Update to 1.2.0.20090722 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 19 Jul 2009 05:19:01 -0000 1.34 +++ .cvsignore 22 Jul 2009 05:37:03 -0000 1.35 @@ -1 +1 @@ -ibus-1.2.0.20090719.tar.gz +ibus-1.2.0.20090722.tar.gz Index: ibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- ibus.spec 19 Jul 2009 05:19:02 -0000 1.73 +++ ibus.spec 22 Jul 2009 05:37:04 -0000 1.74 @@ -7,7 +7,7 @@ %define im_chooser_version 1.2.5 Name: ibus -Version: 1.2.0.20090719 +Version: 1.2.0.20090722 Release: 1%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPLv2+ @@ -228,8 +228,11 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Wed Jul 22 2009 Peng Huang - 1.2.0.20090722-1 +- Update to 1.2.0.20090722 + * Sun Jul 19 2009 Peng Huang - 1.2.0.20090719-1 -- Update to 1.2.0.200907179 +- Update to 1.2.0.20090719 * Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 - Update to 1.2.0.20090617 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 19 Jul 2009 05:19:02 -0000 1.39 +++ sources 22 Jul 2009 05:37:04 -0000 1.40 @@ -1 +1 @@ -66cfbbf03f7310c017863c3fdb2d988e ibus-1.2.0.20090719.tar.gz +e59f7ce50089d7d096e9f9ecf4c4e0b4 ibus-1.2.0.20090722.tar.gz From whot at fedoraproject.org Wed Jul 22 06:06:28 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 22 Jul 2009 06:06:28 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.53, 1.54 sources, 1.52, 1.53 xorg-x11-proto-devel.spec, 1.98, 1.99 Message-ID: <20090722060629.4593E11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2831 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Wed Jul 22 2009 Peter Hutterer 7.4-23 - xextproto 7.0.99.2 - inputproto 1.9.99.15 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- .cvsignore 21 Jul 2009 17:21:15 -0000 1.53 +++ .cvsignore 22 Jul 2009 06:05:56 -0000 1.54 @@ -25,7 +25,7 @@ xproxymanagementprotocol-1.0.2.tar.bz2 randrproto-1.2.99.3.tar.bz2 glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 -inputproto-1.9.99.14.tar.bz2 +inputproto-1.9.99.15.tar.bz2 randrproto-1.3.0.tar.bz2 -xextproto-7.0.99.1.tar.bz2 +xextproto-7.0.99.2.tar.bz2 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- sources 21 Jul 2009 17:21:15 -0000 1.52 +++ sources 22 Jul 2009 06:05:57 -0000 1.53 @@ -21,7 +21,7 @@ f00844a63d6e76b69eb0eb5e41eed843 xf86vi d28007a50976204960fc1fc07b4ca093 xproxymanagementprotocol-1.0.2.tar.bz2 c9f8cebfba72bfab674bc0170551fb8d glproto-1.4.10.tar.bz2 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 -291ba427a40869cf9909b6c950bf6eab inputproto-1.9.99.14.tar.bz2 +87a569587d6141af0aa0ab4b604d083a inputproto-1.9.99.15.tar.bz2 a49416013fff33c853efb32f1926551e randrproto-1.3.0.tar.bz2 -8439d47c486b7dbd85e4071d6c8408ca xextproto-7.0.99.1.tar.bz2 +bd95d508302d20fdfc6c8338a7772d20 xextproto-7.0.99.2.tar.bz2 7089b823b1a7cff05478e2330a85e541 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- xorg-x11-proto-devel.spec 21 Jul 2009 17:21:16 -0000 1.98 +++ xorg-x11-proto-devel.spec 22 Jul 2009 06:05:57 -0000 1.99 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 22%{?dist} +Release: 23%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -24,7 +24,7 @@ Source4: http://www.x.org/pub/individua Source5: http://cgit.freedesktop.org/xorg/proto/fixesproto/snapshot/fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 -Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.14.tar.bz2 +Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.15.tar.bz2 Source10: http://www.x.org/pub/individual/proto/kbproto-1.0.3.tar.bz2 Source13: http://www.x.org/pub/individual/proto/randrproto-1.3.0.tar.bz2 Source14: http://www.x.org/pub/individual/proto/recordproto-1.13.2.tar.bz2 @@ -33,7 +33,7 @@ Source16: http://www.x.org/pub/individua Source17: http://www.x.org/pub/individual/proto/scrnsaverproto-1.1.0.tar.bz2 Source19: http://www.x.org/pub/individual/proto/videoproto-2.2.2.tar.bz2 Source20: http://www.x.org/pub/individual/proto/xcmiscproto-1.1.2.tar.bz2 -Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.99.1.tar.bz2 +Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.99.2.tar.bz2 Source22: http://www.x.org/pub/individual/proto/xf86bigfontproto-1.1.2.tar.bz2 Source23: http://www.x.org/pub/individual/proto/xf86dgaproto-2.0.3.tar.bz2 Source24: http://www.x.org/pub/individual/proto/xf86driproto-2.0.4.tar.bz2 @@ -180,7 +180,7 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/extensions/geproto.h %{_includedir}/X11/extensions/lbx.h %{_includedir}/X11/extensions/lbxproto.h -%{_includedir}/X11/extensions/mitmisc.h +%{_includedir}/X11/extensions/mitmiscconst.h %{_includedir}/X11/extensions/mitmiscproto.h %{_includedir}/X11/extensions/multibufconst.h %{_includedir}/X11/extensions/multibufproto.h @@ -259,6 +259,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 22 2009 Peter Hutterer 7.4-23 +- xextproto 7.0.99.2 +- inputproto 1.9.99.15 + * Tue Jul 21 2009 Adam Jackson 7.4-22 - xextproto 7.0.99.1 - fixesproto snapshot From pkgdb at fedoraproject.org Wed Jul 22 07:04:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 07:04:12 +0000 Subject: [pkgdb] uClibc: varekova has requested commit Message-ID: <20090722070412.74EFA10F898@bastion2.fedora.phx.redhat.com> varekova has requested the commit acl on uClibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From pkgdb at fedoraproject.org Wed Jul 22 07:04:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 07:04:34 +0000 Subject: [pkgdb] uClibc: varekova has requested approveacls Message-ID: <20090722070434.DD23F10F898@bastion2.fedora.phx.redhat.com> varekova has requested the approveacls acl on uClibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From jreznik at fedoraproject.org Wed Jul 22 07:30:17 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Wed, 22 Jul 2009 07:30:17 +0000 (UTC) Subject: rpms/arora/F-11 arora-0.8.0-fedorahome.patch, NONE, 1.1 arora-0.8.0-gitversion.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 arora.spec, 1.12, 1.13 sources, 1.7, 1.8 arora-0.6-fedorahome.patch, 1.1, NONE arora-0.7.0-gitversion.patch, 1.1, NONE Message-ID: <20090722073017.E3A7111C0489@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/arora/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7923 Modified Files: .cvsignore arora.spec sources Added Files: arora-0.8.0-fedorahome.patch arora-0.8.0-gitversion.patch Removed Files: arora-0.6-fedorahome.patch arora-0.7.0-gitversion.patch Log Message: * Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 - Update to 0.8.0 - Removed custom arora.xml * Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 - Arora-gnome subpackage now requires Arora package * Tue Jun 09 2009 Jaroslav Reznik - 0.7.1-2 - Adds arora-gnome subpackage to support preferred app selection in Gnome arora-0.8.0-fedorahome.patch: browsermainwindow.cpp | 2 +- settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE arora-0.8.0-fedorahome.patch --- diff -up arora-0.8.0/src/browsermainwindow.cpp.fedorahome arora-0.8.0/src/browsermainwindow.cpp --- arora-0.8.0/src/browsermainwindow.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/browsermainwindow.cpp 2009-07-21 18:03:47.990573142 +0200 @@ -1328,7 +1328,7 @@ void BrowserMainWindow::goHome() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString home = settings.value(QLatin1String("home"), QLatin1String("about:home")).toString(); + QString home = settings.value(QLatin1String("home"), QLatin1String("http://start.fedoraproject.org/")).toString(); tabWidget()->loadString(home); } diff -up arora-0.8.0/src/settings.cpp.fedorahome arora-0.8.0/src/settings.cpp --- arora-0.8.0/src/settings.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/settings.cpp 2009-07-21 18:04:14.597573494 +0200 @@ -135,7 +135,7 @@ void SettingsDialog::loadFromSettings() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString defaultHome = QLatin1String("about:home"); + QString defaultHome = QLatin1String("http://start.fedoraproject.org/"); homeLineEdit->setText(settings.value(QLatin1String("home"), defaultHome).toString()); startupBehavior->setCurrentIndex(settings.value(QLatin1String("startupBehavior"), 0).toInt()); settings.endGroup(); arora-0.8.0-gitversion.patch: src.pri | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) --- NEW FILE arora-0.8.0-gitversion.patch --- diff -up arora-0.7.1/src/src.pri.gitversion arora-0.7.1/src/src.pri --- arora-0.7.1/src/src.pri.gitversion 2009-05-29 22:45:15.000000000 +0200 +++ arora-0.7.1/src/src.pri 2009-06-01 11:03:26.000000000 +0200 @@ -9,27 +9,8 @@ DEPENDPATH += $$PWD QT += webkit network -win32 { - DEFINES += GITVERSION=0 - DEFINES += GITCHANGENUMBER=0 -} -!win32 { - exists($$PWD/../.git/HEAD) { - # Share object files for faster compiling - RCC_DIR = $$PWD/.rcc - UI_DIR = $$PWD/.ui - MOC_DIR = $$PWD/.moc - OBJECTS_DIR = $$PWD/.obj - - GITVERSION=$$system(git log -n1 --pretty=format:%h) - DEFINES += GITVERSION=\"\\\"$$GITVERSION\\\"\" - GITCHANGENUMBER=$$system(git log --pretty=format:%h | wc -l) - DEFINES += GITCHANGENUMBER=\"\\\"$$GITCHANGENUMBER\\\"\" - } else { - DEFINES += GITVERSION=\"\\\"0\\\"\" - DEFINES += GITCHANGENUMBER=\"\\\"0\\\"\" - } -} +DEFINES += GITVERSION=\"\\\"b158ec3\\\"\" +DEFINES += GITCHANGENUMBER=\"\\\"1059\\\"\" FORMS += \ aboutdialog.ui \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 May 2009 18:48:17 -0000 1.7 +++ .cvsignore 22 Jul 2009 07:30:16 -0000 1.8 @@ -1 +1 @@ -arora-0.7.0.tar.gz +arora-0.8.0.tar.gz Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-11/arora.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- arora.spec 25 May 2009 18:48:17 -0000 1.12 +++ arora.spec 22 Jul 2009 07:30:17 -0000 1.13 @@ -1,5 +1,5 @@ Name: arora -Version: 0.7.0 +Version: 0.8.0 Release: 1%{?dist} Summary: A cross platform web browser @@ -7,13 +7,15 @@ Group: Applications/Internet License: GPLv2+ URL: http://code.google.com/p/arora/ Source0: http://arora.googlecode.com/files/%{name}-%{version}.tar.gz -Patch0: arora-0.7.0-gitversion.patch +Patch0: arora-0.8.0-gitversion.patch Patch1: arora-0.6-fedorabookmarks.patch -Patch2: arora-0.6-fedorahome.patch +Patch2: arora-0.8.0-fedorahome.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: qt-devel >= 4.4.0 +# for gnome default app path +BuildRequires: control-center-devel %description @@ -22,6 +24,16 @@ Currently, Arora is still under developm browsing and other common features such as web history and bookmarks. +%package gnome +Summary: Better Gnome support for Arora +Group: Applications/Internet +Requires: control-center +Requires: arora + +%description gnome +Adds Arora to Preferred Applications list in Gnome Control Center. + + %prep %setup -q %patch0 -p1 -b .gitversion @@ -30,8 +42,7 @@ browsing and other common features such %build qmake-qt4 PREFIX=%{_prefix} -# does not build with %{?_smp_mflags} -make +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -61,9 +72,25 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/scalable/apps/arora.svg %{_datadir}/arora %{_datadir}/pixmaps/arora.xpm -%{_datadir}/man/man1/arora.1.gz +%{_datadir}/man/man1 + +%files gnome +%defattr(-,root,root,-) +%{_datadir}/gnome-control-center/default-apps + %changelog +* Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 +- Update to 0.8.0 +- Removed custom arora.xml + +* Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 +- Arora-gnome subpackage now requires Arora package + +* Tue Jun 09 2009 Jaroslav Reznik - 0.7.1-2 +- Adds arora-gnome subpackage to support preferred app selection + in Gnome + * Mon May 25 2009 Jaroslav Reznik - 0.7.0-1 - Update to 0.7.0 - Googlesuggest removed Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 18:48:17 -0000 1.7 +++ sources 22 Jul 2009 07:30:17 -0000 1.8 @@ -1 +1 @@ -3318b0ad5d150dc245b6a036d28402be arora-0.7.0.tar.gz +f8c9a12cadbed8c85e8396db2ee62b8c arora-0.8.0.tar.gz --- arora-0.6-fedorahome.patch DELETED --- --- arora-0.7.0-gitversion.patch DELETED --- From jreznik at fedoraproject.org Wed Jul 22 07:35:53 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Wed, 22 Jul 2009 07:35:53 +0000 (UTC) Subject: rpms/arora/F-10 arora-0.8.0-fedorahome.patch, NONE, 1.1 arora-0.8.0-gitversion.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 arora.spec, 1.11, 1.12 sources, 1.7, 1.8 arora-0.6-fedorahome.patch, 1.1, NONE arora-0.7.0-gitversion.patch, 1.1, NONE Message-ID: <20090722073553.86F6111C0099@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/arora/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10379 Modified Files: .cvsignore arora.spec sources Added Files: arora-0.8.0-fedorahome.patch arora-0.8.0-gitversion.patch Removed Files: arora-0.6-fedorahome.patch arora-0.7.0-gitversion.patch Log Message: * Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 - Update to 0.8.0 - Removed custom arora.xml * Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 - Arora-gnome subpackage now requires Arora package * Tue Jun 09 2009 Jaroslav Reznik - 0.7.1-2 - Adds arora-gnome subpackage to support preferred app selection in Gnome Synced with devel arora-0.8.0-fedorahome.patch: browsermainwindow.cpp | 2 +- settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE arora-0.8.0-fedorahome.patch --- diff -up arora-0.8.0/src/browsermainwindow.cpp.fedorahome arora-0.8.0/src/browsermainwindow.cpp --- arora-0.8.0/src/browsermainwindow.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/browsermainwindow.cpp 2009-07-21 18:03:47.990573142 +0200 @@ -1328,7 +1328,7 @@ void BrowserMainWindow::goHome() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString home = settings.value(QLatin1String("home"), QLatin1String("about:home")).toString(); + QString home = settings.value(QLatin1String("home"), QLatin1String("http://start.fedoraproject.org/")).toString(); tabWidget()->loadString(home); } diff -up arora-0.8.0/src/settings.cpp.fedorahome arora-0.8.0/src/settings.cpp --- arora-0.8.0/src/settings.cpp.fedorahome 2009-07-20 00:47:14.000000000 +0200 +++ arora-0.8.0/src/settings.cpp 2009-07-21 18:04:14.597573494 +0200 @@ -135,7 +135,7 @@ void SettingsDialog::loadFromSettings() { QSettings settings; settings.beginGroup(QLatin1String("MainWindow")); - QString defaultHome = QLatin1String("about:home"); + QString defaultHome = QLatin1String("http://start.fedoraproject.org/"); homeLineEdit->setText(settings.value(QLatin1String("home"), defaultHome).toString()); startupBehavior->setCurrentIndex(settings.value(QLatin1String("startupBehavior"), 0).toInt()); settings.endGroup(); arora-0.8.0-gitversion.patch: src.pri | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) --- NEW FILE arora-0.8.0-gitversion.patch --- diff -up arora-0.7.1/src/src.pri.gitversion arora-0.7.1/src/src.pri --- arora-0.7.1/src/src.pri.gitversion 2009-05-29 22:45:15.000000000 +0200 +++ arora-0.7.1/src/src.pri 2009-06-01 11:03:26.000000000 +0200 @@ -9,27 +9,8 @@ DEPENDPATH += $$PWD QT += webkit network -win32 { - DEFINES += GITVERSION=0 - DEFINES += GITCHANGENUMBER=0 -} -!win32 { - exists($$PWD/../.git/HEAD) { - # Share object files for faster compiling - RCC_DIR = $$PWD/.rcc - UI_DIR = $$PWD/.ui - MOC_DIR = $$PWD/.moc - OBJECTS_DIR = $$PWD/.obj - - GITVERSION=$$system(git log -n1 --pretty=format:%h) - DEFINES += GITVERSION=\"\\\"$$GITVERSION\\\"\" - GITCHANGENUMBER=$$system(git log --pretty=format:%h | wc -l) - DEFINES += GITCHANGENUMBER=\"\\\"$$GITCHANGENUMBER\\\"\" - } else { - DEFINES += GITVERSION=\"\\\"0\\\"\" - DEFINES += GITCHANGENUMBER=\"\\\"0\\\"\" - } -} +DEFINES += GITVERSION=\"\\\"b158ec3\\\"\" +DEFINES += GITCHANGENUMBER=\"\\\"1059\\\"\" FORMS += \ aboutdialog.ui \ Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 25 May 2009 15:31:54 -0000 1.7 +++ .cvsignore 22 Jul 2009 07:35:52 -0000 1.8 @@ -1 +1 @@ -arora-0.7.0.tar.gz +arora-0.8.0.tar.gz Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-10/arora.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- arora.spec 25 May 2009 15:31:54 -0000 1.11 +++ arora.spec 22 Jul 2009 07:35:53 -0000 1.12 @@ -1,5 +1,5 @@ Name: arora -Version: 0.7.0 +Version: 0.8.0 Release: 1%{?dist} Summary: A cross platform web browser @@ -7,13 +7,15 @@ Group: Applications/Internet License: GPLv2+ URL: http://code.google.com/p/arora/ Source0: http://arora.googlecode.com/files/%{name}-%{version}.tar.gz -Patch0: arora-0.7.0-gitversion.patch +Patch0: arora-0.8.0-gitversion.patch Patch1: arora-0.6-fedorabookmarks.patch -Patch2: arora-0.6-fedorahome.patch +Patch2: arora-0.8.0-fedorahome.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils BuildRequires: qt-devel >= 4.4.0 +# for gnome default app path +BuildRequires: control-center-devel %description @@ -22,6 +24,16 @@ Currently, Arora is still under developm browsing and other common features such as web history and bookmarks. +%package gnome +Summary: Better Gnome support for Arora +Group: Applications/Internet +Requires: control-center +Requires: arora + +%description gnome +Adds Arora to Preferred Applications list in Gnome Control Center. + + %prep %setup -q %patch0 -p1 -b .gitversion @@ -30,8 +42,7 @@ browsing and other common features such %build qmake-qt4 PREFIX=%{_prefix} -# does not build with %{?_smp_mflags} -make +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT @@ -61,9 +72,25 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/scalable/apps/arora.svg %{_datadir}/arora %{_datadir}/pixmaps/arora.xpm -%{_datadir}/man/man1/arora.1.gz +%{_datadir}/man/man1 + +%files gnome +%defattr(-,root,root,-) +%{_datadir}/gnome-control-center/default-apps + %changelog +* Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 +- Update to 0.8.0 +- Removed custom arora.xml + +* Thu Jul 16 2009 Jaroslav Reznik - 0.7.1-3 +- Arora-gnome subpackage now requires Arora package + +* Tue Jun 09 2009 Jaroslav Reznik - 0.7.1-2 +- Adds arora-gnome subpackage to support preferred app selection + in Gnome + * Mon May 25 2009 Jaroslav Reznik - 0.7.0-1 - Update to 0.7.0 - Googlesuggest removed @@ -74,16 +101,19 @@ rm -rf $RPM_BUILD_ROOT * Sat Apr 09 2009 Jaroslav Reznik - 0.6.1-1 - Update to 0.6.1 +* Mon Mar 30 2009 Jaroslav Reznik - 0.6-2 +- Add arora-cacheinfo to package + * Mon Mar 30 2009 Jaroslav Reznik - 0.6-1 - Update to 0.6 -* Mon Mar 30 2009 Jaroslav Reznik - 0.5-2 -- Qt 4.5 rebuild - * Tue Feb 24 2009 Jaroslav Reznik - 0.5-1 - Update to 0.5 - SPEC file cleanup +* Mon Feb 23 2009 Fedora Release Engineering - 0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Dec 02 2008 Jaroslav Reznik - 0.4-3 - owns arora and locale directories (bz#473621) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/arora/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 25 May 2009 15:31:54 -0000 1.7 +++ sources 22 Jul 2009 07:35:53 -0000 1.8 @@ -1 +1 @@ -3318b0ad5d150dc245b6a036d28402be arora-0.7.0.tar.gz +f8c9a12cadbed8c85e8396db2ee62b8c arora-0.8.0.tar.gz --- arora-0.6-fedorahome.patch DELETED --- --- arora-0.7.0-gitversion.patch DELETED --- From xhorak at fedoraproject.org Wed Jul 22 07:38:58 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 07:38:58 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-10 pcmanx-gtk2.spec,1.17,1.18 Message-ID: <20090722073858.67A6611C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11628 Modified Files: pcmanx-gtk2.spec Log Message: Fix for update Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-10/pcmanx-gtk2.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pcmanx-gtk2.spec 21 Jul 2009 18:40:13 -0000 1.17 +++ pcmanx-gtk2.spec 22 Jul 2009 07:38:27 -0000 1.18 @@ -21,6 +21,7 @@ Patch2: pcmanx-gtk2-0.3.8-Fedora-idld URL: http://pcmanx.csie.net BuildRequires: gtk2-devel desktop-file-utils gettext libnotify-devel BuildRequires: libXft-devel +BuildRequires: automake = 1.10 # required for generating configure script BuildRequires: gettext-devel libtool intltool # plugin From mmaslano at fedoraproject.org Wed Jul 22 07:39:33 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Wed, 22 Jul 2009 07:39:33 +0000 (UTC) Subject: rpms/perl-Curses/devel .cvsignore, 1.6, 1.7 perl-Curses.spec, 1.12, 1.13 sources, 1.6, 1.7 Message-ID: <20090722073933.7CE2E11C0099@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Curses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12242 Modified Files: .cvsignore perl-Curses.spec sources Log Message: * Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.27-1 - Update to 1.27 - Remove exec perm for demo* provided as %doc - Fix #510186 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Curses/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 14 Feb 2008 22:04:30 -0000 1.6 +++ .cvsignore 22 Jul 2009 07:39:33 -0000 1.7 @@ -1 +1 @@ -Curses-1.20.tgz +Curses-1.27.tgz Index: perl-Curses.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Curses/devel/perl-Curses.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Curses.spec 26 Feb 2009 14:02:15 -0000 1.12 +++ perl-Curses.spec 22 Jul 2009 07:39:33 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Curses -Version: 1.20 -Release: 4%{?dist} +Version: 1.27 +Release: 1%{?dist} Summary: Perl bindings for ncurses Group: Development/Libraries @@ -49,6 +49,8 @@ find $RPM_BUILD_ROOT -type f -name '*.bs find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -R u+w $RPM_BUILD_ROOT/* +#Remove exec perm for file aimed to be bundled as %%doc +chmod -x demo* %check make test @@ -67,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.27-1 +- Update to 1.27 +- Remove exec perm for demo* provided as %%doc - Fix #510186 + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Curses/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 14 Feb 2008 22:04:30 -0000 1.6 +++ sources 22 Jul 2009 07:39:33 -0000 1.7 @@ -1 +1 @@ -739adc4d21398f51795e024fcd59e01a Curses-1.20.tgz +f125ccc648141ff0be7b0743a73cf67e Curses-1.27.tgz From xhorak at fedoraproject.org Wed Jul 22 07:49:17 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 07:49:17 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-10 pcmanx-gtk2-autogen.patch, NONE, 1.1 pcmanx-gtk2.spec, 1.18, 1.19 Message-ID: <20090722074917.0D70311C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17385 Modified Files: pcmanx-gtk2.spec Added Files: pcmanx-gtk2-autogen.patch Log Message: Fix for xulrunner update pcmanx-gtk2-autogen.patch: autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE pcmanx-gtk2-autogen.patch --- diff -up pcmanx-gtk2-0.3.8/autogen.sh.orig2 pcmanx-gtk2-0.3.8/autogen.sh --- pcmanx-gtk2-0.3.8/autogen.sh.orig2 2009-07-22 09:43:48.000000000 +0200 +++ pcmanx-gtk2-0.3.8/autogen.sh 2009-07-22 09:45:15.000000000 +0200 @@ -1,5 +1,5 @@ #! /bin/sh -AM_VERSION=-1.10 +AM_VERSION=-1.11 AC_VERSION= set -e -x Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-10/pcmanx-gtk2.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- pcmanx-gtk2.spec 22 Jul 2009 07:38:27 -0000 1.18 +++ pcmanx-gtk2.spec 22 Jul 2009 07:49:16 -0000 1.19 @@ -18,10 +18,11 @@ Patch0: pcmanx-gtk2-444svn.patch Patch1: pcmanx-gtk2-0.3.8-Fedora-xpidl.patch # The idldir in our libxul already has "stable" in it. Patch2: pcmanx-gtk2-0.3.8-Fedora-idldir.patch +Patch3: pcmanx-gtk2-autogen.patch URL: http://pcmanx.csie.net BuildRequires: gtk2-devel desktop-file-utils gettext libnotify-devel BuildRequires: libXft-devel -BuildRequires: automake = 1.10 +BuildRequires: automake # required for generating configure script BuildRequires: gettext-devel libtool intltool # plugin @@ -55,6 +56,7 @@ webpage in the browser window. %patch0 -p1 -b .svn444 %patch1 -p1 -b .xpidl %patch2 -p1 -b .idldir +%patch3 -p1 -b .automake ######################################################################## # automake 1.10 fails without config.rpath. From xhorak at fedoraproject.org Wed Jul 22 07:57:33 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 07:57:33 +0000 (UTC) Subject: rpms/epiphany/F-10 epiphany.spec,1.229,1.230 Message-ID: <20090722075733.B2BB811C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/epiphany/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21163 Modified Files: epiphany.spec Log Message: Fix build due to xulrunner update Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/F-10/epiphany.spec,v retrieving revision 1.229 retrieving revision 1.230 diff -u -p -r1.229 -r1.230 --- epiphany.spec 21 Jul 2009 18:18:10 -0000 1.229 +++ epiphany.spec 22 Jul 2009 07:57:33 -0000 1.230 @@ -117,9 +117,9 @@ export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS %endif # Regenerate configure -aclocal-1.10 -I m4 +aclocal-1.11 -I m4 autoreconf -automake-1.10 --foreign +automake-1.11 --foreign %configure \ --with-gecko=libxul-embedding \ From xhorak at fedoraproject.org Wed Jul 22 08:08:34 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 08:08:34 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-10 pcmanx-gtk2.spec,1.19,1.20 Message-ID: <20090722080834.4EA2511C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25517 Modified Files: pcmanx-gtk2.spec Log Message: Fix due to failed build with new xulrunner Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-10/pcmanx-gtk2.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pcmanx-gtk2.spec 22 Jul 2009 07:49:16 -0000 1.19 +++ pcmanx-gtk2.spec 22 Jul 2009 08:08:03 -0000 1.20 @@ -56,7 +56,6 @@ webpage in the browser window. %patch0 -p1 -b .svn444 %patch1 -p1 -b .xpidl %patch2 -p1 -b .idldir -%patch3 -p1 -b .automake ######################################################################## # automake 1.10 fails without config.rpath. @@ -71,6 +70,8 @@ webpage in the browser window. touch config.rpath ######################################################################## +%patch3 -p1 -b .automake + %build ./autogen.sh %configure --enable-libnotify --enable-plugin From nickc at fedoraproject.org Wed Jul 22 08:34:05 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Wed, 22 Jul 2009 08:34:05 +0000 (UTC) Subject: rpms/binutils/devel .cvsignore, 1.45, 1.46 binutils.spec, 1.170, 1.171 sources, 1.45, 1.46 binutils-2.19.51.0.11-orphan-section-placement.patch, 1.1, NONE Message-ID: <20090722083405.165AA11C0099@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5184 Modified Files: .cvsignore binutils.spec sources Removed Files: binutils-2.19.51.0.11-orphan-section-placement.patch Log Message: Rebase sources on 2.19.51.0.113 tarball. Remove redundant orphan section placement patch. (BZ 512937) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/.cvsignore,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- .cvsignore 30 Jun 2009 13:18:38 -0000 1.45 +++ .cvsignore 22 Jul 2009 08:34:04 -0000 1.46 @@ -1 +1 @@ -binutils-2.19.51.0.11.tar.bz2 +binutils-2.19.51.0.13.tar.bz2 Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.170 retrieving revision 1.171 diff -u -p -r1.170 -r1.171 --- binutils.spec 14 Jul 2009 10:40:08 -0000 1.170 +++ binutils.spec 22 Jul 2009 08:34:04 -0000 1.171 @@ -16,8 +16,8 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} -Version: 2.19.51.0.11 -Release: 27%{?dist} +Version: 2.19.51.0.13 +Release: 28%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -30,7 +30,6 @@ Patch04: binutils-2.19.51.0.10-envvar-re Patch05: binutils-2.19.51.0.10-version.patch Patch06: binutils-2.19.51.0.10-set-long-long.patch Patch07: binutils-2.19.51.0.10-build-id.patch -Patch08: binutils-2.19.51.0.11-orphan-section-placement.patch Patch09: binutils-2.19.51.0.11-moxie.patch %if 0%{?_with_debug:1} @@ -103,7 +102,6 @@ to consider using libelf instead of BFD. %patch05 -p0 -b .version~ %patch06 -p0 -b .set-long-long~ %patch07 -p0 -b .build-id~ -%patch08 -p0 -b .orphan-section-placement~ %patch09 -p0 -b .moxie~ # We cannot run autotools as there is an exact requirement of autoconf-2.59. @@ -355,6 +353,9 @@ fi %endif # %{isnative} %changelog +* Wed Jul 22 2009 Nick Clifton 2.19.51.0.11-28 +- Rebase sources on 2.19.51.0.113 tarball. Remove redundant orphan section placement patch. (BZ 512937) + * Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-27 - Add patch to allow moxie target to build, and hence --enable-targets=all to work. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 30 Jun 2009 13:18:39 -0000 1.45 +++ sources 22 Jul 2009 08:34:04 -0000 1.46 @@ -1 +1 @@ -e8cf3dff6dbcef04a28cc9dc67e8442f binutils-2.19.51.0.11.tar.bz2 +2181498b48a9a91a994120ba91784622 binutils-2.19.51.0.13.tar.bz2 --- binutils-2.19.51.0.11-orphan-section-placement.patch DELETED --- From kdudka at fedoraproject.org Wed Jul 22 08:48:26 2009 From: kdudka at fedoraproject.org (Kamil Dudka) Date: Wed, 22 Jul 2009 08:48:26 +0000 (UTC) Subject: rpms/curl/devel curl-7.19.5-cc.patch, NONE, 1.1 curl-7.19.5-cc_refcnt-2.patch, 1.2, 1.3 curl.spec, 1.105, 1.106 Message-ID: <20090722084826.2934811C0099@cvs1.fedora.phx.redhat.com> Author: kdudka Update of /cvs/extras/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11354 Modified Files: curl-7.19.5-cc_refcnt-2.patch curl.spec Added Files: curl-7.19.5-cc.patch Log Message: try to select client certificate automatically when not specified curl-7.19.5-cc.patch: nss.c | 210 +++++++++++++++++++++++++++++--------------------------------- urldata.h | 1 2 files changed, 101 insertions(+), 110 deletions(-) --- NEW FILE curl-7.19.5-cc.patch --- diff -ruNp curl-7.19.5.orig/lib/nss.c curl-7.19.5/lib/nss.c --- curl-7.19.5.orig/lib/nss.c 2009-07-22 10:30:03.010106586 +0200 +++ curl-7.19.5/lib/nss.c 2009-07-22 10:30:54.069293169 +0200 @@ -585,48 +585,6 @@ static char * nss_get_password(PK11SlotI return (char *)PORT_Strdup((char *)arg); } -static SECStatus nss_Init_Tokens(struct connectdata * conn) -{ - PK11SlotList *slotList; - PK11SlotListElement *listEntry; - SECStatus ret, status = SECSuccess; - - PK11_SetPasswordFunc(nss_get_password); - - slotList = - PK11_GetAllTokens(CKM_INVALID_MECHANISM, PR_FALSE, PR_TRUE, NULL); - - for(listEntry = PK11_GetFirstSafe(slotList); - listEntry; listEntry = listEntry->next) { - PK11SlotInfo *slot = listEntry->slot; - - if(PK11_NeedLogin(slot) && PK11_NeedUserInit(slot)) { - if(slot == PK11_GetInternalKeySlot()) { - failf(conn->data, "The NSS database has not been initialized"); - } - else { - failf(conn->data, "The token %s has not been initialized", - PK11_GetTokenName(slot)); - } - PK11_FreeSlot(slot); - continue; - } - - ret = PK11_Authenticate(slot, PR_TRUE, - conn->data->set.str[STRING_KEY_PASSWD]); - if(SECSuccess != ret) { - if(PR_GetError() == SEC_ERROR_BAD_PASSWORD) - infof(conn->data, "The password for token '%s' is incorrect\n", - PK11_GetTokenName(slot)); - status = SECFailure; - break; - } - PK11_FreeSlot(slot); - } - - return status; -} - static SECStatus BadCertHandler(void *arg, PRFileDesc *sock) { SECStatus success = SECSuccess; @@ -692,15 +650,37 @@ static SECStatus HandshakeCallback(PRFil return SECSuccess; } +static void display_cert_info(struct SessionHandle *data, CERTCertificate *cert) { + char *subject, *issuer, *common_name; + PRExplodedTime printableTime; + char timeString[256]; + PRTime notBefore, notAfter; + + subject = CERT_NameToAscii(&cert->subject); + issuer = CERT_NameToAscii(&cert->issuer); + common_name = CERT_GetCommonName(&cert->subject); + infof(data, "\tsubject: %s\n", subject); + + CERT_GetCertTimes(cert, ¬Before, ¬After); + PR_ExplodeTime(notBefore, PR_GMTParameters, &printableTime); + PR_FormatTime(timeString, 256, "%b %d %H:%M:%S %Y GMT", &printableTime); + infof(data, "\tstart date: %s\n", timeString); + PR_ExplodeTime(notAfter, PR_GMTParameters, &printableTime); + PR_FormatTime(timeString, 256, "%b %d %H:%M:%S %Y GMT", &printableTime); + infof(data, "\texpire date: %s\n", timeString); + infof(data, "\tcommon name: %s\n", common_name); + infof(data, "\tissuer: %s\n", issuer); + + PR_Free(subject); + PR_Free(issuer); + PR_Free(common_name); +} + static void display_conn_info(struct connectdata *conn, PRFileDesc *sock) { SSLChannelInfo channel; SSLCipherSuiteInfo suite; CERTCertificate *cert; - char *subject, *issuer, *common_name; - PRExplodedTime printableTime; - char timeString[256]; - PRTime notBefore, notAfter; if(SSL_GetChannelInfo(sock, &channel, sizeof channel) == SECSuccess && channel.length == sizeof channel && @@ -714,25 +694,7 @@ static void display_conn_info(struct con infof(conn->data, "Server certificate:\n"); cert = SSL_PeerCertificate(sock); - subject = CERT_NameToAscii(&cert->subject); - issuer = CERT_NameToAscii(&cert->issuer); - common_name = CERT_GetCommonName(&cert->subject); - infof(conn->data, "\tsubject: %s\n", subject); - - CERT_GetCertTimes(cert, ¬Before, ¬After); - PR_ExplodeTime(notBefore, PR_GMTParameters, &printableTime); - PR_FormatTime(timeString, 256, "%b %d %H:%M:%S %Y GMT", &printableTime); - infof(conn->data, "\tstart date: %s\n", timeString); - PR_ExplodeTime(notAfter, PR_GMTParameters, &printableTime); - PR_FormatTime(timeString, 256, "%b %d %H:%M:%S %Y GMT", &printableTime); - infof(conn->data, "\texpire date: %s\n", timeString); - infof(conn->data, "\tcommon name: %s\n", common_name); - infof(conn->data, "\tissuer: %s\n", issuer); - - PR_Free(subject); - PR_Free(issuer); - PR_Free(common_name); - + display_cert_info(conn->data, cert); CERT_DestroyCertificate(cert); return; @@ -786,48 +748,71 @@ static SECStatus SelectClientCert(void * struct CERTCertificateStr **pRetCert, struct SECKEYPrivateKeyStr **pRetKey) { - SECKEYPrivateKey *privKey = NULL; - CERTCertificate *cert; - struct ssl_connect_data *connssl = (struct ssl_connect_data *) arg; - char *nickname = connssl->client_nickname; - void *proto_win = NULL; - SECStatus secStatus = SECFailure; - PK11SlotInfo *slot; - (void)caNames; + static const char pem_nickname[] = "PEM Token #1"; + const char *pem_slotname = pem_nickname; - proto_win = SSL_RevealPinArg(sock); + struct ssl_connect_data *connssl = (struct ssl_connect_data *)arg; + struct SessionHandle *data = connssl->data; + const char *nickname = connssl->client_nickname; - if(!nickname) - return secStatus; + if (mod && nickname && + 0 == strncmp(nickname, pem_nickname, /* length of "PEM Token" */ 9)) { - cert = PK11_FindCertFromNickname(nickname, proto_win); - if(cert) { - if(!strncmp(nickname, "PEM Token", 9)) { - CK_SLOT_ID slotID = 1; /* hardcoded for now */ - char slotname[SLOTSIZE]; - snprintf(slotname, SLOTSIZE, "PEM Token #%ld", slotID); - slot = PK11_FindSlotByName(slotname); - privKey = PK11_FindPrivateKeyFromCert(slot, cert, NULL); - PK11_FreeSlot(slot); - if(privKey) { - secStatus = SECSuccess; - } + /* use the cert/key provided by PEM reader */ + PK11SlotInfo *slot; + void *proto_win = SSL_RevealPinArg(sock); + *pRetKey = NULL; + + *pRetCert = PK11_FindCertFromNickname(nickname, proto_win); + if (NULL == *pRetCert) { + failf(data, "NSS: client certificate not found: %s", nickname); + return SECFailure; } - else { - privKey = PK11_FindKeyByAnyCert(cert, proto_win); - if(privKey) - secStatus = SECSuccess; + + slot = PK11_FindSlotByName(pem_slotname); + if (NULL == slot) { + failf(data, "NSS: PK11 slot not found: %s", pem_slotname); + return SECFailure; + } + + *pRetKey = PK11_FindPrivateKeyFromCert(slot, *pRetCert, NULL); + PK11_FreeSlot(slot); + if (NULL == *pRetKey) { + failf(data, "NSS: private key not found for certificate: %s", nickname); + return SECFailure; } + + infof(data, "NSS: Client client certificate: %s\n", nickname); + display_cert_info(data, *pRetCert); + return SECSuccess; } - *pRetCert = cert; - *pRetKey = privKey; - - /* There's no need to destroy either cert or privKey as - * NSS will do that for us even if returning SECFailure - */ + /* use the default NSS hook */ + if (SECSuccess != NSS_GetClientAuthData((void *)nickname, sock, caNames, + pRetCert, pRetKey) + || NULL == *pRetCert) { - return secStatus; + if (NULL == nickname) + failf(data, "NSS: client certificate not found (nickname not specified)"); + else + failf(data, "NSS: client certificate not found: %s", nickname); + + return SECFailure; + } + + /* get certificate nickname if any */ + nickname = (*pRetCert)->nickname; + if (NULL == nickname) + nickname = "[unknown]"; + + if (NULL == *pRetKey) { + failf(data, "NSS: private key not found for certificate: %s", nickname); + return SECFailure; + } + + infof(data, "NSS: using client certificate: %s\n", nickname); + display_cert_info(data, *pRetCert); + return SECSuccess; } /** @@ -955,6 +940,8 @@ CURLcode Curl_nss_connect(struct connect if (connssl->state == ssl_connection_complete) return CURLE_OK; + connssl->data = data; + #ifdef HAVE_PK11_CREATEGENERICOBJECT connssl->cacert[0] = NULL; connssl->cacert[1] = NULL; @@ -1017,6 +1004,9 @@ CURLcode Curl_nss_connect(struct connect } } #endif + + PK11_SetPasswordFunc(nss_get_password); + } PR_Unlock(nss_initlock); @@ -1164,11 +1154,7 @@ CURLcode Curl_nss_connect(struct connect else { nickname = data->set.str[STRING_CERT]; } - if(nss_Init_Tokens(conn) != SECSuccess) { - if(nickname_alloc) - free(nickname); - goto error; - } + if(!cert_stuff(conn, sockindex, data->set.str[STRING_CERT], data->set.str[STRING_KEY])) { /* failf() is already done in cert_stuff() */ @@ -1183,16 +1169,15 @@ CURLcode Curl_nss_connect(struct connect if(!connssl->client_nickname) return CURLE_OUT_OF_MEMORY; - if(SSL_GetClientAuthDataHook(model, - (SSLGetClientAuthData) SelectClientCert, - (void *)connssl) != SECSuccess) { - curlerr = CURLE_SSL_CERTPROBLEM; - goto error; - } } else connssl->client_nickname = NULL; + if(SSL_GetClientAuthDataHook(model, SelectClientCert, + (void *)connssl) != SECSuccess) { + curlerr = CURLE_SSL_CERTPROBLEM; + goto error; + } /* Import our model socket onto the existing file descriptor */ connssl->handle = PR_ImportTCPSocket(sockfd); @@ -1201,6 +1186,11 @@ CURLcode Curl_nss_connect(struct connect goto error; PR_Close(model); /* We don't need this any more */ + /* This is the password associated with the cert that we're using */ + if (data->set.str[STRING_KEY_PASSWD]) { + SSL_SetPKCS11PinArg(connssl->handle, data->set.str[STRING_KEY_PASSWD]); + } + /* Force handshake on next I/O */ SSL_ResetHandshake(connssl->handle, /* asServer */ PR_FALSE); diff -ruNp curl-7.19.5.orig/lib/urldata.h curl-7.19.5/lib/urldata.h --- curl-7.19.5.orig/lib/urldata.h 2009-07-22 10:30:03.007106061 +0200 +++ curl-7.19.5/lib/urldata.h 2009-07-22 10:30:54.070293354 +0200 @@ -211,6 +211,7 @@ struct ssl_connect_data { #ifdef USE_NSS PRFileDesc *handle; char *client_nickname; + struct SessionHandle *data; #ifdef HAVE_PK11_CREATEGENERICOBJECT PK11GenericObject *key; PK11GenericObject *cacert[2]; curl-7.19.5-cc_refcnt-2.patch: nss.c | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) Index: curl-7.19.5-cc_refcnt-2.patch =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl-7.19.5-cc_refcnt-2.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- curl-7.19.5-cc_refcnt-2.patch 10 Jul 2009 12:45:41 -0000 1.2 +++ curl-7.19.5-cc_refcnt-2.patch 22 Jul 2009 08:48:25 -0000 1.3 @@ -1,7 +1,7 @@ diff -ruNp curl-7.19.5.orig/lib/nss.c curl-7.19.5/lib/nss.c ---- curl-7.19.5.orig/lib/nss.c 2009-07-10 14:41:55.890168660 +0200 -+++ curl-7.19.5/lib/nss.c 2009-07-10 14:42:18.966293110 +0200 -@@ -857,8 +857,15 @@ void Curl_nss_cleanup(void) +--- curl-7.19.5.orig/lib/nss.c 2009-07-22 10:28:01.254355601 +0200 ++++ curl-7.19.5/lib/nss.c 2009-07-22 10:29:02.437231090 +0200 +@@ -857,9 +857,15 @@ void Curl_nss_cleanup(void) */ PR_Lock(nss_initlock); if (initialized) { @@ -11,10 +11,58 @@ diff -ruNp curl-7.19.5.orig/lib/nss.c cu + * the certificates. */ + SSL_ClearSessionCache(); + -+ if(mod) { -+ SECMOD_UnloadUserModule(mod); ++ if(mod && SECSuccess == SECMOD_UnloadUserModule(mod)) { SECMOD_DestroyModule(mod); +- mod = NULL; ++ mod = NULL; + } - mod = NULL; NSS_Shutdown(); } + PR_Unlock(nss_initlock); +@@ -940,9 +946,6 @@ CURLcode Curl_nss_connect(struct connect + curl_socket_t sockfd = conn->sock[sockindex]; + struct ssl_connect_data *connssl = &conn->ssl[sockindex]; + SECStatus rv; +-#ifdef HAVE_PK11_CREATEGENERICOBJECT +- char *configstring = NULL; +-#endif + char *certDir = NULL; + int curlerr; + const int *cipher_to_enable; +@@ -995,21 +998,23 @@ CURLcode Curl_nss_connect(struct connect + NSS_SetDomesticPolicy(); + + #ifdef HAVE_PK11_CREATEGENERICOBJECT +- configstring = aprintf("library=%s name=PEM", pem_library); +- if(!configstring) { +- PR_Unlock(nss_initlock); +- goto error; +- } +- mod = SECMOD_LoadUserModule(configstring, NULL, PR_FALSE); +- free(configstring); ++ if(!mod) { ++ char *configstring = aprintf("library=%s name=PEM", pem_library); ++ if(!configstring) { ++ PR_Unlock(nss_initlock); ++ goto error; ++ } ++ mod = SECMOD_LoadUserModule(configstring, NULL, PR_FALSE); ++ free(configstring); + +- if(!mod || !mod->loaded) { +- if(mod) { +- SECMOD_DestroyModule(mod); +- mod = NULL; ++ if(!mod || !mod->loaded) { ++ if(mod) { ++ SECMOD_DestroyModule(mod); ++ mod = NULL; ++ } ++ infof(data, "WARNING: failed to load NSS PEM library %s. Using OpenSSL " ++ "PEM certificates will not work.\n", pem_library); + } +- infof(data, "WARNING: failed to load NSS PEM library %s. Using OpenSSL " +- "PEM certificates will not work.\n", pem_library); + } + #endif + } Index: curl.spec =================================================================== RCS file: /cvs/extras/rpms/curl/devel/curl.spec,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- curl.spec 10 Jul 2009 12:27:52 -0000 1.105 +++ curl.spec 22 Jul 2009 08:48:25 -0000 1.106 @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.5 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2 @@ -12,6 +12,7 @@ Patch3: curl-7.17.1-badsocket.patch Patch4: curl-7.19.4-debug.patch Patch5: curl-7.19.5-cc_refcnt-1.patch Patch6: curl-7.19.5-cc_refcnt-2.patch +Patch7: curl-7.19.5-cc.patch Provides: webclient URL: http://curl.haxx.se/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -58,6 +59,7 @@ use cURL's capabilities internally. %patch4 -p1 %patch5 -p1 %patch6 -p1 +%patch7 -p1 # Convert docs to UTF-8 for f in CHANGES README; do @@ -140,6 +142,11 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Wed Jul 22 2009 Kamil Dudka 7.19.5-8 +- do not pre-login to all PKCS11 slots, it causes problems with HW tokens +- try to select client certificate automatically when not specified, thanks + to Claes Jakobsson + * Fri Jul 10 2009 Kamil Dudka 7.19.5-7 - fix SIGSEGV when using NSS client certificates, thanks to Claes Jakobsson From jfch2222 at fedoraproject.org Wed Jul 22 08:52:36 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Wed, 22 Jul 2009 08:52:36 +0000 (UTC) Subject: rpms/openssh-blacklist/devel import.log, NONE, 1.1 openssh-blacklist.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722085236.D0F0111C0099@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh-blacklist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13085/devel Modified Files: .cvsignore sources Added Files: import.log openssh-blacklist.spec Log Message: Initial release --- NEW FILE import.log --- openssh-blacklist-0_7-1_fc12:HEAD:openssh-blacklist-0.7-1.fc12.src.rpm:1247335318 --- NEW FILE openssh-blacklist.spec --- Name: openssh-blacklist Version: 0.7 Release: 1%{?dist} Summary: Fingerprints of the openssh keys affected by CVE-2008-0166 Group: Applications/Internet License: CC-BY URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=openssh-blacklist Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/openssh-blacklist/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Fingerprints of the openssh keys affected by CVE-2008-0166 %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name} mv fingerprints/* $RPM_BUILD_ROOT%{_datadir}/%{name} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING CONTENT %{_datadir}/%{name} %changelog * Mon Jul 20 2009 Jan F. Chadima - 0.7-1 - Redesigned * Tue Jul 10 2009 Jan F. Chadima - 0.1-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:21:13 -0000 1.1 +++ .cvsignore 22 Jul 2009 08:52:36 -0000 1.2 @@ -0,0 +1 @@ +openssh-blacklist-0.7.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:21:13 -0000 1.1 +++ sources 22 Jul 2009 08:52:36 -0000 1.2 @@ -0,0 +1 @@ +2aef528646064e86b015128462543e2f openssh-blacklist-0.7.tgz From jfch2222 at fedoraproject.org Wed Jul 22 09:02:28 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Wed, 22 Jul 2009 09:02:28 +0000 (UTC) Subject: rpms/openssh-blacklist/F-11 import.log, NONE, 1.1 openssh-blacklist.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722090228.3809C11C0099@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh-blacklist/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17012/F-11 Modified Files: .cvsignore sources Added Files: import.log openssh-blacklist.spec Log Message: Initial release --- NEW FILE import.log --- openssh-blacklist-0_7-1_fc12:F-11:openssh-blacklist-0.7-1.fc12.src.rpm:1247335795 --- NEW FILE openssh-blacklist.spec --- Name: openssh-blacklist Version: 0.7 Release: 1%{?dist} Summary: Fingerprints of the openssh keys affected by CVE-2008-0166 Group: Applications/Internet License: CC-BY URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=openssh-blacklist Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/openssh-blacklist/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Fingerprints of the openssh keys affected by CVE-2008-0166 %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name} mv fingerprints/* $RPM_BUILD_ROOT%{_datadir}/%{name} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING CONTENT %{_datadir}/%{name} %changelog * Mon Jul 20 2009 Jan F. Chadima - 0.7-1 - Redesigned * Tue Jul 10 2009 Jan F. Chadima - 0.1-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:21:13 -0000 1.1 +++ .cvsignore 22 Jul 2009 09:02:27 -0000 1.2 @@ -0,0 +1 @@ +openssh-blacklist-0.7.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:21:13 -0000 1.1 +++ sources 22 Jul 2009 09:02:27 -0000 1.2 @@ -0,0 +1 @@ +2aef528646064e86b015128462543e2f openssh-blacklist-0.7.tgz From jfch2222 at fedoraproject.org Wed Jul 22 09:11:17 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Wed, 22 Jul 2009 09:11:17 +0000 (UTC) Subject: rpms/openssh-blacklist/F-10 import.log, NONE, 1.1 openssh-blacklist.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722091117.3E7CA11C0099@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh-blacklist/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21204/F-10 Modified Files: .cvsignore sources Added Files: import.log openssh-blacklist.spec Log Message: Initial release --- NEW FILE import.log --- openssh-blacklist-0_7-1_fc12:F-10:openssh-blacklist-0.7-1.fc12.src.rpm:1247336415 --- NEW FILE openssh-blacklist.spec --- Name: openssh-blacklist Version: 0.7 Release: 1%{?dist} Summary: Fingerprints of the openssh keys affected by CVE-2008-0166 Group: Applications/Internet License: CC-BY URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=openssh-blacklist Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/openssh-blacklist/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Fingerprints of the openssh keys affected by CVE-2008-0166 %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name} mv fingerprints/* $RPM_BUILD_ROOT%{_datadir}/%{name} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING CONTENT %{_datadir}/%{name} %changelog * Mon Jul 20 2009 Jan F. Chadima - 0.7-1 - Redesigned * Tue Jul 10 2009 Jan F. Chadima - 0.1-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:21:13 -0000 1.1 +++ .cvsignore 22 Jul 2009 09:11:16 -0000 1.2 @@ -0,0 +1 @@ +openssh-blacklist-0.7.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:21:13 -0000 1.1 +++ sources 22 Jul 2009 09:11:17 -0000 1.2 @@ -0,0 +1 @@ +2aef528646064e86b015128462543e2f openssh-blacklist-0.7.tgz From plautrba at fedoraproject.org Wed Jul 22 09:19:20 2009 From: plautrba at fedoraproject.org (Petr Lautrbach) Date: Wed, 22 Jul 2009 09:19:20 +0000 (UTC) Subject: rpms/upstart/F-11 .cvsignore, 1.7, 1.8 sources, 1.8, 1.9 upstart-fedora-buglist.patch, 1.2, 1.3 upstart-initctl-man.patch, 1.1, 1.2 upstart-telinit-u.patch, 1.1, 1.2 upstart-tty-stack.patch, 1.3, 1.4 upstart.spec, 1.30, 1.31 Message-ID: <20090722091920.1D1E711C0099@cvs1.fedora.phx.redhat.com> Author: plautrba Update of /cvs/pkgs/rpms/upstart/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23949 Modified Files: .cvsignore sources upstart-fedora-buglist.patch upstart-initctl-man.patch upstart-telinit-u.patch upstart-tty-stack.patch upstart.spec Log Message: Update to upstream 0.3.11 version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 7 Mar 2009 23:32:31 -0000 1.7 +++ .cvsignore 22 Jul 2009 09:18:48 -0000 1.8 @@ -1 +1 @@ -upstart-0.3.9.tar.bz2 +upstart-0.3.11.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 7 Mar 2009 23:32:31 -0000 1.8 +++ sources 22 Jul 2009 09:18:48 -0000 1.9 @@ -1 +1 @@ -794208083d405ece123ad59a02f3e233 upstart-0.3.9.tar.bz2 +a9e475e1458c876add0441d9d4cfe9c0 upstart-0.3.11.tar.bz2 upstart-fedora-buglist.patch: configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: upstart-fedora-buglist.patch =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/upstart-fedora-buglist.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- upstart-fedora-buglist.patch 27 Apr 2009 20:06:59 -0000 1.2 +++ upstart-fedora-buglist.patch 22 Jul 2009 09:18:48 -0000 1.3 @@ -1,16 +1,15 @@ -diff -urN upstart-0.3.9/configure upstart-0.3.9-adj/configure ---- upstart-0.3.9/configure 2007-10-11 17:12:41.000000000 -0400 -+++ upstart-0.3.9-adj/configure 2008-04-03 11:22:20.000000000 -0400 -@@ -732,7 +732,7 @@ +--- upstart-0.3.11/configure 2009-06-19 20:03:59.000000000 +0200 ++++ upstart-0.3.11-adj/configure 2009-06-22 14:51:40.000000000 +0200 +@@ -749,7 +749,7 @@ PACKAGE_TARNAME='upstart' - PACKAGE_VERSION='0.3.9' - PACKAGE_STRING='upstart 0.3.9' + PACKAGE_VERSION='0.3.11' + PACKAGE_STRING='upstart 0.3.11' -PACKAGE_BUGREPORT='upstart-devel at lists.ubuntu.com' +PACKAGE_BUGREPORT='fedora-devel-list at redhat.com' ac_unique_file="init/main.c" - gt_needs= -@@ -1574,7 +1574,7 @@ + # Factoring default headers for most tests. +@@ -1655,7 +1655,7 @@ Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. upstart-initctl-man.patch: initctl.8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: upstart-initctl-man.patch =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/upstart-initctl-man.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- upstart-initctl-man.patch 24 Apr 2008 18:15:10 -0000 1.1 +++ upstart-initctl-man.patch 22 Jul 2009 09:18:48 -0000 1.2 @@ -1,14 +1,5 @@ --- upstart-0.3.9/util/man/initctl.8-orig 2008-04-09 16:52:23.000000000 -0400 +++ upstart-0.3.9/util/man/initctl.8 2008-04-24 01:42:57.000000000 -0400 -@@ -4,7 +4,7 @@ - initctl \- init daemon control utility - .\" - .SH SYNOPSIS --\fBinitctl\fR [\fIOPTION\fR]... \fICOMMAND\fR [\fIOPTION\fR]... \fIARG...\fR -+\fBinitctl\fR [\fIOPTION\fR]... \fICOMMAND\fR [\fIOPTION\fR]... \fIARG\fR... - .\" - .SH DESCRIPTION - .B initctl @@ -14,7 +14,7 @@ .IR COMMAND . upstart-telinit-u.patch: compat/sysv/telinit.c | 8 +++++--- init/control.c | 31 +++++++++++++++++++++++++++++++ upstart/message.c | 5 +++++ upstart/message.h | 1 + 4 files changed, 42 insertions(+), 3 deletions(-) Index: upstart-telinit-u.patch =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/upstart-telinit-u.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- upstart-telinit-u.patch 9 Apr 2008 14:47:57 -0000 1.1 +++ upstart-telinit-u.patch 22 Jul 2009 09:18:49 -0000 1.2 @@ -1,10 +1,13 @@ diff -urN upstart-0.3.9-old/compat/sysv/telinit.c upstart-0.3.9/compat/sysv/telinit.c --- upstart-0.3.9-old/compat/sysv/telinit.c 2008-04-09 00:52:06.000000000 -0400 +++ upstart-0.3.9/compat/sysv/telinit.c 2008-04-09 01:02:39.000000000 -0400 -@@ -113,6 +113,11 @@ +@@ -113,9 +113,11 @@ NULL, UPSTART_INIT_DAEMON, UPSTART_EVENT_EMIT, "runlevel", args, NULL)); break; +- case 'u': +- kill (UPSTART_INIT_DAEMON, SIGTERM); +- exit (0); + case 'u': + NIH_MUST (message = upstart_message_new ( + NULL, UPSTART_INIT_DAEMON, upstart-tty-stack.patch: init/Makefile.in | 8 ++- init/control.c | 70 +++++++++++++++++++++++++++++ init/main.c | 3 + init/process.c | 6 +- init/tty.c | 97 ++++++++++++++++++++++++++++++++++++++++ init/tty.h | 35 ++++++++++++++ po/ca.po | 129 +++++++++++++++++++++++++++++++----------------------- po/fr.po | 129 +++++++++++++++++++++++++++++++----------------------- po/sv.po | 127 ++++++++++++++++++++++++++++++----------------------- upstart/message.c | 52 +++++++++++++++++++++ upstart/message.h | 9 +++ util/initctl.c | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++ 12 files changed, 625 insertions(+), 164 deletions(-) Index: upstart-tty-stack.patch =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/upstart-tty-stack.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- upstart-tty-stack.patch 27 Apr 2009 20:06:59 -0000 1.3 +++ upstart-tty-stack.patch 22 Jul 2009 09:18:49 -0000 1.4 @@ -1,39 +1,6 @@ -=== modified file 'init/Makefile.in' ---- init/Makefile.in 2008-03-02 23:21:30 +0000 -+++ init/Makefile.in 2008-02-29 21:39:16 +0000 -@@ -70,9 +70,9 @@ - am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)" - sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM) - PROGRAMS = $(sbin_PROGRAMS) --am_init_OBJECTS = main.$(OBJEXT) process.$(OBJEXT) job.$(OBJEXT) \ -- event.$(OBJEXT) control.$(OBJEXT) notify.$(OBJEXT) \ -- cfgfile.$(OBJEXT) -+am_init_OBJECTS = main.$(OBJEXT) tty.$(OBJEXT) process.$(OBJEXT) \ -+ job.$(OBJEXT) event.$(OBJEXT) control.$(OBJEXT) \ -+ notify.$(OBJEXT) cfgfile.$(OBJEXT) - init_OBJECTS = $(am_init_OBJECTS) - am__DEPENDENCIES_1 = - init_DEPENDENCIES = ../upstart/libupstart.la ../nih/libnih.la \ -@@ -308,6 +308,7 @@ - - init_SOURCES = \ - main.c \ -+ tty.c tty.h\ - errors.h paths.h \ - process.c process.h \ - job.c job.h \ -@@ -468,6 +469,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_job.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_notify.Po at am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_process.Po at am__quote@ -+ at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tty.Po at am__quote@ - - .c.o: - @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< - -=== modified file 'init/control.c' ---- init/control.c 2007-03-13 17:25:34 +0000 -+++ init/control.c 2008-03-01 08:00:46 +0000 +diff -up init/control.c.old init/control.c +--- init/control.c.old 2009-06-22 11:59:11.000000000 +0200 ++++ init/control.c 2009-06-22 11:59:26.000000000 +0200 @@ -43,6 +43,7 @@ #include @@ -42,7 +9,7 @@ #include "control.h" #include "notify.h" -@@ -57,6 +58,11 @@ +@@ -57,6 +58,11 @@ static int control_log_priority ( static int control_job_find (void *data, pid_t pid, UpstartMessageType type, const char *pattern); @@ -54,7 +21,7 @@ static int control_job_query (void *data, pid_t pid, UpstartMessageType type, const char *name, unsigned int id); -@@ -96,6 +102,10 @@ +@@ -96,6 +102,10 @@ NihIo *control_io = NULL; static UpstartMessage message_handlers[] = { { -1, UPSTART_VERSION_QUERY, (UpstartMessageHandler)control_version_query }, @@ -65,7 +32,7 @@ { -1, UPSTART_LOG_PRIORITY, (UpstartMessageHandler)control_log_priority }, { -1, UPSTART_JOB_FIND, -@@ -308,6 +318,66 @@ +@@ -308,6 +318,66 @@ control_send_instance (pid_t pid, nih_io_send_message (control_io, message); } @@ -132,10 +99,9 @@ /** * control_version_query: - -=== modified file 'init/main.c' ---- init/main.c 2007-03-13 19:13:19 +0000 -+++ init/main.c 2008-03-02 03:14:59 +0000 +diff -up init/main.c.old init/main.c +--- init/main.c.old 2009-06-22 13:42:44.000000000 +0200 ++++ init/main.c 2009-06-22 13:42:55.000000000 +0200 @@ -58,6 +58,7 @@ #include "control.h" #include "cfgfile.h" @@ -144,7 +110,7 @@ /* Prototypes for static functions */ -@@ -190,6 +191,8 @@ +@@ -190,6 +191,8 @@ main (int argc, if (! (restart || rescue)) reset_console (); @@ -153,10 +119,41 @@ /* Set the PATH environment variable */ setenv ("PATH", PATH, TRUE); - -=== modified file 'init/process.c' ---- init/process.c 2007-10-11 21:08:38 +0000 -+++ init/process.c 2008-03-02 21:22:05 +0000 +diff -up init/Makefile.in.old init/Makefile.in +--- init/Makefile.in.old 2009-06-22 11:56:34.000000000 +0200 ++++ init/Makefile.in 2009-06-22 11:56:53.000000000 +0200 +@@ -72,9 +72,9 @@ am__EXEEXT_1 = test_process$(EXEEXT) tes + am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)" + sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM) + PROGRAMS = $(sbin_PROGRAMS) +-am_init_OBJECTS = main.$(OBJEXT) process.$(OBJEXT) job.$(OBJEXT) \ +- event.$(OBJEXT) control.$(OBJEXT) notify.$(OBJEXT) \ +- cfgfile.$(OBJEXT) ++am_init_OBJECTS = main.$(OBJEXT) tty.$(OBJEXT) process.$(OBJEXT) \ ++ job.$(OBJEXT) event.$(OBJEXT) control.$(OBJEXT) \ ++ notify.$(OBJEXT) cfgfile.$(OBJEXT) + init_OBJECTS = $(am_init_OBJECTS) + am__DEPENDENCIES_1 = + init_DEPENDENCIES = ../upstart/libupstart.la ../nih/libnih.la \ +@@ -314,6 +314,7 @@ dist_man_MANS = \ + + init_SOURCES = \ + main.c \ ++ tty.c tty.h\ + errors.h paths.h \ + process.c process.h \ + job.c job.h \ +@@ -474,6 +475,7 @@ distclean-compile: + @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_job.Po at am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_notify.Po at am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_process.Po at am__quote@ ++ at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/tty.Po at am__quote@ + + .c.o: + @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +diff -up init/process.c.old init/process.c +--- init/process.c.old 2009-06-22 13:45:48.000000000 +0200 ++++ init/process.c 2009-06-22 13:45:48.000000000 +0200 @@ -51,6 +51,7 @@ #include "job.h" #include "process.h" @@ -165,7 +162,7 @@ /* Prototypes for static functions */ -@@ -385,10 +386,11 @@ +@@ -385,10 +386,11 @@ process_setup_console (Job *job, break; @@ -179,10 +176,9 @@ case CONSOLE_OWNER: /* As CONSOLE_OUTPUT but with ^C, etc. sent */ - -=== added file 'init/tty.c' ---- init/tty.c 1970-01-01 00:00:00 +0000 -+++ init/tty.c 2008-03-02 21:18:03 +0000 +diff -up init/tty.c.old init/tty.c +--- init/tty.c.old 2009-06-22 13:45:48.000000000 +0200 ++++ init/tty.c 2009-06-22 13:45:48.000000000 +0200 @@ -0,0 +1,97 @@ +/* upstart + * @@ -281,10 +277,9 @@ + return current_tty (); +} + - -=== added file 'init/tty.h' ---- init/tty.h 1970-01-01 00:00:00 +0000 -+++ init/tty.h 2008-03-02 03:09:57 +0000 +diff -up init/tty.h.old init/tty.h +--- init/tty.h.old 2009-06-22 13:45:48.000000000 +0200 ++++ init/tty.h 2009-06-22 13:45:48.000000000 +0200 @@ -0,0 +1,35 @@ +/* upstart + * @@ -321,20 +316,10 @@ +NIH_END_EXTERN + +#endif /* INIT_TTY_H */ - -=== modified file 'po/ca.po' ---- po/ca.po 2007-10-11 21:20:43 +0000 -+++ po/ca.po 2008-02-28 15:56:28 +0000 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: upstart\n" - "Report-Msgid-Bugs-To: new at bugs.launchpad.net\n" --"POT-Creation-Date: 2007-10-11 22:13+0100\n" -+"POT-Creation-Date: 2008-02-28 10:56-0500\n" - "PO-Revision-Date: 2006-09-18 16:07+0000\n" - "Last-Translator: Jordi Mallach \n" - "Language-Team: Catalan \n" -@@ -22,46 +22,46 @@ +diff -up po/ca.po.old po/ca.po +--- po/ca.po.old 2009-06-22 13:45:48.000000000 +0200 ++++ po/ca.po 2009-06-22 13:45:48.000000000 +0200 +@@ -22,46 +22,46 @@ msgstr "" msgid "display list of commands" msgstr "mostra aquesta ajuda i surt" @@ -390,7 +375,7 @@ #, c-format msgid "Commands:\n" msgstr "" -@@ -70,7 +70,7 @@ +@@ -70,7 +70,7 @@ msgstr "" msgid "Unhandled Error" msgstr "Error no gestionat" @@ -399,7 +384,7 @@ msgid "Error while reading from descriptor" msgstr "S'ha produ?t un error en llegir del descriptor" -@@ -101,60 +101,60 @@ +@@ -101,60 +101,60 @@ msgstr "mostra aquesta ajuda i surt" msgid "output version information and exit" msgstr "mostra la informaci? sobre la versi? i surt" @@ -472,7 +457,7 @@ msgid "Unable to watch directory" msgstr "" -@@ -300,82 +300,92 @@ +@@ -305,82 +305,92 @@ msgstr "" msgid "Deleting %s job" msgstr "S'est? tornant a exiecutar %s" @@ -581,16 +566,7 @@ #, c-format msgid "Control request to unsubscribe %d from events" msgstr "" -@@ -405,7 +415,7 @@ - msgid "%s state changed from %s to %s" - msgstr "" - --#: init/job.c:817 util/initctl.c:787 -+#: init/job.c:817 util/initctl.c:828 - #, c-format - msgid "%s respawning too fast, stopped" - msgstr "" -@@ -480,7 +490,7 @@ +@@ -485,7 +495,7 @@ msgid "" "actually run /sbin/telinit." msgstr "" @@ -599,227 +575,19 @@ #: compat/sysv/shutdown.c:322 compat/sysv/telinit.c:91 msgid "Need to be root" msgstr "Es necessita ser root" -@@ -552,175 +562,180 @@ - msgid "Failed to open console: %s" - msgstr "" - --#: util/initctl.c:396 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 -+#: util/initctl.c:403 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 - #, c-format - msgid "Unable to send message: %s" - msgstr "No es pot enviar el missatge: %s" - --#: util/initctl.c:447 -+#: util/initctl.c:454 - #, fuzzy, c-format - msgid "Unable to receive message: %s" - msgstr "No es pot enviar el missatge: %s" - --#: util/initctl.c:464 -+#: util/initctl.c:471 - #, fuzzy, c-format - msgid "Unable to handle message: %s" - msgstr "No es pot enviar el missatge: %s" - --#: util/initctl.c:534 -+#: util/initctl.c:541 - #, c-format - msgid "%s (instance)" - msgstr "" - --#: util/initctl.c:605 -+#: util/initctl.c:612 - #, fuzzy, c-format - msgid "%s, process %d" - msgstr "Proc?s %s actiu (%d)" - --#: util/initctl.c:607 -+#: util/initctl.c:614 - #, fuzzy, c-format - msgid "%s, (main) process %d" - msgstr "Proc?s %s actiu (%d)" - --#: util/initctl.c:620 -+#: util/initctl.c:627 - #, fuzzy, c-format - msgid "\t%s process %d" - msgstr "Proc?s %s actiu (%d)" - --#: util/initctl.c:731 -+#: util/initctl.c:772 - #, c-format - msgid "%s: goal changed" - msgstr "" - --#: util/initctl.c:793 -+#: util/initctl.c:834 - #, fuzzy, c-format - msgid "%s %s process killed by %s signal" - msgstr "El proc?s %s (%d) ha estat mort pel senyal %d" - --#: util/initctl.c:796 -+#: util/initctl.c:837 - #, fuzzy, c-format - msgid "%s %s process killed by signal %d" - msgstr "El proc?s %s (%d) ha estat mort pel senyal %d" - --#: util/initctl.c:801 -+#: util/initctl.c:842 - #, fuzzy, c-format - msgid "%s %s process terminated with status %d" - msgstr "El proc?s %s (%d) ha finalitzat amb l'estat %d" - --#: util/initctl.c:890 -+#: util/initctl.c:931 - #, c-format - msgid "No jobs matching `%s'" - msgstr "" - --#: util/initctl.c:894 -+#: util/initctl.c:935 - msgid "No jobs registered" - msgstr "" - --#: util/initctl.c:1226 -+#: util/initctl.c:1267 - #, c-format - msgid "Unknown job: %s" - msgstr "" - --#: util/initctl.c:1228 -+#: util/initctl.c:1269 - #, c-format - msgid "Unknown job: #%d" - msgstr "" - --#: util/initctl.c:1271 -+#: util/initctl.c:1312 - #, fuzzy, c-format - msgid "Invalid job: %s" - msgstr "%s: l'opci? ?s inv?lida: --%s\n" - --#: util/initctl.c:1314 -+#: util/initctl.c:1355 - #, c-format - msgid "Job not changed: %s" - msgstr "" - --#: util/initctl.c:1462 -+#: util/initctl.c:1503 - #, c-format - msgid "%s event failed" - msgstr "" - --#: util/initctl.c:1581 util/initctl.c:1618 util/initctl.c:1671 --#: util/initctl.c:1708 util/initctl.c:1761 -+#: util/initctl.c:1622 util/initctl.c:1659 util/initctl.c:1712 -+#: util/initctl.c:1749 util/initctl.c:1802 - #, fuzzy, c-format - msgid "%s: invalid job id: %s\n" - msgstr "%s: l'opci? ?s inv?lida: --%s\n" - --#: util/initctl.c:1603 util/initctl.c:1693 util/initctl.c:1749 -+#: util/initctl.c:1644 util/initctl.c:1734 util/initctl.c:1790 - #, c-format +@@ -657,6 +667,11 @@ msgstr "%s: l'opci? ?s inv?lida: --%s msgid "%s: missing job name\n" msgstr "" --#: util/initctl.c:1826 -+#: util/initctl.c:1864 util/initctl.c:1895 ++#: util/initctl.c:1889 +#, fuzzy, c-format +msgid "%s: missing device name\n" +msgstr "%s: manca un argument: %s\n" + -+#: util/initctl.c:1928 + #: util/initctl.c:1826 #, c-format msgid "%s: missing event name\n" - msgstr "" - --#: util/initctl.c:1930 -+#: util/initctl.c:2032 - #, fuzzy, c-format - msgid "%s: missing priority\n" - msgstr "%s: manca un argument: %s\n" - --#: util/initctl.c:1948 -+#: util/initctl.c:2050 - #, fuzzy, c-format - msgid "%s: invalid priority\n" - msgstr "%s: l'opci? ?s inv?lida: -%c\n" - --#: util/initctl.c:1967 -+#: util/initctl.c:2069 - msgid "destination process" - msgstr "" - --#: util/initctl.c:1980 util/initctl.c:1996 util/initctl.c:2012 -+#: util/initctl.c:2082 util/initctl.c:2098 util/initctl.c:2114 - msgid "arguments are job ids, instead of names" - msgstr "" - --#: util/initctl.c:1982 util/initctl.c:1998 util/initctl.c:2014 --#: util/initctl.c:2026 util/initctl.c:2054 -+#: util/initctl.c:2084 util/initctl.c:2100 util/initctl.c:2116 -+#: util/initctl.c:2128 util/initctl.c:2156 - msgid "show job ids, as well as names" - msgstr "" - --#: util/initctl.c:1984 -+#: util/initctl.c:2086 - msgid "do not wait for job to start before exiting" - msgstr "" - --#: util/initctl.c:2000 -+#: util/initctl.c:2102 - msgid "do not wait for job to stop before exiting" - msgstr "" - --#: util/initctl.c:2038 -+#: util/initctl.c:2140 - msgid "show job and event ids, as well as names" - msgstr "" - --#: util/initctl.c:2040 -+#: util/initctl.c:2142 - msgid "do not wait for event to finish before exiting" - msgstr "" - --#: util/initctl.c:2042 -+#: util/initctl.c:2144 - msgid "set environment variable in jobs changed by this event" - msgstr "" - --#: util/initctl.c:2066 -+#: util/initctl.c:2168 - msgid "show event ids, as well as names" - msgstr "" - --#: util/initctl.c:2096 -+#: util/initctl.c:2216 - msgid "Job" - msgstr "" - --#: util/initctl.c:2103 -+#: util/initctl.c:2223 - msgid "Event" - msgstr "" - --#: util/initctl.c:2111 util/initctl.c:2118 util/initctl.c:2125 -+#: util/initctl.c:2231 util/initctl.c:2238 util/initctl.c:2245 - msgid "JOB..." - msgstr "" - --#: util/initctl.c:2112 -+#: util/initctl.c:2232 - msgid "Start jobs." - msgstr "" - --#: util/initctl.c:2113 -+#: util/initctl.c:2233 - msgid "" - "JOB is one or more job names that are to be started.\n" - "\n" -@@ -728,11 +743,11 @@ +@@ -733,11 +748,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -833,7 +601,7 @@ msgid "" "JOB is one or more job names that are to be stopped.\n" "\n" -@@ -740,11 +755,11 @@ +@@ -745,11 +760,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -847,7 +615,7 @@ msgid "" "JOB is one or more job names that are to be queried.\n" "\n" -@@ -752,19 +767,19 @@ +@@ -757,19 +772,19 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -871,7 +639,7 @@ msgid "" "EVENT is the name of an event the init daemon should emit, which may have " "zero or more arguments specified by ARG. These may be matched in the job " -@@ -775,27 +790,35 @@ +@@ -780,27 +795,35 @@ msgid "" "taken from the environment or ignored if not present there." msgstr "" @@ -913,20 +681,10 @@ msgid "" "PRIORITY may be one of `debug' (messages useful for debugging upstart are " "logged, equivalent to --debug on kernel command-line); `info' (messages " - -=== modified file 'po/fr.po' ---- po/fr.po 2007-10-11 21:20:43 +0000 -+++ po/fr.po 2008-02-28 15:56:29 +0000 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: upstart\n" - "Report-Msgid-Bugs-To: new at bugs.launchpad.net\n" --"POT-Creation-Date: 2007-10-11 22:13+0100\n" -+"POT-Creation-Date: 2008-02-28 10:56-0500\n" - "PO-Revision-Date: 2006-10-03 23:30+0000\n" - "Last-Translator: Nicolas Velin \n" - "Language-Team: French \n" -@@ -22,46 +22,46 @@ +diff -up po/fr.po.old po/fr.po +--- po/fr.po.old 2009-06-22 13:45:48.000000000 +0200 ++++ po/fr.po 2009-06-22 13:45:48.000000000 +0200 +@@ -22,46 +22,46 @@ msgstr "" msgid "display list of commands" msgstr "afficher cette aide et quitter" @@ -982,7 +740,7 @@ #, c-format msgid "Commands:\n" msgstr "" -@@ -70,7 +70,7 @@ +@@ -70,7 +70,7 @@ msgstr "" msgid "Unhandled Error" msgstr "Erreur non trait?e" @@ -991,7 +749,7 @@ #, fuzzy msgid "Error while reading from descriptor" msgstr "Erreur lors de la lecture du descripteur" -@@ -106,60 +106,60 @@ +@@ -106,60 +106,60 @@ msgstr "afficher cette aide et quitter" msgid "output version information and exit" msgstr "affichage de l'information de version et sortie" @@ -1064,7 +822,7 @@ #, fuzzy msgid "Unable to watch directory" msgstr "Impossible d'accepter la connexion : %s" -@@ -310,82 +310,92 @@ +@@ -315,82 +315,92 @@ msgstr "Impossible d'accepter la connexi msgid "Deleting %s job" msgstr "R?-?xecution de %s" @@ -1173,16 +931,7 @@ #, fuzzy, c-format msgid "Control request to unsubscribe %d from events" msgstr "Demande de contr?le pour d?sinscrire %d des ?v?nements" -@@ -415,7 +425,7 @@ - msgid "%s state changed from %s to %s" - msgstr "L'?tat de %s a ?t? chang? de %s ? %s" - --#: init/job.c:817 util/initctl.c:787 -+#: init/job.c:817 util/initctl.c:828 - #, fuzzy, c-format - msgid "%s respawning too fast, stopped" - msgstr "R?surection de %s trop rapide, arret" -@@ -491,7 +501,7 @@ +@@ -496,7 +506,7 @@ msgid "" "actually run /sbin/telinit." msgstr "" @@ -1191,227 +940,19 @@ #: compat/sysv/shutdown.c:322 compat/sysv/telinit.c:91 #, fuzzy msgid "Need to be root" -@@ -567,175 +577,180 @@ - msgid "Failed to open console: %s" - msgstr "Echec lors de l'ouverture de la console : %s" - --#: util/initctl.c:396 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 -+#: util/initctl.c:403 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 - #, c-format - msgid "Unable to send message: %s" - msgstr "Impossible d'envoyer le message : %s" - --#: util/initctl.c:447 -+#: util/initctl.c:454 - #, fuzzy, c-format - msgid "Unable to receive message: %s" - msgstr "Impossible d'envoyer le message : %s" - --#: util/initctl.c:464 -+#: util/initctl.c:471 - #, fuzzy, c-format - msgid "Unable to handle message: %s" - msgstr "Impossible d'envoyer le message : %s" - --#: util/initctl.c:534 -+#: util/initctl.c:541 - #, c-format - msgid "%s (instance)" - msgstr "" - --#: util/initctl.c:605 -+#: util/initctl.c:612 - #, fuzzy, c-format - msgid "%s, process %d" - msgstr "processus %s (%d) actif" - --#: util/initctl.c:607 -+#: util/initctl.c:614 - #, fuzzy, c-format - msgid "%s, (main) process %d" - msgstr "processus %s (%d) actif" - --#: util/initctl.c:620 -+#: util/initctl.c:627 - #, fuzzy, c-format - msgid "\t%s process %d" - msgstr "processus %s (%d) actif" - --#: util/initctl.c:731 -+#: util/initctl.c:772 - #, fuzzy, c-format - msgid "%s: goal changed" - msgstr "L'?tat de %s a ?t? chang? de %s ? %s" - --#: util/initctl.c:793 -+#: util/initctl.c:834 - #, fuzzy, c-format - msgid "%s %s process killed by %s signal" - msgstr "Le processus %s (%d) a ?t? tu? par le signal %d" - --#: util/initctl.c:796 -+#: util/initctl.c:837 - #, fuzzy, c-format - msgid "%s %s process killed by signal %d" - msgstr "Le processus %s (%d) a ?t? tu? par le signal %d" - --#: util/initctl.c:801 -+#: util/initctl.c:842 - #, fuzzy, c-format - msgid "%s %s process terminated with status %d" - msgstr "le processus %s (%d) s'est termin? en retournant %d" - --#: util/initctl.c:890 -+#: util/initctl.c:931 - #, c-format - msgid "No jobs matching `%s'" - msgstr "" - --#: util/initctl.c:894 -+#: util/initctl.c:935 - msgid "No jobs registered" - msgstr "" - --#: util/initctl.c:1226 -+#: util/initctl.c:1267 - #, fuzzy, c-format - msgid "Unknown job: %s" - msgstr "ignore la strophe inconnue" - --#: util/initctl.c:1228 -+#: util/initctl.c:1269 - #, c-format - msgid "Unknown job: #%d" - msgstr "" - --#: util/initctl.c:1271 -+#: util/initctl.c:1312 - #, fuzzy, c-format - msgid "Invalid job: %s" - msgstr "%s : option invalide : --%s\n" - --#: util/initctl.c:1314 -+#: util/initctl.c:1355 - #, c-format - msgid "Job not changed: %s" - msgstr "" - --#: util/initctl.c:1462 -+#: util/initctl.c:1503 - #, c-format - msgid "%s event failed" - msgstr "" - --#: util/initctl.c:1581 util/initctl.c:1618 util/initctl.c:1671 --#: util/initctl.c:1708 util/initctl.c:1761 -+#: util/initctl.c:1622 util/initctl.c:1659 util/initctl.c:1712 -+#: util/initctl.c:1749 util/initctl.c:1802 - #, fuzzy, c-format - msgid "%s: invalid job id: %s\n" - msgstr "%s : option invalide : --%s\n" - --#: util/initctl.c:1603 util/initctl.c:1693 util/initctl.c:1749 -+#: util/initctl.c:1644 util/initctl.c:1734 util/initctl.c:1790 - #, c-format +@@ -672,6 +682,11 @@ msgstr "%s : option invalide : --%s\n" msgid "%s: missing job name\n" msgstr "" --#: util/initctl.c:1826 -+#: util/initctl.c:1864 util/initctl.c:1895 ++#: util/initctl.c:1889 +#, fuzzy, c-format +msgid "%s: missing device name\n" -+msgstr "%s : argument manquant : %s\n" ++msgstr "%s: argument manquant : %s\n" + -+#: util/initctl.c:1928 + #: util/initctl.c:1826 #, c-format msgid "%s: missing event name\n" - msgstr "" - --#: util/initctl.c:1930 -+#: util/initctl.c:2032 - #, fuzzy, c-format - msgid "%s: missing priority\n" - msgstr "%s : argument manquant : %s\n" - --#: util/initctl.c:1948 -+#: util/initctl.c:2050 - #, fuzzy, c-format - msgid "%s: invalid priority\n" - msgstr "%s: option ivalide: -%c\n" - --#: util/initctl.c:1967 -+#: util/initctl.c:2069 - msgid "destination process" - msgstr "" - --#: util/initctl.c:1980 util/initctl.c:1996 util/initctl.c:2012 -+#: util/initctl.c:2082 util/initctl.c:2098 util/initctl.c:2114 - msgid "arguments are job ids, instead of names" - msgstr "" - --#: util/initctl.c:1982 util/initctl.c:1998 util/initctl.c:2014 --#: util/initctl.c:2026 util/initctl.c:2054 -+#: util/initctl.c:2084 util/initctl.c:2100 util/initctl.c:2116 -+#: util/initctl.c:2128 util/initctl.c:2156 - msgid "show job ids, as well as names" - msgstr "" - --#: util/initctl.c:1984 -+#: util/initctl.c:2086 - msgid "do not wait for job to start before exiting" - msgstr "" - --#: util/initctl.c:2000 -+#: util/initctl.c:2102 - msgid "do not wait for job to stop before exiting" - msgstr "" - --#: util/initctl.c:2038 -+#: util/initctl.c:2140 - msgid "show job and event ids, as well as names" - msgstr "" - --#: util/initctl.c:2040 -+#: util/initctl.c:2142 - msgid "do not wait for event to finish before exiting" - msgstr "" - --#: util/initctl.c:2042 -+#: util/initctl.c:2144 - msgid "set environment variable in jobs changed by this event" - msgstr "" - --#: util/initctl.c:2066 -+#: util/initctl.c:2168 - msgid "show event ids, as well as names" - msgstr "" - --#: util/initctl.c:2096 -+#: util/initctl.c:2216 - msgid "Job" - msgstr "" - --#: util/initctl.c:2103 -+#: util/initctl.c:2223 - msgid "Event" - msgstr "" - --#: util/initctl.c:2111 util/initctl.c:2118 util/initctl.c:2125 -+#: util/initctl.c:2231 util/initctl.c:2238 util/initctl.c:2245 - msgid "JOB..." - msgstr "" - --#: util/initctl.c:2112 -+#: util/initctl.c:2232 - msgid "Start jobs." - msgstr "" - --#: util/initctl.c:2113 -+#: util/initctl.c:2233 - msgid "" - "JOB is one or more job names that are to be started.\n" - "\n" -@@ -743,11 +758,11 @@ +@@ -748,11 +763,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -1425,7 +966,7 @@ msgid "" "JOB is one or more job names that are to be stopped.\n" "\n" -@@ -755,11 +770,11 @@ +@@ -760,11 +775,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -1439,7 +980,7 @@ msgid "" "JOB is one or more job names that are to be queried.\n" "\n" -@@ -767,19 +782,19 @@ +@@ -772,19 +787,19 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -1463,7 +1004,7 @@ msgid "" "EVENT is the name of an event the init daemon should emit, which may have " "zero or more arguments specified by ARG. These may be matched in the job " -@@ -790,27 +805,35 @@ +@@ -795,27 +810,35 @@ msgid "" "taken from the environment or ignored if not present there." msgstr "" @@ -1505,20 +1046,10 @@ msgid "" "PRIORITY may be one of `debug' (messages useful for debugging upstart are " "logged, equivalent to --debug on kernel command-line); `info' (messages " - -=== modified file 'po/sv.po' ---- po/sv.po 2007-10-11 21:20:43 +0000 -+++ po/sv.po 2008-02-28 15:56:29 +0000 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: upstart\n" - "Report-Msgid-Bugs-To: new at bugs.launchpad.net\n" --"POT-Creation-Date: 2007-10-11 22:13+0100\n" -+"POT-Creation-Date: 2008-02-28 10:56-0500\n" - "PO-Revision-Date: 2006-10-05 05:38+0000\n" - "Last-Translator: Daniel Nylander \n" - "Language-Team: Swedish \n" -@@ -21,46 +21,46 @@ +diff -up po/sv.po.old po/sv.po +--- po/sv.po.old 2009-06-22 13:45:48.000000000 +0200 ++++ po/sv.po 2009-06-22 13:45:48.000000000 +0200 +@@ -21,46 +21,46 @@ msgstr "" msgid "display list of commands" msgstr "" @@ -1574,7 +1105,7 @@ #, c-format msgid "Commands:\n" msgstr "" -@@ -69,7 +69,7 @@ +@@ -69,7 +69,7 @@ msgstr "" msgid "Unhandled Error" msgstr "" @@ -1583,7 +1114,7 @@ msgid "Error while reading from descriptor" msgstr "" -@@ -100,60 +100,60 @@ +@@ -100,60 +100,60 @@ msgstr "" msgid "output version information and exit" msgstr "" @@ -1617,15 +1148,13 @@ msgid "%s: illegal argument: %s\n" msgstr "" +-#: nih/option.c:862 +#: nih/option.c:858 -+msgid "Usage" -+msgstr "" -+ - #: nih/option.c:862 --msgid "Usage" --msgstr "" -- + msgid "Usage" + msgstr "" + -#: nih/option.c:866 ++#: nih/option.c:862 msgid "[OPTION]..." msgstr "" @@ -1658,7 +1187,7 @@ msgid "Unable to watch directory" msgstr "" -@@ -291,79 +291,87 @@ +@@ -295,79 +295,87 @@ msgstr "" msgid "Deleting %s job" msgstr "" @@ -1762,16 +1291,7 @@ #, c-format msgid "Control request to unsubscribe %d from events" msgstr "" -@@ -393,7 +401,7 @@ - msgid "%s state changed from %s to %s" - msgstr "" - --#: init/job.c:817 util/initctl.c:787 -+#: init/job.c:817 util/initctl.c:828 - #, c-format - msgid "%s respawning too fast, stopped" - msgstr "" -@@ -468,7 +476,7 @@ +@@ -472,7 +480,7 @@ msgid "" "actually run /sbin/telinit." msgstr "" @@ -1780,227 +1300,19 @@ #: compat/sysv/shutdown.c:322 compat/sysv/telinit.c:91 msgid "Need to be root" msgstr "" -@@ -538,175 +546,180 @@ - msgid "Failed to open console: %s" - msgstr "" - --#: util/initctl.c:396 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 -+#: util/initctl.c:403 compat/sysv/shutdown.c:513 compat/sysv/telinit.c:138 - #, c-format - msgid "Unable to send message: %s" - msgstr "" - --#: util/initctl.c:447 -+#: util/initctl.c:454 - #, c-format - msgid "Unable to receive message: %s" - msgstr "" - --#: util/initctl.c:464 -+#: util/initctl.c:471 - #, c-format - msgid "Unable to handle message: %s" - msgstr "" - --#: util/initctl.c:534 -+#: util/initctl.c:541 - #, c-format - msgid "%s (instance)" - msgstr "" - --#: util/initctl.c:605 -+#: util/initctl.c:612 - #, c-format - msgid "%s, process %d" - msgstr "" - --#: util/initctl.c:607 -+#: util/initctl.c:614 - #, c-format - msgid "%s, (main) process %d" - msgstr "" - --#: util/initctl.c:620 -+#: util/initctl.c:627 - #, c-format - msgid "\t%s process %d" - msgstr "" - --#: util/initctl.c:731 -+#: util/initctl.c:772 - #, c-format - msgid "%s: goal changed" - msgstr "" - --#: util/initctl.c:793 -+#: util/initctl.c:834 - #, c-format - msgid "%s %s process killed by %s signal" - msgstr "" - --#: util/initctl.c:796 -+#: util/initctl.c:837 - #, c-format - msgid "%s %s process killed by signal %d" - msgstr "" - --#: util/initctl.c:801 -+#: util/initctl.c:842 - #, c-format - msgid "%s %s process terminated with status %d" - msgstr "" - --#: util/initctl.c:890 -+#: util/initctl.c:931 - #, c-format - msgid "No jobs matching `%s'" - msgstr "" - --#: util/initctl.c:894 -+#: util/initctl.c:935 - msgid "No jobs registered" - msgstr "" - --#: util/initctl.c:1226 -+#: util/initctl.c:1267 - #, c-format - msgid "Unknown job: %s" - msgstr "" - --#: util/initctl.c:1228 -+#: util/initctl.c:1269 - #, c-format - msgid "Unknown job: #%d" - msgstr "" - --#: util/initctl.c:1271 -+#: util/initctl.c:1312 - #, c-format - msgid "Invalid job: %s" - msgstr "" - --#: util/initctl.c:1314 -+#: util/initctl.c:1355 - #, c-format - msgid "Job not changed: %s" - msgstr "" - --#: util/initctl.c:1462 -+#: util/initctl.c:1503 - #, c-format - msgid "%s event failed" - msgstr "" - --#: util/initctl.c:1581 util/initctl.c:1618 util/initctl.c:1671 --#: util/initctl.c:1708 util/initctl.c:1761 -+#: util/initctl.c:1622 util/initctl.c:1659 util/initctl.c:1712 -+#: util/initctl.c:1749 util/initctl.c:1802 - #, c-format - msgid "%s: invalid job id: %s\n" - msgstr "" - --#: util/initctl.c:1603 util/initctl.c:1693 util/initctl.c:1749 -+#: util/initctl.c:1644 util/initctl.c:1734 util/initctl.c:1790 - #, c-format +@@ -642,6 +650,11 @@ msgstr "" msgid "%s: missing job name\n" msgstr "" --#: util/initctl.c:1826 -+#: util/initctl.c:1864 util/initctl.c:1895 -+#, c-format ++#: util/initctl.c:1889 ++#, fuzzy, c-format +msgid "%s: missing device name\n" +msgstr "" + -+#: util/initctl.c:1928 + #: util/initctl.c:1826 #, c-format msgid "%s: missing event name\n" - msgstr "" - --#: util/initctl.c:1930 -+#: util/initctl.c:2032 - #, c-format - msgid "%s: missing priority\n" - msgstr "" - --#: util/initctl.c:1948 -+#: util/initctl.c:2050 - #, c-format - msgid "%s: invalid priority\n" - msgstr "" - --#: util/initctl.c:1967 -+#: util/initctl.c:2069 - msgid "destination process" - msgstr "" - --#: util/initctl.c:1980 util/initctl.c:1996 util/initctl.c:2012 -+#: util/initctl.c:2082 util/initctl.c:2098 util/initctl.c:2114 - msgid "arguments are job ids, instead of names" - msgstr "" - --#: util/initctl.c:1982 util/initctl.c:1998 util/initctl.c:2014 --#: util/initctl.c:2026 util/initctl.c:2054 -+#: util/initctl.c:2084 util/initctl.c:2100 util/initctl.c:2116 -+#: util/initctl.c:2128 util/initctl.c:2156 - msgid "show job ids, as well as names" - msgstr "" - --#: util/initctl.c:1984 -+#: util/initctl.c:2086 - msgid "do not wait for job to start before exiting" - msgstr "" - --#: util/initctl.c:2000 -+#: util/initctl.c:2102 - msgid "do not wait for job to stop before exiting" - msgstr "" - --#: util/initctl.c:2038 -+#: util/initctl.c:2140 - msgid "show job and event ids, as well as names" - msgstr "" - --#: util/initctl.c:2040 -+#: util/initctl.c:2142 - msgid "do not wait for event to finish before exiting" - msgstr "" - --#: util/initctl.c:2042 -+#: util/initctl.c:2144 - msgid "set environment variable in jobs changed by this event" - msgstr "" - --#: util/initctl.c:2066 -+#: util/initctl.c:2168 - msgid "show event ids, as well as names" - msgstr "" - --#: util/initctl.c:2096 -+#: util/initctl.c:2216 - msgid "Job" - msgstr "" - --#: util/initctl.c:2103 -+#: util/initctl.c:2223 - msgid "Event" - msgstr "" - --#: util/initctl.c:2111 util/initctl.c:2118 util/initctl.c:2125 -+#: util/initctl.c:2231 util/initctl.c:2238 util/initctl.c:2245 - msgid "JOB..." - msgstr "" - --#: util/initctl.c:2112 -+#: util/initctl.c:2232 - msgid "Start jobs." - msgstr "" - --#: util/initctl.c:2113 -+#: util/initctl.c:2233 - msgid "" - "JOB is one or more job names that are to be started.\n" - "\n" -@@ -714,11 +727,11 @@ +@@ -718,11 +731,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -2014,7 +1326,7 @@ msgid "" "JOB is one or more job names that are to be stopped.\n" "\n" -@@ -726,11 +739,11 @@ +@@ -730,11 +743,11 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -2028,7 +1340,7 @@ msgid "" "JOB is one or more job names that are to be queried.\n" "\n" -@@ -738,19 +751,19 @@ +@@ -742,19 +755,19 @@ msgid "" "uniquely identifying a particular instance of a job." msgstr "" @@ -2052,7 +1364,7 @@ msgid "" "EVENT is the name of an event the init daemon should emit, which may have " "zero or more arguments specified by ARG. These may be matched in the job " -@@ -761,27 +774,35 @@ +@@ -765,27 +778,35 @@ msgid "" "taken from the environment or ignored if not present there." msgstr "" @@ -2094,11 +1406,10 @@ msgid "" "PRIORITY may be one of `debug' (messages useful for debugging upstart are " "logged, equivalent to --debug on kernel command-line); `info' (messages " - -=== modified file 'upstart/message.c' ---- upstart/message.c 2007-03-16 17:18:00 +0000 -+++ upstart/message.c 2008-02-29 03:13:11 +0000 -@@ -261,6 +261,20 @@ +diff -up upstart/message.c.old upstart/message.c +--- upstart/message.c.old 2009-06-22 13:45:48.000000000 +0200 ++++ upstart/message.c 2009-06-22 13:45:48.000000000 +0200 +@@ -261,6 +261,20 @@ upstart_message_newv (const void break; case UPSTART_VERSION_QUERY: break; @@ -2119,7 +1430,7 @@ case UPSTART_LOG_PRIORITY: if (upstart_push_packv (message, "u", args_copy)) goto error; -@@ -550,6 +564,9 @@ +@@ -550,6 +564,9 @@ upstart_message_handle (const void * case UPSTART_VERSION_QUERY: ret = handler (data, cred.pid, type); break; @@ -2129,7 +1440,7 @@ case UPSTART_LOG_PRIORITY: { NihLogLevel priority; -@@ -559,6 +576,41 @@ +@@ -559,6 +576,41 @@ upstart_message_handle (const void * ret = handler (data, cred.pid, type, priority); break; } @@ -2171,11 +1482,10 @@ case UPSTART_VERSION: { char *version = NULL; - -=== modified file 'upstart/message.h' ---- upstart/message.h 2007-03-13 17:27:09 +0000 -+++ upstart/message.h 2008-02-28 04:52:36 +0000 -@@ -57,11 +57,20 @@ +diff -up upstart/message.h.old upstart/message.h +--- upstart/message.h.old 2009-06-22 13:45:48.000000000 +0200 ++++ upstart/message.h 2009-06-22 13:45:48.000000000 +0200 +@@ -57,11 +57,20 @@ typedef enum upstart_message_type { * UPSTART_VERSION message in reply. * * Clients may send UPSTART_LOG_PRIORITY, without any reply. @@ -2196,11 +1506,10 @@ /* Job requests and responses. * - -=== modified file 'util/initctl.c' ---- util/initctl.c 2007-03-13 18:08:31 +0000 -+++ util/initctl.c 2008-03-02 21:05:23 +0000 -@@ -99,6 +99,9 @@ +diff -up util/initctl.c.old util/initctl.c +--- util/initctl.c.old 2009-06-22 13:45:48.000000000 +0200 ++++ util/initctl.c 2009-06-22 13:45:48.000000000 +0200 +@@ -99,6 +99,9 @@ static void job_info_output (const JobI static char *output_name (unsigned int id, const char *name); /* Prototypes of response handler functions */ @@ -2210,7 +1519,7 @@ static int handle_version (void *data, pid_t pid, UpstartMessageType type, const char *version); -@@ -159,6 +162,8 @@ +@@ -159,6 +162,8 @@ static int handle_unknown_message (void /* Prototypes for option and command functions */ int env_option (NihOption *option, const char *arg); @@ -2219,7 +1528,7 @@ int start_action (NihCommand *command, char * const *args); int stop_action (NihCommand *command, char * const *args); int status_action (NihCommand *command, char * const *args); -@@ -296,6 +301,8 @@ +@@ -296,6 +301,8 @@ static UpstartMessage handlers[] = { { -1, UPSTART_VERSION, (UpstartMessageHandler)handle_version }, @@ -2228,7 +1537,7 @@ { -1, UPSTART_JOB, (UpstartMessageHandler)handle_job }, { -1, UPSTART_JOB_FINISHED, -@@ -687,6 +694,40 @@ +@@ -687,6 +694,40 @@ handle_version (void *data } /** @@ -2269,7 +1578,7 @@ * handle_job: * @data: data passed to handler, * @pid: origin of message, -@@ -1802,6 +1843,61 @@ +@@ -1802,6 +1843,61 @@ list_action (NihCommand *command, } /** @@ -2331,7 +1640,7 @@ * emit_action: * @command: NihCommand invoked, * @args: command-line arguments. -@@ -2079,6 +2175,24 @@ +@@ -2079,6 +2175,24 @@ NihOption version_options[] = { }; /** @@ -2356,7 +1665,7 @@ * log_priority_options: * * Command-line options accepted for the log-priority command. -@@ -2156,6 +2270,16 @@ +@@ -2156,6 +2270,16 @@ static NihCommand commands[] = { NULL, &event_commands, events_options, events_action }, @@ -2373,4 +1682,3 @@ { "version", NULL, N_("Request the version of the init daemon."), NULL, - Index: upstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/upstart/F-11/upstart.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- upstart.spec 27 Apr 2009 20:06:59 -0000 1.30 +++ upstart.spec 22 Jul 2009 09:18:49 -0000 1.31 @@ -1,6 +1,6 @@ Name: upstart -Version: 0.3.9 -Release: 24%{?dist} +Version: 0.3.11 +Release: 1%{?dist} Summary: An event-driven init system Group: System Environment/Base @@ -8,15 +8,13 @@ License: GPLv2+ URL: http://upstart.ubuntu.com Source0: http://upstart.ubuntu.com/download/0.3/upstart-%{version}.tar.bz2 Source1: events.5 -Patch0: upstart-gcc43.patch -Patch1: upstart-force-on-shutdown-reboot.patch -Patch2: upstart-tty-stack.patch -Patch3: upstart-rpm.patch -Patch4: upstart-fedora-buglist.patch -Patch5: upstart-telinit-u.patch -Patch6: upstart-initctl-man.patch -Patch7: upstart-save-state-across-reexec.patch -Patch8: upstart-audit-events.patch +Patch0: upstart-force-on-shutdown-reboot.patch +Patch1: upstart-tty-stack.patch +Patch2: upstart-fedora-buglist.patch +Patch3: upstart-telinit-u.patch +Patch4: upstart-initctl-man.patch +Patch5: upstart-save-state-across-reexec.patch +Patch6: upstart-audit-events.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Obsoletes: SysVinit < 2.86-24, sysvinit < 2.86-24 Provides: SysVinit = 2.86-24, sysvinit = 2.86-24 @@ -30,14 +28,12 @@ during shutdown and supervising them whi %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -%patch3 +%patch1 +%patch2 -p1 +%patch3 -p1 %patch4 -p1 %patch5 -p1 %patch6 -p1 -%patch7 -p1 -%patch8 -p1 %build %configure --enable-compat=sysv --sbindir=/sbin --libdir=/%{_lib} @@ -103,6 +99,9 @@ rm -rf %{buildroot} %{_mandir}/man8/telinit.8.gz %changelog +* Wed Jul 22 2009 Petr Lautrbach - 0.3.11-1 +- Update to 0.3.11 + * Mon Apr 27 2009 Bill Nottingham - 0.3.9-24 - Apply the audit patch correctly (#470661) From than at fedoraproject.org Wed Jul 22 09:39:35 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 09:39:35 +0000 (UTC) Subject: rpms/kdegames/devel kdegames-4.2.98-trademarks.patch, NONE, 1.1 .cvsignore, 1.68, 1.69 kdegames.spec, 1.137, 1.138 sources, 1.72, 1.73 kdegames-4.2.96-trademarks.patch, 1.1, NONE Message-ID: <20090722093935.A9FC611C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32251 Modified Files: .cvsignore kdegames.spec sources Added Files: kdegames-4.2.98-trademarks.patch Removed Files: kdegames-4.2.96-trademarks.patch Log Message: 4.3rc3 kdegames-4.2.98-trademarks.patch: README | 12 ++++++-- doc/kbattleship/index.docbook | 37 +++++++++++++------------- doc/ktron/index.docbook | 11 ++++---- kbattleship/src/kbattleship.desktop | 14 +++------- kbattleship/src/kbattleship.protocol | 48 +++++++++++++++++------------------ kbattleship/src/main.cpp | 4 +- ktron/main.cpp | 5 ++- ktron/player.cpp | 2 - 8 files changed, 69 insertions(+), 64 deletions(-) --- NEW FILE kdegames-4.2.98-trademarks.patch --- diff -up kdegames-4.2.98/doc/kbattleship/index.docbook.trademarks kdegames-4.2.98/doc/kbattleship/index.docbook --- kdegames-4.2.98/doc/kbattleship/index.docbook.trademarks 2009-02-26 10:11:22.000000000 +0100 +++ kdegames-4.2.98/doc/kbattleship/index.docbook 2009-07-22 11:30:24.000000000 +0200 @@ -1,6 +1,6 @@ + KSinkShips"> @@ -8,7 +8,7 @@ -The &kbattleship; Handbook +The &kappname; Handbook @@ -57,16 +57,17 @@ -&kbattleship; is a network-enabled implementation of the famous Battle Ship game for &kde;. +&kappname; is a network-enabled implementation of the famous ship sinking game for &kde;. KDE kdegames -kbattleship +ksinkships game -battleship -battle +sinkships +sink +ships @@ -76,7 +77,7 @@ Gametype:Strategy, Board Number of possible players:Two -&kbattleship; is a Battle Ship game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others +&kappname; is a ship sinking game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. @@ -85,14 +86,14 @@ ships in turns without knowing where the How to Play Objective:Sink all of the opponent???s ships before the opponent sink all the ships of your own. -If you want to play &kbattleship;, you will need two players, either play +If you want to play &kappname;, you will need two players, either play against the computer or in a network against another player. To play against your computer, first select the difficulty level on the right of the status bar, and then select Single player on the welcome screen, or directly on the Game menu. To start a network game, one player has to host the game by selecting Host network game on the welcome screen, or choosing Game Host Game.... A dialog box opens which asks for a Nickname: and Port:. Normally, -&kbattleship; will suggest your full name, but you can enter any string +&kappname; will suggest your full name, but you can enter any string you want. The predefined port should be ok. However, if you encounter problems, you can choose any other free port above 1024. @@ -186,10 +187,10 @@ The first player to destroy all their op Multiplayer support -&kbattleship; can be played online on any GGZ Gaming Zone site. You can +&kappname; can be played online on any GGZ Gaming Zone site. You can find other players there, and compete against them. Just enter one -of the available Battleship rooms with any GGZ core client, such as -kggz, and &kbattleship; will be offered to you as your favourite +of the available rooms with any GGZ core client, such as +kggz, and &kappname; will be offered to you as your favourite game client. If a GGZ core client is installed, you can try out GGZ by visiting the community site. @@ -197,7 +198,7 @@ out GGZ by visiting the Credits and Licenses -&kbattleship; Copyright 2000-2007 +&kappname; Copyright 2000-2007 Authors diff -up kdegames-4.2.98/doc/ktron/index.docbook.trademarks kdegames-4.2.98/doc/ktron/index.docbook --- kdegames-4.2.98/doc/ktron/index.docbook.trademarks 2009-02-26 10:11:14.000000000 +0100 +++ kdegames-4.2.98/doc/ktron/index.docbook 2009-07-22 11:30:24.000000000 +0200 @@ -1,6 +1,6 @@ + KSnakeDuel"> @@ -61,7 +61,7 @@ -&kappname; is a simple Tron clone for &kde;, which you can +&kappname; is a simple snake duel game for &kde;, which you can play alone or against a friend. @@ -69,11 +69,12 @@ play alone or against a friend. KDE kdegames -KTron +KSnakeDuel game -tron +snakeduel KSnake snake +duel @@ -81,7 +82,7 @@ play alone or against a friend. Introduction -&kappname; is a simple Tron-Clone for the +&kappname; is a simple snake duel game for the K Desktop Environment. You can play &kappname; against the computer or a friend. The aim of the game is to live longer than your opponent. To do that, diff -up kdegames-4.2.98/kbattleship/src/kbattleship.desktop.trademarks kdegames-4.2.98/kbattleship/src/kbattleship.desktop --- kdegames-4.2.98/kbattleship/src/kbattleship.desktop.trademarks 2009-07-21 17:20:37.000000000 +0200 +++ kdegames-4.2.98/kbattleship/src/kbattleship.desktop 2009-07-22 11:32:23.000000000 +0200 @@ -1,6 +1,5 @@ [Desktop Entry] -Name=KBattleship -Name[af]=Kbattleship +Name=KSinkShips Name[be]=???????????? ?????? Name[bn]=??????-?????????????????????????????? Name[cs]=Lod?? @@ -14,17 +13,16 @@ Name[pa]=??????-???????????? ??????????? Name[ro]=B??t??lie naval?? Name[sr]=????????????????????????? Name[sr at latin]=K???podmornice -Name[sv]=Kbattleship Name[ta]=?????????????????????????????????????????? Name[tg]=K?????????? ?????????????? Name[uk]=???????????????? ?????? -Name[x-test]=xxKBattleshipxx -Name[zh_TW]=KBattleship ?????? +Name[x-test]=xxKSinkShipsxx +Name[zh_TW]=KSinkShips ?????? Exec=kbattleship -caption "%c" Icon=kbattleship Type=Application X-DocPath=kbattleship/index.html -GenericName=Battleship Game +GenericName=Ship Sinking Game GenericName[be]=???????????? ?? ???????????? ?????? GenericName[bn]=?????????????????????????????? ???????????? GenericName[ca]=Joc d'enfonsar la flota @@ -32,7 +30,6 @@ GenericName[cs]=Bitva lod?? GenericName[cy]=G??m Longau Rhyfel GenericName[da]=S??nke slagskibe-spil GenericName[de]=Schiffe versenken -GenericName[el]=???????????????? Battleship GenericName[eo]=Batal??ipa ludo GenericName[es]=Juego de la batalla de naves GenericName[et]=Laevade pommitamise m??ng @@ -40,7 +37,6 @@ GenericName[eu]=Ontzi-guda jokoa GenericName[fa]=???????? ?????? ??????????????? GenericName[fi]=Meritaistelupeli GenericName[fr]=Jeu de bataille navale -GenericName[ga]=Cluiche cos??il le "Battleship" GenericName[gl]=Xogo de batalla naval GenericName[he]=???????? ???????????? GenericName[hne]=????????????????????? ????????? @@ -74,7 +70,7 @@ GenericName[ta]=???????????????????????? GenericName[tr]=Amiral Batt?? Oyunu GenericName[uk]=?????? ?? ???????????????? ?????? GenericName[wa]=Djeu di batreye di bateas -GenericName[x-test]=xxBattleship Gamexx +GenericName[x-test]=xxShip Sinking Gamexx GenericName[zh_CN]=?????????????????? GenericName[zh_TW]=???????????? Terminal=false diff -up kdegames-4.2.98/kbattleship/src/kbattleship.protocol.trademarks kdegames-4.2.98/kbattleship/src/kbattleship.protocol --- kdegames-4.2.98/kbattleship/src/kbattleship.protocol.trademarks 2009-07-21 17:20:37.000000000 +0200 +++ kdegames-4.2.98/kbattleship/src/kbattleship.protocol 2009-07-22 11:33:54.000000000 +0200 @@ -5,33 +5,33 @@ input=none output=none Icon=kbattleship -Description=A protocol for the game KBattleship -Description[ca]=Un protocol pel joc KBattleship -Description[da]=En protokol for spillet KBattleship -Description[de]=Ein Protokoll f??r das KBattleship-Spiel. -Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KBattleship -Description[es]=Un protocolo para el juego KBattleship -Description[et]=KBattleshipi protokoll -Description[eu]=KBattleship jokoaren protokoloa -Description[fr]=Un protocole pour le jeu KBattleship -Description[ga]=Pr??tacal le haghaidh an chluiche KBattleship -Description[gl]=Un protocolo para o xogo KBattleship -Description[it]=Un protocollo per KBattleship -Description[km]=??????????????????????????????????????????????????????????????? KBattleship -Description[lv]=Protokols sp??lei KBattleship -Description[nds]=En Protokoll f??r dat Speel "KBattleship" -Description[nl]=Een protocol voor het spel KBattleship -Description[nn]=Protokoll for KBattleship -Description[pt]=Um protocolo para o jogo KBattleship -Description[pt_BR]=Um protocolo para o jogo KBattleship -Description[ru]=???????????????? ?????? ???????? KBattleship +Description=A protocol for the game KSinkShips +Description[ca]=Un protocol pel joc KSinkShips +Description[da]=En protokol for spillet KSinkShips +Description[de]=Ein Protokoll f??r das KSinkShips-Spiel. +Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KSinkShips +Description[es]=Un protocolo para el juego KSinkShips +Description[et]=KSinkShipsi protokoll +Description[eu]=KSinkShips jokoaren protokoloa +Description[fr]=Un protocole pour le jeu KSinkShips +Description[ga]=Pr??tacal le haghaidh an chluiche KSinkShips +Description[gl]=Un protocolo para o xogo KSinkShips +Description[it]=Un protocollo per KSinkShips +Description[km]=??????????????????????????????????????????????????????????????? KSinkShips +Description[lv]=Protokols sp??lei KSinkShips +Description[nds]=En Protokoll f??r dat Speel "KSinkShips" +Description[nl]=Een protocol voor het spel KSinkShips +Description[nn]=Protokoll for KSinkShips +Description[pt]=Um protocolo para o jogo KSinkShips +Description[pt_BR]=Um protocolo para o jogo KSinkShips +Description[ru]=???????????????? ?????? ???????? KSinkShips Description[sr]=???????????????? ???? ????????????????????????? Description[sr at latin]=Protokol za K???podmornice Description[sv]=Ett protokoll f??r spelet S??nka fartyg -Description[uk]=???????????????? ?????? ?????? KBattleship -Description[x-test]=xxA protocol for the game KBattleshipxx -Description[zh_CN]=KBattleship ?????????????????? -Description[zh_TW]=KBattleship ????????????????????? +Description[uk]=???????????????? ?????? ?????? KSinkShips +Description[x-test]=xxA protocol for the game KSinkShipsxx +Description[zh_CN]=KSinkShips ?????????????????? +Description[zh_TW]=KSinkShips ????????????????????? #exec=kbattleship %u helper=true diff -up kdegames-4.2.98/kbattleship/src/main.cpp.trademarks kdegames-4.2.98/kbattleship/src/main.cpp --- kdegames-4.2.98/kbattleship/src/main.cpp.trademarks 2009-03-18 10:57:42.000000000 +0100 +++ kdegames-4.2.98/kbattleship/src/main.cpp 2009-07-22 11:30:24.000000000 +0200 @@ -21,7 +21,7 @@ int main(int argc, char** argv) { - KAboutData aboutData("kbattleship", 0, ki18n("KBattleship"), "2.0", + KAboutData aboutData("kbattleship", 0, ki18n("KSinkShips"), "2.0", ki18n("The KDE Battleship clone"), KAboutData::License_GPL, ki18n("(c) 2000-2005 Nikolas Zimmermann, Daniel Molkentin\n" "(c) 2007 Paolo Capriotti"), KLocalizedString(), "http://games.kde.org/kbattleship" ); @@ -48,7 +48,7 @@ int main(int argc, char** argv) KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; - options.add("!+[URL]", ki18n("URL of a KBattleship game server to connect to after startup")); + options.add("!+[URL]", ki18n("URL of a KSinkShips game server to connect to after startup")); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; diff -up kdegames-4.2.98/ktron/ktron.desktop.trademarks kdegames-4.2.98/ktron/ktron.desktop diff -up kdegames-4.2.98/ktron/main.cpp.trademarks kdegames-4.2.98/ktron/main.cpp --- kdegames-4.2.98/ktron/main.cpp.trademarks 2009-02-26 10:11:10.000000000 +0100 +++ kdegames-4.2.98/ktron/main.cpp 2009-07-22 11:30:24.000000000 +0200 @@ -41,7 +41,7 @@ static KLocalizedString notice = ki18n(" int main(int argc, char* argv[]) { - KAboutData aboutData( "ktron", 0, ki18n("KTron"), + KAboutData aboutData( "ktron", 0, ki18n("KSnakeDuel"), KTRON_VERSION, description, KAboutData::License_GPL, notice); aboutData.addAuthor(ki18n("Matthias Kiefer"), ki18n("Original author"), "matthias.kiefer at gmx.de"); aboutData.addAuthor(ki18n("Benjamin Meyer"), ki18n("Various improvements"), "ben+ktron at meyerhome.net"); @@ -50,7 +50,8 @@ int main(int argc, char* argv[]) KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineOptions options; - options.add("ktron", ki18n("Start in KTron mode")); + // This is the default anyway, why does this need an option? -- Kevin Kofler + // options.add("ktron", ki18n("Start in KTron mode")); options.add("snake", ki18n("Start in KSnake mode")); KCmdLineArgs::addCmdLineOptions(options); diff -up kdegames-4.2.98/ktron/player.cpp.trademarks kdegames-4.2.98/ktron/player.cpp --- kdegames-4.2.98/ktron/player.cpp.trademarks 2009-04-05 21:59:49.000000000 +0200 +++ kdegames-4.2.98/ktron/player.cpp 2009-07-22 11:30:24.000000000 +0200 @@ -92,7 +92,7 @@ QString Player::getName() { if (isComputer()) { - return i18n("KTron"); + return i18n("KSnakeDuel"); } else { diff -up kdegames-4.2.98/README.trademarks kdegames-4.2.98/README --- kdegames-4.2.98/README.trademarks 2009-01-16 16:09:32.000000000 +0100 +++ kdegames-4.2.98/README 2009-07-22 11:30:24.000000000 +0200 @@ -25,9 +25,6 @@ This is a compilation of more than 20 va Play backgammon against a local human player, via a game server or against GNU Backgammon (not included) -* kbattleship - Sink battleship of your opponents, with built-in game server. - * kblackbox Find the balls hidden in the black box by shooting laser beams! @@ -70,6 +67,15 @@ This is a compilation of more than 20 va * kshisen Patience game where you take away all pieces. +* ksinkships + Sink ships of your opponents, with built-in game server. + +* ksnake + Don't bite yourself, eat apples! + +* ksnakeduel + Like ksnake, but without fruits. + * kspaceduel Two player game with shooting spaceships flying around a sun. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/.cvsignore,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- .cvsignore 10 Jul 2009 18:58:33 -0000 1.68 +++ .cvsignore 22 Jul 2009 09:39:31 -0000 1.69 @@ -1,3 +1,4 @@ kdegames-4.2.90.tar.bz2 kdegames-4.2.95.tar.bz2 kdegames-4.2.96.tar.bz2 +kdegames-4.2.98.tar.bz2 Index: kdegames.spec =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- kdegames.spec 17 Jul 2009 11:11:13 -0000 1.137 +++ kdegames.spec 22 Jul 2009 09:39:33 -0000 1.138 @@ -1,14 +1,14 @@ Name: kdegames Summary: K Desktop Environment 4 - Games Epoch: 6 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 URL: http://www.kde.org/ Group: Amusements/Games Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdegames-%{version}.tar.bz2 -Patch0: kdegames-4.2.96-trademarks.patch +Patch0: kdegames-4.2.98-trademarks.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -197,6 +197,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/sources,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- sources 10 Jul 2009 18:58:33 -0000 1.72 +++ sources 22 Jul 2009 09:39:33 -0000 1.73 @@ -1 +1 @@ -dc69c0c305de81e8673155861a854d4c kdegames-4.2.96.tar.bz2 +88843c8935c1f5dd57c16ab94784772c kdegames-4.2.98.tar.bz2 --- kdegames-4.2.96-trademarks.patch DELETED --- From than at fedoraproject.org Wed Jul 22 09:43:02 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 09:43:02 +0000 (UTC) Subject: rpms/kdegraphics/devel .cvsignore, 1.63, 1.64 kdegraphics.spec, 1.208, 1.209 sources, 1.69, 1.70 Message-ID: <20090722094302.AA0A511C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegraphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1416 Modified Files: .cvsignore kdegraphics.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/.cvsignore,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- .cvsignore 10 Jul 2009 19:02:42 -0000 1.63 +++ .cvsignore 22 Jul 2009 09:42:32 -0000 1.64 @@ -1,3 +1,4 @@ kdegraphics-4.2.90.tar.bz2 kdegraphics-4.2.95.tar.bz2 kdegraphics-4.2.96.tar.bz2 +kdegraphics-4.2.98.tar.bz2 Index: kdegraphics.spec =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/kdegraphics.spec,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- kdegraphics.spec 10 Jul 2009 19:02:42 -0000 1.208 +++ kdegraphics.spec 22 Jul 2009 09:42:32 -0000 1.209 @@ -7,7 +7,7 @@ Summary: K Desktop Environment - Graphics Applications Epoch: 7 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Name: kdegraphics @@ -231,6 +231,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdegraphics/devel/sources,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- sources 10 Jul 2009 19:02:42 -0000 1.69 +++ sources 22 Jul 2009 09:42:32 -0000 1.70 @@ -1 +1 @@ -31d986d20c1ac0e3105161db8e60c7b7 kdegraphics-4.2.96.tar.bz2 +c7675a09e66c396a263ca78a88de54f1 kdegraphics-4.2.98.tar.bz2 From rjones at fedoraproject.org Wed Jul 22 09:45:47 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 22 Jul 2009 09:45:47 +0000 (UTC) Subject: rpms/chntpw/devel chntpw-080526-correct-test-for-failing-open-syscall.patch, NONE, 1.1 chntpw-080526-detect-failure-to-write-key.patch, NONE, 1.1 chntpw.spec, 1.8, 1.9 Message-ID: <20090722094547.CAF6411C0099@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/chntpw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2203 Modified Files: chntpw.spec Added Files: chntpw-080526-correct-test-for-failing-open-syscall.patch chntpw-080526-detect-failure-to-write-key.patch Log Message: Two more patches. chntpw-080526-correct-test-for-failing-open-syscall.patch: ntreg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE chntpw-080526-correct-test-for-failing-open-syscall.patch --- >From jim at meyering.net Mon Jul 20 20:05:55 2009 Return-Path: jim at meyering.net X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on amd.home.annexia.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.2.5 Received: from mail.corp.redhat.com [10.5.5.51] by amd.home.annexia.org with IMAP (fetchmail-6.3.8) for (single-drop); Mon, 20 Jul 2009 20:05:55 +0100 (BST) Received: from zmta03.collab.prod.int.phx2.redhat.com (LHLO zmta03.collab.prod.int.phx2.redhat.com) (10.5.5.33) by mail06.corp.redhat.com with LMTP; Mon, 20 Jul 2009 15:05:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by zmta03.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 2C1134E4EB for ; Mon, 20 Jul 2009 15:05:47 -0400 (EDT) Received: from zmta03.collab.prod.int.phx2.redhat.com ([127.0.0.1]) by localhost (zmta03.collab.prod.int.phx2.redhat.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a7N9dvNRkYQB for ; Mon, 20 Jul 2009 15:05:47 -0400 (EDT) Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by zmta03.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 034384E4D6 for ; Mon, 20 Jul 2009 15:05:46 -0400 (EDT) Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6KJ5kIt032703 for ; Mon, 20 Jul 2009 15:05:46 -0400 Received: from mx.meyering.net (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6KJ5jf3021050 for ; Mon, 20 Jul 2009 15:05:45 -0400 Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id D674638154; Mon, 20 Jul 2009 21:05:44 +0200 (CEST) From: Jim Meyering To: "Richard W. M. Jones" Subject: chntpw [PATCH] correct test for failing "open" syscall Date: Mon, 20 Jul 2009 21:05:44 +0200 Message-ID: <878wij899z.fsf at meyering.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Status: RO Content-Length: 1103 Lines: 33 This one is weird. It must be code that is never exercised, since the existing code is totally bogus. The condition, !open(...), will almost always be true. (sole exception is when starting a program with stdin initially closed) >From bc4cddb06cf13c189fbdc93e6962cad072779097 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jul 2009 14:59:19 -0400 Subject: [PATCH] correct test for failing "open" syscall * ntreg.c (writeHive): Test open() < 0, not !open(). --- ntreg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ntreg.c b/ntreg.c index be6b680..21cd3e3 100644 --- a/ntreg.c +++ b/ntreg.c @@ -2765,7 +2765,7 @@ int writeHive(struct hive *hdesc) if ( !(hdesc->state & HMODE_DIRTY)) return(0); if ( !(hdesc->state & HMODE_OPEN)) { /* File has been closed */ - if (!(hdesc->filedesc = open(hdesc->filename,O_RDWR))) { + if ((hdesc->filedesc = open(hdesc->filename,O_RDWR)) < 0) { fprintf(stderr,"writeHive: open(%s) failed: %s, FILE NOT WRITTEN!\n",hdesc->filename,strerror(errno)); return(1); } -- 1.6.2.5 chntpw-080526-detect-failure-to-write-key.patch: ntreg.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) --- NEW FILE chntpw-080526-detect-failure-to-write-key.patch --- >From jim at meyering.net Mon Jul 20 20:12:31 2009 Return-Path: jim at meyering.net X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on amd.home.annexia.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.2.5 Received: from mail.corp.redhat.com [10.5.5.51] by amd.home.annexia.org with IMAP (fetchmail-6.3.8) for (single-drop); Mon, 20 Jul 2009 20:12:31 +0100 (BST) Received: from zmta03.collab.prod.int.phx2.redhat.com (LHLO zmta03.collab.prod.int.phx2.redhat.com) (10.5.5.33) by mail06.corp.redhat.com with LMTP; Mon, 20 Jul 2009 15:12:17 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by zmta03.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 3C1A04E4EC for ; Mon, 20 Jul 2009 15:12:17 -0400 (EDT) Received: from zmta03.collab.prod.int.phx2.redhat.com ([127.0.0.1]) by localhost (zmta03.collab.prod.int.phx2.redhat.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a+PpYwgPRjqW for ; Mon, 20 Jul 2009 15:12:17 -0400 (EDT) Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by zmta03.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 130A44E4D6 for ; Mon, 20 Jul 2009 15:12:17 -0400 (EDT) Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6KJCGMZ001977 for ; Mon, 20 Jul 2009 15:12:16 -0400 Received: from mx.meyering.net (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6KJCF82022169 for ; Mon, 20 Jul 2009 15:12:15 -0400 Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id 36C5D38154; Mon, 20 Jul 2009 21:12:15 +0200 (CEST) From: Jim Meyering To: "Richard W. M. Jones" Subject: chntpw [PATCH] detect/diagnose failure to write key Date: Mon, 20 Jul 2009 21:12:15 +0200 Message-ID: <873a8r88z4.fsf at meyering.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Status: RO Content-Length: 938 Lines: 34 Hi Rich, here's another. >From 057c832cf924cabf887e59d1c1f2127cd4619572 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jul 2009 15:09:26 -0400 Subject: [PATCH] detect/diagnose failure to write key * ntreg.c (export_key): Detect stream write failure. --- ntreg.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ntreg.c b/ntreg.c index 21cd3e3..cdb6503 100644 --- a/ntreg.c +++ b/ntreg.c @@ -2735,7 +2735,14 @@ void export_key(struct hive *hdesc, int nkofs, char *name, char *filename, char fprintf(file, "Windows Registry Editor Version 5.00\r\n\r\n"); export_subkey(hdesc, nkofs, name, prefix, file); - fclose(file); + if (ferror (file)) { + printf("failed to write file '%s'\n", filename); + fclose (file); + return; + } + if (fclose(file)) + printf("failed to write file '%s': %s\n", filename, + strerror(errno)); } -- 1.6.2.5 Index: chntpw.spec =================================================================== RCS file: /cvs/pkgs/rpms/chntpw/devel/chntpw.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- chntpw.spec 20 Jul 2009 16:07:18 -0000 1.8 +++ chntpw.spec 22 Jul 2009 09:45:17 -0000 1.9 @@ -1,7 +1,7 @@ Name: chntpw # Version is taken from HISTORY.txt Version: 0.99.6 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Change passwords in Windows SAM files Group: Applications/Engineering License: GPLv2 @@ -24,6 +24,8 @@ Patch3: chntpw-080526-port-to-gc # Patches from Jim Meyering to improve robustness of the code. Patch4: chntpw-080526-robustness.patch +Patch5: chntpw-080526-correct-test-for-failing-open-syscall.patch +Patch6: chntpw-080526-detect-failure-to-write-key.patch %description @@ -49,6 +51,8 @@ mv WinReg.txt.eol WinReg.txt %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 +%patch6 -p1 %build @@ -80,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Richard W.M. Jones - 0.99.6-11 +- Two more patches from Jim Meyering to improve general code quality. + * Mon Jul 20 2009 Richard W.M. Jones - 0.99.6-10 - Three patches from Jim Meyering aiming to improve the general robustness of the code. From whot at fedoraproject.org Wed Jul 22 09:56:10 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 22 Jul 2009 09:56:10 +0000 (UTC) Subject: rpms/libXext/devel .cvsignore, 1.10, 1.11 libXext.spec, 1.26, 1.27 sources, 1.11, 1.12 fix.patch, 1.1, NONE Message-ID: <20090722095610.C441B11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libXext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6544 Modified Files: .cvsignore libXext.spec sources Removed Files: fix.patch Log Message: * Wed Jul 22 2009 Peter Hutterer 1.0.99.4-1 - libXext 1.0.99.4 - fix.patch: Drop. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 21 Jul 2009 23:15:42 -0000 1.10 +++ .cvsignore 22 Jul 2009 09:55:40 -0000 1.11 @@ -1,2 +1 @@ -libXext-1.0.99.1.tar.bz2 -libXext-1.0.99.2.tar.bz2 +libXext-1.0.99.4.tar.bz2 Index: libXext.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/libXext.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libXext.spec 21 Jul 2009 23:15:42 -0000 1.26 +++ libXext.spec 22 Jul 2009 09:55:40 -0000 1.27 @@ -1,17 +1,15 @@ Summary: X.Org X11 libXext runtime library Name: libXext -Version: 1.0.99.2 -Release: 0%{?dist} +Version: 1.0.99.4 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 -Source0: http://cgit.freedesktop.org/xorg/lib/libXext/snapshot/libXext-1.0.99.2.tar.bz2 -Patch0: fix.patch +Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 -BuildRequires: xorg-x11-proto-devel >= 7.1-10 +BuildRequires: xorg-x11-proto-devel >= 7.4-23 BuildRequires: libX11-devel BuildRequires: libXau-devel BuildRequires: xorg-x11-util-macros @@ -36,10 +34,8 @@ X.Org X11 libXext development package %prep %setup -q -%patch0 -p1 -b .jx %build -./autogen.sh %configure --disable-static make %{?_smp_mflags} @@ -69,7 +65,6 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/extensions/XEVI.h %{_includedir}/X11/extensions/XLbx.h %{_includedir}/X11/extensions/XShm.h -%{_includedir}/X11/extensions/XTest.h %{_includedir}/X11/extensions/Xag.h %{_includedir}/X11/extensions/Xcup.h %{_includedir}/X11/extensions/Xdbe.h @@ -91,6 +86,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Wed Jul 22 2009 Peter Hutterer 1.0.99.4-1 +- libXext 1.0.99.4 +- fix.patch: Drop. + * Tue Jul 21 2009 Adam Jackson 1.0.99.2-0 - libXext snapshot Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 21 Jul 2009 23:15:42 -0000 1.11 +++ sources 22 Jul 2009 09:55:40 -0000 1.12 @@ -1,2 +1 @@ -28a0c215dca5960405634242e0f5957c libXext-1.0.99.1.tar.bz2 -520ca5f70db34767075db3366e1440e3 libXext-1.0.99.2.tar.bz2 +24da44888b87c66edb326acec35b85aa libXext-1.0.99.4.tar.bz2 --- fix.patch DELETED --- From than at fedoraproject.org Wed Jul 22 10:12:47 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 10:12:47 +0000 (UTC) Subject: rpms/kdelibs/devel .cvsignore, 1.74, 1.75 kdelibs.spec, 1.489, 1.490 sources, 1.91, 1.92 Message-ID: <20090722101247.A459211C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12906 Modified Files: .cvsignore kdelibs.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/.cvsignore,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- .cvsignore 10 Jul 2009 20:13:40 -0000 1.74 +++ .cvsignore 22 Jul 2009 10:12:16 -0000 1.75 @@ -1,3 +1,4 @@ kdelibs-4.2.90.tar.bz2 kdelibs-4.2.95.tar.bz2 kdelibs-4.2.96.tar.bz2 +kdelibs-4.2.98.tar.bz2 Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.489 retrieving revision 1.490 diff -u -p -r1.489 -r1.490 --- kdelibs.spec 16 Jul 2009 20:16:57 -0000 1.489 +++ kdelibs.spec 22 Jul 2009 10:12:16 -0000 1.490 @@ -4,8 +4,8 @@ %define strigi_ver 0.6.5 Summary: K Desktop Environment 4 - Libraries -Version: 4.2.96 -Release: 2%{?dist} +Version: 4.2.98 +Release: 1%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -397,6 +397,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - soprano_ver 2.3.0 - License: LGPLv2+ Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/sources,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- sources 10 Jul 2009 20:13:40 -0000 1.91 +++ sources 22 Jul 2009 10:12:17 -0000 1.92 @@ -1 +1 @@ -a7f2d4eb81c05f9e6c97a8fa09670c0f kdelibs-4.2.96.tar.bz2 +5118bd8b810f99c76316733758fc34fd kdelibs-4.2.98.tar.bz2 From jgranado at fedoraproject.org Wed Jul 22 10:18:08 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Wed, 22 Jul 2009 10:18:08 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0-handle-dup-error.patch, NONE, 1.1 parted.spec, 1.138, 1.139 Message-ID: <20090722101809.25F0E11C0099@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15146 Modified Files: parted.spec Added Files: parted-1.9.0-handle-dup-error.patch Log Message: Better handle duplicate errors. parted-1.9.0-handle-dup-error.patch: disk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE parted-1.9.0-handle-dup-error.patch --- >From 41bbcb45aaa89294cda404c89526aa7e251e02ca Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 22 Jul 2009 12:08:34 +0200 Subject: [PATCH] Try to handle the duplicate error a little better. --- libparted/disk.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 3656d22..8529e50 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -278,6 +278,7 @@ ped_disk_duplicate (const PedDisk* old_disk) old_part = ped_disk_next_partition (old_disk, old_part)) { if (ped_partition_is_active (old_part)) { if (!_add_duplicate_part (new_disk, old_part)) + _disk_pop_update_mode (new_disk); goto error_destroy_new_disk; } } -- 1.6.0.6 Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- parted.spec 21 Jul 2009 14:57:57 -0000 1.138 +++ parted.spec 22 Jul 2009 10:18:08 -0000 1.139 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 4.20090721git980c%{?dist} +Release: 5.20090721git980c%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -17,17 +17,18 @@ URL: http://www.gnu.org/software/par # # Note that this script will give different results if master changes in upstream. # -Source: %{name}/%{name}-%{version}.tar.gz -Patch1: %{name}-1.9.0-appletv-support.patch -Patch2: %{name}-1.9.0-extended-mbr.patch -Patch3: %{name}-1.9.0-noheaders.patch -Patch4: %{name}-1.9.0-pop-push-error.patch -Patch5: %{name}-1.9.0-no-cylinder-align.patch -Patch6: %{name}-1.9.0-swap-flag.patch -Patch7: %{name}-1.9.0-remove-struct-elem.patch -Patch8: %{name}-1.9.0-move-function-declarations.patch -Patch9: %{name}-1.9.0-dasd-duplicate.patch -Patch10: %{name}-1.9.0-new-duplicate.patch +Source: %{name}/%{name}-%{version}.tar.gz +Patch1: %{name}-1.9.0-appletv-support.patch +Patch2: %{name}-1.9.0-extended-mbr.patch +Patch3: %{name}-1.9.0-noheaders.patch +Patch4: %{name}-1.9.0-pop-push-error.patch +Patch5: %{name}-1.9.0-no-cylinder-align.patch +Patch6: %{name}-1.9.0-swap-flag.patch +Patch7: %{name}-1.9.0-remove-struct-elem.patch +Patch8: %{name}-1.9.0-move-function-declarations.patch +Patch9: %{name}-1.9.0-dasd-duplicate.patch +Patch10: %{name}-1.9.0-new-duplicate.patch +Patch11: %{name}-1.9.0-handle-dup-error.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -77,6 +78,7 @@ Parted library, you need to install this %patch8 -p1 -b .move-function-declarations %patch9 -p1 -b .dasd-duplicate %patch10 -p1 -b .new-duplicate +%patch11 -p1 -b .handle-dup-error %build @@ -135,6 +137,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Wed Jul 22 2009 Joel Granados - 1.9.0-5.20090721git980c +- Better handle a duplicate error. + * Tue Jul 21 2009 Joel Granados - 1.9.0-4.20090721git980c - New snapshot. - Add patches to make dasd duplicate disk work. From xhorak at fedoraproject.org Wed Jul 22 10:25:13 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 10:25:13 +0000 (UTC) Subject: rpms/firefox/F-11 firefox.spec,1.331,1.332 firefox.png,1.4,NONE Message-ID: <20090722102513.A41D611C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17307 Modified Files: firefox.spec Removed Files: firefox.png Log Message: Fixed icons Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/firefox.spec,v retrieving revision 1.331 retrieving revision 1.332 diff -u -p -r1.331 -r1.332 --- firefox.spec 17 Jul 2009 07:55:44 -0000 1.331 +++ firefox.spec 22 Jul 2009 10:24:43 -0000 1.332 @@ -18,7 +18,7 @@ Summary: Mozilla Firefox Web browser Name: firefox -Version: 3.5.1 +Version: 3.5.2 Release: 1%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -37,7 +37,6 @@ Source11: firefox-mozconfig-brande Source12: firefox-redhat-default-prefs.js Source20: firefox.desktop Source21: firefox.sh.in -Source22: firefox.png Source23: firefox.1 Source100: find-external-requires @@ -147,9 +146,7 @@ cd %{tarballdir} DESTDIR=$RPM_BUILD_ROOT make install -%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications,%{_datadir}/pixmaps} - -%{__install} -p -D -m 644 %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png +%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications} desktop-file-install --vendor mozilla \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ @@ -198,11 +195,26 @@ ln -s %{default_bookmarks_file} $RPM_BUI #EOF #%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js -%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ -%{__cp} other-licenses/branding/%{name}/default16.png \ - $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ %{__cp} other-licenses/branding/%{name}/default16.png \ $RPM_BUILD_ROOT/%{mozappdir}/icons/ +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps +%{__cp} other-licenses/branding/%{name}/default16.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps +%{__cp} other-licenses/branding/%{name}/default22.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps +%{__cp} other-licenses/branding/%{name}/default24.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps +%{__cp} other-licenses/branding/%{name}/default32.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps +%{__cp} other-licenses/branding/%{name}/default48.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps +%{__cp} other-licenses/branding/%{name}/default256.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/firefox.png echo > ../%{name}.lang %if %{build_langpacks} @@ -290,7 +302,6 @@ fi %dir %{_datadir}/mozilla/extensions/%{firefox_app_id} %dir %{_libdir}/mozilla/extensions/%{firefox_app_id} %{_datadir}/applications/mozilla-%{name}.desktop -%{_datadir}/pixmaps/firefox.png %dir %{mozappdir} %doc %{mozappdir}/LICENSE %doc %{mozappdir}/README.txt @@ -317,10 +328,19 @@ fi # XXX See if these are needed still %{mozappdir}/updater* %exclude %{mozappdir}/removed-files +%{_datadir}/icons/hicolor/16x16/apps/firefox.png +%{_datadir}/icons/hicolor/22x22/apps/firefox.png +%{_datadir}/icons/hicolor/24x24/apps/firefox.png +%{_datadir}/icons/hicolor/256x256/apps/firefox.png +%{_datadir}/icons/hicolor/32x32/apps/firefox.png +%{_datadir}/icons/hicolor/48x48/apps/firefox.png #--------------------------------------------------------------------- %changelog +* Wed Jul 22 2009 Jan Horak - 3.5.1-2 +- New icons fixed + * Fri Jul 17 2009 Martin Stransky - 3.5.1-1 - Updated to 3.5.1. From than at fedoraproject.org Wed Jul 22 10:27:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 10:27:01 +0000 (UTC) Subject: rpms/kdelibs-experimental/devel .cvsignore, 1.5, 1.6 kdelibs-experimental.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090722102701.BDB5911C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdelibs-experimental/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17958 Modified Files: .cvsignore kdelibs-experimental.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 10 Jul 2009 20:24:37 -0000 1.5 +++ .cvsignore 22 Jul 2009 10:26:31 -0000 1.6 @@ -1,3 +1,4 @@ kdelibs-experimental-4.2.90.tar.bz2 kdelibs-experimental-4.2.95.tar.bz2 kdelibs-experimental-4.2.96.tar.bz2 +kdelibs-experimental-4.2.98.tar.bz2 Index: kdelibs-experimental.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/kdelibs-experimental.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kdelibs-experimental.spec 10 Jul 2009 20:24:37 -0000 1.7 +++ kdelibs-experimental.spec 22 Jul 2009 10:26:31 -0000 1.8 @@ -1,5 +1,5 @@ Name: kdelibs-experimental -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Summary: KDE libraries with experimental or unstable api/abi @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Fri Jul 10 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs-experimental/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 10 Jul 2009 20:24:37 -0000 1.5 +++ sources 22 Jul 2009 10:26:31 -0000 1.6 @@ -1 +1 @@ -f78d349cdeda2c2914226a8134318084 kdelibs-experimental-4.2.96.tar.bz2 +f651465791384cbf8c8928a47d7323e1 kdelibs-experimental-4.2.98.tar.bz2 From xhorak at fedoraproject.org Wed Jul 22 10:32:46 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 10:32:46 +0000 (UTC) Subject: rpms/firefox/F-11 firefox.spec,1.332,1.333 Message-ID: <20090722103246.A116211C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20683 Modified Files: firefox.spec Log Message: Fix icons Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/firefox.spec,v retrieving revision 1.332 retrieving revision 1.333 diff -u -p -r1.332 -r1.333 --- firefox.spec 22 Jul 2009 10:24:43 -0000 1.332 +++ firefox.spec 22 Jul 2009 10:32:46 -0000 1.333 @@ -18,8 +18,8 @@ Summary: Mozilla Firefox Web browser Name: firefox -Version: 3.5.2 -Release: 1%{?dist} +Version: 3.5.1 +Release: 2%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet From dnovotny at fedoraproject.org Wed Jul 22 10:32:54 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Wed, 22 Jul 2009 10:32:54 +0000 (UTC) Subject: rpms/amanda/devel amanda-2.6.0p2-builderr.patch, NONE, 1.1 amanda.spec, 1.60, 1.61 Message-ID: <20090722103254.ACBC911C0099@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/amanda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20431 Modified Files: amanda.spec Added Files: amanda-2.6.0p2-builderr.patch Log Message: fix #510961 amanda-2.6.0p2-builderr.patch: Makefile.am | 1 - 1 file changed, 1 deletion(-) --- NEW FILE amanda-2.6.0p2-builderr.patch --- diff -up amanda-2.6.0p2/man/Makefile.am.builderr amanda-2.6.0p2/man/Makefile.am --- amanda-2.6.0p2/man/Makefile.am.builderr 2009-07-22 12:09:46.000000000 +0200 +++ amanda-2.6.0p2/man/Makefile.am 2009-07-22 12:10:03.000000000 +0200 @@ -31,7 +31,6 @@ SERVER_MAN_PAGES = amadmin.8 \ amverifyrun.8 \ amserverconfig.8 \ amaddclient.8 \ - amcheckdump.8 \ amcrypt.8 \ amaespipe.8 \ amgpgcrypt.8 \ Index: amanda.spec =================================================================== RCS file: /cvs/extras/rpms/amanda/devel/amanda.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- amanda.spec 24 Apr 2009 08:24:41 -0000 1.60 +++ amanda.spec 22 Jul 2009 10:32:23 -0000 1.61 @@ -7,7 +7,7 @@ Summary: A network-capable tape backup solution Name: amanda Version: 2.6.0p2 -Release: 9%{?dist} +Release: 10%{?dist} Source: http://downloads.sourceforge.net/amanda/amanda-%{version}.tar.gz #Source: http://www.zmanda.com/downloads/community/community-builds/amanda-%{version}.tar.gz Source1: amanda.crontab @@ -20,6 +20,7 @@ Patch2: amanda-2.6.0b2-xattrs.patch Patch3: amanda-2.6.0p2-tcpport.patch Patch4: amanda-2.6.0b3-lib.patch Patch5: amanda-2.6.0p2-pie.patch +Patch6: amanda-2.6.0p2-builderr.patch License: BSD Group: Applications/System URL: http://www.amanda.org @@ -91,6 +92,7 @@ be used to develop amanda applications. %patch3 -p1 -b .tcpport %patch4 -p1 -b .lib %patch5 -p1 -b .pie +%patch6 -p1 -b .builderr ./autogen %build @@ -375,6 +377,9 @@ grep -l -E '^dumpuser[[:blank:]]*"amanda %{_libdir}/libamandad.so %changelog +* Wed Jul 22 2009 Daniel Novotny 2.6.0p2-10 +- fix #510961 - FTBFS: amanda-2.6.0p2-9 + * Fri Apr 24 2009 Daniel Novotny 2.6.0p2-9 - fix #497488 - amanda subpackages require only a specific version of amanda, not also release From than at fedoraproject.org Wed Jul 22 10:38:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 10:38:57 +0000 (UTC) Subject: rpms/kdemultimedia/devel .cvsignore, 1.65, 1.66 kdemultimedia.spec, 1.151, 1.152 sources, 1.67, 1.68 Message-ID: <20090722103857.D0D8211C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdemultimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24173 Modified Files: .cvsignore kdemultimedia.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/.cvsignore,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- .cvsignore 10 Jul 2009 22:10:48 -0000 1.65 +++ .cvsignore 22 Jul 2009 10:38:27 -0000 1.66 @@ -1,3 +1,4 @@ kdemultimedia-4.2.90.tar.bz2 kdemultimedia-4.2.95.tar.bz2 kdemultimedia-4.2.96.tar.bz2 +kdemultimedia-4.2.98.tar.bz2 Index: kdemultimedia.spec =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/kdemultimedia.spec,v retrieving revision 1.151 retrieving revision 1.152 diff -u -p -r1.151 -r1.152 --- kdemultimedia.spec 17 Jul 2009 10:04:27 -0000 1.151 +++ kdemultimedia.spec 22 Jul 2009 10:38:27 -0000 1.152 @@ -1,6 +1,6 @@ Name: kdemultimedia Epoch: 6 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Summary: K Desktop Environment - Multimedia applications @@ -165,6 +165,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sat Jul 11 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdemultimedia/devel/sources,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- sources 10 Jul 2009 22:10:48 -0000 1.67 +++ sources 22 Jul 2009 10:38:27 -0000 1.68 @@ -1 +1 @@ -c72f90b17aa940e35b7a750f16abd83e kdemultimedia-4.2.96.tar.bz2 +f54daa25d2d99a15aa633a8068df6ffc kdemultimedia-4.2.98.tar.bz2 From xhorak at fedoraproject.org Wed Jul 22 10:39:55 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Wed, 22 Jul 2009 10:39:55 +0000 (UTC) Subject: rpms/firefox/devel firefox.spec,1.331,1.332 firefox.png,1.4,NONE Message-ID: <20090722103955.B5C4411C0099@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24824 Modified Files: firefox.spec Removed Files: firefox.png Log Message: New icons fixed Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/devel/firefox.spec,v retrieving revision 1.331 retrieving revision 1.332 diff -u -p -r1.331 -r1.332 --- firefox.spec 17 Jul 2009 19:00:58 -0000 1.331 +++ firefox.spec 22 Jul 2009 10:39:24 -0000 1.332 @@ -19,7 +19,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 3.5.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -37,7 +37,6 @@ Source11: firefox-mozconfig-brande Source12: firefox-redhat-default-prefs.js Source20: firefox.desktop Source21: firefox.sh.in -Source22: firefox.png Source23: firefox.1 Source100: find-external-requires @@ -147,9 +146,7 @@ cd %{tarballdir} DESTDIR=$RPM_BUILD_ROOT make install -%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications,%{_datadir}/pixmaps} - -%{__install} -p -D -m 644 %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png +%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications} desktop-file-install --vendor mozilla \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ @@ -198,11 +195,26 @@ ln -s %{default_bookmarks_file} $RPM_BUI #EOF #%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js -%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ -%{__cp} other-licenses/branding/%{name}/default16.png \ - $RPM_BUILD_ROOT/%{mozappdir}/chrome/icons/default/ %{__cp} other-licenses/branding/%{name}/default16.png \ $RPM_BUILD_ROOT/%{mozappdir}/icons/ +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps +%{__cp} other-licenses/branding/%{name}/default16.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps +%{__cp} other-licenses/branding/%{name}/default22.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps +%{__cp} other-licenses/branding/%{name}/default24.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps +%{__cp} other-licenses/branding/%{name}/default32.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps +%{__cp} other-licenses/branding/%{name}/default48.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/firefox.png +%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps +%{__cp} other-licenses/branding/%{name}/default256.png \ + $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/firefox.png echo > ../%{name}.lang %if %{build_langpacks} @@ -290,7 +302,6 @@ fi %dir %{_datadir}/mozilla/extensions/%{firefox_app_id} %dir %{_libdir}/mozilla/extensions/%{firefox_app_id} %{_datadir}/applications/mozilla-%{name}.desktop -%{_datadir}/pixmaps/firefox.png %dir %{mozappdir} %doc %{mozappdir}/LICENSE %doc %{mozappdir}/README.txt @@ -317,10 +328,19 @@ fi # XXX See if these are needed still %{mozappdir}/updater* %exclude %{mozappdir}/removed-files +%{_datadir}/icons/hicolor/16x16/apps/firefox.png +%{_datadir}/icons/hicolor/22x22/apps/firefox.png +%{_datadir}/icons/hicolor/24x24/apps/firefox.png +%{_datadir}/icons/hicolor/256x256/apps/firefox.png +%{_datadir}/icons/hicolor/32x32/apps/firefox.png +%{_datadir}/icons/hicolor/48x48/apps/firefox.png #--------------------------------------------------------------------- %changelog +* Wed Jul 22 2009 Jan Horak - 3.5.1-2 +- New icons fixed + * Fri Jul 17 2009 Christopher Aillon - 3.5.1-1 - Update to 3.5.1 From than at fedoraproject.org Wed Jul 22 10:44:52 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 10:44:52 +0000 (UTC) Subject: rpms/kdenetwork/devel .cvsignore, 1.68, 1.69 kdenetwork.spec, 1.191, 1.192 sources, 1.75, 1.76 Message-ID: <20090722104452.9C1FC11C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdenetwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26718 Modified Files: .cvsignore kdenetwork.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/.cvsignore,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- .cvsignore 10 Jul 2009 22:25:07 -0000 1.68 +++ .cvsignore 22 Jul 2009 10:44:21 -0000 1.69 @@ -1,3 +1,4 @@ kdenetwork-4.2.90.tar.bz2 kdenetwork-4.2.95.tar.bz2 kdenetwork-4.2.96.tar.bz2 +kdenetwork-4.2.98.tar.bz2 Index: kdenetwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/kdenetwork.spec,v retrieving revision 1.191 retrieving revision 1.192 diff -u -p -r1.191 -r1.192 --- kdenetwork.spec 10 Jul 2009 22:25:07 -0000 1.191 +++ kdenetwork.spec 22 Jul 2009 10:44:21 -0000 1.192 @@ -1,7 +1,7 @@ Summary: K Desktop Environment - Network Applications Name: kdenetwork Epoch: 7 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 @@ -175,6 +175,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sat Jul 11 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/sources,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- sources 10 Jul 2009 22:25:07 -0000 1.75 +++ sources 22 Jul 2009 10:44:22 -0000 1.76 @@ -1 +1 @@ -411b4dc5d3c6b802a06334c9e319d60d kdenetwork-4.2.96.tar.bz2 +a65bbab7dabb887a3a3d9cb27c0f2409 kdenetwork-4.2.98.tar.bz2 From whot at fedoraproject.org Wed Jul 22 10:47:30 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 22 Jul 2009 10:47:30 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.54, 1.55 sources, 1.53, 1.54 xorg-x11-proto-devel.spec, 1.99, 1.100 Message-ID: <20090722104730.67EDF11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27913 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Wed Jul 22 2009 Peter Hutterer 7.4-24 - xextproto 7.0.99.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- .cvsignore 22 Jul 2009 06:05:56 -0000 1.54 +++ .cvsignore 22 Jul 2009 10:46:59 -0000 1.55 @@ -27,5 +27,5 @@ glproto-1.4.10.tar.bz2 dri2proto-2.1.tar.bz2 inputproto-1.9.99.15.tar.bz2 randrproto-1.3.0.tar.bz2 -xextproto-7.0.99.2.tar.bz2 +xextproto-7.0.99.3.tar.bz2 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- sources 22 Jul 2009 06:05:57 -0000 1.53 +++ sources 22 Jul 2009 10:46:59 -0000 1.54 @@ -23,5 +23,5 @@ c9f8cebfba72bfab674bc0170551fb8d glprot 5cb7987d29db068153bdc8f23c767c43 dri2proto-2.1.tar.bz2 87a569587d6141af0aa0ab4b604d083a inputproto-1.9.99.15.tar.bz2 a49416013fff33c853efb32f1926551e randrproto-1.3.0.tar.bz2 -bd95d508302d20fdfc6c8338a7772d20 xextproto-7.0.99.2.tar.bz2 +417c21cbc02572d84dffdd5f92a760e7 xextproto-7.0.99.3.tar.bz2 7089b823b1a7cff05478e2330a85e541 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- xorg-x11-proto-devel.spec 22 Jul 2009 06:05:57 -0000 1.99 +++ xorg-x11-proto-devel.spec 22 Jul 2009 10:46:59 -0000 1.100 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 23%{?dist} +Release: 24%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -33,7 +33,7 @@ Source16: http://www.x.org/pub/individua Source17: http://www.x.org/pub/individual/proto/scrnsaverproto-1.1.0.tar.bz2 Source19: http://www.x.org/pub/individual/proto/videoproto-2.2.2.tar.bz2 Source20: http://www.x.org/pub/individual/proto/xcmiscproto-1.1.2.tar.bz2 -Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.99.2.tar.bz2 +Source21: http://www.x.org/pub/individual/proto/xextproto-7.0.99.3.tar.bz2 Source22: http://www.x.org/pub/individual/proto/xf86bigfontproto-1.1.2.tar.bz2 Source23: http://www.x.org/pub/individual/proto/xf86dgaproto-2.0.3.tar.bz2 Source24: http://www.x.org/pub/individual/proto/xf86driproto-2.0.4.tar.bz2 @@ -217,7 +217,7 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/extensions/xf86vmstr.h %{_includedir}/X11/extensions/xfixesproto.h %{_includedir}/X11/extensions/xfixeswire.h -%{_includedir}/X11/extensions/xtest.h +%{_includedir}/X11/extensions/xtestconst.h %{_includedir}/X11/extensions/xtestext1const.h %{_includedir}/X11/extensions/xtestext1proto.h %{_includedir}/X11/extensions/xtestproto.h @@ -259,6 +259,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Wed Jul 22 2009 Peter Hutterer 7.4-24 +- xextproto 7.0.99.3 + * Wed Jul 22 2009 Peter Hutterer 7.4-23 - xextproto 7.0.99.2 - inputproto 1.9.99.15 From than at fedoraproject.org Wed Jul 22 11:01:30 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:01:30 +0000 (UTC) Subject: rpms/kdepim/devel .cvsignore, 1.65, 1.66 kdepim.spec, 1.225, 1.226 sources, 1.73, 1.74 Message-ID: <20090722110131.0634411C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv583 Modified Files: .cvsignore kdepim.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/.cvsignore,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- .cvsignore 10 Jul 2009 22:28:41 -0000 1.65 +++ .cvsignore 22 Jul 2009 11:01:29 -0000 1.66 @@ -1,3 +1,4 @@ kdepim-4.2.90.tar.bz2 kdepim-4.2.95.tar.bz2 kdepim-4.2.96.tar.bz2 +kdepim-4.2.98.tar.bz2 Index: kdepim.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/kdepim.spec,v retrieving revision 1.225 retrieving revision 1.226 diff -u -p -r1.225 -r1.226 --- kdepim.spec 10 Jul 2009 22:28:41 -0000 1.225 +++ kdepim.spec 22 Jul 2009 11:01:29 -0000 1.226 @@ -5,7 +5,7 @@ Name: kdepim Summary: PIM (Personal Information Manager) applications Epoch: 6 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 @@ -188,6 +188,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sat Jul 11 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim/devel/sources,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sources 10 Jul 2009 22:28:41 -0000 1.73 +++ sources 22 Jul 2009 11:01:29 -0000 1.74 @@ -1 +1 @@ -a5f65d943c9bdf50d07fd6a2d43f3b31 kdepim-4.2.96.tar.bz2 +1a266323caa03371e345782c74260642 kdepim-4.2.98.tar.bz2 From than at fedoraproject.org Wed Jul 22 11:08:04 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:08:04 +0000 (UTC) Subject: rpms/kdepimlibs/devel .cvsignore, 1.39, 1.40 kdepimlibs.spec, 1.92, 1.93 sources, 1.39, 1.40 Message-ID: <20090722110804.7B7EF11C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3499 Modified Files: .cvsignore kdepimlibs.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/.cvsignore,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- .cvsignore 10 Jul 2009 22:30:55 -0000 1.39 +++ .cvsignore 22 Jul 2009 11:07:33 -0000 1.40 @@ -1,3 +1,4 @@ kdepimlibs-4.2.90.tar.bz2 kdepimlibs-4.2.95.tar.bz2 kdepimlibs-4.2.96.tar.bz2 +kdepimlibs-4.2.98.tar.bz2 Index: kdepimlibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- kdepimlibs.spec 16 Jul 2009 20:28:53 -0000 1.92 +++ kdepimlibs.spec 22 Jul 2009 11:07:33 -0000 1.93 @@ -11,8 +11,8 @@ %define akonadi_version 1.1.95 Name: kdepimlibs -Version: 4.2.96 -Release: 2%{?dist} +Version: 4.2.98 +Release: 1%{?dist} Summary: K Desktop Environment 4 - PIM Libraries # http://techbase.kde.org/Policies/Licensing_Policy @@ -210,6 +210,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - License: LGPLv2+ Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepimlibs/devel/sources,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- sources 10 Jul 2009 22:30:55 -0000 1.39 +++ sources 22 Jul 2009 11:07:33 -0000 1.40 @@ -1 +1 @@ -04b79056e9beef2a6fec9509c6defbf3 kdepimlibs-4.2.96.tar.bz2 +b7a464799cdc896092d42524a8174a93 kdepimlibs-4.2.98.tar.bz2 From than at fedoraproject.org Wed Jul 22 11:11:44 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:11:44 +0000 (UTC) Subject: rpms/kdepim-runtime/devel .cvsignore, 1.3, 1.4 kdepim-runtime.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090722111144.40A2A11C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdepim-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5818 Modified Files: .cvsignore kdepim-runtime.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Jul 2009 22:38:41 -0000 1.3 +++ .cvsignore 22 Jul 2009 11:11:13 -0000 1.4 @@ -1,2 +1,3 @@ kdepim-runtime-4.2.95.tar.bz2 kdepim-runtime-4.2.96.tar.bz2 +kdepim-runtime-4.2.98.tar.bz2 Index: kdepim-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/kdepim-runtime.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- kdepim-runtime.spec 10 Jul 2009 22:38:41 -0000 1.5 +++ kdepim-runtime.spec 22 Jul 2009 11:11:13 -0000 1.6 @@ -3,7 +3,7 @@ Name: kdepim-runtime Summary: KDE PIM Runtime Environment -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 @@ -131,6 +131,9 @@ rm -rf %{buildroot} %{_kde4_libdir}/lib*.so.* %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sat Jul 11 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdepim-runtime/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Jul 2009 22:38:41 -0000 1.3 +++ sources 22 Jul 2009 11:11:13 -0000 1.4 @@ -1 +1 @@ -6875626dc33caf1c5d75acae3dee328a kdepim-runtime-4.2.96.tar.bz2 +08009a12bcdbd26e01445e4f3cdb1801 kdepim-runtime-4.2.98.tar.bz2 From caolanm at fedoraproject.org Wed Jul 22 11:16:12 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 22 Jul 2009 11:16:12 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1970,1.1971 Message-ID: <20090722111612.BA41211C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7417 Modified Files: openoffice.org.spec Log Message: temp hack Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1970 retrieving revision 1.1971 diff -u -p -r1.1970 -r1.1971 --- openoffice.org.spec 21 Jul 2009 11:41:28 -0000 1.1970 +++ openoffice.org.spec 22 Jul 2009 11:15:42 -0000 1.1971 @@ -1743,6 +1743,13 @@ pushd solver/%{OFFICEUPD}/unxlng*/bin ln -s /usr/share/java/commons-logging-1.0.4.jar commons-logging-1.1.1.jar popd +#temp hack for now +mkdir -p solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions +echo "#include " > solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/shape.h +echo "#include " >> solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/shape.h +echo "#include " > solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/dpms.h +echo "#include " >> solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/dpms.h + #build OOo, on failure make a stab at debugging the crash if any, and #rebuild un-parallel cd instsetoo_native/util @@ -4168,7 +4175,7 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Tue Jul 21 2009 Caol?n McNamara - 1:3.1.1-16.1 +* Wed Jul 22 2009 Caol?n McNamara - 1:3.1.1-16.1 - next milestone - drop integrated openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch - drop integrated workspace.aw073.patch From than at fedoraproject.org Wed Jul 22 11:20:38 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:20:38 +0000 (UTC) Subject: rpms/kdeplasma-addons/devel .cvsignore, 1.16, 1.17 kdeplasma-addons.spec, 1.47, 1.48 sources, 1.16, 1.17 Message-ID: <20090722112038.EC59311C049E@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeplasma-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9066 Modified Files: .cvsignore kdeplasma-addons.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 12 Jul 2009 11:20:57 -0000 1.16 +++ .cvsignore 22 Jul 2009 11:20:38 -0000 1.17 @@ -1,3 +1,4 @@ kdeplasma-addons-4.2.90.tar.bz2 kdeplasma-addons-4.2.95.tar.bz2 kdeplasma-addons-4.2.96.tar.bz2 +kdeplasma-addons-4.2.98.tar.bz2 Index: kdeplasma-addons.spec =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/kdeplasma-addons.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- kdeplasma-addons.spec 16 Jul 2009 12:37:10 -0000 1.47 +++ kdeplasma-addons.spec 22 Jul 2009 11:20:38 -0000 1.48 @@ -1,6 +1,6 @@ Name: kdeplasma-addons -Version: 4.2.96 -Release: 2%{?dist} +Version: 4.2.98 +Release: 1%{?dist} Summary: Additional plasmoids for KDE Group: User Interface/Desktops @@ -139,6 +139,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Thu Jul 16 2009 Rex Dieter - 4.2.96-2 - BR: libXcomposite-devel (lancelot eye-candy) Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeplasma-addons/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 12 Jul 2009 11:20:57 -0000 1.16 +++ sources 22 Jul 2009 11:20:38 -0000 1.17 @@ -1 +1 @@ -bfb975facc9993c99c773940579b89e1 kdeplasma-addons-4.2.96.tar.bz2 +66f412626be47d31515e75f0f42ac4c6 kdeplasma-addons-4.2.98.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 22 11:28:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:28:47 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722112847.A69BE10F89E@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora devel) to Approved for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:28:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:28:46 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722112846.B2BB910F897@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora devel) to Approved for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:05 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722112905.A526610F8A9@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora 11) to Approved for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:07 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722112907.5718410F89E@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora 11) to Approved for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:17 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchbugzilla Message-ID: <20090722112917.4F3BC10F8AC@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:19 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchcommits Message-ID: <20090722112919.4326A10F8A5@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:21 +0000 Subject: [pkgdb] tcl: npajkovs has requested commit Message-ID: <20090722112921.91E5910F8AD@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:29:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:29:23 +0000 Subject: [pkgdb] tcl: npajkovs has requested approveacls Message-ID: <20090722112923.88FDA10F8B1@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:13 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchbugzilla Message-ID: <20090722113013.5B68B10F89E@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:15 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchcommits Message-ID: <20090722113015.48BC710F8A8@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:18 +0000 Subject: [pkgdb] tcl: npajkovs has requested commit Message-ID: <20090722113018.22C3F10F8AC@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:23 +0000 Subject: [pkgdb] tcl: npajkovs has requested approveacls Message-ID: <20090722113023.D027810F8B1@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From rvokal at fedoraproject.org Wed Jul 22 11:30:29 2009 From: rvokal at fedoraproject.org (=?utf-8?q?Radek_Vok=C3=A1l?=) Date: Wed, 22 Jul 2009 11:30:29 +0000 (UTC) Subject: rpms/wireshark/devel .cvsignore, 1.26, 1.27 sources, 1.26, 1.27 wireshark.spec, 1.53, 1.54 Message-ID: <20090722113029.7D42E11C0489@cvs1.fedora.phx.redhat.com> Author: rvokal Update of /cvs/extras/rpms/wireshark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12517 Modified Files: .cvsignore sources wireshark.spec Log Message: upgrade to 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wireshark/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 16 Jun 2009 09:57:44 -0000 1.26 +++ .cvsignore 22 Jul 2009 11:29:57 -0000 1.27 @@ -1 +1 @@ -wireshark-1.2.0.tar.bz2 +wireshark-1.2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/wireshark/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 16 Jun 2009 09:57:44 -0000 1.26 +++ sources 22 Jul 2009 11:29:57 -0000 1.27 @@ -1 +1 @@ -d3f799e0ae7953cd3426d9e0b6e2708d wireshark-1.2.0.tar.bz2 +957d1b11a6c9b305bcd106d4084ff71e wireshark-1.2.1.tar.bz2 Index: wireshark.spec =================================================================== RCS file: /cvs/extras/rpms/wireshark/devel/wireshark.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- wireshark.spec 16 Jun 2009 09:57:44 -0000 1.53 +++ wireshark.spec 22 Jul 2009 11:29:57 -0000 1.54 @@ -6,7 +6,7 @@ Summary: Network traffic analyzer Name: wireshark -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} License: GPL+ Group: Applications/Internet @@ -210,6 +210,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Radek Vokal - 1.2.1 +- upgrade to 1.2.1 +- http://www.wireshark.org/docs/relnotes/wireshark-1.2.1.html + * Tue Jun 16 2009 Radek Vokal - 1.2.0 - upgrade to 1.2.0 - http://www.wireshark.org/docs/relnotes/wireshark-1.2.0.html From pkgdb at fedoraproject.org Wed Jul 22 11:30:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:36 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113036.2FC8410F8B2@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:39 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113039.4310510F8A8@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:41 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113041.B0BFF10F8B4@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tcl (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:42 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchbugzilla Message-ID: <20090722113042.7CA6C10F8B8@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:43 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113043.8A47510F8BB@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tcl (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:47 +0000 Subject: [pkgdb] tcl: npajkovs has requested watchcommits Message-ID: <20090722113047.A9C0D10F8BC@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From dnovotny at fedoraproject.org Wed Jul 22 11:30:44 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Wed, 22 Jul 2009 11:30:44 +0000 (UTC) Subject: rpms/mailman/devel mailman-update-cfg, 1.1, 1.2 mailman.spec, 1.83, 1.84 Message-ID: <20090722113044.BBB6411C0489@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/mailman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12539 Modified Files: mailman-update-cfg mailman.spec Log Message: fix #512798 Index: mailman-update-cfg =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman-update-cfg,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mailman-update-cfg 12 Feb 2009 14:33:36 -0000 1.1 +++ mailman-update-cfg 22 Jul 2009 11:30:13 -0000 1.2 @@ -1,4 +1,13 @@ #!/usr/bin/python + +# This script is needed, when SELinux is enabled: +# mailman_mail_t context cannot write to the directory +# @libdir@/mailman/Mailman so when you change mm_cfg.py, +# mailman cannot create the .pyc +# +# This script is called in the init script, which is run in unconfined_t +# so the .pyc is created and the AVC denial is avoided. (bz#481446) + import py_compile -py_compile.compile("/usr/lib/mailman/Mailman/mm_cfg.py") +py_compile.compile("@libdir@/mailman/Mailman/mm_cfg.py") Index: mailman.spec =================================================================== RCS file: /cvs/extras/rpms/mailman/devel/mailman.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- mailman.spec 8 Jul 2009 10:39:21 -0000 1.83 +++ mailman.spec 22 Jul 2009 11:30:14 -0000 1.84 @@ -1,7 +1,7 @@ Summary: Mailing list manager with built in Web access Name: mailman Version: 2.1.12 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 3 Group: Applications/Internet Source0: ftp://ftp.gnu.org/pub/gnu/mailman/mailman-%{version}.tgz @@ -247,6 +247,8 @@ cp -r %{mmbuilddir}/doc $RPM_BUILD_ROOT% #install the script for updating the config (bz#484328) mkdir -p $RPM_BUILD_ROOT%{_bindir} install -m755 %{SOURCE8} $RPM_BUILD_ROOT%{_bindir} +# set library path in mailman-update-cfg script. +sed -i 's, at libdir@,%{_libdir},g' $RPM_BUILD_ROOT%{_bindir}/mailman-update-cfg # remove dir/files from $RPM_BUILD_ROOT that we aren't shipping rm -rf $RPM_BUILD_ROOT%{varmmdir}/icons @@ -483,6 +485,12 @@ exit 0 %attr(0755,root,root) %{_bindir}/mailman-update-cfg %changelog +* Wed Jul 22 2009 Daniel Novotny 3:2.1.12-7 +- fix bz#512798 - Mailman path in /usr/bin/mailman-update-cfg + is incorrect on x86_64. +- added explanation comment in mailman-update-cfg, to justify + why this script is needed + * Wed Jul 08 2009 Daniel Novotny 3:2.1.12-6 - fix bz#509689 - please remove execute perms From pkgdb at fedoraproject.org Wed Jul 22 11:30:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:50 +0000 Subject: [pkgdb] tcl: npajkovs has requested commit Message-ID: <20090722113050.2427E10F8BF@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:50 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113050.BA89B10F8C3@bastion2.fedora.phx.redhat.com> Package tcl in Fedora devel is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:30:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:30:52 +0000 Subject: [pkgdb] tcl: npajkovs has requested approveacls Message-ID: <20090722113052.4BF4110F8C6@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:13 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113113.89B5B10F8A6@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:17 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113117.8E4F210F8B2@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:19 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113119.6E93610F8A9@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tcl (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:21 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113121.2114310F8C9@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tcl (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:25 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113125.D8F3810F8D5@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 11 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:29 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113129.4BDA110F8B4@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:30 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113130.E8A3010F8D7@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:32 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113132.33F6710F8DA@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tcl (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:34 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113134.A398810F8DF@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tcl (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:36 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113136.498B010F8E2@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 10 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:50 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113150.EFC1D10F8BA@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl (Fedora 9) to Obsolete for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:31:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:31:58 +0000 Subject: [pkgdb] tcl had acl change status Message-ID: <20090722113158.1DC2C10F8BC@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl (Fedora 9) to Obsolete for wart To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:32:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:32:02 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113202.A720D10F8BF@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 10 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:32:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:32:08 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113208.38ADD10F8E5@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 11 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From than at fedoraproject.org Wed Jul 22 11:32:13 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:32:13 +0000 (UTC) Subject: rpms/kdesdk/devel .cvsignore, 1.60, 1.61 kdesdk.spec, 1.146, 1.147 sources, 1.62, 1.63 Message-ID: <20090722113213.A180B11C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdesdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13428 Modified Files: .cvsignore kdesdk.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 12 Jul 2009 11:25:30 -0000 1.60 +++ .cvsignore 22 Jul 2009 11:32:12 -0000 1.61 @@ -1,3 +1,4 @@ kdesdk-4.2.90.tar.bz2 kdesdk-4.2.95.tar.bz2 kdesdk-4.2.96.tar.bz2 +kdesdk-4.2.98.tar.bz2 Index: kdesdk.spec =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/kdesdk.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- kdesdk.spec 12 Jul 2009 11:25:30 -0000 1.146 +++ kdesdk.spec 22 Jul 2009 11:32:13 -0000 1.147 @@ -1,5 +1,5 @@ Name: kdesdk -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Summary: The KDE Software Development Kit (SDK) @@ -223,6 +223,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sun Jul 12 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdesdk/devel/sources,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- sources 12 Jul 2009 11:25:30 -0000 1.62 +++ sources 22 Jul 2009 11:32:13 -0000 1.63 @@ -1 +1 @@ -fe8725e39762e944d39e11becef55882 kdesdk-4.2.96.tar.bz2 +06ca4ad5fdc2afe0551ff8a1f82da60b kdesdk-4.2.98.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 22 11:32:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:32:14 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113214.B9C0C10F8C5@bastion2.fedora.phx.redhat.com> Package tcl in Fedora devel is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:33:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:15 +0000 Subject: [pkgdb] tk: npajkovs has requested watchbugzilla Message-ID: <20090722113315.D373310F8B1@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:17 +0000 Subject: [pkgdb] tk: npajkovs has requested watchcommits Message-ID: <20090722113317.A02C610F8C7@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:19 +0000 Subject: [pkgdb] tk: npajkovs has requested commit Message-ID: <20090722113319.6584910F8CA@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:20 +0000 Subject: [pkgdb] tk: npajkovs has requested approveacls Message-ID: <20090722113320.E950F10F8CE@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tk (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:28 +0000 Subject: [pkgdb] tk: npajkovs has requested watchbugzilla Message-ID: <20090722113328.3AC2E10F8D0@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:30 +0000 Subject: [pkgdb] tk: npajkovs has requested watchcommits Message-ID: <20090722113330.18C8610F8D3@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:31 +0000 Subject: [pkgdb] tk: npajkovs has requested commit Message-ID: <20090722113331.CE0A210F8D6@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:33 +0000 Subject: [pkgdb] tk: npajkovs has requested approveacls Message-ID: <20090722113333.99FCE10F8B6@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tk (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:39 +0000 Subject: [pkgdb] tk: npajkovs has requested watchcommits Message-ID: <20090722113339.BB1B810F8EE@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:38 +0000 Subject: [pkgdb] tk: npajkovs has requested watchbugzilla Message-ID: <20090722113338.6E09910F8EA@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:41 +0000 Subject: [pkgdb] tk: npajkovs has requested commit Message-ID: <20090722113341.6BCBC10F8F2@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:33:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:33:43 +0000 Subject: [pkgdb] tk: npajkovs has requested approveacls Message-ID: <20090722113343.23BE810F8F5@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tk (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:42 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113542.D48BF10F8AF@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tk (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:43 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113544.0A69F10F8B2@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tk (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:45 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113545.7402410F8BB@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tk (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:47 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113547.33A3110F8BD@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tk (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From than at fedoraproject.org Wed Jul 22 11:35:51 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:35:51 +0000 (UTC) Subject: rpms/kdetoys/devel .cvsignore, 1.37, 1.38 kdetoys.spec, 1.56, 1.57 sources, 1.35, 1.36 Message-ID: <20090722113551.B7F7411C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdetoys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14608 Modified Files: .cvsignore kdetoys.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 12 Jul 2009 11:35:23 -0000 1.37 +++ .cvsignore 22 Jul 2009 11:35:21 -0000 1.38 @@ -1,3 +1,4 @@ kdetoys-4.2.90.tar.bz2 kdetoys-4.2.95.tar.bz2 kdetoys-4.2.96.tar.bz2 +kdetoys-4.2.98.tar.bz2 Index: kdetoys.spec =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/kdetoys.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- kdetoys.spec 12 Jul 2009 11:35:24 -0000 1.56 +++ kdetoys.spec 22 Jul 2009 11:35:21 -0000 1.57 @@ -1,7 +1,7 @@ Name: kdetoys Summary: K Desktop Environment - Toys and Amusements Epoch: 7 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: GPLv2 @@ -86,6 +86,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Sun Jul 12 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdetoys/devel/sources,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- sources 12 Jul 2009 11:35:24 -0000 1.35 +++ sources 22 Jul 2009 11:35:21 -0000 1.36 @@ -1 +1 @@ -d81a8e6d0f1c1b824e7b14079c8a2c27 kdetoys-4.2.96.tar.bz2 +da6f93daaa5be1eb1885b154e4d43bbb kdetoys-4.2.98.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 22 11:35:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:49 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113549.62E4F10F8C0@bastion2.fedora.phx.redhat.com> Package tk in Fedora devel is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:52 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113552.EBC6C10F8C4@bastion2.fedora.phx.redhat.com> Package tk in Fedora 7 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:54 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113554.F113D10F8C6@bastion2.fedora.phx.redhat.com> Package tk in Fedora 8 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:35:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:35:56 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113556.71FF610F8C8@bastion2.fedora.phx.redhat.com> Package tk in Fedora 9 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:04 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113604.21EED10F8CC@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tk (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:05 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113605.B74A810F8D4@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tk (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:08 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113608.3513710F8DC@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tk (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:09 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113609.440AE10F8E3@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tk (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:11 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113611.700D610F8DD@bastion2.fedora.phx.redhat.com> Package tk in Fedora 10 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:17 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113617.916B310F8E4@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tk (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:20 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113620.C403610F8EA@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tk (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:22 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113622.451EF10F8E9@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tk (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:24 +0000 Subject: [pkgdb] tk had acl change status Message-ID: <20090722113624.AF38610F8FA@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tk (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:27 +0000 Subject: [pkgdb] tk ownership updated Message-ID: <20090722113627.54F7510F8FE@bastion2.fedora.phx.redhat.com> Package tk in Fedora 11 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tk From pkgdb at fedoraproject.org Wed Jul 22 11:36:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:28 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchbugzilla Message-ID: <20090722113628.A13CE10F901@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl-html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:30 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchcommits Message-ID: <20090722113630.BF0B810F903@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl-html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:32 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested commit Message-ID: <20090722113633.0E79F10F8F2@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl-html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:35 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested approveacls Message-ID: <20090722113635.17A1F10F905@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl-html (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From mbroz at fedoraproject.org Wed Jul 22 11:36:36 2009 From: mbroz at fedoraproject.org (Milan Broz) Date: Wed, 22 Jul 2009 11:36:36 +0000 (UTC) Subject: rpms/cryptsetup-luks/devel .cvsignore, 1.12, 1.13 cryptsetup-luks.spec, 1.68, 1.69 sources, 1.12, 1.13 Message-ID: <20090722113636.9971911C0099@cvs1.fedora.phx.redhat.com> Author: mbroz Update of /cvs/pkgs/rpms/cryptsetup-luks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14753 Modified Files: .cvsignore cryptsetup-luks.spec sources Log Message: Update to upstream final release. Split libs subpackage. Remove rpath setting from cryptsetup binary. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/cryptsetup-luks/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 22 Jun 2009 15:08:16 -0000 1.12 +++ .cvsignore 22 Jul 2009 11:36:06 -0000 1.13 @@ -1 +1 @@ -cryptsetup-1.0.7-rc1.tar.bz2 +cryptsetup-1.0.7.tar.bz2 Index: cryptsetup-luks.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptsetup-luks/devel/cryptsetup-luks.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- cryptsetup-luks.spec 15 Jul 2009 07:19:37 -0000 1.68 +++ cryptsetup-luks.spec 22 Jul 2009 11:36:06 -0000 1.69 @@ -1,7 +1,7 @@ Summary: A utility for setting up encrypted filesystems Name: cryptsetup-luks Version: 1.0.7 -Release: 0.2%{?dist} +Release: 1%{?dist} License: GPLv2 Group: Applications/System URL: http://cryptsetup.googlecode.com/ @@ -11,26 +11,31 @@ BuildRequires: libgpg-error-devel, libuu BuildRequires: libselinux-devel Provides: cryptsetup = %{version}-%{release} Obsoletes: cryptsetup <= 0.1 +Requires: cryptsetup-luks-libs = %{version}-%{release} -%define upstream_version %{version}-rc1 +%define _root_sbindir /sbin +%define upstream_version %{version} Source0: http://cryptsetup.googlecode.com/files/cryptsetup-%{upstream_version}.tar.bz2 %description This package contains cryptsetup, a utility for setting up encrypted filesystems using Device Mapper and the dm-crypt target. - %package devel Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: libgcrypt-devel > 1.1.42, device-mapper-devel, e2fsprogs-devel +Requires: libgcrypt-devel > 1.1.42, device-mapper-devel, libuuid-devel Summary: Headers and libraries for using encrypted filesystems - %description devel The cryptsetup-luks-devel package contain libraries and header files used for writing code that makes use of encrypted filesystems. +%package libs +Summary: Cryptsetup shared library + +%description libs +This package contains the cryptsetup shared library, libcryptsetup. %prep %setup -q -n cryptsetup-%{upstream_version} @@ -38,12 +43,13 @@ used for writing code that makes use of iconv -f latin1 -t utf8 ChangeLog > ChangeLog.new mv -f ChangeLog.new ChangeLog - %build -%configure --sbindir=/sbin --libdir=/%{_lib} +%configure --sbindir=%{_root_sbindir} --libdir=/%{_lib} +# remove rpath +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} - %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT @@ -57,28 +63,34 @@ ln -s ../../%{_lib}/$(ls libcryptsetup.s popd %find_lang cryptsetup +%post -n cryptsetup-luks-libs -p /sbin/ldconfig -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%postun -n cryptsetup-luks-libs -p /sbin/ldconfig %files -f cryptsetup.lang %defattr(-,root,root,-) %doc COPYING ChangeLog AUTHORS TODO %{_mandir}/man8/cryptsetup.8.gz -/sbin/cryptsetup -/%{_lib}/libcryptsetup.so.* - +%{_root_sbindir}/cryptsetup %files devel %defattr(-,root,root,-) %{_includedir}/libcryptsetup.h %{_libdir}/libcryptsetup.so + +%files libs +%defattr(-,root,root,-) +/%{_lib}/libcryptsetup.so.* + %clean rm -rf $RPM_BUILD_ROOT - %changelog +* Wed Jul 22 2009 Milan Broz - 1.0.7-1 +- Update to upstream final release. +- Split libs subpackage. +- Remove rpath setting from cryptsetup binary. + * Wed Jul 15 2009 Till Maas - 1.0.7-0.2 - update BR because of libuuid splitout from e2fsprogs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cryptsetup-luks/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 22 Jun 2009 15:08:17 -0000 1.12 +++ sources 22 Jul 2009 11:36:06 -0000 1.13 @@ -1 +1 @@ -0910632173fb960252412bf7342b42fc cryptsetup-1.0.7-rc1.tar.bz2 +5eea2a77391a8a1a651b31cbaef59e22 cryptsetup-1.0.7.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 22 11:36:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:40 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchbugzilla Message-ID: <20090722113640.935D010F908@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl-html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:42 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchcommits Message-ID: <20090722113642.7A8D910F90A@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl-html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:44 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested commit Message-ID: <20090722113644.B0F0510F8F5@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl-html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:46 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested approveacls Message-ID: <20090722113647.0DB0810F90D@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl-html (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:50 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchbugzilla Message-ID: <20090722113650.E833410F90F@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tcl-html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:52 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested watchcommits Message-ID: <20090722113653.0246410F915@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tcl-html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:55 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested commit Message-ID: <20090722113655.1ADFD10F8AA@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tcl-html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:36:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:36:57 +0000 Subject: [pkgdb] tcl-html: npajkovs has requested approveacls Message-ID: <20090722113657.19C3110F8AB@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tcl-html (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:37:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:06 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722113706.3106C10F918@bastion2.fedora.phx.redhat.com> Package tclx in Fedora 7 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:08 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722113708.D013310F91A@bastion2.fedora.phx.redhat.com> Package tclx in Fedora 8 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:13 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722113713.36AFB10F91B@bastion2.fedora.phx.redhat.com> Package tclx in Fedora 9 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:37 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchbugzilla Message-ID: <20090722113737.C6B4510F8B0@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tclx (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:39 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchcommits Message-ID: <20090722113739.6183310F8B3@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tclx (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:41 +0000 Subject: [pkgdb] tclx: npajkovs has requested commit Message-ID: <20090722113741.B1E9A10F8BB@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tclx (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:43 +0000 Subject: [pkgdb] tclx: npajkovs has requested approveacls Message-ID: <20090722113743.B2FC810F8C2@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tclx (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:52 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchbugzilla Message-ID: <20090722113752.204BE10F8C1@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tclx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:54 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchcommits Message-ID: <20090722113754.A485710F91F@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tclx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:56 +0000 Subject: [pkgdb] tclx: npajkovs has requested commit Message-ID: <20090722113756.C613D10F920@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tclx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:37:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:37:59 +0000 Subject: [pkgdb] tclx: npajkovs has requested approveacls Message-ID: <20090722113759.2847910F8C8@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tclx (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:38:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:05 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchbugzilla Message-ID: <20090722113805.3CFAC10F927@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchbugzilla acl on tclx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:38:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:07 +0000 Subject: [pkgdb] tclx: npajkovs has requested watchcommits Message-ID: <20090722113807.3AB2910F930@bastion2.fedora.phx.redhat.com> npajkovs has requested the watchcommits acl on tclx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:38:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:09 +0000 Subject: [pkgdb] tclx: npajkovs has requested commit Message-ID: <20090722113809.2736A10F92B@bastion2.fedora.phx.redhat.com> npajkovs has requested the commit acl on tclx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:38:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:11 +0000 Subject: [pkgdb] tclx: npajkovs has requested approveacls Message-ID: <20090722113811.2C47C10F8CE@bastion2.fedora.phx.redhat.com> npajkovs has requested the approveacls acl on tclx (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:38:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:45 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113845.B4F4C10F8DC@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 7 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:46 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113847.0BCC410F8E2@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 8 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:38:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:38:50 +0000 Subject: [pkgdb] tcl ownership updated Message-ID: <20090722113851.0281010F8E3@bastion2.fedora.phx.redhat.com> Package tcl in Fedora 9 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl From pkgdb at fedoraproject.org Wed Jul 22 11:39:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:22 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113922.5BA2A10F8DF@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl-html (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:23 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113923.B773B10F8E4@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl-html (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:27 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113927.1BDF910F8E9@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tcl-html (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:29 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722113929.6E90810F8F9@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora devel is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:35 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722113935.8DD8B10F8FD@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 9 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:38 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113938.DA20D10F937@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl-html (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:39 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113939.D993510F93A@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl-html (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:41 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113941.6D54510F93D@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tcl-html (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:43 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113943.631AD10F940@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tcl-html (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:47 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722113947.963CD10F900@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 10 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:55 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113955.36C5810F944@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tcl-html (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:52 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113952.EA57E10F941@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tcl-html (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:39:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:39:57 +0000 Subject: [pkgdb] tcl-html had acl change status Message-ID: <20090722113957.3ABE110F945@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tcl-html (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:40:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:04 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722114004.2975210F8F3@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 11 was orphaned by mmaslano To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:40:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:46 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114046.E66D010F90A@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tclx (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:40:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:48 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114048.2E64610F90D@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tclx (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:40:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:50 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114050.5391C10F910@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tclx (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:40:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:50 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114051.1AC1910F949@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tclx (Fedora devel) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:40:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:40:52 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722114053.1F4B410F8AA@bastion2.fedora.phx.redhat.com> Package tclx in Fedora devel is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:05 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114105.BDC2410F8AB@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tclx (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:05 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114105.E0F8E10F94A@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tclx (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:08 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114108.D8BB510F94F@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tclx (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:10 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114110.5DC1D10F952@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tclx (Fedora 10) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:12 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722114113.161B310F954@bastion2.fedora.phx.redhat.com> Package tclx in Fedora 10 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:14 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114114.DF77410F914@bastion2.fedora.phx.redhat.com> mmaslano has set the watchbugzilla acl on tclx (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:17 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114117.812B610F958@bastion2.fedora.phx.redhat.com> mmaslano has set the watchcommits acl on tclx (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:18 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722114118.6ED9C10F95C@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 11 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:41:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:19 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114119.6EE5B10F960@bastion2.fedora.phx.redhat.com> mmaslano has set the commit acl on tclx (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:21 +0000 Subject: [pkgdb] tclx had acl change status Message-ID: <20090722114121.CFCF610F963@bastion2.fedora.phx.redhat.com> mmaslano has set the approveacls acl on tclx (Fedora 11) to Approved for npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:23 +0000 Subject: [pkgdb] tclx ownership updated Message-ID: <20090722114123.BB3EF10F966@bastion2.fedora.phx.redhat.com> Package tclx in Fedora 11 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tclx From pkgdb at fedoraproject.org Wed Jul 22 11:41:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:27 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722114127.6C1CD10F917@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 9 is now owned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:41:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:29 +0000 Subject: [pkgdb] tcl-html ownership updated Message-ID: <20090722114129.7DAB210F91A@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 9 was orphaned by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From pkgdb at fedoraproject.org Wed Jul 22 11:41:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 11:41:29 +0000 Subject: [pkgdb] tcl-html (un)retirement Message-ID: <20090722114129.9131210F968@bastion2.fedora.phx.redhat.com> Package tcl-html in Fedora 9 has been retired by npajkovs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tcl-html From than at fedoraproject.org Wed Jul 22 11:43:23 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:43:23 +0000 (UTC) Subject: rpms/kdeutils/devel .cvsignore, 1.65, 1.66 kdeutils.spec, 1.188, 1.189 sources, 1.66, 1.67 Message-ID: <20090722114323.9C14711C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18436 Modified Files: .cvsignore kdeutils.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/.cvsignore,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- .cvsignore 13 Jul 2009 04:51:55 -0000 1.65 +++ .cvsignore 22 Jul 2009 11:43:22 -0000 1.66 @@ -1,3 +1,4 @@ kdeutils-4.2.90.tar.bz2 kdeutils-4.2.95.tar.bz2 kdeutils-4.2.96.tar.bz2 +kdeutils-4.2.98.tar.bz2 Index: kdeutils.spec =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/kdeutils.spec,v retrieving revision 1.188 retrieving revision 1.189 diff -u -p -r1.188 -r1.189 --- kdeutils.spec 13 Jul 2009 04:51:55 -0000 1.188 +++ kdeutils.spec 22 Jul 2009 11:43:22 -0000 1.189 @@ -3,7 +3,7 @@ Name: kdeutils Epoch: 6 -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} Summary: K Desktop Environment - Utilities @@ -193,6 +193,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Mon Jul 13 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdeutils/devel/sources,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- sources 13 Jul 2009 04:51:55 -0000 1.66 +++ sources 22 Jul 2009 11:43:23 -0000 1.67 @@ -1 +1 @@ -73e8f37e34fbdf0528646fd07aa010fc kdeutils-4.2.96.tar.bz2 +3a5fb437a04103783258cdb840630906 kdeutils-4.2.98.tar.bz2 From danken at fedoraproject.org Wed Jul 22 11:47:05 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Wed, 22 Jul 2009 11:47:05 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/F-11 tex-fonts-hebrew.spec,1.3,1.4 Message-ID: <20090722114705.7519111C0099@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19774 Modified Files: tex-fonts-hebrew.spec Log Message: - Rebuilt against existing David Type1 fonts. Resolves: #509697 Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/F-11/tex-fonts-hebrew.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tex-fonts-hebrew.spec 25 Feb 2009 20:10:25 -0000 1.3 +++ tex-fonts-hebrew.spec 22 Jul 2009 11:47:03 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Culmus Hebrew fonts support for LaTeX Name: tex-fonts-hebrew Version: 0.1 -Release: 11%{?dist} +Release: 12%{?dist} URL: http://culmus.sf.net # There is no real upstream for this package. It was based on Yotam Medini's # http://www.medini.org/hebrew/culmus2ltx-2003-02-28.tar.gz but is now @@ -20,7 +20,7 @@ Requires(post): /usr/bin/texhash /usr/bi Requires(postun): /usr/bin/texhash /usr/bin/updmap-sys %description -Support using the Culmus Hebrew fonts in LaTeX. +Support using the Culmus Hebrew fonts in LaTeX. %prep %setup -q -n tetex-fonts-hebrew-%{version} @@ -68,6 +68,9 @@ fi /usr/bin/texhash %changelog +* Wed Jul 22 2009 Dan Kenigsberg - 0.1-12 +- Rebuilt against existing David Type1 fonts. Bug #509697 + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From than at fedoraproject.org Wed Jul 22 11:51:57 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 11:51:57 +0000 (UTC) Subject: rpms/oxygen-icon-theme/devel .cvsignore, 1.6, 1.7 oxygen-icon-theme.spec, 1.5, 1.6 sources, 1.6, 1.7 Message-ID: <20090722115157.E9D2111C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/oxygen-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22898 Modified Files: .cvsignore oxygen-icon-theme.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 13 Jul 2009 05:21:21 -0000 1.6 +++ .cvsignore 22 Jul 2009 11:51:27 -0000 1.7 @@ -1,3 +1,4 @@ oxygen-icons-4.2.90.tar.bz2 oxygen-icons-4.2.95.tar.bz2 oxygen-icons-4.2.96.tar.bz2 +oxygen-icons-4.2.98.tar.bz2 Index: oxygen-icon-theme.spec =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/oxygen-icon-theme.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- oxygen-icon-theme.spec 13 Jul 2009 05:21:21 -0000 1.5 +++ oxygen-icon-theme.spec 22 Jul 2009 11:51:27 -0000 1.6 @@ -1,6 +1,6 @@ Name: oxygen-icon-theme Summary: Oxygen icon theme -Version: 4.2.96 +Version: 4.2.98 Release: 1%{?dist} License: LGPLv3+ @@ -66,6 +66,9 @@ fi %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Mon Jul 13 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/oxygen-icon-theme/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 13 Jul 2009 05:21:21 -0000 1.6 +++ sources 22 Jul 2009 11:51:27 -0000 1.7 @@ -1 +1 @@ -95fd0245065f27c8a1f47337310fe9cf oxygen-icons-4.2.96.tar.bz2 +e9588cdc73708e9b2ca6f7cb3878f36c oxygen-icons-4.2.98.tar.bz2 From dnovotny at fedoraproject.org Wed Jul 22 12:06:18 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Wed, 22 Jul 2009 12:06:18 +0000 (UTC) Subject: rpms/gob2/devel .cvsignore, 1.6, 1.7 gob2.spec, 1.20, 1.21 sources, 1.6, 1.7 Message-ID: <20090722120618.255B411C0099@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/gob2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29394 Modified Files: .cvsignore gob2.spec sources Log Message: new upstream version Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/gob2/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 3 Dec 2007 13:49:35 -0000 1.6 +++ .cvsignore 22 Jul 2009 12:05:47 -0000 1.7 @@ -1 +1 @@ -gob2-2.0.15.tar.gz +gob2-2.0.16.tar.gz Index: gob2.spec =================================================================== RCS file: /cvs/extras/rpms/gob2/devel/gob2.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gob2.spec 25 Feb 2009 00:12:50 -0000 1.20 +++ gob2.spec 22 Jul 2009 12:05:47 -0000 1.21 @@ -1,7 +1,7 @@ Summary: The GObject Builder Name: gob2 -Version: 2.0.15 -Release: 4%{?dist} +Version: 2.0.16 +Release: 1%{?dist} License: GPLv2+ Group: Development/Tools Source: gob2-%{version}.tar.gz @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Wed Jul 22 2009 Daniel Novotny 2.0.16-1 +- new upstream version 2.0.16 + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/gob2/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 3 Dec 2007 13:49:35 -0000 1.6 +++ sources 22 Jul 2009 12:05:47 -0000 1.7 @@ -1 +1 @@ -0c5ab18305fc37902d202a253fdb28b1 gob2-2.0.15.tar.gz +cced6d709df6fad3baf8831f027d62d5 gob2-2.0.16.tar.gz From caolanm at fedoraproject.org Wed Jul 22 12:12:17 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 22 Jul 2009 12:12:17 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1971,1.1972 Message-ID: <20090722121217.1656411C049A@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32525 Modified Files: openoffice.org.spec Log Message: found them in libXext-devel Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1971 retrieving revision 1.1972 diff -u -p -r1.1971 -r1.1972 --- openoffice.org.spec 22 Jul 2009 11:15:42 -0000 1.1971 +++ openoffice.org.spec 22 Jul 2009 12:12:16 -0000 1.1972 @@ -54,13 +54,13 @@ Source9: openoffice.org-javafilte Source10: http://www.openoffice.org/nonav/issues/showattachment.cgi/60508/or-IN_DEV300_m40.sdf Source11: http://www.openoffice.org/nonav/issues/showattachment.cgi/62822/acor_en-GB.dat Source12: http://www.openoffice.org/nonav/issues/showattachment.cgi/62823/acor_en-ZA.dat -BuildRequires: zip, findutils, autoconf, flex, bison, icu, gcc-c++ +BuildRequires: zip, findutils, autoconf, flex, bison, icu, gperf, gcc-c++ BuildRequires: binutils, java-devel, boost-devel, zlib-devel, vigra-devel BuildRequires: python-devel, expat-devel, libxml2-devel, libxslt-devel, bc BuildRequires: neon-devel, libcurl-devel, libidn-devel, pam-devel, cups-devel -BuildRequires: libXt-devel, libICE-devel, libjpeg-devel, db4-devel, gperf +BuildRequires: libXext-devel, libXt-devel, libICE-devel, libjpeg-devel, BuildRequires: gecko-devel, libwpd-devel, hunspell-devel, unixODBC-devel -BuildRequires: sane-backends-devel, libicu-devel, perl-Archive-Zip +BuildRequires: db4-devel, sane-backends-devel, libicu-devel, perl-Archive-Zip BuildRequires: freetype-devel, gtk2-devel, desktop-file-utils, hyphen-devel BuildRequires: evolution-data-server-devel, libtextcat-devel, nss-devel BuildRequires: gstreamer-devel, gstreamer-plugins-base-devel, openssl-devel @@ -1743,13 +1743,6 @@ pushd solver/%{OFFICEUPD}/unxlng*/bin ln -s /usr/share/java/commons-logging-1.0.4.jar commons-logging-1.1.1.jar popd -#temp hack for now -mkdir -p solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions -echo "#include " > solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/shape.h -echo "#include " >> solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/shape.h -echo "#include " > solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/dpms.h -echo "#include " >> solver/%{OFFICEUPD}/unxlng*/inc/X11/extensions/dpms.h - #build OOo, on failure make a stab at debugging the crash if any, and #rebuild un-parallel cd instsetoo_native/util From rhughes at fedoraproject.org Wed Jul 22 12:16:28 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Wed, 22 Jul 2009 12:16:28 +0000 (UTC) Subject: rpms/DeviceKit-power/devel .cvsignore, 1.14, 1.15 DeviceKit-power.spec, 1.19, 1.20 sources, 1.14, 1.15 DeviceKit-power-port-to-polkit1.patch, 1.2, NONE Message-ID: <20090722121628.9036B11C0099@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/rpms/DeviceKit-power/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1113 Modified Files: .cvsignore DeviceKit-power.spec sources Removed Files: DeviceKit-power-port-to-polkit1.patch Log Message: * Wed Jul 22 2009 Richard Hughes - 010-1 - Update to 010 - Fixes a few problems with multi-battery laptops - Port to GUdev and PolicyKit1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 6 Jul 2009 12:36:57 -0000 1.14 +++ .cvsignore 22 Jul 2009 12:15:57 -0000 1.15 @@ -1 +1 @@ -DeviceKit-power-009.tar.gz +DeviceKit-power-010.tar.gz Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/DeviceKit-power.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- DeviceKit-power.spec 6 Jul 2009 12:36:57 -0000 1.19 +++ DeviceKit-power.spec 22 Jul 2009 12:15:58 -0000 1.20 @@ -1,47 +1,39 @@ %define glib2_version 2.6.0 %define dbus_version 0.90 %define dbus_glib_version 0.70 -%define DeviceKit_version 002 %define polkit_version 0.92 %define parted_version 1.8.8 %define alphatag 20090616 Summary: Power Management Service Name: DeviceKit-power -Version: 009 +Version: 010 #Release: 0.4.%{?alphatag}git%{?dist} Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries -URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit.git;a=summary +URL: http://cgit.freedesktop.org/DeviceKit/DeviceKit-power/ #Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -# from upstream polkit1 branch, automatically generated -Patch0: DeviceKit-power-port-to-polkit1.patch - Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig BuildRequires: glib2-devel >= %{glib2_version} BuildRequires: dbus-devel >= %{dbus_version} BuildRequires: dbus-glib-devel >= %{dbus_glib_version} BuildRequires: polkit-devel >= %{polkit_version} -BuildRequires: DeviceKit-devel >= %{DeviceKit_version} BuildRequires: sqlite-devel BuildRequires: libtool BuildRequires: intltool BuildRequires: gettext +BuildRequires: libgudev1-devel BuildRequires: libusb-devel -# low level icky tools (due to polkit1 patch) -BuildRequires: automake, autoconf, libtool - Requires: dbus >= %{dbus_version} Requires: dbus-glib >= %{dbus_glib_version} Requires: glib2 >= %{glib2_version} Requires: polkit >= %{polkit_version} -Requires: DeviceKit >= %{DeviceKit_version} Requires: udev Requires: pm-utils >= 1.2.2.1 @@ -60,10 +52,6 @@ Headers and libraries for DeviceKit-powe %prep %setup -q #%setup -q -n %{?name}-%{?version}-%{?alphatag} -%patch0 -p1 -b .polkit1 - -# we messed about with configure.ac and Makefile.am, so regenerate (due to polkit1 patch) -autoreconf %build %configure @@ -121,6 +109,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 22 2009 Richard Hughes - 010-1 +- Update to 010 +- Fixes a few problems with multi-battery laptops +- Port to GUdev and PolicyKit1 + * Mon Jul 06 2009 Richard Hughes - 009-1 - Update to 009 - Fixes many problems with multi-battery laptops Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 6 Jul 2009 12:36:57 -0000 1.14 +++ sources 22 Jul 2009 12:15:58 -0000 1.15 @@ -1 +1 @@ -535703fa7b9c323d6388b5aff28cfeeb DeviceKit-power-009.tar.gz +ab6d840efd70b4dcc6008782454e5e7a DeviceKit-power-010.tar.gz --- DeviceKit-power-port-to-polkit1.patch DELETED --- From jakub at fedoraproject.org Wed Jul 22 12:32:06 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Wed, 22 Jul 2009 12:32:06 +0000 (UTC) Subject: rpms/gcc/devel .cvsignore, 1.278, 1.279 gcc.spec, 1.54, 1.55 sources, 1.281, 1.282 gcc44-pr40811.patch, 1.2, NONE Message-ID: <20090722123206.CFA6F11C0099@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5400 Modified Files: .cvsignore gcc.spec sources Removed Files: gcc44-pr40811.patch Log Message: 4.4.1-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.278 retrieving revision 1.279 diff -u -p -r1.278 -r1.279 --- .cvsignore 21 Jul 2009 16:55:30 -0000 1.278 +++ .cvsignore 22 Jul 2009 12:32:06 -0000 1.279 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.0-20090721.tar.bz2 +gcc-4.4.1-20090722.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- gcc.spec 21 Jul 2009 16:55:30 -0000 1.54 +++ gcc.spec 22 Jul 2009 12:32:06 -0000 1.55 @@ -1,9 +1,9 @@ -%global DATE 20090721 -%global SVNREV 149860 -%global gcc_version 4.4.0 +%global DATE 20090722 +%global SVNREV 149928 +%global gcc_version 4.4.1 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 15 +%global gcc_release 1 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -160,7 +160,6 @@ Patch28: gcc44-pr38757.patch Patch29: gcc44-libstdc++-docs.patch Patch30: gcc44-rh503816-1.patch Patch31: gcc44-rh503816-2.patch -Patch32: gcc44-pr40811.patch Patch1000: fastjar-0.97-segfault.patch @@ -470,7 +469,6 @@ which are required to compile with the G %endif %patch30 -p0 -b .rh503816-1~ %patch31 -p0 -b .rh503816-2~ -%patch32 -p0 -b .pr40811~ # This testcase doesn't compile. rm libjava/testsuite/libjava.lang/PR35020* @@ -483,7 +481,7 @@ tar xzf %{SOURCE4} tar xjf %{SOURCE10} %endif -sed -i -e 's/4\.4\.1/4.4.0/' gcc/BASE-VER +sed -i -e 's/4\.4\.2/4.4.1/' gcc/BASE-VER echo 'Red Hat %{version}-%{gcc_release}' > gcc/DEV-PHASE # Default to -gdwarf-3 rather than -gdwarf-2 @@ -1809,6 +1807,10 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Wed Jul 22 2009 Jakub Jelinek 4.4.1-1 +- update from gcc-4_4-branch + - GCC 4.4.1 release + * Tue Jul 21 2009 Jakub Jelinek 4.4.0-15 - update from gcc-4_4-branch - PRs libfortran/40714, target/39943, target/40809, tree-optimization/40792 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.281 retrieving revision 1.282 diff -u -p -r1.281 -r1.282 --- sources 21 Jul 2009 16:55:31 -0000 1.281 +++ sources 22 Jul 2009 12:32:06 -0000 1.282 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -aed249015ac92356fa93a70f0b40666f gcc-4.4.0-20090721.tar.bz2 +ffed957089f57c21981662f8f2c1e08d gcc-4.4.1-20090722.tar.bz2 --- gcc44-pr40811.patch DELETED --- From than at fedoraproject.org Wed Jul 22 12:37:53 2009 From: than at fedoraproject.org (Than Ngo) Date: Wed, 22 Jul 2009 12:37:53 +0000 (UTC) Subject: rpms/kde-l10n/devel .cvsignore, 1.25, 1.26 kde-l10n.spec, 1.85, 1.86 sources, 1.28, 1.29 Message-ID: <20090722123753.E6F4511C0099@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7487 Modified Files: .cvsignore kde-l10n.spec sources Log Message: 4.3rc3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 14 Jul 2009 10:46:20 -0000 1.25 +++ .cvsignore 22 Jul 2009 12:37:23 -0000 1.26 @@ -166,3 +166,59 @@ kde-l10n-uk-4.2.96.tar.bz2 kde-l10n-wa-4.2.96.tar.bz2 kde-l10n-zh_CN-4.2.96.tar.bz2 kde-l10n-zh_TW-4.2.96.tar.bz2 +kde-l10n-ar-4.2.98.tar.bz2 +kde-l10n-bg-4.2.98.tar.bz2 +kde-l10n-bn_IN-4.2.98.tar.bz2 +kde-l10n-ca-4.2.98.tar.bz2 +kde-l10n-csb-4.2.98.tar.bz2 +kde-l10n-cs-4.2.98.tar.bz2 +kde-l10n-da-4.2.98.tar.bz2 +kde-l10n-de-4.2.98.tar.bz2 +kde-l10n-el-4.2.98.tar.bz2 +kde-l10n-en_GB-4.2.98.tar.bz2 +kde-l10n-es-4.2.98.tar.bz2 +kde-l10n-et-4.2.98.tar.bz2 +kde-l10n-eu-4.2.98.tar.bz2 +kde-l10n-fi-4.2.98.tar.bz2 +kde-l10n-fr-4.2.98.tar.bz2 +kde-l10n-ga-4.2.98.tar.bz2 +kde-l10n-gl-4.2.98.tar.bz2 +kde-l10n-gu-4.2.98.tar.bz2 +kde-l10n-he-4.2.98.tar.bz2 +kde-l10n-hi-4.2.98.tar.bz2 +kde-l10n-hu-4.2.98.tar.bz2 +kde-l10n-is-4.2.98.tar.bz2 +kde-l10n-it-4.2.98.tar.bz2 +kde-l10n-ja-4.2.98.tar.bz2 +kde-l10n-kk-4.2.98.tar.bz2 +kde-l10n-km-4.2.98.tar.bz2 +kde-l10n-kn-4.2.98.tar.bz2 +kde-l10n-ko-4.2.98.tar.bz2 +kde-l10n-ku-4.2.98.tar.bz2 +kde-l10n-lt-4.2.98.tar.bz2 +kde-l10n-lv-4.2.98.tar.bz2 +kde-l10n-mai-4.2.98.tar.bz2 +kde-l10n-mk-4.2.98.tar.bz2 +kde-l10n-ml-4.2.98.tar.bz2 +kde-l10n-mr-4.2.98.tar.bz2 +kde-l10n-nb-4.2.98.tar.bz2 +kde-l10n-nds-4.2.98.tar.bz2 +kde-l10n-nl-4.2.98.tar.bz2 +kde-l10n-nn-4.2.98.tar.bz2 +kde-l10n-pa-4.2.98.tar.bz2 +kde-l10n-pl-4.2.98.tar.bz2 +kde-l10n-pt_BR-4.2.98.tar.bz2 +kde-l10n-pt-4.2.98.tar.bz2 +kde-l10n-ro-4.2.98.tar.bz2 +kde-l10n-ru-4.2.98.tar.bz2 +kde-l10n-sk-4.2.98.tar.bz2 +kde-l10n-sl-4.2.98.tar.bz2 +kde-l10n-sr-4.2.98.tar.bz2 +kde-l10n-sv-4.2.98.tar.bz2 +kde-l10n-tg-4.2.98.tar.bz2 +kde-l10n-th-4.2.98.tar.bz2 +kde-l10n-tr-4.2.98.tar.bz2 +kde-l10n-uk-4.2.98.tar.bz2 +kde-l10n-wa-4.2.98.tar.bz2 +kde-l10n-zh_CN-4.2.98.tar.bz2 +kde-l10n-zh_TW-4.2.98.tar.bz2 Index: kde-l10n.spec =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/kde-l10n.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- kde-l10n.spec 16 Jul 2009 15:51:17 -0000 1.85 +++ kde-l10n.spec 22 Jul 2009 12:37:23 -0000 1.86 @@ -1,7 +1,7 @@ %define buildall 0 Name: kde-l10n -Version: 4.2.96 +Version: 4.2.98 Release: 1%{dist} Url: http://www.kde.org Summary: Internationalization support for KDE @@ -130,14 +130,15 @@ Provides: %{name}-be = %{version}-%{rele %description Belarusian Belarusian language support for KDE -%package Bengali -Summary: Bengali language support for KDE +%package Bengali-India +Summary: Bengali India language support for KDE Group: User Interface/Desktops Requires: kde-filesystem Provides: %{name}-bn_IN = %{version}-%{release} +Obsoletes: %{name}-Bengali -%description Bengali -Bengali language support for KDE +%description Bengali-India +Bengali India language support for KDE %package Bulgarian Summary: Bulgarian language support for KDE @@ -904,7 +905,7 @@ rm -rf %{buildroot} %lang(bg) %{_datadir}/locale/bg/entry.desktop %lang(bg) %{_kde4_appsdir}/kvtml/bg -%files Bengali +%files Bengali-India %defattr(-,root,root) %lang(bn_IN) %{_datadir}/locale/bn_IN/LC_MESSAGES/* %lang(bn_IN) %{_datadir}/locale/bn_IN/entry.desktop @@ -1492,6 +1493,9 @@ rm -rf %{buildroot} %lang(zh_TW) %{_kde4_docdir}/HTML/zh_TW %changelog +* Wed Jul 22 2009 Than Ngo - 4.2.98-1 +- 4.3rc3 + * Tue Jul 14 2009 Than Ngo - 4.2.96-1 - 4.3rc2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kde-l10n/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 14 Jul 2009 10:46:20 -0000 1.28 +++ sources 22 Jul 2009 12:37:23 -0000 1.29 @@ -1,56 +1,56 @@ -c0915f33591d3e9c85fd7ce726e2015f kde-l10n-ar-4.2.96.tar.bz2 -88d2c749a4887d3dad1276d6ba4384c7 kde-l10n-bg-4.2.96.tar.bz2 -8bf73cc8bbe3680e47dbfdb7e00a8abc kde-l10n-bn_IN-4.2.96.tar.bz2 -9af36613c91d79cfbe05a9502ea8abbe kde-l10n-ca-4.2.96.tar.bz2 -53ede08114e9376e19e48ff77f098e7a kde-l10n-csb-4.2.96.tar.bz2 -f75364843378e4b3c83adc2f10841ce7 kde-l10n-cs-4.2.96.tar.bz2 -ba1924fdb1c94084a254e14a9b9bb214 kde-l10n-da-4.2.96.tar.bz2 -a51c3b329791ff2461b679b72413cb2d kde-l10n-de-4.2.96.tar.bz2 -33d6e9dc0dec9975895e961dc2e3632b kde-l10n-el-4.2.96.tar.bz2 -76560f5da2adc3819efe4c285ba6e429 kde-l10n-en_GB-4.2.96.tar.bz2 -b725a171de57e6e92ba8f1fc8aeab81a kde-l10n-es-4.2.96.tar.bz2 -4a7172062d85d36da7ce5663830e7d1b kde-l10n-et-4.2.96.tar.bz2 -1aa50185e93c2e608473453c7d855710 kde-l10n-eu-4.2.96.tar.bz2 -8e3a1fafabcdd08483214e104e17f659 kde-l10n-fi-4.2.96.tar.bz2 -3d7adaaf6b0251e3b213bcc983380ae3 kde-l10n-fr-4.2.96.tar.bz2 -0e3501cabfcaf853264435e5c6e786b0 kde-l10n-ga-4.2.96.tar.bz2 -88cb52beefd54033b74e1cf4afc7ae16 kde-l10n-gl-4.2.96.tar.bz2 -0e289fc862116576adb02803cd0bbe1c kde-l10n-gu-4.2.96.tar.bz2 -b56f7989937cee9eaa39a1816d9430a8 kde-l10n-he-4.2.96.tar.bz2 -1f89396e8f7d1f731cd01c0dc1c283d2 kde-l10n-hi-4.2.96.tar.bz2 -2dd7fa902de8d924ecd2baf95b9aca66 kde-l10n-hu-4.2.96.tar.bz2 -cf99687ecb07d2174011da8ce700bf64 kde-l10n-is-4.2.96.tar.bz2 -ad6bbf8094021407a0962f3d2ce21cb1 kde-l10n-it-4.2.96.tar.bz2 -d1d2ec707a7e44b55f93205c6bdc5cef kde-l10n-ja-4.2.96.tar.bz2 -ad2358af593fb04a542395f363f09595 kde-l10n-kk-4.2.96.tar.bz2 -120fca612f7b584d209a267458c1cb2a kde-l10n-km-4.2.96.tar.bz2 -433a62309606cbeb663cc7012e371581 kde-l10n-kn-4.2.96.tar.bz2 -00ba8b737ece7bfb2d1feffd5be360c1 kde-l10n-ko-4.2.96.tar.bz2 -0fa59ee213d3df997a00f291e93c50a9 kde-l10n-ku-4.2.96.tar.bz2 -d0b754baef2f743564523286eba0b431 kde-l10n-lt-4.2.96.tar.bz2 -063b837e00fffe0f40f2bfd71127fedc kde-l10n-lv-4.2.96.tar.bz2 -95da02c406ae83863225b9934040ad4d kde-l10n-mai-4.2.96.tar.bz2 -94d61aaad97ef702671592d7e22e1ac6 kde-l10n-mk-4.2.96.tar.bz2 -696ff19cde16d783b96073085fda6539 kde-l10n-ml-4.2.96.tar.bz2 -8f6469f95288e37fe0ebf076e2567995 kde-l10n-mr-4.2.96.tar.bz2 -9f3470582d08d86e0868f74f0006c25a kde-l10n-nb-4.2.96.tar.bz2 -cc6f0720d3edd9444d8a676da38a6a7e kde-l10n-nds-4.2.96.tar.bz2 -b809dc5222c0cdc18274d51d8826fd30 kde-l10n-nl-4.2.96.tar.bz2 -6cd9eaafb9a0f7e5bd818541cb5ddfca kde-l10n-nn-4.2.96.tar.bz2 -c56675a77f2d49ef5ed3fdc918ef5eda kde-l10n-pa-4.2.96.tar.bz2 -369b2b3ff274230249698e83889069fd kde-l10n-pl-4.2.96.tar.bz2 -2f77c9b17c94aab142ab8f7c15f8d443 kde-l10n-pt_BR-4.2.96.tar.bz2 -ab229e8e9f29c77038d80b5a6d7c3393 kde-l10n-pt-4.2.96.tar.bz2 -73576dc86feb193f464e5641c6dc30cc kde-l10n-ro-4.2.96.tar.bz2 -d9dc4a53c50c5efab4829ee45bd3f60f kde-l10n-ru-4.2.96.tar.bz2 -2561b3bc079c3427696f4f087f5c3e2e kde-l10n-sk-4.2.96.tar.bz2 -8668b874b6b339486c25c5a12ec8df89 kde-l10n-sl-4.2.96.tar.bz2 -ab66a3b1511fe5f76116ddd30f7b396b kde-l10n-sr-4.2.96.tar.bz2 -a04b93aa5bc356640bb020dabca967d6 kde-l10n-sv-4.2.96.tar.bz2 -f5754a235ebcee07a02753837507cde4 kde-l10n-tg-4.2.96.tar.bz2 -649b61902d49cdd5b0ab04e790b29eaa kde-l10n-th-4.2.96.tar.bz2 -5dbd2f78ec4511f337cf1e004d853156 kde-l10n-tr-4.2.96.tar.bz2 -8f98e17660ceb9149e9a5d8cf64f647f kde-l10n-uk-4.2.96.tar.bz2 -2749128bd02f07ac872e69f841f3e664 kde-l10n-wa-4.2.96.tar.bz2 -97bef354d21bb9abbeae44d93634a663 kde-l10n-zh_CN-4.2.96.tar.bz2 -5160f3b255fb4f8839c1ae3603ea09d9 kde-l10n-zh_TW-4.2.96.tar.bz2 +2819b8bb302a606d9591274053399a7f kde-l10n-ar-4.2.98.tar.bz2 +2a0249b76617f5b6eeb1b663b9d6890a kde-l10n-bg-4.2.98.tar.bz2 +24fd2b254aee13423db9fdda7c6d88dc kde-l10n-bn_IN-4.2.98.tar.bz2 +f07b7b278f26d00bc20b5c3a97605284 kde-l10n-ca-4.2.98.tar.bz2 +f84dc6f36605474b4007d876594a3931 kde-l10n-csb-4.2.98.tar.bz2 +4b65b2e8cccd6089e7ae396472d6a8e7 kde-l10n-cs-4.2.98.tar.bz2 +25e35fb559782468b01193edd35a6b76 kde-l10n-da-4.2.98.tar.bz2 +b5826bdfcbfbe8afde393d3510d3c995 kde-l10n-de-4.2.98.tar.bz2 +1f569987bac6d123756cdbebb718d20f kde-l10n-el-4.2.98.tar.bz2 +2586e47645e95ec493f66924fb2083d7 kde-l10n-en_GB-4.2.98.tar.bz2 +bc610ca8ce46e0c0026f09819b6f0f23 kde-l10n-es-4.2.98.tar.bz2 +634bf3f9e5e02ac216c2ef8f4c8b0367 kde-l10n-et-4.2.98.tar.bz2 +d02093591393f8365e96db8202515c84 kde-l10n-eu-4.2.98.tar.bz2 +cd08fafed9f702d3a5a777d88c96fcdb kde-l10n-fi-4.2.98.tar.bz2 +b3cd1311d93194f35cb103167b6427a4 kde-l10n-fr-4.2.98.tar.bz2 +3d6577d23edecc69db1507f8f6f6e47e kde-l10n-ga-4.2.98.tar.bz2 +94dca872232bba462d1b49a40459b060 kde-l10n-gl-4.2.98.tar.bz2 +3eec47a24e6a911cb27e57e7cf40c35c kde-l10n-gu-4.2.98.tar.bz2 +988b3f6ad6f91c6bf3eb878153769395 kde-l10n-he-4.2.98.tar.bz2 +9b262f36d5b0930cbc875ee1aaacff10 kde-l10n-hi-4.2.98.tar.bz2 +05d7a123fb413dadb9d4b3fc3da68b58 kde-l10n-hu-4.2.98.tar.bz2 +3f092a3f99bc6bda6c1c4c476f18a9b5 kde-l10n-is-4.2.98.tar.bz2 +cc1c88b10ac470d10a2d1f813207f88a kde-l10n-it-4.2.98.tar.bz2 +c0664b101d19ef4385aafae09b518b9a kde-l10n-ja-4.2.98.tar.bz2 +a9f6d7b285a7c33680ca2e54e4a37e2c kde-l10n-kk-4.2.98.tar.bz2 +545fb2ec9e770a978aff01ac4dd2ec69 kde-l10n-km-4.2.98.tar.bz2 +3a23c207637f6d1f094df2a3a4f69d4a kde-l10n-kn-4.2.98.tar.bz2 +cf087233f94aab683185ac55553cd600 kde-l10n-ko-4.2.98.tar.bz2 +7a13a65390c8219944e0ecd3d773031f kde-l10n-ku-4.2.98.tar.bz2 +23ee19ebaea4db3099c4ba60ae59003e kde-l10n-lt-4.2.98.tar.bz2 +5c483e849de4b3bfa6c6ddafb48ab9e1 kde-l10n-lv-4.2.98.tar.bz2 +27d534cd1d139e10bb31e513244440c2 kde-l10n-mai-4.2.98.tar.bz2 +3f0c63e53df46513881b896b9fea16d3 kde-l10n-mk-4.2.98.tar.bz2 +e35c92a84212717f66cb854d55236061 kde-l10n-ml-4.2.98.tar.bz2 +d8191850123622861799e9f272ec1020 kde-l10n-mr-4.2.98.tar.bz2 +e280e60232592bf6c46b7e0a7bb1a685 kde-l10n-nb-4.2.98.tar.bz2 +b620b8323312e034066e029e22f62e69 kde-l10n-nds-4.2.98.tar.bz2 +d9d7d84412eaeee43bf0a5f4e0203db2 kde-l10n-nl-4.2.98.tar.bz2 +18325c7a1729b38b5d454f263de69d07 kde-l10n-nn-4.2.98.tar.bz2 +f036632c81bb778e99c16b33075b4b2f kde-l10n-pa-4.2.98.tar.bz2 +1998730d5ba111680c3ef830dde14f30 kde-l10n-pl-4.2.98.tar.bz2 +8a8e65cc99ba4ac5f19bcd2bd67de200 kde-l10n-pt_BR-4.2.98.tar.bz2 +5625a57ca78cecb3df3044bfe66a8361 kde-l10n-pt-4.2.98.tar.bz2 +755e8dce37999313942dc1328074df60 kde-l10n-ro-4.2.98.tar.bz2 +9a7bd38282c477010dd248408db3cd94 kde-l10n-ru-4.2.98.tar.bz2 +0060ef1dc254d693d6ab13af40f38bbd kde-l10n-sk-4.2.98.tar.bz2 +8bbfe9ceccd2bf60d8fc9119ff4eb7c9 kde-l10n-sl-4.2.98.tar.bz2 +b6120af60b7678b12b05215ba80253dc kde-l10n-sr-4.2.98.tar.bz2 +ca4cbdcfc5790a5e094b08917b7fd0d3 kde-l10n-sv-4.2.98.tar.bz2 +ec22e45a2c7125eb842223d11d96931c kde-l10n-tg-4.2.98.tar.bz2 +6f3109bfd4fc6ae8dbdd8096a2526f90 kde-l10n-th-4.2.98.tar.bz2 +34824439eef2f85522c74fb30492e58e kde-l10n-tr-4.2.98.tar.bz2 +466e013a353dfed1f68302a0556e5923 kde-l10n-uk-4.2.98.tar.bz2 +b30bb09a9c7b8198ba8f507b75cb81ae kde-l10n-wa-4.2.98.tar.bz2 +da0fb96dcfd20ffcac4cebbbeb1ffb69 kde-l10n-zh_CN-4.2.98.tar.bz2 +0d2a7ee468112b15c3af3bfdaab0ccb2 kde-l10n-zh_TW-4.2.98.tar.bz2 From mclasen at fedoraproject.org Wed Jul 22 12:51:00 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 22 Jul 2009 12:51:00 +0000 (UTC) Subject: rpms/notification-daemon/devel nodoka.patch, NONE, 1.1 notification-daemon.spec, 1.29, 1.30 Message-ID: <20090722125100.640C511C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/notification-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11543 Modified Files: notification-daemon.spec Added Files: nodoka.patch Log Message: Fix default theme to match F11 nodoka.patch: notification-daemon.schemas.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE nodoka.patch --- diff -up notification-daemon-0.4.0/data/notification-daemon.schemas.in.nodoka notification-daemon-0.4.0/data/notification-daemon.schemas.in --- notification-daemon-0.4.0/data/notification-daemon.schemas.in.nodoka 2009-04-27 20:55:23.593078616 -0400 +++ notification-daemon-0.4.0/data/notification-daemon.schemas.in 2009-04-27 20:55:38.186830065 -0400 @@ -18,7 +18,7 @@ /apps/notification-daemon/theme notification-daemon string - standard + nodoka Current theme The theme used when displaying notifications. Index: notification-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon/devel/notification-daemon.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- notification-daemon.spec 21 Jul 2009 10:06:58 -0000 1.29 +++ notification-daemon.spec 22 Jul 2009 12:51:00 -0000 1.30 @@ -7,7 +7,7 @@ Summary: Desktop Notification Daemon Name: notification-daemon Version: 0.4.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.galago-project.org/specs/notification/ License: GPLv2+ Group: System Environment/Libraries @@ -37,6 +37,7 @@ Source0: http://www.galago-project.org/f # drop libsexy dep Patch0: sexy.patch +Patch1: nodoka.patch %description notification-daemon is the server implementation of the freedesktop.org desktop @@ -47,6 +48,7 @@ user's way. %prep %setup -q %patch0 -p1 -b .sexy +%patch1 -p1 -b .nodoka autoreconf -i -f @@ -107,6 +109,9 @@ gconftool-2 --makefile-install-rule \ %changelog +* Wed Jul 22 2009 Matthias Clasen - 0.4.0-5 +- Copy nodoka patch from F11 + * Tue Jul 21 2009 Adam Tkac - 0.4.0-4 - improve libsexy patch From schwab at fedoraproject.org Wed Jul 22 13:05:41 2009 From: schwab at fedoraproject.org (schwab) Date: Wed, 22 Jul 2009 13:05:41 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.273, 1.274 glibc-fedora.patch, 1.306, 1.307 glibc.spec, 1.397, 1.398 import.log, 1.16, 1.17 sources, 1.298, 1.299 Message-ID: <20090722130541.A536111C0099@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16929/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.273 retrieving revision 1.274 diff -u -p -r1.273 -r1.274 --- .cvsignore 20 Jul 2009 13:24:44 -0000 1.273 +++ .cvsignore 22 Jul 2009 13:05:10 -0000 1.274 @@ -1,2 +1,2 @@ -glibc-2.10-181-g42e69bc-fedora.tar.bz2 -glibc-2.10-181-g42e69bc.tar.bz2 +glibc-2.10-187-gae612b0-fedora.tar.bz2 +glibc-2.10-187-gae612b0.tar.bz2 glibc-fedora.patch: ChangeLog | 35 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 59 files changed, 787 insertions(+), 467 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.306 retrieving revision 1.307 diff -u -p -r1.306 -r1.307 --- glibc-fedora.patch 20 Jul 2009 13:24:44 -0000 1.306 +++ glibc-fedora.patch 22 Jul 2009 13:05:10 -0000 1.307 @@ -1,6 +1,15 @@ ---- glibc-2.10-181-g42e69bc/ChangeLog -+++ glibc-2.10.90-4/ChangeLog -@@ -222,6 +222,16 @@ +--- glibc-2.10-187-gae612b0/ChangeLog ++++ glibc-2.10.90-5/ChangeLog +@@ -1,3 +1,8 @@ ++2009-07-22 Jakub Jelinek ++ ++ * Makeconfig (ASFLAGS): Append $(sysdep-ASFLAGS). ++ * sysdeps/i386/Makefile (sysdep-ASFLAGS): Add -U__i686. ++ + 2009-07-21 Ulrich Drepper + + * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups. Remove +@@ -263,6 +268,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -17,7 +26,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8620,6 +8630,13 @@ +@@ -8661,6 +8676,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -31,7 +40,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -8915,6 +8932,10 @@ +@@ -8956,6 +8978,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -42,7 +51,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -10172,6 +10193,15 @@ +@@ -10213,6 +10239,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -58,8 +67,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-181-g42e69bc/ChangeLog.15 -+++ glibc-2.10.90-4/ChangeLog.15 +--- glibc-2.10-187-gae612b0/ChangeLog.15 ++++ glibc-2.10.90-5/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -125,8 +134,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-181-g42e69bc/ChangeLog.16 -+++ glibc-2.10.90-4/ChangeLog.16 +--- glibc-2.10-187-gae612b0/ChangeLog.16 ++++ glibc-2.10.90-5/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -298,8 +307,26 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-181-g42e69bc/csu/Makefile -+++ glibc-2.10.90-4/csu/Makefile +--- glibc-2.10-187-gae612b0/Makeconfig ++++ glibc-2.10.90-5/Makeconfig +@@ -780,12 +780,12 @@ endif + # The assembler can generate debug information too. + ifndef ASFLAGS + ifeq ($(have-cpp-asm-debuginfo),yes) +-ASFLAGS := $(filter -g%,$(CFLAGS)) ++ASFLAGS = $(filter -g%,$(CFLAGS)) + else +-ASFLAGS := ++ASFLAGS = + endif + endif +-ASFLAGS += $(ASFLAGS-config) $(asflags-cpu) ++ASFLAGS += $(ASFLAGS-config) $(asflags-cpu) $(sysdep-ASFLAGS) + + ifndef BUILD_CC + BUILD_CC = $(CC) +--- glibc-2.10-187-gae612b0/csu/Makefile ++++ glibc-2.10.90-5/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -310,8 +337,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-181-g42e69bc/csu/elf-init.c -+++ glibc-2.10.90-4/csu/elf-init.c +--- glibc-2.10-187-gae612b0/csu/elf-init.c ++++ glibc-2.10.90-5/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -336,8 +363,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-181-g42e69bc/debug/tst-chk1.c -+++ glibc-2.10.90-4/debug/tst-chk1.c +--- glibc-2.10-187-gae612b0/debug/tst-chk1.c ++++ glibc-2.10.90-5/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -366,8 +393,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-181-g42e69bc/elf/ldconfig.c -+++ glibc-2.10.90-4/elf/ldconfig.c +--- glibc-2.10-187-gae612b0/elf/ldconfig.c ++++ glibc-2.10.90-5/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -449,8 +476,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-181-g42e69bc/elf/tst-stackguard1.c -+++ glibc-2.10.90-4/elf/tst-stackguard1.c +--- glibc-2.10-187-gae612b0/elf/tst-stackguard1.c ++++ glibc-2.10.90-5/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -475,16 +502,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-181-g42e69bc/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-4/include/bits/stdlib-ldbl.h +--- glibc-2.10-187-gae612b0/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-5/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-181-g42e69bc/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-4/include/bits/wchar-ldbl.h +--- glibc-2.10-187-gae612b0/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-5/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-181-g42e69bc/include/features.h -+++ glibc-2.10.90-4/include/features.h +--- glibc-2.10-187-gae612b0/include/features.h ++++ glibc-2.10.90-5/include/features.h @@ -299,8 +299,13 @@ #endif @@ -501,8 +528,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-181-g42e69bc/intl/locale.alias -+++ glibc-2.10.90-4/intl/locale.alias +--- glibc-2.10-187-gae612b0/intl/locale.alias ++++ glibc-2.10.90-5/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -512,8 +539,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-181-g42e69bc/libio/stdio.h -+++ glibc-2.10.90-4/libio/stdio.h +--- glibc-2.10-187-gae612b0/libio/stdio.h ++++ glibc-2.10.90-5/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -527,8 +554,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-181-g42e69bc/locale/iso-4217.def -+++ glibc-2.10.90-4/locale/iso-4217.def +--- glibc-2.10-187-gae612b0/locale/iso-4217.def ++++ glibc-2.10.90-5/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -620,8 +647,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-181-g42e69bc/locale/programs/locarchive.c -+++ glibc-2.10.90-4/locale/programs/locarchive.c +--- glibc-2.10-187-gae612b0/locale/programs/locarchive.c ++++ glibc-2.10.90-5/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -653,8 +680,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-181-g42e69bc/localedata/Makefile -+++ glibc-2.10.90-4/localedata/Makefile +--- glibc-2.10-187-gae612b0/localedata/Makefile ++++ glibc-2.10.90-5/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -663,8 +690,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-181-g42e69bc/localedata/SUPPORTED -+++ glibc-2.10.90-4/localedata/SUPPORTED +--- glibc-2.10-187-gae612b0/localedata/SUPPORTED ++++ glibc-2.10.90-5/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -706,8 +733,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-181-g42e69bc/localedata/locales/cy_GB -+++ glibc-2.10.90-4/localedata/locales/cy_GB +--- glibc-2.10-187-gae612b0/localedata/locales/cy_GB ++++ glibc-2.10.90-5/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -722,8 +749,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-181-g42e69bc/localedata/locales/en_GB -+++ glibc-2.10.90-4/localedata/locales/en_GB +--- glibc-2.10-187-gae612b0/localedata/locales/en_GB ++++ glibc-2.10.90-5/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -735,8 +762,8 @@ date_fmt "/ / " ---- glibc-2.10-181-g42e69bc/localedata/locales/no_NO -+++ glibc-2.10.90-4/localedata/locales/no_NO +--- glibc-2.10-187-gae612b0/localedata/locales/no_NO ++++ glibc-2.10.90-5/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -807,8 +834,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-181-g42e69bc/localedata/locales/zh_TW -+++ glibc-2.10.90-4/localedata/locales/zh_TW +--- glibc-2.10-187-gae612b0/localedata/locales/zh_TW ++++ glibc-2.10.90-5/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -836,8 +863,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-181-g42e69bc/malloc/mcheck.c -+++ glibc-2.10.90-4/malloc/mcheck.c +--- glibc-2.10-187-gae612b0/malloc/mcheck.c ++++ glibc-2.10.90-5/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -913,8 +940,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-181-g42e69bc/manual/libc.texinfo -+++ glibc-2.10.90-4/manual/libc.texinfo +--- glibc-2.10-187-gae612b0/manual/libc.texinfo ++++ glibc-2.10.90-5/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -924,8 +951,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-181-g42e69bc/misc/sys/cdefs.h -+++ glibc-2.10.90-4/misc/sys/cdefs.h +--- glibc-2.10-187-gae612b0/misc/sys/cdefs.h ++++ glibc-2.10.90-5/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -969,17 +996,17 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-181-g42e69bc/nis/nss -+++ glibc-2.10.90-4/nis/nss +--- glibc-2.10-187-gae612b0/nis/nss ++++ glibc-2.10.90-5/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-181-g42e69bc/nptl/ChangeLog -+++ glibc-2.10.90-4/nptl/ChangeLog -@@ -3584,6 +3584,15 @@ +--- glibc-2.10-187-gae612b0/nptl/ChangeLog ++++ glibc-2.10.90-5/nptl/ChangeLog +@@ -3590,6 +3590,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -995,7 +1022,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4320,6 +4329,11 @@ +@@ -4326,6 +4335,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -1007,7 +1034,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6394,6 +6408,11 @@ +@@ -6400,6 +6414,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1019,8 +1046,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-181-g42e69bc/nptl/Makefile -+++ glibc-2.10.90-4/nptl/Makefile +--- glibc-2.10-187-gae612b0/nptl/Makefile ++++ glibc-2.10.90-5/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1053,8 +1080,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-181-g42e69bc/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-4/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-187-gae612b0/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-5/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1063,8 +1090,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-181-g42e69bc/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-4/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-187-gae612b0/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-5/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1072,8 +1099,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-181-g42e69bc/nptl/tst-stackguard1.c -+++ glibc-2.10.90-4/nptl/tst-stackguard1.c +--- glibc-2.10-187-gae612b0/nptl/tst-stackguard1.c ++++ glibc-2.10.90-5/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1098,8 +1125,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-181-g42e69bc/nscd/nscd.conf -+++ glibc-2.10.90-4/nscd/nscd.conf +--- glibc-2.10-187-gae612b0/nscd/nscd.conf ++++ glibc-2.10.90-5/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1109,8 +1136,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-181-g42e69bc/nscd/nscd.init -+++ glibc-2.10.90-4/nscd/nscd.init +--- glibc-2.10-187-gae612b0/nscd/nscd.init ++++ glibc-2.10.90-5/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1167,8 +1194,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-181-g42e69bc/posix/Makefile -+++ glibc-2.10.90-4/posix/Makefile +--- glibc-2.10-187-gae612b0/posix/Makefile ++++ glibc-2.10.90-5/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1189,8 +1216,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-181-g42e69bc/posix/getconf.speclist.h -+++ glibc-2.10.90-4/posix/getconf.speclist.h +--- glibc-2.10-187-gae612b0/posix/getconf.speclist.h ++++ glibc-2.10.90-5/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1231,8 +1258,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-181-g42e69bc/streams/Makefile -+++ glibc-2.10.90-4/streams/Makefile +--- glibc-2.10-187-gae612b0/streams/Makefile ++++ glibc-2.10.90-5/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1242,8 +1269,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-181-g42e69bc/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-4/sysdeps/generic/dl-cache.h +--- glibc-2.10-187-gae612b0/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-5/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1259,9 +1286,18 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-181-g42e69bc/sysdeps/i386/Makefile -+++ glibc-2.10.90-4/sysdeps/i386/Makefile -@@ -64,6 +64,14 @@ endif +--- glibc-2.10-187-gae612b0/sysdeps/i386/Makefile ++++ glibc-2.10.90-5/sysdeps/i386/Makefile +@@ -2,6 +2,8 @@ + # Every i386 port in use uses gas syntax (I think). + asm-CPPFLAGS += -DGAS_SYNTAX + ++sysdep-ASFLAGS += -U__i686 ++ + # The i386 `long double' is a distinct type we support. + long-double-fcts = yes + +@@ -64,6 +66,14 @@ endif ifneq (,$(filter -mno-tls-direct-seg-refs,$(CFLAGS))) defines += -DNO_TLS_DIRECT_SEG_REFS @@ -1276,8 +1312,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-181-g42e69bc/sysdeps/ia64/Makefile -+++ glibc-2.10.90-4/sysdeps/ia64/Makefile +--- glibc-2.10-187-gae612b0/sysdeps/ia64/Makefile ++++ glibc-2.10.90-5/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1289,8 +1325,8 @@ endif endif ---- glibc-2.10-181-g42e69bc/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-4/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-187-gae612b0/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-5/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1642,8 +1678,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-181-g42e69bc/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-4/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-187-gae612b0/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-5/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1729,8 +1765,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-4/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-5/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1748,8 +1784,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-4/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-5/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1758,8 +1794,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-181-g42e69bc/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-4/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-5/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1777,8 +1813,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-181-g42e69bc/sysdeps/unix/nice.c -+++ glibc-2.10.90-4/sysdeps/unix/nice.c +--- glibc-2.10-187-gae612b0/sysdeps/unix/nice.c ++++ glibc-2.10.90-5/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1793,8 +1829,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1810,8 +1846,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1859,8 +1895,8 @@ } else #endif ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1903,8 +1939,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1923,8 +1959,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -1985,8 +2021,8 @@ + } while (0) + +#include_next ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2019,29 +2055,29 @@ + } while (0) + #include_next ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2067,8 +2103,8 @@ struct netlink_res { ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2078,8 +2114,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2125,8 +2161,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-181-g42e69bc/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-4/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2145,8 +2181,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-181-g42e69bc/timezone/zic.c -+++ glibc-2.10.90-4/timezone/zic.c +--- glibc-2.10-187-gae612b0/timezone/zic.c ++++ glibc-2.10.90-5/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.397 retrieving revision 1.398 diff -u -p -r1.397 -r1.398 --- glibc.spec 20 Jul 2009 13:24:45 -0000 1.397 +++ glibc.spec 22 Jul 2009 13:05:11 -0000 1.398 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-181-g42e69bc +%define glibcsrcdir glibc-2.10-187-gae612b0 %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 4 +Release: 5 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -333,7 +333,8 @@ shift rm -rf $builddir mkdir $builddir ; cd $builddir build_CFLAGS="$BuildFlags -g -O3 $*" -CC="$GCC" CXX="$GXX" CFLAGS="$build_CFLAGS" ../configure --prefix=%{_prefix} \ +../configure CC="$GCC" CXX="$GXX" CFLAGS="$build_CFLAGS" \ + --prefix=%{_prefix} \ --enable-add-ons=nptl$AddOns --without-cvs $EnableKernel \ --with-headers=%{_prefix}/include --enable-bind-now \ --with-tls --with-__thread --build %{nptl_target_cpu}-redhat-linux \ @@ -1030,6 +1031,10 @@ rm -f *.filelist* %endif %changelog +* Wed Jul 22 2009 Andreas Schwab - 2.10.90-5 +- Update from master. +- Undefine __i686 on x86 to fix build. + * Mon Jul 20 2009 Andreas Schwab - 2.10.90-4 - Update from master. - Don't build separate i686 package. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- import.log 20 Jul 2009 13:24:45 -0000 1.16 +++ import.log 22 Jul 2009 13:05:11 -0000 1.17 @@ -14,3 +14,4 @@ glibc-2_9_90-15:HEAD:glibc-2.9.90-15.src glibc-2_9_90-16:HEAD:glibc-2.9.90-16.src.rpm:1239744476 glibc-2_10_90-1:HEAD:glibc-2.10.90-1.src.rpm:1246030924 glibc-2_10_90-4:HEAD:glibc-2.10.90-4.src.rpm:1248096214 +glibc-2_10_90-5:HEAD:glibc-2.10.90-5.src.rpm:1248267823 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.298 retrieving revision 1.299 diff -u -p -r1.298 -r1.299 --- sources 20 Jul 2009 13:24:45 -0000 1.298 +++ sources 22 Jul 2009 13:05:11 -0000 1.299 @@ -1,2 +1,2 @@ -398270f200e1ec186de374bb041c3b1e glibc-2.10-181-g42e69bc-fedora.tar.bz2 -fffd37bec445c6f7599ea5796914b4b7 glibc-2.10-181-g42e69bc.tar.bz2 +53b6215a18e3c8f48f401d2dbd28c484 glibc-2.10-187-gae612b0-fedora.tar.bz2 +2ca111876cafe2b8701e27bc9d9f9c97 glibc-2.10-187-gae612b0.tar.bz2 From rvokal at fedoraproject.org Wed Jul 22 13:08:48 2009 From: rvokal at fedoraproject.org (=?utf-8?q?Radek_Vok=C3=A1l?=) Date: Wed, 22 Jul 2009 13:08:48 +0000 (UTC) Subject: rpms/wireshark/F-10 wireshark-1.1.2-nfs41-backchnl-decode.patch, NONE, 1.1 .cvsignore, 1.26, 1.27 sources, 1.26, 1.27 wireshark.spec, 1.48, 1.49 wireshark-1.0.5-nfs41-backchnl-decode.patch, 1.1, NONE wireshark-1.0.6-netdump2.patch, 1.1, NONE wireshark-nfsv41-layout-types.patch, 1.1, NONE wireshark-nfsv41-layout-updates.patch, 1.1, NONE wireshark-nfsv41.patch, 1.1, NONE wireshark-rpc-pdu-size.patch, 1.1, NONE Message-ID: <20090722130848.52C1F11C0099@cvs1.fedora.phx.redhat.com> Author: rvokal Update of /cvs/extras/rpms/wireshark/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18669 Modified Files: .cvsignore sources wireshark.spec Added Files: wireshark-1.1.2-nfs41-backchnl-decode.patch Removed Files: wireshark-1.0.5-nfs41-backchnl-decode.patch wireshark-1.0.6-netdump2.patch wireshark-nfsv41-layout-types.patch wireshark-nfsv41-layout-updates.patch wireshark-nfsv41.patch wireshark-rpc-pdu-size.patch Log Message: upgrade to 1.2.1 wireshark-1.1.2-nfs41-backchnl-decode.patch: packet-nfs.c | 359 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- packet-nfs.h | 17 ++ 2 files changed, 368 insertions(+), 8 deletions(-) --- NEW FILE wireshark-1.1.2-nfs41-backchnl-decode.patch --- diff -up wireshark-1.1.2/epan/dissectors/packet-nfs.c.orig wireshark-1.1.2/epan/dissectors/packet-nfs.c --- wireshark-1.1.2/epan/dissectors/packet-nfs.c.orig 2009-02-15 08:22:57.000000000 -0500 +++ wireshark-1.1.2/epan/dissectors/packet-nfs.c 2009-02-15 08:31:28.000000000 -0500 @@ -652,6 +652,8 @@ static emem_tree_t *nfs_file_handles = N static int dissect_nfs_stateid4(tvbuff_t *tvb, int offset, proto_tree *tree); +static void reg_callback(int cbprog); + /* This function will store one nfs filehandle in our global tree of * filehandles. * We store all filehandles we see in this tree so that every unique @@ -8648,6 +8650,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int of proto_item *fitem; proto_tree *ftree = NULL; proto_tree *newftree = NULL; + int cbprog; ops = tvb_get_ntohl(tvb, offset+0); @@ -8969,6 +8972,8 @@ dissect_nfs_argop4(tvbuff_t *tvb, int of hf_nfs_create_session_flags4, offset); offset = dissect_rpc_chanattrs4(tvb, offset, newftree); offset = dissect_rpc_chanattrs4(tvb, offset, newftree); + cbprog = tvb_get_ntohl(tvb, offset); + reg_callback(cbprog); offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_cb_program, offset); offset = dissect_rpc_secparms4(tvb, offset, newftree); @@ -9612,6 +9617,313 @@ static const value_string layoutreturn_n { 0, NULL } }; +static const value_string layoutrecall_names[] = { + { 1, "RECALL_FILE"}, + { 2, "RECALL_FSID"}, + { 3, "RECALL_ALL"}, + { 0, NULL } +}; + +/* NFS Callback */ +static int hf_nfs_cb_procedure = -1; +static int hf_nfs_cb_argop = -1; +static int hf_nfs_cb_resop = -1; +static int hf_nfs_cb_truncate = -1; +static int hf_nfs_cb_layoutrecall_type = -1; +static int hf_nfs_cb_clorachanged = -1; + +static gint ett_nfs_cb_argop = -1; +static gint ett_nfs_cb_resop = -1; +static gint ett_nfs_cb_getattr = -1; +static gint ett_nfs_cb_recall = -1; +static gint ett_nfs_cb_layoutrecall = -1; +static gint ett_nfs_cb_pushdeleg = -1; +static gint ett_nfs_cb_recallany = -1; +static gint ett_nfs_cb_recallableobjavail = -1; +static gint ett_nfs_cb_recallslot = -1; +static gint ett_nfs_cb_sequence = -1; +static gint ett_nfs_cb_wantscancelled = -1; +static gint ett_nfs_cb_notifylock = -1; +static gint ett_nfs_cb_notifydeviceid = -1; +static gint ett_nfs_cb_notify = -1; +static gint ett_nfs_cb_illegal = -1; + +static const value_string names_nfs_cb_operation[] = { + { NFS4_OP_CB_GETATTR, "CB_GETATTR" }, + { NFS4_OP_CB_RECALL, "CB_RECALL" }, + { NFS4_OP_CB_LAYOUTRECALL, "CB_LAYOUTRECALL" }, + { NFS4_OP_CB_NOTIFY, "CB_NOTIFY" }, + { NFS4_OP_CB_PUSH_DELEG, "CB_PUSH_DELEG" }, + { NFS4_OP_CB_RECALL_ANY, "CB_RECALL_ANY" }, + { NFS4_OP_CB_RECALLABLE_OBJ_AVAIL, "CB_RECALLABLE_OBJ_AVAIL" }, + { NFS4_OP_CB_RECALL_SLOT, "CB_RECALL_SLOT"}, + { NFS4_OP_CB_SEQUENCE, "CB_SEQUENCE" }, + { NFS4_OP_CB_WANTS_CANCELLED, "CB_WANTS_CANCELLED" }, + { NFS4_OP_CB_NOTIFY_LOCK, "CB_NOTIFY_LOCK"}, + { NFS4_OP_CB_NOTIFY_DEVICEID, "CB_NOTIFY_DEVICEID" }, + { NFS4_OP_CB_ILLEGAL, "CB_ILLEGAL"}, + { 0, NULL } +}; + +gint *nfs_cb_operation_ett[] = +{ + &ett_nfs_cb_getattr, + &ett_nfs_cb_recall, + &ett_nfs_cb_layoutrecall, + &ett_nfs_cb_notify, + &ett_nfs_cb_pushdeleg, + &ett_nfs_cb_recallany, + &ett_nfs_cb_recallableobjavail, + &ett_nfs_cb_recallslot, + &ett_nfs_cb_sequence, + &ett_nfs_cb_wantscancelled, + &ett_nfs_cb_notifylock, + &ett_nfs_cb_notifydeviceid, + &ett_nfs_cb_illegal +}; + +static int +dissect_nfs_cb_layoutrecall(tvbuff_t *tvb, int offset, proto_tree *tree, packet_info *pinfo) +{ + guint recalltype = hf_nfs_layouttype4; + + if (recalltype == 1) { /* RETURN_FILE */ + offset = dissect_nfs_fh4(tvb, offset, pinfo, tree, "filehandle"); + offset = dissect_rpc_uint64(tvb, tree, hf_nfs_offset4, offset); + offset = dissect_rpc_uint64(tvb, tree, hf_nfs_length4, offset); + offset = dissect_nfs_stateid4(tvb, offset, tree); + } else if (recalltype == 2) { /* RETURN_FSID */ + offset = dissect_nfs_fsid4(tvb, offset, tree, "fsid"); + } + + return offset; +} + +static int +dissect_nfs_cb_argop(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree) +{ + guint32 ops, ops_counter; + guint opcode; + proto_item *fitem; + proto_tree *ftree = NULL; + proto_tree *newftree = NULL; + + ops = tvb_get_ntohl(tvb, offset+0); + + fitem = proto_tree_add_text(tree, tvb, offset, 4, "Operations (count: %u)", ops); + offset += 4; + + if (fitem) + ftree = proto_item_add_subtree(fitem, ett_nfs_cb_argop); + + for (ops_counter=0; ops_countercinfo, COL_INFO)) + col_append_fstr(pinfo->cinfo, COL_INFO, "%c%s", ops_counter==0?' ':';', + val_to_str(opcode, names_nfs_cb_operation, "Unknown")); + + fitem = proto_tree_add_uint(ftree, hf_nfs_cb_argop, tvb, offset, 4, opcode); + offset += 4; + + /* the opcodes are not contiguous */ + if ((opcode < NFS4_OP_CB_GETATTR || opcode > NFS4_OP_CB_NOTIFY_DEVICEID) && + (opcode != NFS4_OP_CB_ILLEGAL)) + break; + + /* all of the V4 ops are contiguous, except for NFS4_OP_ILLEGAL */ + if (opcode == NFS4_OP_CB_ILLEGAL) + newftree = proto_item_add_subtree(fitem, ett_nfs_cb_illegal); + else if (nfs_cb_operation_ett[opcode - 3]) + newftree = proto_item_add_subtree(fitem, *nfs_cb_operation_ett[opcode - 3]); + else + break; + + switch (opcode) + { + case NFS4_OP_CB_RECALL: + offset = dissect_nfs_stateid4(tvb, offset, newftree); + offset = dissect_rpc_bool(tvb, newftree, hf_nfs_cb_truncate, offset); + offset = dissect_nfs_fh4(tvb, offset, pinfo, newftree, "filehandle"); + break; + case NFS4_OP_CB_GETATTR: + case NFS4_OP_CB_LAYOUTRECALL: + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_layouttype4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_iomode4, offset); + offset = dissect_rpc_bool(tvb, newftree, hf_nfs_cb_clorachanged, offset); + offset = dissect_nfs_cb_layoutrecall(tvb, offset, newftree, pinfo); + break; + case NFS4_OP_CB_NOTIFY: + case NFS4_OP_CB_PUSH_DELEG: + case NFS4_OP_CB_RECALL_ANY: + case NFS4_OP_CB_RECALLABLE_OBJ_AVAIL: + case NFS4_OP_CB_RECALL_SLOT: + break; + case NFS4_OP_CB_SEQUENCE: + offset = dissect_rpc_opaque_data(tvb, offset, newftree, NULL, hf_nfs_sessionid4, + TRUE, 16, FALSE, NULL, NULL); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_slotid4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_slotid4, offset); + offset = dissect_rpc_bool(tvb, newftree, hf_nfs_cachethis4, offset); + /* skip refs -- assume 0 */ + offset = offset + 4; + break; + case NFS4_OP_CB_WANTS_CANCELLED: + case NFS4_OP_CB_NOTIFY_LOCK: + case NFS4_OP_CB_NOTIFY_DEVICEID: + break; + case NFS4_OP_ILLEGAL: + break; + default: + break; + } + } + + return offset; +} + +static int +dissect_nfs_cb_compound_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree) +{ + char *tag=NULL; + + offset = dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_tag4, &tag); + + if (check_col(pinfo->cinfo, COL_INFO)) + col_append_fstr(pinfo->cinfo, COL_INFO," %s", tag); + + offset = dissect_rpc_uint32(tvb, tree, hf_nfs_minorversion, offset); + offset = dissect_rpc_uint32(tvb, tree, hf_nfs_callback_ident, offset); + offset = dissect_nfs_cb_argop(tvb, offset, pinfo, tree); + + return offset; +} + +static int +dissect_nfs_cb_resop(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree) +{ + guint32 ops, ops_counter; + guint32 opcode; + proto_item *fitem; + proto_tree *ftree = NULL; + proto_tree *newftree = NULL; + guint32 status; + + ops = tvb_get_ntohl(tvb, offset+0); + fitem = proto_tree_add_text(tree, tvb, offset, 4, "Operations (count: %u)", ops); + offset += 4; + + if (fitem) + ftree = proto_item_add_subtree(fitem, ett_nfs_cb_resop); + + for (ops_counter = 0; ops_counter < ops; ops_counter++) + { + opcode = tvb_get_ntohl(tvb, offset); + + /* sanity check for bogus packets */ + if ((opcode < NFS4_OP_CB_GETATTR || opcode > NFS4_OP_CB_NOTIFY_DEVICEID) && + (opcode != NFS4_OP_ILLEGAL)) + break; + + if (check_col(pinfo->cinfo, COL_INFO)) + col_append_fstr(pinfo->cinfo, COL_INFO, "%c%s", ops_counter==0?' ':';', + val_to_str(opcode, names_nfs_cb_operation, "Unknown")); + + fitem = proto_tree_add_uint(ftree, hf_nfs_cb_resop, tvb, offset, 4, opcode); + offset += 4; + + /* all of the V4 ops are contiguous, except for NFS4_OP_ILLEGAL */ + if (opcode == NFS4_OP_ILLEGAL) + newftree = proto_item_add_subtree(fitem, ett_nfs_illegal4); + else if (nfs_cb_operation_ett[opcode - 3]) + newftree = proto_item_add_subtree(fitem, *nfs_cb_operation_ett[opcode - 3]); + else + break; + + offset = dissect_nfs_nfsstat4(tvb, offset, newftree, &status); + + /* are there any ops that return data with a failure (?) */ + if (status != NFS4_OK) + continue; + + /* These parsing routines are only executed if the status is NFS4_OK */ + switch (opcode) + { + case NFS4_OP_CB_RECALL: + break; + case NFS4_OP_CB_GETATTR: + case NFS4_OP_CB_LAYOUTRECALL: + break; + case NFS4_OP_CB_NOTIFY: + case NFS4_OP_CB_PUSH_DELEG: + case NFS4_OP_CB_RECALL_ANY: + case NFS4_OP_CB_RECALLABLE_OBJ_AVAIL: + case NFS4_OP_CB_RECALL_SLOT: + break; + case NFS4_OP_CB_SEQUENCE: + offset = dissect_rpc_opaque_data(tvb, offset, newftree, NULL, + hf_nfs_sessionid4, TRUE, 16, + FALSE, NULL, NULL); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_slotid4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_slotid4, offset); + offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_slotid4, offset); + break; + case NFS4_OP_CB_WANTS_CANCELLED: + case NFS4_OP_CB_NOTIFY_LOCK: + case NFS4_OP_CB_NOTIFY_DEVICEID: + break; + case NFS4_OP_ILLEGAL: + break; + default: + break; + } + } + + return offset; +} + +static int +dissect_nfs_cb_compound_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, + proto_tree* tree) +{ + guint32 status; + char *tag=NULL; + + offset = dissect_nfs_nfsstat4(tvb, offset, tree, &status); + offset = dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_tag4, &tag); + if (check_col(pinfo->cinfo, COL_INFO)) + col_append_fstr(pinfo->cinfo, COL_INFO," %s", tag); + + offset = dissect_nfs_cb_resop(tvb, offset, pinfo, tree); + + return offset; +} + +static const vsff nfs_cb_proc[] = { + { 0, "CB_NULL", + dissect_nfs3_null_call, dissect_nfs3_null_reply }, + { 1, "CB_COMPOUND", + dissect_nfs_cb_compound_call, dissect_nfs_cb_compound_reply }, + { 0, NULL, NULL, NULL } +}; + +static const value_string nfs_cb_proc_vals[] = { + { 0, "CB_NULL" }, + { 1, "CB_COMPOUND" }, + { 0, NULL } +}; + +void reg_callback(int cbprog) +{ + /* Register the protocol as RPC */ + rpc_init_prog(proto_nfs, cbprog, ett_nfs); + + /* Register the procedure tables */ + rpc_init_proc_table(cbprog, 1, nfs_cb_proc, hf_nfs_cb_procedure); +} + void proto_register_nfs(void) { @@ -10964,10 +11276,29 @@ proto_register_nfs(void) { &hf_nfs_cachethis4, { "Cache this?", "nfs.cachethis4", FT_BOOLEAN, BASE_NONE, TFS(&tfs_yes_no), 0, NULL, HFILL }}, - + + { &hf_nfs_cb_procedure, { + "CB Procedure", "nfs.cb_procedure", FT_UINT32, BASE_DEC, + VALS(nfs_cb_proc_vals), 0, NULL, HFILL }}, + + { &hf_nfs_cb_argop, { + "Opcode", "nfs.call.operation", FT_UINT32, BASE_DEC, + VALS(names_nfs_cb_operation), 0, NULL, HFILL }}, + { &hf_nfs_cb_resop, { + "Opcode", "nfs.reply.operation", FT_UINT32, BASE_DEC, + VALS(names_nfs_cb_operation), 0, NULL, HFILL }}, { &hf_nfs_lrs_present, { "Stateid present?", "nfs.lrs_present", FT_BOOLEAN, BASE_NONE, TFS(&tfs_yes_no), 0, NULL, HFILL }}, + { &hf_nfs_cb_truncate, { + "Truncate?", "nfs.truncate", FT_BOOLEAN, BASE_NONE, + TFS(&tfs_yes_no), 0, NULL, HFILL }}, + { &hf_nfs_cb_layoutrecall_type, { + "recall type", "nfs.recalltype", FT_UINT32, BASE_DEC, + VALS(layoutrecall_names), 0, NULL, HFILL }}, + { &hf_nfs_cb_clorachanged, { + "Clora changed", "nfs.clorachanged", FT_BOOLEAN, BASE_NONE, + TFS(&tfs_yes_no), 0, NULL, HFILL }}, /* Hidden field for v2, v3, and v4 status */ { &hf_nfs_nfsstat, { @@ -11132,8 +11463,23 @@ proto_register_nfs(void) &ett_nfs_gid4, &ett_nfs_service4, &ett_nfs_sessionid4, - &ett_nfs_layoutseg, - &ett_nfs_layoutseg_fh + &ett_nfs_layoutseg, + &ett_nfs_layoutseg_fh, + &ett_nfs_cb_argop, + &ett_nfs_cb_resop, + &ett_nfs_cb_getattr, + &ett_nfs_cb_recall, + &ett_nfs_cb_layoutrecall, + &ett_nfs_cb_pushdeleg, + &ett_nfs_cb_recallany, + &ett_nfs_cb_recallableobjavail, + &ett_nfs_cb_recallslot, + &ett_nfs_cb_sequence, + &ett_nfs_cb_wantscancelled, + &ett_nfs_cb_notifylock, + &ett_nfs_cb_notifydeviceid, + &ett_nfs_cb_notify, + &ett_nfs_cb_illegal, }; module_t *nfs_module; @@ -11169,9 +11515,9 @@ proto_register_nfs(void) nfs_file_handles=se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "nfs_file_handles"); nfs_fhandle_frame_table=se_tree_create(EMEM_TREE_TYPE_RED_BLACK, "nfs_fhandle_frame_table"); register_init_routine(nfs_name_snoop_init); - } + void proto_reg_handoff_nfs(void) { @@ -11179,7 +11525,7 @@ proto_reg_handoff_nfs(void) /* Register the protocol as RPC */ rpc_init_prog(proto_nfs, NFS_PROGRAM, ett_nfs); - + /* Register the procedure tables */ rpc_init_proc_table(NFS_PROGRAM, 2, nfs2_proc, hf_nfs_procedure_v2); rpc_init_proc_table(NFS_PROGRAM, 3, nfs3_proc, hf_nfs_procedure_v3); @@ -11208,7 +11554,4 @@ proto_reg_handoff_nfs(void) fhandle_handle=create_dissector_handle(dissect_fhandle_data_unknown, proto_nfs); dissector_add("nfs_fhandle.type", FHT_UNKNOWN, fhandle_handle); - - } - diff -up wireshark-1.1.2/epan/dissectors/packet-nfs.h.orig wireshark-1.1.2/epan/dissectors/packet-nfs.h --- wireshark-1.1.2/epan/dissectors/packet-nfs.h.orig 2009-01-15 10:28:17.000000000 -0500 +++ wireshark-1.1.2/epan/dissectors/packet-nfs.h 2009-02-15 08:31:28.000000000 -0500 @@ -127,6 +127,23 @@ #define NFS4_OP_ILLEGAL 10044 +/* + * NFSv41 callback ops + */ +#define NFS4_OP_CB_GETATTR 3 +#define NFS4_OP_CB_RECALL 4 +#define NFS4_OP_CB_LAYOUTRECALL 5 +#define NFS4_OP_CB_NOTIFY 6 +#define NFS4_OP_CB_PUSH_DELEG 7 +#define NFS4_OP_CB_RECALL_ANY 8 +#define NFS4_OP_CB_RECALLABLE_OBJ_AVAIL 9 +#define NFS4_OP_CB_RECALL_SLOT 10 +#define NFS4_OP_CB_SEQUENCE 11 +#define NFS4_OP_CB_WANTS_CANCELLED 12 +#define NFS4_OP_CB_NOTIFY_LOCK 13 +#define NFS4_OP_CB_NOTIFY_DEVICEID 14 +#define NFS4_OP_CB_ILLEGAL 10044 + /* for write */ #define UNSTABLE 0 #define DATA_SYNC 1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-10/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 22 May 2009 10:37:00 -0000 1.26 +++ .cvsignore 22 Jul 2009 13:08:47 -0000 1.27 @@ -1 +1 @@ -wireshark-1.0.8.tar.bz2 +wireshark-1.2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-10/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 22 May 2009 10:37:00 -0000 1.26 +++ sources 22 Jul 2009 13:08:47 -0000 1.27 @@ -1 +1 @@ -09d895f111ee768cc0d7c7e2c427c496 wireshark-1.0.8.tar.bz2 +957d1b11a6c9b305bcd106d4084ff71e wireshark-1.2.1.tar.bz2 Index: wireshark.spec =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-10/wireshark.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- wireshark.spec 22 May 2009 10:37:00 -0000 1.48 +++ wireshark.spec 22 Jul 2009 13:08:48 -0000 1.49 @@ -5,7 +5,7 @@ Summary: Network traffic analyzer Name: wireshark -Version: 1.0.8 +Version: 1.2.1 Release: 1%{?dist} License: GPL+ Group: Applications/Internet @@ -20,12 +20,7 @@ Source3: wireshark.desktop Patch1: wireshark-1.0.2-pie.patch Patch2: wireshark-nfsv4-opts.patch Patch3: wireshark-0.99.7-path.patch -Patch4: wireshark-nfsv41.patch -Patch5: wireshark-nfsv41-layout-types.patch -Patch6: wireshark-nfsv41-layout-updates.patch -Patch7: wireshark-rpc-pdu-size.patch -Patch8: wireshark-1.0.5-nfs41-backchnl-decode.patch -Patch9: wireshark-1.0.6-netdump2.patch +Patch8: wireshark-1.1.2-nfs41-backchnl-decode.patch Url: http://www.wireshark.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -83,12 +78,7 @@ Contains wireshark for Gnome 2 and deskt #%patch1 -p1 -b .pie %patch2 -p1 %patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 %patch8 -p1 -%patch9 -p1 -b .netdump %build %ifarch s390 s390x sparcv9 sparc64 @@ -214,6 +204,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Radek Vokal 1.2.1-1 +- upgrade to 1.2.1 +- fixes several security flaws +- http://www.wireshark.org/docs/relnotes/wireshark-1.2.1.html + * Fri May 22 2009 Radek Vokal 1.0.8-1 - upgrade to 1.0.8 - several security vulnerabilities have been fixed --- wireshark-1.0.5-nfs41-backchnl-decode.patch DELETED --- --- wireshark-1.0.6-netdump2.patch DELETED --- --- wireshark-nfsv41-layout-types.patch DELETED --- --- wireshark-nfsv41-layout-updates.patch DELETED --- --- wireshark-nfsv41.patch DELETED --- --- wireshark-rpc-pdu-size.patch DELETED --- From caolanm at fedoraproject.org Wed Jul 22 13:12:02 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 22 Jul 2009 13:12:02 +0000 (UTC) Subject: rpms/hyphen/devel hyphen.spec,1.8,1.9 Message-ID: <20090722131202.4B6C311C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hyphen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20367 Modified Files: hyphen.spec Log Message: make hyphen-en a noarch subpackage Index: hyphen.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen/devel/hyphen.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hyphen.spec 12 Jun 2009 14:25:32 -0000 1.8 +++ hyphen.spec 22 Jul 2009 13:12:01 -0000 1.9 @@ -1,7 +1,7 @@ Name: hyphen Summary: A text hyphenation library Version: 2.4 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/hunspell/hyphen-%{version}.tar.gz Group: System Environment/Libraries URL: http://hunspell.sf.net @@ -24,6 +24,7 @@ Includes and definitions for developing Requires: hyphen Summary: English hyphenation rules Group: Applications/Text +BuildArch: noarch %description en English hyphenation rules. @@ -72,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/substrings.pl %changelog +* Wed Jul 22 2009 Caolan McNamara - 2.4-4 +- make hyphen-en a noarch subpackage + * Fri Jun 12 2009 Caolan McNamara - 2.4-3 - extend coverage From pkgdb at fedoraproject.org Wed Jul 22 13:12:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 13:12:53 +0000 Subject: [pkgdb] uClibc had acl change status Message-ID: <20090722131253.9563810F897@bastion2.fedora.phx.redhat.com> vda has set the commit acl on uClibc (Fedora devel) to Approved for varekova To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From pkgdb at fedoraproject.org Wed Jul 22 13:12:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 13:12:55 +0000 Subject: [pkgdb] uClibc had acl change status Message-ID: <20090722131255.A663510F89B@bastion2.fedora.phx.redhat.com> vda has set the approveacls acl on uClibc (Fedora devel) to Approved for varekova To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/uClibc From limb at fedoraproject.org Wed Jul 22 13:14:02 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 22 Jul 2009 13:14:02 +0000 (UTC) Subject: rpms/chkrootkit/devel chkrootkit-0.48-chkutmp-outofbounds.patch, 1.1, 1.2 chkrootkit.spec, 1.37, 1.38 Message-ID: <20090722131402.3CDDE11C0099@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/chkrootkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21681 Modified Files: chkrootkit-0.48-chkutmp-outofbounds.patch chkrootkit.spec Log Message: Additional fixes. chkrootkit-0.48-chkutmp-outofbounds.patch: chkutmp.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Index: chkrootkit-0.48-chkutmp-outofbounds.patch =================================================================== RCS file: /cvs/pkgs/rpms/chkrootkit/devel/chkrootkit-0.48-chkutmp-outofbounds.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chkrootkit-0.48-chkutmp-outofbounds.patch 21 Jul 2009 19:50:16 -0000 1.1 +++ chkrootkit-0.48-chkutmp-outofbounds.patch 22 Jul 2009 13:14:01 -0000 1.2 @@ -6,3 +6,23 @@ @@ -135 +135 @@ - struct utmp_line *endp = &utl_p[MAXBUF]; + struct utmp_line *endp = &utl_p[MAXBUF-1]; +--- chkutmp.c~ 2009-07-22 07:57:13.000000000 -0500 ++++ chkutmp.c 2009-07-22 08:09:41.000000000 -0500 +@@ -179 +179 @@ +- for (h = 0; h <= y; h++) { /* loop through 'ps' data */ ++ for (h = 0; h < y; h++) { /* loop through 'ps' data */ +@@ -181 +181 @@ +- for (i = 0; i <= z; i++) { /* try and match the tty from 'ps' to one in utmp */ ++ for (i = 0; i < z; i++) { /* try and match the tty from 'ps' to one in utmp */ +--- chkutmp.c~ 2009-07-22 08:09:41.000000000 -0500 ++++ chkutmp.c 2009-07-22 08:11:17.000000000 -0500 +@@ -60,3 +60,3 @@ +- char ps_tty[UT_LINESIZE]; +- char ps_user[UT_NAMESIZE]; +- char ps_args[MAXLENGTH]; ++ char ps_tty[UT_LINESIZE+2]; ++ char ps_user[UT_NAMESIZE+2]; ++ char ps_args[MAXLENGTH+2]; +@@ -66 +66 @@ +- char ut_tty[UT_LINESIZE]; ++ char ut_tty[UT_LINESIZE+2]; Index: chkrootkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/chkrootkit/devel/chkrootkit.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- chkrootkit.spec 21 Jul 2009 19:50:16 -0000 1.37 +++ chkrootkit.spec 22 Jul 2009 13:14:02 -0000 1.38 @@ -1,6 +1,6 @@ Name: chkrootkit Version: 0.48 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Tool to locally check for signs of a rootkit Group: Applications/System License: BSD and GPLv2+ and Python @@ -125,6 +125,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Wed Jul 22 2009 Jon Ciesla 0.48-13 +- Additional items in chkutmp patch. + * Tue Jul 21 2009 Jon Ciesla 0.48-12 - Patch to fix crash in chkutmp on x86_64. From dnovotny at fedoraproject.org Wed Jul 22 13:44:17 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Wed, 22 Jul 2009 13:44:17 +0000 (UTC) Subject: rpms/file/devel file-5.03-xfsdump.patch, NONE, 1.1 file.spec, 1.101, 1.102 Message-ID: <20090722134417.7925F11C0099@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/file/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv430 Modified Files: file.spec Added Files: file-5.03-xfsdump.patch Log Message: fix #513079 file-5.03-xfsdump.patch: filesystems | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE file-5.03-xfsdump.patch --- diff -up file-5.03/magic/Magdir/filesystems.xfsdump file-5.03/magic/Magdir/filesystems --- file-5.03/magic/Magdir/filesystems.xfsdump 2009-07-22 15:36:01.000000000 +0200 +++ file-5.03/magic/Magdir/filesystems 2009-07-22 15:36:25.000000000 +0200 @@ -1392,3 +1392,10 @@ # dvdisaster's .ecc # From: "Nelson A. de Oliveira" 0 string *dvdisaster* dvdisaster error correction file + +# xfs metadump image +# mb_magic XFSM at 0; superblock magic XFSB at 1 << mb_blocklog +# but can we do the << ? For now it's always 512 (0x200) anyway. +0 string XFSM +>0x200 string XFSB XFS filesystem metadump image + Index: file.spec =================================================================== RCS file: /cvs/extras/rpms/file/devel/file.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- file.spec 10 Jul 2009 18:27:33 -0000 1.101 +++ file.spec 22 Jul 2009 13:44:16 -0000 1.102 @@ -5,7 +5,7 @@ Summary: A utility for determining file types Name: file Version: 5.03 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/File Source0: ftp://ftp.astron.com/pub/file/file-%{version}.tar.gz @@ -14,6 +14,7 @@ Patch0: file-4.21-pybuild.patch Patch1: file-5.00-devdrv.patch Patch2: file-5.00-mdmp.patch Patch3: file-5.03-fonts-postscript.patch +Patch4: file-5.03-xfsdump.patch Requires: file-libs = %{version}-%{release} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -63,6 +64,8 @@ file(1) command. %patch2 -p1 #fixes #505758, #505759, #505762, #505765 %patch3 -p1 +#fixes #513079 +%patch4 -p1 iconv -f iso-8859-1 -t utf-8 < doc/libmagic.man > doc/libmagic.man_ touch -r doc/libmagic.man doc/libmagic.man_ @@ -137,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Jul 22 2009 Daniel Novotny 5.03-5 +- #513079 - RFE: file - recognize xfs metadump images + * Fri Jul 10 2009 Adam Jackson 5.03-4 - Clean up %%description. From caolanm at fedoraproject.org Wed Jul 22 13:45:19 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 22 Jul 2009 13:45:19 +0000 (UTC) Subject: rpms/icu/devel icu.spec,1.97,1.98 Message-ID: <20090722134519.D376711C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv753 Modified Files: icu.spec Log Message: make documentation noarch Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- icu.spec 14 Jul 2009 11:44:13 -0000 1.97 +++ icu.spec 22 Jul 2009 13:44:49 -0000 1.98 @@ -1,6 +1,6 @@ Name: icu Version: 4.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: International Components for Unicode Group: Development/Tools License: MIT @@ -46,6 +46,7 @@ Includes and definitions for developing %package -n lib%{name}-doc Summary: Documentation for International Components for Unicode Group: Documentation +BuildArch: noarch %description -n lib%{name}-doc %{summary}. @@ -130,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %doc source/__docs/%{name}/html/* %changelog +* Wed Jul 22 2009 Caolan McNamara - 4.2.1-3 +- make documentation noarch + * Tue Jul 14 2009 Caolan McNamara - 4.2.1-2 - rpmlint warnings From ajax at fedoraproject.org Wed Jul 22 13:45:36 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 13:45:36 +0000 (UTC) Subject: rpms/libXtst/devel .cvsignore, 1.9, 1.10 libXtst.spec, 1.23, 1.24 sources, 1.9, 1.10 Message-ID: <20090722134536.1273E11C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXtst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv881 Modified Files: .cvsignore libXtst.spec sources Log Message: * Wed Jul 22 2009 Adam Jackson 1.0.99.1-1 - libXtst 1.0.99.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 24 Sep 2007 19:41:25 -0000 1.9 +++ .cvsignore 22 Jul 2009 13:45:05 -0000 1.10 @@ -1 +1 @@ -libXtst-1.0.3.tar.bz2 +libXtst-1.0.99.1.tar.bz2 Index: libXtst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/libXtst.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libXtst.spec 25 Feb 2009 13:29:48 -0000 1.23 +++ libXtst.spec 22 Jul 2009 13:45:05 -0000 1.24 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXtst runtime library Name: libXtst -Version: 1.0.3 -Release: 5%{?dist} +Version: 1.0.99.1 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -65,6 +65,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) +%{_includedir}/X11/extensions/XTest.h %if %{with_static} %{_libdir}/libXtst.a %endif @@ -73,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/XTest*.3* %changelog +* Wed Jul 22 2009 Adam Jackson 1.0.99.1-1 +- libXtst 1.0.99.1 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 24 Sep 2007 19:41:25 -0000 1.9 +++ sources 22 Jul 2009 13:45:05 -0000 1.10 @@ -1 +1 @@ -090c1ad04e34982eada5cf3b1a0792fd libXtst-1.0.3.tar.bz2 +c41044b5c3af20e7abcfb874ea743b52 libXtst-1.0.99.1.tar.bz2 From rstrode at fedoraproject.org Wed Jul 22 13:54:11 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Wed, 22 Jul 2009 13:54:11 +0000 (UTC) Subject: rpms/ConsoleKit/devel ConsoleKit.spec,1.44,1.45 Message-ID: <20090722135411.B41F611C0099@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/ConsoleKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4303 Modified Files: ConsoleKit.spec Log Message: - Rebuild Index: ConsoleKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ConsoleKit/devel/ConsoleKit.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- ConsoleKit.spec 12 Jun 2009 23:29:14 -0000 1.44 +++ ConsoleKit.spec 22 Jul 2009 13:53:41 -0000 1.45 @@ -6,7 +6,7 @@ Summary: System daemon for tracking users, sessions and seats Name: ConsoleKit Version: 0.3.0 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.freedesktop.org/wiki/Software/ConsoleKit @@ -179,6 +179,9 @@ fi %doc %{_datadir}/doc/%{name}-%{version}/spec/* %changelog +* Wed Jul 22 2009 Ray Strode - 0.3.0-11 +- Rebuild + * Fri Jun 12 2009 Matthias Clasen - 0.3.0-10 - Update dbus configuration for new api From ajax at fedoraproject.org Wed Jul 22 14:06:41 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 14:06:41 +0000 (UTC) Subject: rpms/libXtst/devel libXtst.spec,1.24,1.25 Message-ID: <20090722140641.60FC011C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXtst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8631 Modified Files: libXtst.spec Log Message: fix BR Index: libXtst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/libXtst.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXtst.spec 22 Jul 2009 13:45:05 -0000 1.24 +++ libXtst.spec 22 Jul 2009 14:06:40 -0000 1.25 @@ -12,7 +12,7 @@ Source0: ftp://ftp.x.org/pub/individual/ BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel - +BuildRequires: libXi-devel %description X.Org X11 libXtst runtime library From danken at fedoraproject.org Wed Jul 22 14:11:40 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Wed, 22 Jul 2009 14:11:40 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/F-11 tex-fonts-hebrew.spec,1.4,1.5 Message-ID: <20090722141140.9D7FB11C0099@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10112 Modified Files: tex-fonts-hebrew.spec Log Message: - Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9 Resolves: #485639 Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/F-11/tex-fonts-hebrew.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tex-fonts-hebrew.spec 22 Jul 2009 11:47:03 -0000 1.4 +++ tex-fonts-hebrew.spec 22 Jul 2009 14:11:39 -0000 1.5 @@ -11,10 +11,30 @@ Source: tetex-fonts-hebrew-%{version}.ta License: GPL+ and LPPL Group: Applications/Text BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: texlive, texlive-afm, culmus-fonts-compat -Obsoletes: tetex-fonts-hebrew < 0.1-8 +BuildRequires: texlive, texlive-afm +BuildRequires: culmus-aharoni-clm-fonts +BuildRequires: culmus-caladings-clm-fonts +BuildRequires: culmus-david-clm-fonts +BuildRequires: culmus-drugulin-clm-fonts +BuildRequires: culmus-ellinia-clm-fonts +BuildRequires: culmus-frank-ruehl-clm-fonts +BuildRequires: culmus-miriam-clm-fonts +BuildRequires: culmus-miriam-mono-clm-fonts +BuildRequires: culmus-nachlieli-clm-fonts +BuildRequires: culmus-yehuda-clm-fonts +Obsoletes: tetex-fonts-hebrew < 0.1-9 Provides: tetex-fonts-hebrew = %{version}-%{release} -Requires: texlive culmus-fonts-compat +Requires: texlive +Requires: culmus-aharoni-clm-fonts +Requires: culmus-caladings-clm-fonts +Requires: culmus-david-clm-fonts +Requires: culmus-drugulin-clm-fonts +Requires: culmus-ellinia-clm-fonts +Requires: culmus-frank-ruehl-clm-fonts +Requires: culmus-miriam-clm-fonts +Requires: culmus-miriam-mono-clm-fonts +Requires: culmus-nachlieli-clm-fonts +Requires: culmus-yehuda-clm-fonts BuildArch: noarch Requires(post): /usr/bin/texhash /usr/bin/updmap-sys Requires(postun): /usr/bin/texhash /usr/bin/updmap-sys @@ -70,6 +90,7 @@ fi %changelog * Wed Jul 22 2009 Dan Kenigsberg - 0.1-12 - Rebuilt against existing David Type1 fonts. Bug #509697 +- Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9. Bug #485639 * Wed Feb 25 2009 Fedora Release Engineering - 0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Wed Jul 22 14:13:16 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 14:13:16 +0000 (UTC) Subject: rpms/libXtst/devel libXtst.spec,1.25,1.26 Message-ID: <20090722141316.22F5311C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXtst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10590 Modified Files: libXtst.spec Log Message: once more, with _feeling_ Index: libXtst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/libXtst.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXtst.spec 22 Jul 2009 14:06:40 -0000 1.25 +++ libXtst.spec 22 Jul 2009 14:12:45 -0000 1.26 @@ -13,6 +13,7 @@ BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel BuildRequires: libXi-devel +BuildRequires: xmlto %description X.Org X11 libXtst runtime library From danken at fedoraproject.org Wed Jul 22 14:15:24 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Wed, 22 Jul 2009 14:15:24 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/devel tex-fonts-hebrew.spec,1.3,1.4 Message-ID: <20090722141524.98E6311C0099@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11234 Modified Files: tex-fonts-hebrew.spec Log Message: - Rebuilt against existing David Type1 fonts - Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9 Resolves: #509697 #485639 Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/devel/tex-fonts-hebrew.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tex-fonts-hebrew.spec 25 Feb 2009 20:10:25 -0000 1.3 +++ tex-fonts-hebrew.spec 22 Jul 2009 14:14:54 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Culmus Hebrew fonts support for LaTeX Name: tex-fonts-hebrew Version: 0.1 -Release: 11%{?dist} +Release: 12%{?dist} URL: http://culmus.sf.net # There is no real upstream for this package. It was based on Yotam Medini's # http://www.medini.org/hebrew/culmus2ltx-2003-02-28.tar.gz but is now @@ -11,10 +11,30 @@ Source: tetex-fonts-hebrew-%{version}.ta License: GPL+ and LPPL Group: Applications/Text BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: texlive, texlive-afm, culmus-fonts-compat -Obsoletes: tetex-fonts-hebrew < 0.1-8 +BuildRequires: texlive, texlive-afm +BuildRequires: culmus-aharoni-clm-fonts +BuildRequires: culmus-caladings-clm-fonts +BuildRequires: culmus-david-clm-fonts +BuildRequires: culmus-drugulin-clm-fonts +BuildRequires: culmus-ellinia-clm-fonts +BuildRequires: culmus-frank-ruehl-clm-fonts +BuildRequires: culmus-miriam-clm-fonts +BuildRequires: culmus-miriam-mono-clm-fonts +BuildRequires: culmus-nachlieli-clm-fonts +BuildRequires: culmus-yehuda-clm-fonts +Obsoletes: tetex-fonts-hebrew < 0.1-9 Provides: tetex-fonts-hebrew = %{version}-%{release} -Requires: texlive culmus-fonts-compat +Requires: texlive +Requires: culmus-aharoni-clm-fonts +Requires: culmus-caladings-clm-fonts +Requires: culmus-david-clm-fonts +Requires: culmus-drugulin-clm-fonts +Requires: culmus-ellinia-clm-fonts +Requires: culmus-frank-ruehl-clm-fonts +Requires: culmus-miriam-clm-fonts +Requires: culmus-miriam-mono-clm-fonts +Requires: culmus-nachlieli-clm-fonts +Requires: culmus-yehuda-clm-fonts BuildArch: noarch Requires(post): /usr/bin/texhash /usr/bin/updmap-sys Requires(postun): /usr/bin/texhash /usr/bin/updmap-sys @@ -68,6 +88,10 @@ fi /usr/bin/texhash %changelog +* Wed Jul 22 2009 Dan Kenigsberg - 0.1-12 +- Rebuilt against existing David Type1 fonts. Bug #509697 +- Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9. Bug #485639 + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From katzj at fedoraproject.org Wed Jul 22 14:17:18 2009 From: katzj at fedoraproject.org (Jeremy Katz) Date: Wed, 22 Jul 2009 14:17:18 +0000 (UTC) Subject: rpms/livecd-tools/devel livecd-tools.spec,1.25,1.26 Message-ID: <20090722141718.73FA911C0099@cvs1.fedora.phx.redhat.com> Author: katzj Update of /cvs/pkgs/rpms/livecd-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12476 Modified Files: livecd-tools.spec Log Message: minor grammar type fixes (#513143) Index: livecd-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/livecd-tools/devel/livecd-tools.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- livecd-tools.spec 6 Jul 2009 18:03:30 -0000 1.25 +++ livecd-tools.spec 22 Jul 2009 14:16:48 -0000 1.26 @@ -2,7 +2,7 @@ %define debug_package %{nil} -Summary: Tools for building live CD's +Summary: Tools for building live CDs Name: livecd-tools Version: 024 Release: 1%{?dist} @@ -25,7 +25,7 @@ BuildRequires: /usr/bin/pod2man %description -Tools for generating live CD's on Fedora based systems including +Tools for generating live CDs on Fedora based systems including derived distributions such as RHEL, CentOS and others. See http://fedoraproject.org/wiki/FedoraLiveCD for more details. From jfch2222 at fedoraproject.org Wed Jul 22 14:22:04 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Wed, 22 Jul 2009 14:22:04 +0000 (UTC) Subject: rpms/openssh/devel openssh-5.2p1-sesftp.patch,1.2,1.3 Message-ID: <20090722142204.6FD0511C0099@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14058 Modified Files: openssh-5.2p1-sesftp.patch Log Message: changed internal-sftp context to sftpd_t openssh-5.2p1-sesftp.patch: session.c | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) Index: openssh-5.2p1-sesftp.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-sesftp.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openssh-5.2p1-sesftp.patch 21 Jul 2009 08:59:16 -0000 1.2 +++ openssh-5.2p1-sesftp.patch 22 Jul 2009 14:22:03 -0000 1.3 @@ -1,6 +1,6 @@ diff -up openssh-5.2p1/session.c.sesftp openssh-5.2p1/session.c ---- openssh-5.2p1/session.c.sesftp 2009-07-10 20:32:04.348435048 +0200 -+++ openssh-5.2p1/session.c 2009-07-10 21:10:42.247557847 +0200 +--- openssh-5.2p1/session.c.sesftp 2009-07-22 15:18:17.156499945 +0200 ++++ openssh-5.2p1/session.c 2009-07-22 15:20:09.950319644 +0200 @@ -58,6 +58,7 @@ #include #include @@ -9,12 +9,41 @@ diff -up openssh-5.2p1/session.c.sesftp #include "openbsd-compat/sys-queue.h" #include "xmalloc.h" -@@ -1816,6 +1817,9 @@ do_child(Session *s, const char *command +@@ -1805,8 +1806,8 @@ do_child(Session *s, const char *command + + if (s->is_subsystem == SUBSYSTEM_INT_SFTP) { + extern int optind, optreset; +- int i; +- char *p, *args; ++ int i, l; ++ char *p, *args, *c1, *c2, *cx; + + setproctitle("%s at internal-sftp-server", s->pw->pw_name); + args = xstrdup(command ? command : "sftp-server"); +@@ -1816,6 +1817,27 @@ do_child(Session *s, const char *command argv[i] = NULL; optind = optreset = 1; __progname = argv[0]; -+ if (setcon ("unconfined_u:system_r:sftpd_t:s0-s0:c0.c1023") < 0) -+ logit("do_child: setcon failed witch %s", strerror (errno)); ++ if (getcon (&c1) < 0) { ++ logit("do_child: getcon failed witch %s", strerror (errno)); ++ } else { ++ c2 = xmalloc (strlen (c1) + 8); ++ if (!(cx = index (c1, ':'))) ++ goto badcontext; ++ if (!(cx = index (cx + 1, ':'))) { ++badcontext: ++ logit ("do_child: unparseable context %s", c1); ++ } else { ++ l = cx - c1 + 1; ++ memcpy (c2, c1, l); ++ strcpy (c2 + l, "sftpd_t"); ++ if ((cx = index (cx + 1, ':'))) ++ strcat (c2, cx); ++logit ("<= %s", c1); logit ("=> %s", c2); if (setcon ("system_u:system_r:sftpd_t:s0-s0:c0.c1023") < 0) ++ logit("do_child: setcon failed witch %s", strerror (errno)); ++ ++ } ++ } + exit(sftp_server_main(i, argv, s->pw)); } From caolanm at fedoraproject.org Wed Jul 22 14:24:27 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Wed, 22 Jul 2009 14:24:27 +0000 (UTC) Subject: rpms/hunspell/devel hunspell.spec,1.69,1.70 Message-ID: <20090722142427.98B6311C0099@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15206 Modified Files: hunspell.spec Log Message: run tests in check Index: hunspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell/devel/hunspell.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- hunspell.spec 9 Jul 2009 12:10:08 -0000 1.69 +++ hunspell.spec 22 Jul 2009 14:24:26 -0000 1.70 @@ -1,7 +1,7 @@ Name: hunspell Summary: A spell checker and morphological analyzer library Version: 1.2.8 -Release: 9%{?dist} +Release: 10%{?dist} Source0: http://downloads.sourceforge.net/%{name}/hunspell-%{version}.tar.gz Source1: http://people.debian.org/~agmartin/misc/ispellaff2myspell Source2: http://people.redhat.com/caolanm/hunspell/wordlist2hunspell @@ -57,9 +57,15 @@ for i in AUTHORS.myspell; do touch -r $i $i.new mv -f $i.new $i fi + tr -d '\r' < $i > $i.new + touch -r $i $i.new + mv -f $i.new $i done make %{?_smp_mflags} +%check +make -C tests check-TESTS + %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install @@ -117,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/hunspell.3.gz %changelog +* Wed Jul 22 2009 Caolan McNamara - 1.2.8-10 +- run tests in check + * Thu Jul 09 2009 Caolan McNamara - 1.2.8-9 - Resolves: rhbz#510360 unowned dirs - fix up rpmlint warnings From twaugh at fedoraproject.org Wed Jul 22 14:25:20 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 22 Jul 2009 14:25:20 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-1.1.10.tar.bz2.sig, NONE, 1.1 .cvsignore, 1.202, 1.203 sources, 1.208, 1.209 system-config-printer.spec, 1.268, 1.269 upstream-key.gpg, 1.2, 1.3 system-config-printer-arrows.patch, 1.1, NONE system-config-printer-bug507489.patch, 1.1, NONE system-config-printer-gutenprint.patch, 1.1, NONE system-config-printer-https.patch, 1.1, NONE system-config-printer-incorrect-auth.patch, 1.1, NONE system-config-printer-ipp-nonfatal-exception.patch, 1.1, NONE system-config-printer-nmblookup-failure.patch, 1.1, NONE system-config-printer-packagekit.patch, 1.1, NONE system-config-printer-properties-cancel.patch, 1.1, NONE system-config-printer-remote-location-field.patch, 1.1, NONE system-config-printer-stopped-jobs.patch, 1.1, NONE Message-ID: <20090722142520.3369211C0099@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15591 Modified Files: .cvsignore sources system-config-printer.spec upstream-key.gpg Added Files: system-config-printer-1.1.10.tar.bz2.sig Removed Files: system-config-printer-arrows.patch system-config-printer-bug507489.patch system-config-printer-gutenprint.patch system-config-printer-https.patch system-config-printer-incorrect-auth.patch system-config-printer-ipp-nonfatal-exception.patch system-config-printer-nmblookup-failure.patch system-config-printer-packagekit.patch system-config-printer-properties-cancel.patch system-config-printer-remote-location-field.patch system-config-printer-stopped-jobs.patch Log Message: * Wed Jul 22 2009 Tim Waugh 1.1.10-1 - 1.1.10: - New udev rules for adding/enabling/disabling USB printers automatically. - Now uses gnome-packagekit utility to install packages instead of the D-Bus API. - Fixed detection of stopped jobs with CUPS 1.4. - Fixed tracebacks when adding a new printer and when receiving IPP notifications. - Fixed 'location' field for printers added on remote CUPS servers. - Fixed handling of incorrect authentication. - Some UI and troubleshooter fixes have been made. --- NEW FILE system-config-printer-1.1.10.tar.bz2.sig --- ?? ????????? Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/.cvsignore,v retrieving revision 1.202 retrieving revision 1.203 diff -u -p -r1.202 -r1.203 --- .cvsignore 18 Jun 2009 16:46:35 -0000 1.202 +++ .cvsignore 22 Jul 2009 14:25:18 -0000 1.203 @@ -201,3 +201,4 @@ system-config-printer-1.1.6.tar.bz2 system-config-printer-1.1.7.tar.bz2 pycups-1.9.46.tar.bz2 system-config-printer-1.1.8.tar.bz2 +system-config-printer-1.1.10.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/sources,v retrieving revision 1.208 retrieving revision 1.209 diff -u -p -r1.208 -r1.209 --- sources 18 Jun 2009 16:46:35 -0000 1.208 +++ sources 22 Jul 2009 14:25:19 -0000 1.209 @@ -1,3 +1,3 @@ ac8f98a40b0fc4b6ab4470f10489887a pysmbc-1.0.6.tar.bz2 895d4170542ec80c74d41746a9474409 pycups-1.9.46.tar.bz2 -fa520cbf9cd86dc6fa8becd872bbbfa9 system-config-printer-1.1.8.tar.bz2 +18d7455f832a9bc5b72d15e5e38913cd system-config-printer-1.1.10.tar.bz2 Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.268 retrieving revision 1.269 diff -u -p -r1.268 -r1.269 --- system-config-printer.spec 6 Jul 2009 14:46:19 -0000 1.268 +++ system-config-printer.spec 22 Jul 2009 14:25:19 -0000 1.269 @@ -6,25 +6,14 @@ Summary: A printer administration tool Name: system-config-printer -Version: 1.1.8 -Release: 6%{?dist} +Version: 1.1.10 +Release: 1%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 -Patch1: system-config-printer-bug507489.patch -Patch2: system-config-printer-ipp-nonfatal-exception.patch -Patch3: system-config-printer-https.patch -Patch4: system-config-printer-remote-location-field.patch -Patch5: system-config-printer-nmblookup-failure.patch -Patch6: system-config-printer-properties-cancel.patch -Patch7: system-config-printer-incorrect-auth.patch -Patch8: system-config-printer-packagekit.patch -Patch9: system-config-printer-stopped-jobs.patch -Patch10: system-config-printer-gutenprint.patch -Patch11: system-config-printer-arrows.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -32,6 +21,7 @@ BuildRequires: libsmbclient-devel >= 3.2 BuildRequires: desktop-file-utils >= 0.2.92 BuildRequires: gettext-devel BuildRequires: intltool +BuildRequires: libusb-devel, libudev-devel BuildRequires: xmlto BuildRequires: epydoc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -73,22 +63,22 @@ Provides: pysmbc = %{pysmbc_version} The common code used by both the graphical and non-graphical parts of the configuration tool. +%package udev +Summary: Rules for udev for automatic configuration of USB printers +Group: System Environment/Base +Requires: system-config-printer-libs = %{version}-%{release} +Obsoletes: hal-cups-utils <= 0.6.20 +Provides: hal-cups-utils = 0.6.20 + +%description udev +The udev rules and helper programs for automatically configuring USB +printers. + %prep %setup -q -a 1 -a 2 -%patch1 -p1 -b .bug507489 -%patch2 -p1 -b .ipp-nonfatal-exception -%patch3 -p1 -b .https -%patch4 -p1 -b .remote-location-field -%patch5 -p1 -b .nmblookup-failure -%patch6 -p1 -b .properties-cancel -%patch7 -p1 -b .incorrect-auth -%patch8 -p1 -b .packagekit -%patch9 -p1 -b .stopped-jobs -%patch10 -p1 -b .gutenprint -%patch11 -p1 -b .arrows %build -%configure +%configure --with-udev-rules pushd pycups-%{pycups_version} make @@ -133,6 +123,11 @@ rm -rf %buildroot %{python_sitelib}/cupshelpers/ppds.py* %{python_sitelib}/*.egg-info +%files udev +%defattr(-,root,root,-) +%{_sysconfdir}/udev/rules.d/*.rules +/lib/udev/* + %files %defattr(-,root,root,-) %doc ChangeLog README @@ -188,6 +183,19 @@ rm -rf %buildroot exit 0 %changelog +* Wed Jul 22 2009 Tim Waugh 1.1.10-1 +- 1.1.10: + - New udev rules for adding/enabling/disabling USB printers + automatically. + - Now uses gnome-packagekit utility to install packages + instead of the D-Bus API. + - Fixed detection of stopped jobs with CUPS 1.4. + - Fixed tracebacks when adding a new printer and when receiving + IPP notifications. + - Fixed 'location' field for printers added on remote CUPS servers. + - Fixed handling of incorrect authentication. + - Some UI and troubleshooter fixes have been made. + * Mon Jul 6 2009 Tim Waugh 1.1.8-6 - Requires gnome-packagekit for gpk-install-package-name. Index: upstream-key.gpg =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/upstream-key.gpg,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- upstream-key.gpg 9 Aug 2007 14:19:31 -0000 1.2 +++ upstream-key.gpg 22 Jul 2009 14:25:19 -0000 1.3 @@ -1,36 +1,36 @@ -----BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.7 (GNU/Linux) +Version: GnuPG v1.4.9 (GNU/Linux) -mQGiBEa5fNcRBACJCPsz2q0hj0p5pJABzMKTb4r5lko0upe6ZYOQ2NFZw61upKzI -uFanlwDVi3MaEHIGf8hsYr82GxTFUc+O2DFskKwEuZ3O4Q50qqkHAnMLZ2VFKXyF -VJRPUrezpiXifbRjdV3ED0ikc7+ANArUStqbaIvjM3zJOo5GuEcO7AAPiwCgofNk -1DG1GNH8cBxqGQoEPYrm/pkD/1e7OsMk50XXTQd77hZW1ViIQK8P4tkj65FWBgNg -d5PyXNqGfOcskn+iVbx9cGsTgAbfP5IVlnxCmf3QE2rLelJtX++aCUmM4irDclTv -9hn5UQf1QPqvwHFr+h6FHAg8WjHhdORc8hDlWMntmAArjmqFY4FcF/DZMzddZNgf -jklwA/0aOef82dkwMbgmtLMcx1m0QTSBV04x2z3UIuBLdG9klhzTSCzr0EbtoSWe -8JN5LdZr//BDJV5elyEWuiQP5uMhXkrVWCZlt3hJ8zvncO/1gnPQPzRty3IuoAyO -j4uIWLupjdHVqqBDhJEmc+MvjRgQvUkdt07PEm5ehaRxaB36I7QdVGltIFdhdWdo -IDx0d2F1Z2hAcmVkaGF0LmNvbT6IZgQTEQIAJgUCRrl9JAIbAwUJA8JnAAYLCQgH -AwIEFQIIAwQWAgMBAh4BAheAAAoJEGklkaMet5kjzfYAoIjd5Y/5+BKxYMXndh4a -54MVmEXoAJ0f1pdb+zMVcCMs/lyB2oF/+nMWwYhGBBARAgAGBQJGuX11AAoJEO3n -xuaBAwm9DF0AnAnBbra0+WvYa1TLgdIA/ME9r/NNAJ9hXtoFm8s/rAw3YUM79wK1 -8P1RIrQcVGltIFdhdWdoIDx0aW1AY3liZXJlbGsubmV0PohmBBMRAgAmBQJGuXzX -AhsDBQkDwmcABgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQaSWRox63mSPQowCg -jEKmAQght3t/7JVPX6H29kZyqFYAni3DbBuKULwKMuL71PA556bVbdsMiEYEEBEC -AAYFAka5fXUACgkQ7efG5oEDCb3VrwCfft0SMdCYReiyNoazvWmVvfPk1hgAn2JH -1pdBUCMeMVrxbIBfngNM6Me0uQINBEa5fNcQCACqm3SBctiw150XfY5AWUFPwmJB -xX2YTG867RiuaXntFCdERybikjmgNVVlCRudufdqs2bqeqY+oFvS3TMz7SOQmSwv -QJbEx7WrR7RWU9l0UWMPmiOZ6ZMZjwl2qArvR28RME+n2ooFjuOV3xzb1f4itbo0 -KDshdhoXvcr93z7+vSMjAGLwrLButh1BwbadSAFyIkIyguakKak+vY5kcBPbYUh6 -AnLKWZJF/UNzC6gU4fqc1kLM7RbPLO8oXMgghqcEDK7AVQoXD13xXL6+oDCtwv1u -zZ6HTYK4l7Dcnpr9nQALF/yepD0xqpRcAA5GFrElFxdVoF24kRKy56+eOOkTAAMG -B/9npM+/tnF49zw4onQjqEtie1lxDKZAgOmbu34aaH0udF8n37XQdmd4z7M2/Jf8 -qFBqeO01MfYmuAfZ9esM+Sneh3/Nvmi5++kz7IKS4V6EE4DndLZW+hnO09i498Fe -dwEkhsxpU3YqB9IL6iNjKjQgYtfYBlDJvBwtlgUzKK80toAH6XPA6j/SBjJM6vZb -P1XpZajWbkvhKzYfqXtjXZ2dqIGbtSW8uJr1Ighr9ZYQvK0r6XkhZBoUorteQUS4 -IrweKXRGnUeOHuUXr8d7rzsufSP6ZNhQQvwG80vr8V4Z++8YKpfyv8uOwAc3GK/u -9O+CLk4lvD4SBCVoZaSCv/9aiE8EGBECAA8FAka5fNcCGwwFCQPCZwAACgkQaSWR -ox63mSPTcgCfUiOr+XPLLhqJEQLQHp+Y8FvU7voAnRQuODX6A2Siap8Aw09esWVq -L7PW -=wzDO +mQGiBEpnDbARBADRsKGwS54yxqAoniGaI8X+saG4ezdZ1OmPr9f7L4PugzjjL7qR +p9O7hj+RZNVM7QR9nPUFTawBTfWQisyS8/a3xiBbQxlhW8uuORhM2gTkVGGlGbCc +jH+RT0T8t/75m6n2IXKATqugrMH60NXreQQuCKWgCrT6TroMldlVQpBaFwCgx/s0 +1KlfCY42Er0YA/DDpMgTYhUEAI0PgOpD6C8ncEpqvSYSs1qyvRsrpp86M/nyi+pm +15+7IZhlXE53gXeSLT+dTutvVQtbXbf2DwJmAKdjQw1Y4esjxwH1bPYnPnTlIlZ6 +CHQbYO0n6u2pDnSF8sxi3ene6BSuL7NvKpejwXqLEQFGjaop5eAdDs6YvHNU3Yev +os0UA/4t9TstI4laLwvCqZ7npwsNxT/1sXa5F09d26oTSZlJwSEmGe6+tOqAbDYn +1mrCajNt40pGPBKXhE2UNJIBrrWSjZCAp4LSmj6KCEXs35fpmUhUp54V79cC4AI/ +rezLlZIB6l4Dey1is5bkw1yOsBT6Qf4lGJHkggyUfW/ymGZfqbQdVGltIFdhdWdo +IDx0d2F1Z2hAcmVkaGF0LmNvbT6IZgQTEQIAJgUCSmcOPwIbAwUJA8JnAAYLCQgH +AwIEFQIIAwQWAgMBAh4BAheAAAoJEAS0Gn2aStrXYHMAoLxVaLxFP6P6rRlQtla+ +NO1KSkMBAJ9jNppMaAf2pHi1b9CoD4f4MEvOS4hGBBARAgAGBQJKZxDHAAoJEO3n +xuaBAwm91N0AoJROznoZyHKXRxgzLyXemIA4TYMAAJ9Y9HdZOenEMw9HMg36guZK +dBIVLLQcVGltIFdhdWdoIDx0aW1AY3liZXJlbGsubmV0PohmBBMRAgAmBQJKZw2w +AhsDBQkDwmcABgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQBLQafZpK2tet4gCf +VKhWbUJAcIlNpWpYD0kYgGty/ucAoIfsKq9FNBPw9pQPaDnxbKDyserxiEYEEBEC +AAYFAkpnEMcACgkQ7efG5oEDCb0RvACePTmfisPxeKkGo6QoA42MFH5wtPIAn329 +9ur6BKDz/QrKVT13CxRoKosLuQINBEpnDbAQCACCZaJHH6EctIyz+PYBCzz889PR +iLAOyKlbrgaR4KhVGBFttKyOJkEk+UvxLUuRkOOY6i6TWbT3qNUnZT6QkftGulal +8MAtBf2xnJXEsyKgPkRkeDAx3uvMBfrW0wgxcFw9K6E+p8x76bFFD+FtrduDRfxk +2jDwJgyYubnM3+nPZzZXfuFnxSRYjJcoAq4O61YdH8O79TElEGqTwd/BHeIexEf2 +BkBAscE4GCmGXTYCsLByY8sGD13U7OO3Kk4ul4FgI/mzM25zgqqhbAObjsIwJqE+ +6MXqkkylmo+noTe3zlfNdnR1xkmYUCfUc4+WeFyziHRiXMkt5OYY5wDW5WGnAAMF +B/4gvjt8SXekSxgdFCuEOQ0J2YM4DElQkaf+Tggbr9F3hnsWfJ49gEipCWEhKPt2 +ks4kDexO/Cn6SI7SQUPiNUWylm80G1Dd+xaQ9qrN1KTsReACXOCKoRgz64MooSOj +Qs8YIGI/ejLzPkn6mUEmFRHssd4jmmSCbF99AmVh6Z4VnkKLTG+z3KQUymF0ng5b +AAcwTOJhlAR7xrBJGfhnRUTIaNtD+UnBsoxApeUJie2lc84Pc10p56TGomkEy3Ib +se1kk4w3mZ8kkR57voh/PovSl/8NyPmv81oVHbJnGLKAVku4XT0IBQOBdDKeRKHB +tlPLsK9KFx2LxhtAmQN4C/j5iE8EGBECAA8FAkpnDbACGwwFCQPCZwAACgkQBLQa +fZpK2teQogCgg68475moQ7dh/HIUHRNJKZJfmoQAoIw92pM7V5VYMpz9kW+701Fu +JofS +=vrpj -----END PGP PUBLIC KEY BLOCK----- --- system-config-printer-arrows.patch DELETED --- --- system-config-printer-bug507489.patch DELETED --- --- system-config-printer-gutenprint.patch DELETED --- --- system-config-printer-https.patch DELETED --- --- system-config-printer-incorrect-auth.patch DELETED --- --- system-config-printer-ipp-nonfatal-exception.patch DELETED --- --- system-config-printer-nmblookup-failure.patch DELETED --- --- system-config-printer-packagekit.patch DELETED --- --- system-config-printer-properties-cancel.patch DELETED --- --- system-config-printer-remote-location-field.patch DELETED --- --- system-config-printer-stopped-jobs.patch DELETED --- From twaugh at fedoraproject.org Wed Jul 22 14:26:14 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Wed, 22 Jul 2009 14:26:14 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-1.1.8.tar.bz2.sig, 1.1, NONE Message-ID: <20090722142614.B510211C0099@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16070 Removed Files: system-config-printer-1.1.8.tar.bz2.sig Log Message: Remove old signature. --- system-config-printer-1.1.8.tar.bz2.sig DELETED --- From rjones at fedoraproject.org Wed Jul 22 14:29:54 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Wed, 22 Jul 2009 14:29:54 +0000 (UTC) Subject: rpms/chntpw/devel chntpw-080526-reged-no-deref-null.patch, NONE, 1.1 chntpw.spec, 1.9, 1.10 Message-ID: <20090722142954.1FCF611C0099@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/chntpw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17637 Modified Files: chntpw.spec Added Files: chntpw-080526-reged-no-deref-null.patch Log Message: Another patch from Jim Meyering. chntpw-080526-reged-no-deref-null.patch: reged.c | 5 +++++ 1 file changed, 5 insertions(+) --- NEW FILE chntpw-080526-reged-no-deref-null.patch --- >From jim at meyering.net Wed Jul 22 13:41:58 2009 Return-Path: jim at meyering.net X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on amd.home.annexia.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.2.5 Received: from mail.corp.redhat.com [10.5.5.51] by amd.home.annexia.org with IMAP (fetchmail-6.3.8) for (single-drop); Wed, 22 Jul 2009 13:41:58 +0100 (BST) Received: from zmta01.collab.prod.int.phx2.redhat.com (LHLO zmta01.collab.prod.int.phx2.redhat.com) (10.5.5.31) by mail06.corp.redhat.com with LMTP; Wed, 22 Jul 2009 08:41:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by zmta01.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 52E8193C42 for ; Wed, 22 Jul 2009 08:41:25 -0400 (EDT) Received: from zmta01.collab.prod.int.phx2.redhat.com ([127.0.0.1]) by localhost (zmta01.collab.prod.int.phx2.redhat.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i+F0NOkWPqt0 for ; Wed, 22 Jul 2009 08:41:25 -0400 (EDT) Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by zmta01.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 29C8193C01 for ; Wed, 22 Jul 2009 08:41:25 -0400 (EDT) Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6MCfOiN011483 for ; Wed, 22 Jul 2009 08:41:24 -0400 Received: from mx.meyering.net (sebastian-int.corp.redhat.com [172.16.52.221]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6MCfNP5023290 for ; Wed, 22 Jul 2009 08:41:23 -0400 Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id 38377558B9; Wed, 22 Jul 2009 14:41:23 +0200 (CEST) From: Jim Meyering To: "Richard W. M. Jones" Subject: [PATCH] "reged -e" should not dereference NULL Date: Wed, 22 Jul 2009 14:41:23 +0200 Message-ID: <87y6qg51qk.fsf at meyering.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Status: RO Content-Length: 871 Lines: 27 >From d9203daf8e29290ca82b2433722e9e56cd0ab73f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 22 Jul 2009 14:25:14 +0200 Subject: [PATCH] "reged -e" should not dereference NULL * reged.c (main): Diagnose a missing hive file name with -e. --- reged.c | 30 +++++++++++++++++------------- 1 files changed, 17 insertions(+), 13 deletions(-) diff --git a/reged.c b/reged.c index cf395bc..f99f94e 100644 --- a/reged.c +++ b/reged.c @@ -99,6 +99,11 @@ int main(int argc, char **argv) } if (edit) { /* Call editor. Rest of arguments are considered hives to load */ hivename = argv[optind+no_hives]; + if (!hivename) { + fprintf(stderr,"with -e you must specify at least one hive file name\n"); + usage(); + exit(1); + } do { if (!(hive[no_hives] = openHive(hivename, HMODE_RW|mode))) { Index: chntpw.spec =================================================================== RCS file: /cvs/pkgs/rpms/chntpw/devel/chntpw.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- chntpw.spec 22 Jul 2009 09:45:17 -0000 1.9 +++ chntpw.spec 22 Jul 2009 14:29:23 -0000 1.10 @@ -1,7 +1,7 @@ Name: chntpw # Version is taken from HISTORY.txt Version: 0.99.6 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Change passwords in Windows SAM files Group: Applications/Engineering License: GPLv2 @@ -26,6 +26,7 @@ Patch3: chntpw-080526-port-to-gc Patch4: chntpw-080526-robustness.patch Patch5: chntpw-080526-correct-test-for-failing-open-syscall.patch Patch6: chntpw-080526-detect-failure-to-write-key.patch +Patch7: chntpw-080526-reged-no-deref-null.patch %description @@ -53,6 +54,7 @@ mv WinReg.txt.eol WinReg.txt %patch4 -p1 %patch5 -p1 %patch6 -p1 +%patch7 -p1 %build @@ -84,8 +86,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Wed Jul 22 2009 Richard W.M. Jones - 0.99.6-11 -- Two more patches from Jim Meyering to improve general code quality. +* Wed Jul 22 2009 Richard W.M. Jones - 0.99.6-12 +- Two^W Three more patches from Jim Meyering to improve general code quality. * Mon Jul 20 2009 Richard W.M. Jones - 0.99.6-10 - Three patches from Jim Meyering aiming to improve the general From jorton at fedoraproject.org Wed Jul 22 14:33:52 2009 From: jorton at fedoraproject.org (jorton) Date: Wed, 22 Jul 2009 14:33:52 +0000 (UTC) Subject: rpms/ca-certificates/devel ca-bundle.crt, 1.2, 1.3 ca-certificates.spec, 1.6, 1.7 mkcabundle.pl, 1.1, 1.2 Message-ID: <20090722143352.80FA411C0099@cvs1.fedora.phx.redhat.com> Author: jorton Update of /cvs/extras/rpms/ca-certificates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19223 Modified Files: ca-bundle.crt ca-certificates.spec mkcabundle.pl Log Message: * Wed Jul 22 2009 Joe Orton 2009-1 - update to certdata.txt r1.53 Index: ca-bundle.crt =================================================================== RCS file: /cvs/extras/rpms/ca-certificates/devel/ca-bundle.crt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ca-bundle.crt 14 Oct 2008 09:14:38 -0000 1.2 +++ ca-bundle.crt 22 Jul 2009 14:33:21 -0000 1.3 @@ -3,7 +3,7 @@ # # Source: mozilla/security/nss/lib/ckfw/builtins/certdata.txt # -# Generated from certdata.txt RCS revision 1.49 +# Generated from certdata.txt RCS revision 1.53 # Certificate: Data: @@ -10718,3 +10718,1310 @@ iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YM -----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 39:11:45:10:94 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FR, ST=France, L=Paris, O=PM/SGDN, OU=DCSSI, CN=IGC/A/emailAddress=igca at sgdn.pm.gouv.fr + Validity + Not Before: Dec 13 14:29:23 2002 GMT + Not After : Oct 17 14:29:22 2020 GMT + Subject: C=FR, ST=France, L=Paris, O=PM/SGDN, OU=DCSSI, CN=IGC/A/emailAddress=igca at sgdn.pm.gouv.fr + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:b2:1f:d1:d0:62:c5:33:3b:c0:04:86:88:b3:dc: + f8:88:f7:fd:df:43:df:7a:8d:9a:49:5c:f6:4e:aa: + cc:1c:b9:a1:eb:27:89:f2:46:e9:3b:4a:71:d5:1d: + 8e:2d:cf:e6:ad:ab:63:50:c7:54:0b:6e:12:c9:90: + 36:c6:d8:2f:da:91:aa:68:c5:72:fe:17:0a:b2:17: + 7e:79:b5:32:88:70:ca:70:c0:96:4a:8e:e4:55:cd: + 1d:27:94:bf:ce:72:2a:ec:5c:f9:73:20:fe:bd:f7: + 2e:89:67:b8:bb:47:73:12:f7:d1:35:69:3a:f2:0a: + b9:ae:ff:46:42:46:a2:bf:a1:85:1a:f9:bf:e4:ff: + 49:85:f7:a3:70:86:32:1c:5d:9f:60:f7:a9:ad:a5: + ff:cf:d1:34:f9:7d:5b:17:c6:dc:d6:0e:28:6b:c2: + dd:f1:f5:33:68:9d:4e:fc:87:7c:36:12:d6:a3:80: + e8:43:0d:55:61:94:ea:64:37:47:ea:77:ca:d0:b2: + 58:05:c3:5d:7e:b1:a8:46:90:31:56:ce:70:2a:96: + b2:30:b8:77:e6:79:c0:bd:29:3b:fd:94:77:4c:bd: + 20:cd:41:25:e0:2e:c7:1b:bb:ee:a4:04:41:d2:5d: + ad:12:6a:8a:9b:47:fb:c9:dd:46:40:e1:9d:3c:33: + d0:b5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: + Non Repudiation, Certificate Sign, CRL Sign + X509v3 Certificate Policies: + Policy: 1.2.250.1.121.1.1.1 + + X509v3 Subject Key Identifier: + A3:05:2F:18:60:50:C2:89:0A:DD:2B:21:4F:FF:8E:4E:A8:30:31:36 + X509v3 Authority Key Identifier: + keyid:A3:05:2F:18:60:50:C2:89:0A:DD:2B:21:4F:FF:8E:4E:A8:30:31:36 + + Signature Algorithm: sha1WithRSAEncryption + 05:dc:26:d8:fa:77:15:44:68:fc:2f:66:3a:74:e0:5d:e4:29: + ff:06:07:13:84:4a:ab:cf:6d:a0:1f:51:94:f8:49:cb:74:36: + 14:bc:15:dd:db:89:2f:dd:8f:a0:5d:7c:f5:12:eb:9f:9e:38: + a4:47:cc:b3:96:d9:be:9c:25:ab:03:7e:33:0f:95:81:0d:fd: + 16:e0:88:be:37:f0:6c:5d:d0:31:9b:32:2b:5d:17:65:93:98: + 60:bc:6e:8f:b1:a8:3c:1e:d9:1c:f3:a9:26:42:f9:64:1d:c2: + e7:92:f6:f4:1e:5a:aa:19:52:5d:af:e8:a2:f7:60:a0:f6:8d: + f0:89:f5:6e:e0:0a:05:01:95:c9:8b:20:0a:ba:5a:fc:9a:2c: + 3c:bd:c3:b7:c9:5d:78:25:05:3f:56:14:9b:0c:da:fb:3a:48: + fe:97:69:5e:ca:10:86:f7:4e:96:04:08:4d:ec:b0:be:5d:dc: + 3b:8e:4f:c1:fd:9a:36:34:9a:4c:54:7e:17:03:48:95:08:11: + 1c:07:6f:85:08:7e:5d:4d:c4:9d:db:fb:ae:ce:b2:d1:b3:b8: + 83:6c:1d:b2:b3:79:f1:d8:70:99:7e:f0:13:02:ce:5e:dd:51: + d3:df:36:81:a1:1b:78:2f:71:b3:f1:59:4c:46:18:28:ab:85: + d2:60:56:5a +SHA1 Fingerprint=60:D6:89:74:B5:C2:65:9E:8A:0F:C1:88:7C:88:D2:46:69:1B:18:2C +-----BEGIN CERTIFICATE----- +MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYT +AkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQ +TS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG +9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMB4XDTAyMTIxMzE0MjkyM1oXDTIw +MTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAM +BgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEO +MAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2 +LmZyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaI +s9z4iPf930Pfeo2aSVz2TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2 +xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCWSo7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4 +u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYyHF2fYPepraX/z9E0+X1b +F8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNdfrGoRpAx +Vs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGd +PDPQtQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNV +HSAEDjAMMAoGCCqBegF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAx +NjAfBgNVHSMEGDAWgBSjBS8YYFDCiQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUF +AAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RKq89toB9RlPhJy3Q2FLwV3duJ +L92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3QMZsyK10XZZOY +YLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg +Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2a +NjSaTFR+FwNIlQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R +0982gaEbeC9xs/FZTEYYKKuF0mBWWg== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 0 (0x0) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication EV RootCA1 + Validity + Not Before: Jun 6 02:12:32 2007 GMT + Not After : Jun 6 02:12:32 2037 GMT + Subject: C=JP, O=SECOM Trust Systems CO.,LTD., OU=Security Communication EV RootCA1 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:bc:7f:ec:57:9b:24:e0:fe:9c:ba:42:79:a9:88: + 8a:fa:80:e0:f5:07:29:43:ea:8e:0a:34:36:8d:1c: + fa:a7:b5:39:78:ff:97:75:f7:2f:e4:aa:6b:04:84: + 44:ca:a6:e2:68:8e:fd:55:50:62:0f:a4:71:0e:ce: + 07:38:2d:42:85:50:ad:3c:96:6f:8b:d5:a2:0e:cf: + de:49:89:3d:d6:64:2e:38:e5:1e:6c:b5:57:8a:9e: + ef:48:0e:cd:7a:69:16:87:44:b5:90:e4:06:9d:ae: + a1:04:97:58:79:ef:20:4a:82:6b:8c:22:bf:ec:1f: + 0f:e9:84:71:ed:f1:0e:e4:b8:18:13:cc:56:36:5d: + d1:9a:1e:51:6b:39:6e:60:76:88:34:0b:f3:b3:d1: + b0:9d:ca:61:e2:64:1d:c1:46:07:b8:63:dd:1e:33: + 65:b3:8e:09:55:52:3d:b5:bd:ff:07:eb:ad:61:55: + 18:2c:a9:69:98:4a:aa:40:c5:33:14:65:74:00:f9: + 91:de:af:03:48:c5:40:54:dc:0f:84:90:68:20:c5: + 92:96:dc:2e:e5:02:45:aa:c0:5f:54:f8:6d:ea:49: + cf:5d:6c:4b:af:ef:9a:c2:56:5c:c6:35:56:42:6a: + 30:5f:c2:ab:f6:e2:3d:3f:b3:c9:11:8f:31:4c:d7: + 9f:49 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 35:4A:F5:4D:AF:3F:D7:82:38:AC:AB:71:65:17:75:8C:9D:55:93:E6 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + Signature Algorithm: sha1WithRSAEncryption + a8:87:e9:ec:f8:40:67:5d:c3:c1:66:c7:40:4b:97:fc:87:13: + 90:5a:c4:ef:a0:ca:5f:8b:b7:a7:b7:f1:d6:b5:64:b7:8a:b3: + b8:1b:cc:da:fb:ac:66:88:41:ce:e8:fc:e4:db:1e:88:a6:ed: + 27:50:1b:02:30:24:46:79:fe:04:87:70:97:40:73:d1:c0:c1: + 57:19:9a:69:a5:27:99:ab:9d:62:84:f6:51:c1:2c:c9:23:15: + d8:28:b7:ab:25:13:b5:46:e1:86:02:ff:26:8c:c4:88:92:1d: + 56:fe:19:67:f2:55:e4:80:a3:6b:9c:ab:77:e1:51:71:0d:20: + db:10:9a:db:bd:76:79:07:77:99:28:ad:9a:5e:da:b1:4f:44: + 2c:35:8e:a5:96:c7:fd:83:f0:58:c6:79:d6:98:7c:a8:8d:fe: + 86:3e:07:16:92:e1:7b:e7:1d:ec:33:76:7e:42:2e:4a:85:f9: + 91:89:68:84:03:81:a5:9b:9a:be:e3:37:c5:54:ab:56:3b:18: + 2d:41:a4:0c:f8:42:db:99:a0:e0:72:6f:bb:5d:e1:16:4f:53: + 0a:64:f9:4e:f4:bf:4e:54:bd:78:6c:88:ea:bf:9c:13:24:c2: + 70:69:a2:7f:0f:c8:3c:ad:08:c9:b0:98:40:a3:2a:e7:88:83: + ed:77:8f:74 +SHA1 Fingerprint=FE:B8:C4:32:DC:F9:76:9A:CE:AE:3D:D8:90:8F:FD:28:86:65:64:7D +-----BEGIN CERTIFICATE----- +MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMh +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIz +MloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09N +IFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNlY3VyaXR5IENvbW11 +bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSE +RMqm4miO/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gO +zXppFodEtZDkBp2uoQSXWHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5 +bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4zZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDF +MxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4bepJz11sS6/vmsJWXMY1 +VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK9U2vP9eC +OKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G +CSqGSIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HW +tWS3irO4G8za+6xmiEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZ +q51ihPZRwSzJIxXYKLerJRO1RuGGAv8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDb +EJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnWmHyojf6GPgcWkuF75x3sM3Z+ +Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEWT1MKZPlO9L9O +VL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 41:3d:72:c7:f4:6b:1f:81:43:7d:f1:d2:28:54:df:9a + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA + Validity + Not Before: Dec 11 16:03:44 2005 GMT + Not After : Dec 11 16:09:51 2037 GMT + Subject: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:cb:4f:b3:00:9b:3d:36:dd:f9:d1:49:6a:6b:10: + 49:1f:ec:d8:2b:b2:c6:f8:32:81:29:43:95:4c:9a: + 19:23:21:15:45:de:e3:c8:1c:51:55:5b:ae:93:e8: + 37:ff:2b:6b:e9:d4:ea:be:2a:dd:a8:51:2b:d7:66: + c3:61:5c:60:02:c8:f5:ce:72:7b:3b:b8:f2:4e:65: + 08:9a:cd:a4:6a:19:c1:01:bb:73:a6:d7:f6:c3:dd: + cd:bc:a4:8b:b5:99:61:b8:01:a2:a3:d4:4d:d4:05: + 3d:91:ad:f8:b4:08:71:64:af:70:f1:1c:6b:7e:f6: + c3:77:9d:24:73:7b:e4:0c:8c:e1:d9:36:e1:99:8b: + 05:99:0b:ed:45:31:09:ca:c2:00:db:f7:72:a0:96: + aa:95:87:d0:8e:c7:b6:61:73:0d:76:66:8c:dc:1b: + b4:63:a2:9f:7f:93:13:30:f1:a1:27:db:d9:ff:2c: + 55:88:91:a0:e0:4f:07:b0:28:56:8c:18:1b:97:44: + 8e:89:dd:e0:17:6e:e7:2a:ef:8f:39:0a:31:84:82: + d8:40:14:49:2e:7a:41:e4:a7:fe:e3:64:cc:c1:59: + 71:4b:2c:21:a7:5b:7d:e0:1d:d1:2e:81:9b:c3:d8: + 68:f7:bd:96:1b:ac:70:b1:16:14:0b:db:60:b9:26: + 01:05 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: + Digital Signature, Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B3:03:7E:AE:36:BC:B0:79:D1:DC:94:26:B6:11:BE:21:B2:69:86:94 + 1.3.6.1.4.1.311.21.1: + ... + Signature Algorithm: sha1WithRSAEncryption + 4b:a1:ff:0b:87:6e:b3:f9:c1:43:b1:48:f3:28:c0:1d:2e:c9: + 09:41:fa:94:00:1c:a4:a4:ab:49:4f:8f:3d:1e:ef:4d:6f:bd: + bc:a4:f6:f2:26:30:c9:10:ca:1d:88:fb:74:19:1f:85:45:bd: + b0:6c:51:f9:36:7e:db:f5:4c:32:3a:41:4f:5b:47:cf:e8:0b: + 2d:b6:c4:19:9d:74:c5:47:c6:3b:6a:0f:ac:14:db:3c:f4:73: + 9c:a9:05:df:00:dc:74:78:fa:f8:35:60:59:02:13:18:7c:bc: + fb:4d:b0:20:6d:43:bb:60:30:7a:67:33:5c:c5:99:d1:f8:2d: + 39:52:73:fb:8c:aa:97:25:5c:72:d9:08:1e:ab:4e:3c:e3:81: + 31:9f:03:a6:fb:c0:fe:29:88:55:da:84:d5:50:03:b6:e2:84: + a3:a6:36:aa:11:3a:01:e1:18:4b:d6:44:68:b3:3d:f9:53:74: + 84:b3:46:91:46:96:00:b7:80:2c:b6:e1:e3:10:e2:db:a2:e7: + 28:8f:01:96:62:16:3e:00:e3:1c:a5:36:81:18:a2:4c:52:76: + c0:11:a3:6e:e6:1d:ba:e3:5a:be:36:53:c5:3e:75:8f:86:69: + 29:58:53:b5:9c:bb:6f:9f:5c:c5:18:ec:dd:2f:e1:98:c9:fc: + be:df:0a:0d +SHA1 Fingerprint=59:22:A1:E1:5A:EA:16:35:21:F8:98:39:6A:46:46:B0:44:1B:0F:A9 +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB +ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly +aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl +ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w +NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G +A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD +VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX +SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR +VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 +w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF +mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg +4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 +4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw +EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx +SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 +ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 +vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi +Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ +/L7fCg0= +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 37:19:18:e6:53:54:7c:1a:b5:b8:cb:59:5a:db:35:b7 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, ST=Baden-Wuerttemberg (BW), L=Stuttgart, O=Deutscher Sparkassen Verlag GmbH, CN=S-TRUST Authentication and Encryption Root CA 2005:PN + Validity + Not Before: Jun 22 00:00:00 2005 GMT + Not After : Jun 21 23:59:59 2030 GMT + Subject: C=DE, ST=Baden-Wuerttemberg (BW), L=Stuttgart, O=Deutscher Sparkassen Verlag GmbH, CN=S-TRUST Authentication and Encryption Root CA 2005:PN + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:d9:b5:4a:c1:d3:33:ea:d3:46:b3:d1:e2:4c:d2: + f5:b6:83:d0:6f:d5:18:e9:93:af:27:8e:13:cd:b5: + 25:36:50:34:12:64:29:a1:55:e1:3a:60:93:9e:28: + c9:e3:f3:9b:e1:04:b0:23:bf:95:8a:8e:5b:1b:41: + 7f:5a:c3:e8:4d:4c:d5:24:16:3e:87:48:d4:27:ae: + e6:f7:53:1d:bb:0c:00:ef:3e:61:71:ad:bf:3a:7a: + 58:1f:94:3d:5c:81:d5:d5:6f:df:b8:9b:d2:f5:e5: + cb:83:72:92:c2:53:b2:82:02:eb:ad:ad:5f:16:2d: + 92:53:76:f1:89:b6:2c:f5:c1:2f:e0:a7:4a:6f:a0: + 30:6a:32:eb:9a:74:03:68:78:13:9d:ca:2f:9b:0b: + 1d:be:cf:75:0d:26:97:9b:c7:f5:5e:0a:9f:78:df: + b3:bc:ec:9a:ba:ef:55:8f:1b:9a:a6:07:63:29:17: + 59:62:09:2a:79:07:77:a5:e0:d1:17:69:e9:5b:dd: + f6:90:ab:e2:98:0a:00:d1:25:6d:9e:d7:85:87:2f: + 92:f1:d1:76:83:4f:0b:3a:59:37:28:2f:33:a7:17: + 50:d6:20:0b:0a:f4:26:f9:9f:38:e7:2d:a4:b8:9b: + 89:8d:ad:ad:c9:6a:7d:89:17:bb:f6:7f:80:83:7a: + e6:ed + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE, pathlen:0 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Alternative Name: + DirName:/CN=STRonline1-2048-5 + X509v3 Subject Key Identifier: + 0F:CA:1E:5C:79:E0:A2:F3:29:B6:D2:85:B3:0B:4A:B5:65:EC:6B:52 + X509v3 Authority Key Identifier: + keyid:0F:CA:1E:5C:79:E0:A2:F3:29:B6:D2:85:B3:0B:4A:B5:65:EC:6B:52 + + Signature Algorithm: sha1WithRSAEncryption + af:01:f0:ed:19:3c:28:e8:4d:5c:bb:a5:63:1c:88:33:03:a7: + 00:87:a4:1f:20:ab:d6:1c:e3:06:1f:97:7e:54:bd:b7:d1:b2: + c9:d5:da:80:ec:17:d7:8a:f5:7b:c2:00:f6:e9:11:6f:84:a0: + 5a:25:31:e2:89:f9:a4:00:3f:31:68:2e:d5:3d:e8:6e:e6:d5: + 1d:3c:3f:b2:bd:9f:77:eb:9d:d3:8c:ba:c0:d7:b6:4d:ec:53: + 9c:0f:04:6e:ea:35:67:57:e3:0a:65:7b:90:3a:e1:4f:3e:c3: + 00:92:7a:bb:05:89:73:8c:cb:a6:4d:c0:fb:f6:02:d6:b0:07: + a3:03:c2:27:40:9f:0c:e4:85:82:2d:af:9a:42:1d:d0:c7:8d: + f8:40:ee:9d:06:57:1c:d9:a2:d8:80:14:fe:e1:63:2d:32:87: + d5:94:52:96:3a:46:c6:71:96:3d:f7:98:0e:b2:91:aa:8f:da: + f4:4e:24:00:39:55:e8:ad:17:b9:d3:34:2b:4a:a9:40:cc:17: + 2a:55:65:41:74:42:7e:f5:c0:af:c8:93:ad:f2:18:5b:3d:89: + 0c:db:47:39:24:f8:e0:4c:f2:1f:b0:3d:0a:ca:05:4e:89:21: + 1a:e3:2a:99:ac:fc:7f:a1:f1:0f:1b:1f:3d:9e:04:83:dd:96: + d9:1d:3a:94 +SHA1 Fingerprint=BE:B5:A9:95:74:6B:9E:DF:73:8B:56:E6:DF:43:7A:77:BE:10:6B:81 +-----BEGIN CERTIFICATE----- +MIIEezCCA2OgAwIBAgIQNxkY5lNUfBq1uMtZWts1tzANBgkqhkiG9w0BAQUFADCB +rjELMAkGA1UEBhMCREUxIDAeBgNVBAgTF0JhZGVuLVd1ZXJ0dGVtYmVyZyAoQlcp +MRIwEAYDVQQHEwlTdHV0dGdhcnQxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fz +c2VuIFZlcmxhZyBHbWJIMT4wPAYDVQQDEzVTLVRSVVNUIEF1dGhlbnRpY2F0aW9u +IGFuZCBFbmNyeXB0aW9uIFJvb3QgQ0EgMjAwNTpQTjAeFw0wNTA2MjIwMDAwMDBa +Fw0zMDA2MjEyMzU5NTlaMIGuMQswCQYDVQQGEwJERTEgMB4GA1UECBMXQmFkZW4t +V3VlcnR0ZW1iZXJnIChCVykxEjAQBgNVBAcTCVN0dXR0Z2FydDEpMCcGA1UEChMg +RGV1dHNjaGVyIFNwYXJrYXNzZW4gVmVybGFnIEdtYkgxPjA8BgNVBAMTNVMtVFJV +U1QgQXV0aGVudGljYXRpb24gYW5kIEVuY3J5cHRpb24gUm9vdCBDQSAyMDA1OlBO +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2bVKwdMz6tNGs9HiTNL1 +toPQb9UY6ZOvJ44TzbUlNlA0EmQpoVXhOmCTnijJ4/Ob4QSwI7+Vio5bG0F/WsPo +TUzVJBY+h0jUJ67m91MduwwA7z5hca2/OnpYH5Q9XIHV1W/fuJvS9eXLg3KSwlOy +ggLrra1fFi2SU3bxibYs9cEv4KdKb6AwajLrmnQDaHgTncovmwsdvs91DSaXm8f1 +XgqfeN+zvOyauu9VjxuapgdjKRdZYgkqeQd3peDRF2npW932kKvimAoA0SVtnteF +hy+S8dF2g08LOlk3KC8zpxdQ1iALCvQm+Z845y2kuJuJja2tyWp9iRe79n+Ag3rm +7QIDAQABo4GSMIGPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgEG +MCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFTVFJvbmxpbmUxLTIwNDgtNTAdBgNV +HQ4EFgQUD8oeXHngovMpttKFswtKtWXsa1IwHwYDVR0jBBgwFoAUD8oeXHngovMp +ttKFswtKtWXsa1IwDQYJKoZIhvcNAQEFBQADggEBAK8B8O0ZPCjoTVy7pWMciDMD +pwCHpB8gq9Yc4wYfl35UvbfRssnV2oDsF9eK9XvCAPbpEW+EoFolMeKJ+aQAPzFo +LtU96G7m1R08P7K9n3frndOMusDXtk3sU5wPBG7qNWdX4wple5A64U8+wwCSersF +iXOMy6ZNwPv2AtawB6MDwidAnwzkhYItr5pCHdDHjfhA7p0GVxzZotiAFP7hYy0y +h9WUUpY6RsZxlj33mA6ykaqP2vROJAA5VeitF7nTNCtKqUDMFypVZUF0Qn71wK/I +k63yGFs9iQzbRzkk+OBM8h+wPQrKBU6JIRrjKpms/H+h8Q8bHz2eBIPdltkdOpQ= +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + cc:b8:e7:bf:4e:29:1a:fd:a2:dc:66:a5:1c:2c:0f:11 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=HU, L=Budapest, O=Microsec Ltd., OU=e-Szigno CA, CN=Microsec e-Szigno Root CA + Validity + Not Before: Apr 6 12:28:44 2005 GMT + Not After : Apr 6 12:28:44 2017 GMT + Subject: C=HU, L=Budapest, O=Microsec Ltd., OU=e-Szigno CA, CN=Microsec e-Szigno Root CA + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:ed:c8:00:d5:81:7b:cd:38:00:47:cc:db:84:c1: + 21:69:2c:74:90:0c:21:d9:53:87:ed:3e:43:44:53: + af:ab:f8:80:9b:3c:78:8d:d4:8d:ae:b8:ef:d3:11: + dc:81:e6:cf:3b:96:8c:d6:6f:15:c6:77:7e:a1:2f: + e0:5f:92:b6:27:d7:76:9a:1d:43:3c:ea:d9:ec:2f: + ee:39:f3:6a:67:4b:8b:82:cf:22:f8:65:55:fe:2c: + cb:2f:7d:48:7a:3d:75:f9:aa:a0:27:bb:78:c2:06: + ca:51:c2:7e:66:4b:af:cd:a2:a7:4d:02:82:3f:82: + ac:85:c6:e1:0f:90:47:99:94:0a:71:72:93:2a:c9: + a6:c0:be:3c:56:4c:73:92:27:f1:6b:b5:f5:fd:fc: + 30:05:60:92:c6:eb:96:7e:01:91:c2:69:b1:1e:1d: + 7b:53:45:b8:dc:41:1f:c9:8b:71:d6:54:14:e3:8b: + 54:78:3f:be:f4:62:3b:5b:f5:a3:ec:d5:92:74:e2: + 74:30:ef:01:db:e1:d4:ab:99:9b:2a:6b:f8:bd:a6: + 1c:86:23:42:5f:ec:49:de:9a:8b:5b:f4:72:3a:40: + c5:49:3e:a5:be:8e:aa:71:eb:6c:fa:f5:1a:e4:6a: + fd:7b:7d:55:40:ef:58:6e:e6:d9:d5:bc:24:ab:c1: + ef:b7 + Exponent: 65537 (0x10001) + X509v3 extensions: + Authority Information Access: + OCSP - URI:https://rca.e-szigno.hu/ocsp + CA Issuers - URI:http://www.e-szigno.hu/RootCA.crt + + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Certificate Policies: + Policy: 1.3.6.1.4.1.21528.2.1.1.1 + CPS: http://www.e-szigno.hu/SZSZ/ + User Notice: + Explicit Text: + + X509v3 CRL Distribution Points: + URI:http://www.e-szigno.hu/RootCA.crl + URI:ldap://ldap.e-szigno.hu/CN=Microsec%20e-Szigno%20Root%20CA,OU=e-Szigno%20CA,O=Microsec%20Ltd.,L=Budapest,C=HU?certificateRevocationList;binary + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Alternative Name: + email:info at e-szigno.hu, DirName:/CN=Microsec e-Szign\xC3\xB3 Root CA/OU=e-Szign\xC3\xB3 HSZ/O=Microsec Kft./L=Budapest/C=HU + X509v3 Authority Key Identifier: + keyid:C7:A0:49:75:16:61:84:DB:31:4B:84:D2:F1:37:40:90:EF:4E:DC:F7 + DirName:/C=HU/L=Budapest/O=Microsec Ltd./OU=e-Szigno CA/CN=Microsec e-Szigno Root CA + serial:CC:B8:E7:BF:4E:29:1A:FD:A2:DC:66:A5:1C:2C:0F:11 + + X509v3 Subject Key Identifier: + C7:A0:49:75:16:61:84:DB:31:4B:84:D2:F1:37:40:90:EF:4E:DC:F7 + Signature Algorithm: sha1WithRSAEncryption + d3:13:9c:66:63:59:2e:ca:5c:70:0c:fc:83:bc:55:b1:f4:8e: + 07:6c:66:27:ce:c1:3b:20:a9:1c:bb:46:54:70:ee:5a:cc:a0: + 77:ea:68:44:27:eb:f2:29:dd:77:a9:d5:fb:e3:d4:a7:04:c4: + 95:b8:0b:e1:44:68:60:07:43:30:31:42:61:e5:ee:d9:e5:24: + d5:1b:df:e1:4a:1b:aa:9f:c7:5f:f8:7a:11:ea:13:93:00:ca: + 8a:58:b1:ee:ed:0e:4d:b4:d7:a8:36:26:7c:e0:3a:c1:d5:57: + 82:f1:75:b6:fd:89:5f:da:f3:a8:38:9f:35:06:08:ce:22:95: + be:cd:d5:fc:be:5b:de:79:6b:dc:7a:a9:65:66:be:b1:25:5a: + 5f:ed:7e:d3:ac:46:6d:4c:f4:32:87:b4:20:04:e0:6c:78:b0: + 77:d1:85:46:4b:a6:12:b7:75:e8:4a:c9:56:6c:d7:92:ab:9d: + f5:49:38:d2:4f:53:e3:55:90:11:db:98:96:c6:49:f2:3e:f4: + 9f:1b:e0:f7:88:dc:25:62:99:44:d8:73:bf:3f:30:f3:0c:37: + 3e:d4:c2:28:80:73:b1:01:b7:9d:5a:96:14:01:4b:a9:11:9d: + 29:6a:2e:d0:5d:81:c0:cf:b2:20:43:c7:03:e0:37:4e:5d:0a: + dc:59:20:25 +SHA1 Fingerprint=23:88:C9:D3:71:CC:9E:96:3D:FF:7D:3C:A7:CE:FC:D6:25:EC:19:0D +-----BEGIN CERTIFICATE----- +MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAw +cjELMAkGA1UEBhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNy +b3NlYyBMdGQuMRQwEgYDVQQLEwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9z +ZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0MDYxMjI4NDRaFw0xNzA0MDYxMjI4 +NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVzdDEWMBQGA1UEChMN +TWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMTGU1p +Y3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2u +uO/TEdyB5s87lozWbxXGd36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+ +LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/NoqdNAoI/gqyFxuEPkEeZlApxcpMqyabA +vjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjcQR/Ji3HWVBTji1R4P770 +Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJPqW+jqpx +62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcB +AQRbMFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3Aw +LQYIKwYBBQUHMAKGIWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAP +BgNVHRMBAf8EBTADAQH/MIIBcwYDVR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIB +AQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3LmUtc3ppZ25vLmh1L1NaU1ov +MIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0AdAB2AOEAbgB5 +ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn +AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABT +AHoAbwBsAGcA4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABh +ACAAcwB6AGUAcgBpAG4AdAAgAGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABo +AHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMAegBpAGcAbgBvAC4AaAB1AC8AUwBa +AFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6Ly93d3cuZS1zemln +bm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NOPU1p +Y3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxP +PU1pY3Jvc2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZv +Y2F0aW9uTGlzdDtiaW5hcnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuB +EGluZm9AZS1zemlnbm8uaHWkdzB1MSMwIQYDVQQDDBpNaWNyb3NlYyBlLVN6aWdu +w7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhTWjEWMBQGA1UEChMNTWlj +cm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhVMIGsBgNV +HSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJI +VTERMA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDAS +BgNVBAsTC2UtU3ppZ25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBS +b290IENBghEAzLjnv04pGv2i3GalHCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS +8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMTnGZjWS7KXHAM/IO8VbH0jgds +ZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FEaGAHQzAxQmHl +7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a +86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfR +hUZLphK3dehKyVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/ +MPMMNz7UwiiAc7EBt51alhQBS6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + fe:dc:e3:01:0f:c9:48:ff + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=FR, O=Dhimyotis, CN=Certigna + Validity + Not Before: Jun 29 15:13:05 2007 GMT + Not After : Jun 29 15:13:05 2027 GMT + Subject: C=FR, O=Dhimyotis, CN=Certigna + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:c8:68:f1:c9:d6:d6:b3:34:75:26:82:1e:ec:b4: + be:ea:5c:e1:26:ed:11:47:61:e1:a2:7c:16:78:40: + 21:e4:60:9e:5a:c8:63:e1:c4:b1:96:92:ff:18:6d: + 69:23:e1:2b:62:f7:dd:e2:36:2f:91:07:b9:48:cf: + 0e:ec:79:b6:2c:e7:34:4b:70:08:25:a3:3c:87:1b: + 19:f2:81:07:0f:38:90:19:d3:11:fe:86:b4:f2:d1: + 5e:1e:1e:96:cd:80:6c:ce:3b:31:93:b6:f2:a0:d0: + a9:95:12:7d:a5:9a:cc:6b:c8:84:56:8a:33:a9:e7: + 22:15:53:16:f0:cc:17:ec:57:5f:e9:a2:0a:98:09: + de:e3:5f:9c:6f:dc:48:e3:85:0b:15:5a:a6:ba:9f: + ac:48:e3:09:b2:f7:f4:32:de:5e:34:be:1c:78:5d: + 42:5b:ce:0e:22:8f:4d:90:d7:7d:32:18:b3:0b:2c: + 6a:bf:8e:3f:14:11:89:20:0e:77:14:b5:3d:94:08: + 87:f7:25:1e:d5:b2:60:00:ec:6f:2a:28:25:6e:2a: + 3e:18:63:17:25:3f:3e:44:20:16:f6:26:c8:25:ae: + 05:4a:b4:e7:63:2c:f3:8c:16:53:7e:5c:fb:11:1a: + 08:c1:46:62:9f:22:b8:f1:c2:8d:69:dc:fa:3a:58: + 06:df + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + 1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 + X509v3 Authority Key Identifier: + keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 + DirName:/C=FR/O=Dhimyotis/CN=Certigna + serial:FE:DC:E3:01:0F:C9:48:FF + + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Netscape Cert Type: + SSL CA, S/MIME CA, Object Signing CA + Signature Algorithm: sha1WithRSAEncryption + 85:03:1e:92:71:f6:42:af:e1:a3:61:9e:eb:f3:c0:0f:f2:a5: + d4:da:95:e6:d6:be:68:36:3d:7e:6e:1f:4c:8a:ef:d1:0f:21: + 6d:5e:a5:52:63:ce:12:f8:ef:2a:da:6f:eb:37:fe:13:02:c7: + cb:3b:3e:22:6b:da:61:2e:7f:d4:72:3d:dd:30:e1:1e:4c:40: + 19:8c:0f:d7:9c:d1:83:30:7b:98:59:dc:7d:c6:b9:0c:29:4c: + a1:33:a2:eb:67:3a:65:84:d3:96:e2:ed:76:45:70:8f:b5:2b: + de:f9:23:d6:49:6e:3c:14:b5:c6:9f:35:1e:50:d0:c1:8f:6a: + 70:44:02:62:cb:ae:1d:68:41:a7:aa:57:e8:53:aa:07:d2:06: + f6:d5:14:06:0b:91:03:75:2c:6c:72:b5:61:95:9a:0d:8b:b9: + 0d:e7:f5:df:54:cd:de:e6:d8:d6:09:08:97:63:e5:c1:2e:b0: + b7:44:26:c0:26:c0:af:55:30:9e:3b:d5:36:2a:19:04:f4:5c: + 1e:ff:cf:2c:b7:ff:d0:fd:87:40:11:d5:11:23:bb:48:c0:21: + a9:a4:28:2d:fd:15:f8:b0:4e:2b:f4:30:5b:21:fc:11:91:34: + be:41:ef:7b:9d:97:75:ff:97:95:c0:96:58:2f:ea:bb:46:d7: + bb:e4:d9:2e +SHA1 Fingerprint=B1:2E:13:63:45:86:A4:6F:1A:B2:60:68:37:58:2D:C4:AC:FD:94:97 +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 07:7e:52:93:7b:e0:15:e3:57:f0:69:8c:cb:ec:0c + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=CO, O=Sociedad Cameral de Certificaci\xC3\xB3n Digital - Certic\xC3\xA1mara S.A., CN=AC Ra\xC3\xADz Certic\xC3\xA1mara S.A. + Validity + Not Before: Nov 27 20:46:29 2006 GMT + Not After : Apr 2 21:42:02 2030 GMT + Subject: C=CO, O=Sociedad Cameral de Certificaci\xC3\xB3n Digital - Certic\xC3\xA1mara S.A., CN=AC Ra\xC3\xADz Certic\xC3\xA1mara S.A. + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (4096 bit) + Modulus (4096 bit): + 00:ab:6b:89:a3:53:cc:48:23:08:fb:c3:cf:51:96: + 08:2e:b8:08:7a:6d:3c:90:17:86:a9:e9:ed:2e:13: + 34:47:b2:d0:70:dc:c9:3c:d0:8d:ca:ee:4b:17:ab: + d0:85:b0:a7:23:04:cb:a8:a2:fc:e5:75:db:40:ca: + 62:89:8f:50:9e:01:3d:26:5b:18:84:1c:cb:7c:37: + b7:7d:ec:d3:7f:73:19:b0:6a:b2:d8:88:8a:2d:45: + 74:a8:f7:b3:b8:c0:d4:da:cd:22:89:74:4d:5a:15: + 39:73:18:74:4f:b5:eb:99:a7:c1:1e:88:b4:c2:93: + 90:63:97:f3:a7:a7:12:b2:09:22:07:33:d9:91:cd: + 0e:9c:1f:0e:20:c7:ee:bb:33:8d:8f:c2:d2:58:a7: + 5f:fd:65:37:e2:88:c2:d8:8f:86:75:5e:f9:2d:a7: + 87:33:f2:78:37:2f:8b:bc:1d:86:37:39:b1:94:f2: + d8:bc:4a:9c:83:18:5a:06:fc:f3:d4:d4:ba:8c:15: + 09:25:f0:f9:b6:8d:04:7e:17:12:33:6b:57:48:4c: + 4f:db:26:1e:eb:cc:90:e7:8b:f9:68:7c:70:0f:a3: + 2a:d0:3a:38:df:37:97:e2:5b:de:80:61:d3:80:d8: + 91:83:42:5a:4c:04:89:68:11:3c:ac:5f:68:80:41: + cc:60:42:ce:0d:5a:2a:0c:0f:9b:30:c0:a6:f0:86: + db:ab:49:d7:97:6d:48:8b:f9:03:c0:52:67:9b:12: + f7:c2:f2:2e:98:65:42:d9:d6:9a:e3:d0:19:31:0c: + ad:87:d5:57:02:7a:30:e8:86:26:fb:8f:23:8a:54: + 87:e4:bf:3c:ee:eb:c3:75:48:5f:1e:39:6f:81:62: + 6c:c5:2d:c4:17:54:19:b7:37:8d:9c:37:91:c8:f6: + 0b:d5:ea:63:6f:83:ac:38:c2:f3:3f:de:9a:fb:e1: + 23:61:f0:c8:26:cb:36:c8:a1:f3:30:8f:a4:a3:a2: + a1:dd:53:b3:de:f0:9a:32:1f:83:91:79:30:c1:a9: + 1f:53:9b:53:a2:15:53:3f:dd:9d:b3:10:3b:48:7d: + 89:0f:fc:ed:03:f5:fb:25:64:75:0e:17:19:0d:8f: + 00:16:67:79:7a:40:fc:2d:59:07:d9:90:fa:9a:ad: + 3d:dc:80:8a:e6:5c:35:a2:67:4c:11:6b:b1:f8:80: + 64:00:2d:6f:22:61:c5:ac:4b:26:e5:5a:10:82:9b: + a4:83:7b:34:f7:9e:89:91:20:97:8e:b7:42:c7:66: + c3:d0:e9:a4:d6:f5:20:8d:c4:c3:95:ac:44:0a:9d: + 5b:73:3c:26:3d:2f:4a:be:a7:c9:a7:10:1e:fb:9f: + 50:69:f3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + D1:09:D0:E9:D7:CE:79:74:54:F9:3A:30:B3:F4:6D:2C:03:03:1B:68 + X509v3 Certificate Policies: + Policy: X509v3 Any Policy + CPS: http://www.certicamara.com/dpc/ + User Notice: + Explicit Text: Limitaciones de garant?as de este certificado se pueden encontrar en la DPC. + + Signature Algorithm: sha1WithRSAEncryption + 5c:94:b5:b8:45:91:4d:8e:61:1f:03:28:0f:53:7c:e6:a4:59: + a9:b3:8a:7a:c5:b0:ff:08:7c:2c:a3:71:1c:21:13:67:a1:95: + 12:40:35:83:83:8f:74:db:33:5c:f0:49:76:0a:81:52:dd:49: + d4:9a:32:33:ef:9b:a7:cb:75:e5:7a:cb:97:12:90:5c:ba:7b: + c5:9b:df:bb:39:23:c8:ff:98:ce:0a:4d:22:01:48:07:7e:8a: + c0:d5:20:42:94:44:ef:bf:77:a2:89:67:48:1b:40:03:05:a1: + 89:ec:cf:62:e3:3d:25:76:66:bf:26:b7:bb:22:be:6f:ff:39: + 57:74:ba:7a:c9:01:95:c1:95:51:e8:ab:2c:f8:b1:86:20:e9: + 3f:cb:35:5b:d2:17:e9:2a:fe:83:13:17:40:ee:88:62:65:5b: + d5:3b:60:e9:7b:3c:b8:c9:d5:7f:36:02:25:aa:68:c2:31:15: + b7:30:65:eb:7f:1d:48:79:b1:cf:39:e2:42:80:16:d3:f5:93: + 23:fc:4c:97:c9:5a:37:6c:7c:22:d8:4a:cd:d2:8e:36:83:39: + 91:90:10:c8:f1:c9:35:7e:3f:b8:d3:81:c6:20:64:1a:b6:50: + c2:21:a4:78:dc:d0:2f:3b:64:93:74:f0:96:90:f1:ef:fb:09: + 5a:34:40:96:f0:36:12:c1:a3:74:8c:93:7e:41:de:77:8b:ec: + 86:d9:d2:0f:3f:2d:d1:cc:40:a2:89:66:48:1e:20:b3:9c:23: + 59:73:a9:44:73:bc:24:79:90:56:37:b3:c6:29:7e:a3:0f:f1: + 29:39:ef:7e:5c:28:32:70:35:ac:da:b8:c8:75:66:fc:9b:4c: + 39:47:8e:1b:6f:9b:4d:02:54:22:33:ef:61:ba:9e:29:84:ef: + 4e:4b:33:47:76:97:6a:cb:7e:5f:fd:15:a6:9e:42:43:5b:66: + 5a:8a:88:0d:f7:16:b9:3f:51:65:2b:66:6a:8b:d1:38:52:a2: + d6:46:11:fa:fc:9a:1c:74:9e:8f:97:0b:02:4f:64:c6:f5:68: + d3:4b:2d:ff:a4:37:1e:8b:3f:bf:44:be:61:46:a1:84:3d:08: + 27:4c:81:20:77:89:08:ea:67:40:5e:6c:08:51:5f:34:5a:8c: + 96:68:cd:d7:f7:89:c2:1c:d3:32:00:af:52:cb:d3:60:5b:2a: + 3a:47:7e:6b:30:33:a1:62:29:7f:4a:b9:e1:2d:e7:14:23:0e: + 0e:18:47:e1:79:fc:15:55:d0:b1:fc:25:71:63:75:33:1c:23: + 2b:af:5c:d9:ed:47:77:60:0e:3b:0f:1e:d2:c0:dc:64:05:89: + fc:78:d6:5c:2c:26:43:a9 +SHA1 Fingerprint=CB:A1:C5:F8:B0:E3:5E:B8:B9:45:12:D3:F9:34:A2:E9:06:10:D3:36 +-----BEGIN CERTIFICATE----- +MIIGZjCCBE6gAwIBAgIPB35Sk3vgFeNX8GmMy+wMMA0GCSqGSIb3DQEBBQUAMHsx +CzAJBgNVBAYTAkNPMUcwRQYDVQQKDD5Tb2NpZWRhZCBDYW1lcmFsIGRlIENlcnRp +ZmljYWNpw7NuIERpZ2l0YWwgLSBDZXJ0aWPDoW1hcmEgUy5BLjEjMCEGA1UEAwwa +QUMgUmHDrXogQ2VydGljw6FtYXJhIFMuQS4wHhcNMDYxMTI3MjA0NjI5WhcNMzAw +NDAyMjE0MjAyWjB7MQswCQYDVQQGEwJDTzFHMEUGA1UECgw+U29jaWVkYWQgQ2Ft +ZXJhbCBkZSBDZXJ0aWZpY2FjacOzbiBEaWdpdGFsIC0gQ2VydGljw6FtYXJhIFMu +QS4xIzAhBgNVBAMMGkFDIFJhw616IENlcnRpY8OhbWFyYSBTLkEuMIICIjANBgkq +hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq2uJo1PMSCMI+8PPUZYILrgIem08kBeG +qentLhM0R7LQcNzJPNCNyu5LF6vQhbCnIwTLqKL85XXbQMpiiY9QngE9JlsYhBzL +fDe3fezTf3MZsGqy2IiKLUV0qPezuMDU2s0iiXRNWhU5cxh0T7XrmafBHoi0wpOQ +Y5fzp6cSsgkiBzPZkc0OnB8OIMfuuzONj8LSWKdf/WU34ojC2I+GdV75LaeHM/J4 +Ny+LvB2GNzmxlPLYvEqcgxhaBvzz1NS6jBUJJfD5to0EfhcSM2tXSExP2yYe68yQ +54v5aHxwD6Mq0Do43zeX4lvegGHTgNiRg0JaTASJaBE8rF9ogEHMYELODVoqDA+b +MMCm8Ibbq0nXl21Ii/kDwFJnmxL3wvIumGVC2daa49AZMQyth9VXAnow6IYm+48j +ilSH5L887uvDdUhfHjlvgWJsxS3EF1QZtzeNnDeRyPYL1epjb4OsOMLzP96a++Ej +YfDIJss2yKHzMI+ko6Kh3VOz3vCaMh+DkXkwwakfU5tTohVTP92dsxA7SH2JD/zt +A/X7JWR1DhcZDY8AFmd5ekD8LVkH2ZD6mq093ICK5lw1omdMEWux+IBkAC1vImHF +rEsm5VoQgpukg3s0956JkSCXjrdCx2bD0Omk1vUgjcTDlaxECp1bczwmPS9KvqfJ +pxAe+59QafMCAwEAAaOB5jCB4zAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjAdBgNVHQ4EFgQU0QnQ6dfOeXRU+Tows/RtLAMDG2gwgaAGA1UdIASBmDCB +lTCBkgYEVR0gADCBiTArBggrBgEFBQcCARYfaHR0cDovL3d3dy5jZXJ0aWNhbWFy +YS5jb20vZHBjLzBaBggrBgEFBQcCAjBOGkxMaW1pdGFjaW9uZXMgZGUgZ2FyYW50 +7WFzIGRlIGVzdGUgY2VydGlmaWNhZG8gc2UgcHVlZGVuIGVuY29udHJhciBlbiBs +YSBEUEMuMA0GCSqGSIb3DQEBBQUAA4ICAQBclLW4RZFNjmEfAygPU3zmpFmps4p6 +xbD/CHwso3EcIRNnoZUSQDWDg4902zNc8El2CoFS3UnUmjIz75uny3XlesuXEpBc +unvFm9+7OSPI/5jOCk0iAUgHforA1SBClETvv3eiiWdIG0ADBaGJ7M9i4z0ldma/ +Jre7Ir5v/zlXdLp6yQGVwZVR6Kss+LGGIOk/yzVb0hfpKv6DExdA7ohiZVvVO2Dp +ezy4ydV/NgIlqmjCMRW3MGXrfx1IebHPOeJCgBbT9ZMj/EyXyVo3bHwi2ErN0o42 +gzmRkBDI8ck1fj+404HGIGQatlDCIaR43NAvO2STdPCWkPHv+wlaNECW8DYSwaN0 +jJN+Qd53i+yG2dIPPy3RzECiiWZIHiCznCNZc6lEc7wkeZBWN7PGKX6jD/EpOe9+ +XCgycDWs2rjIdWb8m0w5R44bb5tNAlQiM+9hup4phO9OSzNHdpdqy35f/RWmnkJD +W2ZaiogN9xa5P1FlK2Zqi9E4UqLWRhH6/JocdJ6PlwsCT2TG9WjTSy3/pDceiz+/ +RL5hRqGEPQgnTIEgd4kI6mdAXmwIUV80WoyWaM3X94nCHNMyAK9Sy9NgWyo6R35r +MDOhYil/SrnhLecUIw4OGEfhefwVVdCx/CVxY3UzHCMrr1zZ7Ud3YA47Dx7SwNxk +BYn8eNZcLCZDqQ== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 2e:6a:00:01:00:02:1f:d7:52:21:2c:11:5c:3b + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 2 CA, CN=TC TrustCenter Class 2 CA II + Validity + Not Before: Jan 12 14:38:43 2006 GMT + Not After : Dec 31 22:59:59 2025 GMT + Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 2 CA, CN=TC TrustCenter Class 2 CA II + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:ab:80:87:9b:8e:f0:c3:7c:87:d7:e8:24:82:11: + b3:3c:dd:43:62:ee:f8:c3:45:da:e8:e1:a0:5f:d1: + 2a:b2:ea:93:68:df:b4:c8:d6:43:e9:c4:75:59:7f: + fc:e1:1d:f8:31:70:23:1b:88:9e:27:b9:7b:fd:3a: + d2:c9:a9:e9:14:2f:90:be:03:52:c1:49:cd:f6:fd: + e4:08:66:0b:57:8a:a2:42:a0:b8:d5:7f:69:5c:90: + 32:b2:97:0d:ca:4a:dc:46:3e:02:55:89:53:e3:1a: + 5a:cb:36:c6:07:56:f7:8c:cf:11:f4:4c:bb:30:70: + 04:95:a5:f6:39:8c:fd:73:81:08:7d:89:5e:32:1e: + 22:a9:22:45:4b:b0:66:2e:30:cc:9f:65:fd:fc:cb: + 81:a9:f1:e0:3b:af:a3:86:d1:89:ea:c4:45:79:50: + 5d:ae:e9:21:74:92:4d:8b:59:82:8f:94:e3:e9:4a: + f1:e7:49:b0:14:e3:f5:62:cb:d5:72:bd:1f:b9:d2: + 9f:a0:cd:a8:fa:01:c8:d9:0d:df:da:fc:47:9d:b3: + c8:54:df:49:4a:f1:21:a9:fe:18:4e:ee:48:d4:19: + bb:ef:7d:e4:e2:9d:cb:5b:b6:6e:ff:e3:cd:5a:e7: + 74:82:05:ba:80:25:38:cb:e4:69:9e:af:41:aa:1a: + 84:f5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + E3:AB:54:4C:80:A1:DB:56:43:B7:91:4A:CB:F3:82:7A:13:5C:08:AB + X509v3 CRL Distribution Points: + URI:http://www.trustcenter.de/crl/v2/tc_class_2_ca_II.crl + URI:ldap://www.trustcenter.de/CN=TC%20TrustCenter%20Class%202%20CA%20II,O=TC%20TrustCenter%20GmbH,OU=rootcerts,DC=trustcenter,DC=de?certificateRevocationList?base? + + Signature Algorithm: sha1WithRSAEncryption + 8c:d7:df:7e:ee:1b:80:10:b3:83:f5:db:11:ea:6b:4b:a8:92: + 18:d9:f7:07:39:f5:2c:be:06:75:7a:68:53:15:1c:ea:4a:ed: + 5e:fc:23:b2:13:a0:d3:09:ff:f6:f6:2e:6b:41:71:79:cd:e2: + 6d:fd:ae:59:6b:85:1d:b8:4e:22:9a:ed:66:39:6e:4b:94:e6: + 55:fc:0b:1b:8b:77:c1:53:13:66:89:d9:28:d6:8b:f3:45:4a: + 63:b7:fd:7b:0b:61:5d:b8:6d:be:c3:dc:5b:79:d2:ed:86:e5: + a2:4d:be:5e:74:7c:6a:ed:16:38:1f:7f:58:81:5a:1a:eb:32: + 88:2d:b2:f3:39:77:80:af:5e:b6:61:75:29:db:23:4d:88:ca: + 50:28:cb:85:d2:d3:10:a2:59:6e:d3:93:54:00:7a:a2:46:95: + 86:05:9c:a9:19:98:e5:31:72:0c:00:e2:67:d9:40:e0:24:33: + 7b:6f:2c:b9:5c:ab:65:9d:2c:ac:76:ea:35:99:f5:97:b9:0f: + 24:ec:c7:76:21:28:65:ae:57:e8:07:88:75:4a:56:a0:d2:05: + 3a:a4:e6:8d:92:88:2c:f3:f2:e1:c1:c6:61:db:41:c5:c7:9b: + f7:0e:1a:51:45:c2:61:6b:dc:64:27:17:8c:5a:b7:da:74:28: + cd:97:e4:bd +SHA1 Fingerprint=AE:50:83:ED:7C:F4:5C:BC:8F:61:C6:21:FE:68:5D:79:42:21:15:6E +-----BEGIN CERTIFICATE----- +MIIEqjCCA5KgAwIBAgIOLmoAAQACH9dSISwRXDswDQYJKoZIhvcNAQEFBQAwdjEL +MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV +BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDIgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 +Q2VudGVyIENsYXNzIDIgQ0EgSUkwHhcNMDYwMTEyMTQzODQzWhcNMjUxMjMxMjI1 +OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i +SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQTElMCMGA1UEAxMc +VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAKuAh5uO8MN8h9foJIIRszzdQ2Lu+MNF2ujhoF/RKrLqk2jf +tMjWQ+nEdVl//OEd+DFwIxuInie5e/060smp6RQvkL4DUsFJzfb95AhmC1eKokKg +uNV/aVyQMrKXDcpK3EY+AlWJU+MaWss2xgdW94zPEfRMuzBwBJWl9jmM/XOBCH2J +XjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQXa7pIXSSTYtZgo+U4+lK +8edJsBTj9WLL1XK9H7nSn6DNqPoByNkN39r8R52zyFTfSUrxIan+GE7uSNQZu+99 +5OKdy1u2bv/jzVrndIIFuoAlOMvkaZ6vQaoahPUCAwEAAaOCATQwggEwMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTjq1RMgKHbVkO3 +kUrL84J6E1wIqzCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy +dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18yX2NhX0lJLmNybIaBn2xkYXA6 +Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz +JTIwMiUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 +Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u +TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEAjNfffu4bgBCzg/XbEeprS6iS +GNn3Bzn1LL4GdXpoUxUc6krtXvwjshOg0wn/9vYua0Fxec3ibf2uWWuFHbhOIprt +ZjluS5TmVfwLG4t3wVMTZonZKNaL80VKY7f9ewthXbhtvsPcW3nS7Yblok2+XnR8 +au0WOB9/WIFaGusyiC2y8zl3gK9etmF1KdsjTYjKUCjLhdLTEKJZbtOTVAB6okaV +hgWcqRmY5TFyDADiZ9lA4CQze28suVyrZZ0srHbqNZn1l7kPJOzHdiEoZa5X6AeI +dUpWoNIFOqTmjZKILPPy4cHGYdtBxceb9w4aUUXCYWvcZCcXjFq32nQozZfkvQ== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 4a:47:00:01:00:02:e5:a0:5d:d6:3f:00:51:bf + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 3 CA, CN=TC TrustCenter Class 3 CA II + Validity + Not Before: Jan 12 14:41:57 2006 GMT + Not After : Dec 31 22:59:59 2025 GMT + Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 3 CA, CN=TC TrustCenter Class 3 CA II + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:b4:e0:bb:51:bb:39:5c:8b:04:c5:4c:79:1c:23: + 86:31:10:63:43:55:27:3f:c6:45:c7:a4:3d:ec:09: + 0d:1a:1e:20:c2:56:1e:de:1b:37:07:30:22:2f:6f: + f1:06:f1:ab:ad:d6:c8:ab:61:a3:2f:43:c4:b0:b2: + 2d:fc:c3:96:69:7b:7e:8a:e4:cc:c0:39:12:90:42: + 60:c9:cc:35:68:ee:da:5f:90:56:5f:cd:1c:4d:5b: + 58:49:eb:0e:01:4f:64:fa:2c:3c:89:58:d8:2f:2e: + e2:b0:68:e9:22:3b:75:89:d6:44:1a:65:f2:1b:97: + 26:1d:28:6d:ac:e8:bd:59:1d:2b:24:f6:d6:84:03: + 66:88:24:00:78:60:f1:f8:ab:fe:02:b2:6b:fb:22: + fb:35:e6:16:d1:ad:f6:2e:12:e4:fa:35:6a:e5:19: + b9:5d:db:3b:1e:1a:fb:d3:ff:15:14:08:d8:09:6a: + ba:45:9d:14:79:60:7d:af:40:8a:07:73:b3:93:96: + d3:74:34:8d:3a:37:29:de:5c:ec:f5:ee:2e:31:c2: + 20:dc:be:f1:4f:7f:23:52:d9:5b:e2:64:d9:9c:aa: + 07:08:b5:45:bd:d1:d0:31:c1:ab:54:9f:a9:d2:c3: + 62:60:03:f1:bb:39:4a:92:4a:3d:0a:b9:9d:c5:a0: + fe:37 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + D4:A2:FC:9F:B3:C3:D8:03:D3:57:5C:07:A4:D0:24:A7:C0:F2:00:D4 + X509v3 CRL Distribution Points: + URI:http://www.trustcenter.de/crl/v2/tc_class_3_ca_II.crl + URI:ldap://www.trustcenter.de/CN=TC%20TrustCenter%20Class%203%20CA%20II,O=TC%20TrustCenter%20GmbH,OU=rootcerts,DC=trustcenter,DC=de?certificateRevocationList?base? + + Signature Algorithm: sha1WithRSAEncryption + 36:60:e4:70:f7:06:20:43:d9:23:1a:42:f2:f8:a3:b2:b9:4d: + 8a:b4:f3:c2:9a:55:31:7c:c4:3b:67:9a:b4:df:4d:0e:8a:93: + 4a:17:8b:1b:8d:ca:89:e1:cf:3a:1e:ac:1d:f1:9c:32:b4:8e: + 59:76:a2:41:85:25:37:a0:13:d0:f5:7c:4e:d5:ea:96:e2:6e: + 72:c1:bb:2a:fe:6c:6e:f8:91:98:46:fc:c9:1b:57:5b:ea:c8: + 1a:3b:3f:b0:51:98:3c:07:da:2c:59:01:da:8b:44:e8:e1:74: + fd:a7:68:dd:54:ba:83:46:ec:c8:46:b5:f8:af:97:c0:3b:09: + 1c:8f:ce:72:96:3d:33:56:70:bc:96:cb:d8:d5:7d:20:9a:83: + 9f:1a:dc:39:f1:c5:72:a3:11:03:fd:3b:42:52:29:db:e8:01: + f7:9b:5e:8c:d6:8d:86:4e:19:fa:bc:1c:be:c5:21:a5:87:9e: + 78:2e:36:db:09:71:a3:72:34:f8:6c:e3:06:09:f2:5e:56:a5: + d3:dd:98:fa:d4:e6:06:f4:f0:b6:20:63:4b:ea:29:bd:aa:82: + 66:1e:fb:81:aa:a7:37:ad:13:18:e6:92:c3:81:c1:33:bb:88: + 1e:a1:e7:e2:b4:bd:31:6c:0e:51:3d:6f:fb:96:56:80:e2:36: + 17:d1:dc:e4 +SHA1 Fingerprint=80:25:EF:F4:6E:70:C8:D4:72:24:65:84:FE:40:3B:8A:8D:6A:DB:F5 +-----BEGIN CERTIFICATE----- +MIIEqjCCA5KgAwIBAgIOSkcAAQAC5aBd1j8AUb8wDQYJKoZIhvcNAQEFBQAwdjEL +MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV +BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDMgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 +Q2VudGVyIENsYXNzIDMgQ0EgSUkwHhcNMDYwMTEyMTQ0MTU3WhcNMjUxMjMxMjI1 +OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i +SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQTElMCMGA1UEAxMc +VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBALTgu1G7OVyLBMVMeRwjhjEQY0NVJz/GRcekPewJDRoeIMJW +Ht4bNwcwIi9v8Qbxq63WyKthoy9DxLCyLfzDlml7forkzMA5EpBCYMnMNWju2l+Q +Vl/NHE1bWEnrDgFPZPosPIlY2C8u4rBo6SI7dYnWRBpl8huXJh0obazovVkdKyT2 +1oQDZogkAHhg8fir/gKya/si+zXmFtGt9i4S5Po1auUZuV3bOx4a+9P/FRQI2Alq +ukWdFHlgfa9Aigdzs5OW03Q0jTo3Kd5c7PXuLjHCINy+8U9/I1LZW+Jk2ZyqBwi1 +Rb3R0DHBq1SfqdLDYmAD8bs5SpJKPQq5ncWg/jcCAwEAAaOCATQwggEwMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTUovyfs8PYA9NX +XAek0CSnwPIA1DCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy +dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18zX2NhX0lJLmNybIaBn2xkYXA6 +Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz +JTIwMyUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 +Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u +TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEANmDkcPcGIEPZIxpC8vijsrlN +irTzwppVMXzEO2eatN9NDoqTSheLG43KieHPOh6sHfGcMrSOWXaiQYUlN6AT0PV8 +TtXqluJucsG7Kv5sbviRmEb8yRtXW+rIGjs/sFGYPAfaLFkB2otE6OF0/ado3VS6 +g0bsyEa1+K+XwDsJHI/OcpY9M1ZwvJbL2NV9IJqDnxrcOfHFcqMRA/07QlIp2+gB +95tejNaNhk4Z+rwcvsUhpYeeeC422wlxo3I0+GzjBgnyXlal092Y+tTmBvTwtiBj +S+opvaqCZh77gaqnN60TGOaSw4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2F9Hc5A== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 1d:a2:00:01:00:02:ec:b7:60:80:78:8d:b6:06 + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA I + Validity + Not Before: Mar 22 15:54:28 2006 GMT + Not After : Dec 31 22:59:59 2025 GMT + Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA I + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:a4:77:23:96:44:af:90:f4:31:a7:10:f4:26:87: + 9c:f3:38:d9:0f:5e:de:cf:41:e8:31:ad:c6:74:91: + 24:96:78:1e:09:a0:9b:9a:95:4a:4a:f5:62:7c:02: + a8:ca:ac:fb:5a:04:76:39:de:5f:f1:f9:b3:bf:f3: + 03:58:55:d2:aa:b7:e3:04:22:d1:f8:94:da:22:08: + 00:8d:d3:7c:26:5d:cc:77:79:e7:2c:78:39:a8:26: + 73:0e:a2:5d:25:69:85:4f:55:0e:9a:ef:c6:b9:44: + e1:57:3d:df:1f:54:22:e5:6f:65:aa:33:84:3a:f3: + ce:7a:be:55:97:ae:8d:12:0f:14:33:e2:50:70:c3: + 49:87:13:bc:51:de:d7:98:12:5a:ef:3a:83:33:92: + 06:75:8b:92:7c:12:68:7b:70:6a:0f:b5:9b:b6:77: + 5b:48:59:9d:e4:ef:5a:ad:f3:c1:9e:d4:d7:45:4e: + ca:56:34:21:bc:3e:17:5b:6f:77:0c:48:01:43:29: + b0:dd:3f:96:6e:e6:95:aa:0c:c0:20:b6:fd:3e:36: + 27:9c:e3:5c:cf:4e:81:dc:19:bb:91:90:7d:ec:e6: + 97:04:1e:93:cc:22:49:d7:97:86:b6:13:0a:3c:43: + 23:77:7e:f0:dc:e6:cd:24:1f:3b:83:9b:34:3a:83: + 34:e3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Authority Key Identifier: + keyid:92:A4:75:2C:A4:9E:BE:81:44:EB:79:FC:8A:C5:95:A5:EB:10:75:73 + + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Subject Key Identifier: + 92:A4:75:2C:A4:9E:BE:81:44:EB:79:FC:8A:C5:95:A5:EB:10:75:73 + Signature Algorithm: sha1WithRSAEncryption + 28:d2:e0:86:d5:e6:f8:7b:f0:97:dc:22:6b:3b:95:14:56:0f: + 11:30:a5:9a:4f:3a:b0:3a:e0:06:cb:65:f5:ed:c6:97:27:fe: + 25:f2:57:e6:5e:95:8c:3e:64:60:15:5a:7f:2f:0d:01:c5:b1: + 60:fd:45:35:cf:f0:b2:bf:06:d9:ef:5a:be:b3:62:21:b4:d7: + ab:35:7c:53:3e:a6:27:f1:a1:2d:da:1a:23:9d:cc:dd:ec:3c: + 2d:9e:27:34:5d:0f:c2:36:79:bc:c9:4a:62:2d:ed:6b:d9:7d: + 41:43:7c:b6:aa:ca:ed:61:b1:37:82:15:09:1a:8a:16:30:d8: + ec:c9:d6:47:72:78:4b:10:46:14:8e:5f:0e:af:ec:c7:2f:ab: + 10:d7:b6:f1:6e:ec:86:b2:c2:e8:0d:92:73:dc:a2:f4:0f:3a: + bf:61:23:10:89:9c:48:40:6e:70:00:b3:d3:ba:37:44:58:11: + 7a:02:6a:88:f0:37:34:f0:19:e9:ac:d4:65:73:f6:69:8c:64: + 94:3a:79:85:29:b0:16:2b:0c:82:3f:06:9c:c7:fd:10:2b:9e: + 0f:2c:b6:9e:e3:15:bf:d9:36:1c:ba:25:1a:52:3d:1a:ec:22: + 0c:1c:e0:a4:a2:3d:f0:e8:39:cf:81:c0:7b:ed:5d:1f:6f:c5: + d0:0b:d7:98 +SHA1 Fingerprint=6B:2F:34:AD:89:58:BE:62:FD:B0:6B:5C:CE:BB:9D:D9:4F:4E:39:F3 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIOHaIAAQAC7LdggHiNtgYwDQYJKoZIhvcNAQEFBQAweTEL +MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNV +BAsTG1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQTEmMCQGA1UEAxMdVEMgVHJ1 +c3RDZW50ZXIgVW5pdmVyc2FsIENBIEkwHhcNMDYwMzIyMTU1NDI4WhcNMjUxMjMx +MjI1OTU5WjB5MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIg +R21iSDEkMCIGA1UECxMbVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBMSYwJAYD +VQQDEx1UQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0EgSTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKR3I5ZEr5D0MacQ9CaHnPM42Q9e3s9B6DGtxnSR +JJZ4Hgmgm5qVSkr1YnwCqMqs+1oEdjneX/H5s7/zA1hV0qq34wQi0fiU2iIIAI3T +fCZdzHd55yx4Oagmcw6iXSVphU9VDprvxrlE4Vc93x9UIuVvZaozhDrzznq+VZeu +jRIPFDPiUHDDSYcTvFHe15gSWu86gzOSBnWLknwSaHtwag+1m7Z3W0hZneTvWq3z +wZ7U10VOylY0Ibw+F1tvdwxIAUMpsN0/lm7mlaoMwCC2/T42J5zjXM9OgdwZu5GQ +fezmlwQek8wiSdeXhrYTCjxDI3d+8NzmzSQfO4ObNDqDNOMCAwEAAaNjMGEwHwYD +VR0jBBgwFoAUkqR1LKSevoFE63n8isWVpesQdXMwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJKkdSyknr6BROt5/IrFlaXrEHVzMA0G +CSqGSIb3DQEBBQUAA4IBAQAo0uCG1eb4e/CX3CJrO5UUVg8RMKWaTzqwOuAGy2X1 +7caXJ/4l8lfmXpWMPmRgFVp/Lw0BxbFg/UU1z/CyvwbZ71q+s2IhtNerNXxTPqYn +8aEt2hojnczd7Dwtnic0XQ/CNnm8yUpiLe1r2X1BQ3y2qsrtYbE3ghUJGooWMNjs +ydZHcnhLEEYUjl8Or+zHL6sQ17bxbuyGssLoDZJz3KL0Dzq/YSMQiZxIQG5wALPT +ujdEWBF6AmqI8Dc08BnprNRlc/ZpjGSUOnmFKbAWKwyCPwacx/0QK54PLLae4xW/ +2TYcuiUaUj0a7CIMHOCkoj3w6DnPgcB77V0fb8XQC9eY +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 38 (0x26) + Signature Algorithm: sha1WithRSAEncryption + Issuer: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2 + Validity + Not Before: Jul 9 12:11:00 1999 GMT + Not After : Jul 9 23:59:00 2019 GMT + Subject: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2 + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:ab:0b:a3:35:e0:8b:29:14:b1:14:85:af:3c:10: + e4:39:6f:35:5d:4a:ae:dd:ea:61:8d:95:49:f4:6f: + 64:a3:1a:60:66:a4:a9:40:22:84:d9:d4:a5:e5:78: + 93:0e:68:01:ad:b9:4d:5c:3a:ce:d3:b8:a8:42:40: + df:cf:a3:ba:82:59:6a:92:1b:ac:1c:9a:da:08:2b: + 25:27:f9:69:23:47:f1:e0:eb:2c:7a:9b:f5:13:02: + d0:7e:34:7c:c2:9e:3c:00:59:ab:f5:da:0c:f5:32: + 3c:2b:ac:50:da:d6:c3:de:83:94:ca:a8:0c:99:32: + 0e:08:48:56:5b:6a:fb:da:e1:58:58:01:49:5f:72: + 41:3c:15:06:01:8e:5d:ad:aa:b8:93:b4:cd:9e:eb: + a7:e8:6a:2d:52:34:db:3a:ef:5c:75:51:da:db:f3: + 31:f9:ee:71:98:32:c4:54:15:44:0c:f9:9b:55:ed: + ad:df:18:08:a0:a3:86:8a:49:ee:53:05:8f:19:4c: + d5:de:58:79:9b:d2:6a:1c:42:ab:c5:d5:a7:cf:68: + 0f:96:e4:e1:61:98:76:61:c8:91:7c:d6:3e:00:e2: + 91:50:87:e1:9d:0a:e6:ad:97:d2:1d:c6:3a:7d:cb: + bc:da:03:34:d5:8e:5b:01:f5:6a:07:b7:16:b6:6e: + 4a:7f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Subject Key Identifier: + 31:C3:79:1B:BA:F5:53:D7:17:E0:89:7A:2D:17:6C:0A:B3:2B:9D:33 + X509v3 Basic Constraints: + CA:TRUE, pathlen:5 + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + Signature Algorithm: sha1WithRSAEncryption + 94:64:59:ad:39:64:e7:29:eb:13:fe:5a:c3:8b:13:57:c8:04: + 24:f0:74:77:c0:60:e3:67:fb:e9:89:a6:83:bf:96:82:7c:6e: + d4:c3:3d:ef:9e:80:6e:bb:29:b4:98:7a:b1:3b:54:eb:39:17: + 47:7e:1a:8e:0b:fc:1f:31:59:31:04:b2:ce:17:f3:2c:c7:62: + 36:55:e2:22:d8:89:55:b4:98:48:aa:64:fa:d6:1c:36:d8:44: + 78:5a:5a:23:3a:57:97:f5:7a:30:4f:ae:9f:6a:4c:4b:2b:8e: + a0:03:e3:3e:e0:a9:d4:d2:7b:d2:b3:a8:e2:72:3c:ad:9e:ff: + 80:59:e4:9b:45:b4:f6:3b:b0:cd:39:19:98:32:e5:ea:21:61: + 90:e4:31:21:8e:34:b1:f7:2f:35:4a:85:10:da:e7:8a:37:21: + be:59:63:e0:f2:85:88:31:53:d4:54:14:85:70:79:f4:2e:06: + 77:27:75:2f:1f:b8:8a:f9:fe:c5:ba:d8:36:e4:83:ec:e7:65: + b7:bf:63:5a:f3:46:af:81:94:37:d4:41:8c:d6:23:d6:1e:cf: + f5:68:1b:44:63:a2:5a:ba:a7:35:59:a1:e5:70:05:9b:0e:23: + 57:99:94:0a:6d:ba:39:63:28:86:92:f3:18:84:d8:fb:d1:cf: + 05:56:64:57 +SHA1 Fingerprint=85:A4:08:C0:9C:19:3E:5D:51:58:7D:CD:D6:13:30:FD:8C:DE:37:BF +-----BEGIN CERTIFICATE----- +MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc +MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj +IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB +IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE +RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl +U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290 +IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU +ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC +QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr +rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S +NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc +QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH +txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP +BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC +AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp +tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa +IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl +6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+ +xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU +Cm26OWMohpLzGITY+9HPBVZkVw== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 14:13:96:83:14:55:8c:ea:7b:63:e5:fc:34:87:77:44 + Signature Algorithm: sha1WithRSAEncryption + Issuer: CN=ComSign CA, O=ComSign, C=IL + Validity + Not Before: Mar 24 11:32:18 2004 GMT + Not After : Mar 19 15:02:18 2029 GMT + Subject: CN=ComSign CA, O=ComSign, C=IL + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:f0:e4:54:69:2b:d3:c7:8f:6a:44:e4:7e:58:27: + f8:0b:d0:e4:94:12:8a:f1:1b:38:38:2f:1f:31:9c: + 06:d4:2c:a7:de:0b:2a:ae:1a:a0:e3:9e:6a:bf:9f: + 3c:c7:6e:a2:f9:8b:64:6c:3a:ad:85:55:51:54:a5: + 38:55:b8:ab:83:04:f2:3f:64:36:f7:c0:8d:43:43: + 6a:66:d1:f7:17:2a:d5:ef:36:fa:30:10:42:d7:53: + cd:f9:fa:33:73:4c:b3:e9:84:20:8a:d6:41:27:35: + e4:38:fa:94:9b:b8:7a:e4:79:1f:33:fb:1b:d8:21: + 09:28:7c:4d:18:69:5e:64:8a:7a:19:93:ca:7e:ec: + f3:72:e7:37:07:58:59:28:ac:42:f9:c5:ff:cd:3f: + e7:a5:fa:38:b1:d0:0c:c7:d9:52:1a:53:d6:81:cc: + 42:7a:35:5b:ed:4b:3a:7a:f6:b5:8e:cc:ff:0f:7c: + e4:60:36:87:2f:ad:f0:a1:25:7d:ff:d2:4b:11:88: + 70:54:a6:41:a8:67:53:52:42:5e:e4:34:9e:e4:be: + a3:ec:aa:62:5d:dd:c3:4c:a6:82:41:e4:33:0b:ac: + c9:33:0f:64:82:57:2a:fd:0c:ad:36:e1:0c:ae:4b: + c5:ef:3b:99:d9:23:b3:5b:5d:b4:57:ec:74:70:0c: + 2a:4f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: + CA:TRUE + X509v3 CRL Distribution Points: + URI:http://fedir.comsign.co.il/crl/ComSignCA.crl + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Authority Key Identifier: + keyid:4B:01:9B:3E:56:1A:65:36:76:CB:7B:97:AA:92:05:EE:32:E7:28:31 + + X509v3 Subject Key Identifier: + 4B:01:9B:3E:56:1A:65:36:76:CB:7B:97:AA:92:05:EE:32:E7:28:31 + Signature Algorithm: sha1WithRSAEncryption + d0:d9:a5:7e:fe:29:60:45:9d:7e:83:cf:6e:bc:47:6e:f5:1a: + 9e:54:76:42:71:b4:3c:58:3f:2d:40:25:42:f6:81:9c:f1:89: + 10:c8:0e:aa:78:4f:38:09:57:b0:3c:c0:08:fc:35:8e:f1:48: + 51:8d:0c:71:74:ba:84:c4:d7:72:9b:84:7c:38:4e:64:06:27: + 2a:e1:a7:b5:ec:08:99:b4:0a:0d:d4:85:73:c8:12:e1:35:ed: + f1:05:31:1d:73:99:0c:eb:96:ca:dd:d3:e6:85:aa:f0:8a:fb: + 75:c1:f2:09:3c:65:65:64:f3:4c:d8:ad:cb:88:69:f3:e4:83: + b7:0c:bd:17:5a:96:17:ca:5b:ff:ad:bb:1c:e9:2d:84:80:d8: + 21:be:85:52:d9:d4:74:b9:69:85:ba:4d:ed:28:32:eb:f9:61: + 4a:e4:c4:36:1e:19:dc:6f:84:11:1f:95:f5:83:28:18:a8:33: + 92:43:27:dd:5d:13:04:45:4f:87:d5:46:cd:3d:a8:ba:f0:f3: + b8:56:24:45:eb:37:c7:e1:76:4f:72:39:18:df:7e:74:72:c7: + 73:2d:39:ea:60:e6:ad:11:a2:56:87:7b:c3:68:9a:fe:f8:8c: + 70:a8:df:65:32:f4:a4:40:8c:a1:c2:44:03:0e:94:00:67:a0: + 71:00:82:48 +SHA1 Fingerprint=E1:A4:5B:14:1A:21:DA:1A:79:F4:1A:42:A9:61:D6:69:CD:06:34:C1 +-----BEGIN CERTIFICATE----- +MIIDkzCCAnugAwIBAgIQFBOWgxRVjOp7Y+X8NId3RDANBgkqhkiG9w0BAQUFADA0 +MRMwEQYDVQQDEwpDb21TaWduIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQG +EwJJTDAeFw0wNDAzMjQxMTMyMThaFw0yOTAzMTkxNTAyMThaMDQxEzARBgNVBAMT +CkNvbVNpZ24gQ0ExEDAOBgNVBAoTB0NvbVNpZ24xCzAJBgNVBAYTAklMMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8ORUaSvTx49qROR+WCf4C9DklBKK +8Rs4OC8fMZwG1Cyn3gsqrhqg455qv588x26i+YtkbDqthVVRVKU4VbirgwTyP2Q2 +98CNQ0NqZtH3FyrV7zb6MBBC11PN+fozc0yz6YQgitZBJzXkOPqUm7h65HkfM/sb +2CEJKHxNGGleZIp6GZPKfuzzcuc3B1hZKKxC+cX/zT/npfo4sdAMx9lSGlPWgcxC +ejVb7Us6eva1jsz/D3zkYDaHL63woSV9/9JLEYhwVKZBqGdTUkJe5DSe5L6j7Kpi +Xd3DTKaCQeQzC6zJMw9kglcq/QytNuEMrkvF7zuZ2SOzW120V+x0cAwqTwIDAQAB +o4GgMIGdMAwGA1UdEwQFMAMBAf8wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2Zl +ZGlyLmNvbXNpZ24uY28uaWwvY3JsL0NvbVNpZ25DQS5jcmwwDgYDVR0PAQH/BAQD +AgGGMB8GA1UdIwQYMBaAFEsBmz5WGmU2dst7l6qSBe4y5ygxMB0GA1UdDgQWBBRL +AZs+VhplNnbLe5eqkgXuMucoMTANBgkqhkiG9w0BAQUFAAOCAQEA0Nmlfv4pYEWd +foPPbrxHbvUanlR2QnG0PFg/LUAlQvaBnPGJEMgOqnhPOAlXsDzACPw1jvFIUY0M +cXS6hMTXcpuEfDhOZAYnKuGntewImbQKDdSFc8gS4TXt8QUxHXOZDOuWyt3T5oWq +8Ir7dcHyCTxlZWTzTNity4hp8+SDtwy9F1qWF8pb/627HOkthIDYIb6FUtnUdLlp +hbpN7Sgy6/lhSuTENh4Z3G+EER+V9YMoGKgzkkMn3V0TBEVPh9VGzT2ouvDzuFYk +Res3x+F2T3I5GN9+dHLHcy056mDmrRGiVod7w2ia/viMcKjfZTL0pECMocJEAw6U +AGegcQCCSA== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + c7:28:47:09:b3:b8:6c:45:8c:1d:fa:24:f5:36:4e:e9 + Signature Algorithm: sha1WithRSAEncryption + Issuer: CN=ComSign Secured CA, O=ComSign, C=IL + Validity + Not Before: Mar 24 11:37:20 2004 GMT + Not After : Mar 16 15:04:56 2029 GMT + Subject: CN=ComSign Secured CA, O=ComSign, C=IL + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:c6:b5:68:5f:1d:94:15:c3:a4:08:55:2d:e3:a0: + 57:7a:ef:e9:74:2a:bb:b9:7c:57:49:1a:11:5e:4f: + 29:87:0c:48:d6:6a:e7:8f:d4:7e:57:24:b9:06:89: + e4:1c:3c:ea:ac:e3:da:21:80:73:21:0a:ef:79:98: + 6c:1f:08:ff:a1:50:7d:f2:98:1b:c9:54:6f:3e:a5: + 28:ec:21:04:0f:45:bb:07:3d:a1:c0:fa:2a:98:1d: + 4e:06:93:fb:f5:88:3b:ab:5f:cb:16:bf:e6:f3:9e: + 4a:87:ed:19:ea:c2:9f:43:e4:f1:81:a5:7f:10:4f: + 3e:d1:4a:62:ad:53:1b:cb:83:ff:07:65:a5:92:2d: + 66:a9:5b:b8:5a:f4:1d:b4:21:91:4a:17:7b:9e:32: + fe:56:24:39:b2:54:84:43:f5:84:c2:d8:bc:41:90: + cc:9d:d6:68:da:e9:82:50:a9:3b:68:cf:b5:5d:02: + 94:60:16:b1:43:d9:43:5d:dd:5d:87:6e:ea:bb:b3: + c9:6b:f6:03:94:09:70:de:16:11:7a:2b:e8:76:8f: + 49:10:98:77:b9:63:5c:8b:33:97:75:f6:0b:8c:b2: + ab:5b:de:74:20:25:3f:e3:f3:11:f9:87:68:86:35: + 71:c3:1d:8c:2d:eb:e5:1a:ac:0f:73:d5:82:59:40: + 80:d3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: + CA:TRUE + X509v3 CRL Distribution Points: + URI:http://fedir.comsign.co.il/crl/ComSignSecuredCA.crl + + X509v3 Key Usage: critical + Digital Signature, Certificate Sign, CRL Sign + X509v3 Authority Key Identifier: + keyid:C1:4B:ED:70:B6:F7:3E:7C:00:3B:00:8F:C7:3E:0E:45:9F:1E:5D:EC + + X509v3 Subject Key Identifier: + C1:4B:ED:70:B6:F7:3E:7C:00:3B:00:8F:C7:3E:0E:45:9F:1E:5D:EC + Signature Algorithm: sha1WithRSAEncryption + 16:cf:ee:92:13:50:ab:7b:14:9e:33:b6:42:20:6a:d4:15:bd: + 09:ab:fc:72:e8:ef:47:7a:90:ac:51:c1:64:4e:e9:88:bd:43: + 45:81:e3:66:23:3f:12:86:4d:19:e4:05:b0:e6:37:c2:8d:da: + 06:28:c9:0f:89:a4:53:a9:75:3f:b0:96:fb:ab:4c:33:55:f9: + 78:26:46:6f:1b:36:98:fb:42:76:c1:82:b9:8e:de:fb:45:f9: + 63:1b:62:3b:39:06:ca:77:7a:a8:3c:09:cf:6c:36:3d:0f:0a: + 45:4b:69:16:1a:45:7d:33:03:65:f9:52:71:90:26:95:ac:4c: + 0c:f5:8b:93:3f:cc:75:74:85:98:ba:ff:62:7a:4d:1f:89:fe: + ae:bd:94:00:99:bf:11:a5:dc:e0:79:c5:16:0b:7d:02:61:1d: + ea:85:f9:02:15:4f:e7:5a:89:4e:14:6f:e3:37:4b:85:f5:c1: + 3c:61:e0:fd:05:41:b2:92:7f:c3:1d:a0:d0:ae:52:64:60:6b: + 18:c6:26:9c:d8:f5:64:e4:36:1a:62:9f:8a:0f:3e:ff:6d:4e: + 19:56:4e:20:91:6c:9f:34:33:3a:34:57:50:3a:6f:81:5e:06: + c6:f5:3e:7c:4e:8e:2b:ce:65:06:2e:5d:d2:2a:53:74:5e:d3: + 6e:27:9e:8f +SHA1 Fingerprint=F9:CD:0E:2C:DA:76:24:C1:8F:BD:F0:F0:AB:B6:45:B8:F7:FE:D5:7A +-----BEGIN CERTIFICATE----- +MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAw +PDEbMBkGA1UEAxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWdu +MQswCQYDVQQGEwJJTDAeFw0wNDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwx +GzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBDQTEQMA4GA1UEChMHQ29tU2lnbjEL +MAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGtWhf +HZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs49oh +gHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sW +v+bznkqH7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ue +Mv5WJDmyVIRD9YTC2LxBkMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr +9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d19guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt +6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUwAwEB/zBEBgNVHR8EPTA7 +MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29tU2lnblNl +Y3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58 +ADsAj8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkq +hkiG9w0BAQUFAAOCAQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7p +iL1DRYHjZiM/EoZNGeQFsOY3wo3aBijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtC +dsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtpFhpFfTMDZflScZAmlaxMDPWL +kz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP51qJThRv4zdL +hfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz +OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw== +-----END CERTIFICATE----- + + +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + 04:00:00:00:00:01:0f:85:aa:2d:48 + Signature Algorithm: sha1WithRSAEncryption + Issuer: O=Cybertrust, Inc, CN=Cybertrust Global Root + Validity + Not Before: Dec 15 08:00:00 2006 GMT + Not After : Dec 15 08:00:00 2021 GMT + Subject: O=Cybertrust, Inc, CN=Cybertrust Global Root + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public Key: (2048 bit) + Modulus (2048 bit): + 00:f8:c8:bc:bd:14:50:66:13:ff:f0:d3:79:ec:23: + f2:b7:1a:c7:8e:85:f1:12:73:a6:19:aa:10:db:9c: + a2:65:74:5a:77:3e:51:7d:56:f6:dc:23:b6:d4:ed: + 5f:58:b1:37:4d:d5:49:0e:6e:f5:6a:87:d6:d2:8c: + d2:27:c6:e2:ff:36:9f:98:65:a0:13:4e:c6:2a:64: + 9b:d5:90:12:cf:14:06:f4:3b:e3:d4:28:be:e8:0e: + f8:ab:4e:48:94:6d:8e:95:31:10:5c:ed:a2:2d:bd: + d5:3a:6d:b2:1c:bb:60:c0:46:4b:01:f5:49:ae:7e: + 46:8a:d0:74:8d:a1:0c:02:ce:ee:fc:e7:8f:b8:6b: + 66:f3:7f:44:00:bf:66:25:14:2b:dd:10:30:1d:07: + 96:3f:4d:f6:6b:b8:8f:b7:7b:0c:a5:38:eb:de:47: + db:d5:5d:39:fc:88:a7:f3:d7:2a:74:f1:e8:5a:a2: + 3b:9f:50:ba:a6:8c:45:35:c2:50:65:95:dc:63:82: + ef:dd:bf:77:4d:9c:62:c9:63:73:16:d0:29:0f:49: + a9:48:f0:b3:aa:b7:6c:c5:a7:30:39:40:5d:ae:c4: + e2:5d:26:53:f0:ce:1c:23:08:61:a8:94:19:ba:04: + 62:40:ec:1f:38:70:77:12:06:71:a7:30:18:5d:25: + 27:a5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Key Usage: critical + Certificate Sign, CRL Sign + X509v3 Basic Constraints: critical + CA:TRUE + X509v3 Subject Key Identifier: + B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57 + X509v3 CRL Distribution Points: + URI:http://www2.public-trust.com/crl/ct/ctroot.crl + + X509v3 Authority Key Identifier: + keyid:B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57 + + Signature Algorithm: sha1WithRSAEncryption + 56:ef:0a:23:a0:54:4e:95:97:c9:f8:89:da:45:c1:d4:a3:00: + 25:f4:1f:13:ab:b7:a3:85:58:69:c2:30:ad:d8:15:8a:2d:e3: + c9:cd:81:5a:f8:73:23:5a:a7:7c:05:f3:fd:22:3b:0e:d1:06: + c4:db:36:4c:73:04:8e:e5:b0:22:e4:c5:f3:2e:a5:d9:23:e3: + b8:4e:4a:20:a7:6e:02:24:9f:22:60:67:7b:8b:1d:72:09:c5: + 31:5c:e9:79:9f:80:47:3d:ad:a1:0b:07:14:3d:47:ff:03:69: + 1a:0c:0b:44:e7:63:25:a7:7f:b2:c9:b8:76:84:ed:23:f6:7d: + 07:ab:45:7e:d3:df:b3:bf:e9:8a:b6:cd:a8:a2:67:2b:52:d5: + b7:65:f0:39:4c:63:a0:91:79:93:52:0f:54:dd:83:bb:9f:d1: + 8f:a7:53:73:c3:cb:ff:30:ec:7c:04:b8:d8:44:1f:93:5f:71: + 09:22:b7:6e:3e:ea:1c:03:4e:9d:1a:20:61:fb:81:37:ec:5e: + fc:0a:45:ab:d7:e7:17:55:d0:a0:ea:60:9b:a6:f6:e3:8c:5b: + 29:c2:06:60:14:9d:2d:97:4c:a9:93:15:9d:61:c4:01:5f:48: + d6:58:bd:56:31:12:4e:11:c8:21:e0:b3:11:91:65:db:b4:a6: + 88:38:ce:55 +SHA1 Fingerprint=5F:43:E5:B1:BF:F8:78:8C:AC:1C:C7:CA:4A:9A:C6:22:2B:CC:34:C6 +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + + Index: ca-certificates.spec =================================================================== RCS file: /cvs/extras/rpms/ca-certificates/devel/ca-certificates.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ca-certificates.spec 24 Feb 2009 06:21:09 -0000 1.6 +++ ca-certificates.spec 22 Jul 2009 14:33:22 -0000 1.7 @@ -6,8 +6,8 @@ Summary: The Mozilla CA root certificate bundle Name: ca-certificates -Version: 2008 -Release: 8 +Version: 2009 +Release: 1%{?dist} License: Public Domain Group: System Environment/Base URL: http://www.mozilla.org/ @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{pkidir}/tls/cert.pem %changelog +* Wed Jul 22 2009 Joe Orton 2009-1 +- update to certdata.txt r1.53 + * Mon Feb 23 2009 Fedora Release Engineering - 2008-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: mkcabundle.pl =================================================================== RCS file: /cvs/extras/rpms/ca-certificates/devel/mkcabundle.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mkcabundle.pl 2 Jun 2008 08:47:49 -0000 1.1 +++ mkcabundle.pl 22 Jul 2009 14:33:22 -0000 1.2 @@ -11,6 +11,7 @@ open(IN, "cvs -d $cvsroot co -p $certdat || die "could not check out certdata.txt"; my $incert = 0; +my $skipcert = 0; print<) { if (/^CKA_VALUE MULTILINE_OCTAL/) { $incert = 1; - open(OUT, "|openssl x509 -text -inform DER -fingerprint") - || die "could not pipe to openssl x509"; + if (!$skipcert) { + open(OUT, "|openssl x509 -text -inform DER -fingerprint") + || die "could not pipe to openssl x509"; + } } elsif (/^END/ && $incert) { - close(OUT); + if (!$skipcert) { + close(OUT); + print "\n\n"; + } $incert = 0; - print "\n\n"; - } elsif ($incert) { + $skipcert = 0; + } elsif ($incert && !$skipcert) { my @bs = split(/\\/); foreach my $b (@bs) { chomp $b; @@ -37,5 +43,8 @@ while () { } } elsif (/^CVS_ID.*Revision: ([^ ]*).*/) { print "# Generated from certdata.txt RCS revision $1\n#\n"; + } elsif (/^CKA_LABEL.*ECC.*/) { + # Ugly hack to avoid picking up ECC certs. + $skipcert = 1; } } From arjunroy at fedoraproject.org Wed Jul 22 14:38:24 2009 From: arjunroy at fedoraproject.org (Arjun Roy) Date: Wed, 22 Jul 2009 14:38:24 +0000 (UTC) Subject: rpms/matahari/devel import.log, NONE, 1.1 matahari.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722143824.8E37111C0099@cvs1.fedora.phx.redhat.com> Author: arjunroy Update of /cvs/pkgs/rpms/matahari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20283/devel Modified Files: .cvsignore sources Added Files: import.log matahari.spec Log Message: * Wed Jul 22 2009 Arjun Roy - 0.0.4-4 - Initial commit of matahari package to fedora cvs. - Package has met all guidelines for inclusion. --- NEW FILE import.log --- matahari-0_0_4-4_fc11:HEAD:matahari-0.0.4-4.fc11.src.rpm:1248273178 --- NEW FILE matahari.spec --- Summary: Qpid QMF Agent for Ovirt Nodes Name: matahari Version: 0.0.4 Release: 4%{?dist} Source: http://arjunroy.fedorapeople.org/matahari/matahari-0.0.4.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root License: GPLv2 Group: Applications/System URL: http://arjunroy.fedorapeople.org/matahari/index.html Requires: dbus >= 1.2.12 Requires: hal >= 0.5.12 Requires: qpidc >= 0.5.790661 Requires: qmf >= 0.5.790661 Requires: libvirt >= 0.6.2 Requires: pcre >= 7.8 BuildRequires: gcc-c++ >= 4.4.0 BuildRequires: dbus-devel >= 1.2.12 BuildRequires: hal-devel >= 0.5.12 BuildRequires: qpidc-devel >= 0.5.790661 BuildRequires: qmf-devel >= 0.5.790661 BuildRequires: libvirt-devel >= 0.6.2 BuildRequires: pcre-devel >= 7.8 %description matahari provides a QMF Agent that can be used to control and manage various pieces of functionality for an ovirt node, using the AMQP protocol. The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol providing reliable transport of messages. QMF provides a modeling framework layer on top of qpid (which implements AMQP). This interface allows you to manage a host and its various components as a set of objects with properties and methods. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} install %post /sbin/chkconfig --level 2345 matahari on /sbin/service matahari condrestart %preun if [ $1 = 0 ]; then /sbin/service matahari stop >/dev/null 2>&1 || : chkconfig --del matahari fi %postun if [ "$1" -ge "1" ]; then /sbin/service matahari condrestart >/dev/null 2>&1 || : fi %clean test "x%{buildroot}" != "x" && rm -rf %{buildroot} %files %defattr(644, root, root, 755) %dir %{_datadir}/matahari/ %{_datadir}/matahari/schema.xml %attr(755, root, root) %{_sbindir}/matahari %attr(755, root, root) %{_sysconfdir}/rc.d/init.d/matahari %config(noreplace) %{_sysconfdir}/sysconfig/matahari %doc AUTHORS COPYING %changelog * Thu Jul 16 2009 Arjun Roy - 0.0.4-4 - Changed buildroot value to meet fedora packaging guidelines - Updated project website * Mon Jul 13 2009 Arjun Roy - 0.0.4-3 - Quietened rpmlint errors and warnings. - Fixed most gcc warnings. - Changed init script so it doesn't run by default - Now rpm specfile makes it so service runs by default instead * Thu Jul 9 2009 Arjun Roy - 0.0.4-2 - Bumped qpidc and qmf version requirements to 0.5.790661. * Thu Jul 9 2009 Arjun Roy - 0.0.4-1 - Removed dependency on boost. Added dependency on pcre. * Thu Jul 2 2009 Arjun Roy - 0.0.3-2 - Fixed bug with not publishing host hypervisor and arch to broker - Updated aclocal.m4 to match new version of automake * Tue Jun 30 2009 Arjun Roy - 0.0.3-1 - Added getopt and daemonize support - Added sysV init script support * Mon Jun 29 2009 Arjun Roy - 0.0.2-1 - Now tracks hypervisor and arch using libvirt * Tue Jun 23 2009 Arjun Roy - 0.0.1-1 - Initial rpmspec packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/matahari/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:19:23 -0000 1.1 +++ .cvsignore 22 Jul 2009 14:37:53 -0000 1.2 @@ -0,0 +1 @@ +matahari-0.0.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/matahari/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:19:24 -0000 1.1 +++ sources 22 Jul 2009 14:37:53 -0000 1.2 @@ -0,0 +1 @@ +206ecd968f759d2a599a0d8c9d870189 matahari-0.0.4.tar.gz From pkgdb at fedoraproject.org Wed Jul 22 14:48:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 14:48:54 +0000 Subject: [pkgdb] hal-cups-utils (un)retirement Message-ID: <20090722144854.C23B310F89B@bastion2.fedora.phx.redhat.com> Package hal-cups-utils in Fedora devel has been retired by twaugh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hal-cups-utils From pkgdb at fedoraproject.org Wed Jul 22 14:48:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 14:48:54 +0000 Subject: [pkgdb] hal-cups-utils ownership updated Message-ID: <20090722144854.B2BE910F892@bastion2.fedora.phx.redhat.com> Package hal-cups-utils in Fedora devel was orphaned by twaugh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/hal-cups-utils From arjunroy at fedoraproject.org Wed Jul 22 15:03:27 2009 From: arjunroy at fedoraproject.org (Arjun Roy) Date: Wed, 22 Jul 2009 15:03:27 +0000 (UTC) Subject: rpms/matahari/F-11 matahari.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722150327.474BE11C0489@cvs1.fedora.phx.redhat.com> Author: arjunroy Update of /cvs/pkgs/rpms/matahari/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30393 Modified Files: .cvsignore sources Added Files: matahari.spec Log Message: * Wed Jul 22 2009 Arjun Roy - 0.0.4-4 - Initial commit of matahari for f11. --- NEW FILE matahari.spec --- Summary: Qpid QMF Agent for Ovirt Nodes Name: matahari Version: 0.0.4 Release: 4%{?dist} Source: http://arjunroy.fedorapeople.org/matahari/matahari-0.0.4.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root License: GPLv2 Group: Applications/System URL: http://arjunroy.fedorapeople.org/matahari/index.html Requires: dbus >= 1.2.12 Requires: hal >= 0.5.12 Requires: qpidc >= 0.5.790661 Requires: qmf >= 0.5.790661 Requires: libvirt >= 0.6.2 Requires: pcre >= 7.8 BuildRequires: gcc-c++ >= 4.4.0 BuildRequires: dbus-devel >= 1.2.12 BuildRequires: hal-devel >= 0.5.12 BuildRequires: qpidc-devel >= 0.5.790661 BuildRequires: qmf-devel >= 0.5.790661 BuildRequires: libvirt-devel >= 0.6.2 BuildRequires: pcre-devel >= 7.8 %description matahari provides a QMF Agent that can be used to control and manage various pieces of functionality for an ovirt node, using the AMQP protocol. The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol providing reliable transport of messages. QMF provides a modeling framework layer on top of qpid (which implements AMQP). This interface allows you to manage a host and its various components as a set of objects with properties and methods. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} install %post /sbin/chkconfig --level 2345 matahari on /sbin/service matahari condrestart %preun if [ $1 = 0 ]; then /sbin/service matahari stop >/dev/null 2>&1 || : chkconfig --del matahari fi %postun if [ "$1" -ge "1" ]; then /sbin/service matahari condrestart >/dev/null 2>&1 || : fi %clean test "x%{buildroot}" != "x" && rm -rf %{buildroot} %files %defattr(644, root, root, 755) %dir %{_datadir}/matahari/ %{_datadir}/matahari/schema.xml %attr(755, root, root) %{_sbindir}/matahari %attr(755, root, root) %{_sysconfdir}/rc.d/init.d/matahari %config(noreplace) %{_sysconfdir}/sysconfig/matahari %doc AUTHORS COPYING %changelog * Thu Jul 16 2009 Arjun Roy - 0.0.4-4 - Changed buildroot value to meet fedora packaging guidelines - Updated project website * Mon Jul 13 2009 Arjun Roy - 0.0.4-3 - Quietened rpmlint errors and warnings. - Fixed most gcc warnings. - Changed init script so it doesn't run by default - Now rpm specfile makes it so service runs by default instead * Thu Jul 9 2009 Arjun Roy - 0.0.4-2 - Bumped qpidc and qmf version requirements to 0.5.790661. * Thu Jul 9 2009 Arjun Roy - 0.0.4-1 - Removed dependency on boost. Added dependency on pcre. * Thu Jul 2 2009 Arjun Roy - 0.0.3-2 - Fixed bug with not publishing host hypervisor and arch to broker - Updated aclocal.m4 to match new version of automake * Tue Jun 30 2009 Arjun Roy - 0.0.3-1 - Added getopt and daemonize support - Added sysV init script support * Mon Jun 29 2009 Arjun Roy - 0.0.2-1 - Now tracks hypervisor and arch using libvirt * Tue Jun 23 2009 Arjun Roy - 0.0.1-1 - Initial rpmspec packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/matahari/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:19:23 -0000 1.1 +++ .cvsignore 22 Jul 2009 15:02:56 -0000 1.2 @@ -0,0 +1 @@ +matahari-0.0.4.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/matahari/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:19:24 -0000 1.1 +++ sources 22 Jul 2009 15:02:56 -0000 1.2 @@ -0,0 +1 @@ +206ecd968f759d2a599a0d8c9d870189 matahari-0.0.4.tar.gz From toshio at fedoraproject.org Wed Jul 22 15:08:29 2009 From: toshio at fedoraproject.org (=?utf-8?b?VG9zaGlvIOOBj+OCieOBqOOBvw==?=) Date: Wed, 22 Jul 2009 15:08:29 +0000 (UTC) Subject: rpms/xz/EL-5 xz.spec,1.1,1.2 Message-ID: <20090722150829.10C0511C0099@cvs1.fedora.phx.redhat.com> Author: toshio Update of /cvs/pkgs/rpms/xz/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32635 Modified Files: xz.spec Log Message: * Wed Jul 22 2009 Toshio Kuratomi 4.999.8-0.7.beta.1 - Bump release for EPEL while we work out some kinks in how we build in koji for the infrastructure repo. Index: xz.spec =================================================================== RCS file: /cvs/pkgs/rpms/xz/EL-5/xz.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xz.spec 17 Jul 2009 18:19:25 -0000 1.1 +++ xz.spec 22 Jul 2009 15:08:28 -0000 1.2 @@ -1,7 +1,7 @@ Summary: LZMA compression utilities Name: xz Version: 4.999.8 -Release: 0.7.beta%{?dist} +Release: 0.7.beta%{?dist}.1 License: LGPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}beta.tar.gz @@ -102,6 +102,10 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Wed Jul 22 2009 Toshio Kuratomi 4.999.8-0.7.beta.1 +- Bump release for EPEL while we work out some kinks in how we build in koji + for the infrastructure repo. + * Fri Jul 17 2009 Bill Nottingham 4.999.8-0.7.beta - tweak summary - add %%check section () From npajkovs at fedoraproject.org Wed Jul 22 15:22:45 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Wed, 22 Jul 2009 15:22:45 +0000 (UTC) Subject: rpms/tk/devel tk-seg_input.patch,1.1,1.2 tk.spec,1.62,1.63 Message-ID: <20090722152245.F361511C0099@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/tk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5818 Modified Files: tk-seg_input.patch tk.spec Log Message: update to 8.5.7 tk-seg_input.patch: tkEvent.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) Index: tk-seg_input.patch =================================================================== RCS file: /cvs/extras/rpms/tk/devel/tk-seg_input.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tk-seg_input.patch 23 Feb 2009 12:38:49 -0000 1.1 +++ tk-seg_input.patch 22 Jul 2009 15:22:44 -0000 1.2 @@ -1,6 +1,6 @@ -diff -up tk8.5.6/generic/tkEvent.c.old tk8.5.6/generic/tkEvent.c ---- tk8.5.6/generic/tkEvent.c.old 2008-08-05 22:31:53.000000000 +0200 -+++ tk8.5.6/generic/tkEvent.c 2009-02-23 12:37:23.000000000 +0100 +diff -up tk8.5.7/generic/tkEvent.c.old tk8.5.7/generic/tkEvent.c +--- tk8.5.7/generic/tkEvent.c.old 2008-08-05 22:31:53.000000000 +0200 ++++ tk8.5.7/generic/tkEvent.c 2009-02-23 12:37:23.000000000 +0100 @@ -247,16 +247,10 @@ InvokeFocusHandlers( } @@ -20,18 +20,6 @@ diff -up tk8.5.6/generic/tkEvent.c.old t (*winPtrPtr)->dispPtr->lastEventTime = eventPtr->xkey.time; *winPtrPtr = TkFocusKeyEvent(*winPtrPtr, eventPtr); if (*winPtrPtr == NULL) { -@@ -359,6 +353,11 @@ CreateXIC( - XFree(preedit_attlist); - } - -+ if (winPtr->inputContext == NULL) { -+ /* XCreateIC failed. */ -+ return; -+ } -+ - /* - * Adjust the window's event mask if the IM requires it. - */ @@ -790,7 +789,7 @@ InvokeGenericHandlers( int done; Index: tk.spec =================================================================== RCS file: /cvs/extras/rpms/tk/devel/tk.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- tk.spec 25 Feb 2009 20:56:35 -0000 1.62 +++ tk.spec 22 Jul 2009 15:22:44 -0000 1.63 @@ -1,10 +1,10 @@ %define majorver 8.5 -%define vers %{majorver}.6 +%define vers %{majorver}.7 Summary: The graphical toolkit for the Tcl scripting language Name: tk Version: %{vers} -Release: 4%{?dist} +Release: 1%{?dist} Epoch: 1 License: TCL Group: Development/Languages @@ -116,6 +116,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Wed Jul 22 2009 Nikola Pajkovsky - 1:8.5.7-1 +- update to 8.5.7 + * Wed Feb 25 2009 Fedora Release Engineering - 1:8.5.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From npajkovs at fedoraproject.org Wed Jul 22 15:34:09 2009 From: npajkovs at fedoraproject.org (Nikola Pajkovsky) Date: Wed, 22 Jul 2009 15:34:09 +0000 (UTC) Subject: rpms/tk/devel .cvsignore,1.18,1.19 sources,1.21,1.22 Message-ID: <20090722153410.0925911C0099@cvs1.fedora.phx.redhat.com> Author: npajkovs Update of /cvs/extras/rpms/tk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9428 Modified Files: .cvsignore sources Log Message: forgot upload sources Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/tk/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 10 Feb 2009 06:59:48 -0000 1.18 +++ .cvsignore 22 Jul 2009 15:34:09 -0000 1.19 @@ -1,2 +1 @@ -tk8.5.5-src.tar.gz -tk8.5.6-src.tar.gz +tk8.5.7-src.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/tk/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 23 Feb 2009 12:38:48 -0000 1.21 +++ sources 22 Jul 2009 15:34:09 -0000 1.22 @@ -1 +1 @@ -7da2e00adddc7eed6080df904579d94e tk8.5.6-src.tar.gz +0764f63ae2106b4774c4ecb0ef391610 tk8.5.7-src.tar.gz From notting at fedoraproject.org Wed Jul 22 15:58:14 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Wed, 22 Jul 2009 15:58:14 +0000 (UTC) Subject: rpms/openssl/devel openssl.spec,1.131,1.132 Message-ID: <20090722155814.EF96F11C0099@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19238 Modified Files: openssl.spec Log Message: * Wed Jul 22 2009 Bill Nottingham - do not build special 'optimized' versions for i686, as that's the base arch in Fedora now Index: openssl.spec =================================================================== RCS file: /cvs/extras/rpms/openssl/devel/openssl.spec,v retrieving revision 1.131 retrieving revision 1.132 diff -u -p -r1.131 -r1.132 --- openssl.spec 30 Jun 2009 11:17:45 -0000 1.131 +++ openssl.spec 22 Jul 2009 15:57:43 -0000 1.132 @@ -17,9 +17,6 @@ # also be handled in opensslconf-new.h. %define multilib_arches %{ix86} ia64 ppc ppc64 s390 s390x sparcv9 sparc64 x86_64 -# Arches for which we don't build subpackages. -%define optimize_arches i686 - Summary: A general purpose cryptography library with TLS implementation Name: openssl Version: 0.9.8k @@ -343,19 +340,6 @@ install -m644 %{SOURCE9} \ $RPM_BUILD_ROOT/%{_prefix}/include/openssl/opensslconf.h %endif -%ifarch %{optimize_arches} -# Remove bits which belong in subpackages. -rm -rf $RPM_BUILD_ROOT/%{_prefix}/include/openssl -rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.a -rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.so -rm -rf $RPM_BUILD_ROOT/%{_libdir}/pkgconfig -rm -rf $RPM_BUILD_ROOT/%{_mandir}/man3/* - -rm -rf $RPM_BUILD_ROOT/%{_bindir}/c_rehash -rm -rf $RPM_BUILD_ROOT/%{_mandir}/man1*/*.pl* -rm -rf $RPM_BUILD_ROOT/%{_sysconfdir}/pki/tls/misc/*.pl -%endif - # Remove unused files from upstream fips support rm -rf $RPM_BUILD_ROOT/%{_bindir}/openssl_fips_fingerprint rm -rf $RPM_BUILD_ROOT/%{_libdir}/fips_premain.* @@ -394,7 +378,6 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/fipsca %attr(0644,root,root) %{_mandir}/man5*/* %attr(0644,root,root) %{_mandir}/man7*/* -%ifnarch %{optimize_arches} %files devel %defattr(-,root,root) %{_prefix}/include/openssl @@ -412,13 +395,16 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/fipsca %attr(0644,root,root) %{_mandir}/man1*/*.pl* %dir %{_sysconfdir}/pki/tls/misc %{_sysconfdir}/pki/tls/misc/*.pl -%endif %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %changelog +* Wed Jul 22 2009 Bill Nottingham +- do not build special 'optimized' versions for i686, as that's the base + arch in Fedora now + * Tue Jun 30 2009 Tomas Mraz 0.9.8k-6 - abort if selftests failed and random number generator is polled - mention EVP_aes and EVP_sha2xx routines in the manpages From lutter at fedoraproject.org Wed Jul 22 15:59:39 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Wed, 22 Jul 2009 15:59:39 +0000 (UTC) Subject: rpms/netcf/F-11 import.log, NONE, 1.1 netcf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090722155939.5356E11C0099@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/netcf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19726/F-11 Modified Files: .cvsignore sources Added Files: import.log netcf.spec Log Message: Initial Import --- NEW FILE import.log --- netcf-0_1_0-1_fc12:F-11:netcf-0.1.0-1.fc12.src.rpm:1248278301 --- NEW FILE netcf.spec --- Name: netcf Version: 0.1.0 Release: 1%{?dist}%{?extra_release} Summary: Cross-platform network configuration library Group: System Environment/Libraries License: LGPLv2+ URL: https://fedorahosted.org/netcf/ Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel augeas-devel >= 0.5.2 BuildRequires: libxml2-devel libxslt-devel Requires: %{name}-libs = %{version}-%{release} %description A library for modifying the network configuration of a system. Network configurations are expresed in a platform-independent XML format, which netcf translates into changes to the system's 'native' network configuration files. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package libs Summary: Libraries for %{name} Group: System Environment/Libraries %description libs The libraries for %{name}. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %{_bindir}/ncftool %files libs %defattr(-,root,root,-) %{_datadir}/netcf %{_libdir}/*.so.* %doc AUTHORS COPYING NEWS %files devel %defattr(-,root,root,-) %doc %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/netcf.pc %changelog * Mon Jul 13 2009 David Lutterkort - 0.1.0-1 - BR on augeas-0.5.2 - Drop explicit requires for augeas-libs * Wed Apr 15 2009 David Lutterkort - 0.0.2-1 - Updates acording to Fedora review * Fri Feb 27 2009 David Lutterkort - 0.0.1-1 - Initial specfile Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netcf/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Apr 2009 21:32:04 -0000 1.1 +++ .cvsignore 22 Jul 2009 15:59:07 -0000 1.2 @@ -0,0 +1 @@ +netcf-0.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netcf/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Apr 2009 21:32:04 -0000 1.1 +++ sources 22 Jul 2009 15:59:08 -0000 1.2 @@ -0,0 +1 @@ +6172c399b47a5311ff8d70fd2efd1823 netcf-0.1.0.tar.gz From wtogami at fedoraproject.org Wed Jul 22 16:00:32 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Wed, 22 Jul 2009 16:00:32 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.82,1.83 Message-ID: <20090722160032.A571111C0489@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20575 Modified Files: pidgin.spec Log Message: Fully remove perl stuff from libpurple Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- pidgin.spec 22 Jul 2009 03:07:24 -0000 1.82 +++ pidgin.spec 22 Jul 2009 16:00:32 -0000 1.83 @@ -554,6 +554,7 @@ rm -rf $RPM_BUILD_ROOT %endif %exclude %{_libdir}/purple-2/tcl.so %exclude %{_libdir}/purple-2/perl.so +%exclude %{_libdir}/purple-2/perl/ %files -n libpurple-devel %defattr(-,root,root,-) From rrakus at fedoraproject.org Wed Jul 22 16:01:11 2009 From: rrakus at fedoraproject.org (Roman Rakus) Date: Wed, 22 Jul 2009 16:01:11 +0000 (UTC) Subject: rpms/python-docs/devel python-2.6-import_error.patch, NONE, 1.1 python-docs.spec, 1.20, 1.21 Message-ID: <20090722160111.14CFE11C0099@cvs1.fedora.phx.redhat.com> Author: rrakus Update of /cvs/extras/rpms/python-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20983 Modified Files: python-docs.spec Added Files: python-2.6-import_error.patch Log Message: Fix import error (#511647) python-2.6-import_error.patch: pyspecific.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE python-2.6-import_error.patch --- diff -up Python-2.6/Doc/tools/sphinxext/pyspecific.py.import_error Python-2.6/Doc/tools/sphinxext/pyspecific.py --- Python-2.6/Doc/tools/sphinxext/pyspecific.py.import_error 2009-07-22 17:31:20.000000000 +0200 +++ Python-2.6/Doc/tools/sphinxext/pyspecific.py 2009-07-22 17:31:41.000000000 +0200 @@ -48,7 +48,7 @@ from pprint import pformat from docutils.io import StringOutput from docutils.utils import new_document from sphinx.builder import Builder -from sphinx.textwriter import TextWriter +from sphinx.writers.text import TextWriter class PydocTopicsBuilder(Builder): name = 'pydoc-topics' Index: python-docs.spec =================================================================== RCS file: /cvs/extras/rpms/python-docs/devel/python-docs.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- python-docs.spec 6 May 2009 12:10:21 -0000 1.20 +++ python-docs.spec 22 Jul 2009 16:01:10 -0000 1.21 @@ -13,7 +13,7 @@ Summary: Documentation for the Python programming language Name: %{python}-docs Version: %{pybasever} -Release: 3%{?dist} +Release: 4%{?dist} License: Python Group: Documentation Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2 @@ -22,6 +22,10 @@ BuildArch: noarch Patch4: python-2.6-nowhatsnew.patch Patch18: python-2.6-extdocmodules.patch +# False import makes python-docs to be unbuildable (#511647) +# Is fixed in python-2.6.2, but we use python-2.6 so far +Patch19: python-2.6-import_error.patch + Requires: %{python} = %{version} %if %{main_python} Obsoletes: python2-docs @@ -47,6 +51,7 @@ for the Python language. %patch4 -p1 -b .nowhatsnew %patch18 -p1 -b .extdocmodules +%patch19 -p1 -b .import_error %build make -C Doc html @@ -66,6 +71,9 @@ rm -fr $RPM_BUILD_ROOT %doc Misc/HISTORY Doc/build/html %changelog +* Wed Jul 22 2009 Roman Rakus - 2.6-4 +- Fix import error (#511647) + * Wed May 06 2009 Roman Rakus - 2.6-3 - Spec file cleanup (#226341) From gerd at fedoraproject.org Wed Jul 22 16:03:09 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Wed, 22 Jul 2009 16:03:09 +0000 (UTC) Subject: rpms/parrot/F-9 parrot-1.0.0-rpath-removal.patch, 1.2, 1.3 parrot-install_files.patch, 1.2, 1.3 .cvsignore, 1.3, 1.4 import.log, 1.2, 1.3 parrot.spec, 1.2, 1.3 sources, 1.3, 1.4 parrot-1.x.0.patch, 1.1, NONE Message-ID: <20090722160309.2A8E211C0099@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21467/F-9 Modified Files: .cvsignore import.log parrot.spec sources Added Files: parrot-1.0.0-rpath-removal.patch parrot-install_files.patch Removed Files: parrot-1.x.0.patch Log Message: parrot-1.0.0-rpath-removal.patch: libparrot.pm | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) Index: parrot-1.0.0-rpath-removal.patch =================================================================== RCS file: parrot-1.0.0-rpath-removal.patch diff -N parrot-1.0.0-rpath-removal.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ parrot-1.0.0-rpath-removal.patch 22 Jul 2009 16:03:08 -0000 1.3 @@ -0,0 +1,26 @@ +--- config/inter/libparrot.pm ++++ config/inter/libparrot.pm +@@ -98,21 +98,13 @@ + # Set -rpath (or equivalent) for executables to find the + # shared libparrot in the build directory. + $conf->data->set( +- rpath_blib => ( $parrot_is_shared && $conf->data->get('rpath') ) +- ? $conf->data->get('rpath') +- . $conf->data->get('build_dir') +- . $conf->data->get('slash') +- . $conf->data->get('blib_dir') +- : '' ++ rpath_blib => '' + ); + + # Set -rpath (or equivalent) for the installed executables to find the + # installed shared libparrot. + $conf->data->set( +- rpath_lib => ( $parrot_is_shared && $conf->data->get('rpath') ) +- ? $conf->data->get('rpath') +- . $conf->data->get('libdir') +- : '' ++ rpath_lib => '' + ); + + unless ( defined( $conf->data->get('libparrot_ldflags') ) ) { parrot-install_files.patch: install_files.pl | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) Index: parrot-install_files.patch =================================================================== RCS file: parrot-install_files.patch diff -N parrot-install_files.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ parrot-install_files.patch 22 Jul 2009 16:03:08 -0000 1.3 @@ -0,0 +1,28 @@ +--- tools/dev/install_files.pl 2009-03-11 00:35:20.000000000 +0100 ++++ tools/dev/install_files.pl 2009-04-17 14:34:25.000000000 +0200 +@@ -217,7 +217,7 @@ + # as it is typically done with automake installed packages. If there + # is a use case to make this configurable we'll add a seperate + # --pkgconfigdir option. +- $dest = File::Spec->catdir( $options{libdir}, 'pkgconfig', $parrotdir, $dest ); ++ $dest = File::Spec->catdir( $options{libdir}, 'pkgconfig', $dest ); + } + elsif ( /^compilers/ ) { + $dest =~ s/^compilers/languages/; +@@ -292,6 +292,16 @@ + else { + next unless -e $src; + next if $^O eq 'cygwin' and -e "$src.exe"; # stat works, copy not ++ if (-l $src) { ++ # check if the system supports symbolic linking ++ use Config; ++ if ($Config{d_symlink} && $Config{d_readlink}) { ++ # copy as symbolic link ++ symlink(readlink($src), $dest); ++ print "$dest\n"; ++ next; ++ } ++ } + copy( $src, $dest ) or die "copy $src to $dest: $!\n"; + print "$dest\n"; + } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jul 2009 16:46:31 -0000 1.3 +++ .cvsignore 22 Jul 2009 16:03:08 -0000 1.4 @@ -1 +1 @@ -parrot-1.4.0.tar.gz +parrot-1.0.0.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 21 Jul 2009 16:46:31 -0000 1.2 +++ import.log 22 Jul 2009 16:03:08 -0000 1.3 @@ -1,2 +1,3 @@ parrot-1_0_0-6_fc10:F-9:parrot-1.0.0-6.fc10.src.rpm:1241002909 parrot-1_4_0-1_fc11:F-9:parrot-1.4.0-1.fc11.src.rpm:1248194441 +parrot-1_0_0-6_fc9:F-9:parrot-1.0.0-6.fc9.src.rpm:1248278479 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/parrot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- parrot.spec 21 Jul 2009 16:46:32 -0000 1.2 +++ parrot.spec 22 Jul 2009 16:03:08 -0000 1.3 @@ -1,29 +1,19 @@ Name: parrot -Version: 1.4.0 -Release: 1%{?dist} +Version: 1.0.0 +Release: 6%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries URL: http://www.parrot.org/ -Source0: ftp://ftp.parrot.org/pub/parrot/releases/devel/%{version}/parrot-%{version}.tar.gz - -Patch0: parrot-1.x.0.patch -# see for upstream: https://trac.parrot.org/parrot/ticket/735 -# patched files: tools/dev/install_files.pl -# tools/dev/install_dev_files.pl -# Changes the path for header files (to have no version subdirectory) -# It is also responsible to have no subdirectory under pkgconfig. -# -# see for upstream: https://trac.parrot.org/parrot/ticket/509 -# patched file: lib/Parrot/Install.pm -# is to have the symlink: libparrot.so -> libparrot.so.%{version} -# Without this %{_libdir}/libparrot.so would not be a symbolic link to +Source0: ftp://ftp.parrot.org/pub/parrot/releases/stable/%{version}/parrot-%{version}.tar.gz +# Without Patch0 %{_libdir}/libparrot.so would not be a symbolic link to # %{_libdir}/libparrot.so.%{version} -# -# see for upstream: https://trac.parrot.org/parrot/ticket/844 -# patched file: MANIFEST.generated -# Add two perl-srcipts that are need to build Rakudo +# Symlink: libparrot.so -> libparrot.so.%{version} +# See for upstream: https://trac.parrot.org/parrot/ticket/509 +# Extended for the package to have no subdirectory under pkgconfig +Patch0: parrot-install_files.patch +Patch1: parrot-1.0.0-rpath-removal.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel @@ -35,7 +25,6 @@ BuildRequires: perl(Test::Harness) BuildRequires: perl(Test::Simple) BuildRequires: ctags BuildRequires: openssl-devel -BuildRequires: flex %package docs @@ -43,9 +32,6 @@ Summary: Parrot Virtual Machine d Group: Documentation Requires: perl(strict) Requires: perl(warnings) -BuildArch: noarch - -#-- %package devel Summary: Parrot Virtual Machine development headers and libraries @@ -53,8 +39,6 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig -#-- - %package tools Summary: Parrot Virtual Machine development for languages Group: Development/Libraries @@ -67,32 +51,25 @@ Provides: perl(Parrot::Pmc2c::Meth Provides: perl(Parrot::Pmc2c::PCCMETHOD_BITS) = %{version} Provides: perl(Parrot::Pmc2c::PMCEmitter) = %{version} - %description Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Parrot is the target for Rakudo Perl 6, as well as variety of other languages. -#-- - %description docs Documentation in text-, POD- and HTML-format (docs/html-subdirectory) and also examples about the Parrot Virtual Machine. -#-- - %description devel Parrot Virtual Machine development headers and libraries. -#-- - %description tools Parrot Virtual Machine development files for building languages. - %prep %setup -q %patch0 -p0 +%patch1 -b .rpatch %{__perl} -pi -e 's,"lib/,"%{_lib}/, if (/CONST_STRING\(interp,/)' \ src/library.c @@ -128,7 +105,6 @@ chmod +x %{__perl_provides} --cxx=%{__cxx} \ --optimize="$RPM_OPT_FLAGS" \ --parrot_is_shared \ - --disable-rpath \ --lex=%{_bindir}/flex \ --yacc=%{_bindir}/yacc \ --libs='-lcurses -lm' @@ -181,9 +157,6 @@ find %{RPM_PAR_LIB_DIR}tools -type f -na find %{RPM_PAR_LIB_DIR}tools/dev -type f -name "pbc_to_exe.pir" \ -exec %{__sed} -i -e '1 s&#! parrot&#!/usr/bin/parrot&' {} \; \ -exec chmod 755 {} \; -# Set path to perl binary -find %{RPM_PAR_LIB_DIR}tools/build -type f -name "dyn*.pl" \ - -exec %{__sed} -i -e '1 s&# ex: set ro:&#!/usr/bin/perl&' {} \; # This module is only needed for building and should not be installed (I think) # module "Parrot::OpLib::core" rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parrot/OpLib @@ -192,8 +165,6 @@ rm -rf %{RPM_PAR_LIB_DIR}tools/lib/Parro find docs/html -type f -size 0 -exec rm -f {} \; # Set path for installed programs in docs package -find examples/json -type f -name "*.pir" \ - -exec %{__sed} -i -e '1 s&#!../../parrot&#!/usr/bin/parrot&' {} \; find examples -type f -name "*.pl" \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; find examples -wholename 'examples/pir/befunge/t/basic.t' \ @@ -218,7 +189,7 @@ find examples -wholename 'examples/langu find examples/languages -type f -name harness \ -exec %{__sed} -i -e '1 s&#! perl&#!/usr/bin/perl&' {} \; -for file in docs/book/draft/ch05_pge.pod docs/memory_internals.pod; do +for file in docs/book/ch09_pct.pod docs/memory_internals.pod; do %{__mv} $file timestamp iconv -f ISO-8859-1 -t UTF-8 -o $file timestamp touch -r timestamp $file @@ -272,7 +243,6 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pbc_to_exe %{_bindir}/pbc_dump %{_includedir}/parrot -%{_includedir}/pmc %{_libdir}/libparrot.so %exclude %{_libdir}/libparrot.a %{_libdir}/pkgconfig/* @@ -286,9 +256,6 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 -- add the new disable-rpath configure option - * Thu Apr 23 2009 Gerd Pokorra 1.0.0-6 - add a list of changes from Lubomir Rintel - add patch to remove rpath @@ -331,18 +298,30 @@ rm -rf $RPM_BUILD_ROOT - added make html - make reallyinstall => make install +* Tue Jan 20 2009 chromatic 0.9.0 +- updated to 0.9.0 + * Tue Dec 16 2008 Whiteknight 0.8.2 - updated to 0.8.2 +* Tue Nov 18 2008 chromatic 0.8.1 +- updated to 0.8.1 + * Tue Oct 21 2008 particle 0.8.0 - updated to 0.8.0 +* Tue Sep 16 2008 pmichaud 0.7.1 +- updated to 0.7.1 + * Wed Sep 3 2008 chromatic 0.7.0 - install parrot_config (not parrot-config) * Tue Jun 17 2008 Nuno Carvalho 0.6.3 - updated to 0.6.3 +* Tue May 20 2008 chromatic > 0.6.2 +- updated to 0.6.2 + * Mon Apr 28 2008 chromatic 0.6.1 - minor fixes; tested with Fedora 7, 8, and 9-beta @@ -358,12 +337,27 @@ rm -rf $RPM_BUILD_ROOT * Tue Dec 18 2007 Jonathan Worthington 0.5.1 - Update to 0.5.1. +* Tue Nov 20 2007 chromatic 0.5.0 +- Update to 0.5.0. + +* Fri May 25 2007 David Fetter 0.4.12-1 +- Update to 0.4.12. + +* Wed Apr 18 2007 Steven Pritchard 0.4.11-1 +- Update to 0.4.11. + +* Wed Mar 21 2007 Steven Pritchard 0.4.10-1 +- Update to 0.4.10. + * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. - BR ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. +* Wed Jan 17 2007 Steven Pritchard 0.4.8-1 +- Attempt update to 0.4.8. + * Fri Jun 30 2006 Steven Pritchard 0.4.5-5 - Override lib_dir and make various substitutions to try to fix multilib. - Remove rpath use from Makefile. @@ -383,5 +377,8 @@ rm -rf $RPM_BUILD_ROOT - Add -lcurses to get readline detection to work. - BR libicu-devel. +* Tue Jun 27 2006 Steven Pritchard 0.4.5-1 +- Initial packaging attempt. + * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-9/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jul 2009 16:46:32 -0000 1.3 +++ sources 22 Jul 2009 16:03:08 -0000 1.4 @@ -1 +1 @@ -3f66816c0f2ba18bdd2cf7bedd59f045 parrot-1.4.0.tar.gz +649ce1fb7c0edaf89dc1cd52ff267b1a parrot-1.0.0.tar.gz --- parrot-1.x.0.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 22 16:19:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:19:22 +0000 Subject: [pkgdb] python-sqlalchemy: bretm has requested watchbugzilla Message-ID: <20090722161922.2AD1510F8A9@bastion2.fedora.phx.redhat.com> bretm has requested the watchbugzilla acl on python-sqlalchemy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sqlalchemy From pkgdb at fedoraproject.org Wed Jul 22 16:19:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:19:25 +0000 Subject: [pkgdb] python-sqlalchemy: bretm has requested watchcommits Message-ID: <20090722161925.CCFA710F890@bastion2.fedora.phx.redhat.com> bretm has requested the watchcommits acl on python-sqlalchemy (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sqlalchemy From pkgdb at fedoraproject.org Wed Jul 22 16:23:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:23:36 +0000 Subject: [pkgdb] python-sqlalchemy had acl change status Message-ID: <20090722162336.E36FF10F8B0@bastion2.fedora.phx.redhat.com> toshio has set the watchcommits acl on python-sqlalchemy (Fedora EPEL 5) to Approved for bretm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sqlalchemy From behdad at fedoraproject.org Wed Jul 22 16:27:38 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Wed, 22 Jul 2009 16:27:38 +0000 (UTC) Subject: rpms/pango/devel .cvsignore, 1.89, 1.90 pango.spec, 1.163, 1.164 sources, 1.90, 1.91 Message-ID: <20090722162738.3178E11C0099@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/pango/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30841 Modified Files: .cvsignore pango.spec sources Log Message: * Wed Jul 22 2009 Behdad Esfahbod - 1.24.5-1 - Update to 1.24.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pango/devel/.cvsignore,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- .cvsignore 30 Jun 2009 23:48:16 -0000 1.89 +++ .cvsignore 22 Jul 2009 16:27:07 -0000 1.90 @@ -1 +1 @@ -pango-1.24.4.tar.bz2 +pango-1.24.5.tar.bz2 Index: pango.spec =================================================================== RCS file: /cvs/pkgs/rpms/pango/devel/pango.spec,v retrieving revision 1.163 retrieving revision 1.164 diff -u -p -r1.163 -r1.164 --- pango.spec 30 Jun 2009 23:48:16 -0000 1.163 +++ pango.spec 22 Jul 2009 16:27:07 -0000 1.164 @@ -8,7 +8,7 @@ Summary: System for layout and rendering of internationalized text Name: pango -Version: 1.24.4 +Version: 1.24.5 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -225,6 +225,9 @@ fi %changelog +* Wed Jul 22 2009 Behdad Esfahbod - 1.24.5-1 +- Update to 1.24.5 + * Tue Jun 30 2009 Matthias Clasen - 1.24.4-1 - Update to 1.24.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pango/devel/sources,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- sources 30 Jun 2009 23:48:16 -0000 1.90 +++ sources 22 Jul 2009 16:27:07 -0000 1.91 @@ -1 +1 @@ -f2eeaf183930e00ed28fca3a6ed1deb0 pango-1.24.4.tar.bz2 +815416a452e9cccc172fed9862401f37 pango-1.24.5.tar.bz2 From behdad at fedoraproject.org Wed Jul 22 16:30:44 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Wed, 22 Jul 2009 16:30:44 +0000 (UTC) Subject: rpms/pango/F-11 pango.spec,1.162,1.163 sources,1.89,1.90 Message-ID: <20090722163044.660FA11C049A@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/pango/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32177 Modified Files: pango.spec sources Log Message: * Wed Jul 22 2009 Behdad Esfahbod - 1.24.5-1 - Update to 1.24.5 Index: pango.spec =================================================================== RCS file: /cvs/pkgs/rpms/pango/F-11/pango.spec,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- pango.spec 1 Jul 2009 00:13:11 -0000 1.162 +++ pango.spec 22 Jul 2009 16:30:14 -0000 1.163 @@ -8,7 +8,7 @@ Summary: System for layout and rendering of internationalized text Name: pango -Version: 1.24.4 +Version: 1.24.5 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -225,6 +225,9 @@ fi %changelog +* Wed Jul 22 2009 Behdad Esfahbod - 1.24.5-1 +- Update to 1.24.5 + * Tue Jun 30 2009 Matthias Clasen - 1.24.4-1 - Update to 1.24.4 - http://download.gnome.org/sources/pango/1.24/pango-1.24.4.news Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pango/F-11/sources,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- sources 1 Jul 2009 00:13:11 -0000 1.89 +++ sources 22 Jul 2009 16:30:14 -0000 1.90 @@ -1 +1 @@ -f2eeaf183930e00ed28fca3a6ed1deb0 pango-1.24.4.tar.bz2 +815416a452e9cccc172fed9862401f37 pango-1.24.5.tar.bz2 From pkgdb at fedoraproject.org Wed Jul 22 16:23:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:23:36 +0000 Subject: [pkgdb] python-sqlalchemy had acl change status Message-ID: <20090722162336.66F2910F890@bastion2.fedora.phx.redhat.com> toshio has set the watchbugzilla acl on python-sqlalchemy (Fedora EPEL 5) to Approved for bretm To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sqlalchemy From gerd at fedoraproject.org Wed Jul 22 16:31:51 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Wed, 22 Jul 2009 16:31:51 +0000 (UTC) Subject: rpms/parrot/devel import.log,1.5,1.6 parrot.spec,1.5,1.6 Message-ID: <20090722163151.79D9111C0099@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32650/devel Modified Files: import.log parrot.spec Log Message: update to 1.4.0-3 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 21 Jul 2009 16:54:33 -0000 1.5 +++ import.log 22 Jul 2009 16:31:51 -0000 1.6 @@ -3,3 +3,4 @@ parrot-1_1_0-1_38922svn_fc10:HEAD:parrot parrot-1_2_0-1_fc11:HEAD:parrot-1.2.0-1.fc11.src.rpm:1243357683 parrot-1_3_0-1_39897svn_fc10:HEAD:parrot-1.3.0-1.39897svn.fc10.src.rpm:1246881189 parrot-1_4_0-1_fc11:HEAD:parrot-1.4.0-1.fc11.src.rpm:1248194953 +parrot-1_4_0-3_fc11:HEAD:parrot-1.4.0-3.fc11.src.rpm:1248279950 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/parrot.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- parrot.spec 21 Jul 2009 16:54:33 -0000 1.5 +++ parrot.spec 22 Jul 2009 16:31:51 -0000 1.6 @@ -1,6 +1,6 @@ Name: parrot Version: 1.4.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries @@ -113,9 +113,9 @@ chmod +x %{__perl_provides} %ifarch %{ix86} x86_64 RPM_OPT_FLAGS="$RPM_OPT_FLAGS -maccumulate-outgoing-args" %else -# PowerPC, not all optimize-options work with the PowerPC-architecture -# the PGE don't build with the optimize="-O2" option on PowerPC - RPM_OPT_FLAGS=`echo "$RPM_OPT_FLAGS" | %{__perl} -pi -e 's/-O2//'` +# The PowerPC-architecture do not build with the '-maccumulate-outgoing-args' +# option. + RPM_OPT_FLAGS="$RPM_OPT_FLAGS" %endif %{__perl} Configure.pl \ @@ -234,8 +234,10 @@ rm -rf $RPM_BUILD_ROOT%{_usr}/config \ # 'make fulltest' is done by default; it take a lot of time export LD_LIBRARY_PATH=$( pwd )/blib/lib FULL='full' +%ifnarch ppc ppc64 %{?_without_fulltest: FULL=''} %{?!_without_tests: make ${FULL}test} +%endif %clean @@ -360,7 +362,7 @@ rm -rf $RPM_BUILD_ROOT * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. -- BR ncurses-devel. +- BuildRequires ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. @@ -381,7 +383,7 @@ rm -rf $RPM_BUILD_ROOT * Tue Jun 27 2006 Steven Pritchard 0.4.5-2 - Add -lcurses to get readline detection to work. -- BR libicu-devel. +- Add BuildRequires libicu-devel. * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created From deji at fedoraproject.org Wed Jul 22 16:38:18 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Wed, 22 Jul 2009 16:38:18 +0000 (UTC) Subject: rpms/mpich2/devel .cvsignore, 1.5, 1.6 mpich2.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090722163818.750FB11C0099@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/mpich2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2975 Modified Files: .cvsignore mpich2.spec sources Log Message: * Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 - Update to 1.1.1 - Remove (and obsolete) the -libs subpackage, it is not necessary. - Change e2fsprogs BR to libuuid Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Jun 2009 18:49:29 -0000 1.5 +++ .cvsignore 22 Jul 2009 16:38:18 -0000 1.6 @@ -1 +1 @@ -mpich2-1.1.tar.gz +mpich2-1.1.1.tar.gz Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/devel/mpich2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mpich2.spec 3 Jun 2009 18:49:30 -0000 1.8 +++ mpich2.spec 22 Jul 2009 16:38:18 -0000 1.9 @@ -1,16 +1,17 @@ Summary: A high-performance implementation of MPI Name: mpich2 -Version: 1.1 +Version: 1.1.1 Release: 1%{?dist} License: MIT Group: Development/Libraries URL: http://www.mcs.anl.gov/research/projects/mpich2 -Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/src/%{name}-%{version}.tar.gz +Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libXt-devel, e2fsprogs-devel +BuildRequires: libXt-devel, libuuid-devel BuildRequires: java-devel-openjdk, gcc-gfortran BuildRequires: emacs-common, perl, python -Requires: %{name}-libs = %{version}-%{release} +Obsoletes: %{name}-libs < 1.1.1 +Requires: environment-modules Requires: python Requires(post): chkconfig Requires(preun):chkconfig @@ -44,13 +45,6 @@ Requires(posttrans):/usr/sbin/alternativ %description devel Contains development headers and libraries for mpich2 -%package libs -Summary: Libraries and configuration files for mpich2 -Group: Development/Libraries - -%description libs -Contains the arch dependent libraries and their build configuration for mpich2 - # We only compile with gcc, but other people may want other compilers. # Set the compiler here. %{!?opt_cc: %global opt_cc gcc} @@ -80,11 +74,9 @@ Contains the arch dependent libraries an %prep %setup -q -sed -i 's#LDFLAGS -static#LDFLAGS#' src/pm/hydra/configure %configure \ --enable-sharedlibs=gcc \ - --enable-threads \ --with-device=%{selected_channels} \ --sysconfdir=%{_sysconfdir}/%{name}-%{mode} \ --includedir=%{_includedir}/%{name} \ @@ -116,6 +108,8 @@ pushd %{buildroot}%{_bindir}/ ln -s mpiexec.py mpdrun touch mpiexec touch mpirun +rm -f mpic++ +touch mpic++ popd for b in mpicxx mpicc mpif77 mpif90; do mv %{buildroot}%{_bindir}/$b %{buildroot}%{_bindir}/mp%{mode}-$b; @@ -129,8 +123,10 @@ mkdir -p %{buildroot}%{_datadir}/%{name} for b in mpicxx mpicc mpif77 mpif90; do ln -s ../../../bin/mp%{mode}-$b %{buildroot}%{_datadir}/%{name}/bin%{mode}/$b done -for ex in mpiexec mpirun; do - ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$ex +ln -s ../../../bin/mp%{mode}-mpicxx %{buildroot}%{_datadir}/%{name}/bin%{mode}/mpic++ + +for bn in mpiexec mpirun; do + ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$bn done mv %{buildroot}%{_libdir}/%{name}/pkgconfig %{buildroot}%{_libdir}/ @@ -142,8 +138,9 @@ echo "%{_libdir}/%{name}" \ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf # Adjust the default 'environment module' PATH for our changes -sed -i 's#bin#bin'%{mode}'#' %{buildroot}%{_datadir}/%{name}/%{name}.module - +mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles +cp -pr src/packaging/envmods/mpich2.module %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} +sed -i 's#'%{_bindir}'#'%{_datadir}/%{name}/bin%{mode}'#' %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} # Manually copy doc file here instead of the %files section to prevent the rpm #build script from throwing the other things in there out @@ -170,6 +167,9 @@ find %{buildroot} -type f -name "*.la" - rm -rf %{buildroot} %post + +/sbin/ldconfig + if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpirun mpi-run %{_bindir}/mpiexec.py 41 \ @@ -182,7 +182,7 @@ if [ $1 -eq 1 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -199,7 +199,7 @@ if [ $1 -eq 0 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -208,11 +208,14 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpi-run %{_bindir}/mpiexec.py fi +%postun -p /sbin/ldconfig + %post devel if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -222,6 +225,7 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -231,24 +235,25 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpicc %{_bindir}/mp%{mode}-mpicc fi -%post libs -p /sbin/ldconfig - -%postun libs -p /sbin/ldconfig - %files %defattr(-,root,root,-) %{_bindir}/* +%dir %{_libdir}/%{name} +%{_libdir}/%{name}/*.jar +%{_libdir}/%{name}/mpe*.o +%{_libdir}/%{name}/*.so.* %dir %{_datadir}/%{name} %dir %{_datadir}/%{name}/bin%{mode} %{_datadir}/%{name}/bin%{mode}/mpiexec %{_datadir}/%{name}/bin%{mode}/mpirun %exclude %{_bindir}/mpiexec %exclude %{_bindir}/mpirun -%exclude %{_bindir}/*mpicc -%exclude %{_bindir}/*mpicxx -%exclude %{_bindir}/*mpif90 -%exclude %{_bindir}/*mpif77 +%exclude %{_bindir}/*mpic* +%exclude %{_bindir}/*mpif* +%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf +%config %{_sysconfdir}/%{name}-%{mode}/ %doc %{_docdir}/%{name}-%{version}/ +%doc %{_datadir}/%{name}/doc/ %{_mandir}/man1/mp-*.1.gz %if 0%{?fedora} < 11 %exclude %{_bindir}/mp*.pyc @@ -259,20 +264,12 @@ fi %ghost %{_mandir}/man1/mpi*.1.gz %ghost %{_mandir}/man1/MPI.1.gz -%files libs -%defattr(-,root,root,-) -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/*.jar -%{_libdir}/%{name}/mpe*.o -%{_libdir}/%{name}/*.so.* -%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf -%config %{_sysconfdir}/%{name}-%{mode}/ - %files devel %defattr(-,root,root,-) %{_bindir}/mp%{mode}* %ghost %{_bindir}/mpicc %ghost %{_bindir}/mpicxx +%ghost %{_bindir}/mpic++ %ghost %{_bindir}/mpif90 %ghost %{_bindir}/mpif77 %{_includedir}/* @@ -280,17 +277,22 @@ fi %{_libdir}/%{name}/*.so %{_libdir}/%{name}/trace_rlog/libTraceInput.so %{_libdir}/pkgconfig/%{name}-ch3.pc -%{_datadir}/%{name}/%{name}.module +%{_datadir}/Modules/modulefiles/%{name}-%{mode} %{_datadir}/%{name}/bin%{mode}/mpicc %{_datadir}/%{name}/bin%{mode}/mpicxx +%{_datadir}/%{name}/bin%{mode}/mpic++ %{_datadir}/%{name}/bin%{mode}/mpif90 %{_datadir}/%{name}/bin%{mode}/mpif77 %{_datadir}/%{name}/examples* %{_datadir}/%{name}/logfiles/ %{_mandir}/man4/*.gz -%doc README.testing README.romio README.developer %changelog +* Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 +- Update to 1.1.1 +- Remove (and obsolete) the -libs subpackage, it is not necessary. +- Change e2fsprogs BR to libuuid + * Wed May 20 2009 Deji Akingunola - 1.1-1 - Update to 1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 3 Jun 2009 18:49:30 -0000 1.5 +++ sources 22 Jul 2009 16:38:18 -0000 1.6 @@ -1 +1 @@ -aad757e1c1502429170403bb3c1a1ace mpich2-1.1.tar.gz +01bffc9233411495c973d52c8ee15bf9 mpich2-1.1.1.tar.gz From pkgdb at fedoraproject.org Wed Jul 22 16:38:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:38:27 +0000 Subject: [pkgdb] asciidoc had acl change status Message-ID: <20090722163827.CA42E10F8AD@bastion2.fedora.phx.redhat.com> chrisw has set the watchbugzilla acl on asciidoc (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From pkgdb at fedoraproject.org Wed Jul 22 16:38:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:38:33 +0000 Subject: [pkgdb] asciidoc had acl change status Message-ID: <20090722163833.6B75C10F8AF@bastion2.fedora.phx.redhat.com> chrisw has set the watchcommits acl on asciidoc (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From pkgdb at fedoraproject.org Wed Jul 22 16:38:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 16:38:36 +0000 Subject: [pkgdb] asciidoc had acl change status Message-ID: <20090722163836.5235710F8B2@bastion2.fedora.phx.redhat.com> chrisw has set the commit acl on asciidoc (Fedora devel) to Approved for tmz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/asciidoc From ausil at fedoraproject.org Wed Jul 22 16:38:38 2009 From: ausil at fedoraproject.org (Dennis Gilmore) Date: Wed, 22 Jul 2009 16:38:38 +0000 (UTC) Subject: rpms/jabberd/EL-5 jabberd-size_t.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 jabberd, 1.8, 1.9 jabberd.spec, 1.17, 1.18 sources, 1.6, 1.7 Message-ID: <20090722163838.C795A11C0099@cvs1.fedora.phx.redhat.com> Author: ausil Update of /cvs/pkgs/rpms/jabberd/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2812 Modified Files: .cvsignore jabberd jabberd.spec sources Added Files: jabberd-size_t.patch Log Message: update jabberd to same as fedora. it fixes issues that have been seen on spacewalk jabberd-size_t.patch: sasl_gsasl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- NEW FILE jabberd-size_t.patch --- diff -uNr jabberd-2.2.7.1.orig/sx/sasl_gsasl.c jabberd-2.2.7.1/sx/sasl_gsasl.c --- jabberd-2.2.7.1.orig/sx/sasl_gsasl.c 2009-02-24 23:28:33.000000000 +0100 +++ jabberd-2.2.7.1/sx/sasl_gsasl.c 2009-06-18 16:57:29.681574813 +0200 @@ -210,7 +210,8 @@ static int _sx_sasl_wio(sx_t s, sx_plugin_t p, sx_buf_t buf) { sx_error_t sxe; - int len, ret; + size_t len; + int ret; char *out; Gsasl_session *sd = (Gsasl_session *) s->plugin_data[p->index]; @@ -237,7 +238,8 @@ static int _sx_sasl_rio(sx_t s, sx_plugin_t p, sx_buf_t buf) { sx_error_t sxe; - int len, ret; + size_t len; + int ret; char *out; Gsasl_session *sd = (Gsasl_session *) s->plugin_data[p->index]; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/jabberd/EL-5/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 3 Feb 2009 08:51:32 -0000 1.6 +++ .cvsignore 22 Jul 2009 16:38:08 -0000 1.7 @@ -1 +1 @@ -jabberd-2.2.5.tar.bz2 +jabberd-2.2.8.tar.bz2 Index: jabberd =================================================================== RCS file: /cvs/pkgs/rpms/jabberd/EL-5/jabberd,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jabberd 7 Aug 2006 09:45:11 -0000 1.8 +++ jabberd 22 Jul 2009 16:38:08 -0000 1.9 @@ -73,12 +73,12 @@ Start ( ) { args="-c ${confPath}/${prog}.xml" if [ ${prog} == "c2s" -a ! -z "$C2S_AS_ROOT" ]; then if [ $C2S_AS_ROOT == "yes" ]; then - daemon --user root "${progsPath}/${prog} ${args} & 2> /dev/null" + daemon --user root "${progsPath}/${prog} ${args} >/dev/null 2>&1 &" else - daemon --user jabber "${progsPath}/${prog} ${args} & 2> /dev/null" + daemon --user jabber "${progsPath}/${prog} ${args} >/dev/null 2>&1 &" fi else - daemon --user jabber "${progsPath}/${prog} ${args} & 2> /dev/null" + daemon --user jabber "${progsPath}/${prog} ${args} >/dev/null 2>&1 &" fi retval=$? echo Index: jabberd.spec =================================================================== RCS file: /cvs/pkgs/rpms/jabberd/EL-5/jabberd.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- jabberd.spec 4 Jul 2009 20:43:10 -0000 1.17 +++ jabberd.spec 22 Jul 2009 16:38:08 -0000 1.18 @@ -1,12 +1,13 @@ Summary: OpenSource server implementation of the Jabber protocols Name: jabberd -Version: 2.2.5 +Version: 2.2.8 Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons -Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.5.tar.bz2 +Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.8.tar.bz2 Source1: jabberd Source2: jabberd.sysconfig +Patch0: jabberd-size_t.patch URL: http://jabberd2.xiaoka.com/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: openssl-devel libidn-devel expat-devel @@ -38,6 +39,7 @@ This packages defaults to use pam and th %prep %setup -q +%patch0 -p1 %build %define _sysconfdir /etc/jabberd @@ -190,8 +192,25 @@ fi %ghost %{_sysconfdir}/jabberd/server.pem %changelog -* Sat Jul 04 2009 Adrian Reber - 2.2.5-2 -- rebuilt in hope to fix "undefined symbol: ser_string_set" (#508182) +* Fri Jun 19 2009 Adrian Reber - 2.2.8-2 +- updated to 2.2.8 +- added patch to fix "router segfaults" (rhbz#497671) + +* Tue Mar 31 2009 Bernie Innocenti - 2.2.7.1-2 +- fix rhbz#349714: jabberd does not close its stdin/stdout/stderr + +* Thu Feb 26 2009 Adrian Reber - 2.2.7.1-1 +- updated to 2.2.7.1 +- "Workaround for buggy Java TLS implementation (affecting OpenFire and GTalk)" + +* Wed Feb 25 2009 Fedora Release Engineering - 2.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 17 2009 Adrian Reber - 2.2.7-1 +- updated to 2.2.7 + +* Mon Feb 16 2009 Adrian Reber - 2.2.6-1 +- updated to 2.2.6 * Tue Feb 03 2009 Adrian Reber - 2.2.5-1 - updated to 2.2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/jabberd/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 3 Feb 2009 08:51:32 -0000 1.6 +++ sources 22 Jul 2009 16:38:08 -0000 1.7 @@ -1 +1 @@ -6c9f752155645ddf6a917f597bb8370e jabberd-2.2.5.tar.bz2 +7ef574635950880615cbb21a5fe9fb5a jabberd-2.2.8.tar.bz2 From mlichvar at fedoraproject.org Wed Jul 22 16:39:29 2009 From: mlichvar at fedoraproject.org (Miroslav Lichvar) Date: Wed, 22 Jul 2009 16:39:29 +0000 (UTC) Subject: rpms/libpcap/devel libpcap-multilib.patch, NONE, 1.1 libpcap-oldsoname.patch, NONE, 1.1 libpcap-oneshot.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 libpcap-man.patch, 1.1, 1.2 libpcap-s390.patch, 1.1, 1.2 libpcap.spec, 1.9, 1.10 sources, 1.5, 1.6 libpcap-0.9.7-shared.patch, 1.2, NONE Message-ID: <20090722163929.DBCEE11C0099@cvs1.fedora.phx.redhat.com> Author: mlichvar Update of /cvs/pkgs/rpms/libpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3332 Modified Files: .cvsignore libpcap-man.patch libpcap-s390.patch libpcap.spec sources Added Files: libpcap-multilib.patch libpcap-oldsoname.patch libpcap-oneshot.patch Removed Files: libpcap-0.9.7-shared.patch Log Message: - update to 1.0.0, git snapshot 20090716git6de2de libpcap-multilib.patch: pcap-config.in | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) --- NEW FILE libpcap-multilib.patch --- diff -up libpcap/pcap-config.in.multilib libpcap/pcap-config.in --- libpcap/pcap-config.in.multilib 2009-07-03 06:01:12.000000000 +0200 +++ libpcap/pcap-config.in 2009-07-09 15:55:48.000000000 +0200 @@ -29,16 +29,6 @@ do esac shift done -if [ "@V_RPATH_OPT@" != "" ] -then - # - # If libdir isn't /usr/lib, add it to the run-time linker path. - # - if [ "@libdir@" != "/usr/lib" ] - then - RPATH=@V_RPATH_OPT@@libdir@ - fi -fi if [ "$static" = 1 ] then # @@ -47,16 +37,16 @@ then # if [ "$show_cflags" = 1 -a "$show_libs" = 1 ] then - echo "-I at includedir@ -L at libdir@ -lpcap @LIBS@" + echo "-lpcap @LIBS@" elif [ "$show_cflags" = 1 -a "$show_additional_libs" = 1 ] then - echo "-I at includedir@ -L at libdir@ @LIBS@" + echo "@LIBS@" elif [ "$show_cflags" = 1 ] then - echo "-I at includedir@" + echo "" elif [ "$show_libs" = 1 ] then - echo "-L at libdir@ -lpcap @LIBS@" + echo "-lpcap @LIBS@" elif [ "$show_additional_libs" = 1 ] then echo "@LIBS@" @@ -68,15 +58,15 @@ else # if [ "$show_cflags" = 1 -a "$show_libs" = 1 ] then - echo "-I at includedir@ -L at libdir@ $RPATH -lpcap" + echo "-lpcap" elif [ "$show_cflags" = 1 -a "$show_additional_libs" = 1 ] then - echo "-I at includedir@" + echo "" elif [ "$show_cflags" = 1 ] then - echo "-I at includedir@" + echo "" elif [ "$show_libs" = 1 ] then - echo "-L at libdir@ $RPATH -lpcap" + echo "-lpcap" fi fi libpcap-oldsoname.patch: Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE libpcap-oldsoname.patch --- diff -up libpcap/Makefile.in.oldsoname libpcap/Makefile.in --- libpcap/Makefile.in.oldsoname 2009-07-17 00:10:42.000000000 +0200 +++ libpcap/Makefile.in 2009-07-22 15:53:32.000000000 +0200 @@ -328,6 +328,8 @@ libpcap.so: $(OBJ) MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \ @V_SHLIB_CMD@ @V_SHLIB_OPT@ @V_SONAME_OPT@$@.$$MAJOR_VER $(LDFLAGS) \ -o $@.$$VER $(OBJ) $(ADDLOBJS) $(LIBS) + @V_SHLIB_CMD@ @V_SHLIB_OPT@ @V_SONAME_OPT@$@.0.9 $(LDFLAGS) \ + -o $@.0.9.9 $(OBJ) $(ADDLOBJS) $(LIBS) # # The following rule succeeds, but the result is untested. @@ -542,6 +544,8 @@ install-shared-so: libpcap.so VER=`cat $(srcdir)/VERSION`; \ MAJOR_VER=`sed 's/\([0-9][0-9]*\)\..*/\1/' $(srcdir)/VERSION`; \ $(INSTALL_PROGRAM) libpcap.so.$$VER $(DESTDIR)$(libdir)/libpcap.so.$$VER; \ + $(INSTALL_PROGRAM) libpcap.so.0.9.9 $(DESTDIR)$(libdir)/libpcap.so.0.9.9; \ + ln -sf libpcap.so.0.9.9 $(DESTDIR)$(libdir)/libpcap.so.0.9; \ ln -sf libpcap.so.$$VER $(DESTDIR)$(libdir)/libpcap.so.$$MAJOR_VER; \ ln -sf libpcap.so.$$MAJOR_VER $(DESTDIR)$(libdir)/libpcap.so install-shared-dylib: libpcap.dylib libpcap-oneshot.patch: pcap-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libpcap-oneshot.patch --- diff -up libpcap/pcap-linux.c.oneshot libpcap/pcap-linux.c --- libpcap/pcap-linux.c.oneshot 2009-07-17 00:10:42.000000000 +0200 +++ libpcap/pcap-linux.c 2009-07-22 14:30:52.000000000 +0200 @@ -2744,7 +2744,7 @@ static void pcap_oneshot_mmap(u_char *user, const struct pcap_pkthdr *h, const u_char *bytes) { - struct pkt_for_oneshot *sp = (struct pkt_for_oneshot *)user; + struct oneshot_userdata *sp = (struct oneshot_userdata *)user; bpf_u_int32 copylen; *sp->hdr = *h; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 24 Oct 2007 16:32:57 -0000 1.5 +++ .cvsignore 22 Jul 2009 16:39:29 -0000 1.6 @@ -1 +1 @@ -libpcap-0.9.8.tar.gz +libpcap-20090716git6de2de.tar.gz libpcap-man.patch: pcap.3pcap.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: libpcap-man.patch =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/libpcap-man.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libpcap-man.patch 28 Nov 2006 11:40:49 -0000 1.1 +++ libpcap-man.patch 22 Jul 2009 16:39:29 -0000 1.2 @@ -1,23 +1,12 @@ ---- libpcap-0.9.5/pcap.3.man 2006-01-22 21:12:10.000000000 +0100 -+++ libpcap-0.9.5/pcap.3 2006-11-03 15:36:28.000000000 +0100 -@@ -215,9 +215,9 @@ - .I fname - specifies the name of the file to open. The file has - the same format as those used by --.B tcpdump(1) -+.B tcpdump(8) - and --.BR tcpslice(1) . -+.BR tcpslice(8) . - The name "-" in a synonym for - .BR stdin . - Alternatively, you may call -@@ -1283,7 +1283,7 @@ - closes the ``savefile.'' - .PP +diff -up libpcap/pcap.3pcap.in.man libpcap/pcap.3pcap.in +--- libpcap/pcap.3pcap.in.man 2009-07-03 06:01:12.000000000 +0200 ++++ libpcap/pcap.3pcap.in 2009-07-03 15:00:12.000000000 +0200 +@@ -363,7 +363,7 @@ use an + script or some other configuration script to check whether the libpcap + 1.0 APIs are available and use them only if they are. .SH SEE ALSO --tcpdump(1), tcpslice(1) -+tcpdump(8), tcpslice(8) +-autoconf(1), tcpdump(1), tcpslice(1), pcap-filter(@MAN_MISC_INFO@), pfconfig(8), ++autoconf(1), tcpdump(8), tcpslice(8), pcap-filter(@MAN_MISC_INFO@), pfconfig(8), + usermod(1M) .SH AUTHORS - The original authors are: - .LP + The original authors of libpcap are: libpcap-s390.patch: pcap-linux.c | 4 ++++ 1 file changed, 4 insertions(+) Index: libpcap-s390.patch =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/libpcap-s390.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libpcap-s390.patch 28 Nov 2006 11:40:49 -0000 1.1 +++ libpcap-s390.patch 22 Jul 2009 16:39:29 -0000 1.2 @@ -1,12 +1,14 @@ ---- libpcap-0.7.2/pcap-linux.c.s390 2003-02-26 07:45:32.000000000 +0100 -+++ libpcap-0.7.2/pcap-linux.c 2003-02-27 16:48:48.000000000 +0100 -@@ -1214,6 +1214,9 @@ - fatal_err = 1; - break; - } +diff -up libpcap/pcap-linux.c.s390 libpcap/pcap-linux.c +--- libpcap/pcap-linux.c.s390 2009-07-22 14:33:20.000000000 +0200 ++++ libpcap/pcap-linux.c 2009-07-22 15:22:34.000000000 +0200 +@@ -2377,6 +2377,10 @@ activate_new(pcap_t *handle) + handle->linktype = DLT_LINUX_SLL; + } + + /* Hack to make things work on s390 ctc interfaces */ + if (strncmp("ctc", device, 3) == 0) + handle->linktype = DLT_EN10MB; - } else { - /* - * This is cooked mode. ++ + handle->md.ifindex = iface_get_id(sock_fd, device, + handle->errbuf); + if (handle->md.ifindex == -1) { Index: libpcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/libpcap.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libpcap.spec 25 Feb 2009 17:27:15 -0000 1.9 +++ libpcap.spec 22 Jul 2009 16:39:29 -0000 1.10 @@ -1,21 +1,23 @@ -%define pcap_sover 0.9 - Name: libpcap Epoch: 14 -Version: 0.9.8 -Release: 4%{?dist} +Version: 1.0.0 +Release: 1.20090716git6de2de%{?dist} Summary: A system-independent interface for user-level packet capture Group: Development/Libraries License: BSD with advertising URL: http://www.tcpdump.org -BuildRequires: glibc-kernheaders >= 2.2.0 bison flex +BuildRequires: glibc-kernheaders >= 2.2.0 bison flex bluez-libs-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -Source: http://www.tcpdump.org/release/%{name}-%{version}.tar.gz +#Source: http://www.tcpdump.org/release/%{name}-%{version}.tar.gz +# git snapshot from git://bpf.tcpdump.org/libpcap +Source: libpcap-20090716git6de2de.tar.gz Patch1: libpcap-man.patch -Patch2: libpcap-0.9.7-shared.patch +Patch2: libpcap-multilib.patch Patch3: libpcap-s390.patch Patch4: libpcap-0.8.3-ppp.patch +Patch5: libpcap-oneshot.patch +# temporarily provide old soname +Patch6: libpcap-oldsoname.patch %description Libpcap provides a portable framework for low-level network @@ -47,22 +49,25 @@ This package provides the libraries, inc resources needed for developing libpcap applications. %prep -%setup -q +%setup -q -n libpcap +echo '1.0.0' > VERSION %patch1 -p1 -b .man -%patch2 -p1 -b .shared +%patch2 -p1 -b .multilib %patch3 -p1 -b .s390 %patch4 -p0 -b .ppp +%patch5 -p1 -b .oneshot +%patch6 -p1 -b .oldsoname %build export CFLAGS="$RPM_OPT_FLAGS $(getconf LFS_CFLAGS)" -%configure --enable-ipv6 -make SOVERSION=%{pcap_sover} +%configure --enable-ipv6 --enable-bluetooth +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make SOVERSION=%{pcap_sover} DESTDIR=$RPM_BUILD_ROOT install +make DESTDIR=$RPM_BUILD_ROOT install rm -f $RPM_BUILD_ROOT%{_libdir}/libpcap.a %clean @@ -76,14 +81,22 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root) %doc LICENSE README CHANGES CREDITS doc/pcap.txt %{_libdir}/libpcap.so.* +%{_mandir}/man7/pcap*.7* %files devel %defattr(-,root,root) +%{_bindir}/pcap-config %{_includedir}/pcap*.h +%{_includedir}/pcap %{_libdir}/libpcap.so -%{_mandir}/man3/pcap.3* +%{_mandir}/man1/pcap-config.1* +%{_mandir}/man3/pcap*.3* +%{_mandir}/man5/pcap*.5* %changelog +* Wed Jul 22 2009 Miroslav Lichvar 14:1.0.0-1.20090716git6de2de +- update to 1.0.0, git snapshot 20090716git6de2de + * Wed Feb 25 2009 Fedora Release Engineering - 14:0.9.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Oct 2007 16:32:57 -0000 1.5 +++ sources 22 Jul 2009 16:39:29 -0000 1.6 @@ -1 +1 @@ -5208f24d0328ee7c20b52c43eaa9aa0e libpcap-0.9.8.tar.gz +ac6459eb882d4e1107f8c351eb0131eb libpcap-20090716git6de2de.tar.gz --- libpcap-0.9.7-shared.patch DELETED --- From davej at fedoraproject.org Wed Jul 22 16:44:35 2009 From: davej at fedoraproject.org (Dave Jones) Date: Wed, 22 Jul 2009 16:44:35 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc3-git5.bz2.sign, NONE, 1.1 .cvsignore, 1.1100, 1.1101 kernel.spec, 1.1646, 1.1647 sources, 1.1058, 1.1059 upstream, 1.972, 1.973 patch-2.6.31-rc3-git4.bz2.sign, 1.1, NONE Message-ID: <20090722164435.6038C11C0099@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4918 Modified Files: .cvsignore kernel.spec sources upstream Added Files: patch-2.6.31-rc3-git5.bz2.sign Removed Files: patch-2.6.31-rc3-git4.bz2.sign Log Message: 2.6.31-rc3-git5 --- NEW FILE patch-2.6.31-rc3-git5.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKZQYhyGugalF9Dw4RAk4qAJ9kL6E7uWyYpD2sd3ITl5k7XNs2GQCfa5n3 txOxRhWplswNDQUrKzadjjY= =cOqz -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1100 retrieving revision 1.1101 diff -u -p -r1.1100 -r1.1101 --- .cvsignore 19 Jul 2009 20:29:24 -0000 1.1100 +++ .cvsignore 22 Jul 2009 16:44:34 -0000 1.1101 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git4.bz2 +patch-2.6.31-rc3-git5.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1646 retrieving revision 1.1647 diff -u -p -r1.1646 -r1.1647 --- kernel.spec 22 Jul 2009 03:45:29 -0000 1.1646 +++ kernel.spec 22 Jul 2009 16:44:34 -0000 1.1647 @@ -58,7 +58,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 3 # The git snapshot level -%define gitrev 4 +%define gitrev 5 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -1885,6 +1885,9 @@ fi # and build. %changelog +* Wed Jul 22 2009 Dave Jones +- 2.6.31-rc3-git5 + * Wed Jul 22 2009 Ben Skeggs 2.6.31-0.82.rc3.git4 - Enable KMS for nouveau Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1058 retrieving revision 1.1059 diff -u -p -r1.1058 -r1.1059 --- sources 19 Jul 2009 20:29:24 -0000 1.1058 +++ sources 22 Jul 2009 16:44:35 -0000 1.1059 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2 -e79961ca0920257c7ea8572942ce9dc9 patch-2.6.31-rc3-git4.bz2 +2ba6c6382e5a3668a27cb83178e7aa34 patch-2.6.31-rc3-git5.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.972 retrieving revision 1.973 diff -u -p -r1.972 -r1.973 --- upstream 19 Jul 2009 20:29:24 -0000 1.972 +++ upstream 22 Jul 2009 16:44:35 -0000 1.973 @@ -1,4 +1,4 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git4.bz2 +patch-2.6.31-rc3-git5.bz2 --- patch-2.6.31-rc3-git4.bz2.sign DELETED --- From davej at fedoraproject.org Wed Jul 22 16:45:50 2009 From: davej at fedoraproject.org (Dave Jones) Date: Wed, 22 Jul 2009 16:45:50 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1647,1.1648 Message-ID: <20090722164550.6E9F111C0099@cvs1.fedora.phx.redhat.com> Author: davej Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5161 Modified Files: kernel.spec Log Message: haha, iseries. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1647 retrieving revision 1.1648 diff -u -p -r1.1647 -r1.1648 --- kernel.spec 22 Jul 2009 16:44:34 -0000 1.1647 +++ kernel.spec 22 Jul 2009 16:45:19 -0000 1.1648 @@ -248,12 +248,6 @@ Summary: The Linux kernel %define with_perf 0 %endif -# no need to build headers again for this arch, -# they can just use ppc64 headers -%ifarch ppc64iseries -%define with_headers 0 -%endif - # don't build noarch kernels or headers (duh) %ifarch noarch %define with_up 0 From mtasaka at fedoraproject.org Wed Jul 22 16:55:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 16:55:11 +0000 (UTC) Subject: rpms/uget/F-10 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 uget.spec, 1.9, 1.10 Message-ID: <20090722165511.3E72D11C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9192/F-10 Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 - 1.4.9.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 8 Jul 2009 08:55:35 -0000 1.8 +++ .cvsignore 22 Jul 2009 16:54:40 -0000 1.9 @@ -1 +1 @@ -uget-1.4.9.tar.gz +uget-1.4.9.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 8 Jul 2009 08:55:35 -0000 1.8 +++ sources 22 Jul 2009 16:54:40 -0000 1.9 @@ -1 +1 @@ -e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz +5a5b1d3a2a285b8e478ee9f3c7cedb7b uget-1.4.9.1.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/F-10/uget.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- uget.spec 8 Jul 2009 08:55:35 -0000 1.9 +++ uget.spec 22 Jul 2009 16:54:40 -0000 1.10 @@ -1,5 +1,5 @@ Name: uget -Version: 1.4.9 +Version: 1.4.9.1 Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl @@ -13,6 +13,7 @@ BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: intltool BuildRequires: libcurl-devel +BuildRequires: libnotify-devel %if 0%{?fedora} >= 11 # Let's obsolete urlgfe on F-11+ @@ -73,7 +74,10 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog -* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +* Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 +- 1.4.9.1 + +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 * Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 From mtasaka at fedoraproject.org Wed Jul 22 16:55:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 16:55:11 +0000 (UTC) Subject: rpms/uget/F-11 .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 uget.spec, 1.9, 1.10 Message-ID: <20090722165511.5C70B11C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9192/F-11 Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 - 1.4.9.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 8 Jul 2009 08:55:35 -0000 1.8 +++ .cvsignore 22 Jul 2009 16:54:41 -0000 1.9 @@ -1 +1 @@ -uget-1.4.9.tar.gz +uget-1.4.9.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 8 Jul 2009 08:55:35 -0000 1.8 +++ sources 22 Jul 2009 16:54:41 -0000 1.9 @@ -1 +1 @@ -e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz +5a5b1d3a2a285b8e478ee9f3c7cedb7b uget-1.4.9.1.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/F-11/uget.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- uget.spec 8 Jul 2009 08:55:36 -0000 1.9 +++ uget.spec 22 Jul 2009 16:54:41 -0000 1.10 @@ -1,5 +1,5 @@ Name: uget -Version: 1.4.9 +Version: 1.4.9.1 Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl @@ -13,6 +13,7 @@ BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: intltool BuildRequires: libcurl-devel +BuildRequires: libnotify-devel %if 0%{?fedora} >= 11 # Let's obsolete urlgfe on F-11+ @@ -73,7 +74,10 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog -* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +* Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 +- 1.4.9.1 + +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 * Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 From mtasaka at fedoraproject.org Wed Jul 22 16:55:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 16:55:11 +0000 (UTC) Subject: rpms/uget/devel .cvsignore, 1.8, 1.9 sources, 1.8, 1.9 uget.spec, 1.10, 1.11 Message-ID: <20090722165511.902C311C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9192/devel Modified Files: .cvsignore sources uget.spec Log Message: * Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 - 1.4.9.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/uget/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 8 Jul 2009 08:55:36 -0000 1.8 +++ .cvsignore 22 Jul 2009 16:54:41 -0000 1.9 @@ -1 +1 @@ -uget-1.4.9.tar.gz +uget-1.4.9.1.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/uget/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 8 Jul 2009 08:55:36 -0000 1.8 +++ sources 22 Jul 2009 16:54:41 -0000 1.9 @@ -1 +1 @@ -e4cda9ab350c551981bdaad4d5852e65 uget-1.4.9.tar.gz +5a5b1d3a2a285b8e478ee9f3c7cedb7b uget-1.4.9.1.tar.gz Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/devel/uget.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- uget.spec 8 Jul 2009 08:55:36 -0000 1.10 +++ uget.spec 22 Jul 2009 16:54:41 -0000 1.11 @@ -1,5 +1,5 @@ Name: uget -Version: 1.4.9 +Version: 1.4.9.1 Release: 1%{?dist} Summary: Download manager using GTK+ and libcurl @@ -13,6 +13,7 @@ BuildRequires: desktop-file-utils BuildRequires: gtk2-devel BuildRequires: intltool BuildRequires: libcurl-devel +BuildRequires: libnotify-devel %if 0%{?fedora} >= 11 # Let's obsolete urlgfe on F-11+ @@ -73,7 +74,10 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog -* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 +* Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 +- 1.4.9.1 + +* Wed Jul 8 2009 Mamoru Tasaka - 1.4.9-1 - 1.4.9 * Wed Jun 17 2009 Mamoru Tasaka - 1.4.8.5-2 From limb at fedoraproject.org Wed Jul 22 16:59:37 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Wed, 22 Jul 2009 16:59:37 +0000 (UTC) Subject: rpms/chkrootkit/F-11 chkrootkit-0.48-chkutmp-outofbounds.patch, NONE, 1.1 chkrootkit.spec, 1.36, 1.37 Message-ID: <20090722165937.C5FC811C0099@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/chkrootkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11177 Modified Files: chkrootkit.spec Added Files: chkrootkit-0.48-chkutmp-outofbounds.patch Log Message: Crash fixes, BZ 513029 chkrootkit-0.48-chkutmp-outofbounds.patch: chkutmp.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) --- NEW FILE chkrootkit-0.48-chkutmp-outofbounds.patch --- --- chkutmp.c~ 2006-10-18 13:00:29.000000000 -0500 +++ chkutmp.c 2009-07-21 14:42:41.000000000 -0500 @@ -83 +83 @@ - struct ps_line *endp = &psl_p[MAXBUF]; + struct ps_line *endp = &psl_p[MAXBUF-1]; @@ -135 +135 @@ - struct utmp_line *endp = &utl_p[MAXBUF]; + struct utmp_line *endp = &utl_p[MAXBUF-1]; --- chkutmp.c~ 2009-07-22 07:57:13.000000000 -0500 +++ chkutmp.c 2009-07-22 08:09:41.000000000 -0500 @@ -179 +179 @@ - for (h = 0; h <= y; h++) { /* loop through 'ps' data */ + for (h = 0; h < y; h++) { /* loop through 'ps' data */ @@ -181 +181 @@ - for (i = 0; i <= z; i++) { /* try and match the tty from 'ps' to one in utmp */ + for (i = 0; i < z; i++) { /* try and match the tty from 'ps' to one in utmp */ --- chkutmp.c~ 2009-07-22 08:09:41.000000000 -0500 +++ chkutmp.c 2009-07-22 08:11:17.000000000 -0500 @@ -60,3 +60,3 @@ - char ps_tty[UT_LINESIZE]; - char ps_user[UT_NAMESIZE]; - char ps_args[MAXLENGTH]; + char ps_tty[UT_LINESIZE+2]; + char ps_user[UT_NAMESIZE+2]; + char ps_args[MAXLENGTH+2]; @@ -66 +66 @@ - char ut_tty[UT_LINESIZE]; + char ut_tty[UT_LINESIZE+2]; Index: chkrootkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/chkrootkit/F-11/chkrootkit.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- chkrootkit.spec 24 Feb 2009 08:57:49 -0000 1.36 +++ chkrootkit.spec 22 Jul 2009 16:59:37 -0000 1.37 @@ -1,6 +1,6 @@ Name: chkrootkit Version: 0.48 -Release: 11%{?dist} +Release: 13%{?dist} Summary: Tool to locally check for signs of a rootkit Group: Applications/System License: BSD and GPLv2+ and Python @@ -20,6 +20,7 @@ Patch6: chkrootkit-0.47-chklastl Patch7: chkrootkit-0.48-anomalies.patch Patch8: chkrootkit-0.48-nophpcheck.patch Patch9: chkrootkit-0.48-chkproc-psver.patch +Patch10: chkrootkit-0.48-chkutmp-outofbounds.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils @@ -56,6 +57,7 @@ It contains: %patch7 -p1 -b .anomalies %patch8 -p1 -b .nophpcheck %patch9 -p1 -b .chkproc-psver +%patch10 -p0 sed -i -e 's!\s\+ at strip.*!!g' Makefile @@ -123,6 +125,12 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Wed Jul 22 2009 Jon Ciesla 0.48-13 +- Additional items in chkutmp patch. + +* Tue Jul 21 2009 Jon Ciesla 0.48-12 +- Patch to fix crash in chkutmp on x86_64. + * Tue Feb 24 2009 Michael Schwendt - 0.48-11 - update .desktop file for Icon Theme Specification - no longer add X-Fedora category to .desktop file From s4504kr at fedoraproject.org Wed Jul 22 17:04:39 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 22 Jul 2009 17:04:39 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,1.4,1.5 Message-ID: <20090722170439.768A311C0099@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13174 Modified Files: ghc-editline.spec Log Message: Fix typo in Changelog Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/ghc-editline.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ghc-editline.spec 21 Jul 2009 18:35:12 -0000 1.4 +++ ghc-editline.spec 22 Jul 2009 17:04:38 -0000 1.5 @@ -9,7 +9,7 @@ Name: ghc-editline Version: 0.2.1.0 -Release: 5%{?dist}.1 +Release: 5%{?dist}.2 Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -130,6 +130,9 @@ fi %endif %Changelog +* Wed Jul 22 2009 Jochen Schmitt 0.2.1.0-5.2 +- Fix typo in Changelog + * Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5.1 - Fix typo in %{pkg_name} macro From spot at fedoraproject.org Wed Jul 22 17:23:43 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 17:23:43 +0000 (UTC) Subject: rpms/mhash/devel mhash-0.9.9.9-align.patch, NONE, 1.1 mhash-0.9.9.9-alignment.patch, NONE, 1.1 mhash-0.9.9.9-autotools-namespace-stomping.patch, NONE, 1.1 mhash-0.9.9.9-fix-mem-leak.patch, NONE, 1.1 mhash-0.9.9.9-fix-snefru-segfault.patch, NONE, 1.1 mhash-0.9.9.9-fix-whirlpool-segfault.patch, NONE, 1.1 mhash-0.9.9.9-force64bit-tiger.patch, NONE, 1.1 mhash-0.9.9.9-maxint.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 mhash.spec, 1.27, 1.28 sources, 1.7, 1.8 Message-ID: <20090722172343.9C69811C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mhash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22667 Modified Files: .cvsignore mhash.spec sources Added Files: mhash-0.9.9.9-align.patch mhash-0.9.9.9-alignment.patch mhash-0.9.9.9-autotools-namespace-stomping.patch mhash-0.9.9.9-fix-mem-leak.patch mhash-0.9.9.9-fix-snefru-segfault.patch mhash-0.9.9.9-fix-whirlpool-segfault.patch mhash-0.9.9.9-force64bit-tiger.patch mhash-0.9.9.9-maxint.patch Log Message: 0.9.9.9 mhash-0.9.9.9-align.patch: stdfns.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 12 deletions(-) --- NEW FILE mhash-0.9.9.9-align.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-02 16:38:43.217029623 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-02 16:41:58.647120391 -0400 @@ -152,6 +152,18 @@ mutils_bzero(void *s, __const mutils_wor } } +static void +mutils_memset8(void *s, __const mutils_word8 c, __const mutils_word32 n) +{ + mutils_word8 *stmp = s; + mutils_word32 i; + + for (i = 0; i < n; i++, stmp++) + { + *stmp = c; + } +} + WIN32DLL_DEFINE void mutils_memset(void *s, __const mutils_word8 c, __const mutils_word32 n) @@ -160,8 +172,7 @@ mutils_memset(void *s, __const mutils_wo /* Sparc needs 8-bit alignment - just use standard memset */ memset(s, (int) c, (size_t) n); #else - mutils_word8 *stmp; - mutils_word32 *ltmp = (mutils_word32 *) s; + mutils_word32 *ltmp; mutils_word32 lump; mutils_word32 i; mutils_word32 words; @@ -172,22 +183,30 @@ mutils_memset(void *s, __const mutils_wo return; } + if (n < 16) + { + return mutils_memset8(s, c, n); + } + + /* unaligned portion at beginning */ + remainder = (-(mutils_word32)s) & 0x3; + mutils_memset8(s, c, remainder); + + /* aligned words in the middle */ + ltmp = (mutils_word32 *) (s + remainder); + lump = (c << 24) + (c << 16) + (c << 8) + c; - words = n >> 2; - remainder = n - (words << 2); + words = (n - remainder) >> 2; + remainder = n - remainder - (words << 2); for (i = 0; i < words; i++, ltmp++) { *ltmp = lump; } - stmp = (mutils_word8 *) ltmp; - - for (i = 0; i < remainder; i++, stmp++) - { - *stmp = c; - } + /* unaligned portion at end */ + return mutils_memset8(ltmp, c, remainder); #endif } @@ -281,6 +300,9 @@ mutils_word32nswap(mutils_word32 *x, mut mutils_word32 *buffer; mutils_word32 *ptrIn; mutils_word32 *ptrOut; + mutils_word8 *ptr8In; + mutils_word8 *ptr8Out; + mutils_word8 tmp8; mutils_word32 count = n * 4; if (destructive == MUTILS_FALSE) @@ -301,9 +323,35 @@ mutils_word32nswap(mutils_word32 *x, mut * data on a little-endian machine. */ - for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + if ((mutils_word32)x & 0x3) + { + ptr8In = (mutils_word8 *) x; + ptr8Out = (mutils_word8 *) buffer; + for (loop = 0; loop < n; loop++) + { +#ifdef WORDS_BIGENDIAN + tmp8 = ptr8In[0]; + ptr8Out[0] = ptr8In[3]; + ptr8Out[3] = tmp8; + tmp8 = ptr8In[1]; + ptr8Out[1] = ptr8In[2]; + ptr8Out[2] = tmp8; +#else + ptr8Out[0] = ptr8In[0]; + ptr8Out[1] = ptr8In[1]; + ptr8Out[2] = ptr8In[2]; + ptr8Out[3] = ptr8In[3]; +#endif + ptr8Out += 4; + ptr8In += 4; + } + } + else { - *ptrOut = mutils_lend32(*ptrIn); + for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + { + *ptrOut = mutils_lend32(*ptrIn); + } } return(buffer); mhash-0.9.9.9-alignment.patch: stdfns.c | 6 ++++++ 1 file changed, 6 insertions(+) --- NEW FILE mhash-0.9.9.9-alignment.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:05:40.139461097 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:06:52.151190927 -0400 @@ -378,6 +378,12 @@ mutils_memmove(void *dest, __const void bigptr1 = (mutils_word32 *) dest; bigptr2 = (mutils_word32 *) src; + /* copy byte-by-byte for small and/or unaligned copies */ + if ((n < 16) || ((mutils_word32)dest & 0x3) || ((mutils_word32)src & 0x3)) + { + return mutils_memcpy8(dest, src, n); + } + words = n >> 2; remainder = n - (words << 2); mhash-0.9.9.9-autotools-namespace-stomping.patch: configure.in | 1 + include/mutils/config.h.in | 22 ++++++++++++++++++++++ include/mutils/mhash_config.h.in | 21 --------------------- 3 files changed, 23 insertions(+), 21 deletions(-) --- NEW FILE mhash-0.9.9.9-autotools-namespace-stomping.patch --- diff -up mhash-0.9.9.9/configure.in.fix-autotool-stomping mhash-0.9.9.9/configure.in --- mhash-0.9.9.9/configure.in.fix-autotool-stomping 2007-04-04 22:22:28.000000000 -0400 +++ mhash-0.9.9.9/configure.in 2009-07-02 17:02:39.099044520 -0400 @@ -6,6 +6,7 @@ AC_CONFIG_SRCDIR([lib/mhash.c]) AM_INIT_AUTOMAKE AC_DEFINE([MHASH_VERSION], PROGRAM_VERSION, "MHash Version") +AC_CONFIG_HEADER([include/mutils/config.h]) AC_CONFIG_HEADER([include/mutils/mhash_config.h]) diff -up /dev/null mhash-0.9.9.9/include/mutils/config.h.in --- /dev/null 2009-07-01 18:40:45.228272777 -0400 +++ mhash-0.9.9.9/include/mutils/config.h.in 2009-07-02 17:02:39.100044508 -0400 @@ -0,0 +1,22 @@ +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Version number of package */ +#undef VERSION + + diff -up mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping mhash-0.9.9.9/include/mutils/mhash_config.h.in --- mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping 2008-12-07 18:33:50.000000000 -0500 +++ mhash-0.9.9.9/include/mutils/mhash_config.h.in 2009-07-02 17:04:30.453049610 -0400 @@ -181,24 +181,6 @@ /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - /* Define to 1 if the C compiler supports function prototypes. */ #undef PROTOTYPES @@ -208,9 +190,6 @@ /* dmalloc */ #undef USE_DMALLOC -/* Version number of package */ -#undef VERSION - /* Define if using the dmalloc debugging malloc package */ #undef WITH_DMALLOC mhash-0.9.9.9-fix-mem-leak.patch: mhash.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-mem-leak.patch --- diff -up mhash-0.9.9.9/lib/mhash.c.BAD mhash-0.9.9.9/lib/mhash.c --- mhash-0.9.9.9/lib/mhash.c.BAD 2009-07-02 16:57:43.872049877 -0400 +++ mhash-0.9.9.9/lib/mhash.c 2009-07-02 16:58:03.909029777 -0400 @@ -719,6 +719,8 @@ WIN32DLL_DEFINE MHASH mhash_restore_stat mutils_memcpy( &ret->state_size, &mem[pos], sizeof(ret->state_size)); pos += sizeof( ret->state_size); + if (ret->state) + mutils_free(ret->state); ret->state = mutils_malloc(ret->state_size); if (ret->state==NULL) goto freeall; mhash-0.9.9.9-fix-snefru-segfault.patch: snefru.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-snefru-segfault.patch --- diff -up mhash-0.9.9.9/lib/snefru.c.BAD mhash-0.9.9.9/lib/snefru.c --- mhash-0.9.9.9/lib/snefru.c.BAD 2009-07-02 16:54:58.973279449 -0400 +++ mhash-0.9.9.9/lib/snefru.c 2009-07-02 16:55:04.609279072 -0400 @@ -859,6 +859,8 @@ static void snefru_digest(__const struct { mutils_word32 i; + if(!digest) return; + for (i = 0; i < len; i++, digest += 4) { *(mutils_word32 *)digest = mutils_bend2sys32(ctx->hash[i]); mhash-0.9.9.9-fix-whirlpool-segfault.patch: whirlpool.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-whirlpool-segfault.patch --- diff -up mhash-0.9.9.9/lib/whirlpool.c.BAD mhash-0.9.9.9/lib/whirlpool.c --- mhash-0.9.9.9/lib/whirlpool.c.BAD 2009-07-02 16:59:50.885279180 -0400 +++ mhash-0.9.9.9/lib/whirlpool.c 2009-07-02 17:00:12.189279257 -0400 @@ -970,6 +970,8 @@ void whirlpool_digest(__const struct whi mutils_word8 * digest) { mutils_word32 i; + + if(!digest) return; /* * return the completed message digest: */ mhash-0.9.9.9-force64bit-tiger.patch: tiger.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-force64bit-tiger.patch --- diff -up mhash-0.9.9.9/lib/tiger.c.BAD mhash-0.9.9.9/lib/tiger.c --- mhash-0.9.9.9/lib/tiger.c.BAD 2009-07-02 16:42:47.683029940 -0400 +++ mhash-0.9.9.9/lib/tiger.c 2009-07-02 16:43:46.085049317 -0400 @@ -252,7 +252,9 @@ void tiger_update(struct tiger_ctx *ctx, void tiger_final(struct tiger_ctx *ctx) { register mutils_word64 i, j; - mutils_word8 temp[TIGER_DATASIZE]; + /* Force 64-bit alignment */ + mutils_word64 temp_64bit[TIGER_DATASIZE/8]; + mutils_word8 *temp = temp_64bit; i = ctx->index; #if defined(WORDS_BIGENDIAN) mhash-0.9.9.9-maxint.patch: stdfns.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) --- NEW FILE mhash-0.9.9.9-maxint.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:01:21.596191078 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:02:37.419191301 -0400 @@ -24,6 +24,7 @@ */ #include "libdefs.h" +#include /** * Some of these are wrappers. The idea is to eventually produce an extremely @@ -408,11 +409,11 @@ mutils_memcmp(__const void *s1, const vo { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (s2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(memcmp(s1, s2, n)); @@ -539,11 +540,11 @@ mutils_strcmp(__const mutils_word8 *src1 { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strcmp((char *) src1, (char *) src2)); } @@ -562,11 +563,11 @@ mutils_strncmp(__const mutils_word8 *src { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strncmp((char *) src1, (char *) src2, n)); } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 6 Apr 2007 13:07:46 -0000 1.7 +++ .cvsignore 22 Jul 2009 17:23:42 -0000 1.8 @@ -1 +1 @@ -mhash-0.9.9.tar.bz2 +mhash-0.9.9.9.tar.bz2 Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/mhash.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mhash.spec 26 Feb 2009 00:36:09 -0000 1.27 +++ mhash.spec 22 Jul 2009 17:23:43 -0000 1.28 @@ -3,14 +3,34 @@ Summary: Thread-safe hash algorithms library Name: mhash -Version: 0.9.9 -Release: 7 +Version: 0.9.9.9 +Release: 1%{?dist} URL: http://mhash.sourceforge.net/ License: LGPLv2+ Group: System Environment/Libraries Source: http://download.sourceforge.net/mhash/mhash-%{version}.tar.bz2 -Patch1: mhash-0.9.9-multiarch.patch -Patch2: mutils-align.patch +Patch2: mhash-0.9.9.9-align.patch +Patch3: mhash-0.9.9.9-force64bit-tiger.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch +Patch4: mhash-0.9.9.9-fix-snefru-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch +Patch5: mhash-0.9.9.9-fix-mem-leak.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch +Patch6: mhash-0.9.9.9-fix-whirlpool-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch +Patch7: mhash-0.9.9.9-autotools-namespace-stomping.patch +# Taken from openpkg: +# http://www.mail-archive.com/openpkg-cvs at openpkg.org/msg26353.html +Patch8: mhash-0.9.9.9-maxint.patch +# Taken from Jitesh Shah +# http://ftp.uk.linux.org/pub/armlinux/fedora/diffs-f11/mhash/0001-Alignment-fixes.patch +Patch9: mhash-0.9.9.9-alignment.patch + +BuildRequires: autoconf Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) Provides: libmhash = %{version}-%{release} @@ -41,9 +61,15 @@ develop programs that use the mhash libr %prep %setup -q -%patch1 -p1 -b .multiarch %patch2 -p1 -b .alignment - +%patch3 -p1 -b .force64bit-tiger +%patch4 -p1 -b .fix-snefru-segfault +%patch5 -p1 -b .fix-mem-leak +%patch6 -p1 -b .fix-whirlpool-segfault +%patch7 -p1 -b .fix-autotool-stomping +%patch8 -p1 -b .maxint +%patch9 -p1 -b .alignment2 +autoreconf -i %build %configure --enable-shared %{?_with_static: --enable-static} %{!?_with_static: --disable-static} @@ -95,6 +121,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-1 +- update to 0.9.9.9 +- apply all the fixes that I could find + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 6 Apr 2007 13:07:46 -0000 1.7 +++ sources 22 Jul 2009 17:23:43 -0000 1.8 @@ -1 +1 @@ -d113a853e0ac21c49c5a1acea0daaade mhash-0.9.9.tar.bz2 +f91c74f9ccab2b574a98be5bc31eb280 mhash-0.9.9.9.tar.bz2 From gerd at fedoraproject.org Wed Jul 22 17:25:33 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Wed, 22 Jul 2009 17:25:33 +0000 (UTC) Subject: rpms/parrot/F-10 import.log,1.2,1.3 parrot.spec,1.2,1.3 Message-ID: <20090722172533.4899F11C0099@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22752/F-10 Modified Files: import.log parrot.spec Log Message: %changelog * Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 - add the new disable-rpath configure option Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 21 Jul 2009 16:48:52 -0000 1.2 +++ import.log 22 Jul 2009 17:25:32 -0000 1.3 @@ -1,2 +1,3 @@ parrot-1_0_0-6_fc10:F-10:parrot-1.0.0-6.fc10.src.rpm:1241003119 parrot-1_4_0-1_fc11:F-10:parrot-1.4.0-1.fc11.src.rpm:1248194576 +parrot-1_4_0-3_fc11:F-10:parrot-1.4.0-3.fc11.src.rpm:1248283108 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-10/parrot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- parrot.spec 21 Jul 2009 16:48:52 -0000 1.2 +++ parrot.spec 22 Jul 2009 17:25:32 -0000 1.3 @@ -1,6 +1,6 @@ Name: parrot Version: 1.4.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries @@ -113,9 +113,9 @@ chmod +x %{__perl_provides} %ifarch %{ix86} x86_64 RPM_OPT_FLAGS="$RPM_OPT_FLAGS -maccumulate-outgoing-args" %else -# PowerPC, not all optimize-options work with the PowerPC-architecture -# the PGE don't build with the optimize="-O2" option on PowerPC - RPM_OPT_FLAGS=`echo "$RPM_OPT_FLAGS" | %{__perl} -pi -e 's/-O2//'` +# The PowerPC-architecture do not build with the '-maccumulate-outgoing-args' +# option. + RPM_OPT_FLAGS="$RPM_OPT_FLAGS" %endif %{__perl} Configure.pl \ @@ -234,8 +234,10 @@ rm -rf $RPM_BUILD_ROOT%{_usr}/config \ # 'make fulltest' is done by default; it take a lot of time export LD_LIBRARY_PATH=$( pwd )/blib/lib FULL='full' +%ifnarch ppc ppc64 %{?_without_fulltest: FULL=''} %{?!_without_tests: make ${FULL}test} +%endif %clean @@ -360,7 +362,7 @@ rm -rf $RPM_BUILD_ROOT * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. -- BR ncurses-devel. +- BuildRequires ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. @@ -381,7 +383,7 @@ rm -rf $RPM_BUILD_ROOT * Tue Jun 27 2006 Steven Pritchard 0.4.5-2 - Add -lcurses to get readline detection to work. -- BR libicu-devel. +- Add BuildRequires libicu-devel. * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created From s4504kr at fedoraproject.org Wed Jul 22 17:28:41 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 22 Jul 2009 17:28:41 +0000 (UTC) Subject: rpms/kaya/devel kaya.spec,1.7,1.8 Message-ID: <20090722172841.9643811C0099@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/kaya/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24523 Modified Files: kaya.spec Log Message: Bump Release Index: kaya.spec =================================================================== RCS file: /cvs/extras/rpms/kaya/devel/kaya.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kaya.spec 20 Jul 2009 16:10:16 -0000 1.7 +++ kaya.spec 22 Jul 2009 17:28:10 -0000 1.8 @@ -4,7 +4,7 @@ Name: kaya Version: 0.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Statically typed, imperative programming-language Group: Development/Languages @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Wed Jul 22 2009 Jochen Schmitt 0.5.2-2 +- Bump release + * Sun Jun 28 2009 Jochen Schmitt 0.5.2-1 - New upstream release From spot at fedoraproject.org Wed Jul 22 17:34:54 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 17:34:54 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1648,1.1649 Message-ID: <20090722173454.CC71011C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27496 Modified Files: kernel.spec Log Message: fix build Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1648 retrieving revision 1.1649 diff -u -p -r1.1648 -r1.1649 --- kernel.spec 22 Jul 2009 16:45:19 -0000 1.1648 +++ kernel.spec 22 Jul 2009 17:34:54 -0000 1.1649 @@ -1,9 +1,12 @@ +# We have to override the new %%install behavior because, well... the kernel is special. +%global __spec_install_pre %{___build_pre} + Summary: The Linux kernel # For a stable, released kernel, released_kernel should be 1. For rawhide # and/or a kernel built from an rc or git snapshot, released_kernel should # be 0. -%define released_kernel 0 +%global released_kernel 0 # Versions of various parts @@ -1879,6 +1882,9 @@ fi # and build. %changelog +* Wed Jul 22 2009 Tom "spot" Callaway +- We have to override the new %%install behavior because, well... the kernel is special. + * Wed Jul 22 2009 Dave Jones - 2.6.31-rc3-git5 From dmach at fedoraproject.org Wed Jul 22 17:38:34 2009 From: dmach at fedoraproject.org (dmach) Date: Wed, 22 Jul 2009 17:38:34 +0000 (UTC) Subject: rpms/kobo/F-11 .cvsignore, 1.2, 1.3 kobo.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090722173834.CE91F11C0099@cvs1.fedora.phx.redhat.com> Author: dmach Update of /cvs/extras/rpms/kobo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28696 Modified Files: .cvsignore kobo.spec sources Log Message: update to kobo-0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kobo/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 17 Jun 2009 12:38:38 -0000 1.2 +++ .cvsignore 22 Jul 2009 17:38:34 -0000 1.3 @@ -1 +1 @@ -kobo-0.1.0.tar.bz2 +kobo-0.1.1.tar.bz2 Index: kobo.spec =================================================================== RCS file: /cvs/extras/rpms/kobo/F-11/kobo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kobo.spec 17 Jun 2009 12:38:38 -0000 1.1 +++ kobo.spec 22 Jul 2009 17:38:34 -0000 1.2 @@ -6,7 +6,7 @@ %define debug_package %{nil} -%define version 0.1.0 +%define version 0.1.1 %define release 1 # set git to %{nil} (release) or to YYYYMMDD.123456 (git build) %define git %{nil} @@ -22,8 +22,8 @@ Release: %{?release_prefix}%{rele License: LGPLv2 Summary: Python modules for tools development Group: Development/Libraries -URL: http://fedorahosted.org/kobo/ -Source0: http://fedorahosted.org/kobo/releases/%{name}-%{version}%{?release_suffix}.tar.bz2 +URL: https://fedorahosted.org/kobo/ +Source0: https://fedorahosted.org/releases/k/o/kobo/%{name}-%{version}%{?release_suffix}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -131,5 +131,20 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Daniel Mach - 0.1.1-1 +- Enhance types.Enum to support help_text and additonal options. Update tests for types module. (Daniel Mach) +- Remove temp directory after file upload. (Tomas Kopecek) +- Remove MANIFEST in make clean. (Daniel Mach) +- Fix shortcuts.run to read complete stdout. (Jan Blazek) +- Add rpmlib.get_file_list_from_header() which extracts file list, colors and checksums from a rpm header. (Daniel Mach) +- Add get_digest_algo_from_header() function to read rpm digest algorithm. (Daniel Mach) +- Update epydoc docstrings in kobo.rpmlib. (Daniel Mach) +- Fix deadlock in run(). Use proc.poll() instead of proc.wait(). (Daniel Mach) +- Update epydoc docstrings in kobo.shortcuts. (Daniel Mach) +- Fix AtributeError when active_submenu is None. (Daniel Mach) +- Return menu dict even if no menu is active. (Daniel Mach) +- Do not allow to register plugins to PluginContainer base class. Add several tests. (Daniel Mach) +- Add test runner. (Daniel Mach) +- Add support for empty submenus. (Martin Magr) * Wed Jun 17 2009 Daniel Mach - 0.1.0-1 - first release Index: sources =================================================================== RCS file: /cvs/extras/rpms/kobo/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 17 Jun 2009 12:38:38 -0000 1.2 +++ sources 22 Jul 2009 17:38:34 -0000 1.3 @@ -1 +1 @@ -54b2ffc6ed225df6c04c9140bdf12035 kobo-0.1.0.tar.bz2 +acea1862311063c9708e9023d5aa79d5 kobo-0.1.1.tar.bz2 From orion at fedoraproject.org Wed Jul 22 17:39:59 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 17:39:59 +0000 (UTC) Subject: rpms/libdap/devel .cvsignore, 1.11, 1.12 libdap.spec, 1.25, 1.26 sources, 1.11, 1.12 libdap-3.7.8-nolibdir.patch, 1.2, NONE Message-ID: <20090722173959.2B7B011C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/libdap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29522 Modified Files: .cvsignore libdap.spec sources Removed Files: libdap-3.7.8-nolibdir.patch Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 - Update to 3.9.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdap/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 10 Sep 2008 16:51:23 -0000 1.11 +++ .cvsignore 22 Jul 2009 17:39:58 -0000 1.12 @@ -1 +1 @@ -libdap-3.8.2.tar.gz +libdap-3.9.3.tar.gz Index: libdap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdap/devel/libdap.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libdap.spec 3 Mar 2009 15:35:52 -0000 1.25 +++ libdap.spec 22 Jul 2009 17:39:58 -0000 1.26 @@ -1,7 +1,7 @@ Name: libdap Summary: The C++ DAP2 library from OPeNDAP -Version: 3.8.2 -Release: 3%{?dist} +Version: 3.9.3 +Release: 1%{?dist} # the deflate program is covered by the W3C license License: LGPLv2+ and W3C @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 +- Update to 3.9.3 + * Tue Mar 2 2009 Caol?n McNamara - 3.8.2-3 - include cstdio for std::sprintf Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdap/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 10 Sep 2008 16:51:23 -0000 1.11 +++ sources 22 Jul 2009 17:39:58 -0000 1.12 @@ -1 +1 @@ -0b6f6a1bfb6d64d87395c6581e562178 libdap-3.8.2.tar.gz +597bf7aeb023186c65e1be4da868e75b libdap-3.9.3.tar.gz --- libdap-3.7.8-nolibdir.patch DELETED --- From mtasaka at fedoraproject.org Wed Jul 22 17:42:41 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 17:42:41 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.384, 1.385 jd.spec, 1.444, 1.445 sources, 1.385, 1.386 Message-ID: <20090722174241.6B98111C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30443/F-10 Modified Files: .cvsignore jd.spec sources Log Message: try trunk Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.384 retrieving revision 1.385 diff -u -p -r1.384 -r1.385 --- .cvsignore 12 Jul 2009 15:14:10 -0000 1.384 +++ .cvsignore 22 Jul 2009 17:42:10 -0000 1.385 @@ -1 +1 @@ -jd-2.4.1-090712.tgz +jd-2.4.2-svn2964_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.444 retrieving revision 1.445 diff -u -p -r1.444 -r1.445 --- jd.spec 12 Jul 2009 15:14:10 -0000 1.444 +++ jd.spec 22 Jul 2009 17:42:10 -0000 1.445 @@ -9,11 +9,11 @@ ########################################## # Defined by upsteam # -%define main_ver 2.4.1 -%define strtag 090712 +%define main_ver 2.4.2 +%define strtag svn2964_trunk %define repoid 41293 # Define this if this is pre-version -%define pre_release 0 +%define pre_release 1 ########################################## ########################################## @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Thu Jul 23 2009 Mamoru Tasaka +- rev 2964 + * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.385 retrieving revision 1.386 diff -u -p -r1.385 -r1.386 --- sources 12 Jul 2009 15:14:10 -0000 1.385 +++ sources 22 Jul 2009 17:42:10 -0000 1.386 @@ -1 +1 @@ -42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz +a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz From mtasaka at fedoraproject.org Wed Jul 22 17:42:41 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 17:42:41 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.378, 1.379 jd.spec, 1.440, 1.441 sources, 1.379, 1.380 Message-ID: <20090722174241.D89B811C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30443/F-11 Modified Files: .cvsignore jd.spec sources Log Message: try trunk Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.378 retrieving revision 1.379 diff -u -p -r1.378 -r1.379 --- .cvsignore 12 Jul 2009 15:14:10 -0000 1.378 +++ .cvsignore 22 Jul 2009 17:42:11 -0000 1.379 @@ -1 +1 @@ -jd-2.4.1-090712.tgz +jd-2.4.2-svn2964_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.440 retrieving revision 1.441 diff -u -p -r1.440 -r1.441 --- jd.spec 12 Jul 2009 15:14:10 -0000 1.440 +++ jd.spec 22 Jul 2009 17:42:11 -0000 1.441 @@ -9,11 +9,11 @@ ########################################## # Defined by upsteam # -%define main_ver 2.4.1 -%define strtag 090712 +%define main_ver 2.4.2 +%define strtag svn2964_trunk %define repoid 41293 # Define this if this is pre-version -%define pre_release 0 +%define pre_release 1 ########################################## ########################################## @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Thu Jul 23 2009 Mamoru Tasaka +- rev 2964 + * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.379 retrieving revision 1.380 diff -u -p -r1.379 -r1.380 --- sources 12 Jul 2009 15:14:11 -0000 1.379 +++ sources 22 Jul 2009 17:42:11 -0000 1.380 @@ -1 +1 @@ -42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz +a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz From mtasaka at fedoraproject.org Wed Jul 22 17:42:42 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Wed, 22 Jul 2009 17:42:42 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.375, 1.376 jd.spec, 1.437, 1.438 sources, 1.376, 1.377 Message-ID: <20090722174242.3187E11C0099@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30443/devel Modified Files: .cvsignore jd.spec sources Log Message: try trunk Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.375 retrieving revision 1.376 diff -u -p -r1.375 -r1.376 --- .cvsignore 12 Jul 2009 15:14:11 -0000 1.375 +++ .cvsignore 22 Jul 2009 17:42:11 -0000 1.376 @@ -1 +1 @@ -jd-2.4.1-090712.tgz +jd-2.4.2-svn2964_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.437 retrieving revision 1.438 diff -u -p -r1.437 -r1.438 --- jd.spec 12 Jul 2009 15:14:11 -0000 1.437 +++ jd.spec 22 Jul 2009 17:42:11 -0000 1.438 @@ -9,11 +9,11 @@ ########################################## # Defined by upsteam # -%define main_ver 2.4.1 -%define strtag 090712 +%define main_ver 2.4.2 +%define strtag svn2964_trunk %define repoid 41293 # Define this if this is pre-version -%define pre_release 0 +%define pre_release 1 ########################################## ########################################## @@ -135,6 +135,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog +* Thu Jul 23 2009 Mamoru Tasaka +- rev 2964 + * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.376 retrieving revision 1.377 diff -u -p -r1.376 -r1.377 --- sources 12 Jul 2009 15:14:11 -0000 1.376 +++ sources 22 Jul 2009 17:42:11 -0000 1.377 @@ -1 +1 @@ -42b20c14996820df4d5f9a2d707b1e27 jd-2.4.1-090712.tgz +a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz From dmach at fedoraproject.org Wed Jul 22 17:45:10 2009 From: dmach at fedoraproject.org (dmach) Date: Wed, 22 Jul 2009 17:45:10 +0000 (UTC) Subject: rpms/kobo/devel .cvsignore, 1.2, 1.3 kobo.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090722174510.8029A11C0099@cvs1.fedora.phx.redhat.com> Author: dmach Update of /cvs/extras/rpms/kobo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31712 Modified Files: .cvsignore kobo.spec sources Log Message: update to kobo-0.1.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kobo/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 17 Jun 2009 12:20:12 -0000 1.2 +++ .cvsignore 22 Jul 2009 17:45:10 -0000 1.3 @@ -1 +1 @@ -kobo-0.1.0.tar.bz2 +kobo-0.1.1.tar.bz2 Index: kobo.spec =================================================================== RCS file: /cvs/extras/rpms/kobo/devel/kobo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kobo.spec 17 Jun 2009 12:20:12 -0000 1.1 +++ kobo.spec 22 Jul 2009 17:45:10 -0000 1.2 @@ -6,7 +6,7 @@ %define debug_package %{nil} -%define version 0.1.0 +%define version 0.1.1 %define release 1 # set git to %{nil} (release) or to YYYYMMDD.123456 (git build) %define git %{nil} @@ -22,8 +22,8 @@ Release: %{?release_prefix}%{rele License: LGPLv2 Summary: Python modules for tools development Group: Development/Libraries -URL: http://fedorahosted.org/kobo/ -Source0: http://fedorahosted.org/kobo/releases/%{name}-%{version}%{?release_suffix}.tar.bz2 +URL: https://fedorahosted.org/kobo/ +Source0: https://fedorahosted.org/releases/k/o/kobo/%{name}-%{version}%{?release_suffix}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -131,5 +131,20 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Daniel Mach - 0.1.1-1 +- Enhance types.Enum to support help_text and additonal options. Update tests for types module. (Daniel Mach) +- Remove temp directory after file upload. (Tomas Kopecek) +- Remove MANIFEST in make clean. (Daniel Mach) +- Fix shortcuts.run to read complete stdout. (Jan Blazek) +- Add rpmlib.get_file_list_from_header() which extracts file list, colors and checksums from a rpm header. (Daniel Mach) +- Add get_digest_algo_from_header() function to read rpm digest algorithm. (Daniel Mach) +- Update epydoc docstrings in kobo.rpmlib. (Daniel Mach) +- Fix deadlock in run(). Use proc.poll() instead of proc.wait(). (Daniel Mach) +- Update epydoc docstrings in kobo.shortcuts. (Daniel Mach) +- Fix AtributeError when active_submenu is None. (Daniel Mach) +- Return menu dict even if no menu is active. (Daniel Mach) +- Do not allow to register plugins to PluginContainer base class. Add several tests. (Daniel Mach) +- Add test runner. (Daniel Mach) +- Add support for empty submenus. (Martin Magr) * Wed Jun 17 2009 Daniel Mach - 0.1.0-1 - first release Index: sources =================================================================== RCS file: /cvs/extras/rpms/kobo/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 17 Jun 2009 12:20:12 -0000 1.2 +++ sources 22 Jul 2009 17:45:10 -0000 1.3 @@ -1 +1 @@ -54b2ffc6ed225df6c04c9140bdf12035 kobo-0.1.0.tar.bz2 +acea1862311063c9708e9023d5aa79d5 kobo-0.1.1.tar.bz2 From plindner at fedoraproject.org Wed Jul 22 17:46:41 2009 From: plindner at fedoraproject.org (Paul Lindner) Date: Wed, 22 Jul 2009 17:46:41 +0000 (UTC) Subject: rpms/memcached/devel .cvsignore, 1.6, 1.7 memcached.spec, 1.15, 1.16 sources, 1.6, 1.7 Message-ID: <20090722174641.B896111C0099@cvs1.fedora.phx.redhat.com> Author: plindner Update of /cvs/pkgs/rpms/memcached/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31692 Modified Files: .cvsignore memcached.spec sources Log Message: Resolves Bug #513202, upgrade to memcached 1.4.0, also adds new memcached-devel rpm Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/memcached/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 30 Apr 2009 05:45:01 -0000 1.6 +++ .cvsignore 22 Jul 2009 17:46:41 -0000 1.7 @@ -1 +1 @@ -memcached-1.2.8.tar.gz +memcached-1.4.0.tar.gz Index: memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/memcached/devel/memcached.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- memcached.spec 30 Apr 2009 05:45:01 -0000 1.15 +++ memcached.spec 22 Jul 2009 17:46:41 -0000 1.16 @@ -6,7 +6,7 @@ %define groupname memcached Name: memcached -Version: 1.2.8 +Version: 1.4.0 Release: 1%{?dist} Summary: High Performance, Distributed Memory Object Cache @@ -54,9 +54,17 @@ Requires: %{name} = %{version}-%{r Requires(post): policycoreutils Requires(postun): policycoreutils + %description selinux SELinux policy module supporting memcached. +%package devel +Summary: Files needed for development using memcached protocol +Group: Development/Libraries + +%description devel +Install memcached-devel if you are developing C/C++ applications that require access to the +memcached binary include files. %prep %setup -q @@ -194,6 +202,9 @@ fi %doc SELinux/*.te SELinux/*.fc SELinux/*.if %{_datadir}/selinux/*/%{modulename}.pp +%files devel +%defattr(-,root,root,0755) +%{_includedir}/memcached/* %changelog * Wed Apr 29 2009 Paul Lindner - 1.2.8-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memcached/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 30 Apr 2009 05:45:01 -0000 1.6 +++ sources 22 Jul 2009 17:46:41 -0000 1.7 @@ -1 +1 @@ -e5a4ee04e517a5cad110f29e4490e4ab memcached-1.2.8.tar.gz +d7651ecb8bf345144cb17900d9a46c85 memcached-1.4.0.tar.gz From bpepple at fedoraproject.org Wed Jul 22 17:57:42 2009 From: bpepple at fedoraproject.org (Brian Pepple) Date: Wed, 22 Jul 2009 17:57:42 +0000 (UTC) Subject: rpms/telepathy-gabble/devel .cvsignore, 1.48, 1.49 sources, 1.48, 1.49 telepathy-gabble.spec, 1.58, 1.59 Message-ID: <20090722175742.D150E11C0099@cvs1.fedora.phx.redhat.com> Author: bpepple Update of /cvs/pkgs/rpms/telepathy-gabble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4512 Modified Files: .cvsignore sources telepathy-gabble.spec Log Message: * Wed Jul 22 2009 Brian Pepple - 0.7.31-1 - Update to 0.7.31. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-gabble/devel/.cvsignore,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- .cvsignore 29 Jun 2009 22:44:36 -0000 1.48 +++ .cvsignore 22 Jul 2009 17:57:41 -0000 1.49 @@ -1 +1 @@ -telepathy-gabble-0.7.30.tar.gz +telepathy-gabble-0.7.31.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-gabble/devel/sources,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sources 29 Jun 2009 22:44:36 -0000 1.48 +++ sources 22 Jul 2009 17:57:42 -0000 1.49 @@ -1 +1 @@ -e969472ac281e751405b5cd21c776840 telepathy-gabble-0.7.30.tar.gz +d7e1b9fa3eeff23f3d425c721e850e4c telepathy-gabble-0.7.31.tar.gz Index: telepathy-gabble.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-gabble/devel/telepathy-gabble.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- telepathy-gabble.spec 29 Jun 2009 22:44:37 -0000 1.58 +++ telepathy-gabble.spec 22 Jul 2009 17:57:42 -0000 1.59 @@ -1,5 +1,5 @@ Name: telepathy-gabble -Version: 0.7.30 +Version: 0.7.31 Release: 1%{?dist} Summary: A Jabber/XMPP connection manager @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Brian Pepple - 0.7.31-1 +- Update to 0.7.31. + * Mon Jun 29 2009 Brian Pepple - 0.7.30-1 - Update to 0.7.30. From orion at fedoraproject.org Wed Jul 22 18:02:30 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 18:02:30 +0000 (UTC) Subject: rpms/bes/devel .cvsignore, 1.4, 1.5 bes.spec, 1.13, 1.14 sources, 1.4, 1.5 bes-3.6.2-gcc43.patch, 1.1, NONE Message-ID: <20090722180230.D12B811C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/bes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6582 Modified Files: .cvsignore bes.spec sources Removed Files: bes-3.6.2-gcc43.patch Log Message: * Tue Jul 21 2009 Orion Poplawski - 3.7.2-1 - update to 3.7.2, enable tcp_wrapper support - Drop gcc43 patch fixed upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bes/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 10 Sep 2008 16:54:52 -0000 1.4 +++ .cvsignore 22 Jul 2009 18:02:00 -0000 1.5 @@ -1 +1 @@ -bes-3.6.2.tar.gz +bes-3.7.2.tar.gz Index: bes.spec =================================================================== RCS file: /cvs/pkgs/rpms/bes/devel/bes.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- bes.spec 4 Mar 2009 09:25:49 -0000 1.13 +++ bes.spec 22 Jul 2009 18:02:00 -0000 1.14 @@ -5,20 +5,19 @@ %define besgroup %{name} Name: bes -Version: 3.6.2 -Release: 4%{?dist} +Version: 3.7.2 +Release: 1%{?dist} Summary: Back-end server software framework for OPeNDAP Group: System Environment/Libraries License: LGPLv2+ URL: http://www.opendap.org/download/BES.html Source0: http://www.opendap.org/pub/source/bes-%{version}.tar.gz -Patch0: bes-3.6.2-gcc43.patch Patch1: bes-3.6.2-includes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libdap-devel >= 3.8.0 +BuildRequires: libdap-devel >= 3.9.2 BuildRequires: readline-devel BuildRequires: bzip2-devel zlib-devel # needed by ppt @@ -64,7 +63,6 @@ Documentation of OPeNDAP BES. %prep %setup -q -%patch0 -p1 -b .gcc43 %patch1 -p1 -b .includes chmod a-x dispatch/BESStreamResponseHandler* @@ -157,6 +155,10 @@ exit 0 %doc __distribution_docs/api-html/ %changelog +* Tue Jul 21 2009 Orion Poplawski - 3.7.2-1 +- update to 3.7.2, enable tcp_wrapper support +- Drop gcc43 patch fixed upstream + * Wed Mar 04 2009 Caol?n McNamara - 3.6.2-4 - include cstdio for std::snprintf Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bes/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 10 Sep 2008 16:54:52 -0000 1.4 +++ sources 22 Jul 2009 18:02:00 -0000 1.5 @@ -1 +1 @@ -7b1c4055179bfc584398c30434042346 bes-3.6.2.tar.gz +9f1711a363ab3c8b172301440ca9e88b bes-3.7.2.tar.gz --- bes-3.6.2-gcc43.patch DELETED --- From jeckersb at fedoraproject.org Wed Jul 22 18:04:48 2009 From: jeckersb at fedoraproject.org (John Eckersberg) Date: Wed, 22 Jul 2009 18:04:48 +0000 (UTC) Subject: rpms/libyaml/devel libyaml.spec,1.2,1.3 Message-ID: <20090722180449.07BB311C0099@cvs1.fedora.phx.redhat.com> Author: jeckersb Update of /cvs/pkgs/rpms/libyaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7523 Modified Files: libyaml.spec Log Message: - Minor tweaks to spec file - Enable %%check section - Thanks Gareth Armstrong Index: libyaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libyaml/devel/libyaml.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libyaml.spec 3 Mar 2009 18:21:03 -0000 1.2 +++ libyaml.spec 22 Jul 2009 18:04:18 -0000 1.3 @@ -1,13 +1,17 @@ -Name: libyaml -Version: 0.1.2 -Release: 3%{?dist} -Summary: YAML 1.1 parser and emitter written in C - -Group: Development/Libraries -License: MIT -URL: http://pyyaml.org/ -Source0: http://pyyaml.org/download/libyaml/yaml-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +%define tarballname yaml + +#====================================================================# + +Name: libyaml +Version: 0.1.2 +Release: 4%{?dist} +Summary: YAML 1.1 parser and emitter written in C + +Group: System Environment/Libraries +License: MIT +URL: http://pyyaml.org/ +Source0: http://pyyaml.org/download/libyaml/%{tarballname}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -17,17 +21,18 @@ emitter written in C. %package devel -Summary: Development libraries and headers for developing LibYAML applications -Group: Development/Libraries -Requires: libyaml = %{version}-%{release} +Summary: Development files for LibYAML applications +Group: Development/Libraries +Requires: libyaml = %{version}-%{release} %description devel -Development libraries and headers for developing LibYAML applications. +The %{name}-devel package contains libraries and header files for +developing applications that use LibYAML. %prep -%setup -q -n yaml-%{version} +%setup -q -n %{tarballname}-%{version} %build @@ -40,6 +45,11 @@ rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install rm -f %{buildroot}%{_libdir}/*.{la,a} + +%check +make check + + %clean rm -rf %{buildroot} @@ -52,7 +62,7 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc README LICENSE +%doc LICENSE README %{_libdir}/%{name}*.so.* @@ -64,6 +74,11 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 John Eckersberg - 0.1.2-4 +- Minor tweaks to spec file +- Enable %%check section +- Thanks Gareth Armstrong + * Tue Mar 3 2009 John Eckersberg - 0.1.2-3 - Remove static libraries From gerd at fedoraproject.org Wed Jul 22 18:06:10 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Wed, 22 Jul 2009 18:06:10 +0000 (UTC) Subject: rpms/parrot/F-11 import.log,1.2,1.3 parrot.spec,1.2,1.3 Message-ID: <20090722180610.2573A11C0099@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7727/F-11 Modified Files: import.log parrot.spec Log Message: Update to 1.4.0-3 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 21 Jul 2009 16:51:41 -0000 1.2 +++ import.log 22 Jul 2009 18:05:39 -0000 1.3 @@ -1,2 +1,3 @@ parrot-1_0_0-6_fc10:F-11:parrot-1.0.0-6.fc10.src.rpm:1241003453 parrot-1_4_0-1_fc11:F-11:parrot-1.4.0-1.fc11.src.rpm:1248194723 +parrot-1_4_0-3_fc11:F-11:parrot-1.4.0-3.fc11.src.rpm:1248285543 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/F-11/parrot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- parrot.spec 21 Jul 2009 16:51:41 -0000 1.2 +++ parrot.spec 22 Jul 2009 18:05:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: parrot Version: 1.4.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries @@ -113,9 +113,9 @@ chmod +x %{__perl_provides} %ifarch %{ix86} x86_64 RPM_OPT_FLAGS="$RPM_OPT_FLAGS -maccumulate-outgoing-args" %else -# PowerPC, not all optimize-options work with the PowerPC-architecture -# the PGE don't build with the optimize="-O2" option on PowerPC - RPM_OPT_FLAGS=`echo "$RPM_OPT_FLAGS" | %{__perl} -pi -e 's/-O2//'` +# The PowerPC-architecture do not build with the '-maccumulate-outgoing-args' +# option. + RPM_OPT_FLAGS="$RPM_OPT_FLAGS" %endif %{__perl} Configure.pl \ @@ -234,8 +234,10 @@ rm -rf $RPM_BUILD_ROOT%{_usr}/config \ # 'make fulltest' is done by default; it take a lot of time export LD_LIBRARY_PATH=$( pwd )/blib/lib FULL='full' +%ifnarch ppc %{?_without_fulltest: FULL=''} %{?!_without_tests: make ${FULL}test} +%endif %clean @@ -360,7 +362,7 @@ rm -rf $RPM_BUILD_ROOT * Sat Mar 10 2007 Steven Pritchard 0.4.9-1 - Update to 0.4.9. -- BR ncurses-devel. +- BuildRequires ncurses-devel. - For some reason now I need to force -lm too. - Remove some files/directories that shouldn't be included. @@ -381,7 +383,7 @@ rm -rf $RPM_BUILD_ROOT * Tue Jun 27 2006 Steven Pritchard 0.4.5-2 - Add -lcurses to get readline detection to work. -- BR libicu-devel. +- Add BuildRequires libicu-devel. * Tue Mar 18 2003 Steve Fink 0.0.11 - first .spec file created From tanguy at fedoraproject.org Wed Jul 22 18:10:19 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Wed, 22 Jul 2009 18:10:19 +0000 (UTC) Subject: rpms/scidavis/F-11 scidavis.spec,1.24,1.25 Message-ID: <20090722181019.4672711C04A0@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9783 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-11/scidavis.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- scidavis.spec 21 Jul 2009 06:07:29 -0000 1.24 +++ scidavis.spec 22 Jul 2009 18:09:48 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -23,6 +23,8 @@ as Python scriptability. %package manual Summary: Additional manual for SciDAVis Group: Documentation +Requires: scidavis = %{version}-%{release} + %description manual This package contains the manual for SciDAVis. @@ -33,6 +35,8 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +sed -i -e 's/Science;Physics;Math;Graphics;/Education;Science;DataVisualization;/' scidavis/scidavis.desktop + touch manual/scidavis.adp %build @@ -86,7 +90,6 @@ rm -rf %{buildroot} %exclude %{_sysconfdir}/scidavisrc.pyo %exclude %{_sysconfdir}/scidavisrc.pyc %{_bindir}/scidavis -#%{_libdir}/scidavis/ %{_datadir}/applications/* %{_datadir}/mime/packages/scidavis.xml %{_datadir}/mimelnk/application/x-sciprj.desktop @@ -101,6 +104,10 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Wed Jul 22 2009 Eric Tanguy - 0.2.3-7 +- Requires scidavis for scidavis-manual +- Change categories in scidavis.desktop + * Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 - Touch manual/scidavis.adp to make Assistant update the cache From tanguy at fedoraproject.org Wed Jul 22 18:24:35 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Wed, 22 Jul 2009 18:24:35 +0000 (UTC) Subject: rpms/scidavis/F-10 scidavis.spec,1.12,1.13 Message-ID: <20090722182435.73EE811C0099@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16259 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/F-10/scidavis.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- scidavis.spec 21 Jul 2009 06:35:16 -0000 1.12 +++ scidavis.spec 22 Jul 2009 18:24:05 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -23,6 +23,8 @@ as Python scriptability. %package manual Summary: Additional manual for SciDAVis Group: Documentation +Requires: scidavis = %{version}-%{release} + %description manual This package contains the manual for SciDAVis. @@ -33,6 +35,8 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +sed -i -e 's/Science;Physics;Math;Graphics;/Education;Science;DataVisualization;/' scidavis/scidavis.desktop + touch manual/scidavis.adp %build @@ -86,7 +90,6 @@ rm -rf %{buildroot} %exclude %{_sysconfdir}/scidavisrc.pyo %exclude %{_sysconfdir}/scidavisrc.pyc %{_bindir}/scidavis -#%{_libdir}/scidavis/ %{_datadir}/applications/* %{_datadir}/mime/packages/scidavis.xml %{_datadir}/mimelnk/application/x-sciprj.desktop @@ -101,6 +104,10 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Wed Jul 22 2009 Eric Tanguy - 0.2.3-7 +- Requires scidavis for scidavis-manual +- Change categories in scidavis.desktop + * Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 - Touch manual/scidavis.adp to make Assistant update the cache From tanguy at fedoraproject.org Wed Jul 22 18:26:40 2009 From: tanguy at fedoraproject.org (Eric Tanguy) Date: Wed, 22 Jul 2009 18:26:40 +0000 (UTC) Subject: rpms/scidavis/devel scidavis.spec,1.21,1.22 Message-ID: <20090722182640.C480511C0099@cvs1.fedora.phx.redhat.com> Author: tanguy Update of /cvs/extras/rpms/scidavis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17326 Modified Files: scidavis.spec Log Message: Index: scidavis.spec =================================================================== RCS file: /cvs/extras/rpms/scidavis/devel/scidavis.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- scidavis.spec 21 Jul 2009 06:38:19 -0000 1.21 +++ scidavis.spec 22 Jul 2009 18:26:40 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -23,6 +23,8 @@ as Python scriptability. %package manual Summary: Additional manual for SciDAVis Group: Documentation +Requires: scidavis = %{version}-%{release} + %description manual This package contains the manual for SciDAVis. @@ -33,6 +35,8 @@ This package contains the manual for Sci %patch1 -p1 sed -i -e 's/50/100/' scidavis/scidavis.xml +sed -i -e 's/Science;Physics;Math;Graphics;/Education;Science;DataVisualization;/' scidavis/scidavis.desktop + touch manual/scidavis.adp %build @@ -86,7 +90,6 @@ rm -rf %{buildroot} %exclude %{_sysconfdir}/scidavisrc.pyo %exclude %{_sysconfdir}/scidavisrc.pyc %{_bindir}/scidavis -#%{_libdir}/scidavis/ %{_datadir}/applications/* %{_datadir}/mime/packages/scidavis.xml %{_datadir}/mimelnk/application/x-sciprj.desktop @@ -101,6 +104,10 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Wed Jul 22 2009 Eric Tanguy - 0.2.3-7 +- Requires scidavis for scidavis-manual +- Change categories in scidavis.desktop + * Tue Jul 21 2009 Eric Tanguy - 0.2.3-6 - Touch manual/scidavis.adp to make Assistant update the cache From orion at fedoraproject.org Wed Jul 22 18:34:19 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 18:34:19 +0000 (UTC) Subject: rpms/libnc-dap/devel libnc-dap.spec,1.25,1.26 Message-ID: <20090722183419.E3B6311C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/libnc-dap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20428 Modified Files: libnc-dap.spec Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.7.3-3 - Rebuild for libdap 3.9.3 Index: libnc-dap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/libnc-dap.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libnc-dap.spec 25 Feb 2009 16:32:08 -0000 1.25 +++ libnc-dap.spec 22 Jul 2009 18:33:49 -0000 1.26 @@ -1,7 +1,7 @@ Name: libnc-dap Summary: The NetCDF interface to DAP-2 from OPeNDAP Version: 3.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries # ncdump, netcdf headers, lnetcdf are coverd by a BSD/MIT-like license @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.7.3-3 +- Rebuild for libdap 3.9.3 + * Wed Feb 25 2009 Fedora Release Engineering - 3.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From zaitcev at fedoraproject.org Wed Jul 22 18:47:40 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 18:47:40 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch, 1.1.2.4, 1.1.2.5 cld.spec, 1.4.2.4, 1.4.2.5 Message-ID: <20090722184740.4E4FC11C0099@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25619 Modified Files: Tag: private-zaitcev-bz512560 cld-test.patch cld.spec Log Message: Bump to test 5. cld-test.patch: lib/cldc.c | 38 +++++++++++++++++---- server/cld.h | 1 server/cldb.c | 15 +++----- server/msg.c | 69 +++++++++++++++++++++++++++++++++------ server/server.c | 86 +++++++++++++++++++++++++++++++++++-------------- server/session.c | 56 +++++++++++++++++++++++-------- server/util.c | 17 +++++---- test/load-file-event.c | 2 - test/start-daemon | 2 - 9 files changed, 211 insertions(+), 75 deletions(-) Index: cld-test.patch =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/Attic/cld-test.patch,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -p -r1.1.2.4 -r1.1.2.5 --- cld-test.patch 22 Jul 2009 05:19:13 -0000 1.1.2.4 +++ cld-test.patch 22 Jul 2009 18:47:38 -0000 1.1.2.5 @@ -132,7 +132,7 @@ index cb73523..cef9092 100644 rc = db_data->get(db_data, txn, &key, &val, rmw ? DB_RMW : 0); diff --git a/server/msg.c b/server/msg.c -index 2877348..bb46fca 100644 +index 2877348..12c6a90 100644 --- a/server/msg.c +++ b/server/msg.c @@ -31,6 +31,23 @@ enum { @@ -274,7 +274,19 @@ index 2877348..bb46fca 100644 resp_rc = CLE_OOM; goto err_out; } -@@ -913,6 +947,7 @@ static void try_commit_data(struct msg_params *mp, +@@ -805,6 +839,11 @@ static void try_commit_data(struct msg_params *mp, + break; + } + ++ if (debugging) ++ cldlog(LOG_DEBUG, ++ " data scan: end %d nseg %u last %u len %u/%u\n", ++ have_end_seg, nseg, last_seg, tmp_size, data_size); ++ + /* return if data stream not yet 100% received */ + if (!have_end_seg || tmp_size < data_size) + return; /* nothing to do */ +@@ -913,6 +952,7 @@ static void try_commit_data(struct msg_params *mp, inode->size = GUINT32_TO_LE(data_size); /* update inode */ @@ -282,7 +294,18 @@ index 2877348..bb46fca 100644 rc = inode_touch(txn, inode); if (rc) { resp_rc = CLE_DB_ERR; -@@ -1221,6 +1256,7 @@ void msg_del(struct msg_params *mp) +@@ -961,6 +1001,10 @@ void msg_data(struct msg_params *mp) + if (mp->msg_len < (sizeof(*msg) + seg_len)) + return; + ++ if (debugging) ++ cldlog(LOG_DEBUG, " data strid %016llx\n", ++ (unsigned long long) msg->strid); ++ + /* search for PUT message with strid == our strid; that is how we + * associate DATA messages with the initial PUT msg + */ +@@ -1221,6 +1265,7 @@ void msg_del(struct msg_params *mp) resp_rc = CLE_DB_ERR; goto err_out; } @@ -290,7 +313,7 @@ index 2877348..bb46fca 100644 /* read parent inode data */ rc = cldb_data_get(txn, cldino_from_le(parent->inum), -@@ -1239,6 +1275,7 @@ void msg_del(struct msg_params *mp) +@@ -1239,6 +1284,7 @@ void msg_del(struct msg_params *mp) resp_rc = CLE_DB_ERR; goto err_out; } @@ -298,7 +321,7 @@ index 2877348..bb46fca 100644 /* prevent deletion of non-empty dirs */ if (GUINT32_FROM_LE(ino->flags) & CIFL_DIR) { -@@ -1311,7 +1348,7 @@ void msg_del(struct msg_params *mp) +@@ -1311,7 +1357,7 @@ void msg_del(struct msg_params *mp) /* remove record from inode's directory data */ if (!dirdata_delete(&parent_data, &parent_len, pinfo.base, pinfo.base_len)) { @@ -307,7 +330,7 @@ index 2877348..bb46fca 100644 resp_rc = CLE_DB_ERR; goto err_out; } -@@ -1327,6 +1364,7 @@ void msg_del(struct msg_params *mp) +@@ -1327,6 +1373,7 @@ void msg_del(struct msg_params *mp) parent->size = GUINT32_TO_LE(parent_len); /* update parent dir inode */ @@ -562,7 +585,7 @@ index e4b027d..fbad5c1 100644 free(inode); } else { diff --git a/server/session.c b/server/session.c -index a3332e9..1962b22 100644 +index a3332e9..d929d3f 100644 --- a/server/session.c +++ b/server/session.c @@ -355,7 +355,7 @@ int session_dispose(DB_TXN *txn, struct session *sess) @@ -594,16 +617,51 @@ index a3332e9..1962b22 100644 SIDARG(outpkt->sid), opstr(outmsg->op), (unsigned long long) -@@ -570,7 +570,7 @@ bool sess_sendmsg(struct session *sess, const void *msg_, size_t msglen, +@@ -569,11 +569,38 @@ bool sess_sendmsg(struct session *sess, const void *msg_, size_t msglen, + if (debugging) { const struct cld_msg_hdr *hdr = msg_; - +- - syslog(LOG_DEBUG, "sendmsg: sid " SIDFMT ", op %s, msglen %u", -+ cldlog(LOG_DEBUG, "sendmsg: sid " SIDFMT ", op %s, msglen %u\n", - SIDARG(sess->sid), - opstr(hdr->op), - (unsigned int) msglen); -@@ -646,7 +646,7 @@ void msg_ack(struct msg_params *mp) +- SIDARG(sess->sid), +- opstr(hdr->op), +- (unsigned int) msglen); ++ const struct cld_msg_resp *rsp; ++ ++ switch (hdr->op) { ++ /* This is the command set that gets to cldc_rx_generic */ ++ case cmo_nop: ++ case cmo_close: ++ case cmo_del: ++ case cmo_lock: ++ case cmo_unlock: ++ case cmo_trylock: ++ case cmo_put: ++ case cmo_new_sess: ++ case cmo_end_sess: ++ case cmo_open: ++ case cmo_data_s: ++ case cmo_get_meta: ++ case cmo_get: ++ rsp = (struct cld_msg_resp *) msg_; ++ cldlog(LOG_DEBUG, "sendmsg: " ++ "sid " SIDFMT ", op %s, msglen %u, code %u\n", ++ SIDARG(sess->sid), ++ opstr(hdr->op), ++ (unsigned int) msglen, ++ GUINT32_FROM_LE(rsp->code)); ++ break; ++ default: ++ cldlog(LOG_DEBUG, ++ "sendmsg: sid " SIDFMT ", op %s, msglen %u\n", ++ SIDARG(sess->sid), ++ opstr(hdr->op), ++ (unsigned int) msglen); ++ } + } + + op = op_alloc(sizeof(*outpkt) + msglen + SHA_DIGEST_LENGTH); +@@ -646,7 +673,7 @@ void msg_ack(struct msg_params *mp) continue; if (debugging) @@ -612,7 +670,7 @@ index a3332e9..1962b22 100644 (unsigned long long) GUINT64_FROM_LE(outpkt->seqid)); /* remove and delete the ack'd msg; call ack'd callback */ -@@ -740,7 +740,8 @@ err_out: +@@ -740,7 +767,8 @@ err_out: authsign(outpkt, alloc_len); if (debugging) @@ -622,7 +680,7 @@ index a3332e9..1962b22 100644 SIDARG(outpkt->sid), opstr(resp->hdr.op), (unsigned long long) GUINT64_FROM_LE(outpkt->seqid)); -@@ -749,7 +750,7 @@ err_out: +@@ -749,7 +777,7 @@ err_out: mp->cli->addr_len, outpkt, alloc_len); if (debugging) @@ -631,7 +689,7 @@ index a3332e9..1962b22 100644 } static void end_sess_done(struct session_outpkt *outpkt) -@@ -804,7 +805,7 @@ err_out_noabort: +@@ -804,7 +832,7 @@ err_out_noabort: /* * Fill ss with contents of the database. @@ -640,7 +698,7 @@ index a3332e9..1962b22 100644 */ int sess_load(GHashTable *ss) { -@@ -876,7 +877,7 @@ static int sess_load_db(GHashTable *ss, DB_TXN *txn) +@@ -876,7 +904,7 @@ static int sess_load_db(GHashTable *ss, DB_TXN *txn) session_decode(sess, &raw_sess); if (debugging) Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -u -p -r1.4.2.4 -r1.4.2.5 --- cld.spec 22 Jul 2009 05:19:13 -0000 1.4.2.4 +++ cld.spec 22 Jul 2009 18:47:39 -0000 1.4.2.5 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962.bz512560.4%{?dist} +Release: 0.4.gc5b5f962.bz512560.5%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -102,8 +102,8 @@ fi %{_includedir}/* %changelog -* Tue Jul 21 2009 Pete Zaitcev -- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.4 +* Wed Jul 22 2009 Pete Zaitcev +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.5 * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From jeckersb at fedoraproject.org Wed Jul 22 18:50:09 2009 From: jeckersb at fedoraproject.org (John Eckersberg) Date: Wed, 22 Jul 2009 18:50:09 +0000 (UTC) Subject: rpms/PyYAML/devel PyYAML.spec,1.7,1.8 Message-ID: <20090722185009.E51F311C049E@cvs1.fedora.phx.redhat.com> Author: jeckersb Update of /cvs/pkgs/rpms/PyYAML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26510 Modified Files: PyYAML.spec Log Message: - Minor tweaks to spec file aligning with latest Fedora packaging guidelines - Enforce inclusion of libyaml in build with --with-libyaml option to setup.py - Deliver to %%{python_sitearch} instead of %%{python_sitelib} due to _yaml.so - Thanks to Gareth Armstrong Index: PyYAML.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyYAML/devel/PyYAML.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- PyYAML.spec 3 Mar 2009 18:13:47 -0000 1.7 +++ PyYAML.spec 22 Jul 2009 18:49:39 -0000 1.8 @@ -1,15 +1,17 @@ -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + +#====================================================================# Name: PyYAML Version: 3.08 -Release: 4%{?dist} +Release: 5%{?dist} Summary: YAML parser and emitter for Python Group: Development/Libraries License: MIT URL: http://pyyaml.org/ Source0: http://pyyaml.org/download/pyyaml/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python-devel, python-setuptools, libyaml-devel @@ -20,38 +22,43 @@ emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML -supports standard YAML tags and provides Python-specific tags that allow -to represent an arbitrary Python object. +supports standard YAML tags and provides Python-specific tags that +allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance. %prep %setup -q -n %{name}-%{version} +chmod a-x examples/yaml-highlight/yaml_hl.py %build -%{__python} setup.py build -chmod a-x examples/yaml-highlight/yaml_hl.py +CFLAGS="${RPM_OPT_FLAGS}" %{__python} setup.py --with-libyaml build %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/%{_bindir} -%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc PKG-INFO README LICENSE examples -%{python_sitelib}/* +%doc CHANGES LICENSE PKG-INFO README examples +%{python_sitearch}/* %changelog +* Wed Jul 22 2009 - John Eckersberg - 3.08-5 +- Minor tweaks to spec file aligning with latest Fedora packaging guidelines +- Enforce inclusion of libyaml in build with --with-libyaml option to setup.py +- Deliver to %%{python_sitearch} instead of %%{python_sitelib} due to _yaml.so +- Thanks to Gareth Armstrong + * Tue Mar 3 2009 John Eckersberg - 3.08-4 - Correction, change libyaml to libyaml-devel in BuildRequires From pebenito at fedoraproject.org Wed Jul 22 18:59:51 2009 From: pebenito at fedoraproject.org (Chris PeBenito) Date: Wed, 22 Jul 2009 18:59:51 +0000 (UTC) Subject: rpms/setools/devel .cvsignore, 1.22, 1.23 setools.spec, 1.88, 1.89 sources, 1.25, 1.26 Message-ID: <20090722185951.E473111C0099@cvs1.fedora.phx.redhat.com> Author: pebenito Update of /cvs/pkgs/rpms/setools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29909 Modified Files: .cvsignore setools.spec sources Log Message: setools: new upstream release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/setools/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 26 Aug 2008 14:23:06 -0000 1.22 +++ .cvsignore 22 Jul 2009 18:59:21 -0000 1.23 @@ -1 +1 @@ -setools-3.3.5.tar.gz +setools-3.3.6.tar.bz2 Index: setools.spec =================================================================== RCS file: /cvs/pkgs/rpms/setools/devel/setools.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- setools.spec 5 Apr 2009 09:15:02 -0000 1.88 +++ setools.spec 22 Jul 2009 18:59:21 -0000 1.89 @@ -1,15 +1,15 @@ %define setools_maj_ver 3.3 -%define setools_min_ver 5 +%define setools_min_ver 6 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: setools Version: %{setools_maj_ver}.%{setools_min_ver} -Release: 8%{?dist} +Release: 1%{?dist} License: GPLv2 URL: http://oss.tresys.com/projects/setools BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Source: http://oss.tresys.com/projects/setools/chrome/site/dists/setools-%{version}/setools-%{version}.tar.gz +Source: http://oss.tresys.com/projects/setools/chrome/site/dists/setools-%{version}/setools-%{version}.tar.bz2 Source1: setools.pam Source2: apol.desktop Source3: seaudit.desktop @@ -344,6 +344,9 @@ rm -rf ${RPM_BUILD_ROOT} %postun libs-tcl -p /sbin/ldconfig %changelog +* Wed Jul 22 2009 Chris PeBenito 3.3.6-1 +- New upstream release. + * Sun Apr 5 2009 Dan Hor?k - 3.3.5-8 - don't expect that java-devel resolves as gcj Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/setools/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 26 Aug 2008 14:23:07 -0000 1.25 +++ sources 22 Jul 2009 18:59:21 -0000 1.26 @@ -1 +1 @@ -4b4b9048d25425efaf645c5fa2696d35 setools-3.3.5.tar.gz +93db5be0bfc32519f8e7fbf769542db5 setools-3.3.6.tar.bz2 From gerd at fedoraproject.org Wed Jul 22 18:28:28 2009 From: gerd at fedoraproject.org (Gerd Pokorra) Date: Wed, 22 Jul 2009 18:28:28 +0000 (UTC) Subject: rpms/parrot/devel import.log,1.6,1.7 parrot.spec,1.6,1.7 Message-ID: <20090722182828.801CA11C0099@cvs1.fedora.phx.redhat.com> Author: gerd Update of /cvs/pkgs/rpms/parrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18085/devel Modified Files: import.log parrot.spec Log Message: Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 22 Jul 2009 16:31:51 -0000 1.6 +++ import.log 22 Jul 2009 18:27:58 -0000 1.7 @@ -4,3 +4,4 @@ parrot-1_2_0-1_fc11:HEAD:parrot-1.2.0-1. parrot-1_3_0-1_39897svn_fc10:HEAD:parrot-1.3.0-1.39897svn.fc10.src.rpm:1246881189 parrot-1_4_0-1_fc11:HEAD:parrot-1.4.0-1.fc11.src.rpm:1248194953 parrot-1_4_0-3_fc11:HEAD:parrot-1.4.0-3.fc11.src.rpm:1248279950 +parrot-1_4_0-3_fc11:HEAD:parrot-1.4.0-3.fc11.src.rpm:1248286928 Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/parrot.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- parrot.spec 22 Jul 2009 16:31:51 -0000 1.6 +++ parrot.spec 22 Jul 2009 18:27:58 -0000 1.7 @@ -234,7 +234,7 @@ rm -rf $RPM_BUILD_ROOT%{_usr}/config \ # 'make fulltest' is done by default; it take a lot of time export LD_LIBRARY_PATH=$( pwd )/blib/lib FULL='full' -%ifnarch ppc ppc64 +%ifnarch ppc %{?_without_fulltest: FULL=''} %{?!_without_tests: make ${FULL}test} %endif From berrange at fedoraproject.org Wed Jul 22 19:02:25 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:02:25 +0000 (UTC) Subject: rpms/perl-Array-Diff/devel .cvsignore, 1.2, 1.3 perl-Array-Diff.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090722190225.735E811C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Array-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30786 Modified Files: .cvsignore perl-Array-Diff.spec sources Log Message: Update to new 0.05002 release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Array-Diff/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Dec 2007 17:50:18 -0000 1.2 +++ .cvsignore 22 Jul 2009 19:01:55 -0000 1.3 @@ -1 +1 @@ -Array-Diff-0.04.tar.gz +Array-Diff-0.05002.tar.gz Index: perl-Array-Diff.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Array-Diff/devel/perl-Array-Diff.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Array-Diff.spec 26 Feb 2009 11:06:14 -0000 1.3 +++ perl-Array-Diff.spec 22 Jul 2009 19:01:55 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Array-Diff -Version: 0.04 -Release: 4%{?dist} +Version: 0.05002 +Release: 1%{?dist} Summary: Diff two arrays License: GPL+ or Artistic Group: Development/Libraries @@ -10,7 +10,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: perl(Algorithm::Diff) BuildRequires: perl(Class::Accessor::Fast) -BuildRequires: perl(Module::Build) +BuildRequires: perl(Module::Install) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) @@ -24,31 +24,36 @@ simple usage of Algorithm::Diff. %setup -q -n Array-Diff-%{version} %build -%{__perl} Build.PL installdirs=vendor -./Build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; %{_fixperms} $RPM_BUILD_ROOT/* %check -./Build test +make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc Changes LICENSE README Todo +%doc Changes LICENSE README %dir %{perl_vendorlib}/Array %{perl_vendorlib}/Array/Diff.pm %{_mandir}/man3/*3pm* %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 0.05002-1 +- Update to new 0.05002 release + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Array-Diff/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Dec 2007 17:50:18 -0000 1.2 +++ sources 22 Jul 2009 19:01:55 -0000 1.3 @@ -1 +1 @@ -7c08993e1d15dfae959b706db23f5a65 Array-Diff-0.04.tar.gz +e9bd2d0cd36177db6a27c94120b47946 Array-Diff-0.05002.tar.gz From deji at fedoraproject.org Wed Jul 22 19:05:10 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Wed, 22 Jul 2009 19:05:10 +0000 (UTC) Subject: rpms/mpich2/F-11 .cvsignore, 1.4, 1.5 mpich2.spec, 1.5, 1.6 sources, 1.4, 1.5 Message-ID: <20090722190510.DA7AB11C0099@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/mpich2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31787 Modified Files: .cvsignore mpich2.spec sources Log Message: * Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 - Update to 1.1.1 - Remove (and obsolete) the -libs subpackage, it is not necessary. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 3 Jun 2009 18:51:44 -0000 1.4 +++ .cvsignore 22 Jul 2009 19:04:40 -0000 1.5 @@ -1 +1 @@ -mpich2-1.1.tar.gz +mpich2-1.1.1.tar.gz Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-11/mpich2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mpich2.spec 3 Jun 2009 18:51:45 -0000 1.5 +++ mpich2.spec 22 Jul 2009 19:04:40 -0000 1.6 @@ -1,16 +1,17 @@ Summary: A high-performance implementation of MPI Name: mpich2 -Version: 1.1 +Version: 1.1.1 Release: 1%{?dist} License: MIT Group: Development/Libraries URL: http://www.mcs.anl.gov/research/projects/mpich2 -Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/src/%{name}-%{version}.tar.gz +Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libXt-devel, e2fsprogs-devel BuildRequires: java-devel-openjdk, gcc-gfortran BuildRequires: emacs-common, perl, python -Requires: %{name}-libs = %{version}-%{release} +Obsoletes: %{name}-libs < 1.1.1 +Requires: environment-modules Requires: python Requires(post): chkconfig Requires(preun):chkconfig @@ -44,13 +45,6 @@ Requires(posttrans):/usr/sbin/alternativ %description devel Contains development headers and libraries for mpich2 -%package libs -Summary: Libraries and configuration files for mpich2 -Group: Development/Libraries - -%description libs -Contains the arch dependent libraries and their build configuration for mpich2 - # We only compile with gcc, but other people may want other compilers. # Set the compiler here. %{!?opt_cc: %global opt_cc gcc} @@ -80,11 +74,9 @@ Contains the arch dependent libraries an %prep %setup -q -sed -i 's#LDFLAGS -static#LDFLAGS#' src/pm/hydra/configure %configure \ --enable-sharedlibs=gcc \ - --enable-threads \ --with-device=%{selected_channels} \ --sysconfdir=%{_sysconfdir}/%{name}-%{mode} \ --includedir=%{_includedir}/%{name} \ @@ -116,6 +108,8 @@ pushd %{buildroot}%{_bindir}/ ln -s mpiexec.py mpdrun touch mpiexec touch mpirun +rm -f mpic++ +touch mpic++ popd for b in mpicxx mpicc mpif77 mpif90; do mv %{buildroot}%{_bindir}/$b %{buildroot}%{_bindir}/mp%{mode}-$b; @@ -129,8 +123,10 @@ mkdir -p %{buildroot}%{_datadir}/%{name} for b in mpicxx mpicc mpif77 mpif90; do ln -s ../../../bin/mp%{mode}-$b %{buildroot}%{_datadir}/%{name}/bin%{mode}/$b done -for ex in mpiexec mpirun; do - ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$ex +ln -s ../../../bin/mp%{mode}-mpicxx %{buildroot}%{_datadir}/%{name}/bin%{mode}/mpic++ + +for bn in mpiexec mpirun; do + ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$bn done mv %{buildroot}%{_libdir}/%{name}/pkgconfig %{buildroot}%{_libdir}/ @@ -142,8 +138,9 @@ echo "%{_libdir}/%{name}" \ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf # Adjust the default 'environment module' PATH for our changes -sed -i 's#bin#bin'%{mode}'#' %{buildroot}%{_datadir}/%{name}/%{name}.module - +mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles +cp -pr src/packaging/envmods/mpich2.module %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} +sed -i 's#'%{_bindir}'#'%{_datadir}/%{name}/bin%{mode}'#' %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} # Manually copy doc file here instead of the %files section to prevent the rpm #build script from throwing the other things in there out @@ -170,6 +167,9 @@ find %{buildroot} -type f -name "*.la" - rm -rf %{buildroot} %post + +/sbin/ldconfig + if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpirun mpi-run %{_bindir}/mpiexec.py 41 \ @@ -182,7 +182,7 @@ if [ $1 -eq 1 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -199,7 +199,7 @@ if [ $1 -eq 0 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -208,11 +208,14 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpi-run %{_bindir}/mpiexec.py fi +%postun -p /sbin/ldconfig + %post devel if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -222,6 +225,7 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -231,24 +235,25 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpicc %{_bindir}/mp%{mode}-mpicc fi -%post libs -p /sbin/ldconfig - -%postun libs -p /sbin/ldconfig - %files %defattr(-,root,root,-) %{_bindir}/* +%dir %{_libdir}/%{name} +%{_libdir}/%{name}/*.jar +%{_libdir}/%{name}/mpe*.o +%{_libdir}/%{name}/*.so.* %dir %{_datadir}/%{name} %dir %{_datadir}/%{name}/bin%{mode} %{_datadir}/%{name}/bin%{mode}/mpiexec %{_datadir}/%{name}/bin%{mode}/mpirun %exclude %{_bindir}/mpiexec %exclude %{_bindir}/mpirun -%exclude %{_bindir}/*mpicc -%exclude %{_bindir}/*mpicxx -%exclude %{_bindir}/*mpif90 -%exclude %{_bindir}/*mpif77 +%exclude %{_bindir}/*mpic* +%exclude %{_bindir}/*mpif* +%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf +%config %{_sysconfdir}/%{name}-%{mode}/ %doc %{_docdir}/%{name}-%{version}/ +%doc %{_datadir}/%{name}/doc/ %{_mandir}/man1/mp-*.1.gz %if 0%{?fedora} < 11 %exclude %{_bindir}/mp*.pyc @@ -259,20 +264,12 @@ fi %ghost %{_mandir}/man1/mpi*.1.gz %ghost %{_mandir}/man1/MPI.1.gz -%files libs -%defattr(-,root,root,-) -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/*.jar -%{_libdir}/%{name}/mpe*.o -%{_libdir}/%{name}/*.so.* -%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf -%config %{_sysconfdir}/%{name}-%{mode}/ - %files devel %defattr(-,root,root,-) %{_bindir}/mp%{mode}* %ghost %{_bindir}/mpicc %ghost %{_bindir}/mpicxx +%ghost %{_bindir}/mpic++ %ghost %{_bindir}/mpif90 %ghost %{_bindir}/mpif77 %{_includedir}/* @@ -280,17 +277,21 @@ fi %{_libdir}/%{name}/*.so %{_libdir}/%{name}/trace_rlog/libTraceInput.so %{_libdir}/pkgconfig/%{name}-ch3.pc -%{_datadir}/%{name}/%{name}.module +%{_datadir}/Modules/modulefiles/%{name}-%{mode} %{_datadir}/%{name}/bin%{mode}/mpicc %{_datadir}/%{name}/bin%{mode}/mpicxx +%{_datadir}/%{name}/bin%{mode}/mpic++ %{_datadir}/%{name}/bin%{mode}/mpif90 %{_datadir}/%{name}/bin%{mode}/mpif77 %{_datadir}/%{name}/examples* %{_datadir}/%{name}/logfiles/ %{_mandir}/man4/*.gz -%doc README.testing README.romio README.developer %changelog +* Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 +- Update to 1.1.1 +- Remove (and obsolete) the -libs subpackage, it is not necessary. + * Wed May 20 2009 Deji Akingunola - 1.1-1 - Update to 1.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 3 Jun 2009 18:51:45 -0000 1.4 +++ sources 22 Jul 2009 19:04:40 -0000 1.5 @@ -1 +1 @@ -aad757e1c1502429170403bb3c1a1ace mpich2-1.1.tar.gz +01bffc9233411495c973d52c8ee15bf9 mpich2-1.1.1.tar.gz From berrange at fedoraproject.org Wed Jul 22 19:09:02 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:09:02 +0000 (UTC) Subject: rpms/perl-Data-Section/devel .cvsignore, 1.2, 1.3 perl-Data-Section.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090722190902.E6A6211C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/perl-Data-Section/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1157 Modified Files: .cvsignore perl-Data-Section.spec sources Log Message: Update to 0.091820 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Section/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Sep 2008 10:24:09 -0000 1.2 +++ .cvsignore 22 Jul 2009 19:09:02 -0000 1.3 @@ -1,4 +1,4 @@ -Data-Section-0.005.tar.gz noarch .build*.log *.rpm +Data-Section-0.091820.tar.gz Index: perl-Data-Section.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Section/devel/perl-Data-Section.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Data-Section.spec 26 Feb 2009 14:33:26 -0000 1.2 +++ perl-Data-Section.spec 22 Jul 2009 19:09:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Data-Section -Version: 0.005 -Release: 3%{?dist} +Version: 0.091820 +Release: 1%{?dist} Summary: Read multiple hunks of data out of your DATA section License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 0.091820-1 +- Update to 0.091820 release + * Thu Feb 26 2009 Fedora Release Engineering - 0.005-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Section/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Sep 2008 10:24:09 -0000 1.2 +++ sources 22 Jul 2009 19:09:02 -0000 1.3 @@ -1 +1 @@ -9206d32770fbb96fa717f8c4399f74ef Data-Section-0.005.tar.gz +b81e356f1d15a72f955caaf75cb21dd5 Data-Section-0.091820.tar.gz From deji at fedoraproject.org Wed Jul 22 19:08:56 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Wed, 22 Jul 2009 19:08:56 +0000 (UTC) Subject: rpms/mpich2/F-10 .cvsignore, 1.4, 1.5 mpich2.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090722190856.59B1411C0099@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/mpich2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv903 Modified Files: .cvsignore mpich2.spec sources Log Message: * Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 - Update to 1.1.1 - Remove (and obsolete) the -libs subpackage, it is not necessary. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 3 Jun 2009 18:56:04 -0000 1.4 +++ .cvsignore 22 Jul 2009 19:08:25 -0000 1.5 @@ -1 +1 @@ -mpich2-1.1.tar.gz +mpich2-1.1.1.tar.gz Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-10/mpich2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mpich2.spec 3 Jun 2009 18:56:04 -0000 1.6 +++ mpich2.spec 22 Jul 2009 19:08:25 -0000 1.7 @@ -1,16 +1,17 @@ Summary: A high-performance implementation of MPI Name: mpich2 -Version: 1.1 +Version: 1.1.1 Release: 1%{?dist} License: MIT Group: Development/Libraries URL: http://www.mcs.anl.gov/research/projects/mpich2 -Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/src/%{name}-%{version}.tar.gz +Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libXt-devel, e2fsprogs-devel BuildRequires: java-devel-openjdk, gcc-gfortran BuildRequires: emacs-common, perl, python -Requires: %{name}-libs = %{version}-%{release} +Obsoletes: %{name}-libs < 1.1.1 +Requires: environment-modules Requires: python Requires(post): chkconfig Requires(preun):chkconfig @@ -44,13 +45,6 @@ Requires(posttrans):/usr/sbin/alternativ %description devel Contains development headers and libraries for mpich2 -%package libs -Summary: Libraries and configuration files for mpich2 -Group: Development/Libraries - -%description libs -Contains the arch dependent libraries and their build configuration for mpich2 - # We only compile with gcc, but other people may want other compilers. # Set the compiler here. %{!?opt_cc: %global opt_cc gcc} @@ -80,11 +74,9 @@ Contains the arch dependent libraries an %prep %setup -q -sed -i 's#LDFLAGS -static#LDFLAGS#' src/pm/hydra/configure %configure \ --enable-sharedlibs=gcc \ - --enable-threads \ --with-device=%{selected_channels} \ --sysconfdir=%{_sysconfdir}/%{name}-%{mode} \ --includedir=%{_includedir}/%{name} \ @@ -116,6 +108,8 @@ pushd %{buildroot}%{_bindir}/ ln -s mpiexec.py mpdrun touch mpiexec touch mpirun +rm -f mpic++ +touch mpic++ popd for b in mpicxx mpicc mpif77 mpif90; do mv %{buildroot}%{_bindir}/$b %{buildroot}%{_bindir}/mp%{mode}-$b; @@ -129,8 +123,10 @@ mkdir -p %{buildroot}%{_datadir}/%{name} for b in mpicxx mpicc mpif77 mpif90; do ln -s ../../../bin/mp%{mode}-$b %{buildroot}%{_datadir}/%{name}/bin%{mode}/$b done -for ex in mpiexec mpirun; do - ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$ex +ln -s ../../../bin/mp%{mode}-mpicxx %{buildroot}%{_datadir}/%{name}/bin%{mode}/mpic++ + +for bn in mpiexec mpirun; do + ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$bn done mv %{buildroot}%{_libdir}/%{name}/pkgconfig %{buildroot}%{_libdir}/ @@ -142,8 +138,9 @@ echo "%{_libdir}/%{name}" \ > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf # Adjust the default 'environment module' PATH for our changes -sed -i 's#bin#bin'%{mode}'#' %{buildroot}%{_datadir}/%{name}/%{name}.module - +mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles +cp -pr src/packaging/envmods/mpich2.module %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} +sed -i 's#'%{_bindir}'#'%{_datadir}/%{name}/bin%{mode}'#' %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} # Manually copy doc file here instead of the %files section to prevent the rpm #build script from throwing the other things in there out @@ -170,6 +167,9 @@ find %{buildroot} -type f -name "*.la" - rm -rf %{buildroot} %post + +/sbin/ldconfig + if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpirun mpi-run %{_bindir}/mpiexec.py 41 \ @@ -182,7 +182,7 @@ if [ $1 -eq 1 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -199,7 +199,7 @@ if [ $1 -eq 0 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -208,11 +208,14 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpi-run %{_bindir}/mpiexec.py fi +%postun -p /sbin/ldconfig + %post devel if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -222,6 +225,7 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -231,24 +235,25 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpicc %{_bindir}/mp%{mode}-mpicc fi -%post libs -p /sbin/ldconfig - -%postun libs -p /sbin/ldconfig - %files %defattr(-,root,root,-) %{_bindir}/* +%dir %{_libdir}/%{name} +%{_libdir}/%{name}/*.jar +%{_libdir}/%{name}/mpe*.o +%{_libdir}/%{name}/*.so.* %dir %{_datadir}/%{name} %dir %{_datadir}/%{name}/bin%{mode} %{_datadir}/%{name}/bin%{mode}/mpiexec %{_datadir}/%{name}/bin%{mode}/mpirun %exclude %{_bindir}/mpiexec %exclude %{_bindir}/mpirun -%exclude %{_bindir}/*mpicc -%exclude %{_bindir}/*mpicxx -%exclude %{_bindir}/*mpif90 -%exclude %{_bindir}/*mpif77 +%exclude %{_bindir}/*mpic* +%exclude %{_bindir}/*mpif* +%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf +%config %{_sysconfdir}/%{name}-%{mode}/ %doc %{_docdir}/%{name}-%{version}/ +%doc %{_datadir}/%{name}/doc/ %{_mandir}/man1/mp-*.1.gz %if 0%{?fedora} < 11 %exclude %{_bindir}/mp*.pyc @@ -259,20 +264,12 @@ fi %ghost %{_mandir}/man1/mpi*.1.gz %ghost %{_mandir}/man1/MPI.1.gz -%files libs -%defattr(-,root,root,-) -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/*.jar -%{_libdir}/%{name}/mpe*.o -%{_libdir}/%{name}/*.so.* -%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf -%config %{_sysconfdir}/%{name}-%{mode}/ - %files devel %defattr(-,root,root,-) %{_bindir}/mp%{mode}* %ghost %{_bindir}/mpicc %ghost %{_bindir}/mpicxx +%ghost %{_bindir}/mpic++ %ghost %{_bindir}/mpif90 %ghost %{_bindir}/mpif77 %{_includedir}/* @@ -280,17 +277,21 @@ fi %{_libdir}/%{name}/*.so %{_libdir}/%{name}/trace_rlog/libTraceInput.so %{_libdir}/pkgconfig/%{name}-ch3.pc -%{_datadir}/%{name}/%{name}.module +%{_datadir}/Modules/modulefiles/%{name}-%{mode} %{_datadir}/%{name}/bin%{mode}/mpicc %{_datadir}/%{name}/bin%{mode}/mpicxx +%{_datadir}/%{name}/bin%{mode}/mpic++ %{_datadir}/%{name}/bin%{mode}/mpif90 %{_datadir}/%{name}/bin%{mode}/mpif77 %{_datadir}/%{name}/examples* %{_datadir}/%{name}/logfiles/ %{_mandir}/man4/*.gz -%doc README.testing README.romio README.developer %changelog +* Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 +- Update to 1.1.1 +- Remove (and obsolete) the -libs subpackage, it is not necessary. + * Wed May 20 2009 Deji Akingunola - 1.1-1 - Update to 1.1 - Spec file update from F-11 branch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 3 Jun 2009 18:56:04 -0000 1.4 +++ sources 22 Jul 2009 19:08:25 -0000 1.5 @@ -1 +1 @@ -aad757e1c1502429170403bb3c1a1ace mpich2-1.1.tar.gz +01bffc9233411495c973d52c8ee15bf9 mpich2-1.1.1.tar.gz From ajax at fedoraproject.org Wed Jul 22 19:12:00 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 19:12:00 +0000 (UTC) Subject: rpms/psutils/devel psutils-datadir.patch, NONE, 1.1 psutils.spec, 1.20, 1.21 Message-ID: <20090722191200.38B3611C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/psutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2469 Modified Files: psutils.spec Added Files: psutils-datadir.patch Log Message: * Wed Jul 22 2009 Adam Jackson 1.17-31 - Split perl scripts to a subpackage. psutils-datadir.patch: Makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE psutils-datadir.patch --- diff -up psutils/Makefile.unix.jx psutils/Makefile.unix --- psutils/Makefile.unix.jx 2009-07-22 15:03:58.000000000 -0400 +++ psutils/Makefile.unix 2009-07-22 15:08:21.000000000 -0400 @@ -31,7 +31,7 @@ OS = UNIX BINDIR = $(DESTDIR)/usr/bin SCRIPTDIR = $(BINDIR) -INCLUDEDIR = $(DESTDIR)/usr/lib/psutils +INCLUDEDIR = $(DESTDIR)/usr/share/psutils PERL = /usr/bin/perl BINMODE = 0755 Index: psutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/psutils/devel/psutils.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- psutils.spec 27 Feb 2009 02:50:43 -0000 1.20 +++ psutils.spec 22 Jul 2009 19:11:59 -0000 1.21 @@ -1,7 +1,7 @@ Summary: PostScript Utilities Name: psutils Version: 1.17 -Release: 30%{dist} +Release: 31%{dist} License: psutils Group: Applications/Publishing Source: psutils-p17.tar.gz @@ -11,6 +11,7 @@ Patch2: psutils-p17-paper.patch Patch3: psutils-p17-strip.patch Patch4: psutils-manpage.patch Patch5: psutils-psmerge.patch +Patch6: psutils-datadir.patch BuildRoot: %{_tmppath}/psutils-root %description @@ -18,6 +19,14 @@ This archive contains some utilities for Page selection and rearrangement are supported, including arrangement into signatures for booklet printing, and page merging for n-up printing. +%package perl +Summary: psutils scripts requiring perl +Group: Applications/Publishing +BuildArch: noarch + +%description perl +Various scripts from the psutils distribution that require perl. + %prep %setup -q -n psutils %patch0 -p1 -b .makefile @@ -26,6 +35,7 @@ signatures for booklet printing, and pag %patch3 -p1 -b .strip %patch4 -p1 -b .manpage %patch5 -p1 -b .new +%patch6 -p1 -b .datadir %build make -f Makefile.unix RPM_OPT_FLAGS="$RPM_OPT_FLAGS" @@ -41,13 +51,60 @@ make -f Makefile.unix \ rm -rf $RPM_BUILD_ROOT %files -%defattr(0644, root, root, 0755) +%defattr(-, root, root, -) %doc README LICENSE -%attr(0755, root, root) /usr/bin/* -%{_mandir}/*/* -/usr/lib/psutils +%{_bindir}/epsffit +%{_bindir}/getafm +%{_bindir}/psbook +%{_bindir}/psnup +%{_bindir}/psresize +%{_bindir}/psselect +%{_bindir}/pstops +%{_bindir}/showchar +%{_mandir}/man1/epsffit.1* +%{_mandir}/man1/getafm.1* +%{_mandir}/man1/psbook.1* +%{_mandir}/man1/psnup.1* +%{_mandir}/man1/psresize.1* +%{_mandir}/man1/psselect.1* +%{_mandir}/man1/pstops.1* +#{_mandir}/man1/showchar.1* + +%files perl +%defattr(-, root, root, -) +%{_bindir}/extractres +%{_bindir}/fixdlsrps +%{_bindir}/fixfmps +%{_bindir}/fixmacps +%{_bindir}/fixpsditps +%{_bindir}/fixpspps +%{_bindir}/fixscribeps +%{_bindir}/fixtpps +%{_bindir}/fixwfwps +%{_bindir}/fixwpps +%{_bindir}/fixwwps +%{_bindir}/includeres +%{_bindir}/psmerge +%{_datadir}/psutils +%{_mandir}/man1/extractres.1* +%{_mandir}/man1/fixdlsrps.1* +%{_mandir}/man1/fixfmps.1* +%{_mandir}/man1/fixmacps.1* +%{_mandir}/man1/fixpsditps.1* +%{_mandir}/man1/fixpspps.1* +%{_mandir}/man1/fixscribeps.1* +%{_mandir}/man1/fixtpps.1* +%{_mandir}/man1/fixwfwps.1* +%{_mandir}/man1/fixwpps.1* +%{_mandir}/man1/fixwwps.1* +%{_mandir}/man1/includeres.1* +%{_mandir}/man1/psmerge.1* + %changelog +* Wed Jul 22 2009 Adam Jackson 1.17-31 +- Split perl scripts to a subpackage. + * Thu Feb 26 2009 Fedora Release Engineering - 1.17-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From berrange at fedoraproject.org Wed Jul 22 19:13:47 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:13:47 +0000 (UTC) Subject: rpms/perl-Module-CPANTS-Analyse/devel .cvsignore, 1.3, 1.4 perl-Module-CPANTS-Analyse.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090722191347.7A88411C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Module-CPANTS-Analyse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3337 Modified Files: .cvsignore perl-Module-CPANTS-Analyse.spec sources Log Message: Update to 0.85 release Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Module-CPANTS-Analyse/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 3 Oct 2008 09:35:08 -0000 1.3 +++ .cvsignore 22 Jul 2009 19:13:47 -0000 1.4 @@ -1,3 +1,3 @@ -Module-CPANTS-Analyse-0.82.tar.gz .build*log *.rpm +Module-CPANTS-Analyse-0.85.tar.gz Index: perl-Module-CPANTS-Analyse.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Module-CPANTS-Analyse/devel/perl-Module-CPANTS-Analyse.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Module-CPANTS-Analyse.spec 26 Feb 2009 21:50:33 -0000 1.6 +++ perl-Module-CPANTS-Analyse.spec 22 Jul 2009 19:13:47 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Module-CPANTS-Analyse -Version: 0.82 -Release: 3%{?dist} +Version: 0.85 +Release: 1%{?dist} Summary: Generate Kwalitee ratings for a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -21,6 +21,7 @@ BuildRequires: perl(Pod::Simple::Checke BuildRequires: perl(Test::YAML::Meta::Version) >= 0.11 BuildRequires: perl(version) >= 0.73 BuildRequires: perl(YAML::Syck) >= 0.95 +BuildRequires: perl(Test::More) BuildRequires: perl(Test::Deep) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) @@ -88,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/cpants_lint.pl %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 0.85-1 +- Update to 0.85 release + * Thu Feb 26 2009 Fedora Release Engineering - 0.82-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Module-CPANTS-Analyse/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Oct 2008 09:35:08 -0000 1.3 +++ sources 22 Jul 2009 19:13:47 -0000 1.4 @@ -1 +1 @@ -df143b264e3b0cb51f5edeecc5fa138e Module-CPANTS-Analyse-0.82.tar.gz +7c22dd04c3d6ef8f94ee3b8dc382b717 Module-CPANTS-Analyse-0.85.tar.gz From zaitcev at fedoraproject.org Wed Jul 22 19:15:43 2009 From: zaitcev at fedoraproject.org (Pete Zaitcev) Date: Wed, 22 Jul 2009 19:15:43 +0000 (UTC) Subject: rpms/cld/devel cld-test.patch, 1.1.2.5, 1.1.2.6 cld.spec, 1.4.2.5, 1.4.2.6 Message-ID: <20090722191543.9836111C0099@cvs1.fedora.phx.redhat.com> Author: zaitcev Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4057 Modified Files: Tag: private-zaitcev-bz512560 cld-test.patch cld.spec Log Message: Test (hopefuly final -- switching extra debugging off) cld-test.patch: lib/cldc.c | 40 ++++++++++++++++++++----- server/cld.h | 1 server/cldb.c | 15 +++------ server/msg.c | 69 ++++++++++++++++++++++++++++++++++++------- server/server.c | 86 ++++++++++++++++++++++++++++++++++++++---------------- server/session.c | 56 ++++++++++++++++++++++++++--------- server/util.c | 17 +++++----- test/start-daemon | 2 - 8 files changed, 211 insertions(+), 75 deletions(-) Index: cld-test.patch =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/Attic/cld-test.patch,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -p -r1.1.2.5 -r1.1.2.6 --- cld-test.patch 22 Jul 2009 18:47:38 -0000 1.1.2.5 +++ cld-test.patch 22 Jul 2009 19:15:43 -0000 1.1.2.6 @@ -1,5 +1,5 @@ diff --git a/lib/cldc.c b/lib/cldc.c -index ab3a2a4..9ed26fd 100644 +index ab3a2a4..add106f 100644 --- a/lib/cldc.c +++ b/lib/cldc.c @@ -133,12 +133,14 @@ static int cldc_rx_generic(struct cldc_session *sess, @@ -60,6 +60,15 @@ index ab3a2a4..9ed26fd 100644 if (memcmp(pkt->magic, CLD_PKT_MAGIC, sizeof(pkt->magic))) { if (sess->verbose) +@@ -1086,7 +1110,7 @@ int cldc_put(struct cldc_fh *fh, const struct cldc_call_opts *copts, + put = (struct cld_msg_put *) msg->data; + put->fh = fh->fh_le; + __cld_rand64(&put->strid); +- put->data_size = data_len; ++ put->data_size = GUINT32_TO_LE(data_len); + + memset(datamsg, 0, sizeof(datamsg)); + diff --git a/server/cld.h b/server/cld.h index 2b14060..21f103d 100644 --- a/server/cld.h @@ -339,7 +348,7 @@ index 2877348..12c6a90 100644 if (rc) { resp_rc = CLE_DB_ERR; diff --git a/server/server.c b/server/server.c -index e4b027d..fbad5c1 100644 +index e4b027d..ad331cf 100644 --- a/server/server.c +++ b/server/server.c @@ -51,6 +51,8 @@ static struct argp_option options[] = { @@ -419,7 +428,7 @@ index e4b027d..fbad5c1 100644 + " msg op %s, seqid %llu, size %u\n", + opstr(msg->op), + (unsigned long long) GUINT64_FROM_LE(pkt->seqid), -+ dp->data_size); ++ GUINT32_FROM_LE(dp->data_size)); + } else { + cldlog(LOG_DEBUG, + " msg op %s, seqid %llu\n", @@ -779,21 +788,8 @@ index 2392595..02bf3af 100644 rc = -errno; } -diff --git a/test/load-file-event.c b/test/load-file-event.c -index d23c501..5846052 100644 ---- a/test/load-file-event.c -+++ b/test/load-file-event.c -@@ -212,7 +212,7 @@ static int init(char *name) - if (rc) - return rc; - -- // run.udp->sess->verbose = true; -+ run.udp->sess->verbose = true; - - event_set(&run.udp_ev, run.udp->fd, EV_READ | EV_PERSIST, - udp_event, &run); diff --git a/test/start-daemon b/test/start-daemon -index 6124ff4..010f7db 100755 +index 6124ff4..4cb9fd7 100755 --- a/test/start-daemon +++ b/test/start-daemon @@ -6,7 +6,7 @@ then @@ -801,7 +797,7 @@ index 6124ff4..010f7db 100755 fi -../server/cld -P cld.pid -d "$PWD/data" -p 18181 -+../server/cld -P cld.pid -d "$PWD/data" -p 18181 -E -D 2 ++../server/cld -P cld.pid -d "$PWD/data" -p 18181 -E sleep 3 Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4.2.5 retrieving revision 1.4.2.6 diff -u -p -r1.4.2.5 -r1.4.2.6 --- cld.spec 22 Jul 2009 18:47:39 -0000 1.4.2.5 +++ cld.spec 22 Jul 2009 19:15:43 -0000 1.4.2.6 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962.bz512560.5%{?dist} +Release: 0.4.gc5b5f962.bz512560.6%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -103,7 +103,7 @@ fi %changelog * Wed Jul 22 2009 Pete Zaitcev -- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.5 +- Testing, bump to 0.2-0.4.gc5b5f962.bz512560.6 * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness From berrange at fedoraproject.org Wed Jul 22 19:17:26 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:17:26 +0000 (UTC) Subject: rpms/perl-Software-License/devel .cvsignore, 1.2, 1.3 perl-Software-License.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090722191726.5E56211C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/perl-Software-License/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4439 Modified Files: .cvsignore perl-Software-License.spec sources Log Message: Update to 0.012 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Software-License/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 3 Oct 2008 09:02:46 -0000 1.2 +++ .cvsignore 22 Jul 2009 19:16:56 -0000 1.3 @@ -1,4 +1,4 @@ -Software-License-0.008.tar.gz .build*.log *.rpm noarch +Software-License-0.012.tar.gz Index: perl-Software-License.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Software-License/devel/perl-Software-License.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Software-License.spec 27 Feb 2009 01:33:30 -0000 1.2 +++ perl-Software-License.spec 22 Jul 2009 19:16:56 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Software-License -Version: 0.008 -Release: 4%{?dist} +Version: 0.012 +Release: 1%{?dist} Summary: Package that provides templated software licenses License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 0.012-1 +- Update to 0.012 release + * Thu Feb 26 2009 Fedora Release Engineering - 0.008-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Software-License/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 3 Oct 2008 09:02:46 -0000 1.2 +++ sources 22 Jul 2009 19:16:56 -0000 1.3 @@ -1 +1 @@ -593cc31662e21f688b2a451ec8068f2e Software-License-0.008.tar.gz +8232072eec55b331b0a56adc253dfa12 Software-License-0.012.tar.gz From berrange at fedoraproject.org Wed Jul 22 19:21:32 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:21:32 +0000 (UTC) Subject: rpms/perl-Test-YAML-Meta/devel .cvsignore, 1.3, 1.4 perl-Test-YAML-Meta.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090722192132.7E40911C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5657 Modified Files: .cvsignore perl-Test-YAML-Meta.spec sources Log Message: Update to 0.12 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 5 Sep 2008 16:35:47 -0000 1.3 +++ .cvsignore 22 Jul 2009 19:21:02 -0000 1.4 @@ -1,3 +1,3 @@ -Test-YAML-Meta-0.11.tar.gz .build*.log *.rpm +Test-YAML-Meta-0.12.tar.gz Index: perl-Test-YAML-Meta.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel/perl-Test-YAML-Meta.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-YAML-Meta.spec 27 Feb 2009 03:05:15 -0000 1.4 +++ perl-Test-YAML-Meta.spec 22 Jul 2009 19:21:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-YAML-Meta -Version: 0.11 -Release: 2%{?dist} +Version: 0.12 +Release: 1%{?dist} Summary: Validation of the META.yml file in a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 0.12-1 +- Update to 0.12 release + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 5 Sep 2008 16:35:47 -0000 1.3 +++ sources 22 Jul 2009 19:21:02 -0000 1.4 @@ -1 +1 @@ -b6aac8d8708f7c09c5a6f6c8c61476df Test-YAML-Meta-0.11.tar.gz +66fc4d551ad6c650ab8f80b2928eadf6 Test-YAML-Meta-0.12.tar.gz From jeckersb at fedoraproject.org Wed Jul 22 19:33:09 2009 From: jeckersb at fedoraproject.org (John Eckersberg) Date: Wed, 22 Jul 2009 19:33:09 +0000 (UTC) Subject: rpms/python-netaddr/devel python-netaddr.spec,1.12,1.13 Message-ID: <20090722193309.4BA0C11C0099@cvs1.fedora.phx.redhat.com> Author: jeckersb Update of /cvs/pkgs/rpms/python-netaddr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10125 Modified Files: python-netaddr.spec Log Message: - Minor tweaks to spec file aligning with latest Fedora packaging guidelines - Enforce python 2.4 dependency as needed by netaddr >= 0.6.2 - Drop BR on python-setuptool as it is not imported in setup.py - Drop BR on dos2unix use sed instead - Align description with that of delivered PKG-INFO - Rip out python shebangs - Add %%check section to enable tests - Thanks to Gareth Armstrong Index: python-netaddr.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-netaddr/devel/python-netaddr.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-netaddr.spec 24 Jun 2009 02:51:44 -0000 1.12 +++ python-netaddr.spec 22 Jul 2009 19:32:38 -0000 1.13 @@ -1,68 +1,100 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +#====================================================================# + Name: python-netaddr Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Network address manipulation, done Pythonically Group: Development/Libraries License: BSD URL: http://code.google.com/p/netaddr/ Source0: http://netaddr.googlecode.com/files/netaddr-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -BuildRequires: python-devel, python-setuptools, dos2unix +BuildRequires: python-devel >= 2.4 + %description -netaddr is a network address manipulation library written in pure Python. +netaddr is a Python library for the representation and manipulation of +various common network address formats and notations. + +It takes the hassle out of fiddling with innumerable variations of +network addresses, presenting a consistent, extensible, easy-to-use +and above all Pythonic API. + +With it you can represent, validate, convert, categorize, iterate, +generate, slice (and dice) :- + + * IP version 4 + * IP version 6 + * CIDR (Classless Inter-Domain Routing) both IPv4 and IPv6 + * MAC (Media Access Control) and IEEE EUI-48 and EUI-64 + * Support for arbitrary IP address ranges with CIDR interoperability + * User friendly alternative IPv4 range syntax using netaddr's + glob-style Wildcard addresses + +For examples see the project wiki :- -It supports the Pythonic manipulation of several common network address -notations and standards, including :- +http://code.google.com/p/netaddr/wiki/NetAddrExamples + +API documentation (auto-generated with epydoc) :- + +http://packages.python.org/netaddr/ -- IP version 4 -- IP version 6 -- CIDR (Classless Inter-Domain Routing) -- IEEE EUI-48 and EUI-64 -- MAC (Media Access Control) %prep %setup -q -n netaddr-%{version} chmod 644 tests/* +# Make rpmlint happy, get rid of DOS line endings +%{__sed} -i 's/\r//' netaddr/*.py +%{__sed} -i 's/\r//' netaddr/ip/*.py +%{__sed} -i 's/\r//' netaddr/eui/*.idx + +# Make rpmlint happy, rip out python shebang lines from most python +# modules +find netaddr -name "*.py" | \ + xargs %{__perl} -ni -e 'print unless /usr\/bin\/python|env\s+python/' + %build %{__python} setup.py build %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/%{_bindir} -%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT -dos2unix $RPM_BUILD_ROOT%{python_sitelib}/netaddr/core.py -dos2unix $RPM_BUILD_ROOT%{python_sitelib}/netaddr/ip/__init__.py +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} + + +%check +python tests/ut_netaddr.py %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files -%defattr(0644,root,root,0755) -%doc GLOSSARY INSTALL LICENSE PKG-INFO README docs/api/ tests +%defattr(-,root,root,-) +%doc AUTHORS CHANGELOG COPYRIGHT GLOSSARY INSTALL LICENSE PKG-INFO +%doc README docs/api/ tests %{python_sitelib}/* -#These libraries have shebangs thus should be +x -%attr(0755,root,root) %{python_sitelib}/netaddr/core.py -%attr(0755,root,root) %{python_sitelib}/netaddr/eui/__init__.py -%attr(0755,root,root) %{python_sitelib}/netaddr/strategy.py -%attr(0755,root,root) %{python_sitelib}/netaddr/address.py -%attr(0755,root,root) %{python_sitelib}/netaddr/ip/__init__.py -%attr(0755,root,root) %{python_sitelib}/netaddr/__init__.py -%attr(0755,root,root) %{python_sitelib}/netaddr/fallback.py -%attr(0755,root,root) %{python_sitelib}/netaddr/util.py %changelog +* Wed Jul 22 2009 John Eckersberg - 0.6.3-2 +- Minor tweaks to spec file aligning with latest Fedora packaging guidelines +- Enforce python 2.4 dependency as needed by netaddr >= 0.6.2 +- Drop BR on python-setuptool as it is not imported in setup.py +- Drop BR on dos2unix use sed instead +- Align description with that of delivered PKG-INFO +- Rip out python shebangs +- Add %%check section to enable tests +- Thanks to Gareth Armstrong + * Tue Jun 23 2009 John Eckersberg - 0.6.3-1 - New upstream bugfix release From ajax at fedoraproject.org Wed Jul 22 19:40:42 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 19:40:42 +0000 (UTC) Subject: rpms/a2ps/devel a2ps.spec,1.91,1.92 Message-ID: <20090722194042.96EE811C04A0@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/a2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13507 Modified Files: a2ps.spec Log Message: * Wed Jul 22 2009 Adam Jackson 4.14-9 - Requires: psutils-perl for fixps Index: a2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/a2ps/devel/a2ps.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- a2ps.spec 23 Feb 2009 23:48:30 -0000 1.91 +++ a2ps.spec 22 Jul 2009 19:40:41 -0000 1.92 @@ -13,7 +13,7 @@ Summary: Converts text and other types of files to PostScript Name: a2ps Version: 4.14 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv3+ Group: Applications/Publishing Source0: http://ftp.gnu.org/gnu/a2ps/%{name}-%{version}.tar.gz @@ -54,7 +54,7 @@ BuildRequires: psutils, tetex-dvips, tex Url: http://www.gnu.org/software/a2ps/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: psutils, ImageMagick, texinfo-tex, gzip, bzip2, groff-perl -Requires: tetex-dvips, tetex-latex, tetex-fonts, file, html2ps +Requires: tetex-dvips, tetex-latex, tetex-fonts, file, html2ps, psutils-perl # for hebrew support, path set. # culmus-fonts # And certainly other font sets for other languages may be needed @@ -288,6 +288,9 @@ exit 0 %{emacs_lispdir}/*.el %changelog +* Wed Jul 22 2009 Adam Jackson 4.14-9 +- Requires: psutils-perl for fixps + * Mon Feb 23 2009 Fedora Release Engineering - 4.14-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From berrange at fedoraproject.org Wed Jul 22 19:42:20 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 19:42:20 +0000 (UTC) Subject: rpms/perl-Test-AutoBuild/devel perl-Test-AutoBuild-1.2.2-bzr-fixes.patch, NONE, 1.1 perl-Test-AutoBuild.spec, 1.13, 1.14 Message-ID: <20090722194220.A391E11C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Test-AutoBuild/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14446 Modified Files: perl-Test-AutoBuild.spec Added Files: perl-Test-AutoBuild-1.2.2-bzr-fixes.patch Log Message: - Fix BZR repository tests (rhbz #511594) - Add missing perl(Class::MethodMaker) dep (rhbz #432714) perl-Test-AutoBuild-1.2.2-bzr-fixes.patch: lib/Test/AutoBuild/Repository/Bazaar.pm | 2 +- t/110-Repository-Bzr.t | 1 + t/110-Repository-CVS.t | 1 + t/110-Repository-Darcs.t | 1 + t/110-Repository-GNUArch.t | 1 + t/110-Repository-Git.t | 1 + t/110-Repository-Mercurial.t | 1 + t/110-Repository-Monotone.t | 1 + t/110-Repository-Perforce.t | 1 + t/110-Repository-SVN.t | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) --- NEW FILE perl-Test-AutoBuild-1.2.2-bzr-fixes.patch --- diff -rup Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm --- Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm 2009-07-22 20:36:04.000000000 +0100 @@ -191,7 +191,7 @@ sub _get_changes { foreach my $line (@lines) { next if $line =~ /^\s*$/; #$log->debug("[$line]"); - if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*$,i) { + if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*(\[merge\])?\s*$,i) { $number = $1; $log->debug("Version number " . $number ); $logs{$number} = { number => $number }; diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t --- Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t 2009-07-22 20:29:38.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Bzr.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-CVS.t Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t --- Test-AutoBuild-1.2.2/t/110-Repository-CVS.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t 2009-07-22 20:29:34.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-CVS.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t --- Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t 2007-12-10 04:45:18.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t 2009-07-22 20:29:31.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Darcs.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Git.t Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t --- Test-AutoBuild-1.2.2/t/110-Repository-Git.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t 2009-07-22 20:29:25.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Git.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t --- Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t 2009-07-22 20:29:22.000000000 +0100 @@ -24,6 +24,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-GNUArch.tar.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t --- Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t 2009-07-22 20:29:18.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Mercurial.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t --- Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t 2009-07-22 20:29:15.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Monotone.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t --- Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t 2009-07-22 20:33:35.000000000 +0100 @@ -26,6 +26,7 @@ my $archive = catfile($here, "t", "110-R my $pid; END { + chdir $here; if (defined $pid) { my $kid = waitpid $pid, WNOHANG; if ($kid != $pid) { diff -rup Test-AutoBuild-1.2.2/t/110-Repository-SVN.t Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t --- Test-AutoBuild-1.2.2/t/110-Repository-SVN.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t 2009-07-22 20:29:02.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-SVN.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } Index: perl-Test-AutoBuild.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Test-AutoBuild/devel/perl-Test-AutoBuild.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Test-AutoBuild.spec 27 Feb 2009 02:13:37 -0000 1.13 +++ perl-Test-AutoBuild.spec 22 Jul 2009 19:42:20 -0000 1.14 @@ -15,7 +15,7 @@ Summary: Framework for performing continuous, unattended, automated software builds Name: perl-%{appname} Version: 1.2.2 -Release: 7%{_extra_release} +Release: 8%{_extra_release} License: GPLv2+ Group: Development/Tools Url: http://autobuild.org/ @@ -23,6 +23,7 @@ Source: http://www.cpan.org/authors/id/D Patch1: %{name}-%{version}-git-output.patch Patch2: %{name}-%{version}-cvs-sticky.patch Patch3: %{name}-%{version}-mtn-migrate.patch +Patch4: %{name}-%{version}-bzr-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Technically this is a noarch package, but due to lack of ghc # on ppc/sparc we need to use arch specific conditionals to kill @@ -71,6 +72,9 @@ Requires: /usr/bin/genbasedir # For Test::AutoBuild::Publisher::XSLTransform Requires: /usr/bin/xsltproc +# Automatic RPM perl deps script misses this +Requires: perl(Class::MethodMaker) + %if %{with_selinux} Requires(post): policycoreutils Requires(postun): policycoreutils @@ -255,6 +259,7 @@ control system %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -450,6 +455,10 @@ fi %config(noreplace) %attr(-,builder,builder) %{_localstatedir}/lib/builder/.cvspass %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 1.2.2-8 +- Fix BZR repository tests (rhbz #511594) +- Add missing perl(Class::MethodMaker) dep (rhbz #432714) + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From s4504kr at fedoraproject.org Wed Jul 22 19:46:18 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Wed, 22 Jul 2009 19:46:18 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.3,1.4 Message-ID: <20090722194618.33EEA11C0099@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15981 Modified Files: ghc-editline.spec Log Message: Rebuild for new ghc release on rawhide Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghc-editline.spec 21 Jul 2009 18:21:51 -0000 1.3 +++ ghc-editline.spec 22 Jul 2009 19:45:47 -0000 1.4 @@ -7,7 +7,7 @@ Name: ghc-editline Version: 0.2.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -127,6 +127,9 @@ fi %endif %Changelog +* Wed Jul 22 2009 Jochen Schmitt 0.2.1.0-6 +- Rebuild for new ghc release on rawhide + * Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 - Fix typo in %%{pkg_name} macro From orion at fedoraproject.org Wed Jul 22 19:47:14 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 19:47:14 +0000 (UTC) Subject: rpms/bes/devel bes.spec,1.14,1.15 Message-ID: <20090722194714.C574911C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/bes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16620 Modified Files: bes.spec Log Message: Add xml files Index: bes.spec =================================================================== RCS file: /cvs/pkgs/rpms/bes/devel/bes.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- bes.spec 22 Jul 2009 18:02:00 -0000 1.14 +++ bes.spec 22 Jul 2009 19:46:43 -0000 1.15 @@ -126,6 +126,7 @@ exit 0 %dir %{_datadir}/bes/ %{_datadir}/bes/*.html %{_datadir}/bes/*.txt +%{_datadir}/bes/*.xml %{_bindir}/beslistener %{_bindir}/besdaemon %{_bindir}/besstandalone From orion at fedoraproject.org Wed Jul 22 19:51:22 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 19:51:22 +0000 (UTC) Subject: rpms/dap-freeform_handler/devel .cvsignore, 1.8, 1.9 dap-freeform_handler.spec, 1.16, 1.17 sources, 1.8, 1.9 Message-ID: <20090722195122.47B0211C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-freeform_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18301 Modified Files: .cvsignore dap-freeform_handler.spec sources Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.7.12-1 - Update to 3.9.12 - Drop gcc43 patch fixed upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dap-freeform_handler/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 10 Sep 2008 17:02:36 -0000 1.8 +++ .cvsignore 22 Jul 2009 19:50:51 -0000 1.9 @@ -1 +1 @@ -freeform_handler-3.7.9.tar.gz +freeform_handler-3.7.12.tar.gz Index: dap-freeform_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-freeform_handler/devel/dap-freeform_handler.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- dap-freeform_handler.spec 24 Feb 2009 10:43:00 -0000 1.16 +++ dap-freeform_handler.spec 22 Jul 2009 19:50:52 -0000 1.17 @@ -1,16 +1,15 @@ Summary: FreeForm data handler for the OPeNDAP Data server Name: dap-freeform_handler -Version: 3.7.9 -Release: 2%{?dist} +Version: 3.7.12 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/freeform_handler-%{version}.tar.gz -Patch0: dap-freeform_handler-3.7.9-gcc43.patch -URL: http://www.opendap.org/ +URL: http://opendap.org/download/ff_server.html BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libdap-devel >= 3.8.2 -BuildRequires: bes-devel >= 3.5.3 +BuildRequires: libdap-devel >= 3.9.3 +BuildRequires: bes-devel >= 3.7.2 %description This is the freeform data handler for our data server. It reads ASCII, @@ -21,7 +20,6 @@ Data Server (aka Hyrax) modules. %prep %setup -q -n freeform_handler-%{version} -%patch0 -p1 -b .gcc43 %build %configure --disable-static --disable-dependency-tracking @@ -52,6 +50,10 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT NEWS README %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.7.12-1 +- Update to 3.9.12 +- Drop gcc43 patch fixed upstream + * Tue Feb 24 2009 Fedora Release Engineering - 3.7.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dap-freeform_handler/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 10 Sep 2008 17:02:36 -0000 1.8 +++ sources 22 Jul 2009 19:50:52 -0000 1.9 @@ -1 +1 @@ -2cbbfedb32bbeb06918d34d9c9066b95 freeform_handler-3.7.9.tar.gz +be52f21253707e16da8f76068dcf75e3 freeform_handler-3.7.12.tar.gz From orion at fedoraproject.org Wed Jul 22 19:59:58 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 19:59:58 +0000 (UTC) Subject: rpms/dap-server/devel .cvsignore, 1.8, 1.9 dap-server.spec, 1.28, 1.29 sources, 1.8, 1.9 dap-server-3.7.4-get_url.patch, 1.2, NONE Message-ID: <20090722195958.717CE11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22407 Modified Files: .cvsignore dap-server.spec sources Removed Files: dap-server-3.7.4-get_url.patch Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 - Update to 3.9.3 - Add BR on cppunit-devel and make check Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dap-server/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 10 Sep 2008 16:55:39 -0000 1.8 +++ .cvsignore 22 Jul 2009 19:59:28 -0000 1.9 @@ -1 +1 @@ -dap-server-3.8.5.tar.gz +dap-server-3.9.3.tar.gz Index: dap-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-server/devel/dap-server.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- dap-server.spec 24 Feb 2009 10:45:51 -0000 1.28 +++ dap-server.spec 22 Jul 2009 19:59:28 -0000 1.29 @@ -7,16 +7,17 @@ Summary: Basic request handling for OPeNDAP servers Name: dap-server -Version: 3.8.5 -Release: 2%{?dist} +Version: 3.9.3 +Release: 1%{?dist} License: LGPLv2+ and GPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/%{name}-%{version}.tar.gz URL: http://www.opendap.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libdap-devel >= 3.8.0 -BuildRequires: bes-devel >= 3.6.0 +BuildRequires: libdap-devel >= 3.9.3 +BuildRequires: bes-devel >= 3.7.2 +BuildRequires: cppunit-devel # we use httpd and not webserver because we make use of the apache user. Requires: curl httpd Requires: perl perl(HTML::Filter) perl(Time::Local) perl(POSIX) @@ -103,6 +104,9 @@ install -p -m644 opendap_apache.conf._di rm $RPM_BUILD_ROOT%{_libdir}/bes/*.la +%check +make check + %clean rm -rf $RPM_BUILD_ROOT @@ -131,6 +135,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 +- Update to 3.9.3 +- Add BR on cppunit-devel and make check + * Tue Feb 24 2009 Fedora Release Engineering - 3.8.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dap-server/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 10 Sep 2008 16:55:40 -0000 1.8 +++ sources 22 Jul 2009 19:59:28 -0000 1.9 @@ -1 +1 @@ -df68adbed16ce772302ea1b5e092f210 dap-server-3.8.5.tar.gz +e03e88ad2053f5ec1764305fad1106c5 dap-server-3.9.3.tar.gz --- dap-server-3.7.4-get_url.patch DELETED --- From berrange at fedoraproject.org Wed Jul 22 20:00:09 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 20:00:09 +0000 (UTC) Subject: rpms/perl-Test-AutoBuild/F-9 perl-Test-AutoBuild-1.2.2-bzr-fixes.patch, NONE, 1.1 perl-Test-AutoBuild.spec, 1.9, 1.10 Message-ID: <20090722200009.D780E11C04A0@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Test-AutoBuild/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22457 Modified Files: perl-Test-AutoBuild.spec Added Files: perl-Test-AutoBuild-1.2.2-bzr-fixes.patch Log Message: - Fix BZR repository tests (rhbz #511594) - Add missing perl(Class::MethodMaker) dep (rhbz #432714) perl-Test-AutoBuild-1.2.2-bzr-fixes.patch: lib/Test/AutoBuild/Repository/Bazaar.pm | 2 +- t/110-Repository-Bzr.t | 1 + t/110-Repository-CVS.t | 1 + t/110-Repository-Darcs.t | 1 + t/110-Repository-GNUArch.t | 1 + t/110-Repository-Git.t | 1 + t/110-Repository-Mercurial.t | 1 + t/110-Repository-Monotone.t | 1 + t/110-Repository-Perforce.t | 1 + t/110-Repository-SVN.t | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) --- NEW FILE perl-Test-AutoBuild-1.2.2-bzr-fixes.patch --- diff -rup Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm --- Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm 2009-07-22 20:36:04.000000000 +0100 @@ -191,7 +191,7 @@ sub _get_changes { foreach my $line (@lines) { next if $line =~ /^\s*$/; #$log->debug("[$line]"); - if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*$,i) { + if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*(\[merge\])?\s*$,i) { $number = $1; $log->debug("Version number " . $number ); $logs{$number} = { number => $number }; diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t --- Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t 2009-07-22 20:29:38.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Bzr.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-CVS.t Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t --- Test-AutoBuild-1.2.2/t/110-Repository-CVS.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t 2009-07-22 20:29:34.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-CVS.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t --- Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t 2007-12-10 04:45:18.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t 2009-07-22 20:29:31.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Darcs.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Git.t Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t --- Test-AutoBuild-1.2.2/t/110-Repository-Git.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t 2009-07-22 20:29:25.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Git.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t --- Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t 2009-07-22 20:29:22.000000000 +0100 @@ -24,6 +24,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-GNUArch.tar.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t --- Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t 2009-07-22 20:29:18.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Mercurial.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t --- Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t 2009-07-22 20:29:15.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Monotone.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t --- Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t 2009-07-22 20:33:35.000000000 +0100 @@ -26,6 +26,7 @@ my $archive = catfile($here, "t", "110-R my $pid; END { + chdir $here; if (defined $pid) { my $kid = waitpid $pid, WNOHANG; if ($kid != $pid) { diff -rup Test-AutoBuild-1.2.2/t/110-Repository-SVN.t Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t --- Test-AutoBuild-1.2.2/t/110-Repository-SVN.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t 2009-07-22 20:29:02.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-SVN.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } Index: perl-Test-AutoBuild.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Test-AutoBuild/F-9/perl-Test-AutoBuild.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-AutoBuild.spec 7 Mar 2008 23:19:39 -0000 1.9 +++ perl-Test-AutoBuild.spec 22 Jul 2009 19:59:39 -0000 1.10 @@ -12,12 +12,13 @@ Summary: Framework for performing continuous, unattended, automated software builds Name: perl-%{appname} Version: 1.2.2 -Release: 3%{_extra_release} +Release: 4%{_extra_release} License: GPLv2+ Group: Development/Tools Url: http://autobuild.org/ Source: http://www.cpan.org/authors/id/D/DA/DANBERR/%{appname}-%{version}.tar.gz Patch1: %{name}-%{version}-git-output.patch +Patch2: %{name}-%{version}-bzr-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArchitectures: noarch @@ -61,6 +62,9 @@ Requires: /usr/bin/genbasedir # For Test::AutoBuild::Publisher::XSLTransform Requires: /usr/bin/xsltproc +# Automatic RPM perl deps script misses this +Requires: perl(Class::MethodMaker) + %if %{with_selinux} Requires(post): policycoreutils Requires(postun): policycoreutils @@ -239,6 +243,7 @@ control system %prep %setup -q -n %{appname}-%{version} %patch1 -p1 +%patch2 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -427,6 +432,10 @@ fi %config(noreplace) %attr(-,builder,builder) %{_localstatedir}/lib/builder/.cvspass %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 1.2.2-4.fc9 +- Fix BZR repository tests (rhbz #511594) +- Add missing perl(Class::MethodMaker) dep (rhbz #432714) + * Fri Mar 07 2008 Daniel P. Berrange - 1.2.2-3.fc9 - Fix parsing of GIT output - Added missing build requires for META.yml test case From berrange at fedoraproject.org Wed Jul 22 20:02:15 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 20:02:15 +0000 (UTC) Subject: rpms/perl-Test-AutoBuild/F-10 perl-Test-AutoBuild-1.2.2-bzr-fixes.patch, NONE, 1.1 perl-Test-AutoBuild.spec, 1.12, 1.13 Message-ID: <20090722200215.A7D8711C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Test-AutoBuild/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23048 Modified Files: perl-Test-AutoBuild.spec Added Files: perl-Test-AutoBuild-1.2.2-bzr-fixes.patch Log Message: - Fix BZR repository tests (rhbz #511594) - Add missing perl(Class::MethodMaker) dep (rhbz #432714) perl-Test-AutoBuild-1.2.2-bzr-fixes.patch: lib/Test/AutoBuild/Repository/Bazaar.pm | 2 +- t/110-Repository-Bzr.t | 1 + t/110-Repository-CVS.t | 1 + t/110-Repository-Darcs.t | 1 + t/110-Repository-GNUArch.t | 1 + t/110-Repository-Git.t | 1 + t/110-Repository-Mercurial.t | 1 + t/110-Repository-Monotone.t | 1 + t/110-Repository-Perforce.t | 1 + t/110-Repository-SVN.t | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) --- NEW FILE perl-Test-AutoBuild-1.2.2-bzr-fixes.patch --- diff -rup Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm --- Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm 2009-07-22 20:36:04.000000000 +0100 @@ -191,7 +191,7 @@ sub _get_changes { foreach my $line (@lines) { next if $line =~ /^\s*$/; #$log->debug("[$line]"); - if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*$,i) { + if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*(\[merge\])?\s*$,i) { $number = $1; $log->debug("Version number " . $number ); $logs{$number} = { number => $number }; diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t --- Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t 2009-07-22 20:29:38.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Bzr.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-CVS.t Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t --- Test-AutoBuild-1.2.2/t/110-Repository-CVS.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t 2009-07-22 20:29:34.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-CVS.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t --- Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t 2007-12-10 04:45:18.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t 2009-07-22 20:29:31.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Darcs.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Git.t Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t --- Test-AutoBuild-1.2.2/t/110-Repository-Git.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t 2009-07-22 20:29:25.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Git.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t --- Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t 2009-07-22 20:29:22.000000000 +0100 @@ -24,6 +24,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-GNUArch.tar.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t --- Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t 2009-07-22 20:29:18.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Mercurial.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t --- Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t 2009-07-22 20:29:15.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Monotone.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t --- Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t 2009-07-22 20:33:35.000000000 +0100 @@ -26,6 +26,7 @@ my $archive = catfile($here, "t", "110-R my $pid; END { + chdir $here; if (defined $pid) { my $kid = waitpid $pid, WNOHANG; if ($kid != $pid) { diff -rup Test-AutoBuild-1.2.2/t/110-Repository-SVN.t Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t --- Test-AutoBuild-1.2.2/t/110-Repository-SVN.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t 2009-07-22 20:29:02.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-SVN.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } Index: perl-Test-AutoBuild.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Test-AutoBuild/F-10/perl-Test-AutoBuild.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Test-AutoBuild.spec 2 Oct 2008 11:57:05 -0000 1.12 +++ perl-Test-AutoBuild.spec 22 Jul 2009 20:01:45 -0000 1.13 @@ -15,7 +15,7 @@ Summary: Framework for performing continuous, unattended, automated software builds Name: perl-%{appname} Version: 1.2.2 -Release: 6%{_extra_release} +Release: 7%{_extra_release} License: GPLv2+ Group: Development/Tools Url: http://autobuild.org/ @@ -23,6 +23,7 @@ Source: http://www.cpan.org/authors/id/D Patch1: %{name}-%{version}-git-output.patch Patch2: %{name}-%{version}-cvs-sticky.patch Patch3: %{name}-%{version}-mtn-migrate.patch +Patch4: %{name}-%{version}-bzr-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Technically this is a noarch package, but due to lack of ghc # on ppc/sparc we need to use arch specific conditionals to kill @@ -71,6 +72,9 @@ Requires: /usr/bin/genbasedir # For Test::AutoBuild::Publisher::XSLTransform Requires: /usr/bin/xsltproc +# Automatic RPM perl deps script misses this +Requires: perl(Class::MethodMaker) + %if %{with_selinux} Requires(post): policycoreutils Requires(postun): policycoreutils @@ -255,6 +259,7 @@ control system %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -450,6 +455,10 @@ fi %config(noreplace) %attr(-,builder,builder) %{_localstatedir}/lib/builder/.cvspass %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 1.2.2-7.fc10 +- Fix BZR repository tests (rhbz #511594) +- Add missing perl(Class::MethodMaker) dep (rhbz #432714) + * Thu Oct 2 2008 Daniel P. Berrange - 1.2.2-6.fc10 - Avoid empty debuginfo file (rhbz #465136) From tibbs at fedoraproject.org Wed Jul 22 20:02:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 22 Jul 2009 20:02:24 +0000 (UTC) Subject: rpms/zoneminder/devel zoneminder-1.24.2-dbinstall.patch, NONE, 1.1 zoneminder-1.24.2-gcc44.patch, NONE, 1.1 zoneminder-1.24.2-noffmpeg.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 zoneminder.spec, 1.21, 1.22 zoneminder-1.24.1-dbinstall.patch, 1.1, NONE zoneminder-1.24.1-gcc44.patch, 1.3, NONE zoneminder-1.24.1-noffmpeg.patch, 1.1, NONE Message-ID: <20090722200224.C633711C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/extras/rpms/zoneminder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23106 Modified Files: .cvsignore sources zoneminder.spec Added Files: zoneminder-1.24.2-dbinstall.patch zoneminder-1.24.2-gcc44.patch zoneminder-1.24.2-noffmpeg.patch Removed Files: zoneminder-1.24.1-dbinstall.patch zoneminder-1.24.1-gcc44.patch zoneminder-1.24.1-noffmpeg.patch Log Message: * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 - Initial update to 1.24.2. - Rebase patches. - Update mootools download location. - Update to mootools 1.2.3. - Add additional dependencies for some optional features. zoneminder-1.24.2-dbinstall.patch: configure.ac | 8 ++++---- db/Makefile.am | 9 +++++++++ scripts/zm.in | 18 +++++++----------- scripts/zmupdate.pl.in | 2 +- zm.conf.in | 4 ++-- 5 files changed, 23 insertions(+), 18 deletions(-) --- NEW FILE zoneminder-1.24.2-dbinstall.patch --- diff -up ./configure.ac.dbinstall ./configure.ac --- ./configure.ac.dbinstall 2009-06-24 05:22:23.000000000 -0500 +++ ./configure.ac 2009-07-19 22:40:16.000000000 -0500 @@ -1,11 +1,9 @@ AC_PREREQ(2.59) -AC_INIT(zm,1.24.2,support at zoneminder.com,ZoneMinder) +AC_INIT(zm,1.24.2,support at zoneminder.com,zoneminder) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR(src/zm.h) AM_CONFIG_HEADER(config.h) -PATH_BUILD=`pwd` -AC_SUBST(PATH_BUILD) TIME_BUILD=`date +'%s'` AC_SUBST(TIME_BUILD) @@ -319,8 +317,10 @@ AC_PROG_PERL_MODULES(X10::ActiveHome,,AC AC_DEFINE_DIR([BINDIR],[bindir],[Expanded binary directory]) AC_DEFINE_DIR([LIBDIR],[libdir],[Expanded library directory]) +AC_DEFINE_DIR([DATADIR],[datadir],[Expanded data directory]) +AC_SUBST(PKGDATADIR,"$DATADIR/$PACKAGE") AC_SUBST(RUNDIR,"/var/run") -AC_SUBST(ZM_RUNDIR,"$RUNDIR/zm") +AC_SUBST(ZM_RUNDIR,"$RUNDIR/$PACKAGE") AC_SUBST(ZM_PID,"$ZM_RUNDIR/zm.pid") AC_DEFINE_DIR([SYSCONFDIR],[sysconfdir],[Expanded configuration directory]) AC_SUBST(ZM_CONFIG,"$SYSCONFDIR/zm.conf") diff -up ./db/Makefile.am.dbinstall ./db/Makefile.am --- ./db/Makefile.am.dbinstall 2009-03-31 09:06:34.000000000 -0500 +++ ./db/Makefile.am 2009-07-19 22:27:02.000000000 -0500 @@ -1,7 +1,16 @@ AUTOMAKE_OPTIONS = gnu +zmdbdatadir = $(pkgdatadir)/db + EXTRA_DIST = \ zm_create.sql.in \ + $(dbupgrade_scripts) + +dist_zmdbdata_DATA = \ + zm_create.sql \ + $(dbupgrade_scripts) + +dbupgrade_scripts = \ zm_update-0.0.1.sql \ zm_update-0.9.7.sql \ zm_update-0.9.8.sql \ diff -up ./scripts/zm.in.dbinstall ./scripts/zm.in --- ./scripts/zm.in.dbinstall 2009-03-20 07:07:02.000000000 -0500 +++ ./scripts/zm.in 2009-07-19 22:27:02.000000000 -0500 @@ -6,10 +6,10 @@ # Source function library. . /etc/rc.d/init.d/functions -prog=ZoneMinder +prog="@PACKAGE@" ZM_CONFIG="@ZM_CONFIG@" pidfile="@ZM_RUNDIR@" -LOCKFILE=/var/lock/subsys/zm +LOCKFILE=/var/lock/subsys/$prog loadconf() { @@ -27,9 +27,8 @@ command="$ZM_PATH_BIN/zmpkg.pl" start() { zmupdate || return $? - loadconf || return $? #Make sure the directory for our PID folder exists or create one. - [ ! -d /var/run/zm ] \ + [ ! -d $pidfile ] \ && mkdir -m 774 $pidfile \ && chown $ZM_WEB_USER:$ZM_WEB_GROUP $pidfile #Make sure the folder for the socks file exists or create one @@ -56,7 +55,6 @@ start() stop() { - loadconf echo -n $"Stopping $prog: " $command stop RETVAL=$? @@ -67,22 +65,21 @@ stop() zmstatus() { - loadconf result=`$command status` if [ "$result" = "running" ]; then - echo "ZoneMinder is running" + echo "$prog is running" $ZM_PATH_BIN/zmu -l RETVAL=0 else - echo "ZoneMinder is stopped" + echo "$prog is stopped" RETVAL=1 fi } zmupdate() { - if [ -x $ZM_PATH_BIN/zm_update ]; then - $ZM_PATH_BIN/zm_update noi + if [ -x $ZM_PATH_BIN/zmupdate.pl ]; then + $ZM_PATH_BIN/zmupdate.pl --freshen >/dev/null fi } @@ -99,7 +96,6 @@ case "$1" in start ;; 'condrestart') - loadconf result=`$ZM_PATH_BIN/zmdc.pl check` if [ "$result" = "running" ]; then $ZM_PATH_BIN/zmdc.pl shutdown > /dev/null --- ./scripts/zmupdate.pl.in.dbinstall 2009-06-30 02:42:12.000000000 -0500 +++ ./scripts/zmupdate.pl.in 2009-07-19 22:27:02.000000000 -0500 @@ -403,7 +403,7 @@ if ( $version ) $command .= " -p".$db_pass; } } - $command .= " ".ZM_DB_NAME." < ".ZM_PATH_BUILD."/db/zm_update-".$version.".sql"; + $command .= " ".ZM_DB_NAME." < ".ZM_PATH_DATA."/db/zm_update-".$version.".sql"; print( "Executing '$command'\n" ) if ( DBG_LEVEL > 0 ); my $output = qx($command); diff -up ./zm.conf.in.dbinstall ./zm.conf.in --- ./zm.conf.in.dbinstall 2009-03-20 07:07:10.000000000 -0500 +++ ./zm.conf.in 2009-07-19 22:27:02.000000000 -0500 @@ -12,8 +12,8 @@ # Current version of ZoneMinder ZM_VERSION=@VERSION@ -# Path to build directory, used mostly for finding DB upgrade scripts -ZM_PATH_BUILD=@PATH_BUILD@ +# Path to installed data directory, used mostly for finding DB upgrade scripts +ZM_PATH_DATA=@PKGDATADIR@ # Build time, used to record when to trigger various checks ZM_TIME_BUILD=@TIME_BUILD@ zoneminder-1.24.2-gcc44.patch: Makefile.am | 2 +- zm_utils.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE zoneminder-1.24.2-gcc44.patch --- --- src/zm_utils.cpp.gcc44 2009-05-28 03:47:59.000000000 -0500 +++ src/zm_utils.cpp 2009-07-20 00:28:43.000000000 -0500 @@ -20,7 +20,8 @@ //#include "zm_debug.h" #include "zm_utils.h" -#include +#include +#include const std::string stringtf( const char *format, ... ) { --- src/Makefile.am.frepo 2009-04-11 02:08:57.000000000 +0100 +++ src/Makefile.am 2009-04-11 02:09:07.000000000 +0100 @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = gnu AM_CPPFLAGS = @MYSQL_CFLAGS@ @FFMPEG_CFLAGS@ -Wall -Wno-sign-compare -fno-inline -AM_CXXFLAGS = -frepo +#AM_CXXFLAGS = -frepo CLEANFILES = *.rpo zoneminder-1.24.2-noffmpeg.patch: configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE zoneminder-1.24.2-noffmpeg.patch --- --- configure.ac.noffmpeg 2009-07-20 00:24:37.000000000 -0500 +++ configure.ac 2009-07-20 00:25:51.000000000 -0500 @@ -244,10 +244,10 @@ AC_CHECK_LIB(gnutls-openssl,MD5,,AC_MSG_WARN([gnutls-openssl.a is required for authenticated streaming - use ZM_SSL_LIB option to select openssl instead])) fi AC_CHECK_LIB(pcre,pcre_compile,,AC_MSG_WARN(libpcre.a may be required for remote/network camera support)) -AC_CHECK_LIB(avutil,av_malloc,,AC_MSG_WARN(libavutil.a may be required for MPEG streaming)) -AC_CHECK_LIB(avcodec,avcodec_init,,AC_MSG_WARN(libavcodec.a is required for MPEG streaming)) -AC_CHECK_LIB(avformat,av_new_stream,,AC_MSG_WARN(libavformat.a is required for MPEG streaming),[-lavcodec -lavutil]) -AC_CHECK_LIB(swscale,sws_scale,,,-lswscale) +dnl AC_CHECK_LIB(avutil,av_malloc,,AC_MSG_WARN(libavutil.a may be required for MPEG streaming)) +dnl AC_CHECK_LIB(avcodec,avcodec_init,,AC_MSG_WARN(libavcodec.a is required for MPEG streaming)) +dnl AC_CHECK_LIB(avformat,av_new_stream,,AC_MSG_WARN(libavformat.a is required for MPEG streaming),[-lavcodec -lavutil]) +dnl AC_CHECK_LIB(swscale,sws_scale,,,-lswscale) AC_CHECK_LIB(bz2,BZ2_bzCompress,,AC_MSG_WARN(zm requires libbz2.a for recent versions of ffmpeg)) AC_CHECK_LIB(z,compress,,) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/zoneminder/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 15 Mar 2009 00:37:00 -0000 1.5 +++ .cvsignore 22 Jul 2009 20:01:53 -0000 1.6 @@ -1,4 +1,4 @@ -ZoneMinder-1.24.1.tar.gz cambozola-0.68.tar.gz -mootools-1.2-core-yc.js jscalendar-1.0.zip +mootools-1.2.3-core-yc.js +ZoneMinder-1.24.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/zoneminder/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 15 Mar 2009 00:37:00 -0000 1.5 +++ sources 22 Jul 2009 20:01:54 -0000 1.6 @@ -1,4 +1,4 @@ -1e4ce392d645cbb28037ecebc5a56584 ZoneMinder-1.24.1.tar.gz e4fac8b6ee94c9075b14bb95be4f860b cambozola-0.68.tar.gz -741c1ef4d6602c12a54d8a1b629988c8 mootools-1.2-core-yc.js 10f2160fe68294013efcd1473cd36f72 jscalendar-1.0.zip +2107736d116f31767cadb15902c6c7fd mootools-1.2.3-core-yc.js +550d2f8f08852134028c3b1cf8fa437f ZoneMinder-1.24.2.tar.gz Index: zoneminder.spec =================================================================== RCS file: /cvs/extras/rpms/zoneminder/devel/zoneminder.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- zoneminder.spec 11 Apr 2009 18:03:48 -0000 1.21 +++ zoneminder.spec 22 Jul 2009 20:01:54 -0000 1.22 @@ -3,16 +3,16 @@ %define zmuid_final apache %define zmgid_final apache -Name: zoneminder -Version: 1.24.1 -Release: 3%{?dist} -Summary: A camera monitoring and analysis tool -Group: System Environment/Daemons +Name: zoneminder +Version: 1.24.2 +Release: 1%{?dist} +Summary: A camera monitoring and analysis tool +Group: System Environment/Daemons # jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/ # Mootools is inder the MIT license: http://mootools.net/ -License: GPLv2+ and LGPLv2+ and MIT -URL: http://www.zoneminder.com/ -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +License: GPLv2+ and LGPLv2+ and MIT +URL: http://www.zoneminder.com/ +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.zoneminder.com/fileadmin/downloads/ZoneMinder-%{version}.tar.gz Source1: http://www.charliemouse.com/code/cambozola/cambozola-0.68.tar.gz @@ -20,13 +20,13 @@ Source2: zoneminder.conf Source3: redalert.wav Source4: README.Fedora Source5: http://downloads.sourceforge.net/jscalendar/jscalendar-1.0.zip -Source6: http://mootools.net/downloads/mootools-1.2-core-yc.js -Patch1: zoneminder-1.24.1-dbinstall.patch +Source6: http://mootools.net/download/get/mootools-1.2.3-core-yc.js +Patch1: zoneminder-1.24.2-dbinstall.patch Patch2: zoneminder-1.24.1-runlevel.patch -Patch3: zoneminder-1.24.1-noffmpeg.patch +Patch3: zoneminder-1.24.2-noffmpeg.patch Patch4: zoneminder-1.24.1-perldep.patch Patch10: zoneminder-1.22.3-installfix.patch -Patch11: zoneminder-1.24.1-gcc44.patch +Patch11: zoneminder-1.24.2-gcc44.patch Conflicts: zm <= 1.22.3 @@ -37,9 +37,12 @@ BuildRequires: perl(Date::Manip) perl(D BuildRequires: perl(ExtUtils::MakeMaker) perl(LWP::UserAgent) BuildRequires: perl(MIME::Entity) perl(MIME::Lite) BuildRequires: perl(PHP::Serialization) + Requires: httpd php php-mysql Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -Requires: perl(DBD::mysql) +Requires: perl(DBD::mysql) perl(Archive::Tar) perl(Archive::Zip) +Requires: perl(MIME::Entity) perl(MIME::Lite) perl(Net::SMTP) perl(Net::FTP) + Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service @@ -133,8 +136,8 @@ cp -rp jscalendar-1.0/* $RPM_BUILD_ROOT% # Install mootools pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/www -install -m 644 %{SOURCE6} mootools-1.2-core-yc.js -ln -s mootools-1.2-core-yc.js mootools.js +install -m 644 %{SOURCE6} mootools-1.2.3-core-yc.js +ln -s mootools-1.2.3-core-yc.js mootools.js popd %clean @@ -197,6 +200,13 @@ fi %changelog +* Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 +- Initial update to 1.24.2. +- Rebase patches. +- Update mootools download location. +- Update to mootools 1.2.3. +- Add additional dependencies for some optional features. + * Sat Apr 11 2009 Martin Ebourne - 1.24.1-3 - Remove unused Sys::Mmap perl dependency RPM is finding --- zoneminder-1.24.1-dbinstall.patch DELETED --- --- zoneminder-1.24.1-gcc44.patch DELETED --- --- zoneminder-1.24.1-noffmpeg.patch DELETED --- From berrange at fedoraproject.org Wed Jul 22 20:04:08 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Wed, 22 Jul 2009 20:04:08 +0000 (UTC) Subject: rpms/perl-Test-AutoBuild/F-11 perl-Test-AutoBuild-1.2.2-bzr-fixes.patch, NONE, 1.1 perl-Test-AutoBuild.spec, 1.13, 1.14 Message-ID: <20090722200408.61F4411C0099@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/extras/rpms/perl-Test-AutoBuild/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23577 Modified Files: perl-Test-AutoBuild.spec Added Files: perl-Test-AutoBuild-1.2.2-bzr-fixes.patch Log Message: - Fix BZR repository tests (rhbz #511594) - Add missing perl(Class::MethodMaker) dep (rhbz #432714) perl-Test-AutoBuild-1.2.2-bzr-fixes.patch: lib/Test/AutoBuild/Repository/Bazaar.pm | 2 +- t/110-Repository-Bzr.t | 1 + t/110-Repository-CVS.t | 1 + t/110-Repository-Darcs.t | 1 + t/110-Repository-GNUArch.t | 1 + t/110-Repository-Git.t | 1 + t/110-Repository-Mercurial.t | 1 + t/110-Repository-Monotone.t | 1 + t/110-Repository-Perforce.t | 1 + t/110-Repository-SVN.t | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) --- NEW FILE perl-Test-AutoBuild-1.2.2-bzr-fixes.patch --- diff -rup Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm --- Test-AutoBuild-1.2.2/lib/Test/AutoBuild/Repository/Bazaar.pm 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/lib/Test/AutoBuild/Repository/Bazaar.pm 2009-07-22 20:36:04.000000000 +0100 @@ -191,7 +191,7 @@ sub _get_changes { foreach my $line (@lines) { next if $line =~ /^\s*$/; #$log->debug("[$line]"); - if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*$,i) { + if ($line =~ m,^revno:\s*(\d+(?:\.\d+)*)\s*(\[merge\])?\s*$,i) { $number = $1; $log->debug("Version number " . $number ); $logs{$number} = { number => $number }; diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t --- Test-AutoBuild-1.2.2/t/110-Repository-Bzr.t 2007-12-11 05:07:23.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Bzr.t 2009-07-22 20:29:38.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Bzr.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-CVS.t Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t --- Test-AutoBuild-1.2.2/t/110-Repository-CVS.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-CVS.t 2009-07-22 20:29:34.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-CVS.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t --- Test-AutoBuild-1.2.2/t/110-Repository-Darcs.t 2007-12-10 04:45:18.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Darcs.t 2009-07-22 20:29:31.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Darcs.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Git.t Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t --- Test-AutoBuild-1.2.2/t/110-Repository-Git.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Git.t 2009-07-22 20:29:25.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Git.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t --- Test-AutoBuild-1.2.2/t/110-Repository-GNUArch.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-GNUArch.t 2009-07-22 20:29:22.000000000 +0100 @@ -24,6 +24,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-GNUArch.tar.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t --- Test-AutoBuild-1.2.2/t/110-Repository-Mercurial.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Mercurial.t 2009-07-22 20:29:18.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Mercurial.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t --- Test-AutoBuild-1.2.2/t/110-Repository-Monotone.t 2009-07-22 20:37:39.000000000 +0100 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Monotone.t 2009-07-22 20:29:15.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-Monotone.tar.gz"); END { + chdir $here; unless ($ENV{DEBUG_TESTS}) { rmtree ($build_repos); rmtree ($build_home); diff -rup Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t --- Test-AutoBuild-1.2.2/t/110-Repository-Perforce.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-Perforce.t 2009-07-22 20:33:35.000000000 +0100 @@ -26,6 +26,7 @@ my $archive = catfile($here, "t", "110-R my $pid; END { + chdir $here; if (defined $pid) { my $kid = waitpid $pid, WNOHANG; if ($kid != $pid) { diff -rup Test-AutoBuild-1.2.2/t/110-Repository-SVN.t Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t --- Test-AutoBuild-1.2.2/t/110-Repository-SVN.t 2007-12-08 22:40:35.000000000 +0000 +++ Test-AutoBuild-1.2.2.new/t/110-Repository-SVN.t 2009-07-22 20:29:02.000000000 +0100 @@ -23,6 +23,7 @@ my $build_home = catfile($here, "t", "bu my $archive = catfile($here, "t", "110-Repository-SVN.gz"); END { + chdir $here; rmtree ($build_repos); rmtree ($build_home); } Index: perl-Test-AutoBuild.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Test-AutoBuild/F-11/perl-Test-AutoBuild.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Test-AutoBuild.spec 27 Feb 2009 02:13:37 -0000 1.13 +++ perl-Test-AutoBuild.spec 22 Jul 2009 20:03:37 -0000 1.14 @@ -15,7 +15,7 @@ Summary: Framework for performing continuous, unattended, automated software builds Name: perl-%{appname} Version: 1.2.2 -Release: 7%{_extra_release} +Release: 8%{_extra_release} License: GPLv2+ Group: Development/Tools Url: http://autobuild.org/ @@ -23,6 +23,7 @@ Source: http://www.cpan.org/authors/id/D Patch1: %{name}-%{version}-git-output.patch Patch2: %{name}-%{version}-cvs-sticky.patch Patch3: %{name}-%{version}-mtn-migrate.patch +Patch4: %{name}-%{version}-bzr-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # Technically this is a noarch package, but due to lack of ghc # on ppc/sparc we need to use arch specific conditionals to kill @@ -71,6 +72,9 @@ Requires: /usr/bin/genbasedir # For Test::AutoBuild::Publisher::XSLTransform Requires: /usr/bin/xsltproc +# Automatic RPM perl deps script misses this +Requires: perl(Class::MethodMaker) + %if %{with_selinux} Requires(post): policycoreutils Requires(postun): policycoreutils @@ -255,6 +259,7 @@ control system %patch1 -p1 %patch2 -p1 %patch3 -p1 +%patch4 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -450,6 +455,10 @@ fi %config(noreplace) %attr(-,builder,builder) %{_localstatedir}/lib/builder/.cvspass %changelog +* Wed Jul 22 2009 Daniel P. Berrange - 1.2.2-8.fc11 +- Fix BZR repository tests (rhbz #511594) +- Add missing perl(Class::MethodMaker) dep (rhbz #432714) + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From nalin at fedoraproject.org Wed Jul 22 20:08:16 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 22 Jul 2009 20:08:16 +0000 (UTC) Subject: rpms/nss_ldap/devel pam_ldap-183-releaseconfig.patch, NONE, 1.1 nss_ldap.spec, 1.112, 1.113 Message-ID: <20090722200816.98D3B11C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/nss_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25234 Modified Files: nss_ldap.spec Added Files: pam_ldap-183-releaseconfig.patch Log Message: fix some minor leaks in pam_ldap, part of upstream #326 pam_ldap-183-releaseconfig.patch: pam_ldap.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) --- NEW FILE pam_ldap-183-releaseconfig.patch --- diff -up pam_ldap/pam_ldap.c pam_ldap/pam_ldap.c --- pam_ldap/pam_ldap.c 2009-07-22 15:55:42.000000000 -0400 +++ pam_ldap/pam_ldap.c 2009-07-22 16:00:23.000000000 -0400 @@ -437,6 +437,7 @@ static void _release_config (pam_ldap_config_t ** pconfig) { pam_ldap_config_t *c; + pam_ssd_t *ssd, *next_ssd; c = *pconfig; if (c == NULL) @@ -445,6 +446,9 @@ _release_config (pam_ldap_config_t ** pc if (c->configFile != NULL) free (c->configFile); + if (c->uri != NULL) + free (c->uri); + if (c->host != NULL) free (c->host); @@ -474,6 +478,16 @@ _release_config (pam_ldap_config_t ** pc free (c->sslpath); } + ssd = c->ssd; + while ( ssd != NULL ) + { + next_ssd = ssd->next; + free (ssd->base); + free (ssd->filter); + free (ssd); + ssd = next_ssd; + } + if (c->userattr != NULL) { free (c->userattr); @@ -509,6 +523,36 @@ _release_config (pam_ldap_config_t ** pc free (c->logdir); } + if (c->tls_cacertfile != NULL) + { + free (c->tls_cacertfile); + } + + if (c->tls_cacertdir != NULL) + { + free (c->tls_cacertdir); + } + + if (c->tls_ciphers != NULL) + { + free (c->tls_ciphers); + } + + if (c->tls_cert != NULL) + { + free (c->tls_cert); + } + + if (c->tls_key != NULL) + { + free (c->tls_key); + } + + if (c->tls_randfile != NULL) + { + free (c->tls_randfile); + } + if (c->sasl_mechanism != NULL) { free (c->sasl_mechanism); Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/devel/nss_ldap.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- nss_ldap.spec 8 Jul 2009 17:37:14 -0000 1.112 +++ nss_ldap.spec 22 Jul 2009 20:07:46 -0000 1.113 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 4%{?dist} +Release: 5%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -26,6 +26,7 @@ Patch19: pam_ldap-184-broken-sasl-rebind Patch20: pam_ldap-184-nsrole.patch Patch21: nss_ldap-264-checkcase.patch Patch22: nss_ldap-264-ent_internal.patch +Patch23: pam_ldap-183-releaseconfig.patch URL: http://www.padl.com/ License: LGPLv2+ @@ -80,6 +81,7 @@ pushd pam_ldap-%{pam_ldap_version} %patch16 -p1 -b .referral-passwd2 %patch19 -p1 -b .broken-sasl-rebind %patch20 -p1 -b .nsrole +%patch23 -p1 -b .releaseconfig autoreconf -f -i popd @@ -194,6 +196,9 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Wed Jul 22 2009 Nalin Dahyabhai 264-5 +- fix some minor leaks in pam_ldap, part of upstream #326 + * Tue Jul 7 2009 Nalin Dahyabhai - 264-4 - add proposed patch for upstream #322: crashing in oneshot mode From tibbs at fedoraproject.org Wed Jul 22 20:12:18 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 22 Jul 2009 20:12:18 +0000 (UTC) Subject: rpms/zoneminder/F-11 zoneminder-1.24.2-dbinstall.patch, NONE, 1.1 zoneminder-1.24.2-gcc44.patch, NONE, 1.1 zoneminder-1.24.2-noffmpeg.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 zoneminder.spec, 1.21, 1.22 zoneminder-1.24.1-dbinstall.patch, 1.1, NONE zoneminder-1.24.1-gcc44.patch, 1.3, NONE zoneminder-1.24.1-noffmpeg.patch, 1.1, NONE Message-ID: <20090722201218.0A80311C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/extras/rpms/zoneminder/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26450 Modified Files: .cvsignore sources zoneminder.spec Added Files: zoneminder-1.24.2-dbinstall.patch zoneminder-1.24.2-gcc44.patch zoneminder-1.24.2-noffmpeg.patch Removed Files: zoneminder-1.24.1-dbinstall.patch zoneminder-1.24.1-gcc44.patch zoneminder-1.24.1-noffmpeg.patch Log Message: * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 - Initial update to 1.24.2. - Rebase patches. - Update mootools download location. - Update to mootools 1.2.3. - Add additional dependencies for some optional features. zoneminder-1.24.2-dbinstall.patch: configure.ac | 8 ++++---- db/Makefile.am | 9 +++++++++ scripts/zm.in | 18 +++++++----------- scripts/zmupdate.pl.in | 2 +- zm.conf.in | 4 ++-- 5 files changed, 23 insertions(+), 18 deletions(-) --- NEW FILE zoneminder-1.24.2-dbinstall.patch --- diff -up ./configure.ac.dbinstall ./configure.ac --- ./configure.ac.dbinstall 2009-06-24 05:22:23.000000000 -0500 +++ ./configure.ac 2009-07-19 22:40:16.000000000 -0500 @@ -1,11 +1,9 @@ AC_PREREQ(2.59) -AC_INIT(zm,1.24.2,support at zoneminder.com,ZoneMinder) +AC_INIT(zm,1.24.2,support at zoneminder.com,zoneminder) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR(src/zm.h) AM_CONFIG_HEADER(config.h) -PATH_BUILD=`pwd` -AC_SUBST(PATH_BUILD) TIME_BUILD=`date +'%s'` AC_SUBST(TIME_BUILD) @@ -319,8 +317,10 @@ AC_PROG_PERL_MODULES(X10::ActiveHome,,AC AC_DEFINE_DIR([BINDIR],[bindir],[Expanded binary directory]) AC_DEFINE_DIR([LIBDIR],[libdir],[Expanded library directory]) +AC_DEFINE_DIR([DATADIR],[datadir],[Expanded data directory]) +AC_SUBST(PKGDATADIR,"$DATADIR/$PACKAGE") AC_SUBST(RUNDIR,"/var/run") -AC_SUBST(ZM_RUNDIR,"$RUNDIR/zm") +AC_SUBST(ZM_RUNDIR,"$RUNDIR/$PACKAGE") AC_SUBST(ZM_PID,"$ZM_RUNDIR/zm.pid") AC_DEFINE_DIR([SYSCONFDIR],[sysconfdir],[Expanded configuration directory]) AC_SUBST(ZM_CONFIG,"$SYSCONFDIR/zm.conf") diff -up ./db/Makefile.am.dbinstall ./db/Makefile.am --- ./db/Makefile.am.dbinstall 2009-03-31 09:06:34.000000000 -0500 +++ ./db/Makefile.am 2009-07-19 22:27:02.000000000 -0500 @@ -1,7 +1,16 @@ AUTOMAKE_OPTIONS = gnu +zmdbdatadir = $(pkgdatadir)/db + EXTRA_DIST = \ zm_create.sql.in \ + $(dbupgrade_scripts) + +dist_zmdbdata_DATA = \ + zm_create.sql \ + $(dbupgrade_scripts) + +dbupgrade_scripts = \ zm_update-0.0.1.sql \ zm_update-0.9.7.sql \ zm_update-0.9.8.sql \ diff -up ./scripts/zm.in.dbinstall ./scripts/zm.in --- ./scripts/zm.in.dbinstall 2009-03-20 07:07:02.000000000 -0500 +++ ./scripts/zm.in 2009-07-19 22:27:02.000000000 -0500 @@ -6,10 +6,10 @@ # Source function library. . /etc/rc.d/init.d/functions -prog=ZoneMinder +prog="@PACKAGE@" ZM_CONFIG="@ZM_CONFIG@" pidfile="@ZM_RUNDIR@" -LOCKFILE=/var/lock/subsys/zm +LOCKFILE=/var/lock/subsys/$prog loadconf() { @@ -27,9 +27,8 @@ command="$ZM_PATH_BIN/zmpkg.pl" start() { zmupdate || return $? - loadconf || return $? #Make sure the directory for our PID folder exists or create one. - [ ! -d /var/run/zm ] \ + [ ! -d $pidfile ] \ && mkdir -m 774 $pidfile \ && chown $ZM_WEB_USER:$ZM_WEB_GROUP $pidfile #Make sure the folder for the socks file exists or create one @@ -56,7 +55,6 @@ start() stop() { - loadconf echo -n $"Stopping $prog: " $command stop RETVAL=$? @@ -67,22 +65,21 @@ stop() zmstatus() { - loadconf result=`$command status` if [ "$result" = "running" ]; then - echo "ZoneMinder is running" + echo "$prog is running" $ZM_PATH_BIN/zmu -l RETVAL=0 else - echo "ZoneMinder is stopped" + echo "$prog is stopped" RETVAL=1 fi } zmupdate() { - if [ -x $ZM_PATH_BIN/zm_update ]; then - $ZM_PATH_BIN/zm_update noi + if [ -x $ZM_PATH_BIN/zmupdate.pl ]; then + $ZM_PATH_BIN/zmupdate.pl --freshen >/dev/null fi } @@ -99,7 +96,6 @@ case "$1" in start ;; 'condrestart') - loadconf result=`$ZM_PATH_BIN/zmdc.pl check` if [ "$result" = "running" ]; then $ZM_PATH_BIN/zmdc.pl shutdown > /dev/null --- ./scripts/zmupdate.pl.in.dbinstall 2009-06-30 02:42:12.000000000 -0500 +++ ./scripts/zmupdate.pl.in 2009-07-19 22:27:02.000000000 -0500 @@ -403,7 +403,7 @@ if ( $version ) $command .= " -p".$db_pass; } } - $command .= " ".ZM_DB_NAME." < ".ZM_PATH_BUILD."/db/zm_update-".$version.".sql"; + $command .= " ".ZM_DB_NAME." < ".ZM_PATH_DATA."/db/zm_update-".$version.".sql"; print( "Executing '$command'\n" ) if ( DBG_LEVEL > 0 ); my $output = qx($command); diff -up ./zm.conf.in.dbinstall ./zm.conf.in --- ./zm.conf.in.dbinstall 2009-03-20 07:07:10.000000000 -0500 +++ ./zm.conf.in 2009-07-19 22:27:02.000000000 -0500 @@ -12,8 +12,8 @@ # Current version of ZoneMinder ZM_VERSION=@VERSION@ -# Path to build directory, used mostly for finding DB upgrade scripts -ZM_PATH_BUILD=@PATH_BUILD@ +# Path to installed data directory, used mostly for finding DB upgrade scripts +ZM_PATH_DATA=@PKGDATADIR@ # Build time, used to record when to trigger various checks ZM_TIME_BUILD=@TIME_BUILD@ zoneminder-1.24.2-gcc44.patch: Makefile.am | 2 +- zm_utils.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE zoneminder-1.24.2-gcc44.patch --- --- src/zm_utils.cpp.gcc44 2009-05-28 03:47:59.000000000 -0500 +++ src/zm_utils.cpp 2009-07-20 00:28:43.000000000 -0500 @@ -20,7 +20,8 @@ //#include "zm_debug.h" #include "zm_utils.h" -#include +#include +#include const std::string stringtf( const char *format, ... ) { --- src/Makefile.am.frepo 2009-04-11 02:08:57.000000000 +0100 +++ src/Makefile.am 2009-04-11 02:09:07.000000000 +0100 @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = gnu AM_CPPFLAGS = @MYSQL_CFLAGS@ @FFMPEG_CFLAGS@ -Wall -Wno-sign-compare -fno-inline -AM_CXXFLAGS = -frepo +#AM_CXXFLAGS = -frepo CLEANFILES = *.rpo zoneminder-1.24.2-noffmpeg.patch: configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE zoneminder-1.24.2-noffmpeg.patch --- --- configure.ac.noffmpeg 2009-07-20 00:24:37.000000000 -0500 +++ configure.ac 2009-07-20 00:25:51.000000000 -0500 @@ -244,10 +244,10 @@ AC_CHECK_LIB(gnutls-openssl,MD5,,AC_MSG_WARN([gnutls-openssl.a is required for authenticated streaming - use ZM_SSL_LIB option to select openssl instead])) fi AC_CHECK_LIB(pcre,pcre_compile,,AC_MSG_WARN(libpcre.a may be required for remote/network camera support)) -AC_CHECK_LIB(avutil,av_malloc,,AC_MSG_WARN(libavutil.a may be required for MPEG streaming)) -AC_CHECK_LIB(avcodec,avcodec_init,,AC_MSG_WARN(libavcodec.a is required for MPEG streaming)) -AC_CHECK_LIB(avformat,av_new_stream,,AC_MSG_WARN(libavformat.a is required for MPEG streaming),[-lavcodec -lavutil]) -AC_CHECK_LIB(swscale,sws_scale,,,-lswscale) +dnl AC_CHECK_LIB(avutil,av_malloc,,AC_MSG_WARN(libavutil.a may be required for MPEG streaming)) +dnl AC_CHECK_LIB(avcodec,avcodec_init,,AC_MSG_WARN(libavcodec.a is required for MPEG streaming)) +dnl AC_CHECK_LIB(avformat,av_new_stream,,AC_MSG_WARN(libavformat.a is required for MPEG streaming),[-lavcodec -lavutil]) +dnl AC_CHECK_LIB(swscale,sws_scale,,,-lswscale) AC_CHECK_LIB(bz2,BZ2_bzCompress,,AC_MSG_WARN(zm requires libbz2.a for recent versions of ffmpeg)) AC_CHECK_LIB(z,compress,,) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/zoneminder/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 15 Mar 2009 00:37:00 -0000 1.5 +++ .cvsignore 22 Jul 2009 20:11:47 -0000 1.6 @@ -1,4 +1,4 @@ -ZoneMinder-1.24.1.tar.gz cambozola-0.68.tar.gz -mootools-1.2-core-yc.js jscalendar-1.0.zip +mootools-1.2.3-core-yc.js +ZoneMinder-1.24.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/zoneminder/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 15 Mar 2009 00:37:00 -0000 1.5 +++ sources 22 Jul 2009 20:11:47 -0000 1.6 @@ -1,4 +1,4 @@ -1e4ce392d645cbb28037ecebc5a56584 ZoneMinder-1.24.1.tar.gz e4fac8b6ee94c9075b14bb95be4f860b cambozola-0.68.tar.gz -741c1ef4d6602c12a54d8a1b629988c8 mootools-1.2-core-yc.js 10f2160fe68294013efcd1473cd36f72 jscalendar-1.0.zip +2107736d116f31767cadb15902c6c7fd mootools-1.2.3-core-yc.js +550d2f8f08852134028c3b1cf8fa437f ZoneMinder-1.24.2.tar.gz Index: zoneminder.spec =================================================================== RCS file: /cvs/extras/rpms/zoneminder/F-11/zoneminder.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- zoneminder.spec 11 Apr 2009 18:03:48 -0000 1.21 +++ zoneminder.spec 22 Jul 2009 20:11:47 -0000 1.22 @@ -3,16 +3,16 @@ %define zmuid_final apache %define zmgid_final apache -Name: zoneminder -Version: 1.24.1 -Release: 3%{?dist} -Summary: A camera monitoring and analysis tool -Group: System Environment/Daemons +Name: zoneminder +Version: 1.24.2 +Release: 1%{?dist} +Summary: A camera monitoring and analysis tool +Group: System Environment/Daemons # jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/ # Mootools is inder the MIT license: http://mootools.net/ -License: GPLv2+ and LGPLv2+ and MIT -URL: http://www.zoneminder.com/ -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +License: GPLv2+ and LGPLv2+ and MIT +URL: http://www.zoneminder.com/ +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: http://www.zoneminder.com/fileadmin/downloads/ZoneMinder-%{version}.tar.gz Source1: http://www.charliemouse.com/code/cambozola/cambozola-0.68.tar.gz @@ -20,13 +20,13 @@ Source2: zoneminder.conf Source3: redalert.wav Source4: README.Fedora Source5: http://downloads.sourceforge.net/jscalendar/jscalendar-1.0.zip -Source6: http://mootools.net/downloads/mootools-1.2-core-yc.js -Patch1: zoneminder-1.24.1-dbinstall.patch +Source6: http://mootools.net/download/get/mootools-1.2.3-core-yc.js +Patch1: zoneminder-1.24.2-dbinstall.patch Patch2: zoneminder-1.24.1-runlevel.patch -Patch3: zoneminder-1.24.1-noffmpeg.patch +Patch3: zoneminder-1.24.2-noffmpeg.patch Patch4: zoneminder-1.24.1-perldep.patch Patch10: zoneminder-1.22.3-installfix.patch -Patch11: zoneminder-1.24.1-gcc44.patch +Patch11: zoneminder-1.24.2-gcc44.patch Conflicts: zm <= 1.22.3 @@ -37,9 +37,12 @@ BuildRequires: perl(Date::Manip) perl(D BuildRequires: perl(ExtUtils::MakeMaker) perl(LWP::UserAgent) BuildRequires: perl(MIME::Entity) perl(MIME::Lite) BuildRequires: perl(PHP::Serialization) + Requires: httpd php php-mysql Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -Requires: perl(DBD::mysql) +Requires: perl(DBD::mysql) perl(Archive::Tar) perl(Archive::Zip) +Requires: perl(MIME::Entity) perl(MIME::Lite) perl(Net::SMTP) perl(Net::FTP) + Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service @@ -133,8 +136,8 @@ cp -rp jscalendar-1.0/* $RPM_BUILD_ROOT% # Install mootools pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/www -install -m 644 %{SOURCE6} mootools-1.2-core-yc.js -ln -s mootools-1.2-core-yc.js mootools.js +install -m 644 %{SOURCE6} mootools-1.2.3-core-yc.js +ln -s mootools-1.2.3-core-yc.js mootools.js popd %clean @@ -197,6 +200,13 @@ fi %changelog +* Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 +- Initial update to 1.24.2. +- Rebase patches. +- Update mootools download location. +- Update to mootools 1.2.3. +- Add additional dependencies for some optional features. + * Sat Apr 11 2009 Martin Ebourne - 1.24.1-3 - Remove unused Sys::Mmap perl dependency RPM is finding --- zoneminder-1.24.1-dbinstall.patch DELETED --- --- zoneminder-1.24.1-gcc44.patch DELETED --- --- zoneminder-1.24.1-noffmpeg.patch DELETED --- From pfrields at fedoraproject.org Wed Jul 22 20:14:32 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Wed, 22 Jul 2009 20:14:32 +0000 (UTC) Subject: rpms/zikula-module-News/F-11 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090722201432.C8FCB11C0099@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/zikula-module-News/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27137 Modified Files: .cvsignore sources Log Message: Update source lists Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-News/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 19 Jul 2009 20:50:34 -0000 1.1 +++ .cvsignore 22 Jul 2009 20:14:02 -0000 1.2 @@ -0,0 +1 @@ +News_2.4.1.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-News/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 19 Jul 2009 20:50:34 -0000 1.1 +++ sources 22 Jul 2009 20:14:02 -0000 1.2 @@ -0,0 +1 @@ +cac873b9b459d64b9aaceeeea9a8a136 News_2.4.1.zip From orion at fedoraproject.org Wed Jul 22 20:18:37 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 20:18:37 +0000 (UTC) Subject: rpms/libnc-dap/devel libnc-dap-3.7.3-libdap-3.9.3.patch, NONE, 1.1 libnc-dap.spec, 1.26, 1.27 Message-ID: <20090722201837.7064B11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/libnc-dap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28722 Modified Files: libnc-dap.spec Added Files: libnc-dap-3.7.3-libdap-3.9.3.patch Log Message: Add patch to support libdap 3.9.3 libnc-dap-3.7.3-libdap-3.9.3.patch: NCGrid.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE libnc-dap-3.7.3-libdap-3.9.3.patch --- --- libnc-dap-3.7.3/NCGrid.cc.libdap-3.9.3 2008-09-08 13:29:52.000000000 -0600 +++ libnc-dap-3.7.3/NCGrid.cc 2009-07-22 14:16:51.266420388 -0600 @@ -108,12 +108,12 @@ // read array elements if (array_var()->send_p() || array_var()->is_in_selection()) - array_var()->read(dataset); + array_var()->read(); // read maps elements for (Map_iter p = map_begin(); p != map_end(); ++p) if ((*p)->send_p() || (*p)->is_in_selection()) - (*p)->read(dataset); + (*p)->read(); set_read_p(true); Index: libnc-dap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/libnc-dap.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libnc-dap.spec 22 Jul 2009 18:33:49 -0000 1.26 +++ libnc-dap.spec 22 Jul 2009 20:18:37 -0000 1.27 @@ -10,6 +10,7 @@ License: LGPLv2+ URL: http://www.opendap.org/ Source0: http://www.opendap.org/pub/source/libnc-dap-%{version}.tar.gz Patch0: libnc-dap-3.7.3-template.patch +Patch1: libnc-dap-3.7.3-libdap-3.9.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libdap-devel >= 3.8.0 gcc-gfortran @@ -42,6 +43,7 @@ will use libnc-dap. %prep %setup -q %patch0 -p1 -b .template +%patch1 -p1 -b .libdap-3.9.3 rm -rf netcdf/.svn %build @@ -82,6 +84,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 22 2009 Orion Poplawski - 3.7.3-3 - Rebuild for libdap 3.9.3 +- Add patch to support 3.9.3 * Wed Feb 25 2009 Fedora Release Engineering - 3.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From tibbs at fedoraproject.org Wed Jul 22 20:19:20 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 22 Jul 2009 20:19:20 +0000 (UTC) Subject: rpms/zoneminder/devel zoneminder.spec,1.22,1.23 Message-ID: <20090722201920.7916F11C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/extras/rpms/zoneminder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28939 Modified Files: zoneminder.spec Log Message: * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-2 - Bump release since 1.24.2-1 was mistakenly tagged a few months ago. Index: zoneminder.spec =================================================================== RCS file: /cvs/extras/rpms/zoneminder/devel/zoneminder.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- zoneminder.spec 22 Jul 2009 20:01:54 -0000 1.22 +++ zoneminder.spec 22 Jul 2009 20:18:50 -0000 1.23 @@ -5,7 +5,7 @@ Name: zoneminder Version: 1.24.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A camera monitoring and analysis tool Group: System Environment/Daemons # jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/ @@ -200,6 +200,9 @@ fi %changelog +* Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-2 +- Bump release since 1.24.2-1 was mistakenly tagged a few months ago. + * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 - Initial update to 1.24.2. - Rebase patches. From nalin at fedoraproject.org Wed Jul 22 20:19:40 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 22 Jul 2009 20:19:40 +0000 (UTC) Subject: rpms/nss_ldap/devel nss_ldap.spec,1.113,1.114 Message-ID: <20090722201940.7902E11C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/nss_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29124 Modified Files: nss_ldap.spec Log Message: - note the second upstream bug Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/devel/nss_ldap.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- nss_ldap.spec 22 Jul 2009 20:07:46 -0000 1.113 +++ nss_ldap.spec 22 Jul 2009 20:19:10 -0000 1.114 @@ -197,7 +197,7 @@ fi %changelog * Wed Jul 22 2009 Nalin Dahyabhai 264-5 -- fix some minor leaks in pam_ldap, part of upstream #326 +- fix some minor leaks in pam_ldap, part of upstream #326,#333 * Tue Jul 7 2009 Nalin Dahyabhai - 264-4 - add proposed patch for upstream #322: crashing in oneshot mode From tibbs at fedoraproject.org Wed Jul 22 20:22:31 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Wed, 22 Jul 2009 20:22:31 +0000 (UTC) Subject: rpms/zoneminder/F-11 zoneminder.spec,1.22,1.23 Message-ID: <20090722202231.0E18011C0099@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/extras/rpms/zoneminder/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30484 Modified Files: zoneminder.spec Log Message: * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-2 - Bump release since 1.24.2-1 was mistakenly tagged a few months ago. Index: zoneminder.spec =================================================================== RCS file: /cvs/extras/rpms/zoneminder/F-11/zoneminder.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- zoneminder.spec 22 Jul 2009 20:11:47 -0000 1.22 +++ zoneminder.spec 22 Jul 2009 20:22:30 -0000 1.23 @@ -5,7 +5,7 @@ Name: zoneminder Version: 1.24.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A camera monitoring and analysis tool Group: System Environment/Daemons # jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/ @@ -200,6 +200,9 @@ fi %changelog +* Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-2 +- Bump release since 1.24.2-1 was mistakenly tagged a few months ago. + * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-1 - Initial update to 1.24.2. - Rebase patches. From kyle at fedoraproject.org Wed Jul 22 20:25:50 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 22 Jul 2009 20:25:50 +0000 (UTC) Subject: rpms/kernel/F-11 kernel.spec,1.1676,1.1677 Message-ID: <20090722202550.E6F2611C0099@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32017 Modified Files: kernel.spec Log Message: * Wed Jul 22 2009 Tom "spot" Callaway - We have to override the new %install behavior because, well... the kernel is special. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1676 retrieving revision 1.1677 diff -u -p -r1.1676 -r1.1677 --- kernel.spec 22 Jul 2009 05:06:09 -0000 1.1676 +++ kernel.spec 22 Jul 2009 20:25:49 -0000 1.1677 @@ -1,9 +1,12 @@ +# We have to override the new %%install behavior because, well... the kernel is special. +%global __spec_install_pre %{___build_pre} + Summary: The Linux kernel # For a stable, released kernel, released_kernel should be 1. For rawhide # and/or a kernel built from an rc or git snapshot, released_kernel should # be 0. -%define released_kernel 1 +%global released_kernel 1 # Versions of various parts @@ -2096,6 +2099,10 @@ fi # and build. %changelog +* Wed Jul 22 2009 Tom "spot" Callaway +- We have to override the new %%install behavior because, well... the kernel is +special. + * Wed Jul 22 2009 Ben Skeggs - drm-nouveau.patch: Fix DPMS off for DAC outputs, NV4x PFIFO typo From notting at fedoraproject.org Wed Jul 22 20:26:37 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Wed, 22 Jul 2009 20:26:37 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config-9.0.3-xz-payload.patch, NONE, 1.1 redhat-rpm-config.spec, 1.66, 1.67 Message-ID: <20090722202637.A5A2711C0099@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32739 Modified Files: redhat-rpm-config.spec Added Files: redhat-rpm-config-9.0.3-xz-payload.patch Log Message: Use XZ payload compression for binaries. redhat-rpm-config-9.0.3-xz-payload.patch: macros | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE redhat-rpm-config-9.0.3-xz-payload.patch --- diff -up redhat-rpm-config-9.0.3/macros.fu redhat-rpm-config-9.0.3/macros --- redhat-rpm-config-9.0.3/macros.fu 2009-07-22 16:23:55.000000000 -0400 +++ redhat-rpm-config-9.0.3/macros 2009-07-22 16:24:24.000000000 -0400 @@ -173,6 +173,9 @@ unset DISPLAY\ %_source_filedigest_algorithm 8 %_binary_filedigest_algorithm 8 +# Use XZ compression for binary payloads +%_binary_payload w7.xzdio + %__find_provides /usr/lib/rpm/redhat/find-provides %__find_requires /usr/lib/rpm/redhat/find-requires Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/extras/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- redhat-rpm-config.spec 21 Jul 2009 17:35:50 -0000 1.66 +++ redhat-rpm-config.spec 22 Jul 2009 20:26:37 -0000 1.67 @@ -1,7 +1,7 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 11%{?dist} +Release: 12%{?dist} # No version specified. License: GPL+ Group: Development/System @@ -12,6 +12,7 @@ Patch2: redhat-rpm-config-9.0.3-F-11-Arc Patch3: redhat-rpm-config-9.0.3-F-11-StrongerHashes.patch Patch4: redhat-rpm-config-9.0.3-F-12-Architectures.patch Patch5: redhat-rpm-config-9.0.3-always_delete_buildroot_at_install.patch +Patch6: redhat-rpm-config-9.0.3-xz-payload.patch BuildArch: noarch Requires: mktemp BuildRoot: %{_tmppath}/%{name}-root @@ -27,6 +28,7 @@ Red Hat specific rpm configuration files %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %install make DESTDIR=${RPM_BUILD_ROOT} install @@ -39,6 +41,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Wed Jul 22 2009 Bill Nottingham 9.0.3-11 +- use XZ payload compression for binary packages + * Tue Jul 21 2009 Tom "spot" Callaway - 9.0.3-10 - always delete %%buildroot as first step of %%install (as long as %buildroot is not /) From ellert at fedoraproject.org Wed Jul 22 20:27:01 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:01 +0000 (UTC) Subject: rpms/globus-callout/devel noautobuild,NONE,1.1 Message-ID: <20090722202701.8015911C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-callout/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-ftp-client/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.1BCC811C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-ftp-client/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:01 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:01 +0000 (UTC) Subject: rpms/globus-common/devel noautobuild,NONE,1.1 Message-ID: <20090722202701.AE72411C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-common/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:01 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:01 +0000 (UTC) Subject: rpms/globus-core/devel noautobuild,NONE,1.1 Message-ID: <20090722202701.D660E11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-core/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-ftp-control/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.43EEB11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-ftp-control/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-gass-copy/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.6CF8811C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gass-copy/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-gass-transfer/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.9400011C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gass-transfer/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-gsi-callback/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.BE29511C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-callback/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:03 +0000 (UTC) Subject: rpms/globus-gsi-credential/devel noautobuild,NONE,1.1 Message-ID: <20090722202703.1E3E211C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-credential/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:03 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/devel noautobuild,NONE,1.1 Message-ID: <20090722202703.4DC5711C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-openssl-error/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:02 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/devel noautobuild,NONE,1.1 Message-ID: <20090722202702.E611111C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-cert-utils/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:03 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/devel noautobuild,NONE,1.1 Message-ID: <20090722202703.760D211C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-proxy-core/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:03 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/devel noautobuild,NONE,1.1 Message-ID: <20090722202703.A835511C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-proxy-ssl/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:03 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/devel noautobuild,NONE,1.1 Message-ID: <20090722202703.E471311C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gsi-sysconfig/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-gssapi-error/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.1538911C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gssapi-error/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.49F4811C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gssapi-gsi/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-gss-assist/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.77CA511C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-gss-assist/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-io/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.96DEF11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-io/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-libtool/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.BF30B11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-libtool/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:04 +0000 (UTC) Subject: rpms/globus-openssl/devel noautobuild,NONE,1.1 Message-ID: <20090722202704.EBAC211C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-openssl/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:05 +0000 (UTC) Subject: rpms/globus-openssl-module/devel noautobuild,NONE,1.1 Message-ID: <20090722202705.20C3111C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-openssl-module/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:05 +0000 (UTC) Subject: rpms/globus-rls-client/devel noautobuild,NONE,1.1 Message-ID: <20090722202705.7532611C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-rls-client/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:05 +0000 (UTC) Subject: rpms/globus-proxy-utils/devel noautobuild,NONE,1.1 Message-ID: <20090722202705.4DCA111C00D4@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-proxy-utils/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:05 +0000 (UTC) Subject: rpms/globus-rls-server/devel noautobuild,NONE,1.1 Message-ID: <20090722202705.B37FF11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-rls-server/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:05 +0000 (UTC) Subject: rpms/globus-rsl-assist/devel noautobuild,NONE,1.1 Message-ID: <20090722202705.E599511C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-rsl-assist/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:06 +0000 (UTC) Subject: rpms/globus-rsl/devel noautobuild,NONE,1.1 Message-ID: <20090722202706.4513F11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-rsl/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:06 +0000 (UTC) Subject: rpms/globus-usage/devel noautobuild,NONE,1.1 Message-ID: <20090722202706.5F62711C00D4@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-usage/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From ellert at fedoraproject.org Wed Jul 22 20:27:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:06 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/devel noautobuild,NONE,1.1 Message-ID: <20090722202706.E657E11C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-xio-gsi-driver/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:06 +0000 (UTC) Subject: rpms/globus-xio/devel noautobuild,NONE,1.1 Message-ID: <20090722202706.96C8311C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-xio/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support - Make doc a noarch subpackage From ellert at fedoraproject.org Wed Jul 22 20:27:07 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Wed, 22 Jul 2009 20:27:07 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/devel noautobuild,NONE,1.1 Message-ID: <20090722202707.468F211C0099@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727/globus-xio-popen-driver/devel Added Files: noautobuild Log Message: Add noautobuild file --- NEW FILE noautobuild --- I plan to rebuild the package and add the following features: - Add %{_isa} where appropriate for better multi-arch support From notting at fedoraproject.org Wed Jul 22 20:27:08 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Wed, 22 Jul 2009 20:27:08 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config.spec,1.67,1.68 Message-ID: <20090722202708.7FB6311C0099@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv662 Modified Files: redhat-rpm-config.spec Log Message: Fix changelog. Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/extras/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- redhat-rpm-config.spec 22 Jul 2009 20:26:37 -0000 1.67 +++ redhat-rpm-config.spec 22 Jul 2009 20:27:08 -0000 1.68 @@ -41,7 +41,7 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog -* Wed Jul 22 2009 Bill Nottingham 9.0.3-11 +* Wed Jul 22 2009 Bill Nottingham 9.0.3-12 - use XZ payload compression for binary packages * Tue Jul 21 2009 Tom "spot" Callaway - 9.0.3-10 From pkgdb at fedoraproject.org Wed Jul 22 20:29:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:07 +0000 Subject: [pkgdb] zoneminder: tibbs has requested commit Message-ID: <20090722202907.EE59F10F8B0@bastion2.fedora.phx.redhat.com> tibbs has requested the commit acl on zoneminder (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From pkgdb at fedoraproject.org Wed Jul 22 20:29:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:00 +0000 Subject: [pkgdb] zoneminder: tibbs has requested commit Message-ID: <20090722202900.4B18210F8AC@bastion2.fedora.phx.redhat.com> tibbs has requested the commit acl on zoneminder (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From pkgdb at fedoraproject.org Wed Jul 22 20:29:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:12 +0000 Subject: [pkgdb] zoneminder: tibbs has requested commit Message-ID: <20090722202912.BB2BA10F8B1@bastion2.fedora.phx.redhat.com> tibbs has requested the commit acl on zoneminder (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From pkgdb at fedoraproject.org Wed Jul 22 20:29:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:16 +0000 Subject: [pkgdb] zoneminder had acl change status Message-ID: <20090722202916.3496C10F8B4@bastion2.fedora.phx.redhat.com> tibbs has set the commit acl on zoneminder (Fedora 11) to Approved for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From pkgdb at fedoraproject.org Wed Jul 22 20:29:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:18 +0000 Subject: [pkgdb] zoneminder had acl change status Message-ID: <20090722202918.7690210F8B7@bastion2.fedora.phx.redhat.com> tibbs has set the commit acl on zoneminder (Fedora 10) to Approved for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From kyle at fedoraproject.org Wed Jul 22 20:31:08 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Wed, 22 Jul 2009 20:31:08 +0000 (UTC) Subject: rpms/kernel/F-10 kernel.spec,1.1393,1.1394 Message-ID: <20090722203108.74DD411C048A@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1019 Modified Files: kernel.spec Log Message: * Wed Jul 22 2009 Tom "spot" Callaway - We have to override the new %install behavior because, well... the kernel is special. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1393 retrieving revision 1.1394 diff -u -p -r1.1393 -r1.1394 --- kernel.spec 6 Jul 2009 22:57:28 -0000 1.1393 +++ kernel.spec 22 Jul 2009 20:31:07 -0000 1.1394 @@ -1,9 +1,12 @@ +# We have to override the new %%install behavior because, well... the kernel is special. +%global __spec_install_pre %{___build_pre} + Summary: The Linux kernel # For a stable, released kernel, released_kernel should be 1. For rawhide # and/or a kernel built from an rc or git snapshot, released_kernel should # be 0. -%define released_kernel 1 +%global released_kernel 1 # Versions of various parts @@ -1977,6 +1980,10 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Wed Jul 22 2009 Tom "spot" Callaway +- We have to override the new %%install behavior because, well... the kernel is +special. + * Mon Jul 06 2009 Chuck Ebbert kernel-2.6.29.6-93 - From F-11 Jun 15 DRM fixes: drm-connector-dpms-fix.patch From lmacken at fedoraproject.org Wed Jul 22 20:55:53 2009 From: lmacken at fedoraproject.org (Luke Macken) Date: Wed, 22 Jul 2009 20:55:53 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/F-10 python-repoze-what-plugins-sql.spec, 1.1, 1.2 Message-ID: <20090722205553.8397911C0099@cvs1.fedora.phx.redhat.com> Author: lmacken Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9178 Modified Files: python-repoze-what-plugins-sql.spec Log Message: Add the sqlalchemy0.5 requirement back for F-10 and EL-5 branches Index: python-repoze-what-plugins-sql.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/F-10/python-repoze-what-plugins-sql.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what-plugins-sql.spec 10 Jul 2009 15:43:35 -0000 1.1 +++ python-repoze-what-plugins-sql.spec 22 Jul 2009 20:55:23 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-repoze-what-plugins-sql Version: 1.0 -Release: 0.5.%{rcver}%{?dist} +Release: 0.6.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages @@ -18,10 +18,10 @@ BuildArch: noarch BuildRequires: python-devel python-setuptools-devel python-nose BuildRequires: python-nose python-coverage BuildRequires: python-repoze-what -BuildRequires: python-sqlalchemy >= 0.5 +BuildRequires: python-sqlalchemy0.5 Requires: python-repoze-what >= 1.0.3 -Requires: python-sqlalchemy >= 0.5 +Requires: python-sqlalchemy0.5 Requires: python-zope-interface Requires: python-repoze-who-plugins-sa @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Luke Macken - 1.0-0.6.rc1 +- Add the sqlalchemy0.5 requirement back for F-10 and EL-5 branches. + * Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 - Remove the sqlalchemy0.5 requirement for rawhide From pkgdb at fedoraproject.org Wed Jul 22 20:29:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 20:29:23 +0000 Subject: [pkgdb] zoneminder had acl change status Message-ID: <20090722202923.8ADAA10F8AD@bastion2.fedora.phx.redhat.com> tibbs has set the commit acl on zoneminder (Fedora devel) to Approved for tibbs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zoneminder From orion at fedoraproject.org Wed Jul 22 21:18:56 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 21:18:56 +0000 (UTC) Subject: rpms/gdal/devel gdal.spec,1.63,1.64 Message-ID: <20090722211856.E9B8311C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/gdal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13080 Modified Files: gdal.spec Log Message: * Wed Jul 22 2009 Orion Poplawski - 1.6.0-9 - Rebuild for libdap 3.9.3 Index: gdal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/gdal.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- gdal.spec 23 Mar 2009 23:07:27 -0000 1.63 +++ gdal.spec 22 Jul 2009 21:18:26 -0000 1.64 @@ -1,6 +1,6 @@ Name: gdal Version: 1.6.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: GIS file format library Group: System Environment/Libraries License: MIT @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Jul 22 2009 Orion Poplawski - 1.6.0-9 +- Rebuild for libdap 3.9.3 + * Mon Mar 23 2009 Jesse Keating - 1.6.0-8 - re-enable grass support From ajax at fedoraproject.org Wed Jul 22 21:19:26 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Wed, 22 Jul 2009 21:19:26 +0000 (UTC) Subject: rpms/printer-filters/devel printer-filters.spec,1.3,1.4 Message-ID: <20090722211926.1088911C0099@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/printer-filters/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13227 Modified Files: printer-filters.spec Log Message: * Wed Jul 22 2009 Adam Jackson 1.1-3 - Un-Requires: netpbm-progs, none of the foomatic ppds require it. Index: printer-filters.spec =================================================================== RCS file: /cvs/pkgs/rpms/printer-filters/devel/printer-filters.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- printer-filters.spec 27 Feb 2009 02:21:12 -0000 1.3 +++ printer-filters.spec 22 Jul 2009 21:19:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: printer-filters Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of filters for various printer drivers Group: System Environment/Libraries @@ -18,7 +18,7 @@ Requires: min12xxw # Brother Requires: ptouch-driver # Printer independent converters -Requires: ghostscript netpbm-progs psutils pnm2ppa +Requires: ghostscript psutils pnm2ppa %files # No files @@ -30,6 +30,9 @@ ensures that all printer drivers availab require external filters will work. %changelog +* Wed Jul 22 2009 Adam Jackson 1.1-3 +- Un-Requires: netpbm-progs, none of the foomatic ppds require it. + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Wed Jul 22 21:30:45 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Wed, 22 Jul 2009 21:30:45 +0000 (UTC) Subject: rpms/pypar/devel pypar.spec,1.1,1.2 Message-ID: <20090722213045.C1E9411C048A@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/pypar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15748 Modified Files: pypar.spec Log Message: Fix build in rawhide. Index: pypar.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypar/devel/pypar.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pypar.spec 4 Jun 2009 17:19:41 -0000 1.1 +++ pypar.spec 22 Jul 2009 21:30:45 -0000 1.2 @@ -2,7 +2,7 @@ Name: pypar Version: 2.1.0_66 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Parallel programming with Python Group: Development/Libraries License: GPLv2+ @@ -12,11 +12,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: numpy BuildRequires: python-setuptools-devel -%if 0%{?fedora} > 11 -BuildRequires: openmpi -%else BuildRequires: openmpi-devel -%endif Requires: numpy @@ -57,8 +53,12 @@ standard MPI. # Load MPI enviroment %if %modules == 1 . /etc/profile.d/modules.sh +%if 0%{?fedora} < 12 module load %{_libdir}/openmpi/*/openmpi.module -export CFLAGS="%{optflags}" +%else +module load openmpi-%{_arch} +%endif +export CFLAGS="$CFLAGS %{optflags}" %endif %if %selector == 1 @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{python_sitearch}/Pypar*.egg-info %changelog +* Thu Jul 23 2009 Jussi Lehtola - 2.1.0_66-4 +- Openmpi seems to have been fixed, fix build in rawhide. + * Thu Jun 04 2009 Jussi Lehtola - 2.1.0_66-3 - Fix build in rawhide. From orion at fedoraproject.org Wed Jul 22 21:31:09 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Wed, 22 Jul 2009 21:31:09 +0000 (UTC) Subject: rpms/gdal/devel gdal.spec,1.64,1.65 Message-ID: <20090722213109.1807511C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/gdal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15904 Modified Files: gdal.spec Log Message: Bootstrap Index: gdal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/gdal.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- gdal.spec 22 Jul 2009 21:18:26 -0000 1.64 +++ gdal.spec 22 Jul 2009 21:31:08 -0000 1.65 @@ -25,7 +25,7 @@ BuildRequires: ant swig ruby java-devel- %endif # enable/disable grass support, for bootstrapping -%define grass_support 1 +%define grass_support 0 # enable/disable refman generation %define build_refman 1 @@ -532,7 +532,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Wed Jul 22 2009 Orion Poplawski - 1.6.0-9 -- Rebuild for libdap 3.9.3 +- Rebuild for libdap 3.9.3, bootstrap * Mon Mar 23 2009 Jesse Keating - 1.6.0-8 - re-enable grass support From mclasen at fedoraproject.org Wed Jul 22 21:32:55 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 22 Jul 2009 21:32:55 +0000 (UTC) Subject: rpms/gnome-panel/devel panel-icons.patch, NONE, 1.1 gnome-panel.spec, 1.358, 1.359 Message-ID: <20090722213255.C62A311C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16440 Modified Files: gnome-panel.spec Added Files: panel-icons.patch Log Message: Make category icons obey the menu-images setting panel-icons.patch: menu.c | 2 +- panel-menu-items.c | 38 +++++++++++++++++++++++++------------- panel-recent.c | 2 +- 3 files changed, 27 insertions(+), 15 deletions(-) --- NEW FILE panel-icons.patch --- diff -up gnome-panel-2.27.4/gnome-panel/menu.c.panel-icons gnome-panel-2.27.4/gnome-panel/menu.c --- gnome-panel-2.27.4/gnome-panel/menu.c.panel-icons 2009-07-01 09:06:23.000000000 -0400 +++ gnome-panel-2.27.4/gnome-panel/menu.c 2009-07-22 16:36:34.928388257 -0400 @@ -1389,7 +1389,7 @@ create_submenu_entry (GtkWidget { GtkWidget *menuitem; - menuitem = panel_image_menu_item_new (); + menuitem = gtk_image_menu_item_new (); panel_load_menu_image_deferred (menuitem, panel_menu_icon_get_size (), NULL, NULL, diff -up gnome-panel-2.27.4/gnome-panel/panel-menu-items.c.panel-icons gnome-panel-2.27.4/gnome-panel/panel-menu-items.c --- gnome-panel-2.27.4/gnome-panel/panel-menu-items.c.panel-icons 2009-07-22 16:36:34.768127904 -0400 +++ gnome-panel-2.27.4/gnome-panel/panel-menu-items.c 2009-07-22 16:39:57.329131999 -0400 @@ -1,4 +1,5 @@ -/* +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * * Copyright (C) 2005 Vincent Untz * * This program is free software; you can redistribute it and/or @@ -141,7 +142,8 @@ activate_desktop_uri (GtkWidget *menuite static void panel_menu_items_append_from_desktop (GtkWidget *menu, char *path, - char *force_name) + char *force_name, + gboolean use_icon) { GKeyFile *key_file; gboolean loaded; @@ -237,7 +239,12 @@ panel_menu_items_append_from_desktop (Gt else name = g_strdup (force_name); - item = panel_image_menu_item_new (); + if (use_icon) { + item = panel_image_menu_item_new (); + } else { + item = gtk_image_menu_item_new (); + } + setup_menu_item_with_icon (item, panel_menu_icon_get_size (), icon, NULL, NULL, name); @@ -313,7 +320,7 @@ panel_menu_items_create_action_item_full if (panel_action_get_is_disabled (action_type)) return NULL; - item = panel_image_menu_item_new (); + item = gtk_image_menu_item_new (); setup_menu_item_with_icon (item, panel_menu_icon_get_size (), panel_action_get_icon_name (action_type), @@ -1032,7 +1039,8 @@ panel_place_menu_item_create_menu (Panel NULL); panel_menu_items_append_from_desktop (places_menu, "gnome-nautilus-computer.desktop", - gconf_name); + gconf_name, + TRUE); if (gconf_name) g_free (gconf_name); @@ -1041,7 +1049,8 @@ panel_place_menu_item_create_menu (Panel panel_menu_items_append_from_desktop (places_menu, "gnome-network-scheme.desktop", - NULL); + NULL, + TRUE); panel_place_menu_item_append_remote_gio (place_item, places_menu); if (panel_is_program_in_path ("nautilus-connect-server")) { @@ -1056,15 +1065,18 @@ panel_place_menu_item_create_menu (Panel if (panel_has_desktop_file ("gnome-beagle-search.desktop")) { panel_menu_items_append_from_desktop (places_menu, "gnome-beagle-search.desktop", - NULL); + NULL, + FALSE); } else if (panel_has_desktop_file ("fedora-tracker-search-tool.desktop")) { panel_menu_items_append_from_desktop (places_menu, "fedora-tracker-search-tool.desktop", - NULL); + NULL, + FALSE); } else { panel_menu_items_append_from_desktop (places_menu, "gnome-search-tool.desktop", - NULL); + NULL, + FALSE); } @@ -1158,11 +1170,11 @@ panel_desktop_menu_item_append_menu (Gtk if (add_separator) add_menu_separator (menu); - panel_menu_items_append_from_desktop (menu, "gnome-yelp.desktop", NULL); - panel_menu_items_append_from_desktop (menu, "gnome-about.desktop", NULL); - panel_menu_items_append_from_desktop (menu, "about-fedora.desktop", NULL); + panel_menu_items_append_from_desktop (menu, "gnome-yelp.desktop", NULL, FALSE); + panel_menu_items_append_from_desktop (menu, "gnome-about.desktop", NULL, FALSE); + panel_menu_items_append_from_desktop (menu, "about-fedora.desktop", NULL, FALSE); if (panel_has_desktop_file ("about-this-computer.desktop")) - panel_menu_items_append_from_desktop (menu, "about-this-computer.desktop", NULL); + panel_menu_items_append_from_desktop (menu, "about-this-computer.desktop", NULL, FALSE); if (parent->priv->append_lock_logout) panel_menu_items_append_lock_logout (menu); diff -up gnome-panel-2.27.4/gnome-panel/panel-recent.c.panel-icons gnome-panel-2.27.4/gnome-panel/panel-recent.c --- gnome-panel-2.27.4/gnome-panel/panel-recent.c.panel-icons 2009-07-01 09:06:23.000000000 -0400 +++ gnome-panel-2.27.4/gnome-panel/panel-recent.c 2009-07-22 16:36:34.933388684 -0400 @@ -188,7 +188,7 @@ panel_recent_append_documents_menu (GtkW GtkWidget *menu_item; int size; - menu_item = panel_image_menu_item_new (); + menu_item = gtk_image_menu_item_new (); setup_menu_item_with_icon (menu_item, panel_menu_icon_get_size (), PANEL_ICON_RECENT, Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/gnome-panel.spec,v retrieving revision 1.358 retrieving revision 1.359 diff -u -p -r1.358 -r1.359 --- gnome-panel.spec 15 Jul 2009 20:32:07 -0000 1.358 +++ gnome-panel.spec 22 Jul 2009 21:32:55 -0000 1.359 @@ -23,7 +23,7 @@ Summary: GNOME panel Name: gnome-panel Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-panel/2.27/%{name}-%{version}.tar.bz2 @@ -119,6 +119,9 @@ Patch38: clock-network.patch # https://bugzilla.redhat.com/show_bug.cgi?id=498366 Patch42: polkit1.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=322932 +Patch45: panel-icons.patch + Conflicts: gnome-power-manager < 2.15.3 %description @@ -167,6 +170,7 @@ Panel Applets using the libpanel-applet %patch35 -p1 -b .clock-wakeups %patch38 -p1 -b .clock-network %patch42 -p1 -b .polkit1 +%patch45 -p1 -b .panel-icons . %{SOURCE6} @@ -363,6 +367,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Wed Jul 22 2009 Matthias Clasen - 2.27.4-2 +- Make category icons follow the menu-images setting + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From spot at fedoraproject.org Wed Jul 22 21:34:28 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 21:34:28 +0000 (UTC) Subject: rpms/tcl-snack/F-11 tcl-snack.spec,1.9,1.10 Message-ID: <20090722213428.ACBCA11C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/tcl-snack/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16868/F-11 Modified Files: tcl-snack.spec Log Message: turn ALSA back on Index: tcl-snack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-snack/F-11/tcl-snack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tcl-snack.spec 17 Mar 2009 22:29:21 -0000 1.9 +++ tcl-snack.spec 22 Jul 2009 21:33:58 -0000 1.10 @@ -9,7 +9,7 @@ Name: tcl-%{realname} Version: 2.2.10 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Sound toolkit Group: System Environment/Libraries License: GPLv2+ @@ -28,7 +28,7 @@ Patch3: snack2.2.10-newALSA.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tcl-devel, tk-devel, libogg-devel, libvorbis-devel BuildRequires: libXft-devel -# BuildRequires: alsa-lib-devel +BuildRequires: alsa-lib-devel BuildRequires: python-devel Requires: tcl(abi) = %{tcl_version} Provides: %{realname} = %{version}-%{release} @@ -78,7 +78,7 @@ sed -i -e 's|\r||g' demos/python/*.txt %build cd unix/ -%configure --disable-static --with-tcl=%{_libdir} --with-tk=%{_libdir} --with-ogg-include=%{_includedir} --with-ogg-lib=%{_libdir} +%configure --disable-static --with-tcl=%{_libdir} --with-tk=%{_libdir} --with-ogg-include=%{_includedir} --with-ogg-lib=%{_libdir} --enable-alsa make %{?_smp_mflags} EXTRACFLAGS="%{optflags}" cd ../python %{__python} setup.py build @@ -126,6 +126,9 @@ rm -rf %{buildroot} %{python_sitelib}/tkSnack* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 2.2.10-11 +- turn alsa back on, /dev/dsp is dead + * Mon Mar 16 2009 Tom "spot" Callaway - 2.2.10-10 - enable -devel package From spot at fedoraproject.org Wed Jul 22 21:34:28 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 21:34:28 +0000 (UTC) Subject: rpms/tcl-snack/devel tcl-snack.spec,1.9,1.10 Message-ID: <20090722213428.E283411C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/tcl-snack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16868/devel Modified Files: tcl-snack.spec Log Message: turn ALSA back on Index: tcl-snack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-snack/devel/tcl-snack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tcl-snack.spec 17 Mar 2009 22:29:21 -0000 1.9 +++ tcl-snack.spec 22 Jul 2009 21:33:58 -0000 1.10 @@ -9,7 +9,7 @@ Name: tcl-%{realname} Version: 2.2.10 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Sound toolkit Group: System Environment/Libraries License: GPLv2+ @@ -28,7 +28,7 @@ Patch3: snack2.2.10-newALSA.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: tcl-devel, tk-devel, libogg-devel, libvorbis-devel BuildRequires: libXft-devel -# BuildRequires: alsa-lib-devel +BuildRequires: alsa-lib-devel BuildRequires: python-devel Requires: tcl(abi) = %{tcl_version} Provides: %{realname} = %{version}-%{release} @@ -78,7 +78,7 @@ sed -i -e 's|\r||g' demos/python/*.txt %build cd unix/ -%configure --disable-static --with-tcl=%{_libdir} --with-tk=%{_libdir} --with-ogg-include=%{_includedir} --with-ogg-lib=%{_libdir} +%configure --disable-static --with-tcl=%{_libdir} --with-tk=%{_libdir} --with-ogg-include=%{_includedir} --with-ogg-lib=%{_libdir} --enable-alsa make %{?_smp_mflags} EXTRACFLAGS="%{optflags}" cd ../python %{__python} setup.py build @@ -126,6 +126,9 @@ rm -rf %{buildroot} %{python_sitelib}/tkSnack* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 2.2.10-11 +- turn alsa back on, /dev/dsp is dead + * Mon Mar 16 2009 Tom "spot" Callaway - 2.2.10-10 - enable -devel package From mclasen at fedoraproject.org Wed Jul 22 21:41:58 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Wed, 22 Jul 2009 21:41:58 +0000 (UTC) Subject: rpms/libgnome/devel less-icons.patch, NONE, 1.1 libgnome.spec, 1.145, 1.146 Message-ID: <20090722214158.9B33311C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18508 Modified Files: libgnome.spec Added Files: less-icons.patch Log Message: Turn off icons in buttons and menus by default less-icons.patch: desktop_gnome_interface.schemas.in.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE less-icons.patch --- diff -up libgnome-2.26.0/schemas/desktop_gnome_interface.schemas.in.in.icons libgnome-2.26.0/schemas/desktop_gnome_interface.schemas.in.in --- libgnome-2.26.0/schemas/desktop_gnome_interface.schemas.in.in.icons 2009-07-22 17:36:22.985382840 -0400 +++ libgnome-2.26.0/schemas/desktop_gnome_interface.schemas.in.in 2009-07-22 17:37:01.752132219 -0400 @@ -65,7 +65,7 @@ /desktop/gnome/interface/menus_have_icons gnome bool - true + false Menus Have Icons Whether menus may display an icon next to a menu entry. @@ -76,7 +76,7 @@ /desktop/gnome/interface/buttons_have_icons gnome bool - true + false Buttons Have Icons Whether buttons may display an icon in addition to the button text. Index: libgnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnome/devel/libgnome.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- libgnome.spec 2 Jul 2009 05:16:45 -0000 1.145 +++ libgnome.spec 22 Jul 2009 21:41:28 -0000 1.146 @@ -14,7 +14,7 @@ Summary: GNOME base library Name: libgnome Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libgnome/2.26/%{name}-%{version}.tar.bz2 Source1: desktop_gnome_peripherals_monitor.schemas @@ -60,6 +60,9 @@ Patch8: im-setting.patch Patch9: libgnome-2.24.1-default-noblink.patch +# backport from upstream +Patch10: less-icons.patch + %description GNOME (GNU Network Object Model Environment) is a user-friendly set of @@ -111,6 +114,7 @@ if you just want to use the GNOME deskto %patch7 -p1 -b .default-sound-effects %patch8 -p1 -b .im-setting %patch9 -p1 -b .default-noblink +%patch10 -p1 -b .less-icons %build %configure --disable-gtk-doc --disable-static --disable-esd @@ -199,6 +203,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Wed Jul 22 2009 Matthias Clasen - 2.26.0-4 +- Turn off icons in buttons and menus by default + * Thu Jul 2 2009 Matthias Clasen - 2.26.0-3 - Rebuild From walters at fedoraproject.org Wed Jul 22 21:46:04 2009 From: walters at fedoraproject.org (Colin Walters) Date: Wed, 22 Jul 2009 21:46:04 +0000 (UTC) Subject: rpms/dbus/devel dbus.spec,1.169,1.170 Message-ID: <20090722214604.9221811C0099@cvs1.fedora.phx.redhat.com> Author: walters Update of /cvs/pkgs/rpms/dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19526 Modified Files: dbus.spec Log Message: * Wed Jul 22 2009 Colin Walters - 1:1.2.16-2 - Explicitly add a dbus group id, fixes dbus files getting a random group id in cases where the RPM install order varies. Fixes https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=458183 Index: dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/dbus.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- dbus.spec 16 Jul 2009 19:30:24 -0000 1.169 +++ dbus.spec 22 Jul 2009 21:46:04 -0000 1.170 @@ -9,7 +9,7 @@ Summary: D-BUS message bus Name: dbus Epoch: 1 Version: 1.2.16 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.gz Source1: doxygen_to_devhelp.xsl @@ -148,8 +148,9 @@ mkdir -p %{buildroot}%{_datadir}/dbus-1/ rm -rf %{buildroot} %pre -# Add the "dbus" user -/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} \ +# Add the "dbus" user and group +/usr/sbin/groupadd -r -g %{dbus_user_uid} dbus 2>/dev/null || : +/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} -g %{dbus_user_uid} -U \ -s /sbin/nologin -r -d '/' dbus 2> /dev/null || : %post libs -p /sbin/ldconfig @@ -225,6 +226,11 @@ fi %{_includedir}/* %changelog +* Wed Jul 22 2009 Colin Walters - 1:1.2.16-2 +- Explicitly add a dbus group id, fixes dbus files getting a + random group id in cases where the RPM install order varies. + Fixes https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=458183 + * Tue Jul 14 2009 Colin Walters - 1:1.2.16-1 - Upstream 1.2.16 - Remove inotify patch, now upstreamed From whot at fedoraproject.org Wed Jul 22 21:53:27 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Wed, 22 Jul 2009 21:53:27 +0000 (UTC) Subject: rpms/libXi/devel .cvsignore, 1.16, 1.17 commitid, 1.2, 1.3 libXi.spec, 1.33, 1.34 sources, 1.17, 1.18 Message-ID: <20090722215327.475EA11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21301 Modified Files: .cvsignore commitid libXi.spec sources Log Message: * Thu Jul 23 2009 Peter Hutterer 1.2.99-6.20090723 - Update to today's git master Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 15 Jul 2009 23:13:20 -0000 1.16 +++ .cvsignore 22 Jul 2009 21:53:26 -0000 1.17 @@ -1 +1 @@ -libXi-20090716.tar.bz2 +libXi-20090723.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/commitid,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- commitid 15 Jul 2009 23:13:21 -0000 1.2 +++ commitid 22 Jul 2009 21:53:26 -0000 1.3 @@ -1 +1 @@ -4f224f4da1405959b74c05d6b15469cf6c0c498f +888f6c238de6f09cc5b079ae22c6f37496083007 Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libXi.spec 15 Jul 2009 23:13:21 -0000 1.33 +++ libXi.spec 22 Jul 2009 21:53:26 -0000 1.34 @@ -1,10 +1,10 @@ %define tarball libXi -%define gitdate 20090716 +%define gitdate 20090723 Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 5.%{gitdate}%{?dist} +Release: 6.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Peter Hutterer 1.2.99-6.20090723 +- Update to today's git master + * Thu Jul 16 2009 Peter Hutterer 1.2.99-5.20090716 - Update to today's git master Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 15 Jul 2009 23:13:21 -0000 1.17 +++ sources 22 Jul 2009 21:53:26 -0000 1.18 @@ -1 +1 @@ -7ff773ecb786efc28193619c639c59d1 libXi-20090716.tar.bz2 +08f869c2d551e61e67016d8e41c9e54f libXi-20090723.tar.bz2 From nalin at fedoraproject.org Wed Jul 22 21:30:24 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 22 Jul 2009 21:30:24 +0000 (UTC) Subject: rpms/gnupg/devel gnupg-1.4.9-fortify.patch,1.1,NONE Message-ID: <20090722213024.61B0311C048A@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/gnupg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15495 Removed Files: gnupg-1.4.9-fortify.patch Log Message: - gcc allows the original code as of 4.4.0-15; removing --- gnupg-1.4.9-fortify.patch DELETED --- From pkgdb at fedoraproject.org Wed Jul 22 21:57:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:57:05 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchcommits Message-ID: <20090722215705.A4C5210F907@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on anaconda (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Wed Jul 22 21:57:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:57:13 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchbugzilla Message-ID: <20090722215713.80AC710F90D@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on anaconda (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Wed Jul 22 21:57:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:57:53 +0000 Subject: [pkgdb] anaconda: kanarip has requested commit Message-ID: <20090722215754.1214810F8B9@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on anaconda (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Wed Jul 22 21:58:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:58:01 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchbugzilla Message-ID: <20090722215801.94B4710F8CA@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on anaconda (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Wed Jul 22 21:58:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:58:06 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchcommits Message-ID: <20090722215806.F079010F8CF@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on anaconda (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Wed Jul 22 21:58:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Wed, 22 Jul 2009 21:58:10 +0000 Subject: [pkgdb] anaconda: kanarip has requested commit Message-ID: <20090722215810.660D710F8EE@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on anaconda (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From jgarzik at fedoraproject.org Wed Jul 22 22:07:38 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Wed, 22 Jul 2009 22:07:38 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.4,1.5 sources,1.3,1.4 Message-ID: <20090722220738.F21A011C0099@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24893 Modified Files: cld.spec sources Log Message: update to fix ExcludeArch bug Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cld.spec 21 Jul 2009 19:23:50 -0000 1.4 +++ cld.spec 22 Jul 2009 22:07:08 -0000 1.5 @@ -1,13 +1,13 @@ Name: cld Version: 0.2 -Release: 0.4.gc5b5f962%{?dist} +Release: 0.5.g988e17d1%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit c5b5f9622334b273c47e7aad5bd53e280041a045 +# pulled from upstream git, commit 988e17d1b0ad8eef6df3f6f237e261d388adff59 # to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init @@ -17,10 +17,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: db4-devel libevent-devel glib2-devel doxygen openssl-devel BuildRequires: texlive-latex -# cld is broken on big-endian... embarrassing!!! -# FIXME: remove this when cld is fixed -ExcludeArch: ppc ppc64 - %description Coarse locking daemon for cloud computing. This software provides a cache-coherent, highly-available distributed filesystem for small @@ -101,6 +97,10 @@ fi %{_includedir}/* %changelog +* Tue Jul 21 2009 Jeff Garzik - 0.2-0.5.g988e17d1 +- update to commit 988e17d1b0ad8eef6df3f6f237e261d388adff59 +- remove ExcludeArch + * Tue Jul 21 2009 Jeff Garzik - 0.2-0.4.gc5b5f962 - rebuild for koji silliness Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jul 2009 17:43:53 -0000 1.3 +++ sources 22 Jul 2009 22:07:08 -0000 1.4 @@ -1 +1 @@ -0324c5f35cb0fa726eb795b4fd48c654 cld-0.2git.tar.gz +0f0f468a4ded6e150a44a4223f94a4d9 cld-0.2git.tar.gz From jgarzik at fedoraproject.org Wed Jul 22 22:09:30 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Wed, 22 Jul 2009 22:09:30 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.spec,1.3,1.4 Message-ID: <20090722220930.D24D311C0099@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25155 Modified Files: chunkd.spec Log Message: update for fixed ExcludeArch bug Index: chunkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/chunkd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- chunkd.spec 21 Jul 2009 19:24:43 -0000 1.3 +++ chunkd.spec 22 Jul 2009 22:09:30 -0000 1.4 @@ -1,6 +1,6 @@ Name: chunkd Version: 0.4 -Release: 0.4.g5f69efd9%{?dist} +Release: 0.5.g5f69efd9%{?dist} Summary: Data storage daemon for cloud computing Group: System Environment/Base @@ -18,10 +18,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: libevent-devel glib2-devel openssl-devel zlib-devel BuildRequires: libxml2-devel procps cld cld-devel -# cld is broken on big-endian... embarrassing!!! -# FIXME: remove this when cld is fixed -ExcludeArch: ppc ppc64 - %description Single-node data storage daemon for cloud computing. @@ -99,6 +95,9 @@ fi %{_includedir}/* %changelog +* Wed Jul 22 2009 Jeff Garzik - 0.4-0.5.g5f69efd9 +- remove ExcludeArch, now that cld is fixed + * Tue Jul 21 2009 Jeff Garzik - 0.4-0.4.g5f69efd9 - rebuild for koji silliness From nalin at fedoraproject.org Wed Jul 22 22:12:05 2009 From: nalin at fedoraproject.org (Nalin Dahyabhai) Date: Wed, 22 Jul 2009 22:12:05 +0000 (UTC) Subject: rpms/hmaccalc/devel .cvsignore, 1.4, 1.5 hmaccalc.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090722221205.112F311C0099@cvs1.fedora.phx.redhat.com> Author: nalin Update of /cvs/pkgs/rpms/hmaccalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25651 Modified Files: .cvsignore hmaccalc.spec sources Log Message: - update to 0.9.9 - look for prelink at compile-time, and if we find it try to invoke it using a full pathname before trying with $PATH (#512275) - buildrequires: prelink so that it will be found at compile-time Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hmaccalc/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 9 Jun 2009 20:29:40 -0000 1.4 +++ .cvsignore 22 Jul 2009 22:11:34 -0000 1.5 @@ -1,3 +1,4 @@ hmaccalc-0.9.6.tar.gz hmaccalc-0.9.7.tar.gz hmaccalc-0.9.8.tar.gz +hmaccalc-0.9.9.tar.gz Index: hmaccalc.spec =================================================================== RCS file: /cvs/pkgs/rpms/hmaccalc/devel/hmaccalc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hmaccalc.spec 9 Jun 2009 20:29:40 -0000 1.3 +++ hmaccalc.spec 22 Jul 2009 22:11:34 -0000 1.4 @@ -12,7 +12,7 @@ %{nil} Name: hmaccalc -Version: 0.9.8 +Version: 0.9.9 Release: 1%{?dist} Summary: Tools for computing and checking HMAC values for files @@ -22,7 +22,7 @@ URL: https://fedorahosted.org/hmaccalc/ Source0: https://fedorahosted.org/released/hmaccalc/hmaccalc-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -BuildRequires: nss-devel +BuildRequires: nss-devel, prelink %description The hmaccalc package contains tools which can calculate HMAC (hash-based @@ -61,6 +61,11 @@ make check %{_mandir}/*/* %changelog +* Fri Jul 11 2009 Nalin Dahyabhai 0.9.9-1 +- look for prelink at compile-time, and if we find it try to invoke it + using a full pathname before trying with $PATH (#512275) +- buildrequires: prelink so that it will be found at compile-time + * Tue Jun 9 2009 Nalin Dahyabhai 0.9.8-1 - when checking, skip input lines which don't look like valid input lines Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hmaccalc/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 9 Jun 2009 20:29:40 -0000 1.4 +++ sources 22 Jul 2009 22:11:34 -0000 1.5 @@ -1 +1 @@ -036e71d741ec4edd46e9a396155c7e89 hmaccalc-0.9.8.tar.gz +889521571d77e4e7705ee2b8ed709008 hmaccalc-0.9.9.tar.gz From spot at fedoraproject.org Wed Jul 22 22:25:46 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:25:46 +0000 (UTC) Subject: rpms/mhash/F-11 mhash-0.9.9.9-align.patch, NONE, 1.1 mhash-0.9.9.9-alignment.patch, NONE, 1.1 mhash-0.9.9.9-autotools-namespace-stomping.patch, NONE, 1.1 mhash-0.9.9.9-fix-mem-leak.patch, NONE, 1.1 mhash-0.9.9.9-fix-snefru-segfault.patch, NONE, 1.1 mhash-0.9.9.9-fix-whirlpool-segfault.patch, NONE, 1.1 mhash-0.9.9.9-force64bit-tiger.patch, NONE, 1.1 mhash-0.9.9.9-keygen_test_fix.patch, NONE, 1.1 mhash-0.9.9.9-maxint.patch, NONE, 1.1 mhash.spec, 1.27, 1.28 sources, 1.7, 1.8 Message-ID: <20090722222546.8BCD611C00D4@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mhash/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28697/F-11 Modified Files: mhash.spec sources Added Files: mhash-0.9.9.9-align.patch mhash-0.9.9.9-alignment.patch mhash-0.9.9.9-autotools-namespace-stomping.patch mhash-0.9.9.9-fix-mem-leak.patch mhash-0.9.9.9-fix-snefru-segfault.patch mhash-0.9.9.9-fix-whirlpool-segfault.patch mhash-0.9.9.9-force64bit-tiger.patch mhash-0.9.9.9-keygen_test_fix.patch mhash-0.9.9.9-maxint.patch Log Message: update to 0.9.9.9, fix lots of bugs mhash-0.9.9.9-align.patch: stdfns.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 12 deletions(-) --- NEW FILE mhash-0.9.9.9-align.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-02 16:38:43.217029623 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-02 16:41:58.647120391 -0400 @@ -152,6 +152,18 @@ mutils_bzero(void *s, __const mutils_wor } } +static void +mutils_memset8(void *s, __const mutils_word8 c, __const mutils_word32 n) +{ + mutils_word8 *stmp = s; + mutils_word32 i; + + for (i = 0; i < n; i++, stmp++) + { + *stmp = c; + } +} + WIN32DLL_DEFINE void mutils_memset(void *s, __const mutils_word8 c, __const mutils_word32 n) @@ -160,8 +172,7 @@ mutils_memset(void *s, __const mutils_wo /* Sparc needs 8-bit alignment - just use standard memset */ memset(s, (int) c, (size_t) n); #else - mutils_word8 *stmp; - mutils_word32 *ltmp = (mutils_word32 *) s; + mutils_word32 *ltmp; mutils_word32 lump; mutils_word32 i; mutils_word32 words; @@ -172,22 +183,30 @@ mutils_memset(void *s, __const mutils_wo return; } + if (n < 16) + { + return mutils_memset8(s, c, n); + } + + /* unaligned portion at beginning */ + remainder = (-(mutils_word32)s) & 0x3; + mutils_memset8(s, c, remainder); + + /* aligned words in the middle */ + ltmp = (mutils_word32 *) (s + remainder); + lump = (c << 24) + (c << 16) + (c << 8) + c; - words = n >> 2; - remainder = n - (words << 2); + words = (n - remainder) >> 2; + remainder = n - remainder - (words << 2); for (i = 0; i < words; i++, ltmp++) { *ltmp = lump; } - stmp = (mutils_word8 *) ltmp; - - for (i = 0; i < remainder; i++, stmp++) - { - *stmp = c; - } + /* unaligned portion at end */ + return mutils_memset8(ltmp, c, remainder); #endif } @@ -281,6 +300,9 @@ mutils_word32nswap(mutils_word32 *x, mut mutils_word32 *buffer; mutils_word32 *ptrIn; mutils_word32 *ptrOut; + mutils_word8 *ptr8In; + mutils_word8 *ptr8Out; + mutils_word8 tmp8; mutils_word32 count = n * 4; if (destructive == MUTILS_FALSE) @@ -301,9 +323,35 @@ mutils_word32nswap(mutils_word32 *x, mut * data on a little-endian machine. */ - for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + if ((mutils_word32)x & 0x3) + { + ptr8In = (mutils_word8 *) x; + ptr8Out = (mutils_word8 *) buffer; + for (loop = 0; loop < n; loop++) + { +#ifdef WORDS_BIGENDIAN + tmp8 = ptr8In[0]; + ptr8Out[0] = ptr8In[3]; + ptr8Out[3] = tmp8; + tmp8 = ptr8In[1]; + ptr8Out[1] = ptr8In[2]; + ptr8Out[2] = tmp8; +#else + ptr8Out[0] = ptr8In[0]; + ptr8Out[1] = ptr8In[1]; + ptr8Out[2] = ptr8In[2]; + ptr8Out[3] = ptr8In[3]; +#endif + ptr8Out += 4; + ptr8In += 4; + } + } + else { - *ptrOut = mutils_lend32(*ptrIn); + for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + { + *ptrOut = mutils_lend32(*ptrIn); + } } return(buffer); mhash-0.9.9.9-alignment.patch: stdfns.c | 6 ++++++ 1 file changed, 6 insertions(+) --- NEW FILE mhash-0.9.9.9-alignment.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:05:40.139461097 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:06:52.151190927 -0400 @@ -378,6 +378,12 @@ mutils_memmove(void *dest, __const void bigptr1 = (mutils_word32 *) dest; bigptr2 = (mutils_word32 *) src; + /* copy byte-by-byte for small and/or unaligned copies */ + if ((n < 16) || ((mutils_word32)dest & 0x3) || ((mutils_word32)src & 0x3)) + { + return mutils_memcpy8(dest, src, n); + } + words = n >> 2; remainder = n - (words << 2); mhash-0.9.9.9-autotools-namespace-stomping.patch: configure.in | 1 + include/mutils/config.h.in | 22 ++++++++++++++++++++++ include/mutils/mhash_config.h.in | 21 --------------------- 3 files changed, 23 insertions(+), 21 deletions(-) --- NEW FILE mhash-0.9.9.9-autotools-namespace-stomping.patch --- diff -up mhash-0.9.9.9/configure.in.fix-autotool-stomping mhash-0.9.9.9/configure.in --- mhash-0.9.9.9/configure.in.fix-autotool-stomping 2007-04-04 22:22:28.000000000 -0400 +++ mhash-0.9.9.9/configure.in 2009-07-02 17:02:39.099044520 -0400 @@ -6,6 +6,7 @@ AC_CONFIG_SRCDIR([lib/mhash.c]) AM_INIT_AUTOMAKE AC_DEFINE([MHASH_VERSION], PROGRAM_VERSION, "MHash Version") +AC_CONFIG_HEADER([include/mutils/config.h]) AC_CONFIG_HEADER([include/mutils/mhash_config.h]) diff -up /dev/null mhash-0.9.9.9/include/mutils/config.h.in --- /dev/null 2009-07-01 18:40:45.228272777 -0400 +++ mhash-0.9.9.9/include/mutils/config.h.in 2009-07-02 17:02:39.100044508 -0400 @@ -0,0 +1,22 @@ +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Version number of package */ +#undef VERSION + + diff -up mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping mhash-0.9.9.9/include/mutils/mhash_config.h.in --- mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping 2008-12-07 18:33:50.000000000 -0500 +++ mhash-0.9.9.9/include/mutils/mhash_config.h.in 2009-07-02 17:04:30.453049610 -0400 @@ -181,24 +181,6 @@ /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - /* Define to 1 if the C compiler supports function prototypes. */ #undef PROTOTYPES @@ -208,9 +190,6 @@ /* dmalloc */ #undef USE_DMALLOC -/* Version number of package */ -#undef VERSION - /* Define if using the dmalloc debugging malloc package */ #undef WITH_DMALLOC mhash-0.9.9.9-fix-mem-leak.patch: mhash.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-mem-leak.patch --- diff -up mhash-0.9.9.9/lib/mhash.c.BAD mhash-0.9.9.9/lib/mhash.c --- mhash-0.9.9.9/lib/mhash.c.BAD 2009-07-02 16:57:43.872049877 -0400 +++ mhash-0.9.9.9/lib/mhash.c 2009-07-02 16:58:03.909029777 -0400 @@ -719,6 +719,8 @@ WIN32DLL_DEFINE MHASH mhash_restore_stat mutils_memcpy( &ret->state_size, &mem[pos], sizeof(ret->state_size)); pos += sizeof( ret->state_size); + if (ret->state) + mutils_free(ret->state); ret->state = mutils_malloc(ret->state_size); if (ret->state==NULL) goto freeall; mhash-0.9.9.9-fix-snefru-segfault.patch: snefru.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-snefru-segfault.patch --- diff -up mhash-0.9.9.9/lib/snefru.c.BAD mhash-0.9.9.9/lib/snefru.c --- mhash-0.9.9.9/lib/snefru.c.BAD 2009-07-02 16:54:58.973279449 -0400 +++ mhash-0.9.9.9/lib/snefru.c 2009-07-02 16:55:04.609279072 -0400 @@ -859,6 +859,8 @@ static void snefru_digest(__const struct { mutils_word32 i; + if(!digest) return; + for (i = 0; i < len; i++, digest += 4) { *(mutils_word32 *)digest = mutils_bend2sys32(ctx->hash[i]); mhash-0.9.9.9-fix-whirlpool-segfault.patch: whirlpool.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-whirlpool-segfault.patch --- diff -up mhash-0.9.9.9/lib/whirlpool.c.BAD mhash-0.9.9.9/lib/whirlpool.c --- mhash-0.9.9.9/lib/whirlpool.c.BAD 2009-07-02 16:59:50.885279180 -0400 +++ mhash-0.9.9.9/lib/whirlpool.c 2009-07-02 17:00:12.189279257 -0400 @@ -970,6 +970,8 @@ void whirlpool_digest(__const struct whi mutils_word8 * digest) { mutils_word32 i; + + if(!digest) return; /* * return the completed message digest: */ mhash-0.9.9.9-force64bit-tiger.patch: tiger.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-force64bit-tiger.patch --- diff -up mhash-0.9.9.9/lib/tiger.c.BAD mhash-0.9.9.9/lib/tiger.c --- mhash-0.9.9.9/lib/tiger.c.BAD 2009-07-02 16:42:47.683029940 -0400 +++ mhash-0.9.9.9/lib/tiger.c 2009-07-02 16:43:46.085049317 -0400 @@ -252,7 +252,9 @@ void tiger_update(struct tiger_ctx *ctx, void tiger_final(struct tiger_ctx *ctx) { register mutils_word64 i, j; - mutils_word8 temp[TIGER_DATASIZE]; + /* Force 64-bit alignment */ + mutils_word64 temp_64bit[TIGER_DATASIZE/8]; + mutils_word8 *temp = temp_64bit; i = ctx->index; #if defined(WORDS_BIGENDIAN) mhash-0.9.9.9-keygen_test_fix.patch: keygen_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-keygen_test_fix.patch --- diff -up mhash-0.9.9.9/src/keygen_test.c.BAD mhash-0.9.9.9/src/keygen_test.c --- mhash-0.9.9.9/src/keygen_test.c.BAD 2009-07-22 18:01:59.636042665 -0400 +++ mhash-0.9.9.9/src/keygen_test.c 2009-07-22 18:04:53.608292727 -0400 @@ -121,7 +121,7 @@ int main() mhash_keygen_ext(KEYGEN_S2K_SALTED, data, key, keysize, password, passlen); - mutils_memset(tmp, 0, keysize * 2); + // mutils_memset(tmp, 0, keysize * 2); tmp = mutils_asciify(key, keysize); mhash-0.9.9.9-maxint.patch: stdfns.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) --- NEW FILE mhash-0.9.9.9-maxint.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:01:21.596191078 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:02:37.419191301 -0400 @@ -24,6 +24,7 @@ */ #include "libdefs.h" +#include /** * Some of these are wrappers. The idea is to eventually produce an extremely @@ -408,11 +409,11 @@ mutils_memcmp(__const void *s1, const vo { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (s2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(memcmp(s1, s2, n)); @@ -539,11 +540,11 @@ mutils_strcmp(__const mutils_word8 *src1 { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strcmp((char *) src1, (char *) src2)); } @@ -562,11 +563,11 @@ mutils_strncmp(__const mutils_word8 *src { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strncmp((char *) src1, (char *) src2, n)); } Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/F-11/mhash.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mhash.spec 26 Feb 2009 00:36:09 -0000 1.27 +++ mhash.spec 22 Jul 2009 22:25:16 -0000 1.28 @@ -3,14 +3,36 @@ Summary: Thread-safe hash algorithms library Name: mhash -Version: 0.9.9 -Release: 7 +Version: 0.9.9.9 +Release: 1%{?dist} URL: http://mhash.sourceforge.net/ License: LGPLv2+ Group: System Environment/Libraries Source: http://download.sourceforge.net/mhash/mhash-%{version}.tar.bz2 -Patch1: mhash-0.9.9-multiarch.patch -Patch2: mutils-align.patch +Patch2: mhash-0.9.9.9-align.patch +Patch3: mhash-0.9.9.9-force64bit-tiger.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch +Patch4: mhash-0.9.9.9-fix-snefru-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch +Patch5: mhash-0.9.9.9-fix-mem-leak.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch +Patch6: mhash-0.9.9.9-fix-whirlpool-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch +Patch7: mhash-0.9.9.9-autotools-namespace-stomping.patch +# Taken from openpkg: +# http://www.mail-archive.com/openpkg-cvs at openpkg.org/msg26353.html +Patch8: mhash-0.9.9.9-maxint.patch +# Taken from Jitesh Shah +# http://ftp.uk.linux.org/pub/armlinux/fedora/diffs-f11/mhash/0001-Alignment-fixes.patch +Patch9: mhash-0.9.9.9-alignment.patch +# Fix keygen_test +Patch10: mhash-0.9.9.9-keygen_test_fix.patch + +BuildRequires: autoconf, automake Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) Provides: libmhash = %{version}-%{release} @@ -41,9 +63,16 @@ develop programs that use the mhash libr %prep %setup -q -%patch1 -p1 -b .multiarch %patch2 -p1 -b .alignment - +%patch3 -p1 -b .force64bit-tiger +%patch4 -p1 -b .fix-snefru-segfault +%patch5 -p1 -b .fix-mem-leak +%patch6 -p1 -b .fix-whirlpool-segfault +%patch7 -p1 -b .fix-autotool-stomping +%patch8 -p1 -b .maxint +%patch9 -p1 -b .alignment2 +%patch10 -p1 -b .fix +autoconf %build %configure --enable-shared %{?_with_static: --enable-static} %{!?_with_static: --disable-static} @@ -95,6 +124,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-1 +- update to 0.9.9.9 +- apply all the fixes that I could find + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mhash/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 6 Apr 2007 13:07:46 -0000 1.7 +++ sources 22 Jul 2009 22:25:16 -0000 1.8 @@ -1 +1 @@ -d113a853e0ac21c49c5a1acea0daaade mhash-0.9.9.tar.bz2 +f91c74f9ccab2b574a98be5bc31eb280 mhash-0.9.9.9.tar.bz2 From spot at fedoraproject.org Wed Jul 22 22:25:46 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:25:46 +0000 (UTC) Subject: rpms/mhash/F-10 mhash-0.9.9.9-align.patch, NONE, 1.1 mhash-0.9.9.9-alignment.patch, NONE, 1.1 mhash-0.9.9.9-autotools-namespace-stomping.patch, NONE, 1.1 mhash-0.9.9.9-fix-mem-leak.patch, NONE, 1.1 mhash-0.9.9.9-fix-snefru-segfault.patch, NONE, 1.1 mhash-0.9.9.9-fix-whirlpool-segfault.patch, NONE, 1.1 mhash-0.9.9.9-force64bit-tiger.patch, NONE, 1.1 mhash-0.9.9.9-keygen_test_fix.patch, NONE, 1.1 mhash-0.9.9.9-maxint.patch, NONE, 1.1 mhash.spec, 1.26, 1.27 sources, 1.7, 1.8 Message-ID: <20090722222546.354A311C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mhash/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28697/F-10 Modified Files: mhash.spec sources Added Files: mhash-0.9.9.9-align.patch mhash-0.9.9.9-alignment.patch mhash-0.9.9.9-autotools-namespace-stomping.patch mhash-0.9.9.9-fix-mem-leak.patch mhash-0.9.9.9-fix-snefru-segfault.patch mhash-0.9.9.9-fix-whirlpool-segfault.patch mhash-0.9.9.9-force64bit-tiger.patch mhash-0.9.9.9-keygen_test_fix.patch mhash-0.9.9.9-maxint.patch Log Message: update to 0.9.9.9, fix lots of bugs mhash-0.9.9.9-align.patch: stdfns.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 12 deletions(-) --- NEW FILE mhash-0.9.9.9-align.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-02 16:38:43.217029623 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-02 16:41:58.647120391 -0400 @@ -152,6 +152,18 @@ mutils_bzero(void *s, __const mutils_wor } } +static void +mutils_memset8(void *s, __const mutils_word8 c, __const mutils_word32 n) +{ + mutils_word8 *stmp = s; + mutils_word32 i; + + for (i = 0; i < n; i++, stmp++) + { + *stmp = c; + } +} + WIN32DLL_DEFINE void mutils_memset(void *s, __const mutils_word8 c, __const mutils_word32 n) @@ -160,8 +172,7 @@ mutils_memset(void *s, __const mutils_wo /* Sparc needs 8-bit alignment - just use standard memset */ memset(s, (int) c, (size_t) n); #else - mutils_word8 *stmp; - mutils_word32 *ltmp = (mutils_word32 *) s; + mutils_word32 *ltmp; mutils_word32 lump; mutils_word32 i; mutils_word32 words; @@ -172,22 +183,30 @@ mutils_memset(void *s, __const mutils_wo return; } + if (n < 16) + { + return mutils_memset8(s, c, n); + } + + /* unaligned portion at beginning */ + remainder = (-(mutils_word32)s) & 0x3; + mutils_memset8(s, c, remainder); + + /* aligned words in the middle */ + ltmp = (mutils_word32 *) (s + remainder); + lump = (c << 24) + (c << 16) + (c << 8) + c; - words = n >> 2; - remainder = n - (words << 2); + words = (n - remainder) >> 2; + remainder = n - remainder - (words << 2); for (i = 0; i < words; i++, ltmp++) { *ltmp = lump; } - stmp = (mutils_word8 *) ltmp; - - for (i = 0; i < remainder; i++, stmp++) - { - *stmp = c; - } + /* unaligned portion at end */ + return mutils_memset8(ltmp, c, remainder); #endif } @@ -281,6 +300,9 @@ mutils_word32nswap(mutils_word32 *x, mut mutils_word32 *buffer; mutils_word32 *ptrIn; mutils_word32 *ptrOut; + mutils_word8 *ptr8In; + mutils_word8 *ptr8Out; + mutils_word8 tmp8; mutils_word32 count = n * 4; if (destructive == MUTILS_FALSE) @@ -301,9 +323,35 @@ mutils_word32nswap(mutils_word32 *x, mut * data on a little-endian machine. */ - for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + if ((mutils_word32)x & 0x3) + { + ptr8In = (mutils_word8 *) x; + ptr8Out = (mutils_word8 *) buffer; + for (loop = 0; loop < n; loop++) + { +#ifdef WORDS_BIGENDIAN + tmp8 = ptr8In[0]; + ptr8Out[0] = ptr8In[3]; + ptr8Out[3] = tmp8; + tmp8 = ptr8In[1]; + ptr8Out[1] = ptr8In[2]; + ptr8Out[2] = tmp8; +#else + ptr8Out[0] = ptr8In[0]; + ptr8Out[1] = ptr8In[1]; + ptr8Out[2] = ptr8In[2]; + ptr8Out[3] = ptr8In[3]; +#endif + ptr8Out += 4; + ptr8In += 4; + } + } + else { - *ptrOut = mutils_lend32(*ptrIn); + for (loop = 0, ptrIn = x, ptrOut = buffer; loop < n; loop++, ptrOut++, ptrIn++) + { + *ptrOut = mutils_lend32(*ptrIn); + } } return(buffer); mhash-0.9.9.9-alignment.patch: stdfns.c | 6 ++++++ 1 file changed, 6 insertions(+) --- NEW FILE mhash-0.9.9.9-alignment.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:05:40.139461097 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:06:52.151190927 -0400 @@ -378,6 +378,12 @@ mutils_memmove(void *dest, __const void bigptr1 = (mutils_word32 *) dest; bigptr2 = (mutils_word32 *) src; + /* copy byte-by-byte for small and/or unaligned copies */ + if ((n < 16) || ((mutils_word32)dest & 0x3) || ((mutils_word32)src & 0x3)) + { + return mutils_memcpy8(dest, src, n); + } + words = n >> 2; remainder = n - (words << 2); mhash-0.9.9.9-autotools-namespace-stomping.patch: configure.in | 1 + include/mutils/config.h.in | 22 ++++++++++++++++++++++ include/mutils/mhash_config.h.in | 21 --------------------- 3 files changed, 23 insertions(+), 21 deletions(-) --- NEW FILE mhash-0.9.9.9-autotools-namespace-stomping.patch --- diff -up mhash-0.9.9.9/configure.in.fix-autotool-stomping mhash-0.9.9.9/configure.in --- mhash-0.9.9.9/configure.in.fix-autotool-stomping 2007-04-04 22:22:28.000000000 -0400 +++ mhash-0.9.9.9/configure.in 2009-07-02 17:02:39.099044520 -0400 @@ -6,6 +6,7 @@ AC_CONFIG_SRCDIR([lib/mhash.c]) AM_INIT_AUTOMAKE AC_DEFINE([MHASH_VERSION], PROGRAM_VERSION, "MHash Version") +AC_CONFIG_HEADER([include/mutils/config.h]) AC_CONFIG_HEADER([include/mutils/mhash_config.h]) diff -up /dev/null mhash-0.9.9.9/include/mutils/config.h.in --- /dev/null 2009-07-01 18:40:45.228272777 -0400 +++ mhash-0.9.9.9/include/mutils/config.h.in 2009-07-02 17:02:39.100044508 -0400 @@ -0,0 +1,22 @@ +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Version number of package */ +#undef VERSION + + diff -up mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping mhash-0.9.9.9/include/mutils/mhash_config.h.in --- mhash-0.9.9.9/include/mutils/mhash_config.h.in.fix-autotool-stomping 2008-12-07 18:33:50.000000000 -0500 +++ mhash-0.9.9.9/include/mutils/mhash_config.h.in 2009-07-02 17:04:30.453049610 -0400 @@ -181,24 +181,6 @@ /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - /* Define to 1 if the C compiler supports function prototypes. */ #undef PROTOTYPES @@ -208,9 +190,6 @@ /* dmalloc */ #undef USE_DMALLOC -/* Version number of package */ -#undef VERSION - /* Define if using the dmalloc debugging malloc package */ #undef WITH_DMALLOC mhash-0.9.9.9-fix-mem-leak.patch: mhash.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-mem-leak.patch --- diff -up mhash-0.9.9.9/lib/mhash.c.BAD mhash-0.9.9.9/lib/mhash.c --- mhash-0.9.9.9/lib/mhash.c.BAD 2009-07-02 16:57:43.872049877 -0400 +++ mhash-0.9.9.9/lib/mhash.c 2009-07-02 16:58:03.909029777 -0400 @@ -719,6 +719,8 @@ WIN32DLL_DEFINE MHASH mhash_restore_stat mutils_memcpy( &ret->state_size, &mem[pos], sizeof(ret->state_size)); pos += sizeof( ret->state_size); + if (ret->state) + mutils_free(ret->state); ret->state = mutils_malloc(ret->state_size); if (ret->state==NULL) goto freeall; mhash-0.9.9.9-fix-snefru-segfault.patch: snefru.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-snefru-segfault.patch --- diff -up mhash-0.9.9.9/lib/snefru.c.BAD mhash-0.9.9.9/lib/snefru.c --- mhash-0.9.9.9/lib/snefru.c.BAD 2009-07-02 16:54:58.973279449 -0400 +++ mhash-0.9.9.9/lib/snefru.c 2009-07-02 16:55:04.609279072 -0400 @@ -859,6 +859,8 @@ static void snefru_digest(__const struct { mutils_word32 i; + if(!digest) return; + for (i = 0; i < len; i++, digest += 4) { *(mutils_word32 *)digest = mutils_bend2sys32(ctx->hash[i]); mhash-0.9.9.9-fix-whirlpool-segfault.patch: whirlpool.c | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE mhash-0.9.9.9-fix-whirlpool-segfault.patch --- diff -up mhash-0.9.9.9/lib/whirlpool.c.BAD mhash-0.9.9.9/lib/whirlpool.c --- mhash-0.9.9.9/lib/whirlpool.c.BAD 2009-07-02 16:59:50.885279180 -0400 +++ mhash-0.9.9.9/lib/whirlpool.c 2009-07-02 17:00:12.189279257 -0400 @@ -970,6 +970,8 @@ void whirlpool_digest(__const struct whi mutils_word8 * digest) { mutils_word32 i; + + if(!digest) return; /* * return the completed message digest: */ mhash-0.9.9.9-force64bit-tiger.patch: tiger.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-force64bit-tiger.patch --- diff -up mhash-0.9.9.9/lib/tiger.c.BAD mhash-0.9.9.9/lib/tiger.c --- mhash-0.9.9.9/lib/tiger.c.BAD 2009-07-02 16:42:47.683029940 -0400 +++ mhash-0.9.9.9/lib/tiger.c 2009-07-02 16:43:46.085049317 -0400 @@ -252,7 +252,9 @@ void tiger_update(struct tiger_ctx *ctx, void tiger_final(struct tiger_ctx *ctx) { register mutils_word64 i, j; - mutils_word8 temp[TIGER_DATASIZE]; + /* Force 64-bit alignment */ + mutils_word64 temp_64bit[TIGER_DATASIZE/8]; + mutils_word8 *temp = temp_64bit; i = ctx->index; #if defined(WORDS_BIGENDIAN) mhash-0.9.9.9-keygen_test_fix.patch: keygen_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-keygen_test_fix.patch --- diff -up mhash-0.9.9.9/src/keygen_test.c.BAD mhash-0.9.9.9/src/keygen_test.c --- mhash-0.9.9.9/src/keygen_test.c.BAD 2009-07-22 18:01:59.636042665 -0400 +++ mhash-0.9.9.9/src/keygen_test.c 2009-07-22 18:04:53.608292727 -0400 @@ -121,7 +121,7 @@ int main() mhash_keygen_ext(KEYGEN_S2K_SALTED, data, key, keysize, password, passlen); - mutils_memset(tmp, 0, keysize * 2); + // mutils_memset(tmp, 0, keysize * 2); tmp = mutils_asciify(key, keysize); mhash-0.9.9.9-maxint.patch: stdfns.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) --- NEW FILE mhash-0.9.9.9-maxint.patch --- diff -up mhash-0.9.9.9/lib/stdfns.c.BAD mhash-0.9.9.9/lib/stdfns.c --- mhash-0.9.9.9/lib/stdfns.c.BAD 2009-07-21 12:01:21.596191078 -0400 +++ mhash-0.9.9.9/lib/stdfns.c 2009-07-21 12:02:37.419191301 -0400 @@ -24,6 +24,7 @@ */ #include "libdefs.h" +#include /** * Some of these are wrappers. The idea is to eventually produce an extremely @@ -408,11 +409,11 @@ mutils_memcmp(__const void *s1, const vo { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (s2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(memcmp(s1, s2, n)); @@ -539,11 +540,11 @@ mutils_strcmp(__const mutils_word8 *src1 { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strcmp((char *) src1, (char *) src2)); } @@ -562,11 +563,11 @@ mutils_strncmp(__const mutils_word8 *src { return(0); } - return(-MAXINT); + return(-INT_MAX); } if (src2 == NULL) { - return(MAXINT); + return(INT_MAX); } return(strncmp((char *) src1, (char *) src2, n)); } Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/F-10/mhash.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- mhash.spec 16 Feb 2009 16:25:21 -0000 1.26 +++ mhash.spec 22 Jul 2009 22:25:15 -0000 1.27 @@ -3,14 +3,36 @@ Summary: Thread-safe hash algorithms library Name: mhash -Version: 0.9.9 -Release: 6 +Version: 0.9.9.9 +Release: 1%{?dist} URL: http://mhash.sourceforge.net/ License: LGPLv2+ Group: System Environment/Libraries Source: http://download.sourceforge.net/mhash/mhash-%{version}.tar.bz2 -Patch1: mhash-0.9.9-multiarch.patch -Patch2: mutils-align.patch +Patch2: mhash-0.9.9.9-align.patch +Patch3: mhash-0.9.9.9-force64bit-tiger.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch +Patch4: mhash-0.9.9.9-fix-snefru-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch +Patch5: mhash-0.9.9.9-fix-mem-leak.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch +Patch6: mhash-0.9.9.9-fix-whirlpool-segfault.patch +# Taken from Gentoo: +# http://mirror.its.uidaho.edu/pub/gentoo-portage/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch +Patch7: mhash-0.9.9.9-autotools-namespace-stomping.patch +# Taken from openpkg: +# http://www.mail-archive.com/openpkg-cvs at openpkg.org/msg26353.html +Patch8: mhash-0.9.9.9-maxint.patch +# Taken from Jitesh Shah +# http://ftp.uk.linux.org/pub/armlinux/fedora/diffs-f11/mhash/0001-Alignment-fixes.patch +Patch9: mhash-0.9.9.9-alignment.patch +# Fix keygen_test +Patch10: mhash-0.9.9.9-keygen_test_fix.patch + +BuildRequires: autoconf, automake Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) Provides: libmhash = %{version}-%{release} @@ -41,9 +63,16 @@ develop programs that use the mhash libr %prep %setup -q -%patch1 -p1 -b .multiarch %patch2 -p1 -b .alignment - +%patch3 -p1 -b .force64bit-tiger +%patch4 -p1 -b .fix-snefru-segfault +%patch5 -p1 -b .fix-mem-leak +%patch6 -p1 -b .fix-whirlpool-segfault +%patch7 -p1 -b .fix-autotool-stomping +%patch8 -p1 -b .maxint +%patch9 -p1 -b .alignment2 +%patch10 -p1 -b .fix +autoconf %build %configure --enable-shared %{?_with_static: --enable-static} %{!?_with_static: --disable-static} @@ -95,6 +124,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-1 +- update to 0.9.9.9 +- apply all the fixes that I could find + +* Wed Feb 25 2009 Fedora Release Engineering - 0.9.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Feb 16 2009 Dennis Gilmore - 0.9.9-6 - fix memory alignment issues Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mhash/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 6 Apr 2007 13:07:46 -0000 1.7 +++ sources 22 Jul 2009 22:25:15 -0000 1.8 @@ -1 +1 @@ -d113a853e0ac21c49c5a1acea0daaade mhash-0.9.9.tar.bz2 +f91c74f9ccab2b574a98be5bc31eb280 mhash-0.9.9.9.tar.bz2 From spot at fedoraproject.org Wed Jul 22 22:25:46 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:25:46 +0000 (UTC) Subject: rpms/mhash/devel mhash-0.9.9.9-keygen_test_fix.patch, NONE, 1.1 mhash.spec, 1.28, 1.29 Message-ID: <20090722222546.D8B3211C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mhash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28697/devel Modified Files: mhash.spec Added Files: mhash-0.9.9.9-keygen_test_fix.patch Log Message: update to 0.9.9.9, fix lots of bugs mhash-0.9.9.9-keygen_test_fix.patch: keygen_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE mhash-0.9.9.9-keygen_test_fix.patch --- diff -up mhash-0.9.9.9/src/keygen_test.c.BAD mhash-0.9.9.9/src/keygen_test.c --- mhash-0.9.9.9/src/keygen_test.c.BAD 2009-07-22 18:01:59.636042665 -0400 +++ mhash-0.9.9.9/src/keygen_test.c 2009-07-22 18:04:53.608292727 -0400 @@ -121,7 +121,7 @@ int main() mhash_keygen_ext(KEYGEN_S2K_SALTED, data, key, keysize, password, passlen); - mutils_memset(tmp, 0, keysize * 2); + // mutils_memset(tmp, 0, keysize * 2); tmp = mutils_asciify(key, keysize); Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/mhash.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- mhash.spec 22 Jul 2009 17:23:43 -0000 1.28 +++ mhash.spec 22 Jul 2009 22:25:16 -0000 1.29 @@ -29,8 +29,10 @@ Patch8: mhash-0.9.9.9-maxint.patch # Taken from Jitesh Shah # http://ftp.uk.linux.org/pub/armlinux/fedora/diffs-f11/mhash/0001-Alignment-fixes.patch Patch9: mhash-0.9.9.9-alignment.patch +# Fix keygen_test +Patch10: mhash-0.9.9.9-keygen_test_fix.patch -BuildRequires: autoconf +BuildRequires: autoconf, automake Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n) Provides: libmhash = %{version}-%{release} @@ -69,7 +71,8 @@ develop programs that use the mhash libr %patch7 -p1 -b .fix-autotool-stomping %patch8 -p1 -b .maxint %patch9 -p1 -b .alignment2 -autoreconf -i +%patch10 -p1 -b .fix +autoconf %build %configure --enable-shared %{?_with_static: --enable-static} %{!?_with_static: --disable-static} From jussilehtola at fedoraproject.org Wed Jul 22 22:31:06 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Wed, 22 Jul 2009 22:31:06 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui.spec,1.5,1.6 Message-ID: <20090722223106.3917511C0099@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31036 Modified Files: xine-ui.spec Log Message: Fix build in rawhide. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xine-ui.spec 19 Jul 2009 23:27:47 -0000 1.5 +++ xine-ui.spec 22 Jul 2009 22:30:35 -0000 1.6 @@ -3,7 +3,7 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ @@ -59,6 +59,7 @@ BuildRequires: libcaca-devel BuildRequires: libpng-devel BuildRequires: libtermcap-devel BuildRequires: libXft-devel +BuildRequires: libXi-devel BuildRequires: libXinerama-devel BuildRequires: libXt-devel BuildRequires: libXtst-devel @@ -223,6 +224,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %exclude %{_datadir}/xine/skins/xinetic/ %changelog +* Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 +- Fix build in rawhide. + * Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 - Added -skins subpackage. From spot at fedoraproject.org Wed Jul 22 22:36:09 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:36:09 +0000 (UTC) Subject: rpms/mhash/devel mhash.spec,1.29,1.30 Message-ID: <20090722223609.1BF5C11C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mhash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv389 Modified Files: mhash.spec Log Message: bump rawhide Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/mhash.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mhash.spec 22 Jul 2009 22:25:16 -0000 1.29 +++ mhash.spec 22 Jul 2009 22:35:38 -0000 1.30 @@ -4,7 +4,7 @@ Summary: Thread-safe hash algorithms library Name: mhash Version: 0.9.9.9 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://mhash.sourceforge.net/ License: LGPLv2+ Group: System Environment/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-2 +- bump rawhide, fixed the last bug + * Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-1 - update to 0.9.9.9 - apply all the fixes that I could find From spot at fedoraproject.org Wed Jul 22 22:40:57 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:40:57 +0000 (UTC) Subject: rpms/ser2net/F-10 ser2net.spec,1.5,1.6 sources,1.4,1.5 Message-ID: <20090722224057.50CBE11C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ser2net/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2187/F-10 Modified Files: ser2net.spec sources Log Message: update to 2.6 Index: ser2net.spec =================================================================== RCS file: /cvs/extras/rpms/ser2net/F-10/ser2net.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ser2net.spec 25 Aug 2008 20:02:00 -0000 1.5 +++ ser2net.spec 22 Jul 2009 22:40:26 -0000 1.6 @@ -1,6 +1,6 @@ Name: ser2net Summary: Proxy that allows tcp connections to serial ports -Version: 2.5 +Version: 2.6 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -62,6 +62,9 @@ fi %{_mandir}/man8/ser2net* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 2.6-1 +- update to 2.6 + * Mon Aug 25 2008 Tom "spot" Callaway - 2.5-1 - update to 2.5 - fix initscript to not be on by default Index: sources =================================================================== RCS file: /cvs/extras/rpms/ser2net/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Aug 2008 20:02:00 -0000 1.4 +++ sources 22 Jul 2009 22:40:27 -0000 1.5 @@ -1 +1 @@ -c11f36ff2e4c523be7b282f2f6d03638 ser2net-2.5.tar.gz +f53e067380ab31897923db665d044064 ser2net-2.6.tar.gz From spot at fedoraproject.org Wed Jul 22 22:40:57 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:40:57 +0000 (UTC) Subject: rpms/ser2net/F-11 ser2net.spec,1.6,1.7 sources,1.4,1.5 Message-ID: <20090722224057.7C44611C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ser2net/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2187/F-11 Modified Files: ser2net.spec sources Log Message: update to 2.6 Index: ser2net.spec =================================================================== RCS file: /cvs/extras/rpms/ser2net/F-11/ser2net.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ser2net.spec 26 Feb 2009 00:32:28 -0000 1.6 +++ ser2net.spec 22 Jul 2009 22:40:27 -0000 1.7 @@ -1,7 +1,7 @@ Name: ser2net Summary: Proxy that allows tcp connections to serial ports -Version: 2.5 -Release: 2%{?dist} +Version: 2.6 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source0: http://download.sourceforge.net/ser2net/%{name}-%{version}.tar.gz @@ -62,6 +62,9 @@ fi %{_mandir}/man8/ser2net* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 2.6-1 +- update to 2.6 + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/ser2net/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Aug 2008 20:02:00 -0000 1.4 +++ sources 22 Jul 2009 22:40:27 -0000 1.5 @@ -1 +1 @@ -c11f36ff2e4c523be7b282f2f6d03638 ser2net-2.5.tar.gz +f53e067380ab31897923db665d044064 ser2net-2.6.tar.gz From spot at fedoraproject.org Wed Jul 22 22:40:57 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:40:57 +0000 (UTC) Subject: rpms/ser2net/devel .cvsignore, 1.4, 1.5 ser2net.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090722224057.A9C8511C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ser2net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2187/devel Modified Files: .cvsignore ser2net.spec sources Log Message: update to 2.6 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ser2net/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 25 Aug 2008 20:02:00 -0000 1.4 +++ .cvsignore 22 Jul 2009 22:40:27 -0000 1.5 @@ -1 +1 @@ -ser2net-2.5.tar.gz +ser2net-2.6.tar.gz Index: ser2net.spec =================================================================== RCS file: /cvs/extras/rpms/ser2net/devel/ser2net.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ser2net.spec 26 Feb 2009 00:32:28 -0000 1.6 +++ ser2net.spec 22 Jul 2009 22:40:27 -0000 1.7 @@ -1,7 +1,7 @@ Name: ser2net Summary: Proxy that allows tcp connections to serial ports -Version: 2.5 -Release: 2%{?dist} +Version: 2.6 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System Source0: http://download.sourceforge.net/ser2net/%{name}-%{version}.tar.gz @@ -62,6 +62,9 @@ fi %{_mandir}/man8/ser2net* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 2.6-1 +- update to 2.6 + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/ser2net/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Aug 2008 20:02:00 -0000 1.4 +++ sources 22 Jul 2009 22:40:27 -0000 1.5 @@ -1 +1 @@ -c11f36ff2e4c523be7b282f2f6d03638 ser2net-2.5.tar.gz +f53e067380ab31897923db665d044064 ser2net-2.6.tar.gz From spot at fedoraproject.org Wed Jul 22 22:54:50 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:54:50 +0000 (UTC) Subject: rpms/c-ares/devel .cvsignore, 1.8, 1.9 c-ares.spec, 1.14, 1.15 sources, 1.8, 1.9 Message-ID: <20090722225450.B4EA311C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7457/devel Modified Files: .cvsignore c-ares.spec sources Log Message: update to 1.6.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 12 Sep 2008 15:35:08 -0000 1.8 +++ .cvsignore 22 Jul 2009 22:54:50 -0000 1.9 @@ -1 +1 @@ -c-ares-1.5.3.tar.gz +c-ares-1.6.0.tar.gz Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/devel/c-ares.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- c-ares.spec 24 Feb 2009 06:18:23 -0000 1.14 +++ c-ares.spec 22 Jul 2009 22:54:50 -0000 1.15 @@ -1,7 +1,7 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares -Version: 1.5.3 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://daniel.haxx.se/projects/c-ares/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 +- update to 1.6.0 + * Mon Feb 23 2009 Fedora Release Engineering - 1.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 12 Sep 2008 15:35:08 -0000 1.8 +++ sources 22 Jul 2009 22:54:50 -0000 1.9 @@ -1 +1 @@ -ec202543a8cb86647f52e1ed4b5c0b37 c-ares-1.5.3.tar.gz +4503b0db3dd79d3c1f58d87722dbab46 c-ares-1.6.0.tar.gz From spot at fedoraproject.org Wed Jul 22 22:55:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:55:20 +0000 (UTC) Subject: rpms/c-ares/F-11 c-ares.spec,1.14,1.15 sources,1.8,1.9 Message-ID: <20090722225520.8EC2D11C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7457/F-11 Modified Files: c-ares.spec sources Log Message: update to 1.6.0 Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-11/c-ares.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- c-ares.spec 24 Feb 2009 06:18:23 -0000 1.14 +++ c-ares.spec 22 Jul 2009 22:54:50 -0000 1.15 @@ -1,7 +1,7 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares -Version: 1.5.3 -Release: 2%{?dist} +Version: 1.6.0 +Release: 1%{?dist} License: MIT Group: System Environment/Libraries URL: http://daniel.haxx.se/projects/c-ares/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 +- update to 1.6.0 + * Mon Feb 23 2009 Fedora Release Engineering - 1.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 12 Sep 2008 15:35:08 -0000 1.8 +++ sources 22 Jul 2009 22:54:50 -0000 1.9 @@ -1 +1 @@ -ec202543a8cb86647f52e1ed4b5c0b37 c-ares-1.5.3.tar.gz +4503b0db3dd79d3c1f58d87722dbab46 c-ares-1.6.0.tar.gz From spot at fedoraproject.org Wed Jul 22 22:55:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Wed, 22 Jul 2009 22:55:20 +0000 (UTC) Subject: rpms/c-ares/F-10 c-ares.spec,1.13,1.14 sources,1.8,1.9 Message-ID: <20090722225520.1E6CA11C0099@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7457/F-10 Modified Files: c-ares.spec sources Log Message: update to 1.6.0 Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-10/c-ares.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- c-ares.spec 12 Sep 2008 15:35:08 -0000 1.13 +++ c-ares.spec 22 Jul 2009 22:54:49 -0000 1.14 @@ -1,6 +1,6 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares -Version: 1.5.3 +Version: 1.6.0 Release: 1%{?dist} License: MIT Group: System Environment/Libraries @@ -59,6 +59,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 +- update to 1.6.0 + +* Mon Feb 23 2009 Fedora Release Engineering - 1.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Sep 12 2008 Tom "spot" Callaway - 1.5.3-1 - update to 1.5.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 12 Sep 2008 15:35:08 -0000 1.8 +++ sources 22 Jul 2009 22:54:49 -0000 1.9 @@ -1 +1 @@ -ec202543a8cb86647f52e1ed4b5c0b37 c-ares-1.5.3.tar.gz +4503b0db3dd79d3c1f58d87722dbab46 c-ares-1.6.0.tar.gz From thm at fedoraproject.org Wed Jul 22 22:55:28 2009 From: thm at fedoraproject.org (Thomas Moschny) Date: Wed, 22 Jul 2009 22:55:28 +0000 (UTC) Subject: rpms/python-py/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 python-py.spec, 1.2, 1.3 sources, 1.2, 1.3 py-0.9.2-fix-test-cache.patch, 1.1, NONE py-0.9.2-svn15.patch, 1.1, NONE Message-ID: <20090722225528.25C8B11C0099@cvs1.fedora.phx.redhat.com> Author: thm Update of /cvs/pkgs/rpms/python-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7568/devel Modified Files: .cvsignore import.log python-py.spec sources Removed Files: py-0.9.2-fix-test-cache.patch py-0.9.2-svn15.patch Log Message: Update to 1.0.0b8. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-py/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Jan 2009 11:22:40 -0000 1.2 +++ .cvsignore 22 Jul 2009 22:54:57 -0000 1.3 @@ -1 +1 @@ -py-0.9.2.tar.gz +py-1.0.0b8.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/python-py/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Jan 2009 11:22:40 -0000 1.1 +++ import.log 22 Jul 2009 22:54:57 -0000 1.2 @@ -1 +1,2 @@ python-py-0_9_2-6_fc10:HEAD:python-py-0.9.2-6.fc10.src.rpm:1232104910 +python-py-1_0_0-0_b8_fc11:HEAD:python-py-1.0.0-0.b8.fc11.src.rpm:1248303215 Index: python-py.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-py/devel/python-py.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-py.spec 26 Feb 2009 23:05:14 -0000 1.2 +++ python-py.spec 22 Jul 2009 22:54:57 -0000 1.3 @@ -1,8 +1,10 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +%define prerelease b8 Name: python-py -Version: 0.9.2 -Release: 7%{?dist} +Version: 1.0.0 +Release: 0%{?prerelease:.%{prerelease}}%{?dist} Summary: Innovative python library containing py.test, greenlets and other niceties Group: Development/Languages License: MIT and LGPLv2+ and Public Domain and BSD and Python @@ -18,25 +20,20 @@ License: MIT and LGPLv2+ and Publ # Note that all but the doctest compat files are removed # in the prep stage. URL: http://codespeak.net/py/dist/ -Source: http://pypi.python.org/packages/source/p/py/py-%{version}.tar.gz -# r58576 from trunk -Patch0: py-0.9.2-fix-test-cache.patch -# r60277 from trunk -Patch1: py-0.9.2-svn15.patch +Source: http://pypi.python.org/packages/source/p/py/py-%{version}%{?prerelease}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools-devel -# needed by the testsuite +# needed by the testsuite: BuildRequires: subversion BuildRequires: python-docutils +BuildRequires: python-pygments +BuildRequires: pylint +BuildRequires: pexpect %define doctarget %{buildroot}%{_docdir}/%{name}-%{version} -%ifarch ppc ppc64 -# until the greenlet issue can be fixed -%define debug_package %{nil} -%endif - %description The py lib aims at supporting a decent development process addressing @@ -44,9 +41,7 @@ deployment, versioning, testing and docu %prep -%setup -q -n py-%{version} -%patch0 -p1 -b .test-cache -%patch1 -p0 -b .svn +%setup -q -n py-%{version}%{?prerelease} # remove the compatibility modules, and use system modules instead for module in doctest optparse textwrap subprocess ; do @@ -65,62 +60,34 @@ rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} # remove shebangs and fix permissions -find %{buildroot}%{python_sitearch} \( -name '*.py' -o -name 'py.*' \) \ +find %{buildroot}%{python_sitelib} \( -name '*.py' -o -name 'py.*' \) \ -exec sed -i '1{/^#!/d}' {} \; \ -exec chmod u=rw,go=r {} \; -# move and cleanup docs +# move some txt files to the doc directory mkdir -p %{doctarget} -mv %{buildroot}%{python_sitearch}/py/LICENSE %{doctarget} -mv %{buildroot}%{python_sitearch}/py/doc/* %{doctarget} -rm %{doctarget}/*.py* -rmdir %{buildroot}%{python_sitearch}/py/doc -mv %{buildroot}%{python_sitearch}/py/apigen/todo.txt %{doctarget}/todo_apigen.txt -mv %{buildroot}%{python_sitearch}/py/apigen/todo-apigen.txt %{doctarget}/todo-apigen_apigen.txt -mv %{buildroot}%{python_sitearch}/py/compat/LICENSE %{doctarget}/LICENSE_compat -mv %{buildroot}%{python_sitearch}/py/execnet/NOTES %{doctarget}/NOTES_execnet -mv %{buildroot}%{python_sitearch}/py/path/gateway/TODO.txt %{doctarget}/TODO_path_gateway.txt -mv %{buildroot}%{python_sitearch}/py/path/svn/quoting.txt %{doctarget}/quoting_path_svn.txt -mv %{buildroot}%{python_sitearch}/py/c-extension/greenlet/README.txt %{doctarget}/RADME_greenlet.txt - -# remove (most) files only used by the testsuite -find %{buildroot}%{python_sitearch} -type d -name testing -prune -exec rm -r {} \; -find %{buildroot}%{python_sitearch} -name 'conftest.py*' -exec rm {} \; -rm -r %{buildroot}%{python_sitearch}/py/io/test +mv %{buildroot}%{python_sitelib}/py/LICENSE %{doctarget} +mv %{buildroot}%{python_sitelib}/py/compat/LICENSE %{doctarget}/compat_LICENSE +mv %{buildroot}%{python_sitelib}/py/execnet/NOTES %{doctarget}/execnet_NOTES +mv %{buildroot}%{python_sitelib}/py/execnet/improve-remote-tracebacks.txt \ + %{doctarget}/execnet_improve-remote-tracebacks.txt +mv %{buildroot}%{python_sitelib}/py/path/gateway/TODO.txt %{doctarget}/path_gateway_TODO.txt +mv %{buildroot}%{python_sitelib}/py/path/svn/quoting.txt %{doctarget}/svn_quoting_path.txt +cp -pr doc example contrib %{doctarget} # remove this and that -rm %{buildroot}%{python_sitearch}/py/env.cmd -rm -r %{buildroot}%{python_sitearch}/py/bin -rm %{buildroot}%{python_sitearch}/py/c-extension/greenlet/*.h -rm %{buildroot}%{python_sitearch}/py/c-extension/greenlet/*.c -rm %{buildroot}%{python_sitearch}/py/c-extension/greenlet/setup.* -rm %{buildroot}%{python_sitearch}/py/c-extension/greenlet/test_* - -%ifarch ppc ppc64 -cp -p py/c-extension/greenlet/dummy_greenlet.py \ - %{buildroot}%{python_sitearch}/py/c-extension/greenlet/greenlet.py -rm %{buildroot}%{python_sitearch}/py/c-extension/greenlet/greenlet.so -cat << \EOF > %{doctarget}/README.greenlet.fedora -The native py.magic.greenlet code has been replaced by -dummy_greenlet.py on ppc and ppc64 for this package because it -reproducibly segfaults. -%endif - +find %{buildroot}%{python_sitelib} -name '*.cmd' -exec rm {} \; -%check +# remove (most) files only used by the testsuite +#find %{buildroot}%{python_sitelib} -type d -name testing -prune -exec rm -r {} \; +#find %{buildroot}%{python_sitelib} -name 'conftest.py*' -exec rm {} \; -# on ppc, use dummy greenlets also for the tests -%ifarch ppc ppc64 -cp -p py/c-extension/greenlet/dummy_greenlet.py \ - py/c-extension/greenlet/greenlet.py -rm py/c-extension/greenlet/*.{c,h} -%endif - -# see pylib issue67 -rm py/doc/apigen.txt -sed -i '/apigen/d' py/doc/index.txt -PYTHONPATH=$(pwd)/py %{__python} py/bin/py.test py +%check +# some tests need to be skipped currently +PYTHONPATH=$(pwd)/py %{__python} py/bin/py.test \ + '-k-test_make_sdist_and_run_it -TestWCSvnCommandPath.test_not_versioned -TestWCSvnCommandPath.test_versioned' \ + py %clean @@ -130,11 +97,21 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_bindir}/py.* -%{python_sitearch}/* +%{python_sitelib}/* %{_docdir}/%{name}-%{version} %changelog +* Wed Jul 22 2009 Thomas Moschny - 1.0.0-0.b8 +- Update to 1.0.0b8. +- Remove patches applied upstream. +- Greenlets have been removed upstream. So, package is noarch and + - installs to %%{python_sitelib} again + - %%ifarch sections have been removed. +- Don't remove files used by the testsuite for now. +- Add dependency on python-pygments, pylint and pexpect (for the + testsuite). + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-py/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Jan 2009 11:22:40 -0000 1.2 +++ sources 22 Jul 2009 22:54:57 -0000 1.3 @@ -1 +1 @@ -2c996d78867f6ad64dc5aabf1185aaf7 py-0.9.2.tar.gz +96a466614c3002431f735dc34088ce0f py-1.0.0b8.tar.gz --- py-0.9.2-fix-test-cache.patch DELETED --- --- py-0.9.2-svn15.patch DELETED --- From kylev at fedoraproject.org Wed Jul 22 23:53:58 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Wed, 22 Jul 2009 23:53:58 +0000 (UTC) Subject: rpms/python-pylons/devel .cvsignore, 1.3, 1.4 python-pylons.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090722235358.EFE8D11C0099@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-pylons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29718 Modified Files: .cvsignore python-pylons.spec sources Log Message: Update to 0.9.7 final Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 Jan 2009 06:06:11 -0000 1.3 +++ .cvsignore 22 Jul 2009 23:53:27 -0000 1.4 @@ -1 +1 @@ -Pylons-0.9.7rc4.tar.gz +Pylons-0.9.7.tar.gz Index: python-pylons.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/devel/python-pylons.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-pylons.spec 26 Feb 2009 23:11:36 -0000 1.4 +++ python-pylons.spec 22 Jul 2009 23:53:27 -0000 1.5 @@ -1,16 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define _rc rc4 - Name: python-pylons Version: 0.9.7 -Release: 0.2.%{_rc}%{?dist} +Release: 1%{?dist} Summary: Pylons web framework Group: Development/Languages License: BSD URL: http://www.pylonshq.com/ -Source0: http://pypi.python.org/packages/source/P/Pylons/Pylons-%{version}%{_rc}.tar.gz +Source0: http://pypi.python.org/packages/source/P/Pylons/Pylons-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel @@ -21,23 +19,27 @@ BuildRequires: python-paste python-paste BuildRequires: python-formencode python-simplejson python-decorator BuildRequires: python-nose python-mako python-webob python-weberror BuildRequires: python-tempita python-webtest python-turbocheetah -BuildRequires: python-turbokid +BuildRequires: python-turbokid python-myghty python-genshi python-jinja2 +BuildRequires: python-coverage -Requires: python-routes >= 1.10.1 -Requires: python-webhelpers >= 0.6.3 -Requires: python-beaker >= 1.1.2 +Requires: python-routes >= 1.10.3 +Requires: python-webhelpers >= 0.6.4 +# Some versions of Beaker caused FTBFS bug 511511 +Requires: python-beaker >= 1.3.1-5 Requires: python-paste >= 1.7.2 Requires: python-paste-script >= 1.7.3 -Requires: python-paste-deploy >= 1.3.2 -Requires: python-formencode >= 1.2 -Requires: python-simplejson >= 2.0.4 -Requires: python-decorator >= 2.2.0 +Requires: python-paste-deploy >= 1.3.3 +Requires: python-formencode >= 1.2.1 +Requires: python-simplejson >= 2.0.8 +Requires: python-decorator >= 2.3.2 Requires: python-nose >= 0.10.4 -Requires: python-mako >= 0.2.3 -Requires: python-webob >= 0.9.4 -Requires: python-weberror >= 0.9.1 +Requires: python-mako >= 0.2.4 +Requires: python-webob >= 0.9.6.1 +Requires: python-weberror >= 0.10.1 +Requires: python-webtest >= 1.1 Requires: python-tempita >= 0.2 -Requires: python-webtest >= 1.0.3 +# TurboGears hooks pylons (if present) and barfs w/o myghty (Bug 497244) +Requires: python-myghty >= 1.1 %description @@ -52,9 +54,7 @@ website development in Python easy. Seve %prep -%setup -q -n Pylons-%{version}%{_rc} -# Trash up OSX tar'ed useless resource files. -find . -name '._*' -delete +%setup -q -n Pylons-%{version} %build @@ -64,8 +64,6 @@ find . -name '._*' -delete %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} -# Honestly, what package installs their tests?! -rm -rf %{buildroot}/%{python_sitelib}/tests %check @@ -83,6 +81,10 @@ rm -rf %{buildroot} %changelog +* Wed Jul 22 2009 Kyle VanderBeek - 0.9.7-1 +- Update to 0.9.7 final +- Remove some cleanups that have been fixed upstream + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.7-0.2.rc4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 Jan 2009 06:06:11 -0000 1.3 +++ sources 22 Jul 2009 23:53:27 -0000 1.4 @@ -1 +1 @@ -464e5fa61f7d899899fd767176b9f42a Pylons-0.9.7rc4.tar.gz +f6de97faa730eb0e975f6b2e64a0c574 Pylons-0.9.7.tar.gz From petersen at fedoraproject.org Thu Jul 23 00:29:30 2009 From: petersen at fedoraproject.org (Jens Petersen) Date: Thu, 23 Jul 2009 00:29:30 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.4,1.5 Message-ID: <20090723002930.D0F3211C0099@cvs1.fedora.phx.redhat.com> Author: petersen Update of /cvs/extras/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9647 Modified Files: ghc-editline.spec Log Message: minor cleanup: - drop redundant pkg_libdir - devel requires libedit-devel Index: ghc-editline.spec =================================================================== RCS file: /cvs/extras/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ghc-editline.spec 22 Jul 2009 19:45:47 -0000 1.4 +++ ghc-editline.spec 23 Jul 2009 00:29:00 -0000 1.5 @@ -1,13 +1,12 @@ %global pkg_name editline %global debug_package %{nil} -%global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof -Name: ghc-editline +Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -37,6 +36,7 @@ provides a subset of the functionality o %package devel Summary: Haskell %{pkg_name} library Group: Development/Libraries +Requires: libedit-devel Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} @@ -127,6 +127,10 @@ fi %endif %Changelog +* Thu Jul 23 2009 Jens Petersen - 0.2.1.0-7 +- pkg_libdir is redundant +- devel requires libedit-devel + * Wed Jul 22 2009 Jochen Schmitt 0.2.1.0-6 - Rebuild for new ghc release on rawhide From pkgdb at fedoraproject.org Thu Jul 23 00:36:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 00:36:17 +0000 Subject: [pkgdb] ghc-editline (Fedora, 10) updated by petersen Message-ID: <20090723003617.55C1010F87E@bastion2.fedora.phx.redhat.com> petersen approved watchbugzilla on ghc-editline (Fedora 11) for haskell-sig petersen approved watchcommits on ghc-editline (Fedora 11) for haskell-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From pkgdb at fedoraproject.org Thu Jul 23 00:36:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 00:36:17 +0000 Subject: [pkgdb] ghc-editline (Fedora, 10) updated by petersen Message-ID: <20090723003617.6AE7C10F89D@bastion2.fedora.phx.redhat.com> petersen approved watchbugzilla on ghc-editline (Fedora devel) for haskell-sig petersen approved watchcommits on ghc-editline (Fedora devel) for haskell-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From pkgdb at fedoraproject.org Thu Jul 23 00:36:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 00:36:17 +0000 Subject: [pkgdb] ghc-editline (Fedora, 10) updated by petersen Message-ID: <20090723003617.7791210F8AC@bastion2.fedora.phx.redhat.com> petersen approved watchbugzilla on ghc-editline (Fedora 10) for haskell-sig petersen approved watchcommits on ghc-editline (Fedora 10) for haskell-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ghc-editline From nb at fedoraproject.org Thu Jul 23 01:06:06 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:06:06 +0000 (UTC) Subject: rpms/znc/devel .cvsignore,1.2,1.3 sources,1.2,1.3 znc.spec,1.1,1.2 Message-ID: <20090723010606.E443411C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25458 Modified Files: .cvsignore sources znc.spec Log Message: Updating to 0.072 - fixes security issue Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 03:00:00 -0000 1.2 +++ .cvsignore 23 Jul 2009 01:06:06 -0000 1.3 @@ -1 +1 @@ -znc-0.070.tar.gz +znc-0.072.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 Jul 2009 03:00:00 -0000 1.2 +++ sources 23 Jul 2009 01:06:06 -0000 1.3 @@ -1 +1 @@ -18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz +28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- znc.spec 13 Jul 2009 03:00:00 -0000 1.1 +++ znc.spec 23 Jul 2009 01:06:06 -0000 1.2 @@ -1,17 +1,21 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.070 -Release: 7%{?dist} +Version: 0.072 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +# the c-ares part of ZNC does not work on EPEL +# because the EPEL c-ares-devel does not install +# the .pc file for it +%{?fedora:BuildRequires: c-ares-devel} + # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -25,6 +29,7 @@ DCC bouncing, Perl and C++ module suppor Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig +BuildRequires: pkgconfig %description devel All includes and program files you need to compile your own znc @@ -32,14 +37,14 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 +%{!?fedora:--disable-c-ares \} + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -65,6 +70,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Wed Jul 22 2009 Nick Bebout - 0.072-1 +- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 From nb at fedoraproject.org Thu Jul 23 01:07:59 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:07:59 +0000 (UTC) Subject: rpms/znc/devel znc-0.070-pkgconfigdir.diff,1.1,NONE Message-ID: <20090723010759.9779811C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26996 Removed Files: znc-0.070-pkgconfigdir.diff Log Message: Removing old patch --- znc-0.070-pkgconfigdir.diff DELETED --- From nb at fedoraproject.org Thu Jul 23 01:16:11 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:16:11 +0000 (UTC) Subject: rpms/znc/F-11 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 znc.spec, 1.1, 1.2 znc-0.070-pkgconfigdir.diff, 1.1, NONE Message-ID: <20090723011611.76F0A11C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29709 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.070-pkgconfigdir.diff Log Message: Updating to 0.072 - fixes security issue Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 03:11:33 -0000 1.2 +++ .cvsignore 23 Jul 2009 01:15:41 -0000 1.3 @@ -1 +1 @@ -znc-0.070.tar.gz +znc-0.072.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 Jul 2009 03:11:33 -0000 1.2 +++ sources 23 Jul 2009 01:15:41 -0000 1.3 @@ -1 +1 @@ -18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz +28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/znc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- znc.spec 13 Jul 2009 03:11:33 -0000 1.1 +++ znc.spec 23 Jul 2009 01:15:41 -0000 1.2 @@ -1,17 +1,21 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.070 -Release: 7%{?dist} +Version: 0.072 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +# the c-ares part of ZNC does not work on EPEL +# because the EPEL c-ares-devel does not install +# the .pc file for it +%{?fedora:BuildRequires: c-ares-devel} + # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -25,6 +29,7 @@ DCC bouncing, Perl and C++ module suppor Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig +BuildRequires: pkgconfig %description devel All includes and program files you need to compile your own znc @@ -32,14 +37,14 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 +%{!?fedora:--disable-c-ares \} + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -65,6 +70,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Wed Jul 22 2009 Nick Bebout - 0.072-1 +- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 --- znc-0.070-pkgconfigdir.diff DELETED --- From nb at fedoraproject.org Thu Jul 23 01:21:34 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:21:34 +0000 (UTC) Subject: rpms/znc/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 znc.spec, 1.1, 1.2 znc-0.070-pkgconfigdir.diff, 1.1, NONE Message-ID: <20090723012134.D1BE111C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30738 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.070-pkgconfigdir.diff Log Message: Updating to 0.072 - fixes security bug 513152 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 03:09:03 -0000 1.2 +++ .cvsignore 23 Jul 2009 01:21:34 -0000 1.3 @@ -1 +1 @@ -znc-0.070.tar.gz +znc-0.072.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 Jul 2009 03:09:03 -0000 1.2 +++ sources 23 Jul 2009 01:21:34 -0000 1.3 @@ -1 +1 @@ -18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz +28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/znc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- znc.spec 13 Jul 2009 03:09:03 -0000 1.1 +++ znc.spec 23 Jul 2009 01:21:34 -0000 1.2 @@ -1,17 +1,21 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.070 -Release: 7%{?dist} +Version: 0.072 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +# the c-ares part of ZNC does not work on EPEL +# because the EPEL c-ares-devel does not install +# the .pc file for it +%{?fedora:BuildRequires: c-ares-devel} + # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -25,6 +29,7 @@ DCC bouncing, Perl and C++ module suppor Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig +BuildRequires: pkgconfig %description devel All includes and program files you need to compile your own znc @@ -32,14 +37,14 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 +%{!?fedora:--disable-c-ares \} + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -65,6 +70,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Wed Jul 22 2009 Nick Bebout - 0.072-1 +- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 --- znc-0.070-pkgconfigdir.diff DELETED --- From nb at fedoraproject.org Thu Jul 23 01:23:12 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:23:12 +0000 (UTC) Subject: rpms/znc/EL-5 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 znc.spec, 1.1, 1.2 znc-0.070-pkgconfigdir.diff, 1.1, NONE Message-ID: <20090723012312.602EA11C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32476 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.070-pkgconfigdir.diff Log Message: Updating to version 0.072 - fixes security bug 513152 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 03:18:45 -0000 1.2 +++ .cvsignore 23 Jul 2009 01:22:42 -0000 1.3 @@ -1 +1 @@ -znc-0.070.tar.gz +znc-0.072.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 Jul 2009 03:18:45 -0000 1.2 +++ sources 23 Jul 2009 01:22:42 -0000 1.3 @@ -1 +1 @@ -18bb813cb350c6db014a0d82ecdf85fe znc-0.070.tar.gz +28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/znc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- znc.spec 13 Jul 2009 03:18:45 -0000 1.1 +++ znc.spec 23 Jul 2009 01:22:42 -0000 1.2 @@ -1,17 +1,21 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.070 -Release: 7%{?dist} +Version: 0.072 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-pkgconfigdir.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +# the c-ares part of ZNC does not work on EPEL +# because the EPEL c-ares-devel does not install +# the .pc file for it +%{?fedora:BuildRequires: c-ares-devel} + # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -25,6 +29,7 @@ DCC bouncing, Perl and C++ module suppor Summary: Development files needed to compile ZNC modules Group: Development/Libraries Requires: %{name} = %{version}-%{release} pkgconfig +BuildRequires: pkgconfig %description devel All includes and program files you need to compile your own znc @@ -32,14 +37,14 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 +%{!?fedora:--disable-c-ares \} + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -65,6 +70,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Wed Jul 22 2009 Nick Bebout - 0.072-1 +- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 --- znc-0.070-pkgconfigdir.diff DELETED --- From mclasen at fedoraproject.org Thu Jul 23 01:28:12 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 23 Jul 2009 01:28:12 +0000 (UTC) Subject: rpms/hal/devel hal-0.5.12-use-at-console.patch, NONE, 1.1 hal.spec, 1.195, 1.196 Message-ID: <20090723012812.40FF911C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2566 Modified Files: hal.spec Added Files: hal-0.5.12-use-at-console.patch Log Message: - Disable ConsoleKit+PolicyKit support and lock down most interfaces with at_console - Disable ACL management, this is now handled by udev >= 145 hal-0.5.12-use-at-console.patch: hal.conf.in | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE hal-0.5.12-use-at-console.patch --- --- hal-0.5.12/hal.conf.in.orig 2009-07-22 19:58:15.000000000 -0400 +++ hal-0.5.12/hal.conf.in 2009-07-22 20:03:01.000000000 -0400 @@ -25,7 +25,10 @@ send_interface="org.freedesktop.Hal.Device"/> + + + = %{expat_version} BuildRequires: glib2-devel >= %{glib2_version} @@ -76,7 +76,6 @@ BuildRequires: gtk-doc >= %{gtk_doc_vers BuildRequires: libblkid-devel BuildRequires: pciutils-devel >= %{pciutils_version} BuildRequires: xmlto -BuildRequires: PolicyKit-devel >= %{policykit_version} BuildRequires: gperf >= %{gperf_version} %ifnarch s390 s390x @@ -100,7 +99,6 @@ Requires: libusb >= %{libusb_version} Requires: dmidecode >= %{dmidecode_version} %endif Requires: ConsoleKit >= %{consolekit_version} -Requires: PolicyKit >= %{policykit_version} Requires: acl >= %{acl_version} Requires: hal-libs = %{version}-%{release} Requires: hal-info @@ -150,6 +148,7 @@ API docs for HAL. %patch8 -p1 -b .fix-udev %patch9 -p1 -b .kvm-evdev %patch10 -p1 -b .blkid +%patch100 -p1 -b .drop-polkit autoreconf -i -f @@ -159,9 +158,8 @@ autoreconf -i -f --docdir=%{_docdir}/%{name}-%{version} \ --with-os-type=redhat \ --with-udev-prefix=/etc \ - --enable-console-kit \ - --enable-policy-kit \ - --enable-acl-management \ + --disable-console-kit \ + --disable-policy-kit \ --enable-umount-helper \ --enable-acpi-ibm \ --disable-smbios \ @@ -179,9 +177,6 @@ make install DESTDIR=$RPM_BUILD_ROOT # deprecated keys cp -p fdi/information/10freedesktop/01-deprecated-keys.fdi $RPM_BUILD_ROOT%{_datadir}/hal/fdi/information/10freedesktop/ -# OLPC detection hack -install -D -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/hal/fdi/policy/10osvendor/05-olpc-detect.fdi - cp README AUTHORS NEWS COPYING HACKING $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} rm -f $RPM_BUILD_ROOT%{_libdir}/*.la @@ -198,9 +193,6 @@ rm -rf $RPM_BUILD_ROOT /usr/sbin/useradd -c 'HAL daemon' -u %{hal_user_uid} \ -s /sbin/nologin -r -d '/' haldaemon 2> /dev/null || : -# User haldaemon needs to be able to read authorizations -/usr/bin/polkit-auth --user haldaemon --grant org.freedesktop.policykit.read >& /dev/null || : - %post /sbin/ldconfig /sbin/chkconfig --add haldaemon @@ -268,8 +260,6 @@ fi /etc/udev/rules.d/90-hal.rules -%{_datadir}/PolicyKit/policy/* - %attr(0700,haldaemon,haldaemon) %dir %{_localstatedir}/cache/hald %attr(0700,haldaemon,haldaemon) %dir %{_localstatedir}/run/hald %ghost %{_localstatedir}/run/hald/acl-list @@ -298,6 +288,10 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Wed Jul 22 2009 David Zeuthen - 0.5.12-26.20090226git.4 +- Disable ConsoleKit+PolicyKit support and lock down most interfaces with at_console +- Disable ACL management, this is now handled by udev >= 145 + * Sun Jun 14 2009 Matthias Clasen - 0.5.12-26.20090226git.3 - Should not own /etc/dbus-1/system.d From kevin at fedoraproject.org Thu Jul 23 01:55:35 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Thu, 23 Jul 2009 01:55:35 +0000 (UTC) Subject: rpms/ratpoison/devel sources, 1.4, 1.5 .cvsignore, 1.4, 1.5 ratpoison.spec, 1.14, 1.15 Message-ID: <20090723015535.EE7A011C0099@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/extras/rpms/ratpoison/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15007 Modified Files: sources .cvsignore ratpoison.spec Log Message: Update to 1.4.5 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ratpoison/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 16 May 2009 04:07:32 -0000 1.4 +++ sources 23 Jul 2009 01:55:05 -0000 1.5 @@ -1 +1 @@ -8ee91678b0086f16be3daf196f7e6166 ratpoison-1.4.4.tar.gz +330a08dbed6be88cab54f6947e9f0b60 ratpoison-1.4.5.tar.gz Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ratpoison/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 16 May 2009 04:07:32 -0000 1.4 +++ .cvsignore 23 Jul 2009 01:55:05 -0000 1.5 @@ -1 +1 @@ -ratpoison-1.4.4.tar.gz +ratpoison-1.4.5.tar.gz Index: ratpoison.spec =================================================================== RCS file: /cvs/extras/rpms/ratpoison/devel/ratpoison.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ratpoison.spec 14 Jul 2009 19:12:12 -0000 1.14 +++ ratpoison.spec 23 Jul 2009 01:55:05 -0000 1.15 @@ -1,8 +1,8 @@ %define xsessiondir %{_datadir}/xsessions Name: ratpoison -Version: 1.4.4 -Release: 4%{?dist} +Version: 1.4.5 +Release: 1%{?dist} Summary: Minimalistic window manager Group: Applications/Productivity License: GPLv2+ @@ -63,6 +63,9 @@ fi %{_datadir}/xsessions/ratpoison.desktop %changelog +* Wed Jul 22 2009 Kevin Fenzi - 1.4.5-1 +- Update to 1.4.5 + * Tue Jul 14 2009 Kevin Fenzi - 1.4.4-4 - Add libXi-devel to BuildRequires From nb at fedoraproject.org Thu Jul 23 01:56:33 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:56:33 +0000 (UTC) Subject: rpms/znc/devel znc-0.072-webadmin.diff,NONE,1.1 znc.spec,1.2,1.3 Message-ID: <20090723015633.07D7111C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14356 Modified Files: znc.spec Added Files: znc-0.072-webadmin.diff Log Message: Adding patch to fix webadmin issue znc-0.072-webadmin.diff: webadmin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE znc-0.072-webadmin.diff --- --- znc-0.072/modules/webadmin.cpp 2009-07-21 13:36:33.000000000 -0500 +++ /home/nb/fedora-git/znc-upstream/modules/webadmin.cpp 2009-07-22 20:36:44.736103981 -0500 @@ -253,13 +253,13 @@ CString CWebAdminSock::GetSkinDir() { CString sAvailSkins = GetAvailSkinsDir(); - CString sSkinDir = sAvailSkins + GetModule()->GetSkinName() + "/"; - CString sDir = CDir::CheckPathPrefix("./", sSkinDir, "/"); + CString sSkinDir = GetModule()->GetSkinName() + "/"; + CString sDir = CDir::CheckPathPrefix(sAvailSkins, sSkinDir, "/"); // Via CheckPrefix() we check if someone tries to use e.g. a skin name // with embed .. or such evilness. - if (!sDir.empty() && CFile::IsDir(sSkinDir)) { - return sSkinDir; + if (!sDir.empty() && CFile::IsDir(sDir)) { + return sDir + "/"; } return m_pModule->GetModDataDir() + "/skins/default/"; Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- znc.spec 23 Jul 2009 01:06:06 -0000 1.2 +++ znc.spec 23 Jul 2009 01:56:02 -0000 1.3 @@ -6,6 +6,7 @@ License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz +Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 @@ -37,8 +38,9 @@ modules. %prep %setup -q +%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -#chmod -x modules/q.cpp +chmod -x modules/q.cpp %build %configure \ @@ -70,8 +72,10 @@ modules. %{_includedir}/znc/ %changelog +* Web Jul 22 2009 Nick Bebout - 0.072-2 +- Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 -- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 +- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 From nb at fedoraproject.org Thu Jul 23 01:57:54 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 01:57:54 +0000 (UTC) Subject: rpms/znc/devel znc.spec,1.3,1.4 Message-ID: <20090723015754.E056111C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15879 Modified Files: znc.spec Log Message: Bump release Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- znc.spec 23 Jul 2009 01:56:02 -0000 1.3 +++ znc.spec 23 Jul 2009 01:57:24 -0000 1.4 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ From nb at fedoraproject.org Thu Jul 23 02:00:40 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:00:40 +0000 (UTC) Subject: rpms/znc/EL-5 znc-0.072-webadmin.diff,NONE,1.1 znc.spec,1.2,1.3 Message-ID: <20090723020040.A7DF911C048A@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17027 Modified Files: znc.spec Added Files: znc-0.072-webadmin.diff Log Message: Updating to 0.072-2 znc-0.072-webadmin.diff: webadmin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE znc-0.072-webadmin.diff --- --- znc-0.072/modules/webadmin.cpp 2009-07-21 13:36:33.000000000 -0500 +++ /home/nb/fedora-git/znc-upstream/modules/webadmin.cpp 2009-07-22 20:36:44.736103981 -0500 @@ -253,13 +253,13 @@ CString CWebAdminSock::GetSkinDir() { CString sAvailSkins = GetAvailSkinsDir(); - CString sSkinDir = sAvailSkins + GetModule()->GetSkinName() + "/"; - CString sDir = CDir::CheckPathPrefix("./", sSkinDir, "/"); + CString sSkinDir = GetModule()->GetSkinName() + "/"; + CString sDir = CDir::CheckPathPrefix(sAvailSkins, sSkinDir, "/"); // Via CheckPrefix() we check if someone tries to use e.g. a skin name // with embed .. or such evilness. - if (!sDir.empty() && CFile::IsDir(sSkinDir)) { - return sSkinDir; + if (!sDir.empty() && CFile::IsDir(sDir)) { + return sDir + "/"; } return m_pModule->GetModDataDir() + "/skins/default/"; Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/znc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- znc.spec 23 Jul 2009 01:22:42 -0000 1.2 +++ znc.spec 23 Jul 2009 02:00:10 -0000 1.3 @@ -1,11 +1,12 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz +Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 @@ -37,8 +38,9 @@ modules. %prep %setup -q +%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -#chmod -x modules/q.cpp +chmod -x modules/q.cpp %build %configure \ @@ -70,8 +72,10 @@ modules. %{_includedir}/znc/ %changelog +* Web Jul 22 2009 Nick Bebout - 0.072-2 +- Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 -- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 +- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 From nb at fedoraproject.org Thu Jul 23 02:02:07 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:02:07 +0000 (UTC) Subject: rpms/znc/F-10 znc-0.072-webadmin.diff,NONE,1.1 znc.spec,1.2,1.3 Message-ID: <20090723020207.0663411C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17633 Modified Files: znc.spec Added Files: znc-0.072-webadmin.diff Log Message: Update to 0.072-2 znc-0.072-webadmin.diff: webadmin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE znc-0.072-webadmin.diff --- --- znc-0.072/modules/webadmin.cpp 2009-07-21 13:36:33.000000000 -0500 +++ /home/nb/fedora-git/znc-upstream/modules/webadmin.cpp 2009-07-22 20:36:44.736103981 -0500 @@ -253,13 +253,13 @@ CString CWebAdminSock::GetSkinDir() { CString sAvailSkins = GetAvailSkinsDir(); - CString sSkinDir = sAvailSkins + GetModule()->GetSkinName() + "/"; - CString sDir = CDir::CheckPathPrefix("./", sSkinDir, "/"); + CString sSkinDir = GetModule()->GetSkinName() + "/"; + CString sDir = CDir::CheckPathPrefix(sAvailSkins, sSkinDir, "/"); // Via CheckPrefix() we check if someone tries to use e.g. a skin name // with embed .. or such evilness. - if (!sDir.empty() && CFile::IsDir(sSkinDir)) { - return sSkinDir; + if (!sDir.empty() && CFile::IsDir(sDir)) { + return sDir + "/"; } return m_pModule->GetModDataDir() + "/skins/default/"; Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/znc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- znc.spec 23 Jul 2009 01:21:34 -0000 1.2 +++ znc.spec 23 Jul 2009 02:01:36 -0000 1.3 @@ -1,11 +1,12 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz +Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 @@ -37,8 +38,9 @@ modules. %prep %setup -q +%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -#chmod -x modules/q.cpp +chmod -x modules/q.cpp %build %configure \ @@ -70,8 +72,10 @@ modules. %{_includedir}/znc/ %changelog +* Web Jul 22 2009 Nick Bebout - 0.072-2 +- Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 -- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 +- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 From nb at fedoraproject.org Thu Jul 23 02:03:28 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:03:28 +0000 (UTC) Subject: rpms/znc/F-11 znc-0.072-webadmin.diff,NONE,1.1 znc.spec,1.2,1.3 Message-ID: <20090723020328.AF99211C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18159 Modified Files: znc.spec Added Files: znc-0.072-webadmin.diff Log Message: Updating to 0.072-2 znc-0.072-webadmin.diff: webadmin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE znc-0.072-webadmin.diff --- --- znc-0.072/modules/webadmin.cpp 2009-07-21 13:36:33.000000000 -0500 +++ /home/nb/fedora-git/znc-upstream/modules/webadmin.cpp 2009-07-22 20:36:44.736103981 -0500 @@ -253,13 +253,13 @@ CString CWebAdminSock::GetSkinDir() { CString sAvailSkins = GetAvailSkinsDir(); - CString sSkinDir = sAvailSkins + GetModule()->GetSkinName() + "/"; - CString sDir = CDir::CheckPathPrefix("./", sSkinDir, "/"); + CString sSkinDir = GetModule()->GetSkinName() + "/"; + CString sDir = CDir::CheckPathPrefix(sAvailSkins, sSkinDir, "/"); // Via CheckPrefix() we check if someone tries to use e.g. a skin name // with embed .. or such evilness. - if (!sDir.empty() && CFile::IsDir(sSkinDir)) { - return sSkinDir; + if (!sDir.empty() && CFile::IsDir(sDir)) { + return sDir + "/"; } return m_pModule->GetModDataDir() + "/skins/default/"; Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/znc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- znc.spec 23 Jul 2009 01:15:41 -0000 1.2 +++ znc.spec 23 Jul 2009 02:02:58 -0000 1.3 @@ -1,11 +1,12 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz +Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 @@ -37,8 +38,9 @@ modules. %prep %setup -q +%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -#chmod -x modules/q.cpp +chmod -x modules/q.cpp %build %configure \ @@ -70,8 +72,10 @@ modules. %{_includedir}/znc/ %changelog +* Web Jul 22 2009 Nick Bebout - 0.072-2 +- Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 -- Upgrade to 0.072 of ZNC, fixes security issue in bug 513152 +- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 * Sun Jul 12 2009 Nick Bebout - 0.070-7 - Fix License: to be GPLv2 with exceptions * Sat Jul 11 2009 Nick Bebout - 0.070-6 From mclasen at fedoraproject.org Thu Jul 23 02:07:40 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Thu, 23 Jul 2009 02:07:40 +0000 (UTC) Subject: rpms/libtool/devel libtool.spec,1.75,1.76 Message-ID: <20090723020740.89E7811C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19731 Modified Files: libtool.spec Log Message: Rebuild for gcc 4.4.1 Index: libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtool/devel/libtool.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- libtool.spec 25 Feb 2009 19:29:58 -0000 1.75 +++ libtool.spec 23 Jul 2009 02:07:10 -0000 1.76 @@ -1,9 +1,9 @@ -%define gcc_version 4.4.0 +%define gcc_version 4.4.1 Summary: The GNU Portable Library Tool Name: libtool Version: 2.2.6 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ and LGPLv2+ and GFDL Group: Development/Tools Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}a.tar.gz @@ -142,6 +142,9 @@ fi %changelog +* Wed Jul 22 2009 Matthias Clasen - 2.2.6-12 +- Rebuild for gcc 4.4.1 + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dcantrel at fedoraproject.org Thu Jul 23 02:15:04 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Thu, 23 Jul 2009 02:15:04 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.646, 1.647 anaconda.spec, 1.795, 1.796 sources, 1.780, 1.781 Message-ID: <20090723021504.ED39A11C0099@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22799 Modified Files: .cvsignore anaconda.spec sources Log Message: * Wed Jul 22 2009 David Cantrell - 12.4-1 - Add scripts/makeupdates to generate updates.img files. (dcantrell) - Add python-decorator to the stage2 image for pyparted (#513175). (clumens) - Set stage2= on x86 boot.iso (katzj) - Try to auto-find the CD even if stage2= is specified (katzj) - Make sure we have a device before check if it's protected. (#510033) (dlehman) - Remove unresolvable file devices from the devicetree. (#503830) (dlehman) - Support multiple fstab entries of a single nodev fstype. (#505969) (dlehman) - Refer to nodev devices as "none", not "nodev". (dlehman) - Change DeviceTree.devices from a dict to a list. (dlehman) - Show locked LUKS devices as "Encrypted (LUKS)", not "LUKS". (dlehman) - Allow creation of four primary partitions on a disk. (#505269) (dlehman) - Add a bunch more stuff to the initrd needed for networking. (clumens) - Add more things to /sbin on the initrd that udev requires. (clumens) - Add dmesg to the images. (clumens) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.646 retrieving revision 1.647 diff -u -p -r1.646 -r1.647 --- .cvsignore 21 Jul 2009 04:45:53 -0000 1.646 +++ .cvsignore 23 Jul 2009 02:14:32 -0000 1.647 @@ -1 +1 @@ -anaconda-12.3.tar.bz2 +anaconda-12.4.tar.bz2 Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.795 retrieving revision 1.796 diff -u -p -r1.795 -r1.796 --- anaconda.spec 21 Jul 2009 04:45:53 -0000 1.795 +++ anaconda.spec 23 Jul 2009 02:14:32 -0000 1.796 @@ -3,7 +3,7 @@ Summary: Graphical system installer Name: anaconda -Version: 12.3 +Version: 12.4 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -212,6 +212,24 @@ update-desktop-database &> /dev/null || %endif %changelog +* Wed Jul 22 2009 David Cantrell - 12.4-1 +- Add scripts/makeupdates to generate updates.img files. (dcantrell) +- Add python-decorator to the stage2 image for pyparted (#513175). (clumens) +- Set stage2= on x86 boot.iso (katzj) +- Try to auto-find the CD even if stage2= is specified (katzj) +- Make sure we have a device before check if it's protected. (#510033) + (dlehman) +- Remove unresolvable file devices from the devicetree. (#503830) (dlehman) +- Support multiple fstab entries of a single nodev fstype. (#505969) + (dlehman) +- Refer to nodev devices as "none", not "nodev". (dlehman) +- Change DeviceTree.devices from a dict to a list. (dlehman) +- Show locked LUKS devices as "Encrypted (LUKS)", not "LUKS". (dlehman) +- Allow creation of four primary partitions on a disk. (#505269) (dlehman) +- Add a bunch more stuff to the initrd needed for networking. (clumens) +- Add more things to /sbin on the initrd that udev requires. (clumens) +- Add dmesg to the images. (clumens) + * Mon Jul 20 2009 David Cantrell - 12.3-1 - Set GECOS field for new user accounts specific in ks files (dcantrell) - Show MAC address of network device in text mode too. (rvykydal) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.780 retrieving revision 1.781 diff -u -p -r1.780 -r1.781 --- sources 21 Jul 2009 04:45:53 -0000 1.780 +++ sources 23 Jul 2009 02:14:32 -0000 1.781 @@ -1 +1 @@ -bf20175d6e08d52285d8bd589c66e4a3 anaconda-12.3.tar.bz2 +cbc2bf50f0d23d9a94e83efdc43288d1 anaconda-12.4.tar.bz2 From airlied at fedoraproject.org Thu Jul 23 02:15:57 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Thu, 23 Jul 2009 02:15:57 +0000 (UTC) Subject: rpms/mesa/devel .cvsignore, 1.34, 1.35 mesa-7.1-osmesa-version.patch, 1.1, 1.2 mesa-no-mach64.patch, 1.1, 1.2 mesa.spec, 1.244, 1.245 sources, 1.36, 1.37 mesa-7.5-r300-batch-accounting.patch, 1.1, NONE radeon-rewrite-emit1clip.patch, 1.1, NONE radeon-rewrite.patch, 1.19, NONE Message-ID: <20090723021557.EF07711C0099@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23028 Modified Files: .cvsignore mesa-7.1-osmesa-version.patch mesa-no-mach64.patch mesa.spec sources Removed Files: mesa-7.5-r300-batch-accounting.patch radeon-rewrite-emit1clip.patch radeon-rewrite.patch Log Message: * Thu Jul 23 2009 Dave Airlie 7.6-0.4 - rebase to latest upstream snapshot Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 22 Mar 2009 02:20:15 -0000 1.34 +++ .cvsignore 23 Jul 2009 02:15:26 -0000 1.35 @@ -3,3 +3,4 @@ xdriinfo-1.0.2.tar.bz2 MesaDemos-7.3.tar.bz2 MesaLib-7.3.tar.bz2 mesa-20090322.tar.bz2 +mesa-20090723.tar.bz2 mesa-7.1-osmesa-version.patch: Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: mesa-7.1-osmesa-version.patch =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa-7.1-osmesa-version.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mesa-7.1-osmesa-version.patch 5 Sep 2008 05:48:02 -0000 1.1 +++ mesa-7.1-osmesa-version.patch 23 Jul 2009 02:15:27 -0000 1.2 @@ -10,12 +10,3 @@ diff -up Mesa-7.1/src/mesa/drivers/osmes -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \ -id $(INSTALL_LIB_DIR)/lib$(OSMESA_LIB).$(MESA_MAJOR).dylib \ $(OSMESA_LIB_DEPS) $(OBJECTS) -@@ -58,7 +58,7 @@ $(TOP)/lib/$(OSMESA_LIB_NAME): $(OBJECTS - # with all the other Mesa sources (compiled with -DCHAN_BITS=16/32 - osmesa16: $(OBJECTS) $(CORE_MESA) - $(MKLIB) -o $(OSMESA_LIB) -linker '$(CC)' -ldflags '$(LDFLAGS)' \ -- -major $(MESA_MAJOR) -minor $(MESA_MINOR) -patch $(MESA_TINY) \ -+ -major 6 -minor 5 -patch 3 \ - -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \ - -id $(INSTALL_LIB_DIR)/lib$(OSMESA_LIB).$(MESA_MAJOR).dylib \ - $(OSMESA_LIB_DEPS) $(OBJECTS) $(CORE_MESA) mesa-no-mach64.patch: configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) Index: mesa-no-mach64.patch =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa-no-mach64.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mesa-no-mach64.patch 5 Sep 2008 05:48:02 -0000 1.1 +++ mesa-no-mach64.patch 23 Jul 2009 02:15:27 -0000 1.2 @@ -1,45 +1,46 @@ ---- configure.ac.mach64 2008-09-05 13:53:24.000000000 +1000 -+++ configure.ac 2008-09-05 13:53:39.000000000 +1000 -@@ -656,7 +656,7 @@ +diff -up mesa-20090723/configure.ac.mach64 mesa-20090723/configure.ac +--- mesa-20090723/configure.ac.mach64 2009-07-23 12:11:01.000000000 +1000 ++++ mesa-20090723/configure.ac 2009-07-23 12:11:22.000000000 +1000 +@@ -713,7 +713,7 @@ if test "$mesa_driver" = dri; then # because there is no x86-64 system where they could *ever* # be used. if test "x$DRI_DIRS" = "xyes"; then -- DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 radeon \ -+ DRI_DIRS="i915 i965 mga r128 r200 r300 radeon \ +- DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \ ++ DRI_DIRS="i915 i965 mga r128 r200 r300 r600 radeon \ savage tdfx unichrome swrast" fi ;; -@@ -664,13 +664,13 @@ +@@ -721,13 +721,13 @@ if test "$mesa_driver" = dri; then # Build only the drivers for cards that exist on PowerPC. # At some point MGA will be added, but not yet. if test "x$DRI_DIRS" = "xyes"; then -- DRI_DIRS="mach64 r128 r200 r300 radeon tdfx swrast" -+ DRI_DIRS="r128 r200 r300 radeon tdfx swrast" +- DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast" ++ DRI_DIRS="r128 r200 r300 r600 radeon tdfx swrast" fi ;; sparc*) # Build only the drivers for cards that exist on sparc` if test "x$DRI_DIRS" = "xyes"; then -- DRI_DIRS="mach64 r128 r200 r300 radeon ffb swrast" -+ DRI_DIRS="r128 r200 r300 radeon ffb swrast" +- DRI_DIRS="mach64 r128 r200 r300 r600 radeon ffb swrast" ++ DRI_DIRS="r128 r200 r300 r600 radeon ffb swrast" fi ;; esac -@@ -689,7 +689,7 @@ +@@ -746,7 +746,7 @@ if test "$mesa_driver" = dri; then # ffb and gamma are missing because they have not been converted # to use the new interface. if test "x$DRI_DIRS" = "xyes"; then -- DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 radeon tdfx \ -+ DRI_DIRS="i810 i915 i965 mga r128 r200 r300 radeon tdfx \ +- DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \ ++ DRI_DIRS="i810 i915 i965 mga r128 r200 r300 r600 radeon tdfx \ unichrome savage sis swrast" fi ;; -@@ -704,7 +704,7 @@ +@@ -765,7 +765,7 @@ if test "$mesa_driver" = dri; then # default drivers if test "x$DRI_DIRS" = "xyes"; then -- DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 radeon s3v \ -+ DRI_DIRS="i810 i915 i965 mga r128 r200 r300 radeon s3v \ +- DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon s3v \ ++ DRI_DIRS="i810 i915 i965 mga r128 r200 r300 r600 radeon s3v \ savage sis tdfx trident unichrome ffb swrast" fi Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.244 retrieving revision 1.245 diff -u -p -r1.244 -r1.245 --- mesa.spec 20 Jul 2009 21:08:47 -0000 1.244 +++ mesa.spec 23 Jul 2009 02:15:27 -0000 1.245 @@ -13,7 +13,7 @@ %define manpages gl-manpages-1.0.1 %define xdriinfo xdriinfo-1.0.2 -%define gitdate 20090612 +%define gitdate 20090723 #% define snapshot %define demodir %{_libdir}/mesa @@ -166,7 +166,7 @@ This package provides some demo applicat %setup -q -n mesa-%{gitdate} -b2 -b5 %patch1 -p1 -b .osmesa %patch2 -p1 -b .intel-glthread -%patch3 -p0 -b .no-mach64 +%patch3 -p1 -b .no-mach64 %patch7 -p1 -b .dricore %patch9 -p1 -b .intel-vbl %patch12 -p1 -b .intel-nowarn @@ -366,6 +366,9 @@ rm -rf $RPM_BUILD_ROOT %{demodir} %changelog +* Thu Jul 23 2009 Dave Airlie 7.6-0.4 +- rebase to latest upstream snapshot + * Tue Jun 16 2009 Karsten Hopp 7.6-0.3 - some more fixes for s390(x) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/sources,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- sources 20 Jul 2009 21:08:47 -0000 1.36 +++ sources 23 Jul 2009 02:15:27 -0000 1.37 @@ -1,3 +1,3 @@ 6ae05158e678f4594343f32c2ca50515 gl-manpages-1.0.1.tar.bz2 a5ec51ed9f0a55dc3462d90d52ff899c xdriinfo-1.0.2.tar.bz2 -93b7016851831fc31d02103e7d9551b3 mesa-20090612.tar.bz2 +b3547e33cef106021dac5f5ff44e6bc6 mesa-20090723.tar.bz2 --- mesa-7.5-r300-batch-accounting.patch DELETED --- --- radeon-rewrite-emit1clip.patch DELETED --- --- radeon-rewrite.patch DELETED --- From airlied at fedoraproject.org Thu Jul 23 02:17:41 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Thu, 23 Jul 2009 02:17:41 +0000 (UTC) Subject: rpms/mesa/devel mesa.spec,1.245,1.246 Message-ID: <20090723021741.9A0C611C0099@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23764 Modified Files: mesa.spec Log Message: * Thu Jul 23 2009 Dave Airlie 7.6-0.4 - rebase to latest upstream snapshot Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.245 retrieving revision 1.246 diff -u -p -r1.245 -r1.246 --- mesa.spec 23 Jul 2009 02:15:27 -0000 1.245 +++ mesa.spec 23 Jul 2009 02:17:11 -0000 1.246 @@ -21,7 +21,7 @@ Summary: Mesa graphics libraries Name: mesa Version: 7.6 -Release: 0.3%{?dist} +Release: 0.4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org From wtogami at fedoraproject.org Thu Jul 23 02:20:29 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Thu, 23 Jul 2009 02:20:29 +0000 (UTC) Subject: rpms/farsight2/devel farsight2.spec,1.13,1.14 Message-ID: <20090723022029.D570111C049E@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/farsight2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24533 Modified Files: farsight2.spec Log Message: rebuild (upstream indicated that this might be necessary after that libnice fix, but not sure really) Index: farsight2.spec =================================================================== RCS file: /cvs/pkgs/rpms/farsight2/devel/farsight2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- farsight2.spec 22 Jun 2009 17:06:17 -0000 1.13 +++ farsight2.spec 23 Jul 2009 02:19:59 -0000 1.14 @@ -7,7 +7,7 @@ Name: farsight2 Version: 0.0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries for videoconferencing Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Warren Togami - 0.0.12-3 +- rebuild + * Mon Jun 22 2009 Brian Pepple - 0.0.12-2 - Remove unnecessary requires on gst-plugins-farsight. From wtogami at fedoraproject.org Thu Jul 23 02:34:20 2009 From: wtogami at fedoraproject.org (=?utf-8?b?V2FycmVuIFRvZ2FtaSDnoKXkuIrli4c=?=) Date: Thu, 23 Jul 2009 02:34:20 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.83,1.84 Message-ID: <20090723023420.5624811C0099@cvs1.fedora.phx.redhat.com> Author: wtogami Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30226 Modified Files: pidgin.spec Log Message: rebuild Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- pidgin.spec 22 Jul 2009 16:00:32 -0000 1.83 +++ pidgin.spec 23 Jul 2009 02:33:50 -0000 1.84 @@ -77,7 +77,7 @@ Name: pidgin Version: 2.6.0 %define snapshot 20090721 -Release: 0.3.%{snapshot}%{?dist} +Release: 0.4.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -600,6 +600,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Jul 22 2009 Warren Togami 2.6.0-0.4.20090721 +- rebuild + * Tue Jul 21 2009 Warren Togami 2.6.0-0.3.20090721 - prevent crash with no camera when closing vv window From nb at fedoraproject.org Thu Jul 23 02:53:20 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:53:20 +0000 (UTC) Subject: rpms/znc/devel znc.spec,1.4,1.5 Message-ID: <20090723025321.C988F11C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6195 Modified Files: znc.spec Log Message: Fixing configure options in spec Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- znc.spec 23 Jul 2009 01:57:24 -0000 1.4 +++ znc.spec 23 Jul 2009 02:53:18 -0000 1.5 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ @@ -12,11 +12,6 @@ BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel -# the c-ares part of ZNC does not work on EPEL -# because the EPEL c-ares-devel does not install -# the .pc file for it -%{?fedora:BuildRequires: c-ares-devel} - # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -45,8 +40,7 @@ chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ -%{!?fedora:--disable-c-ares \} - --enable-ipv6 --enable-sasl + --enable-ipv6 --enable-sasl --disable-c-ares %__make %{?_smp_mflags} %install @@ -72,7 +66,9 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog -* Web Jul 22 2009 Nick Bebout - 0.072-2 +* Wed Jul 22 2009 Nick Bebout - 0.072-3 +- Fix date in changelog, disable c-ares +* Wed Jul 22 2009 Nick Bebout - 0.072-2 - Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 - Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 From nb at fedoraproject.org Thu Jul 23 02:54:58 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:54:58 +0000 (UTC) Subject: rpms/znc/F-10 znc.spec,1.3,1.4 Message-ID: <20090723025458.6C41211C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7304 Modified Files: znc.spec Log Message: Fixing configure options in spec file Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/znc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- znc.spec 23 Jul 2009 02:01:36 -0000 1.3 +++ znc.spec 23 Jul 2009 02:54:57 -0000 1.4 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ @@ -12,11 +12,6 @@ BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel -# the c-ares part of ZNC does not work on EPEL -# because the EPEL c-ares-devel does not install -# the .pc file for it -%{?fedora:BuildRequires: c-ares-devel} - # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -45,8 +40,7 @@ chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ -%{!?fedora:--disable-c-ares \} - --enable-ipv6 --enable-sasl + --enable-ipv6 --enable-sasl --disable-c-ares %__make %{?_smp_mflags} %install @@ -72,7 +66,9 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog -* Web Jul 22 2009 Nick Bebout - 0.072-2 +* Wed Jul 22 2009 Nick Bebout - 0.072-3 +- Fix date in changelog, disable c-ares +* Wed Jul 22 2009 Nick Bebout - 0.072-2 - Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 - Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 From nb at fedoraproject.org Thu Jul 23 02:55:33 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:55:33 +0000 (UTC) Subject: rpms/znc/F-11 znc.spec,1.3,1.4 Message-ID: <20090723025533.4DD3111C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7612 Modified Files: znc.spec Log Message: Fixing configure options in spec file Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/znc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- znc.spec 23 Jul 2009 02:02:58 -0000 1.3 +++ znc.spec 23 Jul 2009 02:55:32 -0000 1.4 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ @@ -12,11 +12,6 @@ BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel -# the c-ares part of ZNC does not work on EPEL -# because the EPEL c-ares-devel does not install -# the .pc file for it -%{?fedora:BuildRequires: c-ares-devel} - # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -45,8 +40,7 @@ chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ -%{!?fedora:--disable-c-ares \} - --enable-ipv6 --enable-sasl + --enable-ipv6 --enable-sasl --disable-c-ares %__make %{?_smp_mflags} %install @@ -72,7 +66,9 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog -* Web Jul 22 2009 Nick Bebout - 0.072-2 +* Wed Jul 22 2009 Nick Bebout - 0.072-3 +- Fix date in changelog, disable c-ares +* Wed Jul 22 2009 Nick Bebout - 0.072-2 - Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 - Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 From orion at fedoraproject.org Thu Jul 23 02:56:48 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 02:56:48 +0000 (UTC) Subject: rpms/libnc-dap/devel .cvsignore, 1.6, 1.7 libnc-dap.spec, 1.27, 1.28 sources, 1.6, 1.7 libnc-dap-3.7.3-libdap-3.9.3.patch, 1.1, NONE libnc-dap-3.7.3-template.patch, 1.1, NONE Message-ID: <20090723025648.E4CCD11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/libnc-dap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8142 Modified Files: .cvsignore libnc-dap.spec sources Removed Files: libnc-dap-3.7.3-libdap-3.9.3.patch libnc-dap-3.7.3-template.patch Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.7.4-1 - Update to 3.7.4 - Drop templates patch applied upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 10 Sep 2008 16:53:02 -0000 1.6 +++ .cvsignore 23 Jul 2009 02:56:18 -0000 1.7 @@ -1 +1 @@ -libnc-dap-3.7.3.tar.gz +libnc-dap-3.7.4.tar.gz Index: libnc-dap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/libnc-dap.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libnc-dap.spec 22 Jul 2009 20:18:37 -0000 1.27 +++ libnc-dap.spec 23 Jul 2009 02:56:18 -0000 1.28 @@ -1,7 +1,7 @@ Name: libnc-dap Summary: The NetCDF interface to DAP-2 from OPeNDAP -Version: 3.7.3 -Release: 3%{?dist} +Version: 3.7.4 +Release: 1%{?dist} Group: Development/Libraries # ncdump, netcdf headers, lnetcdf are coverd by a BSD/MIT-like license @@ -9,8 +9,6 @@ Group: Development/Libraries License: LGPLv2+ URL: http://www.opendap.org/ Source0: http://www.opendap.org/pub/source/libnc-dap-%{version}.tar.gz -Patch0: libnc-dap-3.7.3-template.patch -Patch1: libnc-dap-3.7.3-libdap-3.9.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libdap-devel >= 3.8.0 gcc-gfortran @@ -42,8 +40,6 @@ will use libnc-dap. %prep %setup -q -%patch0 -p1 -b .template -%patch1 -p1 -b .libdap-3.9.3 rm -rf netcdf/.svn %build @@ -82,6 +78,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.7.4-1 +- Update to 3.7.4 +- Drop templates patch applied upstream + * Wed Jul 22 2009 Orion Poplawski - 3.7.3-3 - Rebuild for libdap 3.9.3 - Add patch to support 3.9.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 10 Sep 2008 16:53:02 -0000 1.6 +++ sources 23 Jul 2009 02:56:18 -0000 1.7 @@ -1 +1 @@ -b69f3fb1b26b65903e41c2aa832cab34 libnc-dap-3.7.3.tar.gz +671bf7ad07e00ed0be6518a80792c587 libnc-dap-3.7.4.tar.gz --- libnc-dap-3.7.3-libdap-3.9.3.patch DELETED --- --- libnc-dap-3.7.3-template.patch DELETED --- From nb at fedoraproject.org Thu Jul 23 02:57:25 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 02:57:25 +0000 (UTC) Subject: rpms/znc/EL-5 znc.spec,1.3,1.4 Message-ID: <20090723025725.910C711C0099@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8276 Modified Files: znc.spec Log Message: Fixing configure options in spec file - disable c-ares Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/znc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- znc.spec 23 Jul 2009 02:00:10 -0000 1.3 +++ znc.spec 23 Jul 2009 02:56:55 -0000 1.4 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.072 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ @@ -12,11 +12,6 @@ BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel -# the c-ares part of ZNC does not work on EPEL -# because the EPEL c-ares-devel does not install -# the .pc file for it -%{?fedora:BuildRequires: c-ares-devel} - # The following line is necessary because this module # is needed for Fedora, but not for EPEL. %{?fedora:BuildRequires: perl-ExtUtils-Embed} @@ -45,8 +40,7 @@ chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ -%{!?fedora:--disable-c-ares \} - --enable-ipv6 --enable-sasl + --enable-ipv6 --enable-sasl --disable-c-ares %__make %{?_smp_mflags} %install @@ -72,7 +66,9 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog -* Web Jul 22 2009 Nick Bebout - 0.072-2 +* Wed Jul 22 2009 Nick Bebout - 0.072-3 +- Fix date in changelog, disable c-ares +* Wed Jul 22 2009 Nick Bebout - 0.072-2 - Backport patch to fix webadmin skins issue introduced in 0.072 * Wed Jul 22 2009 Nick Bebout - 0.072-1 - Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 From orion at fedoraproject.org Thu Jul 23 03:09:07 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 03:09:07 +0000 (UTC) Subject: rpms/grads/devel grads.spec,1.26,1.27 Message-ID: <20090723030908.0FF0A11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/grads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12309 Modified Files: grads.spec Log Message: * Wed Jul 22 2009 Orion Poplawski - 1.9b4-27 - Rebuild for new libdap Index: grads.spec =================================================================== RCS file: /cvs/pkgs/rpms/grads/devel/grads.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- grads.spec 25 Feb 2009 00:53:19 -0000 1.26 +++ grads.spec 23 Jul 2009 03:08:36 -0000 1.27 @@ -1,6 +1,6 @@ Name: grads Version: 1.9b4 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Tool for easy acces, manipulation, and visualization of data Group: Applications/Engineering @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2009 Orion Poplawski - 1.9b4-27 +- Rebuild for new libdap + * Tue Feb 24 2009 Fedora Release Engineering - 1.9b4-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From dcantrel at fedoraproject.org Thu Jul 23 03:22:33 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Thu, 23 Jul 2009 03:22:33 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.647, 1.648 anaconda.spec, 1.796, 1.797 sources, 1.781, 1.782 Message-ID: <20090723032233.8B94211C0099@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17889 Modified Files: .cvsignore anaconda.spec sources Log Message: * Wed Jul 22 2009 David Cantrell - 12.5-1 - New build because koji hates me. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.647 retrieving revision 1.648 diff -u -p -r1.647 -r1.648 --- .cvsignore 23 Jul 2009 02:14:32 -0000 1.647 +++ .cvsignore 23 Jul 2009 03:22:02 -0000 1.648 @@ -1 +1 @@ -anaconda-12.4.tar.bz2 +anaconda-12.5.tar.bz2 Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.796 retrieving revision 1.797 diff -u -p -r1.796 -r1.797 --- anaconda.spec 23 Jul 2009 02:14:32 -0000 1.796 +++ anaconda.spec 23 Jul 2009 03:22:02 -0000 1.797 @@ -3,7 +3,7 @@ Summary: Graphical system installer Name: anaconda -Version: 12.4 +Version: 12.5 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -212,6 +212,9 @@ update-desktop-database &> /dev/null || %endif %changelog +* Wed Jul 22 2009 David Cantrell - 12.5-1 +- New build because koji hates me. + * Wed Jul 22 2009 David Cantrell - 12.4-1 - Add scripts/makeupdates to generate updates.img files. (dcantrell) - Add python-decorator to the stage2 image for pyparted (#513175). (clumens) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.781 retrieving revision 1.782 diff -u -p -r1.781 -r1.782 --- sources 23 Jul 2009 02:14:32 -0000 1.781 +++ sources 23 Jul 2009 03:22:02 -0000 1.782 @@ -1 +1 @@ -cbc2bf50f0d23d9a94e83efdc43288d1 anaconda-12.4.tar.bz2 +daaf091cb9eda754deb90ad9196f0730 anaconda-12.5.tar.bz2 From orion at fedoraproject.org Thu Jul 23 03:22:46 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 03:22:46 +0000 (UTC) Subject: rpms/dap-server/devel dap-server.spec,1.29,1.30 Message-ID: <20090723032246.6946211C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17945 Modified Files: dap-server.spec Log Message: Does not ship dap_asciival Index: dap-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-server/devel/dap-server.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- dap-server.spec 22 Jul 2009 19:59:28 -0000 1.29 +++ dap-server.spec 23 Jul 2009 03:22:16 -0000 1.30 @@ -116,7 +116,6 @@ rm -rf $RPM_BUILD_ROOT %doc __dist_doc/* %{_bindir}/bes-dap-data.sh %{_bindir}/dap_usage -%{_bindir}/dap_asciival %{_bindir}/dap_www_int %{_datadir}/bes/ %{_datadir}/dap-server/ From orion at fedoraproject.org Thu Jul 23 03:38:03 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 03:38:03 +0000 (UTC) Subject: rpms/dap-freeform_handler/devel dap-freeform_handler.spec, 1.17, 1.18 Message-ID: <20090723033804.08BD811C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-freeform_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24827 Modified Files: dap-freeform_handler.spec Log Message: Attempted make check, but no go. Index: dap-freeform_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-freeform_handler/devel/dap-freeform_handler.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- dap-freeform_handler.spec 22 Jul 2009 19:50:52 -0000 1.17 +++ dap-freeform_handler.spec 23 Jul 2009 03:38:02 -0000 1.18 @@ -10,6 +10,8 @@ URL: http://opendap.org/down BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libdap-devel >= 3.9.3 BuildRequires: bes-devel >= 3.7.2 +#For check, doesn't work in rpm +#BuildRequires: dejagnu %description This is the freeform data handler for our data server. It reads ASCII, @@ -35,6 +37,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/bes/libff_m %clean rm -rf $RPM_BUILD_ROOT +#Doesn't work in RPM? +#%check +#make check + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig From orion at fedoraproject.org Thu Jul 23 03:46:29 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 03:46:29 +0000 (UTC) Subject: rpms/dap-hdf4_handler/devel .cvsignore, 1.8, 1.9 dap-hdf4_handler.spec, 1.22, 1.23 sources, 1.8, 1.9 hdf4_handler-3.7.9-gcc43.patch, 1.1, NONE Message-ID: <20090723034629.D53AE11C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-hdf4_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29925 Modified Files: .cvsignore dap-hdf4_handler.spec sources Removed Files: hdf4_handler-3.7.9-gcc43.patch Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.7.14-1 - Update to 3.7.14 - Drop gcc43 patch, fixed upstream Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dap-hdf4_handler/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 10 Sep 2008 17:00:37 -0000 1.8 +++ .cvsignore 23 Jul 2009 03:45:57 -0000 1.9 @@ -1 +1 @@ -hdf4_handler-3.7.9.tar.gz +hdf4_handler-3.7.14.tar.gz Index: dap-hdf4_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-hdf4_handler/devel/dap-hdf4_handler.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- dap-hdf4_handler.spec 24 Feb 2009 10:43:53 -0000 1.22 +++ dap-hdf4_handler.spec 23 Jul 2009 03:45:57 -0000 1.23 @@ -1,16 +1,16 @@ Summary: HDF4 data handler for the OPeNDAP Data server Name: dap-hdf4_handler -Version: 3.7.9 -Release: 2%{?dist} +Version: 3.7.14 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/hdf4_handler-%{version}.tar.gz -Patch0: hdf4_handler-3.7.9-gcc43.patch URL: http://www.opendap.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libdap-devel >= 3.8.2 hdf-devel -BuildRequires: bes-devel +BuildRequires: libdap-devel >= 3.9.3 +BuildRequires: bes-devel > 3.7.2 +BuildRequires: hdf-devel %description This is the hdf4 data handler for our data server. It reads HDF4 and HDF-EOS @@ -19,7 +19,6 @@ dap-server software. %prep %setup -q -n hdf4_handler-%{version} -%patch0 -p1 -b .gcc43 %build %configure --disable-dependency-tracking --disable-static @@ -43,6 +42,10 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT_URI NEWS README %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.7.14-1 +- Update to 3.7.14 +- Drop gcc43 patch, fixed upstream + * Tue Feb 24 2009 Fedora Release Engineering - 3.7.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dap-hdf4_handler/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 10 Sep 2008 17:00:37 -0000 1.8 +++ sources 23 Jul 2009 03:45:57 -0000 1.9 @@ -1 +1 @@ -48b9705084629b3dab9a72c0026b0e3e hdf4_handler-3.7.9.tar.gz +c8cdffbc37793bd56c785df56af2ab8c hdf4_handler-3.7.14.tar.gz --- hdf4_handler-3.7.9-gcc43.patch DELETED --- From orion at fedoraproject.org Thu Jul 23 03:53:32 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 03:53:32 +0000 (UTC) Subject: rpms/dap-hdf4_handler/devel dap-hdf4_handler.spec,1.23,1.24 Message-ID: <20090723035332.9443711C0099@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/dap-hdf4_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1038 Modified Files: dap-hdf4_handler.spec Log Message: Correct bes-devel version requirement Index: dap-hdf4_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-hdf4_handler/devel/dap-hdf4_handler.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- dap-hdf4_handler.spec 23 Jul 2009 03:45:57 -0000 1.23 +++ dap-hdf4_handler.spec 23 Jul 2009 03:53:02 -0000 1.24 @@ -9,7 +9,7 @@ URL: http://www.opendap.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libdap-devel >= 3.9.3 -BuildRequires: bes-devel > 3.7.2 +BuildRequires: bes-devel >= 3.7.2 BuildRequires: hdf-devel %description From lutter at fedoraproject.org Thu Jul 23 04:02:21 2009 From: lutter at fedoraproject.org (David Lutterkort) Date: Thu, 23 Jul 2009 04:02:21 +0000 (UTC) Subject: rpms/netcf/F-10 import.log, NONE, 1.1 netcf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723040221.9C2B111C007C@cvs1.fedora.phx.redhat.com> Author: lutter Update of /cvs/pkgs/rpms/netcf/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5045/F-10 Modified Files: .cvsignore sources Added Files: import.log netcf.spec Log Message: Initial Import --- NEW FILE import.log --- netcf-0_1_0-1_fc12:F-10:netcf-0.1.0-1.fc12.src.rpm:1248321565 --- NEW FILE netcf.spec --- Name: netcf Version: 0.1.0 Release: 1%{?dist}%{?extra_release} Summary: Cross-platform network configuration library Group: System Environment/Libraries License: LGPLv2+ URL: https://fedorahosted.org/netcf/ Source0: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: readline-devel augeas-devel >= 0.5.2 BuildRequires: libxml2-devel libxslt-devel Requires: %{name}-libs = %{version}-%{release} %description A library for modifying the network configuration of a system. Network configurations are expresed in a platform-independent XML format, which netcf translates into changes to the system's 'native' network configuration files. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package libs Summary: Libraries for %{name} Group: System Environment/Libraries %description libs The libraries for %{name}. %prep %setup -q %build %configure --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' %clean rm -rf $RPM_BUILD_ROOT %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %{_bindir}/ncftool %files libs %defattr(-,root,root,-) %{_datadir}/netcf %{_libdir}/*.so.* %doc AUTHORS COPYING NEWS %files devel %defattr(-,root,root,-) %doc %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/netcf.pc %changelog * Mon Jul 13 2009 David Lutterkort - 0.1.0-1 - BR on augeas-0.5.2 - Drop explicit requires for augeas-libs * Wed Apr 15 2009 David Lutterkort - 0.0.2-1 - Updates acording to Fedora review * Fri Feb 27 2009 David Lutterkort - 0.0.1-1 - Initial specfile Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/netcf/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 17 Apr 2009 21:32:04 -0000 1.1 +++ .cvsignore 23 Jul 2009 04:01:51 -0000 1.2 @@ -0,0 +1 @@ +netcf-0.1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/netcf/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 17 Apr 2009 21:32:04 -0000 1.1 +++ sources 23 Jul 2009 04:01:51 -0000 1.2 @@ -0,0 +1 @@ +6172c399b47a5311ff8d70fd2efd1823 netcf-0.1.0.tar.gz From phuang at fedoraproject.org Thu Jul 23 05:09:59 2009 From: phuang at fedoraproject.org (Huang Peng) Date: Thu, 23 Jul 2009 05:09:59 +0000 (UTC) Subject: rpms/ibus/devel .cvsignore, 1.35, 1.36 ibus.spec, 1.74, 1.75 sources, 1.40, 1.41 Message-ID: <20090723050959.2908F11C0093@cvs1.fedora.phx.redhat.com> Author: phuang Update of /cvs/pkgs/rpms/ibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17865 Modified Files: .cvsignore ibus.spec sources Log Message: Update to 1.2.0.20090723 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/.cvsignore,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- .cvsignore 22 Jul 2009 05:37:03 -0000 1.35 +++ .cvsignore 23 Jul 2009 05:09:28 -0000 1.36 @@ -1 +1 @@ -ibus-1.2.0.20090722.tar.gz +ibus-1.2.0.20090723.tar.gz Index: ibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- ibus.spec 22 Jul 2009 05:37:04 -0000 1.74 +++ ibus.spec 23 Jul 2009 05:09:28 -0000 1.75 @@ -7,7 +7,7 @@ %define im_chooser_version 1.2.5 Name: ibus -Version: 1.2.0.20090722 +Version: 1.2.0.20090723 Release: 1%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPLv2+ @@ -228,6 +228,10 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Thu Jul 23 2009 Peng Huang - 1.2.0.20090723-1 +- Update to 1.2.0.20090723 +- Fix dead loop in ibus-gconf + * Wed Jul 22 2009 Peng Huang - 1.2.0.20090722-1 - Update to 1.2.0.20090722 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/sources,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- sources 22 Jul 2009 05:37:04 -0000 1.40 +++ sources 23 Jul 2009 05:09:28 -0000 1.41 @@ -1 +1 @@ -e59f7ce50089d7d096e9f9ecf4c4e0b4 ibus-1.2.0.20090722.tar.gz +fa9f880953d4a34a4c4e72a5db763b5f ibus-1.2.0.20090723.tar.gz From athimm at fedoraproject.org Thu Jul 23 05:28:21 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 05:28:21 +0000 (UTC) Subject: rpms/vtk/devel vtk-5.2.0-pythondestdir.patch, 1.2, 1.3 vtk.spec, 1.21, 1.22 vtk-5.2.1-pythondestdir.patch, 1.1, NONE Message-ID: <20090723052821.9DA3B11C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25778/devel Modified Files: vtk.spec Added Files: vtk-5.2.0-pythondestdir.patch Removed Files: vtk-5.2.1-pythondestdir.patch Log Message: Update to 5.4.2, undo some breakage in recent specfiles. vtk-5.2.0-pythondestdir.patch: CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: vtk-5.2.0-pythondestdir.patch =================================================================== RCS file: vtk-5.2.0-pythondestdir.patch diff -N vtk-5.2.0-pythondestdir.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ vtk-5.2.0-pythondestdir.patch 23 Jul 2009 05:28:21 -0000 1.3 @@ -0,0 +1,11 @@ +--- VTK/Wrapping/Python/CMakeLists.txt.pythondestdir 2008-05-03 21:34:42.000000000 +0200 ++++ VTK/Wrapping/Python/CMakeLists.txt 2008-10-05 11:15:44.000000000 +0200 +@@ -348,7 +348,7 @@ + + # Create default python setup arguments if they are not set. + IF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) +- SET(VTK_PYTHON_SETUP_ARGS "--prefix=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" ++ SET(VTK_PYTHON_SETUP_ARGS "--root=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" + CACHE STRING "Arguments passed to \"python setup.py install ...\" during installation.") + MARK_AS_ADVANCED(VTK_PYTHON_SETUP_ARGS) + ENDIF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) Index: vtk.spec =================================================================== RCS file: /cvs/extras/rpms/vtk/devel/vtk.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- vtk.spec 18 Jun 2009 18:36:55 -0000 1.21 +++ vtk.spec 23 Jul 2009 05:28:21 -0000 1.22 @@ -7,14 +7,14 @@ Summary: The Visualization Toolkit - A high level 3D visualization library Name: vtk Version: 5.4.2 -Release: 31%{?dist} +Release: 33%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant License: BSD Group: System Environment/Libraries Source: http://www.vtk.org/files/release/5.4/%{name}-%{version}.tar.gz -Patch0: vtk-5.2.1-pythondestdir.patch +Patch0: vtk-5.2.0-pythondestdir.patch Patch1: vtk-5.2.0-gcc43.patch URL: http://vtk.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -194,8 +194,8 @@ cmake_command="cmake . \ -DVTK_USE_QVTK=ON \ %if %{with qt4} -DDESIRED_QT_VERSION=4 \ - -DQT_MOC_EXECUTABLE=%{_libdir}/qt4/bin/moc \ - -DVTK_INSTALL_QT_DIR=`qmake-qt4 -query QT_INSTALL_PREFIX`/plugins/designer \ + -DQT_MOC_EXECUTABLE=`pkg-config --variable=moc_location QtCore` \ + -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ %else -DDESIRED_QT_VERSION:STRING=3 \ -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ @@ -230,6 +230,7 @@ if [ "%{_lib}" != lib -a "`ls %{buildroo mkdir -p %{buildroot}%{_libdir} mv %{buildroot}%{_prefix}/lib/* %{buildroot}%{_libdir}/ fi +mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ # Gather list of non-python/tcl libraries ls %{buildroot}%{_libdir}/*.so.* \ @@ -237,8 +238,8 @@ ls %{buildroot}%{_libdir}/*.so.* \ # List of executable utilities cat > utils.list << EOF -vtkParseOGLExt vtkEncodeString +lproj EOF # List of executable examples @@ -300,7 +301,6 @@ done cat libs.list utils.list > main.list # Make shared libs and scripts executable -mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ chmod a+x %{buildroot}%{_libdir}/lib*.so.* chmod a+x %{buildroot}%{_libdir}/vtk-5.4/doxygen/*.pl chmod a+x %{buildroot}%{_libdir}/vtk-5.4/testing/*.{py,tcl} @@ -315,9 +315,11 @@ find Utilities/Upgrading -type f | xargs # Add exec bits to shared libs ... #chmod 0755 %{buildroot}%{_libdir}/vtk-5.4/CMake/*.so -# Set proper perms on python shared libs ... chmod 0755 %{buildroot}%{_libdir}/python*/site-packages/vtk/*.so +# Verdict places the docs in the false folder +rm -fr %{buildroot}%{_libdir}/vtk-5.4/doc + %check #LD_LIBARARY_PATH=`pwd`/bin ctest -V @@ -400,9 +402,6 @@ rm -rf %{buildroot} %doc vtk-examples-5.4/Examples %changelog -* Thu Jun 18 2009 Alex Lancaster - 5.4.2-31 -- Fix pythondestdir patch file name - * Sat Jun 6 2009 Axel Thimm - 5.4.2-30 - Update to 5.4.2. --- vtk-5.2.1-pythondestdir.patch DELETED --- From athimm at fedoraproject.org Thu Jul 23 05:28:51 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 05:28:51 +0000 (UTC) Subject: rpms/vtk/F-11 vtk-5.2.0-pythondestdir.patch, 1.2, 1.3 vtk.spec, 1.20, 1.21 vtk-5.2.1-pythondestdir.patch, 1.1, NONE Message-ID: <20090723052851.49F3711C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25778/F-11 Modified Files: vtk.spec Added Files: vtk-5.2.0-pythondestdir.patch Removed Files: vtk-5.2.1-pythondestdir.patch Log Message: Update to 5.4.2, undo some breakage in recent specfiles. vtk-5.2.0-pythondestdir.patch: CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: vtk-5.2.0-pythondestdir.patch =================================================================== RCS file: vtk-5.2.0-pythondestdir.patch diff -N vtk-5.2.0-pythondestdir.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ vtk-5.2.0-pythondestdir.patch 23 Jul 2009 05:28:21 -0000 1.3 @@ -0,0 +1,11 @@ +--- VTK/Wrapping/Python/CMakeLists.txt.pythondestdir 2008-05-03 21:34:42.000000000 +0200 ++++ VTK/Wrapping/Python/CMakeLists.txt 2008-10-05 11:15:44.000000000 +0200 +@@ -348,7 +348,7 @@ + + # Create default python setup arguments if they are not set. + IF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) +- SET(VTK_PYTHON_SETUP_ARGS "--prefix=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" ++ SET(VTK_PYTHON_SETUP_ARGS "--root=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" + CACHE STRING "Arguments passed to \"python setup.py install ...\" during installation.") + MARK_AS_ADVANCED(VTK_PYTHON_SETUP_ARGS) + ENDIF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) Index: vtk.spec =================================================================== RCS file: /cvs/extras/rpms/vtk/F-11/vtk.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- vtk.spec 8 Jun 2009 06:04:08 -0000 1.20 +++ vtk.spec 23 Jul 2009 05:28:21 -0000 1.21 @@ -7,7 +7,7 @@ Summary: The Visualization Toolkit - A high level 3D visualization library Name: vtk Version: 5.4.2 -Release: 30%{?dist} +Release: 33%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -194,8 +194,8 @@ cmake_command="cmake . \ -DVTK_USE_QVTK=ON \ %if %{with qt4} -DDESIRED_QT_VERSION=4 \ - -DQT_MOC_EXECUTABLE=%{_libdir}/qt4/bin/moc \ - -DVTK_INSTALL_QT_DIR=`qmake-qt4 -query QT_INSTALL_PREFIX`/plugins/designer \ + -DQT_MOC_EXECUTABLE=`pkg-config --variable=moc_location QtCore` \ + -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ %else -DDESIRED_QT_VERSION:STRING=3 \ -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ @@ -230,6 +230,7 @@ if [ "%{_lib}" != lib -a "`ls %{buildroo mkdir -p %{buildroot}%{_libdir} mv %{buildroot}%{_prefix}/lib/* %{buildroot}%{_libdir}/ fi +mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ # Gather list of non-python/tcl libraries ls %{buildroot}%{_libdir}/*.so.* \ @@ -237,8 +238,8 @@ ls %{buildroot}%{_libdir}/*.so.* \ # List of executable utilities cat > utils.list << EOF -vtkParseOGLExt vtkEncodeString +lproj EOF # List of executable examples @@ -300,7 +301,6 @@ done cat libs.list utils.list > main.list # Make shared libs and scripts executable -mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ chmod a+x %{buildroot}%{_libdir}/lib*.so.* chmod a+x %{buildroot}%{_libdir}/vtk-5.4/doxygen/*.pl chmod a+x %{buildroot}%{_libdir}/vtk-5.4/testing/*.{py,tcl} @@ -315,9 +315,11 @@ find Utilities/Upgrading -type f | xargs # Add exec bits to shared libs ... #chmod 0755 %{buildroot}%{_libdir}/vtk-5.4/CMake/*.so -# Set proper perms on python shared libs ... chmod 0755 %{buildroot}%{_libdir}/python*/site-packages/vtk/*.so +# Verdict places the docs in the false folder +rm -fr %{buildroot}%{_libdir}/vtk-5.4/doc + %check #LD_LIBARARY_PATH=`pwd`/bin ctest -V --- vtk-5.2.1-pythondestdir.patch DELETED --- From athimm at fedoraproject.org Thu Jul 23 05:28:50 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 05:28:50 +0000 (UTC) Subject: rpms/vtk/F-10 vtk-5.2.0-gcc43.patch, NONE, 1.1 vtk-5.2.0-pythondestdir.patch, NONE, 1.1 vtk.spec, 1.15, 1.16 Message-ID: <20090723052850.F3E4511C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtk/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25778/F-10 Modified Files: vtk.spec Added Files: vtk-5.2.0-gcc43.patch vtk-5.2.0-pythondestdir.patch Log Message: Update to 5.4.2, undo some breakage in recent specfiles. vtk-5.2.0-gcc43.patch: DICOMAppHelper.cxx | 2 +- DICOMFile.cxx | 2 +- DICOMParser.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE vtk-5.2.0-gcc43.patch --- --- VTK/Utilities/DICOMParser/DICOMAppHelper.cxx.gcc43 2008-03-19 21:22:17.000000000 +0100 +++ VTK/Utilities/DICOMParser/DICOMAppHelper.cxx 2008-10-05 11:46:08.000000000 +0200 @@ -32,7 +32,7 @@ #include #include #include -#include +#include #include #include #if defined(__BORLANDC__) --- VTK/Utilities/DICOMParser/DICOMFile.cxx.gcc43 2008-03-19 21:22:17.000000000 +0100 +++ VTK/Utilities/DICOMParser/DICOMFile.cxx 2008-10-05 11:46:02.000000000 +0200 @@ -27,7 +27,7 @@ #include #include -#include +#include DICOMFile::DICOMFile() : InputStream() { --- VTK/Utilities/DICOMParser/DICOMParser.cxx.gcc43 2008-07-21 19:03:03.000000000 +0200 +++ VTK/Utilities/DICOMParser/DICOMParser.cxx 2008-10-05 11:45:56.000000000 +0200 @@ -40,7 +40,7 @@ #endif #include -#include +#include // Define DEBUG_DICOM to get debug messages sent to dicom_stream::cerr // #define DEBUG_DICOM vtk-5.2.0-pythondestdir.patch: CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE vtk-5.2.0-pythondestdir.patch --- --- VTK/Wrapping/Python/CMakeLists.txt.pythondestdir 2008-05-03 21:34:42.000000000 +0200 +++ VTK/Wrapping/Python/CMakeLists.txt 2008-10-05 11:15:44.000000000 +0200 @@ -348,7 +348,7 @@ # Create default python setup arguments if they are not set. IF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) - SET(VTK_PYTHON_SETUP_ARGS "--prefix=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" + SET(VTK_PYTHON_SETUP_ARGS "--root=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" CACHE STRING "Arguments passed to \"python setup.py install ...\" during installation.") MARK_AS_ADVANCED(VTK_PYTHON_SETUP_ARGS) ENDIF(NOT DEFINED VTK_PYTHON_SETUP_ARGS) Index: vtk.spec =================================================================== RCS file: /cvs/extras/rpms/vtk/F-10/vtk.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- vtk.spec 8 Jun 2009 06:04:08 -0000 1.15 +++ vtk.spec 23 Jul 2009 05:28:20 -0000 1.16 @@ -7,7 +7,7 @@ Summary: The Visualization Toolkit - A high level 3D visualization library Name: vtk Version: 5.4.2 -Release: 30%{?dist} +Release: 33%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -194,8 +194,8 @@ cmake_command="cmake . \ -DVTK_USE_QVTK=ON \ %if %{with qt4} -DDESIRED_QT_VERSION=4 \ - -DQT_MOC_EXECUTABLE=%{_libdir}/qt4/bin/moc \ - -DVTK_INSTALL_QT_DIR=`qmake-qt4 -query QT_INSTALL_PREFIX`/plugins/designer \ + -DQT_MOC_EXECUTABLE=`pkg-config --variable=moc_location QtCore` \ + -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ %else -DDESIRED_QT_VERSION:STRING=3 \ -DVTK_INSTALL_QT_DIR=`qmake -query QT_INSTALL_PREFIX`/plugins/designer \ @@ -230,6 +230,7 @@ if [ "%{_lib}" != lib -a "`ls %{buildroo mkdir -p %{buildroot}%{_libdir} mv %{buildroot}%{_prefix}/lib/* %{buildroot}%{_libdir}/ fi +mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ # Gather list of non-python/tcl libraries ls %{buildroot}%{_libdir}/*.so.* \ @@ -237,8 +238,8 @@ ls %{buildroot}%{_libdir}/*.so.* \ # List of executable utilities cat > utils.list << EOF -vtkParseOGLExt vtkEncodeString +lproj EOF # List of executable examples @@ -300,7 +301,6 @@ done cat libs.list utils.list > main.list # Make shared libs and scripts executable -mv %{buildroot}%{_libdir}/vtk-5.4/lib*.so* %{buildroot}%{_libdir}/ chmod a+x %{buildroot}%{_libdir}/lib*.so.* chmod a+x %{buildroot}%{_libdir}/vtk-5.4/doxygen/*.pl chmod a+x %{buildroot}%{_libdir}/vtk-5.4/testing/*.{py,tcl} @@ -315,9 +315,11 @@ find Utilities/Upgrading -type f | xargs # Add exec bits to shared libs ... #chmod 0755 %{buildroot}%{_libdir}/vtk-5.4/CMake/*.so -# Set proper perms on python shared libs ... chmod 0755 %{buildroot}%{_libdir}/python*/site-packages/vtk/*.so +# Verdict places the docs in the false folder +rm -fr %{buildroot}%{_libdir}/vtk-5.4/doc + %check #LD_LIBARARY_PATH=`pwd`/bin ctest -V From kushal at fedoraproject.org Thu Jul 23 05:51:02 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Thu, 23 Jul 2009 05:51:02 +0000 (UTC) Subject: rpms/lekhonee/devel .cvsignore, 1.6, 1.7 import.log, 1.6, 1.7 lekhonee.spec, 1.6, 1.7 sources, 1.7, 1.8 Message-ID: <20090723055102.40E0F11C0093@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2484/devel Modified Files: .cvsignore import.log lekhonee.spec sources Log Message: New release of lekhonee Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 3 Jul 2009 10:32:18 -0000 1.6 +++ .cvsignore 23 Jul 2009 05:50:30 -0000 1.7 @@ -1 +1 @@ -lekhonee-0.6.tar.gz +lekhonee-0.7.tar.gz Index: import.log =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/import.log,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- import.log 3 Jul 2009 10:32:18 -0000 1.6 +++ import.log 23 Jul 2009 05:50:30 -0000 1.7 @@ -4,3 +4,4 @@ lekhonee-0_4-4_fc11:HEAD:lekhonee-0.4-4. lekhonee-0_4-5_fc11:HEAD:lekhonee-0.4-5.fc11.src.rpm:1245244541 lekhonee-0_5-3_fc11:HEAD:lekhonee-0.5-3.fc11.src.rpm:1246427975 lekhonee-0_6-1_fc11:HEAD:lekhonee-0.6-1.fc11.src.rpm:1246617217 +lekhonee-0_7-1_fc11:HEAD:lekhonee-0.7-1.fc11.src.rpm:1248328274 Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/lekhonee.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lekhonee.spec 3 Jul 2009 10:32:18 -0000 1.6 +++ lekhonee.spec 23 Jul 2009 05:50:30 -0000 1.7 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.6 +Version: 0.7 Release: 1%{?dist} Summary: A blog client @@ -13,7 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel, python-setuptools, PyQt4-devel, desktop-file-utils, PyKDE4-devel -Requires: PyQt4, mx, PyKDE4 +Requires: PyQt4, mx, PyKDE4, python-magic Requires: %{name}-lib = %{version}-%{release} %description @@ -29,7 +29,7 @@ The backend library for wordpress deskto %package gnome Summary: Wordpress desktop client frontend for Gnome Group: Applications/Internet -Requires: gnome-python2-gtkspell pygtksourceview pywebkitgtk %{name}-lib +Requires: gnome-python2-gtkspell, pygtksourceview, pywebkitgtk, %{name}-lib, python-magic Requires: %{name}-lib = %{version}-%{release} %description gnome @@ -39,6 +39,7 @@ Wordpress desktop client frontend for Gn %prep %setup -q +sed -i -e "s|#!/usr/bin/env python||" Chotha/LekhoneeUI.py %build @@ -83,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Wed Jul 22 2009 Kushal Das 0.7-1 +- New release + * Fri Jul 03 2009 Kushal Das 0.6-1 - New release Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Jul 2009 10:32:18 -0000 1.7 +++ sources 23 Jul 2009 05:50:30 -0000 1.8 @@ -1 +1 @@ -9b2f18145670f0956a1190416438bd2d lekhonee-0.6.tar.gz +c516d60ef57fcfa34a681fc3bb27b789 lekhonee-0.7.tar.gz From mhlavink at fedoraproject.org Thu Jul 23 06:47:01 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Thu, 23 Jul 2009 06:47:01 +0000 (UTC) Subject: rpms/dovecot/devel .cvsignore, 1.53, 1.54 dovecot.spec, 1.128, 1.129 sources, 1.57, 1.58 Message-ID: <20090723064701.556BC11C0093@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23199 Modified Files: .cvsignore dovecot.spec sources Log Message: update sieve plugin to 0.1.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/.cvsignore,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- .cvsignore 13 Jul 2009 14:33:17 -0000 1.53 +++ .cvsignore 23 Jul 2009 06:46:29 -0000 1.54 @@ -1,4 +1,4 @@ dovecot-1.2.1.tar.gz dovecot-1.2-managesieve-0.11.7.tar.gz dovecot-1.2.1-managesieve-0.11.7.diff.gz -dovecot-1.2-sieve-0.1.8.tar.gz +dovecot-1.2-sieve-0.1.9.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/dovecot.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- dovecot.spec 13 Jul 2009 14:33:17 -0000 1.128 +++ dovecot.spec 23 Jul 2009 06:46:29 -0000 1.129 @@ -2,7 +2,7 @@ Summary: Secure imap and pop3 server Name: dovecot Epoch: 1 Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -14,7 +14,7 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 0.1.8 +%define sieve_version 0.1.9 %define sieve_name dovecot-1.2-sieve %define managesieve_version 0.11.7 #define managesieve_name dovecot-%{version}-managesieve @@ -213,10 +213,11 @@ cd %{sieve_name}-%{sieve_version} rm -f ./"configure" autoreconf -i -f -%configure \ +%configure \ INSTALL_DATA="install -c -p -m644" \ - --disable-static \ - --with-dovecot=../ + --disable-static \ + --with-dovecot=../ \ + --with-unfinished-features make %{?_smp_mflags} %endif @@ -435,6 +436,9 @@ fi %changelog +* Thu Jul 23 2009 Michal Hlavinka - 1:1.2.1-2 +- updated sieve plugin to 0.1.9 + * Mon Jul 13 2009 Michal Hlavinka - 1:1.2.1-1 - updated to 1.2.1 - GSSAPI authentication is fixed (#506782) Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/devel/sources,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- sources 13 Jul 2009 14:33:17 -0000 1.57 +++ sources 23 Jul 2009 06:46:29 -0000 1.58 @@ -1,4 +1,4 @@ c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz 61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz -364ca99ec75d7c149ed2f2de15debf8a dovecot-1.2-sieve-0.1.8.tar.gz +a9a9254def9e9a05105aa56a960ac7fa dovecot-1.2-sieve-0.1.9.tar.gz From mhlavink at fedoraproject.org Thu Jul 23 06:47:09 2009 From: mhlavink at fedoraproject.org (Michal Hlavinka) Date: Thu, 23 Jul 2009 06:47:09 +0000 (UTC) Subject: rpms/dovecot/F-11 .cvsignore, 1.61, 1.62 dovecot.spec, 1.135, 1.136 sources, 1.64, 1.65 Message-ID: <20090723064709.6119311C0093@cvs1.fedora.phx.redhat.com> Author: mhlavink Update of /cvs/extras/rpms/dovecot/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23226 Modified Files: .cvsignore dovecot.spec sources Log Message: update sieve plugin to 0.1.9 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 13 Jul 2009 07:22:27 -0000 1.61 +++ .cvsignore 23 Jul 2009 06:46:38 -0000 1.62 @@ -1,4 +1,4 @@ dovecot-1.2.1.tar.gz dovecot-1.2-managesieve-0.11.7.tar.gz dovecot-1.2.1-managesieve-0.11.7.diff.gz -dovecot-1.2-sieve-0.1.8.tar.gz +dovecot-1.2-sieve-0.1.9.tar.gz Index: dovecot.spec =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/dovecot.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- dovecot.spec 13 Jul 2009 07:16:30 -0000 1.135 +++ dovecot.spec 23 Jul 2009 06:46:39 -0000 1.136 @@ -2,7 +2,7 @@ Summary: Dovecot Secure imap server Name: dovecot Epoch: 1 Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -14,10 +14,9 @@ Group: System Environment/Daemons %define build_sieve 1 %define build_managesieve 1 -%define sieve_version 0.1.8 +%define sieve_version 0.1.9 %define sieve_name dovecot-1.2-sieve %define managesieve_version 0.11.7 -#define managesieve_name dovecot-%{version}-managesieve %define managesieve_name dovecot-1.2-managesieve URL: http://www.dovecot.org/ @@ -29,7 +28,6 @@ Source4: migrate-folders Source5: migrate-users Source6: perfect_maildir.pl Source7: dovecot-REDHAT-FAQ.txt -#Source8: http://dovecot.org/releases/sieve/%{sieve_name}-%{sieve_version}.tar.gz Source8: http://www.rename-it.nl/dovecot/1.2/%{sieve_name}-%{sieve_version}.tar.gz Source9: dovecot.sysconfig Source10: http://www.rename-it.nl/dovecot/1.2/%{managesieve_name}-%{managesieve_version}.tar.gz @@ -213,10 +211,11 @@ cd %{sieve_name}-%{sieve_version} rm -f ./"configure" autoreconf -i -f -%configure \ +%configure \ INSTALL_DATA="install -c -p -m644" \ - --disable-static \ - --with-dovecot=../ + --disable-static \ + --with-dovecot=../ \ + --with-unfinished-features make %{?_smp_mflags} %endif @@ -263,7 +262,7 @@ chmod 600 $RPM_BUILD_ROOT%{ssldir}/priva mkdir -p $RPM_BUILD_ROOT/var/run/dovecot/login chmod 755 $RPM_BUILD_ROOT/var/run/dovecot chmod 700 $RPM_BUILD_ROOT/var/run/dovecot/login - + # Install dovecot.conf and dovecot-openssl.cnf mkdir -p $RPM_BUILD_ROOT%{ssldir} install -p -m644 dovecot-example.conf $RPM_BUILD_ROOT%{_sysconfdir}/dovecot.conf @@ -435,6 +434,9 @@ fi %changelog +* Thu Jul 23 2009 Michal Hlavinka - 1:1.2.1-2 +- updated sieve plugin to 0.1.9 + * Mon Jul 13 2009 Michal Hlavinka - 1:1.2.1-1 - updated to 1.2.1 - GSSAPI authentication is fixed (#506782) Index: sources =================================================================== RCS file: /cvs/extras/rpms/dovecot/F-11/sources,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sources 13 Jul 2009 07:22:28 -0000 1.64 +++ sources 23 Jul 2009 06:46:39 -0000 1.65 @@ -1,4 +1,4 @@ c269cfe38fc40061e232dd28e5fe3721 dovecot-1.2.1.tar.gz 61e84cf3749e3ec1ce1f41e918f1f0b0 dovecot-1.2-managesieve-0.11.7.tar.gz a2b944bd9a477fd4c2bf65fe086369a6 dovecot-1.2.1-managesieve-0.11.7.diff.gz -364ca99ec75d7c149ed2f2de15debf8a dovecot-1.2-sieve-0.1.8.tar.gz +a9a9254def9e9a05105aa56a960ac7fa dovecot-1.2-sieve-0.1.9.tar.gz From pmatilai at fedoraproject.org Thu Jul 23 06:54:38 2009 From: pmatilai at fedoraproject.org (Panu Matilainen) Date: Thu, 23 Jul 2009 06:54:38 +0000 (UTC) Subject: rpms/rpm/F-11 rpm.spec, 1.352, 1.353 sources, 1.142, 1.143 rpm-4.7.0-findlang-kde3.patch, 1.1, NONE rpm-4.7.0-fp-findbyfile.patch, 1.1, NONE rpm-4.7.0-fp-symlink.patch, 1.1, NONE rpm-4.7.0-hardlink-sizes.patch, 1.1, NONE rpm-4.7.0-prtsig.patch, 1.1, NONE rpm-4.7.0-python-altnevr.patch, 1.1, NONE Message-ID: <20090723065438.75D3411C0093@cvs1.fedora.phx.redhat.com> Author: pmatilai Update of /cvs/pkgs/rpms/rpm/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26297 Modified Files: rpm.spec sources Removed Files: rpm-4.7.0-findlang-kde3.patch rpm-4.7.0-fp-findbyfile.patch rpm-4.7.0-fp-symlink.patch rpm-4.7.0-hardlink-sizes.patch rpm-4.7.0-prtsig.patch rpm-4.7.0-python-altnevr.patch Log Message: - update to 4.7.1 (http://rpm.org/wiki/Releases/4.7.1) - fixes #461353, #475359, #502269, #508021, #509637, #511101 - enable XZ support - fix source url Index: rpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpm/F-11/rpm.spec,v retrieving revision 1.352 retrieving revision 1.353 diff -u -p -r1.352 -r1.353 --- rpm.spec 18 Jun 2009 16:05:04 -0000 1.352 +++ rpm.spec 23 Jul 2009 06:54:08 -0000 1.353 @@ -1,5 +1,5 @@ -# rawhide doesn't have new enough lzma yet -%bcond_with lzma +# build against xz? +%bcond_without xz # sqlite backend is broken atm, disabled for now %bcond_with sqlite # just for giggles, option to build with internal Berkeley DB @@ -15,7 +15,7 @@ %define rpmhome /usr/lib/rpm -%define rpmver 4.7.0 +%define rpmver 4.7.1 %define snapver {nil} %define srcver %{rpmver} @@ -25,10 +25,10 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: 2%{?dist} +Release: 1%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ -Source0: http://rpm.org/releases/testing/%{name}-%{srcver}.tar.bz2 +Source0: http://rpm.org/releases/rpm-4.7.x/%{name}-%{srcver}.tar.bz2 %if %{with int_bdb} Source1: db-%{bdbver}.tar.gz %endif @@ -43,12 +43,6 @@ Patch2: rpm-4.5.90-gstreamer-provides.pa Patch3: rpm-4.6.0-fedora-specspo.patch # Patches already in upstream -Patch200: rpm-4.7.0-findlang-kde3.patch -Patch201: rpm-4.7.0-prtsig.patch -Patch202: rpm-4.7.0-python-altnevr.patch -Patch203: rpm-4.7.0-hardlink-sizes.patch -Patch204: rpm-4.7.0-fp-symlink.patch -Patch205: rpm-4.7.0-fp-findbyfile.patch # These are not yet upstream Patch300: rpm-4.7.0-extra-provides.patch @@ -93,8 +87,8 @@ BuildRequires: ncurses-devel BuildRequires: bzip2-devel >= 0.9.0c-2 BuildRequires: python-devel >= 2.2 BuildRequires: lua-devel >= 5.1 -%if %{with lzma} -BuildRequires: lzma-devel >= 4.42 +%if %{with xz} +BuildRequires: xz-devel >= 4.999.8 %endif %if %{with sqlite} BuildRequires: sqlite-devel @@ -130,8 +124,8 @@ Requires: nss-devel Requires: libselinux-devel Requires: elfutils-libelf-devel Requires: popt-devel -%if %{with lzma} -Requires: lzma-devel >= 4.42 +%if %{with xz} +Requires: xz-devel >= 4.999.8 %endif %if %{with sqlite} Requires: sqlite-devel @@ -154,7 +148,7 @@ Group: Development/Tools Requires: rpm = %{version}-%{release} Requires: elfutils >= 0.128 binutils Requires: findutils sed grep gawk diffutils file patch >= 2.5 -Requires: unzip gzip bzip2 cpio lzma +Requires: unzip gzip bzip2 cpio lzma xz Requires: pkgconfig %description build @@ -190,13 +184,6 @@ that will manipulate RPM packages and da %patch2 -p1 -b .gstreamer-prov %patch3 -p1 -b .fedora-specspo -%patch200 -p1 -b .findlang-kde3 -%patch201 -p1 -b .prtsig -%patch202 -p1 -b .py-altnevr -%patch203 -p1 -b .hardlink-sizes -%patch204 -p1 -b .fp-symlink -%patch205 -p1 -b .fp-findbyfile - %patch300 -p1 -b .extra-prov %patch301 -p1 -b .niagara @@ -406,6 +393,12 @@ exit 0 %doc doc/librpm/html/* %changelog +* Thu Jul 23 2009 Panu Matilainen - 4.7.1-1 +- update to 4.7.1 (http://rpm.org/wiki/Releases/4.7.1) +- fixes #461353, #475359, #502269, #508021, #509637, #511101 +- enable XZ support +- fix source url + * Thu Jun 18 2009 Panu Matilainen - 4.7.0-2 - file classification tweaks for text files (#494817) - disable libmagic text token checks, it's way too error-prone Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rpm/F-11/sources,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- sources 16 Apr 2009 09:24:08 -0000 1.142 +++ sources 23 Jul 2009 06:54:08 -0000 1.143 @@ -1 +1 @@ -74791d638c571ec79f06227d453a6a03 rpm-4.7.0.tar.bz2 +e1abe3bcf6514a319a3803d2cf3bf83b rpm-4.7.1.tar.bz2 --- rpm-4.7.0-findlang-kde3.patch DELETED --- --- rpm-4.7.0-fp-findbyfile.patch DELETED --- --- rpm-4.7.0-fp-symlink.patch DELETED --- --- rpm-4.7.0-hardlink-sizes.patch DELETED --- --- rpm-4.7.0-prtsig.patch DELETED --- --- rpm-4.7.0-python-altnevr.patch DELETED --- From jgarzik at fedoraproject.org Thu Jul 23 07:01:57 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 23 Jul 2009 07:01:57 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.5,1.6 sources,1.4,1.5 Message-ID: <20090723070157.42A7F11C0093@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28962 Modified Files: cld.spec sources Log Message: update to fix koji-related 'make check' issues in package Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cld.spec 22 Jul 2009 22:07:08 -0000 1.5 +++ cld.spec 23 Jul 2009 07:01:26 -0000 1.6 @@ -1,13 +1,13 @@ Name: cld Version: 0.2 -Release: 0.5.g988e17d1%{?dist} +Release: 0.6.g2a5e626a%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 988e17d1b0ad8eef6df3f6f237e261d388adff59 +# pulled from upstream git, commit 2a5e626aa6e08d894e74af053236947cced8ff87. # to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init @@ -97,6 +97,10 @@ fi %{_includedir}/* %changelog +* Thu Jul 23 2009 Jeff Garzik - 0.2-0.6.g2a5e626a +- update to commit 2a5e626aa6e08d894e74af053236947cced8ff87 + to fix koji-related 'make check' logging issues. + * Tue Jul 21 2009 Jeff Garzik - 0.2-0.5.g988e17d1 - update to commit 988e17d1b0ad8eef6df3f6f237e261d388adff59 - remove ExcludeArch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 22 Jul 2009 22:07:08 -0000 1.4 +++ sources 23 Jul 2009 07:01:26 -0000 1.5 @@ -1 +1 @@ -0f0f468a4ded6e150a44a4223f94a4d9 cld-0.2git.tar.gz +4a6a91e8f4ff923fc2b68097aad3815b cld-0.2git.tar.gz From than at fedoraproject.org Thu Jul 23 08:01:10 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 23 Jul 2009 08:01:10 +0000 (UTC) Subject: rpms/kdebase-runtime/devel kdebase-runtime.spec,1.129,1.130 Message-ID: <20090723080110.8A5FE11C048A@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21989 Modified Files: kdebase-runtime.spec Log Message: don't BR on xine for rhel Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- kdebase-runtime.spec 21 Jul 2009 22:01:27 -0000 1.129 +++ kdebase-runtime.spec 23 Jul 2009 08:01:08 -0000 1.130 @@ -1,5 +1,6 @@ - +%if 0%{?rhel} == 0 %define flags 1 +%endif Name: kdebase-runtime Summary: K Desktop Environment - Runtime @@ -56,8 +57,9 @@ BuildRequires: pkgconfig BuildRequires: pulseaudio-libs-devel BuildRequires: qimageblitz-devel BuildRequires: soprano-devel >= 2.3.0 +%if 0%{?rhel} == 0 BuildRequires: xine-lib-devel libxcb-devel -# needed? +%endif BuildRequires: xorg-x11-font-utils BuildRequires: xorg-x11-proto-devel BuildRequires: zlib-devel From pkgdb at fedoraproject.org Thu Jul 23 08:03:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:18 +0000 Subject: [pkgdb] gtg: bochecha has requested watchbugzilla Message-ID: <20090723080318.D280210F86A@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on gtg (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:21 +0000 Subject: [pkgdb] gtg: bochecha has requested watchcommits Message-ID: <20090723080321.520BB10F89D@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on gtg (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:26 +0000 Subject: [pkgdb] gtg: bochecha has requested watchbugzilla Message-ID: <20090723080326.42F3510F8B2@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on gtg (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:23 +0000 Subject: [pkgdb] gtg: bochecha has requested commit Message-ID: <20090723080323.3926310F8AC@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on gtg (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:27 +0000 Subject: [pkgdb] gtg: bochecha has requested watchcommits Message-ID: <20090723080327.9AB6710F8B5@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on gtg (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:29 +0000 Subject: [pkgdb] gtg: bochecha has requested commit Message-ID: <20090723080329.BD67B10F8B8@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on gtg (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:37 +0000 Subject: [pkgdb] gtg: bochecha has requested watchbugzilla Message-ID: <20090723080337.38F1D10F86A@bastion2.fedora.phx.redhat.com> bochecha has requested the watchbugzilla acl on gtg (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:38 +0000 Subject: [pkgdb] gtg: bochecha has requested watchcommits Message-ID: <20090723080338.EA77D10F8BD@bastion2.fedora.phx.redhat.com> bochecha has requested the watchcommits acl on gtg (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:03:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:03:40 +0000 Subject: [pkgdb] gtg: bochecha has requested commit Message-ID: <20090723080340.6B61710F8C0@bastion2.fedora.phx.redhat.com> bochecha has requested the commit acl on gtg (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From nickc at fedoraproject.org Thu Jul 23 08:35:28 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Thu, 23 Jul 2009 08:35:28 +0000 (UTC) Subject: rpms/binutils/devel .cvsignore, 1.46, 1.47 binutils.spec, 1.171, 1.172 sources, 1.46, 1.47 Message-ID: <20090723083528.748AF11C0093@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2873 Modified Files: .cvsignore binutils.spec sources Log Message: Rebase sources on 2.19.51.0.14 tarball. Gain fixes for PRs 10429 and 10433. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/.cvsignore,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- .cvsignore 22 Jul 2009 08:34:04 -0000 1.46 +++ .cvsignore 23 Jul 2009 08:34:57 -0000 1.47 @@ -1 +1 @@ -binutils-2.19.51.0.13.tar.bz2 +binutils-2.19.51.0.14.tar.bz2 Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.171 retrieving revision 1.172 diff -u -p -r1.171 -r1.172 --- binutils.spec 22 Jul 2009 08:34:04 -0000 1.171 +++ binutils.spec 23 Jul 2009 08:34:57 -0000 1.172 @@ -16,8 +16,8 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} -Version: 2.19.51.0.13 -Release: 28%{?dist} +Version: 2.19.51.0.14 +Release: 29%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -354,7 +354,10 @@ fi %changelog * Wed Jul 22 2009 Nick Clifton 2.19.51.0.11-28 -- Rebase sources on 2.19.51.0.113 tarball. Remove redundant orphan section placement patch. (BZ 512937) +- Rebase sources on 2.19.51.0.14 tarball. Gain fixes for PRs 10429 and 10433. + +* Wed Jul 22 2009 Nick Clifton 2.19.51.0.11-28 +- Rebase sources on 2.19.51.0.13 tarball. Remove redundant orphan section placement patch. (BZ 512937) * Tue Jul 14 2009 Nick Clifton 2.19.51.0.11-27 - Add patch to allow moxie target to build, and hence --enable-targets=all to work. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/sources,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sources 22 Jul 2009 08:34:04 -0000 1.46 +++ sources 23 Jul 2009 08:34:57 -0000 1.47 @@ -1 +1 @@ -2181498b48a9a91a994120ba91784622 binutils-2.19.51.0.13.tar.bz2 +e0b485a3ff9392da1351dc3fb61a3d10 binutils-2.19.51.0.14.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 08:35:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:35:31 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083531.A626F10F89D@bastion2.fedora.phx.redhat.com> yaneti has set the watchbugzilla acl on gtg (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:35:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:35:41 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083541.B015110F897@bastion2.fedora.phx.redhat.com> yaneti has set the watchcommits acl on gtg (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:35:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:35:47 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083547.CC88A10F8A9@bastion2.fedora.phx.redhat.com> yaneti has set the commit acl on gtg (Fedora devel) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:36:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:36:01 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083601.6F0D210F8AB@bastion2.fedora.phx.redhat.com> yaneti has set the watchcommits acl on gtg (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:35:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:35:56 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083556.5703A10F8B0@bastion2.fedora.phx.redhat.com> yaneti has set the watchbugzilla acl on gtg (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:36:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:36:07 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083607.4ADD710F8B2@bastion2.fedora.phx.redhat.com> yaneti has set the commit acl on gtg (Fedora 11) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:36:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:36:15 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083615.7CE4B10F8AD@bastion2.fedora.phx.redhat.com> yaneti has set the watchbugzilla acl on gtg (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:36:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:36:20 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083620.58C1710F8B0@bastion2.fedora.phx.redhat.com> yaneti has set the watchcommits acl on gtg (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From pkgdb at fedoraproject.org Thu Jul 23 08:36:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 08:36:25 +0000 Subject: [pkgdb] gtg had acl change status Message-ID: <20090723083625.DED6710F89D@bastion2.fedora.phx.redhat.com> yaneti has set the commit acl on gtg (Fedora 10) to Approved for bochecha To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtg From ovasik at fedoraproject.org Thu Jul 23 08:49:18 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Thu, 23 Jul 2009 08:49:18 +0000 (UTC) Subject: rpms/docbook-style-xsl/devel docbook-style-xsl.spec, 1.62, 1.63 sources, 1.29, 1.30 Message-ID: <20090723084918.455F711C0093@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7927 Modified Files: docbook-style-xsl.spec sources Log Message: upstream changed changed doc tarball after release Index: docbook-style-xsl.spec =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/docbook-style-xsl.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- docbook-style-xsl.spec 22 Jul 2009 01:04:37 -0000 1.62 +++ docbook-style-xsl.spec 23 Jul 2009 08:49:17 -0000 1.63 @@ -1,6 +1,6 @@ Name: docbook-style-xsl Version: 1.75.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Summary: Norman Walsh's XSL stylesheets for DocBook XML @@ -117,6 +117,10 @@ if [ "$1" = 0 ]; then fi %changelog +* Thu Jul 23 2009 Ondrej Vasik 1.75.3-3 +- upstream changed changed doc tarball after release + (empty reference pdf file in old tarball) + * Wed Jul 22 2009 Ondrej Vasik 1.75.2-2 - upstream changed tarballs after release Index: sources =================================================================== RCS file: /cvs/extras/rpms/docbook-style-xsl/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 22 Jul 2009 01:04:37 -0000 1.29 +++ sources 23 Jul 2009 08:49:18 -0000 1.30 @@ -1,2 +1,2 @@ 0c76a58a8e6cb5ab49f819e79917308f docbook-xsl-1.75.2.tar.bz2 -312e7ff73494875269260d36636ccdd3 docbook-xsl-doc-1.75.2.tar.bz2 +0a59c4c1796683fca32881c221df0b16 docbook-xsl-doc-1.75.2.tar.bz2 From than at fedoraproject.org Thu Jul 23 09:47:03 2009 From: than at fedoraproject.org (Than Ngo) Date: Thu, 23 Jul 2009 09:47:03 +0000 (UTC) Subject: rpms/kde-l10n/devel kde-l10n-es-4.2.98-typo.patch, NONE, 1.1 kde-l10n.spec, 1.86, 1.87 Message-ID: <20090723094703.D66E711C0093@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27968 Modified Files: kde-l10n.spec Added Files: kde-l10n-es-4.2.98-typo.patch Log Message: fix typo kde-l10n-es-4.2.98-typo.patch: man-adddebug.1.docbook | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE kde-l10n-es-4.2.98-typo.patch --- diff -up kde-l10n-es-4.2.98/docs/kdesdk/scripts/man-adddebug.1.docbook.orig kde-l10n-es-4.2.98/docs/kdesdk/scripts/man-adddebug.1.docbook --- kde-l10n-es-4.2.98/docs/kdesdk/scripts/man-adddebug.1.docbook.orig 2009-07-23 11:42:35.000000000 +0200 +++ kde-l10n-es-4.2.98/docs/kdesdk/scripts/man-adddebug.1.docbook 2009-07-23 11:43:08.000000000 +0200 @@ -22,7 +22,7 @@ addebugadddebug 1 @@ -31,7 +31,7 @@ addebugadddebug Modifica archivo(s) = %{version} @@ -805,6 +808,9 @@ for i in $(cat %{SOURCE1000}) ; do bzip2 -dc %{_sourcedir}/%{name}-$i-%{version}.tar.bz2 | tar -xf - done +# upstream patches +%patch100 -p0 -b .typo + %build for i in $(cat %{SOURCE1000}) ; do pushd %{name}-$i-%{version} From rjones at fedoraproject.org Thu Jul 23 09:51:52 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 09:51:52 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.41, 1.42 libguestfs.spec, 1.76, 1.77 sources, 1.41, 1.42 Message-ID: <20090723095152.86E4111C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29368 Modified Files: .cvsignore libguestfs.spec sources Log Message: Version 1.0.63. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- .cvsignore 15 Jul 2009 16:49:09 -0000 1.41 +++ .cvsignore 23 Jul 2009 09:51:21 -0000 1.42 @@ -1 +1 @@ -libguestfs-1.0.61.tar.gz +libguestfs-1.0.63.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- libguestfs.spec 15 Jul 2009 16:49:09 -0000 1.76 +++ libguestfs.spec 23 Jul 2009 09:51:22 -0000 1.77 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.61 +Version: 1.0.63 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -72,6 +72,9 @@ Requires: qemu-kvm >= 0.10-7 # For virt-inspector --windows-registry option. Requires: chntpw >= 0.99.6-8 +# For libguestfs-test-tool. +Requires: genisoimage + %description Libguestfs is a library for accessing and modifying guest disk images. @@ -438,8 +441,11 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc COPYING %{_bindir}/libguestfs-supermin-helper +%{_bindir}/libguestfs-test-tool %{_libdir}/guestfs/ %{_libdir}/libguestfs.so.* +%{_libexecdir}/libguestfs-test-tool-helper +%{_mandir}/man1/libguestfs-test-tool.1* %files devel @@ -545,6 +551,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.63-1 +- New upstream release 1.0.63. +- New tool 'libguestfs-test-tool'. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- sources 15 Jul 2009 16:49:09 -0000 1.41 +++ sources 23 Jul 2009 09:51:22 -0000 1.42 @@ -1 +1 @@ -615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz +da1b0a43aa769fe9d3b2864fc089c5ae libguestfs-1.0.63.tar.gz From rjones at fedoraproject.org Thu Jul 23 10:02:55 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 10:02:55 +0000 (UTC) Subject: rpms/libguestfs/devel libguestfs.spec,1.77,1.78 Message-ID: <20090723100255.E199F11C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1445 Modified Files: libguestfs.spec Log Message: Update the bug list. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- libguestfs.spec 23 Jul 2009 09:51:22 -0000 1.77 +++ libguestfs.spec 23 Jul 2009 10:02:25 -0000 1.78 @@ -326,38 +326,20 @@ export LIBGUESTFS_DEBUG=1 # do a very long and thorough test ('make check') or just # a quick test to see if things generally work. -# Currently tests are disabled on all architectures because of: -# BZ 494075/504273 (ppc, ppc64) - possibly now fixed -# BZ 505109 (ppc, ppc64) - openbios boot failure -# BZ 502058 (i386, x86-64) - only on F-11 we think, seems to work on F-12 -# BZ 502074 (i386) - sha1sum segfault on F-11 only -# BZ 503236 (i386) - cryptomgr_test at doublefault_fn (F-12 only) -# BZ 507066 (all) - sequence of chroot calls makes fs unmountable (F-12 only) -# (fixed?) - -# Workaround for BZ 502058. This is only needed for F-11, but -# won't harm other builds. -export LIBGUESTFS_APPEND="noapic" - -%ifarch x86_64 -make check -%endif - -# Quick test: -#./fish/guestfish -v < Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3728 Modified Files: hplip-device-id.patch hplip.spec Log Message: * Thu Jul 23 2009 Tim Waugh 3.9.2-7 - Error checking in the libudev device-id fallback code. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 157 insertions(+), 15 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-device-id.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-device-id.patch 21 Jul 2009 22:49:07 -0000 1.1 +++ hplip-device-id.patch 23 Jul 2009 10:08:50 -0000 1.2 @@ -1,6 +1,5 @@ -diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c ---- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 +--- hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 ++++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 11:04:59.504163043 +0100 @@ -26,6 +26,8 @@ #include "hpmud.h" @@ -10,7 +9,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -1959,6 +1961,137 @@ bugout: +@@ -1959,6 +1961,143 @@ * USB probe devices, walk the USB bus(s) looking for HP products. */ @@ -115,6 +114,9 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + udev_device_get_parent_with_subsystem_devtype (ddev, + "usb", + "usb_device"); ++ if (!parent_dev) ++ continue; ++ + idVendor = udev_device_get_sysattr_value (parent_dev, + "idVendor"); + if (!idVendor || strcmp (idVendor, "03f0")) @@ -134,6 +136,9 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + + ieee1284_id = udev_device_get_sysattr_value (ddev, + "ieee1284_id"); ++ if (!ieee1284_id) ++ continue; ++ + strncpy (device_id, ieee1284_id, len); + device_id[len - 1] = '\0'; + } @@ -148,7 +153,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2139,7 @@ int __attribute__ ((visibility ("hidden" +@@ -2006,6 +2145,7 @@ if (model[0]) { @@ -156,7 +161,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2150,19 @@ int __attribute__ ((visibility ("hidden" +@@ -2016,17 +2156,19 @@ continue; /* ignor, not supported */ } @@ -187,7 +192,6 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev *cnt+=1; } } -diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 +++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i @@ -202,7 +206,6 @@ diff -up hplip-3.9.2/Makefile.am.device- endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" -diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 +++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.205 retrieving revision 1.206 diff -u -p -r1.205 -r1.206 --- hplip.spec 21 Jul 2009 22:49:07 -0000 1.205 +++ hplip.spec 23 Jul 2009 10:08:50 -0000 1.206 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -336,6 +336,9 @@ fi exit 0 %changelog +* Thu Jul 23 2009 Tim Waugh 3.9.2-7 +- Error checking in the libudev device-id fallback code. + * Tue Jul 21 2009 Tim Waugh 3.9.2-6 - Fixed device-id reporting. From twaugh at fedoraproject.org Thu Jul 23 10:09:11 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 23 Jul 2009 10:09:11 +0000 (UTC) Subject: rpms/hplip/devel hplip-device-id.patch, 1.1, 1.2 hplip.spec, 1.205, 1.206 Message-ID: <20090723100911.AD08111C0093@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3976 Modified Files: hplip-device-id.patch hplip.spec Log Message: * Thu Jul 23 2009 Tim Waugh 3.9.2-7 - Error checking in the libudev device-id fallback code. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 157 insertions(+), 15 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-device-id.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hplip-device-id.patch 21 Jul 2009 22:49:23 -0000 1.1 +++ hplip-device-id.patch 23 Jul 2009 10:09:11 -0000 1.2 @@ -1,6 +1,5 @@ -diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c ---- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 +--- hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 ++++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 11:04:59.504163043 +0100 @@ -26,6 +26,8 @@ #include "hpmud.h" @@ -10,7 +9,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -1959,6 +1961,137 @@ bugout: +@@ -1959,6 +1961,143 @@ * USB probe devices, walk the USB bus(s) looking for HP products. */ @@ -115,6 +114,9 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + udev_device_get_parent_with_subsystem_devtype (ddev, + "usb", + "usb_device"); ++ if (!parent_dev) ++ continue; ++ + idVendor = udev_device_get_sysattr_value (parent_dev, + "idVendor"); + if (!idVendor || strcmp (idVendor, "03f0")) @@ -134,6 +136,9 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev + + ieee1284_id = udev_device_get_sysattr_value (ddev, + "ieee1284_id"); ++ if (!ieee1284_id) ++ continue; ++ + strncpy (device_id, ieee1284_id, len); + device_id[len - 1] = '\0'; + } @@ -148,7 +153,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2139,7 @@ int __attribute__ ((visibility ("hidden" +@@ -2006,6 +2145,7 @@ if (model[0]) { @@ -156,7 +161,7 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2150,19 @@ int __attribute__ ((visibility ("hidden" +@@ -2016,17 +2156,19 @@ continue; /* ignor, not supported */ } @@ -187,7 +192,6 @@ diff -up hplip-3.9.2/io/hpmud/musb.c.dev *cnt+=1; } } -diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 +++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i @@ -202,7 +206,6 @@ diff -up hplip-3.9.2/Makefile.am.device- endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" -diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 +++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.205 retrieving revision 1.206 diff -u -p -r1.205 -r1.206 --- hplip.spec 21 Jul 2009 22:49:23 -0000 1.205 +++ hplip.spec 23 Jul 2009 10:09:11 -0000 1.206 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -336,6 +336,9 @@ fi exit 0 %changelog +* Thu Jul 23 2009 Tim Waugh 3.9.2-7 +- Error checking in the libudev device-id fallback code. + * Tue Jul 21 2009 Tim Waugh 3.9.2-6 - Fixed device-id reporting. From xhorak at fedoraproject.org Thu Jul 23 10:09:17 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 23 Jul 2009 10:09:17 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-11 pcmanx-gtk2.spec,1.11,1.12 Message-ID: <20090723100917.A2EEC11C049A@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4047 Modified Files: pcmanx-gtk2.spec Log Message: * Thu Jul 23 2009 Jan Horak - 0.3.8-6 - Rebuild against newer gecko Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-11/pcmanx-gtk2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pcmanx-gtk2.spec 4 Mar 2009 16:44:39 -0000 1.11 +++ pcmanx-gtk2.spec 23 Jul 2009 10:09:17 -0000 1.12 @@ -2,12 +2,12 @@ # We hardcode this here because everytime xulrunner increments # it tends to break things that depend on it. %define xulmajorver 1.9 -%define xulver 1.9.1 +%define xulver 1.9.1.1 Summary: Telnet client designed for BBS browsing Name: pcmanx-gtk2 Version: 0.3.8 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://pcmanx.csie.net/release/%{name}-%{version}.tar.bz2 @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mozilla/plugins/ %changelog +* Thu Jul 23 2009 Jan Horak - 0.3.8-6 +- Rebuild against newer gecko + * Wed Mar 5 2009 Caol?n McNamara 0.3.8-5 - include stdio.h for perror From jreznik at fedoraproject.org Thu Jul 23 10:12:02 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Thu, 23 Jul 2009 10:12:02 +0000 (UTC) Subject: rpms/kdelibs/F-11 kdelibs-4.2.4-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs.spec, 1.484, 1.485 Message-ID: <20090723101202.D1E7C11C0093@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kdelibs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5190 Modified Files: kdelibs.spec Added Files: kdelibs-4.2.4-cve-2009-2537-select-length.patch Log Message: * Thu Jul 23 2009 Jaroslav Reznik - 4.2.4-5 > - CVE-2009-2537 - select length DoS > - correct fixPopupForPlasmaboard.patch kdelibs-4.2.4-cve-2009-2537-select-length.patch: kjs_html.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.4-cve-2009-2537-select-length.patch --- diff -up kdelibs-4.2.4/khtml/ecma/kjs_html.cpp.cve-2009-2537-select-length kdelibs-4.2.4/khtml/ecma/kjs_html.cpp --- kdelibs-4.2.4/khtml/ecma/kjs_html.cpp.cve-2009-2537-select-length 2009-03-26 15:44:13.000000000 +0100 +++ kdelibs-4.2.4/khtml/ecma/kjs_html.cpp 2009-07-23 10:35:55.908865609 +0200 @@ -69,6 +69,9 @@ #include #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + using namespace DOM; namespace KJS { @@ -2428,8 +2431,12 @@ void KJS::HTMLElement::putValueProperty( case SelectValue: { select.setValue(str.implementation()); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable JSObject *coll = getSelectHTMLCollection(exec, select.options(), &select)->getObject(); + if ( coll ) - coll->put(exec,"length",value); + if (value->toInteger(exec) >= MAX_SELECT_LENGTH) + setDOMException(exec, DOMException::INDEX_SIZE_ERR); + else + coll->put(exec, "length", value); return; } // read-only: form Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-11/kdelibs.spec,v retrieving revision 1.484 retrieving revision 1.485 diff -u -p -r1.484 -r1.485 --- kdelibs.spec 8 Jul 2009 15:22:31 -0000 1.484 +++ kdelibs.spec 23 Jul 2009 10:12:02 -0000 1.485 @@ -1,6 +1,6 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.4 -Release: 4%{?dist} +Release: 5%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -81,11 +81,14 @@ Patch20: kdelibs-4.1.70-cmake.patch Patch22: kdelibs-4.1.96-cmake.patch # upstreamable -Patch50: kdelibs-4.2.4-fixPopupForPlasmaboard.patch +Patch50: kdelibs-4.2.3-fixPopupForPlasmaboard.patch # upstream # 4.2 branch +# security +Patch100: kdelibs-4.2.4-cve-2009-2537-select-length.patch + # 4.3 branch Patch200: kdelibs-4.1.96-AllowExternalPaths.patch @@ -221,6 +224,8 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi %patch50 -p1 -b .fixPopupForPlasmaboard +%patch100 -p1 -b .cve-2009-2537-select-length + # upstream patches # 4.2 @@ -408,6 +413,10 @@ rm -rf %{buildroot} %changelog +* Thu Jul 23 2009 Jaroslav Reznik - 4.2.4-5 +- CVE-2009-2537 - select length DoS +- correct fixPopupForPlasmaboard.patch + * Wed Jul 08 2009 Kevin Kofler - 4.2.4-4 - fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) From jreznik at fedoraproject.org Thu Jul 23 10:22:15 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Thu, 23 Jul 2009 10:22:15 +0000 (UTC) Subject: rpms/kde-plasma-runcommand/devel .cvsignore, 1.8, 1.9 kde-plasma-runcommand.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090723102215.EA4A311C0093@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-plasma-runcommand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8485 Modified Files: .cvsignore kde-plasma-runcommand.spec sources Log Message: * Thu Jul 23 2009 Jaroslav Reznik 1.3-1 - update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Apr 2009 07:48:38 -0000 1.8 +++ .cvsignore 23 Jul 2009 10:21:45 -0000 1.9 @@ -1 +1 @@ -91495-runcommand-1.2.tar.bz2 +91495-runcommand-1.3.tar.bz2 Index: kde-plasma-runcommand.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/devel/kde-plasma-runcommand.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kde-plasma-runcommand.spec 22 Apr 2009 07:48:38 -0000 1.10 +++ kde-plasma-runcommand.spec 23 Jul 2009 10:21:45 -0000 1.11 @@ -1,5 +1,5 @@ Name: kde-plasma-runcommand -Version: 1.2 +Version: 1.3 Release: 1%{?dist} Summary: Simple plasmoid to run commands without using terminal or KRunner @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-runcommand.desktop %changelog +* Thu Jul 23 2009 Jaroslav Reznik 1.3-1 +- update to 1.3 + * Wed Apr 22 2009 Jaroslav Reznik 1.2-1 - update to 1.2 - translations removed (no need for them anymore) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 22 Apr 2009 07:48:38 -0000 1.8 +++ sources 23 Jul 2009 10:21:45 -0000 1.9 @@ -1 +1 @@ -1de91c97a2f83d58f114c4273fe39358 91495-runcommand-1.2.tar.bz2 +bc20897b51c779d62455e5899c6a360e 91495-runcommand-1.3.tar.bz2 From xhorak at fedoraproject.org Thu Jul 23 10:22:20 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Thu, 23 Jul 2009 10:22:20 +0000 (UTC) Subject: rpms/pcmanx-gtk2/F-11 pcmanx-gtk2-aclocal.patch, NONE, 1.1 pcmanx-gtk2.spec, 1.12, 1.13 Message-ID: <20090723102220.8EB7711C0093@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/pcmanx-gtk2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8537 Modified Files: pcmanx-gtk2.spec Added Files: pcmanx-gtk2-aclocal.patch Log Message: Fix build against xulrunner 1.9.1.1 pcmanx-gtk2-aclocal.patch: autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE pcmanx-gtk2-aclocal.patch --- diff -up pcmanx-gtk2-0.3.8/autogen.sh.aclocal pcmanx-gtk2-0.3.8/autogen.sh --- pcmanx-gtk2-0.3.8/autogen.sh.aclocal 2009-07-23 12:18:16.000000000 +0200 +++ pcmanx-gtk2-0.3.8/autogen.sh 2009-07-23 12:19:04.000000000 +0200 @@ -1,5 +1,5 @@ #! /bin/sh -AM_VERSION=-1.10 +AM_VERSION=-1.11 AC_VERSION= set -e -x Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/F-11/pcmanx-gtk2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pcmanx-gtk2.spec 23 Jul 2009 10:09:17 -0000 1.12 +++ pcmanx-gtk2.spec 23 Jul 2009 10:21:50 -0000 1.13 @@ -20,6 +20,7 @@ Patch1: pcmanx-gtk2-0.3.8-Fedora-xpid Patch2: pcmanx-gtk2-0.3.8-Fedora-idldir.patch Patch3: pcmanx-gtk2-0.3.8-xulrunner.patch Patch4: pcmanx-gtk2-0.3.8-includes.patch +Patch5: pcmanx-gtk2-aclocal.patch URL: http://pcmanx.csie.net BuildRequires: gtk2-devel desktop-file-utils gettext libnotify-devel BuildRequires: libXft-devel @@ -71,6 +72,7 @@ webpage in the browser window. touch config.rpath ######################################################################## +%patch5 -p1 -b .aclocal %build ./autogen.sh From rjones at fedoraproject.org Thu Jul 23 10:23:15 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 10:23:15 +0000 (UTC) Subject: rpms/libguestfs/devel .cvsignore, 1.42, 1.43 libguestfs.spec, 1.78, 1.79 sources, 1.42, 1.43 Message-ID: <20090723102315.5A47E11C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8943 Modified Files: .cvsignore libguestfs.spec sources Log Message: Newer upstream release, 1.0.64 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/.cvsignore,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- .cvsignore 23 Jul 2009 09:51:21 -0000 1.42 +++ .cvsignore 23 Jul 2009 10:22:45 -0000 1.43 @@ -1 +1 @@ -libguestfs-1.0.63.tar.gz +libguestfs-1.0.64.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- libguestfs.spec 23 Jul 2009 10:02:25 -0000 1.78 +++ libguestfs.spec 23 Jul 2009 10:22:45 -0000 1.79 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.63 +Version: 1.0.64 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -533,8 +533,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jul 23 2009 Richard W.M. Jones - 1.0.63-1 -- New upstream release 1.0.63. +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 +- New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. * Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 23 Jul 2009 09:51:22 -0000 1.42 +++ sources 23 Jul 2009 10:22:45 -0000 1.43 @@ -1 +1 @@ -da1b0a43aa769fe9d3b2864fc089c5ae libguestfs-1.0.63.tar.gz +83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz From jreznik at fedoraproject.org Thu Jul 23 10:32:07 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Thu, 23 Jul 2009 10:32:07 +0000 (UTC) Subject: rpms/kde-plasma-runcommand/F-11 .cvsignore, 1.8, 1.9 kde-plasma-runcommand.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090723103207.6131E11C0093@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-plasma-runcommand/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13009 Modified Files: .cvsignore kde-plasma-runcommand.spec sources Log Message: * Thu Jul 23 2009 Jaroslav Reznik 1.3-1 - update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 22 Apr 2009 08:13:16 -0000 1.8 +++ .cvsignore 23 Jul 2009 10:31:37 -0000 1.9 @@ -1 +1 @@ -91495-runcommand-1.2.tar.bz2 +91495-runcommand-1.3.tar.bz2 Index: kde-plasma-runcommand.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-11/kde-plasma-runcommand.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kde-plasma-runcommand.spec 22 Apr 2009 08:13:16 -0000 1.10 +++ kde-plasma-runcommand.spec 23 Jul 2009 10:31:37 -0000 1.11 @@ -1,5 +1,5 @@ Name: kde-plasma-runcommand -Version: 1.2 +Version: 1.3 Release: 1%{?dist} Summary: Simple plasmoid to run commands without using terminal or KRunner @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-runcommand.desktop %changelog +* Thu Jul 23 2009 Jaroslav Reznik 1.3-1 +- update to 1.3 + * Wed Apr 22 2009 Jaroslav Reznik 1.2-1 - update to 1.2 - translations removed (no need for them anymore) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 22 Apr 2009 08:13:16 -0000 1.8 +++ sources 23 Jul 2009 10:31:37 -0000 1.9 @@ -1 +1 @@ -1de91c97a2f83d58f114c4273fe39358 91495-runcommand-1.2.tar.bz2 +bc20897b51c779d62455e5899c6a360e 91495-runcommand-1.3.tar.bz2 From jreznik at fedoraproject.org Thu Jul 23 10:33:14 2009 From: jreznik at fedoraproject.org (Jaroslav Reznik) Date: Thu, 23 Jul 2009 10:33:14 +0000 (UTC) Subject: rpms/kde-plasma-runcommand/F-10 .cvsignore, 1.6, 1.7 kde-plasma-runcommand.spec, 1.7, 1.8 sources, 1.7, 1.8 Message-ID: <20090723103314.43CD911C0093@cvs1.fedora.phx.redhat.com> Author: jreznik Update of /cvs/pkgs/rpms/kde-plasma-runcommand/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13516 Modified Files: .cvsignore kde-plasma-runcommand.spec sources Log Message: * Thu Jul 23 2009 Jaroslav Reznik 1.3-1 - update to 1.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 22 Apr 2009 08:18:11 -0000 1.6 +++ .cvsignore 23 Jul 2009 10:32:43 -0000 1.7 @@ -1 +1 @@ -91495-runcommand-1.2.tar.bz2 +91495-runcommand-1.3.tar.bz2 Index: kde-plasma-runcommand.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-10/kde-plasma-runcommand.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kde-plasma-runcommand.spec 22 Apr 2009 08:18:11 -0000 1.7 +++ kde-plasma-runcommand.spec 23 Jul 2009 10:32:43 -0000 1.8 @@ -1,5 +1,5 @@ Name: kde-plasma-runcommand -Version: 1.2 +Version: 1.3 Release: 1%{?dist} Summary: Simple plasmoid to run commands without using terminal or KRunner @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-runcommand.desktop %changelog +* Thu Jul 23 2009 Jaroslav Reznik 1.3-1 +- update to 1.3 + * Wed Apr 22 2009 Jaroslav Reznik 1.2-1 - update to 1.2 - translations removed (no need for them anymore) @@ -58,6 +61,9 @@ rm -rf %{buildroot} * Fri Apr 10 2009 Jaroslav Reznik 1.1-1 - update to 1.1 +* Wed Feb 25 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Jan 27 2009 Jaroslav Reznik 1.0-1 - update to 1.0, cmake related changes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 22 Apr 2009 08:18:11 -0000 1.7 +++ sources 23 Jul 2009 10:32:44 -0000 1.8 @@ -1 +1 @@ -1de91c97a2f83d58f114c4273fe39358 91495-runcommand-1.2.tar.bz2 +bc20897b51c779d62455e5899c6a360e 91495-runcommand-1.3.tar.bz2 From rjones at fedoraproject.org Thu Jul 23 10:42:17 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 10:42:17 +0000 (UTC) Subject: rpms/libguestfs/F-11 .cvsignore, 1.29, 1.30 libguestfs.spec, 1.46, 1.47 sources, 1.29, 1.30 Message-ID: <20090723104217.6107111C049A@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17618 Modified Files: .cvsignore libguestfs.spec sources Log Message: * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 15 Jul 2009 16:53:45 -0000 1.29 +++ .cvsignore 23 Jul 2009 10:41:46 -0000 1.30 @@ -1 +1 @@ -libguestfs-1.0.61.tar.gz +libguestfs-1.0.64.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libguestfs.spec 15 Jul 2009 16:53:45 -0000 1.46 +++ libguestfs.spec 23 Jul 2009 10:41:47 -0000 1.47 @@ -4,7 +4,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 -Version: 1.0.61 +Version: 1.0.64 Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries @@ -70,9 +70,10 @@ BuildRequires: perl-Sys-Virt Requires: qemu-kvm >= 0.10-7 # For virt-inspector --windows-registry option. -# NB: Enable this when available in Fedora-11: -# https://admin.fedoraproject.org/updates/chntpw-0.99.6-8.fc11 -#Requires: chntpw >= 0.99.6-8 +Requires: chntpw >= 0.99.6-8 + +# For libguestfs-test-tool. +Requires: genisoimage %description @@ -321,43 +322,21 @@ make INSTALLDIRS=vendor %{?_smp_mflags} # it produces masses of output in the build.log. export LIBGUESTFS_DEBUG=1 -# Uncomment one of these, depending on whether you want to -# do a very long and thorough test ('make check') or just -# a quick test to see if things generally work. - -# Currently tests are disabled on all architectures because of: -# BZ 494075/504273 (ppc, ppc64) - possibly now fixed -# BZ 505109 (ppc, ppc64) - openbios boot failure -# BZ 502058 (i386, x86-64) - only on F-11 we think, seems to work on F-12 -# BZ 502074 (i386) - sha1sum segfault on F-11 only -# BZ 503236 (i386) - cryptomgr_test at doublefault_fn (F-12 only) -# BZ 507066 (all) - sequence of chroot calls makes fs unmountable (F-12 only) -# (fixed?) - -# Workaround for BZ 502058. This is only needed for F-11, but -# won't harm other builds. -export LIBGUESTFS_APPEND="noapic" +# Tracking test issues: +# BZ archs branch reason +# 494075 ppc, ppc64 openbios bug causes "invalid/unsupported opcode" +# 504273 ppc, ppc64 "no opcode defined" +# 505109 ppc, ppc64 "Boot failure! No secondary bootloader specified" +# 502058 i386, x86-64 F-11 need to boot with noapic (WORKAROUND ENABLED) +# 502074 i386 F-11 commands segfault randomly +# 503236 i386 F-12? cryptomgr_test at doublefault_fn +# 507066 all F-12 sequence of chroot calls (FIXED) +# 513249 all F-12 guestfwd broken in qemu -%ifarch x86_64 +%ifarch x86-64 make check %endif -# Quick test: -#./fish/guestfish -v < - 1.0.64-1 +- New upstream release 1.0.64. +- New tool 'libguestfs-test-tool'. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-1 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 15 Jul 2009 16:53:45 -0000 1.29 +++ sources 23 Jul 2009 10:41:47 -0000 1.30 @@ -1 +1 @@ -615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz +83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz From rjones at fedoraproject.org Thu Jul 23 10:44:54 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 10:44:54 +0000 (UTC) Subject: rpms/libguestfs/EL-5 .cvsignore, 1.23, 1.24 libguestfs.spec, 1.48, 1.49 sources, 1.23, 1.24 libguestfs-1.0.61-no-locale-for-perl.patch, 1.2, NONE Message-ID: <20090723104454.F14D011C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18909 Modified Files: .cvsignore libguestfs.spec sources Removed Files: libguestfs-1.0.61-no-locale-for-perl.patch Log Message: * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/.cvsignore,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- .cvsignore 15 Jul 2009 16:53:36 -0000 1.23 +++ .cvsignore 23 Jul 2009 10:44:24 -0000 1.24 @@ -1 +1 @@ -libguestfs-1.0.61.tar.gz +libguestfs-1.0.64.tar.gz Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- libguestfs.spec 15 Jul 2009 20:03:32 -0000 1.48 +++ libguestfs.spec 23 Jul 2009 10:44:24 -0000 1.49 @@ -3,16 +3,15 @@ Summary: Access and modify virtual machine disk images Name: libguestfs -Version: 1.0.61 -Release: 6%{?dist} +Epoch: 1 +Version: 1.0.64 +Release: 1%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -Patch0: libguestfs-1.0.61-no-locale-for-perl.patch - # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -90,6 +89,9 @@ Requires: qemu-system-ppc >= 0.10.5 # For virt-inspector --windows-registry option. Requires: chntpw >= 0.99.6-8 +# For libguestfs-test-tool. +Requires: genisoimage + %description Libguestfs is a library for accessing and modifying guest disk images. @@ -304,8 +306,6 @@ Requires: jpackage-utils mkdir -p daemon/m4 -%patch0 -p1 - %build %if %{buildnonet} @@ -341,14 +341,7 @@ make INSTALLDIRS=vendor %{?_smp_mflags} # it produces masses of output in the build.log. export LIBGUESTFS_DEBUG=1 -# Workaround for BZ 502058. This is needed sometimes (but not -# always) for EL-5. We don't know why it only affects some boots. -export LIBGUESTFS_APPEND="noapic" - -# Tests fail on i386. We don't know why because plague doesn't let us -# see the logs (the tests hang rather than failing completely). - -%ifarch x86_64 +%ifarch %{ix86} make check %endif @@ -430,8 +423,11 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc COPYING %{_bindir}/libguestfs-supermin-helper +%{_bindir}/libguestfs-test-tool %{_libdir}/guestfs/ %{_libdir}/libguestfs.so.* +%{_libexecdir}/libguestfs-test-tool-helper +%{_mandir}/man1/libguestfs-test-tool.1* %files devel @@ -537,6 +533,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 +- New upstream release 1.0.64. +- New tool 'libguestfs-test-tool'. + * Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-6 - New upstream release 1.0.61. - New tool / subpackage 'virt-cat'. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/sources,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- sources 15 Jul 2009 16:53:36 -0000 1.23 +++ sources 23 Jul 2009 10:44:24 -0000 1.24 @@ -1 +1 @@ -615ba9fc857ceca976fb19ab13ca657b libguestfs-1.0.61.tar.gz +83d04522946f98159a038fe7f80596b0 libguestfs-1.0.64.tar.gz --- libguestfs-1.0.61-no-locale-for-perl.patch DELETED --- From nhorman at fedoraproject.org Thu Jul 23 10:47:26 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Thu, 23 Jul 2009 10:47:26 +0000 (UTC) Subject: rpms/coda/devel coda-client.init,1.3,1.4 coda.spec,1.14,1.15 Message-ID: <20090723104726.19FE111C0093@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19890 Modified Files: coda-client.init coda.spec Log Message: Fixing misuse of udevsettle in coda-client.init Index: coda-client.init =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda-client.init,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- coda-client.init 16 Jul 2009 15:03:42 -0000 1.3 +++ coda-client.init 23 Jul 2009 10:46:55 -0000 1.4 @@ -26,7 +26,7 @@ start() { echo -n "kernel " /sbin/modprobe coda - /sbin/udevsettle + /sbin/udevadm settle --timeout=0 echo -n "venus" /usr/sbin/vutil --swaplogs >/dev/null 2>&1 Index: coda.spec =================================================================== RCS file: /cvs/extras/rpms/coda/devel/coda.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- coda.spec 20 Jul 2009 23:25:43 -0000 1.14 +++ coda.spec 23 Jul 2009 10:46:55 -0000 1.15 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -311,6 +311,9 @@ fi %changelog +* Thu Jul 23 2009 Neil Horman - 6.9.4-6 +- Fix misuse of depricated udevsettle + * Mon Jul 20 2009 Neil Horman - 6.9.4-5 - Fix some sname stack overflows From pkgdb at fedoraproject.org Thu Jul 23 10:52:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 10:52:03 +0000 Subject: [pkgdb] libmsn: ltinkl has requested watchbugzilla Message-ID: <20090723105203.524B210F8A9@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchbugzilla acl on libmsn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From pkgdb at fedoraproject.org Thu Jul 23 10:52:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 10:52:05 +0000 Subject: [pkgdb] libmsn: ltinkl has requested watchcommits Message-ID: <20090723105205.DC93A10F8AD@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchcommits acl on libmsn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From pkgdb at fedoraproject.org Thu Jul 23 10:52:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 10:52:08 +0000 Subject: [pkgdb] libmsn: ltinkl has requested commit Message-ID: <20090723105208.213C410F8B4@bastion2.fedora.phx.redhat.com> ltinkl has requested the commit acl on libmsn (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From rjones at fedoraproject.org Thu Jul 23 10:59:25 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 10:59:25 +0000 (UTC) Subject: rpms/libguestfs/F-11 libguestfs.spec,1.47,1.48 Message-ID: <20090723105925.8051C11C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24538 Modified Files: libguestfs.spec Log Message: Fix architecture so the tests run. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- libguestfs.spec 23 Jul 2009 10:41:47 -0000 1.47 +++ libguestfs.spec 23 Jul 2009 10:58:55 -0000 1.48 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.64 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -333,7 +333,7 @@ export LIBGUESTFS_DEBUG=1 # 507066 all F-12 sequence of chroot calls (FIXED) # 513249 all F-12 guestfwd broken in qemu -%ifarch x86-64 +%ifarch x86_64 make check %endif @@ -529,7 +529,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. From pkgdb at fedoraproject.org Thu Jul 23 11:34:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 11:34:31 +0000 Subject: [pkgdb] libmsn had acl change status Message-ID: <20090723113431.B989810F890@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on libmsn (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From pkgdb at fedoraproject.org Thu Jul 23 11:34:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 11:34:32 +0000 Subject: [pkgdb] libmsn had acl change status Message-ID: <20090723113432.ADFE210F8AB@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on libmsn (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From pkgdb at fedoraproject.org Thu Jul 23 11:34:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 11:34:33 +0000 Subject: [pkgdb] libmsn had acl change status Message-ID: <20090723113433.9A10810F8B2@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on libmsn (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libmsn From rjones at fedoraproject.org Thu Jul 23 11:48:01 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 11:48:01 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs-1.0.64-rhel-5-squashfs.patch, NONE, 1.1 libguestfs.spec, 1.49, 1.50 Message-ID: <20090723114801.701F611C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9542 Modified Files: libguestfs.spec Added Files: libguestfs-1.0.64-rhel-5-squashfs.patch Log Message: Workaround for RHEL 5 bug with squashfs filesystems. libguestfs-1.0.64-rhel-5-squashfs.patch: test-read_file.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE libguestfs-1.0.64-rhel-5-squashfs.patch --- >From 9af502eff08017941a58ad676d0cbb867f83a341 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 23 Jul 2009 12:45:12 +0100 Subject: [PATCH] RHEL 5 thinks squashfs is HFS+ filesystem, unless we specify the type explicitly. --- regressions/test-read_file.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/regressions/test-read_file.sh b/regressions/test-read_file.sh index 33759b8..5840da3 100755 --- a/regressions/test-read_file.sh +++ b/regressions/test-read_file.sh @@ -25,7 +25,7 @@ rm -f test.out ../fish/guestfish <<'EOF' > test.out add-ro ../images/test.sqsh run -mount /dev/sda / +mount-vfs ro squashfs /dev/sda / read-file /helloworld.tar EOF -- 1.6.2.5 Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- libguestfs.spec 23 Jul 2009 10:44:24 -0000 1.49 +++ libguestfs.spec 23 Jul 2009 11:48:01 -0000 1.50 @@ -5,13 +5,15 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.64 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ Source0: http://libguestfs.org/download/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +Patch0: libguestfs-1.0.64-rhel-5-squashfs.patch + # Currently fails on PPC because: # "No Package Found for kernel" ExclusiveArch: %{ix86} x86_64 @@ -306,6 +308,8 @@ Requires: jpackage-utils mkdir -p daemon/m4 +%patch0 -p1 + %build %if %{buildnonet} @@ -533,9 +537,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. +- Workaround for RHEL 5 bug with squashfs filesystems. * Wed Jul 15 2009 Richard W.M. Jones - 1.0.61-6 - New upstream release 1.0.61. From ltinkl at fedoraproject.org Thu Jul 23 11:51:00 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 23 Jul 2009 11:51:00 +0000 (UTC) Subject: rpms/libmsn/devel .cvsignore, 1.4, 1.5 libmsn.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090723115100.7E18E11C0093@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/libmsn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10475 Modified Files: .cvsignore libmsn.spec sources Log Message: 4.0 beta 7 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/libmsn/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Jan 2009 20:25:42 -0000 1.4 +++ .cvsignore 23 Jul 2009 11:50:59 -0000 1.5 @@ -1 +1 @@ -libmsn-4.0-beta4.tar.bz2 +libmsn-4.0-beta7.tar.bz2 Index: libmsn.spec =================================================================== RCS file: /cvs/extras/rpms/libmsn/devel/libmsn.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libmsn.spec 25 Feb 2009 16:25:34 -0000 1.9 +++ libmsn.spec 23 Jul 2009 11:50:59 -0000 1.10 @@ -1,9 +1,9 @@ -%define beta beta4 +%define beta beta7 Name: libmsn Version: 4.0 -Release: 0.11.%{beta}%{?dist} +Release: 0.12.%{beta}%{?dist} Group: System Environment/Libraries License: GPLv2 @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 +- 4.0 beta 7 + * Wed Feb 25 2009 Fedora Release Engineering - 4.0-0.11.beta4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/libmsn/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Jan 2009 20:25:42 -0000 1.5 +++ sources 23 Jul 2009 11:51:00 -0000 1.6 @@ -1 +1 @@ -b0155f01443644d7c4a60269e44d8dac libmsn-4.0-beta4.tar.bz2 +160bd277a66bd837d0a26e4c03454be3 libmsn-4.0-beta7.tar.bz2 From mmaslano at fedoraproject.org Thu Jul 23 12:33:29 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Thu, 23 Jul 2009 12:33:29 +0000 (UTC) Subject: comps comps-f12.xml.in,1.52,1.53 Message-ID: <20090723123329.D804511C0093@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10439 Modified Files: comps-f12.xml.in Log Message: Add cronie-anacron into comps instead of anacron. Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- comps-f12.xml.in 22 Jul 2009 14:43:47 -0000 1.52 +++ comps-f12.xml.in 23 Jul 2009 12:33:29 -0000 1.53 @@ -739,6 +739,7 @@ coreutils cpio cronie + cronie-anacron dhclient e2fsprogs fedora-release From atkac at fedoraproject.org Thu Jul 23 12:38:11 2009 From: atkac at fedoraproject.org (Adam Tkac) Date: Thu, 23 Jul 2009 12:38:11 +0000 (UTC) Subject: rpms/dump/devel dump-rh507948.patch,NONE,1.1 dump.spec,1.53,1.54 Message-ID: <20090723123811.90EFC11C0093@cvs1.fedora.phx.redhat.com> Author: atkac Update of /cvs/pkgs/rpms/dump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29340 Modified Files: dump.spec Added Files: dump-rh507948.patch Log Message: - restore multivol backups correctly dump-rh507948.patch: tape.c | 1 - 1 file changed, 1 deletion(-) --- NEW FILE dump-rh507948.patch --- diff -up dump-0.4b42/restore/tape.c.rh507948 dump-0.4b42/restore/tape.c --- dump-0.4b42/restore/tape.c.rh507948 2009-07-23 14:28:17.998903816 +0200 +++ dump-0.4b42/restore/tape.c 2009-07-23 14:29:27.058903991 +0200 @@ -474,7 +474,6 @@ getvol(long nextvol) if (nextvol == 1) { tapesread = 0; gettingfile = 0; - tpblksread = 0; blksread = 0; } if (pipein) { Index: dump.spec =================================================================== RCS file: /cvs/pkgs/rpms/dump/devel/dump.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- dump.spec 22 Jun 2009 12:44:58 -0000 1.53 +++ dump.spec 23 Jul 2009 12:37:41 -0000 1.54 @@ -7,7 +7,7 @@ Summary: Programs for backing up and res Name: dump Epoch: 1 Version: 0.4 -Release: 0.1.%{PREVER}%{?dist} +Release: 0.2.%{PREVER}%{?dist} License: BSD Group: Applications/Archiving URL: http://dump.sourceforge.net/ @@ -23,6 +23,8 @@ Requires: rmt Obsoletes: dump-static Provides: dump-static +Patch0: dump-rh507948.patch + %description The dump package contains both dump and restore. Dump examines files in a filesystem, determines which ones need to be backed up, and @@ -47,6 +49,8 @@ restoring files from a backup), and tar %prep %setup -q -n dump-%{VERSION} +%patch0 -p1 -b .rh507948 + for i in THANKS MAINTAINERS COPYRIGHT CHANGES; do iconv -f iso-8859-1 -t utf-8 $i -o $i.new touch -r $i $i.new @@ -118,6 +122,9 @@ rm -rf %{buildroot} %{_mandir}/man8/rmt.8* %changelog +* Thu Jul 23 2009 Adam Tkac 0.4-0.2.b42 +- restore multivol backups correctly + * Mon Jun 22 2009 Adam Tkac 0.4-0.1.b42 - update to 0.4b42 - patches merged From hadess at fedoraproject.org Thu Jul 23 12:47:10 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 23 Jul 2009 12:47:10 +0000 (UTC) Subject: rpms/gnome-phone-manager/devel gnome-phone-manager.spec,1.34,1.35 Message-ID: <20090723124710.3804711C0093@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/gnome-phone-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32477 Modified Files: gnome-phone-manager.spec Log Message: * Thu Jul 23 2009 Bastien Nocera 0.65-3 - Rebuild for new gnome-bluetooth Index: gnome-phone-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-phone-manager/devel/gnome-phone-manager.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- gnome-phone-manager.spec 19 Jun 2009 19:18:08 -0000 1.34 +++ gnome-phone-manager.spec 23 Jul 2009 12:46:39 -0000 1.35 @@ -1,7 +1,7 @@ Name: gnome-phone-manager Summary: Gnome Phone Manager Version: 0.65 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-phone-manager/%{version}/%{name}-%{version}.tar.bz2 @@ -106,6 +106,9 @@ fi %{_datadir}/mission-control/profiles/* %changelog +* Thu Jul 23 2009 Bastien Nocera 0.65-3 +- Rebuild for new gnome-bluetooth + * Fri Jun 19 2009 Bastien Nocera 0.65-2 - Rebuild for new gnome-bluetooth From cwickert at fedoraproject.org Thu Jul 23 12:49:14 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 12:49:14 +0000 (UTC) Subject: comps comps-f12.xml.in, 1.53, 1.54 comps-f11.xml.in, 1.271, 1.272 comps-f10.xml.in, 1.258, 1.259 Message-ID: <20090723124914.5312511C0093@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv576 Modified Files: comps-f12.xml.in comps-f11.xml.in comps-f10.xml.in Log Message: add parrot Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- comps-f12.xml.in 23 Jul 2009 12:33:29 -0000 1.53 +++ comps-f12.xml.in 23 Jul 2009 12:48:43 -0000 1.54 @@ -4549,6 +4549,7 @@ git-cpan-patch perltidy eclipse-epic + parrot perl-Task-Catalyst vim-perl-support Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.271 retrieving revision 1.272 diff -u -p -r1.271 -r1.272 --- comps-f11.xml.in 21 Jul 2009 01:37:21 -0000 1.271 +++ comps-f11.xml.in 23 Jul 2009 12:48:43 -0000 1.272 @@ -4422,6 +4422,7 @@ git-cpan-patch perltidy eclipse-epic + parrot perl-Task-Catalyst vim-perl-support Index: comps-f10.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f10.xml.in,v retrieving revision 1.258 retrieving revision 1.259 diff -u -p -r1.258 -r1.259 --- comps-f10.xml.in 21 Jul 2009 01:37:21 -0000 1.258 +++ comps-f10.xml.in 23 Jul 2009 12:48:43 -0000 1.259 @@ -951,6 +951,7 @@ nqc-doc ocaml oorexx + parrot patchy perl-perlmenu perltidy From ajax at fedoraproject.org Thu Jul 23 12:55:12 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 12:55:12 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel .cvsignore, 1.55, 1.56 sources, 1.54, 1.55 xorg-x11-proto-devel.spec, 1.100, 1.101 Message-ID: <20090723125512.9AADC11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2772 Modified Files: .cvsignore sources xorg-x11-proto-devel.spec Log Message: * Thu Jul 23 2009 Adam Jackson 7.4-24 - fixesproto 4.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/.cvsignore,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- .cvsignore 22 Jul 2009 10:46:59 -0000 1.55 +++ .cvsignore 23 Jul 2009 12:54:42 -0000 1.56 @@ -29,3 +29,4 @@ inputproto-1.9.99.15.tar.bz2 randrproto-1.3.0.tar.bz2 xextproto-7.0.99.3.tar.bz2 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 +fixesproto-4.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/sources,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- sources 22 Jul 2009 10:46:59 -0000 1.54 +++ sources 23 Jul 2009 12:54:42 -0000 1.55 @@ -24,4 +24,4 @@ c9f8cebfba72bfab674bc0170551fb8d glprot 87a569587d6141af0aa0ab4b604d083a inputproto-1.9.99.15.tar.bz2 a49416013fff33c853efb32f1926551e randrproto-1.3.0.tar.bz2 417c21cbc02572d84dffdd5f92a760e7 xextproto-7.0.99.3.tar.bz2 -7089b823b1a7cff05478e2330a85e541 fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 +157644edb3cd526f2cb164eb79c52bad fixesproto-4.1.tar.bz2 Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- xorg-x11-proto-devel.spec 22 Jul 2009 10:46:59 -0000 1.100 +++ xorg-x11-proto-devel.spec 23 Jul 2009 12:54:42 -0000 1.101 @@ -20,8 +20,7 @@ Source2: http://www.x.org/pub/individua Source3: http://www.x.org/pub/individual/proto/dmxproto-2.2.2.tar.bz2 Source31: http://www.x.org/pub/individual/proto/dri2proto-2.1.tar.bz2 Source4: http://www.x.org/pub/individual/proto/evieext-1.0.2.tar.bz2 -#Source5: http://www.x.org/pub/individual/proto/fixesproto-4.0.tar.bz2 -Source5: http://cgit.freedesktop.org/xorg/proto/fixesproto/snapshot/fixesproto-c7c9beab9a41d835008e1070c0ed8470293fe6ba.tar.bz2 +Source5: http://www.x.org/pub/individual/proto/fixesproto-4.1.tar.bz2 Source7: http://www.x.org/pub/individual/proto/fontsproto-2.0.2.tar.bz2 Source8: http://www.x.org/pub/individual/proto/glproto-1.4.10.tar.bz2 Source9: http://www.x.org/pub/individual/proto/inputproto-1.9.99.15.tar.bz2 @@ -83,14 +82,6 @@ for i in composite damage fixes randr re mv $RPM_BUILD_ROOT/usr/share/doc/${i}proto/${i}proto.txt . done -# libXext still needs XLbx.h and lbxstr.h to build. The rest are junk. -rm -f $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxbuf.h \ - $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxbufstr.h \ - $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxdeltastr.h \ - $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbximage.h \ - $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxopts.h \ - $RPM_BUILD_ROOT%{_includedir}/X11/extensions/lbxzlib.h - %clean rm -rf $RPM_BUILD_ROOT @@ -259,6 +250,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Thu Jul 23 2009 Adam Jackson 7.4-24 +- fixesproto 4.1 + * Wed Jul 22 2009 Peter Hutterer 7.4-24 - xextproto 7.0.99.3 From ajax at fedoraproject.org Thu Jul 23 12:56:28 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 12:56:28 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel xorg-x11-proto-devel.spec, 1.101, 1.102 Message-ID: <20090723125628.3763E11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3382 Modified Files: xorg-x11-proto-devel.spec Log Message: bump Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- xorg-x11-proto-devel.spec 23 Jul 2009 12:54:42 -0000 1.101 +++ xorg-x11-proto-devel.spec 23 Jul 2009 12:55:57 -0000 1.102 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 24%{?dist} +Release: 25%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -250,7 +250,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog -* Thu Jul 23 2009 Adam Jackson 7.4-24 +* Thu Jul 23 2009 Adam Jackson 7.4-25 - fixesproto 4.1 * Wed Jul 22 2009 Peter Hutterer 7.4-24 From ajax at fedoraproject.org Thu Jul 23 12:59:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 12:59:46 +0000 (UTC) Subject: rpms/filesystem/devel filesystem.spec,1.56,1.57 Message-ID: <20090723125946.3945C11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5692 Modified Files: filesystem.spec Log Message: * Thu Jul 23 2009 Adam Jackson 2.4.24-1 - Added /usr/share/X11 Index: filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/filesystem/devel/filesystem.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- filesystem.spec 9 Jul 2009 09:58:24 -0000 1.56 +++ filesystem.spec 23 Jul 2009 12:59:45 -0000 1.57 @@ -1,6 +1,6 @@ Summary: The basic directory layout for a Linux system Name: filesystem -Version: 2.4.23 +Version: 2.4.24 Release: 1%{?dist} License: Public Domain URL: https://fedorahosted.org/filesystem @@ -32,7 +32,7 @@ mkdir -p mnt/{floppy,cdrom} \ bin boot dev \ etc/{X11/{applnk,fontpath.d},xdg/autostart,opt,xinetd.d,skel,sysconfig,pki} \ home lib/modules %{_lib}/tls media mnt opt proc root sbin selinux srv sys tmp \ - usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale,X11},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,idl,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions},src,src/kernels,src/debug} \ + usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale,X11},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,idl,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions,X11},src,src/kernels,src/debug} \ var/{empty,lib/{games,misc},local,lock/subsys,log,nis,preserve,run,spool/{mail,lpd},tmp,db,cache,opt,games,yp} ln -snf ../var/tmp usr/tmp @@ -126,6 +126,7 @@ rm -rf %{buildroot} /usr/share/pixmaps /usr/share/themes /usr/share/xsessions +/usr/share/X11 /usr/src %dir /var /var/db @@ -149,6 +150,9 @@ rm -rf %{buildroot} /var/yp %changelog +* Thu Jul 23 2009 Adam Jackson 2.4.24-1 +- Added /usr/share/X11 + * Thu Jul 09 2009 Ondrej Vasik - 2.4.23-1 - do own /usr/src/debug (#214983) From cwickert at fedoraproject.org Thu Jul 23 12:59:54 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 12:59:54 +0000 (UTC) Subject: comps comps-f12.xml.in,1.54,1.55 comps-f11.xml.in,1.272,1.273 Message-ID: <20090723125954.A385311C0093@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5725 Modified Files: comps-f12.xml.in comps-f11.xml.in Log Message: assign perl group to the develpment category Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- comps-f12.xml.in 23 Jul 2009 12:48:43 -0000 1.54 +++ comps-f12.xml.in 23 Jul 2009 12:59:54 -0000 1.55 @@ -6251,6 +6251,7 @@ legacy-software-development mingw32 ocaml + perl ruby web-development x-software-development Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.272 retrieving revision 1.273 diff -u -p -r1.272 -r1.273 --- comps-f11.xml.in 23 Jul 2009 12:48:43 -0000 1.272 +++ comps-f11.xml.in 23 Jul 2009 12:59:54 -0000 1.273 @@ -6108,6 +6108,7 @@ legacy-software-development mingw32 ocaml + perl ruby web-development x-software-development From ajax at fedoraproject.org Thu Jul 23 13:02:25 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:02:25 +0000 (UTC) Subject: rpms/libfontenc/devel libfontenc.spec,1.25,1.26 Message-ID: <20090723130225.B568611C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libfontenc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6606 Modified Files: libfontenc.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %dir Index: libfontenc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfontenc/devel/libfontenc.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libfontenc.spec 25 Feb 2009 14:46:43 -0000 1.25 +++ libfontenc.spec 23 Jul 2009 13:01:55 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libfontenc runtime library Name: libfontenc Version: 1.0.4 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -77,8 +77,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/fonts %{_includedir}/X11/fonts/fontenc.h %if %{with_static} %{_libdir}/libfontenc.a @@ -87,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/fontenc.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-8 +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:04:25 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:04:25 +0000 (UTC) Subject: rpms/libxkbfile/devel libxkbfile.spec,1.25,1.26 Message-ID: <20090723130425.1AF2011C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxkbfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7184 Modified Files: libxkbfile.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %dir Index: libxkbfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxkbfile/devel/libxkbfile.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libxkbfile.spec 25 Feb 2009 20:06:34 -0000 1.25 +++ libxkbfile.spec 23 Jul 2009 13:03:54 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libxkbfile runtime library Name: libxkbfile Version: 1.0.4 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -66,8 +66,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/XKBbells.h %{_includedir}/X11/extensions/XKBconfig.h %{_includedir}/X11/extensions/XKBfile.h @@ -81,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xkbfile.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-8 +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:04:56 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:04:56 +0000 (UTC) Subject: rpms/libXdmcp/devel libXdmcp.spec,1.22,1.23 Message-ID: <20090723130456.9628511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXdmcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7372 Modified Files: libXdmcp.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.2-9 - Remove useless %dir Index: libXdmcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXdmcp/devel/libXdmcp.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXdmcp.spec 25 Feb 2009 13:16:12 -0000 1.22 +++ libXdmcp.spec 23 Jul 2009 13:04:26 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXdmcp runtime library Name: libXdmcp Version: 1.0.2 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -57,12 +57,14 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11/ %{_includedir}/X11/Xdmcp.h %{_libdir}/libXdmcp.so %{_libdir}/pkgconfig/xdmcp.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.2-9 +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:05:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:05:22 +0000 (UTC) Subject: rpms/libXfixes/devel libXfixes.spec,1.20,1.21 Message-ID: <20090723130522.0CEB111C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXfixes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7685 Modified Files: libXfixes.spec Log Message: * Thu Jul 23 2009 Adam Jackson 4.0.3-6 - Remove useless %dir Index: libXfixes.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXfixes/devel/libXfixes.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libXfixes.spec 25 Feb 2009 13:19:00 -0000 1.20 +++ libXfixes.spec 23 Jul 2009 13:05:20 -0000 1.21 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXfixes runtime library Name: libXfixes Version: 4.0.3 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -67,18 +67,18 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xfixes.h %if %{with_static} %{_libdir}/libXfixes.a %endif %{_libdir}/libXfixes.so %{_libdir}/pkgconfig/xfixes.pc -#%dir %{_mandir}/man3x %{_mandir}/man3/Xfixes.3* %changelog +* Thu Jul 23 2009 Adam Jackson 4.0.3-6 +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:05:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:05:58 +0000 (UTC) Subject: rpms/libICE/devel libICE.spec,1.28,1.29 Message-ID: <20090723130558.397EF11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libICE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8224 Modified Files: libICE.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %dir Index: libICE.spec =================================================================== RCS file: /cvs/pkgs/rpms/libICE/devel/libICE.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libICE.spec 25 Feb 2009 13:04:54 -0000 1.28 +++ libICE.spec 23 Jul 2009 13:05:57 -0000 1.29 @@ -1,7 +1,7 @@ Summary: X.Org X11 ICE runtime library Name: libICE Version: 1.0.4 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,7 +21,6 @@ Summary: X.Org X11 ICE development packa Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig -Requires: xorg-x11-filesystem Requires: xorg-x11-proto-devel %description devel @@ -56,13 +55,14 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/ICE %{_includedir}/X11/ICE/*.h %{_libdir}/libICE.so %{_libdir}/pkgconfig/ice.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-8 +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:07:33 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:07:33 +0000 (UTC) Subject: rpms/libSM/devel libSM.spec,1.26,1.27 Message-ID: <20090723130733.6581611C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libSM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8628 Modified Files: libSM.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.1.0-6 - Un-require xorg-x11-filesystem, it's going away. Index: libSM.spec =================================================================== RCS file: /cvs/pkgs/rpms/libSM/devel/libSM.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libSM.spec 7 Mar 2009 22:03:07 -0000 1.26 +++ libSM.spec 23 Jul 2009 13:07:03 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 SM runtime library Name: libSM Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -24,7 +24,6 @@ Summary: X.Org X11 SM development packag Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: libICE-devel -Requires: xorg-x11-filesystem Requires: xorg-x11-proto-devel Requires: pkgconfig @@ -69,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/sm.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.1.0-6 +- Un-require xorg-x11-filesystem, it's going away. + * Sat Mar 07 2009 Jason L Tibbitts III - 1.1.0-5 - Minor tweaks to summaries and descriptions. - Don't own /usr/include/X11. From ajax at fedoraproject.org Thu Jul 23 13:08:32 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:08:32 +0000 (UTC) Subject: rpms/libXau/devel libXau.spec,1.27,1.28 Message-ID: <20090723130832.E8FB211C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9006 Modified Files: libXau.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-6 - Remove useless %dir - Un-require xorg-x11-filesystem Index: libXau.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXau/devel/libXau.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libXau.spec 19 Mar 2009 01:31:23 -0000 1.27 +++ libXau.spec 23 Jul 2009 13:08:02 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXau runtime library Name: libXau Version: 1.0.4 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -20,7 +20,6 @@ X.Org X11 libXau runtime library %package devel Summary: X.Org X11 libXau development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: xorg-x11-proto-devel Requires: pkgconfig @@ -60,7 +59,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 %{_includedir}/X11/Xauth.h %{_libdir}/libXau.so %{_libdir}/pkgconfig/xau.pc @@ -68,6 +66,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-6 +- Remove useless %%dir +- Un-require xorg-x11-filesystem + * Wed Mar 18 2009 Adam Jackson 1.0.4-5 - Disable local auth patch. Apparently it _can_ possibly help. From ajax at fedoraproject.org Thu Jul 23 13:12:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:12:46 +0000 (UTC) Subject: rpms/libXt/devel libXt.spec,1.31,1.32 Message-ID: <20090723131246.AB0AD11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11279 Modified Files: libXt.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.6-2 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXt/devel/libXt.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libXt.spec 2 Jul 2009 17:33:37 -0000 1.31 +++ libXt.spec 23 Jul 2009 13:12:16 -0000 1.32 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXt runtime library Name: libXt Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,7 +21,6 @@ X.Org X11 libXt runtime library %package devel Summary: X.Org X11 libXt development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} # needed by xt.pc @@ -68,7 +67,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) %{_bindir}/makestrs -%dir %{_includedir}/X11 %{_includedir}/X11/CallbackI.h %{_includedir}/X11/Composite.h %{_includedir}/X11/CompositeP.h @@ -108,6 +106,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.6-2 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Thu Jul 02 2009 Adam Jackson 1.0.6-1 - libXt 1.0.6 From ajax at fedoraproject.org Thu Jul 23 13:14:06 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:14:06 +0000 (UTC) Subject: rpms/libXpm/devel libXpm.spec,1.26,1.27 Message-ID: <20090723131406.E334E11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12015 Modified Files: libXpm.spec Log Message: * Thu Jul 23 2009 Adam Jackson 3.5.7-6 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXpm/devel/libXpm.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libXpm.spec 25 Feb 2009 13:25:17 -0000 1.26 +++ libXpm.spec 23 Jul 2009 13:14:06 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXpm runtime library Name: libXpm Version: 3.5.7 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -27,7 +27,6 @@ X.Org X11 libXpm runtime library %package devel Summary: X.Org X11 libXpm development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: libX11-devel pkgconfig @@ -73,7 +72,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %{_bindir}/cxpm %{_bindir}/sxpm -%dir %{_includedir}/X11 %{_includedir}/X11/xpm.h %if %{with_static} %{_libdir}/libXpm.a @@ -85,6 +83,10 @@ rm -rf $RPM_BUILD_ROOT #%{_mandir}/man1/*.1x* %changelog +* Thu Jul 23 2009 Adam Jackson 3.5.7-6 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rhughes at fedoraproject.org Thu Jul 23 13:14:31 2009 From: rhughes at fedoraproject.org (Richard Hughes) Date: Thu, 23 Jul 2009 13:14:31 +0000 (UTC) Subject: comps comps-f12.xml.in,1.55,1.56 Message-ID: <20090723131431.0A3AB11C0093@cvs1.fedora.phx.redhat.com> Author: rhughes Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11953 Modified Files: comps-f12.xml.in Log Message: Add PackageKit-command-not-found in the system-tools group Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- comps-f12.xml.in 23 Jul 2009 12:59:54 -0000 1.55 +++ comps-f12.xml.in 23 Jul 2009 13:14:00 -0000 1.56 @@ -5232,6 +5232,7 @@ autofs avahi-tools bash-completion + PackageKit-command-not-found bochs cabextract catfish From ajax at fedoraproject.org Thu Jul 23 13:14:49 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:14:49 +0000 (UTC) Subject: rpms/libXmu/devel libXmu.spec,1.28,1.29 Message-ID: <20090723131449.C687711C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXmu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12353 Modified Files: libXmu.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-3 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXmu.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXmu/devel/libXmu.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libXmu.spec 25 Feb 2009 13:23:31 -0000 1.28 +++ libXmu.spec 23 Jul 2009 13:14:49 -0000 1.29 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXmu/libXmuu runtime libraries Name: libXmu Version: 1.0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,7 +21,6 @@ X.Org X11 libXmu/libXmuu runtime librari %package devel Summary: X.Org X11 libXmu development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: pkgconfig xorg-x11-util-macros @@ -68,7 +67,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 %dir %{_includedir}/X11/Xmu %{_includedir}/X11/Xmu/Atoms.h %{_includedir}/X11/Xmu/CharSet.h @@ -102,6 +100,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xmuu.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-3 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jorton at fedoraproject.org Thu Jul 23 13:15:20 2009 From: jorton at fedoraproject.org (jorton) Date: Thu, 23 Jul 2009 13:15:20 +0000 (UTC) Subject: rpms/subversion/devel subversion.spec,1.145,1.146 Message-ID: <20090723131520.2BAE011C049E@cvs1.fedora.phx.redhat.com> Author: jorton Update of /cvs/extras/rpms/subversion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12341 Modified Files: subversion.spec Log Message: * Thu Jul 23 2009 Joe Orton 1.6.3-2 - remove -devel dependency on -gnome, -kde (#513313) Index: subversion.spec =================================================================== RCS file: /cvs/extras/rpms/subversion/devel/subversion.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- subversion.spec 23 Jun 2009 09:52:59 -0000 1.145 +++ subversion.spec 23 Jul 2009 13:14:49 -0000 1.146 @@ -15,7 +15,7 @@ Summary: A Modern Concurrent Version Control System Name: subversion Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 1.1 Group: Development/Tools URL: http://subversion.tigris.org/ @@ -188,6 +188,13 @@ install -m 644 $RPM_SOURCE_DIR/subversio rm -rf ${RPM_BUILD_ROOT}%{_includedir}/subversion-*/*.txt \ ${RPM_BUILD_ROOT}%{python_sitearch}/*/*.{a,la} +# The SVN build system is broken w.r.t. DSO support; it treats +# normal libraries as DSOs and puts them in $libdir, whereas they +# should go in some subdir somewhere, and be linked using -module, +# etc. So, forcibly nuke the .so's for libsvn_auth_{gnome,kde}, +# since nothing should ever link against them directly. +rm -f ${RPM_BUILD_ROOT}%{_libdir}/libsvn_auth_*.so + # remove stuff produced with Perl modules find $RPM_BUILD_ROOT -type f \ -a \( -name .packlist -o \( -name '*.bs' -a -empty \) \) \ @@ -318,6 +325,9 @@ rm -rf ${RPM_BUILD_ROOT} %endif %changelog +* Thu Jul 23 2009 Joe Orton 1.6.3-2 +- remove -devel dependency on -gnome, -kde (#513313) + * Tue Jun 23 2009 Joe Orton 1.6.3-1 - update to 1.6.3 From ajax at fedoraproject.org Thu Jul 23 13:15:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:15:23 +0000 (UTC) Subject: rpms/libXft/devel libXft.spec,1.24,1.25 Message-ID: <20090723131523.D8EAC11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXft/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12641 Modified Files: libXft.spec Log Message: * Thu Jul 23 2009 Adam Jackson 2.1.13-3 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXft.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXft/devel/libXft.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXft.spec 25 Feb 2009 13:20:52 -0000 1.24 +++ libXft.spec 23 Jul 2009 13:15:23 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXft runtime library Name: libXft Version: 2.1.13 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -23,7 +23,6 @@ X.Org X11 libXft runtime library %package devel Summary: X.Org X11 libXft development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: xorg-x11-proto-devel pkgconfig @@ -75,7 +74,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) #%{_bindir}/xft-config -%dir %{_includedir}/X11 %dir %{_includedir}/X11/Xft %{_includedir}/X11/Xft/Xft.h %{_includedir}/X11/Xft/XftCompat.h @@ -89,6 +87,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xft.3* %changelog +* Thu Jul 23 2009 Adam Jackson 2.1.13-3 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:15:49 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:15:49 +0000 (UTC) Subject: rpms/libXv/devel libXv.spec,1.24,1.25 Message-ID: <20090723131549.E5DE811C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12911 Modified Files: libXv.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-3 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXv/devel/libXv.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXv.spec 25 Feb 2009 13:30:50 -0000 1.24 +++ libXv.spec 23 Jul 2009 13:15:49 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXv runtime library Name: libXv Version: 1.0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -19,7 +19,6 @@ X.Org X11 libXv runtime library %package devel Summary: X.Org X11 libXv development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} # NOTE: libXext-devel dependency added to fix bug #192167 @@ -65,8 +64,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xvlib.h %if %{with_static} %{_libdir}/libXv.a @@ -77,6 +74,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-3 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:17:15 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:17:15 +0000 (UTC) Subject: rpms/libXcursor/devel libXcursor.spec,1.23,1.24 Message-ID: <20090723131715.3949811C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXcursor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13399 Modified Files: libXcursor.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.1.9-5 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXcursor.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXcursor/devel/libXcursor.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libXcursor.spec 25 Feb 2009 13:14:15 -0000 1.23 +++ libXcursor.spec 23 Jul 2009 13:17:15 -0000 1.24 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXcursor runtime library Name: libXcursor Version: 1.1.9 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -25,15 +25,9 @@ X.Org X11 libXcursor runtime library %package devel Summary: X.Org X11 libXcursor development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: pkgconfig -# xorg-x11-proto-devel os needed by xcursor.pc -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXcursor development package @@ -78,7 +72,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 %dir %{_includedir}/X11/Xcursor %{_includedir}/X11/Xcursor/Xcursor.h %if %{with_static} @@ -90,6 +83,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xcursor*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.1.9-5 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:18:57 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:18:57 +0000 (UTC) Subject: rpms/libXvMC/devel libXvMC.spec,1.24,1.25 Message-ID: <20090723131857.9307211C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXvMC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13910 Modified Files: libXvMC.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-7 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXvMC.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXvMC/devel/libXvMC.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXvMC.spec 25 Feb 2009 13:31:44 -0000 1.24 +++ libXvMC.spec 23 Jul 2009 13:18:27 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXvMC runtime library Name: libXvMC Version: 1.0.4 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -10,25 +10,17 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 BuildRequires: pkgconfig -BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel BuildRequires: libXv-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXvMC runtime library %package devel Summary: X.Org X11 libXvMC development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed by xvmc.pc -Requires: libXv-devel, xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel %description devel X.Org X11 libXvMC development package @@ -77,8 +69,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/XvMClib.h %if %{with_static} %{_libdir}/libXvMC.a @@ -89,6 +79,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xvmc.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-7 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:19:31 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:19:31 +0000 (UTC) Subject: rpms/libXaw/devel libXaw.spec,1.30,1.31 Message-ID: <20090723131931.A9D2311C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14142 Modified Files: libXaw.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.6-2 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXaw/devel/libXaw.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXaw.spec 2 Jul 2009 17:41:10 -0000 1.30 +++ libXaw.spec 23 Jul 2009 13:19:01 -0000 1.31 @@ -3,7 +3,7 @@ Summary: X.Org X11 libXaw runtime library Name: libXaw Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT URL: http://www.x.org Group: System Environment/Libraries @@ -16,8 +16,6 @@ BuildRequires: pkgconfig(xmu) pkgconfig( # Required by the configury. BuildRequires: ed -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXaw runtime library @@ -33,13 +31,10 @@ X.Org X11 libXaw version 6 compatibility %package devel Summary: X.Org X11 libXaw development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: pkgconfig(xproto) pkgconfig(xmu) pkgconfig(xt) pkgconfig(xpm) -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXaw development package @@ -85,7 +80,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 %dir %{_includedir}/X11/Xaw %doc COPYING %{_includedir}/X11/Xaw/*.h @@ -97,6 +91,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.6-2 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Thu Jul 02 2009 Adam Jackson 1.0.6-1 - libXaw 1.0.6 From ajax at fedoraproject.org Thu Jul 23 13:20:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:20:47 +0000 (UTC) Subject: rpms/libXevie/devel libXevie.spec,1.21,1.22 Message-ID: <20090723132047.CF48011C049E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXevie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14750 Modified Files: libXevie.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.2-6 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXevie.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXevie/devel/libXevie.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libXevie.spec 25 Feb 2009 13:17:10 -0000 1.21 +++ libXevie.spec 23 Jul 2009 13:20:17 -0000 1.22 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXevie runtime library Name: libXevie Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -10,26 +10,17 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 BuildRequires: pkgconfig -BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXevie runtime library %package devel Summary: X.Org X11 libXevie development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# xorg-x11-proto-devel is needed by xevie.pc -Requires: libX11-devel, libXext-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXevie development package @@ -68,9 +59,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions -%dir %{_includedir}/X11/extensions/Xevie.h +%{_includedir}/X11/extensions/Xevie.h %if %{with_static} %{_libdir}/libXevie.a %endif @@ -80,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.2-6 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:20:57 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:20:57 +0000 (UTC) Subject: rpms/libXres/devel libXres.spec,1.22,1.23 Message-ID: <20090723132057.E1F8311C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXres/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15070 Modified Files: libXres.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.3-7 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXres.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXres/devel/libXres.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXres.spec 25 Feb 2009 13:27:57 -0000 1.22 +++ libXres.spec 23 Jul 2009 13:20:57 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXres runtime library Name: libXres Version: 1.0.3 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -13,22 +13,14 @@ BuildRequires: pkgconfig BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXres runtime library %package devel Summary: X.Org X11 libXres development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed by xres.pc -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXres development package @@ -67,8 +59,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/XRes.h %if %{with_static} %{_libdir}/libXRes.a @@ -79,6 +69,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.3-7 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:22:11 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:22:11 +0000 (UTC) Subject: rpms/libXfont/devel libXfont.spec,1.45,1.46 Message-ID: <20090723132211.F35BB11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXfont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15596 Modified Files: libXfont.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.4.0-4 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXfont.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXfont/devel/libXfont.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- libXfont.spec 25 Feb 2009 13:19:54 -0000 1.45 +++ libXfont.spec 23 Jul 2009 13:22:11 -0000 1.46 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXfont runtime library Name: libXfont Version: 1.4.0 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -16,21 +16,14 @@ BuildRequires: libfontenc-devel BuildRequires: freetype-devel BuildRequires: autoconf automake libtool -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXfont runtime library %package devel Summary: X.Org X11 libXfont development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: libfontenc-devel pkgconfig -# NOTE: libXfont headers include proto headers, so this is needed. -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel %description devel X.Org X11 libXfont development package @@ -67,8 +60,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/fonts %{_includedir}/X11/fonts/bdfint.h %{_includedir}/X11/fonts/bitmap.h %{_includedir}/X11/fonts/bufio.h @@ -88,6 +79,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xfont.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.4.0-4 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:22:49 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:22:49 +0000 (UTC) Subject: rpms/libXcomposite/devel libXcomposite.spec,1.26,1.27 Message-ID: <20090723132249.9591511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXcomposite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15844 Modified Files: libXcomposite.spec Log Message: * Thu Jul 23 2009 Adam Jackson 0.4.0-8 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXcomposite.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXcomposite/devel/libXcomposite.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libXcomposite.spec 25 Feb 2009 13:13:16 -0000 1.26 +++ libXcomposite.spec 23 Jul 2009 13:22:49 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXcomposite runtime library Name: libXcomposite Version: 0.4.0 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -10,28 +10,19 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 BuildRequires: pkgconfig -BuildRequires: xorg-x11-proto-devel BuildRequires: pkgconfig(compositeproto) >= 0.4 BuildRequires: libX11-devel BuildRequires: libXext-devel BuildRequires: libXfixes-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXcomposite runtime library %package devel Summary: X.Org X11 libXcomposite development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -Requires: xorg-x11-proto-devel >= 7.0-10 -Requires: libXfixes-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXcomposite development package @@ -63,14 +54,16 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xcomposite.h %{_libdir}/libXcomposite.so %{_libdir}/pkgconfig/xcomposite.pc %{_mandir}/man3/X?omposite*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 0.4.0-8 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:24:02 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:24:02 +0000 (UTC) Subject: rpms/libXrender/devel libXrender.spec,1.24,1.25 Message-ID: <20090723132402.9020711C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXrender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16159 Modified Files: libXrender.spec Log Message: * Thu Jul 23 2009 Adam Jackson 0.9.4-6 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXrender.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrender/devel/libXrender.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXrender.spec 25 Feb 2009 13:27:04 -0000 1.24 +++ libXrender.spec 23 Jul 2009 13:23:32 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrender runtime library Name: libXrender Version: 0.9.4 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -10,24 +10,20 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2 BuildRequires: pkgconfig -BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel - %description X.Org X11 libXrender runtime library %package devel Summary: X.Org X11 libXrender development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} # needed by xrender.pc Requires: xorg-x11-proto-devel Requires: libX11-devel - %description devel X.Org X11 libXrender development package @@ -66,8 +62,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xrender.h %if %{with_static} %{_libdir}/libXrender.a @@ -76,6 +70,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xrender.pc %changelog +* Thu Jul 23 2009 Adam Jackson 0.9.4-6 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:25:08 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:25:08 +0000 (UTC) Subject: rpms/libXdamage/devel libXdamage.spec,1.22,1.23 Message-ID: <20090723132508.5E25411C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXdamage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16591 Modified Files: libXdamage.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.1.1-7 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXdamage.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXdamage/devel/libXdamage.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXdamage.spec 25 Feb 2009 13:15:13 -0000 1.22 +++ libXdamage.spec 23 Jul 2009 13:24:38 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXdamage runtime library Name: libXdamage Version: 1.1.1 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -11,27 +11,17 @@ Source0: ftp://ftp.x.org/pub/individual/ BuildRequires: pkgconfig BuildRequires: libX11-devel -# damageproto 1.1. should probably turn those into virtual provides... -BuildRequires: xorg-x11-proto-devel >= 7.2-3 +BuildRequires: pkgconfig(damageproto) >= 1.1.0 BuildRequires: libXfixes-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXdamage runtime library %package devel Summary: X.Org X11 libXdamage development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# xdamage.pc Requires: xproto damageproto >= 1.0 xfixes -Requires: xorg-x11-proto-devel >= 7.2-3 -Requires: libXfixes-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXdamage development package @@ -64,13 +54,15 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xdamage.h %{_libdir}/libXdamage.so %{_libdir}/pkgconfig/xdamage.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.1.1-7 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:28:24 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:28:24 +0000 (UTC) Subject: rpms/libX11/devel libX11.spec,1.62,1.63 Message-ID: <20090723132824.E467611C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libX11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17643 Modified Files: libX11.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.2.99-2.20090712 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libX11.spec =================================================================== RCS file: /cvs/pkgs/rpms/libX11/devel/libX11.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- libX11.spec 12 Jul 2009 07:11:35 -0000 1.62 +++ libX11.spec 23 Jul 2009 13:27:54 -0000 1.63 @@ -4,7 +4,7 @@ Summary: X.Org X11 libX11 runtime library Name: libX11 Version: 1.2.99 -Release: 1.%{gitdate}%{?dist} +Release: 2.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -18,15 +18,13 @@ Source1: make-git-snapshot.sh Patch2: dont-forward-keycode-0.patch BuildRequires: pkgconfig autoconf automake libtool -# xproto >= 7.0.6 required BuildRequires: xorg-x11-util-macros -BuildRequires: xorg-x11-proto-devel >= 7.1-2 +BuildRequires: pkgconfig(xproto) >= 7.0.15 BuildRequires: xorg-x11-xtrans-devel >= 1.0.3-4 BuildRequires: libxcb-devel >= 1.2 BuildRequires: libXau-devel BuildRequires: libXdmcp-devel -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name}-common = %{version}-%{release} %description @@ -43,11 +41,9 @@ libX11 common data %package devel Summary: X.Org X11 libX11 development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -Requires: xorg-x11-proto-devel >= 7.1-2 -Requires: libXau-devel, libXdmcp-devel, libxcb-devel +Requires: libXau-devel, libXdmcp-devel Requires: pkgconfig %description devel @@ -101,7 +97,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 %{_includedir}/X11/ImUtil.h %{_includedir}/X11/XKBlib.h %{_includedir}/X11/Xcms.h @@ -121,6 +116,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.2.99-2.20090712 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Sun Jul 12 2009 Peter Hutterer 1.2.99-1.20090712 - Today's git snapshot - libX11-1.2.1-indic.patch: Drop. From ajax at fedoraproject.org Thu Jul 23 13:29:07 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:29:07 +0000 (UTC) Subject: rpms/libXrandr/devel libXrandr.spec,1.32,1.33 Message-ID: <20090723132907.9A8AF11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17924 Modified Files: libXrandr.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.3.0-2 - Un-require xorg-x11-filesystem - Remove useless %dir Index: libXrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/libXrandr.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libXrandr.spec 20 Jul 2009 14:07:38 -0000 1.32 +++ libXrandr.spec 23 Jul 2009 13:28:37 -0000 1.33 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrandr runtime library Name: libXrandr Version: 1.3.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -20,12 +20,10 @@ X.Org X11 libXrandr runtime library %package devel Summary: X.Org X11 libXrandr development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -Requires: xorg-x11-proto-devel pkgconfig +Requires: pkgconfig Requires: pkgconfig(randrproto) >= 1.2.1 -Requires: pkgconfig(xrender) %description devel X.Org X11 libXrandr development package @@ -58,8 +56,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/extensions %{_includedir}/X11/extensions/Xrandr.h %{_libdir}/libXrandr.so %{_libdir}/pkgconfig/xrandr.pc @@ -67,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.3.0-2 +- Un-require xorg-x11-filesystem +- Remove useless %%dir + * Thu Jul 16 2009 Adam Jackson 1.3.0-1 - libXrandr 1.3.0 From pbrobinson at fedoraproject.org Thu Jul 23 13:29:52 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 23 Jul 2009 13:29:52 +0000 (UTC) Subject: rpms/bognor-regis/devel .cvsignore, 1.4, 1.5 bognor-regis.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090723132952.8F87F11C0093@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18326 Modified Files: .cvsignore bognor-regis.spec sources Log Message: - New upstream 0.4.8 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 18 Jul 2009 09:32:43 -0000 1.4 +++ .cvsignore 23 Jul 2009 13:29:22 -0000 1.5 @@ -1 +1 @@ -bognor-regis-0_4_7.tar.bz2 +bognor-regis-0.4.8.tar.bz2 Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bognor-regis.spec 18 Jul 2009 09:32:43 -0000 1.3 +++ bognor-regis.spec 23 Jul 2009 13:29:22 -0000 1.4 @@ -1,12 +1,12 @@ Name: bognor-regis -Version: 0.4.7 +Version: 0.4.8 Release: 1%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia License: GPLv2 URL: http://www.moblin.org/ -Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/bognor-regis-0_4_7.tar.bz2 +Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel @@ -33,7 +33,7 @@ Requires: pkgconfig Files for development with %{name}. %prep -%setup -q -n bognor-regis-0_4_7 +%setup -q %build ./autogen.sh @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Thu Jul 23 2009 Peter Robinson 0.4.8-1 +- New upstream 0.4.8 release + * Sat Jul 18 2009 Peter Robinson 0.4.7-1 - New upstream 0.4.7 release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 18 Jul 2009 09:32:43 -0000 1.4 +++ sources 23 Jul 2009 13:29:22 -0000 1.5 @@ -1 +1 @@ -f94a54243cd0e315e73317f529722be8 bognor-regis-0_4_7.tar.bz2 +19f7bed43c3615ae1ba44f0bd008a771 bognor-regis-0.4.8.tar.bz2 From pbrobinson at fedoraproject.org Thu Jul 23 13:33:27 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 23 Jul 2009 13:33:27 +0000 (UTC) Subject: rpms/moblin-gtk-engine/devel .cvsignore, 1.2, 1.3 moblin-gtk-engine.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723133327.AF37C11C0093@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/moblin-gtk-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20181 Modified Files: .cvsignore moblin-gtk-engine.spec sources Log Message: - New upstream 0.4.0 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 15 Jul 2009 07:42:31 -0000 1.2 +++ .cvsignore 23 Jul 2009 13:32:57 -0000 1.3 @@ -1 +1 @@ -moblin-gtk-engine-0.3.0.tar.bz2 +moblin-gtk-engine-0.4.0.tar.bz2 Index: moblin-gtk-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/moblin-gtk-engine.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- moblin-gtk-engine.spec 15 Jul 2009 07:42:31 -0000 1.1 +++ moblin-gtk-engine.spec 23 Jul 2009 13:32:57 -0000 1.2 @@ -1,5 +1,5 @@ Name: moblin-gtk-engine -Version: 0.3.0 +Version: 0.4.0 Release: 1%{?dist} Summary: GTK engine for Moblin @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_datadir}/themes/Moblin-Netbook/metacity-1 %changelog +* Thu Jul 23 2009 Peter Robinson 0.4.0-1 +- New upstream 0.4.0 release + * Wed Jun 24 2009 Peter Robinson 0.3.0-1 - Update to latest release. Updates from review request Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 15 Jul 2009 07:42:31 -0000 1.2 +++ sources 23 Jul 2009 13:32:57 -0000 1.3 @@ -1 +1 @@ -1245e89e35def7a162935981fb4fa598 moblin-gtk-engine-0.3.0.tar.bz2 +f7459655cefefd31201bb9b714dbffeb moblin-gtk-engine-0.4.0.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 13:36:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:01 +0000 Subject: [pkgdb] python-repoze-what-pylons was added for spot Message-ID: <20090723133601.547FD10F86A@bastion2.fedora.phx.redhat.com> spot has added Package python-repoze-what-pylons with summary A plugin providing utilities for Pylons applications using repoze.what spot has approved Package python-repoze-what-pylons spot has added a Fedora devel branch for python-repoze-what-pylons with an owner of spot spot has approved python-repoze-what-pylons in Fedora devel spot has approved Package python-repoze-what-pylons spot has set commit to Approved for 107427 on python-repoze-what-pylons (Fedora devel) spot has set checkout to Approved for 107427 on python-repoze-what-pylons (Fedora devel) spot has set build to Approved for 107427 on python-repoze-what-pylons (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From pkgdb at fedoraproject.org Thu Jul 23 13:36:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:03 +0000 Subject: [pkgdb] python-repoze-what-pylons summary updated by spot Message-ID: <20090723133603.C0AC010F89D@bastion2.fedora.phx.redhat.com> spot set package python-repoze-what-pylons summary to A plugin providing utilities for Pylons applications using repoze.what To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From pkgdb at fedoraproject.org Thu Jul 23 13:36:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:03 +0000 Subject: [pkgdb] python-repoze-what-pylons (Fedora EPEL, 5) updated by spot Message-ID: <20090723133603.CA72B10F8AB@bastion2.fedora.phx.redhat.com> spot added a Fedora 11 branch for python-repoze-what-pylons spot has set commit to Approved for 107427 on python-repoze-what-pylons (Fedora 11) spot has set checkout to Approved for 107427 on python-repoze-what-pylons (Fedora 11) spot has set build to Approved for 107427 on python-repoze-what-pylons (Fedora 11) spot approved watchbugzilla on python-repoze-what-pylons (Fedora 11) for lmacken spot approved watchcommits on python-repoze-what-pylons (Fedora 11) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From pkgdb at fedoraproject.org Thu Jul 23 13:36:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:03 +0000 Subject: [pkgdb] python-repoze-what-pylons (Fedora EPEL, 5) updated by spot Message-ID: <20090723133603.D05BA10F8AD@bastion2.fedora.phx.redhat.com> spot approved watchbugzilla on python-repoze-what-pylons (Fedora devel) for lmacken spot approved watchcommits on python-repoze-what-pylons (Fedora devel) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From pkgdb at fedoraproject.org Thu Jul 23 13:36:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:03 +0000 Subject: [pkgdb] python-repoze-what-pylons (Fedora EPEL, 5) updated by spot Message-ID: <20090723133603.D7B3610F8B2@bastion2.fedora.phx.redhat.com> spot added a Fedora 10 branch for python-repoze-what-pylons spot has set commit to Approved for 107427 on python-repoze-what-pylons (Fedora 10) spot has set checkout to Approved for 107427 on python-repoze-what-pylons (Fedora 10) spot has set build to Approved for 107427 on python-repoze-what-pylons (Fedora 10) spot approved watchbugzilla on python-repoze-what-pylons (Fedora 10) for lmacken spot approved watchcommits on python-repoze-what-pylons (Fedora 10) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From spot at fedoraproject.org Thu Jul 23 13:36:10 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 13:36:10 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/devel - New directory Message-ID: <20090723133610.73A3611C025F@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsC21514/rpms/python-repoze-what-pylons/devel Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-pylons/devel added to the repository From spot at fedoraproject.org Thu Jul 23 13:36:10 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 13:36:10 +0000 (UTC) Subject: rpms/python-repoze-what-pylons - New directory Message-ID: <20090723133610.2656311C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsC21514/rpms/python-repoze-what-pylons Log Message: Directory /cvs/pkgs/rpms/python-repoze-what-pylons added to the repository From pkgdb at fedoraproject.org Thu Jul 23 13:36:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 13:36:03 +0000 Subject: [pkgdb] python-repoze-what-pylons (Fedora EPEL, 5) updated by spot Message-ID: <20090723133603.E719410F8B4@bastion2.fedora.phx.redhat.com> spot added a Fedora EPEL 5 branch for python-repoze-what-pylons spot has set commit to Approved for 107427 on python-repoze-what-pylons (Fedora EPEL 5) spot has set checkout to Approved for 107427 on python-repoze-what-pylons (Fedora EPEL 5) spot has set build to Approved for 107427 on python-repoze-what-pylons (Fedora EPEL 5) spot approved watchbugzilla on python-repoze-what-pylons (Fedora EPEL 5) for lmacken spot approved watchcommits on python-repoze-what-pylons (Fedora EPEL 5) for lmacken To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-repoze-what-pylons From spot at fedoraproject.org Thu Jul 23 13:36:23 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 13:36:23 +0000 (UTC) Subject: rpms/python-repoze-what-pylons Makefile,NONE,1.1 Message-ID: <20090723133623.4AC7611C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsC21514/rpms/python-repoze-what-pylons Added Files: Makefile Log Message: Setup of module python-repoze-what-pylons --- NEW FILE Makefile --- # Top level Makefile for module python-repoze-what-pylons all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From spot at fedoraproject.org Thu Jul 23 13:36:24 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 13:36:24 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723133624.1E14B11C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/spot/CVSROOT/admin/tmpcvsC21514/rpms/python-repoze-what-pylons/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-repoze-what-pylons --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-repoze-what-pylons # $Id: Makefile,v 1.1 2009/07/23 13:36:23 spot Exp $ NAME := python-repoze-what-pylons SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From deji at fedoraproject.org Thu Jul 23 13:37:12 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Thu, 23 Jul 2009 13:37:12 +0000 (UTC) Subject: rpms/mpich2/EL-5 .cvsignore, 1.3, 1.4 mpich2.spec, 1.5, 1.6 sources, 1.3, 1.4 mpich2-1.0.8-rpmbuild.patch, 1.1, NONE mpich2.module.in, 1.1, NONE Message-ID: <20090723133712.8B46B11C0093@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/mpich2/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21944 Modified Files: .cvsignore mpich2.spec sources Removed Files: mpich2-1.0.8-rpmbuild.patch mpich2.module.in Log Message: * Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 - Update to 1.1.1 - Remove (and obsolete) the -libs subpackage, it is not necessary. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 29 Mar 2009 02:10:13 -0000 1.3 +++ .cvsignore 23 Jul 2009 13:36:42 -0000 1.4 @@ -1 +1 @@ -mpich2-1.0.8p1.tar.gz +mpich2-1.1.1.tar.gz Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/EL-5/mpich2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mpich2.spec 30 Mar 2009 04:05:57 -0000 1.5 +++ mpich2.spec 23 Jul 2009 13:36:42 -0000 1.6 @@ -1,18 +1,17 @@ -Summary: An implementation of MPI +Summary: A high-performance implementation of MPI Name: mpich2 -Version: 1.0.8p1 -Release: 2%{?dist} +Version: 1.1.1 +Release: 1%{?dist} License: MIT Group: Development/Libraries URL: http://www.mcs.anl.gov/research/projects/mpich2 Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/%{name}-%{version}.tar.gz -Source1: mpich2.module.in -Patch0: mpich2-1.0.8-rpmbuild.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libXt-devel, e2fsprogs-devel BuildRequires: java-devel-openjdk, gcc-gfortran BuildRequires: emacs-common, perl, python -Requires: %{name}-libs = %{version}-%{release} +Obsoletes: %{name}-libs < 1.1.1 +Requires: environment-modules Requires: python Requires(post): chkconfig Requires(preun):chkconfig @@ -39,49 +38,42 @@ Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gcc-gfortran -Requires(post): chkconfig -Requires(preun):chkconfig +Requires(post): /usr/sbin/alternatives +Requires(preun):/usr/sbin/alternatives +Requires(posttrans):/usr/sbin/alternatives %description devel Contains development headers and libraries for mpich2 -%package libs -Summary: Libraries and configuration files for mpich2 -Group: Development/Libraries - -%description libs -Contains the arch dependent libraries and their build configuration for mpich2 - # We only compile with gcc, but other people may want other compilers. # Set the compiler here. -%{!?opt_cc: %define opt_cc gcc} -%{!?opt_fc: %define opt_fc gfortran} +%{!?opt_cc: %global opt_cc gcc} +%{!?opt_fc: %global opt_fc gfortran} # Optional CFLAGS to use with the specific compiler...gcc doesn't need any, # so uncomment and undefine to NOT use -%{!?opt_cc_cflags: %define opt_cc_cflags %{optflags}} -%{!?opt_fc_fflags: %define opt_fc_fflags %{optflags}} +%{!?opt_cc_cflags: %global opt_cc_cflags %{optflags}} +%{!?opt_fc_fflags: %global opt_fc_fflags %{optflags}} %ifarch %{ix86} x86_64 -%define selected_channels ch3:nemesis +%global selected_channels ch3:nemesis %else -%define selected_channels ch3:sock +%global selected_channels ch3:sock %endif %ifarch x86_64 ia64 ppc64 s390x sparc64 -%define mode 64 -%define priority 41 +%global mode 64 +%global priority 41 %else -%define mode 32 -%define priority 40 +%global mode 32 +%global priority 40 %endif %ifarch x86_64 -%define XFLAGS -fPIC +%global XFLAGS -fPIC %endif %prep %setup -q -%patch0 -p0 -b .build %configure \ --enable-sharedlibs=gcc \ @@ -93,7 +85,7 @@ Contains the arch dependent libraries an --docdir=%{_docdir}/%{name}-%{version} \ --htmldir=%{_docdir}/%{name}-%{version}/www \ --with-java=%{_sysconfdir}/alternatives/java_sdk \ - F90=%{opt_fc} \ + F90=%{opt_fc} \ F77=%{opt_fc} \ CFLAGS="%{?opt_cc_cflags} %{?XFLAGS}" \ CXXFLAGS="%{optflags} %{?XFLAGS}" \ @@ -114,27 +106,41 @@ rm -f %{buildroot}%{_bindir}/{mpiexec,mp mv %{buildroot}%{_mandir}/man1/{,mp-}mpiexec.1 pushd %{buildroot}%{_bindir}/ ln -s mpiexec.py mpdrun +touch mpiexec +touch mpirun +rm -f mpic++ +touch mpic++ popd for b in mpicxx mpicc mpif77 mpif90; do mv %{buildroot}%{_bindir}/$b %{buildroot}%{_bindir}/mp%{mode}-$b; + touch %{buildroot}%{_bindir}/$b; mv %{buildroot}%{_mandir}/man1/$b.1 %{buildroot}%{_mandir}/man1/mp-$b.1; + touch %{buildroot}%{_mandir}/man1/$b.1; done -## Setup the executables for environment module +## Setup the executables for 'environment module' mkdir -p %{buildroot}%{_datadir}/%{name}/bin%{mode} for b in mpicxx mpicc mpif77 mpif90; do ln -s ../../../bin/mp%{mode}-$b %{buildroot}%{_datadir}/%{name}/bin%{mode}/$b done -for ex in mpiexec mpirun; do - ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$ex +ln -s ../../../bin/mp%{mode}-mpicxx %{buildroot}%{_datadir}/%{name}/bin%{mode}/mpic++ + +for bn in mpiexec mpirun; do + ln -s ../../../bin/mpiexec.py %{buildroot}%{_datadir}/%{name}/bin%{mode}/$bn done mv %{buildroot}%{_libdir}/%{name}/pkgconfig %{buildroot}%{_libdir}/ chmod -x %{buildroot}%{_libdir}/pkgconfig/*.pc -## Create modules file -sed 's#@DATADIR@#'%{_datadir}/%{name}'#;s#@LIBDIR@#'%{_libdir}/%{name}'#;s#@INCLUDEDIR@#'%{_includedir}/%{name}'#;s#@MODE@#'%{mode}'#' < %SOURCE1 > %{buildroot}%{_datadir}/%{name}/%{name}.module -#:; +#Install the libdir under /etc/ld.so.conf.d +mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d +echo "%{_libdir}/%{name}" \ + > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf + +# Adjust the default 'environment module' PATH for our changes +mkdir -p %{buildroot}%{_datadir}/Modules/modulefiles +cp -pr src/packaging/envmods/mpich2.module %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} +sed -i 's#'%{_bindir}'#'%{_datadir}/%{name}/bin%{mode}'#' %{buildroot}%{_datadir}/Modules/modulefiles/%{name}-%{mode} # Manually copy doc file here instead of the %files section to prevent the rpm #build script from throwing the other things in there out @@ -161,6 +167,9 @@ find %{buildroot} -type f -name "*.la" - rm -rf %{buildroot} %post + +/sbin/ldconfig + if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpirun mpi-run %{_bindir}/mpiexec.py 41 \ @@ -173,7 +182,24 @@ if [ $1 -eq 1 ] ; then %{_mandir}/man1/mp-mpif77.1.gz \ --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ %{_mandir}/man1/mp-mpicc.1.gz \ - --slave %{_mandir}/man1/mpic++.1.gz mpic++-man \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ + %{_mandir}/man1/mp-mpicxx.1.gz +fi + +%posttrans +if [ $1 -eq 0 ] ; then +/usr/sbin/alternatives \ + --install %{_bindir}/mpirun mpi-run %{_bindir}/mpiexec.py 41 \ + --slave %{_bindir}/mpiexec mpi-exec %{_bindir}/mpiexec.py \ + --slave %{_mandir}/man1/mpiexec.1.gz mpi-exec-man \ + %{_mandir}/man1/mp-mpiexec.1.gz \ + --slave %{_mandir}/man1/mpif90.1.gz mpif90-man \ + %{_mandir}/man1/mp-mpif90.1.gz \ + --slave %{_mandir}/man1/mpif77.1.gz mpif77-man \ + %{_mandir}/man1/mp-mpif77.1.gz \ + --slave %{_mandir}/man1/mpicc.1.gz mpicc-man \ + %{_mandir}/man1/mp-mpicc.1.gz \ + --slave %{_mandir}/man1/mpicxx.1.gz mpicxx-man \ %{_mandir}/man1/mp-mpicxx.1.gz fi @@ -182,11 +208,24 @@ if [ $1 -eq 0 ] ; then /usr/sbin/alternatives --remove mpi-run %{_bindir}/mpiexec.py fi +%postun -p /sbin/ldconfig + %post devel if [ $1 -eq 1 ] ; then /usr/sbin/alternatives \ --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ + --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 +fi + +%posttrans devel +if [ $1 -eq 0 ] ; then +/usr/sbin/alternatives \ + --install %{_bindir}/mpicc mpicc %{_bindir}/mp%{mode}-mpicc %{priority}\ + --slave %{_bindir}/mpicxx mpicxx %{_bindir}/mp%{mode}-mpicxx \ + --slave %{_bindir}/mpic++ mpic++ %{_bindir}/mp%{mode}-mpicxx \ --slave %{_bindir}/mpif90 mpif90 %{_bindir}/mp%{mode}-mpif90 \ --slave %{_bindir}/mpif77 mpif77 %{_bindir}/mp%{mode}-mpif77 fi @@ -199,51 +238,60 @@ fi %files %defattr(-,root,root,-) %{_bindir}/* +%dir %{_libdir}/%{name} +%{_libdir}/%{name}/*.jar +%{_libdir}/%{name}/mpe*.o +%{_libdir}/%{name}/*.so.* %dir %{_datadir}/%{name} %dir %{_datadir}/%{name}/bin%{mode} %{_datadir}/%{name}/bin%{mode}/mpiexec %{_datadir}/%{name}/bin%{mode}/mpirun -%exclude %{_bindir}/mp%{mode}-mpicc -%exclude %{_bindir}/mp%{mode}-mpicxx -%exclude %{_bindir}/mp%{mode}-mpif90 -%exclude %{_bindir}/mp%{mode}-mpif77 +%exclude %{_bindir}/mpiexec +%exclude %{_bindir}/mpirun +%exclude %{_bindir}/*mpic* +%exclude %{_bindir}/*mpif* +%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf +%config %{_sysconfdir}/%{name}-%{mode}/ %doc %{_docdir}/%{name}-%{version}/ -%{_mandir}/man1/* +%doc %{_datadir}/%{name}/doc/ +%{_mandir}/man1/mp-*.1.gz %if 0%{?fedora} < 11 %exclude %{_bindir}/mp*.pyc %exclude %{_bindir}/mp*.pyo %endif - -%files libs -%defattr(-,root,root,-) -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/*.jar -%{_libdir}/%{name}/mpe*.o -%{_libdir}/%{name}/*.so.* -%config %{_sysconfdir}/%{name}-%{mode}/ +%ghost %{_bindir}/mpiexec +%ghost %{_bindir}/mpirun +%ghost %{_mandir}/man1/mpi*.1.gz +%ghost %{_mandir}/man1/MPI.1.gz %files devel %defattr(-,root,root,-) -%{_bindir}/mp%{mode}-mpicc -%{_bindir}/mp%{mode}-mpicxx -%{_bindir}/mp%{mode}-mpif90 -%{_bindir}/mp%{mode}-mpif77 +%{_bindir}/mp%{mode}* +%ghost %{_bindir}/mpicc +%ghost %{_bindir}/mpicxx +%ghost %{_bindir}/mpic++ +%ghost %{_bindir}/mpif90 +%ghost %{_bindir}/mpif77 %{_includedir}/* %{_libdir}/%{name}/*.a %{_libdir}/%{name}/*.so %{_libdir}/%{name}/trace_rlog/libTraceInput.so %{_libdir}/pkgconfig/%{name}-ch3.pc -%{_datadir}/%{name}/%{name}.module +%{_datadir}/Modules/modulefiles/%{name}-%{mode} %{_datadir}/%{name}/bin%{mode}/mpicc %{_datadir}/%{name}/bin%{mode}/mpicxx +%{_datadir}/%{name}/bin%{mode}/mpic++ %{_datadir}/%{name}/bin%{mode}/mpif90 %{_datadir}/%{name}/bin%{mode}/mpif77 %{_datadir}/%{name}/examples* %{_datadir}/%{name}/logfiles/ %{_mandir}/man4/*.gz -%doc README.testing README.romio README.developer %changelog +* Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 +- Update to 1.1.1 +- Remove (and obsolete) the -libs subpackage, it is not necessary. + * Sun Mar 29 2009 Deji Akingunola - 1.0.8p1-2 - Specifically build with openjdk Java, so Jumpshot works (Anthony Chan) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 29 Mar 2009 02:10:13 -0000 1.3 +++ sources 23 Jul 2009 13:36:42 -0000 1.4 @@ -1 +1 @@ -8ff91187e264e75b5f9307018983ba2b mpich2-1.0.8p1.tar.gz +01bffc9233411495c973d52c8ee15bf9 mpich2-1.1.1.tar.gz --- mpich2-1.0.8-rpmbuild.patch DELETED --- --- mpich2.module.in DELETED --- From rdieter at fedoraproject.org Thu Jul 23 13:37:46 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 13:37:46 +0000 (UTC) Subject: rpms/strigi/devel .cvsignore, 1.16, 1.17 sources, 1.16, 1.17 strigi-daemon.desktop, 1.3, 1.4 strigi.spec, 1.41, 1.42 Message-ID: <20090723133746.533AE11C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/strigi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22133 Modified Files: .cvsignore sources strigi-daemon.desktop strigi.spec Log Message: * Thu Jul 23 2009 Rex Dieter 0.7-0.1.RC1 - strigi-0.7-RC1 - use %_isa where appropriate - %files: track lib sonames - strigi-daemon.desktop: +Hidden=true (ie, disable autostart by default) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/strigi/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 31 May 2009 15:20:13 -0000 1.16 +++ .cvsignore 23 Jul 2009 13:37:16 -0000 1.17 @@ -1 +1 @@ -strigi-0.6.5.tar.bz2 +strigi-0.7-RC1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/strigi/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 31 May 2009 15:20:14 -0000 1.16 +++ sources 23 Jul 2009 13:37:16 -0000 1.17 @@ -1 +1 @@ -7f265c331c02802e199b922e7b2a2292 strigi-0.6.5.tar.bz2 +445cb77ee362b07db9d3f403d1edb1a7 strigi-0.7-RC1.tar.bz2 Index: strigi-daemon.desktop =================================================================== RCS file: /cvs/pkgs/rpms/strigi/devel/strigi-daemon.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- strigi-daemon.desktop 29 Jun 2009 21:05:44 -0000 1.3 +++ strigi-daemon.desktop 23 Jul 2009 13:37:16 -0000 1.4 @@ -9,5 +9,5 @@ Categories= X-KDE-autostart-after=panel X-KDE-StartupNotify=false X-KDE-UniqueApplet=true -#NoDisplay=true X-KDE-autostart-condition=nepomukserverrc:Service-nepomukstrigiservice:autostart:true +Hidden=true Index: strigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/strigi/devel/strigi.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- strigi.spec 29 Jun 2009 22:29:15 -0000 1.41 +++ strigi.spec 23 Jul 2009 13:37:16 -0000 1.42 @@ -1,11 +1,14 @@ + +%define pre RC1 + Name: strigi -Version: 0.6.5 -Release: 2%{?dist} +Version: 0.7 +Release: 0.1.%{pre}%{?dist} Summary: A desktop search program Group: Applications/Productivity License: LGPLv2+ URL: http://www.vandenoever.info/software/strigi -Source0: http://www.vandenoever.info/software/strigi/strigi-%{version}.tar.bz2 +Source0: http://www.vandenoever.info/software/strigi/strigi-%{version}%{?pre:-%{pre}}.tar.bz2 Source1: strigiclient.desktop Source2: strigi-daemon.desktop Patch0: strigi-0.6.2-multilib.patch @@ -18,7 +21,7 @@ BuildRequires: cppunit-devel exiv2-devel BuildRequires: bison BuildRequires: desktop-file-utils -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description Strigi is a fast and light desktop search engine. It can handle a large range @@ -36,7 +39,7 @@ daemon can. %package devel Summary: Development files for the strigi desktop search engine Group: Development/Libraries -Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} Requires: pkgconfig %description devel @@ -50,7 +53,7 @@ Group: Development/Libraries Strigi search engine libraries %prep -%setup -q +%setup -q -n %{name}-%{version}%{?pre:-%{pre}} %patch0 -p1 -b .multilib %build @@ -75,9 +78,8 @@ desktop-file-install \ # Add an autostart desktop file for the strigi daemon install -p -m644 -D %{SOURCE2} %{buildroot}%{_sysconfdir}/xdg/autostart/strigi-daemon.desktop - -#check -#make -C %{_target_platform}/tests +%check +make -C %{_target_platform}/tests %clean rm -rf %{buildroot} @@ -104,11 +106,21 @@ rm -rf %{buildroot} %files libs %defattr(-,root,root,-) %{_datadir}/strigi/ -%{_libdir}/lib*.so.* -%{_libdir}/strigi/ -%exclude %{_libdir}/strigi/*.cmake +%{_libdir}/libsearchclient.so.0* +%{_libdir}/libstreamanalyzer.so.0* +%{_libdir}/libstreams.so.0* +%{_libdir}/libstrigihtmlgui.so.0* +%{_libdir}/libstrigiqtdbusclient.so.0* +%dir %{_libdir}/strigi/ +%{_libdir}/strigi/strigi*.so %changelog +* Thu Jul 23 2009 Rex Dieter 0.7-0.1.RC1 +- strigi-0.7-RC1 +- use %%_isa where appropriate +- %%files: track lib sonames +- strigi-daemon.desktop: +Hidden=true (ie, disable autostart by default) + * Mon Jun 29 2009 Luk?? Tinkl - 0.6.5-2 - don't start strigi daemon unconditionally (#487322) From ajax at fedoraproject.org Thu Jul 23 13:41:37 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:41:37 +0000 (UTC) Subject: rpms/libfontenc/devel libfontenc.spec,1.26,1.27 Message-ID: <20090723134137.C58F511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libfontenc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23457 Modified Files: libfontenc.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-9 - Un-requires xorg-x11-filesystem Index: libfontenc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfontenc/devel/libfontenc.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libfontenc.spec 23 Jul 2009 13:01:55 -0000 1.26 +++ libfontenc.spec 23 Jul 2009 13:41:07 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 libfontenc runtime library Name: libfontenc Version: 1.0.4 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -19,15 +19,12 @@ BuildRequires: xorg-x11-font-utils # FIXME: temporarily require autoconf for workaround BuildRequires: autoconf -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libfontenc runtime library %package devel Summary: X.Org X11 libfontenc development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Obsoletes: XFree86-devel, xorg-x11-devel @@ -85,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/fontenc.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-9 +- Un-requires xorg-x11-filesystem + * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %%dir From theinric at fedoraproject.org Thu Jul 23 13:47:13 2009 From: theinric at fedoraproject.org (Tomas Heinrich) Date: Thu, 23 Jul 2009 13:47:13 +0000 (UTC) Subject: rpms/picviz/devel libpicviz-0.6-cmake.patch, NONE, 1.1 libpicviz-0.6-libdir.patch, NONE, 1.1 libpicviz-0.6-libev.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 picviz.spec, 1.6, 1.7 sources, 1.4, 1.5 Message-ID: <20090723134713.9C7CF11C0093@cvs1.fedora.phx.redhat.com> Author: theinric Update of /cvs/extras/rpms/picviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26379 Modified Files: .cvsignore picviz.spec sources Added Files: libpicviz-0.6-cmake.patch libpicviz-0.6-libdir.patch libpicviz-0.6-libev.patch Log Message: upgrade to 0.6 libpicviz-0.6-cmake.patch: CMakeLists.txt | 4 ++-- gnulib/glthread/CMakeLists.txt | 2 +- src/CMakeLists.txt | 18 +++++++++--------- src/plugins/output/CMakeLists.txt | 5 +++-- src/plugins/render/CMakeLists.txt | 4 ++-- src/plugins/vars/CMakeLists.txt | 4 ++-- 6 files changed, 19 insertions(+), 18 deletions(-) --- NEW FILE libpicviz-0.6-cmake.patch --- diff -up libpicviz-0.6/CMakeLists.txt.orig libpicviz-0.6/CMakeLists.txt --- libpicviz-0.6/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.6) -project(LIBPICVIZ) +project(libpicviz) INCLUDE(CheckIncludeFile) INCLUDE(CheckFunctionExists) @@ -48,7 +48,7 @@ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR DESTINATION ${LIB_INSTALL_DIR}/pkgconfig/ ) -SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${LIBPICVIZ_SOURCE_DIR}/cmake) +SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake) FIND_PACKAGE(FLEX REQUIRED) FIND_PACKAGE(BISON REQUIRED) #FIND_PACKAGE(PCRE REQUIRED) diff -up libpicviz-0.6/gnulib/glthread/CMakeLists.txt.orig libpicviz-0.6/gnulib/glthread/CMakeLists.txt --- libpicviz-0.6/gnulib/glthread/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/gnulib/glthread/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,4 +1,4 @@ -include_directories(${LIBPICVIZ_SOURCE_DIR}/gnulib/ ${LIBPICVIZ_SOURCE_DIR}) +include_directories(${PROJECT_SOURCE_DIR}/gnulib/ ${PROJECT_SOURCE_DIR}) add_library(glthread STATIC cond.c lock.c thread.c threadlib.c tls.c) diff -up libpicviz-0.6/src/CMakeLists.txt.orig libpicviz-0.6/src/CMakeLists.txt --- libpicviz-0.6/src/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/src/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,14 +1,14 @@ add_subdirectory(plugins) #add_subdirectory(bindings) -include_directories(${LIBPICVIZ_SOURCE_DIR}/src/include ${PCRE_INCLUDE_DIR} ${LIBPICVIZ_SOURCE_DIR}/gnulib/glthread ${LIBPICVIZ_SOURCE_DIR}/libev) +include_directories(${PROJECT_SOURCE_DIR}/src/include ${PCRE_INCLUDE_DIR} ${PROJECT_SOURCE_DIR}/gnulib/glthread ${PROJECT_SOURCE_DIR}/libev) link_directories( - ${LIBPICVIZ_BINARY_DIR}/libev + ${PROJECT_BINARY_DIR}/libev ) #set(CMAKE_SHARED_LINKER_FLAGS "-lm -lfl -ly") -#link_directories(${LIBPICVIZ_BINARY_DIR}/ ${LIBPICVIZ_BINARY_DIR}/gnulib/glthread ${LIBPICVIZ_BINARY_DIR}/libev) +#link_directories(${PROJECT_BINARY_DIR}/ ${PROJECT_BINARY_DIR}/gnulib/glthread ${PROJECT_BINARY_DIR}/libev) IF(PCRE_FOUND) INCLUDE_DIRECTORIES(AFTER ${PCRE_INCLUDE_DIR}) @@ -17,19 +17,19 @@ ENDIF(PCRE_FOUND) # Parser -BISON_TARGET(picviz ${LIBPICVIZ_SOURCE_DIR}/src/pgdl-parser.y ${LIBPICVIZ_BINARY_DIR}/src/pgdl-parser.c) -FLEX_TARGET(picviz ${LIBPICVIZ_SOURCE_DIR}/src/pgdl-lexer.l ${LIBPICVIZ_BINARY_DIR}/src/pgdl-lexer.c) +BISON_TARGET(picviz ${PROJECT_SOURCE_DIR}/src/pgdl-parser.y ${PROJECT_BINARY_DIR}/src/pgdl-parser.c) +FLEX_TARGET(picviz ${PROJECT_SOURCE_DIR}/src/pgdl-lexer.l ${PROJECT_BINARY_DIR}/src/pgdl-lexer.c) # Filter -BISON_TARGET(picviz ${LIBPICVIZ_SOURCE_DIR}/src/filter.yac.y ${LIBPICVIZ_BINARY_DIR}/src/filter-parser.c) -FLEX_TARGET(picviz ${LIBPICVIZ_SOURCE_DIR}/src/filter.lex.l ${LIBPICVIZ_BINARY_DIR}/src/filter-lexer.c) +BISON_TARGET(picviz ${PROJECT_SOURCE_DIR}/src/filter.yac.y ${PROJECT_BINARY_DIR}/src/filter-parser.c) +FLEX_TARGET(picviz ${PROJECT_SOURCE_DIR}/src/filter.lex.l ${PROJECT_BINARY_DIR}/src/filter-lexer.c) add_library(picviz SHARED axis.c axisplot.c correlation.c debug.c real-time.c filter.c image.c learn.c line.c plugins.c engine.c picviz-hash.c picviz-init.c picviz-pcre.c properties.c render.c values-mapping.c variable.c utils.c filter-parser.c filter-lexer.c pgdl-parser.c pgdl-lexer.c prop-color.c) set_target_properties(picviz PROPERTIES SOVERSION 2) -#target_link_libraries(picviz "-lm -ldl -L${LIBPICVIZ_BINARY_DIR}/libev -lev") -target_link_libraries(picviz "-lm -ldl -L${LIBPICVIZ_BINARY_DIR}/libev/ -lev") +#target_link_libraries(picviz "-lm -ldl -L${PROJECT_BINARY_DIR}/libev -lev") +target_link_libraries(picviz "-lm -ldl -L${PROJECT_BINARY_DIR}/libev/ -lev") install(TARGETS picviz LIBRARY DESTINATION ${LIB_INSTALL_DIR}) install(FILES diff -up libpicviz-0.6/src/plugins/output/CMakeLists.txt.orig libpicviz-0.6/src/plugins/output/CMakeLists.txt --- libpicviz-0.6/src/plugins/output/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/src/plugins/output/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,5 +1,6 @@ -include_directories(${LIBPICVIZ_SOURCE_DIR}/src/include) -link_directories(${LIBPICVIZ_BUILD_DIR}/) +include_directories(${PROJECT_SOURCE_DIR}/src/include) +# not needed? +#link_directories(${LIBPICVIZ_BUILD_DIR}/) add_library(picvizoutsvg MODULE outsvg.c) add_library(picvizoutdebug MODULE outdebug.c) diff -up libpicviz-0.6/src/plugins/render/CMakeLists.txt.orig libpicviz-0.6/src/plugins/render/CMakeLists.txt --- libpicviz-0.6/src/plugins/render/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/src/plugins/render/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,5 +1,5 @@ -include_directories(${LIBPICVIZ_SOURCE_DIR}/src/include) -link_directories(${LIBPICVIZ_BUILD_DIR}) +include_directories(${PROJECT_SOURCE_DIR}/src/include) +#link_directories(${LIBPICVIZ_BUILD_DIR}) # Debug plugin #add_library(picvizrendebug MODULE rendebug.c) diff -up libpicviz-0.6/src/plugins/vars/CMakeLists.txt.orig libpicviz-0.6/src/plugins/vars/CMakeLists.txt --- libpicviz-0.6/src/plugins/vars/CMakeLists.txt.orig 2009-07-21 19:46:44.000000000 +0200 +++ libpicviz-0.6/src/plugins/vars/CMakeLists.txt 2009-07-21 19:46:44.000000000 +0200 @@ -1,5 +1,5 @@ - include_directories(${LIBPICVIZ_SOURCE_DIR}/src/include) -link_directories(${LIBPICVIZ_BUILD_DIR}) +include_directories(${PROJECT_SOURCE_DIR}/src/include) +#link_directories(${LIBPICVIZ_BUILD_DIR}) # Debug plugin add_library(picvizvardebug MODULE vardebug.c) libpicviz-0.6-libdir.patch: setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE libpicviz-0.6-libdir.patch --- diff -up libpicviz-0.6/src/bindings/python/setup.py.orig libpicviz-0.6/src/bindings/python/setup.py --- libpicviz-0.6/src/bindings/python/setup.py.orig 2009-07-20 17:06:20.000000000 +0200 +++ libpicviz-0.6/src/bindings/python/setup.py 2009-07-20 17:17:51.000000000 +0200 @@ -7,7 +7,7 @@ modulepcv = Extension('picviz', ('MINOR_VERSION', '6')], include_dirs = ['../../include/'], libraries = ['picviz','pcre'], - library_dirs = ['../../../../build/src/libpicviz/'], + library_dirs = ['../../../build/src/'], sources = ['py-picviz.c', 'py-picviz_util.c', 'py-picviz_image.c', 'py-picviz_axes.c', 'py-picviz_lines.c', 'py-picviz_pgdl.c']) setup (name = 'Picviz', libpicviz-0.6-libev.patch: CMakeLists.txt | 2 +- src/CMakeLists.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) --- NEW FILE libpicviz-0.6-libev.patch --- diff -up libpicviz-0.6/CMakeLists.txt.orig libpicviz-0.6/CMakeLists.txt --- libpicviz-0.6/CMakeLists.txt.orig 2009-07-22 17:49:49.000000000 +0200 +++ libpicviz-0.6/CMakeLists.txt 2009-07-22 17:52:40.000000000 +0200 @@ -54,6 +54,7 @@ FIND_PACKAGE(BISON REQUIRED) #FIND_PACKAGE(PCRE REQUIRED) FIND_PACKAGE(PkgConfig) +pkg_check_modules(LIBEV REQUIRED libev) pkg_check_modules(Cairo cairo-png) # Versions of GCC may have warnings I haven't @@ -62,7 +63,6 @@ set(CMAKE_C_FLAGS "-Wall -Wextra -O0 -gg #set(CMAKE_C_FLAGS_DEBUG "-Wall -Wextra -O0 -ggdb") add_subdirectory(gnulib) -add_subdirectory(libev) add_subdirectory(src) #SET_TARGET_PROPERTIES(picviz PROPERTIES LINKER_LANGUAGE C) diff -up libpicviz-0.6/src/CMakeLists.txt.orig libpicviz-0.6/src/CMakeLists.txt --- libpicviz-0.6/src/CMakeLists.txt.orig 2009-07-22 17:50:18.000000000 +0200 +++ libpicviz-0.6/src/CMakeLists.txt 2009-07-22 17:55:34.000000000 +0200 @@ -1,11 +1,11 @@ add_subdirectory(plugins) #add_subdirectory(bindings) -include_directories(${PROJECT_SOURCE_DIR}/src/include ${PCRE_INCLUDE_DIR} ${PROJECT_SOURCE_DIR}/gnulib/glthread ${PROJECT_SOURCE_DIR}/libev) +include_directories(${PROJECT_SOURCE_DIR}/src/include ${PCRE_INCLUDE_DIR} ${PROJECT_SOURCE_DIR}/gnulib/glthread ${LIBEV_INCLUDE_DIRS}) link_directories( - ${PROJECT_BINARY_DIR}/libev + ${LIBEV_LIBRARY_DIRS} ) #set(CMAKE_SHARED_LINKER_FLAGS "-lm -lfl -ly") #link_directories(${PROJECT_BINARY_DIR}/ ${PROJECT_BINARY_DIR}/gnulib/glthread ${PROJECT_BINARY_DIR}/libev) @@ -29,7 +29,7 @@ add_library(picviz SHARED axis.c axisplo set_target_properties(picviz PROPERTIES SOVERSION 2) #target_link_libraries(picviz "-lm -ldl -L${PROJECT_BINARY_DIR}/libev -lev") -target_link_libraries(picviz "-lm -ldl -L${PROJECT_BINARY_DIR}/libev/ -lev") +target_link_libraries(picviz "-lm -ldl" ${LIBEV_LIBRARIES}) install(TARGETS picviz LIBRARY DESTINATION ${LIB_INSTALL_DIR}) install(FILES Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/picviz/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 18 Mar 2009 21:45:30 -0000 1.4 +++ .cvsignore 23 Jul 2009 13:47:12 -0000 1.5 @@ -1 +1,3 @@ -picviz-0.5.tar.gz +libpicviz-0.6.tar.gz +picviz-cli-0.6.tar.gz +picviz-gui-0.6.tar.gz Index: picviz.spec =================================================================== RCS file: /cvs/extras/rpms/picviz/devel/picviz.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- picviz.spec 18 Mar 2009 21:45:30 -0000 1.6 +++ picviz.spec 23 Jul 2009 13:47:13 -0000 1.7 @@ -1,15 +1,21 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: picviz -Version: 0.5 +Version: 0.6 Release: 1%{?dist} Summary: Parallel coordinates plotter License: GPLv3+ Group: Applications/Engineering URL: http://www.wallinfire.net/picviz -Source0: http://www.wallinfire.net/picviz/attachment/wiki/ReleasesDownload/%{name}-%{version}.tar.gz -Source1: %{name}.desktop +Source0: http://www.wallinfire.net/files/picviz/libpicviz-%{version}.tar.gz +Source1: http://www.wallinfire.net/files/picviz/picviz-cli-%{version}.tar.gz +Source2: http://www.wallinfire.net/files/picviz/picviz-gui-%{version}.tar.gz +#Source3: http://www.wallinfire.net/files/picviz/picviz-parsers-%{version}.tar.gz +Source4: %{name}.desktop +Patch0: libpicviz-%{version}-libdir.patch +Patch1: libpicviz-%{version}-cmake.patch +Patch2: libpicviz-%{version}-libev.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake @@ -18,7 +24,7 @@ BuildRequires: flex BuildRequires: python-devel BuildRequires: pkgconfig BuildRequires: pcre-devel -BuildRequires: libevent-devel +BuildRequires: libev-devel Requires: pcre Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig @@ -36,13 +42,6 @@ BuildRequires: desktop-file-utils Requires: %{name} = %{version}-%{release} Requires: PyQt4 -%package plugin-plplot -Summary: Plplot plugin for picviz -Group: Applications/Engineering -BuildRequires: plplot-devel -BuildRequires: libtool-ltdl-devel -Requires: %{name} = %{version}-%{release} - %package plugin-pngcairo Summary: PNG Cairo plugin for picviz Group: Applications/Engineering @@ -70,60 +69,81 @@ Header files for libpicviz. %description gui Graphical frontend for picviz. -%description plugin-plplot -Plugin for generating output using the plplot library. - %description plugin-pngcairo Plugin for generating output using cairo-png. %prep -%setup -q +%setup -q -c -a 1 -a 2 +%patch0 -p0 -b .libdir +%patch1 -p0 -b .cmake +%patch2 -p0 -b .libev + %build +# libpicviz +pushd libpicviz-%{version} mkdir -p build pushd build %cmake -DCMAKE_SKIP_RPATH:BOOL=ON .. make %{?_smp_mflags} popd -pushd src/libpicviz/bindings/python +pushd src/bindings/python python ./setup.py build popd +popd + +# cli +pushd picviz-cli-%{version} +pushd src +gcc -g -I../../libpicviz-%{version}/src/include -o pcv pcv.c \ + -L../../libpicviz-%{version}/build/src -lpicviz -lpcre +popd -pushd src/frontend +mkdir -p build +pushd build +%cmake ../doc +popd +popd + +# gui +pushd picviz-gui-%{version} python ./setup.py build popd + %install rm -rf %{buildroot} + +# libpicviz +pushd libpicviz-%{version} make install DESTDIR=%{buildroot} -pushd src/libpicviz/bindings/python +pushd src/bindings/python python ./setup.py install --root=%{buildroot} --install-lib=%{python_sitearch} -popd chmod 755 %{buildroot}/%{python_sitearch}/picviz.so - -pushd src/frontend -python ./setup.py install --root=%{buildroot} --install-lib=%{python_sitearch} +popd popd -install -d -m 755 %{buildroot}/%{_datadir}/%{name} -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers -install -p -m 755 parsers/*.pl %{buildroot}/%{_datadir}/%{name}/parsers -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers/auth -install -p -m 755 parsers/auth/ssh-auth2pcv.pl %{buildroot}/%{_datadir}/%{name}/parsers -install -p -m 755 parsers/auth/ssh-opensession2pcv.pl %{buildroot}/%{_datadir}/%{name}/parsers -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers/ids -install -p -m 755 parsers/ids/* %{buildroot}/%{_datadir}/%{name}/parsers/ids -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers/net -install -p -m 755 parsers/net/* %{buildroot}/%{_datadir}/%{name}/parsers/net -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers/scm -install -p -m 755 parsers/scm/* %{buildroot}/%{_datadir}/%{name}/parsers/scm -install -d -m 755 %{buildroot}/%{_datadir}/%{name}/parsers/web -install -p -m 755 parsers/web/* %{buildroot}/%{_datadir}/%{name}/parsers/web +# cli +pushd picviz-cli-%{version} +mkdir -p %{buildroot}/%{_bindir} +install -p -m 755 src/pcv %{buildroot}/%{_bindir}/pcv install -d -m 755 %{buildroot}/%{_datadir}/%{name}/templates install -p -m 644 templates/*.pgdt %{buildroot}/%{_datadir}/%{name}/templates -desktop-file-install --vendor="fedora" --dir=%{buildroot}/%{_datadir}/applications %{SOURCE1} + +pushd build +make install DESTDIR=%{buildroot} +popd +popd + +# gui +pushd picviz-gui-%{version} +python ./setup.py install --root=%{buildroot} --install-lib=%{python_sitearch} +popd + +desktop-file-install --vendor="fedora" --dir=%{buildroot}/%{_datadir}/applications %{SOURCE4} + %clean rm -rf %{buildroot} @@ -134,15 +154,14 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING README doc/* samples +%doc libpicviz-%{version}/COPYING picviz-cli-%{version}/samples %{_mandir}/man1/* -%dir %{_datadir}/%{name} -%{_datadir}/%{name}/* +%{_datadir}/%{name}/ + %{_libdir}/*.so.* -%dir %{_libdir}/%{name} -%{_libdir}/%{name}/*.so -%exclude %{_libdir}/%{name}/libpicvizoutplplot.so -%exclude %{_libdir}/%{name}/libpicvizoutpngcairo.so +%dir %{_libdir}/libpicviz +%{_libdir}/libpicviz/*.so +%exclude %{_libdir}/libpicviz/libpicvizoutpngcairo.so %{python_sitearch}/picviz.so %{python_sitearch}/Picviz*.egg-info %{_bindir}/pcv @@ -150,7 +169,7 @@ rm -rf %{buildroot} %files devel %defattr(-,root,root,-) %{_libdir}/libpicviz.so -%{_libdir}/pkgconfig/picviz.pc +%{_libdir}/pkgconfig/libpicviz.pc %{_includedir}/* %files gui @@ -161,15 +180,21 @@ rm -rf %{buildroot} %{_bindir}/picviz-gui %{_datadir}/applications/fedora-%{name}.desktop -%files plugin-plplot -%defattr(-,root,root,-) -%{_libdir}/%{name}/libpicvizoutplplot.so - %files plugin-pngcairo %defattr(-,root,root,-) -%{_libdir}/%{name}/libpicvizoutpngcairo.so +%{_libdir}/libpicviz/libpicvizoutpngcairo.so %changelog +* Thu Jul 23 2009 Tomas Heinrich 0.6-1 +- upgrade to 0.6 + - upstream package has split into libpicviz, picviz-cli, picviz-gui, + picviz-parsers; pull them in to preserve current functionality, + but they should later go into their own packages + - drop plugin-plplot package as it is no longer supported, + remove BuildRequires: plplot-devel + - BuildRequires: libev-devel instead of libevent-devel + - several file paths changed + * Wed Mar 18 2009 Tomas Heinrich 0.5-1 - upgrade Index: sources =================================================================== RCS file: /cvs/extras/rpms/picviz/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 18 Mar 2009 21:45:30 -0000 1.4 +++ sources 23 Jul 2009 13:47:13 -0000 1.5 @@ -1 +1,3 @@ -b0f814e23e8eac186a752e9e52f382d0 picviz-0.5.tar.gz +bd2cd1dd250dc5df362b1d3a5edea3cd libpicviz-0.6.tar.gz +4ef5edbb77811de3ac608af28d02dce6 picviz-cli-0.6.tar.gz +2517e16d3515d1e2865948cb221fdebb picviz-gui-0.6.tar.gz From ajax at fedoraproject.org Thu Jul 23 13:47:32 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:47:32 +0000 (UTC) Subject: rpms/libXdmcp/devel libXdmcp.spec,1.23,1.24 Message-ID: <20090723134732.A498511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXdmcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26485 Modified Files: libXdmcp.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.2-10 - Un-require xorg-x11-filesystem Index: libXdmcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXdmcp/devel/libXdmcp.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libXdmcp.spec 23 Jul 2009 13:04:26 -0000 1.23 +++ libXdmcp.spec 23 Jul 2009 13:47:02 -0000 1.24 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXdmcp runtime library Name: libXdmcp Version: 1.0.2 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -19,7 +19,6 @@ X.Org X11 libXdmcp runtime library %package devel Summary: X.Org X11 libXdmcp development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: xorg-x11-proto-devel Requires: pkgconfig @@ -62,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xdmcp.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.2-10 +- Un-require xorg-x11-filesystem + * Thu Jul 23 2009 Adam Jackson 1.0.2-9 - Remove useless %%dir From twaugh at fedoraproject.org Thu Jul 23 13:47:55 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 23 Jul 2009 13:47:55 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-a05bd9c.patch, NONE, 1.1 system-config-printer.spec, 1.269, 1.270 Message-ID: <20090723134755.096CC11C0093@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26941 Modified Files: system-config-printer.spec Added Files: system-config-printer-a05bd9c.patch Log Message: * Thu Jul 23 2009 Tim Waugh 1.1.10-2 - Applied some udev-configure-printer fixes from upstrema. system-config-printer-a05bd9c.patch: udev-add-printer | 45 ++++++------- udev-configure-printer.c | 159 +++++++++++++++++++++++++++++++++++------------ 2 files changed, 141 insertions(+), 63 deletions(-) --- NEW FILE system-config-printer-a05bd9c.patch --- diff --git a/udev/udev-add-printer b/udev/udev-add-printer index 03d301e..2e4d933 100755 --- a/udev/udev-add-printer +++ b/udev/udev-add-printer @@ -27,13 +27,11 @@ import sys import traceback from syslog import * -def create_queue (c, name, device_uri, ppdname, info): +def create_queue (c, printernames, name, device_uri, ppdname, info): # Make sure the name is unique. - printers = cupshelpers.getPrinters (c) - names = printers.keys () - if name in names: + if name in printernames: suffix = 2 - while (name + "-" + str (suffix)) in names: + while (name + "-" + str (suffix)) in printernames: suffix += 1 if suffix == 100: break @@ -83,7 +81,10 @@ def add_queue (device_id, device_uris, is_fax=False): name = name.replace ("/", "-") name = name.replace ("#", "-") - create_queue (c, name, device_uris[0], ppdname, + printers = cupshelpers.getPrinters (c) + printernames = printers.keys () + + create_queue (c, printernames, name, device_uris[0], ppdname, "%s %s" % (id_dict["MFG"], id_dict["MDL"])) if not is_fax: @@ -93,24 +94,8 @@ def add_queue (device_id, device_uris, is_fax=False): # find one whose scheme ends in "fax", use that as a fax # queue. Note that the HPLIP backends do follow this # pattern (hp and hpfax). - not_fax_schemes=["beh", - "bluetooth", - "http", - "https", - "ipp", - "lpd", - "parallel", - "serial", - "smb", - "snmp", - "socket", - "scsi", - "usb"] - devices = c.getDevices (exclude_schemes=not_fax_schemes) - for uri, device_dict in devices.iteritems (): - if uri in device_uris: - continue - + used_uris = map (lambda x: x.device_uri, printers.values ()) + for uri in device_uris[1:]: if uri.find (":") == -1: continue @@ -119,8 +104,20 @@ def add_queue (device_id, device_uris, is_fax=False): # Now see if the non-scheme parts of the URI match # any of the URIs we were given. for each_uri in device_uris: + if each_uri == uri: + continue (s, device_uri_rest) = each_uri.split (":", 1) if rest == device_uri_rest: + # This one matches. Check there is not + # already a queue using this URI. + if uri in used_uris: + break + + devices = c.getDevices (include_schemes=[scheme]) + device_dict = devices.get (uri) + if device_dict == None: + break + add_queue (device_dict.get ("device-id", ""), [uri], is_fax=True) else: diff --git a/udev/udev-configure-printer.c b/udev/udev-configure-printer.c index a3c87dc..37a8682 100644 --- a/udev/udev-configure-printer.c +++ b/udev/udev-configure-printer.c @@ -708,7 +708,7 @@ cupsDoRequestOrDie (http_t *http, static int find_matching_device_uris (struct device_id *id, - const char *serial, + const char *usbserial, struct device_uris *uris, const char *devpath) { @@ -716,21 +716,34 @@ find_matching_device_uris (struct device_id *id, ipp_t *request, *answer; ipp_attribute_t *attr; struct device_uris uris_noserial; + struct device_uris all_uris; + size_t i, n; + const char *exclude_schemes[] = { + "beh", + "bluetooth", + "http", + "https", + "ipp", + "lpd", + "ncp", + "parallel", + "scsi", + "smb", + "snmp", + "socket", + }; - uris->n_uris = 0; - uris->uri = NULL; - - uris_noserial.n_uris = 0; - uris_noserial.uri = NULL; + uris->n_uris = uris_noserial.n_uris = all_uris.n_uris = 0; + uris->uri = uris_noserial.uri = all_uris.uri = NULL; /* Leave the bus to settle. */ sleep (1); cups = cups_connection (); request = ippNewRequest (CUPS_GET_DEVICES); - ippAddStrings (request, IPP_TAG_OPERATION, IPP_TAG_NAME, "include-schemes", - sizeof (device_uri_types) / sizeof(device_uri_types[0]), - NULL, device_uri_types); + ippAddStrings (request, IPP_TAG_OPERATION, IPP_TAG_NAME, "exclude-schemes", + sizeof (exclude_schemes) / sizeof(exclude_schemes[0]), + NULL, exclude_schemes); answer = cupsDoRequestOrDie (cups, request, "/"); httpClose (cups); @@ -757,6 +770,28 @@ find_matching_device_uris (struct device_id *id, parse_device_id (attr->values[0].string.text, &this_id); } + /* Only use device schemes in our preference order for matching + * against the IEEE 1284 Device ID. */ + + for (i = 0; + device_uri && + i < sizeof (device_uri_types) / sizeof (device_uri_types[0]); + i++) + { + size_t len = strlen (device_uri_types[i]); + if (!strncmp (device_uri_types[i], device_uri, len) && + device_uri[len] == ':') + break; + } + + if (device_uri) + add_device_uri (&all_uris, device_uri); + + if (i == sizeof (device_uri_types) / sizeof (device_uri_types[0])) + /* Not what we want to match against. Ignore this one. */ + device_uri = NULL; + + /* Now check the manufacturer and model names. */ if (device_uri && this_id.mfg && this_id.mdl && !strcmp (this_id.mfg, id->mfg) && !strcmp (this_id.mdl, id->mdl)) @@ -803,11 +838,11 @@ find_matching_device_uris (struct device_id *id, match = 1; } - if (!match && strlen (serial) >= 12) + if (!match && usbserial[0] != '\0') { if (!id->sern) { - if (this_id.sern && !strcmp (serial, this_id.sern)) + if (this_id.sern && !strcmp (usbserial, this_id.sern)) { syslog (LOG_DEBUG, "SERN field matches USB serial number"); @@ -819,10 +854,11 @@ find_matching_device_uris (struct device_id *id, { char *saveptr, *uri = strdup (device_uri); const char *token; - for (token = strtok_r (uri, "?=&", &saveptr); + const char *sep = "?=&/"; + for (token = strtok_r (uri, sep, &saveptr); token; - token = strtok_r (NULL, "?=&", &saveptr)) - if (!strcmp (token, serial)) + token = strtok_r (NULL, sep, &saveptr)) + if (!strcmp (token, usbserial)) { syslog (LOG_DEBUG, "URI contains USB serial number"); match = 1; @@ -886,14 +922,56 @@ find_matching_device_uris (struct device_id *id, uris->uri = old; else { - size_t i; for (i = 0; i < uris_noserial.n_uris; i++) uris->uri[uris->n_uris + i] = uris_noserial.uri[i]; uris->n_uris += uris_noserial.n_uris; } + + uris_noserial.n_uris = 0; + uris_noserial.uri = NULL; } free_device_uris (&uris_noserial); + + /* Having decided which device URIs match based on IEEE 1284 Device + * ID, we now need to look for "paired" URIs for other functions of + * a multi-function device. This are the same except for the + * scheme. */ + + n = uris->n_uris; + for (i = 0; i < n; i++) + { + size_t j; + char *me = uris->uri[i]; + char *my_rest = strchr (me, ':'); + size_t my_schemelen; + if (!my_rest) + continue; + + my_schemelen = my_rest - me; + for (j = 0; j < all_uris.n_uris; j++) + { + char *twin = all_uris.uri[j]; + char *twin_rest = strchr (twin, ':'); + size_t twin_schemelen; + if (!twin_rest) + continue; + + twin_schemelen = twin_rest - twin; + if (my_schemelen == twin_schemelen && + !strncmp (me, twin, my_schemelen)) + /* This is the one we are looking for the twin of. */ + continue; + + if (!strcmp (my_rest, twin_rest)) + { + syslog (LOG_DEBUG, "%s twinned with %s", me, twin); + add_device_uri (uris, twin); + } + } + } + + free_device_uris (&all_uris); if (uris->n_uris > 0) { struct usb_uri_map *map = read_usb_uri_map (); @@ -1048,12 +1126,12 @@ do_add (const char *cmd, const char *devpath) struct device_id id; struct device_uris device_uris; char *usb_device_devpath; - char serial[256]; + char usbserial[256]; syslog (LOG_DEBUG, "add %s", devpath); usb_device_devpath = device_id_from_devpath (devpath, &id, - serial, sizeof (serial)); + usbserial, sizeof (usbserial)); if (!id.mfg || !id.mdl) { syslog (LOG_ERR, "invalid or missing IEEE 1284 Device ID%s%s", @@ -1063,28 +1141,31 @@ do_add (const char *cmd, const char *devpath) } syslog (LOG_DEBUG, "MFG:%s MDL:%s SERN:%s serial:%s", id.mfg, id.mdl, - id.sern ? id.sern : "-", serial); - - if ((pid = fork ()) == -1) - syslog (LOG_ERR, "Failed to fork process"); - else if (pid != 0) - /* Parent. */ - exit (0); - - close (STDIN_FILENO); - close (STDOUT_FILENO); - close (STDERR_FILENO); - f = open ("/dev/null", O_RDWR); - if (f != STDIN_FILENO) - dup2 (f, STDIN_FILENO); - if (f != STDOUT_FILENO) - dup2 (f, STDOUT_FILENO); - if (f != STDERR_FILENO) - dup2 (f, STDERR_FILENO); - - setsid (); - - find_matching_device_uris (&id, serial, &device_uris, usb_device_devpath); + id.sern ? id.sern : "-", usbserial); + + if (getenv ("DEBUG") == NULL) + { + if ((pid = fork ()) == -1) + syslog (LOG_ERR, "Failed to fork process"); + else if (pid != 0) + /* Parent. */ + exit (0); + + close (STDIN_FILENO); + close (STDOUT_FILENO); + close (STDERR_FILENO); + f = open ("/dev/null", O_RDWR); + if (f != STDIN_FILENO) + dup2 (f, STDIN_FILENO); + if (f != STDOUT_FILENO) + dup2 (f, STDOUT_FILENO); + if (f != STDERR_FILENO) + dup2 (f, STDERR_FILENO); + + setsid (); + } + + find_matching_device_uris (&id, usbserial, &device_uris, usb_device_devpath); free (usb_device_devpath); if (device_uris.n_uris == 0) { Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.269 retrieving revision 1.270 diff -u -p -r1.269 -r1.270 --- system-config-printer.spec 22 Jul 2009 14:25:19 -0000 1.269 +++ system-config-printer.spec 23 Jul 2009 13:47:54 -0000 1.270 @@ -7,13 +7,14 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 +Patch1: system-config-printer-a05bd9c.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -76,6 +77,7 @@ printers. %prep %setup -q -a 1 -a 2 +%patch1 -p1 -b .a05bd9c %build %configure --with-udev-rules @@ -183,6 +185,9 @@ rm -rf %buildroot exit 0 %changelog +* Thu Jul 23 2009 Tim Waugh 1.1.10-2 +- Applied some udev-configure-printer fixes from upstrema. + * Wed Jul 22 2009 Tim Waugh 1.1.10-1 - 1.1.10: - New udev rules for adding/enabling/disabling USB printers From ajax at fedoraproject.org Thu Jul 23 13:49:42 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:49:42 +0000 (UTC) Subject: rpms/libXext/devel libXext.spec,1.27,1.28 Message-ID: <20090723134942.3A4DB11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27575 Modified Files: libXext.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.99.4-2 - Un-require xorg-x11-filesystem Index: libXext.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/libXext.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libXext.spec 22 Jul 2009 09:55:40 -0000 1.27 +++ libXext.spec 23 Jul 2009 13:49:11 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXext runtime library Name: libXext Version: 1.0.99.4 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,7 +21,6 @@ X.Org X11 libXext runtime library %package devel Summary: X.Org X11 libXext development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: libX11-devel pkgconfig @@ -86,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.99.4-2 +- Un-require xorg-x11-filesystem + * Wed Jul 22 2009 Peter Hutterer 1.0.99.4-1 - libXext 1.0.99.4 - fix.patch: Drop. From kanarip at fedoraproject.org Thu Jul 23 13:50:22 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Thu, 23 Jul 2009 13:50:22 +0000 (UTC) Subject: rpms/rubygem-mocha/devel import.log, NONE, 1.1 rubygem-mocha.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723135022.5F0AD11C049E@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-mocha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28031/devel Modified Files: .cvsignore sources Added Files: import.log rubygem-mocha.spec Log Message: 0.9.7-1 --- NEW FILE import.log --- rubygem-mocha-0_9_7-1_fc11:HEAD:rubygem-mocha-0.9.7-1.fc11.src.rpm:1248356936 --- NEW FILE rubygem-mocha.spec --- %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname mocha %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Mocking and stubbing library Name: rubygem-%{gemname} Version: 0.9.7 Release: 1%{?dist} Group: Development/Languages License: MIT and Ruby URL: http://mocha.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 Requires: rubygem(rake) BuildRequires: rubygems BuildRequires: rubygem-rake BuildRequires: zip BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/COPYING %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README %doc %{geminstdir}/MIT-LICENSE %doc %{geminstdir}/RELEASE %doc %{geminstdir}/examples %doc %{geminstdir}/test %dir %{geminstdir}/ %{geminstdir}/lib %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Thu Jul 23 2009 Jeroen van Meeuwen - 0.9.7-1 - New upstream version * Mon Apr 27 2009 Jeroen van Meeuwen - 0.9.5-1 - New upstream version * Sun Feb 01 2009 Jeroen van Meeuwen - 0.9.1-4 - Mark files as %%doc * Thu Oct 30 2008 Jeroen van Meeuwen - 0.9.1-3 - Use gem instead of tgz * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-2 - Fix license * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-1 - New upstream version - Fix license not being marked as %%doc * Mon Sep 08 2008 Jeroen van Meeuwen - 0.9.0-2 - Add ruby(abi) = 1.8 requirement * Sat Aug 23 2008 Jeroen van Meeuwen - 0.9.0-1 - New upstream version - Initial package for review * Sun Jul 13 2008 root - 0.5.6-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:06:51 -0000 1.1 +++ .cvsignore 23 Jul 2009 13:50:22 -0000 1.2 @@ -0,0 +1 @@ +mocha-0.9.7.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:06:51 -0000 1.1 +++ sources 23 Jul 2009 13:50:22 -0000 1.2 @@ -0,0 +1 @@ +1201d630d5f4b2f9dfc8ef0ecc008d33 mocha-0.9.7.gem From ajax at fedoraproject.org Thu Jul 23 13:50:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:50:52 +0000 (UTC) Subject: rpms/libXfixes/devel libXfixes.spec,1.21,1.22 Message-ID: <20090723135052.7846E11C049E@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXfixes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28331 Modified Files: libXfixes.spec Log Message: * Thu Jul 23 2009 Adam Jackson 4.0.3-7 - Un-require xorg-x11-filesystem Index: libXfixes.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXfixes/devel/libXfixes.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libXfixes.spec 23 Jul 2009 13:05:20 -0000 1.21 +++ libXfixes.spec 23 Jul 2009 13:50:52 -0000 1.22 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXfixes runtime library Name: libXfixes Version: 4.0.3 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,7 +21,6 @@ X.Org X11 libXfixes runtime library %package devel Summary: X.Org X11 libXfixes development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} # xfixes.pc Requires: xproto fixesproto >= 4.0 @@ -76,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xfixes.3* %changelog +* Thu Jul 23 2009 Adam Jackson 4.0.3-7 +- Un-require xorg-x11-filesystem + * Thu Jul 23 2009 Adam Jackson 4.0.3-6 - Remove useless %%dir From ajax at fedoraproject.org Thu Jul 23 13:51:59 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:51:59 +0000 (UTC) Subject: rpms/libXi/devel libXi.spec,1.34,1.35 Message-ID: <20090723135159.CB63811C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28657 Modified Files: libXi.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.2.99-7.20090723 - Un-require xorg-x11-filesystem Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- libXi.spec 22 Jul 2009 21:53:26 -0000 1.34 +++ libXi.spec 23 Jul 2009 13:51:29 -0000 1.35 @@ -4,7 +4,7 @@ Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 6.%{gitdate}%{?dist} +Release: 7.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -29,7 +29,6 @@ X.Org X11 libXi runtime library %package devel Summary: X.Org X11 libXi development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} # required by xi.pc Requires: xorg-x11-proto-devel @@ -88,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.2.99-7.20090723 +- Un-require xorg-x11-filesystem + * Thu Jul 23 2009 Peter Hutterer 1.2.99-6.20090723 - Update to today's git master From ajax at fedoraproject.org Thu Jul 23 13:52:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:52:23 +0000 (UTC) Subject: rpms/libxkbfile/devel libxkbfile.spec,1.26,1.27 Message-ID: <20090723135223.36E3511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libxkbfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28822 Modified Files: libxkbfile.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.4-9 - Un-require xorg-x11-filesystem Index: libxkbfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxkbfile/devel/libxkbfile.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libxkbfile.spec 23 Jul 2009 13:03:54 -0000 1.26 +++ libxkbfile.spec 23 Jul 2009 13:51:53 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 libxkbfile runtime library Name: libxkbfile Version: 1.0.4 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -18,7 +18,6 @@ X.Org X11 libxkbfile runtime library %package devel Summary: X.Org X11 libxkbfile development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} Requires: pkgconfig @@ -79,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xkbfile.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.4-9 +- Un-require xorg-x11-filesystem + * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %%dir From ajax at fedoraproject.org Thu Jul 23 13:53:15 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:53:15 +0000 (UTC) Subject: rpms/libXp/devel libXp.spec,1.32,1.33 Message-ID: <20090723135315.9F48111C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29261 Modified Files: libXp.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.0-14 - Un-require xorg-x11-filesystem Index: libXp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXp/devel/libXp.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libXp.spec 26 Feb 2009 22:05:51 -0000 1.32 +++ libXp.spec 23 Jul 2009 13:52:45 -0000 1.33 @@ -12,7 +12,7 @@ Summary: X.Org X11 libXp runtime library Name: libXp Version: 1.0.0 -Release: 13%{?dist} +Release: 14%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -36,7 +36,6 @@ X.Org X11 libXp runtime library %package devel Summary: X.Org X11 libXp development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: libXau-devel pkgconfig Requires: %{name} = %{version}-%{release} @@ -109,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.0-14 +- Un-require xorg-x11-filesystem + * Thu Feb 26 2009 Adam Jackson 1.0.0-13 - Rebuild for new libtool. From ajax at fedoraproject.org Thu Jul 23 13:53:40 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:53:40 +0000 (UTC) Subject: rpms/libXtst/devel libXtst.spec,1.26,1.27 Message-ID: <20090723135340.EC0F511C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXtst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29677 Modified Files: libXtst.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.99.1-2 - Un-require xorg-x11-filesystem Index: libXtst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/libXtst.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libXtst.spec 22 Jul 2009 14:12:45 -0000 1.26 +++ libXtst.spec 23 Jul 2009 13:53:40 -0000 1.27 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXtst runtime library Name: libXtst Version: 1.0.99.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -21,12 +21,8 @@ X.Org X11 libXtst runtime library %package devel Summary: X.Org X11 libXtst development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed by xtst.pc -Requires: xorg-x11-proto-devel pkgconfig - %description devel X.Org X11 libXtst development package @@ -75,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/XTest*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.99.1-2 +- Un-require xorg-x11-filesystem + * Wed Jul 22 2009 Adam Jackson 1.0.99.1-1 - libXtst 1.0.99.1 From ajax at fedoraproject.org Thu Jul 23 13:53:47 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:53:47 +0000 (UTC) Subject: rpms/libXScrnSaver/devel libXScrnSaver.spec,1.29,1.30 Message-ID: <20090723135347.385E011C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXScrnSaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29445 Modified Files: libXScrnSaver.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.1.3-4 - Un-require xorg-x11-filesystem Index: libXScrnSaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXScrnSaver/devel/libXScrnSaver.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libXScrnSaver.spec 14 Jun 2009 09:07:36 -0000 1.29 +++ libXScrnSaver.spec 23 Jul 2009 13:53:17 -0000 1.30 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXss runtime library Name: libXScrnSaver Version: 1.1.3 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -14,8 +14,6 @@ BuildRequires: xorg-x11-proto-devel >= 7 BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXss runtime library @@ -23,15 +21,6 @@ X.Org X11 libXss runtime library Summary: X.Org X11 libXScrnSaver development package Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 - -# xorg-x11-proto-devel is required by xscrnsaver.pc -Requires: xorg-x11-proto-devel >= 7.0-9 -# NOTE: libX11-devel, libXext-devel were added to work around bug (#176674) -Requires: libX11-devel -Requires: libXext-devel - -Obsoletes: XFree86-devel, xorg-x11-devel %description devel X.Org X11 libXss development package @@ -82,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.1.3-4 +- Un-require xorg-x11-filesystem + * Sun Jun 14 2009 Michael Schwendt - 1.1.3-3 - Don't claim ownership of %%_libdir/pkgconfig/ (#499660) From ajax at fedoraproject.org Thu Jul 23 13:54:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:54:52 +0000 (UTC) Subject: rpms/libXxf86dga/devel libXxf86dga.spec,1.20,1.21 Message-ID: <20090723135452.5429F11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXxf86dga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30067 Modified Files: libXxf86dga.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.2-5 - Un-require xorg-x11-filesystem Index: libXxf86dga.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86dga/devel/libXxf86dga.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libXxf86dga.spec 25 Feb 2009 13:32:39 -0000 1.20 +++ libXxf86dga.spec 23 Jul 2009 13:54:22 -0000 1.21 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86dga runtime library Name: libXxf86dga Version: 1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -14,22 +14,14 @@ BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXxf86dga runtime library %package devel Summary: X.Org X11 libXxf86dga development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed by xxf86dga.pc -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXxf86dga development package @@ -68,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.2-5 +- Un-require xorg-x11-filesystem + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kanarip at fedoraproject.org Thu Jul 23 13:55:11 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Thu, 23 Jul 2009 13:55:11 +0000 (UTC) Subject: rpms/rubygem-mocha/F-11 import.log, NONE, 1.1 rubygem-mocha.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723135511.17D9211C0093@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-mocha/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30189/F-11 Modified Files: .cvsignore sources Added Files: import.log rubygem-mocha.spec Log Message: 0.9.7-1 --- NEW FILE import.log --- rubygem-mocha-0_9_7-1_fc11:F-11:rubygem-mocha-0.9.7-1.fc11.src.rpm:1248357191 --- NEW FILE rubygem-mocha.spec --- %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname mocha %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Mocking and stubbing library Name: rubygem-%{gemname} Version: 0.9.7 Release: 1%{?dist} Group: Development/Languages License: MIT and Ruby URL: http://mocha.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 Requires: rubygem(rake) BuildRequires: rubygems BuildRequires: rubygem-rake BuildRequires: zip BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/COPYING %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README %doc %{geminstdir}/MIT-LICENSE %doc %{geminstdir}/RELEASE %doc %{geminstdir}/examples %doc %{geminstdir}/test %dir %{geminstdir}/ %{geminstdir}/lib %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Thu Jul 23 2009 Jeroen van Meeuwen - 0.9.7-1 - New upstream version * Mon Apr 27 2009 Jeroen van Meeuwen - 0.9.5-1 - New upstream version * Sun Feb 01 2009 Jeroen van Meeuwen - 0.9.1-4 - Mark files as %%doc * Thu Oct 30 2008 Jeroen van Meeuwen - 0.9.1-3 - Use gem instead of tgz * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-2 - Fix license * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-1 - New upstream version - Fix license not being marked as %%doc * Mon Sep 08 2008 Jeroen van Meeuwen - 0.9.0-2 - Add ruby(abi) = 1.8 requirement * Sat Aug 23 2008 Jeroen van Meeuwen - 0.9.0-1 - New upstream version - Initial package for review * Sun Jul 13 2008 root - 0.5.6-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:06:51 -0000 1.1 +++ .cvsignore 23 Jul 2009 13:54:40 -0000 1.2 @@ -0,0 +1 @@ +mocha-0.9.7.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:06:51 -0000 1.1 +++ sources 23 Jul 2009 13:54:40 -0000 1.2 @@ -0,0 +1 @@ +1201d630d5f4b2f9dfc8ef0ecc008d33 mocha-0.9.7.gem From ajax at fedoraproject.org Thu Jul 23 13:55:14 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:55:14 +0000 (UTC) Subject: rpms/libXxf86vm/devel libXxf86vm.spec,1.21,1.22 Message-ID: <20090723135514.82E3D11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXxf86vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30509 Modified Files: libXxf86vm.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.2-3 - Un-require xorg-x11-filesystem Index: libXxf86vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86vm/devel/libXxf86vm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libXxf86vm.spec 25 Feb 2009 13:34:32 -0000 1.21 +++ libXxf86vm.spec 23 Jul 2009 13:55:14 -0000 1.22 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86vm runtime library Name: libXxf86vm Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -14,22 +14,14 @@ BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXxf86vm runtime library %package devel Summary: X.Org X11 libXxf86vm development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed by xxf86vm.pc -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXxf86vm development package @@ -78,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.2-3 +- Un-require xorg-x11-filesystem + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:55:22 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:55:22 +0000 (UTC) Subject: rpms/libXxf86misc/devel libXxf86misc.spec,1.19,1.20 Message-ID: <20090723135522.587F611C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libXxf86misc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30291 Modified Files: libXxf86misc.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.1-8 - Un-require xorg-x11-filesystem Index: libXxf86misc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86misc/devel/libXxf86misc.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libXxf86misc.spec 25 Feb 2009 13:33:34 -0000 1.19 +++ libXxf86misc.spec 23 Jul 2009 13:54:52 -0000 1.20 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86misc runtime library Name: libXxf86misc Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -14,22 +14,14 @@ BuildRequires: xorg-x11-proto-devel BuildRequires: libX11-devel BuildRequires: libXext-devel -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libXxf86misc runtime library %package devel Summary: X.Org X11 libXxf86misc development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# needed for xxf86misc.pc -Requires: xorg-x11-proto-devel - -Obsoletes: XFree86-devel, xorg-x11-devel - %description devel X.Org X11 libXxf86misc development package @@ -78,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3x* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.1-8 +- Un-require xorg-x11-filesystem + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 13:56:23 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:56:23 +0000 (UTC) Subject: rpms/xorg-x11-apps/devel xorg-x11-apps.spec,1.37,1.38 Message-ID: <20090723135623.7B4A211C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31307 Modified Files: xorg-x11-apps.spec Log Message: * Thu Jul 23 2009 Adam Jackson 7.4-2 - Un-require xorg-x11-filesystem Index: xorg-x11-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/xorg-x11-apps.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- xorg-x11-apps.spec 2 Jul 2009 21:30:46 -0000 1.37 +++ xorg-x11-apps.spec 23 Jul 2009 13:56:23 -0000 1.38 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # NOTE: The package version should be set to the X11 major release from which # the OS release is based upon. Version: 7.4 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -65,8 +65,6 @@ BuildRequires: libXfixes-devel BuildRequires: libXi-devel >= 1.2 BuildRequires: libXxf86vm-devel -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 - Provides: luit oclock x11perf xbiff xclipboard xclock xconsole xcursorgen Provides: xeyes xkill xload xlogo xmag xmessage xpr xwd xwud xinput Provides: xfd xfontsel xvidtune @@ -192,6 +190,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xwud.1* %changelog +* Thu Jul 23 2009 Adam Jackson 7.4-2 +- Un-require xorg-x11-filesystem + * Thu Jul 02 2009 Adam Jackson 7.4-1 - Add xfd, xfontsel, and xvidtune From ajax at fedoraproject.org Thu Jul 23 13:58:46 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 13:58:46 +0000 (UTC) Subject: rpms/xorg-x11-font-utils/devel xorg-x11-font-utils.spec,1.31,1.32 Message-ID: <20090723135846.1BBF311C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-font-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32019 Modified Files: xorg-x11-font-utils.spec Log Message: * Thu Jul 23 2009 Adam Jackson 7.2-8 - Un-require xorg-x11-filesystem - Other general spec cleanup. Index: xorg-x11-font-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-font-utils/devel/xorg-x11-font-utils.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-font-utils.spec 26 Feb 2009 11:28:57 -0000 1.31 +++ xorg-x11-font-utils.spec 23 Jul 2009 13:58:15 -0000 1.32 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # IMPORTANT: If package ever gets renamed to something else, remove the Epoch line! Epoch: 1 Version: 7.2 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -21,44 +21,16 @@ Patch0: font-util-1.0.1-mapdir-use-datad Patch1: font-util-1.0.1-autoconf-add-with-fontdir-option.patch BuildRequires: pkgconfig -# xorg-x11-libXfont-devel needed for bdftopcf BuildRequires: libXfont-devel -# xorg-x11-libX11-devel needed for fonttosfnt BuildRequires: libX11-devel -# xorg-x11-libfontenc-devel needed for fonttosfnt, mkfontscale BuildRequires: libfontenc-devel >= 0.99.2-2 -# freetype-devel needed for bdftopcf, fonttosfnt, mkfontscale BuildRequires: freetype-devel -# zlib-devel needed for bdftopcf BuildRequires: zlib-devel -# xorg-x11-proto-devel is needed for mkfontscale, which includes headers -# from it directly. -BuildRequires: xorg-x11-proto-devel BuildRequires: autoconf -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 - -# NOTE: This versioned pre-dependency is needed to ensure that the bugfix for -# bug #173875 is installed in order for mkfontscale/mkfontdir to work -# properly. It is a "pre" dep, to ensure libfontenc gets installed before -# xorg-font-utils, before any fonts in an rpm upgrade or multi-transaction -# set, avoiding a possible race condition. -Requires(pre): libfontenc >= 0.99.2-2 - Provides: %{pkgname} Provides: bdftopcf, fonttosfnt, mkfontdir, mkfontscale, ucs2any -# NOTE: XFree86-font-utils package contains mkfontdir, mkfontscale, so this -# is needed for upgrades to work properly from OS releases that had XFree86 -Obsoletes: XFree86-font-utils -# NOTE: XFree86 package used to contain bdftopcf, mkfontdir, mkfontscale so -# this is needed for upgrades to work. -Obsoletes: XFree86 -# NOTE: The fonts/util subdir moved from xorg-x11-base-fonts to -# xorg-x11-font-utils in 6.7.99.903-3 -Obsoletes: xorg-x11-base-fonts <= 6.7.99.903-3 -# NOTE: ucs2any moved from xorg-x11-tools to xorg-x11-font-utils in 6.7.99.903-3 -Obsoletes: xorg-x11-tools <= 6.7.99.903-3 %description X.Org X11 font utilities required for font installation, conversion, @@ -126,8 +98,6 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/mkfontdir %{_bindir}/mkfontscale %{_bindir}/ucs2any -# blech. this one should be in -filesystem -%dir %{_datadir}/X11 %dir %{_datadir}/X11/fonts %dir %{_datadir}/X11/fonts/util %{_datadir}/X11/fonts/util/map-* @@ -146,6 +116,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Adam Jackson 7.2-8 +- Un-require xorg-x11-filesystem +- Other general spec cleanup. + * Thu Feb 26 2009 Fedora Release Engineering - 1:7.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kanarip at fedoraproject.org Thu Jul 23 14:01:03 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Thu, 23 Jul 2009 14:01:03 +0000 (UTC) Subject: rpms/rubygem-mocha/F-10 import.log, NONE, 1.1 rubygem-mocha.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723140103.E12C811C048A@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-mocha/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv879/F-10 Modified Files: .cvsignore sources Added Files: import.log rubygem-mocha.spec Log Message: 0.9.7-1 --- NEW FILE import.log --- rubygem-mocha-0_9_7-1_fc11:F-10:rubygem-mocha-0.9.7-1.fc11.src.rpm:1248357536 --- NEW FILE rubygem-mocha.spec --- %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname mocha %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Mocking and stubbing library Name: rubygem-%{gemname} Version: 0.9.7 Release: 1%{?dist} Group: Development/Languages License: MIT and Ruby URL: http://mocha.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 Requires: rubygem(rake) BuildRequires: rubygems BuildRequires: rubygem-rake BuildRequires: zip BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/COPYING %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README %doc %{geminstdir}/MIT-LICENSE %doc %{geminstdir}/RELEASE %doc %{geminstdir}/examples %doc %{geminstdir}/test %dir %{geminstdir}/ %{geminstdir}/lib %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Thu Jul 23 2009 Jeroen van Meeuwen - 0.9.7-1 - New upstream version * Mon Apr 27 2009 Jeroen van Meeuwen - 0.9.5-1 - New upstream version * Sun Feb 01 2009 Jeroen van Meeuwen - 0.9.1-4 - Mark files as %%doc * Thu Oct 30 2008 Jeroen van Meeuwen - 0.9.1-3 - Use gem instead of tgz * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-2 - Fix license * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-1 - New upstream version - Fix license not being marked as %%doc * Mon Sep 08 2008 Jeroen van Meeuwen - 0.9.0-2 - Add ruby(abi) = 1.8 requirement * Sat Aug 23 2008 Jeroen van Meeuwen - 0.9.0-1 - New upstream version - Initial package for review * Sun Jul 13 2008 root - 0.5.6-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:06:51 -0000 1.1 +++ .cvsignore 23 Jul 2009 14:00:59 -0000 1.2 @@ -0,0 +1 @@ +mocha-0.9.7.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:06:51 -0000 1.1 +++ sources 23 Jul 2009 14:01:00 -0000 1.2 @@ -0,0 +1 @@ +1201d630d5f4b2f9dfc8ef0ecc008d33 mocha-0.9.7.gem From ajax at fedoraproject.org Thu Jul 23 14:02:52 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 14:02:52 +0000 (UTC) Subject: rpms/filesystem/devel filesystem.spec,1.57,1.58 Message-ID: <20090723140252.D652111C048A@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2238 Modified Files: filesystem.spec Log Message: * Thu Jul 23 2009 Adam Jackson 2.4.25-1 - Remove explicit /usr/lib/X11, everything uses %_libdir now. Index: filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/filesystem/devel/filesystem.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- filesystem.spec 23 Jul 2009 12:59:45 -0000 1.57 +++ filesystem.spec 23 Jul 2009 14:02:52 -0000 1.58 @@ -1,6 +1,6 @@ Summary: The basic directory layout for a Linux system Name: filesystem -Version: 2.4.24 +Version: 2.4.25 Release: 1%{?dist} License: Public Domain URL: https://fedorahosted.org/filesystem @@ -32,7 +32,7 @@ mkdir -p mnt/{floppy,cdrom} \ bin boot dev \ etc/{X11/{applnk,fontpath.d},xdg/autostart,opt,xinetd.d,skel,sysconfig,pki} \ home lib/modules %{_lib}/tls media mnt opt proc root sbin selinux srv sys tmp \ - usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale,X11},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,idl,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions,X11},src,src/kernels,src/debug} \ + usr/{bin,etc,games,include,%{_lib}/{games,sse2,tls,X11},lib/{games,locale},libexec,local/{bin,etc,games,lib,%{_lib},sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{applications,augeas/lenses,backgrounds,desktop-directories,dict,doc,empty,games,ghostscript/conf.d,gnome,icons,idl,info,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},mime-info,misc,omf,pixmaps,themes,xsessions,X11},src,src/kernels,src/debug} \ var/{empty,lib/{games,misc},local,lock/subsys,log,nis,preserve,run,spool/{mail,lpd},tmp,db,cache,opt,games,yp} ln -snf ../var/tmp usr/tmp @@ -150,6 +150,9 @@ rm -rf %{buildroot} /var/yp %changelog +* Thu Jul 23 2009 Adam Jackson 2.4.25-1 +- Remove explicit /usr/lib/X11, everything uses %%_libdir now. + * Thu Jul 23 2009 Adam Jackson 2.4.24-1 - Added /usr/share/X11 From spot at fedoraproject.org Thu Jul 23 14:04:36 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 14:04:36 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/devel import.log, NONE, 1.1 python-repoze-what-pylons-setuptools.patch, NONE, 1.1 python-repoze-what-pylons.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723140436.4589C11C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3421/devel Modified Files: .cvsignore sources Added Files: import.log python-repoze-what-pylons-setuptools.patch python-repoze-what-pylons.spec Log Message: initial import --- NEW FILE import.log --- python-repoze-what-pylons-1_0-3_fc12:HEAD:python-repoze-what-pylons-1.0-3.fc12.src.rpm:1248357568 python-repoze-what-pylons-setuptools.patch: setup.py | 3 --- 1 file changed, 3 deletions(-) --- NEW FILE python-repoze-what-pylons-setuptools.patch --- --- setup.py.orig 2009-06-05 07:40:56.000000000 -0400 +++ setup.py 2009-06-05 07:41:01.000000000 -0400 @@ -15,9 +15,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-pylons.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-pylons Version: 1.0 Release: 3%{?dist} Summary: A plugin providing utilities for Pylons applications using repoze.what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-pylons/repoze.what-pylons-%{version}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel Requires: python-repoze-what >= 1.0.4 Requires: python-pylons >= 0.9.7 Requires: python-decorator >= 3.0 %description This plugin provides optional and handy utilities for Pylons applications using repoze.what. Some of the features of the plugin include: * The utilities are ready to use: There?s nothing additional to be configured before using. * 100% documented. Each component is documented along with code samples. * The test suite has a coverage of 100% and it will never decrease ? if it ever does, report it as a bug! * TurboGears 2 is officially supported as well. %prep %setup -q -n repoze.what-pylons-%{version} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Can't do tests due to circular dependencies # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Wed Jul 01 2009 Tom "spot" Callaway - 1.0-3 - fix rpmlint issues * Fri Jun 05 2009 Luke Macken - 1.0-2 - Add a patch to ensure we use our own setuptools. * Wed May 6 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 13:36:23 -0000 1.1 +++ .cvsignore 23 Jul 2009 14:04:05 -0000 1.2 @@ -0,0 +1 @@ +repoze.what-pylons-1.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 13:36:23 -0000 1.1 +++ sources 23 Jul 2009 14:04:06 -0000 1.2 @@ -0,0 +1 @@ +6799d2a9f58deb6a8d9bc2b3129601e8 repoze.what-pylons-1.0.tar.gz From kanarip at fedoraproject.org Thu Jul 23 14:04:59 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Thu, 23 Jul 2009 14:04:59 +0000 (UTC) Subject: rpms/rubygem-mocha/EL-5 import.log, NONE, 1.1 rubygem-mocha.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723140459.8A4A911C0093@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-mocha/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3664/EL-5 Modified Files: .cvsignore sources Added Files: import.log rubygem-mocha.spec Log Message: 0.9.7-1 --- NEW FILE import.log --- rubygem-mocha-0_9_7-1_fc11:EL-5:rubygem-mocha-0.9.7-1.fc11.src.rpm:1248357841 --- NEW FILE rubygem-mocha.spec --- %define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname mocha %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Mocking and stubbing library Name: rubygem-%{gemname} Version: 0.9.7 Release: 1%{?dist} Group: Development/Languages License: MIT and Ruby URL: http://mocha.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems Requires: ruby(abi) = 1.8 Requires: rubygem(rake) BuildRequires: rubygems BuildRequires: rubygem-rake BuildRequires: zip BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Mocking and stubbing library with JMock/SchMock syntax, which allows mocking and stubbing of methods on real (non-mock) classes. %prep %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ --force --rdoc %{SOURCE0} %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) %doc %{gemdir}/doc/%{gemname}-%{version} %doc %{geminstdir}/COPYING %doc %{geminstdir}/Rakefile %doc %{geminstdir}/README %doc %{geminstdir}/MIT-LICENSE %doc %{geminstdir}/RELEASE %doc %{geminstdir}/examples %doc %{geminstdir}/test %dir %{geminstdir}/ %{geminstdir}/lib %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Thu Jul 23 2009 Jeroen van Meeuwen - 0.9.7-1 - New upstream version * Mon Apr 27 2009 Jeroen van Meeuwen - 0.9.5-1 - New upstream version * Sun Feb 01 2009 Jeroen van Meeuwen - 0.9.1-4 - Mark files as %%doc * Thu Oct 30 2008 Jeroen van Meeuwen - 0.9.1-3 - Use gem instead of tgz * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-2 - Fix license * Sat Oct 25 2008 Jeroen van Meeuwen - 0.9.1-1 - New upstream version - Fix license not being marked as %%doc * Mon Sep 08 2008 Jeroen van Meeuwen - 0.9.0-2 - Add ruby(abi) = 1.8 requirement * Sat Aug 23 2008 Jeroen van Meeuwen - 0.9.0-1 - New upstream version - Initial package for review * Sun Jul 13 2008 root - 0.5.6-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:06:51 -0000 1.1 +++ .cvsignore 23 Jul 2009 14:04:28 -0000 1.2 @@ -0,0 +1 @@ +mocha-0.9.7.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:06:51 -0000 1.1 +++ sources 23 Jul 2009 14:04:29 -0000 1.2 @@ -0,0 +1 @@ +1201d630d5f4b2f9dfc8ef0ecc008d33 mocha-0.9.7.gem From schwab at fedoraproject.org Thu Jul 23 14:07:45 2009 From: schwab at fedoraproject.org (schwab) Date: Thu, 23 Jul 2009 14:07:45 +0000 (UTC) Subject: rpms/glibc/devel glibc.spec,1.398,1.399 Message-ID: <20090723140745.48F8911C0093@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4897 Modified Files: glibc.spec Log Message: 2.10.90-6 Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.398 retrieving revision 1.399 diff -u -p -r1.398 -r1.399 --- glibc.spec 22 Jul 2009 13:05:11 -0000 1.398 +++ glibc.spec 23 Jul 2009 14:07:14 -0000 1.399 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 5 +Release: 6 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -1031,6 +1031,9 @@ rm -f *.filelist* %endif %changelog +* Thu Jul 23 2009 Andreas Schwab - 2.10.90-6 +- Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries + * Wed Jul 22 2009 Andreas Schwab - 2.10.90-5 - Update from master. - Undefine __i686 on x86 to fix build. From spot at fedoraproject.org Thu Jul 23 14:08:43 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 14:08:43 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/F-11 python-repoze-what-pylons-setuptools.patch, NONE, 1.1 python-repoze-what-pylons.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090723140843.3D98911C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5579/F-11 Modified Files: sources Added Files: python-repoze-what-pylons-setuptools.patch python-repoze-what-pylons.spec Log Message: initial branching python-repoze-what-pylons-setuptools.patch: setup.py | 3 --- 1 file changed, 3 deletions(-) --- NEW FILE python-repoze-what-pylons-setuptools.patch --- --- setup.py.orig 2009-06-05 07:40:56.000000000 -0400 +++ setup.py 2009-06-05 07:41:01.000000000 -0400 @@ -15,9 +15,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-pylons.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-pylons Version: 1.0 Release: 3%{?dist} Summary: A plugin providing utilities for Pylons applications using repoze.what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-pylons/repoze.what-pylons-%{version}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel Requires: python-repoze-what >= 1.0.4 Requires: python-pylons >= 0.9.7 Requires: python-decorator >= 3.0 %description This plugin provides optional and handy utilities for Pylons applications using repoze.what. Some of the features of the plugin include: * The utilities are ready to use: There?s nothing additional to be configured before using. * 100% documented. Each component is documented along with code samples. * The test suite has a coverage of 100% and it will never decrease ? if it ever does, report it as a bug! * TurboGears 2 is officially supported as well. %prep %setup -q -n repoze.what-pylons-%{version} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Can't do tests due to circular dependencies # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Wed Jul 01 2009 Tom "spot" Callaway - 1.0-3 - fix rpmlint issues * Fri Jun 05 2009 Luke Macken - 1.0-2 - Add a patch to ensure we use our own setuptools. * Wed May 6 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 13:36:23 -0000 1.1 +++ sources 23 Jul 2009 14:08:43 -0000 1.2 @@ -0,0 +1 @@ +6799d2a9f58deb6a8d9bc2b3129601e8 repoze.what-pylons-1.0.tar.gz From deji at fedoraproject.org Thu Jul 23 14:08:41 2009 From: deji at fedoraproject.org (Deji Akingunola) Date: Thu, 23 Jul 2009 14:08:41 +0000 (UTC) Subject: rpms/mpich2/EL-5 mpich2.spec,1.6,1.7 Message-ID: <20090723140841.5991311C0093@cvs1.fedora.phx.redhat.com> Author: deji Update of /cvs/pkgs/rpms/mpich2/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5326 Modified Files: mpich2.spec Log Message: EL5 ppc tree doesn't seems to have java-devel-oopenjdk Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/EL-5/mpich2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mpich2.spec 23 Jul 2009 13:36:42 -0000 1.6 +++ mpich2.spec 23 Jul 2009 14:08:41 -0000 1.7 @@ -8,7 +8,11 @@ URL: http://www.mcs.anl.gov/research/pr Source: http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/%{version}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libXt-devel, e2fsprogs-devel +%ifarch %{ix86} x86_64 BuildRequires: java-devel-openjdk, gcc-gfortran +%else +BuildRequires: java-devel, gcc-gfortran +%endif BuildRequires: emacs-common, perl, python Obsoletes: %{name}-libs < 1.1.1 Requires: environment-modules From spot at fedoraproject.org Thu Jul 23 14:09:13 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 14:09:13 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/F-10 python-repoze-what-pylons-setuptools.patch, NONE, 1.1 python-repoze-what-pylons.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090723140913.C853A11C025F@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5579/F-10 Modified Files: sources Added Files: python-repoze-what-pylons-setuptools.patch python-repoze-what-pylons.spec Log Message: initial branching python-repoze-what-pylons-setuptools.patch: setup.py | 3 --- 1 file changed, 3 deletions(-) --- NEW FILE python-repoze-what-pylons-setuptools.patch --- --- setup.py.orig 2009-06-05 07:40:56.000000000 -0400 +++ setup.py 2009-06-05 07:41:01.000000000 -0400 @@ -15,9 +15,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-pylons.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-pylons Version: 1.0 Release: 3%{?dist} Summary: A plugin providing utilities for Pylons applications using repoze.what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-pylons/repoze.what-pylons-%{version}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel Requires: python-repoze-what >= 1.0.4 Requires: python-pylons >= 0.9.7 Requires: python-decorator >= 3.0 %description This plugin provides optional and handy utilities for Pylons applications using repoze.what. Some of the features of the plugin include: * The utilities are ready to use: There?s nothing additional to be configured before using. * 100% documented. Each component is documented along with code samples. * The test suite has a coverage of 100% and it will never decrease ? if it ever does, report it as a bug! * TurboGears 2 is officially supported as well. %prep %setup -q -n repoze.what-pylons-%{version} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Can't do tests due to circular dependencies # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Wed Jul 01 2009 Tom "spot" Callaway - 1.0-3 - fix rpmlint issues * Fri Jun 05 2009 Luke Macken - 1.0-2 - Add a patch to ensure we use our own setuptools. * Wed May 6 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 13:36:23 -0000 1.1 +++ sources 23 Jul 2009 14:08:42 -0000 1.2 @@ -0,0 +1 @@ +6799d2a9f58deb6a8d9bc2b3129601e8 repoze.what-pylons-1.0.tar.gz From spot at fedoraproject.org Thu Jul 23 14:09:12 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 14:09:12 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/EL-5 python-repoze-what-pylons-setuptools.patch, NONE, 1.1 python-repoze-what-pylons.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090723140913.875B411C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/python-repoze-what-pylons/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5579/EL-5 Modified Files: sources Added Files: python-repoze-what-pylons-setuptools.patch python-repoze-what-pylons.spec Log Message: initial branching python-repoze-what-pylons-setuptools.patch: setup.py | 3 --- 1 file changed, 3 deletions(-) --- NEW FILE python-repoze-what-pylons-setuptools.patch --- --- setup.py.orig 2009-06-05 07:40:56.000000000 -0400 +++ setup.py 2009-06-05 07:41:01.000000000 -0400 @@ -15,9 +15,6 @@ import os -from ez_setup import use_setuptools -use_setuptools() - from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) --- NEW FILE python-repoze-what-pylons.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-repoze-what-pylons Version: 1.0 Release: 3%{?dist} Summary: A plugin providing utilities for Pylons applications using repoze.what Group: Development/Languages License: BSD URL: http://code.gustavonarea.net/repoze.what-pylons/ Source0: http://pypi.python.org/packages/source/r/repoze.what-pylons/repoze.what-pylons-%{version}.tar.gz Patch0: %{name}-setuptools.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel, python-setuptools-devel Requires: python-repoze-what >= 1.0.4 Requires: python-pylons >= 0.9.7 Requires: python-decorator >= 3.0 %description This plugin provides optional and handy utilities for Pylons applications using repoze.what. Some of the features of the plugin include: * The utilities are ready to use: There?s nothing additional to be configured before using. * 100% documented. Each component is documented along with code samples. * The test suite has a coverage of 100% and it will never decrease ? if it ever does, report it as a bug! * TurboGears 2 is officially supported as well. %prep %setup -q -n repoze.what-pylons-%{version} %patch0 -p0 -b .setuptools %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %check # Can't do tests due to circular dependencies # PYTHONPATH=$(pwd) nosetests %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt %{python_sitelib}/* %changelog * Wed Jul 01 2009 Tom "spot" Callaway - 1.0-3 - fix rpmlint issues * Fri Jun 05 2009 Luke Macken - 1.0-2 - Add a patch to ensure we use our own setuptools. * Wed May 6 2009 Tom "spot" Callaway - 1.0-1 - Initial package for Fedora Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 13:36:23 -0000 1.1 +++ sources 23 Jul 2009 14:08:42 -0000 1.2 @@ -0,0 +1 @@ +6799d2a9f58deb6a8d9bc2b3129601e8 repoze.what-pylons-1.0.tar.gz From dnovotny at fedoraproject.org Thu Jul 23 14:10:36 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Thu, 23 Jul 2009 14:10:36 +0000 (UTC) Subject: rpms/file/devel file-5.03-ifany.patch, NONE, 1.1 file.spec, 1.102, 1.103 Message-ID: <20090723141036.170DB11C049E@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/file/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6214 Modified Files: file.spec Added Files: file-5.03-ifany.patch Log Message: fix #510429 file-5.03-ifany.patch: lisp | 2 -- 1 file changed, 2 deletions(-) --- NEW FILE file-5.03-ifany.patch --- diff -up file-5.03/magic/Magdir/lisp.ifany file-5.03/magic/Magdir/lisp --- file-5.03/magic/Magdir/lisp.ifany 2009-07-23 15:46:03.000000000 +0200 +++ file-5.03/magic/Magdir/lisp 2009-07-23 15:46:17.000000000 +0200 @@ -11,8 +11,6 @@ #>2 search/4096 !\r Lisp/Scheme program text #>2 search/4096 \r Windows INF file -0 search/4096 (if\ Lisp/Scheme program text -!:mime text/x-lisp 0 search/4096 (setq\ Lisp/Scheme program text !:mime text/x-lisp 0 search/4096 (defvar\ Lisp/Scheme program text Index: file.spec =================================================================== RCS file: /cvs/extras/rpms/file/devel/file.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- file.spec 22 Jul 2009 13:44:16 -0000 1.102 +++ file.spec 23 Jul 2009 14:10:05 -0000 1.103 @@ -5,7 +5,7 @@ Summary: A utility for determining file types Name: file Version: 5.03 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Applications/File Source0: ftp://ftp.astron.com/pub/file/file-%{version}.tar.gz @@ -15,6 +15,7 @@ Patch1: file-5.00-devdrv.patch Patch2: file-5.00-mdmp.patch Patch3: file-5.03-fonts-postscript.patch Patch4: file-5.03-xfsdump.patch +Patch5: file-5.03-ifany.patch Requires: file-libs = %{version}-%{release} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -66,6 +67,8 @@ file(1) command. %patch3 -p1 #fixes #513079 %patch4 -p1 +#fixes #510429 +%patch5 -p1 iconv -f iso-8859-1 -t utf-8 < doc/libmagic.man > doc/libmagic.man_ touch -r doc/libmagic.man doc/libmagic.man_ @@ -140,6 +143,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Jul 23 2009 Daniel Novotny 5.03-6 +- fix #510429 - file is confused by string "/* (if any) */" + in C header and claims it "Lisp/Scheme program text" + * Wed Jul 22 2009 Daniel Novotny 5.03-5 - #513079 - RFE: file - recognize xfs metadump images From kanarip at fedoraproject.org Thu Jul 23 14:11:42 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Thu, 23 Jul 2009 14:11:42 +0000 (UTC) Subject: rpms/rubygem-mocha/EL-4 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723141142.89A5F11C0093@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-mocha/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7242/EL-4 Modified Files: .cvsignore sources Added Files: import.log Log Message: 0.9.7-1 --- NEW FILE import.log --- rubygem-mocha-0_9_7-1_fc11:EL-4:rubygem-mocha-0.9.7-1.fc11.src.rpm:1248358180 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 29 Jun 2009 17:06:51 -0000 1.1 +++ .cvsignore 23 Jul 2009 14:11:41 -0000 1.2 @@ -0,0 +1 @@ +mocha-0.9.7.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 29 Jun 2009 17:06:51 -0000 1.1 +++ sources 23 Jul 2009 14:11:41 -0000 1.2 @@ -0,0 +1 @@ +1201d630d5f4b2f9dfc8ef0ecc008d33 mocha-0.9.7.gem From rvokal at fedoraproject.org Thu Jul 23 14:11:55 2009 From: rvokal at fedoraproject.org (=?utf-8?q?Radek_Vok=C3=A1l?=) Date: Thu, 23 Jul 2009 14:11:55 +0000 (UTC) Subject: rpms/wireshark/F-11 .cvsignore, 1.25, 1.26 sources, 1.25, 1.26 wireshark.spec, 1.52, 1.53 Message-ID: <20090723141155.C0AB411C0093@cvs1.fedora.phx.redhat.com> Author: rvokal Update of /cvs/extras/rpms/wireshark/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7157 Modified Files: .cvsignore sources wireshark.spec Log Message: upgrade to 1.2.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 16 Jun 2009 10:36:41 -0000 1.25 +++ .cvsignore 23 Jul 2009 14:11:25 -0000 1.26 @@ -1 +1 @@ -wireshark-1.2.0.tar.bz2 +wireshark-1.2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-11/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 16 Jun 2009 10:36:41 -0000 1.25 +++ sources 23 Jul 2009 14:11:25 -0000 1.26 @@ -1 +1 @@ -d3f799e0ae7953cd3426d9e0b6e2708d wireshark-1.2.0.tar.bz2 +957d1b11a6c9b305bcd106d4084ff71e wireshark-1.2.1.tar.bz2 Index: wireshark.spec =================================================================== RCS file: /cvs/extras/rpms/wireshark/F-11/wireshark.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- wireshark.spec 16 Jun 2009 10:36:41 -0000 1.52 +++ wireshark.spec 23 Jul 2009 14:11:25 -0000 1.53 @@ -6,7 +6,7 @@ Summary: Network traffic analyzer Name: wireshark -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} License: GPL+ Group: Applications/Internet @@ -210,6 +210,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Radek Vokal - 1.2.1 +- upgrade to 1.2.1 +- http://www.wireshark.org/docs/relnotes/wireshark-1.2.1.html + * Tue Jun 16 2009 Radek Vokal - 1.2.0 - upgrade to 1.2.0 - http://www.wireshark.org/docs/relnotes/wireshark-1.2.0.html From ajax at fedoraproject.org Thu Jul 23 14:18:16 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 14:18:16 +0000 (UTC) Subject: rpms/xorg-x11-xbitmaps/devel xorg-x11-xbitmaps.spec,1.18,1.19 Message-ID: <20090723141816.8B58911C049A@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xbitmaps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10068 Modified Files: xorg-x11-xbitmaps.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.1-8 - Un-require xorg-x11-filesystem Index: xorg-x11-xbitmaps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xbitmaps/devel/xorg-x11-xbitmaps.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xorg-x11-xbitmaps.spec 26 Feb 2009 11:37:56 -0000 1.18 +++ xorg-x11-xbitmaps.spec 23 Jul 2009 14:18:16 -0000 1.19 @@ -5,7 +5,7 @@ Summary: X.Org X11 application bitmaps Name: xorg-x11-%{pkgname} Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -13,11 +13,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version Source0: ftp://ftp.x.org/pub/individual/data/xbitmaps-%{version}.tar.bz2 -# NOTE: This dependency on xorg-x11-filesystem is required to work around -# a nasty upgrade problem when going from FC4->FC5 or monolithic to -# modular X.Org. Bug #173384. -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 - Provides: xbitmaps Provides: xbitmaps-devel @@ -43,7 +38,6 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) #%doc -%dir %{_includedir}/X11 %dir %{_includedir}/X11/bitmaps %{_includedir}/X11/bitmaps/* # Symlink for devel linking @@ -51,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xbitmaps.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.1-8 +- Un-require xorg-x11-filesystem + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 14:19:57 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 14:19:57 +0000 (UTC) Subject: rpms/xorg-x11-xfwp/devel xorg-x11-xfwp.spec,1.19,1.20 Message-ID: <20090723141957.6558E11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-xfwp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10515 Modified Files: xorg-x11-xfwp.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.1-9 - Un-require xorg-x11-filesystem Index: xorg-x11-xfwp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xfwp/devel/xorg-x11-xfwp.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-xfwp.spec 26 Feb 2009 11:40:50 -0000 1.19 +++ xorg-x11-xfwp.spec 23 Jul 2009 14:19:27 -0000 1.20 @@ -5,7 +5,7 @@ Summary: X.Org X11 X firewall proxy Name: xorg-x11-%{pkgname} # NOTE: The package version should always be the upstream xfwp tarball version. Version: %{xfwp_version} -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -25,14 +25,8 @@ BuildRequires: libICE-devel libXt-devel BuildRequires: xorg-x11-proto-devel BuildRequires: xorg-x11-util-macros >= 1.0.0 -# FIXME: check if still needed for X11R7 -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 - Provides: xfwp proxymngr xfindproxy -# NOTE: These utilities used to be in XFree86, xorg-x11 -Obsoletes: XFree86, xorg-x11 - %description The X firewall proxy (xfwp) is an application layer gateway proxy that may be run on a network firewall host to forward X traffic across the @@ -91,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xfwp.1* %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.1-9 +- Un-require xorg-x11-filesystem + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ajax at fedoraproject.org Thu Jul 23 14:21:45 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 14:21:45 +0000 (UTC) Subject: rpms/libFS/devel libFS.spec,1.32,1.33 Message-ID: <20090723142145.6CDA811C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/libFS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11208 Modified Files: libFS.spec Log Message: * Thu Jul 23 2009 Adam Jackson 1.0.1-4 - Un-require xorg-x11-filesystem Index: libFS.spec =================================================================== RCS file: /cvs/pkgs/rpms/libFS/devel/libFS.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libFS.spec 25 Feb 2009 13:02:18 -0000 1.32 +++ libFS.spec 23 Jul 2009 14:21:15 -0000 1.33 @@ -1,7 +1,7 @@ Summary: X.Org X11 libFS runtime library Name: libFS Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -12,22 +12,15 @@ BuildRequires: pkgconfig BuildRequires: xorg-x11-proto-devel BuildRequires: xorg-x11-xtrans-devel >= 1.0.3-4 -Obsoletes: XFree86-libs, xorg-x11-libs - %description X.Org X11 libFS runtime library %package devel Summary: X.Org X11 libFS development package Group: Development/Libraries -Requires(pre): xorg-x11-filesystem >= 0.99.2-3 Requires: %{name} = %{version}-%{release} -# NOTE: Required by libfs.pc -Requires: xorg-x11-proto-devel - Provides: %{name}-devel -Obsoletes: XFree86-devel, xorg-x11-devel %description devel X.Org X11 libFS development package @@ -67,8 +60,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%dir %{_includedir}/X11 -%dir %{_includedir}/X11/fonts %{_includedir}/X11/fonts/FSlib.h %if %{with_static} %{_libdir}/libFS.a @@ -77,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libfs.pc %changelog +* Thu Jul 23 2009 Adam Jackson 1.0.1-4 +- Un-require xorg-x11-filesystem + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 23 14:23:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:51 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142351.9B72310F8AB@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:23:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:52 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142352.363C110F8B3@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:23:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:54 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142354.9894410F8A9@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:23:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:55 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142355.5C3FF10F8B9@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:23:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:58 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142358.D53EE10F856@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:23:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:23:59 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142359.EF0B010F8BE@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:24:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:01 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142401.DE41F10F8C9@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:24:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:03 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142403.3D02610F890@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:24:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:05 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142405.7318110F8C8@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:24:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:06 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142406.22E6610F8CF@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From spot at fedoraproject.org Thu Jul 23 14:25:52 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 14:25:52 +0000 (UTC) Subject: rpms/c-ares/EL-5 c-ares.spec,1.9,1.10 sources,1.6,1.7 Message-ID: <20090723142552.B280811C0093@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/c-ares/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13235 Modified Files: c-ares.spec sources Log Message: update to 1.6.0 Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/EL-5/c-ares.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- c-ares.spec 27 Jun 2007 14:02:31 -0000 1.9 +++ c-ares.spec 23 Jul 2009 14:25:22 -0000 1.10 @@ -1,6 +1,6 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares -Version: 1.4.0 +Version: 1.6.0 Release: 1%{?dist} License: MIT Group: System Environment/Libraries @@ -18,6 +18,7 @@ by Greg Hudson at MIT. Summary: Development files for c-ares Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: pkgconfig %description devel This package contains the header files and static libraries needed to @@ -54,9 +55,28 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/ares_dns.h %{_includedir}/ares_version.h %{_libdir}/*.so +%{_libdir}/pkgconfig/libcares.pc %{_mandir}/man3/ares_* %changelog +* Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 +- update to 1.6.0 + +* Mon Feb 23 2009 Fedora Release Engineering - 1.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Sep 12 2008 Tom "spot" Callaway - 1.5.3-1 +- update to 1.5.3 + +* Tue Feb 19 2008 Fedora Release Engineering - 1.5.1-2 +- Autorebuild for GCC 4.3 + +* Tue Feb 19 2008 Tom "spot" Callaway 1.5.1-1 +- update to 1.5.1 + +* Thu Aug 23 2007 Tom "spot" Callaway 1.4.0-2 +- rebuild for ppc32 + * Wed Jun 27 2007 Tom "spot" Callaway 1.4.0-1 - bump to 1.4.0 (resolves bugzilla 243591) - get rid of static library (.a) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 27 Jun 2007 14:02:31 -0000 1.6 +++ sources 23 Jul 2009 14:25:22 -0000 1.7 @@ -1 +1 @@ -cd1f8e7dd47cf099518014014f23a98b c-ares-1.4.0.tar.gz +4503b0db3dd79d3c1f58d87722dbab46 c-ares-1.6.0.tar.gz From pkgdb at fedoraproject.org Thu Jul 23 14:28:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:21 +0000 Subject: [pkgdb] libatomic_ops: rdieter has requested watchbugzilla Message-ID: <20090723142821.8A4A510F8AB@bastion2.fedora.phx.redhat.com> rdieter has requested the watchbugzilla acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:28:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:24 +0000 Subject: [pkgdb] libatomic_ops: rdieter has requested commit Message-ID: <20090723142824.75A7B10F8B2@bastion2.fedora.phx.redhat.com> rdieter has requested the commit acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:28:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:22 +0000 Subject: [pkgdb] libatomic_ops: rdieter has requested watchcommits Message-ID: <20090723142822.B336010F8AC@bastion2.fedora.phx.redhat.com> rdieter has requested the watchcommits acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:28:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:28 +0000 Subject: [pkgdb] libatomic_ops: rdieter has requested approveacls Message-ID: <20090723142828.4BD0B10F8B7@bastion2.fedora.phx.redhat.com> rdieter has requested the approveacls acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From rdieter at fedoraproject.org Thu Jul 23 14:39:10 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 14:39:10 +0000 (UTC) Subject: rpms/libatomic_ops/devel libatomic_ops.spec,1.7,1.8 Message-ID: <20090723143910.2FF8211C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libatomic_ops/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19396 Modified Files: libatomic_ops.spec Log Message: * Thu Jul 23 2009 Rex Dieter - 1.2-7 - devel: Provides: %name-static ... - consolidate %doc's - %files: track libs Index: libatomic_ops.spec =================================================================== RCS file: /cvs/pkgs/rpms/libatomic_ops/devel/libatomic_ops.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libatomic_ops.spec 20 May 2009 08:42:25 -0000 1.7 +++ libatomic_ops.spec 23 Jul 2009 14:39:09 -0000 1.8 @@ -1,10 +1,7 @@ -# No debug information gets generated from a static lib, so -# debuginfo will be empty. -%define debug_package %{nil} Name: libatomic_ops Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Atomic memory update operations Group: Development/Libraries @@ -16,6 +13,10 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch1: libatomic_ops-1.2-ppclwzfix.patch Patch2: libatomic_ops-1.2-s390-include.patch +# No debug information gets generated from a static lib, so +# debuginfo will be empty. +%define debug_package %{nil} + %description Provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably @@ -27,6 +28,7 @@ that involves minimum overhead across a %package devel Summary: Atomic memory update operations Group: Development/Libraries +Provides: %{name}-static = %{version}-%{release} %description devel Provides implementations for atomic memory update operations on a @@ -51,6 +53,9 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT +# omit dup'd docs +rm -rf $RPM_BUILD_ROOT%{_datadir}/libatomic_ops/{COPYING,*.txt} + %clean rm -rf $RPM_BUILD_ROOT @@ -58,16 +63,22 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING INSTALL NEWS README +%doc AUTHORS ChangeLog COPYING NEWS README +%doc doc/*.txt %{_includedir}/atomic_ops.h %{_includedir}/atomic_ops_malloc.h %{_includedir}/atomic_ops_stack.h -%{_includedir}/atomic_ops -%{_libdir}/%{name}*.a -%{_datadir}/%{name} +%{_includedir}/atomic_ops/ +%{_libdir}/libatomic_ops.a +%{_libdir}/libatomic_ops_gpl.a %changelog +* Thu Jul 23 2009 Rex Dieter - 1.2-7 +- devel: Provides: %%name-static ... +- consolidate %%doc's +- %%files: track libs + * Wed May 20 2009 Dan Horak - 1.2-6 - added fix for s390 From walters at fedoraproject.org Thu Jul 23 14:39:49 2009 From: walters at fedoraproject.org (Colin Walters) Date: Thu, 23 Jul 2009 14:39:49 +0000 (UTC) Subject: rpms/dbus/devel dbus.spec,1.170,1.171 Message-ID: <20090723143949.A920D11C0093@cvs1.fedora.phx.redhat.com> Author: walters Update of /cvs/pkgs/rpms/dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19455 Modified Files: dbus.spec Log Message: * Thu Jul 23 2009 Colin Walters - 1:1.2.16-3 - Remove conflicting -U option to useradd Index: dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/dbus.spec,v retrieving revision 1.170 retrieving revision 1.171 diff -u -p -r1.170 -r1.171 --- dbus.spec 22 Jul 2009 21:46:04 -0000 1.170 +++ dbus.spec 23 Jul 2009 14:39:19 -0000 1.171 @@ -9,7 +9,7 @@ Summary: D-BUS message bus Name: dbus Epoch: 1 Version: 1.2.16 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.gz Source1: doxygen_to_devhelp.xsl @@ -150,7 +150,7 @@ rm -rf %{buildroot} %pre # Add the "dbus" user and group /usr/sbin/groupadd -r -g %{dbus_user_uid} dbus 2>/dev/null || : -/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} -g %{dbus_user_uid} -U \ +/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} -g %{dbus_user_uid} \ -s /sbin/nologin -r -d '/' dbus 2> /dev/null || : %post libs -p /sbin/ldconfig @@ -226,6 +226,9 @@ fi %{_includedir}/* %changelog +* Thu Jul 23 2009 Colin Walters - 1:1.2.16-3 +- Remove conflicting -U option to useradd + * Wed Jul 22 2009 Colin Walters - 1:1.2.16-2 - Explicitly add a dbus group id, fixes dbus files getting a random group id in cases where the RPM install order varies. From glommer at fedoraproject.org Thu Jul 23 14:52:23 2009 From: glommer at fedoraproject.org (Glauber Costa) Date: Thu, 23 Jul 2009 14:52:23 +0000 (UTC) Subject: rpms/qemu/devel qemu-slirp-Fix-guestfwd-for-incoming-data.patch, NONE, 1.1 qemu.spec, 1.112, 1.113 Message-ID: <20090723145223.5D73A11C0093@cvs1.fedora.phx.redhat.com> Author: glommer Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23748 Modified Files: qemu.spec Added Files: qemu-slirp-Fix-guestfwd-for-incoming-data.patch Log Message: fix bug 513249, -net channel is broken qemu-slirp-Fix-guestfwd-for-incoming-data.patch: net.c | 11 ++++++----- slirp/libslirp.h | 2 +- slirp/slirp.c | 15 +++++++-------- 3 files changed, 14 insertions(+), 14 deletions(-) --- NEW FILE qemu-slirp-Fix-guestfwd-for-incoming-data.patch --- >From b0dc78730e54bd3ef96f56466890aa2509a328c3 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Wed, 22 Jul 2009 17:03:52 +0200 Subject: [PATCH] slirp: Fix guestfwd for incoming data Unless a virtual server address was explicitly defined (which is impossible with the legacy -net channel format), guestfwd did not properly forwarded host->guest packets. This patch fixes it. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori --- net.c | 11 ++++++----- slirp/libslirp.h | 2 +- slirp/slirp.c | 14 +++++++------- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/net.c b/net.c index 90cf912..1c2c7d0 100644 --- a/net.c +++ b/net.c @@ -1150,7 +1150,7 @@ static void slirp_smb(SlirpState* s, Monitor *mon, const char *exported_dir, snprintf(smb_cmdline, sizeof(smb_cmdline), "%s -s %s", SMBD_COMMAND, smb_conf); - if (slirp_add_exec(s->slirp, 0, smb_cmdline, vserver_addr, 139) < 0) { + if (slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 139) < 0) { slirp_smb_cleanup(s); config_error(mon, "conflicting/invalid smbserver address\n"); } @@ -1239,16 +1239,17 @@ static void slirp_guestfwd(SlirpState *s, Monitor *mon, const char *config_str, qemu_free(fwd); return; } - fwd->server = server; - fwd->port = port; - fwd->slirp = s->slirp; - if (slirp_add_exec(s->slirp, 3, fwd->hd, server, port) < 0) { + if (slirp_add_exec(s->slirp, 3, fwd->hd, &server, port) < 0) { config_error(mon, "conflicting/invalid host:port in guest forwarding " "rule '%s'\n", config_str); qemu_free(fwd); return; } + fwd->server = server; + fwd->port = port; + fwd->slirp = s->slirp; + qemu_chr_add_handlers(fwd->hd, guestfwd_can_read, guestfwd_read, NULL, fwd); return; diff --git a/slirp/libslirp.h b/slirp/libslirp.h index 3bcc392..93087ed 100644 --- a/slirp/libslirp.h +++ b/slirp/libslirp.h @@ -33,7 +33,7 @@ int slirp_add_hostfwd(Slirp *slirp, int is_udp, int slirp_remove_hostfwd(Slirp *slirp, int is_udp, struct in_addr host_addr, int host_port); int slirp_add_exec(Slirp *slirp, int do_pty, const void *args, - struct in_addr guest_addr, int guest_port); + struct in_addr *guest_addr, int guest_port); void slirp_connection_info(Slirp *slirp, Monitor *mon); diff --git a/slirp/slirp.c b/slirp/slirp.c index 0ce62a3..9be8553 100644 --- a/slirp/slirp.c +++ b/slirp/slirp.c @@ -794,19 +794,19 @@ int slirp_add_hostfwd(Slirp *slirp, int is_udp, struct in_addr host_addr, } int slirp_add_exec(Slirp *slirp, int do_pty, const void *args, - struct in_addr guest_addr, int guest_port) + struct in_addr *guest_addr, int guest_port) { - if (!guest_addr.s_addr) { - guest_addr.s_addr = slirp->vnetwork_addr.s_addr | + if (!guest_addr->s_addr) { + guest_addr->s_addr = slirp->vnetwork_addr.s_addr | (htonl(0x0204) & ~slirp->vnetwork_mask.s_addr); } - if ((guest_addr.s_addr & slirp->vnetwork_mask.s_addr) != + if ((guest_addr->s_addr & slirp->vnetwork_mask.s_addr) != slirp->vnetwork_addr.s_addr || - guest_addr.s_addr == slirp->vhost_addr.s_addr || - guest_addr.s_addr == slirp->vnameserver_addr.s_addr) { + guest_addr->s_addr == slirp->vhost_addr.s_addr || + guest_addr->s_addr == slirp->vnameserver_addr.s_addr) { return -1; } - return add_exec(&slirp->exec_list, do_pty, (char *)args, guest_addr, + return add_exec(&slirp->exec_list, do_pty, (char *)args, *guest_addr, htons(guest_port)); } -- 1.6.2.2 Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- qemu.spec 16 Jul 2009 17:04:01 -0000 1.112 +++ qemu.spec 23 Jul 2009 14:52:23 -0000 1.113 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 12.%{kvmvertag}%{?dist} +Release: 13.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -29,6 +29,9 @@ Patch03: qemu-prefer-sysfs-for-usb-host- # Fix build with esound audio enabled, cherry-picked from upstream Patch04: qemu-fix-build-for-esd-audio.patch +# Fix guestfwd behaviour, cherrypicked from upstream (#513249) +Patch05: qemu-slirp-Fix-guestfwd-for-incoming-data.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel zlib-devel which texi2html gnutls-devel cyrus-sasl-devel BuildRequires: rsync dev86 iasl @@ -213,6 +216,7 @@ such as kvmtrace and kvm_stat. %patch02 -p1 %patch03 -p1 %patch04 -p1 +%patch05 -p1 %build # systems like rhel build system does not have a recent enough linker so @@ -477,6 +481,9 @@ getent passwd qemu >/dev/null || \ %{_mandir}/man1/qemu-img.1* %changelog +* Thu Jul 23 2009 Glauber Costa - 2:0.10.50-13.kvm88 +- Fix bug 513249, -net channel option is broken + * Thu Jul 16 2009 Daniel P. Berrange - 2:0.10.50-12.kvm88 - Add 'qemu' user and group accounts - Force disable xen until it can be made to build From mtasaka at fedoraproject.org Thu Jul 23 14:57:46 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 23 Jul 2009 14:57:46 +0000 (UTC) Subject: rpms/ruby/devel ruby.spec,1.136,1.137 Message-ID: <20090723145746.B52E711C0093@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25821 Modified Files: ruby.spec Log Message: * Thu Jul 23 2009 Mamoru Tasaka - 1.8.6.369-2 - Make sure that readline.so is linked against readline 5 because Ruby is under GPLv2 Index: ruby.spec =================================================================== RCS file: /cvs/extras/rpms/ruby/devel/ruby.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- ruby.spec 23 Jun 2009 12:39:02 -0000 1.136 +++ ruby.spec 23 Jul 2009 14:57:46 -0000 1.137 @@ -16,11 +16,16 @@ Name: ruby Version: %{rubyver}%{?dotpatchlevel} -Release: 1%{?dist} +Release: 2%{?dist} License: Ruby or GPLv2 URL: http://www.ruby-lang.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: readline readline-devel ncurses ncurses-devel gdbm gdbm-devel glibc-devel tcl-devel tk-devel libX11-devel autoconf gcc unzip openssl-devel db4-devel byacc +%if 0%{?fedora} >= 12 +BuildRequires: compat-readline5-devel +%else +BuildRequires: readline readline-devel +%endif +BuildRequires: ncurses ncurses-devel gdbm gdbm-devel glibc-devel tcl-devel tk-devel libX11-devel autoconf gcc unzip openssl-devel db4-devel byacc BuildRequires: emacs Source0: ftp://ftp.ruby-lang.org/pub/%{name}/%{rubyxver}/%{name}-%{arcver}.tar.bz2 @@ -197,6 +202,10 @@ export CFLAGS --enable-pthread \ --with-lookup-order-hack=INET \ --disable-rpath \ +%if 0%{?fedora} >= 12 + --with-readline-include=%{_includedir}/readline5 \ + --with-readline-lib=%{_libdir}/readline5 \ +%endif --with-ruby-prefix=%{_prefix}/lib make RUBY_INSTALL_NAME=ruby %{?_smp_mflags} COPY="cp -p" %{?_smp_mflags} @@ -535,6 +544,10 @@ rm -rf $RPM_BUILD_ROOT %{_emacs_sitestartdir}/ruby-mode-init.el %changelog +* Thu Jul 23 2009 Mamoru Tasaka - 1.8.6.369-2 +- Make sure that readline.so is linked against readline 5 because + Ruby is under GPLv2 + * Sat Jun 20 2009 Jeroen van Meeuwen - 1.8.6.369-1 - New patchlevel fixing CVE-2009-1904 - Fix directory on ARM (#506233, Kedar Sovani) From cwickert at fedoraproject.org Thu Jul 23 15:01:51 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 15:01:51 +0000 (UTC) Subject: comps comps-f11.xml.in,1.273,1.274 comps-f12.xml.in,1.56,1.57 Message-ID: <20090723150151.626D611C048A@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27556 Modified Files: comps-f11.xml.in comps-f12.xml.in Log Message: add parrot to development-tools Index: comps-f11.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f11.xml.in,v retrieving revision 1.273 retrieving revision 1.274 diff -u -p -r1.273 -r1.274 --- comps-f11.xml.in 23 Jul 2009 12:59:54 -0000 1.273 +++ comps-f11.xml.in 23 Jul 2009 15:01:50 -0000 1.274 @@ -1030,6 +1030,7 @@ nqc-doc ocaml oorexx + parrot patchy perl-perlmenu perltidy Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- comps-f12.xml.in 23 Jul 2009 13:14:00 -0000 1.56 +++ comps-f12.xml.in 23 Jul 2009 15:01:50 -0000 1.57 @@ -1109,6 +1109,7 @@ nqc-doc ocaml oorexx + parrot patchy perl-perlmenu perltidy From pkgdb at fedoraproject.org Thu Jul 23 14:28:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:00 +0000 Subject: [pkgdb] libatomic_ops ownership updated Message-ID: <20090723142800.704D010F89D@bastion2.fedora.phx.redhat.com> Package libatomic_ops in Fedora 10 is now owned by rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:28:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:05 +0000 Subject: [pkgdb] libatomic_ops ownership updated Message-ID: <20090723142805.D18F910F8B8@bastion2.fedora.phx.redhat.com> Package libatomic_ops in Fedora 11 is now owned by rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:28:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:28:11 +0000 Subject: [pkgdb] libatomic_ops ownership updated Message-ID: <20090723142811.7CA0110F856@bastion2.fedora.phx.redhat.com> Package libatomic_ops in Fedora devel is now owned by rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 14:24:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:08 +0000 Subject: [pkgdb] system-config-lvm: agk has requested commit Message-ID: <20090723142408.A117B10F8D4@bastion2.fedora.phx.redhat.com> agk has requested the commit acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Thu Jul 23 14:24:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 14:24:15 +0000 Subject: [pkgdb] system-config-lvm: agk has requested approveacls Message-ID: <20090723142415.8DDF410F8B3@bastion2.fedora.phx.redhat.com> agk has requested the approveacls acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From jwilson at fedoraproject.org Thu Jul 23 15:06:39 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Thu, 23 Jul 2009 15:06:39 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch, NONE, 1.1 kernel.spec, 1.1677, 1.1678 Message-ID: <20090723150639.4C67711C0093@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30169 Modified Files: kernel.spec Added Files: linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch Log Message: * Thu Jul 23 2009 Jarod Wilson - virtio_blk: don't bounce highmem requests, works around a frequent oops in kvm guests using virtio block devices (#510304) linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch: virtio_blk.c | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch --- From: Christoph Hellwig Date: Sat, 18 Jul 2009 03:47:45 +0000 (-0600) Subject: virtio_blk: don't bounce highmem requests X-Git-Tag: v2.6.31-rc4~33^2~3 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 virtio_blk: don't bounce highmem requests By default a block driver bounces highmem requests, but virtio-blk is perfectly fine with any request that fit into it's 64 bit addressing scheme, mapped in the kernel virtual space or not. Besides improving performance on highmem systems this also makes the reproducible oops in __bounce_end_io go away (but hiding the real cause). Signed-off-by: Christoph Hellwig Signed-off-by: Rusty Russell --- diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 43db3ea..4c47859 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -360,6 +360,9 @@ static int __devinit virtblk_probe(struct virtio_device *vdev) blk_queue_max_phys_segments(vblk->disk->queue, vblk->sg_elems-2); blk_queue_max_hw_segments(vblk->disk->queue, vblk->sg_elems-2); + /* No need to bounce any requests */ + blk_queue_bounce_limit(vblk->disk->queue, BLK_BOUNCE_ANY); + /* No real sector limit. */ blk_queue_max_sectors(vblk->disk->queue, -1U); Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1677 retrieving revision 1.1678 diff -u -p -r1.1677 -r1.1678 --- kernel.spec 22 Jul 2009 20:25:49 -0000 1.1677 +++ kernel.spec 23 Jul 2009 15:06:37 -0000 1.1678 @@ -787,6 +787,7 @@ Patch9303: linux-2.6-kvm-skip-pit-check. Patch9304: linux-2.6-xen-check-for-nx-support.patch Patch9305: linux-2.6-xen-fix_warning_when_deleting_gendisk.patch Patch9307: linux-2.6.29-xen-disable-gbpages.patch +Patch9308: linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch Patch11000: linux-2.6-parport-quickfix-the-proc-registration-bug.patch Patch11010: linux-2.6-dev-zero-avoid-oom-lockup.patch @@ -1493,6 +1494,8 @@ ApplyPatch linux-2.6-kvm-skip-pit-check. ApplyPatch linux-2.6-xen-check-for-nx-support.patch ApplyPatch linux-2.6-xen-fix_warning_when_deleting_gendisk.patch ApplyPatch linux-2.6.29-xen-disable-gbpages.patch +# http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 (#510304) +ApplyPatch linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch # finally fix the proc registration bug (F11#503773 and others) ApplyPatch linux-2.6-parport-quickfix-the-proc-registration-bug.patch # @@ -2099,6 +2102,10 @@ fi # and build. %changelog +* Thu Jul 23 2009 Jarod Wilson +- virtio_blk: don't bounce highmem requests, works around a frequent + oops in kvm guests using virtio block devices (#510304) + * Wed Jul 22 2009 Tom "spot" Callaway - We have to override the new %%install behavior because, well... the kernel is special. From pkgdb at fedoraproject.org Thu Jul 23 15:10:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 15:10:45 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090723151045.1DD0E10F890@bastion2.fedora.phx.redhat.com> lkundrak has set the watchbugzilla acl on libatomic_ops (Fedora EPEL 5) to Approved for rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 15:10:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 15:10:46 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090723151046.A8C0E10F8A9@bastion2.fedora.phx.redhat.com> lkundrak has set the commit acl on libatomic_ops (Fedora EPEL 5) to Approved for rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 15:10:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 15:10:47 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090723151048.0741D10F8AD@bastion2.fedora.phx.redhat.com> lkundrak has set the watchcommits acl on libatomic_ops (Fedora EPEL 5) to Approved for rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Thu Jul 23 15:10:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 15:10:49 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090723151049.81A4810F8B3@bastion2.fedora.phx.redhat.com> lkundrak has set the approveacls acl on libatomic_ops (Fedora EPEL 5) to Approved for rdieter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From jwilson at fedoraproject.org Thu Jul 23 15:13:23 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Thu, 23 Jul 2009 15:13:23 +0000 (UTC) Subject: rpms/kernel/F-10 linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch, NONE, 1.1 kernel.spec, 1.1394, 1.1395 Message-ID: <20090723151323.2F66C11C0093@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2019 Modified Files: kernel.spec Added Files: linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch Log Message: * Thu Jul 23 2009 Jarod Wilson - virtio_blk: don't bounce highmem requests, works around a frequent oops in kvm guests using virtio block devices (#510304) linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch: virtio_blk.c | 3 +++ 1 file changed, 3 insertions(+) --- NEW FILE linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch --- From: Christoph Hellwig Date: Sat, 18 Jul 2009 03:47:45 +0000 (-0600) Subject: virtio_blk: don't bounce highmem requests X-Git-Tag: v2.6.31-rc4~33^2~3 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 virtio_blk: don't bounce highmem requests By default a block driver bounces highmem requests, but virtio-blk is perfectly fine with any request that fit into it's 64 bit addressing scheme, mapped in the kernel virtual space or not. Besides improving performance on highmem systems this also makes the reproducible oops in __bounce_end_io go away (but hiding the real cause). Signed-off-by: Christoph Hellwig Signed-off-by: Rusty Russell --- diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 43db3ea..4c47859 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -360,6 +360,9 @@ static int __devinit virtblk_probe(struct virtio_device *vdev) blk_queue_max_phys_segments(vblk->disk->queue, vblk->sg_elems-2); blk_queue_max_hw_segments(vblk->disk->queue, vblk->sg_elems-2); + /* No need to bounce any requests */ + blk_queue_bounce_limit(vblk->disk->queue, BLK_BOUNCE_ANY); + /* No real sector limit. */ blk_queue_max_sectors(vblk->disk->queue, -1U); Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1394 retrieving revision 1.1395 diff -u -p -r1.1394 -r1.1395 --- kernel.spec 22 Jul 2009 20:31:07 -0000 1.1394 +++ kernel.spec 23 Jul 2009 15:13:22 -0000 1.1395 @@ -737,6 +737,7 @@ Patch9303: linux-2.6-kvm-skip-pit-check. Patch9304: linux-2.6-xen-check-for-nx-support.patch Patch9305: linux-2.6-xen-fix_warning_when_deleting_gendisk.patch Patch9307: linux-2.6.29-xen-disable-gbpages.patch +Patch9308: linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch # fix some broken bluetooth dongles Patch9600: linux-2.6-bluetooth-submit-bulk-urbs-with-interrupt-urbs.patch @@ -1387,6 +1388,8 @@ ApplyPatch linux-2.6-kvm-skip-pit-check. ApplyPatch linux-2.6-xen-check-for-nx-support.patch ApplyPatch linux-2.6-xen-fix_warning_when_deleting_gendisk.patch ApplyPatch linux-2.6.29-xen-disable-gbpages.patch +# http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 (#510304) +ApplyPatch linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch ApplyPatch linux-2.6-bluetooth-submit-bulk-urbs-with-interrupt-urbs.patch @@ -1980,6 +1983,10 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Thu Jul 23 2009 Jarod Wilson +- virtio_blk: don't bounce highmem requests, works around a frequent + oops in kvm guests using virtio block devices (#510304) + * Wed Jul 22 2009 Tom "spot" Callaway - We have to override the new %%install behavior because, well... the kernel is special. From athimm at fedoraproject.org Thu Jul 23 15:27:25 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 15:27:25 +0000 (UTC) Subject: rpms/chrpath/devel chrpath-0.13-NULL-entry.patch, NONE, 1.1 chrpath.spec, 1.6, 1.7 Message-ID: <20090723152725.3C57111C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/chrpath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8708/devel Modified Files: chrpath.spec Added Files: chrpath-0.13-NULL-entry.patch Log Message: Fix last NULL in .dynamic section. chrpath-0.13-NULL-entry.patch: killrpath.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE chrpath-0.13-NULL-entry.patch --- diff -uNr chrpath-0.13.old/killrpath.c chrpath-0.13/killrpath.c --- chrpath-0.13.old/killrpath.c 2003-06-24 00:46:15.000000000 +0200 +++ chrpath-0.13/killrpath.c 2009-07-19 23:05:11.000000000 +0200 @@ -73,8 +73,11 @@ if ( ! elf_dynpath_tag(dyns[i].d_tag) ) dynpos++; } - for (; dynpos < i; dynpos++) + for (; dynpos < i; dynpos++) { dyns[dynpos].d_tag = DT_NULL; + dyns[dynpos].d_un.d_val = 0x0; + } + if (lseek(fd, phdr.p_offset, SEEK_SET) == -1 || write(fd, dyns, phdr.p_filesz) != (int)phdr.p_filesz) Index: chrpath.spec =================================================================== RCS file: /cvs/extras/rpms/chrpath/devel/chrpath.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- chrpath.spec 24 Feb 2009 07:32:16 -0000 1.6 +++ chrpath.spec 23 Jul 2009 15:27:24 -0000 1.7 @@ -1,10 +1,11 @@ Summary: Modify rpath of compiled programs Name: chrpath Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: Development/Tools URL: ftp://ftp.hungry.com/pub/hungry/chrpath/ +Patch0: chrpath-0.13-NULL-entry.patch Source0: ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -15,6 +16,7 @@ is supported. %prep %setup -q +%patch0 -p1 -b .NULL %build %configure @@ -36,8 +38,8 @@ rm -rf %{buildroot} %{_mandir}/man1/chrpath.1* %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 0.13-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Thu Jul 23 2009 Axel Thimm - 0.13-5 +- Fix last entry in .dynamic (by Christian Krause ). * Sat Sep 8 2007 Ville Skytt? - 0.13-2 - License: GPL+ From athimm at fedoraproject.org Thu Jul 23 15:27:53 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 15:27:53 +0000 (UTC) Subject: rpms/chrpath/F-10 chrpath-0.13-NULL-entry.patch, NONE, 1.1 chrpath.spec, 1.5, 1.6 Message-ID: <20090723152753.6D48B11C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/chrpath/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8708/F-10 Modified Files: chrpath.spec Added Files: chrpath-0.13-NULL-entry.patch Log Message: Fix last NULL in .dynamic section. chrpath-0.13-NULL-entry.patch: killrpath.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE chrpath-0.13-NULL-entry.patch --- diff -uNr chrpath-0.13.old/killrpath.c chrpath-0.13/killrpath.c --- chrpath-0.13.old/killrpath.c 2003-06-24 00:46:15.000000000 +0200 +++ chrpath-0.13/killrpath.c 2009-07-19 23:05:11.000000000 +0200 @@ -73,8 +73,11 @@ if ( ! elf_dynpath_tag(dyns[i].d_tag) ) dynpos++; } - for (; dynpos < i; dynpos++) + for (; dynpos < i; dynpos++) { dyns[dynpos].d_tag = DT_NULL; + dyns[dynpos].d_un.d_val = 0x0; + } + if (lseek(fd, phdr.p_offset, SEEK_SET) == -1 || write(fd, dyns, phdr.p_filesz) != (int)phdr.p_filesz) Index: chrpath.spec =================================================================== RCS file: /cvs/extras/rpms/chrpath/F-10/chrpath.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- chrpath.spec 25 Aug 2008 12:11:38 -0000 1.5 +++ chrpath.spec 23 Jul 2009 15:27:22 -0000 1.6 @@ -1,10 +1,11 @@ Summary: Modify rpath of compiled programs Name: chrpath Version: 0.13 -Release: 3%{?dist} +Release: 5%{?dist} License: GPL+ Group: Development/Tools URL: ftp://ftp.hungry.com/pub/hungry/chrpath/ +Patch0: chrpath-0.13-NULL-entry.patch Source0: ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -15,6 +16,7 @@ is supported. %prep %setup -q +%patch0 -p1 -b .NULL %build %configure @@ -36,6 +38,9 @@ rm -rf %{buildroot} %{_mandir}/man1/chrpath.1* %changelog +* Thu Jul 23 2009 Axel Thimm - 0.13-5 +- Fix last entry in .dynamic (by Christian Krause ). + * Sat Sep 8 2007 Ville Skytt? - 0.13-2 - License: GPL+ From athimm at fedoraproject.org Thu Jul 23 15:27:54 2009 From: athimm at fedoraproject.org (athimm) Date: Thu, 23 Jul 2009 15:27:54 +0000 (UTC) Subject: rpms/chrpath/F-11 chrpath-0.13-NULL-entry.patch, NONE, 1.1 chrpath.spec, 1.6, 1.7 Message-ID: <20090723152754.4783511C0093@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/chrpath/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8708/F-11 Modified Files: chrpath.spec Added Files: chrpath-0.13-NULL-entry.patch Log Message: Fix last NULL in .dynamic section. chrpath-0.13-NULL-entry.patch: killrpath.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE chrpath-0.13-NULL-entry.patch --- diff -uNr chrpath-0.13.old/killrpath.c chrpath-0.13/killrpath.c --- chrpath-0.13.old/killrpath.c 2003-06-24 00:46:15.000000000 +0200 +++ chrpath-0.13/killrpath.c 2009-07-19 23:05:11.000000000 +0200 @@ -73,8 +73,11 @@ if ( ! elf_dynpath_tag(dyns[i].d_tag) ) dynpos++; } - for (; dynpos < i; dynpos++) + for (; dynpos < i; dynpos++) { dyns[dynpos].d_tag = DT_NULL; + dyns[dynpos].d_un.d_val = 0x0; + } + if (lseek(fd, phdr.p_offset, SEEK_SET) == -1 || write(fd, dyns, phdr.p_filesz) != (int)phdr.p_filesz) Index: chrpath.spec =================================================================== RCS file: /cvs/extras/rpms/chrpath/F-11/chrpath.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- chrpath.spec 24 Feb 2009 07:32:16 -0000 1.6 +++ chrpath.spec 23 Jul 2009 15:27:23 -0000 1.7 @@ -1,10 +1,11 @@ Summary: Modify rpath of compiled programs Name: chrpath Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: Development/Tools URL: ftp://ftp.hungry.com/pub/hungry/chrpath/ +Patch0: chrpath-0.13-NULL-entry.patch Source0: ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -15,6 +16,7 @@ is supported. %prep %setup -q +%patch0 -p1 -b .NULL %build %configure @@ -36,8 +38,8 @@ rm -rf %{buildroot} %{_mandir}/man1/chrpath.1* %changelog -* Mon Feb 23 2009 Fedora Release Engineering - 0.13-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Thu Jul 23 2009 Axel Thimm - 0.13-5 +- Fix last entry in .dynamic (by Christian Krause ). * Sat Sep 8 2007 Ville Skytt? - 0.13-2 - License: GPL+ From orion at fedoraproject.org Thu Jul 23 15:30:50 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 15:30:50 +0000 (UTC) Subject: rpms/ncl/devel ncl.spec,1.19,1.20 Message-ID: <20090723153050.E108211C0093@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/ncl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10137 Modified Files: ncl.spec Log Message: * Thu Jul 23 2009 - Orion Poplawski - 5.1.1-2 - Rebuild for libdap 3.9.3 Index: ncl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/ncl.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ncl.spec 21 Jul 2009 20:13:59 -0000 1.19 +++ ncl.spec 23 Jul 2009 15:30:20 -0000 1.20 @@ -1,6 +1,6 @@ Name: ncl Version: 5.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: NCAR Command Language and NCAR Graphics Group: Applications/Engineering @@ -299,6 +299,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 - Orion Poplawski - 5.1.1-2 +- Rebuild for libdap 3.9.3 + * Mon Jul 13 2009 - Orion Poplawski - 5.1.1-1 - Update to 5.1.1 From limb at fedoraproject.org Thu Jul 23 15:33:47 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 23 Jul 2009 15:33:47 +0000 (UTC) Subject: rpms/bacula/devel .cvsignore, 1.9, 1.10 bacula-bat.desktop, 1.2, 1.3 bacula-bwxconsole.desktop, 1.2, 1.3 bacula-config.patch, 1.3, 1.4 bacula-gconsole.desktop, 1.3, 1.4 bacula-traymonitor.desktop, 1.2, 1.3 bacula-wxconsole.desktop, 1.3, 1.4 bacula.spec, 1.26, 1.27 sources, 1.8, 1.9 Message-ID: <20090723153347.F0ED011C0093@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11322 Modified Files: .cvsignore bacula-bat.desktop bacula-bwxconsole.desktop bacula-config.patch bacula-gconsole.desktop bacula-traymonitor.desktop bacula-wxconsole.desktop bacula.spec sources Log Message: Update to new upstream, 3.0.2. Put full paths in desktop files. BZ 426790. Moved console requires from sysconfdir to common BZ 505755. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 30 Apr 2009 19:20:04 -0000 1.9 +++ .cvsignore 23 Jul 2009 15:33:17 -0000 1.10 @@ -1,2 +1,2 @@ -bacula-3.0.1.tar.gz -bacula-docs-3.0.1.tar.bz2 +bacula-3.0.2.tar.gz +bacula-docs-3.0.2.tar.bz2 Index: bacula-bat.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-bat.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bat.desktop 17 Nov 2008 18:07:32 -0000 1.2 +++ bacula-bat.desktop 23 Jul 2009 15:33:17 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula Bat Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bat -c /etc/bacula/bat.conf +Exec=/usr/sbin/bat -c /etc/bacula/bat.conf Icon=bat_icon Terminal=false Type=Application Index: bacula-bwxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-bwxconsole.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bwxconsole.desktop 17 Nov 2008 18:07:33 -0000 1.2 +++ bacula-bwxconsole.desktop 23 Jul 2009 15:33:17 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bwxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/bwxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application bacula-config.patch: dird/bacula-dir.conf.in | 67 ++++++++++++++++------------------ gnome2-console/bgnome-console.conf.in | 4 +- qt-console/bat.conf.in | 4 +- stored/stored.conf.in | 6 +-- 4 files changed, 40 insertions(+), 41 deletions(-) Index: bacula-config.patch =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-config.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-config.patch 10 Dec 2008 18:59:21 -0000 1.3 +++ bacula-config.patch 23 Jul 2009 15:33:17 -0000 1.4 @@ -1,7 +1,7 @@ --- bacula-2.4.3/src/gnome2-console/bgnome-console.conf.in.orig 2008-12-10 10:12:18.000000000 -0600 +++ bacula-2.4.3/src/gnome2-console/bgnome-console.conf.in 2008-12-10 10:12:18.000000000 -0600 @@ -6 +6 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -8 +8 @@ - address = @hostname@ @@ -9,24 +9,24 @@ --- bacula-2.4.3/src/dird/bacula-dir.conf.in.orig 2008-12-10 10:17:27.000000000 -0600 +++ bacula-2.4.3/src/dird/bacula-dir.conf.in 2008-12-10 10:17:27.000000000 -0600 @@ -16 +16 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -30 +30 @@ -- Client = @hostname at -fd +- Client = @basename at -fd + Client = bacula-fd @@ -51 +51 @@ --# Client = @hostname at 2-fd +-# Client = @basename at 2-fd +# Client = bacula2-fd @@ -82 +82 @@ -- Client=@hostname at -fd +- Client=@basename at -fd + Client=bacula-fd @@ -157,2 +157,2 @@ -- Name = @hostname at -fd +- Name = @basename at -fd - Address = @hostname@ + Name = bacula-fd + Address = client.example.com @@ -172,2 +172,2 @@ --# Name = @hostname at 2-fd +-# Name = @basename at 2-fd -# Address = @hostname at 2 +# Name = bacula2-fd +# Address = client2.example.com @@ -43,40 +43,40 @@ -# Address = @hostname@ # N.B. Use a fully qualified name here +# Address = storage.example.com # N.B. Use a fully qualified name here @@ -299 +299 @@ -- Name = @hostname at -mon +- Name = @basename at -mon + Name = bacula-mon --- bacula-2.4.3/src/filed/bacula-fd.conf.in.orig 2008-12-10 10:19:12.000000000 -0600 +++ bacula-2.4.3/src/filed/bacula-fd.conf.in 2008-12-10 10:19:12.000000000 -0600 @@ -14 +14 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -23 +23 @@ -- Name = @hostname at -mon +- Name = @basename at -mon + Name = bacula-mon @@ -32 +32 @@ -- Name = @hostname at -fd +- Name = @basename at -fd + Name = bacula-fd @@ -42 +42 @@ -- director = @hostname at -dir = all, !skipped, !restored +- director = @basename at -dir = all, !skipped, !restored + director = bacula-dir = all, !skipped, !restored --- bacula-2.4.3/src/stored/bacula-sd.conf.in.orig 2008-12-10 10:21:45.000000000 -0600 +++ bacula-2.4.3/src/stored/bacula-sd.conf.in 2008-12-10 10:21:45.000000000 -0600 @@ -14 +14 @@ -- Name = @hostname at -sd +- Name = @basename at -sd + Name = bacula-sd @@ -25 +25 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -34 +34 @@ -- Name = @hostname at -mon +- Name = @basename at -mon + Name = bacula-mon @@ -228 +228 @@ -- director = @hostname at -dir = all +- director = @basename at -dir = all + director = bacula-dir = all --- bacula-2.4.3/src/wx-console/bwx-console.conf.in.orig 2008-12-10 10:22:23.000000000 -0600 +++ bacula-2.4.3/src/wx-console/bwx-console.conf.in 2008-12-10 10:22:23.000000000 -0600 @@ -6 +6 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -8 +8 @@ - address = @hostname@ @@ -84,27 +84,27 @@ --- bacula-2.4.3/src/tray-monitor/tray-monitor.conf.in.orig 2008-12-10 10:28:02.000000000 -0600 +++ bacula-2.4.3/src/tray-monitor/tray-monitor.conf.in 2008-12-10 10:28:02.000000000 -0600 @@ -6 +6 @@ -- Name = @hostname at -mon +- Name = @basename at -mon + Name = bacula-mon @@ -12,2 +12,2 @@ -- Name = @hostname at -fd +- Name = @basename at -fd - Address = @hostname@ + Name = bacula-fd + Address = client.example.com @@ -19,2 +19,2 @@ -- Name = @hostname at -sd +- Name = @basename at -sd - Address = @hostname@ + Name = bacula-sd + Address = storage.example.com @@ -26 +26 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -28 +27,0 @@ - address = @hostname@ --- bacula-2.4.3/src/qt-console/bat.conf.in.orig 2008-12-10 10:27:02.000000000 -0600 +++ bacula-2.4.3/src/qt-console/bat.conf.in 2008-12-10 10:27:02.000000000 -0600 @@ -6 +6 @@ -- Name = @hostname at -dir +- Name = @basename at -dir + Name = bacula-dir @@ -8 +8 @@ - address = @hostname@ Index: bacula-gconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-gconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-gconsole.desktop 17 Nov 2008 18:07:33 -0000 1.3 +++ bacula-gconsole.desktop 23 Jul 2009 15:33:17 -0000 1.4 @@ -4,9 +4,9 @@ Encoding=UTF-8 Name=Bacula Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bgnome-console -c /etc/bacula/bgnome-console.conf -Icon=bacula +Exec=/usr/sbin/bgnome-console -c /etc/bacula/bgnome-console.conf +Icon=bacula.png Terminal=false Type=Application -Categories=System;Application; +Categories=System;Application;Utility Index: bacula-traymonitor.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-traymonitor.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-traymonitor.desktop 17 Nov 2008 18:07:33 -0000 1.2 +++ bacula-traymonitor.desktop 23 Jul 2009 15:33:17 -0000 1.3 @@ -4,8 +4,8 @@ Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server -Exec=bacula-tray-monitor -c /etc/bacula/tray-monitor.conf -Icon=bacula-tray-monitor +Exec=/usr/sbin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf +Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility Index: bacula-wxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-wxconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-wxconsole.desktop 17 Nov 2008 18:07:33 -0000 1.3 +++ bacula-wxconsole.desktop 23 Jul 2009 15:33:17 -0000 1.4 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=wxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/wxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- bacula.spec 30 Apr 2009 19:20:04 -0000 1.26 +++ bacula.spec 23 Jul 2009 15:33:17 -0000 1.27 @@ -7,8 +7,8 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula -Version: 3.0.1 -Release: 1%{?dist} +Version: 3.0.2 +Release: 0%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -238,7 +238,7 @@ different computers. It is based on a cl %package console Summary: Bacula management console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} %description console Bacula is a set of programs that allow you to manage the backup, @@ -252,7 +252,7 @@ backup system. %package console-gnome Summary: Bacula console for the Gnome desktop environment Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-gnome @@ -265,7 +265,7 @@ This package contains the gnome version %package console-bat Summary: Bacula bat console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-bat @@ -279,7 +279,7 @@ This package contains the bat version of %package console-wxwidgets Summary: Bacula console using the wx widgets toolkit Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-wxwidgets @@ -997,6 +997,11 @@ fi %changelog +* Tue Jul 21 2009 Jon Ciesla Author: orion Update of /cvs/pkgs/rpms/dap-netcdf_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15902 Modified Files: .cvsignore dap-netcdf_handler.spec sources Log Message: * Thu Jul 23 2009 Orion Poplawski - 3.8.3-1 - Update to 3.8.3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dap-netcdf_handler/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 10 Sep 2008 16:57:56 -0000 1.9 +++ .cvsignore 23 Jul 2009 15:42:51 -0000 1.10 @@ -1 +1 @@ -netcdf_handler-3.7.9.tar.gz +netcdf_handler-3.8.3.tar.gz Index: dap-netcdf_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-netcdf_handler/devel/dap-netcdf_handler.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- dap-netcdf_handler.spec 24 Feb 2009 10:44:50 -0000 1.19 +++ dap-netcdf_handler.spec 23 Jul 2009 15:42:51 -0000 1.20 @@ -1,15 +1,16 @@ Summary: NetCDF 3 data handler for the OPeNDAP Data server Name: dap-netcdf_handler -Version: 3.7.9 -Release: 2%{?dist} +Version: 3.8.3 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/netcdf_handler-%{version}.tar.gz URL: http://www.opendap.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libdap-devel >= 3.8.0 netcdf-devel -BuildRequires: bes-devel >= 3.5.3 +BuildRequires: libdap-devel >= 3.9.3 +BuildRequires: bes-devel >= 3.7.2 +BuildRequires: netcdf-devel %description This is the netcdf data handler for our data server. It reads netcdf 3 @@ -48,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT NEWS README %changelog +* Thu Jul 23 2009 Orion Poplawski - 3.8.3-1 +- Update to 3.8.3 + * Tue Feb 24 2009 Fedora Release Engineering - 3.7.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dap-netcdf_handler/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 10 Sep 2008 16:57:56 -0000 1.9 +++ sources 23 Jul 2009 15:42:51 -0000 1.10 @@ -1 +1 @@ -3ad2f6d19eb793de96e4926dd3c31857 netcdf_handler-3.7.9.tar.gz +d974304b215ede2a6039e56d34f2230d netcdf_handler-3.8.3.tar.gz From limb at fedoraproject.org Thu Jul 23 15:45:50 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 23 Jul 2009 15:45:50 +0000 (UTC) Subject: rpms/bacula/devel bacula-director-configuration.patch,1.2,1.3 Message-ID: <20090723154550.6517C11C0093@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17165 Modified Files: bacula-director-configuration.patch Log Message: Oops. bacula-director-configuration.patch: bacula-dir.conf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: bacula-director-configuration.patch =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula-director-configuration.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-director-configuration.patch 10 Dec 2008 18:59:21 -0000 1.2 +++ bacula-director-configuration.patch 23 Jul 2009 15:45:50 -0000 1.3 @@ -1,17 +1,5 @@ ---- bacula-2.4.3/src/dird/bacula-dir.conf.in.orig 2008-12-10 08:59:18.000000000 -0600 -+++ bacula-2.4.3/src/dird/bacula-dir.conf.in 2008-12-10 08:59:18.000000000 -0600 -@@ -18 +18 @@ -- QueryFile = "@scriptdir@/query.sql" -+ QueryFile = "/etc/bacula/query.sql" -@@ -108,3 +108,2 @@ --# By default this is defined to point to the Bacula build --# directory to give a reasonable FileSet to backup to --# disk storage during initial testing. -+# This File-directive would backup your whole filesystem. -+# It is disabled by default -@@ -112 +111 @@ -- File = @BUILD_DIR@ -+ File = / -@@ -263 +262 @@ +--- bacula-3.0.0/src/dird/bacula-dir.conf.in~ 2009-04-21 11:24:12.000000000 -0500 ++++ bacula-3.0.0/src/dird/bacula-dir.conf.in 2009-04-21 11:24:12.000000000 -0500 +@@ -276 +276 @@ - append = "@working_dir@/log" = all, !skipped + append = "/var/log/bacula.log" = all, !skipped From s4504kr at fedoraproject.org Thu Jul 23 15:51:39 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 23 Jul 2009 15:51:39 +0000 (UTC) Subject: rpms/ghc-editline/F-11 ghc-editline.spec,1.3,1.4 Message-ID: <20090723155139.B46B611C0093@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19061 Modified Files: ghc-editline.spec Log Message: devel requires libedit-devel Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-11/ghc-editline.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghc-editline.spec 21 Jul 2009 18:30:13 -0000 1.3 +++ ghc-editline.spec 23 Jul 2009 15:51:09 -0000 1.4 @@ -1,13 +1,12 @@ %global pkg_name editline %global debug_package %{nil} -%global pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} %bcond_without doc %bcond_without prof -Name: ghc-editline +Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 5%{?dist} +Release: 7%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -37,9 +36,11 @@ provides a subset of the functionality o %package devel Summary: Haskell %{pkg_name} library Group: Development/Libraries +Requires: libedit-devel Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} +Requires: libedit-devel %description devel This package will contains the development files for %{name} @@ -127,6 +128,13 @@ fi %endif %Changelog +* Thu Jul 23 2009 Jens Petersen - 0.2.1.0-7 +- pkg_libdir is redundant +- devel requires libedit-devel + +* Wed Jul 22 2009 Jochen Schmitt 0.2.1.0-6 +- Rebuild for new ghc release on rawhide + * Tue Jul 21 2009 Jochen Schmitt 0.2.1.0-5 - Fix typo in %%{pkg_name} macro From s4504kr at fedoraproject.org Thu Jul 23 15:55:32 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 23 Jul 2009 15:55:32 +0000 (UTC) Subject: rpms/ghc-editline/F-10 ghc-editline.spec,1.5,1.6 Message-ID: <20090723155532.4945F11C0093@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20973 Modified Files: ghc-editline.spec Log Message: Devel requires libedit-devel Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-10/ghc-editline.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ghc-editline.spec 22 Jul 2009 17:04:38 -0000 1.5 +++ ghc-editline.spec 23 Jul 2009 15:55:32 -0000 1.6 @@ -9,7 +9,7 @@ Name: ghc-editline Version: 0.2.1.0 -Release: 5%{?dist}.2 +Release: 7%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -42,6 +42,7 @@ Group: Development/Libraries Requires: ghc = %{ghc_version} Requires(pos): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} +Requires: libedit-devel %description devel This package will contains the development files for %{name} @@ -130,6 +131,9 @@ fi %endif %Changelog +* Thu Jul 23 2009 Jochen Schmitt 0.2.1.0-7 +- Devel requires libedit-devel + * Wed Jul 22 2009 Jochen Schmitt 0.2.1.0-5.2 - Fix typo in Changelog From astokes at fedoraproject.org Thu Jul 23 16:01:29 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Thu, 23 Jul 2009 16:01:29 +0000 (UTC) Subject: rpms/sos/devel sos.spec,1.11,1.12 sources,1.7,1.8 Message-ID: <20090723160129.7A4FD11C0093@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23299 Modified Files: sos.spec sources Log Message: fixes Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/devel/sos.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sos.spec 20 Jul 2009 15:52:44 -0000 1.11 +++ sos.spec 23 Jul 2009 16:00:59 -0000 1.12 @@ -3,8 +3,8 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 13%{?dist} -Group: Application/Tools +Release: 14%{?dist} +Group: Applications/System Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot @@ -53,6 +53,14 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Thu Jul 23 2009 Adam Stokes = 1.8-14 +- resolves: rhbz512536 wrong group in spec file +- resolves: rhbz498398 A series of refactoring patches to sos +- resolves: rhbz501149 A series of refactoring patches to sos (2) +- resolves: rhbz503804 remove obsolete translation +- resolves: rhbz502455 tricking sosreport into rm -rf / +- resolves: rhbz501146 branding in fedora + * Mon Jul 20 2009 Adam Stokes = 1.8-13 - Add requirements for tar,bzip2 during minimal installs - More merges from reports against RHEL version of plugins Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 20 Jul 2009 16:05:36 -0000 1.7 +++ sources 23 Jul 2009 16:00:59 -0000 1.8 @@ -1 +1 @@ -548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz +2af6163d2475e81724408a433bc031ac sos-1.8.tar.gz From astokes at fedoraproject.org Thu Jul 23 16:02:30 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Thu, 23 Jul 2009 16:02:30 +0000 (UTC) Subject: rpms/sos/F-10 sos.spec,1.9,1.10 sources,1.8,1.9 Message-ID: <20090723160230.B5C3911C0093@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23644 Modified Files: sos.spec sources Log Message: updates Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/sos.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sos.spec 20 Jul 2009 15:36:09 -0000 1.9 +++ sos.spec 23 Jul 2009 16:02:00 -0000 1.10 @@ -3,8 +3,8 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 13%{?dist} -Group: Application/Tools +Release: 14%{?dist} +Group: Applications/System Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot @@ -53,6 +53,14 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Thu Jul 23 2009 Adam Stokes = 1.8-14 +- resolves: rhbz512536 wrong group in spec file +- resolves: rhbz498398 A series of refactoring patches to sos +- resolves: rhbz501149 A series of refactoring patches to sos (2) +- resolves: rhbz503804 remove obsolete translation +- resolves: rhbz502455 tricking sosreport into rm -rf / +- resolves: rhbz501146 branding in fedora + * Mon Jul 20 2009 Adam Stokes = 1.8-13 - Add requirements for tar,bzip2 during minimal installs - More merges from reports against RHEL version of plugins Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 20 Jul 2009 16:07:18 -0000 1.8 +++ sources 23 Jul 2009 16:02:00 -0000 1.9 @@ -1 +1 @@ -548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz +2af6163d2475e81724408a433bc031ac sos-1.8.tar.gz From astokes at fedoraproject.org Thu Jul 23 16:03:49 2009 From: astokes at fedoraproject.org (Adam Stokes) Date: Thu, 23 Jul 2009 16:03:49 +0000 (UTC) Subject: rpms/sos/F-11 sos.spec,1.11,1.12 sources,1.7,1.8 Message-ID: <20090723160349.CFF1911C0093@cvs1.fedora.phx.redhat.com> Author: astokes Update of /cvs/pkgs/rpms/sos/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24427 Modified Files: sos.spec sources Log Message: updates Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-11/sos.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sos.spec 20 Jul 2009 17:04:00 -0000 1.11 +++ sos.spec 23 Jul 2009 16:03:49 -0000 1.12 @@ -3,8 +3,8 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 13%{?dist} -Group: Application/Tools +Release: 14%{?dist} +Group: Applications/System Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot @@ -53,6 +53,14 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Thu Jul 23 2009 Adam Stokes = 1.8-14 +- resolves: rhbz512536 wrong group in spec file +- resolves: rhbz498398 A series of refactoring patches to sos +- resolves: rhbz501149 A series of refactoring patches to sos (2) +- resolves: rhbz503804 remove obsolete translation +- resolves: rhbz502455 tricking sosreport into rm -rf / +- resolves: rhbz501146 branding in fedora + * Mon Jul 20 2009 Adam Stokes = 1.8-13 - Add requirements for tar,bzip2 during minimal installs - More merges from reports against RHEL version of plugins Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sos/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 20 Jul 2009 16:06:30 -0000 1.7 +++ sources 23 Jul 2009 16:03:49 -0000 1.8 @@ -1 +1 @@ -548c53f69c7c92c58d1c0dc21df084f1 sos-1.8.tar.gz +2af6163d2475e81724408a433bc031ac sos-1.8.tar.gz From limb at fedoraproject.org Thu Jul 23 16:23:04 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 23 Jul 2009 16:23:04 +0000 (UTC) Subject: rpms/bacula/F-11 bacula-bat.desktop, 1.2, 1.3 bacula-bwxconsole.desktop, 1.2, 1.3 bacula-gconsole.desktop, 1.3, 1.4 bacula-traymonitor.desktop, 1.2, 1.3 bacula-wxconsole.desktop, 1.3, 1.4 bacula.spec, 1.24, 1.25 Message-ID: <20090723162304.8874711C0093@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv462 Modified Files: bacula-bat.desktop bacula-bwxconsole.desktop bacula-gconsole.desktop bacula-traymonitor.desktop bacula-wxconsole.desktop bacula.spec Log Message: Put full paths in desktop files. BZ 426790. Moved console requires from sysconfdir to common BZ 505755. Index: bacula-bat.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula-bat.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bat.desktop 17 Nov 2008 18:07:32 -0000 1.2 +++ bacula-bat.desktop 23 Jul 2009 16:22:34 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula Bat Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bat -c /etc/bacula/bat.conf +Exec=/usr/sbin/bat -c /etc/bacula/bat.conf Icon=bat_icon Terminal=false Type=Application Index: bacula-bwxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula-bwxconsole.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bwxconsole.desktop 17 Nov 2008 18:07:33 -0000 1.2 +++ bacula-bwxconsole.desktop 23 Jul 2009 16:22:34 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bwxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/bwxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application Index: bacula-gconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula-gconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-gconsole.desktop 17 Nov 2008 18:07:33 -0000 1.3 +++ bacula-gconsole.desktop 23 Jul 2009 16:22:34 -0000 1.4 @@ -4,9 +4,9 @@ Encoding=UTF-8 Name=Bacula Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bgnome-console -c /etc/bacula/bgnome-console.conf -Icon=bacula +Exec=/usr/sbin/bgnome-console -c /etc/bacula/bgnome-console.conf +Icon=bacula.png Terminal=false Type=Application -Categories=System;Application; +Categories=System;Application;Utility Index: bacula-traymonitor.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula-traymonitor.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-traymonitor.desktop 17 Nov 2008 18:07:33 -0000 1.2 +++ bacula-traymonitor.desktop 23 Jul 2009 16:22:34 -0000 1.3 @@ -4,8 +4,8 @@ Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server -Exec=bacula-tray-monitor -c /etc/bacula/tray-monitor.conf -Icon=bacula-tray-monitor +Exec=/usr/sbin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf +Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility Index: bacula-wxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula-wxconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-wxconsole.desktop 17 Nov 2008 18:07:33 -0000 1.3 +++ bacula-wxconsole.desktop 23 Jul 2009 16:22:34 -0000 1.4 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=wxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/wxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- bacula.spec 24 Feb 2009 03:54:47 -0000 1.24 +++ bacula.spec 23 Jul 2009 16:22:34 -0000 1.25 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 2.4.4 -Release: 3%{?dist} +Release: 4%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -238,7 +238,7 @@ different computers. It is based on a cl %package console Summary: Bacula management console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} %description console Bacula is a set of programs that allow you to manage the backup, @@ -252,7 +252,7 @@ backup system. %package console-gnome Summary: Bacula console for the Gnome desktop environment Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-gnome @@ -265,7 +265,7 @@ This package contains the gnome version %package console-bat Summary: Bacula bat console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-bat @@ -279,7 +279,7 @@ This package contains the bat version of %package console-wxwidgets Summary: Bacula console using the wx widgets toolkit Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-wxwidgets @@ -990,6 +990,10 @@ fi %changelog +* Thu Jul 23 2009 Jon Ciesla - 2.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 23 16:34:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:34:59 +0000 Subject: [pkgdb] comoonics-base-py was added for markhla Message-ID: <20090723163459.68D8510F890@bastion2.fedora.phx.redhat.com> tibbs has added Package comoonics-base-py with summary Comoonics minimum baselibraries tibbs has approved Package comoonics-base-py tibbs has added a Fedora devel branch for comoonics-base-py with an owner of markhla tibbs has approved comoonics-base-py in Fedora devel tibbs has approved Package comoonics-base-py tibbs has set commit to Approved for 107427 on comoonics-base-py (Fedora devel) tibbs has set checkout to Approved for 107427 on comoonics-base-py (Fedora devel) tibbs has set build to Approved for 107427 on comoonics-base-py (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-base-py From pkgdb at fedoraproject.org Thu Jul 23 16:35:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:35:00 +0000 Subject: [pkgdb] comoonics-base-py summary updated by tibbs Message-ID: <20090723163501.041DF10F8AB@bastion2.fedora.phx.redhat.com> tibbs set package comoonics-base-py summary to Comoonics minimum baselibraries To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-base-py From tibbs at fedoraproject.org Thu Jul 23 16:35:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:08 +0000 (UTC) Subject: rpms/comoonics-base-py - New directory Message-ID: <20090723163508.19AA211C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-base-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOS5809/rpms/comoonics-base-py Log Message: Directory /cvs/pkgs/rpms/comoonics-base-py added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:35:08 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:08 +0000 (UTC) Subject: rpms/comoonics-base-py/devel - New directory Message-ID: <20090723163508.475B211C025F@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-base-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOS5809/rpms/comoonics-base-py/devel Log Message: Directory /cvs/pkgs/rpms/comoonics-base-py/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:35:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:35:00 +0000 Subject: [pkgdb] comoonics-base-py (Fedora, devel) updated by tibbs Message-ID: <20090723163501.129EE10F8B3@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on comoonics-base-py (Fedora devel) for elcody02 tibbs approved watchcommits on comoonics-base-py (Fedora devel) for elcody02 tibbs approved commit on comoonics-base-py (Fedora devel) for elcody02 tibbs approved build on comoonics-base-py (Fedora devel) for elcody02 tibbs approved approveacls on comoonics-base-py (Fedora devel) for elcody02 To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-base-py From tibbs at fedoraproject.org Thu Jul 23 16:35:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:15 +0000 (UTC) Subject: rpms/comoonics-base-py/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163515.0263611C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-base-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOS5809/rpms/comoonics-base-py/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module comoonics-base-py --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: comoonics-base-py # $Id: Makefile,v 1.1 2009/07/23 16:35:14 tibbs Exp $ NAME := comoonics-base-py SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Thu Jul 23 16:35:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:14 +0000 (UTC) Subject: rpms/comoonics-base-py Makefile,NONE,1.1 Message-ID: <20090723163514.BB0D911C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-base-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOS5809/rpms/comoonics-base-py Added Files: Makefile Log Message: Setup of module comoonics-base-py --- NEW FILE Makefile --- # Top level Makefile for module comoonics-base-py all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 23 16:35:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:35:31 +0000 Subject: [pkgdb] eclipse-rse was added for jjohnstn Message-ID: <20090723163531.92B7310F8B0@bastion2.fedora.phx.redhat.com> tibbs has added Package eclipse-rse with summary Eclipse Remote System Explorer tibbs has approved Package eclipse-rse tibbs has added a Fedora devel branch for eclipse-rse with an owner of jjohnstn tibbs has approved eclipse-rse in Fedora devel tibbs has approved Package eclipse-rse tibbs has set commit to Approved for 107427 on eclipse-rse (Fedora devel) tibbs has set checkout to Approved for 107427 on eclipse-rse (Fedora devel) tibbs has set build to Approved for 107427 on eclipse-rse (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eclipse-rse From pkgdb at fedoraproject.org Thu Jul 23 16:35:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:35:32 +0000 Subject: [pkgdb] eclipse-rse summary updated by tibbs Message-ID: <20090723163532.815E510F8B8@bastion2.fedora.phx.redhat.com> tibbs set package eclipse-rse summary to Eclipse Remote System Explorer To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eclipse-rse From tibbs at fedoraproject.org Thu Jul 23 16:35:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:38 +0000 (UTC) Subject: rpms/eclipse-rse - New directory Message-ID: <20090723163538.1BA6411C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/eclipse-rse In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstz6126/rpms/eclipse-rse Log Message: Directory /cvs/pkgs/rpms/eclipse-rse added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:35:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:35:32 +0000 Subject: [pkgdb] eclipse-rse (Fedora, devel) updated by tibbs Message-ID: <20090723163532.8CF6C10F8BC@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on eclipse-rse (Fedora devel) for jjohnstn tibbs approved watchcommits on eclipse-rse (Fedora devel) for jjohnstn To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eclipse-rse From tibbs at fedoraproject.org Thu Jul 23 16:35:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:38 +0000 (UTC) Subject: rpms/eclipse-rse/devel - New directory Message-ID: <20090723163538.4824A11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstz6126/rpms/eclipse-rse/devel Log Message: Directory /cvs/pkgs/rpms/eclipse-rse/devel added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:35:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:44 +0000 (UTC) Subject: rpms/eclipse-rse Makefile,NONE,1.1 Message-ID: <20090723163544.3792C11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/eclipse-rse In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstz6126/rpms/eclipse-rse Added Files: Makefile Log Message: Setup of module eclipse-rse --- NEW FILE Makefile --- # Top level Makefile for module eclipse-rse all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:35:44 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:35:44 +0000 (UTC) Subject: rpms/eclipse-rse/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163544.8219011C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstz6126/rpms/eclipse-rse/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module eclipse-rse --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: eclipse-rse # $Id: Makefile,v 1.1 2009/07/23 16:35:44 tibbs Exp $ NAME := eclipse-rse SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:36:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:07 +0000 Subject: [pkgdb] verilator was added for dirjud Message-ID: <20090723163607.B8C8B10F890@bastion2.fedora.phx.redhat.com> tibbs has added Package verilator with summary A fast simulator of synthesizable Verilog HDL tibbs has approved Package verilator tibbs has added a Fedora devel branch for verilator with an owner of dirjud tibbs has approved verilator in Fedora devel tibbs has approved Package verilator tibbs has set commit to Approved for 107427 on verilator (Fedora devel) tibbs has set checkout to Approved for 107427 on verilator (Fedora devel) tibbs has set build to Approved for 107427 on verilator (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From pkgdb at fedoraproject.org Thu Jul 23 16:36:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:10 +0000 Subject: [pkgdb] verilator summary updated by tibbs Message-ID: <20090723163610.1B79110F8AC@bastion2.fedora.phx.redhat.com> tibbs set package verilator summary to A fast simulator of synthesizable Verilog HDL To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From pkgdb at fedoraproject.org Thu Jul 23 16:36:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:10 +0000 Subject: [pkgdb] verilator (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163610.269C910F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for verilator tibbs has set commit to Approved for 107427 on verilator (Fedora 11) tibbs has set checkout to Approved for 107427 on verilator (Fedora 11) tibbs has set build to Approved for 107427 on verilator (Fedora 11) tibbs approved watchbugzilla on verilator (Fedora 11) for chitlesh tibbs approved watchcommits on verilator (Fedora 11) for chitlesh tibbs approved commit on verilator (Fedora 11) for chitlesh tibbs approved build on verilator (Fedora 11) for chitlesh tibbs approved approveacls on verilator (Fedora 11) for chitlesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From pkgdb at fedoraproject.org Thu Jul 23 16:36:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:10 +0000 Subject: [pkgdb] verilator (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163610.3BB9110F8C1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for verilator tibbs has set commit to Approved for 107427 on verilator (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on verilator (Fedora EPEL 5) tibbs has set build to Approved for 107427 on verilator (Fedora EPEL 5) tibbs approved watchbugzilla on verilator (Fedora EPEL 5) for chitlesh tibbs approved watchcommits on verilator (Fedora EPEL 5) for chitlesh tibbs approved commit on verilator (Fedora EPEL 5) for chitlesh tibbs approved build on verilator (Fedora EPEL 5) for chitlesh tibbs approved approveacls on verilator (Fedora EPEL 5) for chitlesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From pkgdb at fedoraproject.org Thu Jul 23 16:36:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:10 +0000 Subject: [pkgdb] verilator (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163610.5573A10F8C5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for verilator tibbs has set commit to Approved for 107427 on verilator (Fedora 10) tibbs has set checkout to Approved for 107427 on verilator (Fedora 10) tibbs has set build to Approved for 107427 on verilator (Fedora 10) tibbs approved watchbugzilla on verilator (Fedora 10) for chitlesh tibbs approved watchcommits on verilator (Fedora 10) for chitlesh tibbs approved commit on verilator (Fedora 10) for chitlesh tibbs approved build on verilator (Fedora 10) for chitlesh tibbs approved approveacls on verilator (Fedora 10) for chitlesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From tibbs at fedoraproject.org Thu Jul 23 16:36:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:15 +0000 (UTC) Subject: rpms/verilator - New directory Message-ID: <20090723163615.1FB6C11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/verilator In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsGD6449/rpms/verilator Log Message: Directory /cvs/pkgs/rpms/verilator added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:36:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:15 +0000 (UTC) Subject: rpms/verilator/devel - New directory Message-ID: <20090723163615.3FCAF11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/verilator/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsGD6449/rpms/verilator/devel Log Message: Directory /cvs/pkgs/rpms/verilator/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:36:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:10 +0000 Subject: [pkgdb] verilator (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163610.5CF6F10F8C9@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on verilator (Fedora devel) for chitlesh tibbs approved watchcommits on verilator (Fedora devel) for chitlesh tibbs approved commit on verilator (Fedora devel) for chitlesh tibbs approved build on verilator (Fedora devel) for chitlesh tibbs approved approveacls on verilator (Fedora devel) for chitlesh To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/verilator From tibbs at fedoraproject.org Thu Jul 23 16:36:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:21 +0000 (UTC) Subject: rpms/verilator Makefile,NONE,1.1 Message-ID: <20090723163621.7806811C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/verilator In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsGD6449/rpms/verilator Added Files: Makefile Log Message: Setup of module verilator --- NEW FILE Makefile --- # Top level Makefile for module verilator all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:36:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:21 +0000 (UTC) Subject: rpms/verilator/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163621.D2E1211C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/verilator/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsGD6449/rpms/verilator/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module verilator --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: verilator # $Id: Makefile,v 1.1 2009/07/23 16:36:21 tibbs Exp $ NAME := verilator SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:36:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:36 +0000 Subject: [pkgdb] mutter was added for pbrobinson Message-ID: <20090723163636.84DB510F8A9@bastion2.fedora.phx.redhat.com> tibbs has added Package mutter with summary Window and compositing manager based on Clutter tibbs has approved Package mutter tibbs has added a Fedora devel branch for mutter with an owner of pbrobinson tibbs has approved mutter in Fedora devel tibbs has approved Package mutter tibbs has set commit to Approved for 107427 on mutter (Fedora devel) tibbs has set checkout to Approved for 107427 on mutter (Fedora devel) tibbs has set build to Approved for 107427 on mutter (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mutter From pkgdb at fedoraproject.org Thu Jul 23 16:36:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:38 +0000 Subject: [pkgdb] mutter summary updated by tibbs Message-ID: <20090723163638.1ABAB10F8CB@bastion2.fedora.phx.redhat.com> tibbs set package mutter summary to Window and compositing manager based on Clutter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mutter From pkgdb at fedoraproject.org Thu Jul 23 16:36:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:38 +0000 Subject: [pkgdb] mutter (Fedora, 11) updated by tibbs Message-ID: <20090723163638.27EF110F8CE@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on mutter (Fedora devel) for otaylor tibbs approved watchcommits on mutter (Fedora devel) for otaylor tibbs approved commit on mutter (Fedora devel) for otaylor tibbs approved build on mutter (Fedora devel) for otaylor tibbs approved approveacls on mutter (Fedora devel) for otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mutter From tibbs at fedoraproject.org Thu Jul 23 16:36:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:43 +0000 (UTC) Subject: rpms/mutter/devel - New directory Message-ID: <20090723163643.47FDD11C048A@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsvZ6877/rpms/mutter/devel Log Message: Directory /cvs/pkgs/rpms/mutter/devel added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:36:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:43 +0000 (UTC) Subject: rpms/mutter - New directory Message-ID: <20090723163643.1CD3911C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mutter In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsvZ6877/rpms/mutter Log Message: Directory /cvs/pkgs/rpms/mutter added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:36:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:50 +0000 (UTC) Subject: rpms/mutter/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163650.53F1C11C049B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsvZ6877/rpms/mutter/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module mutter --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: mutter # $Id: Makefile,v 1.1 2009/07/23 16:36:50 tibbs Exp $ NAME := mutter SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:36:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:36:38 +0000 Subject: [pkgdb] mutter (Fedora, 11) updated by tibbs Message-ID: <20090723163638.3EDD610F8D2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for mutter tibbs has set commit to Approved for 107427 on mutter (Fedora 11) tibbs has set checkout to Approved for 107427 on mutter (Fedora 11) tibbs has set build to Approved for 107427 on mutter (Fedora 11) tibbs approved watchbugzilla on mutter (Fedora 11) for otaylor tibbs approved watchcommits on mutter (Fedora 11) for otaylor tibbs approved commit on mutter (Fedora 11) for otaylor tibbs approved build on mutter (Fedora 11) for otaylor tibbs approved approveacls on mutter (Fedora 11) for otaylor To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mutter From tibbs at fedoraproject.org Thu Jul 23 16:36:50 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:36:50 +0000 (UTC) Subject: rpms/mutter Makefile,NONE,1.1 Message-ID: <20090723163650.010C211C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/mutter In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsvZ6877/rpms/mutter Added Files: Makefile Log Message: Setup of module mutter --- NEW FILE Makefile --- # Top level Makefile for module mutter all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 23 16:37:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:06 +0000 Subject: [pkgdb] rancid was added for giesen Message-ID: <20090723163706.5F85010F8DF@bastion2.fedora.phx.redhat.com> tibbs has added Package rancid with summary Really Awesome New Cisco confIg Differ tibbs has approved Package rancid tibbs has added a Fedora devel branch for rancid with an owner of giesen tibbs has approved rancid in Fedora devel tibbs has approved Package rancid tibbs has set commit to Approved for 107427 on rancid (Fedora devel) tibbs has set checkout to Approved for 107427 on rancid (Fedora devel) tibbs has set build to Approved for 107427 on rancid (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From pkgdb at fedoraproject.org Thu Jul 23 16:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:07 +0000 Subject: [pkgdb] rancid summary updated by tibbs Message-ID: <20090723163707.AD40410F8E2@bastion2.fedora.phx.redhat.com> tibbs set package rancid summary to Really Awesome New Cisco confIg Differ To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From pkgdb at fedoraproject.org Thu Jul 23 16:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:07 +0000 Subject: [pkgdb] rancid (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163707.B0CC310F8E4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for rancid tibbs has set commit to Approved for 107427 on rancid (Fedora 11) tibbs has set checkout to Approved for 107427 on rancid (Fedora 11) tibbs has set build to Approved for 107427 on rancid (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From pkgdb at fedoraproject.org Thu Jul 23 16:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:07 +0000 Subject: [pkgdb] rancid (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163707.D27FE10F8EA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for rancid tibbs has set commit to Approved for 107427 on rancid (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on rancid (Fedora EPEL 4) tibbs has set build to Approved for 107427 on rancid (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From pkgdb at fedoraproject.org Thu Jul 23 16:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:07 +0000 Subject: [pkgdb] rancid (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163707.BC20E10F8E7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for rancid tibbs has set commit to Approved for 107427 on rancid (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on rancid (Fedora EPEL 5) tibbs has set build to Approved for 107427 on rancid (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From tibbs at fedoraproject.org Thu Jul 23 16:37:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:37:14 +0000 (UTC) Subject: rpms/rancid - New directory Message-ID: <20090723163714.41B8F11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rancid In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOD7242/rpms/rancid Log Message: Directory /cvs/pkgs/rpms/rancid added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:37:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:37:14 +0000 (UTC) Subject: rpms/rancid/devel - New directory Message-ID: <20090723163714.9CD4A11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rancid/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOD7242/rpms/rancid/devel Log Message: Directory /cvs/pkgs/rpms/rancid/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:37:07 +0000 Subject: [pkgdb] rancid (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163707.DE9C810F8ED@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for rancid tibbs has set commit to Approved for 107427 on rancid (Fedora 10) tibbs has set checkout to Approved for 107427 on rancid (Fedora 10) tibbs has set build to Approved for 107427 on rancid (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rancid From tibbs at fedoraproject.org Thu Jul 23 16:37:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:37:23 +0000 (UTC) Subject: rpms/rancid Makefile,NONE,1.1 Message-ID: <20090723163723.EA24A11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rancid In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOD7242/rpms/rancid Added Files: Makefile Log Message: Setup of module rancid --- NEW FILE Makefile --- # Top level Makefile for module rancid all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:37:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:37:24 +0000 (UTC) Subject: rpms/rancid/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163724.6F60611C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/rancid/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsOD7242/rpms/rancid/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module rancid --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: rancid # $Id: Makefile,v 1.1 2009/07/23 16:37:24 tibbs Exp $ NAME := rancid SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mtasaka at fedoraproject.org Thu Jul 23 16:38:15 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 23 Jul 2009 16:38:15 +0000 (UTC) Subject: rpms/ruby/devel noautobuild,NONE,1.1 Message-ID: <20090723163815.897A811C0093@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7906 Added Files: noautobuild Log Message: wait until tk 8.5.7 is rebuilt --- NEW FILE noautobuild --- wait until tk 8.5.7 is rebuilt From pkgdb at fedoraproject.org Thu Jul 23 16:38:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:16 +0000 Subject: [pkgdb] WebShell was added for ctyler Message-ID: <20090723163816.4754010F8C6@bastion2.fedora.phx.redhat.com> tibbs has added Package WebShell with summary SSL server for web-based SSH access from browsers and mobile devices tibbs has approved Package WebShell tibbs has added a Fedora devel branch for WebShell with an owner of ctyler tibbs has approved WebShell in Fedora devel tibbs has approved Package WebShell tibbs has set commit to Approved for 107427 on WebShell (Fedora devel) tibbs has set checkout to Approved for 107427 on WebShell (Fedora devel) tibbs has set build to Approved for 107427 on WebShell (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/WebShell From pkgdb at fedoraproject.org Thu Jul 23 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:17 +0000 Subject: [pkgdb] WebShell summary updated by tibbs Message-ID: <20090723163817.1155010F8C9@bastion2.fedora.phx.redhat.com> tibbs set package WebShell summary to SSL server for web-based SSH access from browsers and mobile devices To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/WebShell From pkgdb at fedoraproject.org Thu Jul 23 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:17 +0000 Subject: [pkgdb] WebShell (Fedora, 11) updated by tibbs Message-ID: <20090723163817.1833710F8CC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for WebShell tibbs has set commit to Approved for 107427 on WebShell (Fedora 11) tibbs has set checkout to Approved for 107427 on WebShell (Fedora 11) tibbs has set build to Approved for 107427 on WebShell (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/WebShell From pkgdb at fedoraproject.org Thu Jul 23 16:38:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:17 +0000 Subject: [pkgdb] WebShell (Fedora, 11) updated by tibbs Message-ID: <20090723163817.21DDD10F8CF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for WebShell tibbs has set commit to Approved for 107427 on WebShell (Fedora 10) tibbs has set checkout to Approved for 107427 on WebShell (Fedora 10) tibbs has set build to Approved for 107427 on WebShell (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/WebShell From tibbs at fedoraproject.org Thu Jul 23 16:38:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:23 +0000 (UTC) Subject: rpms/WebShell - New directory Message-ID: <20090723163823.22A6711C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/WebShell In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsrL7993/rpms/WebShell Log Message: Directory /cvs/pkgs/rpms/WebShell added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:38:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:23 +0000 (UTC) Subject: rpms/WebShell/devel - New directory Message-ID: <20090723163823.6263311C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/WebShell/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsrL7993/rpms/WebShell/devel Log Message: Directory /cvs/pkgs/rpms/WebShell/devel added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:38:29 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:29 +0000 (UTC) Subject: rpms/WebShell Makefile,NONE,1.1 Message-ID: <20090723163829.CE4DB11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/WebShell In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsrL7993/rpms/WebShell Added Files: Makefile Log Message: Setup of module WebShell --- NEW FILE Makefile --- # Top level Makefile for module WebShell all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:38:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:30 +0000 (UTC) Subject: rpms/WebShell/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163830.16CA211C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/WebShell/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsrL7993/rpms/WebShell/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module WebShell --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: WebShell # $Id: Makefile,v 1.1 2009/07/23 16:38:29 tibbs Exp $ NAME := WebShell SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:38:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:45 +0000 Subject: [pkgdb] python-Lightbox was added for itamarjp Message-ID: <20090723163845.821BE10F8DA@bastion2.fedora.phx.redhat.com> tibbs has added Package python-Lightbox with summary Lightbox photo display widget tibbs has approved Package python-Lightbox tibbs has added a Fedora devel branch for python-Lightbox with an owner of itamarjp tibbs has approved python-Lightbox in Fedora devel tibbs has approved Package python-Lightbox tibbs has set commit to Approved for 107427 on python-Lightbox (Fedora devel) tibbs has set checkout to Approved for 107427 on python-Lightbox (Fedora devel) tibbs has set build to Approved for 107427 on python-Lightbox (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-Lightbox From pkgdb at fedoraproject.org Thu Jul 23 16:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:46 +0000 Subject: [pkgdb] python-Lightbox summary updated by tibbs Message-ID: <20090723163846.C205C10F8DC@bastion2.fedora.phx.redhat.com> tibbs set package python-Lightbox summary to Lightbox photo display widget To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-Lightbox From pkgdb at fedoraproject.org Thu Jul 23 16:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:46 +0000 Subject: [pkgdb] python-Lightbox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163846.D3CA910F8E0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-Lightbox tibbs has set commit to Approved for 107427 on python-Lightbox (Fedora 11) tibbs has set checkout to Approved for 107427 on python-Lightbox (Fedora 11) tibbs has set build to Approved for 107427 on python-Lightbox (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-Lightbox From pkgdb at fedoraproject.org Thu Jul 23 16:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:46 +0000 Subject: [pkgdb] python-Lightbox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163846.DCFEB10F8F0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-Lightbox tibbs has set commit to Approved for 107427 on python-Lightbox (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-Lightbox (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-Lightbox (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-Lightbox From tibbs at fedoraproject.org Thu Jul 23 16:38:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:56 +0000 (UTC) Subject: rpms/python-Lightbox - New directory Message-ID: <20090723163856.1CB6F11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-Lightbox In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsTO8390/rpms/python-Lightbox Log Message: Directory /cvs/pkgs/rpms/python-Lightbox added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:38:56 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:38:56 +0000 (UTC) Subject: rpms/python-Lightbox/devel - New directory Message-ID: <20090723163856.4E8CD11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-Lightbox/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsTO8390/rpms/python-Lightbox/devel Log Message: Directory /cvs/pkgs/rpms/python-Lightbox/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:38:46 +0000 Subject: [pkgdb] python-Lightbox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723163846.E731C10F8F3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-Lightbox tibbs has set commit to Approved for 107427 on python-Lightbox (Fedora 10) tibbs has set checkout to Approved for 107427 on python-Lightbox (Fedora 10) tibbs has set build to Approved for 107427 on python-Lightbox (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-Lightbox From tibbs at fedoraproject.org Thu Jul 23 16:39:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:02 +0000 (UTC) Subject: rpms/python-Lightbox Makefile,NONE,1.1 Message-ID: <20090723163902.2277411C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-Lightbox In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsTO8390/rpms/python-Lightbox Added Files: Makefile Log Message: Setup of module python-Lightbox --- NEW FILE Makefile --- # Top level Makefile for module python-Lightbox all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:39:02 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:02 +0000 (UTC) Subject: rpms/python-Lightbox/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163902.657E011C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-Lightbox/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsTO8390/rpms/python-Lightbox/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-Lightbox --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-Lightbox # $Id: Makefile,v 1.1 2009/07/23 16:39:02 tibbs Exp $ NAME := python-Lightbox SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:39:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:34 +0000 Subject: [pkgdb] bios_extract summary updated by tibbs Message-ID: <20090723163935.1185A10F8B4@bastion2.fedora.phx.redhat.com> tibbs set package bios_extract summary to Tools to extract the different submodules of common legacy BIOSes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From pkgdb at fedoraproject.org Thu Jul 23 16:39:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:33 +0000 Subject: [pkgdb] bios_extract was added for peter Message-ID: <20090723163933.DDF5110F89D@bastion2.fedora.phx.redhat.com> tibbs has added Package bios_extract with summary Tools to extract the different submodules of common legacy BIOSes tibbs has approved Package bios_extract tibbs has added a Fedora devel branch for bios_extract with an owner of peter tibbs has approved bios_extract in Fedora devel tibbs has approved Package bios_extract tibbs has set commit to Approved for 107427 on bios_extract (Fedora devel) tibbs has set checkout to Approved for 107427 on bios_extract (Fedora devel) tibbs has set build to Approved for 107427 on bios_extract (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From pkgdb at fedoraproject.org Thu Jul 23 16:39:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:35 +0000 Subject: [pkgdb] bios_extract (Fedora, 11) updated by tibbs Message-ID: <20090723163935.19F4010F8AD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for bios_extract tibbs has set commit to Approved for 107427 on bios_extract (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on bios_extract (Fedora EPEL 5) tibbs has set build to Approved for 107427 on bios_extract (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From pkgdb at fedoraproject.org Thu Jul 23 16:39:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:35 +0000 Subject: [pkgdb] bios_extract (Fedora, 11) updated by tibbs Message-ID: <20090723163935.264EE10F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 4 branch for bios_extract tibbs has set commit to Approved for 107427 on bios_extract (Fedora EPEL 4) tibbs has set checkout to Approved for 107427 on bios_extract (Fedora EPEL 4) tibbs has set build to Approved for 107427 on bios_extract (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From pkgdb at fedoraproject.org Thu Jul 23 16:39:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:35 +0000 Subject: [pkgdb] bios_extract (Fedora, 11) updated by tibbs Message-ID: <20090723163935.2DFEB10F8C2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for bios_extract tibbs has set commit to Approved for 107427 on bios_extract (Fedora 10) tibbs has set checkout to Approved for 107427 on bios_extract (Fedora 10) tibbs has set build to Approved for 107427 on bios_extract (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From tibbs at fedoraproject.org Thu Jul 23 16:39:42 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:42 +0000 (UTC) Subject: rpms/bios_extract - New directory Message-ID: <20090723163942.21F2E11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bios_extract In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstS9011/rpms/bios_extract Log Message: Directory /cvs/pkgs/rpms/bios_extract added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:39:42 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:42 +0000 (UTC) Subject: rpms/bios_extract/devel - New directory Message-ID: <20090723163942.46C6311C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bios_extract/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstS9011/rpms/bios_extract/devel Log Message: Directory /cvs/pkgs/rpms/bios_extract/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:39:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:39:35 +0000 Subject: [pkgdb] bios_extract (Fedora, 11) updated by tibbs Message-ID: <20090723163935.3C14010F8C7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for bios_extract tibbs has set commit to Approved for 107427 on bios_extract (Fedora 11) tibbs has set checkout to Approved for 107427 on bios_extract (Fedora 11) tibbs has set build to Approved for 107427 on bios_extract (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bios_extract From tibbs at fedoraproject.org Thu Jul 23 16:39:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:48 +0000 (UTC) Subject: rpms/bios_extract Makefile,NONE,1.1 Message-ID: <20090723163948.5412111C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bios_extract In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstS9011/rpms/bios_extract Added Files: Makefile Log Message: Setup of module bios_extract --- NEW FILE Makefile --- # Top level Makefile for module bios_extract all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:39:48 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:39:48 +0000 (UTC) Subject: rpms/bios_extract/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723163948.A6EE611C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bios_extract/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvstS9011/rpms/bios_extract/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module bios_extract --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: bios_extract # $Id: Makefile,v 1.1 2009/07/23 16:39:48 tibbs Exp $ NAME := bios_extract SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From mtasaka at fedoraproject.org Thu Jul 23 16:42:18 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 23 Jul 2009 16:42:18 +0000 (UTC) Subject: rpms/monafont/devel noautobuild,NONE,1.1 Message-ID: <20090723164218.62D7911C0093@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/monafont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11087 Added Files: noautobuild Log Message: Need fixing --- NEW FILE noautobuild --- Need fixing From pkgdb at fedoraproject.org Thu Jul 23 16:42:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:42:40 +0000 Subject: [pkgdb] iwak was added for jfch2222 Message-ID: <20090723164240.2DB1210F8B3@bastion2.fedora.phx.redhat.com> tibbs has added Package iwak with summary Detect the openssh keys affected by CVE-2008-0166 among authorized_keys tibbs has approved Package iwak tibbs has added a Fedora devel branch for iwak with an owner of jfch2222 tibbs has approved iwak in Fedora devel tibbs has approved Package iwak tibbs has set commit to Approved for 107427 on iwak (Fedora devel) tibbs has set checkout to Approved for 107427 on iwak (Fedora devel) tibbs has set build to Approved for 107427 on iwak (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/iwak From pkgdb at fedoraproject.org Thu Jul 23 16:42:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:42:41 +0000 Subject: [pkgdb] iwak summary updated by tibbs Message-ID: <20090723164241.3CB5B10F8B5@bastion2.fedora.phx.redhat.com> tibbs set package iwak summary to Detect the openssh keys affected by CVE-2008-0166 among authorized_keys To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/iwak From pkgdb at fedoraproject.org Thu Jul 23 16:42:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:42:41 +0000 Subject: [pkgdb] iwak (Fedora, 11) updated by tibbs Message-ID: <20090723164241.54F2810F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for iwak tibbs has set commit to Approved for 107427 on iwak (Fedora 11) tibbs has set checkout to Approved for 107427 on iwak (Fedora 11) tibbs has set build to Approved for 107427 on iwak (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/iwak From tibbs at fedoraproject.org Thu Jul 23 16:42:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:42:49 +0000 (UTC) Subject: rpms/iwak - New directory Message-ID: <20090723164249.1903E11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/iwak In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj11388/rpms/iwak Log Message: Directory /cvs/pkgs/rpms/iwak added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:42:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:42:41 +0000 Subject: [pkgdb] iwak (Fedora, 11) updated by tibbs Message-ID: <20090723164241.611E710F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for iwak tibbs has set commit to Approved for 107427 on iwak (Fedora 10) tibbs has set checkout to Approved for 107427 on iwak (Fedora 10) tibbs has set build to Approved for 107427 on iwak (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/iwak From tibbs at fedoraproject.org Thu Jul 23 16:42:49 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:42:49 +0000 (UTC) Subject: rpms/iwak/devel - New directory Message-ID: <20090723164249.4A56F11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/iwak/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj11388/rpms/iwak/devel Log Message: Directory /cvs/pkgs/rpms/iwak/devel added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:42:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:42:55 +0000 (UTC) Subject: rpms/iwak Makefile,NONE,1.1 Message-ID: <20090723164255.2D8E311C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/iwak In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj11388/rpms/iwak Added Files: Makefile Log Message: Setup of module iwak --- NEW FILE Makefile --- # Top level Makefile for module iwak all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:42:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:42:55 +0000 (UTC) Subject: rpms/iwak/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723164255.7368F11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/iwak/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsj11388/rpms/iwak/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module iwak --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: iwak # $Id: Makefile,v 1.1 2009/07/23 16:42:55 tibbs Exp $ NAME := iwak SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Thu Jul 23 16:44:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:44:26 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK - New directory Message-ID: <20090723164426.52F0D11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV12454/rpms/perl-Sys-Virt-TCK Log Message: Directory /cvs/pkgs/rpms/perl-Sys-Virt-TCK added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:44:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:44:26 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK/devel - New directory Message-ID: <20090723164426.7AE8411C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV12454/rpms/perl-Sys-Virt-TCK/devel Log Message: Directory /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 23 16:44:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:44:19 +0000 Subject: [pkgdb] perl-Sys-Virt-TCK was added for berrange Message-ID: <20090723164419.4F92710F8AD@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Sys-Virt-TCK with summary libvirt Technology Compatability Kit tibbs has approved Package perl-Sys-Virt-TCK tibbs has added a Fedora devel branch for perl-Sys-Virt-TCK with an owner of berrange tibbs has approved perl-Sys-Virt-TCK in Fedora devel tibbs has approved Package perl-Sys-Virt-TCK tibbs has set commit to Approved for 107427 on perl-Sys-Virt-TCK (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Sys-Virt-TCK (Fedora devel) tibbs has set build to Approved for 107427 on perl-Sys-Virt-TCK (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt-TCK From jakub at fedoraproject.org Thu Jul 23 16:44:31 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Thu, 23 Jul 2009 16:44:31 +0000 (UTC) Subject: rpms/gcc/devel gcc44-unique-object.patch, NONE, 1.1 .cvsignore, 1.279, 1.280 gcc.spec, 1.55, 1.56 sources, 1.282, 1.283 Message-ID: <20090723164431.4B1BE11C0093@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12132 Modified Files: .cvsignore gcc.spec sources Added Files: gcc44-unique-object.patch Log Message: 4.4.1-2 gcc44-unique-object.patch: config.in | 6 ++++++ config/elfos.h | 49 +++++++++++++++++++++++++++++++------------------ configure | 38 ++++++++++++++++++++++++++++++++++++++ configure.ac | 6 ++++++ 4 files changed, 81 insertions(+), 18 deletions(-) --- NEW FILE gcc44-unique-object.patch --- 2009-07-22 Jason Merrill * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use gnu_unique_object type if available. * configure.ac: Test for it. * configure, config.in: Regenerate. --- gcc/config/elfos.h.jj 2009-04-14 15:51:24.000000000 +0200 +++ gcc/config/elfos.h 2009-07-23 09:25:46.000000000 +0200 @@ -289,24 +289,37 @@ see the files COPYING3 and COPYING.RUNTI /* Write the extra assembler code needed to declare an object properly. */ -#define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \ - do \ - { \ - HOST_WIDE_INT size; \ - \ - ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \ - \ - size_directive_output = 0; \ - if (!flag_inhibit_size_directive \ - && (DECL) && DECL_SIZE (DECL)) \ - { \ - size_directive_output = 1; \ - size = int_size_in_bytes (TREE_TYPE (DECL)); \ - ASM_OUTPUT_SIZE_DIRECTIVE (FILE, NAME, size); \ - } \ - \ - ASM_OUTPUT_LABEL (FILE, NAME); \ - } \ +#ifdef HAVE_GAS_GNU_UNIQUE_OBJECT +#define USE_GNU_UNIQUE_OBJECT 1 +#else +#define USE_GNU_UNIQUE_OBJECT 0 +#endif + +#define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \ + do \ + { \ + HOST_WIDE_INT size; \ + \ + /* For template static data member instantiations or \ + inline fn local statics, use gnu_unique_object so that \ + they will be combined even under RTLD_LOCAL. */ \ + if (USE_GNU_UNIQUE_OBJECT \ + && !DECL_ARTIFICIAL (DECL) && DECL_ONE_ONLY (DECL)) \ + ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "gnu_unique_object"); \ + else \ + ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \ + \ + size_directive_output = 0; \ + if (!flag_inhibit_size_directive \ + && (DECL) && DECL_SIZE (DECL)) \ + { \ + size_directive_output = 1; \ + size = int_size_in_bytes (TREE_TYPE (DECL)); \ + ASM_OUTPUT_SIZE_DIRECTIVE (FILE, NAME, size); \ + } \ + \ + ASM_OUTPUT_LABEL (FILE, NAME); \ + } \ while (0) /* Output the size directive for a decl in rest_of_decl_compilation --- gcc/configure.ac.jj 2009-03-28 09:53:59.000000000 +0100 +++ gcc/configure.ac 2009-07-23 09:25:46.000000000 +0200 @@ -3299,6 +3299,12 @@ gcc_GAS_CHECK_FEATURE([.lcomm with align [AC_DEFINE(HAVE_GAS_LCOMM_WITH_ALIGNMENT, 1, [Define if your assembler supports .lcomm with an alignment field.])]) +gcc_GAS_CHECK_FEATURE([gnu_unique_object], gcc_cv_as_gnu_unique_object, + [elf,2,19,52],, +[.type foo, @gnu_unique_object],, +[AC_DEFINE(HAVE_GAS_GNU_UNIQUE_OBJECT, 1, + [Define if your assembler supports @gnu_unique_object.])]) + AC_CACHE_CHECK([assembler for tolerance to line number 0], [gcc_cv_as_line_zero], [gcc_cv_as_line_zero=no --- gcc/configure.jj 2009-03-28 09:53:37.000000000 +0100 +++ gcc/configure 2009-07-23 09:26:52.000000000 +0200 @@ -24288,6 +24288,44 @@ _ACEOF fi +echo "$as_me:$LINENO: checking assembler for gnu_unique_object" >&5 +echo $ECHO_N "checking assembler for gnu_unique_object... $ECHO_C" >&6 +if test "${gcc_cv_as_gnu_unique_object+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + gcc_cv_as_gnu_unique_object=no + if test $in_tree_gas = yes; then + if test $in_tree_gas_is_elf = yes \ + && test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 19 \) \* 1000 + 52` + then gcc_cv_as_gnu_unique_object=yes +fi + elif test x$gcc_cv_as != x; then + echo '.type foo, @gnu_unique_object' > conftest.s + if { ac_try='$gcc_cv_as -o conftest.o conftest.s >&5' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } + then + gcc_cv_as_gnu_unique_object=yes + else + echo "configure: failed program was" >&5 + cat conftest.s >&5 + fi + rm -f conftest.o conftest.s + fi +fi +echo "$as_me:$LINENO: result: $gcc_cv_as_gnu_unique_object" >&5 +echo "${ECHO_T}$gcc_cv_as_gnu_unique_object" >&6 +if test $gcc_cv_as_gnu_unique_object = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_GAS_GNU_UNIQUE_OBJECT 1 +_ACEOF + +fi + echo "$as_me:$LINENO: checking assembler for tolerance to line number 0" >&5 echo $ECHO_N "checking assembler for tolerance to line number 0... $ECHO_C" >&6 if test "${gcc_cv_as_line_zero+set}" = set; then --- gcc/config.in.jj 2009-02-16 22:48:20.000000000 +0100 +++ gcc/config.in 2009-07-23 09:26:56.000000000 +0200 @@ -845,6 +845,12 @@ #endif +/* Define if your assembler supports @gnu_unique_object. */ +#ifndef USED_FOR_TARGET +#undef HAVE_GAS_GNU_UNIQUE_OBJECT +#endif + + /* Define if your assembler and linker support .hidden. */ #undef HAVE_GAS_HIDDEN Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.279 retrieving revision 1.280 diff -u -p -r1.279 -r1.280 --- .cvsignore 22 Jul 2009 12:32:06 -0000 1.279 +++ .cvsignore 23 Jul 2009 16:44:00 -0000 1.280 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.1-20090722.tar.bz2 +gcc-4.4.1-20090723.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- gcc.spec 22 Jul 2009 12:32:06 -0000 1.55 +++ gcc.spec 23 Jul 2009 16:44:00 -0000 1.56 @@ -1,9 +1,9 @@ -%global DATE 20090722 -%global SVNREV 149928 +%global DATE 20090723 +%global SVNREV 150015 %global gcc_version 4.4.1 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 1 +%global gcc_release 2 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -64,7 +64,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version # Need binutils which support --hash-style=gnu >= 2.17.50.0.2-7 # Need binutils which support mffgpr and mftgpr >= 2.17.50.0.2-8 # Need binutils which support --build-id >= 2.17.50.0.17-3 -BuildRequires: binutils >= 2.17.50.0.17-3 +# Need binutils which support %gnu_unique_object >= 2.19.51.0.14 +BuildRequires: binutils >= 2.19.51.0.14 # While gcc doesn't include statically linked binaries, during testing # -static is used several times. BuildRequires: glibc-static @@ -115,7 +116,8 @@ Requires: cpp = %{version}-%{release} # Need binutils that supports --hash-style=gnu # Need binutils that support mffgpr/mftgpr # Need binutils that support --build-id -Requires: binutils >= 2.17.50.0.17-3 +# Need binutils which support %gnu_unique_object +Requires: binutils >= 2.19.51.0.14 # Make sure gdb will understand DW_FORM_strp Conflicts: gdb < 5.1-2 Requires: glibc-devel >= 2.2.90-12 @@ -160,6 +162,7 @@ Patch28: gcc44-pr38757.patch Patch29: gcc44-libstdc++-docs.patch Patch30: gcc44-rh503816-1.patch Patch31: gcc44-rh503816-2.patch +Patch32: gcc44-unique-object.patch Patch1000: fastjar-0.97-segfault.patch @@ -469,6 +472,7 @@ which are required to compile with the G %endif %patch30 -p0 -b .rh503816-1~ %patch31 -p0 -b .rh503816-2~ +%patch32 -p0 -b .unique-object~ # This testcase doesn't compile. rm libjava/testsuite/libjava.lang/PR35020* @@ -1807,6 +1811,13 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Thu Jul 23 2009 Jakub Jelinek 4.4.1-3 +- update from gcc-4_4-branch + - PRs rtl-optimization/40710, target/40832, tree-optimization/40321 +- use STB_GNU_UNIQUE symbols for inline fn local statics and + template static data members +- use strcmp for C++ typeinfo comparisons instead of pointer comparison + * Wed Jul 22 2009 Jakub Jelinek 4.4.1-1 - update from gcc-4_4-branch - GCC 4.4.1 release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.282 retrieving revision 1.283 diff -u -p -r1.282 -r1.283 --- sources 22 Jul 2009 12:32:06 -0000 1.282 +++ sources 23 Jul 2009 16:44:00 -0000 1.283 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -ffed957089f57c21981662f8f2c1e08d gcc-4.4.1-20090722.tar.bz2 +efd4e9fff96d944bf2b878aabe6a75f9 gcc-4.4.1-20090723.tar.bz2 From tibbs at fedoraproject.org Thu Jul 23 16:44:34 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:44:34 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK Makefile,NONE,1.1 Message-ID: <20090723164434.EC6AA11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV12454/rpms/perl-Sys-Virt-TCK Added Files: Makefile Log Message: Setup of module perl-Sys-Virt-TCK --- NEW FILE Makefile --- # Top level Makefile for module perl-Sys-Virt-TCK all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:44:35 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:44:35 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723164435.5049711C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsV12454/rpms/perl-Sys-Virt-TCK/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Sys-Virt-TCK --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Sys-Virt-TCK # $Id: Makefile,v 1.1 2009/07/23 16:44:35 tibbs Exp $ NAME := perl-Sys-Virt-TCK SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From schwab at fedoraproject.org Thu Jul 23 16:45:26 2009 From: schwab at fedoraproject.org (schwab) Date: Thu, 23 Jul 2009 16:45:26 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.274, 1.275 glibc-fedora.patch, 1.307, 1.308 glibc.spec, 1.399, 1.400 import.log, 1.17, 1.18 sources, 1.299, 1.300 Message-ID: <20090723164526.E88A411C0093@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12840/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- .cvsignore 22 Jul 2009 13:05:10 -0000 1.274 +++ .cvsignore 23 Jul 2009 16:45:23 -0000 1.275 @@ -1,2 +1,2 @@ -glibc-2.10-187-gae612b0-fedora.tar.bz2 -glibc-2.10-187-gae612b0.tar.bz2 +glibc-2.10-193-g9b6bf8a-fedora.tar.bz2 +glibc-2.10-193-g9b6bf8a.tar.bz2 glibc-fedora.patch: ChangeLog | 35 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 59 files changed, 787 insertions(+), 467 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.307 retrieving revision 1.308 diff -u -p -r1.307 -r1.308 --- glibc-fedora.patch 22 Jul 2009 13:05:10 -0000 1.307 +++ glibc-fedora.patch 23 Jul 2009 16:45:23 -0000 1.308 @@ -1,6 +1,9 @@ ---- glibc-2.10-187-gae612b0/ChangeLog -+++ glibc-2.10.90-5/ChangeLog -@@ -1,3 +1,8 @@ +--- glibc-2.10-193-g9b6bf8a/ChangeLog ++++ glibc-2.10.90-6/ChangeLog +@@ -15,6 +15,11 @@ + * sysdeps/generic/ldsodefs.h (struct rtld_global): The map element in + the unique symbol hash table should not be const. + +2009-07-22 Jakub Jelinek + + * Makeconfig (ASFLAGS): Append $(sysdep-ASFLAGS). @@ -9,7 +12,7 @@ 2009-07-21 Ulrich Drepper * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups. Remove -@@ -263,6 +268,16 @@ +@@ -280,6 +285,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -26,7 +29,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8661,6 +8676,13 @@ +@@ -8678,6 +8693,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -40,7 +43,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -8956,6 +8978,10 @@ +@@ -8973,6 +8995,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -51,7 +54,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -10213,6 +10239,15 @@ +@@ -10230,6 +10256,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -67,8 +70,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-187-gae612b0/ChangeLog.15 -+++ glibc-2.10.90-5/ChangeLog.15 +--- glibc-2.10-193-g9b6bf8a/ChangeLog.15 ++++ glibc-2.10.90-6/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -134,8 +137,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-187-gae612b0/ChangeLog.16 -+++ glibc-2.10.90-5/ChangeLog.16 +--- glibc-2.10-193-g9b6bf8a/ChangeLog.16 ++++ glibc-2.10.90-6/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -307,8 +310,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-187-gae612b0/Makeconfig -+++ glibc-2.10.90-5/Makeconfig +--- glibc-2.10-193-g9b6bf8a/Makeconfig ++++ glibc-2.10.90-6/Makeconfig @@ -780,12 +780,12 @@ endif # The assembler can generate debug information too. ifndef ASFLAGS @@ -325,8 +328,8 @@ ifndef BUILD_CC BUILD_CC = $(CC) ---- glibc-2.10-187-gae612b0/csu/Makefile -+++ glibc-2.10.90-5/csu/Makefile +--- glibc-2.10-193-g9b6bf8a/csu/Makefile ++++ glibc-2.10.90-6/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -337,8 +340,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-187-gae612b0/csu/elf-init.c -+++ glibc-2.10.90-5/csu/elf-init.c +--- glibc-2.10-193-g9b6bf8a/csu/elf-init.c ++++ glibc-2.10.90-6/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -363,8 +366,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-187-gae612b0/debug/tst-chk1.c -+++ glibc-2.10.90-5/debug/tst-chk1.c +--- glibc-2.10-193-g9b6bf8a/debug/tst-chk1.c ++++ glibc-2.10.90-6/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -393,8 +396,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-187-gae612b0/elf/ldconfig.c -+++ glibc-2.10.90-5/elf/ldconfig.c +--- glibc-2.10-193-g9b6bf8a/elf/ldconfig.c ++++ glibc-2.10.90-6/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -476,8 +479,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-187-gae612b0/elf/tst-stackguard1.c -+++ glibc-2.10.90-5/elf/tst-stackguard1.c +--- glibc-2.10-193-g9b6bf8a/elf/tst-stackguard1.c ++++ glibc-2.10.90-6/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -502,16 +505,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-187-gae612b0/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-5/include/bits/stdlib-ldbl.h +--- glibc-2.10-193-g9b6bf8a/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-6/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-187-gae612b0/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-5/include/bits/wchar-ldbl.h +--- glibc-2.10-193-g9b6bf8a/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-6/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-187-gae612b0/include/features.h -+++ glibc-2.10.90-5/include/features.h +--- glibc-2.10-193-g9b6bf8a/include/features.h ++++ glibc-2.10.90-6/include/features.h @@ -299,8 +299,13 @@ #endif @@ -528,8 +531,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-187-gae612b0/intl/locale.alias -+++ glibc-2.10.90-5/intl/locale.alias +--- glibc-2.10-193-g9b6bf8a/intl/locale.alias ++++ glibc-2.10.90-6/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -539,8 +542,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-187-gae612b0/libio/stdio.h -+++ glibc-2.10.90-5/libio/stdio.h +--- glibc-2.10-193-g9b6bf8a/libio/stdio.h ++++ glibc-2.10.90-6/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -554,8 +557,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-187-gae612b0/locale/iso-4217.def -+++ glibc-2.10.90-5/locale/iso-4217.def +--- glibc-2.10-193-g9b6bf8a/locale/iso-4217.def ++++ glibc-2.10.90-6/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -647,8 +650,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-187-gae612b0/locale/programs/locarchive.c -+++ glibc-2.10.90-5/locale/programs/locarchive.c +--- glibc-2.10-193-g9b6bf8a/locale/programs/locarchive.c ++++ glibc-2.10.90-6/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -680,8 +683,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-187-gae612b0/localedata/Makefile -+++ glibc-2.10.90-5/localedata/Makefile +--- glibc-2.10-193-g9b6bf8a/localedata/Makefile ++++ glibc-2.10.90-6/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -690,8 +693,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-187-gae612b0/localedata/SUPPORTED -+++ glibc-2.10.90-5/localedata/SUPPORTED +--- glibc-2.10-193-g9b6bf8a/localedata/SUPPORTED ++++ glibc-2.10.90-6/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -733,8 +736,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-187-gae612b0/localedata/locales/cy_GB -+++ glibc-2.10.90-5/localedata/locales/cy_GB +--- glibc-2.10-193-g9b6bf8a/localedata/locales/cy_GB ++++ glibc-2.10.90-6/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -749,8 +752,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-187-gae612b0/localedata/locales/en_GB -+++ glibc-2.10.90-5/localedata/locales/en_GB +--- glibc-2.10-193-g9b6bf8a/localedata/locales/en_GB ++++ glibc-2.10.90-6/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -762,8 +765,8 @@ date_fmt "/ / " ---- glibc-2.10-187-gae612b0/localedata/locales/no_NO -+++ glibc-2.10.90-5/localedata/locales/no_NO +--- glibc-2.10-193-g9b6bf8a/localedata/locales/no_NO ++++ glibc-2.10.90-6/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -834,8 +837,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-187-gae612b0/localedata/locales/zh_TW -+++ glibc-2.10.90-5/localedata/locales/zh_TW +--- glibc-2.10-193-g9b6bf8a/localedata/locales/zh_TW ++++ glibc-2.10.90-6/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -863,8 +866,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-187-gae612b0/malloc/mcheck.c -+++ glibc-2.10.90-5/malloc/mcheck.c +--- glibc-2.10-193-g9b6bf8a/malloc/mcheck.c ++++ glibc-2.10.90-6/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -940,8 +943,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-187-gae612b0/manual/libc.texinfo -+++ glibc-2.10.90-5/manual/libc.texinfo +--- glibc-2.10-193-g9b6bf8a/manual/libc.texinfo ++++ glibc-2.10.90-6/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -951,8 +954,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-187-gae612b0/misc/sys/cdefs.h -+++ glibc-2.10.90-5/misc/sys/cdefs.h +--- glibc-2.10-193-g9b6bf8a/misc/sys/cdefs.h ++++ glibc-2.10.90-6/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -996,16 +999,16 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-187-gae612b0/nis/nss -+++ glibc-2.10.90-5/nis/nss +--- glibc-2.10-193-g9b6bf8a/nis/nss ++++ glibc-2.10.90-6/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-187-gae612b0/nptl/ChangeLog -+++ glibc-2.10.90-5/nptl/ChangeLog +--- glibc-2.10-193-g9b6bf8a/nptl/ChangeLog ++++ glibc-2.10.90-6/nptl/ChangeLog @@ -3590,6 +3590,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -1046,8 +1049,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-187-gae612b0/nptl/Makefile -+++ glibc-2.10.90-5/nptl/Makefile +--- glibc-2.10-193-g9b6bf8a/nptl/Makefile ++++ glibc-2.10.90-6/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1080,8 +1083,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-187-gae612b0/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-5/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-193-g9b6bf8a/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-6/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1090,8 +1093,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-187-gae612b0/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-5/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-193-g9b6bf8a/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-6/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1099,8 +1102,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-187-gae612b0/nptl/tst-stackguard1.c -+++ glibc-2.10.90-5/nptl/tst-stackguard1.c +--- glibc-2.10-193-g9b6bf8a/nptl/tst-stackguard1.c ++++ glibc-2.10.90-6/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1125,8 +1128,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-187-gae612b0/nscd/nscd.conf -+++ glibc-2.10.90-5/nscd/nscd.conf +--- glibc-2.10-193-g9b6bf8a/nscd/nscd.conf ++++ glibc-2.10.90-6/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1136,8 +1139,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-187-gae612b0/nscd/nscd.init -+++ glibc-2.10.90-5/nscd/nscd.init +--- glibc-2.10-193-g9b6bf8a/nscd/nscd.init ++++ glibc-2.10.90-6/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1194,8 +1197,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-187-gae612b0/posix/Makefile -+++ glibc-2.10.90-5/posix/Makefile +--- glibc-2.10-193-g9b6bf8a/posix/Makefile ++++ glibc-2.10.90-6/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1216,8 +1219,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-187-gae612b0/posix/getconf.speclist.h -+++ glibc-2.10.90-5/posix/getconf.speclist.h +--- glibc-2.10-193-g9b6bf8a/posix/getconf.speclist.h ++++ glibc-2.10.90-6/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1258,8 +1261,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-187-gae612b0/streams/Makefile -+++ glibc-2.10.90-5/streams/Makefile +--- glibc-2.10-193-g9b6bf8a/streams/Makefile ++++ glibc-2.10.90-6/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1269,8 +1272,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-187-gae612b0/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-5/sysdeps/generic/dl-cache.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-6/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1286,8 +1289,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-187-gae612b0/sysdeps/i386/Makefile -+++ glibc-2.10.90-5/sysdeps/i386/Makefile +--- glibc-2.10-193-g9b6bf8a/sysdeps/i386/Makefile ++++ glibc-2.10.90-6/sysdeps/i386/Makefile @@ -2,6 +2,8 @@ # Every i386 port in use uses gas syntax (I think). asm-CPPFLAGS += -DGAS_SYNTAX @@ -1312,8 +1315,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-187-gae612b0/sysdeps/ia64/Makefile -+++ glibc-2.10.90-5/sysdeps/ia64/Makefile +--- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/Makefile ++++ glibc-2.10.90-6/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1325,8 +1328,8 @@ endif endif ---- glibc-2.10-187-gae612b0/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-5/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-6/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1678,8 +1681,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-187-gae612b0/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-5/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-6/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1765,8 +1768,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-5/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-6/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1784,8 +1787,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-5/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-6/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1794,8 +1797,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-187-gae612b0/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-5/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-6/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1813,8 +1816,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-187-gae612b0/sysdeps/unix/nice.c -+++ glibc-2.10.90-5/sysdeps/unix/nice.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/nice.c ++++ glibc-2.10.90-6/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1829,8 +1832,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1846,8 +1849,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1895,8 +1898,8 @@ } else #endif ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1939,8 +1942,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1959,8 +1962,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -2021,8 +2024,8 @@ + } while (0) + +#include_next ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2055,29 +2058,29 @@ + } while (0) + #include_next ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2103,8 +2106,8 @@ struct netlink_res { ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2114,8 +2117,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2161,8 +2164,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-187-gae612b0/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-5/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2181,8 +2184,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-187-gae612b0/timezone/zic.c -+++ glibc-2.10.90-5/timezone/zic.c +--- glibc-2.10-193-g9b6bf8a/timezone/zic.c ++++ glibc-2.10.90-6/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.399 retrieving revision 1.400 diff -u -p -r1.399 -r1.400 --- glibc.spec 23 Jul 2009 14:07:14 -0000 1.399 +++ glibc.spec 23 Jul 2009 16:45:24 -0000 1.400 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-187-gae612b0 +%define glibcsrcdir glibc-2.10-193-g9b6bf8a %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 6 +Release: 7 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -317,8 +317,14 @@ GCC="gcc -m64" GXX="g++ -m64" %endif -#BuildFlags="$BuildFlags -DNDEBUG=1 -fasynchronous-unwind-tables" BuildFlags="$BuildFlags -fasynchronous-unwind-tables" +# Add -DNDEBUG unless using a prerelease +case %{version} in + *.*.9[0-9]*) ;; + *) + BuildFlags="$BuildFlags -DNDEBUG" + ;; +esac EnableKernel="--enable-kernel=%{enablekernel}" echo "$GCC" > Gcc AddOns=`echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\|powerpc-cpu\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d'` @@ -1031,6 +1037,10 @@ rm -f *.filelist* %endif %changelog +* Thu Jul 23 2009 Andreas Schwab - 2.10.90-7 +- Update from master. +- Build with -DNDEBUG unless using a prerelease. + * Thu Jul 23 2009 Andreas Schwab - 2.10.90-6 - Rebuilt with binutils-2.19.51.0.14-29.fc12 to fix static binaries Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- import.log 22 Jul 2009 13:05:11 -0000 1.17 +++ import.log 23 Jul 2009 16:45:25 -0000 1.18 @@ -15,3 +15,4 @@ glibc-2_9_90-16:HEAD:glibc-2.9.90-16.src glibc-2_10_90-1:HEAD:glibc-2.10.90-1.src.rpm:1246030924 glibc-2_10_90-4:HEAD:glibc-2.10.90-4.src.rpm:1248096214 glibc-2_10_90-5:HEAD:glibc-2.10.90-5.src.rpm:1248267823 +glibc-2_10_90-7:HEAD:glibc-2.10.90-7.src.rpm:1248367427 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.299 retrieving revision 1.300 diff -u -p -r1.299 -r1.300 --- sources 22 Jul 2009 13:05:11 -0000 1.299 +++ sources 23 Jul 2009 16:45:25 -0000 1.300 @@ -1,2 +1,2 @@ -53b6215a18e3c8f48f401d2dbd28c484 glibc-2.10-187-gae612b0-fedora.tar.bz2 -2ca111876cafe2b8701e27bc9d9f9c97 glibc-2.10-187-gae612b0.tar.bz2 +bc45a5ed4138df8172ff8f2e913c8fef glibc-2.10-193-g9b6bf8a-fedora.tar.bz2 +40eb6793214d03b536f18c20783dc761 glibc-2.10-193-g9b6bf8a.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 16:45:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:45:47 +0000 Subject: [pkgdb] ovirt-server was added for sseago Message-ID: <20090723164547.729C410F897@bastion2.fedora.phx.redhat.com> tibbs has added Package ovirt-server with summary An open cross-platform virtualization management system tibbs has approved Package ovirt-server tibbs has added a Fedora devel branch for ovirt-server with an owner of sseago tibbs has approved ovirt-server in Fedora devel tibbs has approved Package ovirt-server tibbs has set commit to Approved for 107427 on ovirt-server (Fedora devel) tibbs has set checkout to Approved for 107427 on ovirt-server (Fedora devel) tibbs has set build to Approved for 107427 on ovirt-server (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ovirt-server From pkgdb at fedoraproject.org Thu Jul 23 16:45:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:45:48 +0000 Subject: [pkgdb] ovirt-server summary updated by tibbs Message-ID: <20090723164548.37A5410F8AB@bastion2.fedora.phx.redhat.com> tibbs set package ovirt-server summary to An open cross-platform virtualization management system To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ovirt-server From pkgdb at fedoraproject.org Thu Jul 23 16:45:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:45:48 +0000 Subject: [pkgdb] ovirt-server (Fedora, 11) updated by tibbs Message-ID: <20090723164548.4028610F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ovirt-server tibbs has set commit to Approved for 107427 on ovirt-server (Fedora 11) tibbs has set checkout to Approved for 107427 on ovirt-server (Fedora 11) tibbs has set build to Approved for 107427 on ovirt-server (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ovirt-server From tibbs at fedoraproject.org Thu Jul 23 16:45:57 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:45:57 +0000 (UTC) Subject: rpms/ovirt-server - New directory Message-ID: <20090723164557.1D07511C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ovirt-server In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsk13552/rpms/ovirt-server Log Message: Directory /cvs/pkgs/rpms/ovirt-server added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:45:57 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:45:57 +0000 (UTC) Subject: rpms/ovirt-server/devel - New directory Message-ID: <20090723164557.53FF511C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ovirt-server/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsk13552/rpms/ovirt-server/devel Log Message: Directory /cvs/pkgs/rpms/ovirt-server/devel added to the repository From tibbs at fedoraproject.org Thu Jul 23 16:46:03 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:46:03 +0000 (UTC) Subject: rpms/ovirt-server Makefile,NONE,1.1 Message-ID: <20090723164603.6569B11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ovirt-server In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsk13552/rpms/ovirt-server Added Files: Makefile Log Message: Setup of module ovirt-server --- NEW FILE Makefile --- # Top level Makefile for module ovirt-server all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 23 16:46:03 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 23 Jul 2009 16:46:03 +0000 (UTC) Subject: rpms/ovirt-server/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090723164603.C7D8F11C0093@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ovirt-server/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsk13552/rpms/ovirt-server/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ovirt-server --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ovirt-server # $Id: Makefile,v 1.1 2009/07/23 16:46:03 tibbs Exp $ NAME := ovirt-server SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 23 16:47:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:47:15 +0000 Subject: [pkgdb] kobo (Fedora EPEL, 5) updated by tibbs Message-ID: <20090723164715.3DF7F10F897@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for kobo tibbs has set commit to Approved for 107427 on kobo (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on kobo (Fedora EPEL 5) tibbs has set build to Approved for 107427 on kobo (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kobo From peter at fedoraproject.org Thu Jul 23 16:51:34 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 16:51:34 +0000 (UTC) Subject: rpms/bios_extract/devel bios_extract.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723165134.435EC11C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/bios_extract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16416/devel Modified Files: .cvsignore sources Added Files: bios_extract.spec import.log Log Message: initial commit --- NEW FILE bios_extract.spec --- %define git_commit 17ca1c5e6a8df6b5663e899504d197862c286d1e %define git_commit_date 20090713 Name: bios_extract Version: 0 Release: 0.2.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System License: GPLv2+ URL: http://cgit.freedesktop.org/~libv/bios_extract Source0: http://cgit.freedesktop.org/~libv/bios_extract/snapshot/%{name}-%{git_commit}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description Tools to extract the different submodules of common legacy bioses. %prep %setup -q -n %{name}-%{git_commit} sed -i s/^CFLAGS.*$// Makefile %build CFLAGS="%{optflags}" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -p -m 0755 -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -p -m 0755 -D bcpvpd $RPM_BUILD_ROOT%{_bindir}/bcpvpd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_bindir}/bcpvpd %changelog * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. * Wed Jul 22 2009 Peter Lemenkov 0-0.1.20090713git - Initial package for Fedora --- NEW FILE import.log --- bios_extract-0-0_2_20090713git_fc11:HEAD:bios_extract-0-0.2.20090713git.fc11.src.rpm:1248367822 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:48 -0000 1.1 +++ .cvsignore 23 Jul 2009 16:51:04 -0000 1.2 @@ -0,0 +1 @@ +bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:48 -0000 1.1 +++ sources 23 Jul 2009 16:51:04 -0000 1.2 @@ -0,0 +1 @@ +538704606cbd27a85a0f2aaa74592862 bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 16:52:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:52:13 +0000 Subject: [pkgdb] libcompizconfig: leigh123linux has requested commit Message-ID: <20090723165213.A7CF810F897@bastion2.fedora.phx.redhat.com> leigh123linux has requested the commit acl on libcompizconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 16:52:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:52:15 +0000 Subject: [pkgdb] libcompizconfig: leigh123linux has requested watchbugzilla Message-ID: <20090723165215.2BD3610F8AB@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on libcompizconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 16:52:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:52:23 +0000 Subject: [pkgdb] libcompizconfig: leigh123linux has given up watchbugzilla Message-ID: <20090723165223.C6AF710F8B2@bastion2.fedora.phx.redhat.com> leigh123linux has given up the watchbugzilla acl on libcompizconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 16:52:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:52:26 +0000 Subject: [pkgdb] libcompizconfig: leigh123linux has requested watchbugzilla Message-ID: <20090723165226.6BC7810F8B3@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on libcompizconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 16:52:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:52:30 +0000 Subject: [pkgdb] libcompizconfig: leigh123linux has requested watchcommits Message-ID: <20090723165230.9AFCC10F8B5@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchcommits acl on libcompizconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 16:53:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:53:19 +0000 Subject: [pkgdb] compizconfig-backend-gconf: leigh123linux has requested watchbugzilla Message-ID: <20090723165319.88D7C10F897@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on compizconfig-backend-gconf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From pkgdb at fedoraproject.org Thu Jul 23 16:53:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:53:21 +0000 Subject: [pkgdb] compizconfig-backend-gconf: leigh123linux has requested commit Message-ID: <20090723165321.BB16310F8A9@bastion2.fedora.phx.redhat.com> leigh123linux has requested the commit acl on compizconfig-backend-gconf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From pkgdb at fedoraproject.org Thu Jul 23 16:53:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:53:23 +0000 Subject: [pkgdb] compizconfig-backend-gconf: leigh123linux has requested watchcommits Message-ID: <20090723165324.0463010F8AD@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchcommits acl on compizconfig-backend-gconf (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From limb at fedoraproject.org Thu Jul 23 16:53:40 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Thu, 23 Jul 2009 16:53:40 +0000 (UTC) Subject: rpms/bacula/F-10 bacula-bat.desktop, 1.2, 1.3 bacula-bwxconsole.desktop, 1.2, 1.3 bacula-gconsole.desktop, 1.3, 1.4 bacula-traymonitor.desktop, 1.2, 1.3 bacula-wxconsole.desktop, 1.3, 1.4 bacula.spec, 1.15, 1.16 Message-ID: <20090723165340.DF98D11C0093@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17514 Modified Files: bacula-bat.desktop bacula-bwxconsole.desktop bacula-gconsole.desktop bacula-traymonitor.desktop bacula-wxconsole.desktop bacula.spec Log Message: Put full paths in desktop files. BZ 426790. Moved console requires from sysconfdir to common BZ 505755. Index: bacula-bat.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula-bat.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bat.desktop 19 Nov 2008 13:30:26 -0000 1.2 +++ bacula-bat.desktop 23 Jul 2009 16:53:40 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula Bat Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bat -c /etc/bacula/bat.conf +Exec=/usr/sbin/bat -c /etc/bacula/bat.conf Icon=bat_icon Terminal=false Type=Application Index: bacula-bwxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula-bwxconsole.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-bwxconsole.desktop 19 Nov 2008 13:30:26 -0000 1.2 +++ bacula-bwxconsole.desktop 23 Jul 2009 16:53:40 -0000 1.3 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bwxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/bwxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application Index: bacula-gconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula-gconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-gconsole.desktop 19 Nov 2008 13:30:26 -0000 1.3 +++ bacula-gconsole.desktop 23 Jul 2009 16:53:40 -0000 1.4 @@ -4,9 +4,9 @@ Encoding=UTF-8 Name=Bacula Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=bgnome-console -c /etc/bacula/bgnome-console.conf -Icon=bacula +Exec=/usr/sbin/bgnome-console -c /etc/bacula/bgnome-console.conf +Icon=bacula.png Terminal=false Type=Application -Categories=System;Application; +Categories=System;Application;Utility Index: bacula-traymonitor.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula-traymonitor.desktop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bacula-traymonitor.desktop 19 Nov 2008 13:30:26 -0000 1.2 +++ bacula-traymonitor.desktop 23 Jul 2009 16:53:40 -0000 1.3 @@ -4,8 +4,8 @@ Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server -Exec=bacula-tray-monitor -c /etc/bacula/tray-monitor.conf -Icon=bacula-tray-monitor +Exec=/usr/sbin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf +Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility Index: bacula-wxconsole.desktop =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula-wxconsole.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bacula-wxconsole.desktop 19 Nov 2008 13:30:26 -0000 1.3 +++ bacula-wxconsole.desktop 23 Jul 2009 16:53:40 -0000 1.4 @@ -4,7 +4,7 @@ Encoding=UTF-8 Name=Bacula WX Console GenericName=Backup Management Console Comment=Control your Bacula Server -Exec=wxconsole -c /etc/bacula/bwxconsole.conf +Exec=/usr/sbin/wxconsole -c /etc/bacula/bwxconsole.conf Icon=wxwin16x16 Terminal=false Type=Application Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- bacula.spec 6 Jan 2009 15:15:38 -0000 1.15 +++ bacula.spec 23 Jul 2009 16:53:40 -0000 1.16 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 2.4.4 -Release: 1%{?dist} +Release: 4%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -238,7 +238,7 @@ different computers. It is based on a cl %package console Summary: Bacula management console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} %description console Bacula is a set of programs that allow you to manage the backup, @@ -252,7 +252,7 @@ backup system. %package console-gnome Summary: Bacula console for the Gnome desktop environment Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-gnome @@ -265,7 +265,7 @@ This package contains the gnome version %package console-bat Summary: Bacula bat console Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-bat @@ -279,7 +279,7 @@ This package contains the bat version of %package console-wxwidgets Summary: Bacula console using the wx widgets toolkit Group: System Environment/Daemons -Requires: bacula-sysconfdir = %{version}-%{release} +Requires: bacula-common = %{version}-%{release} Requires: usermode %description console-wxwidgets @@ -990,6 +990,16 @@ fi %changelog +* Thu Jul 23 2009 Jon Ciesla - 2.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Jan 23 2009 Jon Ciesla Author: pbrobinson Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17172/devel Modified Files: .cvsignore sources Added Files: import.log mutter.spec Log Message: - Initial import --- NEW FILE import.log --- mutter-2_27_1-2_fc11:HEAD:mutter-2.27.1-2.fc11.src.rpm:1248367758 --- NEW FILE mutter.spec --- Name: mutter Version: 2.27.1 Release: 2%{?dist} Summary: Window and compositing manager based on Clutter Group: User Interface/Desktops License: GPLv2+ URL: http://git.gnome.org/cgit/mutter Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel BuildRequires: pango-devel BuildRequires: startup-notification-devel BuildRequires: gtk2-devel BuildRequires: pkgconfig BuildRequires: GConf2-devel BuildRequires: gobject-introspection-devel BuildRequires: gir-repository-devel BuildRequires: libSM-devel BuildRequires: libX11-devel BuildRequires: libXdamage-devel BuildRequires: libXext-devel BuildRequires: libXrandr-devel BuildRequires: libXrender-devel BuildRequires: libXcursor-devel BuildRequires: libXcomposite-devel BuildRequires: zenity BuildRequires: intltool BuildRequires: gnome-doc-utils BuildRequires: desktop-file-utils Requires: control-center-filesystem Requires: startup-notification Requires: GConf2 Requires: dbus-x11 Requires: zenity %description Mutter is a window and compositing manager that displays and manages your desktop via OpenGL. Mutter combines a sophisticated display engine using the Clutter toolkit with solid window-management logic inherited from the Metacity window manager. While Mutter can be used stand-alone, it is primarily intended to be used as the display core of a larger system such as gnome-shell or Moblin. For this reason, Mutter is very extensible via plugins, which are used both to add fancy visual effects and to rework the window management behaviors to meet the needs of the environment. %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk-doc %description devel Header files and libraries for developing Mutter plugins. Also includes utilities for testing Metacity/Mutter themes. %prep %setup -q %build %configure --with-clutter --disable-static SHOULD_HAVE_DEFINED="HAVE_SM HAVE_XINERAMA HAVE_XFREE_XINERAMA HAVE_SHAPE HAVE_RANDR HAVE_STARTUP_NOTIFICATION HAVE_COMPOSITE_EXTENSION" for I in $SHOULD_HAVE_DEFINED; do if ! grep -q "define $I" config.h; then echo "$I was not defined in config.h" grep "$I" config.h exit 1 else echo "$I was defined as it should have been" grep "$I" config.h fi done make %{?_smp_mflags} V=1 %install rm -rf %{buildroot} export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=$RPM_BUILD_ROOT unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL #Remove libtool archives. rm -rf %{buildroot}/%{_libdir}/*.la %find_lang %{name} # Mutter contains a .desktop file so we just need to validate it desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop %clean rm -rf %{buildroot} %pre if [ "$1" -gt 1 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/mutter.schemas \ > /dev/null || : fi %preun if [ "$1" -gt 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule \ %{_sysconfdir}/gconf/schemas/mutter.schemas \ > /dev/null || : fi %post /sbin/ldconfig export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule \ %{_sysconfdir}/gconf/schemas/mutter.schemas \ > /dev/null || : %postun -p /sbin/ldconfig %files -f %{name}.lang %defattr(-,root,root,-) %doc README AUTHORS COPYING NEWS HACKING doc/theme-format.txt %doc %{_mandir}/man1/mutter.1.gz %doc %{_mandir}/man1/mutter-message.1.gz %{_bindir}/mutter %{_bindir}/mutter-message %{_datadir}/applications/*.desktop %{_datadir}/gnome/wm-properties/mutter-wm.desktop %{_sysconfdir}/gconf/schemas/mutter.schemas %{_datadir}/mutter %{_libdir}/lib*.so.* %{_libdir}/mutter/ %files devel %defattr(-,root,root,-) %{_bindir}/mutter-theme-viewer %{_bindir}/mutter-window-demo %{_includedir}/* %{_libdir}/lib*.so %{_libdir}/pkgconfig/* %doc %{_mandir}/man1/mutter-theme-viewer.1.gz %doc %{_mandir}/man1/mutter-window-demo.1.gz %changelog * Sat Jul 18 2009 Peter Robinson 2.27.1-2 - Updates from review request * Fri Jul 17 2009 Peter Robinson 2.27.1-1 - Update to official 2.27.1 and review updates * Thu Jun 18 2009 Peter Robinson 2.27.0-0.2 - Updates from initial reviews * Thu Jun 18 2009 Peter Robinson 2.27.0-0.1 - Initial packaging Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mutter/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:36:49 -0000 1.1 +++ .cvsignore 23 Jul 2009 16:53:14 -0000 1.2 @@ -0,0 +1 @@ +mutter-2.27.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mutter/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:36:50 -0000 1.1 +++ sources 23 Jul 2009 16:53:14 -0000 1.2 @@ -0,0 +1 @@ +973f59241bb1554bc046bd0ac4aea564 mutter-2.27.1.tar.bz2 From berrange at fedoraproject.org Thu Jul 23 16:53:48 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Thu, 23 Jul 2009 16:53:48 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK/devel perl-Sys-Virt-TCK.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723165348.272EA11C0093@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17412 Modified Files: .cvsignore sources Added Files: perl-Sys-Virt-TCK.spec Log Message: Initial import after review (rhbz #513253) --- NEW FILE perl-Sys-Virt-TCK.spec --- # Automatically generated by perl-Sys-Virt-TCK.spec.PL %define perlvendorlib %(perl -e 'use Config; print $Config{installvendorlib}') %define perlvendorprefix %(perl -e 'use Config; print $Config{vendorprefix}') %define perlvendorman1 %{perlvendorprefix}/share/man/man1 %define perlvendorman3 %{perlvendorprefix}/share/man/man3 %define appname Sys-Virt-TCK Summary: Sys::Virt::TCK - libvirt Technology Compatibility Kit Name: perl-%{appname} Version: 0.1.0 Release: 3%{dist} License: GPLv2 or Artistic Group: Development/Tools Source: http://libvirt.org/sources/tck/%{appname}-%{version}.tar.gz Url: http://libvirt.org/ BuildRoot: %{_tmppath}/%{appname}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: libvirt >= 0.6.2 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: perl(accessors) BuildRequires: perl(App::Prove) BuildRequires: perl(Config::Record) BuildRequires: perl(Cwd) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Copy) BuildRequires: perl(File::Path) BuildRequires: perl(LWP::UserAgent) BuildRequires: perl(IO::String) BuildRequires: perl(IO::Uncompress::Gunzip) BuildRequires: perl(IO::Uncompress::Bunzip2) BuildRequires: perl(Module::Build) BuildRequires: perl(TAP::Formatter::HTML) BuildRequires: perl(TAP::Harness) BuildRequires: perl(TAP::Harness::Archive) BuildRequires: perl(Test::Builder) BuildRequires: perl(Test::More) BuildRequires: perl(Sub::Uplevel) BuildRequires: perl(Sys::Virt) >= 0.2.0 BuildRequires: perl(XML::Twig) BuildRequires: perl(XML::Writer) BuildRequires: perl(XML::XPath) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) BuildArchitectures: noarch %description Sys::Virt::TCK provides an integration test suite for validating correct operation of libvirt drivers with underlying virtualization technology. %prep %setup -q -n %{appname}-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 \ --install_path conf=%{_sysconfdir}/libvirt-tck \ --install_path pkgdata=%{_datadir}/libvirt-tck/tests find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %__install -m 0755 -d $RPM_BUILD_ROOT%{_localstatedir}/cache/libvirt-tck %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) #%doc AUTHORS %doc LICENSE %doc README #%doc INSTALL %dir %{_sysconfdir}/libvirt-tck %config(noreplace) %{_sysconfdir}/libvirt-tck/default.cfg %{_bindir}/libvirt-tck %dir %{_datadir}/libvirt-tck %{_datadir}/libvirt-tck/* %{perlvendorman1}/* #%{perlvendorman3}/* %{perlvendorlib}/Sys/Virt/TCK.pm %{perlvendorlib}/Sys/Virt/TCK/ %dir %{_localstatedir}/cache/libvirt-tck %changelog * Thu Jul 23 2009 Daniel P. Berrange - 0.1.0-3 - Add disttag, remove extrarelease, add Perl module compat, add missing BRs * Wed Jul 22 2009 Daniel P. Berrange - 0.1.0-2 - Fix license field * Wed Jul 22 2009 Daniel P. Berrange - 0.1.0-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:44:35 -0000 1.1 +++ .cvsignore 23 Jul 2009 16:53:17 -0000 1.2 @@ -0,0 +1,4 @@ +Sys-Virt-TCK-0.1.0.tar.gz +.build*.log +noarch +*.src.rpm Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:44:35 -0000 1.1 +++ sources 23 Jul 2009 16:53:17 -0000 1.2 @@ -0,0 +1 @@ +1acffc328fb126bafd95fa3ddb00890c Sys-Virt-TCK-0.1.0.tar.gz From pkgdb at fedoraproject.org Thu Jul 23 16:53:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:53:49 +0000 Subject: [pkgdb] compizconfig-backend-kconfig: leigh123linux has requested watchbugzilla Message-ID: <20090723165349.9798A10F8B5@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on compizconfig-backend-kconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 16:53:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:53:54 +0000 Subject: [pkgdb] compizconfig-backend-kconfig: leigh123linux has requested watchcommits Message-ID: <20090723165354.5574710F8B9@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchcommits acl on compizconfig-backend-kconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From peter at fedoraproject.org Thu Jul 23 16:54:00 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 16:54:00 +0000 (UTC) Subject: rpms/bios_extract/F-10 bios_extract.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723165400.852D611C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/bios_extract/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17488/F-10 Modified Files: .cvsignore sources Added Files: bios_extract.spec import.log Log Message: initial commit --- NEW FILE bios_extract.spec --- %define git_commit 17ca1c5e6a8df6b5663e899504d197862c286d1e %define git_commit_date 20090713 Name: bios_extract Version: 0 Release: 0.2.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System License: GPLv2+ URL: http://cgit.freedesktop.org/~libv/bios_extract Source0: http://cgit.freedesktop.org/~libv/bios_extract/snapshot/%{name}-%{git_commit}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description Tools to extract the different submodules of common legacy bioses. %prep %setup -q -n %{name}-%{git_commit} sed -i s/^CFLAGS.*$// Makefile %build CFLAGS="%{optflags}" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -p -m 0755 -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -p -m 0755 -D bcpvpd $RPM_BUILD_ROOT%{_bindir}/bcpvpd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_bindir}/bcpvpd %changelog * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. * Wed Jul 22 2009 Peter Lemenkov 0-0.1.20090713git - Initial package for Fedora --- NEW FILE import.log --- bios_extract-0-0_2_20090713git_fc11:F-10:bios_extract-0-0.2.20090713git.fc11.src.rpm:1248367938 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:48 -0000 1.1 +++ .cvsignore 23 Jul 2009 16:53:30 -0000 1.2 @@ -0,0 +1 @@ +bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:48 -0000 1.1 +++ sources 23 Jul 2009 16:53:30 -0000 1.2 @@ -0,0 +1 @@ +538704606cbd27a85a0f2aaa74592862 bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 16:54:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:54:00 +0000 Subject: [pkgdb] compizconfig-backend-kconfig: leigh123linux has requested commit Message-ID: <20090723165400.BD26410F8B2@bastion2.fedora.phx.redhat.com> leigh123linux has requested the commit acl on compizconfig-backend-kconfig (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From peter at fedoraproject.org Thu Jul 23 16:55:09 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 16:55:09 +0000 (UTC) Subject: rpms/bios_extract/F-11 bios_extract.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723165509.E58BF11C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/bios_extract/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18574/F-11 Modified Files: .cvsignore sources Added Files: bios_extract.spec import.log Log Message: initial commit --- NEW FILE bios_extract.spec --- %define git_commit 17ca1c5e6a8df6b5663e899504d197862c286d1e %define git_commit_date 20090713 Name: bios_extract Version: 0 Release: 0.2.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System License: GPLv2+ URL: http://cgit.freedesktop.org/~libv/bios_extract Source0: http://cgit.freedesktop.org/~libv/bios_extract/snapshot/%{name}-%{git_commit}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description Tools to extract the different submodules of common legacy bioses. %prep %setup -q -n %{name}-%{git_commit} sed -i s/^CFLAGS.*$// Makefile %build CFLAGS="%{optflags}" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -p -m 0755 -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -p -m 0755 -D bcpvpd $RPM_BUILD_ROOT%{_bindir}/bcpvpd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_bindir}/bcpvpd %changelog * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. * Wed Jul 22 2009 Peter Lemenkov 0-0.1.20090713git - Initial package for Fedora --- NEW FILE import.log --- bios_extract-0-0_2_20090713git_fc11:F-11:bios_extract-0-0.2.20090713git.fc11.src.rpm:1248368082 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:48 -0000 1.1 +++ .cvsignore 23 Jul 2009 16:55:09 -0000 1.2 @@ -0,0 +1 @@ +bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:48 -0000 1.1 +++ sources 23 Jul 2009 16:55:09 -0000 1.2 @@ -0,0 +1 @@ +538704606cbd27a85a0f2aaa74592862 bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 16:55:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:55:26 +0000 Subject: [pkgdb] compizconfig-python: leigh123linux has requested watchbugzilla Message-ID: <20090723165526.6288B10F897@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on compizconfig-python (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 16:55:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:55:28 +0000 Subject: [pkgdb] compizconfig-python: leigh123linux has requested watchcommits Message-ID: <20090723165528.34BFA10F8AC@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchcommits acl on compizconfig-python (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 16:55:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:55:30 +0000 Subject: [pkgdb] compizconfig-python: leigh123linux has requested commit Message-ID: <20090723165530.9FFEF10F8B3@bastion2.fedora.phx.redhat.com> leigh123linux has requested the commit acl on compizconfig-python (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 16:56:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:56:18 +0000 Subject: [pkgdb] ccsm: leigh123linux has requested watchbugzilla Message-ID: <20090723165618.A9CB410F8AC@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchbugzilla acl on ccsm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:56:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:56:20 +0000 Subject: [pkgdb] ccsm: leigh123linux has requested watchcommits Message-ID: <20090723165620.D3E4010F8B0@bastion2.fedora.phx.redhat.com> leigh123linux has requested the watchcommits acl on ccsm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:56:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:56:22 +0000 Subject: [pkgdb] ccsm: leigh123linux has requested commit Message-ID: <20090723165622.C0F1110F8B4@bastion2.fedora.phx.redhat.com> leigh123linux has requested the commit acl on ccsm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:59:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:59:15 +0000 Subject: [pkgdb] ccsm had acl change status Message-ID: <20090723165915.BD40110F89D@bastion2.fedora.phx.redhat.com> izhar has set the watchbugzilla acl on ccsm (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:59:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:59:15 +0000 Subject: [pkgdb] ccsm had acl change status Message-ID: <20090723165915.C9DB010F8AB@bastion2.fedora.phx.redhat.com> izhar has set the watchcommits acl on ccsm (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:59:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:59:17 +0000 Subject: [pkgdb] ccsm had acl change status Message-ID: <20090723165917.BA03210F8B0@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on ccsm (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 16:59:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 16:59:23 +0000 Subject: [pkgdb] ccsm had acl change status Message-ID: <20090723165923.67EC910F8B2@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on ccsm (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccsm From pkgdb at fedoraproject.org Thu Jul 23 17:00:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:00:18 +0000 Subject: [pkgdb] compizconfig-python had acl change status Message-ID: <20090723170018.77AFF10F89D@bastion2.fedora.phx.redhat.com> izhar has set the watchbugzilla acl on compizconfig-python (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 17:00:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:00:22 +0000 Subject: [pkgdb] compizconfig-python had acl change status Message-ID: <20090723170022.6A04210F8AC@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on compizconfig-python (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 17:00:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:00:23 +0000 Subject: [pkgdb] compizconfig-python had acl change status Message-ID: <20090723170023.4BE3910F8B2@bastion2.fedora.phx.redhat.com> izhar has set the watchcommits acl on compizconfig-python (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 17:00:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:00:27 +0000 Subject: [pkgdb] compizconfig-python had acl change status Message-ID: <20090723170027.B5DF410F86A@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on compizconfig-python (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-python From pkgdb at fedoraproject.org Thu Jul 23 17:01:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:04 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170105.1E1EC10F89D@bastion2.fedora.phx.redhat.com> izhar has set the watchbugzilla acl on compizconfig-backend-kconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:09 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170109.4F5E210F8B0@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on compizconfig-backend-kconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:10 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170111.0705910F8B3@bastion2.fedora.phx.redhat.com> izhar has set the watchcommits acl on compizconfig-backend-kconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:12 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170112.B20D110F856@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on compizconfig-backend-kconfig (Fedora devel) to Approved for izhar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:14 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170114.C143210F8B6@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on compizconfig-backend-kconfig (Fedora devel) to Approved for izhar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:16 +0000 Subject: [pkgdb] compizconfig-backend-kconfig had acl change status Message-ID: <20090723170116.EBC8A10F8BB@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on compizconfig-backend-kconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-kconfig From pkgdb at fedoraproject.org Thu Jul 23 17:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:58 +0000 Subject: [pkgdb] compizconfig-backend-gconf had acl change status Message-ID: <20090723170158.4FC9B10F8B0@bastion2.fedora.phx.redhat.com> izhar has set the watchbugzilla acl on compizconfig-backend-gconf (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From pkgdb at fedoraproject.org Thu Jul 23 17:01:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:01:59 +0000 Subject: [pkgdb] compizconfig-backend-gconf had acl change status Message-ID: <20090723170200.0830C10F8B3@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on compizconfig-backend-gconf (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From pkgdb at fedoraproject.org Thu Jul 23 17:02:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:02 +0000 Subject: [pkgdb] compizconfig-backend-gconf had acl change status Message-ID: <20090723170203.0636C10F8B4@bastion2.fedora.phx.redhat.com> izhar has set the watchcommits acl on compizconfig-backend-gconf (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From pkgdb at fedoraproject.org Thu Jul 23 17:02:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:06 +0000 Subject: [pkgdb] compizconfig-backend-gconf had acl change status Message-ID: <20090723170207.1025210F8B8@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on compizconfig-backend-gconf (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compizconfig-backend-gconf From peter at fedoraproject.org Thu Jul 23 17:02:05 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 17:02:05 +0000 (UTC) Subject: rpms/bios_extract/EL-5 bios_extract.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723170205.0720B11C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/bios_extract/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21561/EL-5 Modified Files: .cvsignore sources Added Files: bios_extract.spec import.log Log Message: initial commit --- NEW FILE bios_extract.spec --- %define git_commit 17ca1c5e6a8df6b5663e899504d197862c286d1e %define git_commit_date 20090713 Name: bios_extract Version: 0 Release: 0.2.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System License: GPLv2+ URL: http://cgit.freedesktop.org/~libv/bios_extract Source0: http://cgit.freedesktop.org/~libv/bios_extract/snapshot/%{name}-%{git_commit}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description Tools to extract the different submodules of common legacy bioses. %prep %setup -q -n %{name}-%{git_commit} sed -i s/^CFLAGS.*$// Makefile %build CFLAGS="%{optflags}" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -p -m 0755 -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -p -m 0755 -D bcpvpd $RPM_BUILD_ROOT%{_bindir}/bcpvpd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_bindir}/bcpvpd %changelog * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. * Wed Jul 22 2009 Peter Lemenkov 0-0.1.20090713git - Initial package for Fedora --- NEW FILE import.log --- bios_extract-0-0_2_20090713git_fc11:EL-5:bios_extract-0-0.2.20090713git.fc11.src.rpm:1248368427 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:48 -0000 1.1 +++ .cvsignore 23 Jul 2009 17:02:03 -0000 1.2 @@ -0,0 +1 @@ +bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:48 -0000 1.1 +++ sources 23 Jul 2009 17:02:04 -0000 1.2 @@ -0,0 +1 @@ +538704606cbd27a85a0f2aaa74592862 bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 23 17:02:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:46 +0000 Subject: [pkgdb] libcompizconfig had acl change status Message-ID: <20090723170247.0D2DB10F8BB@bastion2.fedora.phx.redhat.com> izhar has set the watchbugzilla acl on libcompizconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 17:02:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:49 +0000 Subject: [pkgdb] libcompizconfig had acl change status Message-ID: <20090723170250.1FD4110F8BF@bastion2.fedora.phx.redhat.com> izhar has set the approveacls acl on libcompizconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 17:02:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:51 +0000 Subject: [pkgdb] libcompizconfig had acl change status Message-ID: <20090723170252.5E56710F8AD@bastion2.fedora.phx.redhat.com> izhar has set the commit acl on libcompizconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From pkgdb at fedoraproject.org Thu Jul 23 17:02:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 17:02:52 +0000 Subject: [pkgdb] libcompizconfig had acl change status Message-ID: <20090723170253.677AC10F8BA@bastion2.fedora.phx.redhat.com> izhar has set the watchcommits acl on libcompizconfig (Fedora devel) to Approved for leigh123linux To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libcompizconfig From peter at fedoraproject.org Thu Jul 23 17:03:39 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 17:03:39 +0000 (UTC) Subject: rpms/bios_extract/EL-4 bios_extract.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723170339.7683511C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/bios_extract/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22432/EL-4 Modified Files: .cvsignore sources Added Files: bios_extract.spec import.log Log Message: initial commit --- NEW FILE bios_extract.spec --- %define git_commit 17ca1c5e6a8df6b5663e899504d197862c286d1e %define git_commit_date 20090713 Name: bios_extract Version: 0 Release: 0.2.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System License: GPLv2+ URL: http://cgit.freedesktop.org/~libv/bios_extract Source0: http://cgit.freedesktop.org/~libv/bios_extract/snapshot/%{name}-%{git_commit}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %description Tools to extract the different submodules of common legacy bioses. %prep %setup -q -n %{name}-%{git_commit} sed -i s/^CFLAGS.*$// Makefile %build CFLAGS="%{optflags}" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -p -m 0755 -D %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} install -p -m 0755 -D bcpvpd $RPM_BUILD_ROOT%{_bindir}/bcpvpd %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc README %{_bindir}/%{name} %{_bindir}/bcpvpd %changelog * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. * Wed Jul 22 2009 Peter Lemenkov 0-0.1.20090713git - Initial package for Fedora --- NEW FILE import.log --- bios_extract-0-0_2_20090713git_fc11:EL-4:bios_extract-0-0.2.20090713git.fc11.src.rpm:1248368568 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/EL-4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:48 -0000 1.1 +++ .cvsignore 23 Jul 2009 17:03:35 -0000 1.2 @@ -0,0 +1 @@ +bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/EL-4/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:48 -0000 1.1 +++ sources 23 Jul 2009 17:03:36 -0000 1.2 @@ -0,0 +1 @@ +538704606cbd27a85a0f2aaa74592862 bios_extract-17ca1c5e6a8df6b5663e899504d197862c286d1e.tar.bz2 From berrange at fedoraproject.org Thu Jul 23 17:04:42 2009 From: berrange at fedoraproject.org (Daniel P. Berrange) Date: Thu, 23 Jul 2009 17:04:42 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK/F-11 perl-Sys-Virt-TCK.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723170442.DC61C11C0093@cvs1.fedora.phx.redhat.com> Author: berrange Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23283 Modified Files: .cvsignore sources Added Files: perl-Sys-Virt-TCK.spec Log Message: Initial import after review (rhbz #513253) --- NEW FILE perl-Sys-Virt-TCK.spec --- # Automatically generated by perl-Sys-Virt-TCK.spec.PL %define perlvendorlib %(perl -e 'use Config; print $Config{installvendorlib}') %define perlvendorprefix %(perl -e 'use Config; print $Config{vendorprefix}') %define perlvendorman1 %{perlvendorprefix}/share/man/man1 %define perlvendorman3 %{perlvendorprefix}/share/man/man3 %define appname Sys-Virt-TCK Summary: Sys::Virt::TCK - libvirt Technology Compatibility Kit Name: perl-%{appname} Version: 0.1.0 Release: 3%{dist} License: GPLv2 or Artistic Group: Development/Tools Source: http://libvirt.org/sources/tck/%{appname}-%{version}.tar.gz Url: http://libvirt.org/ BuildRoot: %{_tmppath}/%{appname}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: libvirt >= 0.6.2 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildRequires: perl(accessors) BuildRequires: perl(App::Prove) BuildRequires: perl(Config::Record) BuildRequires: perl(Cwd) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Copy) BuildRequires: perl(File::Path) BuildRequires: perl(LWP::UserAgent) BuildRequires: perl(IO::String) BuildRequires: perl(IO::Uncompress::Gunzip) BuildRequires: perl(IO::Uncompress::Bunzip2) BuildRequires: perl(Module::Build) BuildRequires: perl(TAP::Formatter::HTML) BuildRequires: perl(TAP::Harness) BuildRequires: perl(TAP::Harness::Archive) BuildRequires: perl(Test::Builder) BuildRequires: perl(Test::More) BuildRequires: perl(Sub::Uplevel) BuildRequires: perl(Sys::Virt) >= 0.2.0 BuildRequires: perl(XML::Twig) BuildRequires: perl(XML::Writer) BuildRequires: perl(XML::XPath) BuildRequires: perl(Test::Pod) BuildRequires: perl(Test::Pod::Coverage) BuildArchitectures: noarch %description Sys::Virt::TCK provides an integration test suite for validating correct operation of libvirt drivers with underlying virtualization technology. %prep %setup -q -n %{appname}-%{version} %build %{__perl} Build.PL installdirs=vendor ./Build %install rm -rf $RPM_BUILD_ROOT ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 \ --install_path conf=%{_sysconfdir}/libvirt-tck \ --install_path pkgdata=%{_datadir}/libvirt-tck/tests find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %__install -m 0755 -d $RPM_BUILD_ROOT%{_localstatedir}/cache/libvirt-tck %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) #%doc AUTHORS %doc LICENSE %doc README #%doc INSTALL %dir %{_sysconfdir}/libvirt-tck %config(noreplace) %{_sysconfdir}/libvirt-tck/default.cfg %{_bindir}/libvirt-tck %dir %{_datadir}/libvirt-tck %{_datadir}/libvirt-tck/* %{perlvendorman1}/* #%{perlvendorman3}/* %{perlvendorlib}/Sys/Virt/TCK.pm %{perlvendorlib}/Sys/Virt/TCK/ %dir %{_localstatedir}/cache/libvirt-tck %changelog * Thu Jul 23 2009 Daniel P. Berrange - 0.1.0-3 - Add disttag, remove extrarelease, add Perl module compat, add missing BRs * Wed Jul 22 2009 Daniel P. Berrange - 0.1.0-2 - Fix license field * Wed Jul 22 2009 Daniel P. Berrange - 0.1.0-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt-TCK/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:44:35 -0000 1.1 +++ .cvsignore 23 Jul 2009 17:04:42 -0000 1.2 @@ -0,0 +1,4 @@ +Sys-Virt-TCK-0.1.0.tar.gz +.build*.log +noarch +*.src.rpm Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt-TCK/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:44:35 -0000 1.1 +++ sources 23 Jul 2009 17:04:42 -0000 1.2 @@ -0,0 +1 @@ +1acffc328fb126bafd95fa3ddb00890c Sys-Virt-TCK-0.1.0.tar.gz From pbrobinson at fedoraproject.org Thu Jul 23 16:28:34 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 23 Jul 2009 16:28:34 +0000 (UTC) Subject: rpms/bognor-regis/devel bognor-regis.spec,1.4,1.5 Message-ID: <20090723162834.C3FD511C0093@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2805 Modified Files: bognor-regis.spec Log Message: - Add some new dependencies. Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bognor-regis.spec 23 Jul 2009 13:29:22 -0000 1.4 +++ bognor-regis.spec 23 Jul 2009 16:28:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: bognor-regis Version: 0.4.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia @@ -17,6 +17,8 @@ BuildRequires: pkgconfig # Require these because the git tarball doesn't have the configure built BuildRequires: libtool +BuildRequires: intltool +BuildRequires: gettext BuildRequires: automake BuildRequires: autoconf @@ -69,6 +71,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Thu Jul 23 2009 Peter Robinson 0.4.8-2 +- Add some new dependencies. + * Thu Jul 23 2009 Peter Robinson 0.4.8-1 - New upstream 0.4.8 release From leigh123linux at fedoraproject.org Thu Jul 23 17:15:19 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 17:15:19 +0000 (UTC) Subject: rpms/libcompizconfig/devel .cvsignore, 1.5, 1.6 libcompizconfig.spec, 1.14, 1.15 sources, 1.6, 1.7 Message-ID: <20090723171519.5697311C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28790 Modified Files: .cvsignore libcompizconfig.spec sources Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - add protobuf-devel BuildRequires Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 30 Nov 2008 08:43:32 -0000 1.5 +++ .cvsignore 23 Jul 2009 17:14:45 -0000 1.6 @@ -1 +1 @@ -libcompizconfig-0.7.8.tar.bz2 +libcompizconfig-0.8.2.tar.bz2 Index: libcompizconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/libcompizconfig.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libcompizconfig.spec 28 Feb 2009 14:26:35 -0000 1.14 +++ libcompizconfig.spec 23 Jul 2009 17:14:46 -0000 1.15 @@ -1,8 +1,8 @@ -%define basever 0.7.8 +%define basever 0.8.2 Name: libcompizconfig -Version: 0.7.8 -Release: 3%{?dist} +Version: 0.8.2 +Release: 1%{?dist} Summary: Configuration backend for compiz Group: System Environment/Libraries @@ -22,6 +22,7 @@ BuildRequires: compiz-devel >= %{baseve BuildRequires: libX11-devel, gettext, intltool BuildRequires: perl(XML::Parser) BuildRequires: mesa-libGL-devel +BuildRequires: protobuf-devel %description The Compiz Project brings 3D desktop visual effects that improve @@ -90,6 +91,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-1 +- update to 0.8.2 +- add protobuf-devel BuildRequires + * Sat Feb 28 2009 Caol?n McNamara - 0.7.8-3 - add mesa-libGL-devel BuildRequires Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 30 Nov 2008 08:43:32 -0000 1.6 +++ sources 23 Jul 2009 17:14:46 -0000 1.7 @@ -1 +1 @@ -6716315a850f72bd7479c224697006c0 libcompizconfig-0.7.8.tar.bz2 +551ab49ab7f542f4a969e54bcfb7a485 libcompizconfig-0.8.2.tar.bz2 From cwickert at fedoraproject.org Thu Jul 23 17:15:54 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 17:15:54 +0000 (UTC) Subject: rpms/lxde-common/devel noautobuild,1.2,1.3 Message-ID: <20090723171554.6C75A11C0093@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29334 Added Files: noautobuild Log Message: opt out from autobuild Index: noautobuild =================================================================== RCS file: noautobuild diff -N noautobuild From cwickert at fedoraproject.org Thu Jul 23 17:18:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 17:18:41 +0000 (UTC) Subject: rpms/gwget/devel noautobuild,NONE,1.1 Message-ID: <20090723171841.CB7CD11C0093@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gwget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30853 Added Files: noautobuild Log Message: opt out from autobuild --- NEW FILE noautobuild --- From peter at fedoraproject.org Thu Jul 23 17:26:24 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 17:26:24 +0000 (UTC) Subject: rpms/b43-openfwwf/devel .cvsignore, 1.2, 1.3 b43-openfwwf.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723172625.0368211C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/b43-openfwwf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1772/devel Modified Files: .cvsignore b43-openfwwf.spec import.log sources Log Message: ver. 5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:21:04 -0000 1.2 +++ .cvsignore 23 Jul 2009 17:26:24 -0000 1.3 @@ -1 +1 @@ -openfwwf-5.1.tar.gz +openfwwf-5.2.tar.gz Index: b43-openfwwf.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/devel/b43-openfwwf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- b43-openfwwf.spec 7 Jul 2009 04:21:04 -0000 1.1 +++ b43-openfwwf.spec 23 Jul 2009 17:26:24 -0000 1.2 @@ -1,11 +1,11 @@ Name: b43-openfwwf -Version: 5.1 -Release: 3%{?dist} +Version: 5.2 +Release: 1%{?dist} Summary: Open firmware for some Broadcom 43xx series WLAN chip Group: System Environment/Kernel License: GPLv2 URL: http://www.ing.unibs.it/openfwwf/ -Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-5.1.tar.gz +Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-%{version}.tar.gz Source1: README.openfwwf Source2: openfwwf.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -21,7 +21,7 @@ Currently supported models are 4306, 431 %prep -%setup -q -n openfwwf-5.1 +%setup -q -n openfwwf-%{version} sed -i s/"-o 0 -g 0"// Makefile install -p -m 0644 %{SOURCE1} . install -p -m 0644 %{SOURCE2} . @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Peter Lemenkov 5.2-1 +- Ver. 5.2 + * Mon Jun 29 2009 Peter Lemenkov 5.1-3 - Changed README a lot - Changed description Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 7 Jul 2009 04:21:04 -0000 1.1 +++ import.log 23 Jul 2009 17:26:24 -0000 1.2 @@ -1 +1,2 @@ b43-openfwwf-5_1-3_fc11:HEAD:b43-openfwwf-5.1-3.fc11.src.rpm:1246940441 +b43-openfwwf-5_2-1_fc11:HEAD:b43-openfwwf-5.2-1.fc11.src.rpm:1248369937 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:21:04 -0000 1.2 +++ sources 23 Jul 2009 17:26:24 -0000 1.3 @@ -1 +1 @@ -3510c133393bb4911c4aa35742cefcfd openfwwf-5.1.tar.gz +e045a135453274e439ae183f8498b0fa openfwwf-5.2.tar.gz From leigh123linux at fedoraproject.org Thu Jul 23 17:28:04 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 17:28:04 +0000 (UTC) Subject: rpms/libcompizconfig/devel libcompizconfig.spec,1.15,1.16 Message-ID: <20090723172804.8D1FA11C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2418 Modified Files: libcompizconfig.spec Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-2 - drop the libcompizconfig-fix-weak-symbols.patch Index: libcompizconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/libcompizconfig.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libcompizconfig.spec 23 Jul 2009 17:14:46 -0000 1.15 +++ libcompizconfig.spec 23 Jul 2009 17:28:04 -0000 1.16 @@ -2,7 +2,7 @@ Name: libcompizconfig Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Configuration backend for compiz Group: System Environment/Libraries @@ -12,7 +12,7 @@ URL: http://www.opencompositi Source0: http://releases.compiz-fusion.org/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch100: libcompizconfig-fix-weak-symbols.patch +#Patch100: libcompizconfig-fix-weak-symbols.patch #Patch101: libcompizconfig-gcc43-buildfix.patch #Patch102: libcompizconfig-gcc43-buildfix2.patch @@ -45,7 +45,7 @@ developing applications that use %{name} %prep %setup -q -%patch100 -p1 -b .fix-weak-symbols +#%patch100 -p1 -b .fix-weak-symbols #%patch101 -p1 -b .gcc43-buildfix #%patch102 -p1 -b .gcc43-buildfix2 @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-2 +- drop the libcompizconfig-fix-weak-symbols.patch + * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - add protobuf-devel BuildRequires From twaugh at fedoraproject.org Thu Jul 23 17:30:38 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 23 Jul 2009 17:30:38 +0000 (UTC) Subject: rpms/hplip/devel hplip-device-id.patch, 1.2, 1.3 hplip.spec, 1.206, 1.207 Message-ID: <20090723173038.4797811C048A@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3862 Modified Files: hplip-device-id.patch hplip.spec Log Message: * Thu Jul 23 2009 Tim Waugh 3.9.2-8 - Use existing libusb-using routines to try fetching Device ID. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 139 +++++++++++++++++++++++++++++++++++++++++++++++--------- 3 files changed, 121 insertions(+), 26 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip-device-id.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hplip-device-id.patch 23 Jul 2009 10:09:11 -0000 1.2 +++ hplip-device-id.patch 23 Jul 2009 17:30:37 -0000 1.3 @@ -1,151 +1,204 @@ ---- hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 11:04:59.504163043 +0100 -@@ -26,6 +26,8 @@ +diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c +--- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 ++++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 18:15:12.923895944 +0100 +@@ -26,6 +26,11 @@ #include "hpmud.h" #include "hpmudi.h" +#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE 1 +#include ++ ++/* Flags for claim_interface() */ ++#define CLAIM_NO_DETACH 1 mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -1959,6 +1961,143 @@ +@@ -488,7 +493,8 @@ bugout: + return -1; /* no endpoint found */ + } + +-static int claim_interface(struct usb_device *dev, file_descriptor *pfd) ++static int claim_interface(struct usb_device *dev, file_descriptor *pfd, ++ int flags) + { + int stat=1; + +@@ -501,7 +507,8 @@ static int claim_interface(struct usb_de + goto bugout; + } + +- detach(pfd->hd, pfd->interface); ++ if (!(flags & CLAIM_NO_DETACH)) ++ detach(pfd->hd, pfd->interface); + + #if 0 /* hp devices only have one configuration, so far ... */ + if (usb_set_configuration(FD[fd].pHD, dev->config[config].bConfigurationValue)) +@@ -561,7 +568,7 @@ static int release_interface(file_descri + } + + /* Claim any open interface which is valid for device_id and device status. */ +-static int claim_id_interface(struct usb_device *dev) ++static int claim_id_interface(struct usb_device *dev, int flags) + { + int fd[] = {FD_7_1_2, FD_7_1_3, FD_ff_ff_ff, FD_ff_d4_0, FD_ff_1_1, FD_ff_2_1, FD_NA}; + int i; +@@ -570,7 +577,7 @@ static int claim_id_interface(struct usb + { + if (get_interface(dev, fd[i], &fd_table[fd[i]]) == 0) + { +- if (claim_interface(libusb_device, &fd_table[fd[i]])) ++ if (claim_interface(libusb_device, &fd_table[fd[i]], flags)) + continue; /* interface is busy, try next interface */ + break; /* done */ + } +@@ -1111,7 +1118,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + { + /* First client. */ + +- if ((fd = claim_id_interface(libusb_device)) == FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) == FD_NA) + { + stat = HPMUD_R_DEVICE_BUSY; + goto blackout; +@@ -1186,7 +1193,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + if (fd == FD_NA) + { + /* Device not in use. Claim interface, but release for other processes. */ +- if ((fd = claim_id_interface(libusb_device)) != FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) + { + *len = device_id(fd, pd->id, sizeof(pd->id)); /* get new copy and cache it */ + release_interface(&fd_table[fd]); +@@ -1236,7 +1243,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + if (fd == FD_NA) + { + /* Device not in use. Claim interface, but release for other processes. */ +- if ((fd = claim_id_interface(libusb_device)) != FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) + { + r = device_status(fd, status); + release_interface(&fd_table[fd]); +@@ -1339,7 +1346,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + int fd = FD_7_1_2; + enum HPMUD_RESULT stat = HPMUD_R_DEVICE_BUSY; + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + goto bugout; + + pc->fd = fd; +@@ -1470,7 +1477,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + goto bugout; + } + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + goto bugout; + + pc->fd = fd; +@@ -1504,7 +1511,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + else + fd = FD_7_1_2; /* raw, mlc, dot4 */ + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + { + stat = HPMUD_R_DEVICE_BUSY; + goto bugout; +@@ -1726,7 +1733,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + else + fd = FD_7_1_2; /* raw, mlc, dot4 */ + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + { + stat = HPMUD_R_DEVICE_BUSY; + goto bugout; +@@ -1959,6 +1966,91 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ +static void +get_device_id (struct usb_device *dev, const char *serial, -+ char *device_id, size_t len) ++ char *id, size_t len) +{ -+ struct usb_config_descriptor *confptr; + int try_usblp = 0; -+ int conf; ++ int fd; + -+ *device_id = '\0'; ++ *id = '\0'; + if (dev->descriptor.idVendor != 0x3f0) -+ return; ++ return; ++ ++ libusb_device = dev; ++ fd = claim_id_interface (dev, CLAIM_NO_DETACH); ++ if (fd == FD_NA) ++ { ++ try_usblp = 1; ++ goto try_usblp_instead; ++ } ++ ++ if (device_id (fd, id, len) == 0) ++ try_usblp = 1; + -+ for (conf = 0, confptr = dev->config; -+ conf < dev->descriptor.bNumConfigurations; -+ conf++, confptr++) -+ { -+ struct usb_interface *ifaceptr; -+ int iface = 0; -+ for (ifaceptr = confptr->interface; -+ iface < confptr->bNumInterfaces; -+ iface++, ifaceptr++) -+ { -+ struct usb_interface_descriptor *altptr; -+ int altset = 0; -+ for (altptr = ifaceptr->altsetting; -+ altset < ifaceptr->num_altsetting; -+ altset++, altptr++) -+ { -+ if (altptr->bInterfaceClass == USB_CLASS_PRINTER && -+ altptr->bInterfaceSubClass == 1) -+ { -+ int n; -+ struct usb_dev_handle *hd; -+ -+ if ((hd = usb_open (dev)) == NULL) -+ continue; -+ -+ n = confptr->bConfigurationValue; -+ if (usb_set_configuration (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ n = altptr->bInterfaceNumber; -+ if (usb_claim_interface (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ n = altptr->bAlternateSetting; -+ if (usb_set_altinterface (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ memset (device_id, '\0', -+ sizeof (device_id)); -+ if (usb_control_msg (hd, -+ USB_TYPE_CLASS | -+ USB_ENDPOINT_IN | -+ USB_RECIP_INTERFACE, -+ 0, conf, iface, -+ device_id, len, -+ 5000) < 0) -+ goto try_usblp_instead; -+ -+ usb_close (hd); -+ memmove (device_id, device_id + 2, -+ len - 2); -+ device_id[len - 2] = '\0'; -+ device_id[len - 1] = '\0'; -+ return; -+ -+ try_usblp_instead: -+ usb_close (hd); -+ try_usblp = 1; -+ goto out; -+ } -+ } -+ } -+ } ++ release_interface (&fd_table[fd]); + -+ out: ++ try_usblp_instead: + if (try_usblp) -+ { -+ struct udev *udev = udev_new (); -+ struct udev_enumerate *en = udev_enumerate_new (udev); -+ struct udev_list_entry *list, *each; -+ udev_enumerate_add_match_subsystem (en, "usb"); -+ udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); -+ udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); -+ udev_enumerate_scan_devices (en); -+ list = udev_enumerate_get_list_entry (en); -+ udev_list_entry_foreach (each, list) -+ { -+ const char *syspath = udev_list_entry_get_name (each); -+ struct udev_device *parent_dev, *ddev; -+ const char *ieee1284_id; -+ const char *idVendor; -+ const char *idProductStr; -+ const char *serialstr; -+ unsigned long idProduct; -+ ddev = udev_device_new_from_syspath (udev, syspath); -+ parent_dev = -+ udev_device_get_parent_with_subsystem_devtype (ddev, -+ "usb", -+ "usb_device"); -+ if (!parent_dev) -+ continue; -+ -+ idVendor = udev_device_get_sysattr_value (parent_dev, -+ "idVendor"); -+ if (!idVendor || strcmp (idVendor, "03f0")) -+ continue; -+ -+ idProductStr = udev_device_get_sysattr_value (parent_dev, -+ "idProduct"); -+ if (!idProductStr || -+ strtoul (idProductStr, NULL, 16) != -+ dev->descriptor.idProduct) -+ continue; -+ -+ serialstr = udev_device_get_sysattr_value (parent_dev, -+ "serial"); -+ if (!serialstr || strcmp (serialstr, serial)) -+ continue; -+ -+ ieee1284_id = udev_device_get_sysattr_value (ddev, -+ "ieee1284_id"); -+ if (!ieee1284_id) -+ continue; -+ -+ strncpy (device_id, ieee1284_id, len); -+ device_id[len - 1] = '\0'; -+ } -+ -+ udev_enumerate_unref (en); -+ udev_unref (udev); -+ } ++ { ++ struct udev *udev = udev_new (); ++ struct udev_enumerate *en = udev_enumerate_new (udev); ++ struct udev_list_entry *list, *each; ++ udev_enumerate_add_match_subsystem (en, "usb"); ++ udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); ++ udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); ++ udev_enumerate_scan_devices (en); ++ list = udev_enumerate_get_list_entry (en); ++ udev_list_entry_foreach (each, list) ++ { ++ const char *syspath = udev_list_entry_get_name (each); ++ struct udev_device *parent_dev, *ddev; ++ const char *ieee1284_id; ++ const char *idVendor; ++ const char *idProductStr; ++ const char *serialstr; ++ unsigned long idProduct; ++ ddev = udev_device_new_from_syspath (udev, syspath); ++ parent_dev = ++ udev_device_get_parent_with_subsystem_devtype (ddev, ++ "usb", ++ "usb_device"); ++ if (!parent_dev) ++ continue; ++ ++ idVendor = udev_device_get_sysattr_value (parent_dev, ++ "idVendor"); ++ if (!idVendor || strcmp (idVendor, "03f0")) ++ continue; ++ ++ idProductStr = udev_device_get_sysattr_value (parent_dev, ++ "idProduct"); ++ if (!idProductStr || ++ strtoul (idProductStr, NULL, 16) != ++ dev->descriptor.idProduct) ++ continue; ++ ++ serialstr = udev_device_get_sysattr_value (parent_dev, ++ "serial"); ++ if (!serialstr || strcmp (serialstr, serial)) ++ continue; ++ ++ ieee1284_id = udev_device_get_sysattr_value (ddev, ++ "ieee1284_id"); ++ if (!ieee1284_id) ++ continue; ++ ++ strncpy (id, ieee1284_id, len); ++ id[len - 1] = '\0'; ++ } ++ ++ udev_enumerate_unref (en); ++ udev_unref (udev); ++ } + + return; +} @@ -153,7 +206,7 @@ int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2145,7 @@ +@@ -2006,6 +2098,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { @@ -161,7 +214,7 @@ snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2156,19 @@ +@@ -2016,17 +2109,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } @@ -192,8 +245,9 @@ *cnt+=1; } } +diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 ++++ hplip-3.9.2/Makefile.am 2009-07-23 18:12:15.843895808 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h @@ -206,8 +260,9 @@ endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" +diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 ++++ hplip-3.9.2/Makefile.in 2009-07-23 18:12:15.850895526 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.206 retrieving revision 1.207 diff -u -p -r1.206 -r1.207 --- hplip.spec 23 Jul 2009 10:09:11 -0000 1.206 +++ hplip.spec 23 Jul 2009 17:30:37 -0000 1.207 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -336,6 +336,9 @@ fi exit 0 %changelog +* Thu Jul 23 2009 Tim Waugh 3.9.2-8 +- Use existing libusb-using routines to try fetching Device ID. + * Thu Jul 23 2009 Tim Waugh 3.9.2-7 - Error checking in the libudev device-id fallback code. From s4504kr at fedoraproject.org Thu Jul 23 17:33:15 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 23 Jul 2009 17:33:15 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.5,1.6 Message-ID: <20090723173315.50C6111C0093@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5001 Modified Files: ghc-editline.spec Log Message: Fix typo in Requires(post) Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ghc-editline.spec 23 Jul 2009 00:29:00 -0000 1.5 +++ ghc-editline.spec 23 Jul 2009 17:32:45 -0000 1.6 @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -38,8 +38,9 @@ Summary: Haskell %{pkg_name} library Group: Development/Libraries Requires: libedit-devel Requires: ghc = %{ghc_version} -Requires(pos): ghc = %{ghc_version} +Requires(post): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} +Requires: libedit-devel %description devel This package will contains the development files for %{name} @@ -127,6 +128,9 @@ fi %endif %Changelog +* Thu Jul 23 2009 Jochen Schmitt 0.2.1.0-8 +- Fix typo in Requires(post) + * Thu Jul 23 2009 Jens Petersen - 0.2.1.0-7 - pkg_libdir is redundant - devel requires libedit-devel From s4504kr at fedoraproject.org Thu Jul 23 17:40:56 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 23 Jul 2009 17:40:56 +0000 (UTC) Subject: rpms/ghc-editline/F-11 ghc-editline.spec,1.4,1.5 Message-ID: <20090723174056.4106711C0093@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/pkgs/rpms/ghc-editline/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7885 Modified Files: ghc-editline.spec Log Message: Fix typo in Requires(post) Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/F-11/ghc-editline.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ghc-editline.spec 23 Jul 2009 15:51:09 -0000 1.4 +++ ghc-editline.spec 23 Jul 2009 17:40:55 -0000 1.5 @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD @@ -38,7 +38,7 @@ Summary: Haskell %{pkg_name} library Group: Development/Libraries Requires: libedit-devel Requires: ghc = %{ghc_version} -Requires(pos): ghc = %{ghc_version} +Requires(post): ghc = %{ghc_version} Requires(postun): ghc = %{ghc_version} Requires: libedit-devel @@ -128,6 +128,9 @@ fi %endif %Changelog +* Thu Jul 23 2009 Jochen Schmitt 0.2.1.0-8 +- Fix typo in Requires(post) + * Thu Jul 23 2009 Jens Petersen - 0.2.1.0-7 - pkg_libdir is redundant - devel requires libedit-devel From kyle at fedoraproject.org Thu Jul 23 17:45:34 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Thu, 23 Jul 2009 17:45:34 +0000 (UTC) Subject: rpms/kernel/devel patch-2.6.31-rc4.bz2.sign, NONE, 1.1 .cvsignore, 1.1101, 1.1102 config-generic, 1.309, 1.310 config-powerpc32-generic, 1.34, 1.35 config-powerpc64, 1.33, 1.34 config-s390x, 1.16, 1.17 config-x86-generic, 1.85, 1.86 config-x86_64-generic, 1.87, 1.88 kernel.spec, 1.1649, 1.1650 sources, 1.1059, 1.1060 upstream, 1.973, 1.974 patch-2.6.31-rc3-git5.bz2.sign, 1.1, NONE patch-2.6.31-rc3.bz2.sign, 1.1, NONE Message-ID: <20090723174534.6CDEB11C0093@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10500 Modified Files: .cvsignore config-generic config-powerpc32-generic config-powerpc64 config-s390x config-x86-generic config-x86_64-generic kernel.spec sources upstream Added Files: patch-2.6.31-rc4.bz2.sign Removed Files: patch-2.6.31-rc3-git5.bz2.sign patch-2.6.31-rc3.bz2.sign Log Message: * Thu Jul 23 2009 Kyle McMartin 2.6.31-0.87.rc4 - Linux 2.6.31-rc4 - config changes: - USB_CDC_PHONET=m [all] - EVENT_PROFILE=y [i386, x86_64, powerpc, s390] --- NEW FILE patch-2.6.31-rc4.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKZ9BuyGugalF9Dw4RAh0fAJ977/GLyKgfjiC34XECB/s8AH4YkgCfQMEv X8mxRN+euwFZYm1VLxF783E= =Oe0p -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1101 retrieving revision 1.1102 diff -u -p -r1.1101 -r1.1102 --- .cvsignore 22 Jul 2009 16:44:34 -0000 1.1101 +++ .cvsignore 23 Jul 2009 17:45:33 -0000 1.1102 @@ -5,5 +5,4 @@ kernel-2.6.*.config temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 -patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git5.bz2 +patch-2.6.31-rc4.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.309 retrieving revision 1.310 diff -u -p -r1.309 -r1.310 --- config-generic 22 Jul 2009 03:45:28 -0000 1.309 +++ config-generic 23 Jul 2009 17:45:33 -0000 1.310 @@ -2871,6 +2871,7 @@ CONFIG_USB_NET_CDC_SUBSET=m CONFIG_USB_NET_CDC_EEM=m CONFIG_USB_NET_ZAURUS=m CONFIG_USB_NET_INT51X1=m +CONFIG_USB_CDC_PHONET=m # # USB Host-to-Host Cables Index: config-powerpc32-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-powerpc32-generic,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- config-powerpc32-generic 21 Jun 2009 20:52:19 -0000 1.34 +++ config-powerpc32-generic 23 Jul 2009 17:45:33 -0000 1.35 @@ -187,3 +187,5 @@ CONFIG_USB_GPIO_VBUS=m CONFIG_RCU_FANOUT=32 CONFIG_PERF_COUNTERS=y +CONFIG_EVENT_PROFILE=y + Index: config-powerpc64 =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-powerpc64,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- config-powerpc64 19 Jun 2009 22:06:34 -0000 1.33 +++ config-powerpc64 23 Jul 2009 17:45:33 -0000 1.34 @@ -185,3 +185,4 @@ CONFIG_RELOCATABLE=y CONFIG_RCU_FANOUT=64 CONFIG_PERF_COUNTERS=y +CONFIG_EVENT_PROFILE=y Index: config-s390x =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-s390x,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- config-s390x 24 Jun 2009 18:37:55 -0000 1.16 +++ config-s390x 23 Jul 2009 17:45:33 -0000 1.17 @@ -228,3 +228,5 @@ CONFIG_HIBERNATION=y CONFIG_PM_STD_PARTITION="/dev/jokes" CONFIG_PERF_COUNTERS=y +CONFIG_EVENT_PROFILE=y + Index: config-x86-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86-generic,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- config-x86-generic 20 Jul 2009 16:43:59 -0000 1.85 +++ config-x86-generic 23 Jul 2009 17:45:33 -0000 1.86 @@ -473,6 +473,7 @@ CONFIG_RCU_FANOUT=32 # CONFIG_IOMMU_STRESS is not set CONFIG_PERF_COUNTERS=y +CONFIG_EVENT_PROFILE=y # CONFIG_X86_OLD_MCE is not set CONFIG_X86_MCE_INTEL=y Index: config-x86_64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-x86_64-generic,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- config-x86_64-generic 8 Jul 2009 19:55:47 -0000 1.87 +++ config-x86_64-generic 23 Jul 2009 17:45:33 -0000 1.88 @@ -377,5 +377,6 @@ CONFIG_RCU_FANOUT=64 # CONFIG_IOMMU_STRESS is not set CONFIG_PERF_COUNTERS=y +CONFIG_EVENT_PROFILE=y # CONFIG_X86_MCE_INJECT is not set Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1649 retrieving revision 1.1650 diff -u -p -r1.1649 -r1.1650 --- kernel.spec 22 Jul 2009 17:34:54 -0000 1.1649 +++ kernel.spec 23 Jul 2009 17:45:33 -0000 1.1650 @@ -59,9 +59,9 @@ Summary: The Linux kernel # The next upstream release sublevel (base_sublevel+1) %define upstream_sublevel %(echo $((%{base_sublevel} + 1))) # The rc snapshot level -%define rcrev 3 +%define rcrev 4 # The git snapshot level -%define gitrev 5 +%define gitrev 0 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -109,7 +109,7 @@ Summary: The Linux kernel %define doc_build_fail true %endif -%define rawhide_skip_docs 1 +%define rawhide_skip_docs 0 %if 0%{?rawhide_skip_docs} %define with_doc 0 %endif @@ -1882,6 +1882,12 @@ fi # and build. %changelog +* Thu Jul 23 2009 Kyle McMartin 2.6.31-0.87.rc4 +- Linux 2.6.31-rc4 +- config changes: + - USB_CDC_PHONET=m [all] + - EVENT_PROFILE=y [i386, x86_64, powerpc, s390] + * Wed Jul 22 2009 Tom "spot" Callaway - We have to override the new %%install behavior because, well... the kernel is special. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1059 retrieving revision 1.1060 diff -u -p -r1.1059 -r1.1060 --- sources 22 Jul 2009 16:44:35 -0000 1.1059 +++ sources 23 Jul 2009 17:45:33 -0000 1.1060 @@ -1,3 +1,2 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 -39a1c949531faa70e147d0aa5be6c6ec patch-2.6.31-rc3.bz2 -2ba6c6382e5a3668a27cb83178e7aa34 patch-2.6.31-rc3-git5.bz2 +879f514ce009b9a7535b743f71cd3c02 patch-2.6.31-rc4.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.973 retrieving revision 1.974 diff -u -p -r1.973 -r1.974 --- upstream 22 Jul 2009 16:44:35 -0000 1.973 +++ upstream 23 Jul 2009 17:45:33 -0000 1.974 @@ -1,4 +1,3 @@ linux-2.6.30.tar.bz2 -patch-2.6.31-rc3.bz2 -patch-2.6.31-rc3-git5.bz2 +patch-2.6.31-rc4.bz2 --- patch-2.6.31-rc3-git5.bz2.sign DELETED --- --- patch-2.6.31-rc3.bz2.sign DELETED --- From leigh123linux at fedoraproject.org Thu Jul 23 17:48:48 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 17:48:48 +0000 (UTC) Subject: rpms/libcompizconfig/devel libcompizconfig.spec,1.16,1.17 Message-ID: <20090723174848.E59C911C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11807 Modified Files: libcompizconfig.spec Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-3 - remove dead files from files section Index: libcompizconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/libcompizconfig.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libcompizconfig.spec 23 Jul 2009 17:28:04 -0000 1.16 +++ libcompizconfig.spec 23 Jul 2009 17:48:18 -0000 1.17 @@ -2,7 +2,7 @@ Name: libcompizconfig Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Configuration backend for compiz Group: System Environment/Libraries @@ -75,8 +75,6 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING NEWS VERSION %{_sysconfdir}/compizconfig/ %{_libdir}/*.so.* -%dir %{_datadir}/compizconfig/ -%{_datadir}/compizconfig/global.xml %{_datadir}/compiz/ccp.xml %{_libdir}/compiz/*.so %dir %{_libdir}/compizconfig/ @@ -91,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-3 +- remove dead files from files section + * Thu Jul 23 2009 Leigh Scott 0.8.2-2 - drop the libcompizconfig-fix-weak-symbols.patch From rjones at fedoraproject.org Thu Jul 23 18:00:57 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 18:00:57 +0000 (UTC) Subject: rpms/libguestfs/devel libguestfs.spec,1.79,1.80 Message-ID: <20090723180057.2AED111C0093@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16358 Modified Files: libguestfs.spec Log Message: RHBZ#513249 bug in qemu is now fixed, so try to rebuild and run tests. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- libguestfs.spec 23 Jul 2009 10:22:45 -0000 1.79 +++ libguestfs.spec 23 Jul 2009 18:00:26 -0000 1.80 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.64 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -335,11 +335,11 @@ export LIBGUESTFS_DEBUG=1 # 502074 i386 F-11 commands segfault randomly # 503236 i386 F-12? cryptomgr_test at doublefault_fn # 507066 all F-12 sequence of chroot calls (FIXED) -# 513249 all F-12 guestfwd broken in qemu +# 513249 all F-12 guestfwd broken in qemu (FIXED) -#%ifarch %{ix86} # try again when 513249 is fixed -#make check -#%endif +%ifarch %{ix86} +make check +%endif %install @@ -533,6 +533,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 +- RHBZ#513249 bug in qemu is now fixed, so try to rebuild and run tests. + * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. From peter at fedoraproject.org Thu Jul 23 17:30:34 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 17:30:34 +0000 (UTC) Subject: rpms/b43-openfwwf/F-10 .cvsignore, 1.2, 1.3 b43-openfwwf.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723173034.5F9D211C048A@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/b43-openfwwf/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3797/F-10 Modified Files: .cvsignore b43-openfwwf.spec import.log sources Log Message: ver. 5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:24:00 -0000 1.2 +++ .cvsignore 23 Jul 2009 17:30:33 -0000 1.3 @@ -1 +1 @@ -openfwwf-5.1.tar.gz +openfwwf-5.2.tar.gz Index: b43-openfwwf.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-10/b43-openfwwf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- b43-openfwwf.spec 7 Jul 2009 04:24:00 -0000 1.1 +++ b43-openfwwf.spec 23 Jul 2009 17:30:33 -0000 1.2 @@ -1,11 +1,11 @@ Name: b43-openfwwf -Version: 5.1 -Release: 3%{?dist} +Version: 5.2 +Release: 1%{?dist} Summary: Open firmware for some Broadcom 43xx series WLAN chip Group: System Environment/Kernel License: GPLv2 URL: http://www.ing.unibs.it/openfwwf/ -Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-5.1.tar.gz +Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-%{version}.tar.gz Source1: README.openfwwf Source2: openfwwf.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -21,7 +21,7 @@ Currently supported models are 4306, 431 %prep -%setup -q -n openfwwf-5.1 +%setup -q -n openfwwf-%{version} sed -i s/"-o 0 -g 0"// Makefile install -p -m 0644 %{SOURCE1} . install -p -m 0644 %{SOURCE2} . @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Peter Lemenkov 5.2-1 +- Ver. 5.2 + * Mon Jun 29 2009 Peter Lemenkov 5.1-3 - Changed README a lot - Changed description Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-10/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 7 Jul 2009 04:24:00 -0000 1.1 +++ import.log 23 Jul 2009 17:30:33 -0000 1.2 @@ -1 +1,2 @@ b43-openfwwf-5_1-3_fc11:F-10:b43-openfwwf-5.1-3.fc11.src.rpm:1246940615 +b43-openfwwf-5_2-1_fc11:F-10:b43-openfwwf-5.2-1.fc11.src.rpm:1248370206 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:24:00 -0000 1.2 +++ sources 23 Jul 2009 17:30:33 -0000 1.3 @@ -1 +1 @@ -3510c133393bb4911c4aa35742cefcfd openfwwf-5.1.tar.gz +e045a135453274e439ae183f8498b0fa openfwwf-5.2.tar.gz From twaugh at fedoraproject.org Thu Jul 23 17:30:23 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Thu, 23 Jul 2009 17:30:23 +0000 (UTC) Subject: rpms/hplip/F-11 hplip-device-id.patch, 1.2, 1.3 hplip.spec, 1.206, 1.207 Message-ID: <20090723173023.79E3A11C048A@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/hplip/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3670 Modified Files: hplip-device-id.patch hplip.spec Log Message: * Thu Jul 23 2009 Tim Waugh 3.9.2-8 - Use existing libusb-using routines to try fetching Device ID. hplip-device-id.patch: Makefile.am | 4 - Makefile.in | 4 - io/hpmud/musb.c | 139 +++++++++++++++++++++++++++++++++++++++++++++++--------- 3 files changed, 121 insertions(+), 26 deletions(-) Index: hplip-device-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip-device-id.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hplip-device-id.patch 23 Jul 2009 10:08:50 -0000 1.2 +++ hplip-device-id.patch 23 Jul 2009 17:30:23 -0000 1.3 @@ -1,151 +1,204 @@ ---- hplip-3.9.2/io/hpmud/musb.c 2009-07-21 23:43:07.016138839 +0100 -+++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 11:04:59.504163043 +0100 -@@ -26,6 +26,8 @@ +diff -up hplip-3.9.2/io/hpmud/musb.c.device-id hplip-3.9.2/io/hpmud/musb.c +--- hplip-3.9.2/io/hpmud/musb.c.device-id 2009-02-20 00:36:44.000000000 +0000 ++++ hplip-3.9.2/io/hpmud/musb.c 2009-07-23 18:15:12.923895944 +0100 +@@ -26,6 +26,11 @@ #include "hpmud.h" #include "hpmudi.h" +#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE 1 +#include ++ ++/* Flags for claim_interface() */ ++#define CLAIM_NO_DETACH 1 mud_device_vf __attribute__ ((visibility ("hidden"))) musb_mud_device_vf = { -@@ -1959,6 +1961,143 @@ +@@ -488,7 +493,8 @@ bugout: + return -1; /* no endpoint found */ + } + +-static int claim_interface(struct usb_device *dev, file_descriptor *pfd) ++static int claim_interface(struct usb_device *dev, file_descriptor *pfd, ++ int flags) + { + int stat=1; + +@@ -501,7 +507,8 @@ static int claim_interface(struct usb_de + goto bugout; + } + +- detach(pfd->hd, pfd->interface); ++ if (!(flags & CLAIM_NO_DETACH)) ++ detach(pfd->hd, pfd->interface); + + #if 0 /* hp devices only have one configuration, so far ... */ + if (usb_set_configuration(FD[fd].pHD, dev->config[config].bConfigurationValue)) +@@ -561,7 +568,7 @@ static int release_interface(file_descri + } + + /* Claim any open interface which is valid for device_id and device status. */ +-static int claim_id_interface(struct usb_device *dev) ++static int claim_id_interface(struct usb_device *dev, int flags) + { + int fd[] = {FD_7_1_2, FD_7_1_3, FD_ff_ff_ff, FD_ff_d4_0, FD_ff_1_1, FD_ff_2_1, FD_NA}; + int i; +@@ -570,7 +577,7 @@ static int claim_id_interface(struct usb + { + if (get_interface(dev, fd[i], &fd_table[fd[i]]) == 0) + { +- if (claim_interface(libusb_device, &fd_table[fd[i]])) ++ if (claim_interface(libusb_device, &fd_table[fd[i]], flags)) + continue; /* interface is busy, try next interface */ + break; /* done */ + } +@@ -1111,7 +1118,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + { + /* First client. */ + +- if ((fd = claim_id_interface(libusb_device)) == FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) == FD_NA) + { + stat = HPMUD_R_DEVICE_BUSY; + goto blackout; +@@ -1186,7 +1193,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + if (fd == FD_NA) + { + /* Device not in use. Claim interface, but release for other processes. */ +- if ((fd = claim_id_interface(libusb_device)) != FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) + { + *len = device_id(fd, pd->id, sizeof(pd->id)); /* get new copy and cache it */ + release_interface(&fd_table[fd]); +@@ -1236,7 +1243,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + if (fd == FD_NA) + { + /* Device not in use. Claim interface, but release for other processes. */ +- if ((fd = claim_id_interface(libusb_device)) != FD_NA) ++ if ((fd = claim_id_interface(libusb_device, 0)) != FD_NA) + { + r = device_status(fd, status); + release_interface(&fd_table[fd]); +@@ -1339,7 +1346,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + int fd = FD_7_1_2; + enum HPMUD_RESULT stat = HPMUD_R_DEVICE_BUSY; + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + goto bugout; + + pc->fd = fd; +@@ -1470,7 +1477,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + goto bugout; + } + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + goto bugout; + + pc->fd = fd; +@@ -1504,7 +1511,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + else + fd = FD_7_1_2; /* raw, mlc, dot4 */ + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + { + stat = HPMUD_R_DEVICE_BUSY; + goto bugout; +@@ -1726,7 +1733,7 @@ enum HPMUD_RESULT __attribute__ ((visibi + else + fd = FD_7_1_2; /* raw, mlc, dot4 */ + +- if (claim_interface(libusb_device, &fd_table[fd])) ++ if (claim_interface(libusb_device, &fd_table[fd], 0)) + { + stat = HPMUD_R_DEVICE_BUSY; + goto bugout; +@@ -1959,6 +1966,91 @@ bugout: * USB probe devices, walk the USB bus(s) looking for HP products. */ +static void +get_device_id (struct usb_device *dev, const char *serial, -+ char *device_id, size_t len) ++ char *id, size_t len) +{ -+ struct usb_config_descriptor *confptr; + int try_usblp = 0; -+ int conf; ++ int fd; + -+ *device_id = '\0'; ++ *id = '\0'; + if (dev->descriptor.idVendor != 0x3f0) -+ return; ++ return; ++ ++ libusb_device = dev; ++ fd = claim_id_interface (dev, CLAIM_NO_DETACH); ++ if (fd == FD_NA) ++ { ++ try_usblp = 1; ++ goto try_usblp_instead; ++ } ++ ++ if (device_id (fd, id, len) == 0) ++ try_usblp = 1; + -+ for (conf = 0, confptr = dev->config; -+ conf < dev->descriptor.bNumConfigurations; -+ conf++, confptr++) -+ { -+ struct usb_interface *ifaceptr; -+ int iface = 0; -+ for (ifaceptr = confptr->interface; -+ iface < confptr->bNumInterfaces; -+ iface++, ifaceptr++) -+ { -+ struct usb_interface_descriptor *altptr; -+ int altset = 0; -+ for (altptr = ifaceptr->altsetting; -+ altset < ifaceptr->num_altsetting; -+ altset++, altptr++) -+ { -+ if (altptr->bInterfaceClass == USB_CLASS_PRINTER && -+ altptr->bInterfaceSubClass == 1) -+ { -+ int n; -+ struct usb_dev_handle *hd; -+ -+ if ((hd = usb_open (dev)) == NULL) -+ continue; -+ -+ n = confptr->bConfigurationValue; -+ if (usb_set_configuration (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ n = altptr->bInterfaceNumber; -+ if (usb_claim_interface (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ n = altptr->bAlternateSetting; -+ if (usb_set_altinterface (hd, n) < 0) -+ goto try_usblp_instead; -+ -+ memset (device_id, '\0', -+ sizeof (device_id)); -+ if (usb_control_msg (hd, -+ USB_TYPE_CLASS | -+ USB_ENDPOINT_IN | -+ USB_RECIP_INTERFACE, -+ 0, conf, iface, -+ device_id, len, -+ 5000) < 0) -+ goto try_usblp_instead; -+ -+ usb_close (hd); -+ memmove (device_id, device_id + 2, -+ len - 2); -+ device_id[len - 2] = '\0'; -+ device_id[len - 1] = '\0'; -+ return; -+ -+ try_usblp_instead: -+ usb_close (hd); -+ try_usblp = 1; -+ goto out; -+ } -+ } -+ } -+ } ++ release_interface (&fd_table[fd]); + -+ out: ++ try_usblp_instead: + if (try_usblp) -+ { -+ struct udev *udev = udev_new (); -+ struct udev_enumerate *en = udev_enumerate_new (udev); -+ struct udev_list_entry *list, *each; -+ udev_enumerate_add_match_subsystem (en, "usb"); -+ udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); -+ udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); -+ udev_enumerate_scan_devices (en); -+ list = udev_enumerate_get_list_entry (en); -+ udev_list_entry_foreach (each, list) -+ { -+ const char *syspath = udev_list_entry_get_name (each); -+ struct udev_device *parent_dev, *ddev; -+ const char *ieee1284_id; -+ const char *idVendor; -+ const char *idProductStr; -+ const char *serialstr; -+ unsigned long idProduct; -+ ddev = udev_device_new_from_syspath (udev, syspath); -+ parent_dev = -+ udev_device_get_parent_with_subsystem_devtype (ddev, -+ "usb", -+ "usb_device"); -+ if (!parent_dev) -+ continue; -+ -+ idVendor = udev_device_get_sysattr_value (parent_dev, -+ "idVendor"); -+ if (!idVendor || strcmp (idVendor, "03f0")) -+ continue; -+ -+ idProductStr = udev_device_get_sysattr_value (parent_dev, -+ "idProduct"); -+ if (!idProductStr || -+ strtoul (idProductStr, NULL, 16) != -+ dev->descriptor.idProduct) -+ continue; -+ -+ serialstr = udev_device_get_sysattr_value (parent_dev, -+ "serial"); -+ if (!serialstr || strcmp (serialstr, serial)) -+ continue; -+ -+ ieee1284_id = udev_device_get_sysattr_value (ddev, -+ "ieee1284_id"); -+ if (!ieee1284_id) -+ continue; -+ -+ strncpy (device_id, ieee1284_id, len); -+ device_id[len - 1] = '\0'; -+ } -+ -+ udev_enumerate_unref (en); -+ udev_unref (udev); -+ } ++ { ++ struct udev *udev = udev_new (); ++ struct udev_enumerate *en = udev_enumerate_new (udev); ++ struct udev_list_entry *list, *each; ++ udev_enumerate_add_match_subsystem (en, "usb"); ++ udev_enumerate_add_match_sysattr (en, "bInterfaceClass", "07"); ++ udev_enumerate_add_match_sysattr (en, "bInterfaceSubClass", "01"); ++ udev_enumerate_scan_devices (en); ++ list = udev_enumerate_get_list_entry (en); ++ udev_list_entry_foreach (each, list) ++ { ++ const char *syspath = udev_list_entry_get_name (each); ++ struct udev_device *parent_dev, *ddev; ++ const char *ieee1284_id; ++ const char *idVendor; ++ const char *idProductStr; ++ const char *serialstr; ++ unsigned long idProduct; ++ ddev = udev_device_new_from_syspath (udev, syspath); ++ parent_dev = ++ udev_device_get_parent_with_subsystem_devtype (ddev, ++ "usb", ++ "usb_device"); ++ if (!parent_dev) ++ continue; ++ ++ idVendor = udev_device_get_sysattr_value (parent_dev, ++ "idVendor"); ++ if (!idVendor || strcmp (idVendor, "03f0")) ++ continue; ++ ++ idProductStr = udev_device_get_sysattr_value (parent_dev, ++ "idProduct"); ++ if (!idProductStr || ++ strtoul (idProductStr, NULL, 16) != ++ dev->descriptor.idProduct) ++ continue; ++ ++ serialstr = udev_device_get_sysattr_value (parent_dev, ++ "serial"); ++ if (!serialstr || strcmp (serialstr, serial)) ++ continue; ++ ++ ieee1284_id = udev_device_get_sysattr_value (ddev, ++ "ieee1284_id"); ++ if (!ieee1284_id) ++ continue; ++ ++ strncpy (id, ieee1284_id, len); ++ id[len - 1] = '\0'; ++ } ++ ++ udev_enumerate_unref (en); ++ udev_unref (udev); ++ } + + return; +} @@ -153,7 +206,7 @@ int __attribute__ ((visibility ("hidden"))) musb_probe_devices(char *lst, int lst_size, int *cnt) { struct usb_bus *bus; -@@ -2006,6 +2145,7 @@ +@@ -2006,6 +2098,7 @@ int __attribute__ ((visibility ("hidden" if (model[0]) { @@ -161,7 +214,7 @@ snprintf(sz, sizeof(sz), "hp:/usb/%s?serial=%s", model, serial); /* See if device is supported by hplip. */ -@@ -2016,17 +2156,19 @@ +@@ -2016,17 +2109,19 @@ int __attribute__ ((visibility ("hidden" continue; /* ignor, not supported */ } @@ -192,8 +245,9 @@ *cnt+=1; } } +diff -up hplip-3.9.2/Makefile.am.device-id hplip-3.9.2/Makefile.am --- hplip-3.9.2/Makefile.am.device-id 2009-02-20 00:36:58.000000000 +0000 -+++ hplip-3.9.2/Makefile.am 2009-07-21 23:41:16.262138141 +0100 ++++ hplip-3.9.2/Makefile.am 2009-07-23 18:12:15.843895808 +0100 @@ -218,9 +218,9 @@ libhpmud_la_SOURCES = io/hpmud/hpmud.c i io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h @@ -206,8 +260,9 @@ endif libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\" +diff -up hplip-3.9.2/Makefile.in.device-id hplip-3.9.2/Makefile.in --- hplip-3.9.2/Makefile.in.device-id 2009-02-20 00:37:52.000000000 +0000 -+++ hplip-3.9.2/Makefile.in 2009-07-21 23:41:16.272138156 +0100 ++++ hplip-3.9.2/Makefile.in 2009-07-23 18:12:15.850895526 +0100 @@ -3954,8 +3954,8 @@ dist_unrel_DATA = @HPLIP_BUILD_TRUE@ io/hpmud/hpmud.h io/hpmud/hpmudi.h io/hpmud/list.h io/hpmud/mlc.h io/hpmud/musb.h io/hpmud/pml.h io/hpmud/dot4.c \ @HPLIP_BUILD_TRUE@ io/hpmud/dot4.h io/hpmud/jd.c io/hpmud/jd.h io/hpmud/pp.c io/hpmud/pp.h Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/F-11/hplip.spec,v retrieving revision 1.206 retrieving revision 1.207 diff -u -p -r1.206 -r1.207 --- hplip.spec 23 Jul 2009 10:08:50 -0000 1.206 +++ hplip.spec 23 Jul 2009 17:30:23 -0000 1.207 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -336,6 +336,9 @@ fi exit 0 %changelog +* Thu Jul 23 2009 Tim Waugh 3.9.2-8 +- Use existing libusb-using routines to try fetching Device ID. + * Thu Jul 23 2009 Tim Waugh 3.9.2-7 - Error checking in the libudev device-id fallback code. From peter at fedoraproject.org Thu Jul 23 17:29:37 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Thu, 23 Jul 2009 17:29:37 +0000 (UTC) Subject: rpms/b43-openfwwf/F-11 .cvsignore, 1.2, 1.3 b43-openfwwf.spec, 1.1, 1.2 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723172937.5B89E11C0093@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/b43-openfwwf/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2917/F-11 Modified Files: .cvsignore b43-openfwwf.spec import.log sources Log Message: ver. 5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Jul 2009 04:22:19 -0000 1.2 +++ .cvsignore 23 Jul 2009 17:29:06 -0000 1.3 @@ -1 +1 @@ -openfwwf-5.1.tar.gz +openfwwf-5.2.tar.gz Index: b43-openfwwf.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-11/b43-openfwwf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- b43-openfwwf.spec 7 Jul 2009 04:22:19 -0000 1.1 +++ b43-openfwwf.spec 23 Jul 2009 17:29:07 -0000 1.2 @@ -1,11 +1,11 @@ Name: b43-openfwwf -Version: 5.1 -Release: 3%{?dist} +Version: 5.2 +Release: 1%{?dist} Summary: Open firmware for some Broadcom 43xx series WLAN chip Group: System Environment/Kernel License: GPLv2 URL: http://www.ing.unibs.it/openfwwf/ -Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-5.1.tar.gz +Source0: http://www.ing.unibs.it/openfwwf/firmware/openfwwf-%{version}.tar.gz Source1: README.openfwwf Source2: openfwwf.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -21,7 +21,7 @@ Currently supported models are 4306, 431 %prep -%setup -q -n openfwwf-5.1 +%setup -q -n openfwwf-%{version} sed -i s/"-o 0 -g 0"// Makefile install -p -m 0644 %{SOURCE1} . install -p -m 0644 %{SOURCE2} . @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Peter Lemenkov 5.2-1 +- Ver. 5.2 + * Mon Jun 29 2009 Peter Lemenkov 5.1-3 - Changed README a lot - Changed description Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 7 Jul 2009 04:22:19 -0000 1.1 +++ import.log 23 Jul 2009 17:29:07 -0000 1.2 @@ -1 +1,2 @@ b43-openfwwf-5_1-3_fc11:F-11:b43-openfwwf-5.1-3.fc11.src.rpm:1246940515 +b43-openfwwf-5_2-1_fc11:F-11:b43-openfwwf-5.2-1.fc11.src.rpm:1248370114 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Jul 2009 04:22:19 -0000 1.2 +++ sources 23 Jul 2009 17:29:07 -0000 1.3 @@ -1 +1 @@ -3510c133393bb4911c4aa35742cefcfd openfwwf-5.1.tar.gz +e045a135453274e439ae183f8498b0fa openfwwf-5.2.tar.gz From kyle at fedoraproject.org Thu Jul 23 18:05:38 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Thu, 23 Jul 2009 18:05:38 +0000 (UTC) Subject: rpms/kernel/F-11 iwl3945-add-debugging-for-wrong-command-queue.patch, NONE, 1.1 iwl3945-fix-rfkill-sw-and-hw-mishmash.patch, NONE, 1.1 iwl3945-release-resources-before-shutting-down.patch, NONE, 1.1 kernel.spec, 1.1678, 1.1679 Message-ID: <20090723180538.5CF1011C0093@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18623 Modified Files: kernel.spec Added Files: iwl3945-add-debugging-for-wrong-command-queue.patch iwl3945-fix-rfkill-sw-and-hw-mishmash.patch iwl3945-release-resources-before-shutting-down.patch Log Message: * Thu Jul 23 2009 Kyle McMartin 2.6.29.6-217 - Apply three patches requested by sgruszka at redhat.com: - iwl3945-release-resources-before-shutting-down.patch - iwl3945-add-debugging-for-wrong-command-queue.patch - iwl3945-fix-rfkill-sw-and-hw-mishmash.patch iwl3945-add-debugging-for-wrong-command-queue.patch: iwl3945-base.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) --- NEW FILE iwl3945-add-debugging-for-wrong-command-queue.patch --- commit 638d0eb9197d1e285451f6594184fcfc9c2a5d44 Author: Chatre, Reinette Date: Mon Jan 19 15:30:24 2009 -0800 iwl3945: add debugging for wrong command queue We encountered a problem related to this BUG and need to obtain more debugging information. See bug report at http://marc.info/?l=linux-wireless&m=123147215829854&w=2 Signed-off-by: Reinette Chatre Signed-off-by: John W. Linville --- drivers/net/wireless/iwlwifi/iwl3945-base.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 8cb0fa2..5011a79 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c @@ -3349,7 +3349,14 @@ static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv, int cmd_index; struct iwl3945_cmd *cmd; - BUG_ON(txq_id != IWL_CMD_QUEUE_NUM); + if (WARN(txq_id != IWL_CMD_QUEUE_NUM, + "wrong command queue %d, sequence 0x%X readp=%d writep=%d\n", + txq_id, sequence, + priv->txq[IWL_CMD_QUEUE_NUM].q.read_ptr, + priv->txq[IWL_CMD_QUEUE_NUM].q.write_ptr)) { + /* Not in F11: iwl_print_hex_dump(priv, IWL_DL_INFO , rxb, 32); */ + return; + } cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge); cmd = &priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index]; -- 1.6.2.5 _______________________________________________ Fedora-kernel-list mailing list Fedora-kernel-list at redhat.com https://www.redhat.com/mailman/listinfo/fedora-kernel-list iwl3945-fix-rfkill-sw-and-hw-mishmash.patch: iwl3945-base.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) --- NEW FILE iwl3945-fix-rfkill-sw-and-hw-mishmash.patch --- Disable SW switch regardless of HW switch state (we can only enable radio when both SW and HW rfkill switches are off). Report to rfkill subsystem SW switch state before HW switch state to move rfkill subsystem to SOFT_BLOCK rather than HARD_BLOCK, otherwise in some conditions we would not be able to turn radio back on. --- drivers/net/wireless/iwlwifi/iwl3945-base.c | 17 +++++++---------- 1 files changed, 7 insertions(+), 10 deletions(-) diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 5011a79..6065921 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c @@ -8216,7 +8216,8 @@ static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state) case RFKILL_STATE_UNBLOCKED: if (iwl3945_is_rfkill_hw(priv)) { err = -EBUSY; - goto out_unlock; + /* pass error to rfkill core to make it state HARD + * BLOCKED and disable software kill switch */ } iwl3945_radio_kill_sw(priv, 0); break; @@ -8227,9 +8228,8 @@ static int iwl3945_rfkill_soft_rf_kill(void *data, enum rfkill_state state) IWL_WARNING("we received unexpected RFKILL state %d\n", state); break; } -out_unlock: - mutex_unlock(&priv->mutex); + mutex_unlock(&priv->mutex); return err; } @@ -8291,15 +8291,12 @@ void iwl3945_rfkill_set_hw_state(struct iwl3945_priv *priv) if (!priv->rfkill) return; - if (iwl3945_is_rfkill_hw(priv)) { + if (iwl3945_is_rfkill_sw(priv)) + rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED); + else if (iwl3945_is_rfkill_hw(priv)) rfkill_force_state(priv->rfkill, RFKILL_STATE_HARD_BLOCKED); - return; - } - - if (!iwl3945_is_rfkill_sw(priv)) - rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED); else - rfkill_force_state(priv->rfkill, RFKILL_STATE_SOFT_BLOCKED); + rfkill_force_state(priv->rfkill, RFKILL_STATE_UNBLOCKED); } #endif -- 1.6.2.5 _______________________________________________ Fedora-kernel-list mailing list Fedora-kernel-list at redhat.com https://www.redhat.com/mailman/listinfo/fedora-kernel-list iwl3945-release-resources-before-shutting-down.patch: iwl3945-base.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) --- NEW FILE iwl3945-release-resources-before-shutting-down.patch --- commit d552bfb65241a35d48e44ddb0d27e0454f579ab4 Author: Kolekar, Abhijeet Date: Fri Dec 19 10:37:41 2008 +0800 iwl3945: release resources before shutting down Release resource before shutting down and notify upper stack. Signed-off-by: Abhijeet Kolekar Signed-off-by: Zhu Yi Signed-off-by: John W. Linville --- drivers/net/wireless/iwlwifi/iwl3945-base.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 22e7e99..8cb0fa2 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c @@ -8096,7 +8096,12 @@ static void __devexit iwl3945_pci_remove(struct pci_dev *pdev) set_bit(STATUS_EXIT_PENDING, &priv->status); - iwl3945_down(priv); + if (priv->mac80211_registered) { + ieee80211_unregister_hw(priv->hw); + priv->mac80211_registered = 0; + } else { + iwl3945_down(priv); + } /* make sure we flush any pending irq or * tasklet for the driver @@ -8121,9 +8126,6 @@ static void __devexit iwl3945_pci_remove(struct pci_dev *pdev) iwl3945_unset_hw_setting(priv); iwl3945_clear_stations_table(priv); - if (priv->mac80211_registered) - ieee80211_unregister_hw(priv->hw); - /*netif_stop_queue(dev); */ flush_workqueue(priv->workqueue); -- 1.6.2.5 _______________________________________________ Fedora-kernel-list mailing list Fedora-kernel-list at redhat.com https://www.redhat.com/mailman/listinfo/fedora-kernel-list Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1678 retrieving revision 1.1679 diff -u -p -r1.1678 -r1.1679 --- kernel.spec 23 Jul 2009 15:06:37 -0000 1.1678 +++ kernel.spec 23 Jul 2009 18:05:37 -0000 1.1679 @@ -684,6 +684,9 @@ Patch684: linux-2.6-iwlagn-fix-hw-rfkill Patch685: linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch Patch686: linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch Patch687: mac80211-don-t-drop-nullfunc-frames-during-software.patch +Patch690: iwl3945-release-resources-before-shutting-down.patch +Patch691: iwl3945-add-debugging-for-wrong-command-queue.patch +Patch692: iwl3945-fix-rfkill-sw-and-hw-mishmash.patch Patch700: linux-2.6-dma-debug-fixes.patch @@ -1391,6 +1394,10 @@ ApplyPatch linux-2.6-mac80211-fix-beacon ApplyPatch mac80211-don-t-drop-nullfunc-frames-during-software.patch +ApplyPatch iwl3945-release-resources-before-shutting-down.patch +ApplyPatch iwl3945-add-debugging-for-wrong-command-queue.patch +ApplyPatch iwl3945-fix-rfkill-sw-and-hw-mishmash.patch + # Fix up DMA debug code ApplyPatch linux-2.6-dma-debug-fixes.patch @@ -2102,6 +2109,12 @@ fi # and build. %changelog +* Thu Jul 23 2009 Kyle McMartin 2.6.29.6-217 +- Apply three patches requested by sgruszka at redhat.com: + - iwl3945-release-resources-before-shutting-down.patch + - iwl3945-add-debugging-for-wrong-command-queue.patch + - iwl3945-fix-rfkill-sw-and-hw-mishmash.patch + * Thu Jul 23 2009 Jarod Wilson - virtio_blk: don't bounce highmem requests, works around a frequent oops in kvm guests using virtio block devices (#510304) From nb at fedoraproject.org Thu Jul 23 18:11:15 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 18:11:15 +0000 (UTC) Subject: rpms/znc/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 znc.spec, 1.5, 1.6 znc-0.072-webadmin.diff, 1.1, NONE Message-ID: <20090723181115.E6DF111C0093@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20791 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.072-webadmin.diff Log Message: Updating to 0.074-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jul 2009 01:06:06 -0000 1.3 +++ .cvsignore 23 Jul 2009 18:10:45 -0000 1.4 @@ -1 +1 @@ -znc-0.072.tar.gz +znc-0.074.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Jul 2009 01:06:06 -0000 1.3 +++ sources 23 Jul 2009 18:10:45 -0000 1.4 @@ -1 +1 @@ -28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz +378187acd114769f8f97ef2d4b19da25 znc-0.074.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- znc.spec 23 Jul 2009 02:53:18 -0000 1.5 +++ znc.spec 23 Jul 2009 18:10:45 -0000 1.6 @@ -1,16 +1,16 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.072 -Release: 3%{?dist} +Version: 0.074 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +BuildRequires: c-ares-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. @@ -33,14 +33,13 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 --enable-sasl --disable-c-ares + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -66,6 +65,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Thu Jul 23 2009 Nick Bebout - 0.074-1 +- Update to 0.074 * Wed Jul 22 2009 Nick Bebout - 0.072-3 - Fix date in changelog, disable c-ares * Wed Jul 22 2009 Nick Bebout - 0.072-2 --- znc-0.072-webadmin.diff DELETED --- From nb at fedoraproject.org Thu Jul 23 18:13:17 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 18:13:17 +0000 (UTC) Subject: rpms/znc/EL-5 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 znc.spec, 1.4, 1.5 znc-0.072-webadmin.diff, 1.1, NONE Message-ID: <20090723181317.4487C11C00D6@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21714 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.072-webadmin.diff Log Message: Update to 0.074-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jul 2009 01:22:42 -0000 1.3 +++ .cvsignore 23 Jul 2009 18:12:46 -0000 1.4 @@ -1 +1 @@ -znc-0.072.tar.gz +znc-0.074.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Jul 2009 01:22:42 -0000 1.3 +++ sources 23 Jul 2009 18:12:46 -0000 1.4 @@ -1 +1 @@ -28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz +378187acd114769f8f97ef2d4b19da25 znc-0.074.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/EL-5/znc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- znc.spec 23 Jul 2009 02:56:55 -0000 1.4 +++ znc.spec 23 Jul 2009 18:12:47 -0000 1.5 @@ -1,16 +1,16 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.072 -Release: 3%{?dist} +Version: 0.074 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +BuildRequires: c-ares-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. @@ -33,14 +33,13 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 --enable-sasl --disable-c-ares + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -66,6 +65,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Thu Jul 23 2009 Nick Bebout - 0.074-1 +- Update to 0.074 * Wed Jul 22 2009 Nick Bebout - 0.072-3 - Fix date in changelog, disable c-ares * Wed Jul 22 2009 Nick Bebout - 0.072-2 --- znc-0.072-webadmin.diff DELETED --- From leigh123linux at fedoraproject.org Thu Jul 23 18:13:17 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 18:13:17 +0000 (UTC) Subject: rpms/compizconfig-python/devel .cvsignore, 1.6, 1.7 compizconfig-python.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090723181317.2EAE811C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/compizconfig-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21766 Modified Files: .cvsignore compizconfig-python.spec sources Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - update the defines python_sitelib & python_sitearch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-python/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 3 Dec 2008 16:31:00 -0000 1.6 +++ .cvsignore 23 Jul 2009 18:12:46 -0000 1.7 @@ -1 +1 @@ -compizconfig-python-0.7.8.tar.bz2 +compizconfig-python-0.8.2.tar.bz2 Index: compizconfig-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-python/devel/compizconfig-python.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- compizconfig-python.spec 24 Feb 2009 08:48:10 -0000 1.9 +++ compizconfig-python.spec 23 Jul 2009 18:12:46 -0000 1.10 @@ -1,10 +1,10 @@ -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define basever 0.7.8 +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%define basever 0.8.2 Name: compizconfig-python -Version: 0.7.8 -Release: 3%{?dist} +Version: 0.8.2 +Release: 1%{?dist} Summary: Python bindings for the Compiz Configuration System Group: Development/Libraries @@ -53,6 +53,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-1 +- update to 0.8.2 +- update the defines python_sitelib & python_sitearch + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-python/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 3 Dec 2008 16:31:00 -0000 1.6 +++ sources 23 Jul 2009 18:12:46 -0000 1.7 @@ -1 +1 @@ -f75c3a5a3ef770280e46c3a762d456e3 compizconfig-python-0.7.8.tar.bz2 +7c6e8cbbbf629fb99ff7570d117355fb compizconfig-python-0.8.2.tar.bz2 From sseago at fedoraproject.org Thu Jul 23 18:14:47 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 18:14:47 +0000 (UTC) Subject: rpms/ovirt-server/devel import.log, NONE, 1.1 ovirt-server.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723181447.AB88111C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/ovirt-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22873/devel Modified Files: .cvsignore sources Added Files: import.log ovirt-server.spec Log Message: Initial import after review (rhbz #513069) --- NEW FILE import.log --- ovirt-server-0_100-1_fc12:HEAD:ovirt-server-0.100-1.fc12.src.rpm:1248372981 --- NEW FILE ovirt-server.spec --- %define pbuild %{_builddir}/%{name}-%{version} %define app_root %{_datadir}/%{name} %define acehome %{_datadir}/ace Summary: The oVirt Server Suite Name: ovirt-server Version: 0.100 Release: 1%{?dist}%{?extra_release} # full source URL will be added with the next oVirt release. This is a pre-release # code drop to make sure we get the package approved by f12 feature freeze. Source0: %{name}-%{version}.tar.gz #Entire source code is GPL except for vendor/plugins/will_paginate and #vendor/plugins/betternestedset, which are MIT, and #public/javascripts/jquery.*, which is both MIT and GPL, and #src/flexchart/com/adobe/serialization/json/* which are BSD License: GPLv2+ and MIT and BSD Group: Applications/System Requires: ruby >= 1.8.1 Requires: ruby(abi) = 1.8 Requires: rubygem(activerecord) >= 2.1.1-2 Requires: rubygem(activeldap) >= 0.10.0 Requires: rubygem(rails) >= 2.1.1 Requires: rubygem(mongrel) >= 1.0.1 Requires: rubygem(krb5-auth) >= 0.6 Requires: rubygem(cobbler) >= 0.1.2 %if 0%{?fedora} >= 11 Requires: rubygem(gettext_rails) %else Requires: rubygem(gettext) %endif Requires: ruby-flexmock Requires: postgresql-server Requires: ruby-postgres Requires: xapian-bindings-ruby Requires: xapian-core Requires: pwgen Requires: httpd >= 2.0 Requires: mod_auth_kerb Requires: ruby-libvirt >= 0.0.2 Requires: rrdtool-ruby Requires: iscsi-initiator-utils Requires: cyrus-sasl-gssapi Requires: ovirt-docs Requires: qpidd Requires: ruby-qpid >= 0.5.776856 Requires: qpidc Requires: qmf Requires: ruby-qmf Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service BuildRequires: ruby >= 1.8.1 BuildRequires: ruby-devel BuildRequires: rubygem(gettext) BuildRequires: rubygem(rake) >= 0.7 BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot URL: http://ovirt.org/ %package installer Summary: Installer modules for the oVirt Server Suite Group: Applications/System Requires: ruby(abi) = 1.8 Requires: ace Requires: ace-postgres Requires: rubygem(highline) Requires: hal Requires: %{name} = %{version}-%{release} %description The Server Suite for oVirt. %description installer The Installer for the ovirt server suite %prep %setup -q %build %install test "x%{buildroot}" != "x" && rm -rf %{buildroot} mkdir %{buildroot} %{__install} -d -m0755 %{buildroot}%{_bindir} %{__install} -d -m0755 %{buildroot}%{_datadir} %{__install} -d -m0755 %{buildroot}%{_sbindir} %{__install} -d -m0755 %{buildroot}%{_initrddir} %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/sysconfig %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/httpd/conf.d %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/%{name} %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/%{name}/db %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/logrotate.d %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/cron.d %{__install} -d -m0755 %{buildroot}%{_localstatedir}/lib/%{name} %{__install} -d -m0755 %{buildroot}%{_localstatedir}/log/%{name} %{__install} -d -m0755 %{buildroot}%{_localstatedir}/run/%{name} %{__install} -d -m0755 %{buildroot}%{app_root} %{__install} -d -m0755 %{buildroot}/%{acehome} # Creating these files now to make sure the logfiles will be owned # by ovirt:ovirt. This is a temporary workaround while we've still # got root-owned daemon processes. Once we resolve that issue # these files will no longer be added explicitly here. touch %{buildroot}%{_localstatedir}/log/%{name}/mongrel.log touch %{buildroot}%{_localstatedir}/log/%{name}/rails.log touch %{buildroot}%{_localstatedir}/log/%{name}/taskomatic.log touch %{buildroot}%{_localstatedir}/log/%{name}/db-omatic.log %{__install} -p -m0644 %{pbuild}/conf/%{name}.conf %{buildroot}%{_sysconfdir}/httpd/conf.d %{__install} -p -m0644 %{pbuild}/conf/%{name}.crontab %{buildroot}%{_sysconfdir}/cron.d/%{name} %{__install} -p -m0644 %{pbuild}/conf/%{name}.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-browser %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-register %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-db-omatic %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-agent %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-collect %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-mongrel-rails %{buildroot}%{_initrddir} %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-mongrel-rails.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-mongrel-rails %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-rails.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-rails %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-vnc-proxy.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-vnc-proxy %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-taskomatic %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-vnc-proxy %{buildroot}%{_initrddir} # copy over all of the src directory... %{__cp} -a %{pbuild}/src/* %{buildroot}%{app_root} # move Flash movie to the public folder %{__install} -d -m0755 %{buildroot}%{app_root}/public/swfs # not building Flash for now until we've got flex compiler in Fedora # move configs to /etc, keeping symlinks for Rails %{__mv} %{buildroot}%{app_root}/config/database.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/ldap.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/cobbler.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/development.rb %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/production.rb %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/test.rb %{buildroot}%{_sysconfdir}/%{name} %{__ln_s} %{_sysconfdir}/%{name}/database.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/ldap.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/cobbler.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/development.rb %{buildroot}%{app_root}/config/environments %{__ln_s} %{_sysconfdir}/%{name}/production.rb %{buildroot}%{app_root}/config/environments %{__ln_s} %{_sysconfdir}/%{name}/test.rb %{buildroot}%{app_root}/config/environments # remove the files not needed for the installation %{__rm} -f %{buildroot}%{app_root}/task-omatic/.gitignore %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/will_paginate/.gitignore %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/will_paginate/.manifest %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/acts_as_xapian/.gitignore %{__cp} -a %{pbuild}/scripts/ovirt-add-host %{buildroot}%{_bindir} %{__cp} -a %{pbuild}/scripts/ovirt-vm2node %{buildroot}%{_bindir} %{__cp} -a %{pbuild}/scripts/ovirt-reindex-search %{buildroot}%{_sbindir} %{__cp} -a %{pbuild}/scripts/ovirt-update-search %{buildroot}%{_sbindir} %{__rm} -rf %{buildroot}%{app_root}/tmp %{__mkdir} %{buildroot}%{_localstatedir}/lib/%{name}/tmp %{__ln_s} %{_localstatedir}/lib/%{name}/tmp %{buildroot}%{app_root}/tmp # Set up the installer %{__cp} -pr %{pbuild}/installer/modules %{buildroot}/%{acehome} %{__cp} -pr %{pbuild}/installer/appliances %{buildroot}/%{acehome} %{__cp} -pr %{pbuild}/installer/bin/ovirt-installer %{buildroot}%{_sbindir} # setup the anyterm config %{__mkdir} -p %{buildroot}%{_datadir}/ovirt-anyterm/ for f in anyterm/*.{html,css,js,png,gif}; do %{__install} -m644 "$f" %{buildroot}%{_datadir}/ovirt-anyterm/ done %clean rm -rf %{buildroot} %pre getent group ovirt >/dev/null || /usr/sbin/groupadd -g 108 -r ovirt 2>/dev/null || : getent passwd ovirt >/dev/null || \ /usr/sbin/useradd -u 108 -g ovirt -c "oVirt" \ -s /sbin/nologin -r -d /var/ovirt ovirt 2> /dev/null || : %post # script %define daemon_chkconfig_post(d:) \ /sbin/chkconfig --list %{-d*} >& /dev/null \ LISTRET=$? \ /sbin/chkconfig --add %{-d*} \ if [ $LISTRET -ne 0 ]; then \ /sbin/chkconfig %{-d*} on \ fi \ %{nil} # if this is the initial RPM install, then we want to turn the new services # on; otherwise, we respect the choices the administrator already has made. # check this by seeing if each daemon is already installed %daemon_chkconfig_post -d ovirt-host-browser %daemon_chkconfig_post -d ovirt-host-register %daemon_chkconfig_post -d ovirt-db-omatic %daemon_chkconfig_post -d ovirt-agent %daemon_chkconfig_post -d ovirt-host-collect %daemon_chkconfig_post -d ovirt-mongrel-rails %daemon_chkconfig_post -d ovirt-taskomatic %daemon_chkconfig_post -d ovirt-vnc-proxy %preun if [ "$1" = 0 ] ; then /sbin/service ovirt-host-browser stop > /dev/null 2>&1 /sbin/service ovirt-host-register stop > /dev/null 2>&1 /sbin/service ovirt-db-omatic stop > /dev/null 2>&1 /sbin/service ovirt-agent stop > /dev/null 2>&1 /sbin/service ovirt-host-collect stop > /dev/null 2>&1 /sbin/service ovirt-mongrel-rails stop > /dev/null 2>&1 /sbin/service ovirt-taskomatic stop > /dev/null 2>&1 /sbin/service ovirt-vnc-proxy stop > /dev/null 2>&1 /sbin/chkconfig --del ovirt-host-browser /sbin/chkconfig --del ovirt-host-register /sbin/chkconfig --del ovirt-db-omatic /sbin/chkconfig --del ovirt-agent /sbin/chkconfig --del ovirt-host-collect /sbin/chkconfig --del ovirt-mongrel-rails /sbin/chkconfig --del ovirt-taskomatic /sbin/chkconfig --del ovirt-vnc-proxy fi %files %defattr(-,root,root,0755) %{_sbindir}/ovirt-reindex-search %{_sbindir}/ovirt-update-search %{_bindir}/ovirt-add-host %{_bindir}/ovirt-vm2node %{_initrddir}/ovirt-host-browser %{_initrddir}/ovirt-host-register %{_initrddir}/ovirt-db-omatic %{_initrddir}/ovirt-agent %{_initrddir}/ovirt-host-collect %{_initrddir}/ovirt-mongrel-rails %{_initrddir}/ovirt-taskomatic %{_initrddir}/ovirt-vnc-proxy %config(noreplace) %{_sysconfdir}/cron.d/%{name} %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-mongrel-rails %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-rails %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-vnc-proxy %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %doc README AUTHORS COPYING %attr(-, ovirt, ovirt) %{_localstatedir}/lib/%{name} %attr(-, ovirt, ovirt) %{_localstatedir}/run/%{name} %attr(-, ovirt, ovirt) %{_localstatedir}/log/%{name} %{app_root} %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/db %config(noreplace) %{_sysconfdir}/%{name}/database.yml %config(noreplace) %{_sysconfdir}/%{name}/ldap.yml %config(noreplace) %{_sysconfdir}/%{name}/cobbler.yml %config(noreplace) %{_sysconfdir}/%{name}/development.rb %config(noreplace) %{_sysconfdir}/%{name}/production.rb %config(noreplace) %{_sysconfdir}/%{name}/test.rb %{_datadir}/ovirt-anyterm %files installer %defattr(-,root,root,0755) %{_sbindir}/ovirt-installer %{acehome} %doc README AUTHORS COPYING %changelog * Fri Jul 17 2009 Scott Seago - 0.100-1 - rpmlint fixes for Fedora 12 inclusion * Thu May 29 2008 Alan Pevec - 0.0.5-0 - use rubygem-krb5-auth * Fri Nov 2 2007 - 0.0.1-1 - Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:46:03 -0000 1.1 +++ .cvsignore 23 Jul 2009 18:14:17 -0000 1.2 @@ -0,0 +1 @@ +ovirt-server-0.100.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:46:03 -0000 1.1 +++ sources 23 Jul 2009 18:14:17 -0000 1.2 @@ -0,0 +1 @@ +1528b87eaa393fa87d459d076c96c853 ovirt-server-0.100.tar.gz From nb at fedoraproject.org Thu Jul 23 18:17:00 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 18:17:00 +0000 (UTC) Subject: rpms/znc/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 znc.spec, 1.4, 1.5 znc-0.072-webadmin.diff, 1.1, NONE Message-ID: <20090723181700.A65B211C0093@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24722 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.072-webadmin.diff Log Message: Update to 0.074-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jul 2009 01:15:41 -0000 1.3 +++ .cvsignore 23 Jul 2009 18:17:00 -0000 1.4 @@ -1 +1 @@ -znc-0.072.tar.gz +znc-0.074.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Jul 2009 01:15:41 -0000 1.3 +++ sources 23 Jul 2009 18:17:00 -0000 1.4 @@ -1 +1 @@ -28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz +378187acd114769f8f97ef2d4b19da25 znc-0.074.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-11/znc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- znc.spec 23 Jul 2009 02:55:32 -0000 1.4 +++ znc.spec 23 Jul 2009 18:17:00 -0000 1.5 @@ -1,16 +1,16 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.072 -Release: 3%{?dist} +Version: 0.074 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +BuildRequires: c-ares-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. @@ -33,14 +33,13 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 --enable-sasl --disable-c-ares + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -66,6 +65,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Thu Jul 23 2009 Nick Bebout - 0.074-1 +- Update to 0.074 * Wed Jul 22 2009 Nick Bebout - 0.072-3 - Fix date in changelog, disable c-ares * Wed Jul 22 2009 Nick Bebout - 0.072-2 --- znc-0.072-webadmin.diff DELETED --- From jforbes at fedoraproject.org Thu Jul 23 18:25:23 2009 From: jforbes at fedoraproject.org (jforbes) Date: Thu, 23 Jul 2009 18:25:23 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-ksm-kvm.patch, NONE, 1.1 linux-2.6-ksm.patch, NONE, 1.1 config-generic, 1.310, 1.311 kernel.spec, 1.1650, 1.1651 Message-ID: <20090723182523.5B94911C0093@cvs1.fedora.phx.redhat.com> Author: jforbes Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28593 Modified Files: config-generic kernel.spec Added Files: linux-2.6-ksm-kvm.patch linux-2.6-ksm.patch Log Message: Add KSM support linux-2.6-ksm-kvm.patch: arch/x86/include/asm/kvm_host.h | 1 arch/x86/kvm/mmu.c | 89 ++++++++++++++++++++++++++++++++-------- arch/x86/kvm/paging_tmpl.h | 11 +++- virt/kvm/kvm_main.c | 14 ++++++ 4 files changed, 96 insertions(+), 19 deletions(-) --- NEW FILE linux-2.6-ksm-kvm.patch --- When using mmu notifiers, we are allowed to remove the page count reference tooken by get_user_pages to a specific page that is mapped inside the shadow page tables. This is needed so we can balance the pagecount against mapcount checking. (Right now kvm increase the pagecount and does not increase the mapcount when mapping page into shadow page table entry, so when comparing pagecount against mapcount, you have no reliable result.) add SPTE_HOST_WRITEABLE flag notify that the host physical page we are pointing to from the spte is write protected, and therefore we cant change its access to be write unless we run get_user_pages(write = 1). (this is needed for change_pte support in kvm) support for change_pte mmu notifiers is needed for kvm if it want ksm to directly map pages into its shadow page tables. Signed-off-by: Izik Eidus Signed-off-by: Justin M. Forbes --- --- linux-2.6.30.x86_64/arch/x86/include/asm/kvm_host.h 2009-07-23 11:24:43.000000000 -0500 +++ linux-2.6.30.x86_64-ksm/arch/x86/include/asm/kvm_host.h 2009-07-23 12:43:57.000000000 -0500 @@ -796,5 +796,6 @@ asmlinkage void kvm_handle_fault_on_rebo int kvm_unmap_hva(struct kvm *kvm, unsigned long hva); int kvm_age_hva(struct kvm *kvm, unsigned long hva); int cpuid_maxphyaddr(struct kvm_vcpu *vcpu); +void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte); #endif /* _ASM_X86_KVM_HOST_H */ --- linux-2.6.30.x86_64/arch/x86/kvm/mmu.c 2009-07-23 11:24:43.000000000 -0500 +++ linux-2.6.30.x86_64-ksm/arch/x86/kvm/mmu.c 2009-07-23 12:42:36.000000000 -0500 @@ -139,6 +139,8 @@ module_param(oos_shadow, bool, 0644); #define ACC_USER_MASK PT_USER_MASK #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK) +#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT) + #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level) struct kvm_rmap_desc { @@ -254,6 +256,11 @@ static pfn_t spte_to_pfn(u64 pte) return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT; } +static pte_t ptep_val(pte_t *ptep) +{ + return *ptep; +} + static gfn_t pse36_gfn_delta(u32 gpte) { int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT; @@ -566,9 +573,7 @@ static void rmap_remove(struct kvm *kvm, if (*spte & shadow_accessed_mask) kvm_set_pfn_accessed(pfn); if (is_writeble_pte(*spte)) - kvm_release_pfn_dirty(pfn); - else - kvm_release_pfn_clean(pfn); + kvm_set_pfn_dirty(pfn); rmapp = gfn_to_rmap(kvm, sp->gfns[spte - sp->spt], is_large_pte(*spte)); if (!*rmapp) { printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte); @@ -677,7 +682,8 @@ static int rmap_write_protect(struct kvm return write_protected; } -static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp) +static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp, + unsigned long data) { u64 *spte; int need_tlb_flush = 0; @@ -692,8 +698,48 @@ static int kvm_unmap_rmapp(struct kvm *k return need_tlb_flush; } +static int kvm_set_pte_rmapp(struct kvm *kvm, unsigned long *rmapp, + unsigned long data) +{ + int need_flush = 0; + u64 *spte, new_spte; + pte_t *ptep = (pte_t *)data; + pfn_t new_pfn; + + new_pfn = pte_pfn(ptep_val(ptep)); + spte = rmap_next(kvm, rmapp, NULL); + while (spte) { + BUG_ON(!is_shadow_present_pte(*spte)); + rmap_printk("kvm_set_pte_rmapp: spte %p %llx\n", spte, *spte); + need_flush = 1; + if (pte_write(ptep_val(ptep))) { + rmap_remove(kvm, spte); + set_shadow_pte(spte, shadow_trap_nonpresent_pte); + spte = rmap_next(kvm, rmapp, NULL); + } else { + new_spte = *spte &~ (PT64_BASE_ADDR_MASK); + new_spte |= new_pfn << PAGE_SHIFT; + + if (!pte_write(ptep_val(ptep))) { + new_spte &= ~PT_WRITABLE_MASK; + new_spte &= ~SPTE_HOST_WRITEABLE; + if (is_writeble_pte(*spte)) + kvm_set_pfn_dirty(spte_to_pfn(*spte)); + } + set_shadow_pte(spte, new_spte); + spte = rmap_next(kvm, rmapp, spte); + } + } + if (need_flush) + kvm_flush_remote_tlbs(kvm); + + return 0; +} + static int kvm_handle_hva(struct kvm *kvm, unsigned long hva, - int (*handler)(struct kvm *kvm, unsigned long *rmapp)) + unsigned long data, + int (*handler)(struct kvm *kvm, unsigned long *rmapp, + unsigned long data)) { int i; int retval = 0; @@ -714,11 +760,13 @@ static int kvm_handle_hva(struct kvm *kv end = start + (memslot->npages << PAGE_SHIFT); if (hva >= start && hva < end) { gfn_t gfn_offset = (hva - start) >> PAGE_SHIFT; - retval |= handler(kvm, &memslot->rmap[gfn_offset]); + retval |= handler(kvm, &memslot->rmap[gfn_offset], + data); retval |= handler(kvm, &memslot->lpage_info[ gfn_offset / - KVM_PAGES_PER_HPAGE].rmap_pde); + KVM_PAGES_PER_HPAGE].rmap_pde, + data); } } @@ -727,10 +775,16 @@ static int kvm_handle_hva(struct kvm *kv int kvm_unmap_hva(struct kvm *kvm, unsigned long hva) { - return kvm_handle_hva(kvm, hva, kvm_unmap_rmapp); + return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp); +} + +void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte) +{ + kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp); } -static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp) +static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp, + unsigned long data) { u64 *spte; int young = 0; @@ -756,7 +810,7 @@ static int kvm_age_rmapp(struct kvm *kvm int kvm_age_hva(struct kvm *kvm, unsigned long hva) { - return kvm_handle_hva(kvm, hva, kvm_age_rmapp); + return kvm_handle_hva(kvm, hva, 0, kvm_age_rmapp); } #ifdef MMU_DEBUG @@ -1665,7 +1719,7 @@ static int set_spte(struct kvm_vcpu *vcp unsigned pte_access, int user_fault, int write_fault, int dirty, int largepage, gfn_t gfn, pfn_t pfn, bool speculative, - bool can_unsync) + bool can_unsync, bool reset_host_protection) { u64 spte; int ret = 0; @@ -1723,6 +1777,8 @@ static int set_spte(struct kvm_vcpu *vcp spte &= ~PT_WRITABLE_MASK; } } + if (reset_host_protection) + spte |= SPTE_HOST_WRITEABLE; if (pte_access & ACC_WRITE_MASK) mark_page_dirty(vcpu->kvm, gfn); @@ -1736,7 +1792,8 @@ static void mmu_set_spte(struct kvm_vcpu unsigned pt_access, unsigned pte_access, int user_fault, int write_fault, int dirty, int *ptwrite, int largepage, gfn_t gfn, - pfn_t pfn, bool speculative) + pfn_t pfn, bool speculative, + bool reset_host_protection) { int was_rmapped = 0; int was_writeble = is_writeble_pte(*shadow_pte); @@ -1765,7 +1822,8 @@ static void mmu_set_spte(struct kvm_vcpu was_rmapped = 1; } if (set_spte(vcpu, shadow_pte, pte_access, user_fault, write_fault, - dirty, largepage, gfn, pfn, speculative, true)) { + dirty, largepage, gfn, pfn, speculative, true, + reset_host_protection)) { if (write_fault) *ptwrite = 1; kvm_x86_ops->tlb_flush(vcpu); @@ -1782,8 +1840,7 @@ static void mmu_set_spte(struct kvm_vcpu page_header_update_slot(vcpu->kvm, shadow_pte, gfn); if (!was_rmapped) { rmap_add(vcpu, shadow_pte, gfn, largepage); - if (!is_rmap_pte(*shadow_pte)) - kvm_release_pfn_clean(pfn); + kvm_release_pfn_clean(pfn); } else { if (was_writeble) kvm_release_pfn_dirty(pfn); @@ -1813,7 +1870,7 @@ static int __direct_map(struct kvm_vcpu || (largepage && iterator.level == PT_DIRECTORY_LEVEL)) { mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, ACC_ALL, 0, write, 1, &pt_write, - largepage, gfn, pfn, false); + largepage, gfn, pfn, false, true); ++vcpu->stat.pf_fixed; break; } --- linux-2.6.30.x86_64/arch/x86/kvm/paging_tmpl.h 2009-07-23 11:24:43.000000000 -0500 +++ linux-2.6.30.x86_64-ksm/arch/x86/kvm/paging_tmpl.h 2009-07-23 12:41:27.000000000 -0500 @@ -266,9 +266,13 @@ static void FNAME(update_pte)(struct kvm if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq)) return; kvm_get_pfn(pfn); + /* + * we call mmu_set_spte() with reset_host_protection = true beacuse that + * vcpu->arch.update_pte.pfn was fetched from get_user_pages(write = 1). + */ mmu_set_spte(vcpu, spte, page->role.access, pte_access, 0, 0, gpte & PT_DIRTY_MASK, NULL, largepage, - gpte_to_gfn(gpte), pfn, true); + gpte_to_gfn(gpte), pfn, true, true); } /* @@ -302,7 +306,7 @@ static u64 *FNAME(fetch)(struct kvm_vcpu user_fault, write_fault, gw->ptes[gw->level-1] & PT_DIRTY_MASK, ptwrite, largepage, - gw->gfn, pfn, false); + gw->gfn, pfn, false, true); break; } @@ -552,6 +556,7 @@ static void FNAME(prefetch_page)(struct static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp) { int i, offset, nr_present; + bool reset_host_protection = 1; offset = nr_present = 0; @@ -591,7 +596,7 @@ static int FNAME(sync_page)(struct kvm_v pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte); set_spte(vcpu, &sp->spt[i], pte_access, 0, 0, is_dirty_pte(gpte), 0, gfn, - spte_to_pfn(sp->spt[i]), true, false); + spte_to_pfn(sp->spt[i]), true, false, reset_host_protection); } return !nr_present; --- linux-2.6.30.x86_64/virt/kvm/kvm_main.c 2009-07-23 11:24:45.000000000 -0500 +++ linux-2.6.30.x86_64-ksm/virt/kvm/kvm_main.c 2009-07-23 12:42:36.000000000 -0500 @@ -859,6 +859,19 @@ static void kvm_mmu_notifier_invalidate_ } +static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn, + struct mm_struct *mm, + unsigned long address, + pte_t pte) +{ + struct kvm *kvm = mmu_notifier_to_kvm(mn); + + spin_lock(&kvm->mmu_lock); + kvm->mmu_notifier_seq++; + kvm_set_spte_hva(kvm, address, pte); + spin_unlock(&kvm->mmu_lock); +} + static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn, struct mm_struct *mm, unsigned long start, @@ -938,6 +951,7 @@ static const struct mmu_notifier_ops kvm .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start, .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end, .clear_flush_young = kvm_mmu_notifier_clear_flush_young, + .change_pte = kvm_mmu_notifier_change_pte, .release = kvm_mmu_notifier_release, }; #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */ linux-2.6-ksm.patch: b/arch/alpha/include/asm/mman.h | 3 b/arch/mips/include/asm/mman.h | 3 b/arch/parisc/include/asm/mman.h | 3 b/arch/xtensa/include/asm/mman.h | 3 b/fs/proc/page.c | 5 b/include/asm-generic/mman-common.h | 5 b/include/linux/ksm.h | 50 + b/include/linux/mm.h | 1 b/include/linux/mmu_notifier.h | 34 b/include/linux/rmap.h | 6 b/include/linux/sched.h | 7 b/kernel/fork.c | 8 b/mm/Kconfig | 11 b/mm/Makefile | 1 b/mm/ksm.c | 56 + b/mm/madvise.c | 41 b/mm/memory.c | 9 b/mm/mmu_notifier.c | 22 b/mm/mremap.c | 14 b/mm/rmap.c | 23 include/linux/ksm.h | 29 mm/ksm.c | 1506 +++++++++++++++++++++++++++++++++++- mm/madvise.c | 16 mm/memory.c | 7 24 files changed, 1780 insertions(+), 83 deletions(-) --- NEW FILE linux-2.6-ksm.patch --- From: Izik Eidus Subject: [PATCH 01/10] ksm: add mmu_notifier set_pte_at_notify() Date: Fri, 17 Jul 2009 20:30:41 +0300 The set_pte_at_notify() macro allows setting a pte in the shadow page table directly, instead of flushing the shadow page table entry and then getting vmexit to set it. It uses a new change_pte() callback to do so. set_pte_at_notify() is an optimization for kvm, and other users of mmu_notifiers, for COW pages. It is useful for kvm when ksm is used, because it allows kvm not to have to receive vmexit and only then map the ksm page into the shadow page table, but instead map it directly at the same time as Linux maps the page into the host page table. Users of mmu_notifiers who don't implement new mmu_notifier_change_pte() callback will just receive the mmu_notifier_invalidate_page() callback. Signed-off-by: Izik Eidus Signed-off-by: Chris Wright Signed-off-by: Hugh Dickins --- include/linux/mmu_notifier.h | 34 ++++++++++++++++++++++++++++++++++ mm/memory.c | 9 +++++++-- mm/mmu_notifier.c | 20 ++++++++++++++++++++ 3 files changed, 61 insertions(+), 2 deletions(-) diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h index b77486d..4e02ee2 100644 --- a/include/linux/mmu_notifier.h +++ b/include/linux/mmu_notifier.h @@ -62,6 +62,15 @@ struct mmu_notifier_ops { unsigned long address); /* + * change_pte is called in cases that pte mapping to page is changed: + * for example, when ksm remaps pte to point to a new shared page. + */ + void (*change_pte)(struct mmu_notifier *mn, + struct mm_struct *mm, + unsigned long address, + pte_t pte); + + /* * Before this is invoked any secondary MMU is still ok to * read/write to the page previously pointed to by the Linux * pte because the page hasn't been freed yet and it won't be @@ -154,6 +163,8 @@ extern void __mmu_notifier_mm_destroy(struct mm_struct *mm); extern void __mmu_notifier_release(struct mm_struct *mm); extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm, unsigned long address); +extern void __mmu_notifier_change_pte(struct mm_struct *mm, + unsigned long address, pte_t pte); extern void __mmu_notifier_invalidate_page(struct mm_struct *mm, unsigned long address); extern void __mmu_notifier_invalidate_range_start(struct mm_struct *mm, @@ -175,6 +186,13 @@ static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, return 0; } +static inline void mmu_notifier_change_pte(struct mm_struct *mm, + unsigned long address, pte_t pte) +{ + if (mm_has_notifiers(mm)) + __mmu_notifier_change_pte(mm, address, pte); +} + static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, unsigned long address) { @@ -236,6 +254,16 @@ static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) __young; \ }) +#define set_pte_at_notify(__mm, __address, __ptep, __pte) \ +({ \ + struct mm_struct *___mm = __mm; \ + unsigned long ___address = __address; \ + pte_t ___pte = __pte; \ + \ + set_pte_at(___mm, ___address, __ptep, ___pte); \ + mmu_notifier_change_pte(___mm, ___address, ___pte); \ +}) + #else /* CONFIG_MMU_NOTIFIER */ static inline void mmu_notifier_release(struct mm_struct *mm) @@ -248,6 +276,11 @@ static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, return 0; } +static inline void mmu_notifier_change_pte(struct mm_struct *mm, + unsigned long address, pte_t pte) +{ +} + static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, unsigned long address) { @@ -273,6 +306,7 @@ static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) #define ptep_clear_flush_young_notify ptep_clear_flush_young #define ptep_clear_flush_notify ptep_clear_flush +#define set_pte_at_notify set_pte_at #endif /* CONFIG_MMU_NOTIFIER */ diff --git a/mm/memory.c b/mm/memory.c index 6521619..8159a62 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -2113,9 +2113,14 @@ gotten: * seen in the presence of one thread doing SMC and another * thread doing COW. */ - ptep_clear_flush_notify(vma, address, page_table); + ptep_clear_flush(vma, address, page_table); page_add_new_anon_rmap(new_page, vma, address); - set_pte_at(mm, address, page_table, entry); + /* + * We call the notify macro here because, when using secondary + * mmu page tables (such as kvm shadow page tables), we want the + * new page to be mapped directly into the secondary page table. + */ + set_pte_at_notify(mm, address, page_table, entry); update_mmu_cache(vma, address, entry); if (old_page) { /* diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c index 5f4ef02..7e33f2c 100644 --- a/mm/mmu_notifier.c +++ b/mm/mmu_notifier.c @@ -99,6 +99,26 @@ int __mmu_notifier_clear_flush_young(struct mm_struct *mm, return young; } +void __mmu_notifier_change_pte(struct mm_struct *mm, unsigned long address, + pte_t pte) +{ + struct mmu_notifier *mn; + struct hlist_node *n; + + rcu_read_lock(); + hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) { + if (mn->ops->change_pte) + mn->ops->change_pte(mn, mm, address, pte); + /* + * Some drivers don't have change_pte, + * so we must call invalidate_page in that case. + */ + else if (mn->ops->invalidate_page) + mn->ops->invalidate_page(mn, mm, address); + } + rcu_read_unlock(); +} + void __mmu_notifier_invalidate_page(struct mm_struct *mm, unsigned long address) { -- 1.5.6.5 -- From: Izik Eidus Subject: [PATCH 02/10] ksm: first tidy up madvise_vma() Date: Fri, 17 Jul 2009 20:30:42 +0300 madvise.c has several levels of switch statements, what to do in which? Move MADV_DOFORK code down from madvise_vma() to madvise_behavior(), so madvise_vma() can be a simple router, to madvise_behavior() by default. vma->vm_flags is an unsigned long so use the same type for new_flags. Add missing comment lines to describe MADV_DONTFORK and MADV_DOFORK. Signed-off-by: Hugh Dickins Signed-off-by: Chris Wright Signed-off-by: Izik Eidus --- mm/madvise.c | 39 +++++++++++++-------------------------- 1 files changed, 13 insertions(+), 26 deletions(-) diff --git a/mm/madvise.c b/mm/madvise.c index 76eb419..66c3126 100644 --- a/mm/madvise.c +++ b/mm/madvise.c @@ -41,7 +41,7 @@ static long madvise_behavior(struct vm_area_struct * vma, struct mm_struct * mm = vma->vm_mm; int error = 0; pgoff_t pgoff; - int new_flags = vma->vm_flags; + unsigned long new_flags = vma->vm_flags; switch (behavior) { case MADV_NORMAL: @@ -57,6 +57,10 @@ static long madvise_behavior(struct vm_area_struct * vma, new_flags |= VM_DONTCOPY; break; case MADV_DOFORK: + if (vma->vm_flags & VM_IO) { [...2246 lines suppressed...] + unsigned long nr_pages; + + err = strict_strtoul(buf, 10, &nr_pages); + if (err) + return -EINVAL; + + ksm_max_kernel_pages = nr_pages; + + return count; +} + +static ssize_t max_kernel_pages_show(struct kobject *kobj, + struct kobj_attribute *attr, char *buf) +{ + return sprintf(buf, "%lu\n", ksm_max_kernel_pages); +} +KSM_ATTR(max_kernel_pages); + +static struct attribute *ksm_attrs[] = { + &sleep_millisecs_attr.attr, + &pages_to_scan_attr.attr, + &run_attr.attr, + &pages_shared_attr.attr, + &kernel_pages_allocated_attr.attr, + &max_kernel_pages_attr.attr, + NULL, +}; + +static struct attribute_group ksm_attr_group = { + .attrs = ksm_attrs, + .name = "ksm", +}; + +static int __init ksm_init(void) +{ + struct task_struct *ksm_thread; + int err; + + err = ksm_slab_init(); + if (err) + goto out; + + err = mm_slots_hash_init(); + if (err) + goto out_free1; + + ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd"); + if (IS_ERR(ksm_thread)) { + printk(KERN_ERR "ksm: creating kthread failed\n"); + err = PTR_ERR(ksm_thread); + goto out_free2; + } + + err = sysfs_create_group(mm_kobj, &ksm_attr_group); + if (err) { + printk(KERN_ERR "ksm: register sysfs failed\n"); + goto out_free3; + } + + return 0; + +out_free3: + kthread_stop(ksm_thread); +out_free2: + mm_slots_hash_free(); +out_free1: + ksm_slab_free(); +out: + return err; } +module_init(ksm_init) -- 1.5.6.5 -- From: Izik Eidus Subject: [PATCH 08/10] ksm: prevent mremap move poisoning Date: Fri, 17 Jul 2009 20:30:48 +0300 KSM's scan allows for user pages to be COWed or unmapped at any time, without requiring any notification. But its stable tree does assume that when it finds a KSM page where it placed a KSM page, then it is the same KSM page that it placed there. mremap move could break that assumption: if an area containing a KSM page was unmapped, then an area containing a different KSM page was moved with mremap into the place of the original, before KSM's scan came around to notice. That could then poison a node of the stable tree, so that memcmps would "lie" and upset the ordering of the tree. Probably noone will ever need mremap move on a VM_MERGEABLE area; except that prohibiting it would make trouble for schemes in which we try making everything VM_MERGEABLE e.g. for testing: an mremap which normally works would then fail mysteriously. There's no need to go to any trouble, such as re-sorting KSM's list of rmap_items to match the new layout: simply unmerge the area to COW all its KSM pages before moving, but leave VM_MERGEABLE on so that they're remerged later. Signed-off-by: Hugh Dickins Signed-off-by: Chris Wright Signed-off-by: Izik Eidus --- mm/mremap.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/mm/mremap.c b/mm/mremap.c index a39b7b9..93addde 100644 --- a/mm/mremap.c +++ b/mm/mremap.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -182,6 +183,17 @@ static unsigned long move_vma(struct vm_area_struct *vma, if (mm->map_count >= sysctl_max_map_count - 3) return -ENOMEM; + /* + * Advise KSM to break any KSM pages in the area to be moved: + * it would be confusing if they were to turn up at the new + * location, where they happen to coincide with different KSM + * pages recently unmapped. But leave vma->vm_flags as it was, + * so KSM can come around to merge on vma and new_vma afterwards. + */ + if (ksm_madvise(vma, old_addr, old_addr + old_len, + MADV_UNMERGEABLE, &vm_flags)) + return -ENOMEM; + new_pgoff = vma->vm_pgoff + ((old_addr - vma->vm_start) >> PAGE_SHIFT); new_vma = copy_vma(&vma, new_addr, new_len, new_pgoff); if (!new_vma) -- 1.5.6.5 -- From: Izik Eidus Subject: [PATCH 09/10] ksm: change copyright message Date: Fri, 17 Jul 2009 20:30:49 +0300 Adding Hugh Dickins into the authors list. Signed-off-by: Izik Eidus --- mm/ksm.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/mm/ksm.c b/mm/ksm.c index a0fbdb2..75d7802 100644 --- a/mm/ksm.c +++ b/mm/ksm.c @@ -4,11 +4,12 @@ * This code enables dynamic sharing of identical pages found in different * memory areas, even if they are not shared by fork() * - * Copyright (C) 2008 Red Hat, Inc. + * Copyright (C) 2008-2009 Red Hat, Inc. * Authors: * Izik Eidus * Andrea Arcangeli * Chris Wright + * Hugh Dickins * * This work is licensed under the terms of the GNU GPL, version 2. */ -- 1.5.6.5 -- From: Izik Eidus Subject: [PATCH 10/10] ksm: change ksm nice level to be 5 Date: Fri, 17 Jul 2009 20:30:50 +0300 ksm should try not to disturb other tasks as much as possible. Signed-off-by: Izik Eidus --- mm/ksm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/mm/ksm.c b/mm/ksm.c index 75d7802..4afe345 100644 --- a/mm/ksm.c +++ b/mm/ksm.c @@ -1270,7 +1270,7 @@ static void ksm_do_scan(unsigned int scan_npages) static int ksm_scan_thread(void *nothing) { - set_user_nice(current, 0); + set_user_nice(current, 5); while (!kthread_should_stop()) { if (ksm_run & KSM_RUN_MERGE) { -- 1.5.6.5 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.310 retrieving revision 1.311 diff -u -p -r1.310 -r1.311 --- config-generic 23 Jul 2009 17:45:33 -0000 1.310 +++ config-generic 23 Jul 2009 18:25:22 -0000 1.311 @@ -4018,6 +4018,7 @@ CONFIG_STRIP_ASM_SYMS=y # CONFIG_RCU_FANOUT_EXACT is not set +CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_FSNOTIFY=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1650 retrieving revision 1.1651 diff -u -p -r1.1650 -r1.1651 --- kernel.spec 23 Jul 2009 17:45:33 -0000 1.1650 +++ kernel.spec 23 Jul 2009 18:25:22 -0000 1.1651 @@ -652,6 +652,9 @@ Patch1515: linux-2.6.31-lirc.patch Patch1516: lirc_streamzap-buffer-rework.patch Patch1517: hdpvr-ir-enable.patch +Patch1550: linux-2.6-ksm.patch +Patch1551: linux-2.6-ksm-kvm.patch + # nouveau + drm fixes Patch1813: drm-radeon-pm.patch Patch1814: drm-nouveau.patch @@ -1237,6 +1240,11 @@ ApplyPatch lirc_streamzap-buffer-rework. # enable IR receiver on Hauppauge HD PVR (v4l-dvb merge pending) ApplyPatch hdpvr-ir-enable.patch +# Add kernel KSM support +ApplyPatch linux-2.6-ksm.patch +# Optimize KVM for KSM support +ApplyPatch linux-2.6-ksm-kvm.patch + ApplyPatch linux-2.6-e1000-ich9.patch # Nouveau DRM + drm fixes @@ -1882,6 +1890,9 @@ fi # and build. %changelog +* Thu Jul 23 2009 Justin M. Forbes +- Add KSM support + * Thu Jul 23 2009 Kyle McMartin 2.6.31-0.87.rc4 - Linux 2.6.31-rc4 - config changes: From nb at fedoraproject.org Thu Jul 23 18:15:36 2009 From: nb at fedoraproject.org (Nick Bebout) Date: Thu, 23 Jul 2009 18:15:36 +0000 (UTC) Subject: rpms/znc/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 znc.spec, 1.4, 1.5 znc-0.072-webadmin.diff, 1.1, NONE Message-ID: <20090723181536.2EF0B11C0093@cvs1.fedora.phx.redhat.com> Author: nb Update of /cvs/pkgs/rpms/znc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23534 Modified Files: .cvsignore sources znc.spec Removed Files: znc-0.072-webadmin.diff Log Message: Update to 0.074-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jul 2009 01:21:34 -0000 1.3 +++ .cvsignore 23 Jul 2009 18:15:35 -0000 1.4 @@ -1 +1 @@ -znc-0.072.tar.gz +znc-0.074.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Jul 2009 01:21:34 -0000 1.3 +++ sources 23 Jul 2009 18:15:35 -0000 1.4 @@ -1 +1 @@ -28791eb14f5a3129602dbab0ef6abbc6 znc-0.072.tar.gz +378187acd114769f8f97ef2d4b19da25 znc-0.074.tar.gz Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/F-10/znc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- znc.spec 23 Jul 2009 02:54:57 -0000 1.4 +++ znc.spec 23 Jul 2009 18:15:35 -0000 1.5 @@ -1,16 +1,16 @@ Summary: An advanced IRC bouncer Name: znc -Version: 0.072 -Release: 3%{?dist} +Version: 0.074 +Release: 1%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ Source0: http://downloads.sourceforge.net/sourceforge/znc/znc-%{version}.tar.gz -Patch0: %{name}-%{version}-webadmin.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: perl BuildRequires: openssl-devel >= 0.9.8 BuildRequires: cyrus-sasl-devel +BuildRequires: c-ares-devel # The following line is necessary because this module # is needed for Fedora, but not for EPEL. @@ -33,14 +33,13 @@ modules. %prep %setup -q -%patch0 -p1 %__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp +#chmod -x modules/q.cpp %build %configure \ --with-module-prefix=%{_libdir}/znc \ - --enable-ipv6 --enable-sasl --disable-c-ares + --enable-ipv6 --enable-sasl %__make %{?_smp_mflags} %install @@ -66,6 +65,8 @@ chmod -x modules/q.cpp %{_includedir}/znc/ %changelog +* Thu Jul 23 2009 Nick Bebout - 0.074-1 +- Update to 0.074 * Wed Jul 22 2009 Nick Bebout - 0.072-3 - Fix date in changelog, disable c-ares * Wed Jul 22 2009 Nick Bebout - 0.072-2 --- znc-0.072-webadmin.diff DELETED --- From sseago at fedoraproject.org Thu Jul 23 18:16:33 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 18:16:33 +0000 (UTC) Subject: rpms/ovirt-server/F-11 import.log, NONE, 1.1 ovirt-server.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723181633.D06AF11C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/ovirt-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24350/F-11 Modified Files: .cvsignore sources Added Files: import.log ovirt-server.spec Log Message: Initial import after review (rhbz #513069) --- NEW FILE import.log --- ovirt-server-0_100-1_fc11:F-11:ovirt-server-0.100-1.fc11.src.rpm:1248373176 --- NEW FILE ovirt-server.spec --- %define pbuild %{_builddir}/%{name}-%{version} %define app_root %{_datadir}/%{name} %define acehome %{_datadir}/ace Summary: The oVirt Server Suite Name: ovirt-server Version: 0.100 Release: 1%{?dist}%{?extra_release} # full source URL will be added with the next oVirt release. This is a pre-release # code drop to make sure we get the package approved by f12 feature freeze. Source0: %{name}-%{version}.tar.gz #Entire source code is GPL except for vendor/plugins/will_paginate and #vendor/plugins/betternestedset, which are MIT, and #public/javascripts/jquery.*, which is both MIT and GPL, and #src/flexchart/com/adobe/serialization/json/* which are BSD License: GPLv2+ and MIT and BSD Group: Applications/System Requires: ruby >= 1.8.1 Requires: ruby(abi) = 1.8 Requires: rubygem(activerecord) >= 2.1.1-2 Requires: rubygem(activeldap) >= 0.10.0 Requires: rubygem(rails) >= 2.1.1 Requires: rubygem(mongrel) >= 1.0.1 Requires: rubygem(krb5-auth) >= 0.6 Requires: rubygem(cobbler) >= 0.1.2 %if 0%{?fedora} >= 11 Requires: rubygem(gettext_rails) %else Requires: rubygem(gettext) %endif Requires: ruby-flexmock Requires: postgresql-server Requires: ruby-postgres Requires: xapian-bindings-ruby Requires: xapian-core Requires: pwgen Requires: httpd >= 2.0 Requires: mod_auth_kerb Requires: ruby-libvirt >= 0.0.2 Requires: rrdtool-ruby Requires: iscsi-initiator-utils Requires: cyrus-sasl-gssapi Requires: ovirt-docs Requires: qpidd Requires: ruby-qpid >= 0.5.776856 Requires: qpidc Requires: qmf Requires: ruby-qmf Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service BuildRequires: ruby >= 1.8.1 BuildRequires: ruby-devel BuildRequires: rubygem(gettext) BuildRequires: rubygem(rake) >= 0.7 BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot URL: http://ovirt.org/ %package installer Summary: Installer modules for the oVirt Server Suite Group: Applications/System Requires: ruby(abi) = 1.8 Requires: ace Requires: ace-postgres Requires: rubygem(highline) Requires: hal Requires: %{name} = %{version}-%{release} %description The Server Suite for oVirt. %description installer The Installer for the ovirt server suite %prep %setup -q %build %install test "x%{buildroot}" != "x" && rm -rf %{buildroot} mkdir %{buildroot} %{__install} -d -m0755 %{buildroot}%{_bindir} %{__install} -d -m0755 %{buildroot}%{_datadir} %{__install} -d -m0755 %{buildroot}%{_sbindir} %{__install} -d -m0755 %{buildroot}%{_initrddir} %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/sysconfig %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/httpd/conf.d %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/%{name} %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/%{name}/db %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/logrotate.d %{__install} -d -m0755 %{buildroot}%{_sysconfdir}/cron.d %{__install} -d -m0755 %{buildroot}%{_localstatedir}/lib/%{name} %{__install} -d -m0755 %{buildroot}%{_localstatedir}/log/%{name} %{__install} -d -m0755 %{buildroot}%{_localstatedir}/run/%{name} %{__install} -d -m0755 %{buildroot}%{app_root} %{__install} -d -m0755 %{buildroot}/%{acehome} # Creating these files now to make sure the logfiles will be owned # by ovirt:ovirt. This is a temporary workaround while we've still # got root-owned daemon processes. Once we resolve that issue # these files will no longer be added explicitly here. touch %{buildroot}%{_localstatedir}/log/%{name}/mongrel.log touch %{buildroot}%{_localstatedir}/log/%{name}/rails.log touch %{buildroot}%{_localstatedir}/log/%{name}/taskomatic.log touch %{buildroot}%{_localstatedir}/log/%{name}/db-omatic.log %{__install} -p -m0644 %{pbuild}/conf/%{name}.conf %{buildroot}%{_sysconfdir}/httpd/conf.d %{__install} -p -m0644 %{pbuild}/conf/%{name}.crontab %{buildroot}%{_sysconfdir}/cron.d/%{name} %{__install} -p -m0644 %{pbuild}/conf/%{name}.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-browser %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-register %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-db-omatic %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-agent %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-host-collect %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-mongrel-rails %{buildroot}%{_initrddir} %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-mongrel-rails.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-mongrel-rails %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-rails.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-rails %{__install} -Dp -m0644 %{pbuild}/conf/ovirt-vnc-proxy.sysconf %{buildroot}%{_sysconfdir}/sysconfig/ovirt-vnc-proxy %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-taskomatic %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-vnc-proxy %{buildroot}%{_initrddir} # copy over all of the src directory... %{__cp} -a %{pbuild}/src/* %{buildroot}%{app_root} # move Flash movie to the public folder %{__install} -d -m0755 %{buildroot}%{app_root}/public/swfs # not building Flash for now until we've got flex compiler in Fedora # move configs to /etc, keeping symlinks for Rails %{__mv} %{buildroot}%{app_root}/config/database.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/ldap.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/cobbler.yml %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/development.rb %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/production.rb %{buildroot}%{_sysconfdir}/%{name} %{__mv} %{buildroot}%{app_root}/config/environments/test.rb %{buildroot}%{_sysconfdir}/%{name} %{__ln_s} %{_sysconfdir}/%{name}/database.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/ldap.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/cobbler.yml %{buildroot}%{app_root}/config %{__ln_s} %{_sysconfdir}/%{name}/development.rb %{buildroot}%{app_root}/config/environments %{__ln_s} %{_sysconfdir}/%{name}/production.rb %{buildroot}%{app_root}/config/environments %{__ln_s} %{_sysconfdir}/%{name}/test.rb %{buildroot}%{app_root}/config/environments # remove the files not needed for the installation %{__rm} -f %{buildroot}%{app_root}/task-omatic/.gitignore %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/will_paginate/.gitignore %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/will_paginate/.manifest %{__rm} -f %{buildroot}%{app_root}/vendor/plugins/acts_as_xapian/.gitignore %{__cp} -a %{pbuild}/scripts/ovirt-add-host %{buildroot}%{_bindir} %{__cp} -a %{pbuild}/scripts/ovirt-vm2node %{buildroot}%{_bindir} %{__cp} -a %{pbuild}/scripts/ovirt-reindex-search %{buildroot}%{_sbindir} %{__cp} -a %{pbuild}/scripts/ovirt-update-search %{buildroot}%{_sbindir} %{__rm} -rf %{buildroot}%{app_root}/tmp %{__mkdir} %{buildroot}%{_localstatedir}/lib/%{name}/tmp %{__ln_s} %{_localstatedir}/lib/%{name}/tmp %{buildroot}%{app_root}/tmp # Set up the installer %{__cp} -pr %{pbuild}/installer/modules %{buildroot}/%{acehome} %{__cp} -pr %{pbuild}/installer/appliances %{buildroot}/%{acehome} %{__cp} -pr %{pbuild}/installer/bin/ovirt-installer %{buildroot}%{_sbindir} # setup the anyterm config %{__mkdir} -p %{buildroot}%{_datadir}/ovirt-anyterm/ for f in anyterm/*.{html,css,js,png,gif}; do %{__install} -m644 "$f" %{buildroot}%{_datadir}/ovirt-anyterm/ done %clean rm -rf %{buildroot} %pre getent group ovirt >/dev/null || /usr/sbin/groupadd -g 108 -r ovirt 2>/dev/null || : getent passwd ovirt >/dev/null || \ /usr/sbin/useradd -u 108 -g ovirt -c "oVirt" \ -s /sbin/nologin -r -d /var/ovirt ovirt 2> /dev/null || : %post # script %define daemon_chkconfig_post(d:) \ /sbin/chkconfig --list %{-d*} >& /dev/null \ LISTRET=$? \ /sbin/chkconfig --add %{-d*} \ if [ $LISTRET -ne 0 ]; then \ /sbin/chkconfig %{-d*} on \ fi \ %{nil} # if this is the initial RPM install, then we want to turn the new services # on; otherwise, we respect the choices the administrator already has made. # check this by seeing if each daemon is already installed %daemon_chkconfig_post -d ovirt-host-browser %daemon_chkconfig_post -d ovirt-host-register %daemon_chkconfig_post -d ovirt-db-omatic %daemon_chkconfig_post -d ovirt-agent %daemon_chkconfig_post -d ovirt-host-collect %daemon_chkconfig_post -d ovirt-mongrel-rails %daemon_chkconfig_post -d ovirt-taskomatic %daemon_chkconfig_post -d ovirt-vnc-proxy %preun if [ "$1" = 0 ] ; then /sbin/service ovirt-host-browser stop > /dev/null 2>&1 /sbin/service ovirt-host-register stop > /dev/null 2>&1 /sbin/service ovirt-db-omatic stop > /dev/null 2>&1 /sbin/service ovirt-agent stop > /dev/null 2>&1 /sbin/service ovirt-host-collect stop > /dev/null 2>&1 /sbin/service ovirt-mongrel-rails stop > /dev/null 2>&1 /sbin/service ovirt-taskomatic stop > /dev/null 2>&1 /sbin/service ovirt-vnc-proxy stop > /dev/null 2>&1 /sbin/chkconfig --del ovirt-host-browser /sbin/chkconfig --del ovirt-host-register /sbin/chkconfig --del ovirt-db-omatic /sbin/chkconfig --del ovirt-agent /sbin/chkconfig --del ovirt-host-collect /sbin/chkconfig --del ovirt-mongrel-rails /sbin/chkconfig --del ovirt-taskomatic /sbin/chkconfig --del ovirt-vnc-proxy fi %files %defattr(-,root,root,0755) %{_sbindir}/ovirt-reindex-search %{_sbindir}/ovirt-update-search %{_bindir}/ovirt-add-host %{_bindir}/ovirt-vm2node %{_initrddir}/ovirt-host-browser %{_initrddir}/ovirt-host-register %{_initrddir}/ovirt-db-omatic %{_initrddir}/ovirt-agent %{_initrddir}/ovirt-host-collect %{_initrddir}/ovirt-mongrel-rails %{_initrddir}/ovirt-taskomatic %{_initrddir}/ovirt-vnc-proxy %config(noreplace) %{_sysconfdir}/cron.d/%{name} %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-mongrel-rails %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-rails %config(noreplace) %{_sysconfdir}/sysconfig/ovirt-vnc-proxy %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %doc README AUTHORS COPYING %attr(-, ovirt, ovirt) %{_localstatedir}/lib/%{name} %attr(-, ovirt, ovirt) %{_localstatedir}/run/%{name} %attr(-, ovirt, ovirt) %{_localstatedir}/log/%{name} %{app_root} %dir %{_sysconfdir}/%{name} %dir %{_sysconfdir}/%{name}/db %config(noreplace) %{_sysconfdir}/%{name}/database.yml %config(noreplace) %{_sysconfdir}/%{name}/ldap.yml %config(noreplace) %{_sysconfdir}/%{name}/cobbler.yml %config(noreplace) %{_sysconfdir}/%{name}/development.rb %config(noreplace) %{_sysconfdir}/%{name}/production.rb %config(noreplace) %{_sysconfdir}/%{name}/test.rb %{_datadir}/ovirt-anyterm %files installer %defattr(-,root,root,0755) %{_sbindir}/ovirt-installer %{acehome} %doc README AUTHORS COPYING %changelog * Fri Jul 17 2009 Scott Seago - 0.100-1 - rpmlint fixes for Fedora 12 inclusion * Thu May 29 2008 Alan Pevec - 0.0.5-0 - use rubygem-krb5-auth * Fri Nov 2 2007 - 0.0.1-1 - Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:46:03 -0000 1.1 +++ .cvsignore 23 Jul 2009 18:16:32 -0000 1.2 @@ -0,0 +1 @@ +ovirt-server-0.100.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:46:03 -0000 1.1 +++ sources 23 Jul 2009 18:16:33 -0000 1.2 @@ -0,0 +1 @@ +1528b87eaa393fa87d459d076c96c853 ovirt-server-0.100.tar.gz From kyle at fedoraproject.org Thu Jul 23 18:49:45 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Thu, 23 Jul 2009 18:49:45 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1651,1.1652 Message-ID: <20090723184945.29AEB11C0093@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6300 Modified Files: kernel.spec Log Message: * Thu Jul 23 2009 Kyle McMartin - perf BuildRequires binutils-devel now. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1651 retrieving revision 1.1652 diff -u -p -r1.1651 -r1.1652 --- kernel.spec 23 Jul 2009 18:25:22 -0000 1.1651 +++ kernel.spec 23 Jul 2009 18:49:14 -0000 1.1652 @@ -486,7 +486,7 @@ BuildRequires: xmlto BuildRequires: sparse >= 0.4.1 %endif %if %{with_perftool} -BuildRequires: elfutils-libelf-devel zlib-devel +BuildRequires: elfutils-libelf-devel zlib-devel binutils-devel %endif BuildConflicts: rhbuildsys(DiskFree) < 500Mb @@ -1890,6 +1890,9 @@ fi # and build. %changelog +* Thu Jul 23 2009 Kyle McMartin +- perf BuildRequires binutils-devel now. + * Thu Jul 23 2009 Justin M. Forbes - Add KSM support From mtasaka at fedoraproject.org Thu Jul 23 19:02:42 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 23 Jul 2009 19:02:42 +0000 (UTC) Subject: rpms/xtide/devel noautobuild,NONE,1.1 Message-ID: <20090723190242.2120411C0093@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xtide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11382 Added Files: noautobuild Log Message: Will rebuild with small fix --- NEW FILE noautobuild --- Will rebuild with small fix From mso at fedoraproject.org Thu Jul 23 19:04:40 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Thu, 23 Jul 2009 19:04:40 +0000 (UTC) Subject: rpms/gtk-nodoka-engine/F-11 gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch, NONE, 1.1 gtk-nodoka-engine.spec, 1.28, 1.29 Message-ID: <20090723190440.F254411C0093@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/gtk-nodoka-engine/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11900 Modified Files: gtk-nodoka-engine.spec Added Files: gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch Log Message: Correctly grey out checkboxes in treeview (rhbz #513454). gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch: nodoka_style.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes 2009-07-23 20:42:39.000000000 +0200 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c 2009-07-23 20:52:32.000000000 +0200 @@ -1204,7 +1204,7 @@ nodoka_style_draw_option (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellradio") && widget && widget->parent) + if (DETAIL ("cellradio") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); @@ -1257,7 +1257,7 @@ nodoka_style_draw_check (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellcheck") && widget && widget->parent) + if (DETAIL ("cellcheck") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); Index: gtk-nodoka-engine.spec =================================================================== RCS file: /cvs/extras/rpms/gtk-nodoka-engine/F-11/gtk-nodoka-engine.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gtk-nodoka-engine.spec 7 Mar 2009 13:30:57 -0000 1.28 +++ gtk-nodoka-engine.spec 23 Jul 2009 19:04:40 -0000 1.29 @@ -3,7 +3,7 @@ Name: gtk-nodoka-engine Version: 0.7.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Nodoka GTK Theme Engine Group: System Environment/Libraries @@ -13,6 +13,7 @@ Source0: https://fedorahosted.org Patch0: %{name}-scale-trough.patch Patch1: %{name}-handle-selection.patch Patch2: %{name}-0.7.2-missing-widget-check.patch +Patch3: %{name}-0.7.2-grey-out-checkboxes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel @@ -41,6 +42,7 @@ This package contains extra themes fot t %patch0 -p1 -b .scale-trough %patch1 -p1 -b .handle-selection %patch2 -p1 -b .missing-widget-check +%patch3 -p1 -b .grey-out-checkboxes %build %configure @@ -72,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Martin Sourada - 0.7.2-5 +- Correctly grey out checkboxes in tree-view (rhbz #513454) + * Sat Mar 07 2009 Maritn Sourada - 0.7.2-4 - Add missing check for widget when getting RTL info From tuxbrewr at fedoraproject.org Thu Jul 23 19:25:59 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 23 Jul 2009 19:25:59 +0000 (UTC) Subject: rpms/liferea/devel .cvsignore, 1.83, 1.84 liferea.spec, 1.138, 1.139 sources, 1.84, 1.85 Message-ID: <20090723192559.9513F11C0093@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/liferea/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20084 Modified Files: .cvsignore liferea.spec sources Log Message: New release candidate Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liferea/devel/.cvsignore,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- .cvsignore 30 Jun 2009 18:37:52 -0000 1.83 +++ .cvsignore 23 Jul 2009 19:25:29 -0000 1.84 @@ -1 +1 @@ -liferea-1.6.0-rc6.tar.gz +liferea-1.6.0-rc7.tar.gz Index: liferea.spec =================================================================== RCS file: /cvs/pkgs/rpms/liferea/devel/liferea.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- liferea.spec 30 Jun 2009 19:10:15 -0000 1.138 +++ liferea.spec 23 Jul 2009 19:25:29 -0000 1.139 @@ -1,12 +1,12 @@ Name: liferea Version: 1.6.0 -Release: 0.1.rc6%{?dist} +Release: 0.4.rc7%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet License: GPLv2+ URL: http://liferea.sourceforge.net/ -Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}-rc6.tar.gz +Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}-rc7.tar.gz Patch0: %{name}-fedorafeed.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -14,7 +14,7 @@ BuildRequires: GConf2-devel BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: sqlite-devel -BuildRequires: webkitgtk-devel +BuildRequires: webkitgtk-devel BuildRequires: intltool BuildRequires: libglade2-devel BuildRequires: desktop-file-utils @@ -35,7 +35,7 @@ It can be used to maintain a list of sub browse through their items, and show their contents. %prep -%setup -q -n %{name}-%{version}-rc6 +%setup -q -n %{name}-%{version}-rc7 %patch0 -p1 -b .fedorafeed %build @@ -106,6 +106,30 @@ fi %dir %{_libdir}/%{name} %changelog +* Thu Jul 23 2009 Steven M. Parrish 1.6.0-0.4.rc7 +- Open the "Decrease/Increase Text Size" menu instead of the +- normal link menu on JavaScript links. +- Fixes SF #2787817, SF #2814022, Debian #525368: +- Work around several eggtrayicon crashes. +- Fix target="_blank" links not opening in tabs. +- Fixes a crash on some newsbin items without parents. +- Open new windows opened by Javascript in a new tab. +- Fixes crash when removing Google Reader node when update +- of one of it's subscriptions is in progress. +- Fixes SF #2789255: Crash when quitting during download. +- Reduce memory usage by only using a WebKitWebSettings for all +- the htmlviews. +- Fixes SF #2823359: Subscription -> New Source crashes +- Require WebKitGtk+ >= 1.1.10 to avoid problems with older +- versions. +- Fixes SF #2815397: Don't scale images when scaling the text. +- Fixes Debian #537295: Work around a format misdetection in +- item_set_description(). +- Fixes Debian #537332: Infinite loop on 404 errors. +- Update of Arabic translation. +- Update of Brazilian Portuguese translation. + + * Tue Jun 30 2009 Steven M. Parrish 1.6.0-0.1.rc6 - Updated the example feeds. - Updated the social bookmarking sites. @@ -113,12 +137,12 @@ fi - Added Identi.ca Search support. - Support non-RFC822 alphabetic timezones. - Fix favicon downloads when the feed contains a link with - leading or trailing whitespace. +- leading or trailing whitespace. - Fixes comment feed hiding when comment feed is disabled. - Don't use the deprecated soup_message_headers_get() function. - More consistent tab label widths. - Avoid having loading of other tabs cancelled when opening - a new tab. +- a new tab. * Wed Jun 24 2009 Rex Dieter 1.6.0-0.3.fc5 - Obsoletes: liferea-WebKit < 1.6.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liferea/devel/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 30 Jun 2009 18:37:52 -0000 1.84 +++ sources 23 Jul 2009 19:25:29 -0000 1.85 @@ -1 +1 @@ -faea2fd081c0cd31b279c22aba3632fa liferea-1.6.0-rc6.tar.gz +8b283144b77d872dce53e402ef8a4cf6 liferea-1.6.0-rc7.tar.gz From sseago at fedoraproject.org Thu Jul 23 19:26:43 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 19:26:43 +0000 (UTC) Subject: rpms/rubygem-daemons/F-11 .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090723192643.342FA11C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20257 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: upgraded to 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Aug 2007 20:44:48 -0000 1.2 +++ .cvsignore 23 Jul 2009 19:26:12 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-11/rubygem-daemons.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-daemons.spec 25 Feb 2009 21:42:58 -0000 1.2 +++ rubygem-daemons.spec 23 Jul 2009 19:26:12 -0000 1.3 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 3%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,9 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Aug 2007 20:44:48 -0000 1.2 +++ sources 23 Jul 2009 19:26:13 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From leigh123linux at fedoraproject.org Thu Jul 23 19:26:45 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 19:26:45 +0000 (UTC) Subject: rpms/ccsm/devel .cvsignore, 1.5, 1.6 ccsm.spec, 1.11, 1.12 sources, 1.5, 1.6 Message-ID: <20090723192645.ECF4211C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/ccsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20614 Modified Files: .cvsignore ccsm.spec sources Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - update the defines python_sitelib & python_sitearch - update icon-cache scriptlets Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ccsm/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 7 Dec 2008 02:52:17 -0000 1.5 +++ .cvsignore 23 Jul 2009 19:26:45 -0000 1.6 @@ -1 +1 @@ -ccsm-0.7.8.tar.bz2 +ccsm-0.8.2.tar.bz2 Index: ccsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ccsm/devel/ccsm.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ccsm.spec 24 Feb 2009 06:42:31 -0000 1.11 +++ ccsm.spec 23 Jul 2009 19:26:45 -0000 1.12 @@ -1,10 +1,10 @@ -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} -%define basever 0.7.8 +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} +%define basever 0.8.2 Name: ccsm -Version: 0.7.8 -Release: 2%{?dist} +Version: 0.8.2 +Release: 1%{?dist} Summary: Plugin and configuration tool - Compiz Fusion Project Group: User Interface/Desktops @@ -53,15 +53,17 @@ desktop-file-install --vendor="fedora" \ %find_lang %{name} %post -if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor -fi +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : %postun -if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + %clean rm -rf $RPM_BUILD_ROOT @@ -78,6 +80,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-1 +- update to 0.8.2 +- update the defines python_sitelib & python_sitearch +- update icon-cache scriptlets + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ccsm/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 7 Dec 2008 02:52:18 -0000 1.5 +++ sources 23 Jul 2009 19:26:45 -0000 1.6 @@ -1 +1 @@ -0e87bf89382217e264b89dd9d8b4d116 ccsm-0.7.8.tar.bz2 +c9773ec2e6ab9184c39756a365a9cd00 ccsm-0.8.2.tar.bz2 From jgarzik at fedoraproject.org Thu Jul 23 19:27:33 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 23 Jul 2009 19:27:33 +0000 (UTC) Subject: rpms/tabled/devel sources,1.3,1.4 tabled.spec,1.4,1.5 Message-ID: <20090723192733.B984311C0093@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20811 Modified Files: sources tabled.spec Log Message: update to latest upstream Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jul 2009 18:08:26 -0000 1.3 +++ sources 23 Jul 2009 19:27:03 -0000 1.4 @@ -1 +1 @@ -4a5f2dd34ff5f4056a89396f04be37c2 tabled-0.3git.tar.gz +8097f82f9becc6504c9dc1ed0fb58c70 tabled-0.3git.tar.gz Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tabled.spec 21 Jul 2009 19:25:25 -0000 1.4 +++ tabled.spec 23 Jul 2009 19:27:03 -0000 1.5 @@ -1,13 +1,13 @@ Name: tabled Version: 0.3 -Release: 0.5.g8102bcda%{?dist} +Release: 0.6.gebb1144c%{?dist} Summary: Distributed key/value table service Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 8102bcda428a9c2d9647d33f21ede6764a514c6e +# pulled from upstream git, commit ebb1144ceefd7a936acafc79c6e274095bd0bb06 # to recreate tarball, check out commit, then run "make dist" Source0: tabled-%{version}git.tar.gz Source2: tabled.init @@ -18,6 +18,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version # private copies of infrastructure daemons. BuildRequires: db4-devel libevent-devel glib2-devel pcre-devel BuildRequires: chunkd chunkd-devel cld cld-devel libcurl-devel +BuildRequires: procps # cld is broken on big-endian... embarrassing!!! # FIXME: remove this when cld is fixed @@ -101,6 +102,10 @@ fi %{_includedir}/* %changelog +* Thu Jul 23 2009 Jeff Garzik - 0.3-0.6.gebb1144c +- update to git commit ebb1144ceefd7a936acafc79c6e274095bd0bb06 +- BuildRequires: procps + * Tue Jul 21 2009 Jeff Garzik - 0.3-0.5.g8102bcda - rebuild for koji silliness From orion at fedoraproject.org Thu Jul 23 19:29:42 2009 From: orion at fedoraproject.org (Orion Poplawski) Date: Thu, 23 Jul 2009 19:29:42 +0000 (UTC) Subject: rpms/paraview/devel paraview-3.6.0-assistant-qt4.patch, NONE, 1.1 paraview-3.6.0-install.patch, NONE, 1.1 paraview-3.6.1-cmake-install-prefix.patch, NONE, 1.1 paraview-3.6.1-demo.patch, NONE, 1.1 paraview-3.6.1-doc.patch, NONE, 1.1 paraview-3.6.1-plugins.patch, NONE, 1.1 .cvsignore, 1.9, 1.10 paraview.spec, 1.34, 1.35 sources, 1.9, 1.10 paraview-3.2.1-assistant-qt4.patch, 1.1, NONE paraview-3.3.0-install.patch, 1.1, NONE paraview-3.3.1-gcc43.patch, 1.1, NONE paraview-3.4.0-doc.patch, 1.1, NONE paraview-3.4.0-qt.patch, 1.1, NONE Message-ID: <20090723192942.D583E11C0093@cvs1.fedora.phx.redhat.com> Author: orion Update of /cvs/pkgs/rpms/paraview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22033 Modified Files: .cvsignore paraview.spec sources Added Files: paraview-3.6.0-assistant-qt4.patch paraview-3.6.0-install.patch paraview-3.6.1-cmake-install-prefix.patch paraview-3.6.1-demo.patch paraview-3.6.1-doc.patch paraview-3.6.1-plugins.patch Removed Files: paraview-3.2.1-assistant-qt4.patch paraview-3.3.0-install.patch paraview-3.3.1-gcc43.patch paraview-3.4.0-doc.patch paraview-3.4.0-qt.patch Log Message: * Wed Jul 22 2009 Orion Poplawski - 3.6.1-1 - Update to 3.6.1 paraview-3.6.0-assistant-qt4.patch: Applications/OverView/Core/MainWindow.cxx | 2 +- Qt/Components/pqClientMainWindow.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE paraview-3.6.0-assistant-qt4.patch --- --- ParaView-3.6.0/Applications/OverView/Core/MainWindow.cxx.assistant-qt4 2009-06-29 16:51:37.273654166 -0600 +++ ParaView-3.6.0/Applications/OverView/Core/MainWindow.cxx 2009-06-29 16:52:03.205652509 -0600 @@ -933,7 +933,7 @@ QString assistantExe; QString profileFile; - const char* assistantName = "assistant"; + const char* assistantName = "assistant-qt4"; #if defined(Q_WS_WIN) const char* binDir = "\\"; const char* binDir1 = "\\..\\"; --- ParaView-3.6.0/Qt/Components/pqClientMainWindow.cxx.assitant-qt4 2009-06-29 16:51:37.285652874 -0600 +++ ParaView-3.6.0/Qt/Components/pqClientMainWindow.cxx 2009-06-29 16:52:08.521653470 -0600 @@ -989,7 +989,7 @@ QString assistantExe; QString profileFile; - const char* assistantName = "assistant"; + const char* assistantName = "assistant-qt4"; #if defined(Q_WS_WIN) const char* extString = ".exe"; const char* binDir = "\\"; paraview-3.6.0-install.patch: CMakeLists.txt | 9 --------- 1 file changed, 9 deletions(-) --- NEW FILE paraview-3.6.0-install.patch --- --- ParaView-3.6.0/Applications/Client/CMakeLists.txt.install 2009-05-22 11:00:47.000000000 -0600 +++ ParaView-3.6.0/Applications/Client/CMakeLists.txt 2009-06-29 16:36:03.319592245 -0600 @@ -531,15 +531,6 @@ FOREACH(qtlib ${QTLIBLIST}) IF (NOT WIN32) #INSTALL(FILES ${QT_${qtlib}_LIBRARY_RELEASE} DESTINATION ${PV_INSTALL_LIB_DIR}) - GET_FILENAME_COMPONENT(QT_LIB_DIR_tmp ${QT_${qtlib}_LIBRARY_RELEASE} PATH) - GET_FILENAME_COMPONENT(QT_LIB_NAME_tmp ${QT_${qtlib}_LIBRARY_RELEASE} NAME) - FILE(GLOB QT_LIB_LIST RELATIVE ${QT_LIB_DIR_tmp} "${QT_${qtlib}_LIBRARY_RELEASE}*") - INSTALL(CODE " -MESSAGE(STATUS \"Installing \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/${QT_LIB_NAME_tmp}\") -EXECUTE_PROCESS (WORKING_DIRECTORY ${QT_LIB_DIR_tmp} - COMMAND tar c ${QT_LIB_LIST} - COMMAND tar -xC \${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}) - " COMPONENT Runtime) ELSE (NOT WIN32) GET_FILENAME_COMPONENT(QT_DLL_PATH_tmp ${QT_QMAKE_EXECUTABLE} PATH) INSTALL(FILES ${QT_DLL_PATH_tmp}/${qtlib}4.dll DESTINATION ${PV_INSTALL_BIN_DIR} COMPONENT Runtime) paraview-3.6.1-cmake-install-prefix.patch: CMake/ParaViewCommon.cmake | 2 +- Plugins/pvblot/CMakeLists.txt | 2 +- Servers/ServerManager/CMakeLists.txt | 5 +++-- Utilities/IceT/CMakeLists.txt | 6 +++--- Utilities/VTKPythonWrapping/CMakeLists.txt | 2 +- 5 files changed, 9 insertions(+), 8 deletions(-) --- NEW FILE paraview-3.6.1-cmake-install-prefix.patch --- --- ParaView3/CMake/ParaViewCommon.cmake.cmake-install-prefix 2009-06-12 13:25:41.000000000 -0600 +++ ParaView3/CMake/ParaViewCommon.cmake 2009-07-22 13:22:37.286421389 -0600 @@ -121,7 +121,7 @@ IF(NOT WIN32) SET(PV_NEED_SHARED_FORWARD 1) SET(PV_EXE_SUFFIX -real) - SET(PV_EXE_INSTALL ${PV_INSTALL_LIB_DIR}) + SET(PV_EXE_INSTALL "${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}") SET(PV_FORWARD_DIR_BUILD "${EXECUTABLE_OUTPUT_PATH}") SET(PV_FORWARD_DIR_INSTALL "../${PV_EXE_INSTALL}") SET(PV_FORWARD_PATH_BUILD "\"${PV_FORWARD_DIR_BUILD}\"") --- ParaView3/Servers/ServerManager/CMakeLists.txt.cmake-install-prefix 2009-05-08 12:54:32.000000000 -0600 +++ ParaView3/Servers/ServerManager/CMakeLists.txt 2009-07-22 13:25:46.164483300 -0600 @@ -1,7 +1,8 @@ PROJECT(ServerManager) # needed by vtkExportKit.cmake -SET(VTK_INSTALL_PACKAGE_DIR_CM24 ${PV_INSTALL_LIB_DIR}) +SET(VTK_INSTALL_PACKAGE_DIR_CM24 + "${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}") #SET(VTK_INSTALL_PACKAGE_DIR ${PV_INSTALL_LIB_DIR}) # Any build configured headers should be added to this @@ -505,7 +506,7 @@ IF(NOT PV_INSTALL_NO_RUNTIME) INSTALL( FILES ${resourceFiles} - DESTINATION ${PV_INSTALL_LIB_DIR}/ServerManager/Resources) + DESTINATION ${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/ServerManager/Resources) ENDIF(NOT PV_INSTALL_NO_RUNTIME) # # Development --- ParaView3/Utilities/VTKPythonWrapping/CMakeLists.txt.cmake-install-prefix 2009-01-23 11:35:43.000000000 -0700 +++ ParaView3/Utilities/VTKPythonWrapping/CMakeLists.txt 2009-07-22 13:19:31.941421112 -0600 @@ -158,7 +158,7 @@ # Install the paraview module files. IF (NOT PV_INSTALL_NO_LIBRARIES) INSTALL(DIRECTORY ${PV_PYTHON_MODULE_BINARY_DIR} - DESTINATION ${PV_INSTALL_LIB_DIR} + DESTINATION "${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}" COMPONENT Runtime ) ENDIF (NOT PV_INSTALL_NO_LIBRARIES) --- ParaView3/Utilities/IceT/CMakeLists.txt.cmake-install-prefix 2008-10-17 10:43:26.000000000 -0600 +++ ParaView3/Utilities/IceT/CMakeLists.txt 2009-07-22 15:02:01.183421081 -0600 @@ -152,11 +152,11 @@ # CMAKE_IMPORT_BUILD_SETTINGS() INCLUDE(CMakeExportBuildSettings) CMAKE_EXPORT_BUILD_SETTINGS(${ICET_BINARY_DIR}/ICETBuildSettings.cmake) -INSTALL(FILES ${ICET_BINARY_DIR}/ICETBuildSettings.cmake DESTINATION ${ICET_INSTALL_LIB_DIR}) +INSTALL(FILES ${ICET_BINARY_DIR}/ICETBuildSettings.cmake DESTINATION ${CMAKE_INSTALL_PREFIX}/${ICET_INSTALL_LIB_DIR}) # Save the library dependency graph for external projects. EXPORT_LIBRARY_DEPENDENCIES(${ICET_BINARY_DIR}/ICETLibraryDepends.cmake) -INSTALL(FILES ${ICET_BINARY_DIR}/ICETLibraryDepends.cmake DESTINATION ${ICET_INSTALL_LIB_DIR}) +INSTALL(FILES ${ICET_BINARY_DIR}/ICETLibraryDepends.cmake DESTINATION ${CMAKE_INSTALL_PREFIX}/${ICET_INSTALL_LIB_DIR}) # Save ICE-T specific configuration options. #First, configuration for build directory. @@ -186,7 +186,7 @@ SET(ICET_MPI_LIBRARY_FILE "${CMAKE_INSTALL_PREFIX}${ICET_INSTALL_LIB_DIR}/${ICET_MPI_LIBRARY_FILE}") CONFIGURE_FILE(${ICET_SOURCE_DIR}/ICETConfig.cmake.in ${ICET_LIBRARY_DIR}/ICETConfig.cmake @ONLY IMMEDIATE) -INSTALL(FILES ${ICET_SOURCE_DIR}/UseICET.cmake ${ICET_LIBRARY_DIR}/ICETConfig.cmake DESTINATION ${ICET_INSTALL_LIB_DIR}) +INSTALL(FILES ${ICET_SOURCE_DIR}/UseICET.cmake ${ICET_LIBRARY_DIR}/ICETConfig.cmake DESTINATION ${CMAKE_INSTALL_PREFIX}/${ICET_INSTALL_LIB_DIR}) # Allow local additions to this file without CVS conflicts. INCLUDE(${ICET_BINARY_DIR}/LocalUserOptions.cmake OPTIONAL) --- ParaView3/Plugins/pvblot/CMakeLists.txt.cmake-install-prefix 2009-06-01 06:59:23.000000000 -0600 +++ ParaView3/Plugins/pvblot/CMakeLists.txt 2009-07-22 15:05:00.798421716 -0600 @@ -73,7 +73,7 @@ # installing the Python source files. INSTALL( FILES ${PYMODULES} - DESTINATION ${PV_INSTALL_LIB_DIR} + DESTINATION ${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR} ) SET(PVBLOT_PVPYTHON_EXECUTABLE "${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_BIN_DIR}/pvpython${PV_EXE_SUFFIX}") paraview-3.6.1-demo.patch: CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) --- NEW FILE paraview-3.6.1-demo.patch --- --- ParaView3/Plugins/PointSprite/Examples/Rendering/Cxx/CMakeLists.txt.demo 2009-07-20 13:37:07.000000000 -0600 +++ ParaView3/Plugins/PointSprite/Examples/Rendering/Cxx/CMakeLists.txt 2009-07-22 09:24:11.489421127 -0600 @@ -4,7 +4,3 @@ add_executable(${exe} PointSpriteDemo.cxx) target_link_libraries(${exe} CSCS_PointSprite_Rendering vtkIO) - -install(TARGETS ${exe} - RUNTIME DESTINATION ${PROJECT_BINARY_DIR} -) paraview-3.6.1-doc.patch: Applications/Client/CMakeLists.txt | 2 +- Applications/OverView/Core/MainWindow.cxx | 2 +- Documentation/CMakeLists.txt | 6 +++--- Qt/Components/pqClientMainWindow.cxx | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) --- NEW FILE paraview-3.6.1-doc.patch --- --- ParaView3/Applications/Client/CMakeLists.txt.doc 2009-07-21 16:12:15.214230597 -0600 +++ ParaView3/Applications/Client/CMakeLists.txt 2009-07-21 16:19:41.606170088 -0600 @@ -130,7 +130,7 @@ IMMEDIATE) INSTALL( FILES "${CMAKE_CURRENT_BINARY_DIR}/CMake/tmp/pqClientDocFinder.txt" - DESTINATION ${PV_INSTALL_BIN_DIR} + DESTINATION "/usr/share/paraview" COMPONENT Runtime) ENDIF(NOT PV_INSTALL_NO_RUNTIME) --- ParaView3/Applications/OverView/Core/MainWindow.cxx.doc 2009-07-20 13:36:12.000000000 -0600 +++ ParaView3/Applications/OverView/Core/MainWindow.cxx 2009-07-21 16:13:56.103167958 -0600 @@ -987,7 +987,7 @@ if(profileFile.isEmpty()) { // see if help is bundled up with the application - QString profile = ::Locate("pqClient.adp"); + QString profile = QString("/usr/share/paraview/pqClient.adp"); /*QCoreApplication::applicationDirPath() + QDir::separator() + QString("pqClient.adp");*/ if(QFile::exists(profile)) --- ParaView3/Documentation/CMakeLists.txt.doc 2008-12-22 14:06:00.000000000 -0700 +++ ParaView3/Documentation/CMakeLists.txt 2009-07-21 16:17:55.928230792 -0600 @@ -143,7 +143,7 @@ set(dir "${ParaView_BINARY_DIR}/Documentation/") install( DIRECTORY ${ParaView_BINARY_DIR}/Documentation/ - DESTINATION ${PV_EXE_INSTALL}/Documentation + DESTINATION "/usr/share/paraview/Documentation" COMPONENT Runtime REGEX ".html") @@ -155,7 +155,7 @@ install( FILES "${ParaView_BINARY_DIR}/about.html" - DESTINATION ${PV_INSTALL_BIN_DIR} + DESTINATION "/usr/share/paraview" COMPONENT Runtime) configure_file( @@ -165,5 +165,5 @@ install( FILES ${ParaView_BINARY_DIR}/pqClient.adp - DESTINATION ${PV_EXE_INSTALL} + DESTINATION "/usr/share/paraview" COMPONENT Runtime) --- ParaView3/Qt/Components/pqClientMainWindow.cxx.doc 2009-07-20 13:37:39.000000000 -0600 +++ ParaView3/Qt/Components/pqClientMainWindow.cxx 2009-07-21 16:13:13.306167232 -0600 @@ -1060,7 +1060,7 @@ #if defined(Q_WS_MAC) QString profile = QCoreApplication::applicationDirPath() + "/../Support/pqClient.adp"; #else - QString profile = ::Locate("pqClient.adp"); + QString profile = QString("/usr/share/paraview/pqClient.adp"); #endif /*QCoreApplication::applicationDirPath() + QDir::separator() + QString("pqClient.adp");*/ paraview-3.6.1-plugins.patch: ParaViewPlugins.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE paraview-3.6.1-plugins.patch --- --- ParaView3/CMake/ParaViewPlugins.cmake.plugins 2009-07-20 13:36:16.000000000 -0600 +++ ParaView3/CMake/ParaViewPlugins.cmake 2009-07-22 09:45:23.993423101 -0600 @@ -8,7 +8,7 @@ MACRO(internal_paraview_install_plugin name) IF (PV_INSTALL_BIN_DIR) INSTALL(TARGETS ${name} - DESTINATION "${PV_INSTALL_BIN_DIR}/plugins/${name}" + DESTINATION "${CMAKE_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/plugins/${name}" COMPONENT Runtime) ENDIF (PV_INSTALL_BIN_DIR) ENDMACRO(internal_paraview_install_plugin) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/paraview/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 21 Oct 2008 17:09:48 -0000 1.9 +++ .cvsignore 23 Jul 2009 19:29:42 -0000 1.10 @@ -1 +1 @@ -paraview-3.4.0.tar.gz +paraview-3.6.1.tar.gz Index: paraview.spec =================================================================== RCS file: /cvs/pkgs/rpms/paraview/devel/paraview.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- paraview.spec 8 May 2009 14:33:28 -0000 1.34 +++ paraview.spec 23 Jul 2009 19:29:42 -0000 1.35 @@ -1,12 +1,12 @@ %{!?build_mpi:%define build_mpi 1} %define pv_maj 3 -%define pv_min 4 -%define pv_patch 0 +%define pv_min 6 +%define pv_patch 1 %define pv_majmin %{pv_maj}.%{pv_min} Name: paraview Version: %{pv_majmin}.%{pv_patch} -Release: 5%{?dist} +Release: 1%{?dist} Summary: Parallel visualization application Group: Applications/Engineering @@ -15,15 +15,22 @@ URL: http://www.paraview.org/ Source0: http://www.paraview.org/files/v%{pv_majmin}/paraview-%{version}.tar.gz Source1: paraview_22x22.png Source2: paraview.xml -#Allow build with Qt 4.5 -Patch1: paraview-3.4.0-qt.patch +#Fixup some install locations +#Reported upstream: http://public.kitware.com/mantis/view.php?id=9301 +Patch1: paraview-3.6.1-cmake-install-prefix.patch #Don't try to copy Qt libraries into paraview directory -Patch2: paraview-3.3.0-install.patch +Patch2: paraview-3.6.0-install.patch #Move pqClient.adp into %{_datadir}/paraview -Patch3: paraview-3.4.0-doc.patch -Patch4: paraview-3.2.1-assistant-qt4.patch +Patch3: paraview-3.6.1-doc.patch +#Look for assistant-qt4 instead of assistant +Patch4: paraview-3.6.0-assistant-qt4.patch #Reported upstream: http://public.kitware.com/Bug/view.php?id=7022 -Patch6: paraview-3.3.1-gcc43.patch +#Installs PointSpriteDemo into incorrect location, remove install for now +#Reported upstream: http://public.kitware.com/mantis/view.php?id=9292 +Patch5: paraview-3.6.1-demo.patch +#Install plugins into %{_libdir}/paraview/plugins instead of %{_bindir}/plugins +#Reported upstream: http://public.kitware.com/mantis/view.php?id=9293 +Patch6: paraview-3.6.1-plugins.patch #Reported upstream: http://public.kitware.com/mantis/view.php?id=7023 Patch7: paraview-3.2.2-hdf5.patch Patch8: paraview-3.4.0-hdf5-1.8.2.patch @@ -43,6 +50,7 @@ BuildRequires: readline-devel BuildRequires: openssl-devel BuildRequires: gnuplot BuildRequires: wget +BuildRequires: boost-devel Requires: %{name}-data = %{version}-%{release} Requires: %{name}-doc = %{version}-%{release} Requires: qt4-assistant @@ -51,6 +59,54 @@ Requires(postun): /usr/bin/update-deskto Obsoletes: paraview-demos < %{version}-%{release} Provides: paraview-demos = %{version}-%{release} +#VTK_USE_RPATH=OFF needed to build everything +%define paraview_cmake_options \\\ + -DCMAKE_CXX_COMPILER:FILEPATH=$CXX \\\ + -DCMAKE_C_COMPILER:FILEPATH=$CC \\\ + -DTCL_LIBRARY:PATH=tcl \\\ + -DTK_LIBRARY:PATH=tk \\\ + -DPARAVIEW_BUILD_OverView:BOOL=ON \\\ + -DPARAVIEW_BUILD_StreamingParaView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_Streaming:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_Array:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientGeoView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientGeoView2D:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientGraphView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientHierarchyView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientRecordView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientTableView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientTreeView:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_CommonToolbar:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_CosmoFilters:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_GraphLayoutFilterPanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_Infovis:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_netCDFReaders:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_pvblot:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_SLACTools:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_SQLDatabaseGraphSourcePanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_SQLDatabaseTableSourcePanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_SplitTableFieldPanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_StatisticsToolbar:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_TableToGraphPanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_TableToSparseArrayPanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ThresholdTablePanel:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_ClientGraphViewFrame:BOOL=ON \\\ + -DPARAVIEW_BUILD_PLUGIN_VisItReaderPlugin:BOOL=OFF \\\ + -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \\\ + -DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON \\\ + -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \\\ + -DVTK_USE_BOOST:BOOL=ON \\\ + -DVTK_USE_INFOVIS:BOOL=OFF \\\ + -DVTK_USE_N_WAY_ARRAYS:BOOL=ON \\\ + -DVTK_USE_RPATH:BOOL=OFF \\\ + -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \\\ + -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \\\ + -DVTK_USE_SYSTEM_JPEG:BOOL=ON \\\ + -DVTK_USE_SYSTEM_PNG:BOOL=ON \\\ + -DVTK_USE_SYSTEM_TIFF:BOOL=ON \\\ + -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \\\ + -DBUILD_DOCUMENTATION:BOOL=ON \\\ + -DBUILD_EXAMPLES:BOOL=ON %description ParaView is an application designed with the need to visualize large data @@ -121,12 +177,13 @@ BuildArch: noarch %prep -%setup -q -n ParaView-%{version} -%patch1 -p1 -b .qt +%setup -q -n ParaView3 +%patch1 -p1 -b .cmake-install-prefix %patch2 -p1 -b .install %patch3 -p1 -b .doc %patch4 -p1 -b .assistant-qt4 -%patch6 -p1 -b .gcc43 +%patch5 -p1 -b .demo +%patch6 -p1 -b .plugins %patch7 -p1 -b .hdf5 %patch8 -p1 -b .hdf5-1.8.2 #Remove included hdf5 just to be sure @@ -142,27 +199,10 @@ export CXX='g++' export MAKE='make' export CFLAGS="$RPM_OPT_FLAGS -DH5_USE_16_API" export CXXFLAGS="$RPM_OPT_FLAGS -DH5_USE_16_API" -#VTK_USE_RPATH=OFF needed to build everything %cmake .. \ -DPV_INSTALL_LIB_DIR:PATH=/%{_lib}/paraview \ - -DCMAKE_CXX_COMPILER:FILEPATH=$CXX \ - -DCMAKE_C_COMPILER:FILEPATH=$CC \ - -DTCL_LIBRARY:PATH=tcl \ - -DTK_LIBRARY:PATH=tk \ - -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \ - -DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON \ - -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ - -DVTK_USE_INFOVIS:BOOL=OFF \ - -DVTK_USE_RPATH:BOOL=OFF \ - -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ - -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \ - -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ - -DVTK_USE_SYSTEM_PNG:BOOL=ON \ - -DVTK_USE_SYSTEM_TIFF:BOOL=ON \ - -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \ - -DBUILD_DOCUMENTATION:BOOL=ON \ - -DBUILD_EXAMPLES:BOOL=ON -#Need to run cmake twice to get MPI headers into VTK/Parallel build config + %{paraview_cmake_options} +##Need to run cmake twice to get MPI headers into VTK/Parallel build config cmake .. make VERBOSE=1 %{?_smp_mflags} popd @@ -174,28 +214,12 @@ export CXX='g++' export MAKE='make' export CFLAGS="$RPM_OPT_FLAGS -DH5_USE_16_API" export CXXFLAGS="$RPM_OPT_FLAGS -DH5_USE_16_API" -#VTK_USE_RPATH=OFF needed to build everything %cmake .. \ -DPV_INSTALL_LIB_DIR:PATH=/%{_lib}/paraview-mpi \ - -DCMAKE_CXX_COMPILER:FILEPATH=$CXX \ - -DCMAKE_C_COMPILER:FILEPATH=$CC \ - -DTCL_LIBRARY:PATH=tcl \ - -DTK_LIBRARY:PATH=tk \ - -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \ -DPARAVIEW_USE_MPI:BOOL=ON \ - -DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON \ -DICET_BUILD_TESTING:BOOL=ON \ - -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ - -DVTK_USE_INFOVIS:BOOL=OFF \ - -DVTK_USE_RPATH:BOOL=OFF \ - -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ - -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \ - -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ - -DVTK_USE_SYSTEM_PNG:BOOL=ON \ - -DVTK_USE_SYSTEM_TIFF:BOOL=ON \ - -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \ - -DBUILD_DOCUMENTATION:BOOL=ON \ - -DBUILD_EXAMPLES:BOOL=ON + -DMPI_COMPILER:FILEPATH=%{_libdir}/openmpi/$(pkg-config --modversion openmpi)/bin/mpicxx \ + %{paraview_cmake_options} #Need to run cmake twice to get MPI headers into VTK/Parallel build config cmake .. make VERBOSE=1 %{?_smp_mflags} @@ -226,7 +250,7 @@ pushd $RPM_BUILD_ROOT/%{_bindir} #Don't ship copy of Qt assisstant rm $RPM_BUILD_ROOT%{_bindir}/assistant #Don't need mpi versions of these -rm -f paraview pvpython pvTestDriver vtkSMExtractDocumentation +rm -f lproj paraview pvblot pvpython pvTestDriver vtkSMExtractDocumentation #Move the remaining mpi binaries out of the way for f in * do @@ -237,8 +261,12 @@ popd #Remove mpi copy of includes, man pages, and documentation rm -rf $RPM_BUILD_ROOT/%{_includedir}/paraview-%{pv_majmin} rm -rf $RPM_BUILD_ROOT%{_mandir} -rm -r $RPM_BUILD_ROOT%{_libdir}/paraview-mpi/{doc,Documentation,pqClient.adp} +#rm -r $RPM_BUILD_ROOT%{_libdir}/paraview-mpi/{doc,Documentation,pqClient.adp} popd + +#Move some stuff to the proper location +mv $RPM_BUILD_ROOT/%{_lib}/paraview-mpi/* $RPM_BUILD_ROOT%{_libdir}/paraview-mpi/ +rm -r $RPM_BUILD_ROOT/%{_lib}/paraview-mpi %endif #Install the normal version @@ -274,8 +302,12 @@ rm -r $RPM_BUILD_ROOT/usr/plugins rm $RPM_BUILD_ROOT%{_bindir}/assistant #Move the documentation -mv $RPM_BUILD_ROOT%{_libdir}/paraview/{Documentation,pqClient.adp} \ - $RPM_BUILD_ROOT%{_datadir}/paraview/ +#mv $RPM_BUILD_ROOT%{_libdir}/paraview/{Documentation,pqClient.adp} \ +# $RPM_BUILD_ROOT%{_datadir}/paraview/ + +#Move some stuff to the proper location +mv $RPM_BUILD_ROOT/%{_lib}/paraview/* $RPM_BUILD_ROOT%{_libdir}/paraview/ +rm -r $RPM_BUILD_ROOT/%{_lib}/paraview %clean @@ -302,8 +334,10 @@ update-mime-database %{_datadir}/mime &> %files %defattr(-,root,root,-) %doc License_v1.2.txt +%{_bindir}/lproj %{_bindir}/paraview %{_bindir}/pvbatch +%{_bindir}/pvblot %{_bindir}/pvdataserver %{_bindir}/pvpython %{_bindir}/pvrenderserver @@ -312,6 +346,8 @@ update-mime-database %{_datadir}/mime &> %{_bindir}/vtkSMExtractDocumentation %{_libdir}/paraview/ %exclude %{_libdir}/paraview/doc/ +%dir %{_datadir}/paraview +%doc %{_datadir}/paraview/about.html %if %{build_mpi} %files mpi @@ -328,7 +364,6 @@ update-mime-database %{_datadir}/mime &> %files data %defattr(-,root,root,-) %{_datadir}/applications/fedora-paraview.desktop -%dir %{_datadir}/paraview %{_datadir}/pixmaps/paraview_22x22.png %{_datadir}/mime/packages/paraview.xml @@ -342,10 +377,14 @@ update-mime-database %{_datadir}/mime &> %files doc %defattr(-,root,root,-) %doc %{_datadir}/paraview/pqClient.adp +%doc %{_datadir}/paraview/pqClientDocFinder.txt %doc %{_datadir}/paraview/Documentation/ %changelog +* Wed Jul 22 2009 Orion Poplawski - 3.6.1-1 +- Update to 3.6.1 + * Thu May 7 2009 Orion Poplawski - 3.4.0-5 - Update doc patch to look for help file in the right place (bug #499273) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/paraview/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 21 Oct 2008 17:09:48 -0000 1.9 +++ sources 23 Jul 2009 19:29:42 -0000 1.10 @@ -1 +1 @@ -a12067913e08ea7a465ca41509dbfde1 paraview-3.4.0.tar.gz +becbff0b9989b1b788dba75c4289ee7e paraview-3.6.1.tar.gz --- paraview-3.2.1-assistant-qt4.patch DELETED --- --- paraview-3.3.0-install.patch DELETED --- --- paraview-3.3.1-gcc43.patch DELETED --- --- paraview-3.4.0-doc.patch DELETED --- --- paraview-3.4.0-qt.patch DELETED --- From leigh123linux at fedoraproject.org Thu Jul 23 19:31:26 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 19:31:26 +0000 (UTC) Subject: rpms/compizconfig-backend-gconf/devel .cvsignore, 1.5, 1.6 compizconfig-backend-gconf.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090723193126.ADBDA11C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/compizconfig-backend-gconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22388 Modified Files: .cvsignore compizconfig-backend-gconf.spec sources Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-gconf/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Dec 2008 17:02:29 -0000 1.5 +++ .cvsignore 23 Jul 2009 19:30:56 -0000 1.6 @@ -1 +1 @@ -compizconfig-backend-gconf-0.7.8.tar.bz2 +compizconfig-backend-gconf-0.8.2.tar.bz2 Index: compizconfig-backend-gconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-gconf/devel/compizconfig-backend-gconf.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- compizconfig-backend-gconf.spec 24 Feb 2009 08:46:17 -0000 1.9 +++ compizconfig-backend-gconf.spec 23 Jul 2009 19:30:56 -0000 1.10 @@ -1,8 +1,8 @@ -%define basever 0.7.8 +%define basever 0.8.2 Name: compizconfig-backend-gconf -Version: 0.7.8 -Release: 2%{?dist} +Version: 0.8.2 +Release: 1%{?dist} Summary: GConf backend for compizconfig Group: System Environment/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/compizconfig/backends/libgconf.so %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-1 +- update to 0.8.2 + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-gconf/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 3 Dec 2008 17:02:29 -0000 1.5 +++ sources 23 Jul 2009 19:30:56 -0000 1.6 @@ -1 +1 @@ -e6c05543b52e7bcd8e32e58f2c4ba00c compizconfig-backend-gconf-0.7.8.tar.bz2 +4be4ef08e811713277077ba89934c332 compizconfig-backend-gconf-0.8.2.tar.bz2 From leigh123linux at fedoraproject.org Thu Jul 23 19:33:46 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Thu, 23 Jul 2009 19:33:46 +0000 (UTC) Subject: rpms/compizconfig-backend-kconfig/devel .cvsignore, 1.5, 1.6 compizconfig-backend-kconfig.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090723193346.59EDB11C0093@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23013 Modified Files: .cvsignore compizconfig-backend-kconfig.spec sources Log Message: * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 3 Dec 2008 17:03:15 -0000 1.5 +++ .cvsignore 23 Jul 2009 19:33:16 -0000 1.6 @@ -1 +1 @@ -compizconfig-backend-kconfig-0.7.8.tar.bz2 +compizconfig-backend-kconfig-0.8.2.tar.bz2 Index: compizconfig-backend-kconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel/compizconfig-backend-kconfig.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- compizconfig-backend-kconfig.spec 24 Feb 2009 08:47:16 -0000 1.7 +++ compizconfig-backend-kconfig.spec 23 Jul 2009 19:33:16 -0000 1.8 @@ -1,8 +1,8 @@ -%define basever 0.7.8 +%define basever 0.8.2 Name: compizconfig-backend-kconfig -Version: 0.7.8 -Release: 2%{?dist} +Version: 0.8.2 +Release: 1%{?dist} Summary: kconfig backend for compizconfig Group: System Environment/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/compizconfig/backends/libkconfig.so %changelog +* Thu Jul 23 2009 Leigh Scott 0.8.2-1 +- update to 0.8.2 + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 3 Dec 2008 17:03:15 -0000 1.5 +++ sources 23 Jul 2009 19:33:16 -0000 1.6 @@ -1 +1 @@ -f6e0dac64ea8e47db2725c858cc9a00c compizconfig-backend-kconfig-0.7.8.tar.bz2 +5a34c6da8c2d3ef4e8ebb4495ce0aa36 compizconfig-backend-kconfig-0.8.2.tar.bz2 From ajax at fedoraproject.org Thu Jul 23 19:33:58 2009 From: ajax at fedoraproject.org (Adam Jackson) Date: Thu, 23 Jul 2009 19:33:58 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver-1.6.99-linkmap.patch, NONE, 1.1 xorg-x11-server.spec, 1.449, 1.450 Message-ID: <20090723193358.BD3FC11C0093@cvs1.fedora.phx.redhat.com> Author: ajax Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23344 Modified Files: xorg-x11-server.spec Added Files: xserver-1.6.99-linkmap.patch Log Message: * Thu Jul 23 2009 Adam Jackson 1.6.99-16.20090721 - xserver-1.6.99-linkmap.patch: Print load offsets of all DSOs on backtrace so we addr2line afterwards. xserver-1.6.99-linkmap.patch: backtrace.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) --- NEW FILE xserver-1.6.99-linkmap.patch --- >From edf055d2733a0e012dfd97daf1906c407c47ff88 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 23 Jul 2009 14:43:30 -0400 Subject: [PATCH] dix: Print load map on backtrace --- os/backtrace.c | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/os/backtrace.c b/os/backtrace.c index 3cfae3e..af67301 100644 --- a/os/backtrace.c +++ b/os/backtrace.c @@ -30,18 +30,34 @@ #ifdef HAVE_BACKTRACE #include +#include +#include void xorg_backtrace(void) { void *array[32]; /* deeper nesting than this means something's wrong */ int size, i; char **strings; + struct link_map *lm; + void *self; + ErrorF("\nBacktrace:\n"); size = backtrace(array, 32); strings = backtrace_symbols(array, size); for (i = 0; i < size; i++) ErrorF("%d: %s\n", i, strings[i]); free(strings); + + self = dlopen(NULL, RTLD_LAZY); + dlinfo(self, RTLD_DI_LINKMAP, &lm); + + ErrorF("\nLink map:\n"); + while (lm) { + if (lm->l_addr) + ErrorF("%p: %s\n", (void *)lm->l_addr, + lm->l_name[0] ? lm->l_name : "(vdso)"); + lm = lm->l_next; + } } #else /* not glibc or glibc < 2.1 */ -- 1.6.3.3 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.449 retrieving revision 1.450 diff -u -p -r1.449 -r1.450 --- xorg-x11-server.spec 21 Jul 2009 17:31:15 -0000 1.449 +++ xorg-x11-server.spec 23 Jul 2009 19:33:58 -0000 1.450 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 15.%{gitdate}%{?dist} +Release: 16.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -46,6 +46,8 @@ Source20: http://svn.exactcode.de/t2/tr Source30: find-provides #define __find_provides {nil} +Patch10: xserver-1.6.99-linkmap.patch + # OpenGL compositing manager feature/optimization patches. Patch103: xserver-1.5.0-bg-none-root.patch @@ -521,6 +523,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Adam Jackson 1.6.99-16.20090721 +- xserver-1.6.99-linkmap.patch: Print load offsets of all DSOs on backtrace + so we addr2line afterwards. + * Tue Jul 21 2009 Adam Jackson 1.6.99-15.20090721 - Today's git snapshot. From caolanm at fedoraproject.org Thu Jul 23 19:34:18 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Thu, 23 Jul 2009 19:34:18 +0000 (UTC) Subject: rpms/hunspell/devel hunspell-1.2.8-2826164.fixtests.patch, NONE, 1.1 hunspell.spec, 1.70, 1.71 Message-ID: <20090723193418.24E7B11C0093@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23246 Modified Files: hunspell.spec Added Files: hunspell-1.2.8-2826164.fixtests.patch Log Message: fix tests hunspell-1.2.8-2826164.fixtests.patch: test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE hunspell-1.2.8-2826164.fixtests.patch --- --- hunspell-1.2.8.orig/tests/test.sh 2009-07-23 19:19:57.000000000 +0100 +++ hunspell-1.2.8/tests/test.sh 2009-07-23 19:20:45.000000000 +0100 @@ -33,8 +33,8 @@ shopt -s expand_aliases -alias hunspell='../src/tools/hunspell' -alias analyze='../src/tools/analyze' +alias hunspell='../libtool --mode=execute -dlopen ../src/hunspell/.libs/libhunspell*.la ../src/tools/hunspell' +alias analyze='../libtool --mode=execute -dlopen ../src/hunspell/.libs/libhunspell*.la ../src/tools/analyze' if [ "$VALGRIND" != "" ]; then rm -f $TEMPDIR/test.pid* Index: hunspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell/devel/hunspell.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- hunspell.spec 22 Jul 2009 14:24:26 -0000 1.70 +++ hunspell.spec 23 Jul 2009 19:33:47 -0000 1.71 @@ -13,6 +13,7 @@ BuildRequires: libtool, ncurses-devel Patch1: hunspell-1.2.7-2314461.ispell-alike.patch Patch2: hunspell-1.2.8-2784983.defaultlanguage.patch Patch3: hunspell-1.2.8-2812045.warnings.fortify.patch +Patch4: hunspell-1.2.8-2826164.fixtests.patch %description Hunspell is a spell checker and morphological analyzer library and program @@ -33,6 +34,7 @@ Includes and definitions for developing %patch1 -p1 -b .ispell-alike.patch %patch2 -p1 -b .defaultlanguage.patch %patch3 -p1 -b .warnings.fortify.patch +%patch4 -p1 -b .fixtests.patch # Filter unwanted Requires for the "use explicitely" string in ispellaff2myspell cat << \EOF > %{name}-req #!/bin/sh @@ -123,7 +125,7 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/hunspell.3.gz %changelog -* Wed Jul 22 2009 Caolan McNamara - 1.2.8-10 +* Thu Jul 23 2009 Caolan McNamara - 1.2.8-10 - run tests in check * Thu Jul 09 2009 Caolan McNamara - 1.2.8-9 From hadess at fedoraproject.org Thu Jul 23 19:35:50 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 23 Jul 2009 19:35:50 +0000 (UTC) Subject: rpms/totem-pl-parser/devel .cvsignore, 1.22, 1.23 sources, 1.22, 1.23 totem-pl-parser.spec, 1.38, 1.39 Message-ID: <20090723193550.E272D11C0093@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem-pl-parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23867 Modified Files: .cvsignore sources totem-pl-parser.spec Log Message: * Thu Jul 23 2009 Bastien Nocera 2.27.2-1 - Update to 2.27.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/totem-pl-parser/devel/.cvsignore,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- .cvsignore 6 May 2009 21:24:58 -0000 1.22 +++ .cvsignore 23 Jul 2009 19:35:20 -0000 1.23 @@ -1 +1 @@ -totem-pl-parser-2.27.1.tar.bz2 +totem-pl-parser-2.27.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/totem-pl-parser/devel/sources,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- sources 6 May 2009 21:24:58 -0000 1.22 +++ sources 23 Jul 2009 19:35:20 -0000 1.23 @@ -1 +1 @@ -397c8e850647d38a446a16a62f11cd0c totem-pl-parser-2.27.1.tar.bz2 +65fe6b0f523e4d90fda97736bbdaf637 totem-pl-parser-2.27.2.tar.bz2 Index: totem-pl-parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem-pl-parser/devel/totem-pl-parser.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- totem-pl-parser.spec 6 May 2009 21:24:58 -0000 1.38 +++ totem-pl-parser.spec 23 Jul 2009 19:35:20 -0000 1.39 @@ -1,5 +1,5 @@ Name: totem-pl-parser -Version: 2.27.1 +Version: 2.27.2 Release: 1%{?dist} Summary: Totem Playlist Parser library @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version Obsoletes: totem-plparser BuildRequires: gtk2-devel -BuildRequires: evolution-data-server-devel +BuildRequires: gmime-devel BuildRequires: gettext BuildRequires: perl(XML::Parser) intltool @@ -26,8 +26,6 @@ Obsoletes: totem-devel Requires: %{name} = %{version}-%{release} Requires: pkgconfig Requires: gtk2-devel -# FIXME is this really needed? -Requires: evolution-data-server-devel %description devel The %{name}-devel package contains libraries and header files for @@ -68,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/totem-pl-parser %changelog +* Thu Jul 23 2009 Bastien Nocera 2.27.2-1 +- Update to 2.27.2 + * Wed May 06 2009 Bastien Nocera 2.27.1-1 - Update to 2.27.1 From tuxbrewr at fedoraproject.org Thu Jul 23 19:36:01 2009 From: tuxbrewr at fedoraproject.org (Steven M. Parrish) Date: Thu, 23 Jul 2009 19:36:01 +0000 (UTC) Subject: rpms/liferea/F-11 .cvsignore, 1.83, 1.84 liferea.spec, 1.137, 1.138 sources, 1.84, 1.85 Message-ID: <20090723193601.C4C7B11C0093@cvs1.fedora.phx.redhat.com> Author: tuxbrewr Update of /cvs/pkgs/rpms/liferea/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24055 Modified Files: .cvsignore liferea.spec sources Log Message: New release candidate Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/liferea/F-11/.cvsignore,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- .cvsignore 30 Jun 2009 21:17:04 -0000 1.83 +++ .cvsignore 23 Jul 2009 19:36:01 -0000 1.84 @@ -1 +1 @@ -liferea-1.6.0-rc6.tar.gz +liferea-1.6.0-rc7.tar.gz Index: liferea.spec =================================================================== RCS file: /cvs/pkgs/rpms/liferea/F-11/liferea.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- liferea.spec 2 Jul 2009 17:27:32 -0000 1.137 +++ liferea.spec 23 Jul 2009 19:36:01 -0000 1.138 @@ -1,12 +1,12 @@ Name: liferea Version: 1.6.0 -Release: 0.3.rc6%{?dist} +Release: 0.4.rc7%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet License: GPLv2+ URL: http://liferea.sourceforge.net/ -Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}-rc6.tar.gz +Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}-rc7.tar.gz Patch0: %{name}-fedorafeed.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -14,7 +14,7 @@ BuildRequires: GConf2-devel BuildRequires: libxml2-devel BuildRequires: libxslt-devel BuildRequires: sqlite-devel -BuildRequires: webkitgtk-devel +BuildRequires: webkitgtk-devel BuildRequires: intltool BuildRequires: libglade2-devel BuildRequires: desktop-file-utils @@ -35,7 +35,7 @@ It can be used to maintain a list of sub browse through their items, and show their contents. %prep -%setup -q -n %{name}-%{version}-rc6 +%setup -q -n %{name}-%{version}-rc7 %patch0 -p1 -b .fedorafeed %build @@ -106,8 +106,29 @@ fi %dir %{_libdir}/%{name} %changelog -* Thu Jul 02 2009 Steven M. Parrish 1.6.0-0.3.rc6 -- Double bump due to conflicting builds +* Thu Jul 23 2009 Steven M. Parrish 1.6.0-0.4.rc7 +- Open the "Decrease/Increase Text Size" menu instead of the +- normal link menu on JavaScript links. +- Fixes SF #2787817, SF #2814022, Debian #525368: +- Work around several eggtrayicon crashes. +- Fix target="_blank" links not opening in tabs. +- Fixes a crash on some newsbin items without parents. +- Open new windows opened by Javascript in a new tab. +- Fixes crash when removing Google Reader node when update +- of one of it's subscriptions is in progress. +- Fixes SF #2789255: Crash when quitting during download. +- Reduce memory usage by only using a WebKitWebSettings for all +- the htmlviews. +- Fixes SF #2823359: Subscription -> New Source crashes +- Require WebKitGtk+ >= 1.1.10 to avoid problems with older +- versions. +- Fixes SF #2815397: Don't scale images when scaling the text. +- Fixes Debian #537295: Work around a format misdetection in +- item_set_description(). +- Fixes Debian #537332: Infinite loop on 404 errors. +- Update of Arabic translation. +- Update of Brazilian Portuguese translation. + * Tue Jun 30 2009 Steven M. Parrish 1.6.0-0.1.rc6 - Updated the example feeds. @@ -121,10 +142,13 @@ fi - Don't use the deprecated soup_message_headers_get() function. - More consistent tab label widths. - Avoid having loading of other tabs cancelled when opening -- a new tab. +- a new tab. -* Tue Jun 30 2009 Christopher Aillon - 1.6.0-0.2.rc5 -- Rebuild against newer gecko +* Wed Jun 24 2009 Rex Dieter 1.6.0-0.3.fc5 +- Obsoletes: liferea-WebKit < 1.6.0 + +* Tue Jun 16 2009 Steven M. Parrish 1.6.0-0.2.rc5 +- fix missing BR * Tue Jun 16 2009 Steven M. Parrish 1.6.0-0.1.rc5 - New upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/liferea/F-11/sources,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- sources 30 Jun 2009 21:17:04 -0000 1.84 +++ sources 23 Jul 2009 19:36:01 -0000 1.85 @@ -1 +1 @@ -faea2fd081c0cd31b279c22aba3632fa liferea-1.6.0-rc6.tar.gz +8b283144b77d872dce53e402ef8a4cf6 liferea-1.6.0-rc7.tar.gz From sseago at fedoraproject.org Thu Jul 23 19:16:34 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 19:16:34 +0000 (UTC) Subject: rpms/rubygem-daemons/devel .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090723191634.5644011C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17142 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: updated to 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Aug 2007 20:44:48 -0000 1.2 +++ .cvsignore 23 Jul 2009 19:16:31 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/devel/rubygem-daemons.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-daemons.spec 25 Feb 2009 21:42:58 -0000 1.2 +++ rubygem-daemons.spec 23 Jul 2009 19:16:31 -0000 1.3 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 3%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,9 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Aug 2007 20:44:48 -0000 1.2 +++ sources 23 Jul 2009 19:16:31 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From rdieter at fedoraproject.org Thu Jul 23 19:41:34 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 19:41:34 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings-4.2.96-kdebug#198632.patch, 1.2, 1.3 kdebindings.spec, 1.224, 1.225 Message-ID: <20090723194134.3D84C11C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26023 Modified Files: kdebindings.spec Added Files: kdebindings-4.2.96-kdebug#198632.patch Log Message: oops, bringing back patch, it didn't make 4.3 branch in time. kdebindings-4.2.96-kdebug#198632.patch: CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: kdebindings-4.2.96-kdebug#198632.patch =================================================================== RCS file: kdebindings-4.2.96-kdebug#198632.patch diff -N kdebindings-4.2.96-kdebug#198632.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ kdebindings-4.2.96-kdebug#198632.patch 23 Jul 2009 19:41:33 -0000 1.3 @@ -0,0 +1,9 @@ +diff -up kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt.kdebug#198632 kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt +--- kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt.kdebug#198632 2009-03-27 09:46:05.000000000 -0500 ++++ kdebindings-4.2.96/python/pykde4/tools/pykdeuic4/CMakeLists.txt 2009-07-16 12:39:38.457647506 -0500 +@@ -1,3 +1,3 @@ + +-PYTHON_INSTALL(kde4.py ${DATA_INSTALL_DIR}/${PROJECT_NAME}) +-PYTHON_INSTALL(pykdeuic4.py ${DATA_INSTALL_DIR}/${PROJECT_NAME}) ++PYTHON_INSTALL(kde4.py ${PYTHON_SITE_PACKAGES_DIR}/PyQt4/uic/widget-plugins/) ++PYTHON_INSTALL(pykdeuic4.py ${BIN_INSTALL_DIR}/pykdeuic4) Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.224 retrieving revision 1.225 diff -u -p -r1.224 -r1.225 --- kdebindings.spec 21 Jul 2009 22:13:25 -0000 1.224 +++ kdebindings.spec 23 Jul 2009 19:41:34 -0000 1.225 @@ -40,6 +40,7 @@ License: LGPLv2+ Group: User Interface/Desktops URL: http://developer.kde.org/language-bindings/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # patch to disable examples (trouble with them installing to the buildroot) Patch0: kdebindings-qyoto-examples.patch @@ -48,8 +49,8 @@ Patch1: kdebindings-4.2.85-old-PyQt4.pa # make the Python plugin factory work without python-devel Patch2: kdebindings-4.2.4-fix-kpythonpluginfactory.patch ## upstream patches - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +#http://bugs.kde.org/198632#c5 +Patch100: kdebindings-4.2.96-kdebug#198632.patch BuildRequires: akonadi-devel >= 1.1.0 BuildRequires: kdebase-workspace-devel >= %{version} @@ -255,6 +256,7 @@ Falcon plugin for the Kross archtecture %patch2 -p1 -b .fix-kpythonpluginfactory # upstream patches +%patch100 -p1 -b .kdebug#198632 %build From sseago at fedoraproject.org Thu Jul 23 19:42:16 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 19:42:16 +0000 (UTC) Subject: rpms/rubygem-daemons/F-10 .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723194216.1681A11C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26140 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: updated to version 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Aug 2007 20:44:48 -0000 1.2 +++ .cvsignore 23 Jul 2009 19:41:45 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-10/rubygem-daemons.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-daemons.spec 28 Aug 2007 14:01:17 -0000 1.1 +++ rubygem-daemons.spec 23 Jul 2009 19:41:45 -0000 1.2 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 2%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,12 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Aug 24 2007 - 1.0.7-2 - rpmlint fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Aug 2007 20:44:48 -0000 1.2 +++ sources 23 Jul 2009 19:41:45 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From hadess at fedoraproject.org Thu Jul 23 19:43:41 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 23 Jul 2009 19:43:41 +0000 (UTC) Subject: rpms/totem-pl-parser/devel totem-pl-parser.spec,1.39,1.40 Message-ID: <20090723194341.EA55411C0093@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem-pl-parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26842 Modified Files: totem-pl-parser.spec Log Message: Add missing libxml BR Index: totem-pl-parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem-pl-parser/devel/totem-pl-parser.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- totem-pl-parser.spec 23 Jul 2009 19:35:20 -0000 1.39 +++ totem-pl-parser.spec 23 Jul 2009 19:43:41 -0000 1.40 @@ -12,6 +12,7 @@ Obsoletes: totem-plparser BuildRequires: gtk2-devel BuildRequires: gmime-devel +BuildRequires: libxml2-devel BuildRequires: gettext BuildRequires: perl(XML::Parser) intltool From sseago at fedoraproject.org Thu Jul 23 19:50:35 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 19:50:35 +0000 (UTC) Subject: rpms/rubygem-daemons/EL-5 .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723195035.3CF2A11C049E@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29788 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: upgraded to 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 23 May 2008 14:28:33 -0000 1.2 +++ .cvsignore 23 Jul 2009 19:50:04 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-5/rubygem-daemons.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-daemons.spec 23 May 2008 14:28:33 -0000 1.1 +++ rubygem-daemons.spec 23 Jul 2009 19:50:04 -0000 1.2 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 2%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,12 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Aug 24 2007 - 1.0.7-2 - rpmlint fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 23 May 2008 14:28:33 -0000 1.2 +++ sources 23 Jul 2009 19:50:04 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From rdieter at fedoraproject.org Thu Jul 23 19:51:30 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 19:51:30 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec, 1.253, 1.254 kdebase-workspace-4.2.95-libxklavier_40.patch, 1.1, NONE Message-ID: <20090723195130.E78EF11C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29988 Modified Files: kdebase-workspace.spec Removed Files: kdebase-workspace-4.2.95-libxklavier_40.patch Log Message: libxklavier fixed upstream, drop patch Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.253 retrieving revision 1.254 diff -u -p -r1.253 -r1.254 --- kdebase-workspace.spec 21 Jul 2009 22:06:45 -0000 1.253 +++ kdebase-workspace.spec 23 Jul 2009 19:51:00 -0000 1.254 @@ -25,8 +25,6 @@ Patch12: kdebase-workspace-4.2.95-defaul Patch13: kdebase-workspace-4.2.0-pykde4.patch Patch14: kdebase-workspace-4.2.0-klipper-arora.patch Patch15: kdebase-workspace-4.2.0-kio_sysinfo.patch -# TODO: make upstreamable version -Patch16: kdebase-workspace-4.2.95-libxklavier_40.patch # upstream patches: # 4.3 branch @@ -220,9 +218,6 @@ Requires: PyKDE4 >= %{version} %patch13 -p1 -b .pykde4 # kio_sysinfo based on OpenSUSE's patch %patch15 -p1 -b .kio_sysinfo -%if 0%{?fedora} > 11 -%patch16 -p1 -b .libxklavier_40 -%endif # upstream patches --- kdebase-workspace-4.2.95-libxklavier_40.patch DELETED --- From jgarzik at fedoraproject.org Thu Jul 23 19:57:18 2009 From: jgarzik at fedoraproject.org (Jeff Garzik) Date: Thu, 23 Jul 2009 19:57:18 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.6,1.7 sources,1.5,1.6 Message-ID: <20090723195718.C443711C0093@cvs1.fedora.phx.redhat.com> Author: jgarzik Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31884 Modified Files: cld.spec sources Log Message: update to upstream; fix Requires Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cld.spec 23 Jul 2009 07:01:26 -0000 1.6 +++ cld.spec 23 Jul 2009 19:57:18 -0000 1.7 @@ -1,19 +1,22 @@ Name: cld Version: 0.2 -Release: 0.6.g2a5e626a%{?dist} +Release: 0.7.g487d5fb5%{?dist} Summary: Coarse locking daemon Group: System Environment/Base License: GPLv2 URL: http://hail.wiki.kernel.org/ -# pulled from upstream git, commit 2a5e626aa6e08d894e74af053236947cced8ff87. +# pulled from upstream git, commit 487d5fb50be8275a0e0cd36a882acdf1afe9a922 # to recreate tarball, check out commit, then run "make dist" Source0: cld-%{version}git.tar.gz Source2: cld.init Source3: cld.sysconf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(post): chkconfig +Requires(preun): chkconfig initscripts + BuildRequires: db4-devel libevent-devel glib2-devel doxygen openssl-devel BuildRequires: texlive-latex @@ -97,6 +100,10 @@ fi %{_includedir}/* %changelog +* Thu Jul 23 2009 Jeff Garzik - 0.2-0.7.g487d5fb5 +- update to commit 487d5fb50be8275a0e0cd36a882acdf1afe9a922 +- require chkconfig, initscripts per pkg guidelines + * Thu Jul 23 2009 Jeff Garzik - 0.2-0.6.g2a5e626a - update to commit 2a5e626aa6e08d894e74af053236947cced8ff87 to fix koji-related 'make check' logging issues. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Jul 2009 07:01:26 -0000 1.5 +++ sources 23 Jul 2009 19:57:18 -0000 1.6 @@ -1 +1 @@ -4a6a91e8f4ff923fc2b68097aad3815b cld-0.2git.tar.gz +8b48f4205d71ad77e79c24cebb36a7e5 cld-0.2git.tar.gz From rdieter at fedoraproject.org Thu Jul 23 20:15:59 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 20:15:59 +0000 (UTC) Subject: rpms/libmsn/F-11 .cvsignore, 1.4, 1.5 libmsn.spec, 1.9, 1.10 sources, 1.5, 1.6 Message-ID: <20090723201559.AD66C11C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libmsn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9434 Modified Files: .cvsignore libmsn.spec sources Log Message: * Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 - 4.0 beta 7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Jan 2009 20:25:42 -0000 1.4 +++ .cvsignore 23 Jul 2009 20:15:58 -0000 1.5 @@ -1 +1 @@ -libmsn-4.0-beta4.tar.bz2 +libmsn-4.0-beta7.tar.bz2 Index: libmsn.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-11/libmsn.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libmsn.spec 25 Feb 2009 16:25:34 -0000 1.9 +++ libmsn.spec 23 Jul 2009 20:15:59 -0000 1.10 @@ -1,9 +1,9 @@ -%define beta beta4 +%define beta beta7 Name: libmsn Version: 4.0 -Release: 0.11.%{beta}%{?dist} +Release: 0.12.%{beta}%{?dist} Group: System Environment/Libraries License: GPLv2 @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 +- 4.0 beta 7 + * Wed Feb 25 2009 Fedora Release Engineering - 4.0-0.11.beta4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 24 Jan 2009 20:25:42 -0000 1.5 +++ sources 23 Jul 2009 20:15:59 -0000 1.6 @@ -1 +1 @@ -b0155f01443644d7c4a60269e44d8dac libmsn-4.0-beta4.tar.bz2 +160bd277a66bd837d0a26e4c03454be3 libmsn-4.0-beta7.tar.bz2 From rdieter at fedoraproject.org Thu Jul 23 20:16:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 23 Jul 2009 20:16:42 +0000 (UTC) Subject: rpms/libmsn/F-10 .cvsignore, 1.4, 1.5 libmsn.spec, 1.3, 1.4 sources, 1.4, 1.5 Message-ID: <20090723201642.9BF1C11C0093@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libmsn/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10056 Modified Files: .cvsignore libmsn.spec sources Log Message: * Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 - 4.0 beta 7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 24 Jan 2009 20:30:06 -0000 1.4 +++ .cvsignore 23 Jul 2009 20:16:39 -0000 1.5 @@ -1 +1 @@ -libmsn-4.0-beta4.tar.bz2 +libmsn-4.0-beta7.tar.bz2 Index: libmsn.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-10/libmsn.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libmsn.spec 24 Jan 2009 20:30:06 -0000 1.3 +++ libmsn.spec 23 Jul 2009 20:16:42 -0000 1.4 @@ -1,9 +1,9 @@ -%define beta beta4 +%define beta beta7 Name: libmsn Version: 4.0 -Release: 0.10.%{beta}%{?dist} +Release: 0.12.%{beta}%{?dist} Group: System Environment/Libraries License: GPLv2 @@ -74,6 +74,12 @@ rm -rf %{buildroot} %changelog +* Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 +- 4.0 beta 7 + +* Wed Feb 25 2009 Fedora Release Engineering - 4.0-0.11.beta4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Jan 24 2009 John5342 4.0-0.10.beta4 - libmsn-4.0-beta4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 24 Jan 2009 20:30:06 -0000 1.4 +++ sources 23 Jul 2009 20:16:42 -0000 1.5 @@ -1 +1 @@ -b0155f01443644d7c4a60269e44d8dac libmsn-4.0-beta4.tar.bz2 +160bd277a66bd837d0a26e4c03454be3 libmsn-4.0-beta7.tar.bz2 From spot at fedoraproject.org Thu Jul 23 20:20:07 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 20:20:07 +0000 (UTC) Subject: rpms/asymptote/devel asymptote-1.82-settings.patch, NONE, 1.1 .cvsignore, 1.51, 1.52 asymptote.spec, 1.64, 1.65 sources, 1.51, 1.52 Message-ID: <20090723202007.25F4211C049E@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/asymptote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12173 Modified Files: .cvsignore asymptote.spec sources Added Files: asymptote-1.82-settings.patch Log Message: 1.82 asymptote-1.82-settings.patch: settings.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE asymptote-1.82-settings.patch --- diff -up asymptote-1.82/settings.cc.BAD asymptote-1.82/settings.cc --- asymptote-1.82/settings.cc.BAD 2009-07-23 15:54:55.954292521 -0400 +++ asymptote-1.82/settings.cc 2009-07-23 15:55:07.896039721 -0400 @@ -82,11 +82,11 @@ mode_t mask; bool msdos=false; string HOME="HOME"; const char pathSeparator=':'; -string defaultPSViewer="gv"; +string defaultPSViewer="evince"; #ifdef __APPLE__ string defaultPDFViewer="open"; #else -string defaultPDFViewer="acroread"; +string defaultPDFViewer="evince"; #endif string defaultGhostscript="gs"; string defaultDisplay="display"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/.cvsignore,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- .cvsignore 10 Jul 2009 21:32:28 -0000 1.51 +++ .cvsignore 23 Jul 2009 20:20:04 -0000 1.52 @@ -1 +1 @@ -asymptote-1.80.src.tgz +asymptote-1.82.src.tgz Index: asymptote.spec =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/asymptote.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- asymptote.spec 10 Jul 2009 21:32:29 -0000 1.64 +++ asymptote.spec 23 Jul 2009 20:20:04 -0000 1.65 @@ -4,7 +4,7 @@ %define xemacs_sitelisp %{_datadir}/xemacs/site-packages/lisp Name: asymptote -Version: 1.80 +Version: 1.82 Release: 1%{?dist} Summary: Descriptive vector graphics language @@ -14,7 +14,7 @@ URL: http://asymptote.sourcef Source0: http://dl.sourceforge.net/sourceforge/asymptote/asymptote-%{version}.src.tgz Source1: asy.gif Source2: xasy.desktop -Patch0: asymptote-1.80-settings.patch +Patch0: asymptote-1.82-settings.patch Patch1: asymptote-1.63-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -145,6 +145,9 @@ fi %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 1.82-1 +- update to 1.82 + * Fri Jul 10 2009 Tom "spot" Callaway - 1.80-1 - update to 1.80 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/sources,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- sources 10 Jul 2009 21:32:29 -0000 1.51 +++ sources 23 Jul 2009 20:20:04 -0000 1.52 @@ -1 +1 @@ -1657cf5434a36e28ee192a5c984cbc94 asymptote-1.80.src.tgz +0960360e00e8a1a6b84acb70f623ca72 asymptote-1.82.src.tgz From jjohnstn at fedoraproject.org Thu Jul 23 20:24:08 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Thu, 23 Jul 2009 20:24:08 +0000 (UTC) Subject: rpms/eclipse-rse/devel eclipse-rse.spec, NONE, 1.1 featureVersions.properties, NONE, 1.1 fetch-rse.sh, NONE, 1.1 pluginVersions.properties, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723202408.D8D0811C0093@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13666 Modified Files: .cvsignore sources Added Files: eclipse-rse.spec featureVersions.properties fetch-rse.sh pluginVersions.properties Log Message: * Thu Jul 23 2009 Jeff Johnston 3.0.3-1 - Initial release. --- NEW FILE eclipse-rse.spec --- %define eclipse_base %{_libdir}/eclipse %define install_loc %{_datadir}/eclipse/dropins Name: eclipse-rse Summary: Eclipse Remote System Explorer Version: 3.0.3 Release: 1%{?dist} License: EPL URL: http://www.eclipse.org/dsdp/tm/ # Following tarball generated by running fetch-rse.sh. Source0: rse-fetched-src-R3_0_3.tar.gz Source1: fetch-rse.sh # Following property files are generated by fetch-rse.sh. Source2: featureVersions.properties Source3: pluginVersions.properties BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: java-devel >= 1.5.0 BuildArch: noarch BuildRequires: eclipse-pde >= 1:3.4.1 BuildRequires: eclipse-cdt >= 1:5.0.1 BuildRequires: eclipse-emf >= 0:2.4.1 BuildRequires: jakarta-commons-net >= 0:1.4.1-5.4 BuildRequires: jakarta-oro >= 0:2.0.8-5.3 Requires: eclipse-platform >= 1:3.4.0 Requires: eclipse-emf >= 0:2.4.1 Requires: eclipse-cdt >= 1:5.0.1 Requires: jakarta-commons-net >= 0:1.4.1-5.4 Requires: jakarta-oro >= 0:2.0.8-5.3 Group: Development/Tools %description Remote System Explorer (RSE) is a framework and toolkit in Eclipse Workbench that allows you to connect and work with a variety of remote systems. %prep %setup -q -c %build rm -rf orbitdeps mkdir orbitdeps pushd orbitdeps ln -s %{_javadir}/commons-net-1.4.1.jar org.apache.commons.net_1.4.1.jar ln -s %{_javadir}/oro-2.0.8.jar org.apache.oro_2.0.8.jar popd mkdir -p build pushd build cp %{SOURCE2} . cp %{SOURCE3} . popd %{eclipse_base}/buildscripts/pdebuild -f org.eclipse.tm.terminal -d "emf" \ -a -DgenerateFeatureVersionSuffix=true -j -DJ2SE_1.4=%{_jvmdir}/java/jre/lib/rt.jar -o `pwd`/orbitdeps %{eclipse_base}/buildscripts/pdebuild -f org.eclipse.rse.sdk -d "cdt" \ -a -DgenerateFeatureVersionSuffix=true -j -DJ2SE_1.4=%{_jvmdir}/java/jre/lib/rt.jar -o `pwd`/orbitdeps %install rm -rf %{buildroot} install -d -m 755 %{buildroot}%{_datadir}/eclipse install -d -m 755 %{buildroot}%{install_loc}/rse unzip -q -o -d %{buildroot}%{install_loc}/rse \ build/rpmBuild/org.eclipse.tm.terminal.zip unzip -q -o -d %{buildroot}%{install_loc}/rse \ build/rpmBuild/org.eclipse.rse.sdk.zip pushd %{buildroot}%{install_loc}/rse/eclipse/plugins rm org.apache.commons.net_1.4.1.jar rm org.apache.oro_2.0.8.jar ln -s %{_javadir}/commons-net-1.4.1.jar org.apache.commons.net_1.4.1.jar ln -s %{_javadir}/oro-2.0.8.jar org.apache.oro_2.0.8.jar popd %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{install_loc}/rse %doc org.eclipse.rse.sdk-feature/epl-v10.html %doc org.eclipse.rse.sdk-feature/license.html %changelog * Thu Jul 23 2009 Jeff Johnston 3.0.3-1 - Initial release. --- NEW FILE featureVersions.properties --- # Mon Jul 20 16:19:39 EDT 2009 org.eclipse.tm.discovery,0.0.0=v20080530 org.eclipse.rse,0.0.0=v200902042310 org.eclipse.rse.core,0.0.0=v200902042310 org.eclipse.rse.dstore,0.0.0=v200902042310 org.eclipse.rse.examples,0.0.0=v20080604 org.eclipse.rse.ftp,0.0.0=v200809171630 org.eclipse.rse.local,0.0.0=v20080710 org.eclipse.rse.remotecdt,0.0.0=v200809041200 org.eclipse.rse.sdk,0.0.0=v200902042310 org.eclipse.rse.ssh,0.0.0=v20080714 org.eclipse.rse.telnet,0.0.0=v200809181500 org.eclipse.rse.terminals,0.0.0=v200902181600 org.eclipse.rse.tests,0.0.0=v200809041200 org.eclipse.rse.useractions,0.0.0=v200812041720 org.eclipse.tm.terminal,0.0.0=v200902181600 org.eclipse.tm.terminal.sdk,0.0.0=v200902181600 org.eclipse.tm.terminal.serial,0.0.0=v20080715 org.eclipse.tm.terminal.ssh,0.0.0=v200811110900 org.eclipse.tm.terminal.telnet,0.0.0=v20080715 org.eclipse.tm.terminal.test,0.0.0=v20080530 org.eclipse.tm.terminal.view,0.0.0=v20080715 org.eclipse.rse.wince,0.0.0=v20080626 --- NEW FILE fetch-rse.sh --- #!/bin/sh NAME=rse TM_TAG=R3_0_3 RSE_TAG=R3_0_3 rm -rf temp mkdir temp pushd temp flat=rse-${RSE_TAG} mkdir ${flat} VERSION="3.0.3" TAG="200902181300" echo "Exporting from CVS..." MAPFILE=$NAME.map TEMPMAPFILE=temp.map wget "http://download.eclipse.org/dsdp/tm/downloads/drops/R-$VERSION-$TAG/directory.txt" -O $MAPFILE dos2unix $MAPFILE grep ^[a-z] $MAPFILE > $TEMPMAPFILE echo "# `date`" > featureVersions.properties echo "# `date`" > pluginVersions.properties gawk 'BEGIN { FS="," } { if (NF < 4) { split($1, version, "="); split(version[1], directory, "@"); cvsdir=split($2, dirName, ":"); printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[2], directory[2]); printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[2], directory[2]) | "/bin/bash"; if (length(version[2]) > 0) { if (version[1] ~ /feature/) { printf("%s,0.0.0=%s\n", directory[2], version[2]) >> "featureVersions.properties"; } else { printf("%s,0.0.0=%s\n", directory[2], version[2]) >> "pluginVersions.properties"; } } } else { split($1, version, "="); split(version[1], featureName, "@"); total=split($4, directory, "/"); cvsdir=split($2, dirName, ":"); printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[total], $4); printf("cvs -d %s%s %s %s %s %s %s\n", ":pserver:anonymous at dev.eclipse.org:", dirName[cvsdir], "-q export -r", version[2], "-d", directory[total], $4) | "/bin/bash"; if (length(version[2]) > 0) { if (version[1] ~ /feature/) { printf("%s,0.0.0=%s\n", featureName[2], version[2]) >> "featureVersions.properties"; } else { printf("%s,0.0.0=%s\n", directory[total], version[2]) >> "pluginVersions.properties"; } } } }' $TEMPMAPFILE rm $TEMPMAPFILE $MAPFILE # Remove following feature.xml files which cause problems as pdebuild # wants to generate them itself. rm org.eclipse.rse.telnet-feature/sourceTemplateFeature/feature.xml rm org.eclipse.rse.ftp-feature/sourceTemplateFeature/feature.xml tar -czvf rse-fetched-src-$RSE_TAG.tar.gz org.* --- NEW FILE pluginVersions.properties --- # Mon Jul 20 16:19:39 EDT 2009 org.eclipse.rse.discovery,0.0.0=v20080402 org.eclipse.tm.discovery.doc.isv,0.0.0=v20080406 org.eclipse.tm.discovery.engine,0.0.0=v20080331 org.eclipse.tm.discovery.model,0.0.0=v20080331 org.eclipse.tm.discovery.model.edit,0.0.0=v20080522 org.eclipse.tm.discovery.protocol.dnssd,0.0.0=v20080331 org.eclipse.tm.discovery.transport.udp,0.0.0=v20080331 org.eclipse.tm.discovery.view,0.0.0=v20080522 org.eclipse.tm.discovery.wizard,0.0.0=v20080529 org.eclipse.dstore.core,0.0.0=v200902101918 org.eclipse.dstore.doc.isv,0.0.0=v200809041200 org.eclipse.dstore.extra,0.0.0=v20080406 org.eclipse.rse,0.0.0=v200902042310 org.eclipse.rse.connectorservice.dstore,0.0.0=v200809181500 org.eclipse.rse.connectorservice.local,0.0.0=v20080604 org.eclipse.rse.connectorservice.ssh,0.0.0=v20080604 org.eclipse.rse.connectorservice.telnet,0.0.0=v20080604 org.eclipse.rse.core,0.0.0=v200902042310 org.eclipse.rse.doc.isv,0.0.0=v200809041200 org.eclipse.rse.doc.user,0.0.0=v200809041200 org.eclipse.rse.dstore.security,0.0.0=v20080609 org.eclipse.rse.efs,0.0.0=v200809041200 org.eclipse.rse.efs.ui,0.0.0=v20080606 org.eclipse.rse.examples.daytime,0.0.0=v20080604 org.eclipse.rse.examples.tutorial,0.0.0=v20080604 org.eclipse.rse.files.ui,0.0.0=v200902050040 org.eclipse.rse.importexport,0.0.0=v20080604 org.eclipse.rse.processes.ui,0.0.0=v20080714 org.eclipse.rse.remotecdt,0.0.0=v200808191815 org.eclipse.rse.sdk,0.0.0=v200902042310 org.eclipse.rse.services.dstore,0.0.0=v200902181600 org.eclipse.rse.services.files.ftp,0.0.0=v200808191815 org.eclipse.rse.services.local,0.0.0=v20080710 org.eclipse.rse.services.ssh,0.0.0=v20080714 org.eclipse.rse.services.telnet,0.0.0=v20080604 org.eclipse.rse.services,0.0.0=v200809091230 org.eclipse.rse.shells.ui,0.0.0=v20080710 org.eclipse.rse.subsystems.files.core,0.0.0=v200809041200 org.eclipse.rse.subsystems.files.dstore,0.0.0=v200902181600 org.eclipse.rse.subsystems.files.ftp,0.0.0=v20080609 org.eclipse.rse.subsystems.files.local,0.0.0=v20080604 org.eclipse.rse.subsystems.files.ssh,0.0.0=v20080604 org.eclipse.rse.subsystems.processes.core,0.0.0=v200902042310 org.eclipse.rse.subsystems.processes.dstore,0.0.0=v20080604 org.eclipse.rse.subsystems.processes.local,0.0.0=v20080604 org.eclipse.rse.subsystems.processes.shell.linux,0.0.0=v20080714 org.eclipse.rse.subsystems.shells.core,0.0.0=v20080604 org.eclipse.rse.subsystems.shells.dstore,0.0.0=v20080604 org.eclipse.rse.subsystems.shells.local,0.0.0=v20080604 org.eclipse.rse.subsystems.shells.ssh,0.0.0=v20080604 org.eclipse.rse.subsystems.shells.telnet,0.0.0=v20080604 org.eclipse.rse.subsystems.terminals.core,0.0.0=v20080714 org.eclipse.rse.subsystems.terminals.ssh,0.0.0=v20080604 org.eclipse.rse.terminals.ui,0.0.0=v200902181600 org.eclipse.rse.tests,0.0.0=v20080825 org.eclipse.rse.tests.framework,0.0.0=v20080604 org.eclipse.rse.ui,0.0.0=v200902042310 org.eclipse.rse.useractions,0.0.0=v200812041720 org.eclipse.tm.terminal,0.0.0=v200902181600 org.eclipse.tm.terminal.serial,0.0.0=v20080715 org.eclipse.tm.terminal.ssh,0.0.0=v200811110900 org.eclipse.tm.terminal.telnet,0.0.0=v20080715 org.eclipse.tm.terminal.test,0.0.0=v20080610 org.eclipse.tm.terminal.view,0.0.0=v20080715 org.eclipse.test,0.0.0=v20071108 org.eclipse.ant.optional.junit,0.0.0=v20070530 org.eclipse.rse.subsystems.wince,0.0.0=v20080626 org.eclipse.tm.rapi,0.0.0=v20080606 org.eclipse.tm.rapi.examples,0.0.0=v20080522 org.eclipse.tm.rapi.tests,0.0.0=v20080522 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/eclipse-rse/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:35:44 -0000 1.1 +++ .cvsignore 23 Jul 2009 20:24:06 -0000 1.2 @@ -0,0 +1 @@ +rse-fetched-src-R3_0_3.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/eclipse-rse/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:35:44 -0000 1.1 +++ sources 23 Jul 2009 20:24:07 -0000 1.2 @@ -0,0 +1 @@ +2b5dcd26806ff981f9913cbc3fe56db0 rse-fetched-src-R3_0_3.tar.gz From sseago at fedoraproject.org Thu Jul 23 20:32:42 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 20:32:42 +0000 (UTC) Subject: rpms/rubygem-daemons/EL-4 .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723203242.BB4D811C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17207 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: upgraded to 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Aug 2007 20:44:48 -0000 1.2 +++ .cvsignore 23 Jul 2009 20:32:42 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-4/rubygem-daemons.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-daemons.spec 28 Aug 2007 14:01:17 -0000 1.1 +++ rubygem-daemons.spec 23 Jul 2009 20:32:42 -0000 1.2 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 2%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,12 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Aug 24 2007 - 1.0.7-2 - rpmlint fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Aug 2007 20:44:48 -0000 1.2 +++ sources 23 Jul 2009 20:32:42 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From jforbes at fedoraproject.org Thu Jul 23 20:42:09 2009 From: jforbes at fedoraproject.org (jforbes) Date: Thu, 23 Jul 2009 20:42:09 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-ksm-kvm.patch,1.1,1.2 Message-ID: <20090723204209.23D9C11C0093@cvs1.fedora.phx.redhat.com> Author: jforbes Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19821 Modified Files: linux-2.6-ksm-kvm.patch Log Message: KSM update for missed merge linux-2.6-ksm-kvm.patch: arch/x86/include/asm/kvm_host.h | 1 arch/x86/kvm/mmu.c | 89 ++++++++++++++++++++++++++++++++-------- arch/x86/kvm/paging_tmpl.h | 15 +++++- virt/kvm/kvm_main.c | 14 ++++++ 4 files changed, 100 insertions(+), 19 deletions(-) Index: linux-2.6-ksm-kvm.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-ksm-kvm.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- linux-2.6-ksm-kvm.patch 23 Jul 2009 18:25:23 -0000 1.1 +++ linux-2.6-ksm-kvm.patch 23 Jul 2009 20:42:08 -0000 1.2 @@ -22,8 +22,8 @@ directly map pages into its shadow page Signed-off-by: Izik Eidus Signed-off-by: Justin M. Forbes --- ---- linux-2.6.30.x86_64/arch/x86/include/asm/kvm_host.h 2009-07-23 11:24:43.000000000 -0500 -+++ linux-2.6.30.x86_64-ksm/arch/x86/include/asm/kvm_host.h 2009-07-23 12:43:57.000000000 -0500 +--- linux-2.6.30.x86_64/arch/x86/include/asm/kvm_host.h 2009-07-23 14:58:56.000000000 -0500 ++++ linux-2.6.30.x86_64-ksm/arch/x86/include/asm/kvm_host.h 2009-07-23 15:00:04.000000000 -0500 @@ -796,5 +796,6 @@ asmlinkage void kvm_handle_fault_on_rebo int kvm_unmap_hva(struct kvm *kvm, unsigned long hva); int kvm_age_hva(struct kvm *kvm, unsigned long hva); @@ -31,8 +31,8 @@ Signed-off-by: Justin M. Forbes stat.pf_fixed; break; } ---- linux-2.6.30.x86_64/arch/x86/kvm/paging_tmpl.h 2009-07-23 11:24:43.000000000 -0500 -+++ linux-2.6.30.x86_64-ksm/arch/x86/kvm/paging_tmpl.h 2009-07-23 12:41:27.000000000 -0500 +--- linux-2.6.30.x86_64/arch/x86/kvm/paging_tmpl.h 2009-07-23 14:58:56.000000000 -0500 ++++ linux-2.6.30.x86_64-ksm/arch/x86/kvm/paging_tmpl.h 2009-07-23 15:01:49.000000000 -0500 @@ -266,9 +266,13 @@ static void FNAME(update_pte)(struct kvm if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq)) return; @@ -260,8 +260,14 @@ Signed-off-by: Justin M. Forbes role.access & FNAME(gpte_access)(vcpu, gpte); ++ if (!(sp->spt[i] & SPTE_HOST_WRITEABLE)) { ++ pte_access &= ~PT_WRITABLE_MASK; ++ reset_host_protection = 0; ++ } else { reset_host_protection = 1; } set_spte(vcpu, &sp->spt[i], pte_access, 0, 0, is_dirty_pte(gpte), 0, gfn, - spte_to_pfn(sp->spt[i]), true, false); @@ -269,8 +275,8 @@ Signed-off-by: Justin M. Forbes Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30399 Modified Files: sources trac-mercurial-plugin.spec Log Message: * Thu Jul 23 2009 Jesse Keating - 0.11.0.7-6.20090715svn8365 - Pull new upstream snapshot with the patch integrated. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 15 Jul 2009 20:26:06 -0000 1.5 +++ sources 23 Jul 2009 21:24:14 -0000 1.6 @@ -1 +1 @@ -0915f559e28236b28f2d3b22a806272f TracMercurial-0.11.0.7.tar.gz +08584a60edc559808ec8627766c31627 TracMercurial-0.11.0.7.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- trac-mercurial-plugin.spec 20 Jul 2009 17:41:40 -0000 1.9 +++ trac-mercurial-plugin.spec 23 Jul 2009 21:24:14 -0000 1.10 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 8072 +%define svnrev 8365 Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 5.20090715svn%{svnrev}%{?dist} +Release: 6.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Jesse Keating - 0.11.0.7-6.20090715svn8365 +- Pull new upstream snapshot with the patch integrated. + * Mon Jul 20 2009 Jesse Keating - 0.11.0.7-5.20090715svn8072 - Patch for hg 1.3 From jkeating at fedoraproject.org Thu Jul 23 21:30:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 23 Jul 2009 21:30:44 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/devel trac-mercurial-plugin.spec, 1.10, 1.11 Message-ID: <20090723213044.29AF711C0497@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32032 Modified Files: trac-mercurial-plugin.spec Log Message: Drop the patch Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- trac-mercurial-plugin.spec 23 Jul 2009 21:24:14 -0000 1.10 +++ trac-mercurial-plugin.spec 23 Jul 2009 21:30:13 -0000 1.11 @@ -17,8 +17,6 @@ URL: http://trac.edgewall.org # echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz -# This patch is from http://trac.edgewall.org/attachment/ticket/8460/patch_8352_for_hg_1.3 -Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -31,7 +29,6 @@ This plugin for Trac provides support fo %prep %setup -n TracMercurial-%{version} -q -%patch0 -p0 %build From mmcgrath at fedoraproject.org Thu Jul 23 21:35:28 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Thu, 23 Jul 2009 21:35:28 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.66,1.67 Message-ID: <20090723213528.1D79211C0093@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1699 Modified Files: smolt.spec Log Message: test commit Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- smolt.spec 7 Jul 2009 21:21:57 -0000 1.66 +++ smolt.spec 23 Jul 2009 21:34:57 -0000 1.67 @@ -1,4 +1,5 @@ Name: smolt + Summary: Fedora hardware profiler Version: 1.3 Release: 1%{?dist} From mmcgrath at fedoraproject.org Thu Jul 23 21:38:52 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Thu, 23 Jul 2009 21:38:52 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.67,1.68 Message-ID: <20090723213852.B5E2311C0093@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/mmcgrath/smolt/devel Modified Files: smolt.spec Log Message: test commit Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- smolt.spec 23 Jul 2009 21:34:57 -0000 1.67 +++ smolt.spec 23 Jul 2009 21:38:52 -0000 1.68 @@ -1,5 +1,4 @@ Name: smolt - Summary: Fedora hardware profiler Version: 1.3 Release: 1%{?dist} From sseago at fedoraproject.org Thu Jul 23 21:38:50 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Thu, 23 Jul 2009 21:38:50 +0000 (UTC) Subject: rpms/rubygem-daemons/F-9 .cvsignore, 1.2, 1.3 rubygem-daemons.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090723213850.A484611C0093@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-daemons/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2465 Modified Files: .cvsignore rubygem-daemons.spec sources Log Message: upgraded to 1.0.10 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-9/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 Aug 2007 20:44:48 -0000 1.2 +++ .cvsignore 23 Jul 2009 21:38:19 -0000 1.3 @@ -1 +1 @@ -daemons-1.0.7.gem +daemons-1.0.10.gem Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-9/rubygem-daemons.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-daemons.spec 28 Aug 2007 14:01:17 -0000 1.1 +++ rubygem-daemons.spec 23 Jul 2009 21:38:19 -0000 1.2 @@ -1,19 +1,19 @@ -# Generated from daemons-1.0.5.gem by gem2rpm -*- rpm-spec -*- +# Generated from daemons-1.0.10.gem by gem2rpm -*- rpm-spec -*- +%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %define gemname daemons %define geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} - -Version: 1.0.7 -Release: 2%{?dist} +Version: 1.0.10 +Release: 1%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) URL: http://daemons.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildArch: noarch @@ -51,7 +51,6 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{geminstdir}/lib/ %{geminstdir}/Rakefile %{geminstdir}/setup.rb -%{geminstdir}/test/ %doc %{geminstdir}/LICENSE %doc %{geminstdir}/README %doc %{geminstdir}/Releases @@ -60,6 +59,12 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Thu Jul 23 2009 Scott Seago - 1.0.10-1 +- Upgraded to upstream 1.0.10 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Aug 24 2007 - 1.0.7-2 - rpmlint fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/F-9/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 Aug 2007 20:44:48 -0000 1.2 +++ sources 23 Jul 2009 21:38:19 -0000 1.3 @@ -1 +1 @@ -33d0e02514281f7f29b19a594382fc61 daemons-1.0.7.gem +8e2fc7de08405b2d27ac96c82602c9ce daemons-1.0.10.gem From mmcgrath at fedoraproject.org Thu Jul 23 21:39:45 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Thu, 23 Jul 2009 21:39:45 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.68,1.69 Message-ID: <20090723213945.BB41511C0093@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/mmcgrath/smolt/devel Modified Files: smolt.spec Log Message: test commit Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- smolt.spec 23 Jul 2009 21:38:52 -0000 1.68 +++ smolt.spec 23 Jul 2009 21:39:15 -0000 1.69 @@ -1,4 +1,5 @@ Name: smolt + Summary: Fedora hardware profiler Version: 1.3 Release: 1%{?dist} From pbrobinson at fedoraproject.org Thu Jul 23 21:44:48 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Thu, 23 Jul 2009 21:44:48 +0000 (UTC) Subject: rpms/geoclue/devel geoclue.spec,1.16,1.17 Message-ID: <20090723214448.EC3D211C0093@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/geoclue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4678 Modified Files: geoclue.spec Log Message: - Move develop documentation to its own noarch package to fix RHBZ 513488 Index: geoclue.spec =================================================================== RCS file: /cvs/pkgs/rpms/geoclue/devel/geoclue.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- geoclue.spec 20 Jun 2009 00:25:53 -0000 1.16 +++ geoclue.spec 23 Jul 2009 21:44:18 -0000 1.17 @@ -9,7 +9,7 @@ Name: geoclue Version: 0.11.1.1 -Release: 0.6.%{snapshot}%{?dist} +Release: 0.7.%{snapshot}%{?dist} Summary: A modular geoinformation service Group: System Environment/Libraries @@ -48,10 +48,20 @@ Requires: %{name} = %{version}-%{release Requires: dbus-devel Requires: libxml2-devel Requires: pkgconfig -Requires: gtk-doc + %description devel Files for development with geoclue. +%package doc +Summary: Developer documentation for geoclue +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: gtk-doc +BuildArch: noarch + +%description doc +Developer documentation for geoclue + %package gui Summary: Testing gui for geoclue Group: Development/Libraries @@ -137,6 +147,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/geoclue %{_libdir}/pkgconfig/geoclue.pc %{_libdir}/libgeoclue.so + +%files doc +%defattr(-,root,root,-) %{_datadir}/gtk-doc/html/geoclue/ %files gui @@ -156,6 +169,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/org.freedesktop.Geoclue.Providers.Gypsy.service %changelog +* Thu Jul 23 2009 Peter Robinson 0.11.1.1-0.7.%{gitdate}git%{git_version} +- Move develop documentation to its own noarch package to fix RHBZ 513488 + * Sat Jun 20 2009 Bastien Nocera 0.11.1.1-0.6.%{gitdate}git%{git_version} - Add developer documentation From mmcgrath at fedoraproject.org Thu Jul 23 21:45:47 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Thu, 23 Jul 2009 21:45:47 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.69,1.70 Message-ID: <20090723214547.3290111C0093@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/mmcgrath/smolt/devel Modified Files: smolt.spec Log Message: test Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- smolt.spec 23 Jul 2009 21:39:15 -0000 1.69 +++ smolt.spec 23 Jul 2009 21:45:16 -0000 1.70 @@ -1,5 +1,4 @@ Name: smolt - Summary: Fedora hardware profiler Version: 1.3 Release: 1%{?dist} From ricky at fedoraproject.org Thu Jul 23 21:46:14 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 21:46:14 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.8,1.9 Message-ID: <20090723214614.0F4EE11C0093@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5052 Added Files: test Log Message: test commit Index: test =================================================================== RCS file: test diff -N test --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ test 23 Jul 2009 21:45:43 -0000 1.9 @@ -0,0 +1,2 @@ +x +x From mmcgrath at fedoraproject.org Thu Jul 23 21:47:00 2009 From: mmcgrath at fedoraproject.org (Mike McGrath) Date: Thu, 23 Jul 2009 21:47:00 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.70,1.71 Message-ID: <20090723214700.F3B9F11C0093@cvs1.fedora.phx.redhat.com> Author: mmcgrath Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/mmcgrath/smolt/devel Modified Files: smolt.spec Log Message: test commit Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- smolt.spec 23 Jul 2009 21:45:16 -0000 1.70 +++ smolt.spec 23 Jul 2009 21:46:30 -0000 1.71 @@ -1,4 +1,5 @@ Name: smolt + Summary: Fedora hardware profiler Version: 1.3 Release: 1%{?dist} From ricky at fedoraproject.org Thu Jul 23 21:47:43 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 21:47:43 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.9,1.10 Message-ID: <20090723214743.1D1CE11C0093@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5604 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- test 23 Jul 2009 21:45:43 -0000 1.9 +++ test 23 Jul 2009 21:47:12 -0000 1.10 @@ -1,2 +1,3 @@ x x +x From dwalsh at fedoraproject.org Thu Jul 23 21:48:11 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 23 Jul 2009 21:48:11 +0000 (UTC) Subject: rpms/selinux-policy/devel .cvsignore, 1.175, 1.176 customizable_types, 1.1, 1.2 modules-targeted.conf, 1.132, 1.133 nsadiff, 1.13, 1.14 policy-F12.patch, 1.31, 1.32 selinux-policy.spec, 1.881, 1.882 sources, 1.195, 1.196 Message-ID: <20090723214811.A77AE11C0093@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5821 Modified Files: .cvsignore customizable_types modules-targeted.conf nsadiff policy-F12.patch selinux-policy.spec sources Log Message: * Thu Jul 22 2009 Dan Walsh 3.6.23-1 - Update to upstream Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/.cvsignore,v retrieving revision 1.175 retrieving revision 1.176 diff -u -p -r1.175 -r1.176 --- .cvsignore 15 Jul 2009 18:19:16 -0000 1.175 +++ .cvsignore 23 Jul 2009 21:47:40 -0000 1.176 @@ -178,3 +178,4 @@ serefpolicy-3.6.20.tgz serefpolicy-3.6.21.tgz setroubleshoot-2.2.11.tar.gz serefpolicy-3.6.22.tgz +serefpolicy-3.6.23.tgz Index: customizable_types =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/customizable_types,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- customizable_types 3 Apr 2009 19:25:20 -0000 1.1 +++ customizable_types 23 Jul 2009 21:47:40 -0000 1.2 @@ -1,2 +1,7 @@ svirt_image_t virt_content_t +httpd_user_htaccess_t +httpd_user_script_exec_t +httpd_user_content_ra_t +httpd_user_content_rw_t +httpd_user_content_t Index: modules-targeted.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-targeted.conf,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- modules-targeted.conf 25 Jun 2009 21:43:35 -0000 1.132 +++ modules-targeted.conf 23 Jul 2009 21:47:40 -0000 1.133 @@ -557,11 +557,11 @@ gnomeclock = module hal = module # Layer: services -# Module: polkit +# Module: policykit # # Hardware abstraction layer # -polkit = module +policykit = module # Layer: services # Module: psad Index: nsadiff =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/nsadiff,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- nsadiff 15 Jul 2009 18:14:21 -0000 1.13 +++ nsadiff 23 Jul 2009 21:47:40 -0000 1.14 @@ -1 +1 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.22 > /tmp/diff +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.23 > /tmp/diff policy-F12.patch: Makefile | 30 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 11 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 1 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.fc | 6 policy/modules/admin/readahead.te | 21 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 304 ++++ policy/modules/admin/rpm.te | 63 policy/modules/admin/sudo.if | 67 - policy/modules/admin/sudo.te | 1 policy/modules/admin/tmpreaper.te | 23 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 7 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.fc | 1 policy/modules/apps/cpufreqselector.if | 2 policy/modules/apps/cpufreqselector.te | 43 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 99 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 + policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.fc | 3 policy/modules/apps/mozilla.if | 15 policy/modules/apps/mozilla.te | 23 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 ++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 270 ++-- policy/modules/apps/qemu.te | 88 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 2 policy/modules/apps/vmware.te | 31 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 21 policy/modules/apps/wm.fc | 3 policy/modules/apps/wm.if | 108 + policy/modules/apps/wm.te | 9 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 30 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 94 + policy/modules/kernel/files.fc | 6 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 4 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 40 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 - policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 +++++++++ policy/modules/roles/unconfineduser.te | 410 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 393 ++++-- policy/modules/services/apache.te | 375 +++++ policy/modules/services/apm.te | 2 policy/modules/services/automount.if | 19 policy/modules/services/automount.te | 6 policy/modules/services/avahi.te | 2 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 32 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 34 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 190 ++ policy/modules/services/cvs.te | 1 policy/modules/services/dbus.fc | 3 policy/modules/services/dbus.if | 147 ++ policy/modules/services/dbus.te | 61 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 9 policy/modules/services/devicekit.if | 197 +++ policy/modules/services/devicekit.te | 244 +++ policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.fc | 4 policy/modules/services/fprintd.if | 43 policy/modules/services/fprintd.te | 55 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 10 policy/modules/services/hal.fc | 1 policy/modules/services/hal.if | 100 + policy/modules/services/hal.te | 108 + policy/modules/services/kerberos.te | 13 policy/modules/services/kerneloops.te | 3 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 10 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/mta.fc | 11 policy/modules/services/mta.if | 41 policy/modules/services/mta.te | 69 - policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 26 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 112 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 71 + policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.fc | 2 policy/modules/services/oddjob.if | 26 policy/modules/services/oddjob.te | 28 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 33 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 29 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 344 +++++ policy/modules/services/samba.te | 192 ++ policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 102 + policy/modules/services/smartmon.te | 12 policy/modules/services/snort.if | 1 policy/modules/services/snort.te | 9 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 131 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 +- policy/modules/services/ssh.te | 68 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 118 + policy/modules/services/virt.te | 212 +++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++ policy/modules/services/xserver.te | 312 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 +- policy/modules/system/init.te | 174 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 85 + policy/modules/system/libraries.if | 6 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 36 policy/modules/system/mount.fc | 7 policy/modules/system/mount.if | 22 policy/modules/system/mount.te | 98 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 349 +++++ policy/modules/system/selinuxutil.te | 228 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 115 + policy/modules/system/sysnetwork.te | 73 - policy/modules/system/udev.fc | 2 policy/modules/system/udev.te | 33 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------ policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1361 ++++++++++++++++----- policy/modules/system/userdomain.te | 50 policy/modules/system/virtual.fc | 1 policy/modules/system/virtual.if | 119 + policy/modules/system/virtual.te | 75 + policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 134 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 311 files changed, 15118 insertions(+), 2724 deletions(-) View full diff with command: /usr/bin/cvs -f diff -kk -u -p -N -r 1.31 -r 1.32 policy-F12.patchIndex: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- policy-F12.patch 19 Jul 2009 16:04:29 -0000 1.31 +++ policy-F12.patch 23 Jul 2009 21:47:40 -0000 1.32 @@ -1,6 +1,6 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.22/config/appconfig-mcs/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.23/config/appconfig-mcs/default_contexts --- nsaserefpolicy/config/appconfig-mcs/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -22,15 +22,15 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.22/config/appconfig-mcs/failsafe_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.23/config/appconfig-mcs/failsafe_context --- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/failsafe_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/failsafe_context 2009-07-23 16:39:09.000000000 -0400 @@ -1 +1 @@ -sysadm_r:sysadm_t:s0 +system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/root_default_contexts --- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/root_default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/root_default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,11 +1,7 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -45,9 +45,9 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.22/config/appconfig-mcs/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.23/config/appconfig-mcs/securetty_types --- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/securetty_types 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/securetty_types 2009-07-23 16:39:09.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -55,18 +55,18 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.22/config/appconfig-mcs/seusers +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.23/config/appconfig-mcs/seusers --- nsaserefpolicy/config/appconfig-mcs/seusers 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/seusers 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/seusers 2009-07-23 16:39:09.000000000 -0400 @@ -1,3 +1,3 @@ system_u:system_u:s0-mcs_systemhigh -root:root:s0-mcs_systemhigh -__default__:user_u:s0 +root:unconfined_u:s0-mcs_systemhigh +__default__:unconfined_u:s0-mcs_systemhigh -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/staff_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/staff_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/staff_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/staff_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,10 +1,12 @@ system_r:local_login_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 system_r:remote_login_t:s0 staff_r:staff_t:s0 @@ -81,9 +81,9 @@ diff -b -B --ignore-all-space --exclude- sysadm_r:sysadm_su_t:s0 sysadm_r:sysadm_t:s0 sysadm_r:sysadm_sudo_t:s0 sysadm_r:sysadm_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/unconfined_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/unconfined_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,4 +1,4 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 unconfined_r:unconfined_cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 @@ -97,15 +97,15 @@ diff -b -B --ignore-all-space --exclude- +system_r:initrc_su_t:s0 unconfined_r:unconfined_t:s0 +unconfined_r:unconfined_t:s0 unconfined_r:unconfined_t:s0 system_r:xdm_t:s0 unconfined_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.22/config/appconfig-mcs/userhelper_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.23/config/appconfig-mcs/userhelper_context --- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/userhelper_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/userhelper_context 2009-07-23 16:39:09.000000000 -0400 @@ -1 +1 @@ -system_u:sysadm_r:sysadm_t:s0 +system_u:system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.22/config/appconfig-mcs/user_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.23/config/appconfig-mcs/user_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mcs/user_u_default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/user_u_default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,8 +1,9 @@ system_r:local_login_t:s0 user_r:user_t:s0 system_r:remote_login_t:s0 user_r:user_t:s0 @@ -118,20 +118,20 @@ diff -b -B --ignore-all-space --exclude- - +system_r:initrc_su_t:s0 user_r:user_t:s0 +user_r:user_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.22/config/appconfig-mcs/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.23/config/appconfig-mcs/virtual_domain_context --- nsaserefpolicy/config/appconfig-mcs/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/config/appconfig-mcs/virtual_domain_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/virtual_domain_context 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:svirt_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.22/config/appconfig-mcs/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.23/config/appconfig-mcs/virtual_image_context --- nsaserefpolicy/config/appconfig-mcs/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/config/appconfig-mcs/virtual_image_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mcs/virtual_image_context 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:svirt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.22/config/appconfig-mls/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.23/config/appconfig-mls/default_contexts --- nsaserefpolicy/config/appconfig-mls/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mls/default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mls/default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -153,9 +153,9 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.22/config/appconfig-mls/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.23/config/appconfig-mls/root_default_contexts --- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-mls/root_default_contexts 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mls/root_default_contexts 2009-07-23 16:39:09.000000000 -0400 @@ -1,11 +1,11 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 -system_r:local_login_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -174,20 +174,20 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +#system_r:sshd_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.22/config/appconfig-mls/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.23/config/appconfig-mls/virtual_domain_context --- nsaserefpolicy/config/appconfig-mls/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/config/appconfig-mls/virtual_domain_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mls/virtual_domain_context 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:qemu_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.22/config/appconfig-mls/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.23/config/appconfig-mls/virtual_image_context --- nsaserefpolicy/config/appconfig-mls/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/config/appconfig-mls/virtual_image_context 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-mls/virtual_image_context 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:virt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.22/config/appconfig-standard/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.23/config/appconfig-standard/securetty_types --- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/config/appconfig-standard/securetty_types 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/config/appconfig-standard/securetty_types 2009-07-23 16:39:09.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -195,9 +195,9 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.22/Makefile +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.23/Makefile --- nsaserefpolicy/Makefile 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/Makefile 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/Makefile 2009-07-23 16:39:09.000000000 -0400 @@ -241,7 +241,7 @@ appdir := $(contextpath) user_default_contexts := $(wildcard config/appconfig-$(TYPE)/*_default_contexts) @@ -260,9 +260,9 @@ diff -b -B --ignore-all-space --exclude- $(appdir)/%: $(appconf)/% @mkdir -p $(appdir) $(verbose) $(INSTALL) -m 644 $< $@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.22/policy/global_tunables ---- nsaserefpolicy/policy/global_tunables 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/global_tunables 2009-07-15 14:06:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/global_tunables serefpolicy-3.6.23/policy/global_tunables +--- nsaserefpolicy/policy/global_tunables 2009-07-23 14:11:04.000000000 -0400 ++++ serefpolicy-3.6.23/policy/global_tunables 2009-07-23 16:39:09.000000000 -0400 @@ -61,15 +61,6 @@ ## @@ -279,21 +279,7 @@ diff -b -B --ignore-all-space --exclude- ## Allow any files/directories to be exported read/write via NFS. ##

## -@@ -84,13 +75,6 @@ [...8709 lines suppressed...] @@ -29471,7 +27114,7 @@ diff -b -B --ignore-all-space --exclude- read_files_pattern($1, { user_home_dir_t user_home_t }, user_home_t) files_search_home($1) ') -@@ -1741,30 +1851,80 @@ +@@ -1733,30 +1851,80 @@ ######################################## ## @@ -29562,7 +27205,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -1787,6 +1947,46 @@ +@@ -1779,6 +1947,46 @@ ######################################## ## @@ -29609,7 +27252,7 @@ diff -b -B --ignore-all-space --exclude- ## Create, read, write, and delete files ## in a user home subdirectory. ## -@@ -1799,6 +1999,7 @@ +@@ -1791,6 +1999,7 @@ interface(`userdom_manage_user_home_content_files',` gen_require(` type user_home_dir_t, user_home_t; @@ -29617,7 +27260,7 @@ diff -b -B --ignore-all-space --exclude- ') manage_files_pattern($1, user_home_t, user_home_t) -@@ -2328,7 +2529,7 @@ +@@ -2320,7 +2529,7 @@ ######################################## ## @@ -29626,7 +27269,7 @@ diff -b -B --ignore-all-space --exclude- ## ## ## -@@ -2682,11 +2883,32 @@ +@@ -2674,11 +2883,32 @@ # interface(`userdom_search_user_home_content',` gen_require(` @@ -29661,7 +27304,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -2814,7 +3036,25 @@ +@@ -2806,7 +3036,25 @@ type user_tmp_t; ') @@ -29688,7 +27331,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -2851,6 +3091,7 @@ +@@ -2843,6 +3091,7 @@ ') read_files_pattern($1, userdomain, userdomain) @@ -29696,7 +27339,7 @@ diff -b -B --ignore-all-space --exclude- kernel_search_proc($1) ') -@@ -2981,3 +3222,481 @@ +@@ -2973,3 +3222,481 @@ allow $1 userdomain:dbus send_msg; ') @@ -30178,9 +27821,9 @@ diff -b -B --ignore-all-space --exclude- + + dontaudit $1 userdomain:unix_stream_socket rw_socket_perms; +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.22/policy/modules/system/userdomain.te ---- nsaserefpolicy/policy/modules/system/userdomain.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/userdomain.te 2009-07-15 14:06:36.000000000 -0400 +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.23/policy/modules/system/userdomain.te +--- nsaserefpolicy/policy/modules/system/userdomain.te 2009-07-23 14:11:04.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/userdomain.te 2009-07-23 16:39:09.000000000 -0400 @@ -8,13 +8,6 @@ ## @@ -30266,14 +27909,14 @@ diff -b -B --ignore-all-space --exclude- +') + +allow userdomain userdomain:process signull; -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.22/policy/modules/system/virtual.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.fc serefpolicy-3.6.23/policy/modules/system/virtual.fc --- nsaserefpolicy/policy/modules/system/virtual.fc 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/system/virtual.fc 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/virtual.fc 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1 @@ +# No application file contexts. -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.22/policy/modules/system/virtual.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.if serefpolicy-3.6.23/policy/modules/system/virtual.if --- nsaserefpolicy/policy/modules/system/virtual.if 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/system/virtual.if 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/virtual.if 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1,119 @@ +## Virtual machine emulator and virtualizer + @@ -30394,9 +28037,9 @@ diff -b -B --ignore-all-space --exclude- + allow $1 virtualdomain:process { setsched transition signal signull sigkill }; +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.22/policy/modules/system/virtual.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/virtual.te serefpolicy-3.6.23/policy/modules/system/virtual.te --- nsaserefpolicy/policy/modules/system/virtual.te 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.22/policy/modules/system/virtual.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/virtual.te 2009-07-23 16:39:09.000000000 -0400 @@ -0,0 +1,75 @@ + +policy_module(virtualization, 1.1.2) @@ -30473,9 +28116,9 @@ diff -b -B --ignore-all-space --exclude- + xserver_read_xdm_pid(virtualdomain) + xserver_rw_shm(virtualdomain) +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.22/policy/modules/system/xen.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.23/policy/modules/system/xen.fc --- nsaserefpolicy/policy/modules/system/xen.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/xen.fc 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/xen.fc 2009-07-23 16:39:09.000000000 -0400 @@ -1,5 +1,7 @@ /dev/xen/tapctrl.* -p gen_context(system_u:object_r:xenctl_t,s0) @@ -30503,9 +28146,9 @@ diff -b -B --ignore-all-space --exclude- /var/run/xenstore\.pid -- gen_context(system_u:object_r:xenstored_var_run_t,s0) /var/run/xenstored(/.*)? gen_context(system_u:object_r:xenstored_var_run_t,s0) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.22/policy/modules/system/xen.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.23/policy/modules/system/xen.if --- nsaserefpolicy/policy/modules/system/xen.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/xen.if 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/xen.if 2009-07-23 16:39:09.000000000 -0400 @@ -71,6 +71,8 @@ ') @@ -30578,9 +28221,9 @@ diff -b -B --ignore-all-space --exclude- + files_search_pids($1) +') + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.22/policy/modules/system/xen.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.23/policy/modules/system/xen.te --- nsaserefpolicy/policy/modules/system/xen.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/modules/system/xen.te 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/modules/system/xen.te 2009-07-23 16:39:09.000000000 -0400 @@ -6,6 +6,13 @@ # Declarations # @@ -30875,9 +28518,9 @@ diff -b -B --ignore-all-space --exclude- +libs_use_ld_so(evtchnd_t) +libs_use_shared_libs(evtchnd_t) + -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.22/policy/support/obj_perm_sets.spt +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.23/policy/support/obj_perm_sets.spt --- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/support/obj_perm_sets.spt 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/support/obj_perm_sets.spt 2009-07-23 16:39:09.000000000 -0400 @@ -201,7 +201,7 @@ define(`setattr_file_perms',`{ setattr }') define(`read_file_perms',`{ getattr open read lock ioctl }') @@ -30910,9 +28553,9 @@ diff -b -B --ignore-all-space --exclude- +define(`all_association_perms', `{ sendto recvfrom setcontext polmatch } ') + +define(`manage_key_perms', `{ create link read search setattr view write } ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.22/policy/users +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.23/policy/users --- nsaserefpolicy/policy/users 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/policy/users 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/policy/users 2009-07-23 16:39:09.000000000 -0400 @@ -25,11 +25,8 @@ # permit any access to such users, then remove this entry. # @@ -30937,9 +28580,9 @@ diff -b -B --ignore-all-space --exclude- - gen_user(root, sysadm, sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r'), s0, s0 - mls_systemhigh, mcs_allcats) -') +gen_user(root, user, unconfined_r sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r') system_r, s0, s0 - mls_systemhigh, mcs_allcats) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.22/Rules.modular +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.23/Rules.modular --- nsaserefpolicy/Rules.modular 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/Rules.modular 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/Rules.modular 2009-07-23 16:39:09.000000000 -0400 @@ -73,8 +73,8 @@ $(tmpdir)/%.mod: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf %.te @echo "Compliling $(NAME) $(@F) module" @@ -30969,9 +28612,9 @@ diff -b -B --ignore-all-space --exclude- $(tmpdir)/all_te_files.conf: M4PARAM += -D self_contained_policy $(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(base_te_files) $(tmpdir)/rolemap.conf -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.22/support/Makefile.devel +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.23/support/Makefile.devel --- nsaserefpolicy/support/Makefile.devel 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.22/support/Makefile.devel 2009-07-15 14:06:36.000000000 -0400 ++++ serefpolicy-3.6.23/support/Makefile.devel 2009-07-23 16:39:09.000000000 -0400 @@ -185,8 +185,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te @$(EINFO) "Compiling $(NAME) $(basename $(@F)) module" Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.881 retrieving revision 1.882 diff -u -p -r1.881 -r1.882 --- selinux-policy.spec 19 Jul 2009 16:04:30 -0000 1.881 +++ selinux-policy.spec 23 Jul 2009 21:47:41 -0000 1.882 @@ -19,8 +19,8 @@ %define CHECKPOLICYVER 2.0.16-3 Summary: SELinux policy configuration Name: selinux-policy -Version: 3.6.22 -Release: 2%{?dist} +Version: 3.6.23 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -348,7 +348,7 @@ if [ $1 -eq 1 ]; then %loadpolicy targeted $packages restorecon -R /root /var/log /var/run 2> /dev/null else - semodule -n -s targeted -r moilscanner -r mailscanner -r gamin -r audio_entropy -r iscsid 2>/dev/null + semodule -n -s targeted -r moilscanner -r mailscanner -r gamin -r audio_entropy -r iscsid -r polkit_auth 2>/dev/null packages="%{expand:%%moduleList targeted} `get_unconfined`" %loadpolicy targeted $packages %relabel targeted @@ -459,7 +459,7 @@ SELinux Reference policy mls base module %saveFileContext mls %post mls -semodule -n -s mls -r mailscanner 2>/dev/null +semodule -n -s mls -r mailscanner -r polkit_auth 2>/dev/null packages="%{expand:%%moduleList mls}" %loadpolicy mls $packages @@ -475,7 +475,10 @@ exit 0 %endif %changelog -* Sun Jul 19 2009 Dan Walsh 3.6.22-2 +* Thu Jul 22 2009 Dan Walsh 3.6.23-1 +- Update to upstream + +* Tue Jul 20 2009 Dan Walsh 3.6.22-3 - Fix context for VirtualBox * Tue Jul 14 2009 Dan Walsh 3.6.22-1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/sources,v retrieving revision 1.195 retrieving revision 1.196 diff -u -p -r1.195 -r1.196 --- sources 15 Jul 2009 18:19:16 -0000 1.195 +++ sources 23 Jul 2009 21:47:41 -0000 1.196 @@ -1 +1 @@ -cd43ce2443ce5e627dee964df3df65a5 serefpolicy-3.6.22.tgz +f39558603d3d7d1500b93f9d4ce27311 serefpolicy-3.6.23.tgz From pkgdb at fedoraproject.org Thu Jul 23 21:57:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 21:57:05 +0000 Subject: [pkgdb] beagle ownership updated Message-ID: <20090723215705.CFAAE10F8AC@bastion2.fedora.phx.redhat.com> Package beagle in Fedora 11 is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/beagle From jgranado at fedoraproject.org Thu Jul 23 21:59:41 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Thu, 23 Jul 2009 21:59:41 +0000 (UTC) Subject: rpms/parted/devel parted-1.9.0.tar.gz, 1.2, 1.3 parted.spec, 1.139, 1.140 sources, 1.38, 1.39 Message-ID: <20090723215941.A951F11C048A@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10318 Modified Files: parted-1.9.0.tar.gz parted.spec sources Log Message: New upstream version Index: parted-1.9.0.tar.gz =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted-1.9.0.tar.gz,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 Binary files /tmp/cvs0dTbX0 and /tmp/cvs9x23Xk differ Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- parted.spec 22 Jul 2009 10:18:08 -0000 1.139 +++ parted.spec 23 Jul 2009 21:59:41 -0000 1.140 @@ -4,20 +4,12 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 5.20090721git980c%{?dist} +Release: 6%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted -# Reproduce the snapshot tar.gz run this script: -# run http://jgranado.fedorapeople.org/packages/parted/upstream/parted-release -# -# the line that was used is: -# parted-release --version 1.9.0 --key-id PUB_KEY -# -# Note that this script will give different results if master changes in upstream. -# -Source: %{name}/%{name}-%{version}.tar.gz +Source0: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz Patch1: %{name}-1.9.0-appletv-support.patch Patch2: %{name}-1.9.0-extended-mbr.patch Patch3: %{name}-1.9.0-noheaders.patch @@ -137,6 +129,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Thu Jul 23 2009 Joel Granados - 1.9.0-6 +- Rebuild usiing the official tar.gz at http://ftp.gnu.org/gnu/parted/parted-1.9.0.tar.gz + * Wed Jul 22 2009 Joel Granados - 1.9.0-5.20090721git980c - Better handle a duplicate error. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 21 Jul 2009 14:55:51 -0000 1.38 +++ sources 23 Jul 2009 21:59:41 -0000 1.39 @@ -1 +1 @@ -d76712c8b6855e6810283c9e91fd25ee parted-1.9.0.tar.gz +055305bc7bcf472ce38f9abf69a9d94d parted-1.9.0.tar.gz From avesh at fedoraproject.org Thu Jul 23 22:01:59 2009 From: avesh at fedoraproject.org (avesh agarwal) Date: Thu, 23 Jul 2009 22:01:59 +0000 (UTC) Subject: rpms/openswan/devel openswan-2.6.22-gcc44.patch, NONE, 1.1 openswan-2.6.22-nss.patch, NONE, 1.1 openswan-2.6.22-selinux.patch, NONE, 1.1 .cvsignore, 1.26, 1.27 openswan.spec, 1.79, 1.80 sources, 1.25, 1.26 openswan-2.6-selinux.patch, 1.1, NONE openswan-2.6.21-CVE-2009-2185.patch, 1.1, NONE openswan-2.6.21-gcc44.patch, 1.6, NONE openswan-2.6.21-nss-fedora-diff-modified.patch, 1.1, NONE openswan-2.6.21-nss.patch, 1.3, NONE Message-ID: <20090723220159.08EF411C048A@cvs1.fedora.phx.redhat.com> Author: avesh Update of /cvs/pkgs/rpms/openswan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11203 Modified Files: .cvsignore openswan.spec sources Added Files: openswan-2.6.22-gcc44.patch openswan-2.6.22-nss.patch openswan-2.6.22-selinux.patch Removed Files: openswan-2.6-selinux.patch openswan-2.6.21-CVE-2009-2185.patch openswan-2.6.21-gcc44.patch openswan-2.6.21-nss-fedora-diff-modified.patch openswan-2.6.21-nss.patch Log Message: * Thu Jul 23 2009 Avesh Agarwal - 2.6.22-1 - New upstream release - Added support for using PSK with NSS - Fixed several warnings and undid unnecessary debug messages - Updated README.nss with an example configuration - Moved README.nss to openswan/doc/ - Improved FIPS integrity check functionality openswan-2.6.22-gcc44.patch: tncfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openswan-2.6.22-gcc44.patch --- --- openswan-2.6.22-orig/programs/tncfg/tncfg.c 2009-06-23 04:53:08.000000000 +0200 +++ openswan-2.6.22/programs/tncfg/tncfg.c 2009-07-09 23:58:03.000000000 +0200 @@ -176,7 +176,7 @@ int main(int argc, char *argv[]) { struct ifreq ifr; - struct ipsectunnelconf *shc=(struct ipsectunnelconf *)&ifr.ifr_data; + struct ipsectunnelconf *shc=(struct ipsectunnelconf *)ifr.ifr_data; int s; int c, previous = -1; int argcount = argc; openswan-2.6.22-nss.patch: doc/README.nss | 123 ++++++++++++++++++-- lib/libcrypto/libmd5/md5.c | 10 + lib/libcrypto/libsha1/sha1.c | 4 lib/libipsecconf/Makefile | 7 + lib/libipsecconf/confread.c | 17 ++ lib/libipsecconf/keywords.c | 3 lib/libopenswan/alg_info.c | 11 + lib/libopenswan/pem.c | 8 + lib/libopenswan/secrets.c | 2 lib/libopenswan/x509dn.c | 1 programs/pluto/crypt_dh.c | 246 +++++++++++++++++++++++++++-------------- programs/pluto/crypto.h | 3 programs/pluto/hmac.c | 88 ++++++++++---- programs/pluto/ike_alg_aes.c | 2 programs/pluto/ikev1.h | 9 + programs/pluto/ikev1_main.c | 27 ++-- programs/pluto/ikev2_psk.c | 63 ++++++++++ programs/pluto/ikev2_rsa.c | 4 programs/pluto/keys.c | 42 ++++--- programs/pluto/keys.h | 2 programs/pluto/pluto_crypt.c | 27 ---- programs/pluto/plutomain.c | 59 ++++++++- programs/pluto/state.c | 6 + programs/rsasigkey/rsasigkey.c | 8 - 24 files changed, 578 insertions(+), 194 deletions(-) --- NEW FILE openswan-2.6.22-nss.patch --- diff -urNp openswan-2.6.22-orig/doc/README.nss openswan-2.6.22/doc/README.nss --- openswan-2.6.22-orig/doc/README.nss 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/doc/README.nss 2009-07-23 16:36:01.690589655 -0400 @@ -2,12 +2,11 @@ Title: Using NSS crypto library with Plu Author: Avesh Agarwal email: avagarwa at redhat.com Version:0.0 - About NSS crypto library -------------------------- Please visit http://www.mozilla.org/projects/security/pki/nss/ -NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. +NSS crypto library is user space library. It is only used with Pluto (user space IKE daemon) for cryptographic operations. When using NSS, it does not impact the way IPSEC kernel (KLIPS or NETKEY) works. The usefulness of using NSS lies in the fact that the secret information (like private keys or anything else) never comes out of NSS database. Openswan with NSS supports IKEV1, IKEv2, authentication using PSK, Raw RSA Sig key, and Digital Certs. How to enable NSS crypto library with Openswan @@ -49,9 +48,9 @@ About the password file "nsspassword" If you create the database with a password, and want to run NSS in FIPS mode, you must create a password file with the name "nsspassword" in the /etc/ipsec.d before running pluto with NSS. The "nsspassword" file must contain the password you provided when creating NSS database. Important thing to note: -i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode and even if you create the NSS database with a password, you need not create a "nsspassword" file. +i) You only need the "nsspassword" file if you run pluto in FIPS. In other way, if you run pluto in normal or NonFIPS mode, then you can create the NSS database without password, and you need not create a "nsspassword" file. However, if the NSS db is created with a password, the "nsspassword" file must also be provided. -ii) If you create he "nsspassword" file, it must contain only the password nothing else. +ii) If you create the "nsspassword" file, it must contain only the password nothing else. Generating RSA keys when using NSS @@ -60,7 +59,7 @@ You can still use ipsec newhostkey and i ipsec newhostkey --configdir /etc/ipsec.d [--password password] --output /etc/ipsec.d/ipsec.secrets -A password is only required if NSS database is used in FIPS mode. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. +A password is only required if NSS database created with password. If you use NSS and create RSA keys (private/public), you will notice that the contents of the ipsec.secrets are different than what used to be before. Public key information in ipsec.secrets is stored in the same way as before. However, all the fields of the Private key information contain just a similar ID. This ID is called CKA ID, which is used to locate private keys inside NSS database during the IKE negotiation. @@ -90,9 +89,9 @@ It creates a user cert with nick name "u Important thing to note: You must provided a nick name when creating a user cert, because Pluto reads the user cert from the NSS database nased on the user cert's nickname. -Changes in the certitificates usage with Pluto +Changes in the certificates usage with Pluto ------------------------------------------------ -1) ipsec.comf changes +1) ipsec.conf changes The only change is "leftcert" field must contain the nick name of the user cert. For example if the nickname of the user cert is "xyz", then it can be "leftid=xyz". @@ -109,9 +108,111 @@ There is no need to provide private key 3) changes in the directories in /etc/ipsec.d/ (cacerts, certs, private) i)You need not have "private" or "certs" directory. -ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory,as Pluto can read the CA cert from the database. +ii) If you obtain a CA certificate from outside, and it is not inside NSS database, then you need to put the certificate inside "cacerts" directory, so that Pluto can read it. If the CA certificate is created in the NSS database, or imported from outside inside the NSS database, you need not have "cacerts" directory, as Pluto can read the CA cert from the database. + + +An example Scenario: To setup ipsec with certs in tunnel mode using NSS +------------------------------------------------------------ + +GW Machine 1: w1.x1.y1.z1 +GW Machine 2: w2.x2.y2.z2 + +w1.x1.y1.z1 <---> w2.x2.y2.z2 + +Note: In this example setup, both machines are using NSS. If you want to use +NSS only at one machine, say machine 1, you can use the following procedure +only at machine 1, and you can use traditional ipsec setup at machine 2. + +1. Create a new (if not already) nss db on both machines as follows: + +certutil -N -d /ipsec.d + +2. Creating CA certs at both machines: + +On machine 1: +certutil -S -k rsa -n cacert1 -s "CN=cacert1" -v 12 -d . -t "C,C,C" -x -d +/ipsec.d + +As we want to use the same certificate "cacert1" at machine 2, it needs to be +exported first. To export the cacert1, do the following at machine 1: + +pk12util -o cacert1.p12 -n cacert1 -d /etc/ipsec.d + +Copy the file "cacert1.p12" to the machine2 in "/etc/ipsec.d" directory. + +On machine 2: +Import the "cacert1" as follows: + +cd /etc/ipsec.d +pk12util -i cacert1.p12 -d /etc/ipsec.d +certutil -M -n cacert1 -t "C, C, C" -d /etc/ipsec.d + +Now machine 2 also has the CA certificates "cacert1" in its NSS database. + +3. Creating user certs at both machines: + +On machine 1: +certutil -S -k rsa -c cacert1 -n usercert1 -s "CN=usercert1" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1") + +On machine 2: +certutil -S -k rsa -c cacert1 -n usercert2 -s "CN=usercert2" -v 12 -t "u,u,u" +-d /etc/ipsec.d +(Note this cert is signed by "cacert1" too) + +4. Preparing ipsec.conf at both machines + +ipsec.conf at machine 1: + + +conn pluto-1-2 + left=w1.x1.y1.z1 + leftid="CN=usercert1" + leftsourceip=w1.x1.y1.z1 + leftrsasigkey=%cert + leftcert=usercert1 + leftnexthop=w2.x2.y2.z2 + right=w2.x2.y2.z2 + rightid="CN=usercert2" + rightsourceip=w2.x2.y2.z2 + rightrsasigkey=%cert + rightnexthop=w1.x1.y1.z1 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + + +ipsec.conf at machine 2: + + +conn pluto-1-2 + left=w2.x2.y2.z2 + leftid="CN=usercert2" + leftsourceip=w2.x2.y2.z2 + leftrsasigkey=%cert + leftcert=usercert2 + leftnexthop=w1.x1.y1.z1 + right=w1.x1.y1.z1 + rightid="CN=usercert1" + rightsourceip=w1.x1.y1.z1 + rightrsasigkey=%cert + rightnexthop=w2.x2.y2.z2 + rekey=no + esp="aes-sha1" + ike="aes-sha1" + auto=add + +5. Preparing ipsec.secrets at both machines + +ipsec.secrets at machine 1: + + : RSA usercert1 + + +ipsec.secrets at machine 1: + + : RSA usercert2 -Things not supported ---------------------- -PSK: It is not supported when using NSS, because it required both pluto peers to have a mutual keys created outside the NSS database. So It should not be configured with NSS. diff -urNp openswan-2.6.22-orig/lib/libcrypto/libmd5/md5.c openswan-2.6.22/lib/libcrypto/libmd5/md5.c --- openswan-2.6.22-orig/lib/libcrypto/libmd5/md5.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libcrypto/libmd5/md5.c 2009-07-23 16:36:01.691592011 -0400 @@ -75,7 +75,9 @@ documentation and/or software. #define MD5Transform _MD5Transform +#ifndef HAVE_LIBNSS static void MD5Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); +#endif #if BYTE_ORDER == LITTLE_ENDIAN #define Encode MD5_memcpy @@ -100,11 +102,13 @@ static void MD5_memcpy PROTO_LIST ((POIN static void MD5_memset PROTO_LIST ((POINTER, int, unsigned int)); #endif #endif +#ifndef HAVE_LIBNSS static unsigned char PADDING[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; +#endif /* F, G, H and I are basic MD5 functions. */ @@ -147,14 +151,12 @@ void osMD5Init (context) MD5_CTX *context; /* context */ { #ifdef HAVE_LIBNSS - DBG(DBG_CRYPT, DBG_log("NSS: md5 init start")); SECStatus status; context->ctx_nss=NULL; context->ctx_nss = PK11_CreateDigestContext(SEC_OID_MD5); PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 init end")); #else context->count[0] = context->count[1] = 0; /* Load magic initialization constants. @@ -178,7 +180,6 @@ UINT4 inputLen; #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, input, inputLen); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: md5 update end")); #else UINT4 i; unsigned int myindex, partLen; @@ -225,7 +226,6 @@ MD5_CTX *context; PR_ASSERT(length==MD5_DIGEST_SIZE); PR_ASSERT(status==SECSuccess); PK11_DestroyContext(context->ctx_nss, PR_TRUE); - DBG(DBG_CRYPT, DBG_log("NSS: md5 final end")); #else unsigned char bits[8]; unsigned int myindex, padLen; @@ -256,6 +256,7 @@ MD5_CTX *context; /* MD5 basic transformation. Transforms state based on block. */ +#ifndef HAVE_LIBNSS static void MD5Transform (state, block) UINT4 state[4]; const unsigned char block[64]; @@ -345,6 +346,7 @@ const unsigned char block[64]; */ MD5_memset ((POINTER)x, 0, sizeof (x)); } +#endif #if BYTE_ORDER != LITTLE_ENDIAN diff -urNp openswan-2.6.22-orig/lib/libcrypto/libsha1/sha1.c openswan-2.6.22/lib/libcrypto/libsha1/sha1.c --- openswan-2.6.22-orig/lib/libcrypto/libsha1/sha1.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libcrypto/libsha1/sha1.c 2009-07-23 16:36:01.692591026 -0400 @@ -118,14 +118,12 @@ CHAR64LONG16* block = (const CHAR64LONG1 void SHA1Init(SHA1_CTX* context) { #ifdef HAVE_LIBNSS - DBG(DBG_CRYPT, DBG_log("NSS: sha1 init start")); SECStatus status; context->ctx_nss=NULL; context->ctx_nss = PK11_CreateDigestContext(SEC_OID_SHA1); PR_ASSERT(context->ctx_nss!=NULL); status=PK11_DigestBegin(context->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 init end")); #else /* SHA1 initialization constants */ context->state[0] = 0x67452301; @@ -145,7 +143,6 @@ void SHA1Update(SHA1_CTX* context, const #ifdef HAVE_LIBNSS SECStatus status=PK11_DigestOp(context->ctx_nss, data, len); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 update end")); /*loglog(RC_LOG_SERIOUS, "enter sha1 ctx update end");*/ #else u_int32_t i; @@ -181,7 +178,6 @@ void SHA1Final(unsigned char digest[20], PR_ASSERT(length==SHA1_DIGEST_SIZE); PR_ASSERT(status==SECSuccess); PK11_DestroyContext(context->ctx_nss, PR_TRUE); - DBG(DBG_CRYPT, DBG_log("NSS: sha1 final end")); #else unsigned i; unsigned char finalcount[8]; diff -urNp openswan-2.6.22-orig/lib/libipsecconf/confread.c openswan-2.6.22/lib/libipsecconf/confread.c --- openswan-2.6.22-orig/lib/libipsecconf/confread.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libipsecconf/confread.c 2009-07-23 16:36:01.693590073 -0400 @@ -32,6 +32,11 @@ #include "ipsecconf/starterlog.h" #include "ipsecconf/oeconns.h" +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK +#include "oswconf.h" +#endif + static char _tmp_err[512]; /** @@ -969,6 +974,18 @@ static int load_conn (struct starter_con /* reset authby flags */ if(conn->options_set[KBF_AUTHBY]) { conn->policy &= ~(POLICY_ID_AUTH_MASK); + +#ifdef HAVE_LIBNSS +//#ifdef FIPS_CHECK + if(Pluto_IsFIPS()) { + if((conn->options[KBF_AUTHBY] & POLICY_PSK) == POLICY_PSK){ + starter_log(LOG_LEVEL_INFO + ,"while loading conn '%s', PSK not allowed in FIPS mode with NSS", conn->name); + return 1; + } + } +#endif + conn->policy |= conn->options[KBF_AUTHBY]; #if STARTER_POLICY_DEBUG diff -urNp openswan-2.6.22-orig/lib/libipsecconf/keywords.c openswan-2.6.22/lib/libipsecconf/keywords.c --- openswan-2.6.22-orig/lib/libipsecconf/keywords.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libipsecconf/keywords.c 2009-07-23 16:36:01.694590809 -0400 @@ -79,10 +79,7 @@ struct keyword_enum_values kw_fourvalued struct keyword_enum_value kw_authby_values[]={ { "never", 0}, { "rsasig", POLICY_RSASIG}, -/* You cannot have a PSK in an nss database */ -#ifndef HAVE_LIBNSS { "secret", POLICY_PSK}, -#endif }; struct keyword_enum_values kw_authby_list= diff -urNp openswan-2.6.22-orig/lib/libipsecconf/Makefile openswan-2.6.22/lib/libipsecconf/Makefile --- openswan-2.6.22-orig/lib/libipsecconf/Makefile 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libipsecconf/Makefile 2009-07-23 16:36:01.695600060 -0400 @@ -32,6 +32,13 @@ SRCS+=interfaces.c #enable to get lots more debugging about semantics. #CFLAGS+=-DPARSER_TYPE_DEBUG +#ifeq ($(USE_FIPSCHECK),true) +#CFLAGS+=-DFIPS_CHECK +ifeq ($(USE_LIBNSS),true) +CFLAGS+=-DHAVE_LIBNSS +CFLAGS+=-I/usr/include/nspr4 -I/usr/include/nss3 +endif + ifeq ($(USE_KLIPS),true) SRCS+=virtif.c endif diff -urNp openswan-2.6.22-orig/lib/libopenswan/alg_info.c openswan-2.6.22/lib/libopenswan/alg_info.c --- openswan-2.6.22-orig/lib/libopenswan/alg_info.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libopenswan/alg_info.c 2009-07-23 16:36:01.696590101 -0400 @@ -36,6 +36,10 @@ #include "oswlog.h" #include "oswalloc.h" +#ifdef HAVE_LIBNSS +#include "oswconf.h" +#endif + /* abstract reference */ struct oakley_group_desc; @@ -625,6 +629,13 @@ parser_alg_info_add(struct parser_contex p_ctx->err="hash_alg not found"; goto out; } + +#ifdef HAVE_LIBNSS + if ( Pluto_IsFIPS() && ((aalg_id == OAKLEY_SHA2_256 ) ||(aalg_id == OAKLEY_SHA2_384 ) || (aalg_id == OAKLEY_SHA2_512 )) ) { + p_ctx->err="SHA2 Not supported in FIPS mode with NSS"; + goto out; + } +#endif DBG(DBG_CRYPT, DBG_log("parser_alg_info_add() " "aalg_getbyname(\"%s\")=%d", p_ctx->aalg_buf, diff -urNp openswan-2.6.22-orig/lib/libopenswan/pem.c openswan-2.6.22/lib/libopenswan/pem.c --- openswan-2.6.22-orig/lib/libopenswan/pem.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libopenswan/pem.c 2009-07-23 16:36:01.768617374 -0400 @@ -195,10 +195,13 @@ pem_decrypt_3des(chunk_t *blob, chunk_t { MD5_CTX context; u_char digest[MD5_DIGEST_SIZE]; - u_char des_iv[DES_CBC_BLOCK_SIZE]; u_char key[24]; + +#ifndef HAVE_LIBNSS + u_char des_iv[DES_CBC_BLOCK_SIZE]; des_cblock *deskey = (des_cblock *)key; des_key_schedule ks[3]; +#endif u_char padding, *last_padding_pos, *first_padding_pos; /* Convert passphrase to 3des key */ @@ -217,7 +220,8 @@ pem_decrypt_3des(chunk_t *blob, chunk_t memcpy(key + MD5_DIGEST_SIZE, digest, 24 - MD5_DIGEST_SIZE); #ifdef HAVE_LIBNSS - do_3des_nss(blob->ptr, blob->len, key, DES_CBC_BLOCK_SIZE * 3 , iv, FALSE); + do_3des_nss(blob->ptr, blob->len, + key, DES_CBC_BLOCK_SIZE * 3 , (u_int8_t*)iv, FALSE); #else (void) oswcrypto.des_set_key(&deskey[0], ks[0]); (void) oswcrypto.des_set_key(&deskey[1], ks[1]); diff -urNp openswan-2.6.22-orig/lib/libopenswan/secrets.c openswan-2.6.22/lib/libopenswan/secrets.c --- openswan-2.6.22-orig/lib/libopenswan/secrets.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libopenswan/secrets.c 2009-07-23 16:36:01.770594010 -0400 @@ -121,11 +121,13 @@ RSA_show_key_fields(struct RSA_private_k } /* debugging info that compromises security! */ +#ifndef HAVE_LIBNSS static void RSA_show_private_key(struct RSA_private_key *k) { RSA_show_key_fields(k, elemsof(RSA_private_field)); } +#endif static void RSA_show_public_key(struct RSA_public_key *k) diff -urNp openswan-2.6.22-orig/lib/libopenswan/x509dn.c openswan-2.6.22/lib/libopenswan/x509dn.c --- openswan-2.6.22-orig/lib/libopenswan/x509dn.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/lib/libopenswan/x509dn.c 2009-07-23 16:36:01.772589393 -0400 @@ -56,6 +56,7 @@ #ifdef HAVE_LIBNSS # include # include +# include # include # include "oswconf.h" #endif diff -urNp openswan-2.6.22-orig/programs/pluto/crypt_dh.c openswan-2.6.22/programs/pluto/crypt_dh.c --- openswan-2.6.22-orig/programs/pluto/crypt_dh.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/crypt_dh.c 2009-07-23 16:36:01.775588265 -0400 @@ -58,6 +58,9 @@ # include # include "oswconf.h" +#define PK11_Derive(base, mechanism, param, target, operation, keysize) \ + PK11_Derive_osw(base, mechanism, param, target, operation, keysize) + static PK11SymKey *pk11_extract_derive_wrapper_osw(PK11SymKey *base, CK_EXTRACT_PARAMS bs , CK_MECHANISM_TYPE target , CK_ATTRIBUTE_TYPE operation, int keySize) { @@ -67,7 +70,7 @@ static PK11SymKey *pk11_extract_derive_w return PK11_Derive(base, CKM_EXTRACT_KEY_FROM_KEY, ¶m, target, operation, keySize); } - +/* static CK_MECHANISM_TYPE nss_hmac_mech(const struct hash_desc *hasher) { CK_MECHANISM_TYPE mechanism; @@ -78,21 +81,22 @@ static CK_MECHANISM_TYPE nss_hmac_mech(c case OAKLEY_SHA2_256: mechanism = CKM_SHA256_HMAC; break; case OAKLEY_SHA2_384: mechanism = CKM_SHA384_HMAC; break; case OAKLEY_SHA2_512: mechanism = CKM_SHA512_HMAC; break; - default: loglog(RC_LOG_SERIOUS,"NSS: undefined hmac mechanism"); break; /*should not reach here*/ + default: loglog(RC_LOG_SERIOUS,"NSS: undefined hmac mechanism"); break; } return mechanism; } +*/ static CK_MECHANISM_TYPE nss_encryption_mech(const struct encrypt_desc *encrypter) { - CK_MECHANISM_TYPE mechanism; +CK_MECHANISM_TYPE mechanism=0x80000000; - switch(encrypter->common.algo_id) { - case OAKLEY_3DES_CBC: mechanism = CKM_DES3_CBC; break; - case OAKLEY_AES_CBC: mechanism = CKM_AES_CBC; break; - default: loglog(RC_LOG_SERIOUS,"NSS: Unsupported encryption mechanism"); break; /*should not reach here*/ + switch(encrypter->common.algo_id){ + case OAKLEY_3DES_CBC: mechanism = CKM_DES3_CBC; break; + case OAKLEY_AES_CBC: mechanism = CKM_AES_CBC; break; + default: loglog(RC_LOG_SERIOUS,"NSS: Unsupported encryption mechanism"); break; /*should not reach here*/ } - return mechanism; +return mechanism; } #endif @@ -111,14 +115,11 @@ calc_dh_shared(chunk_t *shared, const ch unsigned long tv_diff; SECKEYPublicKey *remote_pubk, *local_pubk; SECKEYPrivateKey *privk; - SECItem nss_g,param1; + SECItem nss_g; PK11SymKey *dhshared; PRArenaPool *arena; SECStatus status; - DBG_cond_dump_chunk(DBG_CRYPT, "NSS: DH pubk pointer:\n", pubk); - DBG_cond_dump_chunk(DBG_CRYPT, "NSS: DH priv key pointer:\n", secret); - memcpy(&local_pubk,pubk.ptr,pubk.len); memcpy(&privk,secret.ptr,secret.len); @@ -129,12 +130,9 @@ calc_dh_shared(chunk_t *shared, const ch arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE); PR_ASSERT(arena!=NULL); - DBG(DBG_CRYPT, DBG_log("Started DH shared-secret computation in NSS:created arena\n")); remote_pubk = (SECKEYPublicKey *) PORT_ArenaZAlloc (arena, sizeof (SECKEYPublicKey)); - DBG(DBG_CRYPT, DBG_log("Started DH shared-secret computation in NSS:created remote pubk\n")); - remote_pubk->arena = arena; remote_pubk->keyType = dhKey; remote_pubk->pkcs11Slot = NULL; @@ -153,7 +151,6 @@ calc_dh_shared(chunk_t *shared, const ch status = SECITEM_CopyItem(remote_pubk->arena, &remote_pubk->u.dh.publicValue, &nss_g); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("Started DH shared-secret computation in NSS:created remote pubk data\n")); dhshared=PK11_PubDerive(privk,remote_pubk,PR_FALSE, NULL, NULL , CKM_DH_PKCS_DERIVE, CKM_CONCATENATE_DATA_AND_BASE @@ -161,10 +158,6 @@ calc_dh_shared(chunk_t *shared, const ch , osw_return_nss_password_file_info()); PR_ASSERT(dhshared!=NULL); - nss_symkey_log(dhshared,"DH Shared Secret"); - - DBG(DBG_CRYPT, DBG_log("Started DH shared-secret computation in NSS:created dh shared secret\n")); - shared->len=sizeof(PK11SymKey *); shared->ptr = alloc_bytes(shared->len, "calculated shared secret"); memcpy(shared->ptr, &dhshared,shared->len); @@ -247,17 +240,115 @@ calc_dh_shared(chunk_t *shared, const ch /* SKEYID for preshared keys. * See draft-ietf-ipsec-ike-01.txt 4.1 */ + +#ifdef HAVE_LIBNSS +static void +skeyid_preshared(const chunk_t pss + , const chunk_t ni + , const chunk_t nr + , const chunk_t shared_chunk + , const struct hash_desc *hasher + , chunk_t *skeyid_chunk) +#else static void skeyid_preshared(const chunk_t pss , const chunk_t ni , const chunk_t nr , const struct hash_desc *hasher , chunk_t *skeyid) +#endif { struct hmac_ctx ctx; passert(hasher != NULL); +#ifdef HAVE_LIBNSS + chunk_t nir; + int k; + CK_MECHANISM_TYPE mechanism; + u_char buf1[HMAC_BUFSIZE], buf2[HMAC_BUFSIZE]; + chunk_t buf1_chunk, buf2_chunk; + PK11SymKey *shared, *skeyid; + + DBG(DBG_CRYPT, + DBG_log("NSS: skeyid inputs (pss+NI+NR+shared) hasher: %s", hasher->common.name); + DBG_dump_chunk("shared-secret: ", shared_chunk); + DBG_dump_chunk("ni: ", ni); + DBG_dump_chunk("nr: ", nr)); + + memcpy(&shared, shared_chunk.ptr, shared_chunk.len); + + /* We need to hmac_init with the concatenation of Ni_b and Nr_b, + * so we have to build a temporary concatentation. + */ + + nir.len = ni.len + nr.len; + nir.ptr = alloc_bytes(nir.len, "Ni + Nr in skeyid_preshared"); + memcpy(nir.ptr, ni.ptr, ni.len); + memcpy(nir.ptr+ ni.len, nr.ptr, nr.len); + + memset(buf1, '\0', HMAC_BUFSIZE); + + if (pss.len <= HMAC_BUFSIZE) + { + memcpy(buf1, pss.ptr, pss.len); + } + else + { + hasher->hash_init(&ctx.hash_ctx); + hasher->hash_update(&ctx.hash_ctx, pss.ptr, pss.len); + hasher->hash_final(buf1, &ctx.hash_ctx); + } + + memcpy(buf2, buf1, HMAC_BUFSIZE); + + for (k = 0; k < HMAC_BUFSIZE; k++) + { + buf1[k] ^= HMAC_IPAD; + buf2[k] ^= HMAC_OPAD; + } + + //pfree(nir.ptr); + + mechanism=nss_key_derivation_mech(hasher); + buf1_chunk.ptr=buf1; + buf1_chunk.len=HMAC_BUFSIZE; + + buf2_chunk.ptr=buf2; + buf2_chunk.len=HMAC_BUFSIZE; + + PK11SymKey *tkey4 = pk11_derive_wrapper_osw(shared, CKM_CONCATENATE_DATA_AND_BASE, buf1_chunk, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); + //nss_symkey_log(tkey4, "pss+ipad+shared"); + + CK_EXTRACT_PARAMS bs=0; + PK11SymKey *tkey5 = pk11_extract_derive_wrapper_osw(tkey4, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, HMAC_BUFSIZE); + //nss_symkey_log(tkey5, "pss+ipad"); + + PK11SymKey *tkey6 = pk11_derive_wrapper_osw(tkey5, CKM_CONCATENATE_BASE_AND_DATA, nir, mechanism, CKA_DERIVE, 0); + pfree(nir.ptr); + //nss_symkey_log(tkey6, "pss+ipad+nir"); + + //PK11SymKey *tkey1 = pk11_derive_wrapper_osw(shared, CKM_CONCATENATE_DATA_AND_BASE, buf1_chunk, mechanism, CKA_DERIVE, 0); + PK11SymKey *tkey2 = PK11_Derive(tkey6, mechanism, NULL, CKM_CONCATENATE_DATA_AND_BASE, CKA_DERIVE, 0); + //nss_symkey_log(tkey2, "pss : tkey2"); + + PK11SymKey *tkey3 = pk11_derive_wrapper_osw(tkey2, CKM_CONCATENATE_DATA_AND_BASE, buf2_chunk, mechanism, CKA_DERIVE, 0); + skeyid = PK11_Derive(tkey3, mechanism, NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); + //nss_symkey_log(tkey2, "pss : tkey3"); + + skeyid_chunk->len = sizeof(PK11SymKey *); + skeyid_chunk->ptr = alloc_bytes(skeyid_chunk->len, "calculated skeyid(pss)"); + memcpy(skeyid_chunk->ptr, &skeyid, skeyid_chunk->len); + + PK11_FreeSymKey(tkey4); + PK11_FreeSymKey(tkey5); + PK11_FreeSymKey(tkey6); + PK11_FreeSymKey(tkey2); + PK11_FreeSymKey(tkey3); + + DBG(DBG_CRYPT, + DBG_dump_chunk("NSS: st_skeyid in skeyid_preshared(): ", *skeyid_chunk)); +#else DBG(DBG_CRYPT, DBG_log("Skey inputs (PSK+NI+NR)"); DBG_dump_chunk("ni: ", ni); @@ -269,6 +360,7 @@ skeyid_preshared(const chunk_t pss hmac_final_chunk(*skeyid, "st_skeyid in skeyid_preshared()", &ctx); DBG(DBG_CRYPT, DBG_dump_chunk("keyid: ", *skeyid)); +#endif } static void @@ -406,8 +498,8 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq { case OAKLEY_PRESHARED_KEY: #ifdef HAVE_LIBNSS - loglog(RC_LOG_SERIOUS,"OAKLEY_PRESHARED_KEY: Not Supported with NSS"); - bad_case(auth); + setchunk_fromwire(pss, &skq->pss, skq); + skeyid_preshared(pss, ni, nr, shared_chunk, hasher, skeyid_chunk); #else setchunk_fromwire(pss, &skq->pss, skq); skeyid_preshared(pss, ni, nr, hasher, skeyid_chunk); @@ -465,7 +557,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq PR_ASSERT(tkey2!=NULL); keyhandle=PK11_GetSymKeyHandle(shared); - param.data=&keyhandle; + param.data=(unsigned char *) &keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey3 = PK11_Derive(tkey2, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); @@ -494,7 +586,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq keyhandle=PK11_GetSymKeyHandle(tkey7); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey9 = PK11_Derive(tkey8, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); @@ -508,14 +600,14 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq /*Deriving SKEYID_a = hmac_xxx(SKEYID, SKEYID_d | g^xy | CKY-I | CKY-R | 1)*/ keyhandle=PK11_GetSymKeyHandle(skeyid_d); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey10 = PK11_Derive(tkey2, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey10!=NULL); keyhandle=PK11_GetSymKeyHandle(shared); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey11 = PK11_Derive(tkey10, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); @@ -537,7 +629,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq PR_ASSERT(tkey15!=NULL); keyhandle=PK11_GetSymKeyHandle(tkey15); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey16 = PK11_Derive(tkey8, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); @@ -551,14 +643,14 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq /*Deriving SKEYID_e = prf(SKEYID, SKEYID_a | g^xy | CKY-I | CKY-R | 2)*/ keyhandle=PK11_GetSymKeyHandle(skeyid_a); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey17 = PK11_Derive(tkey2, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey17!=NULL); keyhandle=PK11_GetSymKeyHandle(shared); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey18 = PK11_Derive(tkey17, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); @@ -580,28 +672,27 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq PR_ASSERT(tkey22!=NULL); keyhandle=PK11_GetSymKeyHandle(tkey22); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey23 = PK11_Derive(tkey8, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); PR_ASSERT(tkey23!=NULL); - DBG(DBG_CRYPT, DBG_log("NSS: enc keysize=%d\n",keysize)); + DBG(DBG_CRYPT, DBG_log("NSS: enc keysize=%d\n",(int)keysize)); /*Deriving encryption key from SKEYID_e*/ /* Oakley Keying Material * Derived from Skeyid_e: if it is not big enough, generate more * using the PRF. * See RFC 2409 "IKE" Appendix B*/ - CK_EXTRACT_PARAMS bitstart = 0; - param1.data = &bitstart; + CK_EXTRACT_PARAMS bitstart = 0; + param1.data = (unsigned char*)&bitstart; param1.len = sizeof (bitstart); if(keysize <= hasher->hash_digest_len){ skeyid_e = PK11_Derive(tkey23, nss_key_derivation_mech(hasher), NULL, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); PR_ASSERT(skeyid_e!=NULL); - nss_symkey_log(skeyid_e, "skeyid_e"); enc_key = PK11_DeriveWithFlags(skeyid_e, CKM_EXTRACT_KEY_FROM_KEY, ¶m1 , nss_encryption_mech(encrypter), CKA_FLAGS_ONLY, keysize, CKF_ENCRYPT|CKF_DECRYPT); @@ -617,7 +708,6 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq skeyid_e = PK11_Derive(tkey23, nss_key_derivation_mech(hasher), NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(skeyid_e!=NULL); - nss_symkey_log(skeyid_e, "skeyid_e"); PK11SymKey *tkey25 = pk11_derive_wrapper_osw(skeyid_e, CKM_CONCATENATE_BASE_AND_DATA , hmac_pad,CKM_XOR_BASE_AND_DATA, CKA_DERIVE, HMAC_BUFSIZE); @@ -640,7 +730,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq PR_ASSERT(tkey29!=NULL); keyhandle=PK11_GetSymKeyHandle(tkey28); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey30 = PK11_Derive(tkey29, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); @@ -668,7 +758,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq for(;;){ keyhandle=PK11_GetSymKeyHandle(tkey31); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey34 = PK11_Derive(tkey33, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); @@ -679,7 +769,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq PR_ASSERT(tkey35!=NULL); keyhandle=PK11_GetSymKeyHandle(tkey35); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey37 = PK11_Derive(tkey36, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); @@ -694,14 +784,12 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq /*concatenating K1 and K2 */ keyhandle=PK11_GetSymKeyHandle(tkey38); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey39 = PK11_Derive(keymat, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey39!=NULL); - DBG(DBG_CRYPT, DBG_log("NSS: encrypter= %d, keysize =%d\n", nss_encryption_mech(encrypter), keysize)); - enc_key = PK11_DeriveWithFlags(tkey39, CKM_EXTRACT_KEY_FROM_KEY, ¶m1 , nss_encryption_mech(encrypter), CKA_FLAGS_ONLY, /*0*/ keysize, CKF_ENCRYPT|CKF_DECRYPT); @@ -731,7 +819,7 @@ calc_skeyids_iv(struct pcr_skeyid_q *skq else{ keyhandle=PK11_GetSymKeyHandle(tkey38); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey39=PK11_Derive(keymat,CKM_CONCATENATE_BASE_AND_KEY, ¶m,CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); @@ -1119,18 +1207,16 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk #ifdef HAVE_LIBNSS const struct hash_desc *hasher = crypto_get_hasher(skq->prf_hash); passert(hasher); - DBG(DBG_CRYPT, DBG_log("NSS ikev2: found hasher\n")); + const struct encrypt_desc *encrypter = skq->encrypter; passert(encrypter); - DBG(DBG_CRYPT, DBG_log("NSS ikev2: found encrypter\n")); + hmac_opad = hmac_pads(HMAC_OPAD,HMAC_BUFSIZE); hmac_ipad = hmac_pads(HMAC_IPAD,HMAC_BUFSIZE); hmac_pad_prf = hmac_pads(0x00,HMAC_BUFSIZE-hasher->hash_digest_len); - DBG(DBG_CRYPT, DBG_log("NSS ikev2: computed required pads\n")); - DBG(DBG_CRYPT, DBG_log("NSS ikev2: Started computing SKEYSEED\n")); /* generate SKEYSEED from key=(Ni|Nr), hash of shared */ { @@ -1138,8 +1224,6 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk memcpy(&skeyseed_k, skeyseed->ptr, skeyseed->len); } passert(skeyseed_k); - nss_symkey_log(skeyseed_k, "skeyseed"); - DBG(DBG_CRYPT, DBG_log("NSS ikev2: Computed SKEYSEED\n")); #else vpss.prf_hasher = crypto_get_hasher(skq->prf_hash); @@ -1202,19 +1286,18 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk DBG_dump_chunk("Nr", vpss.nr); DBG_dump_chunk("SPIi", vpss.spii); DBG_dump_chunk("SPIr", vpss.spir); - DBG_log("Total keysize needed %ld", total_keysize); + DBG_log("Total keysize needed %d", (int)total_keysize); } #ifdef HAVE_LIBNSS counter.ptr = &vpss.counter[0]; counter.len =1; - DBG(DBG_CRYPT, DBG_log("NSS ikev2: Started computing key material for IKEv2 SA\n")); PK11SymKey *finalkey; PK11SymKey *tkey1 = pk11_derive_wrapper_osw(skeyseed_k, CKM_CONCATENATE_BASE_AND_DATA , hmac_pad_prf,CKM_XOR_BASE_AND_DATA, CKA_DERIVE, HMAC_BUFSIZE); PR_ASSERT(tkey1!=NULL); - nss_symkey_log(tkey1, "1"); + for(;;) { @@ -1224,7 +1307,6 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk PK11SymKey *tkey2 = pk11_derive_wrapper_osw(tkey1, CKM_XOR_BASE_AND_DATA , hmac_ipad, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey2!=NULL); - nss_symkey_log(tkey2, "2"); tkey3 = pk11_derive_wrapper_osw(tkey2, CKM_CONCATENATE_BASE_AND_DATA , vpss.ni, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); @@ -1233,16 +1315,15 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk PK11SymKey *tkey2 = pk11_derive_wrapper_osw(tkey1, CKM_XOR_BASE_AND_DATA , hmac_ipad, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey2!=NULL); - nss_symkey_log(tkey2, "2"); + keyhandle=PK11_GetSymKeyHandle(tkey11); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey12 = PK11_Derive(tkey2, CKM_CONCATENATE_BASE_AND_KEY , ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey12!=NULL); - nss_symkey_log(tkey12, "tkey12"); tkey3 = pk11_derive_wrapper_osw(tkey12, CKM_CONCATENATE_BASE_AND_DATA , vpss.ni, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); @@ -1252,70 +1333,67 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk } PR_ASSERT(tkey3!=NULL); - nss_symkey_log(tkey3, "3"); + PK11SymKey *tkey4 = pk11_derive_wrapper_osw(tkey3, CKM_CONCATENATE_BASE_AND_DATA , vpss.nr, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey4!=NULL); - nss_symkey_log(tkey4, "4"); + PK11SymKey *tkey5 = pk11_derive_wrapper_osw(tkey4, CKM_CONCATENATE_BASE_AND_DATA , vpss.spii, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey5!=NULL); - nss_symkey_log(tkey5, "5"); + PK11SymKey *tkey6 = pk11_derive_wrapper_osw(tkey5, CKM_CONCATENATE_BASE_AND_DATA , vpss.spir, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey6!=NULL); - nss_symkey_log(tkey6, "6"); + PK11SymKey *tkey7 = pk11_derive_wrapper_osw(tkey6, CKM_CONCATENATE_BASE_AND_DATA , counter, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); PR_ASSERT(tkey7!=NULL); - nss_symkey_log(tkey7, "7"); + PK11SymKey *tkey8 = PK11_Derive(tkey7, nss_key_derivation_mech(hasher), NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); PR_ASSERT(tkey8!=NULL); - nss_symkey_log(tkey8, "8"); + PK11SymKey *tkey9 = pk11_derive_wrapper_osw(tkey1, CKM_XOR_BASE_AND_DATA , hmac_opad, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey9!=NULL); - nss_symkey_log(tkey9, "9"); + keyhandle=PK11_GetSymKeyHandle(tkey8); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); PK11SymKey *tkey10 = PK11_Derive(tkey9, CKM_CONCATENATE_BASE_AND_KEY, ¶m, nss_key_derivation_mech(hasher), CKA_DERIVE, 0); PR_ASSERT(tkey10!=NULL); - nss_symkey_log(tkey10, "10"); + if(vpss.counter[0]== 0x01) { finalkey = PK11_Derive(tkey10, nss_key_derivation_mech(hasher), NULL, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(finalkey!=NULL); - nss_symkey_log(finalkey, "finalkey"); + tkey11 = PK11_Derive(tkey10, nss_key_derivation_mech(hasher), NULL, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey11!=NULL); - nss_symkey_log(tkey11, "tkey11"); } else { tkey11 = PK11_Derive(tkey10, nss_key_derivation_mech(hasher), NULL, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); PR_ASSERT(tkey11!=NULL); - nss_symkey_log(tkey11, "tkey11"); + keyhandle=PK11_GetSymKeyHandle(tkey11); - param.data=&keyhandle; + param.data=(unsigned char*)&keyhandle; param.len=sizeof(keyhandle); if( total_keysize <= (PK11_GetKeyLength(finalkey)+PK11_GetKeyLength(tkey11)) ) { finalkey = PK11_Derive(finalkey, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); PR_ASSERT(finalkey!=NULL); - nss_symkey_log(finalkey, "finalkey"); } else { finalkey = PK11_Derive(finalkey, CKM_CONCATENATE_BASE_AND_KEY, ¶m, CKM_CONCATENATE_BASE_AND_KEY, CKA_DERIVE, 0); PR_ASSERT(finalkey!=NULL); - nss_symkey_log(finalkey, "finalkey"); } } @@ -1340,37 +1418,37 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk DBG(DBG_CRYPT, DBG_log("NSS ikev2: finished computing key material for IKEv2 SA\n")); CK_EXTRACT_PARAMS bs=0; SK_d_k = pk11_extract_derive_wrapper_osw(finalkey, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, skd_bytes); - nss_symkey_log(SK_d_k, "SK_d_k"); + bs= skd_bytes*BITS_PER_BYTE; SK_ai_k = pk11_extract_derive_wrapper_osw(finalkey, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, ska_bytes); - nss_symkey_log(SK_ai_k, "SK_ai_k"); + bs= (skd_bytes + ska_bytes)*BITS_PER_BYTE; SK_ar_k = pk11_extract_derive_wrapper_osw(finalkey, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, ska_bytes); - nss_symkey_log(SK_ar_k, "SK_ar_k"); + bs= (skd_bytes + (2*ska_bytes))*BITS_PER_BYTE; param1.data =(unsigned char*)&bs; param1.len = sizeof(bs); SK_ei_k = PK11_DeriveWithFlags(finalkey, CKM_EXTRACT_KEY_FROM_KEY, ¶m1 , nss_encryption_mech(encrypter), CKA_FLAGS_ONLY, ske_bytes, CKF_ENCRYPT|CKF_DECRYPT); - nss_symkey_log(SK_ei_k, "SK_ei_k"); + bs= (skd_bytes + (2*ska_bytes) + ske_bytes)*BITS_PER_BYTE; param1.data =(unsigned char*)&bs; param1.len = sizeof(bs); SK_er_k = PK11_DeriveWithFlags(finalkey, CKM_EXTRACT_KEY_FROM_KEY, ¶m1 , nss_encryption_mech(encrypter), CKA_FLAGS_ONLY, ske_bytes, CKF_ENCRYPT|CKF_DECRYPT); - nss_symkey_log(SK_er_k, "SK_er_k"); + bs= (skd_bytes + (2*ska_bytes) + (2*ske_bytes))*BITS_PER_BYTE; SK_pi_k = pk11_extract_derive_wrapper_osw(finalkey, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, skp_bytes); - nss_symkey_log(SK_pi_k, "SK_pi_k"); + bs= (skd_bytes + (2*ska_bytes) + (2*ske_bytes)+skp_bytes)*BITS_PER_BYTE; SK_pr_k = pk11_extract_derive_wrapper_osw(finalkey, bs, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, skp_bytes); - nss_symkey_log(SK_pr_k, "SK_pr_k"); + DBG(DBG_CRYPT, DBG_log("NSS ikev2: finished computing individual keys for IKEv2 SA\n")); @@ -1380,37 +1458,37 @@ calc_skeyseed_v2(struct pcr_skeyid_q *sk SK_d->len = sizeof(PK11SymKey *); SK_d->ptr = alloc_bytes(SK_d->len, "SK_d"); memcpy(SK_d->ptr, &SK_d_k, SK_d->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_d\n")); + SK_ai->len = sizeof(PK11SymKey *); SK_ai->ptr = alloc_bytes(SK_ai->len, "SK_ai"); memcpy(SK_ai->ptr, &SK_ai_k, SK_ai->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_ai\n")); + SK_ar->len = sizeof(PK11SymKey *); SK_ar->ptr = alloc_bytes(SK_ar->len, "SK_ar"); memcpy(SK_ar->ptr, &SK_ar_k, SK_ar->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_ar\n")); + SK_ei->len = sizeof(PK11SymKey *); SK_ei->ptr = alloc_bytes(SK_ei->len, "SK_ei"); memcpy(SK_ei->ptr, &SK_ei_k, SK_ei->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_ei\n")); + SK_er->len = sizeof(PK11SymKey *); SK_er->ptr = alloc_bytes(SK_er->len, "SK_er"); memcpy(SK_er->ptr, &SK_er_k, SK_er->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_er\n")); + SK_pi->len = sizeof(PK11SymKey *); SK_pi->ptr = alloc_bytes(SK_pi->len, "SK_pi"); memcpy(SK_pi->ptr, &SK_pi_k, SK_pi->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_pi\n")); + SK_pr->len = sizeof(PK11SymKey *); SK_pr->ptr = alloc_bytes(SK_pr->len, "SK_pr"); memcpy(SK_pr->ptr, &SK_pr_k, SK_pr->len); - DBG(DBG_CRYPT, DBG_log("NSS: copied SK_pr\n")); + freeanychunk(hmac_opad); freeanychunk(hmac_ipad); diff -urNp openswan-2.6.22-orig/programs/pluto/crypto.h openswan-2.6.22/programs/pluto/crypto.h --- openswan-2.6.22-orig/programs/pluto/crypto.h 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/crypto.h 2009-07-23 16:36:01.776589745 -0400 @@ -148,6 +148,9 @@ extern chunk_t hmac_pads(u_char val, uns extern PK11SymKey *pk11_derive_wrapper_osw(PK11SymKey *base, CK_MECHANISM_TYPE mechanism , chunk_t data, CK_MECHANISM_TYPE target , CK_ATTRIBUTE_TYPE operation, int keySize); +extern PK11SymKey *PK11_Derive_osw(PK11SymKey *base, CK_MECHANISM_TYPE mechanism + , SECItem *param, CK_MECHANISM_TYPE target + , CK_ATTRIBUTE_TYPE operation, int keySize); #endif #endif /* _CRYPTO_H */ diff -urNp openswan-2.6.22-orig/programs/pluto/hmac.c openswan-2.6.22/programs/pluto/hmac.c --- openswan-2.6.22-orig/programs/pluto/hmac.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/hmac.c 2009-07-23 16:36:01.779603531 -0400 @@ -26,7 +26,6 @@ #include "crypto.h" /* requires sha1.h and md5.h */ #include "alg_info.h" #include "ike_alg.h" -#include "oswlog.h" #ifdef HAVE_LIBNSS # include @@ -69,23 +68,20 @@ hmac_init(struct hmac_ctx *ctx, unsigned int klen; chunk_t hmac_opad, hmac_ipad, hmac_pad; /* empty parameters for the cryptographic context */ - SECItem noparams = { siBuffer, NULL, 0 }; memcpy(&symkey, key, key_len); - nss_symkey_log(symkey, "hmac symkey"); klen = PK11_GetKeyLength(symkey); hmac_opad = hmac_pads(HMAC_OPAD,HMAC_BUFSIZE); hmac_ipad = hmac_pads(HMAC_IPAD,HMAC_BUFSIZE); - hmac_pad = hmac_pads(0x00,HMAC_BUFSIZE-h->hash_digest_len); + //hmac_pad = hmac_pads(0x00,HMAC_BUFSIZE-h->hash_digest_len); + hmac_pad = hmac_pads(0x00,HMAC_BUFSIZE-klen); if(klen > HMAC_BUFSIZE) { - DBG(DBG_CRYPT, DBG_log("NSS: key len is greater than block size")); - tkey1 = PK11_Derive(symkey, nss_key_derivation_mech(h), NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); - DBG(DBG_CRYPT, DBG_log("NSS: created digest of key")); - nss_symkey_log(tkey1, "hmac symkey digested"); + //tkey1 = PK11_Derive(symkey, nss_key_derivation_mech(h), NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); + tkey1 = PK11_Derive_osw(symkey, nss_key_derivation_mech(h), NULL, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, 0); } else { @@ -102,13 +98,11 @@ hmac_init(struct hmac_ctx *ctx, , hmac_ipad,nss_hash_mech(h), CKA_DIGEST, 0); PR_ASSERT(ctx->ikey !=NULL); - nss_symkey_log(ctx->ikey, "ctx ikey"); ctx->okey = pk11_derive_wrapper_osw(tkey2, CKM_XOR_BASE_AND_DATA , hmac_opad,nss_hash_mech(h), CKA_DIGEST, 0); PR_ASSERT(ctx->okey !=NULL); - nss_symkey_log(ctx->okey, "ctx okey"); if(tkey1!=symkey) { PK11_FreeSymKey(tkey1); @@ -120,17 +114,13 @@ hmac_init(struct hmac_ctx *ctx, freeanychunk(hmac_pad); ctx->ctx_nss = PK11_CreateDigestContext(nss_hash_oid(h)); PR_ASSERT(ctx->ctx_nss!=NULL); - DBG(DBG_CRYPT, DBG_log("NSS: context created for hmac (doing it the hash way)")); status=PK11_DigestBegin(ctx->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: Digest begin succeeded")); status=PK11_DigestKey(ctx->ctx_nss, ctx->ikey); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: digested inner key")); - #else /* Prepare the two pads for the HMAC */ @@ -174,12 +164,10 @@ hmac_update(struct hmac_ctx *ctx, const u_char *data, size_t data_len) { #ifdef HAVE_LIBNSS - DBG(DBG_CRYPT, DBG_log("NSS: hmac update start")); if(data_len > 0) { SECStatus status = PK11_DigestOp(ctx->ctx_nss, data, data_len); PR_ASSERT(status == SECSuccess); } - DBG(DBG_CRYPT, DBG_log("NSS: hmac update end")); #else ctx->h->hash_update(&ctx->hash_ctx, data, data_len); #endif @@ -198,7 +186,6 @@ hmac_final(u_char *output, struct hmac_c h->hash_update(&ctx->hash_ctx, output, h->hash_digest_len); h->hash_final(output, &ctx->hash_ctx); #else - DBG(DBG_CRYPT, DBG_log("NSS: hmac final start")); unsigned int outlen = 0; SECStatus status = PK11_DigestFinal(ctx->ctx_nss, output, &outlen, ctx->hmac_digest_len); PR_ASSERT(status == SECSuccess); @@ -208,20 +195,16 @@ hmac_final(u_char *output, struct hmac_c ctx->ctx_nss = PK11_CreateDigestContext(nss_hash_oid(ctx->h)); PR_ASSERT(ctx->ctx_nss!=NULL); - DBG(DBG_CRYPT, DBG_log("NSS: hmac final context creation")); status=PK11_DigestBegin(ctx->ctx_nss); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: hmac second final digest begin")); status=PK11_DigestKey(ctx->ctx_nss, ctx->okey); PR_ASSERT(status==SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: digested outer key")); status = PK11_DigestOp(ctx->ctx_nss, output, outlen); PR_ASSERT(status == SECSuccess); - DBG(DBG_CRYPT, DBG_log("NSS: digested inner data")); status = PK11_DigestFinal(ctx->ctx_nss, output, &outlen, ctx->hmac_digest_len); PR_ASSERT(status == SECSuccess); PR_ASSERT(outlen == ctx->hmac_digest_len); @@ -236,7 +219,7 @@ hmac_final(u_char *output, struct hmac_c #ifdef HAVE_LIBNSS static SECOidTag nss_hash_oid(const struct hash_desc *hasher) { - SECOidTag mechanism; + SECOidTag mechanism=0; switch(hasher->common.algo_id) { case OAKLEY_MD5: mechanism = SEC_OID_MD5; break; @@ -251,7 +234,7 @@ static SECOidTag nss_hash_oid(const stru static CK_MECHANISM_TYPE nss_hash_mech(const struct hash_desc *hasher) { - CK_MECHANISM_TYPE mechanism; + CK_MECHANISM_TYPE mechanism=0x80000000; switch(hasher->common.algo_id) { case OAKLEY_MD5: mechanism = CKM_MD5; break; @@ -279,9 +262,66 @@ PK11SymKey *pk11_derive_wrapper_osw(PK11 return PK11_Derive(base, mechanism, ¶m, target, operation, keySize); } +PK11SymKey * PK11_Derive_osw(PK11SymKey *base, CK_MECHANISM_TYPE mechanism + , SECItem *param, CK_MECHANISM_TYPE target + , CK_ATTRIBUTE_TYPE operation, int keysize) +{ + SECOidTag oid; + PK11Context *ctx; + unsigned char dkey[HMAC_BUFSIZE]; + SECItem dkey_param; + SECStatus status; + unsigned int len=0; + CK_EXTRACT_PARAMS bs; + chunk_t dkey_chunk; + + if( ((mechanism == CKM_SHA256_KEY_DERIVATION) || + (mechanism == CKM_SHA384_KEY_DERIVATION)|| + (mechanism == CKM_SHA512_KEY_DERIVATION)) && (param == NULL) && (keysize ==0)) { + + switch (mechanism) { + case CKM_SHA256_KEY_DERIVATION: oid = SEC_OID_SHA256; break; + case CKM_SHA384_KEY_DERIVATION: oid = SEC_OID_SHA384; break; + case CKM_SHA512_KEY_DERIVATION: oid = SEC_OID_SHA512; break; + default: DBG(DBG_CRYPT, DBG_log("PK11_Derive_osw: Invalid NSS mechanism ")); break; /*should not reach here*/ + } + + ctx = PK11_CreateDigestContext(oid); + PR_ASSERT(ctx!=NULL); + status=PK11_DigestBegin(ctx); + PR_ASSERT(status == SECSuccess); + status=PK11_DigestKey(ctx, base); + PR_ASSERT(status == SECSuccess); + PK11_DigestFinal(ctx, dkey, &len, sizeof dkey); + PK11_DestroyContext(ctx, PR_TRUE); + + dkey_chunk.ptr = dkey; + dkey_chunk.len = len; + + PK11SymKey *tkey1 = pk11_derive_wrapper_osw(base, CKM_CONCATENATE_DATA_AND_BASE, dkey_chunk, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); + PR_ASSERT(tkey1!=NULL); + + bs=0; + dkey_param.data = (unsigned char*)&bs; + dkey_param.len = sizeof (bs); + PK11SymKey *tkey2 = PK11_Derive(tkey1, CKM_EXTRACT_KEY_FROM_KEY, &dkey_param, target, operation, len); + PR_ASSERT(tkey2!=NULL); + + PK11_FreeSymKey(tkey1); + + return tkey2; + + } + else { + return PK11_Derive(base, mechanism, param, target, operation, keysize); + } + +} + + CK_MECHANISM_TYPE nss_key_derivation_mech(const struct hash_desc *hasher) { - CK_MECHANISM_TYPE mechanism; + CK_MECHANISM_TYPE mechanism=0x80000000; switch(hasher->common.algo_id) { case OAKLEY_MD5: mechanism = CKM_MD5_KEY_DERIVATION; break; diff -urNp openswan-2.6.22-orig/programs/pluto/ike_alg_aes.c openswan-2.6.22/programs/pluto/ike_alg_aes.c --- openswan-2.6.22-orig/programs/pluto/ike_alg_aes.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/ike_alg_aes.c 2009-07-23 16:36:01.780592711 -0400 @@ -78,7 +78,7 @@ do_aes(u_int8_t *buf, size_t buf_len, u_ memcpy(buf,tmp_buf,buf_len); if(enc){ - new_iv = (char*) buf + buf_len-AES_CBC_BLOCK_SIZE; + new_iv = (u_int8_t*) buf + buf_len-AES_CBC_BLOCK_SIZE; } memcpy(iv, new_iv, AES_CBC_BLOCK_SIZE); diff -urNp openswan-2.6.22-orig/programs/pluto/ikev1.h openswan-2.6.22/programs/pluto/ikev1.h --- openswan-2.6.22-orig/programs/pluto/ikev1.h 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/ikev1.h 2009-07-23 16:36:01.780592711 -0400 @@ -68,12 +68,21 @@ extern void ikev1_delete_out(struct stat extern bool decode_peer_id(struct msg_digest *md, bool initiator, bool aggrmode); +#ifdef HAVE_LIBNSS +extern void +main_mode_hash_body(struct state *st + , bool hashi /* Initiator? */ + , const pb_stream *idpl /* ID payload, as PBS */ + , struct hmac_ctx *ctx + , hash_update_t hash_update_void); +#else extern void main_mode_hash_body(struct state *st , bool hashi /* Initiator? */ , const pb_stream *idpl /* ID payload, as PBS */ , union hash_ctx *ctx , hash_update_t hash_update_void); +#endif extern size_t RSA_sign_hash(struct connection *c diff -urNp openswan-2.6.22-orig/programs/pluto/ikev1_main.c openswan-2.6.22/programs/pluto/ikev1_main.c --- openswan-2.6.22-orig/programs/pluto/ikev1_main.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/ikev1_main.c 2009-07-23 16:36:01.782590767 -0400 @@ -286,13 +286,23 @@ main_outI1(int whack_sock * See draft-ietf-ipsec-ike-01.txt 4.1 and 6.1.1.2 */ +#ifdef HAVE_LIBNSS +void +main_mode_hash_body(struct state *st + , bool hashi /* Initiator? */ + , const pb_stream *idpl /* ID payload, as PBS */ + , struct hmac_ctx *ctx + , hash_update_t hash_update_void) +#else void main_mode_hash_body(struct state *st , bool hashi /* Initiator? */ , const pb_stream *idpl /* ID payload, as PBS */ , union hash_ctx *ctx , hash_update_t hash_update_void) +#endif { +#ifndef HAVE_LIBNSS #define HASH_UPDATE_T (union hash_ctx *, const u_char *input, unsigned int len) hash_update_t hash_update=(hash_update_t) hash_update_void; #if 0 /* if desperate to debug hashing */ @@ -303,6 +313,9 @@ main_mode_hash_body(struct state *st #endif # define hash_update_chunk(ctx, ch) hash_update((ctx), (ch).ptr, (ch).len) +#else + hash_update_void = NULL; +#endif if (hashi) { @@ -492,8 +505,10 @@ try_RSA_signature_v1(const u_char hash_v { const u_char *sig_val = sig_pbs->cur; size_t sig_len = pbs_left(sig_pbs); +#ifndef HAVE_LIBNSS u_char s[RSA_MAX_OCTETS]; /* for decrypted sig_val */ u_char *hash_in_s = &s[sig_len - hash_len]; +#endif const struct RSA_public_key *k = &kr->u.rsa; /* decrypt the signature -- reversing RSA_sign_hash */ @@ -742,18 +757,6 @@ main_inI1_outR1(struct msg_digest *md) } #endif -#ifdef HAVE_LIBNSS - if(PK11_IsFIPS()) - { -#define SEND_PLUTO_VID 0 - } - else - { -#define SEND_PLUTO_VID 1 - } - -#endif - #if SEND_PLUTO_VID || defined(openpgp_peer) numvidtosend++; #endif diff -urNp openswan-2.6.22-orig/programs/pluto/ikev2_psk.c openswan-2.6.22/programs/pluto/ikev2_psk.c --- openswan-2.6.22-orig/programs/pluto/ikev2_psk.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/ikev2_psk.c 2009-07-23 16:36:01.784590529 -0400 @@ -58,6 +58,11 @@ #include "dpd.h" #include "keys.h" +#ifdef HAVE_LIBNSS +#include +#include +#endif + static u_char psk_key_pad_str[] = "Key Pad for IKEv2"; /* 4306 2:15 */ static int psk_key_pad_str_len = 17; /* sizeof( psk_key_pad_str); -1 */ @@ -80,6 +85,14 @@ static bool ikev2_calculate_psk_sighash( return FALSE; /* failure: no PSK to use */ } +#ifdef HAVE_LIBNSS + PK11SymKey *shared; + CK_EXTRACT_PARAMS bs; + SECItem param; + + memcpy(&shared, st->st_shared.ptr, st->st_shared.len); +#endif + /* RFC 4306 2:15 AUTH = prf(prf(Shared Secret,"Key Pad for IKEv2"), ) */ @@ -87,7 +100,30 @@ static bool ikev2_calculate_psk_sighash( /* calculate inner prf */ { struct hmac_ctx id_ctx; +#ifdef HAVE_LIBNSS + chunk_t pss_chunk; + + PK11SymKey *tkey1 = pk11_derive_wrapper_osw(shared, CKM_CONCATENATE_DATA_AND_BASE, *pss, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); + PR_ASSERT(tkey1!=NULL); + + bs=0; + param.data = (unsigned char*)&bs; + param.len = sizeof (bs); + PK11SymKey *tkey2 = PK11_Derive(tkey1, CKM_EXTRACT_KEY_FROM_KEY, ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, pss->len); + PR_ASSERT(tkey2!=NULL); + + pss_chunk.len = sizeof(PK11SymKey *); + pss_chunk.ptr = alloc_bytes(pss_chunk.len, "ikev2_calculate_psk_sighash: calculated pss_chunk"); + memcpy(pss_chunk.ptr, &tkey2, pss_chunk.len); + + hmac_init_chunk(&id_ctx, st->st_oakley.prf_hasher, pss_chunk); + + PK11_FreeSymKey(tkey1); + PK11_FreeSymKey(tkey2); + pfree(pss_chunk.ptr); +#else hmac_init_chunk(&id_ctx, st->st_oakley.prf_hasher, *pss); +#endif hmac_update(&id_ctx, psk_key_pad_str, psk_key_pad_str_len); hmac_final(prf_psk, &id_ctx); } @@ -117,8 +153,33 @@ static bool ikev2_calculate_psk_sighash( /* calculate outer prf */ { struct hmac_ctx id_ctx; +#ifdef HAVE_LIBNSS + chunk_t pp_chunk, pps_chunk; - hmac_init(&id_ctx, st->st_oakley.prf_hasher, prf_psk, hash_len); + pp_chunk.ptr = prf_psk; + pp_chunk.len = hash_len; + + PK11SymKey *tkey1 = pk11_derive_wrapper_osw(shared, CKM_CONCATENATE_DATA_AND_BASE, pp_chunk, CKM_EXTRACT_KEY_FROM_KEY, CKA_DERIVE, 0); + PR_ASSERT(tkey1!=NULL); + + bs=0; + param.data = (unsigned char*)&bs; + param.len = sizeof (bs); + PK11SymKey *tkey2 = PK11_Derive(tkey1, CKM_EXTRACT_KEY_FROM_KEY, ¶m, CKM_CONCATENATE_BASE_AND_DATA, CKA_DERIVE, hash_len); + PR_ASSERT(tkey2!=NULL); + + pps_chunk.len = sizeof(PK11SymKey *); + pps_chunk.ptr = alloc_bytes(pps_chunk.len, "ikev2_calculate_psk_sighash: calculated pss_chunk"); + memcpy(pps_chunk.ptr, &tkey2, pps_chunk.len); + + hmac_init_chunk(&id_ctx, st->st_oakley.prf_hasher, pps_chunk); + + PK11_FreeSymKey(tkey1); + PK11_FreeSymKey(tkey2); + pfree(pps_chunk.ptr); +#else + hmac_init(&id_ctx, st->st_oakley.prf_hasher, prf_psk, hash_len); +#endif /* * For the responder, the octets to diff -urNp openswan-2.6.22-orig/programs/pluto/ikev2_rsa.c openswan-2.6.22/programs/pluto/ikev2_rsa.c --- openswan-2.6.22-orig/programs/pluto/ikev2_rsa.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/ikev2_rsa.c 2009-07-23 16:36:01.784590529 -0400 @@ -152,10 +152,12 @@ try_RSA_signature_v2(const u_char hash_v { const u_char *sig_val = sig_pbs->cur; size_t sig_len = pbs_left(sig_pbs); +#ifndef HAVE_LIBNSS u_char s[RSA_MAX_OCTETS]; /* for decrypted sig_val */ u_char *sig; - const struct RSA_public_key *k = &kr->u.rsa; unsigned int padlen; +#endif + const struct RSA_public_key *k = &kr->u.rsa; if (k == NULL) return "1""no key available"; /* failure: no key to use */ diff -urNp openswan-2.6.22-orig/programs/pluto/keys.c openswan-2.6.22/programs/pluto/keys.c --- openswan-2.6.22-orig/programs/pluto/keys.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/keys.c 2009-07-23 16:36:01.785593513 -0400 @@ -213,7 +213,7 @@ sign_hash(const struct RSA_private_key * } #ifdef HAVE_LIBNSS -void sign_hash_nss(const struct RSA_private_key *k +int sign_hash_nss(const struct RSA_private_key *k , const u_char *hash_val, size_t hash_len , u_char *sig_val, size_t sig_len) { @@ -229,14 +229,19 @@ void sign_hash_nss(const struct RSA_priv ckaId.len=k->ckaid_len; ckaId.data=k->ckaid; - DBG(DBG_CRYPT, DBG_dump("RSA_sign_hash NSS CKA_ID:\n", ckaId.data, ckaId.len)); - slot = PK11_GetInternalKeySlot(); if (slot == NULL) { loglog(RC_LOG_SERIOUS, "RSA_sign_hash: Unable to find (slot security) device (err %d)\n", PR_GetError()); return 0; } + if( PK11_Authenticate(slot, PR_FALSE,osw_return_nss_password_file_info()) == SECSuccess ) { + DBG(DBG_CRYPT, DBG_log("NSS: Authentication to NSS successful\n")); + } + else { + DBG(DBG_CRYPT, DBG_log("NSS: Authentication to NSS either failed or not required,if NSS DB without password\n")); + } + privateKey = PK11_FindKeyByKeyID(slot, &ckaId, osw_return_nss_password_file_info()); if(privateKey==NULL) { if(k->pub.nssCert != NULL) { @@ -269,10 +274,8 @@ void sign_hash_nss(const struct RSA_priv return 0; } - DBG(DBG_CRYPT, DBG_log("RSA_sign_hash: input_sig_len=%d, output_signature-len=%d", sig_len, signature.len)); - DBG(DBG_CRYPT, DBG_dump("RSA_sign_hash signature:\n", signature.data, signature.len)); DBG(DBG_CRYPT, DBG_log("RSA_sign_hash: Ended using NSS")); - /*return signature.len;*/ + return signature.len; } err_t RSA_signature_verify_nss(const struct RSA_public_key *k @@ -334,20 +337,31 @@ err_t RSA_signature_verify_nss(const str signature.data = sig_val; signature.len = (unsigned int)sig_len; + data.len = (unsigned int)sig_len; + data.data = alloc_bytes(data.len, "NSS decrypted signature"); data.type = siBuffer; - data.data = hash_val; - data.len = (unsigned int)hash_len; - - /*Verifying RSA signature*/ - retVal = PK11_Verify(publicKey,&signature,&data,osw_return_nss_password_file_info()); + if(PK11_VerifyRecover(publicKey, &signature, &data, osw_return_nss_password_file_info()) == SECSuccess ) { + DBG(DBG_CRYPT,DBG_dump("NSS RSA verify: decrypted sig: ", data.data, data.len)); + } + else { + DBG(DBG_CRYPT,DBG_log("NSS RSA verify: decrypting signature is failed")); + return "13" "NSS error: Not able to decrypt"; + } + + if(memcmp(data.data+data.len-hash_len, hash_val, hash_len)!=0) { + pfree(data.data); + loglog(RC_LOG_SERIOUS, "RSA Signature NOT verified"); + return "14" "NSS error: Not able to verify"; + } + + DBG(DBG_CRYPT,DBG_dump("NSS RSA verify: hash value: ", hash_val, hash_len)); + + pfree(data.data); pfree(n.ptr); pfree(e.ptr); SECKEY_DestroyPublicKey (publicKey); - if(retVal != SECSuccess) { - loglog(RC_LOG_SERIOUS, "RSA Signature NOT verified"); - } DBG(DBG_CRYPT, DBG_log("RSA Signature verified")); return NULL; diff -urNp openswan-2.6.22-orig/programs/pluto/keys.h openswan-2.6.22/programs/pluto/keys.h --- openswan-2.6.22-orig/programs/pluto/keys.h 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/keys.h 2009-07-23 16:36:01.786598958 -0400 @@ -31,7 +31,7 @@ extern void sign_hash(const struct RSA_p , size_t hash_len, u_char *sig_val, size_t sig_len); #ifdef HAVE_LIBNSS -extern void sign_hash_nss(const struct RSA_private_key *k, const u_char *hash_val +extern int sign_hash_nss(const struct RSA_private_key *k, const u_char *hash_val , size_t hash_len, u_char *sig_val, size_t sig_len); extern err_t RSA_signature_verify_nss(const struct RSA_public_key *k , const u_char *hash_val, size_t hash_len diff -urNp openswan-2.6.22-orig/programs/pluto/pluto_crypt.c openswan-2.6.22/programs/pluto/pluto_crypt.c --- openswan-2.6.22-orig/programs/pluto/pluto_crypt.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/pluto_crypt.c 2009-07-23 16:36:01.787591260 -0400 @@ -71,7 +71,8 @@ TAILQ_HEAD(req_queue, pluto_crypto_req_c struct pluto_crypto_worker { int pcw_helpernum; #ifdef HAVE_LIBNSS - pthread_t pcw_pid; + //pthread_t pcw_pid; + long int pcw_pid; #else pid_t pcw_pid; #endif @@ -168,6 +169,7 @@ void pluto_do_crypto_op(struct pluto_cry } } +#ifndef HAVE_LIBNSS static void catchhup(int signo UNUSED) { /* socket closed die */ @@ -178,6 +180,7 @@ static void catchusr1(int signo UNUSED) { return; } +#endif static void helper_passert_fail(const char *pred_str @@ -885,7 +888,7 @@ static void init_crypto_helper(struct pl return; } else{ - openswan_log("started helper (thread) pid=%d (fd:%d)", w->pcw_pid, w->pcw_pipe); + openswan_log("started helper (thread) pid=%ld (fd:%d)", w->pcw_pid, w->pcw_pipe); } #else w->pcw_pid = fork(); @@ -934,22 +937,6 @@ static void init_crypto_helper(struct pl pluto_init_log(); -/* XXX Paul: this is never reaches anymore? */ -#ifdef HAVE_LIBNSS - NSS_Shutdown(); - const struct osw_conf_options *oco; - char buf[100]; - oco=osw_init_options(); - snprintf(buf, sizeof(buf), "sql:%s",oco->confddir); - loglog(RC_LOG_SERIOUS,"nss directory crypt helper: %s",buf); - SECStatus nss_init_status=NSS_InitReadWrite(buf); - if(nss_init_status != SECSuccess) { - loglog(RC_LOG_SERIOUS, "NSS initialization failed in crypto helper(err %d)\n", PR_GetError()); - } else{ - loglog(RC_LOG_SERIOUS, "NSS initialized in crypto helper\n"); - PK11_SetPasswordFunc(getNSSPassword); - } -#endif init_rnd_pool(); load_oswcrypto(); @@ -959,10 +946,6 @@ static void init_crypto_helper(struct pl pluto_crypto_helper(fds[1], n); -#if defined(HAVE_LIBNSS) - NSS_Shutdown(); - loglog(RC_LOG_SERIOUS, "init_crypto_helper: helper (%d) is exiting\n",n); -#endif exit(0); /* NOTREACHED */ } diff -urNp openswan-2.6.22-orig/programs/pluto/plutomain.c openswan-2.6.22/programs/pluto/plutomain.c --- openswan-2.6.22-orig/programs/pluto/plutomain.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/plutomain.c 2009-07-23 17:17:50.010576404 -0400 @@ -99,7 +99,9 @@ # include # include # ifdef FIPS_CHECK -# include +# include +#define IPSECLIBDIR "/usr/libexec/ipsec" +#define IPSECSBINDIR "/usr/sbin" # endif #endif @@ -771,12 +773,57 @@ main(int argc, char **argv) } else { loglog(RC_LOG_SERIOUS, "NSS Initialized"); PK11_SetPasswordFunc(getNSSPassword); + #ifdef FIPS_CHECK - if (Pluto_IsFIPS() && !FIPSCHECK_verify(NULL, NULL)) { - loglog(RC_LOG_SERIOUS, "FIPS integrity verification test failed"); - exit_pluto(10); - } + const char *package_files[]= { IPSECLIBDIR"/setup", + IPSECLIBDIR"/addconn", + IPSECLIBDIR"/auto", + IPSECLIBDIR"/barf", + IPSECLIBDIR"/_copyright", + IPSECLIBDIR"/eroute", + IPSECLIBDIR"/ikeping", + IPSECLIBDIR"/_include", + IPSECLIBDIR"/_keycensor", + IPSECLIBDIR"/klipsdebug", + IPSECLIBDIR"/look", + IPSECLIBDIR"/newhostkey", + IPSECLIBDIR"/pf_key", + IPSECLIBDIR"/_pluto_adns", + IPSECLIBDIR"/_plutoload", + IPSECLIBDIR"/_plutorun", + IPSECLIBDIR"/ranbits", + IPSECLIBDIR"/_realsetup", + IPSECLIBDIR"/rsasigkey", + IPSECLIBDIR"/pluto", + IPSECLIBDIR"/_secretcensor", + IPSECLIBDIR"/secrets", + IPSECLIBDIR"/showdefaults", + IPSECLIBDIR"/showhostkey", + IPSECLIBDIR"/showpolicy", + IPSECLIBDIR"/spi", + IPSECLIBDIR"/spigrp", + IPSECLIBDIR"/_startklips", + IPSECLIBDIR"/_startklips.old", + IPSECLIBDIR"/_startnetkey", + IPSECLIBDIR"/tncfg", + IPSECLIBDIR"/_updown", + IPSECLIBDIR"/_updown.klips", + IPSECLIBDIR"/_updown.klips.old", + IPSECLIBDIR"/_updown.mast", + IPSECLIBDIR"/_updown.mast.old", + IPSECLIBDIR"/_updown.netkey", + IPSECLIBDIR"/verify", + IPSECLIBDIR"/whack", + IPSECSBINDIR"/ipsec", + NULL + }; + + if (Pluto_IsFIPS() && !FIPSCHECK_verify_files(package_files)) { + loglog(RC_LOG_SERIOUS, "FIPS integrity verification test failed"); + exit_pluto(10); + } #endif + } #endif @@ -786,7 +833,7 @@ main(int argc, char **argv) { #ifdef PLUTO_SENDS_VENDORID # ifdef HAVE_LIBNSS - if(PK11_IsFIPS()) { + if(Pluto_IsFIPS()) { openswan_log("Starting Pluto (Openswan Version %s%s) pid:%u" , ipsec_version_code() , compile_time_interop_options, getpid()); } else { diff -urNp openswan-2.6.22-orig/programs/pluto/state.c openswan-2.6.22/programs/pluto/state.c --- openswan-2.6.22-orig/programs/pluto/state.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/pluto/state.c 2009-07-23 16:36:01.832590240 -0400 @@ -60,6 +60,12 @@ #include "crypto.h" /* requires sha1.h and md5.h */ #include "spdb.h" +#ifdef HAVE_LIBNSS +# include +# include +# include +#endif + /* * Global variables: had to go somewhere, might as well be this file. */ diff -urNp openswan-2.6.22-orig/programs/rsasigkey/rsasigkey.c openswan-2.6.22/programs/rsasigkey/rsasigkey.c --- openswan-2.6.22-orig/programs/rsasigkey/rsasigkey.c 2009-06-22 22:53:08.000000000 -0400 +++ openswan-2.6.22/programs/rsasigkey/rsasigkey.c 2009-07-23 16:36:01.836589243 -0400 @@ -588,10 +588,10 @@ rsasigkey(int nbits, char *configdir, ch PK11_SetPasswordFunc(GetModulePassword); nss_initialized = PR_TRUE; - /* Good for now but someone may want to use a hardware token - *slot = PK11_GetInternalKeySlot(); - * In which case this may be better */ - slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); + /* Good for now but someone may want to use a hardware token*/ + slot = PK11_GetInternalKeySlot(); + /* In which case this may be better */ + //slot = PK11_GetBestSlot(CKM_RSA_PKCS_KEY_PAIR_GEN, password ? &pwdata : NULL); /*or the user may specify the name of a token.*/ /*if (PK11_IsFIPS() || !PK11_IsInternal(slot)) { openswan-2.6.22-selinux.patch: verify.in | 12 ------------ 1 file changed, 12 deletions(-) --- NEW FILE openswan-2.6.22-selinux.patch --- --- openswan-2.6.22-orig/programs/verify/verify.in 2009-06-23 04:53:08.000000000 +0200 +++ openswan-2.6.22/programs/verify/verify.in 2009-07-09 23:50:15.000000000 +0200 @@ -262,18 +262,6 @@ sub installstartcheck { } else { warnchk "","UNKNOWN"; } } - if ( -e "/selinux/enforce") { - printfun "Testing against enforced SElinux mode"; - open("cat", "/selinux/enforce"); - if( == "1") - { - errchk ""; - print "\n SElinux is running in 'enforced' mode. Since no working SElinux\n policies exist for Openswan, SElinux should be disabled.\n"; - print "\n echo \"0\" > /selinux/enforce (or edit /etc/sysconfig/selinux)\n\n"; - } - else { errchk "1"; } - } - if ( -c "/dev/hw_random" || -c "/dev/hwrng" ) { printfun "Hardware RNG detected, testing if used properly"; run "pidof rngd"; Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/openswan/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 30 Mar 2009 15:32:53 -0000 1.26 +++ .cvsignore 23 Jul 2009 22:01:57 -0000 1.27 @@ -10,3 +10,4 @@ openswan-2.6.16.tar.gz openswan-2.6.18.tar.gz openswan-2.6.19.tar.gz openswan-2.6.21.tar.gz +openswan-2.6.22.tar.gz Index: openswan.spec =================================================================== RCS file: /cvs/pkgs/rpms/openswan/devel/openswan.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- openswan.spec 6 Jul 2009 14:38:48 -0000 1.79 +++ openswan.spec 23 Jul 2009 22:01:58 -0000 1.80 @@ -1,10 +1,13 @@ +%define USE_LIBNSS 1 %define USE_FIPSCHECK 1 +%define nss_version 3.12.3-2 +%define fipscheck_version 1.2.0-1 Summary: Openswan IPSEC implementation Name: openswan -Version: 2.6.21 +Version: 2.6.22 -Release: 5%{?dist} +Release: 1%{?dist} License: GPLv2+ Url: http://www.openswan.org/ Source: openswan-%{version}.tar.gz @@ -13,16 +16,17 @@ Source2: ipsec.conf Patch1: openswan-2.6.16-examples.patch Patch2: openswan-2.6-relpath.patch -Patch3: openswan-2.6-selinux.patch +Patch3: openswan-2.6.22-selinux.patch Patch4: openswan-2.6.16-initscript-correction.patch -Patch5: openswan-2.6.21-gcc44.patch -Patch6: openswan-2.6.21-nss.patch -Patch7: openswan-2.6.21-nss-fedora-diff-modified.patch -Patch8: openswan-2.6.21-CVE-2009-2185.patch +Patch5: openswan-2.6.22-gcc44.patch +Patch6: openswan-2.6.22-nss.patch Group: System Environment/Daemons BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gmp-devel bison flex man xmlto bind-devel nss-devel +BuildRequires: gmp-devel bison flex man xmlto bind-devel +%if %{USE_LIBNSS} +BuildRequires: nss-devel >= %{nss_version} +%endif Requires(post): coreutils bash Requires(preun): initscripts chkconfig Requires(post): /sbin/chkconfig @@ -30,7 +34,7 @@ Requires(preun): /sbin/chkconfig Requires(preun): /sbin/service %if %{USE_FIPSCHECK} -BuildRequires: fipscheck-devel +BuildRequires: fipscheck-devel >= %{fipscheck_version} %endif Provides: ipsec-userland = %{version}-%{release} @@ -72,8 +76,6 @@ find doc -name .gitignore -print0 | xarg %patch4 -p1 %patch5 -p1 %patch6 -p1 -%patch7 -p1 -%patch8 -p1 %build @@ -86,6 +88,12 @@ find doc -name .gitignore -print0 | xarg IPSEC_LIBDIR="${IPSEC_LIBDIR-/usr/libexec/ipsec}" \ MANTREE=%{_mandir} \ INC_RCDEFAULT=%{_initrddir} \ +%if %{USE_LIBNSS} + USE_LIBNSS=true \ +%endif +%if %{USE_FIPSCHECK} + USE_FIPSCHECK=true \ +%endif programs FS=$(pwd) @@ -95,8 +103,46 @@ FS=$(pwd) %{?__debug_package:%{__debug_install_post}} \ %{__arch_install_post} \ %{__os_install_post} \ - fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/rsasigkey \ - fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/pluto \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/setup \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/addconn \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/auto \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/barf \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_copyright \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/eroute \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/ikeping \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_include \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_keycensor \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/klipsdebug \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/look \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/newhostkey \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/pf_key \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_pluto_adns \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_plutoload \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_plutorun \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/ranbits \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_realsetup \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/rsasigkey \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/pluto \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_secretcensor \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/secrets \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/showdefaults \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/showhostkey \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/showpolicy \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/spi \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/spigrp \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_startklips \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_startklips.old \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_startnetkey \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/tncfg \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown.klips \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown.klips.old \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown.mast \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown.mast.old \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/_updown.netkey \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/verify \ + fipshmac $RPM_BUILD_ROOT%{_libexecdir}/ipsec/whack \ + fipshmac $RPM_BUILD_ROOT%{_sbindir}/ipsec \ %{nil} %endif @@ -154,6 +200,9 @@ rm -rf %{buildroot} %attr(0700,root,root) %dir %{_sysconfdir}/ipsec.d %{_initrddir}/ipsec %{_sbindir}/ipsec +%if %{USE_FIPSCHECK} +%{_sbindir}/.ipsec.hmac +%endif %{_libexecdir}/ipsec %{_mandir}/*/*.gz %{_localstatedir}/run/pluto @@ -173,6 +222,14 @@ fi chkconfig --add ipsec || : %changelog +* Thu Jul 23 2009 Avesh Agarwal - 2.6.22-1 +- New upstream release +- Added support for using PSK with NSS +- Fixed several warnings and undid unnecessary debug messages +- Updated README.nss with an example configuration +- Moved README.nss to openswan/doc/ +- Improved FIPS integrity check functionality + * Mon Jul 06 2009 Avesh Agarwal - 2.6.21-5 - Added support for using PSK with NSS - Fixed several warnings and undid unnecessary comments Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openswan/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 30 Mar 2009 15:32:53 -0000 1.25 +++ sources 23 Jul 2009 22:01:58 -0000 1.26 @@ -1 +1 @@ -ba9da6c90e0f5fe856767d7510ce371f openswan-2.6.21.tar.gz +9a30009bade8a1b09fba27680c87cf72 openswan-2.6.22.tar.gz --- openswan-2.6-selinux.patch DELETED --- --- openswan-2.6.21-CVE-2009-2185.patch DELETED --- --- openswan-2.6.21-gcc44.patch DELETED --- --- openswan-2.6.21-nss-fedora-diff-modified.patch DELETED --- --- openswan-2.6.21-nss.patch DELETED --- From ricky at fedoraproject.org Thu Jul 23 22:15:33 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:15:33 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.10,1.11 Message-ID: <20090723221533.09F1A11C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15245 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- test 23 Jul 2009 21:47:12 -0000 1.10 +++ test 23 Jul 2009 22:15:32 -0000 1.11 @@ -1,3 +1,4 @@ x x x +x From ricky at fedoraproject.org Thu Jul 23 22:15:38 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:15:38 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.11,1.12 Message-ID: <20090723221538.85ED511C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15293 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- test 23 Jul 2009 22:15:32 -0000 1.11 +++ test 23 Jul 2009 22:15:38 -0000 1.12 @@ -2,3 +2,4 @@ x x x x +x From ricky at fedoraproject.org Thu Jul 23 22:15:43 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:15:43 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.12,1.13 Message-ID: <20090723221543.7482611C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15332 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- test 23 Jul 2009 22:15:38 -0000 1.12 +++ test 23 Jul 2009 22:15:43 -0000 1.13 @@ -3,3 +3,4 @@ x x x x +x From ricky at fedoraproject.org Thu Jul 23 22:15:56 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:15:56 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.13,1.14 Message-ID: <20090723221556.C596C11C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15398 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- test 23 Jul 2009 22:15:43 -0000 1.13 +++ test 23 Jul 2009 22:15:56 -0000 1.14 @@ -4,3 +4,4 @@ x x x x +x From ricky at fedoraproject.org Thu Jul 23 22:16:03 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:16:03 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.14,1.15 Message-ID: <20090723221603.4D5A311C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15440 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- test 23 Jul 2009 22:15:56 -0000 1.14 +++ test 23 Jul 2009 22:16:02 -0000 1.15 @@ -5,3 +5,4 @@ x x x x +x From ricky at fedoraproject.org Thu Jul 23 22:16:10 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:16:10 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.15,1.16 Message-ID: <20090723221610.96B7A11C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15494 Modified Files: test Log Message: test commit Index: test =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/test,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- test 23 Jul 2009 22:16:02 -0000 1.15 +++ test 23 Jul 2009 22:16:10 -0000 1.16 @@ -6,3 +6,4 @@ x x x x +x From ricky at fedoraproject.org Thu Jul 23 22:16:25 2009 From: ricky at fedoraproject.org (=?utf-8?b?Umlja3kgWmhvdSAo5ZGo5a625p2wKQ==?=) Date: Thu, 23 Jul 2009 22:16:25 +0000 (UTC) Subject: rpms/python-fedora/devel test,1.16,NONE Message-ID: <20090723221625.D5E7511C049D@cvs1.fedora.phx.redhat.com> Author: ricky Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15661 Removed Files: test Log Message: remove test file, sorry for the noise --- test DELETED --- From jkeating at fedoraproject.org Thu Jul 23 22:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 23 Jul 2009 22:16:42 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-11 import.log, 1.2, 1.3 trac-mercurial-plugin.spec, 1.8, 1.9 trac-mercurial-plugin-hg-1.3.patch, 1.1, NONE Message-ID: <20090723221642.8648C11C049D@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15702/F-11 Modified Files: import.log trac-mercurial-plugin.spec Removed Files: trac-mercurial-plugin-hg-1.3.patch Log Message: Go with upstream commit rather than patch in a ticket. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 20 Jul 2009 17:47:27 -0000 1.2 +++ import.log 23 Jul 2009 22:16:41 -0000 1.3 @@ -1,2 +1,3 @@ trac-mercurial-plugin-0_11_0_7-4_20090715svn8072_fc12:F-11:trac-mercurial-plugin-0.11.0.7-4.20090715svn8072.fc12.src.rpm:1247689927 trac-mercurial-plugin-0_11_0_7-5_20090715svn8072_fc12:F-11:trac-mercurial-plugin-0.11.0.7-5.20090715svn8072.fc12.src.rpm:1248111961 +trac-mercurial-plugin-0_11_0_7-6_20090715svn8365_fc12:F-11:trac-mercurial-plugin-0.11.0.7-6.20090715svn8365.fc12.src.rpm:1248387298 Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-11/trac-mercurial-plugin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- trac-mercurial-plugin.spec 20 Jul 2009 17:47:27 -0000 1.8 +++ trac-mercurial-plugin.spec 23 Jul 2009 22:16:42 -0000 1.9 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 8072 +%define svnrev 8365 Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 5.20090715svn%{svnrev}%{?dist} +Release: 6.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -17,8 +17,6 @@ URL: http://trac.edgewall.org # echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz -# This patch is from http://trac.edgewall.org/attachment/ticket/8460/patch_8352_for_hg_1.3 -Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -31,7 +29,6 @@ This plugin for Trac provides support fo %prep %setup -n TracMercurial-%{version} -q -%patch0 -p0 %build @@ -59,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Jesse Keating - 0.11.0.7-6.20090715svn8365 +- Pull new upstream snapshot with the patch integrated. + * Mon Jul 20 2009 Jesse Keating - 0.11.0.7-5.20090715svn8072 - Patch for hg 1.3 --- trac-mercurial-plugin-hg-1.3.patch DELETED --- From nushio at fedoraproject.org Thu Jul 23 22:24:40 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Thu, 23 Jul 2009 22:24:40 +0000 (UTC) Subject: rpms/beagle/F-11 beagle-0.3.8-epiphany.patch, 1.3, 1.4 beagle.spec, 1.169, 1.170 Message-ID: <20090723222440.A1E3311C049D@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/beagle/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18305 Modified Files: beagle-0.3.8-epiphany.patch beagle.spec Log Message: I'll update the package as soon as the mono packages are built on ppc64. beagle-0.3.8-epiphany.patch: configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: beagle-0.3.8-epiphany.patch =================================================================== RCS file: /cvs/pkgs/rpms/beagle/F-11/beagle-0.3.8-epiphany.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- beagle-0.3.8-epiphany.patch 28 Jan 2009 12:03:14 -0000 1.3 +++ beagle-0.3.8-epiphany.patch 23 Jul 2009 22:24:37 -0000 1.4 @@ -6,7 +6,7 @@ diff -upNr beagle-0.3.9.orign/configure echo "${ECHO_T}" >&6; } - VALID_EPIPHANY_VERSIONS="2.22 2.20 2.19 2.18 2.17 2.16 2.15 2.14 1.8 1.6" -+ VALID_EPIPHANY_VERSIONS="2.26 2.25 2.24 2.22 2.20 2.19 2.18 2.17 2.16 2.15 2.14 1.8 1.6" ++ VALID_EPIPHANY_VERSIONS="2.28 2.27 2.26 2.25 2.24 2.22 2.20 2.19 2.18 2.17 2.16 2.15 2.14 1.8 1.6" for v in $VALID_EPIPHANY_VERSIONS; do { echo "$as_me:$LINENO: checking for Epiphany $v" >&5 Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/F-11/beagle.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- beagle.spec 3 Jul 2009 16:46:35 -0000 1.169 +++ beagle.spec 23 Jul 2009 22:24:38 -0000 1.170 @@ -1,6 +1,6 @@ Name: beagle Version: 0.3.9 -Release: 9%{?dist} +Release: 11%{?dist} Summary: The Beagle Search Infrastructure Group: User Interface/Desktops # see COPYING for details @@ -69,7 +69,7 @@ Patch10: beagle-0.3.9-libgnome-desktop-s Patch11: beagle-0.3.9-openfix.patch # Mono is not available on these arches -ExcludeArch: s390 s390x sparc64 +ExcludeArch: s390 s390x sparc64 ppc64 BuildRequires: xulrunner-devel @@ -354,11 +354,17 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog -* Fri Jul 03 2009 Adel Gadllah - 0.3.9-9 -- Backport upstream fixes to finally fix (RH #477639) +* Thu Jul 23 2009 Juan Rodiguez - 0.3.9-11 +- Remove ppc64 support while mono remains broken on it. + +* Mon Jul 06 2009 Adel Gadllah - 0.3.9-10 +- Add support for epiphany 2.27/2.28 -* Fri May 29 2009 Xavier Lamien - 0.3.9-8 -- Build arch ppc64. +* Mon Jul 06 2009 Adel Gadllah - 0.3.9-9 +- Fix build + +* Fri Jul 03 2009 Adel Gadllah - 0.3.9-8 +- Backport upstream fixes to finally fix (RH #477639) * Fri May 22 2009 Adel Gadllah - 0.3.9-7 - Fix firefox extension (RH #477639) @@ -803,4 +809,3 @@ rm -rf $RPM_BUILD_ROOT * Fri Nov 18 2005 Alexander Larsson - 0.1.2-1 - Initial version - From rjones at fedoraproject.org Thu Jul 23 22:26:21 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 22:26:21 +0000 (UTC) Subject: rpms/libguestfs/devel libguestfs.spec,1.80,1.81 Message-ID: <20090723222621.3400D11C049D@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19585 Modified Files: libguestfs.spec Log Message: RHBZ#503236 still prevents us from testing on i386. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- libguestfs.spec 23 Jul 2009 18:00:26 -0000 1.80 +++ libguestfs.spec 23 Jul 2009 22:26:20 -0000 1.81 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.64 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -333,11 +333,11 @@ export LIBGUESTFS_DEBUG=1 # 505109 ppc, ppc64 "Boot failure! No secondary bootloader specified" # 502058 i386, x86-64 F-11 need to boot with noapic (WORKAROUND ENABLED) # 502074 i386 F-11 commands segfault randomly -# 503236 i386 F-12? cryptomgr_test at doublefault_fn +# 503236 i386 F-12 cryptomgr_test at doublefault_fn # 507066 all F-12 sequence of chroot calls (FIXED) # 513249 all F-12 guestfwd broken in qemu (FIXED) -%ifarch %{ix86} +%ifarch x86_64 make check %endif @@ -533,8 +533,9 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 +* Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-3 - RHBZ#513249 bug in qemu is now fixed, so try to rebuild and run tests. +- However RHBZ#503236 still prevents us from testing on i386. * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-1 - New upstream release 1.0.64. From rjones at fedoraproject.org Thu Jul 23 22:26:22 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Thu, 23 Jul 2009 22:26:22 +0000 (UTC) Subject: rpms/libguestfs/F-11 libguestfs.spec,1.48,1.49 Message-ID: <20090723222622.7F8B211C049D@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19610 Modified Files: libguestfs.spec Log Message: Update comment. Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/F-11/libguestfs.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- libguestfs.spec 23 Jul 2009 10:58:55 -0000 1.48 +++ libguestfs.spec 23 Jul 2009 22:26:22 -0000 1.49 @@ -329,7 +329,7 @@ export LIBGUESTFS_DEBUG=1 # 505109 ppc, ppc64 "Boot failure! No secondary bootloader specified" # 502058 i386, x86-64 F-11 need to boot with noapic (WORKAROUND ENABLED) # 502074 i386 F-11 commands segfault randomly -# 503236 i386 F-12? cryptomgr_test at doublefault_fn +# 503236 i386 F-12 cryptomgr_test at doublefault_fn # 507066 all F-12 sequence of chroot calls (FIXED) # 513249 all F-12 guestfwd broken in qemu From hadess at fedoraproject.org Thu Jul 23 22:29:27 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 23 Jul 2009 22:29:27 +0000 (UTC) Subject: rpms/totem/devel .cvsignore, 1.75, 1.76 sources, 1.75, 1.76 totem.spec, 1.244, 1.245 Message-ID: <20090723222927.B001B11C049D@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20526 Modified Files: .cvsignore sources totem.spec Log Message: * Thu Jul 23 2009 Bastien Nocera 2.27.2-1 - Update to 2.27.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/.cvsignore,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- .cvsignore 6 May 2009 17:54:14 -0000 1.75 +++ .cvsignore 23 Jul 2009 22:29:27 -0000 1.76 @@ -1 +1 @@ -totem-2.27.1.tar.bz2 +totem-2.27.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/sources,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- sources 6 May 2009 17:54:14 -0000 1.75 +++ sources 23 Jul 2009 22:29:27 -0000 1.76 @@ -1 +1 @@ -586d08291bdd5e0673baeae0f93ab790 totem-2.27.1.tar.bz2 +184b4e80f4535cc10b425478ecff42fc totem-2.27.2.tar.bz2 Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/totem.spec,v retrieving revision 1.244 retrieving revision 1.245 diff -u -p -r1.244 -r1.245 --- totem.spec 21 Jul 2009 15:02:12 -0000 1.244 +++ totem.spec 23 Jul 2009 22:29:27 -0000 1.245 @@ -5,8 +5,8 @@ Summary: Movie player for GNOME Name: totem -Version: 2.27.1 -Release: 3%{?dist} +Version: 2.27.2 +Release: 1%{?dist} License: GPLv2+ with exceptions Group: Applications/Multimedia URL: http://projects.gnome.org/totem/ @@ -375,6 +375,9 @@ fi %{_libdir}/totem/plugins/publish %changelog +* Thu Jul 23 2009 Bastien Nocera 2.27.2-1 +- Update to 2.27.2 + * Tue Jul 21 2009 Bastien Nocera 2.27.1-3 - Rebuild for new libgdata From jkeating at fedoraproject.org Thu Jul 23 22:35:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 23 Jul 2009 22:35:14 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/F-10 sources, 1.3, 1.4 trac-mercurial-plugin.spec, 1.5, 1.6 trac-mercurial-plugin-hg-1.3.patch, 1.1, NONE Message-ID: <20090723223514.4965411C049D@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22313 Modified Files: sources trac-mercurial-plugin.spec Removed Files: trac-mercurial-plugin-hg-1.3.patch Log Message: * Thu Jul 23 2009 Jesse Keating - 0.10.0.3-3.20090723svn8367 - Build from upstream source instead of a patch - Update steps for making the tarball Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Jul 2009 21:00:03 -0000 1.3 +++ sources 23 Jul 2009 22:35:13 -0000 1.4 @@ -1 +1 @@ -2da6708ecb4868208489b1f25c9cb89c TracMercurial-0.10.0.3.tar.gz +b4fda282919a888185dbb5a3d0827122 TracMercurial-0.10.0.3.tar.gz Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/F-10/trac-mercurial-plugin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- trac-mercurial-plugin.spec 20 Jul 2009 21:24:42 -0000 1.5 +++ trac-mercurial-plugin.spec 23 Jul 2009 22:35:14 -0000 1.6 @@ -1,11 +1,11 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 7951 +%define svnrev 8367 Name: trac-mercurial-plugin Version: 0.10.0.3 -Release: 2.20090715svn%{svnrev}%{?dist} +Release: 3.20090723svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -14,9 +14,9 @@ License: GPL+ URL: http://trac.edgewall.org/wiki/TracMercurial # Source comes from SVN right now: svn co -r %{svnrev} http://svn.edgewall.com/repos/trac/sandbox/mercurial-plugin/; \ # cd mercurial-plugin; \ +# echo "include COPYING" > MANIFEST.in; \ # python setup.py sdist --formats gztar Source0: TracMercurial-%{version}.tar.gz -Patch0: trac-mercurial-plugin-hg-1.3.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -29,7 +29,6 @@ This plugin for Trac provides support fo %prep %setup -n TracMercurial-%{version} -q -%patch0 -p0 %build @@ -57,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Jesse Keating - 0.10.0.3-3.20090723svn8367 +- Build from upstream source instead of a patch +- Update steps for making the tarball + * Mon Jul 20 2009 Jesse Keating - 0.10.0.3-2.20090715svn7951 - Add support for hg 1.3 --- trac-mercurial-plugin-hg-1.3.patch DELETED --- From spot at fedoraproject.org Thu Jul 23 22:38:09 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 22:38:09 +0000 (UTC) Subject: rpms/AcetoneISO2/F-10 AcetoneISO2.spec,1.8,1.9 sources,1.6,1.7 Message-ID: <20090723223810.0A11E11C049D@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23236/F-10 Modified Files: AcetoneISO2.spec sources Log Message: 2.0.3.2 Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/AcetoneISO2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- AcetoneISO2.spec 1 Jul 2009 21:03:27 -0000 1.8 +++ AcetoneISO2.spec 23 Jul 2009 22:38:08 -0000 1.9 @@ -1,12 +1,12 @@ Name: AcetoneISO2 -Version: 2.0.3.1 +Version: 2.0.3.2 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip -Patch0: acetoneiso2-2.0.3.1-desktop.patch +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/Acetoneiso_%{version}.tar.gz +Patch0: acetoneiso2-2.0.3.2-desktop.patch Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils @@ -31,7 +31,7 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n AcetoneISO_%{version} +%setup -q -n Acetoneiso_%{version} %patch0 -p1 %patch1 -p1 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 +- update to 2.0.3.2 + * Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 - update to 2.0.3.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 21:03:27 -0000 1.6 +++ sources 23 Jul 2009 22:38:08 -0000 1.7 @@ -1 +1 @@ -437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip +4d6724e134280f8d1b92f4b9fb1579f7 Acetoneiso_2.0.3.2.tar.gz From spot at fedoraproject.org Thu Jul 23 22:38:10 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 22:38:10 +0000 (UTC) Subject: rpms/AcetoneISO2/F-11 AcetoneISO2.spec,1.9,1.10 sources,1.6,1.7 Message-ID: <20090723223810.B2EF111C049D@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23236/F-11 Modified Files: AcetoneISO2.spec sources Log Message: 2.0.3.2 Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/AcetoneISO2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- AcetoneISO2.spec 1 Jul 2009 21:03:27 -0000 1.9 +++ AcetoneISO2.spec 23 Jul 2009 22:38:08 -0000 1.10 @@ -1,12 +1,12 @@ Name: AcetoneISO2 -Version: 2.0.3.1 +Version: 2.0.3.2 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip -Patch0: acetoneiso2-2.0.3.1-desktop.patch +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/Acetoneiso_%{version}.tar.gz +Patch0: acetoneiso2-2.0.3.2-desktop.patch Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils @@ -31,7 +31,7 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n AcetoneISO_%{version} +%setup -q -n Acetoneiso_%{version} %patch0 -p1 %patch1 -p1 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 +- update to 2.0.3.2 + * Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 - update to 2.0.3.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 21:03:28 -0000 1.6 +++ sources 23 Jul 2009 22:38:09 -0000 1.7 @@ -1 +1 @@ -437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip +4d6724e134280f8d1b92f4b9fb1579f7 Acetoneiso_2.0.3.2.tar.gz From spot at fedoraproject.org Thu Jul 23 22:38:11 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 22:38:11 +0000 (UTC) Subject: rpms/AcetoneISO2/devel acetoneiso2-2.0.3.2-desktop.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 AcetoneISO2.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090723223811.B778311C049D@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23236/devel Modified Files: .cvsignore AcetoneISO2.spec sources Added Files: acetoneiso2-2.0.3.2-desktop.patch Log Message: 2.0.3.2 acetoneiso2-2.0.3.2-desktop.patch: AcetoneISO.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE acetoneiso2-2.0.3.2-desktop.patch --- diff -up Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop --- Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD 2009-07-23 18:30:22.496042966 -0400 +++ Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop 2009-07-23 18:30:43.351041731 -0400 @@ -2,9 +2,9 @@ Categories=Qt;KDE;Application;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName=CD/DVD image manipulator GenericName[it]=Strumenti per immagini CD/DVD GenericName[de]=CD/DVD-Abbildmanager Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 1 Jul 2009 21:03:28 -0000 1.6 +++ .cvsignore 23 Jul 2009 22:38:10 -0000 1.7 @@ -1 +1 @@ -AcetoneISO_2.0.3.1.zip +Acetoneiso_2.0.3.2.tar.gz Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/AcetoneISO2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- AcetoneISO2.spec 1 Jul 2009 21:03:28 -0000 1.9 +++ AcetoneISO2.spec 23 Jul 2009 22:38:10 -0000 1.10 @@ -1,12 +1,12 @@ Name: AcetoneISO2 -Version: 2.0.3.1 +Version: 2.0.3.2 Release: 1%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 URL: http://www.acetoneteam.org/ -Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/AcetoneISO_%{version}.zip -Patch0: acetoneiso2-2.0.3.1-desktop.patch +Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/Acetoneiso_%{version}.tar.gz +Patch0: acetoneiso2-2.0.3.2-desktop.patch Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils @@ -31,7 +31,7 @@ AcetoneISO2: The CD/DVD image manipulato - Restore a lost CUE file of *.bin *.img %prep -%setup -q -n AcetoneISO_%{version} +%setup -q -n Acetoneiso_%{version} %patch0 -p1 %patch1 -p1 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 +- update to 2.0.3.2 + * Wed Jul 1 2009 Tom "spot" Callaway - 2.0.3.1-1 - update to 2.0.3.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 1 Jul 2009 21:03:28 -0000 1.6 +++ sources 23 Jul 2009 22:38:10 -0000 1.7 @@ -1 +1 @@ -437d373e8ef74baaaa3676f37b56054d AcetoneISO_2.0.3.1.zip +4d6724e134280f8d1b92f4b9fb1579f7 Acetoneiso_2.0.3.2.tar.gz From hadess at fedoraproject.org Thu Jul 23 22:42:02 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Thu, 23 Jul 2009 22:42:02 +0000 (UTC) Subject: rpms/totem/devel totem.spec,1.245,1.246 Message-ID: <20090723224202.ADB9411C048A@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24757 Modified Files: totem.spec Log Message: Add missing Gconf2 BR Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/totem.spec,v retrieving revision 1.245 retrieving revision 1.246 diff -u -p -r1.245 -r1.246 --- totem.spec 23 Jul 2009 22:29:27 -0000 1.245 +++ totem.spec 23 Jul 2009 22:42:02 -0000 1.246 @@ -50,6 +50,7 @@ BuildRequires: gnome-doc-utils BuildRequires: python-devel pygtk2-devel BuildRequires: totem-pl-parser-devel BuildRequires: unique-devel +BuildRequires: GConf2-devel # For the nautilus extension BuildRequires: nautilus-devel From spot at fedoraproject.org Thu Jul 23 23:04:43 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 23:04:43 +0000 (UTC) Subject: rpms/AcetoneISO2/devel AcetoneISO2.spec,1.10,1.11 Message-ID: <20090723230443.A108A11C049D@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32362/devel Modified Files: AcetoneISO2.spec Log Message: forgot to tag some files Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/AcetoneISO2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- AcetoneISO2.spec 23 Jul 2009 22:38:10 -0000 1.10 +++ AcetoneISO2.spec 23 Jul 2009 23:04:42 -0000 1.11 @@ -1,6 +1,6 @@ Name: AcetoneISO2 Version: 2.0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-2 +- forgot to tag some files + * Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 - update to 2.0.3.2 From spot at fedoraproject.org Thu Jul 23 23:04:43 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 23:04:43 +0000 (UTC) Subject: rpms/AcetoneISO2/F-11 acetoneiso2-2.0.3.2-desktop.patch,NONE,1.1 Message-ID: <20090723230443.9D89E11C048A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32362/F-11 Added Files: acetoneiso2-2.0.3.2-desktop.patch Log Message: forgot to tag some files acetoneiso2-2.0.3.2-desktop.patch: AcetoneISO.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE acetoneiso2-2.0.3.2-desktop.patch --- diff -up Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop --- Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD 2009-07-23 18:30:22.496042966 -0400 +++ Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop 2009-07-23 18:30:43.351041731 -0400 @@ -2,9 +2,9 @@ Categories=Qt;KDE;Application;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName=CD/DVD image manipulator GenericName[it]=Strumenti per immagini CD/DVD GenericName[de]=CD/DVD-Abbildmanager From spot at fedoraproject.org Thu Jul 23 23:04:43 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 23:04:43 +0000 (UTC) Subject: rpms/AcetoneISO2/F-10 acetoneiso2-2.0.3.2-desktop.patch,NONE,1.1 Message-ID: <20090723230443.A40AB11C04D1@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32362/F-10 Added Files: acetoneiso2-2.0.3.2-desktop.patch Log Message: forgot to tag some files acetoneiso2-2.0.3.2-desktop.patch: AcetoneISO.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE acetoneiso2-2.0.3.2-desktop.patch --- diff -up Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop --- Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD 2009-07-23 18:30:22.496042966 -0400 +++ Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop 2009-07-23 18:30:43.351041731 -0400 @@ -2,9 +2,9 @@ Categories=Qt;KDE;Application;AudioVideo;DiscBurning; Encoding=UTF-8 Exec=acetoneiso -Icon=/usr/share/pixmaps/Acetino2.png +Icon=Acetino2 MimeType=application/x-iso -Name=AcetoneISO +Name=AcetoneISO2 GenericName=CD/DVD image manipulator GenericName[it]=Strumenti per immagini CD/DVD GenericName[de]=CD/DVD-Abbildmanager From spot at fedoraproject.org Thu Jul 23 23:06:34 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 23:06:34 +0000 (UTC) Subject: rpms/AcetoneISO2/F-10 AcetoneISO2.spec,1.9,1.10 Message-ID: <20090723230634.5D98C11C048A@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv683/F-10 Modified Files: AcetoneISO2.spec Log Message: forgot to tag some files Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-10/AcetoneISO2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- AcetoneISO2.spec 23 Jul 2009 22:38:08 -0000 1.9 +++ AcetoneISO2.spec 23 Jul 2009 23:06:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: AcetoneISO2 Version: 2.0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-2 +- forgot to tag some files + * Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 - update to 2.0.3.2 From spot at fedoraproject.org Thu Jul 23 23:06:34 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 23 Jul 2009 23:06:34 +0000 (UTC) Subject: rpms/AcetoneISO2/F-11 AcetoneISO2.spec,1.10,1.11 Message-ID: <20090723230634.9447311C049D@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/AcetoneISO2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv683/F-11 Modified Files: AcetoneISO2.spec Log Message: forgot to tag some files Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/F-11/AcetoneISO2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- AcetoneISO2.spec 23 Jul 2009 22:38:08 -0000 1.10 +++ AcetoneISO2.spec 23 Jul 2009 23:06:34 -0000 1.11 @@ -1,6 +1,6 @@ Name: AcetoneISO2 Version: 2.0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-2 +- forgot to tag some files + * Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-1 - update to 2.0.3.2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:39 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230739.171BE10F890@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:42 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230742.56A0F10F89D@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:43 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230743.DA63710F8AB@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:44 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230744.8476010F8AD@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:46 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230746.7C0AC10F8B2@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:47 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230747.6C94510F8B3@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:49 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230749.A71CC10F8B7@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:07:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:07:50 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723230750.DC4D810F856@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:08:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:12 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230812.D962610F8A9@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:15 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230815.5C7B310F8AC@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:16 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230816.DC26410F8AF@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:18 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230818.1DABC10F8B4@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:19 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230819.616BC10F8BD@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:20 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230820.B0DA510F8BF@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:21 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723230821.DC3AA10F8C1@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:08:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:33 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230833.4391F10F8B7@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:08:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:36 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230836.15E2B10F86A@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:08:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:37 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230837.C9F9210F8B9@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:08:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:42 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230842.3C95D10F8CA@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:08:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:39 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230839.5F87710F8C8@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:08:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:08:44 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723230844.573CE10F8CD@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:09:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:05 +0000 Subject: [pkgdb] kadu had acl change status Message-ID: <20090723230905.38FA710F8AB@bastion2.fedora.phx.redhat.com> ecik has set the approveacls acl on kadu (Fedora devel) to Approved for gajownik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:07 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230907.4E50D10F8AF@bastion2.fedora.phx.redhat.com> Package kadu in Fedora devel is now owned by gajownik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:13 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230913.B389F10F8BC@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:15 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230915.8160F10F8BE@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:17 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230917.ACFF910F8B3@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:21 +0000 Subject: [pkgdb] kadu had acl change status Message-ID: <20090723230921.E926D10F8D0@bastion2.fedora.phx.redhat.com> ecik has set the approveacls acl on kadu (Fedora 9) to Approved for gajownik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:23 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230923.F039810F8D3@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:24 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230924.485CA10F8DA@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 9 is now owned by gajownik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:25 +0000 Subject: [pkgdb] kadu ownership updated Message-ID: <20090723230925.7F34B10F8DD@bastion2.fedora.phx.redhat.com> Package kadu in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu From pkgdb at fedoraproject.org Thu Jul 23 23:09:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:40 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230940.A567510F8C5@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:41 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230941.3E00810F8BA@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:42 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230942.998E410F8E4@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:43 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230943.DCDEA10F8BB@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:45 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230945.A692210F8E2@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:48 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230948.C8B3510F8E9@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:47 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230947.9A58410F8E7@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:46 +0000 Subject: [pkgdb] kadu-theme ownership updated Message-ID: <20090723230946.DDC7210F8E5@bastion2.fedora.phx.redhat.com> Package kadu-theme in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kadu-theme From pkgdb at fedoraproject.org Thu Jul 23 23:09:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:58 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723230958.3773610F8C6@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:09:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:09:58 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723230958.CD95310F8C8@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:00 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723231000.6E42510F8EB@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:03 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723231003.A19BC10F8D4@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:04 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723231004.7491210F8D9@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:06 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723231006.4D6BF10F8EE@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:15 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231016.02A3210F8CD@bastion2.fedora.phx.redhat.com> Package krename in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:17 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231017.6541810F8F2@bastion2.fedora.phx.redhat.com> Package krename in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:19 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231019.83A7E10F8A9@bastion2.fedora.phx.redhat.com> Package krename in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:23 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231023.4615210F8FD@bastion2.fedora.phx.redhat.com> Package krename in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:21 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231021.CA1AE10F8F9@bastion2.fedora.phx.redhat.com> Package krename in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:22 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231022.BCEF110F8FB@bastion2.fedora.phx.redhat.com> Package krename in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:23 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231023.B60D510F8AB@bastion2.fedora.phx.redhat.com> Package krename in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:34 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090723231035.01BFF10F8B4@bastion2.fedora.phx.redhat.com> Package krename in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Thu Jul 23 23:10:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:02 +0000 Subject: [pkgdb] kooldock ownership updated Message-ID: <20090723231002.3990810F8CA@bastion2.fedora.phx.redhat.com> Package kooldock in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kooldock From pkgdb at fedoraproject.org Thu Jul 23 23:10:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:46 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231046.AA00E10F8BD@bastion2.fedora.phx.redhat.com> Package openarena in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:47 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231047.92CCB10F8BF@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:48 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231048.DB80F10F8B5@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:49 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231049.F02AE10F903@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:51 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231051.A15B910F905@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:53 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231053.04AA410F907@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:54 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231054.3377410F909@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:10:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:10:54 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090723231054.C60FB10F90B@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Thu Jul 23 23:11:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:21 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231121.A07AB10F8D0@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora devel is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:22 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231122.403B410F8D2@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora 8 is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:23 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231123.9953610F8DA@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora 7 is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:24 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231124.9FC6B10F90E@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora 10 is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:24 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231124.80A2E10F8DC@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora 9 is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:25 +0000 Subject: [pkgdb] python-ZSI ownership updated Message-ID: <20090723231125.DAB5310F913@bastion2.fedora.phx.redhat.com> Package python-ZSI in Fedora 11 is now owned by jbowes To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-ZSI From pkgdb at fedoraproject.org Thu Jul 23 23:11:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:25 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723231125.C1C9910F911@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora devel is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:11:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:39 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723231139.0ED9010F8C3@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 11 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:11:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:49 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231149.C1ED710F8DF@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:11:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:48 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231148.2D21E10F8C4@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:11:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:45 +0000 Subject: [pkgdb] aria2 ownership updated Message-ID: <20090723231145.55E9C10F8BA@bastion2.fedora.phx.redhat.com> Package aria2 in Fedora 10 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/aria2 From pkgdb at fedoraproject.org Thu Jul 23 23:11:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:50 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231150.A3BAC10F916@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:11:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:51 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231151.A8B3F10F918@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:11:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:52 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231152.85B4D10F91A@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:11:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:11:53 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723231153.9866B10F8BB@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:12:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:11 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231211.8474810F8E8@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora devel is now owned by silas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:13 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231213.684A110F91E@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 9 is now owned by silas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:26 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231226.09BF810F92B@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 10 is now owned by silas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:27 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723231227.C1F7710F92E@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora devel is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:12:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:14 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231214.A067F10F923@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:15 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231215.B58F810F8EA@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:17 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231217.7CD2610F8C6@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 5 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:18 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231218.8740110F8C8@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:28 +0000 Subject: [pkgdb] python-mutagen ownership updated Message-ID: <20090723231228.8996410F930@bastion2.fedora.phx.redhat.com> Package python-mutagen in Fedora 11 is now owned by silas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mutagen From pkgdb at fedoraproject.org Thu Jul 23 23:12:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:40 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231240.D1B3510F8CB@bastion2.fedora.phx.redhat.com> Package sonata in Fedora devel was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:41 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231241.834AB10F8D7@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 7 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:41 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723231241.D723E10F8EE@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 10 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:12:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:43 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231243.0B09E10F8EF@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 6 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:44 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231244.1DBFA10F931@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 8 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:46 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231246.952D310F935@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 11 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:45 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231244.F2BA310F933@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 10 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:12:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:47 +0000 Subject: [pkgdb] cowsay ownership updated Message-ID: <20090723231247.189BC10F938@bastion2.fedora.phx.redhat.com> Package cowsay in Fedora 11 is now owned by sundaram To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cowsay From pkgdb at fedoraproject.org Thu Jul 23 23:12:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:12:56 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723231256.0544510F890@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 9 was orphaned by ecik To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From mitr at fedoraproject.org Thu Jul 23 23:16:05 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Thu, 23 Jul 2009 23:16:05 +0000 (UTC) Subject: rpms/volume_key/devel cryptsetup-svn-r62.patch, NONE, 1.1 volume_key.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090723231605.64C0611C048A@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/volume_key/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4053 Modified Files: .cvsignore sources Added Files: cryptsetup-svn-r62.patch volume_key.spec Log Message: * Tue Jun 30 2009 Miloslav Trma? - 0.2-1 - Initial build. cryptsetup-svn-r62.patch: lib/libcryptsetup.h | 72 +++++++++ lib/setup.c | 410 ++++++++++++++++++++++++++++++++++++++++++++++------ luks/keymanage.c | 22 +- luks/luks.h | 2 4 files changed, 457 insertions(+), 49 deletions(-) --- NEW FILE cryptsetup-svn-r62.patch --- Index: lib/libcryptsetup.h =================================================================== --- lib/libcryptsetup.h (revision 62) +++ lib/libcryptsetup.h (working copy) @@ -65,6 +65,78 @@ int crypt_luksFormat(struct crypt_options *options); int crypt_luksDump(struct crypt_options *options); +struct crypt_luks_volume_info; + +/* Get information about DEVICE, + Return 0 on sucess, setting INFO to the volume information. + return a negative errno value otherwise, the caller can try to use + crypt_get_error() to get an error message. + INFO can be NULL, in which case the function only verifies DEVICE is a valid + LUKS device. + If INFO is not not NULL, it should be freed using crypt_luks_vi_free(). +*/ +int crypt_luks_get_volume_info(struct crypt_luks_volume_info **info, + const char *device); + +/* Get cipher name from INFO. + Return a string for free(), or NULL if out of memory. */ +char *crypt_luks_vi_get_cipher_name(struct crypt_luks_volume_info *info); + +/* Get cipher mode from INFO. + Return a string for free(), or NULL if out of memory. */ +char *crypt_luks_vi_get_cipher_mode(struct crypt_luks_volume_info *info); + +/* Get number of master key bytes from INFO. */ +unsigned crypt_luks_vi_get_key_bytes(struct crypt_luks_volume_info *info); + +/* Get UUID from INFO. + Return a string for free(), or NULL if out of memory. */ +char *crypt_luks_vi_get_uuid(struct crypt_luks_volume_info *info); + +/* Free INFO. */ +void crypt_luks_vi_free(struct crypt_luks_volume_info *info); + +/* Get the master key of DEVICE, using PASSPHRASE with PASSPHRASE_LENGTH. + Return the used slot on success, setting KEY and KEY_LENGTH to the master + key; + return a negative errno value otherwise, the caller can try to use + crypt_get_error() to get an error message. + The caller is responsible for calling free(KEY) if this function returns + 0. */ +int crypt_luks_get_master_key(unsigned char **key, size_t *key_length, + const char *device, + const unsigned char *passphrase, + size_t passphrase_length, + void (*log)(int class, char *msg)); + +/* Verify that KEY with KEY_LENGTH is valid for DEVICE. + Return 0 on success. + Return a negative errno value otherwise, the caller can try to use + crypt_get_error() to get an error message. */ +int crypt_luks_verify_master_key(const char *device, const unsigned char *key, + size_t key_length); + +/* Open DEVICE using KEY with KEY_LENGTH as NAME. + Return 0 on success. + Return a negative errno value otherwise, the caller can try to use + crypt_get_error() to get an error message. */ +int crypt_luks_open_by_master_key(const char *name, const char *device, + const unsigned char *key, size_t key_length, + int flags, void (*log)(int class, char *msg)); + +/* Add a PASSPHRASE with PASSPHRASE_LENGTH to SLOT of DEVICE, using KEY with + KEY_LENGTH. + Return the used slot on success; + Return a negative errno value otherwise, the caller can try to use + crypt_get_error() to get an error message. + SLOT may be -1 to use the first empty slot. */ +int crypt_luks_add_passphrase_by_master_key(const char *device, + const unsigned char *key, + size_t key_length, int slot, + const unsigned char *passphrase, + size_t passphrase_length, + void (*log)(int class, char *msg)); + void crypt_get_error(char *buf, size_t size); void crypt_put_options(struct crypt_options *options); const char *crypt_get_dir(void); Index: lib/setup.c =================================================================== --- lib/setup.c (revision 62) +++ lib/setup.c (working copy) @@ -282,7 +282,7 @@ } } -static int __crypt_create_device(int reload, struct setup_backend *backend, +static int __crypt_create_device(intptr_t reload, struct setup_backend *backend, struct crypt_options *options) { struct crypt_options tmp = { @@ -359,7 +359,7 @@ return r; } -static int __crypt_query_device(int details, struct setup_backend *backend, +static int __crypt_query_device(intptr_t details, struct setup_backend *backend, struct crypt_options *options) { int r = backend->status(details, options, NULL); @@ -371,7 +371,7 @@ return r; } -static int __crypt_resize_device(int details, struct setup_backend *backend, +static int __crypt_resize_device(intptr_t details, struct setup_backend *backend, struct crypt_options *options) { struct crypt_options tmp = { @@ -412,7 +412,7 @@ return r; } -static int __crypt_remove_device(int arg, struct setup_backend *backend, +static int __crypt_remove_device(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) { int r; @@ -428,7 +428,7 @@ return backend->remove(0, options); } -static int __crypt_luks_format(int arg, struct setup_backend *backend, struct crypt_options *options) +static int __crypt_luks_format(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) { int r; @@ -504,8 +504,94 @@ return r; } -static int __crypt_luks_open(int arg, struct setup_backend *backend, struct crypt_options *options) +static int open_from_hdr_and_mk(struct luks_phdr *hdr, + struct luks_masterkey *mk, + const struct device_infos *infos, + struct setup_backend *backend, + struct crypt_options *options) { + char *dmCipherSpec; + int excl = (options->flags & CRYPT_FLAG_NON_EXCLUSIVE_ACCESS) + ? 0 : O_EXCL; + int r; + + if (infos->readonly) + options->flags |= CRYPT_FLAG_READONLY; + options->offset = hdr->payloadOffset; + if (asprintf(&dmCipherSpec, "%s-%s", hdr->cipherName, hdr->cipherMode) + < 0) { + r = -ENOMEM; + goto out; + } + options->cipher = dmCipherSpec; + options->key_size = mk->keyLength; + options->skip = 0; + + options->size = infos->size; + if (!options->size) { + set_error("Not a block device.\n"); + r = -ENOTBLK; + goto out; + } + if (options->size <= options->offset) { + set_error("Invalid offset"); + r = -EINVAL; + goto out; + } + options->size -= options->offset; + /* FIXME: code allows multiple crypt mapping, cannot use uuid then. + * anyway, it is dangerous and can corrupt data. Remove it in next version! */ + r = backend->create(0, options, mk->key, excl ? hdr->uuid : NULL); + out: + free(dmCipherSpec); + return r; +} + +static int __crypt_luks_open_by_master_key(intptr_t arg, + struct setup_backend *backend, + struct crypt_options *options) +{ + struct luks_masterkey *mk; + struct luks_phdr hdr; + struct device_infos infos; + struct crypt_options tmp = { + .name = options->name, + }; + int r; + int excl = (options->flags & CRYPT_FLAG_NON_EXCLUSIVE_ACCESS) != 0 + ? 0 : O_EXCL ; + + mk = (struct luks_masterkey *)arg; + + r = backend->status(0, &tmp, NULL); + if (r >= 0) { + set_error("Device %s already exists.", options->name); + return -EEXIST; + } + + if (!LUKS_device_ready(options->device, O_RDONLY | excl)) + return -ENOTBLK; + + if (get_device_infos(options->device, &infos) < 0) { + set_error("Can't get device information.\n"); + return -ENOTBLK; + } + + r = LUKS_read_phdr(options->device, &hdr); + if (r < 0) + return r; + + r = LUKS_verify_master_key(&hdr, mk); + if (r == -EPERM) + set_error("Master key does not match the volume.\n"); + if (r < 0) + return r; + + return open_from_hdr_and_mk(&hdr, mk, &infos, backend, options); +} + +static int __crypt_luks_open(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) +{ struct luks_masterkey *mk=NULL; struct luks_phdr hdr; char *prompt = NULL; @@ -515,7 +601,6 @@ struct crypt_options tmp = { .name = options->name, }; - char *dmCipherSpec = NULL; int r, tries = options->tries; int excl = (options->flags & CRYPT_FLAG_NON_EXCLUSIVE_ACCESS) ? 0 : O_EXCL ; @@ -533,9 +618,6 @@ return -ENOTBLK; } - if (infos.readonly) - options->flags |= CRYPT_FLAG_READONLY; - if(asprintf(&prompt, "Enter LUKS passphrase for %s: ", options->device) < 0) return -ENOMEM; @@ -559,33 +641,8 @@ logger(options, CRYPT_LOG_NORMAL,"key slot %d unlocked.\n", r); + r = open_from_hdr_and_mk(&hdr, mk, &infos, backend, options); - options->offset = hdr.payloadOffset; - if (asprintf(&dmCipherSpec, "%s-%s", hdr.cipherName, hdr.cipherMode) < 0) { - r = -ENOMEM; - goto out2; - } - options->cipher = dmCipherSpec; - options->key_size = mk->keyLength; - options->skip = 0; - - options->size = infos.size; - if (!options->size) { - set_error("Not a block device.\n"); - r = -ENOTBLK; goto out2; - } - if (options->size <= options->offset) { - set_error("Invalid offset"); - r = -EINVAL; goto out2; - } - options->size -= options->offset; - /* FIXME: code allows multiple crypt mapping, cannot use uuid then. - * anyway, it is dangerous and can corrupt data. Remove it in next version! */ - r = backend->create(0, options, mk->key, excl ? hdr.uuid : NULL); - - out2: - free(dmCipherSpec); - dmCipherSpec = NULL; out1: safe_free(password); out: @@ -598,8 +655,76 @@ return r; } -static int __crypt_luks_add_key(int arg, struct setup_backend *backend, struct crypt_options *options) +/* arg is a struct luks_masterkey **. Caller must LUKS_dealloc_masterkey(*arg) + if this function returns 0. + options->key_size is abused as passphrase length. */ +static int __crypt_luks_get_master_key(intptr_t arg, + struct setup_backend *backend, + struct crypt_options *options) { + struct luks_masterkey *mk; + struct luks_phdr hdr; + int r; + + if (!LUKS_device_ready(options->device, O_RDONLY)) + return -ENOTBLK; + + r = LUKS_open_any_key(options->device, options->passphrase, + options->key_size, &hdr, &mk, backend); + if (r == -EPERM) + set_error("No key available with this passphrase."); + if (r < 0) { + LUKS_dealloc_masterkey(mk); + return r; + } + + *(struct luks_masterkey **)arg = mk; + return r; +} + +/* options->key_size is abused as passphrase length. */ +static int __crypt_luks_add_passphrase_by_master_key + (intptr_t arg, struct setup_backend *backend, + struct crypt_options *options) +{ + struct luks_phdr hdr; + unsigned int keyIndex; + struct luks_masterkey *mk; + const char *device = options->device; + int r; + + mk = (struct luks_masterkey *)arg; + + if (!LUKS_device_ready(options->device, O_RDWR)) + return -ENOTBLK; + + r = LUKS_read_phdr(device, &hdr); + if (r < 0) + return r; + + r = LUKS_verify_master_key(&hdr, mk); + if (r < 0) { + set_error("Master key does not match the volume"); + return -EINVAL; + } + + keyIndex = keyslot_from_option(options->key_slot, &hdr, options); + if (keyIndex == -EINVAL) + return -EINVAL; + + hdr.keyblock[keyIndex].passwordIterations + = at_least_one(LUKS_benchmarkt_iterations() + * ((float)options->iteration_time / 1000)); + + r = LUKS_set_key(device, keyIndex, options->passphrase, + options->key_size, &hdr, mk, backend); + if (r < 0) + return r; + return keyIndex; +} + +static int __crypt_luks_add_key(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) +{ struct luks_masterkey *mk=NULL; struct luks_phdr hdr; char *password=NULL; unsigned int passwordLen; @@ -664,7 +789,7 @@ return r; } -static int luks_remove_helper(int arg, struct setup_backend *backend, struct crypt_options *options, int supply_it) +static int luks_remove_helper(intptr_t arg, struct setup_backend *backend, struct crypt_options *options, int supply_it) { struct luks_masterkey *mk; struct luks_phdr hdr; @@ -735,18 +860,18 @@ return r; } -static int __crypt_luks_kill_slot(int arg, struct setup_backend *backend, struct crypt_options *options) { +static int __crypt_luks_kill_slot(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) { return luks_remove_helper(arg, backend, options, 0); } -static int __crypt_luks_remove_key(int arg, struct setup_backend *backend, struct crypt_options *options) { +static int __crypt_luks_remove_key(intptr_t arg, struct setup_backend *backend, struct crypt_options *options) { return luks_remove_helper(arg, backend, options, 1); } -static int crypt_job(int (*job)(int arg, struct setup_backend *backend, +static int crypt_job(int (*job)(intptr_t arg, struct setup_backend *backend, struct crypt_options *options), - int arg, struct crypt_options *options) + intptr_t arg, struct crypt_options *options) { struct setup_backend *backend; int r; @@ -807,6 +932,96 @@ return crypt_job(__crypt_luks_format, 0, options); } +int crypt_luks_get_master_key(unsigned char **key, size_t *key_length, + const char *device, + const unsigned char *passphrase, + size_t passphrase_length, + void (*log)(int class, char *msg)) +{ + struct crypt_options options; + struct interface_callbacks icb; + struct luks_masterkey *mk; + int r; + + memset(&icb, 0, sizeof(icb)); + icb.log = log; + memset(&options, 0, sizeof(options)); + options.device = device; + options.icb = &icb; + options.passphrase = (const char *)passphrase; + options.key_size = passphrase_length; /* Abusing the field */ + if (options.key_size != passphrase_length) { + set_error("passphrase_length too large"); + return -EOVERFLOW; + } + r = crypt_job(__crypt_luks_get_master_key, (intptr_t)&mk, &options); + if (r < 0) + return r; + /* Note: this memory is not mlock()ed */ + *key = malloc(mk->keyLength); + if (*key == NULL) { + LUKS_dealloc_masterkey(mk); + return -ENOMEM; + } + memcpy(*key, mk->key, mk->keyLength); + *key_length = mk->keyLength; + LUKS_dealloc_masterkey(mk); + return r; +} + +int crypt_luks_verify_master_key(const char *device, const unsigned char *key, + size_t key_length) +{ + struct luks_masterkey *mk; + struct luks_phdr hdr; + int r; + + r = LUKS_read_phdr(device, &hdr); + if (r < 0) + return r; + + mk = LUKS_alloc_masterkey(key_length); + if (mk == NULL) + return -ENOMEM; + memcpy(mk->key, key, key_length); + + r = LUKS_verify_master_key(&hdr, mk); + if (r == -EPERM) + set_error("Master key does not match the volume.\n"); + + LUKS_dealloc_masterkey(mk); + + return r; +} + +int crypt_luks_open_by_master_key(const char *name, const char *device, + const unsigned char *key, size_t key_length, + int flags, void (*log)(int class, char *msg)) +{ + struct crypt_options options; + struct interface_callbacks icb; + struct luks_masterkey *mk; + int r; + + memset(&icb, 0, sizeof(icb)); + icb.log = log; + memset(&options, 0, sizeof(options)); + options.name = name; + options.device = device; + options.flags = flags; + options.offset = 0; + options.icb = &icb; + + mk = LUKS_alloc_masterkey(key_length); + if (mk == NULL) + return -ENOMEM; + memcpy(mk->key, key, key_length); + r = crypt_job(__crypt_luks_open_by_master_key, (intptr_t)mk, &options); + LUKS_dealloc_masterkey(mk); + + return r; +} + int crypt_luksOpen(struct crypt_options *options) { return crypt_job(__crypt_luks_open, 0, options); @@ -822,6 +1037,39 @@ return crypt_job(__crypt_luks_remove_key, 0, options); } +int crypt_luks_add_passphrase_by_master_key(const char *device, + const unsigned char *key, + size_t key_length, int slot, + const unsigned char *passphrase, + size_t passphrase_length, + void (*log)(int class, char *msg)) +{ + struct crypt_options options; + struct interface_callbacks icb; + struct luks_masterkey *mk; + int r; + + memset(&icb, 0, sizeof(icb)); + icb.log = log; + memset(&options, 0, sizeof(options)); + options.device = device; + options.passphrase = (const char *)passphrase; + options.key_size = passphrase_length; /* Abusing the field */ + options.key_slot = slot; + options.iteration_time = 1000; + options.icb = &icb; + + mk = LUKS_alloc_masterkey(key_length); + if (mk == NULL) + return -ENOMEM; + memcpy(mk->key, key, key_length); + r = crypt_job(__crypt_luks_add_passphrase_by_master_key, (intptr_t)mk, + &options); + LUKS_dealloc_masterkey(mk); + + return r; +} + int crypt_luksAddKey(struct crypt_options *options) { return crypt_job(__crypt_luks_add_key, 0, options); @@ -840,6 +1088,84 @@ return 0; } +struct crypt_luks_volume_info +{ + struct luks_phdr h; +}; + +int crypt_luks_get_volume_info(struct crypt_luks_volume_info **info, + const char *device) +{ + struct crypt_luks_volume_info *vi; + int r; + + vi = malloc(sizeof(*vi)); + if (vi == NULL) + return -ENOMEM; + r = LUKS_read_phdr(device, &vi->h); + if (r != 0) { + free(vi); + return r; + } + if (info != NULL) + *info = vi; + else + free(vi); + return 0; +} + +char *crypt_luks_vi_get_cipher_name(struct crypt_luks_volume_info *info) +{ + size_t field_size; + char *r; + + field_size = sizeof(info->h.cipherName); + r = malloc(field_size + 1); + if (r != NULL) { + memcpy(r, info->h.cipherName, field_size); + r[field_size] = '\0'; + } + return r; +} + +char *crypt_luks_vi_get_cipher_mode(struct crypt_luks_volume_info *info) +{ + size_t field_size; + char *r; + + field_size = sizeof(info->h.cipherMode); + r = malloc(field_size + 1); + if (r != NULL) { + memcpy(r, info->h.cipherMode, field_size); + r[field_size] = '\0'; + } + return r; +} + +unsigned crypt_luks_vi_get_key_bytes(struct crypt_luks_volume_info *info) +{ + return info->h.keyBytes; +} + +char *crypt_luks_vi_get_uuid(struct crypt_luks_volume_info *info) +{ + size_t field_size; + char *r; + + field_size = sizeof(info->h.uuid); + r = malloc(field_size + 1); + if (r != NULL) { + memcpy(r, info->h.uuid, field_size); + r[field_size] = '\0'; + } + return r; +} + +void crypt_luks_vi_free(struct crypt_luks_volume_info *info) +{ + free(info); +} + int crypt_isLuks(struct crypt_options *options) { struct luks_phdr hdr; Index: luks/keymanage.c =================================================================== --- luks/keymanage.c (revision 62) +++ luks/keymanage.c (working copy) @@ -280,6 +280,20 @@ return r; } +/* Check whether a master key is invalid. */ +int LUKS_verify_master_key(const struct luks_phdr *hdr, + const struct luks_masterkey *mk) +{ + char checkHashBuf[LUKS_DIGESTSIZE]; + + PBKDF2_HMAC_SHA1(mk->key, mk->keyLength, hdr->mkDigestSalt, + LUKS_SALTSIZE, hdr->mkDigestIterations, checkHashBuf, + LUKS_DIGESTSIZE); + + return memcmp(checkHashBuf, hdr->mkDigest, LUKS_DIGESTSIZE) == 0 + ? 0 : -EPERM; +} + /* Try to open a particular key slot, */ @@ -295,7 +309,6 @@ char derivedKey[hdr->keyBytes]; char *AfKey; size_t AFEKSize; - char checkHashBuf[LUKS_DIGESTSIZE]; int r; if(hdr->keyblock[keyIndex].active != LUKS_KEY_ENABLED) { @@ -329,13 +342,8 @@ r = AF_merge(AfKey,mk->key,mk->keyLength,hdr->keyblock[keyIndex].stripes); if(r < 0) goto out; - - PBKDF2_HMAC_SHA1(mk->key,mk->keyLength, - hdr->mkDigestSalt,LUKS_SALTSIZE, - hdr->mkDigestIterations, - checkHashBuf,LUKS_DIGESTSIZE); - r = (memcmp(checkHashBuf,hdr->mkDigest, LUKS_DIGESTSIZE) == 0)?0:-EPERM; + r = LUKS_verify_master_key(hdr, mk); out: free(AfKey); return r; Index: luks/luks.h =================================================================== --- luks/luks.h (revision 62) +++ luks/luks.h (working copy) @@ -124,6 +124,8 @@ struct luks_masterkey **mk, struct setup_backend *backend); +int LUKS_verify_master_key(const struct luks_phdr *hdr, + const struct luks_masterkey *mk); int LUKS_del_key(const char *device, unsigned int keyIndex); int LUKS_is_last_keyslot(const char *device, unsigned int keyIndex); --- NEW FILE volume_key.spec --- %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Summary: An utility for manipulating storage encryption keys and passphrases Name: volume_key Version: 0.2 Release: 1 License: GPLv2 Group: Applications/System URL: https://fedorahosted.org/volume_key/ Requires: volume_key-libs = %{version}-%{release} Source0: https://fedorahosted.org/releases/v/o/volume_key/volume_key-%{version}.tar.bz2 Source1: http://cryptsetup.googlecode.com/files/cryptsetup-1.0.7-rc1.tar.bz2 # http://code.google.com/p/cryptsetup/issues/detail?id=15 Patch0: https://fedorahosted.org/releases/v/o/volume_key/cryptsetup-svn-r62.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: gettext-devel, glib2-devel, gnupg, gpgme-devel, libblkid-devel BuildRequires: nss-devel, python-devel # For cryptsetup BuildRequires: device-mapper-devel, e2fsprogs-devel, libgcrypt-devel BuildRequires: libgpg-error-devel, libselinux-devel, libsepol-devel, popt-devel %description This package provides a command-line tool for manipulating storage volume encryption keys and storing them separately from volumes. The main goal of the software is to allow restoring access to an encrypted hard drive if the primary user forgets the passphrase. The encryption key back up can also be useful for extracting data after a hardware or software failure that corrupts the header of the encrypted volume, or to access the company data after an employee leaves abruptly. %package devel Summary: A library for manipulating storage encryption keys and passphrases Group: Development/Libraries Requires: volume_key-libs = %{version}-%{release} %description devel This package provides libvolume_key, a library for manipulating storage volume encryption keys and storing them separately from volumes. The main goal of the software is to allow restoring access to an encrypted hard drive if the primary user forgets the passphrase. The encryption key back up can also be useful for extracting data after a hardware or software failure that corrupts the header of the encrypted volume, or to access the company data after an employee leaves abruptly. %package libs Summary: A library for manipulating storage encryption keys and passphrases Group: System Environment/Libraries %description libs This package provides libvolume_key, a library for manipulating storage volume encryption keys and storing them separately from volumes. The main goal of the software is to allow restoring access to an encrypted hard drive if the primary user forgets the passphrase. The encryption key back up can also be useful for extracting data after a hardware or software failure that corrupts the header of the encrypted volume, or to access the company data after an employee leaves abruptly. %package -n python-volume_key Summary: Python bindings for libvolume_key Group: System Environment/Libraries Requires: volume_key-libs = %{version}-%{release} %description -n python-volume_key This package provides Python bindings for libvolume_key, a library for manipulating storage volume encryption keys and storing them separately from volumes. The main goal of the software is to allow restoring access to an encrypted hard drive if the primary user forgets the passphrase. The encryption key back up can also be useful for extracting data after a hardware or software failure that corrupts the header of the encrypted volume, or to access the company data after an employee leaves abruptly. volume_key currently supports only the LUKS volume encryption format. Support for other formats is possible, some formats are planned for future releases. %prep %setup -q -a 1 pushd cryptsetup-1.0.7-rc1 %patch0 -p0 -b .cs-vk popd %build cryptsetup_root=$(pwd)/cryptsetup-root pushd cryptsetup-1.0.7-rc1 %configure --enable-static --disable-shared --with-pic make %{?_smp_mflags} make install "DESTDIR=$cryptsetup_root" INSTALL='install -p' popd %configure "CPPFLAGS=-I$cryptsetup_root"%{_includedir} \ "LDFLAGS=-L$cryptsetup_root"%{_libdir} --disable-static make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang volume_key %clean rm -rf $RPM_BUILD_ROOT %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc README %{_bindir}/volume_key %{_mandir}/man8/volume_key.8* %files devel %defattr(-,root,root,-) %{_includedir}/volume_key %exclude %{_libdir}/libvolume_key.la %{_libdir}/libvolume_key.so %files libs -f volume_key.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS %{_libdir}/libvolume_key.so.* %files -n python-volume_key %defattr(-,root,root,-) %exclude %{python_sitearch}/_volume_key.la %{python_sitearch}/_volume_key.so %{python_sitearch}/volume_key.py* %changelog * Tue Jun 30 2009 Miloslav Trma? - 0.2-1 - Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/volume_key/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 15:25:18 -0000 1.1 +++ .cvsignore 23 Jul 2009 23:16:04 -0000 1.2 @@ -0,0 +1,2 @@ +volume_key-0.2.tar.bz2 +cryptsetup-1.0.7-rc1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/volume_key/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 21 Jul 2009 15:25:19 -0000 1.1 +++ sources 23 Jul 2009 23:16:05 -0000 1.2 @@ -0,0 +1,2 @@ +882ec96bef41962a33a24d6ee5821a29 volume_key-0.2.tar.bz2 +0910632173fb960252412bf7342b42fc cryptsetup-1.0.7-rc1.tar.bz2 From nushio at fedoraproject.org Thu Jul 23 23:35:38 2009 From: nushio at fedoraproject.org (Juan Manuel Rodriguez Moreno) Date: Thu, 23 Jul 2009 23:35:38 +0000 (UTC) Subject: rpms/beagle/devel beagle.spec,1.169,1.170 Message-ID: <20090723233538.AA66511C048A@cvs1.fedora.phx.redhat.com> Author: nushio Update of /cvs/pkgs/rpms/beagle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12256 Modified Files: beagle.spec Log Message: Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/devel/beagle.spec,v retrieving revision 1.169 retrieving revision 1.170 diff -u -p -r1.169 -r1.170 --- beagle.spec 6 Jul 2009 19:00:34 -0000 1.169 +++ beagle.spec 23 Jul 2009 23:35:36 -0000 1.170 @@ -1,6 +1,6 @@ Name: beagle Version: 0.3.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: The Beagle Search Infrastructure Group: User Interface/Desktops # see COPYING for details @@ -35,7 +35,7 @@ BuildRequires: perl(XML::Parser) BuildRequires: desktop-file-utils BuildRequires: libbeagle-devel >= 0.3.4 BuildRequires: ndesk-dbus-glib-devel -BuildRequires: epiphany-devel +#BuildRequires: epiphany-devel BuildRequires: taglib-sharp-devel BuildRequires: unzip BuildRequires: chmlib-devel @@ -116,14 +116,14 @@ Requires: beagle = %{version}-%{release} %description firefox Beagle Indexer Extension for Firefox -%package epiphany -Summary: Beagle backend for Epiphany -Group: User Interface/Desktops -Requires: beagle = %{version}-%{release} -Requires: epiphany-extensions +#%package epiphany +#Summary: Beagle backend for Epiphany +#Group: User Interface/Desktops +#Requires: beagle = %{version}-%{release} +#Requires: epiphany-extensions -%description epiphany -Beagle backend for Epiphany +#%description epiphany +#Beagle backend for Epiphany %package devel Summary: Development files for the Beagle search infrastructure @@ -328,9 +328,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/beagle/Backends/ThunderbirdBackends.dll* %{_libdir}/beagle/thunderbird/ -%files epiphany -%defattr(-, root, root,-) -%{_libdir}/epiphany/ +#%files epiphany +#%defattr(-, root, root,-) +#%{_libdir}/epiphany/ %files gnome %defattr(-, root, root,-) @@ -354,6 +354,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog +* Thu Jul 23 2009 Juan Rodriguez - 0.3.9-11 +- Removed epiphany subpackage, as it fails on x86_64 + * Mon Jul 06 2009 Adel Gadllah - 0.3.9-10 - Add support for epiphany 2.27/2.28 From suravee at fedoraproject.org Thu Jul 23 23:41:54 2009 From: suravee at fedoraproject.org (Suravee Suthikulpanit) Date: Thu, 23 Jul 2009 23:41:54 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/F-11 CodeAnalyst-gui.spec,1.4,1.5 Message-ID: <20090723234154.CB1D011C048A@cvs1.fedora.phx.redhat.com> Author: suravee Update of /cvs/pkgs/rpms/CodeAnalyst-gui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14598 Modified Files: CodeAnalyst-gui.spec Log Message: - Rebuild with new libbfd Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/F-11/CodeAnalyst-gui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- CodeAnalyst-gui.spec 6 Apr 2009 17:12:49 -0000 1.4 +++ CodeAnalyst-gui.spec 23 Jul 2009 23:41:54 -0000 1.5 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.38 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -165,6 +165,10 @@ fi %changelog +* Thu Jul 23 2009 - Suravee Suthikulpanit +- 2.8.38-12 +- Rebuild with new libbfd-2.19.51.0.2-17.fc11.so + * Mon Apr 6 2009 - Suravee Suthikulpanit - 2.8.38-11 - Remove --disable-dwarf from configuration From pkgdb at fedoraproject.org Fri Jul 24 00:29:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 00:29:18 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723234812.EBE2B10F856@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:48:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:48:18 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723234819.020BE10F890@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:48:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:48:24 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723234824.8FB7310F8A9@bastion2.fedora.phx.redhat.com> Package sonata in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:48:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:48:44 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723234844.AB17410F86A@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 00:29:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 00:29:18 +0000 Subject: [pkgdb] sonata ownership updated Message-ID: <20090723234846.1EC3F10F897@bastion2.fedora.phx.redhat.com> Package sonata in Fedora 10 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Thu Jul 23 23:48:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:48:56 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723234856.B023C10F86A@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 10 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:48:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:48:59 +0000 Subject: [pkgdb] python-mpd ownership updated Message-ID: <20090723234859.08FF010F8AC@bastion2.fedora.phx.redhat.com> Package python-mpd in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-mpd From pkgdb at fedoraproject.org Thu Jul 23 23:49:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:49:18 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723234918.B284410F86A@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 10 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From pkgdb at fedoraproject.org Thu Jul 23 23:49:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:49:20 +0000 Subject: [pkgdb] bygfoot ownership updated Message-ID: <20090723234920.217CA10F8AC@bastion2.fedora.phx.redhat.com> Package bygfoot in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bygfoot From cwickert at fedoraproject.org Thu Jul 23 23:55:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Thu, 23 Jul 2009 23:55:41 +0000 (UTC) Subject: rpms/gwget/devel gwget.spec,1.32,1.33 Message-ID: <20090723235541.EF20011C048A@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gwget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21770 Modified Files: gwget.spec Log Message: * Thu Jul 23 2009 Christoph Wickert - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - Temporarily disable broken epiphany extension Index: gwget.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwget/devel/gwget.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gwget.spec 11 Jun 2009 01:27:59 -0000 1.32 +++ gwget.spec 23 Jul 2009 23:55:41 -0000 1.33 @@ -1,8 +1,10 @@ -%define epimajor 2.26 +%global epimajor 2.26 +# disable epiphany extension for F12 mass rebuild +%global _with_epi 0 Name: gwget Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Graphical download manager that uses wget License: GPLv2+ @@ -22,6 +24,12 @@ BuildRequires: desktop-file-utils Requires: wget >= 1.9 Requires(post): GConf2 Requires(preun): GConf2 +%if 0%{?_with_epi} == 1 +BuildRequires: epiphany-devel >= %{epimajor} +%endif + +# disable epiphany extension for mass rebuild +Obsoletes: gwget-epiphany-extension <= 1.0.1-4 # Was a buildreq on autoconf BuildRequires: automake, libtool @@ -31,17 +39,17 @@ Gwget is a Download Manager for Gnome 2. Currently, very basic wget options are available, supporting multiple downloads, drag&drop and display the errors from wget process. - -%package epiphany-extension +%if 0%{?_with_epi} == 1 +%package epiphany-extension Summary: Gwget2 extensions for epiphany Group: Applications/Internet -BuildRequires: epiphany-devel >= %{epimajor} + Requires: %{name} = %{version} Requires: epiphany >= %{epimajor} %description epiphany-extension This package contains gwget2 extensions for epiphany. - +%endif %prep %setup -q @@ -106,13 +114,19 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/dbus-1/services/org.gnome.gwget.service +%if 0%{?_with_epi} == 1 %files epiphany-extension %defattr (-,root,root,-) %{_libdir}/epiphany/*/extensions/gwget.xml %{_libdir}/epiphany/*/extensions/libgwgetextension.so +%endif %changelog +* Thu Jul 23 2009 Christoph Wickert - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +- Temporarily disable broken epiphany extension + * Thu Jun 11 2009 Christoph Wickert - 1.0.1-4 - Rebuild against epiphany 2.27 and already prepare for 2.28 From jakub at fedoraproject.org Thu Jul 23 23:57:27 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Thu, 23 Jul 2009 23:57:27 +0000 (UTC) Subject: rpms/glibc/devel glibc-fedora.patch, 1.308, 1.309 glibc.spec, 1.400, 1.401 Message-ID: <20090723235727.F06BA11C048A@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22950 Modified Files: glibc-fedora.patch glibc.spec Log Message: 2.10.90-7.1 glibc-fedora.patch: ChangeLog | 35 + ChangeLog.15 | 37 + ChangeLog.16 | 101 ++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 debug/tst-chk1.c | 7 elf/ldconfig.c | 25 elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libc/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S | 4 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 + localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 nis/nss | 2 nptl/ChangeLog | 19 nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 posix/Makefile | 15 posix/getconf.speclist.h | 39 + streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ---------- sysdeps/ia64/libgcc-compat.c | 84 ++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 sysdeps/unix/sysv/linux/futimesat.c | 23 sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 + sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 60 files changed, 789 insertions(+), 469 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.308 retrieving revision 1.309 diff -u -p -r1.308 -r1.309 --- glibc-fedora.patch 23 Jul 2009 16:45:23 -0000 1.308 +++ glibc-fedora.patch 23 Jul 2009 23:57:26 -0000 1.309 @@ -2195,3 +2195,25 @@ return; abbrvar = (stdrp == NULL) ? "" : stdrp->r_abbrvar; doabbr(result, zp->z_format, abbrvar, FALSE, TRUE); +2009-07-23 Ulrich Drepper + + * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Fix error + path when not using absolute timeout futex. + +--- libc/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S ++++ libc/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S +@@ -551,12 +551,12 @@ __pthread_cond_timedwait: + jne 53b + + cmpq 24(%rsp), %r9 +- jbe 45b ++ jbe 15f + + cmpq %rax, %r9 + ja 39b + +- cmpq $-ETIMEDOUT, %r14 ++15: cmpq $-ETIMEDOUT, %r14 + jne 8b + + jmp 99b Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.400 retrieving revision 1.401 diff -u -p -r1.400 -r1.401 --- glibc.spec 23 Jul 2009 16:45:24 -0000 1.400 +++ glibc.spec 23 Jul 2009 23:57:27 -0000 1.401 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 7 +Release: 7.1 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -1037,6 +1037,9 @@ rm -f *.filelist* %endif %changelog +* Fri Jul 24 2009 Jakub Jelinek - 2.10.90-7.1 +- Fix up pthread_cond_timedwait on x86_64 with old kernels. + * Thu Jul 23 2009 Andreas Schwab - 2.10.90-7 - Update from master. - Build with -DNDEBUG unless using a prerelease. From pkgdb at fedoraproject.org Thu Jul 23 23:58:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:58:48 +0000 Subject: [pkgdb] libgtksourceviewmm ownership updated Message-ID: <20090723235848.7FDBF10F8A9@bastion2.fedora.phx.redhat.com> Package libgtksourceviewmm in Fedora 10 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libgtksourceviewmm From pkgdb at fedoraproject.org Thu Jul 23 23:58:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:58:48 +0000 Subject: [pkgdb] libgtksourceviewmm ownership updated Message-ID: <20090723235848.3548810F897@bastion2.fedora.phx.redhat.com> Package libgtksourceviewmm in Fedora 11 is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libgtksourceviewmm From pkgdb at fedoraproject.org Thu Jul 23 23:58:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 23 Jul 2009 23:58:50 +0000 Subject: [pkgdb] libgtksourceviewmm ownership updated Message-ID: <20090723235850.F0C5810F8AC@bastion2.fedora.phx.redhat.com> Package libgtksourceviewmm in Fedora devel is now owned by hguemar To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libgtksourceviewmm From pkgdb at fedoraproject.org Fri Jul 24 00:03:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 00:03:39 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090724000339.8577C10F86A@bastion2.fedora.phx.redhat.com> Package krename in Fedora devel is now owned by mathstuf To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Fri Jul 24 00:03:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 00:03:58 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090724000358.A088F10F890@bastion2.fedora.phx.redhat.com> Package krename in Fedora 11 is now owned by mathstuf To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From pkgdb at fedoraproject.org Fri Jul 24 00:04:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 00:04:00 +0000 Subject: [pkgdb] krename ownership updated Message-ID: <20090724000400.8535F10F89D@bastion2.fedora.phx.redhat.com> Package krename in Fedora 10 is now owned by mathstuf To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/krename From cwickert at fedoraproject.org Fri Jul 24 00:24:51 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 00:24:51 +0000 (UTC) Subject: rpms/gwget/devel noautobuild,1.1,NONE Message-ID: <20090724002451.4AA3411C048A@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gwget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2305 Removed Files: noautobuild Log Message: remove noautobuild file --- noautobuild DELETED --- From mikep at fedoraproject.org Fri Jul 24 00:29:27 2009 From: mikep at fedoraproject.org (mikep) Date: Fri, 24 Jul 2009 00:29:27 +0000 (UTC) Subject: rpms/libdmapsharing/devel .cvsignore, 1.2, 1.3 libdmapsharing.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090724002927.B5F1711C048A@cvs1.fedora.phx.redhat.com> Author: mikep Update of /cvs/pkgs/rpms/libdmapsharing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4711 Modified Files: .cvsignore libdmapsharing.spec sources Log Message: Update to 1.9.0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Mar 2009 00:47:16 -0000 1.2 +++ .cvsignore 24 Jul 2009 00:29:26 -0000 1.3 @@ -1 +1 @@ -libdmapsharing-1.9.0.4.tar.gz +libdmapsharing-1.9.0.9.tar.gz Index: libdmapsharing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/libdmapsharing.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libdmapsharing.spec 11 Mar 2009 00:47:16 -0000 1.1 +++ libdmapsharing.spec 24 Jul 2009 00:29:27 -0000 1.2 @@ -1,5 +1,5 @@ Name: libdmapsharing -Version: 1.9.0.4 +Version: 1.9.0.9 Release: 1%{?dist} License: LGPLv2+ Source: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Thu Jul 23 2009 W. Michael Petullo - 1.9.0.9-1 + - New upstream version. + * Tue Mar 10 2009 W. Michael Petullo - 1.9.0.4-1 - New upstream version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Mar 2009 00:47:16 -0000 1.2 +++ sources 24 Jul 2009 00:29:27 -0000 1.3 @@ -1 +1 @@ -27755b14bfc97ce500893069e50d5029 libdmapsharing-1.9.0.4.tar.gz +7b6b2df78404dc5120a23d858859b6d8 libdmapsharing-1.9.0.9.tar.gz From olea at fedoraproject.org Fri Jul 24 00:36:47 2009 From: olea at fedoraproject.org (Ismael Olea) Date: Fri, 24 Jul 2009 00:36:47 +0000 (UTC) Subject: rpms/purple-facebookchat/devel .cvsignore, 1.9, 1.10 import.log, 1.3, 1.4 purple-facebookchat-Makefile, 1.3, 1.4 purple-facebookchat.spec, 1.15, 1.16 sources, 1.11, 1.12 Message-ID: <20090724003647.23BE311C048A@cvs1.fedora.phx.redhat.com> Author: olea Update of /cvs/pkgs/rpms/purple-facebookchat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7607/devel Modified Files: .cvsignore import.log purple-facebookchat-Makefile purple-facebookchat.spec sources Log Message: updating to 1.60 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 27 Jun 2009 15:21:39 -0000 1.9 +++ .cvsignore 24 Jul 2009 00:36:46 -0000 1.10 @@ -1 +1 @@ -pidgin-facebookchat-source-1.52.tar.bz2 +pidgin-facebookchat-source-1.60.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 27 Jun 2009 15:21:40 -0000 1.3 +++ import.log 24 Jul 2009 00:36:46 -0000 1.4 @@ -1,3 +1,4 @@ purple-facebookchat-1_50-1olea:HEAD:purple-facebookchat-1.50-1olea.src.rpm:1239625208 purple-facebookchat-1_51-1olea:HEAD:purple-facebookchat-1.51-1olea.src.rpm:1244921772 purple-facebookchat-1_52-1olea:HEAD:purple-facebookchat-1.52-1olea.src.rpm:1246116000 +purple-facebookchat-1_60-1olea:HEAD:purple-facebookchat-1.60-1olea.src.rpm:1248395737 Index: purple-facebookchat-Makefile =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/purple-facebookchat-Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- purple-facebookchat-Makefile 13 Jun 2009 19:39:45 -0000 1.3 +++ purple-facebookchat-Makefile 24 Jul 2009 00:36:46 -0000 1.4 @@ -2,6 +2,12 @@ PREFIX=/usr LIBDIR=$(PREFIX)/lib ICONDIR=$(PREFIX)/share/pixmaps/pidgin/protocols SOURCES = \ + fb_friendlist.h \ + fb_friendlist.c \ + fb_util.h \ + fb_util.c \ + fb_conversation.c \ + fb_conversation.h \ libfacebook.h \ libfacebook.c \ fb_blist.h \ Index: purple-facebookchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/purple-facebookchat.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- purple-facebookchat.spec 27 Jun 2009 15:21:40 -0000 1.15 +++ purple-facebookchat.spec 24 Jul 2009 00:36:46 -0000 1.16 @@ -1,5 +1,5 @@ Name: purple-facebookchat -Version: 1.52 +Version: 1.60 Release: 1%{?dist} Summary: Libpurple plug-in supporting facebook IM Group: Applications/Internet @@ -10,7 +10,7 @@ Source3: %{name}-Makefile Provides: pidgin-facebookchat = %{version}-%{release} Obsoletes: pidgin-facebookchat < 1.35-3 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libpurple-devel >= 2.5.7 +BuildRequires: libpurple-devel >= 2.5.8 BuildRequires: json-glib-devel #BuildRequires: zlib-devel ExcludeArch: s390x @@ -51,6 +51,13 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/protocols/*/facebook.png %changelog +* Tue Jul 23 2009 Ismael Olea 1.60-1 +- updating to 1.60 +- adding new sourcecode files to makefile + +* Tue Jul 7 2009 Ismael Olea 1.54-1 +- updating to 1.54 + * Sat Jun 13 2009 Ismael Olea 1.51-1 - updating to 1.51 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 Jun 2009 15:21:40 -0000 1.11 +++ sources 24 Jul 2009 00:36:46 -0000 1.12 @@ -1 +1 @@ -1ade5af6ad5ad3d78f181bd37b0e7114 pidgin-facebookchat-source-1.52.tar.bz2 +c4a4715e55858c5146b24135c153a1a8 pidgin-facebookchat-source-1.60.tar.bz2 From mikep at fedoraproject.org Fri Jul 24 00:36:51 2009 From: mikep at fedoraproject.org (mikep) Date: Fri, 24 Jul 2009 00:36:51 +0000 (UTC) Subject: rpms/libdmapsharing/F-10 .cvsignore, 1.1, 1.2 libdmapsharing.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090724003651.5BAB511C048A@cvs1.fedora.phx.redhat.com> Author: mikep Update of /cvs/pkgs/rpms/libdmapsharing/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7719 Modified Files: .cvsignore libdmapsharing.spec sources Log Message: Update to 1.9.0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 9 Mar 2009 15:57:22 -0000 1.1 +++ .cvsignore 24 Jul 2009 00:36:50 -0000 1.2 @@ -0,0 +1 @@ +libdmapsharing-1.9.0.9.tar.gz Index: libdmapsharing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-10/libdmapsharing.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libdmapsharing.spec 21 Mar 2009 16:11:23 -0000 1.1 +++ libdmapsharing.spec 24 Jul 2009 00:36:51 -0000 1.2 @@ -1,5 +1,5 @@ Name: libdmapsharing -Version: 1.9.0.4 +Version: 1.9.0.9 Release: 1%{?dist} License: LGPLv2+ Source: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Thu Jul 23 2009 W. Michael Petullo - 1.9.0.9-1 + - New upstream version. + * Tue Mar 10 2009 W. Michael Petullo - 1.9.0.4-1 - New upstream version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 21 Mar 2009 16:11:23 -0000 1.2 +++ sources 24 Jul 2009 00:36:51 -0000 1.3 @@ -1 +1 @@ -27755b14bfc97ce500893069e50d5029 libdmapsharing-1.9.0.4.tar.gz +7b6b2df78404dc5120a23d858859b6d8 libdmapsharing-1.9.0.9.tar.gz From olea at fedoraproject.org Fri Jul 24 00:38:15 2009 From: olea at fedoraproject.org (Ismael Olea) Date: Fri, 24 Jul 2009 00:38:15 +0000 (UTC) Subject: rpms/purple-facebookchat/F-11 .cvsignore, 1.9, 1.10 import.log, 1.3, 1.4 purple-facebookchat-Makefile, 1.3, 1.4 purple-facebookchat.spec, 1.16, 1.17 sources, 1.11, 1.12 Message-ID: <20090724003815.2246C11C048A@cvs1.fedora.phx.redhat.com> Author: olea Update of /cvs/pkgs/rpms/purple-facebookchat/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8300/F-11 Modified Files: .cvsignore import.log purple-facebookchat-Makefile purple-facebookchat.spec sources Log Message: updating to 1.60 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-11/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 27 Jun 2009 15:21:37 -0000 1.9 +++ .cvsignore 24 Jul 2009 00:38:14 -0000 1.10 @@ -1 +1 @@ -pidgin-facebookchat-source-1.52.tar.bz2 +pidgin-facebookchat-source-1.60.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 27 Jun 2009 15:21:37 -0000 1.3 +++ import.log 24 Jul 2009 00:38:14 -0000 1.4 @@ -1,3 +1,4 @@ purple-facebookchat-1_50-1olea:HEAD:purple-facebookchat-1.50-1olea.src.rpm:1239625208 purple-facebookchat-1_51-1olea:F-11:purple-facebookchat-1.51-1olea.src.rpm:1244922084 purple-facebookchat-1_52-1olea:F-11:purple-facebookchat-1.52-1olea.src.rpm:1246115997 +purple-facebookchat-1_60-1olea:F-11:purple-facebookchat-1.60-1olea.src.rpm:1248395849 Index: purple-facebookchat-Makefile =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-11/purple-facebookchat-Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- purple-facebookchat-Makefile 13 Jun 2009 19:43:20 -0000 1.3 +++ purple-facebookchat-Makefile 24 Jul 2009 00:38:14 -0000 1.4 @@ -2,6 +2,12 @@ PREFIX=/usr LIBDIR=$(PREFIX)/lib ICONDIR=$(PREFIX)/share/pixmaps/pidgin/protocols SOURCES = \ + fb_friendlist.h \ + fb_friendlist.c \ + fb_util.h \ + fb_util.c \ + fb_conversation.c \ + fb_conversation.h \ libfacebook.h \ libfacebook.c \ fb_blist.h \ Index: purple-facebookchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-11/purple-facebookchat.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- purple-facebookchat.spec 27 Jun 2009 15:21:37 -0000 1.16 +++ purple-facebookchat.spec 24 Jul 2009 00:38:14 -0000 1.17 @@ -1,5 +1,5 @@ Name: purple-facebookchat -Version: 1.52 +Version: 1.60 Release: 1%{?dist} Summary: Libpurple plug-in supporting facebook IM Group: Applications/Internet @@ -10,7 +10,7 @@ Source3: %{name}-Makefile Provides: pidgin-facebookchat = %{version}-%{release} Obsoletes: pidgin-facebookchat < 1.35-3 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libpurple-devel >= 2.5.7 +BuildRequires: libpurple-devel >= 2.5.8 BuildRequires: json-glib-devel #BuildRequires: zlib-devel ExcludeArch: s390x @@ -51,6 +51,13 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/protocols/*/facebook.png %changelog +* Tue Jul 23 2009 Ismael Olea 1.60-1 +- updating to 1.60 +- adding new sourcecode files to makefile + +* Tue Jul 7 2009 Ismael Olea 1.54-1 +- updating to 1.54 + * Sat Jun 13 2009 Ismael Olea 1.51-1 - updating to 1.51 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 Jun 2009 15:21:37 -0000 1.11 +++ sources 24 Jul 2009 00:38:14 -0000 1.12 @@ -1 +1 @@ -1ade5af6ad5ad3d78f181bd37b0e7114 pidgin-facebookchat-source-1.52.tar.bz2 +c4a4715e55858c5146b24135c153a1a8 pidgin-facebookchat-source-1.60.tar.bz2 From mikep at fedoraproject.org Fri Jul 24 00:38:38 2009 From: mikep at fedoraproject.org (mikep) Date: Fri, 24 Jul 2009 00:38:38 +0000 (UTC) Subject: rpms/libdmapsharing/F-11 .cvsignore, 1.2, 1.3 libdmapsharing.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090724003838.6F8A711C048A@cvs1.fedora.phx.redhat.com> Author: mikep Update of /cvs/pkgs/rpms/libdmapsharing/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8549 Modified Files: .cvsignore libdmapsharing.spec sources Log Message: Update to 1.9.0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Mar 2009 00:47:16 -0000 1.2 +++ .cvsignore 24 Jul 2009 00:38:38 -0000 1.3 @@ -1 +1 @@ -libdmapsharing-1.9.0.4.tar.gz +libdmapsharing-1.9.0.9.tar.gz Index: libdmapsharing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-11/libdmapsharing.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libdmapsharing.spec 11 Mar 2009 00:47:16 -0000 1.1 +++ libdmapsharing.spec 24 Jul 2009 00:38:38 -0000 1.2 @@ -1,5 +1,5 @@ Name: libdmapsharing -Version: 1.9.0.4 +Version: 1.9.0.9 Release: 1%{?dist} License: LGPLv2+ Source: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Thu Jul 23 2009 W. Michael Petullo - 1.9.0.9-1 + - New upstream version. + * Tue Mar 10 2009 W. Michael Petullo - 1.9.0.4-1 - New upstream version. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Mar 2009 00:47:16 -0000 1.2 +++ sources 24 Jul 2009 00:38:38 -0000 1.3 @@ -1 +1 @@ -27755b14bfc97ce500893069e50d5029 libdmapsharing-1.9.0.4.tar.gz +7b6b2df78404dc5120a23d858859b6d8 libdmapsharing-1.9.0.9.tar.gz From olea at fedoraproject.org Fri Jul 24 00:40:20 2009 From: olea at fedoraproject.org (Ismael Olea) Date: Fri, 24 Jul 2009 00:40:20 +0000 (UTC) Subject: rpms/purple-facebookchat/F-10 .cvsignore, 1.10, 1.11 import.log, 1.3, 1.4 purple-facebookchat-Makefile, 1.3, 1.4 purple-facebookchat.spec, 1.15, 1.16 sources, 1.11, 1.12 Message-ID: <20090724004020.6341F11C04D7@cvs1.fedora.phx.redhat.com> Author: olea Update of /cvs/pkgs/rpms/purple-facebookchat/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9252/F-10 Modified Files: .cvsignore import.log purple-facebookchat-Makefile purple-facebookchat.spec sources Log Message: updating to 1.60 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-10/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 27 Jun 2009 15:21:36 -0000 1.10 +++ .cvsignore 24 Jul 2009 00:40:19 -0000 1.11 @@ -1 +1 @@ -pidgin-facebookchat-source-1.52.tar.bz2 +pidgin-facebookchat-source-1.60.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 27 Jun 2009 15:21:37 -0000 1.3 +++ import.log 24 Jul 2009 00:40:20 -0000 1.4 @@ -1,3 +1,4 @@ purple-facebookchat-1_50-1olea:F-10:purple-facebookchat-1.50-1olea.src.rpm:1239625210 purple-facebookchat-1_51-1olea:F-10:purple-facebookchat-1.51-1olea.src.rpm:1244922266 purple-facebookchat-1_52-1olea:F-10:purple-facebookchat-1.52-1olea.src.rpm:1246115999 +purple-facebookchat-1_60-1olea:F-10:purple-facebookchat-1.60-1olea.src.rpm:1248395949 Index: purple-facebookchat-Makefile =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-10/purple-facebookchat-Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- purple-facebookchat-Makefile 13 Jun 2009 19:46:05 -0000 1.3 +++ purple-facebookchat-Makefile 24 Jul 2009 00:40:20 -0000 1.4 @@ -2,6 +2,12 @@ PREFIX=/usr LIBDIR=$(PREFIX)/lib ICONDIR=$(PREFIX)/share/pixmaps/pidgin/protocols SOURCES = \ + fb_friendlist.h \ + fb_friendlist.c \ + fb_util.h \ + fb_util.c \ + fb_conversation.c \ + fb_conversation.h \ libfacebook.h \ libfacebook.c \ fb_blist.h \ Index: purple-facebookchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-10/purple-facebookchat.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- purple-facebookchat.spec 27 Jun 2009 15:21:37 -0000 1.15 +++ purple-facebookchat.spec 24 Jul 2009 00:40:20 -0000 1.16 @@ -1,5 +1,5 @@ Name: purple-facebookchat -Version: 1.52 +Version: 1.60 Release: 1%{?dist} Summary: Libpurple plug-in supporting facebook IM Group: Applications/Internet @@ -10,7 +10,7 @@ Source3: %{name}-Makefile Provides: pidgin-facebookchat = %{version}-%{release} Obsoletes: pidgin-facebookchat < 1.35-3 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libpurple-devel >= 2.5.7 +BuildRequires: libpurple-devel >= 2.5.8 BuildRequires: json-glib-devel #BuildRequires: zlib-devel ExcludeArch: s390x @@ -51,6 +51,13 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/protocols/*/facebook.png %changelog +* Tue Jul 23 2009 Ismael Olea 1.60-1 +- updating to 1.60 +- adding new sourcecode files to makefile + +* Tue Jul 7 2009 Ismael Olea 1.54-1 +- updating to 1.54 + * Sat Jun 13 2009 Ismael Olea 1.51-1 - updating to 1.51 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 27 Jun 2009 15:21:37 -0000 1.11 +++ sources 24 Jul 2009 00:40:20 -0000 1.12 @@ -1 +1 @@ -1ade5af6ad5ad3d78f181bd37b0e7114 pidgin-facebookchat-source-1.52.tar.bz2 +c4a4715e55858c5146b24135c153a1a8 pidgin-facebookchat-source-1.60.tar.bz2 From mikep at fedoraproject.org Fri Jul 24 00:40:52 2009 From: mikep at fedoraproject.org (mikep) Date: Fri, 24 Jul 2009 00:40:52 +0000 (UTC) Subject: rpms/libdmapsharing/F-9 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090724004052.069FE11C04D7@cvs1.fedora.phx.redhat.com> Author: mikep Update of /cvs/pkgs/rpms/libdmapsharing/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9529 Modified Files: .cvsignore sources Log Message: Update to 1.9.0.9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-9/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 9 Mar 2009 15:57:22 -0000 1.1 +++ .cvsignore 24 Jul 2009 00:40:51 -0000 1.2 @@ -0,0 +1 @@ +libdmapsharing-1.9.0.9.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/F-9/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 9 Mar 2009 15:57:22 -0000 1.1 +++ sources 24 Jul 2009 00:40:51 -0000 1.2 @@ -0,0 +1 @@ +7b6b2df78404dc5120a23d858859b6d8 libdmapsharing-1.9.0.9.tar.gz From tagoh at fedoraproject.org Fri Jul 24 00:49:23 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Fri, 24 Jul 2009 00:49:23 +0000 (UTC) Subject: rpms/im-chooser/devel noautobuild,1.1,NONE Message-ID: <20090724004923.5030811C048A@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/im-chooser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13062 Removed Files: noautobuild Log Message: remove noautobuild --- noautobuild DELETED --- From tagoh at fedoraproject.org Fri Jul 24 00:49:46 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Fri, 24 Jul 2009 00:49:46 +0000 (UTC) Subject: rpms/imsettings/devel imsettings-immodule-conf.patch, NONE, 1.1 imsettings.spec, 1.29, 1.30 noautobuild, 1.1, NONE Message-ID: <20090724004946.0EA6011C048A@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/imsettings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13277 Modified Files: imsettings.spec Added Files: imsettings-immodule-conf.patch Removed Files: noautobuild Log Message: remove noautobuild imsettings-immodule-conf.patch: factory.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) --- NEW FILE imsettings-immodule-conf.patch --- 2009-07-23 Akira TAGOH * src/factory.c (imsettings_manager_real_whats_im_running): Support immodule only configuration file. Index: src/factory.c =================================================================== --- src/factory.c (????? 299) +++ src/factory.c (?????) @@ -797,7 +797,7 @@ IMSettingsManagerPrivate *priv = IMSETTINGS_MANAGER_GET_PRIVATE (observer); IMSettingsInfo *info = NULL; gchar *module, *pidfile = NULL; - const gchar *xinputfile; + const gchar *xinputfile, *xim, *gtkimm; pid_t pid; module = imsettings_manager_real_get_current_user_im(observer, error); @@ -823,6 +823,17 @@ pidfile = _build_pidfilename(xinputfile, priv->display_name, "xim"); pid = _get_pid(pidfile, "xim", error); if (pid == 0) { + /* for immodules */ + xim = imsettings_info_get_xim(info); + if (xim != NULL && strcmp(xim, "none") == 0) { + gtkimm = imsettings_info_get_gtkimm(info); + if (strcmp(gtkimm, "gtk-im-context-simple") != 0) { + /* this may be an immodule that is only available for gtk+ */ + g_error_free(*error); + *error = NULL; + goto end; + } + } if (g_error_matches(*error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { /* No pidfile is available. there aren't anything else to do. * basically this is no problem. someone may just did stop an IM Index: imsettings.spec =================================================================== RCS file: /cvs/pkgs/rpms/imsettings/devel/imsettings.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- imsettings.spec 13 Apr 2009 11:11:41 -0000 1.29 +++ imsettings.spec 24 Jul 2009 00:49:44 -0000 1.30 @@ -1,6 +1,6 @@ Name: imsettings Version: 0.106.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: http://code.google.com/p/imsettings/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -16,6 +16,7 @@ Source0: http://imsettings.googlecode.co Source1: imsettings-kde.sh Patch0: imsettings-constraint-of-language.patch Patch1: imsettings-disable-xim.patch +Patch2: imsettings-immodule-conf.patch Summary: Delivery framework for general Input Method configuration Group: Applications/System @@ -82,6 +83,7 @@ This package contains a plugin to get th %setup -q %patch0 -p1 -b .0-lang %patch1 -p1 -b .1-xim +%patch2 -p0 -b .2-immodule %build %configure \ @@ -201,6 +203,9 @@ fi %changelog +* Thu Jul 23 2009 Akira TAGOH - 0.106.2-3 +- Support immodule only configuration file. + * Mon Apr 13 2009 Akira TAGOH - 0.106.2-2 - Disable applet by default. --- noautobuild DELETED --- From mso at fedoraproject.org Fri Jul 24 00:52:22 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 00:52:22 +0000 (UTC) Subject: rpms/leonidas-backgrounds/F-11 dead.package, NONE, 1.1 .cvsignore, 1.5, NONE Makefile, 1.1, NONE branch, 1.1, NONE import.log, 1.1, NONE leonidas-backgrounds.spec, 1.4, NONE sources, 1.5, NONE Message-ID: <20090724005222.2E32F11C048A@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/leonidas-backgrounds/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14503/F-11 Added Files: dead.package Removed Files: .cvsignore Makefile branch import.log leonidas-backgrounds.spec sources Log Message: remove due to licensing issues. rhbz #512836 --- NEW FILE dead.package --- The images in the package are from non-free sources. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- branch DELETED --- --- import.log DELETED --- --- leonidas-backgrounds.spec DELETED --- --- sources DELETED --- From mso at fedoraproject.org Fri Jul 24 00:52:22 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 00:52:22 +0000 (UTC) Subject: rpms/leonidas-backgrounds/devel dead.package, NONE, 1.1 .cvsignore, 1.5, NONE Makefile, 1.1, NONE import.log, 1.1, NONE leonidas-backgrounds.spec, 1.4, NONE sources, 1.5, NONE Message-ID: <20090724005222.9908911C048A@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/leonidas-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14503/devel Added Files: dead.package Removed Files: .cvsignore Makefile import.log leonidas-backgrounds.spec sources Log Message: remove due to licensing issues. rhbz #512836 --- NEW FILE dead.package --- The images in the package are from non-free sources. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- import.log DELETED --- --- leonidas-backgrounds.spec DELETED --- --- sources DELETED --- From pkgdb at fedoraproject.org Fri Jul 24 01:04:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:04:00 +0000 Subject: [pkgdb] libbeagle ownership updated Message-ID: <20090724010400.6DBC110F8AC@bastion2.fedora.phx.redhat.com> Package libbeagle in Fedora devel was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:07:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:07:35 +0000 Subject: [pkgdb] libbeagle ownership updated Message-ID: <20090724010734.E546810F897@bastion2.fedora.phx.redhat.com> Package libbeagle in Fedora devel is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:07:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:07:49 +0000 Subject: [pkgdb] libbeagle: nushio has requested commit Message-ID: <20090724010749.90FF410F890@bastion2.fedora.phx.redhat.com> nushio has requested the commit acl on libbeagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:07:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:07:51 +0000 Subject: [pkgdb] libbeagle: nushio has requested watchcommits Message-ID: <20090724010751.7814F10F8A9@bastion2.fedora.phx.redhat.com> nushio has requested the watchcommits acl on libbeagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:07:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:07:54 +0000 Subject: [pkgdb] libbeagle: nushio has requested watchbugzilla Message-ID: <20090724010754.1764C10F8AF@bastion2.fedora.phx.redhat.com> nushio has requested the watchbugzilla acl on libbeagle (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From mso at fedoraproject.org Fri Jul 24 01:12:15 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:12:15 +0000 (UTC) Subject: rpms/leonidas-backgrounds/F-11 .cvsignore, 1.6, 1.7 Makefile, 1.2, 1.3 branch, 1.2, 1.3 import.log, 1.2, 1.3 leonidas-backgrounds.spec, 1.5, 1.6 sources, 1.6, 1.7 dead.package, 1.1, NONE Message-ID: <20090724011215.C8C2D11C048A@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/leonidas-backgrounds/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23224/F-11 Added Files: .cvsignore Makefile branch import.log leonidas-backgrounds.spec sources Removed Files: dead.package Log Message: Revert last commit. Should have been done for invinxble-backgrounds... Index: .cvsignore =================================================================== RCS file: .cvsignore diff -N .cvsignore --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .cvsignore 24 Jul 2009 01:12:14 -0000 1.7 @@ -0,0 +1 @@ +leonidas-backgrounds-11.0.0.tar.lzma Index: Makefile =================================================================== RCS file: Makefile diff -N Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile 24 Jul 2009 01:12:14 -0000 1.3 @@ -0,0 +1,22 @@ +# Makefile for source rpm: leonidas-backgrounds +# $Id$ +NAME := leonidas-backgrounds +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) + Index: branch =================================================================== RCS file: branch diff -N branch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ branch 24 Jul 2009 01:12:14 -0000 1.3 @@ -0,0 +1,2 @@ +F-11 + Index: import.log =================================================================== RCS file: import.log diff -N import.log --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ import.log 24 Jul 2009 01:12:14 -0000 1.3 @@ -0,0 +1,2 @@ +leonidas-backgrounds-10_92_1-2_fc11:HEAD:leonidas-backgrounds-10.92.1-2.fc11.src.rpm:1236669130 + Index: leonidas-backgrounds.spec =================================================================== RCS file: leonidas-backgrounds.spec diff -N leonidas-backgrounds.spec --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ leonidas-backgrounds.spec 24 Jul 2009 01:12:14 -0000 1.6 @@ -0,0 +1,227 @@ +Name: leonidas-backgrounds +Version: 11.0.0 +Release: 1%{?dist} +Summary: Leonidas desktop backgrounds + +Group: Applications/Multimedia +License: CC-BY-SA +URL: https://fedoraproject.org/wiki/F11_Artwork + +# This is a Fedora maintained package which is specific to our distribution. +# The source is only available from within this srpm. +# Images in the source archive are basically crops/resizes of +# https://fedoraproject.org/w/uploads/e/e9/Artwork_F11_Betamockup1_n.jpg +# and +# https://fedoraproject.org/wiki/File:King_4096x1536.xcf.bz2 +Source0: %{name}-%{version}.tar.lzma +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +Requires: %{name}-common = %{version}-%{release} +Requires: %{name}-lion-dual = %{version}-%{release} + +%description +This package contains desktop backgrounds for the leonidas theme. + +%prep +%setup -q + +%package common +Summary: Leonidas desktop backgrounds shared between GNOME and KDE +Group: Applications/Multimedia + +%description common +This package includes the common files used by both GNOME and KDE. + +%package kdm +Summary: Leonidas desktop background for KDM +Group: Applications/Multimedia + +%description kdm +Leonidas desktop background used in KDM. + +%package landscape +Summary: Leonidas desktop backgrounds with the landscape theme +Group: Applications/Multimedia + +%description landscape +This package includes additional Leonidas backgrounds based on the landscape +theme that was used in F11 Leonidas Beta. + +%package lion +Summary: Extra leonidas desktop background featuring lion +Group: Applications/Multimedia +Requires: %{name}-lion-dual = %{version}-%{release} + +%description lion +This package includes extra leonidas background featuring the lion that is +present in F11 Leonidas only on dual screens both on single screens as well. + +%package lion-dual +Summary: Shared dual screen lion themed Leonidas desktop backgrounds +Group: Applications/Multimedia + +%description lion-dual +This package includes dual screen images shared between the +leonidas-backgrounds and leonidas-backgrounds-lion packages. + + +%build + + +%install +rm -rf $RPM_BUILD_ROOT +# prepare the dir structure +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/ +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/normal +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/wide +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/normal.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/wide.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/ +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normal +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normalish +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/wide +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normal.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normalish.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/wide.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties + +# copy the landscape images +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/normal \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/wide \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/normal.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/wide.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape + +# copy the lion images +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normal \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normalish \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/wide \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normal.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normalish.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/wide.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion + +# copy slideshow xml files +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas-lion.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas_left.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas_right.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas + +# copy metadata xmls file +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas-lion.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas-landscape.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas.xml +%{_datadir}/backgrounds/leonidas/leonidas.xml + +%files common +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%dir %{_datadir}/backgrounds/leonidas/lion/normalish +%dir %{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024 +%dir %{_datadir}/backgrounds/leonidas/lion/wide +%dir %{_datadir}/backgrounds/leonidas/lion/wide/1920x1200 +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon.jpg +%{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024/leonidas-1-noon.jpg +%{_datadir}/backgrounds/leonidas/lion/wide/1920x1200/leonidas-1-noon.jpg + +%files lion-dual +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion +%{_datadir}/backgrounds/leonidas/lion/normal.dual +%{_datadir}/backgrounds/leonidas/lion/normalish.dual +%{_datadir}/backgrounds/leonidas/lion/wide.dual + +%files lion +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%dir %{_datadir}/backgrounds/leonidas/lion/normalish +%dir %{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024 +%dir %{_datadir}/backgrounds/leonidas/lion/wide +%dir %{_datadir}/backgrounds/leonidas/lion/wide/1920x1200 +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas-lion.xml +%{_datadir}/backgrounds/leonidas/leonidas-lion.xml +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon_right.jpg +%{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024/leonidas-1-noon_right.jpg +%{_datadir}/backgrounds/leonidas/lion/wide/1920x1200/leonidas-1-noon_right.jpg + +%files kdm +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon.png + +%files landscape +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%{_datadir}/backgrounds/leonidas/landscape +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas-landscape.xml +%{_datadir}/backgrounds/leonidas/leonidas_left.xml +%{_datadir}/backgrounds/leonidas/leonidas_right.xml + +%changelog +* Sat May 09 2009 Martin Sourada - 11.0.0-1 +- Include the lion design optionally on single screens as well via -lion + subpackage +- Split the dual screen images with lion design into -lion-dual subpackage + to allow having only one of the single screens installed +- Don't forget to own some all used directories not provided by other pkgs + +* Mon Apr 13 2009 Martin Sourada - 10.93.1-1 +- Updated lion backgrounds +- Don't display the lion for single screens +- Use just leonidas-1-noon.png for the kdm version, no need to add the '-simple' + suffix + +* Fri Apr 10 2009 Martin Sourada - 10.93.0-1 +- Add lion backgrounds +- Split -common (shared between GNOME and KDE), -kdm (simplified version for + KDM) and -landscape (F11 Leonidas Beta wallpapers) subpackages + +* Mon Mar 09 2009 Martin Sourada - 10.92.1-2 +- Add note about source (we are upstream and don't host the source elsewhere) +- Don't pass -r to cp, it's already implied by -a + +* Mon Mar 09 2009 Martin Sourada - 10.92.1-1 +- Update to newer version + - add dual screen versions + - add left part of dual screen as a wallpaper on its own + +* Thu Mar 05 2009 Martin Sourada - 10.92.0-1 +- Initial packaging + Index: sources =================================================================== RCS file: sources diff -N sources --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sources 24 Jul 2009 01:12:14 -0000 1.7 @@ -0,0 +1,2 @@ +418c8dc2d203ed42224c574396f461c4 leonidas-backgrounds-11.0.0.tar.lzma + --- dead.package DELETED --- From mso at fedoraproject.org Fri Jul 24 01:12:17 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:12:17 +0000 (UTC) Subject: rpms/leonidas-backgrounds/devel .cvsignore, 1.6, 1.7 Makefile, 1.2, 1.3 import.log, 1.2, 1.3 leonidas-backgrounds.spec, 1.5, 1.6 sources, 1.6, 1.7 dead.package, 1.1, NONE Message-ID: <20090724011217.6C8DF11C048A@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/leonidas-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23224/devel Added Files: .cvsignore Makefile import.log leonidas-backgrounds.spec sources Removed Files: dead.package Log Message: Revert last commit. Should have been done for invinxble-backgrounds... Index: .cvsignore =================================================================== RCS file: .cvsignore diff -N .cvsignore --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .cvsignore 24 Jul 2009 01:12:15 -0000 1.7 @@ -0,0 +1 @@ +leonidas-backgrounds-11.0.0.tar.lzma Index: Makefile =================================================================== RCS file: Makefile diff -N Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile 24 Jul 2009 01:12:15 -0000 1.3 @@ -0,0 +1,22 @@ +# Makefile for source rpm: leonidas-backgrounds +# $Id$ +NAME := leonidas-backgrounds +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) + Index: import.log =================================================================== RCS file: import.log diff -N import.log --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ import.log 24 Jul 2009 01:12:15 -0000 1.3 @@ -0,0 +1,2 @@ +leonidas-backgrounds-10_92_1-2_fc11:HEAD:leonidas-backgrounds-10.92.1-2.fc11.src.rpm:1236669130 + Index: leonidas-backgrounds.spec =================================================================== RCS file: leonidas-backgrounds.spec diff -N leonidas-backgrounds.spec --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ leonidas-backgrounds.spec 24 Jul 2009 01:12:16 -0000 1.6 @@ -0,0 +1,227 @@ +Name: leonidas-backgrounds +Version: 11.0.0 +Release: 1%{?dist} +Summary: Leonidas desktop backgrounds + +Group: Applications/Multimedia +License: CC-BY-SA +URL: https://fedoraproject.org/wiki/F11_Artwork + +# This is a Fedora maintained package which is specific to our distribution. +# The source is only available from within this srpm. +# Images in the source archive are basically crops/resizes of +# https://fedoraproject.org/w/uploads/e/e9/Artwork_F11_Betamockup1_n.jpg +# and +# https://fedoraproject.org/wiki/File:King_4096x1536.xcf.bz2 +Source0: %{name}-%{version}.tar.lzma +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +Requires: %{name}-common = %{version}-%{release} +Requires: %{name}-lion-dual = %{version}-%{release} + +%description +This package contains desktop backgrounds for the leonidas theme. + +%prep +%setup -q + +%package common +Summary: Leonidas desktop backgrounds shared between GNOME and KDE +Group: Applications/Multimedia + +%description common +This package includes the common files used by both GNOME and KDE. + +%package kdm +Summary: Leonidas desktop background for KDM +Group: Applications/Multimedia + +%description kdm +Leonidas desktop background used in KDM. + +%package landscape +Summary: Leonidas desktop backgrounds with the landscape theme +Group: Applications/Multimedia + +%description landscape +This package includes additional Leonidas backgrounds based on the landscape +theme that was used in F11 Leonidas Beta. + +%package lion +Summary: Extra leonidas desktop background featuring lion +Group: Applications/Multimedia +Requires: %{name}-lion-dual = %{version}-%{release} + +%description lion +This package includes extra leonidas background featuring the lion that is +present in F11 Leonidas only on dual screens both on single screens as well. + +%package lion-dual +Summary: Shared dual screen lion themed Leonidas desktop backgrounds +Group: Applications/Multimedia + +%description lion-dual +This package includes dual screen images shared between the +leonidas-backgrounds and leonidas-backgrounds-lion packages. + + +%build + + +%install +rm -rf $RPM_BUILD_ROOT +# prepare the dir structure +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/ +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/normal +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/wide +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/normal.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape/wide.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/ +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normal +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normalish +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/wide +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normal.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/normalish.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion/wide.dual +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties + +# copy the landscape images +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/normal \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/wide \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/normal.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape +cp -a $RPM_BUILD_DIR/%{name}-%{version}/landscape/wide.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/landscape + +# copy the lion images +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normal \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normalish \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/wide \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normal.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/normalish.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion +cp -a $RPM_BUILD_DIR/%{name}-%{version}/lion/wide.dual \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas/lion + +# copy slideshow xml files +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas-lion.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas_left.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas +cp -a $RPM_BUILD_DIR/%{name}-%{version}/leonidas_right.xml \ + $RPM_BUILD_ROOT/%{_datadir}/backgrounds/leonidas + +# copy metadata xmls file +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas-lion.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties +cp -a $RPM_BUILD_DIR/%{name}-%{version}/desktop-backgrounds-leonidas-landscape.xml \ + $RPM_BUILD_ROOT/%{_datadir}/gnome-background-properties + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas.xml +%{_datadir}/backgrounds/leonidas/leonidas.xml + +%files common +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%dir %{_datadir}/backgrounds/leonidas/lion/normalish +%dir %{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024 +%dir %{_datadir}/backgrounds/leonidas/lion/wide +%dir %{_datadir}/backgrounds/leonidas/lion/wide/1920x1200 +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon.jpg +%{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024/leonidas-1-noon.jpg +%{_datadir}/backgrounds/leonidas/lion/wide/1920x1200/leonidas-1-noon.jpg + +%files lion-dual +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion +%{_datadir}/backgrounds/leonidas/lion/normal.dual +%{_datadir}/backgrounds/leonidas/lion/normalish.dual +%{_datadir}/backgrounds/leonidas/lion/wide.dual + +%files lion +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%dir %{_datadir}/backgrounds/leonidas/lion/normalish +%dir %{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024 +%dir %{_datadir}/backgrounds/leonidas/lion/wide +%dir %{_datadir}/backgrounds/leonidas/lion/wide/1920x1200 +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas-lion.xml +%{_datadir}/backgrounds/leonidas/leonidas-lion.xml +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon_right.jpg +%{_datadir}/backgrounds/leonidas/lion/normalish/1280x1024/leonidas-1-noon_right.jpg +%{_datadir}/backgrounds/leonidas/lion/wide/1920x1200/leonidas-1-noon_right.jpg + +%files kdm +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%dir %{_datadir}/backgrounds/leonidas/lion/normal +%dir %{_datadir}/backgrounds/leonidas/lion/normal/2048x1536 +%{_datadir}/backgrounds/leonidas/lion/normal/2048x1536/leonidas-1-noon.png + +%files landscape +%defattr(-,root,root,-) +%doc COPYING +%dir %{_datadir}/backgrounds/leonidas +%{_datadir}/backgrounds/leonidas/landscape +%{_datadir}/gnome-background-properties/desktop-backgrounds-leonidas-landscape.xml +%{_datadir}/backgrounds/leonidas/leonidas_left.xml +%{_datadir}/backgrounds/leonidas/leonidas_right.xml + +%changelog +* Sat May 09 2009 Martin Sourada - 11.0.0-1 +- Include the lion design optionally on single screens as well via -lion + subpackage +- Split the dual screen images with lion design into -lion-dual subpackage + to allow having only one of the single screens installed +- Don't forget to own some all used directories not provided by other pkgs + +* Mon Apr 13 2009 Martin Sourada - 10.93.1-1 +- Updated lion backgrounds +- Don't display the lion for single screens +- Use just leonidas-1-noon.png for the kdm version, no need to add the '-simple' + suffix + +* Fri Apr 10 2009 Martin Sourada - 10.93.0-1 +- Add lion backgrounds +- Split -common (shared between GNOME and KDE), -kdm (simplified version for + KDM) and -landscape (F11 Leonidas Beta wallpapers) subpackages + +* Mon Mar 09 2009 Martin Sourada - 10.92.1-2 +- Add note about source (we are upstream and don't host the source elsewhere) +- Don't pass -r to cp, it's already implied by -a + +* Mon Mar 09 2009 Martin Sourada - 10.92.1-1 +- Update to newer version + - add dual screen versions + - add left part of dual screen as a wallpaper on its own + +* Thu Mar 05 2009 Martin Sourada - 10.92.0-1 +- Initial packaging + Index: sources =================================================================== RCS file: sources diff -N sources --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sources 24 Jul 2009 01:12:16 -0000 1.7 @@ -0,0 +1,2 @@ +418c8dc2d203ed42224c574396f461c4 leonidas-backgrounds-11.0.0.tar.lzma + --- dead.package DELETED --- From pkgdb at fedoraproject.org Fri Jul 24 01:15:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:15:42 +0000 Subject: [pkgdb] libbeagle ownership updated Message-ID: <20090724011542.A5D1010F86A@bastion2.fedora.phx.redhat.com> Package libbeagle in Fedora 11 was orphaned by mclasen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:18:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:18:04 +0000 Subject: [pkgdb] libbeagle ownership updated Message-ID: <20090724011804.3BA8810F8AB@bastion2.fedora.phx.redhat.com> Package libbeagle in Fedora 11 is now owned by nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:18:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:18:12 +0000 Subject: [pkgdb] libbeagle had acl change status Message-ID: <20090724011813.0414210F8AD@bastion2.fedora.phx.redhat.com> nushio has set the commit acl on libbeagle (Fedora 11) to Obsolete for nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:18:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:18:11 +0000 Subject: [pkgdb] libbeagle had acl change status Message-ID: <20090724011812.5BF9510F8AF@bastion2.fedora.phx.redhat.com> nushio has set the watchcommits acl on libbeagle (Fedora 11) to Obsolete for nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From pkgdb at fedoraproject.org Fri Jul 24 01:18:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:18:09 +0000 Subject: [pkgdb] libbeagle had acl change status Message-ID: <20090724011810.3F8BD10F890@bastion2.fedora.phx.redhat.com> nushio has set the watchbugzilla acl on libbeagle (Fedora 11) to Obsolete for nushio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libbeagle From mso at fedoraproject.org Fri Jul 24 01:20:44 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:20:44 +0000 (UTC) Subject: rpms/invinxble-backgrounds/F-10 dead.package, NONE, 1.1 .cvsignore, 1.2, NONE Makefile, 1.1, NONE branch, 1.1, NONE import.log, 1.1, NONE invinxble-backgrounds.spec, 1.1, NONE sources, 1.2, NONE Message-ID: <20090724012044.CED0411C04D6@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/invinxble-backgrounds/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26740/F-10 Added Files: dead.package Removed Files: .cvsignore Makefile branch import.log invinxble-backgrounds.spec sources Log Message: removal due to licensing issues. rhbz #512836. --- NEW FILE dead.package --- remove due to licensing issues. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- branch DELETED --- --- import.log DELETED --- --- invinxble-backgrounds.spec DELETED --- --- sources DELETED --- From mso at fedoraproject.org Fri Jul 24 01:20:46 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:20:46 +0000 (UTC) Subject: rpms/invinxble-backgrounds/F-11 dead.package, NONE, 1.1 .cvsignore, 1.2, NONE Makefile, 1.1, NONE branch, 1.1, NONE import.log, 1.1, NONE invinxble-backgrounds.spec, 1.2, NONE sources, 1.2, NONE Message-ID: <20090724012046.1121C11C04D6@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/invinxble-backgrounds/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26740/F-11 Added Files: dead.package Removed Files: .cvsignore Makefile branch import.log invinxble-backgrounds.spec sources Log Message: removal due to licensing issues. rhbz #512836. --- NEW FILE dead.package --- remove due to licensing issues. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- branch DELETED --- --- import.log DELETED --- --- invinxble-backgrounds.spec DELETED --- --- sources DELETED --- From mso at fedoraproject.org Fri Jul 24 01:20:47 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:20:47 +0000 (UTC) Subject: rpms/invinxble-backgrounds/F-8 dead.package, NONE, 1.1 .cvsignore, 1.1, NONE Makefile, 1.1, NONE branch, 1.1, NONE sources, 1.1, NONE Message-ID: <20090724012047.56A4611C04D6@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/invinxble-backgrounds/F-8 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26740/F-8 Added Files: dead.package Removed Files: .cvsignore Makefile branch sources Log Message: removal due to licensing issues. rhbz #512836. --- NEW FILE dead.package --- remove due to licensing issues. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- branch DELETED --- --- sources DELETED --- From mso at fedoraproject.org Fri Jul 24 01:20:48 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:20:48 +0000 (UTC) Subject: rpms/invinxble-backgrounds/F-9 dead.package, NONE, 1.1 .cvsignore, 1.1, NONE Makefile, 1.1, NONE branch, 1.1, NONE sources, 1.1, NONE Message-ID: <20090724012048.3F93711C04D6@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/invinxble-backgrounds/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26740/F-9 Added Files: dead.package Removed Files: .cvsignore Makefile branch sources Log Message: removal due to licensing issues. rhbz #512836. --- NEW FILE dead.package --- remove due to licensing issues. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- branch DELETED --- --- sources DELETED --- From mso at fedoraproject.org Fri Jul 24 01:20:49 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:20:49 +0000 (UTC) Subject: rpms/invinxble-backgrounds/devel dead.package, NONE, 1.1 .cvsignore, 1.2, NONE Makefile, 1.1, NONE import.log, 1.1, NONE invinxble-backgrounds.spec, 1.2, NONE sources, 1.2, NONE Message-ID: <20090724012049.DC8DB11C04D6@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/invinxble-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26740/devel Added Files: dead.package Removed Files: .cvsignore Makefile import.log invinxble-backgrounds.spec sources Log Message: removal due to licensing issues. rhbz #512836. --- NEW FILE dead.package --- remove due to licensing issues. rhbz #512836 --- .cvsignore DELETED --- --- Makefile DELETED --- --- import.log DELETED --- --- invinxble-backgrounds.spec DELETED --- --- sources DELETED --- From braden at fedoraproject.org Fri Jul 24 01:24:49 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Fri, 24 Jul 2009 01:24:49 +0000 (UTC) Subject: rpms/openvrml/F-11 openvrml.spec,1.66,1.67 Message-ID: <20090724012449.E0D2911C048A@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29048/F-11 Modified Files: openvrml.spec Log Message: Made dependencies on gecko-libs and java arch-specific. Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/F-11/openvrml.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- openvrml.spec 13 Jul 2009 08:21:12 -0000 1.66 +++ openvrml.spec 24 Jul 2009 01:24:49 -0000 1.67 @@ -18,8 +18,6 @@ BuildRequires: libjpeg-devel >= 6b BuildRequires: fontconfig-devel >= 2.0 BuildRequires: freetype-devel >= 2.1.2 BuildRequires: gecko-devel >= 1.9.1 -BuildRequires: libGLU-devel -BuildRequires: libXmu-devel BuildRequires: glib2-devel >= 2.6 BuildRequires: dbus-glib-devel BuildRequires: gtk2-devel >= 2.12 @@ -27,8 +25,8 @@ BuildRequires: gtkglext-devel BuildRequires: libgnomeui-devel >= 2.14 BuildRequires: curl-devel BuildRequires: java-devel -Requires: gecko-libs >= 1.9.1 -Requires: java +Requires: gecko-libs%{?_isa} >= 1.9.1 +Requires: java%{?_isa} %description OpenVRML is a VRML/X3D support library, including a runtime and facilities @@ -193,6 +191,11 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Thu Jul 23 2009 Braden McDaniel +- Made dependencies on gecko-libs and java arch-specific. +- Removed unnecessary (redundant) dependencies on libGLU-devel and + libXmu-devel. + * Mon Jul 13 2009 Braden McDaniel - 0.18.2-2 - Patch openvrml-player to fix symbol visibility. From braden at fedoraproject.org Fri Jul 24 01:24:50 2009 From: braden at fedoraproject.org (Braden McDaniel) Date: Fri, 24 Jul 2009 01:24:50 +0000 (UTC) Subject: rpms/openvrml/devel openvrml.spec,1.67,1.68 Message-ID: <20090724012450.282D811C048A@cvs1.fedora.phx.redhat.com> Author: braden Update of /cvs/pkgs/rpms/openvrml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29048/devel Modified Files: openvrml.spec Log Message: Made dependencies on gecko-libs and java arch-specific. Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/openvrml.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- openvrml.spec 13 Jul 2009 08:07:39 -0000 1.67 +++ openvrml.spec 24 Jul 2009 01:24:49 -0000 1.68 @@ -18,8 +18,6 @@ BuildRequires: libjpeg-devel >= 6b BuildRequires: fontconfig-devel >= 2.0 BuildRequires: freetype-devel >= 2.1.2 BuildRequires: gecko-devel >= 1.9.1 -BuildRequires: libGLU-devel -BuildRequires: libXmu-devel BuildRequires: glib2-devel >= 2.6 BuildRequires: dbus-glib-devel BuildRequires: libgnomeui-devel >= 2.14 @@ -27,8 +25,8 @@ BuildRequires: gtk2-devel >= 2.12 BuildRequires: gtkglext-devel BuildRequires: curl-devel BuildRequires: java-devel -Requires: gecko-libs >= 1.9.1 -Requires: java +Requires: gecko-libs%{?_isa} >= 1.9.1 +Requires: java%{?_isa} %description OpenVRML is a VRML/X3D support library, including a runtime and facilities @@ -193,6 +191,11 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Thu Jul 23 2009 Braden McDaniel +- Made dependencies on gecko-libs and java arch-specific. +- Removed unnecessary (redundant) dependencies on libGLU-devel and + libXmu-devel. + * Mon Jul 13 2009 Braden McDaniel - 0.18.2-2 - Patch openvrml-player to fix symbol visibility. From pkgdb at fedoraproject.org Fri Jul 24 01:25:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:25:23 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090724012523.5C46F10F86A@bastion2.fedora.phx.redhat.com> Package openarena in Fedora devel is now owned by ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Fri Jul 24 01:25:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:25:29 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090724012529.D8F2A10F8AC@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 10 is now owned by ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From pkgdb at fedoraproject.org Fri Jul 24 01:25:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 01:25:31 +0000 Subject: [pkgdb] openarena ownership updated Message-ID: <20090724012531.4BBF210F8AF@bastion2.fedora.phx.redhat.com> Package openarena in Fedora 11 is now owned by ianweller To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/openarena From mso at fedoraproject.org Fri Jul 24 01:37:25 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:37:25 +0000 (UTC) Subject: rpms/gtk-nodoka-engine/F-10 gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch, NONE, 1.1 gtk-nodoka-engine-0.7.2-missing-widget-check.patch, NONE, 1.1 gtk-nodoka-engine-handle-selection.patch, NONE, 1.1 gtk-nodoka-engine-scale-trough.patch, NONE, 1.1 gtk-nodoka-engine.spec, 1.25, 1.26 Message-ID: <20090724013726.075F411C048A@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/gtk-nodoka-engine/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2113/F-10 Modified Files: gtk-nodoka-engine.spec Added Files: gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch gtk-nodoka-engine-0.7.2-missing-widget-check.patch gtk-nodoka-engine-handle-selection.patch gtk-nodoka-engine-scale-trough.patch Log Message: Fix checkbox greying out in tree-view in devel as well. Sync F-10 with F-11 and devel. gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch: nodoka_style.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes 2009-07-23 20:42:39.000000000 +0200 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c 2009-07-23 20:52:32.000000000 +0200 @@ -1204,7 +1204,7 @@ nodoka_style_draw_option (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellradio") && widget && widget->parent) + if (DETAIL ("cellradio") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); @@ -1257,7 +1257,7 @@ nodoka_style_draw_check (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellcheck") && widget && widget->parent) + if (DETAIL ("cellcheck") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); gtk-nodoka-engine-0.7.2-missing-widget-check.patch: nodoka_style.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE gtk-nodoka-engine-0.7.2-missing-widget-check.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.missing-widget-check gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.missing-widget-check 2009-03-07 14:24:50.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c 2009-03-07 14:28:37.000000000 +0100 @@ -94,7 +94,10 @@ nodoka_set_widget_parameters (const GtkW params->roundness = NODOKA_STYLE (style)->roundness; params->hilight_ratio = NODOKA_STYLE (style)->hilight_ratio; params->gradients = NODOKA_STYLE (style)->gradients; - params->ltr = !(nodoka_get_direction ((GtkWidget *) widget) == GTK_TEXT_DIR_RTL); + if (widget) + params->ltr = !(nodoka_get_direction ((GtkWidget *) widget) == GTK_TEXT_DIR_RTL); + else + params->ltr = TRUE; params->focus = widget && GTK_WIDGET_HAS_FOCUS (widget); params->is_default = widget && GTK_WIDGET_HAS_DEFAULT (widget); gtk-nodoka-engine-handle-selection.patch: nodoka_draw.c | 9 +++++++++ 1 file changed, 9 insertions(+) --- NEW FILE gtk-nodoka-engine-handle-selection.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c.handle-selection gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c.handle-selection 2008-12-30 13:10:05.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c 2008-12-30 13:09:16.000000000 +0100 @@ -1727,6 +1727,15 @@ nodoka_draw_handle (cairo_t * cr, const int height) { NodokaRGB *dark = (NodokaRGB *) & colors->shade[3]; + + NodokaRGB *bg = (NodokaRGB *) & colors->bg[widget->state_type]; + + if (handle->type == NDK_HANDLE_SPLITTER) + { + cairo_set_source_rgb (cr, bg->r, bg->g, bg->b); + cairo_rectangle (cr, x, y, width, height); + cairo_fill (cr); + } int bar_height; int i; gtk-nodoka-engine-scale-trough.patch: GTKEngine/nodoka_draw.c | 137 ++++++++++++++++++-------------- GTKEngine/nodoka_style.c | 30 +------ GTKEngine/nodoka_types.h | 4 GTKThemes/Nodoka-Aqua/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Gilouche/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Looks/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Midnight/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Rounded/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Silver/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka-Squared/gtk-2.0/gtkrc | 1 GTKThemes/Nodoka/gtk-2.0/gtkrc | 1 11 files changed, 96 insertions(+), 83 deletions(-) --- NEW FILE gtk-nodoka-engine-scale-trough.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c.scale-trough gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c.scale-trough 2008-11-02 09:30:13.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_draw.c 2008-12-26 23:56:29.000000000 +0100 @@ -453,6 +453,7 @@ nodoka_draw_entry (cairo_t * cr, } } +#define TROUGH_SIZE 6 void nodoka_draw_scale_trough (cairo_t * cr, const NodokaColors * colors, @@ -460,77 +461,95 @@ nodoka_draw_scale_trough (cairo_t * cr, const SliderParameters * slider, int x, int y, int width, int height) { - int fill_x, fill_y, fill_width, fill_height; - int trough_width, trough_height; - double translate_x, translate_y; - int fill_size = slider->fill_size; - int TROUGH_SIZE = 6; + int trough_width, trough_height; + double translate_x, translate_y; + + cairo_save (cr); if (slider->horizontal) { - if (fill_size > width - 3) - fill_size = width - 3; - - fill_x = slider->inverted ? width - fill_size - 3 : 0; - fill_y = 0; - fill_width = fill_size; - fill_height = TROUGH_SIZE - 2; - - trough_width = width - 3; - trough_height = TROUGH_SIZE - 2; - - translate_x = x + 0.5; - translate_y = y + 0.5 + (height / 2) - (TROUGH_SIZE / 2); + trough_width = width; + trough_height = TROUGH_SIZE; + + translate_x = x; + translate_y = y + (height/2) - (TROUGH_SIZE/2); } else { - if (fill_size > height - 3) - fill_size = height - 3; - - fill_x = 0; - fill_y = slider->inverted ? height - fill_size - 3 : 0; - fill_width = TROUGH_SIZE - 2; - fill_height = fill_size; - - trough_width = TROUGH_SIZE - 2; - trough_height = height - 3; - - translate_x = x + 0.5 + (width / 2) - (TROUGH_SIZE / 2); - translate_y = y + 0.5; + trough_width = TROUGH_SIZE; + trough_height = height; + + translate_x = x + (width/2) - (TROUGH_SIZE/2); + translate_y = y; } cairo_set_line_width (cr, 1.0); cairo_translate (cr, translate_x, translate_y); - cairo_translate (cr, 1, 1); - - nodoka_scale_draw_gradient (cr, &colors->shade[3], - &colors->shade[5], - 0, 0, trough_width, trough_height, - TRUE, slider->horizontal); - - /* we want to draw the fill gradient using a direct gradient call */ - nodoka_set_gradient (cr, &colors->spot[1], DARK_BOTTOM_HILIGHT, - DARK_TOP_HILIGHT, GRADIENT_CENTER, - (slider->horizontal ? 0 : fill_width), - (slider->horizontal ? fill_height : 0), widget->gradients, FALSE, - 1.0); - cairo_rectangle (cr, fill_x + 0.5, fill_y + 0.5, fill_width - 1, - fill_height - 1); - cairo_fill (cr); - - /* Set the right border color */ - cairo_rectangle (cr, fill_x, fill_y, fill_width, fill_height); - cairo_set_source_rgba (cr, colors->spot[2].r, colors->spot[2].g, - colors->spot[2].b, 0.8); - cairo_stroke (cr); + /* Drawing Fill Level */ + if (slider->fill_level) + { + NodokaRGB *fill = (NodokaRGB *) & colors->spot[1]; + + cairo_rectangle (cr, 1.5, 1.5, trough_width - 3, trough_height - 3); + + nodoka_set_gradient (cr, fill, HOLLOW_BOTTOM_HILIGHT, + HOLLOW_TOP_HILIGHT, GRADIENT_CENTER, + (slider->horizontal ? 0 : trough_width), + (slider->horizontal ? trough_height : 0), + widget->gradients, TRUE, 0.35); + cairo_fill_preserve (cr); + + cairo_set_source_rgba (cr, colors->spot[2].r, colors->spot[2].g, + colors->spot[2].b, 0.28); + cairo_stroke (cr); + } + /* Drawing Fill */ + else if (slider->lower) + { + NodokaRGB *fill = (NodokaRGB *) & colors->spot[1]; + + cairo_rectangle (cr, 1.5, 1.5, trough_width - 3, trough_height - 3); + + nodoka_set_gradient (cr, fill, HOLLOW_BOTTOM_HILIGHT, + HOLLOW_TOP_HILIGHT, GRADIENT_CENTER, + (slider->horizontal ? 0 : trough_width), + (slider->horizontal ? trough_height : 0), + widget->gradients, FALSE, 1.0); + cairo_fill_preserve (cr); + + cairo_set_source_rgba (cr, colors->spot[2].r, colors->spot[2].g, + colors->spot[2].b, 0.8); + cairo_stroke (cr); + } + /* Drawing Trough */ + else + { + NodokaRGB *bg = (NodokaRGB *) & colors->shade[3]; + + cairo_rectangle (cr, 1.5, 1.5, trough_width - 3, trough_height - 3); + + nodoka_set_gradient (cr, bg, HOLLOW_BOTTOM_HILIGHT, + HOLLOW_TOP_HILIGHT, GRADIENT_CENTER, + (slider->horizontal ? 0 : trough_width), + (slider->horizontal ? trough_height : 0), + widget->gradients, FALSE, 1.0); + cairo_fill_preserve (cr); + + cairo_set_source_rgba (cr, colors->shade[5].r, colors->shade[5].g, + colors->shade[5].b, 0.8); + cairo_stroke (cr); + + + /* Draw shadow */ + cairo_move_to (cr, 2.5, trough_height - 2.5); + cairo_line_to (cr, 2.5, 2.5); + cairo_line_to (cr, trough_width - 2.5, 2.5); + cairo_set_source_rgba (cr, 0.2, 0.2, 0.2, 0.1); + cairo_stroke (cr); + } - /* Draw shadow */ - cairo_move_to (cr, 1, trough_height - 2); - cairo_line_to (cr, 1, 1); - cairo_line_to (cr, trough_width - 2, 1); - cairo_set_source_rgba (cr, 0.2, 0.2, 0.2, 0.1); - cairo_stroke (cr); + cairo_restore (cr); } void diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.scale-trough gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.scale-trough 2008-11-02 09:26:58.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c 2008-12-26 23:56:21.000000000 +0100 @@ -728,37 +728,23 @@ nodoka_style_draw_box (DRAW_ARGS) } else if (DETAIL ("spinbutton")) { } - else if (DETAIL ("trough") && widget && GTK_IS_SCALE (widget)) + else if (detail && g_str_has_prefix (detail, "trough") && widget && GTK_IS_SCALE (widget)) { - GtkAdjustment *adjustment = - gtk_range_get_adjustment (GTK_RANGE (widget)); WidgetParameters params; SliderParameters slider; - gint slider_length; - gtk_widget_style_get (widget, "slider-length", &slider_length, NULL); nodoka_set_widget_parameters (widget, style, state_type, ¶ms); params.corners = NDK_CORNER_NONE; - slider.inverted = gtk_range_get_inverted (GTK_RANGE (widget)); + slider.lower = DETAIL ("trough-lower"); + slider.fill_level = DETAIL ("trough-fill-level") || DETAIL ("trough-fill-level-full"); + slider.horizontal = (GTK_RANGE (widget)->orientation == GTK_ORIENTATION_HORIZONTAL); - if ((adjustment->upper - adjustment->page_size - - adjustment->lower) != 0) - slider.fill_size = - ((slider.horizontal ? width : height) - - slider_length) * - ((adjustment->value - adjustment->lower) / - (adjustment->upper - adjustment->page_size - - adjustment->lower)) + slider_length / 2; - else - slider.fill_size = 0; - if (slider.horizontal) - slider.inverted = - slider.inverted != (nodoka_get_direction (widget) == - GTK_TEXT_DIR_RTL); + slider.focus.inner = nodoka_style->focus_inner; slider.focus.fill = nodoka_style->focus_fill; + nodoka_draw_scale_trough (cr, &nodoka_style->colors, ¶ms, &slider, x, y, width, height); } @@ -966,8 +952,8 @@ nodoka_style_draw_box (DRAW_ARGS) params.corners = NDK_CORNER_NONE; SliderParameters slider; - slider.inverted = FALSE; - slider.fill_size = 0; + //slider.inverted = FALSE; + //slider.fill_size = 0; slider.horizontal = horizontal; slider.focus.inner = nodoka_style->focus_inner; slider.focus.fill = nodoka_style->focus_fill; diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_types.h.scale-trough gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_types.h --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_types.h.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_types.h 2008-12-26 23:56:21.000000000 +0100 @@ -188,9 +188,9 @@ typedef struct typedef struct { - boolean inverted; - int fill_size; + boolean lower; boolean horizontal; + boolean fill_level; FocusParameters focus; } SliderParameters; diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Aqua/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Aqua/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Aqua/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Aqua/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Gilouche/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Gilouche/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Gilouche/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Gilouche/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Looks/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Looks/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Looks/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Looks/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Midnight/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Midnight/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Midnight/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Midnight/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Rounded/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Rounded/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Rounded/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Rounded/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Silver/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Silver/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Silver/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Silver/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 diff -up gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Squared/gtk-2.0/gtkrc.scale-trough gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Squared/gtk-2.0/gtkrc --- gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Squared/gtk-2.0/gtkrc.scale-trough 2008-11-01 11:29:33.000000000 +0100 +++ gtk-nodoka-engine-0.7.2/src/GTKThemes/Nodoka-Squared/gtk-2.0/gtkrc 2008-12-26 23:56:21.000000000 +0100 @@ -21,6 +21,7 @@ style "fedora-default" GtkRange::stepper_spacing = 0 GtkScale::slider-length = 28 + GtkScale::trough-side-details = 1 GtkPaned::handle_size = 6 Index: gtk-nodoka-engine.spec =================================================================== RCS file: /cvs/extras/rpms/gtk-nodoka-engine/F-10/gtk-nodoka-engine.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gtk-nodoka-engine.spec 2 Nov 2008 11:01:10 -0000 1.25 +++ gtk-nodoka-engine.spec 24 Jul 2009 01:37:25 -0000 1.26 @@ -3,14 +3,17 @@ Name: gtk-nodoka-engine Version: 0.7.2 -Release: 1%{?dist} +Release: 5%{?dist} Summary: The Nodoka GTK Theme Engine Group: System Environment/Libraries License: GPLv2+ URL: http://fedorahosted.org/nodoka Source0: https://fedorahosted.org/releases/n/o/gtk-nodoka-engine-%{version}.tar.gz -#Patch0: gtk-nodoka-engine-leak.patch +Patch0: %{name}-scale-trough.patch +Patch1: %{name}-handle-selection.patch +Patch2: %{name}-0.7.2-missing-widget-check.patch +Patch3: %{name}-0.7.2-grey-out-checkboxes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel @@ -36,7 +39,10 @@ This package contains extra themes fot t %prep %setup -q -#%patch0 -p1 -b .leak +%patch0 -p1 -b .scale-trough +%patch1 -p1 -b .handle-selection +%patch2 -p1 -b .missing-widget-check +%patch3 -p1 -b .grey-out-checkboxes %build %configure @@ -68,6 +74,19 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Martin Sourada - 0.7.2-5 +- Correctly grey out checkboxes in tree-view (rhbz #513454) + +* Sat Mar 07 2009 Maritn Sourada - 0.7.2-4 +- Add missing check for widget when getting RTL info + +* Tue Feb 24 2009 Fedora Release Engineering - 0.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Dec 30 2008 Martin Sourada - 0.7.2-2 +- Add support for GtkScale trough-side-details and fill-level (rhbz #477941) +- Support selection and hilight coloring for separator (rhbz #478443) + * Sun Nov 02 2008 Martin Sourada - 0.7.2-1 - New upstream release, fix misrender in menus on some systems (rhbz #469398) From mso at fedoraproject.org Fri Jul 24 01:37:26 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 24 Jul 2009 01:37:26 +0000 (UTC) Subject: rpms/gtk-nodoka-engine/devel gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch, NONE, 1.1 gtk-nodoka-engine.spec, 1.28, 1.29 Message-ID: <20090724013726.2E50A11C049D@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/gtk-nodoka-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2113/devel Modified Files: gtk-nodoka-engine.spec Added Files: gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch Log Message: Fix checkbox greying out in tree-view in devel as well. Sync F-10 with F-11 and devel. gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch: nodoka_style.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE gtk-nodoka-engine-0.7.2-grey-out-checkboxes.patch --- diff -up gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c --- gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c.grey-out-checkboxes 2009-07-23 20:42:39.000000000 +0200 +++ gtk-nodoka-engine-0.7.2/src/GTKEngine/nodoka_style.c 2009-07-23 20:52:32.000000000 +0200 @@ -1204,7 +1204,7 @@ nodoka_style_draw_option (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellradio") && widget && widget->parent) + if (DETAIL ("cellradio") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); @@ -1257,7 +1257,7 @@ nodoka_style_draw_check (DRAW_ARGS) if (!(GTK_IS_CHECK_BUTTON (widget))) params.focus = FALSE; - if (DETAIL ("cellcheck") && widget && widget->parent) + if (DETAIL ("cellcheck") && !params.disabled && widget && widget->parent) { params.disabled = (GTK_WIDGET_STATE (widget->parent) == GTK_STATE_INSENSITIVE); params.state_type = GTK_WIDGET_STATE (widget->parent); Index: gtk-nodoka-engine.spec =================================================================== RCS file: /cvs/extras/rpms/gtk-nodoka-engine/devel/gtk-nodoka-engine.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gtk-nodoka-engine.spec 7 Mar 2009 13:30:57 -0000 1.28 +++ gtk-nodoka-engine.spec 24 Jul 2009 01:37:26 -0000 1.29 @@ -3,7 +3,7 @@ Name: gtk-nodoka-engine Version: 0.7.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Nodoka GTK Theme Engine Group: System Environment/Libraries @@ -13,6 +13,7 @@ Source0: https://fedorahosted.org Patch0: %{name}-scale-trough.patch Patch1: %{name}-handle-selection.patch Patch2: %{name}-0.7.2-missing-widget-check.patch +Patch3: %{name}-0.7.2-grey-out-checkboxes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel @@ -41,6 +42,7 @@ This package contains extra themes fot t %patch0 -p1 -b .scale-trough %patch1 -p1 -b .handle-selection %patch2 -p1 -b .missing-widget-check +%patch3 -p1 -b .grey-out-checkboxes %build %configure @@ -72,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 23 2009 Martin Sourada - 0.7.2-5 +- Correctly grey out checkboxes in tree-view (rhbz #513454) + * Sat Mar 07 2009 Maritn Sourada - 0.7.2-4 - Add missing check for widget when getting RTL info From pkgdb at fedoraproject.org Fri Jul 24 02:13:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:13:31 +0000 Subject: [pkgdb] sonata: mtruch has requested watchcommits Message-ID: <20090724021331.7359810F8AC@bastion2.fedora.phx.redhat.com> mtruch has requested the watchcommits acl on sonata (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:13:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:13:30 +0000 Subject: [pkgdb] sonata: mtruch has requested watchbugzilla Message-ID: <20090724021330.2579010F89D@bastion2.fedora.phx.redhat.com> mtruch has requested the watchbugzilla acl on sonata (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:13:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:13:32 +0000 Subject: [pkgdb] sonata: mtruch has requested commit Message-ID: <20090724021332.9C78010F8B2@bastion2.fedora.phx.redhat.com> mtruch has requested the commit acl on sonata (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:13:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:13:33 +0000 Subject: [pkgdb] sonata: mtruch has requested approveacls Message-ID: <20090724021333.D44C010F8B5@bastion2.fedora.phx.redhat.com> mtruch has requested the approveacls acl on sonata (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:13 +0000 Subject: [pkgdb] sonata: mtruch has requested watchbugzilla Message-ID: <20090724021413.9775310F86A@bastion2.fedora.phx.redhat.com> mtruch has requested the watchbugzilla acl on sonata (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:13 +0000 Subject: [pkgdb] sonata: mtruch has requested watchcommits Message-ID: <20090724021413.D96D310F8AD@bastion2.fedora.phx.redhat.com> mtruch has requested the watchcommits acl on sonata (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:15 +0000 Subject: [pkgdb] sonata: mtruch has requested commit Message-ID: <20090724021415.6C79710F8B4@bastion2.fedora.phx.redhat.com> mtruch has requested the commit acl on sonata (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:17 +0000 Subject: [pkgdb] sonata: mtruch has requested approveacls Message-ID: <20090724021417.84EC010F8B7@bastion2.fedora.phx.redhat.com> mtruch has requested the approveacls acl on sonata (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:20 +0000 Subject: [pkgdb] sonata: mtruch has requested watchcommits Message-ID: <20090724021421.2D96710F8BA@bastion2.fedora.phx.redhat.com> mtruch has requested the watchcommits acl on sonata (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:27 +0000 Subject: [pkgdb] sonata: mtruch has requested approveacls Message-ID: <20090724021427.63DF310F8BC@bastion2.fedora.phx.redhat.com> mtruch has requested the approveacls acl on sonata (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:25 +0000 Subject: [pkgdb] sonata: mtruch has requested commit Message-ID: <20090724021425.ABEF410F890@bastion2.fedora.phx.redhat.com> mtruch has requested the commit acl on sonata (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 02:14:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 02:14:30 +0000 Subject: [pkgdb] sonata: mtruch has requested watchbugzilla Message-ID: <20090724021430.27F1A10F8BF@bastion2.fedora.phx.redhat.com> mtruch has requested the watchbugzilla acl on sonata (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From dcantrel at fedoraproject.org Fri Jul 24 03:07:43 2009 From: dcantrel at fedoraproject.org (David Cantrell) Date: Fri, 24 Jul 2009 03:07:43 +0000 (UTC) Subject: rpms/dhcp/devel 10-dhclient,NONE,1.1 dhcp.spec,1.262,1.263 Message-ID: <20090724030743.B4F9B11C048A@cvs1.fedora.phx.redhat.com> Author: dcantrel Update of /cvs/pkgs/rpms/dhcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17335 Modified Files: dhcp.spec Added Files: 10-dhclient Log Message: * Thu Jul 23 2009 David Cantrell - 12:4.1.0-25 - Include NetworkManager dispatcher script to run dhclient.d scripts (#459276) --- NEW FILE 10-dhclient --- #!/bin/bash # run dhclient.d scripts in an emulated environment SAVEDIR=/var/lib/dhclient ETCDIR=/etc/dhcp interface=$1 eval "$( declare | LC_ALL=C grep '^DHCP4_[A-Z_]*=' | while read opt; do optname=$(echo "${opt%%=*}" | LC_ALL=C tr 'A-Z' 'a-z') optname=new_${optname#dhcp4_} optvalue=${opt#*=} echo "$optname=$optvalue" done )" [ -f /etc/sysconfig/network-scripts/ifcfg-$interface ] && \ . /etc/sysconfig/network-scripts/ifcfg-$interface if [ -d $ETCDIR/dhclient.d ]; then for f in $ETCDIR/dhclient.d/*.sh; do if [ -x $f ]; then subsystem="${f%.sh}" subsystem="${subsystem##*/}" . ${f} if [ "$2" = "up" ]; then "${subsystem}_config" elif [ "$2" = "down" ]; then "${subsystem}_restore" fi fi done fi Index: dhcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/devel/dhcp.spec,v retrieving revision 1.262 retrieving revision 1.263 diff -u -p -r1.262 -r1.263 --- dhcp.spec 10 Jul 2009 02:29:08 -0000 1.262 +++ dhcp.spec 24 Jul 2009 03:07:41 -0000 1.263 @@ -10,7 +10,7 @@ Summary: Dynamic host configuration protocol software Name: dhcp Version: 4.1.0 -Release: 24%{?dist} +Release: 25%{?dist} # NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to # dcantrell maintaining the package) made incorrect use of the epoch and # that's why it is at 12 now. It should have never been used, but it was. @@ -25,6 +25,7 @@ Source2: dhcpd.init Source3: dhcrelay.init Source4: dhclient-script Source5: README.dhclient.d +Source6: 10-dhclient Patch0: %{name}-4.1.0-errwarn-message.patch Patch1: %{name}-4.1.0-memory.patch @@ -337,6 +338,10 @@ EOF # Install empty directory for dhclient.d scripts %{__mkdir} -p %{buildroot}%{dhcpconfdir}/dhclient.d +# Install NetworkManager dispatcher script +%{__mkdir} -p %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d +%{__install} -p -m 0755 %{SOURCE6} %{buildroot}%{_sysconfdir}/NetworkManager/dispatcher.d + %clean %{__rm} -rf %{buildroot} @@ -409,6 +414,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/dhcrelay %config(noreplace) %{dhcpconfdir}/dhcpd.conf %config(noreplace) %{_sysconfdir}/openldap/schema/dhcp.schema +%dir %{_sysconfdir}/NetworkManager +%dir %{_sysconfdir}/NetworkManager/dispatcher.d +%{_sysconfdir}/NetworkManager/dispatcher.d/10-dhclient %{_initrddir}/dhcpd %{_initrddir}/dhcrelay %{_bindir}/omshell @@ -449,6 +457,9 @@ fi %attr(0644,root,root) %{_mandir}/man3/omapi.3.gz %changelog +* Thu Jul 23 2009 David Cantrell - 12:4.1.0-25 +- Include NetworkManager dispatcher script to run dhclient.d scripts (#459276) + * Thu Jul 09 2009 David Cantrell - 12:4.1.0-24 - Ensure 64-bit platforms parse lease file dates & times correctly (#448615) From sseago at fedoraproject.org Fri Jul 24 04:30:23 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 04:30:23 +0000 (UTC) Subject: rpms/rubygem-fastthread/devel .cvsignore, 1.3, 1.4 rubygem-fastthread.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090724043023.1C55011C04D7@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-fastthread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9501 Modified Files: .cvsignore rubygem-fastthread.spec sources Log Message: upgraded to 1.0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Nov 2008 12:39:48 -0000 1.3 +++ .cvsignore 24 Jul 2009 04:30:21 -0000 1.4 @@ -1 +1 @@ -fastthread-1.0.1.gem +fastthread-1.0.7.gem Index: rubygem-fastthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/devel/rubygem-fastthread.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-fastthread.spec 25 Feb 2009 21:44:41 -0000 1.4 +++ rubygem-fastthread.spec 24 Jul 2009 04:30:22 -0000 1.5 @@ -7,14 +7,13 @@ Summary: Optimized replacement for thread.rb primitives Name: rubygem-%{gemname} - -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.7 +Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildRequires: ruby-devel @@ -50,6 +49,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Fri Jul 24 2009 Scott Seago - 1.0.7-1 +- Upgraded to 1.0.7 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Nov 2008 12:39:48 -0000 1.3 +++ sources 24 Jul 2009 04:30:22 -0000 1.4 @@ -1 +1 @@ -699b7198aa1093ada0225a0d491574ef fastthread-1.0.1.gem +16eb06dc3661c89301de6c73c71bb16e fastthread-1.0.7.gem From sseago at fedoraproject.org Fri Jul 24 04:41:59 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 04:41:59 +0000 (UTC) Subject: rpms/rubygem-fastthread/F-11 .cvsignore, 1.3, 1.4 rubygem-fastthread.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090724044200.00D6D11C007C@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-fastthread/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15440 Modified Files: .cvsignore rubygem-fastthread.spec sources Log Message: upgraded to 1.0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Nov 2008 12:39:48 -0000 1.3 +++ .cvsignore 24 Jul 2009 04:41:59 -0000 1.4 @@ -1 +1 @@ -fastthread-1.0.1.gem +fastthread-1.0.7.gem Index: rubygem-fastthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-11/rubygem-fastthread.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-fastthread.spec 25 Feb 2009 21:44:41 -0000 1.4 +++ rubygem-fastthread.spec 24 Jul 2009 04:41:59 -0000 1.5 @@ -7,14 +7,13 @@ Summary: Optimized replacement for thread.rb primitives Name: rubygem-%{gemname} - -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.7 +Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildRequires: ruby-devel @@ -50,6 +49,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Fri Jul 24 2009 Scott Seago - 1.0.7-1 +- Upgraded to 1.0.7 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Nov 2008 12:39:48 -0000 1.3 +++ sources 24 Jul 2009 04:41:59 -0000 1.4 @@ -1 +1 @@ -699b7198aa1093ada0225a0d491574ef fastthread-1.0.1.gem +16eb06dc3661c89301de6c73c71bb16e fastthread-1.0.7.gem From jfch2222 at fedoraproject.org Fri Jul 24 04:43:38 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Fri, 24 Jul 2009 04:43:38 +0000 (UTC) Subject: rpms/iwak/devel import.log, NONE, 1.1 iwak.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724044338.D6F8011C007C@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/iwak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16145/devel Modified Files: .cvsignore sources Added Files: import.log iwak.spec Log Message: Initial release --- NEW FILE import.log --- iwak-2_4-2_fc12:HEAD:iwak-2.4-2.fc12.src.rpm:1248410564 --- NEW FILE iwak.spec --- Name: iwak Version: 2.4 Release: 2%{?dist} Summary: Detect the openssh keys affected by CVE-2008-0166 among authorized_keys Group: Applications/Internet License: GPLv2 URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=iwak Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/iwak/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Detect the openssh keys affected by CVE-2008-0166 among authorized_keys. This is done by computing the fingerprints from each authorized key and then comparing against the databaze of blacklisted fingerprints. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir} cp -p iwak $RPM_BUILD_ROOT%{_bindir} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING %{_bindir}/iwak %changelog * Thu Jul 23 2009 Jan F. Chadima - 2.4-2 - Spec file tweaking * Thu Jul 23 2009 Jan F. Chadima - 2.4-1 - Added check that the targeted file is owned by the user running iwak * Thu Jul 23 2009 Jan F. Chadima - 2.3-1 - Repaired minor bugs * Thu Jul 23 2009 Jan F. Chadima - 2.2-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:42:55 -0000 1.1 +++ .cvsignore 24 Jul 2009 04:43:38 -0000 1.2 @@ -0,0 +1 @@ +iwak-2.4.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:42:55 -0000 1.1 +++ sources 24 Jul 2009 04:43:38 -0000 1.2 @@ -0,0 +1 @@ +95b23918350091abd5b2a3dd91fb9372 iwak-2.4.tgz From jfch2222 at fedoraproject.org Fri Jul 24 04:45:32 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Fri, 24 Jul 2009 04:45:32 +0000 (UTC) Subject: rpms/iwak/F-11 import.log, NONE, 1.1 iwak.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724044532.3AB5E11C007C@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/iwak/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17095/F-11 Modified Files: .cvsignore sources Added Files: import.log iwak.spec Log Message: Initial release --- NEW FILE import.log --- iwak-2_4-2_fc12:F-11:iwak-2.4-2.fc12.src.rpm:1248410694 --- NEW FILE iwak.spec --- Name: iwak Version: 2.4 Release: 2%{?dist} Summary: Detect the openssh keys affected by CVE-2008-0166 among authorized_keys Group: Applications/Internet License: GPLv2 URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=iwak Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/iwak/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Detect the openssh keys affected by CVE-2008-0166 among authorized_keys. This is done by computing the fingerprints from each authorized key and then comparing against the databaze of blacklisted fingerprints. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir} cp -p iwak $RPM_BUILD_ROOT%{_bindir} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING %{_bindir}/iwak %changelog * Thu Jul 23 2009 Jan F. Chadima - 2.4-2 - Spec file tweaking * Thu Jul 23 2009 Jan F. Chadima - 2.4-1 - Added check that the targeted file is owned by the user running iwak * Thu Jul 23 2009 Jan F. Chadima - 2.3-1 - Repaired minor bugs * Thu Jul 23 2009 Jan F. Chadima - 2.2-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwak/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:42:55 -0000 1.1 +++ .cvsignore 24 Jul 2009 04:45:31 -0000 1.2 @@ -0,0 +1 @@ +iwak-2.4.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwak/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:42:55 -0000 1.1 +++ sources 24 Jul 2009 04:45:31 -0000 1.2 @@ -0,0 +1 @@ +95b23918350091abd5b2a3dd91fb9372 iwak-2.4.tgz From jfch2222 at fedoraproject.org Fri Jul 24 04:47:35 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Fri, 24 Jul 2009 04:47:35 +0000 (UTC) Subject: rpms/iwak/F-10 import.log, NONE, 1.1 iwak.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724044735.C434D11C007C@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/iwak/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18201/F-10 Modified Files: .cvsignore sources Added Files: import.log iwak.spec Log Message: Initial release --- NEW FILE import.log --- iwak-2_4-2_fc12:F-10:iwak-2.4-2.fc12.src.rpm:1248410819 --- NEW FILE iwak.spec --- Name: iwak Version: 2.4 Release: 2%{?dist} Summary: Detect the openssh keys affected by CVE-2008-0166 among authorized_keys Group: Applications/Internet License: GPLv2 URL: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/?path=iwak Source0: http://www.benhur.prf.cuni.cz/medved-7/wydobitki/iwak/%{name}-%{version}.tgz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch %description Detect the openssh keys affected by CVE-2008-0166 among authorized_keys. This is done by computing the fingerprints from each authorized key and then comparing against the databaze of blacklisted fingerprints. %prep %setup -q %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir} cp -p iwak $RPM_BUILD_ROOT%{_bindir} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING %{_bindir}/iwak %changelog * Thu Jul 23 2009 Jan F. Chadima - 2.4-2 - Spec file tweaking * Thu Jul 23 2009 Jan F. Chadima - 2.4-1 - Added check that the targeted file is owned by the user running iwak * Thu Jul 23 2009 Jan F. Chadima - 2.3-1 - Repaired minor bugs * Thu Jul 23 2009 Jan F. Chadima - 2.2-1 - Initial relese Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/iwak/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:42:55 -0000 1.1 +++ .cvsignore 24 Jul 2009 04:47:35 -0000 1.2 @@ -0,0 +1 @@ +iwak-2.4.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/iwak/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:42:55 -0000 1.1 +++ sources 24 Jul 2009 04:47:35 -0000 1.2 @@ -0,0 +1 @@ +95b23918350091abd5b2a3dd91fb9372 iwak-2.4.tgz From sseago at fedoraproject.org Fri Jul 24 04:52:32 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 04:52:32 +0000 (UTC) Subject: rpms/rubygem-fastthread/F-10 .cvsignore, 1.3, 1.4 rubygem-fastthread.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090724045232.202F711C007C@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-fastthread/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20556 Modified Files: .cvsignore rubygem-fastthread.spec sources Log Message: upgraded to 1.0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Nov 2008 12:41:31 -0000 1.3 +++ .cvsignore 24 Jul 2009 04:52:31 -0000 1.4 @@ -1 +1 @@ -fastthread-1.0.1.gem +fastthread-1.0.7.gem Index: rubygem-fastthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-10/rubygem-fastthread.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-fastthread.spec 8 Nov 2008 12:41:31 -0000 1.3 +++ rubygem-fastthread.spec 24 Jul 2009 04:52:31 -0000 1.4 @@ -7,14 +7,13 @@ Summary: Optimized replacement for thread.rb primitives Name: rubygem-%{gemname} - -Version: 1.0.1 +Version: 1.0.7 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildRequires: ruby-devel @@ -50,6 +49,12 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Fri Jul 24 2009 Scott Seago - 1.0.7-1 +- Upgraded to 1.0.7 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Nov 08 2008 Jeroen van Meeuwen - 1.0.1-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Nov 2008 12:41:31 -0000 1.3 +++ sources 24 Jul 2009 04:52:31 -0000 1.4 @@ -1 +1 @@ -699b7198aa1093ada0225a0d491574ef fastthread-1.0.1.gem +16eb06dc3661c89301de6c73c71bb16e fastthread-1.0.7.gem From sseago at fedoraproject.org Fri Jul 24 04:59:51 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 04:59:51 +0000 (UTC) Subject: rpms/rubygem-fastthread/EL-5 .cvsignore, 1.3, 1.4 rubygem-fastthread.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724045951.33C2C11C007C@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-fastthread/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24009 Modified Files: .cvsignore rubygem-fastthread.spec sources Log Message: upgraded to 1.0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Nov 2008 12:44:42 -0000 1.3 +++ .cvsignore 24 Jul 2009 04:59:50 -0000 1.4 @@ -1 +1 @@ -fastthread-1.0.1.gem +fastthread-1.0.7.gem Index: rubygem-fastthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/EL-5/rubygem-fastthread.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-fastthread.spec 8 Nov 2008 12:44:42 -0000 1.2 +++ rubygem-fastthread.spec 24 Jul 2009 04:59:50 -0000 1.3 @@ -7,14 +7,13 @@ Summary: Optimized replacement for thread.rb primitives Name: rubygem-%{gemname} - -Version: 1.0.1 +Version: 1.0.7 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem -BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: rubygems BuildRequires: rubygems BuildRequires: ruby-devel @@ -50,6 +49,12 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Fri Jul 24 2009 Scott Seago - 1.0.7-1 +- Upgraded to 1.0.7 + +* Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Nov 08 2008 Jeroen van Meeuwen - 1.0.1-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Nov 2008 12:44:42 -0000 1.3 +++ sources 24 Jul 2009 04:59:50 -0000 1.4 @@ -1 +1 @@ -699b7198aa1093ada0225a0d491574ef fastthread-1.0.1.gem +16eb06dc3661c89301de6c73c71bb16e fastthread-1.0.7.gem From plindner at fedoraproject.org Fri Jul 24 05:27:57 2009 From: plindner at fedoraproject.org (Paul Lindner) Date: Fri, 24 Jul 2009 05:27:57 +0000 (UTC) Subject: rpms/memcached/EL-5 memcached.spec,1.5,1.6 sources,1.4,1.5 Message-ID: <20090724052757.53CED11C007C@cvs1.fedora.phx.redhat.com> Author: plindner Update of /cvs/pkgs/rpms/memcached/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3128 Modified Files: memcached.spec sources Log Message: upgrade to 1.2.8 Index: memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/memcached/EL-5/memcached.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- memcached.spec 26 Jun 2008 06:59:45 -0000 1.5 +++ memcached.spec 24 Jul 2009 05:27:56 -0000 1.6 @@ -6,8 +6,8 @@ %define groupname memcached Name: memcached -Version: 1.2.5 -Release: 2%{?dist} +Version: 1.2.8 +Release: 1%{?dist} Summary: High Performance, Distributed Memory Object Cache Group: System Environment/Daemons @@ -196,6 +196,9 @@ fi %changelog +* Thu Jul 23 2009 Paul Lindner - 1.2.8-1 +- Upgrade to memcached 1.2.8 + * Tue Mar 4 2008 Paul Lindner - 1.2.5-1 - Upgrade to memcached-1.2.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memcached/EL-5/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 26 Jun 2008 06:57:36 -0000 1.4 +++ sources 24 Jul 2009 05:27:56 -0000 1.5 @@ -1 +1 @@ -8ac0d1749ded88044f0f850fad979e4d memcached-1.2.5.tar.gz +e5a4ee04e517a5cad110f29e4490e4ab memcached-1.2.8.tar.gz From llaumgui at fedoraproject.org Fri Jul 24 05:46:34 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Fri, 24 Jul 2009 05:46:34 +0000 (UTC) Subject: rpms/pidgin-privacy-please/devel .cvsignore, 1.3, 1.4 pidgin-privacy-please.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090724054634.938DE11C007C@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/pidgin-privacy-please/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10188 Modified Files: .cvsignore pidgin-privacy-please.spec sources Log Message: Update to 0.5.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Mar 2009 07:06:05 -0000 1.3 +++ .cvsignore 24 Jul 2009 05:46:33 -0000 1.4 @@ -1 +1 @@ -pidgin-privacy-please-0.5.3.tar.gz +pidgin-privacy-please-0.5.4.tar.gz Index: pidgin-privacy-please.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/devel/pidgin-privacy-please.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pidgin-privacy-please.spec 7 Apr 2009 12:00:08 -0000 1.5 +++ pidgin-privacy-please.spec 24 Jul 2009 05:46:34 -0000 1.6 @@ -1,6 +1,6 @@ Name: pidgin-privacy-please -Version: 0.5.3 -Release: 2%{?dist} +Version: 0.5.4 +Release: 1%{?dist} Summary: Security and Privacy plugin for Pidgin Group: Applications/Internet @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://code.google.com/p/pidgin-privacy-please/ Source0: http://pidgin-privacy-please.googlecode.com/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?rhel} > 1 +%if 0%{?rhel} > 1 ExcludeArch: ppc %endif BuildRequires: pidgin-devel @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 24 2009 Guillaume Kulakowski - 0.5.4-1 +- Update to 0.5.4 + * Tue Apr 7 2009 Guillaume Kulakowski - 0.5.3-2 - Modifications for EL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Mar 2009 07:06:05 -0000 1.3 +++ sources 24 Jul 2009 05:46:34 -0000 1.4 @@ -1 +1 @@ -f098605daffdcf8a34a6a5b9cd2f6811 pidgin-privacy-please-0.5.3.tar.gz +d014233b598d19a8bc2f41cde1897d2e pidgin-privacy-please-0.5.4.tar.gz From llaumgui at fedoraproject.org Fri Jul 24 05:46:43 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Fri, 24 Jul 2009 05:46:43 +0000 (UTC) Subject: rpms/pidgin-privacy-please/F-11 .cvsignore, 1.3, 1.4 pidgin-privacy-please.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090724054643.CC48911C007C@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/pidgin-privacy-please/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10262 Modified Files: .cvsignore pidgin-privacy-please.spec sources Log Message: Update to 0.5.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Mar 2009 07:06:05 -0000 1.3 +++ .cvsignore 24 Jul 2009 05:46:43 -0000 1.4 @@ -1 +1 @@ -pidgin-privacy-please-0.5.3.tar.gz +pidgin-privacy-please-0.5.4.tar.gz Index: pidgin-privacy-please.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-11/pidgin-privacy-please.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pidgin-privacy-please.spec 7 Apr 2009 12:00:08 -0000 1.5 +++ pidgin-privacy-please.spec 24 Jul 2009 05:46:43 -0000 1.6 @@ -1,6 +1,6 @@ Name: pidgin-privacy-please -Version: 0.5.3 -Release: 2%{?dist} +Version: 0.5.4 +Release: 1%{?dist} Summary: Security and Privacy plugin for Pidgin Group: Applications/Internet @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://code.google.com/p/pidgin-privacy-please/ Source0: http://pidgin-privacy-please.googlecode.com/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?rhel} > 1 +%if 0%{?rhel} > 1 ExcludeArch: ppc %endif BuildRequires: pidgin-devel @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 24 2009 Guillaume Kulakowski - 0.5.4-1 +- Update to 0.5.4 + * Tue Apr 7 2009 Guillaume Kulakowski - 0.5.3-2 - Modifications for EL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Mar 2009 07:06:05 -0000 1.3 +++ sources 24 Jul 2009 05:46:43 -0000 1.4 @@ -1 +1 @@ -f098605daffdcf8a34a6a5b9cd2f6811 pidgin-privacy-please-0.5.3.tar.gz +d014233b598d19a8bc2f41cde1897d2e pidgin-privacy-please-0.5.4.tar.gz From llaumgui at fedoraproject.org Fri Jul 24 05:46:47 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Fri, 24 Jul 2009 05:46:47 +0000 (UTC) Subject: rpms/pidgin-privacy-please/F-10 .cvsignore, 1.3, 1.4 pidgin-privacy-please.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090724054647.93F1011C007C@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/pidgin-privacy-please/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10305 Modified Files: .cvsignore pidgin-privacy-please.spec sources Log Message: Update to 0.5.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Mar 2009 07:07:51 -0000 1.3 +++ .cvsignore 24 Jul 2009 05:46:47 -0000 1.4 @@ -1 +1 @@ -pidgin-privacy-please-0.5.3.tar.gz +pidgin-privacy-please-0.5.4.tar.gz Index: pidgin-privacy-please.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-10/pidgin-privacy-please.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pidgin-privacy-please.spec 7 Apr 2009 12:00:02 -0000 1.4 +++ pidgin-privacy-please.spec 24 Jul 2009 05:46:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: pidgin-privacy-please -Version: 0.5.3 -Release: 2%{?dist} +Version: 0.5.4 +Release: 1%{?dist} Summary: Security and Privacy plugin for Pidgin Group: Applications/Internet @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://code.google.com/p/pidgin-privacy-please/ Source0: http://pidgin-privacy-please.googlecode.com/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?rhel} > 1 +%if 0%{?rhel} > 1 ExcludeArch: ppc %endif BuildRequires: pidgin-devel @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 24 2009 Guillaume Kulakowski - 0.5.4-1 +- Update to 0.5.4 + * Tue Apr 7 2009 Guillaume Kulakowski - 0.5.3-2 - Modifications for EL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Mar 2009 07:07:52 -0000 1.3 +++ sources 24 Jul 2009 05:46:47 -0000 1.4 @@ -1 +1 @@ -f098605daffdcf8a34a6a5b9cd2f6811 pidgin-privacy-please-0.5.3.tar.gz +d014233b598d19a8bc2f41cde1897d2e pidgin-privacy-please-0.5.4.tar.gz From llaumgui at fedoraproject.org Fri Jul 24 05:46:50 2009 From: llaumgui at fedoraproject.org (Guillaume Kulakowski) Date: Fri, 24 Jul 2009 05:46:50 +0000 (UTC) Subject: rpms/pidgin-privacy-please/EL-5 .cvsignore, 1.3, 1.4 pidgin-privacy-please.spec, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090724054650.EFA8E11C007C@cvs1.fedora.phx.redhat.com> Author: llaumgui Update of /cvs/pkgs/rpms/pidgin-privacy-please/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10337a Modified Files: .cvsignore pidgin-privacy-please.spec sources Log Message: Update to 0.5.4 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Mar 2009 07:06:05 -0000 1.3 +++ .cvsignore 24 Jul 2009 05:46:50 -0000 1.4 @@ -1 +1 @@ -pidgin-privacy-please-0.5.3.tar.gz +pidgin-privacy-please-0.5.4.tar.gz Index: pidgin-privacy-please.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/EL-5/pidgin-privacy-please.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pidgin-privacy-please.spec 7 Apr 2009 12:01:27 -0000 1.5 +++ pidgin-privacy-please.spec 24 Jul 2009 05:46:50 -0000 1.6 @@ -1,6 +1,6 @@ Name: pidgin-privacy-please -Version: 0.5.3 -Release: 2%{?dist} +Version: 0.5.4 +Release: 1%{?dist} Summary: Security and Privacy plugin for Pidgin Group: Applications/Internet @@ -8,7 +8,7 @@ License: GPLv2+ URL: http://code.google.com/p/pidgin-privacy-please/ Source0: http://pidgin-privacy-please.googlecode.com/files/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?rhel} > 1 +%if 0%{?rhel} > 1 ExcludeArch: ppc %endif BuildRequires: pidgin-devel @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Tue Jul 24 2009 Guillaume Kulakowski - 0.5.4-1 +- Update to 0.5.4 + * Tue Apr 7 2009 Guillaume Kulakowski - 0.5.3-2 - Modifications for EL-5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Mar 2009 07:06:05 -0000 1.3 +++ sources 24 Jul 2009 05:46:50 -0000 1.4 @@ -1 +1 @@ -f098605daffdcf8a34a6a5b9cd2f6811 pidgin-privacy-please-0.5.3.tar.gz +d014233b598d19a8bc2f41cde1897d2e pidgin-privacy-please-0.5.4.tar.gz From plindner at fedoraproject.org Fri Jul 24 05:50:55 2009 From: plindner at fedoraproject.org (Paul Lindner) Date: Fri, 24 Jul 2009 05:50:55 +0000 (UTC) Subject: rpms/memcached/EL-4 memcached.spec, 1.2, 1.3 sources, 1.2, 1.3 memcached-1.2.3-save_pid_fix.patch, 1.1, NONE Message-ID: <20090724055055.9E14811C007C@cvs1.fedora.phx.redhat.com> Author: plindner Update of /cvs/pkgs/rpms/memcached/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11933 Modified Files: memcached.spec sources Removed Files: memcached-1.2.3-save_pid_fix.patch Log Message: attempt to get latest 1.2.8 running Index: memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/memcached/EL-4/memcached.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- memcached.spec 3 Oct 2007 18:45:44 -0000 1.2 +++ memcached.spec 24 Jul 2009 05:50:55 -0000 1.3 @@ -1,6 +1,6 @@ Name: memcached -Version: 1.2.3 -Release: 7%{?dist} +Version: 1.2.8 +Release: 1%{?dist} Summary: High Performance, Distributed Memory Object Cache Group: System Environment/Daemons @@ -11,9 +11,6 @@ Source0: http://www.danga.com/mem # custom init script Source1: memcached.sysv -# Fixes -Patch1: memcached-1.2.3-save_pid_fix.patch - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libevent-devel @@ -30,7 +27,6 @@ web applications by alleviating database %prep %setup -q -%patch1 -p1 @@ -105,6 +101,9 @@ exit 0 %changelog +* Thu Jul 23 2009 Paul Lindner - 1.2.8-1 +- Upgrade to memcache 1.2.8 + * Mon Aug 6 2007 Paul Lindner - 1.2.3-7 - Fix problem with -P and -d flag combo on x86_64 - Fix init script for FC-6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memcached/EL-4/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Jul 2007 15:12:16 -0000 1.2 +++ sources 24 Jul 2009 05:50:55 -0000 1.3 @@ -1 +1 @@ -efbc9ef1cf7dbc93a3ddceea541968c9 memcached-1.2.3.tar.gz +e5a4ee04e517a5cad110f29e4490e4ab memcached-1.2.8.tar.gz --- memcached-1.2.3-save_pid_fix.patch DELETED --- From jfch2222 at fedoraproject.org Fri Jul 24 06:15:36 2009 From: jfch2222 at fedoraproject.org (Jan F. Chadima) Date: Fri, 24 Jul 2009 06:15:36 +0000 (UTC) Subject: rpms/openssh/devel openssh-5.2p1-homechroot.patch, 1.4, 1.5 openssh-5.2p1-sesftp.patch, 1.3, 1.4 openssh.spec, 1.152, 1.153 Message-ID: <20090724061536.5448011C007C@cvs1.fedora.phx.redhat.com> Author: jfch2222 Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21842 Modified Files: openssh-5.2p1-homechroot.patch openssh-5.2p1-sesftp.patch openssh.spec Log Message: only INTERNAL_SFTP can be home-chrooted save _u and _r parts of context changing to sftpd_t openssh-5.2p1-homechroot.patch: chrootenv.h | 32 ++++++++++++++++++++++++++++++++ session.c | 22 +++++++++++++++++++--- sftp-common.c | 5 +++-- sftp-server-main.c | 3 +++ sftp.c | 2 ++ 5 files changed, 59 insertions(+), 5 deletions(-) Index: openssh-5.2p1-homechroot.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-homechroot.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openssh-5.2p1-homechroot.patch 29 Jun 2009 20:51:16 -0000 1.4 +++ openssh-5.2p1-homechroot.patch 24 Jul 2009 06:15:35 -0000 1.5 @@ -1,6 +1,6 @@ diff -up /dev/null openssh-5.2p1/chrootenv.h ---- /dev/null 2009-06-11 17:05:12.257284457 +0200 -+++ openssh-5.2p1/chrootenv.h 2009-06-29 11:06:19.772277766 +0200 +--- /dev/null 2009-07-23 14:57:23.604046842 +0200 ++++ openssh-5.2p1/chrootenv.h 2009-07-24 07:11:29.000000000 +0200 @@ -0,0 +1,32 @@ +/* $OpenBSD: session.h,v 1.30 2008/05/08 12:21:16 djm Exp $ */ + @@ -35,8 +35,8 @@ diff -up /dev/null openssh-5.2p1/chroote +#endif + diff -up openssh-5.2p1/session.c.homechroot openssh-5.2p1/session.c ---- openssh-5.2p1/session.c.homechroot 2009-06-29 10:58:43.715586616 +0200 -+++ openssh-5.2p1/session.c 2009-06-29 11:04:58.684830462 +0200 +--- openssh-5.2p1/session.c.homechroot 2009-07-24 07:11:22.000000000 +0200 ++++ openssh-5.2p1/session.c 2009-07-24 07:33:14.000000000 +0200 @@ -119,6 +119,8 @@ void do_child(Session *, const char *); void do_motd(void); int check_quietlogin(Session *, const char *); @@ -46,18 +46,18 @@ diff -up openssh-5.2p1/session.c.homechr static void do_authenticated1(Authctxt *); static void do_authenticated2(Authctxt *); -@@ -784,6 +786,11 @@ do_exec(Session *s, const char *command) - { - int ret; +@@ -802,6 +804,11 @@ do_exec(Session *s, const char *command) + debug("Forced command (key option) '%.900s'", command); + } + if ((s->is_subsystem != SUBSYSTEM_INT_SFTP) && chroot_no_tree) { + logit("You aren't welcomed, go away!"); + exit (1); + } + - if (options.adm_forced_command) { - original_command = command; - command = options.adm_forced_command; + #ifdef SSH_AUDIT_EVENTS + if (command != NULL) + PRIVSEP(audit_run_command(command)); @@ -1408,6 +1415,7 @@ safely_chroot(const char *path, uid_t ui const char *cp; char component[MAXPATHLEN]; @@ -110,7 +110,7 @@ diff -up openssh-5.2p1/session.c.homechr diff -up openssh-5.2p1/sftp.c.homechroot openssh-5.2p1/sftp.c --- openssh-5.2p1/sftp.c.homechroot 2009-02-14 06:26:19.000000000 +0100 -+++ openssh-5.2p1/sftp.c 2009-06-29 11:06:59.610415272 +0200 ++++ openssh-5.2p1/sftp.c 2009-07-24 07:11:29.000000000 +0200 @@ -94,6 +94,8 @@ int remote_glob(struct sftp_conn *, cons extern char *__progname; @@ -122,7 +122,7 @@ diff -up openssh-5.2p1/sftp.c.homechroot diff -up openssh-5.2p1/sftp-common.c.homechroot openssh-5.2p1/sftp-common.c --- openssh-5.2p1/sftp-common.c.homechroot 2006-08-05 04:39:40.000000000 +0200 -+++ openssh-5.2p1/sftp-common.c 2009-06-29 11:05:37.180134733 +0200 ++++ openssh-5.2p1/sftp-common.c 2009-07-24 07:11:29.000000000 +0200 @@ -40,6 +40,7 @@ #include "xmalloc.h" #include "buffer.h" @@ -149,7 +149,7 @@ diff -up openssh-5.2p1/sftp-common.c.hom snprintf(gbuf, sizeof gbuf, "%u", (u_int)st->st_gid); diff -up openssh-5.2p1/sftp-server-main.c.homechroot openssh-5.2p1/sftp-server-main.c --- openssh-5.2p1/sftp-server-main.c.homechroot 2009-02-21 22:47:02.000000000 +0100 -+++ openssh-5.2p1/sftp-server-main.c 2009-06-29 11:07:13.704123635 +0200 ++++ openssh-5.2p1/sftp-server-main.c 2009-07-24 07:11:29.000000000 +0200 @@ -22,11 +22,14 @@ #include #include openssh-5.2p1-sesftp.patch: session.c | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) Index: openssh-5.2p1-sesftp.patch =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh-5.2p1-sesftp.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openssh-5.2p1-sesftp.patch 22 Jul 2009 14:22:03 -0000 1.3 +++ openssh-5.2p1-sesftp.patch 24 Jul 2009 06:15:35 -0000 1.4 @@ -39,7 +39,7 @@ diff -up openssh-5.2p1/session.c.sesftp + strcpy (c2 + l, "sftpd_t"); + if ((cx = index (cx + 1, ':'))) + strcat (c2, cx); -+logit ("<= %s", c1); logit ("=> %s", c2); if (setcon ("system_u:system_r:sftpd_t:s0-s0:c0.c1023") < 0) ++ if (setcon ("system_u:system_r:sftpd_t:s0-s0:c0.c1023") < 0) + logit("do_child: setcon failed witch %s", strerror (errno)); + + } Index: openssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh.spec,v retrieving revision 1.152 retrieving revision 1.153 diff -u -p -r1.152 -r1.153 --- openssh.spec 17 Jul 2009 07:06:59 -0000 1.152 +++ openssh.spec 24 Jul 2009 06:15:35 -0000 1.153 @@ -63,7 +63,7 @@ Summary: An open source implementation of SSH protocol versions 1 and 2 Name: openssh Version: 5.2p1 -Release: 14%{?dist}%{?rescue_rel} +Release: 15%{?dist}%{?rescue_rel} URL: http://www.openssh.com/portable.html #Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz #Source1: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz.asc @@ -472,6 +472,10 @@ fi %endif %changelog +* Fri Jul 24 2009 Jan F. Chadima - 5.2p1-15 +- only INTERNAL_SFTP can be home-chrooted +- save _u and _r parts of context changing to sftpd_t + * Fri Jul 17 2009 Jan F. Chadima - 5.2p1-14 - changed internal-sftp context to sftpd_t From dwayne at fedoraproject.org Fri Jul 24 06:22:46 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 24 Jul 2009 06:22:46 +0000 (UTC) Subject: rpms/translate-toolkit/devel .cvsignore, 1.15, 1.16 sources, 1.16, 1.17 translate-toolkit.spec, 1.29, 1.30 Message-ID: <20090724062246.8A41411C007C@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/translate-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24421 Modified Files: .cvsignore sources translate-toolkit.spec Log Message: * Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.2.rc1 - Update to 1.4.0 rc1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 29 Jun 2009 12:34:53 -0000 1.15 +++ .cvsignore 24 Jul 2009 06:22:45 -0000 1.16 @@ -1,2 +1,3 @@ translate-toolkit-1.3.0.tar.bz2 translate-toolkit-1.4.0-beta1.tar.bz2 +translate-toolkit-1.4.0-rc1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 29 Jun 2009 12:34:53 -0000 1.16 +++ sources 24 Jul 2009 06:22:46 -0000 1.17 @@ -1,2 +1,3 @@ b21e7b1e382c03ecfeece6eab295840c translate-toolkit-1.3.0.tar.bz2 1fd86891d3a8fa0e92d1fed3a04d3697 translate-toolkit-1.4.0-beta1.tar.bz2 +373ea5b4d02ef3c8cc35cdce34c73863 translate-toolkit-1.4.0-rc1.tar.bz2 Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/translate-toolkit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- translate-toolkit.spec 29 Jun 2009 12:34:53 -0000 1.29 +++ translate-toolkit.spec 24 Jul 2009 06:22:46 -0000 1.30 @@ -2,14 +2,14 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.1.beta1%{?dist} +Release: 0.2.rc1%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/toolkit/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-beta1/%{name}-%{version}-beta1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc1/%{name}-%{version}-rc1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: translate-toolkit-1.2.1-stoplist.patch @@ -67,7 +67,7 @@ toolkit or to use the libraries in other %prep -%setup -q -n %{name}-%{version}-beta1 +%setup -q -n %{name}-%{version}-rc1 %patch0 -p1 @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.2.rc1 +- Update to 1.4.0 rc1 + * Sat Jun 27 2009 Dwayne Bailey - 1.4.0-0.1.beta1 - Update to 1.4.0 beta1 From dwayne at fedoraproject.org Fri Jul 24 06:37:39 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 24 Jul 2009 06:37:39 +0000 (UTC) Subject: rpms/translate-toolkit/F-11 .cvsignore, 1.15, 1.16 sources, 1.16, 1.17 translate-toolkit.spec, 1.30, 1.31 Message-ID: <20090724063739.836E111C007C@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/translate-toolkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30072 Modified Files: .cvsignore sources translate-toolkit.spec Log Message: * Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.3.rc1 - Update to 1.4.0 rc1: Improvements since beta 1: * Improved support for Windows .rc files. * Small fixes to Mozilla support. * Improvements to some pofilter checks. * The tmserver now has more startup options to control behaviour. * Better handling of spaces between inline elements in XLIFF There were also other bugfixes and small improvements, especially for the sake of the rich editing features in the upcoming version of Virtaal. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 29 Jun 2009 14:14:27 -0000 1.15 +++ .cvsignore 24 Jul 2009 06:37:37 -0000 1.16 @@ -1,2 +1,3 @@ translate-toolkit-1.3.0.tar.bz2 translate-toolkit-1.4.0-beta1.tar.bz2 +translate-toolkit-1.4.0-rc1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 29 Jun 2009 14:14:27 -0000 1.16 +++ sources 24 Jul 2009 06:37:37 -0000 1.17 @@ -1,2 +1,3 @@ b21e7b1e382c03ecfeece6eab295840c translate-toolkit-1.3.0.tar.bz2 1fd86891d3a8fa0e92d1fed3a04d3697 translate-toolkit-1.4.0-beta1.tar.bz2 +373ea5b4d02ef3c8cc35cdce34c73863 translate-toolkit-1.4.0-rc1.tar.bz2 Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/translate-toolkit.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- translate-toolkit.spec 29 Jun 2009 14:20:55 -0000 1.30 +++ translate-toolkit.spec 24 Jul 2009 06:37:37 -0000 1.31 @@ -2,14 +2,14 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.2.beta1%{?dist} +Release: 0.3.rc1%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/toolkit/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-beta1/%{name}-%{version}-beta1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc1/%{name}-%{version}-rc1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: translate-toolkit-1.2.1-stoplist.patch @@ -67,7 +67,7 @@ toolkit or to use the libraries in other %prep -%setup -q -n %{name}-%{version}-beta1 +%setup -q -n %{name}-%{version}-rc1 %patch0 -p1 @@ -123,6 +123,20 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.3.rc1 +- Update to 1.4.0 rc1: + + Improvements since beta 1: + * Improved support for Windows .rc files. + * Small fixes to Mozilla support. + * Improvements to some pofilter checks. + * The tmserver now has more startup options to control behaviour. + * Better handling of spaces between inline elements in XLIFF + + There were also other bugfixes and small improvements, especially for + the sake of the rich editing features in the upcoming version of + Virtaal. + * Mon Jun 29 2009 Dwayne Bailey - 1.4.0-0.2.beta1 - Retag From pkgdb at fedoraproject.org Fri Jul 24 06:39:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:27 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchbugzilla Message-ID: <20090724063927.8CBDD10F897@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchbugzilla acl on libatomic_ops (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:29 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchcommits Message-ID: <20090724063929.4AFE710F8A9@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchcommits acl on libatomic_ops (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:30 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested commit Message-ID: <20090724063930.E91B910F8AD@bastion2.fedora.phx.redhat.com> sharkcz has requested the commit acl on libatomic_ops (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:33 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested approveacls Message-ID: <20090724063933.8071C10F8B3@bastion2.fedora.phx.redhat.com> sharkcz has requested the approveacls acl on libatomic_ops (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:45 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchbugzilla Message-ID: <20090724063945.CD54F10F897@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchbugzilla acl on libatomic_ops (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:48 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchcommits Message-ID: <20090724063948.43EB510F8B6@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchcommits acl on libatomic_ops (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:50 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested commit Message-ID: <20090724063950.8A65310F8B9@bastion2.fedora.phx.redhat.com> sharkcz has requested the commit acl on libatomic_ops (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:52 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested approveacls Message-ID: <20090724063952.D34B810F8AB@bastion2.fedora.phx.redhat.com> sharkcz has requested the approveacls acl on libatomic_ops (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:57 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchbugzilla Message-ID: <20090724063957.132F610F8BE@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchbugzilla acl on libatomic_ops (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:39:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:39:58 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchcommits Message-ID: <20090724063959.0994E10F8C1@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchcommits acl on libatomic_ops (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:00 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested commit Message-ID: <20090724064000.960EA10F8C4@bastion2.fedora.phx.redhat.com> sharkcz has requested the commit acl on libatomic_ops (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:02 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested approveacls Message-ID: <20090724064002.DF6AF10F8B2@bastion2.fedora.phx.redhat.com> sharkcz has requested the approveacls acl on libatomic_ops (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:11 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchbugzilla Message-ID: <20090724064011.7A7B810F8C7@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchbugzilla acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:13 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested watchcommits Message-ID: <20090724064014.1B96210F8C8@bastion2.fedora.phx.redhat.com> sharkcz has requested the watchcommits acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:16 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested commit Message-ID: <20090724064016.86D1410F8CC@bastion2.fedora.phx.redhat.com> sharkcz has requested the commit acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 06:40:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 06:40:18 +0000 Subject: [pkgdb] libatomic_ops: sharkcz has requested approveacls Message-ID: <20090724064018.C652110F8D0@bastion2.fedora.phx.redhat.com> sharkcz has requested the approveacls acl on libatomic_ops (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pravins at fedoraproject.org Fri Jul 24 07:06:57 2009 From: pravins at fedoraproject.org (Pravin Satpute) Date: Fri, 24 Jul 2009 07:06:57 +0000 (UTC) Subject: rpms/system-config-language/devel s-c-l-bug-493888.patch, NONE, 1.1 system-config-language.spec, 1.53, 1.54 Message-ID: <20090724070657.D0BEE11C007C@cvs1.fedora.phx.redhat.com> Author: pravins Update of /cvs/pkgs/rpms/system-config-language/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9404 Modified Files: system-config-language.spec Added Files: s-c-l-bug-493888.patch Log Message: * Fri Jul 24 2009 Pravin Satpute - 1.3.2-9 - fix bug 493888 s-c-l-bug-493888.patch: language_gui.py | 2 ++ 1 file changed, 2 insertions(+) --- NEW FILE s-c-l-bug-493888.patch --- diff -rup system-config-language-1.3.2/src/language_gui.py system-config-language-1.3.2_mod/src/language_gui.py --- system-config-language-1.3.2/src/language_gui.py 2009-07-24 12:21:49.000000000 +0530 +++ system-config-language-1.3.2_mod/src/language_gui.py 2009-07-24 11:39:35.000000000 +0530 @@ -169,6 +169,7 @@ class childWindow: def langChanged(self, *args): self.langChangedFlag = 1 + self.okButton.set_sensitive(True) def okClicked(self, *args): self.apply() @@ -371,6 +372,7 @@ class childWindow: self.bb.pack_start(self.cancelButton) self.okButton = gtk.Button(stock='gtk-ok') + self.okButton.set_sensitive(False) self.okButton.connect("clicked", self.okClicked) self.bb.pack_start(self.okButton) Index: system-config-language.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-language/devel/system-config-language.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- system-config-language.spec 13 Jul 2009 10:38:37 -0000 1.53 +++ system-config-language.spec 24 Jul 2009 07:06:56 -0000 1.54 @@ -1,7 +1,7 @@ Summary: A graphical interface for modifying the system language Name: system-config-language Version: 1.3.2 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/language License: GPLv2+ Group: System Environment/Base @@ -22,6 +22,7 @@ Patch1: ca-po-462914.patch Patch2: dialogue-center-493824.patch Patch3: s-c-l-bug-598975.patch Patch4: s-c-l-bug-493858-507796.patch +Patch5: s-c-l-bug-493888.patch %description system-config-language is a graphical user interface that @@ -33,6 +34,7 @@ allows the user to change the default la %patch2 -p1 -b .2-dialogue-center %patch3 -p1 -b .3-rhpl %patch4 -p1 -b .4-s-c-cleanup +%patch5 -p1 -b .5-ok-button %build make %{?_smp_mflags} @@ -90,6 +92,9 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-language %changelog +* Fri Jul 24 2009 Pravin Satpute - 1.3.2-9 +- fix bug 493888 + * Mon Jul 13 2009 Pravin Satpute - 1.3.2-8 - fix bug 493858, 507796 From hadess at fedoraproject.org Fri Jul 24 07:18:25 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 24 Jul 2009 07:18:25 +0000 (UTC) Subject: rpms/python-gdata/devel .cvsignore, 1.11, 1.12 python-gdata.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090724071825.B5BD511C007C@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/python-gdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14338 Modified Files: .cvsignore python-gdata.spec sources Log Message: * Fri Jul 24 2009 Bastien Nocera 2.0.1-1 - Update to 2.0.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-gdata/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 30 Jun 2009 08:32:57 -0000 1.11 +++ .cvsignore 24 Jul 2009 07:18:24 -0000 1.12 @@ -1 +1 @@ -gdata-2.0.0.tar.gz +gdata-2.0.1.tar.gz Index: python-gdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-gdata/devel/python-gdata.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- python-gdata.spec 30 Jun 2009 08:32:57 -0000 1.19 +++ python-gdata.spec 24 Jul 2009 07:18:25 -0000 1.20 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-gdata -Version: 2.0.0 +Version: 2.0.1 Release: 1%{?dist} Summary: A Python module for accessing online Google services @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Bastien Nocera 2.0.1-1 +- Update to 2.0.1 + * Tue Jun 30 2009 Bastien Nocera 2.0.0-1 - Update to 2.0.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-gdata/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 30 Jun 2009 08:32:57 -0000 1.11 +++ sources 24 Jul 2009 07:18:25 -0000 1.12 @@ -1 +1 @@ -09de4e7a958cc2584e159b07185bdd31 gdata-2.0.0.tar.gz +d646b8f6e32911df61ea0e7379b4bc35 gdata-2.0.1.tar.gz From pkgdb at fedoraproject.org Fri Jul 24 07:24:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:24:39 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072439.F100C10F87E@bastion2.fedora.phx.redhat.com> hguemar has set the watchbugzilla acl on sonata (Fedora devel) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:24:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:24:43 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072443.6227B10F89D@bastion2.fedora.phx.redhat.com> hguemar has set the watchcommits acl on sonata (Fedora devel) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:24:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:24:46 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072446.6246710F8AF@bastion2.fedora.phx.redhat.com> hguemar has set the commit acl on sonata (Fedora devel) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:24:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:24:48 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072448.A84AE10F8B3@bastion2.fedora.phx.redhat.com> hguemar has set the approveacls acl on sonata (Fedora devel) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:24:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:24:56 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072456.A1C6810F87E@bastion2.fedora.phx.redhat.com> hguemar has set the watchbugzilla acl on sonata (Fedora 10) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:01 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072501.F414010F8B6@bastion2.fedora.phx.redhat.com> hguemar has set the watchcommits acl on sonata (Fedora 10) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:04 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072505.67CDF10F8B9@bastion2.fedora.phx.redhat.com> hguemar has set the commit acl on sonata (Fedora 10) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:07 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072507.23ED210F8B8@bastion2.fedora.phx.redhat.com> hguemar has set the approveacls acl on sonata (Fedora 10) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:10 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072510.7DE2B10F8AD@bastion2.fedora.phx.redhat.com> hguemar has set the watchbugzilla acl on sonata (Fedora 11) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:13 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072513.EB05110F8BE@bastion2.fedora.phx.redhat.com> hguemar has set the watchcommits acl on sonata (Fedora 11) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:15 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072515.DE63B10F8B2@bastion2.fedora.phx.redhat.com> hguemar has set the commit acl on sonata (Fedora 11) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From pkgdb at fedoraproject.org Fri Jul 24 07:25:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:25:18 +0000 Subject: [pkgdb] sonata had acl change status Message-ID: <20090724072518.4F46E10F8C1@bastion2.fedora.phx.redhat.com> hguemar has set the approveacls acl on sonata (Fedora 11) to Approved for mtruch To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sonata From verdurin at fedoraproject.org Fri Jul 24 07:46:21 2009 From: verdurin at fedoraproject.org (verdurin) Date: Fri, 24 Jul 2009 07:46:21 +0000 (UTC) Subject: rpms/gnomint/F-11 .cvsignore,1.5,1.6 sources,1.5,1.6 Message-ID: <20090724074621.63E9B11C007C@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24252 Modified Files: .cvsignore sources Log Message: Ensure new tarball included in sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 15 Jul 2009 08:20:17 -0000 1.5 +++ .cvsignore 24 Jul 2009 07:46:19 -0000 1.6 @@ -1 +1 @@ -gnomint-1.0.0-cflags.patch +gnomint-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 15 Jul 2009 08:20:17 -0000 1.5 +++ sources 24 Jul 2009 07:46:19 -0000 1.6 @@ -1 +1 @@ -499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch +20de7af89f71ebd6c45b41aeab59207c gnomint-1.0.0.tar.gz From pkgdb at fedoraproject.org Fri Jul 24 07:50:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:50:23 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724075023.6B4F210F8A9@bastion2.fedora.phx.redhat.com> lkundrak has set the watchcommits acl on libatomic_ops (Fedora EPEL 5) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 07:50:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:50:23 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724075023.8DC3D10F8AF@bastion2.fedora.phx.redhat.com> lkundrak has set the watchbugzilla acl on libatomic_ops (Fedora EPEL 5) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 07:50:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:50:23 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724075024.1029F10F8B5@bastion2.fedora.phx.redhat.com> lkundrak has set the commit acl on libatomic_ops (Fedora EPEL 5) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 07:50:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 07:50:25 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724075025.E0D5F10F8BA@bastion2.fedora.phx.redhat.com> lkundrak has set the approveacls acl on libatomic_ops (Fedora EPEL 5) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From mtasaka at fedoraproject.org Fri Jul 24 07:51:34 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 07:51:34 +0000 (UTC) Subject: rpms/monafont/devel monafont.spec,1.7,1.8 Message-ID: <20090724075134.ABFFB11C007C@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/monafont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27250 Modified Files: monafont.spec Log Message: Prepare for mass rebuild Index: monafont.spec =================================================================== RCS file: /cvs/extras/rpms/monafont/devel/monafont.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- monafont.spec 26 Mar 2009 17:42:36 -0000 1.7 +++ monafont.spec 24 Jul 2009 07:51:34 -0000 1.8 @@ -1,3 +1,5 @@ +%{!?_fontbasedir: %global _fontbasedir %{_datadir}/fonts} + %define archivename monafont %define projectname mona @@ -27,7 +29,7 @@ %define obsoletes_EVR 2.90-5.999 %define sazanami_ver 20040629 -%define vlgothic_ver 20090204 +%define vlgothic_ver 20090612 %define catalog_dir %{_sysconfdir}/X11/fontpath.d @@ -40,7 +42,7 @@ Japanese text arts correctly. Name: %{archivename} Version: 2.90 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Japanese font for text arts # monafont itself is under public domain @@ -212,16 +214,20 @@ fi %verify(not md5 size mtime) %{fontdir_bitmap_full}/fonts.dir %{fontdir_bitmap_full}/*.pcf.gz -%define _space %(echo " ") +%define _font_pkg_name %{name_ttf_s} %define _fontdir %{fontdir_ttf_s_full} -%_font_pkg -n -n%{_space}%{fontdir_ttf_s} mona-%{real_family_ttf_s}.ttf +%_font_pkg mona-%{real_family_ttf_s}.ttf %doc ttfsrc/README-ttf.txt +%define _font_pkg_name %{name_ttf_v} %define _fontdir %{fontdir_ttf_v_full} -%_font_pkg -n -n%{_space}%{fontdir_ttf_v} mona-%{real_family_ttf_v}.ttf +%_font_pkg mona-%{real_family_ttf_v}.ttf %doc ttfsrc/README-ttf.txt %changelog +* Fri Jul 24 2009 Mamoru Tasaka - 2.90-9 +- Adjust for fontpackages 1.22 + * Fri Mar 27 2009 Mamoru Tasaka - 2.90-8 - F-11: Again rebuild for new virtual font Provides (bug 491969) From stransky at fedoraproject.org Fri Jul 24 07:57:35 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 24 Jul 2009 07:57:35 +0000 (UTC) Subject: rpms/seamonkey/devel .cvsignore, 1.24, 1.25 seamonkey-mozconfig, 1.4, 1.5 seamonkey.sh.in, 1.6, 1.7 seamonkey.spec, 1.55, 1.56 sources, 1.26, 1.27 firefox-0.7.3-default-plugin-less-annoying.patch, 1.1, NONE firefox-0.7.3-psfonts.patch, 1.1, NONE firefox-1.0-prdtoa.patch, 1.1, NONE firefox-1.1-nss-system-nspr.patch, 1.1, NONE firefox-1.1-uriloader.patch, 1.1, NONE firefox-1.1-visibility.patch, 1.1, NONE firefox-1.5-bullet-bill.patch, 1.1, NONE firefox-1.5-embedwindow-visibility.patch, 1.1, NONE firefox-1.5-nopangoxft.patch, 1.2, NONE firefox-1.5-pango-cursor-position-more.patch, 1.1, NONE firefox-1.5-pango-cursor-position.patch, 1.1, NONE firefox-1.5-pango-justified-range.patch, 1.1, NONE firefox-1.5-pango-mathml.patch, 1.1, NONE firefox-1.5-pango-ua.patch, 1.1, NONE firefox-1.5-pango-underline.patch, 1.2, NONE firefox-1.5-theme-change.patch, 1.2, NONE firefox-1.5-with-system-nss.patch, 1.1, NONE firefox-1.5.0.1-dumpstack.patch, 1.1, NONE firefox-2.0-link-layout.patch, 1.1, NONE firefox-2.0-pango-ligatures.patch, 1.3, NONE firefox-2.0-pango-printing.patch, 1.2, NONE firefox-2.0.0.4-undo-uriloader.patch, 1.1, NONE mozilla-1.4.1-ppc64.patch, 1.1, NONE mozilla-1.7.3-gnome-vfs-default-app.patch, 1.1, NONE mozilla-1.7.5-g-application-name.patch, 1.2, NONE mozilla-nspr-packages.patch, 1.3, NONE seamonkey-1.0.1-dumpstack.patch, 1.1, NONE seamonkey-1.1.9plus.patch, 1.1, NONE seamonkey-cairo-bug5136.patch, 1.1, NONE seamonkey-fedora-home-page.patch, 1.4, NONE thunderbird-0.7.3-gnome-uriloader.patch, 1.1, NONE thunderbird-1.5-bug304720.patch, 1.1, NONE thunderbird-mimeeobj-externalc.patch, 1.1, NONE Message-ID: <20090724075735.7EBC811C007C@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/seamonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29534 Modified Files: .cvsignore seamonkey-mozconfig seamonkey.sh.in seamonkey.spec sources Removed Files: firefox-0.7.3-default-plugin-less-annoying.patch firefox-0.7.3-psfonts.patch firefox-1.0-prdtoa.patch firefox-1.1-nss-system-nspr.patch firefox-1.1-uriloader.patch firefox-1.1-visibility.patch firefox-1.5-bullet-bill.patch firefox-1.5-embedwindow-visibility.patch firefox-1.5-nopangoxft.patch firefox-1.5-pango-cursor-position-more.patch firefox-1.5-pango-cursor-position.patch firefox-1.5-pango-justified-range.patch firefox-1.5-pango-mathml.patch firefox-1.5-pango-ua.patch firefox-1.5-pango-underline.patch firefox-1.5-theme-change.patch firefox-1.5-with-system-nss.patch firefox-1.5.0.1-dumpstack.patch firefox-2.0-link-layout.patch firefox-2.0-pango-ligatures.patch firefox-2.0-pango-printing.patch firefox-2.0.0.4-undo-uriloader.patch mozilla-1.4.1-ppc64.patch mozilla-1.7.3-gnome-vfs-default-app.patch mozilla-1.7.5-g-application-name.patch mozilla-nspr-packages.patch seamonkey-1.0.1-dumpstack.patch seamonkey-1.1.9plus.patch seamonkey-cairo-bug5136.patch seamonkey-fedora-home-page.patch thunderbird-0.7.3-gnome-uriloader.patch thunderbird-1.5-bug304720.patch thunderbird-mimeeobj-externalc.patch Log Message: Update to 2.0 beta 1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/.cvsignore,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- .cvsignore 7 May 2009 19:15:09 -0000 1.24 +++ .cvsignore 24 Jul 2009 07:57:31 -0000 1.25 @@ -1 +1,2 @@ seamonkey-1.1.16.source.tar.bz2 +seamonkey-2.0b1-source.tar.bz2 Index: seamonkey-mozconfig =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey-mozconfig,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- seamonkey-mozconfig 14 Feb 2008 22:09:41 -0000 1.4 +++ seamonkey-mozconfig 24 Jul 2009 07:57:34 -0000 1.5 @@ -1,15 +1,21 @@ +ac_add_options --enable-application=suite + +ac_add_options --prefix="$PREFIX" +ac_add_options --libdir="$LIBDIR" ac_add_options --with-system-nspr ac_add_options --with-system-nss ac_add_options --with-system-jpeg ac_add_options --with-system-zlib -ac_add_options --with-system-png +#ac_add_options --with-system-png ac_add_options --with-pthreads ac_add_options --disable-tests -ac_add_options --disable-debug ac_add_options --disable-installer +#ac_add_options --enable-debug +#ac_add_options --disable-optimize +ac_add_options --disable-debug ac_add_options --enable-optimize="$RPM_OPT_FLAGS" ac_add_options --enable-xinerama -ac_add_options --enable-default-toolkit=gtk2 +ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --disable-xprint ac_add_options --disable-strip ac_add_options --enable-pango @@ -17,8 +23,10 @@ ac_add_options --enable-system-cairo ac_add_options --enable-svg ac_add_options --enable-canvas ac_add_options --enable-extensions=default,irc -ac_add_options --enable-application=suite ac_add_options --enable-crypto +ac_add_options --enable-safe-browsing +ac_add_options --disable-crashreporter +ac_add_options --enable-static export BUILD_OFFICIAL=1 export MOZILLA_OFFICIAL=1 Index: seamonkey.sh.in =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.sh.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- seamonkey.sh.in 7 Jan 2009 22:28:12 -0000 1.6 +++ seamonkey.sh.in 24 Jul 2009 07:57:34 -0000 1.7 @@ -40,7 +40,7 @@ ulimit -c 0 ## Variables ## MOZ_DIST_BIN="LIBDIR/seamonkey-MOZILLA_VERSION" -MOZ_PROGRAM="LIBDIR/seamonkey-MOZILLA_VERSION/seamonkey-bin" +MOZ_PROGRAM="LIBDIR/seamonkey-MOZILLA_VERSION/seamonkey" MOZ_CLIENT_PROGRAM="LIBDIR/seamonkey-MOZILLA_VERSION/mozilla-xremote-client -a seamonkey" ## Index: seamonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- seamonkey.spec 10 Jul 2009 11:10:43 -0000 1.55 +++ seamonkey.spec 24 Jul 2009 07:57:34 -0000 1.56 @@ -4,19 +4,23 @@ %define minimum_build_nspr_version 4.7.2 %define minimum_build_nss_version 3.12 +%define prerelease_tag b1 + %define _unpackaged_files_terminate_build 0 %define builddir %{_builddir}/%{name}-%{version} -%define mozdir %{_libdir}/seamonkey-%{version} +%define mozdir %{_libdir}/seamonkey-%{version}%{?prerelease_tag} +%define sources_subdir comm-central + Name: seamonkey Summary: Web browser, e-mail, news, IRC client, HTML editor -Version: 1.1.17 -Release: 1%{?dist} +Version: 2.0 +Release: 1.beta1%{?dist} URL: http://www.mozilla.org/projects/seamonkey/ License: MPLv1.1 Group: Applications/Internet -Source0: seamonkey-%{version}.source.tar.bz2 +Source0: seamonkey-%{version}%{?prerelease_tag}-source.tar.bz2 Source2: seamonkey-icon.png Source3: seamonkey.sh.in Source4: seamonkey.desktop @@ -29,27 +33,8 @@ Source18: mozilla-xpcom-exclude-li Source20: seamonkey-fedora-default-prefs.js Source100: find-external-requires -Patch1: firefox-1.0-prdtoa.patch -Patch2: firefox-2.0-link-layout.patch -Patch3: seamonkey-1.1.9plus.patch -Patch21: firefox-0.7.3-default-plugin-less-annoying.patch -Patch22: firefox-0.7.3-psfonts.patch -Patch41: firefox-2.0.0.4-undo-uriloader.patch -Patch42: firefox-1.1-uriloader.patch -Patch81: firefox-1.5-nopangoxft.patch -Patch83: firefox-1.5-pango-cursor-position.patch -Patch84: firefox-2.0-pango-printing.patch -Patch85: firefox-2.0-pango-ligatures.patch -Patch86: firefox-1.5-pango-cursor-position-more.patch -Patch87: firefox-1.5-pango-justified-range.patch -Patch88: firefox-1.5-pango-underline.patch -Patch91: thunderbird-0.7.3-gnome-uriloader.patch -Patch100: firefox-1.5-bullet-bill.patch -Patch102: firefox-1.5-theme-change.patch -Patch220: seamonkey-fedora-home-page.patch -Patch225: mozilla-nspr-packages.patch -Patch301: mozilla-1.7.3-gnome-vfs-default-app.patch -Patch304: mozilla-1.7.5-g-application-name.patch +Patch0: mozilla-jemalloc.patch +Patch1: mozilla-191-path.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: nspr-devel >= %{minimum_build_nspr_version} @@ -76,6 +61,8 @@ BuildRequires: perl BuildRequires: system-bookmarks Requires: system-bookmarks Requires: mozilla-filesystem +Requires: nspr >= %{minimum_build_nspr_version} +Requires: nss >= %{minimum_build_nss_version} Obsoletes: seamonkey-chat Obsoletes: seamonkey-devel @@ -83,21 +70,6 @@ Obsoletes: seamonkey-dom-inspector Obsoletes: seamonkey-js-debugger Obsoletes: seamonkey-mail -#%global nspr_build_time_version %(nspr-config --version) - -#%if "%{?nspr_build_time_version}" > "0" -#Requires: nspr >= %{nspr_build_time_version} -#%else -Requires: nspr >= %{minimum_build_nspr_version} -#%endif - -#%global nss_build_time_version %(nss-config --version) - -#%if "%{?nss_build_time_version}" > "0" -#Requires: nss >= %{nss_build_time_version} -#%else -Requires: nss >= %{minimum_build_nss_version} -#%endif AutoProv: 0 @@ -115,60 +87,40 @@ application formerly known as Mozilla Ap %prep %setup -q -c -cd mozilla -%patch1 -p0 -%patch2 -p1 -#%patch3 -p1 -%patch22 -p1 -%patch41 -p1 -%patch42 -p0 -%patch81 -p1 -%patch83 -p1 -%patch84 -p0 -%patch85 -p1 -%patch86 -p1 -%patch87 -p1 -%patch88 -p1 -%patch91 -p1 -b .gnome-uriloader -%patch100 -p1 -b .bullet-bill -%patch102 -p0 -b .theme-change -%patch220 -p1 -%patch225 -p1 -%patch301 -p1 -%patch304 -p0 +cd %{sources_subdir} + +%patch0 -p0 -b .jemalloc +%patch1 -p0 -b .path %{__rm} -f .mozconfig %{__cp} %{SOURCE10} .mozconfig %build -cd mozilla +cd %{sources_subdir} -XCFLAGS=-g \ -CFLAGS=-g \ -%ifarch ia64 ppc -CXXFLAGS="-fno-inline -g" \ -%else -CXXFLAGS=-g \ +# Mozilla builds with -Wall with exception of a few warnings which show up +# everywhere in the code; so, don't override that. +MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-Wall//') +export CFLAGS=$MOZ_OPT_FLAGS +export CXXFLAGS=$MOZ_OPT_FLAGS + +export PREFIX='%{_prefix}' +export LIBDIR='%{_libdir}' + +MOZ_SMP_FLAGS=-j1 +%ifnarch ppc ppc64 s390 s390x +[ -z "$RPM_BUILD_NCPUS" ] && \ + RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`" +[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2 %endif -#Set up build flags (#468415) -RPM_OPT_FLAGS+=" -fno-strict-aliasing" - -BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 \ -./configure --prefix=%{_prefix} --libdir=%{_libdir} \ ---with-default-mozilla-five-home=%{mozdir} \ ---mandir=%{_mandir} - -BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make export -BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make %{?_smp_mflags} libs +make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS" %install %{__rm} -rf $RPM_BUILD_ROOT -cd mozilla +cd %{sources_subdir} -BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 \ - DESTDIR=$RPM_BUILD_ROOT \ - make install +DESTDIR=$RPM_BUILD_ROOT make install # create a list of all of the different package and the files that # will hold them @@ -187,92 +139,54 @@ echo %defattr\(-,root,root\) > %{builddi %{__rm} -f $RPM_BUILD_ROOT/%{mozdir}/searchplugins/mozilla.gif %{__rm} -f $RPM_BUILD_ROOT/%{mozdir}/searchplugins/mozilla.src -# build all of the default browser components -# base Seamonkey package (seamonkey.list) -%{SOURCE7} --package langenus --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ - --install-dir $RPM_BUILD_ROOT/%{mozdir} \ - --install-root %{mozdir} - -%{SOURCE7} --package regus --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ - --install-dir $RPM_BUILD_ROOT/%{mozdir} \ - --install-root %{mozdir} - -%{SOURCE7} --package deflenus --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ - --install-dir $RPM_BUILD_ROOT/%{mozdir} \ - --install-root %{mozdir} +# Copy over missing components +install -c -m 644 mozilla/dist/bin/components/*.xpt \ + $RPM_BUILD_ROOT/%{mozdir}/components +# build all of the default browser components +# base Seamonkey package (seamonkey.list) %{SOURCE7} --package xpcom --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} \ --exclude-file=%{SOURCE18} %{SOURCE7} --package browser --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} %{SOURCE7} --package spellcheck --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} %{SOURCE7} --package psm --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} \ --exclude-file=%{SOURCE17} %{SOURCE7} --package mail --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} %{SOURCE7} --package chatzilla --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} %{SOURCE7} --package venkman --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} %{SOURCE7} --package inspector --output-file %{builddir}/seamonkey.list \ - --package-file xpinstall/packager/packages-unix \ + --package-file suite/installer/packages \ --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} -# build our initial component and chrome registry - -pushd `pwd` - cd $RPM_BUILD_ROOT/%{mozdir} - - # save a copy of the default installed-chrome.txt file before we - # muck with it - mkdir chrome/lang - cp chrome/installed-chrome.txt chrome/lang/ - - # set up the default skin and locale to trigger the generation of - # the user-locales and users-skins.rdf - echo "skin,install,select,classic/1.0" >> chrome/installed-chrome.txt - echo "locale,install,select,en-US" >> chrome/installed-chrome.txt - - # save the defaults in a file that will be used later to rebuild the - # installed-chrome.txt file - echo "skin,install,select,classic/1.0" >> chrome/lang/default.txt - echo "locale,install,select,en-US" >> chrome/lang/default.txt - - # fix permissions of the chrome directories - /usr/bin/find . -type d -perm 0700 -exec chmod 755 {} \; || : - - # We don't want JS files to be executable - /usr/bin/find . -type f -name \*.js -exec chmod 644 {} \; || : -popd - # set up our desktop files %{__mkdir_p} $RPM_BUILD_ROOT/%{_datadir}/pixmaps/ @@ -299,7 +213,8 @@ if [ ! -d $RPM_BUILD_ROOT/%{mozdir}/plug fi # install our seamonkey.sh file -cat %{SOURCE3} | sed -e 's/MOZILLA_VERSION/%{version}/g' \ +rm -rf $RPM_BUILD_ROOT/usr/bin/seamonkey +cat %{SOURCE3} | sed -e 's/MOZILLA_VERSION/%{version}%{?prerelease_tag}/g' \ -e 's,LIBDIR,%{_libdir},g' > \ $RPM_BUILD_ROOT/usr/bin/seamonkey @@ -315,30 +230,12 @@ chmod 755 $RPM_BUILD_ROOT/usr/bin/seamon %{__rm} -f $RPM_BUILD_ROOT/%{mozdir}/defaults/profile/bookmarks.html ln -s %{default_bookmarks_file} $RPM_BUILD_ROOT/%{mozdir}/defaults/profile/bookmarks.html -# ghost files -touch $RPM_BUILD_ROOT%{mozdir}/chrome/chrome.rdf -for overlay in {"browser","communicator","cookie","editor","global","inspector","messenger","navigator"}; do - %{__mkdir_p} $RPM_BUILD_ROOT%{mozdir}/chrome/overlayinfo/$overlay/content - touch $RPM_BUILD_ROOT%{mozdir}/chrome/overlayinfo/$overlay/content/overlays.rdf -done -for overlay in {"browser","global"}; do - %{__mkdir_p} $RPM_BUILD_ROOT%{mozdir}/chrome/overlayinfo/$overlay/skin - touch $RPM_BUILD_ROOT%{mozdir}/chrome/overlayinfo/$overlay/skin/stylesheets.rdf -done -touch $RPM_BUILD_ROOT%{mozdir}/chrome/chrome.rdf -%{__mkdir_p} $RPM_BUILD_ROOT%{mozdir}/components/myspell -touch $RPM_BUILD_ROOT%{mozdir}/components/compreg.dat -touch $RPM_BUILD_ROOT%{mozdir}/components/xpti.dat - - %clean %{__rm} -rf $RPM_BUILD_ROOT - %post update-desktop-database %{_datadir}/applications - %postun update-desktop-database %{_datadir}/applications @@ -349,32 +246,41 @@ update-desktop-database %{_datadir}/appl %{_datadir}/pixmaps/seamonkey-icon.png %{_datadir}/pixmaps/seamonkey-mail-icon.png -%ghost %{mozdir}/components/compreg.dat -%ghost %{mozdir}/components/xpti.dat +# search engines +%{mozdir}/searchplugins/*.png +%{mozdir}/searchplugins/*.src + +# dictionaries +%{mozdir}/dictionaries/* + +# Profile? +%{mozdir}/defaults/profile/* + +# some rest +%{mozdir}/chrome/en-US.jar +%{mozdir}/chrome/en-US.manifest +%{mozdir}/chrome/reporter.jar +%{mozdir}/chrome/reporter.manifest +%{mozdir}/components/*.xpt +%{mozdir}/defaults/messenger/mailViews.dat -%doc %{_mandir}/man1/seamonkey.1.gz +#%doc %{_mandir}/man1/seamonkey.1.gz %dir %{mozdir} -%dir %{mozdir}/init.d %dir %{mozdir}/defaults/pref %dir %{mozdir}/defaults/profile -%dir %{mozdir}/defaults/profile/US -%dir %{mozdir}/defaults/wallet %dir %{mozdir}/defaults/autoconfig -%dir %{mozdir}/defaults/messenger/US %dir %{mozdir}/defaults/messenger %dir %{mozdir}/defaults %dir %{mozdir}/chrome/icons/default %dir %{mozdir}/chrome/icons -%dir %{mozdir}/chrome/lang %dir %{mozdir}/chrome %dir %{mozdir}/res/dtd %dir %{mozdir}/res/fonts %dir %{mozdir}/res -%dir %{mozdir}/components/myspell %dir %{mozdir}/components %dir %{mozdir}/searchplugins @@ -383,52 +289,10 @@ update-desktop-database %{_datadir}/appl %dir %{mozdir}/plugins %dir %{mozdir}/res/html -%dir %{mozdir}/res/samples %dir %{mozdir}/res/entityTables -%verify (not md5 mtime size) %{mozdir}/chrome/installed-chrome.txt -%{mozdir}/chrome/lang/installed-chrome.txt -%{mozdir}/chrome/lang/default.txt - %{mozdir}/defaults/pref/all-fedora.js -%ghost %{mozdir}/chrome/chrome.rdf - -%ghost %{mozdir}/chrome/overlayinfo/browser/skin/stylesheets.rdf -%ghost %{mozdir}/chrome/overlayinfo/global/skin/stylesheets.rdf - -%ghost %{mozdir}/chrome/overlayinfo/browser/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/communicator/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/global/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/editor/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/navigator/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/cookie/content/overlays.rdf - -%ghost %{mozdir}/chrome/overlayinfo/messenger/content/overlays.rdf -%ghost %{mozdir}/chrome/overlayinfo/inspector/content/overlays.rdf - -%dir %{mozdir}/chrome/overlayinfo/browser/content -%dir %{mozdir}/chrome/overlayinfo/browser/skin -%dir %{mozdir}/chrome/overlayinfo/browser -%dir %{mozdir}/chrome/overlayinfo/global/content -%dir %{mozdir}/chrome/overlayinfo/global/skin -%dir %{mozdir}/chrome/overlayinfo/global -%dir %{mozdir}/chrome/overlayinfo/communicator/content -%dir %{mozdir}/chrome/overlayinfo/communicator -%dir %{mozdir}/chrome/overlayinfo/editor/content -%dir %{mozdir}/chrome/overlayinfo/editor -%dir %{mozdir}/chrome/overlayinfo/navigator/content -%dir %{mozdir}/chrome/overlayinfo/navigator -%dir %{mozdir}/chrome/overlayinfo/cookie/content -%dir %{mozdir}/chrome/overlayinfo/cookie - -%dir %{mozdir}/chrome/overlayinfo/messenger/content -%dir %{mozdir}/chrome/overlayinfo/messenger - -%dir %{mozdir}/chrome/overlayinfo/inspector/content -%dir %{mozdir}/chrome/overlayinfo/inspector - -%dir %{mozdir}/chrome/overlayinfo %dir %{mozdir}/greprefs %{_datadir}/applications/mozilla-%{name}.desktop @@ -436,6 +300,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Wed Jul 22 2009 Martin Stransky 2.0-1.beta1 +- Update to 2.0 beta 1 + * Fri Jul 10 2009 Martin Stransky 1.1.17-1 - Update to 1.1.17 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/sources,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sources 10 Jul 2009 11:10:43 -0000 1.26 +++ sources 24 Jul 2009 07:57:34 -0000 1.27 @@ -1 +1 @@ -9eba600ba6ca522b8eada9a0a8e890e2 seamonkey-1.1.17.source.tar.bz2 +f7d6453b2e84070b6f74c597209f447c seamonkey-2.0b1-source.tar.bz2 --- firefox-0.7.3-default-plugin-less-annoying.patch DELETED --- --- firefox-0.7.3-psfonts.patch DELETED --- --- firefox-1.0-prdtoa.patch DELETED --- --- firefox-1.1-nss-system-nspr.patch DELETED --- --- firefox-1.1-uriloader.patch DELETED --- --- firefox-1.1-visibility.patch DELETED --- --- firefox-1.5-bullet-bill.patch DELETED --- --- firefox-1.5-embedwindow-visibility.patch DELETED --- --- firefox-1.5-nopangoxft.patch DELETED --- --- firefox-1.5-pango-cursor-position-more.patch DELETED --- --- firefox-1.5-pango-cursor-position.patch DELETED --- --- firefox-1.5-pango-justified-range.patch DELETED --- --- firefox-1.5-pango-mathml.patch DELETED --- --- firefox-1.5-pango-ua.patch DELETED --- --- firefox-1.5-pango-underline.patch DELETED --- --- firefox-1.5-theme-change.patch DELETED --- --- firefox-1.5-with-system-nss.patch DELETED --- --- firefox-1.5.0.1-dumpstack.patch DELETED --- --- firefox-2.0-link-layout.patch DELETED --- --- firefox-2.0-pango-ligatures.patch DELETED --- --- firefox-2.0-pango-printing.patch DELETED --- --- firefox-2.0.0.4-undo-uriloader.patch DELETED --- --- mozilla-1.4.1-ppc64.patch DELETED --- --- mozilla-1.7.3-gnome-vfs-default-app.patch DELETED --- --- mozilla-1.7.5-g-application-name.patch DELETED --- --- mozilla-nspr-packages.patch DELETED --- --- seamonkey-1.0.1-dumpstack.patch DELETED --- --- seamonkey-1.1.9plus.patch DELETED --- --- seamonkey-cairo-bug5136.patch DELETED --- --- seamonkey-fedora-home-page.patch DELETED --- --- thunderbird-0.7.3-gnome-uriloader.patch DELETED --- --- thunderbird-1.5-bug304720.patch DELETED --- --- thunderbird-mimeeobj-externalc.patch DELETED --- From stransky at fedoraproject.org Fri Jul 24 08:01:49 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 24 Jul 2009 08:01:49 +0000 (UTC) Subject: rpms/seamonkey/devel mozilla-191-path.patch, NONE, 1.1 mozilla-jemalloc.patch, NONE, 1.1 Message-ID: <20090724080149.EC08E11C007C@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/seamonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30924 Added Files: mozilla-191-path.patch mozilla-jemalloc.patch Log Message: missing patches mozilla-191-path.patch: config/pathsub.h | 2 +- dbm/include/mcom_db.h | 3 ++- modules/libjar/nsZipArchive.cpp | 2 +- modules/libreg/src/reg.c | 3 ++- nsprpub/config/pathsub.h | 2 +- security/coreconf/nsinstall/pathsub.h | 2 +- toolkit/mozapps/update/src/updater/updater.cpp | 3 ++- toolkit/xre/nsAppRunner.h | 3 ++- widget/src/xremoteclient/XRemoteClient.cpp | 3 ++- xpcom/build/nsXPCOMPrivate.h | 3 ++- xpcom/io/SpecialSystemDirectory.cpp | 3 ++- xpcom/obsolete/nsFileSpecUnix.cpp | 3 ++- xpcom/typelib/xpidl/xpidl_java.c | 1 + 13 files changed, 21 insertions(+), 12 deletions(-) --- NEW FILE mozilla-191-path.patch --- --- mozilla/toolkit/xre/nsAppRunner.h.old 2007-09-25 18:01:56.000000000 +0200 +++ mozilla/toolkit/xre/nsAppRunner.h 2007-09-25 18:02:23.000000000 +0200 @@ -48,7 +48,8 @@ #elif defined(CCHMAXPATH) #define MAXPATHLEN CCHMAXPATH #else -#define MAXPATHLEN 1024 +#include +#define MAXPATHLEN PATH_MAX #endif #endif diff -up mozilla/toolkit/mozapps/update/src/updater/updater.cpp.old mozilla/toolkit/mozapps/update/src/updater/updater.cpp --- mozilla/toolkit/mozapps/update/src/updater/updater.cpp.old 2007-09-25 18:00:26.000000000 +0200 +++ mozilla/toolkit/mozapps/update/src/updater/updater.cpp 2007-09-25 18:00:53.000000000 +0200 @@ -107,7 +107,8 @@ void LaunchChild(int argc, char **argv); # elif defined(CCHMAXPATH) # define MAXPATHLEN CCHMAXPATH # else -# define MAXPATHLEN 1024 +# include +# define MAXPATHLEN PATH_MAX # endif #endif diff -up mozilla/xpcom/io/SpecialSystemDirectory.cpp.old mozilla/xpcom/io/SpecialSystemDirectory.cpp --- mozilla/xpcom/io/SpecialSystemDirectory.cpp.old 2007-09-25 18:04:25.000000000 +0200 +++ mozilla/xpcom/io/SpecialSystemDirectory.cpp 2007-09-25 18:04:48.000000000 +0200 @@ -109,7 +109,8 @@ #elif defined(CCHMAXPATH) #define MAXPATHLEN CCHMAXPATH #else -#define MAXPATHLEN 1024 +#include +#define MAXPATHLEN PATH_MAX #endif #endif diff -up mozilla/xpcom/obsolete/nsFileSpecUnix.cpp.old mozilla/xpcom/obsolete/nsFileSpecUnix.cpp --- mozilla/xpcom/obsolete/nsFileSpecUnix.cpp.old 2006-11-28 01:18:37.000000000 +0100 +++ mozilla/xpcom/obsolete/nsFileSpecUnix.cpp 2007-09-25 18:05:49.000000000 +0200 @@ -79,7 +79,8 @@ #endif #ifndef MAXPATHLEN -#define MAXPATHLEN 1024 /* Guessing this is okay. Works for SCO. */ +#include +#define MAXPATHLEN PATH_MAX /* Guessing this is okay. Works for SCO. */ #endif #if defined(__QNX__) diff -up mozilla/xpcom/build/nsXPCOMPrivate.h.old mozilla/xpcom/build/nsXPCOMPrivate.h --- mozilla/xpcom/build/nsXPCOMPrivate.h.old 2007-09-25 18:02:58.000000000 +0200 +++ mozilla/xpcom/build/nsXPCOMPrivate.h 2007-09-25 18:03:15.000000000 +0200 @@ -252,7 +252,8 @@ NS_GetFrozenFunctions(XPCOMFunctions *en #elif defined(CCHMAXPATH) #define MAXPATHLEN CCHMAXPATH #else -#define MAXPATHLEN 1024 +#include +#define MAXPATHLEN PATH_MAX #endif #endif diff -up mozilla/dbm/include/mcom_db.h.old mozilla/dbm/include/mcom_db.h --- mozilla/dbm/include/mcom_db.h.old 2007-09-25 17:57:09.000000000 +0200 +++ mozilla/dbm/include/mcom_db.h 2007-09-25 17:57:49.000000000 +0200 @@ -214,7 +214,8 @@ #endif /* __DBINTERFACE_PRIVATE */ #ifdef SCO -#define MAXPATHLEN 1024 +#include +#define MAXPATHLEN PATH_MAX #endif #include diff -up mozilla/xpcom/typelib/xpidl/xpidl_java.c.old mozilla/xpcom/typelib/xpidl/xpidl_java.c --- mozilla/xpcom/typelib/xpidl/xpidl_java.c.old 2007-09-25 18:38:52.000000000 +0200 +++ mozilla/xpcom/typelib/xpidl/xpidl_java.c 2007-09-25 18:39:17.000000000 +0200 @@ -44,6 +44,7 @@ #include "xpidl.h" #include #include +#include #ifdef XP_WIN #include diff -up mozilla/widget/src/xremoteclient/XRemoteClient.cpp.old mozilla/widget/src/xremoteclient/XRemoteClient.cpp --- mozilla/widget/src/xremoteclient/XRemoteClient.cpp.old 2007-09-25 18:14:08.000000000 +0200 +++ mozilla/widget/src/xremoteclient/XRemoteClient.cpp 2007-09-25 18:36:55.000000000 +0200 @@ -76,7 +76,8 @@ #endif #ifndef MAX_PATH -#define MAX_PATH 1024 +#include +#define MAX_PATH PATH_MAX #endif #define ARRAY_LENGTH(array_) (sizeof(array_)/sizeof(array_[0])) diff -up mozilla/modules/libreg/src/reg.c.old mozilla/modules/libreg/src/reg.c --- mozilla/modules/libreg/src/reg.c.old 2007-09-25 18:25:02.000000000 +0200 +++ mozilla/modules/libreg/src/reg.c 2007-09-25 18:27:46.000000000 +0200 @@ -96,7 +96,8 @@ #define MAX_PATH PATH_MAX #elif defined(XP_UNIX) #ifndef MAX_PATH -#define MAX_PATH 1024 +#include +#define MAX_PATH PATH_MAX #endif #elif defined(XP_OS2) #ifndef MAX_PATH diff -up mozilla/config/pathsub.h.old mozilla/config/pathsub.h --- mozilla/config/pathsub.h.old 2004-04-18 16:17:25.000000000 +0200 +++ mozilla/config/pathsub.h 2007-09-25 18:48:13.000000000 +0200 @@ -46,7 +46,7 @@ #include #ifndef PATH_MAX -#define PATH_MAX 1024 +#error "PATH_MAX is not defined!" #endif /* diff -up mozilla/modules/libjar/nsZipArchive.cpp.old mozilla/modules/libjar/nsZipArchive.cpp --- mozilla/modules/libjar/nsZipArchive.cpp.old 2006-09-13 20:32:37.000000000 +0200 +++ mozilla/modules/libjar/nsZipArchive.cpp 2007-09-25 18:51:00.000000000 +0200 @@ -121,7 +121,7 @@ char * strdup(const char *src) # define S_IFLNK 0120000 # endif # ifndef PATH_MAX -# define PATH_MAX 1024 +# include # endif #endif /* XP_UNIX */ diff -up mozilla/nsprpub/config/pathsub.h.old mozilla/nsprpub/config/pathsub.h --- mozilla/nsprpub/config/pathsub.h.old 2004-04-25 17:00:34.000000000 +0200 +++ mozilla/nsprpub/config/pathsub.h 2007-09-25 18:57:51.000000000 +0200 @@ -50,7 +50,7 @@ #endif #ifndef PATH_MAX -#define PATH_MAX 1024 +#error "PATH_MAX is not defined!" #endif /* diff -up mozilla/security/coreconf/nsinstall/pathsub.h.old mozilla/security/coreconf/nsinstall/pathsub.h --- mozilla/security/coreconf/nsinstall/pathsub.h.old 2004-04-25 17:02:18.000000000 +0200 +++ mozilla/security/coreconf/nsinstall/pathsub.h 2007-09-25 19:00:35.000000000 +0200 @@ -49,7 +49,7 @@ #endif #ifndef PATH_MAX -#define PATH_MAX 1024 +#error "PATH_MAX is not defined!" #endif /* mozilla-jemalloc.patch: jemalloc.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- NEW FILE mozilla-jemalloc.patch --- diff -r f1af606531f5 memory/jemalloc/jemalloc.h --- mozilla/memory/jemalloc/jemalloc.h Sat Nov 22 20:22:22 2008 +0100 +++ mozilla/memory/jemalloc/jemalloc.h Mon Dec 01 16:53:06 2008 -0500 @@ -45,14 +45,14 @@ } jemalloc_stats_t; #ifndef MOZ_MEMORY_DARWIN -void *malloc(size_t size); -void *valloc(size_t size); -void *calloc(size_t num, size_t size); -void *realloc(void *ptr, size_t size); -void free(void *ptr); +void *malloc(size_t size) __THROW __attribute_malloc__ __wur; +void *valloc(size_t size) __THROW __attribute_malloc__ __wur; +void *calloc(size_t num, size_t size) __THROW __attribute_malloc__ __wur; +void *realloc(void *ptr, size_t size) __THROW __attribute_malloc__ __wur; +void free(void *ptr) __THROW __attribute_malloc__ __wur; #endif -int posix_memalign(void **memptr, size_t alignment, size_t size); +int posix_memalign(void **memptr, size_t alignment, size_t size) __THROW __attribute_malloc__ __wur; void *memalign(size_t alignment, size_t size); size_t malloc_usable_size(const void *ptr); void jemalloc_stats(jemalloc_stats_t *stats); From stransky at fedoraproject.org Fri Jul 24 08:13:06 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 24 Jul 2009 08:13:06 +0000 (UTC) Subject: rpms/seamonkey/devel seamonkey.spec,1.56,1.57 Message-ID: <20090724081306.A29FD11C007C@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/seamonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2480 Modified Files: seamonkey.spec Log Message: added alsa-lib Index: seamonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- seamonkey.spec 24 Jul 2009 07:57:34 -0000 1.56 +++ seamonkey.spec 24 Jul 2009 08:13:06 -0000 1.57 @@ -58,6 +58,7 @@ BuildRequires: libXt-devel BuildRequires: libXrender-devel BuildRequires: fileutils BuildRequires: perl +BuildRequires: alsa-lib-devel BuildRequires: system-bookmarks Requires: system-bookmarks Requires: mozilla-filesystem From harald at fedoraproject.org Fri Jul 24 08:17:35 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Fri, 24 Jul 2009 08:17:35 +0000 (UTC) Subject: rpms/udev/devel udev-post.init,1.8,1.9 udev.spec,1.286,1.287 Message-ID: <20090724081735.B403411C007C@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/udev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4087 Modified Files: udev-post.init udev.spec Log Message: * Fri Jul 24 2009 Harald Hoyer 145-2 - fix file permissions - remove rpath - chkconfig --add for udev-post - fix summaries - add "Required-Stop" to udev-post Index: udev-post.init =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev-post.init,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- udev-post.init 3 Jul 2009 13:48:12 -0000 1.8 +++ udev-post.init 24 Jul 2009 08:17:35 -0000 1.9 @@ -11,6 +11,7 @@ # Default-Start: 12345 # Default-Stop: 0 6 # Required-Start: $local_fs +# Required-Stop: # Short-Description: Moves the generated persistent udev rules to /etc/udev/rules.d # Description: Moves the generated persistent udev rules to /etc/udev/rules.d # Provides: udev-post Index: udev.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev/devel/udev.spec,v retrieving revision 1.286 retrieving revision 1.287 diff -u -p -r1.286 -r1.287 --- udev.spec 14 Jul 2009 12:05:12 -0000 1.286 +++ udev.spec 24 Jul 2009 08:17:35 -0000 1.287 @@ -5,7 +5,7 @@ Summary: A userspace implementation of devfs Name: udev Version: 145 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base Provides: udev-persistent = %{version}-%{release} @@ -36,12 +36,13 @@ BuildRequires: hwdata BuildRequires: gobject-introspection-devel >= 0.6.2 BuildRequires: gtk-doc BuildRequires: usbutils +BuildRequires: libtool >= 2.2.6 Requires: libselinux >= 0:1.17.9-2 sed Conflicts: kernel < 0:2.6 mkinitrd <= 0:4.1.11-1 initscripts < 7.84 Requires: util-linux-ng >= 2.15.1 Obsoletes: dev <= 0:3.12-1 -Provides: dev = 0:3.12-1 +Provides: dev = 0:3.12-2 %description The udev package contains an implementation of devfs in @@ -68,7 +69,7 @@ This package contains the development fi dynamic library, which provides access to udev device information. %package -n libgudev1 -Summary: Libraries for adding libudev support to applications that use glib. +Summary: Libraries for adding libudev support to applications that use glib Group: Development/Libraries Requires: libudev >= 142 # remove the following lines for libgudev so major 1 @@ -80,7 +81,7 @@ This package contains the libraries that functionality from applications that use glib. %package -n libgudev1-devel -Summary: Header files for adding libudev support to applications that use glib. +Summary: Header files for adding libudev support to applications that use glib Group: Development/Libraries Requires: libudev-devel >= 142 Provides: libgudev-devel = 20090517 @@ -96,10 +97,14 @@ glib-based applications using libudev fu %setup -q %build +# get rid of rpath +libtoolize -f -c %configure --with-selinux --prefix=%{_prefix} --exec-prefix="" \ --sysconfdir=%{_sysconfdir} --with-libdir-name=%{_lib} \ --sbindir="/sbin" --libexecdir=%{udev_scriptdir} \ - --with-rootlibdir=/%{_lib} --enable-introspection + --with-rootlibdir=/%{_lib} --enable-introspection \ + --disable-rpath + make %{?_smp_mflags} %install @@ -221,6 +226,7 @@ if test -f /proc/1/exe -a -d /proc/1/roo /sbin/udevadm control --start-exec-queue fi fi +/sbin/chkconfig --add udev-post exit 0 @@ -283,7 +289,7 @@ rm -rf $RPM_BUILD_ROOT %ghost %config(noreplace,missingok) %attr(0644,root,root) %{_sysconfdir}/scsi_id.config -%config %attr(0644,root,root) %{_sysconfdir}/modprobe.d/floppy-pnp.conf +%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/modprobe.d/floppy-pnp.conf %dir %attr(0755,root,root) %{firmwaredir} %attr(0644,root,root) %{_mandir}/man8/udev*.8* @@ -305,7 +311,7 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %{udev_scriptdir}/udev-acl %attr(0755,root,root) %{udev_scriptdir}/v4l_id %attr(0755,root,root) %{udev_scriptdir}/findkeyboards -%attr(0755,root,root) %{udev_scriptdir}/keymaps/* +%attr(0644,root,root) %{udev_scriptdir}/keymaps/* %attr(0644,root,root) %{_prefix}/lib/ConsoleKit/run-session.d/udev-acl.ck @@ -325,19 +331,28 @@ rm -rf $RPM_BUILD_ROOT %files -n libgudev1 %defattr(0644, root, root, 0755) +%doc COPYING %attr(0755,root,root) %{_libdir}/libgudev-1.0.so.* %attr(0644,root,root) %{_libdir}/girepository-1.0/GUdev-1.0.typelib %files -n libgudev1-devel %defattr(0644, root, root, 0755) +%doc COPYING %attr(0755,root,root) %{_libdir}/libgudev-1.0.so %attr(0644,root,root) %{_includedir}/gudev-1.0/gudev/*.h %attr(0644,root,root) %{_datadir}/gir-1.0/GUdev-1.0.gir %dir %{_datadir}/gtk-doc/html/gudev %attr(0644,root,root) %{_datadir}/gtk-doc/html/gudev/* -%attr(0755,root,root) %{_libdir}/pkgconfig/gudev-1.0* +%attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0* %changelog +* Fri Jul 24 2009 Harald Hoyer 145-2 +- fix file permissions +- remove rpath +- chkconfig --add for udev-post +- fix summaries +- add "Required-Stop" to udev-post + * Tue Jul 14 2009 Harald Hoyer 145-1 - version 145 - add "udevlog" kernel command line option to redirect the From stransky at fedoraproject.org Fri Jul 24 08:30:29 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 24 Jul 2009 08:30:29 +0000 (UTC) Subject: rpms/seamonkey/devel seamonkey.spec,1.57,1.58 Message-ID: <20090724083030.0F0B411C049E@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/seamonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9164 Modified Files: seamonkey.spec Log Message: build fix Index: seamonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- seamonkey.spec 24 Jul 2009 08:13:06 -0000 1.57 +++ seamonkey.spec 24 Jul 2009 08:30:28 -0000 1.58 @@ -112,7 +112,7 @@ MOZ_SMP_FLAGS=-j1 %ifnarch ppc ppc64 s390 s390x [ -z "$RPM_BUILD_NCPUS" ] && \ RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`" -[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2 +[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j1 %endif make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS" From verdurin at fedoraproject.org Fri Jul 24 08:02:34 2009 From: verdurin at fedoraproject.org (verdurin) Date: Fri, 24 Jul 2009 08:02:34 +0000 (UTC) Subject: rpms/gnomint/F-11 .cvsignore,1.6,1.7 sources,1.6,1.7 Message-ID: <20090724080234.6AEF811C007C@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31145 Modified Files: .cvsignore sources Log Message: ensure patch included in sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 24 Jul 2009 07:46:19 -0000 1.6 +++ .cvsignore 24 Jul 2009 08:02:34 -0000 1.7 @@ -1 +1,2 @@ gnomint-1.0.0.tar.gz +gnomint-1.0.0-cflags.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 24 Jul 2009 07:46:19 -0000 1.6 +++ sources 24 Jul 2009 08:02:34 -0000 1.7 @@ -1 +1,2 @@ 20de7af89f71ebd6c45b41aeab59207c gnomint-1.0.0.tar.gz +499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch From verdurin at fedoraproject.org Fri Jul 24 08:32:27 2009 From: verdurin at fedoraproject.org (verdurin) Date: Fri, 24 Jul 2009 08:32:27 +0000 (UTC) Subject: rpms/gnomint/F-11 gnomint.spec,1.7,1.8 Message-ID: <20090724083227.995B611C007C@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9771 Modified Files: gnomint.spec Log Message: Increment release to fix sources problem Index: gnomint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-11/gnomint.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnomint.spec 15 Jul 2009 08:20:17 -0000 1.7 +++ gnomint.spec 24 Jul 2009 08:32:27 -0000 1.8 @@ -1,6 +1,6 @@ Name: gnomint Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical x509 Certification Authority management tool Group: Applications/System @@ -94,6 +94,9 @@ update-desktop-database %{_datadir}/appl %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Fri Jul 24 2009 Adam Huffman - 1.0.0-2 +- increment release for tag problem + * Wed Jul 15 2009 Adam Huffman - 1.0.0-1 - new stable upstream release - added forgotten crlgen function to gnomint-cli text-based interface From dwalsh at fedoraproject.org Fri Jul 24 08:32:40 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Fri, 24 Jul 2009 08:32:40 +0000 (UTC) Subject: rpms/selinux-policy/devel modules-mls.conf,1.54,1.55 Message-ID: <20090724083240.868D811C007C@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9920 Modified Files: modules-mls.conf Log Message: * Thu Jul 22 2009 Dan Walsh 3.6.23-1 - Update to upstream Index: modules-mls.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-mls.conf,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- modules-mls.conf 3 Apr 2009 14:45:58 -0000 1.54 +++ modules-mls.conf 24 Jul 2009 08:32:40 -0000 1.55 @@ -536,11 +536,11 @@ gnomeclock = module hal = module # Layer: services -# Module: polkit +# Module: policykit # # Hardware abstraction layer # -polkit = module +policykit = module # Layer: services # Module: psad From verdurin at fedoraproject.org Fri Jul 24 08:45:04 2009 From: verdurin at fedoraproject.org (verdurin) Date: Fri, 24 Jul 2009 08:45:04 +0000 (UTC) Subject: rpms/gnomint/F-10 .cvsignore,1.6,1.7 sources,1.6,1.7 Message-ID: <20090724084504.5F0B511C007C@cvs1.fedora.phx.redhat.com> Author: verdurin Update of /cvs/pkgs/rpms/gnomint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13947 Modified Files: .cvsignore sources Log Message: add cflags patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 15 Jul 2009 09:09:37 -0000 1.6 +++ .cvsignore 24 Jul 2009 08:45:03 -0000 1.7 @@ -1 +1,2 @@ gnomint-1.0.0.tar.gz +gnomint-1.0.0-cflags.patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 15 Jul 2009 09:09:37 -0000 1.6 +++ sources 24 Jul 2009 08:45:03 -0000 1.7 @@ -1 +1,2 @@ 20de7af89f71ebd6c45b41aeab59207c gnomint-1.0.0.tar.gz +499013a5ab3e98ac51d5dc8b48181f47 gnomint-1.0.0-cflags.patch From eseyman at fedoraproject.org Fri Jul 24 08:53:14 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Fri, 24 Jul 2009 08:53:14 +0000 (UTC) Subject: rpms/perl-Titanium/devel import.log, 1.1, 1.2 perl-Titanium.spec, 1.1, 1.2 Message-ID: <20090724085314.8F6F811C007C@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/perl-Titanium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17747/devel Modified Files: import.log perl-Titanium.spec Log Message: Initial import. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 21 Jul 2009 15:32:51 -0000 1.1 +++ import.log 24 Jul 2009 08:53:14 -0000 1.2 @@ -1 +1,2 @@ perl-Titanium-1_03-1_fc11:HEAD:perl-Titanium-1.03-1.fc11.src.rpm:1248190353 +perl-Titanium-1_03-1_fc11:HEAD:perl-Titanium-1.03-1.fc11.src.rpm:1248425567 Index: perl-Titanium.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Titanium/devel/perl-Titanium.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Titanium.spec 21 Jul 2009 15:32:52 -0000 1.1 +++ perl-Titanium.spec 24 Jul 2009 08:53:14 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Strong, lightweight web License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Titanium/ -Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/Titanium-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/Titanium-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(CGI::Application) >= 4 From caolanm at fedoraproject.org Fri Jul 24 08:54:21 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 08:54:21 +0000 (UTC) Subject: rpms/flute/devel flute.spec,1.5,1.6 Message-ID: <20090724085421.B13CB11C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/flute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18258 Modified Files: flute.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: flute.spec =================================================================== RCS file: /cvs/pkgs/rpms/flute/devel/flute.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- flute.spec 3 May 2009 14:06:01 -0000 1.5 +++ flute.spec 24 Jul 2009 08:54:20 -0000 1.6 @@ -3,7 +3,7 @@ Name: flute Version: 1.3.0 -Release: 1.OOo31%{?dist} +Release: 2.OOo31%{?dist} Summary: Java CSS parser using SAC License: W3C Group: System Environment/Libraries @@ -26,6 +26,9 @@ A Cascading Style Sheets parser using th %package javadoc Group: Development/Documentation Summary: Javadoc for %{name} +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -67,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara - 1.3.0-2.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Sun May 03 2009 Caolan McNamara - 1.3.0-1.OOo31 - post-release tuned for OpenOffice.org report-designer From twaugh at fedoraproject.org Fri Jul 24 09:00:30 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 24 Jul 2009 09:00:30 +0000 (UTC) Subject: rpms/system-config-printer/F-11 system-config-printer.spec, 1.269, 1.270 Message-ID: <20090724090030.50E0B11C049E@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20547 Modified Files: system-config-printer.spec Log Message: * Fri Jul 24 2009 Tim Waugh 1.1.8-7 - Removed gnome-packagekit dependency. The presence of gpk-install-package-name is detected at run-time, and the program acts accordingly. Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/F-11/system-config-printer.spec,v retrieving revision 1.269 retrieving revision 1.270 diff -u -p -r1.269 -r1.270 --- system-config-printer.spec 6 Jul 2009 14:45:05 -0000 1.269 +++ system-config-printer.spec 24 Jul 2009 09:00:29 -0000 1.270 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.8 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -49,7 +49,6 @@ Requires: notify-python Requires: gnome-python2-gnomekeyring Requires: python-sexy Requires: libxml2-python -Requires: gnome-packagekit Obsoletes: system-config-printer-gui <= 0.6.152 Provides: system-config-printer-gui = 0.6.152 @@ -188,6 +187,11 @@ rm -rf %buildroot exit 0 %changelog +* Fri Jul 24 2009 Tim Waugh 1.1.8-7 +- Removed gnome-packagekit dependency. The presence of + gpk-install-package-name is detected at run-time, and the program + acts accordingly. + * Mon Jul 6 2009 Tim Waugh 1.1.8-6 - Requires gnome-packagekit for gpk-install-package-name. From twaugh at fedoraproject.org Fri Jul 24 09:03:38 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 24 Jul 2009 09:03:38 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer.spec, 1.270, 1.271 Message-ID: <20090724090338.83CEB11C007C@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21787 Modified Files: system-config-printer.spec Log Message: * Fri Jul 24 2009 Tim Waugh 1.1.10-3 - Removed gnome-packagekit dependency. The presence of gpk-install-package-name is detected at run-time, and the program acts accordingly. Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.270 retrieving revision 1.271 diff -u -p -r1.270 -r1.271 --- system-config-printer.spec 23 Jul 2009 13:47:54 -0000 1.270 +++ system-config-printer.spec 24 Jul 2009 09:03:38 -0000 1.271 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -40,7 +40,6 @@ Requires: notify-python Requires: gnome-python2-gnomekeyring Requires: python-sexy Requires: libxml2-python -Requires: gnome-packagekit Obsoletes: system-config-printer-gui <= 0.6.152 Provides: system-config-printer-gui = 0.6.152 @@ -185,8 +184,13 @@ rm -rf %buildroot exit 0 %changelog +* Fri Jul 24 2009 Tim Waugh 1.1.10-3 +- Removed gnome-packagekit dependency. The presence of + gpk-install-package-name is detected at run-time, and the program + acts accordingly. + * Thu Jul 23 2009 Tim Waugh 1.1.10-2 -- Applied some udev-configure-printer fixes from upstrema. +- Applied some udev-configure-printer fixes from upstream. * Wed Jul 22 2009 Tim Waugh 1.1.10-1 - 1.1.10: From caolanm at fedoraproject.org Fri Jul 24 09:04:06 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:04:06 +0000 (UTC) Subject: rpms/jcommon/devel jcommon.spec,1.7,1.8 Message-ID: <20090724090406.AC41D11C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/jcommon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22021 Modified Files: jcommon.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: jcommon.spec =================================================================== RCS file: /cvs/pkgs/rpms/jcommon/devel/jcommon.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jcommon.spec 25 Apr 2009 12:33:17 -0000 1.7 +++ jcommon.spec 24 Jul 2009 09:04:06 -0000 1.8 @@ -3,7 +3,7 @@ Name: jcommon Version: 1.0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: JFree Java utility classes License: LGPLv2+ Group: System Environment/Libraries @@ -29,6 +29,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -123,6 +126,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.16-2 +- make javadoc no-arch when building as arch-dependant aot + * Sat Apr 25 2009 Caolan McNamara 1.0.16-1 - latest version From caolanm at fedoraproject.org Fri Jul 24 09:07:31 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:07:31 +0000 (UTC) Subject: rpms/jcommon-serializer/devel jcommon-serializer.spec,1.5,1.6 Message-ID: <20090724090731.73CC911C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/jcommon-serializer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22920 Modified Files: jcommon-serializer.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: jcommon-serializer.spec =================================================================== RCS file: /cvs/pkgs/rpms/jcommon-serializer/devel/jcommon-serializer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jcommon-serializer.spec 16 Mar 2009 12:16:31 -0000 1.5 +++ jcommon-serializer.spec 24 Jul 2009 09:07:31 -0000 1.6 @@ -3,7 +3,7 @@ Name: jcommon-serializer Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: JFree Java General Serialization Framework License: LGPLv2+ Group: System Environment/Libraries @@ -31,6 +31,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -96,6 +99,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 0.3.0-3 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 0.3.0-2 - OOo tuned serializer From kushal at fedoraproject.org Fri Jul 24 09:08:09 2009 From: kushal at fedoraproject.org (Kushal Das) Date: Fri, 24 Jul 2009 09:08:09 +0000 (UTC) Subject: rpms/lekhonee/F-11 lekhonee.spec,1.6,1.7 sources,1.7,1.8 Message-ID: <20090724090809.497A211C007C@cvs1.fedora.phx.redhat.com> Author: kushal Update of /cvs/extras/rpms/lekhonee/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23091a Modified Files: lekhonee.spec sources Log Message: New release of lekhonee Index: lekhonee.spec =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/lekhonee.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lekhonee.spec 3 Jul 2009 10:37:13 -0000 1.6 +++ lekhonee.spec 24 Jul 2009 09:08:09 -0000 1.7 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: lekhonee -Version: 0.6 +Version: 0.7 Release: 1%{?dist} Summary: A blog client @@ -13,7 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve BuildArch: noarch BuildRequires: python-devel, python-setuptools, PyQt4-devel, desktop-file-utils, PyKDE4-devel -Requires: PyQt4, mx, PyKDE4 +Requires: PyQt4, mx, PyKDE4, python-magic Requires: %{name}-lib = %{version}-%{release} %description @@ -29,7 +29,7 @@ The backend library for wordpress deskto %package gnome Summary: Wordpress desktop client frontend for Gnome Group: Applications/Internet -Requires: gnome-python2-gtkspell pygtksourceview pywebkitgtk %{name}-lib +Requires: gnome-python2-gtkspell, pygtksourceview, pywebkitgtk, %{name}-lib, python-magic Requires: %{name}-lib = %{version}-%{release} %description gnome @@ -39,6 +39,7 @@ Wordpress desktop client frontend for Gn %prep %setup -q +sed -i -e "s|#!/usr/bin/env python||" Chotha/LekhoneeUI.py %build @@ -83,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Wed Jul 22 2009 Kushal Das 0.7-1 +- New release + * Fri Jul 03 2009 Kushal Das 0.6-1 - New release Index: sources =================================================================== RCS file: /cvs/extras/rpms/lekhonee/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 Jul 2009 10:37:14 -0000 1.7 +++ sources 24 Jul 2009 09:08:09 -0000 1.8 @@ -1 +1 @@ -9b2f18145670f0956a1190416438bd2d lekhonee-0.6.tar.gz +c516d60ef57fcfa34a681fc3bb27b789 lekhonee-0.7.tar.gz From caolanm at fedoraproject.org Fri Jul 24 09:15:29 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:15:29 +0000 (UTC) Subject: rpms/libbase/devel libbase.spec,1.2,1.3 Message-ID: <20090724091529.CC2A811C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libbase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25284 Modified Files: libbase.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: libbase.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbase/devel/libbase.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libbase.spec 16 Mar 2009 11:12:28 -0000 1.2 +++ libbase.spec 24 Jul 2009 09:15:29 -0000 1.3 @@ -3,7 +3,7 @@ Name: libbase Version: 1.0.0 -Release: 2.OOo31%{?dist} +Release: 3.OOo31%{?dist} Summary: JFree Base Services License: LGPLv2+ Group: System Environment/Libraries @@ -30,6 +30,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -87,6 +90,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.0-3.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 1.0.0-2.OOo31 - Post released tuned for OpenOffice.org reportbuilder From caolanm at fedoraproject.org Fri Jul 24 09:17:01 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:17:01 +0000 (UTC) Subject: rpms/libfonts/devel libfonts.spec,1.4,1.5 Message-ID: <20090724091701.A0C6B11C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libfonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25764 Modified Files: libfonts.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: libfonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfonts/devel/libfonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libfonts.spec 16 Mar 2009 11:54:08 -0000 1.4 +++ libfonts.spec 24 Jul 2009 09:17:01 -0000 1.5 @@ -3,7 +3,7 @@ Name: libfonts Version: 1.0.0 -Release: 1.OOo31%{?dist} +Release: 2.OOo31%{?dist} Summary: TrueType Font Layouting License: LGPLv2+ Group: System Environment/Libraries @@ -30,6 +30,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -91,6 +94,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.0-2.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 1.0.0-1.OOo31 - Post-release tuned for OpenOffice.org From robert at fedoraproject.org Fri Jul 24 09:18:20 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 09:18:20 +0000 (UTC) Subject: rpms/python-boto/F-10 .cvsignore, 1.6, 1.7 python-boto.spec, 1.7, 1.8 sources, 1.6, 1.7 Message-ID: <20090724091820.82B8811C007C@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/python-boto/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26207/F-10 Modified Files: .cvsignore python-boto.spec sources Log Message: Upgrade to 1.8d (#513560) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 7 Dec 2008 17:30:37 -0000 1.6 +++ .cvsignore 24 Jul 2009 09:18:20 -0000 1.7 @@ -1 +1 @@ -boto-1.5c.tar.gz +boto-1.8d.tar.gz Index: python-boto.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-10/python-boto.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-boto.spec 7 Dec 2008 17:30:37 -0000 1.7 +++ python-boto.spec 24 Jul 2009 09:18:20 -0000 1.8 @@ -3,13 +3,13 @@ Summary: A simple lightweight interface to Amazon Web Services Name: python-boto -Version: 1.5c +Version: 1.8d Release: 1%{?dist} License: MIT Group: Development/Languages URL: http://code.google.com/p/%{pkgname}/ Source: http://boto.googlecode.com/files/%{pkgname}-%{version}.tar.gz -BuildRequires: python-devel >= 2.5 +BuildRequires: python-devel, python-setuptools-devel BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,6 +42,18 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Robert Scheck 1.8d-1 +- Upgrade to 1.8d (#513560) + +* Wed Jun 03 2009 Luke Macken 1.7a-2 +- Add python-setuptools-devel to our build requirements, for egg-info + +* Thu Apr 16 2009 Robert Scheck 1.7a-1 +- Upgrade to 1.7a + +* Mon Feb 23 2009 Robert Scheck 1.5c-2 +- Rebuild against rpm 4.6 + * Sun Dec 07 2008 Robert Scheck 1.5c-1 - Upgrade to 1.5c Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 7 Dec 2008 17:30:37 -0000 1.6 +++ sources 24 Jul 2009 09:18:20 -0000 1.7 @@ -1 +1 @@ -596558d292361944d2319cc615494734 boto-1.5c.tar.gz +3de4ac64015a9b06960fd14827a9c07a boto-1.8d.tar.gz From robert at fedoraproject.org Fri Jul 24 09:18:20 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 09:18:20 +0000 (UTC) Subject: rpms/python-boto/F-11 .cvsignore, 1.7, 1.8 python-boto.spec, 1.10, 1.11 sources, 1.7, 1.8 Message-ID: <20090724091820.D26EF11C007C@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/python-boto/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26207/F-11 Modified Files: .cvsignore python-boto.spec sources Log Message: Upgrade to 1.8d (#513560) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 3 May 2009 11:57:18 -0000 1.7 +++ .cvsignore 24 Jul 2009 09:18:20 -0000 1.8 @@ -1 +1 @@ -boto-1.7a.tar.gz +boto-1.8d.tar.gz Index: python-boto.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-11/python-boto.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-boto.spec 3 May 2009 11:57:18 -0000 1.10 +++ python-boto.spec 24 Jul 2009 09:18:20 -0000 1.11 @@ -3,13 +3,13 @@ Summary: A simple lightweight interface to Amazon Web Services Name: python-boto -Version: 1.7a +Version: 1.8d Release: 1%{?dist} License: MIT Group: Development/Languages URL: http://code.google.com/p/%{pkgname}/ Source: http://boto.googlecode.com/files/%{pkgname}-%{version}.tar.gz -BuildRequires: python-devel >= 2.5 +BuildRequires: python-devel, python-setuptools-devel BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,6 +42,12 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Robert Scheck 1.8d-1 +- Upgrade to 1.8d (#513560) + +* Wed Jun 03 2009 Luke Macken 1.7a-2 +- Add python-setuptools-devel to our build requirements, for egg-info + * Thu Apr 16 2009 Robert Scheck 1.7a-1 - Upgrade to 1.7a Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 May 2009 11:57:18 -0000 1.7 +++ sources 24 Jul 2009 09:18:20 -0000 1.8 @@ -1 +1 @@ -e64e995ff2313452e78ef37dddeb44c1 boto-1.7a.tar.gz +3de4ac64015a9b06960fd14827a9c07a boto-1.8d.tar.gz From robert at fedoraproject.org Fri Jul 24 09:18:21 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 09:18:21 +0000 (UTC) Subject: rpms/python-boto/devel .cvsignore, 1.7, 1.8 python-boto.spec, 1.11, 1.12 sources, 1.7, 1.8 Message-ID: <20090724091821.5162E11C007C@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/python-boto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26207/devel Modified Files: .cvsignore python-boto.spec sources Log Message: Upgrade to 1.8d (#513560) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Apr 2009 00:40:34 -0000 1.7 +++ .cvsignore 24 Jul 2009 09:18:20 -0000 1.8 @@ -1 +1 @@ -boto-1.7a.tar.gz +boto-1.8d.tar.gz Index: python-boto.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/devel/python-boto.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-boto.spec 5 Jun 2009 13:55:41 -0000 1.11 +++ python-boto.spec 24 Jul 2009 09:18:20 -0000 1.12 @@ -3,14 +3,13 @@ Summary: A simple lightweight interface to Amazon Web Services Name: python-boto -Version: 1.7a -Release: 2%{?dist} +Version: 1.8d +Release: 1%{?dist} License: MIT Group: Development/Languages URL: http://code.google.com/p/%{pkgname}/ Source: http://boto.googlecode.com/files/%{pkgname}-%{version}.tar.gz -BuildRequires: python-devel -BuildRequires: python-setuptools-devel +BuildRequires: python-devel, python-setuptools-devel BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -43,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Robert Scheck 1.8d-1 +- Upgrade to 1.8d (#513560) + * Wed Jun 03 2009 Luke Macken 1.7a-2 - Add python-setuptools-devel to our build requirements, for egg-info Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-boto/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Apr 2009 00:40:34 -0000 1.7 +++ sources 24 Jul 2009 09:18:21 -0000 1.8 @@ -1 +1 @@ -e64e995ff2313452e78ef37dddeb44c1 boto-1.7a.tar.gz +3de4ac64015a9b06960fd14827a9c07a boto-1.8d.tar.gz From caolanm at fedoraproject.org Fri Jul 24 09:25:34 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:25:34 +0000 (UTC) Subject: rpms/libformula/devel libformula.spec,1.4,1.5 Message-ID: <20090724092534.A4CC911C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libformula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29050 Modified Files: libformula.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: libformula.spec =================================================================== RCS file: /cvs/pkgs/rpms/libformula/devel/libformula.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libformula.spec 16 Mar 2009 11:20:28 -0000 1.4 +++ libformula.spec 24 Jul 2009 09:25:34 -0000 1.5 @@ -3,7 +3,7 @@ Name: libformula Version: 0.2.0 -Release: 2.OOo31%{?dist} +Release: 3.OOo31%{?dist} Summary: Formula Parser License: LGPLv2+ Group: System Environment/Libraries @@ -30,6 +30,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -87,6 +90,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 0.2.0-3.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 0.2.0-2.OOo31 - post-release tuned for OpenOffice.org report-designer From caolanm at fedoraproject.org Fri Jul 24 09:28:33 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:28:33 +0000 (UTC) Subject: rpms/liblayout/devel liblayout.spec,1.3,1.4 Message-ID: <20090724092833.E0B9911C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/liblayout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29757 Modified Files: liblayout.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: liblayout.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblayout/devel/liblayout.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- liblayout.spec 16 Mar 2009 12:06:21 -0000 1.3 +++ liblayout.spec 24 Jul 2009 09:28:33 -0000 1.4 @@ -3,7 +3,7 @@ Name: liblayout Version: 0.2.9 -Release: 3.OOo31%{?dist} +Release: 4.OOo31%{?dist} Summary: CSS based layouting framework License: LGPLv2+ Group: System Environment/Libraries @@ -33,6 +33,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -95,6 +98,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 0.2.9-4.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 0.2.9-3.OOo31 - Post-release tuned for OpenOffice.org From danken at fedoraproject.org Fri Jul 24 09:29:04 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Fri, 24 Jul 2009 09:29:04 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/devel tex-fonts-hebrew.spec,1.4,1.5 Message-ID: <20090724092904.58E0311C007C@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29960 Modified Files: tex-fonts-hebrew.spec Log Message: * Wed Jul 22 2009 Dan Kenigsberg - 0.1-13 - should obsolete tetex-fonts-hebrew-0.1-11. Bug #485639 Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/devel/tex-fonts-hebrew.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tex-fonts-hebrew.spec 22 Jul 2009 14:14:54 -0000 1.4 +++ tex-fonts-hebrew.spec 24 Jul 2009 09:29:03 -0000 1.5 @@ -22,7 +22,7 @@ BuildRequires: culmus-miriam-clm-fonts BuildRequires: culmus-miriam-mono-clm-fonts BuildRequires: culmus-nachlieli-clm-fonts BuildRequires: culmus-yehuda-clm-fonts -Obsoletes: tetex-fonts-hebrew < 0.1-9 +Obsoletes: tetex-fonts-hebrew < 0.1-11 Provides: tetex-fonts-hebrew = %{version}-%{release} Requires: texlive Requires: culmus-aharoni-clm-fonts @@ -40,7 +40,7 @@ Requires(post): /usr/bin/texhash /usr/bi Requires(postun): /usr/bin/texhash /usr/bin/updmap-sys %description -Support using the Culmus Hebrew fonts in LaTeX. +Support using the Culmus Hebrew fonts in LaTeX. %prep %setup -q -n tetex-fonts-hebrew-%{version} @@ -88,6 +88,9 @@ fi /usr/bin/texhash %changelog +* Wed Jul 22 2009 Dan Kenigsberg - 0.1-13 +- should obsolete tetex-fonts-hebrew-0.1-11. Bug #485639 + * Wed Jul 22 2009 Dan Kenigsberg - 0.1-12 - Rebuilt against existing David Type1 fonts. Bug #509697 - Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9. Bug #485639 From danken at fedoraproject.org Fri Jul 24 09:32:54 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Fri, 24 Jul 2009 09:32:54 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/F-11 tex-fonts-hebrew.spec,1.5,1.6 Message-ID: <20090724093254.D3A4311C007C@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31061 Modified Files: tex-fonts-hebrew.spec Log Message: * Wed Jul 22 2009 Dan Kenigsberg - 0.1-13 - should obsolete tetex-fonts-hebrew-0.1-11. Bug #485639 Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/F-11/tex-fonts-hebrew.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tex-fonts-hebrew.spec 22 Jul 2009 14:11:39 -0000 1.5 +++ tex-fonts-hebrew.spec 24 Jul 2009 09:32:54 -0000 1.6 @@ -22,7 +22,7 @@ BuildRequires: culmus-miriam-clm-fonts BuildRequires: culmus-miriam-mono-clm-fonts BuildRequires: culmus-nachlieli-clm-fonts BuildRequires: culmus-yehuda-clm-fonts -Obsoletes: tetex-fonts-hebrew < 0.1-9 +Obsoletes: tetex-fonts-hebrew < 0.1-11 Provides: tetex-fonts-hebrew = %{version}-%{release} Requires: texlive Requires: culmus-aharoni-clm-fonts @@ -88,6 +88,9 @@ fi /usr/bin/texhash %changelog +* Wed Jul 22 2009 Dan Kenigsberg - 0.1-13 +- should obsolete tetex-fonts-hebrew-0.1-11. Bug #485639 + * Wed Jul 22 2009 Dan Kenigsberg - 0.1-12 - Rebuilt against existing David Type1 fonts. Bug #509697 - Require specific culmus font packages and obsolete tetex-fonts-hebrew-0.1-9. Bug #485639 From caolanm at fedoraproject.org Fri Jul 24 09:40:08 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:40:08 +0000 (UTC) Subject: rpms/libloader/devel libloader.spec,1.4,1.5 Message-ID: <20090724094008.CD72811C04D7@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/libloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv474 Modified Files: libloader.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: libloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/libloader/devel/libloader.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libloader.spec 16 Mar 2009 11:16:49 -0000 1.4 +++ libloader.spec 24 Jul 2009 09:40:08 -0000 1.5 @@ -3,7 +3,7 @@ Name: libloader Version: 1.0.0 -Release: 1.OOo31%{?dist} +Release: 2.OOo31%{?dist} Summary: Resource Loading Framework License: LGPLv2+ Group: System Environment/Libraries @@ -32,6 +32,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -93,6 +96,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.0-2.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 1.0.0-1.OOo31 - Post release tuned for OpenOffice.org reportbuilder From caolanm at fedoraproject.org Fri Jul 24 09:41:12 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:41:12 +0000 (UTC) Subject: rpms/librepository/devel librepository.spec,1.4,1.5 Message-ID: <20090724094112.48C7311C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/librepository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv931 Modified Files: librepository.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: librepository.spec =================================================================== RCS file: /cvs/pkgs/rpms/librepository/devel/librepository.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- librepository.spec 16 Mar 2009 11:52:19 -0000 1.4 +++ librepository.spec 24 Jul 2009 09:41:12 -0000 1.5 @@ -3,7 +3,7 @@ Name: librepository Version: 1.0.0 -Release: 1.OOo31%{?dist} +Release: 2.OOo31%{?dist} Summary: Hierarchical repository abstraction layer License: LGPLv2+ Group: System Environment/Libraries @@ -29,6 +29,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -90,6 +93,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.0-2.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 1.0.0-1.OOo31 - Post-release tuned for OpenOffice.org From caolanm at fedoraproject.org Fri Jul 24 09:51:58 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:51:58 +0000 (UTC) Subject: rpms/pentaho-libxml/devel pentaho-libxml.spec,1.5,1.6 Message-ID: <20090724095158.9195711C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/pentaho-libxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4947 Modified Files: pentaho-libxml.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: pentaho-libxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/pentaho-libxml/devel/pentaho-libxml.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pentaho-libxml.spec 16 Mar 2009 13:54:06 -0000 1.5 +++ pentaho-libxml.spec 24 Jul 2009 09:51:57 -0000 1.6 @@ -4,7 +4,7 @@ Name: pentaho-libxml Version: 1.0.0 -Release: 1.OOo31%{?dist} +Release: 2.OOo31%{?dist} Summary: Namespace aware SAX-Parser utility library License: LGPLv2+ Group: System Environment/Libraries @@ -30,6 +30,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = %{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -91,6 +94,9 @@ fi %{_javadocdir}/%{origname} %changelog +* Fri Jul 24 2009 Caolan McNamara 1.0.0-2.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Mon Mar 16 2009 Caolan McNamara 1.0.0-1.OOo31 - Post release tuned for OpenOffice.org reportdesigner From caolanm at fedoraproject.org Fri Jul 24 09:53:01 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 09:53:01 +0000 (UTC) Subject: rpms/pentaho-reporting-flow-engine/devel pentaho-reporting-flow-engine.spec, 1.7, 1.8 Message-ID: <20090724095301.B4EBE11C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/pentaho-reporting-flow-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6037 Modified Files: pentaho-reporting-flow-engine.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: pentaho-reporting-flow-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/pentaho-reporting-flow-engine/devel/pentaho-reporting-flow-engine.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pentaho-reporting-flow-engine.spec 29 Mar 2009 10:16:46 -0000 1.7 +++ pentaho-reporting-flow-engine.spec 24 Jul 2009 09:53:01 -0000 1.8 @@ -3,7 +3,7 @@ Name: pentaho-reporting-flow-engine Version: 0.9.2 -Release: 4.OOo31%{?dist} +Release: 5.OOo31%{?dist} Summary: Pentaho Flow Reporting Engine License: LGPLv2+ Epoch: 1 @@ -34,6 +34,9 @@ Summary: Javadoc for %{name} Group: Development/Documentation Requires: %{name} = 1:%{version}-%{release} Requires: jpackage-utils +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -93,6 +96,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara 0.9.2-5.OOo31 +- make javadoc no-arch when building as arch-dependant aot + * Sun Mar 29 2009 Caolan McNamara 0.9.2-4.OOo31 - wrong num From robert at fedoraproject.org Fri Jul 24 09:55:30 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 09:55:30 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Excel/devel perl-DateTime-Format-Excel-0.2901-versioning.patch, NONE, 1.1 perl-DateTime-Format-Excel.spec, 1.2, 1.3 Message-ID: <20090724095530.D37CB11C007C@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-DateTime-Format-Excel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7055 Modified Files: perl-DateTime-Format-Excel.spec Added Files: perl-DateTime-Format-Excel-0.2901-versioning.patch Log Message: Fixed broken upstream build requirement for perl(DateTime), as per RPM versioning 0.1705 > 0.50, but 0.50 is newer than 0.1705 perl-DateTime-Format-Excel-0.2901-versioning.patch: Build.PL | 2 +- META.yml | 2 +- lib/DateTime/Format/Excel.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE perl-DateTime-Format-Excel-0.2901-versioning.patch --- Patch by Robert Scheck for perl(DateTime::Format::Excel) <= 0.2901, which fixes the broken upstream build requirement for perl(DateTime), as per RPM versioning 0.1705 > 0.50, but according to CPAN, perl(DateTime) 0.50 is newer than 0.1705. --- DateTime-Format-Excel-0.2901/Build.PL 2004-01-26 20:04:34.000000000 +0100 +++ DateTime-Format-Excel-0.2901/Build.PL.versioning 2009-07-24 11:45:53.000000000 +0200 @@ -5,7 +5,7 @@ Module::Build->new( module_name => 'DateTime::Format::Excel', author => 'Dave Rolsky ', license => 'perl', - requires => { 'DateTime' => 0.1705, + requires => { 'DateTime' => 0.18, 'Test::More' => '0.47', }, sign => 1, --- DateTime-Format-Excel-0.2901/lib/DateTime/Format/Excel.pm 2004-01-26 20:04:02.000000000 +0100 +++ DateTime-Format-Excel-0.2901/lib/DateTime/Format/Excel.pm.versioning 2009-07-24 11:45:59.000000000 +0200 @@ -10,7 +10,7 @@ use strict; use 5.005; use Carp; -use DateTime 0.1705; +use DateTime 0.18; use vars qw( $VERSION ); $VERSION = '0.2901'; --- DateTime-Format-Excel-0.2901/META.yml 2004-01-26 20:06:41.000000000 +0100 +++ DateTime-Format-Excel-0.2901/META.yml.versioning 2009-07-24 11:46:14.000000000 +0200 @@ -4,7 +4,7 @@ license: perl distribution_type: module requires: - DateTime: 0.1705 + DateTime: 0.18 Test::More: 0.47 recommends: {} build_requires: {} Index: perl-DateTime-Format-Excel.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Excel/devel/perl-DateTime-Format-Excel.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DateTime-Format-Excel.spec 26 Feb 2009 14:51:18 -0000 1.2 +++ perl-DateTime-Format-Excel.spec 24 Jul 2009 09:55:30 -0000 1.3 @@ -1,17 +1,18 @@ Name: perl-DateTime-Format-Excel Version: 0.2901 -Release: 2%{?dist} +Release: 3%{?dist} # lib/DateTime/Format/Excel.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Convert between DateTime and Excel dates Source: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-Format-Excel-%{version}.tar.gz +Patch0: perl-DateTime-Format-Excel-0.2901-versioning.patch Url: http://search.cpan.org/dist/DateTime-Format-Excel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch -BuildRequires: perl(DateTime) >= 0.1705 +BuildRequires: perl(DateTime) >= 0.18 BuildRequires: perl(Module::Build::Compat) BuildRequires: perl(Test::More) >= 0.47 BuildRequires: perl(Test::Pod) @@ -28,6 +29,7 @@ manpage and the Spreadsheet::ParseExcel %prep %setup -q -n DateTime-Format-Excel-%{version} +%patch0 -p1 -b .versioning %build %{__perl} Makefile.PL INSTALLDIRS=vendor @@ -57,6 +59,10 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Robert Scheck 0.2901-3 +- Fixed broken upstream build requirement for perl(DateTime), as + per RPM versioning 0.1705 > 0.50, but 0.50 is newer than 0.1705 + * Thu Feb 26 2009 Fedora Release Engineering - 0.2901-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Fri Jul 24 10:07:26 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 10:07:26 +0000 (UTC) Subject: rpms/sac/devel sac.spec,1.4,1.5 Message-ID: <20090724100726.267E611C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/sac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10840 Modified Files: sac.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: sac.spec =================================================================== RCS file: /cvs/pkgs/rpms/sac/devel/sac.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sac.spec 25 Feb 2009 22:23:27 -0000 1.4 +++ sac.spec 24 Jul 2009 10:07:25 -0000 1.5 @@ -3,7 +3,7 @@ Name: sac Version: 1.3 -Release: 4.3%{?dist} +Release: 5%{?dist} Summary: Java standard interface for CSS parser License: W3C Group: System Environment/Libraries @@ -29,6 +29,9 @@ CSS3 and other CSS derived languages. %package javadoc Group: Development/Java Summary: Javadoc for %{name} +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -75,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Caolan McNamara - 1.3-5 +- make javadoc no-arch when building as arch-dependant aot + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-4.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Fri Jul 24 10:08:58 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 10:08:58 +0000 (UTC) Subject: rpms/writer2latex/devel writer2latex.spec,1.15,1.16 Message-ID: <20090724100858.2003911C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/writer2latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11564 Modified Files: writer2latex.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: writer2latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/writer2latex/devel/writer2latex.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- writer2latex.spec 26 Feb 2009 11:12:32 -0000 1.15 +++ writer2latex.spec 24 Jul 2009 10:08:57 -0000 1.16 @@ -3,7 +3,7 @@ Name: writer2latex Version: 0.5.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Document Converter from ODT to LaTeX License: LGPLv2 Url: http://www.hj-gym.dk/~hj/writer2latex/ @@ -37,6 +37,9 @@ actually a collection of four converters %package javadoc Summary: Javadoc for %{name} Group: Development/Documentation +%if %{with_gcj} +BuildArch: noarch +%endif %description javadoc Javadoc for %{name}. @@ -181,6 +184,9 @@ fi %{_datadir}/openoffice.org/extensions/writer2xhtml.oxt %changelog +* Fri Jul 24 2009 Caolan McNamara 0.5.0.2-7 +- make javadoc no-arch when building as arch-dependant aot + * Thu Feb 26 2009 Caol at n McNamara 0.5.0.2-6 - update for 3.1 From caolanm at fedoraproject.org Fri Jul 24 10:18:52 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 10:18:52 +0000 (UTC) Subject: rpms/writer2latex/devel writer2latex.spec,1.16,1.17 Message-ID: <20090724101852.7E47911C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/writer2latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14302 Modified Files: writer2latex.spec Log Message: make javadoc no-arch when building as arch-dependant aot Index: writer2latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/writer2latex/devel/writer2latex.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- writer2latex.spec 24 Jul 2009 10:08:57 -0000 1.16 +++ writer2latex.spec 24 Jul 2009 10:18:51 -0000 1.17 @@ -1,5 +1,5 @@ -%define _with_gcj_support 1 -%define gcj_support %{?_with_gcj_support:1}%{!?_with_gcj_support:%{?_without_gcj_support:0}%{!?_without_gcj_support:%{?_gcj_support:%{_gcj_support}}%{!?_gcj_support:0}}} +# Use rpmbuild --without gcj to disable native bits +%define with_gcj %{!?_without_gcj:1}%{?_without_gcj:0} Name: writer2latex Version: 0.5.0.2 @@ -11,14 +11,14 @@ Source0: http://www.hj-gym.dk/~hj/ Patch0: writer2latex05.rh.patch BuildRequires: ant, openoffice.org-core Group: Text Processing/Markup/XML -%if ! %{gcj_support} -Buildarch: noarch -%endif Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: jaxp_parser_impl, jaxp_transform_impl - -%if %{gcj_support} -BuildRequires: java-gcj-compat-devel +%if %{with_gcj} +BuildRequires: java-gcj-compat-devel >= 1.0.31 +Requires(post): java-gcj-compat >= 1.0.31 +Requires(postun): java-gcj-compat >= 1.0.31 +%else +BuildArch: noarch %endif %description @@ -95,8 +95,7 @@ install -d -m 755 $RPM_BUILD_ROOT%{_data unzip target/lib/writer2latex.oxt -d $RPM_BUILD_ROOT%{_datadir}/openoffice.org/extensions/writer2latex.oxt install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/openoffice.org/extensions/writer2xhtml.oxt unzip target/lib/writer2xhtml.oxt -d $RPM_BUILD_ROOT%{_datadir}/openoffice.org/extensions/writer2xhtml.oxt - -%if %{gcj_support} +%if %{with_gcj} %{_bindir}/aot-compile-rpm %endif @@ -104,7 +103,7 @@ unzip target/lib/writer2xhtml.oxt -d $RP rm -rf $RPM_BUILD_ROOT %post -%if %{gcj_support} +%if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db @@ -112,7 +111,7 @@ fi %endif %postun -%if %{gcj_support} +%if %{with_gcj} if [ -x %{_bindir}/rebuild-gcj-db ] then %{_bindir}/rebuild-gcj-db @@ -166,7 +165,7 @@ fi %defattr(0644,root,root,0755) %doc COPYING.TXT Readme.txt History.txt %{_javadir}/* -%if %{gcj_support} +%if %{with_gcj} %attr(-,root,root) %{_libdir}/gcj/%{name} %endif From amdunn at fedoraproject.org Fri Jul 24 10:23:06 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 24 Jul 2009 10:23:06 +0000 (UTC) Subject: rpms/alt-ergo/devel .cvsignore, 1.2, 1.3 alt-ergo.spec, 1.5, 1.6 import.log, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724102306.05C2B11C007C@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/alt-ergo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15788/devel Modified Files: .cvsignore alt-ergo.spec import.log sources Log Message: Jul 24 2009 Alan Dunn 0.9-1 - New upstream version - Removed code for check for Fedora version (8) that is EOL - Removed comments re: CeCILL-C license as it is ok to have (no rpmlint warnings to explain either). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Sep 2008 01:56:50 -0000 1.2 +++ .cvsignore 24 Jul 2009 10:23:05 -0000 1.3 @@ -1 +1 @@ -alt-ergo-0.8.tar.gz +alt-ergo-0.9.tar.gz Index: alt-ergo.spec =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/devel/alt-ergo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- alt-ergo.spec 17 Jun 2009 10:39:08 -0000 1.5 +++ alt-ergo.spec 24 Jul 2009 10:23:05 -0000 1.6 @@ -12,14 +12,10 @@ %define __find_provides /usr/lib/rpm/ocaml-find-provides.sh Name: alt-ergo -Version: 0.8 -Release: 5%{?dist}.1 +Version: 0.9 +Release: 1%{?dist} Summary: Alt-Ergo automatic theorem prover -# Note: rpmlint invalid-license warning is incorrect - I had the -# CeCILL-C license reviewed by Fedora legal, and it is now present on -# http://fedoraproject.org/wiki/Licensing - Group: Applications/Engineering License: CeCILL-C URL: http://alt-ergo.lri.fr @@ -30,11 +26,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ocaml, ocaml-ocamlgraph-devel, prelink -%if 0%{?fedora} < 9 -# There's no ocaml for ppc64 in Fedora <= 8 -# bz# (will be changed when exists as a module): -ExcludeArch: ppc64 -%endif # Still no ocaml on s390(x) ExcludeArch: s390 s390x @@ -101,6 +92,12 @@ rm -rf %{buildroot} %doc README.alt-ergo COPYING CeCILL-C CHANGES %changelog +* Fri Jul 24 2009 Alan Dunn 0.9-1 +- New upstream version +- Removed code for check for Fedora version (8) that is EOL +- Removed comments re: CeCILL-C license as it is ok to have (no + rpmlint warnings to explain either). + * Wed Jun 17 2009 Karsten Hopp 0.8-5.1 - ExcludeArch s390x as there's no ocaml available Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 24 Dec 2008 17:13:19 -0000 1.2 +++ import.log 24 Jul 2009 10:23:05 -0000 1.3 @@ -1,2 +1,3 @@ alt-ergo-0_8-3_fc9:HEAD:alt-ergo-0.8-3.fc9.src.rpm:1220665880 alt-ergo-0_8-4_fc9:HEAD:alt-ergo-0.8-4.fc9.src.rpm:1230138275 +alt-ergo-0_9-1_fc10:HEAD:alt-ergo-0.9-1.fc10.src.rpm:1248430585 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Dec 2008 17:13:19 -0000 1.3 +++ sources 24 Jul 2009 10:23:05 -0000 1.4 @@ -1 +1 @@ -ef6c78bdf377bcbe17fc4a94058479cf alt-ergo-0.8.tar.gz +c7eb6d07391acdfa39bb00978105858d alt-ergo-0.9.tar.gz From elcody02 at fedoraproject.org Fri Jul 24 10:29:44 2009 From: elcody02 at fedoraproject.org (Marc Grimme) Date: Fri, 24 Jul 2009 10:29:44 +0000 (UTC) Subject: rpms/comoonics-base-py/devel comoonics-base-py.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724102944.8D79911C007C@cvs1.fedora.phx.redhat.com> Author: elcody02 Update of /cvs/pkgs/rpms/comoonics-base-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17602/devel Modified Files: .cvsignore sources Added Files: comoonics-base-py.spec import.log Log Message: * Fri Jul 23 2009 MH , 0.1-3 - initial import --- NEW FILE comoonics-base-py.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define modulename comoonics Summary: Comoonics minimum baselibraries Name: comoonics-base-py Version: 0.1 Release: 3 Source0: http://www.open-sharedroot.org/development/comoonics-base-py/comoonics-base-py-%{version}.tar.gz License: GPLv2+ Group: Development/Libraries BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python PyXML Url: http://www.open-sharedroot.org/development/comoonics-base-py BuildRequires: python-devel %description Comoonics minimum baselibraries written in Python Those are classes used by more other packages. %prep %setup -q %build python setup.py %{name} build %install rm -rf $RPM_BUILD_ROOT python setup.py %{name} install --root=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{python_sitelib}/*.egg-info %dir %{python_sitelib}/comoonics %{python_sitelib}/comoonics/*.py %{python_sitelib}/comoonics/*.pyc %{python_sitelib}/comoonics/*.pyo %doc README.txt LICENSE.txt %changelog * Tue Jul 20 2009 MH , 0.1-3 - fedora compliant additional changes. * Tue Jul 20 2009 MH , 0.1-2 - fedora compliant * Mon Jul 20 2009 MH , 0.1-1 - initial revision --- NEW FILE import.log --- comoonics-base-py-0_1-3:HEAD:comoonics-base-py-0.1-3.src.rpm:1248431120 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-base-py/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:35:14 -0000 1.1 +++ .cvsignore 24 Jul 2009 10:29:44 -0000 1.2 @@ -0,0 +1 @@ +comoonics-base-py-0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-base-py/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:35:14 -0000 1.1 +++ sources 24 Jul 2009 10:29:44 -0000 1.2 @@ -0,0 +1 @@ +b2d928a1368af23aae4d5a7c8fa3f346 comoonics-base-py-0.1.tar.gz From amdunn at fedoraproject.org Fri Jul 24 10:30:00 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 24 Jul 2009 10:30:00 +0000 (UTC) Subject: rpms/alt-ergo/F-11 .cvsignore, 1.2, 1.3 alt-ergo.spec, 1.5, 1.6 import.log, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724103000.0BA3A11C007C@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/alt-ergo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18822/F-11 Modified Files: .cvsignore alt-ergo.spec import.log sources Log Message: * Fri Jul 24 2009 Alan Dunn 0.9-1 - New upstream version - Removed code for check for Fedora version (8) that is EOL - Removed comments re: CeCILL-C license as it is ok to have (no rpmlint warnings to explain either). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Sep 2008 01:56:50 -0000 1.2 +++ .cvsignore 24 Jul 2009 10:29:59 -0000 1.3 @@ -1 +1 @@ -alt-ergo-0.8.tar.gz +alt-ergo-0.9.tar.gz Index: alt-ergo.spec =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-11/alt-ergo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- alt-ergo.spec 17 Jun 2009 10:40:39 -0000 1.5 +++ alt-ergo.spec 24 Jul 2009 10:29:59 -0000 1.6 @@ -12,14 +12,10 @@ %define __find_provides /usr/lib/rpm/ocaml-find-provides.sh Name: alt-ergo -Version: 0.8 -Release: 5%{?dist}.1 +Version: 0.9 +Release: 1%{?dist} Summary: Alt-Ergo automatic theorem prover -# Note: rpmlint invalid-license warning is incorrect - I had the -# CeCILL-C license reviewed by Fedora legal, and it is now present on -# http://fedoraproject.org/wiki/Licensing - Group: Applications/Engineering License: CeCILL-C URL: http://alt-ergo.lri.fr @@ -30,11 +26,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ocaml, ocaml-ocamlgraph-devel, prelink -%if 0%{?fedora} < 9 -# There's no ocaml for ppc64 in Fedora <= 8 -# bz# (will be changed when exists as a module): -ExcludeArch: ppc64 -%endif # Still no ocaml on s390(x) ExcludeArch: s390 s390x @@ -101,6 +92,12 @@ rm -rf %{buildroot} %doc README.alt-ergo COPYING CeCILL-C CHANGES %changelog +* Fri Jul 24 2009 Alan Dunn 0.9-1 +- New upstream version +- Removed code for check for Fedora version (8) that is EOL +- Removed comments re: CeCILL-C license as it is ok to have (no + rpmlint warnings to explain either). + * Wed Jun 17 2009 Karsten Hopp 0.8-5.1 - ExcludeArch s390x as there's no ocaml available Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 24 Dec 2008 17:13:19 -0000 1.2 +++ import.log 24 Jul 2009 10:29:59 -0000 1.3 @@ -1,2 +1,3 @@ alt-ergo-0_8-3_fc9:HEAD:alt-ergo-0.8-3.fc9.src.rpm:1220665880 alt-ergo-0_8-4_fc9:HEAD:alt-ergo-0.8-4.fc9.src.rpm:1230138275 +alt-ergo-0_9-1_fc10:F-11:alt-ergo-0.9-1.fc10.src.rpm:1248431040 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Dec 2008 17:13:19 -0000 1.3 +++ sources 24 Jul 2009 10:29:59 -0000 1.4 @@ -1 +1 @@ -ef6c78bdf377bcbe17fc4a94058479cf alt-ergo-0.8.tar.gz +c7eb6d07391acdfa39bb00978105858d alt-ergo-0.9.tar.gz From xhorak at fedoraproject.org Fri Jul 24 10:33:47 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 24 Jul 2009 10:33:47 +0000 (UTC) Subject: rpms/thunderbird/devel thunderbird-mozconfig, 1.14, 1.15 thunderbird.spec, 1.136, 1.137 Message-ID: <20090724103347.751CE11C007C@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20253 Modified Files: thunderbird-mozconfig thunderbird.spec Log Message: Use system hunspell Index: thunderbird-mozconfig =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird-mozconfig,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- thunderbird-mozconfig 3 Mar 2009 15:39:19 -0000 1.14 +++ thunderbird-mozconfig 24 Jul 2009 10:33:43 -0000 1.15 @@ -26,6 +26,7 @@ ac_add_options --enable-system-cairo ac_add_options --enable-svg ac_add_options --enable-canvas ac_add_options --disable-crashreporter +ac_add_options --enable-system-hunspell export BUILD_OFFICIAL=1 export MOZILLA_OFFICIAL=1 Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- thunderbird.spec 21 Jul 2009 11:43:08 -0000 1.136 +++ thunderbird.spec 24 Jul 2009 10:33:46 -0000 1.137 @@ -11,7 +11,7 @@ Summary: Mozilla Thunderbird mail/newsgroup client Name: thunderbird Version: 3.0 -Release: 2.4.b3%{?dist} +Release: 2.5.b3%{?dist} URL: http://www.mozilla.org/projects/thunderbird/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -52,6 +52,7 @@ Patch4: thunderbird-pango.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: nspr >= %{nspr_version} Requires: nss >= %{nss_version} +Requires: hunspell BuildRequires: libcurl-devel BuildRequires: cairo-devel >= %{cairo_version} BuildRequires: dbus-glib-devel >= %{dbus_glib_version} @@ -70,6 +71,7 @@ BuildRequires: autoconf213 BuildRequires: GConf2-devel BuildRequires: gnome-vfs2-devel BuildRequires: libgnomeui-devel +BuildRequires: hunspell-devel Requires: desktop-file-utils >= %{desktop_file_utils_version} %define mozappdir %{_libdir}/thunderbird-%{version_internal} @@ -292,6 +294,9 @@ fi #=============================================================================== %changelog +* Fri Jul 24 2009 Jan Horak - 3.0-2.5.beta3 +- Use system hunspell + * Tue Jul 21 2009 Jan Horak - 3.0-2.4.beta3 - Update to 3.0 beta3 From amdunn at fedoraproject.org Fri Jul 24 10:35:16 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 24 Jul 2009 10:35:16 +0000 (UTC) Subject: rpms/alt-ergo/F-10 .cvsignore, 1.2, 1.3 alt-ergo.spec, 1.2, 1.3 import.log, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724103516.6B8A911C007C@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/alt-ergo/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20824/F-10 Modified Files: .cvsignore alt-ergo.spec import.log sources Log Message: * Fri Jul 24 2009 Alan Dunn 0.9-1 - New upstream version - Removed code for check for Fedora version (8) that is EOL - Removed comments re: CeCILL-C license as it is ok to have (no rpmlint warnings to explain either). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 6 Sep 2008 01:56:50 -0000 1.2 +++ .cvsignore 24 Jul 2009 10:35:16 -0000 1.3 @@ -1 +1 @@ -alt-ergo-0.8.tar.gz +alt-ergo-0.9.tar.gz Index: alt-ergo.spec =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-10/alt-ergo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- alt-ergo.spec 24 Dec 2008 17:15:24 -0000 1.2 +++ alt-ergo.spec 24 Jul 2009 10:35:16 -0000 1.3 @@ -12,14 +12,10 @@ %define __find_provides /usr/lib/rpm/ocaml-find-provides.sh Name: alt-ergo -Version: 0.8 -Release: 4%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: Alt-Ergo automatic theorem prover -# Note: rpmlint invalid-license warning is incorrect - I had the -# CeCILL-C license reviewed by Fedora legal, and it is now present on -# http://fedoraproject.org/wiki/Licensing - Group: Applications/Engineering License: CeCILL-C URL: http://alt-ergo.lri.fr @@ -30,11 +26,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: ocaml, ocaml-ocamlgraph-devel, prelink -%if 0%{?fedora} < 9 -# There's no ocaml for ppc64 in Fedora <= 8 -# bz# (will be changed when exists as a module): -ExcludeArch: ppc64 -%endif +# Still no ocaml on s390(x) +ExcludeArch: s390 s390x %description @@ -99,6 +92,18 @@ rm -rf %{buildroot} %doc README.alt-ergo COPYING CeCILL-C CHANGES %changelog +* Fri Jul 24 2009 Alan Dunn 0.9-1 +- New upstream version +- Removed code for check for Fedora version (8) that is EOL +- Removed comments re: CeCILL-C license as it is ok to have (no + rpmlint warnings to explain either). + +* Wed Jun 17 2009 Karsten Hopp 0.8-5.1 +- ExcludeArch s390x as there's no ocaml available + +* Mon Feb 23 2009 Fedora Release Engineering - 0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Wed Dec 24 2008 Alan Dunn 0.8-4 - Rebuild: Source upstream appears to have changed even with same version number (seems like bug fix from examination of changes) Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-10/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 24 Dec 2008 17:15:24 -0000 1.2 +++ import.log 24 Jul 2009 10:35:16 -0000 1.3 @@ -1,2 +1,3 @@ alt-ergo-0_8-3_fc9:HEAD:alt-ergo-0.8-3.fc9.src.rpm:1220665880 alt-ergo-0_8-4_fc9:F-10:alt-ergo-0.8-4.fc9.src.rpm:1230138408 +alt-ergo-0_9-1_fc10:F-10:alt-ergo-0.9-1.fc10.src.rpm:1248431331 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alt-ergo/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 24 Dec 2008 17:15:24 -0000 1.3 +++ sources 24 Jul 2009 10:35:16 -0000 1.4 @@ -1 +1 @@ -ef6c78bdf377bcbe17fc4a94058479cf alt-ergo-0.8.tar.gz +c7eb6d07391acdfa39bb00978105858d alt-ergo-0.9.tar.gz From mjakubicek at fedoraproject.org Fri Jul 24 10:37:32 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Fri, 24 Jul 2009 10:37:32 +0000 (UTC) Subject: rpms/orsa/devel ORSA_MPI,NONE,1.1 orsa.spec,1.9,1.10 Message-ID: <20090724103732.411DE11C007C@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/orsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21786 Modified Files: orsa.spec Added Files: ORSA_MPI Log Message: - Reenabled MPI support in a way described in BZ#511099, introduced separate subpackages with support for OpenMPI, MPICH2 and LAM MPI implementations. - Written ORSA_MPI user documentation about MPI support --- NEW FILE ORSA_MPI --- # USING ORSA WITH MPI SUPPORT IN FEDORA # Last change: Milos Jakubicek, July 24, 2009 There are 4 different builds of orsa with different MPI support: orsa(-devel) -- No MPI support orsa-openmpi(-devel) -- Built with OpenMPI support orsa-mpich2(-devel) -- Built with MPICH2 MPI support orsa-lam-(-devel) -- Built with LAM MPI support Environment-modules are used to enable parallel installation and usage of all of the supported MPI implementations. Before using orsa with MPI support, you have to load the particular module, which ensures setting proper PATH and LD_LIBRARY_PATH variables: First you have to load the functions: . /etc/profile.d/modules.sh followed by: module load openmpi-%{_arch} OR module load %{_datadir}/mpich2/mpich2.module OR module load lam-%{_arch} You can use rpm --eval "%{_arch} %{_datadir}" to find out proper values for your machine. For unloading a module substitute "load" with "unload" in the above commands. Index: orsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/orsa/devel/orsa.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- orsa.spec 13 Jul 2009 14:43:21 -0000 1.9 +++ orsa.spec 24 Jul 2009 10:37:31 -0000 1.10 @@ -1,12 +1,13 @@ Name: orsa Version: 0.7.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Orbit Reconstruction, Simulation and Analysis Group: Amusements/Graphics License: GPLv2+ URL: http://orsa.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz +Source1: ORSA_MPI # Patch to build with GCC 4.3 # Reported into upstream bugtracker as # http://sourceforge.net/tracker/index.php?func=detail&aid=2099077&group_id=44502&atid=439768 @@ -32,8 +33,6 @@ BuildRequires: fftw2-devel BuildRequires: gsl-devel BuildRequires: cln-devel BuildRequires: ginac-devel -# Temporarily disabled as current openmpi builds do not ship -devel, nor its previous content in the main package -# BuildRequires: openmpi-devel %description ORSA is an interactive tool for scientific grade Celestial Mechanics @@ -48,30 +47,166 @@ Requires: fftw2-devel Requires: gsl-devel Requires: zlib-devel Requires: %{name} = %{version}-%{release} +Requires: %{name}-headers = %{version}-%{release} %description devel This package contains development files for %{name}. +%package openmpi +Summary: A build of %{name} with support for OpenMPI +Group: Applications/Engineering + +BuildRequires: openmpi-devel + +%description openmpi +This package contains a build of %{name} with support for OpenMPI. + +%package openmpi-devel +Summary: Development files for %{name} build with support for OpenMPI +Group: Development/Libraries + +Requires: %{name}-openmpi = %{version}-%{release} +Requires: %{name}-headers = %{version}-%{release} + +%description openmpi-devel +This package contains development files for a build of %{name} + with support for OpenMPI. + +%package mpich2 +Summary: A build of %{name} with support for MPICH2 MPI +Group: Applications/Engineering + +BuildRequires: mpich2-devel + +%description mpich2 +This package contains a build of %{name} with support for MPICH2 MPI. + +%package mpich2-devel +Summary: Development files for %{name} build with support for MPICH2 MPI +Group: Development/Libraries + +Requires: %{name}-mpich2 = %{version}-%{release} +Requires: %{name}-headers = %{version}-%{release} + +%description mpich2-devel +This package contains development files for a build of %{name} +with support for MPICH2 MPI. + +%package lam +Summary: A build of %{name} with support for LAM MPI +Group: Applications/Engineering + +BuildRequires: lam-devel + +%description lam +This package contains a build of %{name} with support for LAM MPI. + +%package lam-devel +Summary: Development files for %{name} build with support for LAM MPI +Group: Development/Libraries + +Requires: %{name}-lam = %{version}-%{release} +Requires: %{name}-headers = %{version}-%{release} + +%description lam-devel +This package contains development files for a build of %{name} +with support for LAM MPI. + +%package headers +Summary: Headers for development with %{name} +Group: Development/Libraries + +%description headers +This package contains C++ header files for development with %{name}. + %prep %setup -q %patch0 -p1 %patch1 -p1 %patch2 +# Install user hints for MPI support +install -p -m644 %{SOURCE1} . + %build +# Have to build in the install step to do multiple builds + +%install +rm -rf $RPM_BUILD_ROOT + # honor $RPM_OPT_FLAGS sed -i 's|-g -Wall -W -pipe -ftemplate-depth-64 -O3 -fno-exceptions -funroll-loops -fstrict-aliasing -fno-gcse|$CXXFLAGS|' configure -%configure --disable-static --with-mpi "CLN_CONFIG=`which pkg-config` cln" "GINACLIB_CONFIG=`which pkg-config` ginac" CXXFLAGS="$CXXFLAGS -DHAVE_INLINE" + +# common configure options for MPI as well as non-MPI builds +%global confflags --disable-dependency-tracking --disable-static "CLN_CONFIG=`which pkg-config` cln" "GINACLIB_CONFIG=`which pkg-config` ginac" CXXFLAGS="$CXXFLAGS -DHAVE_INLINE" + +# load the module function +. /etc/profile.d/modules.sh +%global OpenMPI_BIN %(. /etc/profile.d/modules.sh; module load openmpi-%{_arch}; echo $MPI_BIN) +%global OpenMPI_LIB %(. /etc/profile.d/modules.sh; module load openmpi-%{_arch}; echo $MPI_LIB) +%global LAM_BIN %(. /etc/profile.d/modules.sh; module load lam-%{_arch}; echo $MPI_BIN | sed 's|-L||') +%global LAM_LIB %(. /etc/profile.d/modules.sh; module load lam-%{_arch}; echo $MPI_LIB | sed 's|-L||') +%global MPICH_BIN %(. /etc/profile.d/modules.sh; module load %{_datadir}/mpich2/mpich2.module; echo $PATH | cut -f 1 -d :) + +################################ +echo -e "\n##############################\nNow making the non-MPI version\n##############################\n" +################################ + +%configure %{confflags} # remove rpaths sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} +make install DESTDIR=$RPM_BUILD_ROOT +# we don't want to ship libtool archives: +rm $RPM_BUILD_ROOT%{_libdir}/{liborsa.la,libxorsa.la} +make clean -%install -rm -rf $RPM_BUILD_ROOT +################################ +echo -e "\n##############################\nNow making the OpenMPI version\n##############################\n" +################################ +module load openmpi-%{_arch} +%configure --with-mpi --prefix=$MPI_HOME --bindir=$MPI_BIN --libdir=$MPI_LIB %{confflags} +# remove rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make CC=mpicc %{?_smp_mflags} make install DESTDIR=$RPM_BUILD_ROOT # we don't want to ship libtool archives: -rm $RPM_BUILD_ROOT%{_libdir}/liborsa.la $RPM_BUILD_ROOT%{_libdir}/libxorsa.la +rm $RPM_BUILD_ROOT/$MPI_LIB/{liborsa.la,libxorsa.la} +make clean +module unload openmpi-%{_arch} + +################################ +echo -e "\n##############################\nNow making the MPICH2 version\n##############################\n" +################################ +module load %{_datadir}/mpich2/mpich2.module +%configure --with-mpi --bindir=%{MPICH_BIN} --libdir=%{_libdir}/mpich2/ %{confflags} MPICXX=mpicxx +# remove rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make CC=mpicxx %{?_smp_mflags} +make install DESTDIR=%{buildroot} +# we don't want to ship libtool archives: +rm $RPM_BUILD_ROOT%{_libdir}/mpich2/{liborsa.la,libxorsa.la} +make clean +module unload %{_datadir}/mpich2/mpich2.module + +################################ +echo -e "\n##############################\nNow making the LAM version\n##############################\n" +################################ +module load lam-%{_arch} +export MPI_HOME=`echo $MPI_HOME | sed 's|-L||'` +export MPI_BIN=`echo $MPI_BIN | sed 's|-L||'` +export MPI_LIB=`echo $MPI_LIB | sed 's|-L||'` +%configure --with-mpi --prefix=$MPI_HOME --bindir=$MPI_BIN --libdir=$MPI_LIB %{confflags} MPICXX=mpic++ +# remove rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make CC=mpic++ %{?_smp_mflags} +make install DESTDIR=%{buildroot} +# we don't want to ship libtool archives: +rm $RPM_BUILD_ROOT/$MPI_LIB/{liborsa.la,libxorsa.la} %clean rm -rf $RPM_BUILD_ROOT @@ -82,18 +217,59 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc COPYING DEVELOPERS +%doc COPYING DEVELOPERS ORSA_MPI %{_bindir}/xorsa %{_libdir}/liborsa.so.* %{_libdir}/libxorsa.so.* %files devel %defattr(-,root,root,-) +%{_libdir}/*.so + +%files headers +%defattr(-,root,root,-) %{_includedir}/* -%{_libdir}/liborsa.so -%{_libdir}/libxorsa.so + +%files openmpi +%defattr(-,root,root,-) +%doc COPYING DEVELOPERS ORSA_MPI +%{OpenMPI_LIB}/liborsa.so.* +%{OpenMPI_LIB}/libxorsa.so.* +%{OpenMPI_BIN}/* + +%files openmpi-devel +%defattr(-,root,root,-) +%{OpenMPI_LIB}/*.so + +%files mpich2 +%defattr(-,root,root,-) +%doc COPYING DEVELOPERS ORSA_MPI +%{MPICH_BIN}/* +%{_libdir}/mpich2/liborsa.so.* +%{_libdir}/mpich2/libxorsa.so.* + +%files mpich2-devel +%defattr(-,root,root,-) +%{_libdir}/mpich2/*.so + +%files lam +%defattr(-,root,root,-) +%doc COPYING DEVELOPERS ORSA_MPI +%{LAM_LIB}/liborsa.so.* +%{LAM_LIB}/libxorsa.so.* +%{LAM_BIN}/* + +%files lam-devel +%defattr(-,root,root,-) +%{LAM_LIB}/*.so %changelog +* Fri Jul 24 2009 Milos Jakubicek - 0.7.0-10 +- Reenabled MPI support in a way described in BZ#511099, introduced + separate subpackages with support for OpenMPI, MPICH2 and LAM MPI + implementations. +- Written ORSA_MPI user documentation about MPI support + * Mon Jul 13 2009 Milos Jakubicek - 0.7.0-9 - Rebuilt against new cln 1.3.0 - Temporarily disabled MPI support as current openmpi builds do not ship -devel, From athimm at fedoraproject.org Fri Jul 24 10:37:59 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 10:37:59 +0000 (UTC) Subject: rpms/mediawiki/devel mediawiki.spec,1.33,1.34 Message-ID: <20090724103759.78BA811C007C@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22132 Modified Files: mediawiki.spec Log Message: Dependencies from mediawiki need to move to mediawiki-nomath Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/mediawiki.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- mediawiki.spec 13 Jul 2009 20:33:45 -0000 1.33 +++ mediawiki.spec 24 Jul 2009 10:37:59 -0000 1.34 @@ -1,7 +1,7 @@ Summary: A wiki engine Name: mediawiki Version: 1.15.1 -Release: 48%{?dist} +Release: 49%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ @@ -10,11 +10,6 @@ Patch0: mediawiki-1.15.0-commoncode.patc BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 -# to make sure the "apache" group is created before mediawiki is installed -Requires(pre): httpd -Requires: php >= 5, php-xml -Requires: php-mysql, php-pgsql -Requires: diffutils, ImageMagick, php-gd Requires: mediawiki-nomath = %{version}-%{release} Requires: mediawiki-math = %{version}-%{release} @@ -32,6 +27,11 @@ configuration. %package nomath Summary: mediawiki w/o texvc. Group: Development/Tools +# to make sure the "apache" group is created before mediawiki is installed +Requires(pre): httpd +Requires: php >= 5, php-xml +Requires: php-mysql, php-pgsql +Requires: diffutils, ImageMagick, php-gd %description nomath This subpackage contains all mediawiki parts except the ones to aid in @@ -113,6 +113,10 @@ rm -rf %{buildroot} %changelog +* Thu Jul 23 2009 Axel Thimm - 1.15.1-49 +- All (runtime) dependencies from mediawiki need to move to + mediawiki-nomath. + * Mon Jul 13 2009 Axel Thimm - 1.15.1-48 - Update to 1.15.1 (Fixes XSS vulnerability). From xhorak at fedoraproject.org Fri Jul 24 10:42:28 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 24 Jul 2009 10:42:28 +0000 (UTC) Subject: rpms/firefox/F-11 firefox.spec,1.333,1.334 Message-ID: <20090724104228.0EABA11C007C@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23776 Modified Files: firefox.spec Log Message: Adjust icons cache update according to template Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/F-11/firefox.spec,v retrieving revision 1.333 retrieving revision 1.334 diff -u -p -r1.333 -r1.334 --- firefox.spec 22 Jul 2009 10:32:46 -0000 1.333 +++ firefox.spec 24 Jul 2009 10:42:27 -0000 1.334 @@ -5,7 +5,7 @@ %define mozappdir %{_libdir}/%{name}-%{internal_version} %define tarballdir mozilla-1.9.1 -%define xulrunner_version 1.9.1.1-1 +%define xulrunner_version 1.9.1.1 %define internal_version %{version} %define official_branding 1 @@ -19,7 +19,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -274,17 +274,17 @@ touch $RPM_BUILD_ROOT/%{mozappdir}/compo %post update-desktop-database &> /dev/null || : -touch --no-create %{_datadir}/icons/hicolor +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %postun -update-desktop-database &> /dev/null || : -touch --no-create %{_datadir}/icons/hicolor -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +update-desktop-database &> /dev/null || : %preun # is it a final removal? @@ -294,6 +294,8 @@ if [ $1 -eq 0 ]; then %{__rm} -rf %{mozappdir}/plugins fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) @@ -338,6 +340,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Jan Horak - 3.5.1-3 +- Adjust icons cache update according to template + * Wed Jul 22 2009 Jan Horak - 3.5.1-2 - New icons fixed From xhorak at fedoraproject.org Fri Jul 24 10:44:55 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 24 Jul 2009 10:44:55 +0000 (UTC) Subject: rpms/firefox/devel firefox.spec,1.332,1.333 Message-ID: <20090724104455.9954611C007C@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/firefox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24780 Modified Files: firefox.spec Log Message: Adjust icons cache update according to template Index: firefox.spec =================================================================== RCS file: /cvs/pkgs/rpms/firefox/devel/firefox.spec,v retrieving revision 1.332 retrieving revision 1.333 diff -u -p -r1.332 -r1.333 --- firefox.spec 22 Jul 2009 10:39:24 -0000 1.332 +++ firefox.spec 24 Jul 2009 10:44:55 -0000 1.333 @@ -19,7 +19,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.mozilla.org/projects/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -274,17 +274,17 @@ touch $RPM_BUILD_ROOT/%{mozappdir}/compo %post update-desktop-database &> /dev/null || : -touch --no-create %{_datadir}/icons/hicolor +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : if [ -x %{_bindir}/gtk-update-icon-cache ]; then %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : fi %postun -update-desktop-database &> /dev/null || : -touch --no-create %{_datadir}/icons/hicolor -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : fi +update-desktop-database &> /dev/null || : %preun # is it a final removal? @@ -294,6 +294,8 @@ if [ $1 -eq 0 ]; then %{__rm} -rf %{mozappdir}/plugins fi +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files -f %{name}.lang %defattr(-,root,root,-) @@ -338,6 +340,9 @@ fi #--------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Jan Horak - 3.5.1-3 +- Adjust icons cache update according to template + * Wed Jul 22 2009 Jan Horak - 3.5.1-2 - New icons fixed From caolanm at fedoraproject.org Fri Jul 24 10:47:14 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 24 Jul 2009 10:47:14 +0000 (UTC) Subject: rpms/openoffice.org/devel openoffice.org.spec,1.1972,1.1973 Message-ID: <20090724104714.41CDA11C007C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25745 Modified Files: openoffice.org.spec Log Message: make autocorrect and font subpackages noarch Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1972 retrieving revision 1.1973 diff -u -p -r1.1972 -r1.1973 --- openoffice.org.spec 22 Jul 2009 12:12:16 -0000 1.1972 +++ openoffice.org.spec 24 Jul 2009 10:47:13 -0000 1.1973 @@ -1,6 +1,6 @@ %define oootag OOO310 %define ooomilestone 16 -%define rh_rpm_release 1 +%define rh_rpm_release 2 # rhbz#465664 jar-repacking breaks help by reordering META-INF/MANIFEST.MF %define __jar_repack %{nil} @@ -373,6 +373,7 @@ and enable basic editing of PDF document Summary: OpenOffice.org dingbats font Group: User Interface/X Requires: fontpackages-filesystem +BuildArch: noarch %description %{fontname}-fonts A dingbats font, OpenSymbol, suitable for use by OpenOffice.org for bullets and @@ -1381,6 +1382,7 @@ Provides additional maithili translation %package -n autocorr-en Summary: English autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-en Rules for autocorrecting common English typing errors. @@ -1388,6 +1390,7 @@ Rules for autocorrecting common English %package -n autocorr-af Summary: Afrikaans autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-af Rules for autocorrecting common Afrikaans typing errors. @@ -1395,6 +1398,7 @@ Rules for autocorrecting common Afrikaan %package -n autocorr-bg Summary: Bulgarian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-bg Rules for autocorrecting common Bulgarian typing errors. @@ -1402,6 +1406,7 @@ Rules for autocorrecting common Bulgaria %package -n autocorr-cs Summary: Czech autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-cs Rules for autocorrecting common Czech typing errors. @@ -1409,6 +1414,7 @@ Rules for autocorrecting common Czech ty %package -n autocorr-da Summary: Danish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-da Rules for autocorrecting common Danish typing error. @@ -1416,6 +1422,7 @@ Rules for autocorrecting common Danish t %package -n autocorr-de Summary: German autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-de Rules for autocorrecting common German typing errors. @@ -1423,6 +1430,7 @@ Rules for autocorrecting common German t %package -n autocorr-es Summary: Spanish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-es Rules for autocorrecting common Spanish typing errors. @@ -1430,6 +1438,7 @@ Rules for autocorrecting common Spanish %package -n autocorr-eu Summary: Basque autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-eu Rules for autocorrecting common Basque typing errors. @@ -1437,6 +1446,7 @@ Rules for autocorrecting common Basque t %package -n autocorr-fa Summary: Farsi autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-fa Rules for autocorrecting common Farsi typing errors. @@ -1444,6 +1454,7 @@ Rules for autocorrecting common Farsi ty %package -n autocorr-fi Summary: Finnish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-fi Rules for autocorrecting common Finnish typing errors. @@ -1451,6 +1462,7 @@ Rules for autocorrecting common Finnish %package -n autocorr-fr Summary: French autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-fr Rules for autocorrecting common French typing errors. @@ -1458,6 +1470,7 @@ Rules for autocorrecting common French t %package -n autocorr-hu Summary: Hungarian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-hu Rules for autocorrecting common Hungarian typing errors. @@ -1465,6 +1478,7 @@ Rules for autocorrecting common Hungaria %package -n autocorr-it Summary: Italian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-it Rules for autocorrecting common Italian typing errors. @@ -1472,6 +1486,7 @@ Rules for autocorrecting common Italian %package -n autocorr-ja Summary: Japanese autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-ja Rules for autocorrecting common Japanese typing errors. @@ -1479,6 +1494,7 @@ Rules for autocorrecting common Japanese %package -n autocorr-ko Summary: Korean autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-ko Rules for autocorrecting common Korean typing errors. @@ -1486,6 +1502,7 @@ Rules for autocorrecting common Korean t %package -n autocorr-lb Summary: Luxembourgish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-lb Rules for autocorrecting common Luxembourgish typing errors. @@ -1493,6 +1510,7 @@ Rules for autocorrecting common Luxembou %package -n autocorr-mn Summary: Mongolian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-mn Rules for autocorrecting common Mongolian typing errors. @@ -1500,6 +1518,7 @@ Rules for autocorrecting common Mongolia %package -n autocorr-nl Summary: Dutch autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-nl Rules for autocorrecting common Dutch typing errors. @@ -1507,6 +1526,7 @@ Rules for autocorrecting common Dutch ty %package -n autocorr-pl Summary: Polish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-pl Rules for autocorrecting common Polish typing errors. @@ -1514,6 +1534,7 @@ Rules for autocorrecting common Polish t %package -n autocorr-pt Summary: Portuguese autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-pt Rules for autocorrecting common Portuguese typing errors. @@ -1521,6 +1542,7 @@ Rules for autocorrecting common Portugue %package -n autocorr-ru Summary: Russian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-ru Rules for autocorrecting common Russian typing errors. @@ -1528,6 +1550,7 @@ Rules for autocorrecting common Russian %package -n autocorr-sk Summary: Slovak autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-sk Rules for autocorrecting common Slovak typing errors. @@ -1535,6 +1558,7 @@ Rules for autocorrecting common Slovak t %package -n autocorr-sl Summary: Slovenian autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-sl Rules for autocorrecting common Slovenian typing errors. @@ -1542,6 +1566,7 @@ Rules for autocorrecting common Slovenia %package -n autocorr-sv Summary: Swedish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-sv Rules for autocorrecting common Swedish typing errors. @@ -1549,6 +1574,7 @@ Rules for autocorrecting common Swedish %package -n autocorr-tr Summary: Turkish autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-tr Rules for autocorrecting common Turkish typing errors. @@ -1556,6 +1582,7 @@ Rules for autocorrecting common Turkish %package -n autocorr-vi Summary: Vietnamese autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-vi Rules for autocorrecting common Vietnamese typing errors. @@ -1563,6 +1590,7 @@ Rules for autocorrecting common Vietname %package -n autocorr-zh Summary: Chinese autocorrection rules Group: Applications/Text +BuildArch: noarch %description -n autocorr-zh Rules for autocorrecting common Chinese typing errors. @@ -4168,6 +4196,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog +* Fri Jul 24 2009 Caol?n McNamara - 1:3.1.1-16.2 +- make autocorrect and font subpackages noarch + * Wed Jul 22 2009 Caol?n McNamara - 1:3.1.1-16.1 - next milestone - drop integrated openoffice.org-3.1.1-ooo102679.sdext.buildfix.patch From mjakubicek at fedoraproject.org Fri Jul 24 11:15:48 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Fri, 24 Jul 2009 11:15:48 +0000 (UTC) Subject: rpms/boinc-client/F-10 autoconf.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 boinc-client.spec, 1.32, 1.33 sources, 1.6, 1.7 Message-ID: <20090724111548.B209211C007C@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/boinc-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3766 Modified Files: .cvsignore boinc-client.spec sources Added Files: autoconf.patch Log Message: - Tweak configure.ac to build on ppc/ppc64 on F10 autoconf.patch: configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE autoconf.patch --- --- configure.ac.orig 2009-07-23 22:38:35.000000000 -0400 +++ configure.ac 2009-07-23 22:41:41.000000000 -0400 @@ -33,6 +33,7 @@ enable_dependency_tracking=yes fi +BOINC_SET_COMPILE_FLAGS dnl Checks for programs. AC_PROG_CC AC_PROG_CXX @@ -147,7 +148,6 @@ []) -BOINC_SET_COMPILE_FLAGS configured_to_build= Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 15 Jan 2009 01:12:59 -0000 1.4 +++ .cvsignore 24 Jul 2009 11:15:48 -0000 1.5 @@ -1 +1 @@ -boinc-6.4.5.tar.bz2 +boinc-6.6.37.tar.bz2 Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/boinc-client.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- boinc-client.spec 22 Jul 2009 01:13:32 -0000 1.32 +++ boinc-client.spec 24 Jul 2009 11:15:48 -0000 1.33 @@ -12,6 +12,8 @@ URL: http://boinc.berkeley.edu/ # following commands to generate the tarball: # svn export http://boinc.berkeley.edu/svn/tags/boinc_core_release_%{version_} # pushd boinc_core_release_%{version_} +# patch -p0 < autoconf.patch Otherwise you'll get weird errors on ppc/ppc64 and F10 +# (somehow gfortran is otherwise used instead of gcc) # ./_autosetup # ./trim . Trim all binaries and other unnecessary things. # popd @@ -138,6 +140,7 @@ chmod 644 clientgui/{DlgItemProperties.h sed -i 's/\r//' clientgui/DlgItemProperties.cpp %build + %ifarch %{ix86} %global boinc_platform i686-pc-linux-gnu %endif @@ -149,7 +152,7 @@ sed -i 's/\r//' clientgui/DlgItemPropert %endif # We want to install .mo, not .po files, see http://boinc.berkeley.edu/trac/ticket/940 -sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.in +sed -i 's/BOINC-Manager\.po/BOINC-Manager\.mo/g' locale/Makefile.{am,in} # Install user hints install -p -m644 %{SOURCE4} . Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/F-10/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 21 Jul 2009 23:56:20 -0000 1.6 +++ sources 24 Jul 2009 11:15:48 -0000 1.7 @@ -1 +1 @@ -b5c60cbad27be3a136b2384151ec6b17 boinc-6.6.37.tar.bz2 +520a6681f7cab3196fd2608a3865066a boinc-6.6.37.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 24 11:24:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:24:46 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchbugzilla Message-ID: <20090724112447.2C37510F897@bastion2.fedora.phx.redhat.com> marx has requested the watchbugzilla acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:24:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:24:47 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchcommits Message-ID: <20090724112447.8AC1E10F8AC@bastion2.fedora.phx.redhat.com> marx has requested the watchcommits acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:25:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:25:42 +0000 Subject: [pkgdb] system-config-lvm: marx has given up watchcommits Message-ID: <20090724112543.1F34210F89D@bastion2.fedora.phx.redhat.com> marx has given up the watchcommits acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:25:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:25:44 +0000 Subject: [pkgdb] system-config-lvm: marx has given up watchbugzilla Message-ID: <20090724112544.2CDC910F8AD@bastion2.fedora.phx.redhat.com> marx has given up the watchbugzilla acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:25:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:25:50 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchbugzilla Message-ID: <20090724112550.4738810F8B4@bastion2.fedora.phx.redhat.com> marx has requested the watchbugzilla acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:25:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:25:50 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchcommits Message-ID: <20090724112551.0407B10F8B9@bastion2.fedora.phx.redhat.com> marx has requested the watchcommits acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:31 +0000 Subject: [pkgdb] system-config-lvm: marx has requested commit Message-ID: <20090724113131.4C58910F897@bastion2.fedora.phx.redhat.com> marx has requested the commit acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:34 +0000 Subject: [pkgdb] system-config-lvm: marx has requested approveacls Message-ID: <20090724113134.CF1D810F8AC@bastion2.fedora.phx.redhat.com> marx has requested the approveacls acl on system-config-lvm (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:47 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchcommits Message-ID: <20090724113147.C262E10F8B2@bastion2.fedora.phx.redhat.com> marx has requested the watchcommits acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:48 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchbugzilla Message-ID: <20090724113148.69DE010F8B6@bastion2.fedora.phx.redhat.com> marx has requested the watchbugzilla acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:48 +0000 Subject: [pkgdb] system-config-lvm: marx has requested commit Message-ID: <20090724113148.A45E210F8BA@bastion2.fedora.phx.redhat.com> marx has requested the commit acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:50 +0000 Subject: [pkgdb] system-config-lvm: marx has requested approveacls Message-ID: <20090724113150.45EED10F8BE@bastion2.fedora.phx.redhat.com> marx has requested the approveacls acl on system-config-lvm (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:31:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:31:55 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchbugzilla Message-ID: <20090724113155.9D22D10F8C7@bastion2.fedora.phx.redhat.com> marx has requested the watchbugzilla acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:32:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:32:00 +0000 Subject: [pkgdb] system-config-lvm: marx has requested watchcommits Message-ID: <20090724113201.2F6F210F8C6@bastion2.fedora.phx.redhat.com> marx has requested the watchcommits acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:32:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:32:04 +0000 Subject: [pkgdb] system-config-lvm: marx has requested commit Message-ID: <20090724113204.6B0DD10F8CB@bastion2.fedora.phx.redhat.com> marx has requested the commit acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:32:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:32:07 +0000 Subject: [pkgdb] system-config-lvm: marx has requested approveacls Message-ID: <20090724113207.8181810F8AF@bastion2.fedora.phx.redhat.com> marx has requested the approveacls acl on system-config-lvm (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/system-config-lvm From pkgdb at fedoraproject.org Fri Jul 24 11:38:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:27 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113827.A93A010F8A9@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on libatomic_ops (Fedora devel) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:27 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113827.A422510F897@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on libatomic_ops (Fedora devel) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:29 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113829.F3F8E10F8AF@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on libatomic_ops (Fedora devel) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:31 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113831.F14B410F8B3@bastion2.fedora.phx.redhat.com> rdieter has set the approveacls acl on libatomic_ops (Fedora devel) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:39 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113839.5FEAF10F8B6@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on libatomic_ops (Fedora 10) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:39 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113839.A287F10F8B9@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on libatomic_ops (Fedora 10) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:41 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113841.20A7910F8BC@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on libatomic_ops (Fedora 10) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:41 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113841.E59AF10F8BF@bastion2.fedora.phx.redhat.com> rdieter has set the approveacls acl on libatomic_ops (Fedora 10) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:44 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113844.ED79710F897@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on libatomic_ops (Fedora 11) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:46 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113846.3C52910F8C1@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on libatomic_ops (Fedora 11) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:47 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113847.6FB4410F8C3@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on libatomic_ops (Fedora 11) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From pkgdb at fedoraproject.org Fri Jul 24 11:38:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 11:38:50 +0000 Subject: [pkgdb] libatomic_ops had acl change status Message-ID: <20090724113850.5802410F8C7@bastion2.fedora.phx.redhat.com> rdieter has set the approveacls acl on libatomic_ops (Fedora 11) to Approved for sharkcz To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libatomic_ops From mjakubicek at fedoraproject.org Fri Jul 24 11:44:40 2009 From: mjakubicek at fedoraproject.org (=?utf-8?b?TWlsb8WhIEpha3Viw63EjWVr?=) Date: Fri, 24 Jul 2009 11:44:40 +0000 (UTC) Subject: rpms/orsa/devel orsa.spec,1.10,1.11 Message-ID: <20090724114440.E49FC11C007C@cvs1.fedora.phx.redhat.com> Author: mjakubicek Update of /cvs/pkgs/rpms/orsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16311 Modified Files: orsa.spec Log Message: - Force a non-MPI build because mpich2 currently still ships ld configuration file Index: orsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/orsa/devel/orsa.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- orsa.spec 24 Jul 2009 10:37:31 -0000 1.10 +++ orsa.spec 24 Jul 2009 11:44:40 -0000 1.11 @@ -152,7 +152,7 @@ sed -i 's|-g -Wall -W -pipe -ftemplate-d echo -e "\n##############################\nNow making the non-MPI version\n##############################\n" ################################ -%configure %{confflags} +%configure --without-mpi %{confflags} # remove rpaths sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool From nbecker at fedoraproject.org Fri Jul 24 12:03:36 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 24 Jul 2009 12:03:36 +0000 (UTC) Subject: rpms/mercurial/devel .cvsignore, 1.26, 1.27 mercurial.spec, 1.72, 1.73 sources, 1.28, 1.29 Message-ID: <20090724120336.3626C11C007C@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25327 Modified Files: .cvsignore mercurial.spec sources Log Message: Update to 1.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 2 Jul 2009 01:15:38 -0000 1.26 +++ .cvsignore 24 Jul 2009 12:03:35 -0000 1.27 @@ -1 +1 @@ -mercurial-1.3.tar.gz +mercurial-1.3.1.tar.gz Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/mercurial.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- mercurial.spec 2 Jul 2009 01:38:38 -0000 1.72 +++ mercurial.spec 24 Jul 2009 12:03:35 -0000 1.73 @@ -2,7 +2,7 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.3 +Version: 1.3.1 Release: 2%{?dist} License: GPLv2 Group: Development/Tools @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT cd tests && %{__python} run-tests.py %changelog +* Fri Jul 24 2009 Neal Becker - 1.3.1-2 +- Update to 1.3.1 + * Wed Jul 1 2009 Neal Becker - 1.3-2 - Re-enable tests since they now pass Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 2 Jul 2009 01:15:38 -0000 1.28 +++ sources 24 Jul 2009 12:03:35 -0000 1.29 @@ -1 +1 @@ -d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz +6504f0dc32bd7ecf59a9f7f719432e76 mercurial-1.3.1.tar.gz From rdieter at fedoraproject.org Fri Jul 24 12:08:54 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 12:08:54 +0000 (UTC) Subject: rpms/digikam/devel .cvsignore, 1.34, 1.35 digikam.spec, 1.92, 1.93 sources, 1.34, 1.35 Message-ID: <20090724120854.7FEDA11C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/digikam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27841 Modified Files: .cvsignore digikam.spec sources Log Message: * Fri Jul 24 2009 Rex Dieter - 1.0.0-0.3.beta3 - digikam-1.0.0-beta3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/.cvsignore,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- .cvsignore 6 Jul 2009 12:59:04 -0000 1.34 +++ .cvsignore 24 Jul 2009 12:08:54 -0000 1.35 @@ -1 +1 @@ -digikam-1.0.0-beta2.tar.bz2 +digikam-1.0.0-beta3.tar.bz2 Index: digikam.spec =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/digikam.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- digikam.spec 6 Jul 2009 19:01:46 -0000 1.92 +++ digikam.spec 24 Jul 2009 12:08:54 -0000 1.93 @@ -1,9 +1,9 @@ -%define pre beta2 +%define pre beta3 Name: digikam Version: 1.0.0 -Release: 0.2.%{pre}%{?dist} +Release: 0.3.%{pre}%{?dist} Summary: A digital camera accessing & photo management application Group: Applications/Multimedia @@ -155,6 +155,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 1.0.0-0.3.beta3 +- digikam-1.0.0-beta3 + * Mon Jul 06 2009 Rex Dieter - 1.0.0-0.2.beta2 - digikam-1.0.0-beta2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/digikam/devel/sources,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- sources 6 Jul 2009 12:59:05 -0000 1.34 +++ sources 24 Jul 2009 12:08:54 -0000 1.35 @@ -1 +1 @@ -96efe4ed99e5d89bf82d3a2a740d6901 digikam-1.0.0-beta2.tar.bz2 +937f6f1f109e8137dad8f1b59f009891 digikam-1.0.0-beta3.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 24 12:18:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 12:18:06 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchbugzilla Message-ID: <20090724121806.EF28F10F87E@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on anaconda (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Fri Jul 24 12:18:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 12:18:15 +0000 Subject: [pkgdb] anaconda: kanarip has requested watchcommits Message-ID: <20090724121815.A7F0C10F8B5@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on anaconda (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From rdieter at fedoraproject.org Fri Jul 24 12:21:01 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 12:21:01 +0000 (UTC) Subject: rpms/kipi-plugins/devel .cvsignore, 1.29, 1.30 kipi-plugins.spec, 1.95, 1.96 sources, 1.29, 1.30 kipi-plugins-use-libgpod-0.6.0.patch, 1.2, NONE Message-ID: <20090724122101.1F69F11C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kipi-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv680 Modified Files: .cvsignore kipi-plugins.spec sources Removed Files: kipi-plugins-use-libgpod-0.6.0.patch Log Message: * Fri Jul 24 2009 Rex Dieter 0.5.0-1 - kipi-plugins-0.5.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/.cvsignore,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- .cvsignore 4 Jul 2009 01:37:22 -0000 1.29 +++ .cvsignore 24 Jul 2009 12:21:00 -0000 1.30 @@ -1 +1 @@ -kipi-plugins-0.4.0.tar.bz2 +kipi-plugins-0.5.0.tar.bz2 Index: kipi-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/kipi-plugins.spec,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- kipi-plugins.spec 4 Jul 2009 01:37:22 -0000 1.95 +++ kipi-plugins.spec 24 Jul 2009 12:21:00 -0000 1.96 @@ -2,7 +2,7 @@ Name: kipi-plugins Summary: Plugins to use with Kipi -Version: 0.4.0 +Version: 0.5.0 Release: 1%{?dist} License: GPLv2+ and Adobe @@ -14,14 +14,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version ## upstreamable patches Patch50: kipi-plugins-0.4.0-dt_validation.patch -%if 0%{?fedora} > 10 -%define libgpod_ver 0.7.0 -%else -%define libgpod_ver 0.6.0 -%endif -# temporary, until f10 is up'd to libgpod-0.7.0 too -Patch1: kipi-plugins-use-libgpod-0.6.0.patch - BuildRequires: desktop-file-utils BuildRequires: exiv2-devel ## DNG converter @@ -34,7 +26,7 @@ BuildRequires: kdelibs4-devel >= 4.2.0 %global kdelibs4_version %((kde4-config --version 2>/dev/null || echo "KDE 4.2.0") | grep ^KDE | cut -d' ' -f2) Requires: kdelibs4 >= %{kdelibs4_version} BuildRequires: kdepimlibs-devel -BuildRequires: libgpod-devel >= %{libgpod_ver} +BuildRequires: libgpod-devel >= 0.7.0 BuildRequires: libkipi-devel >= 0.3.0 BuildRequires: libkdcraw-devel >= 0.4.0-2 BuildRequires: libkexiv2-devel >= 0.5.0 @@ -83,10 +75,6 @@ PrintWizard : print images in var %patch50 -p1 -b .dt_validation -%if "%{?libgpod_ver}" == "0.6.0" -%patch1 -p1 -b .libgpod-0.6.0 -%endif - %build mkdir -p %{_target_platform} @@ -152,7 +140,7 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO %{_kde4_bindir}/dngconverter -%{_kde4_libdir}/libkipiplugins.so.* +%{_kde4_libdir}/libkipiplugins.so.1* %{_kde4_libdir}/kde4/kipiplugin_acquireimages.so %{_kde4_libdir}/kde4/kipiplugin_advancedslideshow.so %{_kde4_libdir}/kde4/kipiplugin_batchprocessimages.so @@ -184,6 +172,7 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %{_kde4_appsdir}/kipiplugin_imageviewer/ %{_kde4_appsdir}/kipiplugin_metadataedit/ %{_kde4_appsdir}/kipiplugin_picasawebexport/ +%{_kde4_appsdir}/kipiplugin_printimages/ %{_kde4_appsdir}/kipiplugin_removeredeyes/ %{_kde4_appsdir}/kipiplugin_smug/ %{_kde4_datadir}/applications/kde4/dngconverter.desktop @@ -194,6 +183,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %changelog +* Fri Jul 24 2009 Rex Dieter 0.5.0-1 +- kipi-plugins-0.5.0 + * Fri Jul 03 2009 Rex Dieter 0.4.0-1 - kipi-plugins-0.4.0 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 4 Jul 2009 01:37:22 -0000 1.29 +++ sources 24 Jul 2009 12:21:00 -0000 1.30 @@ -1 +1 @@ -98835d56e3a50429b360d23c9e589673 kipi-plugins-0.4.0.tar.bz2 +f82c95b85f2b434fd03b99451ec5081e kipi-plugins-0.5.0.tar.bz2 --- kipi-plugins-use-libgpod-0.6.0.patch DELETED --- From twaugh at fedoraproject.org Fri Jul 24 12:22:35 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 24 Jul 2009 12:22:35 +0000 (UTC) Subject: rpms/cups/devel cups.init,1.18,1.19 cups.spec,1.484,1.485 Message-ID: <20090724122235.D797A11C007C@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1434 Modified Files: cups.init cups.spec Log Message: * Fri Jul 24 2009 Tim Waugh 1:1.4-0.rc1.11 - Tell udevd to replay printer add events in the initscript. Index: cups.init =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.init,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cups.init 25 Feb 2009 11:27:37 -0000 1.18 +++ cups.init 24 Jul 2009 12:22:35 -0000 1.19 @@ -60,6 +60,13 @@ start () { RETVAL=$? echo [ $RETVAL = 0 ] && touch /var/lock/subsys/cups + + udevadm trigger --subsystem-match=usb \ + --attr-match=bInterfaceClass=07 \ + --attr-match=bInterfaceSubClass=01 &>/dev/null || : + udevadm trigger --subsystem-match=usb \ + --property-match=DEVNAME="/dev/usb/lp*" &>/dev/null || : + return 0 } Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.484 retrieving revision 1.485 diff -u -p -r1.484 -r1.485 --- cups.spec 15 Jul 2009 13:27:21 -0000 1.484 +++ cups.spec 24 Jul 2009 12:22:35 -0000 1.485 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.10%{?dist} +Release: 0.%{pre}.11%{?dist} License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -503,6 +503,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Fri Jul 24 2009 Tim Waugh 1:1.4-0.rc1.11 +- Tell udevd to replay printer add events in the initscript. + * Wed Jul 15 2009 Tim Waugh 1:1.4-0.rc1.10 - Applied patch to prevent bad job control files crashing cupsd on start-up (STR #3253, bug #509741). From jcollie at fedoraproject.org Fri Jul 24 12:34:13 2009 From: jcollie at fedoraproject.org (Jeffrey C. Ollie) Date: Fri, 24 Jul 2009 12:34:13 +0000 (UTC) Subject: rpms/python-paramiko/devel .cvsignore, 1.11, 1.12 python-paramiko.spec, 1.19, 1.20 sources, 1.11, 1.12 Message-ID: <20090724123413.5DE4511C007C@cvs1.fedora.phx.redhat.com> Author: jcollie Update of /cvs/pkgs/rpms/python-paramiko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6666 Modified Files: .cvsignore python-paramiko.spec sources Log Message: * Thu Jul 23 2009 Jeffrey C. Ollie - 1.7.5-1 - v1.7.5 (Ernest) 19jul09 - ----------------------- - * added support for ARC4 cipher and CTR block chaining (Denis Bernard) - * made transport threads daemonize, to fix python 2.6 atexit behavior - * support unicode hostnames, and IP6 addresses (Maxime Ripard, Shikhar - Bhushan) - * various small bug fixes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 7 Jul 2008 11:45:49 -0000 1.11 +++ .cvsignore 24 Jul 2009 12:34:12 -0000 1.12 @@ -1 +1 @@ -paramiko-1.7.4.tar.gz +paramiko-1.7.5.tar.gz Index: python-paramiko.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/devel/python-paramiko.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- python-paramiko.spec 26 Feb 2009 22:43:29 -0000 1.19 +++ python-paramiko.spec 24 Jul 2009 12:34:12 -0000 1.20 @@ -3,8 +3,8 @@ %define srcname paramiko Name: python-paramiko -Version: 1.7.4 -Release: 5%{?dist} +Version: 1.7.5 +Release: 1%{?dist} Summary: A SSH2 protocol library for python Group: Development/Libraries @@ -55,6 +55,15 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Thu Jul 23 2009 Jeffrey C. Ollie - 1.7.5-1 +- v1.7.5 (Ernest) 19jul09 +- ----------------------- +- * added support for ARC4 cipher and CTR block chaining (Denis Bernard) +- * made transport threads daemonize, to fix python 2.6 atexit behavior +- * support unicode hostnames, and IP6 addresses (Maxime Ripard, Shikhar +- Bhushan) +- * various small bug fixes + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-paramiko/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 7 Jul 2008 11:45:49 -0000 1.11 +++ sources 24 Jul 2009 12:34:12 -0000 1.12 @@ -1 +1 @@ -6ae82f2eb30748be789d4ff3909e4b5e paramiko-1.7.4.tar.gz +7eac2199bea086cc22966eb223c64e7f paramiko-1.7.5.tar.gz From than at fedoraproject.org Fri Jul 24 12:44:01 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 24 Jul 2009 12:44:01 +0000 (UTC) Subject: rpms/kdenetwork/devel kdenetwork-4.2.98-kdrc-icon.patch, NONE, 1.1 .cvsignore, 1.69, 1.70 kdenetwork.spec, 1.192, 1.193 sources, 1.76, 1.77 Message-ID: <20090724124401.C47AD11C007C@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdenetwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10268 Modified Files: .cvsignore kdenetwork.spec sources Added Files: kdenetwork-4.2.98-kdrc-icon.patch Log Message: fix #393631, missing menu icon for krdc kdenetwork-4.2.98-kdrc-icon.patch: CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdenetwork-4.2.98-kdrc-icon.patch --- diff -up kdenetwork-4.2.98/krdc/CMakeLists.txt.me kdenetwork-4.2.98/krdc/CMakeLists.txt --- kdenetwork-4.2.98/krdc/CMakeLists.txt.me 2009-06-17 22:08:12.000000000 +0200 +++ kdenetwork-4.2.98/krdc/CMakeLists.txt 2009-07-24 14:26:34.000000000 +0200 @@ -73,6 +73,8 @@ kde4_add_ui_files(krdc_SRCS config/general.ui ) +kde4_add_app_icon(krdc_SRCS "hi*-apps-krdc.png") + kde4_add_executable(krdc ${krdc_SRCS}) target_link_libraries(krdc @@ -93,3 +95,5 @@ install(FILES pointcursor.png pointcurso if(NOT INSIDE_KDENETWORK) macro_display_feature_log() endif(NOT INSIDE_KDENETWORK) + +kde4_install_icons( ${ICON_INSTALL_DIR} ) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/.cvsignore,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- .cvsignore 22 Jul 2009 10:44:21 -0000 1.69 +++ .cvsignore 24 Jul 2009 12:44:01 -0000 1.70 @@ -2,3 +2,4 @@ kdenetwork-4.2.90.tar.bz2 kdenetwork-4.2.95.tar.bz2 kdenetwork-4.2.96.tar.bz2 kdenetwork-4.2.98.tar.bz2 +krdc-icons.tar.bz2 Index: kdenetwork.spec =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/kdenetwork.spec,v retrieving revision 1.192 retrieving revision 1.193 diff -u -p -r1.192 -r1.193 --- kdenetwork.spec 22 Jul 2009 10:44:21 -0000 1.192 +++ kdenetwork.spec 24 Jul 2009 12:44:01 -0000 1.193 @@ -8,8 +8,10 @@ License: GPLv2 Group: Applications/Internet URL: http://www.kde.org Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.bz2 +Source1: krdc-icons.tar.bz2 + +Patch1: kdenetwork-4.2.98-kdrc-icon.patch # upstream patches (4.3 branch): -# implement YMSG 16 protocol to allow logging into Yahoo! again (Matt Rogers) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -85,7 +87,9 @@ Requires: kdelibs4-devel %prep -%setup -q +%setup -q -a 1 +%patch1 -p1 -b .icon + # 4.3 upstream patches chmod +x kopete/kopete/kconf_update/kopete-update_yahoo_server.pl Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdenetwork/devel/sources,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- sources 22 Jul 2009 10:44:22 -0000 1.76 +++ sources 24 Jul 2009 12:44:01 -0000 1.77 @@ -1 +1,2 @@ a65bbab7dabb887a3a3d9cb27c0f2409 kdenetwork-4.2.98.tar.bz2 +7dd360a790100c952090410c2c89937c krdc-icons.tar.bz2 From rdieter at fedoraproject.org Fri Jul 24 13:09:33 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 13:09:33 +0000 (UTC) Subject: rpms/libatomic_ops/devel .cvsignore, 1.3, 1.4 libatomic_ops.spec, 1.8, 1.9 sources, 1.3, 1.4 Message-ID: <20090724130933.3BB1611C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/libatomic_ops/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20528 Modified Files: .cvsignore libatomic_ops.spec sources Log Message: * Fri Jul 24 2009 Rex Dieter - 1.2-8.gc - use gc tarball, tag gc release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libatomic_ops/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Nov 2006 12:35:34 -0000 1.3 +++ .cvsignore 24 Jul 2009 13:09:32 -0000 1.4 @@ -1 +1,2 @@ +gc-7.1.tar.gz libatomic_ops-1.2.tar.gz Index: libatomic_ops.spec =================================================================== RCS file: /cvs/pkgs/rpms/libatomic_ops/devel/libatomic_ops.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libatomic_ops.spec 23 Jul 2009 14:39:09 -0000 1.8 +++ libatomic_ops.spec 24 Jul 2009 13:09:32 -0000 1.9 @@ -1,17 +1,23 @@ +%define gc_version 7.1 + Name: libatomic_ops Version: 1.2 -Release: 7%{?dist} +Release: 8.gc%{?dist} Summary: Atomic memory update operations Group: Development/Libraries License: GPLv2+ and MIT URL: http://www.hpl.hp.com/research/linux/atomic_ops/ -Source0: http://www.hpl.hp.com/research/linux/atomic_ops/download/%{name}-%{version}.tar.gz +%if 0%{?gc_version:1} +Source0: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-%{gc_version}.tar.gz +%else +Source0: http://www.hpl.hp.com/research/linux/atomic_ops/download/%{name}-%{version}.tar.gz +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch1: libatomic_ops-1.2-ppclwzfix.patch -Patch2: libatomic_ops-1.2-s390-include.patch +Patch1: libatomic_ops-1.2-ppclwzfix.patch +Patch2: libatomic_ops-1.2-s390-include.patch # No debug information gets generated from a static lib, so # debuginfo will be empty. @@ -26,10 +32,9 @@ that involves minimum overhead across a %package devel -Summary: Atomic memory update operations -Group: Development/Libraries +Summary: Atomic memory update operations +Group: Development/Libraries Provides: %{name}-static = %{version}-%{release} - %description devel Provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably @@ -39,13 +44,17 @@ that involves minimum overhead across a %prep -%setup -q +%setup -q -n gc-%{gc_version}/libatomic_ops-%{version} +%if ! 0%{?gc_version:1} +# already fixed in gc version %patch1 -p1 +%endif %patch2 -p1 -chmod a-x src/*.h + %build %configure + make %{?_smp_mflags} @@ -74,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Rex Dieter - 1.2-8.gc +- use gc tarball, tag gc release + * Thu Jul 23 2009 Rex Dieter - 1.2-7 - devel: Provides: %%name-static ... - consolidate %%doc's Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libatomic_ops/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Nov 2006 12:35:34 -0000 1.3 +++ sources 24 Jul 2009 13:09:32 -0000 1.4 @@ -1 +1 @@ -1b65e48271c81e3fa2d7a9a69bab7504 libatomic_ops-1.2.tar.gz +2ff9924c7249ef7f736ecfe6f08f3f9b gc-7.1.tar.gz From ovasik at fedoraproject.org Fri Jul 24 13:30:48 2009 From: ovasik at fedoraproject.org (Ondrej Vasik) Date: Fri, 24 Jul 2009 13:30:48 +0000 (UTC) Subject: rpms/docbook-utils/devel docbook-utils-sgmlinclude.patch, NONE, 1.1 docbook-utils-2ndspaces.patch, 1.1, 1.2 docbook-utils.spec, 1.32, 1.33 docbook2man-spec.pl, 1.1, 1.2 Message-ID: <20090724133048.81BAA11C049E@cvs1.fedora.phx.redhat.com> Author: ovasik Update of /cvs/extras/rpms/docbook-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29875 Modified Files: docbook-utils-2ndspaces.patch docbook-utils.spec docbook2man-spec.pl Added Files: docbook-utils-sgmlinclude.patch Log Message: another quoted variable fixes for spaces in filenames, use SGML_INCLUDE in man backend(upstream), change upstream URL to something useful, escape dots and single quotes in column 1 in docbook2man-spec.pl docbook-utils-sgmlinclude.patch: backends/man.in | 2 +- bin/jw.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE docbook-utils-sgmlinclude.patch --- diff -urNp docbook-utils-0.6.14-orig/backends/man.in docbook-utils-0.6.14/backends/man.in --- docbook-utils-0.6.14-orig/backends/man.in 2009-07-24 15:17:42.000000000 +0200 +++ docbook-utils-0.6.14/backends/man.in 2009-07-24 15:20:57.000000000 +0200 @@ -7,7 +7,7 @@ HELPER=$SGML_BASE_DIR/docbook/utils- at VER TMPDIR=`mktemp -d /tmp/man.XXXXXX` || \ { echo >&2 "man backend: could not create secure temporary directory"; exit 1;} trap 'rm -rf "${TMPDIR}"' EXIT -nsgmls "$SGML_FILE" > "${TMPDIR}/nsgmls.tmp" +nsgmls "$SGML_INCLUDE" "$SGML_FILE" > "${TMPDIR}/nsgmls.tmp" sgmlspl $HELPER <"${TMPDIR}/nsgmls.tmp" 2>"${TMPDIR}/errs" if [ $? -ne 0 ] then diff -urNp docbook-utils-0.6.14-orig/bin/jw.in docbook-utils-0.6.14/bin/jw.in --- docbook-utils-0.6.14-orig/bin/jw.in 2009-07-24 15:17:42.000000000 +0200 +++ docbook-utils-0.6.14/bin/jw.in 2009-07-24 15:18:51.000000000 +0200 @@ -423,7 +423,7 @@ echo "Using catalogs: `echo $SGML_CATALO echo "Using stylesheet: $SGML_STYLESHEET" echo "Working on: $SGML_FILE" cd "$SGML_OUTPUT_DIRECTORY" -export SGML_JADE SGML_FILE_NAME SGML_ARGUMENTS +export SGML_JADE SGML_FILE_NAME SGML_ARGUMENTS SGML_INCLUDE export SGML_CATALOG_FILES SGML_BASE_DIR SGML_FILE SGML_STYLESHEET NOCHUNKS=`echo $SGML_OPTIONS | grep nochunks` if [ -z "$NOCHUNKS" ] docbook-utils-2ndspaces.patch: backends/dvi | 26 +++++++++++++------------- backends/html | 2 +- backends/pdf | 20 ++++++++++---------- backends/ps | 28 ++++++++++++++-------------- backends/rtf | 2 +- backends/tex | 2 +- backends/txt | 2 +- bin/jw.in | 10 +++++----- docbook-utils-0.6.14/backends/man.in | 2 +- docbook-utils-0.6.14/backends/texi.in | 2 +- 10 files changed, 48 insertions(+), 48 deletions(-) Index: docbook-utils-2ndspaces.patch =================================================================== RCS file: /cvs/extras/rpms/docbook-utils/devel/docbook-utils-2ndspaces.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- docbook-utils-2ndspaces.patch 24 May 2007 11:02:58 -0000 1.1 +++ docbook-utils-2ndspaces.patch 24 Jul 2009 13:30:48 -0000 1.2 @@ -190,6 +190,15 @@ fi --- Original/bin/jw.in 2003-04-30 18:21:49.000000000 +0200 +++ Changes/bin/jw.in 2007-05-21 14:28:58.000000000 +0200 +@@ -246,7 +246,7 @@ then + echo -e $SGML_HELP_MESSAGE >&2 + exit 1 + fi +-if [ ! -s $SGML_FRONTEND ] ++if [ ! -s "$SGML_FRONTEND" ] + then + echo "`basename $0`: There is no frontend called \"$SGML_FRONTEND\"." >&2 + exit 2 @@ -270,14 +270,14 @@ echo -e $SGML_HELP_MESSAGE >&2 exit 1 @@ -225,3 +234,27 @@ fi SGML_RETURN=$? cd "$SGML_CURRENT_DIRECTORY" +diff -urNp docbook-utils-0.6.14-orig/backends/man.in docbook-utils-0.6.14/backends/man.in +--- docbook-utils-0.6.14-orig/backends/man.in 2003-02-11 13:56:23.000000000 +0100 ++++ docbook-utils-0.6.14/backends/man.in 2009-07-24 15:07:04.000000000 +0200 +@@ -7,7 +7,7 @@ HELPER=$SGML_BASE_DIR/docbook/utils- at VER + TMPDIR=`mktemp -d /tmp/man.XXXXXX` || \ + { echo >&2 "man backend: could not create secure temporary directory"; exit 1;} + trap 'rm -rf "${TMPDIR}"' EXIT +-nsgmls $SGML_FILE > "${TMPDIR}/nsgmls.tmp" ++nsgmls "$SGML_FILE" > "${TMPDIR}/nsgmls.tmp" + sgmlspl $HELPER <"${TMPDIR}/nsgmls.tmp" 2>"${TMPDIR}/errs" + if [ $? -ne 0 ] + then +diff -urNp docbook-utils-0.6.14-orig/backends/texi.in docbook-utils-0.6.14/backends/texi.in +--- docbook-utils-0.6.14-orig/backends/texi.in 2002-08-05 23:20:56.000000000 +0200 ++++ docbook-utils-0.6.14/backends/texi.in 2009-07-24 15:08:02.000000000 +0200 +@@ -3,7 +3,7 @@ + # This program is under GPL license. See LICENSE file for details. + + # Convert to texinfo +-nsgmls $SGML_FILE | sgmlspl $SGML_BASE_DIR/docbook/utils- at VERSION@/helpers/docbook2texi-spec.pl >$SGML_FILE_NAME.texi ++nsgmls "$SGML_FILE" | sgmlspl $SGML_BASE_DIR/docbook/utils- at VERSION@/helpers/docbook2texi-spec.pl >$SGML_FILE_NAME.texi + if [ $? -ne 0 ] + then exit 1 + fi Index: docbook-utils.spec =================================================================== RCS file: /cvs/extras/rpms/docbook-utils/devel/docbook-utils.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- docbook-utils.spec 29 Jun 2009 08:27:36 -0000 1.32 +++ docbook-utils.spec 24 Jul 2009 13:30:48 -0000 1.33 @@ -1,10 +1,10 @@ Name: docbook-utils Version: 0.6.14 -Release: 17%{?dist} +Release: 18%{?dist} Group: Applications/Text Summary: Shell scripts for managing DocBook documents -URL: ftp://sources.redhat.com/pub/docbook-tools/new-trials/ +URL: http://sources.redhat.com/docbook-tools/ License: GPLv2+ @@ -32,6 +32,7 @@ Patch0: docbook-utils-spaces.patch Patch1: docbook-utils-2ndspaces.patch Patch2: docbook-utils-w3mtxtconvert.patch Patch3: docbook-utils-grepnocolors.patch +Patch4: docbook-utils-sgmlinclude.patch %description This package contains scripts are for easy conversion from DocBook @@ -59,6 +60,7 @@ PDF format. %patch1 -p1 -b .2ndspaces %patch2 -p1 -b .w3mtxtconvert %patch3 -p1 -b .grepnocolors +%patch4 -p1 -b .sgmlinclude %build ./configure --prefix=%{_prefix} --mandir=%{_mandir} --libdir=%{_libdir} @@ -126,6 +128,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/docbook2ps.* %changelog +* Fri Jul 24 2009 Ondrej Vasik 0.6.14-18 +- another quoted variable fixes for spaces in filenames +- use SGML_INCLUDE in man backend(upstream) +- change upstream URL to something useful +- escape dots and single quotes in column 1 in docbook2man-spec.pl + * Mon Jun 29 2009 Ondrej Vasik 0.6.14-17 - fix pdf subpackage requires(to match TeXLive2008 provides) Index: docbook2man-spec.pl =================================================================== RCS file: /cvs/extras/rpms/docbook-utils/devel/docbook2man-spec.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- docbook2man-spec.pl 8 Sep 2008 18:34:27 -0000 1.1 +++ docbook2man-spec.pl 24 Jul 2009 13:30:48 -0000 1.2 @@ -1499,6 +1499,11 @@ sgml('cdata', sub # Escape backslashes $_[0] =~ s/\\/\\\\/g; + # Escape dots and single quotes in column 1 + $_[0] =~ s/^[ \t]*\./\\\&\./; + $_[0] =~ s/^[ \t]*\'/\\\&\'/; + + # In non-'pre'-type elements: if(!$nocollapse_whitespace) { # Change tabs to spaces From akurtakov at fedoraproject.org Fri Jul 24 14:09:30 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Fri, 24 Jul 2009 14:09:30 +0000 (UTC) Subject: rpms/svnkit/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 svnkit.spec, 1.12, 1.13 Message-ID: <20090724140931.3307D11C007C@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/svnkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12876/devel Modified Files: .cvsignore sources svnkit.spec Log Message: Update to 1.3.0. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/svnkit/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 23 Mar 2009 13:17:14 -0000 1.5 +++ .cvsignore 24 Jul 2009 14:09:30 -0000 1.6 @@ -1 +1,2 @@ org.tmatesoft.svn_1.2.3.src-CLEAN.zip +org.tmatesoft.svn_1.3.0.src-CLEAN.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/svnkit/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Mar 2009 13:17:15 -0000 1.5 +++ sources 24 Jul 2009 14:09:30 -0000 1.6 @@ -1 +1 @@ -d5c425b5d2b49c2b0f3795557e580abc org.tmatesoft.svn_1.2.3.src-CLEAN.zip +a4c8787ceb54ef525c7d18b05923c9e2 org.tmatesoft.svn_1.3.0.src-CLEAN.zip Index: svnkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/svnkit/devel/svnkit.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- svnkit.spec 6 Apr 2009 13:56:33 -0000 1.12 +++ svnkit.spec 24 Jul 2009 14:09:30 -0000 1.13 @@ -1,4 +1,4 @@ -%define svn_revision 5521 +%define svn_revision 5847 %define eclipse_name eclipse %define eclipse_base %{_libdir}/%{eclipse_name} @@ -12,8 +12,8 @@ %define jna_plugin_dir %{local_plugins}/%{jna_plugin_name} Name: svnkit -Version: 1.2.3 -Release: 2%{?dist} +Version: 1.3.0 +Release: 1%{?dist} Summary: Pure Java Subversion client library Group: Development/Tools @@ -160,6 +160,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Alexander Kurtakov 1.3.0-1 +- Update to 1.3.0. + * Mon Apr 6 2009 Robert Marcano - 1.2.3-2 - Rebuild From notting at fedoraproject.org Fri Jul 24 14:09:37 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 24 Jul 2009 14:09:37 +0000 (UTC) Subject: rpms/mash/devel mash-nodelta.patch, 1.2, 1.3 noautobuild, NONE, 1.1 mash.spec, 1.55, 1.56 Message-ID: <20090724140937.B19F511C007C@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/mash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12907 Modified Files: mash.spec Added Files: mash-nodelta.patch noautobuild Log Message: Disable deltas for rawhide. mash-nodelta.patch: rawhide.mash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: mash-nodelta.patch =================================================================== RCS file: mash-nodelta.patch diff -N mash-nodelta.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ mash-nodelta.patch 24 Jul 2009 14:09:37 -0000 1.3 @@ -0,0 +1,10 @@ +diff -up mash-0.5.8/configs/rawhide.mash.foo mash-0.5.8/configs/rawhide.mash +--- mash-0.5.8/configs/rawhide.mash.foo 2009-06-16 16:04:26.000000000 -0400 ++++ mash-0.5.8/configs/rawhide.mash 2009-07-24 10:08:02.000000000 -0400 +@@ -14,4 +14,5 @@ keys = D22E77F2, 4EBFC273, 0B86274E, 6DF + repoviewurl = http://download.fedoraproject.org/pub/fedora/linux/development/%(arch)s/os/ + repoviewtitle = "Fedora Rawhide - %(arch)s" + arches = i386 x86_64 ppc ppc64 +-delta = True ++delta = False ++ --- NEW FILE noautobuild --- doing it myself Index: mash.spec =================================================================== RCS file: /cvs/extras/rpms/mash/devel/mash.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- mash.spec 29 Jun 2009 17:54:14 -0000 1.55 +++ mash.spec 24 Jul 2009 14:09:37 -0000 1.56 @@ -2,12 +2,13 @@ Name: mash Version: 0.5.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Koji buildsystem to yum repository converter Group: Development/Tools License: GPL URL: http://people.redhat.com/notting/mash/ Source0: http://people.redhat.com/notting/mash/%{name}-%{version}.tar.gz +Patch0: mash-nodelta.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: yum, createrepo, koji Conflicts: pungi < 1.0.0 @@ -21,6 +22,7 @@ any multlib RPMs that are necessary. %prep %setup -q +%patch0 -p1 %build %{__python} setup.py build @@ -44,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT /var/cache/mash %changelog +* Fri Jul 24 2009 Bill Nottingham 0.5.8-2 +- disable deltas for rawhide during payload format mass rebuild + * Mon Jun 29 2009 Bill Nottingham 0.5.8-1 - noarch packages can have debuginfo too (#508746) - remove wine-arts from multilib whitelist (not needed, doesn't exist) From pkgdb at fedoraproject.org Fri Jul 24 14:14:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 14:14:37 +0000 Subject: [pkgdb] anaconda had acl change status Message-ID: <20090724141437.91F0910F87E@bastion2.fedora.phx.redhat.com> pjones has set the watchbugzilla acl on anaconda (Fedora devel) to Approved for pjones To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Fri Jul 24 14:14:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 14:14:42 +0000 Subject: [pkgdb] anaconda had acl change status Message-ID: <20090724141442.D497F10F8AD@bastion2.fedora.phx.redhat.com> pjones has set the watchbugzilla acl on anaconda (Fedora devel) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From pkgdb at fedoraproject.org Fri Jul 24 14:14:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 14:14:46 +0000 Subject: [pkgdb] anaconda had acl change status Message-ID: <20090724141447.193A610F8B7@bastion2.fedora.phx.redhat.com> pjones has set the watchcommits acl on anaconda (Fedora devel) to Approved for kanarip To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/anaconda From nphilipp at fedoraproject.org Fri Jul 24 14:29:52 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 24 Jul 2009 14:29:52 +0000 (UTC) Subject: rpms/gimp/devel gimp.spec,1.195,1.196 Message-ID: <20090724142952.CF96111C007C@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/gimp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20462 Modified Files: gimp.spec Log Message: rebuild with chrpath >= 0.13-5 (#513419) Index: gimp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp/devel/gimp.spec,v retrieving revision 1.195 retrieving revision 1.196 diff -u -p -r1.195 -r1.196 --- gimp.spec 16 Jul 2009 08:50:12 -0000 1.195 +++ gimp.spec 24 Jul 2009 14:29:51 -0000 1.196 @@ -31,7 +31,7 @@ Summary: GNU Image Manipulation P Name: gimp Epoch: 2 Version: 2.6.6 -Release: 7%{?dist} +Release: 8%{?dist} %define binver 2.6 %define gimp_lang_ver 20 %define interfacever 2.0 @@ -44,7 +44,7 @@ URL: http://www.gimp.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%__id_u -n) Obsoletes: gimp-perl < 2:2.0 Obsoletes: gimp < 2:2.6.0-3 -BuildRequires: chrpath +BuildRequires: chrpath >= 0.13-5 %if %{with aalib} BuildRequires: aalib-devel %endif @@ -498,6 +498,9 @@ fi %{_libdir}/gimp/%{interfacever}/plug-ins/help-browser %changelog +* Fri Jul 24 2009 Nils Philippsen - 2:2.6.6-8 +- rebuild with chrpath >= 0.13-5 (#513419) + * Thu Jul 16 2009 Nils Philippsen - 2:2.6.6-7 - rebuild against gegl-0.1 (#510209) From jwilson at fedoraproject.org Fri Jul 24 14:43:47 2009 From: jwilson at fedoraproject.org (Jarod Wilson) Date: Fri, 24 Jul 2009 14:43:47 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1652,1.1653 Message-ID: <20090724144347.876A811C007C@cvs1.fedora.phx.redhat.com> Author: jwilson Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26154 Modified Files: kernel.spec Log Message: Clarify comment wrt PAE, sorta read like we don't build anything but PAE on i686, but we actually build kernel and kernel-PAE there... (Okay, being a bit anal, so sue me) Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1652 retrieving revision 1.1653 diff -u -p -r1.1652 -r1.1653 --- kernel.spec 23 Jul 2009 18:49:14 -0000 1.1652 +++ kernel.spec 24 Jul 2009 14:43:45 -0000 1.1653 @@ -198,7 +198,7 @@ Summary: The Linux kernel %endif %define debuginfodir /usr/lib/debug -# We only build -PAE on 686. +# kernel-PAE is only built on i686. %ifarch i686 %define with_pae 1 %else From nbecker at fedoraproject.org Fri Jul 24 14:44:46 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 24 Jul 2009 14:44:46 +0000 (UTC) Subject: rpms/mercurial/devel mercurial.spec,1.73,1.74 Message-ID: <20090724144446.F1F8011C007C@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26578 Modified Files: mercurial.spec Log Message: Disable self-tests Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/devel/mercurial.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- mercurial.spec 24 Jul 2009 12:03:35 -0000 1.73 +++ mercurial.spec 24 Jul 2009 14:44:46 -0000 1.74 @@ -3,7 +3,7 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial Version: 1.3.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,13 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -%check -cd tests && %{__python} run-tests.py +##%%check +##cd tests && %{__python} run-tests.py %changelog +* Fri Jul 24 2009 Neal Becker - 1.3.1-3 +- Disable self-tests + * Fri Jul 24 2009 Neal Becker - 1.3.1-2 - Update to 1.3.1 From jkeating at fedoraproject.org Fri Jul 24 14:56:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:56:30 +0000 (UTC) Subject: rpms/0xFFFF/devel 0xFFFF.spec,1.2,1.3 Message-ID: <20090724145630.17F9311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/0xFFFF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31433 Modified Files: 0xFFFF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 0xFFFF.spec =================================================================== RCS file: /cvs/pkgs/rpms/0xFFFF/devel/0xFFFF.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 0xFFFF.spec 23 Feb 2009 19:55:49 -0000 1.2 +++ 0xFFFF.spec 24 Jul 2009 14:56:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: 0xFFFF Version: 0.3.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Open Free Fiasco Firmware Flasher Group: Applications/System @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 14:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:56:45 +0000 (UTC) Subject: rpms/389-admin/devel 389-admin.spec,1.4,1.5 Message-ID: <20090724145645.EDA9B11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31613 Modified Files: 389-admin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-admin.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-admin/devel/389-admin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- 389-admin.spec 21 Jul 2009 15:39:42 -0000 1.4 +++ 389-admin.spec 24 Jul 2009 14:56:45 -0000 1.5 @@ -3,7 +3,7 @@ Summary: 389 Administration Server (admin) Name: 389-admin Version: 1.1.8 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 and ASL 2.0 URL: http://port389.org/ Group: System Environment/Daemons @@ -150,6 +150,9 @@ fi %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Rich Megginson - 1.1.8-3 - bump rev for final rebuild From jkeating at fedoraproject.org Fri Jul 24 14:57:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:57:02 +0000 (UTC) Subject: rpms/389-admin-console/devel 389-admin-console.spec,1.1,1.2 Message-ID: <20090724145702.EF8F511C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-admin-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31832 Modified Files: 389-admin-console.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-admin-console.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-admin-console/devel/389-admin-console.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-admin-console.spec 17 Jul 2009 17:14:30 -0000 1.1 +++ 389-admin-console.spec 24 Jul 2009 14:57:02 -0000 1.2 @@ -6,7 +6,7 @@ Name: 389-admin-console Version: %{major_version}.%{minor_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: 389 Admin Server Management Console Group: Applications/System @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/%{pkgname}/manual/en/admin/help/*.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Rich Megginson 1.1.4-1 - relicense source files under GPLv2 - create doc sub package From jkeating at fedoraproject.org Fri Jul 24 14:57:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:57:19 +0000 (UTC) Subject: rpms/389-adminutil/devel 389-adminutil.spec,1.1,1.2 Message-ID: <20090724145719.8FE6411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-adminutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32000 Modified Files: 389-adminutil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-adminutil.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-adminutil/devel/389-adminutil.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-adminutil.spec 17 Jul 2009 21:00:17 -0000 1.1 +++ 389-adminutil.spec 24 Jul 2009 14:57:19 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Utility library for 389 administration Name: 389-adminutil Version: 1.1.8 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries @@ -82,6 +82,9 @@ that use %{name}. %{_includedir}/libadmsslutil %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Rich Megginson - 1.1.8-2 - rename to 389-adminutil From jkeating at fedoraproject.org Fri Jul 24 14:57:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:57:36 +0000 (UTC) Subject: rpms/389-console/devel 389-console.spec,1.1,1.2 Message-ID: <20090724145736.4423711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32220 Modified Files: 389-console.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-console.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-console/devel/389-console.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-console.spec 18 Jun 2009 20:40:18 -0000 1.1 +++ 389-console.spec 24 Jul 2009 14:57:36 -0000 1.2 @@ -3,7 +3,7 @@ Name: 389-console Version: %{major_version}.%{minor_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: 389 Management Console Group: Applications/System @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Rich Megginson 1.1.3-2 - rename to 389 From jkeating at fedoraproject.org Fri Jul 24 14:57:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:57:51 +0000 (UTC) Subject: rpms/389-ds/devel 389-ds.spec,1.2,1.3 Message-ID: <20090724145751.37C5611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-ds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32394 Modified Files: 389-ds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-ds.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-ds/devel/389-ds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 389-ds.spec 17 Jul 2009 21:13:08 -0000 1.2 +++ 389-ds.spec 24 Jul 2009 14:57:50 -0000 1.3 @@ -1,7 +1,7 @@ Summary: 389 Directory, Administration, and Console Suite Name: 389-ds Version: 1.1.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Rich Megginson 1.1.3-3 - added empty build section From jkeating at fedoraproject.org Fri Jul 24 14:58:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:58:05 +0000 (UTC) Subject: rpms/389-ds-base/devel 389-ds-base.spec,1.1,1.2 Message-ID: <20090724145805.2978911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-ds-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32589 Modified Files: 389-ds-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-ds-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-ds-base/devel/389-ds-base.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-ds-base.spec 26 May 2009 22:55:06 -0000 1.1 +++ 389-ds-base.spec 24 Jul 2009 14:58:04 -0000 1.2 @@ -4,7 +4,7 @@ Summary: 389 Directory Server (base) Name: 389-ds-base Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions URL: http://port389.org/ Group: System Environment/Daemons @@ -172,6 +172,9 @@ fi %{_libdir}/%{pkgname}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Rich Megginson - 1.2.1-1 - change name to 389 - change version to 1.2.1 From jkeating at fedoraproject.org Fri Jul 24 14:58:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:58:17 +0000 (UTC) Subject: rpms/389-ds-console/devel 389-ds-console.spec,1.1,1.2 Message-ID: <20090724145817.CC6F911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-ds-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32752 Modified Files: 389-ds-console.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-ds-console.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-ds-console/devel/389-ds-console.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- 389-ds-console.spec 17 Jul 2009 21:02:38 -0000 1.1 +++ 389-ds-console.spec 24 Jul 2009 14:58:17 -0000 1.2 @@ -6,7 +6,7 @@ Name: 389-ds-console Version: %{major_version}.%{minor_version} -Release: 3%{?dist} +Release: 4%{?dist} Summary: 389 Directory Server Management Console Group: Applications/System @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/%{pkgname}/manual/en/slapd/help/*.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Rich Megginson 1.2.0-3 - added doc subpackage From jkeating at fedoraproject.org Fri Jul 24 14:58:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:58:33 +0000 (UTC) Subject: rpms/389-dsgw/devel 389-dsgw.spec,1.2,1.3 Message-ID: <20090724145833.8489911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/389-dsgw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv471 Modified Files: 389-dsgw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: 389-dsgw.spec =================================================================== RCS file: /cvs/pkgs/rpms/389-dsgw/devel/389-dsgw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- 389-dsgw.spec 21 Jul 2009 13:03:14 -0000 1.2 +++ 389-dsgw.spec 24 Jul 2009 14:58:33 -0000 1.3 @@ -3,7 +3,7 @@ Summary: 389 Directory Server Gateway (dsgw) Name: 389-dsgw Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: http://port389.org/ Group: System Environment/Daemons @@ -86,6 +86,9 @@ fi %{_libdir}/%{pkgname}/dsgw-cgi-bin %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Rich Megginson - 1.1.3-2 - use 389-adminutil instead of adminutil From jkeating at fedoraproject.org Fri Jul 24 14:58:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:58:48 +0000 (UTC) Subject: rpms/AGReader/devel AGReader.spec,1.6,1.7 Message-ID: <20090724145848.296AE11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/AGReader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv669 Modified Files: AGReader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: AGReader.spec =================================================================== RCS file: /cvs/pkgs/rpms/AGReader/devel/AGReader.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- AGReader.spec 19 Feb 2008 16:33:18 -0000 1.6 +++ AGReader.spec 24 Jul 2009 14:58:47 -0000 1.7 @@ -1,6 +1,6 @@ Name: AGReader Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Console reader for viewing AmigaGuide files Group: Applications/Text License: GPL+ @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 19 2008 Fedora Release Engineering - 1.2-5 - Autorebuild for GCC 4.3 From jkeating at fedoraproject.org Fri Jul 24 14:59:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:59:01 +0000 (UTC) Subject: rpms/AcetoneISO/devel AcetoneISO.spec,1.5,1.6 Message-ID: <20090724145901.C2F2611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/AcetoneISO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv861 Modified Files: AcetoneISO.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: AcetoneISO.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO/devel/AcetoneISO.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- AcetoneISO.spec 23 Feb 2009 19:57:40 -0000 1.5 +++ AcetoneISO.spec 24 Jul 2009 14:59:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: AcetoneISO Version: 6.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv2+ @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/*.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 6.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 14:59:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:59:16 +0000 (UTC) Subject: rpms/AcetoneISO2/devel AcetoneISO2.spec,1.11,1.12 Message-ID: <20090724145916.32D2911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/AcetoneISO2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1032 Modified Files: AcetoneISO2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: AcetoneISO2.spec =================================================================== RCS file: /cvs/pkgs/rpms/AcetoneISO2/devel/AcetoneISO2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- AcetoneISO2.spec 23 Jul 2009 23:04:42 -0000 1.11 +++ AcetoneISO2.spec 24 Jul 2009 14:59:15 -0000 1.12 @@ -1,6 +1,6 @@ Name: AcetoneISO2 Version: 2.0.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CD/DVD Image Manipulator Group: Applications/Archiving License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/Acetino2.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Tom "spot" Callaway - 2.0.3.2-2 - forgot to tag some files From jkeating at fedoraproject.org Fri Jul 24 14:59:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:59:29 +0000 (UTC) Subject: rpms/Ajaxterm/devel Ajaxterm.spec,1.4,1.5 Message-ID: <20090724145929.A600A11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Ajaxterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1226 Modified Files: Ajaxterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Ajaxterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/Ajaxterm/devel/Ajaxterm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- Ajaxterm.spec 6 Apr 2009 12:57:00 -0000 1.4 +++ Ajaxterm.spec 24 Jul 2009 14:59:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: Ajaxterm Version: 0.10 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A web-based terminal Group: Development/Languages @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Ruben Kerkhof 0.10-8 - Fix ajaxterm homedir - Add status command to init script From jkeating at fedoraproject.org Fri Jul 24 14:59:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:59:43 +0000 (UTC) Subject: rpms/AllegroOGG/devel AllegroOGG.spec,1.4,1.5 Message-ID: <20090724145943.F3F6B11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/AllegroOGG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1410 Modified Files: AllegroOGG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: AllegroOGG.spec =================================================================== RCS file: /cvs/pkgs/rpms/AllegroOGG/devel/AllegroOGG.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- AllegroOGG.spec 23 Feb 2009 20:00:30 -0000 1.4 +++ AllegroOGG.spec 24 Jul 2009 14:59:43 -0000 1.5 @@ -1,6 +1,6 @@ Name: AllegroOGG Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Ogg library for use with the Allegro game library Group: System Environment/Libraries License: BSD @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 14:59:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 14:59:59 +0000 (UTC) Subject: rpms/BackupPC/devel BackupPC.spec,1.9,1.10 Message-ID: <20090724145959.20B9F11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/BackupPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1585 Modified Files: BackupPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: BackupPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/BackupPC/devel/BackupPC.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- BackupPC.spec 10 Apr 2009 16:04:54 -0000 1.9 +++ BackupPC.spec 24 Jul 2009 14:59:58 -0000 1.10 @@ -6,7 +6,7 @@ Name: BackupPC Version: 3.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: High-performance backup system Group: Applications/System @@ -228,6 +228,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Johan Cwiklinski 3.1.0-5 - Fix TopDir change (bug #473944) From jkeating at fedoraproject.org Fri Jul 24 15:00:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:00:21 +0000 (UTC) Subject: rpms/BibTool/devel BibTool.spec,1.7,1.8 Message-ID: <20090724150021.D694F11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/BibTool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1850 Modified Files: BibTool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: BibTool.spec =================================================================== RCS file: /cvs/pkgs/rpms/BibTool/devel/BibTool.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- BibTool.spec 23 Feb 2009 20:02:24 -0000 1.7 +++ BibTool.spec 24 Jul 2009 15:00:21 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A Tool for manipulating BibTeX data bases Name: BibTool Version: 2.48 -Release: 8%{?dist} +Release: 9%{?dist} Group: Applications/Publishing Source: ftp://ftp.dante.de/tex-archive/biblio/bibtex/utils/bibtool/BibTool-%{version}.tar.gz URL: http://www.gerd-neugebauer.de/software/TeX/BibTool.en.html @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/bibtool.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.48-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.48-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:01:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:01:18 +0000 (UTC) Subject: rpms/BlockOutII/devel BlockOutII.spec,1.4,1.5 Message-ID: <20090724150118.0CBAE11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/BlockOutII/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2157 Modified Files: BlockOutII.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: BlockOutII.spec =================================================================== RCS file: /cvs/pkgs/rpms/BlockOutII/devel/BlockOutII.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- BlockOutII.spec 23 Feb 2009 20:03:19 -0000 1.4 +++ BlockOutII.spec 24 Jul 2009 15:01:16 -0000 1.5 @@ -5,7 +5,7 @@ Name: BlockOutII Version: 2.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A free adaptation of the original BlockOut DOS game Group: Amusements/Games License: GPLv2+ @@ -118,6 +118,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:01:47 +0000 (UTC) Subject: rpms/CCfits/devel CCfits.spec,1.17,1.18 Message-ID: <20090724150147.6B34F11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/CCfits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2618 Modified Files: CCfits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: CCfits.spec =================================================================== RCS file: /cvs/pkgs/rpms/CCfits/devel/CCfits.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- CCfits.spec 16 Jun 2009 13:35:14 -0000 1.17 +++ CCfits.spec 24 Jul 2009 15:01:47 -0000 1.18 @@ -1,6 +1,6 @@ Name: CCfits Version: 2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C++ interface for cfitsio Group: Development/Libraries @@ -78,6 +78,9 @@ This package contains the full API docum %doc html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Sergio Pascual - 2.1-4 - Noarch subpackage for docs From jkeating at fedoraproject.org Fri Jul 24 15:03:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:03:43 +0000 (UTC) Subject: rpms/Canna/devel Canna.spec,1.21,1.22 Message-ID: <20090724150343.3BAA411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Canna/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4378 Modified Files: Canna.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Canna.spec =================================================================== RCS file: /cvs/pkgs/rpms/Canna/devel/Canna.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- Canna.spec 23 Feb 2009 20:07:27 -0000 1.21 +++ Canna.spec 24 Jul 2009 15:03:42 -0000 1.22 @@ -10,7 +10,7 @@ Summary: A Japanese character set input system. Name: Canna Version: 3.7p3 -Release: 27%{?dist} +Release: 28%{?dist} # lib/RKindep/cksum.c is licensed under 4-clause BSD, otherwise MIT. License: MIT and BSD with advertising Group: System Environment/Libraries @@ -332,6 +332,9 @@ fi %{_libdir}/libcanna16.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7p3-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 3.7p3-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:04:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:04:08 +0000 (UTC) Subject: rpms/ClanLib/devel ClanLib.spec,1.20,1.21 Message-ID: <20090724150408.5F14A11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ClanLib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4640 Modified Files: ClanLib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ClanLib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ClanLib/devel/ClanLib.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ClanLib.spec 18 May 2009 13:56:51 -0000 1.20 +++ ClanLib.spec 24 Jul 2009 15:04:07 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Cross platform C++ game library Name: ClanLib Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: zlib URL: http://www.clanlib.org/ @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Hans de Goede 1.0.0-1 - New upstream release 1.0.0, note: API compatible but changes soname From jkeating at fedoraproject.org Fri Jul 24 15:04:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:04:30 +0000 (UTC) Subject: rpms/ClanLib06/devel ClanLib06.spec,1.15,1.16 Message-ID: <20090724150430.A2B7211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ClanLib06/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4862 Modified Files: ClanLib06.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ClanLib06.spec =================================================================== RCS file: /cvs/pkgs/rpms/ClanLib06/devel/ClanLib06.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ClanLib06.spec 23 Feb 2009 20:10:11 -0000 1.15 +++ ClanLib06.spec 24 Jul 2009 15:04:30 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Version 0.6 of this Cross platform C++ game library Name: ClanLib06 Version: 0.6.5 -Release: 14%{?dist} +Release: 15%{?dist} Group: System Environment/Libraries License: LGPLv2 URL: http://www.clanlib.org/ @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.5-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.5-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From nbecker at fedoraproject.org Fri Jul 24 15:04:51 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 24 Jul 2009 15:04:51 +0000 (UTC) Subject: rpms/mercurial/F-11 mercurial.spec,1.71,1.72 Message-ID: <20090724150451.777C711C007C@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5071 Modified Files: mercurial.spec Log Message: update to 1.3.1 Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-11/mercurial.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- mercurial.spec 2 Jul 2009 11:01:23 -0000 1.71 +++ mercurial.spec 24 Jul 2009 15:04:51 -0000 1.72 @@ -2,8 +2,8 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.1 +Release: 3%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,16 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -%check -cd tests && %{__python} run-tests.py +##%%check +##cd tests && %{__python} run-tests.py %changelog +* Fri Jul 24 2009 Neal Becker - 1.3.1-3 +- Disable self-tests + +* Fri Jul 24 2009 Neal Becker - 1.3.1-2 +- Update to 1.3.1 + * Wed Jul 1 2009 Neal Becker - 1.3-2 - Re-enable tests since they now pass From jkeating at fedoraproject.org Fri Jul 24 15:04:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:04:50 +0000 (UTC) Subject: rpms/CodeAnalyst-gui/devel CodeAnalyst-gui.spec,1.10,1.11 Message-ID: <20090724150450.1F2E011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/CodeAnalyst-gui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5060 Modified Files: CodeAnalyst-gui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: CodeAnalyst-gui.spec =================================================================== RCS file: /cvs/pkgs/rpms/CodeAnalyst-gui/devel/CodeAnalyst-gui.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- CodeAnalyst-gui.spec 20 Jul 2009 18:25:23 -0000 1.10 +++ CodeAnalyst-gui.spec 24 Jul 2009 15:04:49 -0000 1.11 @@ -1,7 +1,7 @@ Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst-gui Version: 2.8.54 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2 Group: Development/System URL: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux @@ -161,6 +161,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.54-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 - Suravee Suthikulpanit - 2.8.54-17 - Add Patch1 (ca-fix-oprofile-ibs-check.patch) From mtasaka at fedoraproject.org Fri Jul 24 15:05:09 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 15:05:09 +0000 (UTC) Subject: rpms/alexandria/devel alexandria.spec,1.33,1.34 Message-ID: <20090724150509.487D911C007C@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/alexandria/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5405 Modified Files: alexandria.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - F-12: Mass rebuild Index: alexandria.spec =================================================================== RCS file: /cvs/extras/rpms/alexandria/devel/alexandria.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- alexandria.spec 12 Apr 2009 15:32:25 -0000 1.33 +++ alexandria.spec 24 Jul 2009 15:05:09 -0000 1.34 @@ -12,7 +12,7 @@ Name: alexandria Version: %{majorver} -Release: %{rel}%{?dist} +Release: %{rel}%{?dist}.1 Summary: Book collection manager Group: Applications/Productivity @@ -207,6 +207,9 @@ exit 0 %{_datadir}/icons/hicolor/*/apps/%{name}.* %changelog +* Sat Jul 25 2009 Mamoru Tasaka +- F-12: Mass rebuild + * Mon Apr 13 2009 Mamoru Tasaka - 0.6.4.1-6 - Trial fix to fix hang when importing list containing invalid isdn (alexandria-Bugs-25348) From jkeating at fedoraproject.org Fri Jul 24 15:05:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:05:08 +0000 (UTC) Subject: rpms/Coin2/devel Coin2.spec,1.41,1.42 Message-ID: <20090724150508.4D7A711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Coin2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5384 Modified Files: Coin2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Coin2.spec =================================================================== RCS file: /cvs/pkgs/rpms/Coin2/devel/Coin2.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- Coin2.spec 23 Feb 2009 20:11:05 -0000 1.41 +++ Coin2.spec 24 Jul 2009 15:05:08 -0000 1.42 @@ -13,7 +13,7 @@ Summary: High-level 3D visualization library Name: Coin2 Version: 2.5.0 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/Coin.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.5.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:05:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:05:28 +0000 (UTC) Subject: rpms/ConsoleKit/devel ConsoleKit.spec,1.45,1.46 Message-ID: <20090724150528.2EE9711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ConsoleKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5666 Modified Files: ConsoleKit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ConsoleKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ConsoleKit/devel/ConsoleKit.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- ConsoleKit.spec 22 Jul 2009 13:53:41 -0000 1.45 +++ ConsoleKit.spec 24 Jul 2009 15:05:28 -0000 1.46 @@ -6,7 +6,7 @@ Summary: System daemon for tracking users, sessions and seats Name: ConsoleKit Version: 0.3.0 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.freedesktop.org/wiki/Software/ConsoleKit @@ -179,6 +179,9 @@ fi %doc %{_datadir}/doc/%{name}-%{version}/spec/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Ray Strode - 0.3.0-11 - Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:05:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:05:46 +0000 (UTC) Subject: rpms/CriticalMass/devel CriticalMass.spec,1.6,1.7 Message-ID: <20090724150546.8792A11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/CriticalMass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5921 Modified Files: CriticalMass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: CriticalMass.spec =================================================================== RCS file: /cvs/pkgs/rpms/CriticalMass/devel/CriticalMass.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- CriticalMass.spec 23 Feb 2009 20:13:01 -0000 1.6 +++ CriticalMass.spec 24 Jul 2009 15:05:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: CriticalMass Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: SDL/OpenGL space shoot'em up game also known as critter Group: Amusements/Games License: GPLv2+ @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:06:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:06:10 +0000 (UTC) Subject: rpms/Cython/devel Cython.spec,1.14,1.15 Message-ID: <20090724150610.4D10D11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Cython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6203 Modified Files: Cython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Cython.spec =================================================================== RCS file: /cvs/pkgs/rpms/Cython/devel/Cython.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- Cython.spec 21 May 2009 01:07:17 -0000 1.14 +++ Cython.spec 24 Jul 2009 15:06:09 -0000 1.15 @@ -4,7 +4,7 @@ Name: Cython Version: 0.11.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A language for writing Python extension modules Group: Development/Tools @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Neal Becker - 0.11.2-1 - Update to 0.11.2 From jkeating at fedoraproject.org Fri Jul 24 15:06:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:06:30 +0000 (UTC) Subject: rpms/DMitry/devel DMitry.spec,1.5,1.6 Message-ID: <20090724150630.4DDAC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DMitry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6447 Modified Files: DMitry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DMitry.spec =================================================================== RCS file: /cvs/pkgs/rpms/DMitry/devel/DMitry.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- DMitry.spec 23 Feb 2009 20:14:52 -0000 1.5 +++ DMitry.spec 24 Jul 2009 15:06:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: DMitry Version: 1.3a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Deepmagic Information Gathering Tool Group: Applications/Internet @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:06:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:06:46 +0000 (UTC) Subject: rpms/DevIL/devel DevIL.spec,1.14,1.15 Message-ID: <20090724150646.C7D4011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DevIL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6649 Modified Files: DevIL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DevIL.spec =================================================================== RCS file: /cvs/pkgs/rpms/DevIL/devel/DevIL.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- DevIL.spec 9 Mar 2009 09:25:04 -0000 1.14 +++ DevIL.spec 24 Jul 2009 15:06:46 -0000 1.15 @@ -1,6 +1,6 @@ Name: DevIL Version: 1.7.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A cross-platform image library Group: System Environment/Libraries License: LGPLv2 @@ -138,6 +138,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Hans de Goede 1.7.8-1 - Update to latest upstream: 1.7.8 From jkeating at fedoraproject.org Fri Jul 24 15:07:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:07:02 +0000 (UTC) Subject: rpms/DeviceKit/devel DeviceKit.spec,1.11,1.12 Message-ID: <20090724150702.8ACBD11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DeviceKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6842 Modified Files: DeviceKit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DeviceKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit/devel/DeviceKit.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- DeviceKit.spec 2 Mar 2009 21:37:30 -0000 1.11 +++ DeviceKit.spec 24 Jul 2009 15:07:02 -0000 1.12 @@ -7,7 +7,7 @@ Summary: Device Enumeration Framework Name: DeviceKit Version: 003 -Release: 1 +Release: 2 License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit.git;a=summary @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/devkit/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 003-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 David Zeuthen - 003-1%{?dist} - Update to release 003 From nbecker at fedoraproject.org Fri Jul 24 15:07:06 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 24 Jul 2009 15:07:06 +0000 (UTC) Subject: rpms/mercurial/F-10 mercurial.spec,1.62,1.63 sources,1.28,1.29 Message-ID: <20090724150706.E437411C007C@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6897 Modified Files: mercurial.spec sources Log Message: update to 1.3.1 Index: mercurial.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-10/mercurial.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- mercurial.spec 2 Jul 2009 11:26:02 -0000 1.62 +++ mercurial.spec 24 Jul 2009 15:07:06 -0000 1.63 @@ -2,8 +2,8 @@ Summary: A fast, lightweight distributed source control management system Name: mercurial -Version: 1.3 -Release: 2%{?dist} +Version: 1.3.1 +Release: 3%{?dist} License: GPLv2 Group: Development/Tools URL: http://www.selenic.com/mercurial/ @@ -166,10 +166,16 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/mercurial/ %{_sysconfdir}/mercurial/hgrc.d/hgk.rc -%check -cd tests && %{__python} run-tests.py +##%%check +##cd tests && %{__python} run-tests.py %changelog +* Fri Jul 24 2009 Neal Becker - 1.3.1-3 +- Disable self-tests + +* Fri Jul 24 2009 Neal Becker - 1.3.1-2 +- Update to 1.3.1 + * Wed Jul 1 2009 Neal Becker - 1.3-2 - Re-enable tests since they now pass Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-10/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 2 Jul 2009 11:26:02 -0000 1.28 +++ sources 24 Jul 2009 15:07:06 -0000 1.29 @@ -1 +1 @@ -d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz +6504f0dc32bd7ecf59a9f7f719432e76 mercurial-1.3.1.tar.gz From jkeating at fedoraproject.org Fri Jul 24 15:07:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:07:18 +0000 (UTC) Subject: rpms/DeviceKit-disks/devel DeviceKit-disks.spec,1.29,1.30 Message-ID: <20090724150718.E81CC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DeviceKit-disks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7136 Modified Files: DeviceKit-disks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DeviceKit-disks.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-disks/devel/DeviceKit-disks.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- DeviceKit-disks.spec 13 Jul 2009 01:39:17 -0000 1.29 +++ DeviceKit-disks.spec 24 Jul 2009 15:07:18 -0000 1.30 @@ -12,7 +12,7 @@ Summary: Disk Management Service Name: DeviceKit-disks Version: 005 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=users/david/DeviceKit-disks.git;a=summary @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT # Note: please don't forget the %{?dist} in the changelog. Thanks %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 005-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Matthias Clasen - 005-3.f12 - Rebuild From rafalzaq at fedoraproject.org Fri Jul 24 15:07:29 2009 From: rafalzaq at fedoraproject.org (=?utf-8?q?Rafa=C5=82_Psota?=) Date: Fri, 24 Jul 2009 15:07:29 +0000 (UTC) Subject: rpms/glob2/devel noautobuild,1.1,NONE Message-ID: <20090724150729.E4CD511C007C@cvs1.fedora.phx.redhat.com> Author: rafalzaq Update of /cvs/pkgs/rpms/glob2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7289 Removed Files: noautobuild Log Message: removed noautobuild --- noautobuild DELETED --- From mtasaka at fedoraproject.org Fri Jul 24 15:07:33 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 15:07:33 +0000 (UTC) Subject: rpms/catfish/devel catfish.spec,1.18,1.19 Message-ID: <20090724150733.5B1BC11C007C@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/catfish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7343 Modified Files: catfish.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.3.2-3 - F-12: Mass rebuild Index: catfish.spec =================================================================== RCS file: /cvs/extras/rpms/catfish/devel/catfish.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- catfish.spec 23 Feb 2009 22:10:57 -0000 1.18 +++ catfish.spec 24 Jul 2009 15:07:33 -0000 1.19 @@ -1,7 +1,7 @@ %define mainver 0.3.2 %undefine betaver -%define fedoraver 2 +%define fedoraver 3 Name: catfish @@ -141,6 +141,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %defattr(-,root,root,-) %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.3.2-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.3.2-2 - GTK icon cache updating script update From jkeating at fedoraproject.org Fri Jul 24 15:07:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:07:34 +0000 (UTC) Subject: rpms/DeviceKit-power/devel DeviceKit-power.spec,1.20,1.21 Message-ID: <20090724150734.B033311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DeviceKit-power/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7370 Modified Files: DeviceKit-power.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DeviceKit-power.spec =================================================================== RCS file: /cvs/pkgs/rpms/DeviceKit-power/devel/DeviceKit-power.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- DeviceKit-power.spec 22 Jul 2009 12:15:58 -0000 1.20 +++ DeviceKit-power.spec 24 Jul 2009 15:07:34 -0000 1.21 @@ -9,7 +9,7 @@ Summary: Power Management Service Name: DeviceKit-power Version: 010 #Release: 0.4.%{?alphatag}git%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://cgit.freedesktop.org/DeviceKit/DeviceKit-power/ @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 010-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Richard Hughes - 010-1 - Update to 010 - Fixes a few problems with multi-battery laptops From jkeating at fedoraproject.org Fri Jul 24 15:07:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:07:49 +0000 (UTC) Subject: rpms/DivFix++/devel DivFix++.spec,1.4,1.5 Message-ID: <20090724150749.127EC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/DivFix++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7594 Modified Files: DivFix++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: DivFix++.spec =================================================================== RCS file: /cvs/pkgs/rpms/DivFix++/devel/DivFix++.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- DivFix++.spec 23 Feb 2009 21:47:54 -0000 1.4 +++ DivFix++.spec 24 Jul 2009 15:07:48 -0000 1.5 @@ -9,7 +9,7 @@ Name: DivFix++ Summary: Repair broken AVI file streams by rebuilding index part of file Version: 0.30 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://divfixpp.sourceforge.net/ @@ -95,6 +95,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.30-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.30-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:08:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:08:05 +0000 (UTC) Subject: rpms/Django/devel Django.spec,1.19,1.20 Message-ID: <20090724150805.8729C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Django/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7782 Modified Files: Django.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Django.spec =================================================================== RCS file: /cvs/pkgs/rpms/Django/devel/Django.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- Django.spec 13 Mar 2009 02:26:07 -0000 1.19 +++ Django.spec 24 Jul 2009 15:08:05 -0000 1.20 @@ -3,7 +3,7 @@ Name: Django Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level Python Web framework Group: Development/Languages @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/_build/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Michel Salim - 1.0.2-3 - Build HTML documentation (bug #484070) - No longer excluding *.py? in bindir, F11's Python does not optimizes these From jkeating at fedoraproject.org Fri Jul 24 15:08:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:08:21 +0000 (UTC) Subject: rpms/E/devel E.spec,1.5,1.6 Message-ID: <20090724150821.6E9EF11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/E/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7979 Modified Files: E.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: E.spec =================================================================== RCS file: /cvs/pkgs/rpms/E/devel/E.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- E.spec 23 Feb 2009 21:06:33 -0000 1.5 +++ E.spec 24 Jul 2009 15:08:21 -0000 1.6 @@ -1,6 +1,6 @@ Name: E Version: 1.0.002 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Equational Theorem Prover Group: Applications/Engineering License: GPLv2 @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.002-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.002-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:08:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:08:39 +0000 (UTC) Subject: rpms/ETL/devel ETL.spec,1.1,1.2 Message-ID: <20090724150839.6A3B411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ETL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8209 Modified Files: ETL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ETL.spec =================================================================== RCS file: /cvs/pkgs/rpms/ETL/devel/ETL.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ETL.spec 1 Mar 2009 10:44:41 -0000 1.1 +++ ETL.spec 24 Jul 2009 15:08:39 -0000 1.2 @@ -2,7 +2,7 @@ Name: ETL Version: 0.04.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extended Template Library Group: Development/Libraries @@ -65,6 +65,9 @@ make check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.04.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jan 9 2009 Lubomir Rintel 0.04.12-1 - New upstream release - Run regression tests From jkeating at fedoraproject.org Fri Jul 24 15:08:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:08:53 +0000 (UTC) Subject: rpms/EekBoek/devel EekBoek.spec,1.2,1.3 Message-ID: <20090724150853.73C5E11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/EekBoek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8396 Modified Files: EekBoek.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: EekBoek.spec =================================================================== RCS file: /cvs/pkgs/rpms/EekBoek/devel/EekBoek.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- EekBoek.spec 19 Jun 2009 20:29:46 -0000 1.2 +++ EekBoek.spec 24 Jul 2009 15:08:53 -0000 1.3 @@ -11,7 +11,7 @@ Summary: Bookkeeping software for small License: GPL+ or Artistic Group: Applications/Productivity Version: 1.04.04 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.eekboek.nl/dl/%{name}-%{version}.tar.gz Source1: README.postgres URL: http://www.eekboek.nl @@ -162,6 +162,9 @@ pod2man blib/script/ebshell > %{buildroo %{ebshare}/lib/EB/DB/Postgres.pm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.04.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Johan Vromans - 1.04.04-1 - Upgrade to upstream 1.04.04. - Obsolete script patch. From nbecker at fedoraproject.org Fri Jul 24 15:09:01 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 24 Jul 2009 15:09:01 +0000 (UTC) Subject: rpms/mercurial/F-11 sources,1.28,1.29 Message-ID: <20090724150901.F18E611C007C@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/mercurial/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8506 Modified Files: sources Log Message: forgot to commit sources Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mercurial/F-11/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 2 Jul 2009 11:01:23 -0000 1.28 +++ sources 24 Jul 2009 15:09:01 -0000 1.29 @@ -1 +1 @@ -d25a867e0ef835faafdbe1e82e239945 mercurial-1.3.tar.gz +6504f0dc32bd7ecf59a9f7f719432e76 mercurial-1.3.1.tar.gz From jkeating at fedoraproject.org Fri Jul 24 15:09:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:09:07 +0000 (UTC) Subject: rpms/ElectricFence/devel ElectricFence.spec,1.23,1.24 Message-ID: <20090724150907.ED3AF11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ElectricFence/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8587 Modified Files: ElectricFence.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ElectricFence.spec =================================================================== RCS file: /cvs/pkgs/rpms/ElectricFence/devel/ElectricFence.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ElectricFence.spec 23 Feb 2009 21:07:25 -0000 1.23 +++ ElectricFence.spec 24 Jul 2009 15:09:07 -0000 1.24 @@ -1,7 +1,7 @@ Summary: A debugger which detects memory allocation violations Name: ElectricFence Version: 2.2.2 -Release: 26%{?dist} +Release: 27%{?dist} License: GPLv2 Group: Development/Tools URL: http://perens.com/FreeSoftware/ElectricFence/ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.2-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.2-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:09:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:09:23 +0000 (UTC) Subject: rpms/Falcon/devel Falcon.spec,1.9,1.10 Message-ID: <20090724150923.06A3411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Falcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8754 Modified Files: Falcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Falcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/Falcon/devel/Falcon.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- Falcon.spec 23 Feb 2009 21:08:17 -0000 1.9 +++ Falcon.spec 24 Jul 2009 15:09:22 -0000 1.10 @@ -3,7 +3,7 @@ Name: Falcon Version: %{mainver}.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Falcon Programming Language Summary(it): Il linguaggio di programmazione Falcon @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/faltest* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.14.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.14.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:09:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:09:39 +0000 (UTC) Subject: rpms/FlightGear/devel FlightGear.spec,1.14,1.15 Message-ID: <20090724150939.4381C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/FlightGear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8978 Modified Files: FlightGear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: FlightGear.spec =================================================================== RCS file: /cvs/pkgs/rpms/FlightGear/devel/FlightGear.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- FlightGear.spec 11 May 2009 16:07:28 -0000 1.14 +++ FlightGear.spec 24 Jul 2009 15:09:39 -0000 1.15 @@ -1,7 +1,7 @@ Name: FlightGear Summary: The FlightGear Flight Simulator Version: 1.9.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Amusements/Games @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Fabrice Bellet 1.9.1-4 - Rebuilt to fix bz#498584 From jkeating at fedoraproject.org Fri Jul 24 15:09:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:09:55 +0000 (UTC) Subject: rpms/FlightGear-Atlas/devel FlightGear-Atlas.spec,1.3,1.4 Message-ID: <20090724150955.2BA3911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/FlightGear-Atlas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9218 Modified Files: FlightGear-Atlas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: FlightGear-Atlas.spec =================================================================== RCS file: /cvs/pkgs/rpms/FlightGear-Atlas/devel/FlightGear-Atlas.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- FlightGear-Atlas.spec 23 Feb 2009 21:10:08 -0000 1.3 +++ FlightGear-Atlas.spec 24 Jul 2009 15:09:54 -0000 1.4 @@ -1,7 +1,7 @@ Name: FlightGear-Atlas Summary: Flightgear map tools Version: 0.3.1 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/FlightGear/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:10:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:10:08 +0000 (UTC) Subject: rpms/FlightGear-data/devel FlightGear-data.spec,1.2,1.3 Message-ID: <20090724151008.CD8EA11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/FlightGear-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9377 Modified Files: FlightGear-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: FlightGear-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/FlightGear-data/devel/FlightGear-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- FlightGear-data.spec 23 Feb 2009 21:11:01 -0000 1.2 +++ FlightGear-data.spec 24 Jul 2009 15:10:08 -0000 1.3 @@ -1,7 +1,7 @@ Name: FlightGear-data Summary: FlightGear base scenery and data files Version: 1.9.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/FlightGear %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.9.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:10:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:10:26 +0000 (UTC) Subject: rpms/GConf2/devel GConf2.spec,1.109,1.110 Message-ID: <20090724151026.34E1A11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GConf2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9547 Modified Files: GConf2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GConf2.spec =================================================================== RCS file: /cvs/pkgs/rpms/GConf2/devel/GConf2.spec,v retrieving revision 1.109 retrieving revision 1.110 diff -u -p -r1.109 -r1.110 --- GConf2.spec 15 Jun 2009 00:20:09 -0000 1.109 +++ GConf2.spec 24 Jul 2009 15:10:25 -0000 1.110 @@ -7,7 +7,7 @@ Summary: A process-transparent configuration system Name: GConf2 Version: 2.26.2 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Base Source: http://download.gnome.org/sources/GConf/2.26/GConf-%{version}.tar.bz2 @@ -156,6 +156,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Matthias Clasen - 2.26.2-4 - Minor directory ownership cleanup From jkeating at fedoraproject.org Fri Jul 24 15:10:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:10:41 +0000 (UTC) Subject: rpms/GLC_Player/devel GLC_Player.spec,1.5,1.6 Message-ID: <20090724151041.ECB0511C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GLC_Player/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9712 Modified Files: GLC_Player.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GLC_Player.spec =================================================================== RCS file: /cvs/pkgs/rpms/GLC_Player/devel/GLC_Player.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- GLC_Player.spec 23 Mar 2009 18:15:14 -0000 1.5 +++ GLC_Player.spec 24 Jul 2009 15:10:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: GLC_Player Version: 2.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GLC_Player is an Open Source software used to view 3d models (OBJ Format) Group: Applications/Multimedia @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 kwizart < kwizart at gmail.com > - 2.0.0-1 - Update to 2.0.0 From jkeating at fedoraproject.org Fri Jul 24 15:10:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:10:56 +0000 (UTC) Subject: rpms/GLC_lib/devel GLC_lib.spec,1.5,1.6 Message-ID: <20090724151056.EA5C211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GLC_lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9867 Modified Files: GLC_lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GLC_lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/GLC_lib/devel/GLC_lib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- GLC_lib.spec 23 Mar 2009 18:10:10 -0000 1.5 +++ GLC_lib.spec 24 Jul 2009 15:10:56 -0000 1.6 @@ -1,6 +1,6 @@ Name: GLC_lib Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ class library for OpenGL application based on Qt 4 Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 kwizart < kwizart at gmail.com > - 1.1.0-1 - Update to 1.1.0 From jkeating at fedoraproject.org Fri Jul 24 15:11:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:11:11 +0000 (UTC) Subject: rpms/GMT/devel GMT.spec,1.8,1.9 Message-ID: <20090724151111.F299A11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GMT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10025 Modified Files: GMT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GMT.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT/devel/GMT.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- GMT.spec 17 Jul 2009 18:22:36 -0000 1.8 +++ GMT.spec 24 Jul 2009 15:11:11 -0000 1.9 @@ -8,7 +8,7 @@ Name: GMT Version: 4.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generic Mapping Tools Group: Applications/Engineering @@ -235,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Orion Poplawski 4.5.0-1 - Update to 4.5.0 From mtasaka at fedoraproject.org Fri Jul 24 15:11:36 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 15:11:36 +0000 (UTC) Subject: rpms/cbrpager/devel cbrpager.spec,1.9,1.10 Message-ID: <20090724151136.38DB811C007C@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/cbrpager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10188 Modified Files: cbrpager.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.9.20-2 - F-12: Mass rebuild Index: cbrpager.spec =================================================================== RCS file: /cvs/extras/rpms/cbrpager/devel/cbrpager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cbrpager.spec 29 May 2009 15:55:29 -0000 1.9 +++ cbrpager.spec 24 Jul 2009 15:11:35 -0000 1.10 @@ -1,6 +1,6 @@ Name: cbrpager Version: 0.9.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple comic book pager for Linux Group: Amusements/Graphics @@ -78,6 +78,9 @@ desktop-file-install \ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.9.20-2 +- F-12: Mass rebuild + * Sat May 30 2009 Mamoru Tasaka - 0.9.20-1 - 0.9.20 From jkeating at fedoraproject.org Fri Jul 24 15:29:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:29:51 +0000 (UTC) Subject: rpms/GMT-coastlines/devel GMT-coastlines.spec,1.6,1.7 Message-ID: <20090724152951.D089C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GMT-coastlines/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16716 Modified Files: GMT-coastlines.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GMT-coastlines.spec =================================================================== RCS file: /cvs/pkgs/rpms/GMT-coastlines/devel/GMT-coastlines.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- GMT-coastlines.spec 17 Jul 2009 22:16:25 -0000 1.6 +++ GMT-coastlines.spec 24 Jul 2009 15:29:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: GMT-coastlines Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Coastline data for GMT Group: Applications/Engineering @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Orion Poplawski 2.0-1 - Update to 2.0 From jkeating at fedoraproject.org Fri Jul 24 15:30:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:30:06 +0000 (UTC) Subject: rpms/GREYCstoration/devel GREYCstoration.spec,1.9,1.10 Message-ID: <20090724153006.C4ADA11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GREYCstoration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16890 Modified Files: GREYCstoration.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GREYCstoration.spec =================================================================== RCS file: /cvs/pkgs/rpms/GREYCstoration/devel/GREYCstoration.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- GREYCstoration.spec 24 Feb 2009 05:55:17 -0000 1.9 +++ GREYCstoration.spec 24 Jul 2009 15:30:06 -0000 1.10 @@ -1,6 +1,6 @@ Name: GREYCstoration Version: 2.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An image denoising and interpolation tool Group: Applications/Multimedia License: CeCILL @@ -136,6 +136,9 @@ fi %{_bindir}/%{name}_gui.tcl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Marc Bradshaw 2.8-4 - Fixed broken revision 3 From jkeating at fedoraproject.org Fri Jul 24 15:30:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:30:22 +0000 (UTC) Subject: rpms/GeoIP/devel GeoIP.spec,1.18,1.19 Message-ID: <20090724153022.3D5A211C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GeoIP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17035 Modified Files: GeoIP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GeoIP.spec =================================================================== RCS file: /cvs/pkgs/rpms/GeoIP/devel/GeoIP.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- GeoIP.spec 8 Mar 2009 11:26:02 -0000 1.18 +++ GeoIP.spec 24 Jul 2009 15:30:21 -0000 1.19 @@ -1,6 +1,6 @@ Name: GeoIP Version: 1.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C library for country/city/organization to IP address or hostname mapping Group: Development/Libraries License: LGPLv2+ @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_libdir}/libGeoIPUpdate.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Michael Fleming - 1.4.6-1 - Add geoiplookup6 man page - Update to 1.4.6 From jkeating at fedoraproject.org Fri Jul 24 15:30:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:30:41 +0000 (UTC) Subject: rpms/Glide3/devel Glide3.spec,1.21,1.22 Message-ID: <20090724153041.163DD11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Glide3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17181 Modified Files: Glide3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Glide3.spec =================================================================== RCS file: /cvs/pkgs/rpms/Glide3/devel/Glide3.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- Glide3.spec 23 Feb 2009 21:19:45 -0000 1.21 +++ Glide3.spec 24 Jul 2009 15:30:40 -0000 1.22 @@ -1,6 +1,6 @@ Name: Glide3 Version: 20050815 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Glide3 runtime for the 3Dfx Voodoo family of cards # Glide3 is x86/alpha/ia64/x86_64 only, ia64 is untested ExclusiveArch: %{ix86} ia64 x86_64 @@ -150,6 +150,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050815-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20050815-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:31:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:31:29 +0000 (UTC) Subject: rpms/GraphicsMagick/devel GraphicsMagick.spec,1.25,1.26 Message-ID: <20090724153129.32CDC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GraphicsMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17566 Modified Files: GraphicsMagick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GraphicsMagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/GraphicsMagick/devel/GraphicsMagick.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- GraphicsMagick.spec 1 Jul 2009 15:16:13 -0000 1.25 +++ GraphicsMagick.spec 24 Jul 2009 15:31:28 -0000 1.26 @@ -2,7 +2,7 @@ Summary: An ImageMagick fork, offering faster image generation and better quality Name: GraphicsMagick Version: 1.3.5 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/sourceforge/graphicsmagick/GraphicsMagick-%{version}.tar.bz2 @@ -235,6 +235,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Rex Dieter - 1.3.5-1 - GraphicsMagick-1.3.5, ABI break (#487605) - --without-libgs (for now, per upstream advice) From jkeating at fedoraproject.org Fri Jul 24 15:32:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:32:50 +0000 (UTC) Subject: rpms/Hermes/devel Hermes.spec,1.19,1.20 Message-ID: <20090724153250.EFA5211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Hermes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18136 Modified Files: Hermes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Hermes.spec =================================================================== RCS file: /cvs/pkgs/rpms/Hermes/devel/Hermes.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- Hermes.spec 8 Mar 2009 18:24:53 -0000 1.19 +++ Hermes.spec 24 Jul 2009 15:32:50 -0000 1.20 @@ -1,6 +1,6 @@ Name: Hermes Version: 1.3.3 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Pixel format conversion library Group: System Environment/Libraries License: LGPLv2+ @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 09 2009 Robert Scheck 1.3.3-16 - Solve the ppc64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Fri Jul 24 15:33:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:33:35 +0000 (UTC) Subject: rpms/ImageMagick/devel ImageMagick.spec,1.91,1.92 Message-ID: <20090724153335.5AACC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ImageMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18623 Modified Files: ImageMagick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ImageMagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/ImageMagick/devel/ImageMagick.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- ImageMagick.spec 15 Jun 2009 12:51:53 -0000 1.91 +++ ImageMagick.spec 24 Jul 2009 15:33:34 -0000 1.92 @@ -3,7 +3,7 @@ Name: ImageMagick Version: %{VER}.%{Patchlevel} -Release: 1%{?dist} +Release: 2%{?dist} Summary: An X application for displaying and manipulating images Group: Applications/Multimedia License: ImageMagick @@ -301,6 +301,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.5.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Hans de Goede 6.5.3.7-1 - New upstream release 6.5.3-7 From jkeating at fedoraproject.org Fri Jul 24 15:02:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:02:32 +0000 (UTC) Subject: rpms/CTL/devel CTL.spec,1.6,1.7 Message-ID: <20090724150232.E8F4411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/CTL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3142 Modified Files: CTL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: CTL.spec =================================================================== RCS file: /cvs/pkgs/rpms/CTL/devel/CTL.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- CTL.spec 23 Feb 2009 20:06:05 -0000 1.6 +++ CTL.spec 24 Jul 2009 15:02:32 -0000 1.7 @@ -1,6 +1,6 @@ Name: CTL Version: 1.4.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The Color Transformation Language Group: System Environment/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/CtlManual.pdf doc/CtlManual.doc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:02:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:02:10 +0000 (UTC) Subject: rpms/CGAL/devel CGAL.spec,1.24,1.25 Message-ID: <20090724150210.AE2F211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/CGAL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2882 Modified Files: CGAL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: CGAL.spec =================================================================== RCS file: /cvs/pkgs/rpms/CGAL/devel/CGAL.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- CGAL.spec 26 Feb 2009 14:16:46 -0000 1.24 +++ CGAL.spec 24 Jul 2009 15:02:10 -0000 1.25 @@ -2,7 +2,7 @@ Name: CGAL Version: 3.3.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Computational Geometry Algorithms Library Group: System Environment/Libraries @@ -270,6 +270,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 - 3.3.1-13 - noarch CGAL-demos-source, which is purely data. From jkeating at fedoraproject.org Fri Jul 24 15:33:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:33:52 +0000 (UTC) Subject: rpms/Inventor/devel Inventor.spec,1.48,1.49 Message-ID: <20090724153352.723CB11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Inventor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18842 Modified Files: Inventor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Inventor.spec =================================================================== RCS file: /cvs/pkgs/rpms/Inventor/devel/Inventor.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- Inventor.spec 23 Feb 2009 21:27:08 -0000 1.48 +++ Inventor.spec 24 Jul 2009 15:33:52 -0000 1.49 @@ -6,7 +6,7 @@ Name: Inventor Version: 2.1.5 -Release: 35%{?dist} +Release: 36%{?dist} Summary: SGI Open Inventor (TM) @@ -344,6 +344,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/Inventor/examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.5-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.1.5-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:34:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:34:10 +0000 (UTC) Subject: rpms/Io-language/devel Io-language.spec,1.12,1.13 Message-ID: <20090724153410.D723911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Io-language/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19193 Modified Files: Io-language.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Io-language.spec =================================================================== RCS file: /cvs/pkgs/rpms/Io-language/devel/Io-language.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- Io-language.spec 23 Feb 2009 21:28:01 -0000 1.12 +++ Io-language.spec 24 Jul 2009 15:34:10 -0000 1.13 @@ -9,7 +9,7 @@ Name: Io-language Version: 20071010 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Io is a small, prototype-based programming language Group: System Environment/Libraries License: BSD @@ -215,6 +215,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20071010-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20071010-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:34:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:34:31 +0000 (UTC) Subject: rpms/JSDoc/devel JSDoc.spec,1.5,1.6 Message-ID: <20090724153431.1BF7911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/JSDoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19653 Modified Files: JSDoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: JSDoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/JSDoc/devel/JSDoc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- JSDoc.spec 23 Feb 2009 21:28:53 -0000 1.5 +++ JSDoc.spec 24 Jul 2009 15:34:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: JSDoc Version: 1.10.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Produces javadoc-style documentation from JavaScript sourcefiles Group: Development/Tools # No license attribution in code, only COPYING. @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/jsdoc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.10.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:34:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:34:48 +0000 (UTC) Subject: rpms/Judy/devel Judy.spec,1.2,1.3 Message-ID: <20090724153448.AB75F11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Judy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20021 Modified Files: Judy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Judy.spec =================================================================== RCS file: /cvs/pkgs/rpms/Judy/devel/Judy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- Judy.spec 23 Feb 2009 21:53:42 -0000 1.2 +++ Judy.spec 24 Jul 2009 15:34:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: Judy Version: 1.0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: General purpose dynamic array Group: System Environment/Libraries @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:35:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:35:07 +0000 (UTC) Subject: rpms/KoboDeluxe/devel KoboDeluxe.spec,1.9,1.10 Message-ID: <20090724153507.45EA711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/KoboDeluxe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20210 Modified Files: KoboDeluxe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: KoboDeluxe.spec =================================================================== RCS file: /cvs/pkgs/rpms/KoboDeluxe/devel/KoboDeluxe.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- KoboDeluxe.spec 9 Mar 2009 10:18:08 -0000 1.9 +++ KoboDeluxe.spec 24 Jul 2009 15:35:06 -0000 1.10 @@ -1,6 +1,6 @@ Name: KoboDeluxe Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 3'rd person scrolling 2D shooter Group: Amusements/Games License: GPLv2+ @@ -93,6 +93,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Hans de Goede 0.5.1-4 - Fix building with gcc 4.4 From jkeating at fedoraproject.org Fri Jul 24 15:35:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:35:24 +0000 (UTC) Subject: rpms/L-function/devel L-function.spec,1.1,1.2 Message-ID: <20090724153524.8039611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/L-function/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20385 Modified Files: L-function.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: L-function.spec =================================================================== RCS file: /cvs/pkgs/rpms/L-function/devel/L-function.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- L-function.spec 22 Mar 2009 21:48:20 -0000 1.1 +++ L-function.spec 24 Jul 2009 15:35:24 -0000 1.2 @@ -1,6 +1,6 @@ Name: L-function Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: L-function calculator Group: Development/Libraries License: GPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Conrad Meyer - 1.2-3 - Add missing BR on pari-devel. From jkeating at fedoraproject.org Fri Jul 24 15:35:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:35:42 +0000 (UTC) Subject: rpms/LabPlot/devel LabPlot.spec,1.15,1.16 Message-ID: <20090724153542.38C2011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/LabPlot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20577 Modified Files: LabPlot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: LabPlot.spec =================================================================== RCS file: /cvs/pkgs/rpms/LabPlot/devel/LabPlot.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- LabPlot.spec 23 Feb 2009 21:55:35 -0000 1.15 +++ LabPlot.spec 24 Jul 2009 15:35:42 -0000 1.16 @@ -1,6 +1,6 @@ Name: LabPlot Version: 1.6.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Data Analysis and Visualization License: GPLv2+ From jkeating at fedoraproject.org Fri Jul 24 15:35:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:35:58 +0000 (UTC) Subject: rpms/LinLog/devel LinLog.spec,1.4,1.5 Message-ID: <20090724153558.95B3211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/LinLog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20761 Modified Files: LinLog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: LinLog.spec =================================================================== RCS file: /cvs/pkgs/rpms/LinLog/devel/LinLog.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- LinLog.spec 23 Feb 2009 21:56:30 -0000 1.4 +++ LinLog.spec 24 Jul 2009 15:35:58 -0000 1.5 @@ -1,6 +1,6 @@ Name: LinLog Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A ham radio logbook for Linux Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/*.sql %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:36:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:36:21 +0000 (UTC) Subject: rpms/LuxRender/devel LuxRender.spec,1.1,1.2 Message-ID: <20090724153621.1DA8311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/LuxRender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20966 Modified Files: LuxRender.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: LuxRender.spec =================================================================== RCS file: /cvs/pkgs/rpms/LuxRender/devel/LuxRender.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- LuxRender.spec 18 May 2009 10:49:21 -0000 1.1 +++ LuxRender.spec 24 Jul 2009 15:36:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: LuxRender Version: 0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lux Renderer, an unbiased rendering system Group: Applications/Multimedia @@ -184,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 kwizart < kwizart at gmail.com > - 0.5-4 - Move %%doc from -lib to main - Remove Requires main from -devel-docs From jkeating at fedoraproject.org Fri Jul 24 15:36:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:36:45 +0000 (UTC) Subject: rpms/MAKEDEV/devel MAKEDEV.spec,1.66,1.67 Message-ID: <20090724153645.1A71311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MAKEDEV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21179 Modified Files: MAKEDEV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MAKEDEV.spec =================================================================== RCS file: /cvs/pkgs/rpms/MAKEDEV/devel/MAKEDEV.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- MAKEDEV.spec 8 Mar 2009 18:46:16 -0000 1.66 +++ MAKEDEV.spec 24 Jul 2009 15:36:44 -0000 1.67 @@ -1,6 +1,6 @@ Name: MAKEDEV Version: 3.24 -Release: 3 +Release: 4 Group: System Environment/Base License: GPLv2 # This is a Red Hat maintained package which is specific to @@ -53,6 +53,9 @@ exit 0 %config(noreplace) %{_sysconfdir}/makedev.d %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.24-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Robert Scheck 3.24-3 - Hardcoded temporarily the release tag in package source tag From jkeating at fedoraproject.org Fri Jul 24 15:37:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:37:03 +0000 (UTC) Subject: rpms/Macaulay2/devel Macaulay2.spec,1.50,1.51 Message-ID: <20090724153703.0597F11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Macaulay2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21342 Modified Files: Macaulay2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Macaulay2.spec =================================================================== RCS file: /cvs/pkgs/rpms/Macaulay2/devel/Macaulay2.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- Macaulay2.spec 17 Apr 2009 17:47:10 -0000 1.50 +++ Macaulay2.spec 24 Jul 2009 15:37:02 -0000 1.51 @@ -7,7 +7,7 @@ Summary: System for algebraic geometry and commutative algebra Name: Macaulay2 Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Engineering @@ -203,6 +203,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Rex Dieter - 1.2-4 - rebuild for ntl-devel (shared) From jkeating at fedoraproject.org Fri Jul 24 15:37:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:37:19 +0000 (UTC) Subject: rpms/Maelstrom/devel Maelstrom.spec,1.21,1.22 Message-ID: <20090724153719.9E92511C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Maelstrom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21501 Modified Files: Maelstrom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Maelstrom.spec =================================================================== RCS file: /cvs/pkgs/rpms/Maelstrom/devel/Maelstrom.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- Maelstrom.spec 23 Feb 2009 21:59:17 -0000 1.21 +++ Maelstrom.spec 24 Jul 2009 15:37:19 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Space combat game Name: Maelstrom Version: 3.0.6 -Release: 17 +Release: 18 License: GPLv2+ Group: Amusements/Games Source0: http://www.devolution.com/~slouken/Maelstrom/src/Maelstrom-%{version}.tar.gz @@ -86,6 +86,9 @@ fi %config(noreplace) %attr(0664,root,games) %{_localstatedir}/lib/games/Maelstrom-Scores %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.6-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 3.0.6-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:37:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:37:36 +0000 (UTC) Subject: rpms/MagicPoint/devel MagicPoint.spec,1.11,1.12 Message-ID: <20090724153736.648F811C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MagicPoint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21683 Modified Files: MagicPoint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MagicPoint.spec =================================================================== RCS file: /cvs/pkgs/rpms/MagicPoint/devel/MagicPoint.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- MagicPoint.spec 13 May 2009 20:15:56 -0000 1.11 +++ MagicPoint.spec 24 Jul 2009 15:37:36 -0000 1.12 @@ -1,6 +1,6 @@ Name: MagicPoint Version: 1.11b -Release: 9%{?dist} +Release: 10%{?dist} Summary: X based presentation software Group: Applications/Productivity License: BSD @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11b-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Adam Jackson 1.11b-9 - Use freetype, not freetype1, which is old and broken. From jkeating at fedoraproject.org Fri Jul 24 15:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:37:50 +0000 (UTC) Subject: rpms/Mayavi/devel Mayavi.spec,1.1,1.2 Message-ID: <20090724153750.ECADD11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Mayavi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21843 Modified Files: Mayavi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Mayavi.spec =================================================================== RCS file: /cvs/pkgs/rpms/Mayavi/devel/Mayavi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- Mayavi.spec 1 Jul 2009 06:32:03 -0000 1.1 +++ Mayavi.spec 24 Jul 2009 15:37:50 -0000 1.2 @@ -3,7 +3,7 @@ Name: Mayavi Version: 3.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Scientific data 3-dimensional visualizer Group: Applications/Engineering @@ -178,6 +178,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Rakesh Pandit 3.2.0-6 - Fixed BR, and removed .template & .static directories from docs/source - Included missing icon from .desktop From jkeating at fedoraproject.org Fri Jul 24 15:38:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:38:08 +0000 (UTC) Subject: rpms/MegaMek/devel MegaMek.spec,1.5,1.6 Message-ID: <20090724153808.EE10011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MegaMek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22017 Modified Files: MegaMek.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MegaMek.spec =================================================================== RCS file: /cvs/pkgs/rpms/MegaMek/devel/MegaMek.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- MegaMek.spec 23 Feb 2009 22:01:02 -0000 1.5 +++ MegaMek.spec 24 Jul 2009 15:38:08 -0000 1.6 @@ -1,7 +1,7 @@ # camel-case name at the request of the upstream maintainers. Name: MegaMek Version: 0.30.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A portable, network-enabled BattleTech engine Group: Amusements/Games @@ -154,6 +154,9 @@ fi %attr(-,root,root) %{_libdir}/gcj/%{name}/MegaMek.jar.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.30.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.30.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:38:27 +0000 (UTC) Subject: rpms/Miro/devel Miro.spec,1.57,1.58 Message-ID: <20090724153827.81C7411C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Miro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22230 Modified Files: Miro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Miro.spec =================================================================== RCS file: /cvs/pkgs/rpms/Miro/devel/Miro.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- Miro.spec 19 Jul 2009 10:20:31 -0000 1.57 +++ Miro.spec 24 Jul 2009 15:38:26 -0000 1.58 @@ -5,7 +5,7 @@ Name: Miro Version: 2.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Miro - Internet TV Player Group: Applications/Multimedia @@ -95,6 +95,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Alex Lancaster - 2.0.5-2 - Rebuild against newer gecko From jkeating at fedoraproject.org Fri Jul 24 15:38:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:38:44 +0000 (UTC) Subject: rpms/MochiKit/devel MochiKit.spec,1.6,1.7 Message-ID: <20090724153844.1BD0A11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MochiKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22419 Modified Files: MochiKit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MochiKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/MochiKit/devel/MochiKit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- MochiKit.spec 23 Feb 2009 22:02:53 -0000 1.6 +++ MochiKit.spec 24 Jul 2009 15:38:43 -0000 1.7 @@ -1,6 +1,6 @@ Name: MochiKit Version: 1.4.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A lightweight JavaScript library Group: Applications/Internet @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:39:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:39:01 +0000 (UTC) Subject: rpms/ModemManager/devel ModemManager.spec,1.1,1.2 Message-ID: <20090724153901.327EA11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ModemManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22616 Modified Files: ModemManager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ModemManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/ModemManager/devel/ModemManager.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ModemManager.spec 12 Jul 2009 01:23:38 -0000 1.1 +++ ModemManager.spec 24 Jul 2009 15:39:00 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Mobile broadband modem management service Name: ModemManager Version: 0.2 -Release: 1.%{snapshot}%{?dist} +Release: 2.%{snapshot}%{?dist} # # Source from git://anongit.freedesktop.org/ModemManager/ModemManager # tarball built with: @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT /lib/udev/rules.d/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-2.20090707 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Dan Williams - 0.2-1.20090707 - Fix source repo location - Fix directory ownership From jkeating at fedoraproject.org Fri Jul 24 15:39:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:39:16 +0000 (UTC) Subject: rpms/MyPasswordSafe/devel MyPasswordSafe.spec,1.9,1.10 Message-ID: <20090724153916.D05A811C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MyPasswordSafe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22798 Modified Files: MyPasswordSafe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MyPasswordSafe.spec =================================================================== RCS file: /cvs/pkgs/rpms/MyPasswordSafe/devel/MyPasswordSafe.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- MyPasswordSafe.spec 25 Apr 2009 12:10:57 -0000 1.9 +++ MyPasswordSafe.spec 24 Jul 2009 15:39:16 -0000 1.10 @@ -2,7 +2,7 @@ Name: MyPasswordSafe Version: 0.6.7 -Release: 8.%{datever}%{?dist} +Release: 9.%{datever}%{?dist} Summary: A graphical password management tool Group: Applications/Databases @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-MyPasswordSafe.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.7-9.20061216 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Milos Jakubicek - 0.6.7-8.20061216 - Fix FTBFS: added MyPasswordSafe-20090425-gcc44.patch From jkeating at fedoraproject.org Fri Jul 24 15:39:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:39:36 +0000 (UTC) Subject: rpms/MySQL-python/devel MySQL-python.spec,1.39,1.40 Message-ID: <20090724153936.020C311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/MySQL-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23004 Modified Files: MySQL-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: MySQL-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/MySQL-python/devel/MySQL-python.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- MySQL-python.spec 28 Jun 2009 16:37:37 -0000 1.39 +++ MySQL-python.spec 24 Jul 2009 15:39:35 -0000 1.40 @@ -1,7 +1,7 @@ Summary: An interface to MySQL Name: MySQL-python Version: 1.2.3 -Release: 0.1.c1%{?dist} +Release: 0.2.c1%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://sourceforge.net/projects/mysql-python/ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %dir /usr/%{_lib}/python?.?/site-packages/MySQLdb/constants %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-0.2.c1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Tom Lane 1.2.3-0.1.c1 - Update to release candidate 1.2.3c1 for better mysql 5.1 and python 2.6 compatibility From jkeating at fedoraproject.org Fri Jul 24 15:39:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:39:53 +0000 (UTC) Subject: rpms/NaturalDocs/devel NaturalDocs.spec,1.2,1.3 Message-ID: <20090724153953.6F2D611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NaturalDocs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23177 Modified Files: NaturalDocs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NaturalDocs.spec =================================================================== RCS file: /cvs/pkgs/rpms/NaturalDocs/devel/NaturalDocs.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- NaturalDocs.spec 23 Feb 2009 22:05:30 -0000 1.2 +++ NaturalDocs.spec 24 Jul 2009 15:39:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: NaturalDocs Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Documentation generator for multiple programming languages Group: Development/Tools @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:40:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:40:12 +0000 (UTC) Subject: rpms/NetworkManager/devel NetworkManager.spec,1.275,1.276 Message-ID: <20090724154012.02C6611C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23369 Modified Files: NetworkManager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager/devel/NetworkManager.spec,v retrieving revision 1.275 retrieving revision 1.276 diff -u -p -r1.275 -r1.276 --- NetworkManager.spec 9 Jul 2009 17:54:21 -0000 1.275 +++ NetworkManager.spec 24 Jul 2009 15:40:11 -0000 1.276 @@ -16,7 +16,7 @@ Name: NetworkManager Summary: Network connection manager and user applications Epoch: 1 Version: 0.7.1 -Release: 8%{snapshot}%{?dist} +Release: 9%{snapshot}%{?dist} Group: System Environment/Base License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ @@ -327,6 +327,9 @@ fi %{_datadir}/gtk-doc/html/libnm-util/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.1-9.git20090708 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Dan Williams - 0.7.1-8.git20090708 - applet: fix certificate validation in hidden wifi networks dialog (rh #508207) From jkeating at fedoraproject.org Fri Jul 24 15:40:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:40:30 +0000 (UTC) Subject: rpms/NetworkManager-openconnect/devel NetworkManager-openconnect.spec, 1.12, 1.13 Message-ID: <20090724154030.378EA11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-openconnect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23546 Modified Files: NetworkManager-openconnect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-openconnect.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openconnect/devel/NetworkManager-openconnect.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- NetworkManager-openconnect.spec 1 Jun 2009 00:50:32 -0000 1.12 +++ NetworkManager-openconnect.spec 24 Jul 2009 15:40:29 -0000 1.13 @@ -8,7 +8,7 @@ Summary: NetworkManager VPN integration for openconnect Name: NetworkManager-openconnect Version: 0.7.0.99 -Release: 5%{svn_snapshot}%{?dist} +Release: 6%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -108,6 +108,9 @@ fi %{_datadir}/gnome-vpn-properties/openconnect/nm-openconnect-dialog.glade %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0.99-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 David Woodhouse 1:0.7.0.99-5 - Accept 'pem_passphrase_fsid' key in gconf From jkeating at fedoraproject.org Fri Jul 24 15:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:40:49 +0000 (UTC) Subject: rpms/NetworkManager-openvpn/devel NetworkManager-openvpn.spec, 1.34, 1.35 Message-ID: <20090724154049.1C99411C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-openvpn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23723 Modified Files: NetworkManager-openvpn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-openvpn/devel/NetworkManager-openvpn.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- NetworkManager-openvpn.spec 14 Jul 2009 10:59:41 -0000 1.34 +++ NetworkManager-openvpn.spec 24 Jul 2009 15:40:48 -0000 1.35 @@ -10,7 +10,7 @@ Summary: NetworkManager VPN plugin for O Name: NetworkManager-openvpn Epoch: 1 Version: 0.7.1 -Release: 1%{snapshot}%{?dist} +Release: 2%{snapshot}%{?dist} License: GPLv2+ URL: http://www.gnome.org/projects/NetworkManager/ Group: System Environment/Base @@ -103,6 +103,9 @@ fi %dir %{_datadir}/gnome-vpn-properties/openvpn %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.1-2.git20090714 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Dan Williams - 1:0.7.1-1.20090714 - Fix a misconfiguration with 'subnet' topology - Fix detection of password requests by the OpenVPN management interface From jkeating at fedoraproject.org Fri Jul 24 15:41:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:41:08 +0000 (UTC) Subject: rpms/NetworkManager-pptp/devel NetworkManager-pptp.spec,1.11,1.12 Message-ID: <20090724154108.CDB3E11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-pptp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23930 Modified Files: NetworkManager-pptp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-pptp.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-pptp/devel/NetworkManager-pptp.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- NetworkManager-pptp.spec 5 Mar 2009 19:52:23 -0000 1.11 +++ NetworkManager-pptp.spec 24 Jul 2009 15:41:08 -0000 1.12 @@ -10,7 +10,7 @@ Summary: NetworkManager VPN plugin for Name: NetworkManager-pptp Epoch: 1 Version: 0.7.0.99 -Release: 1%{svn_snapshot}%{?dist} +Release: 2%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -103,6 +103,9 @@ fi %dir %{_datadir}/gnome-vpn-properties/pptp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.0.99-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Dan Williams 1:0.7.0.99-1 - Update to 0.7.1rc3 From jkeating at fedoraproject.org Fri Jul 24 15:41:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:41:25 +0000 (UTC) Subject: rpms/NetworkManager-vpnc/devel NetworkManager-vpnc.spec,1.52,1.53 Message-ID: <20090724154125.3A0C311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/NetworkManager-vpnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24114 Modified Files: NetworkManager-vpnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: NetworkManager-vpnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/NetworkManager-vpnc/devel/NetworkManager-vpnc.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- NetworkManager-vpnc.spec 5 Mar 2009 11:09:20 -0000 1.52 +++ NetworkManager-vpnc.spec 24 Jul 2009 15:41:25 -0000 1.53 @@ -10,7 +10,7 @@ Summary: NetworkManager VPN plugin for Name: NetworkManager-vpnc Epoch: 1 Version: 0.7.0.99 -Release: 1%{svn_snapshot}%{?dist} +Release: 2%{svn_snapshot}%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.gnome.org/projects/NetworkManager/ @@ -97,6 +97,9 @@ fi %dir %{_datadir}/gnome-vpn-properties/vpnc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.7.0.99-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Dan Williams 1:0.7.0.99-1 - Update to 0.7.1rc3 From pkgdb at fedoraproject.org Fri Jul 24 15:41:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 15:41:36 +0000 Subject: [pkgdb] ibus-table-xinhua was added for cchance Message-ID: <20090724154136.BFE2810F8AC@bastion2.fedora.phx.redhat.com> tibbs has added Package ibus-table-xinhua with summary Xin Hua table of IBus Table tibbs has approved Package ibus-table-xinhua tibbs has added a Fedora devel branch for ibus-table-xinhua with an owner of cchance tibbs has approved ibus-table-xinhua in Fedora devel tibbs has approved Package ibus-table-xinhua tibbs has set commit to Approved for 107427 on ibus-table-xinhua (Fedora devel) tibbs has set checkout to Approved for 107427 on ibus-table-xinhua (Fedora devel) tibbs has set build to Approved for 107427 on ibus-table-xinhua (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-xinhua From pkgdb at fedoraproject.org Fri Jul 24 15:41:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 15:41:38 +0000 Subject: [pkgdb] ibus-table-xinhua summary updated by tibbs Message-ID: <20090724154138.6674810F8AF@bastion2.fedora.phx.redhat.com> tibbs set package ibus-table-xinhua summary to Xin Hua table of IBus Table To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-xinhua From pkgdb at fedoraproject.org Fri Jul 24 15:41:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 15:41:38 +0000 Subject: [pkgdb] ibus-table-xinhua (Fedora, 11) updated by tibbs Message-ID: <20090724154138.85B0610F8B4@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on ibus-table-xinhua (Fedora devel) for i18n-team tibbs approved watchcommits on ibus-table-xinhua (Fedora devel) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-xinhua From pkgdb at fedoraproject.org Fri Jul 24 15:41:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 15:41:38 +0000 Subject: [pkgdb] ibus-table-xinhua (Fedora, 11) updated by tibbs Message-ID: <20090724154138.A325C10F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ibus-table-xinhua tibbs has set commit to Approved for 107427 on ibus-table-xinhua (Fedora 11) tibbs has set checkout to Approved for 107427 on ibus-table-xinhua (Fedora 11) tibbs has set build to Approved for 107427 on ibus-table-xinhua (Fedora 11) tibbs approved watchbugzilla on ibus-table-xinhua (Fedora 11) for i18n-team tibbs approved watchcommits on ibus-table-xinhua (Fedora 11) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-xinhua From rdieter at fedoraproject.org Fri Jul 24 15:41:40 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 15:41:40 +0000 (UTC) Subject: rpms/kipi-plugins/F-10 .cvsignore, 1.28, 1.29 kipi-plugins.spec, 1.80, 1.81 sources, 1.28, 1.29 Message-ID: <20090724154140.18F5D11C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kipi-plugins/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24328 Modified Files: .cvsignore kipi-plugins.spec sources Log Message: * Fri Jul 24 2009 Rex Dieter 0.5.0-1 - kipi-plugins-0.5.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-10/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 12 May 2009 10:49:26 -0000 1.28 +++ .cvsignore 24 Jul 2009 15:41:39 -0000 1.29 @@ -1 +1 @@ -kipi-plugins-0.3.0.tar.bz2 +kipi-plugins-0.5.0.tar.bz2 Index: kipi-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-10/kipi-plugins.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- kipi-plugins.spec 27 May 2009 03:30:51 -0000 1.80 +++ kipi-plugins.spec 24 Jul 2009 15:41:39 -0000 1.81 @@ -2,8 +2,8 @@ Name: kipi-plugins Summary: Plugins to use with Kipi -Version: 0.3.0 -Release: 1%{?dist}.1 +Version: 0.5.0 +Release: 1%{?dist} License: GPLv2+ and Adobe Group: Applications/Multimedia @@ -11,6 +11,10 @@ Url: http://www.kipi-plugins.org/ Source0: http://downloads.sourceforge.net/kipi/kipi-plugins-%{version}%{?beta:-%{beta}}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +## upstreamable patches +Patch50: kipi-plugins-0.4.0-dt_validation.patch + +BuildRequires: desktop-file-utils BuildRequires: exiv2-devel ## DNG converter BuildRequires: expat-devel @@ -22,7 +26,7 @@ BuildRequires: kdelibs4-devel >= 4.2.0 %global kdelibs4_version %((kde4-config --version 2>/dev/null || echo "KDE 4.2.0") | grep ^KDE | cut -d' ' -f2) Requires: kdelibs4 >= %{kdelibs4_version} BuildRequires: kdepimlibs-devel -BuildRequires: libgpod-devel >= 0.7.0 +BuildRequires: libgpod-devel >= 0.7.0 BuildRequires: libkipi-devel >= 0.3.0 BuildRequires: libkdcraw-devel >= 0.4.0-2 BuildRequires: libkexiv2-devel >= 0.5.0 @@ -35,8 +39,8 @@ BuildRequires: expat-devel ## RemoveRedeye BuildRequires: opencv-devel -Requires(post): /sbin/ldconfig xdg-utils -Requires(postun): /sbin/ldconfig xdg-utils +Requires(post): /sbin/ldconfig +Requires(postun): /sbin/ldconfig ## jpeglossless plugin Requires: ImageMagick @@ -69,6 +73,8 @@ PrintWizard : print images in var %prep %setup -q -n %{name}-%{version}%{?beta:-%{beta}} +%patch50 -p1 -b .dt_validation + %build mkdir -p %{_target_platform} @@ -100,28 +106,41 @@ cat *.lang > %{name}-all.lang rm -f %{buildroot}%{_kde4_libdir}/lib*.so +%check +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/dngconverter.desktop +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/kipiplugins.desktop + + %clean rm -rf %{buildroot} %post -/sbin/ldconfig ||: -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -xdg-icon-resource forceupdate --theme oxygen 2> /dev/null || : -xdg-desktop-menu forceupdate 2> /dev/null || : +/sbin/ldconfig +touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null ||: +touch --no-create %{_kde4_iconsdir}/oxygen &> /dev/null ||: %postun -/sbin/ldconfig ||: -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -xdg-icon-resource forceupdate --theme oxygen 2> /dev/null || : -xdg-desktop-menu forceupdate 2> /dev/null || : +/sbin/ldconfig +if [ $1 -eq 0 ] ; then + update-desktop-database -q &> /dev/null + touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null ||: + touch --no-create %{_kde4_iconsdir}/oxygen &> /dev/null ||: + gtk-update-icon-cache %{_kde4_iconsdir}/hicolor >& /dev/null ||: + gtk-update-icon-cache %{_kde4_iconsdir}/oxygen >& /dev/null ||: +fi + +%posttrans +update-desktop-database -q &> /dev/null +gtk-update-icon-cache %{_kde4_iconsdir}/hicolor >& /dev/null ||: +gtk-update-icon-cache %{_kde4_iconsdir}/oxygen >& /dev/null ||: %files -f %{name}-all.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO %{_kde4_bindir}/dngconverter -%{_kde4_libdir}/libkipiplugins.so.* +%{_kde4_libdir}/libkipiplugins.so.1* %{_kde4_libdir}/kde4/kipiplugin_acquireimages.so %{_kde4_libdir}/kde4/kipiplugin_advancedslideshow.so %{_kde4_libdir}/kde4/kipiplugin_batchprocessimages.so @@ -153,17 +172,25 @@ xdg-desktop-menu forceupdate 2> /dev/nul %{_kde4_appsdir}/kipiplugin_imageviewer/ %{_kde4_appsdir}/kipiplugin_metadataedit/ %{_kde4_appsdir}/kipiplugin_picasawebexport/ +%{_kde4_appsdir}/kipiplugin_printimages/ %{_kde4_appsdir}/kipiplugin_removeredeyes/ %{_kde4_appsdir}/kipiplugin_smug/ %{_kde4_datadir}/applications/kde4/dngconverter.desktop +%{_kde4_datadir}/applications/kde4/kipiplugins.desktop %{_kde4_datadir}/kde4/services/*.desktop %{_kde4_iconsdir}/hicolor/*/*/* %{_kde4_iconsdir}/oxygen/*/*/* %changelog -* Tue May 26 2009 Todd Zullinger - 0.3.0-1.1 -- Rebuild against libgpod-0.7.0 +* Fri Jul 24 2009 Rex Dieter 0.5.0-1 +- kipi-plugins-0.5.0 + +* Fri Jul 03 2009 Rex Dieter 0.4.0-1 +- kipi-plugins-0.4.0 + +* Fri May 22 2009 Rex Dieter 0.3.0-2 +- optimize scriptlets * Tue May 12 2009 Luk?? Tinkl - 0.3.0-1 - latest upstream bugfix release 0.3.0, many fixes Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-10/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 12 May 2009 10:49:26 -0000 1.28 +++ sources 24 Jul 2009 15:41:39 -0000 1.29 @@ -1 +1 @@ -6fa2c7dae38055fb50d90bad458c3412 kipi-plugins-0.3.0.tar.bz2 +f82c95b85f2b434fd03b99451ec5081e kipi-plugins-0.5.0.tar.bz2 From jkeating at fedoraproject.org Fri Jul 24 15:41:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:41:47 +0000 (UTC) Subject: rpms/ORBit/devel ORBit.spec,1.10,1.11 Message-ID: <20090724154147.316C611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ORBit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24433 Modified Files: ORBit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ORBit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ORBit/devel/ORBit.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ORBit.spec 21 Apr 2009 10:38:36 -0000 1.10 +++ ORBit.spec 24 Jul 2009 15:41:47 -0000 1.11 @@ -1,7 +1,7 @@ Summary: CORBA Object Request Broker for GNOME-1 compatibility Name: ORBit Version: 0.5.17 -Release: 26%{?dist} +Release: 27%{?dist} Epoch: 1 URL: http://orbit-resource.sourceforge.net/ Source: http://ftp.acc.umu.se/pub/gnome/sources/ORBit/0.5/ORBit-0.5.17.tar.bz2 @@ -137,6 +137,9 @@ with GNOME-1 applications. %{_datadir}/aclocal/libIDL.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.5.17-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Paul Howarth 1:0.5.17-26 - Fix undefined non-weak symbols in libORBit and libORBitCosNaming - Use an alternative approach to rpath-fixing - hacking the supplied libtool From jkeating at fedoraproject.org Fri Jul 24 15:42:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:42:03 +0000 (UTC) Subject: rpms/ORBit2/devel ORBit2.spec,1.75,1.76 Message-ID: <20090724154203.AC8DC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ORBit2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24622 Modified Files: ORBit2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ORBit2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ORBit2/devel/ORBit2.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- ORBit2.spec 16 Mar 2009 03:55:18 -0000 1.75 +++ ORBit2.spec 24 Jul 2009 15:42:03 -0000 1.76 @@ -4,7 +4,7 @@ Summary: A high-performance CORBA Object Request Broker Name: ORBit2 Version: 2.14.17 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://download.gnome.org/sources/ORBit2/2.14/%{name}-%{version}.tar.bz2 Group: System Environment/Daemons License: LGPLv2+ and GPLv2+ @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.14.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Matthias Clasen - 2.14.17-1 - 2.14.17 From jkeating at fedoraproject.org Fri Jul 24 15:42:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:42:18 +0000 (UTC) Subject: rpms/OmegaT/devel OmegaT.spec,1.4,1.5 Message-ID: <20090724154218.D113611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OmegaT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24821 Modified Files: OmegaT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OmegaT.spec =================================================================== RCS file: /cvs/pkgs/rpms/OmegaT/devel/OmegaT.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- OmegaT.spec 23 Feb 2009 22:13:01 -0000 1.4 +++ OmegaT.spec 24 Jul 2009 15:42:18 -0000 1.5 @@ -6,7 +6,7 @@ Name: OmegaT %define namer omegat Summary: Computer Aid Translation tool Version: 1.7.3_04 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://downloads.sourceforge.net/omegat/%{name}_%{version}_Source.zip Source1: OmegaT-ant.properties Source2: OmegaT-lib-mnemonics-build.xml @@ -181,6 +181,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.3_04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.7.3_04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:42:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:42:37 +0000 (UTC) Subject: rpms/OpenEXR/devel OpenEXR.spec,1.26,1.27 Message-ID: <20090724154237.2C2FE11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OpenEXR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25073 Modified Files: OpenEXR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/devel/OpenEXR.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- OpenEXR.spec 23 Feb 2009 22:13:54 -0000 1.26 +++ OpenEXR.spec 24 Jul 2009 15:42:36 -0000 1.27 @@ -6,7 +6,7 @@ Name: OpenEXR Version: 1.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:42:52 +0000 (UTC) Subject: rpms/OpenEXR_CTL/devel OpenEXR_CTL.spec,1.6,1.7 Message-ID: <20090724154252.72C3511C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OpenEXR_CTL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25286 Modified Files: OpenEXR_CTL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OpenEXR_CTL.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR_CTL/devel/OpenEXR_CTL.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- OpenEXR_CTL.spec 23 Feb 2009 22:14:54 -0000 1.6 +++ OpenEXR_CTL.spec 24 Jul 2009 15:42:52 -0000 1.7 @@ -1,6 +1,6 @@ Name: OpenEXR_CTL Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A simplified OpenEXR interface to CTL Group: System Environment/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 15:43:02 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 15:43:02 +0000 (UTC) Subject: rpms/kipi-plugins/F-11 kipi-plugins-0.4.0-dt_validation.patch, NONE, 1.1 .cvsignore, 1.28, 1.29 kipi-plugins.spec, 1.94, 1.95 sources, 1.28, 1.29 kipi-plugins-use-libgpod-0.6.0.patch, 1.2, NONE Message-ID: <20090724154302.412B311C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kipi-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25412 Modified Files: .cvsignore kipi-plugins.spec sources Added Files: kipi-plugins-0.4.0-dt_validation.patch Removed Files: kipi-plugins-use-libgpod-0.6.0.patch Log Message: * Fri Jul 24 2009 Rex Dieter 0.5.0-1 - kipi-plugins-0.5.0 kipi-plugins-0.4.0-dt_validation.patch: kipiplugins.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kipi-plugins-0.4.0-dt_validation.patch --- diff -up kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop --- kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation 2009-07-03 03:39:04.000000000 -0500 +++ kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop 2009-07-03 20:31:27.489920856 -0500 @@ -35,6 +35,6 @@ Comment[sv]=KDE:s gr?nssnitt f?r bildi Comment[uk]=????????? ???????? KDE ??? ?????? ? ???????????? Comment[x-test]=xxKDE Image Plugins Interfacexx X-DocPath=kipi-plugins/index.html -Categories=Qt;KDE;Graphics; +#Categories=Qt;KDE;Graphics; NoDisplay=true Type=Service Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-11/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 12 May 2009 10:49:26 -0000 1.28 +++ .cvsignore 24 Jul 2009 15:43:01 -0000 1.29 @@ -1 +1 @@ -kipi-plugins-0.3.0.tar.bz2 +kipi-plugins-0.5.0.tar.bz2 Index: kipi-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-11/kipi-plugins.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- kipi-plugins.spec 23 May 2009 04:52:44 -0000 1.94 +++ kipi-plugins.spec 24 Jul 2009 15:43:02 -0000 1.95 @@ -2,8 +2,8 @@ Name: kipi-plugins Summary: Plugins to use with Kipi -Version: 0.3.0 -Release: 2%{?dist} +Version: 0.5.0 +Release: 1%{?dist} License: GPLv2+ and Adobe Group: Applications/Multimedia @@ -11,14 +11,10 @@ Url: http://www.kipi-plugins.org/ Source0: http://downloads.sourceforge.net/kipi/kipi-plugins-%{version}%{?beta:-%{beta}}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if 0%{?fedora} > 10 -%define libgpod_ver 0.7.0 -%else -%define libgpod_ver 0.6.0 -%endif -# temporary, until f10 is up'd to libgpod-0.7.0 too -Patch1: kipi-plugins-use-libgpod-0.6.0.patch +## upstreamable patches +Patch50: kipi-plugins-0.4.0-dt_validation.patch +BuildRequires: desktop-file-utils BuildRequires: exiv2-devel ## DNG converter BuildRequires: expat-devel @@ -30,7 +26,7 @@ BuildRequires: kdelibs4-devel >= 4.2.0 %global kdelibs4_version %((kde4-config --version 2>/dev/null || echo "KDE 4.2.0") | grep ^KDE | cut -d' ' -f2) Requires: kdelibs4 >= %{kdelibs4_version} BuildRequires: kdepimlibs-devel -BuildRequires: libgpod-devel >= %{libgpod_ver} +BuildRequires: libgpod-devel >= 0.7.0 BuildRequires: libkipi-devel >= 0.3.0 BuildRequires: libkdcraw-devel >= 0.4.0-2 BuildRequires: libkexiv2-devel >= 0.5.0 @@ -77,9 +73,7 @@ PrintWizard : print images in var %prep %setup -q -n %{name}-%{version}%{?beta:-%{beta}} -%if "%{?libgpod_ver}" == "0.6.0" -%patch1 -p1 -b .libgpod-0.6.0 -%endif +%patch50 -p1 -b .dt_validation %build @@ -112,6 +106,11 @@ cat *.lang > %{name}-all.lang rm -f %{buildroot}%{_kde4_libdir}/lib*.so +%check +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/dngconverter.desktop +desktop-file-validate %{buildroot}%{_kde4_datadir}/applications/kde4/kipiplugins.desktop + + %clean rm -rf %{buildroot} @@ -141,7 +140,7 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog README TODO %{_kde4_bindir}/dngconverter -%{_kde4_libdir}/libkipiplugins.so.* +%{_kde4_libdir}/libkipiplugins.so.1* %{_kde4_libdir}/kde4/kipiplugin_acquireimages.so %{_kde4_libdir}/kde4/kipiplugin_advancedslideshow.so %{_kde4_libdir}/kde4/kipiplugin_batchprocessimages.so @@ -173,15 +172,23 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %{_kde4_appsdir}/kipiplugin_imageviewer/ %{_kde4_appsdir}/kipiplugin_metadataedit/ %{_kde4_appsdir}/kipiplugin_picasawebexport/ +%{_kde4_appsdir}/kipiplugin_printimages/ %{_kde4_appsdir}/kipiplugin_removeredeyes/ %{_kde4_appsdir}/kipiplugin_smug/ %{_kde4_datadir}/applications/kde4/dngconverter.desktop +%{_kde4_datadir}/applications/kde4/kipiplugins.desktop %{_kde4_datadir}/kde4/services/*.desktop %{_kde4_iconsdir}/hicolor/*/*/* %{_kde4_iconsdir}/oxygen/*/*/* %changelog +* Fri Jul 24 2009 Rex Dieter 0.5.0-1 +- kipi-plugins-0.5.0 + +* Fri Jul 03 2009 Rex Dieter 0.4.0-1 +- kipi-plugins-0.4.0 + * Fri May 22 2009 Rex Dieter 0.3.0-2 - optimize scriptlets Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kipi-plugins/F-11/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 12 May 2009 10:49:26 -0000 1.28 +++ sources 24 Jul 2009 15:43:02 -0000 1.29 @@ -1 +1 @@ -6fa2c7dae38055fb50d90bad458c3412 kipi-plugins-0.3.0.tar.bz2 +f82c95b85f2b434fd03b99451ec5081e kipi-plugins-0.5.0.tar.bz2 --- kipi-plugins-use-libgpod-0.6.0.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 15:43:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:43:07 +0000 (UTC) Subject: rpms/OpenEXR_Viewers/devel OpenEXR_Viewers.spec,1.5,1.6 Message-ID: <20090724154307.2148611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OpenEXR_Viewers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25483 Modified Files: OpenEXR_Viewers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OpenEXR_Viewers.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR_Viewers/devel/OpenEXR_Viewers.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- OpenEXR_Viewers.spec 23 Feb 2009 22:15:51 -0000 1.5 +++ OpenEXR_Viewers.spec 24 Jul 2009 15:43:06 -0000 1.6 @@ -12,7 +12,7 @@ Name: %{real_name} Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Viewers programs for OpenEXR Group: Applications/Multimedia @@ -126,6 +126,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 15:43:29 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 15:43:29 +0000 (UTC) Subject: rpms/kipi-plugins/F-10 kipi-plugins-0.4.0-dt_validation.patch, NONE, 1.1 Message-ID: <20090724154329.B7CEE11C007C@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kipi-plugins/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25799 Added Files: kipi-plugins-0.4.0-dt_validation.patch Log Message: * Fri Jul 24 2009 Rex Dieter 0.5.0-1 - kipi-plugins-0.5.0 kipi-plugins-0.4.0-dt_validation.patch: kipiplugins.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kipi-plugins-0.4.0-dt_validation.patch --- diff -up kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop --- kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop.dt_validation 2009-07-03 03:39:04.000000000 -0500 +++ kipi-plugins-0.4.0/common/libkipiplugins/kipiplugins.desktop 2009-07-03 20:31:27.489920856 -0500 @@ -35,6 +35,6 @@ Comment[sv]=KDE:s gr?nssnitt f?r bildi Comment[uk]=????????? ???????? KDE ??? ?????? ? ???????????? Comment[x-test]=xxKDE Image Plugins Interfacexx X-DocPath=kipi-plugins/index.html -Categories=Qt;KDE;Graphics; +#Categories=Qt;KDE;Graphics; NoDisplay=true Type=Service From jkeating at fedoraproject.org Fri Jul 24 15:43:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:43:28 +0000 (UTC) Subject: rpms/OpenIPMI/devel OpenIPMI.spec,1.68,1.69 Message-ID: <20090724154328.BBBFF11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OpenIPMI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25780 Modified Files: OpenIPMI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OpenIPMI.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenIPMI/devel/OpenIPMI.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- OpenIPMI.spec 15 Apr 2009 13:36:54 -0000 1.68 +++ OpenIPMI.spec 24 Jul 2009 15:43:28 -0000 1.69 @@ -4,7 +4,7 @@ Summary: IPMI (Intelligent Platform Management Interface) library and tools Name: OpenIPMI Version: 2.0.16 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD and BSD with advertising and LGPLv2+ and GPLv2+ Group: System Environment/Base URL: http://sourceforge.net/projects/openipmi/ @@ -165,6 +165,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-openipmigui.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Jan Safranek - 2.0.16-2 - fix compilation flags, debuginfo package is correctly generated now From jkeating at fedoraproject.org Fri Jul 24 15:43:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:43:44 +0000 (UTC) Subject: rpms/OpenSceneGraph/devel OpenSceneGraph.spec,1.44,1.45 Message-ID: <20090724154344.99B4911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/OpenSceneGraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26020 Modified Files: OpenSceneGraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: OpenSceneGraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenSceneGraph/devel/OpenSceneGraph.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- OpenSceneGraph.spec 29 Jun 2009 04:45:13 -0000 1.44 +++ OpenSceneGraph.spec 24 Jul 2009 15:43:44 -0000 1.45 @@ -9,7 +9,7 @@ Name: OpenSceneGraph Version: %{apivers} -Release: 2%{?dist} +Release: 3%{?dist} Summary: High performance real-time graphics toolkit Group: Applications/Multimedia @@ -399,6 +399,9 @@ Development files for OpenThreads. %{_includedir}/OpenThreads %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Ralf Cors?pius - 2.8.1-2 - Remove /usr/bin/osgfilecache from *-examples. - Further spec cleanup. From jkeating at fedoraproject.org Fri Jul 24 15:44:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:44:03 +0000 (UTC) Subject: rpms/PackageKit/devel PackageKit.spec,1.107,1.108 Message-ID: <20090724154403.5968D11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PackageKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26237 Modified Files: PackageKit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PackageKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/PackageKit/devel/PackageKit.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- PackageKit.spec 6 Jul 2009 10:52:16 -0000 1.107 +++ PackageKit.spec 24 Jul 2009 15:44:03 -0000 1.108 @@ -11,7 +11,7 @@ Summary: Package management service Name: PackageKit Version: 0.5.0 #Release: 0.1.%{?alphatag}git%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.packagekit.org @@ -418,6 +418,9 @@ update-mime-database %{_datadir}/mime &> %{_includedir}/PackageKit/backend/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Richard Hughes - 0.5.0-1 - New upstream version, many bugfixes and a few new features - Fixes #483164, #504377, #504137, #499590, #506110 and #506649 From jkeating at fedoraproject.org Fri Jul 24 15:44:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:44:20 +0000 (UTC) Subject: rpms/PerceptualDiff/devel PerceptualDiff.spec,1.10,1.11 Message-ID: <20090724154420.CA72311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PerceptualDiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26406 Modified Files: PerceptualDiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PerceptualDiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/PerceptualDiff/devel/PerceptualDiff.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- PerceptualDiff.spec 23 Feb 2009 22:19:19 -0000 1.10 +++ PerceptualDiff.spec 24 Jul 2009 15:44:20 -0000 1.11 @@ -2,7 +2,7 @@ Name: PerceptualDiff Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An image comparison utility Group: Applications/Multimedia @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:44:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:44:39 +0000 (UTC) Subject: rpms/Perlbal/devel Perlbal.spec,1.7,1.8 Message-ID: <20090724154439.8490011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Perlbal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26586 Modified Files: Perlbal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Perlbal.spec =================================================================== RCS file: /cvs/pkgs/rpms/Perlbal/devel/Perlbal.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- Perlbal.spec 23 Feb 2009 22:20:12 -0000 1.7 +++ Perlbal.spec 24 Jul 2009 15:44:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: Perlbal Version: 1.70 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Reverse-proxy load balancer and webserver License: GPL+ or Artistic Group: System Environment/Daemons @@ -96,6 +96,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.70-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.70-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:44:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:44:57 +0000 (UTC) Subject: rpms/PersonalCopy-Lite-soundfont/devel PersonalCopy-Lite-soundfont.spec, 1.3, 1.4 Message-ID: <20090724154457.9A53C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PersonalCopy-Lite-soundfont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26841 Modified Files: PersonalCopy-Lite-soundfont.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PersonalCopy-Lite-soundfont.spec =================================================================== RCS file: /cvs/pkgs/rpms/PersonalCopy-Lite-soundfont/devel/PersonalCopy-Lite-soundfont.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- PersonalCopy-Lite-soundfont.spec 23 Mar 2009 20:34:25 -0000 1.3 +++ PersonalCopy-Lite-soundfont.spec 24 Jul 2009 15:44:57 -0000 1.4 @@ -1,6 +1,6 @@ Name: PersonalCopy-Lite-soundfont Version: 4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Lite version of the PersonalCopy General Midi soundfont Group: Applications/Multimedia License: Redistributable, no modification permitted @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Orcan Ogetbil - 4.1-5 - Drop PersonalCopy-Lite-patches package (GUS patches are provided by the fluid-soundfont from now on). From sseago at fedoraproject.org Fri Jul 24 15:45:08 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 15:45:08 +0000 (UTC) Subject: rpms/rubygem-rails/devel rubygem-rails.spec,1.11,1.12 Message-ID: <20090724154508.13DA911C007C@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27013 Modified Files: rubygem-rails.spec Log Message: additional fix for BZ 496480 Index: rubygem-rails.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/rubygem-rails.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- rubygem-rails.spec 6 May 2009 23:38:01 -0000 1.11 +++ rubygem-rails.spec 24 Jul 2009 15:45:07 -0000 1.12 @@ -55,9 +55,6 @@ done # Remove backup files find %{buildroot}/%{geminstdir} -type f -name "*~" -delete -# Delete zero-length files -find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; - # Fix anything executable that does not have a shebang for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file From jkeating at fedoraproject.org Fri Jul 24 15:45:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:45:15 +0000 (UTC) Subject: rpms/Pixie/devel Pixie.spec,1.16,1.17 Message-ID: <20090724154515.B90AA11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Pixie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27097 Modified Files: Pixie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Pixie.spec =================================================================== RCS file: /cvs/pkgs/rpms/Pixie/devel/Pixie.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- Pixie.spec 20 May 2009 23:31:47 -0000 1.16 +++ Pixie.spec 24 Jul 2009 15:45:15 -0000 1.17 @@ -1,6 +1,6 @@ Name: Pixie Version: 2.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D renderer Renderman compliant Group: Applications/Multimedia @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 kwizart < kwizart at gmail.com > - 2.2.6-1 - Update to 2.2.6 From jkeating at fedoraproject.org Fri Jul 24 15:45:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:45:33 +0000 (UTC) Subject: rpms/PolicyKit/devel PolicyKit.spec,1.25,1.26 Message-ID: <20090724154533.A4A5211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PolicyKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27278 Modified Files: PolicyKit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PolicyKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/PolicyKit/devel/PolicyKit.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- PolicyKit.spec 25 Feb 2009 01:01:50 -0000 1.25 +++ PolicyKit.spec 24 Jul 2009 15:45:33 -0000 1.26 @@ -14,7 +14,7 @@ Summary: Authorization Toolkit Name: PolicyKit Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://gitweb.freedesktop.org/?p=PolicyKit.git;a=summary @@ -173,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/polkit/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Matthias Clasen - 0.9-6 - Make -docs noarch From jkeating at fedoraproject.org Fri Jul 24 15:45:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:45:49 +0000 (UTC) Subject: rpms/PolicyKit-gnome/devel PolicyKit-gnome.spec,1.27,1.28 Message-ID: <20090724154549.9DE7211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PolicyKit-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27451 Modified Files: PolicyKit-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PolicyKit-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/PolicyKit-gnome/devel/PolicyKit-gnome.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- PolicyKit-gnome.spec 27 Feb 2009 06:54:18 -0000 1.27 +++ PolicyKit-gnome.spec 24 Jul 2009 15:45:49 -0000 1.28 @@ -10,7 +10,7 @@ Summary: PolicyKit integration for the GNOME desktop Name: PolicyKit-gnome Version: 0.9.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries URL: http://svn.gnome.org/viewvc/policykit-gnome/trunk @@ -155,6 +155,9 @@ fi %{_datadir}/PolicyKit/policy/*.policy %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Matthias Clasen - 0.9.2-3 - Add a PolicyKit-authentication-agent provides From jkeating at fedoraproject.org Fri Jul 24 15:46:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:46:06 +0000 (UTC) Subject: rpms/PolicyKit-olpc/devel PolicyKit-olpc.spec,1.2,1.3 Message-ID: <20090724154606.475C511C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PolicyKit-olpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27597 Modified Files: PolicyKit-olpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PolicyKit-olpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/PolicyKit-olpc/devel/PolicyKit-olpc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- PolicyKit-olpc.spec 23 Feb 2009 22:25:38 -0000 1.2 +++ PolicyKit-olpc.spec 24 Jul 2009 15:46:06 -0000 1.3 @@ -1,6 +1,6 @@ Name: PolicyKit-olpc Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OLPC-specific PolicyKit overrides Group: System Environment/Base @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_var}/lib/PolicyKit-public/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:46:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:46:23 +0000 (UTC) Subject: rpms/Pound/devel Pound.spec,1.29,1.30 Message-ID: <20090724154623.37CD111C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Pound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27763 Modified Files: Pound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Pound.spec =================================================================== RCS file: /cvs/pkgs/rpms/Pound/devel/Pound.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- Pound.spec 23 Feb 2009 22:26:34 -0000 1.29 +++ Pound.spec 24 Jul 2009 15:46:22 -0000 1.30 @@ -4,7 +4,7 @@ Name: Pound Version: 2.4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Reverse proxy and load balancer Group: System Environment/Daemons @@ -116,6 +116,9 @@ fi %attr(-,%{pound_user},%{pound_group}) %dir %{pound_home} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:46:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:46:39 +0000 (UTC) Subject: rpms/PyAmanith/devel PyAmanith.spec,1.6,1.7 Message-ID: <20090724154639.843A811C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyAmanith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27958 Modified Files: PyAmanith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyAmanith.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyAmanith/devel/PyAmanith.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- PyAmanith.spec 23 Feb 2009 22:27:35 -0000 1.6 +++ PyAmanith.spec 24 Jul 2009 15:46:39 -0000 1.7 @@ -3,7 +3,7 @@ Name: PyAmanith Summary: Python bindings for Amanith Version: 0.3.35 -Release: 7%{?dist} +Release: 8%{?dist} # Exception is permission to link to Amanith, which is QPL. License: GPLv2+ with exceptions Group: Development/Tools @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.35-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.35-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sseago at fedoraproject.org Fri Jul 24 15:46:43 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 15:46:43 +0000 (UTC) Subject: rpms/rubygem-rails/devel rubygem-rails.spec,1.12,1.13 Message-ID: <20090724154643.85A6611C007C@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28017 Modified Files: rubygem-rails.spec Log Message: additional fix for BZ 496480 Index: rubygem-rails.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/rubygem-rails.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- rubygem-rails.spec 24 Jul 2009 15:45:07 -0000 1.12 +++ rubygem-rails.spec 24 Jul 2009 15:46:43 -0000 1.13 @@ -7,7 +7,7 @@ Summary: Web-application framework Name: rubygem-%{gemname} Version: 2.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -97,6 +97,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 24 2009 Scott Seago - 2.3.2-3 +- Remove the 'delete zero length files' bit, as some of these are needed. + * Wed May 6 2009 David Lutterkort - 2.3.2-2 - Fix replacement of shebang lines; broke scripts/generate (bz 496480) From jkeating at fedoraproject.org Fri Jul 24 15:46:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:46:58 +0000 (UTC) Subject: rpms/PyKDE/devel PyKDE.spec,1.27,1.28 Message-ID: <20090724154658.4C72511C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyKDE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28192 Modified Files: PyKDE.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyKDE.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyKDE/devel/PyKDE.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- PyKDE.spec 13 Jun 2009 23:51:32 -0000 1.27 +++ PyKDE.spec 24 Jul 2009 15:46:58 -0000 1.28 @@ -14,7 +14,7 @@ BuildRequires: libutempter-devel Summary: Python bindings for KDE3 Name: PyKDE Version: 3.16.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://www.riverbankcomputing.com/software/pykde/intro @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Rex Dieter - 3.16.3-1 - PyKDE-3.16.3 From kevin at fedoraproject.org Fri Jul 24 15:53:29 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Fri, 24 Jul 2009 15:53:29 +0000 (UTC) Subject: rpms/heartbeat/EL-5 heartbeat.spec,1.14,1.15 Message-ID: <20090724155329.AB4A211C007C@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/heartbeat/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30938 Modified Files: heartbeat.spec Log Message: Remove perl(Net::IMAP::Simple::SSL) for now as it's not in Fedora (yet). Index: heartbeat.spec =================================================================== RCS file: /cvs/pkgs/rpms/heartbeat/EL-5/heartbeat.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- heartbeat.spec 12 Jun 2009 16:57:06 -0000 1.14 +++ heartbeat.spec 24 Jul 2009 15:53:29 -0000 1.15 @@ -6,7 +6,7 @@ Summary: Heartbeat subsystem for High-Availability Linux Name: heartbeat Version: 2.1.4 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 and LGPLv2+ URL: http://linux-ha.org/ Group: System Environment/Daemons @@ -71,7 +71,8 @@ Requires(preun): /sbin/chkconfig Provides: ldirectord = %{version}-%{release} Obsoletes: ldirectord < 2.1.4-5 Requires: ldirectord = %{version}-%{release} -Requires: perl(Net::IMAP::Simple::SSL) +# removed for now until it's in Fedora +#Requires: perl(Net::IMAP::Simple::SSL) %description ldirectord ldirectord is a stand-alone daemon to monitor services of real @@ -346,6 +347,9 @@ fi %{_bindir}/hb_gui %changelog +* Sun Jun 14 2009 Kevin Fenzi - 2.1.4-9 +- Remove perl(Net::IMAP::Simple::SSL) for now as it's not in Fedora (yet). + * Fri Jun 11 2009 Kevin Fenzi - 2.1.4-8 - Add perl(Net::IMAP::Simple::SSL) to ldirector subpackage - Fix MAILCMD (#502443) From jkeating at fedoraproject.org Fri Jul 24 16:02:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:02:11 +0000 (UTC) Subject: rpms/PyQt/devel PyQt.spec,1.52,1.53 Message-ID: <20090724160211.576F711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyQt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv718 Modified Files: PyQt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyQt.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQt/devel/PyQt.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- PyQt.spec 16 Jun 2009 13:18:04 -0000 1.52 +++ PyQt.spec 24 Jul 2009 16:02:10 -0000 1.53 @@ -12,7 +12,7 @@ Summary: Python bindings for Qt3 Name: PyQt Version: 3.18.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Development/Languages @@ -145,6 +145,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.18.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Rex Dieter - 3.18.1-1 - PyQt-3.18.1 From jkeating at fedoraproject.org Fri Jul 24 16:02:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:02:25 +0000 (UTC) Subject: rpms/PyQt4/devel PyQt4.spec,1.29,1.30 Message-ID: <20090724160225.3EBB011C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyQt4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv805 Modified Files: PyQt4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyQt4.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQt4/devel/PyQt4.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- PyQt4.spec 16 Jul 2009 13:36:54 -0000 1.29 +++ PyQt4.spec 24 Jul 2009 16:02:25 -0000 1.30 @@ -4,7 +4,7 @@ Summary: Python bindings for Qt4 Name: PyQt4 Version: 4.5.2 -Release: 1%{?dist} +Release: 2%{?dist} # GPLv2 exceptions(see GPL_EXCEPTIONS*.txt) License: GPLv3 or GPLv2 with exceptions @@ -137,6 +137,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Rex Dieter - 4.5.2-1 - PyQt4-4.5.2 From jkeating at fedoraproject.org Fri Jul 24 16:02:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:02:40 +0000 (UTC) Subject: rpms/PyQuante/devel PyQuante.spec,1.1,1.2 Message-ID: <20090724160240.8AFBA11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyQuante/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv889 Modified Files: PyQuante.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyQuante.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQuante/devel/PyQuante.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- PyQuante.spec 7 Mar 2009 23:29:08 -0000 1.1 +++ PyQuante.spec 24 Jul 2009 16:02:40 -0000 1.2 @@ -2,7 +2,7 @@ Name: PyQuante Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python Quantum Chemistry Group: Applications/Engineering License: BSD @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Jussi Lehtola - 1.6.3-1 - Update to 1.6.3 that fixes the rest of the rpmlint errors. From jkeating at fedoraproject.org Fri Jul 24 16:02:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:02:55 +0000 (UTC) Subject: rpms/PyQwt/devel PyQwt.spec,1.2,1.3 Message-ID: <20090724160255.5F22F11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyQwt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv969 Modified Files: PyQwt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyQwt.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyQwt/devel/PyQwt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- PyQwt.spec 23 Feb 2009 22:32:30 -0000 1.2 +++ PyQwt.spec 24 Jul 2009 16:02:55 -0000 1.3 @@ -2,7 +2,7 @@ Name: PyQwt Version: 5.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python bindings for Qwt Group: Development/Languages @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_datadir}/sip/PyQt4/Qwt5/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:03:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:03:10 +0000 (UTC) Subject: rpms/PyRTF/devel PyRTF.spec,1.9,1.10 Message-ID: <20090724160310.4B15C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyRTF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1061 Modified Files: PyRTF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyRTF.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyRTF/devel/PyRTF.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- PyRTF.spec 23 Feb 2009 22:33:28 -0000 1.9 +++ PyRTF.spec 24 Jul 2009 16:03:10 -0000 1.10 @@ -2,7 +2,7 @@ Name: PyRTF Version: 0.45 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Rich Text Format (RTF) Document Generation in Python Group: Development/Languages @@ -55,6 +55,9 @@ rm -rf %buildroot %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.45-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.45-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:03:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:03:27 +0000 (UTC) Subject: rpms/PySBIG/devel PySBIG.spec,1.3,1.4 Message-ID: <20090724160327.7FECB11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PySBIG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1152 Modified Files: PySBIG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PySBIG.spec =================================================================== RCS file: /cvs/pkgs/rpms/PySBIG/devel/PySBIG.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- PySBIG.spec 23 Feb 2009 22:34:24 -0000 1.3 +++ PySBIG.spec 24 Jul 2009 16:03:27 -0000 1.4 @@ -2,7 +2,7 @@ Name: PySBIG Version: 0.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PySBIG can read SBIG CCD files Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:03:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:03:43 +0000 (UTC) Subject: rpms/PySolFC/devel PySolFC.spec,1.8,1.9 Message-ID: <20090724160343.9B73311C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PySolFC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1238 Modified Files: PySolFC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PySolFC.spec =================================================================== RCS file: /cvs/pkgs/rpms/PySolFC/devel/PySolFC.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- PySolFC.spec 23 Feb 2009 22:35:35 -0000 1.8 +++ PySolFC.spec 24 Jul 2009 16:03:43 -0000 1.9 @@ -5,7 +5,7 @@ Name: PySolFC Version: 1.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A collection of solitare card games Group: Amusements/Games License: GPLv2+ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:03:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:03:59 +0000 (UTC) Subject: rpms/PySolFC-cardsets/devel PySolFC-cardsets.spec,1.3,1.4 Message-ID: <20090724160359.5C79211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PySolFC-cardsets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1360 Modified Files: PySolFC-cardsets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PySolFC-cardsets.spec =================================================================== RCS file: /cvs/pkgs/rpms/PySolFC-cardsets/devel/PySolFC-cardsets.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- PySolFC-cardsets.spec 23 Feb 2009 22:36:31 -0000 1.3 +++ PySolFC-cardsets.spec 24 Jul 2009 16:03:59 -0000 1.4 @@ -2,7 +2,7 @@ Name: PySolFC-cardsets Version: 1.1 -Release: 4.2 +Release: 5.2 Summary: Various cardsets for PySolFC Group: Amusements/Games License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/PySolFC/cardset-* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-4.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:04:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:04:17 +0000 (UTC) Subject: rpms/PySolFC-music/devel PySolFC-music.spec,1.4,1.5 Message-ID: <20090724160417.D256211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PySolFC-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1450 Modified Files: PySolFC-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PySolFC-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/PySolFC-music/devel/PySolFC-music.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- PySolFC-music.spec 27 Feb 2009 19:59:43 -0000 1.4 +++ PySolFC-music.spec 24 Jul 2009 16:04:17 -0000 1.5 @@ -5,7 +5,7 @@ Name: PySolFC-music Version: 4.40 -Release: 4 +Release: 5 Summary: Music for PySolFC Group: Amusements/Games @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/PySolFC/music/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.40-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.40-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:04:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:04:34 +0000 (UTC) Subject: rpms/PyX/devel PyX.spec,1.12,1.13 Message-ID: <20090724160434.BA3EC11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1531 Modified Files: PyX.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyX.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyX/devel/PyX.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- PyX.spec 23 Feb 2009 22:38:18 -0000 1.12 +++ PyX.spec 24 Jul 2009 16:04:34 -0000 1.13 @@ -7,7 +7,7 @@ Name: PyX Version: 0.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Python graphics package Group: Applications/Publishing @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:04:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:04:50 +0000 (UTC) Subject: rpms/PyXML/devel PyXML.spec,1.36,1.37 Message-ID: <20090724160450.40FC911C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyXML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1705 Modified Files: PyXML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyXML.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyXML/devel/PyXML.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- PyXML.spec 3 Mar 2009 08:30:07 -0000 1.36 +++ PyXML.spec 24 Jul 2009 16:04:50 -0000 1.37 @@ -1,7 +1,7 @@ Summary: XML libraries for python Name: PyXML Version: 0.8.4 -Release: 14 +Release: 15 Source: http://prdownloads.sourceforge.net/pyxml/PyXML-%{version}.tar.gz Patch0: PyXML-0.7.1-intern.patch Patch1: PyXML-0.8.4-cvs20041111-python2.4-backport.patch @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/python?.?/site-packages/_xmlplus %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Caol?n McNamara - 0.8.4-14 - Another 'as' hiding in Stylesheet.py -> as_ From jkeating at fedoraproject.org Fri Jul 24 16:05:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:05:06 +0000 (UTC) Subject: rpms/PyYAML/devel PyYAML.spec,1.8,1.9 Message-ID: <20090724160506.8744F11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PyYAML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1834 Modified Files: PyYAML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PyYAML.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyYAML/devel/PyYAML.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- PyYAML.spec 22 Jul 2009 18:49:39 -0000 1.8 +++ PyYAML.spec 24 Jul 2009 16:05:06 -0000 1.9 @@ -4,7 +4,7 @@ Name: PyYAML Version: 3.08 -Release: 5%{?dist} +Release: 6%{?dist} Summary: YAML parser and emitter for Python Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.08-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 - John Eckersberg - 3.08-5 - Minor tweaks to spec file aligning with latest Fedora packaging guidelines - Enforce inclusion of libyaml in build with --with-libyaml option to setup.py From jkeating at fedoraproject.org Fri Jul 24 16:05:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:05:21 +0000 (UTC) Subject: rpms/Pyrex/devel Pyrex.spec,1.27,1.28 Message-ID: <20090724160521.587D211C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Pyrex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2167 Modified Files: Pyrex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Pyrex.spec =================================================================== RCS file: /cvs/pkgs/rpms/Pyrex/devel/Pyrex.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- Pyrex.spec 23 Feb 2009 22:40:57 -0000 1.27 +++ Pyrex.spec 24 Jul 2009 16:05:21 -0000 1.28 @@ -12,7 +12,7 @@ Name: Pyrex Version: 0.9.8.4 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 0 BuildArch: noarch Summary: A compiler/language for writing Python extension modules @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.9.8.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:0.9.8.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:05:38 +0000 (UTC) Subject: rpms/PythonCAD/devel PythonCAD.spec,1.9,1.10 Message-ID: <20090724160538.7005C11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PythonCAD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2679 Modified Files: PythonCAD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PythonCAD.spec =================================================================== RCS file: /cvs/pkgs/rpms/PythonCAD/devel/PythonCAD.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- PythonCAD.spec 29 Jun 2009 16:22:35 -0000 1.9 +++ PythonCAD.spec 24 Jul 2009 16:05:38 -0000 1.10 @@ -9,7 +9,7 @@ Summary: Python scriptable CAD package Name: PythonCAD Version: %(echo %{_version} |sed 's|DS|0.|'|sed 's|-R|.|') -Release: 7%{?dist} +Release: 8%{?dist} Group: Applications/Engineering License: GPLv2+ URL: http://www.pythoncad.org/ @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.36-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 0.1.36-7 - Fix "as" been a reserved keyword starting with python2.6 Patch from leigh123linux at googlemail.com - #499932 From jkeating at fedoraproject.org Fri Jul 24 16:05:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:05:53 +0000 (UTC) Subject: rpms/PythonCard/devel PythonCard.spec,1.4,1.5 Message-ID: <20090724160553.A97EF11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/PythonCard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2895 Modified Files: PythonCard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: PythonCard.spec =================================================================== RCS file: /cvs/pkgs/rpms/PythonCard/devel/PythonCard.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- PythonCard.spec 23 Feb 2009 22:42:41 -0000 1.4 +++ PythonCard.spec 24 Jul 2009 16:05:53 -0000 1.5 @@ -2,7 +2,7 @@ Name: PythonCard Version: 0.8.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PythonCard GUI construction toolkit Source: http://dl.sf.net/pythoncard/%{name}-%{version}.tar.gz @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:06:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:06:10 +0000 (UTC) Subject: rpms/QuantLib/devel QuantLib.spec,1.33,1.34 Message-ID: <20090724160610.DEBAE11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/QuantLib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3112 Modified Files: QuantLib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: QuantLib.spec =================================================================== RCS file: /cvs/pkgs/rpms/QuantLib/devel/QuantLib.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- QuantLib.spec 23 Feb 2009 22:43:34 -0000 1.33 +++ QuantLib.spec 24 Jul 2009 16:06:10 -0000 1.34 @@ -2,7 +2,7 @@ Name: QuantLib Version: 0.9.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A software framework for quantitative finance License: BSD Group: System Environment/Libraries @@ -158,6 +158,9 @@ rm -rf $RPM_BUILD_ROOT #%{docdir}/QuantLib-%{version}-docs-refman.ps %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 24 16:06:10 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 16:06:10 +0000 (UTC) Subject: rpms/gwget/devel gwget.spec,1.33,1.34 Message-ID: <20090724160610.A9CE311C00D3@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/gwget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3101 Modified Files: gwget.spec Log Message: fix changelog Index: gwget.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwget/devel/gwget.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- gwget.spec 23 Jul 2009 23:55:41 -0000 1.33 +++ gwget.spec 24 Jul 2009 16:06:10 -0000 1.34 @@ -124,7 +124,6 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 %changelog * Thu Jul 23 2009 Christoph Wickert - 1.0.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - Temporarily disable broken epiphany extension * Thu Jun 11 2009 Christoph Wickert - 1.0.1-4 From jkeating at fedoraproject.org Fri Jul 24 16:06:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:06:37 +0000 (UTC) Subject: rpms/R/devel R.spec,1.63,1.64 Message-ID: <20090724160637.15EE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3450 Modified Files: R.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R.spec =================================================================== RCS file: /cvs/pkgs/rpms/R/devel/R.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- R.spec 10 Jul 2009 14:29:03 -0000 1.63 +++ R.spec 24 Jul 2009 16:06:36 -0000 1.64 @@ -6,7 +6,7 @@ Name: R Version: 2.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A language for data analysis and graphics URL: http://www.r-project.org Source0: ftp://cran.r-project.org/pub/R/src/base/R-2/R-%{version}.tar.gz @@ -1004,6 +1004,9 @@ R CMD javareconf \ %postun -n libRmath -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Tom "spot" Callaway - 2.9.1-2 - don't try to make the PDFs in rawhide/i586 From jkeating at fedoraproject.org Fri Jul 24 16:06:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:06:51 +0000 (UTC) Subject: rpms/R-BSgenome/devel R-BSgenome.spec,1.3,1.4 Message-ID: <20090724160651.8610C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-BSgenome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3642 Modified Files: R-BSgenome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-BSgenome.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome/devel/R-BSgenome.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-BSgenome.spec 13 Jul 2009 06:42:11 -0000 1.3 +++ R-BSgenome.spec 24 Jul 2009 16:06:51 -0000 1.4 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.12.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Infrastructure for Biostrings-based genome data packages Group: Applications/Engineering @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/R/library/%{packname}/BSgenomeDataPkg-template %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 pingou 1.12.3-1 - Update to 1.12.3 From jkeating at fedoraproject.org Fri Jul 24 16:07:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:07:12 +0000 (UTC) Subject: rpms/R-BSgenome.Dmelanogaster.FlyBase.r51/devel R-BSgenome.Dmelanogaster.FlyBase.r51.spec, 1.3, 1.4 Message-ID: <20090724160712.17E5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-BSgenome.Dmelanogaster.FlyBase.r51/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3911 Modified Files: R-BSgenome.Dmelanogaster.FlyBase.r51.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-BSgenome.Dmelanogaster.FlyBase.r51.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome.Dmelanogaster.FlyBase.r51/devel/R-BSgenome.Dmelanogaster.FlyBase.r51.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-BSgenome.Dmelanogaster.FlyBase.r51.spec 23 Feb 2009 22:45:33 -0000 1.3 +++ R-BSgenome.Dmelanogaster.FlyBase.r51.spec 24 Jul 2009 16:07:11 -0000 1.4 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 1.3.1 -Release: 4 +Release: 5 Summary: Drosophila melanogaster genome (FlyBase r5.1) Summary(fr): Genome de Drosophila melanogaster (FlyBase r5.1) @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:07:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:07:27 +0000 (UTC) Subject: rpms/R-Biobase/devel R-Biobase.spec,1.12,1.13 Message-ID: <20090724160727.3423811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-Biobase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4107 Modified Files: R-Biobase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-Biobase.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-Biobase/devel/R-Biobase.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- R-Biobase.spec 12 Jun 2009 07:59:03 -0000 1.12 +++ R-Biobase.spec 24 Jul 2009 16:07:27 -0000 1.13 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 2.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Base functions for Bioconductor Group: Applications/Engineering @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 pingou 2.4.1-1 - Update to 2.4.1 - Remove bad french translation From jkeating at fedoraproject.org Fri Jul 24 16:07:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:07:41 +0000 (UTC) Subject: rpms/R-Biostrings/devel R-Biostrings.spec,1.4,1.5 Message-ID: <20090724160741.5F84F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-Biostrings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4275 Modified Files: R-Biostrings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-Biostrings.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-Biostrings/devel/R-Biostrings.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-Biostrings.spec 13 Jul 2009 06:32:16 -0000 1.4 +++ R-Biostrings.spec 24 Jul 2009 16:07:41 -0000 1.5 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 2.12.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: String objects representing biological sequences Group: Applications/Engineering @@ -92,6 +92,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/include %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 pingou 2.12.7-1 - Update to 2.12.7 From jkeating at fedoraproject.org Fri Jul 24 16:07:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:07:57 +0000 (UTC) Subject: rpms/R-BufferedMatrix/devel R-BufferedMatrix.spec,1.14,1.15 Message-ID: <20090724160757.34D3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-BufferedMatrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4447 Modified Files: R-BufferedMatrix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-BufferedMatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BufferedMatrix/devel/R-BufferedMatrix.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- R-BufferedMatrix.spec 28 Apr 2009 18:02:36 -0000 1.14 +++ R-BufferedMatrix.spec 24 Jul 2009 16:07:57 -0000 1.15 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A matrix data storage object method from bioconductor Summary(fr): Stockage des donn?es d'un matrice dans un fichier temporaire @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 1.8.0-1 - Update to Bioconductor 2.4 and R-2.9.0 From jkeating at fedoraproject.org Fri Jul 24 16:08:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:08:12 +0000 (UTC) Subject: rpms/R-BufferedMatrixMethods/devel R-BufferedMatrixMethods.spec, 1.11, 1.12 Message-ID: <20090724160812.CDE2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-BufferedMatrixMethods/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4646 Modified Files: R-BufferedMatrixMethods.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-BufferedMatrixMethods.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BufferedMatrixMethods/devel/R-BufferedMatrixMethods.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- R-BufferedMatrixMethods.spec 12 Jun 2009 08:12:48 -0000 1.11 +++ R-BufferedMatrixMethods.spec 24 Jul 2009 16:08:12 -0000 1.12 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 1.8.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Microarray Data related methods that utlize BufferedMatrix Summary(fr): Outils pour la manipulation des donn?es de puces ? ADN @@ -72,6 +72,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 pingou - 1.8.0-3 - Remove check to fix build which fails on missing dep affy (not really needed here though) From jkeating at fedoraproject.org Fri Jul 24 16:08:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:08:27 +0000 (UTC) Subject: rpms/R-DBI/devel R-DBI.spec,1.2,1.3 Message-ID: <20090724160827.E4E7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4861 Modified Files: R-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-DBI/devel/R-DBI.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-DBI.spec 23 Feb 2009 22:49:30 -0000 1.2 +++ R-DBI.spec 24 Jul 2009 16:08:27 -0000 1.3 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz License: LGPLv2+ URL: http://cran.r-project.org/web/packages/DBI/index.html @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:08:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:08:42 +0000 (UTC) Subject: rpms/R-DynDoc/devel R-DynDoc.spec,1.7,1.8 Message-ID: <20090724160842.8FE6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-DynDoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5049 Modified Files: R-DynDoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-DynDoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-DynDoc/devel/R-DynDoc.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- R-DynDoc.spec 28 Apr 2009 17:16:25 -0000 1.7 +++ R-DynDoc.spec 24 Jul 2009 16:08:42 -0000 1.8 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Functions for dynamic documents Group: Applications/Productivity @@ -68,6 +68,9 @@ test -d %{packname}/src && (cd %{packnam %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 1.22.0-1 - Update to Bioconductor 2.4 and R-2.9.0 From jkeating at fedoraproject.org Fri Jul 24 16:08:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:08:58 +0000 (UTC) Subject: rpms/R-GeneR/devel R-GeneR.spec,1.8,1.9 Message-ID: <20090724160858.8B51511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-GeneR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5277 Modified Files: R-GeneR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-GeneR.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-GeneR/devel/R-GeneR.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- R-GeneR.spec 28 Apr 2009 17:27:17 -0000 1.8 +++ R-GeneR.spec 24 Jul 2009 16:08:58 -0000 1.9 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 2.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: R for genes and sequences analysis Group: Applications/Engineering @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/libs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 2.14.0-1 - Update to Bioconductor 2.4 and R-2.9.0 From jkeating at fedoraproject.org Fri Jul 24 16:09:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:09:12 +0000 (UTC) Subject: rpms/R-IRanges/devel R-IRanges.spec,1.4,1.5 Message-ID: <20090724160912.DE81811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-IRanges/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5448 Modified Files: R-IRanges.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-IRanges.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-IRanges/devel/R-IRanges.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-IRanges.spec 12 Jun 2009 07:41:58 -0000 1.4 +++ R-IRanges.spec 24 Jul 2009 16:09:12 -0000 1.5 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Low-level containers for storing sets of integer ranges Group: Applications/Engineering @@ -89,6 +89,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/include %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 pingou 1.2.3-1 - Update to 1.2.3 From jkeating at fedoraproject.org Fri Jul 24 16:09:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:09:27 +0000 (UTC) Subject: rpms/R-RM2/devel R-RM2.spec,1.1,1.2 Message-ID: <20090724160927.8408811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-RM2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5654 Modified Files: R-RM2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-RM2.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-RM2/devel/R-RM2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- R-RM2.spec 11 Jul 2009 23:09:43 -0000 1.1 +++ R-RM2.spec 24 Jul 2009 16:09:27 -0000 1.2 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 0.0 -Release: 4%{?dist} +Release: 5%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv3+ URL: http://cran.r-project.org/web/packages/RM2/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Denis Arnaud 0.0-4 - Removed commented lines and unused variables/macros From jkeating at fedoraproject.org Fri Jul 24 16:09:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:09:41 +0000 (UTC) Subject: rpms/R-RODBC/devel R-RODBC.spec,1.1,1.2 Message-ID: <20090724160941.4EAB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-RODBC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5860 Modified Files: R-RODBC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-RODBC.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-RODBC/devel/R-RODBC.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- R-RODBC.spec 28 Mar 2009 22:27:28 -0000 1.1 +++ R-RODBC.spec 24 Jul 2009 16:09:41 -0000 1.2 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An ODBC database interface for R Group: Applications/Productivity @@ -65,6 +65,9 @@ test -d %{packname}/src && (cd %{packnam %{_libdir}/R/library/%{packname}/tests.R %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Tom "spot" Callaway - 1.2-2 - fix licensing tag From jkeating at fedoraproject.org Fri Jul 24 16:09:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:09:56 +0000 (UTC) Subject: rpms/R-RSQLite/devel R-RSQLite.spec,1.4,1.5 Message-ID: <20090724160956.94ED211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-RSQLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6087 Modified Files: R-RSQLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-RSQLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-RSQLite/devel/R-RSQLite.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-RSQLite.spec 24 Feb 2009 01:31:27 -0000 1.4 +++ R-RSQLite.spec 24 Jul 2009 16:09:56 -0000 1.5 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz License: LGPLv2+ URL: http://cran.r-project.org/web/packages/RSQLite/index.html @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Nigel Jones - 0.7-3 - Update to 0.7-1 From jkeating at fedoraproject.org Fri Jul 24 16:10:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:10:12 +0000 (UTC) Subject: rpms/R-RScaLAPACK/devel R-RScaLAPACK.spec,1.31,1.32 Message-ID: <20090724161012.8CF5D11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-RScaLAPACK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6347 Modified Files: R-RScaLAPACK.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-RScaLAPACK.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-RScaLAPACK/devel/R-RScaLAPACK.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- R-RScaLAPACK.spec 23 Feb 2009 22:53:51 -0000 1.31 +++ R-RScaLAPACK.spec 24 Jul 2009 16:10:12 -0000 1.32 @@ -8,7 +8,7 @@ Name: R-%{packname} Version: 0.5.1 -Release: 19%{?dist} +Release: 20%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: MIT URL: http://cran.r-project.org/contrib @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.5.1-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:10:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:10:27 +0000 (UTC) Subject: rpms/R-RUnit/devel R-RUnit.spec,1.3,1.4 Message-ID: <20090724161027.E88A611C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-RUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6556 Modified Files: R-RUnit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-RUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-RUnit/devel/R-RUnit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-RUnit.spec 12 Jun 2009 07:38:20 -0000 1.3 +++ R-RUnit.spec 24 Jul 2009 16:10:27 -0000 1.4 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 0.4.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: R Unit test framework Group: Applications/Engineering @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_datadir}/R/library/%{packname}/CONTENTS %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 04 2009 pingou 0.4.22-1 - Update to 0.4.22 From jkeating at fedoraproject.org Fri Jul 24 16:10:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:10:43 +0000 (UTC) Subject: rpms/R-abind/devel R-abind.spec,1.3,1.4 Message-ID: <20090724161043.C0A5311C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-abind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6791 Modified Files: R-abind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-abind.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-abind/devel/R-abind.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-abind.spec 23 Feb 2009 22:54:49 -0000 1.3 +++ R-abind.spec 24 Jul 2009 16:10:43 -0000 1.4 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Combine multi-dimensional arrays Group: Applications/Productivity @@ -64,6 +64,9 @@ test -d %{packname}/src && (cd %{packnam %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:10:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:10:59 +0000 (UTC) Subject: rpms/R-acepack/devel R-acepack.spec,1.4,1.5 Message-ID: <20090724161059.C1BF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-acepack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7028 Modified Files: R-acepack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-acepack.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-acepack/devel/R-acepack.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-acepack.spec 23 Feb 2009 22:55:44 -0000 1.4 +++ R-acepack.spec 24 Jul 2009 16:10:59 -0000 1.5 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: ACE and AVAS methods for choosing regression transformations Group: Applications/Productivity @@ -65,6 +65,9 @@ test -d %{packname}/src && (cd %{packnam %{_libdir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:11:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:11:15 +0000 (UTC) Subject: rpms/R-affyio/devel R-affyio.spec,1.14,1.15 Message-ID: <20090724161115.1135D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-affyio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7240 Modified Files: R-affyio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-affyio.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-affyio/devel/R-affyio.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- R-affyio.spec 29 Apr 2009 12:36:22 -0000 1.14 +++ R-affyio.spec 24 Jul 2009 16:11:14 -0000 1.15 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.12.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools for parsing Affymetrix data files Summary(fr): Outils d'analyse de fichier de donn?es de puces affymetrix @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/libs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 pingou - 1.12.0-2 - version 1.20.0 != 1.12.0 From jkeating at fedoraproject.org Fri Jul 24 16:11:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:11:28 +0000 (UTC) Subject: rpms/R-biglm/devel R-biglm.spec,1.2,1.3 Message-ID: <20090724161128.6316411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-biglm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7446 Modified Files: R-biglm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-biglm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-biglm/devel/R-biglm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-biglm.spec 23 Feb 2009 22:57:22 -0000 1.2 +++ R-biglm.spec 24 Jul 2009 16:11:28 -0000 1.3 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Bounded memory linear and generalized linear models Group: Applications/Productivity @@ -62,6 +62,9 @@ test -d %{packname}/src && (cd %{packnam %{_libdir}/R/library/%{packname}/libs/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:11:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:11:41 +0000 (UTC) Subject: rpms/R-bigmemory/devel R-bigmemory.spec,1.4,1.5 Message-ID: <20090724161141.77F7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-bigmemory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7618 Modified Files: R-bigmemory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-bigmemory.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-bigmemory/devel/R-bigmemory.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-bigmemory.spec 16 May 2009 19:31:44 -0000 1.4 +++ R-bigmemory.spec 24 Jul 2009 16:11:41 -0000 1.5 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 2.3 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 Summary: Manage massive matrices in R using C++, with support for shared memory Group: Applications/Productivity @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/libs/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Karsten Hopp 2.3-4.1 - excludearch s390*, hangs similar to ppc From jkeating at fedoraproject.org Fri Jul 24 16:11:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:11:55 +0000 (UTC) Subject: rpms/R-car/devel R-car.spec,1.6,1.7 Message-ID: <20090724161155.588F511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-car/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7819 Modified Files: R-car.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-car.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-car/devel/R-car.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- R-car.spec 10 Mar 2009 17:32:00 -0000 1.6 +++ R-car.spec 24 Jul 2009 16:11:55 -0000 1.7 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://cran.r-project.org/src/contrib/car_%{version}-%{packrel}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/web/packages/car/index.html @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Orion Poplawski 1.2-6 - Update to 1.2-12 From jkeating at fedoraproject.org Fri Jul 24 16:12:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:12:08 +0000 (UTC) Subject: rpms/R-hdf5/devel R-hdf5.spec,1.13,1.14 Message-ID: <20090724161208.8D93611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-hdf5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8011 Modified Files: R-hdf5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-hdf5.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-hdf5/devel/R-hdf5.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- R-hdf5.spec 24 Feb 2009 15:25:32 -0000 1.13 +++ R-hdf5.spec 24 Jul 2009 16:12:08 -0000 1.14 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.6.9 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://cran.r-project.org/contrib/main/%{packname}_%{version}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/contrib @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Orion Poplawski - 1.6.9-1 - Update to 1.6.9 - Rebuild for hdf5-1.8.2 From jkeating at fedoraproject.org Fri Jul 24 16:12:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:12:22 +0000 (UTC) Subject: rpms/R-hgu95av2probe/devel R-hgu95av2probe.spec,1.3,1.4 Message-ID: <20090724161222.82AC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-hgu95av2probe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8203 Modified Files: R-hgu95av2probe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-hgu95av2probe.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-hgu95av2probe/devel/R-hgu95av2probe.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-hgu95av2probe.spec 23 Feb 2009 23:01:04 -0000 1.3 +++ R-hgu95av2probe.spec 24 Jul 2009 16:12:22 -0000 1.4 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 2.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Probe sequence data for microarrays of type hgu95av2 Summary(fr): Donn?es des primers de puces ? ADN de type hgu92av2 @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:12:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:12:35 +0000 (UTC) Subject: rpms/R-lmtest/devel R-lmtest.spec,1.3,1.4 Message-ID: <20090724161235.2F17711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-lmtest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8387 Modified Files: R-lmtest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-lmtest.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-lmtest/devel/R-lmtest.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-lmtest.spec 23 Feb 2009 23:02:01 -0000 1.3 +++ R-lmtest.spec 24 Jul 2009 16:12:35 -0000 1.4 @@ -5,7 +5,7 @@ Name: R-%{packname} Version: 0.9 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz License: GPLv2 URL: http://cran.r-project.org/web/packages/lmtest/index.html @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:12:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:12:49 +0000 (UTC) Subject: rpms/R-mAr/devel R-mAr.spec,1.13,1.14 Message-ID: <20090724161249.4716411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-mAr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8577 Modified Files: R-mAr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-mAr.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mAr/devel/R-mAr.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- R-mAr.spec 23 Feb 2009 23:02:52 -0000 1.13 +++ R-mAr.spec 24 Jul 2009 16:12:49 -0000 1.14 @@ -4,7 +4,7 @@ Summary: R module to evaluate functions for multivariate AutoRegressive analysis Name: R-%{packname} Version: 1.1 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz @@ -57,6 +57,9 @@ cat %{_libdir}/R/library/*/CONTENTS > %{ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:13:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:13:02 +0000 (UTC) Subject: rpms/R-maanova/devel R-maanova.spec,1.5,1.6 Message-ID: <20090724161302.7F3BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-maanova/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8767 Modified Files: R-maanova.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-maanova.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-maanova/devel/R-maanova.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- R-maanova.spec 23 Feb 2009 23:03:48 -0000 1.5 +++ R-maanova.spec 24 Jul 2009 16:13:02 -0000 1.6 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.12.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Analysis of N-dye Micro Array using mixed model effect Summary(fr): Analise de puce ? ADN ? N marqueurs par different mod?le @@ -94,6 +94,9 @@ chmod -x %{buildroot}%{_libdir}/R/librar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.12.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:13:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:14 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161314.EB9D910F897@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:13:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:13:16 +0000 (UTC) Subject: rpms/R-msm/devel R-msm.spec,1.3,1.4 Message-ID: <20090724161316.C7BA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-msm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8956 Modified Files: R-msm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-msm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-msm/devel/R-msm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-msm.spec 14 Jul 2009 10:27:33 -0000 1.3 +++ R-msm.spec 24 Jul 2009 16:13:16 -0000 1.4 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 0.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz License: GPLv2+ URL: http://cran.r-project.org/web/packages/msm/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/libs/%{packname}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Denis Arnaud 0.9.1-2 - Suppressed the unused definition of the packrel variable From pkgdb at fedoraproject.org Fri Jul 24 16:13:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:17 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161317.0D4CE10F8AD@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:13:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:20 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161320.04FED10F89D@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:13:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:23 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161323.8BD9710F8B3@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:13:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:13:32 +0000 (UTC) Subject: rpms/R-multcomp/devel R-multcomp.spec,1.14,1.15 Message-ID: <20090724161332.B020C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-multcomp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9123 Modified Files: R-multcomp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-multcomp.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-multcomp/devel/R-multcomp.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- R-multcomp.spec 10 Mar 2009 17:50:07 -0000 1.14 +++ R-multcomp.spec 24 Jul 2009 16:13:32 -0000 1.15 @@ -4,7 +4,7 @@ Summary: Simultaneous inference for general linear hypotheses R Package Name: R-%{packname} Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Engineering Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Orion Poplawski - 1.0-5 - Update to 1.0-7 From pkgdb at fedoraproject.org Fri Jul 24 16:13:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:28 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161328.6191A10F8A9@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 7) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:13:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:13:34 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161334.5442F10F8B8@bastion2.fedora.phx.redhat.com> Package glibc in Fedora 7 is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:13:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:13:48 +0000 (UTC) Subject: rpms/R-multtest/devel R-multtest.spec,1.8,1.9 Message-ID: <20090724161348.0330411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-multtest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9296 Modified Files: R-multtest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-multtest.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-multtest/devel/R-multtest.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- R-multtest.spec 28 Apr 2009 17:34:00 -0000 1.8 +++ R-multtest.spec 24 Jul 2009 16:13:47 -0000 1.9 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 2.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multiple hypothesis testing library from Bioconductor Summary(fr): Bibliothe que R de test multi-hypoth?ses @@ -92,6 +92,9 @@ chmod -x %{buildroot}%{_libdir}/R/librar %{_libdir}/R/library/%{packname}/otherDocs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 2.0.0-1 - Update to Bioconductor 2.4 and R-2.9.0 - Use global instead of define From jkeating at fedoraproject.org Fri Jul 24 16:14:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:14:02 +0000 (UTC) Subject: rpms/R-mvtnorm/devel R-mvtnorm.spec,1.11,1.12 Message-ID: <20090724161402.7E28A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-mvtnorm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9477 Modified Files: R-mvtnorm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-mvtnorm.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-mvtnorm/devel/R-mvtnorm.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- R-mvtnorm.spec 14 Jul 2009 16:33:13 -0000 1.11 +++ R-mvtnorm.spec 24 Jul 2009 16:14:02 -0000 1.12 @@ -4,7 +4,7 @@ Summary: Multivariate normal and T distribution R Package Name: R-%{packname} Version: 0.9 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/Engineering Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Denis Arnaud - 0.9-7 - Update to 0.9-7 From jkeating at fedoraproject.org Fri Jul 24 16:14:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:14:20 +0000 (UTC) Subject: rpms/R-nws/devel R-nws.spec,1.3,1.4 Message-ID: <20090724161420.0511211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-nws/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9659 Modified Files: R-nws.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-nws.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-nws/devel/R-nws.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- R-nws.spec 23 Feb 2009 23:07:27 -0000 1.3 +++ R-nws.spec 24 Jul 2009 16:14:19 -0000 1.4 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 1.7.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: R functions for NetWorkSpaces and Sleigh Group: Applications/Productivity @@ -74,6 +74,9 @@ chmod -x %{buildroot}%{_datadir}/R/libra %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.7.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:14:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:46 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161446.3F3F810F8B3@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:14:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:48 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161448.C84C810F8BB@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 8) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:14:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:14:49 +0000 (UTC) Subject: rpms/R-qtl/devel R-qtl.spec,1.2,1.3 Message-ID: <20090724161449.6191111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-qtl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9986 Modified Files: R-qtl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-qtl.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-qtl/devel/R-qtl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- R-qtl.spec 23 May 2009 12:06:37 -0000 1.2 +++ R-qtl.spec 24 Jul 2009 16:14:49 -0000 1.3 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.11 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://www.rqtl.org/download/%{packname}_%{version}-%{packrel}.tar.gz License: GPLv2+ URL: http://www.rqtl.org/ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/R/library/%{packname}/sampledata %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Mattias Ellert - 1.11-1 - New upstream release From pkgdb at fedoraproject.org Fri Jul 24 16:14:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:52 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161452.AD45110F8C2@bastion2.fedora.phx.redhat.com> Package glibc in Fedora 8 is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:14:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:54 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161454.2471110F8C5@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:14:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:57 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161457.73FDE10F8C8@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:03 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161503.5A50F10F8AF@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:15:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:15:04 +0000 (UTC) Subject: rpms/R-qvalue/devel R-qvalue.spec,1.7,1.8 Message-ID: <20090724161504.D19F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-qvalue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10151 Modified Files: R-qvalue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-qvalue.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-qvalue/devel/R-qvalue.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- R-qvalue.spec 29 Apr 2009 07:36:40 -0000 1.7 +++ R-qvalue.spec 24 Jul 2009 16:15:04 -0000 1.8 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Q-value estimation for false discovery rate control Group: Applications/Engineering @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 pingou - 1.18.0-1 - Update to Bioconductor 2.4 and R 2.9.0 From pkgdb at fedoraproject.org Fri Jul 24 16:15:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:05 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161505.EB3DB10F8BC@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:04 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161504.5DCA910F8B4@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:09 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161509.7057D10F8CB@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:11 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161511.EC29810F8CE@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:17 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161517.3284A10F8B3@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 9) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:21 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161521.D205D10F8D2@bastion2.fedora.phx.redhat.com> jakub has set the watchcommits acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:15:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:15:19 +0000 (UTC) Subject: rpms/R-rlecuyer/devel R-rlecuyer.spec,1.6,1.7 Message-ID: <20090724161519.9EE9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-rlecuyer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10328 Modified Files: R-rlecuyer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-rlecuyer.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-rlecuyer/devel/R-rlecuyer.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- R-rlecuyer.spec 23 Feb 2009 23:10:14 -0000 1.6 +++ R-rlecuyer.spec 24 Jul 2009 16:15:19 -0000 1.7 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: R interface to RNG with multiple streams Summary(fr): Interface R pour RNG avec divers options @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_libdir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:15:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:22 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161523.0F0B710F8D5@bastion2.fedora.phx.redhat.com> jakub has set the commit acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:24 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161524.0021F10F8D8@bastion2.fedora.phx.redhat.com> jakub has set the watchbugzilla acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:15:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:24 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161524.EE5A010F8DA@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:15:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:15:33 +0000 (UTC) Subject: rpms/R-systemfit/devel R-systemfit.spec,1.12,1.13 Message-ID: <20090724161533.6DA2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-systemfit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10503 Modified Files: R-systemfit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-systemfit.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-systemfit/devel/R-systemfit.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- R-systemfit.spec 10 Mar 2009 17:19:46 -0000 1.12 +++ R-systemfit.spec 24 Jul 2009 16:15:33 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Simultaneous Equation Estimation R Package Name: R-%{packname} Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: http://r-forge.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Orion Poplawski - 1.0-6 - Update to 1.0-9 - Fix latex requires From jkeating at fedoraproject.org Fri Jul 24 16:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:15:47 +0000 (UTC) Subject: rpms/R-tkWidgets/devel R-tkWidgets.spec,1.7,1.8 Message-ID: <20090724161547.6582E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-tkWidgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10670 Modified Files: R-tkWidgets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-tkWidgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-tkWidgets/devel/R-tkWidgets.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- R-tkWidgets.spec 28 Apr 2009 17:39:37 -0000 1.7 +++ R-tkWidgets.spec 24 Jul 2009 16:15:47 -0000 1.8 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Widgets to provide user interfaces from bioconductor Group: Applications/Productivity @@ -71,6 +71,9 @@ test -d %{packname}/src && (cd %{packnam %{_datadir}/R/library/%{packname}/man %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 1.22.0-1 - Update to Bioconductor 2.4 and R-2.9.0 - Uses global instead of define From pkgdb at fedoraproject.org Fri Jul 24 16:15:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:15:53 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161553.4ACF610F8C0@bastion2.fedora.phx.redhat.com> Package glibc in Fedora 9 is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:16:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:16:01 +0000 (UTC) Subject: rpms/R-waveslim/devel R-waveslim.spec,1.13,1.14 Message-ID: <20090724161601.70A4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-waveslim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10835 Modified Files: R-waveslim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-waveslim.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-waveslim/devel/R-waveslim.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- R-waveslim.spec 23 Feb 2009 23:13:03 -0000 1.13 +++ R-waveslim.spec 24 Jul 2009 16:16:01 -0000 1.14 @@ -3,7 +3,7 @@ Summary: R module, Basic wavelet routines for 1,2 and 3-dimensional signal processing Name: R-%{packname} Version: 1.6.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}.tar.gz @@ -55,6 +55,9 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:16:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:08 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161608.8FA0710F8C1@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:10 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161610.CD23F10F8BC@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:09 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161610.826C510F8C7@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:12 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161612.C383110F8C4@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 10) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:16:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:16:15 +0000 (UTC) Subject: rpms/R-wavethresh/devel R-wavethresh.spec,1.9,1.10 Message-ID: <20090724161615.5561B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-wavethresh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10995 Modified Files: R-wavethresh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-wavethresh.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-wavethresh/devel/R-wavethresh.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- R-wavethresh.spec 23 Feb 2009 23:13:58 -0000 1.9 +++ R-wavethresh.spec 24 Jul 2009 16:16:15 -0000 1.10 @@ -4,7 +4,7 @@ Summary: R module, Software to perform wavelet statistics and transforms Name: R-%{packname} Version: 2.2 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: ftp://cran.r-project.org/pub/R/contrib/main/%{packname}_%{version}-%{packrel}.tar.gz @@ -49,6 +49,9 @@ cd ..;%{_bindir}/R CMD check %{packname} %doc DESCRIPTION %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:16:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:17 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161617.7FDD910F8DF@bastion2.fedora.phx.redhat.com> Package glibc in Fedora 10 is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:24 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161624.76FED10F8CD@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora 11) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:09 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161610.9893510F8C2@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:27 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161628.03F4C10F8E2@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:28 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161628.7512010F8E5@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:29 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161629.247C410F8E8@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:16:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:16:29 +0000 (UTC) Subject: rpms/R-widgetTools/devel R-widgetTools.spec,1.10,1.11 Message-ID: <20090724161629.6386611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-widgetTools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11171 Modified Files: R-widgetTools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-widgetTools.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-widgetTools/devel/R-widgetTools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- R-widgetTools.spec 28 Apr 2009 17:42:57 -0000 1.10 +++ R-widgetTools.spec 24 Jul 2009 16:16:29 -0000 1.11 @@ -4,7 +4,7 @@ Name: R-%{packname} Version: 1.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bioconductor tools to support tcltk widgets Group: Applications/Productivity @@ -70,6 +70,9 @@ chmod -x %{packname}/inst/doc/widget.pdf %{_datadir}/R/library/%{packname}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 pingou 1.22.0-1 - Update to Bioconductor 2.4 and R-2.9.0 From pkgdb at fedoraproject.org Fri Jul 24 16:16:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:29 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161629.F276C10F8EB@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:16:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:16:43 +0000 (UTC) Subject: rpms/R-zoo/devel R-zoo.spec,1.4,1.5 Message-ID: <20090724161643.9AF7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-zoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11343 Modified Files: R-zoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-zoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-zoo/devel/R-zoo.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- R-zoo.spec 23 Feb 2009 23:15:45 -0000 1.4 +++ R-zoo.spec 24 Jul 2009 16:16:43 -0000 1.5 @@ -5,7 +5,7 @@ Name: R-%{packname} Version: 1.5 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://cran.r-project.org/src/contrib/%{packname}_%{version}-%{packrel}.tar.gz License: GPLv2 URL: http://cran.r-project.org/web/packages/zoo/index.html @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:16:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:43 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161643.DB31710F8D0@bastion2.fedora.phx.redhat.com> Package glibc in Fedora 11 is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:51 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161651.D164C10F8EE@bastion2.fedora.phx.redhat.com> jakub has set the approveacls acl on glibc (Fedora devel) to Approved for schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:56 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161656.7E7D110F8F0@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:16:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:16:57 +0000 (UTC) Subject: rpms/R2spec/devel R2spec.spec,1.10,1.11 Message-ID: <20090724161657.6F91011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R2spec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11502 Modified Files: R2spec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R2spec.spec =================================================================== RCS file: /cvs/pkgs/rpms/R2spec/devel/R2spec.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- R2spec.spec 22 Mar 2009 20:59:42 -0000 1.10 +++ R2spec.spec 24 Jul 2009 16:16:57 -0000 1.11 @@ -3,7 +3,7 @@ Name: R2spec Version: 2.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python script to generate R spec file Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Pingou 2.5.2-2 - Correct the source0 From pkgdb at fedoraproject.org Fri Jul 24 16:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:56 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161657.0F4AC10F8F3@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:57 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161657.B3BDE10F8FA@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:16:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:16:58 +0000 Subject: [pkgdb] glibc: jakub has requested approveacls Message-ID: <20090724161658.3EF6F10F8FD@bastion2.fedora.phx.redhat.com> jakub has requested the approveacls acl on glibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:01 +0000 Subject: [pkgdb] glibc ownership updated Message-ID: <20090724161701.71BEE10F902@bastion2.fedora.phx.redhat.com> Package glibc in Fedora devel is now owned by schwab To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:08 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161708.18FF410F905@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora 8) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:17:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:17:11 +0000 (UTC) Subject: rpms/RasmusDSP/devel RasmusDSP.spec,1.1,1.2 Message-ID: <20090724161711.9B69D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/RasmusDSP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11656 Modified Files: RasmusDSP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: RasmusDSP.spec =================================================================== RCS file: /cvs/pkgs/rpms/RasmusDSP/devel/RasmusDSP.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- RasmusDSP.spec 29 May 2009 05:49:00 -0000 1.1 +++ RasmusDSP.spec 24 Jul 2009 16:17:11 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Embeddable Audio/MIDI pr URL: http://sourceforge.net/projects/rasmusdsp Group: Development/Libraries Version: 0.1 -Release: 2.%{cvs_version}%{?dist} +Release: 3.%{cvs_version}%{?dist} License: BSD BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: %{name}-%{cvs_version}.tar.bz2 @@ -146,6 +146,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-3.20090321cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Orcan Ogetbil - 0.1-2.20090321cvs - Remove unneeded BR: jack-audio-connection-kit-devel From pkgdb at fedoraproject.org Fri Jul 24 16:17:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:11 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161711.BF1B710F909@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora 8) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:16 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161716.50D2010F8BA@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora 8) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:21 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161721.72DF410F90B@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora 9) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:24 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161724.DD89510F913@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora 9) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:17:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:17:25 +0000 (UTC) Subject: rpms/Ri-li/devel Ri-li.spec,1.7,1.8 Message-ID: <20090724161725.B904E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Ri-li/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11825 Modified Files: Ri-li.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Ri-li.spec =================================================================== RCS file: /cvs/pkgs/rpms/Ri-li/devel/Ri-li.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- Ri-li.spec 23 Feb 2009 23:17:27 -0000 1.7 +++ Ri-li.spec 24 Jul 2009 16:17:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: Ri-li Version: 2.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Arcade game where you drive a toy wood engine Group: Amusements/Games License: GPLv2 or GPLv3 @@ -79,6 +79,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:17:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:30 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161730.CB76B10F91A@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora 9) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:34 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161734.24C0910F91C@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora 9) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:40 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161740.7ED3310F91D@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora 10) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:17:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:17:42 +0000 (UTC) Subject: rpms/SAASound/devel SAASound.spec,1.2,1.3 Message-ID: <20090724161742.448F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SAASound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12008 Modified Files: SAASound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SAASound.spec =================================================================== RCS file: /cvs/pkgs/rpms/SAASound/devel/SAASound.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- SAASound.spec 23 Feb 2009 23:18:17 -0000 1.2 +++ SAASound.spec 24 Jul 2009 16:17:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: SAASound Version: 3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Phillips SAA 1099 sound chip emulator library Group: System Environment/Libraries License: BSD @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:17:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:42 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161742.8D64510F928@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora 10) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:44 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161744.A5D8410F92B@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora 10) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:48 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161748.596FB10F92C@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora 10) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:56 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161756.8010210F92E@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora 11) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:17:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:17:56 +0000 (UTC) Subject: rpms/SDL/devel SDL.spec,1.65,1.66 Message-ID: <20090724161756.C7E7E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12204 Modified Files: SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL/devel/SDL.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- SDL.spec 7 Apr 2009 15:03:53 -0000 1.65 +++ SDL.spec 24 Jul 2009 16:17:56 -0000 1.66 @@ -1,7 +1,7 @@ Summary: A cross-platform multimedia library Name: SDL Version: 1.2.13 -Release: 9%{?dist} +Release: 10%{?dist} Source: http://www.libsdl.org/release/%{name}-%{version}.tar.gz Source1: SDL_config.h Patch0: SDL-1.2.10-byteorder.patch @@ -142,6 +142,9 @@ rm -rf %{buildroot} %{_libdir}/lib*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.13-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Thomas Woerner 1.2.13-9 - fixed qemu-kvm segfaults on startup in SDL_memcpyMMX/SSE (rhbz#487720) upstream patch From pkgdb at fedoraproject.org Fri Jul 24 16:17:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:57 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161757.D0EC610F932@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora 11) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:18:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:02 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161802.C5E0910F936@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora 11) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:18:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:00 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161800.93E5710F935@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora 11) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:18:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:18:10 +0000 (UTC) Subject: rpms/SDL_Pango/devel SDL_Pango.spec,1.8,1.9 Message-ID: <20090724161810.5458211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_Pango/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12393 Modified Files: SDL_Pango.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_Pango.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_Pango/devel/SDL_Pango.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- SDL_Pango.spec 23 Feb 2009 23:20:05 -0000 1.8 +++ SDL_Pango.spec 24 Jul 2009 16:18:10 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Rendering of internationalized text for SDL (Simple DirectMedia Layer) Name: SDL_Pango Version: 0.1.2 -Release: 10 +Release: 11 License: LGPLv2+ Group: System Environment/Libraries URL: http://sdlpango.sourceforge.net/ @@ -79,6 +79,9 @@ libtoolize --copy --force %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:18:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:18:24 +0000 (UTC) Subject: rpms/SDL_gfx/devel SDL_gfx.spec,1.16,1.17 Message-ID: <20090724161824.768B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_gfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12561 Modified Files: SDL_gfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_gfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_gfx/devel/SDL_gfx.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- SDL_gfx.spec 23 Feb 2009 23:21:03 -0000 1.16 +++ SDL_gfx.spec 24 Jul 2009 16:18:24 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Graphic primitives, rotozoomer, framerate control and image filters Name: SDL_gfx Version: 2.0.17 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 Group: System Environment/Libraries URL: http://www.ferzkopp.net/Software/SDL_gfx-2.0/ @@ -73,6 +73,9 @@ package. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:18:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:22 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161822.127F010F93D@bastion2.fedora.phx.redhat.com> schwab has set the commit acl on glibc (Fedora devel) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:18:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:24 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161824.B780010F941@bastion2.fedora.phx.redhat.com> schwab has set the approveacls acl on glibc (Fedora devel) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:18:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:18:39 +0000 (UTC) Subject: rpms/SDL_image/devel SDL_image.spec,1.18,1.19 Message-ID: <20090724161839.6B2B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_image/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12755 Modified Files: SDL_image.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_image.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_image/devel/SDL_image.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- SDL_image.spec 23 Feb 2009 23:21:57 -0000 1.18 +++ SDL_image.spec 24 Jul 2009 16:18:39 -0000 1.19 @@ -1,6 +1,6 @@ Name: SDL_image Version: 1.2.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Image loading library for SDL Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:18:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:18:57 +0000 (UTC) Subject: rpms/SDL_mixer/devel SDL_mixer.spec,1.28,1.29 Message-ID: <20090724161857.AECD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_mixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12985 Modified Files: SDL_mixer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_mixer/devel/SDL_mixer.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- SDL_mixer.spec 5 Apr 2009 15:16:44 -0000 1.28 +++ SDL_mixer.spec 24 Jul 2009 16:18:57 -0000 1.29 @@ -1,6 +1,6 @@ Name: SDL_mixer Version: 1.2.8 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Simple DirectMedia Layer - Sample Mixer Library Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/SDL %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.8-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Peter Robinson - 1.2.8-12 - Remove dependency on timidity++-patches From pkgdb at fedoraproject.org Fri Jul 24 16:18:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:18 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161818.511A710F93C@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora devel) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:18:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:19 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161819.BF91F10F8CC@bastion2.fedora.phx.redhat.com> schwab has set the watchcommits acl on glibc (Fedora devel) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:18:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:18:59 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161859.3D51E10F8B7@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:19:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:19:12 +0000 (UTC) Subject: rpms/SDL_net/devel SDL_net.spec,1.12,1.13 Message-ID: <20090724161912.4A18111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13152 Modified Files: SDL_net.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_net.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_net/devel/SDL_net.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- SDL_net.spec 23 Feb 2009 23:23:44 -0000 1.12 +++ SDL_net.spec 24 Jul 2009 16:19:12 -0000 1.13 @@ -1,6 +1,6 @@ Name: SDL_net Version: 1.2.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SDL portable network library Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:19:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:19:15 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161915.4DFB810F8D4@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora 7) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:19:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:19:18 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161918.F24FD10F8E5@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:19:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:19:26 +0000 (UTC) Subject: rpms/SDL_sound/devel SDL_sound.spec,1.4,1.5 Message-ID: <20090724161926.A22DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_sound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13341 Modified Files: SDL_sound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_sound.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_sound/devel/SDL_sound.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- SDL_sound.spec 23 Feb 2009 23:24:35 -0000 1.4 +++ SDL_sound.spec 24 Jul 2009 16:19:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: SDL_sound Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library handling decoding of several popular sound file formats Group: System Environment/Libraries License: LGPLv2+ @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:19:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:19:27 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161927.E758010F8E8@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:19:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:19:35 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161935.1E89110F8EB@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:19:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:19:39 +0000 Subject: [pkgdb] glibc: schwab has given up watchbugzilla Message-ID: <20090724161939.480D810F8F1@bastion2.fedora.phx.redhat.com> schwab has given up the watchbugzilla acl on glibc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:19:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:19:40 +0000 (UTC) Subject: rpms/SDL_ttf/devel SDL_ttf.spec,1.17,1.18 Message-ID: <20090724161940.677F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SDL_ttf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13512 Modified Files: SDL_ttf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SDL_ttf.spec =================================================================== RCS file: /cvs/pkgs/rpms/SDL_ttf/devel/SDL_ttf.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- SDL_ttf.spec 23 Feb 2009 23:25:31 -0000 1.17 +++ SDL_ttf.spec 24 Jul 2009 16:19:40 -0000 1.18 @@ -1,6 +1,6 @@ Name: SDL_ttf Version: 2.0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple DirectMedia Layer TrueType Font library Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:19:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:19:56 +0000 (UTC) Subject: rpms/SIBsim4/devel SIBsim4.spec,1.14,1.15 Message-ID: <20090724161956.D7AB811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SIBsim4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13699 Modified Files: SIBsim4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SIBsim4.spec =================================================================== RCS file: /cvs/pkgs/rpms/SIBsim4/devel/SIBsim4.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- SIBsim4.spec 23 Feb 2009 23:26:26 -0000 1.14 +++ SIBsim4.spec 24 Jul 2009 16:19:56 -0000 1.15 @@ -1,6 +1,6 @@ Name: SIBsim4 Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Align expressed RNA sequences on a DNA template Group: Applications/Engineering License: GPLv2+ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:20:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:20:13 +0000 (UTC) Subject: rpms/SILLY/devel SILLY.spec,1.5,1.6 Message-ID: <20090724162013.C993511C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SILLY/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13927 Modified Files: SILLY.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SILLY.spec =================================================================== RCS file: /cvs/pkgs/rpms/SILLY/devel/SILLY.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- SILLY.spec 23 Feb 2009 23:27:17 -0000 1.5 +++ SILLY.spec 24 Jul 2009 16:20:13 -0000 1.6 @@ -1,6 +1,6 @@ Name: SILLY Version: 0.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple and easy to use library for image loading Group: System Environment/Libraries License: MIT @@ -98,6 +98,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:20:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:20:29 +0000 (UTC) Subject: rpms/SIMVoleon/devel SIMVoleon.spec,1.12,1.13 Message-ID: <20090724162029.DA23211C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SIMVoleon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14111 Modified Files: SIMVoleon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SIMVoleon.spec =================================================================== RCS file: /cvs/pkgs/rpms/SIMVoleon/devel/SIMVoleon.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- SIMVoleon.spec 23 Feb 2009 23:28:09 -0000 1.12 +++ SIMVoleon.spec 24 Jul 2009 16:20:29 -0000 1.13 @@ -13,7 +13,7 @@ Summary: Volume rendering library for Coin Name: SIMVoleon Version: %{rpmvers} -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -105,6 +105,9 @@ mv ${RPM_BUILD_ROOT}%{_datadir}/Coin/con %doc %{coin_htmldir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:20:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:20:46 +0000 (UTC) Subject: rpms/SOAPpy/devel SOAPpy.spec,1.10,1.11 Message-ID: <20090724162046.D7A1511C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SOAPpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14299 Modified Files: SOAPpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SOAPpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/SOAPpy/devel/SOAPpy.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- SOAPpy.spec 23 Feb 2009 23:29:00 -0000 1.10 +++ SOAPpy.spec 24 Jul 2009 16:20:46 -0000 1.11 @@ -2,7 +2,7 @@ Name: SOAPpy Version: 0.11.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Full-featured SOAP library for Python Group: Development/Languages @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.11.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:21:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:21:03 +0000 (UTC) Subject: rpms/ScientificPython/devel ScientificPython.spec,1.19,1.20 Message-ID: <20090724162103.89DC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ScientificPython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14513 Modified Files: ScientificPython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ScientificPython.spec =================================================================== RCS file: /cvs/pkgs/rpms/ScientificPython/devel/ScientificPython.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ScientificPython.spec 15 Jul 2009 18:00:58 -0000 1.19 +++ ScientificPython.spec 24 Jul 2009 16:21:03 -0000 1.20 @@ -3,7 +3,7 @@ Name: ScientificPython Version: 2.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A collection of Python modules that are useful for scientific computing Group: Development/Languages @@ -156,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %doc Doc/Reference Examples Doc/BSP_Tutorial.pdf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Jef Spaleta - 2.8-6 - Even better patch! From jkeating at fedoraproject.org Fri Jul 24 16:21:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:21:21 +0000 (UTC) Subject: rpms/SevenZip/devel SevenZip.spec,1.1,1.2 Message-ID: <20090724162121.35B5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SevenZip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14727 Modified Files: SevenZip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SevenZip.spec =================================================================== RCS file: /cvs/pkgs/rpms/SevenZip/devel/SevenZip.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- SevenZip.spec 27 Jun 2009 01:59:13 -0000 1.1 +++ SevenZip.spec 24 Jul 2009 16:21:21 -0000 1.2 @@ -7,7 +7,7 @@ URL: http://www.7-zip.org/sdk.html Source0: http://downloads.sourceforge.net/sevenzip/lzma%{vershort}.tar.bz2 Group: System Environment/Libraries Version: 4.65 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -120,5 +120,8 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Orcan Ogetbil - 4.65-1 - Initial Fedora build From cwickert at fedoraproject.org Fri Jul 24 16:21:21 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 16:21:21 +0000 (UTC) Subject: rpms/xfburn/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 xfburn.spec, 1.5, 1.6 Message-ID: <20090724162121.9324911C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfburn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14715 Modified Files: .cvsignore sources xfburn.spec Log Message: * Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 25 Feb 2009 12:05:24 -0000 1.4 +++ .cvsignore 24 Jul 2009 16:21:21 -0000 1.5 @@ -1 +1 @@ -xfburn-0.4.1.tar.bz2 +xfburn-0.4.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Feb 2009 12:05:24 -0000 1.4 +++ sources 24 Jul 2009 16:21:21 -0000 1.5 @@ -1 +1 @@ -f5ed76149fd348504d4a75830b4996dc xfburn-0.4.1.tar.bz2 +67533208e2f487bdf6c779cfedae809d xfburn-0.4.2.tar.bz2 Index: xfburn.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/devel/xfburn.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xfburn.spec 25 Feb 2009 12:05:24 -0000 1.5 +++ xfburn.spec 24 Jul 2009 16:21:21 -0000 1.6 @@ -1,12 +1,12 @@ Name: xfburn -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: Simple CD burning tool for Xfce Group: Applications/Archiving License: GPLv2+ URL: http://goodies.xfce.org/projects/applications/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://www.xfce.org/archive/src/apps/xfburn/0.4/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libxfcegui4-devel >= 4.4.0 Thunar-devel >= 0.3.0 @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 + * Wed Feb 25 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 - Include new manpage From jkeating at fedoraproject.org Fri Jul 24 16:23:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:23:37 +0000 (UTC) Subject: rpms/SimGear/devel SimGear.spec,1.19,1.20 Message-ID: <20090724162337.12BC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SimGear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15863 Modified Files: SimGear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SimGear.spec =================================================================== RCS file: /cvs/pkgs/rpms/SimGear/devel/SimGear.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- SimGear.spec 14 Jun 2009 20:09:18 -0000 1.19 +++ SimGear.spec 24 Jul 2009 16:23:36 -0000 1.20 @@ -1,6 +1,6 @@ Name: SimGear Version: 1.9.1 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Libraries Summary: Simulation library components @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libsgxml.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Fabrice Bellet 1.9.1-6 - Fix header file installed twice From jkeating at fedoraproject.org Fri Jul 24 16:23:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:23:53 +0000 (UTC) Subject: rpms/SoQt/devel SoQt.spec,1.29,1.30 Message-ID: <20090724162353.1070811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SoQt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16047 Modified Files: SoQt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SoQt.spec =================================================================== RCS file: /cvs/pkgs/rpms/SoQt/devel/SoQt.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- SoQt.spec 23 Feb 2009 23:32:49 -0000 1.29 +++ SoQt.spec 24 Jul 2009 16:23:52 -0000 1.30 @@ -4,7 +4,7 @@ Summary: High-level 3D visualization library Name: SoQt Version: 1.4.1 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2 Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/*.?.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:24:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:24:08 +0000 (UTC) Subject: rpms/SolarModel/devel SolarModel.spec,1.3,1.4 Message-ID: <20090724162408.AE29F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SolarModel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16245 Modified Files: SolarModel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SolarModel.spec =================================================================== RCS file: /cvs/pkgs/rpms/SolarModel/devel/SolarModel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- SolarModel.spec 1 Apr 2009 17:50:58 -0000 1.3 +++ SolarModel.spec 24 Jul 2009 16:24:08 -0000 1.4 @@ -1,7 +1,7 @@ Name: SolarModel Summary: Real-time 3D Solar System simulation Version: 2.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: System Environment/Base Source0: http://downloads.sourceforge.net/solarmodel/%{name}_src_2_1.zip @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/SolarModel.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Tom "spot" Callaway - 2.1-4 - fix desktop file (bz 492751) From jkeating at fedoraproject.org Fri Jul 24 16:24:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:24:22 +0000 (UTC) Subject: rpms/Sprog/devel Sprog.spec,1.12,1.13 Message-ID: <20090724162422.E9D4B11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Sprog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16440 Modified Files: Sprog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Sprog.spec =================================================================== RCS file: /cvs/pkgs/rpms/Sprog/devel/Sprog.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- Sprog.spec 21 Apr 2009 22:01:35 -0000 1.12 +++ Sprog.spec 24 Jul 2009 16:24:22 -0000 1.13 @@ -1,6 +1,6 @@ Name: Sprog Version: 0.14 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A graphical tool to build programs by plugging parts together Group: Applications/System @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-Sprog.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Milos Jakubicek - 0.14-16 - Added missing R: perl(Gnome2::Canvas), resolves BZ#468548. From jkeating at fedoraproject.org Fri Jul 24 16:24:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:24:50 +0000 (UTC) Subject: rpms/TVAnytimeAPI/devel TVAnytimeAPI.spec,1.5,1.6 Message-ID: <20090724162450.52E7B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/TVAnytimeAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16817 Modified Files: TVAnytimeAPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: TVAnytimeAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/TVAnytimeAPI/devel/TVAnytimeAPI.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- TVAnytimeAPI.spec 13 Mar 2009 13:23:08 -0000 1.5 +++ TVAnytimeAPI.spec 24 Jul 2009 16:24:50 -0000 1.6 @@ -1,6 +1,6 @@ Name: TVAnytimeAPI Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A java API for parsing, manipulating and creating TV-Anytime metadata Group: Development/Libraries License: LGPLv2+ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Sandro Mathys - 1.3-5 - Added patch submitted by Tim Coote with the parts that were added to the standard implemented by TVAnytimeAPI. From jkeating at fedoraproject.org Fri Jul 24 16:24:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:24:36 +0000 (UTC) Subject: rpms/SteGUI/devel SteGUI.spec,1.4,1.5 Message-ID: <20090724162436.7B06711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/SteGUI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16627 Modified Files: SteGUI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: SteGUI.spec =================================================================== RCS file: /cvs/pkgs/rpms/SteGUI/devel/SteGUI.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- SteGUI.spec 23 Feb 2009 23:35:24 -0000 1.4 +++ SteGUI.spec 24 Jul 2009 16:24:36 -0000 1.5 @@ -1,6 +1,6 @@ Name: SteGUI Version: 0.0.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Graphical front-end to Steghide Summary(fr): Interface graphique pour Steghide @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}-icon.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.0.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:25:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:25:04 +0000 (UTC) Subject: rpms/TeXmacs/devel TeXmacs.spec,1.64,1.65 Message-ID: <20090724162504.B8D6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/TeXmacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17022 Modified Files: TeXmacs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: TeXmacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/TeXmacs/devel/TeXmacs.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- TeXmacs.spec 13 Jun 2009 18:37:39 -0000 1.64 +++ TeXmacs.spec 24 Jul 2009 16:25:04 -0000 1.65 @@ -1,6 +1,6 @@ Name: TeXmacs Version: 1.0.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Structured wysiwyg scientific text editor Group: Applications/Editors @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Gerard Milmeister - 1.0.7.2-1 - new release 1.0.7.2 From jkeating at fedoraproject.org Fri Jul 24 16:25:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:25:18 +0000 (UTC) Subject: rpms/Terminal/devel Terminal.spec,1.29,1.30 Message-ID: <20090724162518.CE4A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17220 Modified Files: Terminal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/Terminal/devel/Terminal.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- Terminal.spec 20 Jul 2009 18:44:35 -0000 1.29 +++ Terminal.spec 24 Jul 2009 16:25:18 -0000 1.30 @@ -1,7 +1,7 @@ Summary: X Terminal Emulator Name: Terminal Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://goodies.xfce.org/projects/applications/terminal/ Source0: http://goodies.xfce.org/releases/terminal/Terminal-%{version}.tar.bz2 @@ -68,6 +68,9 @@ fi %{_libexecdir}/TerminalHelp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Christoph Wickert - 0.4.0-1 - Update to 0.4.0 - Use desktop-file-install From jkeating at fedoraproject.org Fri Jul 24 16:25:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:25:32 +0000 (UTC) Subject: rpms/Thunar/devel Thunar.spec,1.24,1.25 Message-ID: <20090724162532.CB58F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Thunar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17401 Modified Files: Thunar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Thunar.spec =================================================================== RCS file: /cvs/pkgs/rpms/Thunar/devel/Thunar.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- Thunar.spec 20 Apr 2009 02:17:36 -0000 1.24 +++ Thunar.spec 24 Jul 2009 16:25:32 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Thunar File Manager Name: Thunar Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://thunar.xfce.org/ Source0: http://www.xfce.org/archive/xfce-4.6.1/src/Thunar-%{version}.tar.bz2 @@ -198,6 +198,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 1.0.1-1 - Update to 1.0.1 From jkeating at fedoraproject.org Fri Jul 24 16:25:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:25:46 +0000 (UTC) Subject: rpms/TnL/devel TnL.spec,1.11,1.12 Message-ID: <20090724162546.A315311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/TnL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17562 Modified Files: TnL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: TnL.spec =================================================================== RCS file: /cvs/pkgs/rpms/TnL/devel/TnL.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- TnL.spec 23 Feb 2009 23:40:06 -0000 1.11 +++ TnL.spec 24 Jul 2009 16:25:46 -0000 1.12 @@ -7,7 +7,7 @@ Name: TnL Version: 071111 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Thunder & Lightning - A futuristic action flight simulator game Group: Amusements/Games License: GPL+ @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 071111-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 071111-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:26:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:26:03 +0000 (UTC) Subject: rpms/TnL-data/devel TnL-data.spec,1.5,1.6 Message-ID: <20090724162603.7C80E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/TnL-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17722 Modified Files: TnL-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: TnL-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/TnL-data/devel/TnL-data.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- TnL-data.spec 23 Feb 2009 23:41:09 -0000 1.5 +++ TnL-data.spec 24 Jul 2009 16:26:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: TnL-data Version: 071111 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Datafiles for Thunder and Lightning Group: Amusements/Games License: GPL+ @@ -61,6 +61,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 071111-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 071111-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:26:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:26:19 +0000 (UTC) Subject: rpms/TurboGears/devel TurboGears.spec,1.45,1.46 Message-ID: <20090724162619.C6E8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/TurboGears/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17966 Modified Files: TurboGears.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: TurboGears.spec =================================================================== RCS file: /cvs/pkgs/rpms/TurboGears/devel/TurboGears.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- TurboGears.spec 1 Jun 2009 20:06:09 -0000 1.45 +++ TurboGears.spec 24 Jul 2009 16:26:19 -0000 1.46 @@ -3,7 +3,7 @@ Name: TurboGears Version: 1.0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Back-to-front web development in Python Group: Development/Languages @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{python_sitelib}/turbogears/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 1.0.8-4 - Remove python-json as a requirement From jkeating at fedoraproject.org Fri Jul 24 16:26:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:26:34 +0000 (UTC) Subject: rpms/UnihanDb/devel UnihanDb.spec,1.3,1.4 Message-ID: <20090724162634.BEEDA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/UnihanDb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18177 Modified Files: UnihanDb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: UnihanDb.spec =================================================================== RCS file: /cvs/pkgs/rpms/UnihanDb/devel/UnihanDb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- UnihanDb.spec 23 Feb 2009 23:42:53 -0000 1.3 +++ UnihanDb.spec 24 Jul 2009 16:26:34 -0000 1.4 @@ -2,7 +2,7 @@ Name: UnihanDb %define UnihanDb_name Unihan.db %define rel_num 7 Version: 5.1.0 -Release: %{rel_num}%{?dist}.1 +Release: %{rel_num}%{?dist}.2 Group: System Environment/Libraries License: MIT Summary: The Unihan character database in fifth normal form @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1.0-7.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.1.0-7.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:27:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:27:39 +0000 (UTC) Subject: rpms/WritRecogn/devel WritRecogn.spec,1.4,1.5 Message-ID: <20090724162739.0145011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/WritRecogn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18820 Modified Files: WritRecogn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: WritRecogn.spec =================================================================== RCS file: /cvs/pkgs/rpms/WritRecogn/devel/WritRecogn.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- WritRecogn.spec 23 Feb 2009 23:45:51 -0000 1.4 +++ WritRecogn.spec 24 Jul 2009 16:27:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: WritRecogn Version: 0.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Handwriting recognizer for CJK characters Group: System Environment/Libraries License: GPLv2+ @@ -95,6 +95,9 @@ fi %{_datadir}/gtk-doc/html/WritRecogn %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.1.9-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:27:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:27:23 +0000 (UTC) Subject: rpms/WindowMaker/devel WindowMaker.spec,1.29,1.30 Message-ID: <20090724162723.791C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/WindowMaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18566 Modified Files: WindowMaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: WindowMaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/WindowMaker/devel/WindowMaker.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- WindowMaker.spec 23 Feb 2009 23:44:56 -0000 1.29 +++ WindowMaker.spec 24 Jul 2009 16:27:23 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A fast, feature rich Window Manager Name: WindowMaker Version: 0.92.0 -Release: 19%{?dist} +Release: 20%{?dist} License: GPLv2+ Group: User Interface/Desktops @@ -260,6 +260,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/wraster.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.92.0-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.92.0-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:27:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:27:53 +0000 (UTC) Subject: rpms/Xaw3d/devel Xaw3d.spec,1.36,1.37 Message-ID: <20090724162753.DB3DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Xaw3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18983 Modified Files: Xaw3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Xaw3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/Xaw3d/devel/Xaw3d.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- Xaw3d.spec 15 Mar 2009 19:32:38 -0000 1.36 +++ Xaw3d.spec 24 Jul 2009 16:27:53 -0000 1.37 @@ -1,7 +1,7 @@ Summary: A version of the MIT Athena widget set for X Name: Xaw3d Version: 1.5E -Release: 14%{?dist} +Release: 15%{?dist} Group: System Environment/Libraries Source: ftp://ftp.visi.com/users/hawkeyd/X/Xaw3d-%{version}.tar.gz Patch: Xaw3d-1.5E-xorg-imake.patch @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/X11/Xaw3d %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5E-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Hans de Goede 1.5E-14 - Fix a bunch of (potentially harmfull) compiler warnings From jkeating at fedoraproject.org Fri Jul 24 16:28:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:28:09 +0000 (UTC) Subject: rpms/Zim/devel Zim.spec,1.14,1.15 Message-ID: <20090724162809.0DCB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Zim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19156 Modified Files: Zim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Zim.spec =================================================================== RCS file: /cvs/pkgs/rpms/Zim/devel/Zim.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- Zim.spec 17 Mar 2009 01:46:46 -0000 1.14 +++ Zim.spec 24 Jul 2009 16:28:08 -0000 1.15 @@ -1,6 +1,6 @@ Name: Zim Version: 0.28 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Desktop wiki & notekeeper Group: Applications/Editors @@ -100,6 +100,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Chris Weyl 0.28-1 - update to 0.28 From jkeating at fedoraproject.org Fri Jul 24 16:28:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:28:24 +0000 (UTC) Subject: rpms/a2ps/devel a2ps.spec,1.92,1.93 Message-ID: <20090724162824.8942111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/a2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19330 Modified Files: a2ps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: a2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/a2ps/devel/a2ps.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- a2ps.spec 22 Jul 2009 19:40:41 -0000 1.92 +++ a2ps.spec 24 Jul 2009 16:28:24 -0000 1.93 @@ -13,7 +13,7 @@ Summary: Converts text and other types of files to PostScript Name: a2ps Version: 4.14 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv3+ Group: Applications/Publishing Source0: http://ftp.gnu.org/gnu/a2ps/%{name}-%{version}.tar.gz @@ -288,6 +288,9 @@ exit 0 %{emacs_lispdir}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Adam Jackson 4.14-9 - Requires: psutils-perl for fixps From jkeating at fedoraproject.org Fri Jul 24 16:28:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:28:41 +0000 (UTC) Subject: rpms/aalib/devel aalib.spec,1.22,1.23 Message-ID: <20090724162841.2948A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aalib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19546 Modified Files: aalib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aalib.spec =================================================================== RCS file: /cvs/pkgs/rpms/aalib/devel/aalib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- aalib.spec 23 Feb 2009 23:49:22 -0000 1.22 +++ aalib.spec 24 Jul 2009 16:28:40 -0000 1.23 @@ -3,7 +3,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.17.%{rc_subver}%{?dist} +Release: 0.18.%{rc_subver}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://aa-project.sourceforge.net/aalib/ @@ -111,6 +111,9 @@ fi %{_datadir}/aclocal/aalib.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-0.18.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.0-0.17.rc5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:31:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:31:01 +0000 (UTC) Subject: rpms/abook/devel abook.spec,1.7,1.8 Message-ID: <20090724163101.40A8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21372 Modified Files: abook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abook.spec =================================================================== RCS file: /cvs/pkgs/rpms/abook/devel/abook.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- abook.spec 23 Feb 2009 23:56:34 -0000 1.7 +++ abook.spec 24 Jul 2009 16:31:01 -0000 1.8 @@ -1,6 +1,6 @@ Name: abook Version: 0.6.0 -Release: 0.4.pre2%{?dist} +Release: 0.5.pre2%{?dist} License: GPLv2+ URL: http://abook.sourceforge.net/ Summary: Text-based addressbook program for mutt @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/abookrc.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-0.5.pre2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.0-0.4.pre2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:31:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:31:15 +0000 (UTC) Subject: rpms/aboot/devel aboot.spec,1.2,1.3 Message-ID: <20090724163115.E24AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21561 Modified Files: aboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/aboot/devel/aboot.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- aboot.spec 23 Feb 2009 23:57:28 -0000 1.2 +++ aboot.spec 24 Jul 2009 16:31:15 -0000 1.3 @@ -2,7 +2,7 @@ Summary: A bootloader which can be started from the SRM console Name: aboot Version: 1.0 -Release: 0.2.%{prever}%{?dist} +Release: 0.3.%{prever}%{?dist} ExclusiveArch: alpha License: GPLv2+ Group: System Environment/Base @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.3.pre20040408 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-0.2.pre20040408 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sseago at fedoraproject.org Fri Jul 24 16:31:21 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Fri, 24 Jul 2009 16:31:21 +0000 (UTC) Subject: rpms/rubygem-rails/F-11 rubygem-rails.spec,1.11,1.12 Message-ID: <20090724163121.B089F11C00CE@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/rubygem-rails/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21649 Modified Files: rubygem-rails.spec Log Message: additional fix for BZ 496480 Index: rubygem-rails.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/F-11/rubygem-rails.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- rubygem-rails.spec 6 May 2009 23:38:01 -0000 1.11 +++ rubygem-rails.spec 24 Jul 2009 16:31:21 -0000 1.12 @@ -7,7 +7,7 @@ Summary: Web-application framework Name: rubygem-%{gemname} Version: 2.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -55,9 +55,6 @@ done # Remove backup files find %{buildroot}/%{geminstdir} -type f -name "*~" -delete -# Delete zero-length files -find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; - # Fix anything executable that does not have a shebang for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file @@ -100,6 +97,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 24 2009 Scott Seago - 2.3.2-3 +- Remove the 'delete zero length files' bit, as some of these are needed. + * Wed May 6 2009 David Lutterkort - 2.3.2-2 - Fix replacement of shebang lines; broke scripts/generate (bz 496480) From jkeating at fedoraproject.org Fri Jul 24 16:31:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:31:32 +0000 (UTC) Subject: rpms/abrt/devel abrt.spec,1.6,1.7 Message-ID: <20090724163132.35E1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abrt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21754 Modified Files: abrt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abrt.spec =================================================================== RCS file: /cvs/pkgs/rpms/abrt/devel/abrt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- abrt.spec 10 Jul 2009 08:15:22 -0000 1.6 +++ abrt.spec 24 Jul 2009 16:31:32 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Automatic bug detection and reporting tool Name: abrt Version: 0.0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ @@ -301,6 +301,9 @@ fi %{_bindir}/abrt-cli %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Jiri Moskovcak 0.0.4-3 - fixed dependencies in spec file From jkeating at fedoraproject.org Fri Jul 24 16:31:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:31:52 +0000 (UTC) Subject: rpms/abuse/devel abuse.spec,1.10,1.11 Message-ID: <20090724163152.191C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21980 Modified Files: abuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/abuse/devel/abuse.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- abuse.spec 23 Feb 2009 23:58:27 -0000 1.10 +++ abuse.spec 24 Jul 2009 16:31:51 -0000 1.11 @@ -1,6 +1,6 @@ Name: abuse Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The classic Crack-Dot-Com game Group: Amusements/Games License: GPLv2+ @@ -67,6 +67,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:32:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:32:28 +0000 (UTC) Subject: rpms/accrete/devel accrete.spec,1.3,1.4 Message-ID: <20090724163228.4700A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/accrete/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22383 Modified Files: accrete.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: accrete.spec =================================================================== RCS file: /cvs/pkgs/rpms/accrete/devel/accrete.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- accrete.spec 24 Feb 2009 00:00:08 -0000 1.3 +++ accrete.spec 24 Jul 2009 16:32:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: accrete Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Accrete is a physical simulation of solar system planet formation License: Public Domain @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/accrete %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:32:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:32:13 +0000 (UTC) Subject: rpms/abyssinica-fonts/devel abyssinica-fonts.spec,1.4,1.5 Message-ID: <20090724163213.10C7C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abyssinica-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22194 Modified Files: abyssinica-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abyssinica-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/abyssinica-fonts/devel/abyssinica-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- abyssinica-fonts.spec 23 Feb 2009 23:59:18 -0000 1.4 +++ abyssinica-fonts.spec 24 Jul 2009 16:32:12 -0000 1.5 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SIL Abyssinica fonts Group: User Interface/X @@ -61,6 +61,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:32:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:32:44 +0000 (UTC) Subject: rpms/ace/devel ace.spec,1.9,1.10 Message-ID: <20090724163244.0EC8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22573 Modified Files: ace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ace.spec =================================================================== RCS file: /cvs/pkgs/rpms/ace/devel/ace.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ace.spec 16 Mar 2009 18:21:38 -0000 1.9 +++ ace.spec 24 Jul 2009 16:32:43 -0000 1.10 @@ -12,7 +12,7 @@ Summary: Appliance Configuration Engine Name: ace Version: 0.0.7 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Internet License: LGPLv2+ @@ -256,6 +256,9 @@ fi # Changelog ########### %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 16 2009 Bryan Kearney 0.0.7-2 - Ovirt enhancements from Joey Boggs From jkeating at fedoraproject.org Fri Jul 24 16:33:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:33:00 +0000 (UTC) Subject: rpms/acheck/devel acheck.spec,1.1,1.2 Message-ID: <20090724163300.3755811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22789 Modified Files: acheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/acheck/devel/acheck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- acheck.spec 21 Jun 2009 12:33:26 -0000 1.1 +++ acheck.spec 24 Jul 2009 16:33:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: acheck Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Check common localisation mistakes Group: Applications/Text @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/locale/sv/LC_MESSAGES/%{name}.mo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Rakesh Pandit 0.5.1-2 - Fixed Provides and Requires From jkeating at fedoraproject.org Fri Jul 24 16:33:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:33:15 +0000 (UTC) Subject: rpms/acheck-rules/devel acheck-rules.spec,1.1,1.2 Message-ID: <20090724163315.C8EFA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acheck-rules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22984 Modified Files: acheck-rules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acheck-rules.spec =================================================================== RCS file: /cvs/pkgs/rpms/acheck-rules/devel/acheck-rules.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- acheck-rules.spec 17 Jun 2009 05:21:42 -0000 1.1 +++ acheck-rules.spec 24 Jul 2009 16:33:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: acheck-rules Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Rules for acheck Group: Applications/Text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Rakesh Pandit 0.3.1-2 - Fixed Source0 url and removed acheck dependency From jkeating at fedoraproject.org Fri Jul 24 16:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:34:03 +0000 (UTC) Subject: rpms/acpi/devel acpi.spec,1.7,1.8 Message-ID: <20090724163403.3D61511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23518 Modified Files: acpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/acpi/devel/acpi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- acpi.spec 13 Jun 2009 22:06:18 -0000 1.7 +++ acpi.spec 24 Jul 2009 16:34:03 -0000 1.8 @@ -2,7 +2,7 @@ Summary: Command-line ACPI client Summary(pl): Klient ACPI dzia?aj?cy z linii polece? Name: acpi Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: acpi-%{version}.tar.gz @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/acpi %{_datadir}/man/man1/acpi.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Steven M. Parrish 1.3-1 - New upstream release - Removed obsolete patch From jkeating at fedoraproject.org Fri Jul 24 16:34:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:34:18 +0000 (UTC) Subject: rpms/acpid/devel acpid.spec,1.35,1.36 Message-ID: <20090724163418.0F76011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23699 Modified Files: acpid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/acpid/devel/acpid.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- acpid.spec 23 Apr 2009 12:01:11 -0000 1.35 +++ acpid.spec 24 Jul 2009 16:34:17 -0000 1.36 @@ -1,7 +1,7 @@ Summary: ACPI Event Daemon Name: acpid Version: 1.0.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons Source: http://prdownloads.sourceforge.net/acpid/acpid-%{version}.tar.gz @@ -81,6 +81,9 @@ if [ "$1" -ge "1" ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Zdenek Prikryl - 1.0.10-1 - Updated to version 1.0.10 From jkeating at fedoraproject.org Fri Jul 24 16:34:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:34:35 +0000 (UTC) Subject: rpms/acpitool/devel acpitool.spec,1.16,1.17 Message-ID: <20090724163435.BAEE111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acpitool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23972 Modified Files: acpitool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acpitool.spec =================================================================== RCS file: /cvs/pkgs/rpms/acpitool/devel/acpitool.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- acpitool.spec 24 Feb 2009 00:05:18 -0000 1.16 +++ acpitool.spec 24 Jul 2009 16:34:35 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Command line ACPI client Name: acpitool Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://freeunix.dyndns.org:8000/site2/acpitool.shtml @@ -41,6 +41,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/man1/acpitool* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:34:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:34:50 +0000 (UTC) Subject: rpms/adanaxisgpl/devel adanaxisgpl.spec,1.5,1.6 Message-ID: <20090724163450.033DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adanaxisgpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24181 Modified Files: adanaxisgpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adanaxisgpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/adanaxisgpl/devel/adanaxisgpl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- adanaxisgpl.spec 2 Mar 2009 17:18:55 -0000 1.5 +++ adanaxisgpl.spec 24 Jul 2009 16:34:49 -0000 1.6 @@ -1,8 +1,8 @@ # Spec file for Mandriva Linux # $Id$ # $Log$ -# Revision 1.5 2009/03/02 17:18:55 caolanm -# constify strchr +# Revision 1.6 2009/07/24 16:34:49 jkeating +# - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild # # Revision 1.4 2007/10/18 00:04:13 southa # Fedora packaging review comments @@ -35,7 +35,7 @@ Summary: Action game in four spatial dimensions Name: adanaxisgpl Version: 1.2.5 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Amusements/Games URL: http://www.mushware.com/ @@ -156,6 +156,9 @@ rm -rf %{buildroot} %_mandir/man6/%{name}*.6* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Caol?n McNamara - 1.2.5-4 - constify strchr From mtasaka at fedoraproject.org Fri Jul 24 16:35:06 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 16:35:06 +0000 (UTC) Subject: rpms/cmigemo/devel cmigemo.spec,1.8,1.9 Message-ID: <20090724163506.6EA2F11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/cmigemo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24405 Modified Files: cmigemo.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - F-12: Mass rebuild Index: cmigemo.spec =================================================================== RCS file: /cvs/extras/rpms/cmigemo/devel/cmigemo.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cmigemo.spec 23 Feb 2009 22:10:58 -0000 1.8 +++ cmigemo.spec 24 Jul 2009 16:35:06 -0000 1.9 @@ -14,7 +14,7 @@ Name: cmigemo Version: %{mainver} -Release: %{rel}%{?dist}.1 +Release: %{rel}%{?dist}.2 Summary: C interface of Ruby/Migemo Japanese incremental search tool Group: System Environment/Libraries @@ -137,6 +137,9 @@ cd .. %{_libdir}/libmigemo.so %changelog +* Sat Jul 25 2009 Mamoru Tasaka +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 16:35:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:35:03 +0000 (UTC) Subject: rpms/adaptx/devel adaptx.spec,1.21,1.22 Message-ID: <20090724163503.C34F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adaptx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24373 Modified Files: adaptx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adaptx.spec =================================================================== RCS file: /cvs/pkgs/rpms/adaptx/devel/adaptx.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- adaptx.spec 24 Feb 2009 00:07:02 -0000 1.21 +++ adaptx.spec 24 Jul 2009 16:35:03 -0000 1.22 @@ -34,7 +34,7 @@ Name: adaptx Version: 0.9.13 -Release: 7%{?dist} +Release: 8%{?dist} Summary: AdaptX XSLT processor and XPath engine License: BSD Group: Applications/Text @@ -170,6 +170,9 @@ fi %doc build/doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.13-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:35:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:35:17 +0000 (UTC) Subject: rpms/adf-accanthis-fonts/devel adf-accanthis-fonts.spec,1.1,1.2 Message-ID: <20090724163517.B683B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adf-accanthis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24593 Modified Files: adf-accanthis-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adf-accanthis-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/adf-accanthis-fonts/devel/adf-accanthis-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- adf-accanthis-fonts.spec 16 Jul 2009 18:18:05 -0000 1.1 +++ adf-accanthis-fonts.spec 24 Jul 2009 16:35:17 -0000 1.2 @@ -17,7 +17,7 @@ Accanthis is well suited to book typeset Name: %{fontname}-fonts # Use the main PS version (as documented in NOTICE) Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A ?modernized? garaldic serif typeface, ?Galliard? alternative Group: User Interface/X @@ -126,6 +126,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 - 1.6-2 ? Use a macro construct friendlier to pre-F12 releases From jkeating at fedoraproject.org Fri Jul 24 16:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:35:33 +0000 (UTC) Subject: rpms/adime/devel adime.spec,1.7,1.8 Message-ID: <20090724163533.8D66911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24755 Modified Files: adime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adime.spec =================================================================== RCS file: /cvs/pkgs/rpms/adime/devel/adime.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- adime.spec 24 Feb 2009 00:07:58 -0000 1.7 +++ adime.spec 24 Jul 2009 16:35:33 -0000 1.8 @@ -1,6 +1,6 @@ Name: adime Version: 2.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Allegro Dialogs Made Easy Group: System Environment/Libraries License: zlib @@ -89,6 +89,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:35:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:35:50 +0000 (UTC) Subject: rpms/adjtimex/devel adjtimex.spec,1.28,1.29 Message-ID: <20090724163550.DE57311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adjtimex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24999 Modified Files: adjtimex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adjtimex.spec =================================================================== RCS file: /cvs/pkgs/rpms/adjtimex/devel/adjtimex.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- adjtimex.spec 17 Jun 2009 14:41:21 -0000 1.28 +++ adjtimex.spec 24 Jul 2009 16:35:50 -0000 1.29 @@ -1,7 +1,7 @@ Summary: A utility for adjusting kernel time variables Name: adjtimex Version: 1.27.1 -Release: 1%{?dist} +Release: 2%{?dist} ExclusiveOS: Linux License: GPLv2+ Group: System Environment/Base @@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/adjtimex.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.27.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Miroslav Lichvar 1.27.1-1 - update to 1.27.1 From jkeating at fedoraproject.org Fri Jul 24 16:36:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:36:08 +0000 (UTC) Subject: rpms/adns/devel adns.spec,1.17,1.18 Message-ID: <20090724163608.11EE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25543 Modified Files: adns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adns.spec =================================================================== RCS file: /cvs/pkgs/rpms/adns/devel/adns.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- adns.spec 24 Feb 2009 00:10:39 -0000 1.17 +++ adns.spec 24 Jul 2009 16:36:07 -0000 1.18 @@ -1,6 +1,6 @@ Name: adns Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Advanced, easy to use, asynchronous-capable DNS client library @@ -111,6 +111,9 @@ rm -fr $RPM_BUILD_ROOT %attr(755,root,root) %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:36:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:36:23 +0000 (UTC) Subject: rpms/adonthell/devel adonthell.spec,1.4,1.5 Message-ID: <20090724163623.579D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adonthell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25941 Modified Files: adonthell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adonthell.spec =================================================================== RCS file: /cvs/pkgs/rpms/adonthell/devel/adonthell.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- adonthell.spec 1 Mar 2009 14:46:03 -0000 1.4 +++ adonthell.spec 24 Jul 2009 16:36:22 -0000 1.5 @@ -2,7 +2,7 @@ Name: adonthell Version: 0.3.5 -Release: 0.6%{?dist} +Release: 0.7%{?dist} Summary: A 2D graphical RPG game Group: Amusements/Games @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-0.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Mathieu Bridon - 0.3.5-0.6 - Fixed building with GCC 4.4 From jkeating at fedoraproject.org Fri Jul 24 16:36:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:36:39 +0000 (UTC) Subject: rpms/adplay/devel adplay.spec,1.8,1.9 Message-ID: <20090724163639.148A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26107 Modified Files: adplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/adplay/devel/adplay.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- adplay.spec 24 Feb 2009 00:12:30 -0000 1.8 +++ adplay.spec 24 Jul 2009 16:36:38 -0000 1.9 @@ -3,7 +3,7 @@ Name: adplay Version: 1.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An AdLib (OPL2) music player build on AdPlug URL: http://adplug.sourceforge.net/ Group: Applications/Multimedia @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING NEWS README TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:36:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:36:53 +0000 (UTC) Subject: rpms/adplug/devel adplug.spec,1.10,1.11 Message-ID: <20090724163653.F333811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/adplug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26276 Modified Files: adplug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: adplug.spec =================================================================== RCS file: /cvs/pkgs/rpms/adplug/devel/adplug.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- adplug.spec 24 Feb 2009 00:13:24 -0000 1.10 +++ adplug.spec 24 Jul 2009 16:36:53 -0000 1.11 @@ -4,7 +4,7 @@ %define adplugdbver 2006-07-07 Name: adplug Version: 2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A software library for AdLib (OPL2) emulation URL: http://adplug.sourceforge.net/ Group: Applications/Multimedia @@ -100,6 +100,9 @@ fi %{_infodir}/*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:37:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:37:10 +0000 (UTC) Subject: rpms/advancecomp/devel advancecomp.spec,1.22,1.23 Message-ID: <20090724163710.2A42411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/advancecomp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26467 Modified Files: advancecomp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: advancecomp.spec =================================================================== RCS file: /cvs/pkgs/rpms/advancecomp/devel/advancecomp.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- advancecomp.spec 24 Feb 2009 00:14:16 -0000 1.22 +++ advancecomp.spec 24 Jul 2009 16:37:09 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Recompression utilities for .PNG, .MNG and .ZIP files Name: advancecomp Version: 1.15 -Release: 11 +Release: 12 License: GPLv2+ Group: Applications/Emulators URL: http://advancemame.sourceforge.net/ @@ -42,6 +42,9 @@ The main features are : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.15-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.15-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:37:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:37:23 +0000 (UTC) Subject: rpms/afflib/devel afflib.spec,1.28,1.29 Message-ID: <20090724163723.CA2D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/afflib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26629 Modified Files: afflib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: afflib.spec =================================================================== RCS file: /cvs/pkgs/rpms/afflib/devel/afflib.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- afflib.spec 21 May 2009 00:25:36 -0000 1.28 +++ afflib.spec 24 Jul 2009 16:37:23 -0000 1.29 @@ -1,6 +1,6 @@ Name: afflib Version: 3.3.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to support the Advanced Forensic Format Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 kwizart < kwizart at gmail.com > - 3.3.6-2 - Update to 3.3.6 - Add BR python-devel From jkeating at fedoraproject.org Fri Jul 24 16:37:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:37:37 +0000 (UTC) Subject: rpms/afpfs-ng/devel afpfs-ng.spec,1.3,1.4 Message-ID: <20090724163737.AAC7B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/afpfs-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26790 Modified Files: afpfs-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: afpfs-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/afpfs-ng/devel/afpfs-ng.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- afpfs-ng.spec 17 Jul 2009 16:27:43 -0000 1.3 +++ afpfs-ng.spec 24 Jul 2009 16:37:37 -0000 1.4 @@ -5,7 +5,7 @@ Name: afpfs-ng Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Apple Filing Protocol client Group: System Environment/Base @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Lubomir Rintel - 0.8.1-4 - Don't refer to AppleTalk in Summary From jkeating at fedoraproject.org Fri Jul 24 16:37:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:37:51 +0000 (UTC) Subject: rpms/afuse/devel afuse.spec,1.2,1.3 Message-ID: <20090724163751.86FC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/afuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26951 Modified Files: afuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: afuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/afuse/devel/afuse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- afuse.spec 24 Feb 2009 00:15:56 -0000 1.2 +++ afuse.spec 24 Jul 2009 16:37:51 -0000 1.3 @@ -1,7 +1,7 @@ Name: afuse Summary: An automounter implemented with FUSE Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://downloads.sourceforge.net/afuse/%{name}-%{version}.tar.gz @@ -38,6 +38,9 @@ rm -rf %{buildroot} %{_bindir}/afuse %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:38:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:38:05 +0000 (UTC) Subject: rpms/agave/devel agave.spec,1.15,1.16 Message-ID: <20090724163805.DA42011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/agave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27094 Modified Files: agave.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: agave.spec =================================================================== RCS file: /cvs/pkgs/rpms/agave/devel/agave.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- agave.spec 24 Feb 2009 00:16:46 -0000 1.15 +++ agave.spec 24 Jul 2009 16:38:05 -0000 1.16 @@ -1,6 +1,6 @@ Name: agave Version: 0.4.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Generate a variety of colorschemes from a single starting color Group: Applications/Multimedia @@ -121,6 +121,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:38:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:38:19 +0000 (UTC) Subject: rpms/agedu/devel agedu.spec,1.1,1.2 Message-ID: <20090724163819.9A39811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/agedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27242 Modified Files: agedu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: agedu.spec =================================================================== RCS file: /cvs/pkgs/rpms/agedu/devel/agedu.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- agedu.spec 31 May 2009 21:18:11 -0000 1.1 +++ agedu.spec 24 Jul 2009 16:38:19 -0000 1.2 @@ -2,7 +2,7 @@ Name: agedu Version: 0 -Release: 1.%{rel}%{?dist} +Release: 2.%{rel}%{?dist} Summary: An utility for tracking down wasted disk space Group: Applications/System License: MIT @@ -42,5 +42,8 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-2.r8442 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Jussi Lehtola - 0-1.r8442 - First release. From jkeating at fedoraproject.org Fri Jul 24 16:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:38:33 +0000 (UTC) Subject: rpms/agg/devel agg.spec,1.23,1.24 Message-ID: <20090724163833.CC20B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/agg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27406 Modified Files: agg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: agg.spec =================================================================== RCS file: /cvs/pkgs/rpms/agg/devel/agg.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- agg.spec 24 Feb 2009 00:17:37 -0000 1.23 +++ agg.spec 24 Jul 2009 16:38:33 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Anti-Grain Geometry graphical rendering engine Name: agg Version: 2.5 -Release: 7%{?dist} +Release: 8%{?dist} Group: System Environment/Libraries URL: http://www.antigrain.com License: GPLv2+ @@ -83,6 +83,9 @@ mv __clean_examples __dist_examples/exam rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtruch at fedoraproject.org Fri Jul 24 16:38:54 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 16:38:54 +0000 (UTC) Subject: rpms/cfitsio/devel .cvsignore,1.10,1.11 sources,1.10,1.11 Message-ID: <20090724163854.12ABE11C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/cfitsio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27580 Modified Files: .cvsignore sources Log Message: Actually include tarball. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/cfitsio/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 5 Feb 2009 21:35:49 -0000 1.10 +++ .cvsignore 24 Jul 2009 16:38:53 -0000 1.11 @@ -1 +1 @@ -cfitsio3130.tar.gz +cfitsio3140.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/cfitsio/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 5 Feb 2009 21:35:50 -0000 1.10 +++ sources 24 Jul 2009 16:38:53 -0000 1.11 @@ -1 +1 @@ -a353503755f57610d22a6b6c158b02d0 cfitsio3130.tar.gz +7467fdacb807ebeef7fe088f2b69d9ee cfitsio3140.tar.gz From jkeating at fedoraproject.org Fri Jul 24 16:38:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:38:47 +0000 (UTC) Subject: rpms/agistudio/devel agistudio.spec,1.14,1.15 Message-ID: <20090724163847.769A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/agistudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27563 Modified Files: agistudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: agistudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/agistudio/devel/agistudio.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- agistudio.spec 26 May 2009 18:45:21 -0000 1.14 +++ agistudio.spec 24 Jul 2009 16:38:47 -0000 1.15 @@ -1,6 +1,6 @@ Name: agistudio Version: 1.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: AGI integrated development environment License: GPLv2+ Group: Amusements/Games @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/32x32/apps/agistudio.xpm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Jon Ciesla - 1.2.4-2 - Explicitly require nagi. From jkeating at fedoraproject.org Fri Jul 24 16:39:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:39:01 +0000 (UTC) Subject: rpms/aiccu/devel aiccu.spec,1.13,1.14 Message-ID: <20090724163901.A60B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aiccu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27722 Modified Files: aiccu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aiccu.spec =================================================================== RCS file: /cvs/pkgs/rpms/aiccu/devel/aiccu.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- aiccu.spec 24 Feb 2009 00:19:21 -0000 1.13 +++ aiccu.spec 24 Jul 2009 16:39:01 -0000 1.14 @@ -9,7 +9,7 @@ Summary: SixXS Automatic IPv6 Connectivity Client Utility Name: aiccu Version: 2007.01.15 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: System Environment/Daemons URL: http://www.sixxs.net/tools/aiccu/ @@ -75,6 +75,9 @@ make clean %{_sysconfdir}/init.d/aiccu %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2007.01.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2007.01.15-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:39:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:39:15 +0000 (UTC) Subject: rpms/aide/devel aide.spec,1.30,1.31 Message-ID: <20090724163915.C2BC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27877 Modified Files: aide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aide.spec =================================================================== RCS file: /cvs/pkgs/rpms/aide/devel/aide.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- aide.spec 8 Jun 2009 16:49:42 -0000 1.30 +++ aide.spec 24 Jul 2009 16:39:15 -0000 1.31 @@ -7,7 +7,7 @@ Summary: Intrusion detection environment Name: aide Version: 0.13.1 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://sourceforge.net/projects/aide License: GPLv2+ Group: Applications/System @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Steve Grubb - 0.13.1-9 - Make aide smarter about prelinked files (Peter Vrabec) - Add /lib64 to default config From jkeating at fedoraproject.org Fri Jul 24 16:39:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:39:31 +0000 (UTC) Subject: rpms/aiksaurus/devel aiksaurus.spec,1.17,1.18 Message-ID: <20090724163931.E00E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aiksaurus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28039 Modified Files: aiksaurus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aiksaurus.spec =================================================================== RCS file: /cvs/pkgs/rpms/aiksaurus/devel/aiksaurus.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- aiksaurus.spec 24 Feb 2009 00:21:13 -0000 1.17 +++ aiksaurus.spec 24 Jul 2009 16:39:31 -0000 1.18 @@ -1,6 +1,6 @@ Name: aiksaurus Version: 1.2.1 -Release: 19%{?dist} +Release: 20%{?dist} Summary: An English-language thesaurus library Epoch: 1 @@ -140,6 +140,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.1-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1:1.2.1-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:39:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:39:46 +0000 (UTC) Subject: rpms/aimage/devel aimage.spec,1.6,1.7 Message-ID: <20090724163946.BF31211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28181 Modified Files: aimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/aimage/devel/aimage.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- aimage.spec 2 Mar 2009 12:46:37 -0000 1.6 +++ aimage.spec 24 Jul 2009 16:39:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: aimage Version: 3.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Advanced Disk Imager Group: Applications/System @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 kwizart < kwizart at gmail.com > - 3.2.0-4 - Fix for gcc44 From jkeating at fedoraproject.org Fri Jul 24 16:40:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:40:02 +0000 (UTC) Subject: rpms/aircrack-ng/devel aircrack-ng.spec,1.28,1.29 Message-ID: <20090724164002.D45EA11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aircrack-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28325 Modified Files: aircrack-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aircrack-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/aircrack-ng/devel/aircrack-ng.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- aircrack-ng.spec 13 Apr 2009 20:30:04 -0000 1.28 +++ aircrack-ng.spec 24 Jul 2009 16:40:02 -0000 1.29 @@ -2,7 +2,7 @@ Name: aircrack-ng Version: 1.0 -Release: 0.8.%{alphatag}%{?dist} +Release: 0.9.%{alphatag}%{?dist} #Release: 0.7.%{alphatag}svn%{?dist} #Release: 1%{?dist} Summary: 802.11 (wireless) sniffer and WEP/WPA-PSK key cracker @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.9.rc3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Till Maas - 1.0-0.8.rc3 - Update to new release - Enable patch to make parallel make work on x86_64 From jkeating at fedoraproject.org Fri Jul 24 16:40:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:40:18 +0000 (UTC) Subject: rpms/airsnort/devel airsnort.spec,1.12,1.13 Message-ID: <20090724164018.B3BD911C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/airsnort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28504 Modified Files: airsnort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: airsnort.spec =================================================================== RCS file: /cvs/pkgs/rpms/airsnort/devel/airsnort.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- airsnort.spec 24 Feb 2009 00:23:49 -0000 1.12 +++ airsnort.spec 24 Jul 2009 16:40:18 -0000 1.13 @@ -1,6 +1,6 @@ Name: airsnort Version: 0.2.7e -Release: 14%{?dist} +Release: 15%{?dist} Summary: Wireless LAN (WLAN) tool which recovers encryption keys Group: Applications/Communications @@ -61,6 +61,9 @@ desktop-file-install \ %{_datadir}/applications/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.7e-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2.7e-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:40:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:40:34 +0000 (UTC) Subject: rpms/akonadi/devel akonadi.spec,1.40,1.41 Message-ID: <20090724164034.F1B6311C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/akonadi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28675 Modified Files: akonadi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: akonadi.spec =================================================================== RCS file: /cvs/pkgs/rpms/akonadi/devel/akonadi.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- akonadi.spec 25 Jun 2009 10:34:18 -0000 1.40 +++ akonadi.spec 24 Jul 2009 16:40:34 -0000 1.41 @@ -2,7 +2,7 @@ Summary: PIM Storage Service Name: akonadi Version: 1.1.95 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: LGPLv2+ @@ -119,6 +119,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.95-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Than Ngo - 1.1.95-1 - 1.1.95 From jkeating at fedoraproject.org Fri Jul 24 16:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:40:49 +0000 (UTC) Subject: rpms/alacarte/devel alacarte.spec,1.55,1.56 Message-ID: <20090724164049.A85FD11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alacarte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28835 Modified Files: alacarte.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alacarte.spec =================================================================== RCS file: /cvs/pkgs/rpms/alacarte/devel/alacarte.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- alacarte.spec 16 May 2009 04:52:47 -0000 1.55 +++ alacarte.spec 24 Jul 2009 16:40:49 -0000 1.56 @@ -2,7 +2,7 @@ Name: alacarte Version: 0.12.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Menu editor for the GNOME desktop Group: Applications/System @@ -79,6 +79,9 @@ fi %{_datadir}/icons/hicolor/256x256/apps/alacarte.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Matthias Clasen - 0.12.1-1 - Update to 0.12.1 From jkeating at fedoraproject.org Fri Jul 24 16:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:41:04 +0000 (UTC) Subject: rpms/alchemist/devel alchemist.spec,1.31,1.32 Message-ID: <20090724164104.AC96411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alchemist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28999 Modified Files: alchemist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alchemist.spec =================================================================== RCS file: /cvs/pkgs/rpms/alchemist/devel/alchemist.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- alchemist.spec 24 Feb 2009 00:26:29 -0000 1.31 +++ alchemist.spec 24 Jul 2009 16:41:04 -0000 1.32 @@ -3,7 +3,7 @@ Summary: A multi-sourced configuration back-end Name: alchemist Version: 1.0.37 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: System Environment/Base # No URL as this project never had an upstream other than Red Hat. @@ -81,6 +81,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/alchemi %{_libdir}/alchemist/blackbox/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.37-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.37-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:41:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:41:18 +0000 (UTC) Subject: rpms/aldo/devel aldo.spec,1.2,1.3 Message-ID: <20090724164118.AB66911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aldo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29163 Modified Files: aldo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aldo.spec =================================================================== RCS file: /cvs/pkgs/rpms/aldo/devel/aldo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- aldo.spec 24 Feb 2009 00:27:19 -0000 1.2 +++ aldo.spec 24 Jul 2009 16:41:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: aldo Version: 0.7.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A morse tutor Group: Applications/Communications @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:41:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:41:33 +0000 (UTC) Subject: rpms/aldrin/devel aldrin.spec,1.5,1.6 Message-ID: <20090724164133.9E73311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aldrin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29374 Modified Files: aldrin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aldrin.spec =================================================================== RCS file: /cvs/pkgs/rpms/aldrin/devel/aldrin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- aldrin.spec 6 Mar 2009 01:57:00 -0000 1.5 +++ aldrin.spec 24 Jul 2009 16:41:33 -0000 1.6 @@ -2,7 +2,7 @@ Name: aldrin Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Modular music sequencer/tracker Group: Applications/Multimedia License: GPLv2+ @@ -79,6 +79,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Orcan Ogetbil - 0.13-1 - Update to version 0.13 From mtruch at fedoraproject.org Fri Jul 24 16:41:46 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 16:41:46 +0000 (UTC) Subject: rpms/cfitsio/devel cfitsio.spec,1.34,1.35 Message-ID: <20090724164146.CA54C11C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/cfitsio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29488 Modified Files: cfitsio.spec Log Message: Bump everything. Index: cfitsio.spec =================================================================== RCS file: /cvs/extras/rpms/cfitsio/devel/cfitsio.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- cfitsio.spec 22 Jul 2009 03:24:54 -0000 1.34 +++ cfitsio.spec 24 Jul 2009 16:41:46 -0000 1.35 @@ -1,6 +1,6 @@ Name: cfitsio Version: 3.140 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for manipulating FITS data files Group: Development/Libraries @@ -111,6 +111,9 @@ rm -rf %{buildroot} %doc fitsio.doc fitsio.ps cfitsio.doc cfitsio.ps %changelog +* Fri Jul 24 2009 Matthew Truch - 3.140-2 +- Bump to include proper tarball. + * Tue Jul 21 2009 Matthew Truch - 3.140-1 - Update to upstream 3.140 release. - Bump for mass rebuild. From jkeating at fedoraproject.org Fri Jul 24 16:41:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:41:48 +0000 (UTC) Subject: rpms/ale/devel ale.spec,1.6,1.7 Message-ID: <20090724164148.BB58111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ale/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29561 Modified Files: ale.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ale.spec =================================================================== RCS file: /cvs/pkgs/rpms/ale/devel/ale.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ale.spec 31 Mar 2009 15:06:45 -0000 1.6 +++ ale.spec 24 Jul 2009 16:41:48 -0000 1.7 @@ -1,6 +1,6 @@ Name: ale Version: 0.9.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Combines multiple inputs of the same scene Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Douglas E. Warner - 0.9.0.3-1 - update to 0.9.0.3 - Revise --version to include ImageMagick library information. From jkeating at fedoraproject.org Fri Jul 24 16:42:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:42:04 +0000 (UTC) Subject: rpms/alevt/devel alevt.spec,1.10,1.11 Message-ID: <20090724164204.4DBA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alevt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29810 Modified Files: alevt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alevt.spec =================================================================== RCS file: /cvs/pkgs/rpms/alevt/devel/alevt.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- alevt.spec 30 May 2009 15:58:00 -0000 1.10 +++ alevt.spec 24 Jul 2009 16:42:04 -0000 1.11 @@ -1,6 +1,6 @@ Name: alevt Version: 1.6.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Teletext decoder/browser Group: Applications/Multimedia License: GPLv2 @@ -63,6 +63,9 @@ rm -rf %{buildroot} %doc README CHANGELOG COPYRIGHT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Lucian Langa - 1.6.2-13 - update patch0 fix bug #498775 - direct teletext page access From jkeating at fedoraproject.org Fri Jul 24 16:42:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:42:19 +0000 (UTC) Subject: rpms/alex/devel alex.spec,1.15,1.16 Message-ID: <20090724164219.2EE3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30000 Modified Files: alex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alex.spec =================================================================== RCS file: /cvs/pkgs/rpms/alex/devel/alex.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- alex.spec 17 May 2009 00:47:43 -0000 1.15 +++ alex.spec 24 Jul 2009 16:42:18 -0000 1.16 @@ -4,7 +4,7 @@ Name: alex # part of haskell-platform Version: 2.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A lexer generator for Haskell Group: Development/Tools @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jens Petersen - 2.3.1-5 - buildrequires ghc-rpm-macros From ltinkl at fedoraproject.org Fri Jul 24 16:42:21 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Fri, 24 Jul 2009 16:42:21 +0000 (UTC) Subject: rpms/kdelibs/devel .cvsignore, 1.75, 1.76 kdelibs.spec, 1.490, 1.491 sources, 1.92, 1.93 Message-ID: <20090724164221.D342811C00CE@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29741 Modified Files: .cvsignore kdelibs.spec sources Log Message: - respun tarball, fixing KIO HTTP redirects - correct phonon version, we ship 4.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/.cvsignore,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- .cvsignore 22 Jul 2009 10:12:16 -0000 1.75 +++ .cvsignore 24 Jul 2009 16:42:21 -0000 1.76 @@ -1,4 +1 @@ -kdelibs-4.2.90.tar.bz2 -kdelibs-4.2.95.tar.bz2 -kdelibs-4.2.96.tar.bz2 kdelibs-4.2.98.tar.bz2 Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.490 retrieving revision 1.491 diff -u -p -r1.490 -r1.491 --- kdelibs.spec 22 Jul 2009 10:12:16 -0000 1.490 +++ kdelibs.spec 24 Jul 2009 16:42:21 -0000 1.491 @@ -1,11 +1,11 @@ -%define phonon_ver 4.3.0 +%define phonon_ver 4.3.1 %define soprano_ver 2.3.0 %define strigi_ver 0.6.5 Summary: K Desktop Environment 4 - Libraries Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -397,6 +397,8 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Luk?? Tinkl - 4.2.98-2 + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/sources,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- sources 22 Jul 2009 10:12:17 -0000 1.92 +++ sources 24 Jul 2009 16:42:21 -0000 1.93 @@ -1 +1 @@ -5118bd8b810f99c76316733758fc34fd kdelibs-4.2.98.tar.bz2 +57d29dbd24afb72c03545ba583c8347f kdelibs-4.2.98.tar.bz2 From jkeating at fedoraproject.org Fri Jul 24 16:42:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:42:34 +0000 (UTC) Subject: rpms/alex4/devel alex4.spec,1.8,1.9 Message-ID: <20090724164234.F34A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alex4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30165 Modified Files: alex4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alex4.spec =================================================================== RCS file: /cvs/pkgs/rpms/alex4/devel/alex4.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- alex4.spec 24 Feb 2009 00:31:57 -0000 1.8 +++ alex4.spec 24 Jul 2009 16:42:34 -0000 1.9 @@ -1,6 +1,6 @@ Name: alex4 Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Alex the Allegator 4 - Platform game Group: Amusements/Games License: GPL+ @@ -81,6 +81,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:42:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:42:51 +0000 (UTC) Subject: rpms/alfont/devel alfont.spec,1.4,1.5 Message-ID: <20090724164251.2450211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alfont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30369 Modified Files: alfont.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alfont.spec =================================================================== RCS file: /cvs/pkgs/rpms/alfont/devel/alfont.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- alfont.spec 24 Feb 2009 00:32:49 -0000 1.4 +++ alfont.spec 24 Jul 2009 16:42:50 -0000 1.5 @@ -1,6 +1,6 @@ Name: alfont Version: 2.0.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Font rendering library for the Allegro game library Group: System Environment/Libraries License: FTL @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:43:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:43:10 +0000 (UTC) Subject: rpms/alienarena/devel alienarena.spec,1.11,1.12 Message-ID: <20090724164310.A9C5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alienarena/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30644 Modified Files: alienarena.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alienarena.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/devel/alienarena.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- alienarena.spec 24 Feb 2009 00:33:41 -0000 1.11 +++ alienarena.spec 24 Jul 2009 16:43:10 -0000 1.12 @@ -1,7 +1,7 @@ Name: alienarena Summary: Multiplayer retro sci-fi deathmatch game Version: 7.21 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games # Subversion: https://svn.icculus.org/alienarena/trunk/?sortby=date @@ -151,6 +151,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 7.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:43:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:43:27 +0000 (UTC) Subject: rpms/alienarena-data/devel alienarena-data.spec,1.7,1.8 Message-ID: <20090724164327.F3AC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alienarena-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30834 Modified Files: alienarena-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alienarena-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/devel/alienarena-data.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- alienarena-data.spec 24 Feb 2009 00:34:32 -0000 1.7 +++ alienarena-data.spec 24 Jul 2009 16:43:27 -0000 1.8 @@ -1,7 +1,7 @@ Name: alienarena-data Summary: Data files for Alien Arena 2008 Version: 20090115 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: Amusements/Games URL: http://icculus.org/alienarena/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_datadir}/alienarena/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090115-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20090115-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:43:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:43:43 +0000 (UTC) Subject: rpms/alienblaster/devel alienblaster.spec,1.5,1.6 Message-ID: <20090724164343.B12AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alienblaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30999 Modified Files: alienblaster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alienblaster.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienblaster/devel/alienblaster.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- alienblaster.spec 24 Feb 2009 00:35:23 -0000 1.5 +++ alienblaster.spec 24 Jul 2009 16:43:43 -0000 1.6 @@ -1,6 +1,6 @@ Name: alienblaster Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Action-loaded 2D arcade shooter game Group: Amusements/Games License: GPLv2+ @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:43:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:43:58 +0000 (UTC) Subject: rpms/alleggl/devel alleggl.spec,1.13,1.14 Message-ID: <20090724164358.C176711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alleggl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31153 Modified Files: alleggl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alleggl.spec =================================================================== RCS file: /cvs/pkgs/rpms/alleggl/devel/alleggl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- alleggl.spec 24 Feb 2009 00:36:13 -0000 1.13 +++ alleggl.spec 24 Jul 2009 16:43:58 -0000 1.14 @@ -1,6 +1,6 @@ Name: alleggl Version: 0.4.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OpenGL support library for Allegro Group: System Environment/Libraries License: zlib @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 16:44:08 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 16:44:08 +0000 (UTC) Subject: rpms/comix/devel comix.spec,1.26,1.27 Message-ID: <20090724164408.83B7111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/comix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31269 Modified Files: comix.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 4.0.4-2 - F-12: Mass rebuild Index: comix.spec =================================================================== RCS file: /cvs/extras/rpms/comix/devel/comix.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- comix.spec 8 Apr 2009 08:18:32 -0000 1.26 +++ comix.spec 24 Jul 2009 16:44:08 -0000 1.27 @@ -8,7 +8,7 @@ %define comix4 1 %undefine ifalpha -%define fedorarel 1 +%define fedorarel 2 Name: comix Version: %{mainver} @@ -185,6 +185,9 @@ exit 0 %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 4.0.4-2 +- F-12: Mass rebuild + * Wed Apr 8 2009 Mamoru Tasaka - 4.0.4-1 - 4.0.4, remove upsteamed patch - Embed Fedora EVR to src/about.py From jkeating at fedoraproject.org Fri Jul 24 16:44:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:44:13 +0000 (UTC) Subject: rpms/allegro/devel allegro.spec,1.54,1.55 Message-ID: <20090724164413.9449011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/allegro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31335 Modified Files: allegro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: allegro.spec =================================================================== RCS file: /cvs/pkgs/rpms/allegro/devel/allegro.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- allegro.spec 24 Feb 2009 00:37:05 -0000 1.54 +++ allegro.spec 24 Jul 2009 16:44:13 -0000 1.55 @@ -1,6 +1,6 @@ Name: allegro Version: 4.2.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A game programming library Summary(es): Una libreria de programacion de juegos @@ -294,6 +294,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.2.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:44:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:44:28 +0000 (UTC) Subject: rpms/alleyoop/devel alleyoop.spec,1.7,1.8 Message-ID: <20090724164428.DBDE811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alleyoop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31560 Modified Files: alleyoop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alleyoop.spec =================================================================== RCS file: /cvs/pkgs/rpms/alleyoop/devel/alleyoop.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- alleyoop.spec 10 Mar 2009 08:03:06 -0000 1.7 +++ alleyoop.spec 24 Jul 2009 16:44:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: alleyoop Version: 0.9.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools Summary: Graphical front-end to the Valgrind memory checker for x86 @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Gianluca Sforna - 0.9.5-1 - New upstream version From jkeating at fedoraproject.org Fri Jul 24 16:44:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:44:42 +0000 (UTC) Subject: rpms/allgeyer-fonts/devel allgeyer-fonts.spec,1.2,1.3 Message-ID: <20090724164442.7C94111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/allgeyer-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31715 Modified Files: allgeyer-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: allgeyer-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/allgeyer-fonts/devel/allgeyer-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- allgeyer-fonts.spec 24 Feb 2009 00:38:48 -0000 1.2 +++ allgeyer-fonts.spec 24 Jul 2009 16:44:42 -0000 1.3 @@ -9,7 +9,7 @@ embedded in PDF files. Name: %{fontname}-fonts Summary: Musical Notation True Type Fonts Version: 5.002 -Release: 2%{?dist} +Release: 3%{?dist} License: OFL Group: User Interface/X Source0: http://www.icogitate.com/~ergosum/fonts/musiqwik_musisync_y6.zip @@ -86,6 +86,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.002-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.002-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:45:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:45:39 +0000 (UTC) Subject: rpms/alliance/devel alliance.spec,1.23,1.24 Message-ID: <20090724164539.434C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alliance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32147 Modified Files: alliance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alliance.spec =================================================================== RCS file: /cvs/pkgs/rpms/alliance/devel/alliance.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- alliance.spec 9 Jul 2009 15:13:04 -0000 1.23 +++ alliance.spec 24 Jul 2009 16:45:39 -0000 1.24 @@ -4,7 +4,7 @@ Name: alliance Version: 5.0 -Release: 28.%{snapshot}snap%{?dist} +Release: 29.%{snapshot}snap%{?dist} Summary: VLSI EDA System License: GPLv2 @@ -532,6 +532,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0-29.20070718snap +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Chitlesh Goorah - 5.0-28.20070718snap - improved stability on 64 bit architecture - Patches (14 to 100) added along with new features from upstream From jkeating at fedoraproject.org Fri Jul 24 16:46:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:46:00 +0000 (UTC) Subject: rpms/alltray/devel alltray.spec,1.14,1.15 Message-ID: <20090724164600.2F46E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alltray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32407 Modified Files: alltray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alltray.spec =================================================================== RCS file: /cvs/pkgs/rpms/alltray/devel/alltray.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- alltray.spec 24 Feb 2009 00:40:33 -0000 1.14 +++ alltray.spec 24 Jul 2009 16:45:59 -0000 1.15 @@ -1,6 +1,6 @@ Name: alltray Version: 0.70 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Dock any application in the tray Group: User Interface/Desktops @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.70-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.70-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:46:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:46:17 +0000 (UTC) Subject: rpms/almanah/devel almanah.spec,1.3,1.4 Message-ID: <20090724164617.3D4EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/almanah/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32665 Modified Files: almanah.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: almanah.spec =================================================================== RCS file: /cvs/pkgs/rpms/almanah/devel/almanah.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- almanah.spec 24 Feb 2009 00:41:27 -0000 1.3 +++ almanah.spec 24 Jul 2009 16:46:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: almanah Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A application to allow you to keep a diary of your life Group: Applications/Productivity @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:46:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:46:31 +0000 (UTC) Subject: rpms/alphabet-soup/devel alphabet-soup.spec,1.5,1.6 Message-ID: <20090724164631.E7D8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alphabet-soup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv437 Modified Files: alphabet-soup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alphabet-soup.spec =================================================================== RCS file: /cvs/pkgs/rpms/alphabet-soup/devel/alphabet-soup.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- alphabet-soup.spec 24 Feb 2009 00:42:26 -0000 1.5 +++ alphabet-soup.spec 24 Jul 2009 16:46:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: alphabet-soup Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Guide your worm through the soup to spell words Group: Amusements/Games License: Crystal Stacker @@ -71,6 +71,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:46:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:46:47 +0000 (UTC) Subject: rpms/alpine/devel alpine.spec,1.19,1.20 Message-ID: <20090724164647.B8CB711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alpine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv657 Modified Files: alpine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alpine.spec =================================================================== RCS file: /cvs/pkgs/rpms/alpine/devel/alpine.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- alpine.spec 6 Jul 2009 16:46:46 -0000 1.19 +++ alpine.spec 24 Jul 2009 16:46:47 -0000 1.20 @@ -3,7 +3,7 @@ Summary: powerful, easy to use console email client Name: alpine Version: 2.00 -Release: 6%{?dist} +Release: 7%{?dist} License: ASL 2.0 Group: Applications/Internet @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.00-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Caol?n McNamara - 2.00-6 - --with-spellcheck-prog isn't a configure option use --with-simple-spellcheck/--with-interactive-spellcheck and patch From mtasaka at fedoraproject.org Fri Jul 24 16:47:11 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 16:47:11 +0000 (UTC) Subject: rpms/ebview/devel ebview.spec,1.7,1.8 Message-ID: <20090724164711.4CD7C11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ebview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv946 Modified Files: ebview.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.3.6-7 - F-12: Mass rebuild Index: ebview.spec =================================================================== RCS file: /cvs/extras/rpms/ebview/devel/ebview.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ebview.spec 23 Feb 2009 22:10:59 -0000 1.7 +++ ebview.spec 24 Jul 2009 16:47:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: ebview Version: 0.3.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: EPWING CD-ROM dictionary viewer Group: Applications/Text @@ -114,6 +114,9 @@ desktop-file-install \ %{_datadir}/pixmaps/%{name}.xpm %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.3.6-7 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.3.6-6 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 16:47:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:47:03 +0000 (UTC) Subject: rpms/alsa-firmware/devel alsa-firmware.spec,1.13,1.14 Message-ID: <20090724164703.C8FC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv845 Modified Files: alsa-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-firmware/devel/alsa-firmware.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- alsa-firmware.spec 10 May 2009 17:33:23 -0000 1.13 +++ alsa-firmware.spec 24 Jul 2009 16:47:03 -0000 1.14 @@ -5,7 +5,7 @@ Summary: Firmware for several ALSA-supported sound cards Name: alsa-firmware Version: 1.0.20 -Release: 1%{?dist} +Release: 2%{?dist} # See later in the spec for a breakdown of licensing License: GPL+ and BSD and GPLv2+ and GPLv2 and LGPLv2+ Group: Applications/Multimedia @@ -200,6 +200,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Tim Jackson - 1.0.20-1 - Update to 1.0.20 From jkeating at fedoraproject.org Fri Jul 24 16:47:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:47:20 +0000 (UTC) Subject: rpms/alsa-lib/devel alsa-lib.spec,1.83,1.84 Message-ID: <20090724164720.570C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1078 Modified Files: alsa-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-lib/devel/alsa-lib.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- alsa-lib.spec 6 May 2009 09:11:46 -0000 1.83 +++ alsa-lib.spec 24 Jul 2009 16:47:20 -0000 1.84 @@ -5,7 +5,7 @@ Summary: The Advanced Linux Sound Architecture (ALSA) library Name: alsa-lib Version: 1.0.20 -Release: 1%{?prever_dot}%{?dist} +Release: 2%{?prever_dot}%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: ftp://ftp.alsa-project.org/pub/lib/%{name}-%{version}%{?prever}%{?postver}.tar.bz2 @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_datadir}/aclocal/alsa.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Jaroslav Kysela - 1.0.20-1 - Updated to 1.0.20 final From jkeating at fedoraproject.org Fri Jul 24 16:47:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:47:36 +0000 (UTC) Subject: rpms/alsa-oss/devel alsa-oss.spec,1.9,1.10 Message-ID: <20090724164736.965BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-oss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1264 Modified Files: alsa-oss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-oss.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-oss/devel/alsa-oss.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- alsa-oss.spec 24 Feb 2009 00:45:54 -0000 1.9 +++ alsa-oss.spec 24 Jul 2009 16:47:36 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Advanced Linux Sound Architecture (ALSA) wrapper for OSS Name: alsa-oss Version: 1.0.17 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.alsa-project.org/ @@ -80,6 +80,9 @@ autoreconf -f -i %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.17-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.17-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:47:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:47:52 +0000 (UTC) Subject: rpms/alsa-plugins/devel alsa-plugins.spec,1.23,1.24 Message-ID: <20090724164752.E78E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1453 Modified Files: alsa-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-plugins/devel/alsa-plugins.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- alsa-plugins.spec 3 Jul 2009 00:50:11 -0000 1.23 +++ alsa-plugins.spec 24 Jul 2009 16:47:52 -0000 1.24 @@ -1,6 +1,6 @@ Name: alsa-plugins Version: 1.0.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Advanced Linux Sound Architecture (ALSA) Plugins # All packages are LGPLv2+ with the exception of samplerate which is GPLv2+ License: GPLv2+ and LGPLv2+ @@ -225,6 +225,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Eric Moret - 1.0.20-2 - Added speex subpackage - Removed ascii-art from jack's plugin description From jkeating at fedoraproject.org Fri Jul 24 16:48:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:48:09 +0000 (UTC) Subject: rpms/alsa-tools/devel alsa-tools.spec,1.29,1.30 Message-ID: <20090724164809.2F35911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1655 Modified Files: alsa-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-tools/devel/alsa-tools.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- alsa-tools.spec 16 Jul 2009 19:41:47 -0000 1.29 +++ alsa-tools.spec 24 Jul 2009 16:48:09 -0000 1.30 @@ -23,7 +23,7 @@ Summary: Specialist tools for ALSA Name: alsa-tools Version: 1.0.20 -Release: 2%{?dist} +Release: 3%{?dist} # Checked at least one source file from all the sub-projects contained in # the source tarball and they are consistent GPLv2+ - TJ 2007-11-15 @@ -218,6 +218,9 @@ install -m 644 %{SOURCE5} ${RPM_BUILD_RO %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Tim Jackson - 1.0.20-2 * Sun May 10 2009 Tim Jackson - 1.0.20-1.fc12.2 From ltinkl at fedoraproject.org Fri Jul 24 16:48:26 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Fri, 24 Jul 2009 16:48:26 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.491,1.492 Message-ID: <20090724164826.26D7511C00CE@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1807 Modified Files: kdelibs.spec Log Message: fix changelog Index: kdelibs.spec =================================================================== RCS file: /cvs/extras/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.491 retrieving revision 1.492 diff -u -p -r1.491 -r1.492 --- kdelibs.spec 24 Jul 2009 16:42:21 -0000 1.491 +++ kdelibs.spec 24 Jul 2009 16:48:26 -0000 1.492 @@ -398,6 +398,8 @@ rm -rf %{buildroot} %changelog * Fri Jul 24 2009 Luk?? Tinkl - 4.2.98-2 +- respun tarball, to fix KIO HTTP redirects +- fix Phonon version number * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Fri Jul 24 16:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:48:23 +0000 (UTC) Subject: rpms/alsa-utils/devel alsa-utils.spec,1.85,1.86 Message-ID: <20090724164823.BA7A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsa-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1838 Modified Files: alsa-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsa-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-utils/devel/alsa-utils.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- alsa-utils.spec 15 May 2009 12:41:19 -0000 1.85 +++ alsa-utils.spec 24 Jul 2009 16:48:23 -0000 1.86 @@ -4,7 +4,7 @@ Summary: Advanced Linux Sound Architecture (ALSA) utilities Name: alsa-utils Version: 1.0.20 -Release: 3%{?prever_dot}%{?dist} +Release: 4%{?prever_dot}%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.alsa-project.org/ @@ -94,6 +94,9 @@ if [ -s /etc/alsa/asound.state -a ! -s / fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Jaroslav Kysela 1.0.20-3 - added missing Headphone Volume patch From jkeating at fedoraproject.org Fri Jul 24 16:48:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:48:38 +0000 (UTC) Subject: rpms/alsamixergui/devel alsamixergui.spec,1.6,1.7 Message-ID: <20090724164838.9F86911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/alsamixergui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2022 Modified Files: alsamixergui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: alsamixergui.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsamixergui/devel/alsamixergui.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- alsamixergui.spec 24 Feb 2009 00:49:29 -0000 1.6 +++ alsamixergui.spec 24 Jul 2009 16:48:38 -0000 1.7 @@ -1,7 +1,7 @@ Name: alsamixergui Summary: GUI mixer for ALSA sound devices Version: 0.9.0 -Release: 0.5.rc1%{?dist}.2 +Release: 0.6.rc1%{?dist}.2 License: GPLv2+ Group: Applications/System Source0: ftp://www.iua.upf.es/pub/mdeboer/projects/alsamixergui/%{name}-%{version}rc1-2.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/alsamixergui.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-0.6.rc1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.0-0.5.rc1.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:48:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:48:54 +0000 (UTC) Subject: rpms/altermime/devel altermime.spec,1.8,1.9 Message-ID: <20090724164854.A7D2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/altermime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2184 Modified Files: altermime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: altermime.spec =================================================================== RCS file: /cvs/pkgs/rpms/altermime/devel/altermime.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- altermime.spec 24 Feb 2009 00:51:16 -0000 1.8 +++ altermime.spec 24 Jul 2009 16:48:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: altermime Version: 0.3.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Alter MIME-encoded mailpacks Group: Applications/Internet @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:49:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:49:11 +0000 (UTC) Subject: rpms/am-utils/devel am-utils.spec,1.50,1.51 Message-ID: <20090724164911.262C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/am-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2376 Modified Files: am-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: am-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/am-utils/devel/am-utils.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- am-utils.spec 24 Feb 2009 00:52:11 -0000 1.50 +++ am-utils.spec 24 Jul 2009 16:49:11 -0000 1.51 @@ -1,7 +1,7 @@ Summary: Automount utilities including an updated version of Amd Name: am-utils Version: 6.1.5 -Release: 13%{?dist} +Release: 14%{?dist} License: BSD Epoch: 5 Group: System Environment/Daemons @@ -177,6 +177,9 @@ fi %{_libdir}/libamu.so* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5:6.1.5-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5:6.1.5-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:49:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:49:24 +0000 (UTC) Subject: rpms/amanda/devel amanda.spec,1.61,1.62 Message-ID: <20090724164924.F23B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amanda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2553 Modified Files: amanda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amanda.spec =================================================================== RCS file: /cvs/pkgs/rpms/amanda/devel/amanda.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- amanda.spec 22 Jul 2009 10:32:23 -0000 1.61 +++ amanda.spec 24 Jul 2009 16:49:24 -0000 1.62 @@ -7,7 +7,7 @@ Summary: A network-capable tape backup solution Name: amanda Version: 2.6.0p2 -Release: 10%{?dist} +Release: 11%{?dist} Source: http://downloads.sourceforge.net/amanda/amanda-%{version}.tar.gz #Source: http://www.zmanda.com/downloads/community/community-builds/amanda-%{version}.tar.gz Source1: amanda.crontab @@ -377,6 +377,9 @@ grep -l -E '^dumpuser[[:blank:]]*"amanda %{_libdir}/libamandad.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.0p2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel Novotny 2.6.0p2-10 - fix #510961 - FTBFS: amanda-2.6.0p2-9 From jkeating at fedoraproject.org Fri Jul 24 16:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:49:38 +0000 (UTC) Subject: rpms/amanith/devel amanith.spec,1.8,1.9 Message-ID: <20090724164938.773F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amanith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2736 Modified Files: amanith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amanith.spec =================================================================== RCS file: /cvs/pkgs/rpms/amanith/devel/amanith.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- amanith.spec 24 Feb 2009 00:53:54 -0000 1.8 +++ amanith.spec 24 Jul 2009 16:49:38 -0000 1.9 @@ -1,6 +1,6 @@ Name: amanith Version: 0.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Crossplatform framework for 2d/3d vector graphics Group: Development/Libraries License: QPL @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/amanith/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:49:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:49:52 +0000 (UTC) Subject: rpms/amarok/devel amarok.spec,1.157,1.158 Message-ID: <20090724164952.EB7A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amarok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2888 Modified Files: amarok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amarok.spec =================================================================== RCS file: /cvs/pkgs/rpms/amarok/devel/amarok.spec,v retrieving revision 1.157 retrieving revision 1.158 diff -u -p -r1.157 -r1.158 --- amarok.spec 7 Jul 2009 21:44:46 -0000 1.157 +++ amarok.spec 24 Jul 2009 16:49:52 -0000 1.158 @@ -2,7 +2,7 @@ Name: amarok Summary: Media player Version: 2.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Multimedia License: GPLv2+ @@ -150,6 +150,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Rex Dieter 2.1.1-2 - Requires: qtscriptbindings%%{?_isa} (#510133) From jkeating at fedoraproject.org Fri Jul 24 16:50:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:50:06 +0000 (UTC) Subject: rpms/amavisd-new/devel amavisd-new.spec,1.25,1.26 Message-ID: <20090724165006.CFEB911C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amavisd-new/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3043 Modified Files: amavisd-new.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amavisd-new.spec =================================================================== RCS file: /cvs/pkgs/rpms/amavisd-new/devel/amavisd-new.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- amavisd-new.spec 1 Mar 2009 18:38:53 -0000 1.25 +++ amavisd-new.spec 24 Jul 2009 16:50:06 -0000 1.26 @@ -3,7 +3,7 @@ Summary: Email filter with virus scanner and spamassassin support Name: amavisd-new Version: 2.6.2 -Release: 3%{?prerelease:.%{prerelease}}%{?dist} +Release: 4%{?prerelease:.%{prerelease}}%{?dist} # LDAP schema is GFDL, some helpers are BSD, core is GPLv2+ License: GPLv2+ and BSD and GFDL Group: Applications/System @@ -172,6 +172,9 @@ fi %ghost /var/spool/amavisd/clamd.sock %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck 2.6.2-3 - Re-diffed amavisd-new configuration patch for no fuzz From jkeating at fedoraproject.org Fri Jul 24 16:50:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:50:19 +0000 (UTC) Subject: rpms/amoebax/devel amoebax.spec,1.5,1.6 Message-ID: <20090724165019.C5F3411C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amoebax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3200 Modified Files: amoebax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amoebax.spec =================================================================== RCS file: /cvs/pkgs/rpms/amoebax/devel/amoebax.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- amoebax.spec 24 Feb 2009 07:59:04 -0000 1.5 +++ amoebax.spec 24 Jul 2009 16:50:19 -0000 1.6 @@ -1,6 +1,6 @@ Name: amoebax Version: 0.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Action-Puzzle Game Group: Amusements/Games License: GPLv2+ and Free Art @@ -84,6 +84,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Hans de Goede 0.2.0-5 - Fix building with gcc-4.4 From jkeating at fedoraproject.org Fri Jul 24 16:50:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:50:33 +0000 (UTC) Subject: rpms/amora/devel amora.spec,1.6,1.7 Message-ID: <20090724165033.B33D411C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3341 Modified Files: amora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amora.spec =================================================================== RCS file: /cvs/pkgs/rpms/amora/devel/amora.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- amora.spec 24 Feb 2009 00:58:08 -0000 1.6 +++ amora.spec 24 Jul 2009 16:50:33 -0000 1.7 @@ -1,6 +1,6 @@ Name: amora Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A mobile remote assistant Group: Applications/Communications @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/amorad.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:50:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:50:55 +0000 (UTC) Subject: rpms/amqp/devel amqp.spec,1.22,1.23 Message-ID: <20090724165055.681B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amqp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3560 Modified Files: amqp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amqp.spec =================================================================== RCS file: /cvs/pkgs/rpms/amqp/devel/amqp.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- amqp.spec 2 Jul 2009 17:04:14 -0000 1.22 +++ amqp.spec 24 Jul 2009 16:50:55 -0000 1.23 @@ -1,6 +1,6 @@ Name: amqp Version: 1.0.790661 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 Summary: The AMQP specification @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0.790661-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Nuno Santos - 0:1.0.790661-1 - Rebased to svn rev 790661 From jkeating at fedoraproject.org Fri Jul 24 16:51:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:51:07 +0000 (UTC) Subject: rpms/amsn/devel amsn.spec,1.23,1.24 Message-ID: <20090724165107.D208811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amsn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3693 Modified Files: amsn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amsn.spec =================================================================== RCS file: /cvs/pkgs/rpms/amsn/devel/amsn.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- amsn.spec 24 Feb 2009 00:59:47 -0000 1.23 +++ amsn.spec 24 Jul 2009 16:51:07 -0000 1.24 @@ -3,7 +3,7 @@ Name: amsn Version: 0.97.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MSN Messenger clone for Linux, Mac and Windows Group: Applications/Internet @@ -131,6 +131,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.97.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.97.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:51:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:51:21 +0000 (UTC) Subject: rpms/amtterm/devel amtterm.spec,1.8,1.9 Message-ID: <20090724165121.9305F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amtterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3817 Modified Files: amtterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amtterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtterm/devel/amtterm.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- amtterm.spec 24 Feb 2009 01:00:38 -0000 1.8 +++ amtterm.spec 24 Jul 2009 16:51:21 -0000 1.9 @@ -1,7 +1,7 @@ Name: amtterm License: GPLv2+ Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Serial-over-lan (sol) client for Intel AMT Group: Applications/Internet Source: %{name}-%{version}.tar.gz @@ -43,6 +43,9 @@ desktop-file-install \ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:51:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:51:34 +0000 (UTC) Subject: rpms/amtu/devel amtu.spec,1.25,1.26 Message-ID: <20090724165134.DE24F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3972 Modified Files: amtu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/amtu.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- amtu.spec 1 Jul 2009 15:45:01 -0000 1.25 +++ amtu.spec 24 Jul 2009 16:51:34 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Abstract Machine Test Utility (AMTU) Name: amtu Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/amtueal/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Steve Grubb 1.0.7-1 - new upstream version From jkeating at fedoraproject.org Fri Jul 24 16:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:51:53 +0000 (UTC) Subject: rpms/anaconda/devel anaconda.spec,1.797,1.798 Message-ID: <20090724165153.6787511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4134 Modified Files: anaconda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.797 retrieving revision 1.798 diff -u -p -r1.797 -r1.798 --- anaconda.spec 23 Jul 2009 03:22:02 -0000 1.797 +++ anaconda.spec 24 Jul 2009 16:51:53 -0000 1.798 @@ -4,7 +4,7 @@ Summary: Graphical system installer Name: anaconda Version: 12.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://fedoraproject.org/wiki/Anaconda @@ -212,6 +212,9 @@ update-desktop-database &> /dev/null || %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 12.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 David Cantrell - 12.5-1 - New build because koji hates me. From jkeating at fedoraproject.org Fri Jul 24 16:52:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:52:06 +0000 (UTC) Subject: rpms/anaconda-yum-plugins/devel anaconda-yum-plugins.spec,1.4,1.5 Message-ID: <20090724165206.7D35811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anaconda-yum-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4283 Modified Files: anaconda-yum-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anaconda-yum-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda-yum-plugins/devel/anaconda-yum-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- anaconda-yum-plugins.spec 24 Feb 2009 01:03:15 -0000 1.4 +++ anaconda-yum-plugins.spec 24 Jul 2009 16:52:06 -0000 1.5 @@ -2,7 +2,7 @@ Summary: Installation-related yum plugin Name: anaconda-yum-plugins Epoch: 1 Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System URL: http://fedoraproject.org/wiki/Anaconda @@ -38,6 +38,9 @@ anaconda and other system installation-r %{_prefix}/lib/yum-plugins/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1:1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:52:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:52:22 +0000 (UTC) Subject: rpms/and/devel and.spec,1.5,1.6 Message-ID: <20090724165222.8FFFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/and/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4425 Modified Files: and.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: and.spec =================================================================== RCS file: /cvs/pkgs/rpms/and/devel/and.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- and.spec 24 Feb 2009 01:04:59 -0000 1.5 +++ and.spec 24 Jul 2009 16:52:22 -0000 1.6 @@ -1,6 +1,6 @@ Name: and Version: 1.2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Auto nice daemon License: GPLv2 @@ -82,6 +82,9 @@ fi %{_mandir}/man8/*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:52:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:52:36 +0000 (UTC) Subject: rpms/angrydd/devel angrydd.spec,1.3,1.4 Message-ID: <20090724165236.9CED511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/angrydd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4554 Modified Files: angrydd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: angrydd.spec =================================================================== RCS file: /cvs/pkgs/rpms/angrydd/devel/angrydd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- angrydd.spec 24 Feb 2009 01:06:08 -0000 1.3 +++ angrydd.spec 24 Jul 2009 16:52:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:52:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:52:50 +0000 (UTC) Subject: rpms/animorph/devel animorph.spec,1.6,1.7 Message-ID: <20090724165250.7FF8D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/animorph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4700 Modified Files: animorph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: animorph.spec =================================================================== RCS file: /cvs/pkgs/rpms/animorph/devel/animorph.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- animorph.spec 4 Mar 2009 16:40:20 -0000 1.6 +++ animorph.spec 24 Jul 2009 16:52:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: animorph Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 3D Animation and Morph Library Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 kwizart < kwizart at gmail.com > - 0.3-5 - Fix for gcc44 From jkeating at fedoraproject.org Fri Jul 24 16:53:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:53:04 +0000 (UTC) Subject: rpms/anjuta/devel anjuta.spec,1.81,1.82 Message-ID: <20090724165304.E542911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anjuta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4838 Modified Files: anjuta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anjuta.spec =================================================================== RCS file: /cvs/pkgs/rpms/anjuta/devel/anjuta.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- anjuta.spec 14 Jul 2009 07:01:21 -0000 1.81 +++ anjuta.spec 24 Jul 2009 16:53:04 -0000 1.82 @@ -2,7 +2,7 @@ Summary: A GNOME development IDE for C/C Name: anjuta Epoch: 1 Version: 2.27.3.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.anjuta.org/ @@ -330,6 +330,9 @@ scrollkeeper-update -q || : %{_datadir}/omf/%{name}-manual/%{name}-manual-*.omf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Debarshi Ray - 1:2.27.3.0-1 - Version bump to 2.27.3.0. Improvements in auto-completion speed. From jkeating at fedoraproject.org Fri Jul 24 16:53:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:53:36 +0000 (UTC) Subject: rpms/ann/devel ann.spec,1.2,1.3 Message-ID: <20090724165336.D762C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ann/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5196 Modified Files: ann.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ann.spec =================================================================== RCS file: /cvs/pkgs/rpms/ann/devel/ann.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ann.spec 24 Feb 2009 01:08:42 -0000 1.2 +++ ann.spec 24 Jul 2009 16:53:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: ann Version: 1.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for searching Approximate Nearest Neighbors Group: Applications/System @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:53:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:53:53 +0000 (UTC) Subject: rpms/ant/devel ant.spec,1.99,1.100 Message-ID: <20090724165353.C59A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5350 Modified Files: ant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ant.spec =================================================================== RCS file: /cvs/pkgs/rpms/ant/devel/ant.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- ant.spec 24 Feb 2009 01:09:37 -0000 1.99 +++ ant.spec 24 Jul 2009 16:53:53 -0000 1.100 @@ -55,7 +55,7 @@ Name: ant Version: 1.7.1 -Release: 9.2%{?dist} +Release: 10.2%{?dist} Epoch: 0 Summary: Ant build tool for java Summary(it): Tool per la compilazione di programmi java @@ -1292,6 +1292,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.7.1-10.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.7.1-9.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:54:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:54:08 +0000 (UTC) Subject: rpms/ant-contrib/devel ant-contrib.spec,1.5,1.6 Message-ID: <20090724165408.D570011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ant-contrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5518 Modified Files: ant-contrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ant-contrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ant-contrib/devel/ant-contrib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ant-contrib.spec 24 Feb 2009 01:10:34 -0000 1.5 +++ ant-contrib.spec 24 Jul 2009 16:54:08 -0000 1.6 @@ -4,7 +4,7 @@ Summary: Collection of tasks for Ant Name: ant-contrib Version: 1.0 -Release: 0.7.%{beta_number}%{?dist} +Release: 0.8.%{beta_number}%{?dist} License: ASL 2.0 URL: http://ant-contrib.sourceforge.net/ Group: Development/Libraries @@ -119,6 +119,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.8.b2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-0.7.b2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:54:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:54:24 +0000 (UTC) Subject: rpms/anthy/devel anthy.spec,1.58,1.59 Message-ID: <20090724165424.50F2411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anthy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5677 Modified Files: anthy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/anthy/devel/anthy.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- anthy.spec 8 Jul 2009 12:38:35 -0000 1.58 +++ anthy.spec 24 Jul 2009 16:54:24 -0000 1.59 @@ -23,7 +23,7 @@ Name: anthy Version: 9100h -Release: 5%{?dist} +Release: 6%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. License: LGPLv2+ and GPLv2 URL: http://sourceforge.jp/projects/anthy/ @@ -236,6 +236,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9100h-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Akira TAGOH - 9100h-5 - Update the corpus. - Fix typos in dictionary. (#509534) From jkeating at fedoraproject.org Fri Jul 24 16:54:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:54:40 +0000 (UTC) Subject: rpms/antiword/devel antiword.spec,1.18,1.19 Message-ID: <20090724165440.231AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/antiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5836 Modified Files: antiword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: antiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/antiword/devel/antiword.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- antiword.spec 24 Feb 2009 01:12:17 -0000 1.18 +++ antiword.spec 24 Jul 2009 16:54:39 -0000 1.19 @@ -1,7 +1,7 @@ Summary: MS Word to ASCII/Postscript converter Name: antiword Version: 0.37 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://www.winfield.demon.nl/linux/%{name}-%{version}.tar.gz Source1: antiword.sh URL: http://www.winfield.demon.nl/ @@ -52,6 +52,9 @@ iconv -f iso-8859-1 -t utf-8 Docs/Netsca %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.37-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.37-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:54:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:54:56 +0000 (UTC) Subject: rpms/antlr/devel antlr.spec,1.42,1.43 Message-ID: <20090724165456.23F5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/antlr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5989 Modified Files: antlr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: antlr.spec =================================================================== RCS file: /cvs/pkgs/rpms/antlr/devel/antlr.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- antlr.spec 20 Mar 2009 18:47:39 -0000 1.42 +++ antlr.spec 24 Jul 2009 16:54:55 -0000 1.43 @@ -39,7 +39,7 @@ Summary: ANother Tool for Language Recognition Name: antlr Version: 2.7.7 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 0 License: Public Domain URL: http://www.antlr.org/ @@ -311,6 +311,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.7.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Deepak Bhole - 0:2.7.7-5 - Include cstdio in CharScanner.hpp (needed to build with GCC 4.4) - Merge changes from includestrings patch into the above one From jkeating at fedoraproject.org Fri Jul 24 16:55:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:55:11 +0000 (UTC) Subject: rpms/antlr3/devel antlr3.spec,1.8,1.9 Message-ID: <20090724165511.128A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/antlr3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6150 Modified Files: antlr3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: antlr3.spec =================================================================== RCS file: /cvs/pkgs/rpms/antlr3/devel/antlr3.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- antlr3.spec 17 Mar 2009 21:15:51 -0000 1.8 +++ antlr3.spec 24 Jul 2009 16:55:10 -0000 1.9 @@ -3,7 +3,7 @@ Summary: ANother Tool for Language Recognition Name: antlr3 Version: 3.1.1 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.antlr.org/ Source0: http://www.antlr.org/download/antlr-3.1.1.tar.gz # Utility file, in conversation with upstream about this @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/antlr_python_runtime-* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 17 2009 Bart Vanbrabant - 3.1.1-7 - Fix the name of the jar to antlr.jar From jkeating at fedoraproject.org Fri Jul 24 16:55:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:55:25 +0000 (UTC) Subject: rpms/ants/devel ants.spec,1.6,1.7 Message-ID: <20090724165525.EDAE111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ants/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6317 Modified Files: ants.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ants.spec =================================================================== RCS file: /cvs/pkgs/rpms/ants/devel/ants.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ants.spec 24 Feb 2009 01:14:52 -0000 1.6 +++ ants.spec 24 Jul 2009 16:55:25 -0000 1.7 @@ -1,6 +1,6 @@ Name: ants Version: 1.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Guide your ants safely home before they drop of the cliff Group: Amusements/Games License: Public Domain @@ -100,6 +100,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:55:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:55:40 +0000 (UTC) Subject: rpms/anyremote/devel anyremote.spec,1.19,1.20 Message-ID: <20090724165540.EF23011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anyremote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6454 Modified Files: anyremote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote/devel/anyremote.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- anyremote.spec 30 Mar 2009 19:01:55 -0000 1.19 +++ anyremote.spec 24 Jul 2009 16:55:40 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Remote control through bluetooth or IR connection Name: anyremote Version: 4.18.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz @@ -59,6 +59,9 @@ Documentation for anyRemote %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.18.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Mikhail Fedotov - 4.18.1-1 - Add GuiAppModes tag to configuration files. From jkeating at fedoraproject.org Fri Jul 24 16:55:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:55:54 +0000 (UTC) Subject: rpms/anyremote2html/devel anyremote2html.spec,1.10,1.11 Message-ID: <20090724165554.D211711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anyremote2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6596 Modified Files: anyremote2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anyremote2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/anyremote2html/devel/anyremote2html.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- anyremote2html.spec 8 Jul 2009 16:58:50 -0000 1.10 +++ anyremote2html.spec 24 Jul 2009 16:55:54 -0000 1.11 @@ -1,7 +1,7 @@ Summary: WEB interface for anyRemote Name: anyremote2html Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz @@ -29,6 +29,9 @@ make install DESTDIR=$RPM_BUILD_ROOT ins rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Mikhail Fedotov - 1.0 - Handle Get(password) command. Add -m command line option. From jkeating at fedoraproject.org Fri Jul 24 16:56:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:56:10 +0000 (UTC) Subject: rpms/aoetools/devel aoetools.spec,1.8,1.9 Message-ID: <20090724165610.A687611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aoetools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6750 Modified Files: aoetools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aoetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/aoetools/devel/aoetools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- aoetools.spec 24 Feb 2009 01:17:34 -0000 1.8 +++ aoetools.spec 24 Jul 2009 16:56:10 -0000 1.9 @@ -1,6 +1,6 @@ Name: aoetools Version: 23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: ATA over Ethernet Tools Group: System Environment/Base @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:56:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:56:23 +0000 (UTC) Subject: rpms/apa-new-athena-unicode-fonts/devel apa-new-athena-unicode-fonts.spec, 1.1, 1.2 Message-ID: <20090724165623.5D2CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6889 Modified Files: apa-new-athena-unicode-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apa-new-athena-unicode-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/apa-new-athena-unicode-fonts/devel/apa-new-athena-unicode-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- apa-new-athena-unicode-fonts.spec 16 Jul 2009 05:57:40 -0000 1.1 +++ apa-new-athena-unicode-fonts.spec 24 Jul 2009 16:56:23 -0000 1.2 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: New Athena Unicode is a libre/open multilingual font Group: User Interface/X @@ -55,6 +55,9 @@ rm -fr %{buildroot} %doc *.pdf *.rtf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 15 2009 Ankur Sinha - 3.4-2 - Made changes according to bug #511336 - changed fontconf priority to 64 From jkeating at fedoraproject.org Fri Jul 24 16:56:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:56:36 +0000 (UTC) Subject: rpms/apachetop/devel apachetop.spec,1.17,1.18 Message-ID: <20090724165636.B3EA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apachetop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7033 Modified Files: apachetop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apachetop.spec =================================================================== RCS file: /cvs/pkgs/rpms/apachetop/devel/apachetop.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- apachetop.spec 24 Feb 2009 01:18:26 -0000 1.17 +++ apachetop.spec 24 Jul 2009 16:56:36 -0000 1.18 @@ -1,6 +1,6 @@ Name: apachetop Version: 0.12.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A top-like display of Apache logs Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.12.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:56:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:56:50 +0000 (UTC) Subject: rpms/apanov-edrip-fonts/devel apanov-edrip-fonts.spec,1.7,1.8 Message-ID: <20090724165650.BE7D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apanov-edrip-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7187 Modified Files: apanov-edrip-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apanov-edrip-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/apanov-edrip-fonts/devel/apanov-edrip-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- apanov-edrip-fonts.spec 15 Mar 2009 19:16:03 -0000 1.7 +++ apanov-edrip-fonts.spec 24 Jul 2009 16:56:50 -0000 1.8 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20081007 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A decorative contrast sans-serif font Group: User Interface/X @@ -61,6 +61,9 @@ rm -fr %{buildroot} %doc *.txt README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20081007-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 20081007-8 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Fri Jul 24 16:57:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:57:04 +0000 (UTC) Subject: rpms/apanov-heuristica-fonts/devel apanov-heuristica-fonts.spec, 1.9, 1.10 Message-ID: <20090724165704.A18CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apanov-heuristica-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7351 Modified Files: apanov-heuristica-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apanov-heuristica-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/apanov-heuristica-fonts/devel/apanov-heuristica-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- apanov-heuristica-fonts.spec 14 Jul 2009 22:16:52 -0000 1.9 +++ apanov-heuristica-fonts.spec 24 Jul 2009 16:57:04 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20090507 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Heuristica font Group: User Interface/X @@ -59,6 +59,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090507-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Nicolas Mailhot - 20090507-1 From jkeating at fedoraproject.org Fri Jul 24 16:57:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:57:18 +0000 (UTC) Subject: rpms/apcupsd/devel apcupsd.spec,1.32,1.33 Message-ID: <20090724165718.D0F7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apcupsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7499 Modified Files: apcupsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apcupsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/apcupsd/devel/apcupsd.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- apcupsd.spec 18 May 2009 07:03:54 -0000 1.32 +++ apcupsd.spec 24 Jul 2009 16:57:18 -0000 1.33 @@ -1,6 +1,6 @@ Name: apcupsd Version: 3.14.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: APC UPS Power Control Daemon for Linux Group: System Environment/Daemons @@ -172,6 +172,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.14.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Michal Hlavinka - 3.14.6-1 - update to 3.14.6 From jkeating at fedoraproject.org Fri Jul 24 16:57:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:57:31 +0000 (UTC) Subject: rpms/apel/devel apel.spec,1.7,1.8 Message-ID: <20090724165731.A2E6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7635 Modified Files: apel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apel.spec =================================================================== RCS file: /cvs/pkgs/rpms/apel/devel/apel.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- apel.spec 24 Feb 2009 01:22:00 -0000 1.7 +++ apel.spec 24 Jul 2009 16:57:31 -0000 1.8 @@ -3,7 +3,7 @@ Name: apel Version: 10.7 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://cvs.m17n.org/elisp/APEL/index.en.html BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 10.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 10.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:57:45 +0000 (UTC) Subject: rpms/apg/devel apg.spec,1.16,1.17 Message-ID: <20090724165745.92EFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7777 Modified Files: apg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apg.spec =================================================================== RCS file: /cvs/pkgs/rpms/apg/devel/apg.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- apg.spec 24 Feb 2009 01:22:50 -0000 1.16 +++ apg.spec 24 Jul 2009 16:57:45 -0000 1.17 @@ -2,7 +2,7 @@ Summary: Automated Password Generator f Name: apg Version: 2.3.0b -Release: 8%{?dist} +Release: 9%{?dist} License: BSD Group: System Environment/Base URL: http://www.adel.nursat.kz/%{name}/ @@ -60,6 +60,9 @@ fi %{_sysconfdir}/xinetd.d/apgd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.0b-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.3.0b-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:57:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:57:59 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf.spec,1.41,1.42 Message-ID: <20090724165759.9BA1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7916 Modified Files: aplus-fsf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aplus-fsf.spec =================================================================== RCS file: /cvs/pkgs/rpms/aplus-fsf/devel/aplus-fsf.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- aplus-fsf.spec 10 Mar 2009 20:20:22 -0000 1.41 +++ aplus-fsf.spec 24 Jul 2009 16:57:59 -0000 1.42 @@ -1,7 +1,7 @@ %define catalogue %{_sysconfdir}/X11/fontpath.d/ %define name aplus-fsf %define ver 4.22 -%define rel 4 +%define rel 5 %if %($(pkg-config xemacs) ; echo $?) %define xemacs_version 21.5 @@ -193,6 +193,9 @@ fi %{xemacs_startdir}/aplus-fsf-init.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.22.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Jochen Schmitt 4.22.4-15 - Support noach subpackages - fix gcc-44 releated issues (workaround) From jkeating at fedoraproject.org Fri Jul 24 16:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:58:13 +0000 (UTC) Subject: rpms/apmd/devel apmd.spec,1.32,1.33 Message-ID: <20090724165813.A818811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8063 Modified Files: apmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/apmd/devel/apmd.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- apmd.spec 17 Mar 2009 08:35:55 -0000 1.32 +++ apmd.spec 24 Jul 2009 16:58:13 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Advanced Power Management (APM) BIOS utilities for laptops Name: apmd Version: 3.2.2 -Release: 10%{?dist} +Release: 11%{?dist} Source: ftp://ftp.debian.org/debian/pool/main/a/apmd/%{name}_%{version}.orig.tar.gz Source1: apmd.init Source2: apmscript @@ -98,6 +98,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/apm-scripts/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.2.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Zdenek Prikryl - 1:3.2.2-10 - minor spec file clean up From jkeating at fedoraproject.org Fri Jul 24 16:58:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:58:26 +0000 (UTC) Subject: rpms/apmud/devel apmud.spec,1.13,1.14 Message-ID: <20090724165826.7310D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apmud/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8205 Modified Files: apmud.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apmud.spec =================================================================== RCS file: /cvs/pkgs/rpms/apmud/devel/apmud.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- apmud.spec 24 Feb 2009 01:25:24 -0000 1.13 +++ apmud.spec 24 Jul 2009 16:58:26 -0000 1.14 @@ -2,7 +2,7 @@ Name: apmud Version: 1.0.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Power management daemon for Apple PowerPC laptops Source0: http://linuxppc.jvc.nl/apmud-%{version}.tgz @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_prefix}/share/man/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:58:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:58:39 +0000 (UTC) Subject: rpms/apollon/devel apollon.spec,1.14,1.15 Message-ID: <20090724165839.8C63711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apollon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8337 Modified Files: apollon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apollon.spec =================================================================== RCS file: /cvs/pkgs/rpms/apollon/devel/apollon.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- apollon.spec 24 Feb 2009 01:26:14 -0000 1.14 +++ apollon.spec 24 Jul 2009 16:58:39 -0000 1.15 @@ -2,7 +2,7 @@ Summary: Filesharing client Name: apollon Version: 1.0.1 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Internet @@ -125,6 +125,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:58:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:58:52 +0000 (UTC) Subject: rpms/appframework/devel appframework.spec,1.2,1.3 Message-ID: <20090724165852.76A7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/appframework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8467 Modified Files: appframework.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: appframework.spec =================================================================== RCS file: /cvs/pkgs/rpms/appframework/devel/appframework.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- appframework.spec 24 Feb 2009 01:27:03 -0000 1.2 +++ appframework.spec 24 Jul 2009 16:58:52 -0000 1.3 @@ -1,6 +1,6 @@ Name: appframework Version: 1.03 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Swing Application Framework License: LGPLv2+ URL: https://appframework.dev.java.net/ @@ -72,6 +72,9 @@ find . -name "*.jar" -exec %{__rm} -f {} %{_javadocdir}/%{name}-%{version}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.03-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.03-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:59:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:59:05 +0000 (UTC) Subject: rpms/appliance-tools/devel appliance-tools.spec,1.10,1.11 Message-ID: <20090724165905.B790111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/appliance-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8627 Modified Files: appliance-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: appliance-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/appliance-tools/devel/appliance-tools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- appliance-tools.spec 16 Jul 2009 15:07:46 -0000 1.10 +++ appliance-tools.spec 24 Jul 2009 16:59:05 -0000 1.11 @@ -5,7 +5,7 @@ Summary: Tools for building Appliances Name: appliance-tools Version: 004.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Base URL: http://git.et.redhat.com/?p=act.git @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/ec2convert/*.pyc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 004.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + *Mon Jul 07 2009 David Huff -004.4 - added functionality include additional modules in ramdisk From jkeating at fedoraproject.org Fri Jul 24 16:59:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:59:19 +0000 (UTC) Subject: rpms/apr/devel apr.spec,1.86,1.87 Message-ID: <20090724165919.BB6AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8776 Modified Files: apr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apr.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/apr.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- apr.spec 15 Jul 2009 07:54:36 -0000 1.86 +++ apr.spec 24 Jul 2009 16:59:19 -0000 1.87 @@ -6,7 +6,7 @@ Summary: Apache Portable Runtime library Name: apr Version: 1.3.6 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Bojan Smojver - 1.3.6-1 - bump up to 1.3.6 From jkeating at fedoraproject.org Fri Jul 24 16:59:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:59:33 +0000 (UTC) Subject: rpms/apr-api-docs/devel apr-api-docs.spec,1.14,1.15 Message-ID: <20090724165933.7EA8D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apr-api-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8930 Modified Files: apr-api-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apr-api-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-api-docs/devel/apr-api-docs.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- apr-api-docs.spec 17 Jul 2009 06:12:25 -0000 1.14 +++ apr-api-docs.spec 24 Jul 2009 16:59:33 -0000 1.15 @@ -1,6 +1,6 @@ Name: apr-api-docs Version: 1.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Apache Portable Runtime API documentation Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/apr-%{version}/api-docs/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Bojan Smojver 1.3.6-1 - Bump up to 1.3.6 From jkeating at fedoraproject.org Fri Jul 24 16:59:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:59:47 +0000 (UTC) Subject: rpms/apr-util/devel apr-util.spec,1.69,1.70 Message-ID: <20090724165947.E36D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apr-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9072 Modified Files: apr-util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apr-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr-util/devel/apr-util.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- apr-util.spec 15 Jul 2009 08:19:50 -0000 1.69 +++ apr-util.spec 24 Jul 2009 16:59:47 -0000 1.70 @@ -4,7 +4,7 @@ Summary: Apache Portable Runtime Utility library Name: apr-util Version: 1.3.8 -Release: 2%{?dist} +Release: 3%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -188,6 +188,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Bojan Smojver 1.3.8-2 - adjust apr-util-1.3.7-nodbmdso.patch From jkeating at fedoraproject.org Fri Jul 24 17:00:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:00:17 +0000 (UTC) Subject: rpms/aprsd/devel aprsd.spec,1.6,1.7 Message-ID: <20090724170017.7008711C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aprsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9454 Modified Files: aprsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aprsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/aprsd/devel/aprsd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- aprsd.spec 24 Feb 2009 01:32:36 -0000 1.6 +++ aprsd.spec 24 Jul 2009 17:00:17 -0000 1.7 @@ -2,7 +2,7 @@ Name: aprsd Summary: Internet gateway and client access to amateur radio APRS packet data Version: 2.2.5 -Release: %{uprel}.5%{?dist}.1 +Release: %{uprel}.5%{?dist}.2 Group: Applications/Internet License: GPLv2+ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-%{uprel}.tar.gz @@ -85,6 +85,9 @@ fi %doc doc/qalgorithm.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.5-15.5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.5-15.5.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:00:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:00:44 +0000 (UTC) Subject: rpms/apt/devel apt.spec,1.63,1.64 Message-ID: <20090724170044.80A4D11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9668 Modified Files: apt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apt.spec =================================================================== RCS file: /cvs/pkgs/rpms/apt/devel/apt.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- apt.spec 6 Mar 2009 20:36:07 -0000 1.63 +++ apt.spec 24 Jul 2009 17:00:44 -0000 1.64 @@ -10,7 +10,7 @@ Summary: Debian's Advanced Packaging Tool with RPM support Name: apt Version: %{aptver} -Release: 0.%{snapver}.4%{?dist} +Release: 0.%{snapver}.4%{?dist}.1 Group: System Environment/Base URL: http://apt-rpm.org/ # SourceLicense: GPLv2+ except lua/ which is MIT @@ -299,6 +299,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.15lorg3.95-0.git416.4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Panu Matilainen - 0.5.15lorg3.95-0.git416.4 - rebuild for rpm 4.7.0 From jkeating at fedoraproject.org Fri Jul 24 17:01:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:01:01 +0000 (UTC) Subject: rpms/apt-mirror/devel apt-mirror.spec,1.2,1.3 Message-ID: <20090724170101.6E21A11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apt-mirror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9851 Modified Files: apt-mirror.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apt-mirror.spec =================================================================== RCS file: /cvs/pkgs/rpms/apt-mirror/devel/apt-mirror.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- apt-mirror.spec 24 Feb 2009 01:34:28 -0000 1.2 +++ apt-mirror.spec 24 Jul 2009 17:01:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: apt-mirror Version: 0.4.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: APT sources mirroring tool Group: Development/Tools @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:01:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:01:16 +0000 (UTC) Subject: rpms/aqbanking/devel aqbanking.spec,1.59,1.60 Message-ID: <20090724170116.5B36011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aqbanking/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10030 Modified Files: aqbanking.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aqbanking.spec =================================================================== RCS file: /cvs/pkgs/rpms/aqbanking/devel/aqbanking.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- aqbanking.spec 5 Mar 2009 21:18:18 -0000 1.59 +++ aqbanking.spec 24 Jul 2009 17:01:16 -0000 1.60 @@ -8,7 +8,7 @@ Name: aqbanking Summary: A library for online banking functions and financial data import/export Version: 3.8.2 -Release: 1%{?dist} +Release: 2%{?dist} # Download is PHP form at http://www.aquamaniac.de/sites/download/packages.php Source: %{name}-%{version}.tar.gz Group: System Environment/Libraries @@ -175,6 +175,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Bill Nottingham - 3.8.2-1 - update to 3.8.2-1 From jkeating at fedoraproject.org Fri Jul 24 17:01:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:01:29 +0000 (UTC) Subject: rpms/aqsis/devel aqsis.spec,1.14,1.15 Message-ID: <20090724170129.DBD4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aqsis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10196 Modified Files: aqsis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aqsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/aqsis/devel/aqsis.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- aqsis.spec 12 May 2009 12:51:57 -0000 1.14 +++ aqsis.spec 24 Jul 2009 17:01:29 -0000 1.15 @@ -1,6 +1,6 @@ Name: aqsis Version: 1.4.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Open source RenderMan-compliant 3D rendering solution Group: Applications/Multimedia @@ -249,6 +249,9 @@ fi || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 kwizart < kwizart at gmail.com > - 1.4.2-5 - Rebuild for boost on F-12 From jkeating at fedoraproject.org Fri Jul 24 17:01:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:01:45 +0000 (UTC) Subject: rpms/arc/devel arc.spec,1.18,1.19 Message-ID: <20090724170145.0C67111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10381 Modified Files: arc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arc.spec =================================================================== RCS file: /cvs/pkgs/rpms/arc/devel/arc.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- arc.spec 24 Feb 2009 01:37:23 -0000 1.18 +++ arc.spec 24 Jul 2009 17:01:44 -0000 1.19 @@ -1,6 +1,6 @@ Name: arc Version: 5.21o -Release: 6%{?dist} +Release: 7%{?dist} Summary: Arc archiver Group: Applications/Archiving License: GPL+ @@ -41,6 +41,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.21o-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.21o-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:01:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:01:58 +0000 (UTC) Subject: rpms/archimedes/devel archimedes.spec,1.7,1.8 Message-ID: <20090724170158.89A0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/archimedes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10521 Modified Files: archimedes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: archimedes.spec =================================================================== RCS file: /cvs/pkgs/rpms/archimedes/devel/archimedes.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- archimedes.spec 24 Feb 2009 01:38:19 -0000 1.7 +++ archimedes.spec 24 Jul 2009 17:01:58 -0000 1.8 @@ -1,7 +1,7 @@ Summary: 2D Quantum Monte Carlo simulator for semiconductor devices Name: archimedes Version: 0.8.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Engineering URL: http://www.gnu.org/software/archimedes/ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:02:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:02:11 +0000 (UTC) Subject: rpms/archivemail/devel archivemail.spec,1.7,1.8 Message-ID: <20090724170211.9993E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/archivemail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10694 Modified Files: archivemail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: archivemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/archivemail/devel/archivemail.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- archivemail.spec 24 Feb 2009 01:39:14 -0000 1.7 +++ archivemail.spec 24 Jul 2009 17:02:11 -0000 1.8 @@ -1,7 +1,7 @@ %define _default_patch_fuzz 2 Name: archivemail Version: 0.7.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for archiving and compressing old email in mailboxes Group: Applications/Internet @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/archivemail.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.7.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:02:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:02:27 +0000 (UTC) Subject: rpms/archmage/devel archmage.spec,1.11,1.12 Message-ID: <20090724170227.E1F4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/archmage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10884 Modified Files: archmage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: archmage.spec =================================================================== RCS file: /cvs/pkgs/rpms/archmage/devel/archmage.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- archmage.spec 11 Jun 2009 08:26:01 -0000 1.11 +++ archmage.spec 24 Jul 2009 17:02:27 -0000 1.12 @@ -2,7 +2,7 @@ Name: archmage Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extensible reader/decompiler of files in CHM format Group: Development/Tools @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man*/archmage* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Rangeen Basu Roy Chowdhury - 0.2.3-1 - Update to 0.2.3 From mschwendt at fedoraproject.org Fri Jul 24 17:02:51 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 24 Jul 2009 17:02:51 +0000 (UTC) Subject: rpms/abicheck/devel abicheck-1.2-fortify-source-f8.patch,1.1,NONE Message-ID: <20090724170251.A3D5B11C00CE@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/abicheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11137 Removed Files: abicheck-1.2-fortify-source-f8.patch Log Message: remove obsolete patch --- abicheck-1.2-fortify-source-f8.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:02:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:02:44 +0000 (UTC) Subject: rpms/ardour/devel ardour.spec,1.29,1.30 Message-ID: <20090724170244.0D4BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ardour/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11048 Modified Files: ardour.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ardour.spec =================================================================== RCS file: /cvs/pkgs/rpms/ardour/devel/ardour.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- ardour.spec 22 Jul 2009 03:20:46 -0000 1.29 +++ ardour.spec 24 Jul 2009 17:02:43 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Multichannel Digital Audio Workstation Name: ardour Version: 2.8.2 -Release: 2%{?dist} +Release: 3%{?dist} # No more direct links. Download from # http://ardour.org/download Source: ardour-%{version}.tar.bz2 @@ -175,6 +175,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/ru/man1/ardour.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Orcan Ogetbil 2.8.2-2 - Fix libdir once more From mtasaka at fedoraproject.org Fri Jul 24 17:03:02 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:03:02 +0000 (UTC) Subject: rpms/efont-unicode-bdf/devel efont-unicode-bdf.spec,1.5,1.6 Message-ID: <20090724170302.BF05111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/efont-unicode-bdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11234 Modified Files: efont-unicode-bdf.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4.2-10 - F-12: Mass rebuild Index: efont-unicode-bdf.spec =================================================================== RCS file: /cvs/extras/rpms/efont-unicode-bdf/devel/efont-unicode-bdf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- efont-unicode-bdf.spec 26 Mar 2009 17:24:21 -0000 1.5 +++ efont-unicode-bdf.spec 24 Jul 2009 17:03:02 -0000 1.6 @@ -6,7 +6,7 @@ Name: %{name} Version: 0.4.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Unicode font by Electronic Font Open Laboratory Group: User Interface/X @@ -112,6 +112,9 @@ exit 0 %{catalogdir}/fonts-%{name} %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4.2-10 +- F-12: Mass rebuild + * Fri Mar 27 2009 Mamoru Tasaka - 0.4.2-9 - F-11: Again rebuild for new virtual font Provides (#491958) From jkeating at fedoraproject.org Fri Jul 24 17:03:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:03:06 +0000 (UTC) Subject: rpms/argus/devel argus.spec,1.10,1.11 Message-ID: <20090724170306.2837C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/argus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11279 Modified Files: argus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: argus.spec =================================================================== RCS file: /cvs/pkgs/rpms/argus/devel/argus.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- argus.spec 24 Feb 2009 01:41:57 -0000 1.10 +++ argus.spec 24 Jul 2009 17:03:06 -0000 1.11 @@ -1,6 +1,6 @@ Name: argus Version: 2.0.6.fixes.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Network transaction audit tool License: GPLv2+ Group: Applications/Internet @@ -123,6 +123,9 @@ fi %{_mandir}/man5/ra* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.6.fixes.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.6.fixes.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:03:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:03:22 +0000 (UTC) Subject: rpms/argyllcms/devel argyllcms.spec,1.12,1.13 Message-ID: <20090724170322.2F32311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/argyllcms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11524 Modified Files: argyllcms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: argyllcms.spec =================================================================== RCS file: /cvs/pkgs/rpms/argyllcms/devel/argyllcms.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- argyllcms.spec 30 Jun 2009 18:10:28 -0000 1.12 +++ argyllcms.spec 24 Jul 2009 17:03:21 -0000 1.13 @@ -5,7 +5,7 @@ Name: argyllcms Version: 1.0.4 -Release: 1%{?alphatag}%{?dist} +Release: 2%{?alphatag}%{?dist} Summary: ICC compatible color management system Group: User Interface/X @@ -123,6 +123,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Jon Ciesla - 1.0.4-1 - New upstream, incorporating ICC fixes. From jkeating at fedoraproject.org Fri Jul 24 17:03:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:03:37 +0000 (UTC) Subject: rpms/aria2/devel aria2.spec,1.16,1.17 Message-ID: <20090724170337.2F7A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aria2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11698 Modified Files: aria2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aria2.spec =================================================================== RCS file: /cvs/pkgs/rpms/aria2/devel/aria2.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- aria2.spec 14 Apr 2009 02:42:07 -0000 1.16 +++ aria2.spec 24 Jul 2009 17:03:37 -0000 1.17 @@ -2,7 +2,7 @@ Name: aria2 Version: 1.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: High speed download utility with resuming and segmented downloading Group: Applications/Internet License: GPLv2 @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Robert Scheck - 1.3.1-1 - Upgrade to 1.3.1 From mschwendt at fedoraproject.org Fri Jul 24 17:03:59 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 24 Jul 2009 17:03:59 +0000 (UTC) Subject: rpms/abicheck/F-11 abicheck-1.2-fortify-source-f8.patch,1.1,NONE Message-ID: <20090724170359.9102C11C00CE@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/abicheck/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12007 Removed Files: abicheck-1.2-fortify-source-f8.patch Log Message: remove obsolete patch --- abicheck-1.2-fortify-source-f8.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:03:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:03:50 +0000 (UTC) Subject: rpms/ario/devel ario.spec,1.3,1.4 Message-ID: <20090724170350.D428511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ario/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11873 Modified Files: ario.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ario.spec =================================================================== RCS file: /cvs/pkgs/rpms/ario/devel/ario.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ario.spec 24 Feb 2009 01:44:39 -0000 1.3 +++ ario.spec 24 Jul 2009 17:03:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: ario Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Ario MPD Client Group: Applications/Multimedia License: GPLv2+ @@ -69,6 +69,9 @@ fi %{_datadir}/icons/hicolor/*/apps/ario.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:04:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:04:05 +0000 (UTC) Subject: rpms/arj/devel arj.spec,1.8,1.9 Message-ID: <20090724170405.08CA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12068 Modified Files: arj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arj.spec =================================================================== RCS file: /cvs/pkgs/rpms/arj/devel/arj.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- arj.spec 18 Apr 2009 14:35:49 -0000 1.8 +++ arj.spec 24 Jul 2009 17:04:04 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Archiver for .arj files Name: arj Version: 3.10.22 -Release: 8%{?dist} +Release: 9%{?dist} License: GPL+ Group: Applications/Archiving URL: http://arj.sourceforge.net/ @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*arj*1.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.10.22-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Robert Scheck 3.10.22-8 - Added patch to disable the custom printf to avoid conflicting strnlen definition with glibc headers (thanks to Lubomir Rintel) From mtasaka at fedoraproject.org Fri Jul 24 17:04:14 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:04:14 +0000 (UTC) Subject: rpms/fantasdic/devel fantasdic.spec,1.5,1.6 Message-ID: <20090724170414.2879011C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/fantasdic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12202 Modified Files: fantasdic.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.0-0.6.beta7 - F-12: Mass rebuild Index: fantasdic.spec =================================================================== RCS file: /cvs/extras/rpms/fantasdic/devel/fantasdic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fantasdic.spec 28 Mar 2009 15:48:08 -0000 1.5 +++ fantasdic.spec 24 Jul 2009 17:04:13 -0000 1.6 @@ -5,7 +5,7 @@ %define betaver beta7 %define rubyabi 1.8 -%define fedorarel 5 +%define fedorarel 6 %define fullrel %{?betaver:0.}%{fedorarel}%{?betaver:.%betaver} @@ -166,6 +166,9 @@ exit 0 %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.0-0.6.beta7 +- F-12: Mass rebuild + * Sun Mar 29 2009 Mamoru Tasaka - 1.0-0.5.beta7 - Remove previous modification for bindtextdomain() Fixed on rubygem-gettext side (rubygem-gettext bug 24947, GNOME bug 576826) From mschwendt at fedoraproject.org Fri Jul 24 17:04:22 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 24 Jul 2009 17:04:22 +0000 (UTC) Subject: rpms/abicheck/F-10 abicheck-1.2-fortify-source-f8.patch,1.1,NONE Message-ID: <20090724170422.89B7911C00CE@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/abicheck/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12337 Removed Files: abicheck-1.2-fortify-source-f8.patch Log Message: remove obsolete patch --- abicheck-1.2-fortify-source-f8.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:04:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:04:25 +0000 (UTC) Subject: rpms/arm-gp2x-linux-SDL/devel arm-gp2x-linux-SDL.spec,1.2,1.3 Message-ID: <20090724170425.9BB6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12398 Modified Files: arm-gp2x-linux-SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-SDL/devel/arm-gp2x-linux-SDL.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- arm-gp2x-linux-SDL.spec 24 Feb 2009 01:45:40 -0000 1.2 +++ arm-gp2x-linux-SDL.spec 24 Jul 2009 17:04:25 -0000 1.3 @@ -3,7 +3,7 @@ Name: %{target}-SDL Version: 1.2.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Cross Compiled SDL Library targeted at %{target} Group: Development/Libraries License: LGPLv2+ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:04:38 +0000 (UTC) Subject: rpms/arm-gp2x-linux-binutils/devel arm-gp2x-linux-binutils.spec, 1.6, 1.7 Message-ID: <20090724170438.A6BBB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12548 Modified Files: arm-gp2x-linux-binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-binutils/devel/arm-gp2x-linux-binutils.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- arm-gp2x-linux-binutils.spec 24 Feb 2009 01:46:38 -0000 1.6 +++ arm-gp2x-linux-binutils.spec 24 Jul 2009 17:04:38 -0000 1.7 @@ -2,7 +2,7 @@ Name: %{target}-binutils Version: 2.16.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Cross Compiling GNU binutils targeted at %{target} Group: Development/Tools License: GPLv2+ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.16.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.16.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mschwendt at fedoraproject.org Fri Jul 24 17:04:47 2009 From: mschwendt at fedoraproject.org (Michael Schwendt) Date: Fri, 24 Jul 2009 17:04:47 +0000 (UTC) Subject: rpms/abicheck/F-9 abicheck-1.2-fortify-source-f8.patch,1.1,NONE Message-ID: <20090724170447.C41C611C00CE@cvs1.fedora.phx.redhat.com> Author: mschwendt Update of /cvs/extras/rpms/abicheck/F-9 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12670 Removed Files: abicheck-1.2-fortify-source-f8.patch Log Message: remove obsolete patch --- abicheck-1.2-fortify-source-f8.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:04:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:04:52 +0000 (UTC) Subject: rpms/arm-gp2x-linux-gcc/devel arm-gp2x-linux-gcc.spec,1.8,1.9 Message-ID: <20090724170452.BC17711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12738 Modified Files: arm-gp2x-linux-gcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-gcc/devel/arm-gp2x-linux-gcc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- arm-gp2x-linux-gcc.spec 24 Feb 2009 01:47:34 -0000 1.8 +++ arm-gp2x-linux-gcc.spec 24 Jul 2009 17:04:52 -0000 1.9 @@ -4,7 +4,7 @@ Name: %{target}-gcc Version: 4.1.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Cross Compiling GNU GCC targeted at %{target} Group: Development/Languages License: GPLv2+ @@ -192,6 +192,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:05:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:05:06 +0000 (UTC) Subject: rpms/arm-gp2x-linux-glibc/devel arm-gp2x-linux-glibc.spec,1.4,1.5 Message-ID: <20090724170506.D6EA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12895 Modified Files: arm-gp2x-linux-glibc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-glibc/devel/arm-gp2x-linux-glibc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- arm-gp2x-linux-glibc.spec 24 Feb 2009 01:48:27 -0000 1.4 +++ arm-gp2x-linux-glibc.spec 24 Jul 2009 17:05:06 -0000 1.5 @@ -2,7 +2,7 @@ Name: %{target}-glibc Version: 2.3.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Cross Compiled GNU C Library targeted at %{target} Group: Development/Languages License: LGPLv2+ @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.3.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:30:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:30:10 +0000 (UTC) Subject: rpms/abgraph/devel abgraph.spec,1.2,1.3 Message-ID: <20090724163010.1B0EA11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abgraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20692 Modified Files: abgraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abgraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/abgraph/devel/abgraph.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- abgraph.spec 23 Feb 2009 23:53:47 -0000 1.2 +++ abgraph.spec 24 Jul 2009 16:30:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: abgraph Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: ABGraph is a simple tool to benchmark webservers @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:53:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:53:19 +0000 (UTC) Subject: rpms/anki/devel anki.spec,1.11,1.12 Message-ID: <20090724165319.D8D7F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/anki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5010 Modified Files: anki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: anki.spec =================================================================== RCS file: /cvs/pkgs/rpms/anki/devel/anki.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- anki.spec 11 Jul 2009 22:34:00 -0000 1.11 +++ anki.spec 24 Jul 2009 16:53:19 -0000 1.12 @@ -2,7 +2,7 @@ Name: anki Version: 0.9.9.8.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Flashcard program for using space repetition learning Group: Amusements/Games @@ -108,6 +108,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Christian Krause - 0.9.9.8.5-1 - Update to new upstream version 0.9.9.8.5 From jkeating at fedoraproject.org Fri Jul 24 16:29:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:29:38 +0000 (UTC) Subject: rpms/abcm2ps/devel abcm2ps.spec,1.51,1.52 Message-ID: <20090724162938.D7BDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abcm2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20278 Modified Files: abcm2ps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abcm2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/abcm2ps/devel/abcm2ps.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- abcm2ps.spec 13 Jun 2009 17:51:11 -0000 1.51 +++ abcm2ps.spec 24 Jul 2009 16:29:38 -0000 1.52 @@ -1,6 +1,6 @@ Name: abcm2ps Version: 5.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A program to typeset ABC tunes into Postscript Group: Applications/Multimedia @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Gerard Milmeister - 5.9.5-1 - new release 5.9.5 From jkeating at fedoraproject.org Fri Jul 24 16:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:29:11 +0000 (UTC) Subject: rpms/abcMIDI/devel abcMIDI.spec,1.21,1.22 Message-ID: <20090724162911.D1BAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abcMIDI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19906 Modified Files: abcMIDI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abcMIDI.spec =================================================================== RCS file: /cvs/pkgs/rpms/abcMIDI/devel/abcMIDI.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- abcMIDI.spec 13 Jun 2009 18:03:29 -0000 1.21 +++ abcMIDI.spec 24 Jul 2009 16:29:11 -0000 1.22 @@ -1,6 +1,6 @@ Name: abcMIDI Version: 20090317 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ABC to/from MIDI conversion utilities Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090317-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Gerard Milmeister - 20090317-1 - new release 2009-03-17 From jkeating at fedoraproject.org Fri Jul 24 16:29:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:29:25 +0000 (UTC) Subject: rpms/abcde/devel abcde.spec,1.19,1.20 Message-ID: <20090724162925.DBC2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abcde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20107 Modified Files: abcde.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abcde.spec =================================================================== RCS file: /cvs/pkgs/rpms/abcde/devel/abcde.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- abcde.spec 23 Feb 2009 23:51:11 -0000 1.19 +++ abcde.spec 24 Jul 2009 16:29:25 -0000 1.20 @@ -1,6 +1,6 @@ Name: abcde Version: 2.3.99.6 -Release: 8 +Release: 9 Summary: A Better CD Encoder Group: Applications/Multimedia @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.99.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.3.99.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:28:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:28:56 +0000 (UTC) Subject: rpms/abby/devel abby.spec,1.3,1.4 Message-ID: <20090724162856.F23D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19736 Modified Files: abby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abby.spec =================================================================== RCS file: /cvs/pkgs/rpms/abby/devel/abby.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- abby.spec 11 Jul 2009 23:20:53 -0000 1.3 +++ abby.spec 24 Jul 2009 16:28:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: abby Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Front-end for cclive and clive Group: Applications/Multimedia @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Nicoleau Fabien 0.4.1-1 - Rebuild for 0.4.1 * Mon Jun 22 2009 Nicoleau Fabien 0.3.0-1 From jkeating at fedoraproject.org Fri Jul 24 16:30:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:30:29 +0000 (UTC) Subject: rpms/abicheck/devel abicheck.spec,1.57,1.58 Message-ID: <20090724163029.8CA7F11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abicheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20924 Modified Files: abicheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abicheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/abicheck/devel/abicheck.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- abicheck.spec 24 Feb 2009 09:03:36 -0000 1.57 +++ abicheck.spec 24 Jul 2009 16:30:29 -0000 1.58 @@ -3,7 +3,7 @@ Summary: ABI checking tool Name: abicheck Version: 1.2 -Release: 22 +Release: 23 License: LGPLv2 Group: Applications/File URL: http://abicheck.sourceforge.net/ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Michael Schwendt - 1.2-22 - Fedora > 10: conditional BR glibc-static as needed for test-suite From jkeating at fedoraproject.org Fri Jul 24 16:33:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:33:31 +0000 (UTC) Subject: rpms/ack/devel ack.spec,1.11,1.12 Message-ID: <20090724163331.029D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23155 Modified Files: ack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ack.spec =================================================================== RCS file: /cvs/pkgs/rpms/ack/devel/ack.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ack.spec 24 Feb 2009 00:01:54 -0000 1.11 +++ ack.spec 24 Jul 2009 16:33:30 -0000 1.12 @@ -1,6 +1,6 @@ Name: ack Version: 1.86 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Grep-like text finder License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.86-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.86-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:29:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:29:52 +0000 (UTC) Subject: rpms/abe/devel abe.spec,1.20,1.21 Message-ID: <20090724162952.A83D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20448 Modified Files: abe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abe.spec =================================================================== RCS file: /cvs/pkgs/rpms/abe/devel/abe.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- abe.spec 23 Feb 2009 23:52:54 -0000 1.20 +++ abe.spec 24 Jul 2009 16:29:52 -0000 1.21 @@ -1,6 +1,6 @@ Name: abe Version: 1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Scrolling, platform-jumping, ancient pyramid exploring game Group: Amusements/Games @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:30:46 +0000 (UTC) Subject: rpms/abiword/devel abiword.spec,1.86,1.87 Message-ID: <20090724163046.3AACA11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/abiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21181 Modified Files: abiword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: abiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/abiword/devel/abiword.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- abiword.spec 5 Jul 2009 12:47:22 -0000 1.86 +++ abiword.spec 24 Jul 2009 16:30:46 -0000 1.87 @@ -7,7 +7,7 @@ Summary: The AbiWord word processor Name: abiword Version: %{majorversion}.%{minorversion}.%{microversion} -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Group: Applications/Editors License: GPLv2+ @@ -179,6 +179,9 @@ update-desktop-database %{_datadir}/appl %{_libdir}/pkgconfig/%{name}-%{majorversion}.%{minorversion}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.7.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Marc Maurer - 1:2.7.6-3 - Re-add updated .desktop patch From jkeating at fedoraproject.org Fri Jul 24 17:05:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:05:30 +0000 (UTC) Subject: rpms/arm-gp2x-linux-kernel-headers/devel arm-gp2x-linux-kernel-headers.spec, 1.4, 1.5 Message-ID: <20090724170530.5164611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-kernel-headers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13105 Modified Files: arm-gp2x-linux-kernel-headers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-kernel-headers.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-kernel-headers/devel/arm-gp2x-linux-kernel-headers.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- arm-gp2x-linux-kernel-headers.spec 24 Feb 2009 01:49:33 -0000 1.4 +++ arm-gp2x-linux-kernel-headers.spec 24 Jul 2009 17:05:30 -0000 1.5 @@ -2,7 +2,7 @@ Name: %{target}-kernel-headers Version: 2.6.12.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Kernel headers for Cross Compiling to %{target} Group: Development/Languages License: GPLv2 @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.12.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.6.12.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 16:33:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:33:47 +0000 (UTC) Subject: rpms/acl/devel acl.spec,1.51,1.52 Message-ID: <20090724163347.2981211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/acl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23329 Modified Files: acl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: acl.spec =================================================================== RCS file: /cvs/pkgs/rpms/acl/devel/acl.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- acl.spec 24 Feb 2009 00:02:45 -0000 1.51 +++ acl.spec 24 Jul 2009 16:33:47 -0000 1.52 @@ -1,7 +1,7 @@ Summary: Access control list utilities Name: acl Version: 2.2.47 -Release: 4%{?dist} +Release: 5%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libattr-devel >= 2.4.1 BuildRequires: autoconf, libtool >= 1.5, gettext, gawk @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT /%{_lib}/libacl.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.47-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.47-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:05:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:05:45 +0000 (UTC) Subject: rpms/arm-gp2x-linux-zlib/devel arm-gp2x-linux-zlib.spec,1.2,1.3 Message-ID: <20090724170545.3306711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm-gp2x-linux-zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13249 Modified Files: arm-gp2x-linux-zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm-gp2x-linux-zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm-gp2x-linux-zlib/devel/arm-gp2x-linux-zlib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- arm-gp2x-linux-zlib.spec 24 Feb 2009 01:50:30 -0000 1.2 +++ arm-gp2x-linux-zlib.spec 24 Jul 2009 17:05:45 -0000 1.3 @@ -3,7 +3,7 @@ Name: %{target}-zlib Version: 1.2.3 -Release: 7%{?dist} +Release: 8%{?dist} License: zlib Group: Development/Libraries Summary: Cross Compiled zlib Library targeted at %{target} @@ -63,6 +63,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:06:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:06:00 +0000 (UTC) Subject: rpms/arm4/devel arm4.spec,1.3,1.4 Message-ID: <20090724170600.431F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arm4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13405 Modified Files: arm4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arm4.spec =================================================================== RCS file: /cvs/pkgs/rpms/arm4/devel/arm4.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- arm4.spec 20 May 2009 14:36:13 -0000 1.3 +++ arm4.spec 24 Jul 2009 17:06:00 -0000 1.4 @@ -2,7 +2,7 @@ Name: arm4 Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Application Response Measurement V4.0 Group: Development/System @@ -168,6 +168,9 @@ rm -rf %{buildroot} %{_libdir}/libArmNative.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 3 2009 David Carter - 0.8.2-1 - Improved stability and performance - Assorted bug fixes From jkeating at fedoraproject.org Fri Jul 24 17:06:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:06:15 +0000 (UTC) Subject: rpms/armacycles-ad/devel armacycles-ad.spec,1.12,1.13 Message-ID: <20090724170615.6C57411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/armacycles-ad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13552 Modified Files: armacycles-ad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: armacycles-ad.spec =================================================================== RCS file: /cvs/pkgs/rpms/armacycles-ad/devel/armacycles-ad.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- armacycles-ad.spec 28 Apr 2009 13:15:28 -0000 1.12 +++ armacycles-ad.spec 24 Jul 2009 17:06:15 -0000 1.13 @@ -1,6 +1,6 @@ Name: armacycles-ad Version: 0.2.8.3 -Release: 1.rc2%{?dist} +Release: 1.rc2%{?dist}.1 Summary: A lightcycle game in 3D Group: Amusements/Games @@ -173,6 +173,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.8.3-1.rc2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jon Ciesla - 0.2.8.3-1.rc2 - New upstream. From jkeating at fedoraproject.org Fri Jul 24 17:06:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:06:31 +0000 (UTC) Subject: rpms/armadillo/devel armadillo.spec,1.1,1.2 Message-ID: <20090724170631.ACA3711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/armadillo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13813 Modified Files: armadillo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: armadillo.spec =================================================================== RCS file: /cvs/pkgs/rpms/armadillo/devel/armadillo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- armadillo.spec 10 Jul 2009 04:02:39 -0000 1.1 +++ armadillo.spec 24 Jul 2009 17:06:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: armadillo Version: 0.6.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast C++ matrix library with interfaces to LAPACK and ATLAS Group: Development/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/docs_tech/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 06 2009 Conrad Sanderson - 0.6.12-2 - added conversion of DOS end-of-line to UNIX end-of-line for README.txt From jkeating at fedoraproject.org Fri Jul 24 17:06:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:06:51 +0000 (UTC) Subject: rpms/armstrong/devel armstrong.spec,1.5,1.6 Message-ID: <20090724170651.545D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/armstrong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14512 Modified Files: armstrong.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: armstrong.spec =================================================================== RCS file: /cvs/pkgs/rpms/armstrong/devel/armstrong.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- armstrong.spec 14 Jun 2009 19:25:49 -0000 1.5 +++ armstrong.spec 24 Jul 2009 17:06:51 -0000 1.6 @@ -2,7 +2,7 @@ Name: armstrong Version: 0.2.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Powerful music sequencing library Group: System Environment/Libraries # src/plugins/Geonik is GPL+ @@ -290,6 +290,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Orcan Ogetbil 0.2.6-7 - Fix plugin loading error on 64bit systems - Build against system ladspa and dssi From jkeating at fedoraproject.org Fri Jul 24 17:07:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:07:07 +0000 (UTC) Subject: rpms/arora/devel arora.spec,1.17,1.18 Message-ID: <20090724170707.2498D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14757 Modified Files: arora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arora.spec =================================================================== RCS file: /cvs/pkgs/rpms/arora/devel/arora.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- arora.spec 21 Jul 2009 16:14:49 -0000 1.17 +++ arora.spec 24 Jul 2009 17:07:07 -0000 1.18 @@ -1,6 +1,6 @@ Name: arora Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A cross platform web browser Group: Applications/Internet @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Jaroslav Reznik - 0.8.0-1 - Update to 0.8.0 - Removed custom arora.xml From jkeating at fedoraproject.org Fri Jul 24 17:07:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:07:23 +0000 (UTC) Subject: rpms/arp-scan/devel arp-scan.spec,1.5,1.6 Message-ID: <20090724170723.12FAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arp-scan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14925 Modified Files: arp-scan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arp-scan.spec =================================================================== RCS file: /cvs/pkgs/rpms/arp-scan/devel/arp-scan.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- arp-scan.spec 24 Feb 2009 01:53:08 -0000 1.5 +++ arp-scan.spec 24 Jul 2009 17:07:22 -0000 1.6 @@ -1,6 +1,6 @@ Name: arp-scan Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Scanning and fingerprinting tool Group: Applications/Internet @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:07:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:07:38 +0000 (UTC) Subject: rpms/arpack/devel arpack.spec,1.5,1.6 Message-ID: <20090724170738.F284B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15073 Modified Files: arpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/arpack/devel/arpack.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- arpack.spec 24 Feb 2009 01:54:01 -0000 1.5 +++ arpack.spec 24 Jul 2009 17:07:38 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Fortran77 subroutines for solving large scale eigenvalue problems Name: arpack Version: 2.1 -Release: 11%{?dist} +Release: 12%{?dist} License: RiceBSD Group: Development/Libraries URL: http://www.caam.rice.edu/software/ARPACK/ @@ -111,6 +111,9 @@ rm -rf %{buildroot} %{_libdir}/libarpack.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:07:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:07:54 +0000 (UTC) Subject: rpms/arptables_jf/devel arptables_jf.spec,1.21,1.22 Message-ID: <20090724170754.1CB2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arptables_jf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15218 Modified Files: arptables_jf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arptables_jf.spec =================================================================== RCS file: /cvs/pkgs/rpms/arptables_jf/devel/arptables_jf.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- arptables_jf.spec 16 Mar 2009 14:27:31 -0000 1.21 +++ arptables_jf.spec 24 Jul 2009 17:07:53 -0000 1.22 @@ -4,7 +4,7 @@ Name: arptables_jf Epoch: 0 Version: 0.0.8 -Release: 15%{?dist} +Release: 16%{?dist} Source: %{name}-%{version}.tbz #Source1: Makefile #Source2: arptables.h @@ -72,6 +72,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.0.8-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jiri Skala - 0:0.0.8-15 - replaced config directive before arptables_jf init script From jkeating at fedoraproject.org Fri Jul 24 17:08:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:08:08 +0000 (UTC) Subject: rpms/arptools/devel arptools.spec,1.1,1.2 Message-ID: <20090724170808.2625A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arptools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15365 Modified Files: arptools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arptools.spec =================================================================== RCS file: /cvs/pkgs/rpms/arptools/devel/arptools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- arptools.spec 25 Feb 2009 15:28:29 -0000 1.1 +++ arptools.spec 24 Jul 2009 17:08:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: arptools Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of libnet and libpcap based ARP utilities Group: Applications/Internet @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 22 2009 Jakub Hrozek 1.0.2-1 - initial packaging From jkeating at fedoraproject.org Fri Jul 24 17:08:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:08:22 +0000 (UTC) Subject: rpms/arpwatch/devel arpwatch.spec,1.9,1.10 Message-ID: <20090724170822.F3C4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arpwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15520 Modified Files: arpwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arpwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/arpwatch/devel/arpwatch.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- arpwatch.spec 24 Feb 2009 01:55:51 -0000 1.9 +++ arpwatch.spec 24 Jul 2009 17:08:22 -0000 1.10 @@ -3,7 +3,7 @@ Name: arpwatch Epoch: 14 Version: 2.1a15 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Network monitoring tools for tracking IP addresses on a network Group: Applications/System License: BSD with advertising @@ -142,6 +142,9 @@ fi %verify(not md5 size mtime) %config %{_vararpwatch}/ethercodes.dat %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 14:2.1a15-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 14:2.1a15-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:08:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:08:38 +0000 (UTC) Subject: rpms/arrows/devel arrows.spec,1.6,1.7 Message-ID: <20090724170838.0BD2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arrows/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15683 Modified Files: arrows.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arrows.spec =================================================================== RCS file: /cvs/pkgs/rpms/arrows/devel/arrows.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- arrows.spec 24 Feb 2009 01:56:46 -0000 1.6 +++ arrows.spec 24 Jul 2009 17:08:37 -0000 1.7 @@ -1,6 +1,6 @@ Name: arrows Version: 0.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Neat little maze game Group: Amusements/Games License: GPLv2+ @@ -73,6 +73,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:09:01 +0000 (UTC) Subject: rpms/arts/devel arts.spec,1.94,1.95 Message-ID: <20090724170901.9697711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/arts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15880 Modified Files: arts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: arts.spec =================================================================== RCS file: /cvs/pkgs/rpms/arts/devel/arts.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- arts.spec 19 Jul 2009 00:32:08 -0000 1.94 +++ arts.spec 24 Jul 2009 17:09:01 -0000 1.95 @@ -27,7 +27,7 @@ Summary: aRts (analog realtime synthesiz Group: System Environment/Daemons Epoch: 8 Version: 1.5.10 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2+ Url: http://www.kde.org @@ -210,6 +210,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8:1.5.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 8:1.5.10-6 - FTBFS arts-1.5.10-5.fc11 (#511653) - -devel: Requires: %%{name}%%_isa ... From jkeating at fedoraproject.org Fri Jul 24 17:09:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:09:18 +0000 (UTC) Subject: rpms/artwiz-aleczapka-fonts/devel artwiz-aleczapka-fonts.spec, 1.6, 1.7 Message-ID: <20090724170918.DE3F511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/artwiz-aleczapka-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16048 Modified Files: artwiz-aleczapka-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: artwiz-aleczapka-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/artwiz-aleczapka-fonts/devel/artwiz-aleczapka-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- artwiz-aleczapka-fonts.spec 24 Feb 2009 01:58:36 -0000 1.6 +++ artwiz-aleczapka-fonts.spec 24 Jul 2009 17:09:18 -0000 1.7 @@ -2,7 +2,7 @@ Name: artwiz-aleczapka-fonts Version: 1.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Set of (improved) artwiz fonts Group: User Interface/X @@ -89,6 +89,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:09:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:09:37 +0000 (UTC) Subject: rpms/asa/devel asa.spec,1.8,1.9 Message-ID: <20090724170937.309EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16234 Modified Files: asa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asa.spec =================================================================== RCS file: /cvs/pkgs/rpms/asa/devel/asa.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- asa.spec 24 Feb 2009 01:59:29 -0000 1.8 +++ asa.spec 24 Jul 2009 17:09:37 -0000 1.9 @@ -1,6 +1,6 @@ Name: asa Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Convert Fortran carriage control characters Group: Development/Tools @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:09:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:09:52 +0000 (UTC) Subject: rpms/asana-math-fonts/devel asana-math-fonts.spec,1.7,1.8 Message-ID: <20090724170952.205EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asana-math-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16409 Modified Files: asana-math-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asana-math-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/asana-math-fonts/devel/asana-math-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- asana-math-fonts.spec 24 Feb 2009 02:00:24 -0000 1.7 +++ asana-math-fonts.spec 24 Jul 2009 17:09:51 -0000 1.8 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 0.914 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An OpenType font with a MATH table Group: User Interface/X @@ -57,6 +57,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.914-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.914-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 16:14:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:43 +0000 Subject: [pkgdb] glibc: jakub has requested commit Message-ID: <20090724161443.42F3F10F8B5@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on glibc (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 17:10:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:10:07 +0000 (UTC) Subject: rpms/asc/devel asc.spec,1.17,1.18 Message-ID: <20090724171007.1683B11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16560 Modified Files: asc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asc.spec =================================================================== RCS file: /cvs/pkgs/rpms/asc/devel/asc.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- asc.spec 23 May 2009 17:27:02 -0000 1.17 +++ asc.spec 24 Jul 2009 17:10:06 -0000 1.18 @@ -1,6 +1,6 @@ Name: asc Version: 2.2.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Advanced Strategic Command Group: Amusements/Games License: GPLv2+ @@ -80,6 +80,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Hans de Goede 2.2.0.0-4 - Rebuild for new boost From pkgdb at fedoraproject.org Fri Jul 24 16:14:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:38 +0000 Subject: [pkgdb] glibc: jakub has requested watchbugzilla Message-ID: <20090724161438.5E7F110F8B2@bastion2.fedora.phx.redhat.com> jakub has requested the watchbugzilla acl on glibc (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:14:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:40 +0000 Subject: [pkgdb] glibc: jakub has requested watchcommits Message-ID: <20090724161440.6BDA110F8B6@bastion2.fedora.phx.redhat.com> jakub has requested the watchcommits acl on glibc (Fedora 8) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:14:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:14:51 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161451.F202E10F8BD@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora 7) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From pkgdb at fedoraproject.org Fri Jul 24 16:17:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 16:17:05 +0000 Subject: [pkgdb] glibc had acl change status Message-ID: <20090724161705.444B110F8B9@bastion2.fedora.phx.redhat.com> schwab has set the watchbugzilla acl on glibc (Fedora 8) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/glibc From jkeating at fedoraproject.org Fri Jul 24 16:14:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 16:14:34 +0000 (UTC) Subject: rpms/R-pls/devel R-pls.spec,1.7,1.8 Message-ID: <20090724161434.B38C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/R-pls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9816 Modified Files: R-pls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: R-pls.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-pls/devel/R-pls.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- R-pls.spec 6 Jul 2009 17:32:32 -0000 1.7 +++ R-pls.spec 24 Jul 2009 16:14:34 -0000 1.8 @@ -2,7 +2,7 @@ Name: R-%{packname} Version: 2.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multivariate regression by PLSR and PCR Summary(fr): R?gression multivari?e par PLSR et PCR @@ -87,6 +87,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 pingou 2.1.0-1 - Update version from 2.1 to 2.1.0 since for R having a - or a . is similar From jkeating at fedoraproject.org Fri Jul 24 17:10:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:10:24 +0000 (UTC) Subject: rpms/asc-music/devel asc-music.spec,1.3,1.4 Message-ID: <20090724171024.4DDB011C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asc-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16728 Modified Files: asc-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asc-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/asc-music/devel/asc-music.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- asc-music.spec 24 Feb 2009 02:02:07 -0000 1.3 +++ asc-music.spec 24 Jul 2009 17:10:24 -0000 1.4 @@ -1,6 +1,6 @@ Name: asc-music Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Background music for the game asc Group: Amusements/Games License: GPLv2+ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:10:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:10:42 +0000 (UTC) Subject: rpms/asciidoc/devel asciidoc.spec,1.12,1.13 Message-ID: <20090724171042.6F0BB11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asciidoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16910 Modified Files: asciidoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asciidoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/asciidoc/devel/asciidoc.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- asciidoc.spec 19 Jun 2009 03:42:35 -0000 1.12 +++ asciidoc.spec 24 Jul 2009 17:10:42 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Text based document generation Name: asciidoc Version: 8.4.5 -Release: 1%{?dist} +Release: 2%{?dist} # The python code does not specify a version. # The javascript example code is GPLv2+. License: GPL+ and GPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %doc README BUGS CHANGELOG COPYRIGHT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Dave Airlie 8.4.5-1 - new upstream version 8.4.5 - required by X.org libXi to build From jkeating at fedoraproject.org Fri Jul 24 17:10:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:10:58 +0000 (UTC) Subject: rpms/asio/devel asio.spec,1.6,1.7 Message-ID: <20090724171058.BCAA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17069 Modified Files: asio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asio.spec =================================================================== RCS file: /cvs/pkgs/rpms/asio/devel/asio.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- asio.spec 24 Feb 2009 02:03:55 -0000 1.6 +++ asio.spec 24 Jul 2009 17:10:58 -0000 1.7 @@ -4,7 +4,7 @@ Summary: A cross-platform C++ library for network programming Name: asio Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://sourceforge.net/projects/asio/ Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.bz2 License: Boost @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/asio.hpp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:11:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:11:16 +0000 (UTC) Subject: rpms/asm2/devel asm2.spec,1.7,1.8 Message-ID: <20090724171116.2FE9F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17233 Modified Files: asm2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/asm2/devel/asm2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- asm2.spec 31 Mar 2009 20:03:08 -0000 1.7 +++ asm2.spec 24 Jul 2009 17:11:16 -0000 1.8 @@ -34,7 +34,7 @@ Name: asm2 Version: 2.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 0 Summary: A code manipulation tool to implement adaptable systems License: BSD @@ -307,6 +307,9 @@ fi %{_datadir}/%{name}-%{version}/examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michael Schwendt - 0:2.2.3-5 - Fix unowned directories (#473622) From jkeating at fedoraproject.org Fri Jul 24 17:11:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:11:33 +0000 (UTC) Subject: rpms/aspell/devel aspell.spec,1.46,1.47 Message-ID: <20090724171133.73A3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17369 Modified Files: aspell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell/devel/aspell.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- aspell.spec 24 Feb 2009 02:05:40 -0000 1.46 +++ aspell.spec 24 Jul 2009 17:11:33 -0000 1.47 @@ -1,7 +1,7 @@ Summary: A spelling checker Name: aspell Version: 0.60.6 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 12 License: LGPLv2 and MIT Group: Applications/Text @@ -130,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/pspell-config.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 12:0.60.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 12:0.60.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:11:49 +0000 (UTC) Subject: rpms/aspell-af/devel aspell-af.spec,1.15,1.16 Message-ID: <20090724171149.0885011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-af/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17544 Modified Files: aspell-af.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-af.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-af/devel/aspell-af.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- aspell-af.spec 24 Feb 2009 02:06:35 -0000 1.15 +++ aspell-af.spec 24 Jul 2009 17:11:48 -0000 1.16 @@ -4,7 +4,7 @@ Summary: Afrikaans dictionaries for Aspe Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:12:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:12:05 +0000 (UTC) Subject: rpms/aspell-ar/devel aspell-ar.spec,1.4,1.5 Message-ID: <20090724171205.4688211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17699 Modified Files: aspell-ar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ar.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ar/devel/aspell-ar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- aspell-ar.spec 24 Feb 2009 02:07:28 -0000 1.4 +++ aspell-ar.spec 24 Jul 2009 17:12:05 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Arabic dictionary for Aspell Name: aspell-%{lang} Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:12:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:12:21 +0000 (UTC) Subject: rpms/aspell-bg/devel aspell-bg.spec,1.21,1.22 Message-ID: <20090724171221.5661711C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17866 Modified Files: aspell-bg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-bg/devel/aspell-bg.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- aspell-bg.spec 24 Feb 2009 02:08:18 -0000 1.21 +++ aspell-bg.spec 24 Jul 2009 17:12:21 -0000 1.22 @@ -4,7 +4,7 @@ Summary: Bulgarian dictionaries for Aspe Name: aspell-%{lang} Epoch: 50 Version: 4.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:12:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:12:37 +0000 (UTC) Subject: rpms/aspell-bn/devel aspell-bn.spec,1.6,1.7 Message-ID: <20090724171237.07E1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-bn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18037 Modified Files: aspell-bn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-bn.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-bn/devel/aspell-bn.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- aspell-bn.spec 24 Feb 2009 02:09:12 -0000 1.6 +++ aspell-bn.spec 24 Jul 2009 17:12:36 -0000 1.7 @@ -4,7 +4,7 @@ Name: aspell-bn Version: 0.01.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Aspell Bengali Dictionary Package Group: Applications/Text @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.01.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.01.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:12:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:12:53 +0000 (UTC) Subject: rpms/aspell-br/devel aspell-br.spec,1.14,1.15 Message-ID: <20090724171253.4239111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-br/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18195 Modified Files: aspell-br.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-br.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-br/devel/aspell-br.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- aspell-br.spec 24 Feb 2009 02:10:04 -0000 1.14 +++ aspell-br.spec 24 Jul 2009 17:12:53 -0000 1.15 @@ -4,7 +4,7 @@ Summary: Breton dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:13:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:13:09 +0000 (UTC) Subject: rpms/aspell-ca/devel aspell-ca.spec,1.24,1.25 Message-ID: <20090724171309.11C1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18359 Modified Files: aspell-ca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ca/devel/aspell-ca.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- aspell-ca.spec 24 Feb 2009 02:10:57 -0000 1.24 +++ aspell-ca.spec 24 Jul 2009 17:13:08 -0000 1.25 @@ -4,7 +4,7 @@ Summary: Catalan dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 20040130 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:20040130-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:20040130-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:31:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:31:56 +0000 (UTC) Subject: rpms/GtkAda/devel GtkAda.spec,1.26,1.27 Message-ID: <20090724153156.256A611C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/GtkAda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17758 Modified Files: GtkAda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: GtkAda.spec =================================================================== RCS file: /cvs/pkgs/rpms/GtkAda/devel/GtkAda.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- GtkAda.spec 23 Feb 2009 21:22:36 -0000 1.26 +++ GtkAda.spec 24 Jul 2009 15:31:55 -0000 1.27 @@ -1,6 +1,6 @@ Name: GtkAda Version: 2.10.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ada graphical toolkit based on Gtk+ Group: System Environment/Libraries License: GPLv2+ @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.10.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:32:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:32:20 +0000 (UTC) Subject: rpms/HamFax/devel HamFax.spec,1.5,1.6 Message-ID: <20090724153220.4AF4C11C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/HamFax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17925 Modified Files: HamFax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: HamFax.spec =================================================================== RCS file: /cvs/pkgs/rpms/HamFax/devel/HamFax.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- HamFax.spec 23 Feb 2009 21:23:28 -0000 1.5 +++ HamFax.spec 24 Jul 2009 15:32:20 -0000 1.6 @@ -1,6 +1,6 @@ Name: HamFax Version: 0.6.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: HamFax is an application for sending and receiving facsimiles in amateur radio Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:31:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:31:03 +0000 (UTC) Subject: rpms/Glide3-libGL/devel Glide3-libGL.spec,1.8,1.9 Message-ID: <20090724153103.2536811C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/Glide3-libGL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17372 Modified Files: Glide3-libGL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Glide3-libGL.spec =================================================================== RCS file: /cvs/pkgs/rpms/Glide3-libGL/devel/Glide3-libGL.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- Glide3-libGL.spec 23 Feb 2009 21:20:44 -0000 1.8 +++ Glide3-libGL.spec 24 Jul 2009 15:31:02 -0000 1.9 @@ -1,6 +1,6 @@ Name: Glide3-libGL Version: 6.2.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Glide3 OpenGL library for use with 3Dfx Voodoo 1 & 2 cards Group: System Environment/Libraries License: MIT @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.2.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 6.2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 15:33:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 15:33:10 +0000 (UTC) Subject: rpms/HippoDraw/devel HippoDraw.spec,1.10,1.11 Message-ID: <20090724153310.AC98711C007C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/HippoDraw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18348 Modified Files: HippoDraw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: HippoDraw.spec =================================================================== RCS file: /cvs/pkgs/rpms/HippoDraw/devel/HippoDraw.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- HippoDraw.spec 3 Mar 2009 14:59:20 -0000 1.10 +++ HippoDraw.spec 24 Jul 2009 15:33:10 -0000 1.11 @@ -1,6 +1,6 @@ Name: HippoDraw Version: 1.21.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Interactive and Python scriptable data analysis application %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} @@ -144,6 +144,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/%{name}/examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.21.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Caol?n McNamara - 1.21.1-9 - include cstdio for std::sprintf From jkeating at fedoraproject.org Fri Jul 24 17:13:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:13:25 +0000 (UTC) Subject: rpms/aspell-cs/devel aspell-cs.spec,1.14,1.15 Message-ID: <20090724171325.0A10911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-cs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18541 Modified Files: aspell-cs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-cs.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-cs/devel/aspell-cs.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- aspell-cs.spec 24 Feb 2009 02:11:48 -0000 1.14 +++ aspell-cs.spec 24 Jul 2009 17:13:24 -0000 1.15 @@ -5,7 +5,7 @@ Summary: Czech dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 20040614 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:20040614-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:20040614-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:13:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:13:41 +0000 (UTC) Subject: rpms/aspell-cy/devel aspell-cy.spec,1.13,1.14 Message-ID: <20090724171341.1B9D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-cy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18692 Modified Files: aspell-cy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-cy.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-cy/devel/aspell-cy.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- aspell-cy.spec 24 Feb 2009 02:12:40 -0000 1.13 +++ aspell-cy.spec 24 Jul 2009 17:13:40 -0000 1.14 @@ -4,7 +4,7 @@ Summary: Welsh dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:13:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:13:56 +0000 (UTC) Subject: rpms/aspell-da/devel aspell-da.spec,1.24,1.25 Message-ID: <20090724171356.236BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-da/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18853 Modified Files: aspell-da.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-da.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-da/devel/aspell-da.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- aspell-da.spec 24 Feb 2009 02:13:31 -0000 1.24 +++ aspell-da.spec 24 Jul 2009 17:13:56 -0000 1.25 @@ -5,7 +5,7 @@ Summary: Danish dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 1.4.42 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:1.4.42-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:1.4.42-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:14:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:14:11 +0000 (UTC) Subject: rpms/aspell-de/devel aspell-de.spec,1.23,1.24 Message-ID: <20090724171411.1C79B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19021 Modified Files: aspell-de.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-de/devel/aspell-de.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- aspell-de.spec 24 Feb 2009 02:14:25 -0000 1.23 +++ aspell-de.spec 24 Jul 2009 17:14:10 -0000 1.24 @@ -5,7 +5,7 @@ Summary: German dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 20030222 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:20030222-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:20030222-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:14:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:14:26 +0000 (UTC) Subject: rpms/aspell-el/devel aspell-el.spec,1.13,1.14 Message-ID: <20090724171426.8EB1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19164 Modified Files: aspell-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-el/devel/aspell-el.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- aspell-el.spec 24 Feb 2009 02:15:21 -0000 1.13 +++ aspell-el.spec 24 Jul 2009 17:14:25 -0000 1.14 @@ -4,7 +4,7 @@ Summary: Greek dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:14:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:14:42 +0000 (UTC) Subject: rpms/aspell-en/devel aspell-en.spec,1.21,1.22 Message-ID: <20090724171442.32E0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19340 Modified Files: aspell-en.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-en/devel/aspell-en.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- aspell-en.spec 24 Feb 2009 02:16:16 -0000 1.21 +++ aspell-en.spec 24 Jul 2009 17:14:41 -0000 1.22 @@ -5,7 +5,7 @@ Summary: English dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 6.0 -Release: 10%{?dist} +Release: 11%{?dist} License: MIT and BSD Group: Applications/Text URL: http://aspell.net/ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:6.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:6.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:14:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:14:58 +0000 (UTC) Subject: rpms/aspell-es/devel aspell-es.spec,1.29,1.30 Message-ID: <20090724171458.5624711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19524 Modified Files: aspell-es.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-es/devel/aspell-es.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- aspell-es.spec 24 Feb 2009 02:17:08 -0000 1.29 +++ aspell-es.spec 24 Jul 2009 17:14:58 -0000 1.30 @@ -4,7 +4,7 @@ Summary: Spanish dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:15:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:15:14 +0000 (UTC) Subject: rpms/aspell-fo/devel aspell-fo.spec,1.15,1.16 Message-ID: <20090724171514.19F0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-fo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19697 Modified Files: aspell-fo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-fo.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-fo/devel/aspell-fo.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- aspell-fo.spec 24 Feb 2009 02:18:02 -0000 1.15 +++ aspell-fo.spec 24 Jul 2009 17:15:13 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Faeroese dictionaries for Aspel Name: aspell-%{lang} Epoch: 51 Version: 0.2.16 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 51:0.2.16-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 51:0.2.16-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:15:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:15:31 +0000 (UTC) Subject: rpms/aspell-fr/devel aspell-fr.spec,1.20,1.21 Message-ID: <20090724171531.ACE6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19885 Modified Files: aspell-fr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-fr/devel/aspell-fr.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- aspell-fr.spec 24 Feb 2009 02:18:54 -0000 1.20 +++ aspell-fr.spec 24 Jul 2009 17:15:31 -0000 1.21 @@ -4,7 +4,7 @@ Summary: French dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:15:47 +0000 (UTC) Subject: rpms/aspell-ga/devel aspell-ga.spec,1.15,1.16 Message-ID: <20090724171547.AFFB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20050 Modified Files: aspell-ga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ga.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ga/devel/aspell-ga.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- aspell-ga.spec 24 Feb 2009 02:19:44 -0000 1.15 +++ aspell-ga.spec 24 Jul 2009 17:15:47 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Irish dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 4.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:4.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:16:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:16:04 +0000 (UTC) Subject: rpms/aspell-gd/devel aspell-gd.spec,1.16,1.17 Message-ID: <20090724171604.3D7B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-gd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20236 Modified Files: aspell-gd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-gd.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-gd/devel/aspell-gd.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- aspell-gd.spec 24 Feb 2009 02:20:37 -0000 1.16 +++ aspell-gd.spec 24 Jul 2009 17:16:04 -0000 1.17 @@ -5,7 +5,7 @@ Summary: Gaelic dictionaries for Aspell Name: aspell-%{lang} Epoch: 51 Version: 0.1.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 51:0.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 51:0.1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:16:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:16:24 +0000 (UTC) Subject: rpms/aspell-gl/devel aspell-gl.spec,1.12,1.13 Message-ID: <20090724171624.7CD6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-gl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20431 Modified Files: aspell-gl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-gl.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-gl/devel/aspell-gl.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- aspell-gl.spec 24 Feb 2009 02:21:27 -0000 1.12 +++ aspell-gl.spec 24 Jul 2009 17:16:24 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Galician dictionaries for Aspel Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:17:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:17:00 +0000 (UTC) Subject: rpms/aspell-gu/devel aspell-gu.spec,1.6,1.7 Message-ID: <20090724171700.740B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-gu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20777 Modified Files: aspell-gu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-gu.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-gu/devel/aspell-gu.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- aspell-gu.spec 24 Feb 2009 02:22:18 -0000 1.6 +++ aspell-gu.spec 24 Jul 2009 17:17:00 -0000 1.7 @@ -4,7 +4,7 @@ Name: aspell-gu Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GNU Aspell Gujarati Dictionary Package Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:17:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:17:17 +0000 (UTC) Subject: rpms/aspell-he/devel aspell-he.spec,1.7,1.8 Message-ID: <20090724171717.4B97B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-he/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20938 Modified Files: aspell-he.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-he.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-he/devel/aspell-he.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- aspell-he.spec 24 Feb 2009 02:23:12 -0000 1.7 +++ aspell-he.spec 24 Jul 2009 17:17:17 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Hebrew dictionary for Aspell Name: aspell-%{lang} Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:17:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:17:36 +0000 (UTC) Subject: rpms/aspell-hi/devel aspell-hi.spec,1.6,1.7 Message-ID: <20090724171736.77F9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-hi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21108 Modified Files: aspell-hi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-hi.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-hi/devel/aspell-hi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- aspell-hi.spec 24 Feb 2009 02:24:06 -0000 1.6 +++ aspell-hi.spec 24 Jul 2009 17:17:36 -0000 1.7 @@ -4,7 +4,7 @@ Name: aspell-hi Version: 0.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GNU Aspell Hindi Dictionary Package Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:17:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:17:53 +0000 (UTC) Subject: rpms/aspell-hr/devel aspell-hr.spec,1.12,1.13 Message-ID: <20090724171753.1A38611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-hr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21273 Modified Files: aspell-hr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-hr.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-hr/devel/aspell-hr.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- aspell-hr.spec 24 Feb 2009 02:24:58 -0000 1.12 +++ aspell-hr.spec 24 Jul 2009 17:17:52 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Croatian dictionaries for Aspel Name: aspell-%{lang} Epoch: 50 Version: 0.51 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.51-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.51-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:18:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:18:12 +0000 (UTC) Subject: rpms/aspell-id/devel aspell-id.spec,1.13,1.14 Message-ID: <20090724171812.B7C0B11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-id/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21479 Modified Files: aspell-id.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-id.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-id/devel/aspell-id.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- aspell-id.spec 24 Feb 2009 02:25:51 -0000 1.13 +++ aspell-id.spec 24 Jul 2009 17:18:12 -0000 1.14 @@ -5,7 +5,7 @@ Summary: Indonesian dictionaries for Asp Name: aspell-%{lang} Epoch: 50 Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:18:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:18:33 +0000 (UTC) Subject: rpms/aspell-is/devel aspell-is.spec,1.11,1.12 Message-ID: <20090724171833.27F5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-is/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21695 Modified Files: aspell-is.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-is.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-is/devel/aspell-is.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- aspell-is.spec 24 Feb 2009 02:26:43 -0000 1.11 +++ aspell-is.spec 24 Jul 2009 17:18:33 -0000 1.12 @@ -5,7 +5,7 @@ Summary: Icelandic dictionaries for Aspe Name: aspell-%{lang} Epoch: 50 Version: 0.51.1 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-%{aspellrelease}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.51.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.51.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:18:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:18:50 +0000 (UTC) Subject: rpms/aspell-it/devel aspell-it.spec,1.22,1.23 Message-ID: <20090724171850.8318611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21875 Modified Files: aspell-it.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-it/devel/aspell-it.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- aspell-it.spec 24 Feb 2009 02:27:34 -0000 1.22 +++ aspell-it.spec 24 Jul 2009 17:18:50 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Italian dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 2.2_20050523 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:2.2_20050523-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:2.2_20050523-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:19:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:19:07 +0000 (UTC) Subject: rpms/aspell-ml/devel aspell-ml.spec,1.2,1.3 Message-ID: <20090724171907.2D1ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22020 Modified Files: aspell-ml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ml.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ml/devel/aspell-ml.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- aspell-ml.spec 24 Feb 2009 02:28:25 -0000 1.2 +++ aspell-ml.spec 24 Jul 2009 17:19:07 -0000 1.3 @@ -3,7 +3,7 @@ Name: aspell-%{lang} Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GNU Aspell Malayalam Dictionary Package Group: Applications/Text @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:19:23 +0000 (UTC) Subject: rpms/aspell-mr/devel aspell-mr.spec,1.5,1.6 Message-ID: <20090724171923.BF32E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-mr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22190 Modified Files: aspell-mr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-mr.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-mr/devel/aspell-mr.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- aspell-mr.spec 24 Feb 2009 02:29:15 -0000 1.5 +++ aspell-mr.spec 24 Jul 2009 17:19:23 -0000 1.6 @@ -4,7 +4,7 @@ Name: aspell-mr Version: 0.10 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GNU Aspell Marathi Dictionary Package Group: Applications/Text @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:19:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:19:50 +0000 (UTC) Subject: rpms/aspell-nl/devel aspell-nl.spec,1.30,1.31 Message-ID: <20090724171950.3024B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22412 Modified Files: aspell-nl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-nl/devel/aspell-nl.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- aspell-nl.spec 24 Feb 2009 02:30:10 -0000 1.30 +++ aspell-nl.spec 24 Jul 2009 17:19:50 -0000 1.31 @@ -3,7 +3,7 @@ Name: aspell-nl # Have to bump this to make it newer than the old, bad version. Epoch: 51 Version: 0.1e -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Text URL: http://packages.debian.org/unstable/text/%{name} @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 51:0.1e-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 51:0.1e-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:20:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:20:06 +0000 (UTC) Subject: rpms/aspell-no/devel aspell-no.spec,1.26,1.27 Message-ID: <20090724172006.9080A11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-no/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22580 Modified Files: aspell-no.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-no.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-no/devel/aspell-no.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- aspell-no.spec 24 Feb 2009 02:31:02 -0000 1.26 +++ aspell-no.spec 24 Jul 2009 17:20:06 -0000 1.27 @@ -4,7 +4,7 @@ Summary: Norwegian dictionaries for Aspe Name: aspell-no Epoch: 50 Version: 0.50.1 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:20:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:20:25 +0000 (UTC) Subject: rpms/aspell-or/devel aspell-or.spec,1.4,1.5 Message-ID: <20090724172025.7B6F911C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-or/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22769 Modified Files: aspell-or.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-or.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-or/devel/aspell-or.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- aspell-or.spec 24 Feb 2009 02:31:53 -0000 1.4 +++ aspell-or.spec 24 Jul 2009 17:20:25 -0000 1.5 @@ -4,7 +4,7 @@ Name: aspell-or Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Aspell Oriya Dictionary Package Group: Applications/Text @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:20:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:20:43 +0000 (UTC) Subject: rpms/aspell-pa/devel aspell-pa.spec,1.4,1.5 Message-ID: <20090724172043.F0FAA11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-pa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22939 Modified Files: aspell-pa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-pa.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-pa/devel/aspell-pa.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- aspell-pa.spec 24 Feb 2009 02:32:45 -0000 1.4 +++ aspell-pa.spec 24 Jul 2009 17:20:43 -0000 1.5 @@ -4,7 +4,7 @@ Name: aspell-pa Version: 0.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Aspell Punjabi Dictionary Package Group: Applications/Text @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 17:21:14 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:21:14 +0000 (UTC) Subject: rpms/gnome-commander/devel noautobuild,NONE,1.1 Message-ID: <20090724172114.CA1E611C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/gnome-commander/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23176 Added Files: noautobuild Log Message: Check git later --- NEW FILE noautobuild --- Check git later From jkeating at fedoraproject.org Fri Jul 24 17:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:21:17 +0000 (UTC) Subject: rpms/aspell-pl/devel aspell-pl.spec,1.15,1.16 Message-ID: <20090724172117.10F7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23220 Modified Files: aspell-pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-pl/devel/aspell-pl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- aspell-pl.spec 24 Feb 2009 02:33:35 -0000 1.15 +++ aspell-pl.spec 24 Jul 2009 17:21:16 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Polish dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 6.0_20061121 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:6.0_20061121-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:6.0_20061121-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:21:32 +0000 (UTC) Subject: rpms/aspell-pt/devel aspell-pt.spec,1.21,1.22 Message-ID: <20090724172132.4798911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23378 Modified Files: aspell-pt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-pt/devel/aspell-pt.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- aspell-pt.spec 24 Feb 2009 02:34:25 -0000 1.21 +++ aspell-pt.spec 24 Jul 2009 17:21:32 -0000 1.22 @@ -4,7 +4,7 @@ Summary: Portuguese dictionaries for Asp Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:21:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:21:46 +0000 (UTC) Subject: rpms/aspell-ru/devel aspell-ru.spec,1.10,1.11 Message-ID: <20090724172146.0D00511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23526 Modified Files: aspell-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ru/devel/aspell-ru.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- aspell-ru.spec 24 Feb 2009 02:35:20 -0000 1.10 +++ aspell-ru.spec 24 Jul 2009 17:21:45 -0000 1.11 @@ -5,7 +5,7 @@ Summary: Russian dictionaries for Aspell Epoch: 50 Name: aspell-%{lang} Version: 0.99f7 -Release: 5%{?dist} +Release: 6%{?dist} License: ARL Group: Applications/Text URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.99f7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.99f7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:21:59 +0000 (UTC) Subject: rpms/aspell-sk/devel aspell-sk.spec,1.7,1.8 Message-ID: <20090724172159.F219511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23719 Modified Files: aspell-sk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-sk/devel/aspell-sk.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- aspell-sk.spec 14 Apr 2009 06:05:58 -0000 1.7 +++ aspell-sk.spec 24 Jul 2009 17:21:59 -0000 1.8 @@ -5,7 +5,7 @@ Name: aspell-%{lang} Version: 2.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Slovak dictionaries for Aspell Group: Applications/Text @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 J?n ONDREJ (SAL) - 2.01-2 - update upstream From cwickert at fedoraproject.org Fri Jul 24 17:22:01 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 17:22:01 +0000 (UTC) Subject: rpms/xfburn/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 xfburn.spec, 1.5, 1.6 Message-ID: <20090724172201.C790B11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfburn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23692/F-11 Modified Files: .cvsignore sources xfburn.spec Log Message: * Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 25 Feb 2009 12:05:24 -0000 1.4 +++ .cvsignore 24 Jul 2009 17:22:01 -0000 1.5 @@ -1 +1 @@ -xfburn-0.4.1.tar.bz2 +xfburn-0.4.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 25 Feb 2009 12:05:24 -0000 1.4 +++ sources 24 Jul 2009 17:22:01 -0000 1.5 @@ -1 +1 @@ -f5ed76149fd348504d4a75830b4996dc xfburn-0.4.1.tar.bz2 +67533208e2f487bdf6c779cfedae809d xfburn-0.4.2.tar.bz2 Index: xfburn.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-11/xfburn.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xfburn.spec 25 Feb 2009 12:05:24 -0000 1.5 +++ xfburn.spec 24 Jul 2009 17:22:01 -0000 1.6 @@ -1,12 +1,12 @@ Name: xfburn -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: Simple CD burning tool for Xfce Group: Applications/Archiving License: GPLv2+ URL: http://goodies.xfce.org/projects/applications/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://www.xfce.org/archive/src/apps/xfburn/0.4/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libxfcegui4-devel >= 4.4.0 Thunar-devel >= 0.3.0 @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 + * Wed Feb 25 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 - Include new manpage From cwickert at fedoraproject.org Fri Jul 24 17:22:01 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 17:22:01 +0000 (UTC) Subject: rpms/xfburn/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 xfburn.spec, 1.1, 1.2 Message-ID: <20090724172201.976F511C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfburn/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23692/F-10 Modified Files: .cvsignore sources xfburn.spec Log Message: * Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 22 Mar 2009 22:09:04 -0000 1.2 +++ .cvsignore 24 Jul 2009 17:22:01 -0000 1.3 @@ -1 +1 @@ -xfburn-0.4.1.tar.bz2 +xfburn-0.4.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 22 Mar 2009 22:09:04 -0000 1.2 +++ sources 24 Jul 2009 17:22:01 -0000 1.3 @@ -1 +1 @@ -f5ed76149fd348504d4a75830b4996dc xfburn-0.4.1.tar.bz2 +67533208e2f487bdf6c779cfedae809d xfburn-0.4.2.tar.bz2 Index: xfburn.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfburn/F-10/xfburn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xfburn.spec 22 Mar 2009 22:09:04 -0000 1.1 +++ xfburn.spec 24 Jul 2009 17:22:01 -0000 1.2 @@ -1,12 +1,12 @@ Name: xfburn -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: Simple CD burning tool for Xfce Group: Applications/Archiving License: GPLv2+ URL: http://goodies.xfce.org/projects/applications/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Source0: http://www.xfce.org/archive/src/apps/xfburn/0.4/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libxfcegui4-devel >= 4.4.0 Thunar-devel >= 0.3.0 @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 + * Wed Feb 25 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 - Include new manpage From jkeating at fedoraproject.org Fri Jul 24 17:22:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:22:16 +0000 (UTC) Subject: rpms/aspell-sl/devel aspell-sl.spec,1.8,1.9 Message-ID: <20090724172216.CF8FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23912 Modified Files: aspell-sl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-sl/devel/aspell-sl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- aspell-sl.spec 24 Feb 2009 02:37:10 -0000 1.8 +++ aspell-sl.spec 24 Jul 2009 17:22:16 -0000 1.9 @@ -4,7 +4,7 @@ Summary: Slovenian dictionaries for Aspe Name: aspell-%{lang} Epoch: 50 Version: 0.50 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.50-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.50-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 17:22:35 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:22:35 +0000 (UTC) Subject: rpms/hyperestraier/devel hyperestraier.spec,1.17,1.18 Message-ID: <20090724172235.E951811C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/hyperestraier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24194 Modified Files: hyperestraier.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.4.13-5 - F-12: Mass rebuild Index: hyperestraier.spec =================================================================== RCS file: /cvs/extras/rpms/hyperestraier/devel/hyperestraier.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- hyperestraier.spec 23 Feb 2009 21:37:21 -0000 1.17 +++ hyperestraier.spec 24 Jul 2009 17:22:35 -0000 1.18 @@ -7,7 +7,7 @@ Name: hyperestraier Version: 1.4.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A full-text search system Group: System Environment/Libraries @@ -251,6 +251,9 @@ popd %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.4.13-5 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.4.13-4 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 17:22:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:22:30 +0000 (UTC) Subject: rpms/aspell-sr/devel aspell-sr.spec,1.5,1.6 Message-ID: <20090724172230.329ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-sr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24091 Modified Files: aspell-sr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-sr.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-sr/devel/aspell-sr.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- aspell-sr.spec 24 Feb 2009 02:38:07 -0000 1.5 +++ aspell-sr.spec 24 Jul 2009 17:22:30 -0000 1.6 @@ -4,7 +4,7 @@ Summary: Serbian dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.02 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2 Group: Applications/Text URL: http://aspell.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:22:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:22:45 +0000 (UTC) Subject: rpms/aspell-sv/devel aspell-sv.spec,1.22,1.23 Message-ID: <20090724172245.5591011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-sv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24334 Modified Files: aspell-sv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-sv.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-sv/devel/aspell-sv.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- aspell-sv.spec 24 Feb 2009 02:39:02 -0000 1.22 +++ aspell-sv.spec 24 Jul 2009 17:22:45 -0000 1.23 @@ -4,7 +4,7 @@ Summary: Swedish dictionaries for Aspell Name: aspell-%{lang} Epoch: 50 Version: 0.51 -Release: 4%{?dist} +Release: 5%{?dist} # file sv_phonet.dat is under GPLv2+ the other parts of this package are under LGPLv2+ License: LGPLv2+ and GPLv2+ Group: Applications/Text @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/aspell-0.60/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 50:0.51-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 50:0.51-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:23:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:23:01 +0000 (UTC) Subject: rpms/aspell-ta/devel aspell-ta.spec,1.4,1.5 Message-ID: <20090724172301.BB15E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-ta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24526 Modified Files: aspell-ta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-ta.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-ta/devel/aspell-ta.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- aspell-ta.spec 24 Feb 2009 02:39:56 -0000 1.4 +++ aspell-ta.spec 24 Jul 2009 17:23:01 -0000 1.5 @@ -4,7 +4,7 @@ Name: aspell-ta Version: 20040424 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Aspell Tamil Dictionary Package Group: Applications/Text @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20040424-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20040424-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:23:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:23:17 +0000 (UTC) Subject: rpms/aspell-te/devel aspell-te.spec,1.5,1.6 Message-ID: <20090724172317.67DB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aspell-te/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24699 Modified Files: aspell-te.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aspell-te.spec =================================================================== RCS file: /cvs/pkgs/rpms/aspell-te/devel/aspell-te.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- aspell-te.spec 24 Feb 2009 02:40:48 -0000 1.5 +++ aspell-te.spec 24 Jul 2009 17:23:17 -0000 1.6 @@ -4,7 +4,7 @@ Name: aspell-te Version: 0.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Aspell Telugu Dictionary Package Group: Applications/Text @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:23:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:23:33 +0000 (UTC) Subject: rpms/assogiate/devel assogiate.spec,1.2,1.3 Message-ID: <20090724172333.3BDFB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/assogiate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24885 Modified Files: assogiate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: assogiate.spec =================================================================== RCS file: /cvs/pkgs/rpms/assogiate/devel/assogiate.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- assogiate.spec 24 Feb 2009 02:41:44 -0000 1.2 +++ assogiate.spec 24 Jul 2009 17:23:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: assogiate Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Editor for the file types database Group: Applications/System @@ -79,6 +79,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:24:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:24:16 +0000 (UTC) Subject: rpms/asterisk/devel asterisk.spec,1.51,1.52 Message-ID: <20090724172416.88FBF11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asterisk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25257 Modified Files: asterisk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asterisk.spec =================================================================== RCS file: /cvs/pkgs/rpms/asterisk/devel/asterisk.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- asterisk.spec 5 Mar 2009 14:12:22 -0000 1.51 +++ asterisk.spec 24 Jul 2009 17:24:16 -0000 1.52 @@ -3,7 +3,7 @@ Summary: The Open Source PBX Name: asterisk Version: 1.6.1 -Release: 0.23.%{?_rc:rc%{_rc}}%{?dist} +Release: 0.24.%{?_rc:rc%{_rc}}%{?dist} License: GPLv2 Group: Applications/Internet URL: http://www.asterisk.org/ @@ -1099,6 +1099,9 @@ fi %{_libdir}/asterisk/modules/app_voicemail_plain.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-0.24.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Jeffrey C. Ollie - 1.6.1-0.23.rc1 - Rebuild to pick up new AIS and ODBC deps. - Update script that strips out bad content from tarball to do the From jkeating at fedoraproject.org Fri Jul 24 17:24:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:24:37 +0000 (UTC) Subject: rpms/asterisk-sounds-core/devel asterisk-sounds-core.spec,1.3,1.4 Message-ID: <20090724172437.A26B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asterisk-sounds-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25494 Modified Files: asterisk-sounds-core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asterisk-sounds-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/asterisk-sounds-core/devel/asterisk-sounds-core.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- asterisk-sounds-core.spec 8 Apr 2009 16:34:44 -0000 1.3 +++ asterisk-sounds-core.spec 24 Jul 2009 17:24:37 -0000 1.4 @@ -2,7 +2,7 @@ Name: asterisk-sounds-core Version: 1.4.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Core sounds for Asterisk Group: Applications/Internet @@ -535,6 +535,9 @@ rm -rf %{buildroot} %doc asterisk-core-sounds-fr-wav-%{version}.list %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Jeffrey C. Ollie - 1.4.15-1 - Update to new release of sounds. - Add sounds encoded with siren7 and siren14. From cwickert at fedoraproject.org Fri Jul 24 17:24:49 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 17:24:49 +0000 (UTC) Subject: rpms/xfburn/F-11 noautobuild,1.1,NONE Message-ID: <20090724172449.70A0A11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfburn/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25633/F-11 Removed Files: noautobuild Log Message: remove noautobuild files --- noautobuild DELETED --- From cwickert at fedoraproject.org Fri Jul 24 17:24:49 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 24 Jul 2009 17:24:49 +0000 (UTC) Subject: rpms/xfburn/devel noautobuild,1.1,NONE Message-ID: <20090724172449.A758811C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfburn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25633/devel Removed Files: noautobuild Log Message: remove noautobuild files --- noautobuild DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:24:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:24:55 +0000 (UTC) Subject: rpms/astromenace/devel astromenace.spec,1.9,1.10 Message-ID: <20090724172455.2A69511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astromenace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25724 Modified Files: astromenace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astromenace.spec =================================================================== RCS file: /cvs/pkgs/rpms/astromenace/devel/astromenace.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- astromenace.spec 8 May 2009 13:40:00 -0000 1.9 +++ astromenace.spec 24 Jul 2009 17:24:55 -0000 1.10 @@ -1,6 +1,6 @@ Name: astromenace Version: 1.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Hardcore 3D space shooter with spaceship upgrade possibilities Group: Amusements/Games @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/64x64/apps/astromenace.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Ville Skytt? - 1.2-11 - Build with $RPM_OPT_FLAGS (use %%cmake macro), parallel make. From jkeating at fedoraproject.org Fri Jul 24 17:25:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:25:23 +0000 (UTC) Subject: rpms/astronomy-backgrounds/devel astronomy-backgrounds.spec, 1.2, 1.3 Message-ID: <20090724172523.570BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astronomy-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26110 Modified Files: astronomy-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astronomy-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/astronomy-backgrounds/devel/astronomy-backgrounds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- astronomy-backgrounds.spec 8 May 2009 11:32:47 -0000 1.2 +++ astronomy-backgrounds.spec 24 Jul 2009 17:25:23 -0000 1.3 @@ -1,6 +1,6 @@ Name: astronomy-backgrounds Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Desktop wallpapers with Astronomy theme Group: Applications/Multimedia @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-background-properties %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Michael Schwendt - 1.0-2 - Fix installation of all files. - Fix file/dir conflict (#496905). From jkeating at fedoraproject.org Fri Jul 24 17:25:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:25:09 +0000 (UTC) Subject: rpms/astromenace-data/devel astromenace-data.spec,1.2,1.3 Message-ID: <20090724172509.38C7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astromenace-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25940 Modified Files: astromenace-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astromenace-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/astromenace-data/devel/astromenace-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- astromenace-data.spec 24 Feb 2009 02:45:36 -0000 1.2 +++ astromenace-data.spec 24 Jul 2009 17:25:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: astromenace-data Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hardcore 3D space shooter with spaceship upgrade possibilities Group: Amusements/Games @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_datadir}/astromenace/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:25:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:25:37 +0000 (UTC) Subject: rpms/astronomy-bookmarks/devel astronomy-bookmarks.spec,1.2,1.3 Message-ID: <20090724172537.3B2E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astronomy-bookmarks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26284 Modified Files: astronomy-bookmarks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astronomy-bookmarks.spec =================================================================== RCS file: /cvs/pkgs/rpms/astronomy-bookmarks/devel/astronomy-bookmarks.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- astronomy-bookmarks.spec 24 Feb 2009 02:46:34 -0000 1.2 +++ astronomy-bookmarks.spec 24 Jul 2009 17:25:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: astronomy-bookmarks Version: 1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Fedora astronomy bookmarks Group: Applications/Internet License: GFDL @@ -31,6 +31,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/bookmarks/default-bookmarks.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:25:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:25:50 +0000 (UTC) Subject: rpms/astronomy-menus/devel astronomy-menus.spec,1.1,1.2 Message-ID: <20090724172550.E6CDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astronomy-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26430 Modified Files: astronomy-menus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astronomy-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/astronomy-menus/devel/astronomy-menus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- astronomy-menus.spec 28 Mar 2009 09:28:57 -0000 1.1 +++ astronomy-menus.spec 24 Jul 2009 17:25:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: astronomy-menus Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Astronomy menu for the Desktop Group: User Interface/Desktops License: Public Domain @@ -98,6 +98,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 25 2009 Lubomir Rintel (Fedora Astronomy) - 1.0-2 - Fix BRs and call scriptlets for the subpackage as well (Marek Mahut) From jkeating at fedoraproject.org Fri Jul 24 17:26:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:26:04 +0000 (UTC) Subject: rpms/astyle/devel astyle.spec,1.10,1.11 Message-ID: <20090724172604.097B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/astyle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26571 Modified Files: astyle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: astyle.spec =================================================================== RCS file: /cvs/pkgs/rpms/astyle/devel/astyle.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- astyle.spec 24 Feb 2009 02:47:30 -0000 1.10 +++ astyle.spec 24 Jul 2009 17:26:03 -0000 1.11 @@ -1,6 +1,6 @@ Name: astyle Version: 1.21 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Source code formatter for C-like programming languages Group: Development/Tools @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/*.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.21-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.21-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:26:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:26:18 +0000 (UTC) Subject: rpms/asunder/devel asunder.spec,1.7,1.8 Message-ID: <20090724172618.0DE2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asunder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26732 Modified Files: asunder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asunder.spec =================================================================== RCS file: /cvs/pkgs/rpms/asunder/devel/asunder.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- asunder.spec 24 Feb 2009 02:48:24 -0000 1.7 +++ asunder.spec 24 Jul 2009 17:26:17 -0000 1.8 @@ -1,7 +1,7 @@ Name: asunder Summary: A graphical Audio CD ripper and encoder Version: 1.6.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/File URL: http://littlesvr.ca/asunder @@ -64,6 +64,9 @@ rm -fr %{buildroot} #%{_mandir}/man1/asunder.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:26:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:26:30 +0000 (UTC) Subject: rpms/asylum/devel asylum.spec,1.10,1.11 Message-ID: <20090724172630.EA25911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asylum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26871 Modified Files: asylum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asylum.spec =================================================================== RCS file: /cvs/pkgs/rpms/asylum/devel/asylum.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- asylum.spec 12 Jun 2009 11:40:55 -0000 1.10 +++ asylum.spec 24 Jul 2009 17:26:30 -0000 1.11 @@ -1,6 +1,6 @@ Name: asylum Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SDL port of the game Asylum, originally for the Archimedes Group: Amusements/Games # For detailed licensing, see the README @@ -105,6 +105,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Michael Fleming - 0.3.0-1 - Update to 0.3.0 From mtasaka at fedoraproject.org Fri Jul 24 17:26:46 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:26:46 +0000 (UTC) Subject: rpms/jd/devel noautobuild,1.1,1.2 Message-ID: <20090724172646.7163411C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27011 Modified Files: noautobuild Log Message: Index: noautobuild =================================================================== RCS file: /cvs/extras/rpms/jd/devel/noautobuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- noautobuild 21 Feb 2009 06:50:21 -0000 1.1 +++ noautobuild 24 Jul 2009 17:26:46 -0000 1.2 @@ -1 +1 @@ -rpmdev-bumpspec does not work +Check svn later From jkeating at fedoraproject.org Fri Jul 24 17:27:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:27:09 +0000 (UTC) Subject: rpms/asymptote/devel asymptote.spec,1.65,1.66 Message-ID: <20090724172709.38CC911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/asymptote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27159 Modified Files: asymptote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: asymptote.spec =================================================================== RCS file: /cvs/pkgs/rpms/asymptote/devel/asymptote.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- asymptote.spec 23 Jul 2009 20:20:04 -0000 1.65 +++ asymptote.spec 24 Jul 2009 17:27:08 -0000 1.66 @@ -5,7 +5,7 @@ Name: asymptote Version: 1.82 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Descriptive vector graphics language Group: Applications/Publishing @@ -145,6 +145,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.82-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Tom "spot" Callaway - 1.82-1 - update to 1.82 From jkeating at fedoraproject.org Fri Jul 24 17:27:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:27:25 +0000 (UTC) Subject: rpms/at/devel at.spec,1.75,1.76 Message-ID: <20090724172725.D361711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/at/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27326 Modified Files: at.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: at.spec =================================================================== RCS file: /cvs/pkgs/rpms/at/devel/at.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- at.spec 20 Jul 2009 05:55:19 -0000 1.75 +++ at.spec 24 Jul 2009 17:27:25 -0000 1.76 @@ -6,7 +6,7 @@ Summary: Job spooling tools Name: at Version: 3.1.10 -Release: 34%{?dist} +Release: 35%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://ftp.debian.org/debian/pool/main/a/at @@ -197,6 +197,9 @@ fi %attr(0755,root,root) %{_libdir}/pm-utils/sleep.d/56atd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.10-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Marcela Ma?l??ov? - 3.1.10-34 - require pm-utils-filesystem instead of pm-utils which should help minimal installation. From jkeating at fedoraproject.org Fri Jul 24 17:27:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:27:41 +0000 (UTC) Subject: rpms/at-spi/devel at-spi.spec,1.116,1.117 Message-ID: <20090724172741.369A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/at-spi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27502 Modified Files: at-spi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: at-spi.spec =================================================================== RCS file: /cvs/pkgs/rpms/at-spi/devel/at-spi.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- at-spi.spec 2 Jul 2009 16:42:16 -0000 1.116 +++ at-spi.spec 24 Jul 2009 17:27:41 -0000 1.117 @@ -10,7 +10,7 @@ Summary: Assistive Technology Service Provider Interface Name: at-spi Version: 1.26.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://developer.gnome.org/projects/gap/ Source0: http://download.gnome.org/sources/at-spi/1.26/%{name}-%{version}.tar.bz2 @@ -152,6 +152,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Matthias Clasen - 1.26.0-2 - Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:27:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:27:55 +0000 (UTC) Subject: rpms/atanks/devel atanks.spec,1.9,1.10 Message-ID: <20090724172755.2ED6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atanks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27659 Modified Files: atanks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atanks.spec =================================================================== RCS file: /cvs/pkgs/rpms/atanks/devel/atanks.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- atanks.spec 27 Jun 2009 14:36:19 -0000 1.9 +++ atanks.spec 24 Jul 2009 17:27:55 -0000 1.10 @@ -1,6 +1,6 @@ Name: atanks Version: 3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Remake of a classic DOS game "Scorched Earth" Group: Amusements/Games @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Konstantin Ryabitsev - 3.7-1 - Upstream 3.7 From jkeating at fedoraproject.org Fri Jul 24 17:28:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:28:51 +0000 (UTC) Subject: rpms/athcool/devel athcool.spec,1.10,1.11 Message-ID: <20090724172851.0199D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/athcool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28378 Modified Files: athcool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: athcool.spec =================================================================== RCS file: /cvs/pkgs/rpms/athcool/devel/athcool.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- athcool.spec 24 Feb 2009 02:55:28 -0000 1.10 +++ athcool.spec 24 Jul 2009 17:28:50 -0000 1.11 @@ -1,6 +1,6 @@ Name: athcool Version: 0.3.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Enables/disables Powersaving mode for AMD processors Group: System Environment/Daemons @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:29:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:29:05 +0000 (UTC) Subject: rpms/atk/devel atk.spec,1.63,1.64 Message-ID: <20090724172905.24FFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28527 Modified Files: atk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atk.spec =================================================================== RCS file: /cvs/pkgs/rpms/atk/devel/atk.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- atk.spec 24 Feb 2009 02:56:22 -0000 1.63 +++ atk.spec 24 Jul 2009 17:29:04 -0000 1.64 @@ -3,7 +3,7 @@ Summary: Interfaces for accessibility support Name: atk Version: 1.25.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/atk/1.25/atk-%{version}.tar.bz2 @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/atk %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.25.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.25.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:29:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:29:20 +0000 (UTC) Subject: rpms/atlas/devel atlas.spec,1.23,1.24 Message-ID: <20090724172920.6912711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atlas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28694 Modified Files: atlas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atlas.spec =================================================================== RCS file: /cvs/pkgs/rpms/atlas/devel/atlas.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- atlas.spec 3 May 2009 12:57:33 -0000 1.23 +++ atlas.spec 24 Jul 2009 17:29:20 -0000 1.24 @@ -2,7 +2,7 @@ Name: atlas Version: 3.8.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Automatically Tuned Linear Algebra Software Group: System Environment/Libraries @@ -281,6 +281,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 02 2009 Deji Akingunola - 3.8.3-4 - Use the right -msse* option for the -sse* subpackages (Fedora bug #498715) From jkeating at fedoraproject.org Fri Jul 24 17:29:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:29:35 +0000 (UTC) Subject: rpms/atlascpp/devel atlascpp.spec,1.10,1.11 Message-ID: <20090724172935.481B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atlascpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28880 Modified Files: atlascpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atlascpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/atlascpp/devel/atlascpp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- atlascpp.spec 1 Mar 2009 13:46:12 -0000 1.10 +++ atlascpp.spec 24 Jul 2009 17:29:35 -0000 1.11 @@ -1,6 +1,6 @@ Name: atlascpp Version: 0.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: WorldForge message protocol library Group: Development/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Atlas* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Alexey Torkhov - 0.6.1-6 - Moving skstream dependency to -devel subpackage - Actually perform the tests From jkeating at fedoraproject.org Fri Jul 24 17:31:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:31:27 +0000 (UTC) Subject: rpms/audacious/devel audacious.spec,1.49,1.50 Message-ID: <20090724173127.7C10211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audacious/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30049 Modified Files: audacious.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audacious.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious/devel/audacious.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- audacious.spec 14 Jul 2009 17:09:26 -0000 1.49 +++ audacious.spec 24 Jul 2009 17:31:27 -0000 1.50 @@ -5,7 +5,7 @@ Name: audacious Version: 2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 Summary: GTK2 based media player similar to XMMS @@ -149,6 +149,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Michael Schwendt - 2.1-1 - Upgrade to 2.1 final. From jkeating at fedoraproject.org Fri Jul 24 17:31:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:31:42 +0000 (UTC) Subject: rpms/audacious-plugin-fc/devel audacious-plugin-fc.spec,1.14,1.15 Message-ID: <20090724173142.842F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audacious-plugin-fc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30194 Modified Files: audacious-plugin-fc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audacious-plugin-fc.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugin-fc/devel/audacious-plugin-fc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- audacious-plugin-fc.spec 15 Jul 2009 12:17:29 -0000 1.14 +++ audacious-plugin-fc.spec 24 Jul 2009 17:31:42 -0000 1.15 @@ -7,7 +7,7 @@ Summary: Future Composer input plugin for Audacious Name: audacious-plugin-fc Version: 0.3 -Release: 4 +Release: 5 URL: http://xmms-fc.sourceforge.net/ License: GPLv2+ Source: http://download.sourceforge.net/xmms-fc/audacious-plugin-fc-%{version}.tar.bz2 @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 7 2009 Michael Schwendt - 0.3-4 - Patch for Audacious 2. From jkeating at fedoraproject.org Fri Jul 24 17:31:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:31:57 +0000 (UTC) Subject: rpms/audacious-plugins/devel audacious-plugins.spec,1.48,1.49 Message-ID: <20090724173157.31A2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audacious-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30353 Modified Files: audacious-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audacious-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacious-plugins/devel/audacious-plugins.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- audacious-plugins.spec 14 Jul 2009 17:24:08 -0000 1.48 +++ audacious-plugins.spec 24 Jul 2009 17:31:57 -0000 1.49 @@ -5,7 +5,7 @@ Name: audacious-plugins Version: 2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugins for the Audacious media player Group: Applications/Multimedia URL: http://audacious-media-player.org/ @@ -229,6 +229,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Michael Schwendt - 2.1-1 - Upgrade to 2.1 final. From jkeating at fedoraproject.org Fri Jul 24 17:32:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:32:28 +0000 (UTC) Subject: rpms/audex/devel audex.spec,1.4,1.5 Message-ID: <20090724173228.3CF6B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30658 Modified Files: audex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audex.spec =================================================================== RCS file: /cvs/pkgs/rpms/audex/devel/audex.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- audex.spec 1 Jul 2009 21:17:28 -0000 1.4 +++ audex.spec 24 Jul 2009 17:32:28 -0000 1.5 @@ -1,6 +1,6 @@ Name: audex Version: 0.71 -Release: 0.3.beta5%{?dist} +Release: 0.4.beta5%{?dist} Summary: Audio ripper Group: Applications/Multimedia License: GPLv3+ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_datadir}/kde4/apps/audex %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.71-0.4.beta5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Roland Wolters 0.71-0.3.beta5 - update to upstream version beta5 From jkeating at fedoraproject.org Fri Jul 24 17:32:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:32:44 +0000 (UTC) Subject: rpms/audio-convert-mod/devel audio-convert-mod.spec,1.11,1.12 Message-ID: <20090724173244.151E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audio-convert-mod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30837 Modified Files: audio-convert-mod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audio-convert-mod.spec =================================================================== RCS file: /cvs/pkgs/rpms/audio-convert-mod/devel/audio-convert-mod.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- audio-convert-mod.spec 24 Feb 2009 03:08:40 -0000 1.11 +++ audio-convert-mod.spec 24 Jul 2009 17:32:43 -0000 1.12 @@ -1,6 +1,6 @@ Name: audio-convert-mod Version: 3.45.5b -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch Summary: A simple audio file converter which supports many formats Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.45.5b-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 3.45.5b-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:33:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:33:00 +0000 (UTC) Subject: rpms/audio-entropyd/devel audio-entropyd.spec,1.16,1.17 Message-ID: <20090724173300.5126C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audio-entropyd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31003 Modified Files: audio-entropyd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audio-entropyd.spec =================================================================== RCS file: /cvs/pkgs/rpms/audio-entropyd/devel/audio-entropyd.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- audio-entropyd.spec 5 May 2009 13:23:50 -0000 1.16 +++ audio-entropyd.spec 24 Jul 2009 17:33:00 -0000 1.17 @@ -1,6 +1,6 @@ Name: audio-entropyd Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Daemons Summary: Generate entropy from audio output @@ -57,6 +57,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/audio-entropyd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Tom "spot" Callaway - 2.0.1-1 - upstream took my alsa patch (improved on it too) From dledford at fedoraproject.org Fri Jul 24 17:33:11 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Fri, 24 Jul 2009 17:33:11 +0000 (UTC) Subject: rpms/mdadm/devel mdadm-3.0-endian-FAIL.patch, NONE, 1.1 mdadm.spec, 1.71, 1.72 Message-ID: <20090724173311.DEF4B11C00CE@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/mdadm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31163 Modified Files: mdadm.spec Added Files: mdadm-3.0-endian-FAIL.patch Log Message: * Fri Jul 24 2009 Doug Ledford - 3.0-2 - Improved raid-check script as well as the ability to configure what devices get checked - Endian patch for uuid generation mdadm-3.0-endian-FAIL.patch: util.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE mdadm-3.0-endian-FAIL.patch --- diff -up mdadm-3.0-devel3/util.c.foo mdadm-3.0-devel3/util.c --- mdadm-3.0-devel3/util.c.foo 2009-07-09 18:57:47.000000000 -0400 +++ mdadm-3.0-devel3/util.c 2009-07-09 18:58:09.000000000 -0400 @@ -282,7 +282,11 @@ char *fname_from_uuid(struct supertype * char *c = buf; strcpy(c, "UUID-"); c += strlen(c); +#if __BYTE_ORDER == BIG_ENDIAN + copy_uuid(uuid, info->uuid, st->ss->swapuuid || !strcmp(st->ss->name,"0.90")); +#else copy_uuid(uuid, info->uuid, st->ss->swapuuid); +#endif for (i = 0; i < 4; i++) { id = uuid[i]; if (i) Index: mdadm.spec =================================================================== RCS file: /cvs/extras/rpms/mdadm/devel/mdadm.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- mdadm.spec 29 Jun 2009 19:18:19 -0000 1.71 +++ mdadm.spec 24 Jul 2009 17:33:11 -0000 1.72 @@ -1,12 +1,14 @@ Summary: The mdadm program controls Linux md devices (software RAID arrays) Name: mdadm Version: 3.0 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.bz2 Source1: mdmonitor.init Source2: raid-check Source3: mdadm.rules +Source4: mdadm-raid-check-sysconfig Patch1: mdadm-2.5.2-static.patch +Patch2: mdadm-3.0-endian-FAIL.patch URL: http://www.kernel.org/pub/linux/utils/raid/mdadm/ License: GPLv2+ Group: System Environment/Base @@ -28,21 +30,23 @@ file can be used to help with some commo %prep %setup -q %patch1 -p1 -b .static +%patch2 -p1 -b .endian %build make %{?_smp_mflags} CXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" SYSCONFDIR="%{_sysconfdir}" mdadm.static mdadm mdmon %install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} BINDIR=/sbin install install-static -rm -f $RPM_BUILD_ROOT/lib/udev/rules.d/* -install -Dp -m 755 %{SOURCE1} $RPM_BUILD_ROOT/%{_initrddir}/mdmonitor -install -Dp -m 755 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/cron.weekly/raid-check -install -Dp -m 644 %{SOURCE3} $RPM_BUILD_ROOT/lib/udev/rules.d/65-md-incremental.rules -mkdir -p -m 700 $RPM_BUILD_ROOT/var/run/mdadm +rm -rf %{buildroot} +make DESTDIR=%{buildroot} MANDIR=%{_mandir} BINDIR=/sbin install install-static +rm -f %{buildroot}/lib/udev/rules.d/* +install -Dp -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/mdmonitor +install -Dp -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/cron.weekly/99-raid-check +install -Dp -m 644 %{SOURCE3} %{buildroot}/lib/udev/rules.d/65-md-incremental.rules +install -Dp -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/raid-check +mkdir -p -m 700 %{buildroot}/var/run/mdadm %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %post if [ "$1" = 1 ]; then @@ -68,9 +72,15 @@ fi %{_initrddir}/* %{_mandir}/man*/md* %{_sysconfdir}/cron.weekly/* +%config(noreplace) %{_sysconfdir}/sysconfig/* %attr(0700,root,root) %dir /var/run/mdadm %changelog +* Fri Jul 24 2009 Doug Ledford - 3.0-2 +- Improved raid-check script as well as the ability to configure what devices + get checked +- Endian patch for uuid generation + * Mon Jun 29 2009 Doug Ledford - 3.0-1 - Remove stale patches already accepted by upstream - Fix the raid-check script to only try and check a device if it is From jkeating at fedoraproject.org Fri Jul 24 17:33:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:33:16 +0000 (UTC) Subject: rpms/audiofile/devel audiofile.spec,1.27,1.28 Message-ID: <20090724173316.A9A0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audiofile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31253 Modified Files: audiofile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audiofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/audiofile/devel/audiofile.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- audiofile.spec 24 Feb 2009 03:10:27 -0000 1.27 +++ audiofile.spec 24 Jul 2009 17:33:16 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A library for accessing various audio file formats Name: audiofile Version: 0.2.6 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 1 License: LGPLv2+ Group: System Environment/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.2.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1:0.2.6-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:33:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:33:31 +0000 (UTC) Subject: rpms/audit/devel audit.spec,1.211,1.212 Message-ID: <20090724173331.D985E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31484 Modified Files: audit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audit.spec =================================================================== RCS file: /cvs/pkgs/rpms/audit/devel/audit.spec,v retrieving revision 1.211 retrieving revision 1.212 diff -u -p -r1.211 -r1.212 --- audit.spec 21 Apr 2009 19:02:43 -0000 1.211 +++ audit.spec 24 Jul 2009 17:33:31 -0000 1.212 @@ -7,7 +7,7 @@ Summary: User space tools for 2.6 kernel auditing Name: audit Version: %{audit_version} -Release: %{audit_release} +Release: %{audit_release}.1 License: GPLv2+ Group: System Environment/Daemons URL: http://people.redhat.com/sgrubb/audit/ @@ -258,6 +258,9 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-audit-server %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.13-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Steve Grubb 1.7.13-1 - New upstream release - Fix problem with negative uids in audit rules on 32 bit systems From jkeating at fedoraproject.org Fri Jul 24 17:33:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:33:46 +0000 (UTC) Subject: rpms/audit-viewer/devel audit-viewer.spec,1.7,1.8 Message-ID: <20090724173346.41BE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audit-viewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31636 Modified Files: audit-viewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audit-viewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/audit-viewer/devel/audit-viewer.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- audit-viewer.spec 24 Feb 2009 03:12:10 -0000 1.7 +++ audit-viewer.spec 24 Jul 2009 17:33:46 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Audit event viewer Name: audit-viewer Version: 0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/System URL: https://fedorahosted.org/audit-viewer/ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/security/console.apps/audit-viewer-server %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:34:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:34:01 +0000 (UTC) Subject: rpms/augeas/devel augeas.spec,1.20,1.21 Message-ID: <20090724173401.2501411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31797 Modified Files: augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/augeas/devel/augeas.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- augeas.spec 14 Jul 2009 02:53:43 -0000 1.20 +++ augeas.spec 24 Jul 2009 17:34:01 -0000 1.21 @@ -1,6 +1,6 @@ Name: augeas Version: 0.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library for changing configuration files Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/augeas.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 David Lutterkort - 0.5.2-1 - New version From jkeating at fedoraproject.org Fri Jul 24 17:34:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:34:25 +0000 (UTC) Subject: rpms/aumix/devel aumix.spec,1.10,1.11 Message-ID: <20090724173425.4DA6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aumix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32016 Modified Files: aumix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aumix.spec =================================================================== RCS file: /cvs/pkgs/rpms/aumix/devel/aumix.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- aumix.spec 24 Feb 2009 03:14:05 -0000 1.10 +++ aumix.spec 24 Jul 2009 17:34:25 -0000 1.11 @@ -1,6 +1,6 @@ Name: aumix Version: 2.8 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Audio mixer based on ncurses License: GPLv2+ Group: Applications/Multimedia @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_datadir}/aumix %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.8-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:34:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:34:43 +0000 (UTC) Subject: rpms/auriferous/devel auriferous.spec,1.7,1.8 Message-ID: <20090724173443.68C5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/auriferous/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32179 Modified Files: auriferous.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: auriferous.spec =================================================================== RCS file: /cvs/pkgs/rpms/auriferous/devel/auriferous.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- auriferous.spec 15 Jul 2009 21:02:10 -0000 1.7 +++ auriferous.spec 24 Jul 2009 17:34:43 -0000 1.8 @@ -1,6 +1,6 @@ Name: auriferous Version: 1.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Game inspired by the classic Loderunner Group: Amusements/Games License: GPLv2+ @@ -87,6 +87,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Hans de Goede 1.0.1-8 - Fix FTBFS caused by automake input file timestamp issues (#511454) From jkeating at fedoraproject.org Fri Jul 24 17:35:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:35:00 +0000 (UTC) Subject: rpms/authconfig/devel authconfig.spec,1.106,1.107 Message-ID: <20090724173500.A76DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/authconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32350 Modified Files: authconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: authconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/authconfig/devel/authconfig.spec,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- authconfig.spec 23 Apr 2009 10:10:07 -0000 1.106 +++ authconfig.spec 24 Jul 2009 17:35:00 -0000 1.107 @@ -1,7 +1,7 @@ Summary: Command line tool for setting up authentication from network services Name: authconfig Version: 5.4.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ ExclusiveOS: Linux Group: System Environment/Base @@ -101,6 +101,9 @@ authconfig --update --nostart >/dev/null %{_datadir}/pixmaps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.4.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Tomas Mraz - 5.4.10-1 - update PAM configuration when updating from old authconfig versions (#495924) From jkeating at fedoraproject.org Fri Jul 24 17:35:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:35:16 +0000 (UTC) Subject: rpms/authd/devel authd.spec,1.57,1.58 Message-ID: <20090724173516.97B6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/authd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32516 Modified Files: authd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: authd.spec =================================================================== RCS file: /cvs/pkgs/rpms/authd/devel/authd.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- authd.spec 9 Apr 2009 11:56:31 -0000 1.57 +++ authd.spec 24 Jul 2009 17:35:16 -0000 1.58 @@ -1,7 +1,7 @@ Summary: A RFC 1413 ident protocol daemon Name: authd Version: 1.4.3 -Release: 26%{?dist} +Release: 27%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: https://fedorahosted.org/authd/ @@ -75,6 +75,9 @@ service xinetd reload %{_sbindir}/in.authd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.3-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Roman Rakus - 1.4.3-26 - get back to older version of jiffies64 patch From jkeating at fedoraproject.org Fri Jul 24 17:35:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:35:31 +0000 (UTC) Subject: rpms/auto-buildrequires/devel auto-buildrequires.spec,1.2,1.3 Message-ID: <20090724173531.82B1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/auto-buildrequires/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32679 Modified Files: auto-buildrequires.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: auto-buildrequires.spec =================================================================== RCS file: /cvs/pkgs/rpms/auto-buildrequires/devel/auto-buildrequires.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- auto-buildrequires.spec 9 Mar 2009 16:28:12 -0000 1.2 +++ auto-buildrequires.spec 24 Jul 2009 17:35:31 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Work out BuildRequires for rpmbuild automatically Name: auto-buildrequires Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Tools URL: http://et.redhat.com/~rjones/auto-buildrequires/ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Richard W.M. Jones - 1.0-3 - New upstream version 1.0: . Fixes 32-bit platforms. From jkeating at fedoraproject.org Fri Jul 24 17:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:35:46 +0000 (UTC) Subject: rpms/autobuild-applet/devel autobuild-applet.spec,1.10,1.11 Message-ID: <20090724173546.E524711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autobuild-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv378 Modified Files: autobuild-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autobuild-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/autobuild-applet/devel/autobuild-applet.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- autobuild-applet.spec 24 Feb 2009 03:17:48 -0000 1.10 +++ autobuild-applet.spec 24 Jul 2009 17:35:46 -0000 1.11 @@ -8,7 +8,7 @@ Name: autobuild-applet Version: 1.0.3 -Release: 9%{_extra_release} +Release: 10%{_extra_release} Summary: Panel applet for indication of Test-AutoBuild status License: GPLv2+ and LGPLv2+ Group: Development/Tools @@ -87,6 +87,9 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:36:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:36:00 +0000 (UTC) Subject: rpms/autoconf/devel autoconf.spec,1.55,1.56 Message-ID: <20090724173600.1AAAE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autoconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv539 Modified Files: autoconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autoconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/autoconf/devel/autoconf.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- autoconf.spec 24 Feb 2009 03:18:43 -0000 1.55 +++ autoconf.spec 24 Jul 2009 17:35:59 -0000 1.56 @@ -1,7 +1,7 @@ Summary: A GNU tool for automatically configuring source code Name: autoconf Version: 2.63 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL Group: Development/Tools Source: http://ftp.gnu.org/gnu/autoconf/autoconf-%{version}.tar.bz2 @@ -79,6 +79,9 @@ fi %doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.63-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.63-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:36:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:36:14 +0000 (UTC) Subject: rpms/autoconf213/devel autoconf213.spec,1.18,1.19 Message-ID: <20090724173614.2402111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autoconf213/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv715 Modified Files: autoconf213.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autoconf213.spec =================================================================== RCS file: /cvs/pkgs/rpms/autoconf213/devel/autoconf213.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- autoconf213.spec 24 Feb 2009 03:19:38 -0000 1.18 +++ autoconf213.spec 24 Jul 2009 17:36:13 -0000 1.19 @@ -1,7 +1,7 @@ Summary: A GNU tool for automatically configuring source code Name: autoconf213 Version: 2.13 -Release: 19%{?dist} +Release: 20%{?dist} License: GPLv2+ and MIT Group: Development/Tools URL: http://www.gnu.org/software/autoconf/ @@ -90,6 +90,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc AUTHORS COPYING NEWS README TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.13-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.13-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:36:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:36:27 +0000 (UTC) Subject: rpms/autodafe/devel autodafe.spec,1.2,1.3 Message-ID: <20090724173627.D6BA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autodafe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv872 Modified Files: autodafe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autodafe.spec =================================================================== RCS file: /cvs/pkgs/rpms/autodafe/devel/autodafe.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- autodafe.spec 29 Jun 2009 12:09:44 -0000 1.2 +++ autodafe.spec 24 Jul 2009 17:36:27 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Fuzzing framework Name: autodafe Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Tools URL: http://autodafe.sourceforge.net/ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/tutorials.tgz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Jan F. Chadima - 0.1-3 - support cflags from build environment From jkeating at fedoraproject.org Fri Jul 24 17:36:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:36:41 +0000 (UTC) Subject: rpms/autodir/devel autodir.spec,1.7,1.8 Message-ID: <20090724173641.082FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autodir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1009 Modified Files: autodir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autodir.spec =================================================================== RCS file: /cvs/pkgs/rpms/autodir/devel/autodir.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- autodir.spec 11 Apr 2009 11:31:57 -0000 1.7 +++ autodir.spec 24 Jul 2009 17:36:40 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Creates user directories on demand Name: autodir Version: 0.99.9 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.intraperson.com/autodir/ @@ -94,6 +94,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Matthias Saou 0.99.9-8 - Finish updating init scripts (#246873). From mtasaka at fedoraproject.org Fri Jul 24 17:36:57 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:36:57 +0000 (UTC) Subject: rpms/kazehakase/devel kazehakase.spec,1.86,1.87 Message-ID: <20090724173657.A021111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kazehakase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1189 Modified Files: kazehakase.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.5.6-15.svn3773_trunk - F-12: Mass rebuild Index: kazehakase.spec =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/kazehakase.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- kazehakase.spec 20 Jul 2009 18:01:30 -0000 1.86 +++ kazehakase.spec 24 Jul 2009 17:36:57 -0000 1.87 @@ -34,7 +34,7 @@ %define svnver 3773_trunk -%define fedorarel 14 +%define fedorarel 15 %define _release %{fedorarel}%{?usesvn:.svn%svnver} %if 0%{?fedora} < 1 @@ -321,6 +321,9 @@ desktop-file-install \ %endif %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.5.6-15.svn3773_trunk +- F-12: Mass rebuild + * Tue Jul 21 2009 Mamoru Tasaka - 0.5.6-14.svn3773_trunk - Attempt to compile with GTK 2.17.5 From jkeating at fedoraproject.org Fri Jul 24 17:36:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:36:56 +0000 (UTC) Subject: rpms/autodownloader/devel autodownloader.spec,1.7,1.8 Message-ID: <20090724173656.64BF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autodownloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1175 Modified Files: autodownloader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autodownloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/autodownloader/devel/autodownloader.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- autodownloader.spec 24 Feb 2009 03:21:22 -0000 1.7 +++ autodownloader.spec 24 Jul 2009 17:36:55 -0000 1.8 @@ -1,6 +1,6 @@ Name: autodownloader Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GUI-tool to automate the download of certain files License: GPLv2+ Group: Applications/Internet @@ -64,6 +64,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:37:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:37:20 +0000 (UTC) Subject: rpms/autofs/devel autofs.spec,1.283,1.284 Message-ID: <20090724173720.722E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1772 Modified Files: autofs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/autofs/devel/autofs.spec,v retrieving revision 1.283 retrieving revision 1.284 diff -u -p -r1.283 -r1.284 --- autofs.spec 17 Jul 2009 02:11:09 -0000 1.283 +++ autofs.spec 24 Jul 2009 17:37:20 -0000 1.284 @@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4 -Release: 34 +Release: 35 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons @@ -227,6 +227,9 @@ fi %{_libdir}/autofs/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:5.0.4-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Ian Kent - 1:5.0.4-34 - fix typo in patch to allow dumping core. From jkeating at fedoraproject.org Fri Jul 24 17:37:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:37:30 +0000 (UTC) Subject: rpms/autogen/devel autogen.spec,1.12,1.13 Message-ID: <20090724173730.47BC611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autogen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2225 Modified Files: autogen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autogen.spec =================================================================== RCS file: /cvs/pkgs/rpms/autogen/devel/autogen.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- autogen.spec 27 Feb 2009 20:24:16 -0000 1.12 +++ autogen.spec 24 Jul 2009 17:37:30 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Automated text file generator Name: autogen Version: 5.9.4 -Release: 5%{?dist} +Release: 6%{?dist} # Some files are licensed under GPLv2+. # We redistribute them under GPLv3+. License: GPLv3+ @@ -163,6 +163,9 @@ fi %{_includedir}/autoopts/usage-txt.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.9.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.9.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:37:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:37:45 +0000 (UTC) Subject: rpms/automake/devel automake.spec,1.43,1.44 Message-ID: <20090724173745.81FD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2492 Modified Files: automake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automake.spec =================================================================== RCS file: /cvs/pkgs/rpms/automake/devel/automake.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- automake.spec 25 May 2009 15:58:45 -0000 1.43 +++ automake.spec 24 Jul 2009 17:37:45 -0000 1.44 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake Version: %{api_version} -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL and MIT Group: Development/Tools Source: http://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2 @@ -80,6 +80,9 @@ fi %dir %{_datadir}/aclocal %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Stepan Kasal 1.11-2 - re-enable make check - Automake 1.11 requires autoconf 2.62 or later From jkeating at fedoraproject.org Fri Jul 24 17:38:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:38:01 +0000 (UTC) Subject: rpms/automake14/devel automake14.spec,1.17,1.18 Message-ID: <20090724173801.4F19711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automake14/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2646 Modified Files: automake14.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automake14.spec =================================================================== RCS file: /cvs/pkgs/rpms/automake14/devel/automake14.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- automake14.spec 24 Feb 2009 03:27:04 -0000 1.17 +++ automake14.spec 24 Jul 2009 17:38:01 -0000 1.18 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake14 Version: 1.4p6 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2+ Group: Development/Tools URL: http://sources.redhat.com/automake @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4p6-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4p6-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:38:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:38:17 +0000 (UTC) Subject: rpms/automake15/devel automake15.spec,1.24,1.25 Message-ID: <20090724173818.04D3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automake15/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2830 Modified Files: automake15.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automake15.spec =================================================================== RCS file: /cvs/pkgs/rpms/automake15/devel/automake15.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- automake15.spec 24 Feb 2009 03:27:54 -0000 1.24 +++ automake15.spec 24 Jul 2009 17:38:17 -0000 1.25 @@ -1,7 +1,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake15 Version: 1.5 -Release: 26 +Release: 27 License: GPLv2+ Group: Development/Tools URL: http://sources.redhat.com/automake @@ -102,6 +102,9 @@ fi %dir %{_datadir}/aclocal %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.5-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:38:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:38:34 +0000 (UTC) Subject: rpms/automake16/devel automake16.spec,1.18,1.19 Message-ID: <20090724173834.439C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automake16/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3012 Modified Files: automake16.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automake16.spec =================================================================== RCS file: /cvs/pkgs/rpms/automake16/devel/automake16.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- automake16.spec 24 Feb 2009 03:28:45 -0000 1.18 +++ automake16.spec 24 Jul 2009 17:38:34 -0000 1.19 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake16 Version: %{api_version}.3 -Release: 15 +Release: 16 License: GPLv2+ and MIT and OFSFDL Group: Development/Tools Source: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2 @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.3-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:38:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:38:50 +0000 (UTC) Subject: rpms/automake17/devel automake17.spec,1.16,1.17 Message-ID: <20090724173850.4CD6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automake17/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3220 Modified Files: automake17.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automake17.spec =================================================================== RCS file: /cvs/pkgs/rpms/automake17/devel/automake17.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- automake17.spec 24 Feb 2009 03:29:36 -0000 1.16 +++ automake17.spec 24 Jul 2009 17:38:50 -0000 1.17 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake17 Version: %{api_version}.9 -Release: 12 +Release: 13 License: GPLv2+ and MIT and OFSFDL Group: Development/Tools Source: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2 @@ -95,6 +95,9 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_datadir}/aclocal %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.7.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:39:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:39:04 +0000 (UTC) Subject: rpms/automaton/devel automaton.spec,1.4,1.5 Message-ID: <20090724173904.642F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automaton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3412 Modified Files: automaton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automaton.spec =================================================================== RCS file: /cvs/pkgs/rpms/automaton/devel/automaton.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- automaton.spec 24 Feb 2009 03:30:27 -0000 1.4 +++ automaton.spec 24 Jul 2009 17:39:04 -0000 1.5 @@ -7,7 +7,7 @@ Name: automaton Version: %{upver}r%{uprel} -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Java finite state automata/regular expression library Group: Development/Libraries/Java @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/automaton* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11r1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.11r1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:39:19 +0000 (UTC) Subject: rpms/automoc/devel automoc.spec,1.15,1.16 Message-ID: <20090724173919.4CA4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/automoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3582 Modified Files: automoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: automoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/automoc/devel/automoc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- automoc.spec 24 Feb 2009 03:31:17 -0000 1.15 +++ automoc.spec 24 Jul 2009 17:39:19 -0000 1.16 @@ -4,7 +4,7 @@ Name: automoc Version: 1.0 -Release: 0.12.%{?beta_tag}%{?dist} +Release: 0.13.%{?beta_tag}%{?dist} Summary: Automatic moc for Qt 4 Group: Development/Tools License: BSD @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.13.rc3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-0.12.rc3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:39:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:39:34 +0000 (UTC) Subject: rpms/autossh/devel autossh.spec,1.6,1.7 Message-ID: <20090724173934.64B0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autossh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3743 Modified Files: autossh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autossh.spec =================================================================== RCS file: /cvs/pkgs/rpms/autossh/devel/autossh.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- autossh.spec 24 Feb 2009 03:32:09 -0000 1.6 +++ autossh.spec 24 Jul 2009 17:39:34 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Utility to autorestart SSH tunnels Name: autossh Version: 1.4a -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Applications/Internet URL: http://www.harding.motd.ca/autossh/index.html @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4a-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4a-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:39:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:39:50 +0000 (UTC) Subject: rpms/autotrace/devel autotrace.spec,1.23,1.24 Message-ID: <20090724173950.80CFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autotrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3900 Modified Files: autotrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autotrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/autotrace/devel/autotrace.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- autotrace.spec 13 Mar 2009 10:56:14 -0000 1.23 +++ autotrace.spec 24 Jul 2009 17:39:50 -0000 1.24 @@ -1,6 +1,6 @@ Name: autotrace Version: 0.31.1 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Utility for converting bitmaps to vector graphics @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.31.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Hans de Goede - 0.31.1-21 - Rebuild for new ImageMagick From jkeating at fedoraproject.org Fri Jul 24 17:40:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:40:05 +0000 (UTC) Subject: rpms/autotrust/devel autotrust.spec,1.3,1.4 Message-ID: <20090724174005.4F32411C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autotrust/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4067 Modified Files: autotrust.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: autotrust.spec =================================================================== RCS file: /cvs/pkgs/rpms/autotrust/devel/autotrust.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- autotrust.spec 25 Jun 2009 13:26:54 -0000 1.3 +++ autotrust.spec 24 Jul 2009 17:40:05 -0000 1.4 @@ -4,7 +4,7 @@ Summary: DNSKEY trust anchor update utility that uses RFC-5011 Name: autotrust Version: 0.2.1 -Release: 0.4.%{prever}%{?dist} +Release: 0.5.%{prever}%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{VERSION}.tar.gz @@ -52,6 +52,9 @@ rm -rf %{buildroot} %attr(0755,root,root) %{_sysconfdir}/cron.daily/autotrust %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-0.5.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Adam Tkac - 0.2.1-0.4.rc1 - rebuild against new libunbound From jkeating at fedoraproject.org Fri Jul 24 17:40:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:40:20 +0000 (UTC) Subject: rpms/avahi/devel avahi.spec,1.119,1.120 Message-ID: <20090724174020.CD53F11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avahi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4248 Modified Files: avahi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avahi.spec =================================================================== RCS file: /cvs/pkgs/rpms/avahi/devel/avahi.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- avahi.spec 17 Jun 2009 13:30:09 -0000 1.119 +++ avahi.spec 24 Jul 2009 17:40:20 -0000 1.120 @@ -6,7 +6,7 @@ %endif Name: avahi Version: 0.6.25 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Local network service discovery Group: System Environment/Base License: LGPLv2 @@ -572,6 +572,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.25-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Karsten Hopp 0.6.25-4 - Build *-sharp & *-ui-sharp for s390x From jkeating at fedoraproject.org Fri Jul 24 17:40:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:40:35 +0000 (UTC) Subject: rpms/avalon-framework/devel avalon-framework.spec,1.26,1.27 Message-ID: <20090724174035.6AAD911C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avalon-framework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4404 Modified Files: avalon-framework.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avalon-framework.spec =================================================================== RCS file: /cvs/pkgs/rpms/avalon-framework/devel/avalon-framework.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- avalon-framework.spec 24 Feb 2009 03:35:50 -0000 1.26 +++ avalon-framework.spec 24 Jul 2009 17:40:35 -0000 1.27 @@ -36,7 +36,7 @@ Name: avalon-%{short_name} Version: 4.1.4 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 0 Summary: Java components interfaces License: ASL 1.1 @@ -160,6 +160,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:4.1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:4.1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:40:49 +0000 (UTC) Subject: rpms/avalon-logkit/devel avalon-logkit.spec,1.29,1.30 Message-ID: <20090724174049.6210F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avalon-logkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4585 Modified Files: avalon-logkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avalon-logkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/avalon-logkit/devel/avalon-logkit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- avalon-logkit.spec 24 Feb 2009 03:36:48 -0000 1.29 +++ avalon-logkit.spec 24 Jul 2009 17:40:49 -0000 1.30 @@ -37,7 +37,7 @@ Name: avalon-%{short_name} Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Epoch: 0 Summary: Java logging toolkit License: ASL 1.1 @@ -155,6 +155,9 @@ fi %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From romal at fedoraproject.org Fri Jul 24 17:41:04 2009 From: romal at fedoraproject.org (Robert M. Albrecht) Date: Fri, 24 Jul 2009 17:41:04 +0000 (UTC) Subject: rpms/nagios/F-11 nagios.spec,1.66,1.67 Message-ID: <20090724174104.94D6111C00CE@cvs1.fedora.phx.redhat.com> Author: romal Update of /cvs/pkgs/rpms/nagios/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4561/F-11 Modified Files: nagios.spec Log Message: several fixes for specfile Index: nagios.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios/F-11/nagios.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- nagios.spec 26 Feb 2009 04:07:56 -0000 1.66 +++ nagios.spec 24 Jul 2009 17:41:04 -0000 1.67 @@ -1,6 +1,6 @@ Name: nagios -Version: 3.0.6 +Version: 3.1.2 Release: 3%{?dist} Summary: Host/service/network monitoring program @@ -94,7 +94,7 @@ may compile against. --libexecdir=%{_libdir}/%{name}/plugins \ --sysconfdir=%{_sysconfdir}/%{name} \ --localstatedir=%{_localstatedir}/log/%{name} \ - --datadir=%{_datadir}/%{name}/html \ + --datarootdir=%{_datadir}/%{name}/html \ --with-gd-lib=%{_libdir} \ --with-gd-inc=%{_includedir} \ --enable-embedded-perl \ @@ -191,6 +191,7 @@ fi %attr(0640,root,nagios) %config(noreplace) %{_sysconfdir}/%{name}/private/resource.cfg %attr(0640,root,nagios) %config(noreplace) %{_sysconfdir}/%{name}/conf.d/internet.cfg %attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/.htpasswd +%attr(0640,root,apache) %config(noreplace) %{_datadir}/%{name}/html/config.inc.php %attr(0755,nagios,nagios) %dir %{_localstatedir}/spool/%{name} %attr(2775,nagios,nagios) %dir %{_localstatedir}/spool/%{name}/cmd %attr(0755,nagios,nagios) %dir %{_localstatedir}/log/%{name} @@ -203,6 +204,23 @@ fi %{_includedir}/%{name} %changelog +* Fri Jul 24 2009 Jose Pedro Oliveira - 3.1.2-3 +- Corrected the package version in the last two changelog entries (#499853) +- Using configure --datarootdir option instead of --datadir (#499853) + (fixes the physical_html_path value in cgi.cfg) +- Fixes permissions to the new php configuration file config.inc.php (#499853) +- Re-enables the httpd requirement as its removal caused several problems + (see #487411 for more information) + +* Wed Jul 15 2009 Mike McGrath 3.1.2-2 +- Release bump for rebuild + +* Mon Jun 29 2009 Robert M. Albrecht 3.1.1-1 +- Upstream released a new version + +* Mon Jun 22 2009 Mike McGrath - 3.0.6-4 +- Removing httpd requires for #487411 + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From romal at fedoraproject.org Fri Jul 24 17:41:04 2009 From: romal at fedoraproject.org (Robert M. Albrecht) Date: Fri, 24 Jul 2009 17:41:04 +0000 (UTC) Subject: rpms/nagios/devel nagios.spec,1.71,1.72 Message-ID: <20090724174104.D01C611C00CE@cvs1.fedora.phx.redhat.com> Author: romal Update of /cvs/pkgs/rpms/nagios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4561/devel Modified Files: nagios.spec Log Message: several fixes for specfile Index: nagios.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios/devel/nagios.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- nagios.spec 15 Jul 2009 18:55:01 -0000 1.71 +++ nagios.spec 24 Jul 2009 17:41:04 -0000 1.72 @@ -1,7 +1,7 @@ Name: nagios Version: 3.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Host/service/network monitoring program Group: Applications/System @@ -22,7 +22,7 @@ BuildRequires: gd-devel > 1.8, mailx, li BuildRequires: perl-devel BuildRequires: perl(ExtUtils::Embed) -#Requires: httpd +Requires: httpd Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires(pre): shadow-utils Requires(preun): initscripts, chkconfig @@ -94,7 +94,7 @@ may compile against. --libexecdir=%{_libdir}/%{name}/plugins \ --sysconfdir=%{_sysconfdir}/%{name} \ --localstatedir=%{_localstatedir}/log/%{name} \ - --datadir=%{_datadir}/%{name}/html \ + --datarootdir=%{_datadir}/%{name}/html \ --with-gd-lib=%{_libdir} \ --with-gd-inc=%{_includedir} \ --enable-embedded-perl \ @@ -191,6 +191,7 @@ fi %attr(0640,root,nagios) %config(noreplace) %{_sysconfdir}/%{name}/private/resource.cfg %attr(0640,root,nagios) %config(noreplace) %{_sysconfdir}/%{name}/conf.d/internet.cfg %attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/.htpasswd +%attr(0640,root,apache) %config(noreplace) %{_datadir}/%{name}/html/config.inc.php %attr(0755,nagios,nagios) %dir %{_localstatedir}/spool/%{name} %attr(2775,nagios,nagios) %dir %{_localstatedir}/spool/%{name}/cmd %attr(0755,nagios,nagios) %dir %{_localstatedir}/log/%{name} @@ -203,10 +204,18 @@ fi %{_includedir}/%{name} %changelog -* Wed Jul 15 2009 Mike McGrath 3.2.1-2 +* Fri Jul 24 2009 Jose Pedro Oliveira - 3.1.2-3 +- Corrected the package version in the last two changelog entries (#499853) +- Using configure --datarootdir option instead of --datadir (#499853) + (fixes the physical_html_path value in cgi.cfg) +- Fixes permissions to the new php configuration file config.inc.php (#499853) +- Re-enables the httpd requirement as its removal caused several problems + (see #487411 for more information) + +* Wed Jul 15 2009 Mike McGrath 3.1.2-2 - Release bump for rebuild -* Mon Jun 29 2009 Robert M. Albrecht 3.2.1-1 +* Mon Jun 29 2009 Robert M. Albrecht 3.1.1-1 - Upstream released a new version * Mon Jun 22 2009 Mike McGrath - 3.0.6-4 From jkeating at fedoraproject.org Fri Jul 24 17:41:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:41:05 +0000 (UTC) Subject: rpms/avant-window-navigator/devel avant-window-navigator.spec, 1.29, 1.30 Message-ID: <20090724174105.95F7E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avant-window-navigator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4752 Modified Files: avant-window-navigator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avant-window-navigator.spec =================================================================== RCS file: /cvs/pkgs/rpms/avant-window-navigator/devel/avant-window-navigator.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- avant-window-navigator.spec 11 Apr 2009 12:12:45 -0000 1.29 +++ avant-window-navigator.spec 24 Jul 2009 17:41:05 -0000 1.30 @@ -2,7 +2,7 @@ Name: avant-window-navigator Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Provides: avant-window-navigator-python = %{version}-%{release} Obsoletes: avant-window-navigator-python < 0.2.6-3 @@ -165,6 +165,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Sindre Pedersen Bj?rdal - 0.3.2-6 - Remove vendor from desktop-file-install From jkeating at fedoraproject.org Fri Jul 24 17:41:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:41:21 +0000 (UTC) Subject: rpms/avarice/devel avarice.spec,1.4,1.5 Message-ID: <20090724174122.0007711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avarice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4962 Modified Files: avarice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avarice.spec =================================================================== RCS file: /cvs/pkgs/rpms/avarice/devel/avarice.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- avarice.spec 24 Feb 2009 03:38:33 -0000 1.4 +++ avarice.spec 24 Jul 2009 17:41:21 -0000 1.5 @@ -1,6 +1,6 @@ Name: avarice Version: 2.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Program for interfacing the Atmel JTAG ICE to GDB Group: Applications/Engineering @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:41:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:41:36 +0000 (UTC) Subject: rpms/avogadro/devel avogadro.spec,1.12,1.13 Message-ID: <20090724174136.545AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avogadro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5196 Modified Files: avogadro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avogadro.spec =================================================================== RCS file: /cvs/pkgs/rpms/avogadro/devel/avogadro.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- avogadro.spec 6 Jun 2009 17:48:41 -0000 1.12 +++ avogadro.spec 24 Jul 2009 17:41:36 -0000 1.13 @@ -1,6 +1,6 @@ Name: avogadro Version: 0.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An advanced molecular editor for chemical purposes Group: Applications/Editors @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Sebastian Dziallas 0.9.6-1 - new upstream release to fix issue with qt 4.5.0 and earlier From jkeating at fedoraproject.org Fri Jul 24 17:41:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:41:54 +0000 (UTC) Subject: rpms/avr-binutils/devel avr-binutils.spec,1.9,1.10 Message-ID: <20090724174154.6678B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avr-binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5372 Modified Files: avr-binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avr-binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/avr-binutils/devel/avr-binutils.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- avr-binutils.spec 28 Feb 2009 06:08:31 -0000 1.9 +++ avr-binutils.spec 24 Jul 2009 17:41:54 -0000 1.10 @@ -2,7 +2,7 @@ Name: %{target}-binutils Version: 2.18 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cross Compiling GNU binutils targeted at %{target} Group: Development/Tools License: GPLv2+ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Ralf Cors?pius - 2.18-4 - Rebase patch-coff-avr.patch (Fix F11 rebuild breakdown). From jkeating at fedoraproject.org Fri Jul 24 17:42:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:42:10 +0000 (UTC) Subject: rpms/avr-gcc/devel avr-gcc.spec,1.6,1.7 Message-ID: <20090724174210.8DD8911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avr-gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5573 Modified Files: avr-gcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avr-gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/avr-gcc/devel/avr-gcc.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- avr-gcc.spec 24 Feb 2009 03:41:20 -0000 1.6 +++ avr-gcc.spec 24 Jul 2009 17:42:10 -0000 1.7 @@ -2,7 +2,7 @@ Name: %{target}-gcc Version: 4.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross Compiling GNU GCC targeted at %{target} Group: Development/Languages License: GPLv2+ @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:42:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:42:26 +0000 (UTC) Subject: rpms/avr-gdb/devel avr-gdb.spec,1.9,1.10 Message-ID: <20090724174226.61B5111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avr-gdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5788 Modified Files: avr-gdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avr-gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/avr-gdb/devel/avr-gdb.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- avr-gdb.spec 24 Feb 2009 03:42:14 -0000 1.9 +++ avr-gdb.spec 24 Jul 2009 17:42:26 -0000 1.10 @@ -2,7 +2,7 @@ Name: %{target}-gdb Version: 6.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GDB for (remote) debugging %{target} binaries Group: Development/Tools License: GPLv2+ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 6.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:42:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:42:41 +0000 (UTC) Subject: rpms/avr-libc/devel avr-libc.spec,1.6,1.7 Message-ID: <20090724174241.B838711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avr-libc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5955 Modified Files: avr-libc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avr-libc.spec =================================================================== RCS file: /cvs/pkgs/rpms/avr-libc/devel/avr-libc.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- avr-libc.spec 26 May 2009 16:12:41 -0000 1.6 +++ avr-libc.spec 24 Jul 2009 17:42:41 -0000 1.7 @@ -7,7 +7,7 @@ Name: avr-libc Version: 1.6.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C library for use with GCC on Atmel AVR microcontrollers Group: Development/Tools License: BSD @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Michael Schwendt - 1.6.4-4 - Fix unowned versioned documentation directory (#473625). From jkeating at fedoraproject.org Fri Jul 24 17:42:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:42:58 +0000 (UTC) Subject: rpms/avrdude/devel avrdude.spec,1.8,1.9 Message-ID: <20090724174258.5129711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/avrdude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6148 Modified Files: avrdude.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: avrdude.spec =================================================================== RCS file: /cvs/pkgs/rpms/avrdude/devel/avrdude.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- avrdude.spec 24 Feb 2009 03:44:16 -0000 1.8 +++ avrdude.spec 24 Jul 2009 17:42:58 -0000 1.9 @@ -1,6 +1,6 @@ Name: avrdude Version: 5.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Software for programming Atmel AVR Microcontroller Group: Applications/Engineering @@ -81,6 +81,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:43:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:43:14 +0000 (UTC) Subject: rpms/awesfx/devel awesfx.spec,1.20,1.21 Message-ID: <20090724174314.5CB7D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/awesfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6346 Modified Files: awesfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: awesfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/awesfx/devel/awesfx.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- awesfx.spec 25 Jun 2009 15:12:26 -0000 1.20 +++ awesfx.spec 24 Jul 2009 17:43:14 -0000 1.21 @@ -1,6 +1,6 @@ Name: awesfx Version: 0.5.1c -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility programs for the AWE32/Emu10k1 sound driver Group: Applications/Multimedia URL: http://www.alsa-project.org/~iwai/awedrv.html @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man*/*.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1c-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Guido Grazioli 0.5.1c-2 - fixed %%install - fixed license From jkeating at fedoraproject.org Fri Jul 24 17:43:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:43:28 +0000 (UTC) Subject: rpms/awn-extras-applets/devel awn-extras-applets.spec,1.24,1.25 Message-ID: <20090724174328.307CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/awn-extras-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6526 Modified Files: awn-extras-applets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: awn-extras-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/awn-extras-applets/devel/awn-extras-applets.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- awn-extras-applets.spec 10 Jun 2009 01:02:58 -0000 1.24 +++ awn-extras-applets.spec 24 Jul 2009 17:43:28 -0000 1.25 @@ -2,7 +2,7 @@ Name: awn-extras-applets Version: 0.3.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extras applets for avant window navigator Group: User Interface/Desktops @@ -179,6 +179,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Sindre Pedersen Bj?rdal - 0.3.2.2-1 - Remove python binding patch, merged upstream - New upstream bugfix release From dledford at fedoraproject.org Fri Jul 24 17:43:39 2009 From: dledford at fedoraproject.org (Doug Ledford) Date: Fri, 24 Jul 2009 17:43:39 +0000 (UTC) Subject: rpms/mdadm/devel mdadm-raid-check-sysconfig, NONE, 1.1 raid-check, 1.3, 1.4 Message-ID: <20090724174339.DC42611C00CE@cvs1.fedora.phx.redhat.com> Author: dledford Update of /cvs/extras/rpms/mdadm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6658 Modified Files: raid-check Added Files: mdadm-raid-check-sysconfig Log Message: * Fri Jul 24 2009 Doug Ledford - 3.0-2 - Improved raid-check script as well as the ability to configure what devices get checked - Endian patch for uuid generation --- NEW FILE mdadm-raid-check-sysconfig --- #!/bin/bash # # Configuration file for /etc/cron.weekly/raid-check # # options: # ENABLED - must be yes in order for the raid check to proceed # CHECK - can be either check or repair depending on the type of # operation the user desires. A check operation will scan # the drives looking for bad sectors and automatically # repairing only bad sectors. If it finds good sectors that # contain bad data (meaning that the data in a sector does # not agree with what the data from another disk indicates # the data should be, for example the parity block + the other # data blocks would cause us to think that this data block # is incorrect), then it does nothing but increments the # counter in the file /sys/block/$dev/md/mismatch_count. # This allows the sysadmin to inspect the data in the sector # and the data that would be produced by rebuilding the # sector from redundant information and pick the correct # data to keep. The repair option does the same thing, but # when it encounters a mismatch in the data, it automatically # updates the data to be consistent. However, since we really # don't know whether it's the parity or the data block that's # correct (or which data block in the case of raid1), it's # luck of the draw whether or not the user gets the right # data instead of the bad data. This option is the default # option for devices not listed in either CHECK_DEVS or # REPAIR_DEVS. # CHECK_DEVS - a space delimited list of devs that the user specifically # wants to run a check operation on. # REPAIR_DEVS - a space delimited list of devs that the user # specifically wants to run a repair on. # SKIP_DEVS - a space delimited list of devs that should be skipped # # Note: the raid-check script intentionaly runs last in the cron.weekly # sequence. This is so we can wait for all the resync operations to complete # and then check the mismatch_count on each array without unduly delaying # other weekly cron jobs. If any arrays have a non-0 mismatch_count after # the check completes, we echo a warning to stdout which will then me emailed # to the admin as long as mails from cron jobs have not been redirected to # /dev/null. We do not wait for repair operations to complete as the # md stack will correct any mismatch_cnts automatically. # # Note2: you can not use symbolic names for the raid devices, such as you # /dev/md/root. The names used in this file must match the names seen in # /proc/mdstat and in /sys/block. ENABLED=yes CHECK=check # To check devs /dev/md0 and /dev/md3, use "md0 md3" CHECK_DEVS="" REPAIR_DEVS="" SKIP_DEVS="" Index: raid-check =================================================================== RCS file: /cvs/extras/rpms/mdadm/devel/raid-check,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- raid-check 29 Jun 2009 19:18:19 -0000 1.3 +++ raid-check 24 Jul 2009 17:43:39 -0000 1.4 @@ -1,7 +1,58 @@ #!/bin/bash +# +# This script reads it's configuration from /etc/sysconfig/raid-check +# Please use that file to enable/disable this script or to set the +# type of check you wish performed. +[ -f /etc/sysconfig/raid-check ] || exit 0 +. /etc/sysconfig/raid-check + +[ "$ENABLED" != "yes" ] && exit 0 + +case "$CHECK" in + check) ;; + repair) ;; + *) exit 0;; +esac + +dev_list="" for dev in `grep "^md.*: active" /proc/mdstat | cut -f 1 -d ' '`; do - [ -f /sys/block/$dev/md/sync_action ] && \ - echo "check" > /sys/block/$dev/md/sync_action + echo $SKIP_DEVS | grep -w $dev >/dev/null 2>&1 && continue + if [ -f /sys/block/$dev/md/sync_action ]; then + array_state=`cat /sys/block/$dev/md/array_state` + sync_action=`cat /sys/block/$dev/md/sync_action` + # Only perform the checks on idle, healthy arrays + if [ "$array_state" = "clean" -a "$sync_action" = "idle" ]; then + check="" + echo $REPAIR_DEVS | grep -w $dev >/dev/null 2>&1 && \ + check="repair" + echo $CHECK_DEVS | grep -w $dev >/dev/null 2>&1 \ + && check="check" + [ -z "$check" ] && check=$CHECK + echo "$check" > /sys/block/$dev/md/sync_action + [ "$check" = "check" ] && dev_list="$dev_list $dev" + fi + fi done +if [ -n "$dev_list" ]; then + checking=1 + while [ $checking -ne 0 ] + do + sleep 3 + checking=0 + for dev in $dev_list; do + sync_action=`cat /sys/block/$dev/md/sync_action` + if [ "$sync_action" != "idle" ]; then + checking=1 + fi + done + done + for dev in $dev_list; do + mismatch_cnt=`cat /sys/block/$dev/md/mismatch_cnt` + if [ "$mismatch_cnt" -ne 0 ]; then + echo "WARNING: mismatch_cnt is not 0 on /dev/$dev" + fi + done +fi + From jkeating at fedoraproject.org Fri Jul 24 17:43:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:43:43 +0000 (UTC) Subject: rpms/awstats/devel awstats.spec,1.27,1.28 Message-ID: <20090724174343.3A5BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/awstats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6718 Modified Files: awstats.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: awstats.spec =================================================================== RCS file: /cvs/pkgs/rpms/awstats/devel/awstats.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- awstats.spec 24 Feb 2009 03:46:07 -0000 1.27 +++ awstats.spec 24 Jul 2009 17:43:43 -0000 1.28 @@ -1,6 +1,6 @@ Name: awstats Version: 6.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Advanced Web Statistics License: GPLv2 Group: Applications/Internet @@ -160,6 +160,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 6.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:43:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:43:57 +0000 (UTC) Subject: rpms/ax25-apps/devel ax25-apps.spec,1.3,1.4 Message-ID: <20090724174357.1BDB811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ax25-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6953 Modified Files: ax25-apps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ax25-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/ax25-apps/devel/ax25-apps.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ax25-apps.spec 21 Mar 2009 13:11:24 -0000 1.3 +++ ax25-apps.spec 24 Jul 2009 17:43:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: ax25-apps Version: 0.0.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: AX.25 ham radio applications Group: Applications/Communications @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Robert Scheck 0.0.6-4 - Rebuilt against libtool 2.2 From jkeating at fedoraproject.org Fri Jul 24 17:44:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:44:11 +0000 (UTC) Subject: rpms/ax25-tools/devel ax25-tools.spec,1.4,1.5 Message-ID: <20090724174411.4B8C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ax25-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7155 Modified Files: ax25-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ax25-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ax25-tools/devel/ax25-tools.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ax25-tools.spec 8 Apr 2009 01:43:32 -0000 1.4 +++ ax25-tools.spec 24 Jul 2009 17:44:11 -0000 1.5 @@ -1,6 +1,6 @@ Name: ax25-tools Version: 0.0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools used to configure an ax.25 enabled computer Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Randall J. Berry 0.0.9-1 - Upstream update to 0.0.9, #488049 - Upstream URL has changed From jkeating at fedoraproject.org Fri Jul 24 17:44:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:44:25 +0000 (UTC) Subject: rpms/axel/devel axel.spec,1.1,1.2 Message-ID: <20090724174425.85CE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/axel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7327 Modified Files: axel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: axel.spec =================================================================== RCS file: /cvs/pkgs/rpms/axel/devel/axel.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- axel.spec 12 Jul 2009 17:34:05 -0000 1.1 +++ axel.spec 24 Jul 2009 17:44:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: axel Version: 2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Accelerated download client Group: Applications/Internet @@ -47,5 +47,8 @@ rm -rf %{buildroot} %{_mandir}/zh_CN/man1/axel.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Ankur Sinha - 2.4-1 - initial rpm build From jkeating at fedoraproject.org Fri Jul 24 17:44:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:44:39 +0000 (UTC) Subject: rpms/axis/devel axis.spec,1.28,1.29 Message-ID: <20090724174439.41E9F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/axis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7498 Modified Files: axis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: axis.spec =================================================================== RCS file: /cvs/pkgs/rpms/axis/devel/axis.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- axis.spec 24 Feb 2009 03:48:58 -0000 1.28 +++ axis.spec 24 Jul 2009 17:44:39 -0000 1.29 @@ -7,7 +7,7 @@ Name: axis Version: 1.2.1 -Release: 5.1%{?dist} +Release: 6.1%{?dist} Epoch: 0 Summary: A SOAP implementation in Java License: ASL 2.0 @@ -215,6 +215,9 @@ fi %doc docs/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2.1-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.2.1-5.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:44:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:44:57 +0000 (UTC) Subject: rpms/azureus/devel azureus.spec,1.75,1.76 Message-ID: <20090724174457.E1FCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/azureus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7716 Modified Files: azureus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: azureus.spec =================================================================== RCS file: /cvs/pkgs/rpms/azureus/devel/azureus.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- azureus.spec 19 Mar 2009 03:11:49 -0000 1.75 +++ azureus.spec 24 Jul 2009 17:44:57 -0000 1.76 @@ -2,7 +2,7 @@ Name: azureus Version: 4.0.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A BitTorrent Client Group: Applications/Internet License: GPLv2+ @@ -212,6 +212,9 @@ fi %{_datadir}/azureus %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Conrad Meyer - 4.0.0.4-3 - Apply Bart Vanbrabant's patch to azureus.script to start correctly on 64-bit (rhbz#490774). From jkeating at fedoraproject.org Fri Jul 24 17:45:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:45:13 +0000 (UTC) Subject: rpms/b43-fwcutter/devel b43-fwcutter.spec,1.6,1.7 Message-ID: <20090724174513.D12D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/b43-fwcutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7899 Modified Files: b43-fwcutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: b43-fwcutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-fwcutter/devel/b43-fwcutter.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- b43-fwcutter.spec 8 May 2009 14:16:55 -0000 1.6 +++ b43-fwcutter.spec 24 Jul 2009 17:45:13 -0000 1.7 @@ -1,6 +1,6 @@ Name: b43-fwcutter Version: 011 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Firmware extraction tool for Broadcom wireless driver Group: System Environment/Base @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc README README.Fedora %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 011-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 011-5 - Build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Fri Jul 24 17:45:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:45:29 +0000 (UTC) Subject: rpms/b43-openfwwf/devel b43-openfwwf.spec,1.2,1.3 Message-ID: <20090724174529.8C2FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/b43-openfwwf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8111 Modified Files: b43-openfwwf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: b43-openfwwf.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-openfwwf/devel/b43-openfwwf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- b43-openfwwf.spec 23 Jul 2009 17:26:24 -0000 1.2 +++ b43-openfwwf.spec 24 Jul 2009 17:45:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: b43-openfwwf Version: 5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open firmware for some Broadcom 43xx series WLAN chip Group: System Environment/Kernel License: GPLv2 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Peter Lemenkov 5.2-1 - Ver. 5.2 From jkeating at fedoraproject.org Fri Jul 24 17:45:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:45:45 +0000 (UTC) Subject: rpms/b43-tools/devel b43-tools.spec,1.1,1.2 Message-ID: <20090724174545.7FF5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/b43-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8293 Modified Files: b43-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: b43-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/b43-tools/devel/b43-tools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- b43-tools.spec 20 May 2009 07:02:22 -0000 1.1 +++ b43-tools.spec 24 Jul 2009 17:45:45 -0000 1.2 @@ -6,7 +6,7 @@ Name: b43-tools Version: 0 -Release: 0.3.git%{git_commit_date}%{?dist} +Release: 0.4.git%{git_commit_date}%{?dist} Summary: Tools for the Broadcom 43xx series WLAN chip Group: System Environment/Base # assembler ? GPLv2 @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.4.git20090125 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Peter Lemenkov 0-0.3.git20090125 - Corrected 'License' field - Since now ssb_sprom honours optflags From jkeating at fedoraproject.org Fri Jul 24 17:46:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:46:02 +0000 (UTC) Subject: rpms/babel/devel babel.spec,1.14,1.15 Message-ID: <20090724174602.D917211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/babel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8513 Modified Files: babel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: babel.spec =================================================================== RCS file: /cvs/pkgs/rpms/babel/devel/babel.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- babel.spec 28 Mar 2009 15:50:09 -0000 1.14 +++ babel.spec 24 Jul 2009 17:46:02 -0000 1.15 @@ -2,7 +2,7 @@ Name: babel Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools for internationalizing Python applications Group: Development/Languages @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Robert Scheck - 0.9.4-4 - Added missing requires to python-setuptools for pkg_resources From jkeating at fedoraproject.org Fri Jul 24 17:46:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:46:18 +0000 (UTC) Subject: rpms/babl/devel babl.spec,1.15,1.16 Message-ID: <20090724174618.CF19311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/babl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8742 Modified Files: babl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: babl.spec =================================================================== RCS file: /cvs/pkgs/rpms/babl/devel/babl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- babl.spec 6 Jul 2009 10:56:25 -0000 1.15 +++ babl.spec 24 Jul 2009 17:46:18 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A dynamic, any to any, pixel format conversion library Name: babl Version: 0.1.0 -Release: 3%{?dist} +Release: 4%{?dist} # The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL License: LGPLv3+ and GPLv3+ Group: System Environment/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Nils Philippsen - 0.1.0-3 - revert using "--disable-gtk-doc" as this doesn't work with babl (#477807) From jkeating at fedoraproject.org Fri Jul 24 17:46:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:46:33 +0000 (UTC) Subject: rpms/backintime/devel backintime.spec,1.5,1.6 Message-ID: <20090724174633.8DE7F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/backintime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8951 Modified Files: backintime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: backintime.spec =================================================================== RCS file: /cvs/pkgs/rpms/backintime/devel/backintime.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- backintime.spec 23 May 2009 13:21:55 -0000 1.5 +++ backintime.spec 24 Jul 2009 17:46:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: backintime Version: 0.9.26 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple backup tool Group: Applications/Archiving @@ -235,6 +235,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Simon Wesp - 0.9.26-1 - New upstream release - Drop 'removecheck'-patch From jkeating at fedoraproject.org Fri Jul 24 17:29:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:29:50 +0000 (UTC) Subject: rpms/atmel-firmware/devel atmel-firmware.spec,1.4,1.5 Message-ID: <20090724172950.A52A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atmel-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29031 Modified Files: atmel-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atmel-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/atmel-firmware/devel/atmel-firmware.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- atmel-firmware.spec 24 Feb 2009 02:58:59 -0000 1.4 +++ atmel-firmware.spec 24 Jul 2009 17:29:50 -0000 1.5 @@ -2,7 +2,7 @@ Name: atmel-firmware Version: 1.3 -Release: 5 +Release: 6 Summary: Firmware for Atmel at76c50x wireless network chips Group: System Environment/Kernel @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:46:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:46:48 +0000 (UTC) Subject: rpms/backup-light/devel backup-light.spec,1.1,1.2 Message-ID: <20090724174648.B8F4A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/backup-light/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9176 Modified Files: backup-light.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: backup-light.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-light/devel/backup-light.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- backup-light.spec 22 Mar 2009 11:57:13 -0000 1.1 +++ backup-light.spec 24 Jul 2009 17:46:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: backup-light Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A small backup bash utility Group: Applications/Archiving @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Fabian Affolter - 0.4-2 - Changed script name http://code.google.com/p/backup-light/issues/detail?id=3 From jkeating at fedoraproject.org Fri Jul 24 17:47:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:47:03 +0000 (UTC) Subject: rpms/backup-manager/devel backup-manager.spec,1.5,1.6 Message-ID: <20090724174703.BC6EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/backup-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9382 Modified Files: backup-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: backup-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/backup-manager/devel/backup-manager.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- backup-manager.spec 12 Jul 2009 18:11:59 -0000 1.5 +++ backup-manager.spec 24 Jul 2009 17:47:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: backup-manager Version: 0.7.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A command line backup tool for GNU/Linux Group: Applications/System @@ -115,6 +115,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Guillaume Kulakowski - 0.7.8-4 - Bump release From jkeating at fedoraproject.org Fri Jul 24 17:47:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:47:20 +0000 (UTC) Subject: rpms/bacula/devel bacula.spec,1.27,1.28 Message-ID: <20090724174720.CF9A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bacula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9588 Modified Files: bacula.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bacula.spec 23 Jul 2009 15:33:17 -0000 1.27 +++ bacula.spec 24 Jul 2009 17:47:20 -0000 1.28 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 3.0.2 -Release: 0%{?dist} +Release: 1%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -997,6 +997,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.2-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Jon Ciesla Author: jkeating Update of /cvs/pkgs/rpms/baekmuk-bdf-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9810 Modified Files: baekmuk-bdf-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: baekmuk-bdf-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/baekmuk-bdf-fonts/devel/baekmuk-bdf-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- baekmuk-bdf-fonts.spec 7 Apr 2009 06:18:58 -0000 1.7 +++ baekmuk-bdf-fonts.spec 24 Jul 2009 17:47:36 -0000 1.8 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Korean bitmap fonts Group: User Interface/X @@ -72,6 +72,9 @@ fi %{catalogue}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Caius 'kaio' Chance - 2.2-7.fc11 - Rebuilt for Fedora 11. From jkeating at fedoraproject.org Fri Jul 24 17:47:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:47:52 +0000 (UTC) Subject: rpms/baekmuk-ttf-fonts/devel baekmuk-ttf-fonts.spec,1.18,1.19 Message-ID: <20090724174752.C1A4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/baekmuk-ttf-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10024 Modified Files: baekmuk-ttf-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: baekmuk-ttf-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/baekmuk-ttf-fonts/devel/baekmuk-ttf-fonts.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- baekmuk-ttf-fonts.spec 8 Apr 2009 04:38:54 -0000 1.18 +++ baekmuk-ttf-fonts.spec 24 Jul 2009 17:47:52 -0000 1.19 @@ -8,7 +8,7 @@ This package provides the free Korean Tr Name: %{fontname}-fonts Version: 2.2 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Free Korean TrueType fonts Group: User Interface/X @@ -175,6 +175,9 @@ cd - %__rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Caius 'kaio' Chance - 2.2-21.fc11 - Resolves: rhbz#483327 (Fixed unowned directories.) From jkeating at fedoraproject.org Fri Jul 24 17:48:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:48:08 +0000 (UTC) Subject: rpms/bakery/devel bakery.spec,1.15,1.16 Message-ID: <20090724174808.13DE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bakery/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10232 Modified Files: bakery.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bakery.spec =================================================================== RCS file: /cvs/pkgs/rpms/bakery/devel/bakery.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- bakery.spec 24 Feb 2009 03:57:26 -0000 1.15 +++ bakery.spec 24 Jul 2009 17:48:07 -0000 1.16 @@ -4,7 +4,7 @@ Name: bakery Version: %{major_version}.%{minor_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ framework for creating GNOME applications using gtkmm Epoch: 1 @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1:2.6.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:48:23 +0000 (UTC) Subject: rpms/balance/devel balance.spec,1.3,1.4 Message-ID: <20090724174823.A156011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/balance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10461 Modified Files: balance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: balance.spec =================================================================== RCS file: /cvs/pkgs/rpms/balance/devel/balance.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- balance.spec 20 May 2009 22:00:18 -0000 1.3 +++ balance.spec 24 Jul 2009 17:48:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: balance Version: 3.42 -Release: 6%{?dist} +Release: 7%{?dist} Summary: TCP load-balancing proxy server with round robin and failover mechanisms Group: Applications/Internet License: GPLv2 @@ -44,6 +44,9 @@ be controlled at runtime using a simple %dir %{_localstatedir}/run/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.42-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Ville Skytt? - 3.42-6 - Build with $RPM_OPT_FLAGS (#497435). From jkeating at fedoraproject.org Fri Jul 24 17:48:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:48:39 +0000 (UTC) Subject: rpms/ballbuster/devel ballbuster.spec,1.8,1.9 Message-ID: <20090724174839.7CE2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ballbuster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10708 Modified Files: ballbuster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ballbuster.spec =================================================================== RCS file: /cvs/pkgs/rpms/ballbuster/devel/ballbuster.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ballbuster.spec 18 May 2009 14:03:50 -0000 1.8 +++ ballbuster.spec 24 Jul 2009 17:48:39 -0000 1.9 @@ -1,6 +1,6 @@ Name: ballbuster Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Move the paddle to bounce the ball and break all the bricks Group: Amusements/Games License: GPLv2+ @@ -76,6 +76,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 1.0-8 - Rebuild for new ClanLib From jkeating at fedoraproject.org Fri Jul 24 17:48:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:48:57 +0000 (UTC) Subject: rpms/ballz/devel ballz.spec,1.7,1.8 Message-ID: <20090724174857.9782211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ballz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10954 Modified Files: ballz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ballz.spec =================================================================== RCS file: /cvs/pkgs/rpms/ballz/devel/ballz.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ballz.spec 24 Feb 2009 04:00:21 -0000 1.7 +++ ballz.spec 24 Jul 2009 17:48:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: ballz Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Platform game with some puzzle elements Group: Amusements/Games License: BSD @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:49:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:49:13 +0000 (UTC) Subject: rpms/balsa/devel balsa.spec,1.52,1.53 Message-ID: <20090724174913.D9BA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/balsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11161 Modified Files: balsa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: balsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/balsa/devel/balsa.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- balsa.spec 28 May 2009 15:31:49 -0000 1.52 +++ balsa.spec 24 Jul 2009 17:49:13 -0000 1.53 @@ -2,7 +2,7 @@ Name: balsa Version: 2.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mail Client Group: Applications/Internet @@ -107,6 +107,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Pawel Salek - 2.4.0-1 - update to upstream 2.4.0. From jkeating at fedoraproject.org Fri Jul 24 17:49:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:49:28 +0000 (UTC) Subject: rpms/bam/devel bam.spec,1.3,1.4 Message-ID: <20090724174928.820D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11422 Modified Files: bam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bam.spec =================================================================== RCS file: /cvs/pkgs/rpms/bam/devel/bam.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bam.spec 24 Feb 2009 04:02:16 -0000 1.3 +++ bam.spec 24 Jul 2009 17:49:28 -0000 1.4 @@ -1,7 +1,7 @@ Name: bam Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A build-system Group: Amusements/Games @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:49:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:49:44 +0000 (UTC) Subject: rpms/bandwidthd/devel bandwidthd.spec,1.4,1.5 Message-ID: <20090724174944.7EDE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bandwidthd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11638 Modified Files: bandwidthd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bandwidthd.spec =================================================================== RCS file: /cvs/pkgs/rpms/bandwidthd/devel/bandwidthd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bandwidthd.spec 24 Feb 2009 04:03:09 -0000 1.4 +++ bandwidthd.spec 24 Jul 2009 17:49:44 -0000 1.5 @@ -3,7 +3,7 @@ Name: bandwidthd Version: 2.0.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Tracks network usage and builds html and graphs Group: System Environment/Daemons @@ -100,6 +100,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:49:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:49:59 +0000 (UTC) Subject: rpms/banner/devel banner.spec,1.7,1.8 Message-ID: <20090724174959.9294B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/banner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11862 Modified Files: banner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: banner.spec =================================================================== RCS file: /cvs/pkgs/rpms/banner/devel/banner.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- banner.spec 24 Feb 2009 04:04:01 -0000 1.7 +++ banner.spec 24 Jul 2009 17:49:59 -0000 1.8 @@ -2,7 +2,7 @@ Name: banner Summary: Prints a short string to the console in very large letters Version: 1.3.1 -Release: 7%{?dist} +Release: 8%{?dist} Group: Applications/Text License: GPLv2 @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/banner %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:50:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:50:15 +0000 (UTC) Subject: rpms/banshee/devel banshee.spec,1.76,1.77 Message-ID: <20090724175015.E658911C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/banshee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12094 Modified Files: banshee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: banshee.spec =================================================================== RCS file: /cvs/pkgs/rpms/banshee/devel/banshee.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- banshee.spec 14 Jun 2009 05:14:30 -0000 1.76 +++ banshee.spec 24 Jul 2009 17:50:15 -0000 1.77 @@ -2,7 +2,7 @@ Name: banshee Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easily import, manage, and play selections from your music collection Group: Applications/Multimedia License: MIT @@ -199,6 +199,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Michel Salim - 1.5.0-1 - Update to 1.5.0 From jkeating at fedoraproject.org Fri Jul 24 17:50:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:50:34 +0000 (UTC) Subject: rpms/banshee-mirage/devel banshee-mirage.spec,1.5,1.6 Message-ID: <20090724175034.2BE0D11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/banshee-mirage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12351 Modified Files: banshee-mirage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: banshee-mirage.spec =================================================================== RCS file: /cvs/pkgs/rpms/banshee-mirage/devel/banshee-mirage.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- banshee-mirage.spec 2 Jul 2009 10:21:30 -0000 1.5 +++ banshee-mirage.spec 24 Jul 2009 17:50:34 -0000 1.6 @@ -2,7 +2,7 @@ Name: banshee-mirage Version: 0.5.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An Automatic Playlist Generation Extension for Banshee Group: Applications/Multimedia License: GPLv2+ @@ -49,6 +49,9 @@ strip --strip-unneeded %{buildroot}/%{_l %{_libdir}/libmirageaudio.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Paul Lange - 0.5.0-3 - Fix translation conflicts with mirage (#506145) From jkeating at fedoraproject.org Fri Jul 24 17:50:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:50:52 +0000 (UTC) Subject: rpms/barcode/devel barcode.spec,1.12,1.13 Message-ID: <20090724175052.4E0DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/barcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12695 Modified Files: barcode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: barcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/barcode/devel/barcode.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- barcode.spec 24 Feb 2009 04:06:47 -0000 1.12 +++ barcode.spec 24 Jul 2009 17:50:52 -0000 1.13 @@ -1,7 +1,7 @@ Summary: generates barcodes from text strings Name: barcode Version: 0.98 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/Text Source0: ftp://ftp.gnu.org/gnu/barcode/barcode-0.98.tar.gz @@ -67,6 +67,9 @@ fi %{_mandir}/man3/barcode.3.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.98-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.98-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:51:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:51:07 +0000 (UTC) Subject: rpms/bareftp/devel bareftp.spec,1.4,1.5 Message-ID: <20090724175107.17E9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bareftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12935 Modified Files: bareftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bareftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/bareftp/devel/bareftp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bareftp.spec 28 Jun 2009 00:23:05 -0000 1.4 +++ bareftp.spec 24 Jul 2009 17:51:06 -0000 1.5 @@ -2,7 +2,7 @@ Name: bareftp Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File transfer client supporting the FTP, FTP over SSL/TLS (FTPS) and SSH Group: Applications/Internet @@ -97,6 +97,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Itamar Reis Peixoto - 0.2.3-2 - fix buildrequires From jkeating at fedoraproject.org Fri Jul 24 17:51:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:51:20 +0000 (UTC) Subject: rpms/barrage/devel barrage.spec,1.2,1.3 Message-ID: <20090724175120.1B7FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/barrage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13166 Modified Files: barrage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: barrage.spec =================================================================== RCS file: /cvs/pkgs/rpms/barrage/devel/barrage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- barrage.spec 24 Feb 2009 04:07:41 -0000 1.2 +++ barrage.spec 24 Jul 2009 17:51:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: barrage Version: 1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Kill and destroy as many targets as possible within 3 minutes Group: Amusements/Games @@ -75,6 +75,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:51:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:51:33 +0000 (UTC) Subject: rpms/barry/devel barry.spec,1.17,1.18 Message-ID: <20090724175133.86B5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/barry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13374 Modified Files: barry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: barry.spec =================================================================== RCS file: /cvs/pkgs/rpms/barry/devel/barry.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- barry.spec 1 Jul 2009 23:39:58 -0000 1.17 +++ barry.spec 24 Jul 2009 17:51:33 -0000 1.18 @@ -7,7 +7,7 @@ Name: barry Version: 0.15 -Release: 0.7.20090630git%{?dist} +Release: 0.8.20090630git%{?dist} Summary: BlackBerry Desktop for Linux Group: Applications/Productivity @@ -212,6 +212,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %postun libs -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-0.8.20090630git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git - version/git bump - create separate doc package; BZ#508462 From jkeating at fedoraproject.org Fri Jul 24 17:51:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:51:47 +0000 (UTC) Subject: rpms/basesystem/devel basesystem.spec,1.13,1.14 Message-ID: <20090724175147.D77C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/basesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13625 Modified Files: basesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: basesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/basesystem/devel/basesystem.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- basesystem.spec 24 Feb 2009 04:09:23 -0000 1.13 +++ basesystem.spec 24 Jul 2009 17:51:47 -0000 1.14 @@ -1,7 +1,7 @@ Summary: The skeleton package which defines a simple Fedora system Name: basesystem Version: 10.0 -Release: 2 +Release: 3 License: Public Domain Group: System Environment/Base Requires(Pre): setup filesystem @@ -26,6 +26,9 @@ should never be removed. %defattr(-,root,root,-) %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:52:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:52:16 +0000 (UTC) Subject: rpms/bash/devel bash.spec,1.183,1.184 Message-ID: <20090724175216.8AC0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14020 Modified Files: bash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bash.spec =================================================================== RCS file: /cvs/pkgs/rpms/bash/devel/bash.spec,v retrieving revision 1.183 retrieving revision 1.184 diff -u -p -r1.183 -r1.184 --- bash.spec 10 Jun 2009 13:03:33 -0000 1.183 +++ bash.spec 24 Jul 2009 17:52:16 -0000 1.184 @@ -5,7 +5,7 @@ Version: %{baseversion}%{patchlevel} Name: bash Summary: The GNU Bourne Again shell -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Shells License: GPLv2+ Url: http://www.gnu.org/software/bash @@ -305,6 +305,9 @@ fi #%doc doc/*.ps doc/*.0 doc/*.html doc/article.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Roman Rakus - 4.0.24-1 - Upstream patch level 24 From jkeating at fedoraproject.org Fri Jul 24 17:52:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:52:31 +0000 (UTC) Subject: rpms/bash-completion/devel bash-completion.spec,1.40,1.41 Message-ID: <20090724175231.9A1C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bash-completion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14255 Modified Files: bash-completion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bash-completion.spec =================================================================== RCS file: /cvs/pkgs/rpms/bash-completion/devel/bash-completion.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- bash-completion.spec 15 Jun 2009 17:15:22 -0000 1.40 +++ bash-completion.spec 24 Jul 2009 17:52:31 -0000 1.41 @@ -1,6 +1,6 @@ Name: bash-completion Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Programmable completion for Bash @@ -264,6 +264,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Ville Skytt? - 1:1.0-3 - Do not install cowsay completion, an updated version is shipped with it. From jkeating at fedoraproject.org Fri Jul 24 17:52:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:52:44 +0000 (UTC) Subject: rpms/bashdb/devel bashdb.spec,1.1,1.2 Message-ID: <20090724175244.7D0C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bashdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14485 Modified Files: bashdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bashdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/bashdb/devel/bashdb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bashdb.spec 10 Apr 2009 12:59:24 -0000 1.1 +++ bashdb.spec 24 Jul 2009 17:52:44 -0000 1.2 @@ -4,7 +4,7 @@ Name: bashdb Summary: BASH debugger, the BASH symbolic debugger Version: 4.0_0.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Debuggers Url: http://bashdb.sourceforge.net/ @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_infodir}/%{name}.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0_0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Paulo Roma 4.0_0.3-2 - Updated to 4.0-0.3 for supporting bash 4.0 - Added building option "with tests". From jkeating at fedoraproject.org Fri Jul 24 17:52:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:52:58 +0000 (UTC) Subject: rpms/basket/devel basket.spec,1.27,1.28 Message-ID: <20090724175258.9FB6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/basket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14708 Modified Files: basket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: basket.spec =================================================================== RCS file: /cvs/pkgs/rpms/basket/devel/basket.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- basket.spec 24 Feb 2009 04:11:13 -0000 1.27 +++ basket.spec 24 Jul 2009 17:52:58 -0000 1.28 @@ -4,7 +4,7 @@ Name: basket Version: 1.0.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Taking care of your ideas Group: Applications/Productivity @@ -126,6 +126,9 @@ fi update-desktop-database &> /dev/null || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:53:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:53:12 +0000 (UTC) Subject: rpms/bastet/devel bastet.spec,1.1,1.2 Message-ID: <20090724175312.5918F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bastet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14917 Modified Files: bastet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bastet.spec =================================================================== RCS file: /cvs/pkgs/rpms/bastet/devel/bastet.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bastet.spec 8 Jun 2009 18:25:58 -0000 1.1 +++ bastet.spec 24 Jul 2009 17:53:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: bastet Version: 0.43 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An evil falling bricks game Group: Amusements/Games @@ -92,6 +92,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.43-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Stefan Posdzich - 0.43-5 - Changed CFLAGS to CXXFLAGS From jkeating at fedoraproject.org Fri Jul 24 17:53:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:53:26 +0000 (UTC) Subject: rpms/batik/devel batik.spec,1.13,1.14 Message-ID: <20090724175326.B6E0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/batik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15129 Modified Files: batik.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: batik.spec =================================================================== RCS file: /cvs/pkgs/rpms/batik/devel/batik.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- batik.spec 15 Jul 2009 15:51:03 -0000 1.13 +++ batik.spec 24 Jul 2009 17:53:26 -0000 1.14 @@ -1,6 +1,6 @@ Name: batik Version: 1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Scalable Vector Graphics for Java License: ASL 2.0 URL: http://xml.apache.org/batik/ @@ -299,6 +299,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Lillian Angel - 1.7-5 - Fixed javadocs issue. - Resolves: rhbz#511767 From jkeating at fedoraproject.org Fri Jul 24 17:53:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:53:40 +0000 (UTC) Subject: rpms/bazaar/devel bazaar.spec,1.19,1.20 Message-ID: <20090724175340.8A74411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bazaar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15313 Modified Files: bazaar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bazaar.spec =================================================================== RCS file: /cvs/pkgs/rpms/bazaar/devel/bazaar.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- bazaar.spec 24 Feb 2009 04:12:58 -0000 1.19 +++ bazaar.spec 24 Jul 2009 17:53:40 -0000 1.20 @@ -1,7 +1,7 @@ Name: bazaar Version: 1.4.2 Summary: A distributed revision control system -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Development/Tools Source: http://bazaar.canonical.com/releases/src/%{name}_%{version}.tar.gz @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:53:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:53:54 +0000 (UTC) Subject: rpms/bbkeys/devel bbkeys.spec,1.21,1.22 Message-ID: <20090724175354.3AE3211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bbkeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15495 Modified Files: bbkeys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bbkeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/bbkeys/devel/bbkeys.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- bbkeys.spec 24 Feb 2009 04:13:51 -0000 1.21 +++ bbkeys.spec 24 Jul 2009 17:53:54 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Completely configurable key-combo grabber for blackbox Name: bbkeys Version: 0.9.0 -Release: 12 +Release: 13 License: MIT Group: User Interface/Desktops URL: http://bbkeys.sourceforge.net/ @@ -53,6 +53,9 @@ as well. bbkeys is easily configurable %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:54:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:54:08 +0000 (UTC) Subject: rpms/bc/devel bc.spec,1.40,1.41 Message-ID: <20090724175408.4F1BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15693 Modified Files: bc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bc.spec =================================================================== RCS file: /cvs/pkgs/rpms/bc/devel/bc.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- bc.spec 24 Feb 2009 04:14:44 -0000 1.40 +++ bc.spec 24 Jul 2009 17:54:08 -0000 1.41 @@ -1,7 +1,7 @@ Summary: GNU's bc (a numeric processing language) and dc (a calculator) Name: bc Version: 1.06 -Release: 34%{?dist} +Release: 35%{?dist} License: GPLv2+ URL: http://www.gnu.org/software/bc/ Group: Applications/Engineering @@ -65,6 +65,9 @@ fi %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.06-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.06-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:54:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:54:22 +0000 (UTC) Subject: rpms/bcel/devel bcel.spec,1.37,1.38 Message-ID: <20090724175422.81A5F11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bcel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15893 Modified Files: bcel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bcel.spec =================================================================== RCS file: /cvs/pkgs/rpms/bcel/devel/bcel.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- bcel.spec 24 Feb 2009 04:15:41 -0000 1.37 +++ bcel.spec 24 Jul 2009 17:54:22 -0000 1.38 @@ -43,7 +43,7 @@ Name: bcel Version: 5.2 -Release: 6.1%{?dist} +Release: 7.1%{?dist} Epoch: 0 Summary: Byte Code Engineering Library License: ASL 2.0 @@ -284,6 +284,9 @@ fi %doc %{_docdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:5.2-7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:5.2-6.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:54:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:54:36 +0000 (UTC) Subject: rpms/bcfg2/devel bcfg2.spec,1.26,1.27 Message-ID: <20090724175436.BED2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bcfg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16114 Modified Files: bcfg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bcfg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/bcfg2/devel/bcfg2.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- bcfg2.spec 24 Feb 2009 04:16:40 -0000 1.26 +++ bcfg2.spec 24 Jul 2009 17:54:36 -0000 1.27 @@ -4,7 +4,7 @@ Name: bcfg2 Version: 0.9.6 -Release: 3%{?pre:.pre%{pre}}%{?dist} +Release: 4%{?pre:.pre%{pre}}%{?dist} Summary: Configuration management system Group: Applications/System @@ -213,6 +213,9 @@ fi %dir %{_var}/lib/bcfg2 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:54:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:54:54 +0000 (UTC) Subject: rpms/bcm43xx-fwcutter/devel bcm43xx-fwcutter.spec,1.9,1.10 Message-ID: <20090724175454.13F6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bcm43xx-fwcutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16370 Modified Files: bcm43xx-fwcutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bcm43xx-fwcutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/bcm43xx-fwcutter/devel/bcm43xx-fwcutter.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- bcm43xx-fwcutter.spec 24 Feb 2009 04:18:27 -0000 1.9 +++ bcm43xx-fwcutter.spec 24 Jul 2009 17:54:53 -0000 1.10 @@ -1,6 +1,6 @@ Name: bcm43xx-fwcutter Version: 006 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Firmware extraction tool for Broadcom wireless driver Group: System Environment/Base @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %doc README README.Fedora COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 006-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 006-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:55:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:55:08 +0000 (UTC) Subject: rpms/bcrypt/devel bcrypt.spec,1.2,1.3 Message-ID: <20090724175508.8D9FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16548 Modified Files: bcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/bcrypt/devel/bcrypt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bcrypt.spec 24 Feb 2009 04:19:19 -0000 1.2 +++ bcrypt.spec 24 Jul 2009 17:55:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: bcrypt Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: File encryption utility Group: Applications/File @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/bcrypt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:55:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:55:24 +0000 (UTC) Subject: rpms/bea-stax/devel bea-stax.spec,1.4,1.5 Message-ID: <20090724175524.CFE5811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bea-stax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16792 Modified Files: bea-stax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bea-stax.spec =================================================================== RCS file: /cvs/pkgs/rpms/bea-stax/devel/bea-stax.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bea-stax.spec 24 Feb 2009 04:20:17 -0000 1.4 +++ bea-stax.spec 24 Jul 2009 17:55:24 -0000 1.5 @@ -42,7 +42,7 @@ Source0: http://dist.codehaus.org Patch0: %{name}-ecj-bootclasspath.patch Name: bea-stax Version: 1.2.0 -Release: 0.4.rc1%{?dist} +Release: 0.5.rc1%{?dist} Epoch: 0 License: ASL 2.0 Group: Development/Libraries/Java @@ -181,6 +181,9 @@ fi %doc %{_javadocdir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2.0-0.5.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.2.0-0.4.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:55:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:55:41 +0000 (UTC) Subject: rpms/beagle/devel beagle.spec,1.170,1.171 Message-ID: <20090724175541.066B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beagle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17032 Modified Files: beagle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/beagle/devel/beagle.spec,v retrieving revision 1.170 retrieving revision 1.171 diff -u -p -r1.170 -r1.171 --- beagle.spec 23 Jul 2009 23:35:36 -0000 1.170 +++ beagle.spec 24 Jul 2009 17:55:40 -0000 1.171 @@ -1,6 +1,6 @@ Name: beagle Version: 0.3.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: The Beagle Search Infrastructure Group: User Interface/Desktops # see COPYING for details @@ -354,6 +354,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/beagle*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Juan Rodriguez - 0.3.9-11 - Removed epiphany subpackage, as it fails on x86_64 From jkeating at fedoraproject.org Fri Jul 24 17:55:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:55:57 +0000 (UTC) Subject: rpms/beansbinding/devel beansbinding.spec,1.2,1.3 Message-ID: <20090724175557.47CD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beansbinding/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17247 Modified Files: beansbinding.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beansbinding.spec =================================================================== RCS file: /cvs/pkgs/rpms/beansbinding/devel/beansbinding.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- beansbinding.spec 24 Feb 2009 04:22:15 -0000 1.2 +++ beansbinding.spec 24 Jul 2009 17:55:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: beansbinding Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Beans Binding (JSR 295) reference implementation Group: Development/Libraries @@ -65,6 +65,9 @@ find . -type f \( -iname "*.jar" -o -ina %{_javadocdir}/%{name}-%{version}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rstrode at fedoraproject.org Fri Jul 24 17:55:59 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Fri, 24 Jul 2009 17:55:59 +0000 (UTC) Subject: rpms/gnome-panel/devel gnome-panel-2.27.4-fix-monitor.patch, NONE, 1.1 gnome-panel.spec, 1.359, 1.360 Message-ID: <20090724175559.86B5311C00CE@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gnome-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16993 Modified Files: gnome-panel.spec Added Files: gnome-panel-2.27.4-fix-monitor.patch Log Message: - Make my panels show up again on login (gnome bug 589632) gnome-panel-2.27.4-fix-monitor.patch: panel-toplevel.c | 7 +++++++ 1 file changed, 7 insertions(+) --- NEW FILE gnome-panel-2.27.4-fix-monitor.patch --- diff -up gnome-panel-2.27.4/gnome-panel/panel-toplevel.c.fix-monitor gnome-panel-2.27.4/gnome-panel/panel-toplevel.c --- gnome-panel-2.27.4/gnome-panel/panel-toplevel.c.fix-monitor 2009-07-24 13:32:56.736614448 -0400 +++ gnome-panel-2.27.4/gnome-panel/panel-toplevel.c 2009-07-24 13:43:25.944864163 -0400 @@ -2518,6 +2518,13 @@ panel_toplevel_update_geometry (PanelTop GtkRequisition *requisition) { toplevel->priv->updated_geometry_initial = TRUE; + + /* If the panel got assigned to a monitor that no longer exists, then + * move it to one that does. + */ + if (toplevel->priv->monitor >= panel_multiscreen_monitors (gtk_window_get_screen (GTK_WINDOW (toplevel)))) { + panel_toplevel_set_monitor (toplevel, 0); + } panel_toplevel_update_size (toplevel, requisition); panel_toplevel_update_position (toplevel); Index: gnome-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-panel/devel/gnome-panel.spec,v retrieving revision 1.359 retrieving revision 1.360 diff -u -p -r1.359 -r1.360 --- gnome-panel.spec 22 Jul 2009 21:32:55 -0000 1.359 +++ gnome-panel.spec 24 Jul 2009 17:55:59 -0000 1.360 @@ -23,7 +23,7 @@ Summary: GNOME panel Name: gnome-panel Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-panel/2.27/%{name}-%{version}.tar.bz2 @@ -122,6 +122,9 @@ Patch42: polkit1.patch # http://bugzilla.gnome.org/show_bug.cgi?id=322932 Patch45: panel-icons.patch +# http://bugzilla.gnome.org/show_bug.cgi?id=589632 +Patch46:gnome-panel-2.27.4-fix-monitor.patch + Conflicts: gnome-power-manager < 2.15.3 %description @@ -171,6 +174,7 @@ Panel Applets using the libpanel-applet %patch38 -p1 -b .clock-network %patch42 -p1 -b .polkit1 %patch45 -p1 -b .panel-icons +%patch46 -p1 -b .fix-monitor . %{SOURCE6} @@ -367,6 +371,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Ray Strode 2.27.4-3 +- Make my panels show up again on login (gnome bug 589632) + * Wed Jul 22 2009 Matthias Clasen - 2.27.4-2 - Make category icons follow the menu-images setting From jkeating at fedoraproject.org Fri Jul 24 17:56:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:56:14 +0000 (UTC) Subject: rpms/beanstalkd/devel beanstalkd.spec,1.4,1.5 Message-ID: <20090724175614.2B6FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beanstalkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17553 Modified Files: beanstalkd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beanstalkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/beanstalkd/devel/beanstalkd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- beanstalkd.spec 11 Apr 2009 21:20:16 -0000 1.4 +++ beanstalkd.spec 24 Jul 2009 17:56:14 -0000 1.5 @@ -5,7 +5,7 @@ Name: beanstalkd Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A fast, distributed, in-memory workqueue service Group: System Environment/Daemons @@ -78,6 +78,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Jeremy Hinegardner - 1.3-1 - update to upstream 1.3 From jkeating at fedoraproject.org Fri Jul 24 17:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:56:29 +0000 (UTC) Subject: rpms/beecrypt/devel beecrypt.spec,1.43,1.44 Message-ID: <20090724175629.B8D6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beecrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17785 Modified Files: beecrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beecrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/beecrypt/devel/beecrypt.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- beecrypt.spec 23 Feb 2009 20:25:33 -0000 1.43 +++ beecrypt.spec 24 Jul 2009 17:56:29 -0000 1.44 @@ -3,7 +3,7 @@ Summary: An open source cryptography library Name: beecrypt Version: 4.1.2 -Release: 19%{?dist} +Release: 20%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://beecrypt.sourceforge.net/ @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/_bc.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 4.1.2-19 - Rebuild for gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 17:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:56:45 +0000 (UTC) Subject: rpms/beediff/devel beediff.spec,1.2,1.3 Message-ID: <20090724175645.CCE3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beediff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18006 Modified Files: beediff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beediff.spec =================================================================== RCS file: /cvs/pkgs/rpms/beediff/devel/beediff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- beediff.spec 24 Feb 2009 04:24:06 -0000 1.2 +++ beediff.spec 24 Jul 2009 17:56:45 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Visual tool for comparing and merging files Name: beediff Version: 1.9 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Tools License: GPLv2+ URL: http://www.beesoft.at/index.php?id=beediff @@ -45,6 +45,9 @@ desktop-file-install --dir %{buildroot}% %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:57:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:57:01 +0000 (UTC) Subject: rpms/beep/devel beep.spec,1.2,1.3 Message-ID: <20090724175701.E34C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18253 Modified Files: beep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beep.spec =================================================================== RCS file: /cvs/pkgs/rpms/beep/devel/beep.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- beep.spec 24 Feb 2009 04:24:56 -0000 1.2 +++ beep.spec 24 Jul 2009 17:57:01 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Beep the PC speaker any number of ways Name: beep Version: 1.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/System License: GPLv2+ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtruch at fedoraproject.org Fri Jul 24 17:57:19 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 17:57:19 +0000 (UTC) Subject: rpms/cfitsio/devel noautobuild,1.3,NONE Message-ID: <20090724175719.9596311C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/cfitsio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18475 Removed Files: noautobuild Log Message: Built now. --- noautobuild DELETED --- From jkeating at fedoraproject.org Fri Jul 24 17:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:57:17 +0000 (UTC) Subject: rpms/beesu/devel beesu.spec,1.7,1.8 Message-ID: <20090724175717.5D95711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beesu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18491 Modified Files: beesu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beesu.spec =================================================================== RCS file: /cvs/pkgs/rpms/beesu/devel/beesu.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- beesu.spec 11 May 2009 17:59:53 -0000 1.7 +++ beesu.spec 24 Jul 2009 17:57:17 -0000 1.8 @@ -2,7 +2,7 @@ Name: beesu Version: 2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Graphical wrapper for su URL: http://www.honeybeenet.altervista.org Group: Applications/System @@ -91,6 +91,9 @@ fi %{_datadir}/icons/hicolor/32x32/apps/nautilus-beesu-manager.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Tom "spot" Callaway 2.3-4 - nautilus-beesu-manager update to 1.2 - one new installable script to change file access From jkeating at fedoraproject.org Fri Jul 24 17:57:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:57:34 +0000 (UTC) Subject: rpms/beldi/devel beldi.spec,1.11,1.12 Message-ID: <20090724175734.0BB7D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beldi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18761 Modified Files: beldi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/beldi/devel/beldi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- beldi.spec 11 Jul 2009 23:16:57 -0000 1.11 +++ beldi.spec 24 Jul 2009 17:57:33 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Belug Linux Distribution Burner Name: beldi Version: 0.9.25 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://belug.de/~beldi/ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man6/%{name}.6.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Christoph Wickert - 0.9.25-1 - Upgrade to 0.9.25 - BuildRequire dbus-glib and hal-devel for USB support From jkeating at fedoraproject.org Fri Jul 24 17:57:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:57:48 +0000 (UTC) Subject: rpms/beneath-a-steel-sky/devel beneath-a-steel-sky.spec,1.7,1.8 Message-ID: <20090724175748.8DA7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beneath-a-steel-sky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19055 Modified Files: beneath-a-steel-sky.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beneath-a-steel-sky.spec =================================================================== RCS file: /cvs/pkgs/rpms/beneath-a-steel-sky/devel/beneath-a-steel-sky.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- beneath-a-steel-sky.spec 5 Apr 2009 10:33:19 -0000 1.7 +++ beneath-a-steel-sky.spec 24 Jul 2009 17:57:48 -0000 1.8 @@ -1,6 +1,6 @@ Name: beneath-a-steel-sky Version: 0.0348 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Beneath a Steel Sky - Adventure Game Group: Amusements/Games # For further discussion on distribution rights see: @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0348-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Hans de Goede 0.0348-8 - Bump minimal scummvm version to 0.12.0, as the new upstream zip no longer includes sky.cpt, that is part of scummvm itself since 0.12.0 From jkeating at fedoraproject.org Fri Jul 24 17:58:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:58:03 +0000 (UTC) Subject: rpms/beneath-a-steel-sky-cd/devel beneath-a-steel-sky-cd.spec, 1.3, 1.4 Message-ID: <20090724175803.9843111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beneath-a-steel-sky-cd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19290 Modified Files: beneath-a-steel-sky-cd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beneath-a-steel-sky-cd.spec =================================================================== RCS file: /cvs/pkgs/rpms/beneath-a-steel-sky-cd/devel/beneath-a-steel-sky-cd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- beneath-a-steel-sky-cd.spec 24 Feb 2009 04:28:38 -0000 1.3 +++ beneath-a-steel-sky-cd.spec 24 Jul 2009 17:58:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: beneath-a-steel-sky-cd Version: 0.0372 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Beneath a Steel Sky - Adventure Game - CD version Group: Amusements/Games # For further discussion on distribution rights see: @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0372-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.0372-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:58:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:58:18 +0000 (UTC) Subject: rpms/berusky/devel berusky.spec,1.10,1.11 Message-ID: <20090724175818.9487411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/berusky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19522 Modified Files: berusky.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: berusky.spec =================================================================== RCS file: /cvs/pkgs/rpms/berusky/devel/berusky.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- berusky.spec 24 Feb 2009 04:29:31 -0000 1.10 +++ berusky.spec 24 Jul 2009 17:58:18 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Sokoban clone Name: berusky Version: 1.1 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Amusements/Games Source: http://www.anakreon.cz/download/berusky/tar.gz/%{name}-%{version}.tar.gz @@ -77,6 +77,9 @@ fi %{_datadir}/icons/hicolor/32x32/apps/berusky.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:58:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:58:33 +0000 (UTC) Subject: rpms/berusky-data/devel berusky-data.spec,1.3,1.4 Message-ID: <20090724175833.CAA7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/berusky-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19748 Modified Files: berusky-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: berusky-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/berusky-data/devel/berusky-data.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- berusky-data.spec 24 Feb 2009 04:30:24 -0000 1.3 +++ berusky-data.spec 24 Jul 2009 17:58:33 -0000 1.4 @@ -3,7 +3,7 @@ Summary: A datafile for Berusky Name: berusky-data Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} # No version is specified. License: GPL+ Group: Amusements/Games @@ -50,6 +50,9 @@ rm -rf %{buildroot} /var/games/%{game_name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:58:50 +0000 (UTC) Subject: rpms/bes/devel bes.spec,1.15,1.16 Message-ID: <20090724175850.8ED4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20003 Modified Files: bes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bes.spec =================================================================== RCS file: /cvs/pkgs/rpms/bes/devel/bes.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- bes.spec 22 Jul 2009 19:46:43 -0000 1.15 +++ bes.spec 24 Jul 2009 17:58:50 -0000 1.16 @@ -6,7 +6,7 @@ Name: bes Version: 3.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Back-end server software framework for OPeNDAP Group: System Environment/Libraries @@ -156,6 +156,9 @@ exit 0 %doc __distribution_docs/api-html/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Orion Poplawski - 3.7.2-1 - update to 3.7.2, enable tcp_wrapper support - Drop gcc43 patch fixed upstream From jkeating at fedoraproject.org Fri Jul 24 17:59:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:59:05 +0000 (UTC) Subject: rpms/bespin/devel bespin.spec,1.2,1.3 Message-ID: <20090724175905.B5E7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bespin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20253 Modified Files: bespin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bespin.spec =================================================================== RCS file: /cvs/pkgs/rpms/bespin/devel/bespin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bespin.spec 27 Jun 2009 17:57:10 -0000 1.2 +++ bespin.spec 24 Jul 2009 17:59:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: bespin Version: 0.1 -Release: 0.1.20090627svn500%{?dist} +Release: 0.2.20090627svn500%{?dist} Summary: A style for Qt/KDE4/KDM Group: User Interface/Desktops License: GPLv2 and LGPLv2 and BSD @@ -120,6 +120,9 @@ A KDM theme %{_kde4_datadir}/kde4/apps/kdm/themes/bespin/KdmGreeterTheme.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.2.20090627svn500 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Wesley Hearn 0.1-0.1.20090627svn500 - Updated to revision 500 From jkeating at fedoraproject.org Fri Jul 24 17:59:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:59:20 +0000 (UTC) Subject: rpms/beteckna-fonts/devel beteckna-fonts.spec,1.1,1.2 Message-ID: <20090724175920.D508811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/beteckna-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20492 Modified Files: beteckna-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: beteckna-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/beteckna-fonts/devel/beteckna-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- beteckna-fonts.spec 22 Mar 2009 06:46:15 -0000 1.1 +++ beteckna-fonts.spec 24 Jul 2009 17:59:20 -0000 1.2 @@ -10,7 +10,7 @@ Special character ✈ ( ? ) depic Name: %{fontname}-fonts Version: 0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Beteckna sans-serif fonts Group: User Interface/X @@ -115,6 +115,9 @@ rm -rf %{buildroot} %doc AUTHORS LICENSE CHANGELOG readme.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Ankur Sinha - 0.3-4 - Rebuilt and tested with mock in accordance with #476720 From jkeating at fedoraproject.org Fri Jul 24 17:59:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:59:36 +0000 (UTC) Subject: rpms/bib2html/devel bib2html.spec,1.5,1.6 Message-ID: <20090724175936.BE8B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bib2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20756 Modified Files: bib2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bib2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/bib2html/devel/bib2html.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bib2html.spec 24 Feb 2009 04:32:16 -0000 1.5 +++ bib2html.spec 24 Jul 2009 17:59:36 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Converting bibTeX file to HTML Name: bib2html Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: Applications/Publishing URL: http://www.litech.org/~wkiri/bib2html/ @@ -34,6 +34,9 @@ make appropriate links in the HTML outpu %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:59:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:59:51 +0000 (UTC) Subject: rpms/bibexport/devel bibexport.spec,1.2,1.3 Message-ID: <20090724175951.9799111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bibexport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21016 Modified Files: bibexport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bibexport.spec =================================================================== RCS file: /cvs/pkgs/rpms/bibexport/devel/bibexport.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bibexport.spec 24 Feb 2009 04:33:07 -0000 1.2 +++ bibexport.spec 24 Jul 2009 17:59:51 -0000 1.3 @@ -3,7 +3,7 @@ Name: bibexport # taken from bibexport.dtx: \def\fileversion{2.10} Version: 2.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extract entries from BibTeX and .aux files Group: Applications/Publishing @@ -64,6 +64,9 @@ texhash > /dev/null 2>&1 || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:00:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:00:09 +0000 (UTC) Subject: rpms/bibletime/devel bibletime.spec,1.14,1.15 Message-ID: <20090724180009.3C58C11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bibletime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21288 Modified Files: bibletime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bibletime.spec =================================================================== RCS file: /cvs/pkgs/rpms/bibletime/devel/bibletime.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- bibletime.spec 9 Jun 2009 01:47:48 -0000 1.14 +++ bibletime.spec 24 Jul 2009 18:00:09 -0000 1.15 @@ -1,7 +1,7 @@ Summary: BibleTime is an easy to use Bible study tool for KDE Name: bibletime Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Url: http://www.bibletime.info/ Group: Applications/Productivity @@ -82,6 +82,9 @@ done %doc ChangeLog README LICENSE %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Deji Akingunola - 2.0.1-1 - Update to 2.0.1 From jkeating at fedoraproject.org Fri Jul 24 18:00:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:00:28 +0000 (UTC) Subject: rpms/bibtex2html/devel bibtex2html.spec,1.1,1.2 Message-ID: <20090724180028.896BB11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bibtex2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21568 Modified Files: bibtex2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bibtex2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/bibtex2html/devel/bibtex2html.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bibtex2html.spec 9 May 2009 21:28:45 -0000 1.1 +++ bibtex2html.spec 24 Jul 2009 18:00:28 -0000 1.2 @@ -4,7 +4,7 @@ Name: bibtex2html Version: 1.93 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Collection of tools for translating from BibTeX to HTML Group: Applications/Publishing @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.93-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Guido Grazioli 1.93-3 - added manual (no html on ppc64 until hevea available) * Wed Mar 18 2009 Guido Grazioli 1.93-2 From jjohnstn at fedoraproject.org Fri Jul 24 18:00:30 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Fri, 24 Jul 2009 18:00:30 +0000 (UTC) Subject: rpms/eclipse-cdt/devel .cvsignore, 1.44, 1.45 eclipse-cdt.spec, 1.123, 1.124 sources, 1.53, 1.54 Message-ID: <20090724180030.7B85D11C049E@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21439 Modified Files: .cvsignore eclipse-cdt.spec sources Log Message: * Fri Jul 24 2009 Jeff Johnston 6.0.0-2 - Update Autotools to v200907241319 which has CDT 6.0 fixes. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/.cvsignore,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- .cvsignore 18 Jun 2009 18:08:55 -0000 1.44 +++ .cvsignore 24 Jul 2009 18:00:30 -0000 1.45 @@ -27,3 +27,4 @@ eclipse-cdt-fetched-src-autotools-R1_0_3 eclipse-cdt-fetched-src-v200906161748.tar.bz2 eclipse-cdt-fetched-src-CDT_6_0_0.tar.bz2 eclipse-cdt-fetched-src-autotools-v200906171600.tar.gz +eclipse-cdt-fetched-src-autotools-v200907241319.tar.gz Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.123 retrieving revision 1.124 diff -u -p -r1.123 -r1.124 --- eclipse-cdt.spec 18 Jun 2009 18:08:55 -0000 1.123 +++ eclipse-cdt.spec 24 Jul 2009 18:00:30 -0000 1.124 @@ -21,7 +21,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 1%{?dist} +Release: 2%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt @@ -35,7 +35,7 @@ Requires: eclipse-platform Source0: %{name}-fetched-src-CDT_6_0_0.tar.bz2 Source4: fetch-cdt.sh -Source1: http://sources.redhat.com/eclipse/autotools/eclipse-cdt-fetched-src-autotools-v200906171600.tar.gz +Source1: http://sources.redhat.com/eclipse/autotools/eclipse-cdt-fetched-src-autotools-v200907241319.tar.gz Source2: http://sources.redhat.com/eclipse/autotools/eclipse-cdt-fetched-src-libhover-R0_1_1.tar.gz @@ -50,10 +50,6 @@ Source2: http://sources.redhat.com/eclip # #Source2: %{name}-cppunit-20061102.tar.gz -# Binary gif file that is currently missing from the CDT. Since -# binary patches are not possible, the gif is included as a source file. -Source3: %{name}-target_filter.gif.gz - # Script to run the tests in Xvnc Source5: %{name}-runtests.sh @@ -82,16 +78,11 @@ Patch13: %{name}-testaggregation.patch # There is a bug in this test that makes it not build. It looks like # it's fixed upstream in 5.0.1 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=130235 -Patch14: %{name}-noLexerTests.patch - -# Following is work-around patch for managed configuration dialog creating -# extraneous default configurations with same id as user-modified ones in -# the .cproject file. This patch changes it so first configuration with id -# is used instead of last configuration with id. -Patch15: %{name}-managedConfigurations.patch +#Patch14: %{name}-noLexerTests.patch BuildRequires: eclipse-pde BuildRequires: eclipse-mylyn >= 3.0 +BuildRequires: eclipse-rse >= 3.0 %if %{gcj_support} BuildRequires: gcc-java >= 4.0.2 BuildRequires: java-gcj-compat-devel >= 1.0.64 @@ -108,6 +99,7 @@ BuildRequires: w3m Requires: gdb make gcc-c++ autoconf automake Requires: eclipse-platform >= 1:3.5.0 +Requires: eclipse-rse >= 3.0 # Currently, upstream CDT only supports building on the platforms listed here. %if %{gcj_support} @@ -167,16 +159,10 @@ popd pushd results/plugins %patch13 popd -pushd results/plugins/org.eclipse.cdt.core.tests -rm parser/org/eclipse/cdt/core/parser/tests/scanner/LexerTests.java -%patch14 -popd - -# Following is a workaround patch for managed configurations dialog -# creating extraneous default configurations with same id as user-defined ones -pushd results/plugins/org.eclipse.cdt.core -%patch15 -popd +#pushd results/plugins/org.eclipse.cdt.core.tests +#rm parser/org/eclipse/cdt/core/parser/tests/scanner/LexerTests.java +#%patch14 +#popd # Only build the sdk offset=0; @@ -200,12 +186,6 @@ sed --in-place -e "74,82d" build.propert sed --in-place -e "s:configs=.*\\\:configs=linux,gtk,%{eclipse_arch}:" build.properties popd -# Following is a patch to the CDT which is missing a b/w version -# of an icon. This patch can be removed once fixed upstream. -pushd results/plugins/org.eclipse.cdt.make.ui/icons/dtool16 -tar -xzf %{SOURCE3} -popd - popd ## Autotools stuff @@ -556,6 +536,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Jeff Johnston 6.0.0-2 +- Update Autotools to v200907241319 which has CDT 6.0 fixes. + * Wed Jun 17 2009 Jeff Johnston 6.0.0-1 - Rebase CDT to 6.0.0. - Rebase Autotools to v200906171600 snapshot. Index: sources =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/sources,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- sources 18 Jun 2009 18:08:55 -0000 1.53 +++ sources 24 Jul 2009 18:00:30 -0000 1.54 @@ -2,4 +2,4 @@ 2d4ae0a2131ba1efc896d981072cc091 eclipse-cdt-target_filter.gif.gz 23c3498e551936980269c83a0051d6b1 eclipse-cdt-fetched-src-libhover-R0_1_1.tar.gz d0b0b38accc5547e6209fda23c6c8d49 eclipse-cdt-fetched-src-CDT_6_0_0.tar.bz2 -bba5ccfc96742a3d08d95238bb730912 eclipse-cdt-fetched-src-autotools-v200906171600.tar.gz +6cfdaee7d8ca1c14359225f7393e46ae eclipse-cdt-fetched-src-autotools-v200907241319.tar.gz From jkeating at fedoraproject.org Fri Jul 24 18:00:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:00:46 +0000 (UTC) Subject: rpms/bibus/devel bibus.spec,1.6,1.7 Message-ID: <20090724180046.5C89911C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21852 Modified Files: bibus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/bibus/devel/bibus.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bibus.spec 24 Feb 2009 04:34:49 -0000 1.6 +++ bibus.spec 24 Jul 2009 18:00:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: bibus Version: 1.4.3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Bibliographic and reference management software Group: Applications/Publishing @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4.3.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:01:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:01:01 +0000 (UTC) Subject: rpms/bidiv/devel bidiv.spec,1.8,1.9 Message-ID: <20090724180101.E44BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bidiv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22098 Modified Files: bidiv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bidiv.spec =================================================================== RCS file: /cvs/pkgs/rpms/bidiv/devel/bidiv.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bidiv.spec 24 Feb 2009 04:35:48 -0000 1.8 +++ bidiv.spec 24 Jul 2009 18:01:01 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Display logical Hebrew on unidirectional terminals Name: bidiv Version: 1.5 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://ftp.ivrix.org.il/pub/ivrix/src/cmdline/ Source: http://ftp.ivrix.org.il/pub/ivrix/src/cmdline/%{name}-%{version}.tgz Patch0: nostrip.patch.gz @@ -42,6 +42,9 @@ rm -rf %{buildroot} # and what about %{_mandir}/he/man1/bidiv.1 ? ;) %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:01:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:01:19 +0000 (UTC) Subject: rpms/bigboard/devel bigboard.spec,1.76,1.77 Message-ID: <20090724180119.4B07611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bigboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22333 Modified Files: bigboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bigboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/bigboard/devel/bigboard.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- bigboard.spec 19 Jun 2009 12:13:34 -0000 1.76 +++ bigboard.spec 24 Jul 2009 18:01:19 -0000 1.77 @@ -3,7 +3,7 @@ Name: bigboard Version: 0.6.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Sidebar application launcher using mugshot.org Group: Applications/Internet @@ -128,6 +128,9 @@ gconftool-2 --makefile-install-rule \ killall -HUP gconfd-2 || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Caolan McNamara - 0.6.4-10 - Rebuild for new libempathy From jkeating at fedoraproject.org Fri Jul 24 18:01:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:01:40 +0000 (UTC) Subject: rpms/bigloo/devel bigloo.spec,1.31,1.32 Message-ID: <20090724180140.CB79611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bigloo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22598 Modified Files: bigloo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bigloo.spec =================================================================== RCS file: /cvs/pkgs/rpms/bigloo/devel/bigloo.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- bigloo.spec 24 Feb 2009 04:37:53 -0000 1.31 +++ bigloo.spec 24 Jul 2009 18:01:40 -0000 1.32 @@ -2,7 +2,7 @@ Name: bigloo Version: 3.1b -Release: 5%{?dist} +Release: 6%{?dist} Summary: Bigloo is compiler for the Scheme programming language Group: Development/Languages @@ -226,6 +226,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1b-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 3.1b-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:01:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:01:55 +0000 (UTC) Subject: rpms/biloba/devel biloba.spec,1.2,1.3 Message-ID: <20090724180155.B222511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/biloba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22812 Modified Files: biloba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: biloba.spec =================================================================== RCS file: /cvs/pkgs/rpms/biloba/devel/biloba.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- biloba.spec 24 Feb 2009 04:38:56 -0000 1.2 +++ biloba.spec 24 Jul 2009 18:01:55 -0000 1.3 @@ -1,6 +1,6 @@ Name: biloba Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tactical board game Group: Amusements/Games @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:02:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:02:11 +0000 (UTC) Subject: rpms/binclock/devel binclock.spec,1.2,1.3 Message-ID: <20090724180211.BC96A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/binclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23033 Modified Files: binclock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: binclock.spec =================================================================== RCS file: /cvs/pkgs/rpms/binclock/devel/binclock.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- binclock.spec 24 Feb 2009 04:39:51 -0000 1.2 +++ binclock.spec 24 Jul 2009 18:02:11 -0000 1.3 @@ -1,7 +1,7 @@ Name: binclock Summary: Fullscreen console binary clock Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://binclock.sourceforge.net @@ -59,6 +59,9 @@ install -Dp -m0755 binclock %{buildroot} %{_bindir}/binclock %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:02:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:02:32 +0000 (UTC) Subject: rpms/bind/devel bind.spec,1.319,1.320 Message-ID: <20090724180232.9FF5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23284 Modified Files: bind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind/devel/bind.spec,v retrieving revision 1.319 retrieving revision 1.320 diff -u -p -r1.319 -r1.320 --- bind.spec 20 Jul 2009 12:55:35 -0000 1.319 +++ bind.spec 24 Jul 2009 18:02:32 -0000 1.320 @@ -20,7 +20,7 @@ Summary: The Berkeley Internet Name Dom Name: bind License: ISC Version: 9.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 32 Url: http://www.isc.org/products/BIND/ Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -581,6 +581,9 @@ rm -rf ${RPM_BUILD_ROOT} %ghost %{chroot_prefix}/etc/localtime %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 32:9.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Adam Tkac 32:9.6.1-4 - remove useless bind-9.3.3rc2-rndckey.patch From jkeating at fedoraproject.org Fri Jul 24 18:02:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:02:48 +0000 (UTC) Subject: rpms/bind-dyndb-ldap/devel bind-dyndb-ldap.spec,1.2,1.3 Message-ID: <20090724180248.07DB011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bind-dyndb-ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23526 Modified Files: bind-dyndb-ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bind-dyndb-ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind-dyndb-ldap/devel/bind-dyndb-ldap.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bind-dyndb-ldap.spec 19 Jun 2009 08:15:56 -0000 1.2 +++ bind-dyndb-ldap.spec 24 Jul 2009 18:02:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: bind-dyndb-ldap Version: 0.1.0 -Release: 0.2.a1%{?dist} +Release: 0.3.a1%{?dist} Summary: LDAP back-end plug-in for BIND Group: System Environment/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-0.3.a1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Caol?n McNamara - 0.1.0-0.2.a1 - rebuild for dependencies From jkeating at fedoraproject.org Fri Jul 24 18:03:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:03:03 +0000 (UTC) Subject: rpms/bind-to-tinydns/devel bind-to-tinydns.spec,1.2,1.3 Message-ID: <20090724180303.AFB2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bind-to-tinydns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23714 Modified Files: bind-to-tinydns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bind-to-tinydns.spec =================================================================== RCS file: /cvs/pkgs/rpms/bind-to-tinydns/devel/bind-to-tinydns.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bind-to-tinydns.spec 24 Feb 2009 04:41:51 -0000 1.2 +++ bind-to-tinydns.spec 24 Jul 2009 18:03:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: bind-to-tinydns Version: 0.4.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert DNS zone files in BIND format to tinydns format Group: Applications/System @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:03:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:03:20 +0000 (UTC) Subject: rpms/bindfs/devel bindfs.spec,1.4,1.5 Message-ID: <20090724180320.0C45711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bindfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23888 Modified Files: bindfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bindfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/bindfs/devel/bindfs.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bindfs.spec 13 Apr 2009 18:27:17 -0000 1.4 +++ bindfs.spec 24 Jul 2009 18:03:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: bindfs Version: 1.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fuse filesystem to mirror a directory Group: System Environment/Base @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Till Maas - 1.8.3-1 - Update to new upstream release From jkeating at fedoraproject.org Fri Jul 24 18:03:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:03:36 +0000 (UTC) Subject: rpms/bing/devel bing.spec,1.4,1.5 Message-ID: <20090724180336.1193211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24126 Modified Files: bing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bing.spec =================================================================== RCS file: /cvs/pkgs/rpms/bing/devel/bing.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bing.spec 24 Feb 2009 04:43:37 -0000 1.4 +++ bing.spec 24 Jul 2009 18:03:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: bing Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Bandwidth ping Group: System Environment/Base @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/bing.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:03:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:03:51 +0000 (UTC) Subject: rpms/biniax/devel biniax.spec,1.2,1.3 Message-ID: <20090724180351.B972011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/biniax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24334 Modified Files: biniax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: biniax.spec =================================================================== RCS file: /cvs/pkgs/rpms/biniax/devel/biniax.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- biniax.spec 24 Feb 2009 04:44:31 -0000 1.2 +++ biniax.spec 24 Jul 2009 18:03:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: biniax Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A unique arcade logic game Group: Amusements/Games @@ -92,6 +92,9 @@ fi %{_datadir}/icons/hicolor/*/apps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:30:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:30:43 +0000 (UTC) Subject: rpms/atop/devel atop.spec,1.4,1.5 Message-ID: <20090724173043.27CA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29576 Modified Files: atop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atop.spec =================================================================== RCS file: /cvs/pkgs/rpms/atop/devel/atop.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- atop.spec 24 Feb 2009 03:01:41 -0000 1.4 +++ atop.spec 24 Jul 2009 17:30:42 -0000 1.5 @@ -1,6 +1,6 @@ Name: atop Version: 1.23 -Release: 9%{?dist} +Release: 10%{?dist} Summary: An advanced interactive monitor to view the load on system and process level Group: Applications/System @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.23-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.23-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:31:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:31:12 +0000 (UTC) Subject: rpms/aubio/devel aubio.spec,1.4,1.5 Message-ID: <20090724173112.AADF411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aubio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29891 Modified Files: aubio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aubio.spec =================================================================== RCS file: /cvs/pkgs/rpms/aubio/devel/aubio.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- aubio.spec 24 Feb 2009 03:03:24 -0000 1.4 +++ aubio.spec 24 Jul 2009 17:31:12 -0000 1.5 @@ -4,7 +4,7 @@ Name: aubio Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An audio labelling library Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:30:26 +0000 (UTC) Subject: rpms/atomorun/devel atomorun.spec,1.8,1.9 Message-ID: <20090724173026.5B28B11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atomorun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29406 Modified Files: atomorun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atomorun.spec =================================================================== RCS file: /cvs/pkgs/rpms/atomorun/devel/atomorun.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- atomorun.spec 24 Feb 2009 03:00:49 -0000 1.8 +++ atomorun.spec 24 Jul 2009 17:30:26 -0000 1.9 @@ -2,7 +2,7 @@ Name: atomorun Version: 1.1 -Release: 0.9.%{prever}%{?dist} +Release: 0.10.%{prever}%{?dist} Summary: Jump&Run game where you have to flee an exploding nuclear bomb Group: Amusements/Games License: GPL+ @@ -74,6 +74,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-0.10.pre2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-0.9.pre2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:32:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:32:13 +0000 (UTC) Subject: rpms/audacity/devel audacity.spec,1.80,1.81 Message-ID: <20090724173213.54CF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/audacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30506 Modified Files: audacity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: audacity.spec =================================================================== RCS file: /cvs/pkgs/rpms/audacity/devel/audacity.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- audacity.spec 20 Jul 2009 21:44:25 -0000 1.80 +++ audacity.spec 24 Jul 2009 17:32:13 -0000 1.81 @@ -5,7 +5,7 @@ Name: audacity Version: 1.3.8 -Release: 0.2.beta%{?dist} +Release: 0.3.beta%{?dist} Summary: Multitrack audio editor Group: Applications/Multimedia License: GPLv2 @@ -148,6 +148,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-0.3.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Michael Schwendt - 1.3.8-0.2.beta - glib2 2.21.1's gio in Rawhide F-12 introduces a GSocket that conflicts with wxGTK's GSocket class (gsocket.h): as a work-around, From jkeating at fedoraproject.org Fri Jul 24 17:30:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:30:58 +0000 (UTC) Subject: rpms/attr/devel attr.spec,1.34,1.35 Message-ID: <20090724173058.6310D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/attr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29740 Modified Files: attr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: attr.spec =================================================================== RCS file: /cvs/pkgs/rpms/attr/devel/attr.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- attr.spec 24 Feb 2009 03:02:32 -0000 1.34 +++ attr.spec 24 Jul 2009 17:30:58 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Utilities for managing filesystem extended attributes Name: attr Version: 2.4.43 -Release: 3%{?dist} +Release: 4%{?dist} Conflicts: xfsdump < 2.0.0 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source: ftp://oss.sgi.com/projects/xfs/cmd_tars/attr_%{version}-1.tar.gz @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT /%{_lib}/libattr.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.43-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.4.43-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:04:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:04:11 +0000 (UTC) Subject: rpms/binutils/devel binutils.spec,1.172,1.173 Message-ID: <20090724180411.559A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24573 Modified Files: binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/devel/binutils.spec,v retrieving revision 1.172 retrieving revision 1.173 diff -u -p -r1.172 -r1.173 --- binutils.spec 23 Jul 2009 08:34:57 -0000 1.172 +++ binutils.spec 24 Jul 2009 18:04:11 -0000 1.173 @@ -17,7 +17,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.51.0.14 -Release: 29%{?dist} +Release: 30%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -353,6 +353,9 @@ fi %endif # %{isnative} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.19.51.0.14-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Nick Clifton 2.19.51.0.11-28 - Rebase sources on 2.19.51.0.14 tarball. Gain fixes for PRs 10429 and 10433. From jkeating at fedoraproject.org Fri Jul 24 18:04:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:04:27 +0000 (UTC) Subject: rpms/bio2jack/devel bio2jack.spec,1.2,1.3 Message-ID: <20090724180427.AB8CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bio2jack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24766 Modified Files: bio2jack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bio2jack.spec =================================================================== RCS file: /cvs/pkgs/rpms/bio2jack/devel/bio2jack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bio2jack.spec 16 Mar 2009 04:56:57 -0000 1.2 +++ bio2jack.spec 24 Jul 2009 18:04:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: bio2jack Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Libraries # The license file says GPLv2+ but the source files say LGPLv2+. # The author of the software confirmed (via email) that it is @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_libdir}/lib%{name}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Orcan Ogetbil - 0.9-3 - add disttag From jkeating at fedoraproject.org Fri Jul 24 18:04:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:04:42 +0000 (UTC) Subject: rpms/bios_extract/devel bios_extract.spec,1.1,1.2 Message-ID: <20090724180442.9AA7811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bios_extract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25002 Modified Files: bios_extract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bios_extract.spec =================================================================== RCS file: /cvs/pkgs/rpms/bios_extract/devel/bios_extract.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bios_extract.spec 23 Jul 2009 16:51:04 -0000 1.1 +++ bios_extract.spec 24 Jul 2009 18:04:42 -0000 1.2 @@ -3,7 +3,7 @@ Name: bios_extract Version: 0 -Release: 0.2.%{git_commit_date}git%{?dist} +Release: 0.3.%{git_commit_date}git%{?dist} Summary: Tools to extract the different submodules of common legacy bioses Group: Applications/System @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.3.20090713git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Peter Lemenkov 0-0.2.20090713git - Small changes, based on Yanko Kaneti's suggestions. From jkeating at fedoraproject.org Fri Jul 24 18:04:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:04:58 +0000 (UTC) Subject: rpms/biosdevname/devel biosdevname.spec,1.8,1.9 Message-ID: <20090724180458.997EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/biosdevname/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25197 Modified Files: biosdevname.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: biosdevname.spec =================================================================== RCS file: /cvs/pkgs/rpms/biosdevname/devel/biosdevname.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- biosdevname.spec 24 Feb 2009 04:46:28 -0000 1.8 +++ biosdevname.spec 24 Jul 2009 18:04:58 -0000 1.9 @@ -1,6 +1,6 @@ Name: biosdevname Version: 0.2.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Udev helper for naming devices per BIOS names Group: System Environment/Base @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:05:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:05:14 +0000 (UTC) Subject: rpms/bip/devel bip.spec,1.8,1.9 Message-ID: <20090724180514.1FE0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25368 Modified Files: bip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bip.spec =================================================================== RCS file: /cvs/pkgs/rpms/bip/devel/bip.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bip.spec 5 Mar 2009 11:58:16 -0000 1.8 +++ bip.spec 24 Jul 2009 18:05:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: bip Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: IRC Bouncer Group: Applications/Internet License: GPLv2+ @@ -83,6 +83,9 @@ fi %attr(-,bip,bip) %dir %{_localstatedir}/log/bip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Lorenzo Villani - 0.8.0-1 - 0.8.0 From mtasaka at fedoraproject.org Fri Jul 24 18:05:22 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:05:22 +0000 (UTC) Subject: rpms/kita/devel kita.spec,1.23,1.24 Message-ID: <20090724180522.104DC11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kita/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25484 Modified Files: kita.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.177.5-6 - F-12: Mass rebuild Index: kita.spec =================================================================== RCS file: /cvs/extras/rpms/kita/devel/kita.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- kita.spec 11 Jun 2009 05:19:59 -0000 1.23 +++ kita.spec 24 Jul 2009 18:05:21 -0000 1.24 @@ -4,7 +4,7 @@ Summary: 2ch client for KDE Name: kita Version: %{version} -Release: 5%{?dist} +Release: 6%{?dist} Source: http://downloads.sourceforge.jp/kita/%{repoid}/kita-%{version}.tar.gz #Patch0: kita-0.177.3-nonweak-symbol.patch Patch10: kita-0.177.5-g++44.patch @@ -145,6 +145,9 @@ exit 0 %{_datadir}/doc/HTML/en/kita/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.177.5-6 +- F-12: Mass rebuild + * Thu Jun 11 2009 Mamoru Tasaka - 0.177.5-5 - Support automake 1.11 and above (build error detected by mass rebuild by Matt Domsch) From jkeating at fedoraproject.org Fri Jul 24 18:05:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:05:29 +0000 (UTC) Subject: rpms/bison/devel bison.spec,1.39,1.40 Message-ID: <20090724180529.AD7FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bison/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25600 Modified Files: bison.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bison.spec =================================================================== RCS file: /cvs/pkgs/rpms/bison/devel/bison.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- bison.spec 24 Feb 2009 04:48:24 -0000 1.39 +++ bison.spec 24 Jul 2009 18:05:29 -0000 1.40 @@ -1,7 +1,7 @@ Summary: A GNU general-purpose parser generator Name: bison Version: 2.4.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Tools Source: ftp://ftp.gnu.org/pub/gnu/bison/bison-%{version}.tar.bz2 @@ -115,6 +115,9 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:05:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:05:45 +0000 (UTC) Subject: rpms/bit/devel bit.spec,1.21,1.22 Message-ID: <20090724180545.C118D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25863 Modified Files: bit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bit.spec =================================================================== RCS file: /cvs/pkgs/rpms/bit/devel/bit.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- bit.spec 18 May 2009 15:42:17 -0000 1.21 +++ bit.spec 24 Jul 2009 18:05:45 -0000 1.22 @@ -1,7 +1,7 @@ Summary: C++ library to simplify bit stream parsing Name: bit Version: 0.4.90 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv3 URL: http://libbit.sourceforge.net Group: System Environment/Libraries @@ -119,6 +119,9 @@ find %{buildroot} -type f -name "*.la" - %doc %{_datadir}/gtk-doc/html/bit-gtkmm/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.90-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Rick L Vinyard Jr - 0.4.90-9 - Added s390x to exclude arch From jkeating at fedoraproject.org Fri Jul 24 18:06:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:06:00 +0000 (UTC) Subject: rpms/bitbake/devel bitbake.spec,1.11,1.12 Message-ID: <20090724180600.BA01411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitbake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26058 Modified Files: bitbake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitbake.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitbake/devel/bitbake.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- bitbake.spec 24 Feb 2009 04:50:21 -0000 1.11 +++ bitbake.spec 24 Jul 2009 18:06:00 -0000 1.12 @@ -3,7 +3,7 @@ Summary: BitBake build tool Name: bitbake Version: 1.8.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Development/Tools Source0: http://download.berlios.de/bitbake/bitbake-%{version}.tar.gz @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.8.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:28:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:28:23 +0000 (UTC) Subject: rpms/atasm/devel atasm.spec,1.1,1.2 Message-ID: <20090724172823.280D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27970 Modified Files: atasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/atasm/devel/atasm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- atasm.spec 8 Apr 2009 08:15:28 -0000 1.1 +++ atasm.spec 24 Jul 2009 17:28:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: atasm Version: 1.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 6502 cross-assembler Group: Development/Tools @@ -61,6 +61,9 @@ make test %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Dan Hor?k - 1.06-2 - don't compress the man page From jkeating at fedoraproject.org Fri Jul 24 17:28:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:28:09 +0000 (UTC) Subject: rpms/atari++/devel atari++.spec,1.4,1.5 Message-ID: <20090724172809.29FE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atari++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27798 Modified Files: atari++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atari++.spec =================================================================== RCS file: /cvs/pkgs/rpms/atari++/devel/atari++.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- atari++.spec 8 Jun 2009 08:32:33 -0000 1.4 +++ atari++.spec 24 Jul 2009 17:28:09 -0000 1.5 @@ -1,6 +1,6 @@ Name: atari++ Version: 1.56 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Unix based emulator of the Atari eight bit computers Group: Applications/Emulators @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.56-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Dan Hor?k 1.56-2 - add patch for sparc From jkeating at fedoraproject.org Fri Jul 24 18:06:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:06:17 +0000 (UTC) Subject: rpms/bitfrost/devel bitfrost.spec,1.1,1.2 Message-ID: <20090724180617.47EC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitfrost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26267 Modified Files: bitfrost.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitfrost.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitfrost/devel/bitfrost.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bitfrost.spec 10 Jul 2009 18:55:47 -0000 1.1 +++ bitfrost.spec 24 Jul 2009 18:06:16 -0000 1.2 @@ -2,7 +2,7 @@ Name: bitfrost Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC bitfrost security modules Group: System Environment/Base @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Daniel Drake 1.0.1-1 - Initial import From jkeating at fedoraproject.org Fri Jul 24 17:00:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:00:01 +0000 (UTC) Subject: rpms/apricots/devel apricots.spec,1.2,1.3 Message-ID: <20090724170001.B5D7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/apricots/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9260 Modified Files: apricots.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: apricots.spec =================================================================== RCS file: /cvs/pkgs/rpms/apricots/devel/apricots.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- apricots.spec 24 Feb 2009 01:31:38 -0000 1.2 +++ apricots.spec 24 Jul 2009 17:00:01 -0000 1.3 @@ -1,7 +1,7 @@ %define apricotsdir %{_datadir}/apricots Name: apricots Version: 0.2.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 2D air combat game Group: Amusements/Games @@ -100,6 +100,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.2.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:30:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:30:06 +0000 (UTC) Subject: rpms/atomix/devel atomix.spec,1.6,1.7 Message-ID: <20090724173006.C292211C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/atomix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29219 Modified Files: atomix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: atomix.spec =================================================================== RCS file: /cvs/pkgs/rpms/atomix/devel/atomix.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- atomix.spec 24 Feb 2009 02:59:55 -0000 1.6 +++ atomix.spec 24 Jul 2009 17:30:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: atomix Version: 2.14.0 -Release: 6.1 +Release: 7.1 Summary: Puzzle game: Build molecules out of isolated atoms Group: Amusements/Games @@ -70,6 +70,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.14.0-7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.14.0-6.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 17:28:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 17:28:37 +0000 (UTC) Subject: rpms/aterm/devel aterm.spec,1.21,1.22 Message-ID: <20090724172837.72F0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/aterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28146 Modified Files: aterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: aterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/aterm/devel/aterm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- aterm.spec 24 Feb 2009 02:54:37 -0000 1.21 +++ aterm.spec 24 Jul 2009 17:28:37 -0000 1.22 @@ -1,6 +1,6 @@ Name: aterm Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Afterstep XVT, VT102 emulator for the X Window system Group: User Interface/X @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 17:28:36 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 17:28:36 +0000 (UTC) Subject: rpms/jfbterm/devel jfbterm.spec,1.20,1.21 Message-ID: <20090724172836.C074411C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jfbterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28125 Modified Files: jfbterm.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4.7-22 - F-12: Mass rebuild Index: jfbterm.spec =================================================================== RCS file: /cvs/extras/rpms/jfbterm/devel/jfbterm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- jfbterm.spec 27 Mar 2009 20:49:38 -0000 1.20 +++ jfbterm.spec 24 Jul 2009 17:28:36 -0000 1.21 @@ -4,7 +4,7 @@ Summary: Japanese Console for Linux Frame Buffer Device Name: jfbterm Version: 0.4.7 -Release: 21%{?dist} +Release: 22%{?dist} License: BSD Group: Applications/System Source0: http://downloads.sourceforge.jp/jfbterm/13501/jfbterm-%{version}.tar.gz @@ -202,6 +202,9 @@ iconv -f EUCJP -t UTF8 README.ja.orig > %endif %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4.7-22 +- F-12: Mass rebuild + * Sat Mar 28 2009 Mamoru Tasaka - 0.4.7-21 - Font path again changed (on japanese-bitmap-fonts) ...... From jkeating at fedoraproject.org Fri Jul 24 18:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:06:33 +0000 (UTC) Subject: rpms/bitlbee/devel bitlbee.spec,1.10,1.11 Message-ID: <20090724180633.97B9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitlbee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26457 Modified Files: bitlbee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitlbee.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitlbee/devel/bitlbee.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- bitlbee.spec 23 Feb 2009 20:12:01 -0000 1.10 +++ bitlbee.spec 24 Jul 2009 18:06:33 -0000 1.11 @@ -1,7 +1,7 @@ Summary: IRC to other chat networks gateway Name: bitlbee Version: 1.2.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons URL: http://www.bitlbee.org/ @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0700,bitlbee,bitlbee) %dir %{_localstatedir}/lib/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.2.3-2 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 18:06:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:06:49 +0000 (UTC) Subject: rpms/bitmap/devel bitmap.spec,1.6,1.7 Message-ID: <20090724180649.7AD2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26680 Modified Files: bitmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitmap/devel/bitmap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bitmap.spec 24 Feb 2009 04:51:18 -0000 1.6 +++ bitmap.spec 24 Jul 2009 18:06:49 -0000 1.7 @@ -1,6 +1,6 @@ Name: bitmap Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Bitmap editor and converter utilities for the X Window System Group: User Interface/X Url: http://www.x.org @@ -79,6 +79,9 @@ touch --no-create %{_datadir}/icons/hico %{_mandir}/man1/*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 18:06:52 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:06:52 +0000 (UTC) Subject: rpms/kreetingkard/devel kreetingkard.spec,1.3,1.4 Message-ID: <20090724180652.DF8C911C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kreetingkard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26726 Modified Files: kreetingkard.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.7.1-4 - F-12: Mass rebuild Index: kreetingkard.spec =================================================================== RCS file: /cvs/extras/rpms/kreetingkard/devel/kreetingkard.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kreetingkard.spec 23 Feb 2009 22:36:53 -0000 1.3 +++ kreetingkard.spec 24 Jul 2009 18:06:52 -0000 1.4 @@ -1,5 +1,5 @@ %define mainver 0.7.1 -%define vendorrel 3 +%define vendorrel 4 %define repoid 18105 @@ -121,6 +121,9 @@ exit 0 %{_defaultdocdir}/HTML/en/%{name}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.7.1-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.7.1-3 - GTK icon cache updating script update From jkeating at fedoraproject.org Fri Jul 24 18:07:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:07:05 +0000 (UTC) Subject: rpms/bitmap-fonts/devel bitmap-fonts.spec,1.19,1.20 Message-ID: <20090724180705.A3EFA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitmap-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26953 Modified Files: bitmap-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitmap-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitmap-fonts/devel/bitmap-fonts.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- bitmap-fonts.spec 24 Feb 2009 04:52:15 -0000 1.19 +++ bitmap-fonts.spec 24 Jul 2009 18:07:05 -0000 1.20 @@ -1,6 +1,6 @@ Name: bitmap-fonts Version: 0.3 -Release: 7%{?dist} +Release: 8%{?dist} License: Lucida and MIT and Public Domain Source0: bitmap-fonts-%{version}.tar.bz2 Source1: fixfont-3.5.tar.bz2 @@ -76,6 +76,9 @@ fi %ghost %{_datadir}/fonts/bitmap-fonts/fonts.cache-1 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:07:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:07:20 +0000 (UTC) Subject: rpms/bitstream-vera-fonts/devel bitstream-vera-fonts.spec, 1.16, 1.17 Message-ID: <20090724180720.B357D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bitstream-vera-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27135 Modified Files: bitstream-vera-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bitstream-vera-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/bitstream-vera-fonts/devel/bitstream-vera-fonts.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- bitstream-vera-fonts.spec 23 May 2009 13:07:05 -0000 1.16 +++ bitstream-vera-fonts.spec 24 Jul 2009 18:07:20 -0000 1.17 @@ -9,7 +9,7 @@ at %{url} for details. Name: %{fontname}-fonts Version: 1.10 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Bitstream Vera fonts Group: User Interface/X @@ -101,6 +101,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Nicolas Mailhot - 1.10-17 ? remove pre-F11 compatibility metapackage From jkeating at fedoraproject.org Fri Jul 24 18:07:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:07:38 +0000 (UTC) Subject: rpms/bittorrent/devel bittorrent.spec,1.51,1.52 Message-ID: <20090724180738.1976E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bittorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27337 Modified Files: bittorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/bittorrent/devel/bittorrent.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- bittorrent.spec 7 May 2009 08:21:19 -0000 1.51 +++ bittorrent.spec 24 Jul 2009 18:07:37 -0000 1.52 @@ -9,7 +9,7 @@ Summary: BitTorrent swarming network file transfer tool Name: bittorrent Version: 4.4.0 -Release: 12%{?dist} +Release: 13%{?dist} Group: Applications/Internet License: BitTorrent URL: http://www.bittorrent.com/ @@ -252,6 +252,9 @@ fi %{_datadir}/applications/%{desktopvendor}-bittorrent.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Paul Howarth 4.4.0-12 - Add icon back in menu entry From jkeating at fedoraproject.org Fri Jul 24 18:07:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:07:54 +0000 (UTC) Subject: rpms/bkchem/devel bkchem.spec,1.6,1.7 Message-ID: <20090724180754.7496211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bkchem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27747 Modified Files: bkchem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bkchem.spec =================================================================== RCS file: /cvs/pkgs/rpms/bkchem/devel/bkchem.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bkchem.spec 8 Mar 2009 17:08:04 -0000 1.6 +++ bkchem.spec 24 Jul 2009 18:07:54 -0000 1.7 @@ -2,7 +2,7 @@ Name: bkchem Version: 0.13.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Chemical drawing program Group: Applications/Engineering License: GPLv2+ and GFDL @@ -63,6 +63,9 @@ desktop-file-install --dir=%{buildroot}/ %{python_sitelib}/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 24 2009 Henrique (LonelySpooky) Junior - 0.13.0-3 - InChI generation is now compatibile with old InChI versions (1.0 and 1.0.1) double bonds in 3D rotated molecules look much better now (z-coordinate is taken From mtasaka at fedoraproject.org Fri Jul 24 18:08:18 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:08:18 +0000 (UTC) Subject: rpms/kreetingkard_templates/devel kreetingkard_templates.spec, 1.2, 1.3 Message-ID: <20090724180818.1119311C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kreetingkard_templates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28537 Modified Files: kreetingkard_templates.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.2.0-4 - F-12: Mass rebuild Index: kreetingkard_templates.spec =================================================================== RCS file: /cvs/extras/rpms/kreetingkard_templates/devel/kreetingkard_templates.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kreetingkard_templates.spec 23 Feb 2009 22:36:54 -0000 1.2 +++ kreetingkard_templates.spec 24 Jul 2009 18:08:17 -0000 1.3 @@ -1,7 +1,7 @@ %define appname kreetingkard %define mainver 0.2.0 -%define vendorrel 3 +%define vendorrel 4 %define repoid 18013 @@ -58,6 +58,9 @@ echo "Nothing to do here" %{_datadir}/apps/%{appname}/templates/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.2.0-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.2.0-3 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:08:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:08:11 +0000 (UTC) Subject: rpms/blackbox/devel blackbox.spec,1.24,1.25 Message-ID: <20090724180811.BDB2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blackbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28358 Modified Files: blackbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blackbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/blackbox/devel/blackbox.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- blackbox.spec 1 Mar 2009 17:35:56 -0000 1.24 +++ blackbox.spec 24 Jul 2009 18:08:11 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Very small and fast Window Manager Name: blackbox Version: 0.70.1 -Release: 13 +Release: 14 License: MIT Group: User Interface/Desktops URL: http://blackboxwm.sourceforge.net/ @@ -94,6 +94,9 @@ autoreconf -i -f %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.70.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Caol?n McNamara - 0.70.1-13 - make build From jkeating at fedoraproject.org Fri Jul 24 18:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:09:01 +0000 (UTC) Subject: rpms/blacs/devel blacs.spec,1.31,1.32 Message-ID: <20090724180901.A050D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28907 Modified Files: blacs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/blacs/devel/blacs.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- blacs.spec 24 Feb 2009 04:57:04 -0000 1.31 +++ blacs.spec 24 Jul 2009 18:09:01 -0000 1.32 @@ -1,7 +1,7 @@ Summary: Basic Linear Algebra Communication Subprograms Name: blacs Version: 1.1 -Release: 31%{?dist} +Release: 32%{?dist} License: Public Domain Group: Development/Libraries URL: http://www.netlib.org/blacs @@ -99,6 +99,9 @@ rm -fr ${RPM_BUILD_ROOT} %{_libdir}/libmpiblacs*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:09:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:09:16 +0000 (UTC) Subject: rpms/blahtexml/devel blahtexml.spec,1.1,1.2 Message-ID: <20090724180916.E4BE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blahtexml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29092 Modified Files: blahtexml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blahtexml.spec =================================================================== RCS file: /cvs/pkgs/rpms/blahtexml/devel/blahtexml.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- blahtexml.spec 10 Mar 2009 18:40:13 -0000 1.1 +++ blahtexml.spec 24 Jul 2009 18:09:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: blahtexml Version: 0.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: TeX / MathML converter Group: Applications/Publishing @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Jasper Capel - 0.6-4 - Changes for review, by Michael Schwendt's suggestions: preserve timestamps when installing, use global compiler flags, dropped xerces-c dependency, in From jkeating at fedoraproject.org Fri Jul 24 18:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:09:36 +0000 (UTC) Subject: rpms/blam/devel blam.spec,1.29,1.30 Message-ID: <20090724180936.F3EF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29319 Modified Files: blam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blam.spec =================================================================== RCS file: /cvs/pkgs/rpms/blam/devel/blam.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- blam.spec 19 Jul 2009 10:24:37 -0000 1.29 +++ blam.spec 24 Jul 2009 18:09:36 -0000 1.30 @@ -5,7 +5,7 @@ Name: blam Version: 1.8.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -138,6 +138,9 @@ update-desktop-database &> /dev/null ||: %{_mandir}/man?/%{name}.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Alex Lancaster - 1.8.5-12 - Rebuild against newer gecko From jkeating at fedoraproject.org Fri Jul 24 18:09:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:09:52 +0000 (UTC) Subject: rpms/blender/devel blender.spec,1.120,1.121 Message-ID: <20090724180952.AFAC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29519 Modified Files: blender.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blender.spec =================================================================== RCS file: /cvs/pkgs/rpms/blender/devel/blender.spec,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- blender.spec 6 Jul 2009 19:48:32 -0000 1.120 +++ blender.spec 24 Jul 2009 18:09:52 -0000 1.121 @@ -5,7 +5,7 @@ Name: blender Version: 2.49a -Release: 2%{?dist} +Release: 3%{?dist} Summary: 3D modeling, animation, rendering and post-production @@ -233,6 +233,9 @@ fi || : %{_bindir}/blenderplayer.bin %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.49a-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 kwizart < kwizart at gmail.com > - 2.49a-2 - Fix perm on blend2renderinfo.py - raised by #506957 From jkeating at fedoraproject.org Fri Jul 24 18:10:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:10:13 +0000 (UTC) Subject: rpms/bless/devel bless.spec,1.5,1.6 Message-ID: <20090724181013.3D3B711C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bless/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29740 Modified Files: bless.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bless.spec =================================================================== RCS file: /cvs/pkgs/rpms/bless/devel/bless.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bless.spec 25 May 2009 22:52:58 -0000 1.5 +++ bless.spec 24 Jul 2009 18:10:13 -0000 1.6 @@ -3,7 +3,7 @@ Name: bless Version: 0.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: High quality, full featured hex editor Group: Applications/Editors @@ -77,6 +77,9 @@ scrollkeeper-update -q || : %{_datadir}/omf/bless/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien - 0.6.0-3 - Build arch ppc64. From mtasaka at fedoraproject.org Fri Jul 24 18:10:14 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:10:14 +0000 (UTC) Subject: rpms/libdstr/devel libdstr.spec,1.2,1.3 Message-ID: <20090724181014.8FF5D11C04D7@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/libdstr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29761 Modified Files: libdstr.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 20080124-3 - F-12: Mass rebuild Index: libdstr.spec =================================================================== RCS file: /cvs/extras/rpms/libdstr/devel/libdstr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libdstr.spec 23 Feb 2009 22:36:54 -0000 1.2 +++ libdstr.spec 24 Jul 2009 18:10:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: libdstr Version: 20080124 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Dave's String class Group: System Environment/Libraries @@ -71,6 +71,9 @@ find $RPM_BUILD_ROOT -name '*.la' \ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 20080124-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 20080124-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:10:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:10:29 +0000 (UTC) Subject: rpms/blitz/devel blitz.spec,1.8,1.9 Message-ID: <20090724181029.9223611C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blitz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30014 Modified Files: blitz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blitz.spec =================================================================== RCS file: /cvs/pkgs/rpms/blitz/devel/blitz.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- blitz.spec 14 May 2009 10:14:27 -0000 1.8 +++ blitz.spec 24 Jul 2009 18:10:29 -0000 1.9 @@ -1,6 +1,6 @@ Name: blitz Version: 0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: C++ class library for matrix scientific computing Group: Development/Libraries @@ -106,6 +106,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 0.9-10 - Build with $RPM_OPT_FLAGS. - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Fri Jul 24 18:10:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:10:45 +0000 (UTC) Subject: rpms/blktool/devel blktool.spec,1.8,1.9 Message-ID: <20090724181045.21AE811C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blktool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30210 Modified Files: blktool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blktool.spec =================================================================== RCS file: /cvs/pkgs/rpms/blktool/devel/blktool.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- blktool.spec 17 Jul 2009 00:37:23 -0000 1.8 +++ blktool.spec 24 Jul 2009 18:10:44 -0000 1.9 @@ -1,6 +1,6 @@ Name: blktool Version: 4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Block device settings tool Group: Applications/System @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_mandir}/man8/blktool.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jeff Garzik - 4-10 - specfile cleanups From mtasaka at fedoraproject.org Fri Jul 24 18:10:55 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:10:55 +0000 (UTC) Subject: rpms/libtcd/devel libtcd.spec,1.10,1.11 Message-ID: <20090724181055.9029C11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/libtcd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30348 Modified Files: libtcd.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.2.4-3 - F-12: Mass rebuild Index: libtcd.spec =================================================================== RCS file: /cvs/extras/rpms/libtcd/devel/libtcd.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libtcd.spec 23 Feb 2009 22:36:54 -0000 1.10 +++ libtcd.spec 24 Jul 2009 18:10:55 -0000 1.11 @@ -1,6 +1,6 @@ Name: libtcd Version: 2.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tide Constituent Database Library Group: System Environment/Libraries @@ -63,6 +63,9 @@ developing applications that use %{name} %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.2.4-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 2.2.4-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:10:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:10:59 +0000 (UTC) Subject: rpms/blktrace/devel blktrace.spec,1.10,1.11 Message-ID: <20090724181059.DA56311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blktrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30411 Modified Files: blktrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blktrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/blktrace/devel/blktrace.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- blktrace.spec 11 May 2009 17:37:13 -0000 1.10 +++ blktrace.spec 24 Jul 2009 18:10:59 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Utilities for performing block layer IO tracing in the linux kernel Name: blktrace Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/System Source: http://brick.kernel.dk/snaps/blktrace-%{version}.tar.bz2 @@ -43,6 +43,9 @@ rm -rf %{buildroot} %attr(0644,root,root) /usr/share/man/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Eric Sandeen - 1.0.1-2 - Upstream respun the release tarball to re-include top-level dir - drop exclude of bno_plot.py[co], not getting built now? From jkeating at fedoraproject.org Fri Jul 24 18:11:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:11:16 +0000 (UTC) Subject: rpms/blobAndConquer/devel blobAndConquer.spec,1.22,1.23 Message-ID: <20090724181116.13FE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blobAndConquer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30682 Modified Files: blobAndConquer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blobAndConquer.spec =================================================================== RCS file: /cvs/pkgs/rpms/blobAndConquer/devel/blobAndConquer.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- blobAndConquer.spec 10 Jun 2009 09:44:46 -0000 1.22 +++ blobAndConquer.spec 24 Jul 2009 18:11:15 -0000 1.23 @@ -7,7 +7,7 @@ Name: blobAndConquer Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Blob Wars 2: Blob And Conquer Group: Amusements/Games License: GPLv2+ and Redistributable, no modification permitted @@ -96,6 +96,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Rafa? Psota 1.0-4 - New URL From jkeating at fedoraproject.org Fri Jul 24 18:11:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:11:32 +0000 (UTC) Subject: rpms/blobby/devel blobby.spec,1.10,1.11 Message-ID: <20090724181132.1434511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30883 Modified Files: blobby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/blobby/devel/blobby.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- blobby.spec 24 Apr 2009 07:42:51 -0000 1.10 +++ blobby.spec 24 Jul 2009 18:11:31 -0000 1.11 @@ -1,6 +1,6 @@ Name: blobby Version: 0.6 -Release: 0.12.a%{?dist} +Release: 0.13.a%{?dist} Summary: Volley-ball game Group: Amusements/Games @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-0.13.a +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Aurelien Bompard 0.6-0.11.a - add ARM patch, thanks to Kedar Sovani From jkeating at fedoraproject.org Fri Jul 24 18:11:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:11:46 +0000 (UTC) Subject: rpms/blobwars/devel blobwars.spec,1.11,1.12 Message-ID: <20090724181146.80B1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blobwars/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31071 Modified Files: blobwars.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blobwars.spec =================================================================== RCS file: /cvs/pkgs/rpms/blobwars/devel/blobwars.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- blobwars.spec 8 Mar 2009 00:01:21 -0000 1.11 +++ blobwars.spec 24 Jul 2009 18:11:46 -0000 1.12 @@ -1,6 +1,6 @@ Name: blobwars Version: 1.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mission and Objective based 2D Platform Game Group: Amusements/Games License: GPLv2+ and Redistributable, no modification permitted @@ -90,6 +90,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Rafa? Psota 1.11-1 - update to 1.11 (bz 488584) From jkeating at fedoraproject.org Fri Jul 24 18:12:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:12:00 +0000 (UTC) Subject: rpms/blogtk/devel blogtk.spec,1.8,1.9 Message-ID: <20090724181200.BB4CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blogtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31247 Modified Files: blogtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blogtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/blogtk/devel/blogtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- blogtk.spec 24 Feb 2009 05:06:32 -0000 1.8 +++ blogtk.spec 24 Jul 2009 18:12:00 -0000 1.9 @@ -3,7 +3,7 @@ Name: blogtk Version: 1.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GNOME application for editing/maintaining blogs Group: Applications/Internet @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:12:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:12:15 +0000 (UTC) Subject: rpms/blt/devel blt.spec,1.28,1.29 Message-ID: <20090724181215.8107A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31448 Modified Files: blt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blt.spec =================================================================== RCS file: /cvs/pkgs/rpms/blt/devel/blt.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- blt.spec 27 Feb 2009 20:30:42 -0000 1.28 +++ blt.spec 24 Jul 2009 18:12:15 -0000 1.29 @@ -5,7 +5,7 @@ Summary: Widget extension to the Tcl/Tk scripting language Name: blt Version: 2.4 -Release: 30.z%{?dist} +Release: 31.z%{?dist} License: MIT Group: Development/Libraries @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-31.z +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Jesse Keating - 2.4-30.z - Rebuild for F11 mass rebuild - Remove package name from Summary From jkeating at fedoraproject.org Fri Jul 24 18:12:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:12:38 +0000 (UTC) Subject: rpms/bltk/devel bltk.spec,1.3,1.4 Message-ID: <20090724181238.DC83111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31709 Modified Files: bltk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bltk.spec =================================================================== RCS file: /cvs/pkgs/rpms/bltk/devel/bltk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bltk.spec 14 Jul 2009 10:27:38 -0000 1.3 +++ bltk.spec 24 Jul 2009 18:12:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: bltk Version: 1.0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The BLTK measures notebook battery life under any workload Group: Applications/System @@ -194,6 +194,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/bltk/wl_reader/war_and_peace.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Jiri Skala 1.0.9-1 - merged with latest upstream sources From jkeating at fedoraproject.org Fri Jul 24 18:12:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:12:52 +0000 (UTC) Subject: rpms/bluecurve-classic-metacity-theme/devel bluecurve-classic-metacity-theme.spec, 1.2, 1.3 Message-ID: <20090724181252.AA3EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-classic-metacity-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31915 Modified Files: bluecurve-classic-metacity-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-classic-metacity-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-classic-metacity-theme/devel/bluecurve-classic-metacity-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bluecurve-classic-metacity-theme.spec 24 Feb 2009 05:07:32 -0000 1.2 +++ bluecurve-classic-metacity-theme.spec 24 Jul 2009 18:12:52 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Bluecurve Classic metacity theme Name: bluecurve-classic-metacity-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPLv2 Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/Bluecurve-classic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:13:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:13:05 +0000 (UTC) Subject: rpms/bluecurve-gdm-theme/devel bluecurve-gdm-theme.spec,1.2,1.3 Message-ID: <20090724181305.8B02411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-gdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32120 Modified Files: bluecurve-gdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-gdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-gdm-theme/devel/bluecurve-gdm-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bluecurve-gdm-theme.spec 24 Feb 2009 05:08:24 -0000 1.2 +++ bluecurve-gdm-theme.spec 24 Jul 2009 18:13:05 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Bluecurve GDM theme Name: bluecurve-gdm-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdm/themes/Bluecurve %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:13:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:13:19 +0000 (UTC) Subject: rpms/bluecurve-gnome-theme/devel bluecurve-gnome-theme.spec, 1.2, 1.3 Message-ID: <20090724181319.9CC4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-gnome-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32299 Modified Files: bluecurve-gnome-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-gnome-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-gnome-theme/devel/bluecurve-gnome-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bluecurve-gnome-theme.spec 24 Feb 2009 05:09:19 -0000 1.2 +++ bluecurve-gnome-theme.spec 24 Jul 2009 18:13:19 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Bluecurve GNOME theme Name: bluecurve-gnome-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/Bluecurve %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:13:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:13:33 +0000 (UTC) Subject: rpms/bluecurve-gtk-themes/devel bluecurve-gtk-themes.spec,1.3,1.4 Message-ID: <20090724181333.A292C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-gtk-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32498 Modified Files: bluecurve-gtk-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-gtk-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-gtk-themes/devel/bluecurve-gtk-themes.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bluecurve-gtk-themes.spec 24 Feb 2009 05:10:15 -0000 1.3 +++ bluecurve-gtk-themes.spec 24 Jul 2009 18:13:33 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Bluecurve GTK+ theme Name: bluecurve-gtk-themes Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: User Interface/Desktops # There is no official upstream yet @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/Bluecurve-Tangerine %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:13:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:13:47 +0000 (UTC) Subject: rpms/bluecurve-icon-theme/devel bluecurve-icon-theme.spec,1.8,1.9 Message-ID: <20090724181347.7CB7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32675 Modified Files: bluecurve-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-icon-theme/devel/bluecurve-icon-theme.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bluecurve-icon-theme.spec 23 Jun 2009 17:36:20 -0000 1.8 +++ bluecurve-icon-theme.spec 24 Jul 2009 18:13:47 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Bluecurve icon theme Name: bluecurve-icon-theme Version: 8.0.2 -Release: 4%{?dist} +Release: 5%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -85,6 +85,9 @@ fi %{_datadir}/icons/LBluecurve-inverse %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Ray Strode - 8.0.2-4 - Require coreutils for touch in post (bug 507581) From jkeating at fedoraproject.org Fri Jul 24 18:14:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:14:01 +0000 (UTC) Subject: rpms/bluecurve-kde-theme/devel bluecurve-kde-theme.spec,1.5,1.6 Message-ID: <20090724181401.9716911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-kde-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv415 Modified Files: bluecurve-kde-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-kde-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-kde-theme/devel/bluecurve-kde-theme.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bluecurve-kde-theme.spec 24 Feb 2009 05:11:59 -0000 1.5 +++ bluecurve-kde-theme.spec 24 Jul 2009 18:14:01 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Bluecurve KDE 3 theme Name: bluecurve-kde-theme Version: 1.0.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: User Interface/Desktops # There is no official upstream yet @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/qt-3.*/plugins/styles/bluecurve.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:14:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:14:15 +0000 (UTC) Subject: rpms/bluecurve-metacity-theme/devel bluecurve-metacity-theme.spec, 1.2, 1.3 Message-ID: <20090724181415.9443711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-metacity-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv570 Modified Files: bluecurve-metacity-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-metacity-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-metacity-theme/devel/bluecurve-metacity-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bluecurve-metacity-theme.spec 24 Feb 2009 05:12:56 -0000 1.2 +++ bluecurve-metacity-theme.spec 24 Jul 2009 18:14:15 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Bluecurve metacity theme Name: bluecurve-metacity-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/Bluecurve %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:14:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:14:30 +0000 (UTC) Subject: rpms/bluecurve-xmms-skin/devel bluecurve-xmms-skin.spec,1.4,1.5 Message-ID: <20090724181430.418A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluecurve-xmms-skin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv755 Modified Files: bluecurve-xmms-skin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluecurve-xmms-skin.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluecurve-xmms-skin/devel/bluecurve-xmms-skin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bluecurve-xmms-skin.spec 5 Apr 2009 23:02:07 -0000 1.4 +++ bluecurve-xmms-skin.spec 24 Jul 2009 18:14:30 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Bluecurve xmms skin Name: bluecurve-xmms-skin Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xmms/Skins/Bluecurve-xmms.zip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Matthias Clasen - 1.0.0-3 - Drop xmms dependency (#365821) From jkeating at fedoraproject.org Fri Jul 24 18:14:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:14:47 +0000 (UTC) Subject: rpms/bluefish/devel bluefish.spec,1.27,1.28 Message-ID: <20090724181447.76B5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluefish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv981 Modified Files: bluefish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluefish.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluefish/devel/bluefish.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bluefish.spec 27 Feb 2009 13:51:52 -0000 1.27 +++ bluefish.spec 24 Jul 2009 18:14:47 -0000 1.28 @@ -9,7 +9,7 @@ Name: bluefish Version: 1.0.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: GTK2 web development application for experienced users Group: Development/Tools License: GPLv2+ @@ -115,6 +115,9 @@ Files common to every architecture versi %{_mandir}/man1/bluefish.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Paul Howarth - 1.0.7-6 - Split off shared-data noarch subpackage for Fedora 10 onwards - Add buildreq gail-devel to fix broken detection of libgnomeui on F-9 From jkeating at fedoraproject.org Fri Jul 24 18:15:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:01 +0000 (UTC) Subject: rpms/blueman/devel Blueman.spec,1.1,1.2 Message-ID: <20090724181501.4431D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blueman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1205 Modified Files: Blueman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: Blueman.spec =================================================================== RCS file: /cvs/pkgs/rpms/blueman/devel/Blueman.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- Blueman.spec 27 Jun 2009 14:36:01 -0000 1.1 +++ Blueman.spec 24 Jul 2009 18:15:01 -0000 1.2 @@ -3,7 +3,7 @@ Name: blueman Version: 1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK+ Bluetooth Manager Group: Applications/System @@ -108,6 +108,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Juan Rodriguez - 1.10-3 - Added Provides dbus-bluez-pin-helper From jkeating at fedoraproject.org Fri Jul 24 18:15:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:14 +0000 (UTC) Subject: rpms/gsynaptics/devel noautorebuild,NONE,1.1 Message-ID: <20090724181514.7E5E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsynaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1254 Added Files: noautorebuild Log Message: Skip this package at the owners request. --- NEW FILE noautorebuild --- From jkeating at fedoraproject.org Fri Jul 24 18:15:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:44 +0000 (UTC) Subject: rpms/bluez-hcidump/devel bluez-hcidump.spec,1.34,1.35 Message-ID: <20090724181544.4BDB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluez-hcidump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1810 Modified Files: bluez-hcidump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluez-hcidump.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez-hcidump/devel/bluez-hcidump.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- bluez-hcidump.spec 24 Feb 2009 05:17:29 -0000 1.34 +++ bluez-hcidump.spec 24 Jul 2009 18:15:44 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Bluetooth HCI protocol analyser Name: bluez-hcidump Version: 1.42 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System Source: http://bluez.sourceforge.net/download/%{name}-%{version}.tar.gz @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/hcidump.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.42-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.42-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:15:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:58 +0000 (UTC) Subject: rpms/bmake/devel bmake.spec,1.3,1.4 Message-ID: <20090724181558.4966711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2019 Modified Files: bmake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bmake.spec =================================================================== RCS file: /cvs/pkgs/rpms/bmake/devel/bmake.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bmake.spec 15 Jul 2009 12:04:50 -0000 1.3 +++ bmake.spec 24 Jul 2009 18:15:57 -0000 1.4 @@ -1,7 +1,7 @@ Summary: The NetBSD make(1) tool Name: bmake Version: 20090222 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD with advertising Group: Development/Tools URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/ @@ -45,6 +45,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090222-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Stepan Kasal - 20090222-1 - new upstream version From jkeating at fedoraproject.org Fri Jul 24 18:16:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:16:14 +0000 (UTC) Subject: rpms/bmpx/devel bmpx.spec,1.21,1.22 Message-ID: <20090724181614.99C6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bmpx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2360 Modified Files: bmpx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bmpx.spec =================================================================== RCS file: /cvs/pkgs/rpms/bmpx/devel/bmpx.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- bmpx.spec 14 Jul 2009 14:52:16 -0000 1.21 +++ bmpx.spec 24 Jul 2009 18:16:14 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Beep Media Player eXperimental Name: bmpx Version: 0.40.14 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Multimedia @@ -183,6 +183,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.40.14-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Caol?n McNamara - 0.40.14-14 - Resolves: rhbz#489552 fix to compile From jkeating at fedoraproject.org Fri Jul 24 18:16:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:16:29 +0000 (UTC) Subject: rpms/boa/devel boa.spec,1.16,1.17 Message-ID: <20090724181629.E744611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2551 Modified Files: boa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boa.spec =================================================================== RCS file: /cvs/pkgs/rpms/boa/devel/boa.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- boa.spec 12 Apr 2009 14:46:58 -0000 1.16 +++ boa.spec 24 Jul 2009 18:16:29 -0000 1.17 @@ -4,7 +4,7 @@ Summary: Single-tasking HTTP server Name: boa Version: 0.94.14 -Release: 0.12%{?rcver:.%{rcver}}%{?dist} +Release: 0.13%{?rcver:.%{rcver}}%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.boa.org/ @@ -135,6 +135,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.94.14-0.13.rc21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 0.94.14-0.12.rc21 - Update init script to the new style. - Move boa_indexer to libexec, as it makes more sense there. From jkeating at fedoraproject.org Fri Jul 24 18:16:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:16:58 +0000 (UTC) Subject: rpms/bochs/devel bochs.spec,1.42,1.43 Message-ID: <20090724181658.1F20211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bochs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2841 Modified Files: bochs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bochs.spec =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/bochs.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- bochs.spec 11 Mar 2009 17:13:22 -0000 1.42 +++ bochs.spec 24 Jul 2009 18:16:57 -0000 1.43 @@ -1,7 +1,7 @@ %define githead 04387139e3b Name: bochs Version: 2.3.8 -Release: 0.6.git%{githead}%{?dist} +Release: 0.7.git%{githead}%{?dist} Summary: Portable x86 PC emulator Group: Applications/Emulators License: LGPLv2+ @@ -215,6 +215,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.8-0.7.git04387139e3b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Glauber Costa 2.3.8-0.6.git04387139e3b - Fix Obsoletes/Provides pair. From jkeating at fedoraproject.org Fri Jul 24 18:17:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:17:14 +0000 (UTC) Subject: rpms/bodhi/devel bodhi.spec,1.34,1.35 Message-ID: <20090724181714.221FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bodhi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3025 Modified Files: bodhi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bodhi.spec =================================================================== RCS file: /cvs/pkgs/rpms/bodhi/devel/bodhi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- bodhi.spec 9 Jul 2009 19:51:18 -0000 1.34 +++ bodhi.spec 24 Jul 2009 18:17:13 -0000 1.35 @@ -3,7 +3,7 @@ Name: bodhi Version: 0.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A modular framework that facilitates publishing software updates Group: Applications/Internet License: GPLv2+ @@ -115,6 +115,9 @@ rm -rf bodhi/tests bodhi/tools/test-bodh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Luke Macken - 0.6.1-1 - 0.6.1 From jkeating at fedoraproject.org Fri Jul 24 18:17:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:17:30 +0000 (UTC) Subject: rpms/bodr/devel bodr.spec,1.4,1.5 Message-ID: <20090724181730.F165311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bodr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3215 Modified Files: bodr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bodr.spec =================================================================== RCS file: /cvs/pkgs/rpms/bodr/devel/bodr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bodr.spec 24 Feb 2009 05:23:28 -0000 1.4 +++ bodr.spec 24 Jul 2009 18:17:30 -0000 1.5 @@ -1,6 +1,6 @@ Name: bodr Version: 8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Blue Obelisk Data Repository Group: System Environment/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:17:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:17:46 +0000 (UTC) Subject: rpms/bogl/devel bogl.spec,1.4,1.5 Message-ID: <20090724181746.D149D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bogl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3394 Modified Files: bogl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bogl.spec =================================================================== RCS file: /cvs/pkgs/rpms/bogl/devel/bogl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bogl.spec 24 Feb 2009 05:24:20 -0000 1.4 +++ bogl.spec 24 Jul 2009 18:17:46 -0000 1.5 @@ -1,7 +1,7 @@ Summary: A terminal program for displaying Unicode on the console Name: bogl Version: 0.1.18 -Release: 16 +Release: 17 URL: http://packages.debian.org/unstable/source/bogl Source0: http://ftp.debian.org/debian/pool/main/b/bogl/bogl_0.1.18-1.5.tar.gz Source1: 14x14cjk.bdf.gz @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT /usr/share/bogl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.1.18-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:0.1.18-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:18:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:18:05 +0000 (UTC) Subject: rpms/bognor-regis/devel bognor-regis.spec,1.5,1.6 Message-ID: <20090724181805.B03F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3581 Modified Files: bognor-regis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bognor-regis.spec 23 Jul 2009 16:28:04 -0000 1.5 +++ bognor-regis.spec 24 Jul 2009 18:18:05 -0000 1.6 @@ -1,6 +1,6 @@ Name: bognor-regis Version: 0.4.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Peter Robinson 0.4.8-2 - Add some new dependencies. From jkeating at fedoraproject.org Fri Jul 24 18:18:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:18:21 +0000 (UTC) Subject: rpms/bogofilter/devel bogofilter.spec,1.11,1.12 Message-ID: <20090724181821.B0FA811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bogofilter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3775 Modified Files: bogofilter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bogofilter.spec =================================================================== RCS file: /cvs/pkgs/rpms/bogofilter/devel/bogofilter.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- bogofilter.spec 16 Jun 2009 08:55:22 -0000 1.11 +++ bogofilter.spec 24 Jul 2009 18:18:21 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Fast anti-spam filtering by Bayesian statistical analysis Name: bogofilter Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Internet URL: http://bogofilter.sourceforge.net/ @@ -79,6 +79,9 @@ iconv -f iso-8859-1 -t utf-8 \ %exclude %{_mandir}/man1/bogoupgrade* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 26 2009 Adrian Reber - 1.2.0-1 - updated to 1.2.0 From jkeating at fedoraproject.org Fri Jul 24 18:18:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:18:38 +0000 (UTC) Subject: rpms/boinc-client/devel boinc-client.spec,1.38,1.39 Message-ID: <20090724181838.18CDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boinc-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3960 Modified Files: boinc-client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boinc-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/boinc-client/devel/boinc-client.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- boinc-client.spec 21 Jul 2009 23:01:11 -0000 1.38 +++ boinc-client.spec 24 Jul 2009 18:18:37 -0000 1.39 @@ -4,7 +4,7 @@ Summary: The BOINC client core Name: boinc-client Version: 6.6.37 -Release: 2.r%{revision}svn%{?dist} +Release: 3.r%{revision}svn%{?dist} License: LGPLv2+ Group: Applications/Engineering URL: http://boinc.berkeley.edu/ @@ -337,6 +337,9 @@ fi %{_includedir}/boinc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.6.37-3.r18632svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Milos Jakubicek - 6.6.37-2.r18632svn - Rebase to 6.6a branch (resolves BZ#477882) - Ship shared libraries too, link client dynamically to them From jkeating at fedoraproject.org Fri Jul 24 18:18:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:18:53 +0000 (UTC) Subject: rpms/bolzplatz2006/devel bolzplatz2006.spec,1.5,1.6 Message-ID: <20090724181853.C70FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bolzplatz2006/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4129 Modified Files: bolzplatz2006.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bolzplatz2006.spec =================================================================== RCS file: /cvs/pkgs/rpms/bolzplatz2006/devel/bolzplatz2006.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bolzplatz2006.spec 24 Feb 2009 05:26:58 -0000 1.5 +++ bolzplatz2006.spec 24 Jul 2009 18:18:53 -0000 1.6 @@ -7,7 +7,7 @@ Name: bolzplatz2006 Version: 1.0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Slam Soccer 2006 is a funny football game in 3D-comic-style Summary(fr): Coup de Foot 2006 est un jeu comique en 3D Summary(de): Bolzplatz 2006 ist ein spa?iges Fu?ballspiel im 3D-Comic-Stil @@ -237,6 +237,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:19:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:19:08 +0000 (UTC) Subject: rpms/bombardier/devel bombardier.spec,1.6,1.7 Message-ID: <20090724181908.ACCD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bombardier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4323 Modified Files: bombardier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bombardier.spec =================================================================== RCS file: /cvs/pkgs/rpms/bombardier/devel/bombardier.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bombardier.spec 24 Feb 2009 05:27:53 -0000 1.6 +++ bombardier.spec 24 Jul 2009 18:19:08 -0000 1.7 @@ -1,6 +1,6 @@ Name: bombardier Version: 0.8.2.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The GNU Bombing utility Group: Amusements/Games @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.2.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 18:19:23 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:19:23 +0000 (UTC) Subject: rpms/manedit/devel manedit.spec,1.26,1.27 Message-ID: <20090724181923.7C5C611C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/manedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4484 Modified Files: manedit.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.2.1-3 - F-12: Mass rebuild Index: manedit.spec =================================================================== RCS file: /cvs/extras/rpms/manedit/devel/manedit.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- manedit.spec 23 Feb 2009 22:36:55 -0000 1.26 +++ manedit.spec 24 Jul 2009 18:19:23 -0000 1.27 @@ -3,7 +3,7 @@ Name: manedit Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: UNIX Manual Page Editor Group: Development/Tools @@ -121,6 +121,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_mandir}/man1/%{name}.1* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.2.1-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.2.1-2 - GTK icon cache updating script update From jkeating at fedoraproject.org Fri Jul 24 18:19:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:19:25 +0000 (UTC) Subject: rpms/bonnie++/devel bonnie++.spec,1.21,1.22 Message-ID: <20090724181925.280DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bonnie++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4513 Modified Files: bonnie++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bonnie++.spec =================================================================== RCS file: /cvs/pkgs/rpms/bonnie++/devel/bonnie++.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- bonnie++.spec 21 Jul 2009 17:15:20 -0000 1.21 +++ bonnie++.spec 24 Jul 2009 18:19:24 -0000 1.22 @@ -1,6 +1,6 @@ Name: bonnie++ Version: 1.03e -Release: 2%{?dist} +Release: 3%{?dist} Summary: Filesystem and disk benchmark & burn-in suite @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.03e-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Ville Skytt? - 1.03e-2 - Don't strip binaries before -debuginfo is generated (#505570). From jkeating at fedoraproject.org Fri Jul 24 18:19:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:19:39 +0000 (UTC) Subject: rpms/bontmia/devel bontmia.spec,1.4,1.5 Message-ID: <20090724181939.C7A3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bontmia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4743 Modified Files: bontmia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bontmia.spec =================================================================== RCS file: /cvs/pkgs/rpms/bontmia/devel/bontmia.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bontmia.spec 24 Feb 2009 05:29:35 -0000 1.4 +++ bontmia.spec 24 Jul 2009 18:19:39 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Backup over network to multiple incremental archives Name: bontmia Version: 0.14 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Archiving URL: http://folk.uio.no/johnen/bontmia/ @@ -37,6 +37,9 @@ the backup is fast and space efficient. %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:19:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:19:54 +0000 (UTC) Subject: rpms/boo/devel boo.spec,1.20,1.21 Message-ID: <20090724181954.90A8211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4923 Modified Files: boo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boo.spec =================================================================== RCS file: /cvs/pkgs/rpms/boo/devel/boo.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- boo.spec 15 Jun 2009 09:56:21 -0000 1.20 +++ boo.spec 24 Jul 2009 18:19:54 -0000 1.21 @@ -3,7 +3,7 @@ Summary: Boo is an OO statically typed language for CLI Name: boo Version: 0.8.1.2865 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: Development/Languages BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -78,6 +78,9 @@ update-mime-database %{_datadir}/mime &> %{monodir}/pkgconfig/boo.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1.2865-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Michael Schwendt - 0.8.1.2865-7 - Include missing directory entries (#473630). From jkeating at fedoraproject.org Fri Jul 24 18:20:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:20:08 +0000 (UTC) Subject: rpms/boolstuff/devel boolstuff.spec,1.8,1.9 Message-ID: <20090724182008.5DC1D11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boolstuff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5090 Modified Files: boolstuff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boolstuff.spec =================================================================== RCS file: /cvs/pkgs/rpms/boolstuff/devel/boolstuff.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- boolstuff.spec 26 Feb 2009 22:03:23 -0000 1.8 +++ boolstuff.spec 24 Jul 2009 18:20:08 -0000 1.9 @@ -1,6 +1,6 @@ Name: boolstuff Version: 0.1.11 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Disjunctive Normal Form boolean expression library Group: System Environment/Libraries @@ -139,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.11-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Conrad Meyer - 0.1.11-7 - Add fixes for gcc 4.4 changes to g++. From jkeating at fedoraproject.org Fri Jul 24 18:20:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:20:22 +0000 (UTC) Subject: rpms/boost/devel boost.spec,1.63,1.64 Message-ID: <20090724182022.CF51911C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5231 Modified Files: boost.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boost.spec =================================================================== RCS file: /cvs/pkgs/rpms/boost/devel/boost.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- boost.spec 2 Jul 2009 16:38:45 -0000 1.63 +++ boost.spec 24 Jul 2009 18:20:22 -0000 1.64 @@ -1,7 +1,7 @@ Name: boost Summary: The Boost C++ Libraries Version: 1.39.0 -Release: 3%{?dist} +Release: 4%{?dist} License: Boost URL: http://www.boost.org/ Group: System Environment/Libraries @@ -436,6 +436,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.39.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Petr Machata - 1.39.0-3 - Drop file list for main "boost" package, which was inadvertently left in. - Add thread sub-package to capture omitted boost_thread. From jkeating at fedoraproject.org Fri Jul 24 18:20:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:20:38 +0000 (UTC) Subject: rpms/bootchart/devel bootchart.spec,1.7,1.8 Message-ID: <20090724182038.0B2C711C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bootchart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5398 Modified Files: bootchart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bootchart.spec =================================================================== RCS file: /cvs/pkgs/rpms/bootchart/devel/bootchart.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bootchart.spec 24 Feb 2009 05:33:05 -0000 1.7 +++ bootchart.spec 24 Jul 2009 18:20:37 -0000 1.8 @@ -1,6 +1,6 @@ Name: bootchart Version: 0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Boot Process Performance Visualization License: GPLv3+ URL: http://www.bootchart.org/ @@ -88,6 +88,9 @@ fi %{_libdir}/gcj/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:20:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:20:51 +0000 (UTC) Subject: rpms/bootconf/devel bootconf.spec,1.4,1.5 Message-ID: <20090724182051.6C06111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bootconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5606 Modified Files: bootconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bootconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/bootconf/devel/bootconf.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bootconf.spec 24 Feb 2009 05:33:57 -0000 1.4 +++ bootconf.spec 24 Jul 2009 18:20:51 -0000 1.5 @@ -3,7 +3,7 @@ Summary: GRUB configuration utility Name: bootconf Version: 1.3 -Release: 3%{dist} +Release: 4%{dist} License: GPLv3 Group: System Environment/Base Url: http://www.courier-mta.org/bootconf/ @@ -77,6 +77,9 @@ desktop-file-install --vendor="fedora" \ %{_datadir}/applications/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:21:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:21:05 +0000 (UTC) Subject: rpms/bootparamd/devel bootparamd.spec,1.24,1.25 Message-ID: <20090724182105.49A8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bootparamd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5802 Modified Files: bootparamd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bootparamd.spec =================================================================== RCS file: /cvs/pkgs/rpms/bootparamd/devel/bootparamd.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- bootparamd.spec 24 Feb 2009 05:34:53 -0000 1.24 +++ bootparamd.spec 24 Jul 2009 18:21:05 -0000 1.25 @@ -1,7 +1,7 @@ Summary: A server process which provides boot information to diskless clients Name: bootparamd Version: 0.17 -Release: 28%{?dist} +Release: 29%{?dist} License: BSD Group: System Environment/Daemons Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-%{name}-%{version}.tar.gz @@ -92,6 +92,9 @@ fi %{_initrddir}/bootparamd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.17-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:21:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:21:20 +0000 (UTC) Subject: rpms/boswars/devel boswars.spec,1.7,1.8 Message-ID: <20090724182120.B585A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boswars/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5967 Modified Files: boswars.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boswars.spec =================================================================== RCS file: /cvs/pkgs/rpms/boswars/devel/boswars.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- boswars.spec 24 Feb 2009 05:36:45 -0000 1.7 +++ boswars.spec 24 Jul 2009 18:21:20 -0000 1.8 @@ -1,6 +1,6 @@ Name: boswars Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Bos Wars is a futuristic real-time strategy game Group: Amusements/Games License: GPLv2 @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:21:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:21:34 +0000 (UTC) Subject: rpms/boswars-addons/devel boswars-addons.spec,1.2,1.3 Message-ID: <20090724182134.9DA8F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boswars-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6141 Modified Files: boswars-addons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boswars-addons.spec =================================================================== RCS file: /cvs/pkgs/rpms/boswars-addons/devel/boswars-addons.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- boswars-addons.spec 24 Feb 2009 05:37:39 -0000 1.2 +++ boswars-addons.spec 24 Jul 2009 18:21:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: boswars-addons Version: 2.5 -Release: 2 +Release: 3 Summary: Addon maps for Bos Wars real-time strategy game Group: Amusements/Games @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:21:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:21:47 +0000 (UTC) Subject: rpms/botan/devel botan.spec,1.6,1.7 Message-ID: <20090724182147.D5DDA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/botan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6298 Modified Files: botan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: botan.spec =================================================================== RCS file: /cvs/pkgs/rpms/botan/devel/botan.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- botan.spec 25 Apr 2009 18:22:55 -0000 1.6 +++ botan.spec 24 Jul 2009 18:21:47 -0000 1.7 @@ -1,6 +1,6 @@ Name: botan Version: 1.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Crypto library written in C++ Group: System Environment/Libraries @@ -110,6 +110,9 @@ LD_LIBRARY_PATH=%{buildroot}%{_libdir} . %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Thomas Moschny - 1.8.2-1 - Update to 1.8.2. From mtasaka at fedoraproject.org Fri Jul 24 18:22:03 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:22:03 +0000 (UTC) Subject: rpms/mecab/devel mecab.spec,1.22,1.23 Message-ID: <20090724182203.C9A7B11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6488 Modified Files: mecab.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.4.pre3 - F-12: Mass rebuild Index: mecab.spec =================================================================== RCS file: /cvs/extras/rpms/mecab/devel/mecab.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mecab.spec 3 Jun 2009 19:46:26 -0000 1.22 +++ mecab.spec 24 Jul 2009 18:22:03 -0000 1.23 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define fedorarel 3 +%define fedorarel 4 # Note: # mecab dictionary requires mecab-devel to rebuild it, @@ -115,6 +115,9 @@ cd .. %{_includedir}/%{name}.h %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.4.pre3 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.3.pre3 - 0.98 pre3 From jkeating at fedoraproject.org Fri Jul 24 18:22:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:22:00 +0000 (UTC) Subject: rpms/bottlerocket/devel bottlerocket.spec,1.5,1.6 Message-ID: <20090724182200.9E3E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bottlerocket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6461 Modified Files: bottlerocket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bottlerocket.spec =================================================================== RCS file: /cvs/pkgs/rpms/bottlerocket/devel/bottlerocket.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bottlerocket.spec 14 Apr 2009 00:08:34 -0000 1.5 +++ bottlerocket.spec 24 Jul 2009 18:22:00 -0000 1.6 @@ -1,6 +1,6 @@ Name: bottlerocket Version: 0.04c -Release: 5%{?dist} +Release: 6%{?dist} Summary: Utilities to use the FireCracker X10 kit Group: Applications/System @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.04c-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Sindre Pedersen Bj?rdal - 0.04c-5 - Rebuilt From jkeating at fedoraproject.org Fri Jul 24 18:22:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:22:14 +0000 (UTC) Subject: rpms/bouml/devel bouml.spec,1.28,1.29 Message-ID: <20090724182214.F26A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bouml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6691 Modified Files: bouml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bouml.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouml/devel/bouml.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- bouml.spec 4 Jul 2009 10:21:15 -0000 1.28 +++ bouml.spec 24 Jul 2009 18:22:14 -0000 1.29 @@ -6,7 +6,7 @@ Summary: UML2 tool box for C++, Java, IDL, PHP and Python Name: bouml Version: 4.13 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://bouml.free.fr/ @@ -110,6 +110,9 @@ fi %{_libdir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 04 2009 Debarshi Ray - 4.13-1 - Version bump to 4.13. * Added active on activity, class and state. From jkeating at fedoraproject.org Fri Jul 24 18:22:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:22:28 +0000 (UTC) Subject: rpms/bouml-doc/devel bouml-doc.spec,1.10,1.11 Message-ID: <20090724182228.802B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bouml-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6853 Modified Files: bouml-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bouml-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouml-doc/devel/bouml-doc.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- bouml-doc.spec 24 Feb 2009 05:41:29 -0000 1.10 +++ bouml-doc.spec 24 Jul 2009 18:22:28 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Documentation for the BOUML tool Name: bouml-doc Version: 4.3.2 -Release: 2 +Release: 3 License: GPLv2+ Group: Documentation URL: http://bouml.free.fr @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %doc pdf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:22:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:22:42 +0000 (UTC) Subject: rpms/bouncycastle/devel bouncycastle.spec,1.17,1.18 Message-ID: <20090724182242.D5C5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bouncycastle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7030 Modified Files: bouncycastle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bouncycastle.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle/devel/bouncycastle.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- bouncycastle.spec 11 Jul 2009 17:46:19 -0000 1.17 +++ bouncycastle.spec 24 Jul 2009 18:22:42 -0000 1.18 @@ -5,7 +5,7 @@ Summary: Bouncy Castle Crypto Package for Java Name: bouncycastle Version: 1.43 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.%{name}.org/ @@ -172,6 +172,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.43-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Orcan Ogetbil - 1.43-3 - Raise java requirement to >= 1.7 once again. From jkeating at fedoraproject.org Fri Jul 24 18:22:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:22:58 +0000 (UTC) Subject: rpms/bouncycastle-mail/devel bouncycastle-mail.spec,1.8,1.9 Message-ID: <20090724182258.4680511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bouncycastle-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7216 Modified Files: bouncycastle-mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bouncycastle-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-mail/devel/bouncycastle-mail.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bouncycastle-mail.spec 14 Jul 2009 22:35:54 -0000 1.8 +++ bouncycastle-mail.spec 24 Jul 2009 18:22:58 -0000 1.9 @@ -4,7 +4,7 @@ Summary: S/MIME and CMS libraries for Bouncy Castle Name: bouncycastle-mail Version: 1.43 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.43-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 13 2009 Orcan Ogetbil - 1.43-2 - Re-enable AOT bits thanks to Andrew Haley. From jkeating at fedoraproject.org Fri Jul 24 18:23:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:23:14 +0000 (UTC) Subject: rpms/bouncycastle-tsp/devel bouncycastle-tsp.spec,1.2,1.3 Message-ID: <20090724182314.3177011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bouncycastle-tsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7425 Modified Files: bouncycastle-tsp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bouncycastle-tsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/bouncycastle-tsp/devel/bouncycastle-tsp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- bouncycastle-tsp.spec 15 Jul 2009 01:24:05 -0000 1.2 +++ bouncycastle-tsp.spec 24 Jul 2009 18:23:13 -0000 1.3 @@ -4,7 +4,7 @@ Summary: TSP libraries for Bouncy Castle Name: bouncycastle-tsp Version: 1.43 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.bouncycastle.org/ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.43-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 13 2009 Orcan Ogetbil - 1.43-3 - Re-enable AOT bits thanks to Andrew Haley. From jkeating at fedoraproject.org Fri Jul 24 18:23:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:23:28 +0000 (UTC) Subject: rpms/boxes/devel boxes.spec,1.4,1.5 Message-ID: <20090724182328.3480211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/boxes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7610 Modified Files: boxes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: boxes.spec =================================================================== RCS file: /cvs/pkgs/rpms/boxes/devel/boxes.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- boxes.spec 24 Feb 2009 05:44:13 -0000 1.4 +++ boxes.spec 24 Jul 2009 18:23:28 -0000 1.5 @@ -1,6 +1,6 @@ Name: boxes Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Draw any kind of box around some given text Group: Applications/Text @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:23:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:23:43 +0000 (UTC) Subject: rpms/bpg-fonts/devel bpg-fonts.spec,1.1,1.2 Message-ID: <20090724182343.1DAE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bpg-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7795 Modified Files: bpg-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bpg-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/bpg-fonts/devel/bpg-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bpg-fonts.spec 25 Feb 2009 15:04:38 -0000 1.1 +++ bpg-fonts.spec 24 Jul 2009 18:23:42 -0000 1.2 @@ -8,7 +8,7 @@ Name: %{fontname}-fonts Summary: Georgian Unicode fonts Version: %{common_ver} -Release: 5%{?dist} +Release: 6%{?dist} # Font exception # See: http://groups.google.com/group/bpg-fonts/web/gpl-gnu-license # No version of the GPL is specified. @@ -295,6 +295,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090205-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Tom "spot" Callaway 20090205-5 - take & out of filename From jkeating at fedoraproject.org Fri Jul 24 18:24:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:24:02 +0000 (UTC) Subject: rpms/bpython/devel bpython.spec,1.8,1.9 Message-ID: <20090724182402.1C62D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bpython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7998 Modified Files: bpython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bpython.spec =================================================================== RCS file: /cvs/pkgs/rpms/bpython/devel/bpython.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bpython.spec 18 May 2009 08:03:29 -0000 1.8 +++ bpython.spec 24 Jul 2009 18:24:01 -0000 1.9 @@ -3,7 +3,7 @@ Name: bpython Summary: Fancy curses interface to the Python interactive interpreter Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.noiseforfree.com/bpython/ Group: Development/Libraries License: MIT @@ -57,6 +57,9 @@ operating systems. It has the following #{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Terje Rosten - 0.8.0-1 - 0.8.0 From jkeating at fedoraproject.org Fri Jul 24 18:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:24:18 +0000 (UTC) Subject: rpms/brandy/devel brandy.spec,1.5,1.6 Message-ID: <20090724182418.9137811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brandy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8197 Modified Files: brandy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brandy.spec =================================================================== RCS file: /cvs/pkgs/rpms/brandy/devel/brandy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- brandy.spec 24 Feb 2009 05:46:15 -0000 1.5 +++ brandy.spec 24 Jul 2009 18:24:17 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Brandy - A BBC BASIC interpreter for Linux Name: brandy Version: 1.0.19 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Development/Tools Source: http://jaguar.orpheusweb.co.uk/%{name}_119.tgz @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}-%{version}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.19-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.19-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cebbert at fedoraproject.org Fri Jul 24 18:24:28 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 24 Jul 2009 18:24:28 +0000 (UTC) Subject: rpms/kernel/devel Makefile, 1.106, 1.107 config-debug, 1.26, 1.27 config-generic, 1.311, 1.312 config-nodebug, 1.35, 1.36 kernel.spec, 1.1653, 1.1654 Message-ID: <20090724182428.534D011C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8249 Modified Files: Makefile config-debug config-generic config-nodebug kernel.spec Log Message: Enable CONFIG_DEBUG_KOBJECT in debug kernels. (#513606) Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/Makefile,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- Makefile 30 Jun 2009 21:05:00 -0000 1.106 +++ Makefile 24 Jul 2009 18:24:27 -0000 1.107 @@ -72,6 +72,7 @@ debug: @perl -pi -e 's/# CONFIG_B43LEGACY_DEBUG is not set/CONFIG_B43LEGACY_DEBUG=y/' config-generic @perl -pi -e 's/# CONFIG_MMIOTRACE is not set/CONFIG_MMIOTRACE=y/' config-nodebug @perl -pi -e 's/CONFIG_STRIP_ASM_SYMS=y/# CONFIG_STRIP_ASM_SYMS is not set/' config-nodebug + @perl -pi -e 's/# CONFIG_DEBUG_KOBJECT is not set/CONFIG_DEBUG_KOBJECT=y/' config-nodebug @# just in case we're going from extremedebug -> debug @perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug @@ -118,6 +119,7 @@ release: @perl -pi -e 's/CONFIG_B43LEGACY_DEBUG=y/# CONFIG_B43LEGACY_DEBUG is not set/' config-generic @perl -pi -e 's/CONFIG_MMIOTRACE=y/# CONFIG_MMIOTRACE is not set/' config-nodebug @perl -pi -e 's/# CONFIG_STRIP_ASM_SYMS is not set/CONFIG_STRIP_ASM_SYMS=y/' config-nodebug + @perl -pi -e 's/CONFIG_DEBUG_KOBJECT=y/# CONFIG_DEBUG_KOBJECT is not set/' config-nodebug @perl -pi -e 's/CONFIG_NR_CPUS=512/CONFIG_NR_CPUS=64/' config-x86_64-generic Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-debug,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- config-debug 30 Jun 2009 21:05:00 -0000 1.26 +++ config-debug 24 Jul 2009 18:24:28 -0000 1.27 @@ -51,3 +51,4 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y +CONFIG_DEBUG_KOBJECT=y Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.311 retrieving revision 1.312 diff -u -p -r1.311 -r1.312 --- config-generic 23 Jul 2009 18:25:22 -0000 1.311 +++ config-generic 24 Jul 2009 18:24:28 -0000 1.312 @@ -97,7 +97,6 @@ CONFIG_ISA=y # CONFIG_EISA is not set # CONFIG_MCA is not set # CONFIG_SCx200 is not set -# CONFIG_DEBUG_KOBJECT is not set # # PCMCIA/CardBus support Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-nodebug,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- config-nodebug 30 Jun 2009 21:05:00 -0000 1.35 +++ config-nodebug 24 Jul 2009 18:24:28 -0000 1.36 @@ -50,3 +50,4 @@ CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y +CONFIG_DEBUG_KOBJECT=y Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1653 retrieving revision 1.1654 diff -u -p -r1.1653 -r1.1654 --- kernel.spec 24 Jul 2009 14:43:45 -0000 1.1653 +++ kernel.spec 24 Jul 2009 18:24:28 -0000 1.1654 @@ -1890,6 +1890,9 @@ fi # and build. %changelog +* Fri Jul 24 2009 Chuck Ebbert +- Enable CONFIG_DEBUG_KOBJECT in debug kernels. (#513606) + * Thu Jul 23 2009 Kyle McMartin - perf BuildRequires binutils-devel now. From jkeating at fedoraproject.org Fri Jul 24 18:24:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:24:34 +0000 (UTC) Subject: rpms/brasero/devel brasero.spec,1.51,1.52 Message-ID: <20090724182434.48A9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8407 Modified Files: brasero.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- brasero.spec 14 Jul 2009 05:08:01 -0000 1.51 +++ brasero.spec 24 Jul 2009 18:24:34 -0000 1.52 @@ -1,7 +1,7 @@ Name: brasero Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gnome CD/DVD burning application Group: Applications/Multimedia License: GPLv2+ @@ -202,6 +202,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 18:24:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:24:48 +0000 (UTC) Subject: rpms/brazil/devel brazil.spec,1.4,1.5 Message-ID: <20090724182448.D4E5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brazil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8581 Modified Files: brazil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brazil.spec =================================================================== RCS file: /cvs/pkgs/rpms/brazil/devel/brazil.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- brazil.spec 27 Jun 2009 12:47:35 -0000 1.4 +++ brazil.spec 24 Jul 2009 18:24:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: brazil Version: 2.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Extremely small footprint Java HTTP stack Group: Development/Libraries License: SPL @@ -102,6 +102,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Mat Booth 2.3-5 - Drop support for GCJ ahead of time compilation. From jkeating at fedoraproject.org Fri Jul 24 18:25:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:25:06 +0000 (UTC) Subject: rpms/brettfont-fonts/devel brettfont-fonts.spec,1.6,1.7 Message-ID: <20090724182506.523D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brettfont-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8750 Modified Files: brettfont-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brettfont-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/brettfont-fonts/devel/brettfont-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- brettfont-fonts.spec 9 Mar 2009 04:41:54 -0000 1.6 +++ brettfont-fonts.spec 24 Jul 2009 18:25:06 -0000 1.7 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 20080506 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A handwriting font Group: User Interface/X @@ -44,6 +44,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080506-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Jon Stanley - 20080506-5 - Update to new packaging guidelines From mtasaka at fedoraproject.org Fri Jul 24 18:25:19 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:25:19 +0000 (UTC) Subject: rpms/mecab-ipadic/devel mecab-ipadic.spec,1.6,1.7 Message-ID: <20090724182519.9C7EF11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab-ipadic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8910 Modified Files: mecab-ipadic.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.7.0.20070801-3 - F-12: Mass rebuild Index: mecab-ipadic.spec =================================================================== RCS file: /cvs/extras/rpms/mecab-ipadic/devel/mecab-ipadic.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mecab-ipadic.spec 23 Feb 2009 22:48:26 -0000 1.6 +++ mecab-ipadic.spec 24 Jul 2009 18:25:19 -0000 1.7 @@ -13,7 +13,7 @@ Name: mecab-ipadic Version: %{majorver}.%{date} -Release: 2%{?dist} +Release: 3%{?dist} Summary: IPA dictionary for MeCab Group: Applications/Text @@ -112,6 +112,9 @@ fi %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.7.0.20070801-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 2.7.0.20070801-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:25:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:25:23 +0000 (UTC) Subject: rpms/bridge-utils/devel bridge-utils.spec,1.30,1.31 Message-ID: <20090724182523.C9EA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bridge-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8994 Modified Files: bridge-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bridge-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/bridge-utils/devel/bridge-utils.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- bridge-utils.spec 24 Feb 2009 05:50:00 -0000 1.30 +++ bridge-utils.spec 24 Jul 2009 18:25:23 -0000 1.31 @@ -1,7 +1,7 @@ Summary: Utilities for configuring the linux ethernet bridge Name: bridge-utils Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ URL: http://bridge.sourceforge.net/ Group: System Environment/Base @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/brctl.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:25:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:25:41 +0000 (UTC) Subject: rpms/brltty/devel brltty.spec,1.34,1.35 Message-ID: <20090724182541.9CB4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brltty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9295 Modified Files: brltty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brltty.spec =================================================================== RCS file: /cvs/pkgs/rpms/brltty/devel/brltty.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- brltty.spec 12 May 2009 13:22:00 -0000 1.34 +++ brltty.spec 24 Jul 2009 18:25:41 -0000 1.35 @@ -9,7 +9,7 @@ Name: brltty Version: %{pkg_version} -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://mielke.cc/brltty/ @@ -226,6 +226,9 @@ exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Stepan Kasal - 3.10-5 - rebuild after java-1.5.0-gcj rebuild From jkeating at fedoraproject.org Fri Jul 24 18:25:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:25:57 +0000 (UTC) Subject: rpms/bro/devel bro.spec,1.4,1.5 Message-ID: <20090724182557.8472011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9481 Modified Files: bro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bro.spec =================================================================== RCS file: /cvs/pkgs/rpms/bro/devel/bro.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- bro.spec 24 Feb 2009 05:52:08 -0000 1.4 +++ bro.spec 24 Jul 2009 18:25:56 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Open-source, Unix-based Network Intrusion Detection System Name: bro Version: 1.4 -Release: 0.4.%{snapshot}svn%{?dist} +Release: 0.5.%{snapshot}svn%{?dist} License: BSD Group: Applications/Internet URL: http://bro-ids.org @@ -115,6 +115,9 @@ fi %{_localstatedir}/lib/bro %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-0.5.20080804svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.4-0.4.20080804svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:26:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:26:10 +0000 (UTC) Subject: rpms/brutus-keyring/devel brutus-keyring.spec,1.6,1.7 Message-ID: <20090724182610.92FF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/brutus-keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9692 Modified Files: brutus-keyring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: brutus-keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/brutus-keyring/devel/brutus-keyring.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- brutus-keyring.spec 24 Feb 2009 05:53:02 -0000 1.6 +++ brutus-keyring.spec 24 Jul 2009 18:26:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: brutus-keyring Version: 0.9.30 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Small keyring daemon License: GPLv3+ @@ -92,6 +92,9 @@ rm -rf %{buildroot} %{_datadir}/idl/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 18:26:26 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:26:26 +0000 (UTC) Subject: rpms/mecab-java/devel mecab-java.spec,1.11,1.12 Message-ID: <20090724182626.9D15111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9884 Modified Files: mecab-java.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 - F-12: Mass rebuild Index: mecab-java.spec =================================================================== RCS file: /cvs/extras/rpms/mecab-java/devel/mecab-java.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mecab-java.spec 3 Jun 2009 19:46:27 -0000 1.11 +++ mecab-java.spec 24 Jul 2009 18:26:26 -0000 1.12 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define relnumber 2 +%define relnumber 3 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -67,6 +67,9 @@ export JAVA=%{java} %{_javadir}/MeCab.jar %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.2.pre3 - 0.98pre3 From jkeating at fedoraproject.org Fri Jul 24 18:26:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:26:26 +0000 (UTC) Subject: rpms/bsd-games/devel bsd-games.spec,1.21,1.22 Message-ID: <20090724182626.AAF7D11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bsd-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9898 Modified Files: bsd-games.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bsd-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/bsd-games/devel/bsd-games.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- bsd-games.spec 24 Feb 2009 05:54:03 -0000 1.21 +++ bsd-games.spec 24 Jul 2009 18:26:26 -0000 1.22 @@ -4,7 +4,7 @@ Summary: Collection of text-based games Name: bsd-games Version: 2.17 -Release: 27%{?dist} +Release: 28%{?dist} License: BSD and BSD with advertising Group: Amusements/Games URL: ftp://metalab.unc.edu/pub/Linux/games/ @@ -176,6 +176,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING ChangeLog ChangeLog.0 THANKS YEAR2000 README.hunt trek/USD.doc/trek.me %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.17-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.17-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:26:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:26:40 +0000 (UTC) Subject: rpms/bsdiff/devel bsdiff.spec,1.6,1.7 Message-ID: <20090724182640.9847B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bsdiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10123 Modified Files: bsdiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bsdiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/bsdiff/devel/bsdiff.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bsdiff.spec 24 Feb 2009 05:54:59 -0000 1.6 +++ bsdiff.spec 24 Jul 2009 18:26:40 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Binary diff/patch utility Name: bsdiff Version: 4.3 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: Development/Tools Source0: http://www.daemonology.net/bsdiff/bsdiff-%{version}.tar.gz @@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:26:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:26:53 +0000 (UTC) Subject: rpms/bsf/devel bsf.spec,1.19,1.20 Message-ID: <20090724182653.B3F0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10296 Modified Files: bsf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bsf.spec =================================================================== RCS file: /cvs/pkgs/rpms/bsf/devel/bsf.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- bsf.spec 24 Feb 2009 05:55:51 -0000 1.19 +++ bsf.spec 24 Jul 2009 18:26:53 -0000 1.20 @@ -34,7 +34,7 @@ Name: bsf Version: 2.3.0 -Release: 14%{?dist} +Release: 15%{?dist} Epoch: 0 Summary: Bean Scripting Framework License: ASL 1.1 @@ -166,6 +166,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.3.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:2.3.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:27:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:27:07 +0000 (UTC) Subject: rpms/bsh/devel bsh.spec,1.19,1.20 Message-ID: <20090724182707.0EB0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10490 Modified Files: bsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/bsh/devel/bsh.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- bsh.spec 24 Feb 2009 05:56:44 -0000 1.19 +++ bsh.spec 24 Jul 2009 18:27:06 -0000 1.20 @@ -32,7 +32,7 @@ Name: bsh Version: 1.3.0 -Release: 14%{?dist} +Release: 15%{?dist} Epoch: 0 Summary: Lightweight Scripting for Java License: SPL or LGPLv2+ @@ -349,6 +349,9 @@ exit 0 %{_datadir}/icons/hicolor/*x*/apps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.3.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.3.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:27:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:27:21 +0000 (UTC) Subject: rpms/btanks/devel btanks.spec,1.2,1.3 Message-ID: <20090724182721.0B40111C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/btanks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10647 Modified Files: btanks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: btanks.spec =================================================================== RCS file: /cvs/pkgs/rpms/btanks/devel/btanks.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- btanks.spec 3 Apr 2009 16:57:05 -0000 1.2 +++ btanks.spec 24 Jul 2009 18:27:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: btanks Version: 0.8.7686 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Funny battle on your desk Summary(ru): ??????? ????????? ????? ?? ????? @@ -158,6 +158,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.7686-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 Alexey Torkhov - 0.8.7686-10 - Make btanks-data noarch - Rename libbt.so to libbtanks.so because of conflict with blackbox From jkeating at fedoraproject.org Fri Jul 24 18:27:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:27:36 +0000 (UTC) Subject: rpms/bti/devel bti.spec,1.6,1.7 Message-ID: <20090724182736.D3B3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bti/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10842 Modified Files: bti.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bti.spec =================================================================== RCS file: /cvs/pkgs/rpms/bti/devel/bti.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bti.spec 13 Mar 2009 05:37:01 -0000 1.6 +++ bti.spec 24 Jul 2009 18:27:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: bti Version: 015 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bash Twitter/Identi.ca Idiocy Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 015-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Michel Salim - 015-1 - Update to 015 From jkeating at fedoraproject.org Fri Jul 24 18:27:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:27:51 +0000 (UTC) Subject: rpms/btrfs-progs/devel btrfs-progs.spec,1.17,1.18 Message-ID: <20090724182751.2919311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/btrfs-progs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10995 Modified Files: btrfs-progs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: btrfs-progs.spec =================================================================== RCS file: /cvs/pkgs/rpms/btrfs-progs/devel/btrfs-progs.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- btrfs-progs.spec 15 Jul 2009 15:24:34 -0000 1.17 +++ btrfs-progs.spec 24 Jul 2009 18:27:51 -0000 1.18 @@ -1,6 +1,6 @@ Name: btrfs-progs Version: 0.19 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Userspace programs for btrfs Group: System Environment/Base @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/mkfs.btrfs.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Josef Bacik 0.19-5 - add e2fsprogs-devel back to BuildRequires since its needed for the converter From jkeating at fedoraproject.org Fri Jul 24 18:28:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:28:06 +0000 (UTC) Subject: rpms/bubblemon/devel bubblemon.spec,1.8,1.9 Message-ID: <20090724182806.B044611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bubblemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11169 Modified Files: bubblemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bubblemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/bubblemon/devel/bubblemon.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bubblemon.spec 24 Feb 2009 05:59:23 -0000 1.8 +++ bubblemon.spec 24 Jul 2009 18:28:06 -0000 1.9 @@ -1,6 +1,6 @@ Name: bubblemon Version: 1.46 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A system monitoring dockapp Group: User Interface/X @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/bubblemon %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.46-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.46-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:28:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:28:21 +0000 (UTC) Subject: rpms/buffer/devel buffer.spec,1.5,1.6 Message-ID: <20090724182821.E605711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/buffer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11342 Modified Files: buffer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: buffer.spec =================================================================== RCS file: /cvs/pkgs/rpms/buffer/devel/buffer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- buffer.spec 24 Feb 2009 06:00:19 -0000 1.5 +++ buffer.spec 24 Jul 2009 18:28:21 -0000 1.6 @@ -7,7 +7,7 @@ Summary(fr): Ce programme acc?l?re Name: buffer Version: 1.19 -Release: 5%{dist} +Release: 6%{dist} License: GPL+ Group: Applications/Archiving Url: http://hello-penguin.com/software/buffer @@ -52,6 +52,9 @@ install -p -m 644 -D buffer.man $RPM_BUI %{_mandir}/man1/buffer.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.19-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:28:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:28:38 +0000 (UTC) Subject: rpms/bug-buddy/devel bug-buddy.spec,1.127,1.128 Message-ID: <20090724182839.01BB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bug-buddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11541 Modified Files: bug-buddy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bug-buddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/bug-buddy/devel/bug-buddy.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- bug-buddy.spec 19 Jul 2009 03:35:28 -0000 1.127 +++ bug-buddy.spec 24 Jul 2009 18:28:38 -0000 1.128 @@ -6,7 +6,7 @@ Name: bug-buddy Version: 2.27.1 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Crash reporting utility for the GNOME desktop License: GPLv2 and BSD @@ -145,6 +145,9 @@ fi %{_sysconfdir}/gconf/schemas/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen - 1:2.27.1-3 - Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:28:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:28:53 +0000 (UTC) Subject: rpms/bugzilla/devel bugzilla.spec,1.26,1.27 Message-ID: <20090724182853.928A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11759 Modified Files: bugzilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/bugzilla.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- bugzilla.spec 8 Jul 2009 19:18:50 -0000 1.26 +++ bugzilla.spec 24 Jul 2009 18:28:53 -0000 1.27 @@ -6,7 +6,7 @@ URL: http://www.bugzilla.org/ Name: bugzilla Version: 3.2.4 Group: Applications/Publishing -Release: 1%{?dist} +Release: 2%{?dist} License: MPLv1.1 Source0: http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar.gz Source1: bugzilla-httpd-conf @@ -143,6 +143,9 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/contrib %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Itamar Reis Peixoto - 3.2.4-1 - fix https://bugzilla.mozilla.org/show_bug.cgi?id=495257 From jkeating at fedoraproject.org Fri Jul 24 18:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:29:07 +0000 (UTC) Subject: rpms/buildbot/devel buildbot.spec,1.15,1.16 Message-ID: <20090724182907.ACDA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/buildbot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11941 Modified Files: buildbot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: buildbot.spec =================================================================== RCS file: /cvs/pkgs/rpms/buildbot/devel/buildbot.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- buildbot.spec 17 Jul 2009 07:33:19 -0000 1.15 +++ buildbot.spec 24 Jul 2009 18:29:07 -0000 1.16 @@ -4,7 +4,7 @@ Name: buildbot Version: 0.7.11p1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Build/test automation system Group: Development/Tools @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.11p1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Gianluca Sforna - 0.7.11p1-1 - New upstream release - Change Source0 URI From jkeating at fedoraproject.org Fri Jul 24 18:29:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:29:21 +0000 (UTC) Subject: rpms/bullet/devel bullet.spec,1.1,1.2 Message-ID: <20090724182921.BDD8011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bullet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12117 Modified Files: bullet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bullet.spec =================================================================== RCS file: /cvs/pkgs/rpms/bullet/devel/bullet.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bullet.spec 27 Jun 2009 21:39:49 -0000 1.1 +++ bullet.spec 24 Jul 2009 18:29:21 -0000 1.2 @@ -1,6 +1,6 @@ Name: bullet Version: 2.74 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D Collision Detection and Rigid Body Dynamics Library Group: Development/Libraries License: zlib and MIT and BSD @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.74-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Thomas Kowaliczek - 2.74-1 - Updatet to version 2.74 From jkeating at fedoraproject.org Fri Jul 24 18:29:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:29:34 +0000 (UTC) Subject: rpms/bunny/devel bunny.spec,1.3,1.4 Message-ID: <20090724182934.AE6D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bunny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12276 Modified Files: bunny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bunny.spec =================================================================== RCS file: /cvs/pkgs/rpms/bunny/devel/bunny.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bunny.spec 24 Feb 2009 06:04:00 -0000 1.3 +++ bunny.spec 24 Jul 2009 18:29:34 -0000 1.4 @@ -1,6 +1,6 @@ Name: bunny Version: 0.93 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Instrumented C code security fuzzer Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.93-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.93-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:29:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:29:48 +0000 (UTC) Subject: rpms/buoh/devel buoh.spec,1.26,1.27 Message-ID: <20090724182948.01ED711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/buoh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12417 Modified Files: buoh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: buoh.spec =================================================================== RCS file: /cvs/pkgs/rpms/buoh/devel/buoh.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- buoh.spec 24 Feb 2009 06:04:53 -0000 1.26 +++ buoh.spec 24 Jul 2009 18:29:47 -0000 1.27 @@ -2,7 +2,7 @@ Name: buoh License: GPLv2+ Group: Applications/Internet Version: 0.8.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Online comics reader URL: http://buoh.steve-o.org/ Source: http://buoh.steve-o.org/downloads/buoh-%{version}.tar.bz2 @@ -81,6 +81,9 @@ fi %{_datadir}/icons/hicolor/16x16/apps/buoh.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:30:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:30:02 +0000 (UTC) Subject: rpms/busybox/devel busybox.spec,1.97,1.98 Message-ID: <20090724183002.C3AA911C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/busybox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12609 Modified Files: busybox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: busybox.spec =================================================================== RCS file: /cvs/pkgs/rpms/busybox/devel/busybox.spec,v retrieving revision 1.97 retrieving revision 1.98 diff -u -p -r1.97 -r1.98 --- busybox.spec 12 Jun 2009 11:33:36 -0000 1.97 +++ busybox.spec 24 Jul 2009 18:30:02 -0000 1.98 @@ -1,7 +1,7 @@ Summary: Statically linked binary providing simplified versions of system commands Name: busybox Version: 1.14.1 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2 Group: System Environment/Shells @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/busybox.petitboot %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.14.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Ivana Varekova - 1:1.14.1-2 - add new options to readlink - patch created by Denys Valsenko From mtasaka at fedoraproject.org Fri Jul 24 18:30:18 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:30:18 +0000 (UTC) Subject: rpms/mecab-jumandic/devel mecab-jumandic.spec,1.6,1.7 Message-ID: <20090724183018.7391511C04D7@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab-jumandic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12814 Modified Files: mecab-jumandic.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 5.1.20070304-4 - F-12: Mass rebuild Index: mecab-jumandic.spec =================================================================== RCS file: /cvs/extras/rpms/mecab-jumandic/devel/mecab-jumandic.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mecab-jumandic.spec 23 Feb 2009 22:48:27 -0000 1.6 +++ mecab-jumandic.spec 24 Jul 2009 18:30:18 -0000 1.7 @@ -9,7 +9,7 @@ Name: mecab-jumandic Version: %{majorver}.%{date} -Release: 3%{?dist} +Release: 4%{?dist} Summary: JUMAN dictorionary for MeCab Group: Applications/Text @@ -103,6 +103,9 @@ fi %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 5.1.20070304-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 5.1.20070304-3 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:30:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:30:18 +0000 (UTC) Subject: rpms/bwbar/devel bwbar.spec,1.11,1.12 Message-ID: <20090724183018.C74FE11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bwbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12827 Modified Files: bwbar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bwbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/bwbar/devel/bwbar.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- bwbar.spec 24 Feb 2009 06:06:39 -0000 1.11 +++ bwbar.spec 24 Jul 2009 18:30:18 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Generate a readout of the current bandwidth use Name: bwbar Version: 1.2.3 -Release: 4 +Release: 5 License: GPLv2+ Group: System Environment/Base Source0: http://www.kernel.org/pub/software/web/bwbar/bwbar-1.2.3.tar.bz2 @@ -69,6 +69,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:30:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:30:36 +0000 (UTC) Subject: rpms/bwidget/devel bwidget.spec,1.7,1.8 Message-ID: <20090724183036.0E64311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bwidget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13093 Modified Files: bwidget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bwidget.spec =================================================================== RCS file: /cvs/pkgs/rpms/bwidget/devel/bwidget.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bwidget.spec 24 Feb 2009 06:07:30 -0000 1.7 +++ bwidget.spec 24 Jul 2009 18:30:35 -0000 1.8 @@ -3,7 +3,7 @@ Name: bwidget Version: 1.8.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Extended widget set for Tk Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %doc BWman/*.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:30:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:30:50 +0000 (UTC) Subject: rpms/bwm-ng/devel bwm-ng.spec,1.9,1.10 Message-ID: <20090724183050.3D6B211C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bwm-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13274 Modified Files: bwm-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bwm-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/bwm-ng/devel/bwm-ng.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- bwm-ng.spec 24 Feb 2009 06:08:22 -0000 1.9 +++ bwm-ng.spec 24 Jul 2009 18:30:50 -0000 1.10 @@ -2,7 +2,7 @@ Summary: Bandwidth Monitor NG Name: bwm-ng Version: 0.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/bwm-ng.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:31:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:31:05 +0000 (UTC) Subject: rpms/byacc/devel byacc.spec,1.9,1.10 Message-ID: <20090724183105.2F68511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/byacc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13473 Modified Files: byacc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: byacc.spec =================================================================== RCS file: /cvs/pkgs/rpms/byacc/devel/byacc.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- byacc.spec 24 Feb 2009 06:09:14 -0000 1.9 +++ byacc.spec 24 Jul 2009 18:31:05 -0000 1.10 @@ -3,7 +3,7 @@ Summary: Berkeley Yacc, a parser generator Name: byacc Version: 1.9.%{byaccdate} -Release: 5%{?dist} +Release: 6%{?dist} License: Public Domain Group: Development/Tools URL: http://invisible-island.net/byacc/byacc.html @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/byacc.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.20070509-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.9.20070509-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:31:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:31:18 +0000 (UTC) Subject: rpms/byaccj/devel byaccj.spec,1.6,1.7 Message-ID: <20090724183118.F18C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/byaccj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13656 Modified Files: byaccj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: byaccj.spec =================================================================== RCS file: /cvs/pkgs/rpms/byaccj/devel/byaccj.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- byaccj.spec 9 Jun 2009 19:05:46 -0000 1.6 +++ byaccj.spec 24 Jul 2009 18:31:18 -0000 1.7 @@ -31,7 +31,7 @@ Summary: Parser Generator with Java Extension Name: byaccj Version: 1.14 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 0 License: Public Domain URL: http://byaccj.sourceforge.net/ @@ -90,6 +90,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Ville Skytt? - 0:1.14-4 - Build with %%{optflags} (#500022). From jkeating at fedoraproject.org Fri Jul 24 18:31:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:31:32 +0000 (UTC) Subject: rpms/bygfoot/devel bygfoot.spec,1.8,1.9 Message-ID: <20090724183132.BED1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bygfoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13823 Modified Files: bygfoot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bygfoot.spec =================================================================== RCS file: /cvs/pkgs/rpms/bygfoot/devel/bygfoot.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- bygfoot.spec 24 Feb 2009 06:11:07 -0000 1.8 +++ bygfoot.spec 24 Jul 2009 18:31:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: bygfoot Version: 2.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Bygfoot Football Manager Group: Amusements/Games License: GPLv2 @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/bygfoot %{_datadir}/applications/fedora-bygfoot.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:31:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:31:46 +0000 (UTC) Subject: rpms/bytelist/devel bytelist.spec,1.7,1.8 Message-ID: <20090724183146.DC47F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bytelist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13985 Modified Files: bytelist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bytelist.spec =================================================================== RCS file: /cvs/pkgs/rpms/bytelist/devel/bytelist.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- bytelist.spec 24 Feb 2009 06:11:59 -0000 1.7 +++ bytelist.spec 24 Jul 2009 18:31:46 -0000 1.8 @@ -1,6 +1,6 @@ Name: bytelist Version: 1.0.1 -Release: 0.2.svn9177%{?dist} +Release: 0.3.svn9177%{?dist} Summary: A java library for lists of bytes Group: Development/Libraries License: CPL or GPLv2+ or LGPLv2+ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-0.3.svn9177 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-0.2.svn9177 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:32:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:32:03 +0000 (UTC) Subject: rpms/byzanz/devel byzanz.spec,1.15,1.16 Message-ID: <20090724183203.9206C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/byzanz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14174 Modified Files: byzanz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: byzanz.spec =================================================================== RCS file: /cvs/pkgs/rpms/byzanz/devel/byzanz.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- byzanz.spec 24 Feb 2009 06:12:49 -0000 1.15 +++ byzanz.spec 24 Jul 2009 18:32:03 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A desktop recorder Name: byzanz Version: 0.1.1 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.freedesktop.org/~company/byzanz/ @@ -90,6 +90,9 @@ fi %{_mandir}/man1/byzanz-record.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:32:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:32:19 +0000 (UTC) Subject: rpms/bzflag/devel bzflag.spec,1.50,1.51 Message-ID: <20090724183219.484AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bzflag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14394 Modified Files: bzflag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bzflag.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzflag/devel/bzflag.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- bzflag.spec 2 Mar 2009 16:01:53 -0000 1.50 +++ bzflag.spec 24 Jul 2009 18:32:19 -0000 1.51 @@ -33,7 +33,7 @@ Summary: 3D multi-player tank battle game Name: bzflag Version: 2.0.12 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2 Group: Amusements/Games URL: http://bzflag.org @@ -149,6 +149,9 @@ rm -rf %{buildroot} %{_mandir}/man*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Nils Philippsen 2.0.12-5 - fix building with gcc-4.4 From jkeating at fedoraproject.org Fri Jul 24 18:32:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:32:34 +0000 (UTC) Subject: rpms/bzip2/devel bzip2.spec,1.43,1.44 Message-ID: <20090724183234.271AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14591 Modified Files: bzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzip2/devel/bzip2.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- bzip2.spec 17 Mar 2009 07:29:21 -0000 1.43 +++ bzip2.spec 24 Jul 2009 18:32:34 -0000 1.44 @@ -2,7 +2,7 @@ Summary: A file compression utility Name: bzip2 Version: 1.0.5 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Applications/File URL: http://www.bzip.org/ @@ -105,6 +105,9 @@ rm -rf ${RPM_BUILD_ROOT} /%{_libdir}/*so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Ivana Varekova 1.0.5-5 - remove static library From jkeating at fedoraproject.org Fri Jul 24 18:32:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:32:50 +0000 (UTC) Subject: rpms/bzr/devel bzr.spec,1.68,1.69 Message-ID: <20090724183250.21EB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bzr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14756 Modified Files: bzr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bzr.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr/devel/bzr.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- bzr.spec 20 Jul 2009 18:01:39 -0000 1.68 +++ bzr.spec 24 Jul 2009 18:32:50 -0000 1.69 @@ -8,7 +8,7 @@ # release: rpm subrelease (0.N for rc candidates, N for stable releases) %define bzrmajor 1.17 #define bzrrc rc1 -%define release 1 +%define release 2 # Magics to get the dots in Release string correct per the above %define subrelease %{?bzrrc:.}%{?bzrrc} @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Henrik Nordstrom - 1.17-1 - Upgade to 1.17 From jkeating at fedoraproject.org Fri Jul 24 18:33:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:33:05 +0000 (UTC) Subject: rpms/bzr-gtk/devel bzr-gtk.spec,1.41,1.42 Message-ID: <20090724183305.2385911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bzr-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14939 Modified Files: bzr-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bzr-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzr-gtk/devel/bzr-gtk.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- bzr-gtk.spec 10 Jul 2009 21:16:42 -0000 1.41 +++ bzr-gtk.spec 24 Jul 2009 18:33:04 -0000 1.42 @@ -8,7 +8,7 @@ Name: bzr-gtk Version: 0.96.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bazaar plugin for GTK+ interfaces to most Bazaar operations Group: Development/Tools @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.96.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Toshio Kuratomi - 0.96.2-1 - Update to work with bzr-1.16 - Update rhel version reqs From jkeating at fedoraproject.org Fri Jul 24 18:33:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:33:19 +0000 (UTC) Subject: rpms/bzrtools/devel bzrtools.spec,1.49,1.50 Message-ID: <20090724183319.E8B1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bzrtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15094 Modified Files: bzrtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bzrtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/bzrtools/devel/bzrtools.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- bzrtools.spec 13 Jul 2009 23:50:22 -0000 1.49 +++ bzrtools.spec 24 Jul 2009 18:33:19 -0000 1.50 @@ -10,7 +10,7 @@ Name: bzrtools Version: %{bzrver}.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of utilities and plugins for Bazaar-NG Group: Development/Tools @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.17.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Henrik Nordstrom - 1.17.0-1 - Update to 1.17.0 From jkeating at fedoraproject.org Fri Jul 24 18:33:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:33:34 +0000 (UTC) Subject: rpms/c-ares/devel c-ares.spec,1.15,1.16 Message-ID: <20090724183334.9024311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/c-ares/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15287 Modified Files: c-ares.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: c-ares.spec =================================================================== RCS file: /cvs/pkgs/rpms/c-ares/devel/c-ares.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- c-ares.spec 22 Jul 2009 22:54:50 -0000 1.15 +++ c-ares.spec 24 Jul 2009 18:33:34 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A library that performs asynchronous DNS operations Name: c-ares Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://daniel.haxx.se/projects/c-ares/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/ares_* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 1.6.0-1 - update to 1.6.0 From jkeating at fedoraproject.org Fri Jul 24 18:33:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:33:48 +0000 (UTC) Subject: rpms/c2050/devel c2050.spec,1.6,1.7 Message-ID: <20090724183348.F11FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/c2050/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15427 Modified Files: c2050.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: c2050.spec =================================================================== RCS file: /cvs/pkgs/rpms/c2050/devel/c2050.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- c2050.spec 24 Feb 2009 06:19:17 -0000 1.6 +++ c2050.spec 24 Jul 2009 18:33:48 -0000 1.7 @@ -1,6 +1,6 @@ Name: c2050 Version: 0.3b -Release: 2%{?dist} +Release: 3%{?dist} Summary: Converts bitcmyk data to Lexmark 2050 printer language Group: System Environment/Libraries @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3b-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3b-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:34:03 +0000 (UTC) Subject: rpms/c2070/devel c2070.spec,1.5,1.6 Message-ID: <20090724183403.CD79C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/c2070/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15601 Modified Files: c2070.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: c2070.spec =================================================================== RCS file: /cvs/pkgs/rpms/c2070/devel/c2070.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- c2070.spec 24 Feb 2009 06:20:13 -0000 1.5 +++ c2070.spec 24 Jul 2009 18:34:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: c2070 Version: 0.99 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Converts bitcmyk data to Lexmark 2070 printer language Group: System Environment/Libraries @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.99-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:34:22 +0000 (UTC) Subject: rpms/ca-certificates/devel ca-certificates.spec,1.7,1.8 Message-ID: <20090724183422.E14CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ca-certificates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15787 Modified Files: ca-certificates.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ca-certificates.spec =================================================================== RCS file: /cvs/pkgs/rpms/ca-certificates/devel/ca-certificates.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ca-certificates.spec 22 Jul 2009 14:33:22 -0000 1.7 +++ ca-certificates.spec 24 Jul 2009 18:34:22 -0000 1.8 @@ -7,7 +7,7 @@ Summary: The Mozilla CA root certificate bundle Name: ca-certificates Version: 2009 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain Group: System Environment/Base URL: http://www.mozilla.org/ @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{pkidir}/tls/cert.pem %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2009-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Joe Orton 2009-1 - update to certdata.txt r1.53 From jkeating at fedoraproject.org Fri Jul 24 18:34:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:34:41 +0000 (UTC) Subject: rpms/cabal-install/devel cabal-install.spec,1.5,1.6 Message-ID: <20090724183441.EEAD111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cabal-install/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15950 Modified Files: cabal-install.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cabal-install.spec =================================================================== RCS file: /cvs/pkgs/rpms/cabal-install/devel/cabal-install.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cabal-install.spec 17 May 2009 00:27:16 -0000 1.5 +++ cabal-install.spec 24 Jul 2009 18:34:41 -0000 1.6 @@ -3,7 +3,7 @@ Name: cabal-install Version: 0.6.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Haskell package tool Group: Development/Tools @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jens Petersen - 0.6.2-4 - buildrequires ghc-rpm-macros (cabal-0.16) From jkeating at fedoraproject.org Fri Jul 24 18:34:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:34:55 +0000 (UTC) Subject: rpms/cabal2spec/devel cabal2spec.spec,1.14,1.15 Message-ID: <20090724183455.C276C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cabal2spec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16104 Modified Files: cabal2spec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cabal2spec.spec =================================================================== RCS file: /cvs/pkgs/rpms/cabal2spec/devel/cabal2spec.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- cabal2spec.spec 29 May 2009 22:10:01 -0000 1.14 +++ cabal2spec.spec 24 Jul 2009 18:34:55 -0000 1.15 @@ -1,6 +1,6 @@ Name: cabal2spec Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for creating .spec files for Haskell Cabal Packages Group: Development/Languages @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Jens Petersen - 0.17-1 - let -devel packages provide ghc-pkg_name for convenience From jkeating at fedoraproject.org Fri Jul 24 18:35:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:35:09 +0000 (UTC) Subject: rpms/cabextract/devel cabextract.spec,1.15,1.16 Message-ID: <20090724183509.B99BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cabextract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16250 Modified Files: cabextract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cabextract.spec =================================================================== RCS file: /cvs/pkgs/rpms/cabextract/devel/cabextract.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cabextract.spec 24 Feb 2009 06:22:02 -0000 1.15 +++ cabextract.spec 24 Jul 2009 18:35:09 -0000 1.16 @@ -1,7 +1,7 @@ Name: cabextract Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility for extracting cabinet (.cab) archives Group: Applications/Archiving @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:35:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:35:24 +0000 (UTC) Subject: rpms/cachefilesd/devel cachefilesd.spec,1.23,1.24 Message-ID: <20090724183524.2359B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cachefilesd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16449 Modified Files: cachefilesd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cachefilesd.spec =================================================================== RCS file: /cvs/pkgs/rpms/cachefilesd/devel/cachefilesd.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- cachefilesd.spec 24 Feb 2009 06:22:55 -0000 1.23 +++ cachefilesd.spec 24 Jul 2009 18:35:23 -0000 1.24 @@ -1,6 +1,6 @@ Name: cachefilesd Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CacheFiles userspace management daemon Group: System Environment/Daemons License: GPLv2+ @@ -71,6 +71,9 @@ fi %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:35:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:35:38 +0000 (UTC) Subject: rpms/cacti/devel cacti.spec,1.27,1.28 Message-ID: <20090724183538.539E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cacti/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16642 Modified Files: cacti.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cacti.spec =================================================================== RCS file: /cvs/pkgs/rpms/cacti/devel/cacti.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- cacti.spec 31 Mar 2009 20:11:13 -0000 1.27 +++ cacti.spec 24 Jul 2009 18:35:38 -0000 1.28 @@ -1,6 +1,6 @@ Name: cacti Version: 0.8.7d -Release: 3%{?dist} +Release: 4%{?dist} Summary: An rrd based graphing tool Group: Applications/System @@ -105,6 +105,9 @@ fi %attr(0644,root,root) %{_localstatedir}/lib/%{name}/lib %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.7d-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michael Schwendt - 0.8.7d-3 - Fix unowned cli directory (#473631) From jkeating at fedoraproject.org Fri Jul 24 18:35:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:35:53 +0000 (UTC) Subject: rpms/cadaver/devel cadaver.spec,1.35,1.36 Message-ID: <20090724183553.12C7011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cadaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16828 Modified Files: cadaver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cadaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/cadaver/devel/cadaver.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- cadaver.spec 24 Feb 2009 06:24:43 -0000 1.35 +++ cadaver.spec 24 Jul 2009 18:35:52 -0000 1.36 @@ -1,6 +1,6 @@ Name: cadaver Version: 0.23.2 -Release: 5 +Release: 6 Summary: Command-line WebDAV client License: GPLv2+ Group: Applications/Internet @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.23.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.23.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:36:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:36:06 +0000 (UTC) Subject: rpms/cairo/devel cairo.spec,1.101,1.102 Message-ID: <20090724183606.F38B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17061 Modified Files: cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/cairo/devel/cairo.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- cairo.spec 18 Jun 2009 01:42:41 -0000 1.101 +++ cairo.spec 24 Jul 2009 18:36:06 -0000 1.102 @@ -5,7 +5,7 @@ Summary: A 2D graphics library Name: cairo Version: 1.8.8 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://cairographics.org Source0: http://cairographics.org/releases/%{name}-%{version}.tar.gz License: LGPLv2 or MPLv1.1 @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/cairo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Matthias Clasen 1.8.8-1 - Update to 1.8.8 From jkeating at fedoraproject.org Fri Jul 24 18:36:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:36:21 +0000 (UTC) Subject: rpms/cairo-clock/devel cairo-clock.spec,1.4,1.5 Message-ID: <20090724183621.5771811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cairo-clock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17260 Modified Files: cairo-clock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cairo-clock.spec =================================================================== RCS file: /cvs/pkgs/rpms/cairo-clock/devel/cairo-clock.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cairo-clock.spec 24 Feb 2009 06:26:33 -0000 1.4 +++ cairo-clock.spec 24 Jul 2009 18:36:21 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Cairo-rendered on-screen clock Name: cairo-clock Version: 0.3.4 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://macslow.thepimp.net/?page_id=23 Source0: http://macslow.thepimp.net/projects/%{name}/%{name}-%{version}.tar.gz License: GPLv2 @@ -54,6 +54,9 @@ desktop-file-install \ %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 18:36:27 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:36:27 +0000 (UTC) Subject: rpms/mfiler2/devel mfiler2.spec,1.20,1.21 Message-ID: <20090724183627.19B9711C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mfiler2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17353 Modified Files: mfiler2.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 4.0.9b-4 - F-12: Mass rebuild Index: mfiler2.spec =================================================================== RCS file: /cvs/extras/rpms/mfiler2/devel/mfiler2.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- mfiler2.spec 24 Feb 2009 04:00:47 -0000 1.20 +++ mfiler2.spec 24 Jul 2009 18:36:26 -0000 1.21 @@ -6,7 +6,7 @@ Name: mfiler2 Version: 4.0.9b -Release: 3%{?dist} +Release: 4%{?dist} Summary: Two pane file manager under UNIX console Group: Applications/Editors @@ -99,6 +99,9 @@ This package supports drag and drop usag %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 4.0.9b-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 4.0.9b-3 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:36:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:36:37 +0000 (UTC) Subject: rpms/cairo-java/devel cairo-java.spec,1.49,1.50 Message-ID: <20090724183637.602E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cairo-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17534 Modified Files: cairo-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cairo-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/cairo-java/devel/cairo-java.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- cairo-java.spec 24 Feb 2009 06:27:24 -0000 1.49 +++ cairo-java.spec 24 Jul 2009 18:36:37 -0000 1.50 @@ -1,7 +1,7 @@ Summary: Java bindings for the Cairo library Name: cairo-java Version: 1.0.5 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://java-gnome.sourceforge.net @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:36:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:36:52 +0000 (UTC) Subject: rpms/cairomm/devel cairomm.spec,1.16,1.17 Message-ID: <20090724183652.F0A0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cairomm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17719 Modified Files: cairomm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cairomm.spec =================================================================== RCS file: /cvs/pkgs/rpms/cairomm/devel/cairomm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- cairomm.spec 14 May 2009 20:07:27 -0000 1.16 +++ cairomm.spec 24 Jul 2009 18:36:52 -0000 1.17 @@ -1,7 +1,7 @@ Summary: C++ API for the cairo graphics library Name: cairomm Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.cairographics.org License: LGPLv2+ Group: System Environment/Libraries @@ -62,6 +62,9 @@ find $RPM_BUILD_ROOT -type f -name "*.la %doc ChangeLog docs/reference %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Rick L Vinyard Jr - 1.8.0-1 - Update to 1.8.0 - Added libsigc++20-devel dependency From jkeating at fedoraproject.org Fri Jul 24 18:37:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:37:08 +0000 (UTC) Subject: rpms/cal3d/devel cal3d.spec,1.10,1.11 Message-ID: <20090724183708.7473911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cal3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17896 Modified Files: cal3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cal3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/cal3d/devel/cal3d.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- cal3d.spec 24 Feb 2009 06:29:05 -0000 1.10 +++ cal3d.spec 24 Jul 2009 18:37:08 -0000 1.11 @@ -1,6 +1,6 @@ Name: cal3d Version: 0.11.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Skeletal based 3-D character animation library License: LGPLv2+ @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.11.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:37:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:37:32 +0000 (UTC) Subject: rpms/calamaris/devel calamaris.spec,1.2,1.3 Message-ID: <20090724183732.051B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/calamaris/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18139 Modified Files: calamaris.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: calamaris.spec =================================================================== RCS file: /cvs/pkgs/rpms/calamaris/devel/calamaris.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- calamaris.spec 23 Feb 2009 20:29:05 -0000 1.2 +++ calamaris.spec 24 Jul 2009 18:37:31 -0000 1.3 @@ -4,7 +4,7 @@ Summary: Squid native log format (NLF) analyzer and report generator Name: calamaris Version: 2.59 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://calamaris.cord.de/ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.59-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.59-2 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 18:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:37:50 +0000 (UTC) Subject: rpms/calc/devel calc.spec,1.7,1.8 Message-ID: <20090724183750.2D40811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/calc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18355 Modified Files: calc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: calc.spec =================================================================== RCS file: /cvs/pkgs/rpms/calc/devel/calc.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- calc.spec 24 Feb 2009 06:29:57 -0000 1.7 +++ calc.spec 24 Jul 2009 18:37:49 -0000 1.8 @@ -16,7 +16,7 @@ License: LGPLv2 Name: calc Version: 2.12.2.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Arbitrary precision arithmetic system and calculator Group: Applications/Engineering @@ -217,6 +217,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.2.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.12.2.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:38:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:38:04 +0000 (UTC) Subject: rpms/calcurse/devel calcurse.spec,1.10,1.11 Message-ID: <20090724183804.65A6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/calcurse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18529 Modified Files: calcurse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: calcurse.spec =================================================================== RCS file: /cvs/pkgs/rpms/calcurse/devel/calcurse.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- calcurse.spec 27 Apr 2009 19:38:37 -0000 1.10 +++ calcurse.spec 24 Jul 2009 18:38:03 -0000 1.11 @@ -1,6 +1,6 @@ Name: calcurse Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Text-based personal organizer Group: Applications/Productivity @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jon Ciesla 2.5-1 - Update to 2.5. From jkeating at fedoraproject.org Fri Jul 24 18:38:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:38:22 +0000 (UTC) Subject: rpms/calendar/devel calendar.spec,1.4,1.5 Message-ID: <20090724183822.664B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/calendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18722 Modified Files: calendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: calendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/calendar/devel/calendar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- calendar.spec 9 Apr 2009 19:28:38 -0000 1.4 +++ calendar.spec 24 Jul 2009 18:38:21 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Reminder utility Name: calendar Version: 1.25 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: Applications/Productivity URL: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/calendar @@ -58,6 +58,9 @@ done %{_datadir}/calendar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.25-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 David Cantrell - 1.25-6 - Honor RPM_OPT_FLAGS and fix debuginfo (#494717) From jkeating at fedoraproject.org Fri Jul 24 18:38:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:38:37 +0000 (UTC) Subject: rpms/calf/devel calf.spec,1.3,1.4 Message-ID: <20090724183837.1DD9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/calf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19079 Modified Files: calf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: calf.spec =================================================================== RCS file: /cvs/pkgs/rpms/calf/devel/calf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- calf.spec 15 Jul 2009 05:12:05 -0000 1.3 +++ calf.spec 24 Jul 2009 18:38:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: calf Version: 0.0.18.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Audio plugins pack Group: Applications/Multimedia # The jackhost code is GPLv2+ @@ -160,6 +160,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_libdir}/dssi/%{name}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.18.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Orcan Ogetbil - 0.0.18.5-2 - Add a .desktop file for the DSSI plugin - Add X-Synthesis category to the existing .desktop file of the JACK plugin From jkeating at fedoraproject.org Fri Jul 24 18:38:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:38:51 +0000 (UTC) Subject: rpms/callweaver/devel callweaver.spec,1.17,1.18 Message-ID: <20090724183851.A3C7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/callweaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19544 Modified Files: callweaver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: callweaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/callweaver/devel/callweaver.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- callweaver.spec 24 Feb 2009 06:32:47 -0000 1.17 +++ callweaver.spec 24 Jul 2009 18:38:51 -0000 1.18 @@ -7,7 +7,7 @@ Name: callweaver Version: 1.2.0.1 -Release: 3%{?snap:.%{snap}}%{?dist} +Release: 4%{?snap:.%{snap}}%{?dist} Summary: The Truly Open Source PBX Group: Applications/Internet @@ -377,6 +377,9 @@ test "$1" != 0 || /sbin/chkconfig --del %{_sbindir}/eogi* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:39:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:39:07 +0000 (UTC) Subject: rpms/camE/devel camE.spec,1.20,1.21 Message-ID: <20090724183907.BEAFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/camE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20034 Modified Files: camE.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: camE.spec =================================================================== RCS file: /cvs/pkgs/rpms/camE/devel/camE.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- camE.spec 24 Feb 2009 06:33:42 -0000 1.20 +++ camE.spec 24 Jul 2009 18:39:07 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Rewrite of the xawtv webcam app, which adds imlib2 support Name: camE Version: 1.9 -Release: 14 +Release: 15 # COPYING is GPLv2 but no source files contain "or any later version" except # pwc-ioctl.h which was taken from the pwc kernel module. License: GPLv2 @@ -48,6 +48,9 @@ export CFLAGS="%{optflags} -DCONFIG_VIDE %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.9-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:39:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:39:24 +0000 (UTC) Subject: rpms/camcardsync/devel camcardsync.spec,1.1,1.2 Message-ID: <20090724183924.9632B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/camcardsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20235 Modified Files: camcardsync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: camcardsync.spec =================================================================== RCS file: /cvs/pkgs/rpms/camcardsync/devel/camcardsync.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- camcardsync.spec 27 Apr 2009 12:50:23 -0000 1.1 +++ camcardsync.spec 24 Jul 2009 18:39:23 -0000 1.2 @@ -1,6 +1,6 @@ Name: camcardsync Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool for copying photos from a camera card Group: Applications/Multimedia @@ -71,6 +71,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Zarko - 0.1.1-2 - License, Summary, Description cleaning - gcc4.4 patch applied From jkeating at fedoraproject.org Fri Jul 24 18:39:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:39:43 +0000 (UTC) Subject: rpms/camstream/devel camstream.spec,1.21,1.22 Message-ID: <20090724183943.58D5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/camstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20439 Modified Files: camstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: camstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/camstream/devel/camstream.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- camstream.spec 24 Feb 2009 06:34:39 -0000 1.21 +++ camstream.spec 24 Jul 2009 18:39:43 -0000 1.22 @@ -1,6 +1,6 @@ Name: camstream Version: 0.26.3 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Set of programs to make use of your webcam @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.26.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.26.3-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:39:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:39:59 +0000 (UTC) Subject: rpms/canto/devel canto.spec,1.2,1.3 Message-ID: <20090724183959.973E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/canto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20592 Modified Files: canto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: canto.spec =================================================================== RCS file: /cvs/pkgs/rpms/canto/devel/canto.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- canto.spec 12 Jun 2009 20:45:18 -0000 1.2 +++ canto.spec 24 Jul 2009 18:39:59 -0000 1.3 @@ -3,7 +3,7 @@ Name: canto Version: 0.6.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Atom/RSS feed reader based on ncurses Group: Applications/Internet License: GPLv2 @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Andreas Osowski - 0.6.13-1 - Updated to 0.6.13 From jkeating at fedoraproject.org Fri Jul 24 18:40:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:40:18 +0000 (UTC) Subject: rpms/cas/devel cas.spec,1.3,1.4 Message-ID: <20090724184018.599D311C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20771 Modified Files: cas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cas.spec =================================================================== RCS file: /cvs/pkgs/rpms/cas/devel/cas.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cas.spec 6 May 2009 13:30:33 -0000 1.3 +++ cas.spec 24 Jul 2009 18:40:17 -0000 1.4 @@ -3,7 +3,7 @@ Name: cas Summary: Tool to analyze and configure core file environment Version: 0.14 -Release: 10%{?dist} +Release: 11%{?dist} Source0: https://fedorahosted.org/releases/c/a/cas/%{name}-%{version}.tar.gz License: GPLv3+ Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc AUTHORS LICENSE README PKG-INFO doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Adam Stokes - 0.14-8 - support for purging old data - documentation updated to reflect updated workflow and describe From jkeating at fedoraproject.org Fri Jul 24 18:40:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:40:37 +0000 (UTC) Subject: rpms/castor/devel castor.spec,1.19,1.20 Message-ID: <20090724184037.25DC011C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/castor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20940 Modified Files: castor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: castor.spec =================================================================== RCS file: /cvs/pkgs/rpms/castor/devel/castor.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- castor.spec 8 May 2009 14:13:13 -0000 1.19 +++ castor.spec 24 Jul 2009 18:40:37 -0000 1.20 @@ -6,7 +6,7 @@ Summary: An open source data binding framework for Java Name: castor Version: 0.9.5 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 Epoch: 0 Group: Development/Libraries/Java License: BSD and MPLv1.1 and W3C @@ -286,6 +286,9 @@ fi %doc build/doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.9.5-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Karsten Hopp 0.9.5-4.1 - Specify source and target as 1.4 to make it build From jkeating at fedoraproject.org Fri Jul 24 18:40:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:40:52 +0000 (UTC) Subject: rpms/catdoc/devel catdoc.spec,1.3,1.4 Message-ID: <20090724184052.01C3B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/catdoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21095 Modified Files: catdoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: catdoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/catdoc/devel/catdoc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- catdoc.spec 24 Feb 2009 06:37:17 -0000 1.3 +++ catdoc.spec 24 Jul 2009 18:40:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: catdoc Version: 0.94.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A program which converts Microsoft office files to plain text Group: Applications/Text @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.94.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.94.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:41:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:41:06 +0000 (UTC) Subject: rpms/cave9/devel cave9.spec,1.3,1.4 Message-ID: <20090724184106.384D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cave9/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21227 Modified Files: cave9.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cave9.spec =================================================================== RCS file: /cvs/pkgs/rpms/cave9/devel/cave9.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cave9.spec 1 Jul 2009 23:46:00 -0000 1.3 +++ cave9.spec 24 Jul 2009 18:41:05 -0000 1.4 @@ -2,7 +2,7 @@ Name: cave9 Version: 0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: 3d game of cave exploration Group: Amusements/Games @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-cave9.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Victor Bogado 0.3-8 - removed the redundant ownership of the fontdir. - lowered the priority From jkeating at fedoraproject.org Fri Jul 24 18:41:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:41:20 +0000 (UTC) Subject: rpms/cbios/devel cbios.spec,1.5,1.6 Message-ID: <20090724184120.2F4ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cbios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21406 Modified Files: cbios.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cbios.spec =================================================================== RCS file: /cvs/pkgs/rpms/cbios/devel/cbios.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cbios.spec 3 Jul 2009 13:15:27 -0000 1.5 +++ cbios.spec 24 Jul 2009 18:41:19 -0000 1.6 @@ -2,7 +2,7 @@ Name: cbios Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A third party BIOS compatible with the MSX BIOS Group: Applications/Emulators License: BSD @@ -91,6 +91,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Hans de Goede 0.23-1 - New upstream release 0.23 From jkeating at fedoraproject.org Fri Jul 24 18:41:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:41:36 +0000 (UTC) Subject: rpms/ccache/devel ccache.spec,1.23,1.24 Message-ID: <20090724184136.26CC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ccache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21571 Modified Files: ccache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ccache.spec =================================================================== RCS file: /cvs/pkgs/rpms/ccache/devel/ccache.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ccache.spec 24 Feb 2009 06:39:52 -0000 1.23 +++ ccache.spec 24 Jul 2009 18:41:35 -0000 1.24 @@ -6,7 +6,7 @@ Name: ccache Version: 2.4 -Release: 14%{?dist} +Release: 15%{?dist} Summary: C/C++ compiler cache Group: Development/Tools @@ -102,6 +102,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.4-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:41:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:41:51 +0000 (UTC) Subject: rpms/ccid/devel ccid.spec,1.15,1.16 Message-ID: <20090724184151.025CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ccid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21742 Modified Files: ccid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ccid.spec =================================================================== RCS file: /cvs/pkgs/rpms/ccid/devel/ccid.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ccid.spec 3 Mar 2009 22:49:51 -0000 1.15 +++ ccid.spec 24 Jul 2009 18:41:50 -0000 1.16 @@ -5,7 +5,7 @@ Name: ccid Version: 1.3.9 -Release: 1%{dist} +Release: 2%{dist} Summary: Generic USB CCID smart card reader driver Group: System Environment/Libraries @@ -78,6 +78,9 @@ exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Bob Relyea - 1.3.9-1 - update to ccid 1.3.9 From jkeating at fedoraproject.org Fri Jul 24 18:42:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:42:04 +0000 (UTC) Subject: rpms/cclive/devel cclive.spec,1.4,1.5 Message-ID: <20090724184204.99D3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cclive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21919 Modified Files: cclive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cclive.spec =================================================================== RCS file: /cvs/pkgs/rpms/cclive/devel/cclive.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cclive.spec 11 Jul 2009 23:06:47 -0000 1.4 +++ cclive.spec 24 Jul 2009 18:42:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: cclive Version: 0.4.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line video extraction utility Group: Applications/Multimedia @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Nicoleau Fabien 0.4.5-1 - Rebuild for 0.4.5 * Mon Jun 22 2009 Nicoleau Fabien 0.4.4-1 From jkeating at fedoraproject.org Fri Jul 24 18:15:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:30 +0000 (UTC) Subject: rpms/bluez/devel bluez.spec,1.82,1.83 Message-ID: <20090724181530.9EFED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/bluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1623 Modified Files: bluez.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: bluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluez/devel/bluez.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- bluez.spec 18 Jul 2009 23:44:21 -0000 1.82 +++ bluez.spec 24 Jul 2009 18:15:30 -0000 1.83 @@ -1,7 +1,7 @@ Summary: Bluetooth utilities Name: bluez Version: 4.46 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz @@ -270,6 +270,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/pand %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.46-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Bastien Nocera 4.46-1 - Update to 4.46 From jkeating at fedoraproject.org Fri Jul 24 18:15:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:15:15 +0000 (UTC) Subject: rpms/blueproximity/devel blueproximity.spec,1.1,1.2 Message-ID: <20090724181515.EADE811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/blueproximity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1422 Modified Files: blueproximity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: blueproximity.spec =================================================================== RCS file: /cvs/pkgs/rpms/blueproximity/devel/blueproximity.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- blueproximity.spec 20 Jun 2009 19:56:48 -0000 1.1 +++ blueproximity.spec 24 Jul 2009 18:15:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: blueproximity Version: 1.2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Detects you via your bluetooth devices and locks/unlocks the screen BuildArch: noarch Group: Applications/Communications @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}_base.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Jonathan Steffan - 1.2.5-4 - Install man page, rather then shipping in documentation From jkeating at fedoraproject.org Fri Jul 24 18:42:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:42:19 +0000 (UTC) Subject: rpms/ccrtp/devel ccrtp.spec,1.13,1.14 Message-ID: <20090724184219.B934A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ccrtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22081 Modified Files: ccrtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ccrtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ccrtp/devel/ccrtp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ccrtp.spec 6 Apr 2009 20:48:10 -0000 1.13 +++ ccrtp.spec 24 Jul 2009 18:42:19 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Common C++ class framework for RTP/RTCP Name: ccrtp Version: 1.7.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries Source0: http://ftp.gnu.org/pub/gnu/ccrtp/ccrtp-%{version}.tar.gz @@ -80,6 +80,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 07 2009 Andreas Thienemann - 1.7.1-1 - Update to upstream release 1.7.1 From jkeating at fedoraproject.org Fri Jul 24 18:42:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:42:36 +0000 (UTC) Subject: rpms/ccsm/devel ccsm.spec,1.12,1.13 Message-ID: <20090724184236.B81AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ccsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22249 Modified Files: ccsm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ccsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ccsm/devel/ccsm.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ccsm.spec 23 Jul 2009 19:26:45 -0000 1.12 +++ ccsm.spec 24 Jul 2009 18:42:36 -0000 1.13 @@ -4,7 +4,7 @@ Name: ccsm Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugin and configuration tool - Compiz Fusion Project Group: User Interface/Desktops @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - update the defines python_sitelib & python_sitearch From jkeating at fedoraproject.org Fri Jul 24 18:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:42:52 +0000 (UTC) Subject: rpms/cd-discid/devel cd-discid.spec,1.10,1.11 Message-ID: <20090724184252.E2CBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cd-discid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22414 Modified Files: cd-discid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cd-discid.spec =================================================================== RCS file: /cvs/pkgs/rpms/cd-discid/devel/cd-discid.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- cd-discid.spec 24 Feb 2009 06:43:27 -0000 1.10 +++ cd-discid.spec 24 Jul 2009 18:42:52 -0000 1.11 @@ -1,6 +1,6 @@ Name: cd-discid Version: 0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Utility to get CDDB discid information Group: Applications/Multimedia @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:43:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:43:06 +0000 (UTC) Subject: rpms/cdargs/devel cdargs.spec,1.3,1.4 Message-ID: <20090724184306.9A98711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdargs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22555 Modified Files: cdargs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdargs.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdargs/devel/cdargs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cdargs.spec 24 Feb 2009 06:44:17 -0000 1.3 +++ cdargs.spec 24 Jul 2009 18:43:06 -0000 1.4 @@ -2,7 +2,7 @@ Name: cdargs Version: 1.35 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The shell cd with bookmarks and browser Group: Applications/File @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/emacs/site-lisp/site-start.d/cdargs-init.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.35-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.35-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jjohnstn at fedoraproject.org Fri Jul 24 18:43:17 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Fri, 24 Jul 2009 18:43:17 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.124,1.125 Message-ID: <20090724184317.1BFEB11C00CE@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22603 Modified Files: eclipse-cdt.spec Log Message: * Fri Jul 24 2009 Jeff Johnston 6.0.0-3 - Bump release number. - Update Autotools to v200907241319 which has CDT 6.0 fixes. Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.124 retrieving revision 1.125 diff -u -p -r1.124 -r1.125 --- eclipse-cdt.spec 24 Jul 2009 18:00:30 -0000 1.124 +++ eclipse-cdt.spec 24 Jul 2009 18:43:16 -0000 1.125 @@ -228,7 +228,7 @@ export PATH=%{java_bin}:/usr/bin:$PATH # See comments in the script to understand this. /bin/sh -x %{eclipse_base}/buildscripts/copy-platform SDK \ - %{eclipse_base} mylyn xmlrpc codec httpclient lang + %{eclipse_base} mylyn xmlrpc codec httpclient lang rse SDK=$(cd SDK >/dev/null && pwd) # Eclipse may try to write to the home directory. @@ -536,7 +536,8 @@ fi %endif %changelog -* Fri Jul 24 2009 Jeff Johnston 6.0.0-2 +* Fri Jul 24 2009 Jeff Johnston 6.0.0-3 +- Bump release number. - Update Autotools to v200907241319 which has CDT 6.0 fixes. * Wed Jun 17 2009 Jeff Johnston 6.0.0-1 From jkeating at fedoraproject.org Fri Jul 24 18:43:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:43:19 +0000 (UTC) Subject: rpms/cdcollect/devel cdcollect.spec,1.5,1.6 Message-ID: <20090724184319.C024011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdcollect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22710 Modified Files: cdcollect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdcollect.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdcollect/devel/cdcollect.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cdcollect.spec 24 Feb 2009 06:45:09 -0000 1.5 +++ cdcollect.spec 24 Jul 2009 18:43:19 -0000 1.6 @@ -3,7 +3,7 @@ Name: cdcollect Version: 0.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Simple CD/DVD catalog for GNOME Group: Applications/Productivity @@ -92,6 +92,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:43:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:43:33 +0000 (UTC) Subject: rpms/cddlib/devel cddlib.spec,1.4,1.5 Message-ID: <20090724184333.AB15F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cddlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22858 Modified Files: cddlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cddlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/cddlib/devel/cddlib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cddlib.spec 24 Feb 2009 06:46:03 -0000 1.4 +++ cddlib.spec 24 Jul 2009 18:43:33 -0000 1.5 @@ -3,7 +3,7 @@ Name: cddlib Version: 094f -Release: 8%{?dist} +Release: 9%{?dist} Summary: A library for generating all vertices in convex polyhedrons Group: Applications/Engineering License: GPLv2+ @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 094f-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 094f-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:43:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:43:47 +0000 (UTC) Subject: rpms/cdk/devel cdk.spec,1.2,1.3 Message-ID: <20090724184347.A0C9611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23043 Modified Files: cdk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdk/devel/cdk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cdk.spec 24 Feb 2009 06:47:00 -0000 1.2 +++ cdk.spec 24 Jul 2009 18:43:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: cdk Version: 5.0.20081105 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Curses Development Kit Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0.20081105-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 5.0.20081105-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:44:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:44:05 +0000 (UTC) Subject: rpms/cdlabelgen/devel cdlabelgen.spec,1.7,1.8 Message-ID: <20090724184405.0954211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdlabelgen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23223 Modified Files: cdlabelgen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdlabelgen.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdlabelgen/devel/cdlabelgen.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cdlabelgen.spec 24 Feb 2009 06:47:57 -0000 1.7 +++ cdlabelgen.spec 24 Jul 2009 18:44:04 -0000 1.8 @@ -1,7 +1,7 @@ Name: cdlabelgen Summary: Generates frontcards and traycards for inserting in CD jewelcases Version: 4.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.aczoom.com/pub/tools/cdlabelgen-%{version}.tgz URL: http://www.aczoom.com/tools/cdinsert/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 4.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jjohnstn at fedoraproject.org Fri Jul 24 18:44:17 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Fri, 24 Jul 2009 18:44:17 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.125,1.126 Message-ID: <20090724184417.485B811C00CE@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23271 Modified Files: eclipse-cdt.spec Log Message: Fix typo. Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- eclipse-cdt.spec 24 Jul 2009 18:43:16 -0000 1.125 +++ eclipse-cdt.spec 24 Jul 2009 18:44:17 -0000 1.126 @@ -21,7 +21,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 2%{?dist} +Release: 3%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt From rstrode at fedoraproject.org Fri Jul 24 18:44:17 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Fri, 24 Jul 2009 18:44:17 +0000 (UTC) Subject: rpms/gdm/devel gdm-2.27.4-multistack.patch, 1.2, 1.3 gdm.spec, 1.477, 1.478 Message-ID: <20090724184417.B05F011C00CE@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/gdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23286 Modified Files: gdm-2.27.4-multistack.patch gdm.spec Log Message: - Fix delay during login gdm-2.27.4-multistack.patch: b/common/gdm-marshal.list | 1 b/configure.ac | 45 b/daemon/gdm-factory-slave.c | 13 b/daemon/gdm-greeter-server.c | 2 b/daemon/gdm-greeter-server.h | 5 b/daemon/gdm-product-slave.c | 47 b/daemon/gdm-session-direct.c | 14 b/daemon/gdm-session-private.h | 3 b/daemon/gdm-session-relay.c | 29 b/daemon/gdm-session-worker-job.c | 11 b/daemon/gdm-session-worker-job.h | 2 b/daemon/gdm-session-worker.c | 27 b/daemon/gdm-session.c | 20 b/daemon/gdm-session.h | 9 b/daemon/gdm-simple-slave.c | 3 b/daemon/test-session.c | 14 b/gui/simple-greeter/Makefile.am | 4 b/gui/simple-greeter/gdm-chooser-widget.c | 32 b/gui/simple-greeter/gdm-chooser-widget.h | 3 b/gui/simple-greeter/gdm-greeter-client.c | 18 b/gui/simple-greeter/gdm-greeter-client.h | 4 b/gui/simple-greeter/gdm-greeter-login-window.c | 91 b/gui/simple-greeter/gdm-greeter-login-window.glade | 39 b/gui/simple-greeter/gdm-greeter-login-window.h | 11 b/gui/simple-greeter/gdm-greeter-plugin.c | 255 + b/gui/simple-greeter/gdm-greeter-plugin.h | 61 b/gui/simple-greeter/gdm-greeter-session.c | 5 b/gui/simple-greeter/gdm-plugin-manager.c | 478 +++ b/gui/simple-greeter/gdm-plugin-manager.h | 66 b/gui/simple-greeter/gdm-task-list.c | 198 + b/gui/simple-greeter/gdm-task-list.h | 65 b/gui/simple-greeter/gdm-user-chooser-widget.c | 23 b/gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 46 b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 147 + b/gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 87 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.c | 93 b/gui/simple-greeter/libgdmsimplegreeter/gdm-greeter-extension.h | 55 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 117 b/gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 62 b/gui/simple-greeter/libgdmsimplegreeter/gdmsimplegreeter.pc.in | 11 b/gui/simple-greeter/plugins/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/Makefile.am | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 299 ++ b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.h | 56 b/gui/simple-greeter/plugins/fingerprint/gdm-fingerprint.pam | 17 b/gui/simple-greeter/plugins/fingerprint/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/fingerprint/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/fingerprint/page.ui | 56 b/gui/simple-greeter/plugins/fingerprint/plugin.c | 41 b/gui/simple-greeter/plugins/password/Makefile.am | 53 b/gui/simple-greeter/plugins/password/gdm-password-extension.c | 316 ++ b/gui/simple-greeter/plugins/password/gdm-password-extension.h | 56 b/gui/simple-greeter/plugins/password/gdm-password.pam | 19 b/gui/simple-greeter/plugins/password/page.ui | 56 b/gui/simple-greeter/plugins/password/plugin.c | 41 b/gui/simple-greeter/plugins/smartcard/Makefile.am | 77 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 420 +++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.h | 56 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.c | 1394 ++++++++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-manager.h | 86 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard-worker.c | 167 + b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.c | 558 ++++ b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.h | 94 b/gui/simple-greeter/plugins/smartcard/gdm-smartcard.pam | 18 b/gui/simple-greeter/plugins/smartcard/icons/16x16/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/48x48/Makefile.am | 5 b/gui/simple-greeter/plugins/smartcard/icons/Makefile.am | 1 b/gui/simple-greeter/plugins/smartcard/page.ui | 56 b/gui/simple-greeter/plugins/smartcard/plugin.c | 41 configure.ac | 15 daemon/gdm-factory-slave.c | 103 daemon/gdm-greeter-server.c | 187 + daemon/gdm-greeter-server.h | 19 daemon/gdm-product-slave.c | 263 + daemon/gdm-session-direct.c | 1132 +++++--- daemon/gdm-session-private.h | 29 daemon/gdm-session-relay.c | 190 + daemon/gdm-session-worker-job.c | 73 daemon/gdm-session-worker-job.h | 6 daemon/gdm-session-worker.c | 21 daemon/gdm-session.c | 229 + daemon/gdm-session.h | 59 daemon/gdm-simple-slave.c | 223 + daemon/test-session.c | 22 gui/simple-greeter/Makefile.am | 15 gui/simple-greeter/gdm-chooser-widget.c | 9 gui/simple-greeter/gdm-chooser-widget.h | 3 gui/simple-greeter/gdm-greeter-client.c | 209 + gui/simple-greeter/gdm-greeter-client.h | 18 gui/simple-greeter/gdm-greeter-login-window.c | 1147 ++++++-- gui/simple-greeter/gdm-greeter-login-window.glade | 144 - gui/simple-greeter/gdm-greeter-login-window.h | 21 gui/simple-greeter/gdm-greeter-session.c | 133 gui/simple-greeter/gdm-task-list.c | 228 + gui/simple-greeter/gdm-task-list.h | 36 gui/simple-greeter/libgdmsimplegreeter/Makefile.am | 2 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.c | 51 gui/simple-greeter/libgdmsimplegreeter/gdm-conversation.h | 13 gui/simple-greeter/libgdmsimplegreeter/gdm-task.c | 6 gui/simple-greeter/libgdmsimplegreeter/gdm-task.h | 2 gui/simple-greeter/plugins/Makefile.am | 4 gui/simple-greeter/plugins/fingerprint/gdm-fingerprint-extension.c | 10 gui/simple-greeter/plugins/password/gdm-password-extension.c | 7 gui/simple-greeter/plugins/smartcard/gdm-smartcard-extension.c | 35 105 files changed, 9645 insertions(+), 1291 deletions(-) Index: gdm-2.27.4-multistack.patch =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm-2.27.4-multistack.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gdm-2.27.4-multistack.patch 20 Jul 2009 20:16:34 -0000 1.2 +++ gdm-2.27.4-multistack.patch 24 Jul 2009 18:44:17 -0000 1.3 @@ -1,7 +1,7 @@ From a1ab1c57fa91751f067ff10465f01034bc5c1953 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 13:52:19 -0500 -Subject: [PATCH 01/37] Add a comment marking protected api in chooser +Subject: [PATCH 01/38] Add a comment marking protected api in chooser The chooser widget has methods that only its subclasses are supposed to call. We should @@ -30,7 +30,7 @@ index 578e613..7e3e59c 100644 From 4e9cef5860311e3b39d2076f4dc9de5f69dfa51f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 17:44:37 -0500 -Subject: [PATCH 02/37] Drop duplicated entry introspection output +Subject: [PATCH 02/38] Drop duplicated entry introspection output --- daemon/gdm-greeter-server.c | 1 - @@ -55,7 +55,7 @@ index 2e01d33..cecce83 100644 From ca75999e3ce75549554efb758c9210e2997cc9f6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 10:07:03 -0500 -Subject: [PATCH 03/37] Make lookup_item not warn when passing NULL for args +Subject: [PATCH 03/38] Make lookup_item not warn when passing NULL for args gtk_tree_model_get doesn't like NULL, and we allow NULL for optional return values. @@ -116,7 +116,7 @@ index b3f2a0d..4e76439 100644 From 835922303f2b08036727aca11adf256f2209ac0c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 15:35:00 -0500 -Subject: [PATCH 04/37] Drop "stopped" signal from worker-job class +Subject: [PATCH 04/38] Drop "stopped" signal from worker-job class It was unused, dead code. --- @@ -212,7 +212,7 @@ index d42eb37..5ad1c92 100644 From 910f5f152f3cb71a8084f44374514d9cb45eca5f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 11:00:08 -0500 -Subject: [PATCH 05/37] Drop session "Open" in favor of "StartConversation" +Subject: [PATCH 05/38] Drop session "Open" in favor of "StartConversation" We want to eventually support having multiple simultaneous PAM conversations in one login @@ -1412,7 +1412,7 @@ index c6a158c..d9fa26e 100644 From f4596a6df988f88afe2d9d06ffeaf978eb519931 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 4 Feb 2009 10:55:03 -0500 -Subject: [PATCH 06/37] Rename session worker to the service it's managing +Subject: [PATCH 06/38] Rename session worker to the service it's managing This way when we're running multiple PAM conversations at once it will be obvious which worker is managing which conversation. @@ -1601,7 +1601,7 @@ index d24f025..4833f23 100644 From bae5bb00c77b693ab31d58aba416ec4a103f8501 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 13:01:48 -0500 -Subject: [PATCH 07/37] Make greeter explicitly request PAM conversation +Subject: [PATCH 07/38] Make greeter explicitly request PAM conversation Now the greeter has to say what PAM stack it wants the slave to run. When that stack is ready, we emit the Ready signal as @@ -1947,7 +1947,7 @@ index fe2de48..ec99c12 100644 From d3004477cb4424526f6ae2132d0554501cd9ffc5 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 16 Jan 2009 15:18:31 -0500 -Subject: [PATCH 08/37] Store multiple conversations in the session +Subject: [PATCH 08/38] Store multiple conversations in the session We keep multiple conversations in the session now, keyed off of PAM service is at the other end. Much of the guts still @@ -2215,7 +2215,7 @@ index 86bd59d..9af8252 100644 From c26960e1b2b5f9dbd2afb68c60b68e972c85b2eb Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 4 Mar 2009 22:09:21 -0500 -Subject: [PATCH 09/37] start autologin conversation when creating session if necessary +Subject: [PATCH 09/38] start autologin conversation when creating session if necessary Without this autologin breaks, since when it comes time to autologin, there's no worker to do it. @@ -2253,7 +2253,7 @@ index 8863fd4..4db7440 100644 From 4cab3c989f849f27ed4b225d50e40c89a25eadd1 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 22 Jan 2009 08:52:01 -0500 -Subject: [PATCH 10/37] Propagate service name to more layers +Subject: [PATCH 10/38] Propagate service name to more layers This is more prep work to get multiple concurrent PAM stacks going. @@ -6265,7 +6265,7 @@ index ec99c12..7873679 100644 From 2d43cb675898b5c2c2d124050ccdb4b43502f036 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 7 Feb 2009 11:36:40 -0500 -Subject: [PATCH 11/37] emit "ConversationStopped" signal at end of conv +Subject: [PATCH 11/38] emit "ConversationStopped" signal at end of conv This will allow us to track when individual PAM conversations fail, instead of doing one @@ -6612,7 +6612,7 @@ index 9421a64..6eadf62 100644 From a6469d77a955e7ca174d2c763a3b261831618612 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 9 Mar 2009 15:41:12 -0400 -Subject: [PATCH 12/37] Don't tear down greeter until pam_open_session finishes +Subject: [PATCH 12/38] Don't tear down greeter until pam_open_session finishes Some PAM modules ask questions at that late stage of the game, and so we need a greeter to forward the questions on to the @@ -7182,7 +7182,7 @@ index 6eadf62..4c68974 100644 From 7d088d42327ecdcacd646b3f1865fd7ea3128a0d Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 30 Jan 2009 23:57:31 -0500 -Subject: [PATCH 13/37] Add limited support for multiple pam stacks +Subject: [PATCH 13/38] Add limited support for multiple pam stacks This hard codes 3 pam stacks and doesn't handle switching between them very well yet. @@ -7939,7 +7939,7 @@ index 0000000..ade21b6 From 287eeb864410a8504023fb39ef2312abdcdc788e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Mar 2009 11:19:40 -0500 -Subject: [PATCH 14/37] Create session settings object when first starting worker +Subject: [PATCH 14/38] Create session settings object when first starting worker This is because one PAM module may complete before setup gets called on another, and when one completes *all* PAM @@ -7977,7 +7977,7 @@ index 194de7d..1b1f14b 100644 From 5d580cde9e73d3e6cd41d37ca1983883dc5db4ed Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 5 Feb 2009 15:20:25 -0500 -Subject: [PATCH 15/37] Queue a greeter reset when the user clicks cancel +Subject: [PATCH 15/38] Queue a greeter reset when the user clicks cancel --- daemon/gdm-simple-slave.c | 37 +++++++++++++++++++++++++++++++++++++ @@ -8116,7 +8116,7 @@ index 4c68974..337718b 100644 From 21ebc4975e94c73c3a49d61e9655070c09e50926 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 16:23:48 -0500 -Subject: [PATCH 16/37] Add a plugin based extension system to greeter +Subject: [PATCH 16/38] Add a plugin based extension system to greeter This allows plugins to drive which PAM conversations get run. This commit just adds one plugin "password" @@ -12300,7 +12300,7 @@ index 0000000..9b87c67 From f65b1f138fa4f8e3e9ee5add0c83a64b6fb281d4 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 7 Feb 2009 21:17:49 -0500 -Subject: [PATCH 17/37] Force session reset if all PAM conversations fail +Subject: [PATCH 17/38] Force session reset if all PAM conversations fail --- gui/simple-greeter/gdm-greeter-login-window.c | 22 +++++++++++++++++++--- @@ -12359,7 +12359,7 @@ index 07cb4e3..7f01748 100644 From b235677b51bd727e60520208bfd3f9d75f9c6033 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 18 Feb 2009 12:32:39 -0500 -Subject: [PATCH 18/37] Add a way for plugins to pick users from list +Subject: [PATCH 18/38] Add a way for plugins to pick users from list The smartcard plugin is going to want to start its conversation as soon as the card @@ -12516,7 +12516,7 @@ index f1910cf..fb4bf49 100644 From bd3ea14146897f47a7b4fcb7f698e47ad9185c31 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 14:05:20 -0500 -Subject: [PATCH 19/37] Add new api to ask when chooser widget is done loading items +Subject: [PATCH 19/38] Add new api to ask when chooser widget is done loading items --- gui/simple-greeter/gdm-chooser-widget.c | 9 +++++++++ @@ -12572,7 +12572,7 @@ index 7e3e59c..6a07843 100644 From 958f7acdca959afa04aa0ce05be6ffe9b531bd0e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 20 Feb 2009 14:31:27 -0500 -Subject: [PATCH 20/37] Tell tasks they're ready only after user list loads +Subject: [PATCH 20/38] Tell tasks they're ready only after user list loads This way they won't try to access the list prematurely. --- @@ -12632,7 +12632,7 @@ index 9fdf50e..6ef3d00 100644 From 4f8000921ea2c762d460629f93c88e8384923cbc Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 6 Feb 2009 16:25:47 -0500 -Subject: [PATCH 21/37] Add fingerprint plugin +Subject: [PATCH 21/38] Add fingerprint plugin This commit adds a plugin to initiate a conversation for fingerprint scans. @@ -13277,7 +13277,7 @@ index 0000000..5ea9925 From d47888f0c98007a00e93c178370d1d1eafcc56ae Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 11 Feb 2009 08:47:52 -0500 -Subject: [PATCH 22/37] Add start of a smartcard plugin +Subject: [PATCH 22/38] Add start of a smartcard plugin It contains a copy and paste of an old RHEL patch I did a few years ago. @@ -16546,7 +16546,7 @@ index 0000000..fffbd50 From 6a736eae4072d7779f333fd4114481317a864523 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 23 Feb 2009 17:57:06 -0500 -Subject: [PATCH 23/37] Add a new "choosable" property to show tasks in user list +Subject: [PATCH 23/38] Add a new "choosable" property to show tasks in user list Useful for Smartcard and some future "Guest" account plugin --- @@ -16705,7 +16705,7 @@ index 632ee2d..ed19e62 100644 From 9f7550eaf2a02a0b7f48e81f4e2ced1aed13337f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 24 Feb 2009 15:12:35 -0500 -Subject: [PATCH 24/37] Separate handling of non-users in user list from users +Subject: [PATCH 24/38] Separate handling of non-users in user list from users Now get_chosen_user returns NULL if the activated item wasn't a user. We also separate the handling of on item @@ -16868,7 +16868,7 @@ index 7aa99e7..316ef46 100644 From a1598f4fb8fdd16314c3172a3fed7550bc9027ff Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 27 Feb 2009 15:44:13 -0500 -Subject: [PATCH 25/37] Initiate smart card auth when clicking on it in list +Subject: [PATCH 25/38] Initiate smart card auth when clicking on it in list --- gui/simple-greeter/gdm-greeter-login-window.c | 24 ++++++++++++++++++++ @@ -16944,7 +16944,7 @@ index ed19e62..d3641ba 100644 From 5abe595674643baf0e7c811bf39adbd717910c3f Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 11:10:28 -0500 -Subject: [PATCH 26/37] Only show task list if user is selected +Subject: [PATCH 26/38] Only show task list if user is selected --- gui/simple-greeter/gdm-greeter-login-window.c | 52 +++++++++++++++++-------- @@ -17142,7 +17142,7 @@ index 25831a6..162b784 100644 From 071d53902b55c4ac74553040703009d25ab770f0 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 13:53:34 -0500 -Subject: [PATCH 27/37] Pull verification functions out into their own subroutines +Subject: [PATCH 27/38] Pull verification functions out into their own subroutines This makes the function smaller and easier to read --- @@ -17314,7 +17314,7 @@ index c7c579b..6c625ba 100644 From ed50184115bb835c89bc0492e2a74c9cc6095b0b Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 13:57:34 -0500 -Subject: [PATCH 28/37] Add new function find_task_with_service_name +Subject: [PATCH 28/38] Add new function find_task_with_service_name It hides a bunch of icky foreach calls. --- @@ -17438,7 +17438,7 @@ index 6c625ba..b04549f 100644 From a80bfcb439d7cdd9ae1c719c5197f993c4062995 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 15:23:51 -0500 -Subject: [PATCH 29/37] Drop the different auth modes in favor of calling reset manually +Subject: [PATCH 29/38] Drop the different auth modes in favor of calling reset manually --- gui/simple-greeter/gdm-greeter-login-window.c | 57 +++++++++++++++---------- @@ -17589,7 +17589,7 @@ index b04549f..4256e1f 100644 From 60c4b08b34f72bfa19509f17785ce570426f5cde Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 2 Mar 2009 17:09:16 -0500 -Subject: [PATCH 30/37] Notify plugins if their user choose requests fail +Subject: [PATCH 30/38] Notify plugins if their user choose requests fail This allows the smart card plugin to cancel pending conversations when a card gets inserted. @@ -17802,7 +17802,7 @@ index d3641ba..73e0f84 100644 From be8d9a5363300545f7ea51682ff6e1c17e3fdf26 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 13 Apr 2009 14:19:50 -0400 -Subject: [PATCH 31/37] reset all conversations if password conversation fails +Subject: [PATCH 31/38] reset all conversations if password conversation fails This is a temporary hack until we store plugin policy in gconf. @@ -17838,7 +17838,7 @@ index add0393..9613695 100644 From 10530c87e295f3ba83e16e75763217818480f224 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 21 Apr 2009 10:25:18 -0400 -Subject: [PATCH 32/37] When one PAM conversation wins, stop the others +Subject: [PATCH 32/38] When one PAM conversation wins, stop the others This doesn't work yet, it's still in progress code. --- @@ -17959,7 +17959,7 @@ index 337718b..63ea82c 100644 From ba40486a7e8a7be80b16a89d8a0f7fd264ddfe21 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 21 Apr 2009 15:30:28 -0400 -Subject: [PATCH 33/37] When one PAM conv. wins, actually stop the others +Subject: [PATCH 33/38] When one PAM conv. wins, actually stop the others We weren't properly keeping the winning conversation around in the previous commit @@ -18002,7 +18002,7 @@ index e63e453..2899ea2 100644 From c4ebe26db9c963d587694d0197e145e086ec43ca Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 13 May 2009 13:43:33 -0400 -Subject: [PATCH 34/37] Don't send auth-failed when worker dies +Subject: [PATCH 34/38] Don't send auth-failed when worker dies Authentication hasn't failed, it just got aborted before it could. This prevents a crash that happens when switching @@ -18060,7 +18060,7 @@ index 2899ea2..689e4cf 100644 From 68384fcc0d1dfb5b451d4be8136959a037c6c2a6 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 16 Jun 2009 08:49:05 -0400 -Subject: [PATCH 35/37] Drop bogus conversation = NULL line +Subject: [PATCH 35/38] Drop bogus conversation = NULL line cancel_pending_query would set conversation to NULL immediately before trying to use the conversation. @@ -18095,7 +18095,7 @@ index 689e4cf..7528ae6 100644 From 0daaf4814f9f78be4e85bef7f181426c06c5349c Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 20 Jul 2009 11:06:59 -0400 -Subject: [PATCH 36/37] Drop is_authenticated flag in session +Subject: [PATCH 36/38] Drop is_authenticated flag in session It's not used anymore, so no reason to set it. --- @@ -18129,7 +18129,7 @@ index 7528ae6..4b08da3 100644 From 790263cf9b8cab0bf3dc39c29e814d8c9034d802 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 20 Jul 2009 12:56:08 -0400 -Subject: [PATCH 37/37] Only start session if in SESSION_OPEN state no accredited state +Subject: [PATCH 37/38] Only start session if in SESSION_OPEN state no accredited state The state machine check wasn't quite right in light of the new SESSION_OPEN state @@ -18153,3 +18153,35 @@ index 1b1f14b..4ebde84 100644 -- 1.6.3.3 + +From 49d62227bd6eb4a802b89feb937e347be38dc116 Mon Sep 17 00:00:00 2001 +From: Ray Strode +Date: Fri, 24 Jul 2009 14:41:48 -0400 +Subject: [PATCH 38/38] KILL pam stack instead of TERM pam stack + +Some PAM modules are really slow to shut down. +We need to handle them being slow to shut down better, +(by not blocking login on them shutting down etc), but +in the mean time force them to die immediately. + +This is a temporary hack. +--- + daemon/gdm-session-worker-job.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/daemon/gdm-session-worker-job.c b/daemon/gdm-session-worker-job.c +index 0327d77..d99b8a5 100644 +--- a/daemon/gdm-session-worker-job.c ++++ b/daemon/gdm-session-worker-job.c +@@ -320,7 +320,7 @@ gdm_session_worker_job_stop (GdmSessionWorkerJob *session_worker_job) + + g_debug ("GdmSessionWorkerJob: Stopping job pid:%d", session_worker_job->priv->pid); + +- res = gdm_signal_pid (session_worker_job->priv->pid, SIGTERM); ++ res = gdm_signal_pid (session_worker_job->priv->pid, SIGKILL); + + if (res < 0) { + g_warning ("Unable to kill session worker process"); +-- +1.6.3.3 + Index: gdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdm/devel/gdm.spec,v retrieving revision 1.477 retrieving revision 1.478 diff -u -p -r1.477 -r1.478 --- gdm.spec 20 Jul 2009 20:16:34 -0000 1.477 +++ gdm.spec 24 Jul 2009 18:44:17 -0000 1.478 @@ -16,7 +16,7 @@ Summary: The GNOME Display Manager Name: gdm Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ Group: User Interface/X @@ -385,6 +385,9 @@ fi %{_libdir}/gdm/simple-greeter/plugins/fingerprint.so %changelog +* Fri Jul 24 2009 Ray Strode 1:2.27.4-3 +- Fix delay during login + * Mon Jul 20 2009 Ray Strode 1:2.27.4-2 - Use correct multi-stack patch From jkeating at fedoraproject.org Fri Jul 24 18:44:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:44:19 +0000 (UTC) Subject: rpms/cdo/devel cdo.spec,1.11,1.12 Message-ID: <20090724184419.62D0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23409 Modified Files: cdo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdo.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdo/devel/cdo.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- cdo.spec 21 Mar 2009 13:33:56 -0000 1.11 +++ cdo.spec 24 Jul 2009 18:44:19 -0000 1.12 @@ -1,6 +1,6 @@ Name: cdo Version: 1.0.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A program for manipulating GRIB/NetCDF/SERVICE/EXTRA files Group: Applications/Engineering License: GPLv2 @@ -45,6 +45,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Robert Scheck - 1.0.8-5 - Corrected the used header include path for netcdf 4 slightly From jkeating at fedoraproject.org Fri Jul 24 18:44:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:44:36 +0000 (UTC) Subject: rpms/cdogs-data/devel cdogs-data.spec,1.4,1.5 Message-ID: <20090724184436.9E64C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdogs-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23654 Modified Files: cdogs-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdogs-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdogs-data/devel/cdogs-data.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cdogs-data.spec 24 Feb 2009 06:49:41 -0000 1.4 +++ cdogs-data.spec 24 Jul 2009 18:44:36 -0000 1.5 @@ -7,7 +7,7 @@ Name: cdogs-data Version: %{cdogs_sdl_version} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Data files for the CDogs game Group: Amusements/Games License: Redistributable, no modification permitted @@ -63,6 +63,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:44:52 +0000 (UTC) Subject: rpms/cdogs-sdl/devel cdogs-sdl.spec,1.6,1.7 Message-ID: <20090724184452.12D6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdogs-sdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23810 Modified Files: cdogs-sdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdogs-sdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdogs-sdl/devel/cdogs-sdl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cdogs-sdl.spec 24 Feb 2009 06:50:35 -0000 1.6 +++ cdogs-sdl.spec 24 Jul 2009 18:44:51 -0000 1.7 @@ -1,6 +1,6 @@ Name: cdogs-sdl Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C-Dogs is an arcade shoot-em-up Group: Amusements/Games License: GPLv2+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:45:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:45:07 +0000 (UTC) Subject: rpms/cdparanoia/devel cdparanoia.spec,1.39,1.40 Message-ID: <20090724184507.2EFBD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdparanoia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23990 Modified Files: cdparanoia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdparanoia.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdparanoia/devel/cdparanoia.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- cdparanoia.spec 24 Feb 2009 06:51:30 -0000 1.39 +++ cdparanoia.spec 24 Jul 2009 18:45:07 -0000 1.40 @@ -1,7 +1,7 @@ Summary: A Compact Disc Digital Audio (CDDA) extraction tool (or ripper). Name: cdparanoia Version: 10.2 -Release: 4%{?dist} +Release: 5%{?dist} # the app is GPLv2, everything else is LGPLv2 License: GPLv2 and LGPLv2 Group: Applications/Multimedia @@ -108,6 +108,9 @@ fi %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 10.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 10.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:45:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:45:22 +0000 (UTC) Subject: rpms/cdpr/devel cdpr.spec,1.6,1.7 Message-ID: <20090724184522.A143C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdpr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24158 Modified Files: cdpr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdpr.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdpr/devel/cdpr.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cdpr.spec 24 Feb 2009 06:52:24 -0000 1.6 +++ cdpr.spec 24 Jul 2009 18:45:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: cdpr Version: 2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cisco Discovery Protocol Analyzer Group: Applications/System @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From romal at fedoraproject.org Fri Jul 24 18:45:37 2009 From: romal at fedoraproject.org (Robert M. Albrecht) Date: Fri, 24 Jul 2009 18:45:37 +0000 (UTC) Subject: rpms/nagios/F-11 .cvsignore,1.18,1.19 sources,1.19,1.20 Message-ID: <20090724184537.A3DB411C00CE@cvs1.fedora.phx.redhat.com> Author: romal Update of /cvs/pkgs/rpms/nagios/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24192 Modified Files: .cvsignore sources Log Message: upstream released 3.1.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nagios/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 2 Dec 2008 21:23:44 -0000 1.18 +++ .cvsignore 24 Jul 2009 18:45:36 -0000 1.19 @@ -1 +1 @@ -nagios-3.0.6.tar.gz +nagios-3.1.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nagios/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 2 Dec 2008 21:23:44 -0000 1.19 +++ sources 24 Jul 2009 18:45:37 -0000 1.20 @@ -1 +1 @@ -900e3f4164f4b2a18485420eeaefe812 nagios-3.0.6.tar.gz +f3c60428cba14264c709749182b8d93e nagios-3.1.2.tar.gz From jkeating at fedoraproject.org Fri Jul 24 18:45:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:45:38 +0000 (UTC) Subject: rpms/cdrdao/devel cdrdao.spec,1.46,1.47 Message-ID: <20090724184538.0D09511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdrdao/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24391 Modified Files: cdrdao.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdrdao.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdrdao/devel/cdrdao.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- cdrdao.spec 16 Apr 2009 13:48:10 -0000 1.46 +++ cdrdao.spec 24 Jul 2009 18:45:37 -0000 1.47 @@ -3,7 +3,7 @@ Summary: Writes audio CD-Rs in disk-at-once (DAO) mode Name: cdrdao Version: 1.2.3 -Release: 0.%{rcversion}.2 +Release: 0.%{rcversion}.3 License: GPLv2 Group: Applications/Multimedia URL: http://cdrdao.sourceforge.net/ @@ -136,6 +136,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-0.rc2.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Denis Leroy - 1.2.3-0.rc2.2 - Make sure version is printed with usage, to fix k3b From jkeating at fedoraproject.org Fri Jul 24 18:45:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:45:53 +0000 (UTC) Subject: rpms/cdrkit/devel cdrkit.spec,1.27,1.28 Message-ID: <20090724184553.315E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cdrkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24630 Modified Files: cdrkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cdrkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/cdrkit/devel/cdrkit.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- cdrkit.spec 16 Jul 2009 10:28:09 -0000 1.27 +++ cdrkit.spec 24 Jul 2009 18:45:53 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A collection of CD/DVD utilities Name: cdrkit Version: 1.1.9 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: Applications/System URL: http://cdrkit.org/ @@ -230,6 +230,9 @@ fi %{_mandir}/man1/dirsplit.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Nikola Pajkovsky 1.1.9-8 - fix buffer overflow From jkeating at fedoraproject.org Fri Jul 24 18:46:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:46:06 +0000 (UTC) Subject: rpms/cduce/devel cduce.spec,1.13,1.14 Message-ID: <20090724184606.C7D5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cduce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24793 Modified Files: cduce.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cduce.spec =================================================================== RCS file: /cvs/pkgs/rpms/cduce/devel/cduce.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- cduce.spec 26 May 2009 15:51:38 -0000 1.13 +++ cduce.spec 24 Jul 2009 18:46:06 -0000 1.14 @@ -15,7 +15,7 @@ Name: cduce Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Modern XML-oriented functional language Group: Development/Libraries @@ -180,6 +180,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Richard W.M. Jones - 0.5.3-1 - New upstream release 0.5.3. - Patch for compatibility with OCaml 3.11 now upstream. From jkeating at fedoraproject.org Fri Jul 24 18:46:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:46:20 +0000 (UTC) Subject: rpms/cegui/devel cegui.spec,1.20,1.21 Message-ID: <20090724184620.CE57811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cegui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24975 Modified Files: cegui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cegui.spec =================================================================== RCS file: /cvs/pkgs/rpms/cegui/devel/cegui.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- cegui.spec 24 Feb 2009 06:56:07 -0000 1.20 +++ cegui.spec 24 Jul 2009 18:46:20 -0000 1.21 @@ -1,6 +1,6 @@ Name: cegui Version: 0.6.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Free library providing windowing and widgets for graphics APIs / engines Group: System Environment/Libraries License: MIT @@ -138,6 +138,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:46:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:46:35 +0000 (UTC) Subject: rpms/cel/devel cel.spec,1.7,1.8 Message-ID: <20090724184635.0CE5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25159 Modified Files: cel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cel.spec =================================================================== RCS file: /cvs/pkgs/rpms/cel/devel/cel.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cel.spec 24 Feb 2009 06:57:05 -0000 1.7 +++ cel.spec 24 Jul 2009 18:46:34 -0000 1.8 @@ -1,6 +1,6 @@ Name: cel Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Crystal Entity Layer Group: System Environment/Libraries License: LGPLv2+ @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:46:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:46:49 +0000 (UTC) Subject: rpms/celestia/devel celestia.spec,1.27,1.28 Message-ID: <20090724184649.1353211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/celestia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25395 Modified Files: celestia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: celestia.spec =================================================================== RCS file: /cvs/pkgs/rpms/celestia/devel/celestia.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- celestia.spec 12 Apr 2009 15:18:33 -0000 1.27 +++ celestia.spec 24 Jul 2009 18:46:48 -0000 1.28 @@ -1,6 +1,6 @@ Name: celestia Version: 1.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OpenGL real-time visual space simulation Group: Applications/Emulators License: GPLv2+ @@ -129,6 +129,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Lubomir Rintel - 1.5.1-1 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 18:47:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:47:02 +0000 (UTC) Subject: rpms/cellwriter/devel cellwriter.spec,1.5,1.6 Message-ID: <20090724184702.DD4B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cellwriter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25586 Modified Files: cellwriter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cellwriter.spec =================================================================== RCS file: /cvs/pkgs/rpms/cellwriter/devel/cellwriter.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cellwriter.spec 24 Feb 2009 06:58:47 -0000 1.5 +++ cellwriter.spec 24 Jul 2009 18:47:02 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Grid-entry natural handwriting input panel Name: cellwriter Version: 1.3.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: User Interface/X Hardware Support URL: http://risujin.org/cellwriter/ @@ -65,6 +65,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:47:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:47:17 +0000 (UTC) Subject: rpms/celt/devel celt.spec,1.4,1.5 Message-ID: <20090724184717.48A6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/celt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25773 Modified Files: celt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: celt.spec =================================================================== RCS file: /cvs/pkgs/rpms/celt/devel/celt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- celt.spec 6 Jul 2009 10:17:21 -0000 1.4 +++ celt.spec 24 Jul 2009 18:47:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: celt Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An audio codec for use in low-delay speech and audio communication Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libcelt.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Peter Robinson 0.6.0-1 - New 0.6.0 upstream release From jkeating at fedoraproject.org Fri Jul 24 18:47:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:47:34 +0000 (UTC) Subject: rpms/centerim/devel centerim.spec,1.21,1.22 Message-ID: <20090724184734.5C59911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/centerim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26007 Modified Files: centerim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: centerim.spec =================================================================== RCS file: /cvs/pkgs/rpms/centerim/devel/centerim.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- centerim.spec 29 Apr 2009 17:29:05 -0000 1.21 +++ centerim.spec 24 Jul 2009 18:47:34 -0000 1.22 @@ -1,6 +1,6 @@ Name: centerim Version: 4.22.7 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Text mode menu- and window-driven IM @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:4.22.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Lubomir Rintel - 1:4.22.7-1 - New upstream version - Re-enable SSL, provided by NSS From jkeating at fedoraproject.org Fri Jul 24 18:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:48:20 +0000 (UTC) Subject: rpms/cernlib/devel cernlib.spec,1.77,1.78 Message-ID: <20090724184820.6A0FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cernlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26449 Modified Files: cernlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cernlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/cernlib/devel/cernlib.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- cernlib.spec 24 Feb 2009 07:01:47 -0000 1.77 +++ cernlib.spec 24 Jul 2009 18:48:20 -0000 1.78 @@ -55,7 +55,7 @@ Name: %{?compat}cernlib%{?compiler} Version: 2006 -Release: 32%{?dist} +Release: 33%{?dist} Summary: General purpose CERN library Group: Development/Libraries # As explained in the cernlib on debian FAQ, cfortran can be considered LGPL. @@ -1435,6 +1435,9 @@ touch --no-create %{_datadir}/icons/hico %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2006-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2006-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:48:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:48:47 +0000 (UTC) Subject: rpms/cernlib-g77/devel cernlib-g77.spec,1.17,1.18 Message-ID: <20090724184847.AC5E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cernlib-g77/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26705 Modified Files: cernlib-g77.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cernlib-g77.spec =================================================================== RCS file: /cvs/pkgs/rpms/cernlib-g77/devel/cernlib-g77.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- cernlib-g77.spec 24 Feb 2009 07:02:48 -0000 1.17 +++ cernlib-g77.spec 24 Jul 2009 18:48:47 -0000 1.18 @@ -55,7 +55,7 @@ Name: %{?compat}cernlib%{?compiler} Version: 2006 -Release: 32%{?dist} +Release: 33%{?dist} Summary: General purpose CERN library Group: Development/Libraries # As explained in the cernlib on debian FAQ, cfortran can be considered LGPL. @@ -1435,6 +1435,9 @@ touch --no-create %{_datadir}/icons/hico %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2006-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2006-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:49:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:49:04 +0000 (UTC) Subject: rpms/certmaster/devel certmaster.spec,1.9,1.10 Message-ID: <20090724184904.1D0BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/certmaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26919 Modified Files: certmaster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: certmaster.spec =================================================================== RCS file: /cvs/pkgs/rpms/certmaster/devel/certmaster.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- certmaster.spec 8 Jul 2009 18:53:37 -0000 1.9 +++ certmaster.spec 24 Jul 2009 18:49:03 -0000 1.10 @@ -17,7 +17,7 @@ Summary: Remote certificate distribution framework Name: certmaster Version: 0.25 -Release: 1%{?dist} +Release: 2%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -149,6 +149,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Adrian Likins - 0.25-1 - add /var/lib/certmaster/certmaster* to spec and set perms - add /var/log/certmaster/certmaster.log,audit.log to spec From jkeating at fedoraproject.org Fri Jul 24 18:49:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:49:17 +0000 (UTC) Subject: rpms/cf-bonveno-fonts/devel cf-bonveno-fonts.spec,1.5,1.6 Message-ID: <20090724184917.E7B6011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cf-bonveno-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27078 Modified Files: cf-bonveno-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cf-bonveno-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/cf-bonveno-fonts/devel/cf-bonveno-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cf-bonveno-fonts.spec 15 Mar 2009 21:21:10 -0000 1.5 +++ cf-bonveno-fonts.spec 24 Jul 2009 18:49:17 -0000 1.6 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 1.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A fun font by Barry Schwartz Group: User Interface/X @@ -72,6 +72,9 @@ rm -rf %{buildroot} %dir %{_fontdir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Ankur Sinha - 1.1-8 - Changed according to #490371 From jkeating at fedoraproject.org Fri Jul 24 18:49:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:49:31 +0000 (UTC) Subject: rpms/cfdg/devel cfdg.spec,1.5,1.6 Message-ID: <20090724184931.7FBA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cfdg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27275 Modified Files: cfdg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cfdg.spec =================================================================== RCS file: /cvs/pkgs/rpms/cfdg/devel/cfdg.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cfdg.spec 16 Jun 2009 18:34:57 -0000 1.5 +++ cfdg.spec 24 Jul 2009 18:49:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: cfdg Version: 2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Context Free Design Grammar Group: Amusements/Games @@ -67,6 +67,9 @@ rm -rf %{buildroot} %doc input/* LICENSE.txt README.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Jon Ciesla - 2.2-3 - Rebuild due to 505774. From jkeating at fedoraproject.org Fri Jul 24 18:49:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:49:47 +0000 (UTC) Subject: rpms/cfdg-fe/devel cfdg-fe.spec,1.3,1.4 Message-ID: <20090724184947.5970111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cfdg-fe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27443 Modified Files: cfdg-fe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cfdg-fe.spec =================================================================== RCS file: /cvs/pkgs/rpms/cfdg-fe/devel/cfdg-fe.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cfdg-fe.spec 24 Feb 2009 07:06:36 -0000 1.3 +++ cfdg-fe.spec 24 Jul 2009 18:49:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: cfdg-fe Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A front end to cfdg Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_datadir}/cfdg-fe/logo.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:50:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:50:00 +0000 (UTC) Subject: rpms/cfengine/devel cfengine.spec,1.40,1.41 Message-ID: <20090724185000.7D5C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cfengine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27590 Modified Files: cfengine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cfengine.spec =================================================================== RCS file: /cvs/pkgs/rpms/cfengine/devel/cfengine.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- cfengine.spec 19 May 2009 22:22:47 -0000 1.40 +++ cfengine.spec 24 Jul 2009 18:50:00 -0000 1.41 @@ -1,7 +1,7 @@ Summary: A systems administration tool for networks Name: cfengine Version: 2.2.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: ftp://ftp.iu.hio.no/pub/cfengine/cfengine-2.2.10.tar.gz @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Jeff Sheltren 2.2.10-1 - Update to upstream 2.2.10 - Remove db-4.7 patch as it is now included upstream From pkgdb at fedoraproject.org Fri Jul 24 18:50:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 18:50:12 +0000 Subject: [pkgdb] kernel: quintela has given up watchbugzilla Message-ID: <20090724185012.A35FB10F8AC@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on kernel (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From jkeating at fedoraproject.org Fri Jul 24 18:50:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:50:13 +0000 (UTC) Subject: rpms/cflow/devel cflow.spec,1.2,1.3 Message-ID: <20090724185013.A4B3211C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cflow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27760 Modified Files: cflow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cflow.spec =================================================================== RCS file: /cvs/pkgs/rpms/cflow/devel/cflow.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cflow.spec 24 Feb 2009 07:08:20 -0000 1.2 +++ cflow.spec 24 Jul 2009 18:50:13 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Analyzes C files charting control flow within the program Name: cflow Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Languages URL: http://www.gnu.org/software/cflow/ @@ -56,6 +56,9 @@ fi %{_datadir}/emacs/site-lisp/%{name}-mode.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 18:50:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 18:50:29 +0000 Subject: [pkgdb] kernel: quintela has given up watchbugzilla Message-ID: <20090724185029.D4B4910F897@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on kernel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From mtasaka at fedoraproject.org Fri Jul 24 18:50:35 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:50:35 +0000 (UTC) Subject: rpms/mfiler3/devel mfiler3.spec,1.18,1.19 Message-ID: <20090724185035.7349011C04D5@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mfiler3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28009 Modified Files: mfiler3.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.1.3-3 - F-12: Mass rebuild Index: mfiler3.spec =================================================================== RCS file: /cvs/extras/rpms/mfiler3/devel/mfiler3.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- mfiler3.spec 24 Feb 2009 04:00:47 -0000 1.18 +++ mfiler3.spec 24 Jul 2009 18:50:35 -0000 1.19 @@ -3,7 +3,7 @@ Name: mfiler3 Version: 2.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Two pane file manager under UNIX console Group: Applications/Editors @@ -103,6 +103,9 @@ This package supports drag and drop usag %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.1.3-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 2.1.3-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:50:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:50:29 +0000 (UTC) Subject: rpms/cfv/devel cfv.spec,1.9,1.10 Message-ID: <20090724185030.0189311C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cfv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27907 Modified Files: cfv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cfv.spec =================================================================== RCS file: /cvs/pkgs/rpms/cfv/devel/cfv.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cfv.spec 24 Feb 2009 07:09:15 -0000 1.9 +++ cfv.spec 24 Jul 2009 18:50:29 -0000 1.10 @@ -1,6 +1,6 @@ Name: cfv Version: 1.18.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A utility to test and create data verification files Group: Applications/Archiving @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.18.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 18:50:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 18:50:43 +0000 Subject: [pkgdb] kernel: quintela has given up watchbugzilla Message-ID: <20090724185043.C8A9910F8AD@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on kernel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From jkeating at fedoraproject.org Fri Jul 24 18:50:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:50:46 +0000 (UTC) Subject: rpms/cgdb/devel cgdb.spec,1.6,1.7 Message-ID: <20090724185046.6B8C711C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cgdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28138 Modified Files: cgdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cgdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/cgdb/devel/cgdb.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cgdb.spec 24 Feb 2009 07:10:08 -0000 1.6 +++ cgdb.spec 24 Jul 2009 18:50:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: cgdb Version: 0.6.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: CGDB is a curses-based interface to the GNU Debugger (GDB) Group: Development/Debuggers @@ -71,6 +71,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.6.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:51:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:51:00 +0000 (UTC) Subject: rpms/cgit/devel cgit.spec,1.5,1.6 Message-ID: <20090724185101.0D2E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cgit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28339 Modified Files: cgit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cgit.spec =================================================================== RCS file: /cvs/pkgs/rpms/cgit/devel/cgit.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cgit.spec 15 Mar 2009 23:56:44 -0000 1.5 +++ cgit.spec 24 Jul 2009 18:51:00 -0000 1.6 @@ -17,7 +17,7 @@ make V=1 %{?_smp_mflags} \\\ Name: cgit Version: 0.8.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A fast webinterface for git Group: Development/Tools @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Todd Zullinger - 0.8.2.1-1 - Update to 0.8.2.1 From jkeating at fedoraproject.org Fri Jul 24 18:51:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:51:16 +0000 (UTC) Subject: rpms/cgoban/devel cgoban.spec,1.15,1.16 Message-ID: <20090724185116.484CC11C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cgoban/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28501 Modified Files: cgoban.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cgoban.spec =================================================================== RCS file: /cvs/pkgs/rpms/cgoban/devel/cgoban.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cgoban.spec 27 Feb 2009 21:56:03 -0000 1.15 +++ cgoban.spec 24 Jul 2009 18:51:16 -0000 1.16 @@ -1,6 +1,6 @@ Name: cgoban Version: 1.9.14 -Release: 11%{?dist} +Release: 12%{?dist} Summary: X board for playing go Group: Amusements/Games License: GPLv2+ @@ -50,6 +50,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.14-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Chris Ricker 1.9.14-11 - resubmit for build issues From jkeating at fedoraproject.org Fri Jul 24 18:51:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:51:31 +0000 (UTC) Subject: rpms/check/devel check.spec,1.12,1.13 Message-ID: <20090724185131.CB55D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/check/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28668 Modified Files: check.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: check.spec =================================================================== RCS file: /cvs/pkgs/rpms/check/devel/check.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- check.spec 7 Apr 2009 15:03:14 -0000 1.12 +++ check.spec 24 Jul 2009 18:51:31 -0000 1.13 @@ -1,6 +1,6 @@ Name: check Version: 0.9.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A unit test framework for C Source0: http://download.sourceforge.net/check/%{name}-%{version}.tar.gz # This patch fixes debian bug 519597: use of -ansi conflicts with strdup() @@ -86,6 +86,9 @@ fi %{_libdir}/libcheck.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Jerry James - 0.9.6-3 - Add check-0.9.6-strdup.patch From jkeating at fedoraproject.org Fri Jul 24 18:51:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:51:46 +0000 (UTC) Subject: rpms/checkdns/devel checkdns.spec,1.2,1.3 Message-ID: <20090724185146.B669111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/checkdns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28812 Modified Files: checkdns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: checkdns.spec =================================================================== RCS file: /cvs/pkgs/rpms/checkdns/devel/checkdns.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- checkdns.spec 24 Feb 2009 07:13:36 -0000 1.2 +++ checkdns.spec 24 Jul 2009 18:51:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: checkdns Version: 0.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A Domain Name Server analysis and reporting tool Group: Applications/Internet @@ -70,6 +70,9 @@ getent passwd checkdns >/dev/null || use %config(noreplace) %{_localstatedir}/www/html/%{name}/checkdns.css %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:52:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:52:01 +0000 (UTC) Subject: rpms/checkgmail/devel checkgmail.spec,1.5,1.6 Message-ID: <20090724185201.A476F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/checkgmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28984 Modified Files: checkgmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: checkgmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/checkgmail/devel/checkgmail.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- checkgmail.spec 24 Feb 2009 07:14:29 -0000 1.5 +++ checkgmail.spec 24 Jul 2009 18:52:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: checkgmail Version: 1.13 -Release: 4.svn20080730%{?dist} +Release: 5.svn20080730%{?dist} Summary: System Tray Application that checks a Gmail Account for New Mail Group: Applications/Internet License: GPLv2+ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.13-5.svn20080730 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.13-4.svn20080730 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:52:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:52:16 +0000 (UTC) Subject: rpms/checkpolicy/devel checkpolicy.spec,1.135,1.136 Message-ID: <20090724185216.E983111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/checkpolicy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29123 Modified Files: checkpolicy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: checkpolicy.spec =================================================================== RCS file: /cvs/pkgs/rpms/checkpolicy/devel/checkpolicy.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- checkpolicy.spec 24 Feb 2009 07:15:25 -0000 1.135 +++ checkpolicy.spec 24 Jul 2009 18:52:16 -0000 1.136 @@ -2,7 +2,7 @@ Summary: SELinux policy compiler Name: checkpolicy Version: 2.0.19 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Development/System Source: http://www.nsa.gov/selinux/archives/%{name}-%{version}.tgz @@ -55,6 +55,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_bindir}/sedispol %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 2.0.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:52:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:52:34 +0000 (UTC) Subject: rpms/checkstyle/devel checkstyle.spec,1.5,1.6 Message-ID: <20090724185234.D6C0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/checkstyle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29274 Modified Files: checkstyle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: checkstyle.spec =================================================================== RCS file: /cvs/pkgs/rpms/checkstyle/devel/checkstyle.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- checkstyle.spec 24 Feb 2009 07:16:21 -0000 1.5 +++ checkstyle.spec 24 Jul 2009 18:52:34 -0000 1.6 @@ -30,7 +30,7 @@ Name: checkstyle Version: 4.1 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 0 Summary: Java source code checker # src/checkstyle/com/puppycrawl/tools/checkstyle/grammars/java.g is GPLv2+ @@ -275,6 +275,9 @@ fi %{_javadir}/%{name}-optional-%{version}.jar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:4.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:52:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:52:50 +0000 (UTC) Subject: rpms/cheese/devel cheese.spec,1.55,1.56 Message-ID: <20090724185250.1B33311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cheese/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29434 Modified Files: cheese.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cheese.spec =================================================================== RCS file: /cvs/pkgs/rpms/cheese/devel/cheese.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- cheese.spec 14 Jul 2009 03:39:51 -0000 1.55 +++ cheese.spec 24 Jul 2009 18:52:49 -0000 1.56 @@ -1,6 +1,6 @@ Name: cheese Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Application for taking pictures and movies from a webcam Group: Amusements/Graphics @@ -123,6 +123,9 @@ fi %{_datadir}/dbus-1/services/org.gnome.Cheese.service %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 18:53:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:53:04 +0000 (UTC) Subject: rpms/chemical-mime-data/devel chemical-mime-data.spec,1.8,1.9 Message-ID: <20090724185304.D8BAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chemical-mime-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29576 Modified Files: chemical-mime-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chemical-mime-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/chemical-mime-data/devel/chemical-mime-data.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- chemical-mime-data.spec 4 Mar 2009 22:25:15 -0000 1.8 +++ chemical-mime-data.spec 24 Jul 2009 18:53:04 -0000 1.9 @@ -1,6 +1,6 @@ Name: chemical-mime-data Version: 0.1.94 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Support for chemical/* MIME types Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.94-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Julian Sikorski - 0.1.94-5 - Dropped the KDE MIME .desktop files From jkeating at fedoraproject.org Fri Jul 24 18:53:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:53:20 +0000 (UTC) Subject: rpms/chemtool/devel chemtool.spec,1.8,1.9 Message-ID: <20090724185320.D003611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chemtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29735 Modified Files: chemtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chemtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/chemtool/devel/chemtool.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- chemtool.spec 24 Feb 2009 07:18:12 -0000 1.8 +++ chemtool.spec 24 Jul 2009 18:53:20 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A program for 2D drawing organic molecules Name: chemtool Version: 1.6.11 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Editors Source0: http://ruby.chemie.uni-freiburg.de/~martin/chemtool/%{name}-%{version}.tar.gz @@ -88,6 +88,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:53:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:53:36 +0000 (UTC) Subject: rpms/cherokee/devel cherokee.spec,1.18,1.19 Message-ID: <20090724185336.D398211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cherokee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29881 Modified Files: cherokee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cherokee.spec =================================================================== RCS file: /cvs/pkgs/rpms/cherokee/devel/cherokee.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cherokee.spec 11 Jul 2009 20:58:52 -0000 1.18 +++ cherokee.spec 24 Jul 2009 18:53:36 -0000 1.19 @@ -11,7 +11,7 @@ ExcludeArch: ppc Name: cherokee Version: 0.99.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Flexible and Fast Webserver Group: Applications/Internet @@ -168,6 +168,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Pavel Lisy - 0.99.20-1 - updated to 0.99.20 From jkeating at fedoraproject.org Fri Jul 24 18:53:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:53:57 +0000 (UTC) Subject: rpms/chess/devel chess.spec,1.28,1.29 Message-ID: <20090724185357.CB46911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30085 Modified Files: chess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chess.spec =================================================================== RCS file: /cvs/pkgs/rpms/chess/devel/chess.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- chess.spec 23 May 2009 17:27:02 -0000 1.28 +++ chess.spec 24 Jul 2009 18:53:57 -0000 1.29 @@ -1,6 +1,6 @@ Name: chess Version: 1.0 -Release: 25%{?dist} +Release: 26%{?dist} Summary: 3D chess game Group: Amusements/Games License: GPLv2+ @@ -87,6 +87,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Hans de Goede 1.0-25 - Rebuild for new ogre and new boost From jkeating at fedoraproject.org Fri Jul 24 18:54:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:54:15 +0000 (UTC) Subject: rpms/childsplay/devel childsplay.spec,1.19,1.20 Message-ID: <20090724185415.16E7C11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/childsplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30298 Modified Files: childsplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: childsplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/childsplay/devel/childsplay.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- childsplay.spec 23 May 2009 08:19:21 -0000 1.19 +++ childsplay.spec 24 Jul 2009 18:54:14 -0000 1.20 @@ -3,7 +3,7 @@ Name: childsplay Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Suite of educational games for young children Group: Amusements/Games License: GPLv3 @@ -267,6 +267,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Johan Cwiklinski 1.3-1 - 1.3 From jkeating at fedoraproject.org Fri Jul 24 18:54:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:54:31 +0000 (UTC) Subject: rpms/chipmunk/devel chipmunk.spec,1.5,1.6 Message-ID: <20090724185431.4FD0711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chipmunk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30476 Modified Files: chipmunk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chipmunk.spec =================================================================== RCS file: /cvs/pkgs/rpms/chipmunk/devel/chipmunk.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- chipmunk.spec 10 Mar 2009 17:47:32 -0000 1.5 +++ chipmunk.spec 24 Jul 2009 18:54:31 -0000 1.6 @@ -1,7 +1,7 @@ %{!?ruby_sitearch: %define ruby_sitearch %(ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']")} Name: chipmunk Version: 4.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Physics engine for 2D games Group: Development/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Jon Ciesla - 4.1.0-6 - ruby extension fix, BZ 489187. From jkeating at fedoraproject.org Fri Jul 24 18:54:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:54:47 +0000 (UTC) Subject: rpms/chisholm-letterslaughing-fonts/devel chisholm-letterslaughing-fonts.spec, 1.1, 1.2 Message-ID: <20090724185447.20B3511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chisholm-letterslaughing-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30668 Modified Files: chisholm-letterslaughing-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chisholm-letterslaughing-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/chisholm-letterslaughing-fonts/devel/chisholm-letterslaughing-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chisholm-letterslaughing-fonts.spec 8 Apr 2009 06:49:44 -0000 1.1 +++ chisholm-letterslaughing-fonts.spec 24 Jul 2009 18:54:47 -0000 1.2 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 20030323 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Letters Laughing is a decorative/LED sans-serif font Group: User Interface/X @@ -48,6 +48,9 @@ rm -rf %{buildroot} %_font_pkg -f %{fontconf} *.ttf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20030323-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 23 2009 Ankur Sinha - 20030323-1 - Initial RPM build From jkeating at fedoraproject.org Fri Jul 24 18:55:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:55:04 +0000 (UTC) Subject: rpms/chisholm-to-be-continued-fonts/devel chisholm-to-be-continued-fonts.spec, 1.4, 1.5 Message-ID: <20090724185504.BEB5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chisholm-to-be-continued-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30942 Modified Files: chisholm-to-be-continued-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chisholm-to-be-continued-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/chisholm-to-be-continued-fonts/devel/chisholm-to-be-continued-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- chisholm-to-be-continued-fonts.spec 24 Feb 2009 07:23:44 -0000 1.4 +++ chisholm-to-be-continued-fonts.spec 24 Jul 2009 18:55:04 -0000 1.5 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 20090124 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Decorative Sans Serif Font Group: User Interface/X @@ -52,6 +52,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090124-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20090124-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:55:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:55:21 +0000 (UTC) Subject: rpms/chkconfig/devel chkconfig.spec,1.55,1.56 Message-ID: <20090724185521.68BCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chkconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31127 Modified Files: chkconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chkconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/chkconfig/devel/chkconfig.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- chkconfig.spec 9 Mar 2009 20:01:18 -0000 1.55 +++ chkconfig.spec 24 Jul 2009 18:55:21 -0000 1.56 @@ -1,7 +1,7 @@ Summary: A system tool for maintaining the /etc/rc*.d hierarchy Name: chkconfig Version: 1.3.42 -Release: 1 +Release: 2 License: GPLv2 Group: System Environment/Base Source: %{name}-%{version}.tar.bz2 @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/ntsysv.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.42-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Bill Nottingham 1.3.42-1 - further LSB fixes (#474223) - throw errors on various malformed init scripts (#481198) From jkeating at fedoraproject.org Fri Jul 24 18:55:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:55:36 +0000 (UTC) Subject: rpms/chkrootkit/devel chkrootkit.spec,1.38,1.39 Message-ID: <20090724185536.C3D0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chkrootkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31306 Modified Files: chkrootkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chkrootkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/chkrootkit/devel/chkrootkit.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- chkrootkit.spec 22 Jul 2009 13:14:02 -0000 1.38 +++ chkrootkit.spec 24 Jul 2009 18:55:36 -0000 1.39 @@ -1,6 +1,6 @@ Name: chkrootkit Version: 0.48 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Tool to locally check for signs of a rootkit Group: Applications/System License: BSD and GPLv2+ and Python @@ -125,6 +125,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.48-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Jon Ciesla 0.48-13 - Additional items in chkutmp patch. From jkeating at fedoraproject.org Fri Jul 24 18:55:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:55:53 +0000 (UTC) Subject: rpms/chktex/devel chktex.spec,1.3,1.4 Message-ID: <20090724185553.EE6ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chktex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31532 Modified Files: chktex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chktex.spec =================================================================== RCS file: /cvs/pkgs/rpms/chktex/devel/chktex.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- chktex.spec 24 Feb 2009 07:26:28 -0000 1.3 +++ chktex.spec 24 Jul 2009 18:55:53 -0000 1.4 @@ -1,7 +1,7 @@ Summary: LaTex semantic checker Name: chktex Version: 1.6.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Engineering Source0: http://baruch.ev-en.org/proj/chktex/%{name}-%{version}.tar.gz @@ -51,6 +51,9 @@ Filters are also provided for checking t %{_mandir}/man1/deweb.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.6.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:56:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:56:08 +0000 (UTC) Subject: rpms/chm2pdf/devel chm2pdf.spec,1.4,1.5 Message-ID: <20090724185608.C246C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chm2pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31716 Modified Files: chm2pdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chm2pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/chm2pdf/devel/chm2pdf.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- chm2pdf.spec 24 Feb 2009 07:27:23 -0000 1.4 +++ chm2pdf.spec 24 Jul 2009 18:56:08 -0000 1.5 @@ -2,7 +2,7 @@ Name: chm2pdf Version: 0.9.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A tool to convert CHM files to PDF files Group: Applications/Publishing License: GPLv2+ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.9.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:56:29 +0000 (UTC) Subject: rpms/chmlib/devel chmlib.spec,1.18,1.19 Message-ID: <20090724185629.220EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chmlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31959 Modified Files: chmlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chmlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmlib/devel/chmlib.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- chmlib.spec 28 May 2009 19:32:42 -0000 1.18 +++ chmlib.spec 24 Jul 2009 18:56:28 -0000 1.19 @@ -1,7 +1,7 @@ Name: chmlib Summary: Library for dealing with ITSS/CHM format files Version: 0.40 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries Url: http://www.jedrea.com/chmlib/ @@ -60,6 +60,9 @@ Files needed for developing apps using c %{_libdir}/libchm.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Peter Lemenkov 0.40-1 - Ver. 0.40 From jkeating at fedoraproject.org Fri Jul 24 18:56:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:56:42 +0000 (UTC) Subject: rpms/chmsee/devel chmsee.spec,1.31,1.32 Message-ID: <20090724185642.D2AE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chmsee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32151 Modified Files: chmsee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chmsee.spec =================================================================== RCS file: /cvs/pkgs/rpms/chmsee/devel/chmsee.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- chmsee.spec 13 Jul 2009 01:36:24 -0000 1.31 +++ chmsee.spec 24 Jul 2009 18:56:42 -0000 1.32 @@ -1,6 +1,6 @@ Name: chmsee Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary(zh_CN): CHM ??????, ?? Gtk2+ Summary: A Gtk+2 CHM document viewer Group: Applications/Publishing @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man1/chmsee*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 bbbush - 1.0.6-1 - update to 1.0.6 - update project location. Chmsee moved to google code since 2009-01-05, From jkeating at fedoraproject.org Fri Jul 24 18:56:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:56:58 +0000 (UTC) Subject: rpms/chntpw/devel chntpw.spec,1.10,1.11 Message-ID: <20090724185658.0097B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chntpw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32334 Modified Files: chntpw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chntpw.spec =================================================================== RCS file: /cvs/pkgs/rpms/chntpw/devel/chntpw.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- chntpw.spec 22 Jul 2009 14:29:23 -0000 1.10 +++ chntpw.spec 24 Jul 2009 18:56:57 -0000 1.11 @@ -1,7 +1,7 @@ Name: chntpw # Version is taken from HISTORY.txt Version: 0.99.6 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Change passwords in Windows SAM files Group: Applications/Engineering License: GPLv2 @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Richard W.M. Jones - 0.99.6-12 - Two^W Three more patches from Jim Meyering to improve general code quality. From pbrobinson at fedoraproject.org Fri Jul 24 18:56:59 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Fri, 24 Jul 2009 18:56:59 +0000 (UTC) Subject: rpms/bognor-regis/devel .cvsignore, 1.5, 1.6 bognor-regis.spec, 1.6, 1.7 sources, 1.5, 1.6 Message-ID: <20090724185659.1AA3011C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/bognor-regis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32356 Modified Files: .cvsignore bognor-regis.spec sources Log Message: - New upstream 0.4.9 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 23 Jul 2009 13:29:22 -0000 1.5 +++ .cvsignore 24 Jul 2009 18:56:58 -0000 1.6 @@ -1 +1 @@ -bognor-regis-0.4.8.tar.bz2 +bognor-regis-0.4.9.tar.bz2 Index: bognor-regis.spec =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/bognor-regis.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- bognor-regis.spec 24 Jul 2009 18:18:05 -0000 1.6 +++ bognor-regis.spec 24 Jul 2009 18:56:58 -0000 1.7 @@ -1,6 +1,6 @@ Name: bognor-regis -Version: 0.4.8 -Release: 3%{?dist} +Version: 0.4.9 +Release: 1%{?dist} Summary: Media daemon and play queue manager Group: Applications/Multimedia @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_libdir}/libbognor-regis-0.4.so %changelog +* Fri Jul 24 2009 Peter Robinson 0.4.9-1 +- New upstream 0.4.9 release + * Fri Jul 24 2009 Fedora Release Engineering - 0.4.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bognor-regis/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 23 Jul 2009 13:29:22 -0000 1.5 +++ sources 24 Jul 2009 18:56:58 -0000 1.6 @@ -1 +1 @@ -19f7bed43c3615ae1ba44f0bd008a771 bognor-regis-0.4.8.tar.bz2 +100078c9bac85f59f0b42aa750c95221 bognor-regis-0.4.9.tar.bz2 From jkeating at fedoraproject.org Fri Jul 24 18:57:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:57:10 +0000 (UTC) Subject: rpms/choqok/devel choqok.spec,1.6,1.7 Message-ID: <20090724185710.C8EB311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/choqok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32595 Modified Files: choqok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: choqok.spec =================================================================== RCS file: /cvs/pkgs/rpms/choqok/devel/choqok.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- choqok.spec 13 Jun 2009 18:52:12 -0000 1.6 +++ choqok.spec 24 Jul 2009 18:57:10 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Choqok KDE Micro-Blogging Client Name: choqok Version: 0.6.1 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv3 Group: Applications/Internet URL: http://choqok.gnufolks.org/ @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_kde4_sharedir}/config.kcfg/choqok.kcfg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Tejas Dinkar - 0.6.1-7 - Choqok 0.6.1 is out with the below two patches * Sat Jun 13 2009 Tejas Dinkar - 0.6-6 From jkeating at fedoraproject.org Fri Jul 24 18:57:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:57:24 +0000 (UTC) Subject: rpms/chromium-bsu/devel chromium-bsu.spec,1.1,1.2 Message-ID: <20090724185724.9029611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chromium-bsu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32759 Modified Files: chromium-bsu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chromium-bsu.spec =================================================================== RCS file: /cvs/pkgs/rpms/chromium-bsu/devel/chromium-bsu.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- chromium-bsu.spec 27 May 2009 17:20:16 -0000 1.1 +++ chromium-bsu.spec 24 Jul 2009 18:57:24 -0000 1.2 @@ -1,6 +1,6 @@ Name: chromium-bsu Version: 0.9.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast paced, arcade-style, top-scrolling space shooter Group: Amusements/Games License: Artistic clarified @@ -72,6 +72,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Hans de Goede 0.9.14-3 - Fix build errors (#502191) From jkeating at fedoraproject.org Fri Jul 24 18:57:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:57:37 +0000 (UTC) Subject: rpms/chrony/devel chrony.spec,1.5,1.6 Message-ID: <20090724185737.E47CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chrony/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv445 Modified Files: chrony.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chrony.spec =================================================================== RCS file: /cvs/pkgs/rpms/chrony/devel/chrony.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- chrony.spec 17 Jul 2009 12:53:22 -0000 1.5 +++ chrony.spec 24 Jul 2009 18:57:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: chrony Version: 1.23 -Release: 6.20081106gitbe42b4%{?dist} +Release: 7.20081106gitbe42b4%{?dist} Summary: An NTP client/server Group: System Environment/Daemons @@ -124,6 +124,9 @@ fi %dir %attr(-,chrony,chrony) %{_localstatedir}/log/chrony %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.23-7.20081106gitbe42b4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Miroslav Lichvar 1.23-6.20081106gitbe42b4 - switch to editline - support arbitrary chronyc commands in init script From mtruch at fedoraproject.org Fri Jul 24 18:58:01 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 18:58:01 +0000 (UTC) Subject: rpms/kst/devel .cvsignore,1.9,1.10 sources,1.9,1.10 Message-ID: <20090724185801.52E2F11C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv665 Modified Files: .cvsignore sources Log Message: New 1.8.0 upstream tarball. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kst/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 20 Sep 2008 00:31:54 -0000 1.9 +++ .cvsignore 24 Jul 2009 18:58:01 -0000 1.10 @@ -1 +1 @@ -kst-1.7.0.tar.gz +kst-1.8.0.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/kst/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 20 Sep 2008 00:31:54 -0000 1.9 +++ sources 24 Jul 2009 18:58:01 -0000 1.10 @@ -1 +1 @@ -69db059134c9f9df0875ce89f5b178f7 kst-1.7.0.tar.gz +fd137c317d46e268cff630e2a9bc3461 kst-1.8.0.tar.gz From jkeating at fedoraproject.org Fri Jul 24 18:57:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:57:53 +0000 (UTC) Subject: rpms/chrpath/devel chrpath.spec,1.7,1.8 Message-ID: <20090724185753.CE69A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chrpath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv658 Modified Files: chrpath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chrpath.spec =================================================================== RCS file: /cvs/pkgs/rpms/chrpath/devel/chrpath.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- chrpath.spec 23 Jul 2009 15:27:24 -0000 1.7 +++ chrpath.spec 24 Jul 2009 18:57:53 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Modify rpath of compiled programs Name: chrpath Version: 0.13 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: Development/Tools URL: ftp://ftp.hungry.com/pub/hungry/chrpath/ @@ -38,6 +38,9 @@ rm -rf %{buildroot} %{_mandir}/man1/chrpath.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Axel Thimm - 0.13-5 - Fix last entry in .dynamic (by Christian Krause ). From jkeating at fedoraproject.org Fri Jul 24 18:58:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:58:08 +0000 (UTC) Subject: rpms/chunkd/devel chunkd.spec,1.4,1.5 Message-ID: <20090724185808.EC62B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/chunkd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv854 Modified Files: chunkd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: chunkd.spec =================================================================== RCS file: /cvs/pkgs/rpms/chunkd/devel/chunkd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- chunkd.spec 22 Jul 2009 22:09:30 -0000 1.4 +++ chunkd.spec 24 Jul 2009 18:58:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: chunkd Version: 0.4 -Release: 0.5.g5f69efd9%{?dist} +Release: 0.6.g5f69efd9%{?dist} Summary: Data storage daemon for cloud computing Group: System Environment/Base @@ -95,6 +95,9 @@ fi %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-0.6.g5f69efd9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Jeff Garzik - 0.4-0.5.g5f69efd9 - remove ExcludeArch, now that cld is fixed From jkeating at fedoraproject.org Fri Jul 24 18:58:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:58:25 +0000 (UTC) Subject: rpms/cim-schema/devel cim-schema.spec,1.2,1.3 Message-ID: <20090724185825.1D4A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cim-schema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1059 Modified Files: cim-schema.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cim-schema.spec =================================================================== RCS file: /cvs/pkgs/rpms/cim-schema/devel/cim-schema.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cim-schema.spec 16 Jul 2009 19:01:41 -0000 1.2 +++ cim-schema.spec 24 Jul 2009 18:58:24 -0000 1.3 @@ -35,7 +35,7 @@ Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: 2.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Libraries License: DMTF BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -108,6 +108,9 @@ install -m 755 %{S:3} $RPM_BUILD_ROOT/us %doc ../%{name}-%{version}-docs/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Matt Domsch - 2.22.0-1.fc12 - add dist tag From jkeating at fedoraproject.org Fri Jul 24 18:58:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:58:41 +0000 (UTC) Subject: rpms/cinepaint/devel cinepaint.spec,1.22,1.23 Message-ID: <20090724185841.1FAE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cinepaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1232 Modified Files: cinepaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cinepaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/cinepaint/devel/cinepaint.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- cinepaint.spec 22 May 2009 16:42:56 -0000 1.22 +++ cinepaint.spec 24 Jul 2009 18:58:40 -0000 1.23 @@ -6,7 +6,7 @@ Name: cinepaint Version: %(echo %{cinever} |sed 's|-|.|') -Release: 13%{?dist} +Release: 14%{?dist} Summary: CinePaint is a tool for manipulating images Group: Applications/Multimedia @@ -219,6 +219,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.22.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 kwizart < kwizart at gmail.com > - 0.22.1-13 - Rebuild for ftgl (#501323) From mtasaka at fedoraproject.org Fri Jul 24 18:58:48 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:58:48 +0000 (UTC) Subject: rpms/migemo/devel migemo.spec,1.3,1.4 Message-ID: <20090724185849.0016111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/migemo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1384 Modified Files: migemo.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.40-11 - F-12: Mass rebuild Index: migemo.spec =================================================================== RCS file: /cvs/extras/rpms/migemo/devel/migemo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- migemo.spec 24 Feb 2009 04:00:47 -0000 1.3 +++ migemo.spec 24 Jul 2009 18:58:48 -0000 1.4 @@ -10,7 +10,7 @@ Name: migemo Version: %{migemover} -Release: 10%{?dist} +Release: 11%{?dist} Summary: Japanese incremental search tool Group: Applications/Text License: GPLv2 @@ -100,6 +100,9 @@ done %{xe_sitedir}/migemo.el* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.40-11 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.40-10 - Explicitly add the leading path for scripts under current path for bash 4.0 change From jkeating at fedoraproject.org Fri Jul 24 18:58:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:58:59 +0000 (UTC) Subject: rpms/cjet/devel cjet.spec,1.8,1.9 Message-ID: <20090724185859.2FF7311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cjet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1541 Modified Files: cjet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cjet.spec =================================================================== RCS file: /cvs/pkgs/rpms/cjet/devel/cjet.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cjet.spec 24 Feb 2009 07:34:18 -0000 1.8 +++ cjet.spec 24 Jul 2009 18:58:59 -0000 1.9 @@ -1,6 +1,6 @@ Name: cjet Version: 0.8.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Converts PCL data to Canon CaPSL III printer language Group: System Environment/Libraries @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %doc ChangeLog README COPYING TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0.8.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:59:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:59:15 +0000 (UTC) Subject: rpms/cjkuni-fonts/devel cjkuni-fonts.spec,1.11,1.12 Message-ID: <20090724185915.9951911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cjkuni-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1798 Modified Files: cjkuni-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cjkuni-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/cjkuni-fonts/devel/cjkuni-fonts.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- cjkuni-fonts.spec 15 May 2009 05:37:58 -0000 1.11 +++ cjkuni-fonts.spec 24 Jul 2009 18:59:15 -0000 1.12 @@ -18,7 +18,7 @@ the CJK Unifonts project. Name: %{fontname}-fonts Version: 0.2.20080216.1 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Chinese Unicode TrueType fonts in Ming and Kai face. License: Arphic Group: User Interface/X @@ -229,6 +229,9 @@ cd - %__rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.20080216.1-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Caius 'kaio' Chance - 0.2.20080216.1-25.fc12 - Rebuilt. From mtasaka at fedoraproject.org Fri Jul 24 18:59:27 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 18:59:27 +0000 (UTC) Subject: rpms/mirage/devel mirage.spec,1.18,1.19 Message-ID: <20090724185927.8A13611C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mirage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1951 Modified Files: mirage.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.9.3-4 - F-12: Mass rebuild Index: mirage.spec =================================================================== RCS file: /cvs/extras/rpms/mirage/devel/mirage.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- mirage.spec 24 Feb 2009 04:00:48 -0000 1.18 +++ mirage.spec 24 Jul 2009 18:59:27 -0000 1.19 @@ -2,7 +2,7 @@ Name: mirage Version: 0.9.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A fast and simple image viewer Group: Amusements/Graphics @@ -80,6 +80,9 @@ desktop-file-install \ %{_datadir}/applications/*%{name}.desktop %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.9.3-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.9.3-3 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 18:59:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:59:33 +0000 (UTC) Subject: rpms/cksfv/devel cksfv.spec,1.22,1.23 Message-ID: <20090724185933.16CE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cksfv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2056 Modified Files: cksfv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cksfv.spec =================================================================== RCS file: /cvs/pkgs/rpms/cksfv/devel/cksfv.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- cksfv.spec 24 Feb 2009 07:36:09 -0000 1.22 +++ cksfv.spec 24 Jul 2009 18:59:32 -0000 1.23 @@ -1,6 +1,6 @@ Name: cksfv Version: 1.3.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility to manipulate SFV files Group: Applications/File @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.3.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 18:59:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 18:59:48 +0000 (UTC) Subject: rpms/cl-asdf/devel cl-asdf.spec,1.3,1.4 Message-ID: <20090724185948.316F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cl-asdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2315 Modified Files: cl-asdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cl-asdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/cl-asdf/devel/cl-asdf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cl-asdf.spec 24 Feb 2009 07:37:02 -0000 1.3 +++ cl-asdf.spec 24 Jul 2009 18:59:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: cl-asdf Version: 20071110 -Release: 6%{?dist} +Release: 7%{?dist} Group: Development/Libraries Source: %{name}-%{version}.tar.bz2 Summary: Another System Definition Facility @@ -36,6 +36,9 @@ install -m 644 wild-modules.lisp %{build %{_datadir}/common-lisp/source/cl-asdf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20071110-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20071110-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:00:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:00:16 +0000 (UTC) Subject: rpms/clamav/devel clamav.spec,1.89,1.90 Message-ID: <20090724190017.0486A11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clamav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2619 Modified Files: clamav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clamav.spec =================================================================== RCS file: /cvs/pkgs/rpms/clamav/devel/clamav.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- clamav.spec 11 Jun 2009 07:27:31 -0000 1.89 +++ clamav.spec 24 Jul 2009 19:00:16 -0000 1.90 @@ -22,7 +22,7 @@ Summary: End-user tools for the Clam Antivirus scanner Name: clamav Version: 0.95.2 -Release: %release_func 1%{?snapshot:.%snapshot} +Release: %release_func 2%{?snapshot:.%snapshot} License: %{?with_unrar:proprietary}%{!?with_unrar:GPLv2} Group: Applications/File @@ -672,6 +672,9 @@ test "$1" != "0" || /sbin/initctl -q sto %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.95.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Enrico Scholz - 0.95.2-1 - updated to 0.95.2 From jkeating at fedoraproject.org Fri Jul 24 19:00:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:00:41 +0000 (UTC) Subject: rpms/clamtk/devel clamtk.spec,1.4,1.5 Message-ID: <20090724190041.BD41B11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clamtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2933 Modified Files: clamtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clamtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clamtk/devel/clamtk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- clamtk.spec 7 Mar 2009 14:28:17 -0000 1.4 +++ clamtk.spec 24 Jul 2009 19:00:41 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Easy to use front-end for ClamAV Name: clamtk Version: 4.10 -Release: 1%{dist} +Release: 2%{dist} License: GPL+ or Artistic Group: Applications/System URL: http://clamtk.sourceforge.net/ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Jerome Soyer - 4.10-1 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 19:01:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:01:00 +0000 (UTC) Subject: rpms/clanbomber/devel clanbomber.spec,1.11,1.12 Message-ID: <20090724190100.C2F4511C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clanbomber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3204 Modified Files: clanbomber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clanbomber.spec =================================================================== RCS file: /cvs/pkgs/rpms/clanbomber/devel/clanbomber.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- clanbomber.spec 24 Feb 2009 07:39:45 -0000 1.11 +++ clanbomber.spec 24 Jul 2009 19:01:00 -0000 1.12 @@ -1,6 +1,6 @@ Name: clanbomber Version: 1.05 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Lay bombs and Blast the other players of the field game using ClanLib Group: Amusements/Games License: GPLv2+ @@ -74,6 +74,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.05-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.05-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:01:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:01:20 +0000 (UTC) Subject: rpms/classads/devel classads.spec,1.5,1.6 Message-ID: <20090724190120.5E1B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/classads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3407 Modified Files: classads.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: classads.spec =================================================================== RCS file: /cvs/pkgs/rpms/classads/devel/classads.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- classads.spec 24 Feb 2009 07:40:55 -0000 1.5 +++ classads.spec 24 Jul 2009 19:01:19 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Condor's classified advertisement language Name: classads Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} License: ASL 2.0 Group: Development/Libraries URL: http://www.cs.wisc.edu/condor/classad/ @@ -137,6 +137,9 @@ make check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:01:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:01:40 +0000 (UTC) Subject: rpms/classpathx-jaf/devel classpathx-jaf.spec,1.27,1.28 Message-ID: <20090724190140.DA37B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/classpathx-jaf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3642 Modified Files: classpathx-jaf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: classpathx-jaf.spec =================================================================== RCS file: /cvs/pkgs/rpms/classpathx-jaf/devel/classpathx-jaf.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- classpathx-jaf.spec 24 Feb 2009 07:41:53 -0000 1.27 +++ classpathx-jaf.spec 24 Jul 2009 19:01:40 -0000 1.28 @@ -35,7 +35,7 @@ Name: classpathx-jaf Version: 1.0 -Release: 14.1%{?dist} +Release: 15.1%{?dist} Epoch: 0 Summary: GNU JavaBeans(tm) Activation Framework Group: System Environment/Libraries @@ -173,6 +173,9 @@ fi %ghost %{_javadocdir}/activation %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0-15.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.0-14.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:01:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:01:59 +0000 (UTC) Subject: rpms/classpathx-mail/devel classpathx-mail.spec,1.31,1.32 Message-ID: <20090724190159.2E2F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/classpathx-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3900 Modified Files: classpathx-mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: classpathx-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/classpathx-mail/devel/classpathx-mail.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- classpathx-mail.spec 24 Feb 2009 07:42:53 -0000 1.31 +++ classpathx-mail.spec 24 Jul 2009 19:01:58 -0000 1.32 @@ -37,7 +37,7 @@ Name: classpathx-mail Version: 1.1.1 -Release: 8.1%{?dist} +Release: 9.1%{?dist} Epoch: 0 Summary: GNU JavaMail(tm) @@ -242,6 +242,9 @@ fi %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1.1-9.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.1.1-8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:02:15 +0000 (UTC) Subject: rpms/classworlds/devel classworlds.spec,1.3,1.4 Message-ID: <20090724190215.9363A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/classworlds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4082 Modified Files: classworlds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: classworlds.spec =================================================================== RCS file: /cvs/pkgs/rpms/classworlds/devel/classworlds.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- classworlds.spec 24 Feb 2009 07:43:45 -0000 1.3 +++ classworlds.spec 24 Jul 2009 19:02:15 -0000 1.4 @@ -41,7 +41,7 @@ Name: classworlds Version: %{classworlds_version} -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 0 Summary: Classworlds Classloader Framework @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 0:1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:02:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:02:30 +0000 (UTC) Subject: rpms/claws-mail/devel claws-mail.spec,1.44,1.45 Message-ID: <20090724190230.3E17E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/claws-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4263 Modified Files: claws-mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: claws-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail/devel/claws-mail.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- claws-mail.spec 4 Jul 2009 16:22:22 -0000 1.44 +++ claws-mail.spec 24 Jul 2009 19:02:30 -0000 1.45 @@ -1,6 +1,6 @@ Name: claws-mail Version: 3.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The extended version of Sylpheed Group: Applications/Internet License: GPLv3+ @@ -223,6 +223,9 @@ touch -r NEWS ${RPM_BUILD_ROOT}%{_includ %{_libdir}/claws-mail/plugins/smime.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 04 2009 Andreas Bierfert - 3.7.2-1 - version upgrade From jkeating at fedoraproject.org Fri Jul 24 19:02:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:02:45 +0000 (UTC) Subject: rpms/claws-mail-plugins/devel claws-mail-plugins.spec,1.42,1.43 Message-ID: <20090724190245.92F9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/claws-mail-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4479 Modified Files: claws-mail-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: claws-mail-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/claws-mail-plugins/devel/claws-mail-plugins.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- claws-mail-plugins.spec 7 Jul 2009 04:42:02 -0000 1.42 +++ claws-mail-plugins.spec 24 Jul 2009 19:02:45 -0000 1.43 @@ -19,7 +19,7 @@ Name: claws-mail-plugins Version: 3.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Additional plugins for claws-mail Group: Applications/Internet @@ -606,6 +606,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/claws-mail/plugins/vcalendar/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Andreas Bierfert - 3.7.2-1 - version upgrade From jkeating at fedoraproject.org Fri Jul 24 19:02:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:02:59 +0000 (UTC) Subject: rpms/clc-intercal/devel clc-intercal.spec,1.1,1.2 Message-ID: <20090724190259.137D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clc-intercal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4677 Modified Files: clc-intercal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clc-intercal.spec =================================================================== RCS file: /cvs/pkgs/rpms/clc-intercal/devel/clc-intercal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- clc-intercal.spec 10 Mar 2009 15:45:06 -0000 1.1 +++ clc-intercal.spec 24 Jul 2009 19:02:58 -0000 1.2 @@ -1,7 +1,7 @@ %define perversion 1.-94.-2 Name: clc-intercal Version: 0 -Release: 0.1.%(echo %{perversion}|sed -e's/-/_/g')%{?dist} +Release: 0.2.%(echo %{perversion}|sed -e's/-/_/g')%{?dist} Summary: Compiler for the INTERCAL language License: BSD Group: Development/Libraries @@ -107,6 +107,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.2.1._94._2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jan 29 2009 Iain Arnell 0-0.0.1._94._2 - pre-pre-escape 1.-94.-2 From jkeating at fedoraproject.org Fri Jul 24 19:03:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:03:12 +0000 (UTC) Subject: rpms/cld/devel cld.spec,1.7,1.8 Message-ID: <20090724190312.E52FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4835 Modified Files: cld.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cld.spec =================================================================== RCS file: /cvs/pkgs/rpms/cld/devel/cld.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cld.spec 23 Jul 2009 19:57:18 -0000 1.7 +++ cld.spec 24 Jul 2009 19:03:12 -0000 1.8 @@ -1,6 +1,6 @@ Name: cld Version: 0.2 -Release: 0.7.g487d5fb5%{?dist} +Release: 0.8.g487d5fb5%{?dist} Summary: Coarse locking daemon Group: System Environment/Base @@ -100,6 +100,9 @@ fi %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-0.8.g487d5fb5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jeff Garzik - 0.2-0.7.g487d5fb5 - update to commit 487d5fb50be8275a0e0cd36a882acdf1afe9a922 - require chkconfig, initscripts per pkg guidelines From jkeating at fedoraproject.org Fri Jul 24 19:03:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:03:27 +0000 (UTC) Subject: rpms/cleanfeed/devel cleanfeed.spec,1.15,1.16 Message-ID: <20090724190327.0CC6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cleanfeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5015 Modified Files: cleanfeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cleanfeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/cleanfeed/devel/cleanfeed.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cleanfeed.spec 24 Feb 2009 07:46:33 -0000 1.15 +++ cleanfeed.spec 24 Jul 2009 19:03:26 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A spam filter for Usenet news servers. Name: cleanfeed Version: 20020501 -Release: 2%{?dist} +Release: 3%{?dist} # Confirmed with upstream, website License: Artistic 2.0 URL: http://www.bofh.it/~md/cleanfeed/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %attr(-,news,news) /usr/lib/news/bin/filter/filter_innd.pl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20020501-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20020501-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:03:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:03:41 +0000 (UTC) Subject: rpms/clearlooks-compact-gnome-theme/devel clearlooks-compact-gnome-theme.spec, 1.2, 1.3 Message-ID: <20090724190341.24F3E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clearlooks-compact-gnome-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5178 Modified Files: clearlooks-compact-gnome-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clearlooks-compact-gnome-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/clearlooks-compact-gnome-theme/devel/clearlooks-compact-gnome-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- clearlooks-compact-gnome-theme.spec 13 Apr 2009 16:09:10 -0000 1.2 +++ clearlooks-compact-gnome-theme.spec 24 Jul 2009 19:03:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: clearlooks-compact-gnome-theme Version: 1.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNOME Desktop theme optimized for small displays Group: User Interface/Desktops @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Lubomir Rintel - 1.5-2 - Require gtk-engines From jkeating at fedoraproject.org Fri Jul 24 19:03:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:03:59 +0000 (UTC) Subject: rpms/clearsilver/devel clearsilver.spec,1.22,1.23 Message-ID: <20090724190359.D9E1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clearsilver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5369 Modified Files: clearsilver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clearsilver.spec =================================================================== RCS file: /cvs/pkgs/rpms/clearsilver/devel/clearsilver.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- clearsilver.spec 24 Feb 2009 07:47:26 -0000 1.22 +++ clearsilver.spec 24 Jul 2009 19:03:59 -0000 1.23 @@ -2,7 +2,7 @@ Name: clearsilver Version: 0.10.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Fast and powerful HTML templating system Group: Development/Libraries # Technically, the license is "Neotonic ClearSilver", but it is a copy of @@ -171,6 +171,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:04:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:04:16 +0000 (UTC) Subject: rpms/clement/devel clement.spec,1.28,1.29 Message-ID: <20090724190416.9EF0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5550 Modified Files: clement.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clement.spec =================================================================== RCS file: /cvs/pkgs/rpms/clement/devel/clement.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- clement.spec 28 Apr 2009 01:00:34 -0000 1.28 +++ clement.spec 24 Jul 2009 19:04:16 -0000 1.29 @@ -19,7 +19,7 @@ #----------------------------------------------------------- Name: clement Version: %{rversion}.%{subversion} -Release: 4%{?locmark} +Release: 5%{?locmark} URL: http://www.clement.safe.ca License: GPLv2 Summary: An application to filter and manage E-mail traffic @@ -145,6 +145,9 @@ if [ "$1" = 0 ]; then %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.320-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 26 2009 Jean-Marc Pigeon 2.1.320-4 - adjustement * new version to check CVS behavior for Fedora From jkeating at fedoraproject.org Fri Jul 24 19:04:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:04:32 +0000 (UTC) Subject: rpms/clex/devel clex.spec,1.4,1.5 Message-ID: <20090724190432.3BB4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5727 Modified Files: clex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clex.spec =================================================================== RCS file: /cvs/pkgs/rpms/clex/devel/clex.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- clex.spec 24 Feb 2009 07:49:21 -0000 1.4 +++ clex.spec 24 Jul 2009 19:04:32 -0000 1.5 @@ -1,6 +1,6 @@ Name: clex Version: 3.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A free file manager with a full-screen user interface Group: Applications/File @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.18-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:04:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:04:49 +0000 (UTC) Subject: rpms/climm/devel climm.spec,1.10,1.11 Message-ID: <20090724190449.5A5EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/climm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5971 Modified Files: climm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: climm.spec =================================================================== RCS file: /cvs/pkgs/rpms/climm/devel/climm.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- climm.spec 18 May 2009 18:37:17 -0000 1.10 +++ climm.spec 24 Jul 2009 19:04:49 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Text/line based ICQ client with many features Name: climm Version: 0.7 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.climm.org/source/%{name}-%{version}.tgz URL: http://www.climm.org/ Group: Applications/Internet @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 J?n ONDREJ (SAL) - 0.7-1 - Update to upstream - Added BuildRequires: iksemel-devel to build jabber/XMPP support From jkeating at fedoraproject.org Fri Jul 24 19:05:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:05:04 +0000 (UTC) Subject: rpms/clipper/devel clipper.spec,1.10,1.11 Message-ID: <20090724190504.23EB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clipper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6164 Modified Files: clipper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clipper.spec =================================================================== RCS file: /cvs/pkgs/rpms/clipper/devel/clipper.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- clipper.spec 17 Jul 2009 20:43:24 -0000 1.10 +++ clipper.spec 24 Jul 2009 19:05:04 -0000 1.11 @@ -2,7 +2,7 @@ Name: clipper Summary: Clipper C++ crystallographic library URL: http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper.html Version: 2.1 -Release: 9.20090714cvs%{?dist} +Release: 10.20090714cvs%{?dist} License: LGPLv2+ Source0: http://www.ysbl.york.ac.uk/~cowtan/%{name}/%{name}-%{version}-090714-ac.tar.gz Source1: clipper.pc.in @@ -109,6 +109,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/clipper.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-10.20090714cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Tim Fenn - 2.1-9.20090714cvs - trim down patches, stick with upstream - add pkgconfig to buildrequires From jkeating at fedoraproject.org Fri Jul 24 19:05:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:05:24 +0000 (UTC) Subject: rpms/clips/devel clips.spec,1.12,1.13 Message-ID: <20090724190524.CAC8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clips/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6404 Modified Files: clips.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clips.spec =================================================================== RCS file: /cvs/pkgs/rpms/clips/devel/clips.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- clips.spec 3 Mar 2009 16:43:44 -0000 1.12 +++ clips.spec 24 Jul 2009 19:05:24 -0000 1.13 @@ -1,7 +1,7 @@ Summary: CLIPS language for developing expert systems Name: clips Version: 6.24 -Release: 27%{?dist} +Release: 28%{?dist} Url: http://clipsrules.sourceforge.net License: GPLv2 Group: Development/Tools @@ -207,6 +207,9 @@ fi %doc html/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.24-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Rick L Vinyard Jr 6.24-27 - Updated desktop entry file to add categories and remove deprecated items - Added hicolor-icon-theme requires to xclips From jkeating at fedoraproject.org Fri Jul 24 19:05:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:05:40 +0000 (UTC) Subject: rpms/clipsmm/devel clipsmm.spec,1.5,1.6 Message-ID: <20090724190540.7A92011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clipsmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6604 Modified Files: clipsmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clipsmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/clipsmm/devel/clipsmm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- clipsmm.spec 24 Feb 2009 07:52:07 -0000 1.5 +++ clipsmm.spec 24 Jul 2009 19:05:40 -0000 1.6 @@ -2,7 +2,7 @@ Summary: Clipsmm is a C++ wrapper for the CLIPS C library Name: clipsmm Version: 0.0.7 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 URL: http://clipsmm.sourceforge.net Group: System Environment/Libraries @@ -61,6 +61,9 @@ find %{buildroot} -type f -name "*.la" - %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:05:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:05:56 +0000 (UTC) Subject: rpms/clisp/devel clisp.spec,1.40,1.41 Message-ID: <20090724190556.D29B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clisp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6799 Modified Files: clisp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clisp.spec =================================================================== RCS file: /cvs/pkgs/rpms/clisp/devel/clisp.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- clisp.spec 1 Mar 2009 20:06:11 -0000 1.40 +++ clisp.spec 24 Jul 2009 19:05:56 -0000 1.41 @@ -1,7 +1,7 @@ Name: clisp Summary: Common Lisp (ANSI CL) implementation Version: 2.47 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: GPLv2 @@ -158,6 +158,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.47-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.47-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:06:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:06:13 +0000 (UTC) Subject: rpms/clive/devel clive.spec,1.19,1.20 Message-ID: <20090724190613.801CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6999 Modified Files: clive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clive.spec =================================================================== RCS file: /cvs/pkgs/rpms/clive/devel/clive.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- clive.spec 11 Jul 2009 23:14:09 -0000 1.19 +++ clive.spec 24 Jul 2009 19:06:13 -0000 1.20 @@ -1,6 +1,6 @@ Name: clive Version: 2.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Video extraction tool for user-uploaded video hosts Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Nicoleau Fabien 2.2.2-1 - Rebuild for 2.2.2 - Now using Makefile.PL install type From jkeating at fedoraproject.org Fri Jul 24 19:06:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:06:29 +0000 (UTC) Subject: rpms/cln/devel cln.spec,1.33,1.34 Message-ID: <20090724190629.7076B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cln/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7194 Modified Files: cln.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cln.spec =================================================================== RCS file: /cvs/pkgs/rpms/cln/devel/cln.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- cln.spec 5 Jul 2009 23:22:29 -0000 1.33 +++ cln.spec 24 Jul 2009 19:06:29 -0000 1.34 @@ -1,6 +1,6 @@ Name: cln Version: 1.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Class Library for Numbers Group: System Environment/Libraries @@ -86,6 +86,9 @@ fi %{_docdir}/%{name}-devel-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Deji Akingunola - 1.3.0-1 - Update to latest upstream release 1.3.0 From jkeating at fedoraproject.org Fri Jul 24 19:06:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:06:45 +0000 (UTC) Subject: rpms/clojure/devel clojure.spec,1.8,1.9 Message-ID: <20090724190645.2BEDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clojure/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7438 Modified Files: clojure.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clojure.spec =================================================================== RCS file: /cvs/pkgs/rpms/clojure/devel/clojure.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- clojure.spec 20 Mar 2009 16:52:35 -0000 1.8 +++ clojure.spec 24 Jul 2009 19:06:45 -0000 1.9 @@ -1,6 +1,6 @@ Name: clojure Version: 20090320 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A dynamic programming language that targets the Java Virtual Machine Group: Development/Languages @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_bindir}/clojure %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090320-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Colin Walters - 20090320 - New upstream From mtasaka at fedoraproject.org Fri Jul 24 19:06:59 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:06:59 +0000 (UTC) Subject: rpms/ochusha/devel ochusha.spec,1.102,1.103 Message-ID: <20090724190659.E368F11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ochusha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7614 Modified Files: ochusha.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - F-12: Mass rebuild Index: ochusha.spec =================================================================== RCS file: /cvs/extras/rpms/ochusha/devel/ochusha.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- ochusha.spec 12 Apr 2009 16:23:07 -0000 1.102 +++ ochusha.spec 24 Jul 2009 19:06:59 -0000 1.103 @@ -21,7 +21,7 @@ %define strtag cvs%{codate}T%{cotime_JST} %define repoid 36733 -%define vendor_rel 5 +%define vendor_rel 6 %define pre_release 1 %if %{pre_release} @@ -220,6 +220,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/48x48/apps/*.png %changelog +* Sat Jul 25 2009 Mamoru Tasaka +- F-12: Mass rebuild + * Mon Apr 13 2009 Mamoru Tasaka - Update to the latest CVS From jkeating at fedoraproject.org Fri Jul 24 19:07:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:07:01 +0000 (UTC) Subject: rpms/clonekeen/devel clonekeen.spec,1.6,1.7 Message-ID: <20090724190701.5693C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clonekeen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7641 Modified Files: clonekeen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clonekeen.spec =================================================================== RCS file: /cvs/pkgs/rpms/clonekeen/devel/clonekeen.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- clonekeen.spec 24 Feb 2009 07:56:57 -0000 1.6 +++ clonekeen.spec 24 Jul 2009 19:07:01 -0000 1.7 @@ -1,6 +1,6 @@ Name: clonekeen Version: 0.8.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: "Commander Keen: Invasion of the Vorticons" clone Group: Amusements/Games License: GPLv2+ @@ -110,6 +110,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:07:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:07:16 +0000 (UTC) Subject: rpms/cloog/devel cloog.spec,1.7,1.8 Message-ID: <20090724190716.92E1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cloog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7871 Modified Files: cloog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cloog.spec =================================================================== RCS file: /cvs/pkgs/rpms/cloog/devel/cloog.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cloog.spec 7 Jul 2009 08:16:09 -0000 1.7 +++ cloog.spec 24 Jul 2009 19:07:16 -0000 1.8 @@ -1,7 +1,7 @@ %define git_revision gitb9d79 Name: cloog Version: 0.15 -Release: 0.9.%{git_revision}%{?dist} +Release: 0.10.%{git_revision}%{?dist} Summary: The Chunky Loop Generator Group: System Environment/Libraries @@ -86,6 +86,9 @@ fi %postun ppl -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-0.10.gitb9d79 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Dodji Seketeli - 0.15-0.9.gitb9d79 - Update to new upstream git snapshot. - Update some comments in the spec file. From mtasaka at fedoraproject.org Fri Jul 24 19:07:36 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:07:36 +0000 (UTC) Subject: rpms/oniguruma/devel oniguruma.spec,1.4,1.5 Message-ID: <20090724190736.5216411C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/oniguruma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8094 Modified Files: oniguruma.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 5.9.1-3 - F-12: Mass rebuild Index: oniguruma.spec =================================================================== RCS file: /cvs/extras/rpms/oniguruma/devel/oniguruma.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- oniguruma.spec 24 Feb 2009 04:00:48 -0000 1.4 +++ oniguruma.spec 24 Jul 2009 19:07:36 -0000 1.5 @@ -1,6 +1,6 @@ Name: oniguruma Version: 5.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Regular expressions library Group: System Environment/Libraries @@ -97,6 +97,9 @@ find $RPM_BUILD_ROOT -name '*.la' \ %{_includedir}/onig*.h %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 5.9.1-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 5.9.1-2 - F-11: Mass rebuild From tibbs at fedoraproject.org Fri Jul 24 19:07:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:07:38 +0000 (UTC) Subject: rpms/ibus-table-xinhua/devel - New directory Message-ID: <20090724190738.47A7511C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-xinhua/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKN6551/rpms/ibus-table-xinhua/devel Log Message: Directory /cvs/pkgs/rpms/ibus-table-xinhua/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:07:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:07:38 +0000 (UTC) Subject: rpms/ibus-table-xinhua - New directory Message-ID: <20090724190738.2BD1E11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-xinhua In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKN6551/rpms/ibus-table-xinhua Log Message: Directory /cvs/pkgs/rpms/ibus-table-xinhua added to the repository From jkeating at fedoraproject.org Fri Jul 24 19:07:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:07:33 +0000 (UTC) Subject: rpms/cloudy/devel cloudy.spec,1.8,1.9 Message-ID: <20090724190733.3F21511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cloudy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8062 Modified Files: cloudy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cloudy.spec =================================================================== RCS file: /cvs/pkgs/rpms/cloudy/devel/cloudy.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cloudy.spec 16 Jun 2009 13:36:13 -0000 1.8 +++ cloudy.spec 24 Jul 2009 19:07:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: cloudy Version: 07.02.01 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Spectral synthesis code to simulate conditions in interstellar matter %define upversion 07_02_01 @@ -124,6 +124,9 @@ find -name installdox -exec rm '{}' ';' %doc doxygen/html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 07.02.01-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Sergio Pascual 07.02.01-7 - Noarch subpackage for docs From tibbs at fedoraproject.org Fri Jul 24 19:07:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:07:45 +0000 (UTC) Subject: rpms/ibus-table-xinhua/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724190745.6EACE11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-xinhua/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKN6551/rpms/ibus-table-xinhua/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ibus-table-xinhua --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ibus-table-xinhua # $Id: Makefile,v 1.1 2009/07/24 19:07:45 tibbs Exp $ NAME := ibus-table-xinhua SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Fri Jul 24 19:07:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:07:45 +0000 (UTC) Subject: rpms/ibus-table-xinhua Makefile,NONE,1.1 Message-ID: <20090724190745.0591B11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-xinhua In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsKN6551/rpms/ibus-table-xinhua Added Files: Makefile Log Message: Setup of module ibus-table-xinhua --- NEW FILE Makefile --- # Top level Makefile for module ibus-table-xinhua all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From jkeating at fedoraproject.org Fri Jul 24 19:07:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:07:49 +0000 (UTC) Subject: rpms/clthreads/devel clthreads.spec,1.1,1.2 Message-ID: <20090724190749.BE36611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clthreads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8366 Modified Files: clthreads.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clthreads.spec =================================================================== RCS file: /cvs/pkgs/rpms/clthreads/devel/clthreads.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- clthreads.spec 4 May 2009 21:00:47 -0000 1.1 +++ clthreads.spec 24 Jul 2009 19:07:49 -0000 1.2 @@ -3,7 +3,7 @@ Summary: POSIX threads C++ access library Name: clthreads Version: 2.4.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.kokkinizita.net/linuxaudio/ @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_libdir}/lib%{name}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Orcan Ogetbil - 2.4.0-3 - Use %%{name} macro more often - Preserve timestamps From jkeating at fedoraproject.org Fri Jul 24 19:08:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:08:06 +0000 (UTC) Subject: rpms/clucene/devel clucene.spec,1.11,1.12 Message-ID: <20090724190806.38C7C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clucene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8545 Modified Files: clucene.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clucene.spec =================================================================== RCS file: /cvs/pkgs/rpms/clucene/devel/clucene.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- clucene.spec 14 Apr 2009 10:31:09 -0000 1.11 +++ clucene.spec 24 Jul 2009 19:08:06 -0000 1.12 @@ -3,7 +3,7 @@ Summary: A C++ port of Lucene Name: clucene Version: 0.9.21 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ or ASL 2.0 Group: Development/System URL: http://www.sourceforge.net/projects/clucene @@ -167,6 +167,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Karsten Hopp 0.9.21-3 - bypass 'make check' on s390x, similar to ppc64 From jkeating at fedoraproject.org Fri Jul 24 19:08:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:08:21 +0000 (UTC) Subject: rpms/cluster/devel cluster.spec,1.55,1.56 Message-ID: <20090724190821.6E84611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cluster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8702 Modified Files: cluster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluster/devel/cluster.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- cluster.spec 8 Jul 2009 21:07:06 -0000 1.55 +++ cluster.spec 24 Jul 2009 19:08:21 -0000 1.56 @@ -19,7 +19,7 @@ Name: cluster Summary: Red Hat Cluster Version: 3.0.0 -Release: 20%{?alphatag:.%{alphatag}}%{?dist} +Release: 21%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -300,6 +300,9 @@ fi %{_mandir}/man8/*.gfs.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.0-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-20 - New upstream release - spec file updates: From jkeating at fedoraproject.org Fri Jul 24 19:08:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:08:36 +0000 (UTC) Subject: rpms/clustermon/devel clustermon.spec,1.11,1.12 Message-ID: <20090724190836.59C5611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clustermon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8849 Modified Files: clustermon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clustermon.spec =================================================================== RCS file: /cvs/pkgs/rpms/clustermon/devel/clustermon.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- clustermon.spec 30 Mar 2009 19:54:26 -0000 1.11 +++ clustermon.spec 24 Jul 2009 19:08:36 -0000 1.12 @@ -17,7 +17,7 @@ Name: clustermon Version: 0.16.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://sources.redhat.com/cluster/conga @@ -171,6 +171,9 @@ exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Ryan McCabe 0.16.0-1 - Remove legacy RHEL4 and RHEL5-specific code. - Fix build issues uncovered by g++ 4.4 From jkeating at fedoraproject.org Fri Jul 24 19:08:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:08:52 +0000 (UTC) Subject: rpms/clusterssh/devel clusterssh.spec,1.5,1.6 Message-ID: <20090724190852.B4D2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clusterssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9033 Modified Files: clusterssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clusterssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/clusterssh/devel/clusterssh.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- clusterssh.spec 19 Jun 2009 19:04:47 -0000 1.5 +++ clusterssh.spec 24 Jul 2009 19:08:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: clusterssh Version: 3.26 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Secure concurrent multi-server terminal control Group: Applications/Productivity @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Patrick "Jima" Laughton 3.26-1 - Much newer upstream version - Add dependency on xterm (BZ#506909) From jkeating at fedoraproject.org Fri Jul 24 19:09:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:09:08 +0000 (UTC) Subject: rpms/clutter/devel clutter.spec,1.27,1.28 Message-ID: <20090724190908.EFF1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9254 Modified Files: clutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter/devel/clutter.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- clutter.spec 17 Jul 2009 19:46:32 -0000 1.27 +++ clutter.spec 24 Jul 2009 19:09:08 -0000 1.28 @@ -1,6 +1,6 @@ Name: clutter Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open Source software library for creating rich graphical user interfaces Group: Development/Libraries @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Bastien Nocera 0.9.8-1 - Update to 0.9.8 From jkeating at fedoraproject.org Fri Jul 24 19:09:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:09:25 +0000 (UTC) Subject: rpms/clutter-cairomm/devel clutter-cairomm.spec,1.3,1.4 Message-ID: <20090724190925.0C59F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clutter-cairomm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9470 Modified Files: clutter-cairomm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clutter-cairomm.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-cairomm/devel/clutter-cairomm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- clutter-cairomm.spec 24 Feb 2009 08:05:31 -0000 1.3 +++ clutter-cairomm.spec 24 Jul 2009 19:09:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: clutter-cairomm Version: 0.7.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrapper for clutter-cairo library @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:09:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:09:41 +0000 (UTC) Subject: rpms/clutter-gst/devel clutter-gst.spec,1.8,1.9 Message-ID: <20090724190941.318C111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9735 Modified Files: clutter-gst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- clutter-gst.spec 24 Feb 2009 08:06:28 -0000 1.8 +++ clutter-gst.spec 24 Jul 2009 19:09:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: clutter-gst Version: 0.8.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: ClutterMedia interface to GStreamer Group: Development/Languages @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libclutter-gst-0.8.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:09:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:09:57 +0000 (UTC) Subject: rpms/clutter-gtk/devel clutter-gtk.spec,1.14,1.15 Message-ID: <20090724190957.0D49311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clutter-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10251 Modified Files: clutter-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clutter-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtk/devel/clutter-gtk.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- clutter-gtk.spec 22 Jun 2009 21:09:56 -0000 1.14 +++ clutter-gtk.spec 24 Jul 2009 19:09:56 -0000 1.15 @@ -1,6 +1,6 @@ Name: clutter-gtk Version: 0.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A basic GTK clutter widget Group: Development/Languages @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/clutter-0.9/clutter-gtk %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Bastien Nocera 0.9.2-1 - Update to 0.9.2 From jkeating at fedoraproject.org Fri Jul 24 19:10:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:10:12 +0000 (UTC) Subject: rpms/clutter-gtkmm/devel clutter-gtkmm.spec,1.4,1.5 Message-ID: <20090724191012.26E6511C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/clutter-gtkmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10600 Modified Files: clutter-gtkmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: clutter-gtkmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gtkmm/devel/clutter-gtkmm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- clutter-gtkmm.spec 8 Jul 2009 08:44:40 -0000 1.4 +++ clutter-gtkmm.spec 24 Jul 2009 19:10:11 -0000 1.5 @@ -2,7 +2,7 @@ Name: clutter-gtkmm Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrapper for clutter-gtk library @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Denis Leroy - 0.9.4-1 - Update to upstream 0.9.4 - API update to 0.9 From jkeating at fedoraproject.org Fri Jul 24 19:10:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:10:29 +0000 (UTC) Subject: rpms/cluttermm/devel cluttermm.spec,1.7,1.8 Message-ID: <20090724191029.18FF611C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cluttermm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10831 Modified Files: cluttermm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cluttermm.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluttermm/devel/cluttermm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cluttermm.spec 8 Jul 2009 08:35:32 -0000 1.7 +++ cluttermm.spec 24 Jul 2009 19:10:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: cluttermm Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrapper for clutter library @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Denis Leroy - 0.9.4-1 - Update to upstream 0.9.4 - API update to 0.9 From jkeating at fedoraproject.org Fri Jul 24 19:10:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:10:46 +0000 (UTC) Subject: rpms/cmake/devel cmake.spec,1.58,1.59 Message-ID: <20090724191046.1583411C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11002 Modified Files: cmake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cmake.spec =================================================================== RCS file: /cvs/pkgs/rpms/cmake/devel/cmake.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- cmake.spec 3 Jun 2009 16:08:32 -0000 1.58 +++ cmake.spec 24 Jul 2009 19:10:45 -0000 1.59 @@ -8,7 +8,7 @@ Name: cmake Version: 2.6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform make system Group: Development/Tools @@ -132,6 +132,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Orion Poplawski - 2.6.4-2 - Add patch to find VTK on 64-bit machines (bug #503945) From jkeating at fedoraproject.org Fri Jul 24 19:11:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:11:01 +0000 (UTC) Subject: rpms/cmconvert/devel cmconvert.spec,1.2,1.3 Message-ID: <20090724191101.3958C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cmconvert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11183 Modified Files: cmconvert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cmconvert.spec =================================================================== RCS file: /cvs/pkgs/rpms/cmconvert/devel/cmconvert.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cmconvert.spec 24 Feb 2009 08:10:00 -0000 1.2 +++ cmconvert.spec 24 Jul 2009 19:11:01 -0000 1.3 @@ -1,7 +1,7 @@ Name: cmconvert Summary: CacheMate import file converter Version: 1.9.5 -Release: 6%{dist} +Release: 7%{dist} License: GPLv2+ Group: Applications/File URL: http://www.smittyware.com/palm/cachemate/tools.php @@ -39,6 +39,9 @@ rm -fr %{buildroot} %{_mandir}/man1/cmconvert.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:11:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:11:16 +0000 (UTC) Subject: rpms/cmucl/devel cmucl.spec,1.20,1.21 Message-ID: <20090724191116.6628811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cmucl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11346 Modified Files: cmucl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cmucl.spec =================================================================== RCS file: /cvs/pkgs/rpms/cmucl/devel/cmucl.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- cmucl.spec 18 Mar 2009 19:14:37 -0000 1.20 +++ cmucl.spec 24 Jul 2009 19:11:16 -0000 1.21 @@ -5,7 +5,7 @@ Summary: CMU Common Lisp compiler Name: cmucl Version: 19f -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Languages @@ -215,6 +215,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 19f-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Rex Dieter - 19f-1 - cmucl-19f - build both x87 and sse2 cores From jkeating at fedoraproject.org Fri Jul 24 19:11:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:11:29 +0000 (UTC) Subject: rpms/cnetworkmanager/devel cnetworkmanager.spec,1.1,1.2 Message-ID: <20090724191129.55CF311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cnetworkmanager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11499 Modified Files: cnetworkmanager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cnetworkmanager.spec =================================================================== RCS file: /cvs/pkgs/rpms/cnetworkmanager/devel/cnetworkmanager.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cnetworkmanager.spec 18 May 2009 04:32:01 -0000 1.1 +++ cnetworkmanager.spec 24 Jul 2009 19:11:29 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Command-line client for NetworkManager Name: cnetworkmanager Version: 0.8.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and Public Domain Url: http://vidner.net/martin/software/cnetworkmanager/ Source0: http://vidner.net/martin/software/cnetworkmanager/%{name}-%{version}.tar.gz @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/dbus-1/system.d/cnetworkmanager-06.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Kevin Fenzi - 0.8.4-2 - Review fixes From jkeating at fedoraproject.org Fri Jul 24 19:11:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:11:43 +0000 (UTC) Subject: rpms/cobbler/devel cobbler.spec,1.85,1.86 Message-ID: <20090724191143.4C63111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cobbler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11644 Modified Files: cobbler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cobbler.spec =================================================================== RCS file: /cvs/pkgs/rpms/cobbler/devel/cobbler.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- cobbler.spec 12 Jun 2009 20:17:11 -0000 1.85 +++ cobbler.spec 24 Jul 2009 19:11:43 -0000 1.86 @@ -5,7 +5,7 @@ Summary: Boot server configurator Name: cobbler AutoReq: no Version: 1.6.6 -Release: 1%{?dist} +Release: 2%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -298,6 +298,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Michael DeHaan - 1.6.6-1 - Placeholder for future release From jkeating at fedoraproject.org Fri Jul 24 19:11:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:11:57 +0000 (UTC) Subject: rpms/coccinella/devel coccinella.spec,1.1,1.2 Message-ID: <20090724191157.29CD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coccinella/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11788 Modified Files: coccinella.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coccinella.spec =================================================================== RCS file: /cvs/pkgs/rpms/coccinella/devel/coccinella.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- coccinella.spec 9 Apr 2009 19:42:29 -0000 1.1 +++ coccinella.spec 24 Jul 2009 19:11:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: coccinella Version: 0.96.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Chat client with whiteboard Group: Applications/Internet License: GPLv3+ and BSD @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.96.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Tom "spot" Callaway 0.96.12-2 - lots of cleanups From jkeating at fedoraproject.org Fri Jul 24 19:12:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:12:10 +0000 (UTC) Subject: rpms/coccinelle/devel coccinelle.spec,1.6,1.7 Message-ID: <20090724191210.13B8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coccinelle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11975 Modified Files: coccinelle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coccinelle.spec =================================================================== RCS file: /cvs/pkgs/rpms/coccinelle/devel/coccinelle.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- coccinelle.spec 22 May 2009 11:56:36 -0000 1.6 +++ coccinelle.spec 24 Jul 2009 19:12:09 -0000 1.7 @@ -8,7 +8,7 @@ Name: coccinelle Version: 0.1.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Semantic patching for Linux (spatch) Group: Development/Libraries @@ -156,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 0.1.8-4 - New upstream version 0.1.8. - Include patch from Debian to fix CVE-2009-1753 (RHBZ#502174). From jkeating at fedoraproject.org Fri Jul 24 19:12:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:12:24 +0000 (UTC) Subject: rpms/coco-coq/devel coco-coq.spec,1.2,1.3 Message-ID: <20090724191224.2949911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coco-coq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12173 Modified Files: coco-coq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coco-coq.spec =================================================================== RCS file: /cvs/pkgs/rpms/coco-coq/devel/coco-coq.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- coco-coq.spec 24 Feb 2009 08:12:39 -0000 1.2 +++ coco-coq.spec 24 Jul 2009 19:12:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: coco-coq Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Coco Coq in Grostesteing's base, an AGI adventure game Group: Amusements/Games @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/coco-coq-wrapper.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:12:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:12:38 +0000 (UTC) Subject: rpms/coda/devel coda.spec,1.15,1.16 Message-ID: <20090724191238.CE64811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12340 Modified Files: coda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coda.spec =================================================================== RCS file: /cvs/pkgs/rpms/coda/devel/coda.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- coda.spec 23 Jul 2009 10:46:55 -0000 1.15 +++ coda.spec 24 Jul 2009 19:12:38 -0000 1.16 @@ -1,6 +1,6 @@ Name: coda Version: 6.9.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Coda distributed file system Group: System Environment/Daemons License: GPLv2 @@ -311,6 +311,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.9.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Neil Horman - 6.9.4-6 - Fix misuse of depricated udevsettle From jkeating at fedoraproject.org Fri Jul 24 19:12:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:12:54 +0000 (UTC) Subject: rpms/code2html/devel code2html.spec,1.3,1.4 Message-ID: <20090724191254.94B6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/code2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12508 Modified Files: code2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: code2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/code2html/devel/code2html.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- code2html.spec 17 Mar 2009 15:21:06 -0000 1.3 +++ code2html.spec 24 Jul 2009 19:12:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: code2html Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert source code to HTML Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Rakesh Pandit - 0.9.1-4 - Fixed Source URL From jkeating at fedoraproject.org Fri Jul 24 19:13:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:13:10 +0000 (UTC) Subject: rpms/codeblocks/devel codeblocks.spec,1.33,1.34 Message-ID: <20090724191310.6BFF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/codeblocks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12666 Modified Files: codeblocks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: codeblocks.spec =================================================================== RCS file: /cvs/pkgs/rpms/codeblocks/devel/codeblocks.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- codeblocks.spec 15 Jul 2009 06:30:11 -0000 1.33 +++ codeblocks.spec 24 Jul 2009 19:13:10 -0000 1.34 @@ -1,6 +1,6 @@ Name: codeblocks Version: 8.02 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An open source, cross platform, free C++ IDE Group: Development/Tools License: GPLv3+ @@ -267,6 +267,9 @@ update-mime-database /usr/share/mime &> %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.02-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Dan Hor?k 8.02-8 - fix gsocket between glib >= 2.21 and wxGTK in rawhide From jkeating at fedoraproject.org Fri Jul 24 19:13:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:13:27 +0000 (UTC) Subject: rpms/cogito/devel cogito.spec,1.21,1.22 Message-ID: <20090724191327.21BE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cogito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12839 Modified Files: cogito.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cogito.spec =================================================================== RCS file: /cvs/pkgs/rpms/cogito/devel/cogito.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- cogito.spec 24 Feb 2009 08:17:18 -0000 1.21 +++ cogito.spec 24 Jul 2009 19:13:26 -0000 1.22 @@ -1,6 +1,6 @@ Name: cogito Version: 0.18.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Cogito Version Control System License: GPLv2 Group: Development/Tools @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %doc README COPYING Documentation/tutorial-script %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.18.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.18.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:13:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:13:48 +0000 (UTC) Subject: rpms/cohoba/devel cohoba.spec,1.8,1.9 Message-ID: <20090724191348.A1A6011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cohoba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13040 Modified Files: cohoba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cohoba.spec =================================================================== RCS file: /cvs/pkgs/rpms/cohoba/devel/cohoba.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cohoba.spec 24 Feb 2009 08:18:16 -0000 1.8 +++ cohoba.spec 24 Jul 2009 19:13:48 -0000 1.9 @@ -2,7 +2,7 @@ Name: cohoba Version: 0.0.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Cohoba is a GNOME interface for Telepathy. It aims to be innovative and simple Group: Applications/Communications @@ -69,6 +69,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:14:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:14:05 +0000 (UTC) Subject: rpms/coldet/devel coldet.spec,1.7,1.8 Message-ID: <20090724191405.2E60111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coldet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13227 Modified Files: coldet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coldet.spec =================================================================== RCS file: /cvs/pkgs/rpms/coldet/devel/coldet.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- coldet.spec 24 Feb 2009 08:19:11 -0000 1.7 +++ coldet.spec 24 Jul 2009 19:14:04 -0000 1.8 @@ -1,6 +1,6 @@ Name: coldet Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 3D Collision Detection Library Group: System Environment/Libraries License: LGPLv2+ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:14:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:14:21 +0000 (UTC) Subject: rpms/collectd/devel collectd.spec,1.19,1.20 Message-ID: <20090724191421.2627A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/collectd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13405 Modified Files: collectd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: collectd.spec =================================================================== RCS file: /cvs/pkgs/rpms/collectd/devel/collectd.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- collectd.spec 20 May 2009 10:40:50 -0000 1.19 +++ collectd.spec 24 Jul 2009 19:14:20 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Statistics collection daemon for filling RRD files Name: collectd Version: 4.6.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Daemons URL: http://collectd.org/ @@ -407,6 +407,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Alan Pevec 4.6.2-1 - New upstream version 4.6.2 http://collectd.org/news.shtml#news64 From jkeating at fedoraproject.org Fri Jul 24 19:14:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:14:36 +0000 (UTC) Subject: rpms/collectl/devel collectl.spec,1.13,1.14 Message-ID: <20090724191436.03BAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/collectl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13573 Modified Files: collectl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: collectl.spec =================================================================== RCS file: /cvs/pkgs/rpms/collectl/devel/collectl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- collectl.spec 29 Jun 2009 17:52:42 -0000 1.13 +++ collectl.spec 24 Jul 2009 19:14:35 -0000 1.14 @@ -1,7 +1,7 @@ Summary: A utility to collect various linux performance data Name: collectl Version: 3.3.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ or Artistic Group: Applications/System Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.src.tar.gz @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Dan Hor?k 3.3.4-2 - install only a symlink into /usr/bin (#508724) From jkeating at fedoraproject.org Fri Jul 24 19:14:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:14:48 +0000 (UTC) Subject: rpms/color-filesystem/devel color-filesystem.spec,1.4,1.5 Message-ID: <20090724191448.B5A5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/color-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13720 Modified Files: color-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: color-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/color-filesystem/devel/color-filesystem.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- color-filesystem.spec 24 Feb 2009 08:21:55 -0000 1.4 +++ color-filesystem.spec 24 Jul 2009 19:14:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: color-filesystem Version: 1 -Release: 5 +Release: 6 Summary: Color filesystem layout Group: System Environment/Base @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/rpm/macros.color %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:15:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:15:01 +0000 (UTC) Subject: rpms/colordiff/devel colordiff.spec,1.16,1.17 Message-ID: <20090724191501.CF31411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/colordiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13860 Modified Files: colordiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: colordiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/colordiff/devel/colordiff.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- colordiff.spec 20 Jul 2009 21:25:12 -0000 1.16 +++ colordiff.spec 24 Jul 2009 19:15:01 -0000 1.17 @@ -1,6 +1,6 @@ Name: colordiff Version: 1.0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Color terminal highlighter for diff files Group: Applications/Text @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Ville Skytt? - 1.0.9-1 - Update to 1.0.9; wget 1.11, lzma and destdir patches applied upstream. - Patch cdiff for xz support. From jkeating at fedoraproject.org Fri Jul 24 19:15:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:15:15 +0000 (UTC) Subject: rpms/colossus/devel colossus.spec,1.1,1.2 Message-ID: <20090724191515.4072611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/colossus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14003 Modified Files: colossus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: colossus.spec =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/colossus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- colossus.spec 13 Jul 2009 03:00:33 -0000 1.1 +++ colossus.spec 24 Jul 2009 19:15:14 -0000 1.2 @@ -2,7 +2,7 @@ Name: colossus %define rev 4432 %define revdate 20090710 Version: 0 -Release: 0.2.%{revdate}svn%{rev}%{?dist} +Release: 0.3.%{revdate}svn%{rev}%{?dist} Summary: Allows people to play Titan against each other or AIs Group: Amusements/Games @@ -177,6 +177,9 @@ touch --no-create %{_datadir}/pixmaps || %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.3.20090710svn4432 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Bruno Wolff III - 0-0.2.20090710svn4432 - A couple of final spec file tweaks based on comments from my sponsor From jkeating at fedoraproject.org Fri Jul 24 19:15:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:15:29 +0000 (UTC) Subject: rpms/colrdx/devel colrdx.spec,1.3,1.4 Message-ID: <20090724191529.17BA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/colrdx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14172 Modified Files: colrdx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: colrdx.spec =================================================================== RCS file: /cvs/pkgs/rpms/colrdx/devel/colrdx.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- colrdx.spec 8 May 2009 20:59:09 -0000 1.3 +++ colrdx.spec 24 Jul 2009 19:15:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: colrdx Version: 1.02 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DX-cluster client with curses color support Group: Applications/Communications @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Randall J. Berry - 1.02-5 - Update cvs From mtasaka at fedoraproject.org Fri Jul 24 19:15:43 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:15:43 +0000 (UTC) Subject: rpms/panelfm/devel panelfm.spec,1.8,1.9 Message-ID: <20090724191543.49C4611C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/panelfm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14327 Modified Files: panelfm.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - F-12: Mass rebuild Index: panelfm.spec =================================================================== RCS file: /cvs/extras/rpms/panelfm/devel/panelfm.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- panelfm.spec 24 Feb 2009 04:00:48 -0000 1.8 +++ panelfm.spec 24 Jul 2009 19:15:43 -0000 1.9 @@ -1,6 +1,6 @@ Name: panelfm Version: 1.2 -Release: 2%{?dist}.4 +Release: 3%{?dist}.4 Summary: Quick File Manager Applet Group: Applications/File @@ -64,6 +64,9 @@ done %{_libdir}/bonobo/servers/*.server %changelog +* Sat Jul 25 2009 Mamoru Tasaka +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:15:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:15:43 +0000 (UTC) Subject: rpms/comedilib/devel comedilib.spec,1.4,1.5 Message-ID: <20090724191543.913B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/comedilib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14343 Modified Files: comedilib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: comedilib.spec =================================================================== RCS file: /cvs/pkgs/rpms/comedilib/devel/comedilib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- comedilib.spec 24 Feb 2009 08:24:50 -0000 1.4 +++ comedilib.spec 24 Jul 2009 19:15:43 -0000 1.5 @@ -2,7 +2,7 @@ Name: comedilib Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Data Acquisition library for the Comedi driver License: LGPLv2 Group: System Environment/Kernel @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:15:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:15:58 +0000 (UTC) Subject: rpms/comgt/devel comgt.spec,1.4,1.5 Message-ID: <20090724191558.2160411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/comgt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14561 Modified Files: comgt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: comgt.spec =================================================================== RCS file: /cvs/pkgs/rpms/comgt/devel/comgt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- comgt.spec 24 Feb 2009 08:25:48 -0000 1.4 +++ comgt.spec 24 Jul 2009 19:15:58 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Linux UMTS/GPRS command-line tool Name: comgt Version: 0.32 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://sourceforge.net/projects/comgt Group: Applications/Internet Source0: http://dl.sourceforge.net/sourceforge/%{name}/%{name}.%{version}.tgz @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.32-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.32-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:16:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:16:13 +0000 (UTC) Subject: rpms/common-lisp-controller/devel common-lisp-controller.spec, 1.6, 1.7 Message-ID: <20090724191613.6FD5D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/common-lisp-controller/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14723 Modified Files: common-lisp-controller.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: common-lisp-controller.spec =================================================================== RCS file: /cvs/pkgs/rpms/common-lisp-controller/devel/common-lisp-controller.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- common-lisp-controller.spec 24 Feb 2009 08:26:49 -0000 1.6 +++ common-lisp-controller.spec 24 Jul 2009 19:16:13 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Common Lisp source and compiler manager Name: common-lisp-controller Version: 6.15 -Release: 7%{?dist} +Release: 8%{?dist} URL: https://alioth.debian.org/projects/clc Source0: http://ftp.de.debian.org/debian/pool/main/c/common-lisp-controller/common-lisp-controller_%{version}.tar.gz Patch0: common-lisp-controller-fedora.patch @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.15-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:16:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:16:27 +0000 (UTC) Subject: rpms/commoncpp2/devel commoncpp2.spec,1.10,1.11 Message-ID: <20090724191627.C5B0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/commoncpp2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14904 Modified Files: commoncpp2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: commoncpp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/commoncpp2/devel/commoncpp2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- commoncpp2.spec 6 Apr 2009 19:53:30 -0000 1.10 +++ commoncpp2.spec 24 Jul 2009 19:16:27 -0000 1.11 @@ -1,7 +1,7 @@ Summary: GNU Common C++ class framework Name: commoncpp2 Version: 1.7.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ with exceptions Group: System Environment/Libraries Source0: http://www.gnutelephony.org/dist/tarballs/commoncpp2-%{version}.tar.gz @@ -80,6 +80,9 @@ fi %{_infodir}/commoncpp2.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Andreas Thienemann - 1.7.3-1 - Updated to new upstream version 1.7.3 From jkeating at fedoraproject.org Fri Jul 24 19:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:16:42 +0000 (UTC) Subject: rpms/compat-db/devel compat-db.spec,1.39,1.40 Message-ID: <20090724191642.39D8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-db/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15090 Modified Files: compat-db.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-db.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-db/devel/compat-db.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- compat-db.spec 24 Feb 2009 08:28:40 -0000 1.39 +++ compat-db.spec 24 Jul 2009 19:16:42 -0000 1.40 @@ -11,7 +11,7 @@ Summary: The Berkeley DB database compatibility library Name: compat-db Version: 4.6.21 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://download.oracle.com/berkeley-db/db-%{db41_version}.tar.gz Source1: http://download.oracle.com/berkeley-db/db-%{db42_version}.tar.gz Source2: http://download.oracle.com/berkeley-db/db-%{db43_version}.tar.gz @@ -366,6 +366,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_includedir}/db%{db46_version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.6.21-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.6.21-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:16:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:16:57 +0000 (UTC) Subject: rpms/compat-erlang/devel compat-erlang.spec,1.13,1.14 Message-ID: <20090724191657.6EECE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-erlang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15350 Modified Files: compat-erlang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-erlang.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-erlang/devel/compat-erlang.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- compat-erlang.spec 24 Feb 2009 08:29:34 -0000 1.13 +++ compat-erlang.spec 24 Jul 2009 19:16:57 -0000 1.14 @@ -1,6 +1,6 @@ Name: compat-erlang Version: R10B -Release: 13.11%{?dist} +Release: 14.11%{?dist} Summary: General-purpose programming language and runtime environment Group: Development/Languages @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - R10B-14.11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - R10B-13.11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:17:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:09 +0000 Subject: [pkgdb] ibus-table-quick was added for cchance Message-ID: <20090724191709.BFA2C10F8A9@bastion2.fedora.phx.redhat.com> tibbs has added Package ibus-table-quick with summary Quick table of IBus Table tibbs has approved Package ibus-table-quick tibbs has added a Fedora devel branch for ibus-table-quick with an owner of cchance tibbs has approved ibus-table-quick in Fedora devel tibbs has approved Package ibus-table-quick tibbs has set commit to Approved for 107427 on ibus-table-quick (Fedora devel) tibbs has set checkout to Approved for 107427 on ibus-table-quick (Fedora devel) tibbs has set build to Approved for 107427 on ibus-table-quick (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-quick From pkgdb at fedoraproject.org Fri Jul 24 19:17:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:10 +0000 Subject: [pkgdb] ibus-table-quick summary updated by tibbs Message-ID: <20090724191710.DE19B10F8AD@bastion2.fedora.phx.redhat.com> tibbs set package ibus-table-quick summary to Quick table of IBus Table To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-quick From jkeating at fedoraproject.org Fri Jul 24 19:17:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:17:09 +0000 (UTC) Subject: rpms/compat-expat1/devel compat-expat1.spec,1.3,1.4 Message-ID: <20090724191709.CDF6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-expat1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15585 Modified Files: compat-expat1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-expat1.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-expat1/devel/compat-expat1.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- compat-expat1.spec 24 Feb 2009 08:30:27 -0000 1.3 +++ compat-expat1.spec 24 Jul 2009 19:17:09 -0000 1.4 @@ -1,7 +1,7 @@ Summary: A library for parsing XML documents Name: compat-expat1 Version: 1.95.8 -Release: 5 +Release: 6 Group: System Environment/Libraries Source: http://downloads.sourceforge.net/expat/expat-%{version}.tar.gz URL: http://www.libexpat.org/ @@ -48,6 +48,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/lib*.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.95.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.95.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:17:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:10 +0000 Subject: [pkgdb] ibus-table-quick (Fedora, 11) updated by tibbs Message-ID: <20090724191710.E706E10F8B4@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on ibus-table-quick (Fedora devel) for i18n-team tibbs approved watchcommits on ibus-table-quick (Fedora devel) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-quick From tibbs at fedoraproject.org Fri Jul 24 19:17:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:16 +0000 (UTC) Subject: rpms/ibus-table-quick - New directory Message-ID: <20090724191716.1740A11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-quick In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15673/rpms/ibus-table-quick Log Message: Directory /cvs/pkgs/rpms/ibus-table-quick added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:17:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:16 +0000 (UTC) Subject: rpms/ibus-table-quick/devel - New directory Message-ID: <20090724191716.36C8311C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-quick/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15673/rpms/ibus-table-quick/devel Log Message: Directory /cvs/pkgs/rpms/ibus-table-quick/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 24 19:17:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:10 +0000 Subject: [pkgdb] ibus-table-quick (Fedora, 11) updated by tibbs Message-ID: <20090724191710.F26D810F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ibus-table-quick tibbs has set commit to Approved for 107427 on ibus-table-quick (Fedora 11) tibbs has set checkout to Approved for 107427 on ibus-table-quick (Fedora 11) tibbs has set build to Approved for 107427 on ibus-table-quick (Fedora 11) tibbs approved watchbugzilla on ibus-table-quick (Fedora 11) for i18n-team tibbs approved watchcommits on ibus-table-quick (Fedora 11) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-quick From tibbs at fedoraproject.org Fri Jul 24 19:17:22 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:22 +0000 (UTC) Subject: rpms/ibus-table-quick Makefile,NONE,1.1 Message-ID: <20090724191722.F008311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-quick In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15673/rpms/ibus-table-quick Added Files: Makefile Log Message: Setup of module ibus-table-quick --- NEW FILE Makefile --- # Top level Makefile for module ibus-table-quick all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 19:17:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:23 +0000 (UTC) Subject: rpms/ibus-table-quick/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724191723.44DE011C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-quick/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ15673/rpms/ibus-table-quick/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ibus-table-quick --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ibus-table-quick # $Id: Makefile,v 1.1 2009/07/24 19:17:23 tibbs Exp $ NAME := ibus-table-quick SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 19:17:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:17:24 +0000 (UTC) Subject: rpms/compat-flex/devel compat-flex.spec,1.7,1.8 Message-ID: <20090724191724.8BE7511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-flex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15788 Modified Files: compat-flex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-flex.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-flex/devel/compat-flex.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- compat-flex.spec 24 Feb 2009 08:31:28 -0000 1.7 +++ compat-flex.spec 24 Jul 2009 19:17:24 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Legacy version of flex, a tool for creating scanners Name: compat-flex Version: 2.5.4a -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Development/Tools URL: http://www.gnu.org/software/flex/ @@ -94,6 +94,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_infodir}/flex-%{version}.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.4a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.4a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:17:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:37 +0000 Subject: [pkgdb] ibus-table-translit was added for cchance Message-ID: <20090724191737.8436E10F8C5@bastion2.fedora.phx.redhat.com> tibbs has added Package ibus-table-translit with summary Translit table of IBus Table tibbs has approved Package ibus-table-translit tibbs has added a Fedora devel branch for ibus-table-translit with an owner of cchance tibbs has approved ibus-table-translit in Fedora devel tibbs has approved Package ibus-table-translit tibbs has set commit to Approved for 107427 on ibus-table-translit (Fedora devel) tibbs has set checkout to Approved for 107427 on ibus-table-translit (Fedora devel) tibbs has set build to Approved for 107427 on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 24 19:17:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:39 +0000 Subject: [pkgdb] ibus-table-translit summary updated by tibbs Message-ID: <20090724191739.2907110F8C9@bastion2.fedora.phx.redhat.com> tibbs set package ibus-table-translit summary to Translit table of IBus Table To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 24 19:17:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:39 +0000 Subject: [pkgdb] ibus-table-translit (Fedora, 11) updated by tibbs Message-ID: <20090724191739.3146B10F8CC@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on ibus-table-translit (Fedora devel) for i18n-team tibbs approved watchcommits on ibus-table-translit (Fedora devel) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 24 19:17:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:17:39 +0000 Subject: [pkgdb] ibus-table-translit (Fedora, 11) updated by tibbs Message-ID: <20090724191739.3A8D210F8CF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ibus-table-translit tibbs has set commit to Approved for 107427 on ibus-table-translit (Fedora 11) tibbs has set checkout to Approved for 107427 on ibus-table-translit (Fedora 11) tibbs has set build to Approved for 107427 on ibus-table-translit (Fedora 11) tibbs approved watchbugzilla on ibus-table-translit (Fedora 11) for i18n-team tibbs approved watchcommits on ibus-table-translit (Fedora 11) for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From tibbs at fedoraproject.org Fri Jul 24 19:17:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:45 +0000 (UTC) Subject: rpms/ibus-table-translit - New directory Message-ID: <20090724191745.1D2D611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-translit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst16104/rpms/ibus-table-translit Log Message: Directory /cvs/pkgs/rpms/ibus-table-translit added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:17:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:45 +0000 (UTC) Subject: rpms/ibus-table-translit/devel - New directory Message-ID: <20090724191745.4048111C04D1@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-translit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst16104/rpms/ibus-table-translit/devel Log Message: Directory /cvs/pkgs/rpms/ibus-table-translit/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:17:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:52 +0000 (UTC) Subject: rpms/ibus-table-translit Makefile,NONE,1.1 Message-ID: <20090724191752.C43A911C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-translit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst16104/rpms/ibus-table-translit Added Files: Makefile Log Message: Setup of module ibus-table-translit --- NEW FILE Makefile --- # Top level Makefile for module ibus-table-translit all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 19:17:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:17:53 +0000 (UTC) Subject: rpms/ibus-table-translit/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724191753.32F4A11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ibus-table-translit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst16104/rpms/ibus-table-translit/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ibus-table-translit --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ibus-table-translit # $Id: Makefile,v 1.1 2009/07/24 19:17:52 tibbs Exp $ NAME := ibus-table-translit SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 24 19:18:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:09 +0000 Subject: [pkgdb] osr-dracut-module was added for elcody02 Message-ID: <20090724191809.11B4E10F8BF@bastion2.fedora.phx.redhat.com> tibbs has added Package osr-dracut-module with summary Dracut modules for open sharedroot tibbs has approved Package osr-dracut-module tibbs has added a Fedora devel branch for osr-dracut-module with an owner of elcody02 tibbs has approved osr-dracut-module in Fedora devel tibbs has approved Package osr-dracut-module tibbs has set commit to Approved for 107427 on osr-dracut-module (Fedora devel) tibbs has set checkout to Approved for 107427 on osr-dracut-module (Fedora devel) tibbs has set build to Approved for 107427 on osr-dracut-module (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/osr-dracut-module From pkgdb at fedoraproject.org Fri Jul 24 19:18:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:10 +0000 Subject: [pkgdb] osr-dracut-module summary updated by tibbs Message-ID: <20090724191810.EFDC210F8C2@bastion2.fedora.phx.redhat.com> tibbs set package osr-dracut-module summary to Dracut modules for open sharedroot To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/osr-dracut-module From pkgdb at fedoraproject.org Fri Jul 24 19:18:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:10 +0000 Subject: [pkgdb] osr-dracut-module (Fedora, devel) updated by tibbs Message-ID: <20090724191811.3C6CC10F8D2@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on osr-dracut-module (Fedora devel) for markhla tibbs approved watchcommits on osr-dracut-module (Fedora devel) for markhla tibbs approved commit on osr-dracut-module (Fedora devel) for markhla tibbs approved build on osr-dracut-module (Fedora devel) for markhla tibbs approved approveacls on osr-dracut-module (Fedora devel) for markhla To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/osr-dracut-module From tibbs at fedoraproject.org Fri Jul 24 19:18:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:17 +0000 (UTC) Subject: rpms/osr-dracut-module - New directory Message-ID: <20090724191817.23C8D11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/osr-dracut-module In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ16462/rpms/osr-dracut-module Log Message: Directory /cvs/pkgs/rpms/osr-dracut-module added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:18:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:17 +0000 (UTC) Subject: rpms/osr-dracut-module/devel - New directory Message-ID: <20090724191817.4B39311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/osr-dracut-module/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ16462/rpms/osr-dracut-module/devel Log Message: Directory /cvs/pkgs/rpms/osr-dracut-module/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:18:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:25 +0000 (UTC) Subject: rpms/osr-dracut-module Makefile,NONE,1.1 Message-ID: <20090724191825.921D911C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/osr-dracut-module In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ16462/rpms/osr-dracut-module Added Files: Makefile Log Message: Setup of module osr-dracut-module --- NEW FILE Makefile --- # Top level Makefile for module osr-dracut-module all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From dwayne at fedoraproject.org Fri Jul 24 19:18:23 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 24 Jul 2009 19:18:23 +0000 (UTC) Subject: rpms/virtaal/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 virtaal.spec, 1.9, 1.10 Message-ID: <20090724191823.2438711C00CE@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/virtaal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16088 Modified Files: .cvsignore sources virtaal.spec Log Message: * Fri Jul 24 2009 Dwayne Bailey - 0.4.0-0.2.rc1 - Update to 0.4.0 rc1: Improvements since beta 1: - User interface improvements, including - better English text - better display on small screens - better display in right-to-left languages - updated translations: af, ar, de, en_GB, en_ZA, eu, fr, gl, nl, pt_BR, ru - Fonts are now configurable - You can select to which file a new term should be added - Improvements to comments, including making them selectable - Updated tutorial - Handling of inline elements in XLIFF - Drop --nodepcheck patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jul 2009 14:02:16 -0000 1.7 +++ .cvsignore 24 Jul 2009 19:18:22 -0000 1.8 @@ -1,2 +1,3 @@ virtaal-0.3.1.tar.bz2 virtaal-0.4.0-beta1.tar.bz2 +virtaal-0.4.0-rc1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jul 2009 14:02:16 -0000 1.7 +++ sources 24 Jul 2009 19:18:22 -0000 1.8 @@ -1,2 +1,3 @@ eef03a4afa2f8a1e17f94a807268b7e3 virtaal-0.3.1.tar.bz2 30ce41da361ef9efab109eea8efebf64 virtaal-0.4.0-beta1.tar.bz2 +a4b889b28f905803351e89356baf83d0 virtaal-0.4.0-rc1.tar.bz2 Index: virtaal.spec =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/devel/virtaal.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- virtaal.spec 11 Jul 2009 14:02:16 -0000 1.9 +++ virtaal.spec 24 Jul 2009 19:18:22 -0000 1.10 @@ -2,19 +2,18 @@ Name: virtaal Version: 0.4.0 -Release: 0.1.beta1%{?dist} +Release: 0.2.rc1%{?dist} Summary: Localization and translation editor Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/virtaal/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-beta1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-rc1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: virtaal-0.3beta1-setup_drop_MO_generation.patch Patch1: virtaal-0.3.0-autocorr_shared_location.patch -Patch2: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch BuildArch: noarch BuildRequires: python @@ -55,10 +54,9 @@ converters allow translators to edit: Op %prep -%setup -q -n %{name}-%{version}-beta1 +%setup -q -n %{name}-%{version}-rc1 %patch0 -p1 -b .setup_drop_MO_generation %patch1 -p1 -b .autocorr_shared_location -%patch2 -p3 -b .nodepcheck %build %{__python} setup.py build @@ -144,6 +142,23 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Dwayne Bailey - 0.4.0-0.2.rc1 +- Update to 0.4.0 rc1: + + Improvements since beta 1: + - User interface improvements, including + - better English text + - better display on small screens + - better display in right-to-left languages + - updated translations: af, ar, de, en_GB, en_ZA, eu, fr, gl, nl, pt_BR, ru + - Fonts are now configurable + - You can select to which file a new term should be added + - Improvements to comments, including making them selectable + - Updated tutorial + - Handling of inline elements in XLIFF + +- Drop --nodepcheck patch + * Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 - Update to 0.4.0 beta1 - Backport r11846 --nodepcheck From tibbs at fedoraproject.org Fri Jul 24 19:18:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:26 +0000 (UTC) Subject: rpms/osr-dracut-module/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724191826.1477111C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/osr-dracut-module/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsZ16462/rpms/osr-dracut-module/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module osr-dracut-module --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: osr-dracut-module # $Id: Makefile,v 1.1 2009/07/24 19:18:25 tibbs Exp $ NAME := osr-dracut-module SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 24 19:18:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:45 +0000 Subject: [pkgdb] comoonics-cluster-py summary updated by tibbs Message-ID: <20090724191845.6D2C110F8CC@bastion2.fedora.phx.redhat.com> tibbs set package comoonics-cluster-py summary to Comoonics cluster configuration utilities written in Python To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cluster-py From pkgdb at fedoraproject.org Fri Jul 24 19:18:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:45 +0000 Subject: [pkgdb] comoonics-cluster-py (Fedora, devel) updated by tibbs Message-ID: <20090724191845.8536C10F8DB@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on comoonics-cluster-py (Fedora devel) for markhla tibbs approved watchcommits on comoonics-cluster-py (Fedora devel) for markhla tibbs approved commit on comoonics-cluster-py (Fedora devel) for markhla tibbs approved build on comoonics-cluster-py (Fedora devel) for markhla tibbs approved approveacls on comoonics-cluster-py (Fedora devel) for markhla To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cluster-py From jkeating at fedoraproject.org Fri Jul 24 19:18:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:18:50 +0000 (UTC) Subject: rpms/compat-gcc-32/devel compat-gcc-32.spec,1.37,1.38 Message-ID: <20090724191850.6621011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-gcc-32/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16899 Modified Files: compat-gcc-32.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-gcc-32.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-32/devel/compat-gcc-32.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- compat-gcc-32.spec 9 Mar 2009 17:44:39 -0000 1.37 +++ compat-gcc-32.spec 24 Jul 2009 19:18:50 -0000 1.38 @@ -21,7 +21,7 @@ Summary: The compatibility GNU Compiler Collection Name: compat-gcc-32 Version: %{gcc_version} -Release: %{gcc_release} +Release: %{gcc_release}.1 License: GPLv2+ with exceptions Group: Development/Languages Source0: gcc-%{gcc_version}-%{DATE}.tar.bz2 @@ -436,6 +436,9 @@ rm -rf $RPM_BUILD_ROOT %{_prefix}/%{_lib}/libstdc++.so.5* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.3-66.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Jakub Jelinek 3.2.3-66 - fix up for latest bison From jkeating at fedoraproject.org Fri Jul 24 19:18:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:18:22 +0000 (UTC) Subject: rpms/compat-gcc-296/devel compat-gcc-296.spec,1.25,1.26 Message-ID: <20090724191822.52BFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-gcc-296/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16520 Modified Files: compat-gcc-296.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-gcc-296.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-296/devel/compat-gcc-296.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- compat-gcc-296.spec 9 Mar 2009 18:34:29 -0000 1.25 +++ compat-gcc-296.spec 24 Jul 2009 19:18:21 -0000 1.26 @@ -4,7 +4,7 @@ Summary: 2.96-RH compatibility libraries Name: compat-gcc-296 Version: %{gcc_version} -Release: %{gcc_release} +Release: %{gcc_release}.1 License: GPLv2+ Group: Development/Languages ExclusiveArch: %{ix86} ia64 ppc @@ -1077,6 +1077,9 @@ rm -rf $RPM_BUILD_ROOT %{_prefix}/lib/gcc-lib/%{_target_platform}/%{gcc_version}/crtendS.o %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.96-142.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Jakub Jelinek 2.96-142 - rebuilt with GCC 4.4 From pkgdb at fedoraproject.org Fri Jul 24 19:18:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:18:43 +0000 Subject: [pkgdb] comoonics-cluster-py was added for elcody02 Message-ID: <20090724191843.F19BE10F8B4@bastion2.fedora.phx.redhat.com> tibbs has added Package comoonics-cluster-py with summary Comoonics cluster configuration utilities written in Python tibbs has approved Package comoonics-cluster-py tibbs has added a Fedora devel branch for comoonics-cluster-py with an owner of elcody02 tibbs has approved comoonics-cluster-py in Fedora devel tibbs has approved Package comoonics-cluster-py tibbs has set commit to Approved for 107427 on comoonics-cluster-py (Fedora devel) tibbs has set checkout to Approved for 107427 on comoonics-cluster-py (Fedora devel) tibbs has set build to Approved for 107427 on comoonics-cluster-py (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/comoonics-cluster-py From tibbs at fedoraproject.org Fri Jul 24 19:18:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:52 +0000 (UTC) Subject: rpms/comoonics-cluster-py - New directory Message-ID: <20090724191852.1FE3611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-cluster-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz16889/rpms/comoonics-cluster-py Log Message: Directory /cvs/pkgs/rpms/comoonics-cluster-py added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:18:52 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:52 +0000 (UTC) Subject: rpms/comoonics-cluster-py/devel - New directory Message-ID: <20090724191852.47A3111C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-cluster-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz16889/rpms/comoonics-cluster-py/devel Log Message: Directory /cvs/pkgs/rpms/comoonics-cluster-py/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:18:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:59 +0000 (UTC) Subject: rpms/comoonics-cluster-py Makefile,NONE,1.1 Message-ID: <20090724191859.147C611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-cluster-py In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz16889/rpms/comoonics-cluster-py Added Files: Makefile Log Message: Setup of module comoonics-cluster-py --- NEW FILE Makefile --- # Top level Makefile for module comoonics-cluster-py all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 19:18:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:18:59 +0000 (UTC) Subject: rpms/comoonics-cluster-py/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724191859.573C011C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/comoonics-cluster-py/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsz16889/rpms/comoonics-cluster-py/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module comoonics-cluster-py --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: comoonics-cluster-py # $Id: Makefile,v 1.1 2009/07/24 19:18:59 tibbs Exp $ NAME := comoonics-cluster-py SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 19:19:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:19:07 +0000 (UTC) Subject: rpms/compat-gcc-34/devel compat-gcc-34.spec,1.14,1.15 Message-ID: <20090724191907.9868311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-gcc-34/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17122 Modified Files: compat-gcc-34.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-gcc-34.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-34/devel/compat-gcc-34.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- compat-gcc-34.spec 12 Jun 2009 21:29:55 -0000 1.14 +++ compat-gcc-34.spec 24 Jul 2009 19:19:07 -0000 1.15 @@ -16,7 +16,7 @@ Summary: Compatibility GNU Compiler Collection Name: compat-gcc-34 Version: 3.4.6 -Release: 14 +Release: 15 # libgcc and crtstuff have an exception which allows # linking it into any kind of programs or shared libraries without # restrictions. @@ -668,6 +668,9 @@ fi %{_prefix}/%{_lib}/libg2c.so.0* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4.6-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Dennis Gilmore - 3.4.6-14 - setup to build sparcv9 From jkeating at fedoraproject.org Fri Jul 24 19:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:19:23 +0000 (UTC) Subject: rpms/compat-guichan05/devel compat-guichan05.spec,1.7,1.8 Message-ID: <20090724191923.C660711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-guichan05/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17311 Modified Files: compat-guichan05.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-guichan05.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-guichan05/devel/compat-guichan05.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- compat-guichan05.spec 24 Feb 2009 08:36:12 -0000 1.7 +++ compat-guichan05.spec 24 Jul 2009 19:19:23 -0000 1.8 @@ -1,6 +1,6 @@ Name: compat-guichan05 Version: 0.5.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Compatibility libraries for older guichan versions Group: Development/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:19:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:19:36 +0000 Subject: [pkgdb] perl-Sys-Virt-TCK (Fedora, devel) updated by tibbs Message-ID: <20090724191936.1F93010F8AD@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Sys-Virt-TCK (Fedora devel) for virtmaint tibbs approved watchcommits on perl-Sys-Virt-TCK (Fedora devel) for virtmaint To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt-TCK From jkeating at fedoraproject.org Fri Jul 24 19:19:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:19:43 +0000 (UTC) Subject: rpms/compat-libgda/devel compat-libgda.spec,1.7,1.8 Message-ID: <20090724191943.ABB2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-libgda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17545 Modified Files: compat-libgda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-libgda.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgda/devel/compat-libgda.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- compat-libgda.spec 24 Feb 2009 08:37:13 -0000 1.7 +++ compat-libgda.spec 24 Jul 2009 19:19:43 -0000 1.8 @@ -37,7 +37,7 @@ Name: compat-libgda Version: 3.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for writing gnome database programs Group: System Environment/Libraries License: LGPLv2+ @@ -557,6 +557,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 19:20:01 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 19:20:01 +0000 (UTC) Subject: rpms/subtitlecomposer/devel subtitlecomposer.desktop, 1.4, 1.5 subtitlecomposer.spec, 1.4, 1.5 Message-ID: <20090724192001.5417011C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/subtitlecomposer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17367 Modified Files: subtitlecomposer.desktop subtitlecomposer.spec Log Message: cvs only, no build * Fri Jul 24 2009 Rex Dieter 0.5.3-2 - .desktop: Categories: -Video +AudioVideo - optimize scriptlets (drop xdg-utils, shared-mime-info deps) - own %{_kde4_appsdir}/subtitlecomposer/ Index: subtitlecomposer.desktop =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/devel/subtitlecomposer.desktop,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.desktop 31 Mar 2009 20:25:12 -0000 1.4 +++ subtitlecomposer.desktop 24 Jul 2009 19:20:00 -0000 1.5 @@ -6,4 +6,4 @@ Exec=subtitlecomposer Icon=subtitlecomposer Terminal=false Type=Application -Categories=Qt;KDE;Video;AudioVideoEditing; +Categories=Qt;KDE;AudioVideo;AudioVideoEditing; Index: subtitlecomposer.spec =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/devel/subtitlecomposer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- subtitlecomposer.spec 9 Jun 2009 20:07:27 -0000 1.4 +++ subtitlecomposer.spec 24 Jul 2009 19:20:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: subtitlecomposer Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A text-based subtitles editor License: GPLv2+ @@ -18,10 +18,8 @@ BuildRequires: kdelibs4-devel BuildRequires: gettext BuildRequires: giflib-devel BuildRequires: pcre-devel -Requires(post): /sbin/ldconfig xdg-utils -Requires(postun): /sbin/ldconfig xdg-utils -Requires(post): shared-mime-info -Requires(postun): shared-mime-info +Requires(post): /sbin/ldconfig +Requires(postun): /sbin/ldconfig %description A text-based subtitles editor @@ -35,7 +33,7 @@ pushd %{_target_platform} %{cmake_kde4} .. popd -make %{?_smp_mflags} -C %{_target_platform} VERBOSE=1 +make %{?_smp_mflags} -C %{_target_platform} %install @@ -43,6 +41,7 @@ rm -rf $RPM_BUILD_ROOT make install/fast DESTDIR=${RPM_BUILD_ROOT} -C %{_target_platform} +# pixmaps is deprecated, really still needed? -- Rex %{__install} -p -D %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png desktop-file-install --dir=$RPM_BUILD_ROOT%{_kde4_datadir}/applications/kde4 %{SOURCE1} @@ -54,20 +53,27 @@ rm -rf $RPM_BUILD_ROOT %post /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || : %postun /sbin/ldconfig -xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || : -update-mime-database %{_datadir}/mime &> /dev/null || : +if [ $1 -eq 0 ] ; then + update-mime-database %{_datadir}/mime &> /dev/null + touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null + gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : +fi + +%posttrans +update-mime-database %{_datadir}/mime &> /dev/null +gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || : + %files -f %{name}.lang %defattr(-,root,root,-) -%{_bindir}/subtitlecomposer +%{_kde4_bindir}/subtitlecomposer %attr(644,root,root) %{_datadir}/pixmaps/subtitlecomposer.png %{_kde4_datadir}/applications/kde4/subtitlecomposer.desktop -%{_datadir}/config/subtitlecomposerrc +%{_kde4_configdir}/subtitlecomposerrc %{_kde4_iconsdir}/hicolor/128x128/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/128x128/actions/* %{_kde4_iconsdir}/hicolor/16x16/actions/* @@ -76,11 +82,15 @@ update-mime-database %{_datadir}/mime &> %{_kde4_iconsdir}/hicolor/32x32/apps/subtitlecomposer.png %{_kde4_iconsdir}/hicolor/48x48/apps/* %{_kde4_iconsdir}/hicolor/scalable/actions/* -%{_kde4_appsdir}/subtitlecomposer/* -%{_kde4_appsdir}/subtitlecomposer/pics/* +%{_kde4_appsdir}/subtitlecomposer/ %{_datadir}/mime/packages/subtitlecomposer.xml %changelog +* Fri Jul 24 2009 Rex Dieter 0.5.3-2 +- .desktop: Categories: -Video +AudioVideo +- optimize scriptlets (drop xdg-utils, shared-mime-info deps) +- own %%{_kde4_appsdir}/subtitlecomposer/ + * Tue Jun 09 2009 Steven M. Parrish 0.5.3-1 - New upstream release - added Czech, Brazilian Portuguese, Bulgarian, French and German From dwayne at fedoraproject.org Fri Jul 24 19:20:17 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 24 Jul 2009 19:20:17 +0000 (UTC) Subject: rpms/virtaal/devel virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch, 1.1, NONE Message-ID: <20090724192017.A43CB11C04D5@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/virtaal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17800 Removed Files: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch Log Message: Remove patch integrated in 0.4.0 rc1 --- virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 19:20:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:20:12 +0000 (UTC) Subject: rpms/compat-libgdamm/devel compat-libgdamm.spec,1.2,1.3 Message-ID: <20090724192012.E6EB611C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17819 Modified Files: compat-libgdamm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-libgdamm.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgdamm/devel/compat-libgdamm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- compat-libgdamm.spec 14 Jul 2009 10:33:05 -0000 1.2 +++ compat-libgdamm.spec 24 Jul 2009 19:20:12 -0000 1.3 @@ -1,7 +1,7 @@ %define name_ libgdamm Name: compat-libgdamm Version: 3.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 14 2009 Hicham HAOUARI 3.0.1-3 - Bump release From jkeating at fedoraproject.org Fri Jul 24 19:20:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:20:26 +0000 (UTC) Subject: rpms/compat-libgfortran-41/devel compat-libgfortran-41.spec, 1.2, 1.3 Message-ID: <20090724192026.E610B11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-libgfortran-41/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18045 Modified Files: compat-libgfortran-41.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-libgfortran-41.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-libgfortran-41/devel/compat-libgfortran-41.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- compat-libgfortran-41.spec 24 Feb 2009 08:38:08 -0000 1.2 +++ compat-libgfortran-41.spec 24 Jul 2009 19:20:26 -0000 1.3 @@ -3,7 +3,7 @@ Summary: Compatibility Fortran 95 runtime library version 4.1.2 Name: compat-libgfortran-41 Version: 4.1.2 -Release: 37 +Release: 38 # libgfortran has an exception which allows # linking it into any kind of programs or shared libraries without # restrictions. @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgfortran.so.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.2-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.1.2-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:20:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:20:27 +0000 Subject: [pkgdb] perl-Sys-Virt-TCK (Fedora, 11) updated by tibbs Message-ID: <20090724192027.6988410F890@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Sys-Virt-TCK (Fedora 11) for virtmaint tibbs approved watchcommits on perl-Sys-Virt-TCK (Fedora 11) for virtmaint To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Sys-Virt-TCK From jkeating at fedoraproject.org Fri Jul 24 19:20:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:20:41 +0000 (UTC) Subject: rpms/compat-readline5/devel compat-readline5.spec,1.1,1.2 Message-ID: <20090724192041.40F4B11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-readline5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18196 Modified Files: compat-readline5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-readline5.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-readline5/devel/compat-readline5.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- compat-readline5.spec 14 Jul 2009 11:49:16 -0000 1.1 +++ compat-readline5.spec 24 Jul 2009 19:20:40 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A library for editing typed command lines Name: compat-readline5 Version: 5.2 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/readline5/lib*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Miroslav Lichvar 5.2-16 - review fixes (#510022) From jkeating at fedoraproject.org Fri Jul 24 19:20:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:20:59 +0000 (UTC) Subject: rpms/compat-wxGTK26/devel compat-wxGTK26.spec,1.28,1.29 Message-ID: <20090724192059.7E40B11C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compat-wxGTK26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18386 Modified Files: compat-wxGTK26.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compat-wxGTK26.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-wxGTK26/devel/compat-wxGTK26.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- compat-wxGTK26.spec 15 Jul 2009 19:11:35 -0000 1.28 +++ compat-wxGTK26.spec 24 Jul 2009 19:20:59 -0000 1.29 @@ -1,6 +1,6 @@ Name: compat-wxGTK26 Version: 2.6.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -208,6 +208,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Michael Schwendt - 2.6.4-10 - apply rediffed fix for CVE-2009-2369 (#511279) From jkeating at fedoraproject.org Fri Jul 24 19:21:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:21:14 +0000 (UTC) Subject: rpms/compface/devel compface.spec,1.22,1.23 Message-ID: <20090724192114.C7EFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18572 Modified Files: compface.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compface.spec =================================================================== RCS file: /cvs/pkgs/rpms/compface/devel/compface.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- compface.spec 15 May 2009 10:24:33 -0000 1.22 +++ compface.spec 24 Jul 2009 19:21:14 -0000 1.23 @@ -1,6 +1,6 @@ Name: compface Version: 1.5.2 -Release: 10 +Release: 11 Summary: Library and tools for handling X-Face data Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Michael Schwendt - 1.5.2-10 - Minor spec updates. - Sync with Debian's most recent 1.5.2-4 patchset, although it doesn't From jkeating at fedoraproject.org Fri Jul 24 19:21:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:21:31 +0000 (UTC) Subject: rpms/compiz/devel compiz.spec,1.172,1.173 Message-ID: <20090724192131.5B99611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18752 Modified Files: compiz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz/devel/compiz.spec,v retrieving revision 1.172 retrieving revision 1.173 diff -u -p -r1.172 -r1.173 --- compiz.spec 11 Jul 2009 08:25:55 -0000 1.172 +++ compiz.spec 24 Jul 2009 19:21:31 -0000 1.173 @@ -14,7 +14,7 @@ URL: http://www.go-compiz.org License: GPLv2+ and LGPLv2+ and MIT Group: User Interface/Desktops Version: 0.8.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OpenGL window and compositing manager BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -359,6 +359,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Adel Gadllah - 0.8.2-6 - Fix build From jkeating at fedoraproject.org Fri Jul 24 19:21:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:21:44 +0000 (UTC) Subject: rpms/compiz-bcop/devel compiz-bcop.spec,1.9,1.10 Message-ID: <20090724192144.EF5C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compiz-bcop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18895 Modified Files: compiz-bcop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compiz-bcop.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-bcop/devel/compiz-bcop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- compiz-bcop.spec 25 May 2009 19:46:36 -0000 1.9 +++ compiz-bcop.spec 24 Jul 2009 19:21:44 -0000 1.10 @@ -1,6 +1,6 @@ Name: compiz-bcop Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Compiz option code generator Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Adel Gadllah 0.8.2-1 - Update to 0.8.2 From jkeating at fedoraproject.org Fri Jul 24 19:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:21:59 +0000 (UTC) Subject: rpms/compiz-fusion/devel compiz-fusion.spec,1.52,1.53 Message-ID: <20090724192159.A62DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compiz-fusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19059 Modified Files: compiz-fusion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compiz-fusion.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-fusion/devel/compiz-fusion.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- compiz-fusion.spec 13 Jul 2009 16:30:43 -0000 1.52 +++ compiz-fusion.spec 24 Jul 2009 19:21:59 -0000 1.53 @@ -2,7 +2,7 @@ Name: compiz-fusion Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Collection of Compiz Fusion plugins for Compiz Group: User Interface/Desktops @@ -140,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Adel Gadllah 0.8.2-3 - Remove the wall gconf schema (conflicts with the one in compiz) From pkgdb at fedoraproject.org Fri Jul 24 19:22:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:06 +0000 Subject: [pkgdb] zikula-module-scribite was added for sparks Message-ID: <20090724192206.5106510F8AF@bastion2.fedora.phx.redhat.com> tibbs has added Package zikula-module-scribite with summary Integration of several JavaScript text editors with Zikula tibbs has approved Package zikula-module-scribite tibbs has added a Fedora devel branch for zikula-module-scribite with an owner of sparks tibbs has approved zikula-module-scribite in Fedora devel tibbs has approved Package zikula-module-scribite tibbs has set commit to Approved for 107427 on zikula-module-scribite (Fedora devel) tibbs has set checkout to Approved for 107427 on zikula-module-scribite (Fedora devel) tibbs has set build to Approved for 107427 on zikula-module-scribite (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From pkgdb at fedoraproject.org Fri Jul 24 19:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:07 +0000 Subject: [pkgdb] zikula-module-scribite summary updated by tibbs Message-ID: <20090724192207.DCB2310F8B7@bastion2.fedora.phx.redhat.com> tibbs set package zikula-module-scribite summary to Integration of several JavaScript text editors with Zikula To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From pkgdb at fedoraproject.org Fri Jul 24 19:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:07 +0000 Subject: [pkgdb] zikula-module-scribite (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724192207.E6D3210F8BD@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on zikula-module-scribite (Fedora devel) for ke4qqq tibbs approved watchcommits on zikula-module-scribite (Fedora devel) for ke4qqq tibbs approved commit on zikula-module-scribite (Fedora devel) for ke4qqq tibbs approved build on zikula-module-scribite (Fedora devel) for ke4qqq tibbs approved approveacls on zikula-module-scribite (Fedora devel) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From pkgdb at fedoraproject.org Fri Jul 24 19:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:07 +0000 Subject: [pkgdb] zikula-module-scribite (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724192208.0102A10F8C3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for zikula-module-scribite tibbs has set commit to Approved for 107427 on zikula-module-scribite (Fedora 11) tibbs has set checkout to Approved for 107427 on zikula-module-scribite (Fedora 11) tibbs has set build to Approved for 107427 on zikula-module-scribite (Fedora 11) tibbs approved watchbugzilla on zikula-module-scribite (Fedora 11) for ke4qqq tibbs approved watchcommits on zikula-module-scribite (Fedora 11) for ke4qqq tibbs approved commit on zikula-module-scribite (Fedora 11) for ke4qqq tibbs approved build on zikula-module-scribite (Fedora 11) for ke4qqq tibbs approved approveacls on zikula-module-scribite (Fedora 11) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From pkgdb at fedoraproject.org Fri Jul 24 19:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:07 +0000 Subject: [pkgdb] zikula-module-scribite (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724192208.0D8D610F8C6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for zikula-module-scribite tibbs has set commit to Approved for 107427 on zikula-module-scribite (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on zikula-module-scribite (Fedora EPEL 5) tibbs has set build to Approved for 107427 on zikula-module-scribite (Fedora EPEL 5) tibbs approved watchbugzilla on zikula-module-scribite (Fedora EPEL 5) for ke4qqq tibbs approved watchcommits on zikula-module-scribite (Fedora EPEL 5) for ke4qqq tibbs approved commit on zikula-module-scribite (Fedora EPEL 5) for ke4qqq tibbs approved build on zikula-module-scribite (Fedora EPEL 5) for ke4qqq tibbs approved approveacls on zikula-module-scribite (Fedora EPEL 5) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From tibbs at fedoraproject.org Fri Jul 24 19:22:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:22:15 +0000 (UTC) Subject: rpms/zikula-module-scribite - New directory Message-ID: <20090724192215.19A1A11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zikula-module-scribite In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst19276/rpms/zikula-module-scribite Log Message: Directory /cvs/pkgs/rpms/zikula-module-scribite added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:22:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:22:15 +0000 (UTC) Subject: rpms/zikula-module-scribite/devel - New directory Message-ID: <20090724192215.4C0CD11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zikula-module-scribite/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst19276/rpms/zikula-module-scribite/devel Log Message: Directory /cvs/pkgs/rpms/zikula-module-scribite/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:22:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:22:21 +0000 (UTC) Subject: rpms/zikula-module-scribite Makefile,NONE,1.1 Message-ID: <20090724192221.5C1D311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zikula-module-scribite In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst19276/rpms/zikula-module-scribite Added Files: Makefile Log Message: Setup of module zikula-module-scribite --- NEW FILE Makefile --- # Top level Makefile for module zikula-module-scribite all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From jkeating at fedoraproject.org Fri Jul 24 19:22:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:22:12 +0000 (UTC) Subject: rpms/compiz-fusion-extras/devel compiz-fusion-extras.spec, 1.28, 1.29 Message-ID: <20090724192212.C649911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compiz-fusion-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19271 Modified Files: compiz-fusion-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compiz-fusion-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-fusion-extras/devel/compiz-fusion-extras.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- compiz-fusion-extras.spec 26 May 2009 19:51:58 -0000 1.28 +++ compiz-fusion-extras.spec 24 Jul 2009 19:22:12 -0000 1.29 @@ -2,7 +2,7 @@ Name: compiz-fusion-extras Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Additional Compiz Fusion plugins for Compiz Group: User Interface/Desktops @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/compiz-* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Adel Gadllah 0.8.2-1 - Update to 0.8.2 From tibbs at fedoraproject.org Fri Jul 24 19:22:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:22:21 +0000 (UTC) Subject: rpms/zikula-module-scribite/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724192221.B425B11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/zikula-module-scribite/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvst19276/rpms/zikula-module-scribite/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module zikula-module-scribite --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: zikula-module-scribite # $Id: Makefile,v 1.1 2009/07/24 19:22:21 tibbs Exp $ NAME := zikula-module-scribite SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 24 19:22:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:22:07 +0000 Subject: [pkgdb] zikula-module-scribite (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724192208.1933210F8CA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for zikula-module-scribite tibbs has set commit to Approved for 107427 on zikula-module-scribite (Fedora 10) tibbs has set checkout to Approved for 107427 on zikula-module-scribite (Fedora 10) tibbs has set build to Approved for 107427 on zikula-module-scribite (Fedora 10) tibbs approved watchbugzilla on zikula-module-scribite (Fedora 10) for ke4qqq tibbs approved watchcommits on zikula-module-scribite (Fedora 10) for ke4qqq tibbs approved commit on zikula-module-scribite (Fedora 10) for ke4qqq tibbs approved build on zikula-module-scribite (Fedora 10) for ke4qqq tibbs approved approveacls on zikula-module-scribite (Fedora 10) for ke4qqq To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/zikula-module-scribite From mtasaka at fedoraproject.org Fri Jul 24 19:22:34 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:22:34 +0000 (UTC) Subject: rpms/perl-mecab/devel perl-mecab.spec,1.15,1.16 Message-ID: <20090724192234.CA2A211C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/perl-mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19767 Modified Files: perl-mecab.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 - F-12: Mass rebuild Index: perl-mecab.spec =================================================================== RCS file: /cvs/extras/rpms/perl-mecab/devel/perl-mecab.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-mecab.spec 3 Jun 2009 19:46:28 -0000 1.15 +++ perl-mecab.spec 24 Jul 2009 19:22:34 -0000 1.16 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define relnumber 2 +%define relnumber 3 %define srcname mecab-perl Name: perl-mecab @@ -60,6 +60,9 @@ find $RPM_BUILD_ROOT -depth -type d | xa %{perl_vendorarch}/auto/MeCab/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.2.pre3 - 0.98pre3 From jkeating at fedoraproject.org Fri Jul 24 19:22:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:22:26 +0000 (UTC) Subject: rpms/compiz-manager/devel compiz-manager.spec,1.8,1.9 Message-ID: <20090724192226.5616111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compiz-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19511 Modified Files: compiz-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compiz-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/compiz-manager/devel/compiz-manager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- compiz-manager.spec 24 Feb 2009 08:45:23 -0000 1.8 +++ compiz-manager.spec 24 Jul 2009 19:22:26 -0000 1.9 @@ -1,6 +1,6 @@ Name: compiz-manager Version: 0.6.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A wrapper script to start compiz with proper options Group: Applications/System @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_bindir}/compiz-manager %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:22:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:22:40 +0000 (UTC) Subject: rpms/compizconfig-backend-gconf/devel compizconfig-backend-gconf.spec, 1.10, 1.11 Message-ID: <20090724192240.044DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compizconfig-backend-gconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19827 Modified Files: compizconfig-backend-gconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compizconfig-backend-gconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-gconf/devel/compizconfig-backend-gconf.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- compizconfig-backend-gconf.spec 23 Jul 2009 19:30:56 -0000 1.10 +++ compizconfig-backend-gconf.spec 24 Jul 2009 19:22:39 -0000 1.11 @@ -2,7 +2,7 @@ Name: compizconfig-backend-gconf Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GConf backend for compizconfig Group: System Environment/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/compizconfig/backends/libgconf.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 From pbrobinson at fedoraproject.org Fri Jul 24 19:22:52 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Fri, 24 Jul 2009 19:22:52 +0000 (UTC) Subject: rpms/moblin-gtk-engine/devel .cvsignore, 1.3, 1.4 moblin-gtk-engine.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724192252.69CF711C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/moblin-gtk-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20016 Modified Files: .cvsignore moblin-gtk-engine.spec sources Log Message: - New upstream 0.4.1 release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 23 Jul 2009 13:32:57 -0000 1.3 +++ .cvsignore 24 Jul 2009 19:22:52 -0000 1.4 @@ -1 +1 @@ -moblin-gtk-engine-0.4.0.tar.bz2 +moblin-gtk-engine-0.4.1.tar.bz2 Index: moblin-gtk-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/moblin-gtk-engine.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- moblin-gtk-engine.spec 23 Jul 2009 13:32:57 -0000 1.2 +++ moblin-gtk-engine.spec 24 Jul 2009 19:22:52 -0000 1.3 @@ -1,5 +1,5 @@ Name: moblin-gtk-engine -Version: 0.4.0 +Version: 0.4.1 Release: 1%{?dist} Summary: GTK engine for Moblin @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_datadir}/themes/Moblin-Netbook/metacity-1 %changelog +* Fri Jul 24 2009 Peter Robinson 0.4.1-1 +- New upstream 0.4.1 release + * Thu Jul 23 2009 Peter Robinson 0.4.0-1 - New upstream 0.4.0 release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/moblin-gtk-engine/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 Jul 2009 13:32:57 -0000 1.3 +++ sources 24 Jul 2009 19:22:52 -0000 1.4 @@ -1 +1 @@ -f7459655cefefd31201bb9b714dbffeb moblin-gtk-engine-0.4.0.tar.bz2 +f846fcce0ce2ccc1f30d1e94451e569e moblin-gtk-engine-0.4.1.tar.bz2 From jkeating at fedoraproject.org Fri Jul 24 19:22:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:22:53 +0000 (UTC) Subject: rpms/compizconfig-backend-kconfig/devel compizconfig-backend-kconfig.spec, 1.8, 1.9 Message-ID: <20090724192253.C8DD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20043 Modified Files: compizconfig-backend-kconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compizconfig-backend-kconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-backend-kconfig/devel/compizconfig-backend-kconfig.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- compizconfig-backend-kconfig.spec 23 Jul 2009 19:33:16 -0000 1.8 +++ compizconfig-backend-kconfig.spec 24 Jul 2009 19:22:53 -0000 1.9 @@ -2,7 +2,7 @@ Name: compizconfig-backend-kconfig Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: kconfig backend for compizconfig Group: System Environment/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/compizconfig/backends/libkconfig.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 From pkgdb at fedoraproject.org Fri Jul 24 19:23:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:02 +0000 Subject: [pkgdb] olpc-powerd was added for pgf Message-ID: <20090724192302.CCEF010F8BC@bastion2.fedora.phx.redhat.com> tibbs has added Package olpc-powerd with summary power management for the XO laptop tibbs has approved Package olpc-powerd tibbs has added a Fedora devel branch for olpc-powerd with an owner of pgf tibbs has approved olpc-powerd in Fedora devel tibbs has approved Package olpc-powerd tibbs has set commit to Approved for 107427 on olpc-powerd (Fedora devel) tibbs has set checkout to Approved for 107427 on olpc-powerd (Fedora devel) tibbs has set build to Approved for 107427 on olpc-powerd (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-powerd From pkgdb at fedoraproject.org Fri Jul 24 19:23:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:04 +0000 Subject: [pkgdb] olpc-powerd summary updated by tibbs Message-ID: <20090724192304.2ED4A10F8C0@bastion2.fedora.phx.redhat.com> tibbs set package olpc-powerd summary to power management for the XO laptop To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-powerd From pkgdb at fedoraproject.org Fri Jul 24 19:23:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:04 +0000 Subject: [pkgdb] olpc-powerd (Fedora, 11) updated by tibbs Message-ID: <20090724192304.3659910F8C3@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on olpc-powerd (Fedora devel) for cwickert tibbs approved watchcommits on olpc-powerd (Fedora devel) for cwickert To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-powerd From pkgdb at fedoraproject.org Fri Jul 24 19:23:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:04 +0000 Subject: [pkgdb] olpc-powerd (Fedora, 11) updated by tibbs Message-ID: <20090724192304.4163C10F8D2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for olpc-powerd tibbs has set commit to Approved for 107427 on olpc-powerd (Fedora 11) tibbs has set checkout to Approved for 107427 on olpc-powerd (Fedora 11) tibbs has set build to Approved for 107427 on olpc-powerd (Fedora 11) tibbs approved watchbugzilla on olpc-powerd (Fedora 11) for cwickert tibbs approved watchcommits on olpc-powerd (Fedora 11) for cwickert To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpc-powerd From tibbs at fedoraproject.org Fri Jul 24 19:23:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:10 +0000 (UTC) Subject: rpms/olpc-powerd - New directory Message-ID: <20090724192310.1F54311C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-powerd In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsR20301/rpms/olpc-powerd Log Message: Directory /cvs/pkgs/rpms/olpc-powerd added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:23:10 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:10 +0000 (UTC) Subject: rpms/olpc-powerd/devel - New directory Message-ID: <20090724192310.3BAC511C04D2@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-powerd/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsR20301/rpms/olpc-powerd/devel Log Message: Directory /cvs/pkgs/rpms/olpc-powerd/devel added to the repository From jkeating at fedoraproject.org Fri Jul 24 19:23:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:23:07 +0000 (UTC) Subject: rpms/compizconfig-python/devel compizconfig-python.spec,1.10,1.11 Message-ID: <20090724192307.63D7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/compizconfig-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20270 Modified Files: compizconfig-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: compizconfig-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/compizconfig-python/devel/compizconfig-python.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- compizconfig-python.spec 23 Jul 2009 18:12:46 -0000 1.10 +++ compizconfig-python.spec 24 Jul 2009 19:23:07 -0000 1.11 @@ -4,7 +4,7 @@ Name: compizconfig-python Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for the Compiz Configuration System Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Leigh Scott 0.8.2-1 - update to 0.8.2 - update the defines python_sitelib & python_sitearch From tibbs at fedoraproject.org Fri Jul 24 19:23:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:16 +0000 (UTC) Subject: rpms/olpc-powerd Makefile,NONE,1.1 Message-ID: <20090724192316.841A611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-powerd In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsR20301/rpms/olpc-powerd Added Files: Makefile Log Message: Setup of module olpc-powerd --- NEW FILE Makefile --- # Top level Makefile for module olpc-powerd all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 19:23:16 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:16 +0000 (UTC) Subject: rpms/olpc-powerd/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724192316.CA38D11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/olpc-powerd/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsR20301/rpms/olpc-powerd/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module olpc-powerd --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: olpc-powerd # $Id: Makefile,v 1.1 2009/07/24 19:23:16 tibbs Exp $ NAME := olpc-powerd SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 19:23:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:23:21 +0000 (UTC) Subject: rpms/comps-extras/devel comps-extras.spec,1.32,1.33 Message-ID: <20090724192321.9667911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/comps-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20526 Modified Files: comps-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: comps-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/comps-extras/devel/comps-extras.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- comps-extras.spec 24 Feb 2009 08:49:04 -0000 1.32 +++ comps-extras.spec 24 Jul 2009 19:23:21 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Images for components included in Fedora Name: comps-extras Version: 16 -Release: 2 +Release: 3 URL: http://git.fedorahosted.org/git/?p=comps-extras.git;a=summary Source0: http://fedorahosted.org/releases/c/o/comps-extras/%{name}-%{version}.tar.gz # while GPL isn't normal for images, it is the case here @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/comps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 19:23:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:28 +0000 Subject: [pkgdb] python-lockfile was added for silas Message-ID: <20090724192328.83BFF10F8DB@bastion2.fedora.phx.redhat.com> tibbs has added Package python-lockfile with summary A platform-independent file locking module tibbs has approved Package python-lockfile tibbs has added a Fedora devel branch for python-lockfile with an owner of silas tibbs has approved python-lockfile in Fedora devel tibbs has approved Package python-lockfile tibbs has set commit to Approved for 107427 on python-lockfile (Fedora devel) tibbs has set checkout to Approved for 107427 on python-lockfile (Fedora devel) tibbs has set build to Approved for 107427 on python-lockfile (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-lockfile From pkgdb at fedoraproject.org Fri Jul 24 19:23:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:29 +0000 Subject: [pkgdb] python-lockfile summary updated by tibbs Message-ID: <20090724192329.25C8010F8DE@bastion2.fedora.phx.redhat.com> tibbs set package python-lockfile summary to A platform-independent file locking module To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-lockfile From pkgdb at fedoraproject.org Fri Jul 24 19:23:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 19:23:29 +0000 Subject: [pkgdb] python-lockfile (Fedora, 11) updated by tibbs Message-ID: <20090724192329.3105D10F8E1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-lockfile tibbs has set commit to Approved for 107427 on python-lockfile (Fedora 11) tibbs has set checkout to Approved for 107427 on python-lockfile (Fedora 11) tibbs has set build to Approved for 107427 on python-lockfile (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-lockfile From tibbs at fedoraproject.org Fri Jul 24 19:23:35 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:35 +0000 (UTC) Subject: rpms/python-lockfile - New directory Message-ID: <20090724192335.1449A11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-lockfile In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq20698/rpms/python-lockfile Log Message: Directory /cvs/pkgs/rpms/python-lockfile added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:23:35 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:35 +0000 (UTC) Subject: rpms/python-lockfile/devel - New directory Message-ID: <20090724192335.3B4B211C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-lockfile/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq20698/rpms/python-lockfile/devel Log Message: Directory /cvs/pkgs/rpms/python-lockfile/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 19:23:41 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:41 +0000 (UTC) Subject: rpms/python-lockfile Makefile,NONE,1.1 Message-ID: <20090724192341.3AB5711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-lockfile In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq20698/rpms/python-lockfile Added Files: Makefile Log Message: Setup of module python-lockfile --- NEW FILE Makefile --- # Top level Makefile for module python-lockfile all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 19:23:41 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 19:23:41 +0000 (UTC) Subject: rpms/python-lockfile/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724192341.7F03611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-lockfile/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq20698/rpms/python-lockfile/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-lockfile --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-lockfile # $Id: Makefile,v 1.1 2009/07/24 19:23:41 tibbs Exp $ NAME := python-lockfile SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From dwayne at fedoraproject.org Fri Jul 24 19:23:43 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 24 Jul 2009 19:23:43 +0000 (UTC) Subject: rpms/virtaal/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 virtaal.spec, 1.8, 1.9 virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch, 1.1, NONE Message-ID: <20090724192343.ABDE511C00CE@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/virtaal/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20413 Modified Files: .cvsignore sources virtaal.spec Removed Files: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch Log Message: * Fri Jul 24 2009 Dwayne Bailey - 0.4.0-0.2.rc1 - Update to 0.4.0 rc1: Improvements since beta 1: - User interface improvements, including - better English text - better display on small screens - better display in right-to-left languages - updated translations: af, ar, de, en_GB, en_ZA, eu, fr, gl, nl, pt_BR, ru - Fonts are now configurable - You can select to which file a new term should be added - Improvements to comments, including making them selectable - Updated tutorial - Handling of inline elements in XLIFF - Drop --nodepcheck patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Jul 2009 11:06:18 -0000 1.7 +++ .cvsignore 24 Jul 2009 19:23:43 -0000 1.8 @@ -1,2 +1,3 @@ virtaal-0.3.1.tar.bz2 virtaal-0.4.0-beta1.tar.bz2 +virtaal-0.4.0-rc1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 13 Jul 2009 11:06:18 -0000 1.7 +++ sources 24 Jul 2009 19:23:43 -0000 1.8 @@ -1,2 +1,3 @@ eef03a4afa2f8a1e17f94a807268b7e3 virtaal-0.3.1.tar.bz2 30ce41da361ef9efab109eea8efebf64 virtaal-0.4.0-beta1.tar.bz2 +a4b889b28f905803351e89356baf83d0 virtaal-0.4.0-rc1.tar.bz2 Index: virtaal.spec =================================================================== RCS file: /cvs/pkgs/rpms/virtaal/F-11/virtaal.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- virtaal.spec 13 Jul 2009 11:06:18 -0000 1.8 +++ virtaal.spec 24 Jul 2009 19:23:43 -0000 1.9 @@ -2,19 +2,18 @@ Name: virtaal Version: 0.4.0 -Release: 0.1.beta1%{?dist} +Release: 0.2.rc1%{?dist} Summary: Localization and translation editor Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/virtaal/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-beta1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/virtaal-0.4.0-beta1/%{name}-%{version}-rc1.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: virtaal-0.3beta1-setup_drop_MO_generation.patch Patch1: virtaal-0.3.0-autocorr_shared_location.patch -Patch2: virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch BuildArch: noarch BuildRequires: python @@ -55,10 +54,9 @@ converters allow translators to edit: Op %prep -%setup -q -n %{name}-%{version}-beta1 +%setup -q -n %{name}-%{version}-rc1 %patch0 -p1 -b .setup_drop_MO_generation %patch1 -p1 -b .autocorr_shared_location -%patch2 -p3 -b .nodepcheck %build %{__python} setup.py build @@ -143,6 +141,23 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Dwayne Bailey - 0.4.0-0.2.rc1 +- Update to 0.4.0 rc1: + + Improvements since beta 1: + - User interface improvements, including + - better English text + - better display on small screens + - better display in right-to-left languages + - updated translations: af, ar, de, en_GB, en_ZA, eu, fr, gl, nl, pt_BR, ru + - Fonts are now configurable + - You can select to which file a new term should be added + - Improvements to comments, including making them selectable + - Updated tutorial + - Handling of inline elements in XLIFF + +- Drop --nodepcheck patch + * Tue Jun 30 2009 Dwayne Bailey - 0.4.0-0.1.beta1 - Update to 0.4.0 beta1 - Backport r11846 --nodepcheck --- virtaal-0.4.0-bug1015-rev11846-nodepcheck.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 19:23:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:23:37 +0000 (UTC) Subject: rpms/conakry-fonts/devel conakry-fonts.spec,1.1,1.2 Message-ID: <20090724192337.6807A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conakry-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20748 Modified Files: conakry-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conakry-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/conakry-fonts/devel/conakry-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- conakry-fonts.spec 15 Jul 2009 03:25:01 -0000 1.1 +++ conakry-fonts.spec 24 Jul 2009 19:23:37 -0000 1.2 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070829 -Release: 2%{?dist} +Release: 3%{?dist} Summary: N'Ko font by Michael Everson Group: User Interface/X @@ -58,6 +58,9 @@ rm -fr %{buildroot} %doc *.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070829-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Ankur Sinha - 20070829-2 - made corrections as per bug #511219 * Tue Jul 14 2009 Ankur Sinha - 20070829-1 From jkeating at fedoraproject.org Fri Jul 24 19:23:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:23:53 +0000 (UTC) Subject: rpms/concordance/devel concordance.spec,1.4,1.5 Message-ID: <20090724192353.11BFA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/concordance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21003 Modified Files: concordance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: concordance.spec =================================================================== RCS file: /cvs/pkgs/rpms/concordance/devel/concordance.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- concordance.spec 10 Mar 2009 23:01:53 -0000 1.4 +++ concordance.spec 24 Jul 2009 19:23:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: concordance Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Software to program the Logitech Harmony remote control Group: Applications/Communications @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Douglas E. Warner 0.21-1 - moved udev/policykit rules to libconcord package - supports flashing 5** remotes From mtasaka at fedoraproject.org Fri Jul 24 19:24:40 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:24:40 +0000 (UTC) Subject: rpms/python-mecab/devel python-mecab.spec,1.12,1.13 Message-ID: <20090724192440.EB07611C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/python-mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21558 Modified Files: python-mecab.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 - F-12: Mass rebuild Index: python-mecab.spec =================================================================== RCS file: /cvs/extras/rpms/python-mecab/devel/python-mecab.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-mecab.spec 3 Jun 2009 19:46:29 -0000 1.12 +++ python-mecab.spec 24 Jul 2009 19:24:40 -0000 1.13 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define relnumber 2 +%define relnumber 3 %define srcname mecab-python %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} @@ -61,6 +61,9 @@ cd .. %endif %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.2.pre3 - 0.98pre3 From jkeating at fedoraproject.org Fri Jul 24 19:24:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:24:08 +0000 (UTC) Subject: rpms/concurrent/devel concurrent.spec,1.21,1.22 Message-ID: <20090724192408.353C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/concurrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21161 Modified Files: concurrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: concurrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/concurrent/devel/concurrent.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- concurrent.spec 24 Feb 2009 08:50:56 -0000 1.21 +++ concurrent.spec 24 Jul 2009 19:24:08 -0000 1.22 @@ -32,7 +32,7 @@ Name: concurrent Version: 1.3.4 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 0 Summary: Utility classes for concurrent Java programming License: Public Domain @@ -136,6 +136,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.3.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.3.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:24:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:24:24 +0000 (UTC) Subject: rpms/condor/devel condor.spec,1.19,1.20 Message-ID: <20090724192424.D3A5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/condor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21371 Modified Files: condor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: condor.spec =================================================================== RCS file: /cvs/pkgs/rpms/condor/devel/condor.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- condor.spec 25 Feb 2009 20:20:10 -0000 1.19 +++ condor.spec 24 Jul 2009 19:24:24 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Condor: High Throughput Computing Name: condor Version: 7.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 Group: Applications/System URL: http://www.cs.wisc.edu/condor/ @@ -571,6 +571,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 25 2009 - 7.2.1-1 - Upgraded to 7.2.1 release - Pruned changes accepted upstream from condor_config.generic.patch From jkeating at fedoraproject.org Fri Jul 24 19:24:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:24:41 +0000 (UTC) Subject: rpms/conduit/devel conduit.spec,1.30,1.31 Message-ID: <20090724192441.7922611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conduit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21573 Modified Files: conduit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conduit.spec =================================================================== RCS file: /cvs/pkgs/rpms/conduit/devel/conduit.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- conduit.spec 18 Jul 2009 04:02:01 -0000 1.30 +++ conduit.spec 24 Jul 2009 19:24:41 -0000 1.31 @@ -2,7 +2,7 @@ Name: conduit Version: 0.3.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A synchronization solution for GNOME Group: Applications/Productivity @@ -135,6 +135,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Bernard Johnson - 0.3.16-1 - v 0.3.16 (bz #512406) - don't include TODO file (bz #510899) From jkeating at fedoraproject.org Fri Jul 24 19:24:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:24:55 +0000 (UTC) Subject: rpms/cone/devel cone.spec,1.31,1.32 Message-ID: <20090724192455.5588311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21781 Modified Files: cone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cone.spec =================================================================== RCS file: /cvs/pkgs/rpms/cone/devel/cone.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- cone.spec 13 Jun 2009 19:10:08 -0000 1.31 +++ cone.spec 24 Jul 2009 19:24:55 -0000 1.32 @@ -3,7 +3,7 @@ Summary: CONE mail reader Name: cone Version: 0.78 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.courier-mta.org/cone/ Source0: http://dl.sf.net/courier/%{name}-%{version}.tar.bz2 @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %doc cone/html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.78-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Milos Jakubicek - 0.78-1 - Update to 0.78 (resolves BZ#496421, BZ#426952). - Dropped cone-gcc44.patch (merged upstream). From jkeating at fedoraproject.org Fri Jul 24 19:25:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:25:10 +0000 (UTC) Subject: rpms/conexus/devel conexus.spec,1.20,1.21 Message-ID: <20090724192510.8586511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conexus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21957 Modified Files: conexus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conexus.spec =================================================================== RCS file: /cvs/pkgs/rpms/conexus/devel/conexus.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- conexus.spec 16 Jun 2009 19:49:56 -0000 1.20 +++ conexus.spec 24 Jul 2009 19:25:10 -0000 1.21 @@ -1,7 +1,7 @@ Summary: C++ I/O communication library Name: conexus Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 URL: http://conexus.sourceforge.net Group: System Environment/Libraries @@ -279,6 +279,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/conexus-0.8/conexus-nss/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Rick L Vinyard Jr - 0.8.0-1 - New release - Added -dbus subpackage From jkeating at fedoraproject.org Fri Jul 24 19:25:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:25:26 +0000 (UTC) Subject: rpms/conglomerate/devel conglomerate.spec,1.12,1.13 Message-ID: <20090724192526.3484111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conglomerate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22149 Modified Files: conglomerate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conglomerate.spec =================================================================== RCS file: /cvs/pkgs/rpms/conglomerate/devel/conglomerate.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- conglomerate.spec 24 Feb 2009 08:55:46 -0000 1.12 +++ conglomerate.spec 24 Jul 2009 19:25:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: conglomerate Version: 0.9.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extensible XML Editor @@ -105,6 +105,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:25:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:25:40 +0000 (UTC) Subject: rpms/congruity/devel congruity.spec,1.1,1.2 Message-ID: <20090724192540.2F21E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/congruity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22383 Modified Files: congruity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: congruity.spec =================================================================== RCS file: /cvs/pkgs/rpms/congruity/devel/congruity.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- congruity.spec 15 Jul 2009 02:39:02 -0000 1.1 +++ congruity.spec 24 Jul 2009 19:25:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: congruity Version: 12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Application to program Logitech Harmony universal remote controls Group: Applications/System @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Adam Williamson - 12-1 - new release 12 - upstream now includes the .desktop file From jkeating at fedoraproject.org Fri Jul 24 19:25:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:25:53 +0000 (UTC) Subject: rpms/conky/devel conky.spec,1.16,1.17 Message-ID: <20090724192553.22B6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22528 Modified Files: conky.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conky.spec =================================================================== RCS file: /cvs/pkgs/rpms/conky/devel/conky.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- conky.spec 20 Jul 2009 09:11:02 -0000 1.16 +++ conky.spec 24 Jul 2009 19:25:53 -0000 1.17 @@ -11,7 +11,7 @@ Name: conky Version: 1.7.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A system monitor for X Group: User Interface/X @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Miroslav Lichvar - 1.7.1.1-2 - Rebuild for new audacious - Buildrequire libxml2-devel From mtasaka at fedoraproject.org Fri Jul 24 19:26:10 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:26:10 +0000 (UTC) Subject: rpms/qdbm/devel qdbm.spec,1.14,1.15 Message-ID: <20090724192610.4F89E11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/qdbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22726 Modified Files: qdbm.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.8.77-5 - F-12: Mass rebuild Index: qdbm.spec =================================================================== RCS file: /cvs/extras/rpms/qdbm/devel/qdbm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qdbm.spec 23 Feb 2009 21:37:23 -0000 1.14 +++ qdbm.spec 24 Jul 2009 19:26:10 -0000 1.15 @@ -4,7 +4,7 @@ Name: qdbm Version: 1.8.77 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ URL: http://qdbm.sourceforge.net/ @@ -343,6 +343,9 @@ popd %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.8.77-5 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.8.77-4 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:26:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:26:10 +0000 (UTC) Subject: rpms/conman/devel conman.spec,1.16,1.17 Message-ID: <20090724192610.BE91511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22742 Modified Files: conman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conman.spec =================================================================== RCS file: /cvs/pkgs/rpms/conman/devel/conman.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- conman.spec 8 Jun 2009 21:37:32 -0000 1.16 +++ conman.spec 24 Jul 2009 19:26:10 -0000 1.17 @@ -1,6 +1,6 @@ Name: conman Version: 0.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ConMan - The Console Manager Group: Applications/System @@ -98,6 +98,9 @@ fi %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Steven M. Parrish - 0.2.5-0 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 19:26:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:26:25 +0000 (UTC) Subject: rpms/conmux/devel conmux.spec,1.4,1.5 Message-ID: <20090724192625.8C62611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conmux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22969 Modified Files: conmux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conmux.spec =================================================================== RCS file: /cvs/pkgs/rpms/conmux/devel/conmux.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- conmux.spec 24 Feb 2009 08:58:39 -0000 1.4 +++ conmux.spec 24 Jul 2009 19:26:25 -0000 1.5 @@ -1,7 +1,7 @@ %define prerelease 493svn Name: conmux Version: 0.0 -Release: 8.%{prerelease}%{?dist} +Release: 9.%{prerelease}%{?dist} Summary: ConMux - The Console Multiplexor Group: Applications/System @@ -104,6 +104,9 @@ fi %{perl_vendorlib}/Conmux.pm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0-9.493svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0-8.493svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:26:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:26:44 +0000 (UTC) Subject: rpms/connect-proxy/devel connect-proxy.spec,1.5,1.6 Message-ID: <20090724192644.198F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/connect-proxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23164 Modified Files: connect-proxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: connect-proxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/connect-proxy/devel/connect-proxy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- connect-proxy.spec 24 Feb 2009 08:59:35 -0000 1.5 +++ connect-proxy.spec 24 Jul 2009 19:26:43 -0000 1.6 @@ -1,6 +1,6 @@ Name: connect-proxy Version: 1.100 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SSH Proxy command helper Group: Applications/System @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.100-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.100-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:26:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:26:59 +0000 (UTC) Subject: rpms/conntrack-tools/devel conntrack-tools.spec,1.11,1.12 Message-ID: <20090724192659.34F5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conntrack-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23324 Modified Files: conntrack-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conntrack-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/conntrack-tools/devel/conntrack-tools.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- conntrack-tools.spec 24 May 2009 10:02:41 -0000 1.11 +++ conntrack-tools.spec 24 Jul 2009 19:26:59 -0000 1.12 @@ -1,6 +1,6 @@ Name: conntrack-tools Version: 0.9.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools to manipulate netfilter connection tracking table Group: System Environment/Base License: GPLv2 @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Paul P. Komkoff Jr - 0.9.12-3 - new upstream version From jkeating at fedoraproject.org Fri Jul 24 19:27:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:27:15 +0000 (UTC) Subject: rpms/conserver/devel conserver.spec,1.12,1.13 Message-ID: <20090724192715.4C6B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23491 Modified Files: conserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/conserver/devel/conserver.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- conserver.spec 24 Feb 2009 09:01:37 -0000 1.12 +++ conserver.spec 24 Jul 2009 19:27:15 -0000 1.13 @@ -1,6 +1,6 @@ Name: conserver Version: 8.1.16 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Serial console server daemon/client Group: System Environment/Daemons @@ -117,6 +117,9 @@ fi %{_mandir}/man1/console.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.1.16-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8.1.16-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:27:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:27:31 +0000 (UTC) Subject: rpms/conspy/devel conspy.spec,1.3,1.4 Message-ID: <20090724192731.A938611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/conspy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23655 Modified Files: conspy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: conspy.spec =================================================================== RCS file: /cvs/pkgs/rpms/conspy/devel/conspy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- conspy.spec 13 Jun 2009 23:11:04 -0000 1.3 +++ conspy.spec 24 Jul 2009 19:27:31 -0000 1.4 @@ -1,6 +1,6 @@ Name: conspy Version: 1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Remote control for text mode virtual consoles Group: Applications/Internet @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Fabian Affolter - 1.6-1 - Updated to new upstream version 1.6 From jkeating at fedoraproject.org Fri Jul 24 19:27:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:27:46 +0000 (UTC) Subject: rpms/constantine/devel constantine.spec,1.3,1.4 Message-ID: <20090724192746.75E8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/constantine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23817 Modified Files: constantine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: constantine.spec =================================================================== RCS file: /cvs/pkgs/rpms/constantine/devel/constantine.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- constantine.spec 24 Feb 2009 09:03:33 -0000 1.3 +++ constantine.spec 24 Jul 2009 19:27:46 -0000 1.4 @@ -1,6 +1,6 @@ Name: constantine Version: 0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Platform Constants for Java Group: Development/Libraries License: MIT @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:28:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:28:01 +0000 (UTC) Subject: rpms/contact-lookup-applet/devel contact-lookup-applet.spec, 1.29, 1.30 Message-ID: <20090724192801.56E5111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/contact-lookup-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23987 Modified Files: contact-lookup-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: contact-lookup-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/contact-lookup-applet/devel/contact-lookup-applet.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- contact-lookup-applet.spec 24 Feb 2009 09:04:31 -0000 1.29 +++ contact-lookup-applet.spec 24 Jul 2009 19:28:01 -0000 1.30 @@ -1,6 +1,6 @@ Name: contact-lookup-applet Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Contact Lookup Applet Group: Applications/Communications @@ -52,6 +52,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 19:28:35 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 19:28:35 +0000 (UTC) Subject: rpms/taglib-extras/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 taglib-extras.spec, 1.5, 1.6 Message-ID: <20090724192835.34B6E11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/taglib-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24427 Modified Files: .cvsignore sources taglib-extras.spec Log Message: * Fri Jul 24 2009 Rex Dieter - 0.1.5-1 - taglib-extras-0.1.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 12 Jun 2009 20:46:06 -0000 1.5 +++ .cvsignore 24 Jul 2009 19:28:34 -0000 1.6 @@ -1 +1 @@ -taglib-extras-0.1.4.tar.gz +taglib-extras-0.1.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 12 Jun 2009 20:46:06 -0000 1.5 +++ sources 24 Jul 2009 19:28:34 -0000 1.6 @@ -1 +1 @@ -73adbe1c17f77babde6ec438582596da taglib-extras-0.1.4.tar.gz +9e4d30db2c09bb7de83ef5b2840f60e0 taglib-extras-0.1.5.tar.gz Index: taglib-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/devel/taglib-extras.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- taglib-extras.spec 12 Jun 2009 20:46:06 -0000 1.5 +++ taglib-extras.spec 24 Jul 2009 19:28:34 -0000 1.6 @@ -1,6 +1,6 @@ Summary: Taglib support for other formats Name: taglib-extras -Version: 0.1.4 +Version: 0.1.5 Release: 1%{?dist} Group: Applications/Multimedia @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 0.1.5-1 +- taglib-extras-0.1.5 + * Fri Jun 12 2009 Rex Dieter - 0.1.4-1 - taglib-extras-0.1.4 From jkeating at fedoraproject.org Fri Jul 24 19:28:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:28:15 +0000 (UTC) Subject: rpms/contacts/devel contacts.spec,1.18,1.19 Message-ID: <20090724192815.F2EEF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/contacts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24159 Modified Files: contacts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: contacts.spec =================================================================== RCS file: /cvs/pkgs/rpms/contacts/devel/contacts.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- contacts.spec 24 Feb 2009 09:05:33 -0000 1.18 +++ contacts.spec 24 Jul 2009 19:28:15 -0000 1.19 @@ -1,6 +1,6 @@ Name: contacts Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Contacts addressbook Group: Applications/Productivity @@ -102,6 +102,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:28:22 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:28:22 +0000 (UTC) Subject: rpms/qstars/devel qstars.spec,1.7,1.8 Message-ID: <20090724192822.D0A8C11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/qstars/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24257 Modified Files: qstars.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4-8 - F-12: Mass rebuild Index: qstars.spec =================================================================== RCS file: /cvs/extras/rpms/qstars/devel/qstars.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- qstars.spec 25 Feb 2009 18:03:44 -0000 1.7 +++ qstars.spec 24 Jul 2009 19:28:22 -0000 1.8 @@ -9,7 +9,7 @@ Name: qstars Version: 0.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A screensaver simulating planets and asteroids in space Group: Amusements/Graphics License: GPL+ @@ -121,6 +121,9 @@ fi %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4-8 +- F-12: Mass rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:28:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:28:35 +0000 (UTC) Subject: rpms/control-center/devel control-center.spec,1.457,1.458 Message-ID: <20090724192835.5C19E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/control-center/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24413 Modified Files: control-center.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: control-center.spec =================================================================== RCS file: /cvs/pkgs/rpms/control-center/devel/control-center.spec,v retrieving revision 1.457 retrieving revision 1.458 diff -u -p -r1.457 -r1.458 --- control-center.spec 16 Jul 2009 01:36:56 -0000 1.457 +++ control-center.spec 24 Jul 2009 19:28:35 -0000 1.458 @@ -23,7 +23,7 @@ Summary: Utilities to configure the GNOME desktop Name: control-center Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -354,6 +354,9 @@ fi %dir %{_datadir}/gnome-control-center/keybindings %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 19:28:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:28:48 +0000 (UTC) Subject: rpms/convmv/devel convmv.spec,1.15,1.16 Message-ID: <20090724192848.EFE8611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/convmv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24658 Modified Files: convmv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: convmv.spec =================================================================== RCS file: /cvs/pkgs/rpms/convmv/devel/convmv.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- convmv.spec 4 Mar 2009 12:30:46 -0000 1.15 +++ convmv.spec 24 Jul 2009 19:28:48 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Convert filename encodings Name: convmv Version: 1.14 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/System License: GPLv2 or GPLv3 @@ -38,6 +38,9 @@ rm -rf %{buildroot} %{_mandir}/man*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Nils Philippsen - 1.14-1 - version 1.14 - temporarily disable "make test" to work around problems in koji From jkeating at fedoraproject.org Fri Jul 24 19:29:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:29:03 +0000 (UTC) Subject: rpms/cook/devel cook.spec,1.18,1.19 Message-ID: <20090724192903.46F9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24802 Modified Files: cook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cook.spec =================================================================== RCS file: /cvs/pkgs/rpms/cook/devel/cook.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cook.spec 24 Feb 2009 09:08:35 -0000 1.18 +++ cook.spec 24 Jul 2009 19:29:03 -0000 1.19 @@ -1,6 +1,6 @@ Name: cook Version: 2.32 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File construction tool @@ -69,6 +69,9 @@ rm -fr ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.32-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:29:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:29:17 +0000 (UTC) Subject: rpms/coolkey/devel coolkey.spec,1.29,1.30 Message-ID: <20090724192917.394F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coolkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24992 Modified Files: coolkey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coolkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/coolkey/devel/coolkey.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- coolkey.spec 24 Feb 2009 09:09:33 -0000 1.29 +++ coolkey.spec 24 Jul 2009 19:29:17 -0000 1.30 @@ -22,7 +22,7 @@ Name: coolkey Version: 1.1.0 -Release: 8%{dist} +Release: 9%{dist} Summary: CoolKey PKCS #11 module License: LGPLv2 URL: http://directory.fedora.redhat.com/wiki/CoolKey @@ -108,6 +108,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 19:29:18 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 19:29:18 +0000 (UTC) Subject: rpms/taglib-extras/F-11 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 taglib-extras.spec, 1.4, 1.5 Message-ID: <20090724192918.B8C9C11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/taglib-extras/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25011 Modified Files: .cvsignore sources taglib-extras.spec Log Message: * Fri Jul 24 2009 Rex Dieter - 0.1.5-1 - taglib-extras-0.1.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 May 2009 19:23:16 -0000 1.4 +++ .cvsignore 24 Jul 2009 19:29:18 -0000 1.5 @@ -1 +1 @@ -taglib-extras-0.1.3.tar.gz +taglib-extras-0.1.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 May 2009 19:23:16 -0000 1.4 +++ sources 24 Jul 2009 19:29:18 -0000 1.5 @@ -1 +1 @@ -44c15bc5c1b183117909163f9dbc159f taglib-extras-0.1.3.tar.gz +9e4d30db2c09bb7de83ef5b2840f60e0 taglib-extras-0.1.5.tar.gz Index: taglib-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-11/taglib-extras.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- taglib-extras.spec 21 May 2009 19:23:16 -0000 1.4 +++ taglib-extras.spec 24 Jul 2009 19:29:18 -0000 1.5 @@ -1,6 +1,6 @@ Summary: Taglib support for other formats Name: taglib-extras -Version: 0.1.3 +Version: 0.1.5 Release: 1%{?dist} Group: Applications/Multimedia @@ -14,7 +14,7 @@ BuildRoot: %(mktemp -ud %{_tmppath} # it's already in default linker search path Patch1: taglib-extras-0.1-multilib-1.patch -BuildRequires: cmake +BuildRequires: cmake >= 2.6.0 BuildRequires: taglib-devel BuildRequires: kdelibs4-devel @@ -34,7 +34,7 @@ Requires: taglib-devel %prep -%setup -q -n %{name} +%setup -q %patch1 -p1 -b .multilib @@ -76,6 +76,12 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 0.1.5-1 +- taglib-extras-0.1.5 + +* Fri Jun 12 2009 Rex Dieter - 0.1.4-1 +- taglib-extras-0.1.4 + * Sat May 02 2009 Rex Dieter - 0.1.3-1 - taglib-extras-0.1.3 From jkeating at fedoraproject.org Fri Jul 24 19:29:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:29:30 +0000 (UTC) Subject: rpms/coq/devel coq.spec,1.11,1.12 Message-ID: <20090724192930.4E42A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25226 Modified Files: coq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coq.spec =================================================================== RCS file: /cvs/pkgs/rpms/coq/devel/coq.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- coq.spec 19 Jun 2009 11:14:52 -0000 1.11 +++ coq.spec 24 Jul 2009 19:29:30 -0000 1.12 @@ -29,7 +29,7 @@ Name: coq Version: 8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Coq proof management system Group: Applications/Engineering @@ -324,6 +324,9 @@ rm -rf %{buildroot} %doc README.coq-emacs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Alan Dunn - 8.2-1 - New upstream release - Seems documentation license has changed or wasn't explicitly stated From rdieter at fedoraproject.org Fri Jul 24 19:29:43 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 19:29:43 +0000 (UTC) Subject: rpms/taglib-extras/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 taglib-extras.spec, 1.3, 1.4 Message-ID: <20090724192943.F265511C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/taglib-extras/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25400 Modified Files: .cvsignore sources taglib-extras.spec Log Message: * Fri Jul 24 2009 Rex Dieter - 0.1.5-1 - taglib-extras-0.1.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 21 May 2009 19:24:22 -0000 1.4 +++ .cvsignore 24 Jul 2009 19:29:43 -0000 1.5 @@ -1 +1 @@ -taglib-extras-0.1.3.tar.gz +taglib-extras-0.1.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 21 May 2009 19:24:22 -0000 1.4 +++ sources 24 Jul 2009 19:29:43 -0000 1.5 @@ -1 +1 @@ -44c15bc5c1b183117909163f9dbc159f taglib-extras-0.1.3.tar.gz +9e4d30db2c09bb7de83ef5b2840f60e0 taglib-extras-0.1.5.tar.gz Index: taglib-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/taglib-extras/F-10/taglib-extras.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- taglib-extras.spec 21 May 2009 19:24:22 -0000 1.3 +++ taglib-extras.spec 24 Jul 2009 19:29:43 -0000 1.4 @@ -1,6 +1,6 @@ Summary: Taglib support for other formats Name: taglib-extras -Version: 0.1.3 +Version: 0.1.5 Release: 1%{?dist} Group: Applications/Multimedia @@ -14,7 +14,7 @@ BuildRoot: %(mktemp -ud %{_tmppath} # it's already in default linker search path Patch1: taglib-extras-0.1-multilib-1.patch -BuildRequires: cmake +BuildRequires: cmake >= 2.6.0 BuildRequires: taglib-devel BuildRequires: kdelibs4-devel @@ -34,7 +34,7 @@ Requires: taglib-devel %prep -%setup -q -n %{name} +%setup -q %patch1 -p1 -b .multilib @@ -76,6 +76,12 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 0.1.5-1 +- taglib-extras-0.1.5 + +* Fri Jun 12 2009 Rex Dieter - 0.1.4-1 +- taglib-extras-0.1.4 + * Sat May 02 2009 Rex Dieter - 0.1.3-1 - taglib-extras-0.1.3 From jkeating at fedoraproject.org Fri Jul 24 19:29:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:29:44 +0000 (UTC) Subject: rpms/coredumper/devel coredumper.spec,1.3,1.4 Message-ID: <20090724192944.8A73011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coredumper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25418 Modified Files: coredumper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coredumper.spec =================================================================== RCS file: /cvs/pkgs/rpms/coredumper/devel/coredumper.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- coredumper.spec 20 Apr 2009 10:55:50 -0000 1.3 +++ coredumper.spec 24 Jul 2009 19:29:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: coredumper Version: 1.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Library to create core dumps Group: Development/Tools @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/google/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Rakesh Pandit - 1.2.1-8 - GDB messages changed, fixes the test suite - by Jan Kratochvil (FTBFS #496523) From mtasaka at fedoraproject.org Fri Jul 24 19:30:05 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:30:05 +0000 (UTC) Subject: rpms/tcd-utils/devel tcd-utils.spec,1.7,1.8 Message-ID: <20090724193005.C011311C04D7@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tcd-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25731 Modified Files: tcd-utils.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 20080820-3 - F-12: Mass rebuild Index: tcd-utils.spec =================================================================== RCS file: /cvs/extras/rpms/tcd-utils/devel/tcd-utils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tcd-utils.spec 24 Feb 2009 04:58:58 -0000 1.7 +++ tcd-utils.spec 24 Jul 2009 19:30:05 -0000 1.8 @@ -1,6 +1,6 @@ Name: tcd-utils Version: 20080820 -Release: 2%{?dist} +Release: 3%{?dist} Summary: TCD (Tide Constituent Database) Utils Group: Applications/Engineering @@ -38,6 +38,9 @@ TCD Utils includes: %{_bindir}/* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 20080820-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 20080820-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:30:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:30:04 +0000 (UTC) Subject: rpms/coreutils/devel coreutils.spec,1.262,1.263 Message-ID: <20090724193004.A96A911C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25695 Modified Files: coreutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/coreutils/devel/coreutils.spec,v retrieving revision 1.262 retrieving revision 1.263 diff -u -p -r1.262 -r1.263 --- coreutils.spec 6 Jul 2009 21:40:43 -0000 1.262 +++ coreutils.spec 24 Jul 2009 19:30:04 -0000 1.263 @@ -1,7 +1,7 @@ Summary: A set of basic GNU tools commonly used in shell scripts Name: coreutils Version: 7.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: System Environment/Base Url: http://www.gnu.org/software/coreutils/ @@ -308,6 +308,9 @@ fi /sbin/runuser %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Ondrej Vasik 7.4-3 - do not ignore sort's version sort for multibyte locales (#509688) From jkeating at fedoraproject.org Fri Jul 24 19:30:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:30:18 +0000 (UTC) Subject: rpms/coriander/devel coriander.spec,1.5,1.6 Message-ID: <20090724193018.9BB8911C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/coriander/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25990 Modified Files: coriander.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: coriander.spec =================================================================== RCS file: /cvs/pkgs/rpms/coriander/devel/coriander.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- coriander.spec 24 Feb 2009 09:13:34 -0000 1.5 +++ coriander.spec 24 Jul 2009 19:30:18 -0000 1.6 @@ -7,7 +7,7 @@ Summary: Control a 1394 digital camera interactively Name: coriander Version: 2.0.0 -Release: 0.10.rc6%{?cvs_snapshot}%{?dist} +Release: 0.11.rc6%{?cvs_snapshot}%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://damien.douxchamps.net/ieee1394/coriander/ @@ -71,6 +71,9 @@ desktop-file-install --vendor fedora %{_datadir}/applications/*-coriander.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-0.11.rc6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.0-0.10.rc6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:30:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:30:32 +0000 (UTC) Subject: rpms/corkscrew/devel corkscrew.spec,1.6,1.7 Message-ID: <20090724193032.B0DE311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/corkscrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26134 Modified Files: corkscrew.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: corkscrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/corkscrew/devel/corkscrew.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- corkscrew.spec 24 Feb 2009 09:14:27 -0000 1.6 +++ corkscrew.spec 24 Jul 2009 19:30:32 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Tool for tunneling SSH through HTTP proxies Name: corkscrew Version: 2.0 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Group: Applications/Internet URL: http://www.agroman.net/corkscrew/ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:30:46 +0000 (UTC) Subject: rpms/corosync/devel corosync.spec,1.31,1.32 Message-ID: <20090724193046.47CA611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/corosync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26294 Modified Files: corosync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/devel/corosync.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- corosync.spec 8 Jul 2009 19:03:18 -0000 1.31 +++ corosync.spec 24 Jul 2009 19:30:46 -0000 1.32 @@ -3,7 +3,7 @@ Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces Version: 1.0.0 -Release: 1%{?alphatag:.%{alphatag}}%{?dist} +Release: 2%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://www.openais.org @@ -202,6 +202,9 @@ The Corosync Cluster Engine APIs. %{_mandir}/man8/coroipc_overview.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Fabio M. Di Nitto - 1.0.0-1 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 19:31:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:31:00 +0000 (UTC) Subject: rpms/corrida/devel corrida.spec,1.4,1.5 Message-ID: <20090724193100.C63CC11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/corrida/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26436 Modified Files: corrida.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: corrida.spec =================================================================== RCS file: /cvs/pkgs/rpms/corrida/devel/corrida.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- corrida.spec 10 Apr 2009 10:09:51 -0000 1.4 +++ corrida.spec 24 Jul 2009 19:31:00 -0000 1.5 @@ -3,7 +3,7 @@ Name: corrida Version: %{version_major}.%{version_minor} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Application for archivation of meteor observations Group: Amusements/Graphics @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.96.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Lubomir Rintel (Fedora Astronomy) - 0.96.11-4 - Automatically increment the meteor number (#494526) From jkeating at fedoraproject.org Fri Jul 24 19:31:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:31:28 +0000 (UTC) Subject: rpms/cowbell/devel cowbell.spec,1.18,1.19 Message-ID: <20090724193128.79C1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cowbell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26837 Modified Files: cowbell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cowbell.spec =================================================================== RCS file: /cvs/pkgs/rpms/cowbell/devel/cowbell.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cowbell.spec 24 May 2009 00:19:36 -0000 1.18 +++ cowbell.spec 24 Jul 2009 19:31:28 -0000 1.19 @@ -2,7 +2,7 @@ Name: cowbell Version: 0.3 -Release: 0.svn47.1%{?dist}.2 +Release: 0.svn47.1%{?dist}.3 Summary: Music organazier Group: Applications/Multimedia @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-0.svn47.1.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Milos Jakubicek - 0.3-0.svn47.1.2 - Fix FTBFS: added cowbell-coalesceop.patch and cowbell-CS0469.patch. From jkeating at fedoraproject.org Fri Jul 24 19:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:31:14 +0000 (UTC) Subject: rpms/couchdb/devel couchdb.spec,1.3,1.4 Message-ID: <20090724193114.58AAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/couchdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26648 Modified Files: couchdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: couchdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/devel/couchdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- couchdb.spec 8 May 2009 00:24:43 -0000 1.3 +++ couchdb.spec 24 Jul 2009 19:31:14 -0000 1.4 @@ -4,7 +4,7 @@ %define couchdb_home %{_localstatedir}/lib/couchdb Name: couchdb Version: 0.9.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A document database server, accessible via a RESTful JSON API Group: Applications/Databases @@ -125,6 +125,9 @@ fi %dir %attr(0755, %{couchdb_user}, root) %{_localstatedir}/lib/couchdb %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Allisson Azevedo 0.9.0-2 - Fix permission for ini files. - Fix couchdb.init start process. From jkeating at fedoraproject.org Fri Jul 24 19:31:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:31:42 +0000 (UTC) Subject: rpms/cowsay/devel cowsay.spec,1.6,1.7 Message-ID: <20090724193142.184AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cowsay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27041 Modified Files: cowsay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cowsay.spec =================================================================== RCS file: /cvs/pkgs/rpms/cowsay/devel/cowsay.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cowsay.spec 24 Feb 2009 09:18:05 -0000 1.6 +++ cowsay.spec 24 Jul 2009 19:31:41 -0000 1.7 @@ -1,6 +1,6 @@ Name: cowsay Version: 3.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Configurable speaking/thinking cow Group: Amusements/Games License: GPLv2+ or Artistic @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/bash_completion.d %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.03-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:31:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:31:56 +0000 (UTC) Subject: rpms/cpan-upload/devel cpan-upload.spec,1.3,1.4 Message-ID: <20090724193156.4F0BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpan-upload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27259 Modified Files: cpan-upload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpan-upload.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpan-upload/devel/cpan-upload.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cpan-upload.spec 24 Feb 2009 09:19:01 -0000 1.3 +++ cpan-upload.spec 24 Jul 2009 19:31:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: cpan-upload Version: 2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Automate the uploading of files to the CPAN (PAUSE) Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:32:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:32:09 +0000 (UTC) Subject: rpms/cpanspec/devel cpanspec.spec,1.28,1.29 Message-ID: <20090724193209.E1C5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpanspec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27412 Modified Files: cpanspec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpanspec.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpanspec/devel/cpanspec.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- cpanspec.spec 24 Feb 2009 09:21:02 -0000 1.28 +++ cpanspec.spec 24 Jul 2009 19:32:09 -0000 1.29 @@ -1,6 +1,6 @@ Name: cpanspec Version: 1.78 -Release: 2%{?dist} +Release: 3%{?dist} Summary: RPM spec file generation utility License: GPL+ or Artistic Group: Development/Tools @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.78-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.78-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:32:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:32:23 +0000 (UTC) Subject: rpms/cpdup/devel cpdup.spec,1.5,1.6 Message-ID: <20090724193223.4BFEA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpdup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27564 Modified Files: cpdup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpdup.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpdup/devel/cpdup.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cpdup.spec 24 Feb 2009 09:21:57 -0000 1.5 +++ cpdup.spec 24 Jul 2009 19:32:23 -0000 1.6 @@ -1,6 +1,6 @@ Name: cpdup Version: 1.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Filesystem mirroring utility Group: Applications/Archiving @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:32:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:32:37 +0000 (UTC) Subject: rpms/cpio/devel cpio.spec,1.66,1.67 Message-ID: <20090724193237.4504311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27725 Modified Files: cpio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpio.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpio/devel/cpio.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- cpio.spec 22 Jun 2009 09:48:10 -0000 1.66 +++ cpio.spec 24 Jul 2009 19:32:37 -0000 1.67 @@ -3,7 +3,7 @@ Summary: A GNU archiving program Name: cpio Version: 2.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Archiving URL: http://www.gnu.org/software/cpio/ @@ -86,6 +86,9 @@ fi %{_infodir}/*.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Ondrej Vasik 2.10-1 - new upstream release 2.10 From jkeating at fedoraproject.org Fri Jul 24 19:32:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:32:53 +0000 (UTC) Subject: rpms/cpipe/devel cpipe.spec,1.4,1.5 Message-ID: <20090724193253.1803611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpipe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27878 Modified Files: cpipe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpipe.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpipe/devel/cpipe.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cpipe.spec 24 Feb 2009 09:23:47 -0000 1.4 +++ cpipe.spec 24 Jul 2009 19:32:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: cpipe Version: 3.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Counting pipe Group: Development/Tools License: GPLv2+ @@ -39,6 +39,9 @@ touch cmdline.c cmdline.h cpipe.1 %{_mandir}/man1/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:33:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:33:07 +0000 (UTC) Subject: rpms/cpl/devel cpl.spec,1.9,1.10 Message-ID: <20090724193307.7C92711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28050 Modified Files: cpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpl/devel/cpl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cpl.spec 8 May 2009 11:56:50 -0000 1.9 +++ cpl.spec 24 Jul 2009 19:33:07 -0000 1.10 @@ -1,6 +1,6 @@ Name: cpl Version: 4.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ESO library for automated astronomical data-reduction tasks Group: Development/Libraries @@ -71,6 +71,9 @@ application %exclude %{_libdir}/*.la %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Sergio Pascual 4.2.0-3 - Enabled wcslib support From jkeating at fedoraproject.org Fri Jul 24 19:33:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:33:23 +0000 (UTC) Subject: rpms/cpm/devel cpm.spec,1.2,1.3 Message-ID: <20090724193323.EE16511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28229 Modified Files: cpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpm/devel/cpm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cpm.spec 24 Feb 2009 09:25:42 -0000 1.2 +++ cpm.spec 24 Jul 2009 19:33:23 -0000 1.3 @@ -1,6 +1,6 @@ Name: cpm Version: 0.23 -Release: 0.2.beta%{?dist} +Release: 0.3.beta%{?dist} Summary: Console Password Manager Group: Applications/Databases @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/cpm* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.23-0.3.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.23-0.2.beta - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:33:32 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:33:32 +0000 (UTC) Subject: rpms/pcmanfm/devel pcmanfm.spec,1.30,1.31 Message-ID: <20090724193332.4F54F11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/pcmanfm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28350 Modified Files: pcmanfm.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.5.1-2 - F-12: Mass rebuild Index: pcmanfm.spec =================================================================== RCS file: /cvs/extras/rpms/pcmanfm/devel/pcmanfm.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- pcmanfm.spec 3 Jun 2009 19:31:59 -0000 1.30 +++ pcmanfm.spec 24 Jul 2009 19:33:32 -0000 1.31 @@ -3,7 +3,7 @@ Name: pcmanfm Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extremly fast and lightweight file manager Group: User Interface/Desktops @@ -137,6 +137,9 @@ exit 0 %{_datadir}/mime/packages/*.xml %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.5.1-2 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.5.1-1 - Update to 0.5.1 - Remove icon name fallback hack From jkeating at fedoraproject.org Fri Jul 24 19:33:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:33:37 +0000 (UTC) Subject: rpms/cpmtools/devel cpmtools.spec,1.2,1.3 Message-ID: <20090724193337.1593911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpmtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28412 Modified Files: cpmtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpmtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpmtools/devel/cpmtools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cpmtools.spec 24 Feb 2009 09:26:34 -0000 1.2 +++ cpmtools.spec 24 Jul 2009 19:33:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: cpmtools Version: 2.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Programs for accessing CP/M disks Group: Applications/System @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:33:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:33:52 +0000 (UTC) Subject: rpms/cppad/devel cppad.spec,1.15,1.16 Message-ID: <20090724193352.1AF2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cppad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28615 Modified Files: cppad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cppad.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppad/devel/cppad.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cppad.spec 21 Jun 2009 02:24:47 -0000 1.15 +++ cppad.spec 24 Jul 2009 19:33:51 -0000 1.16 @@ -16,7 +16,7 @@ Name: cppad Version: 20090303.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: No base package is installed, see %{name}-devel Group: Development/Libraries @@ -161,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT # ---------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090303.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Brad Bell 20090303-4 - Patch cppad/local/fun_construct.hpp to give a more useful error message - (so we can figure out why the Fedora 11 build is failing). From jkeating at fedoraproject.org Fri Jul 24 19:34:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:34:05 +0000 (UTC) Subject: rpms/cppcheck/devel cppcheck.spec,1.2,1.3 Message-ID: <20090724193405.14E8011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cppcheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28763 Modified Files: cppcheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cppcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppcheck/devel/cppcheck.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cppcheck.spec 16 Jul 2009 13:48:51 -0000 1.2 +++ cppcheck.spec 24 Jul 2009 19:34:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.34 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_bindir}/cppcheck %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 1.34-1 - Update to 1.34. From jkeating at fedoraproject.org Fri Jul 24 19:34:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:34:21 +0000 (UTC) Subject: rpms/cpphs/devel cpphs.spec,1.5,1.6 Message-ID: <20090724193421.440D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpphs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28921 Modified Files: cpphs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpphs.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpphs/devel/cpphs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cpphs.spec 17 May 2009 11:50:19 -0000 1.5 +++ cpphs.spec 24 Jul 2009 19:34:21 -0000 1.6 @@ -6,7 +6,7 @@ Name: cpphs Version: 1.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C pre-processor for Haskell Group: Development/Languages License: GPL+ and LGPLv2+ @@ -145,6 +145,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jens Petersen - 1.6-8 - buildrequires ghc-rpm-macros (cabal2spec-0.16) From jkeating at fedoraproject.org Fri Jul 24 19:34:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:34:33 +0000 (UTC) Subject: rpms/cpptest/devel cpptest.spec,1.1,1.2 Message-ID: <20090724193433.F097C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpptest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29056 Modified Files: cpptest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpptest.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpptest/devel/cpptest.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cpptest.spec 13 Apr 2009 15:50:15 -0000 1.1 +++ cpptest.spec 24 Jul 2009 19:34:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: cpptest Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A portable and powerful and simple unit testing framework for C++ Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Rakesh Pandit 1.1.0-3 - Remove check section. From jkeating at fedoraproject.org Fri Jul 24 19:34:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:34:47 +0000 (UTC) Subject: rpms/cppunit/devel cppunit.spec,1.14,1.15 Message-ID: <20090724193447.2D2F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cppunit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29195 Modified Files: cppunit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cppunit.spec =================================================================== RCS file: /cvs/pkgs/rpms/cppunit/devel/cppunit.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- cppunit.spec 24 Feb 2009 09:29:15 -0000 1.14 +++ cppunit.spec 24 Jul 2009 19:34:47 -0000 1.15 @@ -1,6 +1,6 @@ Name: cppunit Version: 1.12.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ unit testing framework # no license in files @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.12.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:35:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:35:02 +0000 (UTC) Subject: rpms/cpqarrayd/devel cpqarrayd.spec,1.7,1.8 Message-ID: <20090724193502.6827F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpqarrayd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29338 Modified Files: cpqarrayd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpqarrayd.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpqarrayd/devel/cpqarrayd.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cpqarrayd.spec 24 Feb 2009 09:30:12 -0000 1.7 +++ cpqarrayd.spec 24 Jul 2009 19:35:02 -0000 1.8 @@ -1,6 +1,6 @@ Name: cpqarrayd Version: 2.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Software for monitoring HP(Compaq) arraycontrollers Group: System Environment/Base License: GPLv2+ @@ -70,6 +70,9 @@ fi %doc %_mandir/man1/cpqarrayd* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:35:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:35:18 +0000 (UTC) Subject: rpms/cproto/devel cproto.spec,1.14,1.15 Message-ID: <20090724193518.E84CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cproto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29520 Modified Files: cproto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cproto.spec =================================================================== RCS file: /cvs/pkgs/rpms/cproto/devel/cproto.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- cproto.spec 24 Feb 2009 09:31:10 -0000 1.14 +++ cproto.spec 24 Jul 2009 19:35:18 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Generates function prototypes and variable declarations from C code Name: cproto Version: 4.7g -Release: 2%{?dist} +Release: 3%{?dist} License: Public Domain Group: Development/Tools Source: ftp://invisible-island.net/cproto/cproto-%{version}.tgz @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/cproto.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.7g-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.7g-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:35:33 +0000 (UTC) Subject: rpms/cpufrequtils/devel cpufrequtils.spec,1.7,1.8 Message-ID: <20090724193533.40CFB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpufrequtils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29694 Modified Files: cpufrequtils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpufrequtils.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpufrequtils/devel/cpufrequtils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- cpufrequtils.spec 24 Feb 2009 09:32:05 -0000 1.7 +++ cpufrequtils.spec 24 Jul 2009 19:35:33 -0000 1.8 @@ -1,7 +1,7 @@ Summary: CPU Frequency changing related utilities Name: cpufrequtils Version: 005 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Base License: GPLv2 URL: http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT; %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 005-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 005-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:35:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:35:48 +0000 (UTC) Subject: rpms/cpuid/devel cpuid.spec,1.2,1.3 Message-ID: <20090724193548.6357C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpuid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29856 Modified Files: cpuid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpuid.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpuid/devel/cpuid.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cpuid.spec 24 Feb 2009 09:32:59 -0000 1.2 +++ cpuid.spec 24 Jul 2009 19:35:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: cpuid Version: 20060917 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Dumps information about the CPU(s) Group: System Environment/Base @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20060917-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20060917-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:36:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:36:04 +0000 (UTC) Subject: rpms/cpuspeed/devel cpuspeed.spec,1.80,1.81 Message-ID: <20090724193604.9745E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cpuspeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30043 Modified Files: cpuspeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cpuspeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/cpuspeed/devel/cpuspeed.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- cpuspeed.spec 26 Jun 2009 16:33:17 -0000 1.80 +++ cpuspeed.spec 24 Jul 2009 19:36:04 -0000 1.81 @@ -1,7 +1,7 @@ Summary: CPU frequency adjusting daemon Name: cpuspeed Version: 1.5 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -81,6 +81,9 @@ fi exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Jarod Wilson 1.5-10 - Fix #505837 for real this time, even tested on an actual p4-clockmod system, seems to DTRT From jkeating at fedoraproject.org Fri Jul 24 19:36:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:36:19 +0000 (UTC) Subject: rpms/crack/devel crack.spec,1.13,1.14 Message-ID: <20090724193619.8917D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30237 Modified Files: crack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crack.spec =================================================================== RCS file: /cvs/pkgs/rpms/crack/devel/crack.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- crack.spec 24 Feb 2009 09:34:53 -0000 1.13 +++ crack.spec 24 Jul 2009 19:36:19 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Password cracker Name: crack Version: 5.0a -Release: 11%{?dist} +Release: 12%{?dist} License: Artistic clarified Group: Applications/System Source: ftp://ftp.cerias.purdue.edu/pub/tools/unix/pwdutils/crack/%{name}5.0.tar.gz @@ -81,6 +81,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0a-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.0a-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:36:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:36:34 +0000 (UTC) Subject: rpms/crack-attack/devel crack-attack.spec,1.9,1.10 Message-ID: <20090724193634.9D67411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crack-attack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30403 Modified Files: crack-attack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crack-attack.spec =================================================================== RCS file: /cvs/pkgs/rpms/crack-attack/devel/crack-attack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- crack-attack.spec 24 Feb 2009 09:35:51 -0000 1.9 +++ crack-attack.spec 24 Jul 2009 19:36:34 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Puzzle action game Name: crack-attack Version: 1.1.14 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.nongnu.org/crack-attack/ @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.14-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.14-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:36:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:36:50 +0000 (UTC) Subject: rpms/cracklib/devel cracklib.spec,1.55,1.56 Message-ID: <20090724193650.92A0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cracklib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30590 Modified Files: cracklib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cracklib.spec =================================================================== RCS file: /cvs/pkgs/rpms/cracklib/devel/cracklib.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- cracklib.spec 18 May 2009 16:44:28 -0000 1.55 +++ cracklib.spec 24 Jul 2009 19:36:50 -0000 1.56 @@ -5,7 +5,7 @@ Summary: A password-checking library Name: cracklib Version: 2.8.13 -Release: 5 +Release: 6 Group: System Environment/Libraries Source0: http://prdownloads.sourceforge.net/cracklib/cracklib-%{version}.tar.gz @@ -225,6 +225,9 @@ EOF %{_libdir}/../lib/python*/site-packages/*.py* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Nalin Dahyabhai - 2.8.13-5 - add explicit dependency on gzip for the sake of cracklib-format (Daniel Mach, #501278) From jkeating at fedoraproject.org Fri Jul 24 19:37:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:37:52 +0000 (UTC) Subject: rpms/crash/devel crash.spec,1.31,1.32 Message-ID: <20090724193752.788D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31102 Modified Files: crash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crash.spec =================================================================== RCS file: /cvs/pkgs/rpms/crash/devel/crash.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- crash.spec 24 Feb 2009 09:38:05 -0000 1.31 +++ crash.spec 24 Jul 2009 19:37:52 -0000 1.32 @@ -4,7 +4,7 @@ Summary: Kernel analysis utility for live systems, netdump, diskdump, kdump, LKCD or mcore dumpfiles Name: crash Version: 4.0 -Release: 8.7.2%{?dist} +Release: 9.7.2%{?dist} License: GPLv2 Group: Development/Debuggers Source: %{name}-%{version}.tar.gz @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0-9.7.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.0-8.7.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:38:30 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:38:30 +0000 (UTC) Subject: rpms/tempest/devel tempest.spec,1.6,1.7 Message-ID: <20090724193830.18B9711C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tempest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31544 Modified Files: tempest.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0-0.9.20081027 - F-12: Mass rebuild Index: tempest.spec =================================================================== RCS file: /cvs/extras/rpms/tempest/devel/tempest.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tempest.spec 24 Feb 2009 04:58:58 -0000 1.6 +++ tempest.spec 24 Jul 2009 19:38:29 -0000 1.7 @@ -12,7 +12,7 @@ Name: tempest # There is no version, so we use pre-release style versioning with a date Version: 0 -Release: 0.8.%{pkgtimestamp}%{?dist} +Release: 0.9.%{pkgtimestamp}%{?dist} Summary: Tempest OpenGL screensaver Group: Amusements/Graphics License: GPLv2+ @@ -149,6 +149,9 @@ fi %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0-0.9.20081027 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0-0.8.20081027 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:38:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:38:07 +0000 (UTC) Subject: rpms/crcimg/devel crcimg.spec,1.2,1.3 Message-ID: <20090724193807.64DED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crcimg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31284 Modified Files: crcimg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crcimg.spec =================================================================== RCS file: /cvs/pkgs/rpms/crcimg/devel/crcimg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- crcimg.spec 24 Feb 2009 09:39:05 -0000 1.2 +++ crcimg.spec 24 Jul 2009 19:38:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: crcimg Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Construct .crc files Group: Development/Tools @@ -37,6 +37,9 @@ Tool for constructing .crc files from im %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:38:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:38:22 +0000 (UTC) Subject: rpms/crda/devel crda.spec,1.17,1.18 Message-ID: <20090724193822.6536311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31443 Modified Files: crda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crda.spec =================================================================== RCS file: /cvs/pkgs/rpms/crda/devel/crda.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- crda.spec 13 May 2009 17:43:34 -0000 1.17 +++ crda.spec 24 Jul 2009 19:38:22 -0000 1.18 @@ -3,7 +3,7 @@ Name: crda Version: %{crda_version}_%{regdb_version} -Release: 11%{?dist} +Release: 12%{?dist} Summary: Regulatory compliance daemon for 802.11 wireless networking Group: System Environment/Base @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %doc wireless-regdb-%{regdb_version}/README.wireless-regdb %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0_2009.04.17-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 John W. Linville 1.1.0_2009.04.17-11 - Update crda version to version 1.1.0 - Update wireless-regdb to version 2009.04.17 From jkeating at fedoraproject.org Fri Jul 24 19:38:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:38:38 +0000 (UTC) Subject: rpms/createrepo/devel createrepo.spec,1.63,1.64 Message-ID: <20090724193838.8944711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/createrepo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31638 Modified Files: createrepo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: createrepo.spec =================================================================== RCS file: /cvs/pkgs/rpms/createrepo/devel/createrepo.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- createrepo.spec 17 Jun 2009 17:38:23 -0000 1.63 +++ createrepo.spec 24 Jul 2009 19:38:38 -0000 1.64 @@ -3,7 +3,7 @@ Summary: Creates a common metadata repository Name: createrepo Version: 0.9.7 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: System Environment/Base Source: %{name}-%{version}.tar.gz @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/createrepo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Seth Vidal - 0.9.7-11 - more profile output for deltarpms From jkeating at fedoraproject.org Fri Jul 24 19:38:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:38:54 +0000 (UTC) Subject: rpms/creox/devel creox.spec,1.1,1.2 Message-ID: <20090724193854.BB29D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/creox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31881 Modified Files: creox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: creox.spec =================================================================== RCS file: /cvs/pkgs/rpms/creox/devel/creox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- creox.spec 9 May 2009 23:07:26 -0000 1.1 +++ creox.spec 24 Jul 2009 19:38:54 -0000 1.2 @@ -4,7 +4,7 @@ Summary: Real-time Sound Processor Name: creox Group: Applications/Multimedia Version: 0.2.2 -Release: 0.2.%{pre}%{?dist} +Release: 0.3.%{pre}%{?dist} License: GPLv2 URL: http://zyzstar.kosoru.com/?creox Source0: http://zyzstar.kosoru.com/projects/creox/downloads/%{name}-%{version}%{?pre}.tar.bz2 @@ -84,6 +84,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.2-0.3.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Orcan Ogetbil 0.2.2-0.2.rc2 - Some specfile make-up - Sent Source1 and Patch0 upstream. Comment added. From jkeating at fedoraproject.org Fri Jul 24 19:39:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:39:42 +0000 (UTC) Subject: rpms/cronolog/devel cronolog.spec,1.6,1.7 Message-ID: <20090724193942.99CFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cronolog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32453 Modified Files: cronolog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cronolog.spec =================================================================== RCS file: /cvs/pkgs/rpms/cronolog/devel/cronolog.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cronolog.spec 24 Feb 2009 09:43:46 -0000 1.6 +++ cronolog.spec 24 Jul 2009 19:39:42 -0000 1.7 @@ -1,6 +1,6 @@ Name: cronolog Version: 1.6.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Web log rotation program for Apache Group: Applications/System @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:39:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:39:57 +0000 (UTC) Subject: rpms/crontabs/devel crontabs.spec,1.34,1.35 Message-ID: <20090724193957.A077E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crontabs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32612 Modified Files: crontabs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crontabs.spec =================================================================== RCS file: /cvs/pkgs/rpms/crontabs/devel/crontabs.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- crontabs.spec 18 Jun 2009 08:14:27 -0000 1.34 +++ crontabs.spec 24 Jul 2009 19:39:57 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Root crontab files used to schedule the execution of programs Name: crontabs Version: 1.10 -Release: 30%{?dist} +Release: 31%{?dist} License: Public Domain and GPLv2 Group: System Environment/Base Source0: crontab @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %dir /etc/cron.monthly %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Marcela Ma?l??ov? 1.10-30 - 491793 thanks Andrew Hecox for patch which allows set allow/deny jobs - comment change "empty crontab" From jkeating at fedoraproject.org Fri Jul 24 19:40:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:40:12 +0000 (UTC) Subject: rpms/crossfire/devel crossfire.spec,1.14,1.15 Message-ID: <20090724194012.AE7E311C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crossfire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv445 Modified Files: crossfire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crossfire.spec =================================================================== RCS file: /cvs/pkgs/rpms/crossfire/devel/crossfire.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- crossfire.spec 24 Feb 2009 09:45:40 -0000 1.14 +++ crossfire.spec 24 Jul 2009 19:40:12 -0000 1.15 @@ -8,7 +8,7 @@ Name: crossfire Version: 1.11.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Server for hosting crossfire games Group: Amusements/Games # All files GPLv2+ except server/daemon.c which also has MIT attributions @@ -330,6 +330,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:40:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:40:58 +0000 (UTC) Subject: rpms/crossvc/devel crossvc.spec,1.18,1.19 Message-ID: <20090724194058.E1AAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crossvc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1641 Modified Files: crossvc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crossvc.spec =================================================================== RCS file: /cvs/pkgs/rpms/crossvc/devel/crossvc.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- crossvc.spec 2 Mar 2009 18:03:51 -0000 1.18 +++ crossvc.spec 24 Jul 2009 19:40:58 -0000 1.19 @@ -1,6 +1,6 @@ Name: crossvc Version: 1.5.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Graphical CVS Client @@ -85,6 +85,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Jochen Schmitt 1.5.2-6 - Change categories in the desktop file (BZ #487862) From jkeating at fedoraproject.org Fri Jul 24 19:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:41:11 +0000 (UTC) Subject: rpms/cryptix/devel cryptix.spec,1.14,1.15 Message-ID: <20090724194111.51A1E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cryptix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1824 Modified Files: cryptix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cryptix.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptix/devel/cryptix.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- cryptix.spec 24 Feb 2009 09:49:24 -0000 1.14 +++ cryptix.spec 24 Jul 2009 19:41:11 -0000 1.15 @@ -38,7 +38,7 @@ Name: cryptix Version: 3.2.0 -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 0 Summary: Java crypto package License: BSD @@ -147,6 +147,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:3.2.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:3.2.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:41:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:41:26 +0000 (UTC) Subject: rpms/cryptix-asn1/devel cryptix-asn1.spec,1.13,1.14 Message-ID: <20090724194126.A2DA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cryptix-asn1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1997 Modified Files: cryptix-asn1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cryptix-asn1.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptix-asn1/devel/cryptix-asn1.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- cryptix-asn1.spec 24 Feb 2009 09:50:21 -0000 1.13 +++ cryptix-asn1.spec 24 Jul 2009 19:41:26 -0000 1.14 @@ -41,7 +41,7 @@ Name: cryptix-asn1 #FIXME: We will have to tackle this obscene version number soon. #Perhaps this package will just die before then. Version: 20011119 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 0 Summary: Cryptix ASN1 implementation # Cryptix General License is BSD, even though they never bothered to include a copy of it here. @@ -129,6 +129,9 @@ fi %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:20011119-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:20011119-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:42:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:42:08 +0000 (UTC) Subject: rpms/cryptsetup-luks/devel cryptsetup-luks.spec,1.69,1.70 Message-ID: <20090724194208.ACC9A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cryptsetup-luks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2459 Modified Files: cryptsetup-luks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cryptsetup-luks.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptsetup-luks/devel/cryptsetup-luks.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- cryptsetup-luks.spec 22 Jul 2009 11:36:06 -0000 1.69 +++ cryptsetup-luks.spec 24 Jul 2009 19:42:08 -0000 1.70 @@ -1,7 +1,7 @@ Summary: A utility for setting up encrypted filesystems Name: cryptsetup-luks Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/System URL: http://cryptsetup.googlecode.com/ @@ -86,6 +86,9 @@ popd rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Milan Broz - 1.0.7-1 - Update to upstream final release. - Split libs subpackage. From jkeating at fedoraproject.org Fri Jul 24 19:42:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:42:22 +0000 (UTC) Subject: rpms/crystal/devel crystal.spec,1.12,1.13 Message-ID: <20090724194222.D9A3211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2611 Modified Files: crystal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystal.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystal/devel/crystal.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- crystal.spec 24 Feb 2009 09:54:12 -0000 1.12 +++ crystal.spec 24 Jul 2009 19:42:22 -0000 1.13 @@ -2,7 +2,7 @@ Name: crystal Version: 1.0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: KDE window decoration License: GPLv2 @@ -49,6 +49,9 @@ ctest %{_kde4_libdir}/kde4/kwin*_%{theme}*.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:42:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:42:37 +0000 (UTC) Subject: rpms/crystal-clear/devel crystal-clear.spec,1.6,1.7 Message-ID: <20090724194237.604BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystal-clear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2792 Modified Files: crystal-clear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystal-clear.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystal-clear/devel/crystal-clear.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- crystal-clear.spec 24 Feb 2009 09:55:10 -0000 1.6 +++ crystal-clear.spec 24 Jul 2009 19:42:37 -0000 1.7 @@ -2,7 +2,7 @@ Name: crystal-clear Version: 20050622 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Crystal Clear KDE Icon set Group: User Interface/Desktops @@ -82,6 +82,9 @@ ln -s kworldclock.png %{buildroot}%{_the %{_themedir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050622-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20050622-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:41:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:41:43 +0000 (UTC) Subject: rpms/crypto-utils/devel crypto-utils.spec,1.61,1.62 Message-ID: <20090724194143.76B6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crypto-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2170 Modified Files: crypto-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crypto-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/crypto-utils/devel/crypto-utils.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- crypto-utils.spec 21 May 2009 21:55:48 -0000 1.61 +++ crypto-utils.spec 24 Jul 2009 19:41:43 -0000 1.62 @@ -4,7 +4,7 @@ Summary: SSL certificate and key management utilities Name: crypto-utils Version: 2.4.1 -Release: 20 +Release: 21 Source: crypto-rand-%{crver}.tar.gz Source1: genkey.pl Source2: certwatch.c @@ -131,6 +131,9 @@ chmod -R u+w $RPM_BUILD_ROOT %{perl_vendorarch}/auto/Crypt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Elio Maldonado - 2.4.1-20 - certwatch: Fixed cert suffix to be .crt as Apache expects it (#162116) From jkeating at fedoraproject.org Fri Jul 24 19:41:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:41:53 +0000 (UTC) Subject: rpms/cryptopp/devel cryptopp.spec,1.5,1.6 Message-ID: <20090724194153.6F5F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cryptopp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2298 Modified Files: cryptopp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cryptopp.spec =================================================================== RCS file: /cvs/pkgs/rpms/cryptopp/devel/cryptopp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cryptopp.spec 9 Jun 2009 06:11:49 -0000 1.5 +++ cryptopp.spec 24 Jul 2009 19:41:53 -0000 1.6 @@ -1,6 +1,6 @@ Name: cryptopp Version: 5.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Public domain C++ class library of cryptographic schemes License: Public Domain Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Dan Horak 5.6.0-2 - add support for s390/s390x From jkeating at fedoraproject.org Fri Jul 24 19:42:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:42:51 +0000 (UTC) Subject: rpms/crystal-project/devel crystal-project.spec,1.6,1.7 Message-ID: <20090724194251.1DBAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystal-project/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2929 Modified Files: crystal-project.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystal-project.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystal-project/devel/crystal-project.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- crystal-project.spec 24 Feb 2009 09:56:07 -0000 1.6 +++ crystal-project.spec 24 Jul 2009 19:42:51 -0000 1.7 @@ -2,7 +2,7 @@ Name: crystal-project Version: 20070620 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Crystal Project KDE Icon set Group: User Interface/Desktops @@ -49,6 +49,9 @@ done %{_themedir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070620-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070620-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:43:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:43:03 +0000 (UTC) Subject: rpms/crystal-stacker/devel crystal-stacker.spec,1.9,1.10 Message-ID: <20090724194303.23F6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystal-stacker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3062 Modified Files: crystal-stacker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystal-stacker.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystal-stacker/devel/crystal-stacker.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- crystal-stacker.spec 24 Feb 2009 09:57:00 -0000 1.9 +++ crystal-stacker.spec 24 Jul 2009 19:43:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: crystal-stacker Version: 1.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Falling blocks, match 3 or more of the same color crystals Group: Amusements/Games License: Crystal Stacker @@ -119,6 +119,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:43:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:43:16 +0000 (UTC) Subject: rpms/crystal-stacker-themes/devel crystal-stacker-themes.spec, 1.4, 1.5 Message-ID: <20090724194316.48C9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystal-stacker-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3183 Modified Files: crystal-stacker-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystal-stacker-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystal-stacker-themes/devel/crystal-stacker-themes.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- crystal-stacker-themes.spec 24 Feb 2009 09:57:55 -0000 1.4 +++ crystal-stacker-themes.spec 24 Jul 2009 19:43:16 -0000 1.5 @@ -1,6 +1,6 @@ Name: crystal-stacker-themes Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Themes for the Crystal Stacker game Group: Amusements/Games License: Crystal Stacker @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:43:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:43:29 +0000 (UTC) Subject: rpms/crystalspace/devel crystalspace.spec,1.14,1.15 Message-ID: <20090724194329.2CFAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crystalspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3327 Modified Files: crystalspace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crystalspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/crystalspace/devel/crystalspace.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- crystalspace.spec 24 Feb 2009 09:58:48 -0000 1.14 +++ crystalspace.spec 24 Jul 2009 19:43:29 -0000 1.15 @@ -4,7 +4,7 @@ Name: crystalspace Version: %{major_version}.%{minor_version} -Release: 5%{?dist} +Release: 6%{?dist} Summary: Crystal Space a free 3D engine Group: System Environment/Libraries # most of crystalspace is LGPLv2+, but the sndsys class (and its plugins) and @@ -212,6 +212,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:43:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:43:42 +0000 (UTC) Subject: rpms/cscope/devel cscope.spec,1.38,1.39 Message-ID: <20090724194342.6821A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cscope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3443 Modified Files: cscope.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cscope.spec =================================================================== RCS file: /cvs/pkgs/rpms/cscope/devel/cscope.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- cscope.spec 12 Jun 2009 17:51:59 -0000 1.38 +++ cscope.spec 24 Jul 2009 19:43:42 -0000 1.39 @@ -1,7 +1,7 @@ Summary: C source code tree search and browse tool Name: cscope Version: 15.6 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://unc.dl.sourceforge.net/sourceforge/cscope/cscope-15.6.tar.gz URL: http://cscope.sourceforge.net License: BSD @@ -83,6 +83,9 @@ rm -f %{xemacs_lisp_path}/xcscope.el rm -f %{emacs_lisp_path}/xcscope.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 15.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Neil Horman - Fix some buffer overflows (bz 505605) From jkeating at fedoraproject.org Fri Jul 24 19:44:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:44:01 +0000 (UTC) Subject: rpms/csmash/devel csmash.spec,1.21,1.22 Message-ID: <20090724194401.AB59D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/csmash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3587 Modified Files: csmash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: csmash.spec =================================================================== RCS file: /cvs/pkgs/rpms/csmash/devel/csmash.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- csmash.spec 24 Feb 2009 10:00:40 -0000 1.21 +++ csmash.spec 24 Jul 2009 19:44:01 -0000 1.22 @@ -1,7 +1,7 @@ Summary: 3D tabletennis game Name: csmash Version: 0.6.6 -Release: 20 +Release: 21 License: GPLv2+ Group: Amusements/Games URL: http://cannonsmash.sourceforge.net/ @@ -87,6 +87,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.6-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.6-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:44:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:44:17 +0000 (UTC) Subject: rpms/csound/devel csound.spec,1.29,1.30 Message-ID: <20090724194417.DFF2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/csound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3845 Modified Files: csound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: csound.spec =================================================================== RCS file: /cvs/pkgs/rpms/csound/devel/csound.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- csound.spec 16 Jul 2009 11:16:29 -0000 1.29 +++ csound.spec 24 Jul 2009 19:44:17 -0000 1.30 @@ -14,7 +14,7 @@ Summary: A sound synthesis language and library Name: csound Version: 5.10.1 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://csound.sourceforge.net/ License: LGPLv2+ Group: Applications/Multimedia @@ -421,6 +421,9 @@ fi %doc manual/examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.10.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Peter Robinson - 5.10.1-9 - Update included files From jkeating at fedoraproject.org Fri Jul 24 19:44:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:44:33 +0000 (UTC) Subject: rpms/cssed/devel cssed.spec,1.5,1.6 Message-ID: <20090724194433.C40B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cssed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3988 Modified Files: cssed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cssed.spec =================================================================== RCS file: /cvs/pkgs/rpms/cssed/devel/cssed.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- cssed.spec 27 Feb 2009 13:32:25 -0000 1.5 +++ cssed.spec 24 Jul 2009 19:44:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: cssed Version: 0.4.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: CSS editor and validator Group: Applications/Editors @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_includedir}/cssed %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Rafa? Psota - 0.4.0-8 - gcc44 build fix From jkeating at fedoraproject.org Fri Jul 24 19:44:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:44:49 +0000 (UTC) Subject: rpms/csstidy/devel csstidy.spec,1.3,1.4 Message-ID: <20090724194449.C08CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/csstidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4155 Modified Files: csstidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: csstidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/csstidy/devel/csstidy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- csstidy.spec 1 Jun 2009 19:54:06 -0000 1.3 +++ csstidy.spec 24 Jul 2009 19:44:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: csstidy Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: CSS parser and optimizer Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Ville Skytt? - 1.4-3 - Build with %%{optflags}, %%{_smp_mflags} (#498487). From jkeating at fedoraproject.org Fri Jul 24 19:45:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:45:04 +0000 (UTC) Subject: rpms/cstream/devel cstream.spec,1.4,1.5 Message-ID: <20090724194504.9E46F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4306 Modified Files: cstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/cstream/devel/cstream.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cstream.spec 24 Feb 2009 10:04:05 -0000 1.4 +++ cstream.spec 24 Jul 2009 19:45:04 -0000 1.5 @@ -1,7 +1,7 @@ Summary: General-purpose stream-handling tool Name: cstream Version: 2.7.6 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/System License: MIT @@ -52,6 +52,9 @@ Data limits and throughput rate calculat %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.7.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:45:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:45:21 +0000 (UTC) Subject: rpms/ctags/devel ctags.spec,1.25,1.26 Message-ID: <20090724194521.064F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4482 Modified Files: ctags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctags.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctags/devel/ctags.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- ctags.spec 24 Feb 2009 10:05:02 -0000 1.25 +++ ctags.spec 24 Jul 2009 19:45:20 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A C programming language indexing and/or cross-reference tool Name: ctags Version: 5.7 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Development/Tools Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_mandir}/man1/etags.%{name}.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:45:40 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:45:40 +0000 (UTC) Subject: rpms/tgif/devel tgif.spec,1.9,1.10 Message-ID: <20090724194540.651CA11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tgif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4697 Modified Files: tgif.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 4.1.45-10 - F-12: Mass rebuild Index: tgif.spec =================================================================== RCS file: /cvs/extras/rpms/tgif/devel/tgif.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tgif.spec 24 Feb 2009 04:58:58 -0000 1.9 +++ tgif.spec 24 Jul 2009 19:45:40 -0000 1.10 @@ -3,7 +3,7 @@ Name: tgif Version: 4.1.45 -Release: 9%{?dist} +Release: 10%{?dist} Summary: 2-D drawing tool Group: Applications/Multimedia @@ -171,6 +171,9 @@ convert -geometry 64x64! %{SOURCE4} %{na %{_datadir}/applications/*-%{name}.desktop %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 4.1.45-10 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 4.1.45-9 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:45:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:45:35 +0000 (UTC) Subject: rpms/ctan-cm-lgc-fonts/devel ctan-cm-lgc-fonts.spec,1.2,1.3 Message-ID: <20090724194535.A410711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctan-cm-lgc-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4652 Modified Files: ctan-cm-lgc-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctan-cm-lgc-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctan-cm-lgc-fonts/devel/ctan-cm-lgc-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ctan-cm-lgc-fonts.spec 24 Feb 2009 10:05:58 -0000 1.2 +++ ctan-cm-lgc-fonts.spec 24 Jul 2009 19:45:35 -0000 1.3 @@ -15,7 +15,7 @@ LGR, and TS1 encodings, i.e. Latin, Cyri Name: ctan-cm-lgc-fonts Version: 0.5 -Release: 16%{?dist} +Release: 17%{?dist} Summary: CM-LGC Type1 fonts Group: Applications/Publishing # Font exception @@ -191,6 +191,9 @@ texhash %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:45:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:45:49 +0000 (UTC) Subject: rpms/ctan-kerkis-fonts/devel ctan-kerkis-fonts.spec,1.4,1.5 Message-ID: <20090724194549.E085611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctan-kerkis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4860 Modified Files: ctan-kerkis-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctan-kerkis-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctan-kerkis-fonts/devel/ctan-kerkis-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ctan-kerkis-fonts.spec 24 Feb 2009 10:06:55 -0000 1.4 +++ ctan-kerkis-fonts.spec 24 Jul 2009 19:45:49 -0000 1.5 @@ -15,7 +15,7 @@ that occur in variant forms. Name: ctan-kerkis-fonts Version: 2.0 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Kerkis Type 1 fonts Group: Applications/Publishing License: LPPL @@ -188,6 +188,9 @@ texhash %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:46:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:46:05 +0000 (UTC) Subject: rpms/ctan-musixtex-fonts/devel ctan-musixtex-fonts.spec,1.2,1.3 Message-ID: <20090724194605.7C28911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctan-musixtex-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5032 Modified Files: ctan-musixtex-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctan-musixtex-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctan-musixtex-fonts/devel/ctan-musixtex-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ctan-musixtex-fonts.spec 24 Feb 2009 10:07:50 -0000 1.2 +++ ctan-musixtex-fonts.spec 24 Jul 2009 19:46:05 -0000 1.3 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Type 1 versions of MusiXTeX fonts Group: User Interface/X License: LPPL @@ -39,6 +39,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:46:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:46:20 +0000 (UTC) Subject: rpms/ctapi-common/devel ctapi-common.spec,1.10,1.11 Message-ID: <20090724194620.A17C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctapi-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5180 Modified Files: ctapi-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctapi-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctapi-common/devel/ctapi-common.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ctapi-common.spec 24 Feb 2009 10:08:48 -0000 1.10 +++ ctapi-common.spec 24 Jul 2009 19:46:20 -0000 1.11 @@ -7,7 +7,7 @@ Name: ctapi-common Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Common files and packaging infrastructure for CT-API modules Group: System Environment/Libraries @@ -61,6 +61,9 @@ getent group %username >/dev/null || gro %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:46:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:46:35 +0000 (UTC) Subject: rpms/ctapi-cyberjack/devel ctapi-cyberjack.spec,1.39,1.40 Message-ID: <20090724194635.964CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctapi-cyberjack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5340 Modified Files: ctapi-cyberjack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctapi-cyberjack.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctapi-cyberjack/devel/ctapi-cyberjack.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- ctapi-cyberjack.spec 29 Apr 2009 01:18:45 -0000 1.39 +++ ctapi-cyberjack.spec 24 Jul 2009 19:46:35 -0000 1.40 @@ -1,7 +1,7 @@ Name: ctapi-cyberjack Summary: CT-API 1.1 driver for REINER SCT cyberjack USB chipcard reader Version: 3.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Requires(pre): group(ctapiusers) Requires: %{_libdir}/ctapi #ExcludeArch: x86_64 @@ -185,6 +185,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/getdist.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Milos Jakubicek - 3.3.0-6 - Fix FTBFS: added ctapi-cyberjack-gcc44.patch From jkeating at fedoraproject.org Fri Jul 24 19:46:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:46:50 +0000 (UTC) Subject: rpms/ctdb/devel ctdb.spec,1.10,1.11 Message-ID: <20090724194650.E0F4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5523 Modified Files: ctdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctdb/devel/ctdb.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ctdb.spec 17 Jul 2009 12:00:56 -0000 1.10 +++ ctdb.spec 24 Jul 2009 19:46:50 -0000 1.11 @@ -3,7 +3,7 @@ Summary: A Clustered Database based on Samba's Trivial Database (TDB) Name: ctdb Version: 1.0.87 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: System Environment/Daemons URL: http://ctdb.samba.org/ @@ -132,6 +132,9 @@ fi %{_libdir}/pkgconfig/ctdb.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.87-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Sumit Bose - 1.0.87-1 - Update to ctdb version 1.0.87 From jkeating at fedoraproject.org Fri Jul 24 19:47:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:47:04 +0000 (UTC) Subject: rpms/ctemplate/devel ctemplate.spec,1.6,1.7 Message-ID: <20090724194704.6462411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctemplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5675 Modified Files: ctemplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctemplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctemplate/devel/ctemplate.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ctemplate.spec 12 Apr 2009 18:01:48 -0000 1.6 +++ ctemplate.spec 24 Jul 2009 19:47:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: ctemplate Version: 0.93 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple but powerful template language for C++ Group: Development/Tools @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.93-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Rakesh Pandit - 0.93-2 - Added python as BuildRequires, and bswap patch for ppc From jkeating at fedoraproject.org Fri Jul 24 19:47:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:47:20 +0000 (UTC) Subject: rpms/ctorrent/devel ctorrent.spec,1.11,1.12 Message-ID: <20090724194720.7441A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5819 Modified Files: ctorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctorrent/devel/ctorrent.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ctorrent.spec 26 Feb 2009 21:07:23 -0000 1.11 +++ ctorrent.spec 24 Jul 2009 19:47:20 -0000 1.12 @@ -2,7 +2,7 @@ Name: ctorrent Version: 1.3.4 -Release: 9.%{dnh}%{?dist} +Release: 10.%{dnh}%{?dist} Summary: Command line BitTorrent client for unix-like environments Group: Applications/Internet License: GPLv2+ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING ChangeLog NEWS README README-DNH.TXT UserGuide %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-10.dnh3.3.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 26 2009 Dominik 'Rathann' Mierzejewski 1.3.4-9.dnh3.3.2 - update to 3.3.2 patch - improve summary: and description From jkeating at fedoraproject.org Fri Jul 24 19:47:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:47:35 +0000 (UTC) Subject: rpms/ctrlproxy/devel ctrlproxy.spec,1.23,1.24 Message-ID: <20090724194735.8A21211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ctrlproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5941 Modified Files: ctrlproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ctrlproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/ctrlproxy/devel/ctrlproxy.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ctrlproxy.spec 1 Apr 2009 11:53:50 -0000 1.23 +++ ctrlproxy.spec 24 Jul 2009 19:47:35 -0000 1.24 @@ -6,7 +6,7 @@ Summary: ctrlproxy Name: ctrlproxy Version: 3.0.8 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Internet Source: http://jelmer.vernstok.nl/releases/ctrlproxy-%{version}.tar.gz @@ -96,6 +96,9 @@ fi %{_libdir}/pkgconfig/ctrlproxy.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Bernie Innocenti 3.0.8-3 - Fix rhbz#483334: Unowned directories From jkeating at fedoraproject.org Fri Jul 24 19:47:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:47:50 +0000 (UTC) Subject: rpms/cudd/devel cudd.spec,1.6,1.7 Message-ID: <20090724194750.EC48E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cudd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6070 Modified Files: cudd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cudd.spec =================================================================== RCS file: /cvs/pkgs/rpms/cudd/devel/cudd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cudd.spec 13 May 2009 16:10:37 -0000 1.6 +++ cudd.spec 24 Jul 2009 19:47:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: cudd Version: 2.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CU Decision Diagram Package Group: Development/Libraries License: BSD @@ -147,6 +147,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Jerry James - 2.4.2-1 - Update to 2.4.2 - Drop upstreamed cudd-2.4.1-strcat.patch From jkeating at fedoraproject.org Fri Jul 24 19:48:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:48:05 +0000 (UTC) Subject: rpms/cuetools/devel cuetools.spec,1.3,1.4 Message-ID: <20090724194805.526DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cuetools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6193 Modified Files: cuetools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cuetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/cuetools/devel/cuetools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cuetools.spec 4 Jul 2009 18:15:55 -0000 1.3 +++ cuetools.spec 24 Jul 2009 19:48:05 -0000 1.4 @@ -2,7 +2,7 @@ Name: cuetools Version: 1.4.0 -Release: 0.4.svn305%{?dist} +Release: 0.5.svn305%{?dist} Summary: Utilities to work with cue and TOC files Group: Applications/Multimedia License: GPLv2 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-0.5.svn305 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Todd Zullinger - 1.4.0-0.4.svn305 - cuetag.sh: Fix metaflac options for flac >= 1.1.3 (bug 488586) - cuetag.sh: Fix handling of files with spaces (bug 499910) From jkeating at fedoraproject.org Fri Jul 24 19:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:48:20 +0000 (UTC) Subject: rpms/culmus-fonts/devel culmus-fonts.spec,1.11,1.12 Message-ID: <20090724194820.5571111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/culmus-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6318 Modified Files: culmus-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: culmus-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/culmus-fonts/devel/culmus-fonts.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- culmus-fonts.spec 10 Jul 2009 06:18:48 -0000 1.11 +++ culmus-fonts.spec 24 Jul 2009 19:48:20 -0000 1.12 @@ -10,7 +10,7 @@ Hebrew from the Culmus project. Name: %{fontname}-fonts Version: 0.103 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fonts for Hebrew from Culmus project Group: User Interface/X @@ -251,6 +251,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.103-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Pravin Satpute - 0.103-3 - added DavidCLM afm and pfa - bug 509694 From jkeating at fedoraproject.org Fri Jul 24 19:48:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:48:42 +0000 (UTC) Subject: rpms/cups/devel cups.spec,1.485,1.486 Message-ID: <20090724194842.6CD4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6503 Modified Files: cups.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cups.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups/devel/cups.spec,v retrieving revision 1.485 retrieving revision 1.486 diff -u -p -r1.485 -r1.486 --- cups.spec 24 Jul 2009 12:22:35 -0000 1.485 +++ cups.spec 24 Jul 2009 19:48:42 -0000 1.486 @@ -10,7 +10,7 @@ Summary: Common Unix Printing System Name: cups Version: 1.4 -Release: 0.%{pre}.11%{?dist} +Release: 0.%{pre}.11%{?dist}.1 License: GPLv2 Group: System Environment/Daemons Source: ftp://ftp.easysw.com/pub/cups/test//cups-%{version}%{?pre}%{?svn}-source.tar.bz2 @@ -503,6 +503,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/phpcups.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.4-0.rc1.11.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Tim Waugh 1:1.4-0.rc1.11 - Tell udevd to replay printer add events in the initscript. From jkeating at fedoraproject.org Fri Jul 24 19:48:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:48:58 +0000 (UTC) Subject: rpms/cups-bjnp/devel cups-bjnp.spec,1.1,1.2 Message-ID: <20090724194858.C3A4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cups-bjnp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6633 Modified Files: cups-bjnp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cups-bjnp.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups-bjnp/devel/cups-bjnp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cups-bjnp.spec 12 Jun 2009 19:20:54 -0000 1.1 +++ cups-bjnp.spec 24 Jul 2009 19:48:58 -0000 1.2 @@ -1,7 +1,7 @@ Summary : CUPS backend for the Canon BJNP network printers Name : cups-bjnp Version : 0.5.4 -Release : 3%{?dist} +Release : 4%{?dist} License : GPLv2 Source : http://downloads.sourceforge.net/cups-bjnp/cups-bjnp-%{version}.tar.gz Group : System Environment/Daemons @@ -36,6 +36,9 @@ rm -Rf $RPM_BUILD_ROOT %doc COPYING ChangeLog TODO NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Louis Lagendijk - 0.5.4-3 - corrected backendir again, forgot the backend suffix From jkeating at fedoraproject.org Fri Jul 24 19:49:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:49:13 +0000 (UTC) Subject: rpms/cups-pdf/devel cups-pdf.spec,1.16,1.17 Message-ID: <20090724194913.B685A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cups-pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6771 Modified Files: cups-pdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cups-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups-pdf/devel/cups-pdf.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- cups-pdf.spec 24 Feb 2009 10:17:56 -0000 1.16 +++ cups-pdf.spec 24 Jul 2009 19:49:13 -0000 1.17 @@ -18,7 +18,7 @@ Summary: Extension for creating p Summary(fr): Extension de CUPS pour cr?er des fichiers PDF Name: cups-pdf Version: 2.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Publishing Source0: http://www.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/src/%{name}_%{version}.tar.gz Source1: INSTALL.cups-pdf @@ -184,6 +184,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:49:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:49:26 +0000 (UTC) Subject: rpms/cups-pk-helper/devel cups-pk-helper.spec,1.9,1.10 Message-ID: <20090724194926.7554511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cups-pk-helper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6944 Modified Files: cups-pk-helper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cups-pk-helper.spec =================================================================== RCS file: /cvs/pkgs/rpms/cups-pk-helper/devel/cups-pk-helper.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cups-pk-helper.spec 16 Jul 2009 12:35:46 -0000 1.9 +++ cups-pk-helper.spec 24 Jul 2009 19:49:26 -0000 1.10 @@ -1,6 +1,6 @@ Name: cups-pk-helper Version: 0.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A helper that makes system-config-printer use PolicyKit Group: System Environment/Base @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Marek Kasik - 0.0.4-3 - Add devices_get() function. From jkeating at fedoraproject.org Fri Jul 24 19:49:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:49:40 +0000 (UTC) Subject: rpms/curl/devel curl.spec,1.106,1.107 Message-ID: <20090724194940.B0E4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7123 Modified Files: curl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/curl/devel/curl.spec,v retrieving revision 1.106 retrieving revision 1.107 diff -u -p -r1.106 -r1.107 --- curl.spec 22 Jul 2009 08:48:25 -0000 1.106 +++ curl.spec 24 Jul 2009 19:49:40 -0000 1.107 @@ -1,7 +1,7 @@ Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Name: curl Version: 7.19.5 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: Applications/Internet Source: http://curl.haxx.se/download/%{name}-%{version}.tar.bz2 @@ -142,6 +142,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libcurl.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.19.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Kamil Dudka 7.19.5-8 - do not pre-login to all PKCS11 slots, it causes problems with HW tokens - try to select client certificate automatically when not specified, thanks From mtasaka at fedoraproject.org Fri Jul 24 19:49:50 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:49:50 +0000 (UTC) Subject: rpms/tideEditor/devel tideEditor.spec,1.10,1.11 Message-ID: <20090724194950.69D4111C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tideEditor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7261 Modified Files: tideEditor.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.4.1-4 - F-12: Mass rebuild Index: tideEditor.spec =================================================================== RCS file: /cvs/extras/rpms/tideEditor/devel/tideEditor.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- tideEditor.spec 24 Feb 2009 04:58:59 -0000 1.10 +++ tideEditor.spec 24 Jul 2009 19:49:50 -0000 1.11 @@ -1,6 +1,6 @@ Name: tideEditor Version: 1.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Editor for Tide Constituent Database (TCD) files Group: Applications/Engineering @@ -38,6 +38,9 @@ Flater and Jan Depner. %{_bindir}/tideEditor %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.4.1-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.4.1-3 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 19:49:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:49:54 +0000 (UTC) Subject: rpms/curlftpfs/devel curlftpfs.spec,1.8,1.9 Message-ID: <20090724194954.A0C0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/curlftpfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7310 Modified Files: curlftpfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: curlftpfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/curlftpfs/devel/curlftpfs.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- curlftpfs.spec 24 Feb 2009 10:21:33 -0000 1.8 +++ curlftpfs.spec 24 Jul 2009 19:49:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: curlftpfs Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: CurlFtpFS is a filesystem for accessing FTP hosts based on FUSE and libcurl URL: http://curlftpfs.sourceforge.net/ # Code does not specify a version of the license. @@ -39,6 +39,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %doc COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:50:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:50:08 +0000 (UTC) Subject: rpms/curry/devel curry.spec,1.11,1.12 Message-ID: <20090724195008.5C36311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/curry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7493 Modified Files: curry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: curry.spec =================================================================== RCS file: /cvs/pkgs/rpms/curry/devel/curry.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- curry.spec 24 Feb 2009 10:22:26 -0000 1.11 +++ curry.spec 24 Jul 2009 19:50:08 -0000 1.12 @@ -1,6 +1,6 @@ Name: curry Version: 0.9.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: M?nster Curry compiler Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:50:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:50:21 +0000 (UTC) Subject: rpms/cutecom/devel cutecom.spec,1.2,1.3 Message-ID: <20090724195021.5E2FE11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cutecom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7614 Modified Files: cutecom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cutecom.spec =================================================================== RCS file: /cvs/pkgs/rpms/cutecom/devel/cutecom.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- cutecom.spec 24 Feb 2009 10:23:18 -0000 1.2 +++ cutecom.spec 24 Jul 2009 19:50:21 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A graphical serial terminal, like minicom or Hyperterminal on Windows Name: cutecom Version: 0.20.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Communications URL: http://cutecom.sourceforge.net/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:50:39 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:50:39 +0000 (UTC) Subject: rpms/tzclock/devel tzclock.spec,1.10,1.11 Message-ID: <20090724195039.BCCB811C04D2@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/tzclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7797 Modified Files: tzclock.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.7.4-2 - F-12: Mass rebuild Index: tzclock.spec =================================================================== RCS file: /cvs/extras/rpms/tzclock/devel/tzclock.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- tzclock.spec 23 Mar 2009 17:00:29 -0000 1.10 +++ tzclock.spec 24 Jul 2009 19:50:39 -0000 1.11 @@ -1,6 +1,6 @@ Name: tzclock Version: 2.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK+ graphical Clock displaying the time around the world Group: Amusements/Graphics @@ -67,6 +67,9 @@ desktop-file-install \ %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.7.4-2 +- F-12: Mass rebuild + * Tue Mar 24 2009 Mamoru Tasaka - 2.7.4-1 - 2.7.4 From jkeating at fedoraproject.org Fri Jul 24 19:50:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:50:35 +0000 (UTC) Subject: rpms/cvs/devel cvs.spec,1.64,1.65 Message-ID: <20090724195035.CF68011C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7757 Modified Files: cvs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvs.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvs/devel/cvs.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- cvs.spec 29 May 2009 11:54:02 -0000 1.64 +++ cvs.spec 24 Jul 2009 19:50:35 -0000 1.65 @@ -6,7 +6,7 @@ Summary: A version control system Name: cvs Version: 1.11.23 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: Development/Tools Source0: ftp://ftp.gnu.org/non-gnu/cvs/source/stable/%{version}/cvs-%{version}.tar.bz2 @@ -165,6 +165,9 @@ exit 0 %{_sysconfdir}/profile.d/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.23-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Jiri Moskovcak - 1.11.23.5 - added support for passing arguments thru stdin (patch from arozansk at redhat.com) - Resolves: #501942 From jkeating at fedoraproject.org Fri Jul 24 19:50:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:50:52 +0000 (UTC) Subject: rpms/cvs2cl/devel cvs2cl.spec,1.19,1.20 Message-ID: <20090724195052.7F72711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvs2cl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7986 Modified Files: cvs2cl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvs2cl.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvs2cl/devel/cvs2cl.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- cvs2cl.spec 24 Feb 2009 10:25:05 -0000 1.19 +++ cvs2cl.spec 24 Jul 2009 19:50:52 -0000 1.20 @@ -1,6 +1,6 @@ Name: cvs2cl Version: 2.72 -Release: 2 +Release: 3 Summary: Generate ChangeLogs from CVS working copies Group: Development/Tools @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.72-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.72-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 19:51:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 19:51:29 +0000 (UTC) Subject: rpms/uget/devel uget.spec,1.11,1.12 Message-ID: <20090724195129.8D43711C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/uget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8358 Modified Files: uget.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.4.9.1-2 - F-12: Mass rebuild Index: uget.spec =================================================================== RCS file: /cvs/extras/rpms/uget/devel/uget.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- uget.spec 22 Jul 2009 16:54:41 -0000 1.11 +++ uget.spec 24 Jul 2009 19:51:29 -0000 1.12 @@ -1,6 +1,6 @@ Name: uget Version: 1.4.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Download manager using GTK+ and libcurl Group: Applications/Internet @@ -74,6 +74,9 @@ exit 0 %{_datadir}/icons/hicolor/??x??/apps/%{name}-icon.png %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.4.9.1-2 +- F-12: Mass rebuild + * Wed Jul 23 2009 Mamoru Tasaka - 1.4.9.1-1 - 1.4.9.1 From jkeating at fedoraproject.org Fri Jul 24 19:51:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:51:07 +0000 (UTC) Subject: rpms/cvs2svn/devel cvs2svn.spec,1.15,1.16 Message-ID: <20090724195107.6884511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvs2svn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8122 Modified Files: cvs2svn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvs2svn.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvs2svn/devel/cvs2svn.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cvs2svn.spec 24 Feb 2009 10:26:00 -0000 1.15 +++ cvs2svn.spec 24 Jul 2009 19:51:07 -0000 1.16 @@ -2,7 +2,7 @@ Name: cvs2svn Version: 2.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CVS to Subversion Repository Converter Group: Development/Tools @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:51:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:51:23 +0000 (UTC) Subject: rpms/cvsgraph/devel cvsgraph.spec,1.18,1.19 Message-ID: <20090724195123.E707711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvsgraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8274 Modified Files: cvsgraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvsgraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvsgraph/devel/cvsgraph.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- cvsgraph.spec 24 Feb 2009 10:26:54 -0000 1.18 +++ cvsgraph.spec 24 Jul 2009 19:51:23 -0000 1.19 @@ -1,6 +1,6 @@ Name: cvsgraph Version: 1.6.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: CVS/RCS repository grapher Group: Development/Tools @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:51:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:51:38 +0000 (UTC) Subject: rpms/cvsplot/devel cvsplot.spec,1.13,1.14 Message-ID: <20090724195138.C15C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvsplot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8467 Modified Files: cvsplot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvsplot.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvsplot/devel/cvsplot.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- cvsplot.spec 24 Feb 2009 10:27:50 -0000 1.13 +++ cvsplot.spec 24 Jul 2009 19:51:38 -0000 1.14 @@ -1,6 +1,6 @@ Name: cvsplot Version: 1.7.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Collect statistics from CVS controlled files @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.7.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:51:53 +0000 (UTC) Subject: rpms/cvsps/devel cvsps.spec,1.9,1.10 Message-ID: <20090724195153.0C93911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvsps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8595 Modified Files: cvsps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvsps.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvsps/devel/cvsps.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- cvsps.spec 24 Feb 2009 10:28:47 -0000 1.9 +++ cvsps.spec 24 Jul 2009 19:51:52 -0000 1.10 @@ -2,7 +2,7 @@ Name: cvsps Version: 2.2 -Release: 0.2.%{prever}%{?dist} +Release: 0.3.%{prever}%{?dist} Summary: Patchset tool for CVS Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-0.3.b1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2-0.2.b1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:52:07 +0000 (UTC) Subject: rpms/cvsutils/devel cvsutils.spec,1.8,1.9 Message-ID: <20090724195207.D644B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvsutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8730 Modified Files: cvsutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvsutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvsutils/devel/cvsutils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cvsutils.spec 24 Feb 2009 10:29:41 -0000 1.8 +++ cvsutils.spec 24 Jul 2009 19:52:07 -0000 1.9 @@ -1,7 +1,7 @@ Summary: CVS Utilities Name: cvsutils Version: 0.2.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Development/Tools URL: http://www.red-bean.com/cvsutils @@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:52:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:52:21 +0000 (UTC) Subject: rpms/cvsweb/devel cvsweb.spec,1.15,1.16 Message-ID: <20090724195221.BE8C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cvsweb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8870 Modified Files: cvsweb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cvsweb.spec =================================================================== RCS file: /cvs/pkgs/rpms/cvsweb/devel/cvsweb.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- cvsweb.spec 17 Mar 2009 21:19:46 -0000 1.15 +++ cvsweb.spec 24 Jul 2009 19:52:21 -0000 1.16 @@ -1,6 +1,6 @@ Name: cvsweb Version: 3.0.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Web interface for CVS repositories License: BSD @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 16 2009 Dennis Gilmore - 3.0.6-8 - missed a reference to missing source file From jkeating at fedoraproject.org Fri Jul 24 19:52:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:52:35 +0000 (UTC) Subject: rpms/cwdaemon/devel cwdaemon.spec,1.3,1.4 Message-ID: <20090724195235.527CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cwdaemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9022 Modified Files: cwdaemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cwdaemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/cwdaemon/devel/cwdaemon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cwdaemon.spec 24 Feb 2009 10:31:38 -0000 1.3 +++ cwdaemon.spec 24 Jul 2009 19:52:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: cwdaemon Version: 0.9.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Morse daemon for the parallel or serial port Group: System Environment/Daemons @@ -73,6 +73,9 @@ fi %{_mandir}/man8/%{name}.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:52:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:52:49 +0000 (UTC) Subject: rpms/cwiid/devel cwiid.spec,1.8,1.9 Message-ID: <20090724195249.D340111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cwiid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9178 Modified Files: cwiid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cwiid.spec =================================================================== RCS file: /cvs/pkgs/rpms/cwiid/devel/cwiid.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- cwiid.spec 24 Feb 2009 10:32:38 -0000 1.8 +++ cwiid.spec 24 Jul 2009 19:52:49 -0000 1.9 @@ -2,7 +2,7 @@ Name: cwiid Version: 0.6.00 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Wiimote interface library Group: System Environment/Libraries @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-wmgui.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.00-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.00-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:53:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:53:05 +0000 (UTC) Subject: rpms/cwirc/devel cwirc.spec,1.3,1.4 Message-ID: <20090724195305.4DD0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cwirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9380 Modified Files: cwirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cwirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/cwirc/devel/cwirc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- cwirc.spec 24 Feb 2009 10:33:34 -0000 1.3 +++ cwirc.spec 24 Jul 2009 19:53:05 -0000 1.4 @@ -1,7 +1,7 @@ Name: cwirc Summary: X-Chat Morse plugin Version: 2.0.0 -Release: 6%{?dist} +Release: 7%{?dist} URL: http://myspace.voo.be/pcoupard/cwirc/ Source: http://myspace.voo.be/pcoupard/cwirc/download/%{name}-%{version}.tar.gz @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:53:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:53:19 +0000 (UTC) Subject: rpms/cwrite/devel cwrite.spec,1.4,1.5 Message-ID: <20090724195319.8FBEA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cwrite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9548 Modified Files: cwrite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cwrite.spec =================================================================== RCS file: /cvs/pkgs/rpms/cwrite/devel/cwrite.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- cwrite.spec 24 Feb 2009 10:34:32 -0000 1.4 +++ cwrite.spec 24 Jul 2009 19:53:19 -0000 1.5 @@ -1,7 +1,7 @@ Summary: A new text editor for the console Name: cwrite Version: 0.1.24 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Editors URL: http://cwrite-editor.hoter.ru @@ -55,6 +55,9 @@ rm -rf %{buildroot} #rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.24-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.24-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:53:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:53:34 +0000 (UTC) Subject: rpms/cx18-firmware/devel cx18-firmware.spec,1.1,1.2 Message-ID: <20090724195334.67FC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cx18-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9742 Modified Files: cx18-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cx18-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/cx18-firmware/devel/cx18-firmware.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- cx18-firmware.spec 27 Feb 2009 22:30:25 -0000 1.1 +++ cx18-firmware.spec 24 Jul 2009 19:53:34 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Firmware for Conexant cx23418-based video capture devices Name: cx18-firmware Version: 20080628 -Release: 2 +Release: 3 License: Redistributable, no modification permitted Group: System Environment/Kernel URL: http://dl.ivtvdriver.org/ivtv/firmware/ @@ -32,6 +32,9 @@ rm -rf %{buildroot} /lib/firmware/v4l-cx23418*.fw %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080628-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Jarod Wilson - 20080628-2 - Rebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:53:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:53:50 +0000 (UTC) Subject: rpms/cycle/devel cycle.spec,1.6,1.7 Message-ID: <20090724195350.8D6B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cycle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9912 Modified Files: cycle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cycle.spec =================================================================== RCS file: /cvs/pkgs/rpms/cycle/devel/cycle.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cycle.spec 24 Feb 2009 10:35:33 -0000 1.6 +++ cycle.spec 24 Jul 2009 19:53:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: cycle Version: 0.3.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Calendar program for women Group: Applications/Productivity License: GPLv2+ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:54:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:54:06 +0000 (UTC) Subject: rpms/cylindrix/devel cylindrix.spec,1.6,1.7 Message-ID: <20090724195406.8B18911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cylindrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10106 Modified Files: cylindrix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cylindrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/cylindrix/devel/cylindrix.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cylindrix.spec 24 Feb 2009 10:36:32 -0000 1.6 +++ cylindrix.spec 24 Jul 2009 19:54:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: cylindrix Version: 1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A 3 degrees of freedom combat game Group: Amusements/Games @@ -110,6 +110,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:54:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:54:21 +0000 (UTC) Subject: rpms/cyphesis/devel cyphesis.spec,1.35,1.36 Message-ID: <20090724195421.ABD5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cyphesis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10223 Modified Files: cyphesis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cyphesis.spec =================================================================== RCS file: /cvs/pkgs/rpms/cyphesis/devel/cyphesis.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- cyphesis.spec 15 May 2009 14:38:24 -0000 1.35 +++ cyphesis.spec 24 Jul 2009 19:54:21 -0000 1.36 @@ -4,7 +4,7 @@ Name: cyphesis Version: 0.5.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: WorldForge game server Group: System Environment/Libraries License: GPLv2+ @@ -167,6 +167,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Alexey Torkhov - 0.5.20-1 - Update to 0.5.20 From jkeating at fedoraproject.org Fri Jul 24 19:54:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:54:45 +0000 (UTC) Subject: rpms/cyrus-imapd/devel cyrus-imapd.spec,1.55,1.56 Message-ID: <20090724195445.1AB3B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cyrus-imapd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10392 Modified Files: cyrus-imapd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cyrus-imapd.spec =================================================================== RCS file: /cvs/pkgs/rpms/cyrus-imapd/devel/cyrus-imapd.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- cyrus-imapd.spec 1 Jul 2009 08:24:37 -0000 1.55 +++ cyrus-imapd.spec 24 Jul 2009 19:54:44 -0000 1.56 @@ -1,6 +1,6 @@ Name: cyrus-imapd Version: 2.3.14 -Release: 2%{?dist} +Release: 3%{?dist} # ********************** BUILD TIME OPTIONS START ********************** @@ -729,6 +729,9 @@ fi %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Michal Hlavinka - 2.3.14-2 - rebuild because of changed dependencies From jkeating at fedoraproject.org Fri Jul 24 19:55:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:55:01 +0000 (UTC) Subject: rpms/cyrus-sasl/devel cyrus-sasl.spec,1.79,1.80 Message-ID: <20090724195501.B590F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cyrus-sasl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10520 Modified Files: cyrus-sasl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cyrus-sasl.spec =================================================================== RCS file: /cvs/pkgs/rpms/cyrus-sasl/devel/cyrus-sasl.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- cyrus-sasl.spec 11 May 2009 13:05:19 -0000 1.79 +++ cyrus-sasl.spec 24 Jul 2009 19:55:01 -0000 1.80 @@ -4,7 +4,7 @@ Summary: The Cyrus SASL library Name: cyrus-sasl Version: 2.1.22 -Release: 24%{?dist} +Release: 25%{?dist} License: BSD Group: System Environment/Libraries # Source0 originally comes from ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/; @@ -374,6 +374,9 @@ fi %{_sbindir}/sasl2-shared-mechlist %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.22-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Jan Chadima - 2.1.22-24 - repair sasl_encode64 nul termination (#487251) From jkeating at fedoraproject.org Fri Jul 24 19:55:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:55:16 +0000 (UTC) Subject: rpms/d-feet/devel d-feet.spec,1.8,1.9 Message-ID: <20090724195516.C8C2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/d-feet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10654 Modified Files: d-feet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: d-feet.spec =================================================================== RCS file: /cvs/pkgs/rpms/d-feet/devel/d-feet.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- d-feet.spec 8 Jul 2009 11:06:56 -0000 1.8 +++ d-feet.spec 24 Jul 2009 19:55:16 -0000 1.9 @@ -2,7 +2,7 @@ Name: d-feet Version: 0.1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A powerful D-Bus Debugger Group: Development/Tools License: GPLv2+ @@ -67,6 +67,9 @@ fi %{_datadir}/applications/dfeet.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 John (J5) Palmieri - 0.1.10-1 - update to upstream 0.1.10 - output now pretty printed From jkeating at fedoraproject.org Fri Jul 24 19:55:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:55:31 +0000 (UTC) Subject: rpms/daa2iso/devel daa2iso.spec,1.4,1.5 Message-ID: <20090724195531.A1A0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/daa2iso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10799 Modified Files: daa2iso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: daa2iso.spec =================================================================== RCS file: /cvs/pkgs/rpms/daa2iso/devel/daa2iso.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- daa2iso.spec 24 Feb 2009 10:41:17 -0000 1.4 +++ daa2iso.spec 24 Jul 2009 19:55:31 -0000 1.5 @@ -1,7 +1,7 @@ Name: daa2iso Summary: Program for converting DAA files to ISO Version: 0.1.7a -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Archiving Source0: http://aluigi.altervista.org/mytoolz/daa2iso.zip @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/daa2iso %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.7a-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.7a-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:55:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:55:46 +0000 (UTC) Subject: rpms/daemonize/devel daemonize.spec,1.1,1.2 Message-ID: <20090724195546.769C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/daemonize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10925 Modified Files: daemonize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: daemonize.spec =================================================================== RCS file: /cvs/pkgs/rpms/daemonize/devel/daemonize.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- daemonize.spec 9 Jul 2009 00:38:16 -0000 1.1 +++ daemonize.spec 24 Jul 2009 19:55:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: daemonize Version: 1.5.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Run a command as a Unix daemon Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man1/daemonize.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Gary T. Giesen 1.5.6-1 - New upstream version, incorporates previous Makefile patch From jkeating at fedoraproject.org Fri Jul 24 19:55:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:55:59 +0000 (UTC) Subject: rpms/dahdi-tools/devel dahdi-tools.spec,1.7,1.8 Message-ID: <20090724195559.8A19C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dahdi-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11047 Modified Files: dahdi-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dahdi-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/dahdi-tools/devel/dahdi-tools.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dahdi-tools.spec 8 May 2009 12:04:02 -0000 1.7 +++ dahdi-tools.spec 24 Jul 2009 19:55:59 -0000 1.8 @@ -3,7 +3,7 @@ Name: dahdi-tools Version: %{tools_version} -Release: 6%{?dist} +Release: 7%{?dist} Summary: Userspace tools to configure the DAHDI kernel modules Group: System Environment/Libraries @@ -160,6 +160,9 @@ fi %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Michael Schwendt - 2.1.0.2-6 - Let dahdi-tools conflict with zaptel-utils (#472357). From jkeating at fedoraproject.org Fri Jul 24 19:56:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:56:12 +0000 (UTC) Subject: rpms/dansguardian/devel dansguardian.spec,1.1,1.2 Message-ID: <20090724195612.30FAB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dansguardian/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11161 Modified Files: dansguardian.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dansguardian.spec =================================================================== RCS file: /cvs/pkgs/rpms/dansguardian/devel/dansguardian.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dansguardian.spec 15 Jul 2009 10:10:58 -0000 1.1 +++ dansguardian.spec 24 Jul 2009 19:56:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: dansguardian Version: 2.10.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Content filtering web proxy Summary(de): Contentfilter-Proxy @@ -146,6 +146,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Felix Kaechele - 2.10.1.1-1 - news upstream version From jkeating at fedoraproject.org Fri Jul 24 19:56:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:56:25 +0000 (UTC) Subject: rpms/dap-freeform_handler/devel dap-freeform_handler.spec, 1.18, 1.19 Message-ID: <20090724195625.4A8D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dap-freeform_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11280 Modified Files: dap-freeform_handler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dap-freeform_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-freeform_handler/devel/dap-freeform_handler.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- dap-freeform_handler.spec 23 Jul 2009 03:38:02 -0000 1.18 +++ dap-freeform_handler.spec 24 Jul 2009 19:56:25 -0000 1.19 @@ -1,7 +1,7 @@ Summary: FreeForm data handler for the OPeNDAP Data server Name: dap-freeform_handler Version: 3.7.12 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/freeform_handler-%{version}.tar.gz @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 3.7.12-1 - Update to 3.9.12 - Drop gcc43 patch fixed upstream From jkeating at fedoraproject.org Fri Jul 24 19:56:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:56:38 +0000 (UTC) Subject: rpms/dap-hdf4_handler/devel dap-hdf4_handler.spec,1.24,1.25 Message-ID: <20090724195638.508B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dap-hdf4_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11404 Modified Files: dap-hdf4_handler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dap-hdf4_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-hdf4_handler/devel/dap-hdf4_handler.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- dap-hdf4_handler.spec 23 Jul 2009 03:53:02 -0000 1.24 +++ dap-hdf4_handler.spec 24 Jul 2009 19:56:38 -0000 1.25 @@ -1,7 +1,7 @@ Summary: HDF4 data handler for the OPeNDAP Data server Name: dap-hdf4_handler Version: 3.7.14 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/hdf4_handler-%{version}.tar.gz @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT_URI NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 3.7.14-1 - Update to 3.7.14 - Drop gcc43 patch, fixed upstream From jkeating at fedoraproject.org Fri Jul 24 19:56:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:56:52 +0000 (UTC) Subject: rpms/dap-netcdf_handler/devel dap-netcdf_handler.spec,1.20,1.21 Message-ID: <20090724195652.54DC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dap-netcdf_handler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11517 Modified Files: dap-netcdf_handler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dap-netcdf_handler.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-netcdf_handler/devel/dap-netcdf_handler.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- dap-netcdf_handler.spec 23 Jul 2009 15:42:51 -0000 1.20 +++ dap-netcdf_handler.spec 24 Jul 2009 19:56:52 -0000 1.21 @@ -1,7 +1,7 @@ Summary: NetCDF 3 data handler for the OPeNDAP Data server Name: dap-netcdf_handler Version: 3.8.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/netcdf_handler-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING COPYRIGHT NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Orion Poplawski - 3.8.3-1 - Update to 3.8.3 From jkeating at fedoraproject.org Fri Jul 24 19:57:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:57:07 +0000 (UTC) Subject: rpms/dap-server/devel dap-server.spec,1.30,1.31 Message-ID: <20090724195707.2797011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dap-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11655 Modified Files: dap-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dap-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/dap-server/devel/dap-server.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- dap-server.spec 23 Jul 2009 03:22:16 -0000 1.30 +++ dap-server.spec 24 Jul 2009 19:57:07 -0000 1.31 @@ -8,7 +8,7 @@ Summary: Basic request handling for OPeNDAP servers Name: dap-server Version: 3.9.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ and GPLv2+ Group: System Environment/Daemons Source0: http://www.opendap.org/pub/source/%{name}-%{version}.tar.gz @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 - Update to 3.9.3 - Add BR on cppunit-devel and make check From jkeating at fedoraproject.org Fri Jul 24 19:57:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:57:20 +0000 (UTC) Subject: rpms/dar/devel dar.spec,1.15,1.16 Message-ID: <20090724195720.6D7D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11795 Modified Files: dar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dar.spec =================================================================== RCS file: /cvs/pkgs/rpms/dar/devel/dar.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- dar.spec 24 Feb 2009 10:46:47 -0000 1.15 +++ dar.spec 24 Jul 2009 19:57:20 -0000 1.16 @@ -14,7 +14,7 @@ # Name: dar Version: 2.3.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Software for making/restoring incremental CD/DVD backups Group: Applications/Archiving @@ -197,6 +197,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:57:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:57:33 +0000 (UTC) Subject: rpms/darcs/devel darcs.spec,1.49,1.50 Message-ID: <20090724195733.74F5611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/darcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11909 Modified Files: darcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: darcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/darcs/devel/darcs.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- darcs.spec 2 Jul 2009 01:36:42 -0000 1.49 +++ darcs.spec 24 Jul 2009 19:57:33 -0000 1.50 @@ -1,6 +1,6 @@ Name: darcs Version: 2.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: David's advanced revision control system Group: Development/Tools @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Jens Petersen - 2.2.1-3 - drop post script since semanage now superfluous - drop the unused alphatag for now From jkeating at fedoraproject.org Fri Jul 24 19:57:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:57:46 +0000 (UTC) Subject: rpms/darkgarden-fonts/devel darkgarden-fonts.spec,1.9,1.10 Message-ID: <20090724195746.AE82E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/darkgarden-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12031 Modified Files: darkgarden-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: darkgarden-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/darkgarden-fonts/devel/darkgarden-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- darkgarden-fonts.spec 15 Mar 2009 19:01:54 -0000 1.9 +++ darkgarden-fonts.spec 24 Jul 2009 19:57:46 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Dark Garden is a decorative outline font of unusual shape Group: User Interface/X @@ -63,6 +63,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 1.1-9 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Fri Jul 24 19:57:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:57:59 +0000 (UTC) Subject: rpms/darkice/devel darkice.spec,1.5,1.6 Message-ID: <20090724195759.5222411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/darkice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12147 Modified Files: darkice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: darkice.spec =================================================================== RCS file: /cvs/pkgs/rpms/darkice/devel/darkice.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- darkice.spec 21 Apr 2009 14:52:30 -0000 1.5 +++ darkice.spec 24 Jul 2009 19:57:59 -0000 1.6 @@ -1,6 +1,6 @@ Name: darkice Version: 0.19 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Live audio streamer Group: Applications/Multimedia License: GPLv2+ @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man5/%{name}.cfg.5.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Milos Jakubicek - 0.19-5 - Fix FTBFS: added darkice-0.19-gcc44.patch From jkeating at fedoraproject.org Fri Jul 24 19:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:58:13 +0000 (UTC) Subject: rpms/dash/devel dash.spec,1.5,1.6 Message-ID: <20090724195813.D0AD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12291 Modified Files: dash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dash.spec =================================================================== RCS file: /cvs/pkgs/rpms/dash/devel/dash.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- dash.spec 23 May 2009 11:28:14 -0000 1.5 +++ dash.spec 24 Jul 2009 19:58:13 -0000 1.6 @@ -1,6 +1,6 @@ Name: dash Version: 0.5.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Small and fast POSIX-compliant shell Group: System Environment/Shells @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/man/man1/dash.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Andreas Thienemann - 0.5.5.1-2 - Added patch from upstream git to not close stdout on err. This improves initramfs use of dash. From jkeating at fedoraproject.org Fri Jul 24 19:58:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:58:26 +0000 (UTC) Subject: rpms/dasher/devel dasher.spec,1.87,1.88 Message-ID: <20090724195826.E456C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dasher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12440 Modified Files: dasher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dasher.spec =================================================================== RCS file: /cvs/pkgs/rpms/dasher/devel/dasher.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- dasher.spec 1 Jun 2009 02:21:06 -0000 1.87 +++ dasher.spec 24 Jul 2009 19:58:26 -0000 1.88 @@ -1,7 +1,7 @@ Summary: A predictive text input system Name: dasher Version: 4.10.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Desktop/Accessibility URL: http://www.gnome.org/ @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/gconf/schemas/dasher.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.10.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Matthias Clasen - 4.10.1-1 - Update to 4.10.1 From jkeating at fedoraproject.org Fri Jul 24 19:58:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:58:40 +0000 (UTC) Subject: rpms/dates/devel dates.spec,1.17,1.18 Message-ID: <20090724195840.5AD6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12571 Modified Files: dates.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dates.spec =================================================================== RCS file: /cvs/pkgs/rpms/dates/devel/dates.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- dates.spec 26 Feb 2009 22:45:36 -0000 1.17 +++ dates.spec 24 Jul 2009 19:58:40 -0000 1.18 @@ -1,6 +1,6 @@ Name: dates Version: 0.4.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Small, lightweight calendar Group: Applications/Productivity @@ -80,6 +80,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Debarshi Ray - 0.4.6-3 - Fixed build failure. From jkeating at fedoraproject.org Fri Jul 24 19:58:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:58:53 +0000 (UTC) Subject: rpms/dateshift/devel dateshift.spec,1.2,1.3 Message-ID: <20090724195853.66BC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dateshift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12684 Modified Files: dateshift.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dateshift.spec =================================================================== RCS file: /cvs/pkgs/rpms/dateshift/devel/dateshift.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dateshift.spec 24 Feb 2009 10:52:55 -0000 1.2 +++ dateshift.spec 24 Jul 2009 19:58:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: dateshift Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A date/time test tool Group: Applications/System @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:59:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:59:07 +0000 (UTC) Subject: rpms/davfs2/devel davfs2.spec,1.1,1.2 Message-ID: <20090724195907.9A48B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/davfs2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12824 Modified Files: davfs2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: davfs2.spec =================================================================== RCS file: /cvs/pkgs/rpms/davfs2/devel/davfs2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- davfs2.spec 11 Mar 2009 18:36:09 -0000 1.1 +++ davfs2.spec 24 Jul 2009 19:59:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: davfs2 Version: 1.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A filesystem driver for WebDAV Group: System Environment/Base License: GPLv2+ @@ -93,6 +93,9 @@ exit 0 %dir %attr(01775,root,%{groupname}) %{piddir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Will Woods - 1.3.3-2 - Passed package review (#488858) - Ensure that package owns /etc/davfs2 and /etc/davfs2/certs From jkeating at fedoraproject.org Fri Jul 24 19:59:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:59:21 +0000 (UTC) Subject: rpms/dayplanner/devel dayplanner.spec,1.9,1.10 Message-ID: <20090724195921.9968911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dayplanner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12969 Modified Files: dayplanner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dayplanner.spec =================================================================== RCS file: /cvs/pkgs/rpms/dayplanner/devel/dayplanner.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dayplanner.spec 26 Mar 2009 12:45:25 -0000 1.9 +++ dayplanner.spec 24 Jul 2009 19:59:21 -0000 1.10 @@ -3,7 +3,7 @@ Name: dayplanner Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An easy and clean Day Planner Summary(pl): Prosty i elegancki organizer Summary(de): Ein einfacher und klarer Tagesplaner @@ -138,6 +138,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Christoph Wickert - 0.10-1 - Update to 0.10 - Include new manpages From jkeating at fedoraproject.org Fri Jul 24 19:59:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:59:35 +0000 (UTC) Subject: rpms/db4/devel db4.spec,1.75,1.76 Message-ID: <20090724195935.9DD7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/db4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13120 Modified Files: db4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: db4.spec =================================================================== RCS file: /cvs/pkgs/rpms/db4/devel/db4.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- db4.spec 6 May 2009 06:01:43 -0000 1.75 +++ db4.spec 24 Jul 2009 19:59:35 -0000 1.76 @@ -9,7 +9,7 @@ Summary: The Berkeley DB database library (version 4) for C Name: db4 Version: 4.7.25 -Release: 12%{?dist} +Release: 13%{?dist} Source0: http://download.oracle.com/berkeley-db/db-%{version}.tar.gz Source1: http://download.oracle.com/berkeley-db/db.1.85.tar.gz # db-4.7.25 upstream patches @@ -380,6 +380,9 @@ rm -rf ${RPM_BUILD_ROOT} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.7.25-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Jindrich Novy 4.7.25-12 - fix for Java API __repmgr_send crash where eid=SELF_EID, don't update master_id so soon after election (upstream bz#16299) From jkeating at fedoraproject.org Fri Jul 24 20:00:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:00:01 +0000 (UTC) Subject: rpms/db4o/devel db4o.spec,1.12,1.13 Message-ID: <20090724200001.924A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/db4o/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13368 Modified Files: db4o.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: db4o.spec =================================================================== RCS file: /cvs/pkgs/rpms/db4o/devel/db4o.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- db4o.spec 13 Apr 2009 23:39:02 -0000 1.12 +++ db4o.spec 24 Jul 2009 20:00:01 -0000 1.13 @@ -5,7 +5,7 @@ Summary: A native OODBMS for Java/.NET/Mono - Mono version Name: db4o Version: 6.1 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Patch0: db4o-6.1-usesyslibs.patch Group: Development/Libraries @@ -107,6 +107,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/db4o.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Jesse Keating - 6.1-6 - Re-enable ppc From pgordon at fedoraproject.org Fri Jul 24 20:00:18 2009 From: pgordon at fedoraproject.org (Peter Gordon) Date: Fri, 24 Jul 2009 20:00:18 +0000 (UTC) Subject: rpms/epiphany-extensions/F-10 epiphany-extensions.spec,1.61,1.62 Message-ID: <20090724200018.BC40B11C049E@cvs1.fedora.phx.redhat.com> Author: pgordon Update of /cvs/pkgs/rpms/epiphany-extensions/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13585 Modified Files: epiphany-extensions.spec Log Message: Bump and rebuild for new Gecko. Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/F-10/epiphany-extensions.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- epiphany-extensions.spec 12 Jun 2009 00:31:43 -0000 1.61 +++ epiphany-extensions.spec 24 Jul 2009 20:00:18 -0000 1.62 @@ -1,10 +1,10 @@ %global ephy_major 2.24 %global ephy_min_version %{ephy_major}.0 -%global gecko_version 1.9.0.11 +%global gecko_version 1.9.0.12 Name: epiphany-extensions Version: %{ephy_major}.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extensions for Epiphany, the GNOME web browser ## The Live HTTP Headers extension is LGPLv2.1+; the Gestures extension is @@ -114,6 +114,10 @@ scrollkeeper-update -q ||: %changelog +* Fri Jul 24 2009 Peter Gordon - 2.24.3-3 +- Rebuild against newer gecko (1.9.0.12). +- Resolves: #513648 (epiphany-extensions dependencies block a security update) + * Thu Jun 11 2009 Christopher Aillon - 2.24.3-2 - Rebuild against newer gecko From jkeating at fedoraproject.org Fri Jul 24 20:00:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:00:25 +0000 (UTC) Subject: rpms/dbench/devel dbench.spec,1.7,1.8 Message-ID: <20090724200025.CA4CC11C04FC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbench/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13636 Modified Files: dbench.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbench.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbench/devel/dbench.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dbench.spec 24 Feb 2009 10:56:34 -0000 1.7 +++ dbench.spec 24 Jul 2009 20:00:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: dbench Version: 4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Filesystem load benchmarking tool Group: System Environment/Base @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:00:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:00:42 +0000 (UTC) Subject: rpms/dbh/devel dbh.spec,1.11,1.12 Message-ID: <20090724200042.882F011C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13855 Modified Files: dbh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbh.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbh/devel/dbh.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- dbh.spec 24 Feb 2009 10:57:26 -0000 1.11 +++ dbh.spec 24 Jul 2009 20:00:42 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Disk based hash library Name: dbh Version: 1.0.24 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://www.xfce.org/ Source0: http://www.us.xfce.org/archive/xfce-4.2.2/src/dbh-1.0.24.tar.gz Patch: dbh-1.0.22-rpath.patch @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0.24-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.0.24-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:00:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:00:57 +0000 (UTC) Subject: rpms/dblatex/devel dblatex.spec,1.10,1.11 Message-ID: <20090724200057.B621411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dblatex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14038 Modified Files: dblatex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dblatex.spec =================================================================== RCS file: /cvs/pkgs/rpms/dblatex/devel/dblatex.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- dblatex.spec 10 May 2009 19:07:41 -0000 1.10 +++ dblatex.spec 24 Jul 2009 20:00:57 -0000 1.11 @@ -2,7 +2,7 @@ Name: dblatex Version: 0.2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DocBook to LaTeX/ConTeXt Publishing BuildArch: noarch Group: Applications/Publishing @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /usr/bin/texhash %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Neal Becker - 0.2.10-2 - remove dblatex-0.2.9-xetex.patch From mtasaka at fedoraproject.org Fri Jul 24 20:01:13 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:01:13 +0000 (UTC) Subject: rpms/wallpapoz/devel wallpapoz.spec,1.22,1.23 Message-ID: <20090724200113.8557411C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/wallpapoz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14208 Modified Files: wallpapoz.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4.1-9.svn87_trunk - F-12: Mass rebuild Index: wallpapoz.spec =================================================================== RCS file: /cvs/extras/rpms/wallpapoz/devel/wallpapoz.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- wallpapoz.spec 24 Feb 2009 05:19:24 -0000 1.22 +++ wallpapoz.spec 24 Jul 2009 20:01:13 -0000 1.23 @@ -8,13 +8,13 @@ %define mainver 0.4.1 %undefine betaver %define svnver svn87_trunk -%define fedorarel 8 +%define fedorarel 9 %define rel %{?betaver:0.}%{fedorarel}%{?svnver:.%svnver}%{?betaver:.%betaver} Name: wallpapoz Version: %{mainver} -Release: %{rel}%{?dist}.1 +Release: %{rel}%{?dist} Summary: Gnome Multi Backgrounds and Wallpapers Configuration Tool Group: User Interface/Desktops @@ -96,6 +96,9 @@ desktop-file-install \ %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4.1-9.svn87_trunk +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 20:01:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:01:13 +0000 (UTC) Subject: rpms/dbmail/devel dbmail.spec,1.29,1.30 Message-ID: <20090724200113.24F6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14193 Modified Files: dbmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbmail/devel/dbmail.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- dbmail.spec 6 Jul 2009 06:06:07 -0000 1.29 +++ dbmail.spec 24 Jul 2009 20:01:12 -0000 1.30 @@ -10,7 +10,7 @@ Name: dbmail Version: 2.2.11 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A database backed mail storage system Group: System Environment/Daemons @@ -229,6 +229,9 @@ This is the postgresql libraries for dbm %{_libdir}/dbmail/libpgsql* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.11-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Bernard Johnson - 2.2.11-7 - fix left out ? in comparison From jkeating at fedoraproject.org Fri Jul 24 20:01:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:01:28 +0000 (UTC) Subject: rpms/dbus/devel dbus.spec,1.171,1.172 Message-ID: <20090724200128.E48BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14419 Modified Files: dbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus/devel/dbus.spec,v retrieving revision 1.171 retrieving revision 1.172 diff -u -p -r1.171 -r1.172 --- dbus.spec 23 Jul 2009 14:39:19 -0000 1.171 +++ dbus.spec 24 Jul 2009 20:01:28 -0000 1.172 @@ -9,7 +9,7 @@ Summary: D-BUS message bus Name: dbus Epoch: 1 Version: 1.2.16 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.gz Source1: doxygen_to_devhelp.xsl @@ -226,6 +226,9 @@ fi %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Colin Walters - 1:1.2.16-3 - Remove conflicting -U option to useradd From mtasaka at fedoraproject.org Fri Jul 24 20:01:52 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:01:52 +0000 (UTC) Subject: rpms/wkf/devel wkf.spec,1.5,1.6 Message-ID: <20090724200152.C66FB11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/wkf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14700 Modified Files: wkf.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.3.11-5 - F-12: Mass rebuild Index: wkf.spec =================================================================== RCS file: /cvs/extras/rpms/wkf/devel/wkf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- wkf.spec 24 Feb 2009 05:44:08 -0000 1.5 +++ wkf.spec 24 Jul 2009 20:01:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: wkf Version: 1.3.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Japanese Kanji code converting filter Group: System Environment/Libraries @@ -107,6 +107,9 @@ find $RPM_BUILD_ROOT -name '*.la' -or -n %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.3.11-5 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.3.11-4 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 20:01:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:01:43 +0000 (UTC) Subject: rpms/dbus-c++/devel dbus-c++.spec,1.6,1.7 Message-ID: <20090724200143.5B47911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-c++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14586 Modified Files: dbus-c++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-c++.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-c++/devel/dbus-c++.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dbus-c++.spec 24 Feb 2009 11:00:58 -0000 1.6 +++ dbus-c++.spec 24 Jul 2009 20:01:43 -0000 1.7 @@ -2,7 +2,7 @@ %define git_version 13281b3 Name: dbus-c++ Version: 0.5.0 -Release: 0.8.%{git_date}git%{git_version}%{?dist} +Release: 0.9.%{git_date}git%{git_version}%{?dist} Summary: Native C++ bindings for D-Bus Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-0.9.20090203git13281b3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0-0.8.20090203git13281b3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:02:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:02:02 +0000 (UTC) Subject: rpms/dbus-cxx/devel dbus-cxx.spec,1.10,1.11 Message-ID: <20090724200202.0E54711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-cxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14856 Modified Files: dbus-cxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-cxx/devel/dbus-cxx.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- dbus-cxx.spec 6 Jul 2009 15:28:03 -0000 1.10 +++ dbus-cxx.spec 24 Jul 2009 20:02:01 -0000 1.11 @@ -1,7 +1,7 @@ Summary: C++ bindings for the DBus library Name: dbus-cxx Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 URL: http://dbus-cxx.sourceforge.net Group: System Environment/Libraries @@ -152,6 +152,9 @@ find %{buildroot} -type f -name "*.la" - %{_includedir}/dbus-cxx-0.4/dbus-cxx-glibmm/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Rick L Vinyard Jr - 0.4.1-1 - New release From jkeating at fedoraproject.org Fri Jul 24 20:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:02:15 +0000 (UTC) Subject: rpms/dbus-glib/devel dbus-glib.spec,1.39,1.40 Message-ID: <20090724200215.B27F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15090 Modified Files: dbus-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-glib/devel/dbus-glib.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- dbus-glib.spec 16 Jul 2009 20:20:33 -0000 1.39 +++ dbus-glib.spec 24 Jul 2009 20:02:15 -0000 1.40 @@ -8,7 +8,7 @@ Summary: GLib bindings for D-Bus Name: dbus-glib Version: 0.82 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz Source1: dbus-bus-introspect.xml @@ -117,6 +117,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.82-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Colin Walters - 0.82-1 - New upstream 0.82 - Remove mclasen accidental commit of CFLAGS="-O0 -g3" From jkeating at fedoraproject.org Fri Jul 24 20:02:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:02:33 +0000 (UTC) Subject: rpms/dbus-java/devel dbus-java.spec,1.4,1.5 Message-ID: <20090724200233.A557F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15290 Modified Files: dbus-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-java/devel/dbus-java.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dbus-java.spec 17 Mar 2009 15:32:12 -0000 1.4 +++ dbus-java.spec 24 Jul 2009 20:02:33 -0000 1.5 @@ -2,7 +2,7 @@ Name: dbus-java Version: 2.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java implementation of the DBus protocol Group: Development/Libraries License: AFL or LGPLv2 @@ -164,6 +164,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Omair Majid - 2.5.1-1 - update to 2.5.1 - Added patches from Fran?ois Kooman From mtasaka at fedoraproject.org Fri Jul 24 20:02:43 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:02:43 +0000 (UTC) Subject: rpms/wvs-data/devel wvs-data.spec,1.4,1.5 Message-ID: <20090724200243.1E0AE11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/wvs-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15405 Modified Files: wvs-data.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.0.20020219-5 - F-12: Mass rebuild Index: wvs-data.spec =================================================================== RCS file: /cvs/extras/rpms/wvs-data/devel/wvs-data.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wvs-data.spec 24 Feb 2009 05:44:08 -0000 1.4 +++ wvs-data.spec 24 Jul 2009 20:02:42 -0000 1.5 @@ -9,7 +9,7 @@ Name: wvs-data Version: 0.0.%{WVS_date} -Release: 4 +Release: 5 Summary: World Vector Shoreline data Group: Applications/Engineering @@ -45,6 +45,9 @@ be used for XTide related applications. %{_datadir}/%{name}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.0.20020219-5 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.0.20020219-4 - F-11: Mass rebuild From jkeating at fedoraproject.org Fri Jul 24 20:02:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:02:50 +0000 (UTC) Subject: rpms/dbus-python/devel dbus-python.spec,1.30,1.31 Message-ID: <20090724200250.755D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15497 Modified Files: dbus-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-python/devel/dbus-python.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- dbus-python.spec 24 Feb 2009 11:03:46 -0000 1.30 +++ dbus-python.spec 24 Jul 2009 20:02:50 -0000 1.31 @@ -7,7 +7,7 @@ Summary: D-Bus Python Bindings Name: dbus-python Version: 0.83.0 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.freedesktop.org/software/dbus/ Source0: http://dbus.freedesktop.org/releases/dbus-python/%{name}-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/dbus-python.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.83.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.83.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:03:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:03:06 +0000 (UTC) Subject: rpms/dbus-qt/devel dbus-qt.spec,1.11,1.12 Message-ID: <20090724200306.9036811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15717 Modified Files: dbus-qt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-qt.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-qt/devel/dbus-qt.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- dbus-qt.spec 24 Feb 2009 11:04:49 -0000 1.11 +++ dbus-qt.spec 24 Jul 2009 20:03:06 -0000 1.12 @@ -7,7 +7,7 @@ Summary: Qt-based library for using D-BUS Name: dbus-qt Version: 0.70 -Release: 6%{?dist} +Release: 7%{?dist} License: AFL or GPLv2+ URL: http://www.freedesktop.org/software/dbus/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libdbus-qt-*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.70-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.70-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:03:21 +0000 (UTC) Subject: rpms/dbus-qt3/devel dbus-qt3.spec,1.8,1.9 Message-ID: <20090724200321.E31BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-qt3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15873 Modified Files: dbus-qt3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-qt3.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-qt3/devel/dbus-qt3.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- dbus-qt3.spec 24 Feb 2009 11:05:46 -0000 1.8 +++ dbus-qt3.spec 24 Jul 2009 20:03:21 -0000 1.9 @@ -11,7 +11,7 @@ Name: dbus-qt3 Summary: Qt3 DBus Bindings Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:03:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:03:37 +0000 (UTC) Subject: rpms/dbus-sharp/devel dbus-sharp.spec,1.13,1.14 Message-ID: <20090724200337.E605711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbus-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16071 Modified Files: dbus-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbus-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-sharp/devel/dbus-sharp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- dbus-sharp.spec 17 Jun 2009 12:23:24 -0000 1.13 +++ dbus-sharp.spec 24 Jul 2009 20:03:37 -0000 1.14 @@ -4,7 +4,7 @@ Summary: C# bindings for D-Bus Name: dbus-sharp Version: 0.63 -Release: 12%{?dist}.1 +Release: 13%{?dist}.1 URL: http://www.freedesktop.org/software/dbus/ Source0: %{name}-%{version}.tar.gz License: AFL or GPLv2 @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/dbus-sharp.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.63-13.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Karsten Hopp 0.63-12.1 - mono is now available on s390x From jkeating at fedoraproject.org Fri Jul 24 20:03:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:03:52 +0000 (UTC) Subject: rpms/dbxml/devel dbxml.spec,1.9,1.10 Message-ID: <20090724200352.6A99111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16221 Modified Files: dbxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbxml/devel/dbxml.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbxml.spec 24 Feb 2009 11:07:40 -0000 1.9 +++ dbxml.spec 24 Jul 2009 20:03:52 -0000 1.10 @@ -4,7 +4,7 @@ Name: dbxml Summary: An embeddable XML database with XQuery-based access to documents Group: System Environment/Libraries Version: 2.4.16 -Release: 0.4%{?dist} +Release: 0.5%{?dist} License: BSD URL: http://www.oracle.com/technology/software/products/berkeley-db/xml/index.html # Source tarball from Oracle containing sources of db4, xercesc, xqilla @@ -249,6 +249,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/dbxml-python-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.16-0.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.4.16-0.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:04:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:04:12 +0000 (UTC) Subject: rpms/dbxml-perl/devel dbxml-perl.spec,1.9,1.10 Message-ID: <20090724200412.5DCE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dbxml-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16416 Modified Files: dbxml-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dbxml-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbxml-perl/devel/dbxml-perl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- dbxml-perl.spec 24 Feb 2009 11:08:33 -0000 1.9 +++ dbxml-perl.spec 24 Jul 2009 20:04:12 -0000 1.10 @@ -1,6 +1,6 @@ Name: dbxml-perl Version: 2.0040016 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl bindings for Oracle DB XML Group: Development/Languages License: GPL+ or Artistic @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/dbxml-perl-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0040016-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0040016-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:04:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:04:26 +0000 (UTC) Subject: rpms/dc3dd/devel dc3dd.spec,1.2,1.3 Message-ID: <20090724200426.6074011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dc3dd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16585 Modified Files: dc3dd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dc3dd.spec =================================================================== RCS file: /cvs/pkgs/rpms/dc3dd/devel/dc3dd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dc3dd.spec 19 Mar 2009 21:23:02 -0000 1.2 +++ dc3dd.spec 24 Jul 2009 20:04:26 -0000 1.3 @@ -1,6 +1,6 @@ Name: dc3dd Version: 6.12.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Patched version of GNU dd for use in computer forensics Group: Applications/Editors @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.12.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Adam Miller - 6.12.3-1 - New release of dc3dd From jkeating at fedoraproject.org Fri Jul 24 20:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:04:39 +0000 (UTC) Subject: rpms/dcbd/devel dcbd.spec,1.1,1.2 Message-ID: <20090724200439.A011011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dcbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16769 Modified Files: dcbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dcbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/dcbd/devel/dcbd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dcbd.spec 23 Mar 2009 13:25:25 -0000 1.1 +++ dcbd.spec 24 Jul 2009 20:04:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: dcbd Version: 0.9.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Intel EEDC Connection Group: System Environment/Daemons @@ -90,6 +90,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Jan Zeleny - 0.9.7-4 - updated scriptlets in spec file to follow the rules From jkeating at fedoraproject.org Fri Jul 24 20:04:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:04:53 +0000 (UTC) Subject: rpms/dclib/devel dclib.spec,1.22,1.23 Message-ID: <20090724200453.7FA9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dclib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16929 Modified Files: dclib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/dclib/devel/dclib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- dclib.spec 24 Feb 2009 11:09:27 -0000 1.22 +++ dclib.spec 24 Jul 2009 20:04:53 -0000 1.23 @@ -1,6 +1,6 @@ Name: dclib Version: 0.3.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Direct Connect file sharing library Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:05:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:05:07 +0000 (UTC) Subject: rpms/dcraw/devel dcraw.spec,1.24,1.25 Message-ID: <20090724200507.8367A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dcraw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17068 Modified Files: dcraw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dcraw.spec =================================================================== RCS file: /cvs/pkgs/rpms/dcraw/devel/dcraw.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- dcraw.spec 2 Mar 2009 16:07:38 -0000 1.24 +++ dcraw.spec 24 Jul 2009 20:05:07 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Tool for decoding raw image data from digital cameras Name: dcraw Version: 8.91 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Multimedia License: GPLv2+ URL: http://cybercom.net/~dcoffin/dcraw @@ -62,6 +62,9 @@ rm -rf %buildroot %{_mandir}/*/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Nils Philippsen - 8.91-1 - version 8.91 From jkeating at fedoraproject.org Fri Jul 24 20:05:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:05:21 +0000 (UTC) Subject: rpms/dd2/devel dd2.spec,1.6,1.7 Message-ID: <20090724200521.8DD8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dd2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17210 Modified Files: dd2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dd2.spec =================================================================== RCS file: /cvs/pkgs/rpms/dd2/devel/dd2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dd2.spec 24 Feb 2009 11:11:15 -0000 1.6 +++ dd2.spec 24 Jul 2009 20:05:21 -0000 1.7 @@ -1,6 +1,6 @@ Name: dd2 Version: 0.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Dodgin' Diamond 2 - Shoot'em up arcade game Group: Amusements/Games License: GPLv2+ @@ -80,6 +80,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:05:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:05:35 +0000 (UTC) Subject: rpms/dd_rescue/devel dd_rescue.spec,1.6,1.7 Message-ID: <20090724200535.4A10911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dd_rescue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17351 Modified Files: dd_rescue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dd_rescue.spec =================================================================== RCS file: /cvs/pkgs/rpms/dd_rescue/devel/dd_rescue.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dd_rescue.spec 24 Feb 2009 11:12:06 -0000 1.6 +++ dd_rescue.spec 24 Jul 2009 20:05:35 -0000 1.7 @@ -2,7 +2,7 @@ Name: dd_rescue Version: 1.14 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Fault tolerant "dd" utility for rescuing data from bad media Group: Applications/System # No version specified @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.14-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:05:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:05:49 +0000 (UTC) Subject: rpms/ddclient/devel ddclient.spec,1.11,1.12 Message-ID: <20090724200549.91AE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ddclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17497 Modified Files: ddclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ddclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/ddclient/devel/ddclient.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ddclient.spec 24 Feb 2009 11:13:04 -0000 1.11 +++ ddclient.spec 24 Jul 2009 20:05:49 -0000 1.12 @@ -1,6 +1,6 @@ Name: ddclient Version: 3.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Client to update dynamic DNS host entries Group: System Environment/Daemons @@ -108,6 +108,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:06:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:06:04 +0000 (UTC) Subject: rpms/ddd/devel ddd.spec,1.13,1.14 Message-ID: <20090724200604.88D3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ddd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17638 Modified Files: ddd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ddd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ddd/devel/ddd.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ddd.spec 28 Apr 2009 01:44:45 -0000 1.13 +++ ddd.spec 24 Jul 2009 20:06:04 -0000 1.14 @@ -1,7 +1,7 @@ Summary: GUI for several command-line debuggers Name: ddd Version: 3.3.12 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Debuggers URL: http://www.gnu.org/software/ddd/ @@ -100,6 +100,9 @@ touch --no-create %{_datadir}/icons/hico %{_mandir}/man1/ddd.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jon Ciesla - 3.3.12-2 - 3.3.12 final. From jkeating at fedoraproject.org Fri Jul 24 20:06:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:06:19 +0000 (UTC) Subject: rpms/ddrescue/devel ddrescue.spec,1.14,1.15 Message-ID: <20090724200619.4BB1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ddrescue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17800 Modified Files: ddrescue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ddrescue.spec =================================================================== RCS file: /cvs/pkgs/rpms/ddrescue/devel/ddrescue.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ddrescue.spec 20 May 2009 20:51:09 -0000 1.14 +++ ddrescue.spec 24 Jul 2009 20:06:19 -0000 1.15 @@ -1,6 +1,6 @@ Name: ddrescue Version: 1.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Data recovery tool trying hard to rescue data in case of read errors Group: Applications/System License: GPLv3+ @@ -56,6 +56,9 @@ fi %{_infodir}/%{name}.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Ville Skytt? - 1.8-5 - Build with $RPM_OPT_FLAGS (#497152). From jkeating at fedoraproject.org Fri Jul 24 20:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:06:33 +0000 (UTC) Subject: rpms/ddskk/devel ddskk.spec,1.14,1.15 Message-ID: <20090724200633.952BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ddskk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17933 Modified Files: ddskk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ddskk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ddskk/devel/ddskk.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ddskk.spec 22 Jun 2009 08:05:00 -0000 1.14 +++ ddskk.spec 24 Jul 2009 20:06:33 -0000 1.15 @@ -11,7 +11,7 @@ Summary: Daredevil SKK - Simple Kana to Kanji conversion program for Emacs Name: ddskk Version: 13.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Editors URL: http://openlab.ring.gr.jp/skk/main.html @@ -123,6 +123,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Jens Petersen - 13.1-1 - update to 13.1 - bump apel_minver to 10.7 From jkeating at fedoraproject.org Fri Jul 24 20:06:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:06:47 +0000 (UTC) Subject: rpms/debmirror/devel debmirror.spec,1.1,1.2 Message-ID: <20090724200647.5927711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/debmirror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18071 Modified Files: debmirror.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: debmirror.spec =================================================================== RCS file: /cvs/pkgs/rpms/debmirror/devel/debmirror.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- debmirror.spec 9 Apr 2009 21:26:30 -0000 1.1 +++ debmirror.spec 24 Jul 2009 20:06:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: debmirror Version: 20070123 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Debian partial mirror script, with ftp and package pool support Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070123-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Ruben Kerkhof - 20070123-8 - Use GPL+ as license - Use main debian url for Source From jkeating at fedoraproject.org Fri Jul 24 20:07:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:07:01 +0000 (UTC) Subject: rpms/debootstrap/devel debootstrap.spec,1.8,1.9 Message-ID: <20090724200701.BF0E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/debootstrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18204 Modified Files: debootstrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: debootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/debootstrap/devel/debootstrap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- debootstrap.spec 24 Feb 2009 11:16:53 -0000 1.8 +++ debootstrap.spec 24 Jul 2009 20:07:01 -0000 1.9 @@ -1,6 +1,6 @@ Name: debootstrap Version: 1.0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Debian GNU/Linux bootstrapper Group: System Environment/Base @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:07:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:07:15 +0000 (UTC) Subject: rpms/decibel-audio-player/devel decibel-audio-player.spec,1.7,1.8 Message-ID: <20090724200715.D7C0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/decibel-audio-player/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18347 Modified Files: decibel-audio-player.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: decibel-audio-player.spec =================================================================== RCS file: /cvs/pkgs/rpms/decibel-audio-player/devel/decibel-audio-player.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- decibel-audio-player.spec 24 Feb 2009 11:17:50 -0000 1.7 +++ decibel-audio-player.spec 24 Jul 2009 20:07:15 -0000 1.8 @@ -6,7 +6,7 @@ Summary: Music player for GNOME Name: decibel-audio-player Version: 1.00 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://decibel.silent-blade.org/ @@ -130,6 +130,9 @@ fi %{_datadir}/%{name}/src %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:07:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:07:28 +0000 (UTC) Subject: rpms/deco/devel deco.spec,1.3,1.4 Message-ID: <20090724200728.545D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deco/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18474 Modified Files: deco.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deco.spec =================================================================== RCS file: /cvs/pkgs/rpms/deco/devel/deco.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- deco.spec 24 Feb 2009 11:18:42 -0000 1.3 +++ deco.spec 24 Jul 2009 20:07:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: deco Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extractor for various archive file formats Group: Applications/Archiving License: GPLv3 @@ -38,6 +38,9 @@ rm -rf %{buildroot} %dir %{_var}/lib/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:07:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:07:42 +0000 (UTC) Subject: rpms/deco-archive/devel deco-archive.spec,1.8,1.9 Message-ID: <20090724200742.D33C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deco-archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18615 Modified Files: deco-archive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deco-archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/deco-archive/devel/deco-archive.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- deco-archive.spec 18 Jul 2009 23:07:48 -0000 1.8 +++ deco-archive.spec 24 Jul 2009 20:07:42 -0000 1.9 @@ -1,6 +1,6 @@ Name: deco-archive Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extraction scripts for various archive formats for use of deco Group: Applications/Archiving License: GPLv3 @@ -171,6 +171,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 09 2009 Orcan Ogetbil 1.5-1 - Version update. New extensions: deb, udeb, tar.xz, txz, xz - Handle .lzma via xz-lzma-compat from now on From jkeating at fedoraproject.org Fri Jul 24 20:07:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:07:56 +0000 (UTC) Subject: rpms/dejagnu/devel dejagnu.spec,1.12,1.13 Message-ID: <20090724200756.91D2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dejagnu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18762 Modified Files: dejagnu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dejagnu.spec =================================================================== RCS file: /cvs/pkgs/rpms/dejagnu/devel/dejagnu.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dejagnu.spec 24 Feb 2009 11:20:27 -0000 1.12 +++ dejagnu.spec 24 Jul 2009 20:07:56 -0000 1.13 @@ -1,7 +1,7 @@ Summary: A front end for testing other programs Name: dejagnu Version: 1.4.4 -Release: 14%{?dist} +Release: 15%{?dist} Epoch: 1 License: GPLv2+ Source: ftp://ftp.gnu.org/gnu/dejagnu/dejagnu-%{version}.tar.gz @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.4.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.4.4-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:08:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:08:10 +0000 (UTC) Subject: rpms/dejavu-fonts/devel dejavu-fonts.spec,1.101,1.102 Message-ID: <20090724200810.9B0B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dejavu-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18889 Modified Files: dejavu-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dejavu-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/dejavu-fonts/devel/dejavu-fonts.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- dejavu-fonts.spec 23 May 2009 13:14:43 -0000 1.101 +++ dejavu-fonts.spec 24 Jul 2009 20:08:10 -0000 1.102 @@ -20,7 +20,7 @@ original style, using an open collaborat Name: %{fontname}-fonts Version: 2.29 -Release: 3%{?alphatag}%{?dist} +Release: 4%{?alphatag}%{?dist} Summary: DejaVu fonts Group: User Interface/X @@ -205,6 +205,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.29-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Nicolas Mailhot - 1.29-3 ? remove pre-F11 compatibility metapackage From jkeating at fedoraproject.org Fri Jul 24 20:08:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:08:24 +0000 (UTC) Subject: rpms/deletemail/devel deletemail.spec,1.2,1.3 Message-ID: <20090724200824.815BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deletemail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19026 Modified Files: deletemail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deletemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/deletemail/devel/deletemail.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- deletemail.spec 24 Feb 2009 11:22:13 -0000 1.2 +++ deletemail.spec 24 Jul 2009 20:08:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: deletemail Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A non-interactive tool for deleting mails Group: Applications/Internet @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:08:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:08:39 +0000 (UTC) Subject: rpms/deltarpm/devel deltarpm.spec,1.18,1.19 Message-ID: <20090724200839.DEAE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deltarpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19178 Modified Files: deltarpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deltarpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/deltarpm/devel/deltarpm.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- deltarpm.spec 22 Apr 2009 05:38:15 -0000 1.18 +++ deltarpm.spec 24 Jul 2009 20:08:39 -0000 1.19 @@ -1,7 +1,7 @@ Summary: Create deltas between rpms Name: deltarpm Version: 3.4 -Release: 16%{?dist} +Release: 17%{?dist} License: BSD Group: System Environment/Base URL: http://www.novell.com/products/linuxpackages/professional/deltarpm.html @@ -72,6 +72,9 @@ deltarpms. %{_bindir}/drpmsync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Jonathan Dieter - 3.4-16 - Split drpmsync into a separate subpackage (#489231) From jkeating at fedoraproject.org Fri Jul 24 20:08:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:08:54 +0000 (UTC) Subject: rpms/deluge/devel deluge.spec,1.94,1.95 Message-ID: <20090724200854.C0A4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deluge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19338 Modified Files: deluge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deluge.spec =================================================================== RCS file: /cvs/pkgs/rpms/deluge/devel/deluge.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- deluge.spec 8 Jul 2009 18:27:40 -0000 1.94 +++ deluge.spec 24 Jul 2009 20:08:54 -0000 1.95 @@ -3,7 +3,7 @@ Name: deluge Version: 1.1.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GTK+ BitTorrent client with support for DHT, UPnP, and PEX Group: Applications/Internet License: GPLv3 with exceptions @@ -146,6 +146,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Peter Gordon - 1.1.9-2 - Fixed rb_libtorrent-python dependency, so as not to use the %%min_rblibtorrent_ver macro any more (#510264). From jkeating at fedoraproject.org Fri Jul 24 20:09:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:09:08 +0000 (UTC) Subject: rpms/demorse/devel demorse.spec,1.4,1.5 Message-ID: <20090724200908.4682211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/demorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19491 Modified Files: demorse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: demorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/demorse/devel/demorse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- demorse.spec 24 Feb 2009 11:24:55 -0000 1.4 +++ demorse.spec 24 Jul 2009 20:09:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: demorse Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line tool for decoding Morse code signals Group: Applications/Communications @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:09:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:09:21 +0000 (UTC) Subject: rpms/denemo/devel denemo.spec,1.10,1.11 Message-ID: <20090724200921.B44CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/denemo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19624 Modified Files: denemo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: denemo.spec =================================================================== RCS file: /cvs/pkgs/rpms/denemo/devel/denemo.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- denemo.spec 30 May 2009 04:18:24 -0000 1.10 +++ denemo.spec 24 Jul 2009 20:09:21 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Graphical music notation program Name: denemo Version: 0.8.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Multimedia Source: http://download.savannah.gnu.org/releases/denemo/%{name}-%{version}.tar.gz @@ -97,6 +97,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Roy Rankin - 0.8.4-1 -Update for Denemo release 0.8.4 fix fedora bugzilla 499692 From jkeating at fedoraproject.org Fri Jul 24 20:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:09:36 +0000 (UTC) Subject: rpms/denyhosts/devel denyhosts.spec,1.57,1.58 Message-ID: <20090724200936.9C2EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/denyhosts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19762 Modified Files: denyhosts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: denyhosts.spec =================================================================== RCS file: /cvs/pkgs/rpms/denyhosts/devel/denyhosts.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- denyhosts.spec 5 Mar 2009 01:36:18 -0000 1.57 +++ denyhosts.spec 24 Jul 2009 20:09:36 -0000 1.58 @@ -1,6 +1,6 @@ Name: denyhosts Version: 2.6 -Release: 18%{?dist} +Release: 19%{?dist} Summary: A script to help thwart ssh server attacks Group: Applications/System @@ -165,6 +165,9 @@ exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Jason L Tibbitts III - 2.6-18 - Add patch to keep proper file context on the hosts.deny file. From jkeating at fedoraproject.org Fri Jul 24 20:09:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:09:51 +0000 (UTC) Subject: rpms/deskbar-applet/devel deskbar-applet.spec,1.82,1.83 Message-ID: <20090724200951.0A21F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deskbar-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19904 Modified Files: deskbar-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deskbar-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/deskbar-applet/devel/deskbar-applet.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- deskbar-applet.spec 14 Apr 2009 05:17:02 -0000 1.82 +++ deskbar-applet.spec 24 Jul 2009 20:09:50 -0000 1.83 @@ -3,7 +3,7 @@ Name: deskbar-applet Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Gnome applet to allow easy access to various search engines Group: Applications/Internet @@ -112,6 +112,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Michel Salim - 2.26.0-3 - Patch for a multiple inheritance bug on 64-bit platforms From jkeating at fedoraproject.org Fri Jul 24 20:10:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:10:10 +0000 (UTC) Subject: rpms/desktop-backgrounds/devel desktop-backgrounds.spec,1.65,1.66 Message-ID: <20090724201010.476B111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/desktop-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20089 Modified Files: desktop-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: desktop-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/desktop-backgrounds/devel/desktop-backgrounds.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- desktop-backgrounds.spec 22 Apr 2009 16:57:37 -0000 1.65 +++ desktop-backgrounds.spec 24 Jul 2009 20:10:09 -0000 1.66 @@ -4,7 +4,7 @@ Summary: Desktop backgrounds Name: desktop-backgrounds Version: 9.0.0 -Release: 8 +Release: 9 License: LGPLv2 Group: Applications/Multimedia Source: redhat-backgrounds-%{rh_backgrounds_version}.tar.bz2 @@ -150,6 +150,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/backgrounds/default* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Tom "spot" Callaway - 9.0.0-8 - fix compat subpackage From jkeating at fedoraproject.org Fri Jul 24 20:10:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:10:24 +0000 (UTC) Subject: rpms/desktop-data-model/devel desktop-data-model.spec,1.17,1.18 Message-ID: <20090724201024.74E8411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/desktop-data-model/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20254 Modified Files: desktop-data-model.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: desktop-data-model.spec =================================================================== RCS file: /cvs/pkgs/rpms/desktop-data-model/devel/desktop-data-model.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- desktop-data-model.spec 19 Jun 2009 07:50:25 -0000 1.17 +++ desktop-data-model.spec 24 Jul 2009 20:10:24 -0000 1.18 @@ -1,6 +1,6 @@ Name: desktop-data-model Version: 1.2.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Engine providing live updates of online data to the desktop Group: System Environment/Libraries @@ -82,6 +82,9 @@ echo %{version} > %{_datadir}/desktop-da %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Caol?n McNamara - 1.2.5-11 - Rebuild for yet another libempathy From jkeating at fedoraproject.org Fri Jul 24 20:10:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:10:38 +0000 (UTC) Subject: rpms/desktop-file-utils/devel desktop-file-utils.spec,1.54,1.55 Message-ID: <20090724201038.95BDD11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/desktop-file-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20379 Modified Files: desktop-file-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: desktop-file-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/desktop-file-utils/devel/desktop-file-utils.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- desktop-file-utils.spec 24 Feb 2009 11:30:37 -0000 1.54 +++ desktop-file-utils.spec 24 Jul 2009 20:10:38 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.15 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.freedesktop.org/software/desktop-file-utils Source0: http://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.gz Source1: desktop-file.prov @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT #%{_libdir}/rpm/desktop-file.prov %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.15-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:10:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:10:52 +0000 (UTC) Subject: rpms/deutex/devel deutex.spec,1.7,1.8 Message-ID: <20090724201052.F0EAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/deutex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20533 Modified Files: deutex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: deutex.spec =================================================================== RCS file: /cvs/pkgs/rpms/deutex/devel/deutex.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- deutex.spec 24 Feb 2009 11:31:31 -0000 1.7 +++ deutex.spec 24 Jul 2009 20:10:52 -0000 1.8 @@ -2,7 +2,7 @@ Name: deutex Version: 4.4.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: DOOM wad file manipulator Group: Amusements/Graphics @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.4.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:11:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:11:06 +0000 (UTC) Subject: rpms/dev86/devel dev86.spec,1.31,1.32 Message-ID: <20090724201106.C4CE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dev86/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20800 Modified Files: dev86.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dev86.spec =================================================================== RCS file: /cvs/pkgs/rpms/dev86/devel/dev86.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- dev86.spec 24 Feb 2009 11:32:30 -0000 1.31 +++ dev86.spec 24 Jul 2009 20:11:06 -0000 1.32 @@ -1,7 +1,7 @@ Summary: A real mode 80x86 assembler and linker Name: dev86 Version: 0.16.17 -Release: 14%{?dist} +Release: 15%{?dist} License: GPL+ and GPLv2+ and LGPLv2+ Group: Development/Languages URL: http://homepage.ntlworld.com/robert.debath/ @@ -87,6 +87,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.17-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.16.17-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:11:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:11:20 +0000 (UTC) Subject: rpms/devhelp/devel devhelp.spec,1.110,1.111 Message-ID: <20090724201120.F334911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/devhelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21216 Modified Files: devhelp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: devhelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/devhelp/devel/devhelp.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- devhelp.spec 15 Jul 2009 13:51:03 -0000 1.110 +++ devhelp.spec 24 Jul 2009 20:11:20 -0000 1.111 @@ -6,7 +6,7 @@ Name: devhelp Version: 0.23 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Development/Tools Summary: API documention browser @@ -146,6 +146,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.23-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthew Barnes - 0.23-8 - Add patch for GNOME bug #588655 (work around GLib deprecations). From jkeating at fedoraproject.org Fri Jul 24 20:11:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:11:34 +0000 (UTC) Subject: rpms/device-mapper-multipath/devel device-mapper-multipath.spec, 1.57, 1.58 Message-ID: <20090724201134.7D9C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/device-mapper-multipath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21702 Modified Files: device-mapper-multipath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: device-mapper-multipath.spec =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/device-mapper-multipath.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- device-mapper-multipath.spec 7 May 2009 20:18:19 -0000 1.57 +++ device-mapper-multipath.spec 24 Jul 2009 20:11:34 -0000 1.58 @@ -1,7 +1,7 @@ Summary: Tools to manage multipath devices using device-mapper Name: device-mapper-multipath Version: 0.4.9 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ Group: System Environment/Base URL: http://christophe.varoqui.free.fr/ @@ -124,6 +124,9 @@ fi %{_mandir}/man8/kpartx.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Mike Snitzer - 0.4.9-1 - Updated to latest upstream 0.4.9 code: multipath-tools-090429.tgz (git commit id: 7395bcda3a218df2eab1617df54628af0dc3456e) From jkeating at fedoraproject.org Fri Jul 24 20:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:11:49 +0000 (UTC) Subject: rpms/devilspie/devel devilspie.spec,1.12,1.13 Message-ID: <20090724201149.BB9E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/devilspie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21864 Modified Files: devilspie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: devilspie.spec =================================================================== RCS file: /cvs/pkgs/rpms/devilspie/devel/devilspie.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- devilspie.spec 24 Feb 2009 11:35:21 -0000 1.12 +++ devilspie.spec 24 Jul 2009 20:11:49 -0000 1.13 @@ -1,6 +1,6 @@ Name: devilspie Version: 0.22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A window-matching utility Group: User Interface/X @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/devilspie.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:12:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:12:04 +0000 (UTC) Subject: rpms/devtodo/devel devtodo.spec,1.1,1.2 Message-ID: <20090724201204.9805411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/devtodo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22048 Modified Files: devtodo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: devtodo.spec =================================================================== RCS file: /cvs/pkgs/rpms/devtodo/devel/devtodo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- devtodo.spec 11 May 2009 14:16:58 -0000 1.1 +++ devtodo.spec 24 Jul 2009 20:12:04 -0000 1.2 @@ -1,7 +1,7 @@ Name: devtodo Version: 0.1.20 Summary: Manage a prioritised list of todo items organized by directory -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Development/Tools URL: http://swapoff.org/DevTodo @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Dec 21 2008 Bernie Innocenti - 0.1.20-3 - More fixes reported by reviewer From jkeating at fedoraproject.org Fri Jul 24 20:12:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:12:19 +0000 (UTC) Subject: rpms/dfu-programmer/devel dfu-programmer.spec,1.6,1.7 Message-ID: <20090724201219.ED2B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dfu-programmer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22197 Modified Files: dfu-programmer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dfu-programmer.spec =================================================================== RCS file: /cvs/pkgs/rpms/dfu-programmer/devel/dfu-programmer.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dfu-programmer.spec 24 Feb 2009 11:36:16 -0000 1.6 +++ dfu-programmer.spec 24 Jul 2009 20:12:19 -0000 1.7 @@ -1,6 +1,6 @@ Name: dfu-programmer Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Device Firmware Update based USB programmer for Atmel chips Group: Development/Tools @@ -42,6 +42,9 @@ Atmel chips with USB support. %{_datadir}/hal/fdi/information/20thirdparty/10-dfu-programmer.fdi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:12:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:12:35 +0000 (UTC) Subject: rpms/dfu-util/devel dfu-util.spec,1.7,1.8 Message-ID: <20090724201235.236FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dfu-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22370 Modified Files: dfu-util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dfu-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/dfu-util/devel/dfu-util.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dfu-util.spec 13 Mar 2009 14:18:10 -0000 1.7 +++ dfu-util.spec 24 Jul 2009 20:12:35 -0000 1.8 @@ -4,7 +4,7 @@ Name: dfu-util Version: 0.1 -Release: 0.9.%{snapshot}%{?dist} +Release: 0.10.%{snapshot}%{?dist} Summary: USB Device Firmware Upgrade tool Group: Development/Tools @@ -70,6 +70,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.10.20090307svn4917 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Juha Tuomala - 0.1-0.9.20090307svn4917 - Fix builds for Fedora 11. From jkeating at fedoraproject.org Fri Jul 24 20:12:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:12:51 +0000 (UTC) Subject: rpms/dgae/devel dgae.spec,1.4,1.5 Message-ID: <20090724201251.E521311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dgae/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22543 Modified Files: dgae.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dgae.spec =================================================================== RCS file: /cvs/pkgs/rpms/dgae/devel/dgae.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dgae.spec 24 Feb 2009 11:38:04 -0000 1.4 +++ dgae.spec 24 Jul 2009 20:12:51 -0000 1.5 @@ -1,6 +1,6 @@ Name: dgae Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DG, a short AGI adventure game Group: Amusements/Games @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/dgae-wrapper.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:13:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:13:13 +0000 (UTC) Subject: rpms/dhcp/devel dhcp.spec,1.263,1.264 Message-ID: <20090724201313.C60FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dhcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22721 Modified Files: dhcp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dhcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcp/devel/dhcp.spec,v retrieving revision 1.263 retrieving revision 1.264 diff -u -p -r1.263 -r1.264 --- dhcp.spec 24 Jul 2009 03:07:41 -0000 1.263 +++ dhcp.spec 24 Jul 2009 20:13:13 -0000 1.264 @@ -10,7 +10,7 @@ Summary: Dynamic host configuration protocol software Name: dhcp Version: 4.1.0 -Release: 25%{?dist} +Release: 26%{?dist} # NEVER CHANGE THE EPOCH on this package. The previous maintainer (prior to # dcantrell maintaining the package) made incorrect use of the epoch and # that's why it is at 12 now. It should have never been used, but it was. @@ -457,6 +457,9 @@ fi %attr(0644,root,root) %{_mandir}/man3/omapi.3.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 12:4.1.0-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 David Cantrell - 12:4.1.0-25 - Include NetworkManager dispatcher script to run dhclient.d scripts (#459276) From jkeating at fedoraproject.org Fri Jul 24 20:13:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:13:29 +0000 (UTC) Subject: rpms/dhcp-forwarder/devel dhcp-forwarder.spec,1.25,1.26 Message-ID: <20090724201329.DD8C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dhcp-forwarder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22879 Modified Files: dhcp-forwarder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dhcp-forwarder.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcp-forwarder/devel/dhcp-forwarder.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- dhcp-forwarder.spec 1 Mar 2009 13:39:09 -0000 1.25 +++ dhcp-forwarder.spec 24 Jul 2009 20:13:29 -0000 1.26 @@ -22,7 +22,7 @@ Summary: DHCP relay agent Name: dhcp-forwarder Version: 0.8 -Release: %release_func 4 +Release: %release_func 5 License: GPLv3 Group: System Environment/Daemons URL: http://www.tu-chemnitz.de/~ensc/dhcp-fwd @@ -208,6 +208,9 @@ test "$1" != "0" || /sbin/initctl -q sto %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Enrico Scholz - 0.8-4 - added upstart %%scriplets From jkeating at fedoraproject.org Fri Jul 24 20:13:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:13:44 +0000 (UTC) Subject: rpms/dhcping/devel dhcping.spec,1.2,1.3 Message-ID: <20090724201344.B7FFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dhcping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23028 Modified Files: dhcping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dhcping.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcping/devel/dhcping.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dhcping.spec 24 Feb 2009 11:41:02 -0000 1.2 +++ dhcping.spec 24 Jul 2009 20:13:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: dhcping Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DHCP daemon ping program Group: Applications/Internet @@ -41,6 +41,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:14:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:14:02 +0000 (UTC) Subject: rpms/dhcpv6/devel dhcpv6.spec,1.101,1.102 Message-ID: <20090724201402.D6A2311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dhcpv6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23217 Modified Files: dhcpv6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dhcpv6.spec =================================================================== RCS file: /cvs/pkgs/rpms/dhcpv6/devel/dhcpv6.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- dhcpv6.spec 7 May 2009 00:02:14 -0000 1.101 +++ dhcpv6.spec 24 Jul 2009 20:14:02 -0000 1.102 @@ -4,7 +4,7 @@ Summary: Dynamic host configuration protocol software for IPv6 Name: dhcpv6 Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Daemons URL: http://fedorahosted.org/dhcpv6/ @@ -118,6 +118,9 @@ fi %attr(750,root,root) %dir %{_localstatedir}/run/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 David Cantrell - 1.2.0-2 - Obsolete libdhcp6client <= 1.0.22-1.fc10 (#499290) From mtasaka at fedoraproject.org Fri Jul 24 20:14:26 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:14:26 +0000 (UTC) Subject: rpms/xplanet/devel xplanet.spec,1.21,1.22 Message-ID: <20090724201426.CBFEE11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xplanet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23514 Modified Files: xplanet.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.2.1-2 - F-12: Mass rebuild Index: xplanet.spec =================================================================== RCS file: /cvs/extras/rpms/xplanet/devel/xplanet.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xplanet.spec 22 Apr 2009 17:28:36 -0000 1.21 +++ xplanet.spec 24 Jul 2009 20:14:26 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Render a planetary image into an X window Name: xplanet Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Amusements/Graphics @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_datadir}/xplanet %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.2.1-2 +- F-12: Mass rebuild + * Thu Apr 23 2009 Mamoru Tasaka - 1.2.1-1 - 1.2.1 From jkeating at fedoraproject.org Fri Jul 24 20:14:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:14:19 +0000 (UTC) Subject: rpms/dia/devel dia.spec,1.40,1.41 Message-ID: <20090724201419.196F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23400 Modified Files: dia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dia.spec =================================================================== RCS file: /cvs/pkgs/rpms/dia/devel/dia.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- dia.spec 31 Mar 2009 05:18:11 -0000 1.40 +++ dia.spec 24 Jul 2009 20:14:18 -0000 1.41 @@ -1,6 +1,6 @@ Name: dia Version: 0.96.1 -Release: 17%{?dist} +Release: 18%{?dist} Epoch: 1 Summary: Diagram drawing program Group: Applications/Multimedia @@ -117,6 +117,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.96.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Huzaifa Sidhpurwala - 1:0.96.1-17 - Resolves: rhbz#486726 - Version bump From jkeating at fedoraproject.org Fri Jul 24 20:14:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:14:35 +0000 (UTC) Subject: rpms/dialog/devel dialog.spec,1.35,1.36 Message-ID: <20090724201435.DCE0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dialog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23649 Modified Files: dialog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dialog.spec =================================================================== RCS file: /cvs/pkgs/rpms/dialog/devel/dialog.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- dialog.spec 24 Feb 2009 11:43:58 -0000 1.35 +++ dialog.spec 24 Jul 2009 20:14:35 -0000 1.36 @@ -2,7 +2,7 @@ Summary: A utility for creating TTY dial Name: dialog %define dialogsubversion 20080819 Version: 1.1 -Release: 8.%{dialogsubversion}%{?dist} +Release: 9.%{dialogsubversion}%{?dist} License: LGPLv2 Group: Applications/System URL: http://invisible-island.net/dialog/dialog.html @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/dialog.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-9.20080819 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-8.20080819 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:14:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:14:51 +0000 (UTC) Subject: rpms/dictd/devel dictd.spec,1.38,1.39 Message-ID: <20090724201451.D872111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dictd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23856 Modified Files: dictd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dictd.spec =================================================================== RCS file: /cvs/pkgs/rpms/dictd/devel/dictd.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- dictd.spec 24 Feb 2009 11:44:50 -0000 1.38 +++ dictd.spec 24 Jul 2009 20:14:51 -0000 1.39 @@ -2,7 +2,7 @@ Summary: DICT protocol (RFC 2229) command-line client Name: dictd Version: 1.11.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ and zlib and MIT Group: Applications/Internet Source0: http://downloads.sourceforge.net/dict/%{name}-%{version}.tar.gz @@ -67,6 +67,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/dictd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:15:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:15:08 +0000 (UTC) Subject: rpms/diction/devel diction.spec,1.8,1.9 Message-ID: <20090724201508.374E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24037 Modified Files: diction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diction.spec =================================================================== RCS file: /cvs/pkgs/rpms/diction/devel/diction.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- diction.spec 24 Feb 2009 11:45:43 -0000 1.8 +++ diction.spec 24 Jul 2009 20:15:08 -0000 1.9 @@ -1,6 +1,6 @@ Name: diction Version: 1.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Identifies diction and style errors Group: Applications/Text @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:15:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:15:23 +0000 (UTC) Subject: rpms/dietlibc/devel dietlibc.spec,1.64,1.65 Message-ID: <20090724201523.EB90811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dietlibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24188 Modified Files: dietlibc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dietlibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/dietlibc/devel/dietlibc.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- dietlibc.spec 1 Mar 2009 12:42:34 -0000 1.64 +++ dietlibc.spec 24 Jul 2009 20:15:23 -0000 1.65 @@ -28,7 +28,7 @@ Summary: Small libc implementation Name: dietlibc Version: 0.31 -Release: %release_func 8%{?snapshot:.%snapshot} +Release: %release_func 9%{?snapshot:.%snapshot} License: GPLv2 Group: Development/Libraries URL: http://www.fefe.de/dietlibc/ @@ -219,6 +219,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.31-9.20090228 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Enrico Scholz - 0.31-8.20090228 - splitted a noarch -header subpackage out of -devel From jkeating at fedoraproject.org Fri Jul 24 20:15:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:15:39 +0000 (UTC) Subject: rpms/diffpdf/devel diffpdf.spec,1.3,1.4 Message-ID: <20090724201539.C5D4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diffpdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24365 Modified Files: diffpdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diffpdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffpdf/devel/diffpdf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- diffpdf.spec 24 Feb 2009 11:47:36 -0000 1.3 +++ diffpdf.spec 24 Jul 2009 20:15:39 -0000 1.4 @@ -1,6 +1,6 @@ Name: diffpdf Version: 0.3.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: PDF files comparator Group: Applications/Text @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 20:15:48 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:15:48 +0000 (UTC) Subject: rpms/xscreensaver/devel xscreensaver.spec,1.90,1.91 Message-ID: <20090724201548.3295511C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xscreensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24466 Modified Files: xscreensaver.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1:5.08-11 - F-12: Mass rebuild Index: xscreensaver.spec =================================================================== RCS file: /cvs/extras/rpms/xscreensaver/devel/xscreensaver.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- xscreensaver.spec 11 Jun 2009 12:15:43 -0000 1.90 +++ xscreensaver.spec 24 Jul 2009 20:15:48 -0000 1.91 @@ -5,7 +5,7 @@ %define modular_conf 1 -%define fedora_rel 10 +%define fedora_rel 11 %define extrarel %{nil} @@ -652,6 +652,9 @@ exit 0 %defattr(-,root,root,-) %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1:5.08-11 +- F-12: Mass rebuild + * Thu Jun 11 2009 Mamoru Tasaka - 1:5.08-10 - Fix crash on startup when randr reports no rroi->ncrtc (bug 504912), patch from gentoo From jkeating at fedoraproject.org Fri Jul 24 20:15:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:15:55 +0000 (UTC) Subject: rpms/diffstat/devel diffstat.spec,1.28,1.29 Message-ID: <20090724201555.2A7E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diffstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24546 Modified Files: diffstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diffstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffstat/devel/diffstat.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- diffstat.spec 24 Feb 2009 11:48:34 -0000 1.28 +++ diffstat.spec 24 Jul 2009 20:15:54 -0000 1.29 @@ -1,7 +1,7 @@ Summary: A utility which provides statistics based on the output of diff Name: diffstat Version: 1.43 -Release: 9%{?dist} +Release: 10%{?dist} Group: Development/Tools License: MIT URL: http://invisible-island.net/diffstat @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.43-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.43-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:16:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:16:09 +0000 (UTC) Subject: rpms/diffuse/devel diffuse.spec,1.4,1.5 Message-ID: <20090724201609.C107611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diffuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24740 Modified Files: diffuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diffuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffuse/devel/diffuse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- diffuse.spec 4 Jul 2009 21:15:00 -0000 1.4 +++ diffuse.spec 24 Jul 2009 20:16:09 -0000 1.5 @@ -1,6 +1,6 @@ Name: diffuse Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical tool for comparing and merging text files Group: Development/Tools @@ -64,6 +64,9 @@ update-desktop-database &> /dev/null || %doc AUTHORS ChangeLog COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 4 2009 Jon Levell - 0.3.4-1 - Update to new upstream release (patch no longer needed) From jkeating at fedoraproject.org Fri Jul 24 20:16:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:16:25 +0000 (UTC) Subject: rpms/diffutils/devel diffutils.spec,1.29,1.30 Message-ID: <20090724201625.C365311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diffutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24888 Modified Files: diffutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diffutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/diffutils/devel/diffutils.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- diffutils.spec 24 Feb 2009 11:49:34 -0000 1.29 +++ diffutils.spec 24 Jul 2009 20:16:25 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A GNU collection of diff utilities Name: diffutils Version: 2.8.1 -Release: 23%{?dist} +Release: 24%{?dist} Group: Applications/Text URL: http://www.gnu.org/software/diffutils/diffutils.html Source: ftp://ftp.gnu.org/gnu/diffutils/diffutils-%{version}.tar.gz @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/diff.info*gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.1-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.8.1-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:16:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:16:40 +0000 (UTC) Subject: rpms/digikam-doc/devel digikam-doc.spec,1.11,1.12 Message-ID: <20090724201640.B61D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/digikam-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25040 Modified Files: digikam-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: digikam-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/digikam-doc/devel/digikam-doc.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- digikam-doc.spec 24 Feb 2009 11:51:32 -0000 1.11 +++ digikam-doc.spec 24 Jul 2009 20:16:40 -0000 1.12 @@ -6,7 +6,7 @@ Name: digikam-doc Version: 0.9.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Documentation for the digiKam and Showfoto Group: Documentation @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/HTML/*/showfoto/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:16:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:16:55 +0000 (UTC) Subject: rpms/digitemp/devel digitemp.spec,1.5,1.6 Message-ID: <20090724201655.AEF9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/digitemp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25196 Modified Files: digitemp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: digitemp.spec =================================================================== RCS file: /cvs/pkgs/rpms/digitemp/devel/digitemp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- digitemp.spec 23 Feb 2009 20:39:18 -0000 1.5 +++ digitemp.spec 24 Jul 2009 20:16:55 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Dallas Semiconductor 1-wire device reading console application Name: digitemp Version: 3.6.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.digitemp.com/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 3.6.0-2 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 20:17:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:17:18 +0000 (UTC) Subject: rpms/dillo/devel dillo.spec,1.21,1.22 Message-ID: <20090724201718.B264B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dillo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25398 Modified Files: dillo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dillo.spec =================================================================== RCS file: /cvs/pkgs/rpms/dillo/devel/dillo.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- dillo.spec 24 Feb 2009 11:52:35 -0000 1.21 +++ dillo.spec 24 Jul 2009 20:17:18 -0000 1.22 @@ -1,6 +1,6 @@ Name: dillo Version: 0.8.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Very small and fast GUI web browser @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:17:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:17:34 +0000 (UTC) Subject: rpms/dinotrace/devel dinotrace.spec,1.2,1.3 Message-ID: <20090724201734.3436411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dinotrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25552 Modified Files: dinotrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dinotrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/dinotrace/devel/dinotrace.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dinotrace.spec 10 Jun 2009 08:43:03 -0000 1.2 +++ dinotrace.spec 24 Jul 2009 20:17:34 -0000 1.3 @@ -12,7 +12,7 @@ Name: dinotrace Version: 9.4a -Release: 3%{?dist} +Release: 4%{?dist} Summary: Waveform viewer for electronics Url: http://www.veripool.org/wiki/dinotrace From jkeating at fedoraproject.org Fri Jul 24 20:17:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:17:48 +0000 (UTC) Subject: rpms/dirac/devel dirac.spec,1.14,1.15 Message-ID: <20090724201748.DDBA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dirac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25692 Modified Files: dirac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dirac.spec =================================================================== RCS file: /cvs/pkgs/rpms/dirac/devel/dirac.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- dirac.spec 24 Feb 2009 11:53:33 -0000 1.14 +++ dirac.spec 24 Jul 2009 20:17:48 -0000 1.15 @@ -1,6 +1,6 @@ Name: dirac Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Dirac is an open source video codec Group: System Environment/Libraries @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:18:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:18:10 +0000 (UTC) Subject: rpms/dircproxy/devel dircproxy.spec,1.7,1.8 Message-ID: <20090724201810.CC8C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dircproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25961 Modified Files: dircproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dircproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/dircproxy/devel/dircproxy.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dircproxy.spec 24 Feb 2009 11:54:43 -0000 1.7 +++ dircproxy.spec 24 Jul 2009 20:18:10 -0000 1.8 @@ -1,7 +1,7 @@ Name: dircproxy Version: 1.2.0 %define betaver RC1 -Release: 0.10.%{betaver}%{?dist} +Release: 0.11.%{betaver}%{?dist} Summary: IRC proxy server Group: Applications/Internet @@ -77,6 +77,9 @@ fi %{_datadir}/dircproxy/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-0.11.RC1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-0.10.RC1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:18:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:18:25 +0000 (UTC) Subject: rpms/directfb/devel directfb.spec,1.33,1.34 Message-ID: <20090724201825.ED8E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/directfb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26114 Modified Files: directfb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: directfb.spec =================================================================== RCS file: /cvs/pkgs/rpms/directfb/devel/directfb.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- directfb.spec 15 Jul 2009 22:59:24 -0000 1.33 +++ directfb.spec 24 Jul 2009 20:18:25 -0000 1.34 @@ -4,7 +4,7 @@ Summary: Graphics abstraction library for the Linux Framebuffer Device Name: directfb Version: %{major_ver}%{minor_ver} -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.directfb.org/ @@ -181,6 +181,9 @@ make check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.4.1-1 - Update to 1.4.1 From jkeating at fedoraproject.org Fri Jul 24 20:18:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:18:43 +0000 (UTC) Subject: rpms/dirmngr/devel dirmngr.spec,1.18,1.19 Message-ID: <20090724201843.565CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dirmngr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26342 Modified Files: dirmngr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dirmngr.spec =================================================================== RCS file: /cvs/pkgs/rpms/dirmngr/devel/dirmngr.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- dirmngr.spec 23 Jun 2009 03:57:02 -0000 1.18 +++ dirmngr.spec 24 Jul 2009 20:18:43 -0000 1.19 @@ -4,7 +4,7 @@ Name: dirmngr Summary: Client for Managing/Downloading CRLs Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -120,6 +120,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Rex Dieter - 1.0.3-2 - fix info scriptlet (uninstall) From jkeating at fedoraproject.org Fri Jul 24 20:18:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:18:56 +0000 (UTC) Subject: rpms/dirvish/devel dirvish.spec,1.4,1.5 Message-ID: <20090724201856.658F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dirvish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26483 Modified Files: dirvish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dirvish.spec =================================================================== RCS file: /cvs/pkgs/rpms/dirvish/devel/dirvish.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dirvish.spec 24 Feb 2009 11:57:43 -0000 1.4 +++ dirvish.spec 24 Jul 2009 20:18:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: dirvish Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Fast, disk based, rotating network backup system Group: Applications/Archiving @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:19:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:19:08 +0000 (UTC) Subject: rpms/disktype/devel disktype.spec,1.3,1.4 Message-ID: <20090724201908.66DF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/disktype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26627 Modified Files: disktype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: disktype.spec =================================================================== RCS file: /cvs/pkgs/rpms/disktype/devel/disktype.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- disktype.spec 24 Feb 2009 11:58:37 -0000 1.3 +++ disktype.spec 24 Jul 2009 20:19:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: disktype Version: 9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Detect the content format of a disk or disk image Group: Applications/File @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:19:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:19:22 +0000 (UTC) Subject: rpms/dissy/devel dissy.spec,1.3,1.4 Message-ID: <20090724201922.0636B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dissy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26763 Modified Files: dissy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dissy.spec =================================================================== RCS file: /cvs/pkgs/rpms/dissy/devel/dissy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dissy.spec 24 Feb 2009 11:59:32 -0000 1.3 +++ dissy.spec 24 Jul 2009 20:19:21 -0000 1.4 @@ -2,7 +2,7 @@ Name: dissy Version: 8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Graphical frontend to the objdump disassembler Group: Development/Tools @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:19:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:19:35 +0000 (UTC) Subject: rpms/distcache/devel distcache.spec,1.25,1.26 Message-ID: <20090724201935.CFEF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/distcache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26928 Modified Files: distcache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: distcache.spec =================================================================== RCS file: /cvs/pkgs/rpms/distcache/devel/distcache.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- distcache.spec 24 Feb 2009 12:00:36 -0000 1.25 +++ distcache.spec 24 Jul 2009 20:19:35 -0000 1.26 @@ -2,7 +2,7 @@ Summary: Distributed SSL session cache Name: distcache Version: 1.4.5 -Release: 19 +Release: 20 License: LGPLv2 Group: System Environment/Daemons URL: http://www.distcache.org/ @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man2/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.5-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.5-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:19:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:19:53 +0000 (UTC) Subject: rpms/distcc/devel distcc.spec,1.2,1.3 Message-ID: <20090724201953.D44E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/distcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27103 Modified Files: distcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: distcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/distcc/devel/distcc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- distcc.spec 24 Feb 2009 12:01:40 -0000 1.2 +++ distcc.spec 24 Jul 2009 20:19:53 -0000 1.3 @@ -1,7 +1,7 @@ Name: distcc Version: 2.18.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Distributed C/C++ compilation Group: Development/Tools License: GPLv2+ @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.18.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Fri Jul 24 20:20:01 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Fri, 24 Jul 2009 20:20:01 +0000 (UTC) Subject: rpms/xtide/devel xtide.spec,1.44,1.45 Message-ID: <20090724202001.77B9E11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xtide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27214 Modified Files: xtide.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.10-5 - Use %_initddir instead of %_initrddir Index: xtide.spec =================================================================== RCS file: /cvs/extras/rpms/xtide/devel/xtide.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- xtide.spec 24 Feb 2009 15:31:21 -0000 1.44 +++ xtide.spec 24 Jul 2009 20:20:01 -0000 1.45 @@ -3,7 +3,7 @@ %define dwfdate 20081228 -%define fedorarel 4 +%define fedorarel 5 %define rel %{?betatag:0.}%{fedorarel}%{?betatag:.%betatag} @@ -182,12 +182,12 @@ done $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/%{name}.png # 1E install xttpd conf file -%{__mkdir_p} $RPM_BUILD_ROOT%{_initrddir} +%{__mkdir_p} $RPM_BUILD_ROOT%{_initddir} %{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig %{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/xtide %{__install} -c -p -m 755 scripts/Fedora/rc.xttpd \ - $RPM_BUILD_ROOT%{_initrddir}/xttpd + $RPM_BUILD_ROOT%{_initddir}/xttpd %{__install} -c -p -m 644 scripts/Fedora/xttpd.conf \ $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/xttpd @@ -277,13 +277,16 @@ exit 0 # xttpd %config(noreplace) %{_sysconfdir}/sysconfig/xttpd -%{_initrddir}/xttpd +%{_initddir}/xttpd %{_sbindir}/xttpd %{_libexecdir}/xttpd %{_datadir}/man/man8/xttpd.8* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.10-5 +- Use %%_initddir instead of %%_initrddir + * Wed Feb 25 2009 Mamoru Tasaka - 2.10-4 - GTK icon cache updating script update From jkeating at fedoraproject.org Fri Jul 24 20:20:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:20:07 +0000 (UTC) Subject: rpms/diveintopython/devel diveintopython.spec,1.10,1.11 Message-ID: <20090724202007.7409111C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/diveintopython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27317 Modified Files: diveintopython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: diveintopython.spec =================================================================== RCS file: /cvs/pkgs/rpms/diveintopython/devel/diveintopython.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- diveintopython.spec 24 Feb 2009 12:02:36 -0000 1.10 +++ diveintopython.spec 24 Jul 2009 20:20:07 -0000 1.11 @@ -1,6 +1,6 @@ Name: diveintopython Version: 5.4 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Dive into Python - a python book @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.4-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:20:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:20:20 +0000 (UTC) Subject: rpms/django-authopenid/devel django-authopenid.spec,1.3,1.4 Message-ID: <20090724202020.855ED11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-authopenid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27519 Modified Files: django-authopenid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-authopenid.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-authopenid/devel/django-authopenid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- django-authopenid.spec 24 Feb 2009 12:03:30 -0000 1.3 +++ django-authopenid.spec 24 Jul 2009 20:20:20 -0000 1.4 @@ -2,7 +2,7 @@ Name: django-authopenid Version: 0.9.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Django application to integrate Django authentication system with OpenID Group: Development/Languages @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:20:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:20:33 +0000 (UTC) Subject: rpms/django-contact-form/devel django-contact-form.spec,1.3,1.4 Message-ID: <20090724202033.7EFBC11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-contact-form/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27664 Modified Files: django-contact-form.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-contact-form.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-contact-form/devel/django-contact-form.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- django-contact-form.spec 10 Mar 2009 14:02:56 -0000 1.3 +++ django-contact-form.spec 24 Jul 2009 20:20:33 -0000 1.4 @@ -4,7 +4,7 @@ Name: django-contact-form Version: 0.3 -Release: 3%{?dist}.hg%{alphatag} +Release: 4%{?dist}.hg%{alphatag} Summary: An extensible contact-form application for Django Group: Development/Languages @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-4.hg97559a887345 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Ignacio Vazquez-Abrams 0.3-3.hg97559a887345 - Update to a newer release from hg From jkeating at fedoraproject.org Fri Jul 24 20:20:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:20:47 +0000 (UTC) Subject: rpms/django-evolution/devel django-evolution.spec,1.1,1.2 Message-ID: <20090724202047.B4F0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27816 Modified Files: django-evolution.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-evolution/devel/django-evolution.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- django-evolution.spec 20 Mar 2009 06:30:19 -0000 1.1 +++ django-evolution.spec 24 Jul 2009 20:20:47 -0000 1.2 @@ -4,7 +4,7 @@ Name: django-evolution Version: 0.0 -Release: 0%{?dist}.1.svn%{alphatag} +Release: 1%{?dist}.1.svn%{alphatag} Summary: Schema evolution for Django Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0-1.1.svnr164 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Ignacio Vazquez-Abrams 0.0-0.1.svnr164 - Add Requires: Django From jkeating at fedoraproject.org Fri Jul 24 20:21:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:21:00 +0000 (UTC) Subject: rpms/django-notification/devel django-notification.spec,1.2,1.3 Message-ID: <20090724202100.8BB8911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-notification/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27969 Modified Files: django-notification.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-notification.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-notification/devel/django-notification.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- django-notification.spec 4 Mar 2009 13:52:06 -0000 1.2 +++ django-notification.spec 24 Jul 2009 20:21:00 -0000 1.3 @@ -2,7 +2,7 @@ Name: django-notification Version: 0.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: User notification management for the Django web framework Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Ignacio Vazquez-Abrams 0.1.2-2 - Add Requires: Django From jkeating at fedoraproject.org Fri Jul 24 20:21:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:21:14 +0000 (UTC) Subject: rpms/django-pagination/devel django-pagination.spec,1.1,1.2 Message-ID: <20090724202114.DDAF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-pagination/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28123 Modified Files: django-pagination.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-pagination.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-pagination/devel/django-pagination.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- django-pagination.spec 5 Mar 2009 20:58:26 -0000 1.1 +++ django-pagination.spec 24 Jul 2009 20:21:14 -0000 1.2 @@ -2,7 +2,7 @@ Name: django-pagination Version: 1.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Django pagination tools Group: Development/Languages @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Ignacio Vazquez-Abrams 1.0.5-3 - Remove translation files for now From jkeating at fedoraproject.org Fri Jul 24 20:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:21:28 +0000 (UTC) Subject: rpms/django-sct/devel django-sct.spec,1.1,1.2 Message-ID: <20090724202128.EA31811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-sct/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28268 Modified Files: django-sct.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-sct.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-sct/devel/django-sct.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- django-sct.spec 8 Apr 2009 12:34:46 -0000 1.1 +++ django-sct.spec 24 Jul 2009 20:21:28 -0000 1.2 @@ -2,7 +2,7 @@ Name: django-sct Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of Django applications for building community websites Group: Development/Languages @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/django-sct %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Ignacio Vazquez-Abrams 0.5-2 - Cleaned up some rpmlint errors From rdieter at fedoraproject.org Fri Jul 24 20:21:40 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 20:21:40 +0000 (UTC) Subject: rpms/exiv2/devel .cvsignore, 1.12, 1.13 exiv2.spec, 1.25, 1.26 sources, 1.12, 1.13 Message-ID: <20090724202140.7740D11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/exiv2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28393 Modified Files: .cvsignore exiv2.spec sources Log Message: * Fri Jul 24 2009 Rex Dieter - 0.18.2-1 - exiv2-0.18.2 - drop visibility patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 17 Apr 2009 19:53:19 -0000 1.12 +++ .cvsignore 24 Jul 2009 20:21:40 -0000 1.13 @@ -1 +1 @@ -exiv2-0.18.1.tar.gz +exiv2-0.18.2.tar.gz Index: exiv2.spec =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/devel/exiv2.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- exiv2.spec 17 Apr 2009 19:53:19 -0000 1.25 +++ exiv2.spec 24 Jul 2009 20:21:40 -0000 1.26 @@ -6,7 +6,7 @@ Summary: Exif and Iptc metadata manipulation library Name: exiv2 -Version: 0.18.1 +Version: 0.18.2 Release: 1%{?dist} License: GPLv2+ @@ -69,7 +69,8 @@ methods for Exif thumbnails, classes to %setup -q -n %{name}-%{version}%{?pre:-%{pre}} %patch1 -p1 -b .deps -%patch2 -p1 -b .visibility +## drop for now, seems no longer needed as of 0.18.2 +#patch2 -p1 -b .visibility mkdir doc/html @@ -130,6 +131,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 0.18.2-1 +- exiv2-0.18.2 +- drop visibility patch + * Fri Apr 17 2009 Rex Dieter - 0.18.1-1 - exiv2-0.18.1 - drop -fvisibility-inlines-hidden (#496050) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 17 Apr 2009 19:53:20 -0000 1.12 +++ sources 24 Jul 2009 20:21:40 -0000 1.13 @@ -1 +1 @@ -744f06b3a2beeb2341f30b157cbd8e7e exiv2-0.18.1.tar.gz +300cc55e098d7ff7560b4c6992282c53 exiv2-0.18.2.tar.gz From jkeating at fedoraproject.org Fri Jul 24 20:21:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:21:42 +0000 (UTC) Subject: rpms/django-tagging/devel django-tagging.spec,1.2,1.3 Message-ID: <20090724202142.D640211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/django-tagging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28445 Modified Files: django-tagging.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: django-tagging.spec =================================================================== RCS file: /cvs/pkgs/rpms/django-tagging/devel/django-tagging.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- django-tagging.spec 4 Mar 2009 13:52:06 -0000 1.2 +++ django-tagging.spec 24 Jul 2009 20:21:42 -0000 1.3 @@ -4,7 +4,7 @@ Name: django-tagging Version: 0.3 -Release: 1%{?dist}.20080217svn%{alphatag} +Release: 2%{?dist}.20080217svn%{alphatag} Summary: A generic tagging application for Django projects Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-2.20080217svnr154 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Ignacio Vazquez-Abrams 0.3-1.20080217svnr154 - Add Requires: Django From jkeating at fedoraproject.org Fri Jul 24 20:21:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:21:56 +0000 (UTC) Subject: rpms/djview4/devel djview4.spec,1.4,1.5 Message-ID: <20090724202156.EB1EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/djview4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28662 Modified Files: djview4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: djview4.spec =================================================================== RCS file: /cvs/pkgs/rpms/djview4/devel/djview4.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- djview4.spec 24 Feb 2009 12:04:33 -0000 1.4 +++ djview4.spec 24 Jul 2009 20:21:56 -0000 1.5 @@ -1,7 +1,7 @@ Summary: DjVu viewer Name: djview4 Version: 4.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Publishing URL: http://djvu.sourceforge.net/djview4.html @@ -70,6 +70,9 @@ fi %{_datadir}/icons/hicolor/32x32/apps/djvulibre-%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:22:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:22:10 +0000 (UTC) Subject: rpms/djvulibre/devel djvulibre.spec,1.29,1.30 Message-ID: <20090724202210.B897F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/djvulibre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28809 Modified Files: djvulibre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: djvulibre.spec =================================================================== RCS file: /cvs/pkgs/rpms/djvulibre/devel/djvulibre.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- djvulibre.spec 24 Feb 2009 12:05:35 -0000 1.29 +++ djvulibre.spec 24 Jul 2009 20:22:10 -0000 1.30 @@ -1,7 +1,7 @@ Summary: DjVu viewers, encoders, and utilities Name: djvulibre Version: 3.5.21 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Publishing URL: http://djvu.sourceforge.net/ @@ -144,6 +144,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.5.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:22:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:22:24 +0000 (UTC) Subject: rpms/dkim-milter/devel dkim-milter.spec,1.6,1.7 Message-ID: <20090724202224.AF54A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dkim-milter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28979 Modified Files: dkim-milter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dkim-milter.spec =================================================================== RCS file: /cvs/pkgs/rpms/dkim-milter/devel/dkim-milter.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dkim-milter.spec 24 Feb 2009 12:06:33 -0000 1.6 +++ dkim-milter.spec 24 Jul 2009 20:22:24 -0000 1.7 @@ -1,6 +1,6 @@ Name: dkim-milter Version: 2.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DomainKeys Identified Mail sender authentication sendmail milter Group: System Environment/Daemons License: Sendmail @@ -124,6 +124,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:22:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:22:39 +0000 (UTC) Subject: rpms/dkms/devel dkms.spec,1.21,1.22 Message-ID: <20090724202239.06A9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dkms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29200 Modified Files: dkms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dkms.spec =================================================================== RCS file: /cvs/pkgs/rpms/dkms/devel/dkms.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- dkms.spec 13 May 2009 16:22:38 -0000 1.21 +++ dkms.spec 24 Jul 2009 20:22:38 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Dynamic Kernel Module Support Framework Name: dkms Version: 2.0.21.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base BuildArch: noarch @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT [ $1 -lt 1 ] && /sbin/chkconfig dkms_autoinstaller off ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.21.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Matt Domsch - 2.0.21.1-2 - add Requires: lsb From jkeating at fedoraproject.org Fri Jul 24 20:22:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:22:52 +0000 (UTC) Subject: rpms/dmidecode/devel dmidecode.spec,1.36,1.37 Message-ID: <20090724202252.7E2ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dmidecode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29415 Modified Files: dmidecode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dmidecode.spec =================================================================== RCS file: /cvs/pkgs/rpms/dmidecode/devel/dmidecode.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- dmidecode.spec 27 Feb 2009 19:31:15 -0000 1.36 +++ dmidecode.spec 24 Jul 2009 20:22:52 -0000 1.37 @@ -1,7 +1,7 @@ Summary: Tool to analyse BIOS DMI data Name: dmidecode Version: 2.10 -Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist}.1 +Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist}.2 Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.10-1.36.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Matthias Clasen - Build for i586 From jkeating at fedoraproject.org Fri Jul 24 20:23:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:23:06 +0000 (UTC) Subject: rpms/dmraid/devel dmraid.spec,1.94,1.95 Message-ID: <20090724202306.D26FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dmraid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29580 Modified Files: dmraid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dmraid.spec =================================================================== RCS file: /cvs/pkgs/rpms/dmraid/devel/dmraid.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- dmraid.spec 17 Apr 2009 09:33:05 -0000 1.94 +++ dmraid.spec 24 Jul 2009 20:23:06 -0000 1.95 @@ -1,7 +1,7 @@ Summary: Device-mapper RAID tool and library Name: dmraid Version: 1.0.0.rc15 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://people.redhat.com/heinzm/sw/dmraid @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) %{_libdir}/libdmraid.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0.rc15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Hans de Goede - 1.0.0.rc15-7 - Fix activation of isw raid sets when the disks have serialnumber longer then 16 characters (#490121) From jkeating at fedoraproject.org Fri Jul 24 20:23:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:23:20 +0000 (UTC) Subject: rpms/dnrd/devel dnrd.spec,1.2,1.3 Message-ID: <20090724202320.CFB3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29732 Modified Files: dnrd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnrd/devel/dnrd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dnrd.spec 24 Feb 2009 12:10:24 -0000 1.2 +++ dnrd.spec 24 Jul 2009 20:23:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: dnrd Version: 2.20.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A caching, forwarding DNS proxy server Group: System Environment/Daemons @@ -63,6 +63,9 @@ fi %config(noreplace) %{_sysconfdir}/%{name}/dnrd.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.20.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.20.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Fri Jul 24 20:23:42 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Fri, 24 Jul 2009 20:23:42 +0000 (UTC) Subject: rpms/exiv2/F-11 .cvsignore, 1.12, 1.13 exiv2.spec, 1.25, 1.26 sources, 1.12, 1.13 Message-ID: <20090724202342.2602811C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/exiv2/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29981 Modified Files: .cvsignore exiv2.spec sources Log Message: * Fri Jul 24 2009 Rex Dieter - 0.18.2-1 - exiv2-0.18.2 - drop visibility patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 17 Apr 2009 19:53:18 -0000 1.12 +++ .cvsignore 24 Jul 2009 20:23:41 -0000 1.13 @@ -1 +1 @@ -exiv2-0.18.1.tar.gz +exiv2-0.18.2.tar.gz Index: exiv2.spec =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/F-11/exiv2.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- exiv2.spec 17 Apr 2009 19:53:18 -0000 1.25 +++ exiv2.spec 24 Jul 2009 20:23:42 -0000 1.26 @@ -6,7 +6,7 @@ Summary: Exif and Iptc metadata manipulation library Name: exiv2 -Version: 0.18.1 +Version: 0.18.2 Release: 1%{?dist} License: GPLv2+ @@ -69,7 +69,8 @@ methods for Exif thumbnails, classes to %setup -q -n %{name}-%{version}%{?pre:-%{pre}} %patch1 -p1 -b .deps -%patch2 -p1 -b .visibility +## drop for now, seems no longer needed as of 0.18.2 +#patch2 -p1 -b .visibility mkdir doc/html @@ -130,6 +131,10 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Rex Dieter - 0.18.2-1 +- exiv2-0.18.2 +- drop visibility patch + * Fri Apr 17 2009 Rex Dieter - 0.18.1-1 - exiv2-0.18.1 - drop -fvisibility-inlines-hidden (#496050) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/exiv2/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 17 Apr 2009 19:53:18 -0000 1.12 +++ sources 24 Jul 2009 20:23:42 -0000 1.13 @@ -1 +1 @@ -744f06b3a2beeb2341f30b157cbd8e7e exiv2-0.18.1.tar.gz +300cc55e098d7ff7560b4c6992282c53 exiv2-0.18.2.tar.gz From jkeating at fedoraproject.org Fri Jul 24 20:23:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:23:35 +0000 (UTC) Subject: rpms/dnscap/devel dnscap.spec,1.8,1.9 Message-ID: <20090724202335.E35C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnscap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29896 Modified Files: dnscap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnscap.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnscap/devel/dnscap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- dnscap.spec 30 Mar 2009 15:18:42 -0000 1.8 +++ dnscap.spec 24 Jul 2009 20:23:35 -0000 1.9 @@ -1,6 +1,6 @@ Name: dnscap Version: 1.0 -Release: 0.9.20070807cvs%{?dist} +Release: 0.10.20070807cvs%{?dist} Summary: DNS traffic capture utility Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/dnscap.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.10.20070807cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Adam Tkac 1.0-0.9.20070807cvs - remove hardcoded dependencies on libpcap and bind-libs - fix building with the latest gcc From jkeating at fedoraproject.org Fri Jul 24 20:23:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:23:50 +0000 (UTC) Subject: rpms/dnsjava/devel dnsjava.spec,1.3,1.4 Message-ID: <20090724202350.155E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnsjava/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30101 Modified Files: dnsjava.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnsjava.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnsjava/devel/dnsjava.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dnsjava.spec 19 Apr 2009 06:51:29 -0000 1.3 +++ dnsjava.spec 24 Jul 2009 20:23:49 -0000 1.4 @@ -4,7 +4,7 @@ Name: dnsjava Version: 2.0.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Java DNS implementation License: BSD and MIT URL: http://www.dnsjava.org/ @@ -99,6 +99,9 @@ ant -Dj2se.javadoc=%{_javadocdir}/java r %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Pavel Alexeev - 2.0.6-6 - Fix test condition logick for %%check From jkeating at fedoraproject.org Fri Jul 24 20:24:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:24:05 +0000 (UTC) Subject: rpms/dnsmasq/devel dnsmasq.spec,1.39,1.40 Message-ID: <20090724202405.225ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnsmasq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30278 Modified Files: dnsmasq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnsmasq.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnsmasq/devel/dnsmasq.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- dnsmasq.spec 10 Jun 2009 12:36:25 -0000 1.39 +++ dnsmasq.spec 24 Jul 2009 20:24:04 -0000 1.40 @@ -11,7 +11,7 @@ Name: dnsmasq Version: 2.48 -Release: 1%{?extraversion}%{?dist} +Release: 2%{?extraversion}%{?dist} Summary: A lightweight DHCP/caching DNS server Group: System Environment/Daemons @@ -109,6 +109,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.48-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Patrick "Jima" Laughton 2.48-1 - Bugfix/feature enhancement update - Fixing BZ#494094 From jkeating at fedoraproject.org Fri Jul 24 19:39:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:39:10 +0000 (UTC) Subject: rpms/crm114/devel crm114.spec,1.9,1.10 Message-ID: <20090724193910.A569C11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crm114/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32052 Modified Files: crm114.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crm114.spec =================================================================== RCS file: /cvs/pkgs/rpms/crm114/devel/crm114.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- crm114.spec 24 Feb 2009 09:41:58 -0000 1.9 +++ crm114.spec 24 Jul 2009 19:39:10 -0000 1.10 @@ -1,6 +1,6 @@ %define cvsver 20080703 %define codename BlameVT -%define rel 9 +%define rel 10 Summary: CRM114 Bayesian Spam Detector Name: crm114 @@ -62,6 +62,9 @@ make megatest %{_datadir}/emacs/site-lisp/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-1.10.20080703 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0-1.9.20080703 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:24:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:24:20 +0000 (UTC) Subject: rpms/dnsperf/devel dnsperf.spec,1.8,1.9 Message-ID: <20090724202420.6F75B11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnsperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30467 Modified Files: dnsperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnsperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnsperf/devel/dnsperf.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- dnsperf.spec 19 Jun 2009 15:37:15 -0000 1.8 +++ dnsperf.spec 24 Jul 2009 20:24:20 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Benchmarking authorative and recursing DNS servers Name: dnsperf Version: 1.0.1.0 -Release: 10%{?dist} +Release: 11%{?dist} License: MIT Url: http://www.nominum.com/services/measurement_tools.php Source: ftp://ftp.nominum.com/pub/nominum/dnsperf/%{version}/dnsperf-src-%{version}-1.tar.gz @@ -41,6 +41,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Adam Tkac - 1.0.1.0-10 - rebuild again From jkeating at fedoraproject.org Fri Jul 24 20:24:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:24:34 +0000 (UTC) Subject: rpms/dnssec-conf/devel dnssec-conf.spec,1.14,1.15 Message-ID: <20090724202434.E196D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnssec-conf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30617 Modified Files: dnssec-conf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnssec-conf.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnssec-conf/devel/dnssec-conf.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- dnssec-conf.spec 15 Jun 2009 00:07:50 -0000 1.14 +++ dnssec-conf.spec 24 Jul 2009 20:24:34 -0000 1.15 @@ -1,7 +1,7 @@ Summary: DNSSEC and DLV configuration and priming tool Name: dnssec-conf Version: 1.21 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Url: http://www.xelerance.com/software/dnssec-conf/ Source: http://www.xelerance.com/software/%{name}/%{name}-%{version}.tar.gz @@ -54,6 +54,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Paul Wouters - 1.21-1 - upgraded to 1.21 From jkeating at fedoraproject.org Fri Jul 24 19:40:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:40:28 +0000 (UTC) Subject: rpms/crossfire-client/devel crossfire-client.spec,1.11,1.12 Message-ID: <20090724194028.D9BBB11C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crossfire-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv879 Modified Files: crossfire-client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crossfire-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/crossfire-client/devel/crossfire-client.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- crossfire-client.spec 24 Feb 2009 09:46:34 -0000 1.11 +++ crossfire-client.spec 24 Jul 2009 19:40:28 -0000 1.12 @@ -1,6 +1,6 @@ Name: crossfire-client Version: 1.11.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Client for connecting to crossfire servers Group: Amusements/Games License: GPLv2+ @@ -108,6 +108,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 19:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:39:27 +0000 (UTC) Subject: rpms/cronie/devel cronie.spec,1.21,1.22 Message-ID: <20090724193927.DB9F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cronie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32248 Modified Files: cronie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: cronie.spec =================================================================== RCS file: /cvs/pkgs/rpms/cronie/devel/cronie.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- cronie.spec 20 Jul 2009 18:53:47 -0000 1.21 +++ cronie.spec 24 Jul 2009 19:39:27 -0000 1.22 @@ -6,7 +6,7 @@ Summary: Cron daemon for executing programs at set times Name: cronie Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT and BSD and GPLv2 Group: System Environment/Base URL: https://fedorahosted.org/cronie @@ -151,6 +151,9 @@ cp -a /var/lock/subsys/crond /var/lock/s %{_mandir}/man8/anacron.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Marcela Ma?l??ov? - 1.4-2 - merge cronie and anacron in new release of cronie - obsolete/provide anacron in spec From jkeating at fedoraproject.org Fri Jul 24 19:40:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 19:40:43 +0000 (UTC) Subject: rpms/crossfire-maps/devel crossfire-maps.spec,1.9,1.10 Message-ID: <20090724194043.34FD211C04D7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crossfire-maps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1259 Modified Files: crossfire-maps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crossfire-maps.spec =================================================================== RCS file: /cvs/pkgs/rpms/crossfire-maps/devel/crossfire-maps.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- crossfire-maps.spec 24 Feb 2009 09:47:28 -0000 1.9 +++ crossfire-maps.spec 24 Jul 2009 19:40:42 -0000 1.10 @@ -1,6 +1,6 @@ Name: crossfire-maps Version: 1.11.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Map files for the crossfire server Group: Amusements/Games @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/crossfire/maps %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:24:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:24:49 +0000 (UTC) Subject: rpms/dnssec-tools/devel dnssec-tools.spec,1.25,1.26 Message-ID: <20090724202449.A94A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnssec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30791 Modified Files: dnssec-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnssec-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnssec-tools/devel/dnssec-tools.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- dnssec-tools.spec 1 Apr 2009 10:15:17 -0000 1.25 +++ dnssec-tools.spec 24 Jul 2009 20:24:49 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A suite of tools for managing dnssec aware DNS usage Name: dnssec-tools Version: 1.5 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Base URL: http://www.dnssec-tools.org/ @@ -287,6 +287,9 @@ rm -rf %{buildroot} %{_mandir}/man3/val_freeaddrinfo.3.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Michael Schwendt - 1.5-2 - Fix unowned directories (#483339). From jkeating at fedoraproject.org Fri Jul 24 20:25:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:25:03 +0000 (UTC) Subject: rpms/dnstracer/devel dnstracer.spec,1.2,1.3 Message-ID: <20090724202503.A056611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dnstracer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30927 Modified Files: dnstracer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dnstracer.spec =================================================================== RCS file: /cvs/pkgs/rpms/dnstracer/devel/dnstracer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dnstracer.spec 24 Feb 2009 12:16:04 -0000 1.2 +++ dnstracer.spec 24 Jul 2009 20:25:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: dnstracer Version: 1.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Trace a DNS record to its start of authority Group: Applications/Internet License: BSD @@ -35,6 +35,9 @@ servers which know the data. %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:25:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:25:17 +0000 (UTC) Subject: rpms/docbook-dtds/devel docbook-dtds.spec,1.32,1.33 Message-ID: <20090724202517.E260D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook-dtds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31091 Modified Files: docbook-dtds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook-dtds.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook-dtds/devel/docbook-dtds.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- docbook-dtds.spec 11 May 2009 10:04:06 -0000 1.32 +++ docbook-dtds.spec 24 Jul 2009 20:25:17 -0000 1.33 @@ -3,7 +3,7 @@ Name: docbook-dtds Version: 1.0 -Release: 47%{?dist} +Release: 48%{?dist} Group: Applications/Text Summary: SGML and XML document type definitions for DocBook @@ -403,6 +403,9 @@ do done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-48 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Ondrej Vasik - 1.0-47 - add requires(post) for /bin/chmod (#498680) From jkeating at fedoraproject.org Fri Jul 24 20:25:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:25:31 +0000 (UTC) Subject: rpms/docbook-simple/devel docbook-simple.spec,1.11,1.12 Message-ID: <20090724202531.C1CA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook-simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31261 Modified Files: docbook-simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook-simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook-simple/devel/docbook-simple.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- docbook-simple.spec 24 Feb 2009 12:17:50 -0000 1.11 +++ docbook-simple.spec 24 Jul 2009 20:25:31 -0000 1.12 @@ -1,6 +1,6 @@ Name: docbook-simple Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Text Summary: Simplified DocBook is a small subset of the DocBook XML DTD License: Freely redistributable without restriction @@ -157,6 +157,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:25:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:25:45 +0000 (UTC) Subject: rpms/docbook-slides/devel docbook-slides.spec,1.12,1.13 Message-ID: <20090724202545.C2E5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook-slides/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31399 Modified Files: docbook-slides.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook-slides.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook-slides/devel/docbook-slides.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- docbook-slides.spec 24 Feb 2009 12:18:43 -0000 1.12 +++ docbook-slides.spec 24 Jul 2009 20:25:45 -0000 1.13 @@ -2,7 +2,7 @@ Summary: DocBook Slides document type and stylesheets Name: docbook-slides Version: 3.4.0 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: Applications/Text URL: http://sourceforge.net/projects/docbook @@ -155,6 +155,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:25:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:25:59 +0000 (UTC) Subject: rpms/docbook-style-dsssl/devel docbook-style-dsssl.spec,1.19,1.20 Message-ID: <20090724202559.DC68F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook-style-dsssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31542 Modified Files: docbook-style-dsssl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook-style-dsssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook-style-dsssl/devel/docbook-style-dsssl.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- docbook-style-dsssl.spec 24 Feb 2009 12:19:37 -0000 1.19 +++ docbook-style-dsssl.spec 24 Jul 2009 20:25:59 -0000 1.20 @@ -1,6 +1,6 @@ Name: docbook-style-dsssl Version: 1.79 -Release: 6%{?dist} +Release: 7%{?dist} Group: Applications/Text Summary: Norman Walsh's modular stylesheets for DocBook @@ -87,6 +87,9 @@ fi exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.79-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.79-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:26:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:26:14 +0000 (UTC) Subject: rpms/docbook-style-xsl/devel docbook-style-xsl.spec,1.63,1.64 Message-ID: <20090724202614.017CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31691 Modified Files: docbook-style-xsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook-style-xsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook-style-xsl/devel/docbook-style-xsl.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- docbook-style-xsl.spec 23 Jul 2009 08:49:17 -0000 1.63 +++ docbook-style-xsl.spec 24 Jul 2009 20:26:13 -0000 1.64 @@ -1,6 +1,6 @@ Name: docbook-style-xsl Version: 1.75.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Summary: Norman Walsh's XSL stylesheets for DocBook XML @@ -117,6 +117,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.75.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Ondrej Vasik 1.75.3-3 - upstream changed changed doc tarball after release (empty reference pdf file in old tarball) From jkeating at fedoraproject.org Fri Jul 24 20:26:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:26:29 +0000 (UTC) Subject: rpms/docbook2X/devel docbook2X.spec,1.10,1.11 Message-ID: <20090724202629.02CE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook2X/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31856 Modified Files: docbook2X.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook2X.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook2X/devel/docbook2X.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- docbook2X.spec 24 Feb 2009 12:22:25 -0000 1.10 +++ docbook2X.spec 24 Jul 2009 20:26:28 -0000 1.11 @@ -1,6 +1,6 @@ Name: docbook2X Version: 0.8.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert docbook into man and Texinfo Group: Applications/Text @@ -77,6 +77,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:26:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:26:43 +0000 (UTC) Subject: rpms/docbook5-schemas/devel docbook5-schemas.spec,1.3,1.4 Message-ID: <20090724202643.684C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook5-schemas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32025 Modified Files: docbook5-schemas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook5-schemas.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook5-schemas/devel/docbook5-schemas.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- docbook5-schemas.spec 24 Feb 2009 12:23:16 -0000 1.3 +++ docbook5-schemas.spec 24 Jul 2009 20:26:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: docbook5-schemas Version: 5.0 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Summary: Norman Walsh's schemas (DTD, Relax NG, W3C schema) for Docbook 5.X From jkeating at fedoraproject.org Fri Jul 24 20:26:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:26:56 +0000 (UTC) Subject: rpms/docbook5-style-xsl/devel docbook5-style-xsl.spec,1.10,1.11 Message-ID: <20090724202656.B1C4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docbook5-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32189 Modified Files: docbook5-style-xsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docbook5-style-xsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/docbook5-style-xsl/devel/docbook5-style-xsl.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- docbook5-style-xsl.spec 22 Jul 2009 01:15:18 -0000 1.10 +++ docbook5-style-xsl.spec 24 Jul 2009 20:26:56 -0000 1.11 @@ -1,6 +1,6 @@ Name: docbook5-style-xsl Version: 1.75.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Summary: Norman Walsh's XSL stylesheets for DocBook 5.X @@ -88,6 +88,9 @@ if [ "$1" = 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.75.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Ondrej Vasik 1.75.2-2 - upstream changed tarballs after release From jkeating at fedoraproject.org Fri Jul 24 20:27:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:27:11 +0000 (UTC) Subject: rpms/docker/devel docker.spec,1.4,1.5 Message-ID: <20090724202711.6E8D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/docker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32351 Modified Files: docker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: docker.spec =================================================================== RCS file: /cvs/pkgs/rpms/docker/devel/docker.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- docker.spec 24 Feb 2009 12:25:05 -0000 1.4 +++ docker.spec 24 Jul 2009 20:27:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: docker Version: 1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: KDE and GNOME2 system tray replacement docking application Group: User Interface/X @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:27:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:27:26 +0000 (UTC) Subject: rpms/dogtail/devel dogtail.spec,1.12,1.13 Message-ID: <20090724202726.ECDC611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dogtail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32546 Modified Files: dogtail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dogtail.spec =================================================================== RCS file: /cvs/pkgs/rpms/dogtail/devel/dogtail.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dogtail.spec 24 Feb 2009 12:26:01 -0000 1.12 +++ dogtail.spec 24 Jul 2009 20:27:26 -0000 1.13 @@ -1,7 +1,7 @@ Summary: GUI test tool and automation framework Name: dogtail Version: 0.6.90 -Release: 3.401%{?dist} +Release: 4.401%{?dist} License: GPLv2 Group: User Interface/X URL: http://people.redhat.com/zcerza/dogtail/ @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.90-4.401 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.90-3.401 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:27:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:27:40 +0000 (UTC) Subject: rpms/dom4j/devel dom4j.spec,1.5,1.6 Message-ID: <20090724202740.B716111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dom4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32709 Modified Files: dom4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dom4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/dom4j/devel/dom4j.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- dom4j.spec 24 Feb 2009 12:26:56 -0000 1.5 +++ dom4j.spec 24 Jul 2009 20:27:40 -0000 1.6 @@ -31,7 +31,7 @@ Summary: Open Source XML framework for Java Name: dom4j Version: 1.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 0 License: BSD URL: http://www.dom4j.org/ @@ -221,6 +221,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:27:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:27:57 +0000 (UTC) Subject: rpms/doodle/devel doodle.spec,1.5,1.6 Message-ID: <20090724202757.ACD2E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/doodle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv424 Modified Files: doodle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: doodle.spec =================================================================== RCS file: /cvs/pkgs/rpms/doodle/devel/doodle.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- doodle.spec 24 Feb 2009 12:27:52 -0000 1.5 +++ doodle.spec 24 Jul 2009 20:27:57 -0000 1.6 @@ -1,6 +1,6 @@ Name: doodle Version: 0.6.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Doodle is a tool to quickly search the documents on a computer Group: Applications/File @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:28:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:28:11 +0000 (UTC) Subject: rpms/dopewars/devel dopewars.spec,1.6,1.7 Message-ID: <20090724202811.B59FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dopewars/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv585 Modified Files: dopewars.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dopewars.spec =================================================================== RCS file: /cvs/pkgs/rpms/dopewars/devel/dopewars.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dopewars.spec 24 Feb 2009 12:28:45 -0000 1.6 +++ dopewars.spec 24 Jul 2009 20:28:11 -0000 1.7 @@ -4,7 +4,7 @@ Summary: A drug dealing game Name: dopewars Version: 1.5.12 -Release: 6%{?dist} +Release: 7%{?dist} URL: http://dopewars.sourceforge.net/ License: GPLv2+ Group: Amusements/Games @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_libdir}/dopewars/libsound_sdl.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.12-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5.12-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:28:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:28:25 +0000 (UTC) Subject: rpms/dos2unix/devel dos2unix.spec,1.35,1.36 Message-ID: <20090724202825.C5D1B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dos2unix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv724 Modified Files: dos2unix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dos2unix.spec =================================================================== RCS file: /cvs/pkgs/rpms/dos2unix/devel/dos2unix.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- dos2unix.spec 24 Feb 2009 12:29:41 -0000 1.35 +++ dos2unix.spec 24 Jul 2009 20:28:25 -0000 1.36 @@ -1,7 +1,7 @@ Summary: Text file format converter Name: dos2unix Version: 3.1 -Release: 35%{?dist} +Release: 36%{?dist} Group: Applications/Text License: BSD @@ -67,6 +67,9 @@ ln -s dos2unix.1 $RPM_BUILD_ROOT%{_mandi rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:28:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:28:40 +0000 (UTC) Subject: rpms/dosbox/devel dosbox.spec,1.34,1.35 Message-ID: <20090724202840.BD9E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dosbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv904 Modified Files: dosbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dosbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/dosbox/devel/dosbox.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- dosbox.spec 30 May 2009 16:13:31 -0000 1.34 +++ dosbox.spec 24 Jul 2009 20:28:40 -0000 1.35 @@ -1,6 +1,6 @@ Name: dosbox Version: 0.73 -Release: 1%{?dist} +Release: 2%{?dist} Summary: x86/DOS emulator with sound and graphics @@ -73,6 +73,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.73-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Andreas Bierfert - 0.73-1 - version upgrade From jkeating at fedoraproject.org Fri Jul 24 20:28:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:28:54 +0000 (UTC) Subject: rpms/dosfstools/devel dosfstools.spec,1.37,1.38 Message-ID: <20090724202854.C451B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dosfstools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1048 Modified Files: dosfstools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dosfstools.spec =================================================================== RCS file: /cvs/pkgs/rpms/dosfstools/devel/dosfstools.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- dosfstools.spec 24 Feb 2009 12:31:35 -0000 1.37 +++ dosfstools.spec 24 Jul 2009 20:28:54 -0000 1.38 @@ -1,7 +1,7 @@ Name: dosfstools Summary: Utilities for making and checking MS-DOS FAT filesystems on Linux Version: 3.0.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/System Source0: http://www.daniel-baumann.ch/software/dosfstools/%{name}-%{version}.tar.gz @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:29:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:29:08 +0000 (UTC) Subject: rpms/dot2tex/devel dot2tex.spec,1.4,1.5 Message-ID: <20090724202908.B3C1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dot2tex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1214 Modified Files: dot2tex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dot2tex.spec =================================================================== RCS file: /cvs/pkgs/rpms/dot2tex/devel/dot2tex.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dot2tex.spec 24 Feb 2009 12:32:34 -0000 1.4 +++ dot2tex.spec 24 Jul 2009 20:29:08 -0000 1.5 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: dot2tex Version: 2.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Graphviz to LaTeX converter Group: Applications/Publishing License: MIT @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.8.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:29:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:29:23 +0000 (UTC) Subject: rpms/dotconf/devel dotconf.spec,1.3,1.4 Message-ID: <20090724202923.B0BCA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dotconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1445 Modified Files: dotconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dotconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/dotconf/devel/dotconf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dotconf.spec 24 Feb 2009 12:33:38 -0000 1.3 +++ dotconf.spec 24 Jul 2009 20:29:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: dotconf Version: 1.0.13 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Libraries to parse configuration files Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/dotconf.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:29:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:29:38 +0000 (UTC) Subject: rpms/dovecot/devel dovecot.spec,1.129,1.130 Message-ID: <20090724202938.58A6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dovecot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1618 Modified Files: dovecot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dovecot.spec =================================================================== RCS file: /cvs/pkgs/rpms/dovecot/devel/dovecot.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- dovecot.spec 23 Jul 2009 06:46:29 -0000 1.129 +++ dovecot.spec 24 Jul 2009 20:29:38 -0000 1.130 @@ -2,7 +2,7 @@ Summary: Secure imap and pop3 server Name: dovecot Epoch: 1 Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT and LGPLv2 and BSD with advertising Group: System Environment/Daemons @@ -436,6 +436,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Michal Hlavinka - 1:1.2.1-2 - updated sieve plugin to 0.1.9 From jkeating at fedoraproject.org Fri Jul 24 20:29:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:29:51 +0000 (UTC) Subject: rpms/doxygen/devel doxygen.spec,1.65,1.66 Message-ID: <20090724202951.BB90C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/doxygen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1784 Modified Files: doxygen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: doxygen.spec =================================================================== RCS file: /cvs/pkgs/rpms/doxygen/devel/doxygen.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- doxygen.spec 3 Jul 2009 10:41:35 -0000 1.65 +++ doxygen.spec 24 Jul 2009 20:29:51 -0000 1.66 @@ -6,7 +6,7 @@ Summary: A documentation system for C/C++. Name: doxygen Version: 1.5.9 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz Patch1: doxygen-1.5.8-config.patch @@ -103,6 +103,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.5.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Than Ngo - 1.5.9-1 - 1.5.9 From jkeating at fedoraproject.org Fri Jul 24 20:30:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:30:08 +0000 (UTC) Subject: rpms/dracut/devel dracut.spec,1.4,1.5 Message-ID: <20090724203008.C602811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1952 Modified Files: dracut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dracut.spec 17 Jul 2009 14:02:20 -0000 1.4 +++ dracut.spec 24 Jul 2009 20:30:08 -0000 1.5 @@ -13,7 +13,7 @@ Name: dracut Version: 0.5 -Release: 1%{?rdist} +Release: 2%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base License: GPLv2+ @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.generic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Harald Hoyer 0.5-1 - version 0.5 From jkeating at fedoraproject.org Fri Jul 24 20:30:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:30:23 +0000 (UTC) Subject: rpms/dracut-modules-olpc/devel dracut-modules-olpc.spec,1.1,1.2 Message-ID: <20090724203023.A4EDC11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dracut-modules-olpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2123 Modified Files: dracut-modules-olpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dracut-modules-olpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut-modules-olpc/devel/dracut-modules-olpc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dracut-modules-olpc.spec 17 Jul 2009 16:33:50 -0000 1.1 +++ dracut-modules-olpc.spec 24 Jul 2009 20:30:23 -0000 1.2 @@ -1,6 +1,6 @@ Name: dracut-modules-olpc Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC modules for dracut initramfs Group: System Environment/Base @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Daniel Drake - 0.2.1-1 - Initial import From jkeating at fedoraproject.org Fri Jul 24 20:30:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:30:38 +0000 (UTC) Subject: rpms/drapes/devel drapes.spec,1.3,1.4 Message-ID: <20090724203038.3627311C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drapes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2278 Modified Files: drapes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drapes.spec =================================================================== RCS file: /cvs/pkgs/rpms/drapes/devel/drapes.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drapes.spec 24 Feb 2009 12:36:25 -0000 1.3 +++ drapes.spec 24 Jul 2009 20:30:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: drapes Version: 0.5.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A wallpaper manager application for the GNOME desktop Group: Applications/Multimedia @@ -94,6 +94,9 @@ touch --no-create %{_datadir}/icons/hico %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:30:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:30:53 +0000 (UTC) Subject: rpms/drascula/devel drascula.spec,1.4,1.5 Message-ID: <20090724203053.BE02111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drascula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2469 Modified Files: drascula.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drascula.spec =================================================================== RCS file: /cvs/pkgs/rpms/drascula/devel/drascula.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- drascula.spec 8 Apr 2009 19:02:15 -0000 1.4 +++ drascula.spec 24 Jul 2009 20:30:53 -0000 1.5 @@ -1,6 +1,6 @@ Name: drascula Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The Vampire Strikes Back Group: Amusements/Games # For further discussion on distribution rights see: @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Lucian Langa - 1.0-5 - fix summary - remove engine data drascula.dat From jkeating at fedoraproject.org Fri Jul 24 20:31:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:31:13 +0000 (UTC) Subject: rpms/drascula-international/devel drascula-international.spec, 1.1, 1.2 Message-ID: <20090724203113.C9E4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drascula-international/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2644 Modified Files: drascula-international.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drascula-international.spec =================================================================== RCS file: /cvs/pkgs/rpms/drascula-international/devel/drascula-international.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- drascula-international.spec 18 May 2009 08:41:29 -0000 1.1 +++ drascula-international.spec 24 Jul 2009 20:31:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: drascula-international Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Subtitles for Drascula: The Vampire Strikes Back Group: Amusements/Games # For further discussion on distribution rights see: @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Hans de Goede 1.0-2 - Fixup license tag, this was never even close to being licensed under GPLv2+, but it is freely redistributable (#494199) From jkeating at fedoraproject.org Fri Jul 24 20:31:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:31:27 +0000 (UTC) Subject: rpms/drascula-music/devel drascula-music.spec,1.1,1.2 Message-ID: <20090724203127.CA33D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drascula-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2790 Modified Files: drascula-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drascula-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/drascula-music/devel/drascula-music.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- drascula-music.spec 18 May 2009 08:41:41 -0000 1.1 +++ drascula-music.spec 24 Jul 2009 20:31:27 -0000 1.2 @@ -1,6 +1,6 @@ Name: drascula-music Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Background music for Drascula: The Vampire Strikes Back Group: Amusements/Games # For further discussion on distribution rights see: @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Hans de Goede 1.0-2 - Fixup license tag, this was never even close to being licensed under GPLv2+, but it is freely redistributable (#494197) From jkeating at fedoraproject.org Fri Jul 24 20:31:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:31:41 +0000 (UTC) Subject: rpms/drawtiming/devel drawtiming.spec,1.5,1.6 Message-ID: <20090724203141.D21E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drawtiming/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2930 Modified Files: drawtiming.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drawtiming.spec =================================================================== RCS file: /cvs/pkgs/rpms/drawtiming/devel/drawtiming.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- drawtiming.spec 14 Mar 2009 09:44:01 -0000 1.5 +++ drawtiming.spec 24 Jul 2009 20:31:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: drawtiming Version: 0.6.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A command line tool for generating timing diagrams Group: Applications/Engineering @@ -54,6 +54,9 @@ It can be used for VHDL or verilog prese %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Alex Lancaster - 0.6.2-5 - Rebuild for new ImageMagick soname From jkeating at fedoraproject.org Fri Jul 24 20:31:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:31:56 +0000 (UTC) Subject: rpms/drbdlinks/devel drbdlinks.spec,1.3,1.4 Message-ID: <20090724203156.16A1F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drbdlinks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3066 Modified Files: drbdlinks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drbdlinks.spec =================================================================== RCS file: /cvs/pkgs/rpms/drbdlinks/devel/drbdlinks.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drbdlinks.spec 24 May 2009 00:38:21 -0000 1.3 +++ drbdlinks.spec 24 Jul 2009 20:31:55 -0000 1.4 @@ -1,7 +1,7 @@ Summary: A program for managing links into a DRBD shared partition Name: drbdlinks Version: 1.18 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/System URL: http://www.tummy.com/Community/software/%{name}/ @@ -72,6 +72,9 @@ fi %{_localstatedir}/run/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Robert Scheck 1.18-1 - Upgrade to 1.18 From jkeating at fedoraproject.org Fri Jul 24 20:32:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:32:09 +0000 (UTC) Subject: rpms/drgeo/devel drgeo.spec,1.14,1.15 Message-ID: <20090724203209.AEB2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drgeo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3207 Modified Files: drgeo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drgeo.spec =================================================================== RCS file: /cvs/pkgs/rpms/drgeo/devel/drgeo.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- drgeo.spec 24 Feb 2009 12:39:23 -0000 1.14 +++ drgeo.spec 24 Jul 2009 20:32:09 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Interactive educational geometry software Name: drgeo Version: 1.1.0 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.ofset.org/drgeo @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_datadir}/applications/fedora-drgeo.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:32:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:32:23 +0000 (UTC) Subject: rpms/drgeo-doc/devel drgeo-doc.spec,1.6,1.7 Message-ID: <20090724203223.C984111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drgeo-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3339 Modified Files: drgeo-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drgeo-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/drgeo-doc/devel/drgeo-doc.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- drgeo-doc.spec 24 Feb 2009 12:40:20 -0000 1.6 +++ drgeo-doc.spec 24 Jul 2009 20:32:23 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Html documentation for drgeo Name: drgeo-doc Version: 1.6 -Release: 10%{?dist} +Release: 11%{?dist} License: GFDL Group: Applications/Engineering URL: http://www.ofset.org/drgeo @@ -38,6 +38,9 @@ rm -rf %{buildroot} %{_datadir}/drgeo/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:32:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:32:38 +0000 (UTC) Subject: rpms/driconf/devel driconf.spec,1.8,1.9 Message-ID: <20090724203238.364DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/driconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3476 Modified Files: driconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: driconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/driconf/devel/driconf.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- driconf.spec 24 Feb 2009 12:41:22 -0000 1.8 +++ driconf.spec 24 Jul 2009 20:32:38 -0000 1.9 @@ -2,7 +2,7 @@ Name: driconf Version: 0.9.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A configuration applet for the Direct Rendering Infrastructure Group: User Interface/X @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:32:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:32:52 +0000 (UTC) Subject: rpms/driftnet/devel driftnet.spec,1.14,1.15 Message-ID: <20090724203252.A96AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/driftnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3614 Modified Files: driftnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: driftnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/driftnet/devel/driftnet.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- driftnet.spec 24 Feb 2009 12:42:20 -0000 1.14 +++ driftnet.spec 24 Jul 2009 20:32:52 -0000 1.15 @@ -2,7 +2,7 @@ Name: driftnet License: GPLv2+ Group: Applications/Internet Version: 0.1.6 -Release: 18.20040426cvs%{?dist} +Release: 19.20040426cvs%{?dist} Summary: Network image sniffer URL: http://www.ex-parrot.com/~chris/driftnet/ Source0: driftnet-0.1.6-20040426cvs.tar.gz @@ -56,6 +56,9 @@ install -Dpm 644 %{SOURCE2} \ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.6-19.20040426cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.6-18.20040426cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:33:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:33:06 +0000 (UTC) Subject: rpms/dropbear/devel dropbear.spec,1.3,1.4 Message-ID: <20090724203306.A862211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dropbear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3751 Modified Files: dropbear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dropbear.spec =================================================================== RCS file: /cvs/pkgs/rpms/dropbear/devel/dropbear.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dropbear.spec 24 Feb 2009 12:43:21 -0000 1.3 +++ dropbear.spec 24 Jul 2009 20:33:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: dropbear Version: 0.50 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SSH2 server and client Group: Applications/Internet @@ -74,6 +74,9 @@ fi %attr(0644,root,root) %{_mandir}/man8/dropbearkey.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.50-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.50-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:33:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:33:19 +0000 (UTC) Subject: rpms/dropwatch/devel dropwatch.spec,1.1,1.2 Message-ID: <20090724203319.B0D4311C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dropwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3888 Modified Files: dropwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dropwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/dropwatch/devel/dropwatch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dropwatch.spec 24 Mar 2009 18:07:04 -0000 1.1 +++ dropwatch.spec 24 Jul 2009 20:33:19 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Kernel dropped packet monitor Name: dropwatch Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Source0: https://fedorahosted.org/releases/d/r/dropwatch/dropwatch-%{version}.tbz2 URL: http://fedorahosted.org/dropwatch License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Neil Horman 1.0-2 - Fixed up Errors found in package review (bz 491240) From jkeating at fedoraproject.org Fri Jul 24 20:33:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:33:33 +0000 (UTC) Subject: rpms/drpython/devel drpython.spec,1.6,1.7 Message-ID: <20090724203333.ED76611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drpython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4033 Modified Files: drpython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drpython.spec =================================================================== RCS file: /cvs/pkgs/rpms/drpython/devel/drpython.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- drpython.spec 14 Jun 2009 01:19:45 -0000 1.6 +++ drpython.spec 24 Jul 2009 20:33:33 -0000 1.7 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: drpython Version: 3.11.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A simple Python IDE designed with teaching in mind Epoch: 1 Group: Development/Tools @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{python_sitelib}/%{name}/postinst.py %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.11.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Marc Wiriadisastra - 1:3.11.0-5 - Fixed the drpython bin file to look for python instead of hard coding the python location From jkeating at fedoraproject.org Fri Jul 24 20:33:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:33:52 +0000 (UTC) Subject: rpms/drupal/devel drupal.spec,1.26,1.27 Message-ID: <20090724203352.3490711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drupal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4206 Modified Files: drupal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drupal.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal/devel/drupal.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- drupal.spec 2 Jul 2009 13:27:13 -0000 1.26 +++ drupal.spec 24 Jul 2009 20:33:52 -0000 1.27 @@ -1,7 +1,7 @@ %define drupaldir %{_datadir}/drupal Name: drupal Version: 6.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An open-source content-management platform Group: Applications/Publishing @@ -77,6 +77,9 @@ rm -rf %{buildroot} %dir %attr(775,root,apache) %{_localstatedir}/lib/drupal/files/default/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Jon Ciesla - 6.13-1 - Update to 6.11, SA-CORE-2009-007. - Added clarifying text on module installation to readme, BZ 500707. From jkeating at fedoraproject.org Fri Jul 24 20:34:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:34:05 +0000 (UTC) Subject: rpms/drupal-cck/devel drupal-cck.spec,1.6,1.7 Message-ID: <20090724203405.B2FF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drupal-cck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4345 Modified Files: drupal-cck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drupal-cck.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-cck/devel/drupal-cck.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- drupal-cck.spec 19 Mar 2009 14:10:53 -0000 1.6 +++ drupal-cck.spec 24 Jul 2009 20:34:05 -0000 1.7 @@ -1,7 +1,7 @@ %define drupaldir %{_datadir}/drupal Name: drupal-cck Version: 6.x.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allows you create and customize fields using a web browser Group: Applications/Publishing @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{drupaldir}/modules/cck %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Jon Ciesla - 6.x.2.2-1 - New upstream, fixes DRUPAL-SA-CONTRIB-2009-013. From jkeating at fedoraproject.org Fri Jul 24 20:34:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:34:19 +0000 (UTC) Subject: rpms/drupal-date/devel drupal-date.spec,1.3,1.4 Message-ID: <20090724203419.F129311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drupal-date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4467 Modified Files: drupal-date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drupal-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-date/devel/drupal-date.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drupal-date.spec 24 Feb 2009 12:47:23 -0000 1.3 +++ drupal-date.spec 24 Jul 2009 20:34:19 -0000 1.4 @@ -1,7 +1,7 @@ %define drupaldir %{_datadir}/drupal Name: drupal-date Version: 6.x.2.0 -Release: 2.rc4%{?dist}.1 +Release: 2.rc4%{?dist}.2 Summary: This package contains both the Date module and a Date API module Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf %{buildroot} %exclude %{drupaldir}/modules/date/date_php4/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.x.2.0-2.rc4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:34:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:34:33 +0000 (UTC) Subject: rpms/drupal-service_links/devel drupal-service_links.spec,1.3,1.4 Message-ID: <20090724203433.A61A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drupal-service_links/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4602 Modified Files: drupal-service_links.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drupal-service_links.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-service_links/devel/drupal-service_links.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- drupal-service_links.spec 24 Feb 2009 12:48:22 -0000 1.3 +++ drupal-service_links.spec 24 Jul 2009 20:34:33 -0000 1.4 @@ -1,7 +1,7 @@ %define drupaldir %{_datadir}/drupal Name: drupal-service_links Version: 6.x.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Enables admins to add links to a number of sites Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{drupaldir}/modules/service_links %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.x.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:34:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:34:48 +0000 (UTC) Subject: rpms/drupal-views/devel drupal-views.spec,1.6,1.7 Message-ID: <20090724203448.8BA3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/drupal-views/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4743 Modified Files: drupal-views.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: drupal-views.spec =================================================================== RCS file: /cvs/pkgs/rpms/drupal-views/devel/drupal-views.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- drupal-views.spec 11 Jun 2009 13:14:21 -0000 1.6 +++ drupal-views.spec 24 Jul 2009 20:34:48 -0000 1.7 @@ -1,7 +1,7 @@ %define drupaldir %{_datadir}/drupal Name: drupal-views Version: 6.x.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides a method for site designers to control content presentation Group: Applications/Publishing @@ -51,6 +51,9 @@ rm -rf %{buildroot} %exclude %{drupaldir}/modules/views/drupal-views-fedora-README.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.x.2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Jon Ciesla - 6.x.2.6-1 - New upstream, fixes SA-CONTRIB-2009-037. From jkeating at fedoraproject.org Fri Jul 24 20:35:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:35:01 +0000 (UTC) Subject: rpms/ds9/devel ds9.spec,1.20,1.21 Message-ID: <20090724203501.C01AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ds9/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4867 Modified Files: ds9.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ds9.spec =================================================================== RCS file: /cvs/pkgs/rpms/ds9/devel/ds9.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ds9.spec 3 May 2009 00:25:51 -0000 1.20 +++ ds9.spec 24 Jul 2009 20:35:01 -0000 1.21 @@ -1,6 +1,6 @@ Name: ds9 Version: 5.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Astronomical Data Visualization Application Group: Applications/Engineering @@ -92,6 +92,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Sergio Pascual - 5.4-6 - Moved to desktop category Education From jkeating at fedoraproject.org Fri Jul 24 20:35:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:35:15 +0000 (UTC) Subject: rpms/dsmidiwifi/devel dsmidiwifi.spec,1.2,1.3 Message-ID: <20090724203515.BCC9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dsmidiwifi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4998 Modified Files: dsmidiwifi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dsmidiwifi.spec =================================================================== RCS file: /cvs/pkgs/rpms/dsmidiwifi/devel/dsmidiwifi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dsmidiwifi.spec 24 Feb 2009 12:51:12 -0000 1.2 +++ dsmidiwifi.spec 24 Jul 2009 20:35:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: dsmidiwifi Version: 1.01a -Release: 3%{?dist} +Release: 4%{?dist} Summary: DS music interface Group: Applications/Multimedia @@ -45,6 +45,9 @@ mkdir $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01a-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.01a-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:35:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:35:29 +0000 (UTC) Subject: rpms/dsniff/devel dsniff.spec,1.6,1.7 Message-ID: <20090724203529.A112011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dsniff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5134 Modified Files: dsniff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dsniff.spec =================================================================== RCS file: /cvs/pkgs/rpms/dsniff/devel/dsniff.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dsniff.spec 23 Feb 2009 20:30:22 -0000 1.6 +++ dsniff.spec 24 Jul 2009 20:35:29 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Tools for network auditing and penetration testing Name: dsniff Version: 2.4 -Release: 0.5.b1%{?dist} +Release: 0.6.b1%{?dist} License: BSD Group: Applications/Internet URL: http://www.monkey.org/~dugsong/%{name}/ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/*.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-0.6.b1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.4-0.5.b1 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 20:35:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:35:44 +0000 (UTC) Subject: rpms/dssi/devel dssi.spec,1.12,1.13 Message-ID: <20090724203544.0F81611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5267 Modified Files: dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/dssi/devel/dssi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dssi.spec 13 Jul 2009 06:29:40 -0000 1.12 +++ dssi.spec 24 Jul 2009 20:35:43 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Disposable Soft Synth Interface Name: dssi Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Applications/Multimedia URL: http://dssi.sourceforge.net/ @@ -95,6 +95,9 @@ tests/controller %{_libdir}/pkgconfig/dssi.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Orcan Ogetbil - 1.0.0-2 - Fix the default DSSI plugin path to avoid a crash From jkeating at fedoraproject.org Fri Jul 24 20:35:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:35:59 +0000 (UTC) Subject: rpms/dssi-vst/devel dssi-vst.spec,1.2,1.3 Message-ID: <20090724203559.0F5BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dssi-vst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5423 Modified Files: dssi-vst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dssi-vst.spec =================================================================== RCS file: /cvs/pkgs/rpms/dssi-vst/devel/dssi-vst.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- dssi-vst.spec 3 Jun 2009 03:16:07 -0000 1.2 +++ dssi-vst.spec 24 Jul 2009 20:35:58 -0000 1.3 @@ -1,7 +1,7 @@ Summary: VST plugins host Name: dssi-vst Version: 0.8 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://dssi.sourceforge.net/ @@ -109,6 +109,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Orcan Ogetbil - 0.8-3 - Fix wine1118 patch From jkeating at fedoraproject.org Fri Jul 24 20:36:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:36:12 +0000 (UTC) Subject: rpms/dstat/devel dstat.spec,1.15,1.16 Message-ID: <20090724203612.E2E2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5575 Modified Files: dstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/dstat/devel/dstat.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- dstat.spec 24 Feb 2009 12:53:04 -0000 1.15 +++ dstat.spec 24 Jul 2009 20:36:12 -0000 1.16 @@ -4,7 +4,7 @@ Summary: Versatile resource statistics tool Name: dstat Version: 0.6.9 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: System Environment/Base URL: http://dag.wieers.com/home-made/dstat/ @@ -67,6 +67,9 @@ cd docs %{_datadir}/dstat/*.py* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:36:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:36:28 +0000 (UTC) Subject: rpms/dtach/devel dtach.spec,1.17,1.18 Message-ID: <20090724203628.0B2B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dtach/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5722 Modified Files: dtach.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dtach.spec =================================================================== RCS file: /cvs/pkgs/rpms/dtach/devel/dtach.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- dtach.spec 24 Feb 2009 12:54:03 -0000 1.17 +++ dtach.spec 24 Jul 2009 20:36:27 -0000 1.18 @@ -1,7 +1,7 @@ Summary: A simple program that emulates the detach feature of screen Name: dtach Version: 0.8 -Release: 2 +Release: 3 License: GPLv2+ URL: http://dtach.sourceforge.net Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:36:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:36:44 +0000 (UTC) Subject: rpms/dtc/devel dtc.spec,1.10,1.11 Message-ID: <20090724203644.24FE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dtc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5887 Modified Files: dtc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dtc.spec =================================================================== RCS file: /cvs/pkgs/rpms/dtc/devel/dtc.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- dtc.spec 24 Feb 2009 12:55:03 -0000 1.10 +++ dtc.spec 24 Jul 2009 20:36:44 -0000 1.11 @@ -1,6 +1,6 @@ Name: dtc Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Device Tree Compiler Group: Development/Tools License: GPLv2+ @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:37:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:37:00 +0000 (UTC) Subject: rpms/dtdparser/devel dtdparser.spec,1.6,1.7 Message-ID: <20090724203700.19EA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dtdparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6039 Modified Files: dtdparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dtdparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/dtdparser/devel/dtdparser.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dtdparser.spec 24 Feb 2009 12:56:03 -0000 1.6 +++ dtdparser.spec 24 Jul 2009 20:36:59 -0000 1.7 @@ -36,7 +36,7 @@ Name: dtdparser Version: 1.21 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 0 Summary: A Java DTD Parser # The code has no license attribution. @@ -147,6 +147,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.21-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.21-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:37:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:37:16 +0000 (UTC) Subject: rpms/duel3/devel duel3.spec,1.7,1.8 Message-ID: <20090724203716.50FF411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/duel3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6183 Modified Files: duel3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: duel3.spec =================================================================== RCS file: /cvs/pkgs/rpms/duel3/devel/duel3.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- duel3.spec 24 Feb 2009 12:57:00 -0000 1.7 +++ duel3.spec 24 Jul 2009 20:37:16 -0000 1.8 @@ -1,7 +1,7 @@ %define snapshot 20060225 Name: duel3 Version: 0.1 -Release: 0.7.%{snapshot}%{?dist} +Release: 0.8.%{snapshot}%{?dist} Summary: One on one spaceship duel in a 2D arena Group: Amusements/Games License: BSD @@ -100,6 +100,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.8.20060225 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1-0.7.20060225 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:37:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:37:31 +0000 (UTC) Subject: rpms/dumb/devel dumb.spec,1.7,1.8 Message-ID: <20090724203731.3DF5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dumb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6334 Modified Files: dumb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dumb.spec =================================================================== RCS file: /cvs/pkgs/rpms/dumb/devel/dumb.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dumb.spec 24 Feb 2009 12:57:55 -0000 1.7 +++ dumb.spec 24 Jul 2009 20:37:31 -0000 1.8 @@ -1,6 +1,6 @@ Name: dumb Version: 0.9.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: IT, XM, S3M and MOD player library Group: System Environment/Libraries License: zlib @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:37:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:37:49 +0000 (UTC) Subject: rpms/dump/devel dump.spec,1.54,1.55 Message-ID: <20090724203749.3622411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6491 Modified Files: dump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dump.spec =================================================================== RCS file: /cvs/pkgs/rpms/dump/devel/dump.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- dump.spec 23 Jul 2009 12:37:41 -0000 1.54 +++ dump.spec 24 Jul 2009 20:37:49 -0000 1.55 @@ -7,7 +7,7 @@ Summary: Programs for backing up and res Name: dump Epoch: 1 Version: 0.4 -Release: 0.2.%{PREVER}%{?dist} +Release: 0.3.%{PREVER}%{?dist} License: BSD Group: Applications/Archiving URL: http://dump.sourceforge.net/ @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_mandir}/man8/rmt.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.4-0.3.b42 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Tkac 0.4-0.2.b42 - restore multivol backups correctly From jkeating at fedoraproject.org Fri Jul 24 20:38:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:38:05 +0000 (UTC) Subject: rpms/dumpasn1/devel dumpasn1.spec,1.13,1.14 Message-ID: <20090724203805.061A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dumpasn1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6633 Modified Files: dumpasn1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dumpasn1.spec =================================================================== RCS file: /cvs/pkgs/rpms/dumpasn1/devel/dumpasn1.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- dumpasn1.spec 21 Jul 2009 18:01:40 -0000 1.13 +++ dumpasn1.spec 24 Jul 2009 20:38:04 -0000 1.14 @@ -1,6 +1,6 @@ Name: dumpasn1 Version: 20090318 -Release: 2%{?dist} +Release: 3%{?dist} Summary: ASN.1 object dump utility Group: Development/Tools @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090318-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Fran?ois Kooman - 20090318-2 - cfg file already has unix line endings - create patch instead of using sed to replace BYTE with char From jkeating at fedoraproject.org Fri Jul 24 20:38:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:38:20 +0000 (UTC) Subject: rpms/duplicity/devel duplicity.spec,1.28,1.29 Message-ID: <20090724203820.E190111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/duplicity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6772 Modified Files: duplicity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: duplicity.spec =================================================================== RCS file: /cvs/pkgs/rpms/duplicity/devel/duplicity.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- duplicity.spec 24 May 2009 01:48:45 -0000 1.28 +++ duplicity.spec 24 Jul 2009 20:38:20 -0000 1.29 @@ -3,7 +3,7 @@ Summary: Encrypted bandwidth-efficient backup using rsync algorithm Name: duplicity Version: 0.5.18 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Archiving URL: http://www.nongnu.org/duplicity/ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Robert Scheck 0.5.18-1 - Upgrade to 0.5.18 From jkeating at fedoraproject.org Fri Jul 24 20:38:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:38:36 +0000 (UTC) Subject: rpms/dustin-domestic-manners-fonts/devel dustin-domestic-manners-fonts.spec, 1.3, 1.4 Message-ID: <20090724203836.248EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dustin-domestic-manners-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6889 Modified Files: dustin-domestic-manners-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dustin-domestic-manners-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/dustin-domestic-manners-fonts/devel/dustin-domestic-manners-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dustin-domestic-manners-fonts.spec 24 Feb 2009 13:00:52 -0000 1.3 +++ dustin-domestic-manners-fonts.spec 24 Jul 2009 20:38:35 -0000 1.4 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 20030527 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Handwriting font by Dustin Norlander Group: User Interface/X @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20030527-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20030527-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:38:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:38:50 +0000 (UTC) Subject: rpms/dustin-dustismo-fonts/devel dustin-dustismo-fonts.spec, 1.4, 1.5 Message-ID: <20090724203850.BDA6711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dustin-dustismo-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7030 Modified Files: dustin-dustismo-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dustin-dustismo-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/dustin-dustismo-fonts/devel/dustin-dustismo-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dustin-dustismo-fonts.spec 24 Feb 2009 13:01:52 -0000 1.4 +++ dustin-dustismo-fonts.spec 24 Jul 2009 20:38:50 -0000 1.5 @@ -6,7 +6,7 @@ serif and sans-serif versions. The fonts Name: %{fontname}-fonts Version: 20030318 -Release: 4%{?dist} +Release: 5%{?dist} Summary: General purpose sans-serif font with bold, italic and bold-italic variations Group: User Interface/X @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20030318-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20030318-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:39:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:39:05 +0000 (UTC) Subject: rpms/dvb-apps/devel dvb-apps.spec,1.19,1.20 Message-ID: <20090724203905.E096411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvb-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7170 Modified Files: dvb-apps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvb-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvb-apps/devel/dvb-apps.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- dvb-apps.spec 1 Jul 2009 21:27:31 -0000 1.19 +++ dvb-apps.spec 24 Jul 2009 20:39:05 -0000 1.20 @@ -1,6 +1,6 @@ Name: dvb-apps Version: 1.1.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Utility, demo and test applications using the Linux DVB API Group: Applications/Multimedia @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Ville Skytt? - 1.1.1-16 - Update tuning files to 20090702. - Drop no longer needed workaround for #483644. From jkeating at fedoraproject.org Fri Jul 24 20:39:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:39:22 +0000 (UTC) Subject: rpms/dvd+rw-tools/devel dvd+rw-tools.spec,1.39,1.40 Message-ID: <20090724203922.06AA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvd+rw-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7300 Modified Files: dvd+rw-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvd+rw-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvd+rw-tools/devel/dvd+rw-tools.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- dvd+rw-tools.spec 24 Feb 2009 13:03:53 -0000 1.39 +++ dvd+rw-tools.spec 24 Jul 2009 20:39:21 -0000 1.40 @@ -1,7 +1,7 @@ Summary: Toolchain to master DVD+RW/+R media Name: dvd+rw-tools Version: 7.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Multimedia Source: http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-%{version}.tar.gz @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man1/growisofs.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:39:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:39:37 +0000 (UTC) Subject: rpms/dvdauthor/devel dvdauthor.spec,1.13,1.14 Message-ID: <20090724203937.399AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvdauthor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7444 Modified Files: dvdauthor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvdauthor.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvdauthor/devel/dvdauthor.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- dvdauthor.spec 1 Jul 2009 15:16:29 -0000 1.13 +++ dvdauthor.spec 24 Jul 2009 20:39:37 -0000 1.14 @@ -1,6 +1,6 @@ Name: dvdauthor Version: 0.6.14 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Command line DVD authoring tool Group: Applications/Multimedia @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Rex Dieter - 0.6.14-9 - rebuild (GraphicsMagick) From jkeating at fedoraproject.org Fri Jul 24 20:39:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:39:50 +0000 (UTC) Subject: rpms/dvdisaster/devel dvdisaster.spec,1.28,1.29 Message-ID: <20090724203950.BEBFB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvdisaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7569 Modified Files: dvdisaster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvdisaster.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvdisaster/devel/dvdisaster.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- dvdisaster.spec 13 Jul 2009 16:56:46 -0000 1.28 +++ dvdisaster.spec 24 Jul 2009 20:39:50 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Additional error protection for CD/DVD media Name: dvdisaster Version: 0.72 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Archiving License: GPLv2+ URL: http://www.dvdisaster.com @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.72-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dmitry Butskoy - 0.72-1 - Upgrade to 0.72 From jkeating at fedoraproject.org Fri Jul 24 20:40:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:40:04 +0000 (UTC) Subject: rpms/dvgrab/devel dvgrab.spec,1.32,1.33 Message-ID: <20090724204004.9D7DA11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7697 Modified Files: dvgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvgrab/devel/dvgrab.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- dvgrab.spec 19 Mar 2009 20:26:05 -0000 1.32 +++ dvgrab.spec 24 Jul 2009 20:40:04 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Utility to capture video from a DV camera Name: dvgrab Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.kinodv.org/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/dvgrab.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Jarod Wilson - 3.4-2 - Set retval to 1 if we get an error, to make life easier for folks who wrap dvgrab to tell if something went wrong (#486061). From jkeating at fedoraproject.org Fri Jul 24 20:40:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:40:17 +0000 (UTC) Subject: rpms/dvipdfm/devel dvipdfm.spec,1.3,1.4 Message-ID: <20090724204017.7E2AD11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvipdfm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7815 Modified Files: dvipdfm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvipdfm.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvipdfm/devel/dvipdfm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dvipdfm.spec 24 Feb 2009 13:07:40 -0000 1.3 +++ dvipdfm.spec 24 Jul 2009 20:40:17 -0000 1.4 @@ -4,7 +4,7 @@ Name: dvipdfm Version: 0.13.2d -Release: 40%{?dist} +Release: 41%{?dist} Summary: A DVI to PDF translator Group: Applications/Publishing @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/ebb.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.2d-41 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.13.2d-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:40:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:40:31 +0000 (UTC) Subject: rpms/dvipdfmx/devel dvipdfmx.spec,1.8,1.9 Message-ID: <20090724204031.B6E1511C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvipdfmx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7952 Modified Files: dvipdfmx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvipdfmx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvipdfmx/devel/dvipdfmx.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- dvipdfmx.spec 24 Feb 2009 13:08:35 -0000 1.8 +++ dvipdfmx.spec 24 Jul 2009 20:40:31 -0000 1.9 @@ -10,7 +10,7 @@ Name: dvipdfmx Version: 0 -Release: 0.27.%{snapshot}cvs%{?dist} +Release: 0.28.%{snapshot}cvs%{?dist} Summary: A DVI to PDF translator Group: Applications/Publishing @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.28.20090115cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0-0.27.20090115cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:40:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:40:44 +0000 (UTC) Subject: rpms/dvipng/devel dvipng.spec,1.3,1.4 Message-ID: <20090724204044.B469D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvipng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8076 Modified Files: dvipng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvipng.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvipng/devel/dvipng.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dvipng.spec 24 Feb 2009 13:09:32 -0000 1.3 +++ dvipng.spec 24 Jul 2009 20:40:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: dvipng Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Converts DVI files to PNG/GIF format Group: Applications/Publishing @@ -61,6 +61,9 @@ fi %{_mandir}/man1/dvipng.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:40:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:40:57 +0000 (UTC) Subject: rpms/dvtm/devel dvtm.spec,1.1,1.2 Message-ID: <20090724204057.A6D1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dvtm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8202 Modified Files: dvtm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dvtm.spec =================================================================== RCS file: /cvs/pkgs/rpms/dvtm/devel/dvtm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dvtm.spec 8 Jun 2009 10:30:20 -0000 1.1 +++ dvtm.spec 24 Jul 2009 20:40:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: dvtm Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tiling window management for the console Group: Applications/System @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Rakesh Pandit 0.5.1-5 - Removed LGPLv2 copy From jkeating at fedoraproject.org Fri Jul 24 20:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:41:11 +0000 (UTC) Subject: rpms/dwarves/devel dwarves.spec,1.6,1.7 Message-ID: <20090724204111.B631111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dwarves/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8325 Modified Files: dwarves.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dwarves.spec =================================================================== RCS file: /cvs/pkgs/rpms/dwarves/devel/dwarves.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dwarves.spec 24 Feb 2009 13:10:26 -0000 1.6 +++ dwarves.spec 24 Jul 2009 20:41:11 -0000 1.7 @@ -3,7 +3,7 @@ Name: dwarves Version: 1.7 -Release: 4 +Release: 5 License: GPLv2 Summary: Dwarf Tools Group: Development/Tools @@ -111,6 +111,9 @@ rm -rf %{buildroot} %{_libdir}/%{libname}_reorganize.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:41:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:41:29 +0000 (UTC) Subject: rpms/dwatch/devel dwatch.spec,1.6,1.7 Message-ID: <20090724204129.290F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8505 Modified Files: dwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/dwatch/devel/dwatch.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dwatch.spec 24 Feb 2009 13:11:26 -0000 1.6 +++ dwatch.spec 24 Jul 2009 20:41:28 -0000 1.7 @@ -1,6 +1,6 @@ Name: dwatch Version: 0.1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A program that watches over other programs Group: Applications/System @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:41:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:41:44 +0000 (UTC) Subject: rpms/dwdiff/devel dwdiff.spec,1.13,1.14 Message-ID: <20090724204144.47F7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dwdiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8784 Modified Files: dwdiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dwdiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/dwdiff/devel/dwdiff.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- dwdiff.spec 24 Feb 2009 13:12:18 -0000 1.13 +++ dwdiff.spec 24 Jul 2009 20:41:44 -0000 1.14 @@ -1,6 +1,6 @@ Name: dwdiff Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Front end to diff for comparing on a per word basis Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf %{buildroot} %lang(nl) %{_mandir}/nl/man1/dwdiff.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:42:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:42:01 +0000 (UTC) Subject: rpms/dwscan/devel dwscan.spec,1.1,1.2 Message-ID: <20090724204201.1B35711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dwscan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9319 Modified Files: dwscan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dwscan.spec =================================================================== RCS file: /cvs/pkgs/rpms/dwscan/devel/dwscan.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dwscan.spec 28 Mar 2009 21:24:34 -0000 1.1 +++ dwscan.spec 24 Jul 2009 20:42:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: dwscan Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Displays access point information Group: Applications/Internet @@ -41,6 +41,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Fabian Affolter - 0.2-3 - Changed license to LGPLv2 for now, removed copying from doc - Removed the changing of the sbindir From jkeating at fedoraproject.org Fri Jul 24 20:42:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:42:31 +0000 (UTC) Subject: rpms/dx-samples/devel dx-samples.spec,1.4,1.5 Message-ID: <20090724204231.3EF6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dx-samples/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9908 Modified Files: dx-samples.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dx-samples.spec =================================================================== RCS file: /cvs/pkgs/rpms/dx-samples/devel/dx-samples.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dx-samples.spec 24 Feb 2009 13:14:02 -0000 1.4 +++ dx-samples.spec 24 Jul 2009 20:42:31 -0000 1.5 @@ -1,7 +1,7 @@ Summary: OpenDX Examples Name: dx-samples Version: 4.4.0 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.opendx.org/ Group: Documentation Source0: http://opendx.npaci.edu/source/dxsamples-%{version}.tar.gz @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dx/samples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.4.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:42:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:42:45 +0000 (UTC) Subject: rpms/dxcc/devel dxcc.spec,1.3,1.4 Message-ID: <20090724204245.24A9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dxcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10032 Modified Files: dxcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dxcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/dxcc/devel/dxcc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- dxcc.spec 24 Feb 2009 13:14:56 -0000 1.3 +++ dxcc.spec 24 Jul 2009 20:42:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: dxcc Version: 20080225 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Small utility which determines the ARRL DXCC entity of a ham radio callsign Group: Applications/Communications @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080225-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080225-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:42:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:42:58 +0000 (UTC) Subject: rpms/dxpc/devel dxpc.spec,1.21,1.22 Message-ID: <20090724204258.C5C9B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dxpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10175 Modified Files: dxpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dxpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/dxpc/devel/dxpc.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- dxpc.spec 24 Feb 2009 13:15:54 -0000 1.21 +++ dxpc.spec 24 Jul 2009 20:42:58 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A Differential X Protocol Compressor Name: dxpc Version: 3.9.1 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: User Interface/X @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.9.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:43:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:43:12 +0000 (UTC) Subject: rpms/dynamic-wallpaper/devel dynamic-wallpaper.spec,1.1,1.2 Message-ID: <20090724204312.D32AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dynamic-wallpaper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10306 Modified Files: dynamic-wallpaper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dynamic-wallpaper.spec =================================================================== RCS file: /cvs/pkgs/rpms/dynamic-wallpaper/devel/dynamic-wallpaper.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dynamic-wallpaper.spec 4 Jun 2009 17:10:42 -0000 1.1 +++ dynamic-wallpaper.spec 24 Jul 2009 20:43:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: dynamic-wallpaper Version: 0.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generates svg wallpaper based on current weather, season and others Group: Amusements/Graphics @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 29 2009 Beno?t Marcelin 0.3.1-1 - Update to 0.3.1 From jkeating at fedoraproject.org Fri Jul 24 20:43:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:43:26 +0000 (UTC) Subject: rpms/dynamite/devel dynamite.spec,1.12,1.13 Message-ID: <20090724204326.E7A9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dynamite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10467 Modified Files: dynamite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dynamite.spec =================================================================== RCS file: /cvs/pkgs/rpms/dynamite/devel/dynamite.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dynamite.spec 24 Feb 2009 13:16:52 -0000 1.12 +++ dynamite.spec 24 Jul 2009 20:43:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: dynamite Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extract data compressed with PKWARE Data Compression Library Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdynamite.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:43:39 +0000 (UTC) Subject: rpms/e16/devel e16.spec,1.9,1.10 Message-ID: <20090724204339.C91CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e16/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10597 Modified Files: e16.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e16.spec =================================================================== RCS file: /cvs/pkgs/rpms/e16/devel/e16.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- e16.spec 23 Feb 2009 22:12:29 -0000 1.9 +++ e16.spec 24 Jul 2009 20:43:39 -0000 1.10 @@ -3,7 +3,7 @@ Summary: The Enlightenment window manager, DR16 Name: e16 Version: 0.16.8.15 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT with advertising and GPLv2+ Group: User Interface/Desktops URL: http://www.enlightenment.org/ @@ -71,6 +71,9 @@ done %{_datadir}/xsessions/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.8.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Terje Rosten - 0.16.8.15-2 - More font work From jkeating at fedoraproject.org Fri Jul 24 20:43:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:43:54 +0000 (UTC) Subject: rpms/e16-docs/devel e16-docs.spec,1.5,1.6 Message-ID: <20090724204354.14B5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e16-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10730 Modified Files: e16-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e16-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/e16-docs/devel/e16-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- e16-docs.spec 23 Feb 2009 22:17:22 -0000 1.5 +++ e16-docs.spec 24 Jul 2009 20:43:53 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Documentation for Enlightenment, DR16 Name: e16-docs Version: 0.16.8.0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT with advertising URL: http://www.enlightenment.org/ Group: User Interface/Desktops @@ -33,6 +33,9 @@ This package contains documentation for %{_datadir}/e16/E-docs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.8.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 23 2009 Terje Rosten - 0.16.8.0.2-2 - More font work From jkeating at fedoraproject.org Fri Jul 24 20:44:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:44:07 +0000 (UTC) Subject: rpms/e16-epplets/devel e16-epplets.spec,1.5,1.6 Message-ID: <20090724204407.D16C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e16-epplets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10860 Modified Files: e16-epplets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e16-epplets.spec =================================================================== RCS file: /cvs/pkgs/rpms/e16-epplets/devel/e16-epplets.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- e16-epplets.spec 24 Feb 2009 13:17:50 -0000 1.5 +++ e16-epplets.spec 24 Jul 2009 20:44:07 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Epplets for Enlightenment, DR16 Name: e16-epplets Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT with advertising and GPL+ and GPLv2+ Group: User Interface/Desktops URL: http://www.enlightenment.org/ @@ -68,6 +68,9 @@ echo "%{_libdir}/%{oname}" > %{buildroot %{_libdir}/libepplet_glx.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:44:21 +0000 (UTC) Subject: rpms/e16-keyedit/devel e16-keyedit.spec,1.2,1.3 Message-ID: <20090724204421.E07C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e16-keyedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10995 Modified Files: e16-keyedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e16-keyedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/e16-keyedit/devel/e16-keyedit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- e16-keyedit.spec 24 Feb 2009 13:18:50 -0000 1.2 +++ e16-keyedit.spec 24 Jul 2009 20:44:21 -0000 1.3 @@ -3,7 +3,7 @@ Summary: GUI for editing keybindings in Enlightenment, DR16 Name: e16-keyedit Version: 0.5 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT with advertising Group: User Interface/Desktops URL: http://www.enlightenment.org/ @@ -50,6 +50,9 @@ desktop-file-install --vendor=fedora \ %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:44:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:44:38 +0000 (UTC) Subject: rpms/e16-themes/devel e16-themes.spec,1.3,1.4 Message-ID: <20090724204438.137A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e16-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11142 Modified Files: e16-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e16-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/e16-themes/devel/e16-themes.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- e16-themes.spec 26 Feb 2009 20:39:10 -0000 1.3 +++ e16-themes.spec 24 Jul 2009 20:44:37 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Themes for Enlightenment, DR16 Name: e16-themes Version: 0.16.8.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT with advertising Group: User Interface/Desktops URL: http://www.enlightenment.org/ @@ -37,6 +37,9 @@ This is part of the Enlightenment distri %{_datadir}/e16/themes %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.8.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Terje Rosten - 0.16.8.0.2-3 - Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:44:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:44:54 +0000 (UTC) Subject: rpms/e2fsprogs/devel e2fsprogs.spec,1.144,1.145 Message-ID: <20090724204454.4ECF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e2fsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11283 Modified Files: e2fsprogs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e2fsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2fsprogs/devel/e2fsprogs.spec,v retrieving revision 1.144 retrieving revision 1.145 diff -u -p -r1.144 -r1.145 --- e2fsprogs.spec 17 Jul 2009 21:17:21 -0000 1.144 +++ e2fsprogs.spec 24 Jul 2009 20:44:54 -0000 1.145 @@ -4,7 +4,7 @@ Summary: Utilities for managing ext2, ext3, and ext4 filesystems Name: e2fsprogs Version: 1.41.8 -Release: 2%{?dist} +Release: 3%{?dist} # License tags based on COPYING file distinctions for various components License: GPLv2 Group: System Environment/Base @@ -403,6 +403,9 @@ fi %{_libdir}/pkgconfig/uuid.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.41.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Eric Sandeen 1.41.8-2 - Address some package review concerns (#225714) From jkeating at fedoraproject.org Fri Jul 24 20:45:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:45:08 +0000 (UTC) Subject: rpms/e2tools/devel e2tools.spec,1.9,1.10 Message-ID: <20090724204508.E58F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e2tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11419 Modified Files: e2tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e2tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2tools/devel/e2tools.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- e2tools.spec 18 Jul 2009 13:15:33 -0000 1.9 +++ e2tools.spec 24 Jul 2009 20:45:08 -0000 1.10 @@ -1,6 +1,6 @@ Name: e2tools Version: 0.0.16 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Manipulate files in unmounted ext2/ext3 filesystems Group: Applications/System @@ -103,6 +103,9 @@ sh %{SOURCE1} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.16-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Hans Ulrich Niedermann - 0.0.16-13 - Add libcom_err-devel buildreq on F12 and later (e2fsprogs-devel split) From jkeating at fedoraproject.org Fri Jul 24 20:45:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:45:25 +0000 (UTC) Subject: rpms/e_dbus/devel e_dbus.spec,1.4,1.5 Message-ID: <20090724204525.0D1FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/e_dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11593 Modified Files: e_dbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: e_dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/e_dbus/devel/e_dbus.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- e_dbus.spec 24 Feb 2009 13:22:30 -0000 1.4 +++ e_dbus.spec 24 Jul 2009 20:45:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: e_dbus Version: 0.5.0.050 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Wrappers around dbus for EFL based applications Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0.050-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0.050-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:45:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:45:41 +0000 (UTC) Subject: rpms/earth-and-moon-backgrounds/devel earth-and-moon-backgrounds.spec, 1.1, 1.2 Message-ID: <20090724204541.1BF5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/earth-and-moon-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11746 Modified Files: earth-and-moon-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: earth-and-moon-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/earth-and-moon-backgrounds/devel/earth-and-moon-backgrounds.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- earth-and-moon-backgrounds.spec 13 Mar 2009 20:55:28 -0000 1.1 +++ earth-and-moon-backgrounds.spec 24 Jul 2009 20:45:40 -0000 1.2 @@ -2,7 +2,7 @@ Name: earth-and-moon-backgrounds Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Modern background License: GPL+ Group: User Interface/Desktops @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-background-properties/desktop-backgrounds-earth-and-moon.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 05 2009 Jonathan MERCIER - 0.1-4 - Add "%%dir %%{_datadir}/gnome-background-properties/" to %%files - For "install -p" From jkeating at fedoraproject.org Fri Jul 24 20:45:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:45:59 +0000 (UTC) Subject: rpms/easystroke/devel easystroke.spec,1.3,1.4 Message-ID: <20090724204559.2152911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/easystroke/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11937 Modified Files: easystroke.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: easystroke.spec =================================================================== RCS file: /cvs/pkgs/rpms/easystroke/devel/easystroke.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- easystroke.spec 29 Jun 2009 06:20:08 -0000 1.3 +++ easystroke.spec 24 Jul 2009 20:45:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: easystroke Version: 0.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gesture-recognition application for X11 Group: User Interface/X Hardware Support @@ -75,6 +75,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 29 2009 Zarko Pintar - 0.4.6-1 - new version From jkeating at fedoraproject.org Fri Jul 24 20:46:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:46:33 +0000 (UTC) Subject: rpms/easytag/devel easytag.spec,1.25,1.26 Message-ID: <20090724204633.9D7A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/easytag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12215 Modified Files: easytag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: easytag.spec =================================================================== RCS file: /cvs/pkgs/rpms/easytag/devel/easytag.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- easytag.spec 24 Feb 2009 13:23:29 -0000 1.25 +++ easytag.spec 24 Jul 2009 20:46:33 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Tag editor for mp3, ogg, flac and other music files Name: easytag Version: 2.1 -Release: 6%{?dist} +Release: 7%{?dist} # Program is GPL only the included libapetag is LGPL License: GPLv2+ and LGPLv2+ Group: Applications/Multimedia @@ -58,6 +58,9 @@ find . -type f -exec %{__chmod} -x {} \; %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:46:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:46:49 +0000 (UTC) Subject: rpms/eb/devel eb.spec,1.4,1.5 Message-ID: <20090724204649.4809A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12378 Modified Files: eb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eb.spec =================================================================== RCS file: /cvs/pkgs/rpms/eb/devel/eb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eb.spec 24 Feb 2009 13:24:26 -0000 1.4 +++ eb.spec 24 Jul 2009 20:46:49 -0000 1.5 @@ -1,6 +1,6 @@ Name: eb Version: 4.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for accessing Japanese CD-ROM electronic books Summary(ja): CD-ROM ????????????????? @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:47:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:47:05 +0000 (UTC) Subject: rpms/eblook/devel eblook.spec,1.4,1.5 Message-ID: <20090724204705.0981211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eblook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12537 Modified Files: eblook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eblook.spec =================================================================== RCS file: /cvs/pkgs/rpms/eblook/devel/eblook.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eblook.spec 24 Feb 2009 13:25:23 -0000 1.4 +++ eblook.spec 24 Jul 2009 20:47:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: eblook Version: 1.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Command-line EB and EPWING dictionary search program Group: Applications/Text @@ -60,6 +60,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:47:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:47:21 +0000 (UTC) Subject: rpms/ebnetd/devel ebnetd.spec,1.2,1.3 Message-ID: <20090724204721.852AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ebnetd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12713 Modified Files: ebnetd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ebnetd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ebnetd/devel/ebnetd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ebnetd.spec 24 Feb 2009 13:26:23 -0000 1.2 +++ ebnetd.spec 24 Jul 2009 20:47:21 -0000 1.3 @@ -5,7 +5,7 @@ Name: ebnetd Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://www.sra.co.jp/people/m-kasahr/ebnetd/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -164,6 +164,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:47:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:47:37 +0000 (UTC) Subject: rpms/eboard/devel eboard.spec,1.4,1.5 Message-ID: <20090724204737.006BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12861 Modified Files: eboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/eboard/devel/eboard.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eboard.spec 31 Mar 2009 10:25:18 -0000 1.4 +++ eboard.spec 24 Jul 2009 20:47:36 -0000 1.5 @@ -1,6 +1,6 @@ Name: eboard Version: 1.1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Chess board interface for ICS Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/eboard-config.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 21 2009 Marek Mahut - 1.1.1-4 - RHBZ#485307 - wrong category in desktop file From jkeating at fedoraproject.org Fri Jul 24 20:47:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:47:53 +0000 (UTC) Subject: rpms/ebook-tools/devel ebook-tools.spec,1.3,1.4 Message-ID: <20090724204753.2884711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ebook-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13005 Modified Files: ebook-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ebook-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ebook-tools/devel/ebook-tools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ebook-tools.spec 24 Feb 2009 13:28:11 -0000 1.3 +++ ebook-tools.spec 24 Jul 2009 20:47:53 -0000 1.4 @@ -1,6 +1,6 @@ Name: ebook-tools Version: 0.1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools for accessing and converting various ebook file formats Group: Applications/Publishing @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_libdir}/*.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:48:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:48:17 +0000 (UTC) Subject: rpms/ebtables/devel ebtables.spec,1.23,1.24 Message-ID: <20090724204817.8A16411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ebtables/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13273 Modified Files: ebtables.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ebtables.spec =================================================================== RCS file: /cvs/pkgs/rpms/ebtables/devel/ebtables.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ebtables.spec 24 Feb 2009 13:29:20 -0000 1.23 +++ ebtables.spec 24 Jul 2009 20:48:17 -0000 1.24 @@ -1,6 +1,6 @@ Name: ebtables Version: 2.0.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Ethernet Bridge frame table administration tool License: GPLv2+ Group: System Environment/Base @@ -76,6 +76,9 @@ fi %ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:48:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:48:34 +0000 (UTC) Subject: rpms/echo-artist/devel echo-artist.spec,1.3,1.4 Message-ID: <20090724204834.0D92911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/echo-artist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13479 Modified Files: echo-artist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: echo-artist.spec =================================================================== RCS file: /cvs/pkgs/rpms/echo-artist/devel/echo-artist.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- echo-artist.spec 24 Feb 2009 13:30:20 -0000 1.3 +++ echo-artist.spec 24 Jul 2009 20:48:33 -0000 1.4 @@ -1,6 +1,6 @@ Name: echo-artist Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automation tools for echo-icon-theme artists Group: Applications/Productivity @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:48:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:48:50 +0000 (UTC) Subject: rpms/echo-icon-theme/devel echo-icon-theme.spec,1.31,1.32 Message-ID: <20090724204850.34F2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/echo-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13636 Modified Files: echo-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: echo-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/echo-icon-theme/devel/echo-icon-theme.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- echo-icon-theme.spec 24 Feb 2009 13:31:28 -0000 1.31 +++ echo-icon-theme.spec 24 Jul 2009 20:48:50 -0000 1.32 @@ -4,7 +4,7 @@ Name: echo-icon-theme Version: 0.3.89.0 -Release: 0.12.%{alphatag}%{?dist} +Release: 0.13.%{alphatag}%{?dist} Summary: Echo icon theme Group: User Interface/Desktops @@ -49,6 +49,9 @@ rm -rf %{buildroot} %ghost %{_datadir}/icons/Echo/icon-theme.cache %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.89.0-0.13.20081003gitcc6da5b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.89.0-0.12.20081003gitcc6da5b - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:49:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:49:06 +0000 (UTC) Subject: rpms/echolinux/devel echolinux.spec,1.1,1.2 Message-ID: <20090724204906.7D9BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/echolinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13809 Modified Files: echolinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: echolinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/echolinux/devel/echolinux.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- echolinux.spec 19 Mar 2009 05:50:08 -0000 1.1 +++ echolinux.spec 24 Jul 2009 20:49:06 -0000 1.2 @@ -1,6 +1,6 @@ Name: echolinux Version: 0.17a -Release: 4%{?dist} +Release: 5%{?dist} Summary: Linux echoLink client Group: Applications/Communications @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17a-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Lucian Langa - 0.17a-4 - license tag fix - fix compiler flags From jkeating at fedoraproject.org Fri Jul 24 20:49:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:49:22 +0000 (UTC) Subject: rpms/echoping/devel echoping.spec,1.7,1.8 Message-ID: <20090724204922.4D66511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/echoping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14035 Modified Files: echoping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: echoping.spec =================================================================== RCS file: /cvs/pkgs/rpms/echoping/devel/echoping.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- echoping.spec 24 Feb 2009 13:32:28 -0000 1.7 +++ echoping.spec 24 Jul 2009 20:49:22 -0000 1.8 @@ -1,7 +1,7 @@ Summary: TCP "echo" performance test Name: echoping Version: 6.0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://downloads.sourceforge.net/echoping/echoping-%{version}.tar.gz @@ -117,6 +117,9 @@ rm -rf %{buildroot} %{_libdir}/echoping/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:49:38 +0000 (UTC) Subject: rpms/ecj/devel ecj.spec,1.4,1.5 Message-ID: <20090724204938.9F3B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ecj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14192 Modified Files: ecj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ecj.spec =================================================================== RCS file: /cvs/pkgs/rpms/ecj/devel/ecj.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ecj.spec 11 Mar 2009 17:32:38 -0000 1.4 +++ ecj.spec 24 Jul 2009 20:49:38 -0000 1.5 @@ -8,7 +8,7 @@ Epoch: 1 Summary: Eclipse Compiler for Java Name: ecj Version: 3.4.2 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.eclipse.org License: EPL Group: Development/Languages @@ -121,6 +121,9 @@ fi %{_libdir}/gcj/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Deepak Bhole 1:3.4.2-4 - Add patch to generate full debuginfo for ecj itself From jkeating at fedoraproject.org Fri Jul 24 20:49:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:49:55 +0000 (UTC) Subject: rpms/ecl/devel ecl.spec,1.13,1.14 Message-ID: <20090724204955.570DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ecl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14353 Modified Files: ecl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ecl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ecl/devel/ecl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ecl.spec 16 Jun 2009 21:23:50 -0000 1.13 +++ ecl.spec 24 Jul 2009 20:49:55 -0000 1.14 @@ -1,6 +1,6 @@ Name: ecl Version: 9.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Embeddable Common-Lisp Group: Development/Languages @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Gerard Milmeister - 9.6.1-1 - new release 9.6.1 From jkeating at fedoraproject.org Fri Jul 24 20:50:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:50:14 +0000 (UTC) Subject: rpms/eclib/devel eclib.spec,1.1,1.2 Message-ID: <20090724205014.1BD2711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14568 Modified Files: eclib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclib/devel/eclib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- eclib.spec 23 May 2009 08:05:37 -0000 1.1 +++ eclib.spec 24 Jul 2009 20:50:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: eclib Version: 20080310 -Release: 8.p7%{?dist} +Release: 9.p7%{?dist} Summary: A Library for Doing Computations on Elliptic Curves Group: Applications/Engineering License: GPLv2+ @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080310-9.p7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Conrad Meyer - 20080310-8.p7 - Make only shared libs. From jkeating at fedoraproject.org Fri Jul 24 20:50:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:50:32 +0000 (UTC) Subject: rpms/eclipse/devel eclipse.spec,1.643,1.644 Message-ID: <20090724205032.C185611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14741 Modified Files: eclipse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse/devel/eclipse.spec,v retrieving revision 1.643 retrieving revision 1.644 diff -u -p -r1.643 -r1.644 --- eclipse.spec 17 Jun 2009 08:47:48 -0000 1.643 +++ eclipse.spec 24 Jul 2009 20:50:32 -0000 1.644 @@ -29,7 +29,7 @@ Epoch: 1 Summary: An open, extensible IDE Name: eclipse Version: %{eclipse_majmin}.%{eclipse_micro} -Release: 0.2.9%{?dist} +Release: 0.3.9%{?dist} License: EPL Group: Text Editors/Integrated Development Environments (IDE) URL: http://www.eclipse.org/ @@ -1565,6 +1565,9 @@ fi #%{_libdir}/%{name}/configuration/org.eclipse.equinox.source %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.5.0-0.3.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Alexander Kurtakov 1:3.5.0-0.2.9 - Fix package-build template to add target for -Dconfigs. From jkeating at fedoraproject.org Fri Jul 24 20:51:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:51:09 +0000 (UTC) Subject: rpms/eclipse-birt/devel eclipse-birt.spec,1.5,1.6 Message-ID: <20090724205109.3ED6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-birt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15080 Modified Files: eclipse-birt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-birt.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-birt/devel/eclipse-birt.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- eclipse-birt.spec 27 May 2009 07:02:47 -0000 1.5 +++ eclipse-birt.spec 24 Jul 2009 20:51:09 -0000 1.6 @@ -4,7 +4,7 @@ Name: eclipse-birt Version: 2.5 -Release: 0.1.M7%{?dist} +Release: 0.2.M7%{?dist} Summary: Eclipse-based reporting system Group: System Environment/Libraries License: EPL @@ -165,6 +165,9 @@ rm -rf %{buildroot} %doc features/org.eclipse.birt/epl-v10.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-0.2.M7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Alexander Kurtakov 2.5-0.1.M7 - Update to 2.5.0 Milestone 7. - Remove patch1 - merged upstream. From jkeating at fedoraproject.org Fri Jul 24 20:51:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:51:27 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.126,1.127 Message-ID: <20090724205127.20FD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15288 Modified Files: eclipse-cdt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.126 retrieving revision 1.127 diff -u -p -r1.126 -r1.127 --- eclipse-cdt.spec 24 Jul 2009 18:44:17 -0000 1.126 +++ eclipse-cdt.spec 24 Jul 2009 20:51:26 -0000 1.127 @@ -21,7 +21,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 3%{?dist} +Release: 4%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt @@ -536,6 +536,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:6.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Jeff Johnston 6.0.0-3 - Bump release number. - Update Autotools to v200907241319 which has CDT 6.0 fixes. From jkeating at fedoraproject.org Fri Jul 24 20:51:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:51:41 +0000 (UTC) Subject: rpms/eclipse-changelog/devel eclipse-changelog.spec,1.76,1.77 Message-ID: <20090724205141.1611311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-changelog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15453 Modified Files: eclipse-changelog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-changelog.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-changelog/devel/eclipse-changelog.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- eclipse-changelog.spec 15 Apr 2009 23:03:38 -0000 1.76 +++ eclipse-changelog.spec 24 Jul 2009 20:51:40 -0000 1.77 @@ -4,7 +4,7 @@ Epoch: 1 Name: eclipse-changelog Version: 2.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Eclipse ChangeLog plug-in Group: Development/Tools @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{eclipse_base}/dropins/changelog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Jeff Johnston 2.6.7-1 - 2.6.7. - Fixes #268224, #267281, #264343 From jkeating at fedoraproject.org Fri Jul 24 20:51:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:51:55 +0000 (UTC) Subject: rpms/eclipse-checkstyle/devel eclipse-checkstyle.spec,1.8,1.9 Message-ID: <20090724205155.0A91011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-checkstyle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15626 Modified Files: eclipse-checkstyle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-checkstyle.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-checkstyle/devel/eclipse-checkstyle.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- eclipse-checkstyle.spec 21 Jul 2009 19:01:50 -0000 1.8 +++ eclipse-checkstyle.spec 24 Jul 2009 20:51:54 -0000 1.9 @@ -6,7 +6,7 @@ Summary: Checkstyle plugin for Eclipse Name: eclipse-checkstyle Version: 4.0.1 -Release: 13%{?dist} +Release: 14%{?dist} License: LGPLv2+ Group: Development/Tools URL: http://eclipse-cs.sourceforge.net @@ -133,6 +133,9 @@ rm -rf %{buildroot} %{install_loc} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Alexander Kurtakov 4.0.1-13 - Fix build with Eclipse 3.5. - Remove gcj_support. From jkeating at fedoraproject.org Fri Jul 24 20:52:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:52:08 +0000 (UTC) Subject: rpms/eclipse-cmakeed/devel eclipse-cmakeed.spec,1.3,1.4 Message-ID: <20090724205208.DDA1B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-cmakeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15790 Modified Files: eclipse-cmakeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-cmakeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-cmakeed/devel/eclipse-cmakeed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eclipse-cmakeed.spec 23 Mar 2009 15:20:06 -0000 1.3 +++ eclipse-cmakeed.spec 24 Jul 2009 20:52:08 -0000 1.4 @@ -3,7 +3,7 @@ Name: eclipse-cmakeed Version: 1.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: CMake Editor plug-in for Eclipse Group: Development/Tools @@ -45,6 +45,9 @@ find -name '*.jar' -o -name '*.class' -e %doc com.cthing.cmakeed.feature/License.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Alexander Kurtakov 1.1.2-3 - Rebuild to not ship p2 context.xml. From jkeating at fedoraproject.org Fri Jul 24 20:52:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:52:23 +0000 (UTC) Subject: rpms/eclipse-demos/devel eclipse-demos.spec,1.2,1.3 Message-ID: <20090724205223.7956B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-demos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15977 Modified Files: eclipse-demos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-demos.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-demos/devel/eclipse-demos.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- eclipse-demos.spec 24 Feb 2009 13:39:43 -0000 1.2 +++ eclipse-demos.spec 24 Jul 2009 20:52:23 -0000 1.3 @@ -1,6 +1,6 @@ Name: eclipse-demos Version: 0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Eclipse demonstration screencasts Group: Documentation @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}-%{version}/*.ogg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:52:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:52:36 +0000 (UTC) Subject: rpms/eclipse-dltk/devel eclipse-dltk.spec,1.3,1.4 Message-ID: <20090724205236.7184811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-dltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16160 Modified Files: eclipse-dltk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-dltk.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dltk/devel/eclipse-dltk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eclipse-dltk.spec 22 May 2009 17:46:25 -0000 1.3 +++ eclipse-dltk.spec 24 Jul 2009 20:52:35 -0000 1.4 @@ -3,7 +3,7 @@ Name: eclipse-dltk Version: 1.0.0 -Release: 0.5.RC1b%{?dist} +Release: 0.6.RC1b%{?dist} Summary: Dynamic Languages Toolkit (DLTK) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -155,6 +155,9 @@ rm -rf %{buildroot} %doc org.eclipse.dltk.mylyn-feature/rootfiles/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-0.6.RC1b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Alexander Kurtakov 1.0.0-0.5.RC1b - Update to 1.0.0 RC1b. - Use %%global instead of %%define. From jkeating at fedoraproject.org Fri Jul 24 20:52:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:52:50 +0000 (UTC) Subject: rpms/eclipse-dtp/devel eclipse-dtp.spec,1.8,1.9 Message-ID: <20090724205250.64B9111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-dtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16349 Modified Files: eclipse-dtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-dtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-dtp/devel/eclipse-dtp.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- eclipse-dtp.spec 14 Jul 2009 22:11:21 -0000 1.8 +++ eclipse-dtp.spec 24 Jul 2009 20:52:50 -0000 1.9 @@ -7,7 +7,7 @@ Name: eclipse-dtp Version: 1.7.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Eclipse Data Tools Platform Group: System Environment/Libraries License: EPL @@ -139,6 +139,9 @@ rm -rf %{buildroot} %doc org.eclipse.datatools.sdk-all.feature/rootfiles/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Mat Booth 1.7.0-3 - Disable jar repacking because of a bug in redhat-rpm-config, see #461854. - Update dependency on wsdl4j. From jkeating at fedoraproject.org Fri Jul 24 20:53:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:53:02 +0000 (UTC) Subject: rpms/eclipse-eclemma/devel eclipse-eclemma.spec,1.4,1.5 Message-ID: <20090724205302.B00B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-eclemma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16503 Modified Files: eclipse-eclemma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-eclemma.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-eclemma/devel/eclipse-eclemma.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-eclemma.spec 15 May 2009 10:45:53 -0000 1.4 +++ eclipse-eclemma.spec 24 Jul 2009 20:53:02 -0000 1.5 @@ -3,7 +3,7 @@ Name: eclipse-eclemma Version: 1.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java code coverage tool plugin for Eclipse Group: Development/Tools License: EPL and ASL 2.0 @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{install_loc} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Alexander Kurtakov 1.4.1-1 - Update to new upstream version and updated patch1. From jkeating at fedoraproject.org Fri Jul 24 20:53:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:53:15 +0000 (UTC) Subject: rpms/eclipse-eclox/devel eclipse-eclox.spec,1.1,1.2 Message-ID: <20090724205315.D409811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-eclox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16640 Modified Files: eclipse-eclox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-eclox.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-eclox/devel/eclipse-eclox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- eclipse-eclox.spec 12 Jul 2009 18:13:43 -0000 1.1 +++ eclipse-eclox.spec 24 Jul 2009 20:53:15 -0000 1.2 @@ -5,7 +5,7 @@ Name: eclipse-%{pkgname} Version: 0.8.0 -Release: 2.20090616svn%{?dist} +Release: 3.20090616svn%{?dist} Summary: Eclipse-based doxygen plugin Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{install_loc}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-3.20090616svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Chitlesh GOORAH - 0.8.0-2.20090616svn - Packaging - Put documentation into %%doc From jkeating at fedoraproject.org Fri Jul 24 20:53:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:53:32 +0000 (UTC) Subject: rpms/eclipse-egit/devel eclipse-egit.spec,1.23,1.24 Message-ID: <20090724205332.7BB4D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-egit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16828 Modified Files: eclipse-egit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-egit.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-egit/devel/eclipse-egit.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- eclipse-egit.spec 17 Jul 2009 14:50:08 -0000 1.23 +++ eclipse-egit.spec 24 Jul 2009 20:53:32 -0000 1.24 @@ -4,7 +4,7 @@ Summary: Eclipse Git plug-in Name: eclipse-egit Version: 0.5.0 -Release: 1%{?dist} +Release: 2%{?dist} License: EPL and GPLv2 and LGPLv2 URL: http://repo.or.cz/w/egit.git Group: Development/Tools @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{install_loc} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Alexander Kurtakov 0.5.0-1 - Update to 0.5.0. From jkeating at fedoraproject.org Fri Jul 24 20:53:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:53:47 +0000 (UTC) Subject: rpms/eclipse-emf/devel eclipse-emf.spec,1.19,1.20 Message-ID: <20090724205347.2F11511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-emf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17003 Modified Files: eclipse-emf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-emf.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-emf/devel/eclipse-emf.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- eclipse-emf.spec 2 Jul 2009 18:48:05 -0000 1.19 +++ eclipse-emf.spec 24 Jul 2009 20:53:47 -0000 1.20 @@ -4,7 +4,7 @@ Name: eclipse-emf Version: 2.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Eclipse Modeling Framework (EMF) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -206,6 +206,9 @@ rm -rf %{buildroot} %doc org.eclipse.emf.examples-feature/rootfiles/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Mat Booth 2.5.0-2 - SDK requires PDE for example plug-in projects. From jkeating at fedoraproject.org Fri Jul 24 20:54:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:54:02 +0000 (UTC) Subject: rpms/eclipse-epic/devel eclipse-epic.spec,1.12,1.13 Message-ID: <20090724205402.5822311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-epic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17181 Modified Files: eclipse-epic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-epic.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-epic/devel/eclipse-epic.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- eclipse-epic.spec 2 Jun 2009 20:41:53 -0000 1.12 +++ eclipse-epic.spec 24 Jul 2009 20:54:02 -0000 1.13 @@ -2,7 +2,7 @@ Name: eclipse-epic Version: 0.6.35 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl Eclipse plugin Group: Development/Tools License: CPL @@ -133,6 +133,9 @@ rm -rf %{buildroot} %{_datadir}/eclipse/dropins/epic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Mat Booth 0.6.35-1 - Drop GCJ support. - Require Perl::Tidy for code formatting. From jkeating at fedoraproject.org Fri Jul 24 20:54:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:54:17 +0000 (UTC) Subject: rpms/eclipse-findbugs/devel eclipse-findbugs.spec,1.3,1.4 Message-ID: <20090724205417.8363E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-findbugs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17354 Modified Files: eclipse-findbugs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-findbugs.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-findbugs/devel/eclipse-findbugs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- eclipse-findbugs.spec 18 Mar 2009 05:30:12 -0000 1.3 +++ eclipse-findbugs.spec 24 Jul 2009 20:54:17 -0000 1.4 @@ -3,7 +3,7 @@ Name: eclipse-findbugs Version: 1.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Eclipse plugin for FindBugs Group: Development/Languages @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{plugin_dir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Jerry James - 1.3.8-1 - Update to 1.3.8 From jkeating at fedoraproject.org Fri Jul 24 20:54:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:54:32 +0000 (UTC) Subject: rpms/eclipse-gef/devel eclipse-gef.spec,1.22,1.23 Message-ID: <20090724205432.74AB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-gef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17542 Modified Files: eclipse-gef.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-gef.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-gef/devel/eclipse-gef.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- eclipse-gef.spec 2 Jul 2009 18:48:05 -0000 1.22 +++ eclipse-gef.spec 24 Jul 2009 20:54:32 -0000 1.23 @@ -3,7 +3,7 @@ Name: eclipse-gef Version: 3.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Graphical Editing Framework (GEF) Eclipse plugin Group: System Environment/Libraries License: EPL @@ -132,6 +132,9 @@ rm -rf %{buildroot} %doc org.eclipse.gef.examples-feature/rootfiles/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Mat Booth 3.5.0-2 - SDK requires PDE for example plug-in projects. From jkeating at fedoraproject.org Fri Jul 24 20:54:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:54:47 +0000 (UTC) Subject: rpms/eclipse-linuxprofilingframework/devel eclipse-linuxprofilingframework.spec, 1.11, 1.12 Message-ID: <20090724205447.4F79211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-linuxprofilingframework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17715 Modified Files: eclipse-linuxprofilingframework.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-linuxprofilingframework.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-linuxprofilingframework/devel/eclipse-linuxprofilingframework.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- eclipse-linuxprofilingframework.spec 15 May 2009 18:15:53 -0000 1.11 +++ eclipse-linuxprofilingframework.spec 24 Jul 2009 20:54:47 -0000 1.12 @@ -8,7 +8,7 @@ Name: eclipse-linuxprofilingframework Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Eclipse Linux Tools Profiling Framework Group: Development/Tools @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{install_loc} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Elliott Baron 0.2.0-2 - Fixing tag. From jkeating at fedoraproject.org Fri Jul 24 20:55:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:55:03 +0000 (UTC) Subject: rpms/eclipse-moreunit/devel eclipse-moreunit.spec,1.5,1.6 Message-ID: <20090724205503.1BA1A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-moreunit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17863 Modified Files: eclipse-moreunit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-moreunit.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-moreunit/devel/eclipse-moreunit.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- eclipse-moreunit.spec 6 May 2009 09:17:27 -0000 1.5 +++ eclipse-moreunit.spec 24 Jul 2009 20:55:02 -0000 1.6 @@ -4,7 +4,7 @@ Name: eclipse-moreunit Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An Eclipse plugin that assists with writing more unit tests Group: Development/Tools @@ -51,6 +51,9 @@ install -d -m 755 %{buildroot}%{install_ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Alexander Kurtakov 1.3.3-1 - Update to new upstream version 1.3.3. From jkeating at fedoraproject.org Fri Jul 24 20:55:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:55:18 +0000 (UTC) Subject: rpms/eclipse-mylyn/devel eclipse-mylyn.spec,1.38,1.39 Message-ID: <20090724205518.715D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-mylyn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18019 Modified Files: eclipse-mylyn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-mylyn.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-mylyn/devel/eclipse-mylyn.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- eclipse-mylyn.spec 22 Apr 2009 14:47:05 -0000 1.38 +++ eclipse-mylyn.spec 24 Jul 2009 20:55:18 -0000 1.39 @@ -11,7 +11,7 @@ Name: eclipse-mylyn Summary: Mylyn is a task-focused UI for Eclipse Version: 3.1.1 -Release: 1%{?dist} +Release: 2%{?dist} License: EPL URL: http://www.eclipse.org/mylyn @@ -327,6 +327,9 @@ rm -rf %{buildroot} # FIXME: add the doc files back %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Andrew Overholt 3.1.1-1 - 3.1.1 - Bug fixes from 3.1.0: http://tinyurl.com/mylyn-3-1-1bugs From jkeating at fedoraproject.org Fri Jul 24 20:55:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:55:33 +0000 (UTC) Subject: rpms/eclipse-nls/devel eclipse-nls.spec,1.5,1.6 Message-ID: <20090724205533.339F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-nls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18200 Modified Files: eclipse-nls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-nls.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-nls/devel/eclipse-nls.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- eclipse-nls.spec 14 Jul 2009 03:22:28 -0000 1.5 +++ eclipse-nls.spec 24 Jul 2009 20:55:33 -0000 1.6 @@ -10,7 +10,7 @@ License: EPL URL: http://babel.eclipse.org/ Version: 3.5.0.v20090620043401 -Release: 1%{?dist} +Release: 2%{?dist} ## The source for this package is taken from # http://download.eclipse.org/technology/babel/babel_language_packs/ *.zip # and http://download.eclipse.org/technology/babel/update-site/galileo/{artifacts,content}.jar @@ -138,6 +138,9 @@ cp -a eclipse $RPM_BUILD_ROOT%{eclipse_d rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.0.v20090620043401-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Sean Flanigan - 3.5.0.v20090620043401-1 - Updated to Babel's release "0.7" - Created a new fetch-babel.sh to automate the zip downloads From jkeating at fedoraproject.org Fri Jul 24 20:55:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:55:49 +0000 (UTC) Subject: rpms/eclipse-oprofile/devel eclipse-oprofile.spec,1.9,1.10 Message-ID: <20090724205549.2BB1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-oprofile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18352 Modified Files: eclipse-oprofile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-oprofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-oprofile/devel/eclipse-oprofile.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- eclipse-oprofile.spec 18 Jun 2009 09:36:02 -0000 1.9 +++ eclipse-oprofile.spec 24 Jul 2009 20:55:48 -0000 1.10 @@ -14,7 +14,7 @@ Name: eclipse-oprofile Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Eclipse plugin for OProfile integration Group: Development/Tools @@ -109,6 +109,9 @@ chmod +x \ %{_sysconfdir}/pam.d/opcontrol %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Alexander Kurtakov 0.2.0-2 - Add -Dconfigs to fix compile. From jkeating at fedoraproject.org Fri Jul 24 20:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:56:04 +0000 (UTC) Subject: rpms/eclipse-photran/devel eclipse-photran.spec,1.9,1.10 Message-ID: <20090724205604.1C20611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-photran/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18518 Modified Files: eclipse-photran.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-photran.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-photran/devel/eclipse-photran.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- eclipse-photran.spec 7 Apr 2009 14:57:51 -0000 1.9 +++ eclipse-photran.spec 24 Jul 2009 20:56:03 -0000 1.10 @@ -8,7 +8,7 @@ Summary: Eclipse Fortran Development Tools (Photran) plugin Name: eclipse-photran Version: %{majmin}.%{patch} -Release: 0.6.b5%{?dist} +Release: 0.7.b5%{?dist} License: EPL Group: Development/Tools URL: http://www.eclipse.org/photran @@ -128,6 +128,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.0-0.7.b5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Orion Poplawski - 4.0.0-0.6.b5 - Add patch from discussion list to fix outline view From jkeating at fedoraproject.org Fri Jul 24 20:56:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:56:21 +0000 (UTC) Subject: rpms/eclipse-phpeclipse/devel eclipse-phpeclipse.spec,1.12,1.13 Message-ID: <20090724205621.432F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-phpeclipse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18671 Modified Files: eclipse-phpeclipse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-phpeclipse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-phpeclipse/devel/eclipse-phpeclipse.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- eclipse-phpeclipse.spec 5 Apr 2009 19:05:35 -0000 1.12 +++ eclipse-phpeclipse.spec 24 Jul 2009 20:56:21 -0000 1.13 @@ -3,7 +3,7 @@ Name: eclipse-phpeclipse Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PHP Eclipse plugin Group: Development/Tools License: CPL @@ -113,6 +113,9 @@ rm -rf %{buildroot} %{eclipse_dropin}/phpeclipse-xdebug %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Mat Booth 1.2.1-4 - Drop GCJ AOT support. - Add htmlparser dependency and drop htmlparser patch. From jkeating at fedoraproject.org Fri Jul 24 20:56:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:56:37 +0000 (UTC) Subject: rpms/eclipse-pydev/devel eclipse-pydev.spec,1.30,1.31 Message-ID: <20090724205637.46AFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-pydev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18833 Modified Files: eclipse-pydev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-pydev.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-pydev/devel/eclipse-pydev.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- eclipse-pydev.spec 20 Jul 2009 08:53:50 -0000 1.30 +++ eclipse-pydev.spec 24 Jul 2009 20:56:37 -0000 1.31 @@ -14,7 +14,7 @@ Epoch: 1 Summary: Eclipse Python development plug-in Name: eclipse-pydev Version: %{major}.%{minor}.%{maint} -Release: 2%{?dist} +Release: 3%{?dist} License: EPL URL: http://pydev.sourceforge.net Group: Development/Tools @@ -214,6 +214,9 @@ rm -rf ${RPM_BUILD_ROOT} %{install_loc}/pydev-mylyn %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Alexander Kurtakov 1:1.4.7-2 - Require pylint to fix errors in pydev settings. From jkeating at fedoraproject.org Fri Jul 24 20:56:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:56:54 +0000 (UTC) Subject: rpms/eclipse-quickrex/devel eclipse-quickrex.spec,1.10,1.11 Message-ID: <20090724205654.C625611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-quickrex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19003 Modified Files: eclipse-quickrex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-quickrex.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-quickrex/devel/eclipse-quickrex.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- eclipse-quickrex.spec 26 Feb 2009 11:44:01 -0000 1.10 +++ eclipse-quickrex.spec 24 Jul 2009 20:56:53 -0000 1.11 @@ -7,7 +7,7 @@ Name: eclipse-quickrex Version: 3.5.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: %{upstream_name} is a regular-expression test Eclipse Plug-In Group: Development/Tools @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{install_loc}/quickrex %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Alphonse Van Assche 3.5.0-11 - rebuilt From jkeating at fedoraproject.org Fri Jul 24 20:57:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:57:11 +0000 (UTC) Subject: rpms/eclipse-rpm-editor/devel eclipse-rpm-editor.spec,1.27,1.28 Message-ID: <20090724205711.4518811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-rpm-editor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19192 Modified Files: eclipse-rpm-editor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-rpm-editor.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-rpm-editor/devel/eclipse-rpm-editor.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- eclipse-rpm-editor.spec 14 May 2009 11:33:19 -0000 1.27 +++ eclipse-rpm-editor.spec 24 Jul 2009 20:57:11 -0000 1.28 @@ -3,7 +3,7 @@ Name: eclipse-rpm-editor Version: 0.4.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: RPM Specfile editor for Eclipse Group: Development/Tools License: EPL @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{install_loc}/rpm-editor %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Alexander Kurtakov 0.4.2-3 - Update to LinuxTools 0.2 release. From jkeating at fedoraproject.org Fri Jul 24 20:57:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:57:32 +0000 (UTC) Subject: rpms/eclipse-rpmstubby/devel eclipse-rpmstubby.spec,1.4,1.5 Message-ID: <20090724205732.697C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-rpmstubby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19421 Modified Files: eclipse-rpmstubby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-rpmstubby.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-rpmstubby/devel/eclipse-rpmstubby.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-rpmstubby.spec 14 May 2009 10:56:28 -0000 1.4 +++ eclipse-rpmstubby.spec 24 Jul 2009 20:57:32 -0000 1.5 @@ -3,7 +3,7 @@ Name: eclipse-rpmstubby Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Rpm specfile generator for Eclipse features Group: Development/Tools @@ -49,6 +49,9 @@ install -d -m 755 %{buildroot}%{install_ %doc org.eclipse.linuxtools.rpmstubby/ChangeLog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Alexander Kurtakov 0.1.1-3 - Update to Linux Tools 0.2 release. From jkeating at fedoraproject.org Fri Jul 24 20:57:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:57:47 +0000 (UTC) Subject: rpms/eclipse-rse/devel eclipse-rse.spec,1.1,1.2 Message-ID: <20090724205747.AD53911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-rse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19652 Modified Files: eclipse-rse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-rse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-rse/devel/eclipse-rse.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- eclipse-rse.spec 23 Jul 2009 20:24:06 -0000 1.1 +++ eclipse-rse.spec 24 Jul 2009 20:57:47 -0000 1.2 @@ -4,7 +4,7 @@ Name: eclipse-rse Summary: Eclipse Remote System Explorer Version: 3.0.3 -Release: 1%{?dist} +Release: 2%{?dist} License: EPL URL: http://www.eclipse.org/dsdp/tm/ @@ -91,6 +91,9 @@ rm -rf %{buildroot} %doc org.eclipse.rse.sdk-feature/license.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jeff Johnston 3.0.3-1 - Initial release. From jkeating at fedoraproject.org Fri Jul 24 20:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:58:04 +0000 (UTC) Subject: rpms/eclipse-setools/devel eclipse-setools.spec,1.10,1.11 Message-ID: <20090724205804.BE7ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-setools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19864 Modified Files: eclipse-setools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-setools.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-setools/devel/eclipse-setools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- eclipse-setools.spec 10 Mar 2009 17:52:52 -0000 1.10 +++ eclipse-setools.spec 24 Jul 2009 20:58:04 -0000 1.11 @@ -34,7 +34,7 @@ Version: 3.3.5.1 #Release: 0.2.svn1998%{?dist} Source0: http://oss.tresys.com/projects/slide/chrome/site/src/%{name}-%{version}.tar.gz -Release: 1%{?dist} +Release: 2%{?dist} %ifarch %{ix86} %define arch x86 %else @@ -125,6 +125,9 @@ fi %{eclipse_base} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Dave Sugar - 3.3.5.1-1 - Update to setools 3.3.5 release From jkeating at fedoraproject.org Fri Jul 24 20:58:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:58:20 +0000 (UTC) Subject: rpms/eclipse-shelled/devel eclipse-shelled.spec,1.4,1.5 Message-ID: <20090724205820.3D01C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-shelled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20043 Modified Files: eclipse-shelled.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-shelled.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-shelled/devel/eclipse-shelled.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-shelled.spec 23 Mar 2009 16:40:18 -0000 1.4 +++ eclipse-shelled.spec 24 Jul 2009 20:58:20 -0000 1.5 @@ -4,7 +4,7 @@ Summary: Eclipse Shell script editor Name: eclipse-shelled Version: 1.0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: CPL URL: http://sourceforge.net/projects/shelled Group: Development/Tools @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %doc com.something.eclipse.shelled.resources/about.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Alexander Kurtakov 1.0.4-3 - Rebuild to not ship p2 context.xml. From jkeating at fedoraproject.org Fri Jul 24 20:58:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:58:43 +0000 (UTC) Subject: rpms/eclipse-slide/devel eclipse-slide.spec,1.16,1.17 Message-ID: <20090724205843.2F51B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-slide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20287 Modified Files: eclipse-slide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-slide.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-slide/devel/eclipse-slide.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- eclipse-slide.spec 9 Jun 2009 17:22:13 -0000 1.16 +++ eclipse-slide.spec 24 Jul 2009 20:58:42 -0000 1.17 @@ -21,7 +21,7 @@ BuildRequires: ganymed-ssh2 #Release: 0.1.svn2029%{?dist} Source0: http://oss.tresys.com/projects/slide/chrome/site/src/%{name}-%{version}.tar.gz -Release: 1%{?dist} +Release: 2%{?dist} %define eclipse_name eclipse %define eclipse_base %{_datadir}/%{eclipse_name}/dropins/slide @@ -132,6 +132,9 @@ fi %{eclipse_base}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 8 2009 Dave Sugar - 1.3.13-1 - export support to subclass audit view From jkeating at fedoraproject.org Fri Jul 24 20:59:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:59:01 +0000 (UTC) Subject: rpms/eclipse-subclipse/devel eclipse-subclipse.spec,1.31,1.32 Message-ID: <20090724205901.40E9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-subclipse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20519 Modified Files: eclipse-subclipse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-subclipse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-subclipse/devel/eclipse-subclipse.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- eclipse-subclipse.spec 6 Apr 2009 15:11:14 -0000 1.31 +++ eclipse-subclipse.spec 24 Jul 2009 20:59:01 -0000 1.32 @@ -6,7 +6,7 @@ Name: eclipse-subclipse Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Subversion Eclipse plugin Group: Development/Tools @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 26 2009 Robert Marcano 1.6.0-1 - Update to upstream 1.6.0 From jkeating at fedoraproject.org Fri Jul 24 20:59:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:59:18 +0000 (UTC) Subject: rpms/eclipse-systemtapgui/devel eclipse-systemtapgui.spec,1.4,1.5 Message-ID: <20090724205918.7EF0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-systemtapgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20685 Modified Files: eclipse-systemtapgui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-systemtapgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-systemtapgui/devel/eclipse-systemtapgui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eclipse-systemtapgui.spec 5 Mar 2009 13:44:50 -0000 1.4 +++ eclipse-systemtapgui.spec 24 Jul 2009 20:59:17 -0000 1.5 @@ -2,7 +2,7 @@ Name: eclipse-systemtapgui Version: 1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Eclipse plugins for SystemTap Group: Development/Tools @@ -45,6 +45,9 @@ rm -rf %{buildroot} %doc com.ibm.systemtapgui.systemtap.feature/epl-v10.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Anithra P Janakiraman 1.0-7 - Bumping release to get rid of tag problems * Thu Mar 05 2009 Anithra P Janakiraman 1.0-6 From jkeating at fedoraproject.org Fri Jul 24 20:59:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:59:32 +0000 (UTC) Subject: rpms/eclipse-valgrind/devel eclipse-valgrind.spec,1.13,1.14 Message-ID: <20090724205932.1B1E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20868 Modified Files: eclipse-valgrind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-valgrind/devel/eclipse-valgrind.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- eclipse-valgrind.spec 2 Jul 2009 20:34:50 -0000 1.13 +++ eclipse-valgrind.spec 24 Jul 2009 20:59:31 -0000 1.14 @@ -8,7 +8,7 @@ Name: eclipse-valgrind Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Valgrind Tools Integration for Eclipse Group: Development/Tools @@ -66,6 +66,9 @@ install -d -m 755 %{buildroot}%{install_ %doc org.eclipse.linuxtools.valgrind-feature/epl-v10.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Elliott Baron 0.2.1-2 - Fix Massif parsing for unknown symbols (Eclipse#281417). From jkeating at fedoraproject.org Fri Jul 24 20:59:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:59:58 +0000 (UTC) Subject: rpms/eclipse-veditor/devel eclipse-veditor.spec,1.1,1.2 Message-ID: <20090724205958.317D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eclipse-veditor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21113 Modified Files: eclipse-veditor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eclipse-veditor.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-veditor/devel/eclipse-veditor.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- eclipse-veditor.spec 17 Jun 2009 17:31:16 -0000 1.1 +++ eclipse-veditor.spec 24 Jul 2009 20:59:58 -0000 1.2 @@ -4,7 +4,7 @@ Name: eclipse-%{pkgname} Version: 0.6.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Eclipse-based Verilog/VHDL plugin Group: Applications/Engineering @@ -75,6 +75,9 @@ ant -verbose -f %{pkgname}/buildjavacc.x %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2008 Chitlesh GOORAH - 0.6.3-3 - fixed source0's url From jkeating at fedoraproject.org Fri Jul 24 21:00:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:00:17 +0000 (UTC) Subject: rpms/ecolier-court-fonts/devel ecolier-court-fonts.spec,1.9,1.10 Message-ID: <20090724210017.6197811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ecolier-court-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21336 Modified Files: ecolier-court-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ecolier-court-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ecolier-court-fonts/devel/ecolier-court-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ecolier-court-fonts.spec 24 Feb 2009 13:58:13 -0000 1.9 +++ ecolier-court-fonts.spec 24 Jul 2009 21:00:17 -0000 1.10 @@ -11,7 +11,7 @@ this package. Name: %{fontname}-fonts Version: 20070702 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Schoolchildren cursive fonts Group: User Interface/X @@ -107,6 +107,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070702-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070702-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:00:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:00:43 +0000 (UTC) Subject: rpms/ecore/devel ecore.spec,1.15,1.16 Message-ID: <20090724210043.7F31E11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ecore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21582 Modified Files: ecore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ecore.spec =================================================================== RCS file: /cvs/pkgs/rpms/ecore/devel/ecore.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ecore.spec 24 Feb 2009 13:59:05 -0000 1.15 +++ ecore.spec 24 Jul 2009 21:00:43 -0000 1.16 @@ -1,6 +1,6 @@ Name: ecore Version: 0.9.9.050 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Event/X abstraction layer Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.050-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.9.050-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:01:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:01:07 +0000 (UTC) Subject: rpms/ecryptfs-utils/devel ecryptfs-utils.spec,1.49,1.50 Message-ID: <20090724210107.E959411C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ecryptfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21892 Modified Files: ecryptfs-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ecryptfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/ecryptfs-utils/devel/ecryptfs-utils.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- ecryptfs-utils.spec 20 Jul 2009 13:44:41 -0000 1.49 +++ ecryptfs-utils.spec 24 Jul 2009 21:01:07 -0000 1.50 @@ -3,7 +3,7 @@ Name: ecryptfs-utils Version: 76 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The eCryptfs mount helper and support libraries Group: System Environment/Base License: GPLv2+ @@ -177,6 +177,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/ecryptfs-utils/_libecryptfs.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 76-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Michal Hlavinka 76-1 - updated to 76 From jkeating at fedoraproject.org Fri Jul 24 21:01:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:01:31 +0000 (UTC) Subject: rpms/ed/devel ed.spec,1.34,1.35 Message-ID: <20090724210131.22D8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22150 Modified Files: ed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ed.spec =================================================================== RCS file: /cvs/pkgs/rpms/ed/devel/ed.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- ed.spec 24 Feb 2009 13:59:59 -0000 1.34 +++ ed.spec 24 Jul 2009 21:01:30 -0000 1.35 @@ -1,7 +1,7 @@ Summary: The GNU line editor Name: ed Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Text Source: ftp://ftp.gnu.org/gnu/ed/%{name}-%{version}.tar.bz2 @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:01:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:01:46 +0000 (UTC) Subject: rpms/ed2k_hash/devel ed2k_hash.spec,1.7,1.8 Message-ID: <20090724210146.733B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ed2k_hash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22419 Modified Files: ed2k_hash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ed2k_hash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ed2k_hash/devel/ed2k_hash.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ed2k_hash.spec 24 Feb 2009 14:00:52 -0000 1.7 +++ ed2k_hash.spec 24 Jul 2009 21:01:46 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Edonkey 2000 file hash calculator Name: ed2k_hash Version: 0.4.0 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://ed2k-tools.sourceforge.net/index.shtml Group: Applications/File Source0: http://dl.sourceforge.net/sourceforge/ed2k-tools/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ touch --no-create %{_datadir}/icons/hico %{_iconsdir}/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:02:04 +0000 (UTC) Subject: rpms/edac-utils/devel edac-utils.spec,1.6,1.7 Message-ID: <20090724210204.6CBD811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/edac-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22661 Modified Files: edac-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: edac-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/edac-utils/devel/edac-utils.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- edac-utils.spec 24 Feb 2009 14:01:43 -0000 1.6 +++ edac-utils.spec 24 Jul 2009 21:02:03 -0000 1.7 @@ -1,6 +1,6 @@ Name: edac-utils Version: 0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Userspace helper for kernel EDAC drivers Group: System Environment/Base @@ -83,6 +83,9 @@ fi %{_includedir}/edac.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:02:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:02:25 +0000 (UTC) Subject: rpms/edb/devel edb.spec,1.24,1.25 Message-ID: <20090724210225.664C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/edb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22835 Modified Files: edb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: edb.spec =================================================================== RCS file: /cvs/pkgs/rpms/edb/devel/edb.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- edb.spec 11 Jul 2009 22:48:15 -0000 1.24 +++ edb.spec 24 Jul 2009 21:02:25 -0000 1.25 @@ -1,6 +1,6 @@ Name: edb Version: 0.9.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A debugger based on the ptrace API and Qt4 Group: Development/Debuggers @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Nicoleau Fabien 0.9.10-1 - Rebuild for 0.9.10 * Wed May 27 2009 Nicoleau Fabien 0.9.9-1 From jkeating at fedoraproject.org Fri Jul 24 21:02:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:02:41 +0000 (UTC) Subject: rpms/edje/devel edje.spec,1.10,1.11 Message-ID: <20090724210241.B29CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/edje/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23002 Modified Files: edje.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: edje.spec =================================================================== RCS file: /cvs/pkgs/rpms/edje/devel/edje.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- edje.spec 24 Feb 2009 14:03:41 -0000 1.10 +++ edje.spec 24 Jul 2009 21:02:41 -0000 1.11 @@ -1,6 +1,6 @@ Name: edje Version: 0.9.9.050 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A graphical layout and animation library Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.050-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.9.050-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:02:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:02:56 +0000 (UTC) Subject: rpms/edsadmin/devel edsadmin.spec,1.4,1.5 Message-ID: <20090724210256.C731B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/edsadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23173 Modified Files: edsadmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: edsadmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/edsadmin/devel/edsadmin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- edsadmin.spec 24 Feb 2009 14:04:38 -0000 1.4 +++ edsadmin.spec 24 Jul 2009 21:02:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: edsadmin Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An LDAP server administration tool Group: Applications/System License: GPLv2+ @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man[^3]/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:03:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:03:13 +0000 (UTC) Subject: rpms/eel2/devel eel2.spec,1.119,1.120 Message-ID: <20090724210313.20C7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eel2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23309 Modified Files: eel2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eel2.spec =================================================================== RCS file: /cvs/pkgs/rpms/eel2/devel/eel2.spec,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- eel2.spec 16 Mar 2009 12:59:27 -0000 1.119 +++ eel2.spec 24 Jul 2009 21:03:12 -0000 1.120 @@ -18,7 +18,7 @@ Name: eel2 Summary: Eazel Extensions Library Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/eel/2.26/eel-%{version}.tar.bz2 @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/eel-2 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Tomas Bzatek - 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Fri Jul 24 21:03:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:03:42 +0000 (UTC) Subject: rpms/eet/devel eet.spec,1.13,1.14 Message-ID: <20090724210342.C8A9E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23553 Modified Files: eet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eet.spec =================================================================== RCS file: /cvs/pkgs/rpms/eet/devel/eet.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- eet.spec 24 Feb 2009 14:06:46 -0000 1.13 +++ eet.spec 24 Jul 2009 21:03:41 -0000 1.14 @@ -1,6 +1,6 @@ Name: eet Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for speedy data storage, retrieval, and compression Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:03:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:03:59 +0000 (UTC) Subject: rpms/efax/devel efax.spec,1.25,1.26 Message-ID: <20090724210359.9DB1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/efax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23790 Modified Files: efax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: efax.spec =================================================================== RCS file: /cvs/pkgs/rpms/efax/devel/efax.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- efax.spec 24 Feb 2009 14:07:49 -0000 1.25 +++ efax.spec 24 Jul 2009 21:03:59 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A program for faxing using a Class 1, 2 or 2.0 fax modem. Name: efax Version: 0.9a -Release: 4.001114%{?dist} +Release: 5.001114%{?dist} License: GPLv2+ Group: Applications/Communications Url: http://www.cce.com/efax/ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %dir %{_localstatedir}/log/fax %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9a-5.001114 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9a-4.001114 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:04:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:04:14 +0000 (UTC) Subject: rpms/efibootmgr/devel efibootmgr.spec,1.8,1.9 Message-ID: <20090724210414.1578D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/efibootmgr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23949 Modified Files: efibootmgr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: efibootmgr.spec =================================================================== RCS file: /cvs/pkgs/rpms/efibootmgr/devel/efibootmgr.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- efibootmgr.spec 6 Mar 2009 16:30:26 -0000 1.8 +++ efibootmgr.spec 24 Jul 2009 21:04:13 -0000 1.9 @@ -1,7 +1,7 @@ Summary: EFI Boot Manager Name: efibootmgr Version: 0.5.4 -Release: 6%{?dist} +Release: 7%{?dist} Group: System Environment/Base License: GPLv2+ URL: http://linux.dell.com/%{name}/ @@ -46,6 +46,9 @@ rm -rf %{buildroot} %doc README INSTALL COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Matt Domsch - 0.5.4-6 - make ExclusiveArch %%{ix86} now that packages are being built as .i586 From jkeating at fedoraproject.org Fri Jul 24 21:04:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:04:28 +0000 (UTC) Subject: rpms/efreet/devel efreet.spec,1.5,1.6 Message-ID: <20090724210428.423EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/efreet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24115 Modified Files: efreet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: efreet.spec =================================================================== RCS file: /cvs/pkgs/rpms/efreet/devel/efreet.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- efreet.spec 24 Feb 2009 14:09:45 -0000 1.5 +++ efreet.spec 24 Jul 2009 21:04:27 -0000 1.6 @@ -1,6 +1,6 @@ Name: efreet Version: 0.5.0.050 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Implementation of several specifications from freedesktop.org Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0.050-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0.050-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:04:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:04:43 +0000 (UTC) Subject: rpms/efte/devel efte.spec,1.2,1.3 Message-ID: <20090724210443.2B77311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/efte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24294 Modified Files: efte.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: efte.spec =================================================================== RCS file: /cvs/pkgs/rpms/efte/devel/efte.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- efte.spec 16 Jul 2009 09:35:13 -0000 1.2 +++ efte.spec 24 Jul 2009 21:04:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: efte Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A lightweight, extendable, folding text editor for X11 Group: Applications/Editors License: GPLv2+ or Artistic @@ -133,6 +133,9 @@ update-desktop-database &> /dev/null || %{_datadir}/efte/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 1.0-5 - Fix EPEL build. From jkeating at fedoraproject.org Fri Jul 24 21:04:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:04:58 +0000 (UTC) Subject: rpms/eg/devel eg.spec,1.6,1.7 Message-ID: <20090724210458.A51BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24455 Modified Files: eg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eg.spec =================================================================== RCS file: /cvs/pkgs/rpms/eg/devel/eg.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- eg.spec 24 Feb 2009 14:10:41 -0000 1.6 +++ eg.spec 24 Jul 2009 21:04:58 -0000 1.7 @@ -1,6 +1,6 @@ Name: eg Version: 0.97 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Git for mere mortals Group: Development/Tools @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.97-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.97-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:05:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:05:13 +0000 (UTC) Subject: rpms/egd/devel egd.spec,1.3,1.4 Message-ID: <20090724210513.F1DFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/egd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24673 Modified Files: egd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: egd.spec =================================================================== RCS file: /cvs/pkgs/rpms/egd/devel/egd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- egd.spec 24 Feb 2009 14:11:41 -0000 1.3 +++ egd.spec 24 Jul 2009 21:05:13 -0000 1.4 @@ -1,7 +1,7 @@ Name: egd Summary: Entropy Gathering Daemon Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or MIT Group: Applications/System Source0: http://download.sourceforge.net/egd/%{name}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/egd.pl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 20:42:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 20:42:16 +0000 (UTC) Subject: rpms/dx/devel dx.spec,1.14,1.15 Message-ID: <20090724204216.1B98511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/dx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9769 Modified Files: dx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: dx.spec =================================================================== RCS file: /cvs/pkgs/rpms/dx/devel/dx.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- dx.spec 24 Feb 2009 13:13:10 -0000 1.14 +++ dx.spec 24 Jul 2009 20:42:15 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Open source version of IBM's Visualization Data Explorer Name: dx Version: 4.4.4 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://www.opendx.org/ Group: Applications/Engineering Source0: http://opendx.npaci.edu/source/%{name}-%{version}.tar.gz @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.4.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Fri Jul 24 21:13:36 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:13:36 +0000 (UTC) Subject: rpms/xine-ui/EL-5 xine-ui.spec,1.2,1.3 Message-ID: <20090724211336.D7B2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28345/EL-5 Modified Files: xine-ui.spec Log Message: Move xine_splash.png to main package. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/EL-5/xine-ui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xine-ui.spec 18 May 2009 18:10:02 -0000 1.2 +++ xine-ui.spec 24 Jul 2009 21:13:36 -0000 1.3 @@ -3,13 +3,48 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 11%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ Source0: http://downloads.sourceforge.net/xine/xine-ui-%{version}.tar.gz # Patch to enable linking to shared library version of lirc Patch0: xine-ui-0.99.5-shared-lirc.patch +# Patch to use UTF-8 documentation, BZ #512598 +Patch1: xine-ui-0.99.5-utf8doc.patch + +# Sources for -skins. Ugh. +Source1: http://xine.sourceforge.net/skins/Antares.tar.gz +Source2: http://xine.sourceforge.net/skins/Bambino-Black.tar.gz +Source3: http://xine.sourceforge.net/skins/Bambino-Blue.tar.gz +Source4: http://xine.sourceforge.net/skins/Bambino-Green.tar.gz +Source5: http://xine.sourceforge.net/skins/Bambino-Orange.tar.gz +Source6: http://xine.sourceforge.net/skins/Bambino-Pink.tar.gz +Source7: http://xine.sourceforge.net/skins/Bambino-Purple.tar.gz +Source8: http://xine.sourceforge.net/skins/Bambino-White.tar.gz +Source9: http://xine.sourceforge.net/skins/blackslim2.tar.gz +Source10: http://xine.sourceforge.net/skins/Bluton.tar.gz +Source11: http://xine.sourceforge.net/skins/caramel.tar.gz +Source12: http://xine.sourceforge.net/skins/CelomaChrome.tar.gz +Source13: http://xine.sourceforge.net/skins/CelomaGold.tar.gz +Source14: http://xine.sourceforge.net/skins/CelomaMdk.tar.gz +Source15: http://xine.sourceforge.net/skins/Centori.tar.gz +Source16: http://xine.sourceforge.net/skins/cloudy.tar.gz +Source17: http://xine.sourceforge.net/skins/concept.tar.gz +Source18: http://xine.sourceforge.net/skins/Crystal.tar.gz +Source19: http://xine.sourceforge.net/skins/Galaxy.tar.gz +Source20: http://xine.sourceforge.net/skins/gudgreen.tar.gz +Source21: http://xine.sourceforge.net/skins/KeramicRH8.tar.gz +Source22: http://xine.sourceforge.net/skins/Keramic.tar.gz +Source23: http://xine.sourceforge.net/skins/lcd.tar.gz +Source24: http://xine.sourceforge.net/skins/mp2k.tar.gz +Source25: http://xine.sourceforge.net/skins/mplayer.tar.gz +Source26: http://xine.sourceforge.net/skins/OMS_legacy.tar.gz +Source27: http://xine.sourceforge.net/skins/pitt.tar.gz +Source28: http://xine.sourceforge.net/skins/Polaris.tar.gz +Source29: http://xine.sourceforge.net/skins/Sunset.tar.gz +Source30: http://xine.sourceforge.net/skins/xinium.tar.gz + BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Package was named xine in rpmfusion @@ -24,6 +59,7 @@ BuildRequires: libcaca-devel BuildRequires: libpng-devel BuildRequires: libtermcap-devel BuildRequires: libXft-devel +BuildRequires: libXi-devel BuildRequires: libXinerama-devel BuildRequires: libXt-devel BuildRequires: libXtst-devel @@ -32,21 +68,47 @@ BuildRequires: libXxf86vm-devel BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 +BuildRequires: xorg-x11-proto-devel Conflicts: xine-skins <= 1.0 # For dir ownership Requires: hicolor-icon-theme +Requires: xine-lib # To make aaxine work Requires: xine-lib-extras %description -xine-ui is the default GUI for xine-lib. +xine-ui is the traditional, skinned GUI for xine-lib. + + +# Skins + +%package skins +Summary: Extra skins for xine-ui +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} +# Package in RPMFusion was named skine-skins +Obsoletes: xine-skins +%if 0%{?fedora}>10 || 0%{?rhel}>5 +BuildArch: noarch +%endif + +%description skins +This package contains extra skins for xine-ui. + %prep -%setup -q +# Setup xine +%setup0 -q +# Setup skins +%setup1 -T -q -c -n %{name}-%{version}/fedoraskins -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18 -a19 -a20 -a21 -a22 -a23 -a24 -a25 -a26 -a27 -a28 -a29 -a30 +# Restore directory +%setup -T -D + # Backup time stamp touch -r m4/_xine.m4 m4/_xine.m4.stamp %patch0 -p1 +%patch1 -p1 # and restore it touch -r m4/_xine.m4.stamp m4/_xine.m4 @@ -78,12 +140,17 @@ for f in doc/man/pl/*.1* doc/README?{cs, mv $f.utf8 $f done +cp -a src/xitk/xine-toolkit/README doc/README.xitk + +# Clean out skins +find fedoraskins/ -type d -name "CVS" -exec rm -rf {} \; || : +find fedoraskins/ -type d -name ".xvpics" -exec rm -rf {} \; || : %build -%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib +%configure --disable-dependency-tracking --enable-vdr-keys --with-aalib XINE_DOCPATH=%{_docdir}/%{name}-%{version} +# Set documentation directory make %{?_smp_mflags} - %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" @@ -96,8 +163,11 @@ desktop-file-install --remove-category=" # Remove the desktop file installed in the wrong place rm -rf %{buildroot}%{_datadir}/xine/desktop -# Remove documentation installed by make install -rm -rf %{buildroot}%{_docdir} +# Remove automatically installed documentation (listed in %doc) +rm -rf %{buildroot}%{_docdir}/ + +# Install extra skins +cp -a fedoraskins/* %{buildroot}%{_datadir}/xine/skins/ %clean @@ -133,7 +203,13 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_bindir}/xine-bugreport %{_bindir}/xine-check %{_bindir}/xine-remote -%{_datadir}/xine/ + +%dir %{_datadir}/xine/skins/ +%{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/skins/xine_splash.png +%{_datadir}/xine/oxine/ +%{_datadir}/xine/visuals/ + %{_datadir}/applications/*xine.desktop %{_datadir}/icons/hicolor/*x*/apps/xine.png %{_datadir}/pixmaps/xine.xpm @@ -143,12 +219,29 @@ gtk-update-icon-cache %{_datadir}/icons/ %lang(fr) %{_mandir}/fr/man1/*.1.gz %lang(pl) %{_mandir}/pl/man1/*.1.gz +%files skins +%defattr(-,root,root,-) +%{_datadir}/xine/skins/* +%exclude %{_datadir}/xine/skins/xinetic/ +%exclude %{_datadir}/xine/skins/xine_splash.png %changelog -* Sun May 17 2009 Jussi Lehtola - 0.99.6-11 +* Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 +- Move xine_splash.png to main package from -skins. + +* Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 +- Fix build in rawhide. + +* Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 +- Added -skins subpackage. + +* Wed Jul 15 2009 Jussi Lehtola - 0.99.5-12 +- Added BR: xorg-x11-proto-devel. + +* Sun May 17 2009 Jussi Lehtola - 0.99.5-11 - Added missing icon cache update to %%post section. -* Sun May 17 2009 Jussi Lehtola - 0.99.6-10 +* Sun May 17 2009 Jussi Lehtola - 0.99.5-10 - Use desktop-install --remove-category instead of sed. * Sat May 16 2009 Jussi Lehtola - 0.99.5-9 From jussilehtola at fedoraproject.org Fri Jul 24 21:13:36 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:13:36 +0000 (UTC) Subject: rpms/xine-ui/F-10 xine-ui.spec,1.3,1.4 Message-ID: <20090724211336.F373D11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28345/F-10 Modified Files: xine-ui.spec Log Message: Move xine_splash.png to main package. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-10/xine-ui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xine-ui.spec 19 Jul 2009 23:30:04 -0000 1.3 +++ xine-ui.spec 24 Jul 2009 21:13:36 -0000 1.4 @@ -3,7 +3,7 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 13%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ @@ -59,6 +59,7 @@ BuildRequires: libcaca-devel BuildRequires: libpng-devel BuildRequires: libtermcap-devel BuildRequires: libXft-devel +BuildRequires: libXi-devel BuildRequires: libXinerama-devel BuildRequires: libXt-devel BuildRequires: libXtst-devel @@ -205,6 +206,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %dir %{_datadir}/xine/skins/ %{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/skins/xine_splash.png %{_datadir}/xine/oxine/ %{_datadir}/xine/visuals/ @@ -221,8 +223,15 @@ gtk-update-icon-cache %{_datadir}/icons/ %defattr(-,root,root,-) %{_datadir}/xine/skins/* %exclude %{_datadir}/xine/skins/xinetic/ +%exclude %{_datadir}/xine/skins/xine_splash.png %changelog +* Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 +- Move xine_splash.png to main package from -skins. + +* Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 +- Fix build in rawhide. + * Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 - Added -skins subpackage. From jussilehtola at fedoraproject.org Fri Jul 24 21:13:37 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:13:37 +0000 (UTC) Subject: rpms/xine-ui/F-11 xine-ui.spec,1.3,1.4 Message-ID: <20090724211337.41B9211C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28345/F-11 Modified Files: xine-ui.spec Log Message: Move xine_splash.png to main package. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-11/xine-ui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xine-ui.spec 19 Jul 2009 23:30:04 -0000 1.3 +++ xine-ui.spec 24 Jul 2009 21:13:37 -0000 1.4 @@ -3,7 +3,7 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 13%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ @@ -59,6 +59,7 @@ BuildRequires: libcaca-devel BuildRequires: libpng-devel BuildRequires: libtermcap-devel BuildRequires: libXft-devel +BuildRequires: libXi-devel BuildRequires: libXinerama-devel BuildRequires: libXt-devel BuildRequires: libXtst-devel @@ -205,6 +206,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %dir %{_datadir}/xine/skins/ %{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/skins/xine_splash.png %{_datadir}/xine/oxine/ %{_datadir}/xine/visuals/ @@ -221,8 +223,15 @@ gtk-update-icon-cache %{_datadir}/icons/ %defattr(-,root,root,-) %{_datadir}/xine/skins/* %exclude %{_datadir}/xine/skins/xinetic/ +%exclude %{_datadir}/xine/skins/xine_splash.png %changelog +* Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 +- Move xine_splash.png to main package from -skins. + +* Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 +- Fix build in rawhide. + * Mon Jul 20 2009 Jussi Lehtola - 0.99.5-13 - Added -skins subpackage. From jussilehtola at fedoraproject.org Fri Jul 24 21:13:37 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:13:37 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui.spec,1.6,1.7 Message-ID: <20090724211337.8C06B11C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28345/devel Modified Files: xine-ui.spec Log Message: Move xine_splash.png to main package. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xine-ui.spec 22 Jul 2009 22:30:35 -0000 1.6 +++ xine-ui.spec 24 Jul 2009 21:13:37 -0000 1.7 @@ -3,7 +3,7 @@ Summary: A skinned xlib-based gui for xine-lib Name: xine-ui Version: 0.99.5 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xine-project.org/ @@ -206,6 +206,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %dir %{_datadir}/xine/skins/ %{_datadir}/xine/skins/xinetic/ +%{_datadir}/xine/skins/xine_splash.png %{_datadir}/xine/oxine/ %{_datadir}/xine/visuals/ @@ -222,8 +223,12 @@ gtk-update-icon-cache %{_datadir}/icons/ %defattr(-,root,root,-) %{_datadir}/xine/skins/* %exclude %{_datadir}/xine/skins/xinetic/ +%exclude %{_datadir}/xine/skins/xine_splash.png %changelog +* Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 +- Move xine_splash.png to main package from -skins. + * Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 - Fix build in rawhide. From athimm at fedoraproject.org Fri Jul 24 21:19:18 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:19:18 +0000 (UTC) Subject: rpms/ivtv-utils/F-10 .cvsignore, 1.2, 1.3 ivtv-utils.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090724211918.8658911C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/ivtv-utils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30920/F-10 Modified Files: .cvsignore ivtv-utils.spec sources Log Message: Update to 1.4.0 (for kernels >= 2.6.29). Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Dec 2008 19:49:34 -0000 1.2 +++ .cvsignore 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -ivtv-utils-1.3.0.tar.gz +ivtv-utils-1.4.0.tar.gz Index: ivtv-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-10/ivtv-utils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ivtv-utils.spec 2 Dec 2008 19:49:34 -0000 1.1 +++ ivtv-utils.spec 24 Jul 2009 21:19:18 -0000 1.2 @@ -1,15 +1,16 @@ Summary: Tools for the iTVC15/16 and CX23415/16 driver Name: ivtv-utils -Version: 1.3.0 -Release: 1%{?dist} +Version: 1.4.0 +Release: 9%{?dist} License: GPLv2 Group: Applications/Multimedia -Source0: http://dl.ivtvdriver.org/ivtv/archive/1.3.x/%{name}-%{version}.tar.gz +Source0: http://dl.ivtvdriver.org/ivtv/archive/1.4.x/%{name}-%{version}.tar.gz +#Patch0: ivtv-utils-1.3.0-v4l2-register-changes.patch URL: http://ivtvdriver.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot Requires: ivtv-firmware Obsoletes: ivtv < 1:1.2.0-6 -Provides: ivtv = 1:%{version}-%{release} +Provides: ivtv = 1:%{version}-%{release} %description The primary goal of the IvyTV Project is to create a kernel driver for @@ -22,12 +23,11 @@ some userland tools for ivtv. %prep %setup -q +#patch0 -p1 perl -pi -e's,/sbin/depmod,:,g' driver/Makefile grep -rl '#include ' . | xargs perl -pi -e's,#include ,/* #include */,' perl -pi -e's at CFLAGS = -D_GNU_SOURCE .*@CFLAGS = -D_GNU_SOURCE -D__user= %{optflags}@' utils/Makefile perl -pi -e's,#include "videodev2.h",#include ,' ./utils/v4l2-dbg.cpp -grep -l '#include ' utils/*.c utils/*.cc |\ - xargs -r perl -pi -e's,#include ,#include "linux/ivtv.h",' %build make -C utils @@ -56,7 +56,10 @@ rm -rf %{buildroot} %{_datadir}/ivtv %changelog -* Tue Dec 02 2008 Jarod Wilson - 1.3.0-1 +* Tue Feb 03 2009 Jarod Wilson - 1.3.0-8 +- Fix up for current rawhide + +* Tue Dec 02 2008 Jarod Wilson - 1.3.0-7 - Update to 1.3.0. * Wed Aug 27 2008 Axel Thimm - 1.2.0-6 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Dec 2008 19:49:34 -0000 1.2 +++ sources 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -4781298cac4a3d8cfd5a8338895d102b ivtv-utils-1.3.0.tar.gz +13deb3fe973b175a115285e63f668b95 ivtv-utils-1.4.0.tar.gz From athimm at fedoraproject.org Fri Jul 24 21:19:18 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:19:18 +0000 (UTC) Subject: rpms/ivtv-utils/F-11 .cvsignore, 1.2, 1.3 ivtv-utils.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090724211918.B7B0811C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/ivtv-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30920/F-11 Modified Files: .cvsignore ivtv-utils.spec sources Log Message: Update to 1.4.0 (for kernels >= 2.6.29). Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Dec 2008 19:40:11 -0000 1.2 +++ .cvsignore 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -ivtv-utils-1.3.0.tar.gz +ivtv-utils-1.4.0.tar.gz Index: ivtv-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-11/ivtv-utils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ivtv-utils.spec 25 Feb 2009 08:23:56 -0000 1.3 +++ ivtv-utils.spec 24 Jul 2009 21:19:18 -0000 1.4 @@ -1,16 +1,16 @@ Summary: Tools for the iTVC15/16 and CX23415/16 driver Name: ivtv-utils -Version: 1.3.0 -Release: 3%{?dist} +Version: 1.4.0 +Release: 9%{?dist} License: GPLv2 Group: Applications/Multimedia -Source0: http://dl.ivtvdriver.org/ivtv/archive/1.3.x/%{name}-%{version}.tar.gz -Patch0: ivtv-utils-1.3.0-v4l2-register-changes.patch +Source0: http://dl.ivtvdriver.org/ivtv/archive/1.4.x/%{name}-%{version}.tar.gz +#Patch0: ivtv-utils-1.3.0-v4l2-register-changes.patch URL: http://ivtvdriver.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot Requires: ivtv-firmware Obsoletes: ivtv < 1:1.2.0-6 -Provides: ivtv = 1:%{version}-%{release} +Provides: ivtv = 1:%{version}-%{release} %description The primary goal of the IvyTV Project is to create a kernel driver for @@ -23,7 +23,7 @@ some userland tools for ivtv. %prep %setup -q -%patch0 -p1 +#patch0 -p1 perl -pi -e's,/sbin/depmod,:,g' driver/Makefile grep -rl '#include ' . | xargs perl -pi -e's,#include ,/* #include */,' perl -pi -e's at CFLAGS = -D_GNU_SOURCE .*@CFLAGS = -D_GNU_SOURCE -D__user= %{optflags}@' utils/Makefile @@ -56,13 +56,10 @@ rm -rf %{buildroot} %{_datadir}/ivtv %changelog -* Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Feb 03 2009 Jarod Wilson - 1.3.0-2 +* Tue Feb 03 2009 Jarod Wilson - 1.3.0-8 - Fix up for current rawhide -* Tue Dec 02 2008 Jarod Wilson - 1.3.0-1 +* Tue Dec 02 2008 Jarod Wilson - 1.3.0-7 - Update to 1.3.0. * Wed Aug 27 2008 Axel Thimm - 1.2.0-6 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Dec 2008 19:40:11 -0000 1.2 +++ sources 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -4781298cac4a3d8cfd5a8338895d102b ivtv-utils-1.3.0.tar.gz +13deb3fe973b175a115285e63f668b95 ivtv-utils-1.4.0.tar.gz From athimm at fedoraproject.org Fri Jul 24 21:19:19 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:19:19 +0000 (UTC) Subject: rpms/ivtv-utils/devel .cvsignore, 1.2, 1.3 ivtv-utils.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090724211919.1458711C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/ivtv-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30920/devel Modified Files: .cvsignore ivtv-utils.spec sources Log Message: Update to 1.4.0 (for kernels >= 2.6.29). Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 2 Dec 2008 19:40:11 -0000 1.2 +++ .cvsignore 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -ivtv-utils-1.3.0.tar.gz +ivtv-utils-1.4.0.tar.gz Index: ivtv-utils.spec =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/devel/ivtv-utils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ivtv-utils.spec 25 Feb 2009 08:23:56 -0000 1.3 +++ ivtv-utils.spec 24 Jul 2009 21:19:18 -0000 1.4 @@ -1,16 +1,16 @@ Summary: Tools for the iTVC15/16 and CX23415/16 driver Name: ivtv-utils -Version: 1.3.0 -Release: 3%{?dist} +Version: 1.4.0 +Release: 9%{?dist} License: GPLv2 Group: Applications/Multimedia -Source0: http://dl.ivtvdriver.org/ivtv/archive/1.3.x/%{name}-%{version}.tar.gz -Patch0: ivtv-utils-1.3.0-v4l2-register-changes.patch +Source0: http://dl.ivtvdriver.org/ivtv/archive/1.4.x/%{name}-%{version}.tar.gz +#Patch0: ivtv-utils-1.3.0-v4l2-register-changes.patch URL: http://ivtvdriver.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot Requires: ivtv-firmware Obsoletes: ivtv < 1:1.2.0-6 -Provides: ivtv = 1:%{version}-%{release} +Provides: ivtv = 1:%{version}-%{release} %description The primary goal of the IvyTV Project is to create a kernel driver for @@ -23,7 +23,7 @@ some userland tools for ivtv. %prep %setup -q -%patch0 -p1 +#patch0 -p1 perl -pi -e's,/sbin/depmod,:,g' driver/Makefile grep -rl '#include ' . | xargs perl -pi -e's,#include ,/* #include */,' perl -pi -e's at CFLAGS = -D_GNU_SOURCE .*@CFLAGS = -D_GNU_SOURCE -D__user= %{optflags}@' utils/Makefile @@ -56,13 +56,10 @@ rm -rf %{buildroot} %{_datadir}/ivtv %changelog -* Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Feb 03 2009 Jarod Wilson - 1.3.0-2 +* Tue Feb 03 2009 Jarod Wilson - 1.3.0-8 - Fix up for current rawhide -* Tue Dec 02 2008 Jarod Wilson - 1.3.0-1 +* Tue Dec 02 2008 Jarod Wilson - 1.3.0-7 - Update to 1.3.0. * Wed Aug 27 2008 Axel Thimm - 1.2.0-6 Index: sources =================================================================== RCS file: /cvs/extras/rpms/ivtv-utils/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 2 Dec 2008 19:40:11 -0000 1.2 +++ sources 24 Jul 2009 21:19:18 -0000 1.3 @@ -1 +1 @@ -4781298cac4a3d8cfd5a8338895d102b ivtv-utils-1.3.0.tar.gz +13deb3fe973b175a115285e63f668b95 ivtv-utils-1.4.0.tar.gz From jussilehtola at fedoraproject.org Fri Jul 24 21:22:25 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:22:25 +0000 (UTC) Subject: rpms/xine-ui/EL-5 sources,1.2,1.3 Message-ID: <20090724212225.BD81911C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32022/EL-5 Modified Files: sources Log Message: Add missing sources file from spec file update. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 18 May 2009 05:59:05 -0000 1.2 +++ sources 24 Jul 2009 21:22:25 -0000 1.3 @@ -1 +1,31 @@ e643cd1fcad4d98a5ae4eb877ce5087b xine-ui-0.99.5.tar.gz +ad74c35558588f5d4234449a076b4105 Antares.tar.gz +61cbcf4cb3f1443a17e96c0a73eeb3a8 Bambino-Black.tar.gz +56f21a3ffddf0f0980336a5d9cdff179 Bambino-Blue.tar.gz +4d4ee2d1825896ff6c1dadfbf1f75864 Bambino-Green.tar.gz +dacd886be4fd9c13dd96fa3b96f3e7f8 Bambino-Orange.tar.gz +424b4dd516569c92af7d96c10daa46d3 Bambino-Pink.tar.gz +2e6438459244104e46d89a66e5a1f961 Bambino-Purple.tar.gz +3e8bc6f6958e8d732b88f2e227f3c879 Bambino-White.tar.gz +070fd8e3582b6f9e302b595c81dd87e4 Bluton.tar.gz +159b45f013183aea3038f9133f61cf89 CelomaChrome.tar.gz +5ac74cb407b59b3487031a0564698e1f CelomaGold.tar.gz +dadb7b21b8e7e0c40ad7237c4f98906f CelomaMdk.tar.gz +06f2b0f6ceb9456bc26fae65f4f89a53 Centori.tar.gz +eb511cd1217bc0c0bd3fa016698adebc Crystal.tar.gz +c7825e925434374a074c4acc46bcdd4f Galaxy.tar.gz +0154a3eecbeb995865ead852fd5f6bb2 Keramic.tar.gz +bff16e879b75bd5a442c0c5c7dc22bcb KeramicRH8.tar.gz +54b3e28494e1d89e041ceace7db32049 OMS_legacy.tar.gz +b92dfe59cb5f7bbc495ed0be50c1c132 Polaris.tar.gz +8702d138eb61b7149118f91121fe846a Sunset.tar.gz +454bdc7321fc18f0db811db722c2e93c blackslim2.tar.gz +1ff0ea8d7c73c4f3b32c13a408af3be1 caramel.tar.gz +432e0d5135be09e03a69f363d3da94a0 cloudy.tar.gz +34d18380c1077cdf43a04797b2e06734 concept.tar.gz +d809f2f3cce0eae966296e01ede8df00 gudgreen.tar.gz +f16d6a1a39b32473a901d9132c405196 lcd.tar.gz +841924c042ca70700a9d201bc7686e59 mp2k.tar.gz +3023e8dd6c12902c32b3d99e51fd0c1e mplayer.tar.gz +7dd4e9e50e0145142982b0537c36f50a pitt.tar.gz +9ebf98f4434a9fc119f0282806ba9c32 xinium.tar.gz From tibbs at fedoraproject.org Fri Jul 24 21:24:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 21:24:23 +0000 (UTC) Subject: rpms/zikula-module-scribite/devel a,NONE,1.1 Message-ID: <20090724212423.663E011C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/extras/rpms/zikula-module-scribite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv344 Added Files: a Log Message: Test commit. --- NEW FILE a --- test From athimm at fedoraproject.org Fri Jul 24 21:28:33 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:28:33 +0000 (UTC) Subject: rpms/mediawiki/F-10 README.RPM, NONE, 1.1 mediawiki.conf, NONE, 1.1 mediawiki.spec, 1.31, 1.32 Message-ID: <20090724212833.7620F11C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2004/F-10 Modified Files: mediawiki.spec Added Files: README.RPM mediawiki.conf Log Message: Add a README.RPM and a sample apache mediawiki.conf file. --- NEW FILE README.RPM --- This mediawiki package supports multiple instances, sometimes also called Wiki Farms or Wiki Families, but you can use it for a single instance just as well. This works by copying /var/www/wiki as is to the new desired location of your wiki(s) like cp -a /var/www/wiki /srv/my.host/wiki and creating an Apache config entry (if you use Apache for serving mediawiki) like DocumentRoot /srv/my.host/wiki Alias /skins /usr/share/mediawiki/skins (this example is for short URLs, e.g. ones w/o a "/wiki/" in the URL) --- NEW FILE mediawiki.conf --- # This is a sample configuration for a wiki instance located under # /var/www/wiki and exposed as http://thishost/wiki. Please read # /usr/share/doc/mediawiki-*/README.RPM on whether to use this # instance or create copies of it. # Alias /wiki/skins /usr/share/mediawiki/skins # Alias /wiki /var/www/wiki # If your DocumentRoot points into the wiki itself all that is needed is # Alias /skins /usr/share/mediawiki/skins Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-10/mediawiki.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mediawiki.spec 13 Jul 2009 20:33:44 -0000 1.31 +++ mediawiki.spec 24 Jul 2009 21:28:33 -0000 1.32 @@ -1,20 +1,17 @@ Summary: A wiki engine Name: mediawiki Version: 1.15.1 -Release: 48%{?dist} +Release: 50%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Source1: mediawiki.conf +Source2: README.RPM Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -ExcludeArch: sparc64 s390 s390x +ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 -# to make sure the "apache" group is created before mediawiki is installed -Requires(pre): httpd -Requires: php >= 5, php-xml -Requires: php-mysql, php-pgsql -Requires: diffutils, ImageMagick, php-gd Requires: mediawiki-nomath = %{version}-%{release} Requires: mediawiki-math = %{version}-%{release} @@ -32,6 +29,11 @@ configuration. %package nomath Summary: mediawiki w/o texvc. Group: Development/Tools +# to make sure the "apache" group is created before mediawiki is installed +Requires(pre): httpd +Requires: php >= 5, php-xml +Requires: php-mysql, php-pgsql +Requires: diffutils, ImageMagick, php-gd %description nomath This subpackage contains all mediawiki parts except the ones to aid in @@ -59,10 +61,18 @@ make %install rm -rf %{buildroot} + +# move away the documentation to the final folder. +mkdir -p %{buildroot}%{_defaultdocdir}/%{name}-%{version} +mv -f COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE CREDITS INSTALL docs \ + %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ +install -p %{SOURCE2} %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ + +# now copy the rest to the buildroot. mkdir -p %{buildroot}%{_datadir}/mediawiki cp -a * %{buildroot}%{_datadir}/mediawiki/ -# remove undeeded parts +# remove unneeded parts rm -fr %{buildroot}%{_datadir}/mediawiki/{t,test,tests} rm -fr %{buildroot}%{_datadir}/mediawiki/includes/zhtable find %{buildroot}%{_datadir}/mediawiki/ \ @@ -80,32 +90,36 @@ if test ! -d %{buildroot}%{_libdir}/medi %{buildroot}%{_libdir}/mediawiki/ fi +# remove version control/patch files find %{buildroot} -name .svnignore | xargs rm find %{buildroot} -name \*.commoncode | xargs rm +# create a default instance of which other instances can be copied mkdir -p %{buildroot}/var/www/wiki cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php ln -s %{_datadir}/mediawiki/api.php api.php +mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/ +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/httpd/conf.d/mediawiki.conf + %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE %files nomath -%defattr(-,root,root,-) -%doc COPYING +%{_defaultdocdir}/%{name}-%{version} %{_datadir}/mediawiki %attr(-,apache,apache) %dir %{_datadir}/mediawiki/config %{_datadir}/mediawiki/config/* /var/www/wiki %attr(-,apache,apache) %dir /var/www/wiki/config /var/www/wiki/config/* +%{_sysconfdir}/httpd/conf.d/mediawiki.conf %files math %defattr(-,root,root,-) @@ -113,6 +127,13 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Axel Thimm - 1.15.1-50 +- Add a README.RPM and a sample apache mediawiki.conf file. + +* Thu Jul 23 2009 Axel Thimm - 1.15.1-49 +- All (runtime) dependencies from mediawiki need to move to + mediawiki-nomath. + * Mon Jul 13 2009 Axel Thimm - 1.15.1-48 - Update to 1.15.1 (Fixes XSS vulnerability). From athimm at fedoraproject.org Fri Jul 24 21:28:33 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:28:33 +0000 (UTC) Subject: rpms/mediawiki/F-11 README.RPM, NONE, 1.1 mediawiki.conf, NONE, 1.1 mediawiki.spec, 1.32, 1.33 Message-ID: <20090724212833.94B9611C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2004/F-11 Modified Files: mediawiki.spec Added Files: README.RPM mediawiki.conf Log Message: Add a README.RPM and a sample apache mediawiki.conf file. --- NEW FILE README.RPM --- This mediawiki package supports multiple instances, sometimes also called Wiki Farms or Wiki Families, but you can use it for a single instance just as well. This works by copying /var/www/wiki as is to the new desired location of your wiki(s) like cp -a /var/www/wiki /srv/my.host/wiki and creating an Apache config entry (if you use Apache for serving mediawiki) like DocumentRoot /srv/my.host/wiki Alias /skins /usr/share/mediawiki/skins (this example is for short URLs, e.g. ones w/o a "/wiki/" in the URL) --- NEW FILE mediawiki.conf --- # This is a sample configuration for a wiki instance located under # /var/www/wiki and exposed as http://thishost/wiki. Please read # /usr/share/doc/mediawiki-*/README.RPM on whether to use this # instance or create copies of it. # Alias /wiki/skins /usr/share/mediawiki/skins # Alias /wiki /var/www/wiki # If your DocumentRoot points into the wiki itself all that is needed is # Alias /skins /usr/share/mediawiki/skins Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/F-11/mediawiki.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- mediawiki.spec 13 Jul 2009 20:33:44 -0000 1.32 +++ mediawiki.spec 24 Jul 2009 21:28:33 -0000 1.33 @@ -1,20 +1,17 @@ Summary: A wiki engine Name: mediawiki Version: 1.15.1 -Release: 48%{?dist} +Release: 50%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Source1: mediawiki.conf +Source2: README.RPM Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -ExcludeArch: sparc64 s390 s390x +ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 -# to make sure the "apache" group is created before mediawiki is installed -Requires(pre): httpd -Requires: php >= 5, php-xml -Requires: php-mysql, php-pgsql -Requires: diffutils, ImageMagick, php-gd Requires: mediawiki-nomath = %{version}-%{release} Requires: mediawiki-math = %{version}-%{release} @@ -32,6 +29,11 @@ configuration. %package nomath Summary: mediawiki w/o texvc. Group: Development/Tools +# to make sure the "apache" group is created before mediawiki is installed +Requires(pre): httpd +Requires: php >= 5, php-xml +Requires: php-mysql, php-pgsql +Requires: diffutils, ImageMagick, php-gd %description nomath This subpackage contains all mediawiki parts except the ones to aid in @@ -59,10 +61,18 @@ make %install rm -rf %{buildroot} + +# move away the documentation to the final folder. +mkdir -p %{buildroot}%{_defaultdocdir}/%{name}-%{version} +mv -f COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE CREDITS INSTALL docs \ + %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ +install -p %{SOURCE2} %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ + +# now copy the rest to the buildroot. mkdir -p %{buildroot}%{_datadir}/mediawiki cp -a * %{buildroot}%{_datadir}/mediawiki/ -# remove undeeded parts +# remove unneeded parts rm -fr %{buildroot}%{_datadir}/mediawiki/{t,test,tests} rm -fr %{buildroot}%{_datadir}/mediawiki/includes/zhtable find %{buildroot}%{_datadir}/mediawiki/ \ @@ -80,32 +90,36 @@ if test ! -d %{buildroot}%{_libdir}/medi %{buildroot}%{_libdir}/mediawiki/ fi +# remove version control/patch files find %{buildroot} -name .svnignore | xargs rm find %{buildroot} -name \*.commoncode | xargs rm +# create a default instance of which other instances can be copied mkdir -p %{buildroot}/var/www/wiki cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php ln -s %{_datadir}/mediawiki/api.php api.php +mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/ +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/httpd/conf.d/mediawiki.conf + %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE %files nomath -%defattr(-,root,root,-) -%doc COPYING +%{_defaultdocdir}/%{name}-%{version} %{_datadir}/mediawiki %attr(-,apache,apache) %dir %{_datadir}/mediawiki/config %{_datadir}/mediawiki/config/* /var/www/wiki %attr(-,apache,apache) %dir /var/www/wiki/config /var/www/wiki/config/* +%{_sysconfdir}/httpd/conf.d/mediawiki.conf %files math %defattr(-,root,root,-) @@ -113,6 +127,13 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Axel Thimm - 1.15.1-50 +- Add a README.RPM and a sample apache mediawiki.conf file. + +* Thu Jul 23 2009 Axel Thimm - 1.15.1-49 +- All (runtime) dependencies from mediawiki need to move to + mediawiki-nomath. + * Mon Jul 13 2009 Axel Thimm - 1.15.1-48 - Update to 1.15.1 (Fixes XSS vulnerability). From athimm at fedoraproject.org Fri Jul 24 21:28:33 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 24 Jul 2009 21:28:33 +0000 (UTC) Subject: rpms/mediawiki/devel README.RPM, NONE, 1.1 mediawiki.conf, NONE, 1.1 mediawiki.spec, 1.34, 1.35 Message-ID: <20090724212833.CFDDB11C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/mediawiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2004/devel Modified Files: mediawiki.spec Added Files: README.RPM mediawiki.conf Log Message: Add a README.RPM and a sample apache mediawiki.conf file. --- NEW FILE README.RPM --- This mediawiki package supports multiple instances, sometimes also called Wiki Farms or Wiki Families, but you can use it for a single instance just as well. This works by copying /var/www/wiki as is to the new desired location of your wiki(s) like cp -a /var/www/wiki /srv/my.host/wiki and creating an Apache config entry (if you use Apache for serving mediawiki) like DocumentRoot /srv/my.host/wiki Alias /skins /usr/share/mediawiki/skins (this example is for short URLs, e.g. ones w/o a "/wiki/" in the URL) --- NEW FILE mediawiki.conf --- # This is a sample configuration for a wiki instance located under # /var/www/wiki and exposed as http://thishost/wiki. Please read # /usr/share/doc/mediawiki-*/README.RPM on whether to use this # instance or create copies of it. # Alias /wiki/skins /usr/share/mediawiki/skins # Alias /wiki /var/www/wiki # If your DocumentRoot points into the wiki itself all that is needed is # Alias /skins /usr/share/mediawiki/skins Index: mediawiki.spec =================================================================== RCS file: /cvs/extras/rpms/mediawiki/devel/mediawiki.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- mediawiki.spec 24 Jul 2009 10:37:59 -0000 1.34 +++ mediawiki.spec 24 Jul 2009 21:28:33 -0000 1.35 @@ -1,14 +1,16 @@ Summary: A wiki engine Name: mediawiki Version: 1.15.1 -Release: 49%{?dist} +Release: 50%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ Source0: http://download.wikimedia.org/mediawiki/1.15/%{name}-%{version}.tar.gz +Source1: mediawiki.conf +Source2: README.RPM Patch0: mediawiki-1.15.0-commoncode.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -ExcludeArch: sparc64 s390 s390x +ExcludeArch: sparc64 s390 s390x BuildRequires: ocaml >= 3.06 Requires: mediawiki-nomath = %{version}-%{release} Requires: mediawiki-math = %{version}-%{release} @@ -59,10 +61,18 @@ make %install rm -rf %{buildroot} + +# move away the documentation to the final folder. +mkdir -p %{buildroot}%{_defaultdocdir}/%{name}-%{version} +mv -f COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE CREDITS INSTALL docs \ + %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ +install -p %{SOURCE2} %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ + +# now copy the rest to the buildroot. mkdir -p %{buildroot}%{_datadir}/mediawiki cp -a * %{buildroot}%{_datadir}/mediawiki/ -# remove undeeded parts +# remove unneeded parts rm -fr %{buildroot}%{_datadir}/mediawiki/{t,test,tests} rm -fr %{buildroot}%{_datadir}/mediawiki/includes/zhtable find %{buildroot}%{_datadir}/mediawiki/ \ @@ -80,32 +90,36 @@ if test ! -d %{buildroot}%{_libdir}/medi %{buildroot}%{_libdir}/mediawiki/ fi +# remove version control/patch files find %{buildroot} -name .svnignore | xargs rm find %{buildroot} -name \*.commoncode | xargs rm +# create a default instance of which other instances can be copied mkdir -p %{buildroot}/var/www/wiki cd %{buildroot}/var/www/wiki/ mkdir -p images/{archive,deleted,temp,thumb} cp -a %{buildroot}%{_datadir}/mediawiki/config . ln -s %{_datadir}/mediawiki/index.php index.php ln -s %{_datadir}/mediawiki/api.php api.php +mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/ +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/httpd/conf.d/mediawiki.conf + %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc COPYING FAQ HISTORY README RELEASE-NOTES UPGRADE %files nomath -%defattr(-,root,root,-) -%doc COPYING +%{_defaultdocdir}/%{name}-%{version} %{_datadir}/mediawiki %attr(-,apache,apache) %dir %{_datadir}/mediawiki/config %{_datadir}/mediawiki/config/* /var/www/wiki %attr(-,apache,apache) %dir /var/www/wiki/config /var/www/wiki/config/* +%{_sysconfdir}/httpd/conf.d/mediawiki.conf %files math %defattr(-,root,root,-) @@ -113,6 +127,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Axel Thimm - 1.15.1-50 +- Add a README.RPM and a sample apache mediawiki.conf file. + * Thu Jul 23 2009 Axel Thimm - 1.15.1-49 - All (runtime) dependencies from mediawiki need to move to mediawiki-nomath. From sparks at fedoraproject.org Fri Jul 24 21:35:26 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Fri, 24 Jul 2009 21:35:26 +0000 (UTC) Subject: rpms/zikula-module-scribite/devel import.log, NONE, 1.1 zikula-module-scribite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 a, 1.1, NONE Message-ID: <20090724213526.7144911C00CE@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-scribite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4336/devel Modified Files: .cvsignore sources Added Files: import.log zikula-module-scribite.spec Removed Files: a Log Message: Initial commit. --- NEW FILE import.log --- zikula-module-scribite-3_2-3_fc11:HEAD:zikula-module-scribite-3.2-3.fc11.src.rpm:1248471298 --- NEW FILE zikula-module-scribite.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname scribite Name: zikula-module-%{zikula_modname} Version: 3.2 Release: 3%{?dist} Summary: Integration of several JavaScript text editors with Zikula Group: Applications/Publishing License: GPLv2+ # Use top-level URL from Zikula site for the module URL: http://code.zikula.org/scribite/downloads/ # http://code.zikula.org/scribite/downloads/24 Source0: %{zikula_modname}_3_2_basic.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description scribite! is a module for easy integration of WYSIWYG scripts, TinyMCE, FCKeditor, openWYSIWYG, NicEdit or YUI Rich Text Editor into textarea fields in order to make text editing a little bit nicer and more comfortable for users. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f # Remove CC-licensed pieces #rm -rf javascript/scribite_editors/xinha/skins/titan #rm -rf javascript/scribite_editors/xinha/skins/inditreuse #rm -rf javascript/scribite_editors/xinha/iconsets/Tango %build #Fixing wrong-file-end-of-line-encoding error cd pndocs sed -i 's/\r//' Snoopy_gpl_license.txt sed -i 's/\r//' changelog.txt sed -i 's/\r//' tinymce_lgpl_license.txt sed -i 's/\r//' openwysiwyg_license.txt sed -i 's/\r//' fckeditor_license.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/fckeditor_license.txt pndocs/license.txt pndocs/nicedit_license.txt pndocs/openwysiwyg_license.txt pndocs/scribite!-dev-deu.odt pndocs/scribite!-dev-deu.pdf pndocs/scribite!-dev-eng.odt pndocs/scribite!-dev-eng.pdf pndocs/scribite!-dev-fra.odt pndocs/scribite!-dev-fra.pdf pndocs/scribite!-documentation-deu.odt pndocs/scribite!-documentation-deu.pdf pndocs/scribite!-documentation-eng.odt pndocs/scribite!-documentation-eng.pdf pndocs/scribite!-documentation-fra.odt pndocs/scribite!-documentation-fra.pdf pndocs/Snoopy_gpl_license.txt pndocs/tinymce_lgpl_license.txt pndocs/todo.txt pndocs/xinha_htmlarea_license.txt %{zikula_moddir}/%{zikula_modname} %changelog * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-3 - Updated source with new version of scribite!. * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-2 - Updated SPEC to remove non-GPL skins and icons. - Fixed wrong-file-end-of-line-encoding errors in SPEC. * Tue Jun 23 2009 Eric "Sparks" Christensen - 3.2-1 - Updated package to remove non-GPL code. * Mon Jun 15 2009 Eric "Sparks" Christensen - 3.1-1 - Initial RPM build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:22:21 -0000 1.1 +++ .cvsignore 24 Jul 2009 21:35:26 -0000 1.2 @@ -0,0 +1 @@ +scribite_3_2_basic.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:22:21 -0000 1.1 +++ sources 24 Jul 2009 21:35:26 -0000 1.2 @@ -0,0 +1 @@ +84cfdce4a38f7eb1dd44bb3d8359b561 scribite_3_2_basic.zip --- a DELETED --- From jussilehtola at fedoraproject.org Fri Jul 24 21:41:12 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 21:41:12 +0000 (UTC) Subject: rpms/xine-ui/EL-5 xine-ui-0.99.5-utf8doc.patch,NONE,1.1 Message-ID: <20090724214112.5AEF011C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6217 Added Files: xine-ui-0.99.5-utf8doc.patch Log Message: Add missing file from update. xine-ui-0.99.5-utf8doc.patch: help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE xine-ui-0.99.5-utf8doc.patch --- diff -urp xine-ui-0.99.5.orig/src/xitk/help.c xine-ui-0.99.5/src/xitk/help.c --- xine-ui-0.99.5.orig/src/xitk/help.c 2009-07-19 18:27:09.000000000 +0100 +++ xine-ui-0.99.5/src/xitk/help.c 2009-07-19 18:27:25.000000000 +0100 @@ -182,7 +182,7 @@ static void help_sections(void) { help_add_section(locale_readme, lang->doc_encoding, order_num, section_name); } else { - help_add_section(default_readme, "ISO-8859-1", order_num, section_name); + help_add_section(default_readme, "UTF-8", order_num, section_name); } } } From stransky at fedoraproject.org Fri Jul 24 21:42:52 2009 From: stransky at fedoraproject.org (Martin Stransky) Date: Fri, 24 Jul 2009 21:42:52 +0000 (UTC) Subject: rpms/seamonkey/devel .cvsignore, 1.25, 1.26 seamonkey.sh.in, 1.7, 1.8 seamonkey.spec, 1.58, 1.59 sources, 1.27, 1.28 Message-ID: <20090724214252.5828511C00CE@cvs1.fedora.phx.redhat.com> Author: stransky Update of /cvs/pkgs/rpms/seamonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6796 Modified Files: .cvsignore seamonkey.sh.in seamonkey.spec sources Log Message: Added langpacks Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 24 Jul 2009 07:57:31 -0000 1.25 +++ .cvsignore 24 Jul 2009 21:42:52 -0000 1.26 @@ -1,2 +1,3 @@ seamonkey-1.1.16.source.tar.bz2 seamonkey-2.0b1-source.tar.bz2 +seamonkey-langpacks-2.0b1-20090724.tar.bz2 Index: seamonkey.sh.in =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.sh.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- seamonkey.sh.in 24 Jul 2009 07:57:34 -0000 1.7 +++ seamonkey.sh.in 24 Jul 2009 21:42:52 -0000 1.8 @@ -42,6 +42,7 @@ ulimit -c 0 MOZ_DIST_BIN="LIBDIR/seamonkey-MOZILLA_VERSION" MOZ_PROGRAM="LIBDIR/seamonkey-MOZILLA_VERSION/seamonkey" MOZ_CLIENT_PROGRAM="LIBDIR/seamonkey-MOZILLA_VERSION/mozilla-xremote-client -a seamonkey" +MOZ_EXTENSIONS_DIR="$MOZ_DIST_BIN/extensions" ## ## Set MOZILLA_FIVE_HOME @@ -140,9 +141,13 @@ fi # check system locale MOZARGS= -MOZLOCALE=`echo $LANG | sed "s|_\([^.]*\).*|-\1|g"` -[ -f $MOZILLA_FIVE_HOME/chrome/$MOZLOCALE.jar ] && MOZARGS="-UILocale $MOZLOCALE" +# Try without a local variant first, then with a local variant +# So that pt-BR doesn't try to use pt for example +SHORTMOZLOCALE=`echo $LC_MESSAGES | sed "s|_\([^.]*\).*||g"` +[ -f $MOZ_EXTENSIONS_DIR/langpack-${SHORTMOZLOCALE}@seamonkey.mozilla.org/chrome/$SHORTMOZLOCALE.jar ] && MOZARGS="-UILocale $SHORTMOZLOCALE" +MOZLOCALE=`echo $LC_MESSAGES | sed "s|_\([^.]*\).*|-\1|g"` +[ -f $MOZ_EXTENSIONS_DIR/langpack-${MOZLOCALE}@seamonkey.mozilla.org/chrome/$MOZLOCALE.jar ] && MOZARGS="-UILocale $MOZLOCALE" # if there's no command line argument and there's not a running # instance then just fire up a new copy of the browser Index: seamonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/seamonkey.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- seamonkey.spec 24 Jul 2009 08:30:28 -0000 1.58 +++ seamonkey.spec 24 Jul 2009 21:42:52 -0000 1.59 @@ -1,3 +1,4 @@ +%define homepage http://start.fedoraproject.org/ %define default_bookmarks_file %{_datadir}/bookmarks/default-bookmarks.html %define cairo_version 0.5 @@ -6,6 +7,8 @@ %define prerelease_tag b1 +%define build_langpacks 1 + %define _unpackaged_files_terminate_build 0 %define builddir %{_builddir}/%{name}-%{version} %define mozdir %{_libdir}/seamonkey-%{version}%{?prerelease_tag} @@ -21,6 +24,7 @@ License: MPLv1.1 Group: Applications/Internet Source0: seamonkey-%{version}%{?prerelease_tag}-source.tar.bz2 +Source1: seamonkey-langpacks-%{version}%{?prerelease_tag}-20090724.tar.bz2 Source2: seamonkey-icon.png Source3: seamonkey.sh.in Source4: seamonkey.desktop @@ -188,6 +192,41 @@ install -c -m 644 mozilla/dist/bin/compo --install-dir $RPM_BUILD_ROOT/%{mozdir} \ --install-root %{mozdir} +echo > ../%{name}.lang +%if %{build_langpacks} +# Install langpacks +%{__mkdir_p} $RPM_BUILD_ROOT/%{mozdir}/extensions +%{__tar} xjf %{SOURCE1} +for langpack in `ls seamonkey-langpacks/*.xpi`; do + language=`basename $langpack .xpi` + extensiondir=$RPM_BUILD_ROOT/%{mozdir}/extensions/langpack-$language at seamonkey.mozilla.org + %{__mkdir_p} $extensiondir + unzip $langpack -d $extensiondir + find $extensiondir -type f | xargs chmod 644 + + tmpdir=`mktemp -d %{name}.XXXXXXXX` + langtmp=$tmpdir/%{name}/langpack-$language + %{__mkdir_p} $langtmp + jarfile=$extensiondir/chrome/$language.jar + unzip $jarfile -d $langtmp + + sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \ + $langtmp/locale/$language/navigator-region/region.properties + + find $langtmp -type f | xargs chmod 644 + %{__rm} -rf $jarfile + cd $langtmp + zip -r -D $jarfile locale + cd - + %{__rm} -rf $tmpdir + + language=`echo $language | sed -e 's/-/_/g'` + extensiondir=`echo $extensiondir | sed -e "s,^$RPM_BUILD_ROOT,,"` + echo "%%lang($language) $extensiondir" >> ../%{name}.lang +done +%{__rm} -rf firefox-langpacks +%endif # build_langpacks + # set up our desktop files %{__mkdir_p} $RPM_BUILD_ROOT/%{_datadir}/pixmaps/ @@ -264,6 +303,7 @@ update-desktop-database %{_datadir}/appl %{mozdir}/chrome/reporter.manifest %{mozdir}/components/*.xpt %{mozdir}/defaults/messenger/mailViews.dat +%{mozdir}/extensions/* #%doc %{_mandir}/man1/seamonkey.1.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/seamonkey/devel/sources,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sources 24 Jul 2009 07:57:34 -0000 1.27 +++ sources 24 Jul 2009 21:42:52 -0000 1.28 @@ -1 +1,2 @@ f7d6453b2e84070b6f74c597209f447c seamonkey-2.0b1-source.tar.bz2 +717d55bc4dd61de33c754f077c14d92f seamonkey-langpacks-2.0b1-20090724.tar.bz2 From pkgdb at fedoraproject.org Fri Jul 24 21:46:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 21:46:07 +0000 Subject: [pkgdb] python-fedora (Fedora, devel) updated by toshio Message-ID: <20090724214607.7681F10F8AC@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on python-fedora (Fedora devel) for toshio toshio approved watchcommits on python-fedora (Fedora devel) for toshio toshio approved commit on python-fedora (Fedora devel) for toshio toshio approved build on python-fedora (Fedora devel) for toshio toshio approved approveacls on python-fedora (Fedora devel) for toshio To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-fedora From pkgdb at fedoraproject.org Fri Jul 24 21:49:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 21:49:46 +0000 Subject: [pkgdb] python-fedora (Fedora, 9) updated by toshio Message-ID: <20090724214947.0C33610F897@bastion2.fedora.phx.redhat.com> toshio approved watchbugzilla on python-fedora (Fedora 9) for ricky toshio approved watchcommits on python-fedora (Fedora 9) for ricky toshio approved commit on python-fedora (Fedora 9) for ricky toshio approved build on python-fedora (Fedora 9) for ricky toshio approved approveacls on python-fedora (Fedora 9) for ricky To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-fedora From jkeating at fedoraproject.org Fri Jul 24 21:55:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:55:40 +0000 (UTC) Subject: rpms/eggdrop/devel eggdrop.spec,1.23,1.24 Message-ID: <20090724215540.BF3E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eggdrop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11704 Modified Files: eggdrop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eggdrop.spec =================================================================== RCS file: /cvs/pkgs/rpms/eggdrop/devel/eggdrop.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- eggdrop.spec 26 May 2009 20:40:13 -0000 1.23 +++ eggdrop.spec 24 Jul 2009 21:55:40 -0000 1.24 @@ -1,7 +1,7 @@ Summary: The world's most popular Open Source IRC bot Name: eggdrop Version: 1.6.19 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Communications URL: http://www.eggheads.org/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.19-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Robert Scheck 1.6.19-4 - Added upstream ctcpfix to solve CVE-2009-1789 (#502650) From jkeating at fedoraproject.org Fri Jul 24 21:55:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:55:54 +0000 (UTC) Subject: rpms/egoboo/devel egoboo.spec,1.10,1.11 Message-ID: <20090724215554.8C0EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/egoboo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11898 Modified Files: egoboo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: egoboo.spec =================================================================== RCS file: /cvs/pkgs/rpms/egoboo/devel/egoboo.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- egoboo.spec 24 Feb 2009 14:12:38 -0000 1.10 +++ egoboo.spec 24 Jul 2009 21:55:54 -0000 1.11 @@ -1,6 +1,6 @@ Name: egoboo Version: 2.7.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A top down graphical (3D) RPG in the spirit of Nethack Group: Amusements/Games License: GPLv3 @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.7.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:56:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:56:10 +0000 (UTC) Subject: rpms/egoboo-data/devel egoboo-data.spec,1.7,1.8 Message-ID: <20090724215610.8C5A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/egoboo-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12071 Modified Files: egoboo-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: egoboo-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/egoboo-data/devel/egoboo-data.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- egoboo-data.spec 24 Feb 2009 14:13:33 -0000 1.7 +++ egoboo-data.spec 24 Jul 2009 21:56:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: egoboo-data Version: 2.7.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Data files for the Egoboo RPG Group: Amusements/Games License: GPL+ @@ -71,6 +71,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.7.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:56:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:56:26 +0000 (UTC) Subject: rpms/eiciel/devel eiciel.spec,1.9,1.10 Message-ID: <20090724215626.B0DAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eiciel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12251 Modified Files: eiciel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eiciel.spec =================================================================== RCS file: /cvs/pkgs/rpms/eiciel/devel/eiciel.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- eiciel.spec 24 Feb 2009 14:14:26 -0000 1.9 +++ eiciel.spec 24 Jul 2009 21:56:26 -0000 1.10 @@ -1,6 +1,6 @@ Name: eiciel Version: 0.9.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Graphical access control list (ACL) editor Group: Applications/System License: GPLv2+ @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:56:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:56:41 +0000 (UTC) Subject: rpms/eigen/devel eigen.spec,1.4,1.5 Message-ID: <20090724215641.BD1B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eigen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12397 Modified Files: eigen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eigen.spec =================================================================== RCS file: /cvs/pkgs/rpms/eigen/devel/eigen.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- eigen.spec 24 Feb 2009 14:15:26 -0000 1.4 +++ eigen.spec 24 Jul 2009 21:56:41 -0000 1.5 @@ -4,7 +4,7 @@ Name: eigen Summary: A lightweight C++ template library for vector and matrix math Version: 1.0.5 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries # see LICENSE License: GPLv2+ with exceptions @@ -77,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:56:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:56:56 +0000 (UTC) Subject: rpms/eigen2/devel eigen2.spec,1.19,1.20 Message-ID: <20090724215656.9897D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eigen2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12558 Modified Files: eigen2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eigen2.spec =================================================================== RCS file: /cvs/pkgs/rpms/eigen2/devel/eigen2.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- eigen2.spec 1 Jul 2009 16:51:52 -0000 1.19 +++ eigen2.spec 24 Jul 2009 21:56:56 -0000 1.20 @@ -10,7 +10,7 @@ Name: eigen2 Summary: A lightweight C++ template library for vector and matrix math Version: 2.0.52 -Release: 0.2.%{snap}%{?dist} +Release: 0.3.%{snap}%{?dist} Group: System Environment/Libraries License: GPLv2+ or LGPLv3+ URL: http://eigen.tuxfamily.org/ @@ -109,6 +109,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.52-0.3.20090622 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Rex Dieter 2.0.52-0.2.20090622 - switch to upstream-provided snapshot From jkeating at fedoraproject.org Fri Jul 24 21:57:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:57:10 +0000 (UTC) Subject: rpms/eina/devel eina.spec,1.5,1.6 Message-ID: <20090724215710.AA1F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eina/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12693 Modified Files: eina.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eina.spec =================================================================== RCS file: /cvs/pkgs/rpms/eina/devel/eina.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- eina.spec 3 Jul 2009 12:24:50 -0000 1.5 +++ eina.spec 24 Jul 2009 21:57:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: eina Version: 0.8.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A classic player for a modern era Group: Applications/Multimedia @@ -102,6 +102,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Allisson Azevedo 0.8.0-2 - Fix changelog date. From jkeating at fedoraproject.org Fri Jul 24 21:57:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:57:28 +0000 (UTC) Subject: rpms/ejabberd/devel ejabberd.spec,1.38,1.39 Message-ID: <20090724215728.0847C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ejabberd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12838 Modified Files: ejabberd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ejabberd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ejabberd/devel/ejabberd.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- ejabberd.spec 21 Apr 2009 09:03:57 -0000 1.38 +++ ejabberd.spec 24 Jul 2009 21:57:27 -0000 1.39 @@ -1,6 +1,6 @@ Name: ejabberd Version: 2.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A distributed, fault-tolerant Jabber/XMPP server Group: Applications/Internet @@ -218,6 +218,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Peter Lemenkov 2.0.5-3 - CAPTCHA is back - let's test it. From jkeating at fedoraproject.org Fri Jul 24 21:57:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:57:42 +0000 (UTC) Subject: rpms/eject/devel eject.spec,1.40,1.41 Message-ID: <20090724215742.CE6E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12970 Modified Files: eject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eject.spec =================================================================== RCS file: /cvs/pkgs/rpms/eject/devel/eject.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- eject.spec 31 Mar 2009 09:42:26 -0000 1.40 +++ eject.spec 24 Jul 2009 21:57:42 -0000 1.41 @@ -1,7 +1,7 @@ Summary: A program that ejects removable media using software control. Name: eject Version: 2.1.5 -Release: 14%{dist} +Release: 15%{dist} License: GPLv2+ Group: System Environment/Base Source: http://metalab.unc.edu/pub/Linux/utils/disk-management/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.5-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Zdenek Prikryl 2.1.5-14 - Fixed space replacing in mount points (#492524) From jkeating at fedoraproject.org Fri Jul 24 21:57:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:57:55 +0000 (UTC) Subject: rpms/ekg/devel ekg.spec,1.14,1.15 Message-ID: <20090724215755.AD72811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ekg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13133 Modified Files: ekg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ekg.spec =================================================================== RCS file: /cvs/pkgs/rpms/ekg/devel/ekg.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ekg.spec 24 Feb 2009 14:20:06 -0000 1.14 +++ ekg.spec 24 Jul 2009 21:57:55 -0000 1.15 @@ -1,6 +1,6 @@ Name: ekg Version: 1.8 -Release: 0.4.rc1%{?dist} +Release: 0.5.rc1%{?dist} Summary: A client compatible with Gadu-Gadu Summary(de): Ein Cliente kompatibel mit Gadu-Gadu Summary(es): Un cliente compatible con Gadu-Gadu @@ -140,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %lang(pl) %{_mandir}/pl/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8-0.5.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.8-0.4.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:58:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:58:09 +0000 (UTC) Subject: rpms/ekg2/devel ekg2.spec,1.23,1.24 Message-ID: <20090724215809.8463C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ekg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13264 Modified Files: ekg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ekg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ekg2/devel/ekg2.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ekg2.spec 4 Mar 2009 23:16:06 -0000 1.23 +++ ekg2.spec 24 Jul 2009 21:58:09 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Multi-protocol instant messagin Summary(pl): Wieloprotoko?owy komunikator internetowy Name: ekg2 Version: 0.2 -Release: 0.9.rc1%{?dist} +Release: 0.10.rc1%{?dist} License: GPLv2 Group: Applications/Internet Source0: http://pl.ekg2.org/%{name}-%{version}-rc1.tar.gz @@ -375,6 +375,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/plugins/xosd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-0.10.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Caol?n McNamara - 0.2-0.9.rc1 - add BuildRequires to rebuild From jkeating at fedoraproject.org Fri Jul 24 21:58:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:58:23 +0000 (UTC) Subject: rpms/ekiga/devel ekiga.spec,1.84,1.85 Message-ID: <20090724215823.6A5CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ekiga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13426 Modified Files: ekiga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ekiga.spec =================================================================== RCS file: /cvs/pkgs/rpms/ekiga/devel/ekiga.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- ekiga.spec 10 Jul 2009 01:53:35 -0000 1.84 +++ ekiga.spec 24 Jul 2009 21:58:23 -0000 1.85 @@ -1,7 +1,7 @@ Summary: A Gnome based SIP/H323 teleconferencing application Name: ekiga Version: 3.2.5 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.ekiga.org/ Source0: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.1/%{name}-%{version}.tar.bz2 License: GPLv2+ @@ -142,6 +142,9 @@ scrollkeeper-update -q || : %{_sysconfdir}/gconf/schemas/ekiga.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Matthias Clasen - 3.2.5-2 - Shrink GConf schemas From jkeating at fedoraproject.org Fri Jul 24 21:58:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:58:36 +0000 (UTC) Subject: rpms/electric/devel electric.spec,1.5,1.6 Message-ID: <20090724215836.99CE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/electric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13636 Modified Files: electric.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: electric.spec =================================================================== RCS file: /cvs/pkgs/rpms/electric/devel/electric.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- electric.spec 24 Feb 2009 14:22:28 -0000 1.5 +++ electric.spec 24 Jul 2009 21:58:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: electric Version: 8.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Sophisticated Java based VLSI CAD System Group: Applications/Engineering @@ -111,6 +111,9 @@ install -d %{buildroot}%{_javadocdir}/%{ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:58:50 +0000 (UTC) Subject: rpms/electronics-menu/devel electronics-menu.spec,1.4,1.5 Message-ID: <20090724215850.49F7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/electronics-menu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13791 Modified Files: electronics-menu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: electronics-menu.spec =================================================================== RCS file: /cvs/pkgs/rpms/electronics-menu/devel/electronics-menu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- electronics-menu.spec 9 Jul 2009 22:37:42 -0000 1.4 +++ electronics-menu.spec 24 Jul 2009 21:58:50 -0000 1.5 @@ -2,7 +2,7 @@ Name: electronics-menu Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Electronics Menu for the Desktop License: GPLv2 @@ -75,6 +75,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Chitlesh Goorah - 1.0-4 - patched for submenus - added extra icons and directory desktop files to support the submenus feature From jkeating at fedoraproject.org Fri Jul 24 21:59:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:59:02 +0000 (UTC) Subject: rpms/elektra/devel elektra.spec,1.9,1.10 Message-ID: <20090724215902.8957C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elektra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13932 Modified Files: elektra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elektra.spec =================================================================== RCS file: /cvs/pkgs/rpms/elektra/devel/elektra.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- elektra.spec 5 Mar 2009 09:18:56 -0000 1.9 +++ elektra.spec 24 Jul 2009 21:59:02 -0000 1.10 @@ -1,7 +1,7 @@ Summary: A key/value pair database to store software configurations Name: elektra Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: BSD URL: http://www.libelektra.org @@ -187,6 +187,9 @@ elektra-kdb set system/sw/kdb/schemapath %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 kwizart < kwizart at gmail.com > - 0.7.0-1 - Update to 0.7.0 From jkeating at fedoraproject.org Fri Jul 24 21:59:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:59:15 +0000 (UTC) Subject: rpms/elfelli/devel elfelli.spec,1.1,1.2 Message-ID: <20090724215915.82A7C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elfelli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14085 Modified Files: elfelli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elfelli.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfelli/devel/elfelli.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- elfelli.spec 9 Jul 2009 20:37:27 -0000 1.1 +++ elfelli.spec 24 Jul 2009 21:59:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: elfelli Version: 0.3.1 -Release: 2.rc1%{?dist} +Release: 2.rc1%{?dist}.1 Summary: Visualisation tool for flux lines Group: Applications/Engineering @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-2.rc1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Fabian Affolter - 0.3.1-2.rc1 - Icon cache updates From jkeating at fedoraproject.org Fri Jul 24 21:59:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:59:29 +0000 (UTC) Subject: rpms/elfinfo/devel elfinfo.spec,1.7,1.8 Message-ID: <20090724215929.5AC9811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elfinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14263 Modified Files: elfinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elfinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfinfo/devel/elfinfo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- elfinfo.spec 24 Feb 2009 14:25:22 -0000 1.7 +++ elfinfo.spec 24 Jul 2009 21:59:29 -0000 1.8 @@ -1,6 +1,6 @@ Name: elfinfo Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: ELF file parser a subset of eu-readelf Group: Development/Tools License: GPLv2 @@ -35,6 +35,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 21:59:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:59:42 +0000 (UTC) Subject: rpms/elftoaout/devel elftoaout.spec,1.5,1.6 Message-ID: <20090724215942.2D0F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elftoaout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14398 Modified Files: elftoaout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elftoaout.spec =================================================================== RCS file: /cvs/pkgs/rpms/elftoaout/devel/elftoaout.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- elftoaout.spec 15 May 2009 17:20:59 -0000 1.5 +++ elftoaout.spec 24 Jul 2009 21:59:42 -0000 1.6 @@ -1,7 +1,7 @@ Summary: A utility for converting ELF binaries to a.out binaries Name: elftoaout Version: 2.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: System Environment/Kernel URL: http://www.sparc-boot.org/elftoaout @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/elftoaout.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Tom "spot" Callaway - 2.3-13 - fix elftoaout to use optflags From jkeating at fedoraproject.org Fri Jul 24 21:59:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 21:59:56 +0000 (UTC) Subject: rpms/elfutils/devel elfutils.spec,1.116,1.117 Message-ID: <20090724215956.E36C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elfutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14534 Modified Files: elfutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elfutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/elfutils/devel/elfutils.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- elfutils.spec 24 Apr 2009 20:12:58 -0000 1.116 +++ elfutils.spec 24 Jul 2009 21:59:56 -0000 1.117 @@ -27,7 +27,7 @@ Version: %{eu_version} %if !%{compat} Release: %{eu_release}%{?dist} %else -Release: 0.%{eu_release}.1 +Release: 0.%{eu_release}.2 %endif License: GPLv2 with exceptions Group: Development/Tools @@ -276,6 +276,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libelf.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.141-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Roland McGrath - 0.141-1 - Update to 0.141 - libebl: sparc backend fixes (#490585) From jkeating at fedoraproject.org Fri Jul 24 22:00:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:00:05 +0000 (UTC) Subject: rpms/elice/devel elice.spec,1.6,1.7 Message-ID: <20090724220005.C0E6311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14679 Modified Files: elice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elice.spec =================================================================== RCS file: /cvs/pkgs/rpms/elice/devel/elice.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- elice.spec 24 Feb 2009 14:28:11 -0000 1.6 +++ elice.spec 24 Jul 2009 22:00:05 -0000 1.7 @@ -1,6 +1,6 @@ Name: elice Version: 0.323 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PureBasic to C++ translator / compiler Group: Development/Languages License: GPLv2+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.323-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.323-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:00:22 +0000 (UTC) Subject: rpms/elilo/devel elilo.spec,1.33,1.34 Message-ID: <20090724220022.D148511C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elilo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14832 Modified Files: elilo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elilo.spec =================================================================== RCS file: /cvs/pkgs/rpms/elilo/devel/elilo.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- elilo.spec 12 Mar 2009 21:29:40 -0000 1.33 +++ elilo.spec 24 Jul 2009 22:00:22 -0000 1.34 @@ -3,7 +3,7 @@ Summary: ELILO linux boot loader for EFI Group: System Environment/Base Obsoletes: eli Version: 3.6 -Release: 13 +Release: 14 License: GPLv2+ URL: http://elilo.sourceforge.net @@ -45,6 +45,9 @@ rm -rf %{buildroot} /boot/efi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Chris Lumens 3.6-13 - We no longer need to build this on i386. From jkeating at fedoraproject.org Fri Jul 24 22:00:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:00:37 +0000 (UTC) Subject: rpms/elinks/devel elinks.spec,1.75,1.76 Message-ID: <20090724220037.C081211C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elinks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15002 Modified Files: elinks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elinks.spec =================================================================== RCS file: /cvs/pkgs/rpms/elinks/devel/elinks.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- elinks.spec 8 Jul 2009 13:37:09 -0000 1.75 +++ elinks.spec 24 Jul 2009 22:00:37 -0000 1.76 @@ -1,7 +1,7 @@ Name: elinks Summary: A text-mode Web browser Version: 0.12 -Release: 0.17.pre5%{?dist} +Release: 0.18.pre5%{?dist} License: GPLv2 URL: http://elinks.or.cz Group: Applications/Internet @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12-0.18.pre5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Ondrej Vasik 0.12-0.17.pre5 - new upstream bugfix prerelease From jkeating at fedoraproject.org Fri Jul 24 22:01:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:01:03 +0000 (UTC) Subject: rpms/elisa/devel elisa.spec,1.21,1.22 Message-ID: <20090724220103.1264C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elisa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15241 Modified Files: elisa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elisa.spec =================================================================== RCS file: /cvs/pkgs/rpms/elisa/devel/elisa.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- elisa.spec 12 Apr 2009 19:02:47 -0000 1.21 +++ elisa.spec 24 Jul 2009 22:01:02 -0000 1.22 @@ -3,7 +3,7 @@ Summary: Media Center Name: elisa Version: 0.5.35 -Release: 1%{?dist} +Release: 2%{?dist} # The base of Elisa is GPLv3, some plugins are MIT but are in other packages. # See the included COPYING file for the details. License: GPLv3 @@ -92,6 +92,9 @@ Base files for the Elisa Media Center. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 0.5.35-1 - Update to 0.5.35. From jkeating at fedoraproject.org Fri Jul 24 22:01:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:01:19 +0000 (UTC) Subject: rpms/elisa-plugins-bad/devel elisa-plugins-bad.spec,1.2,1.3 Message-ID: <20090724220119.403F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elisa-plugins-bad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15398 Modified Files: elisa-plugins-bad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elisa-plugins-bad.spec =================================================================== RCS file: /cvs/pkgs/rpms/elisa-plugins-bad/devel/elisa-plugins-bad.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- elisa-plugins-bad.spec 12 Apr 2009 19:03:36 -0000 1.2 +++ elisa-plugins-bad.spec 24 Jul 2009 22:01:19 -0000 1.3 @@ -3,7 +3,7 @@ Summary: Bad Plugins for the Elisa Media Center Name: elisa-plugins-bad Version: 0.5.35 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 Group: Applications/Multimedia URL: http://elisa.fluendo.com/ @@ -125,6 +125,9 @@ in the good set of plugins, but do not p %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 0.5.35-1 - Update to 0.5.35. From jkeating at fedoraproject.org Fri Jul 24 22:01:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:01:36 +0000 (UTC) Subject: rpms/elisa-plugins-good/devel elisa-plugins-good.spec,1.5,1.6 Message-ID: <20090724220136.74C5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elisa-plugins-good/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15586 Modified Files: elisa-plugins-good.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elisa-plugins-good.spec =================================================================== RCS file: /cvs/pkgs/rpms/elisa-plugins-good/devel/elisa-plugins-good.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- elisa-plugins-good.spec 12 Apr 2009 19:03:07 -0000 1.5 +++ elisa-plugins-good.spec 24 Jul 2009 22:01:36 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Good Plugins for the Elisa Media Center Name: elisa-plugins-good Version: 0.5.35 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 Group: Applications/Multimedia URL: http://elisa.fluendo.com/ @@ -58,6 +58,9 @@ plugins which are considered stable and %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 0.5.35-1 - Update to 0.5.35. From jkeating at fedoraproject.org Fri Jul 24 22:01:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:01:51 +0000 (UTC) Subject: rpms/elph/devel elph.spec,1.5,1.6 Message-ID: <20090724220151.EA31511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15729 Modified Files: elph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elph.spec =================================================================== RCS file: /cvs/pkgs/rpms/elph/devel/elph.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- elph.spec 24 Feb 2009 14:33:03 -0000 1.5 +++ elph.spec 24 Jul 2009 22:01:51 -0000 1.6 @@ -1,6 +1,6 @@ Name: elph Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool to find motifs in a set of DNA or protein sequences Group: Applications/Engineering @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:02:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:02:06 +0000 (UTC) Subject: rpms/elsa/devel elsa.spec,1.4,1.5 Message-ID: <20090724220206.D064911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/elsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15872 Modified Files: elsa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: elsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/elsa/devel/elsa.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- elsa.spec 24 Feb 2009 14:34:07 -0000 1.4 +++ elsa.spec 24 Jul 2009 22:02:06 -0000 1.5 @@ -1,7 +1,7 @@ Summary: ELSA is an enhanced Linux system accounting Name: elsa Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPLv2+ @@ -53,6 +53,9 @@ rm -rf %{buildroot} %doc -P ChangeLog COPYING README HOWTO utils/test_elsa_installation.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:02:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:02:21 +0000 (UTC) Subject: rpms/em8300/devel em8300.spec,1.27,1.28 Message-ID: <20090724220221.8539511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/em8300/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16053 Modified Files: em8300.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: em8300.spec =================================================================== RCS file: /cvs/pkgs/rpms/em8300/devel/em8300.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- em8300.spec 16 Jul 2009 19:06:04 -0000 1.27 +++ em8300.spec 24 Jul 2009 22:02:21 -0000 1.28 @@ -3,7 +3,7 @@ Name: em8300 Version: 0.17.3 -Release: 1%{?prever:.%{prever}}%{?dist} +Release: 2%{?prever:.%{prever}}%{?dist} Summary: DXR3/Hollywood Plus MPEG decoder card support tools Group: Applications/System @@ -141,6 +141,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Felix Kaechele - 0.17.3-1 - new upstream version From jkeating at fedoraproject.org Fri Jul 24 22:02:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:02:41 +0000 (UTC) Subject: rpms/emacs/devel emacs.spec,1.129,1.130 Message-ID: <20090724220241.68D1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16239 Modified Files: emacs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs/devel/emacs.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- emacs.spec 26 Jun 2009 10:25:51 -0000 1.129 +++ emacs.spec 24 Jul 2009 22:02:41 -0000 1.130 @@ -4,7 +4,7 @@ Summary: GNU Emacs text editor Name: emacs Epoch: 1 Version: 23.0.93 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/emacs/ Group: Applications/Editors @@ -369,6 +369,9 @@ alternatives --install %{_bindir}/etags %dir %{_datadir}/emacs/%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:23.0.93-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Daniel Novotny 1:23.0.93-6 - removed dependency to bitmap fonts: emacs version 23 does not need them From jkeating at fedoraproject.org Fri Jul 24 22:02:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:02:56 +0000 (UTC) Subject: rpms/emacs-auctex/devel emacs-auctex.spec,1.36,1.37 Message-ID: <20090724220256.BC46911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-auctex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16402 Modified Files: emacs-auctex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-auctex.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-auctex/devel/emacs-auctex.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- emacs-auctex.spec 24 Feb 2009 14:37:02 -0000 1.36 +++ emacs-auctex.spec 24 Jul 2009 22:02:56 -0000 1.37 @@ -24,7 +24,7 @@ Summary: Enhanced TeX modes for Emacs Name: emacs-auctex Version: 11.85 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv3+ Group: Applications/Editors URL: http://www.gnu.org/software/auctex/ @@ -195,6 +195,9 @@ fi %doc doc/html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.85-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 11.85-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:03:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:03:10 +0000 (UTC) Subject: rpms/emacs-bbdb/devel emacs-bbdb.spec,1.5,1.6 Message-ID: <20090724220310.AEE4911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-bbdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16533 Modified Files: emacs-bbdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-bbdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-bbdb/devel/emacs-bbdb.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- emacs-bbdb.spec 24 Feb 2009 14:38:02 -0000 1.5 +++ emacs-bbdb.spec 24 Jul 2009 22:03:10 -0000 1.6 @@ -25,7 +25,7 @@ Name: emacs-bbdb Version: 2.35 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: A contact management utility for use with Emacs Group: Applications/Internet @@ -146,6 +146,9 @@ fi %{lispdir}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.35-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:2.35-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:03:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:03:23 +0000 (UTC) Subject: rpms/emacs-common-ebib/devel emacs-common-ebib.spec,1.6,1.7 Message-ID: <20090724220323.D0F4711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-common-ebib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16690 Modified Files: emacs-common-ebib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-common-ebib.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-ebib/devel/emacs-common-ebib.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- emacs-common-ebib.spec 24 Feb 2009 14:39:01 -0000 1.6 +++ emacs-common-ebib.spec 24 Jul 2009 22:03:23 -0000 1.7 @@ -28,7 +28,7 @@ Name: emacs-common-%{pkg} Version: 1.7.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A BibTeX database manager that runs in Emacs and XEmacs Group: Applications/Editors @@ -181,6 +181,9 @@ fi %{xemacs_lispdir}/%{pkg}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:03:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:03:37 +0000 (UTC) Subject: rpms/emacs-common-ess/devel emacs-common-ess.spec,1.5,1.6 Message-ID: <20090724220337.8DED611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-common-ess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16826 Modified Files: emacs-common-ess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-common-ess.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-ess/devel/emacs-common-ess.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- emacs-common-ess.spec 24 Feb 2009 14:40:03 -0000 1.5 +++ emacs-common-ess.spec 24 Jul 2009 22:03:37 -0000 1.6 @@ -28,7 +28,7 @@ Name: emacs-common-%{pkg} Version: 5.3.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: %{pkgname} add-on package for Emacs Group: Applications/Editors @@ -257,6 +257,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:03:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:03:52 +0000 (UTC) Subject: rpms/emacs-common-muse/devel emacs-common-muse.spec,1.23,1.24 Message-ID: <20090724220352.E9AA011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-common-muse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16961 Modified Files: emacs-common-muse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-common-muse.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-muse/devel/emacs-common-muse.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- emacs-common-muse.spec 24 Feb 2009 14:41:05 -0000 1.23 +++ emacs-common-muse.spec 24 Jul 2009 22:03:52 -0000 1.24 @@ -30,7 +30,7 @@ Name: emacs-common-muse Version: 3.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Emacs Muse is an authoring and publishing environment for Emacs Group: Applications/Editors License: GPLv2+ @@ -213,6 +213,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:04:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:04:07 +0000 (UTC) Subject: rpms/emacs-common-tuareg/devel emacs-common-tuareg.spec,1.6,1.7 Message-ID: <20090724220407.9DB9A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-common-tuareg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17134 Modified Files: emacs-common-tuareg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-common-tuareg.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-tuareg/devel/emacs-common-tuareg.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- emacs-common-tuareg.spec 24 Feb 2009 14:42:02 -0000 1.6 +++ emacs-common-tuareg.spec 24 Jul 2009 22:04:07 -0000 1.7 @@ -30,7 +30,7 @@ Name: emacs-common-%{pkg} Version: 1.45.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Emacs and XEmacs mode for editing ocaml Group: Development/Libraries @@ -173,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.45.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.45.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:04:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:04:24 +0000 (UTC) Subject: rpms/emacs-htmlize/devel emacs-htmlize.spec,1.2,1.3 Message-ID: <20090724220424.29A4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-htmlize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17287 Modified Files: emacs-htmlize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-htmlize.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-htmlize/devel/emacs-htmlize.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- emacs-htmlize.spec 24 Feb 2009 14:42:55 -0000 1.2 +++ emacs-htmlize.spec 24 Jul 2009 22:04:23 -0000 1.3 @@ -14,7 +14,7 @@ Summary: Convert buffer text and decorations to HTML Name: emacs-%{pkg} Version: 1.34 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Publishing URL: http://www.emacswiki.org/emacs-en/Htmlize @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{emacs_lispdir}/%{pkg}/%{pkg}.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.34-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.34-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:04:38 +0000 (UTC) Subject: rpms/emacs-lua/devel emacs-lua.spec,1.2,1.3 Message-ID: <20090724220438.CAF9D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-lua/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17436 Modified Files: emacs-lua.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-lua.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-lua/devel/emacs-lua.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- emacs-lua.spec 24 Feb 2009 14:43:53 -0000 1.2 +++ emacs-lua.spec 24 Jul 2009 22:04:38 -0000 1.3 @@ -16,7 +16,7 @@ Name: emacs-%{pkg} Version: 20071122 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Lua major mode for GNU Emacs Group: Applications/Editors @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{emacs_lispdir}/lua-mode.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20071122-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20071122-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:04:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:04:54 +0000 (UTC) Subject: rpms/emacs-magit/devel emacs-magit.spec,1.3,1.4 Message-ID: <20090724220454.D093F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-magit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17598 Modified Files: emacs-magit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-magit.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-magit/devel/emacs-magit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- emacs-magit.spec 24 Feb 2009 14:44:51 -0000 1.3 +++ emacs-magit.spec 24 Jul 2009 22:04:54 -0000 1.4 @@ -14,7 +14,7 @@ Name: emacs-%{pkg} Version: 0.7 -Release: 4.%{git_pull_date}git%{?dist} +Release: 5.%{git_pull_date}git%{?dist} Summary: Emacs interface to the most common Git operations Group: Applications/Editors @@ -97,6 +97,9 @@ fi %{emacs_lispdir}/%{pkg}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-5.20090122git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-4.20090122git - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:05:09 +0000 (UTC) Subject: rpms/emacs-mew/devel emacs-mew.spec,1.5,1.6 Message-ID: <20090724220509.E5F5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-mew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17754 Modified Files: emacs-mew.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-mew.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-mew/devel/emacs-mew.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- emacs-mew.spec 17 Jul 2009 12:12:55 -0000 1.5 +++ emacs-mew.spec 24 Jul 2009 22:05:09 -0000 1.6 @@ -16,7 +16,7 @@ Name: emacs-%{pkg} Version: 6.2.51 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Email client for GNU Emacs Group: Applications/Internet @@ -139,6 +139,9 @@ fi %{emacs_lispdir}/%{pkg}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.2.51-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Akira TAGOH - 6.2.51-3 - Fix FTBFS issue. (#511618) From jkeating at fedoraproject.org Fri Jul 24 22:05:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:05:26 +0000 (UTC) Subject: rpms/emacs-mmm/devel emacs-mmm.spec,1.1,1.2 Message-ID: <20090724220526.E887611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-mmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17924 Modified Files: emacs-mmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-mmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-mmm/devel/emacs-mmm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- emacs-mmm.spec 13 Apr 2009 10:23:24 -0000 1.1 +++ emacs-mmm.spec 24 Jul 2009 22:05:26 -0000 1.2 @@ -17,7 +17,7 @@ Name: emacs-%{pkg} Version: 0.4.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Emacs minor mode allowing different major modes in the same file Group: Applications/Editors @@ -122,5 +122,8 @@ fi %{emacs_lispdir}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Alan Dunn 0.4.8-1 - Initial Fedora RPM. From jkeating at fedoraproject.org Fri Jul 24 22:05:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:05:43 +0000 (UTC) Subject: rpms/emacs-nxml-mode/devel emacs-nxml-mode.spec,1.4,1.5 Message-ID: <20090724220543.0281711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-nxml-mode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18092 Modified Files: emacs-nxml-mode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-nxml-mode.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-nxml-mode/devel/emacs-nxml-mode.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- emacs-nxml-mode.spec 24 Feb 2009 14:46:53 -0000 1.4 +++ emacs-nxml-mode.spec 24 Jul 2009 22:05:42 -0000 1.5 @@ -2,7 +2,7 @@ Summary: Emacs package for editing XML Name: emacs-nxml-mode Version: 0.%{snapshot} -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Editors URL: http://www.thaiopensource.com/nxml-mode/ @@ -73,6 +73,9 @@ fi exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20041004-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20041004-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:05:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:05:59 +0000 (UTC) Subject: rpms/emacs-vm/devel emacs-vm.spec,1.35,1.36 Message-ID: <20090724220559.B0AC911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacs-vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18280 Modified Files: emacs-vm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacs-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacs-vm/devel/emacs-vm.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- emacs-vm.spec 24 Feb 2009 14:47:51 -0000 1.35 +++ emacs-vm.spec 24 Jul 2009 22:05:59 -0000 1.36 @@ -29,7 +29,7 @@ Summary: Emacs VM mailreader Name: emacs-vm Version: 8.0.12 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.nongnu.org/viewmail/ @@ -139,6 +139,9 @@ fi %{pkgdir}/*.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.0.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8.0.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:06:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:06:15 +0000 (UTC) Subject: rpms/emacspeak/devel emacspeak.spec,1.30,1.31 Message-ID: <20090724220615.95E0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emacspeak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18446 Modified Files: emacspeak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emacspeak.spec =================================================================== RCS file: /cvs/pkgs/rpms/emacspeak/devel/emacspeak.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- emacspeak.spec 24 Feb 2009 14:48:47 -0000 1.30 +++ emacspeak.spec 24 Jul 2009 22:06:15 -0000 1.31 @@ -1,7 +1,7 @@ Summary: Emacs Speech interface Name: emacspeak Version: 29.0 -Release: 2%{?dist} +Release: 3%{?dist} # main lisp files are GPL2+ # lisp/atom-blogger and lisp/g-client are BSD License: GPLv2+ and BSD @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_infodir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 29.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 29.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Fri Jul 24 22:06:31 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:06:31 +0000 (UTC) Subject: rpms/xine-ui/EL-5 xine-ui.spec,1.3,1.4 Message-ID: <20090724220631.D7BBA11C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18602 Modified Files: xine-ui.spec Log Message: Fix EPEL build. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/EL-5/xine-ui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xine-ui.spec 24 Jul 2009 21:13:36 -0000 1.3 +++ xine-ui.spec 24 Jul 2009 22:06:31 -0000 1.4 @@ -65,11 +65,14 @@ BuildRequires: libXt-devel BuildRequires: libXtst-devel BuildRequires: libXv-devel BuildRequires: libXxf86vm-devel -BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 BuildRequires: xorg-x11-proto-devel -Conflicts: xine-skins <= 1.0 + +# Lirc-devel is not available on EPEL-5 +%if 0%{?rhel} == 0 +BuildRequires: lirc-devel +%endif # For dir ownership Requires: hicolor-icon-theme From jkeating at fedoraproject.org Fri Jul 24 22:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:06:33 +0000 (UTC) Subject: rpms/email2trac/devel email2trac.spec,1.4,1.5 Message-ID: <20090724220633.2AF1411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/email2trac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18634 Modified Files: email2trac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: email2trac.spec =================================================================== RCS file: /cvs/pkgs/rpms/email2trac/devel/email2trac.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- email2trac.spec 21 Apr 2009 21:08:13 -0000 1.4 +++ email2trac.spec 24 Jul 2009 22:06:33 -0000 1.5 @@ -2,7 +2,7 @@ # Jon Topper Name: email2trac Version: 0.13 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Utilities for converting emails to trac tickets Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Jesse Keating - 0.13-5 - Explicitly pass RPM_OPT_FLAGS From jkeating at fedoraproject.org Fri Jul 24 22:06:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:06:48 +0000 (UTC) Subject: rpms/ember/devel ember.spec,1.16,1.17 Message-ID: <20090724220648.C89CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ember/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18865 Modified Files: ember.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ember.spec =================================================================== RCS file: /cvs/pkgs/rpms/ember/devel/ember.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ember.spec 11 May 2009 11:12:09 -0000 1.16 +++ ember.spec 24 Jul 2009 22:06:48 -0000 1.17 @@ -1,6 +1,6 @@ Name: ember Version: 0.5.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D client for WorldForge Group: Amusements/Games @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Alexey Torkhov - 0.5.6-1 - Update to 0.5.6 From jkeating at fedoraproject.org Fri Jul 24 22:07:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:07:03 +0000 (UTC) Subject: rpms/ember-media/devel ember-media.spec,1.13,1.14 Message-ID: <20090724220703.D33F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ember-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19117 Modified Files: ember-media.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ember-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/ember-media/devel/ember-media.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ember-media.spec 21 Jun 2009 09:27:43 -0000 1.13 +++ ember-media.spec 24 Jul 2009 22:07:03 -0000 1.14 @@ -1,7 +1,7 @@ Name: ember-media Version: 0.5.6 # No dist tag because this is large noarch game data -Release: 2 +Release: 3 Summary: Media files for the ember WorldForge client Group: Amusements/Games @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Alexey Torkhov - 0.5.6-2 - Fixing broken link to DejaVu font From jkeating at fedoraproject.org Fri Jul 24 22:07:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:07:19 +0000 (UTC) Subject: rpms/embryo/devel embryo.spec,1.8,1.9 Message-ID: <20090724220719.2CE9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/embryo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19268 Modified Files: embryo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: embryo.spec =================================================================== RCS file: /cvs/pkgs/rpms/embryo/devel/embryo.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- embryo.spec 24 Feb 2009 14:52:36 -0000 1.8 +++ embryo.spec 24 Jul 2009 22:07:19 -0000 1.9 @@ -1,6 +1,6 @@ Name: embryo Version: 0.9.9.050 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easy to use library for running compiled PAWN programs Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.050-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.9.050-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:07:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:07:34 +0000 (UTC) Subject: rpms/emelfm2/devel emelfm2.spec,1.42,1.43 Message-ID: <20090724220734.024D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emelfm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19444 Modified Files: emelfm2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emelfm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/emelfm2/devel/emelfm2.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- emelfm2.spec 21 Jul 2009 18:01:27 -0000 1.42 +++ emelfm2.spec 24 Jul 2009 22:07:33 -0000 1.43 @@ -6,7 +6,7 @@ Name: emelfm2 Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File manager that implements the popular two-pane design Group: Applications/File @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Christoph Wickert - 0.6.2-2 - Fix a typo that prefented the debuginfo from being built (#513031) From jkeating at fedoraproject.org Fri Jul 24 22:07:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:07:49 +0000 (UTC) Subject: rpms/emerald/devel emerald.spec,1.21,1.22 Message-ID: <20090724220749.DD61811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emerald/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19604 Modified Files: emerald.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emerald.spec =================================================================== RCS file: /cvs/pkgs/rpms/emerald/devel/emerald.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- emerald.spec 20 Jun 2009 17:47:23 -0000 1.21 +++ emerald.spec 24 Jul 2009 22:07:49 -0000 1.22 @@ -3,7 +3,7 @@ Url: http://www.compiz-fusion License: GPLv2 Group: User Interface/Desktops Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Themeable window decorator and compositing manager for Compiz Fusion BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -97,6 +97,9 @@ update-desktop-database %{_datadir}/appl %{_libdir}/libemeraldengine.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Nikolay Vladimirov - 0.8.2-1 - New upstream - Added build requires for libXres-devel( BZ#496969) From jkeating at fedoraproject.org Fri Jul 24 22:08:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:08:05 +0000 (UTC) Subject: rpms/emerald-themes/devel emerald-themes.spec,1.11,1.12 Message-ID: <20090724220805.060D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emerald-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19762 Modified Files: emerald-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emerald-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/emerald-themes/devel/emerald-themes.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- emerald-themes.spec 24 Feb 2009 14:55:14 -0000 1.11 +++ emerald-themes.spec 24 Jul 2009 22:08:04 -0000 1.12 @@ -3,7 +3,7 @@ Url: http://www.compiz-fusion License: GPLv2 Group: User Interface/Desktops Version: 0.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Themes for Emerald, a window decorator for Compiz Fusion BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:08:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:08:19 +0000 (UTC) Subject: rpms/emesene/devel emesene.spec,1.7,1.8 Message-ID: <20090724220819.B752311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emesene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19929 Modified Files: emesene.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emesene.spec =================================================================== RCS file: /cvs/pkgs/rpms/emesene/devel/emesene.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- emesene.spec 24 Feb 2009 14:56:11 -0000 1.7 +++ emesene.spec 24 Jul 2009 22:08:19 -0000 1.8 @@ -5,7 +5,7 @@ Name: emesene Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Instant messaging client for Windows Live Messenger (tm) network Group: Applications/Internet @@ -104,6 +104,9 @@ desktop-file-install --dir $RPM_BUILD_RO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:08:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:08:36 +0000 (UTC) Subject: rpms/emma/devel emma.spec,1.6,1.7 Message-ID: <20090724220836.199A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20082 Modified Files: emma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emma.spec =================================================================== RCS file: /cvs/pkgs/rpms/emma/devel/emma.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- emma.spec 24 Feb 2009 14:57:09 -0000 1.6 +++ emma.spec 24 Jul 2009 22:08:35 -0000 1.7 @@ -33,7 +33,7 @@ Summary: Code Coverage Tool Name: emma Version: %{shortver}.5312 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 0 Group: Development/Tools License: CPL @@ -149,6 +149,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.0.5312-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:2.0.5312-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:08:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:08:52 +0000 (UTC) Subject: rpms/emotion/devel emotion.spec,1.3,1.4 Message-ID: <20090724220852.184D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/emotion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20238 Modified Files: emotion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: emotion.spec =================================================================== RCS file: /cvs/pkgs/rpms/emotion/devel/emotion.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- emotion.spec 24 Feb 2009 14:58:06 -0000 1.3 +++ emotion.spec 24 Jul 2009 22:08:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: emotion Version: 0.1.0.042 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An Evas smart-object library providing video capabilities Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0.042-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.0.042-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:09:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:09:08 +0000 (UTC) Subject: rpms/empathy/devel empathy.spec,1.62,1.63 Message-ID: <20090724220908.42CD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/empathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20411 Modified Files: empathy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: empathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/empathy/devel/empathy.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- empathy.spec 16 Jul 2009 18:47:25 -0000 1.62 +++ empathy.spec 24 Jul 2009 22:09:08 -0000 1.63 @@ -11,7 +11,7 @@ Name: empathy Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Instant Messaging Client for GNOME Group: Applications/Communications @@ -236,6 +236,9 @@ fi %{python_sitearch}/empathy*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Matthias Clasen - 2.27.4-2 - Deal with some stubborn buttons From jkeating at fedoraproject.org Fri Jul 24 22:09:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:09:22 +0000 (UTC) Subject: rpms/enblend/devel enblend.spec,1.12,1.13 Message-ID: <20090724220922.BFD2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enblend/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20557 Modified Files: enblend.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enblend.spec =================================================================== RCS file: /cvs/pkgs/rpms/enblend/devel/enblend.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- enblend.spec 24 Feb 2009 14:59:52 -0000 1.12 +++ enblend.spec 24 Jul 2009 22:09:22 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Image Blending with Multiresolution Splines Name: enblend Version: 3.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://downloads.sourceforge.net/enblend/enblend-enfuse-%{version}.tar.gz @@ -56,6 +56,9 @@ fi %{_infodir}/*.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:09:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:09:38 +0000 (UTC) Subject: rpms/enca/devel enca.spec,1.8,1.9 Message-ID: <20090724220938.06FF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20697 Modified Files: enca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enca.spec =================================================================== RCS file: /cvs/pkgs/rpms/enca/devel/enca.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- enca.spec 24 Feb 2009 15:00:49 -0000 1.8 +++ enca.spec 24 Jul 2009 22:09:37 -0000 1.9 @@ -1,7 +1,7 @@ Name: enca Summary: Character set analyzer and detector Version: 1.9 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Text Source: http://trific.ath.cx/Ftp/enca/enca-%{version}.tar.bz2 @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:09:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:09:53 +0000 (UTC) Subject: rpms/enchant/devel enchant.spec,1.25,1.26 Message-ID: <20090724220953.736A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enchant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20847 Modified Files: enchant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enchant.spec =================================================================== RCS file: /cvs/pkgs/rpms/enchant/devel/enchant.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- enchant.spec 2 Jul 2009 12:49:10 -0000 1.25 +++ enchant.spec 24 Jul 2009 22:09:53 -0000 1.26 @@ -1,7 +1,7 @@ Summary: An Enchanting Spell Checking Library Name: enchant Version: 1.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Group: System Environment/Libraries License: LGPLv2+ @@ -96,6 +96,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/enchant rm -r $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Caol?n McNamara 1:1.5.0-2 - Resolves: rhbz#508781 improve enchant quality, leaks, and edge-case language dict selection From jkeating at fedoraproject.org Fri Jul 24 22:10:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:10:09 +0000 (UTC) Subject: rpms/enemies-of-carlotta/devel enemies-of-carlotta.spec,1.11,1.12 Message-ID: <20090724221009.D137211C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enemies-of-carlotta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21038 Modified Files: enemies-of-carlotta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enemies-of-carlotta.spec =================================================================== RCS file: /cvs/pkgs/rpms/enemies-of-carlotta/devel/enemies-of-carlotta.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- enemies-of-carlotta.spec 24 Feb 2009 15:02:33 -0000 1.11 +++ enemies-of-carlotta.spec 24 Jul 2009 22:10:09 -0000 1.12 @@ -1,6 +1,6 @@ Name: enemies-of-carlotta Version: 1.2.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple mailing list manager Group: Applications/Internet @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:10:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:10:25 +0000 (UTC) Subject: rpms/enet/devel enet.spec,1.4,1.5 Message-ID: <20090724221025.16ACF11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21232 Modified Files: enet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enet.spec =================================================================== RCS file: /cvs/pkgs/rpms/enet/devel/enet.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- enet.spec 24 Feb 2009 15:03:26 -0000 1.4 +++ enet.spec 24 Jul 2009 22:10:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: enet Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Thin, simple and robust network layer on top of UDP Group: System Environment/Libraries License: MIT @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:10:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:10:42 +0000 (UTC) Subject: rpms/engine_pkcs11/devel engine_pkcs11.spec,1.6,1.7 Message-ID: <20090724221042.F1E4411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/engine_pkcs11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21449 Modified Files: engine_pkcs11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: engine_pkcs11.spec =================================================================== RCS file: /cvs/pkgs/rpms/engine_pkcs11/devel/engine_pkcs11.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- engine_pkcs11.spec 24 Feb 2009 15:04:24 -0000 1.6 +++ engine_pkcs11.spec 24 Jul 2009 22:10:42 -0000 1.7 @@ -1,6 +1,6 @@ Name: engine_pkcs11 Version: 0.1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A PKCS#11 engine for use with OpenSSL Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 22:10:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:10:58 +0000 Subject: [pkgdb] bleachbit was added for sundaram Message-ID: <20090724221058.4704210F8AB@bastion2.fedora.phx.redhat.com> tibbs has added Package bleachbit with summary Remove unnecessary files, free space, and maintain privacy tibbs has approved Package bleachbit tibbs has added a Fedora devel branch for bleachbit with an owner of sundaram tibbs has approved bleachbit in Fedora devel tibbs has approved Package bleachbit tibbs has set commit to Approved for 107427 on bleachbit (Fedora devel) tibbs has set checkout to Approved for 107427 on bleachbit (Fedora devel) tibbs has set build to Approved for 107427 on bleachbit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bleachbit From jkeating at fedoraproject.org Fri Jul 24 22:10:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:10:58 +0000 (UTC) Subject: rpms/enigma/devel enigma.spec,1.28,1.29 Message-ID: <20090724221058.6686E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enigma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21628 Modified Files: enigma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enigma.spec =================================================================== RCS file: /cvs/pkgs/rpms/enigma/devel/enigma.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- enigma.spec 2 Mar 2009 16:28:02 -0000 1.28 +++ enigma.spec 24 Jul 2009 22:10:58 -0000 1.29 @@ -1,6 +1,6 @@ Name: enigma Version: 1.01 -Release: 10 +Release: 11 Summary: Clone of the ATARI game Oxyd Group: Amusements/Games @@ -93,6 +93,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %exclude %{_libdir}/libenet.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Caol?n McNamara - 1.01-10 - fix up consts From pkgdb at fedoraproject.org Fri Jul 24 22:10:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:10:59 +0000 Subject: [pkgdb] bleachbit summary updated by tibbs Message-ID: <20090724221059.594F010F8AD@bastion2.fedora.phx.redhat.com> tibbs set package bleachbit summary to Remove unnecessary files, free space, and maintain privacy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bleachbit From pkgdb at fedoraproject.org Fri Jul 24 22:10:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:10:59 +0000 Subject: [pkgdb] bleachbit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724221059.5E72E10F8B6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for bleachbit tibbs has set commit to Approved for 107427 on bleachbit (Fedora 11) tibbs has set checkout to Approved for 107427 on bleachbit (Fedora 11) tibbs has set build to Approved for 107427 on bleachbit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bleachbit From pkgdb at fedoraproject.org Fri Jul 24 22:10:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:10:59 +0000 Subject: [pkgdb] bleachbit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724221059.6E9AE10F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for bleachbit tibbs has set commit to Approved for 107427 on bleachbit (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on bleachbit (Fedora EPEL 5) tibbs has set build to Approved for 107427 on bleachbit (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bleachbit From tibbs at fedoraproject.org Fri Jul 24 22:11:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:11:06 +0000 (UTC) Subject: rpms/bleachbit - New directory Message-ID: <20090724221106.1A1E611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bleachbit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq21703/rpms/bleachbit Log Message: Directory /cvs/pkgs/rpms/bleachbit added to the repository From tibbs at fedoraproject.org Fri Jul 24 22:11:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:11:06 +0000 (UTC) Subject: rpms/bleachbit/devel - New directory Message-ID: <20090724221106.3EF4111C02BB@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bleachbit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq21703/rpms/bleachbit/devel Log Message: Directory /cvs/pkgs/rpms/bleachbit/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 24 22:10:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:10:59 +0000 Subject: [pkgdb] bleachbit (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724221059.7556110F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for bleachbit tibbs has set commit to Approved for 107427 on bleachbit (Fedora 10) tibbs has set checkout to Approved for 107427 on bleachbit (Fedora 10) tibbs has set build to Approved for 107427 on bleachbit (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bleachbit From tibbs at fedoraproject.org Fri Jul 24 22:11:12 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:11:12 +0000 (UTC) Subject: rpms/bleachbit Makefile,NONE,1.1 Message-ID: <20090724221113.019DC11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bleachbit In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq21703/rpms/bleachbit Added Files: Makefile Log Message: Setup of module bleachbit --- NEW FILE Makefile --- # Top level Makefile for module bleachbit all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 22:11:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:11:13 +0000 (UTC) Subject: rpms/bleachbit/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724221113.4C50F11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/bleachbit/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq21703/rpms/bleachbit/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module bleachbit --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: bleachbit # $Id: Makefile,v 1.1 2009/07/24 22:11:13 tibbs Exp $ NAME := bleachbit SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 22:11:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:11:12 +0000 (UTC) Subject: rpms/enlightenment/devel enlightenment.spec,1.6,1.7 Message-ID: <20090724221112.4F2F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enlightenment/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21824 Modified Files: enlightenment.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enlightenment.spec =================================================================== RCS file: /cvs/pkgs/rpms/enlightenment/devel/enlightenment.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- enlightenment.spec 24 Feb 2009 15:06:20 -0000 1.6 +++ enlightenment.spec 24 Jul 2009 22:11:12 -0000 1.7 @@ -1,6 +1,6 @@ Name: enlightenment Version: 0.16.999.050 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Highly optimized and extensible desktop shell Group: User Interface/Desktops @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.999.050-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.16.999.050-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:11:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:11:27 +0000 (UTC) Subject: rpms/enscript/devel enscript.spec,1.41,1.42 Message-ID: <20090724221127.06F0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/enscript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22144 Modified Files: enscript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: enscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/enscript/devel/enscript.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- enscript.spec 24 Feb 2009 15:07:23 -0000 1.41 +++ enscript.spec 24 Jul 2009 22:11:26 -0000 1.42 @@ -1,7 +1,7 @@ Summary: A plain ASCII to PostScript converter. Name: enscript Version: 1.6.4 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Applications/Publishing Source0: http://www.iki.fi/mtr/genscript/enscript-%{version}.tar.gz @@ -96,6 +96,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:11:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:11:42 +0000 (UTC) Subject: rpms/entertrack/devel entertrack.spec,1.2,1.3 Message-ID: <20090724221142.C306D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/entertrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22321 Modified Files: entertrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: entertrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/entertrack/devel/entertrack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- entertrack.spec 24 Feb 2009 15:08:17 -0000 1.2 +++ entertrack.spec 24 Jul 2009 22:11:42 -0000 1.3 @@ -3,7 +3,7 @@ Name: entertrack Version: 1.2.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Web-based artifact tracking/management system written in PHP Group: Applications/Productivity License: GPLv2 and LGPLv2+ @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:11:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:11:57 +0000 (UTC) Subject: rpms/environment-modules/devel environment-modules.spec,1.18,1.19 Message-ID: <20090724221157.ABC8D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/environment-modules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22491 Modified Files: environment-modules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: environment-modules.spec =================================================================== RCS file: /cvs/pkgs/rpms/environment-modules/devel/environment-modules.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- environment-modules.spec 24 Feb 2009 15:09:11 -0000 1.18 +++ environment-modules.spec 24 Jul 2009 22:11:57 -0000 1.19 @@ -1,6 +1,6 @@ Name: environment-modules Version: 3.2.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Provides dynamic modification of a user's environment Group: System Environment/Base @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:12:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:12:13 +0000 (UTC) Subject: rpms/eog/devel eog.spec,1.147,1.148 Message-ID: <20090724221213.444BB11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22643 Modified Files: eog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eog.spec =================================================================== RCS file: /cvs/pkgs/rpms/eog/devel/eog.spec,v retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- eog.spec 14 Jul 2009 16:12:04 -0000 1.147 +++ eog.spec 24 Jul 2009 22:12:12 -0000 1.148 @@ -12,7 +12,7 @@ Summary: Eye of GNOME image viewer Name: eog Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://projects.gnome.org/eog/ Source: http://download.gnome.org/sources/eog/2.27/%{name}-%{version}.tar.bz2 Patch0: libxml.patch @@ -170,6 +170,9 @@ fi %{_datadir}/gtk-doc/html/eog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:12:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:12:38 +0000 (UTC) Subject: rpms/epdfview/devel epdfview.spec,1.8,1.9 Message-ID: <20090724221238.49C9D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epdfview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22835 Modified Files: epdfview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epdfview.spec =================================================================== RCS file: /cvs/pkgs/rpms/epdfview/devel/epdfview.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- epdfview.spec 26 Mar 2009 21:42:15 -0000 1.8 +++ epdfview.spec 24 Jul 2009 22:12:38 -0000 1.9 @@ -1,6 +1,6 @@ Name: epdfview Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight PDF document viewer Group: Applications/Publishing @@ -65,6 +65,9 @@ update-desktop-database &> /dev/null || %{_datadir}/pixmaps/icon_epdfview-48.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Michal Schmidt - 0.1.7-1 - Upstream release 0.1.7. From jkeating at fedoraproject.org Fri Jul 24 22:12:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:12:52 +0000 (UTC) Subject: rpms/epeg/devel epeg.spec,1.2,1.3 Message-ID: <20090724221252.0107B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epeg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22977 Modified Files: epeg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epeg.spec =================================================================== RCS file: /cvs/pkgs/rpms/epeg/devel/epeg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- epeg.spec 24 Feb 2009 15:12:07 -0000 1.2 +++ epeg.spec 24 Jul 2009 22:12:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: epeg Version: 0.9.1.042 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Immensely fast JPEG thumbnailer Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1.042-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.1.042-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:13:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:13:07 +0000 (UTC) Subject: rpms/epic/devel epic.spec,1.32,1.33 Message-ID: <20090724221307.613B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23110 Modified Files: epic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epic.spec =================================================================== RCS file: /cvs/pkgs/rpms/epic/devel/epic.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- epic.spec 24 Feb 2009 15:13:54 -0000 1.32 +++ epic.spec 24 Jul 2009 22:13:07 -0000 1.33 @@ -1,7 +1,7 @@ Summary: An ircII chat client Name: epic Version: 2.10 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 4 # The entire source code is Freely redistributable without restriction except some # files (notably, glob.c, and compat.c) may contain some source covered by BSD @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/epic/help/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4:2.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4:2.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:13:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:13:22 +0000 (UTC) Subject: rpms/epiphany/devel epiphany.spec,1.235,1.236 Message-ID: <20090724221322.4C28C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epiphany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23255 Modified Files: epiphany.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epiphany.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany/devel/epiphany.spec,v retrieving revision 1.235 retrieving revision 1.236 diff -u -p -r1.235 -r1.236 --- epiphany.spec 15 Jul 2009 02:23:42 -0000 1.235 +++ epiphany.spec 24 Jul 2009 22:13:22 -0000 1.236 @@ -8,7 +8,7 @@ Summary: Web browser for GNOME Name: epiphany Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} %define major_version 2.27 Provides: epiphany(abi) = %{major_version} License: GPLv2+ and GFDL @@ -243,6 +243,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/epiphany %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:13:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:13:37 +0000 (UTC) Subject: rpms/epiphany-extensions/devel epiphany-extensions.spec,1.64,1.65 Message-ID: <20090724221337.19EC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epiphany-extensions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23492 Modified Files: epiphany-extensions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epiphany-extensions.spec =================================================================== RCS file: /cvs/pkgs/rpms/epiphany-extensions/devel/epiphany-extensions.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- epiphany-extensions.spec 15 Jul 2009 06:12:08 -0000 1.64 +++ epiphany-extensions.spec 24 Jul 2009 22:13:36 -0000 1.65 @@ -4,7 +4,7 @@ Name: epiphany-extensions Version: %{ephy_major}.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extensions for Epiphany, the GNOME web browser ## The Live HTTP Headers extension is LGPLv2.1+; the Gestures extension is @@ -92,6 +92,9 @@ scrollkeeper-update -q ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:13:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:13:52 +0000 (UTC) Subject: rpms/epsilon/devel epsilon.spec,1.5,1.6 Message-ID: <20090724221352.58DDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epsilon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23762 Modified Files: epsilon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epsilon.spec =================================================================== RCS file: /cvs/pkgs/rpms/epsilon/devel/epsilon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- epsilon.spec 24 Feb 2009 15:16:39 -0000 1.5 +++ epsilon.spec 24 Jul 2009 22:13:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: epsilon Version: 0.3.0.012 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Small, display independent, and quick thumbnailing library Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0.012-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.0.012-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:14:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:14:08 +0000 (UTC) Subject: rpms/epydoc/devel epydoc.spec,1.15,1.16 Message-ID: <20090724221408.3CFD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epydoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24309 Modified Files: epydoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epydoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/epydoc/devel/epydoc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- epydoc.spec 24 Feb 2009 15:17:35 -0000 1.15 +++ epydoc.spec 24 Jul 2009 22:14:08 -0000 1.16 @@ -3,7 +3,7 @@ Summary: Automatic API documentation generation tool for Python Name: epydoc Version: 3.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Tools License: MIT URL: http://epydoc.sourceforge.net/ @@ -72,6 +72,9 @@ desktop-file-install \ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:14:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:14:23 +0000 (UTC) Subject: rpms/epylog/devel epylog.spec,1.11,1.12 Message-ID: <20090724221423.48B7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/epylog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24517 Modified Files: epylog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: epylog.spec =================================================================== RCS file: /cvs/pkgs/rpms/epylog/devel/epylog.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- epylog.spec 24 Feb 2009 15:18:30 -0000 1.11 +++ epylog.spec 24 Jul 2009 22:14:23 -0000 1.12 @@ -2,7 +2,7 @@ Name: epylog Version: 1.0.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: New logs analyzer and parser Group: Applications/System @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:14:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:14:38 +0000 (UTC) Subject: rpms/eric/devel eric.spec,1.46,1.47 Message-ID: <20090724221438.412B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24647 Modified Files: eric.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eric.spec =================================================================== RCS file: /cvs/pkgs/rpms/eric/devel/eric.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- eric.spec 5 Jul 2009 15:27:44 -0000 1.46 +++ eric.spec 24 Jul 2009 22:14:38 -0000 1.47 @@ -8,7 +8,7 @@ Name: eric Summary: Python IDE Version: 4.3.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ Group: Development/Tools @@ -148,6 +148,9 @@ rm -rf %{buildroot} %{_libdir}/qt4/qsci/api/ruby/*.api %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 5 2009 Johan Cwiklinski 4.3.5-1 - 4.3.5 From jkeating at fedoraproject.org Fri Jul 24 22:15:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:15:14 +0000 (UTC) Subject: rpms/eris/devel eris.spec,1.19,1.20 Message-ID: <20090724221514.8419D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eris/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24902 Modified Files: eris.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eris.spec =================================================================== RCS file: /cvs/pkgs/rpms/eris/devel/eris.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- eris.spec 1 Mar 2009 13:51:39 -0000 1.19 +++ eris.spec 24 Jul 2009 22:15:14 -0000 1.20 @@ -1,6 +1,6 @@ Name: eris Version: 1.3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Client-side session layer for Atlas-C++ Group: Development/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Alexey Torkhov - 1.3.14-2 - Adding mercator dep to -devel subpackage - Reenabling the tests From jkeating at fedoraproject.org Fri Jul 24 22:15:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:15:28 +0000 (UTC) Subject: rpms/erlang/devel erlang.spec,1.39,1.40 Message-ID: <20090724221528.C745111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/erlang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25033 Modified Files: erlang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: erlang.spec =================================================================== RCS file: /cvs/pkgs/rpms/erlang/devel/erlang.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- erlang.spec 21 Apr 2009 16:41:30 -0000 1.39 +++ erlang.spec 24 Jul 2009 22:15:28 -0000 1.40 @@ -1,5 +1,5 @@ %define ver R12B -%define rel 5 +%define rel 6 Name: erlang Version: %{ver} @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - R12B-6.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Debarshi Ray R12B-5.7 - Updated rpath patch. - Fixed configure to respect $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Fri Jul 24 22:15:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:15:42 +0000 (UTC) Subject: rpms/erlang-eradius/devel erlang-eradius.spec,1.1,1.2 Message-ID: <20090724221542.8CAD811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/erlang-eradius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25158 Modified Files: erlang-eradius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: erlang-eradius.spec =================================================================== RCS file: /cvs/pkgs/rpms/erlang-eradius/devel/erlang-eradius.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- erlang-eradius.spec 11 Jul 2009 09:17:28 -0000 1.1 +++ erlang-eradius.spec 24 Jul 2009 22:15:42 -0000 1.2 @@ -4,7 +4,7 @@ Name: erlang-%{realname} Version: 0 -Release: 0.4.20070627cvs%{?dist} +Release: 0.5.20070627cvs%{?dist} Summary: RADIUS authentication/accounting for erlang apps Group: Development/Languages License: MIT @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.5.20070627cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Peter Lemenkov 0-0.4.20070627cvs - Changed naming scheme From jkeating at fedoraproject.org Fri Jul 24 22:15:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:15:56 +0000 (UTC) Subject: rpms/erlang-erlsyslog/devel erlang-erlsyslog.spec,1.1,1.2 Message-ID: <20090724221556.E3F6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/erlang-erlsyslog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25292 Modified Files: erlang-erlsyslog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: erlang-erlsyslog.spec =================================================================== RCS file: /cvs/pkgs/rpms/erlang-erlsyslog/devel/erlang-erlsyslog.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- erlang-erlsyslog.spec 6 Jun 2009 07:51:06 -0000 1.1 +++ erlang-erlsyslog.spec 24 Jul 2009 22:15:56 -0000 1.2 @@ -3,7 +3,7 @@ Name: erlang-%{realname} Version: 0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Syslog facility for Erlang Group: Development/Libraries License: GPLv3+ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Peter Lemenkov 0.1-1 - Ver. 0.1 From jkeating at fedoraproject.org Fri Jul 24 22:16:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:16:11 +0000 (UTC) Subject: rpms/erlang-esdl/devel erlang-esdl.spec,1.9,1.10 Message-ID: <20090724221611.C8DA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/erlang-esdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25448 Modified Files: erlang-esdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: erlang-esdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/erlang-esdl/devel/erlang-esdl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- erlang-esdl.spec 24 Feb 2009 15:22:18 -0000 1.9 +++ erlang-esdl.spec 24 Jul 2009 22:16:11 -0000 1.10 @@ -1,6 +1,6 @@ Name: erlang-esdl Version: 0.96.0626 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Erlang OpenGL/SDL api and utilities Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.96.0626-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.96.0626-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:16:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:16:25 +0000 (UTC) Subject: rpms/erlang-pgsql/devel erlang-pgsql.spec,1.3,1.4 Message-ID: <20090724221625.C16ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/erlang-pgsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25594 Modified Files: erlang-pgsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: erlang-pgsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/erlang-pgsql/devel/erlang-pgsql.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- erlang-pgsql.spec 23 Feb 2009 20:45:50 -0000 1.3 +++ erlang-pgsql.spec 24 Jul 2009 22:16:25 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Erlang PostgreSQL interface Name: erlang-pgsql Version: 0 -Release: 3.20080825svn%{?dist} +Release: 4.20080825svn%{?dist} Group: Development/Libraries License: ERPL URL: https://forge.process-one.net/browse/ejabberd-modules/pgsql/trunk @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/erlang/lib/pgsql-%{version}/src %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-4.20080825svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0-3.20080825svn - Rebuild against rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 22:16:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:16:40 +0000 (UTC) Subject: rpms/eruby/devel eruby.spec,1.24,1.25 Message-ID: <20090724221640.288C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25724 Modified Files: eruby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eruby.spec =================================================================== RCS file: /cvs/pkgs/rpms/eruby/devel/eruby.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- eruby.spec 24 Feb 2009 15:23:15 -0000 1.24 +++ eruby.spec 24 Jul 2009 22:16:39 -0000 1.25 @@ -4,7 +4,7 @@ Name: eruby Version: 1.0.5 -Release: 12 +Release: 13 # eruby is GPLv2+ # liberuby is LGPLv2+ License: GPLv2+ and LGPLv2+ @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:17:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:17:11 +0000 (UTC) Subject: rpms/esc/devel esc.spec,1.40,1.41 Message-ID: <20090724221711.E12EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/esc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25912 Modified Files: esc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: esc.spec =================================================================== RCS file: /cvs/pkgs/rpms/esc/devel/esc.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- esc.spec 14 Apr 2009 04:15:24 -0000 1.40 +++ esc.spec 24 Jul 2009 22:17:11 -0000 1.41 @@ -1,6 +1,6 @@ Name: esc Version: 1.0.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Enterprise Security Client Smart Card Client License: GPL+ URL: http://directory.fedora.redhat.com/wiki/CoolKey @@ -203,6 +203,9 @@ if [ -x %{_bindir}/gtk-update-icon-cache fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Robert Scheck - 1.0.1-14 - Added a patch to correct the wrong elif preprocessor statement From jkeating at fedoraproject.org Fri Jul 24 22:17:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:17:29 +0000 (UTC) Subject: rpms/escape/devel escape.spec,1.16,1.17 Message-ID: <20090724221729.3418311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/escape/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26044 Modified Files: escape.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: escape.spec =================================================================== RCS file: /cvs/pkgs/rpms/escape/devel/escape.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- escape.spec 25 Feb 2009 01:17:15 -0000 1.16 +++ escape.spec 24 Jul 2009 22:17:29 -0000 1.17 @@ -1,6 +1,6 @@ Name: escape Version: 200704130 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Extensible block-pushing puzzle game Group: Amusements/Games @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 200704130-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Adam Goode - 200704130-12 - Fix for GCC 4.4 From jkeating at fedoraproject.org Fri Jul 24 22:17:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:17:45 +0000 (UTC) Subject: rpms/esmtp/devel esmtp.spec,1.17,1.18 Message-ID: <20090724221745.1DC4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/esmtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26193 Modified Files: esmtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: esmtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/esmtp/devel/esmtp.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- esmtp.spec 24 Feb 2009 15:26:03 -0000 1.17 +++ esmtp.spec 24 Jul 2009 22:17:44 -0000 1.18 @@ -2,7 +2,7 @@ Summary: User configurable send-o Summary(de): Benutzerkonfigurierbarer nur versendender Mail Transfer Agent (MTA) Name: esmtp Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Source1: esmtp-0.4.1-mutt # esmtp system config file configuring procmail as mda, for the local-delivery @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/esmtprc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:18:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:18:01 +0000 (UTC) Subject: rpms/esorex/devel esorex.spec,1.12,1.13 Message-ID: <20090724221801.516E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/esorex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26309 Modified Files: esorex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: esorex.spec =================================================================== RCS file: /cvs/pkgs/rpms/esorex/devel/esorex.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- esorex.spec 8 May 2009 13:20:22 -0000 1.12 +++ esorex.spec 24 Jul 2009 22:18:01 -0000 1.13 @@ -1,6 +1,6 @@ Name: esorex Version: 3.6.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Recipe Execution Tool of the European Southern Observatory Group: Applications/Engineering @@ -42,6 +42,9 @@ CPL data-reduction development environme %{_datadir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.6.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Sergio Pascual 3.6.12-3 - Reverting plugin directory patch. Not working in x86_64 From jkeating at fedoraproject.org Fri Jul 24 22:18:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:18:18 +0000 (UTC) Subject: rpms/esound/devel esound.spec,1.51,1.52 Message-ID: <20090724221818.11DA811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/esound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26451 Modified Files: esound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: esound.spec =================================================================== RCS file: /cvs/pkgs/rpms/esound/devel/esound.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- esound.spec 1 Apr 2009 04:02:51 -0000 1.51 +++ esound.spec 24 Jul 2009 22:18:17 -0000 1.52 @@ -2,7 +2,7 @@ Summary: Allows several audio streams to play on a single audio device Name: esound Version: 0.2.41 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv2+ URL: ftp://ftp.gnome.org/pub/GNOME/sources/esound @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/esd-config.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.2.41-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Matthias Clasen - 1:0.2.41-2 - Remove /etc/esd.conf (#491481) From jkeating at fedoraproject.org Fri Jul 24 22:18:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:18:35 +0000 (UTC) Subject: rpms/espeak/devel espeak.spec,1.22,1.23 Message-ID: <20090724221835.2407411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/espeak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26655 Modified Files: espeak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: espeak.spec =================================================================== RCS file: /cvs/pkgs/rpms/espeak/devel/espeak.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- espeak.spec 30 Jun 2009 10:43:23 -0000 1.22 +++ espeak.spec 24 Jul 2009 22:18:34 -0000 1.23 @@ -1,6 +1,6 @@ Name: espeak Version: 1.40.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Software speech synthesizer (text-to-speech) Group: Applications/Multimedia @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.40.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Francois Aucamp - 1.40.02-2 - Compile against pulseaudio instead of portaudio (RHBZ #481651) From jkeating at fedoraproject.org Fri Jul 24 22:18:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:18:50 +0000 (UTC) Subject: rpms/esperanza/devel esperanza.spec,1.1,1.2 Message-ID: <20090724221850.AA37811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/esperanza/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26784 Modified Files: esperanza.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: esperanza.spec =================================================================== RCS file: /cvs/pkgs/rpms/esperanza/devel/esperanza.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- esperanza.spec 5 Mar 2009 18:51:21 -0000 1.1 +++ esperanza.spec 24 Jul 2009 22:18:50 -0000 1.2 @@ -1,7 +1,7 @@ Name: esperanza Summary: A graphical audio player Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia Source0: http://exodus.xmms.se/~tru/esperanza/0.4/%{name}-%{version}.tar.gz @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Tom "spot" Callaway 0.4.0-2 - rebuild translations from source From jkeating at fedoraproject.org Fri Jul 24 22:19:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:19:06 +0000 (UTC) Subject: rpms/eterm/devel eterm.spec,1.14,1.15 Message-ID: <20090724221906.2F5C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26910 Modified Files: eterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/eterm/devel/eterm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- eterm.spec 18 May 2009 12:05:21 -0000 1.14 +++ eterm.spec 24 Jul 2009 22:19:05 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Enlightened terminal emulator Name: eterm Version: 0.9.5 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: User Interface/Desktops Source0: http://www.eterm.org/download/Eterm-%{version}.tar.gz @@ -101,6 +101,9 @@ desktop-file-install --vendor fedora --d %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Terje R?sten - 0.9.5-5 - Add xorg-x11-fonts-misc to req. From mtruch at fedoraproject.org Fri Jul 24 22:19:16 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 22:19:16 +0000 (UTC) Subject: rpms/kst/devel kst-except.diff,1.1,1.2 kst.spec,1.35,1.36 Message-ID: <20090724221916.9F52811C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26942 Modified Files: kst-except.diff kst.spec Log Message: Fix minor typo in patch. kst-except.diff: Makefile.am | 1 Makefile.in | 276 +++++++++++++++++++++++------------------------------------- 2 files changed, 109 insertions(+), 168 deletions(-) Index: kst.spec =================================================================== RCS file: /cvs/extras/rpms/kst/devel/kst.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- kst.spec 22 Jul 2009 04:47:42 -0000 1.35 +++ kst.spec 24 Jul 2009 22:19:15 -0000 1.36 @@ -1,6 +1,6 @@ Name: kst Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A data viewing program for KDE Group: Applications/Engineering @@ -254,6 +254,9 @@ rm -rf %{buildroot} %{_datadir}/services/kst/kstdata_dirfile.desktop %changelog +* Fri Jul 24 2009 Matthew Truch - 1.8.0-2 +- Fix patch so it doesn't require fuzz. + * Sat Jul 18 2009 Matthew Truch - 1.8.0-1 - Upstream kst 1.8.0 - Drop patch for saveperiod as it's included in upstream 1.8.0 From jkeating at fedoraproject.org Fri Jul 24 22:19:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:19:22 +0000 (UTC) Subject: rpms/etherape/devel etherape.spec,1.6,1.7 Message-ID: <20090724221922.AFDA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/etherape/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27106 Modified Files: etherape.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: etherape.spec =================================================================== RCS file: /cvs/pkgs/rpms/etherape/devel/etherape.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- etherape.spec 24 Feb 2009 15:30:44 -0000 1.6 +++ etherape.spec 24 Jul 2009 22:19:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: etherape Version: 0.9.7 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Graphical network monitor for Unix Group: Applications/System @@ -98,6 +98,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.7-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:19:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:19:37 +0000 (UTC) Subject: rpms/etherbat/devel etherbat.spec,1.4,1.5 Message-ID: <20090724221937.B017211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/etherbat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27337 Modified Files: etherbat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: etherbat.spec =================================================================== RCS file: /cvs/pkgs/rpms/etherbat/devel/etherbat.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- etherbat.spec 24 Feb 2009 15:31:37 -0000 1.4 +++ etherbat.spec 24 Jul 2009 22:19:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: etherbat Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Ethernet topology discovery Group: Applications/Internet @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/etherbat %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:19:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:19:52 +0000 (UTC) Subject: rpms/etherboot/devel etherboot.spec,1.17,1.18 Message-ID: <20090724221952.0851611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/etherboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27477 Modified Files: etherboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: etherboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/etherboot/devel/etherboot.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- etherboot.spec 23 Jun 2009 11:47:47 -0000 1.17 +++ etherboot.spec 24 Jul 2009 22:19:51 -0000 1.18 @@ -7,7 +7,7 @@ Name: etherboot Version: 5.4.4 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Etherboot collection of boot roms Group: Development/Tools @@ -183,6 +183,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.4.4-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Mark McLoughlin - 5.4.4-16 - Fix e1000 PXE boot - caused by compiler optimization (bug #507391) From jkeating at fedoraproject.org Fri Jul 24 22:20:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:20:05 +0000 (UTC) Subject: rpms/ethstatus/devel ethstatus.spec,1.2,1.3 Message-ID: <20090724222005.B407A11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ethstatus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27663 Modified Files: ethstatus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ethstatus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ethstatus/devel/ethstatus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ethstatus.spec 24 Feb 2009 15:33:29 -0000 1.2 +++ ethstatus.spec 24 Jul 2009 22:20:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: ethstatus Version: 0.4.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Console-based ethernet statistics monitor Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:20:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:20:22 +0000 (UTC) Subject: rpms/ethtool/devel ethtool.spec,1.24,1.25 Message-ID: <20090724222022.1DEEF11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ethtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27821 Modified Files: ethtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ethtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/ethtool/devel/ethtool.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- ethtool.spec 18 Jul 2009 13:32:12 -0000 1.24 +++ ethtool.spec 24 Jul 2009 22:20:21 -0000 1.25 @@ -1,6 +1,6 @@ Name: ethtool Version: 6 -Release: 6.20090323git%{?dist} +Release: 7.20090323git%{?dist} Summary: Ethernet settings tool for PCI ethernet cards License: GPLv2 @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man8/%{name}.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6-7.20090323git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Robert Scheck 6-6.20090323git - Upgrade to GIT 20090323 From jkeating at fedoraproject.org Fri Jul 24 22:20:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:20:39 +0000 (UTC) Subject: rpms/etoys/devel etoys.spec,1.4,1.5 Message-ID: <20090724222039.229E711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/etoys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27962 Modified Files: etoys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: etoys.spec =================================================================== RCS file: /cvs/pkgs/rpms/etoys/devel/etoys.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- etoys.spec 3 Jun 2009 00:53:38 -0000 1.4 +++ etoys.spec 24 Jul 2009 22:20:38 -0000 1.5 @@ -1,6 +1,6 @@ %define name etoys %define version 4.0.2212 -%define release 1%{?dist} +%define release 2%{?dist} %define source %{name}-%{version} Name: %{name} @@ -136,6 +136,9 @@ update-desktop-database &> /dev/null || %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.2212-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Gavin Romig-Koch - 4.0.2212-1 - pulled in latest upstream release 4.0.2212 From jkeating at fedoraproject.org Fri Jul 24 22:20:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:20:56 +0000 (UTC) Subject: rpms/ettercap/devel ettercap.spec,1.22,1.23 Message-ID: <20090724222056.9393C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ettercap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28145 Modified Files: ettercap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ettercap.spec =================================================================== RCS file: /cvs/pkgs/rpms/ettercap/devel/ettercap.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ettercap.spec 31 Mar 2009 15:06:11 -0000 1.22 +++ ettercap.spec 24 Jul 2009 22:20:56 -0000 1.23 @@ -1,6 +1,6 @@ Name: ettercap Version: 0.7.3 -Release: 32%{?dist} +Release: 33%{?dist} Summary: Network traffic sniffer/analyser, NCURSES interface version Group: Applications/Internet License: GPLv2+ @@ -196,6 +196,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/32x32/apps/ettercap.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Jon Ciesla - 0.7.3-32 - Patch for selinux/fctnl issue, BZ 491612. From jkeating at fedoraproject.org Fri Jul 24 22:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:21:17 +0000 (UTC) Subject: rpms/evas/devel evas.spec,1.11,1.12 Message-ID: <20090724222117.D3AF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28374 Modified Files: evas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evas.spec =================================================================== RCS file: /cvs/pkgs/rpms/evas/devel/evas.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- evas.spec 24 Feb 2009 15:36:27 -0000 1.11 +++ evas.spec 24 Jul 2009 22:21:17 -0000 1.12 @@ -1,6 +1,6 @@ Name: evas Version: 0.9.9.050 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hardware-accelerated state-aware canvas API Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.050-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.9.050-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:21:32 +0000 (UTC) Subject: rpms/eventlog/devel eventlog.spec,1.14,1.15 Message-ID: <20090724222132.ED55311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eventlog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28545 Modified Files: eventlog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eventlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/eventlog/devel/eventlog.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- eventlog.spec 24 Mar 2009 15:07:28 -0000 1.14 +++ eventlog.spec 24 Jul 2009 22:21:32 -0000 1.15 @@ -2,7 +2,7 @@ Name: eventlog Version: 0.2.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Syslog-ng v2 support library Group: System Environment/Libraries @@ -112,6 +112,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Douglas E. Warner 0.2.7-3 - re-added the -static package From jkeating at fedoraproject.org Fri Jul 24 22:21:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:21:48 +0000 (UTC) Subject: rpms/evince/devel evince.spec,1.166,1.167 Message-ID: <20090724222148.70FBC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evince/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28698 Modified Files: evince.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evince.spec =================================================================== RCS file: /cvs/pkgs/rpms/evince/devel/evince.spec,v retrieving revision 1.166 retrieving revision 1.167 diff -u -p -r1.166 -r1.167 --- evince.spec 14 Jul 2009 03:19:33 -0000 1.166 +++ evince.spec 24 Jul 2009 22:21:48 -0000 1.167 @@ -6,7 +6,7 @@ Name: evince Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Document viewer License: GPLv2+ and GFDL @@ -257,6 +257,9 @@ fi %{_libdir}/evince/1/backends/djvudocument.evince-backend %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:22:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:22:09 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.404,1.405 Message-ID: <20090724222209.6CEEE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28885 Modified Files: evolution.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.404 retrieving revision 1.405 diff -u -p -r1.404 -r1.405 --- evolution.spec 13 Jul 2009 18:34:19 -0000 1.404 +++ evolution.spec 24 Jul 2009 22:22:08 -0000 1.405 @@ -43,7 +43,7 @@ Name: evolution Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -701,6 +701,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 - Work around deprecation of g_mount_unmount(). From jkeating at fedoraproject.org Fri Jul 24 22:22:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:22:25 +0000 (UTC) Subject: rpms/evolution-brutus/devel evolution-brutus.spec,1.24,1.25 Message-ID: <20090724222225.1C06611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-brutus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29053 Modified Files: evolution-brutus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-brutus.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-brutus/devel/evolution-brutus.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- evolution-brutus.spec 13 Mar 2009 14:33:53 -0000 1.24 +++ evolution-brutus.spec 24 Jul 2009 22:22:24 -0000 1.25 @@ -5,7 +5,7 @@ Name: evolution-brutus Version: 1.2.35 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Brutus based Exchange connector for Novell Evolution 2.4 and later License: GPLv2+ @@ -118,6 +118,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.35-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Mamoru Tasaka - Remove the previous workaround for ImageMagick (#489453 fixed) From jussilehtola at fedoraproject.org Fri Jul 24 22:22:49 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:22:49 +0000 (UTC) Subject: rpms/xine-ui/EL-5 xine-ui.spec,1.4,1.5 Message-ID: <20090724222249.A4D8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29326 Modified Files: xine-ui.spec Log Message: Fix EPEL build. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/EL-5/xine-ui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xine-ui.spec 24 Jul 2009 22:06:31 -0000 1.4 +++ xine-ui.spec 24 Jul 2009 22:22:49 -0000 1.5 @@ -159,7 +159,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" %find_lang 'xi\(ne-ui\|tk\)' -desktop-file-install --remove-category="Application" \ +desktop-file-install --remove-category="Application" --vendor="" \ --add-category="Audio" --add-category="Video" \ --dir %{buildroot}%{_datadir}/applications misc/desktops/xine.desktop From jkeating at fedoraproject.org Fri Jul 24 22:22:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:22:41 +0000 (UTC) Subject: rpms/evolution-data-server/devel evolution-data-server.spec, 1.267, 1.268 Message-ID: <20090724222241.C734311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29204 Modified Files: evolution-data-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v retrieving revision 1.267 retrieving revision 1.268 diff -u -p -r1.267 -r1.268 --- evolution-data-server.spec 13 Jul 2009 14:27:24 -0000 1.267 +++ evolution-data-server.spec 24 Jul 2009 22:22:41 -0000 1.268 @@ -28,7 +28,7 @@ Name: evolution-data-server Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries Summary: Backend data server for Evolution License: LGPLv2+ @@ -361,6 +361,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libedataserverui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 - Remove patch for RH bug #505661 (fixed upstream). From jkeating at fedoraproject.org Fri Jul 24 22:22:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:22:58 +0000 (UTC) Subject: rpms/evolution-exchange/devel evolution-exchange.spec,1.65,1.66 Message-ID: <20090724222258.6435D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-exchange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29425 Modified Files: evolution-exchange.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-exchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-exchange/devel/evolution-exchange.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- evolution-exchange.spec 13 Jul 2009 13:49:43 -0000 1.65 +++ evolution-exchange.spec 24 Jul 2009 22:22:58 -0000 1.66 @@ -18,7 +18,7 @@ Name: evolution-exchange Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Evolution plugin to interact with MS Exchange Server License: GPLv2+ @@ -121,6 +121,9 @@ gconftool-2 --makefile-install-rule %{_s %{_sysconfdir}/gconf/schemas/apps_exchange_addressbook-%{evo_major}.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1.fc12 - Update to 2.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:23:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:23:13 +0000 (UTC) Subject: rpms/evolution-mapi/devel evolution-mapi.spec,1.12,1.13 Message-ID: <20090724222313.2B5D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-mapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29589 Modified Files: evolution-mapi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-mapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-mapi/devel/evolution-mapi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- evolution-mapi.spec 13 Jul 2009 13:49:48 -0000 1.12 +++ evolution-mapi.spec 24 Jul 2009 22:23:13 -0000 1.13 @@ -12,7 +12,7 @@ Name: evolution-mapi Version: 0.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Evolution extension for MS Exchange 2007 servers License: LGPLv2+ @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexchangemapi-1.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 0.27.4-1 - Update to 0.27.4 From jkeating at fedoraproject.org Fri Jul 24 22:23:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:23:27 +0000 (UTC) Subject: rpms/evolution-remove-duplicates/devel evolution-remove-duplicates.spec, 1.12, 1.13 Message-ID: <20090724222327.3331A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-remove-duplicates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29720 Modified Files: evolution-remove-duplicates.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-remove-duplicates.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-remove-duplicates/devel/evolution-remove-duplicates.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- evolution-remove-duplicates.spec 24 Feb 2009 15:43:11 -0000 1.12 +++ evolution-remove-duplicates.spec 24 Jul 2009 22:23:27 -0000 1.13 @@ -6,7 +6,7 @@ Name: evolution-remove-duplicates Version: 0.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Evolution plugin for removing duplicate mails Group: Applications/Productivity @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/evolution/%{evo_major}/errors/org-gnome-remove-duplicates.error %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:23:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:23:42 +0000 (UTC) Subject: rpms/evolution-rspam/devel evolution-rspam.spec,1.7,1.8 Message-ID: <20090724222342.3609111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-rspam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29857 Modified Files: evolution-rspam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-rspam.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rspam/devel/evolution-rspam.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- evolution-rspam.spec 6 Apr 2009 05:50:35 -0000 1.7 +++ evolution-rspam.spec 24 Jul 2009 22:23:42 -0000 1.8 @@ -1,7 +1,7 @@ Name: evolution-rspam Summary: Evolution Plugin for reporting spam Version: 0.0.8 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Internet License: GPLv2+ Source: http://gnome.eu.org/%{name}-%{version}.tar.gz @@ -76,6 +76,9 @@ fi %doc TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Lucian Langa - 0.0.8-3 - fix for bug #492319 From jkeating at fedoraproject.org Fri Jul 24 22:23:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:23:57 +0000 (UTC) Subject: rpms/evolution-rss/devel evolution-rss.spec,1.26,1.27 Message-ID: <20090724222357.17B1B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29999 Modified Files: evolution-rss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-rss/devel/evolution-rss.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- evolution-rss.spec 28 Apr 2009 03:23:36 -0000 1.26 +++ evolution-rss.spec 24 Jul 2009 22:23:56 -0000 1.27 @@ -1,7 +1,7 @@ Name: evolution-rss Summary: Evolution RSS Reader Version: 0.1.2 -Release: 9%{?dist} +Release: 10%{?dist} Group: Applications/Internet License: GPLv2 and GPLv2+ URL: http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin @@ -83,6 +83,9 @@ fi %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Christopher Aillon - 0.1.2-9 - Rebuild against newer gecko From jkeating at fedoraproject.org Fri Jul 24 22:24:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:24:12 +0000 (UTC) Subject: rpms/evolution-sharp/devel evolution-sharp.spec,1.64,1.65 Message-ID: <20090724222412.3CCEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/evolution-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30133 Modified Files: evolution-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: evolution-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution-sharp/devel/evolution-sharp.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- evolution-sharp.spec 29 May 2009 21:37:15 -0000 1.64 +++ evolution-sharp.spec 24 Jul 2009 22:24:12 -0000 1.65 @@ -2,7 +2,7 @@ Name: evolution-sharp Version: 0.21.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2 Group: System Environment/Libraries Summary: Evolution Data Server Mono Bindings @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT # sonames may need to be updated in evolution-sharp's configure.in. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.21.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Matthew Barnes - 0.21.1-1.fc12 - Update to 0.21.1 From jkeating at fedoraproject.org Fri Jul 24 22:24:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:24:27 +0000 (UTC) Subject: rpms/ewl/devel ewl.spec,1.1,1.2 Message-ID: <20090724222427.66DCB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ewl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30295 Modified Files: ewl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ewl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ewl/devel/ewl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ewl.spec 8 Jul 2009 22:30:54 -0000 1.1 +++ ewl.spec 24 Jul 2009 22:24:27 -0000 1.2 @@ -1,6 +1,6 @@ Name: ewl Version: 0.5.2.042 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Enlightenment Widget Library Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2.042-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 - John Guthrie - 0.5.2.042-9 - Minor license fix. - Removed some commented out scriptlet code. From jkeating at fedoraproject.org Fri Jul 24 22:24:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:24:43 +0000 (UTC) Subject: rpms/exaile/devel exaile.spec,1.25,1.26 Message-ID: <20090724222443.22B7F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/exaile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30425 Modified Files: exaile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: exaile.spec =================================================================== RCS file: /cvs/pkgs/rpms/exaile/devel/exaile.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- exaile.spec 24 Feb 2009 15:48:00 -0000 1.25 +++ exaile.spec 24 Jul 2009 22:24:42 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A music player Name: exaile Version: 0.2.14 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Multimedia # It actually says GPL 1 or later version; one file says "Artistic/Perl", which is GPL+ or Artistic. License: GPL+ or Artistic @@ -91,6 +91,9 @@ rm -rf %{buildroot} %{_mandir}/man1/exaile*.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:24:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:24:57 +0000 (UTC) Subject: rpms/examiner/devel examiner.spec,1.3,1.4 Message-ID: <20090724222457.20FEA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/examiner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30530 Modified Files: examiner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: examiner.spec =================================================================== RCS file: /cvs/pkgs/rpms/examiner/devel/examiner.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- examiner.spec 24 Feb 2009 15:48:57 -0000 1.3 +++ examiner.spec 24 Jul 2009 22:24:57 -0000 1.4 @@ -1,6 +1,6 @@ Name: examiner Version: 0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Utility to disassemble and comment foreign executable binaries Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 22:25:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:10 +0000 Subject: [pkgdb] perl-Devel-FindRef was added for kwizart Message-ID: <20090724222510.E4F0110F89D@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Devel-FindRef with summary Track down reference problems tibbs has approved Package perl-Devel-FindRef tibbs has added a Fedora devel branch for perl-Devel-FindRef with an owner of kwizart tibbs has approved perl-Devel-FindRef in Fedora devel tibbs has approved Package perl-Devel-FindRef tibbs has set commit to Approved for 107427 on perl-Devel-FindRef (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Devel-FindRef (Fedora devel) tibbs has set build to Approved for 107427 on perl-Devel-FindRef (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From jkeating at fedoraproject.org Fri Jul 24 22:25:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:25:11 +0000 (UTC) Subject: rpms/exempi/devel exempi.spec,1.12,1.13 Message-ID: <20090724222511.DDEC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/exempi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30704 Modified Files: exempi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: exempi.spec =================================================================== RCS file: /cvs/pkgs/rpms/exempi/devel/exempi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- exempi.spec 24 Feb 2009 15:49:55 -0000 1.12 +++ exempi.spec 24 Jul 2009 22:25:11 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Library for easy parsing of XMP metadata Name: exempi Version: 2.1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Libraries URL: http://libopenraw.freedesktop.org/wiki/Exempi @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 22:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:12 +0000 Subject: [pkgdb] perl-Devel-FindRef summary updated by tibbs Message-ID: <20090724222512.3717110F8B2@bastion2.fedora.phx.redhat.com> tibbs set package perl-Devel-FindRef summary to Track down reference problems To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From pkgdb at fedoraproject.org Fri Jul 24 22:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:12 +0000 Subject: [pkgdb] perl-Devel-FindRef (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222512.3EEF210F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Devel-FindRef tibbs has set commit to Approved for 107427 on perl-Devel-FindRef (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Devel-FindRef (Fedora 10) tibbs has set build to Approved for 107427 on perl-Devel-FindRef (Fedora 10) tibbs approved watchbugzilla on perl-Devel-FindRef (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Devel-FindRef (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From pkgdb at fedoraproject.org Fri Jul 24 22:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:12 +0000 Subject: [pkgdb] perl-Devel-FindRef (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222512.464BB10F8B8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Devel-FindRef tibbs has set commit to Approved for 107427 on perl-Devel-FindRef (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Devel-FindRef (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Devel-FindRef (Fedora EPEL 5) tibbs approved watchbugzilla on perl-Devel-FindRef (Fedora EPEL 5) for perl-sig tibbs approved watchcommits on perl-Devel-FindRef (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From pkgdb at fedoraproject.org Fri Jul 24 22:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:12 +0000 Subject: [pkgdb] perl-Devel-FindRef (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222512.501B810F8BC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Devel-FindRef tibbs has set commit to Approved for 107427 on perl-Devel-FindRef (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Devel-FindRef (Fedora 11) tibbs has set build to Approved for 107427 on perl-Devel-FindRef (Fedora 11) tibbs approved watchbugzilla on perl-Devel-FindRef (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Devel-FindRef (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From tibbs at fedoraproject.org Fri Jul 24 22:25:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:25:17 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/devel - New directory Message-ID: <20090724222517.443E011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-FindRef/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh30732/rpms/perl-Devel-FindRef/devel Log Message: Directory /cvs/pkgs/rpms/perl-Devel-FindRef/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 22:25:17 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:25:17 +0000 (UTC) Subject: rpms/perl-Devel-FindRef - New directory Message-ID: <20090724222517.1FAC011C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-FindRef In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh30732/rpms/perl-Devel-FindRef Log Message: Directory /cvs/pkgs/rpms/perl-Devel-FindRef added to the repository From pkgdb at fedoraproject.org Fri Jul 24 22:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:12 +0000 Subject: [pkgdb] perl-Devel-FindRef (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222512.564BF10F8BE@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Devel-FindRef (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Devel-FindRef (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Devel-FindRef From tibbs at fedoraproject.org Fri Jul 24 22:25:23 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:25:23 +0000 (UTC) Subject: rpms/perl-Devel-FindRef Makefile,NONE,1.1 Message-ID: <20090724222523.A085D11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-FindRef In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh30732/rpms/perl-Devel-FindRef Added Files: Makefile Log Message: Setup of module perl-Devel-FindRef --- NEW FILE Makefile --- # Top level Makefile for module perl-Devel-FindRef all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 24 22:25:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:25:24 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724222524.1380811C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Devel-FindRef/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh30732/rpms/perl-Devel-FindRef/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Devel-FindRef --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Devel-FindRef # $Id: Makefile,v 1.1 2009/07/24 22:25:23 tibbs Exp $ NAME := perl-Devel-FindRef SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 22:25:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:25:29 +0000 (UTC) Subject: rpms/exim/devel exim.spec,1.57,1.58 Message-ID: <20090724222529.35D3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/exim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30894 Modified Files: exim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: exim.spec =================================================================== RCS file: /cvs/pkgs/rpms/exim/devel/exim.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- exim.spec 23 May 2009 08:14:39 -0000 1.57 +++ exim.spec 24 Jul 2009 22:25:29 -0000 1.58 @@ -12,7 +12,7 @@ Summary: The exim mail transfer agent Name: exim Version: 4.69 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Url: http://www.exim.org/ Group: System Environment/Daemons @@ -488,6 +488,9 @@ test "$1" = 0 || %{_initrddir}/clamd.ex %{_sysconfdir}/cron.daily/greylist-tidy.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.69-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Michael Schwendt - 4.69-11 - Add subpackage dependencies to fix unowned directories (#474869). - Add missing defattr. From jkeating at fedoraproject.org Fri Jul 24 22:25:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:25:42 +0000 (UTC) Subject: rpms/exim-doc/devel exim-doc.spec,1.13,1.14 Message-ID: <20090724222542.BBBB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/exim-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31221 Modified Files: exim-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: exim-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/exim-doc/devel/exim-doc.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- exim-doc.spec 24 Feb 2009 15:51:52 -0000 1.13 +++ exim-doc.spec 24 Jul 2009 22:25:42 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Documentation for the exim mail transfer agent Name: exim-doc Version: 4.69 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Url: http://www.exim.org/ Group: Documentation @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %doc faq html ps pdf texinfo config.samples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.69-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.69-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 24 22:25:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:52 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo was added for kwizart Message-ID: <20090724222552.41CC510F8B4@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Socket-GetAddrInfo with summary RFC 2553's "getaddrinfo" and "getnameinfo" functions tibbs has approved Package perl-Socket-GetAddrInfo tibbs has added a Fedora devel branch for perl-Socket-GetAddrInfo with an owner of kwizart tibbs has approved perl-Socket-GetAddrInfo in Fedora devel tibbs has approved Package perl-Socket-GetAddrInfo tibbs has set commit to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora devel) tibbs has set build to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From pkgdb at fedoraproject.org Fri Jul 24 22:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:53 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo summary updated by tibbs Message-ID: <20090724222553.88F9A10F8C8@bastion2.fedora.phx.redhat.com> tibbs set package perl-Socket-GetAddrInfo summary to RFC 2553's "getaddrinfo" and "getnameinfo" functions To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From pkgdb at fedoraproject.org Fri Jul 24 22:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:53 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222553.8DE8110F8CA@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Socket-GetAddrInfo (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Socket-GetAddrInfo (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From pkgdb at fedoraproject.org Fri Jul 24 22:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:53 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222553.9AB7D10F8CD@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Socket-GetAddrInfo tibbs has set commit to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 10) tibbs has set build to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 10) tibbs approved watchbugzilla on perl-Socket-GetAddrInfo (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Socket-GetAddrInfo (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From pkgdb at fedoraproject.org Fri Jul 24 22:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:53 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222553.A542310F8D0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Socket-GetAddrInfo tibbs has set commit to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora EPEL 5) tibbs approved watchbugzilla on perl-Socket-GetAddrInfo (Fedora EPEL 5) for perl-sig tibbs approved watchcommits on perl-Socket-GetAddrInfo (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From pkgdb at fedoraproject.org Fri Jul 24 22:25:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 24 Jul 2009 22:25:53 +0000 Subject: [pkgdb] perl-Socket-GetAddrInfo (Fedora EPEL, 5) updated by tibbs Message-ID: <20090724222553.BA74B10F8D3@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Socket-GetAddrInfo tibbs has set commit to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 11) tibbs has set build to Approved for 107427 on perl-Socket-GetAddrInfo (Fedora 11) tibbs approved watchbugzilla on perl-Socket-GetAddrInfo (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Socket-GetAddrInfo (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Socket-GetAddrInfo From tibbs at fedoraproject.org Fri Jul 24 22:26:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:26:00 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo - New directory Message-ID: <20090724222600.160A411C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsy31359/rpms/perl-Socket-GetAddrInfo Log Message: Directory /cvs/pkgs/rpms/perl-Socket-GetAddrInfo added to the repository From tibbs at fedoraproject.org Fri Jul 24 22:26:00 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:26:00 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/devel - New directory Message-ID: <20090724222600.47AFD11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsy31359/rpms/perl-Socket-GetAddrInfo/devel Log Message: Directory /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel added to the repository From tibbs at fedoraproject.org Fri Jul 24 22:26:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:26:06 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo Makefile,NONE,1.1 Message-ID: <20090724222606.2E7A711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsy31359/rpms/perl-Socket-GetAddrInfo Added Files: Makefile Log Message: Setup of module perl-Socket-GetAddrInfo --- NEW FILE Makefile --- # Top level Makefile for module perl-Socket-GetAddrInfo all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From jkeating at fedoraproject.org Fri Jul 24 22:25:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:25:58 +0000 (UTC) Subject: rpms/exo/devel exo.spec,1.36,1.37 Message-ID: <20090724222558.C7C2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/exo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31364 Modified Files: exo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: exo.spec =================================================================== RCS file: /cvs/pkgs/rpms/exo/devel/exo.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- exo.spec 19 Jul 2009 05:54:56 -0000 1.36 +++ exo.spec 24 Jul 2009 22:25:58 -0000 1.37 @@ -3,7 +3,7 @@ Summary: Application library for the Xfce desktop environment Name: exo Version: 0.3.101 -Release: 2%{?dist} +Release: 3%{?dist} # libexo-hal exo-helper mount-notify and exo-mount are all GPLv2+ # everything else is LGPLv2+ License: LGPLv2+ and GPLv2+ @@ -136,6 +136,9 @@ fi %{python_sitearch}/pyexo.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.101-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Kevin Fenzi - 0.3.101-2 - Add patch to fix url quoting (bug #509730) From tibbs at fedoraproject.org Fri Jul 24 22:26:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 24 Jul 2009 22:26:06 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090724222606.8EF6611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsy31359/rpms/perl-Socket-GetAddrInfo/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Socket-GetAddrInfo --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Socket-GetAddrInfo # $Id: Makefile,v 1.1 2009/07/24 22:26:06 tibbs Exp $ NAME := perl-Socket-GetAddrInfo SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Fri Jul 24 22:26:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:26:14 +0000 (UTC) Subject: rpms/expat/devel expat.spec,1.32,1.33 Message-ID: <20090724222614.0293211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/expat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31676 Modified Files: expat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: expat.spec =================================================================== RCS file: /cvs/pkgs/rpms/expat/devel/expat.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- expat.spec 24 Feb 2009 15:54:27 -0000 1.32 +++ expat.spec 24 Jul 2009 22:26:13 -0000 1.33 @@ -1,7 +1,7 @@ Summary: An XML parser library Name: expat Version: 2.0.1 -Release: 6 +Release: 7 Group: System Environment/Libraries Source: http://download.sourceforge.net/expat/expat-%{version}.tar.gz URL: http://www.libexpat.org/ @@ -74,6 +74,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_includedir}/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:26:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:26:28 +0000 (UTC) Subject: rpms/expatmm/devel expatmm.spec,1.1,1.2 Message-ID: <20090724222628.26C2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/expatmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31778 Modified Files: expatmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: expatmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/expatmm/devel/expatmm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- expatmm.spec 13 May 2009 17:17:39 -0000 1.1 +++ expatmm.spec 24 Jul 2009 22:26:27 -0000 1.2 @@ -1,6 +1,6 @@ Name: expatmm Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrapper for the expat XML parser library Group: System Environment/Libraries @@ -82,5 +82,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/expatmm.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Jerry James - 1.0.1-1 - Initial RPM From jkeating at fedoraproject.org Fri Jul 24 22:26:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:26:59 +0000 (UTC) Subject: rpms/expendable/devel expendable.spec,1.17,1.18 Message-ID: <20090724222659.5FD5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/expendable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32102 Modified Files: expendable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: expendable.spec =================================================================== RCS file: /cvs/pkgs/rpms/expendable/devel/expendable.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- expendable.spec 24 Feb 2009 15:56:15 -0000 1.17 +++ expendable.spec 24 Jul 2009 22:26:59 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Home finances modeling program Name: expendable Version: 0.0.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Productivity URL: https://fedorahosted.org/expendable/ @@ -83,6 +83,9 @@ fi %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:26:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:26:43 +0000 (UTC) Subject: rpms/expect/devel expect.spec,1.29,1.30 Message-ID: <20090724222643.8894211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/expect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31946 Modified Files: expect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: expect.spec =================================================================== RCS file: /cvs/pkgs/rpms/expect/devel/expect.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- expect.spec 24 Feb 2009 15:55:18 -0000 1.29 +++ expect.spec 24 Jul 2009 22:26:43 -0000 1.30 @@ -5,7 +5,7 @@ Summary: A program-script interaction and testing utility Name: expect Version: %{majorver}.0 -Release: 17%{?dist} +Release: 18%{?dist} License: Public Domain Group: Development/Languages URL: http://expect.nist.gov/ @@ -157,6 +157,9 @@ rm -rf "$RPM_BUILD_ROOT" %{_mandir}/man1/tknewsbiff.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.43.0-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.43.0-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:27:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:27:13 +0000 (UTC) Subject: rpms/ext3grep/devel ext3grep.spec,1.10,1.11 Message-ID: <20090724222713.6456911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ext3grep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32230 Modified Files: ext3grep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ext3grep.spec =================================================================== RCS file: /cvs/pkgs/rpms/ext3grep/devel/ext3grep.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ext3grep.spec 17 May 2009 21:27:13 -0000 1.10 +++ ext3grep.spec 24 Jul 2009 22:27:13 -0000 1.11 @@ -1,6 +1,6 @@ Name: ext3grep Version: 0.10.1 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 Summary: Recovery tool for ext3 filesystems Group: Applications/File @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %doc NEWS README LICENSE.GPL2 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.1-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Karsten Hopp 0.10.1-2.1 - Added ExcludeArch for s390 and s390x as ext3grep doesn't work on Big Endian systems From jkeating at fedoraproject.org Fri Jul 24 22:27:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:27:29 +0000 (UTC) Subject: rpms/extrema/devel extrema.spec,1.10,1.11 Message-ID: <20090724222729.1545011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/extrema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32417 Modified Files: extrema.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: extrema.spec =================================================================== RCS file: /cvs/pkgs/rpms/extrema/devel/extrema.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- extrema.spec 24 Feb 2009 15:58:41 -0000 1.10 +++ extrema.spec 24 Jul 2009 22:27:28 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Extrema is a powerful visualization and data analysis tool Name: extrema Version: 4.3.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://exsitewebware.com/extrema/ @@ -61,6 +61,9 @@ desktop-file-install --vendor=fedora \ %{_datadir}/%{name}/Help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.3.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:27:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:27:44 +0000 (UTC) Subject: rpms/extremetuxracer/devel extremetuxracer.spec,1.5,1.6 Message-ID: <20090724222744.22A4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/extremetuxracer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32638 Modified Files: extremetuxracer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: extremetuxracer.spec =================================================================== RCS file: /cvs/pkgs/rpms/extremetuxracer/devel/extremetuxracer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- extremetuxracer.spec 24 Feb 2009 15:57:59 -0000 1.5 +++ extremetuxracer.spec 24 Jul 2009 22:27:43 -0000 1.6 @@ -13,7 +13,7 @@ Summary: 3D racing game featuring Tux Name: extremetuxracer Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://extremetuxracer.com @@ -141,6 +141,9 @@ rm -rf %{buildroot} %doc AUTHORS COPYING ChangeLog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Nils Philippsen 0.4-2 - package fonts separately to comply with font packaging guidelines (#477383) From jkeating at fedoraproject.org Fri Jul 24 22:28:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:28:01 +0000 (UTC) Subject: rpms/ez-ipupdate/devel ez-ipupdate.spec,1.25,1.26 Message-ID: <20090724222801.7C28311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ez-ipupdate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv362 Modified Files: ez-ipupdate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ez-ipupdate.spec =================================================================== RCS file: /cvs/pkgs/rpms/ez-ipupdate/devel/ez-ipupdate.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- ez-ipupdate.spec 24 Feb 2009 15:59:39 -0000 1.25 +++ ez-ipupdate.spec 24 Jul 2009 22:28:01 -0000 1.26 @@ -1,6 +1,6 @@ Name: ez-ipupdate Version: 3.0.11 -Release: 0.21.b8%{?dist} +Release: 0.22.b8%{?dist} Summary: Client for Dynamic DNS Services Group: Applications/Internet @@ -121,6 +121,9 @@ fi %ghost %attr(0640,root,ez-ipupd) %config(noreplace,missingok) %{_sysconfdir}/ez-ipupdate/default.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.11-0.22.b8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.11-0.21.b8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From danken at fedoraproject.org Fri Jul 24 22:28:12 2009 From: danken at fedoraproject.org (Dan Kenigsberg) Date: Fri, 24 Jul 2009 22:28:12 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/devel tex-fonts-hebrew.spec,1.5,1.6 Message-ID: <20090724222812.2433511C00CE@cvs1.fedora.phx.redhat.com> Author: danken Update of /cvs/pkgs/rpms/tex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32748 Modified Files: tex-fonts-hebrew.spec Log Message: must advace Realease with %changelong Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/devel/tex-fonts-hebrew.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tex-fonts-hebrew.spec 24 Jul 2009 09:29:03 -0000 1.5 +++ tex-fonts-hebrew.spec 24 Jul 2009 22:28:11 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Culmus Hebrew fonts support for LaTeX Name: tex-fonts-hebrew Version: 0.1 -Release: 12%{?dist} +Release: 13%{?dist} URL: http://culmus.sf.net # There is no real upstream for this package. It was based on Yotam Medini's # http://www.medini.org/hebrew/culmus2ltx-2003-02-28.tar.gz but is now From jkeating at fedoraproject.org Fri Jul 24 22:28:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:28:17 +0000 (UTC) Subject: rpms/ezstream/devel ezstream.spec,1.3,1.4 Message-ID: <20090724222817.4207611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ezstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv578 Modified Files: ezstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ezstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/ezstream/devel/ezstream.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ezstream.spec 24 Feb 2009 16:00:48 -0000 1.3 +++ ezstream.spec 24 Jul 2009 22:28:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: ezstream Version: 0.5.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line source client for Icecast media streaming servers Group: Applications/Multimedia @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:28:32 +0000 (UTC) Subject: rpms/f-spot/devel f-spot.spec,1.85,1.86 Message-ID: <20090724222832.762E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/f-spot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv750 Modified Files: f-spot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: f-spot.spec =================================================================== RCS file: /cvs/pkgs/rpms/f-spot/devel/f-spot.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- f-spot.spec 24 Feb 2009 16:01:45 -0000 1.85 +++ f-spot.spec 24 Jul 2009 22:28:32 -0000 1.86 @@ -1,6 +1,6 @@ Name: f-spot Version: 0.5.0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Photo management application Group: Applications/Multimedia @@ -123,6 +123,9 @@ fi %{_libdir}/gio-sharp-unstable %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:28:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:28:45 +0000 (UTC) Subject: rpms/fRaBs/devel fRaBs.spec,1.7,1.8 Message-ID: <20090724222845.DB1E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fRaBs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv898 Modified Files: fRaBs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fRaBs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fRaBs/devel/fRaBs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fRaBs.spec 24 Feb 2009 16:02:42 -0000 1.7 +++ fRaBs.spec 24 Jul 2009 22:28:45 -0000 1.8 @@ -4,7 +4,7 @@ Name: fRaBs Version: 2.11 -Release: 2%{?dist} +Release: 3%{?dist} Group: Amusements/Games License: Public Domain Summary: Free data files for abuse the game @@ -77,6 +77,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:29:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:29:02 +0000 (UTC) Subject: rpms/fabric/devel fabric.spec,1.2,1.3 Message-ID: <20090724222902.68CC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fabric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1041 Modified Files: fabric.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fabric.spec =================================================================== RCS file: /cvs/pkgs/rpms/fabric/devel/fabric.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fabric.spec 12 Apr 2009 18:49:43 -0000 1.2 +++ fabric.spec 24 Jul 2009 22:29:02 -0000 1.3 @@ -2,7 +2,7 @@ Name: fabric Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple pythonic remote deployment tool Group: Applications/System @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fab %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Silas Sewell - 0.1.1-2 - Add runtime setuptools requirements - Re-import source package From jkeating at fedoraproject.org Fri Jul 24 22:29:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:29:15 +0000 (UTC) Subject: rpms/facter/devel facter.spec,1.14,1.15 Message-ID: <20090724222915.E9E3C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/facter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1203 Modified Files: facter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: facter.spec =================================================================== RCS file: /cvs/pkgs/rpms/facter/devel/facter.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- facter.spec 22 May 2009 21:31:37 -0000 1.14 +++ facter.spec 24 Jul 2009 22:29:15 -0000 1.15 @@ -6,7 +6,7 @@ Summary: Ruby module for collecting simple facts about a host operating system Name: facter Version: 1.5.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://reductivelabs.com/projects/facter @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Todd Zullinger - 1.5.5-1 - Update to 1.5.5 - Drop upstreamed libperms patch From jkeating at fedoraproject.org Fri Jul 24 22:29:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:29:30 +0000 (UTC) Subject: rpms/factory/devel factory.spec,1.31,1.32 Message-ID: <20090724222930.EBFF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/factory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1467 Modified Files: factory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: factory.spec =================================================================== RCS file: /cvs/pkgs/rpms/factory/devel/factory.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- factory.spec 2 Mar 2009 02:52:24 -0000 1.31 +++ factory.spec 24 Jul 2009 22:29:30 -0000 1.32 @@ -8,7 +8,7 @@ Summary: C++ class library for multivariate polynomial data Name: factory Version: 3.1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 URL: http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/Factory/ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Rex Dieter - 3.1.0-3 - s/i386/%%ix86/ From jkeating at fedoraproject.org Fri Jul 24 22:29:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:29:45 +0000 (UTC) Subject: rpms/fail2ban/devel fail2ban.spec,1.17,1.18 Message-ID: <20090724222945.5BD6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fail2ban/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1647 Modified Files: fail2ban.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fail2ban.spec =================================================================== RCS file: /cvs/pkgs/rpms/fail2ban/devel/fail2ban.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fail2ban.spec 24 Feb 2009 16:05:37 -0000 1.17 +++ fail2ban.spec 24 Jul 2009 22:29:44 -0000 1.18 @@ -4,7 +4,7 @@ Summary: Ban IPs that make too many password failures Name: fail2ban Version: 0.8.3 -Release: 19%{?dist} +Release: 20%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://fail2ban.sourceforge.net/ @@ -84,6 +84,9 @@ fi %dir %{_localstatedir}/run/fail2ban %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.3-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:29:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:29:58 +0000 (UTC) Subject: rpms/fakechroot/devel fakechroot.spec,1.14,1.15 Message-ID: <20090724222958.DA00B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fakechroot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1787 Modified Files: fakechroot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fakechroot.spec =================================================================== RCS file: /cvs/pkgs/rpms/fakechroot/devel/fakechroot.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fakechroot.spec 12 Jun 2009 09:07:27 -0000 1.14 +++ fakechroot.spec 24 Jul 2009 22:29:58 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Gives a fake chroot environment Name: fakechroot Version: 2.9 -Release: 23%{?dist} +Release: 24%{?dist} License: LGPLv2+ Group: Development/Tools URL: http://fakechroot.alioth.debian.org/ @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_libdir}/fakechroot/libfakechroot.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.9-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 2.9-23 - Added patch to remove test for specific version of automake. From sparks at fedoraproject.org Fri Jul 24 22:30:07 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Fri, 24 Jul 2009 22:30:07 +0000 (UTC) Subject: rpms/zikula-module-scribite/F-10 import.log, NONE, 1.1 zikula-module-scribite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724223007.E0F7811C04D2@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-scribite/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1494/F-10 Modified Files: .cvsignore sources Added Files: import.log zikula-module-scribite.spec Log Message: Initial F-10 build. --- NEW FILE import.log --- zikula-module-scribite-3_2-3_fc11:F-10:zikula-module-scribite-3.2-3.fc11.src.rpm:1248474559 --- NEW FILE zikula-module-scribite.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname scribite Name: zikula-module-%{zikula_modname} Version: 3.2 Release: 3%{?dist} Summary: Integration of several JavaScript text editors with Zikula Group: Applications/Publishing License: GPLv2+ # Use top-level URL from Zikula site for the module URL: http://code.zikula.org/scribite/downloads/ # http://code.zikula.org/scribite/downloads/24 Source0: %{zikula_modname}_3_2_basic.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description scribite! is a module for easy integration of WYSIWYG scripts, TinyMCE, FCKeditor, openWYSIWYG, NicEdit or YUI Rich Text Editor into textarea fields in order to make text editing a little bit nicer and more comfortable for users. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f # Remove CC-licensed pieces #rm -rf javascript/scribite_editors/xinha/skins/titan #rm -rf javascript/scribite_editors/xinha/skins/inditreuse #rm -rf javascript/scribite_editors/xinha/iconsets/Tango %build #Fixing wrong-file-end-of-line-encoding error cd pndocs sed -i 's/\r//' Snoopy_gpl_license.txt sed -i 's/\r//' changelog.txt sed -i 's/\r//' tinymce_lgpl_license.txt sed -i 's/\r//' openwysiwyg_license.txt sed -i 's/\r//' fckeditor_license.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/fckeditor_license.txt pndocs/license.txt pndocs/nicedit_license.txt pndocs/openwysiwyg_license.txt pndocs/scribite!-dev-deu.odt pndocs/scribite!-dev-deu.pdf pndocs/scribite!-dev-eng.odt pndocs/scribite!-dev-eng.pdf pndocs/scribite!-dev-fra.odt pndocs/scribite!-dev-fra.pdf pndocs/scribite!-documentation-deu.odt pndocs/scribite!-documentation-deu.pdf pndocs/scribite!-documentation-eng.odt pndocs/scribite!-documentation-eng.pdf pndocs/scribite!-documentation-fra.odt pndocs/scribite!-documentation-fra.pdf pndocs/Snoopy_gpl_license.txt pndocs/tinymce_lgpl_license.txt pndocs/todo.txt pndocs/xinha_htmlarea_license.txt %{zikula_moddir}/%{zikula_modname} %changelog * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-3 - Updated source with new version of scribite!. * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-2 - Updated SPEC to remove non-GPL skins and icons. - Fixed wrong-file-end-of-line-encoding errors in SPEC. * Tue Jun 23 2009 Eric "Sparks" Christensen - 3.2-1 - Updated package to remove non-GPL code. * Mon Jun 15 2009 Eric "Sparks" Christensen - 3.1-1 - Initial RPM build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:22:21 -0000 1.1 +++ .cvsignore 24 Jul 2009 22:30:07 -0000 1.2 @@ -0,0 +1 @@ +scribite_3_2_basic.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:22:21 -0000 1.1 +++ sources 24 Jul 2009 22:30:07 -0000 1.2 @@ -0,0 +1 @@ +84cfdce4a38f7eb1dd44bb3d8359b561 scribite_3_2_basic.zip From jkeating at fedoraproject.org Fri Jul 24 22:30:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:30:13 +0000 (UTC) Subject: rpms/fakeroot/devel fakeroot.spec,1.10,1.11 Message-ID: <20090724223013.8992511C04FD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fakeroot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1944 Modified Files: fakeroot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fakeroot.spec =================================================================== RCS file: /cvs/pkgs/rpms/fakeroot/devel/fakeroot.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fakeroot.spec 22 Mar 2009 14:31:24 -0000 1.10 +++ fakeroot.spec 24 Jul 2009 22:30:13 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Gives a fake root environment Name: fakeroot Version: 1.12.2 -Release: 21%{?dist} +Release: 22%{?dist} License: GPL+ Group: Development/Tools URL: http://fakeroot.alioth.debian.org/ @@ -104,6 +104,9 @@ rm -rf %{buildroot} %{_libdir}/libfakeroot/libfakeroot-0.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Axel Thimm - 1.12.2-21 - Update to 1.12.2. - Create a fakeroot-libs subpackage so that the package is multilib From jkeating at fedoraproject.org Fri Jul 24 22:30:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:30:27 +0000 (UTC) Subject: rpms/fann/devel fann.spec,1.5,1.6 Message-ID: <20090724223027.C2C5511C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fann/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2146 Modified Files: fann.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fann.spec =================================================================== RCS file: /cvs/pkgs/rpms/fann/devel/fann.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fann.spec 11 Jun 2009 09:59:12 -0000 1.5 +++ fann.spec 24 Jul 2009 22:30:27 -0000 1.6 @@ -1,7 +1,7 @@ Summary: A fast artificial neural network library Name: fann Version: 2.0.0 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://fann.sf.net/ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{fann_includedir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Tomas Smetana 2.0.0-6 - There is no html documentation, don't try to build it From jkeating at fedoraproject.org Fri Jul 24 22:30:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:30:41 +0000 (UTC) Subject: rpms/farsight2/devel farsight2.spec,1.14,1.15 Message-ID: <20090724223041.89B1311C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/farsight2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2333 Modified Files: farsight2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: farsight2.spec =================================================================== RCS file: /cvs/pkgs/rpms/farsight2/devel/farsight2.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- farsight2.spec 23 Jul 2009 02:19:59 -0000 1.14 +++ farsight2.spec 24 Jul 2009 22:30:41 -0000 1.15 @@ -7,7 +7,7 @@ Name: farsight2 Version: 0.0.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Libraries for videoconferencing Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Warren Togami - 0.0.12-3 - rebuild From jkeating at fedoraproject.org Fri Jul 24 22:30:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:30:54 +0000 (UTC) Subject: rpms/fatsort/devel fatsort.spec,1.25,1.26 Message-ID: <20090724223054.C712611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fatsort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2573 Modified Files: fatsort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fatsort.spec =================================================================== RCS file: /cvs/pkgs/rpms/fatsort/devel/fatsort.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- fatsort.spec 24 Feb 2009 16:11:12 -0000 1.25 +++ fatsort.spec 24 Jul 2009 22:30:54 -0000 1.26 @@ -3,7 +3,7 @@ Name: fatsort Version: 0.9.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: FAT sorter for FAT16 and FAT32 filesystems Group: Applications/System @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:31:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:31:08 +0000 (UTC) Subject: rpms/faust/devel faust.spec,1.1,1.2 Message-ID: <20090724223108.0BC9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/faust/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2769 Modified Files: faust.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: faust.spec =================================================================== RCS file: /cvs/pkgs/rpms/faust/devel/faust.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- faust.spec 22 Mar 2009 20:07:26 -0000 1.1 +++ faust.spec 24 Jul 2009 22:31:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: faust Version: 0.9.9.4 -Release: 2.b%{?dist} +Release: 3.b%{?dist} Summary: Compiled language for real-time audio signal processing Group: Development/Languages # Examples are BSD @@ -142,6 +142,9 @@ rm -rf %{buildroot} %{_datadir}/kde4/apps/katepart/syntax/%{name}.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9.4-3.b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Orcan Ogetbil - 0.9.9.4-2.b - Fix the year of the previous changelog entry - Install the nonbinary files in %%{_datadir}/%%{name}/ From jkeating at fedoraproject.org Fri Jul 24 22:31:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:31:21 +0000 (UTC) Subject: rpms/fbdesk/devel fbdesk.spec,1.24,1.25 Message-ID: <20090724223121.C6F7D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbdesk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2961 Modified Files: fbdesk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbdesk.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbdesk/devel/fbdesk.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- fbdesk.spec 24 Feb 2009 16:12:10 -0000 1.24 +++ fbdesk.spec 24 Jul 2009 22:31:21 -0000 1.25 @@ -1,6 +1,6 @@ Name: fbdesk Version: 1.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Icon Manager for Fluxbox @@ -52,6 +52,9 @@ Fluxbox desktop. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sparks at fedoraproject.org Fri Jul 24 22:31:17 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Fri, 24 Jul 2009 22:31:17 +0000 (UTC) Subject: rpms/zikula-module-scribite/F-11 import.log, NONE, 1.1 zikula-module-scribite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724223117.89C6D11C00CE@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-scribite/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2721/F-11 Modified Files: .cvsignore sources Added Files: import.log zikula-module-scribite.spec Log Message: Initial F-11 build. --- NEW FILE import.log --- zikula-module-scribite-3_2-3_fc11:F-11:zikula-module-scribite-3.2-3.fc11.src.rpm:1248474645 --- NEW FILE zikula-module-scribite.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname scribite Name: zikula-module-%{zikula_modname} Version: 3.2 Release: 3%{?dist} Summary: Integration of several JavaScript text editors with Zikula Group: Applications/Publishing License: GPLv2+ # Use top-level URL from Zikula site for the module URL: http://code.zikula.org/scribite/downloads/ # http://code.zikula.org/scribite/downloads/24 Source0: %{zikula_modname}_3_2_basic.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description scribite! is a module for easy integration of WYSIWYG scripts, TinyMCE, FCKeditor, openWYSIWYG, NicEdit or YUI Rich Text Editor into textarea fields in order to make text editing a little bit nicer and more comfortable for users. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f # Remove CC-licensed pieces #rm -rf javascript/scribite_editors/xinha/skins/titan #rm -rf javascript/scribite_editors/xinha/skins/inditreuse #rm -rf javascript/scribite_editors/xinha/iconsets/Tango %build #Fixing wrong-file-end-of-line-encoding error cd pndocs sed -i 's/\r//' Snoopy_gpl_license.txt sed -i 's/\r//' changelog.txt sed -i 's/\r//' tinymce_lgpl_license.txt sed -i 's/\r//' openwysiwyg_license.txt sed -i 's/\r//' fckeditor_license.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/fckeditor_license.txt pndocs/license.txt pndocs/nicedit_license.txt pndocs/openwysiwyg_license.txt pndocs/scribite!-dev-deu.odt pndocs/scribite!-dev-deu.pdf pndocs/scribite!-dev-eng.odt pndocs/scribite!-dev-eng.pdf pndocs/scribite!-dev-fra.odt pndocs/scribite!-dev-fra.pdf pndocs/scribite!-documentation-deu.odt pndocs/scribite!-documentation-deu.pdf pndocs/scribite!-documentation-eng.odt pndocs/scribite!-documentation-eng.pdf pndocs/scribite!-documentation-fra.odt pndocs/scribite!-documentation-fra.pdf pndocs/Snoopy_gpl_license.txt pndocs/tinymce_lgpl_license.txt pndocs/todo.txt pndocs/xinha_htmlarea_license.txt %{zikula_moddir}/%{zikula_modname} %changelog * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-3 - Updated source with new version of scribite!. * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-2 - Updated SPEC to remove non-GPL skins and icons. - Fixed wrong-file-end-of-line-encoding errors in SPEC. * Tue Jun 23 2009 Eric "Sparks" Christensen - 3.2-1 - Updated package to remove non-GPL code. * Mon Jun 15 2009 Eric "Sparks" Christensen - 3.1-1 - Initial RPM build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:22:21 -0000 1.1 +++ .cvsignore 24 Jul 2009 22:31:17 -0000 1.2 @@ -0,0 +1 @@ +scribite_3_2_basic.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:22:21 -0000 1.1 +++ sources 24 Jul 2009 22:31:17 -0000 1.2 @@ -0,0 +1 @@ +84cfdce4a38f7eb1dd44bb3d8359b561 scribite_3_2_basic.zip From jkeating at fedoraproject.org Fri Jul 24 22:31:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:31:36 +0000 (UTC) Subject: rpms/fbg/devel fbg.spec,1.6,1.7 Message-ID: <20090724223136.05A1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3193 Modified Files: fbg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbg.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbg/devel/fbg.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fbg.spec 24 Feb 2009 16:13:05 -0000 1.6 +++ fbg.spec 24 Jul 2009 22:31:35 -0000 1.7 @@ -1,6 +1,6 @@ Name: fbg Version: 0.9.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Falling Block Game Group: Amusements/Games License: GPLv2+ @@ -84,6 +84,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From robert at fedoraproject.org Fri Jul 24 22:31:46 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:31:46 +0000 (UTC) Subject: rpms/perl-Convert-UUlib/devel .cvsignore, 1.7, 1.8 perl-Convert-UUlib.spec, 1.22, 1.23 sources, 1.7, 1.8 Message-ID: <20090724223146.779D511C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-Convert-UUlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3300 Modified Files: .cvsignore perl-Convert-UUlib.spec sources Log Message: Upgrade to 1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jul 2008 21:11:10 -0000 1.7 +++ .cvsignore 24 Jul 2009 22:31:46 -0000 1.8 @@ -1 +1 @@ -Convert-UUlib-1.11.tar.gz +Convert-UUlib-1.12.tar.gz Index: perl-Convert-UUlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/devel/perl-Convert-UUlib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Convert-UUlib.spec 23 Feb 2009 21:07:19 -0000 1.22 +++ perl-Convert-UUlib.spec 24 Jul 2009 22:31:46 -0000 1.23 @@ -1,9 +1,9 @@ %define cpanname Convert-UUlib Name: perl-%{cpanname} -Version: 1.11 +Version: 1.12 Epoch: 1 -Release: 2%{?dist} +Release: 1%{?dist} Summary: Perl interface to the uulib library Group: Development/Libraries @@ -62,6 +62,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Robert Scheck 1:1.12-1 +- Upgrade to 1.12 + * Mon Feb 23 2009 Robert Scheck 1:1.11-2 - Rebuild against gcc 4.4 and rpm 4.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jul 2008 21:11:10 -0000 1.7 +++ sources 24 Jul 2009 22:31:46 -0000 1.8 @@ -1 +1 @@ -629ef452dd98b446f191b0bb37c39091 Convert-UUlib-1.11.tar.gz +360d29db09aa7692d8873b336b7ec9d7 Convert-UUlib-1.12.tar.gz From jkeating at fedoraproject.org Fri Jul 24 22:31:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:31:51 +0000 (UTC) Subject: rpms/fbida/devel fbida.spec,1.28,1.29 Message-ID: <20090724223151.06D3B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbida/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3394 Modified Files: fbida.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbida.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbida/devel/fbida.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- fbida.spec 26 Feb 2009 13:43:55 -0000 1.28 +++ fbida.spec 24 Jul 2009 22:31:50 -0000 1.29 @@ -1,7 +1,7 @@ Summary: FrameBuffer Imageviewer Name: fbida Version: 2.07 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://linux.bytesex.org/fbida/ @@ -63,6 +63,9 @@ lib=%{_lib} prefix=%{_prefix} %{__make} %{_bindir}/fbgs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.07-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Mat?j Cepl - 2.07-6 - actually ida* stuff doesn't get build without Motif From jkeating at fedoraproject.org Fri Jul 24 22:32:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:32:04 +0000 (UTC) Subject: rpms/fbpanel/devel fbpanel.spec,1.3,1.4 Message-ID: <20090724223204.CEFCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3611 Modified Files: fbpanel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbpanel/devel/fbpanel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fbpanel.spec 24 Feb 2009 16:14:56 -0000 1.3 +++ fbpanel.spec 24 Jul 2009 22:32:04 -0000 1.4 @@ -1,6 +1,6 @@ Name: fbpanel Version: 4.12 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A lightweight X11 desktop panel Group: User Interface/Desktops @@ -87,6 +87,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.12-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.12-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:32:18 +0000 (UTC) Subject: rpms/fbreader/devel fbreader.spec,1.18,1.19 Message-ID: <20090724223218.D116211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbreader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3783 Modified Files: fbreader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbreader.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbreader/devel/fbreader.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- fbreader.spec 31 Mar 2009 23:07:22 -0000 1.18 +++ fbreader.spec 24 Jul 2009 22:32:18 -0000 1.19 @@ -1,7 +1,7 @@ # rebuild with --with qt4 to build optional qt4 UI Name: fbreader Version: 0.10.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: E-book reader Group: Applications/Publishing @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michel Salim - 0.10.7-1 - Update to 0.10.7 From jkeating at fedoraproject.org Fri Jul 24 22:32:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:32:33 +0000 (UTC) Subject: rpms/fbset/devel fbset.spec,1.26,1.27 Message-ID: <20090724223233.F21A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbset/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4032 Modified Files: fbset.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbset.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbset/devel/fbset.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- fbset.spec 24 Feb 2009 16:16:54 -0000 1.26 +++ fbset.spec 24 Jul 2009 22:32:33 -0000 1.27 @@ -1,7 +1,7 @@ Summary: Tools for managing a frame buffer's video mode properties Name: fbset Version: 2.1 -Release: 28%{?dist} +Release: 29%{?dist} License: GPL+ Group: Applications/System URL: http://users.telenet.be/geertu/Linux/fbdev/ @@ -45,6 +45,9 @@ rm -rf ${RPM_BUILD_ROOT} %config(noreplace) %{_sysconfdir}/fb.modes %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:32:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:32:48 +0000 (UTC) Subject: rpms/fbterm/devel fbterm.spec,1.10,1.11 Message-ID: <20090724223248.1371011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fbterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4242 Modified Files: fbterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fbterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/fbterm/devel/fbterm.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fbterm.spec 15 May 2009 05:02:32 -0000 1.10 +++ fbterm.spec 24 Jul 2009 22:32:47 -0000 1.11 @@ -1,6 +1,6 @@ Name: fbterm Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://code.google.com/p/fbterm/ @@ -76,6 +76,9 @@ setcap 'cap_sys_tty_config+ep' %{_bindir %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Ding-Yi Chen - 1.5-1 - Upstream update: 1. added support for text rendering with backround image From sparks at fedoraproject.org Fri Jul 24 22:32:49 2009 From: sparks at fedoraproject.org (Eric Christensen) Date: Fri, 24 Jul 2009 22:32:49 +0000 (UTC) Subject: rpms/zikula-module-scribite/EL-5 import.log, NONE, 1.1 zikula-module-scribite.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724223249.EFED811C00CE@cvs1.fedora.phx.redhat.com> Author: sparks Update of /cvs/pkgs/rpms/zikula-module-scribite/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4167/EL-5 Modified Files: .cvsignore sources Added Files: import.log zikula-module-scribite.spec Log Message: Initial EL-5 build. --- NEW FILE import.log --- zikula-module-scribite-3_2-3_fc11:EL-5:zikula-module-scribite-3.2-3.fc11.src.rpm:1248474746 --- NEW FILE zikula-module-scribite.spec --- %global zikula_base %{_datadir}/zikula %global zikula_moddir %{zikula_base}/modules %global zikula_modname scribite Name: zikula-module-%{zikula_modname} Version: 3.2 Release: 3%{?dist} Summary: Integration of several JavaScript text editors with Zikula Group: Applications/Publishing License: GPLv2+ # Use top-level URL from Zikula site for the module URL: http://code.zikula.org/scribite/downloads/ # http://code.zikula.org/scribite/downloads/24 Source0: %{zikula_modname}_3_2_basic.zip BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch #BuildRequires: Requires: zikula %description scribite! is a module for easy integration of WYSIWYG scripts, TinyMCE, FCKeditor, openWYSIWYG, NicEdit or YUI Rich Text Editor into textarea fields in order to make text editing a little bit nicer and more comfortable for users. %prep %setup -qn modules/%{zikula_modname} # Remove empty index.html and others find -size 0 | xargs rm -f # Remove CC-licensed pieces #rm -rf javascript/scribite_editors/xinha/skins/titan #rm -rf javascript/scribite_editors/xinha/skins/inditreuse #rm -rf javascript/scribite_editors/xinha/iconsets/Tango %build #Fixing wrong-file-end-of-line-encoding error cd pndocs sed -i 's/\r//' Snoopy_gpl_license.txt sed -i 's/\r//' changelog.txt sed -i 's/\r//' tinymce_lgpl_license.txt sed -i 's/\r//' openwysiwyg_license.txt sed -i 's/\r//' fckeditor_license.txt %install rm -rf $RPM_BUILD_ROOT %{__mkdir} -p $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} cp -pr . $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname} rm -rf $RPM_BUILD_ROOT/%{zikula_moddir}/%{zikula_modname}/pndocs %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc pndocs/changelog.txt pndocs/fckeditor_license.txt pndocs/license.txt pndocs/nicedit_license.txt pndocs/openwysiwyg_license.txt pndocs/scribite!-dev-deu.odt pndocs/scribite!-dev-deu.pdf pndocs/scribite!-dev-eng.odt pndocs/scribite!-dev-eng.pdf pndocs/scribite!-dev-fra.odt pndocs/scribite!-dev-fra.pdf pndocs/scribite!-documentation-deu.odt pndocs/scribite!-documentation-deu.pdf pndocs/scribite!-documentation-eng.odt pndocs/scribite!-documentation-eng.pdf pndocs/scribite!-documentation-fra.odt pndocs/scribite!-documentation-fra.pdf pndocs/Snoopy_gpl_license.txt pndocs/tinymce_lgpl_license.txt pndocs/todo.txt pndocs/xinha_htmlarea_license.txt %{zikula_moddir}/%{zikula_modname} %changelog * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-3 - Updated source with new version of scribite!. * Wed Jul 22 2009 Eric "Sparks" Christensen - 3.2-2 - Updated SPEC to remove non-GPL skins and icons. - Fixed wrong-file-end-of-line-encoding errors in SPEC. * Tue Jun 23 2009 Eric "Sparks" Christensen - 3.2-1 - Updated package to remove non-GPL code. * Mon Jun 15 2009 Eric "Sparks" Christensen - 3.1-1 - Initial RPM build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:22:21 -0000 1.1 +++ .cvsignore 24 Jul 2009 22:32:49 -0000 1.2 @@ -0,0 +1 @@ +scribite_3_2_basic.zip Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-scribite/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:22:21 -0000 1.1 +++ sources 24 Jul 2009 22:32:49 -0000 1.2 @@ -0,0 +1 @@ +84cfdce4a38f7eb1dd44bb3d8359b561 scribite_3_2_basic.zip From jkeating at fedoraproject.org Fri Jul 24 22:33:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:33:30 +0000 (UTC) Subject: rpms/fcgi/devel fcgi.spec,1.9,1.10 Message-ID: <20090724223330.4D8FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fcgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4702 Modified Files: fcgi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fcgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fcgi/devel/fcgi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fcgi.spec 1 Mar 2009 09:11:25 -0000 1.9 +++ fcgi.spec 24 Jul 2009 22:33:30 -0000 1.10 @@ -1,6 +1,6 @@ Name: fcgi Version: 2.4.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: FastCGI development kit Group: Development/Languages @@ -143,6 +143,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Chris Weyl - 2.4.0-9 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Fri Jul 24 22:33:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:33:46 +0000 (UTC) Subject: rpms/fcode-utils/devel fcode-utils.spec,1.1,1.2 Message-ID: <20090724223346.57B6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fcode-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4864 Modified Files: fcode-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fcode-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/fcode-utils/devel/fcode-utils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fcode-utils.spec 16 Mar 2009 05:50:41 -0000 1.1 +++ fcode-utils.spec 24 Jul 2009 22:33:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: fcode-utils Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utilities for dealing with FCode Group: Development/Languages # The entire source code is GPLv2 except localvalues/ and documentation/ which are CPL-licensed @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Peter Lemenkov 1.0.2-3 - Added comment about licensing From jkeating at fedoraproject.org Fri Jul 24 22:34:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:34:01 +0000 (UTC) Subject: rpms/fcoe-utils/devel fcoe-utils.spec,1.5,1.6 Message-ID: <20090724223401.7317C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fcoe-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5053 Modified Files: fcoe-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fcoe-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/fcoe-utils/devel/fcoe-utils.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fcoe-utils.spec 9 Jun 2009 08:49:52 -0000 1.5 +++ fcoe-utils.spec 24 Jul 2009 22:34:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: fcoe-utils Version: 1.0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Fibre Channel over Ethernet utilities Group: Applications/System @@ -93,6 +93,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Jan Zeleny - 1.0.7-7 - added quickstart file to %doc (#500759) From jkeating at fedoraproject.org Fri Jul 24 22:34:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:34:16 +0000 (UTC) Subject: rpms/fcron/devel fcron.spec,1.20,1.21 Message-ID: <20090724223416.ABFBA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fcron/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5242 Modified Files: fcron.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fcron.spec =================================================================== RCS file: /cvs/pkgs/rpms/fcron/devel/fcron.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- fcron.spec 24 Feb 2009 16:20:09 -0000 1.20 +++ fcron.spec 24 Jul 2009 22:34:16 -0000 1.21 @@ -1,6 +1,6 @@ Name: fcron Version: 3.0.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A task scheduler Summary(fr): Un ordonnanceur de t?ches Summary(it): Uno schedulatore di processi @@ -236,6 +236,9 @@ fi #%dir %{_sysconfdir}/cron.d %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:34:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:34:32 +0000 (UTC) Subject: rpms/fdupes/devel fdupes.spec,1.11,1.12 Message-ID: <20090724223432.535FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fdupes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5424 Modified Files: fdupes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fdupes.spec =================================================================== RCS file: /cvs/pkgs/rpms/fdupes/devel/fdupes.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- fdupes.spec 21 Feb 2009 21:13:57 -0000 1.11 +++ fdupes.spec 24 Jul 2009 22:34:32 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Finds duplicate files in a given set of directories Name: fdupes Version: 1.50 -Release: 0.1.PR2%{?dist} +Release: 0.2.PR2%{?dist} License: MIT Group: Applications/File URL: http://netdial.caribe.net/~adrian2/fdupes.html @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.50-0.2.PR2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 01 2009 Debarshi Ray - 1.50-0.1.PR2 - Version bump to 1.50 PR2. * Added --noprompt, --recurse and --summarize options From jkeating at fedoraproject.org Fri Jul 24 22:34:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:34:47 +0000 (UTC) Subject: rpms/febootstrap/devel febootstrap.spec,1.7,1.8 Message-ID: <20090724223447.5C4B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/febootstrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5603 Modified Files: febootstrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: febootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/febootstrap/devel/febootstrap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- febootstrap.spec 16 Jun 2009 09:45:33 -0000 1.7 +++ febootstrap.spec 24 Jul 2009 22:34:47 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Bootstrap a new Fedora system (like debootstrap) Name: febootstrap Version: 2.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://et.redhat.com/~rjones/febootstrap/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Richard Jones - 2.3-1 - New upstream release 2.3. From jkeating at fedoraproject.org Fri Jul 24 22:35:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:35:00 +0000 (UTC) Subject: rpms/fedora-bookmarks/devel fedora-bookmarks.spec,1.6,1.7 Message-ID: <20090724223500.D520B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-bookmarks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5795 Modified Files: fedora-bookmarks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-bookmarks.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-bookmarks/devel/fedora-bookmarks.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fedora-bookmarks.spec 1 May 2009 21:07:58 -0000 1.6 +++ fedora-bookmarks.spec 24 Jul 2009 22:35:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: fedora-bookmarks Version: 11 -Release: 1 +Release: 2 Summary: Fedora bookmarks Group: Applications/Internet License: GFDL @@ -38,6 +38,9 @@ install -p -m 644 %{SOURCE0} $RPM_BUILD_ %{_datadir}/bookmarks/default-bookmarks.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Christopher Aillon - 11-1 - Refresh Fedora Project link set - Add new Free Content link From jkeating at fedoraproject.org Fri Jul 24 22:35:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:35:14 +0000 (UTC) Subject: rpms/fedora-business-cards/devel fedora-business-cards.spec, 1.12, 1.13 Message-ID: <20090724223514.0CAF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-business-cards/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5973 Modified Files: fedora-business-cards.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-business-cards.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-business-cards/devel/fedora-business-cards.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fedora-business-cards.spec 17 Jun 2009 22:12:16 -0000 1.12 +++ fedora-business-cards.spec 24 Jul 2009 22:35:13 -0000 1.13 @@ -2,7 +2,7 @@ Name: fedora-business-cards Version: 0.2.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Fedora business card generator Group: Applications/Multimedia @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ian Weller - 0.2.4.2-2 - Add an appropriate conditional require for inkscape From jkeating at fedoraproject.org Fri Jul 24 22:35:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:35:27 +0000 (UTC) Subject: rpms/fedora-devshell/devel fedora-devshell.spec,1.2,1.3 Message-ID: <20090724223527.E21DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-devshell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6201 Modified Files: fedora-devshell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-devshell.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-devshell/devel/fedora-devshell.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedora-devshell.spec 8 May 2009 04:35:08 -0000 1.2 +++ fedora-devshell.spec 24 Jul 2009 22:35:27 -0000 1.3 @@ -3,7 +3,7 @@ Name: fedora-devshell Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fedora Developer's Toolbox Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Yaakov M. Nemoy - 0.1.1-2 - adds explicit requires, seems rpm fails at python From jkeating at fedoraproject.org Fri Jul 24 22:35:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:35:41 +0000 (UTC) Subject: rpms/fedora-gnome-theme/devel fedora-gnome-theme.spec,1.10,1.11 Message-ID: <20090724223541.D17FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-gnome-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6361 Modified Files: fedora-gnome-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-gnome-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-gnome-theme/devel/fedora-gnome-theme.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fedora-gnome-theme.spec 24 Feb 2009 16:29:03 -0000 1.10 +++ fedora-gnome-theme.spec 24 Jul 2009 22:35:41 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Fedora GNOME theme Name: fedora-gnome-theme Version: 8.0.0 -Release: 8%{?dist} +Release: 9%{?dist} BuildArch: noarch # No version given, no license attribution. License: GPL+ @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/Fedora %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8.0.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:35:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:35:55 +0000 (UTC) Subject: rpms/fedora-icon-theme/devel fedora-icon-theme.spec,1.7,1.8 Message-ID: <20090724223555.CC13011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6534 Modified Files: fedora-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-icon-theme/devel/fedora-icon-theme.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fedora-icon-theme.spec 24 Feb 2009 16:30:06 -0000 1.7 +++ fedora-icon-theme.spec 24 Jul 2009 22:35:55 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Fedora icon theme Name: fedora-icon-theme Version: 1.0.0 -Release: 5%{?dist} +Release: 6%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -68,6 +68,9 @@ fi %{_datadir}/pixmaps/*.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:36:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:36:13 +0000 (UTC) Subject: rpms/fedora-idm-console/devel fedora-idm-console.spec,1.4,1.5 Message-ID: <20090724223613.5657C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-idm-console/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6748 Modified Files: fedora-idm-console.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-idm-console.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-idm-console/devel/fedora-idm-console.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-idm-console.spec 31 Mar 2009 21:51:12 -0000 1.4 +++ fedora-idm-console.spec 24 Jul 2009 22:36:13 -0000 1.5 @@ -3,7 +3,7 @@ Name: fedora-idm-console Version: %{major_version}.%{minor_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fedora Management Console Group: Applications/System @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - the 1.1.3 release From jkeating at fedoraproject.org Fri Jul 24 22:36:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:36:26 +0000 (UTC) Subject: rpms/fedora-ksplice/devel fedora-ksplice.spec,1.4,1.5 Message-ID: <20090724223626.CEC9511C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-ksplice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6937 Modified Files: fedora-ksplice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-ksplice.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-ksplice/devel/fedora-ksplice.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-ksplice.spec 3 May 2009 18:17:34 -0000 1.4 +++ fedora-ksplice.spec 24 Jul 2009 22:36:26 -0000 1.5 @@ -2,7 +2,7 @@ Name: fedora-ksplice Version: 0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Script Collection for Using KSplice on Fedora Linux Group: System Environment/Kernel @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 3 2009 Jochen Schmitt 0.5-6 - Set debug_package to %%{nil} (#498787) From jkeating at fedoraproject.org Fri Jul 24 22:36:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:36:41 +0000 (UTC) Subject: rpms/fedora-logos/devel fedora-logos.spec,1.129,1.130 Message-ID: <20090724223641.51F9211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-logos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7127 Modified Files: fedora-logos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-logos.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-logos/devel/fedora-logos.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- fedora-logos.spec 18 May 2009 20:50:59 -0000 1.129 +++ fedora-logos.spec 24 Jul 2009 22:36:41 -0000 1.130 @@ -1,7 +1,7 @@ Name: fedora-logos Summary: Fedora-related icons and pictures Version: 11.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base URL: http://git.fedorahosted.org/git/fedora-logos.git/ Source0: https://fedorahosted.org/releases/f/e/fedora-logos/fedora-logos-%{version}.tar.bz2 @@ -189,6 +189,9 @@ fi # end i386 bits %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Tom "spot" Callaway 11.0.6-1 - drop "lowres" image, saves a small amount of diskspace From jkeating at fedoraproject.org Fri Jul 24 22:36:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:36:56 +0000 (UTC) Subject: rpms/fedora-package-config-apt/devel fedora-package-config-apt.spec, 1.12, 1.13 Message-ID: <20090724223656.50D1811C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-package-config-apt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7320 Modified Files: fedora-package-config-apt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-package-config-apt.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-package-config-apt/devel/fedora-package-config-apt.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fedora-package-config-apt.spec 18 Jul 2009 18:04:11 -0000 1.12 +++ fedora-package-config-apt.spec 24 Jul 2009 22:36:55 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Fedora configuration files for the apt-rpm package manager Name: fedora-package-config-apt Version: 11.89 -Release: 4 +Release: 5 # Nothing in here has copyright, much less license attribution, however, # since this is "upstream", we'll take this statement as the author's intent, # and use GPL+ here (since no version is specified). @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.89-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Axel Thimm - 11.89-4 - Use MM URLs. From jkeating at fedoraproject.org Fri Jul 24 22:37:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:37:10 +0000 (UTC) Subject: rpms/fedora-package-config-smart/devel fedora-package-config-smart.spec, 1.15, 1.16 Message-ID: <20090724223710.5564911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-package-config-smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7489 Modified Files: fedora-package-config-smart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-package-config-smart.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-package-config-smart/devel/fedora-package-config-smart.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fedora-package-config-smart.spec 18 Jul 2009 19:44:19 -0000 1.15 +++ fedora-package-config-smart.spec 24 Jul 2009 22:37:09 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Fedora configuration files for the Smart package manager Name: fedora-package-config-smart Version: 11.89 -Release: 18 +Release: 19 License: GPL+ Group: System Environment/Base URL: http://fedoraproject.org/ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/smart/channels/*.channel %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.89-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Axel Thimm - 11.89-18 - Use MM URLs. From jkeating at fedoraproject.org Fri Jul 24 22:37:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:37:26 +0000 (UTC) Subject: rpms/fedora-packager/devel fedora-packager.spec,1.10,1.11 Message-ID: <20090724223726.6582811C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-packager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7679 Modified Files: fedora-packager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-packager.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-packager/devel/fedora-packager.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fedora-packager.spec 13 Jul 2009 13:49:57 -0000 1.10 +++ fedora-packager.spec 24 Jul 2009 22:37:24 -0000 1.11 @@ -1,6 +1,6 @@ Name: fedora-packager Version: 0.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for setting up a fedora maintainer environment Group: Applications/Productivity @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dennis Gilmore - 0.3.5-1 - add new rpmbuild-md5 script to build old style hash srpms - it is a wrapper around rpmbuild From robert at fedoraproject.org Fri Jul 24 22:37:36 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:37:36 +0000 (UTC) Subject: rpms/perl-Convert-UUlib/F-11 .cvsignore, 1.7, 1.8 perl-Convert-UUlib.spec, 1.22, 1.23 sources, 1.7, 1.8 import.log, 1.1, NONE Message-ID: <20090724223736.0F49211C00D3@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-Convert-UUlib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7604/F-11 Modified Files: .cvsignore perl-Convert-UUlib.spec sources Removed Files: import.log Log Message: Upgrade to 1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jul 2008 21:11:10 -0000 1.7 +++ .cvsignore 24 Jul 2009 22:37:35 -0000 1.8 @@ -1 +1 @@ -Convert-UUlib-1.11.tar.gz +Convert-UUlib-1.12.tar.gz Index: perl-Convert-UUlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-11/perl-Convert-UUlib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Convert-UUlib.spec 23 Feb 2009 21:07:19 -0000 1.22 +++ perl-Convert-UUlib.spec 24 Jul 2009 22:37:35 -0000 1.23 @@ -1,9 +1,9 @@ %define cpanname Convert-UUlib Name: perl-%{cpanname} -Version: 1.11 +Version: 1.12 Epoch: 1 -Release: 2%{?dist} +Release: 1%{?dist} Summary: Perl interface to the uulib library Group: Development/Libraries @@ -62,6 +62,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Robert Scheck 1:1.12-1 +- Upgrade to 1.12 + * Mon Feb 23 2009 Robert Scheck 1:1.11-2 - Rebuild against gcc 4.4 and rpm 4.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jul 2008 21:11:10 -0000 1.7 +++ sources 24 Jul 2009 22:37:35 -0000 1.8 @@ -1 +1 @@ -629ef452dd98b446f191b0bb37c39091 Convert-UUlib-1.11.tar.gz +360d29db09aa7692d8873b336b7ec9d7 Convert-UUlib-1.12.tar.gz --- import.log DELETED --- From robert at fedoraproject.org Fri Jul 24 22:37:34 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:37:34 +0000 (UTC) Subject: rpms/perl-Convert-UUlib/EL-4 .cvsignore, 1.5, 1.6 perl-Convert-UUlib.spec, 1.10, 1.11 sources, 1.5, 1.6 Message-ID: <20090724223734.D18C611C00D3@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-Convert-UUlib/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7604/EL-4 Modified Files: .cvsignore perl-Convert-UUlib.spec sources Log Message: Upgrade to 1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-4/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Jan 2009 23:28:48 -0000 1.5 +++ .cvsignore 24 Jul 2009 22:37:34 -0000 1.6 @@ -1 +1 @@ -Convert-UUlib-1.11.tar.gz +Convert-UUlib-1.12.tar.gz Index: perl-Convert-UUlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-4/perl-Convert-UUlib.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Convert-UUlib.spec 26 Jan 2009 23:28:49 -0000 1.10 +++ perl-Convert-UUlib.spec 24 Jul 2009 22:37:34 -0000 1.11 @@ -1,7 +1,7 @@ %define cpanname Convert-UUlib Name: perl-%{cpanname} -Version: 1.11 +Version: 1.12 Epoch: 1 Release: 1%{?dist} Summary: Perl interface to the uulib library @@ -62,9 +62,15 @@ rm -fr %{buildroot} %changelog -* Fri Jul 11 2008 +* Sat Jul 25 2009 Robert Scheck 1:1.12-1 +- Upgrade to 1.12 + +* Mon Feb 23 2009 Robert Scheck 1:1.11-2 +- Rebuild against gcc 4.4 and rpm 4.6 + +* Fri Jul 11 2008 Nicolas Mailhot - 1:1.11-1 -? Fedora 10 alpha general package cleanup +- Fedora 10 alpha general package cleanup * Sun May 31 2008 Robert Scheck - 1:1.09-5 @@ -74,13 +80,13 @@ rm -fr %{buildroot} - 1:1.09-4 - Rebuild for new perl -* Fri Feb 08 2008 Nicolas Mailhot +* Fri Feb 08 2008 Nicolas Mailhot - 1:1.09-3 -? gcc 4.3 rebuild +- gcc 4.3 rebuild * Mon Aug 13 2007 Nicolas Mailhot -? 1:1.09-2 -? Fix License +- 1:1.09-2 +- Fix License * Sun Aug 12 2007 Robert Scheck 1:1.09-1 - Upgrade to 1.09 and rebuilt for EPEL branches (#250865) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-4/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Jan 2009 23:28:49 -0000 1.5 +++ sources 24 Jul 2009 22:37:34 -0000 1.6 @@ -1 +1 @@ -629ef452dd98b446f191b0bb37c39091 Convert-UUlib-1.11.tar.gz +360d29db09aa7692d8873b336b7ec9d7 Convert-UUlib-1.12.tar.gz From robert at fedoraproject.org Fri Jul 24 22:37:35 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:37:35 +0000 (UTC) Subject: rpms/perl-Convert-UUlib/EL-5 .cvsignore, 1.6, 1.7 perl-Convert-UUlib.spec, 1.18, 1.19 sources, 1.6, 1.7 Message-ID: <20090724223735.2502511C00D3@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-Convert-UUlib/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7604/EL-5 Modified Files: .cvsignore perl-Convert-UUlib.spec sources Log Message: Upgrade to 1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-5/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 26 Jan 2009 23:28:49 -0000 1.6 +++ .cvsignore 24 Jul 2009 22:37:34 -0000 1.7 @@ -1 +1 @@ -Convert-UUlib-1.11.tar.gz +Convert-UUlib-1.12.tar.gz Index: perl-Convert-UUlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-5/perl-Convert-UUlib.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Convert-UUlib.spec 26 Jan 2009 23:28:49 -0000 1.18 +++ perl-Convert-UUlib.spec 24 Jul 2009 22:37:34 -0000 1.19 @@ -1,7 +1,7 @@ %define cpanname Convert-UUlib Name: perl-%{cpanname} -Version: 1.11 +Version: 1.12 Epoch: 1 Release: 1%{?dist} Summary: Perl interface to the uulib library @@ -62,9 +62,15 @@ rm -fr %{buildroot} %changelog -* Fri Jul 11 2008 +* Sat Jul 25 2009 Robert Scheck 1:1.12-1 +- Upgrade to 1.12 + +* Mon Feb 23 2009 Robert Scheck 1:1.11-2 +- Rebuild against gcc 4.4 and rpm 4.6 + +* Fri Jul 11 2008 Nicolas Mailhot - 1:1.11-1 -? Fedora 10 alpha general package cleanup +- Fedora 10 alpha general package cleanup * Sun May 31 2008 Robert Scheck - 1:1.09-5 @@ -74,13 +80,13 @@ rm -fr %{buildroot} - 1:1.09-4 - Rebuild for new perl -* Fri Feb 08 2008 Nicolas Mailhot +* Fri Feb 08 2008 Nicolas Mailhot - 1:1.09-3 -? gcc 4.3 rebuild +- gcc 4.3 rebuild * Mon Aug 13 2007 Nicolas Mailhot -? 1:1.09-2 -? Fix License +- 1:1.09-2 +- Fix License * Sun Aug 12 2007 Robert Scheck 1:1.09-1 - Upgrade to 1.09 and rebuilt for EPEL branches (#250865) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 26 Jan 2009 23:28:49 -0000 1.6 +++ sources 24 Jul 2009 22:37:34 -0000 1.7 @@ -1 +1 @@ -629ef452dd98b446f191b0bb37c39091 Convert-UUlib-1.11.tar.gz +360d29db09aa7692d8873b336b7ec9d7 Convert-UUlib-1.12.tar.gz From robert at fedoraproject.org Fri Jul 24 22:37:35 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:37:35 +0000 (UTC) Subject: rpms/perl-Convert-UUlib/F-10 .cvsignore, 1.7, 1.8 perl-Convert-UUlib.spec, 1.21, 1.22 sources, 1.7, 1.8 import.log, 1.1, NONE Message-ID: <20090724223735.842FE11C00D3@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/perl-Convert-UUlib/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7604/F-10 Modified Files: .cvsignore perl-Convert-UUlib.spec sources Removed Files: import.log Log Message: Upgrade to 1.12 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jul 2008 21:11:10 -0000 1.7 +++ .cvsignore 24 Jul 2009 22:37:35 -0000 1.8 @@ -1 +1 @@ -Convert-UUlib-1.11.tar.gz +Convert-UUlib-1.12.tar.gz Index: perl-Convert-UUlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-10/perl-Convert-UUlib.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-Convert-UUlib.spec 11 Jul 2008 21:11:10 -0000 1.21 +++ perl-Convert-UUlib.spec 24 Jul 2009 22:37:35 -0000 1.22 @@ -1,7 +1,7 @@ %define cpanname Convert-UUlib Name: perl-%{cpanname} -Version: 1.11 +Version: 1.12 Epoch: 1 Release: 1%{?dist} Summary: Perl interface to the uulib library @@ -62,9 +62,15 @@ rm -fr %{buildroot} %changelog -* Fri Jul 11 2008 +* Sat Jul 25 2009 Robert Scheck 1:1.12-1 +- Upgrade to 1.12 + +* Mon Feb 23 2009 Robert Scheck 1:1.11-2 +- Rebuild against gcc 4.4 and rpm 4.6 + +* Fri Jul 11 2008 Nicolas Mailhot - 1:1.11-1 -? Fedora 10 alpha general package cleanup +- Fedora 10 alpha general package cleanup * Sun May 31 2008 Robert Scheck - 1:1.09-5 @@ -74,13 +80,13 @@ rm -fr %{buildroot} - 1:1.09-4 - Rebuild for new perl -* Fri Feb 08 2008 Nicolas Mailhot +* Fri Feb 08 2008 Nicolas Mailhot - 1:1.09-3 -? gcc 4.3 rebuild +- gcc 4.3 rebuild * Mon Aug 13 2007 Nicolas Mailhot -? 1:1.09-2 -? Fix License +- 1:1.09-2 +- Fix License * Sun Aug 12 2007 Robert Scheck 1:1.09-1 - Upgrade to 1.09 and rebuilt for EPEL branches (#250865) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-UUlib/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jul 2008 21:11:10 -0000 1.7 +++ sources 24 Jul 2009 22:37:35 -0000 1.8 @@ -1 +1 @@ -629ef452dd98b446f191b0bb37c39091 Convert-UUlib-1.11.tar.gz +360d29db09aa7692d8873b336b7ec9d7 Convert-UUlib-1.12.tar.gz --- import.log DELETED --- From jkeating at fedoraproject.org Fri Jul 24 22:37:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:37:40 +0000 (UTC) Subject: rpms/fedora-release/devel fedora-release.spec,1.75,1.76 Message-ID: <20090724223740.50BA711C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-release/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7906 Modified Files: fedora-release.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-release.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-release/devel/fedora-release.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- fedora-release.spec 30 Mar 2009 21:36:17 -0000 1.75 +++ fedora-release.spec 24 Jul 2009 22:37:39 -0000 1.76 @@ -4,7 +4,7 @@ Summary: Fedora release files Name: fedora-release Version: 11.90 -Release: 1 +Release: 2 License: GPLv2 Group: System Environment/Base URL: http://fedoraproject.org @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT /etc/pki/rpm-gpg/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Jesse Keating - 11.90-1 - Build for F12 collection From jkeating at fedoraproject.org Fri Jul 24 22:37:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:37:53 +0000 (UTC) Subject: rpms/fedora-release-notes/devel fedora-release-notes.spec, 1.35, 1.36 Message-ID: <20090724223753.1DED611C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-release-notes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8121 Modified Files: fedora-release-notes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-release-notes.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-release-notes/devel/fedora-release-notes.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- fedora-release-notes.spec 27 Feb 2009 22:32:22 -0000 1.35 +++ fedora-release-notes.spec 24 Jul 2009 22:37:52 -0000 1.36 @@ -1,6 +1,6 @@ Name: fedora-release-notes Version: 10.0.0 -Release: 0.3 +Release: 0.4 Summary: Release Notes for Fedora 10 URL: http://fedoraproject.org/wiki/Docs/Beats @@ -124,6 +124,9 @@ if [ -x /usr/bin/update-desktop-database %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 10.0.0-0.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 10.0.0-0.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:38:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:38:06 +0000 (UTC) Subject: rpms/fedora-screensaver-theme/devel fedora-screensaver-theme.spec, 1.4, 1.5 Message-ID: <20090724223806.06DF511C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-screensaver-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8294 Modified Files: fedora-screensaver-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-screensaver-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-screensaver-theme/devel/fedora-screensaver-theme.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedora-screensaver-theme.spec 24 Feb 2009 16:39:06 -0000 1.4 +++ fedora-screensaver-theme.spec 24 Jul 2009 22:38:05 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Fedora screensaver theme Name: fedora-screensaver-theme Version: 1.0.0 -Release: 4%{?dist} +Release: 5%{?dist} BuildArch: noarch # No version given, no license attribution. License: GPL+ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/screensavers/system.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:38:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:38:20 +0000 (UTC) Subject: rpms/fedora-security-guide-en-US/devel fedora-security-guide-en-US.spec, 1.3, 1.4 Message-ID: <20090724223820.9F83111C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-security-guide-en-US/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8514 Modified Files: fedora-security-guide-en-US.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-security-guide-en-US.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-security-guide-en-US/devel/fedora-security-guide-en-US.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fedora-security-guide-en-US.spec 15 Jul 2009 00:01:23 -0000 1.3 +++ fedora-security-guide-en-US.spec 24 Jul 2009 22:38:20 -0000 1.4 @@ -11,7 +11,7 @@ Name: fedora-security-guide-en-US Version: 1.0 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A Guide to Securing Fedora Linux Group: Documentation License: Open Publication @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{?vendor}%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Eric Christensen sparks at fedoraproject.org 1.0-15 - Added "desktop-file-utils" to BUILDREQUIRES on the spec From jkeating at fedoraproject.org Fri Jul 24 22:38:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:38:36 +0000 (UTC) Subject: rpms/fedora-setup-keyboard/devel fedora-setup-keyboard.spec, 1.5, 1.6 Message-ID: <20090724223836.867AE11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-setup-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8712 Modified Files: fedora-setup-keyboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-setup-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-setup-keyboard/devel/fedora-setup-keyboard.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fedora-setup-keyboard.spec 27 May 2009 15:38:50 -0000 1.5 +++ fedora-setup-keyboard.spec 24 Jul 2009 22:38:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: fedora-setup-keyboard Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hal keyboard layout callout Group: Applications/System @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Adel Gadllah 0.4-2 - Rebuild to pick up rhpl changes From jjohnstn at fedoraproject.org Fri Jul 24 22:38:32 2009 From: jjohnstn at fedoraproject.org (Jeff Johnston) Date: Fri, 24 Jul 2009 22:38:32 +0000 (UTC) Subject: rpms/eclipse-cdt/devel eclipse-cdt.spec,1.127,1.128 Message-ID: <20090724223832.64CA611C00D3@cvs1.fedora.phx.redhat.com> Author: jjohnstn Update of /cvs/extras/rpms/eclipse-cdt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8615 Modified Files: eclipse-cdt.spec Log Message: * Fri Jul 24 2009 Jeff Johnston 1:6.0.0-5 - Remove gcj_support. Index: eclipse-cdt.spec =================================================================== RCS file: /cvs/extras/rpms/eclipse-cdt/devel/eclipse-cdt.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- eclipse-cdt.spec 24 Jul 2009 20:51:26 -0000 1.127 +++ eclipse-cdt.spec 24 Jul 2009 22:38:32 -0000 1.128 @@ -1,6 +1,5 @@ Epoch: 1 -%define gcj_support 1 %define run_tests 0 %define ship_tests 0 %define major 6 @@ -21,7 +20,7 @@ Epoch: 1 Summary: Eclipse C/C++ Development Tools (CDT) plugin Name: eclipse-cdt Version: %{majmin}.%{micro} -Release: 4%{?dist} +Release: 5%{?dist} License: EPL and CPL Group: Development/Tools URL: http://www.eclipse.org/cdt @@ -83,15 +82,7 @@ Patch13: %{name}-testaggregation.patch BuildRequires: eclipse-pde BuildRequires: eclipse-mylyn >= 3.0 BuildRequires: eclipse-rse >= 3.0 -%if %{gcj_support} -BuildRequires: gcc-java >= 4.0.2 -BuildRequires: java-gcj-compat-devel >= 1.0.64 -BuildRequires: unzip >= 5.52 -Requires(post): java-gcj-compat >= 1.0.64 -Requires(postun): java-gcj-compat >= 1.0.64 -%else BuildRequires: java-devel >= 1.4.2 -%endif %if %{run_tests} BuildRequires: vnc-server BuildRequires: w3m @@ -102,11 +93,7 @@ Requires: eclipse-platform >= 1:3. Requires: eclipse-rse >= 3.0 # Currently, upstream CDT only supports building on the platforms listed here. -%if %{gcj_support} -ExclusiveArch: %{ix86} x86_64 ppc ia64 -%else ExclusiveArch: %{ix86} x86_64 ppc ia64 -%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -178,7 +165,7 @@ sed --in-place -e "74,82d" build.propert sed --in-place -e "s:configs=\\\:configs=linux,gtk,%{eclipse_arch}:" build.properties popd pushd master -sed --in-place -e "74,82d" build.properties +sed --in-place -e "81,89d" build.properties sed --in-place -e "s:configs= \\\:configs=linux,gtk,%{eclipse_arch}:" build.properties popd pushd platform @@ -186,6 +173,10 @@ sed --in-place -e "74,82d" build.propert sed --in-place -e "s:configs=.*\\\:configs=linux,gtk,%{eclipse_arch}:" build.properties popd +# build.xml assumes we build all configs, but we only build one so update +# build.xml directory reference to be accurate. +sed --in-place -e "s:linux.gtk.x86:linux.gtk.%{eclipse_arch}:g" build.xml + popd ## Autotools stuff @@ -281,6 +272,8 @@ java -cp $SDK/startup.jar \ -XX:CompileCommand="exclude,org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPLinkage,addBinding" \ org.eclipse.core.launcher.Main \ -application org.eclipse.ant.core.antRunner \ + -DjavacSource=1.5 \ + -DjavacTarget=1.5 \ -Duser.home=$homedir \ -Dtype=feature \ -Did=org.eclipse.linuxtools.cdt.autotools.feature \ @@ -470,10 +463,6 @@ rm -rf ${installDir}-tests %endif %endif -%if %{gcj_support} -aot-compile-rpm -%endif - %if %{run_tests} %check installDir=${RPM_BUILD_ROOT}/%{eclipse_base}/dropins/cdt @@ -500,26 +489,9 @@ rm -rf ${installDir}-tests %clean rm -rf ${RPM_BUILD_ROOT} -%if %{gcj_support} -%post -if [ -x %{_bindir}/rebuild-gcj-db ] -then -%{_bindir}/rebuild-gcj-db -fi - -%postun -if [ -x %{_bindir}/rebuild-gcj-db ] -then -%{_bindir}/rebuild-gcj-db -fi -%endif - %files %defattr(-,root,root) %{eclipse_base}/dropins/cdt -%if %{gcj_support} -%{_libdir}/gcj/%{name} -%endif %files sdk %defattr(-,root,root) @@ -536,6 +508,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Jeff Johnston 1:6.0.0-5 +- Remove gcj_support. + * Fri Jul 24 2009 Fedora Release Engineering - 1:6.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:38:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:38:53 +0000 (UTC) Subject: rpms/fedora-usermgmt/devel fedora-usermgmt.spec,1.18,1.19 Message-ID: <20090724223853.435DE11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedora-usermgmt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9005 Modified Files: fedora-usermgmt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedora-usermgmt.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedora-usermgmt/devel/fedora-usermgmt.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- fedora-usermgmt.spec 24 Feb 2009 16:39:59 -0000 1.18 +++ fedora-usermgmt.spec 24 Jul 2009 22:38:53 -0000 1.19 @@ -7,7 +7,7 @@ Summary: Fedora tools for user management Name: fedora-usermgmt Version: 0.10 -Release: %release_func 3 +Release: %release_func 4 License: GPLv2 BuildArch: noarch @@ -186,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:39:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:39:09 +0000 (UTC) Subject: rpms/fedorabubbles-gdm-theme/devel fedorabubbles-gdm-theme.spec, 1.2, 1.3 Message-ID: <20090724223909.8D36911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedorabubbles-gdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9235 Modified Files: fedorabubbles-gdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedorabubbles-gdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedorabubbles-gdm-theme/devel/fedorabubbles-gdm-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedorabubbles-gdm-theme.spec 24 Feb 2009 16:40:54 -0000 1.2 +++ fedorabubbles-gdm-theme.spec 24 Jul 2009 22:39:09 -0000 1.3 @@ -1,7 +1,7 @@ Summary: FedoraBubbles GDM theme Name: fedorabubbles-gdm-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdm/themes/FedoraBubbles %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:39:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:39:24 +0000 (UTC) Subject: rpms/fedoradna-gdm-theme/devel fedoradna-gdm-theme.spec,1.2,1.3 Message-ID: <20090724223924.E45B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedoradna-gdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9518 Modified Files: fedoradna-gdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedoradna-gdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedoradna-gdm-theme/devel/fedoradna-gdm-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedoradna-gdm-theme.spec 24 Feb 2009 16:41:48 -0000 1.2 +++ fedoradna-gdm-theme.spec 24 Jul 2009 22:39:24 -0000 1.3 @@ -1,7 +1,7 @@ Summary: FedoraDNA GDM theme Name: fedoradna-gdm-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdm/themes/FedoraDNA %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:39:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:39:40 +0000 (UTC) Subject: rpms/fedoraflyinghigh-gdm-theme/devel fedoraflyinghigh-gdm-theme.spec, 1.2, 1.3 Message-ID: <20090724223940.745DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedoraflyinghigh-gdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9712 Modified Files: fedoraflyinghigh-gdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedoraflyinghigh-gdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedoraflyinghigh-gdm-theme/devel/fedoraflyinghigh-gdm-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedoraflyinghigh-gdm-theme.spec 24 Feb 2009 16:42:41 -0000 1.2 +++ fedoraflyinghigh-gdm-theme.spec 24 Jul 2009 22:39:40 -0000 1.3 @@ -1,7 +1,7 @@ Summary: FedoraFlyingHigh GDM theme Name: fedoraflyinghigh-gdm-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdm/themes/FedoraFlyingHigh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:39:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:39:54 +0000 (UTC) Subject: rpms/fedorainfinity-backgrounds/devel fedorainfinity-backgrounds.spec, 1.2, 1.3 Message-ID: <20090724223954.110A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedorainfinity-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9872 Modified Files: fedorainfinity-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedorainfinity-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedorainfinity-backgrounds/devel/fedorainfinity-backgrounds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedorainfinity-backgrounds.spec 24 Feb 2009 16:43:37 -0000 1.2 +++ fedorainfinity-backgrounds.spec 24 Jul 2009 22:39:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: fedorainfinity-backgrounds Version: 0.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fedora Infinity desktop backgrounds URL: http://fedoraproject.org/wiki/Artwork/F8Themes/Infinity @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:40:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:40:08 +0000 (UTC) Subject: rpms/fedorainfinity-gdm-theme/devel fedorainfinity-gdm-theme.spec, 1.4, 1.5 Message-ID: <20090724224008.0237211C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedorainfinity-gdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10044 Modified Files: fedorainfinity-gdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedorainfinity-gdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedorainfinity-gdm-theme/devel/fedorainfinity-gdm-theme.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fedorainfinity-gdm-theme.spec 24 Feb 2009 16:44:37 -0000 1.4 +++ fedorainfinity-gdm-theme.spec 24 Jul 2009 22:40:07 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Fedora Infinity GDM theme Name: fedorainfinity-gdm-theme Version: 8.0.1 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdm/themes/FedoraInfinity %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 8.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:40:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:40:22 +0000 (UTC) Subject: rpms/fedorainfinity-screensaver-theme/devel fedorainfinity-screensaver-theme.spec, 1.2, 1.3 Message-ID: <20090724224022.2528811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedorainfinity-screensaver-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10222 Modified Files: fedorainfinity-screensaver-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedorainfinity-screensaver-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedorainfinity-screensaver-theme/devel/fedorainfinity-screensaver-theme.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fedorainfinity-screensaver-theme.spec 24 Feb 2009 16:45:32 -0000 1.2 +++ fedorainfinity-screensaver-theme.spec 24 Jul 2009 22:40:21 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Fedora Infinity screensaver theme Name: fedorainfinity-screensaver-theme Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-screensaver/lock-dialog-infinity.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:40:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:40:36 +0000 (UTC) Subject: rpms/fedorawaves-kdm-theme/devel fedorawaves-kdm-theme.spec, 1.5, 1.6 Message-ID: <20090724224036.4580D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fedorawaves-kdm-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10382 Modified Files: fedorawaves-kdm-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fedorawaves-kdm-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/fedorawaves-kdm-theme/devel/fedorawaves-kdm-theme.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fedorawaves-kdm-theme.spec 24 Feb 2009 16:46:23 -0000 1.5 +++ fedorawaves-kdm-theme.spec 24 Jul 2009 22:40:36 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Fedora Waves KDM theme Name: fedorawaves-kdm-theme Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} BuildArch: noarch License: GPL+ Group: User Interface/Desktops @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/kde4/apps/kdm/themes/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:40:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:40:50 +0000 (UTC) Subject: rpms/feh/devel feh.spec,1.17,1.18 Message-ID: <20090724224050.7640711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/feh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10566 Modified Files: feh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: feh.spec =================================================================== RCS file: /cvs/pkgs/rpms/feh/devel/feh.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- feh.spec 24 Feb 2009 16:47:21 -0000 1.17 +++ feh.spec 24 Jul 2009 22:40:50 -0000 1.18 @@ -3,7 +3,7 @@ Name: feh Version: 1.3.4 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Fast command line image viewer using Imlib2 Group: Applications/Multimedia License: MIT @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:41:04 +0000 (UTC) Subject: rpms/fence-agents/devel fence-agents.spec,1.12,1.13 Message-ID: <20090724224104.32C9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fence-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10740 Modified Files: fence-agents.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fence-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/devel/fence-agents.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fence-agents.spec 8 Jul 2009 21:18:02 -0000 1.12 +++ fence-agents.spec 24 Jul 2009 22:41:04 -0000 1.13 @@ -19,7 +19,7 @@ Name: fence-agents Summary: Fence Agents for Red Hat Cluster Version: 3.0.0 -Release: 14%{?alphatag:.%{alphatag}}%{?dist} +Release: 15%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -83,6 +83,9 @@ power management for several devices. %{_mandir}/man8/fence* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-14 - New upstream release - spec file updates: From jkeating at fedoraproject.org Fri Jul 24 22:41:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:41:18 +0000 (UTC) Subject: rpms/ferm/devel ferm.spec,1.2,1.3 Message-ID: <20090724224118.5AE4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ferm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10903 Modified Files: ferm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ferm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ferm/devel/ferm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ferm.spec 24 Feb 2009 16:48:20 -0000 1.2 +++ ferm.spec 24 Jul 2009 22:41:18 -0000 1.3 @@ -1,7 +1,7 @@ Summary: For Easy Rule Making Name: ferm Version: 2.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/System License: GPLv2+ Source: http://ferm.foo-projects.org/download/2.0/%{name}-%{version}.tar.gz @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/ferm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:41:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:41:35 +0000 (UTC) Subject: rpms/festival/devel festival.spec,1.40,1.41 Message-ID: <20090724224135.E0A1811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/festival/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11086 Modified Files: festival.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: festival.spec =================================================================== RCS file: /cvs/pkgs/rpms/festival/devel/festival.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- festival.spec 20 Apr 2009 21:44:51 -0000 1.40 +++ festival.spec 24 Jul 2009 22:41:35 -0000 1.41 @@ -6,7 +6,7 @@ Name: festival Summary: Speech synthesis and text-to-speech system Version: %{festivalversion} -Release: 12%{?dist} +Release: 13%{?dist} URL: http://www.cstr.ed.ac.uk/projects/festival/ Group: Applications/Multimedia @@ -879,6 +879,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.96-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Matthias Clasen - 1.96-12 - Add Spanish voices from the guadalinex project, in the hispavoces-pal-diphone and hispavoces-sfl-diphone subpackages From jkeating at fedoraproject.org Fri Jul 24 22:41:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:41:52 +0000 (UTC) Subject: rpms/fet/devel fet.spec,1.5,1.6 Message-ID: <20090724224152.7A11011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11256 Modified Files: fet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fet.spec =================================================================== RCS file: /cvs/pkgs/rpms/fet/devel/fet.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fet.spec 24 Feb 2009 16:50:23 -0000 1.5 +++ fet.spec 24 Jul 2009 22:41:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: fet Version: 5.7.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open source free timetabling software Group: Applications/Engineering @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.7.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.7.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:42:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:42:08 +0000 (UTC) Subject: rpms/fetchlog/devel fetchlog.spec,1.14,1.15 Message-ID: <20090724224208.3802D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fetchlog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11425 Modified Files: fetchlog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fetchlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/fetchlog/devel/fetchlog.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fetchlog.spec 24 Feb 2009 16:51:19 -0000 1.14 +++ fetchlog.spec 24 Jul 2009 22:42:08 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Utility to display new messages of a logfile since last run Name: fetchlog Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Url: http://sourceforge.net/projects/%{name}/ Source: http://dl.sf.net/sourceforge/fetchlog/%{name}-%{version}.tar.gz @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:42:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:42:23 +0000 (UTC) Subject: rpms/fetchmail/devel fetchmail.spec,1.66,1.67 Message-ID: <20090724224223.7B9D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fetchmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11583 Modified Files: fetchmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fetchmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/fetchmail/devel/fetchmail.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- fetchmail.spec 9 Jun 2009 21:23:07 -0000 1.66 +++ fetchmail.spec 24 Jul 2009 22:42:23 -0000 1.67 @@ -4,7 +4,7 @@ Summary: A remote mail retrieval and forwarding utility Name: fetchmail Version: 6.3.9 -Release: 4%{?dist} +Release: 5%{?dist} Requires: procmail Source0: http://download.berlios.de/fetchmail/fetchmail-%{version}.tar.bz2 Source1: http://download.berlios.de/fetchmail/fetchmail-%{version}.tar.bz2.asc @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.3.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Adam Jackson 6.3.9-4 - Rebuild to get rid of libkrb4 dependency. From jkeating at fedoraproject.org Fri Jul 24 22:42:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:42:38 +0000 (UTC) Subject: rpms/ffcall/devel ffcall.spec,1.4,1.5 Message-ID: <20090724224238.A60A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ffcall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11760 Modified Files: ffcall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ffcall.spec =================================================================== RCS file: /cvs/pkgs/rpms/ffcall/devel/ffcall.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ffcall.spec 24 Feb 2009 16:53:15 -0000 1.4 +++ ffcall.spec 24 Jul 2009 22:42:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: ffcall Version: 1.10 -Release: 3.20080704cvs%{?dist}.1 +Release: 4.20080704cvs%{?dist}.1 Summary: Libraries for foreign function call interfaces Group: System Environment/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-4.20080704cvs.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.10-3.20080704cvs.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:42:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:42:53 +0000 (UTC) Subject: rpms/ffsb/devel ffsb.spec,1.2,1.3 Message-ID: <20090724224253.C152A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ffsb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11922 Modified Files: ffsb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ffsb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ffsb/devel/ffsb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ffsb.spec 24 Feb 2009 16:54:11 -0000 1.2 +++ ffsb.spec 24 Jul 2009 22:42:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: ffsb Version: 5.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Flexible Filesystem Benchmark Group: Applications/System @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ffsb %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:43:09 +0000 (UTC) Subject: rpms/fftw/devel fftw.spec,1.26,1.27 Message-ID: <20090724224309.826B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fftw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12100 Modified Files: fftw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fftw.spec =================================================================== RCS file: /cvs/pkgs/rpms/fftw/devel/fftw.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- fftw.spec 24 Feb 2009 16:55:03 -0000 1.26 +++ fftw.spec 24 Jul 2009 22:43:09 -0000 1.27 @@ -1,6 +1,6 @@ Name: fftw Version: 3.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast Fourier Transform library Group: System Environment/Libraries License: GPLv2+ @@ -130,6 +130,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:43:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:43:24 +0000 (UTC) Subject: rpms/fftw2/devel fftw2.spec,1.10,1.11 Message-ID: <20090724224324.7B9B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fftw2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12283 Modified Files: fftw2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fftw2.spec =================================================================== RCS file: /cvs/pkgs/rpms/fftw2/devel/fftw2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fftw2.spec 1 Mar 2009 15:21:47 -0000 1.10 +++ fftw2.spec 24 Jul 2009 22:43:24 -0000 1.11 @@ -1,6 +1,6 @@ Name: fftw2 Version: 2.1.5 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Fast Fourier Transform library %define real_name fftw @@ -116,6 +116,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.5-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck - 2.1.5-18 - Removed the shipping and owning of %%{_infodir}/dir file From jkeating at fedoraproject.org Fri Jul 24 22:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:43:39 +0000 (UTC) Subject: rpms/fig2ps/devel fig2ps.spec,1.10,1.11 Message-ID: <20090724224339.6A78711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fig2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12472 Modified Files: fig2ps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fig2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/fig2ps/devel/fig2ps.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fig2ps.spec 15 Jul 2009 13:01:52 -0000 1.10 +++ fig2ps.spec 24 Jul 2009 22:43:39 -0000 1.11 @@ -1,6 +1,6 @@ Name: fig2ps Version: 1.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Utility for converting xfig pictures to PS/PDF Group: Applications/Publishing @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) /etc/fig2ps %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Stepan Kasal - 1.4.1-1 - new upstream version From jkeating at fedoraproject.org Fri Jul 24 22:44:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:44:11 +0000 (UTC) Subject: rpms/figtoipe/devel figtoipe.spec,1.2,1.3 Message-ID: <20090724224411.9A2E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/figtoipe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12842 Modified Files: figtoipe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: figtoipe.spec =================================================================== RCS file: /cvs/pkgs/rpms/figtoipe/devel/figtoipe.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- figtoipe.spec 24 Feb 2009 16:58:40 -0000 1.2 +++ figtoipe.spec 24 Jul 2009 22:44:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: figtoipe Version: 20080505 -Release: 3%{?dist} +Release: 4%{?dist} Summary: FIG to IPE conversion tool Group: Applications/Publishing @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/figtoipe.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080505-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080505-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:43:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:43:55 +0000 (UTC) Subject: rpms/fig2sxd/devel fig2sxd.spec,1.4,1.5 Message-ID: <20090724224355.B807611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fig2sxd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12662 Modified Files: fig2sxd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fig2sxd.spec =================================================================== RCS file: /cvs/pkgs/rpms/fig2sxd/devel/fig2sxd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fig2sxd.spec 24 Feb 2009 16:57:44 -0000 1.4 +++ fig2sxd.spec 24 Jul 2009 22:43:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: fig2sxd Version: 0.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A fig to sxd file converter Group: System Environment/Libraries License: GPLv2 @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:44:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:44:30 +0000 (UTC) Subject: rpms/file/devel file.spec,1.103,1.104 Message-ID: <20090724224430.2C6D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/file/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13126 Modified Files: file.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: file.spec =================================================================== RCS file: /cvs/pkgs/rpms/file/devel/file.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- file.spec 23 Jul 2009 14:10:05 -0000 1.103 +++ file.spec 24 Jul 2009 22:44:29 -0000 1.104 @@ -5,7 +5,7 @@ Summary: A utility for determining file types Name: file Version: 5.03 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: Applications/File Source0: ftp://ftp.astron.com/pub/file/file-%{version}.tar.gz @@ -143,6 +143,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Daniel Novotny 5.03-6 - fix #510429 - file is confused by string "/* (if any) */" in C header and claims it "Lisp/Scheme program text" From jkeating at fedoraproject.org Fri Jul 24 22:44:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:44:47 +0000 (UTC) Subject: rpms/file-browser-applet/devel file-browser-applet.spec,1.9,1.10 Message-ID: <20090724224447.2A59511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/file-browser-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13334 Modified Files: file-browser-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: file-browser-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-browser-applet/devel/file-browser-applet.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- file-browser-applet.spec 9 May 2009 14:27:48 -0000 1.9 +++ file-browser-applet.spec 24 Jul 2009 22:44:47 -0000 1.10 @@ -1,6 +1,6 @@ Name: file-browser-applet Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File Browser Applet for the GNOME Panel Group: User Interface/Desktops License: GPLv2+ @@ -88,6 +88,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_sysconfdir}/gconf/schemas/file-browser-applet.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Deji Akingunola - 0.6.2-1 - Update to 0.6.2 From jkeating at fedoraproject.org Fri Jul 24 22:45:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:45:01 +0000 (UTC) Subject: rpms/file-roller/devel file-roller.spec,1.149,1.150 Message-ID: <20090724224501.1799511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/file-roller/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13855 Modified Files: file-roller.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: file-roller.spec =================================================================== RCS file: /cvs/pkgs/rpms/file-roller/devel/file-roller.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- file-roller.spec 14 Jul 2009 03:25:22 -0000 1.149 +++ file-roller.spec 24 Jul 2009 22:45:00 -0000 1.150 @@ -11,7 +11,7 @@ Summary: Tool for viewing and creating archives Name: file-roller Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Archiving URL: http://download.gnome.org/sources/file-roller/ @@ -128,6 +128,9 @@ fi %{_datadir}/icons/hicolor/scalable/apps/file-roller.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen 2.27.2-1 - Update to 2.27.2 From jkeating at fedoraproject.org Fri Jul 24 22:45:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:45:15 +0000 (UTC) Subject: rpms/filelight/devel filelight.spec,1.8,1.9 Message-ID: <20090724224515.861FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/filelight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14250 Modified Files: filelight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: filelight.spec =================================================================== RCS file: /cvs/pkgs/rpms/filelight/devel/filelight.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- filelight.spec 24 Feb 2009 19:26:04 -0000 1.8 +++ filelight.spec 24 Jul 2009 22:45:15 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Graphical disk usage statistics Name: filelight Version: 1.0 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.methylblue.com/filelight/ @@ -73,6 +73,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Neal Becker - 1.0-15 - use noreplace on config From jkeating at fedoraproject.org Fri Jul 24 22:45:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:45:29 +0000 (UTC) Subject: rpms/filesystem/devel filesystem.spec,1.58,1.59 Message-ID: <20090724224529.552F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14478 Modified Files: filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/filesystem/devel/filesystem.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- filesystem.spec 23 Jul 2009 14:02:52 -0000 1.58 +++ filesystem.spec 24 Jul 2009 22:45:29 -0000 1.59 @@ -1,7 +1,7 @@ Summary: The basic directory layout for a Linux system Name: filesystem Version: 2.4.25 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain URL: https://fedorahosted.org/filesystem Group: System Environment/Base @@ -150,6 +150,9 @@ rm -rf %{buildroot} /var/yp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 2.4.25-1 - Remove explicit /usr/lib/X11, everything uses %%_libdir now. From jkeating at fedoraproject.org Fri Jul 24 22:45:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:45:44 +0000 (UTC) Subject: rpms/filezilla/devel filezilla.spec,1.45,1.46 Message-ID: <20090724224544.3FA8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/filezilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14673 Modified Files: filezilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: filezilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/filezilla/devel/filezilla.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- filezilla.spec 6 Jul 2009 19:27:28 -0000 1.45 +++ filezilla.spec 24 Jul 2009 22:45:44 -0000 1.46 @@ -2,7 +2,7 @@ Name: filezilla Version: 3.2.6.1 -Release: 1%{?fz_rc:_%{?fz_rc}}%{?dist} +Release: 1%{?fz_rc:_%{?fz_rc}}%{?dist}.1 Summary: FileZilla FTP, FTPS and SFTP client Group: Applications/Internet @@ -119,6 +119,9 @@ fi || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.6.1-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 kwizart < kwizart at gmail.com > - 3.2.6-1 - Update to 3.2.6.1 From jkeating at fedoraproject.org Fri Jul 24 22:45:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:45:57 +0000 (UTC) Subject: rpms/fillets-ng/devel fillets-ng.spec,1.18,1.19 Message-ID: <20090724224557.F3F8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fillets-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14858 Modified Files: fillets-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fillets-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/fillets-ng/devel/fillets-ng.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- fillets-ng.spec 24 Feb 2009 17:05:14 -0000 1.18 +++ fillets-ng.spec 24 Jul 2009 22:45:57 -0000 1.19 @@ -1,7 +1,7 @@ Summary: Fish Fillets Next Generation, a puzzle game with 70 levels Name: fillets-ng Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://fillets.sourceforge.net/ @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:46:13 +0000 (UTC) Subject: rpms/fillets-ng-data/devel fillets-ng-data.spec,1.12,1.13 Message-ID: <20090724224613.3782711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fillets-ng-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15065 Modified Files: fillets-ng-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fillets-ng-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/fillets-ng-data/devel/fillets-ng-data.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fillets-ng-data.spec 31 Mar 2009 14:22:02 -0000 1.12 +++ fillets-ng-data.spec 24 Jul 2009 22:46:12 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Game data files for Fish Fillets Next Generation Name: fillets-ng-data Version: 0.8.1 -Release: 3 +Release: 4 # The GPLv2 is included and nothing indicates "any later version". Exceptions : # - images/menu/flags/ is Public Domain # - font/ is GPLv2+ (taken from "freefont") but we replace them anyway @@ -60,6 +60,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Tom "spot" Callaway - 0.8.1-3 - fix broken font requires From jkeating at fedoraproject.org Fri Jul 24 22:46:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:46:28 +0000 (UTC) Subject: rpms/findbugs/devel findbugs.spec,1.4,1.5 Message-ID: <20090724224628.5D3EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/findbugs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15263 Modified Files: findbugs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: findbugs.spec =================================================================== RCS file: /cvs/pkgs/rpms/findbugs/devel/findbugs.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- findbugs.spec 18 Mar 2009 03:34:12 -0000 1.4 +++ findbugs.spec 24 Jul 2009 22:46:28 -0000 1.5 @@ -5,7 +5,7 @@ Name: findbugs Version: 1.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Find bugs in Java code Group: Development/Languages @@ -182,6 +182,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/findbugs-tools* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Jerry James - 1.3.8-1 - Update to 1.3.8 From jkeating at fedoraproject.org Fri Jul 24 22:46:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:46:43 +0000 (UTC) Subject: rpms/findbugs-bcel/devel findbugs-bcel.spec,1.3,1.4 Message-ID: <20090724224643.AC65911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/findbugs-bcel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15435 Modified Files: findbugs-bcel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: findbugs-bcel.spec =================================================================== RCS file: /cvs/pkgs/rpms/findbugs-bcel/devel/findbugs-bcel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- findbugs-bcel.spec 18 Mar 2009 03:11:23 -0000 1.3 +++ findbugs-bcel.spec 24 Jul 2009 22:46:43 -0000 1.4 @@ -10,7 +10,7 @@ Name: findbugs-bcel Version: 5.2 -Release: %{findbugsver}%{?dist} +Release: %{findbugsver}%{?dist}.1 Summary: Byte Code Engineering Library with findbugs extensions Group: Development/Libraries/Java @@ -109,6 +109,9 @@ fi %{_javadocdir}/findbugs-bcel* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2-1.3.8.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Jerry James - 5.2-1.3.8 - Update to the findbugs 1.3.8 version of the BCEL patch - The BCEL patch now applies cleanly, so drop workaround code From jkeating at fedoraproject.org Fri Jul 24 22:46:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:46:58 +0000 (UTC) Subject: rpms/findbugs-contrib/devel findbugs-contrib.spec,1.2,1.3 Message-ID: <20090724224658.34D7F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/findbugs-contrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15603 Modified Files: findbugs-contrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: findbugs-contrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/findbugs-contrib/devel/findbugs-contrib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- findbugs-contrib.spec 6 Jun 2009 04:29:04 -0000 1.2 +++ findbugs-contrib.spec 24 Jul 2009 22:46:58 -0000 1.3 @@ -6,7 +6,7 @@ Name: findbugs-contrib Version: 3.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extra findbugs detectors Group: Development/Languages @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{eclipse_plugin_dir}/fb-contrib-%{version}.jar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Jerry James - 3.8.1-2 - Add eclipse-findbugs-contrib package as suggested by Alexander Kurtakov From robert at fedoraproject.org Fri Jul 24 22:47:12 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:47:12 +0000 (UTC) Subject: rpms/gkrellm-top/EL-5 .cvsignore, 1.3, 1.4 gkrellm-top.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724224712.DED4311C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15559/EL-5 Modified Files: .cvsignore gkrellm-top.spec sources Log Message: Upgrade to 2.2.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Feb 2008 00:53:44 -0000 1.3 +++ .cvsignore 24 Jul 2009 22:47:12 -0000 1.4 @@ -1 +1 @@ -gkrelltop_2.2.11.orig.tar.gz +gkrelltop_2.2.13.orig.tar.gz Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/EL-5/gkrellm-top.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gkrellm-top.spec 10 Feb 2008 00:53:44 -0000 1.2 +++ gkrellm-top.spec 24 Jul 2009 22:47:12 -0000 1.3 @@ -2,7 +2,7 @@ Summary: GKrellM plugin which shows 3 most CPU intensive processes Name: gkrellm-top -Version: 2.2.11 +Version: 2.2.13 Release: 1%{?dist} License: GPL+ Group: Applications/System @@ -40,6 +40,12 @@ rm -rf $RPM_BUILD_ROOT %{gkplugindir}/gkrelltopd.so %changelog +* Sat Jul 25 2009 Robert Scheck 2.2.13-1 +- Upgrade to 2.2.13 + +* Mon Feb 23 2009 Robert Scheck 2.2.11-2 +- Rebuild against gcc 4.4 and rpm 4.6 + * Sun Feb 10 2008 Robert Scheck 2.2.11-1 - Upgrade to 2.2.11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Feb 2008 00:53:44 -0000 1.3 +++ sources 24 Jul 2009 22:47:12 -0000 1.4 @@ -1 +1 @@ -42a3ecdf52272b59fa65e7c9dd821826 gkrelltop_2.2.11.orig.tar.gz +53994487dd5727348b9950b7f2896756 gkrelltop_2.2.13.orig.tar.gz From robert at fedoraproject.org Fri Jul 24 22:47:13 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:47:13 +0000 (UTC) Subject: rpms/gkrellm-top/F-11 .cvsignore, 1.3, 1.4 gkrellm-top.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090724224713.A8F1011C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15559/F-11 Modified Files: .cvsignore gkrellm-top.spec sources Log Message: Upgrade to 2.2.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Feb 2008 00:54:03 -0000 1.3 +++ .cvsignore 24 Jul 2009 22:47:13 -0000 1.4 @@ -1 +1 @@ -gkrelltop_2.2.11.orig.tar.gz +gkrelltop_2.2.13.orig.tar.gz Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-11/gkrellm-top.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gkrellm-top.spec 23 Feb 2009 20:48:54 -0000 1.3 +++ gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.4 @@ -2,8 +2,8 @@ Summary: GKrellM plugin which shows 3 most CPU intensive processes Name: gkrellm-top -Version: 2.2.11 -Release: 2%{?dist} +Version: 2.2.13 +Release: 1%{?dist} License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{gkplugindir}/gkrelltopd.so %changelog +* Sat Jul 25 2009 Robert Scheck 2.2.13-1 +- Upgrade to 2.2.13 + * Mon Feb 23 2009 Robert Scheck 2.2.11-2 - Rebuild against gcc 4.4 and rpm 4.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Feb 2008 00:54:03 -0000 1.3 +++ sources 24 Jul 2009 22:47:13 -0000 1.4 @@ -1 +1 @@ -42a3ecdf52272b59fa65e7c9dd821826 gkrelltop_2.2.11.orig.tar.gz +53994487dd5727348b9950b7f2896756 gkrelltop_2.2.13.orig.tar.gz From robert at fedoraproject.org Fri Jul 24 22:47:14 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:47:14 +0000 (UTC) Subject: rpms/gkrellm-top/devel .cvsignore, 1.3, 1.4 gkrellm-top.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090724224714.0DAFF11C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15559/devel Modified Files: .cvsignore gkrellm-top.spec sources Log Message: Upgrade to 2.2.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Feb 2008 00:54:03 -0000 1.3 +++ .cvsignore 24 Jul 2009 22:47:13 -0000 1.4 @@ -1 +1 @@ -gkrelltop_2.2.11.orig.tar.gz +gkrelltop_2.2.13.orig.tar.gz Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/devel/gkrellm-top.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gkrellm-top.spec 23 Feb 2009 20:48:54 -0000 1.3 +++ gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.4 @@ -2,8 +2,8 @@ Summary: GKrellM plugin which shows 3 most CPU intensive processes Name: gkrellm-top -Version: 2.2.11 -Release: 2%{?dist} +Version: 2.2.13 +Release: 1%{?dist} License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{gkplugindir}/gkrelltopd.so %changelog +* Sat Jul 25 2009 Robert Scheck 2.2.13-1 +- Upgrade to 2.2.13 + * Mon Feb 23 2009 Robert Scheck 2.2.11-2 - Rebuild against gcc 4.4 and rpm 4.6 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Feb 2008 00:54:03 -0000 1.3 +++ sources 24 Jul 2009 22:47:13 -0000 1.4 @@ -1 +1 @@ -42a3ecdf52272b59fa65e7c9dd821826 gkrelltop_2.2.11.orig.tar.gz +53994487dd5727348b9950b7f2896756 gkrelltop_2.2.13.orig.tar.gz From robert at fedoraproject.org Fri Jul 24 22:47:13 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 22:47:13 +0000 (UTC) Subject: rpms/gkrellm-top/F-10 .cvsignore, 1.3, 1.4 gkrellm-top.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090724224713.40A9511C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15559/F-10 Modified Files: .cvsignore gkrellm-top.spec sources Log Message: Upgrade to 2.2.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 10 Feb 2008 00:54:03 -0000 1.3 +++ .cvsignore 24 Jul 2009 22:47:12 -0000 1.4 @@ -1 +1 @@ -gkrelltop_2.2.11.orig.tar.gz +gkrelltop_2.2.13.orig.tar.gz Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-10/gkrellm-top.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gkrellm-top.spec 10 Feb 2008 00:54:03 -0000 1.2 +++ gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.3 @@ -2,7 +2,7 @@ Summary: GKrellM plugin which shows 3 most CPU intensive processes Name: gkrellm-top -Version: 2.2.11 +Version: 2.2.13 Release: 1%{?dist} License: GPL+ Group: Applications/System @@ -40,6 +40,12 @@ rm -rf $RPM_BUILD_ROOT %{gkplugindir}/gkrelltopd.so %changelog +* Sat Jul 25 2009 Robert Scheck 2.2.13-1 +- Upgrade to 2.2.13 + +* Mon Feb 23 2009 Robert Scheck 2.2.11-2 +- Rebuild against gcc 4.4 and rpm 4.6 + * Sun Feb 10 2008 Robert Scheck 2.2.11-1 - Upgrade to 2.2.11 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 10 Feb 2008 00:54:03 -0000 1.3 +++ sources 24 Jul 2009 22:47:13 -0000 1.4 @@ -1 +1 @@ -42a3ecdf52272b59fa65e7c9dd821826 gkrelltop_2.2.11.orig.tar.gz +53994487dd5727348b9950b7f2896756 gkrelltop_2.2.13.orig.tar.gz From jkeating at fedoraproject.org Fri Jul 24 22:47:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:47:14 +0000 (UTC) Subject: rpms/findutils/devel findutils.spec,1.62,1.63 Message-ID: <20090724224714.D1E0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/findutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15797 Modified Files: findutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: findutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/findutils/devel/findutils.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- findutils.spec 1 Jul 2009 12:03:32 -0000 1.62 +++ findutils.spec 24 Jul 2009 22:47:14 -0000 1.63 @@ -1,7 +1,7 @@ Summary: The GNU versions of find utilities (find and xargs) Name: findutils Version: 4.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv3+ Group: Applications/File @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/find-maint.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:4.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Vitezslav Crhonek - 1:4.4.2-1 - Update to findutils-4.4.2 From jkeating at fedoraproject.org Fri Jul 24 22:47:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:47:31 +0000 (UTC) Subject: rpms/finger/devel finger.spec,1.28,1.29 Message-ID: <20090724224731.A53E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/finger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16053 Modified Files: finger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: finger.spec =================================================================== RCS file: /cvs/pkgs/rpms/finger/devel/finger.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- finger.spec 24 Feb 2009 17:09:05 -0000 1.28 +++ finger.spec 24 Jul 2009 22:47:31 -0000 1.29 @@ -1,7 +1,7 @@ Summary: The finger client Name: finger Version: 0.17 -Release: 37%{?dist} +Release: 38%{?dist} License: BSD Group: Applications/Internet Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/bsd-finger-%{version}.tar.gz @@ -96,6 +96,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/fingerd.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.17-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:47:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:47:47 +0000 (UTC) Subject: rpms/fio/devel fio.spec,1.9,1.10 Message-ID: <20090724224747.7024F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16262 Modified Files: fio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fio.spec =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/fio.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fio.spec 11 Jul 2009 16:13:34 -0000 1.9 +++ fio.spec 24 Jul 2009 22:47:47 -0000 1.10 @@ -1,6 +1,6 @@ Name: fio Version: 1.31 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multithreaded IO generation tool Group: Applications/System @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.31-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Eric Sandeen 1.31-1 - Much newer upstream version From jkeating at fedoraproject.org Fri Jul 24 22:48:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:48:02 +0000 (UTC) Subject: rpms/fipscheck/devel fipscheck.spec,1.5,1.6 Message-ID: <20090724224802.3D50711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fipscheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16421 Modified Files: fipscheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fipscheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/fipscheck/devel/fipscheck.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fipscheck.spec 26 May 2009 20:50:15 -0000 1.5 +++ fipscheck.spec 24 Jul 2009 22:48:02 -0000 1.6 @@ -1,7 +1,7 @@ Summary: A library for integrity verification of FIPS validated modules Name: fipscheck Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Libraries # This is a Red Hat maintained package which is specific to @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libfipscheck.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Tomas Mraz - 1.2.0-1 - add lib subpackage to avoid multilib on the base package - add ability to compute hmacs on multiple files at once From jkeating at fedoraproject.org Fri Jul 24 22:48:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:48:42 +0000 (UTC) Subject: rpms/firecontrol/devel firecontrol.spec,1.4,1.5 Message-ID: <20090724224842.9E9C911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firecontrol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17019 Modified Files: firecontrol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firecontrol.spec =================================================================== RCS file: /cvs/pkgs/rpms/firecontrol/devel/firecontrol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firecontrol.spec 9 Jun 2009 19:00:16 -0000 1.4 +++ firecontrol.spec 24 Jul 2009 22:48:42 -0000 1.5 @@ -1,7 +1,7 @@ Summary: A console oriented tool for Linux to access a FireWire bus Name: firecontrol Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://firecontrol.sourceforge.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/firecontrol %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Jarod Wilson - ExcludeArch: s390 s390x, no libraw1394 there From jkeating at fedoraproject.org Fri Jul 24 22:49:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:49:16 +0000 (UTC) Subject: rpms/firmware-addon-dell/devel firmware-addon-dell.spec,1.20,1.21 Message-ID: <20090724224916.1D64D11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firmware-addon-dell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17558 Modified Files: firmware-addon-dell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firmware-addon-dell.spec =================================================================== RCS file: /cvs/pkgs/rpms/firmware-addon-dell/devel/firmware-addon-dell.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- firmware-addon-dell.spec 15 May 2009 03:17:08 -0000 1.20 +++ firmware-addon-dell.spec 24 Jul 2009 22:49:15 -0000 1.21 @@ -23,7 +23,7 @@ Name: %{release_name} Version: %{release_version} -Release: 4.3%{?releasesuffix}%{?dist} +Release: 5.3%{?releasesuffix}%{?dist} Summary: A firmware-tools plugin to handle BIOS/Firmware for Dell systems Group: Applications/System @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2-5.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Matt Domsch - 2.1.2-4.3 - rebase to latest upstream From jkeating at fedoraproject.org Fri Jul 24 22:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:48:20 +0000 (UTC) Subject: rpms/firebird/devel firebird.spec,1.4,1.5 Message-ID: <20090724224820.C550811C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firebird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16676 Modified Files: firebird.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/firebird/devel/firebird.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firebird.spec 11 Jul 2009 16:02:06 -0000 1.4 +++ firebird.spec 24 Jul 2009 22:48:20 -0000 1.5 @@ -6,7 +6,7 @@ Summary: SQL relational database management system Name: firebird Version: 2.1.2.18118.0 -Release: 9%{?dist} +Release: 10%{?dist} Group: Applications/Databases License: Interbase @@ -509,6 +509,9 @@ rm -Rf %{_var}/run/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2.18118.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Philippe Makowski 2.1.2.18118.0-9 - change xinetd script (rh #506528) - add missing library (and header files) for build php4-interbase module (rh #506728) From jkeating at fedoraproject.org Fri Jul 24 22:48:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:48:59 +0000 (UTC) Subject: rpms/firewalk/devel firewalk.spec,1.4,1.5 Message-ID: <20090724224859.9866211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firewalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17303 Modified Files: firewalk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firewalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/firewalk/devel/firewalk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- firewalk.spec 18 Mar 2009 00:32:01 -0000 1.4 +++ firewalk.spec 24 Jul 2009 22:48:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: firewalk Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Active reconnaissance network security tool Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 18 2009 Robert Scheck - 5.0-4 - Solve the x86_64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Fri Jul 24 22:49:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:49:31 +0000 (UTC) Subject: rpms/firmware-tools/devel firmware-tools.spec,1.12,1.13 Message-ID: <20090724224931.88F8C11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firmware-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17719 Modified Files: firmware-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firmware-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/firmware-tools/devel/firmware-tools.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- firmware-tools.spec 15 May 2009 02:14:19 -0000 1.12 +++ firmware-tools.spec 24 Jul 2009 22:49:31 -0000 1.13 @@ -12,7 +12,7 @@ Name: firmware-tools Version: %{release_version} -Release: 1.1%{?releasesuffix}%{?dist} +Release: 2.1%{?releasesuffix}%{?dist} Summary: Scripts and tools to manage firmware and BIOS updates Group: Applications/System @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.5-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Matt Domsch - 2.1.5-1.1 - rebase to upstream release From jkeating at fedoraproject.org Fri Jul 24 22:49:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:49:46 +0000 (UTC) Subject: rpms/firstaidkit/devel firstaidkit.spec,1.26,1.27 Message-ID: <20090724224946.8C5EB11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firstaidkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17899 Modified Files: firstaidkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firstaidkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/firstaidkit/devel/firstaidkit.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- firstaidkit.spec 17 Jul 2009 13:11:15 -0000 1.26 +++ firstaidkit.spec 24 Jul 2009 22:49:46 -0000 1.27 @@ -4,7 +4,7 @@ Name: firstaidkit Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: System Rescue Tool Group: Applications/System @@ -232,6 +232,9 @@ desktop-file-install --vendor="fedora" - #%{_libdir}/firstaidkit/plugins/rpm/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Martin Sivak - 0.2.3-4 - Simple enhancement to the API (inreplyto) From jkeating at fedoraproject.org Fri Jul 24 22:50:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:50:01 +0000 (UTC) Subject: rpms/firstboot/devel firstboot.spec,1.133,1.134 Message-ID: <20090724225001.E50D711C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/firstboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18123 Modified Files: firstboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: firstboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/firstboot/devel/firstboot.spec,v retrieving revision 1.133 retrieving revision 1.134 diff -u -p -r1.133 -r1.134 --- firstboot.spec 24 Feb 2009 17:18:29 -0000 1.133 +++ firstboot.spec 24 Jul 2009 22:50:01 -0000 1.134 @@ -4,7 +4,7 @@ Summary: Initial system configuration ut Name: firstboot URL: http://fedoraproject.org/wiki/FirstBoot Version: 1.105 -Release: 2%{?dist} +Release: 3%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -71,6 +71,9 @@ fi %{_datadir}/firstboot/themes/default/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.105-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.105-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jussilehtola at fedoraproject.org Fri Jul 24 22:50:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:50:18 +0000 (UTC) Subject: rpms/xine-ui/F-10 xine-ui.spec,1.4,1.5 Message-ID: <20090724225018.3C85711C04E6@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18206/F-10 Modified Files: xine-ui.spec Log Message: Copy working EL-5 spec file back to other branches. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-10/xine-ui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xine-ui.spec 24 Jul 2009 21:13:36 -0000 1.4 +++ xine-ui.spec 24 Jul 2009 22:50:18 -0000 1.5 @@ -65,11 +65,14 @@ BuildRequires: libXt-devel BuildRequires: libXtst-devel BuildRequires: libXv-devel BuildRequires: libXxf86vm-devel -BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 BuildRequires: xorg-x11-proto-devel -Conflicts: xine-skins <= 1.0 + +# Lirc-devel is not available on EPEL-5 +%if 0%{?rhel} == 0 +BuildRequires: lirc-devel +%endif # For dir ownership Requires: hicolor-icon-theme @@ -156,7 +159,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" %find_lang 'xi\(ne-ui\|tk\)' -desktop-file-install --remove-category="Application" \ +desktop-file-install --remove-category="Application" --vendor="" \ --add-category="Audio" --add-category="Video" \ --dir %{buildroot}%{_datadir}/applications misc/desktops/xine.desktop @@ -228,6 +231,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 - Move xine_splash.png to main package from -skins. +- Fix EPEL build. * Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 - Fix build in rawhide. From jussilehtola at fedoraproject.org Fri Jul 24 22:50:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:50:18 +0000 (UTC) Subject: rpms/xine-ui/EL-5 xine-ui.spec,1.5,1.6 Message-ID: <20090724225018.209F711C049E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18206/EL-5 Modified Files: xine-ui.spec Log Message: Copy working EL-5 spec file back to other branches. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/EL-5/xine-ui.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xine-ui.spec 24 Jul 2009 22:22:49 -0000 1.5 +++ xine-ui.spec 24 Jul 2009 22:50:17 -0000 1.6 @@ -231,6 +231,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 - Move xine_splash.png to main package from -skins. +- Fix EPEL build. * Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 - Fix build in rawhide. From jussilehtola at fedoraproject.org Fri Jul 24 22:50:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:50:18 +0000 (UTC) Subject: rpms/xine-ui/devel xine-ui.spec,1.7,1.8 Message-ID: <20090724225018.CB10711C049E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18206/devel Modified Files: xine-ui.spec Log Message: Copy working EL-5 spec file back to other branches. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/devel/xine-ui.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xine-ui.spec 24 Jul 2009 21:13:37 -0000 1.7 +++ xine-ui.spec 24 Jul 2009 22:50:18 -0000 1.8 @@ -65,11 +65,14 @@ BuildRequires: libXt-devel BuildRequires: libXtst-devel BuildRequires: libXv-devel BuildRequires: libXxf86vm-devel -BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 BuildRequires: xorg-x11-proto-devel -Conflicts: xine-skins <= 1.0 + +# Lirc-devel is not available on EPEL-5 +%if 0%{?rhel} == 0 +BuildRequires: lirc-devel +%endif # For dir ownership Requires: hicolor-icon-theme @@ -156,7 +159,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" %find_lang 'xi\(ne-ui\|tk\)' -desktop-file-install --remove-category="Application" \ +desktop-file-install --remove-category="Application" --vendor="" \ --add-category="Audio" --add-category="Video" \ --dir %{buildroot}%{_datadir}/applications misc/desktops/xine.desktop @@ -228,6 +231,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 - Move xine_splash.png to main package from -skins. +- Fix EPEL build. * Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 - Fix build in rawhide. From jussilehtola at fedoraproject.org Fri Jul 24 22:50:18 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 24 Jul 2009 22:50:18 +0000 (UTC) Subject: rpms/xine-ui/F-11 xine-ui.spec,1.4,1.5 Message-ID: <20090724225018.9B68F11C049E@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/xine-ui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18206/F-11 Modified Files: xine-ui.spec Log Message: Copy working EL-5 spec file back to other branches. Index: xine-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-ui/F-11/xine-ui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xine-ui.spec 24 Jul 2009 21:13:37 -0000 1.4 +++ xine-ui.spec 24 Jul 2009 22:50:18 -0000 1.5 @@ -65,11 +65,14 @@ BuildRequires: libXt-devel BuildRequires: libXtst-devel BuildRequires: libXv-devel BuildRequires: libXxf86vm-devel -BuildRequires: lirc-devel BuildRequires: readline-devel BuildRequires: xine-lib-devel >= 1.1.0 BuildRequires: xorg-x11-proto-devel -Conflicts: xine-skins <= 1.0 + +# Lirc-devel is not available on EPEL-5 +%if 0%{?rhel} == 0 +BuildRequires: lirc-devel +%endif # For dir ownership Requires: hicolor-icon-theme @@ -156,7 +159,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" %find_lang 'xi\(ne-ui\|tk\)' -desktop-file-install --remove-category="Application" \ +desktop-file-install --remove-category="Application" --vendor="" \ --add-category="Audio" --add-category="Video" \ --dir %{buildroot}%{_datadir}/applications misc/desktops/xine.desktop @@ -228,6 +231,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sat Jul 25 2009 Jussi Lehtola - 0.99.5-15 - Move xine_splash.png to main package from -skins. +- Fix EPEL build. * Thu Jul 23 2009 Jussi Lehtola - 0.99.5-14 - Fix build in rawhide. From jkeating at fedoraproject.org Fri Jul 24 22:50:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:50:22 +0000 (UTC) Subject: rpms/fish/devel fish.spec,1.34,1.35 Message-ID: <20090724225022.E6BBC11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18431 Modified Files: fish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fish.spec =================================================================== RCS file: /cvs/pkgs/rpms/fish/devel/fish.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- fish.spec 3 Jul 2009 13:33:52 -0000 1.34 +++ fish.spec 24 Jul 2009 22:50:22 -0000 1.35 @@ -1,7 +1,7 @@ Summary: A friendly interactive shell Name: fish Version: 1.23.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: System Environment/Shells URL: http://fishshell.org/ @@ -97,6 +97,9 @@ fi %{_datadir}/fish/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.23.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Lorenzo Villani - 1.23.1-3 - Pass --without-xsel to configure, if you want xsel install its package instead - Fix file list From jkeating at fedoraproject.org Fri Jul 24 22:50:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:50:39 +0000 (UTC) Subject: rpms/fityk/devel fityk.spec,1.7,1.8 Message-ID: <20090724225039.E87AA11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fityk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18605 Modified Files: fityk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fityk.spec =================================================================== RCS file: /cvs/pkgs/rpms/fityk/devel/fityk.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fityk.spec 24 Feb 2009 17:20:27 -0000 1.7 +++ fityk.spec 24 Jul 2009 22:50:39 -0000 1.8 @@ -1,7 +1,7 @@ Name: fityk Summary: Non-linear curve fitting and data analysis Version: 0.8.1 -Release: 15%{?dist} +Release: 16%{?dist} Source0: http://downloads.sourceforge.net/fityk/%{name}-%{version}.tar.bz2 URL: http://fityk.sourceforge.net/ @@ -107,6 +107,9 @@ update-desktop-database &> /dev/null || %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:50:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:50:55 +0000 (UTC) Subject: rpms/flac/devel flac.spec,1.38,1.39 Message-ID: <20090724225055.3B4E911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18896 Modified Files: flac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flac.spec =================================================================== RCS file: /cvs/pkgs/rpms/flac/devel/flac.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- flac.spec 24 Feb 2009 17:21:26 -0000 1.38 +++ flac.spec 24 Jul 2009 22:50:55 -0000 1.39 @@ -1,7 +1,7 @@ Summary: An encoder/decoder for the Free Lossless Audio Codec Name: flac Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD and GPLv2+ Group: Applications/Multimedia Source: http://prdownloads.sourceforge.net/flac/flac-%{version}.tar.gz @@ -91,6 +91,9 @@ rm -rf %{buildroot} %{_datadir}/aclocal/*.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:51:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:51:09 +0000 (UTC) Subject: rpms/flac123/devel flac123.spec,1.13,1.14 Message-ID: <20090724225109.0D58911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flac123/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19075 Modified Files: flac123.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flac123.spec =================================================================== RCS file: /cvs/pkgs/rpms/flac123/devel/flac123.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- flac123.spec 24 Feb 2009 17:22:22 -0000 1.13 +++ flac123.spec 24 Jul 2009 22:51:08 -0000 1.14 @@ -1,6 +1,6 @@ Name: flac123 Version: 0.0.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Command-line program for playing FLAC audio files Group: Applications/Multimedia @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:51:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:51:24 +0000 (UTC) Subject: rpms/flagpoll/devel flagpoll.spec,1.4,1.5 Message-ID: <20090724225124.3296F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flagpoll/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19248 Modified Files: flagpoll.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flagpoll.spec =================================================================== RCS file: /cvs/pkgs/rpms/flagpoll/devel/flagpoll.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- flagpoll.spec 24 Feb 2009 17:23:18 -0000 1.4 +++ flagpoll.spec 24 Jul 2009 22:51:23 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Developers tool for storing compilation information Name: flagpoll Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Tools License: GPLv2+ URL: https://realityforge.vrsource.org/view/FlagPoll/WebHome From jkeating at fedoraproject.org Fri Jul 24 22:51:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:51:38 +0000 (UTC) Subject: rpms/flam3/devel flam3.spec,1.14,1.15 Message-ID: <20090724225138.B203911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flam3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19445 Modified Files: flam3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flam3.spec =================================================================== RCS file: /cvs/pkgs/rpms/flam3/devel/flam3.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- flam3.spec 18 Apr 2009 19:15:43 -0000 1.14 +++ flam3.spec 24 Jul 2009 22:51:38 -0000 1.15 @@ -1,6 +1,6 @@ Name: flam3 Version: 2.7.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Programs to generate and render cosmic recursive fractal flames Group: Applications/Multimedia @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Ian Weller - 2.7.18-1 - Upstream update to 2.7.18: Added fuzz testing with zzuf to the regression tests. 'Strip' From jkeating at fedoraproject.org Fri Jul 24 22:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:51:52 +0000 (UTC) Subject: rpms/flamerobin/devel flamerobin.spec,1.1,1.2 Message-ID: <20090724225152.656DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flamerobin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19609 Modified Files: flamerobin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flamerobin.spec =================================================================== RCS file: /cvs/pkgs/rpms/flamerobin/devel/flamerobin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- flamerobin.spec 11 Jun 2009 06:36:24 -0000 1.1 +++ flamerobin.spec 24 Jul 2009 22:51:52 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Graphical client for Firebird Name: flamerobin Version: 0.9.2 -Release: 0%{?dist} +Release: 1%{?dist} License: BSD Group: Applications/Databases Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.gz @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.2-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Philippe Makowski 0.9.2-0 - First Fedora build From jkeating at fedoraproject.org Fri Jul 24 22:52:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:52:06 +0000 (UTC) Subject: rpms/flashrom/devel flashrom.spec,1.19,1.20 Message-ID: <20090724225206.4425311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flashrom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19776 Modified Files: flashrom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flashrom.spec =================================================================== RCS file: /cvs/pkgs/rpms/flashrom/devel/flashrom.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- flashrom.spec 5 May 2009 06:06:21 -0000 1.19 +++ flashrom.spec 24 Jul 2009 22:52:06 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Simple program for reading/writing BIOS chips content Name: flashrom Version: 0.9.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/System URL: http://coreboot.org/flashrom @@ -41,6 +41,9 @@ install -D -p -m644 %{name}.8 $RPM_BUILD %{_mandir}/man8/%{name}.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Peter Lemenkov 0.9.0-1 - Ver. 0.9.0 From jkeating at fedoraproject.org Fri Jul 24 22:52:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:52:20 +0000 (UTC) Subject: rpms/flasm/devel flasm.spec,1.10,1.11 Message-ID: <20090724225220.922CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19948 Modified Files: flasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/flasm/devel/flasm.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- flasm.spec 24 Feb 2009 17:26:05 -0000 1.10 +++ flasm.spec 24 Jul 2009 22:52:20 -0000 1.11 @@ -1,6 +1,6 @@ Name: flasm Version: 1.62 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Flash bytecode assembler disassembler Group: Development/Tools @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.62-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.62-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:52:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:52:35 +0000 (UTC) Subject: rpms/flawfinder/devel flawfinder.spec,1.2,1.3 Message-ID: <20090724225235.981EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flawfinder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20116 Modified Files: flawfinder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flawfinder.spec =================================================================== RCS file: /cvs/pkgs/rpms/flawfinder/devel/flawfinder.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- flawfinder.spec 24 Feb 2009 17:27:04 -0000 1.2 +++ flawfinder.spec 24 Jul 2009 22:52:35 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Examines C/C++ source code for security flaws Name: flawfinder Version: 1.27 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Development/Tools Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/flawfinder.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.27-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.27-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:52:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:52:51 +0000 (UTC) Subject: rpms/fldigi/devel fldigi.spec,1.12,1.13 Message-ID: <20090724225251.629EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fldigi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20299 Modified Files: fldigi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fldigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fldigi/devel/fldigi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fldigi.spec 16 Jul 2009 06:59:52 -0000 1.12 +++ fldigi.spec 24 Jul 2009 22:52:51 -0000 1.13 @@ -1,6 +1,6 @@ Name: fldigi Version: 3.11.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Digital modem program for Linux Group: Applications/Communications @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.11.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Randall J. Berry 3.11.6-1 - Upstream upgrade to 3.11.6 - Remove fldigi-gcc44.patch (applied upstream) From jkeating at fedoraproject.org Fri Jul 24 22:53:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:53:10 +0000 (UTC) Subject: rpms/flex/devel flex.spec,1.58,1.59 Message-ID: <20090724225310.913DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20479 Modified Files: flex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flex.spec =================================================================== RCS file: /cvs/pkgs/rpms/flex/devel/flex.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- flex.spec 20 Apr 2009 14:59:18 -0000 1.58 +++ flex.spec 24 Jul 2009 22:53:10 -0000 1.59 @@ -1,7 +1,7 @@ Summary: A tool for creating scanners (text pattern recognizers) Name: flex Version: 2.5.35 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Development/Tools URL: http://flex.sourceforge.net/ @@ -80,6 +80,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_infodir}/flex.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.35-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Debarshi Ray - 2.5.35-5 - Resolves: #496548. From jkeating at fedoraproject.org Fri Jul 24 22:53:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:53:25 +0000 (UTC) Subject: rpms/flexdock/devel flexdock.spec,1.2,1.3 Message-ID: <20090724225325.A166011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flexdock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20672 Modified Files: flexdock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flexdock.spec =================================================================== RCS file: /cvs/pkgs/rpms/flexdock/devel/flexdock.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- flexdock.spec 27 Mar 2009 15:04:09 -0000 1.2 +++ flexdock.spec 24 Jul 2009 22:53:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: flexdock Version: 0.5.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Docking framework for Java Swing GUI apps Group: Development/Libraries @@ -160,6 +160,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 0.5.1-13 - Version bump due to tag mess * Thu Mar 26 2009 0.5.1-12 From jkeating at fedoraproject.org Fri Jul 24 22:53:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:53:40 +0000 (UTC) Subject: rpms/flickcurl/devel flickcurl.spec,1.1,1.2 Message-ID: <20090724225340.5949E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flickcurl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20836 Modified Files: flickcurl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flickcurl.spec =================================================================== RCS file: /cvs/pkgs/rpms/flickcurl/devel/flickcurl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- flickcurl.spec 8 Jun 2009 11:05:08 -0000 1.1 +++ flickcurl.spec 24 Jul 2009 22:53:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: flickcurl Version: 1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C library for the Flickr API Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}-config.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Rakesh Pandit 1.10-3 - Added pkgconfig as devel sub package BR - Fixed %%files folder *gtk-doc/html ownership From jkeating at fedoraproject.org Fri Jul 24 22:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:53:55 +0000 (UTC) Subject: rpms/flickrnet/devel flickrnet.spec,1.5,1.6 Message-ID: <20090724225355.7213411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flickrnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21001 Modified Files: flickrnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flickrnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/flickrnet/devel/flickrnet.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- flickrnet.spec 1 Jul 2009 17:39:32 -0000 1.5 +++ flickrnet.spec 24 Jul 2009 22:53:55 -0000 1.6 @@ -2,7 +2,7 @@ Name: flickrnet Version: 2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: .NET library to interact with the Flickr API Group: Development/Libraries License: LGPLv2 @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Paul Lange - 2.2-1 - Update to upstream release 2.2. From jkeating at fedoraproject.org Fri Jul 24 22:54:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:54:11 +0000 (UTC) Subject: rpms/flight-of-the-amazon-queen/devel flight-of-the-amazon-queen.spec, 1.3, 1.4 Message-ID: <20090724225411.768DC11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flight-of-the-amazon-queen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21197 Modified Files: flight-of-the-amazon-queen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flight-of-the-amazon-queen.spec =================================================================== RCS file: /cvs/pkgs/rpms/flight-of-the-amazon-queen/devel/flight-of-the-amazon-queen.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- flight-of-the-amazon-queen.spec 24 Feb 2009 17:29:52 -0000 1.3 +++ flight-of-the-amazon-queen.spec 24 Jul 2009 22:54:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: flight-of-the-amazon-queen Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Flight of the Amazon Queen - Adventure Game Group: Amusements/Games # For further discussion on distribution rights see: @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:54:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:54:27 +0000 (UTC) Subject: rpms/flight-of-the-amazon-queen-cd/devel flight-of-the-amazon-queen-cd.spec, 1.3, 1.4 Message-ID: <20090724225427.523CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flight-of-the-amazon-queen-cd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21388 Modified Files: flight-of-the-amazon-queen-cd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flight-of-the-amazon-queen-cd.spec =================================================================== RCS file: /cvs/pkgs/rpms/flight-of-the-amazon-queen-cd/devel/flight-of-the-amazon-queen-cd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- flight-of-the-amazon-queen-cd.spec 24 Feb 2009 17:30:46 -0000 1.3 +++ flight-of-the-amazon-queen-cd.spec 24 Jul 2009 22:54:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: flight-of-the-amazon-queen-cd Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Flight of the Amazon Queen - Adventure Game - CD version Group: Amusements/Games # For further discussion on distribution rights see: @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:54:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:54:42 +0000 (UTC) Subject: rpms/flim/devel flim.spec,1.6,1.7 Message-ID: <20090724225442.852F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21572 Modified Files: flim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flim.spec =================================================================== RCS file: /cvs/pkgs/rpms/flim/devel/flim.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- flim.spec 24 Feb 2009 17:31:43 -0000 1.6 +++ flim.spec 24 Jul 2009 22:54:42 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Basic library for handling email messages for Emacs Name: flim Version: 1.14.8 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Editors URL: http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/elisp/FLIM/ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.14.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.14.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:54:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:54:57 +0000 (UTC) Subject: rpms/flint/devel flint.spec,1.1,1.2 Message-ID: <20090724225457.84A4911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21753 Modified Files: flint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flint.spec =================================================================== RCS file: /cvs/pkgs/rpms/flint/devel/flint.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- flint.spec 10 Mar 2009 21:19:45 -0000 1.1 +++ flint.spec 24 Jul 2009 22:54:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: flint Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast Library for Number Theory Group: Applications/Engineering License: GPLv2+ @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Conrad Meyer - 1.2.0-1 - Bump to 1.2.0. From jkeating at fedoraproject.org Fri Jul 24 22:55:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:55:12 +0000 (UTC) Subject: rpms/flite/devel flite.spec,1.6,1.7 Message-ID: <20090724225512.8253811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21944 Modified Files: flite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flite.spec =================================================================== RCS file: /cvs/pkgs/rpms/flite/devel/flite.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- flite.spec 21 Mar 2009 16:30:56 -0000 1.6 +++ flite.spec 24 Jul 2009 22:55:12 -0000 1.7 @@ -1,6 +1,6 @@ Name: flite Version: 1.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Small, fast speech synthesis engine (text-to-speech) Group: Applications/Multimedia @@ -94,6 +94,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Robert Scheck - 1.3-13 - Removed moving of non-existing documentation flite directory From jkeating at fedoraproject.org Fri Jul 24 22:55:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:55:27 +0000 (UTC) Subject: rpms/flobopuyo/devel flobopuyo.spec,1.2,1.3 Message-ID: <20090724225527.9794911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flobopuyo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22131 Modified Files: flobopuyo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flobopuyo.spec =================================================================== RCS file: /cvs/pkgs/rpms/flobopuyo/devel/flobopuyo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- flobopuyo.spec 24 Feb 2009 17:33:37 -0000 1.2 +++ flobopuyo.spec 24 Jul 2009 22:55:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: flobopuyo Version: 0.20 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 2-player falling bubbles game Group: Amusements/Games @@ -97,6 +97,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:55:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:55:42 +0000 (UTC) Subject: rpms/florence/devel florence.spec,1.9,1.10 Message-ID: <20090724225542.B380E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/florence/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22319 Modified Files: florence.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: florence.spec =================================================================== RCS file: /cvs/pkgs/rpms/florence/devel/florence.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- florence.spec 17 Jul 2009 20:38:30 -0000 1.9 +++ florence.spec 24 Jul 2009 22:55:42 -0000 1.10 @@ -1,6 +1,6 @@ Name: florence Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extensible scalable on-screen virtual keyboard for GNOME Group: User Interface/X Hardware Support @@ -126,6 +126,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Simon Wesp - 0.4.2-1 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 22:55:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:55:57 +0000 (UTC) Subject: rpms/flow-tools/devel flow-tools.spec,1.28,1.29 Message-ID: <20090724225557.68CCD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flow-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22489 Modified Files: flow-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flow-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/flow-tools/devel/flow-tools.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- flow-tools.spec 24 Feb 2009 17:34:36 -0000 1.28 +++ flow-tools.spec 24 Jul 2009 22:55:57 -0000 1.29 @@ -8,7 +8,7 @@ Version: 0.68.4.1 Name: flow-tools Summary: Tool set for working with NetFlow data -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/System License: BSD URL: http://code.google.com/p/%{name}/ @@ -218,6 +218,9 @@ fi %doc docs/*.html ChangeLog.old TODO INSTALL SECURITY %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.68.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.68.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:56:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:56:13 +0000 (UTC) Subject: rpms/flpsed/devel flpsed.spec,1.3,1.4 Message-ID: <20090724225613.8C3D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flpsed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22719 Modified Files: flpsed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flpsed.spec =================================================================== RCS file: /cvs/pkgs/rpms/flpsed/devel/flpsed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- flpsed.spec 24 Feb 2009 17:35:29 -0000 1.3 +++ flpsed.spec 24 Jul 2009 22:56:13 -0000 1.4 @@ -1,6 +1,6 @@ Name: flpsed Version: 0.5.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: WYSIWYG pseudo PostScript editor Group: Applications/Editors @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:56:29 +0000 (UTC) Subject: rpms/fltk/devel fltk.spec,1.42,1.43 Message-ID: <20090724225629.9A21B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22904 Modified Files: fltk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fltk.spec =================================================================== RCS file: /cvs/pkgs/rpms/fltk/devel/fltk.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- fltk.spec 28 Jun 2009 15:50:09 -0000 1.42 +++ fltk.spec 24 Jul 2009 22:56:29 -0000 1.43 @@ -4,7 +4,7 @@ Summary: C++ user interface toolkit Name: fltk Version: 1.1.9 -Release: 5%{?dist} +Release: 6%{?dist} # see COPYING (or http://www.fltk.org/COPYING.php ) for exceptions details License: LGPLv2+ with exceptions @@ -215,6 +215,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Rex Dieter - 1.1.9-5 - fltk-fluid duplicate .desktop file (#508553) - optimize scriptlets From jkeating at fedoraproject.org Fri Jul 24 22:56:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:56:44 +0000 (UTC) Subject: rpms/fluid-soundfont/devel fluid-soundfont.spec,1.2,1.3 Message-ID: <20090724225644.6CC7311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fluid-soundfont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23089 Modified Files: fluid-soundfont.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fluid-soundfont.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluid-soundfont/devel/fluid-soundfont.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fluid-soundfont.spec 26 Mar 2009 20:21:32 -0000 1.2 +++ fluid-soundfont.spec 24 Jul 2009 22:56:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: fluid-soundfont Version: 3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Pro-quality GM/GS soundfont Group: Applications/Multimedia License: MIT @@ -145,6 +145,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Orcan Ogetbil 3.1-3 - Add real (non-virtual) Obsoletes: PersonalCopy-Lite-patches < 5 From jkeating at fedoraproject.org Fri Jul 24 22:56:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:56:59 +0000 (UTC) Subject: rpms/fluidsynth/devel fluidsynth.spec,1.12,1.13 Message-ID: <20090724225659.793EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fluidsynth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23311 Modified Files: fluidsynth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fluidsynth.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluidsynth/devel/fluidsynth.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fluidsynth.spec 17 Jul 2009 08:44:31 -0000 1.12 +++ fluidsynth.spec 24 Jul 2009 22:56:59 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Real-time software synthesizer Name: fluidsynth Version: 1.0.9 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.fluidsynth.org/ Source0: http://download.savannah.gnu.org/releases/fluid/fluidsynth-%{version}.tar.gz License: LGPLv2+ @@ -113,6 +113,9 @@ find $RPM_BUILD_ROOT -name \*.la | xargs %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Orcan Ogetbil - 1.0.9-2 - Disable portaudio support. It somehow messes up jack. From jkeating at fedoraproject.org Fri Jul 24 22:57:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:57:14 +0000 (UTC) Subject: rpms/fluidsynth-dssi/devel fluidsynth-dssi.spec,1.9,1.10 Message-ID: <20090724225714.144A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fluidsynth-dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23507 Modified Files: fluidsynth-dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fluidsynth-dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluidsynth-dssi/devel/fluidsynth-dssi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fluidsynth-dssi.spec 30 May 2009 04:50:33 -0000 1.9 +++ fluidsynth-dssi.spec 24 Jul 2009 22:57:13 -0000 1.10 @@ -1,7 +1,7 @@ Summary: DSSI implementation of Fluidsynth Name: fluidsynth-dssi Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://dssi.sourceforge.net/download.html#FluidSynth-DSSI @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/dssi/fluidsynth-dssi* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Orcan Ogetbil - 1.0.0-1 - Update to 1.0.0 From jkeating at fedoraproject.org Fri Jul 24 22:57:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:57:29 +0000 (UTC) Subject: rpms/flumotion/devel flumotion.spec,1.18,1.19 Message-ID: <20090724225729.229A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/flumotion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23704 Modified Files: flumotion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: flumotion.spec =================================================================== RCS file: /cvs/pkgs/rpms/flumotion/devel/flumotion.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- flumotion.spec 24 Feb 2009 17:39:07 -0000 1.18 +++ flumotion.spec 24 Jul 2009 22:57:28 -0000 1.19 @@ -6,7 +6,7 @@ Name: flumotion Version: 0.4.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Streaming Server based on GStreamer and Twisted Group: Applications/Internet @@ -251,6 +251,9 @@ fi %{_sysconfdir}/rc.d/init.d/flumotion %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:57:45 +0000 (UTC) Subject: rpms/fluxbox/devel fluxbox.spec,1.33,1.34 Message-ID: <20090724225745.2800411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fluxbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23895 Modified Files: fluxbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fluxbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluxbox/devel/fluxbox.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- fluxbox.spec 8 Jul 2009 19:36:41 -0000 1.33 +++ fluxbox.spec 24 Jul 2009 22:57:44 -0000 1.34 @@ -1,6 +1,6 @@ Name: fluxbox Version: 1.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Window Manager based on Blackbox @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/fluxbox-pulseaudio %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Andreas Bierfert - 1.1.1-3 - make -pulseaudio package noarch From jkeating at fedoraproject.org Fri Jul 24 22:57:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:57:59 +0000 (UTC) Subject: rpms/fluxconf/devel fluxconf.spec,1.14,1.15 Message-ID: <20090724225759.1A1B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fluxconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24077 Modified Files: fluxconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fluxconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/fluxconf/devel/fluxconf.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fluxconf.spec 24 Feb 2009 17:42:00 -0000 1.14 +++ fluxconf.spec 24 Jul 2009 22:57:58 -0000 1.15 @@ -1,6 +1,6 @@ Name: fluxconf Version: 0.9.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Configuration utility for fluxbox @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %lang(fr) %{_prefix}/share/locale/fr/LC_MESSAGES/%{name}.mo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:58:13 +0000 (UTC) Subject: rpms/fmio/devel fmio.spec,1.6,1.7 Message-ID: <20090724225813.912B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fmio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24249 Modified Files: fmio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fmio.spec =================================================================== RCS file: /cvs/pkgs/rpms/fmio/devel/fmio.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fmio.spec 24 Feb 2009 17:43:47 -0000 1.6 +++ fmio.spec 24 Jul 2009 22:58:13 -0000 1.7 @@ -1,7 +1,7 @@ Summary: FM radio card manipulation utility Name: fmio Version: 2.0.8 -Release: 12%{?dist} +Release: 13%{?dist} License: BSD Group: Applications/Multimedia URL: http://jumbo.narod.ru/fmio.html @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/wmfmiorc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:58:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:58:29 +0000 (UTC) Subject: rpms/fmt-ptrn/devel fmt-ptrn.spec,1.12,1.13 Message-ID: <20090724225829.57FE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fmt-ptrn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24515 Modified Files: fmt-ptrn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fmt-ptrn.spec =================================================================== RCS file: /cvs/pkgs/rpms/fmt-ptrn/devel/fmt-ptrn.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fmt-ptrn.spec 26 Apr 2009 03:02:36 -0000 1.12 +++ fmt-ptrn.spec 24 Jul 2009 22:58:29 -0000 1.13 @@ -1,6 +1,6 @@ Name: fmt-ptrn Version: 1.3.20 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Source: http://www.flyn.org/projects/%name/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 W. Michael Petullo - 1.3.20-3 - Fix ldconfig post for java package. From jkeating at fedoraproject.org Fri Jul 24 22:58:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:58:43 +0000 (UTC) Subject: rpms/fmtools/devel fmtools.spec,1.4,1.5 Message-ID: <20090724225843.7B8E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fmtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24687 Modified Files: fmtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fmtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/fmtools/devel/fmtools.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fmtools.spec 24 Feb 2009 17:45:45 -0000 1.4 +++ fmtools.spec 24 Jul 2009 22:58:43 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Simple Video for Linux radio card programs Name: fmtools Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.stanford.edu/~blp/fmtools/ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:58:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:58:57 +0000 (UTC) Subject: rpms/fnfx/devel fnfx.spec,1.10,1.11 Message-ID: <20090724225857.CB37F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fnfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24908 Modified Files: fnfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fnfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/fnfx/devel/fnfx.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fnfx.spec 24 Feb 2009 17:46:46 -0000 1.10 +++ fnfx.spec 24 Jul 2009 22:58:57 -0000 1.11 @@ -1,6 +1,6 @@ Name: fnfx Version: 0.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Hotkey functions for Toshiba laptops Group: System Environment/Daemons @@ -65,6 +65,9 @@ fi %exclude %{_sysconfdir}/fnfx/fnfxrc_example %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 22:59:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:59:11 +0000 (UTC) Subject: rpms/fontconfig/devel fontconfig.spec,1.135,1.136 Message-ID: <20090724225911.7D53111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25069 Modified Files: fontconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fontconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontconfig/devel/fontconfig.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- fontconfig.spec 24 Jun 2009 19:25:00 -0000 1.135 +++ fontconfig.spec 24 Jul 2009 22:59:11 -0000 1.136 @@ -3,7 +3,7 @@ Summary: Font configuration and customization library Name: fontconfig Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries Source: http://fontconfig.org/release/fontconfig-%{version}.tar.gz @@ -131,6 +131,9 @@ fi %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 24 2009 Behdad Esfahbod - 2.7.0 - Update to 2.7.0 From jkeating at fedoraproject.org Fri Jul 24 22:59:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:59:26 +0000 (UTC) Subject: rpms/fontforge/devel fontforge.spec,1.46,1.47 Message-ID: <20090724225926.2D3EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontforge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25278 Modified Files: fontforge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fontforge.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontforge/devel/fontforge.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- fontforge.spec 14 Jul 2009 16:21:54 -0000 1.46 +++ fontforge.spec 24 Jul 2009 22:59:26 -0000 1.47 @@ -5,7 +5,7 @@ Name: fontforge Version: 20090622 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Outline and bitmap font editor Group: Applications/Publishing @@ -147,6 +147,9 @@ update-mime-database %{_datadir}/mime &> %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090622-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 16 2009 Kevin Fenzi - 20090622-1 - Upgrade to 20090622 From jkeating at fedoraproject.org Fri Jul 24 22:59:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:59:39 +0000 (UTC) Subject: rpms/fontmatrix/devel fontmatrix.spec,1.17,1.18 Message-ID: <20090724225939.E926711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontmatrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25466 Modified Files: fontmatrix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fontmatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontmatrix/devel/fontmatrix.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fontmatrix.spec 13 Jul 2009 10:47:31 -0000 1.17 +++ fontmatrix.spec 24 Jul 2009 22:59:39 -0000 1.18 @@ -3,7 +3,7 @@ Name: fontmatrix Summary: A fonts manager Version: 0.6.0 -Release: 2.r%{svnrev}%{?dist} +Release: 3.r%{svnrev}%{?dist} License: GPLv2+ Group: User Interface/X ##### svn checkout HOWTO ##### @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-3.r1063 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Parag - 0.6.0-2.r1063 - Add missing BRs:python-devel podofo-devel libicu-devel From jkeating at fedoraproject.org Fri Jul 24 22:59:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 22:59:54 +0000 (UTC) Subject: rpms/fontpackages/devel fontpackages.spec,1.17,1.18 Message-ID: <20090724225954.7844B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontpackages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25623 Modified Files: fontpackages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fontpackages.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontpackages/devel/fontpackages.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fontpackages.spec 21 Jun 2009 08:57:45 -0000 1.17 +++ fontpackages.spec 24 Jul 2009 22:59:54 -0000 1.18 @@ -4,7 +4,7 @@ Name: fontpackages Version: 1.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common directory and macro definitions used by font packages Group: Development/System @@ -100,6 +100,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Nicolas Mailhot - 1.22-1 ? workaround rpm eating end-of-line after %%_font_pkg calls From jkeating at fedoraproject.org Fri Jul 24 23:00:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:00:11 +0000 (UTC) Subject: rpms/fonts-ISO8859-2/devel fonts-ISO8859-2.spec,1.17,1.18 Message-ID: <20090724230011.1901511C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fonts-ISO8859-2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25863 Modified Files: fonts-ISO8859-2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fonts-ISO8859-2.spec =================================================================== RCS file: /cvs/pkgs/rpms/fonts-ISO8859-2/devel/fonts-ISO8859-2.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fonts-ISO8859-2.spec 24 Feb 2009 17:51:41 -0000 1.17 +++ fonts-ISO8859-2.spec 24 Jul 2009 23:00:10 -0000 1.18 @@ -9,7 +9,7 @@ Name: fonts-%{ISONAME} Version: 1.0 -Release: 20%{?dist} +Release: 21%{?dist} License: MIT Source: http://www.biz.net.pl/images/ISO8859-2-bdf.tar.gz %if %{include_ulT1mo} @@ -175,6 +175,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:00:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:00:38 +0000 (UTC) Subject: rpms/fonts-KOI8-R/devel fonts-KOI8-R.spec,1.13,1.14 Message-ID: <20090724230038.24DD511C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fonts-KOI8-R/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26090 Modified Files: fonts-KOI8-R.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fonts-KOI8-R.spec =================================================================== RCS file: /cvs/pkgs/rpms/fonts-KOI8-R/devel/fonts-KOI8-R.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fonts-KOI8-R.spec 24 Feb 2009 17:52:42 -0000 1.13 +++ fonts-KOI8-R.spec 24 Jul 2009 23:00:37 -0000 1.14 @@ -2,7 +2,7 @@ %define catalogue /etc/X11/fontpath.d Name: fonts-%{ISONAME} Version: 1.0 -Release: 11%{?dist} +Release: 12%{?dist} License: MIT #URL: Source: http://www.inp.nsk.su/~bolkhov/files/fonts/cyr-rfx/srctgz/cyr-rfx-koi8-ub-1.1.bdfs.tar.bz2 @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT /usr/share/fonts/%{ISONAME}/100dpi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:00:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:00:57 +0000 (UTC) Subject: rpms/fonts-hebrew-fancy/devel fonts-hebrew-fancy.spec,1.7,1.8 Message-ID: <20090724230057.2A2BB11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fonts-hebrew-fancy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26277 Modified Files: fonts-hebrew-fancy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fonts-hebrew-fancy.spec =================================================================== RCS file: /cvs/pkgs/rpms/fonts-hebrew-fancy/devel/fonts-hebrew-fancy.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fonts-hebrew-fancy.spec 27 Feb 2009 15:01:18 -0000 1.7 +++ fonts-hebrew-fancy.spec 24 Jul 2009 23:00:56 -0000 1.8 @@ -7,7 +7,7 @@ from the Culmus project by Maxim Iorsh. Name: %{fontname}-fonts Version: 0.20051122 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Source0: http://culmus.sourceforge.net/fancy/comix.tar.gz Source1: http://culmus.sourceforge.net/fancy/dorian.tar.gz @@ -191,6 +191,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20051122-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Dan Kenigsberg 0.20051122-6 - Follow new font packaging guidelines. From jkeating at fedoraproject.org Fri Jul 24 23:01:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:01:15 +0000 (UTC) Subject: rpms/fonttools/devel fonttools.spec,1.17,1.18 Message-ID: <20090724230115.CB4E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fonttools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26485 Modified Files: fonttools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fonttools.spec =================================================================== RCS file: /cvs/pkgs/rpms/fonttools/devel/fonttools.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fonttools.spec 27 Feb 2009 07:34:48 -0000 1.17 +++ fonttools.spec 24 Jul 2009 23:01:15 -0000 1.18 @@ -3,7 +3,7 @@ Name: fonttools Version: 2.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool to convert True/OpenType fonts to XML and back Group: Development/Tools @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Roozbeh Pournader - 2.2-5 * Change dependency on python-numeric to numpy From jkeating at fedoraproject.org Fri Jul 24 23:01:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:01:31 +0000 (UTC) Subject: rpms/fontypython/devel fontypython.spec,1.7,1.8 Message-ID: <20090724230131.A6DB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fontypython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26649 Modified Files: fontypython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fontypython.spec =================================================================== RCS file: /cvs/pkgs/rpms/fontypython/devel/fontypython.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fontypython.spec 24 Feb 2009 17:55:39 -0000 1.7 +++ fontypython.spec 24 Jul 2009 23:01:31 -0000 1.8 @@ -2,7 +2,7 @@ Name: fontypython Version: 0.3.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: TTF font manager Group: Applications/Multimedia @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:01:47 +0000 (UTC) Subject: rpms/foobillard/devel foobillard.spec,1.18,1.19 Message-ID: <20090724230147.5C04711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/foobillard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26832 Modified Files: foobillard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: foobillard.spec =================================================================== RCS file: /cvs/pkgs/rpms/foobillard/devel/foobillard.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- foobillard.spec 6 Mar 2009 17:56:37 -0000 1.18 +++ foobillard.spec 24 Jul 2009 23:01:47 -0000 1.19 @@ -1,6 +1,6 @@ Name: foobillard Version: 3.0a -Release: 12 +Release: 13 Summary: OpenGL billard game @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0a-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Jesse Keating - 3.0a-12 - Correct the fonts requires due to package name change From jkeating at fedoraproject.org Fri Jul 24 23:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:02:04 +0000 (UTC) Subject: rpms/foomatic/devel foomatic.spec,1.217,1.218 Message-ID: <20090724230204.28E4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/foomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27007 Modified Files: foomatic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: foomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/foomatic/devel/foomatic.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- foomatic.spec 2 Jul 2009 22:41:20 -0000 1.217 +++ foomatic.spec 24 Jul 2009 23:02:03 -0000 1.218 @@ -7,7 +7,7 @@ Summary: Database of printers and printer drivers Name: foomatic Version: %{enginever} -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -242,6 +242,9 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name} %{_var}/cache/foomatic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Tim Waugh 4.0.2-3 - Removed '-O0' compiler option for foomatic-filters, which had been used for debugging purposes. From jkeating at fedoraproject.org Fri Jul 24 23:02:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:02:30 +0000 (UTC) Subject: rpms/fop/devel fop.spec,1.16,1.17 Message-ID: <20090724230230.1AA0711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27255 Modified Files: fop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fop.spec =================================================================== RCS file: /cvs/pkgs/rpms/fop/devel/fop.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- fop.spec 24 Feb 2009 17:58:33 -0000 1.16 +++ fop.spec 24 Jul 2009 23:02:29 -0000 1.17 @@ -1,7 +1,7 @@ Summary: XSL-driven print formatter Name: fop Version: 0.95 -Release: 3 +Release: 4 License: ASL 2.0 Group: Applications/Text Source0: http://www.apache.org/dist/xmlgraphics/fop/source/%{name}-%{version}-src.tar.gz @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.95-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.95-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:02:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:02:55 +0000 (UTC) Subject: rpms/foremost/devel foremost.spec,1.11,1.12 Message-ID: <20090724230255.9298D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/foremost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27538 Modified Files: foremost.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: foremost.spec =================================================================== RCS file: /cvs/pkgs/rpms/foremost/devel/foremost.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- foremost.spec 24 Feb 2009 17:59:31 -0000 1.11 +++ foremost.spec 24 Jul 2009 23:02:55 -0000 1.12 @@ -1,6 +1,6 @@ Name: foremost Version: 1.5.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Recover files by "carving" them from a raw disk Group: Applications/File @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/foremost.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:03:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:03:13 +0000 (UTC) Subject: rpms/fortune-firefly/devel fortune-firefly.spec,1.18,1.19 Message-ID: <20090724230313.4FEF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fortune-firefly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27711 Modified Files: fortune-firefly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fortune-firefly.spec =================================================================== RCS file: /cvs/pkgs/rpms/fortune-firefly/devel/fortune-firefly.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- fortune-firefly.spec 24 Feb 2009 18:00:26 -0000 1.18 +++ fortune-firefly.spec 24 Jul 2009 23:03:13 -0000 1.19 @@ -1,6 +1,6 @@ Name: fortune-firefly Version: 2.1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Quotes from the TV series "Firefly" Group: Amusements/Games @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:03:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:03:30 +0000 (UTC) Subject: rpms/fortune-mod/devel fortune-mod.spec,1.16,1.17 Message-ID: <20090724230330.23FC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fortune-mod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27888 Modified Files: fortune-mod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fortune-mod.spec =================================================================== RCS file: /cvs/pkgs/rpms/fortune-mod/devel/fortune-mod.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- fortune-mod.spec 24 Feb 2009 18:01:26 -0000 1.16 +++ fortune-mod.spec 24 Jul 2009 23:03:29 -0000 1.17 @@ -4,7 +4,7 @@ Summary: A program which will display a fortune Name: fortune-mod Version: 1.99.1 -Release: 12%{?dist} +Release: 13%{?dist} URL: http://www.redellipse.net/code/fortune License: BSD Group: Amusements/Games @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.99.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.99.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:03:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:03:44 +0000 (UTC) Subject: rpms/fotowall/devel fotowall.spec,1.7,1.8 Message-ID: <20090724230344.39FAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fotowall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28026 Modified Files: fotowall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fotowall.spec =================================================================== RCS file: /cvs/pkgs/rpms/fotowall/devel/fotowall.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fotowall.spec 8 May 2009 19:37:24 -0000 1.7 +++ fotowall.spec 24 Jul 2009 23:03:43 -0000 1.8 @@ -1,6 +1,6 @@ Name: fotowall Version: 0.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Photo collection creativity tool @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Nicoleau Fabien - 1:0.6.1-1 - Rebuild for 0.6.1 * Wed Apr 22 2009 Nicoleau Fabien - 1:0.5-1 From jkeating at fedoraproject.org Fri Jul 24 23:03:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:03:58 +0000 (UTC) Subject: rpms/fotoxx/devel fotoxx.spec,1.17,1.18 Message-ID: <20090724230358.1B3D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fotoxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28204 Modified Files: fotoxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fotoxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/fotoxx/devel/fotoxx.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- fotoxx.spec 25 Feb 2009 16:59:57 -0000 1.17 +++ fotoxx.spec 24 Jul 2009 23:03:57 -0000 1.18 @@ -1,6 +1,6 @@ Name: fotoxx Version: 6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Photo editor Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Dennis Gilmore - 6.0-3 - add patch to dynamically link to libfreeimage From jkeating at fedoraproject.org Fri Jul 24 23:04:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:04:15 +0000 (UTC) Subject: rpms/fpc/devel fpc.spec,1.34,1.35 Message-ID: <20090724230415.4548B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28413 Modified Files: fpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/fpc/devel/fpc.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- fpc.spec 18 Jun 2009 12:34:13 -0000 1.34 +++ fpc.spec 24 Jul 2009 23:04:15 -0000 1.35 @@ -1,6 +1,6 @@ Name: fpc Version: 2.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Free Pascal Compiler Group: Development/Languages @@ -177,6 +177,9 @@ rm -rf %{buildroot} %{_datadir}/fpcsrc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Dan Horak 2.2.4-2 - Exclude s390/s390x architectures From jkeating at fedoraproject.org Fri Jul 24 23:04:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:04:30 +0000 (UTC) Subject: rpms/fping/devel fping.spec,1.9,1.10 Message-ID: <20090724230430.6025511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28633 Modified Files: fping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fping.spec =================================================================== RCS file: /cvs/pkgs/rpms/fping/devel/fping.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fping.spec 24 Feb 2009 18:05:08 -0000 1.9 +++ fping.spec 24 Jul 2009 23:04:30 -0000 1.10 @@ -1,6 +1,6 @@ Name: fping Version: 2.4b2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Scriptable, parallelized ping-like utility Group: Applications/Internet License: BSD with advertising @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4b2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.4b2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:04:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:04:45 +0000 (UTC) Subject: rpms/fpm2/devel fpm2.spec,1.4,1.5 Message-ID: <20090724230445.8C10B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fpm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28854 Modified Files: fpm2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fpm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/fpm2/devel/fpm2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fpm2.spec 2 Mar 2009 20:17:44 -0000 1.4 +++ fpm2.spec 24 Jul 2009 23:04:45 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Password manager with GTK2 GUI Name: fpm2 Version: 0.75 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Productivity Source: http://als.regnet.cz/%{name}/download/%{name}-%{version}.tar.bz2 @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.75-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Ale? Koval - 0.75-1 - Update to 0.75 - Update cipher in %descripton section From jkeating at fedoraproject.org Fri Jul 24 23:05:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:05:00 +0000 (UTC) Subject: rpms/fprint_demo/devel fprint_demo.spec,1.4,1.5 Message-ID: <20090724230500.8539911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fprint_demo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29058 Modified Files: fprint_demo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fprint_demo.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprint_demo/devel/fprint_demo.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fprint_demo.spec 11 May 2009 14:52:49 -0000 1.4 +++ fprint_demo.spec 24 Jul 2009 23:05:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: fprint_demo Version: 0.4 -Release: 5%{?dist}.1 +Release: 6%{?dist}.1 Summary: Demo of the fprint drivers Group: System Environment/Base @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/fprint-icon.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Karsten Hopp 0.4-5.1 - Excludearch s390 s390x, as we don't have libusb1 on mainframe, we can't build the required libfprint package From jkeating at fedoraproject.org Fri Jul 24 23:05:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:05:15 +0000 (UTC) Subject: rpms/fprintd/devel fprintd.spec,1.16,1.17 Message-ID: <20090724230515.C775A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fprintd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29210 Modified Files: fprintd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fprintd.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprintd/devel/fprintd.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- fprintd.spec 21 Jul 2009 14:02:07 -0000 1.16 +++ fprintd.spec 24 Jul 2009 23:05:15 -0000 1.17 @@ -3,7 +3,7 @@ Name: fprintd Version: 0.1 -Release: 14.git%{short_hash}%{?dist} +Release: 15.git%{short_hash}%{?dist} Summary: D-Bus service for Fingerprint reader access Group: System Environment/Daemons @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/interfaces/net.reactivated.Fprint.Manager.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-15.git04fd09cfa +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bastien Nocera 0.1-14.git04fd09cfa - Merge polkit patch and fix for polkit patch From jkeating at fedoraproject.org Fri Jul 24 23:05:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:05:31 +0000 (UTC) Subject: rpms/fprobe-ulog/devel fprobe-ulog.spec,1.4,1.5 Message-ID: <20090724230531.6BA9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fprobe-ulog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29382 Modified Files: fprobe-ulog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fprobe-ulog.spec =================================================================== RCS file: /cvs/pkgs/rpms/fprobe-ulog/devel/fprobe-ulog.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fprobe-ulog.spec 24 Feb 2009 18:08:48 -0000 1.4 +++ fprobe-ulog.spec 24 Jul 2009 23:05:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: fprobe-ulog Version: 1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: NetFlow probe Group: System Environment/Daemons License: GPLv2 @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:05:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:05:46 +0000 (UTC) Subject: rpms/freealut/devel freealut.spec,1.13,1.14 Message-ID: <20090724230546.98B1E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freealut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29534 Modified Files: freealut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freealut.spec =================================================================== RCS file: /cvs/pkgs/rpms/freealut/devel/freealut.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- freealut.spec 18 Mar 2009 00:38:22 -0000 1.13 +++ freealut.spec 24 Jul 2009 23:05:46 -0000 1.14 @@ -1,6 +1,6 @@ Name: freealut Version: 1.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Implementation of OpenAL's ALUT standard Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/freealut.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Robert Scheck - 1.1.0-8 - Rebuilt against libtool 2.2 to avoid libtool errors From jkeating at fedoraproject.org Fri Jul 24 23:06:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:06:01 +0000 (UTC) Subject: rpms/freeciv/devel freeciv.spec,1.46,1.47 Message-ID: <20090724230601.4E16E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeciv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29722 Modified Files: freeciv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeciv.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeciv/devel/freeciv.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- freeciv.spec 5 Apr 2009 20:05:05 -0000 1.46 +++ freeciv.spec 24 Jul 2009 23:06:01 -0000 1.47 @@ -5,7 +5,7 @@ Name: freeciv Version: 2.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A multi-player strategy game Group: Amusements/Games @@ -111,6 +111,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Brian Pepple - 2.1.9-1 - Update to 2.1.9. From jkeating at fedoraproject.org Fri Jul 24 23:06:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:06:15 +0000 (UTC) Subject: rpms/freecol/devel freecol.spec,1.15,1.16 Message-ID: <20090724230615.93A3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freecol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29870 Modified Files: freecol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freecol.spec =================================================================== RCS file: /cvs/pkgs/rpms/freecol/devel/freecol.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- freecol.spec 13 May 2009 07:12:41 -0000 1.15 +++ freecol.spec 24 Jul 2009 23:06:15 -0000 1.16 @@ -7,7 +7,7 @@ Name: freecol Version: 0.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turn-based multi-player strategy game Group: Amusements/Games License: GPL+ @@ -158,6 +158,9 @@ fi %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Hans de Goede 0.8.3-1 - New upstream release 0.8.3 From jkeating at fedoraproject.org Fri Jul 24 23:06:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:06:29 +0000 (UTC) Subject: rpms/freedink/devel freedink.spec,1.7,1.8 Message-ID: <20090724230629.3FBA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30017 Modified Files: freedink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedink.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink/devel/freedink.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- freedink.spec 24 Feb 2009 18:12:29 -0000 1.7 +++ freedink.spec 24 Jul 2009 23:06:29 -0000 1.8 @@ -1,6 +1,6 @@ Name: freedink Version: 1.08.20090120 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Adventure and role-playing game Group: Amusements/Games @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.08.20090120-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.08.20090120-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:07:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:07:08 +0000 (UTC) Subject: rpms/freedink-data/devel freedink-data.spec,1.4,1.5 Message-ID: <20090724230708.A6D4B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedink-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30322 Modified Files: freedink-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedink-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink-data/devel/freedink-data.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- freedink-data.spec 6 Jul 2009 08:52:35 -0000 1.4 +++ freedink-data.spec 24 Jul 2009 23:07:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: freedink-data Version: 1.08.20090706 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Adventure and role-playing game (game data) Group: Amusements/Games @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.08.20090706-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Sylvain Beucler - 1.08.20090706-1 - New upstream release (remove savegame) From jkeating at fedoraproject.org Fri Jul 24 23:07:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:07:25 +0000 (UTC) Subject: rpms/freedink-dfarc/devel freedink-dfarc.spec,1.4,1.5 Message-ID: <20090724230725.4ACA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedink-dfarc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30506 Modified Files: freedink-dfarc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedink-dfarc.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedink-dfarc/devel/freedink-dfarc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- freedink-dfarc.spec 10 Jul 2009 13:30:59 -0000 1.4 +++ freedink-dfarc.spec 24 Jul 2009 23:07:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: freedink-dfarc Version: 3.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Frontend and .dmod installer for GNU FreeDink Group: Amusements/Games @@ -87,6 +87,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Sylvain Beucler - 3.2.3-1 - New upstream release From jkeating at fedoraproject.org Fri Jul 24 23:07:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:07:41 +0000 (UTC) Subject: rpms/freedoom/devel freedoom.spec,1.8,1.9 Message-ID: <20090724230741.7167F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedoom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30694 Modified Files: freedoom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedoom.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedoom/devel/freedoom.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- freedoom.spec 27 Jun 2009 04:24:01 -0000 1.8 +++ freedoom.spec 24 Jul 2009 23:07:41 -0000 1.9 @@ -3,7 +3,7 @@ Name: freedoom Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Replacement game files for doom game engines Group: Amusements/Games @@ -72,6 +72,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Wart 0.6.4-1 - Update to 0.6.4 From jkeating at fedoraproject.org Fri Jul 24 23:07:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:07:57 +0000 (UTC) Subject: rpms/freedoom-freedm/devel freedoom-freedm.spec,1.7,1.8 Message-ID: <20090724230757.8F77311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedoom-freedm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30970 Modified Files: freedoom-freedm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedoom-freedm.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedoom-freedm/devel/freedoom-freedm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- freedoom-freedm.spec 27 Jun 2009 06:40:56 -0000 1.7 +++ freedoom-freedm.spec 24 Jul 2009 23:07:57 -0000 1.8 @@ -3,7 +3,7 @@ Name: freedoom-freedm Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Deathmatch levels for Doom Group: Amusements/Games @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Wart 0.6.4-1 - Update to 0.6.4 From silas at fedoraproject.org Fri Jul 24 23:08:11 2009 From: silas at fedoraproject.org (Silas Sewell) Date: Fri, 24 Jul 2009 23:08:11 +0000 (UTC) Subject: rpms/python-lockfile/devel import.log, NONE, 1.1 python-lockfile.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724230811.BF5C911C00CE@cvs1.fedora.phx.redhat.com> Author: silas Update of /cvs/pkgs/rpms/python-lockfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31082/devel Modified Files: .cvsignore sources Added Files: import.log python-lockfile.spec Log Message: * Thu Jul 23 2009 Silas Sewell - 0.8-1 - Initial build. --- NEW FILE import.log --- python-lockfile-0_8-1_fc12:HEAD:python-lockfile-0.8-1.fc12.src.rpm:1248476895 --- NEW FILE python-lockfile.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define upstream_name lockfile Name: python-%{upstream_name} Version: 0.8 Release: 1%{?dist} Summary: A platform-independent file locking module Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/%{upstream_name} Source0: http://smontanaro.dyndns.org/python/%{upstream_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools %description The lockfile module exports a FileLock class which provides a simple API for locking files. Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the deprecated posixfile module, the API is identical across both Unix (including Linux and Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link (on Unix) and mkdir (on Windows) system calls. %prep %setup -q -n %{upstream_name}-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ACKS LICENSE MANIFEST PKG-INFO README RELEASE-NOTES doc/ %{python_sitelib}/%{upstream_name}.py* %{python_sitelib}/%{upstream_name}-%{version}-*.egg-info %changelog * Thu Jul 23 2009 Silas Sewell - 0.8-1 - Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-lockfile/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:23:41 -0000 1.1 +++ .cvsignore 24 Jul 2009 23:08:11 -0000 1.2 @@ -0,0 +1 @@ +lockfile-0.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-lockfile/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:23:41 -0000 1.1 +++ sources 24 Jul 2009 23:08:11 -0000 1.2 @@ -0,0 +1 @@ +2d515e19eb6f69d6ed711cbbafdec7ef lockfile-0.8.tar.gz From jkeating at fedoraproject.org Fri Jul 24 23:08:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:08:13 +0000 (UTC) Subject: rpms/freedroid/devel freedroid.spec,1.15,1.16 Message-ID: <20090724230813.B46BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedroid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31163 Modified Files: freedroid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedroid.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedroid/devel/freedroid.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- freedroid.spec 16 Mar 2009 22:41:12 -0000 1.15 +++ freedroid.spec 24 Jul 2009 23:08:13 -0000 1.16 @@ -1,6 +1,6 @@ Name: freedroid Version: 1.0.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Clone of the C64 game Paradroid Group: Amusements/Games @@ -104,6 +104,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ville Skytt? - 1.0.2-12 - Split data files into a subpackage, make it noarch for Fedora >= 10. From jkeating at fedoraproject.org Fri Jul 24 23:08:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:08:30 +0000 (UTC) Subject: rpms/freedroidrpg/devel freedroidrpg.spec,1.25,1.26 Message-ID: <20090724230830.31F0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freedroidrpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31411 Modified Files: freedroidrpg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freedroidrpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/freedroidrpg/devel/freedroidrpg.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- freedroidrpg.spec 5 May 2009 18:33:58 -0000 1.25 +++ freedroidrpg.spec 24 Jul 2009 23:08:29 -0000 1.26 @@ -1,6 +1,6 @@ Name: freedroidrpg Version: 0.12.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Role playing game with Freedroid theme and Tux as the hero Group: Amusements/Games @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 4 2009 Fedora Release Engineering - 0.12.1-1 - Update to 0.12.1 - Move data files to a noarch -data subpackage From jkeating at fedoraproject.org Fri Jul 24 23:08:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:08:46 +0000 (UTC) Subject: rpms/freefem++/devel freefem++.spec,1.20,1.21 Message-ID: <20090724230846.8DB1F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freefem++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31616 Modified Files: freefem++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freefem++.spec =================================================================== RCS file: /cvs/pkgs/rpms/freefem++/devel/freefem++.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- freefem++.spec 3 Mar 2009 17:11:05 -0000 1.20 +++ freefem++.spec 24 Jul 2009 23:08:46 -0000 1.21 @@ -4,7 +4,7 @@ Summary: PDE solving tool Name: freefem++ Version: 3.0 -Release: 5%{dotpl}%{?dist} +Release: 6%{dotpl}%{?dist} URL: http://www.freefem.org/ff++/index.htm Group: Applications/Engineering Source0: http://www.freefem.org/ff++/ftp/%{name}-%{version}%{dashpl}.tar.gz @@ -159,6 +159,9 @@ pkill lamd %{_bindir}/FreeFem++-mpi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0-6.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Dominik Mierzejewski 3.0-5.5 - update to 3.0-5 - fix build with gcc-4.4 From jkeating at fedoraproject.org Fri Jul 24 23:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:09:01 +0000 (UTC) Subject: rpms/freeglut/devel freeglut.spec,1.10,1.11 Message-ID: <20090724230901.7162F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeglut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31790 Modified Files: freeglut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeglut.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeglut/devel/freeglut.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- freeglut.spec 21 Apr 2009 13:11:47 -0000 1.10 +++ freeglut.spec 24 Jul 2009 23:09:01 -0000 1.11 @@ -3,7 +3,7 @@ Summary: A freely licensed alternative to the GLUT library Name: freeglut Version: 2.6.0 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} URL: http://freeglut.sourceforge.net Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-%{pre}.tar.gz # For the manpages @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.0-0.2.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Hans de Goede 2.6.0-0.1.rc1 - New upstream release (yes really!) 2.6.0-rc1 From jkeating at fedoraproject.org Fri Jul 24 23:09:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:09:17 +0000 (UTC) Subject: rpms/freehdl/devel freehdl.spec,1.18,1.19 Message-ID: <20090724230917.63D1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freehdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31954 Modified Files: freehdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freehdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/freehdl/devel/freehdl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- freehdl.spec 7 May 2009 06:37:25 -0000 1.18 +++ freehdl.spec 24 Jul 2009 23:09:17 -0000 1.19 @@ -1,7 +1,7 @@ Summary: GPLed free VHDL Name: freehdl Version: 0.0.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ Group: Applications/Engineering Source0: http://ovh.dl.sourceforge.net/sourceforge/qucs/%{name}-%{version}.tar.gz @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man5/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Eric Tanguy 0.0.7-1 - Update to 0.0.7 From jkeating at fedoraproject.org Fri Jul 24 23:09:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:09:32 +0000 (UTC) Subject: rpms/freehoo/devel freehoo.spec,1.3,1.4 Message-ID: <20090724230932.81E8111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freehoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32111 Modified Files: freehoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freehoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/freehoo/devel/freehoo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- freehoo.spec 24 Feb 2009 18:22:35 -0000 1.3 +++ freehoo.spec 24 Jul 2009 23:09:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: freehoo Version: 3.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Freehoo is a free console based messenger for Yahoo IM Service Group: Applications/Internet License: GPLv2+ @@ -65,6 +65,9 @@ fi %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:09:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:09:48 +0000 (UTC) Subject: rpms/freeimage/devel freeimage.spec,1.2,1.3 Message-ID: <20090724230948.A9C5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32267 Modified Files: freeimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeimage/devel/freeimage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- freeimage.spec 24 Feb 2009 18:23:29 -0000 1.2 +++ freeimage.spec 24 Jul 2009 23:09:48 -0000 1.3 @@ -3,7 +3,7 @@ Name: freeimage Version: 3.10.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Multi-format image decoder library Group: System Environment/Libraries # freeimage is dual-licensed, see Whatsnew.txt (search for license) or: @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:10:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:10:03 +0000 (UTC) Subject: rpms/freeipmi/devel freeipmi.spec,1.19,1.20 Message-ID: <20090724231003.72D9411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeipmi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32432 Modified Files: freeipmi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeipmi.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeipmi/devel/freeipmi.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- freeipmi.spec 29 Jun 2009 13:49:48 -0000 1.19 +++ freeipmi.spec 24 Jul 2009 23:10:03 -0000 1.20 @@ -3,7 +3,7 @@ # %if %{?_with_debug:1}%{!?_with_debug:0} -Release: 2.debug%{?dist} +Release: 3.debug%{?dist} %else Release: 2%{?dist} %endif @@ -295,6 +295,9 @@ fi %{_mandir}/man8/ipmidetectd.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Jan Safranek - 0.7.10-2 - Fix (de-)installation scripts From jkeating at fedoraproject.org Fri Jul 24 23:10:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:10:14 +0000 (UTC) Subject: rpms/freemarker/devel freemarker.spec,1.2,1.3 Message-ID: <20090724231014.021FB11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freemarker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32563 Modified Files: freemarker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freemarker.spec =================================================================== RCS file: /cvs/pkgs/rpms/freemarker/devel/freemarker.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- freemarker.spec 24 Feb 2009 18:24:26 -0000 1.2 +++ freemarker.spec 24 Jul 2009 23:10:13 -0000 1.3 @@ -6,7 +6,7 @@ echo "ERROR: Sources should not contain Name: freemarker Version: %{fm_ver} -Release: 5%{?dist} +Release: 6%{?dist} Summary: FreeMarker template engine Group: Development/Libraries @@ -153,6 +153,9 @@ dos2unix -k docs/docs/api/package-list %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.13-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:10:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:10:32 +0000 (UTC) Subject: rpms/freenx-client/devel freenx-client.spec,1.2,1.3 Message-ID: <20090724231032.14B4611C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freenx-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32735 Modified Files: freenx-client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freenx-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/freenx-client/devel/freenx-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- freenx-client.spec 24 Feb 2009 18:25:19 -0000 1.2 +++ freenx-client.spec 24 Jul 2009 23:10:31 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Free client libraries and binaries for the NX protocol Name: freenx-client Version: 0.9 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_datadir}/applications/*qtnx.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:10:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:10:47 +0000 (UTC) Subject: rpms/freenx-server/devel freenx-server.spec,1.6,1.7 Message-ID: <20090724231047.75C2811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freenx-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv440 Modified Files: freenx-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freenx-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/freenx-server/devel/freenx-server.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- freenx-server.spec 24 Feb 2009 18:26:12 -0000 1.6 +++ freenx-server.spec 24 Jul 2009 23:10:47 -0000 1.7 @@ -5,7 +5,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -100,6 +100,9 @@ chown nx:root /var/lib/nxserver/home/.ss %config(noreplace) %{_sysconfdir}/logrotate.d/freenx-server %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:11:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:11:04 +0000 (UTC) Subject: rpms/freeradius/devel freeradius.spec,1.83,1.84 Message-ID: <20090724231104.0FF9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeradius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv608 Modified Files: freeradius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeradius.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeradius/devel/freeradius.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- freeradius.spec 10 Jul 2009 20:43:26 -0000 1.83 +++ freeradius.spec 24 Jul 2009 23:11:03 -0000 1.84 @@ -1,7 +1,7 @@ Summary: High-performance and highly configurable free RADIUS server Name: freeradius Version: 2.1.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Daemons URL: http://www.freeradius.org/ @@ -577,6 +577,9 @@ fi %{_libdir}/freeradius/rlm_sql_unixodbc-%{version}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 John Dennis - 2.1.6-4 - install COPYRIGHT CREDITS INSTALL LICENSE README into docdir From jkeating at fedoraproject.org Fri Jul 24 23:11:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:11:17 +0000 (UTC) Subject: rpms/freetalk/devel freetalk.spec,1.5,1.6 Message-ID: <20090724231117.466B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freetalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv762 Modified Files: freetalk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freetalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetalk/devel/freetalk.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- freetalk.spec 27 Feb 2009 19:19:55 -0000 1.5 +++ freetalk.spec 24 Jul 2009 23:11:17 -0000 1.6 @@ -1,7 +1,7 @@ Summary: A console based Jabber client Name: freetalk Version: 3.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://www.gnu.org/software/freetalk/ @@ -78,6 +78,9 @@ fi %{_datadir}/%{name}/extensions %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Debarshi Ray - 3.2-3 - Fixed build failure with glibc-2.10. From jkeating at fedoraproject.org Fri Jul 24 23:11:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:11:31 +0000 (UTC) Subject: rpms/freetds/devel freetds.spec,1.24,1.25 Message-ID: <20090724231131.A755711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freetds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv936 Modified Files: freetds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freetds.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetds/devel/freetds.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- freetds.spec 26 Mar 2009 18:14:31 -0000 1.24 +++ freetds.spec 24 Jul 2009 23:11:31 -0000 1.25 @@ -7,7 +7,7 @@ Name: freetds Summary: Implementation of the TDS (Tabular DataStream) protocol Version: 0.82 -Release: 5%{?dist} +Release: 6%{?dist} Group: System Environment/Libraries License: LGPLv2+ and GPLv2+ URL: http://www.freetds.org/ @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.82-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Dmitry Butskoy - 0.82-5 - add upstream patch cspublic.BLK_VERSION_150.patch (#492393) From jkeating at fedoraproject.org Fri Jul 24 23:11:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:11:47 +0000 (UTC) Subject: rpms/freetennis/devel freetennis.spec,1.15,1.16 Message-ID: <20090724231147.0CC0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freetennis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1123 Modified Files: freetennis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freetennis.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetennis/devel/freetennis.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- freetennis.spec 16 Apr 2009 09:26:11 -0000 1.15 +++ freetennis.spec 24 Jul 2009 23:11:46 -0000 1.16 @@ -3,7 +3,7 @@ Name: freetennis Version: 0.4.8 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Tennis simulation game Group: Amusements/Games License: GPLv2+ @@ -82,6 +82,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/48x48/apps/freetennis.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.8-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Fri Jul 24 23:12:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:12:00 +0000 (UTC) Subject: rpms/freetype/devel freetype.spec,1.73,1.74 Message-ID: <20090724231200.4215711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freetype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1300 Modified Files: freetype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freetype.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetype/devel/freetype.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- freetype.spec 7 May 2009 21:28:01 -0000 1.73 +++ freetype.spec 24 Jul 2009 23:12:00 -0000 1.74 @@ -9,7 +9,7 @@ Summary: A free and portable font rendering engine Name: freetype Version: 2.3.9 -Release: 4%{?dist} +Release: 5%{?dist} License: FTL or GPLv2+ Group: System Environment/Libraries URL: http://www.freetype.org @@ -226,6 +226,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/tutorial %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Matthias Clasen 2.3.9-4 - Don't own /usr/lib/pkgconfig From jkeating at fedoraproject.org Fri Jul 24 23:12:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:12:14 +0000 (UTC) Subject: rpms/freeze/devel freeze.spec,1.13,1.14 Message-ID: <20090724231214.70B6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/freeze/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1455 Modified Files: freeze.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: freeze.spec =================================================================== RCS file: /cvs/pkgs/rpms/freeze/devel/freeze.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- freeze.spec 23 Feb 2009 20:42:20 -0000 1.13 +++ freeze.spec 24 Jul 2009 23:12:14 -0000 1.14 @@ -1,6 +1,6 @@ Name: freeze Version: 2.5.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: freeze/melt/fcat compression utilities Group: Applications/Archiving @@ -55,6 +55,9 @@ rm -fr %{buildroot} %attr(0755,root,root) %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.5.0-10 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Fri Jul 24 23:12:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:12:29 +0000 (UTC) Subject: rpms/frei0r-plugins/devel frei0r-plugins.spec,1.2,1.3 Message-ID: <20090724231229.7C3D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frei0r-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1618 Modified Files: frei0r-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frei0r-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/frei0r-plugins/devel/frei0r-plugins.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- frei0r-plugins.spec 23 May 2009 00:14:26 -0000 1.2 +++ frei0r-plugins.spec 24 Jul 2009 23:12:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: frei0r-plugins Version: 1.1.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Frei0r - a minimalistic plugin API for video effects Group: System Environment/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/frei0r.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 kwizart < kwizart at gmail.com > - 1.1.22-2 - Rebuild for opencv From jkeating at fedoraproject.org Fri Jul 24 23:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:12:44 +0000 (UTC) Subject: rpms/frescobaldi/devel frescobaldi.spec,1.5,1.6 Message-ID: <20090724231244.790F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frescobaldi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1766 Modified Files: frescobaldi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frescobaldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/frescobaldi/devel/frescobaldi.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- frescobaldi.spec 6 Jul 2009 17:37:06 -0000 1.5 +++ frescobaldi.spec 24 Jul 2009 23:12:44 -0000 1.6 @@ -1,6 +1,6 @@ Name: frescobaldi Version: 0.7.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Edit LilyPond sheet music with ease! Group: Applications/Editors # python/hyphenator.py is LGPLv2+ @@ -122,6 +122,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/kde4/apps/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Orcan Ogetbil - 0.7.12-1 - New upstream version From jkeating at fedoraproject.org Fri Jul 24 23:13:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:13:00 +0000 (UTC) Subject: rpms/fribidi/devel fribidi.spec,1.30,1.31 Message-ID: <20090724231300.5FA8311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fribidi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1914 Modified Files: fribidi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fribidi.spec =================================================================== RCS file: /cvs/pkgs/rpms/fribidi/devel/fribidi.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- fribidi.spec 26 Mar 2009 23:01:51 -0000 1.30 +++ fribidi.spec 24 Jul 2009 23:13:00 -0000 1.31 @@ -1,7 +1,7 @@ Summary: Library implementing the Unicode Bidirectional Algorithm Name: fribidi Version: 0.19.2 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fribidi.org Source0: http://fribidi.org/download/%{name}-%{version}.tar.gz License: LGPLv2+ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/%{name}_*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.19.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Behdad Esfahbod 0.19.2-1 - Update to 0.19.2 From jkeating at fedoraproject.org Fri Jul 24 23:13:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:13:15 +0000 (UTC) Subject: rpms/frinika/devel frinika.spec,1.2,1.3 Message-ID: <20090724231315.765B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frinika/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2052 Modified Files: frinika.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frinika.spec =================================================================== RCS file: /cvs/pkgs/rpms/frinika/devel/frinika.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- frinika.spec 7 Jul 2009 00:10:51 -0000 1.2 +++ frinika.spec 24 Jul 2009 23:13:15 -0000 1.3 @@ -2,7 +2,7 @@ Name: frinika Version: 0.5.1 -Release: 7.%{svnver}svn%{?dist} +Release: 8.%{svnver}svn%{?dist} Summary: Music Workstation Group: Applications/Multimedia License: GPLv2+ @@ -181,6 +181,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-8.551svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Orcan Ogetbil - 0.5.1-7.551svn - Workaround the ppc64 builder failure - Correct wrapper script for all 64bit archs in Fedora From jkeating at fedoraproject.org Fri Jul 24 23:13:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:13:30 +0000 (UTC) Subject: rpms/frotz/devel frotz.spec,1.6,1.7 Message-ID: <20090724231330.8367311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frotz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2208 Modified Files: frotz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frotz.spec =================================================================== RCS file: /cvs/pkgs/rpms/frotz/devel/frotz.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- frotz.spec 24 Feb 2009 18:32:27 -0000 1.6 +++ frotz.spec 24 Jul 2009 23:13:30 -0000 1.7 @@ -1,6 +1,6 @@ Name: frotz Version: 2.43 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Interpreter for Infocom and other Z-machine games Group: Amusements/Games @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.43-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.43-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:13:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:13:45 +0000 (UTC) Subject: rpms/frozen-bubble/devel frozen-bubble.spec,1.14,1.15 Message-ID: <20090724231345.A275D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frozen-bubble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2352 Modified Files: frozen-bubble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frozen-bubble.spec =================================================================== RCS file: /cvs/pkgs/rpms/frozen-bubble/devel/frozen-bubble.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- frozen-bubble.spec 24 Feb 2009 18:33:26 -0000 1.14 +++ frozen-bubble.spec 24 Jul 2009 23:13:45 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Frozen Bubble arcade game Name: frozen-bubble Version: 2.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Amusements/Games URL: http://www.frozen-bubble.org/ @@ -161,6 +161,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:14:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:14:00 +0000 (UTC) Subject: rpms/frysk/devel frysk.spec,1.148,1.149 Message-ID: <20090724231400.C666911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/frysk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2519 Modified Files: frysk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: frysk.spec =================================================================== RCS file: /cvs/pkgs/rpms/frysk/devel/frysk.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- frysk.spec 19 Jun 2009 21:04:43 -0000 1.148 +++ frysk.spec 24 Jul 2009 23:14:00 -0000 1.149 @@ -1,7 +1,7 @@ Summary: Execution analysis and debugging tool-suite. Name: frysk Version: 0.4 -Release: 10%{?dist} +Release: 11%{?dist} # antlrv2 is Public Domain; antlrv3 is BSD. # getopt is GPLv2 with exception @@ -280,6 +280,9 @@ rm -rf %{buildroot} %{_mandir}/man1/frysk.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Andrw Cagney - 0.4-10 - Add frysk-0.4-fix-duplicates.patch to address duplicated install problems. From jkeating at fedoraproject.org Fri Jul 24 23:14:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:14:14 +0000 (UTC) Subject: rpms/fs_mark/devel fs_mark.spec,1.4,1.5 Message-ID: <20090724231414.53CC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fs_mark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2659 Modified Files: fs_mark.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fs_mark.spec =================================================================== RCS file: /cvs/pkgs/rpms/fs_mark/devel/fs_mark.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fs_mark.spec 24 Feb 2009 18:35:18 -0000 1.4 +++ fs_mark.spec 24 Jul 2009 23:14:14 -0000 1.5 @@ -1,6 +1,6 @@ Name: fs_mark Version: 3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Benchmark synchronous/async file creation Group: Applications/System @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:14:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:14:29 +0000 (UTC) Subject: rpms/fsarchiver/devel fsarchiver.spec,1.14,1.15 Message-ID: <20090724231429.5AE1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fsarchiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2800 Modified Files: fsarchiver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fsarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsarchiver/devel/fsarchiver.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fsarchiver.spec 12 Jul 2009 15:53:01 -0000 1.14 +++ fsarchiver.spec 24 Jul 2009 23:14:29 -0000 1.15 @@ -1,6 +1,6 @@ Name: fsarchiver Version: 0.5.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Safe and flexible file-system backup/deployment tool Group: Applications/Archiving @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README THANKS NEWS %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Adel Gadllah - 0.5.8-2 - BR libblkid-devel From jkeating at fedoraproject.org Fri Jul 24 23:14:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:14:45 +0000 (UTC) Subject: rpms/fslint/devel fslint.spec,1.21,1.22 Message-ID: <20090724231445.952BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fslint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3031 Modified Files: fslint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fslint.spec =================================================================== RCS file: /cvs/pkgs/rpms/fslint/devel/fslint.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- fslint.spec 20 Jul 2009 23:45:05 -0000 1.21 +++ fslint.spec 24 Jul 2009 23:14:45 -0000 1.22 @@ -1,6 +1,6 @@ Name: fslint Version: 2.40 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File System "lint" discovery and cleaning utility Group: Applications/File @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 P?draig Brady

- 2.40-1 - Update to 2.40. Note this updates GTK+ and Python dependencies to 2.4 and 2.3 respectively (Fedora Core 2). From jkeating at fedoraproject.org Fri Jul 24 23:14:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:14:59 +0000 (UTC) Subject: rpms/fsniper/devel fsniper.spec,1.2,1.3 Message-ID: <20090724231459.9483711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fsniper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3190 Modified Files: fsniper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fsniper.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsniper/devel/fsniper.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fsniper.spec 24 Feb 2009 18:38:09 -0000 1.2 +++ fsniper.spec 24 Jul 2009 23:14:59 -0000 1.3 @@ -1,6 +1,6 @@ Name: fsniper Version: 1.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A tool that monitors directories for new files and invokes scripts on them Group: Applications/File @@ -98,6 +98,9 @@ if [ "$1" -ge "1" ] ; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From silas at fedoraproject.org Fri Jul 24 23:15:20 2009 From: silas at fedoraproject.org (Silas Sewell) Date: Fri, 24 Jul 2009 23:15:20 +0000 (UTC) Subject: rpms/python-lockfile/F-11 import.log, NONE, 1.1 python-lockfile.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090724231520.15DA111C02B9@cvs1.fedora.phx.redhat.com> Author: silas Update of /cvs/pkgs/rpms/python-lockfile/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3304/F-11 Modified Files: .cvsignore sources Added Files: import.log python-lockfile.spec Log Message: * Thu Jul 23 2009 Silas Sewell - 0.8-1 - Initial build. --- NEW FILE import.log --- python-lockfile-0_8-1_fc12:F-11:python-lockfile-0.8-1.fc12.src.rpm:1248477304 --- NEW FILE python-lockfile.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define upstream_name lockfile Name: python-%{upstream_name} Version: 0.8 Release: 1%{?dist} Summary: A platform-independent file locking module Group: Development/Languages License: MIT URL: http://pypi.python.org/pypi/%{upstream_name} Source0: http://smontanaro.dyndns.org/python/%{upstream_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools %description The lockfile module exports a FileLock class which provides a simple API for locking files. Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the deprecated posixfile module, the API is identical across both Unix (including Linux and Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link (on Unix) and mkdir (on Windows) system calls. %prep %setup -q -n %{upstream_name}-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc ACKS LICENSE MANIFEST PKG-INFO README RELEASE-NOTES doc/ %{python_sitelib}/%{upstream_name}.py* %{python_sitelib}/%{upstream_name}-%{version}-*.egg-info %changelog * Thu Jul 23 2009 Silas Sewell - 0.8-1 - Initial build. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-lockfile/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:23:41 -0000 1.1 +++ .cvsignore 24 Jul 2009 23:15:17 -0000 1.2 @@ -0,0 +1 @@ +lockfile-0.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-lockfile/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:23:41 -0000 1.1 +++ sources 24 Jul 2009 23:15:18 -0000 1.2 @@ -0,0 +1 @@ +2d515e19eb6f69d6ed711cbbafdec7ef lockfile-0.8.tar.gz From jkeating at fedoraproject.org Fri Jul 24 23:15:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:15:26 +0000 (UTC) Subject: rpms/fspy/devel fspy.spec,1.3,1.4 Message-ID: <20090724231526.7B2AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fspy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3413 Modified Files: fspy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fspy.spec =================================================================== RCS file: /cvs/pkgs/rpms/fspy/devel/fspy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fspy.spec 24 Feb 2009 18:39:06 -0000 1.3 +++ fspy.spec 24 Jul 2009 23:15:26 -0000 1.4 @@ -1,6 +1,6 @@ Name: fspy Version: 0.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Filesystem activity monitoring utility Group: Applications/System @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:15:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:15:41 +0000 (UTC) Subject: rpms/fsvs/devel fsvs.spec,1.7,1.8 Message-ID: <20090724231541.CAA7511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fsvs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3798 Modified Files: fsvs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fsvs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fsvs/devel/fsvs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fsvs.spec 24 Feb 2009 18:40:04 -0000 1.7 +++ fsvs.spec 24 Jul 2009 23:15:41 -0000 1.8 @@ -1,6 +1,6 @@ Name: fsvs Version: 1.1.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Full system versioning with metadata support Group: Development/Tools License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:15:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:15:56 +0000 (UTC) Subject: rpms/fswebcam/devel fswebcam.spec,1.2,1.3 Message-ID: <20090724231556.98EDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fswebcam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3965 Modified Files: fswebcam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fswebcam.spec =================================================================== RCS file: /cvs/pkgs/rpms/fswebcam/devel/fswebcam.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fswebcam.spec 24 Feb 2009 18:41:02 -0000 1.2 +++ fswebcam.spec 24 Jul 2009 23:15:56 -0000 1.3 @@ -1,6 +1,6 @@ Name: fswebcam Version: 20070108 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tiny and flexible webcam program Group: Applications/System @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070108-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070108-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:16:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:16:11 +0000 (UTC) Subject: rpms/ftgl/devel ftgl.spec,1.8,1.9 Message-ID: <20090724231611.E6D8111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ftgl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4402 Modified Files: ftgl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ftgl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ftgl/devel/ftgl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ftgl.spec 22 May 2009 08:42:52 -0000 1.8 +++ ftgl.spec 24 Jul 2009 23:16:11 -0000 1.9 @@ -1,6 +1,6 @@ Name: ftgl Version: 2.1.3 -Release: 0.1.rc5%{?dist} +Release: 0.2.rc5%{?dist} Summary: OpenGL frontend to Freetype 2 Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.3-0.2.rc5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 kwizart < kwizart at gmail.com > - 2.1.3-0.1.rc5 - Update to 2.1.3-rc5 - Obsoletes -utils sub-package From krh at fedoraproject.org Fri Jul 24 23:16:23 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 24 Jul 2009 23:16:23 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1654,1.1655 Message-ID: <20090724231623.97F1811C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4781 Modified Files: kernel.spec Log Message: * Fri Jul 24 2009 Kristian H?gsberg - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1654 retrieving revision 1.1655 diff -u -p -r1.1654 -r1.1655 --- kernel.spec 24 Jul 2009 18:24:28 -0000 1.1654 +++ kernel.spec 24 Jul 2009 23:16:23 -0000 1.1655 @@ -661,6 +661,7 @@ Patch1814: drm-nouveau.patch Patch1818: drm-i915-resume-force-mode.patch Patch1819: drm-intel-big-hammer.patch Patch1820: drm-intel-gen3-fb-hack.patch +Patch1821: drm-page-flip.patch # vga arb Patch1900: linux-2.6-vga-arb.patch @@ -1254,6 +1255,7 @@ ApplyPatch drm-nouveau.patch ApplyPatch drm-i915-resume-force-mode.patch ApplyPatch drm-intel-big-hammer.patch ApplyPatch drm-intel-gen3-fb-hack.patch +ApplyPatch drm-page-flip.patch # VGA arb + drm #ApplyPatch linux-2.6-vga-arb.patch @@ -1890,6 +1892,10 @@ fi # and build. %changelog +* Fri Jul 24 2009 Kristian H?gsberg +- Add drm-page-flip.patch to support vsynced page flipping on intel + chipsets. + * Fri Jul 24 2009 Chuck Ebbert - Enable CONFIG_DEBUG_KOBJECT in debug kernels. (#513606) From jkeating at fedoraproject.org Fri Jul 24 23:16:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:16:27 +0000 (UTC) Subject: rpms/ftnchek/devel ftnchek.spec,1.11,1.12 Message-ID: <20090724231627.4FFB111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ftnchek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4895 Modified Files: ftnchek.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ftnchek.spec =================================================================== RCS file: /cvs/pkgs/rpms/ftnchek/devel/ftnchek.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ftnchek.spec 24 Feb 2009 18:42:56 -0000 1.11 +++ ftnchek.spec 24 Jul 2009 23:16:27 -0000 1.12 @@ -1,6 +1,6 @@ Name: ftnchek Version: 3.3.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Static analyzer for Fortran 77 programs Group: Development/Tools @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.3.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:16:42 +0000 (UTC) Subject: rpms/ftp/devel ftp.spec,1.49,1.50 Message-ID: <20090724231642.685F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5114 Modified Files: ftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ftp/devel/ftp.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- ftp.spec 24 Feb 2009 18:43:55 -0000 1.49 +++ ftp.spec 24 Jul 2009 23:16:42 -0000 1.50 @@ -1,7 +1,7 @@ Summary: The standard UNIX FTP (File Transfer Protocol) client Name: ftp Version: 0.17 -Release: 50%{?dist} +Release: 51%{?dist} License: BSD with advertising Group: Applications/Internet Source0: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-ftp-%{version}.tar.gz @@ -103,6 +103,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man5/netrc.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-51 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.17-50 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:16:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:16:56 +0000 (UTC) Subject: rpms/ftplib/devel ftplib.spec,1.4,1.5 Message-ID: <20090724231656.45AB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ftplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5260 Modified Files: ftplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ftplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ftplib/devel/ftplib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ftplib.spec 24 Feb 2009 18:44:48 -0000 1.4 +++ ftplib.spec 24 Jul 2009 23:16:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: ftplib Version: 3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library of FTP routines Group: System Environment/Libraries License: LGPLv2+ @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/qftp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:17:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:17:11 +0000 (UTC) Subject: rpms/func/devel func.spec,1.14,1.15 Message-ID: <20090724231711.CD4AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/func/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5404 Modified Files: func.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: func.spec =================================================================== RCS file: /cvs/pkgs/rpms/func/devel/func.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- func.spec 8 Jul 2009 18:56:23 -0000 1.14 +++ func.spec 24 Jul 2009 23:17:11 -0000 1.15 @@ -12,7 +12,7 @@ Summary: Remote management framework Name: func Version: 0.25 -Release: 1%{?dist} +Release: 2%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -164,6 +164,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Adrian Likins - 0.25-1 - add CHANGES to spec file From jkeating at fedoraproject.org Fri Jul 24 23:17:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:17:28 +0000 (UTC) Subject: rpms/funionfs/devel funionfs.spec,1.5,1.6 Message-ID: <20090724231728.71A3911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/funionfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5563 Modified Files: funionfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: funionfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/funionfs/devel/funionfs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- funionfs.spec 13 Apr 2009 16:00:35 -0000 1.5 +++ funionfs.spec 24 Jul 2009 23:17:28 -0000 1.6 @@ -1,6 +1,6 @@ Name: funionfs Version: 0.4.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Union filesystem in userspace Group: System Environment/Base @@ -40,6 +40,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Tom "spot" Callaway - 0.4.3-4 - minor spec cleanup From jkeating at fedoraproject.org Fri Jul 24 23:17:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:17:43 +0000 (UTC) Subject: rpms/funtools/devel funtools.spec,1.15,1.16 Message-ID: <20090724231743.80EE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/funtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5703 Modified Files: funtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: funtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/funtools/devel/funtools.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- funtools.spec 24 Feb 2009 18:47:41 -0000 1.15 +++ funtools.spec 24 Jul 2009 23:17:43 -0000 1.16 @@ -3,7 +3,7 @@ Name: funtools Version: 1.4.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: FITS library and utilities # Upstream version @@ -118,6 +118,9 @@ mv %{buildroot}/%{_bindir}/funcalc.sed % %{_mandir}/mann/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:18:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:18:00 +0000 (UTC) Subject: rpms/fuse/devel fuse.spec,1.36,1.37 Message-ID: <20090724231800.A2D6011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5854 Modified Files: fuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse/devel/fuse.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- fuse.spec 24 Feb 2009 18:48:41 -0000 1.36 +++ fuse.spec 24 Jul 2009 23:18:00 -0000 1.37 @@ -1,6 +1,6 @@ Name: fuse Version: 2.7.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: File System in Userspace (FUSE) utilities Group: System Environment/Base @@ -137,6 +137,9 @@ fi %{_includedir}/fuse %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.7.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:18:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:18:16 +0000 (UTC) Subject: rpms/fuse-convmvfs/devel fuse-convmvfs.spec,1.8,1.9 Message-ID: <20090724231816.9162C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-convmvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6019 Modified Files: fuse-convmvfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-convmvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-convmvfs/devel/fuse-convmvfs.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fuse-convmvfs.spec 24 Feb 2009 18:49:40 -0000 1.8 +++ fuse-convmvfs.spec 24 Jul 2009 23:18:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: fuse-convmvfs Version: 0.2.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: FUSE-Filesystem to convert filesystem encodings Group: System Environment/Base @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:18:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:18:32 +0000 (UTC) Subject: rpms/fuse-emulator/devel fuse-emulator.spec,1.14,1.15 Message-ID: <20090724231832.9FC3011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-emulator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6189 Modified Files: fuse-emulator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/fuse-emulator.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fuse-emulator.spec 15 Jul 2009 17:01:03 -0000 1.14 +++ fuse-emulator.spec 24 Jul 2009 23:18:32 -0000 1.15 @@ -1,6 +1,6 @@ Name: fuse-emulator Version: 0.10.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators License: GPLv2+ @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Lucian Langa - 0.10.0.2-1 - new upstream release From jkeating at fedoraproject.org Fri Jul 24 23:19:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:19:08 +0000 (UTC) Subject: rpms/fuse-emulator-utils/devel fuse-emulator-utils.spec,1.10,1.11 Message-ID: <20090724231908.CC87E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-emulator-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6526 Modified Files: fuse-emulator-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-emulator-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator-utils/devel/fuse-emulator-utils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fuse-emulator-utils.spec 24 Feb 2009 18:51:52 -0000 1.10 +++ fuse-emulator-utils.spec 24 Jul 2009 23:19:08 -0000 1.11 @@ -1,6 +1,6 @@ Name: fuse-emulator-utils Version: 0.10.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Additional utils for the Fuse spectrum emulator Group: Applications/Emulators License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:19:23 +0000 (UTC) Subject: rpms/fuse-encfs/devel fuse-encfs.spec,1.28,1.29 Message-ID: <20090724231923.CBFA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-encfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6715 Modified Files: fuse-encfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-encfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-encfs/devel/fuse-encfs.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- fuse-encfs.spec 3 Mar 2009 15:03:36 -0000 1.28 +++ fuse-encfs.spec 24 Jul 2009 23:19:23 -0000 1.29 @@ -1,6 +1,6 @@ Name: fuse-encfs Version: 1.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Encrypted pass-thru filesystem in userspace License: GPLv3+ Group: System Environment/Kernel @@ -54,6 +54,9 @@ it does not use NFS. %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Caol?n McNamara - 1.5-6 - constify ret of strchr(const char*) From jkeating at fedoraproject.org Fri Jul 24 23:19:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:19:38 +0000 (UTC) Subject: rpms/fuse-gmailfs/devel fuse-gmailfs.spec,1.3,1.4 Message-ID: <20090724231938.C1F8211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-gmailfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6912 Modified Files: fuse-gmailfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-gmailfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-gmailfs/devel/fuse-gmailfs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fuse-gmailfs.spec 24 Feb 2009 18:53:40 -0000 1.3 +++ fuse-gmailfs.spec 24 Jul 2009 23:19:38 -0000 1.4 @@ -1,7 +1,7 @@ %define realname gmailfs Name: fuse-gmailfs Version: 0.8.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Gmail Filesystem Group: Applications/System @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:19:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:19:54 +0000 (UTC) Subject: rpms/fuse-python/devel fuse-python.spec,1.6,1.7 Message-ID: <20090724231954.30C2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7099 Modified Files: fuse-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-python/devel/fuse-python.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fuse-python.spec 24 Feb 2009 18:54:31 -0000 1.6 +++ fuse-python.spec 24 Jul 2009 23:19:53 -0000 1.7 @@ -2,7 +2,7 @@ Name: fuse-python Version: 0.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Python bindings for FUSE - filesystem in userspace Group: System Environment/Base @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:20:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:20:10 +0000 (UTC) Subject: rpms/fuse-s3fs/devel fuse-s3fs.spec,1.7,1.8 Message-ID: <20090724232010.9308A11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-s3fs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7297 Modified Files: fuse-s3fs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-s3fs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-s3fs/devel/fuse-s3fs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fuse-s3fs.spec 24 Feb 2009 18:55:27 -0000 1.7 +++ fuse-s3fs.spec 24 Jul 2009 23:20:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: fuse-s3fs Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: FUSE filesystem using Amazon Simple Storage Service as storage Group: System Environment/Base License: GPLv2 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:20:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:20:26 +0000 (UTC) Subject: rpms/fuse-smb/devel fuse-smb.spec,1.9,1.10 Message-ID: <20090724232026.9CBF911C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-smb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7461 Modified Files: fuse-smb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-smb.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-smb/devel/fuse-smb.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- fuse-smb.spec 24 Feb 2009 18:56:25 -0000 1.9 +++ fuse-smb.spec 24 Jul 2009 23:20:26 -0000 1.10 @@ -9,7 +9,7 @@ Name: fuse-smb Summary: FUSE-Filesystem to fast and easy access remote resources via SMB Version: 0.8.7 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.ricardis.tudelft.nl/~vincent/fusesmb/ @@ -84,6 +84,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:20:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:20:41 +0000 (UTC) Subject: rpms/fuse-sshfs/devel fuse-sshfs.spec,1.15,1.16 Message-ID: <20090724232041.8ECAF11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-sshfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7621 Modified Files: fuse-sshfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-sshfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-sshfs/devel/fuse-sshfs.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fuse-sshfs.spec 24 Feb 2009 18:57:22 -0000 1.15 +++ fuse-sshfs.spec 24 Jul 2009 23:20:41 -0000 1.16 @@ -1,6 +1,6 @@ Name: fuse-sshfs Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: FUSE-Filesystem to access remote filesystems via SSH Group: System Environment/Base @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/sshfs.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:20:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:20:55 +0000 (UTC) Subject: rpms/fuse-zip/devel fuse-zip.spec,1.5,1.6 Message-ID: <20090724232055.B2EA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7814 Modified Files: fuse-zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-zip/devel/fuse-zip.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- fuse-zip.spec 24 Feb 2009 18:58:16 -0000 1.5 +++ fuse-zip.spec 24 Jul 2009 23:20:55 -0000 1.6 @@ -1,6 +1,6 @@ Name: fuse-zip Version: 0.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fuse-zip is a fs to navigate, extract, create and modify ZIP archives Group: System Environment/Libraries License: GPLv3+ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:21:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:21:09 +0000 (UTC) Subject: rpms/fusecompress/devel fusecompress.spec,1.14,1.15 Message-ID: <20090724232109.785BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fusecompress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7972 Modified Files: fusecompress.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fusecompress.spec =================================================================== RCS file: /cvs/pkgs/rpms/fusecompress/devel/fusecompress.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fusecompress.spec 8 May 2009 21:15:21 -0000 1.14 +++ fusecompress.spec 24 Jul 2009 23:21:09 -0000 1.15 @@ -1,6 +1,6 @@ Name: fusecompress Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: FUSE based compressed filesystem implementation Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Lubomir Rintel - 2.5-1 - Newer upstream release From jkeating at fedoraproject.org Fri Jul 24 23:21:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:21:23 +0000 (UTC) Subject: rpms/fuseiso/devel fuseiso.spec,1.6,1.7 Message-ID: <20090724232123.5454E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuseiso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8125 Modified Files: fuseiso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuseiso.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuseiso/devel/fuseiso.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fuseiso.spec 27 Apr 2009 14:59:28 -0000 1.6 +++ fuseiso.spec 24 Jul 2009 23:21:23 -0000 1.7 @@ -1,7 +1,7 @@ Name: fuseiso Summary: FUSE support for ISO filesystem images Version: 20070708 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://ubiz.ru/dm/%{name}-%{version}.tar.bz2 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/fuseiso %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070708-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Tom "spot" Callaway - 20070708-6 - add explicit requires on fuse (bz 497681) From jkeating at fedoraproject.org Fri Jul 24 23:21:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:21:36 +0000 (UTC) Subject: rpms/fusion-icon/devel fusion-icon.spec,1.15,1.16 Message-ID: <20090724232136.87DF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fusion-icon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8283 Modified Files: fusion-icon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fusion-icon.spec =================================================================== RCS file: /cvs/pkgs/rpms/fusion-icon/devel/fusion-icon.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fusion-icon.spec 24 Feb 2009 19:01:00 -0000 1.15 +++ fusion-icon.spec 24 Jul 2009 23:21:36 -0000 1.16 @@ -3,7 +3,7 @@ Name: fusion-icon Version: 0.1.0 -Release: 0.6.%{commit}git%{?dist} +Release: 0.7.%{commit}git%{?dist} Summary: Compiz Fusion panel applet Group: User Interface/Desktops License: GPLv2+ @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/FusionIcon/interface_qt4/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-0.7.5e2dc9git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.0-0.6.5e2dc9git - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:21:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:21:50 +0000 (UTC) Subject: rpms/fvwm/devel fvwm.spec,1.13,1.14 Message-ID: <20090724232150.83CA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fvwm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8453 Modified Files: fvwm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fvwm.spec =================================================================== RCS file: /cvs/pkgs/rpms/fvwm/devel/fvwm.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- fvwm.spec 24 Feb 2009 19:01:58 -0000 1.13 +++ fvwm.spec 24 Jul 2009 23:21:50 -0000 1.14 @@ -1,6 +1,6 @@ Name: fvwm Version: 2.5.26 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Highly configurable multiple virtual desktop window manager Group: User Interface/X @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.26-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:22:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:22:04 +0000 (UTC) Subject: rpms/fwbackups/devel fwbackups.spec,1.30,1.31 Message-ID: <20090724232204.AE91411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fwbackups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8620 Modified Files: fwbackups.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fwbackups.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwbackups/devel/fwbackups.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- fwbackups.spec 21 Jul 2009 18:30:33 -0000 1.30 +++ fwbackups.spec 24 Jul 2009 23:22:04 -0000 1.31 @@ -2,7 +2,7 @@ Name: fwbackups Version: 1.43.3 -Release: 0.4.rc2%{?dist} +Release: 0.5.rc2%{?dist} Summary: A feature-rich user backup program Group: Applications/Archiving License: GPLv2+ @@ -81,6 +81,9 @@ scrollkeeper-update -q || : %{python_sitelib}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.43.3-0.5.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Stewart Adam 1.43.3-0.4.rc2 - Add patch to fix one-time backups (#512356) From robert at fedoraproject.org Fri Jul 24 23:22:19 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 23:22:19 +0000 (UTC) Subject: rpms/gkrellm-top/EL-5 gkrelltop-2.2.13-optflags.patch, NONE, 1.1 gkrellm-top.spec, 1.3, 1.4 gkrelltop-2.2.10-optflags.patch, 1.1, NONE Message-ID: <20090724232219.1B5C111C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8432/EL-5 Modified Files: gkrellm-top.spec Added Files: gkrelltop-2.2.13-optflags.patch Removed Files: gkrelltop-2.2.10-optflags.patch Log Message: Change what I forgot to change... gkrelltop-2.2.13-optflags.patch: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE gkrelltop-2.2.13-optflags.patch --- Patch by Robert Scheck for gkrelltop >= 2.2.13, which adds the missing $RPM_OPT_FLAGS to the Makefile for proper building results. --- gkrelltop-2.2.13.orig/Makefile 2009-07-24 07:09:39.000000000 +0200 +++ gkrelltop-2.2.13.orig/Makefile.optflags 2009-07-25 01:01:50.000000000 +0200 @@ -43,14 +43,14 @@ ifeq ($(GKRELL1FLAG),0) # Parameters for gkrellm version 2.* -CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` +CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(RPM_OPT_FLAGS) LIBS = CC=/usr/bin/gcc $(CFLAGS2) else # Parameters for gkrellm version 1.* CC=/usr/bin/cc -CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` +CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` $(RPM_OPT_FLAGS) LIBS= endif @@ -65,12 +65,12 @@ endif ifeq ($(WANT_GLIB12),yes) -CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` +CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` $(RPM_OPT_FLAGS) LIBSD = `glib-config --libs` LIBSD = CONFIGURE_ARGS += --with-glib12 else -CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` +CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` $(RPM_OPT_FLAGS) LIBSD = `pkg-config glib-2.0 --libs` LIBSD = endif Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/EL-5/gkrellm-top.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gkrellm-top.spec 24 Jul 2009 22:47:12 -0000 1.3 +++ gkrellm-top.spec 24 Jul 2009 23:22:18 -0000 1.4 @@ -8,7 +8,7 @@ License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ Source: http://downloads.sf.net/gkrelltop/gkrelltop_%{version}.orig.tar.gz -Patch: gkrelltop-2.2.10-optflags.patch +Patch: gkrelltop-2.2.13-optflags.patch Requires: gkrellm >= 2.2.0 BuildRequires: gkrellm-devel >= 2.2.0 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- gkrelltop-2.2.10-optflags.patch DELETED --- From robert at fedoraproject.org Fri Jul 24 23:22:19 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 23:22:19 +0000 (UTC) Subject: rpms/gkrellm-top/F-10 gkrelltop-2.2.13-optflags.patch, NONE, 1.1 gkrellm-top.spec, 1.3, 1.4 gkrelltop-2.2.10-optflags.patch, 1.1, NONE Message-ID: <20090724232219.A9E1E11C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8432/F-10 Modified Files: gkrellm-top.spec Added Files: gkrelltop-2.2.13-optflags.patch Removed Files: gkrelltop-2.2.10-optflags.patch Log Message: Change what I forgot to change... gkrelltop-2.2.13-optflags.patch: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE gkrelltop-2.2.13-optflags.patch --- Patch by Robert Scheck for gkrelltop >= 2.2.13, which adds the missing $RPM_OPT_FLAGS to the Makefile for proper building results. --- gkrelltop-2.2.13.orig/Makefile 2009-07-24 07:09:39.000000000 +0200 +++ gkrelltop-2.2.13.orig/Makefile.optflags 2009-07-25 01:01:50.000000000 +0200 @@ -43,14 +43,14 @@ ifeq ($(GKRELL1FLAG),0) # Parameters for gkrellm version 2.* -CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` +CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(RPM_OPT_FLAGS) LIBS = CC=/usr/bin/gcc $(CFLAGS2) else # Parameters for gkrellm version 1.* CC=/usr/bin/cc -CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` +CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` $(RPM_OPT_FLAGS) LIBS= endif @@ -65,12 +65,12 @@ endif ifeq ($(WANT_GLIB12),yes) -CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` +CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` $(RPM_OPT_FLAGS) LIBSD = `glib-config --libs` LIBSD = CONFIGURE_ARGS += --with-glib12 else -CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` +CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` $(RPM_OPT_FLAGS) LIBSD = `pkg-config glib-2.0 --libs` LIBSD = endif Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-10/gkrellm-top.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.3 +++ gkrellm-top.spec 24 Jul 2009 23:22:19 -0000 1.4 @@ -8,7 +8,7 @@ License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ Source: http://downloads.sf.net/gkrelltop/gkrelltop_%{version}.orig.tar.gz -Patch: gkrelltop-2.2.10-optflags.patch +Patch: gkrelltop-2.2.13-optflags.patch Requires: gkrellm >= 2.2.0 BuildRequires: gkrellm-devel >= 2.2.0 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- gkrelltop-2.2.10-optflags.patch DELETED --- From robert at fedoraproject.org Fri Jul 24 23:22:20 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 23:22:20 +0000 (UTC) Subject: rpms/gkrellm-top/F-11 gkrelltop-2.2.13-optflags.patch, NONE, 1.1 gkrellm-top.spec, 1.4, 1.5 gkrelltop-2.2.10-optflags.patch, 1.1, NONE Message-ID: <20090724232220.0246D11C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8432/F-11 Modified Files: gkrellm-top.spec Added Files: gkrelltop-2.2.13-optflags.patch Removed Files: gkrelltop-2.2.10-optflags.patch Log Message: Change what I forgot to change... gkrelltop-2.2.13-optflags.patch: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE gkrelltop-2.2.13-optflags.patch --- Patch by Robert Scheck for gkrelltop >= 2.2.13, which adds the missing $RPM_OPT_FLAGS to the Makefile for proper building results. --- gkrelltop-2.2.13.orig/Makefile 2009-07-24 07:09:39.000000000 +0200 +++ gkrelltop-2.2.13.orig/Makefile.optflags 2009-07-25 01:01:50.000000000 +0200 @@ -43,14 +43,14 @@ ifeq ($(GKRELL1FLAG),0) # Parameters for gkrellm version 2.* -CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` +CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(RPM_OPT_FLAGS) LIBS = CC=/usr/bin/gcc $(CFLAGS2) else # Parameters for gkrellm version 1.* CC=/usr/bin/cc -CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` +CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` $(RPM_OPT_FLAGS) LIBS= endif @@ -65,12 +65,12 @@ endif ifeq ($(WANT_GLIB12),yes) -CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` +CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` $(RPM_OPT_FLAGS) LIBSD = `glib-config --libs` LIBSD = CONFIGURE_ARGS += --with-glib12 else -CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` +CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` $(RPM_OPT_FLAGS) LIBSD = `pkg-config glib-2.0 --libs` LIBSD = endif Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/F-11/gkrellm-top.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.4 +++ gkrellm-top.spec 24 Jul 2009 23:22:19 -0000 1.5 @@ -8,7 +8,7 @@ License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ Source: http://downloads.sf.net/gkrelltop/gkrelltop_%{version}.orig.tar.gz -Patch: gkrelltop-2.2.10-optflags.patch +Patch: gkrelltop-2.2.13-optflags.patch Requires: gkrellm >= 2.2.0 BuildRequires: gkrellm-devel >= 2.2.0 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- gkrelltop-2.2.10-optflags.patch DELETED --- From robert at fedoraproject.org Fri Jul 24 23:22:20 2009 From: robert at fedoraproject.org (Robert Scheck) Date: Fri, 24 Jul 2009 23:22:20 +0000 (UTC) Subject: rpms/gkrellm-top/devel gkrelltop-2.2.13-optflags.patch, NONE, 1.1 gkrellm-top.spec, 1.4, 1.5 gkrelltop-2.2.10-optflags.patch, 1.1, NONE Message-ID: <20090724232220.8781011C00CE@cvs1.fedora.phx.redhat.com> Author: robert Update of /cvs/pkgs/rpms/gkrellm-top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8432/devel Modified Files: gkrellm-top.spec Added Files: gkrelltop-2.2.13-optflags.patch Removed Files: gkrelltop-2.2.10-optflags.patch Log Message: Change what I forgot to change... gkrelltop-2.2.13-optflags.patch: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- NEW FILE gkrelltop-2.2.13-optflags.patch --- Patch by Robert Scheck for gkrelltop >= 2.2.13, which adds the missing $RPM_OPT_FLAGS to the Makefile for proper building results. --- gkrelltop-2.2.13.orig/Makefile 2009-07-24 07:09:39.000000000 +0200 +++ gkrelltop-2.2.13.orig/Makefile.optflags 2009-07-25 01:01:50.000000000 +0200 @@ -43,14 +43,14 @@ ifeq ($(GKRELL1FLAG),0) # Parameters for gkrellm version 2.* -CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` +CFLAGS2 = -g -D$(OSFLAG) -DGKRELLM2 -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(RPM_OPT_FLAGS) LIBS = CC=/usr/bin/gcc $(CFLAGS2) else # Parameters for gkrellm version 1.* CC=/usr/bin/cc -CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` +CFLAGS = -D$(OSFLAG) -Wall -fPIC `gtk-config --cflags` `imlib-config --cflags-gdk` $(RPM_OPT_FLAGS) LIBS= endif @@ -65,12 +65,12 @@ endif ifeq ($(WANT_GLIB12),yes) -CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` +CFLAGSD = -I/usr/X11R6/include -D$(OSFLAG) -fPIC -Wall `glib-config --cflags` $(RPM_OPT_FLAGS) LIBSD = `glib-config --libs` LIBSD = CONFIGURE_ARGS += --with-glib12 else -CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` +CFLAGSD = -D$(OSFLAG) -fPIC -Wall `pkg-config glib-2.0 --cflags` $(RPM_OPT_FLAGS) LIBSD = `pkg-config glib-2.0 --libs` LIBSD = endif Index: gkrellm-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-top/devel/gkrellm-top.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gkrellm-top.spec 24 Jul 2009 22:47:13 -0000 1.4 +++ gkrellm-top.spec 24 Jul 2009 23:22:20 -0000 1.5 @@ -8,7 +8,7 @@ License: GPL+ Group: Applications/System URL: http://gkrelltop.sourceforge.net/ Source: http://downloads.sf.net/gkrelltop/gkrelltop_%{version}.orig.tar.gz -Patch: gkrelltop-2.2.10-optflags.patch +Patch: gkrelltop-2.2.13-optflags.patch Requires: gkrellm >= 2.2.0 BuildRequires: gkrellm-devel >= 2.2.0 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- gkrelltop-2.2.10-optflags.patch DELETED --- From jkeating at fedoraproject.org Fri Jul 24 23:22:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:22:20 +0000 (UTC) Subject: rpms/fwbuilder/devel fwbuilder.spec,1.32,1.33 Message-ID: <20090724232220.4858911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fwbuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8779 Modified Files: fwbuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fwbuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwbuilder/devel/fwbuilder.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- fwbuilder.spec 28 Jun 2009 19:19:06 -0000 1.32 +++ fwbuilder.spec 24 Jul 2009 23:22:20 -0000 1.33 @@ -1,7 +1,7 @@ Name: fwbuilder Summary: Firewall Builder Version: 3.0.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System @@ -165,6 +165,9 @@ Policy compiler for Cisco routers/firewa %{_mandir}/man1/fwb_pix.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Ralf Ertzinger 3.0.5-1 - Update to 3.0.5 From jkeating at fedoraproject.org Fri Jul 24 23:22:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:22:36 +0000 (UTC) Subject: rpms/fwfstab/devel fwfstab.spec,1.14,1.15 Message-ID: <20090724232236.0999711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fwfstab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8996 Modified Files: fwfstab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fwfstab.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwfstab/devel/fwfstab.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- fwfstab.spec 24 Feb 2009 19:04:00 -0000 1.14 +++ fwfstab.spec 24 Jul 2009 23:22:35 -0000 1.15 @@ -2,7 +2,7 @@ Name: fwfstab Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} BuildArch: noarch Summary: A graphical file system table editor @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/pam.d/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:22:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:22:51 +0000 (UTC) Subject: rpms/fwknop/devel fwknop.spec,1.8,1.9 Message-ID: <20090724232251.DD36611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fwknop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9205 Modified Files: fwknop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fwknop.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwknop/devel/fwknop.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- fwknop.spec 14 May 2009 09:57:47 -0000 1.8 +++ fwknop.spec 24 Jul 2009 23:22:51 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A Single Packet Authorization (SPA) implementation Name: fwknop Version: 1.9.11 -Release: 1 +Release: 2 License: GPLv2 Group: System Environment/Daemons Url: http://www.cipherdyne.org/fwknop/ @@ -111,6 +111,9 @@ fi %dir %{_localstatedir}/run/fwknop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Miloslav Trma? - 1.9.11-1 - Update to fwknop-1.9.11. From jkeating at fedoraproject.org Fri Jul 24 23:23:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:23:06 +0000 (UTC) Subject: rpms/fwrestart/devel fwrestart.spec,1.7,1.8 Message-ID: <20090724232306.8E5E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fwrestart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9361 Modified Files: fwrestart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fwrestart.spec =================================================================== RCS file: /cvs/pkgs/rpms/fwrestart/devel/fwrestart.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- fwrestart.spec 24 Feb 2009 19:05:47 -0000 1.7 +++ fwrestart.spec 24 Jul 2009 23:23:06 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A way to more safely re-load firewall rules remotely Name: fwrestart Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: http://www.tummy.com/Community/software/ @@ -45,6 +45,9 @@ rm -rf "$RPM_BUILD_ROOT" %{_sbindir}/fwrestart %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:23:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:23:21 +0000 (UTC) Subject: rpms/fxload/devel fxload.spec,1.3,1.4 Message-ID: <20090724232321.CB4B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fxload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9569 Modified Files: fxload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fxload.spec =================================================================== RCS file: /cvs/pkgs/rpms/fxload/devel/fxload.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- fxload.spec 24 Feb 2009 19:06:40 -0000 1.3 +++ fxload.spec 24 Jul 2009 23:23:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: fxload Version: 2002_04_11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A helper program to download firmware into FX and FX2 EZ-USB devices Group: System Environment/Kernel @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2002_04_11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2002_04_11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:23:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:23:37 +0000 (UTC) Subject: rpms/fyre/devel fyre.spec,1.22,1.23 Message-ID: <20090724232337.93CF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fyre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9735 Modified Files: fyre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fyre.spec =================================================================== RCS file: /cvs/pkgs/rpms/fyre/devel/fyre.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- fyre.spec 24 Feb 2009 19:07:36 -0000 1.22 +++ fyre.spec 24 Jul 2009 23:23:37 -0000 1.23 @@ -1,6 +1,6 @@ Name: fyre Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tool for creating artwork from chaotic functions Group: Amusements/Graphics @@ -102,6 +102,9 @@ update-desktop-database &> /dev/null ||: %config(noreplace) %{_sysconfdir}/sysconfig/fyre %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:23:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:23:52 +0000 (UTC) Subject: rpms/g-wrap/devel g-wrap.spec,1.51,1.52 Message-ID: <20090724232352.67BB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/g-wrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9933 Modified Files: g-wrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: g-wrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/g-wrap/devel/g-wrap.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- g-wrap.spec 24 Feb 2009 19:08:30 -0000 1.51 +++ g-wrap.spec 24 Jul 2009 23:23:52 -0000 1.52 @@ -1,6 +1,6 @@ Name: g-wrap Version: 1.9.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for creating Scheme interfaces to C libraries Group: Development/Libraries @@ -123,6 +123,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:24:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:24:06 +0000 (UTC) Subject: rpms/g2clib/devel g2clib.spec,1.8,1.9 Message-ID: <20090724232406.3D12411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/g2clib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10117 Modified Files: g2clib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: g2clib.spec =================================================================== RCS file: /cvs/pkgs/rpms/g2clib/devel/g2clib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- g2clib.spec 16 Jul 2009 21:39:59 -0000 1.8 +++ g2clib.spec 24 Jul 2009 23:24:06 -0000 1.9 @@ -1,6 +1,6 @@ Name: g2clib Version: 1.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GRIB2 encoder/decoder and search/indexing routines in C Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Orion Poplawski - 1.1.9-1 - Update to 1.1.9 From jkeating at fedoraproject.org Fri Jul 24 23:24:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:24:19 +0000 (UTC) Subject: rpms/g2ipmsg/devel g2ipmsg.spec,1.3,1.4 Message-ID: <20090724232419.2903811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/g2ipmsg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10267 Modified Files: g2ipmsg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: g2ipmsg.spec =================================================================== RCS file: /cvs/pkgs/rpms/g2ipmsg/devel/g2ipmsg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- g2ipmsg.spec 24 Feb 2009 19:10:27 -0000 1.3 +++ g2ipmsg.spec 24 Jul 2009 23:24:19 -0000 1.4 @@ -1,7 +1,7 @@ Summary: IP Messenger for GNOME 2 Name: g2ipmsg Version: 0.9.6 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Internet URL: http://www.ipmsg.org/ @@ -89,6 +89,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:24:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:24:32 +0000 (UTC) Subject: rpms/g3data/devel g3data.spec,1.7,1.8 Message-ID: <20090724232432.B387711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/g3data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10424 Modified Files: g3data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: g3data.spec =================================================================== RCS file: /cvs/pkgs/rpms/g3data/devel/g3data.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- g3data.spec 2 Mar 2009 03:15:28 -0000 1.7 +++ g3data.spec 24 Jul 2009 23:24:32 -0000 1.8 @@ -1,6 +1,6 @@ Name: g3data Version: 1.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Program for extracting the data from scanned graphs Group: Applications/Engineering @@ -68,6 +68,9 @@ rm -rf %{buildroot} %doc README.TEST test1.png test1.values test2.png test2.values gpl.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Jef Spaleta - 1.5.3-1 - Update to latest release From jkeating at fedoraproject.org Fri Jul 24 23:24:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:24:46 +0000 (UTC) Subject: rpms/gabedit/devel gabedit.spec,1.5,1.6 Message-ID: <20090724232446.6DAD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gabedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10583 Modified Files: gabedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gabedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gabedit/devel/gabedit.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gabedit.spec 27 Feb 2009 01:26:26 -0000 1.5 +++ gabedit.spec 24 Jul 2009 23:24:46 -0000 1.6 @@ -4,7 +4,7 @@ Name: gabedit Summary: GUI for computational chemistry Version: %{version} -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://downloads.sourceforge.net/sourceforge/gabedit/GabeditSrc%{tarver}.tar.gz Source1: %{name}.desktop Patch2: %{name}-csh.patch @@ -110,6 +110,9 @@ fi %{_datadir}/icons/hicolor/*/apps/*.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Dominik Mierzejewski 2.1.17-1 - updated to latest development version (2.1.17) - dropped obsolete patches From jkeating at fedoraproject.org Fri Jul 24 23:25:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:25:00 +0000 (UTC) Subject: rpms/gadget/devel gadget.spec,1.2,1.3 Message-ID: <20090724232500.9CF0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gadget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10779 Modified Files: gadget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gadget.spec =================================================================== RCS file: /cvs/pkgs/rpms/gadget/devel/gadget.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gadget.spec 31 Mar 2009 10:09:37 -0000 1.2 +++ gadget.spec 24 Jul 2009 23:25:00 -0000 1.3 @@ -2,7 +2,7 @@ Name: gadget Version: 0.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XMPP server component for tracking people and activities Group: Development/Languages @@ -76,6 +76,9 @@ fi %dir /var/lib/gadget %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Simon Schampijer - 0.0.3-3 - exclude ppc64 as ejabberd is not build there #250253 From jkeating at fedoraproject.org Fri Jul 24 23:25:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:25:14 +0000 (UTC) Subject: rpms/gadmin-squid/devel gadmin-squid.spec,1.2,1.3 Message-ID: <20090724232514.6980011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gadmin-squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10966 Modified Files: gadmin-squid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gadmin-squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/gadmin-squid/devel/gadmin-squid.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gadmin-squid.spec 24 Feb 2009 19:13:15 -0000 1.2 +++ gadmin-squid.spec 24 Jul 2009 23:25:14 -0000 1.3 @@ -1,7 +1,7 @@ Summary: GADMIN-SQUID -- A GTK+ administation tool for the Squid proxy server Name: gadmin-squid Version: 0.1.0 -Release: 0.5%{?dist} +Release: 0.6%{?dist} License: GPLv3+ Group: Applications/System URL: http://sebuka.org/gadmintools/index.php?option=com_content&task=view&id=47&Itemid=37 @@ -83,6 +83,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-0.6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.0-0.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:25:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:25:30 +0000 (UTC) Subject: rpms/gai/devel gai.spec,1.32,1.33 Message-ID: <20090724232530.AEA8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gai/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11141 Modified Files: gai.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gai.spec =================================================================== RCS file: /cvs/pkgs/rpms/gai/devel/gai.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gai.spec 24 Feb 2009 19:14:13 -0000 1.32 +++ gai.spec 24 Jul 2009 23:25:30 -0000 1.33 @@ -1,6 +1,6 @@ Name: gai Version: 0.5.10 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Generic Applet Interface Group: User Interface/Desktops @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgai.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.10-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.10-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:25:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:25:46 +0000 (UTC) Subject: rpms/gai-pal/devel gai-pal.spec,1.22,1.23 Message-ID: <20090724232546.B321A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gai-pal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11285 Modified Files: gai-pal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gai-pal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gai-pal/devel/gai-pal.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- gai-pal.spec 24 Feb 2009 19:15:13 -0000 1.22 +++ gai-pal.spec 24 Jul 2009 23:25:46 -0000 1.23 @@ -3,7 +3,7 @@ Summary: GAI Pal applet Name: gai-pal Version: 0.7 -Release: 16%{?dist} +Release: 17%{?dist} Source0: %{name}-%{version}.tar.bz2 Patch0: gai-pal-0.7-xosd-empty-msg.patch Patch1: gai-pal-0.7-typo.patch @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:26:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:26:02 +0000 (UTC) Subject: rpms/gai-temp/devel gai-temp.spec,1.15,1.16 Message-ID: <20090724232602.A1BAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gai-temp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11449 Modified Files: gai-temp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gai-temp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gai-temp/devel/gai-temp.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gai-temp.spec 24 Feb 2009 19:16:11 -0000 1.15 +++ gai-temp.spec 24 Jul 2009 23:26:02 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Applet that displays HDD and CPU temperature Name: gai-temp Version: 0.1.1 -Release: 10 +Release: 11 Source0: http://leidola.newcon.de/daten/gai-temp/%{name}-%{version}.tar.gz URL: http://leidola.newcon.de/projekte/gai-temp/gai-temp-en.html License: GPL+ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:26:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:26:19 +0000 (UTC) Subject: rpms/gajim/devel gajim.spec,1.33,1.34 Message-ID: <20090724232619.3CD4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gajim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11614 Modified Files: gajim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gajim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gajim/devel/gajim.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- gajim.spec 22 Jul 2009 04:29:02 -0000 1.33 +++ gajim.spec 24 Jul 2009 23:26:19 -0000 1.34 @@ -3,7 +3,7 @@ Summary: Jabber client written in PyGTK Name: gajim Version: 0.12.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 Group: Applications/Internet URL: http://gajim.org/ @@ -101,6 +101,9 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}/trayicon.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 - Version bump to 0.12.3. (Red Hat Bugzilla #510803) * Better keepalive / ping behaviour. From jkeating at fedoraproject.org Fri Jul 24 23:26:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:26:35 +0000 (UTC) Subject: rpms/galago-daemon/devel galago-daemon.spec,1.10,1.11 Message-ID: <20090724232635.A165F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galago-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11787 Modified Files: galago-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: galago-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/galago-daemon/devel/galago-daemon.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- galago-daemon.spec 24 Feb 2009 19:18:09 -0000 1.10 +++ galago-daemon.spec 24 Jul 2009 23:26:35 -0000 1.11 @@ -1,6 +1,6 @@ Name: galago-daemon Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Galago presence daemon Group: System Environment/Daemons @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:26:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:26:50 +0000 (UTC) Subject: rpms/galago-filesystem/devel galago-filesystem.spec,1.2,1.3 Message-ID: <20090724232650.9A89011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galago-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11954 Modified Files: galago-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: galago-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/galago-filesystem/devel/galago-filesystem.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- galago-filesystem.spec 24 Feb 2009 19:19:06 -0000 1.2 +++ galago-filesystem.spec 24 Jul 2009 23:26:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: galago-filesystem Version: 0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Galago filesystem layout Group: System Environment/Base @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:27:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:27:06 +0000 (UTC) Subject: rpms/galculator/devel galculator.spec,1.17,1.18 Message-ID: <20090724232706.89A7F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galculator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12127 Modified Files: galculator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: galculator.spec =================================================================== RCS file: /cvs/pkgs/rpms/galculator/devel/galculator.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- galculator.spec 1 Mar 2009 17:27:41 -0000 1.17 +++ galculator.spec 24 Jul 2009 23:27:06 -0000 1.18 @@ -1,6 +1,6 @@ Name: galculator Version: 1.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK 2 based scientific calculator Group: Applications/Engineering @@ -55,6 +55,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Christoph Wickert - 1.3.4-1 - Update to 1.3.4 From jkeating at fedoraproject.org Fri Jul 24 23:27:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:27:34 +0000 (UTC) Subject: rpms/galeon/devel galeon.spec,1.60,1.61 Message-ID: <20090724232734.E418111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galeon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12366 Modified Files: galeon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: galeon.spec =================================================================== RCS file: /cvs/pkgs/rpms/galeon/devel/galeon.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- galeon.spec 24 Feb 2009 19:21:14 -0000 1.60 +++ galeon.spec 24 Jul 2009 23:27:34 -0000 1.61 @@ -3,7 +3,7 @@ Summary: GNOME2 Web browser based on Mozilla Name: galeon Version: 2.0.7 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://galeon.sourceforge.net/ @@ -125,6 +125,9 @@ update-desktop-database > /dev/null 2>&1 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:27:52 +0000 (UTC) Subject: rpms/gallery2/devel gallery2.spec,1.31,1.32 Message-ID: <20090724232752.0BC5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gallery2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12528 Modified Files: gallery2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gallery2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gallery2/devel/gallery2.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- gallery2.spec 17 Jul 2009 12:57:45 -0000 1.31 +++ gallery2.spec 24 Jul 2009 23:27:51 -0000 1.32 @@ -7,7 +7,7 @@ URL: http://gallery.menalto.com Name: gallery2 Version: 2.3 Group: Applications/Publishing -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ #Source0: http://dl.sf.net/gallery/gallery-%{version}-full.zip # Tarball from upstream contains prebuilt jars, some of which are not redistributable. @@ -1114,6 +1114,9 @@ fi %{installprefix}/gallery2/themes/tile/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Jon Ciesla - 2.3-14 - Upgrader patch, BZ 506983. - Removed extra slash from installer patch. From jkeating at fedoraproject.org Fri Jul 24 23:28:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:28:08 +0000 (UTC) Subject: rpms/galternatives/devel galternatives.spec,1.4,1.5 Message-ID: <20090724232808.B0A2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/galternatives/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12691 Modified Files: galternatives.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: galternatives.spec =================================================================== RCS file: /cvs/pkgs/rpms/galternatives/devel/galternatives.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- galternatives.spec 24 Feb 2009 19:23:14 -0000 1.4 +++ galternatives.spec 24 Jul 2009 23:28:08 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Alternatives Configurator Name: galternatives Version: 0.13.4 -Release: 7%{?dist} +Release: 8%{?dist} License: GPL+ Group: Applications/System URL: http://packages.qa.debian.org/g/galternatives.html @@ -97,6 +97,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/galternatives %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.13.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:28:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:28:25 +0000 (UTC) Subject: rpms/gamazons/devel gamazons.spec,1.3,1.4 Message-ID: <20090724232825.BE4B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gamazons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12870 Modified Files: gamazons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gamazons.spec =================================================================== RCS file: /cvs/pkgs/rpms/gamazons/devel/gamazons.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gamazons.spec 24 Feb 2009 19:24:11 -0000 1.3 +++ gamazons.spec 24 Jul 2009 23:28:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: gamazons Version: 0.83 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNOME Amazons Group: Amusements/Games @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.83-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.83-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:28:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:28:41 +0000 (UTC) Subject: rpms/gambas/devel gambas.spec,1.37,1.38 Message-ID: <20090724232841.C603511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gambas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13029 Modified Files: gambas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gambas.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambas/devel/gambas.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- gambas.spec 4 Mar 2009 21:42:29 -0000 1.37 +++ gambas.spec 24 Jul 2009 23:28:41 -0000 1.38 @@ -1,7 +1,7 @@ Name: gambas Summary: IDE based on a basic interpreter with object extensions Version: 1.0.19 -Release: 10%{?dist} +Release: 11%{?dist} License: GPL+ Group: Development/Tools URL: http://gambas.sourceforge.net/ @@ -422,6 +422,9 @@ fi %{_datadir}/gambas/info/gb.xml.libxml.xslt.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.19-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Tom "spot" Callaway - 1.0.19-10 - fix desktop file From jkeating at fedoraproject.org Fri Jul 24 23:28:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:28:57 +0000 (UTC) Subject: rpms/gambas2/devel gambas2.spec,1.19,1.20 Message-ID: <20090724232857.6839211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gambas2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13182 Modified Files: gambas2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gambas2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambas2/devel/gambas2.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- gambas2.spec 10 Jul 2009 22:47:01 -0000 1.19 +++ gambas2.spec 24 Jul 2009 23:28:57 -0000 1.20 @@ -1,7 +1,7 @@ Name: gambas2 Summary: IDE based on a basic interpreter with object extensions Version: 2.14.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ Group: Development/Tools URL: http://gambas.sourceforge.net/ @@ -1574,6 +1574,9 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/%{name}/info/gb.xml.xslt.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Tom "spot" Callaway - 2.14.0-1 - update to 2.14.0 - fix missing subpackages (bz 507496) From jkeating at fedoraproject.org Fri Jul 24 23:29:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:29:13 +0000 (UTC) Subject: rpms/gambit-c/devel gambit-c.spec,1.13,1.14 Message-ID: <20090724232913.8C64711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gambit-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13343 Modified Files: gambit-c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gambit-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/gambit-c/devel/gambit-c.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gambit-c.spec 24 Feb 2009 19:27:03 -0000 1.13 +++ gambit-c.spec 24 Jul 2009 23:29:13 -0000 1.14 @@ -17,7 +17,7 @@ Name: gambit-c Version: 4.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Gambit-C Scheme programming system Group: Development/Languages @@ -248,6 +248,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:29:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:29:29 +0000 (UTC) Subject: rpms/games-menus/devel games-menus.spec,1.9,1.10 Message-ID: <20090724232929.9677811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/games-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13515 Modified Files: games-menus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: games-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/games-menus/devel/games-menus.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- games-menus.spec 24 Feb 2009 19:27:57 -0000 1.9 +++ games-menus.spec 24 Jul 2009 23:29:29 -0000 1.10 @@ -1,6 +1,6 @@ Name: games-menus Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Catagorized submenus for the GNOME/KDE Games menu Group: User Interface/Desktops License: GPLv2+ @@ -64,6 +64,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:29:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:29:44 +0000 (UTC) Subject: rpms/gamin/devel gamin.spec,1.72,1.73 Message-ID: <20090724232944.D2A8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gamin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13668 Modified Files: gamin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gamin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gamin/devel/gamin.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- gamin.spec 24 Feb 2009 19:28:50 -0000 1.72 +++ gamin.spec 24 Jul 2009 23:29:44 -0000 1.73 @@ -1,7 +1,7 @@ Summary: Library providing the FAM File Alteration Monitor API Name: gamin Version: 0.1.10 -Release: 4%{?dist}%{?extra_release} +Release: 5%{?dist}%{?extra_release} License: LGPLv2 Group: Development/Libraries Source: gamin-%{version}.tar.bz2 @@ -98,6 +98,9 @@ rm -fr %{buildroot} %doc doc/python.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:30:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:30:00 +0000 (UTC) Subject: rpms/gammu/devel gammu.spec,1.27,1.28 Message-ID: <20090724233000.E5F1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gammu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13838 Modified Files: gammu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gammu.spec =================================================================== RCS file: /cvs/pkgs/rpms/gammu/devel/gammu.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gammu.spec 9 Jun 2009 18:20:46 -0000 1.27 +++ gammu.spec 24 Jul 2009 23:30:00 -0000 1.28 @@ -2,7 +2,7 @@ Name: gammu Version: 1.24.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command Line utility to work with mobile phones Group: Applications/System @@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.24.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 1.24.0-2 - Build with $RPM_OPT_FLAGS, use %%cmake macro. From jkeating at fedoraproject.org Fri Jul 24 23:30:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:30:15 +0000 (UTC) Subject: rpms/ganglia/devel ganglia.spec,1.27,1.28 Message-ID: <20090724233015.B2B3B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ganglia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14005 Modified Files: ganglia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ganglia.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganglia/devel/ganglia.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ganglia.spec 29 Mar 2009 17:19:17 -0000 1.27 +++ ganglia.spec 24 Jul 2009 23:30:15 -0000 1.28 @@ -1,6 +1,6 @@ Name: ganglia Version: 3.1.2 -Release: 3%{?svnrev:.r%{svnrev}}%{?dist} +Release: 4%{?svnrev:.r%{svnrev}}%{?dist} Summary: Ganglia Distributed Monitoring System Group: Applications/Internet @@ -269,6 +269,9 @@ fi %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Kostas Georgiou - 3.1.2-3 - Rebuilt for #492703, no obvious reasons why the previous build was bad :( From jkeating at fedoraproject.org Fri Jul 24 23:30:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:30:32 +0000 (UTC) Subject: rpms/ganymed-ssh2/devel ganymed-ssh2.spec,1.9,1.10 Message-ID: <20090724233032.7955A11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ganymed-ssh2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14171 Modified Files: ganymed-ssh2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ganymed-ssh2.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganymed-ssh2/devel/ganymed-ssh2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ganymed-ssh2.spec 24 Feb 2009 19:31:58 -0000 1.9 +++ ganymed-ssh2.spec 24 Jul 2009 23:30:32 -0000 1.10 @@ -3,7 +3,7 @@ Name: ganymed-ssh2 Version: 210 -Release: 7%{?dist} +Release: 8%{?dist} Summary: SSH-2 protocol implementation in pure Java Group: Development/Tools @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 210-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 210-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:30:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:30:47 +0000 (UTC) Subject: rpms/ganyremote/devel ganyremote.spec,1.17,1.18 Message-ID: <20090724233047.A6A6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ganyremote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14314 Modified Files: ganyremote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ganyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/ganyremote/devel/ganyremote.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ganyremote.spec 2 Jul 2009 19:45:47 -0000 1.17 +++ ganyremote.spec 24 Jul 2009 23:30:47 -0000 1.18 @@ -1,7 +1,7 @@ Summary: GTK frontend for anyRemote Name: ganyremote Version: 5.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz @@ -38,6 +38,9 @@ desktop-file-install --vendor="" rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Mikhail Fedotov - 5.10 - Threading issues were fixed. Enhanced handling of GuiAppBinary tag. From jkeating at fedoraproject.org Fri Jul 24 23:31:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:31:02 +0000 (UTC) Subject: rpms/garmin-sync/devel garmin-sync.spec,1.3,1.4 Message-ID: <20090724233102.8626111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/garmin-sync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14478 Modified Files: garmin-sync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: garmin-sync.spec =================================================================== RCS file: /cvs/pkgs/rpms/garmin-sync/devel/garmin-sync.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- garmin-sync.spec 24 Feb 2009 19:33:54 -0000 1.3 +++ garmin-sync.spec 24 Jul 2009 23:31:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: garmin-sync Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Download data from Garmin fitness computers Group: Applications/Communications License: GPLv2+ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:31:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:31:17 +0000 (UTC) Subject: rpms/garmindev/devel garmindev.spec,1.5,1.6 Message-ID: <20090724233117.7067211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/garmindev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14626 Modified Files: garmindev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: garmindev.spec =================================================================== RCS file: /cvs/pkgs/rpms/garmindev/devel/garmindev.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- garmindev.spec 20 Jul 2009 12:05:09 -0000 1.5 +++ garmindev.spec 24 Jul 2009 23:31:17 -0000 1.6 @@ -1,6 +1,6 @@ Name: garmindev Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Drivers for communication with Garmin GPS devices Group: System Environment/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Dan Hor?k 0.3.0-1 - update to version 0.3.0 From jkeating at fedoraproject.org Fri Jul 24 23:31:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:31:32 +0000 (UTC) Subject: rpms/gauche/devel gauche.spec,1.14,1.15 Message-ID: <20090724233132.C171511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gauche/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14798 Modified Files: gauche.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gauche.spec =================================================================== RCS file: /cvs/pkgs/rpms/gauche/devel/gauche.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gauche.spec 20 Jun 2009 17:17:02 -0000 1.14 +++ gauche.spec 24 Jul 2009 23:31:32 -0000 1.15 @@ -1,6 +1,6 @@ Name: gauche Version: 0.8.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Scheme script interpreter with multibyte character handling Group: Development/Languages @@ -123,6 +123,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Gerard Milmeister - 0.8.14-1 - new release 0.8.14 From jkeating at fedoraproject.org Fri Jul 24 23:31:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:31:48 +0000 (UTC) Subject: rpms/gauche-gl/devel gauche-gl.spec,1.13,1.14 Message-ID: <20090724233148.3744F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gauche-gl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14953 Modified Files: gauche-gl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gauche-gl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gauche-gl/devel/gauche-gl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gauche-gl.spec 20 Jun 2009 17:21:20 -0000 1.13 +++ gauche-gl.spec 24 Jul 2009 23:31:48 -0000 1.14 @@ -2,7 +2,7 @@ Name: gauche-gl Version: 0.4.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OpenGL binding for Gauche Group: Development/Languages @@ -81,6 +81,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Gerard Milmeister - 0.4.4-5 - updated for gauche 0.8.14 From jkeating at fedoraproject.org Fri Jul 24 23:32:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:32:01 +0000 (UTC) Subject: rpms/gauche-gtk/devel gauche-gtk.spec,1.13,1.14 Message-ID: <20090724233201.7AF0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gauche-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15111 Modified Files: gauche-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gauche-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/gauche-gtk/devel/gauche-gtk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gauche-gtk.spec 20 Jun 2009 17:23:44 -0000 1.13 +++ gauche-gtk.spec 24 Jul 2009 23:32:01 -0000 1.14 @@ -2,7 +2,7 @@ Name: gauche-gtk Version: 0.4.1 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Gauche extension module to use GTK Group: Development/Languages @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Gerard Milmeister - 0.4.1-19 - updated for gauche 0.8.14 From jkeating at fedoraproject.org Fri Jul 24 23:32:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:32:14 +0000 (UTC) Subject: rpms/gaupol/devel gaupol.spec,1.5,1.6 Message-ID: <20090724233214.A1D2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gaupol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15264 Modified Files: gaupol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gaupol.spec =================================================================== RCS file: /cvs/pkgs/rpms/gaupol/devel/gaupol.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gaupol.spec 18 May 2009 17:35:55 -0000 1.5 +++ gaupol.spec 24 Jul 2009 23:32:14 -0000 1.6 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: gaupol Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Subtitle editor Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Lucian Langa - 0.15-1 - add python-chardet as requirement - new upstream release From jkeating at fedoraproject.org Fri Jul 24 23:32:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:32:27 +0000 (UTC) Subject: rpms/gausssum/devel gausssum.spec,1.1,1.2 Message-ID: <20090724233227.A0A9B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gausssum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15432 Modified Files: gausssum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gausssum.spec =================================================================== RCS file: /cvs/pkgs/rpms/gausssum/devel/gausssum.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gausssum.spec 4 May 2009 06:24:04 -0000 1.1 +++ gausssum.spec 24 Jul 2009 23:32:27 -0000 1.2 @@ -2,7 +2,7 @@ Name: gausssum Version: 2.1.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A GUI application for analysis of output of quantum computations Group: Applications/Engineering License: GPLv2+ @@ -93,6 +93,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Jussi Lehtola - 2.1.6-3 - Final eview fixes. From jkeating at fedoraproject.org Fri Jul 24 23:32:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:32:40 +0000 (UTC) Subject: rpms/gavl/devel gavl.spec,1.1,1.2 Message-ID: <20090724233240.B259C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gavl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15587 Modified Files: gavl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gavl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gavl/devel/gavl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gavl.spec 8 Apr 2009 10:49:10 -0000 1.1 +++ gavl.spec 24 Jul 2009 23:32:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: gavl Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library for handling uncompressed audio and video data Group: System Environment/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 kwizart < kwizart at gmail.com > - 1.1.0-1 - Update to 1.1.0 - Disable buildtime CPU detection. From jkeating at fedoraproject.org Fri Jul 24 23:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:32:59 +0000 (UTC) Subject: rpms/gawk/devel gawk.spec,1.58,1.59 Message-ID: <20090724233259.9E46211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gawk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15799 Modified Files: gawk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gawk.spec =================================================================== RCS file: /cvs/pkgs/rpms/gawk/devel/gawk.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- gawk.spec 24 Feb 2009 19:39:44 -0000 1.58 +++ gawk.spec 24 Jul 2009 23:32:59 -0000 1.59 @@ -1,7 +1,7 @@ Summary: The GNU version of the awk text processing utility Name: gawk Version: 3.1.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv3+ Group: Applications/Text URL: http://www.gnu.org/software/gawk/gawk.html @@ -82,6 +82,9 @@ fi %{_datadir}/awk %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:33:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:33:13 +0000 (UTC) Subject: rpms/gazpacho/devel gazpacho.spec,1.25,1.26 Message-ID: <20090724233313.8A64B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gazpacho/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15973 Modified Files: gazpacho.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gazpacho.spec =================================================================== RCS file: /cvs/pkgs/rpms/gazpacho/devel/gazpacho.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gazpacho.spec 24 Feb 2009 19:40:42 -0000 1.25 +++ gazpacho.spec 24 Jul 2009 23:33:13 -0000 1.26 @@ -2,7 +2,7 @@ Name: gazpacho Version: 0.7.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Glade Interface Creator Group: Development/Tools @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:33:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:33:28 +0000 (UTC) Subject: rpms/gbdfed/devel gbdfed.spec,1.2,1.3 Message-ID: <20090724233328.B2D0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gbdfed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16157 Modified Files: gbdfed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gbdfed.spec =================================================================== RCS file: /cvs/pkgs/rpms/gbdfed/devel/gbdfed.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gbdfed.spec 24 Feb 2009 19:41:40 -0000 1.2 +++ gbdfed.spec 24 Jul 2009 23:33:28 -0000 1.3 @@ -1,7 +1,7 @@ Name: gbdfed Summary: Bitmap Font Editor Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Applications/System Source0: http://www.math.nmsu.edu/~mleisher/Software/gbdfed/%{name}-%{version}.tbz2 @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man1/gbdfed* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:33:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:33:43 +0000 (UTC) Subject: rpms/gbrainy/devel gbrainy.spec,1.14,1.15 Message-ID: <20090724233343.9A06711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gbrainy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16316 Modified Files: gbrainy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gbrainy.spec =================================================================== RCS file: /cvs/pkgs/rpms/gbrainy/devel/gbrainy.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gbrainy.spec 14 Apr 2009 18:26:37 -0000 1.14 +++ gbrainy.spec 24 Jul 2009 23:33:43 -0000 1.15 @@ -4,7 +4,7 @@ Name: gbrainy Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A brain teaser game and trainer to keep your brain trained Group: Amusements/Games @@ -83,6 +83,9 @@ fi %{_datadir}/pixmaps/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Beno?t Marcelin 1.1-3 - Re-enable ppc From jkeating at fedoraproject.org Fri Jul 24 23:33:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:33:58 +0000 (UTC) Subject: rpms/gc/devel gc.spec,1.40,1.41 Message-ID: <20090724233358.C989B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16502 Modified Files: gc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gc/devel/gc.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- gc.spec 19 Jul 2009 01:41:27 -0000 1.40 +++ gc.spec 24 Jul 2009 23:33:58 -0000 1.41 @@ -3,7 +3,7 @@ Summary: A garbage collector for C and C Name: gc Version: 7.1 -Release: 8%{?dist} +Release: 9%{?dist} Group: System Environment/Libraries License: BSD Url: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ @@ -121,6 +121,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 16 2009 Rex Dieter Author: jkeating Update of /cvs/pkgs/rpms/gcalctool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16666 Modified Files: gcalctool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcalctool.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcalctool/devel/gcalctool.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- gcalctool.spec 14 Jul 2009 16:06:55 -0000 1.93 +++ gcalctool.spec 24 Jul 2009 23:34:13 -0000 1.94 @@ -1,6 +1,6 @@ Name: gcalctool Version: 5.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A desktop calculator Group: Applications/System @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen - 5.27.4-1 - Update ot 5.27.4 From jkeating at fedoraproject.org Fri Jul 24 23:34:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:34:39 +0000 (UTC) Subject: rpms/gcc/devel gcc.spec,1.56,1.57 Message-ID: <20090724233439.9F6B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16906 Modified Files: gcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- gcc.spec 23 Jul 2009 16:44:00 -0000 1.56 +++ gcc.spec 24 Jul 2009 23:34:39 -0000 1.57 @@ -40,7 +40,7 @@ Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc Version: %{gcc_version} -Release: %{gcc_release} +Release: %{gcc_release}.1 # libgcc, libgfortran, libmudflap, libgomp, libstdc++ and crtstuff have # GCC Runtime Exception. License: GPLv3+, GPLv3+ with exceptions and GPLv2+ with exceptions @@ -1811,6 +1811,9 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jakub Jelinek 4.4.1-3 - update from gcc-4_4-branch - PRs rtl-optimization/40710, target/40832, tree-optimization/40321 From jkeating at fedoraproject.org Fri Jul 24 23:35:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:35:57 +0000 (UTC) Subject: rpms/gcin/devel gcin.spec,1.46,1.47 Message-ID: <20090724233557.4030711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17487 Modified Files: gcin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcin/devel/gcin.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- gcin.spec 7 May 2009 06:53:04 -0000 1.46 +++ gcin.spec 24 Jul 2009 23:35:57 -0000 1.47 @@ -1,6 +1,6 @@ Name: gcin Version: 1.4.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Input method for Traditional Chinese Group: System Environment/Libraries @@ -111,6 +111,9 @@ fi %{_libdir}/libgcin-im-client.so* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Chung-Yen Chang - 1.4.5-2 - remove gtk_bug_fix.so and rebuild From jkeating at fedoraproject.org Fri Jul 24 23:36:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:36:31 +0000 (UTC) Subject: rpms/gcl/devel gcl.spec,1.36,1.37 Message-ID: <20090724233631.C1E1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17767 Modified Files: gcl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcl/devel/gcl.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- gcl.spec 27 Apr 2009 16:17:14 -0000 1.36 +++ gcl.spec 24 Jul 2009 23:36:31 -0000 1.37 @@ -28,7 +28,7 @@ Name: gcl Version: 2.6.8 -Release: 0.3.%{alphatag}%{?dist} +Release: 0.4.%{alphatag}%{?dist} Summary: GNU Common Lisp Group: Development/Languages @@ -350,6 +350,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.8-0.4.20090303cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jerry James - 2.6.8-0.3.20090303cvs - Update to 20090303 CVS snapshot - Drop upstreamed BFD patch From jkeating at fedoraproject.org Fri Jul 24 23:36:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:36:49 +0000 (UTC) Subject: rpms/gcolor2/devel gcolor2.spec,1.1,1.2 Message-ID: <20090724233649.9015611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcolor2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17945 Modified Files: gcolor2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcolor2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcolor2/devel/gcolor2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gcolor2.spec 6 May 2009 22:20:47 -0000 1.1 +++ gcolor2.spec 24 Jul 2009 23:36:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: gcolor2 Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A simple color selector for GTK+2 Group: Applications/Publishing @@ -46,5 +46,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 16 2008 Christoph Wickert - 0.4-1 - Initial Fedora package From jkeating at fedoraproject.org Fri Jul 24 23:37:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:37:04 +0000 (UTC) Subject: rpms/gcombust/devel gcombust.spec,1.17,1.18 Message-ID: <20090724233704.B723E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcombust/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18134 Modified Files: gcombust.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcombust.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcombust/devel/gcombust.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gcombust.spec 3 Mar 2009 23:55:45 -0000 1.17 +++ gcombust.spec 24 Jul 2009 23:37:04 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Powerful graphical front-end for mkisofs and cdrecord Name: gcombust Version: 0.1.55 -Release: 15 +Release: 16 Epoch: 1 License: GPLv2+ Group: Applications/Archiving @@ -74,6 +74,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.1.55-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Robert Scheck 1:0.1.55-15 - Solve the x86_64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Fri Jul 24 23:37:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:37:19 +0000 (UTC) Subject: rpms/gcompris/devel gcompris.spec,1.45,1.46 Message-ID: <20090724233719.B1F1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcompris/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18298 Modified Files: gcompris.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcompris.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcompris/devel/gcompris.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gcompris.spec 29 Mar 2009 17:47:03 -0000 1.45 +++ gcompris.spec 24 Jul 2009 23:37:19 -0000 1.46 @@ -1,6 +1,6 @@ Name: gcompris Version: 8.4.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Educational suite for kids 2-10 years old Group: Amusements/Games License: GPLv3+ @@ -503,6 +503,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.4.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Johan Cwiklinski 8.4.12-1 - New upstream bugfix release 8.4.12 From jkeating at fedoraproject.org Fri Jul 24 23:37:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:37:35 +0000 (UTC) Subject: rpms/gconf-cleaner/devel gconf-cleaner.spec,1.5,1.6 Message-ID: <20090724233735.431C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gconf-cleaner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18474 Modified Files: gconf-cleaner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gconf-cleaner.spec =================================================================== RCS file: /cvs/pkgs/rpms/gconf-cleaner/devel/gconf-cleaner.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gconf-cleaner.spec 24 Feb 2009 19:52:11 -0000 1.5 +++ gconf-cleaner.spec 24 Jul 2009 23:37:34 -0000 1.6 @@ -1,6 +1,6 @@ Name: gconf-cleaner Version: 0.0.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A Cleaning tool for GConf Group: Applications/System @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:37:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:37:49 +0000 (UTC) Subject: rpms/gconf-editor/devel gconf-editor.spec,1.69,1.70 Message-ID: <20090724233749.BD74E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gconf-editor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18640 Modified Files: gconf-editor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gconf-editor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gconf-editor/devel/gconf-editor.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- gconf-editor.spec 12 Jun 2009 18:53:14 -0000 1.69 +++ gconf-editor.spec 24 Jul 2009 23:37:49 -0000 1.70 @@ -8,7 +8,7 @@ Summary: Editor/admin tool for GConf Name: gconf-editor Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gconf-editor/2.26/%{name}-%{version}.tar.bz2 License: GPLv2+ and GFDL @@ -112,6 +112,9 @@ fi %dir %{_datadir}/omf/gconf-editor %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Matthias Clasen - 2.26.0-2 - Port to PolicyKit 1 From jkeating at fedoraproject.org Fri Jul 24 23:38:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:38:08 +0000 (UTC) Subject: rpms/gconfmm26/devel gconfmm.spec,1.21,1.22 Message-ID: <20090724233808.F182611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gconfmm26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18851 Modified Files: gconfmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gconfmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gconfmm26/devel/gconfmm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gconfmm.spec 24 Feb 2009 19:54:14 -0000 1.21 +++ gconfmm.spec 24 Jul 2009 23:38:08 -0000 1.22 @@ -1,6 +1,6 @@ Name: gconfmm26 Version: 2.24.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrapper for GConf2 @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.24.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:38:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:38:23 +0000 (UTC) Subject: rpms/gcstar/devel gcstar.spec,1.16,1.17 Message-ID: <20090724233823.AE8F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcstar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19031 Modified Files: gcstar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcstar.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcstar/devel/gcstar.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gcstar.spec 24 Feb 2009 19:55:10 -0000 1.16 +++ gcstar.spec 24 Jul 2009 23:38:23 -0000 1.17 @@ -1,6 +1,6 @@ Name: gcstar Version: 1.4.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Personal collections manager Group: Applications/Databases @@ -101,6 +101,9 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/mime/packages/%{name}.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:38:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:38:38 +0000 (UTC) Subject: rpms/gcx/devel gcx.spec,1.7,1.8 Message-ID: <20090724233838.9EEF911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gcx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19227 Modified Files: gcx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gcx.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcx/devel/gcx.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gcx.spec 7 Apr 2009 10:56:49 -0000 1.7 +++ gcx.spec 24 Jul 2009 23:38:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: gcx Version: 0.9.11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Data-reduction tool for CCD photometry License: GPLv2+ @@ -53,6 +53,9 @@ update-desktop-database &> /dev/null || %{_datadir}/gcx %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Marek Mahut - 0.9.11-8 - Fix mime association with FITS files (RHBZ#494430) From jkeating at fedoraproject.org Fri Jul 24 23:38:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:38:54 +0000 (UTC) Subject: rpms/gd/devel gd.spec,1.52,1.53 Message-ID: <20090724233854.3452811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19411 Modified Files: gd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gd.spec =================================================================== RCS file: /cvs/pkgs/rpms/gd/devel/gd.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- gd.spec 24 Feb 2009 19:57:01 -0000 1.52 +++ gd.spec 24 Jul 2009 23:38:53 -0000 1.53 @@ -1,7 +1,7 @@ Summary: A graphics library for quick creation of PNG or JPEG images Name: gd Version: 2.0.35 -Release: 8%{?dist} +Release: 9%{?dist} Group: System Environment/Libraries License: MIT URL: http://www.libgd.org/Main_Page @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gdlib.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.35-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.35-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:39:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:39:09 +0000 (UTC) Subject: rpms/gdal/devel gdal.spec,1.65,1.66 Message-ID: <20090724233909.35F5611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19598 Modified Files: gdal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdal/devel/gdal.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- gdal.spec 22 Jul 2009 21:31:08 -0000 1.65 +++ gdal.spec 24 Jul 2009 23:39:09 -0000 1.66 @@ -1,6 +1,6 @@ Name: gdal Version: 1.6.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GIS file format library Group: System Environment/Libraries License: MIT @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 1.6.0-9 - Rebuild for libdap 3.9.3, bootstrap From jkeating at fedoraproject.org Fri Jul 24 23:39:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:39:24 +0000 (UTC) Subject: rpms/gdata-java/devel gdata-java.spec,1.2,1.3 Message-ID: <20090724233924.D2B5511C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdata-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19749 Modified Files: gdata-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdata-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdata-java/devel/gdata-java.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gdata-java.spec 24 Feb 2009 19:58:44 -0000 1.2 +++ gdata-java.spec 24 Jul 2009 23:39:24 -0000 1.3 @@ -2,7 +2,7 @@ Name: %{genericname}-java Version: 1.28.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Client libraries to write Google Data API client applications in Java Group: Development/Libraries License: ASL 2.0 @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.28.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.28.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:40:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:40:11 +0000 (UTC) Subject: rpms/gdb/devel gdb.spec,1.364,1.365 Message-ID: <20090724234011.46FCF11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20067 Modified Files: gdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb.spec,v retrieving revision 1.364 retrieving revision 1.365 diff -u -p -r1.364 -r1.365 --- gdb.spec 6 Jul 2009 21:05:46 -0000 1.364 +++ gdb.spec 24 Jul 2009 23:40:11 -0000 1.365 @@ -14,7 +14,7 @@ Version: 6.8.50.20090302 # The release always contains a leading reserved number, start it at 1. # `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing. -Release: 39%{?_with_upstream:.upstream}%{?dist} +Release: 40%{?_with_upstream:.upstream}%{?dist} License: GPLv3+ Group: Development/Debuggers @@ -881,6 +881,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.8.50.20090302-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Jan Kratochvil - 6.8.50.20090302-39 - testsuite: Fix multiple runs in parallel on a single host. - testsuite: Remove the rpmbuild option: --with parallel From jkeating at fedoraproject.org Fri Jul 24 23:40:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:40:30 +0000 (UTC) Subject: rpms/gdbm/devel gdbm.spec,1.26,1.27 Message-ID: <20090724234030.CD87311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20294 Modified Files: gdbm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdbm/devel/gdbm.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- gdbm.spec 17 Apr 2009 10:40:56 -0000 1.26 +++ gdbm.spec 24 Jul 2009 23:40:30 -0000 1.27 @@ -1,7 +1,7 @@ Summary: A GNU set of database routines which use extensible hashing Name: gdbm Version: 1.8.0 -Release: 32%{?dist} +Release: 33%{?dist} Source: http://ftp.gnu.org/gnu/gdbm/gdbm-%{version}.tar.gz Patch0: gdbm-1.8.0-jbj.patch Patch1: gdbm-1.8.0-fhs.patch @@ -98,6 +98,9 @@ fi rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.0-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Stepan Kasal - 1.8.0-32 - Clean up the spec, for merge review. From jkeating at fedoraproject.org Fri Jul 24 23:40:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:40:46 +0000 (UTC) Subject: rpms/gdeskcal/devel gdeskcal.spec,1.24,1.25 Message-ID: <20090724234046.ADFD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdeskcal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20455 Modified Files: gdeskcal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdeskcal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdeskcal/devel/gdeskcal.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- gdeskcal.spec 24 Feb 2009 20:01:39 -0000 1.24 +++ gdeskcal.spec 24 Jul 2009 23:40:46 -0000 1.25 @@ -1,6 +1,6 @@ Name: gdeskcal Version: 1.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Eye-candy calendar for your desktop Group: User Interface/Desktops License: GPL+ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:41:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:41:01 +0000 (UTC) Subject: rpms/gdesklet-SlideShow/devel gdesklet-SlideShow.spec,1.2,1.3 Message-ID: <20090724234101.B9A6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdesklet-SlideShow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20614 Modified Files: gdesklet-SlideShow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdesklet-SlideShow.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdesklet-SlideShow/devel/gdesklet-SlideShow.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gdesklet-SlideShow.spec 24 Feb 2009 20:02:31 -0000 1.2 +++ gdesklet-SlideShow.spec 24 Jul 2009 23:41:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: gdesklet-SlideShow Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A slideshow of collection for gdesklets Group: User Interface/Desktops License: GPLv2+ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gdesklets/Displays/SlideShow/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:41:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:41:16 +0000 (UTC) Subject: rpms/gdesklets/devel gdesklets.spec,1.42,1.43 Message-ID: <20090724234116.ED8C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdesklets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20779 Modified Files: gdesklets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdesklets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdesklets/devel/gdesklets.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- gdesklets.spec 24 Feb 2009 20:03:23 -0000 1.42 +++ gdesklets.spec 24 Jul 2009 23:41:16 -0000 1.43 @@ -2,7 +2,7 @@ Name: gdesklets Version: 0.36.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An interactive Imlib2 console for the X Window system Group: User Interface/Desktops @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.36.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.36.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:41:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:41:31 +0000 (UTC) Subject: rpms/gdesklets-citation/devel gdesklets-citation.spec,1.1,1.2 Message-ID: <20090724234131.8E32F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdesklets-citation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20979 Modified Files: gdesklets-citation.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdesklets-citation.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdesklets-citation/devel/gdesklets-citation.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gdesklets-citation.spec 16 Mar 2009 07:02:32 -0000 1.1 +++ gdesklets-citation.spec 24 Jul 2009 23:41:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: gdesklets-citation Version: 1.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Display quote Group: User Interface/Desktops License: GPLv3+ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 12 2009 Jonathan MERCIER - 1.5-9 - fix the spec file source0 and license From jkeating at fedoraproject.org Fri Jul 24 23:41:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:41:50 +0000 (UTC) Subject: rpms/gdesklets-goodweather/devel gdesklets-goodweather.spec, 1.6, 1.7 Message-ID: <20090724234150.81A4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdesklets-goodweather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21196 Modified Files: gdesklets-goodweather.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdesklets-goodweather.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdesklets-goodweather/devel/gdesklets-goodweather.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gdesklets-goodweather.spec 24 Feb 2009 20:04:15 -0000 1.6 +++ gdesklets-goodweather.spec 24 Jul 2009 23:41:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: gdesklets-goodweather Version: 0.31 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Themeable weather and condition display for gdesklet Group: User Interface/Desktops @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.31-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.31-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:42:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:42:05 +0000 (UTC) Subject: rpms/gdesklets-quote-of-the-day/devel gdesklets-quote-of-the-day.spec, 1.3, 1.4 Message-ID: <20090724234205.CAAF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdesklets-quote-of-the-day/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21391 Modified Files: gdesklets-quote-of-the-day.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdesklets-quote-of-the-day.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdesklets-quote-of-the-day/devel/gdesklets-quote-of-the-day.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gdesklets-quote-of-the-day.spec 24 Feb 2009 20:05:10 -0000 1.3 +++ gdesklets-quote-of-the-day.spec 24 Jul 2009 23:42:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: gdesklets-quote-of-the-day Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Quote of the day desklet for gdesklet Group: User Interface/Desktops @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:42:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:42:21 +0000 (UTC) Subject: rpms/gdevilspie/devel gdevilspie.spec,1.4,1.5 Message-ID: <20090724234221.1AAF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdevilspie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21649 Modified Files: gdevilspie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdevilspie.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdevilspie/devel/gdevilspie.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gdevilspie.spec 24 Feb 2009 20:06:07 -0000 1.4 +++ gdevilspie.spec 24 Jul 2009 23:42:20 -0000 1.5 @@ -3,7 +3,7 @@ Name: gdevilspie Version: 0.31 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A user friendly interface to the devilspie window matching daemon Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.31-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.31-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:42:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:42:36 +0000 (UTC) Subject: rpms/gdhcpd/devel gdhcpd.spec,1.6,1.7 Message-ID: <20090724234236.C92E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdhcpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21874 Modified Files: gdhcpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdhcpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdhcpd/devel/gdhcpd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gdhcpd.spec 24 Feb 2009 20:07:06 -0000 1.6 +++ gdhcpd.spec 24 Jul 2009 23:42:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: gdhcpd Version: 0.3.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GTK+ administration tool for ISC DHCPD Group: Applications/System @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:42:52 +0000 (UTC) Subject: rpms/gdk-pixbuf/devel gdk-pixbuf.spec,1.14,1.15 Message-ID: <20090724234252.D249211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdk-pixbuf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22096 Modified Files: gdk-pixbuf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdk-pixbuf.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdk-pixbuf/devel/gdk-pixbuf.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gdk-pixbuf.spec 24 Feb 2009 20:08:02 -0000 1.14 +++ gdk-pixbuf.spec 24 Jul 2009 23:42:52 -0000 1.15 @@ -1,6 +1,6 @@ Name: gdk-pixbuf Version: 0.22.0 -Release: 37%{?dist} +Release: 38%{?dist} Epoch: 1 Summary: An image loading library used with GNOME License: LGPLv2+ @@ -130,6 +130,9 @@ rm -rf %{buildroot} %{_datadir}/gnome/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22.0-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:0.22.0-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From krh at fedoraproject.org Fri Jul 24 23:43:14 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 24 Jul 2009 23:43:14 +0000 (UTC) Subject: rpms/kernel/devel drm-page-flip.patch,NONE,1.1 Message-ID: <20090724234314.38DD611C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22387 Added Files: drm-page-flip.patch Log Message: Forgot to add patch drm-page-flip.patch: drivers/gpu/drm/drm_crtc.c | 169 +++++++++++++++++++++++++++++++- drivers/gpu/drm/drm_crtc_helper.c | 12 ++ drivers/gpu/drm/drm_drv.c | 1 drivers/gpu/drm/drm_fops.c | 68 ++++++++++++ drivers/gpu/drm/drm_irq.c | 43 ++++++++ drivers/gpu/drm/i915/i915_drv.c | 1 drivers/gpu/drm/i915/intel_display.c | 24 +++- drivers/gpu/drm/radeon/atombios_crtc.c | 1 drivers/gpu/drm/radeon/radeon_display.c | 3 include/drm/drm.h | 25 ++++ include/drm/drmP.h | 32 ++++++ include/drm/drm_crtc.h | 27 +++++ include/drm/drm_crtc_helper.h | 4 include/drm/drm_mode.h | 17 +++ 14 files changed, 413 insertions(+), 14 deletions(-) --- NEW FILE drm-page-flip.patch --- >From 2c6289cd75e125745e38dc563fa33301d05923a0 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Kristian=20H=C3=B8gsberg?= Date: Mon, 13 Jul 2009 09:07:19 -0400 Subject: [PATCH] Add modesetting pageflip ioctl and corresponding drm event MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit This patch adds a vblank synced pageflip ioctl for to the modesetting family of ioctls. The ioctl takes a crtc and an fb and schedules a pageflip to the new fb at the next coming vertical blank event. This feature lets userspace implement tear-free updating of the screen contents with hw-guaranteed low latency page flipping. The ioctl is asynchronous in that it returns immediately and then later notifies the client by making an event available for reading on the drm fd. This lets applications add the drm fd to their main loop and handle other tasks while waiting for the flip to happen. The event includes the time of the flip, the frame counter and a 64 bit opaque token provided by user space in the ioctl. Based on work and suggestions from Jesse Barnes , Jakob Bornecrantz , Chris Wilson Signed-off-by: Kristian H?gsberg Signed-off-by: Jesse Barnes --- drivers/gpu/drm/drm_crtc.c | 169 ++++++++++++++++++++++++++++++- drivers/gpu/drm/drm_crtc_helper.c | 12 ++ drivers/gpu/drm/drm_drv.c | 1 + drivers/gpu/drm/drm_fops.c | 68 ++++++++++++- drivers/gpu/drm/drm_irq.c | 43 ++++++++ drivers/gpu/drm/i915/i915_drv.c | 1 + drivers/gpu/drm/i915/intel_display.c | 24 +++-- drivers/gpu/drm/radeon/atombios_crtc.c | 1 - drivers/gpu/drm/radeon/radeon_display.c | 3 +- include/drm/drm.h | 25 +++++ include/drm/drmP.h | 32 ++++++ include/drm/drm_crtc.h | 27 +++++ include/drm/drm_crtc_helper.h | 4 + include/drm/drm_mode.h | 16 +++ 14 files changed, 413 insertions(+), 13 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 8fab789..32212e6 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -34,6 +34,8 @@ #include "drmP.h" #include "drm_crtc.h" +#undef set_base + struct drm_prop_enum_list { int type; char *name; @@ -342,6 +344,34 @@ void drm_framebuffer_cleanup(struct drm_framebuffer *fb) EXPORT_SYMBOL(drm_framebuffer_cleanup); /** + * drm_crtc_async_flip - do a set_base call from a work queue + * @work: work struct + * + * Called when a set_base call is queued by the page flip code. This + * allows the flip ioctl itself to return immediately and allow userspace + * to continue working. + */ +static void drm_crtc_async_flip(struct work_struct *work) +{ + struct drm_crtc *crtc = container_of(work, struct drm_crtc, async_flip); + struct drm_device *dev = crtc->dev; + struct drm_pending_flip *pending; + + BUG_ON(crtc->pending_flip == NULL); + + mutex_lock(&dev->struct_mutex); + crtc->funcs->set_base(crtc, 0, 0, NULL); + + pending = crtc->pending_flip; + crtc->pending_flip = NULL; + + pending->frame = drm_vblank_count(dev, crtc->pipe); + list_add_tail(&pending->link, &dev->flip_list); + + mutex_unlock(&dev->struct_mutex); +} + +/** * drm_crtc_init - Initialise a new CRTC object * @dev: DRM device * @crtc: CRTC object to init @@ -352,17 +382,19 @@ EXPORT_SYMBOL(drm_framebuffer_cleanup); * * Inits a new object created as base part of an driver crtc object. */ -void drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc, +void drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc, int pipe, const struct drm_crtc_funcs *funcs) { crtc->dev = dev; crtc->funcs = funcs; + crtc->pipe = pipe; mutex_lock(&dev->mode_config.mutex); drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC); list_add_tail(&crtc->head, &dev->mode_config.crtc_list); dev->mode_config.num_crtc++; + INIT_WORK(&crtc->async_flip, drm_crtc_async_flip); mutex_unlock(&dev->mode_config.mutex); } EXPORT_SYMBOL(drm_crtc_init); @@ -381,6 +413,9 @@ void drm_crtc_cleanup(struct drm_crtc *crtc) { struct drm_device *dev = crtc->dev; + mutex_lock(&dev->mode_config.mutex); + flush_work(&crtc->async_flip); + if (crtc->gamma_store) { kfree(crtc->gamma_store); crtc->gamma_store = NULL; @@ -388,6 +423,7 @@ void drm_crtc_cleanup(struct drm_crtc *crtc) drm_mode_object_put(dev, &crtc->base); list_del(&crtc->head); + mutex_unlock(&dev->mode_config.mutex); dev->mode_config.num_crtc--; } EXPORT_SYMBOL(drm_crtc_cleanup); @@ -2452,3 +2488,134 @@ out: mutex_unlock(&dev->mode_config.mutex); return ret; } + +/** + * drm_mode_page_flip_ioctl - page flip ioctl + * @dev: DRM device + * @data: ioctl args + * @file_priv: file private data + * + * The page flip ioctl replaces the current front buffer with a new + * one, using the CRTC's set_base function, which should just update + * the front buffer base pointer. It's up to set_base to make + * sure the update doesn't result in tearing (on some hardware the + * base register is double buffered, so this is easy). + * + * Note that this covers just the simple case of flipping the front + * buffer immediately. Interval handling and interlaced modes have to + * be handled by userspace, or with new ioctls. + */ +int drm_mode_page_flip_ioctl(struct drm_device *dev, void *data, + struct drm_file *file_priv) +{ + struct drm_pending_flip *pending; + struct drm_mode_page_flip *flip_data = data; + struct drm_mode_object *drm_obj, *fb_obj; + struct drm_crtc *crtc; + int ret = 0; + + if (!(drm_core_check_feature(dev, DRIVER_MODESET))) + return -ENODEV; + + /* + * Reject unknown flags so future userspace knows what we (don't) + * support + */ + if (flip_data->flags & (~DRM_MODE_PAGE_FLIP_FLAGS_MASK)) { + DRM_DEBUG("bad page flip flags\n"); + return -EINVAL; + } + + pending = kzalloc(sizeof *pending, GFP_KERNEL); + if (pending == NULL) + return -ENOMEM; + + mutex_lock(&dev->struct_mutex); + + fb_obj = drm_mode_object_find(dev, flip_data->fb_id, + DRM_MODE_OBJECT_FB); + if (!fb_obj) { + DRM_DEBUG("unknown fb %d\n", flip_data->fb_id); + ret = -ENOENT; + goto out_unlock; + } + + drm_obj = drm_mode_object_find(dev, flip_data->crtc_id, + DRM_MODE_OBJECT_CRTC); + if (!drm_obj) { + DRM_DEBUG("unknown crtc %d\n", flip_data->crtc_id); + ret = -ENOENT; + goto out_unlock; + } + crtc = obj_to_crtc(drm_obj); + if (!crtc->enabled) { + DRM_DEBUG("crtc %d not enabled\n", flip_data->crtc_id); + ret = -EINVAL; + goto out_unlock; + } + + if (crtc->fb->funcs->unpin == NULL) { + DRM_DEBUG("fb for crtc %d does not support delayed unpin\n", + flip_data->crtc_id); + ret = -ENODEV; + goto out_unlock; + } + + pending->crtc = crtc; + pending->old_fb = crtc->fb; + pending->pipe = crtc->pipe; + pending->event.base.type = DRM_EVENT_MODE_PAGE_FLIP; + pending->event.base.length = sizeof pending->event; + pending->event.user_data = flip_data->user_data; + pending->pending_event.event = &pending->event.base; + pending->pending_event.file_priv = file_priv; + pending->pending_event.destroy = + (void (*) (struct drm_pending_event *)) kfree; + + /* Get vblank ref for completion handling */ + ret = drm_vblank_get(dev, crtc->pipe); + if (ret) { + DRM_DEBUG("failed to take vblank ref\n"); + goto out_unlock; + } + + /* + * The set_base call will change the domain on the new fb, + * which will force the rendering to finish and block the + * ioctl. We need to do this last part from a work queue, to + * avoid blocking userspace here. + */ + crtc->fb = obj_to_fb(fb_obj); + + if (crtc->pending_flip != NULL) { + struct drm_pending_flip *old_flip; + + /* We have an outstanding flip request for this crtc/pipe. + * In order to satisfy the user we can either queue the requests + * and apply them on sequential vblanks, or we can drop old + * requests. + * + * Here we choose to discard the previous request for + * simplicity. Note that since we have not yet applied the + * previous flip, we need to preserve the original (i.e. still + * current) fb. + */ + + old_flip = crtc->pending_flip; + pending->old_fb = old_flip->old_fb; + old_flip->old_fb = NULL; + drm_finish_pending_flip (dev, old_flip, 0); + } else + schedule_work(&crtc->async_flip); + crtc->pending_flip = pending; + + mutex_unlock(&dev->struct_mutex); + + return 0; + +out_unlock: + mutex_unlock(&dev->struct_mutex); + kfree(pending); + + return ret; +} diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index 3da9cfa..5a26bab 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -868,8 +868,10 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set) old_fb = set->crtc->fb; if (set->crtc->fb != set->fb) set->crtc->fb = set->fb; + mutex_lock(&dev->struct_mutex); ret = crtc_funcs->mode_set_base(set->crtc, set->x, set->y, old_fb); + mutex_unlock(&dev->struct_mutex); if (ret != 0) goto fail_set_mode; } @@ -1095,3 +1097,13 @@ int drm_helper_resume_force_mode(struct drm_device *dev) return 0; } EXPORT_SYMBOL(drm_helper_resume_force_mode); + +int +drm_crtc_helper_set_base(struct drm_crtc *crtc, int x, int y, + struct drm_framebuffer *old_fb) +{ + struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private; + + return crtc_funcs->mode_set_base(crtc, x, y, old_fb); +} +EXPORT_SYMBOL(drm_crtc_helper_set_base); diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index b39d7bf..c66c993 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -145,6 +145,7 @@ static struct drm_ioctl_desc drm_ioctls[] = { DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETFB, drm_mode_getfb, DRM_MASTER|DRM_CONTROL_ALLOW), DRM_IOCTL_DEF(DRM_IOCTL_MODE_ADDFB, drm_mode_addfb, DRM_MASTER|DRM_CONTROL_ALLOW), DRM_IOCTL_DEF(DRM_IOCTL_MODE_RMFB, drm_mode_rmfb, DRM_MASTER|DRM_CONTROL_ALLOW), + DRM_IOCTL_DEF(DRM_IOCTL_MODE_PAGE_FLIP, drm_mode_page_flip_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW), }; #define DRM_CORE_IOCTL_COUNT ARRAY_SIZE( drm_ioctls ) diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c index 251bc0e..dcd9c66 100644 --- a/drivers/gpu/drm/drm_fops.c +++ b/drivers/gpu/drm/drm_fops.c @@ -257,6 +257,8 @@ static int drm_open_helper(struct inode *inode, struct file *filp, INIT_LIST_HEAD(&priv->lhead); INIT_LIST_HEAD(&priv->fbs); + INIT_LIST_HEAD(&priv->event_list); + init_waitqueue_head(&priv->event_wait); if (dev->driver->driver_features & DRIVER_GEM) drm_gem_open(dev, priv); @@ -429,6 +431,9 @@ int drm_release(struct inode *inode, struct file *filp) { struct drm_file *file_priv = filp->private_data; struct drm_device *dev = file_priv->minor->dev; + struct drm_pending_flip *f, *ft; + struct drm_pending_event *e, *et; + int retcode = 0; lock_kernel(); @@ -451,6 +456,19 @@ int drm_release(struct inode *inode, struct file *filp) if (file_priv->minor->master) drm_master_release(dev, filp); + mutex_lock(&dev->struct_mutex); + + /* Remove pending flips */ + list_for_each_entry_safe(f, ft, &dev->flip_list, link) + if (f->pending_event.file_priv == file_priv) + drm_finish_pending_flip(dev, f, 0); + + /* Remove unconsumed events */ + list_for_each_entry_safe(e, et, &file_priv->event_list, link) + e->destroy(e); + + mutex_unlock(&dev->struct_mutex); + if (dev->driver->driver_features & DRIVER_GEM) drm_gem_release(dev, file_priv); @@ -544,9 +562,55 @@ int drm_release(struct inode *inode, struct file *filp) } EXPORT_SYMBOL(drm_release); -/** No-op. */ +ssize_t drm_read(struct file *filp, char __user *buffer, + size_t count, loff_t *offset) +{ + struct drm_file *file_priv = filp->private_data; + struct drm_device *dev = file_priv->minor->dev; + struct drm_pending_event *event; + ssize_t total, ret; + + ret = wait_event_interruptible(file_priv->event_wait, + !list_empty(&file_priv->event_list)); + if (ret < 0) + return ret; + + total = 0; + while (!list_empty(&file_priv->event_list)) { + mutex_lock(&dev->struct_mutex); + event = list_first_entry(&file_priv->event_list, + struct drm_pending_event, link); + if (total + event->event->length > count) { + mutex_unlock(&dev->struct_mutex); + break; + } + list_del(&event->link); + mutex_unlock(&dev->struct_mutex); + + if (copy_to_user(buffer + total, + event->event, event->event->length)) { + total = -EFAULT; + break; + } + + total += event->event->length; + event->destroy(event); + } + + return total; +} +EXPORT_SYMBOL(drm_read); + unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait) { - return 0; + struct drm_file *file_priv = filp->private_data; + unsigned int mask = 0; + + poll_wait(filp, &file_priv->event_wait, wait); + + if (!list_empty(&file_priv->event_list)) + mask |= POLLIN | POLLRDNORM; + + return mask; } EXPORT_SYMBOL(drm_poll); diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index b4a3dbc..c7a17f6 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c @@ -34,6 +34,7 @@ */ #include "drmP.h" +#include "drm_crtc_helper.h" #include /* For task queue support */ @@ -71,6 +72,44 @@ int drm_irq_by_busid(struct drm_device *dev, void *data, return 0; } +#define vblank_passed(a,b) ((long)(a - b) > 0) + +void drm_finish_pending_flip(struct drm_device *dev, + struct drm_pending_flip *f, u32 frame) +{ + struct timeval now; + + f->event.frame = frame; + do_gettimeofday(&now); + f->event.tv_sec = now.tv_sec; + f->event.tv_usec = now.tv_usec; + drm_vblank_put(dev, f->pipe); + list_del_init(&f->link); + list_add_tail(&f->pending_event.link, + &f->pending_event.file_priv->event_list); + if (f->old_fb) + f->old_fb->funcs->unpin(f->old_fb); + wake_up_interruptible(&f->pending_event.file_priv->event_wait); +} + +static void drm_flip_work_func(struct work_struct *work) +{ + struct drm_device *dev = + container_of(work, struct drm_device, flip_work); + struct drm_pending_flip *f, *t; + u32 frame; + + mutex_lock(&dev->struct_mutex); + + list_for_each_entry_safe(f, t, &dev->flip_list, link) { + frame = drm_vblank_count(dev, f->pipe); + if (vblank_passed(frame, f->frame)) + drm_finish_pending_flip(dev, f, frame); + } + + mutex_unlock(&dev->struct_mutex); +} + static void vblank_disable_fn(unsigned long arg) { struct drm_device *dev = (struct drm_device *)arg; @@ -161,6 +200,8 @@ int drm_vblank_init(struct drm_device *dev, int num_crtcs) atomic_set(&dev->vblank_refcount[i], 0); } + INIT_LIST_HEAD(&dev->flip_list); + INIT_WORK(&dev->flip_work, drm_flip_work_func); dev->vblank_disable_allowed = 0; return 0; @@ -626,5 +667,7 @@ void drm_handle_vblank(struct drm_device *dev, int crtc) { atomic_inc(&dev->_vblank_count[crtc]); DRM_WAKEUP(&dev->vbl_queue[crtc]); + schedule_work(&dev->flip_work); } EXPORT_SYMBOL(drm_handle_vblank); + diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index fc4b68a..322b0f2 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c @@ -203,6 +203,7 @@ static struct drm_driver driver = { .mmap = drm_gem_mmap, .poll = drm_poll, .fasync = drm_fasync, + .read = drm_read, #ifdef CONFIG_COMPAT .compat_ioctl = i915_compat_ioctl, #endif diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 508838e..697c31a 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -863,6 +863,8 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, u32 dspcntr, alignment; int ret; + BUG_ON(!mutex_is_locked(&dev->struct_mutex)); + /* no fb bound */ if (!crtc->fb) { DRM_DEBUG("No FB bound\n"); @@ -898,17 +900,14 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, BUG(); } - mutex_lock(&dev->struct_mutex); ret = i915_gem_object_pin(obj, alignment); if (ret != 0) { - mutex_unlock(&dev->struct_mutex); return ret; } ret = i915_gem_object_set_to_gtt_domain(obj, 1); if (ret != 0) { i915_gem_object_unpin(obj); - mutex_unlock(&dev->struct_mutex); return ret; } @@ -944,7 +943,6 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, default: DRM_ERROR("Unknown color depth\n"); i915_gem_object_unpin(obj); - mutex_unlock(&dev->struct_mutex); return -EINVAL; } if (IS_I965G(dev)) { @@ -972,13 +970,11 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, I915_READ(dspbase); } - intel_wait_for_vblank(dev); - if (old_fb) { intel_fb = to_intel_framebuffer(old_fb); + intel_wait_for_vblank(dev); i915_gem_object_unpin(intel_fb->obj); } - mutex_unlock(&dev->struct_mutex); if (!dev->primary->master) return 0; @@ -2364,7 +2360,9 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, I915_WRITE(dspcntr_reg, dspcntr); /* Flush the plane changes */ + mutex_lock(&dev->struct_mutex); ret = intel_pipe_set_base(crtc, x, y, old_fb); + mutex_unlock(&dev->struct_mutex); intel_update_watermarks(dev); @@ -2840,6 +2838,7 @@ static const struct drm_crtc_funcs intel_crtc_funcs = { .gamma_set = intel_crtc_gamma_set, .set_config = drm_crtc_helper_set_config, .destroy = intel_crtc_destroy, + .set_base = drm_crtc_helper_set_base, }; @@ -2852,7 +2851,7 @@ static void intel_crtc_init(struct drm_device *dev, int pipe) if (intel_crtc == NULL) return; - drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs); + drm_crtc_init(dev, &intel_crtc->base, pipe, &intel_crtc_funcs); drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256); intel_crtc->pipe = pipe; @@ -3071,9 +3070,18 @@ static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb, return drm_gem_handle_create(file_priv, object, handle); } +static void intel_user_framebuffer_unpin(struct drm_framebuffer *fb) +{ + struct intel_framebuffer *intel_fb; + + intel_fb = to_intel_framebuffer(fb); + i915_gem_object_unpin(intel_fb->obj); +} + static const struct drm_framebuffer_funcs intel_fb_funcs = { .destroy = intel_user_framebuffer_destroy, .create_handle = intel_user_framebuffer_create_handle, + .unpin = intel_user_framebuffer_unpin }; int intel_framebuffer_create(struct drm_device *dev, diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c index c0080cc..501209d 100644 --- a/drivers/gpu/drm/radeon/atombios_crtc.c +++ b/drivers/gpu/drm/radeon/atombios_crtc.c @@ -535,7 +535,6 @@ static const struct drm_crtc_helper_funcs atombios_helper_funcs = { .dpms = atombios_crtc_dpms, .mode_fixup = atombios_crtc_mode_fixup, .mode_set = atombios_crtc_mode_set, - .mode_set_base = atombios_crtc_set_base, .prepare = atombios_crtc_prepare, .commit = atombios_crtc_commit, }; diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c index 3efcf1a..372ba35 100644 --- a/drivers/gpu/drm/radeon/radeon_display.c +++ b/drivers/gpu/drm/radeon/radeon_display.c @@ -171,6 +171,7 @@ static const struct drm_crtc_funcs radeon_crtc_funcs = { .gamma_set = radeon_crtc_gamma_set, .set_config = drm_crtc_helper_set_config, .destroy = radeon_crtc_destroy, + .set_base = radeon_crtc_set_base, }; static void radeon_crtc_init(struct drm_device *dev, int index) @@ -183,7 +184,7 @@ static void radeon_crtc_init(struct drm_device *dev, int index) if (radeon_crtc == NULL) return; - drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs); + drm_crtc_init(dev, &radeon_crtc->base, index, &radeon_crtc_funcs); drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256); radeon_crtc->crtc_id = index; diff --git a/include/drm/drm.h b/include/drm/drm.h index 7cb50bd..1920323 100644 --- a/include/drm/drm.h +++ b/include/drm/drm.h @@ -686,6 +686,7 @@ struct drm_gem_open { #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xAD, struct drm_mode_fb_cmd) #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xAE, struct drm_mode_fb_cmd) #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xAF, unsigned int) +#define DRM_IOCTL_MODE_PAGE_FLIP DRM_IOW( 0xB0, struct drm_mode_page_flip) /** * Device specific ioctls should only be in their respective headers @@ -698,6 +699,30 @@ struct drm_gem_open { #define DRM_COMMAND_BASE 0x40 #define DRM_COMMAND_END 0xA0 +/** + * Header for events written back to userspace on the drm fd. The + * type defines the type of event, the length specifies the total + * length of the event (including the header), and user_data is + * typically a 64 bit value passed with the ioctl that triggered the + * event. A read on the drm fd will always only return complete + * events, that is, if for example the read buffer is 100 bytes, and + * there are two 64 byte events pending, only one will be returned. + */ +struct drm_event { + __u32 type; + __u32 length; +}; + +#define DRM_EVENT_MODE_PAGE_FLIP 0x01 + +struct drm_event_page_flip { + struct drm_event base; + __u64 user_data; + __u32 tv_sec; + __u32 tv_usec; + __u32 frame; +}; + /* typedef area */ #ifndef __KERNEL__ typedef struct drm_clip_rect drm_clip_rect_t; diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 45b67d9..4ff43ab 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -402,6 +402,14 @@ struct drm_buf_entry { struct drm_freelist freelist; }; +/* Event queued up for userspace to read */ +struct drm_pending_event { + struct drm_event *event; + struct list_head link; + struct drm_file *file_priv; + void (*destroy) (struct drm_pending_event *event); +}; + /** File private data */ struct drm_file { int authenticated; @@ -425,6 +433,9 @@ struct drm_file { struct drm_master *master; /* master this node is currently associated with N.B. not always minor->master */ struct list_head fbs; + + wait_queue_head_t event_wait; + struct list_head event_list; }; /** Wait queue */ @@ -873,6 +884,16 @@ struct drm_minor { struct drm_mode_group mode_group; }; +struct drm_pending_flip { + struct drm_pending_event pending_event; + struct drm_framebuffer *old_fb; + struct drm_crtc *crtc; + u32 frame; + int pipe; + struct list_head link; + struct drm_event_page_flip event; +}; + /** * DRM device structure. This structure represent a complete card that * may contain multiple heads. @@ -972,6 +993,13 @@ struct drm_device { u32 max_vblank_count; /**< size of vblank counter register */ + struct work_struct flip_work; + + /** + * List of objects waiting on flip completion + */ + struct list_head flip_list; + /*@} */ cycles_t ctx_start; cycles_t lck_start; @@ -1108,6 +1136,8 @@ extern int drm_lastclose(struct drm_device *dev); extern int drm_open(struct inode *inode, struct file *filp); extern int drm_stub_open(struct inode *inode, struct file *filp); extern int drm_fasync(int fd, struct file *filp, int on); +extern ssize_t drm_read(struct file *filp, char __user *buffer, + size_t count, loff_t *offset); extern int drm_release(struct inode *inode, struct file *filp); /* Mapping support (drm_vm.h) */ @@ -1274,6 +1304,8 @@ extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc); extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc); extern int drm_modeset_ctl(struct drm_device *dev, void *data, struct drm_file *file_priv); +extern void drm_finish_pending_flip(struct drm_device *dev, + struct drm_pending_flip *f, u32 frame); /* AGP/GART support (drm_agpsupport.h) */ extern struct drm_agp_head *drm_agp_init(struct drm_device *dev); diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 7300fb8..0b5dc47 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -238,6 +238,12 @@ struct drm_display_info { }; struct drm_framebuffer_funcs { + /* + * Unpin the old fb after setting a mode. Must be called + * after the old framebuffer is no longer visible, ie, after + * the next vblank, typically. + */ + void (*unpin)(struct drm_framebuffer *fb); void (*destroy)(struct drm_framebuffer *framebuffer); int (*create_handle)(struct drm_framebuffer *fb, struct drm_file *file_priv, @@ -288,6 +294,7 @@ struct drm_property { struct drm_crtc; struct drm_connector; struct drm_encoder; +struct drm_pending_flip; /** * drm_crtc_funcs - control CRTCs for a given device @@ -331,17 +338,29 @@ struct drm_crtc_funcs { void (*destroy)(struct drm_crtc *crtc); int (*set_config)(struct drm_mode_set *set); + + /* + * Move the crtc on the current fb to the given position. + * This function is optional. If old_fb is provided, the + * function will wait for vblank and unpin it. If old_fb is + * NULL, nothing is unpinned and the caller must call + * mode_unpin_fb to release the old framebuffer. + */ + int (*set_base)(struct drm_crtc *crtc, int x, int y, + struct drm_framebuffer *old_fb); }; /** * drm_crtc - central CRTC control structure * @enabled: is this CRTC enabled? + * @pipe: pipe number (as seen by DRM vblank functions) * @x: x position on screen * @y: y position on screen * @desired_mode: new desired mode * @desired_x: desired x for desired_mode * @desired_y: desired y for desired_mode * @funcs: CRTC control functions + * @async_work: work queue for async set base calls * * Each CRTC may have one or more connectors associated with it. This structure * allows the CRTC to be controlled. @@ -359,6 +378,7 @@ struct drm_crtc { struct drm_display_mode mode; + int pipe; int x, y; struct drm_display_mode *desired_mode; int desired_x, desired_y; @@ -368,6 +388,10 @@ struct drm_crtc { uint32_t gamma_size; uint16_t *gamma_store; + /* Allow async set_pipe_base calls for flipping */ + struct work_struct async_flip; + struct drm_pending_flip *pending_flip; + /* if you are using the helper */ void *helper_private; }; @@ -589,6 +613,7 @@ struct drm_mode_config { extern void drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc, + int pipe, const struct drm_crtc_funcs *funcs); extern void drm_crtc_cleanup(struct drm_crtc *crtc); @@ -736,4 +761,6 @@ extern int drm_mode_gamma_get_ioctl(struct drm_device *dev, extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv); extern bool drm_detect_hdmi_monitor(struct edid *edid); +extern int drm_mode_page_flip_ioctl(struct drm_device *dev, void *data, + struct drm_file *file_priv); #endif /* __DRM_CRTC_H__ */ diff --git a/include/drm/drm_crtc_helper.h b/include/drm/drm_crtc_helper.h index 6769ff6..dd10566 100644 --- a/include/drm/drm_crtc_helper.h +++ b/include/drm/drm_crtc_helper.h @@ -123,4 +123,8 @@ static inline void drm_connector_helper_add(struct drm_connector *connector, } extern int drm_helper_resume_force_mode(struct drm_device *dev); + +extern int drm_crtc_helper_set_base(struct drm_crtc *crtc, int x, int y, + struct drm_framebuffer *old_fb); + #endif diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h index ae304cc..464b779 100644 --- a/include/drm/drm_mode.h +++ b/include/drm/drm_mode.h @@ -265,4 +265,20 @@ struct drm_mode_crtc_lut { __u64 blue; }; +#define DRM_MODE_PAGE_FLIP_WAIT (1<<0) /* block on previous page flip */ +#define DRM_MODE_PAGE_FLIP_FLAGS_MASK (DRM_MODE_PAGE_FLIP_WAIT) + +struct drm_mode_page_flip { + /** Handle of new front buffer */ + __u32 fb_id; + __u32 crtc_id; + + /* 64 bit cookie returned to userspace in the page flip event. */ + __u64 user_data; + /** + * page flip flags (wait on flip only for now) + */ + __u32 flags; +}; + #endif -- 1.6.3.3 From jkeating at fedoraproject.org Fri Jul 24 23:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:43:09 +0000 (UTC) Subject: rpms/gdl/devel gdl.spec,1.47,1.48 Message-ID: <20090724234309.12DDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22321 Modified Files: gdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdl/devel/gdl.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gdl.spec 16 Mar 2009 15:21:05 -0000 1.47 +++ gdl.spec 24 Jul 2009 23:43:08 -0000 1.48 @@ -2,7 +2,7 @@ Name: gdl Version: 0.9 -Release: 0.5.rc2.20090312%{?dist} +Release: 0.6.rc2.20090312%{?dist} Summary: GNU Data Language Group: Applications/Engineering @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-0.6.rc2.20090312 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 - Orion Poplawski - 0.9-0.5.rc2.20090312 - Back off building python module until configure macro is updated From jkeating at fedoraproject.org Fri Jul 24 23:43:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:43:23 +0000 (UTC) Subject: rpms/gdmap/devel gdmap.spec,1.15,1.16 Message-ID: <20090724234323.DF48111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22554 Modified Files: gdmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdmap/devel/gdmap.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gdmap.spec 24 Feb 2009 20:09:49 -0000 1.15 +++ gdmap.spec 24 Jul 2009 23:43:23 -0000 1.16 @@ -1,6 +1,6 @@ Name: gdmap Version: 0.8.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool which allows to visualize disk space Group: Applications/System @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:43:39 +0000 (UTC) Subject: rpms/gdome2/devel gdome2.spec,1.14,1.15 Message-ID: <20090724234339.201F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22798 Modified Files: gdome2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdome2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdome2/devel/gdome2.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gdome2.spec 24 Feb 2009 20:10:50 -0000 1.14 +++ gdome2.spec 24 Jul 2009 23:43:38 -0000 1.15 @@ -1,6 +1,6 @@ Name: gdome2 Version: 0.8.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: DOM level 2 library for accessing XML files Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:43:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:43:53 +0000 (UTC) Subject: rpms/gdpc/devel gdpc.spec,1.1,1.2 Message-ID: <20090724234353.EFA3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gdpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23002 Modified Files: gdpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gdpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdpc/devel/gdpc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gdpc.spec 17 Jul 2009 20:03:56 -0000 1.1 +++ gdpc.spec 24 Jul 2009 23:43:53 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A program for visualising molecular dynamics simulations data Name: gdpc Version: 2.2.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.frantz.fi/software/gdpc.php @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_datadir}/applications/gdpc.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Jussi Lehtola - 2.2.5-1 - Conversion of spec to Fedora. * Sat Dec 11 2004 Jonas Frantz From jkeating at fedoraproject.org Fri Jul 24 23:44:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:44:09 +0000 (UTC) Subject: rpms/gds2pov/devel gds2pov.spec,1.5,1.6 Message-ID: <20090724234409.1381911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gds2pov/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23219 Modified Files: gds2pov.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gds2pov.spec =================================================================== RCS file: /cvs/pkgs/rpms/gds2pov/devel/gds2pov.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gds2pov.spec 24 Feb 2009 20:11:42 -0000 1.5 +++ gds2pov.spec 24 Jul 2009 23:44:08 -0000 1.6 @@ -1,6 +1,6 @@ Name: gds2pov Version: 0.20080229 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GDS2 layout file to POV-Ray conversion Group: Applications/Engineering @@ -74,6 +74,9 @@ cd build %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080229-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080229-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:44:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:44:37 +0000 (UTC) Subject: rpms/geany/devel geany.spec,1.25,1.26 Message-ID: <20090724234437.302D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23584 Modified Files: geany.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/devel/geany.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- geany.spec 20 Jun 2009 18:12:18 -0000 1.25 +++ geany.spec 24 Jul 2009 23:44:37 -0000 1.26 @@ -1,6 +1,6 @@ Name: geany Version: 0.17 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A fast and lightweight IDE using GTK2 Group: Development/Tools @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/geany.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Jonathan G. Underwood - 0.17-7 - Fix commentary about button pixmap patch in spec file From jkeating at fedoraproject.org Fri Jul 24 23:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:44:52 +0000 (UTC) Subject: rpms/geanyvc/devel geanyvc.spec,1.3,1.4 Message-ID: <20090724234452.1938D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geanyvc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23800 Modified Files: geanyvc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geanyvc.spec =================================================================== RCS file: /cvs/pkgs/rpms/geanyvc/devel/geanyvc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- geanyvc.spec 28 May 2009 07:32:34 -0000 1.3 +++ geanyvc.spec 24 Jul 2009 23:44:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: geanyvc Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Version Controler plugin for geany Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/geany/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 pingou 0.5-5 - Rebuild for geany 0.17 From jkeating at fedoraproject.org Fri Jul 24 23:45:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:45:06 +0000 (UTC) Subject: rpms/gearmand/devel gearmand.spec,1.7,1.8 Message-ID: <20090724234506.D7FA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gearmand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24022 Modified Files: gearmand.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gearmand.spec =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/gearmand.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gearmand.spec 14 Jul 2009 14:54:57 -0000 1.7 +++ gearmand.spec 24 Jul 2009 23:45:06 -0000 1.8 @@ -1,6 +1,6 @@ Name: gearmand Version: 0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A distributed job system Group: System Environment/Daemons @@ -130,6 +130,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Ruben Kerkhof 0.8-1 - Upstream released new version - Enable libmemcached backend From jkeating at fedoraproject.org Fri Jul 24 23:45:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:45:23 +0000 (UTC) Subject: rpms/gears-backgrounds/devel gears-backgrounds.spec,1.2,1.3 Message-ID: <20090724234523.0B35911C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gears-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24231 Modified Files: gears-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gears-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/gears-backgrounds/devel/gears-backgrounds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gears-backgrounds.spec 24 Feb 2009 20:13:30 -0000 1.2 +++ gears-backgrounds.spec 24 Jul 2009 23:45:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: gears-backgrounds Version: 0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Gears desktop backgrounds Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:45:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:45:37 +0000 (UTC) Subject: rpms/gecko-sharp2/devel gecko-sharp2.spec,1.30,1.31 Message-ID: <20090724234537.BFEAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gecko-sharp2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24441 Modified Files: gecko-sharp2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gecko-sharp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gecko-sharp2/devel/gecko-sharp2.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gecko-sharp2.spec 17 Jun 2009 22:20:23 -0000 1.30 +++ gecko-sharp2.spec 24 Jul 2009 23:45:37 -0000 1.31 @@ -1,6 +1,6 @@ Name: gecko-sharp2 Version: 0.13 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Gecko bindings for Mono Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Paul F. Johnson -0.13-3 - Add ppc64 support From jkeating at fedoraproject.org Fri Jul 24 23:45:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:45:52 +0000 (UTC) Subject: rpms/geda-docs/devel geda-docs.spec,1.12,1.13 Message-ID: <20090724234552.991C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24643 Modified Files: geda-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-docs/devel/geda-docs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- geda-docs.spec 24 Feb 2009 20:15:23 -0000 1.12 +++ geda-docs.spec 24 Jul 2009 23:45:52 -0000 1.13 @@ -3,7 +3,7 @@ Name: geda-docs Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Documentation for gEDA Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:46:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:46:09 +0000 (UTC) Subject: rpms/geda-examples/devel geda-examples.spec,1.15,1.16 Message-ID: <20090724234609.0E9D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-examples/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24847 Modified Files: geda-examples.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-examples.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-examples/devel/geda-examples.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- geda-examples.spec 24 Feb 2009 20:16:23 -0000 1.15 +++ geda-examples.spec 24 Jul 2009 23:46:08 -0000 1.16 @@ -3,7 +3,7 @@ Name: geda-examples Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Circuit examples for gEDA Group: Applications/Engineering From mtruch at fedoraproject.org Fri Jul 24 23:46:23 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 23:46:23 +0000 (UTC) Subject: rpms/kst/devel kst-except.diff,1.2,1.3 kst.spec,1.36,1.37 Message-ID: <20090724234623.44DA611C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24975 Modified Files: kst-except.diff kst.spec Log Message: problem with patch, now fixed. kst-except.diff: Makefile.am | 1 Makefile.in | 270 +++++++++++++++++++++++------------------------------------- 2 files changed, 106 insertions(+), 165 deletions(-) Index: kst-except.diff =================================================================== RCS file: /cvs/extras/rpms/kst/devel/kst-except.diff,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kst-except.diff 24 Jul 2009 22:19:15 -0000 1.2 +++ kst-except.diff 24 Jul 2009 23:46:22 -0000 1.3 @@ -12,19 +12,6 @@ diff -u kst-1.8.0/kst/src/plugins/fits_n diff -u kst-1.8.0/kst/src/plugins/fits_nonlinear/general_levenberg_marquardt/Makefile.in kst-1.8.0-exceptions/kst/src/plugins/fits_nonlinear/general_levenberg_marquardt/Makefile.in --- kst-1.8.0/kst/src/plugins/fits_nonlinear/general_levenberg_marquardt/Makefile.in 2009-07-02 15:47:56.000000000 -0400 +++ kst-1.8.0-exceptions/kst/src/plugins/fits_nonlinear/general_levenberg_marquardt/Makefile.in 2009-07-22 00:24:50.000000000 -0400 -@@ -1,9 +1,9 @@ --# Makefile.in generated by automake 1.10.1 from Makefile.am. --# KDE tags expanded automatically by am_edit - $Revision$ -+# Makefile.in generated by automake 1.11 from Makefile.am. - # @configure_input@ - - # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, --# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -+# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -+# Inc. - # This Makefile.in is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. @@ -18,8 +18,9 @@ VPATH = @srcdir@ Index: kst.spec =================================================================== RCS file: /cvs/extras/rpms/kst/devel/kst.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- kst.spec 24 Jul 2009 22:19:15 -0000 1.36 +++ kst.spec 24 Jul 2009 23:46:23 -0000 1.37 @@ -254,6 +254,9 @@ rm -rf %{buildroot} %{_datadir}/services/kst/kstdata_dirfile.desktop %changelog +* Fri Jul 24 2009 Matthew Truch - 1.8.0-3 +- Really fix the patch. Don't know how it wasn't fixed the first time. + * Fri Jul 24 2009 Matthew Truch - 1.8.0-2 - Fix patch so it doesn't require fuzz. From jkeating at fedoraproject.org Fri Jul 24 23:46:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:46:24 +0000 (UTC) Subject: rpms/geda-gattrib/devel geda-gattrib.spec,1.19,1.20 Message-ID: <20090724234624.D163011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-gattrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25076 Modified Files: geda-gattrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-gattrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-gattrib/devel/geda-gattrib.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- geda-gattrib.spec 7 Mar 2009 10:50:17 -0000 1.19 +++ geda-gattrib.spec 24 Jul 2009 23:46:24 -0000 1.20 @@ -2,7 +2,7 @@ Name: geda-gattrib Version: 20081231 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Attribute editor for gEDA Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:46:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:46:39 +0000 (UTC) Subject: rpms/geda-gnetlist/devel geda-gnetlist.spec,1.18,1.19 Message-ID: <20090724234639.DCA4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-gnetlist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25387 Modified Files: geda-gnetlist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-gnetlist.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-gnetlist/devel/geda-gnetlist.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- geda-gnetlist.spec 24 Feb 2009 20:18:16 -0000 1.18 +++ geda-gnetlist.spec 24 Jul 2009 23:46:39 -0000 1.19 @@ -2,7 +2,7 @@ Name: geda-gnetlist Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Netlister for the gEDA project Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:46:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:46:57 +0000 (UTC) Subject: rpms/geda-gschem/devel geda-gschem.spec,1.19,1.20 Message-ID: <20090724234657.0280E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-gschem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25683a Modified Files: geda-gschem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-gschem.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-gschem/devel/geda-gschem.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- geda-gschem.spec 7 Mar 2009 10:48:57 -0000 1.19 +++ geda-gschem.spec 24 Jul 2009 23:46:56 -0000 1.20 @@ -2,7 +2,7 @@ Name: geda-gschem Version: 20081231 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Electronics schematics editor Group: Applications/Engineering From mtruch at fedoraproject.org Fri Jul 24 23:47:00 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Fri, 24 Jul 2009 23:47:00 +0000 (UTC) Subject: rpms/kst/devel kst.spec,1.37,1.38 Message-ID: <20090724234700.12FEF11C00CE@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25591 Modified Files: kst.spec Log Message: bump release. Index: kst.spec =================================================================== RCS file: /cvs/extras/rpms/kst/devel/kst.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- kst.spec 24 Jul 2009 23:46:23 -0000 1.37 +++ kst.spec 24 Jul 2009 23:46:59 -0000 1.38 @@ -1,6 +1,6 @@ Name: kst Version: 1.8.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A data viewing program for KDE Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:47:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:47:12 +0000 (UTC) Subject: rpms/geda-gsymcheck/devel geda-gsymcheck.spec,1.16,1.17 Message-ID: <20090724234712.DC9C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-gsymcheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26245 Modified Files: geda-gsymcheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-gsymcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-gsymcheck/devel/geda-gsymcheck.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- geda-gsymcheck.spec 24 Feb 2009 20:20:12 -0000 1.16 +++ geda-gsymcheck.spec 24 Jul 2009 23:47:12 -0000 1.17 @@ -2,7 +2,7 @@ Name: geda-gsymcheck Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Symbol checker for electronics schematics editor Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:47:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:47:28 +0000 (UTC) Subject: rpms/geda-symbols/devel geda-symbols.spec,1.16,1.17 Message-ID: <20090724234728.B320D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-symbols/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26613 Modified Files: geda-symbols.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-symbols.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-symbols/devel/geda-symbols.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- geda-symbols.spec 24 Feb 2009 20:21:13 -0000 1.16 +++ geda-symbols.spec 24 Jul 2009 23:47:28 -0000 1.17 @@ -2,7 +2,7 @@ Name: geda-symbols Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Electronic symbols for gEDA Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:47:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:47:44 +0000 (UTC) Subject: rpms/geda-utils/devel geda-utils.spec,1.16,1.17 Message-ID: <20090724234744.0C8BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geda-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26764 Modified Files: geda-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geda-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/geda-utils/devel/geda-utils.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- geda-utils.spec 24 Feb 2009 20:22:08 -0000 1.16 +++ geda-utils.spec 24 Jul 2009 23:47:43 -0000 1.17 @@ -2,7 +2,7 @@ Name: geda-utils Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Several utilities for the gEDA project Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:48:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:48:01 +0000 (UTC) Subject: rpms/gedit/devel gedit.spec,1.197,1.198 Message-ID: <20090724234801.771CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26944 Modified Files: gedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit/devel/gedit.spec,v retrieving revision 1.197 retrieving revision 1.198 diff -u -p -r1.197 -r1.198 --- gedit.spec 16 Jul 2009 18:04:05 -0000 1.197 +++ gedit.spec 24 Jul 2009 23:48:01 -0000 1.198 @@ -18,7 +18,7 @@ Summary: Text editor for the GNOME desktop Name: gedit Version: 2.27.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Applications/Editors @@ -233,6 +233,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Matthias Clasen - 1:2.27.2-2 - Make some stubborn buttons behave From jkeating at fedoraproject.org Fri Jul 24 23:48:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:48:17 +0000 (UTC) Subject: rpms/gedit-latex-plugin/devel gedit-latex-plugin.spec,1.3,1.4 Message-ID: <20090724234817.A065A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gedit-latex-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27099 Modified Files: gedit-latex-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gedit-latex-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-latex-plugin/devel/gedit-latex-plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gedit-latex-plugin.spec 17 Jun 2009 14:33:45 -0000 1.3 +++ gedit-latex-plugin.spec 24 Jul 2009 23:48:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: gedit-latex-plugin Version: 0.2 -Release: 0.1.rc2%{?dist} +Release: 0.2.rc2%{?dist} Summary: Gedit plugin for composing and compiling LaTeX documents %define upname LaTeXPlugin @@ -55,6 +55,9 @@ rm -rf %{buildroot} #%{_datadir}/gedit-2/plugins/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-0.2.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Sergio Pascual - 0.2-0.1rc2 - New upstream source From jkeating at fedoraproject.org Fri Jul 24 23:48:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:48:32 +0000 (UTC) Subject: rpms/gedit-plugins/devel gedit-plugins.spec,1.9,1.10 Message-ID: <20090724234832.D319A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gedit-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27263 Modified Files: gedit-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gedit-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-plugins/devel/gedit-plugins.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gedit-plugins.spec 11 Apr 2009 14:22:54 -0000 1.9 +++ gedit-plugins.spec 24 Jul 2009 23:48:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: gedit-plugins Version: 2.26.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugins for gedit Group: Applications/Editors @@ -91,6 +91,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Dodji Seketeli - 2.26.1-1 - Update to upstream release 2..26.1 - Fixes GNOME bugzilla bug #576766 - Crash when Configuring "Draw Spaces" From jkeating at fedoraproject.org Fri Jul 24 23:48:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:48:48 +0000 (UTC) Subject: rpms/gedit-vala/devel gedit-vala.spec,1.7,1.8 Message-ID: <20090724234848.BAE4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gedit-vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27417 Modified Files: gedit-vala.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gedit-vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/gedit-vala/devel/gedit-vala.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gedit-vala.spec 14 Jul 2009 08:25:51 -0000 1.7 +++ gedit-vala.spec 24 Jul 2009 23:48:48 -0000 1.8 @@ -3,7 +3,7 @@ Name: gedit-vala Version: 0.5.0 -Release: 0.1.%{svn_rev}svn%{?dist} +Release: 0.2.%{svn_rev}svn%{?dist} Summary: Vala Toys for gEdit Group: Applications/Editors @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-0.2.r319svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Michel Salim - 0.5.0-0.1.r319svn%{?dist} - Update to SVN rev 319 (needed to build against vala 0.7.x) From jkeating at fedoraproject.org Fri Jul 24 23:49:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:49:03 +0000 (UTC) Subject: rpms/geekcode/devel geekcode.spec,1.3,1.4 Message-ID: <20090724234903.DBF6711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geekcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27576 Modified Files: geekcode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geekcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/geekcode/devel/geekcode.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- geekcode.spec 24 Feb 2009 20:25:51 -0000 1.3 +++ geekcode.spec 24 Jul 2009 23:49:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: geekcode Version: 1.7.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Geek Code generator Summary(pl): Generator Geek Code @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.7.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:49:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:49:19 +0000 (UTC) Subject: rpms/geeqie/devel geeqie.spec,1.22,1.23 Message-ID: <20090724234919.0843311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geeqie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27717 Modified Files: geeqie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geeqie.spec =================================================================== RCS file: /cvs/pkgs/rpms/geeqie/devel/geeqie.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- geeqie.spec 6 Jul 2009 17:37:09 -0000 1.22 +++ geeqie.spec 24 Jul 2009 23:49:18 -0000 1.23 @@ -3,7 +3,7 @@ Summary: Image browser and viewer Name: geeqie Version: 1.0 -Release: 0.18.beta2%{?dist} +Release: 0.19.beta2%{?dist} License: GPLv3 Group: User Interface/X # svn + autogen @@ -89,6 +89,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.19.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Michael Schwendt - 1.0-0.18.beta2 - update to beta2 tarball - BR intltool From jkeating at fedoraproject.org Fri Jul 24 23:49:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:49:33 +0000 (UTC) Subject: rpms/gegl/devel gegl.spec,1.18,1.19 Message-ID: <20090724234933.A6EC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gegl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27871 Modified Files: gegl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gegl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gegl/devel/gegl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gegl.spec 3 Jul 2009 13:31:10 -0000 1.18 +++ gegl.spec 24 Jul 2009 23:49:33 -0000 1.19 @@ -1,7 +1,7 @@ Summary: A graph based image processing framework Name: gegl Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} # The binary is under the GPL, while the libs are under LGPL License: LGPLv3+ and GPLv3+ Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 02 2009 Nils Philippsen - 0.1.0-1 - fix cflags for building From krh at fedoraproject.org Fri Jul 24 23:49:46 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 24 Jul 2009 23:49:46 +0000 (UTC) Subject: rpms/kernel/devel kernel.spec,1.1655,1.1656 Message-ID: <20090724234946.BC03611C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27983 Modified Files: kernel.spec Log Message: * Fri Jul 24 2009 Kristian H?gsberg - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. - Really add patch. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1655 retrieving revision 1.1656 diff -u -p -r1.1655 -r1.1656 --- kernel.spec 24 Jul 2009 23:16:23 -0000 1.1655 +++ kernel.spec 24 Jul 2009 23:49:46 -0000 1.1656 @@ -1895,6 +1895,7 @@ fi * Fri Jul 24 2009 Kristian H?gsberg - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. +- Really add patch. * Fri Jul 24 2009 Chuck Ebbert - Enable CONFIG_DEBUG_KOBJECT in debug kernels. (#513606) From jkeating at fedoraproject.org Fri Jul 24 23:49:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:49:48 +0000 (UTC) Subject: rpms/geglmm/devel geglmm.spec,1.3,1.4 Message-ID: <20090724234948.CA42911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geglmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28024 Modified Files: geglmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geglmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/geglmm/devel/geglmm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- geglmm.spec 7 Jul 2009 07:32:18 -0000 1.3 +++ geglmm.spec 24 Jul 2009 23:49:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: geglmm Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A graphic processing library, C++ bindings Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/libgeglmm.la %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Dodji Seketeli - 0.1.0-1 - Update to new upstream release (0.1.0) - Remove add-cstdio.patch and kill-warnings.patch From jkeating at fedoraproject.org Fri Jul 24 23:50:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:50:04 +0000 (UTC) Subject: rpms/gemdropx/devel gemdropx.spec,1.4,1.5 Message-ID: <20090724235004.0B6FD11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gemdropx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28190 Modified Files: gemdropx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gemdropx.spec =================================================================== RCS file: /cvs/pkgs/rpms/gemdropx/devel/gemdropx.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gemdropx.spec 24 Feb 2009 20:29:33 -0000 1.4 +++ gemdropx.spec 24 Jul 2009 23:50:03 -0000 1.5 @@ -1,6 +1,6 @@ Name: gemdropx Version: 0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Falling blocks puzzlegame Group: Amusements/Games License: GPL+ @@ -71,6 +71,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:50:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:50:19 +0000 (UTC) Subject: rpms/genchemlab/devel genchemlab.spec,1.8,1.9 Message-ID: <20090724235019.279DE11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/genchemlab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28406 Modified Files: genchemlab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: genchemlab.spec =================================================================== RCS file: /cvs/pkgs/rpms/genchemlab/devel/genchemlab.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- genchemlab.spec 24 Feb 2009 20:30:33 -0000 1.8 +++ genchemlab.spec 24 Jul 2009 23:50:18 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A general chemistry lab experiment simulator Name: genchemlab Version: 1.0 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Multimedia Source0: http://kent.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tgz @@ -46,6 +46,9 @@ desktop-file-install --vendor fedora \ %{_datadir}/applications/fedora-genchemlab.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:50:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:50:33 +0000 (UTC) Subject: rpms/generic-logos/devel generic-logos.spec,1.11,1.12 Message-ID: <20090724235033.E866F11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/generic-logos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28608 Modified Files: generic-logos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: generic-logos.spec =================================================================== RCS file: /cvs/pkgs/rpms/generic-logos/devel/generic-logos.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- generic-logos.spec 12 May 2009 18:37:58 -0000 1.11 +++ generic-logos.spec 24 Jul 2009 23:50:33 -0000 1.12 @@ -1,7 +1,7 @@ Name: generic-logos Summary: Icons and pictures Version: 11.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base Source0: generic-logos-%{version}.tar.bz2 License: GPLv2 and LGPL @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT # end i386 bits %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Bill Nottingham - 11.0.1-1 - Add new plymouth artwork (#500239) From jkeating at fedoraproject.org Fri Jul 24 23:50:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:50:49 +0000 (UTC) Subject: rpms/generic-release/devel generic-release.spec,1.7,1.8 Message-ID: <20090724235049.C41D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/generic-release/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28786 Modified Files: generic-release.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: generic-release.spec =================================================================== RCS file: /cvs/pkgs/rpms/generic-release/devel/generic-release.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- generic-release.spec 20 May 2009 17:03:15 -0000 1.7 +++ generic-release.spec 24 Jul 2009 23:50:49 -0000 1.8 @@ -4,7 +4,7 @@ Summary: Generic release files Name: generic-release Version: 11.90 -Release: 1 +Release: 2 License: GPLv2 Group: System Environment/Base Source: %{name}-%{version}.tar.gz @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.Generic-Release-Notes %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Tom "spot" Callaway - 11.90-1 - Build for F12 collection From jkeating at fedoraproject.org Fri Jul 24 23:51:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:51:04 +0000 (UTC) Subject: rpms/gengetopt/devel gengetopt.spec,1.9,1.10 Message-ID: <20090724235104.CBE0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gengetopt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28984 Modified Files: gengetopt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gengetopt.spec =================================================================== RCS file: /cvs/pkgs/rpms/gengetopt/devel/gengetopt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gengetopt.spec 24 Feb 2009 20:33:28 -0000 1.9 +++ gengetopt.spec 24 Jul 2009 23:51:04 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Tool to write command line option parsing code for C programs Name: gengetopt Version: 2.22.1 -Release: 2%{dist} +Release: 3%{dist} License: GPLv3+ Group: Development/Tools URL: http://www.gnu.org/software/gengetopt/ @@ -89,6 +89,9 @@ fi %{_datadir}/%{name}/gnugetopt.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.22.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.22.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:51:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:51:19 +0000 (UTC) Subject: rpms/genius/devel genius.spec,1.12,1.13 Message-ID: <20090724235119.F19DB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/genius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29151 Modified Files: genius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: genius.spec =================================================================== RCS file: /cvs/pkgs/rpms/genius/devel/genius.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- genius.spec 17 Jun 2009 16:30:15 -0000 1.12 +++ genius.spec 24 Jul 2009 23:51:19 -0000 1.13 @@ -1,6 +1,6 @@ Name: genius Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An arbitrary precision integer and multiple precision floatingpoint calculator Group: Applications/Engineering @@ -126,6 +126,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Gerard Milmeister - 1.0.6-1 - new release 1.0.6 From jkeating at fedoraproject.org Fri Jul 24 23:51:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:51:33 +0000 (UTC) Subject: rpms/genromfs/devel genromfs.spec,1.23,1.24 Message-ID: <20090724235133.C130411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/genromfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29332 Modified Files: genromfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: genromfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/genromfs/devel/genromfs.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- genromfs.spec 24 Feb 2009 20:35:27 -0000 1.23 +++ genromfs.spec 24 Jul 2009 23:51:33 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Utility for creating romfs filesystems Name: genromfs Version: 0.5.2 -Release: 2 +Release: 3 License: GPLv2+ Group: System Environment/Base URL: http://romfs.sourceforge.net/ @@ -39,6 +39,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:51:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:51:49 +0000 (UTC) Subject: rpms/gentoo/devel gentoo.spec,1.15,1.16 Message-ID: <20090724235149.4291411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gentoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29524 Modified Files: gentoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gentoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gentoo/devel/gentoo.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gentoo.spec 9 Jun 2009 18:12:15 -0000 1.15 +++ gentoo.spec 24 Jul 2009 23:51:49 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Graphical file management program in GTK+ for Linux Name: gentoo Version: 0.15.2 -Release: 2 +Release: 3 License: GPLv2 Group: Applications/File URL: http://www.obsession.se/gentoo/ @@ -80,6 +80,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 0.15.2-2 - Build with $RPM_OPT_FLAGS (#499710). - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Fri Jul 24 23:52:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:52:03 +0000 (UTC) Subject: rpms/genus2reduction/devel genus2reduction.spec,1.2,1.3 Message-ID: <20090724235203.CDB6911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/genus2reduction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29683 Modified Files: genus2reduction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: genus2reduction.spec =================================================================== RCS file: /cvs/pkgs/rpms/genus2reduction/devel/genus2reduction.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- genus2reduction.spec 11 May 2009 18:30:40 -0000 1.2 +++ genus2reduction.spec 24 Jul 2009 23:52:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: genus2reduction Version: 0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Computes Reductions of Genus 2 Proper Smooth Curves Group: Applications/Engineering License: GPLv2 @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Ville Skytt? - 0.3-4 - Build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Fri Jul 24 23:52:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:52:21 +0000 (UTC) Subject: rpms/geoclue/devel geoclue.spec,1.17,1.18 Message-ID: <20090724235221.153E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geoclue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29866 Modified Files: geoclue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geoclue.spec =================================================================== RCS file: /cvs/pkgs/rpms/geoclue/devel/geoclue.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- geoclue.spec 23 Jul 2009 21:44:18 -0000 1.17 +++ geoclue.spec 24 Jul 2009 23:52:20 -0000 1.18 @@ -9,7 +9,7 @@ Name: geoclue Version: 0.11.1.1 -Release: 0.7.%{snapshot}%{?dist} +Release: 0.8.%{snapshot}%{?dist} Summary: A modular geoinformation service Group: System Environment/Libraries @@ -169,6 +169,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/org.freedesktop.Geoclue.Providers.Gypsy.service %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.1.1-0.8.20090310git3a31d26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Peter Robinson 0.11.1.1-0.7.%{gitdate}git%{git_version} - Move develop documentation to its own noarch package to fix RHBZ 513488 From jkeating at fedoraproject.org Fri Jul 24 23:52:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:52:37 +0000 (UTC) Subject: rpms/geomview/devel geomview.spec,1.46,1.47 Message-ID: <20090724235237.1597011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geomview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30057 Modified Files: geomview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geomview.spec =================================================================== RCS file: /cvs/pkgs/rpms/geomview/devel/geomview.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- geomview.spec 24 Feb 2009 20:38:21 -0000 1.46 +++ geomview.spec 24 Jul 2009 23:52:36 -0000 1.47 @@ -7,7 +7,7 @@ Name: geomview Summary: Interactive 3D viewing program Version: 1.9.4 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Url: http://www.geomview.org/ @@ -212,6 +212,9 @@ update-mime-database %{_datadir}/mime > %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:52:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:52:53 +0000 (UTC) Subject: rpms/geoqo/devel geoqo.spec,1.9,1.10 Message-ID: <20090724235253.65B9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geoqo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30241 Modified Files: geoqo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geoqo.spec =================================================================== RCS file: /cvs/pkgs/rpms/geoqo/devel/geoqo.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- geoqo.spec 9 Mar 2009 18:03:49 -0000 1.9 +++ geoqo.spec 24 Jul 2009 23:52:53 -0000 1.10 @@ -1,7 +1,7 @@ Summary: GeoCaching and General Waypoint Database Name: geoqo Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Amusements/Games URL: http://www.geoqo.org/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/geoqo/scripts/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Wes Hardaker - 1.01-1 - Upgrade to upstream 1.01 From jkeating at fedoraproject.org Fri Jul 24 23:53:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:53:12 +0000 (UTC) Subject: rpms/geos/devel geos.spec,1.20,1.21 Message-ID: <20090724235312.BEA0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30459 Modified Files: geos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geos.spec =================================================================== RCS file: /cvs/pkgs/rpms/geos/devel/geos.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- geos.spec 6 Jul 2009 06:15:01 -0000 1.20 +++ geos.spec 24 Jul 2009 23:53:12 -0000 1.21 @@ -1,6 +1,6 @@ Name: geos Version: 3.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GEOS is a C++ port of the Java Topology Suite Group: Applications/Engineering @@ -137,6 +137,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Devrim GUNDUZ - 3.1.1-1 - Update to 3.1.1 - Update URL and download URL. From jkeating at fedoraproject.org Fri Jul 24 23:53:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:53:29 +0000 (UTC) Subject: rpms/gerbv/devel gerbv.spec,1.11,1.12 Message-ID: <20090724235329.06FCA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gerbv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30652 Modified Files: gerbv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gerbv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gerbv/devel/gerbv.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gerbv.spec 12 Jul 2009 09:19:26 -0000 1.11 +++ gerbv.spec 24 Jul 2009 23:53:28 -0000 1.12 @@ -1,6 +1,6 @@ Name: gerbv Version: 2.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gerber file viewer from the gEDA toolkit Group: Applications/Engineering From jkeating at fedoraproject.org Fri Jul 24 23:53:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:53:46 +0000 (UTC) Subject: rpms/geronimo-specs/devel geronimo-specs.spec,1.24,1.25 Message-ID: <20090724235346.5BF5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/geronimo-specs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30848 Modified Files: geronimo-specs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: geronimo-specs.spec =================================================================== RCS file: /cvs/pkgs/rpms/geronimo-specs/devel/geronimo-specs.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- geronimo-specs.spec 7 May 2009 19:14:51 -0000 1.24 +++ geronimo-specs.spec 24 Jul 2009 23:53:46 -0000 1.25 @@ -84,7 +84,7 @@ Summary: Geronimo J2EE server J2E URL: http://geronimo.apache.org/ Name: geronimo-specs Version: 1.2 -Release: 13.1%{?dist} +Release: 14.1%{?dist} Epoch: 0 License: ASL 2.0 Group: Development/Libraries/Java @@ -3289,6 +3289,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2-14.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 David Walluck 0:1.2-13.1 - enable tests - correctly define gcj_support From jkeating at fedoraproject.org Fri Jul 24 23:54:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:54:00 +0000 (UTC) Subject: rpms/gestikk/devel gestikk.spec,1.3,1.4 Message-ID: <20090724235400.F276411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gestikk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31042 Modified Files: gestikk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gestikk.spec =================================================================== RCS file: /cvs/pkgs/rpms/gestikk/devel/gestikk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gestikk.spec 28 Feb 2009 18:42:17 -0000 1.3 +++ gestikk.spec 24 Jul 2009 23:54:00 -0000 1.4 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: gestikk Version: 0.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Use mouse gestures to control your PC Group: Applications/System @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Nicoleau Fabien - 0.6.1-4 - Fix desktop file * Tue Feb 24 2009 Fedora Release Engineering - 0.6.1-3 From jkeating at fedoraproject.org Fri Jul 24 23:54:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:54:16 +0000 (UTC) Subject: rpms/getdata/devel getdata.spec,1.6,1.7 Message-ID: <20090724235416.E9CE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/getdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31244 Modified Files: getdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: getdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/getdata/devel/getdata.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- getdata.spec 23 Feb 2009 20:44:11 -0000 1.6 +++ getdata.spec 24 Jul 2009 23:54:16 -0000 1.7 @@ -1,6 +1,6 @@ Name: getdata Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for reading and writing dirfile data Group: Development/Libraries @@ -102,6 +102,9 @@ rm -rf %{buildroot} %{_libdir}/libgetdatabzip2*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Matthew Truch - 0.5.0-2 - Bump for mass rebuild. From jkeating at fedoraproject.org Fri Jul 24 23:54:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:54:33 +0000 (UTC) Subject: rpms/getmail/devel getmail.spec,1.10,1.11 Message-ID: <20090724235433.1603D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/getmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31432 Modified Files: getmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: getmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/getmail/devel/getmail.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- getmail.spec 18 Jul 2009 07:15:42 -0000 1.10 +++ getmail.spec 24 Jul 2009 23:54:32 -0000 1.11 @@ -3,7 +3,7 @@ Summary: POP3, IMAP4 and SDPS mail retriever with Maildir delivery Name: getmail Version: 4.9.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Internet URL: http://pyropus.ca/software/getmail/ @@ -55,6 +55,9 @@ Getmail is written entirely in python. %{python_sitelib}/getmailcore/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Dean Mander - 4.9.2-1 - Update to release 4.9.2 From jkeating at fedoraproject.org Fri Jul 24 23:54:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:54:47 +0000 (UTC) Subject: rpms/gettext/devel gettext.spec,1.98,1.99 Message-ID: <20090724235447.DDE3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31572 Modified Files: gettext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/gettext/devel/gettext.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- gettext.spec 24 Jun 2009 08:06:32 -0000 1.98 +++ gettext.spec 24 Jul 2009 23:54:47 -0000 1.99 @@ -5,7 +5,7 @@ Summary: GNU libraries and utilities for producing multi-lingual messages Name: gettext Version: 0.17 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv3 and LGPLv2+ Group: Development/Tools URL: http://www.gnu.org/software/gettext/ @@ -271,6 +271,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Jens Petersen - 0.17-13 - buildrequire automake (#507275) - run autogen From jkeating at fedoraproject.org Fri Jul 24 23:55:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:55:00 +0000 (UTC) Subject: rpms/gfa/devel gfa.spec,1.6,1.7 Message-ID: <20090724235500.BC54F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31728 Modified Files: gfa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfa.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfa/devel/gfa.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gfa.spec 24 Feb 2009 20:45:56 -0000 1.6 +++ gfa.spec 24 Jul 2009 23:55:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: gfa Version: 0.4.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: GTK+ fast address book Group: Applications/Productivity @@ -51,6 +51,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:55:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:55:13 +0000 (UTC) Subject: rpms/gfan/devel gfan.spec,1.3,1.4 Message-ID: <20090724235513.91D1E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31876 Modified Files: gfan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfan.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfan/devel/gfan.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gfan.spec 26 Feb 2009 22:41:43 -0000 1.3 +++ gfan.spec 24 Jul 2009 23:55:13 -0000 1.4 @@ -1,6 +1,6 @@ Name: gfan Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Software for Computing Gr?bner Fans and Tropical Varieties Group: Applications/Engineering License: GPL+ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Conrad Meyer - 0.3-5 - Include the right place for headers (fix FTBFS). From jkeating at fedoraproject.org Fri Jul 24 23:55:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:55:26 +0000 (UTC) Subject: rpms/gfeed/devel gfeed.spec,1.3,1.4 Message-ID: <20090724235526.82A6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32025 Modified Files: gfeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfeed/devel/gfeed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gfeed.spec 24 Feb 2009 20:47:52 -0000 1.3 +++ gfeed.spec 24 Jul 2009 23:55:26 -0000 1.4 @@ -1,6 +1,6 @@ Name: gfeed Version: 2.5.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: RSS feed reader Summary(pl): Czytnik kana?u RSS Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/icon.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:55:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:55:39 +0000 (UTC) Subject: rpms/gflags/devel gflags.spec,1.5,1.6 Message-ID: <20090724235539.BE9B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gflags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32169 Modified Files: gflags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gflags.spec =================================================================== RCS file: /cvs/pkgs/rpms/gflags/devel/gflags.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gflags.spec 26 Feb 2009 22:02:52 -0000 1.5 +++ gflags.spec 24 Jul 2009 23:55:39 -0000 1.6 @@ -2,7 +2,7 @@ Name: gflags Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for commandline flag processing Group: Development/Tools @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/google/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Debarshi Ray - 1.0-3 - Fixed build failure with gcc-4.4. From jkeating at fedoraproject.org Fri Jul 24 23:55:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:55:53 +0000 (UTC) Subject: rpms/gforth/devel gforth.spec,1.11,1.12 Message-ID: <20090724235553.C3D4D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gforth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32340 Modified Files: gforth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gforth.spec =================================================================== RCS file: /cvs/pkgs/rpms/gforth/devel/gforth.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gforth.spec 24 Feb 2009 20:49:46 -0000 1.11 +++ gforth.spec 24 Jul 2009 23:55:53 -0000 1.12 @@ -1,6 +1,6 @@ Name: gforth Version: 0.7.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast and portable implementation of the ANS Forth language Group: Development/Languages @@ -131,6 +131,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:56:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:56:06 +0000 (UTC) Subject: rpms/gfs-ambrosia-fonts/devel gfs-ambrosia-fonts.spec,1.5,1.6 Message-ID: <20090724235606.6C66711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-ambrosia-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32480 Modified Files: gfs-ambrosia-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-ambrosia-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-ambrosia-fonts/devel/gfs-ambrosia-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-ambrosia-fonts.spec 24 Feb 2009 20:50:44 -0000 1.5 +++ gfs-ambrosia-fonts.spec 24 Jul 2009 23:56:06 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080624 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Ambrosia majuscule Greek font Group: User Interface/X @@ -80,6 +80,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080624-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080624-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:56:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:56:19 +0000 (UTC) Subject: rpms/gfs-artemisia-fonts/devel gfs-artemisia-fonts.spec,1.11,1.12 Message-ID: <20090724235619.D5AC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-artemisia-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32616 Modified Files: gfs-artemisia-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-artemisia-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-artemisia-fonts/devel/gfs-artemisia-fonts.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gfs-artemisia-fonts.spec 24 Feb 2009 20:51:39 -0000 1.11 +++ gfs-artemisia-fonts.spec 24 Jul 2009 23:56:19 -0000 1.12 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070415 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GFS Artemisia fonts Group: User Interface/X @@ -69,6 +69,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070415-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070415-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:56:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:56:35 +0000 (UTC) Subject: rpms/gfs-baskerville-fonts/devel gfs-baskerville-fonts.spec, 1.11, 1.12 Message-ID: <20090724235635.1304A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-baskerville-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv304 Modified Files: gfs-baskerville-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-baskerville-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-baskerville-fonts/devel/gfs-baskerville-fonts.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gfs-baskerville-fonts.spec 24 Feb 2009 20:52:37 -0000 1.11 +++ gfs-baskerville-fonts.spec 24 Jul 2009 23:56:34 -0000 1.12 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070327 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GFS Baskerville Greek font Group: User Interface/X @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070327-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070327-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:56:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:56:49 +0000 (UTC) Subject: rpms/gfs-bodoni-classic-fonts/devel gfs-bodoni-classic-fonts.spec, 1.10, 1.11 Message-ID: <20090724235649.E04A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-bodoni-classic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv456 Modified Files: gfs-bodoni-classic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-bodoni-classic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-bodoni-classic-fonts/devel/gfs-bodoni-classic-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gfs-bodoni-classic-fonts.spec 24 Feb 2009 20:53:39 -0000 1.10 +++ gfs-bodoni-classic-fonts.spec 24 Jul 2009 23:56:49 -0000 1.11 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070415 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GFS Bodoni Classic oblique Greek font Group: User Interface/X @@ -78,6 +78,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070415-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070415-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:57:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:57:04 +0000 (UTC) Subject: rpms/gfs-bodoni-fonts/devel gfs-bodoni-fonts.spec,1.10,1.11 Message-ID: <20090724235704.E8CBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-bodoni-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv620 Modified Files: gfs-bodoni-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-bodoni-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-bodoni-fonts/devel/gfs-bodoni-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gfs-bodoni-fonts.spec 24 Feb 2009 20:54:38 -0000 1.10 +++ gfs-bodoni-fonts.spec 24 Jul 2009 23:57:04 -0000 1.11 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070415 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GFS Bodoni fonts Group: User Interface/X @@ -66,6 +66,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070415-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070415-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:57:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:57:19 +0000 (UTC) Subject: rpms/gfs-complutum-fonts/devel gfs-complutum-fonts.spec,1.9,1.10 Message-ID: <20090724235719.E40AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-complutum-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv768 Modified Files: gfs-complutum-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-complutum-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-complutum-fonts/devel/gfs-complutum-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-complutum-fonts.spec 24 Feb 2009 20:55:40 -0000 1.9 +++ gfs-complutum-fonts.spec 24 Jul 2009 23:57:19 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070413 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GFS Complutum Greek font Group: User Interface/X @@ -88,6 +88,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070413-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070413-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:57:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:57:35 +0000 (UTC) Subject: rpms/gfs-decker-fonts/devel gfs-decker-fonts.spec,1.1,1.2 Message-ID: <20090724235735.0072111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-decker-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv922 Modified Files: gfs-decker-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-decker-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-decker-fonts/devel/gfs-decker-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gfs-decker-fonts.spec 23 Jun 2009 06:10:37 -0000 1.1 +++ gfs-decker-fonts.spec 24 Jul 2009 23:57:34 -0000 1.2 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20090618 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GFS Decker Greek fonts Group: User Interface/X @@ -78,6 +78,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090618-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Nicolas Mailhot - 20090618-1 ? initial packaging From jkeating at fedoraproject.org Fri Jul 24 23:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:57:49 +0000 (UTC) Subject: rpms/gfs-didot-classic-fonts/devel gfs-didot-classic-fonts.spec, 1.10, 1.11 Message-ID: <20090724235749.A46C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-didot-classic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1069 Modified Files: gfs-didot-classic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-didot-classic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-didot-classic-fonts/devel/gfs-didot-classic-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gfs-didot-classic-fonts.spec 24 Feb 2009 20:56:34 -0000 1.10 +++ gfs-didot-classic-fonts.spec 24 Jul 2009 23:57:49 -0000 1.11 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080702 -Release: 6%{?dist} +Release: 7%{?dist} Summary: GFS Didot Classic Greek font Group: User Interface/X @@ -77,6 +77,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080702-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080702-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:58:04 +0000 (UTC) Subject: rpms/gfs-didot-fonts/devel gfs-didot-fonts.spec,1.9,1.10 Message-ID: <20090724235804.D769511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-didot-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1214 Modified Files: gfs-didot-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-didot-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-didot-fonts/devel/gfs-didot-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-didot-fonts.spec 24 Feb 2009 20:57:32 -0000 1.9 +++ gfs-didot-fonts.spec 24 Jul 2009 23:58:04 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070616 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GFS Didot fonts Group: User Interface/X @@ -65,6 +65,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070616-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070616-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:58:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:58:19 +0000 (UTC) Subject: rpms/gfs-eustace-fonts/devel gfs-eustace-fonts.spec,1.5,1.6 Message-ID: <20090724235819.D010E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-eustace-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1381 Modified Files: gfs-eustace-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-eustace-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-eustace-fonts/devel/gfs-eustace-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-eustace-fonts.spec 24 Feb 2009 20:58:25 -0000 1.5 +++ gfs-eustace-fonts.spec 24 Jul 2009 23:58:19 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080303 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Eustace majuscule Greek font Group: User Interface/X @@ -81,6 +81,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080303-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080303-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:58:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:58:34 +0000 (UTC) Subject: rpms/gfs-fleischman-fonts/devel gfs-fleischman-fonts.spec,1.5,1.6 Message-ID: <20090724235834.0F5F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-fleischman-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1549 Modified Files: gfs-fleischman-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-fleischman-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-fleischman-fonts/devel/gfs-fleischman-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-fleischman-fonts.spec 24 Feb 2009 20:59:16 -0000 1.5 +++ gfs-fleischman-fonts.spec 24 Jul 2009 23:58:33 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080303 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Fleischman majuscule Greek font Group: User Interface/X @@ -81,6 +81,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080303-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080303-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:58:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:58:48 +0000 (UTC) Subject: rpms/gfs-garaldus-fonts/devel gfs-garaldus-fonts.spec,1.5,1.6 Message-ID: <20090724235848.B89F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-garaldus-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1726 Modified Files: gfs-garaldus-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-garaldus-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-garaldus-fonts/devel/gfs-garaldus-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-garaldus-fonts.spec 24 Feb 2009 21:00:10 -0000 1.5 +++ gfs-garaldus-fonts.spec 24 Jul 2009 23:58:48 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080707 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Garaldus majuscule Greek font Group: User Interface/X @@ -77,6 +77,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080707-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080707-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:59:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:59:03 +0000 (UTC) Subject: rpms/gfs-gazis-fonts/devel gfs-gazis-fonts.spec,1.10,1.11 Message-ID: <20090724235903.DB1D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-gazis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1868 Modified Files: gfs-gazis-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-gazis-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-gazis-fonts/devel/gfs-gazis-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gfs-gazis-fonts.spec 24 Feb 2009 21:01:07 -0000 1.10 +++ gfs-gazis-fonts.spec 24 Jul 2009 23:59:03 -0000 1.11 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080318 -Release: 7%{?dist} +Release: 8%{?dist} Summary: GFS Gazis Greek font Group: User Interface/X @@ -76,6 +76,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080318-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080318-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:59:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:59:18 +0000 (UTC) Subject: rpms/gfs-jackson-fonts/devel gfs-jackson-fonts.spec,1.5,1.6 Message-ID: <20090724235918.16E6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-jackson-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2027 Modified Files: gfs-jackson-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-jackson-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-jackson-fonts/devel/gfs-jackson-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-jackson-fonts.spec 24 Feb 2009 21:02:00 -0000 1.5 +++ gfs-jackson-fonts.spec 24 Jul 2009 23:59:17 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080303 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Jackson majuscule Greek font Group: User Interface/X @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080303-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080303-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:59:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:59:30 +0000 (UTC) Subject: rpms/gfs-neohellenic-fonts/devel gfs-neohellenic-fonts.spec, 1.10, 1.11 Message-ID: <20090724235930.E21B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-neohellenic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2173 Modified Files: gfs-neohellenic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-neohellenic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-neohellenic-fonts/devel/gfs-neohellenic-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gfs-neohellenic-fonts.spec 24 Feb 2009 21:02:52 -0000 1.10 +++ gfs-neohellenic-fonts.spec 24 Jul 2009 23:59:30 -0000 1.11 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20081217 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GFS Neohellenic fonts Group: User Interface/X @@ -85,6 +85,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20081217-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20081217-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:59:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:59:44 +0000 (UTC) Subject: rpms/gfs-nicefore-fonts/devel gfs-nicefore-fonts.spec,1.5,1.6 Message-ID: <20090724235944.B129811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-nicefore-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2332 Modified Files: gfs-nicefore-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-nicefore-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-nicefore-fonts/devel/gfs-nicefore-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gfs-nicefore-fonts.spec 24 Feb 2009 21:03:44 -0000 1.5 +++ gfs-nicefore-fonts.spec 24 Jul 2009 23:59:44 -0000 1.6 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080303 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GFS Nicefore majuscule Greek font Group: User Interface/X @@ -79,6 +79,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080303-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080303-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Fri Jul 24 23:59:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Fri, 24 Jul 2009 23:59:57 +0000 (UTC) Subject: rpms/gfs-olga-fonts/devel gfs-olga-fonts.spec,1.9,1.10 Message-ID: <20090724235957.AD8D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-olga-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2490 Modified Files: gfs-olga-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-olga-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-olga-fonts/devel/gfs-olga-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-olga-fonts.spec 24 Feb 2009 21:04:36 -0000 1.9 +++ gfs-olga-fonts.spec 24 Jul 2009 23:59:57 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20060908 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GFS Olga experimental oblique font Group: User Interface/X @@ -75,6 +75,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20060908-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20060908-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:00:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:00:12 +0000 (UTC) Subject: rpms/gfs-porson-fonts/devel gfs-porson-fonts.spec,1.9,1.10 Message-ID: <20090725000012.BF36B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-porson-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2673 Modified Files: gfs-porson-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-porson-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-porson-fonts/devel/gfs-porson-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-porson-fonts.spec 24 Feb 2009 21:06:07 -0000 1.9 +++ gfs-porson-fonts.spec 25 Jul 2009 00:00:12 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20060908 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GFS Porson Greek font Group: User Interface/X @@ -76,6 +76,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20060908-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20060908-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:00:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:00:27 +0000 (UTC) Subject: rpms/gfs-pyrsos-fonts/devel gfs-pyrsos-fonts.spec,1.1,1.2 Message-ID: <20090725000027.BD5AA11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-pyrsos-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2840 Modified Files: gfs-pyrsos-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-pyrsos-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-pyrsos-fonts/devel/gfs-pyrsos-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gfs-pyrsos-fonts.spec 23 Jun 2009 06:12:22 -0000 1.1 +++ gfs-pyrsos-fonts.spec 25 Jul 2009 00:00:27 -0000 1.2 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20090618 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GFS Pyrsos italic Greek fonts Group: User Interface/X @@ -70,6 +70,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090618-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 21 2009 Nicolas Mailhot - 20090618-1 ? initial packaging From jkeating at fedoraproject.org Sat Jul 25 00:00:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:00:43 +0000 (UTC) Subject: rpms/gfs-solomos-fonts/devel gfs-solomos-fonts.spec,1.9,1.10 Message-ID: <20090725000043.399BC11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-solomos-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3008 Modified Files: gfs-solomos-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-solomos-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-solomos-fonts/devel/gfs-solomos-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-solomos-fonts.spec 24 Feb 2009 21:06:40 -0000 1.9 +++ gfs-solomos-fonts.spec 25 Jul 2009 00:00:42 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20071114 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GFS Solomos oblique Greek font Group: User Interface/X @@ -82,6 +82,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20071114-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20071114-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:00:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:00:56 +0000 (UTC) Subject: rpms/gfs-theokritos-fonts/devel gfs-theokritos-fonts.spec,1.9,1.10 Message-ID: <20090725000056.9F61B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gfs-theokritos-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3163 Modified Files: gfs-theokritos-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gfs-theokritos-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gfs-theokritos-fonts/devel/gfs-theokritos-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gfs-theokritos-fonts.spec 24 Feb 2009 21:07:37 -0000 1.9 +++ gfs-theokritos-fonts.spec 25 Jul 2009 00:00:56 -0000 1.10 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20070415 -Release: 13%{?dist} +Release: 14%{?dist} Summary: GFS Theokritos decorative font Group: User Interface/X @@ -81,6 +81,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070415-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070415-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:01:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:01:10 +0000 (UTC) Subject: rpms/gftp/devel gftp.spec,1.35,1.36 Message-ID: <20090725000110.D5CE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3309 Modified Files: gftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gftp/devel/gftp.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gftp.spec 1 Mar 2009 18:16:43 -0000 1.35 +++ gftp.spec 25 Jul 2009 00:01:10 -0000 1.36 @@ -1,7 +1,7 @@ Summary: A multi-threaded FTP client for the X Window System Name: gftp Version: 2.0.19 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 2 License: GPLv2+ Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gftp.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:2.0.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Itamar Reis Peixoto - 2:2.0.19-1 - upgrade to 2.0.19 - spec cleanup From jkeating at fedoraproject.org Sat Jul 25 00:01:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:01:27 +0000 (UTC) Subject: rpms/gg2/devel gg2.spec,1.12,1.13 Message-ID: <20090725000127.8705611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3469 Modified Files: gg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gg2/devel/gg2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gg2.spec 24 Feb 2009 21:09:22 -0000 1.12 +++ gg2.spec 25 Jul 2009 00:01:27 -0000 1.13 @@ -1,6 +1,6 @@ Name: gg2 Version: 2.3.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GNU Gadu 2 - free talking Summary(es): GNU Gadu 2 - charlar libremente Summary(pl): GNU Gadu 2 - wolne gadanie @@ -360,6 +360,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gg2_core.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:01:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:01:42 +0000 (UTC) Subject: rpms/gget/devel gget.spec,1.1,1.2 Message-ID: <20090725000142.5A39711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3659 Modified Files: gget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gget.spec =================================================================== RCS file: /cvs/pkgs/rpms/gget/devel/gget.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gget.spec 27 Feb 2009 19:11:55 -0000 1.1 +++ gget.spec 25 Jul 2009 00:01:41 -0000 1.2 @@ -5,7 +5,7 @@ Name: gget Version: 0.0.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Download Manager for the GNOME desktop Group: Applications/Internet License: GPLv2+ @@ -113,6 +113,9 @@ update-mime-database %{_datadir}/mime &> %{_libdir}/epiphany/*/extensions/gget* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Ant Bryan - 0.0.4-9 - Remove other chmod. From jkeating at fedoraproject.org Sat Jul 25 00:01:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:01:58 +0000 (UTC) Subject: rpms/ggobi/devel ggobi.spec,1.2,1.3 Message-ID: <20090725000158.3FF7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ggobi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3845 Modified Files: ggobi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ggobi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ggobi/devel/ggobi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ggobi.spec 24 Feb 2009 21:10:17 -0000 1.2 +++ ggobi.spec 25 Jul 2009 00:01:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: ggobi Version: 2.1.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open source visualization for exploring high-dimensional data Group: Applications/Engineering License: GPLv2 @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ggobi.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:02:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:02:13 +0000 (UTC) Subject: rpms/ggz-base-libs/devel ggz-base-libs.spec,1.3,1.4 Message-ID: <20090725000213.994A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ggz-base-libs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4011 Modified Files: ggz-base-libs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ggz-base-libs.spec =================================================================== RCS file: /cvs/pkgs/rpms/ggz-base-libs/devel/ggz-base-libs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ggz-base-libs.spec 2 Apr 2009 16:55:50 -0000 1.3 +++ ggz-base-libs.spec 25 Jul 2009 00:02:12 -0000 1.4 @@ -4,7 +4,7 @@ Summary: Base libraries for GGZ gaming zone Name: ggz-base-libs Version: 0.99.5 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ and GPLv2+ Group: System Environment/Libraries @@ -153,6 +153,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Rex Dieter 0.99.5-4 - own %%{_sysconfdir}/ggz.modules.d - kill rpaths (again) From jkeating at fedoraproject.org Sat Jul 25 00:02:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:02:30 +0000 (UTC) Subject: rpms/ggz-gtk-client/devel ggz-gtk-client.spec,1.4,1.5 Message-ID: <20090725000230.4B23411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ggz-gtk-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4196 Modified Files: ggz-gtk-client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ggz-gtk-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/ggz-gtk-client/devel/ggz-gtk-client.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ggz-gtk-client.spec 9 Mar 2009 00:45:33 -0000 1.4 +++ ggz-gtk-client.spec 25 Jul 2009 00:02:30 -0000 1.5 @@ -1,6 +1,6 @@ Name: ggz-gtk-client Version: 0.99.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gtk+ client libraries for GGZ gaming zone Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Brian Pepple - 0.99.4-1 - Update to 0.99.4. From jkeating at fedoraproject.org Sat Jul 25 00:02:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:02:45 +0000 (UTC) Subject: rpms/ghasher/devel ghasher.spec,1.18,1.19 Message-ID: <20090725000245.06B0711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghasher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4349 Modified Files: ghasher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghasher.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghasher/devel/ghasher.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ghasher.spec 24 Feb 2009 21:13:14 -0000 1.18 +++ ghasher.spec 25 Jul 2009 00:02:44 -0000 1.19 @@ -1,6 +1,6 @@ Name: ghasher Version: 1.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: GUI hasher for GTK+ 2 Group: Applications/File @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:03:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:03:07 +0000 (UTC) Subject: rpms/ghc/devel ghc.spec,1.94,1.95 Message-ID: <20090725000307.E398B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4565 Modified Files: ghc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc/devel/ghc.spec,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -r1.94 -r1.95 --- ghc.spec 22 Jul 2009 04:04:45 -0000 1.94 +++ ghc.spec 25 Jul 2009 00:03:07 -0000 1.95 @@ -29,7 +29,7 @@ Name: ghc # part of haskell-platform Version: 6.10.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Glasgow Haskell Compilation system # fedora ghc has only been bootstrapped on the following archs: ExclusiveArch: %{ix86} x86_64 ppc alpha @@ -278,6 +278,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.10.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bryan O'Sullivan - 6.10.4-1 - update to 6.10.4 From jkeating at fedoraproject.org Sat Jul 25 00:03:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:03:32 +0000 (UTC) Subject: rpms/ghc-HTTP/devel ghc-HTTP.spec,1.11,1.12 Message-ID: <20090725000332.6CB8611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4843 Modified Files: ghc-HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-HTTP/devel/ghc-HTTP.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ghc-HTTP.spec 30 May 2009 03:23:22 -0000 1.11 +++ ghc-HTTP.spec 25 Jul 2009 00:03:32 -0000 1.12 @@ -9,7 +9,7 @@ Name: ghc-%{pkg_name} # part of haskell-platform Version: 4000.0.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Haskell HTTP client library Group: Development/Libraries @@ -138,6 +138,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4000.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Jens Petersen - 4000.0.6-3 - ppc workaround no longer needed with ghc-6.10.3 - provide ghc-HTTP (cabal2spec-0.17) From jkeating at fedoraproject.org Sat Jul 25 00:03:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:03:46 +0000 (UTC) Subject: rpms/ghc-X11/devel ghc-X11.spec,1.16,1.17 Message-ID: <20090725000346.007AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-X11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4985 Modified Files: ghc-X11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-X11.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-X11/devel/ghc-X11.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ghc-X11.spec 30 May 2009 09:57:50 -0000 1.16 +++ ghc-X11.spec 25 Jul 2009 00:03:45 -0000 1.17 @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.4.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries @@ -139,6 +139,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Jens Petersen - 1.4.5-11 - buildrequires ghc-rpm-macros (cabal2spec-0.16) From jkeating at fedoraproject.org Sat Jul 25 00:03:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:03:58 +0000 (UTC) Subject: rpms/ghc-editline/devel ghc-editline.spec,1.6,1.7 Message-ID: <20090725000358.D3E6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-editline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5141 Modified Files: ghc-editline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-editline.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-editline/devel/ghc-editline.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ghc-editline.spec 23 Jul 2009 17:32:45 -0000 1.6 +++ ghc-editline.spec 25 Jul 2009 00:03:58 -0000 1.7 @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Haskell %{pkg_name} library Group: Development/Libraries License: BSD From jkeating at fedoraproject.org Sat Jul 25 00:04:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:04:12 +0000 (UTC) Subject: rpms/ghc-ghc-paths/devel ghc-ghc-paths.spec,1.3,1.4 Message-ID: <20090725000412.BAC6B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-ghc-paths/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5285 Modified Files: ghc-ghc-paths.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-ghc-paths.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-ghc-paths/devel/ghc-ghc-paths.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghc-ghc-paths.spec 23 May 2009 23:33:46 -0000 1.3 +++ ghc-ghc-paths.spec 25 Jul 2009 00:04:12 -0000 1.4 @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Interface to GHC's installation directories Group: Development/Libraries @@ -136,6 +136,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Jens Petersen - 0.1.0.5-7 - buildrequires ghc-rpm-macros (cabal2spec-0.16) From jkeating at fedoraproject.org Sat Jul 25 00:04:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:04:25 +0000 (UTC) Subject: rpms/ghc-gtk2hs/devel ghc-gtk2hs.spec,1.27,1.28 Message-ID: <20090725000425.D88C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-gtk2hs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5445 Modified Files: ghc-gtk2hs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-gtk2hs.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-gtk2hs/devel/ghc-gtk2hs.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ghc-gtk2hs.spec 29 May 2009 23:13:14 -0000 1.27 +++ ghc-gtk2hs.spec 25 Jul 2009 00:04:25 -0000 1.28 @@ -25,7 +25,7 @@ management, unicode support, and wide co Summary: Haskell binding for gtk2 and related libraries Name: ghc-%{pkg_name} Version: 0.10.1 -Release: 4%{?dist} +Release: 5%{?dist} # cairo/ and svgcairo/ are FreeBSD # compat/ is BSD # tools/c2hs (used to build) is GPLv2+, LGPLv2+ @@ -284,6 +284,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Jens Petersen - 0.10.1-4 - disable mozembed again since it is segfaulting http://hackage.haskell.org/trac/gtk2hs/ticket/1168 From jkeating at fedoraproject.org Sat Jul 25 00:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:04:39 +0000 (UTC) Subject: rpms/ghc-haskell-src-exts/devel ghc-haskell-src-exts.spec,1.7,1.8 Message-ID: <20090725000439.B079A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-haskell-src-exts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5583 Modified Files: ghc-haskell-src-exts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-haskell-src-exts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-haskell-src-exts/devel/ghc-haskell-src-exts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ghc-haskell-src-exts.spec 2 Jul 2009 00:38:00 -0000 1.7 +++ ghc-haskell-src-exts.spec 25 Jul 2009 00:04:39 -0000 1.8 @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for Manipulating Haskell source Group: Development/Libraries License: BSD @@ -149,6 +149,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Conrad Meyer - 1.0.1-1 - Version bump. From jkeating at fedoraproject.org Sat Jul 25 00:05:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:05:15 +0000 (UTC) Subject: rpms/ghc-rpm-macros/devel ghc-rpm-macros.spec,1.3,1.4 Message-ID: <20090725000515.875F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-rpm-macros/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5848 Modified Files: ghc-rpm-macros.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-rpm-macros.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-rpm-macros/devel/ghc-rpm-macros.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ghc-rpm-macros.spec 9 Jun 2009 09:24:58 -0000 1.3 +++ ghc-rpm-macros.spec 25 Jul 2009 00:05:15 -0000 1.4 @@ -1,6 +1,6 @@ Name: ghc-rpm-macros Version: 0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Macros for building packages for GHC Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Jens Petersen - 0.2-1 - drop version from ghcdocdir since it breaks haddock indexing From jkeating at fedoraproject.org Sat Jul 25 00:05:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:05:29 +0000 (UTC) Subject: rpms/ghc-uniplate/devel ghc-uniplate.spec,1.2,1.3 Message-ID: <20090725000529.8EA4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-uniplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5995a Modified Files: ghc-uniplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-uniplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-uniplate/devel/ghc-uniplate.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ghc-uniplate.spec 27 May 2009 23:52:57 -0000 1.2 +++ ghc-uniplate.spec 25 Jul 2009 00:05:29 -0000 1.3 @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.2.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Uniform type generic traversals Group: Development/Libraries License: BSD @@ -136,6 +136,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Jens Petersen - 1.2.0.3-4 - update to cabal2spec-0.16 - uncomment LICENSE in devel filelist! From jkeating at fedoraproject.org Sat Jul 25 00:05:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:05:42 +0000 (UTC) Subject: rpms/ghc-utf8-string/devel ghc-utf8-string.spec,1.1,1.2 Message-ID: <20090725000542.BB2BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-utf8-string/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6129 Modified Files: ghc-utf8-string.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-utf8-string.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-utf8-string/devel/ghc-utf8-string.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ghc-utf8-string.spec 17 Jun 2009 20:00:34 -0000 1.1 +++ ghc-utf8-string.spec 25 Jul 2009 00:05:42 -0000 1.2 @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.3.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Haskell UTF8 layer for IO and Strings. Group: Development/Libraries @@ -140,6 +140,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Zachary Oglesby - 0.3.5-2 - Added patch from Jens Petersen for better descriptions From jkeating at fedoraproject.org Sat Jul 25 00:05:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:05:57 +0000 (UTC) Subject: rpms/ghc-zlib/devel ghc-zlib.spec,1.13,1.14 Message-ID: <20090725000557.E69EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghc-zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6294 Modified Files: ghc-zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghc-zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghc-zlib/devel/ghc-zlib.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ghc-zlib.spec 30 May 2009 10:06:10 -0000 1.13 +++ ghc-zlib.spec 25 Jul 2009 00:05:57 -0000 1.14 @@ -9,7 +9,7 @@ Name: ghc-%{pkg_name} # part of haskell-platform Version: 0.5.0.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Haskell compression and decompression library binding Group: Development/Libraries @@ -143,6 +143,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Jens Petersen - 0.5.0.0-9 - buildrequires ghc-rpm-macros (cabal2spec-0.16) From jkeating at fedoraproject.org Sat Jul 25 00:06:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:06:20 +0000 (UTC) Subject: rpms/ghdl/devel ghdl.spec,1.51,1.52 Message-ID: <20090725000620.3E62C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6511 Modified Files: ghdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghdl/devel/ghdl.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- ghdl.spec 26 May 2009 15:26:41 -0000 1.51 +++ ghdl.spec 25 Jul 2009 00:06:20 -0000 1.52 @@ -5,7 +5,7 @@ Summary: A VHDL simulator, using the GCC technology Name: ghdl Version: %{ghdlver} -Release: 0.%{ghdlsvnver}svn.7%{?dist} +Release: 0.%{ghdlsvnver}svn.7%{?dist}.1 License: GPLv2+ Group: Development/Languages URL: http://ghdl.free.fr/ @@ -314,6 +314,9 @@ popd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.27-0.110svn.7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Thomas Sailer - 0.27-0.110svn.7 - fix bug in std.textio.read (string) From jkeating at fedoraproject.org Sat Jul 25 00:06:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:06:36 +0000 (UTC) Subject: rpms/ghex/devel ghex.spec,1.29,1.30 Message-ID: <20090725000636.1666A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6689 Modified Files: ghex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghex.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghex/devel/ghex.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- ghex.spec 24 Feb 2009 21:19:51 -0000 1.29 +++ ghex.spec 25 Jul 2009 00:06:35 -0000 1.30 @@ -1,6 +1,6 @@ Name: ghex Version: 2.24.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Binary editor for GNOME @@ -105,6 +105,9 @@ scrollkeeper-update -q %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.24.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:06:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:06:51 +0000 (UTC) Subject: rpms/ghost-diagrams/devel ghost-diagrams.spec,1.4,1.5 Message-ID: <20090725000651.1D9DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghost-diagrams/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6882 Modified Files: ghost-diagrams.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghost-diagrams.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghost-diagrams/devel/ghost-diagrams.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ghost-diagrams.spec 24 Feb 2009 21:20:54 -0000 1.4 +++ ghost-diagrams.spec 25 Jul 2009 00:06:51 -0000 1.5 @@ -1,6 +1,6 @@ Name: ghost-diagrams Version: 0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A program that generates patterns from tiles Group: Amusements/Graphics @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:07:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:07:07 +0000 (UTC) Subject: rpms/ghostscript/devel ghostscript.spec,1.187,1.188 Message-ID: <20090725000707.AEEAB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghostscript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7041 Modified Files: ghostscript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghostscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript/devel/ghostscript.spec,v retrieving revision 1.187 retrieving revision 1.188 diff -u -p -r1.187 -r1.188 --- ghostscript.spec 10 Jun 2009 17:04:49 -0000 1.187 +++ ghostscript.spec 25 Jul 2009 00:07:07 -0000 1.188 @@ -5,7 +5,7 @@ Summary: A PostScript interpreter and re Name: ghostscript Version: %{gs_ver} -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 URL: http://www.ghostscript.com/ @@ -310,6 +310,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libgs.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.64-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Tim Waugh 8.64-8 - Fix scripts so they don't get broken on install (bug #502550). From jkeating at fedoraproject.org Sat Jul 25 00:07:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:07:23 +0000 (UTC) Subject: rpms/ghostscript-fonts/devel ghostscript-fonts.spec,1.21,1.22 Message-ID: <20090725000723.86E3C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ghostscript-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7227 Modified Files: ghostscript-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ghostscript-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ghostscript-fonts/devel/ghostscript-fonts.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- ghostscript-fonts.spec 10 Jun 2009 14:19:52 -0000 1.21 +++ ghostscript-fonts.spec 25 Jul 2009 00:07:23 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Fonts for the Ghostscript PostScript interpreter Name: ghostscript-fonts Version: 5.50 -Release: 22%{?dist} +Release: 23%{?dist} # Contacted Kevin Hartig, who agreed to relicense his fonts under the SIL Open Font # License. Hershey fonts are under the "Hershey Font License", which is not what Fontmap # says (Fontmap is wrong). @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{catalogue}/default-ghostscript %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.50-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Tim Waugh 5.50-22 - Further changes from package review (bug #225794): - Don't use umask in scriptlet. From jkeating at fedoraproject.org Sat Jul 25 00:07:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:07:38 +0000 (UTC) Subject: rpms/giblib/devel giblib.spec,1.17,1.18 Message-ID: <20090725000738.F042B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/giblib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7409 Modified Files: giblib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: giblib.spec =================================================================== RCS file: /cvs/pkgs/rpms/giblib/devel/giblib.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- giblib.spec 24 Feb 2009 21:23:50 -0000 1.17 +++ giblib.spec 25 Jul 2009 00:07:38 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Simple library and a wrapper for imlib2 Name: giblib Version: 1.2.4 -Release: 13 +Release: 14 License: MIT Group: System Environment/Libraries URL: http://linuxbrit.co.uk/giblib/ @@ -69,6 +69,9 @@ Install this package if you intend to de %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:07:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:07:55 +0000 (UTC) Subject: rpms/gif2png/devel gif2png.spec,1.8,1.9 Message-ID: <20090725000755.D6BB311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gif2png/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7614 Modified Files: gif2png.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gif2png.spec =================================================================== RCS file: /cvs/pkgs/rpms/gif2png/devel/gif2png.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gif2png.spec 1 Mar 2009 14:18:44 -0000 1.8 +++ gif2png.spec 25 Jul 2009 00:07:54 -0000 1.9 @@ -3,7 +3,7 @@ Summary: A GIF to PNG converter Name: gif2png Version: 2.5.1 -Release: %release_func 6 +Release: %release_func 7 License: BSD Group: Applications/Multimedia URL: http://www.catb.org/~esr/gif2png/ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Enrico Scholz - 2.5.1-6 - made web2png noarch From jkeating at fedoraproject.org Sat Jul 25 00:08:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:08:11 +0000 (UTC) Subject: rpms/giflib/devel giflib.spec,1.12,1.13 Message-ID: <20090725000811.45E7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/giflib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7788 Modified Files: giflib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: giflib.spec =================================================================== RCS file: /cvs/pkgs/rpms/giflib/devel/giflib.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- giflib.spec 9 May 2009 21:45:18 -0000 1.12 +++ giflib.spec 25 Jul 2009 00:08:11 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Library for manipulating GIF format image files Name: giflib Version: 4.1.6 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.sourceforge.net/projects/%{name}/ @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 09 2009 Robert Scheck 4.1.6-2 - Solved multilib problems with documentation (#465208, #474538) - Removed static library from giflib-devel package (#225796 #c1) From jkeating at fedoraproject.org Sat Jul 25 00:08:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:08:26 +0000 (UTC) Subject: rpms/gifsicle/devel gifsicle.spec,1.7,1.8 Message-ID: <20090725000826.0FDAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gifsicle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7947 Modified Files: gifsicle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gifsicle.spec =================================================================== RCS file: /cvs/pkgs/rpms/gifsicle/devel/gifsicle.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gifsicle.spec 16 Jul 2009 21:43:25 -0000 1.7 +++ gifsicle.spec 25 Jul 2009 00:08:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: gifsicle Version: 1.55 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Powerful program for manipulating GIF images and animations Group: Applications/File @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.55-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 - Orion Poplawski - 1.55-1 - Update to 1.55 From jkeating at fedoraproject.org Sat Jul 25 00:08:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:08:41 +0000 (UTC) Subject: rpms/gift/devel gift.spec,1.14,1.15 Message-ID: <20090725000841.601CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8120 Modified Files: gift.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gift.spec =================================================================== RCS file: /cvs/pkgs/rpms/gift/devel/gift.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gift.spec 24 Feb 2009 21:27:36 -0000 1.14 +++ gift.spec 25 Jul 2009 00:08:41 -0000 1.15 @@ -2,7 +2,7 @@ Name: gift Summary: Daemon for communicating with filesharing protocols Version: 0.11.8.1 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: System Environment/Daemons @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.8.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.11.8.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:08:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:08:57 +0000 (UTC) Subject: rpms/gift-gnutella/devel gift-gnutella.spec,1.6,1.7 Message-ID: <20090725000857.33DFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift-gnutella/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8300 Modified Files: gift-gnutella.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gift-gnutella.spec =================================================================== RCS file: /cvs/pkgs/rpms/gift-gnutella/devel/gift-gnutella.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gift-gnutella.spec 24 Feb 2009 21:28:35 -0000 1.6 +++ gift-gnutella.spec 25 Jul 2009 00:08:57 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Gnutella plugin for giFT Name: gift-gnutella Version: 0.0.11 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:09:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:09:12 +0000 (UTC) Subject: rpms/gift-openft/devel gift-openft.spec,1.12,1.13 Message-ID: <20090725000912.979A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gift-openft/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8464 Modified Files: gift-openft.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gift-openft.spec =================================================================== RCS file: /cvs/pkgs/rpms/gift-openft/devel/gift-openft.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gift-openft.spec 24 Feb 2009 21:29:31 -0000 1.12 +++ gift-openft.spec 25 Jul 2009 00:09:12 -0000 1.13 @@ -2,7 +2,7 @@ Summary: Openft plugin for giFT Name: gift-openft Version: 0.2.1.6 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: System Environment/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.1.6-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:09:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:09:28 +0000 (UTC) Subject: rpms/giggle/devel giggle.spec,1.15,1.16 Message-ID: <20090725000928.5D88011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/giggle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8637 Modified Files: giggle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: giggle.spec =================================================================== RCS file: /cvs/pkgs/rpms/giggle/devel/giggle.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- giggle.spec 13 Apr 2009 20:40:51 -0000 1.15 +++ giggle.spec 25 Jul 2009 00:09:28 -0000 1.16 @@ -1,6 +1,6 @@ Name: giggle Version: 0.4.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Gtk frontend to git Group: Development/Tools @@ -99,6 +99,9 @@ fi %{_includedir}/giggle/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Lennart Poettering - 0.4.91-1 - Update to 0.4.91 From jkeating at fedoraproject.org Sat Jul 25 00:09:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:09:40 +0000 (UTC) Subject: rpms/gigolo/devel gigolo.spec,1.4,1.5 Message-ID: <20090725000940.A0EAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gigolo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8821 Modified Files: gigolo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gigolo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gigolo/devel/gigolo.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gigolo.spec 19 Apr 2009 03:46:24 -0000 1.4 +++ gigolo.spec 25 Jul 2009 00:09:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: gigolo Version: 0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GIO/GVFS management application Group: User Interface/Desktops @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gigolo.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Kevin Fenzi - 0.3.2-1 - Update to 0.3.2 From jkeating at fedoraproject.org Sat Jul 25 00:09:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:09:56 +0000 (UTC) Subject: rpms/gimmage/devel gimmage.spec,1.4,1.5 Message-ID: <20090725000956.A599811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimmage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8992 Modified Files: gimmage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimmage.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimmage/devel/gimmage.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gimmage.spec 24 Feb 2009 21:31:22 -0000 1.4 +++ gimmage.spec 25 Jul 2009 00:09:56 -0000 1.5 @@ -1,7 +1,7 @@ Name: gimmage Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Simple GNOME Image Viewer Group: Applications/Multimedia License: GPLv2+ @@ -73,6 +73,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:10:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:10:09 +0000 (UTC) Subject: rpms/gimmix/devel gimmix.spec,1.7,1.8 Message-ID: <20090725001009.A6D3E11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimmix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9167 Modified Files: gimmix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimmix.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimmix/devel/gimmix.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gimmix.spec 24 Jun 2009 19:13:31 -0000 1.7 +++ gimmix.spec 25 Jul 2009 00:10:09 -0000 1.8 @@ -1,6 +1,6 @@ Name: gimmix Version: 0.5.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical music player daemon (MPD) client Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Andreas Bierfert - 0.5.6.1-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 00:10:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:10:24 +0000 (UTC) Subject: rpms/gimp-data-extras/devel gimp-data-extras.spec,1.2,1.3 Message-ID: <20090725001024.6FE4D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimp-data-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9314 Modified Files: gimp-data-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimp-data-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp-data-extras/devel/gimp-data-extras.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gimp-data-extras.spec 24 Feb 2009 21:34:14 -0000 1.2 +++ gimp-data-extras.spec 25 Jul 2009 00:10:24 -0000 1.3 @@ -3,7 +3,7 @@ Summary: Extra files for GIMP Name: gimp-data-extras Version: 2.0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.gimp.org/ @@ -39,6 +39,9 @@ rm -rf %{buildroot} %{gimpdatadir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:10:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:10:37 +0000 (UTC) Subject: rpms/gimp-fourier-plugin/devel gimp-fourier-plugin.spec,1.2,1.3 Message-ID: <20090725001037.533C011C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimp-fourier-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9476 Modified Files: gimp-fourier-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimp-fourier-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp-fourier-plugin/devel/gimp-fourier-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gimp-fourier-plugin.spec 24 Feb 2009 21:35:11 -0000 1.2 +++ gimp-fourier-plugin.spec 25 Jul 2009 00:10:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: gimp-fourier-plugin Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A simple plug-in to do fourier transform on your image Group: Applications/Multimedia @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:10:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:10:51 +0000 (UTC) Subject: rpms/gimp-help/devel gimp-help.spec,1.21,1.22 Message-ID: <20090725001051.D6E7811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimp-help/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9663 Modified Files: gimp-help.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimp-help.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp-help/devel/gimp-help.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gimp-help.spec 24 Feb 2009 21:36:04 -0000 1.21 +++ gimp-help.spec 25 Jul 2009 00:10:51 -0000 1.22 @@ -3,7 +3,7 @@ Summary: Help files for GIMP Name: gimp-help Version: 2.4.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GFDL Group: Documentation URL: http://wiki.gimp.org/gimp/GimpDocs @@ -62,6 +62,9 @@ rm -rf %buildroot %doc AUTHORS ChangeLog COPYING NEWS README TERMINOLOGY %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.4.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:11:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:11:07 +0000 (UTC) Subject: rpms/gimp-lqr-plugin/devel gimp-lqr-plugin.spec,1.2,1.3 Message-ID: <20090725001107.8099211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimp-lqr-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9844 Modified Files: gimp-lqr-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimp-lqr-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp-lqr-plugin/devel/gimp-lqr-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gimp-lqr-plugin.spec 24 Feb 2009 21:36:59 -0000 1.2 +++ gimp-lqr-plugin.spec 25 Jul 2009 00:11:07 -0000 1.3 @@ -2,7 +2,7 @@ %define tarversion 4 Name: gimp-lqr-plugin Version: %{codeversion}.%{tarversion} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Content-aware resizing plug-in for the GIMP Group: Applications/Multimedia License: GPLv2+ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:11:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:11:23 +0000 (UTC) Subject: rpms/gimp-resynthesizer/devel gimp-resynthesizer.spec,1.3,1.4 Message-ID: <20090725001123.0799911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimp-resynthesizer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10007 Modified Files: gimp-resynthesizer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimp-resynthesizer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimp-resynthesizer/devel/gimp-resynthesizer.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gimp-resynthesizer.spec 24 Feb 2009 21:37:55 -0000 1.3 +++ gimp-resynthesizer.spec 25 Jul 2009 00:11:22 -0000 1.4 @@ -4,7 +4,7 @@ Summary: Gimp plug-in for texture synthesis Name: gimp-resynthesizer Version: 0.15 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/Multimedia License: GPLv2+ Requires: gimp @@ -45,6 +45,9 @@ texture, it can create more of that text %{gimpscriptdir}/smart-enlarge.scm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:11:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:11:37 +0000 (UTC) Subject: rpms/gimpfx-foundry/devel gimpfx-foundry.spec,1.1,1.2 Message-ID: <20090725001137.BF4A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gimpfx-foundry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10184 Modified Files: gimpfx-foundry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gimpfx-foundry.spec =================================================================== RCS file: /cvs/pkgs/rpms/gimpfx-foundry/devel/gimpfx-foundry.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gimpfx-foundry.spec 8 Jun 2009 22:35:59 -0000 1.1 +++ gimpfx-foundry.spec 25 Jul 2009 00:11:37 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Additional GIMP plugins Name: gimpfx-foundry Version: 2.6.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GPLv3+ and Public Domain URL: http://gimpfx-foundry.sourceforge.net/ Group: Applications/Multimedia @@ -41,6 +41,9 @@ existing photos that antiquated touch. %{_datadir}/gimp/2.0/scripts/*.scm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Rick L Vinyard Jr - 2.6.1-2 - Added GPLv2+ and Public Domain licenses to License tag From jkeating at fedoraproject.org Sat Jul 25 00:11:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:11:53 +0000 (UTC) Subject: rpms/ginac/devel ginac.spec,1.22,1.23 Message-ID: <20090725001153.5E5E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ginac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10340 Modified Files: ginac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ginac.spec =================================================================== RCS file: /cvs/pkgs/rpms/ginac/devel/ginac.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ginac.spec 9 Jul 2009 08:44:28 -0000 1.22 +++ ginac.spec 25 Jul 2009 00:11:53 -0000 1.23 @@ -1,6 +1,6 @@ Name: ginac Version: 1.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ library for symbolic calculations Group: System Environment/Libraries @@ -104,6 +104,9 @@ fi %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Alex Lancaster - 1.5.1-2 - Rebuild to fix broken deps From jkeating at fedoraproject.org Sat Jul 25 00:12:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:12:07 +0000 (UTC) Subject: rpms/gipfel/devel gipfel.spec,1.6,1.7 Message-ID: <20090725001207.D50A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gipfel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10515 Modified Files: gipfel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gipfel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gipfel/devel/gipfel.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gipfel.spec 27 Jun 2009 15:53:12 -0000 1.6 +++ gipfel.spec 25 Jul 2009 00:12:07 -0000 1.7 @@ -1,6 +1,6 @@ Name: gipfel Version: 0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool to find the names of mountains or POI on a picture Group: Applications/System @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Fabian Affolter - 0.3.2-1 - Updated to new upstream version 0.3.2 From jkeating at fedoraproject.org Sat Jul 25 00:12:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:12:24 +0000 (UTC) Subject: rpms/gir-repository/devel gir-repository.spec,1.3,1.4 Message-ID: <20090725001224.81F1911C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gir-repository/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10687 Modified Files: gir-repository.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gir-repository.spec =================================================================== RCS file: /cvs/pkgs/rpms/gir-repository/devel/gir-repository.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gir-repository.spec 2 Jul 2009 10:29:19 -0000 1.3 +++ gir-repository.spec 25 Jul 2009 00:12:24 -0000 1.4 @@ -1,6 +1,6 @@ Name: gir-repository Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Introspection for GNOME libraries Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gir-1.0/*.gir %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Peter Robinson - Update to 0.6.3 release. Require matching gobject-introspection version From jkeating at fedoraproject.org Sat Jul 25 00:12:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:12:40 +0000 (UTC) Subject: rpms/git/devel git.spec,1.87,1.88 Message-ID: <20090725001240.5E05511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/git/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10898 Modified Files: git.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: git.spec =================================================================== RCS file: /cvs/pkgs/rpms/git/devel/git.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- git.spec 28 Jun 2009 23:26:09 -0000 1.87 +++ git.spec 25 Jul 2009 00:12:40 -0000 1.88 @@ -1,7 +1,7 @@ # Pass --without docs to rpmbuild if you don't want the documentation Name: git Version: 1.6.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast Version Control System License: GPLv2 Group: Development/Tools @@ -386,6 +386,9 @@ rm -rf $RPM_BUILD_ROOT # No files for you! %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Todd Zullinger - 1.6.3.3-1 - git-1.6.3.3 - Move contributed hooks to %%{_datadir}/git-core/contrib/hooks (bug 500137) From jkeating at fedoraproject.org Sat Jul 25 00:12:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:12:56 +0000 (UTC) Subject: rpms/git-cola/devel git-cola.spec,1.7,1.8 Message-ID: <20090725001256.9C48B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/git-cola/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11096 Modified Files: git-cola.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: git-cola.spec =================================================================== RCS file: /cvs/pkgs/rpms/git-cola/devel/git-cola.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- git-cola.spec 15 Jun 2009 19:54:28 -0000 1.7 +++ git-cola.spec 25 Jul 2009 00:12:56 -0000 1.8 @@ -4,7 +4,7 @@ Name: git-cola Version: 1.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A highly caffeinated git gui Group: Development/Tools @@ -78,6 +78,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Ben Boeckel 1.3.8-1 - Update to 1.3.8 - Fix changelog usage of %% From jkeating at fedoraproject.org Sat Jul 25 00:13:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:13:13 +0000 (UTC) Subject: rpms/gitg/devel gitg.spec,1.1,1.2 Message-ID: <20090725001313.EC0CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gitg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11327 Modified Files: gitg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gitg.spec =================================================================== RCS file: /cvs/pkgs/rpms/gitg/devel/gitg.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gitg.spec 13 May 2009 13:05:11 -0000 1.1 +++ gitg.spec 25 Jul 2009 00:13:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: gitg Version: 0.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK+ graphical interface for the git revision control system Group: Development/Tools @@ -86,6 +86,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 02 2009 James Bowes 0.0.3-1 - Initial packaging for Fedora. From jkeating at fedoraproject.org Sat Jul 25 00:13:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:13:30 +0000 (UTC) Subject: rpms/gitosis/devel gitosis.spec,1.4,1.5 Message-ID: <20090725001330.3AB0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gitosis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11522 Modified Files: gitosis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gitosis.spec =================================================================== RCS file: /cvs/pkgs/rpms/gitosis/devel/gitosis.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gitosis.spec 24 Feb 2009 21:42:06 -0000 1.4 +++ gitosis.spec 25 Jul 2009 00:13:30 -0000 1.5 @@ -2,7 +2,7 @@ Name: gitosis Version: 0.2 -Release: 8.20080825git%{?dist} +Release: 9.20080825git%{?dist} Summary: Git repository hosting application Group: Applications/System @@ -64,6 +64,9 @@ exit 0 %dir %attr(0755,gitosis,gitosis) %{_localstatedir}/lib/gitosis %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-9.20080825git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-8.20080825git - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:13:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:13:47 +0000 (UTC) Subject: rpms/giver/devel giver.spec,1.2,1.3 Message-ID: <20090725001347.1D13911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/giver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11742 Modified Files: giver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: giver.spec =================================================================== RCS file: /cvs/pkgs/rpms/giver/devel/giver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- giver.spec 24 Feb 2009 21:43:07 -0000 1.2 +++ giver.spec 25 Jul 2009 00:13:46 -0000 1.3 @@ -4,7 +4,7 @@ Name: giver Summary: A simple file sharing desktop application Version: 0.1.8 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: Applications/Internet Source0: http://giver.googlecode.com/files/%{name}-%{version}.tar.gz @@ -78,6 +78,9 @@ fi %{_datadir}/pixmaps/*.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:14:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:14:02 +0000 (UTC) Subject: rpms/gjots2/devel gjots2.spec,1.13,1.14 Message-ID: <20090725001402.A767511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gjots2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11949 Modified Files: gjots2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gjots2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gjots2/devel/gjots2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gjots2.spec 24 Feb 2009 21:44:04 -0000 1.13 +++ gjots2.spec 25 Jul 2009 00:14:02 -0000 1.14 @@ -21,7 +21,7 @@ Summary: A note jotter - Organise your ideas, notes, facts in a hierarchy Name: gjots2 Version: 2.3.8 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://bhepple.freeshell.org/gjots Source: http://bhepple.freeshell.org/gjots/%{name}-%{version}.tgz Patch0: gjots2-2.3.7-sitelib.patch @@ -134,6 +134,9 @@ desktop-file-install --vendor fedora %{_mandir}/man1/docbook2gjots* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:14:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:14:18 +0000 (UTC) Subject: rpms/gkrellm/devel gkrellm.spec,1.22,1.23 Message-ID: <20090725001418.17D6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12111 Modified Files: gkrellm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm/devel/gkrellm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- gkrellm.spec 17 Mar 2009 21:02:37 -0000 1.22 +++ gkrellm.spec 25 Jul 2009 00:14:17 -0000 1.23 @@ -1,6 +1,6 @@ Name: gkrellm Version: 2.3.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Multiple stacked system monitors in one process Group: Applications/System License: GPLv3+ @@ -167,6 +167,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Ville Skytt? - 2.3.2-4 - Sync icon cache update scriptlets with current Fedora guidelines. From jkeating at fedoraproject.org Sat Jul 25 00:14:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:14:34 +0000 (UTC) Subject: rpms/gkrellm-aclock/devel gkrellm-aclock.spec,1.10,1.11 Message-ID: <20090725001434.0D56211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-aclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12322 Modified Files: gkrellm-aclock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-aclock.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-aclock/devel/gkrellm-aclock.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gkrellm-aclock.spec 24 Feb 2009 21:46:00 -0000 1.10 +++ gkrellm-aclock.spec 25 Jul 2009 00:14:33 -0000 1.11 @@ -3,7 +3,7 @@ Summary: Analog clock plugin for GKrellM Name: gkrellm-aclock Version: 0.3.4 -Release: 6 +Release: 7 License: GPLv2+ Group: Applications/System URL: http://www.geocities.com/m_muthukumar/gkrellaclock.html @@ -42,6 +42,9 @@ Analog clock plugin for GKrellM, the GNU %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:14:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:14:50 +0000 (UTC) Subject: rpms/gkrellm-freq/devel gkrellm-freq.spec,1.11,1.12 Message-ID: <20090725001450.0E13911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-freq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12501 Modified Files: gkrellm-freq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-freq.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-freq/devel/gkrellm-freq.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gkrellm-freq.spec 24 Feb 2009 21:46:56 -0000 1.11 +++ gkrellm-freq.spec 25 Jul 2009 00:14:49 -0000 1.12 @@ -3,7 +3,7 @@ Summary: CPU frequency display plugin for GKrellM Name: gkrellm-freq Version: 1.0 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL+ Group: Applications/System URL: http://www.peakunix.net/gkfreq/ @@ -46,6 +46,9 @@ using the "dynamic" cpufrequency scheme. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:15:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:15:07 +0000 (UTC) Subject: rpms/gkrellm-moon/devel gkrellm-moon.spec,1.6,1.7 Message-ID: <20090725001507.099A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-moon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12709 Modified Files: gkrellm-moon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-moon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-moon/devel/gkrellm-moon.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gkrellm-moon.spec 24 Feb 2009 21:47:51 -0000 1.6 +++ gkrellm-moon.spec 25 Jul 2009 00:15:06 -0000 1.7 @@ -3,7 +3,7 @@ Summary: Moon clock plugin for GKrellM Name: gkrellm-moon Version: 0.6 -Release: 7 +Release: 8 License: GPLv2 Group: Applications/System URL: http://gkrellmoon.sourceforge.net/ @@ -42,6 +42,9 @@ A moon clock plugin for GKrellM. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:15:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:15:23 +0000 (UTC) Subject: rpms/gkrellm-sun/devel gkrellm-sun.spec,1.6,1.7 Message-ID: <20090725001523.9151611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-sun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12920 Modified Files: gkrellm-sun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-sun.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-sun/devel/gkrellm-sun.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gkrellm-sun.spec 24 Feb 2009 21:48:49 -0000 1.6 +++ gkrellm-sun.spec 25 Jul 2009 00:15:23 -0000 1.7 @@ -3,7 +3,7 @@ Summary: Sun clock plugin for GKrellM Name: gkrellm-sun Version: 1.0.0 -Release: 7 +Release: 8 License: GPLv2 Group: Applications/System URL: http://gkrellsun.sourceforge.net/ @@ -42,6 +42,9 @@ time, path and current location and so o %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:15:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:15:38 +0000 (UTC) Subject: rpms/gkrellm-timestamp/devel gkrellm-timestamp.spec,1.2,1.3 Message-ID: <20090725001538.E1D9F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-timestamp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13109 Modified Files: gkrellm-timestamp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-timestamp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-timestamp/devel/gkrellm-timestamp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gkrellm-timestamp.spec 24 Feb 2009 21:49:46 -0000 1.2 +++ gkrellm-timestamp.spec 25 Jul 2009 00:15:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: gkrellm-timestamp Version: 0.1.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: UNIX timestamp clock plugin for GKrellM Group: Applications/System License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gkrellm2/plugins/timestamp.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:15:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:15:55 +0000 (UTC) Subject: rpms/gkrellm-volume/devel gkrellm-volume.spec,1.13,1.14 Message-ID: <20090725001555.2038B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-volume/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13281 Modified Files: gkrellm-volume.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-volume.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-volume/devel/gkrellm-volume.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gkrellm-volume.spec 24 Feb 2009 21:50:45 -0000 1.13 +++ gkrellm-volume.spec 25 Jul 2009 00:15:54 -0000 1.14 @@ -2,7 +2,7 @@ Name: gkrellm-volume Version: 2.1.13 -Release: 8%{?dist} +Release: 9%{?dist} Summary: GKrellM volume plugin Group: Applications/Multimedia @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:16:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:16:10 +0000 (UTC) Subject: rpms/gkrellm-weather/devel gkrellm-weather.spec,1.13,1.14 Message-ID: <20090725001610.2440311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-weather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13428 Modified Files: gkrellm-weather.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-weather.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-weather/devel/gkrellm-weather.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gkrellm-weather.spec 24 Feb 2009 21:51:41 -0000 1.13 +++ gkrellm-weather.spec 25 Jul 2009 00:16:09 -0000 1.14 @@ -3,7 +3,7 @@ Name: gkrellm-weather Version: 2.0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Weather plugin for GKrellM Group: Applications/System @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:16:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:16:25 +0000 (UTC) Subject: rpms/gkrellm-wifi/devel gkrellm-wifi.spec,1.8,1.9 Message-ID: <20090725001625.1357811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gkrellm-wifi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13566 Modified Files: gkrellm-wifi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gkrellm-wifi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-wifi/devel/gkrellm-wifi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gkrellm-wifi.spec 24 Feb 2009 21:52:38 -0000 1.8 +++ gkrellm-wifi.spec 25 Jul 2009 00:16:24 -0000 1.9 @@ -1,6 +1,6 @@ Name: gkrellm-wifi Version: 0.9.12 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Wireless monitor plugin for the GNU Krell Monitors Group: Applications/System License: GPLv2+ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.12-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:16:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:16:40 +0000 (UTC) Subject: rpms/gl-117/devel gl-117.spec,1.14,1.15 Message-ID: <20090725001640.1E5A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gl-117/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13732 Modified Files: gl-117.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gl-117.spec =================================================================== RCS file: /cvs/pkgs/rpms/gl-117/devel/gl-117.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gl-117.spec 24 Feb 2009 21:53:33 -0000 1.14 +++ gl-117.spec 25 Jul 2009 00:16:39 -0000 1.15 @@ -1,6 +1,6 @@ Name: gl-117 Version: 1.3.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Action flight simulator Group: Amusements/Games License: GPLv2 @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man6/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:16:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:16:55 +0000 (UTC) Subject: rpms/gl2ps/devel gl2ps.spec,1.3,1.4 Message-ID: <20090725001655.8574511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gl2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13925 Modified Files: gl2ps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gl2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/gl2ps/devel/gl2ps.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gl2ps.spec 24 Feb 2009 21:54:24 -0000 1.3 +++ gl2ps.spec 25 Jul 2009 00:16:55 -0000 1.4 @@ -2,7 +2,7 @@ Summary: An OpenGL to PostScript printin Summary(pl): Biblioteka drukowania z OpenGL-a do PostScriptu Name: gl2ps Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ or GL2PS Group: System Environment/Libraries Source0: http://www.geuz.org/gl2ps/src/%{name}-%{version}.tgz @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_includedir}/gl2ps.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:17:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:17:10 +0000 (UTC) Subject: rpms/glabels/devel glabels.spec,1.23,1.24 Message-ID: <20090725001710.3C90E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glabels/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14067 Modified Files: glabels.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glabels.spec =================================================================== RCS file: /cvs/pkgs/rpms/glabels/devel/glabels.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- glabels.spec 30 May 2009 04:02:49 -0000 1.23 +++ glabels.spec 25 Jul 2009 00:17:10 -0000 1.24 @@ -1,6 +1,6 @@ Name: glabels Version: 2.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A program for creating labels and business cards for GNOME Group: Applications/Publishing @@ -159,6 +159,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Peter Gordon - 2.2.5-1 - Update to new upstream bug-fix release (2.2.5): * Fixed spinbutton/adjustment bugs that made glabels unusable with Gtk 2.16. From jkeating at fedoraproject.org Sat Jul 25 00:17:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:17:25 +0000 (UTC) Subject: rpms/glade2/devel glade2.spec,1.39,1.40 Message-ID: <20090725001725.032FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glade2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14208 Modified Files: glade2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glade2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glade2/devel/glade2.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- glade2.spec 24 Feb 2009 21:56:09 -0000 1.39 +++ glade2.spec 25 Jul 2009 00:17:24 -0000 1.40 @@ -16,7 +16,7 @@ Summary: A GTK+ GUI builder. Name: glade2 Version: 2.12.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ and GFDL URL: http://glade.gnome.org/ Source: http://download.gnome.org/sources/glade/2.12/glade-%{version}.tar.bz2 @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.12.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:17:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:17:40 +0000 (UTC) Subject: rpms/glade3/devel glade3.spec,1.31,1.32 Message-ID: <20090725001740.2ECC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glade3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14517 Modified Files: glade3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glade3.spec =================================================================== RCS file: /cvs/pkgs/rpms/glade3/devel/glade3.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- glade3.spec 30 Jun 2009 18:24:20 -0000 1.31 +++ glade3.spec 25 Jul 2009 00:17:40 -0000 1.32 @@ -1,7 +1,7 @@ Summary: User Interface Designer for GTK+ and GNOME Name: glade3 Version: 3.6.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://glade.gnome.org/ @@ -191,6 +191,9 @@ fi %{_includedir}/libgladeui-1.0/gladeui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Matthias Clasen - 3.6.7-1 - Update to 3.6.7 - Drop the menu patch, since glade-3 is the version we install From jkeating at fedoraproject.org Sat Jul 25 00:17:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:17:55 +0000 (UTC) Subject: rpms/glaxium/devel glaxium.spec,1.4,1.5 Message-ID: <20090725001755.F033F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glaxium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14914 Modified Files: glaxium.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glaxium.spec =================================================================== RCS file: /cvs/pkgs/rpms/glaxium/devel/glaxium.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- glaxium.spec 24 Feb 2009 21:58:03 -0000 1.4 +++ glaxium.spec 25 Jul 2009 00:17:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: glaxium Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An OpenGL space shooter Group: Amusements/Games License: GPLv2+ @@ -79,6 +79,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:18:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:18:12 +0000 (UTC) Subject: rpms/gle/devel gle.spec,1.12,1.13 Message-ID: <20090725001812.4270D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15441 Modified Files: gle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gle.spec =================================================================== RCS file: /cvs/pkgs/rpms/gle/devel/gle.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gle.spec 21 May 2009 09:08:00 -0000 1.12 +++ gle.spec 25 Jul 2009 00:18:12 -0000 1.13 @@ -2,7 +2,7 @@ Summary: Graphics Layout Engine Name: gle Version: 4.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.gle-graphics.org/ @@ -61,6 +61,9 @@ dos2unix LICENSE.txt %{_libdir}/lib%{name}-graphics-%{version}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Terje Rosten - 4.2.0-2 - Build with cairo support - Use correct optflags From jkeating at fedoraproject.org Sat Jul 25 00:18:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:18:29 +0000 (UTC) Subject: rpms/glest/devel glest.spec,1.25,1.26 Message-ID: <20090725001829.06FD011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15641 Modified Files: glest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glest.spec =================================================================== RCS file: /cvs/pkgs/rpms/glest/devel/glest.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- glest.spec 28 Feb 2009 08:07:41 -0000 1.25 +++ glest.spec 25 Jul 2009 00:18:28 -0000 1.26 @@ -1,6 +1,6 @@ Name: glest Version: 3.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D real time strategy game Group: Amusements/Games @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Aurelien Bompard 3.2.1-1 - version 3.2.1 - drop patch0 (merged upstream) From jkeating at fedoraproject.org Sat Jul 25 00:18:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:18:44 +0000 (UTC) Subject: rpms/glest-data/devel glest-data.spec,1.14,1.15 Message-ID: <20090725001844.6A9DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glest-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15823 Modified Files: glest-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glest-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/glest-data/devel/glest-data.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- glest-data.spec 28 Feb 2009 08:52:13 -0000 1.14 +++ glest-data.spec 25 Jul 2009 00:18:44 -0000 1.15 @@ -1,6 +1,6 @@ Name: glest-data Version: 3.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Data files for the game Glest Group: Amusements/Games @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Aurelien Bompard 3.2.1-1 - version 3.2.1 From jkeating at fedoraproject.org Sat Jul 25 00:18:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:18:57 +0000 (UTC) Subject: rpms/glew/devel glew.spec,1.6,1.7 Message-ID: <20090725001857.EE91111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16020 Modified Files: glew.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glew.spec =================================================================== RCS file: /cvs/pkgs/rpms/glew/devel/glew.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- glew.spec 24 Feb 2009 22:01:47 -0000 1.6 +++ glew.spec 25 Jul 2009 00:18:57 -0000 1.7 @@ -1,6 +1,6 @@ Name: glew Version: 1.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The OpenGL Extension Wrangler Library Group: System Environment/Libraries License: BSD and MIT @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:19:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:19:12 +0000 (UTC) Subject: rpms/glglobe/devel glglobe.spec,1.3,1.4 Message-ID: <20090725001913.0260911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glglobe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16179 Modified Files: glglobe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glglobe.spec =================================================================== RCS file: /cvs/pkgs/rpms/glglobe/devel/glglobe.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- glglobe.spec 24 Feb 2009 22:02:43 -0000 1.3 +++ glglobe.spec 25 Jul 2009 00:19:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: glglobe Version: 0.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OpenGl Globe - Earth simulation for linux Group: Amusements/Graphics @@ -108,6 +108,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:19:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:19:27 +0000 (UTC) Subject: rpms/glib/devel glib.spec,1.14,1.15 Message-ID: <20090725001927.375FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16344 Modified Files: glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib/devel/glib.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- glib.spec 21 Apr 2009 10:26:03 -0000 1.14 +++ glib.spec 25 Jul 2009 00:19:27 -0000 1.15 @@ -2,7 +2,7 @@ Summary: A library of handy utility func Name: glib Epoch: 1 Version: 1.2.10 -Release: 32%{?dist} +Release: 33%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org/ @@ -114,6 +114,9 @@ LIBTOOL=%{_bindir}/libtool \ %{_datadir}/aclocal/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.10-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Paul Howarth 1:1.2.10-32 - remove redundant linkage of libgmodule to libgthread - cosmetic spec changes From jkeating at fedoraproject.org Sat Jul 25 00:19:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:19:40 +0000 (UTC) Subject: rpms/glib-java/devel glib-java.spec,1.64,1.65 Message-ID: <20090725001940.E63D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glib-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16490 Modified Files: glib-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glib-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib-java/devel/glib-java.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- glib-java.spec 24 Feb 2009 22:03:37 -0000 1.64 +++ glib-java.spec 25 Jul 2009 00:19:40 -0000 1.65 @@ -1,7 +1,7 @@ Summary: Base Library for the Java-GNOME libraries Name: glib-java Version: 0.2.6 -Release: 15%{?dist} +Release: 16%{?dist} URL: http://java-gnome.sourceforge.net Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.2/%{name}-%{version}.tar.bz2 Patch0: %{name}-gjavah.patch @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/java/*.zip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.6-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.6-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:19:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:19:55 +0000 (UTC) Subject: rpms/glib2/devel glib2.spec,1.212,1.213 Message-ID: <20090725001955.1390B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16666 Modified Files: glib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glib2/devel/glib2.spec,v retrieving revision 1.212 retrieving revision 1.213 diff -u -p -r1.212 -r1.213 --- glib2.spec 18 Jul 2009 01:00:48 -0000 1.212 +++ glib2.spec 25 Jul 2009 00:19:54 -0000 1.213 @@ -3,7 +3,7 @@ Summary: A library of handy utility functions Name: glib2 Version: 2.21.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.21.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Matthias Clasen - 2.21.4-1 - Update to 2.21.4 From jkeating at fedoraproject.org Sat Jul 25 00:20:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:20:17 +0000 (UTC) Subject: rpms/glibc/devel glibc.spec,1.401,1.402 Message-ID: <20090725002017.006ED11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16866 Modified Files: glibc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.401 retrieving revision 1.402 diff -u -p -r1.401 -r1.402 --- glibc.spec 23 Jul 2009 23:57:27 -0000 1.401 +++ glibc.spec 25 Jul 2009 00:20:16 -0000 1.402 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 7.1 +Release: 8.1 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -1037,6 +1037,9 @@ rm -f *.filelist* %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10.90-8.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Jakub Jelinek - 2.10.90-7.1 - Fix up pthread_cond_timedwait on x86_64 with old kernels. From jkeating at fedoraproject.org Sat Jul 25 00:20:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:20:32 +0000 (UTC) Subject: rpms/glibmm24/devel glibmm.spec,1.54,1.55 Message-ID: <20090725002032.290F711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glibmm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17031 Modified Files: glibmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glibmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibmm24/devel/glibmm.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- glibmm.spec 9 Jul 2009 07:25:24 -0000 1.54 +++ glibmm.spec 25 Jul 2009 00:20:31 -0000 1.55 @@ -1,6 +1,6 @@ Name: glibmm24 Version: 2.21.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for GTK2 (a GUI library for X) Group: System Environment/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.21.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Denis Leroy - 2.21.1-1 - Update to upstream 2.21.1 - Switch to unstable branch, to follow glib2 version From jkeating at fedoraproject.org Sat Jul 25 00:20:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:20:45 +0000 (UTC) Subject: rpms/glimmer/devel glimmer.spec,1.5,1.6 Message-ID: <20090725002045.CD94E11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glimmer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17174 Modified Files: glimmer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glimmer.spec =================================================================== RCS file: /cvs/pkgs/rpms/glimmer/devel/glimmer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- glimmer.spec 24 Feb 2009 16:48:18 -0000 1.5 +++ glimmer.spec 25 Jul 2009 00:20:45 -0000 1.6 @@ -1,6 +1,6 @@ Name: glimmer Version: 3.02 -Release: 5%{?dist} +Release: 6%{?dist} Summary: System for finding genes in microbial DNA Group: Applications/Engineering @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Christian Iseli - 3.02-5 - Update patch for gcc-4.4 From jkeating at fedoraproject.org Sat Jul 25 00:20:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:20:59 +0000 (UTC) Subject: rpms/glipper/devel glipper.spec,1.14,1.15 Message-ID: <20090725002059.D555D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glipper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17324 Modified Files: glipper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glipper.spec =================================================================== RCS file: /cvs/pkgs/rpms/glipper/devel/glipper.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- glipper.spec 24 Feb 2009 22:07:29 -0000 1.14 +++ glipper.spec 25 Jul 2009 00:20:59 -0000 1.15 @@ -2,7 +2,7 @@ Name: glipper Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A simple Clipboardmanager for GNOME Group: Applications/Text @@ -107,6 +107,9 @@ fi %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:21:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:21:12 +0000 (UTC) Subject: rpms/glista/devel glista.spec,1.2,1.3 Message-ID: <20090725002112.C88E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glista/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17467 Modified Files: glista.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glista.spec =================================================================== RCS file: /cvs/pkgs/rpms/glista/devel/glista.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- glista.spec 6 May 2009 22:34:49 -0000 1.2 +++ glista.spec 25 Jul 2009 00:21:12 -0000 1.3 @@ -2,7 +2,7 @@ Name: glista Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple personal to-do list manager or task tracking tool Group: User Interface/Desktops @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Christoph Wickert - 0.4-2 - Add autostart for GNOME - Fix macros From jkeating at fedoraproject.org Sat Jul 25 00:21:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:21:27 +0000 (UTC) Subject: rpms/glitz/devel glitz.spec,1.6,1.7 Message-ID: <20090725002127.1783511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glitz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17633 Modified Files: glitz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glitz.spec =================================================================== RCS file: /cvs/pkgs/rpms/glitz/devel/glitz.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- glitz.spec 24 Feb 2009 22:08:26 -0000 1.6 +++ glitz.spec 25 Jul 2009 00:21:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: glitz Version: 0.5.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OpenGL image compositing library Group: System Environment/Libraries License: BSD @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/glitz-glx.3.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:21:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:21:40 +0000 (UTC) Subject: rpms/gliv/devel gliv.spec,1.3,1.4 Message-ID: <20090725002140.E373D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gliv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17785 Modified Files: gliv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gliv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gliv/devel/gliv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gliv.spec 24 Feb 2009 22:09:22 -0000 1.3 +++ gliv.spec 25 Jul 2009 00:21:40 -0000 1.4 @@ -5,7 +5,7 @@ Summary: Image viewing utility Name: gliv Version: 1.9.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://guichaz.free.fr/gliv/ @@ -87,6 +87,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/pixmaps/gliv.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:21:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:21:55 +0000 (UTC) Subject: rpms/glob2/devel glob2.spec,1.9,1.10 Message-ID: <20090725002155.3EDA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glob2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17971 Modified Files: glob2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glob2.spec =================================================================== RCS file: /cvs/pkgs/rpms/glob2/devel/glob2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- glob2.spec 20 Jun 2009 22:25:17 -0000 1.9 +++ glob2.spec 25 Jul 2009 00:21:55 -0000 1.10 @@ -1,6 +1,6 @@ Name: glob2 Version: 0.9.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An innovative RTS game Group: Amusements/Games @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Rafa? Psota - 0.9.4.1-1 - update to 0.9.4.1 * Thu Dec 18 2008 Petr Machata - 0.9.3-2 From jkeating at fedoraproject.org Sat Jul 25 00:22:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:22:09 +0000 (UTC) Subject: rpms/global/devel global.spec,1.25,1.26 Message-ID: <20090725002209.1903A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/global/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18129 Modified Files: global.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: global.spec =================================================================== RCS file: /cvs/pkgs/rpms/global/devel/global.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- global.spec 16 Jun 2009 19:15:15 -0000 1.25 +++ global.spec 25 Jul 2009 00:22:08 -0000 1.26 @@ -1,6 +1,6 @@ Name: global Version: 5.7.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Source code tag system @@ -49,6 +49,9 @@ fi %{_datadir}/gtags %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.7.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Gerard Milmeister - 5.7.5-1 - new release 5.7.5 From jkeating at fedoraproject.org Sat Jul 25 00:22:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:22:23 +0000 (UTC) Subject: rpms/globalplatform/devel globalplatform.spec,1.3,1.4 Message-ID: <20090725002223.14C5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/globalplatform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18296 Modified Files: globalplatform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: globalplatform.spec =================================================================== RCS file: /cvs/pkgs/rpms/globalplatform/devel/globalplatform.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globalplatform.spec 24 Feb 2009 22:11:18 -0000 1.3 +++ globalplatform.spec 25 Jul 2009 00:22:22 -0000 1.4 @@ -1,6 +1,6 @@ Name: globalplatform Version: 5.0.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Library for access to OP 2.0.1 and GP 2.1.1 conforming smart cards Group: System Environment/Libraries License: LGPLv3+ @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.0.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:24:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:24:09 +0000 (UTC) Subject: rpms/glog/devel glog.spec,1.5,1.6 Message-ID: <20090725002409.35ACC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19387 Modified Files: glog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glog.spec =================================================================== RCS file: /cvs/pkgs/rpms/glog/devel/glog.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- glog.spec 26 Feb 2009 23:40:29 -0000 1.5 +++ glog.spec 25 Jul 2009 00:24:08 -0000 1.6 @@ -1,6 +1,6 @@ Name: glog Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A C++ application logging library Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 John A. Khvatov 0.2-5 - fixes for gcc 4.4 From jkeating at fedoraproject.org Sat Jul 25 00:24:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:24:24 +0000 (UTC) Subject: rpms/glom/devel glom.spec,1.35,1.36 Message-ID: <20090725002424.5D33611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19556 Modified Files: glom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glom.spec =================================================================== RCS file: /cvs/pkgs/rpms/glom/devel/glom.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- glom.spec 25 Jun 2009 07:53:15 -0000 1.35 +++ glom.spec 25 Jul 2009 00:24:24 -0000 1.36 @@ -3,7 +3,7 @@ Name: glom Version: %{major_version}.%{minor_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy-to-use database designer and user interface Group: Applications/Databases @@ -163,6 +163,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Denis Leroy - 1.10.1-1 - Update to stable upstream 1.10.1, bugfix release From jkeating at fedoraproject.org Sat Jul 25 00:24:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:24:39 +0000 (UTC) Subject: rpms/gloox/devel gloox.spec,1.1,1.2 Message-ID: <20090725002439.F170211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gloox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19723 Modified Files: gloox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gloox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gloox/devel/gloox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gloox.spec 25 Apr 2009 17:55:34 -0000 1.1 +++ gloox.spec 25 Jul 2009 00:24:39 -0000 1.2 @@ -3,7 +3,7 @@ Name: gloox Version: 1.0 -Release: 0.5.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} +Release: 0.6.%{?beta:beta%{beta}}%{?SVN:SVNr%{SVN}}%{?dist} Summary: A rock-solid, full-featured Jabber/XMPP client library Group: System Environment/Libraries License: GPLv2 @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.SVNr4003 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Pavel Alexeev - 1.0-0.5.SVNr4003 - Add --exclude='.svn' to tar pack source and set time to last commit. This may allow pass hash checking soucre later. From jkeating at fedoraproject.org Sat Jul 25 00:24:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:24:55 +0000 (UTC) Subject: rpms/glpi/devel glpi.spec,1.24,1.25 Message-ID: <20090725002455.4E7B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19870 Modified Files: glpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/glpi/devel/glpi.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- glpi.spec 2 Jun 2009 15:23:56 -0000 1.24 +++ glpi.spec 25 Jul 2009 00:24:55 -0000 1.25 @@ -6,7 +6,7 @@ Name: glpi Version: 0.71.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Free IT asset management software Summary(fr): Gestion Libre de Parc Informatique @@ -229,6 +229,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.71.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 02 2009 Remi Collet - 0.71.6-1 - update to 0.71.6 (Bugfix Release) From jkeating at fedoraproject.org Sat Jul 25 00:25:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:25:11 +0000 (UTC) Subject: rpms/glpi-data-injection/devel glpi-data-injection.spec,1.5,1.6 Message-ID: <20090725002511.1004611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glpi-data-injection/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20018 Modified Files: glpi-data-injection.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glpi-data-injection.spec =================================================================== RCS file: /cvs/pkgs/rpms/glpi-data-injection/devel/glpi-data-injection.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- glpi-data-injection.spec 21 Apr 2009 16:20:17 -0000 1.5 +++ glpi-data-injection.spec 25 Jul 2009 00:25:10 -0000 1.6 @@ -2,7 +2,7 @@ Name: glpi-data-injection Version: 1.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugin for importing data into GLPI Summary(fr): Extension pour importer des donn?es dans GLPI @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Remi Collet - 1.5.1-1 - update to 1.5.1 From jkeating at fedoraproject.org Sat Jul 25 00:25:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:25:27 +0000 (UTC) Subject: rpms/glpi-mass-ocs-import/devel glpi-mass-ocs-import.spec,1.6,1.7 Message-ID: <20090725002527.5F2AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glpi-mass-ocs-import/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20217 Modified Files: glpi-mass-ocs-import.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glpi-mass-ocs-import.spec =================================================================== RCS file: /cvs/pkgs/rpms/glpi-mass-ocs-import/devel/glpi-mass-ocs-import.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- glpi-mass-ocs-import.spec 9 Apr 2009 15:18:45 -0000 1.6 +++ glpi-mass-ocs-import.spec 25 Jul 2009 00:25:27 -0000 1.7 @@ -3,7 +3,7 @@ Name: glpi-mass-ocs-import Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GLPI Plugin for OCS Massive import Summary(fr): Extension GLPI d'import en masse OCS @@ -129,6 +129,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Remi Collet - 1.2.2-1 - update to 1.2.2 (bugfixes) From jkeating at fedoraproject.org Sat Jul 25 00:25:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:25:48 +0000 (UTC) Subject: rpms/glpi-pdf/devel glpi-pdf.spec,1.3,1.4 Message-ID: <20090725002548.2BA3911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glpi-pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20438 Modified Files: glpi-pdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glpi-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/glpi-pdf/devel/glpi-pdf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- glpi-pdf.spec 24 Feb 2009 22:16:42 -0000 1.3 +++ glpi-pdf.spec 25 Jul 2009 00:25:48 -0000 1.4 @@ -2,7 +2,7 @@ Name: glpi-pdf Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GLPI Plugin to print PDF of computers Summary(fr): Extension GLPI pour cr?er des PDF des ordinateurs @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:26:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:26:04 +0000 (UTC) Subject: rpms/glpk/devel glpk.spec,1.24,1.25 Message-ID: <20090725002604.6C5BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glpk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20606 Modified Files: glpk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glpk.spec =================================================================== RCS file: /cvs/pkgs/rpms/glpk/devel/glpk.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- glpk.spec 27 Mar 2009 19:47:43 -0000 1.24 +++ glpk.spec 25 Jul 2009 00:26:04 -0000 1.25 @@ -1,6 +1,6 @@ Name: glpk Version: 4.36 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GNU Linear Programming Kit Group: System Environment/Libraries @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Conrad Meyer - 4.36-3 - Split out -doc subpackage. From jkeating at fedoraproject.org Sat Jul 25 00:26:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:26:19 +0000 (UTC) Subject: rpms/glump/devel glump.spec,1.4,1.5 Message-ID: <20090725002619.502BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20757 Modified Files: glump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glump.spec =================================================================== RCS file: /cvs/pkgs/rpms/glump/devel/glump.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- glump.spec 24 Feb 2009 22:18:34 -0000 1.4 +++ glump.spec 25 Jul 2009 00:26:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: glump Version: 0.9.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A small web application to glue files from multiple sources License: GPLv2+ @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:26:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:26:35 +0000 (UTC) Subject: rpms/glunarclock/devel glunarclock.spec,1.23,1.24 Message-ID: <20090725002635.2C18411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glunarclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20924 Modified Files: glunarclock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glunarclock.spec =================================================================== RCS file: /cvs/pkgs/rpms/glunarclock/devel/glunarclock.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- glunarclock.spec 24 Mar 2009 16:42:25 -0000 1.23 +++ glunarclock.spec 25 Jul 2009 00:26:35 -0000 1.24 @@ -1,6 +1,6 @@ Name: glunarclock Version: 0.32.4 -Release: 14%{?dist} +Release: 15%{?dist} Summary: GNOME applet that displays the current lunar phase Group: User Interface/Desktops @@ -93,6 +93,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.32.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Jon Ciesla - 0.32.4-14 - Libgnomeui fix. From jkeating at fedoraproject.org Sat Jul 25 00:26:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:26:50 +0000 (UTC) Subject: rpms/glusterfs/devel glusterfs.spec,1.11,1.12 Message-ID: <20090725002650.3868E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glusterfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21070 Modified Files: glusterfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glusterfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/glusterfs/devel/glusterfs.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- glusterfs.spec 11 Jun 2009 12:08:10 -0000 1.11 +++ glusterfs.spec 25 Jul 2009 00:26:50 -0000 1.12 @@ -16,7 +16,7 @@ Summary: Cluster File System Name: glusterfs Version: 2.0.1 -Release: 2%{?pre:.%{pre}}%{?dist} +Release: 3%{?pre:.%{pre}}%{?dist} License: GPLv3+ Group: System Environment/Base URL: http://www.gluster.org/docs/index.php/GlusterFS @@ -235,6 +235,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Matthias Saou 2.0.1-2 - Remove libglusterfs/src/y.tab.c to fix koji F11/devel builds. From jkeating at fedoraproject.org Sat Jul 25 00:27:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:27:06 +0000 (UTC) Subject: rpms/glyph-keeper/devel glyph-keeper.spec,1.10,1.11 Message-ID: <20090725002706.0929511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/glyph-keeper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21238 Modified Files: glyph-keeper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glyph-keeper.spec =================================================================== RCS file: /cvs/pkgs/rpms/glyph-keeper/devel/glyph-keeper.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- glyph-keeper.spec 24 Feb 2009 22:20:36 -0000 1.10 +++ glyph-keeper.spec 25 Jul 2009 00:27:05 -0000 1.11 @@ -1,6 +1,6 @@ Name: glyph-keeper Version: 0.32 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for text rendering Group: System Environment/Libraries License: zlib @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.32-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.32-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:27:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:27:22 +0000 (UTC) Subject: rpms/gmediaserver/devel gmediaserver.spec,1.10,1.11 Message-ID: <20090725002722.9035E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmediaserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21417 Modified Files: gmediaserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmediaserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmediaserver/devel/gmediaserver.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gmediaserver.spec 24 Feb 2009 22:21:33 -0000 1.10 +++ gmediaserver.spec 25 Jul 2009 00:27:22 -0000 1.11 @@ -1,7 +1,7 @@ %define mediadir /var/lib/gmediaserver Name: gmediaserver Version: 0.13.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: UPnP compatible media server for the GNU system Group: Applications/Multimedia @@ -109,6 +109,9 @@ fi %attr(-,%{name},%{name}) %{mediadir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.13.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:27:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:27:37 +0000 (UTC) Subject: rpms/gmfsk/devel gmfsk.spec,1.2,1.3 Message-ID: <20090725002737.75AD511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmfsk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21587 Modified Files: gmfsk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmfsk.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmfsk/devel/gmfsk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gmfsk.spec 24 Feb 2009 22:22:30 -0000 1.2 +++ gmfsk.spec 25 Jul 2009 00:27:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: gmfsk Version: 0.7 -Release: 0.6.pre1%{?dist} +Release: 0.7.pre1%{?dist} Summary: A Gnome Multimode HF Terminal for Ham Radio Group: Applications/Communications @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/gconf/schemas/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-0.7.pre1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-0.6.pre1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:27:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:27:53 +0000 (UTC) Subject: rpms/gmime/devel gmime.spec,1.47,1.48 Message-ID: <20090725002753.824F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21756 Modified Files: gmime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmime.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmime/devel/gmime.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gmime.spec 19 Jul 2009 02:26:23 -0000 1.47 +++ gmime.spec 25 Jul 2009 00:27:53 -0000 1.48 @@ -1,6 +1,6 @@ Name: gmime Version: 2.4.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for creating and parsing MIME messages Group: System Environment/Libraries @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen - 2.4.7-1 - Update to 2.4.7 From jkeating at fedoraproject.org Sat Jul 25 00:28:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:28:08 +0000 (UTC) Subject: rpms/gmime22/devel gmime22.spec,1.2,1.3 Message-ID: <20090725002808.80CEA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmime22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21944 Modified Files: gmime22.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmime22.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmime22/devel/gmime22.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gmime22.spec 20 Jul 2009 13:07:34 -0000 1.2 +++ gmime22.spec 25 Jul 2009 00:28:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: gmime22 Version: 2.2.23 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for creating and parsing MIME messages Group: System Environment/Libraries @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.23-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Bernard Johnson - 2.2.23-6 - don't autoreconf, use included configure From jkeating at fedoraproject.org Sat Jul 25 00:28:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:28:24 +0000 (UTC) Subject: rpms/gmixer/devel gmixer.spec,1.3,1.4 Message-ID: <20090725002824.9E65B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22121 Modified Files: gmixer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmixer/devel/gmixer.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gmixer.spec 7 Jun 2009 16:06:16 -0000 1.3 +++ gmixer.spec 25 Jul 2009 00:28:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: gmixer Version: 1.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Just a simple audio mixer Group: Applications/Multimedia @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 7 2009 Leigh Scott - 1.3-6 - bump version as I couldn't remove CVS tag From jkeating at fedoraproject.org Sat Jul 25 00:28:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:28:45 +0000 (UTC) Subject: rpms/gmm/devel gmm.spec,1.3,1.4 Message-ID: <20090725002845.664ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22376 Modified Files: gmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmm/devel/gmm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gmm.spec 24 Feb 2009 22:24:27 -0000 1.3 +++ gmm.spec 25 Jul 2009 00:28:45 -0000 1.4 @@ -1,7 +1,7 @@ Name: gmm Summary: A generic C++ template library for sparse, dense and skyline matrices Version: 3.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries License: LGPLv2+ @@ -46,6 +46,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:28:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:28:59 +0000 (UTC) Subject: rpms/gmp/devel gmp.spec,1.62,1.63 Message-ID: <20090725002859.5A7AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22569 Modified Files: gmp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmp/devel/gmp.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- gmp.spec 17 Jun 2009 05:58:07 -0000 1.62 +++ gmp.spec 25 Jul 2009 00:28:59 -0000 1.63 @@ -6,7 +6,7 @@ Summary: A GNU arbitrary precision library Name: gmp Version: 4.3.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://gmplib.org/ Source0: ftp://ftp.gnu.org/pub/gnu/gmp/gmp-%{version}.tar.bz2 Source2: gmp.h @@ -228,6 +228,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ivana Varekova 4.3.1-3 - rebuild From jkeating at fedoraproject.org Sat Jul 25 00:29:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:29:12 +0000 (UTC) Subject: rpms/gmp-ecm/devel gmp-ecm.spec,1.5,1.6 Message-ID: <20090725002912.E0EEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmp-ecm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22739 Modified Files: gmp-ecm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmp-ecm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmp-ecm/devel/gmp-ecm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gmp-ecm.spec 1 May 2009 03:40:50 -0000 1.5 +++ gmp-ecm.spec 25 Jul 2009 00:29:12 -0000 1.6 @@ -1,6 +1,6 @@ Name: gmp-ecm Version: 6.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Elliptic Curve Method for Integer Factorization Group: Applications/Engineering License: LGPLv2+ and GPLv2+ @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Conrad Meyer - 6.2.3-1 - Bump to 6.2.3. From jkeating at fedoraproject.org Sat Jul 25 00:29:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:29:27 +0000 (UTC) Subject: rpms/gmpc/devel gmpc.spec,1.23,1.24 Message-ID: <20090725002927.1971B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22906 Modified Files: gmpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmpc/devel/gmpc.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- gmpc.spec 16 Jun 2009 12:49:37 -0000 1.23 +++ gmpc.spec 25 Jul 2009 00:29:26 -0000 1.24 @@ -1,7 +1,7 @@ Name: gmpc Summary: GNOME frontend for the MPD Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia @@ -164,6 +164,9 @@ touch --no-create %{_datadir}/icons/hico %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Adrian Reber - 0.18.0-1 - updated to 0.18.0 From jkeating at fedoraproject.org Sat Jul 25 00:29:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:29:41 +0000 (UTC) Subject: rpms/gmrun/devel gmrun.spec,1.11,1.12 Message-ID: <20090725002941.1DDAB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmrun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23079 Modified Files: gmrun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmrun.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmrun/devel/gmrun.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gmrun.spec 24 Feb 2009 22:28:51 -0000 1.11 +++ gmrun.spec 25 Jul 2009 00:29:40 -0000 1.12 @@ -1,6 +1,6 @@ Name: gmrun Version: 0.9.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Lightweight "Run program" dialog box with search history and tab completion Group: User Interface/Desktops @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.2-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:29:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:29:59 +0000 (UTC) Subject: rpms/gmusicbrowser/devel gmusicbrowser.spec,1.1,1.2 Message-ID: <20090725002959.22BCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmusicbrowser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23256 Modified Files: gmusicbrowser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmusicbrowser.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmusicbrowser/devel/gmusicbrowser.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gmusicbrowser.spec 12 Apr 2009 18:33:42 -0000 1.1 +++ gmusicbrowser.spec 25 Jul 2009 00:29:58 -0000 1.2 @@ -1,7 +1,7 @@ Name: gmusicbrowser Summary: Jukebox for large collections of music files Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Multimedia @@ -101,6 +101,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Remi Collet - 1.0.1-2 - From review (#485961) - preserve timestamp From jkeating at fedoraproject.org Sat Jul 25 00:30:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:30:14 +0000 (UTC) Subject: rpms/gmyth/devel gmyth.spec,1.14,1.15 Message-ID: <20090725003014.75D6A11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gmyth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23449 Modified Files: gmyth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gmyth.spec =================================================================== RCS file: /cvs/pkgs/rpms/gmyth/devel/gmyth.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gmyth.spec 21 Apr 2009 09:42:27 -0000 1.14 +++ gmyth.spec 25 Jul 2009 00:30:14 -0000 1.15 @@ -3,7 +3,7 @@ Summary: MythTV remote access libraries Name: gmyth Version: 0.7.1 -Release: 9%{?dist}.1 +Release: 10%{?dist}.1 License: LGPLv2+ Group: System Environment/Libraries Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.1-10.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Karsten Hopp 0.7.1-9.1 - rebuild with latest mysql on s390x From jkeating at fedoraproject.org Sat Jul 25 00:30:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:30:31 +0000 (UTC) Subject: rpms/gnash/devel gnash.spec,1.51,1.52 Message-ID: <20090725003031.D305111C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23659 Modified Files: gnash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnash.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnash/devel/gnash.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gnash.spec 22 May 2009 20:23:02 -0000 1.51 +++ gnash.spec 25 Jul 2009 00:30:31 -0000 1.52 @@ -1,6 +1,6 @@ Name: gnash Version: 0.8.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU flash movie player Group: Applications/Multimedia @@ -290,6 +290,9 @@ fi %{_mandir}/man1/cygnal.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Kevin Kofler 0.8.5-4 - rebuild for new Boost From jkeating at fedoraproject.org Sat Jul 25 00:30:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:30:48 +0000 (UTC) Subject: rpms/gnaural/devel gnaural.spec,1.2,1.3 Message-ID: <20090725003048.8FE3911C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnaural/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23855 Modified Files: gnaural.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnaural.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnaural/devel/gnaural.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnaural.spec 24 Feb 2009 22:31:45 -0000 1.2 +++ gnaural.spec 25 Jul 2009 00:30:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: gnaural Version: 1.0.20080808 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A multi-platform programmable binaural-beat generator Group: Applications/Multimedia @@ -91,6 +91,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.20080808-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.20080808-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:31:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:31:13 +0000 (UTC) Subject: rpms/gnet2/devel gnet2.spec,1.15,1.16 Message-ID: <20090725003113.9886911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnet2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24107 Modified Files: gnet2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnet2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnet2/devel/gnet2.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gnet2.spec 24 Feb 2009 22:32:39 -0000 1.15 +++ gnet2.spec 25 Jul 2009 00:31:13 -0000 1.16 @@ -1,6 +1,6 @@ Name: gnet2 Version: 2.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple network library built upon glib Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:31:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:31:29 +0000 (UTC) Subject: rpms/gnochm/devel gnochm.spec,1.16,1.17 Message-ID: <20090725003129.3A8CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnochm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24300 Modified Files: gnochm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnochm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnochm/devel/gnochm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnochm.spec 24 Feb 2009 22:33:31 -0000 1.16 +++ gnochm.spec 25 Jul 2009 00:31:29 -0000 1.17 @@ -1,6 +1,6 @@ Name: gnochm Version: 0.9.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: CHM file viewer Group: Applications/Publishing @@ -138,6 +138,9 @@ touch --no-create %{_datadir}/icons/gnom %{_datadir}/icons/gnome/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:31:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:31:44 +0000 (UTC) Subject: rpms/gnofract4d/devel gnofract4d.spec,1.22,1.23 Message-ID: <20090725003144.91F0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnofract4d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24452 Modified Files: gnofract4d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnofract4d.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnofract4d/devel/gnofract4d.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- gnofract4d.spec 19 Jun 2009 20:37:44 -0000 1.22 +++ gnofract4d.spec 25 Jul 2009 00:31:44 -0000 1.23 @@ -2,7 +2,7 @@ Name: gnofract4d Version: 3.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gnofract 4D is a Gnome-based program to draw fractals Group: Amusements/Graphics License: LGPLv2+ @@ -88,6 +88,9 @@ xinit %{__python} test.py -- /usr/bin/Xv %{python_sitearch}/fractutils/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Stewart Adam - 3.12-1 - Update to 3.12 From jkeating at fedoraproject.org Sat Jul 25 00:32:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:32:00 +0000 (UTC) Subject: rpms/gnokii/devel gnokii.spec,1.38,1.39 Message-ID: <20090725003200.72CBA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnokii/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24628 Modified Files: gnokii.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnokii.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnokii/devel/gnokii.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- gnokii.spec 18 Jun 2009 16:55:39 -0000 1.38 +++ gnokii.spec 25 Jul 2009 00:32:00 -0000 1.39 @@ -2,7 +2,7 @@ Name: gnokii Version: 0.6.27 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Linux/Unix tool suite for various mobile phones Group: Applications/Communications @@ -228,6 +228,9 @@ fi %{_libdir}/pkgconfig/xgnokii.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.27-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Ville Skytt? - 0.6.27-5 - Build with pcsc-lite and readline support (#430387). From jkeating at fedoraproject.org Sat Jul 25 00:32:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:32:15 +0000 (UTC) Subject: rpms/gnomad2/devel gnomad2.spec,1.31,1.32 Message-ID: <20090725003215.5BB8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnomad2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24781 Modified Files: gnomad2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnomad2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomad2/devel/gnomad2.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- gnomad2.spec 24 Feb 2009 22:36:20 -0000 1.31 +++ gnomad2.spec 25 Jul 2009 00:32:15 -0000 1.32 @@ -2,7 +2,7 @@ Name: gnomad2 Version: 2.9.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GNOME 2.0 client for the Creative Jukeboxes and Dell DJs License: GPLv2+ @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS NEWS README COPYING ChangeLog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.9.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.9.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:32:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:32:30 +0000 (UTC) Subject: rpms/gnome-applet-alarm-clock/devel gnome-applet-alarm-clock.spec, 1.3, 1.4 Message-ID: <20090725003230.29A2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-alarm-clock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24932 Modified Files: gnome-applet-alarm-clock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-alarm-clock.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-alarm-clock/devel/gnome-applet-alarm-clock.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-applet-alarm-clock.spec 6 May 2009 22:21:53 -0000 1.3 +++ gnome-applet-alarm-clock.spec 25 Jul 2009 00:32:30 -0000 1.4 @@ -4,7 +4,7 @@ Name: gnome-applet-alarm-clock Version: 0.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Alarm clock for the GNOME panel Group: User Interface/Desktops @@ -91,5 +91,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Christoph Wickert - 0.2.5-1 - Initial Fedora package From jkeating at fedoraproject.org Sat Jul 25 00:32:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:32:45 +0000 (UTC) Subject: rpms/gnome-applet-bubblemon/devel gnome-applet-bubblemon.spec, 1.1, 1.2 Message-ID: <20090725003245.39A8311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-bubblemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25089 Modified Files: gnome-applet-bubblemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-bubblemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-bubblemon/devel/gnome-applet-bubblemon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnome-applet-bubblemon.spec 29 May 2009 13:33:30 -0000 1.1 +++ gnome-applet-bubblemon.spec 25 Jul 2009 00:32:45 -0000 1.2 @@ -6,7 +6,7 @@ Name: gnome-applet-bubblemon Version: 2.0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bubbling Load Monitoring Applet for the GNOME Panel Group: Applications/System @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Edwin ten Brink - 2.0.14-1 - Upgraded to version 2.0.14. From jkeating at fedoraproject.org Sat Jul 25 00:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:32:59 +0000 (UTC) Subject: rpms/gnome-applet-grandr/devel gnome-applet-grandr.spec,1.1,1.2 Message-ID: <20090725003259.3D86211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-grandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25232 Modified Files: gnome-applet-grandr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-grandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-grandr/devel/gnome-applet-grandr.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnome-applet-grandr.spec 23 May 2009 23:07:15 -0000 1.1 +++ gnome-applet-grandr.spec 25 Jul 2009 00:32:59 -0000 1.2 @@ -3,7 +3,7 @@ Name: gnome-applet-%{bname} Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GNOME panel applet for XrandR Group: User Interface/Desktops @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 02 2008 Xavier Lamien - 0.4.1-1 - Initial RPM release. From jkeating at fedoraproject.org Sat Jul 25 00:33:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:33:14 +0000 (UTC) Subject: rpms/gnome-applet-jalali-calendar/devel gnome-applet-jalali-calendar.spec, 1.4, 1.5 Message-ID: <20090725003314.24FE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-jalali-calendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25384 Modified Files: gnome-applet-jalali-calendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-jalali-calendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-jalali-calendar/devel/gnome-applet-jalali-calendar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-applet-jalali-calendar.spec 21 Mar 2009 17:39:51 -0000 1.4 +++ gnome-applet-jalali-calendar.spec 25 Jul 2009 00:33:14 -0000 1.5 @@ -1,6 +1,6 @@ Name: gnome-applet-jalali-calendar Version: 1.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Jalali calendar panel applet for GNOME Group: User Interface/Desktops @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_datadir}/jalali-calendar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Hedayat Vatankhah 1.6.7-1 - Updated to 1.6.7 release (which contains info about year 1388) From jkeating at fedoraproject.org Sat Jul 25 00:33:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:33:29 +0000 (UTC) Subject: rpms/gnome-applet-music/devel gnome-applet-music.spec,1.30,1.31 Message-ID: <20090725003329.AB0E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25542 Modified Files: gnome-applet-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-music/devel/gnome-applet-music.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gnome-applet-music.spec 24 Feb 2009 22:38:19 -0000 1.30 +++ gnome-applet-music.spec 25 Jul 2009 00:33:29 -0000 1.31 @@ -4,7 +4,7 @@ Name: gnome-applet-music Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GNOME panel applet to control various music players Summary(es): Miniaplicaci?n del panel GNOME para controlar reproductores de m?sica @@ -149,6 +149,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:33:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:33:44 +0000 (UTC) Subject: rpms/gnome-applet-netspeed/devel gnome-applet-netspeed.spec, 1.18, 1.19 Message-ID: <20090725003344.3E3DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-netspeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25690 Modified Files: gnome-applet-netspeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-netspeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-netspeed/devel/gnome-applet-netspeed.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gnome-applet-netspeed.spec 24 Feb 2009 22:39:14 -0000 1.18 +++ gnome-applet-netspeed.spec 25 Jul 2009 00:33:44 -0000 1.19 @@ -1,6 +1,6 @@ Name: gnome-applet-netspeed Version: 0.15.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNOME applet that shows traffic on a network device Group: Applications/Internet @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/omf/netspeed_applet/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.15.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:33:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:33:57 +0000 (UTC) Subject: rpms/gnome-applet-sensors/devel gnome-applet-sensors.spec, 1.20, 1.21 Message-ID: <20090725003357.F0B3511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-sensors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25850 Modified Files: gnome-applet-sensors.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-sensors.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-sensors/devel/gnome-applet-sensors.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gnome-applet-sensors.spec 24 Feb 2009 22:40:10 -0000 1.20 +++ gnome-applet-sensors.spec 25 Jul 2009 00:33:57 -0000 1.21 @@ -1,6 +1,6 @@ Name: gnome-applet-sensors Version: 2.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Gnome panel applet for hardware sensors Group: User Interface/Desktops License: GPLv2+ and CC-BY-SA @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:34:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:34:12 +0000 (UTC) Subject: rpms/gnome-applet-timer/devel gnome-applet-timer.spec,1.30,1.31 Message-ID: <20090725003412.7B8C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-timer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26008 Modified Files: gnome-applet-timer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-timer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-timer/devel/gnome-applet-timer.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gnome-applet-timer.spec 16 Apr 2009 13:48:24 -0000 1.30 +++ gnome-applet-timer.spec 25 Jul 2009 00:34:12 -0000 1.31 @@ -4,7 +4,7 @@ Name: gnome-applet-timer Version: 2.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A countdown timer applet for the GNOME panel Group: User Interface/Desktops @@ -101,6 +101,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Christoph Wickert - 2.1.2-2 - Require gstreamer-python From jkeating at fedoraproject.org Sat Jul 25 00:34:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:34:26 +0000 (UTC) Subject: rpms/gnome-applet-vm/devel gnome-applet-vm.spec,1.25,1.26 Message-ID: <20090725003426.1E56011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applet-vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26159 Modified Files: gnome-applet-vm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applet-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applet-vm/devel/gnome-applet-vm.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gnome-applet-vm.spec 24 Feb 2009 16:55:16 -0000 1.25 +++ gnome-applet-vm.spec 25 Jul 2009 00:34:25 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Simple virtual domains monitor which embeds itself in the GNOME panel Name: gnome-applet-vm Version: 0.2.0 -Release: 9%{?dist} +Release: 10%{?dist} # No license attribution in code, only COPYING. License: GPL+ Group: User Interface/Desktops @@ -97,6 +97,9 @@ export GCONF_CONFIG_SOURCE=`/usr/bin/gco %config(noreplace) %{_sysconfdir}/security/console.apps/vm_applet_wrapper %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Cole Robinson 0.2.0-9 - Tweak build fix patch to not require re-automake. From jkeating at fedoraproject.org Sat Jul 25 00:34:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:34:41 +0000 (UTC) Subject: rpms/gnome-applets/devel gnome-applets.spec,1.349,1.350 Message-ID: <20090725003441.66B4F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-applets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26321 Modified Files: gnome-applets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-applets.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-applets/devel/gnome-applets.spec,v retrieving revision 1.349 retrieving revision 1.350 diff -u -p -r1.349 -r1.350 --- gnome-applets.spec 15 Jul 2009 21:20:38 -0000 1.349 +++ gnome-applets.spec 25 Jul 2009 00:34:41 -0000 1.350 @@ -34,7 +34,7 @@ Summary: Small applications for the GNOME panel Name: gnome-applets Version: 2.27.3 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: User Interface/Desktops @@ -348,6 +348,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 1:2.27.3-5 - Rebuild against new libgnomekbd From jkeating at fedoraproject.org Sat Jul 25 00:34:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:34:55 +0000 (UTC) Subject: rpms/gnome-audio/devel gnome-audio.spec,1.21,1.22 Message-ID: <20090725003455.8D54611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-audio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26483 Modified Files: gnome-audio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-audio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-audio/devel/gnome-audio.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gnome-audio.spec 24 Feb 2009 22:42:56 -0000 1.21 +++ gnome-audio.spec 25 Jul 2009 00:34:55 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Sounds for GNOME Name: gnome-audio Version: 2.22.2 -Release: 4%{?dist} +Release: 5%{?dist} License: CC-BY and CC-BY-SA Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-audio/2.22/gnome-audio-%{version}.tar.bz2 @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sounds/card_shuffle.wav %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.22.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.22.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:35:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:35:09 +0000 (UTC) Subject: rpms/gnome-backgrounds/devel gnome-backgrounds.spec,1.25,1.26 Message-ID: <20090725003509.12A4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26664 Modified Files: gnome-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-backgrounds/devel/gnome-backgrounds.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gnome-backgrounds.spec 17 Mar 2009 19:02:18 -0000 1.25 +++ gnome-backgrounds.spec 25 Jul 2009 00:35:08 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Desktop backgrounds packaged with the GNOME desktop Name: gnome-backgrounds Version: 2.24.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://www.gnome.org @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/backgrounds/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.24.1-1 - Update to 2.24.1 From jkeating at fedoraproject.org Sat Jul 25 00:35:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:35:25 +0000 (UTC) Subject: rpms/gnome-bluetooth/devel gnome-bluetooth.spec,1.82,1.83 Message-ID: <20090725003525.125DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-bluetooth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26844 Modified Files: gnome-bluetooth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-bluetooth.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-bluetooth/devel/gnome-bluetooth.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- gnome-bluetooth.spec 21 Jul 2009 16:11:29 -0000 1.82 +++ gnome-bluetooth.spec 25 Jul 2009 00:35:24 -0000 1.83 @@ -1,6 +1,6 @@ Name: gnome-bluetooth Version: 2.27.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bluetooth graphical utilities Group: Applications/Communications @@ -185,6 +185,9 @@ fi %{_datadir}/gtk-doc/html/gnome-bluetooth/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bastien Nocera 2.27.8-1 - Update to 2.27.8 From jkeating at fedoraproject.org Sat Jul 25 00:35:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:35:40 +0000 (UTC) Subject: rpms/gnome-chemistry-utils/devel gnome-chemistry-utils.spec, 1.37, 1.38 Message-ID: <20090725003540.5A5D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-chemistry-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27039 Modified Files: gnome-chemistry-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-chemistry-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-chemistry-utils/devel/gnome-chemistry-utils.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- gnome-chemistry-utils.spec 27 Jun 2009 17:16:28 -0000 1.37 +++ gnome-chemistry-utils.spec 25 Jul 2009 00:35:40 -0000 1.38 @@ -1,6 +1,6 @@ Name: gnome-chemistry-utils Version: 0.10.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A set of chemical utilities Group: Applications/Engineering @@ -234,6 +234,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Julian Sikorski - 0.10.5-1 - Updated to 0.10.5 - Killed the .so symlinks, they were unnecessary From jkeating at fedoraproject.org Sat Jul 25 00:35:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:35:59 +0000 (UTC) Subject: rpms/gnome-common/devel gnome-common.spec,1.16,1.17 Message-ID: <20090725003559.4077911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27260 Modified Files: gnome-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-common/devel/gnome-common.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnome-common.spec 3 Jun 2009 17:34:19 -0000 1.16 +++ gnome-common.spec 25 Jul 2009 00:35:59 -0000 1.17 @@ -1,6 +1,6 @@ Name: gnome-common Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Useful things common to building gnome packages from scratch Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Matthias Clasen - 2.26.0-2 - Support automake 1.11 From jkeating at fedoraproject.org Sat Jul 25 00:36:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:36:14 +0000 (UTC) Subject: rpms/gnome-compiz-manager/devel gnome-compiz-manager.spec,1.9,1.10 Message-ID: <20090725003614.6E51B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-compiz-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27441 Modified Files: gnome-compiz-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-compiz-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-compiz-manager/devel/gnome-compiz-manager.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gnome-compiz-manager.spec 24 Feb 2009 22:46:39 -0000 1.9 +++ gnome-compiz-manager.spec 25 Jul 2009 00:36:14 -0000 1.10 @@ -1,6 +1,6 @@ Name: gnome-compiz-manager Version: 0.10.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Compiz configuration utility Group: User Interface/Desktops @@ -128,6 +128,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:36:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:36:29 +0000 (UTC) Subject: rpms/gnome-desktop/devel gnome-desktop.spec,1.215,1.216 Message-ID: <20090725003629.8380811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27617 Modified Files: gnome-desktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop/devel/gnome-desktop.spec,v retrieving revision 1.215 retrieving revision 1.216 diff -u -p -r1.215 -r1.216 --- gnome-desktop.spec 15 Jul 2009 17:31:57 -0000 1.215 +++ gnome-desktop.spec 25 Jul 2009 00:36:29 -0000 1.216 @@ -12,7 +12,7 @@ Summary: Package containing code shared among gnome-panel, gnome-session, nautilus, etc Name: gnome-desktop Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-desktop/2.27/%{name}-%{version}.tar.bz2 # http://bugzilla.gnome.org/show_bug.cgi?id=581621 @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gnome-desktop/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 - Some EDID handling improvements From jkeating at fedoraproject.org Sat Jul 25 00:36:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:36:44 +0000 (UTC) Subject: rpms/gnome-desktop-sharp/devel gnome-desktop-sharp.spec,1.11,1.12 Message-ID: <20090725003644.95B5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-desktop-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27791 Modified Files: gnome-desktop-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-desktop-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-desktop-sharp/devel/gnome-desktop-sharp.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gnome-desktop-sharp.spec 17 Jun 2009 21:46:33 -0000 1.11 +++ gnome-desktop-sharp.spec 25 Jul 2009 00:36:44 -0000 1.12 @@ -1,6 +1,6 @@ Name: gnome-desktop-sharp Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: .NET language binding for mono Group: System Environment/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Paul F. Johnson - 2.26.0-3 - Add support for ppc64 From jkeating at fedoraproject.org Sat Jul 25 00:36:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:36:58 +0000 (UTC) Subject: rpms/gnome-devel-docs/devel gnome-devel-docs.spec,1.12,1.13 Message-ID: <20090725003658.1ECE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-devel-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27968 Modified Files: gnome-devel-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-devel-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-devel-docs/devel/gnome-devel-docs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnome-devel-docs.spec 14 Apr 2009 20:19:41 -0000 1.12 +++ gnome-devel-docs.spec 25 Jul 2009 00:36:57 -0000 1.13 @@ -1,7 +1,7 @@ Summary: GNOME developer documentation Name: gnome-devel-docs Version: 2.26.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GFDL Group: System Environment/Libraries URL: http://library.gnome.org @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/omf/platform-overview %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 From jkeating at fedoraproject.org Sat Jul 25 00:37:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:37:13 +0000 (UTC) Subject: rpms/gnome-device-manager/devel gnome-device-manager.spec,1.4,1.5 Message-ID: <20090725003713.36BC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-device-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28131 Modified Files: gnome-device-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-device-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-device-manager/devel/gnome-device-manager.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-device-manager.spec 24 Feb 2009 22:50:26 -0000 1.4 +++ gnome-device-manager.spec 25 Jul 2009 00:37:13 -0000 1.5 @@ -9,7 +9,7 @@ Summary: Graphical Device Manager Application Name: gnome-device-manager Version: 0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ and GPLv2+ Group: System Environment/Libraries URL: http://www.freedesktop.org/Software/hal @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:37:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:37:28 +0000 (UTC) Subject: rpms/gnome-disk-utility/devel gnome-disk-utility.spec,1.13,1.14 Message-ID: <20090725003728.23BC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-disk-utility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28279 Modified Files: gnome-disk-utility.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-disk-utility.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-disk-utility/devel/gnome-disk-utility.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gnome-disk-utility.spec 20 Jun 2009 00:15:27 -0000 1.13 +++ gnome-disk-utility.spec 25 Jul 2009 00:37:27 -0000 1.14 @@ -12,7 +12,7 @@ Summary: Disk management application Name: gnome-disk-utility Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://git.gnome.org/cgit/gnome-disk-utility @@ -208,6 +208,9 @@ fi %{_includedir}/gnome-disk-utility/gdu-gtk/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 David Zeuthen - 0.4-1%{?dist} - Update to release 0.4 From jkeating at fedoraproject.org Sat Jul 25 00:37:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:37:43 +0000 (UTC) Subject: rpms/gnome-do/devel gnome-do.spec,1.37,1.38 Message-ID: <20090725003743.80A0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28441 Modified Files: gnome-do.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do/devel/gnome-do.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- gnome-do.spec 14 Apr 2009 09:34:13 -0000 1.37 +++ gnome-do.spec 25 Jul 2009 00:37:43 -0000 1.38 @@ -3,7 +3,7 @@ Name: gnome-do Version: 0.8.1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Quick launch and search License: GPLv3+ @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Sindre Pedersen Bj?rdal - 0.8.1.3-5 - Fix .desktop issue, install in both autostart and applications - Rebuild for new gnome-desktop-sharp From jkeating at fedoraproject.org Sat Jul 25 00:37:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:37:58 +0000 (UTC) Subject: rpms/gnome-do-plugins/devel gnome-do-plugins.spec,1.2,1.3 Message-ID: <20090725003758.6F95111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-do-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28603 Modified Files: gnome-do-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-do-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-do-plugins/devel/gnome-do-plugins.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-do-plugins.spec 20 Jul 2009 21:57:02 -0000 1.2 +++ gnome-do-plugins.spec 25 Jul 2009 00:37:58 -0000 1.3 @@ -2,7 +2,7 @@ Name: gnome-do-plugins Version: 0.8.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Plugins for GNOME Do Group: Applications/Productivity License: GPLv3+ @@ -274,6 +274,9 @@ rm -rf %{buildroot} %{_libdir}/gnome-do/plugins/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Juan Rodriguez 0.8.1-5 - Fixes bibtex dependency From jkeating at fedoraproject.org Sat Jul 25 00:38:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:38:15 +0000 (UTC) Subject: rpms/gnome-doc-utils/devel gnome-doc-utils.spec,1.71,1.72 Message-ID: <20090725003815.346F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-doc-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28755 Modified Files: gnome-doc-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-doc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-doc-utils/devel/gnome-doc-utils.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- gnome-doc-utils.spec 30 Jun 2009 20:27:55 -0000 1.71 +++ gnome-doc-utils.spec 25 Jul 2009 00:38:15 -0000 1.72 @@ -4,7 +4,7 @@ Name: gnome-doc-utils Version: 0.17.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ and GFDL Group: Development/Tools Summary: Documentation utilities for GNOME @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xml/mallard %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Matthew Barnes - 0.17.2-1 - Update to 0.17.2 - Require libxml2-python for building. From jkeating at fedoraproject.org Sat Jul 25 00:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:38:33 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.216,1.217 Message-ID: <20090725003833.84ACD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28939 Modified Files: gnome-games.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.216 retrieving revision 1.217 diff -u -p -r1.216 -r1.217 --- gnome-games.spec 14 Jul 2009 05:22:36 -0000 1.216 +++ gnome-games.spec 25 Jul 2009 00:38:33 -0000 1.217 @@ -44,7 +44,7 @@ Summary: Games for the GNOME desktop Name: gnome-games Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Amusements/Games @@ -357,6 +357,9 @@ fi %files help -f help.lang %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:38:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:38:48 +0000 (UTC) Subject: rpms/gnome-games-extra-data/devel gnome-games-extra-data.spec, 1.15, 1.16 Message-ID: <20090725003848.1C36011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-games-extra-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29088 Modified Files: gnome-games-extra-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-games-extra-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games-extra-data/devel/gnome-games-extra-data.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gnome-games-extra-data.spec 16 Mar 2009 16:37:00 -0000 1.15 +++ gnome-games-extra-data.spec 25 Jul 2009 00:38:47 -0000 1.16 @@ -5,7 +5,7 @@ Summary: Additional data for gnome-games Name: gnome-games-extra-data Version: 2.26.0 -Release: 1 +Release: 2 License: GPL+ Group: Amusements/Games Source: http://download.gnome.org/sources/gnome-games-extra-data/2.26/gnome-games-extra-data-%{version}.tar.bz2 @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Matthias Clasen - 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 00:39:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:39:01 +0000 (UTC) Subject: rpms/gnome-gmail-notifier/devel gnome-gmail-notifier.spec,1.2,1.3 Message-ID: <20090725003901.C1D5811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-gmail-notifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29238 Modified Files: gnome-gmail-notifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-gmail-notifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-gmail-notifier/devel/gnome-gmail-notifier.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnome-gmail-notifier.spec 24 Feb 2009 22:56:20 -0000 1.2 +++ gnome-gmail-notifier.spec 25 Jul 2009 00:39:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: gnome-gmail-notifier Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple application that monitors Gmail inboxes Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:39:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:39:14 +0000 (UTC) Subject: rpms/gnome-guitar/devel gnome-guitar.spec,1.3,1.4 Message-ID: <20090725003914.B883211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-guitar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29402 Modified Files: gnome-guitar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-guitar.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-guitar/devel/gnome-guitar.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-guitar.spec 29 May 2009 20:58:43 -0000 1.3 +++ gnome-guitar.spec 25 Jul 2009 00:39:14 -0000 1.4 @@ -4,7 +4,7 @@ Name: gnome-guitar Summary: A small suite of applications for the guitarist Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Multimedia URL: http://gnome-chord.sourceforge.net/ @@ -127,6 +127,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_libdir}/pkgconfig/libgnomeguitarui.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Orcan Ogetbil - 0.8.1-4 - Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:39:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:39:29 +0000 (UTC) Subject: rpms/gnome-hearts/devel gnome-hearts.spec,1.4,1.5 Message-ID: <20090725003929.32C4F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-hearts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29591 Modified Files: gnome-hearts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-hearts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-hearts/devel/gnome-hearts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-hearts.spec 24 Feb 2009 22:57:14 -0000 1.4 +++ gnome-hearts.spec 25 Jul 2009 00:39:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: gnome-hearts Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Hearts game for GNOME Group: Amusements/Games License: GPLv2+ and GFDL @@ -49,6 +49,9 @@ desktop-file-validate $RPM_BUILD_ROOT/%{ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:39:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:39:44 +0000 (UTC) Subject: rpms/gnome-icon-theme/devel gnome-icon-theme.spec,1.102,1.103 Message-ID: <20090725003944.42FEE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29787 Modified Files: gnome-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-icon-theme/devel/gnome-icon-theme.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- gnome-icon-theme.spec 18 Mar 2009 02:36:34 -0000 1.102 +++ gnome-icon-theme.spec 25 Jul 2009 00:39:44 -0000 1.103 @@ -1,7 +1,7 @@ Summary: GNOME icon theme Name: gnome-icon-theme Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://download.gnome.org/sources/gnome-icon-theme/2.26/%{name}-%{version}.tar.bz2 Source1: gnome-icon-theme-extra-device-icons-5.tar.bz2 Source2: legacy-icon-mapping.xml @@ -76,6 +76,9 @@ done %{_datadir}/pkgconfig/gnome-icon-theme.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.26.0-2 - Add a window icon so we don't show missing icons in window frames From jkeating at fedoraproject.org Sat Jul 25 00:40:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:40:00 +0000 (UTC) Subject: rpms/gnome-keyring/devel gnome-keyring.spec,1.125,1.126 Message-ID: <20090725004000.31BB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29991 Modified Files: gnome-keyring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring/devel/gnome-keyring.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- gnome-keyring.spec 14 Jul 2009 03:36:06 -0000 1.125 +++ gnome-keyring.spec 25 Jul 2009 00:40:00 -0000 1.126 @@ -8,7 +8,7 @@ Summary: Framework for managing passwords and other secrets Name: gnome-keyring Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gnome-keyring/2.27/gnome-keyring-%{version}.tar.bz2 @@ -142,6 +142,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:40:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:40:14 +0000 (UTC) Subject: rpms/gnome-keyring-sharp/devel gnome-keyring-sharp.spec,1.4,1.5 Message-ID: <20090725004014.E9ACC11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-keyring-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30207 Modified Files: gnome-keyring-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-keyring-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-keyring-sharp/devel/gnome-keyring-sharp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-keyring-sharp.spec 24 Feb 2009 23:00:06 -0000 1.4 +++ gnome-keyring-sharp.spec 25 Jul 2009 00:40:14 -0000 1.5 @@ -3,7 +3,7 @@ Name: gnome-keyring-sharp Version: 1.0.1 -Release: 0.2.%{svn_rev}svn%{?dist} +Release: 0.3.%{svn_rev}svn%{?dist} Summary: Mono implementation of GNOME Keyring Group: System Environment/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-0.3.115768svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.1-0.2.115768svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:40:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:40:29 +0000 (UTC) Subject: rpms/gnome-launch-box/devel gnome-launch-box.spec,1.17,1.18 Message-ID: <20090725004029.E19A511C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-launch-box/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30406 Modified Files: gnome-launch-box.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-launch-box.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-launch-box/devel/gnome-launch-box.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gnome-launch-box.spec 24 Feb 2009 23:01:01 -0000 1.17 +++ gnome-launch-box.spec 25 Jul 2009 00:40:29 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Funky application launcher Name: gnome-launch-box Version: 0.4 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://developer.imendio.com/projects/gnome-launch-box @@ -81,6 +81,9 @@ fi %{_datadir}/gnome-control-center/keybindings/90-gnome-launch-box.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:40:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:40:46 +0000 (UTC) Subject: rpms/gnome-libs/devel gnome-libs.spec,1.16,1.17 Message-ID: <20090725004046.171DB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-libs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30604 Modified Files: gnome-libs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-libs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-libs/devel/gnome-libs.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnome-libs.spec 21 Apr 2009 14:16:41 -0000 1.16 +++ gnome-libs.spec 25 Jul 2009 00:40:45 -0000 1.17 @@ -5,7 +5,7 @@ Name: gnome-libs Epoch: 1 Version: 1.4.2 -Release: 14%{?dist} +Release: 15%{?dist} Summary: The main GNOME1 libraries License: LGPLv2+ and BSD with advertising and (LGPLv2+ and BSD with advertising) Group: System Environment/Libraries @@ -321,6 +321,9 @@ export LD_LIBRARY_PATH=${SAVE_LLP} %{_libdir}/libgnomeui.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.4.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Paul Howarth 1:1.4.2-14 - Use an alternative approach to rpath-fixing - hacking the supplied libtool rather than trying to use the system one From jkeating at fedoraproject.org Sat Jul 25 00:41:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:41:00 +0000 (UTC) Subject: rpms/gnome-lirc-properties/devel gnome-lirc-properties.spec, 1.19, 1.20 Message-ID: <20090725004100.4F69611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-lirc-properties/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30800 Modified Files: gnome-lirc-properties.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-lirc-properties.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-lirc-properties/devel/gnome-lirc-properties.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- gnome-lirc-properties.spec 30 Jun 2009 12:03:47 -0000 1.19 +++ gnome-lirc-properties.spec 25 Jul 2009 00:41:00 -0000 1.20 @@ -7,7 +7,7 @@ Name: gnome-lirc-properties Version: 0.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Infrared Remote Controls setup tool Group: User Interface/X Hardware Support @@ -105,6 +105,9 @@ fi %{_datadir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Bastien Nocera 0.3.1-4 - Add D-Bus patch to allow the front-end to run - Fix overly enthusiastic quoting From jkeating at fedoraproject.org Sat Jul 25 00:41:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:41:14 +0000 (UTC) Subject: rpms/gnome-mag/devel gnome-mag.spec,1.65,1.66 Message-ID: <20090725004114.108B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-mag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30998 Modified Files: gnome-mag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-mag.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mag/devel/gnome-mag.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- gnome-mag.spec 13 Apr 2009 03:13:57 -0000 1.65 +++ gnome-mag.spec 25 Jul 2009 00:41:13 -0000 1.66 @@ -3,7 +3,7 @@ Summary: Screen magnifier for GNOME Name: gnome-mag Version: 0.15.6 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Desktop/Accessibility URL: http://www.gnome.org/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/gnome-mag* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Clasen - 0.15.6-1 - Update to 0.15.6 - See http://download.gnome.org/sources/gnome-mag/0.15/gnome-mag-0.15.6.news From jkeating at fedoraproject.org Sat Jul 25 00:41:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:41:28 +0000 (UTC) Subject: rpms/gnome-media/devel gnome-media.spec,1.172,1.173 Message-ID: <20090725004128.55A6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31184 Modified Files: gnome-media.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.172 retrieving revision 1.173 diff -u -p -r1.172 -r1.173 --- gnome-media.spec 14 Jul 2009 04:29:41 -0000 1.172 +++ gnome-media.spec 25 Jul 2009 00:41:28 -0000 1.173 @@ -14,7 +14,7 @@ Summary: GNOME media programs Name: gnome-media Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.27/gnome-media-%{version}.tar.bz2 @@ -253,6 +253,9 @@ scrollkeeper-update -q || : %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:41:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:41:42 +0000 (UTC) Subject: rpms/gnome-menus/devel gnome-menus.spec,1.104,1.105 Message-ID: <20090725004142.904FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31359 Modified Files: gnome-menus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-menus/devel/gnome-menus.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- gnome-menus.spec 15 Jul 2009 16:04:03 -0000 1.104 +++ gnome-menus.spec 25 Jul 2009 00:41:42 -0000 1.105 @@ -6,7 +6,7 @@ Summary: A menu system for the GNOME project Name: gnome-menus Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gnome.org/ @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/gnome-menus %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:41:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:41:58 +0000 (UTC) Subject: rpms/gnome-mime-data/devel gnome-mime-data.spec,1.27,1.28 Message-ID: <20090725004158.6140011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-mime-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31579 Modified Files: gnome-mime-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-mime-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mime-data/devel/gnome-mime-data.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gnome-mime-data.spec 24 Feb 2009 23:06:42 -0000 1.27 +++ gnome-mime-data.spec 25 Jul 2009 00:41:58 -0000 1.28 @@ -1,7 +1,7 @@ Summary: MIME type data files for GNOME desktop Name: gnome-mime-data Version: 2.18.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.gnome.org Source0: %{name}-%{version}.tar.bz2 # No license attribution, just COPYING. @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.18.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:42:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:42:13 +0000 (UTC) Subject: rpms/gnome-mount/devel gnome-mount.spec,1.47,1.48 Message-ID: <20090725004213.C086C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-mount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31810 Modified Files: gnome-mount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-mount.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-mount/devel/gnome-mount.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gnome-mount.spec 2 Jul 2009 16:26:36 -0000 1.47 +++ gnome-mount.spec 25 Jul 2009 00:42:13 -0000 1.48 @@ -1,7 +1,7 @@ Summary: HAL-based utility to mount and unmount storage devices Name: gnome-mount Version: 0.8 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System Source: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -107,6 +107,9 @@ fi %{_libdir}/nautilus/extensions-2.0/libgnome-mount.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Matthias Clasen - 0.8-6 - Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:42:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:42:29 +0000 (UTC) Subject: rpms/gnome-nds-thumbnailer/devel gnome-nds-thumbnailer.spec, 1.3, 1.4 Message-ID: <20090725004229.634AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-nds-thumbnailer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32065 Modified Files: gnome-nds-thumbnailer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-nds-thumbnailer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-nds-thumbnailer/devel/gnome-nds-thumbnailer.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-nds-thumbnailer.spec 6 May 2009 12:50:12 -0000 1.3 +++ gnome-nds-thumbnailer.spec 25 Jul 2009 00:42:29 -0000 1.4 @@ -1,6 +1,6 @@ Name: gnome-nds-thumbnailer Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Thumbnailer for Nintendo DS ROM files Group: Amusements/Graphics @@ -73,6 +73,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 James Bowes 1.2.1-1 - Latest upstream release From jkeating at fedoraproject.org Sat Jul 25 00:42:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:42:45 +0000 (UTC) Subject: rpms/gnome-netstatus/devel gnome-netstatus.spec,1.45,1.46 Message-ID: <20090725004245.7FE6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-netstatus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32293 Modified Files: gnome-netstatus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-netstatus.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-netstatus/devel/gnome-netstatus.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gnome-netstatus.spec 25 Jun 2009 17:47:23 -0000 1.45 +++ gnome-netstatus.spec 25 Jul 2009 00:42:45 -0000 1.46 @@ -7,7 +7,7 @@ Summary: Network status applet Name: gnome-netstatus Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: ftp://ftp.gnome.org/pub/GNOME/sources/gnome-netstatus/2.26/%{name}-%{version}.tar.bz2 License: GPLv2+ and GFDL @@ -108,6 +108,9 @@ fi %{_sysconfdir}/gconf/schemas/*.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Vivek Shah - 2.26.0-1 - Updated to new version 2.26 - Fixes bugs 318411 and 506448 From jkeating at fedoraproject.org Sat Jul 25 00:43:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:43:00 +0000 (UTC) Subject: rpms/gnome-nettool/devel gnome-nettool.spec,1.38,1.39 Message-ID: <20090725004300.53B9111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-nettool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32498 Modified Files: gnome-nettool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-nettool.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-nettool/devel/gnome-nettool.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- gnome-nettool.spec 17 Mar 2009 04:02:47 -0000 1.38 +++ gnome-nettool.spec 25 Jul 2009 00:43:00 -0000 1.39 @@ -6,7 +6,7 @@ Summary: Network information tool for GNOME Name: gnome-nettool Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://projects.gnome.org/gnome-network/ Source0: http://download.gnome.org/sources/gnome-nettool/2.26/%{name}-%{version}.tar.bz2 License: GPLv2+ and GFDL @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 00:43:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:43:15 +0000 (UTC) Subject: rpms/gnome-packagekit/devel gnome-packagekit.spec,1.91,1.92 Message-ID: <20090725004315.7E27C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-packagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32701 Modified Files: gnome-packagekit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-packagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-packagekit/devel/gnome-packagekit.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- gnome-packagekit.spec 6 Jul 2009 12:11:42 -0000 1.91 +++ gnome-packagekit.spec 25 Jul 2009 00:43:15 -0000 1.92 @@ -16,7 +16,7 @@ Summary: Session applications to manag Name: gnome-packagekit Version: 2.27.3 #Release: 0.4.%{?alphatag}git%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.packagekit.org @@ -228,6 +228,9 @@ update-mime-database %{_datadir}/mime &> %{_datadir}/applications/gpk-service-pack.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Richard Hughes - 2.27.3-1 - New upstream version - Lots of updated translations From jkeating at fedoraproject.org Sat Jul 25 00:43:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:43:31 +0000 (UTC) Subject: rpms/gnome-password-generator/devel gnome-password-generator.spec, 1.16, 1.17 Message-ID: <20090725004331.B46C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-password-generator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv445 Modified Files: gnome-password-generator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-password-generator.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-password-generator/devel/gnome-password-generator.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnome-password-generator.spec 24 Feb 2009 23:12:22 -0000 1.16 +++ gnome-password-generator.spec 25 Jul 2009 00:43:31 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Graphical secure password generator Name: gnome-password-generator Version: 1.6 -Release: 3%{dist} +Release: 4%{dist} License: GPLv2+ Group: Applications/System URL: http://gnome-password.sourceforge.net/ @@ -78,6 +78,9 @@ fi %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:43:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:43:45 +0000 (UTC) Subject: rpms/gnome-phone-manager/devel gnome-phone-manager.spec,1.35,1.36 Message-ID: <20090725004345.D6BBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-phone-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv638 Modified Files: gnome-phone-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-phone-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-phone-manager/devel/gnome-phone-manager.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gnome-phone-manager.spec 23 Jul 2009 12:46:39 -0000 1.35 +++ gnome-phone-manager.spec 25 Jul 2009 00:43:45 -0000 1.36 @@ -1,7 +1,7 @@ Name: gnome-phone-manager Summary: Gnome Phone Manager Version: 0.65 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-phone-manager/%{version}/%{name}-%{version}.tar.bz2 @@ -106,6 +106,9 @@ fi %{_datadir}/mission-control/profiles/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.65-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Bastien Nocera 0.65-3 - Rebuild for new gnome-bluetooth From jkeating at fedoraproject.org Sat Jul 25 00:43:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:43:59 +0000 (UTC) Subject: rpms/gnome-pilot/devel gnome-pilot.spec,1.69,1.70 Message-ID: <20090725004359.358AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-pilot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv827 Modified Files: gnome-pilot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-pilot.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-pilot/devel/gnome-pilot.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- gnome-pilot.spec 24 Feb 2009 23:14:15 -0000 1.69 +++ gnome-pilot.spec 25 Jul 2009 00:43:59 -0000 1.70 @@ -4,7 +4,7 @@ Name: gnome-pilot Version: 2.0.17 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ and GPLv2+ Group: Applications/Communications Summary: GNOME pilot programs @@ -163,6 +163,9 @@ scrollkeeper-update -q %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:44:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:44:18 +0000 (UTC) Subject: rpms/gnome-pilot-conduits/devel gnome-pilot-conduits.spec, 1.34, 1.35 Message-ID: <20090725004418.1088611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-pilot-conduits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1054 Modified Files: gnome-pilot-conduits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-pilot-conduits.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-pilot-conduits/devel/gnome-pilot-conduits.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- gnome-pilot-conduits.spec 24 Feb 2009 23:15:10 -0000 1.34 +++ gnome-pilot-conduits.spec 25 Jul 2009 00:44:17 -0000 1.35 @@ -4,7 +4,7 @@ Name: gnome-pilot-conduits Version: 2.0.17 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and MPLv1.0 Group: Applications/Communications Summary: Additional conduits for gnome-pilot @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gnome-pilot/conduits/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:44:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:44:32 +0000 (UTC) Subject: rpms/gnome-power-manager/devel gnome-power-manager.spec, 1.166, 1.167 Message-ID: <20090725004432.4A7DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1261 Modified Files: gnome-power-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-power-manager/devel/gnome-power-manager.spec,v retrieving revision 1.166 retrieving revision 1.167 diff -u -p -r1.166 -r1.167 --- gnome-power-manager.spec 21 Jul 2009 19:57:14 -0000 1.166 +++ gnome-power-manager.spec 25 Jul 2009 00:44:32 -0000 1.167 @@ -6,7 +6,7 @@ Summary: GNOME Power Manager Name: gnome-power-manager Version: 2.27.3 #Release: 2%{?dist} -Release: 0.2.%{?alphatag}git%{?dist} +Release: 0.3.%{?alphatag}git%{?dist} License: GPLv2+ and GFDL Group: Applications/System #Source: http://download.gnome.org/sources/gnome-power-manager/2.27/gnome-power-manager-%{version}.tar.gz @@ -156,6 +156,9 @@ fi %{_datadir}/gnome-2.0/ui/GNOME_*.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-0.3.20090721git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Richard Hughes - 2.27.3-0.2.20090721git - Update to todays git snapshot to fix some issues found during the test day. From jkeating at fedoraproject.org Sat Jul 25 00:44:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:44:46 +0000 (UTC) Subject: rpms/gnome-python2/devel gnome-python2.spec,1.36,1.37 Message-ID: <20090725004446.89B1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-python2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1462 Modified Files: gnome-python2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-python2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2/devel/gnome-python2.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- gnome-python2.spec 17 Jun 2009 20:45:31 -0000 1.36 +++ gnome-python2.spec 25 Jul 2009 00:44:46 -0000 1.37 @@ -22,7 +22,7 @@ Name: gnome-python2 Version: 2.27.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Development/Languages Summary: PyGNOME Python extension module @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT rm -f /usr/lib/python2.2/site-packages/bonobo/__init__.{pyc,pyo} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Matthew Barnes - 2.27.1-3.fc12 - Improve summary (RH bug #506526). From jkeating at fedoraproject.org Sat Jul 25 00:45:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:45:02 +0000 (UTC) Subject: rpms/gnome-python2-desktop/devel gnome-python2-desktop.spec, 1.62, 1.63 Message-ID: <20090725004502.5431E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-python2-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1690 Modified Files: gnome-python2-desktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-python2-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-desktop/devel/gnome-python2-desktop.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- gnome-python2-desktop.spec 15 Jul 2009 02:17:42 -0000 1.62 +++ gnome-python2-desktop.spec 25 Jul 2009 00:45:01 -0000 1.63 @@ -29,7 +29,7 @@ Name: gnome-python2-desktop Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Languages Summary: The sources for additional PyGNOME Python extension modules @@ -345,6 +345,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/gnomekeyring.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthew Barnes - 2.27.2-1.fc12 - Update to 2.27.2 From jkeating at fedoraproject.org Sat Jul 25 00:45:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:45:17 +0000 (UTC) Subject: rpms/gnome-python2-extras/devel gnome-python2-extras.spec, 1.55, 1.56 Message-ID: <20090725004517.3A70E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-python2-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1859 Modified Files: gnome-python2-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-python2-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-python2-extras/devel/gnome-python2-extras.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- gnome-python2-extras.spec 20 Jul 2009 09:23:21 -0000 1.55 +++ gnome-python2-extras.spec 25 Jul 2009 00:45:17 -0000 1.56 @@ -14,7 +14,7 @@ Name: gnome-python2-extras Version: 2.25.3 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ and LGPLv2+ Group: Development/Languages Summary: Additional PyGNOME Python extension modules @@ -186,6 +186,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pygda-4.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.25.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Jan Horak - 2.25.3-7 - Rebuild against newer gecko From jkeating at fedoraproject.org Sat Jul 25 00:45:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:45:31 +0000 (UTC) Subject: rpms/gnome-rdp/devel gnome-rdp.spec,1.3,1.4 Message-ID: <20090725004531.0BF4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-rdp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2042 Modified Files: gnome-rdp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-rdp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-rdp/devel/gnome-rdp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-rdp.spec 3 Jul 2009 02:47:51 -0000 1.3 +++ gnome-rdp.spec 25 Jul 2009 00:45:30 -0000 1.4 @@ -2,7 +2,7 @@ Name: gnome-rdp Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Remote Desktop Protocol client for the GNOME desktop environment Group: Applications/Internet @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/gnome-rdp.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 John Anderson - 0.2.3-4 - Fix vnc for bug #508302 From jkeating at fedoraproject.org Sat Jul 25 00:45:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:45:43 +0000 (UTC) Subject: rpms/gnome-scan/devel gnome-scan.spec,1.12,1.13 Message-ID: <20090725004543.F13A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-scan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2207 Modified Files: gnome-scan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-scan.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-scan/devel/gnome-scan.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnome-scan.spec 11 Apr 2009 01:41:12 -0000 1.12 +++ gnome-scan.spec 25 Jul 2009 00:45:43 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Gnome solution for scanning in the desktop on top of libsane Name: gnome-scan Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/System License: LGPLv2+ URL: http://home.gna.org/gnomescan/ @@ -108,6 +108,9 @@ fi %doc %{_datadir}/gtk-doc/html/gnome-scan*/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Deji Akingunola - 0.6.2-1 - Update to version 0.6.2 From jkeating at fedoraproject.org Sat Jul 25 00:45:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:45:57 +0000 (UTC) Subject: rpms/gnome-schedule/devel gnome-schedule.spec,1.12,1.13 Message-ID: <20090725004557.D550E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-schedule/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2385 Modified Files: gnome-schedule.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-schedule.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-schedule/devel/gnome-schedule.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnome-schedule.spec 24 Feb 2009 23:21:50 -0000 1.12 +++ gnome-schedule.spec 25 Jul 2009 00:45:57 -0000 1.13 @@ -1,6 +1,6 @@ Name: gnome-schedule Version: 2.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A GTK+ based user interface for cron and at Group: Applications/System @@ -79,6 +79,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:46:13 +0000 (UTC) Subject: rpms/gnome-screensaver/devel gnome-screensaver.spec,1.217,1.218 Message-ID: <20090725004613.5384C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-screensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2533 Modified Files: gnome-screensaver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-screensaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-screensaver/devel/gnome-screensaver.spec,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -r1.217 -r1.218 --- gnome-screensaver.spec 16 Jul 2009 19:36:18 -0000 1.217 +++ gnome-screensaver.spec 25 Jul 2009 00:46:13 -0000 1.218 @@ -14,7 +14,7 @@ Summary: GNOME Screensaver Name: gnome-screensaver Version: 2.27.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Amusements/Graphics Source0: http://download.gnome.org/sources/gnome-screensaver/2.27/%{name}-%{version}.tar.bz2 @@ -154,6 +154,9 @@ fi %doc %{_mandir}/man1/*.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Matthias Clasen 2.27.0-4 - Use GtkBulider - Respect button-images setting From jkeating at fedoraproject.org Sat Jul 25 00:46:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:46:27 +0000 (UTC) Subject: rpms/gnome-screensaver-frogs/devel gnome-screensaver-frogs.spec, 1.4, 1.5 Message-ID: <20090725004627.1CC8111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-screensaver-frogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2698 Modified Files: gnome-screensaver-frogs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-screensaver-frogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-screensaver-frogs/devel/gnome-screensaver-frogs.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-screensaver-frogs.spec 24 Feb 2009 23:23:47 -0000 1.4 +++ gnome-screensaver-frogs.spec 25 Jul 2009 00:46:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: gnome-screensaver-frogs Version: 0.2 -Release: 6 +Release: 7 # For a breakdown of the licensing, see README License: CC-BY and CC-BY-SA and Public Domain Summary: GNOME Screensaver Slideshow of Frogs @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/backgrounds/frogs/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:46:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:46:41 +0000 (UTC) Subject: rpms/gnome-session/devel gnome-session.spec,1.242,1.243 Message-ID: <20090725004641.7038B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2863 Modified Files: gnome-session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-session/devel/gnome-session.spec,v retrieving revision 1.242 retrieving revision 1.243 diff -u -p -r1.242 -r1.243 --- gnome-session.spec 20 Jul 2009 14:36:58 -0000 1.242 +++ gnome-session.spec 25 Jul 2009 00:46:41 -0000 1.243 @@ -10,7 +10,7 @@ Summary: GNOME session manager Name: gnome-session Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/gnome-session/2.27/%{name}-%{version}.tar.bz2 Source2: gnome.desktop @@ -174,6 +174,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Matthias Clasen - 2.27.4-2 - Require polkit-gnome, we need an authentication agent in the session From jkeating at fedoraproject.org Sat Jul 25 00:46:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:46:56 +0000 (UTC) Subject: rpms/gnome-settings-daemon/devel gnome-settings-daemon.spec, 1.112, 1.113 Message-ID: <20090725004656.8101411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3072 Modified Files: gnome-settings-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-settings-daemon/devel/gnome-settings-daemon.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- gnome-settings-daemon.spec 22 Jul 2009 01:59:14 -0000 1.112 +++ gnome-settings-daemon.spec 25 Jul 2009 00:46:56 -0000 1.113 @@ -1,6 +1,6 @@ Name: gnome-settings-daemon Version: 2.27.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications Group: System Environment/Daemons @@ -170,6 +170,9 @@ fi %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Matthias Clasen 2.27.4-3 - Make locate-pointer not interfere with media keys From jkeating at fedoraproject.org Sat Jul 25 00:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:47:11 +0000 (UTC) Subject: rpms/gnome-sharp/devel gnome-sharp.spec,1.20,1.21 Message-ID: <20090725004711.8B26111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3226 Modified Files: gnome-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-sharp/devel/gnome-sharp.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gnome-sharp.spec 16 Jun 2009 21:40:03 -0000 1.20 +++ gnome-sharp.spec 25 Jul 2009 00:47:11 -0000 1.21 @@ -1,6 +1,6 @@ Name: gnome-sharp Version: 2.24.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GTK+ and GNOME bindings for Mono Group: System Environment/Libraries @@ -91,6 +91,9 @@ make install DESTDIR=$RPM_BUILD_ROOT GAC %{_libdir}/pkgconfig/gconf-sharp-peditors-2.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Karsten Hopp 2.24.0-5 - mono is available on s390x From jkeating at fedoraproject.org Sat Jul 25 00:47:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:47:26 +0000 (UTC) Subject: rpms/gnome-specimen/devel gnome-specimen.spec,1.5,1.6 Message-ID: <20090725004726.B8B2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-specimen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3408 Modified Files: gnome-specimen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-specimen.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-specimen/devel/gnome-specimen.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gnome-specimen.spec 24 Feb 2009 23:27:32 -0000 1.5 +++ gnome-specimen.spec 25 Jul 2009 00:47:26 -0000 1.6 @@ -2,7 +2,7 @@ Name: gnome-specimen Version: 0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple tool to view and compare fonts installed on your system Group: Applications/System @@ -86,6 +86,9 @@ fi %config(noreplace) %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:47:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:47:41 +0000 (UTC) Subject: rpms/gnome-speech/devel gnome-speech.spec,1.55,1.56 Message-ID: <20090725004741.777D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-speech/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3570 Modified Files: gnome-speech.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-speech.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-speech/devel/gnome-speech.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- gnome-speech.spec 24 Feb 2009 23:28:25 -0000 1.55 +++ gnome-speech.spec 25 Jul 2009 00:47:41 -0000 1.56 @@ -3,7 +3,7 @@ Summary: GNOME Text to Speech Name: gnome-speech Version: 0.4.25 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Desktop/Accessibility URL: http://www.gnome.org/ @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:47:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:47:56 +0000 (UTC) Subject: rpms/gnome-subtitles/devel gnome-subtitles.spec,1.7,1.8 Message-ID: <20090725004756.63A8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-subtitles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3735 Modified Files: gnome-subtitles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-subtitles.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-subtitles/devel/gnome-subtitles.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnome-subtitles.spec 29 May 2009 23:53:45 -0000 1.7 +++ gnome-subtitles.spec 25 Jul 2009 00:47:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: gnome-subtitles Version: 0.8 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Subtitle editor for Gnome Group: Applications/Multimedia @@ -106,6 +106,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Xavier lamien - 0.8-8 - Build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 00:48:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:48:14 +0000 (UTC) Subject: rpms/gnome-system-monitor/devel gnome-system-monitor.spec, 1.145, 1.146 Message-ID: <20090725004814.C47F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-system-monitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4005 Modified Files: gnome-system-monitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-system-monitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-system-monitor/devel/gnome-system-monitor.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- gnome-system-monitor.spec 14 Jul 2009 04:27:22 -0000 1.145 +++ gnome-system-monitor.spec 25 Jul 2009 00:48:14 -0000 1.146 @@ -12,7 +12,7 @@ Summary: Process and resource monitor Name: gnome-system-monitor Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.gnome.org/ @@ -147,6 +147,9 @@ scrollkeeper-update -q %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:48:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:48:31 +0000 (UTC) Subject: rpms/gnome-terminal/devel gnome-terminal.spec,1.125,1.126 Message-ID: <20090725004831.1B99311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4356 Modified Files: gnome-terminal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-terminal/devel/gnome-terminal.spec,v retrieving revision 1.125 retrieving revision 1.126 diff -u -p -r1.125 -r1.126 --- gnome-terminal.spec 16 Jul 2009 02:57:42 -0000 1.125 +++ gnome-terminal.spec 25 Jul 2009 00:48:30 -0000 1.126 @@ -11,7 +11,7 @@ Summary: Terminal emulator for GNOME Name: gnome-terminal Version: 2.26.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL Group: User Interface/Desktops URL: http://www.gnome.org/ @@ -136,6 +136,9 @@ scrollkeeper-update -q %{_sysconfdir}/gconf/schemas/gnome-terminal.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.26.2-2 - Fix a stubborn icon From jkeating at fedoraproject.org Sat Jul 25 00:48:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:48:45 +0000 (UTC) Subject: rpms/gnome-theme-curvylooks/devel gnome-theme-curvylooks.spec, 1.4, 1.5 Message-ID: <20090725004845.2FACF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-theme-curvylooks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4825 Modified Files: gnome-theme-curvylooks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-theme-curvylooks.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-theme-curvylooks/devel/gnome-theme-curvylooks.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnome-theme-curvylooks.spec 24 Feb 2009 23:32:13 -0000 1.4 +++ gnome-theme-curvylooks.spec 25 Jul 2009 00:48:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: gnome-theme-curvylooks Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A modern Clearlooks theme using a Bluecurve-like color scheme Group: User Interface/Desktops @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:48:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:48:59 +0000 (UTC) Subject: rpms/gnome-themes/devel gnome-themes.spec,1.143,1.144 Message-ID: <20090725004859.5AD4711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5167 Modified Files: gnome-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes/devel/gnome-themes.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- gnome-themes.spec 14 Jul 2009 04:01:23 -0000 1.143 +++ gnome-themes.spec 25 Jul 2009 00:48:59 -0000 1.144 @@ -1,7 +1,7 @@ Summary: Themes for GNOME Name: gnome-themes Version: 2.27.4 -Release:1%{?dist} +Release:2%{?dist} URL: http://download.gnome.org/sources/gnome-themes/ Source: http://download.gnome.org/sources/gnome-themes/2.27/%{name}-%{version}.tar.bz2 License: LGPLv2 and GPLv2 @@ -97,6 +97,9 @@ done %doc AUTHORS COPYING NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 00:49:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:49:14 +0000 (UTC) Subject: rpms/gnome-themes-extras/devel gnome-themes-extras.spec,1.25,1.26 Message-ID: <20090725004914.44E0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-themes-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5340 Modified Files: gnome-themes-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-themes-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-themes-extras/devel/gnome-themes-extras.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gnome-themes-extras.spec 29 Mar 2009 04:26:45 -0000 1.25 +++ gnome-themes-extras.spec 25 Jul 2009 00:49:14 -0000 1.26 @@ -1,6 +1,6 @@ Name: gnome-themes-extras Version: 2.22.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Collection of metathemes for the Gnome desktop environment @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_datadir}/themes/Unity/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.22.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Christopher Aillon - 2.22.0-4 - Add missing BuildRequires: gtk2-engines-devel From jkeating at fedoraproject.org Sat Jul 25 00:49:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:49:28 +0000 (UTC) Subject: rpms/gnome-translate/devel gnome-translate.spec,1.16,1.17 Message-ID: <20090725004928.3B83111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-translate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5506 Modified Files: gnome-translate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-translate.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-translate/devel/gnome-translate.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnome-translate.spec 13 Jul 2009 15:34:51 -0000 1.16 +++ gnome-translate.spec 25 Jul 2009 00:49:27 -0000 1.17 @@ -1,7 +1,7 @@ Name: gnome-translate Summary: GNOME interface to libtranslate -- Natural language translator Version: 0.99 -Release: 14%{?dist} +Release: 15%{?dist} Group: User Interface/Desktops License: GPLv2+ URL: http://www.nongnu.org/libtranslate/gnome-translate @@ -121,6 +121,9 @@ scrollkeeper-update -q || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Dmitry Butskoy - 0.99-14 - Use enchant instead of aspell for language autodetection (#477274, patch by Caolan McNamara ) From jkeating at fedoraproject.org Sat Jul 25 00:49:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:49:42 +0000 (UTC) Subject: rpms/gnome-user-docs/devel gnome-user-docs.spec,1.41,1.42 Message-ID: <20090725004942.0C66111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-user-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5668 Modified Files: gnome-user-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-user-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-user-docs/devel/gnome-user-docs.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- gnome-user-docs.spec 14 Apr 2009 20:27:11 -0000 1.41 +++ gnome-user-docs.spec 25 Jul 2009 00:49:41 -0000 1.42 @@ -1,7 +1,7 @@ Summary: GNOME User Documentation Name: gnome-user-docs Version: 2.26.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GFDL Source: http://download.gnome.org/sources/gnome-user-docs/2.26/gnome-user-docs-%{version}.tar.bz2 Group: Documentation @@ -53,6 +53,9 @@ exit 0 %dir %{_datadir}/omf/gnome-access-guide %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 From jkeating at fedoraproject.org Sat Jul 25 00:49:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:49:57 +0000 (UTC) Subject: rpms/gnome-user-share/devel gnome-user-share.spec,1.54,1.55 Message-ID: <20090725004957.662F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-user-share/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5838 Modified Files: gnome-user-share.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-user-share.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-user-share/devel/gnome-user-share.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- gnome-user-share.spec 2 Jul 2009 05:59:13 -0000 1.54 +++ gnome-user-share.spec 25 Jul 2009 00:49:57 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Gnome user file sharing Name: gnome-user-share Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.gnome.org @@ -123,6 +123,9 @@ fi %{_datadir}/icons/hicolor/*/apps/gnome-obex-server.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Matthias Clasen - 2.26.0-3 - Rebuild to shrink GConf schemas From jkeating at fedoraproject.org Sat Jul 25 00:50:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:50:12 +0000 (UTC) Subject: rpms/gnome-utils/devel gnome-utils.spec,1.194,1.195 Message-ID: <20090725005012.8310A11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6000 Modified Files: gnome-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-utils/devel/gnome-utils.spec,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- gnome-utils.spec 2 Jul 2009 05:15:43 -0000 1.194 +++ gnome-utils.spec 25 Jul 2009 00:50:12 -0000 1.195 @@ -9,7 +9,7 @@ Name: gnome-utils Version: 2.27.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: GNOME utility programs @@ -261,6 +261,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Matthias Clasen - 1:2.27.2-2 - Shrink some more schemas From jkeating at fedoraproject.org Sat Jul 25 00:50:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:50:27 +0000 (UTC) Subject: rpms/gnome-valgrind-session/devel gnome-valgrind-session.spec, 1.3, 1.4 Message-ID: <20090725005027.7DF3F11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-valgrind-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6153 Modified Files: gnome-valgrind-session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-valgrind-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-valgrind-session/devel/gnome-valgrind-session.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnome-valgrind-session.spec 24 Feb 2009 23:38:54 -0000 1.3 +++ gnome-valgrind-session.spec 25 Jul 2009 00:50:27 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Run an entire GNOME session under valgrind Name: gnome-valgrind-session Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} License: Public Domain Group: Development/Tools URL: http://hp.cl.no/proj/gnome-valgrind-session/ @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xsessions/gnome-valgrind-leaks.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:50:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:50:48 +0000 (UTC) Subject: rpms/gnome-vfs2/devel gnome-vfs2.spec,1.191,1.192 Message-ID: <20090725005048.AF39711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-vfs2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6354 Modified Files: gnome-vfs2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-vfs2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-vfs2/devel/gnome-vfs2.spec,v retrieving revision 1.191 retrieving revision 1.192 diff -u -p -r1.191 -r1.192 --- gnome-vfs2.spec 27 Apr 2009 19:01:17 -0000 1.191 +++ gnome-vfs2.spec 25 Jul 2009 00:50:48 -0000 1.192 @@ -14,7 +14,7 @@ Summary: The GNOME virtual file-system libraries Name: gnome-vfs2 Version: 2.24.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ and GPLv2+ # the daemon and the library are LGPLv2+ # the modules are LGPLv2+ and GPLv2+ @@ -239,6 +239,9 @@ fi %config %{_sysconfdir}/gnome-vfs-2.0/modules/smb-module.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Matthias Clasen - 2.24.1-3 - Don't drop schemas translations from po files anymore From jkeating at fedoraproject.org Sat Jul 25 00:51:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:51:03 +0000 (UTC) Subject: rpms/gnome-vfs2-monikers/devel gnome-vfs2-monikers.spec,1.5,1.6 Message-ID: <20090725005103.57C8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-vfs2-monikers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6499 Modified Files: gnome-vfs2-monikers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-vfs2-monikers.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-vfs2-monikers/devel/gnome-vfs2-monikers.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gnome-vfs2-monikers.spec 24 Feb 2009 23:41:16 -0000 1.5 +++ gnome-vfs2-monikers.spec 25 Jul 2009 00:51:03 -0000 1.6 @@ -7,7 +7,7 @@ Summary: Monikers for the GNOME virtual file-system Name: gnome-vfs2-monikers Version: 2.15.3 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://ftp.gnome.org/pub/gnome/sources/gnome-vfs-monikers/2.15/gnome-vfs-monikers-%{version}.tar.bz2 @@ -59,6 +59,9 @@ rm -fr %{buildroot} %{_libdir}/bonobo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.15.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.15.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:51:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:51:18 +0000 (UTC) Subject: rpms/gnome-vfs2-obexftp/devel gnome-vfs2-obexftp.spec,1.12,1.13 Message-ID: <20090725005118.61E5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-vfs2-obexftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6647 Modified Files: gnome-vfs2-obexftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-vfs2-obexftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-vfs2-obexftp/devel/gnome-vfs2-obexftp.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnome-vfs2-obexftp.spec 24 Feb 2009 23:42:08 -0000 1.12 +++ gnome-vfs2-obexftp.spec 25 Jul 2009 00:51:18 -0000 1.13 @@ -1,7 +1,7 @@ Summary: ObexFTP over Bluetooth support for GNOME Name: gnome-vfs2-obexftp Version: 0.4 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Group: Applications/Communications URL: http://www.gnome.org/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gnome-vfs-2.0/modules/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:51:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:51:32 +0000 (UTC) Subject: rpms/gnome-vfsmm26/devel gnome-vfsmm.spec,1.20,1.21 Message-ID: <20090725005132.1F2C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-vfsmm26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6809 Modified Files: gnome-vfsmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-vfsmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-vfsmm26/devel/gnome-vfsmm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gnome-vfsmm.spec 24 Feb 2009 23:43:01 -0000 1.20 +++ gnome-vfsmm.spec 25 Jul 2009 00:51:32 -0000 1.21 @@ -1,6 +1,6 @@ Name: gnome-vfsmm26 Version: 2.24.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrapper for gnome-vfs @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.24.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:51:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:51:46 +0000 (UTC) Subject: rpms/gnome-web-photo/devel gnome-web-photo.spec,1.24,1.25 Message-ID: <20090725005146.0CED611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnome-web-photo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6951 Modified Files: gnome-web-photo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnome-web-photo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-web-photo/devel/gnome-web-photo.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- gnome-web-photo.spec 20 Jul 2009 09:18:34 -0000 1.24 +++ gnome-web-photo.spec 25 Jul 2009 00:51:45 -0000 1.25 @@ -3,7 +3,7 @@ Summary: HTML pages thumbnailer Name: gnome-web-photo Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Internet URL: http://ftp.gnome.org/pub/GNOME/sources/gnome-web-photo/%{version}/ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-web-photo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Jan Horak - 0.8-2 - Rebuild against newer gecko From jkeating at fedoraproject.org Sat Jul 25 00:52:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:52:00 +0000 (UTC) Subject: rpms/gnomebaker/devel gnomebaker.spec,1.18,1.19 Message-ID: <20090725005200.540F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnomebaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7100 Modified Files: gnomebaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnomebaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomebaker/devel/gnomebaker.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gnomebaker.spec 24 Feb 2009 23:44:57 -0000 1.18 +++ gnomebaker.spec 25 Jul 2009 00:52:00 -0000 1.19 @@ -1,6 +1,6 @@ Name: gnomebaker Version: 0.6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNOME CD/DVD burner Group: Applications/Multimedia @@ -84,6 +84,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:52:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:52:15 +0000 (UTC) Subject: rpms/gnomecatalog/devel gnomecatalog.spec,1.6,1.7 Message-ID: <20090725005215.5790D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnomecatalog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7251 Modified Files: gnomecatalog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnomecatalog.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomecatalog/devel/gnomecatalog.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gnomecatalog.spec 20 Jun 2009 05:08:57 -0000 1.6 +++ gnomecatalog.spec 25 Jul 2009 00:52:15 -0000 1.7 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gnomecatalog Version: 0.3.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Catalog Software for Gnome Desktop Group: Applications/File @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-gcatalog.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Marc Wiriadiastra - 0.3.4.2-1 - Update for new upstream which fixes bug listed below. - Cleaned up spec file to suit new upstream source file; tar.bz2 and From jkeating at fedoraproject.org Sat Jul 25 00:52:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:52:29 +0000 (UTC) Subject: rpms/gnomeradio/devel gnomeradio.spec,1.10,1.11 Message-ID: <20090725005229.0A4AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnomeradio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7459 Modified Files: gnomeradio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnomeradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomeradio/devel/gnomeradio.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gnomeradio.spec 24 Feb 2009 23:46:57 -0000 1.10 +++ gnomeradio.spec 25 Jul 2009 00:52:28 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Graphical FM-Tuner program for GNOME Name: gnomeradio Version: 1.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.wh-hms.uni-ulm.de/~mfcn/gnomeradio/ @@ -103,6 +103,9 @@ scrollkeeper-update -q || : %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:52:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:52:54 +0000 (UTC) Subject: rpms/gnomint/devel gnomint.spec,1.8,1.9 Message-ID: <20090725005254.53C4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnomint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7699 Modified Files: gnomint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnomint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnomint/devel/gnomint.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gnomint.spec 15 Jul 2009 08:15:24 -0000 1.8 +++ gnomint.spec 25 Jul 2009 00:52:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: gnomint Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical x509 Certification Authority management tool Group: Applications/System @@ -94,6 +94,9 @@ update-desktop-database %{_datadir}/appl %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Huffman - 1.0.0-1 - new stable upstream release - added forgotten crlgen function to gnomint-cli text-based interface From jkeating at fedoraproject.org Sat Jul 25 00:53:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:53:08 +0000 (UTC) Subject: rpms/gnonlin/devel gnonlin.spec,1.25,1.26 Message-ID: <20090725005308.35C3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnonlin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7844 Modified Files: gnonlin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnonlin.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnonlin/devel/gnonlin.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gnonlin.spec 16 Jul 2009 13:33:13 -0000 1.25 +++ gnonlin.spec 25 Jul 2009 00:53:08 -0000 1.26 @@ -3,7 +3,7 @@ Name: gnonlin Version: 0.10.11.2 -Release: 0.1%{?dist} +Release: 0.2%{?dist} Summary: GStreamer extension library for non-linear editing Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-0.10/libgnl.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.11.2-0.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jeffrey C. Ollie - 0.10.11.2-0.1 - Update to gnonlin prerelease. From jkeating at fedoraproject.org Sat Jul 25 00:53:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:53:21 +0000 (UTC) Subject: rpms/gnote/devel gnote.spec,1.12,1.13 Message-ID: <20090725005321.237E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7997 Modified Files: gnote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnote.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnote/devel/gnote.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnote.spec 14 Jul 2009 22:15:06 -0000 1.12 +++ gnote.spec 25 Jul 2009 00:53:21 -0000 1.13 @@ -1,6 +1,6 @@ Name: gnote Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Note-taking application Group: User Interface/Desktops License: GPLv3+ @@ -98,6 +98,9 @@ fi %{_prefix}/%{_lib}/bonobo/servers/GNOME_GnoteApplet.server %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Rahul Sundaram - 0.5.3-1 - Few minor bug fixes - http://mail.gnome.org/archives/gnote-list/2009-July/msg00002.html From jkeating at fedoraproject.org Sat Jul 25 00:53:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:53:35 +0000 (UTC) Subject: rpms/gnotime/devel gnotime.spec,1.31,1.32 Message-ID: <20090725005335.6D87E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnotime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8155 Modified Files: gnotime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnotime.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnotime/devel/gnotime.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- gnotime.spec 24 Feb 2009 23:50:53 -0000 1.31 +++ gnotime.spec 25 Jul 2009 00:53:35 -0000 1.32 @@ -1,6 +1,6 @@ Name: gnotime Version: 2.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tracks and reports time spent Group: Applications/Productivity @@ -110,6 +110,9 @@ scrollkeeper-update -q || : %{_sysconfdir}/gconf/schemas/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:53:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:53:49 +0000 (UTC) Subject: rpms/gnu-efi/devel gnu-efi.spec,1.32,1.33 Message-ID: <20090725005349.50F8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnu-efi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8315 Modified Files: gnu-efi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnu-efi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnu-efi/devel/gnu-efi.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- gnu-efi.spec 13 May 2009 14:21:43 -0000 1.32 +++ gnu-efi.spec 25 Jul 2009 00:53:49 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Development Libraries and headers for EFI Name: gnu-efi Version: 3.0e -Release: 7%{?dist} +Release: 8%{?dist} Group: Development/System License: GPLv2+ URL: ftp://ftp.hpl.hp.com/pub/linux-ia64 @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_libdir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0e-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 Peter Jones - 3.0e-7 - Use nickc's workaround for #492183 From jkeating at fedoraproject.org Sat Jul 25 00:54:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:54:02 +0000 (UTC) Subject: rpms/gnu-free-fonts/devel gnu-free-fonts.spec,1.1,1.2 Message-ID: <20090725005402.1F51811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnu-free-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8489 Modified Files: gnu-free-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnu-free-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnu-free-fonts/devel/gnu-free-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnu-free-fonts.spec 24 Mar 2009 18:14:32 -0000 1.1 +++ gnu-free-fonts.spec 25 Jul 2009 00:54:01 -0000 1.2 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 20090104 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Free UCS Outline Fonts Group: User Interface/X # Standard font exception @@ -137,6 +137,9 @@ rm -rf %{buildroot} %files compat %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090104-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Jon Ciesla 20090104-10 - Moved closer to template in effort to correct symlinks. From jkeating at fedoraproject.org Sat Jul 25 00:54:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:54:16 +0000 (UTC) Subject: rpms/gnu-getopt/devel gnu-getopt.spec,1.7,1.8 Message-ID: <20090725005416.57E2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnu-getopt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8660 Modified Files: gnu-getopt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnu-getopt.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnu-getopt/devel/gnu-getopt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnu-getopt.spec 24 Feb 2009 23:52:57 -0000 1.7 +++ gnu-getopt.spec 25 Jul 2009 00:54:16 -0000 1.8 @@ -36,7 +36,7 @@ Name: gnu-getopt Version: 1.0.12 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 0 Summary: Java getopt implementation License: LGPLv2+ @@ -143,6 +143,9 @@ fi %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0.12-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.0.12-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:54:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:54:30 +0000 (UTC) Subject: rpms/gnu-regexp/devel gnu-regexp.spec,1.5,1.6 Message-ID: <20090725005430.7DFA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnu-regexp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8817 Modified Files: gnu-regexp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnu-regexp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnu-regexp/devel/gnu-regexp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gnu-regexp.spec 24 Feb 2009 23:53:58 -0000 1.5 +++ gnu-regexp.spec 25 Jul 2009 00:54:30 -0000 1.6 @@ -30,7 +30,7 @@ Name: gnu-regexp Version: 1.1.4 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Java NFA regular expression engine implementation License: LGPLv2+ and GPLv2+ Source0: ftp://ftp.tralfamadore.com/pub/java/gnu.regexp-1.1.4.tar.gz @@ -119,6 +119,9 @@ export CLASSPATH=$(build-classpath gnu.g %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:54:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:54:45 +0000 (UTC) Subject: rpms/gnu-smalltalk/devel gnu-smalltalk.spec,1.48,1.49 Message-ID: <20090725005445.736CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnu-smalltalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9003 Modified Files: gnu-smalltalk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnu-smalltalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnu-smalltalk/devel/gnu-smalltalk.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- gnu-smalltalk.spec 5 Jul 2009 18:17:17 -0000 1.48 +++ gnu-smalltalk.spec 25 Jul 2009 00:54:45 -0000 1.49 @@ -1,7 +1,7 @@ Summary: GNU Smalltalk Name: gnu-smalltalk Version: 3.1 -Release: 6%{?dist} +Release: 7%{?dist} Source: ftp://ftp.gnu.org/gnu/smalltalk/smalltalk-%{version}.tar.gz Patch1: gst-3.1-am.patch Patch2: gst-3.1-tst.patch @@ -180,6 +180,9 @@ fi %{_datadir}/emacs/site-lisp/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 5 2009 Jochen Schmitt 3.1-6 - Fix license tag From jkeating at fedoraproject.org Sat Jul 25 00:55:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:55:23 +0000 (UTC) Subject: rpms/gnubg/devel gnubg.spec,1.28,1.29 Message-ID: <20090725005523.9563D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnubg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9306 Modified Files: gnubg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnubg.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnubg/devel/gnubg.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gnubg.spec 24 Feb 2009 23:56:08 -0000 1.28 +++ gnubg.spec 25 Jul 2009 00:55:23 -0000 1.29 @@ -4,7 +4,7 @@ Group: Amusements/Games Summary: A backgammon game and analyser Epoch: 1 Version: 0.9.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://gnubg.org/media/sources/gnubg-0.9.0-1.tar.gz Source1: gnubg.weights Source2: gnubg.desktop @@ -165,6 +165,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/gnubg/gnubg_ts0.bd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.9.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:0.9.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:55:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:55:38 +0000 (UTC) Subject: rpms/gnubiff/devel gnubiff.spec,1.20,1.21 Message-ID: <20090725005538.705EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnubiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9479 Modified Files: gnubiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnubiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnubiff/devel/gnubiff.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gnubiff.spec 24 Feb 2009 23:57:04 -0000 1.20 +++ gnubiff.spec 25 Jul 2009 00:55:38 -0000 1.21 @@ -1,7 +1,7 @@ Summary: A mail notification program Name: gnubiff Version: 2.2.10 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://gnubiff.sourceforge.net/ @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:55:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:55:53 +0000 (UTC) Subject: rpms/gnubik/devel gnubik.spec,1.2,1.3 Message-ID: <20090725005553.31C9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnubik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9641 Modified Files: gnubik.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnubik.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnubik/devel/gnubik.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnubik.spec 21 Mar 2009 19:48:12 -0000 1.2 +++ gnubik.spec 25 Jul 2009 00:55:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: gnubik Version: 2.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 3D interactive graphics puzzle Group: Amusements/Games @@ -81,6 +81,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Alexey Torkhov - 2.3-6 - Put icon in right location From jkeating at fedoraproject.org Sat Jul 25 00:56:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:56:08 +0000 (UTC) Subject: rpms/gnubversion/devel gnubversion.spec,1.5,1.6 Message-ID: <20090725005608.5BCA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnubversion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9808 Modified Files: gnubversion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnubversion.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnubversion/devel/gnubversion.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gnubversion.spec 2 Mar 2009 07:52:37 -0000 1.5 +++ gnubversion.spec 25 Jul 2009 00:56:08 -0000 1.6 @@ -1,6 +1,6 @@ Name: gnubversion Version: 0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Gnome Interface to Subversion Group: Applications/System @@ -107,6 +107,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:56:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:56:22 +0000 (UTC) Subject: rpms/gnucap/devel gnucap.spec,1.7,1.8 Message-ID: <20090725005622.4A59C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnucap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9974 Modified Files: gnucap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnucap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnucap/devel/gnucap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnucap.spec 24 Feb 2009 23:58:58 -0000 1.7 +++ gnucap.spec 25 Jul 2009 00:56:21 -0000 1.8 @@ -1,6 +1,6 @@ Name: gnucap Version: 0.35 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The Gnu Circuit Analysis Package Group: Applications/Engineering License: GPLv2+ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.35-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.35-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:56:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:56:36 +0000 (UTC) Subject: rpms/gnucash/devel gnucash.spec,1.100,1.101 Message-ID: <20090725005636.7560311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnucash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10129 Modified Files: gnucash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnucash.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnucash/devel/gnucash.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- gnucash.spec 5 Mar 2009 21:40:20 -0000 1.100 +++ gnucash.spec 25 Jul 2009 00:56:36 -0000 1.101 @@ -4,7 +4,7 @@ Name: gnucash Summary: Finance management application Version: 2.2.9 URL: http://gnucash.org/ -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Productivity Source: http://www.gnucash.org/pub/gnucash/sources/stable/gnucash-%{version}.tar.bz2 @@ -128,6 +128,9 @@ fi %doc doc/README.german doc/README.francais doc/guile-hackers.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Bill Nottingham - 2.2.9-1 - update to 2.2.9 From jkeating at fedoraproject.org Sat Jul 25 00:56:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:56:50 +0000 (UTC) Subject: rpms/gnucash-docs/devel gnucash-docs.spec,1.7,1.8 Message-ID: <20090725005650.5786011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnucash-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10281 Modified Files: gnucash-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnucash-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnucash-docs/devel/gnucash-docs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnucash-docs.spec 25 Feb 2009 00:01:01 -0000 1.7 +++ gnucash-docs.spec 25 Jul 2009 00:56:50 -0000 1.8 @@ -2,7 +2,7 @@ Name: gnucash-docs Summary: Help files and documentation for the GnuCash personal finanace manager Version: 2.2.0 URL: http://gnucash.org/ -Release: 3%{?dist} +Release: 4%{?dist} License: GFDL Group: Applications/Productivity Source: http://www.gnucash.org/pub/gnucash/sources/stable/gnucash-docs-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING* ChangeLog* HACKING NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:57:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:57:04 +0000 (UTC) Subject: rpms/gnuchess/devel gnuchess.spec,1.7,1.8 Message-ID: <20090725005704.1F66F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnuchess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10438 Modified Files: gnuchess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnuchess.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuchess/devel/gnuchess.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gnuchess.spec 25 Feb 2009 00:01:57 -0000 1.7 +++ gnuchess.spec 25 Jul 2009 00:57:03 -0000 1.8 @@ -1,7 +1,7 @@ Summary: The GNU chess program Name: gnuchess Version: 5.07 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Group: Amusements/Games URL: ftp://ftp.gnu.org/pub/gnu/chess/ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/* COPYING AUTHORS NEWS TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.07-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.07-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:57:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:57:18 +0000 (UTC) Subject: rpms/gnue-common/devel gnue-common.spec,1.4,1.5 Message-ID: <20090725005718.314A311C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnue-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10597 Modified Files: gnue-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnue-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnue-common/devel/gnue-common.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gnue-common.spec 25 Feb 2009 00:02:50 -0000 1.4 +++ gnue-common.spec 25 Jul 2009 00:57:18 -0000 1.5 @@ -37,7 +37,7 @@ Name: gnue-common Version: 0.6.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: GNU Enterprise Common Base Group: Applications/Productivity @@ -111,6 +111,9 @@ rm -rf %{buildroot} %doc doc/technotes scripts/gnue-diag.sh doc/%{name}-%{version}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:57:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:57:32 +0000 (UTC) Subject: rpms/gnugo/devel gnugo.spec,1.16,1.17 Message-ID: <20090725005732.843F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnugo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10749 Modified Files: gnugo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnugo.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnugo/devel/gnugo.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gnugo.spec 9 Mar 2009 01:12:26 -0000 1.16 +++ gnugo.spec 25 Jul 2009 00:57:32 -0000 1.17 @@ -1,6 +1,6 @@ Name: gnugo Version: 3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Text based go program @@ -66,6 +66,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Michel Salim - 3.8-1 - Update to 3.8 - License is now GPLv3+ From jkeating at fedoraproject.org Sat Jul 25 00:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:57:45 +0000 (UTC) Subject: rpms/gnujump/devel gnujump.spec,1.1,1.2 Message-ID: <20090725005745.4CAFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnujump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10910 Modified Files: gnujump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnujump.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnujump/devel/gnujump.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnujump.spec 14 Jul 2009 15:15:44 -0000 1.1 +++ gnujump.spec 25 Jul 2009 00:57:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: gnujump Version: 1.0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A jumping game which is a clone of xjump Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Vivek Shah 1.0.6-2 - Removed vendor tag from desktop-file-install - Added ownership for unowned directories From jkeating at fedoraproject.org Sat Jul 25 00:58:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:58:01 +0000 (UTC) Subject: rpms/gnumeric/devel gnumeric.spec,1.45,1.46 Message-ID: <20090725005801.71FCA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnumeric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11076 Modified Files: gnumeric.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnumeric.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnumeric/devel/gnumeric.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gnumeric.spec 13 Apr 2009 09:46:18 -0000 1.45 +++ gnumeric.spec 25 Jul 2009 00:58:01 -0000 1.46 @@ -1,7 +1,7 @@ Name: gnumeric Epoch: 1 Version: 1.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Spreadsheet program for GNOME Group: Applications/Productivity # bug filed upstream about this being GPL v2 only: @@ -191,6 +191,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Huzaifa Sidhpurwala 1:1.8.4-2 - Resolved rhbz #495314 From jkeating at fedoraproject.org Sat Jul 25 00:58:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:58:20 +0000 (UTC) Subject: rpms/gnupg/devel gnupg.spec,1.81,1.82 Message-ID: <20090725005820.D93A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnupg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11289 Modified Files: gnupg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnupg.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnupg/devel/gnupg.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- gnupg.spec 25 Feb 2009 00:05:34 -0000 1.81 +++ gnupg.spec 25 Jul 2009 00:58:20 -0000 1.82 @@ -1,7 +1,7 @@ Summary: A GNU utility for secure communication and data storage Name: gnupg Version: 1.4.9 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv3+ with exceptions Group: Applications/System Source0: ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-%{version}.tar.bz2 @@ -113,6 +113,9 @@ exit 0 %{_mandir}/man7/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:58:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:58:35 +0000 (UTC) Subject: rpms/gnupg2/devel gnupg2.spec,1.92,1.93 Message-ID: <20090725005835.B35A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnupg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11459 Modified Files: gnupg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnupg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnupg2/devel/gnupg2.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- gnupg2.spec 17 Jun 2009 13:09:15 -0000 1.92 +++ gnupg2.spec 25 Jul 2009 00:58:35 -0000 1.93 @@ -2,7 +2,7 @@ Summary: Utility for secure communication and data storage Name: gnupg2 Version: 2.0.12 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/System @@ -167,6 +167,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Rex Dieter - 2.0.12-1 - gnupg-2.0.12 From jkeating at fedoraproject.org Sat Jul 25 00:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:58:50 +0000 (UTC) Subject: rpms/gnuplot/devel gnuplot.spec,1.70,1.71 Message-ID: <20090725005850.CFC5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnuplot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11629 Modified Files: gnuplot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnuplot.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuplot/devel/gnuplot.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- gnuplot.spec 15 Jun 2009 08:49:24 -0000 1.70 +++ gnuplot.spec 25 Jul 2009 00:58:50 -0000 1.71 @@ -17,7 +17,7 @@ Summary: A program for plotting mathematical expressions and data Name: gnuplot Version: %{major}.%{minor}.%{patchlevel} -Release: 4%{?dist} +Release: 5%{?dist} # Modifications are to be distributed as patches to the released version. License: gnuplot and GPLv2 Group: Applications/Engineering @@ -242,6 +242,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/texmf/tex/latex/gnuplot/gnuplot.cfg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Ivana Varekova - 4.2.5-4 - add gnuplot-latex subpackage patch by jnovy From jkeating at fedoraproject.org Sat Jul 25 00:59:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:59:04 +0000 (UTC) Subject: rpms/gnuplot-py/devel gnuplot-py.spec,1.2,1.3 Message-ID: <20090725005904.B22C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnuplot-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11801 Modified Files: gnuplot-py.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnuplot-py.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuplot-py/devel/gnuplot-py.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gnuplot-py.spec 25 Feb 2009 00:08:15 -0000 1.2 +++ gnuplot-py.spec 25 Jul 2009 00:59:04 -0000 1.3 @@ -3,7 +3,7 @@ Name: gnuplot-py Version: 1.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python interface to Gnuplot Group: Development/Languages @@ -59,6 +59,9 @@ CFLAGS="$RPM_OPT_FLAGS" %{__python} -c ' %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 00:59:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:59:20 +0000 (UTC) Subject: rpms/gnuradio/devel gnuradio.spec,1.12,1.13 Message-ID: <20090725005920.B22ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnuradio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11985 Modified Files: gnuradio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnuradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/gnuradio.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnuradio.spec 5 Mar 2009 06:28:18 -0000 1.12 +++ gnuradio.spec 25 Jul 2009 00:59:20 -0000 1.13 @@ -2,7 +2,7 @@ Name: gnuradio Version: 3.1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Software defined radio framework Group: Applications/Engineering @@ -200,6 +200,9 @@ getent group usrp >/dev/null || groupadd %{_includedir}/usrp_* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 4 2009 Lubomir Rintel - 3.1.3-5 - Fix build with GCC 4.4 From jkeating at fedoraproject.org Sat Jul 25 00:59:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:59:36 +0000 (UTC) Subject: rpms/gnurobots/devel gnurobots.spec,1.3,1.4 Message-ID: <20090725005936.B14D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnurobots/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12180 Modified Files: gnurobots.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnurobots.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnurobots/devel/gnurobots.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gnurobots.spec 2 Jul 2009 19:00:04 -0000 1.3 +++ gnurobots.spec 25 Jul 2009 00:59:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: gnurobots Version: 1.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A robot programming game Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Vivek Shah - 1.2.0-6 - Added subcategory for the desktop file From jkeating at fedoraproject.org Sat Jul 25 00:59:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 00:59:51 +0000 (UTC) Subject: rpms/gnusim8085/devel gnusim8085.spec,1.1,1.2 Message-ID: <20090725005951.79FC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnusim8085/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12351 Modified Files: gnusim8085.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnusim8085.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnusim8085/devel/gnusim8085.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gnusim8085.spec 9 Jun 2009 04:57:10 -0000 1.1 +++ gnusim8085.spec 25 Jul 2009 00:59:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: gnusim8085 Version: 1.3.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A 8085 Simulator Group: Applications/Engineering @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/gnusim8085/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 7 2009 Rangeen Basu Roy Chowdhury - 1.3.5-4 - Ownership of pixmap/gnusim8085 directory included and some typos fixed. From jkeating at fedoraproject.org Sat Jul 25 01:00:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:00:07 +0000 (UTC) Subject: rpms/gnustep-make/devel gnustep-make.spec,1.12,1.13 Message-ID: <20090725010007.D564A11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnustep-make/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12557 Modified Files: gnustep-make.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnustep-make.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnustep-make/devel/gnustep-make.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gnustep-make.spec 24 Mar 2009 19:30:01 -0000 1.12 +++ gnustep-make.spec 25 Jul 2009 01:00:07 -0000 1.13 @@ -4,7 +4,7 @@ Summary: GNUstep makefile package Name: gnustep-make Version: 2.0.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Development/Tools URL: http://www.gnustep.org/ @@ -90,6 +90,9 @@ rm -rf %{buildroot} %doc %{_defaultdocdir}/%{name}-doc-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Michel Salim - 2.0.8-2 - Put documentation into separate subpackage From jkeating at fedoraproject.org Sat Jul 25 01:00:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:00:24 +0000 (UTC) Subject: rpms/gnutls/devel gnutls.spec,1.45,1.46 Message-ID: <20090725010024.4E3A711C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gnutls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12768 Modified Files: gnutls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gnutls.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnutls/devel/gnutls.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gnutls.spec 10 Jun 2009 19:02:21 -0000 1.45 +++ gnutls.spec 25 Jul 2009 01:00:24 -0000 1.46 @@ -1,7 +1,7 @@ Summary: A TLS protocol implementation Name: gnutls Version: 2.8.1 -Release: 1%{?dist} +Release: 2%{?dist} # The libgnutls library is LGPLv2+, utilities and remaining libraries are GPLv3+ License: GPLv3+ and LGPLv2+ Group: System Environment/Libraries @@ -147,6 +147,9 @@ fi %{_datadir}/guile/site/gnutls.scm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Tomas Mraz 2.8.1-1 - upgrade to a new upstream version From jkeating at fedoraproject.org Sat Jul 25 01:00:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:00:51 +0000 (UTC) Subject: rpms/gob2/devel gob2.spec,1.21,1.22 Message-ID: <20090725010051.834DC11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gob2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12982 Modified Files: gob2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gob2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gob2/devel/gob2.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gob2.spec 22 Jul 2009 12:05:47 -0000 1.21 +++ gob2.spec 25 Jul 2009 01:00:50 -0000 1.22 @@ -1,7 +1,7 @@ Summary: The GObject Builder Name: gob2 Version: 2.0.16 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools Source: gob2-%{version}.tar.gz @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel Novotny 2.0.16-1 - new upstream version 2.0.16 From jkeating at fedoraproject.org Sat Jul 25 01:01:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:01:11 +0000 (UTC) Subject: rpms/gobby/devel gobby.spec,1.35,1.36 Message-ID: <20090725010111.27D8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13187 Modified Files: gobby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobby/devel/gobby.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- gobby.spec 25 Feb 2009 00:13:42 -0000 1.35 +++ gobby.spec 25 Jul 2009 01:01:10 -0000 1.36 @@ -1,6 +1,6 @@ Name: gobby Version: 0.4.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Free collaborative editor Group: Applications/Internet @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:01:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:01:31 +0000 (UTC) Subject: rpms/gobject-introspection/devel gobject-introspection.spec, 1.11, 1.12 Message-ID: <20090725010131.83E1111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gobject-introspection/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13361 Modified Files: gobject-introspection.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gobject-introspection.spec =================================================================== RCS file: /cvs/pkgs/rpms/gobject-introspection/devel/gobject-introspection.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gobject-introspection.spec 6 Jul 2009 20:07:13 -0000 1.11 +++ gobject-introspection.spec 25 Jul 2009 01:01:31 -0000 1.12 @@ -3,7 +3,7 @@ Name: gobject-introspection Version: 0.6.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Introspection system for GObject-based libraries Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Peter Robinson - 0.6.3-4 - Add upstream patch to fix a build crash From jkeating at fedoraproject.org Sat Jul 25 01:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:01:47 +0000 (UTC) Subject: rpms/gocr/devel gocr.spec,1.11,1.12 Message-ID: <20090725010147.2D22311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gocr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13572 Modified Files: gocr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gocr.spec =================================================================== RCS file: /cvs/pkgs/rpms/gocr/devel/gocr.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gocr.spec 23 Apr 2009 11:45:40 -0000 1.11 +++ gocr.spec 25 Jul 2009 01:01:46 -0000 1.12 @@ -1,6 +1,6 @@ Name: gocr Version: 0.46 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GNU Optical Character Recognition program Group: Applications/Multimedia @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gocr.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.46-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Tomas Smetana - 0.46-1 - new upstream release From jkeating at fedoraproject.org Sat Jul 25 01:02:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:02:02 +0000 (UTC) Subject: rpms/goffice/devel goffice.spec,1.23,1.24 Message-ID: <20090725010202.56D5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/goffice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13745 Modified Files: goffice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: goffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/goffice/devel/goffice.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- goffice.spec 25 Feb 2009 00:16:31 -0000 1.23 +++ goffice.spec 25 Jul 2009 01:02:02 -0000 1.24 @@ -1,6 +1,6 @@ Name: goffice Version: 0.6.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Goffice support libraries Group: System Environment/Libraries # bug filed upstream about this being GPL v2 only: @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:02:15 +0000 (UTC) Subject: rpms/goffice04/devel goffice04.spec,1.10,1.11 Message-ID: <20090725010215.3C5D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/goffice04/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13879 Modified Files: goffice04.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: goffice04.spec =================================================================== RCS file: /cvs/pkgs/rpms/goffice04/devel/goffice04.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- goffice04.spec 25 Feb 2009 00:17:23 -0000 1.10 +++ goffice04.spec 25 Jul 2009 01:02:15 -0000 1.11 @@ -2,7 +2,7 @@ Name: goffice04 Version: 0.4.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Goffice support libraries Group: System Environment/Libraries License: GPLv2 @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:02:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:02:29 +0000 (UTC) Subject: rpms/gok/devel gok.spec,1.82,1.83 Message-ID: <20090725010229.5176111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14043 Modified Files: gok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gok.spec =================================================================== RCS file: /cvs/pkgs/rpms/gok/devel/gok.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- gok.spec 14 Jul 2009 04:12:02 -0000 1.82 +++ gok.spec 25 Jul 2009 01:02:29 -0000 1.83 @@ -3,7 +3,7 @@ Summary: GNOME Onscreen Keyboard Name: gok Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: User Interface/Desktops URL: http://www.gok.ca/ @@ -150,6 +150,9 @@ scrollkeeper-update -q %{_datadir}/gtk-doc/html/gok %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 01:03:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:03:04 +0000 (UTC) Subject: rpms/gonvert/devel gonvert.spec,1.18,1.19 Message-ID: <20090725010304.649FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gonvert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14333 Modified Files: gonvert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gonvert.spec =================================================================== RCS file: /cvs/pkgs/rpms/gonvert/devel/gonvert.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gonvert.spec 27 Apr 2009 19:49:38 -0000 1.18 +++ gonvert.spec 25 Jul 2009 01:03:04 -0000 1.19 @@ -1,6 +1,6 @@ Name: gonvert Version: 0.2.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Units conversion utility Group: Applications/Engineering License: GPL+ @@ -68,6 +68,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jon Ciesla - 0.2.20-1 - New upstream. From jkeating at fedoraproject.org Sat Jul 25 01:03:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:03:19 +0000 (UTC) Subject: rpms/goocanvas/devel goocanvas.spec,1.11,1.12 Message-ID: <20090725010319.8BFA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/goocanvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14486 Modified Files: goocanvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: goocanvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/goocanvas/devel/goocanvas.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- goocanvas.spec 23 Apr 2009 08:24:59 -0000 1.11 +++ goocanvas.spec 25 Jul 2009 01:03:19 -0000 1.12 @@ -1,6 +1,6 @@ Name: goocanvas Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A new canvas widget for GTK+ that uses cairo for drawing Group: System Environment/Libraries @@ -70,6 +70,9 @@ These are the files used for development %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Denis - 0.14-1 - Update to upstream 0.14 From jkeating at fedoraproject.org Sat Jul 25 01:03:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:03:34 +0000 (UTC) Subject: rpms/goocanvasmm/devel goocanvasmm.spec,1.7,1.8 Message-ID: <20090725010334.5FEFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/goocanvasmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14640 Modified Files: goocanvasmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: goocanvasmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/goocanvasmm/devel/goocanvasmm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- goocanvasmm.spec 23 Apr 2009 08:29:55 -0000 1.7 +++ goocanvasmm.spec 25 Jul 2009 01:03:34 -0000 1.8 @@ -1,6 +1,6 @@ Name: goocanvasmm Version: 0.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for goocanvas @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Denis - 0.14.0-1 - Update to upstream 0.14.0 From jkeating at fedoraproject.org Sat Jul 25 01:03:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:03:49 +0000 (UTC) Subject: rpms/google-droid-fonts/devel google-droid-fonts.spec,1.6,1.7 Message-ID: <20090725010349.6F29A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/google-droid-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14790 Modified Files: google-droid-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: google-droid-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-droid-fonts/devel/google-droid-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- google-droid-fonts.spec 25 Feb 2009 00:21:49 -0000 1.6 +++ google-droid-fonts.spec 25 Jul 2009 01:03:49 -0000 1.7 @@ -12,7 +12,7 @@ other screen text. Name: %{fontname}-fonts # The font files all have the same version except for sans fallback which I'm going to ignore here Version: 1.0.112 -Release: 6%{?dist} +Release: 7%{?dist} Summary: General-purpose fonts released by Google as part of Android Group: User Interface/X @@ -136,6 +136,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.112-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.112-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:04:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:04:06 +0000 (UTC) Subject: rpms/google-gadgets/devel google-gadgets.spec,1.14,1.15 Message-ID: <20090725010406.9347611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/google-gadgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14986 Modified Files: google-gadgets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: google-gadgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-gadgets/devel/google-gadgets.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- google-gadgets.spec 2 Jul 2009 02:19:43 -0000 1.14 +++ google-gadgets.spec 25 Jul 2009 01:04:06 -0000 1.15 @@ -4,7 +4,7 @@ Name: google-gadgets Version: 0.11.0 #Release: 0.1.%{alphatag}%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Google Gadgets for Linux Group: User Interface/Desktops @@ -208,6 +208,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Michel Salim - 0.11.0-1 - Update to 0.11.0 From jkeating at fedoraproject.org Sat Jul 25 01:04:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:04:21 +0000 (UTC) Subject: rpms/google-perftools/devel google-perftools.spec,1.19,1.20 Message-ID: <20090725010421.E874411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/google-perftools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15182 Modified Files: google-perftools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: google-perftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/google-perftools/devel/google-perftools.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- google-perftools.spec 2 Jul 2009 17:38:47 -0000 1.19 +++ google-perftools.spec 25 Jul 2009 01:04:21 -0000 1.20 @@ -1,6 +1,6 @@ Name: google-perftools Version: 1.3 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Tools Summary: Very fast malloc and performance analysis tools @@ -72,6 +72,9 @@ LD_LIBRARY_PATH=./.libs make check %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Tom "spot" Callaway - 1.3-2 - disable tests for ppc, upstream ticket #153 From jkeating at fedoraproject.org Sat Jul 25 01:04:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:04:42 +0000 (UTC) Subject: rpms/gossip/devel gossip.spec,1.58,1.59 Message-ID: <20090725010442.207A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gossip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15371 Modified Files: gossip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gossip.spec =================================================================== RCS file: /cvs/pkgs/rpms/gossip/devel/gossip.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- gossip.spec 25 Feb 2009 00:24:33 -0000 1.58 +++ gossip.spec 25 Jul 2009 01:04:41 -0000 1.59 @@ -1,6 +1,6 @@ Name: gossip Version: 0.31 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNOME Jabber Client Group: Applications/Communications @@ -122,6 +122,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:04:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:04:56 +0000 (UTC) Subject: rpms/gourmet/devel gourmet.spec,1.14,1.15 Message-ID: <20090725010456.EEAF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gourmet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15580 Modified Files: gourmet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gourmet.spec =================================================================== RCS file: /cvs/pkgs/rpms/gourmet/devel/gourmet.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gourmet.spec 25 Feb 2009 00:25:29 -0000 1.14 +++ gourmet.spec 25 Jul 2009 01:04:56 -0000 1.15 @@ -2,7 +2,7 @@ Name: gourmet Version: 0.13.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Recipe Manager for the GNOME desktop environment Group: Applications/Productivity @@ -69,6 +69,9 @@ rm -rf %buildroot %{python_sitelib}/*.egg-info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.13.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:05:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:05:13 +0000 (UTC) Subject: rpms/gpa/devel gpa.spec,1.21,1.22 Message-ID: <20090725010513.2F76C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15781 Modified Files: gpa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpa.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpa/devel/gpa.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gpa.spec 21 Jun 2009 04:08:18 -0000 1.21 +++ gpa.spec 25 Jul 2009 01:05:12 -0000 1.22 @@ -2,7 +2,7 @@ Name: gpa Summary: Graphical user interface for GnuPG Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System @@ -84,6 +84,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Rex Dieter - 0.8.0-1 - gpg-0.8.0 - optimize scriptlets From jkeating at fedoraproject.org Sat Jul 25 01:05:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:05:44 +0000 (UTC) Subject: rpms/gpar2/devel gpar2.spec,1.4,1.5 Message-ID: <20090725010544.5813A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpar2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16016 Modified Files: gpar2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpar2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpar2/devel/gpar2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gpar2.spec 25 Feb 2009 00:27:20 -0000 1.4 +++ gpar2.spec 25 Jul 2009 01:05:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: gpar2 Version: 0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: GUI for verifying and repairing PAR and PAR2 recovery sets Group: Applications/Archiving @@ -62,6 +62,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:06:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:06:03 +0000 (UTC) Subject: rpms/gpart/devel gpart.spec,1.15,1.16 Message-ID: <20090725010603.D77C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16200 Modified Files: gpart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpart.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpart/devel/gpart.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gpart.spec 28 Feb 2009 15:24:49 -0000 1.15 +++ gpart.spec 25 Jul 2009 01:06:03 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A program for recovering corrupt partition tables Name: gpart Version: 0.1h -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.stud.uni-hannover.de/user/76201/gpart/ @@ -52,6 +52,9 @@ type harddisk in case the primary partit %{_mandir}/man8/%{name}.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1h-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 manuel "lonely wolf" wolfshant - 0.1h-11 - replacing %%exclusive arch i386 with %%{ix86} From jkeating at fedoraproject.org Sat Jul 25 01:06:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:06:26 +0000 (UTC) Subject: rpms/gparted/devel gparted.spec,1.52,1.53 Message-ID: <20090725010626.1BEF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16419 Modified Files: gparted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/gparted/devel/gparted.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- gparted.spec 14 Jul 2009 13:50:43 -0000 1.52 +++ gparted.spec 25 Jul 2009 01:06:25 -0000 1.53 @@ -1,7 +1,7 @@ Summary: Gnome Partition Editor Name: gparted Version: 0.4.5 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 Group: Applications/System License: GPLv2+ URL: http://gparted.sourceforge.net @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %config(noreplace) %{_sysconfdir}/security/console.apps/gparted %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Deji Akingunola - 0.4.5-2 - Change e2fsprog-devel BR to libuuid-devel, and rebuild for parted soname bump From jkeating at fedoraproject.org Sat Jul 25 01:06:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:06:43 +0000 (UTC) Subject: rpms/gperf/devel gperf.spec,1.30,1.31 Message-ID: <20090725010643.5C84511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16592 Modified Files: gperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/gperf/devel/gperf.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gperf.spec 25 Feb 2009 00:30:11 -0000 1.30 +++ gperf.spec 25 Jul 2009 01:06:43 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A perfect hash function generator Name: gperf Version: 3.0.3 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Source: ftp://ftp.gnu.org/pub/gnu/gperf/gperf-%{version}.tar.gz Group: Development/Tools @@ -53,6 +53,9 @@ exit 0 %{_infodir}/gperf.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:07:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:07:04 +0000 (UTC) Subject: rpms/gperiodic/devel gperiodic.spec,1.13,1.14 Message-ID: <20090725010704.9EC1111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gperiodic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16791 Modified Files: gperiodic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gperiodic.spec =================================================================== RCS file: /cvs/pkgs/rpms/gperiodic/devel/gperiodic.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gperiodic.spec 7 May 2009 20:50:26 -0000 1.13 +++ gperiodic.spec 25 Jul 2009 01:07:04 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Program for browsing the periodic table Name: gperiodic Version: 2.0.10 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://www.frantz.fi/software/gperiodic.php @@ -58,6 +58,9 @@ rm -rf %{buildroot} %doc README AUTHORS ChangeLog gpl.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 2.0.10-6 - Patch to build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Sat Jul 25 01:07:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:07:20 +0000 (UTC) Subject: rpms/gpgme/devel gpgme.spec,1.36,1.37 Message-ID: <20090725010720.9921311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpgme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16955 Modified Files: gpgme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpgme/devel/gpgme.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- gpgme.spec 21 Jun 2009 03:03:55 -0000 1.36 +++ gpgme.spec 25 Jul 2009 01:07:20 -0000 1.37 @@ -2,7 +2,7 @@ Name: gpgme Summary: GnuPG Made Easy - high level crypto API Version: 1.1.8 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/System @@ -112,6 +112,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Rex Dieter - 1.1.8-1 - gpgme-1.1.8 - -devel: s/postun/preun/ info scriptlet From jkeating at fedoraproject.org Sat Jul 25 01:07:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:07:35 +0000 (UTC) Subject: rpms/gphoto2/devel gphoto2.spec,1.100,1.101 Message-ID: <20090725010735.1DD0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gphoto2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17118 Modified Files: gphoto2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gphoto2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gphoto2/devel/gphoto2.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- gphoto2.spec 8 Apr 2009 06:41:35 -0000 1.100 +++ gphoto2.spec 25 Jul 2009 01:07:34 -0000 1.101 @@ -1,7 +1,7 @@ Summary: Software for accessing digital cameras Name: gphoto2 Version: 2.4.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man1/gphoto2.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Jindrich Novy 2.4.5-1 - update to 2.4.5 From jkeating at fedoraproject.org Sat Jul 25 01:07:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:07:55 +0000 (UTC) Subject: rpms/gphpedit/devel gphpedit.spec,1.7,1.8 Message-ID: <20090725010755.53AC611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gphpedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17299 Modified Files: gphpedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gphpedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/gphpedit/devel/gphpedit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gphpedit.spec 25 Feb 2009 00:34:09 -0000 1.7 +++ gphpedit.spec 25 Jul 2009 01:07:55 -0000 1.8 @@ -1,6 +1,6 @@ Name: gphpedit Version: 0.9.91 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A PHP source editor for GNOME 2 Group: Applications/Text @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_datadir}/gphpedit/php-gphpedit.api %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.91-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.91-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:08:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:08:10 +0000 (UTC) Subject: rpms/gpicview/devel gpicview.spec,1.11,1.12 Message-ID: <20090725010810.810F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpicview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17443 Modified Files: gpicview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpicview.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpicview/devel/gpicview.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gpicview.spec 29 Jun 2009 22:02:21 -0000 1.11 +++ gpicview.spec 25 Jul 2009 01:08:10 -0000 1.12 @@ -1,6 +1,6 @@ Name: gpicview Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple and fast Image Viewer for X Group: Applications/Multimedia @@ -65,6 +65,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 From jkeating at fedoraproject.org Sat Jul 25 01:08:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:08:24 +0000 (UTC) Subject: rpms/gpixpod/devel gpixpod.spec,1.6,1.7 Message-ID: <20090725010824.AD90311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpixpod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17605 Modified Files: gpixpod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpixpod.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpixpod/devel/gpixpod.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gpixpod.spec 25 Feb 2009 00:35:55 -0000 1.6 +++ gpixpod.spec 25 Jul 2009 01:08:24 -0000 1.7 @@ -3,7 +3,7 @@ Summary: An ipod photo organizer Name: gpixpod Version: 0.6.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Multimedia License: GPLv2+ URL: http://www.gpixpod.org @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man1/gpixpod.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:18:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:18:05 +0000 (UTC) Subject: rpms/gpm/devel gpm.spec,1.74,1.75 Message-ID: <20090725011806.01A1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20588 Modified Files: gpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpm/devel/gpm.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- gpm.spec 14 Apr 2009 07:43:44 -0000 1.74 +++ gpm.spec 25 Jul 2009 01:18:05 -0000 1.75 @@ -1,7 +1,7 @@ Summary: A mouse server for the Linux console Name: gpm Version: 1.20.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://unix.schottelius.org/gpm/ @@ -154,6 +154,9 @@ fi %{_libdir}/libgpm.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.20.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Zdenek Prikryl 1.20.6-3 - created new subpackage gpm-libs (#495124) From jkeating at fedoraproject.org Sat Jul 25 01:18:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:18:21 +0000 (UTC) Subject: rpms/gpodder/devel gpodder.spec,1.29,1.30 Message-ID: <20090725011821.319CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpodder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20782 Modified Files: gpodder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpodder.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpodder/devel/gpodder.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- gpodder.spec 2 Jul 2009 17:09:45 -0000 1.29 +++ gpodder.spec 25 Jul 2009 01:18:21 -0000 1.30 @@ -3,7 +3,7 @@ Name: gpodder Version: 0.16.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Podcast receiver/catcher written in Python Group: Applications/Multimedia @@ -78,6 +78,9 @@ fi %{python_sitelib}/%{name}*.egg-info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 2 2009 - 0.16.1-2 jpaleta - feedparser buildrequires fix From jkeating at fedoraproject.org Sat Jul 25 01:18:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:18:36 +0000 (UTC) Subject: rpms/gpp/devel gpp.spec,1.8,1.9 Message-ID: <20090725011836.D3E9111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20944 Modified Files: gpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpp/devel/gpp.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gpp.spec 25 Feb 2009 00:37:41 -0000 1.8 +++ gpp.spec 25 Jul 2009 01:18:36 -0000 1.9 @@ -3,7 +3,7 @@ Summary: GNOME Photo Printer Name: gpp Version: 0.7.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.fogman.de/?GnomePhotoPrinter Source: http://www.fogman.de/%{name}/%{name}-%{version}.tar.gz Source1: %{longname}.desktop @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:18:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:18:51 +0000 (UTC) Subject: rpms/gpp4/devel gpp4.spec,1.7,1.8 Message-ID: <20090725011852.0262811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpp4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21091 Modified Files: gpp4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpp4.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpp4/devel/gpp4.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gpp4.spec 4 Jun 2009 15:49:17 -0000 1.7 +++ gpp4.spec 25 Jul 2009 01:18:51 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Library providing specific CCP4 functionality Name: gpp4 Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 Group: System Environment/Libraries URL: http://www.bioxray.au.dk/~mok/%{name} @@ -108,6 +108,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Tim Fenn - 1.1.0-3 - add ARM patch to ccp4_sysdep (Jitesh Shah) From jkeating at fedoraproject.org Sat Jul 25 01:19:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:19:12 +0000 (UTC) Subject: rpms/gpredict/devel gpredict.spec,1.16,1.17 Message-ID: <20090725011912.E0E3711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpredict/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21569 Modified Files: gpredict.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpredict.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpredict/devel/gpredict.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- gpredict.spec 24 Mar 2009 16:26:52 -0000 1.16 +++ gpredict.spec 25 Jul 2009 01:19:12 -0000 1.17 @@ -1,6 +1,6 @@ Name: gpredict Version: 0.9.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Real-time satellite tracking and orbit prediction program Group: Applications/Communications License: GPLv2+ @@ -80,6 +80,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 0.9.0-4 - Fix up the menu entry for Astronomy menus From jkeating at fedoraproject.org Sat Jul 25 01:19:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:19:26 +0000 (UTC) Subject: rpms/gprolog/devel gprolog.spec,1.25,1.26 Message-ID: <20090725011926.D079211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gprolog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22069 Modified Files: gprolog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gprolog.spec =================================================================== RCS file: /cvs/pkgs/rpms/gprolog/devel/gprolog.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gprolog.spec 24 May 2009 18:19:26 -0000 1.25 +++ gprolog.spec 25 Jul 2009 01:19:26 -0000 1.26 @@ -1,6 +1,6 @@ Name: gprolog Version: 1.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNU Prolog is a free Prolog compiler Group: Development/Languages @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Jochen Schmitt 1.3.1-4 - Fix dependency issue From jkeating at fedoraproject.org Sat Jul 25 01:19:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:19:40 +0000 (UTC) Subject: rpms/gpsbabel/devel gpsbabel.spec,1.6,1.7 Message-ID: <20090725011940.6B74111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsbabel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22392 Modified Files: gpsbabel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsbabel.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsbabel/devel/gpsbabel.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gpsbabel.spec 25 Feb 2009 00:41:28 -0000 1.6 +++ gpsbabel.spec 25 Jul 2009 01:19:40 -0000 1.7 @@ -1,6 +1,6 @@ Name: gpsbabel Version: 1.3.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool to convert between various formats used by GPS devices Group: Applications/Text @@ -51,6 +51,9 @@ make %{?_smp_mflags} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:19:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:19:54 +0000 (UTC) Subject: rpms/gpscorrelate/devel gpscorrelate.spec,1.1,1.2 Message-ID: <20090725011954.445C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpscorrelate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22549 Modified Files: gpscorrelate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpscorrelate.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpscorrelate/devel/gpscorrelate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gpscorrelate.spec 18 Apr 2009 14:10:56 -0000 1.1 +++ gpscorrelate.spec 25 Jul 2009 01:19:54 -0000 1.2 @@ -2,7 +2,7 @@ Name: gpscorrelate Version: 1.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GPS photo correlation / geotagging tool Group: Applications/Productivity @@ -74,6 +74,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Till Maas - 1.6.0-2 - Move icon installation into Makefile to get upstreamable patch From jkeating at fedoraproject.org Sat Jul 25 01:20:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:20:42 +0000 (UTC) Subject: rpms/gpsd/devel gpsd.spec,1.30,1.31 Message-ID: <20090725012042.504C411C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22875 Modified Files: gpsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsd/devel/gpsd.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gpsd.spec 31 Mar 2009 15:48:00 -0000 1.30 +++ gpsd.spec 25 Jul 2009 01:20:42 -0000 1.31 @@ -2,7 +2,7 @@ Name: gpsd Version: 2.39 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Service daemon for mediating access to a GPS Group: System Environment/Daemons @@ -229,6 +229,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.39-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Tom "spot" Callaway - 2.39-3 - some of the gpsd client bits went into gpsdclient.h, but that file wasn't getting installed specifically, viking needs that header to build. From jkeating at fedoraproject.org Sat Jul 25 01:20:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:20:58 +0000 (UTC) Subject: rpms/gpsdrive/devel gpsdrive.spec,1.7,1.8 Message-ID: <20090725012058.1904511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsdrive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23034 Modified Files: gpsdrive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsdrive.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsdrive/devel/gpsdrive.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gpsdrive.spec 29 Jun 2009 01:53:49 -0000 1.7 +++ gpsdrive.spec 25 Jul 2009 01:20:57 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A GPS based navigation tool Name: gpsdrive Version: 2.10 -Release: 0.1.pre7%{?dist} +Release: 0.2.pre7%{?dist} License: GPLv2+ Group: Applications/Productivity URL: http://www.gpsdrive.de/index.shtml @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorlib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10-0.2.pre7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Kevin Fenzi - 2.10-0.1.pre7 - update to 2.10pre7 From jkeating at fedoraproject.org Sat Jul 25 01:21:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:21:10 +0000 (UTC) Subject: rpms/gpshell/devel gpshell.spec,1.2,1.3 Message-ID: <20090725012110.E9C5611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpshell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23237 Modified Files: gpshell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpshell.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpshell/devel/gpshell.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gpshell.spec 25 Feb 2009 00:44:19 -0000 1.2 +++ gpshell.spec 25 Jul 2009 01:21:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: gpshell Version: 1.4.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Manage applets on GlobalPlatform and OpenPlatform smart cards Group: Development/Tools License: GPLv3+ @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:21:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:21:25 +0000 (UTC) Subject: rpms/gpsim/devel gpsim.spec,1.25,1.26 Message-ID: <20090725012125.3AAA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23474 Modified Files: gpsim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsim/devel/gpsim.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gpsim.spec 21 Mar 2009 05:05:13 -0000 1.25 +++ gpsim.spec 25 Jul 2009 01:21:24 -0000 1.26 @@ -1,6 +1,6 @@ Name: gpsim Version: 0.23.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simulator for Microchip (TM) PIC (TM) microcontrollers Summary(fr): Un simulateur pour les microcontr?leurs PIC (TM) Microchip (TM) @@ -89,6 +89,9 @@ autoconf %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.23.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Roy Rankin 0.23.0-4 - upstream release of gpsim 0.23.0 - bug fixes and see ANNOUNCE for new features and processors. From jkeating at fedoraproject.org Sat Jul 25 01:21:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:21:39 +0000 (UTC) Subject: rpms/gpsk31/devel gpsk31.spec,1.4,1.5 Message-ID: <20090725012139.0408311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsk31/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23619 Modified Files: gpsk31.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsk31.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsk31/devel/gpsk31.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gpsk31.spec 25 Feb 2009 00:46:14 -0000 1.4 +++ gpsk31.spec 25 Jul 2009 01:21:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: gpsk31 Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PSK31 for Linux with a GTK+ Interface Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/gpsk31.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:22:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:22:02 +0000 (UTC) Subject: rpms/gpsman/devel gpsman.spec,1.4,1.5 Message-ID: <20090725012202.0242D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpsman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23782 Modified Files: gpsman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpsman.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpsman/devel/gpsman.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gpsman.spec 25 Feb 2009 00:47:13 -0000 1.4 +++ gpsman.spec 25 Jul 2009 01:22:01 -0000 1.5 @@ -1,6 +1,6 @@ Name: gpsman Version: 6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GPS manager Group: Applications/Communications @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:22:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:22:17 +0000 (UTC) Subject: rpms/gputils/devel gputils.spec,1.17,1.18 Message-ID: <20090725012217.B467C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gputils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24022 Modified Files: gputils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gputils.spec =================================================================== RCS file: /cvs/pkgs/rpms/gputils/devel/gputils.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gputils.spec 3 May 2009 22:12:15 -0000 1.17 +++ gputils.spec 25 Jul 2009 01:22:16 -0000 1.18 @@ -1,6 +1,6 @@ Name: gputils Version: 0.13.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Development utilities for Microchip (TM) PIC (TM) microcontrollers Summary(fr): Outils de d?veloppement pour les microcontr?leurs PIC (TM) de Microchip (TM) @@ -52,6 +52,9 @@ Voir la documentation pour une liste ? %{_mandir}/fr/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Roy Rankin 0.13.7-1 - New upstream version with Added support for all processors supported by MPLAB 8.20 (except eeprom16 and related). From jkeating at fedoraproject.org Sat Jul 25 01:22:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:22:32 +0000 (UTC) Subject: rpms/gpxe/devel gpxe.spec,1.3,1.4 Message-ID: <20090725012232.D487E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gpxe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24198 Modified Files: gpxe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gpxe.spec =================================================================== RCS file: /cvs/pkgs/rpms/gpxe/devel/gpxe.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gpxe.spec 20 May 2009 00:04:40 -0000 1.3 +++ gpxe.spec 25 Jul 2009 01:22:32 -0000 1.4 @@ -9,7 +9,7 @@ Name: gpxe Version: 0.9.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A network boot loader Group: System Environment/Base @@ -141,6 +141,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Matt Domsch - 0.9.7-4 - add undionly.kpxe to -bootimgs From jkeating at fedoraproject.org Sat Jul 25 01:22:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:22:49 +0000 (UTC) Subject: rpms/gq/devel gq.spec,1.12,1.13 Message-ID: <20090725012249.3ACF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24364 Modified Files: gq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gq.spec =================================================================== RCS file: /cvs/pkgs/rpms/gq/devel/gq.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gq.spec 25 Feb 2009 00:49:14 -0000 1.12 +++ gq.spec 25 Jul 2009 01:22:49 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Graphical LDAP directory browser and editor Name: gq Version: 1.3.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.gq-project.org/ @@ -89,6 +89,9 @@ fi %dir %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:23:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:23:04 +0000 (UTC) Subject: rpms/gquilt/devel gquilt.spec,1.14,1.15 Message-ID: <20090725012304.425B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gquilt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24548 Modified Files: gquilt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gquilt.spec =================================================================== RCS file: /cvs/pkgs/rpms/gquilt/devel/gquilt.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gquilt.spec 25 Feb 2009 00:50:14 -0000 1.14 +++ gquilt.spec 25 Jul 2009 01:23:04 -0000 1.15 @@ -1,6 +1,6 @@ Name: gquilt Version: 0.20 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Development/Tools Summary: PyGTK GUI wrapper for quilt @@ -51,6 +51,9 @@ desktop-file-install --vendor fedora --d rm -rf "$RPM_BUILD_ROOT" %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:23:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:23:18 +0000 (UTC) Subject: rpms/gqview/devel gqview.spec,1.25,1.26 Message-ID: <20090725012318.A7DD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gqview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24703 Modified Files: gqview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gqview.spec =================================================================== RCS file: /cvs/pkgs/rpms/gqview/devel/gqview.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gqview.spec 25 Feb 2009 00:51:24 -0000 1.25 +++ gqview.spec 25 Jul 2009 01:23:18 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Image browser and viewer Name: gqview Version: 2.0.4 -Release: 10 +Release: 11 License: GPLv2 Group: User Interface/X Source: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:23:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:23:33 +0000 (UTC) Subject: rpms/grace/devel grace.spec,1.28,1.29 Message-ID: <20090725012333.B5DBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24887 Modified Files: grace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grace.spec =================================================================== RCS file: /cvs/pkgs/rpms/grace/devel/grace.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- grace.spec 21 Jul 2009 08:44:56 -0000 1.28 +++ grace.spec 25 Jul 2009 01:23:33 -0000 1.29 @@ -3,7 +3,7 @@ Name: grace Version: 5.1.22 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Numerical Data Processing and Visualization Tool License: GPLv2+ @@ -226,6 +226,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1.22-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Jos? Matos - 5.1.22-4 - Fix #504413 (remove last newline in FontDataBase) From jkeating at fedoraproject.org Sat Jul 25 01:23:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:23:51 +0000 (UTC) Subject: rpms/grads/devel grads.spec,1.27,1.28 Message-ID: <20090725012351.D9E8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25112 Modified Files: grads.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grads.spec =================================================================== RCS file: /cvs/pkgs/rpms/grads/devel/grads.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- grads.spec 23 Jul 2009 03:08:36 -0000 1.27 +++ grads.spec 25 Jul 2009 01:23:51 -0000 1.28 @@ -1,6 +1,6 @@ Name: grads Version: 1.9b4 -Release: 27%{?dist} +Release: 28%{?dist} Summary: Tool for easy acces, manipulation, and visualization of data Group: Applications/Engineering @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9b4-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 1.9b4-27 - Rebuild for new libdap From jkeating at fedoraproject.org Sat Jul 25 01:24:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:24:07 +0000 (UTC) Subject: rpms/gramps/devel gramps.spec,1.46,1.47 Message-ID: <20090725012407.0708111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gramps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25291 Modified Files: gramps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gramps.spec =================================================================== RCS file: /cvs/pkgs/rpms/gramps/devel/gramps.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- gramps.spec 27 Mar 2009 04:43:27 -0000 1.46 +++ gramps.spec 25 Jul 2009 01:24:06 -0000 1.47 @@ -1,6 +1,6 @@ Name: gramps Version: 3.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Genealogical Research and Analysis Management Programming System Group: Applications/Productivity @@ -122,6 +122,9 @@ fi %{_mandir}/man1/%{name}.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Warren Togami - 3.1.1-3 - frefont -> gnu-free* automatic detected for Fedora 11+ Turns out gramps used them during PDF chart generation. From jkeating at fedoraproject.org Sat Jul 25 01:24:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:24:20 +0000 (UTC) Subject: rpms/granule/devel granule.spec,1.13,1.14 Message-ID: <20090725012420.CEA5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/granule/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25421 Modified Files: granule.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: granule.spec =================================================================== RCS file: /cvs/pkgs/rpms/granule/devel/granule.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- granule.spec 25 Feb 2009 00:55:10 -0000 1.13 +++ granule.spec 25 Jul 2009 01:24:20 -0000 1.14 @@ -4,7 +4,7 @@ Summary: Flashcards program based on Leitner methodology Name: granule Version: 1.4.0 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://granule.sourceforge.net/ @@ -70,6 +70,9 @@ desktop-file-install --vendor "" \ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:24:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:24:35 +0000 (UTC) Subject: rpms/graphviz/devel graphviz.spec,1.57,1.58 Message-ID: <20090725012435.ED9DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/graphviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25574 Modified Files: graphviz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: graphviz.spec =================================================================== RCS file: /cvs/pkgs/rpms/graphviz/devel/graphviz.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- graphviz.spec 13 Jul 2009 16:36:55 -0000 1.57 +++ graphviz.spec 25 Jul 2009 01:24:35 -0000 1.58 @@ -4,7 +4,7 @@ Name: graphviz Summary: Graph Visualization Tools Version: 2.20.3 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 Group: Applications/Multimedia License: CPL URL: http://www.graphviz.org/ @@ -408,6 +408,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.20.3-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet 2.20.3-4.1 - fix mistake in make rtest fix From jkeating at fedoraproject.org Sat Jul 25 01:24:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:24:51 +0000 (UTC) Subject: rpms/grass/devel grass.spec,1.26,1.27 Message-ID: <20090725012451.0649B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25720 Modified Files: grass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grass.spec =================================================================== RCS file: /cvs/pkgs/rpms/grass/devel/grass.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- grass.spec 23 Mar 2009 21:28:15 -0000 1.26 +++ grass.spec 25 Jul 2009 01:24:50 -0000 1.27 @@ -1,6 +1,6 @@ Name: grass Version: 6.3.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GRASS - Geographic Resources Analysis Support System Group: Applications/Engineering License: GPLv2 @@ -331,6 +331,9 @@ rm -rf %{buildroot} %{_libdir}/libgrass_*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.3.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Lubomir Rintel - 6.3.0-12 - Fix build with GCC 4.4 From jkeating at fedoraproject.org Sat Jul 25 01:25:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:25:05 +0000 (UTC) Subject: rpms/grc/devel grc.spec,1.4,1.5 Message-ID: <20090725012505.A222D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25867 Modified Files: grc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grc.spec =================================================================== RCS file: /cvs/pkgs/rpms/grc/devel/grc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- grc.spec 24 Mar 2009 16:21:27 -0000 1.4 +++ grc.spec 25 Jul 2009 01:25:05 -0000 1.5 @@ -1,6 +1,6 @@ Name: grc Version: 0.70 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GUI for Gnuradio Group: Applications/Engineering @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-grc.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.70-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 0.70-5 - Fix the categories and icon location From jkeating at fedoraproject.org Sat Jul 25 01:25:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:25:20 +0000 (UTC) Subject: rpms/greadelf/devel greadelf.spec,1.5,1.6 Message-ID: <20090725012520.9291A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/greadelf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26029 Modified Files: greadelf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: greadelf.spec =================================================================== RCS file: /cvs/pkgs/rpms/greadelf/devel/greadelf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- greadelf.spec 25 Feb 2009 00:58:47 -0000 1.5 +++ greadelf.spec 25 Jul 2009 01:25:20 -0000 1.6 @@ -1,6 +1,6 @@ Name: greadelf Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Wrapper tool for eu-readelf Group: Development/Tools License: GPLv2 @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:25:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:25:36 +0000 (UTC) Subject: rpms/grep/devel grep.spec,1.76,1.77 Message-ID: <20090725012536.050B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26167 Modified Files: grep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grep.spec =================================================================== RCS file: /cvs/pkgs/rpms/grep/devel/grep.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- grep.spec 25 Feb 2009 00:59:40 -0000 1.76 +++ grep.spec 25 Jul 2009 01:25:35 -0000 1.77 @@ -3,7 +3,7 @@ Summary: Pattern matching utilities Name: grep Version: 2.5.3 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Text Source: ftp://ftp.gnu.org/pub/gnu/grep/grep-%{version}.tar.bz2 @@ -74,6 +74,9 @@ fi %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.5.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:25:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:25:55 +0000 (UTC) Subject: rpms/grepmail/devel grepmail.spec,1.10,1.11 Message-ID: <20090725012555.B265A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grepmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26326 Modified Files: grepmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grepmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/grepmail/devel/grepmail.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- grepmail.spec 25 Feb 2009 01:00:33 -0000 1.10 +++ grepmail.spec 25 Jul 2009 01:25:55 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Search mailboxes for a particular email Name: grepmail Version: 5.3033 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: Applications/Text Url: http://grepmail.sourceforge.net/ @@ -52,6 +52,9 @@ export TZ=GMT0 %{_mandir}/man1/grepmail.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.3033-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 5.3033-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:26:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:26:10 +0000 (UTC) Subject: rpms/gresistor/devel gresistor.spec,1.8,1.9 Message-ID: <20090725012610.B7F5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gresistor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26471 Modified Files: gresistor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gresistor.spec =================================================================== RCS file: /cvs/pkgs/rpms/gresistor/devel/gresistor.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gresistor.spec 25 Feb 2009 01:01:26 -0000 1.8 +++ gresistor.spec 25 Jul 2009 01:26:10 -0000 1.9 @@ -2,7 +2,7 @@ Name: gresistor Version: 0.0.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Gnome resistor color code calculator License: GPL+ @@ -70,6 +70,9 @@ update-desktop-database &> /dev/null ||: %{python_sitelib}/%{name}-%{version}-py?.?.egg-info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:26:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:26:25 +0000 (UTC) Subject: rpms/gresolver/devel gresolver.spec,1.4,1.5 Message-ID: <20090725012625.D0D5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gresolver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26603 Modified Files: gresolver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gresolver.spec =================================================================== RCS file: /cvs/pkgs/rpms/gresolver/devel/gresolver.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gresolver.spec 15 Jun 2009 16:13:19 -0000 1.4 +++ gresolver.spec 25 Jul 2009 01:26:25 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Graphical DNS query tool Name: gresolver Version: 0.0.5 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPLv2+ or Artistic @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Jochen Schmitt 0.0.5-5 - Add forgotten Req. perl-gettext (#504960) From jkeating at fedoraproject.org Sat Jul 25 01:26:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:26:40 +0000 (UTC) Subject: rpms/greyhounds/devel greyhounds.spec,1.2,1.3 Message-ID: <20090725012640.AACCB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/greyhounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26751 Modified Files: greyhounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: greyhounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/greyhounds/devel/greyhounds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- greyhounds.spec 25 Feb 2009 01:03:12 -0000 1.2 +++ greyhounds.spec 25 Jul 2009 01:26:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: greyhounds Version: 0.8 -Release: 0.4.prealpha%{?dist} +Release: 0.5.prealpha%{?dist} Summary: Greyhounds is a greyhounds racing and breeding game Summary(pl): Greyhounds to wy?cigi i hodowla chart?w Group: Amusements/Games @@ -83,6 +83,9 @@ fi %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-0.5.prealpha +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8-0.4.prealpha - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:26:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:26:55 +0000 (UTC) Subject: rpms/greylistd/devel greylistd.spec,1.6,1.7 Message-ID: <20090725012655.B5B5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/greylistd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26900 Modified Files: greylistd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: greylistd.spec =================================================================== RCS file: /cvs/pkgs/rpms/greylistd/devel/greylistd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- greylistd.spec 25 Feb 2009 01:04:05 -0000 1.6 +++ greylistd.spec 25 Jul 2009 01:26:55 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Greylisting daemon Name: greylistd Version: 0.8.7 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: ftp://ftp.debian.org/debian/pool/main/g/greylistd/%{name}_%{version}.tar.gz @@ -85,6 +85,9 @@ rm -rf %{buildroot} %attr(0644,greylistd,greylistd) %ghost %verify(not mtime size md5) /var/run/greylistd/socket %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.7-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.7-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:27:10 +0000 (UTC) Subject: rpms/grfcodec/devel grfcodec.spec,1.1,1.2 Message-ID: <20090725012710.0726311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grfcodec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27053 Modified Files: grfcodec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grfcodec.spec =================================================================== RCS file: /cvs/pkgs/rpms/grfcodec/devel/grfcodec.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- grfcodec.spec 7 May 2009 03:17:43 -0000 1.1 +++ grfcodec.spec 25 Jul 2009 01:27:09 -0000 1.2 @@ -1,6 +1,6 @@ Name: grfcodec Version: 0.9.11 -Release: 0.2.r2111%{?dist} +Release: 0.3.r2111%{?dist} Summary: A suite of programs to modify Transport Tycoon Deluxe's GRF files Group: Development/Tools License: GPLv2+ @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-0.3.r2111 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Iain Arnell 0.9.11-0.2.r2111 - fix license tag (GPLv2+) - don't pass -O3 to gcc From jkeating at fedoraproject.org Sat Jul 25 01:27:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:27:25 +0000 (UTC) Subject: rpms/grhino/devel grhino.spec,1.16,1.17 Message-ID: <20090725012725.1CF8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grhino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27221 Modified Files: grhino.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grhino.spec =================================================================== RCS file: /cvs/pkgs/rpms/grhino/devel/grhino.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- grhino.spec 25 Feb 2009 01:04:58 -0000 1.16 +++ grhino.spec 25 Jul 2009 01:27:24 -0000 1.17 @@ -1,6 +1,6 @@ Name: grhino Version: 0.16.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Reversi game for GNOME, supporting the Go/Game Text Protocol Group: Amusements/Games @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.16.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:27:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:27:39 +0000 (UTC) Subject: rpms/grib_api/devel grib_api.spec,1.7,1.8 Message-ID: <20090725012739.12ACA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grib_api/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27381 Modified Files: grib_api.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grib_api.spec =================================================================== RCS file: /cvs/pkgs/rpms/grib_api/devel/grib_api.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- grib_api.spec 4 Apr 2009 14:53:49 -0000 1.7 +++ grib_api.spec 25 Jul 2009 01:27:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: grib_api Version: 1.7.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: WMO FM-92 GRIB (v1,v2) interface accessible from C and FORTRAN programs Group: Applications/System @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Jeroen van Meeuwen - 1.7.0-3 - Fix file conflict (#492936) From jkeating at fedoraproject.org Sat Jul 25 01:27:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:27:54 +0000 (UTC) Subject: rpms/grid-packaging-tools/devel grid-packaging-tools.spec,1.3,1.4 Message-ID: <20090725012754.F11FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grid-packaging-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27565 Modified Files: grid-packaging-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grid-packaging-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/grid-packaging-tools/devel/grid-packaging-tools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- grid-packaging-tools.spec 27 May 2009 04:27:35 -0000 1.3 +++ grid-packaging-tools.spec 25 Jul 2009 01:27:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: grid-packaging-tools Version: 3.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Grid Packaging Tools (GPT) Group: Development/Tools @@ -165,6 +165,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorlib}/Grid %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Mattias Ellert - 3.2-18 - Make GPT work with automake 1.11 From jkeating at fedoraproject.org Sat Jul 25 01:28:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:28:12 +0000 (UTC) Subject: rpms/gridengine/devel gridengine.spec,1.18,1.19 Message-ID: <20090725012812.825B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gridengine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27773 Modified Files: gridengine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gridengine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gridengine/devel/gridengine.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gridengine.spec 17 Jul 2009 21:26:01 -0000 1.18 +++ gridengine.spec 25 Jul 2009 01:28:12 -0000 1.19 @@ -6,7 +6,7 @@ Name: gridengine Version: 6.2u3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Grid Engine - Distributed Computing Management software Group: Applications/System @@ -540,6 +540,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.2u3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 14 2009 - Orion Poplawski - 6.2u3-1 - Update to 6.2u3 - Drop ppc patch fixed upstream From jkeating at fedoraproject.org Sat Jul 25 01:28:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:28:28 +0000 (UTC) Subject: rpms/gridloc/devel gridloc.spec,1.3,1.4 Message-ID: <20090725012828.BDFC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gridloc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27949 Modified Files: gridloc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gridloc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gridloc/devel/gridloc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gridloc.spec 26 Feb 2009 18:36:57 -0000 1.3 +++ gridloc.spec 25 Jul 2009 01:28:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: gridloc Version: 0.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A ncurses console application for the calculation of Maidenhead QRA Locators Group: Applications/Communications @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Lucian Langa - 0.6-7 - upstream modified current release source From jkeating at fedoraproject.org Sat Jul 25 01:28:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:28:42 +0000 (UTC) Subject: rpms/griffith/devel griffith.spec,1.1,1.2 Message-ID: <20090725012842.C817611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/griffith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28111 Modified Files: griffith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: griffith.spec =================================================================== RCS file: /cvs/pkgs/rpms/griffith/devel/griffith.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- griffith.spec 17 Apr 2009 19:27:50 -0000 1.1 +++ griffith.spec 25 Jul 2009 01:28:42 -0000 1.2 @@ -2,7 +2,7 @@ Name: griffith Version: 0.10 -Release: 0.1.%{beta}%{?dist} +Release: 0.2.%{beta}%{?dist} Summary: Media collection manager Group: Applications/Multimedia @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-0.2.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Simon Wesp - 0.10-0.1.beta2 - Update to 0.10-beta2 to avoid crappy issues with sqlalchemy - Remove binary mo-files and build it from source From jkeating at fedoraproject.org Sat Jul 25 01:28:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:28:56 +0000 (UTC) Subject: rpms/grig/devel grig.spec,1.6,1.7 Message-ID: <20090725012856.C25A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28259 Modified Files: grig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grig.spec =================================================================== RCS file: /cvs/pkgs/rpms/grig/devel/grig.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- grig.spec 25 Feb 2009 01:09:15 -0000 1.6 +++ grig.spec 25 Jul 2009 01:28:56 -0000 1.7 @@ -1,7 +1,7 @@ Name: grig Version: 0.7.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Ham Radio Control graphical user interface Group: Applications/Communications @@ -69,6 +69,9 @@ update-desktop-database > /dev/null 2>&1 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:29:11 +0000 (UTC) Subject: rpms/grin/devel grin.spec,1.1,1.2 Message-ID: <20090725012911.00E5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28417 Modified Files: grin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grin.spec =================================================================== RCS file: /cvs/pkgs/rpms/grin/devel/grin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- grin.spec 27 Feb 2009 18:16:50 -0000 1.1 +++ grin.spec 25 Jul 2009 01:29:10 -0000 1.2 @@ -4,7 +4,7 @@ Summary: Grep-like tool for source code Name: grin Version: 1.1.1 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Applications/Text URL: http://pypi.python.org/pypi/grin @@ -59,6 +59,9 @@ nosetests %{python_sitelib}/%{name}-%{version}-py%{pyver}.egg-info/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 21 2009 Terje Rosten - 1.1.1-2 - add docs - rpmlint clean From jkeating at fedoraproject.org Sat Jul 25 01:29:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:29:25 +0000 (UTC) Subject: rpms/grip/devel grip.spec,1.28,1.29 Message-ID: <20090725012925.DCB1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28572 Modified Files: grip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grip.spec =================================================================== RCS file: /cvs/pkgs/rpms/grip/devel/grip.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- grip.spec 25 Feb 2009 01:10:08 -0000 1.28 +++ grip.spec 25 Jul 2009 01:29:25 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Front-end for CD rippers and Ogg Vorbis encoders Name: grip Version: 3.2.0 -Release: 26%{?dist} +Release: 27%{?dist} Epoch: 1 License: GPLv2+ Group: Applications/Multimedia @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.2.0-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:3.2.0-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:29:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:29:40 +0000 (UTC) Subject: rpms/grisbi/devel grisbi.spec,1.22,1.23 Message-ID: <20090725012940.859FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grisbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28739 Modified Files: grisbi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grisbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/grisbi/devel/grisbi.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- grisbi.spec 25 Feb 2009 01:11:04 -0000 1.22 +++ grisbi.spec 25 Jul 2009 01:29:40 -0000 1.23 @@ -1,7 +1,7 @@ %define GRISBI_HELP_DIR %{_datadir}/doc/%{name}/help Name: grisbi Version: 0.5.9 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Personal finances manager Group: Applications/Productivity @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %{_datadir}/doc/%{name}/help/fr/grisbi-manuel.html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.9-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.9-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:29:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:29:54 +0000 (UTC) Subject: rpms/griv/devel griv.spec,1.3,1.4 Message-ID: <20090725012954.B4CE911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/griv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28883 Modified Files: griv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: griv.spec =================================================================== RCS file: /cvs/pkgs/rpms/griv/devel/griv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- griv.spec 16 Apr 2009 11:03:58 -0000 1.3 +++ griv.spec 25 Jul 2009 01:29:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: griv Version: 0.1.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A GTK-Chat based on the RIV-Chat-protocol Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Karsten Hopp 0.1.9-6 - remove buildrequirement xorg-x11-server-devel for s390x From jkeating at fedoraproject.org Sat Jul 25 01:30:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:30:09 +0000 (UTC) Subject: rpms/grnotify/devel grnotify.spec,1.2,1.3 Message-ID: <20090725013009.C192D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grnotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29051 Modified Files: grnotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grnotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/grnotify/devel/grnotify.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- grnotify.spec 9 Apr 2009 06:21:12 -0000 1.2 +++ grnotify.spec 25 Jul 2009 01:30:09 -0000 1.3 @@ -2,7 +2,7 @@ Name: grnotify Version: 1.1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Google Reader Notifier Group: Applications/Internet @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Guillaume Kulakowski - 1.1.2-6 - Add patch for fix GReader URL From jkeating at fedoraproject.org Sat Jul 25 01:30:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:30:32 +0000 (UTC) Subject: rpms/groff/devel groff.spec,1.64,1.65 Message-ID: <20090725013032.B8A7A11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/groff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29228 Modified Files: groff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: groff.spec =================================================================== RCS file: /cvs/pkgs/rpms/groff/devel/groff.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- groff.spec 25 Feb 2009 01:12:58 -0000 1.64 +++ groff.spec 25 Jul 2009 01:30:32 -0000 1.65 @@ -3,7 +3,7 @@ Summary: A document formatting system Name: groff Version: 1.18.1.4 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2 and GFDL Group: Applications/Publishing URL: http://groff.ffii.org @@ -224,6 +224,9 @@ exit 0 %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18.1.4-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.18.1.4-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:30:46 +0000 (UTC) Subject: rpms/gromacs/devel gromacs.spec,1.12,1.13 Message-ID: <20090725013046.9DB0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gromacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29389 Modified Files: gromacs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gromacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gromacs/devel/gromacs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gromacs.spec 22 May 2009 09:30:08 -0000 1.12 +++ gromacs.spec 25 Jul 2009 01:30:46 -0000 1.13 @@ -1,6 +1,6 @@ Name: gromacs Version: 4.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast, Free and Flexible Molecular Dynamics Group: Applications/Engineering License: GPLv2+ @@ -762,6 +762,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Jussi Lehtola - 4.0.5-1 - Update to 4.0.5. - Change spec %%defines to %%globals. From jkeating at fedoraproject.org Sat Jul 25 01:31:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:31:00 +0000 (UTC) Subject: rpms/grsync/devel grsync.spec,1.10,1.11 Message-ID: <20090725013100.4933A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29541 Modified Files: grsync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grsync.spec =================================================================== RCS file: /cvs/pkgs/rpms/grsync/devel/grsync.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- grsync.spec 1 Jul 2009 13:14:50 -0000 1.10 +++ grsync.spec 25 Jul 2009 01:31:00 -0000 1.11 @@ -1,6 +1,6 @@ Name: grsync Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Gtk+ GUI for rsync Group: User Interface/Desktops @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Sebastian Vahl - 0.9.1-1 - new upstream release From jkeating at fedoraproject.org Sat Jul 25 01:31:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:31:36 +0000 (UTC) Subject: rpms/grub/devel grub.spec,1.101,1.102 Message-ID: <20090725013136.9C99111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grub/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29787 Modified Files: grub.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grub.spec =================================================================== RCS file: /cvs/pkgs/rpms/grub/devel/grub.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- grub.spec 10 Jul 2009 14:24:57 -0000 1.101 +++ grub.spec 25 Jul 2009 01:31:36 -0000 1.102 @@ -1,6 +1,6 @@ Name: grub Version: 0.97 -Release: 54%{?dist} +Release: 55%{?dist} Summary: Grand Unified Boot Loader. Group: System Environment/Base License: GPLv2+ @@ -136,6 +136,9 @@ fi %{_datadir}/grub %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.97-55 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Peter Jones - 0.97-54 - Add support for partitionable md devices. From jkeating at fedoraproject.org Sat Jul 25 01:31:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:31:50 +0000 (UTC) Subject: rpms/grub2/devel grub2.spec,1.6,1.7 Message-ID: <20090725013150.934EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grub2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29929 Modified Files: grub2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grub2.spec =================================================================== RCS file: /cvs/pkgs/rpms/grub2/devel/grub2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- grub2.spec 1 Mar 2009 13:15:33 -0000 1.6 +++ grub2.spec 25 Jul 2009 01:31:50 -0000 1.7 @@ -38,7 +38,7 @@ Name: grub2 Version: 1.98 -Release: 0.5.20080827svn%{?dist} +Release: 0.6.20080827svn%{?dist} Summary: Bootloader with support for Linux, Multiboot and more Group: System Environment/Base @@ -226,6 +226,9 @@ update-%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.98-0.6.20080827svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Lubomir Rintel - 1.98-0.4.20080827svn - Add missing BR From jkeating at fedoraproject.org Sat Jul 25 01:32:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:32:04 +0000 (UTC) Subject: rpms/grubby/devel grubby.spec,1.2,1.3 Message-ID: <20090725013204.7AF9F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/grubby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30070 Modified Files: grubby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: grubby.spec =================================================================== RCS file: /cvs/pkgs/rpms/grubby/devel/grubby.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- grubby.spec 17 Jul 2009 14:02:58 -0000 1.2 +++ grubby.spec 25 Jul 2009 01:32:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: grubby Version: 7.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line tool for updating bootloader configs Group: System Environment/Base License: GPLv2+ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Jeremy Katz - 7.0.1-1 - Fix blkid usage (#124246) From jkeating at fedoraproject.org Sat Jul 25 01:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:32:18 +0000 (UTC) Subject: rpms/gscan2pdf/devel gscan2pdf.spec,1.30,1.31 Message-ID: <20090725013218.7985A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gscan2pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30228 Modified Files: gscan2pdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gscan2pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/gscan2pdf/devel/gscan2pdf.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gscan2pdf.spec 25 Feb 2009 01:17:53 -0000 1.30 +++ gscan2pdf.spec 25 Jul 2009 01:32:18 -0000 1.31 @@ -1,6 +1,6 @@ Name: gscan2pdf Version: 0.9.27 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GUI for producing a multipage PDF from a scan Group: Applications/Publishing @@ -81,6 +81,9 @@ fi %{_mandir}/man1/*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.27-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.27-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:32:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:32:32 +0000 (UTC) Subject: rpms/gsf-sharp/devel gsf-sharp.spec,1.27,1.28 Message-ID: <20090725013232.6AD0611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsf-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30377 Modified Files: gsf-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsf-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsf-sharp/devel/gsf-sharp.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gsf-sharp.spec 25 Feb 2009 01:18:46 -0000 1.27 +++ gsf-sharp.spec 25 Jul 2009 01:32:32 -0000 1.28 @@ -1,6 +1,6 @@ Name: gsf-sharp Version: 0.8.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Mono bindings for libgsf Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gsf-sharp.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:32:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:32:46 +0000 (UTC) Subject: rpms/gsh/devel gsh.spec,1.2,1.3 Message-ID: <20090725013246.62D7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30512 Modified Files: gsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsh/devel/gsh.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gsh.spec 25 Feb 2009 01:19:38 -0000 1.2 +++ gsh.spec 25 Jul 2009 01:32:46 -0000 1.3 @@ -2,7 +2,7 @@ Name: gsh Version: 0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Group Shell - aggregate several remote shells into one URL: http://guichaz.free.fr/gsh/ Source0: http://guichaz.free.fr/gsh/files/%{name}-%{version}.tar.gz @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:33:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:33:00 +0000 (UTC) Subject: rpms/gshutdown/devel gshutdown.spec,1.6,1.7 Message-ID: <20090725013300.7022511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gshutdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30648 Modified Files: gshutdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gshutdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/gshutdown/devel/gshutdown.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gshutdown.spec 25 Feb 2009 01:20:38 -0000 1.6 +++ gshutdown.spec 25 Jul 2009 01:33:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: gshutdown Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GShutDown is an advanced shut down utility for GNOME Group: Applications/System @@ -64,6 +64,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:33:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:33:14 +0000 (UTC) Subject: rpms/gsim85/devel gsim85.spec,1.3,1.4 Message-ID: <20090725013314.5A79711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsim85/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30802 Modified Files: gsim85.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsim85.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsim85/devel/gsim85.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gsim85.spec 9 Jul 2009 21:10:05 -0000 1.3 +++ gsim85.spec 25 Jul 2009 01:33:14 -0000 1.4 @@ -1,6 +1,6 @@ Name: gsim85 Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An 8085 microprocessor simulator Group: Applications/Engineering @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Fabian Affolter - 0.2-5 - Fixed the place in the menu From jkeating at fedoraproject.org Sat Jul 25 01:33:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:33:28 +0000 (UTC) Subject: rpms/gsl/devel gsl.spec,1.49,1.50 Message-ID: <20090725013328.8E9F611C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30951 Modified Files: gsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsl/devel/gsl.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- gsl.spec 7 Mar 2009 17:53:24 -0000 1.49 +++ gsl.spec 25 Jul 2009 01:33:28 -0000 1.50 @@ -1,7 +1,7 @@ Summary: The GNU Scientific Library for numerical analysis Name: gsl Version: 1.12 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.gnu.org/software/gsl/ Source: ftp://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz Patch0: gsl-1.10-lib64.patch @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Milos Jakubicek - 1.12-3 - Remove rpaths (fix BZ#487823). From jkeating at fedoraproject.org Sat Jul 25 01:33:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:33:42 +0000 (UTC) Subject: rpms/gsm/devel gsm.spec,1.6,1.7 Message-ID: <20090725013342.935DD11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31086 Modified Files: gsm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsm/devel/gsm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gsm.spec 25 Feb 2009 01:23:27 -0000 1.6 +++ gsm.spec 25 Jul 2009 01:33:42 -0000 1.7 @@ -1,6 +1,6 @@ Name: gsm Version: 1.0.12 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Shared libraries for GSM speech compressor Group: System Environment/Libraries @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.12-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.12-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:33:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:33:57 +0000 (UTC) Subject: rpms/gsoap/devel gsoap.spec,1.12,1.13 Message-ID: <20090725013357.21E2B11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsoap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31231 Modified Files: gsoap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsoap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsoap/devel/gsoap.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gsoap.spec 25 Feb 2009 01:24:19 -0000 1.12 +++ gsoap.spec 25 Jul 2009 01:33:56 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Generator Tools for Coding SOAP/XML Web Services in C and C++ Name: gsoap Version: 2.7.12 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Tools URL: http://gsoap2.sourceforge.net @@ -249,6 +249,9 @@ make check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.7.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:34:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:34:13 +0000 (UTC) Subject: rpms/gspiceui/devel gspiceui.spec,1.3,1.4 Message-ID: <20090725013413.08E0D11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gspiceui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31398 Modified Files: gspiceui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gspiceui.spec =================================================================== RCS file: /cvs/pkgs/rpms/gspiceui/devel/gspiceui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gspiceui.spec 25 Feb 2009 01:25:11 -0000 1.3 +++ gspiceui.spec 25 Jul 2009 01:34:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: gspiceui Version: 0.9.65 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A GUI to freely available Spice Electronic circuit similators Group: Applications/System @@ -94,6 +94,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.65-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.65-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:34:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:34:28 +0000 (UTC) Subject: rpms/gsql/devel gsql.spec,1.2,1.3 Message-ID: <20090725013428.DF96811C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31597 Modified Files: gsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsql/devel/gsql.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gsql.spec 25 Feb 2009 01:26:04 -0000 1.2 +++ gsql.spec 25 Jul 2009 01:34:28 -0000 1.3 @@ -1,6 +1,6 @@ Name: gsql Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Integrated database development tool for GNOME Group: Applications/Databases @@ -226,6 +226,9 @@ update-desktop-database -q %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:34:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:34:46 +0000 (UTC) Subject: rpms/gssdp/devel gssdp.spec,1.10,1.11 Message-ID: <20090725013446.A2FB811C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gssdp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31758 Modified Files: gssdp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gssdp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gssdp/devel/gssdp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gssdp.spec 4 Mar 2009 23:02:39 -0000 1.10 +++ gssdp.spec 25 Jul 2009 01:34:46 -0000 1.11 @@ -1,6 +1,6 @@ Name: gssdp Version: 0.6.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Resource discovery and announcement over SSDP Group: System Environment/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/gssdp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Peter Robinson 0.6.4-3 - Move docs to noarch subpackage From jkeating at fedoraproject.org Sat Jul 25 01:35:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:35:02 +0000 (UTC) Subject: rpms/gst-inspector/devel gst-inspector.spec,1.6,1.7 Message-ID: <20090725013502.3041211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gst-inspector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31927 Modified Files: gst-inspector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gst-inspector.spec =================================================================== RCS file: /cvs/pkgs/rpms/gst-inspector/devel/gst-inspector.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gst-inspector.spec 25 Feb 2009 01:27:48 -0000 1.6 +++ gst-inspector.spec 25 Jul 2009 01:35:01 -0000 1.7 @@ -2,7 +2,7 @@ Name: gst-inspector Version: 0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An introspection data viewer for the GStreamer multimedia framework Group: Development/Languages @@ -72,6 +72,9 @@ fi %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:35:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:35:17 +0000 (UTC) Subject: rpms/gst-mixer/devel gst-mixer.spec,1.3,1.4 Message-ID: <20090725013517.8DBAD11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gst-mixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32101 Modified Files: gst-mixer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gst-mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gst-mixer/devel/gst-mixer.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gst-mixer.spec 19 Jul 2009 21:12:54 -0000 1.3 +++ gst-mixer.spec 25 Jul 2009 01:35:17 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Legacy gnome-volume-control for advanced use cases Name: gst-mixer Version: 2.26.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.26/gnome-media-%{version}.tar.bz2 @@ -167,6 +167,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Christoph Wickert - 2.26.0-3 - Fix 'Help' button (#508531) - Add category 'Mixer' to menu enty for nested menus in multimedia-menus From jkeating at fedoraproject.org Sat Jul 25 01:35:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:35:35 +0000 (UTC) Subject: rpms/gstm/devel gstm.spec,1.6,1.7 Message-ID: <20090725013535.86E3E11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32301 Modified Files: gstm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstm/devel/gstm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gstm.spec 25 Feb 2009 01:28:42 -0000 1.6 +++ gstm.spec 25 Jul 2009 01:35:35 -0000 1.7 @@ -1,6 +1,6 @@ Name: gstm Version: 1.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A front-end to ssh tunneling Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/gaskpass %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:35:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:35:49 +0000 (UTC) Subject: rpms/gstream/devel gstream.spec,1.3,1.4 Message-ID: <20090725013549.92DF011C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32450 Modified Files: gstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstream/devel/gstream.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gstream.spec 25 Feb 2009 01:29:38 -0000 1.3 +++ gstream.spec 25 Jul 2009 01:35:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: gstream Version: 1.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simplified stream output/input for Allegro Group: System Environment/Libraries License: Giftware @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:36:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:36:03 +0000 (UTC) Subject: rpms/gstreamer/devel gstreamer.spec,1.101,1.102 Message-ID: <20090725013603.DA74211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32611 Modified Files: gstreamer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer/devel/gstreamer.spec,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- gstreamer.spec 21 Jul 2009 01:55:50 -0000 1.101 +++ gstreamer.spec 25 Jul 2009 01:36:03 -0000 1.102 @@ -6,7 +6,7 @@ Name: %{gstreamer} Version: 0.10.23.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GStreamer streaming media framework runtime Group: Applications/Multimedia @@ -211,6 +211,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/rpm/macros.gstreamer %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.23.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-1 - Update to 0.10.23.3 From jkeating at fedoraproject.org Sat Jul 25 01:36:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:36:18 +0000 (UTC) Subject: rpms/gstreamer-java/devel gstreamer-java.spec,1.8,1.9 Message-ID: <20090725013618.6CC7C11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv304 Modified Files: gstreamer-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-java/devel/gstreamer-java.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gstreamer-java.spec 3 Jul 2009 13:10:43 -0000 1.8 +++ gstreamer-java.spec 25 Jul 2009 01:36:18 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Java interface to the gstreamer framework Name: gstreamer-java Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv3 and CC-BY-SA Group: System Environment/Libraries URL: http://code.google.com/p/gstreamer-java/ @@ -125,6 +125,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Levente Farkas - 1.2-2 - don't build debuginfo pacakges since it's actualy a noarch pacakge From jkeating at fedoraproject.org Sat Jul 25 01:36:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:36:31 +0000 (UTC) Subject: rpms/gstreamer-plugins-base/devel gstreamer-plugins-base.spec, 1.83, 1.84 Message-ID: <20090725013631.A386C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-plugins-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv465 Modified Files: gstreamer-plugins-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-plugins-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-base/devel/gstreamer-plugins-base.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- gstreamer-plugins-base.spec 21 Jul 2009 12:34:09 -0000 1.83 +++ gstreamer-plugins-base.spec 25 Jul 2009 01:36:31 -0000 1.84 @@ -5,7 +5,7 @@ Name: %{gstreamer}-plugins-base Version: 0.10.23.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GStreamer streaming media framework base plug-ins Group: Applications/Multimedia @@ -245,6 +245,9 @@ GStreamer Base Plugins library developme %doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.23.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bastien Nocera 0.10.23.3-2 - Remove old patches (the input-selector has been moved to be an internal playbin2 plugin) From jkeating at fedoraproject.org Sat Jul 25 01:36:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:36:46 +0000 (UTC) Subject: rpms/gstreamer-plugins-flumpegdemux/devel gstreamer-plugins-flumpegdemux.spec, 1.7, 1.8 Message-ID: <20090725013646.9EE6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-plugins-flumpegdemux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv615 Modified Files: gstreamer-plugins-flumpegdemux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-plugins-flumpegdemux.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-flumpegdemux/devel/gstreamer-plugins-flumpegdemux.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gstreamer-plugins-flumpegdemux.spec 1 Apr 2009 12:37:34 -0000 1.7 +++ gstreamer-plugins-flumpegdemux.spec 25 Jul 2009 01:36:46 -0000 1.8 @@ -1,7 +1,7 @@ Summary: MPEG demuxer for GStreamer Name: gstreamer-plugins-flumpegdemux Version: 0.10.15 -Release: 6%{?dist} +Release: 7%{?dist} License: MPLv1.1 Group: Applications/Multimedia Source0: http://core.fluendo.com/gstreamer/src/gst-fluendo-mpegdemux/gst-fluendo-mpegdemux-%{version}.tar.bz2 @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-0.10/libgstmpegdemux.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 - Bastien Nocera - 0.10.15-6 - Update code from gst-plugins-bad From jkeating at fedoraproject.org Sat Jul 25 01:37:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:37:06 +0000 (UTC) Subject: rpms/gstreamer-plugins-good/devel gstreamer-plugins-good.spec, 1.98, 1.99 Message-ID: <20090725013706.415D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-plugins-good/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv798 Modified Files: gstreamer-plugins-good.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-plugins-good.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-plugins-good/devel/gstreamer-plugins-good.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- gstreamer-plugins-good.spec 21 Jul 2009 23:10:55 -0000 1.98 +++ gstreamer-plugins-good.spec 25 Jul 2009 01:37:06 -0000 1.99 @@ -6,7 +6,7 @@ Name: %{gstreamer}-plugins-good Version: 0.10.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GStreamer plug-ins with good code and licensing Group: Applications/Multimedia @@ -271,6 +271,9 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer-%{majorminor}.schemas > /dev/null || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Brian Pepple - 0.10.15-4 - Add missing provides on gst-plugins-farsight. From jkeating at fedoraproject.org Sat Jul 25 01:37:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:37:26 +0000 (UTC) Subject: rpms/gstreamer-python/devel gstreamer-python.spec,1.30,1.31 Message-ID: <20090725013726.D8B1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv978 Modified Files: gstreamer-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-python/devel/gstreamer-python.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- gstreamer-python.spec 28 May 2009 07:55:33 -0000 1.30 +++ gstreamer-python.spec 25 Jul 2009 01:37:26 -0000 1.31 @@ -2,7 +2,7 @@ Name: gstreamer-python Version: 0.10.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for GStreamer Group: Development/Languages @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Denis Leroy - 0.10.15-1 - Update to upstream 0.10.15 (#502812) - Added git patch to fix compile fix From jkeating at fedoraproject.org Sat Jul 25 01:37:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:37:41 +0000 (UTC) Subject: rpms/gstreamer-rtsp/devel gstreamer-rtsp.spec,1.2,1.3 Message-ID: <20090725013741.A556D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamer-rtsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1136 Modified Files: gstreamer-rtsp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamer-rtsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamer-rtsp/devel/gstreamer-rtsp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gstreamer-rtsp.spec 18 May 2009 10:07:42 -0000 1.2 +++ gstreamer-rtsp.spec 25 Jul 2009 01:37:41 -0000 1.3 @@ -3,7 +3,7 @@ Name: gstreamer-rtsp Version: 0.10.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GStreamer RTSP server library Group: Applications/Multimedia @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/vala/vapi/gst-rtsp-server-0.10.vapi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Bastien Nocera 0.10.3-1 - Update to 0.10.3 (#501159) From jkeating at fedoraproject.org Sat Jul 25 01:37:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:37:57 +0000 (UTC) Subject: rpms/gstreamermm/devel gstreamermm.spec,1.11,1.12 Message-ID: <20090725013757.09F8F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gstreamermm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1279 Modified Files: gstreamermm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gstreamermm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gstreamermm/devel/gstreamermm.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gstreamermm.spec 26 Jun 2009 05:00:52 -0000 1.11 +++ gstreamermm.spec 25 Jul 2009 01:37:56 -0000 1.12 @@ -1,6 +1,6 @@ Name: gstreamermm Version: 0.10.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrapper for GStreamer library @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Denis Leroy - 0.10.2-1 - Update to upstream 0.10.2 From jkeating at fedoraproject.org Sat Jul 25 01:38:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:38:11 +0000 (UTC) Subject: rpms/gsynaptics/devel gsynaptics.spec,1.23,1.24 Message-ID: <20090725013811.E1C0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gsynaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1444 Modified Files: gsynaptics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gsynaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/gsynaptics/devel/gsynaptics.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- gsynaptics.spec 2 Apr 2009 01:53:34 -0000 1.23 +++ gsynaptics.spec 25 Jul 2009 01:38:11 -0000 1.24 @@ -1,6 +1,6 @@ Name: gsynaptics Version: 0.9.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Settings tool for Synaptics touchpad driver Group: Applications/System @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Peter Hutterer - 0.9.16-1 - rebase to 0.9.16 From jkeating at fedoraproject.org Sat Jul 25 01:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:38:27 +0000 (UTC) Subject: rpms/gt/devel gt.spec,1.7,1.8 Message-ID: <20090725013827.EBC2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1633 Modified Files: gt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gt.spec =================================================================== RCS file: /cvs/pkgs/rpms/gt/devel/gt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gt.spec 15 Jul 2009 18:28:02 -0000 1.7 +++ gt.spec 25 Jul 2009 01:38:27 -0000 1.8 @@ -1,6 +1,6 @@ Name: gt Version: 0.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Modified Timidity which supportes enhanced gus format patches Group: Applications/Multimedia License: GPLv2+ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Hans de Goede 0.4-9 - Add missing BR flex, fixing FTBFS (#511363) From jkeating at fedoraproject.org Sat Jul 25 01:38:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:38:43 +0000 (UTC) Subject: rpms/gt5/devel gt5.spec,1.3,1.4 Message-ID: <20090725013843.2352F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gt5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1790 Modified Files: gt5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gt5.spec =================================================================== RCS file: /cvs/pkgs/rpms/gt5/devel/gt5.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gt5.spec 25 Feb 2009 01:41:02 -0000 1.3 +++ gt5.spec 25 Jul 2009 01:38:42 -0000 1.4 @@ -1,7 +1,7 @@ Name: gt5 Summary: A diff-capable 'du-browser' Version: 1.4.0 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ Group: Applications/File URL: http://gt5.sourceforge.net/ @@ -55,6 +55,9 @@ rm -fr %{buildroot} %{_mandir}/man1/gt5.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:38:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:38:56 +0000 (UTC) Subject: rpms/gtest/devel gtest.spec,1.3,1.4 Message-ID: <20090725013856.6CED111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1958 Modified Files: gtest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtest.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtest/devel/gtest.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gtest.spec 1 Jun 2009 19:23:41 -0000 1.3 +++ gtest.spec 25 Jul 2009 01:38:56 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Google C++ testing framework Name: gtest Version: 1.3.0 -Release: 1.20090601svn257%{?dist} +Release: 2.20090601svn257%{?dist} License: BSD Group: Development/Tools URL: http://code.google.com/p/googletest/ @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}/internal %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-2.20090601svn257 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Tom "spot" Callaway - 1.3.0-1 - update to 1.3.0 From jkeating at fedoraproject.org Sat Jul 25 01:39:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:39:10 +0000 (UTC) Subject: rpms/gtg/devel gtg.spec,1.1,1.2 Message-ID: <20090725013910.A3E5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2141 Modified Files: gtg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtg.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtg/devel/gtg.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gtg.spec 16 Jul 2009 08:20:29 -0000 1.1 +++ gtg.spec 25 Jul 2009 01:39:10 -0000 1.2 @@ -2,7 +2,7 @@ Name: gtg Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Personal organizer for the GNOME desktop Group: Applications/Productivity @@ -75,6 +75,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Yanko Kaneti 0.1.2-3 - Use %%{__python} instead of python From jkeating at fedoraproject.org Sat Jul 25 01:39:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:39:25 +0000 (UTC) Subject: rpms/gthumb/devel gthumb.spec,1.102,1.103 Message-ID: <20090725013925.3660F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gthumb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2305 Modified Files: gthumb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gthumb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gthumb/devel/gthumb.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- gthumb.spec 2 Jul 2009 05:35:24 -0000 1.102 +++ gthumb.spec 25 Jul 2009 01:39:24 -0000 1.103 @@ -11,7 +11,7 @@ Summary: Image viewer, editor, organizer Name: gthumb Version: 2.10.11 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://gthumb.sourceforge.net Source0: http://download.gnome.org/sources/gthumb/2.10/%{name}-%{version}.tar.bz2 Source1: gthumb-importer @@ -144,6 +144,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/gthumb.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Matthias Clasen - 2.10.11-4 - Rebuild to shrink GConf schemas From jkeating at fedoraproject.org Sat Jul 25 01:39:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:39:42 +0000 (UTC) Subject: rpms/gtk+/devel gtk+.spec,1.20,1.21 Message-ID: <20090725013942.4CEEB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk+/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2498 Modified Files: gtk+.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk+.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk+/devel/gtk+.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- gtk+.spec 21 Apr 2009 10:32:50 -0000 1.20 +++ gtk+.spec 25 Jul 2009 01:39:42 -0000 1.21 @@ -2,7 +2,7 @@ Summary: The GIMP ToolKit Name: gtk+ Epoch: 1 Version: 1.2.10 -Release: 68%{?dist} +Release: 69%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org/ @@ -247,6 +247,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.10-69 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Paul Howarth 1:1.2.10-68 - remove unused shared library dependencies - use install -p to maintain timestamps where reasonable From jkeating at fedoraproject.org Sat Jul 25 01:39:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:39:57 +0000 (UTC) Subject: rpms/gtk+extra/devel gtk+extra.spec,1.13,1.14 Message-ID: <20090725013957.862E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk+extra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2674 Modified Files: gtk+extra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk+extra.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk+extra/devel/gtk+extra.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gtk+extra.spec 25 Feb 2009 01:44:37 -0000 1.13 +++ gtk+extra.spec 25 Jul 2009 01:39:57 -0000 1.14 @@ -1,6 +1,6 @@ Name: gtk+extra Version: 2.1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A library of gtk+ widgets Summary(fr): Une biblioth?que de widgets gtk+ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:40:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:40:12 +0000 (UTC) Subject: rpms/gtk-doc/devel gtk-doc.spec,1.55,1.56 Message-ID: <20090725014012.0BBF111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2841 Modified Files: gtk-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-doc/devel/gtk-doc.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- gtk-doc.spec 25 Feb 2009 01:45:32 -0000 1.55 +++ gtk-doc.spec 25 Jul 2009 01:40:11 -0000 1.56 @@ -1,7 +1,7 @@ Summary: API documentation generation tool for GTK+ and GNOME Name: gtk-doc Version: 1.11 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ and GFDL Group: Development/Tools Source: http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/1.11/gtk-doc-%{version}.tar.bz2 @@ -83,6 +83,9 @@ scrollkeeper-update -q %{_datadir}/omf/gtk-doc-manual %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:40:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:40:27 +0000 (UTC) Subject: rpms/gtk-gnutella/devel gtk-gnutella.spec,1.21,1.22 Message-ID: <20090725014027.BCF0B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-gnutella/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2997 Modified Files: gtk-gnutella.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-gnutella.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-gnutella/devel/gtk-gnutella.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gtk-gnutella.spec 9 Apr 2009 13:02:46 -0000 1.21 +++ gtk-gnutella.spec 25 Jul 2009 01:40:27 -0000 1.22 @@ -1,7 +1,7 @@ Name: gtk-gnutella Summary: GUI based Gnutella Client Version: 0.96.6 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Internet License: GPLv2+ URL: http://gtk-gnutella.sourceforge.net @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.96.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Dmitry Butskoy - 0.96.6-1 - update to 0.96.6 From jkeating at fedoraproject.org Sat Jul 25 01:40:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:40:44 +0000 (UTC) Subject: rpms/gtk-murrine-engine/devel gtk-murrine-engine.spec,1.10,1.11 Message-ID: <20090725014044.5823211C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-murrine-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3177 Modified Files: gtk-murrine-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-murrine-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-murrine-engine/devel/gtk-murrine-engine.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gtk-murrine-engine.spec 23 Apr 2009 16:41:39 -0000 1.10 +++ gtk-murrine-engine.spec 25 Jul 2009 01:40:44 -0000 1.11 @@ -4,7 +4,7 @@ Summary: Murrine GTK2 engine Name: gtk-murrine-engine Version: %{mainver}%{?patchver} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.cimitan.com/murrine/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.90.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Michel Salim - 0.90%{?patchver}-1 - Update to 0.90.3 From jkeating at fedoraproject.org Sat Jul 25 01:41:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:41:00 +0000 (UTC) Subject: rpms/gtk-nodoka-engine/devel gtk-nodoka-engine.spec,1.29,1.30 Message-ID: <20090725014100.9F44911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-nodoka-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3365 Modified Files: gtk-nodoka-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-nodoka-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-nodoka-engine/devel/gtk-nodoka-engine.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- gtk-nodoka-engine.spec 24 Jul 2009 01:37:26 -0000 1.29 +++ gtk-nodoka-engine.spec 25 Jul 2009 01:41:00 -0000 1.30 @@ -3,7 +3,7 @@ Name: gtk-nodoka-engine Version: 0.7.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The Nodoka GTK Theme Engine Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Martin Sourada - 0.7.2-5 - Correctly grey out checkboxes in tree-view (rhbz #513454) From jkeating at fedoraproject.org Sat Jul 25 01:41:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:41:17 +0000 (UTC) Subject: rpms/gtk-qt-engine/devel gtk-qt-engine.spec,1.42,1.43 Message-ID: <20090725014117.0370511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-qt-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3572 Modified Files: gtk-qt-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-qt-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-qt-engine/devel/gtk-qt-engine.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- gtk-qt-engine.spec 11 May 2009 12:58:08 -0000 1.42 +++ gtk-qt-engine.spec 25 Jul 2009 01:41:16 -0000 1.43 @@ -6,7 +6,7 @@ Name: gtk-qt-engine Group: User Interface/Desktops Epoch: 1 Version: 1.1 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: http://code.google.com/p/gtk-qt-engine/ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Rex Dieter - 1:1.1-6 - update URL/Source0 From jkeating at fedoraproject.org Sat Jul 25 01:41:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:41:32 +0000 (UTC) Subject: rpms/gtk-recordmydesktop/devel gtk-recordmydesktop.spec,1.11,1.12 Message-ID: <20090725014132.B954211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-recordmydesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3745 Modified Files: gtk-recordmydesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-recordmydesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-recordmydesktop/devel/gtk-recordmydesktop.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gtk-recordmydesktop.spec 1 Apr 2009 03:33:49 -0000 1.11 +++ gtk-recordmydesktop.spec 25 Jul 2009 01:41:32 -0000 1.12 @@ -2,7 +2,7 @@ Name: gtk-recordmydesktop Version: 0.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GUI Desktop session recorder with audio and video Group: Applications/Multimedia @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 0.3.8-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 01:41:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:41:47 +0000 (UTC) Subject: rpms/gtk-rezlooks-engine/devel gtk-rezlooks-engine.spec,1.4,1.5 Message-ID: <20090725014147.C74CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-rezlooks-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3897 Modified Files: gtk-rezlooks-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-rezlooks-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-rezlooks-engine/devel/gtk-rezlooks-engine.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gtk-rezlooks-engine.spec 25 Feb 2009 01:50:57 -0000 1.4 +++ gtk-rezlooks-engine.spec 25 Jul 2009 01:41:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: gtk-rezlooks-engine Version: 0.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Rezlooks GTK2 engine @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:42:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:42:02 +0000 (UTC) Subject: rpms/gtk-sharp/devel gtk-sharp.spec,1.13,1.14 Message-ID: <20090725014202.18F7511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4060 Modified Files: gtk-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-sharp/devel/gtk-sharp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gtk-sharp.spec 25 Feb 2009 01:51:52 -0000 1.13 +++ gtk-sharp.spec 25 Jul 2009 01:42:01 -0000 1.14 @@ -3,7 +3,7 @@ Name: gtk-sharp Version: 1.0.10 -Release: 22%{?dist} +Release: 23%{?dist} Summary: GTK+ and GNOME bindings for Mono Group: System Environment/Libraries License: LGPLv2 @@ -108,6 +108,9 @@ rm -rf %{buildroot} %{monodir}/pkgconfig/gapi.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.10-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.10-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:42:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:42:18 +0000 (UTC) Subject: rpms/gtk-sharp2/devel gtk-sharp2.spec,1.44,1.45 Message-ID: <20090725014218.1668711C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-sharp2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4217 Modified Files: gtk-sharp2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-sharp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-sharp2/devel/gtk-sharp2.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- gtk-sharp2.spec 26 May 2009 18:56:47 -0000 1.44 +++ gtk-sharp2.spec 25 Jul 2009 01:42:17 -0000 1.45 @@ -1,6 +1,6 @@ Name: gtk-sharp2 Version: 2.12.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GTK+ and GNOME bindings for Mono Group: System Environment/Libraries @@ -127,6 +127,9 @@ cp -R doc/en $RPM_BUILD_ROOT%{_libdir}/m %{_libdir}/monodoc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Xavier lamien - 2.12.7-5 - Build ppc64. From jkeating at fedoraproject.org Sat Jul 25 01:42:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:42:34 +0000 (UTC) Subject: rpms/gtk-vnc/devel gtk-vnc.spec,1.34,1.35 Message-ID: <20090725014234.0451611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-vnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4409 Modified Files: gtk-vnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-vnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-vnc/devel/gtk-vnc.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- gtk-vnc.spec 27 Mar 2009 15:14:37 -0000 1.34 +++ gtk-vnc.spec 25 Jul 2009 01:42:33 -0000 1.35 @@ -7,7 +7,7 @@ Summary: A GTK widget for VNC clients Name: gtk-vnc Version: 0.3.8 -Release: 8%{?dist} +Release: 9%{?dist} License: LGPLv2+ Group: Development/Libraries Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.3/%{name}-%{version}.tar.gz @@ -138,6 +138,9 @@ rm -fr %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Daniel P. Berrange - 0.3.8-8.fc11 - Fix ungrab when pointer type changes From jkeating at fedoraproject.org Sat Jul 25 01:42:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:42:49 +0000 (UTC) Subject: rpms/gtk-xfce-engine/devel gtk-xfce-engine.spec,1.25,1.26 Message-ID: <20090725014249.079CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk-xfce-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4583 Modified Files: gtk-xfce-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk-xfce-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk-xfce-engine/devel/gtk-xfce-engine.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- gtk-xfce-engine.spec 27 Feb 2009 20:45:23 -0000 1.25 +++ gtk-xfce-engine.spec 25 Jul 2009 01:42:48 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Port of Xfce engine to GTK+-2.0 Name: gtk-xfce-engine Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-4.6.0/src/gtk-xfce-engine-%{version}.tar.bz2 @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kevin Fenzi - 2.6.0-1 - Update to 2.6.0 From jkeating at fedoraproject.org Sat Jul 25 01:43:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:43:07 +0000 (UTC) Subject: rpms/gtk2/devel gtk2.spec,1.389,1.390 Message-ID: <20090725014307.AE49E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4756 Modified Files: gtk2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.389 retrieving revision 1.390 diff -u -p -r1.389 -r1.390 --- gtk2.spec 18 Jul 2009 03:33:40 -0000 1.389 +++ gtk2.spec 25 Jul 2009 01:43:07 -0000 1.390 @@ -17,7 +17,7 @@ Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -380,6 +380,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.17.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Matthias Clasen - 2.17.5-1 - Update to 2.17.5 From kyle at fedoraproject.org Sat Jul 25 01:43:18 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Sat, 25 Jul 2009 01:43:18 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6.30.tar.bz2.sign, NONE, 1.1 patch-2.6.30.3.bz2.sign, NONE, 1.1 .cvsignore, 1.1048, 1.1049 kernel.spec, 1.1679, 1.1680 sources, 1.1010, 1.1011 upstream, 1.921, 1.922 linux-2.6.29.tar.bz2.sign, 1.1, NONE patch-2.6.29.6.bz2.sign, 1.1, NONE Message-ID: <20090725014318.E42A911C00CE@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4872 Modified Files: .cvsignore kernel.spec sources upstream Added Files: linux-2.6.30.tar.bz2.sign patch-2.6.30.3.bz2.sign Removed Files: linux-2.6.29.tar.bz2.sign patch-2.6.29.6.bz2.sign Log Message: * Fri Jul 24 2009 Kyle McMartin - Linux 2.6.30.3 rebase for Fedora 11. - Fedora 11 2.6.29 branch is on tag private-fedora-11-2_6_29_6. --- NEW FILE linux-2.6.30.tar.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKL0QZyGugalF9Dw4RAu2cAJsGBq5rTd+IvyAx1BH1GMhAdKhgYACfd6kx PRI/uC7sbImL17SEpxOSwcM= =n888 -----END PGP SIGNATURE----- --- NEW FILE patch-2.6.30.3.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKajFtyGugalF9Dw4RArlkAJwMAnCeULyfeZuDI0k9TDNct6OGPgCfdppC xFjjxlm8Wg3Jd4A14Gfcg8w= =w8PJ -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/.cvsignore,v retrieving revision 1.1048 retrieving revision 1.1049 diff -u -p -r1.1048 -r1.1049 --- .cvsignore 3 Jul 2009 02:31:04 -0000 1.1048 +++ .cvsignore 25 Jul 2009 01:43:18 -0000 1.1049 @@ -3,6 +3,6 @@ clog GNUmakefile kernel-2.6.*.config temp-* -kernel-2.6.29 -linux-2.6.29.tar.bz2 -patch-2.6.29.6.bz2 +kernel-2.6.30 +linux-2.6.30.tar.bz2 +patch-2.6.30.3.bz2 View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.1679 -r 1.1680 kernel.specIndex: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1679 retrieving revision 1.1680 diff -u -p -r1.1679 -r1.1680 --- kernel.spec 23 Jul 2009 18:05:37 -0000 1.1679 +++ kernel.spec 25 Jul 2009 01:43:18 -0000 1.1680 @@ -27,20 +27,20 @@ Summary: The Linux kernel # 1.1205.1.1. In this case we drop the initial 1, subtract fedora_cvs_origin # from the second number, and then append the rest of the RCS string as is. # Don't stare at the awk too long, you'll go blind. -%define fedora_cvs_origin 1462 +%define fedora_cvs_origin 1679 %define fedora_cvs_revision() %2 %global fedora_build %(echo %{fedora_cvs_origin}.%{fedora_cvs_revision $Revision$} | awk -F . '{ OFS = "."; ORS = ""; print $3 - $1 ; i = 4 ; OFS = ""; while (i <= NF) { print ".", $i ; i++} }') # base_sublevel is the kernel version we're starting with and patching # on top of -- for example, 2.6.22-rc7-git1 starts with a 2.6.21 base, # which yields a base_sublevel of 21. -%define base_sublevel 29 +%define base_sublevel 30 ## If this is a released kernel ## %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 6 +%define stable_update 3 # Is it a -stable RC? %define stable_rc 0 # Set rpm version accordingly @@ -2109,3414 +2109,7 @@ fi # and build. %changelog -* Thu Jul 23 2009 Kyle McMartin 2.6.29.6-217 -- Apply three patches requested by sgruszka at redhat.com: - - iwl3945-release-resources-before-shutting-down.patch - - iwl3945-add-debugging-for-wrong-command-queue.patch - - iwl3945-fix-rfkill-sw-and-hw-mishmash.patch - -* Thu Jul 23 2009 Jarod Wilson -- virtio_blk: don't bounce highmem requests, works around a frequent - oops in kvm guests using virtio block devices (#510304) +* Fri Jul 24 2009 Kyle McMartin +- Linux 2.6.30.3 rebase for Fedora 11. +- Fedora 11 2.6.29 branch is on tag private-fedora-11-2_6_29_6. -* Wed Jul 22 2009 Tom "spot" Callaway -- We have to override the new %%install behavior because, well... the kernel is -special. - -* Wed Jul 22 2009 Ben Skeggs -- drm-nouveau.patch: Fix DPMS off for DAC outputs, NV4x PFIFO typo - -* Tue Jul 07 2009 Chuck Ebbert 2.6.29.6-213 -- Drop the correct patch to fix bug #498858 - -* Mon Jul 06 2009 Chuck Ebbert 2.6.29.6-212 -- Additional fixes for bug #498854 - -* Thu Jul 02 2009 Chuck Ebbert 2.6.29.6-211 -- Fix NFSD null credentials bug (#494067) -- Remove null credentials debugging patch. - -* Thu Jul 02 2009 Chuck Ebbert 2.6.29.6-210 -- Linux 2.6.29.6 - -* Wed Jul 01 2009 Chuck Ebbert 2.6.29.6-209.rc1 -- Linux 2.6.29.6-rc1 -- Enable CONFIG_DEBUG_CREDENTIALS in debug kernels only. -- Dropped patches merged upstream: - linux-2.6-netdev-r8169-fix-lg-pkt-crash.patch - linux-2.6-input-atkbd-forced-release.patch - -* Wed Jul 01 2009 Dave Airlie 2.6.29.5-208 -- drm-intel-a17-fix.patch, drm-pnp-add-resource-range-checker.patch, - drm-i915-enable-mchbar.patch: - backport upstream fixes for 915/945 tiling slowness. - -* Tue Jun 30 2009 Chuck Ebbert 2.6.29.5-207 -- Fix stalled NFS writes (#508174) -- Fix broken TSC-based delay. - -* Tue Jun 30 2009 Jarod Wilson 2.6.29.5-206 -- Fix busticated lirc_serial (#504402) - -* Tue Jun 30 2009 Ben Skeggs 2.6.29.5-205 -- nouveau: Forcibly DPMS on DAC/SORs during modeset - -* Mon Jun 29 2009 Chuck Ebbert 2.6.29.5-204 -- Fix "port=" option in CIFS mount calls. (#506574) - -* Mon Jun 29 2009 Chuck Ebbert 2.6.29.5-203 -- Add support for Apple mini keyboard (#507517) - -* Mon Jun 29 2009 Chuck Ebbert 2.6.29.5-202 -- New debug patch for null selinux credentials (for bug #494067) - -* Mon Jun 26 2009 Ben Skeggs 2.6.29.5-201 -- nouveau: bump timeout up a bit, some people hitting false hangs - -* Mon Jun 26 2009 Ben Skeggs 2.6.29.5-200 -- nouveau: backport nv50 output script fixes from upstream - -* Mon Jun 26 2009 Ben Skeggs -- nouveau: fix GT200 context control, will allow use of 3D engine now - -* Wed Jun 24 2009 Jarod Wilson 2.6.29.5-198 -- Fix lirc_i2c functionality (#507047) -- Add ability to disable lirc_imon mouse mode - -* Wed Jun 24 2009 Kyle McMartin -- config changes: - - generic: - - CONFIG_SCSI_DEBUG=m (was off, requested by davidz.) - -* Mon Jun 22 2009 Chuck Ebbert 2.6.29.5-196 -- Fix oopses in a bunch of USB serial devices (#500954) - -* Sat Jun 20 2009 Chuck Ebbert 2.6.29.5-195 -- Add linux-2.6-drivers-char-low-latency-removal.patch - to fix oops in nozomi driver (#507005) - -* Thu Jun 18 2009 Ben Skeggs 2.6.29.5-194 -- drm-nouveau.patch: un-break DPMS after DRM changes - -* Thu Jun 18 2009 Dave Airlie 2.6.29.5-193 -- drm-radeon-cs-oops-fix.patch: fix oops if CS path called from non-kms - -* Wed Jun 17 2009 Jarod Wilson -- New lirc_imon hotness: - * support dual-interface devices with a single lirc device - * directional pad functions as an input device mouse - * touchscreen devices finally properly supported - * support for using MCE/RC-6 protocol remotes - * fix oops in RF remote association code (F10 bug #475496) - * fix re-enabling case/panel buttons and/or knobs -- Add some misc additional lirc_mceusb2 transceiver IDs -- Add missing unregister_chrdev_region() call to lirc_dev exit -- Add it8720 support to lirc_it87 - -* Tue Jun 16 2009 Chuck Ebbert 2.6.29.5-191 -- Copy latest version of the -mm streaming IO and executable pages patches from F-10 -- Copy the saner-vm-settings patch from F-10: - change writeback interval from 5,30 seconds to 3,10 seconds -- Comment out the null credentials debugging patch (bug #494067) - -* Tue Jun 16 2009 Chuck Ebbert 2.6.29.5-190 -- Two r8169 driver updates from 2.6.30 -- Update via-sdmmc driver - -* Tue Jun 16 2009 Chuck Ebbert 2.6.29.5-189 -- New debug patch for bug #494067, now enabled for non-debug kernels too. - -* Tue Jun 16 2009 Chuck Ebbert 2.6.29.5-188 -- Avoid lockup on OOM with /dev/zero - -* Tue Jun 16 2009 Chuck Ebbert 2.6.29.5-187 -- Drop the disable of mwait on VIA Nano processor. The lockup bug is - fixed by BIOS updates. - -* Tue Jun 16 2009 Ben Skeggs 2.6.29.5-186 -- nouveau: Use VBIOS image from PRAMIN in preference to PROM (#492658) - -* Tue Jun 16 2009 Dave Airlie 2.6.29.5-185 -- drm-connector-dpms-fix.patch - allow hw to dpms off -- drm-dont-frob-i2c.patch - don't play with i2c bits just do EDID -- drm-intel-tv-fix.patch - fixed intel tv after connector dpms -- drm-modesetting-radeon-fixes.patch - fix AGP issues (go faster) (otaylor) -- drm-radeon-fix-ring-commit.patch - fix stability on some radeons -- drm-radeon-new-pciids.patch - add rv770/790 support -- drm-intel-vmalloc.patch - fix vmalloc patch - -* Mon Jun 15 2009 Chuck Ebbert - 2.6.29.5-184 -- Get rid of the annoying parport sysctl registration warning (#503773) - (linux-2.6-parport-quickfix-the-proc-registration-bug.patch) - -* Mon Jun 15 2009 Chuck Ebbert - 2.6.29.5-183 -- Linux 2.6.29.5 - -* Mon Jun 15 2009 Chuck Ebbert - 2.6.29.5-182.rc1 -- Add support for touchpad on MacBook 5 (Unibody) (#504197) - -* Mon Jun 15 2009 Chuck Ebbert - 2.6.29.5-181.rc1 -- Fix reporting of short writes to the NFS client (#493500) - -* Mon Jun 15 2009 John W. Linville -- neigh: fix state transition INCOMPLETE->FAILED via Netlink request - -* Fri Jun 12 2009 Chuck Ebbert - 2.6.29.5-179.rc1 -- VIA Nano / VX800 fixes - Padlock 64-bit fixes - Disable mwait on the Nano - Add via-sdmmc driver - Enable the VIA random number generator on 64-bit -- Enable the userspace ARP daemon (#502844) - -* Wed Jun 10 2009 Ben Skeggs [...3050 lines suppressed...] -- 2.6.26-rc3-git4 - -* Wed May 21 2008 John W. Linville -- libertas: Fix ethtool statistics -- mac80211: fix NULL pointer dereference in ieee80211_compatible_rates -- mac80211: don't claim iwspy support -- rtl8187: resource leak in error case -- hostap_cs: add ID for Conceptronic CON11CPro -- orinoco_cs: add ID for SpeedStream wireless adapters - -* Wed May 21 2008 Dave Jones -- 2.6.26-rc3-git3 - -* Tue May 20 2008 Dave Jones -- 2.6.26-rc3-git1 - -* Mon May 19 2008 Dave Jones -- Disable PATA_ISAPNP (it's busted). - -* Mon May 19 2008 John W. Linville -- mac80211 : Association with 11n hidden ssid ap. -- libertas: fix command timeout after firmware failure -- mac80211: Add RTNL version of ieee80211_iterate_active_interfaces -- wireless: Create 'device' symlink in sysfs -- hostap: fix "registers" registration in procfs -- wireless, airo: waitbusy() won't delay -- iwlwifi : Set monitor mode for 4965 -- iwlwifi : Set monitor mode for 3945 -- make sta_rx_agg_session_timer_expired() static -- remove ieee80211_tx_frame() -- remove ieee80211_wx_{get,set}_auth() -- wireless: fix "iwlwifi: unify init driver flow" -- iwl3945: do not delay hardware scan if it is a direct scan -- ath5k: Fix loop variable initializations -- zd1211rw: initial IBSS support -- mac80211: use hardware flags for signal/noise units -- mac80211: make rx radiotap header more flexible -- iwlwifi: HW dependent run time calibration -- iwlwifi: HW crypto acceleration fixes -- iwlwifi: remove uneeded callback -- iwlwifi: CT-Kill configuration fix -- iwlwifi: HT IE in probe request clean up -- iwlwifi: clean up register names and defines -- iwlwifi: move Flow Handlers define to iwl-fh.h -- iwlwifi: move verify_ucode functions to iwl-core -- iwlwifi: move hw_rx_handler_setup to iwl-4965.c -- iwlwifi-5000: update the CT-Kill value for 5000 series -- iwlwifi-5000: add run time calibrations for 5000 -- iwlwifi-5000: update the byte count in SCD -- iwlwifi: move iwl4965_init_alive_start to iwl-4965.c -- wireless: Add missing locking to cfg80211_dev_rename -- mac80211: correct skb allocation -- iwlwifi: move per driverdebug_level to per device -- iwlwifi: move debug_level to sysfs/bus/pci/devices -- iwlwifi: update levels of debug prints -- iwlwifi: adding parameter of fw_restart -- iwlwifi: remove support for Narrow Channel (10Mhz) -- iwlwifi: HT antenna/chains overhaul -- iwlwifi: TLC modifications -- iwlwifi: rate scale module cleanups -- iwlwifi: rate scale restructure toggle_antenna functions -- iwlwifi: rs fix wrong parenthesizing in rs_get_lower_rate function -- iwlwifi: rate sacaling fixes -- iwlwifi: more RS improvements -- mac80211: remove unnecessary byteshifts in frame control testing -- wireless: use get/put_unaligned_* helpers -- mac80211: tkip.c use kernel-provided infrastructure -- b43: replace limit_value macro with clamp_val -- b43legacy: replace limit_value macro with clamp_val -- b43: use the bitrev helpers rather than rolling a private one -- libertas: debug output tweaks for lbs_thread -- libertas: make some functions void -- libertas: allow removal of card at any time -- libertas: remove lbs_get_data_rate() -- b43: nphy.c remove duplicated include -- mac80211: Replace ieee80211_tx_control->key_idx with ieee80211_key_conf -- mac80211: Add IEEE80211_KEY_FLAG_PAIRWISE -- rt2x00: Support hardware RTS and CTS-to-self frames -- rt2x00: Remove DRIVER_SUPPORT_MIXED_INTERFACES -- rt2x00: Use rt2x00 queue numbering -- rt2x00: Add helper macros -- rt2x00: Fix kernel-doc -- rt2x00: Release rt2x00 2.1.5 -- rt2x00: Clarify supported chipsets in Kconfig -- mac80211: Set IEEE80211_TXPD_REQ_TX_STATUS for all TX frames -- mac80211: a few code cleanups -- mac80211: clean up get_tx_stats callback -- mac80211: remove queue info from ieee80211_tx_status -- mac80211: QoS related cleanups -- mac80211: fix wme code -- mac80211: require four hardware queues for QoS/HT -- mac80211: proper STA info locking -- mac80211: fix queue constant confusion -- wireless: fix warning introduced by "mac80211: QoS related cleanups" -- ssb: Allow reading of 440-byte SPROM that is not rev 4 -- b43: Rewrite LO calibration algorithm -- b43: Remove some dead code -- b43: Don't disable IRQs in mac_suspend -- iwlwifi: Add power level support -- airo: use netstats in net_device structure -- arlan: use netstats in net_device structure -- atmel: use netstats in net_device structure -- iwlwifi: arranging aggregation actions -- iwlwifi: expanding HW parameters control -- iwlwifi: support 64 bit DMA masks -- iwlwifi: handle shared memory -- iwlwifi: unify init driver flow -- iwlwifi: iwl-sta redundant includes clean up -- iwlwifi-5000: add iwl 5000 shared memory handlers -- iwlwifi: map A-MPDU HW queue to mac80211 A-MPDU SW queue -- iwlwifi-5000: rename iwl5000_init_nic to iwl5000_init_config -- iwlwifi: create disable SCD Tx FIFOs handler -- iwlwifi: move NIC init and Tx queues init to iwlcore -- iwlwifi: handle shared memory Rx index access -- iwlwifi: remove 4965 prefix from iwl4965_kw and iwl4965_tx_queue -- iwlwifi: fix spinlock used before initialized -- iwlwifi: move find station to iwl-sta.c -- iwlwifi: cleanup set_pwr_src -- iwlwifi: define ANA_PLL values in iwl-csr.h -- iwlwifi: export int iwl4965_set_pwr_src -- iwlwifi: changing EEPROM layout handling -- iwlwifi: remove includes to net/ieee80211.h -- iwlwifi: add apm init handler -- iwlwifi: add iwl_hw_detect function to iwl core -- iwlwifi: check eeprom version in pci probe time -- iwlwifi: reorganize TX RX constatns -- iwlwifi: 3945 remove unused SCD definitions -- iwlwifi: remove 49 prefix from general CSR values -- iwlwifi: remove unnecessary apmg settings -- iwlwifi: wrapping nic configuration in iwl core handler -- iwlwifi-5000: adding initial recognition for the 5000 family -- iwlwifi-5000: add ops infrastructure for 5000 -- iwlwifi-5000: add apm_init handler for 5000 HW family -- iwlwifi-5000: use iwl4965_set_pwr_src in 5000 -- iwlwifi-5000: EEPROM settings for 5000 -- iwlwifi-5000: adding iwl5000 HW parameters -- iwlwifi-5000: adjust antennas names in 5000 HW family -- iwlwifi-5000: Add HW REV of 5000 HW family -- iwlwifi-5000: add eeprom check version handler -- iwlwifi-5000: add nic config handler for 5000 HW -- iwlwifi: rename iwl-4965-commands to iwl-commands.h -- iwlwifi: rename iwl-4965.h to iwl-dev.h -- iwlwifi: move RX code to iwl-rx.c -- iwlwifi: don't override association channel with control channel -- iwlwifi: remove 4965 from station_entry -- iwlwifi: debugfs EEPROM dump -- iwlwifi: remove 4965 from rx_packet -- iwlwifi: generalize iwl4965_send_add_station function -- iwlwifi-5000: add build_addsta_hcmd handler for 5000 HW -- iwlwifi: move iwl4965_set_rxon_ht into iwlcore -- iwlwifi: compile iwl-sta into iwlcore -- iwlwifi: add device sysfs version entry -- at76: use hardware flags for signal/noise units - -* Sun May 18 2008 Dave Jones -- 2.6.26-rc3 - -* Sat May 17 2008 Eric Paris -- SELinux: enable deffered context validation -- SELinux: don't sleep while holding locks in above patch -- SELinux: replace ioctl specific knowlege in the selinux code and follow generic permissions -- SELinux: not all reading in /proc needs ptrace, so make those things just use 'read' perms - -* Sat May 17 2008 Dave Jones -- Enable PAGEALLOC debugging for a while. (Some things might get slow). - -* Sat May 17 2008 Dave Jones -- Disable CONFIG_SND_PCSP (#447039) - -* Fri May 16 2008 Dave Jones -- Enable CONFIG_SND_SERIAL_U16550 - -* Fri May 16 2008 Dave Jones -- 2.6.26-rc2-git5 - -* Thu May 15 2008 Eric Sandeen -- ext3/4: fix uninitialized bs in ext3/4_xattr_set_handle() - -* Wed May 14 2008 Eric Paris -- fix may sleep in allocation for previous deffered context patch -- replace selinux specific knowledge of ioctls with a generic ioctl implementation - -* Mon May 12 2008 Kyle McMartin -- Linux 2.6.25.3 - -* Fri May 09 2008 John W. Linville 2.6.25.2-7 -- Regroup wireless patches as prep for 2.6.26 and F10 cycles - -* Fri May 09 2008 Eric Paris -- support deffered context validation in selinux. aka rpm can lay down illegal labels. (won't upstream until .27 opens) - -* Wed May 07 2008 Chuck Ebbert 2.6.25.2-5 -- Add the patches queued for 2.6.25.3 - -### -# The following Emacs magic makes C-c C-e use UTC dates. -# Local Variables: -# rpm-change-log-uses-utc: t -# End: -### Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/sources,v retrieving revision 1.1010 retrieving revision 1.1011 diff -u -p -r1.1010 -r1.1011 --- sources 3 Jul 2009 02:31:04 -0000 1.1010 +++ sources 25 Jul 2009 01:43:18 -0000 1.1011 @@ -1,2 +1,2 @@ -64921b5ff5cdadbccfcd3820f03be7d8 linux-2.6.29.tar.bz2 -0317760b52c9ac7a11de997da19a366e patch-2.6.29.6.bz2 +7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 +4361d948bdcbd298cf6a3ff4189a9d37 patch-2.6.30.3.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/upstream,v retrieving revision 1.921 retrieving revision 1.922 diff -u -p -r1.921 -r1.922 --- upstream 3 Jul 2009 02:31:04 -0000 1.921 +++ upstream 25 Jul 2009 01:43:18 -0000 1.922 @@ -1,2 +1,2 @@ -linux-2.6.29.tar.bz2 -patch-2.6.29.6.bz2 +linux-2.6.30.tar.bz2 +patch-2.6.30.3.bz2 --- linux-2.6.29.tar.bz2.sign DELETED --- --- patch-2.6.29.6.bz2.sign DELETED --- From jkeating at fedoraproject.org Sat Jul 25 01:43:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:43:23 +0000 (UTC) Subject: rpms/gtk2-engines/devel gtk2-engines.spec,1.110,1.111 Message-ID: <20090725014323.0454311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtk2-engines/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4931 Modified Files: gtk2-engines.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtk2-engines.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2-engines/devel/gtk2-engines.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- gtk2-engines.spec 20 May 2009 17:17:34 -0000 1.110 +++ gtk2-engines.spec 25 Jul 2009 01:43:22 -0000 1.111 @@ -3,7 +3,7 @@ Summary: Theme engines for GTK+ 2.0 Name: gtk2-engines Version: 2.18.2 -Release: 1%{?dist} +Release: 2%{?dist} # for details on which engines are GPL vs LGPL, see COPYING License: LGPLv2+ Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gtk-engines-2.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Ray Strode - 2.18.2-1 - Update to 2.18.2 - See http://download.gnome.org/sources/gtk-engines/2.18/gtk-engines-2.18.2.news From jkeating at fedoraproject.org Sat Jul 25 01:43:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:43:37 +0000 (UTC) Subject: rpms/gtkdatabox/devel gtkdatabox.spec,1.17,1.18 Message-ID: <20090725014337.9219C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkdatabox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5071 Modified Files: gtkdatabox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkdatabox.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkdatabox/devel/gtkdatabox.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gtkdatabox.spec 25 Feb 2009 01:57:35 -0000 1.17 +++ gtkdatabox.spec 25 Jul 2009 01:43:37 -0000 1.18 @@ -1,6 +1,6 @@ Name: gtkdatabox Version: 0.9.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK+ widget for fast data display Group: System Environment/Libraries License: LGPLv2+ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/gtkdatabox/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:43:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:43:51 +0000 (UTC) Subject: rpms/gtkglarea2/devel gtkglarea2.spec,1.18,1.19 Message-ID: <20090725014351.C9F5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkglarea2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5242 Modified Files: gtkglarea2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkglarea2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkglarea2/devel/gtkglarea2.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- gtkglarea2.spec 25 Feb 2009 01:58:31 -0000 1.18 +++ gtkglarea2.spec 25 Jul 2009 01:43:51 -0000 1.19 @@ -1,7 +1,7 @@ Summary: OpenGL GTK widget Name: gtkglarea2 Version: 1.99.0 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gtkgl-2.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.99.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.99.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:44:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:44:10 +0000 (UTC) Subject: rpms/gtkglext/devel gtkglext.spec,1.15,1.16 Message-ID: <20090725014410.1982411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkglext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5413 Modified Files: gtkglext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkglext.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkglext/devel/gtkglext.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gtkglext.spec 25 Feb 2009 02:17:17 -0000 1.15 +++ gtkglext.spec 25 Jul 2009 01:44:09 -0000 1.16 @@ -3,7 +3,7 @@ Summary: OpenGL Extension to GTK Name: gtkglext Version: 1.2.0 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ or GPLv2+ Group: System Environment/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:44:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:44:25 +0000 (UTC) Subject: rpms/gtkglextmm/devel gtkglextmm.spec,1.9,1.10 Message-ID: <20090725014425.53F3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkglextmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5550 Modified Files: gtkglextmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkglextmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkglextmm/devel/gtkglextmm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gtkglextmm.spec 25 Feb 2009 02:18:13 -0000 1.9 +++ gtkglextmm.spec 25 Jul 2009 01:44:24 -0000 1.10 @@ -5,7 +5,7 @@ Summary: C++ wrapper for GtkGlExt Name: gtkglextmm Version: 1.2.0 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://gtkglext.sourceforge.net @@ -71,6 +71,9 @@ DESTDIR=$RPM_BUILD_ROOT make install %doc %{_datadir}/doc/%{name}-%{gtkglextmm_major}/html/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:44:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:44:40 +0000 (UTC) Subject: rpms/gtkhtml2/devel gtkhtml2.spec,1.26,1.27 Message-ID: <20090725014440.0A1EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkhtml2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5720 Modified Files: gtkhtml2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkhtml2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml2/devel/gtkhtml2.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- gtkhtml2.spec 25 Feb 2009 02:19:08 -0000 1.26 +++ gtkhtml2.spec 25 Jul 2009 01:44:39 -0000 1.27 @@ -8,7 +8,7 @@ Name: gtkhtml2 Version: 2.11.1 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: System Environment/Libraries Summary: An HTML widget for GTK+ 2.0 @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.11.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.11.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:44:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:44:55 +0000 (UTC) Subject: rpms/gtkhtml3/devel gtkhtml3.spec,1.154,1.155 Message-ID: <20090725014455.0138711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkhtml3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5876 Modified Files: gtkhtml3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkhtml3.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkhtml3/devel/gtkhtml3.spec,v retrieving revision 1.154 retrieving revision 1.155 diff -u -p -r1.154 -r1.155 --- gtkhtml3.spec 13 Jul 2009 13:49:21 -0000 1.154 +++ gtkhtml3.spec 25 Jul 2009 01:44:54 -0000 1.155 @@ -7,7 +7,7 @@ Name: gtkhtml3 Version: 3.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries Summary: GtkHTML library License: LGPLv2+ and GPLv2 @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 3.27.4-1.fc12 - Update to 3.27.4 From jkeating at fedoraproject.org Sat Jul 25 01:45:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:45:09 +0000 (UTC) Subject: rpms/gtkimageview/devel gtkimageview.spec,1.7,1.8 Message-ID: <20090725014509.D8D0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkimageview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6036 Modified Files: gtkimageview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkimageview.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkimageview/devel/gtkimageview.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- gtkimageview.spec 3 Mar 2009 10:39:33 -0000 1.7 +++ gtkimageview.spec 25 Jul 2009 01:45:09 -0000 1.8 @@ -1,6 +1,6 @@ Name: gtkimageview Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple image viewer widget Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/gtkimageview.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Nils Philippsen - 1.6.3-1 - version 1.6.3 From jkeating at fedoraproject.org Sat Jul 25 01:45:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:45:25 +0000 (UTC) Subject: rpms/gtklp/devel gtklp.spec,1.10,1.11 Message-ID: <20090725014525.317A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtklp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6202 Modified Files: gtklp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtklp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtklp/devel/gtklp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- gtklp.spec 25 Feb 2009 02:21:58 -0000 1.10 +++ gtklp.spec 25 Jul 2009 01:45:24 -0000 1.11 @@ -1,6 +1,6 @@ Name: gtklp Version: 1.2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A GTK frontend to CUPS Group: Applications/System @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:45:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:45:39 +0000 (UTC) Subject: rpms/gtkmathview/devel gtkmathview.spec,1.13,1.14 Message-ID: <20090725014539.AFA9E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkmathview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6371 Modified Files: gtkmathview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkmathview.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkmathview/devel/gtkmathview.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gtkmathview.spec 28 Feb 2009 14:08:41 -0000 1.13 +++ gtkmathview.spec 25 Jul 2009 01:45:39 -0000 1.14 @@ -1,7 +1,7 @@ Summary: A MathML rendering library Name: gtkmathview Version: 0.8.0 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Libraries License: LGPLv3+ Source: http://helm.cs.unibo.it/mml-widget/sources/gtkmathview-%{version}.tar.gz @@ -86,6 +86,9 @@ rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/ma rm -r $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 28 2009 Caol?n McNamara - 0.8.0-3 - add stdio.h for snprintf From jkeating at fedoraproject.org Sat Jul 25 01:45:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:45:59 +0000 (UTC) Subject: rpms/gtkmm24/devel gtkmm.spec,1.51,1.52 Message-ID: <20090725014559.18EDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkmm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6560 Modified Files: gtkmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkmm24/devel/gtkmm.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gtkmm.spec 6 Apr 2009 10:30:24 -0000 1.51 +++ gtkmm.spec 25 Jul 2009 01:45:58 -0000 1.52 @@ -1,6 +1,6 @@ Name: gtkmm24 Version: 2.16.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for GTK2 (a GUI library for X) @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 6 2009 Denis Leroy - 2.16.0-1 - Update to upstream 2.16.0 From jkeating at fedoraproject.org Sat Jul 25 01:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:46:13 +0000 (UTC) Subject: rpms/gtkparasite/devel gtkparasite.spec,1.2,1.3 Message-ID: <20090725014613.AB6FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkparasite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6711 Modified Files: gtkparasite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkparasite.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkparasite/devel/gtkparasite.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gtkparasite.spec 25 Feb 2009 02:24:35 -0000 1.2 +++ gtkparasite.spec 25 Jul 2009 01:46:13 -0000 1.3 @@ -3,7 +3,7 @@ Name: gtkparasite Version: 0 -Release: 0.3.20090120git%{shorthash}%{?dist} +Release: 0.4.20090120git%{shorthash}%{?dist} Summary: A GUI debugging tool for GTK+ applications Group: Development/Tools @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gtk-2.0/modules/libgtkparasite.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.4.20090120git928494e5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0-0.3.20090120git928494e5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:46:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:46:28 +0000 (UTC) Subject: rpms/gtkperf/devel gtkperf.spec,1.3,1.4 Message-ID: <20090725014628.E5FAB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6869 Modified Files: gtkperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkperf/devel/gtkperf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gtkperf.spec 25 Feb 2009 02:25:27 -0000 1.3 +++ gtkperf.spec 25 Jul 2009 01:46:28 -0000 1.4 @@ -1,7 +1,7 @@ Summary: GTK+ performance tester Name: gtkperf Version: 0.40 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: Applications/System Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}.tar.gz @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.40-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.40-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:46:46 +0000 (UTC) Subject: rpms/gtkpod/devel gtkpod.spec,1.11,1.12 Message-ID: <20090725014646.E65B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkpod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7042 Modified Files: gtkpod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkpod.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkpod/devel/gtkpod.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gtkpod.spec 25 Feb 2009 02:26:18 -0000 1.11 +++ gtkpod.spec 25 Jul 2009 01:46:46 -0000 1.12 @@ -1,6 +1,6 @@ Name: gtkpod Version: 0.99.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Graphical song management program for Apple's iPod Group: Applications/Multimedia @@ -91,6 +91,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.99.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:47:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:47:01 +0000 (UTC) Subject: rpms/gtksourcecompletion/devel gtksourcecompletion.spec,1.3,1.4 Message-ID: <20090725014701.9490B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourcecompletion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7189 Modified Files: gtksourcecompletion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourcecompletion.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourcecompletion/devel/gtksourcecompletion.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gtksourcecompletion.spec 14 Jul 2009 08:19:50 -0000 1.3 +++ gtksourcecompletion.spec 25 Jul 2009 01:47:01 -0000 1.4 @@ -1,6 +1,6 @@ Name: gtksourcecompletion Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Completion support for GtkSourceView Group: System Environment/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Michel Salim - 0.7.0-1 - Update to 0.7.0 From jkeating at fedoraproject.org Sat Jul 25 01:47:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:47:16 +0000 (UTC) Subject: rpms/gtksourceview/devel gtksourceview.spec,1.51,1.52 Message-ID: <20090725014716.C53E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourceview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7337 Modified Files: gtksourceview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourceview.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview/devel/gtksourceview.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gtksourceview.spec 25 Feb 2009 02:28:07 -0000 1.51 +++ gtksourceview.spec 25 Jul 2009 01:47:16 -0000 1.52 @@ -6,7 +6,7 @@ Summary: A library for viewing source files Name: gtksourceview Version: 1.8.5 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 1 License: GPLv2+ Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.8.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.8.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:47:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:47:32 +0000 (UTC) Subject: rpms/gtksourceview-sharp/devel gtksourceview-sharp.spec,1.26,1.27 Message-ID: <20090725014732.5345011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourceview-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7483 Modified Files: gtksourceview-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourceview-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview-sharp/devel/gtksourceview-sharp.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- gtksourceview-sharp.spec 25 Feb 2009 02:29:04 -0000 1.26 +++ gtksourceview-sharp.spec 25 Jul 2009 01:47:32 -0000 1.27 @@ -4,7 +4,7 @@ Summary: A C sharp binder for gtksourceview Name: gtksourceview-sharp Version: 2.0.12 -Release: 8%{?dist} +Release: 9%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{extra}.tar.bz2 @@ -61,6 +61,9 @@ rm -f %{buildroot}%{_datadir}/gtksourcev %{__rm} -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.12-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.12-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:47:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:47:45 +0000 (UTC) Subject: rpms/gtksourceview2/devel gtksourceview2.spec,1.34,1.35 Message-ID: <20090725014745.DE77711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourceview2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7639 Modified Files: gtksourceview2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourceview2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview2/devel/gtksourceview2.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- gtksourceview2.spec 14 Jun 2009 22:17:44 -0000 1.34 +++ gtksourceview2.spec 25 Jul 2009 01:47:45 -0000 1.35 @@ -6,7 +6,7 @@ Summary: A library for viewing source files Name: gtksourceview2 Version: 2.7.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ and GPLv2+ # the library itself is LGPL, some .lang files are GPL Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Matthias Clasen - 2.7.1-2 - Minor directory ownership cleanup From jkeating at fedoraproject.org Sat Jul 25 01:48:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:48:00 +0000 (UTC) Subject: rpms/gtksourceview2-sharp/devel gtksourceview2-sharp.spec,1.5,1.6 Message-ID: <20090725014800.BBBA811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourceview2-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7821 Modified Files: gtksourceview2-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourceview2-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceview2-sharp/devel/gtksourceview2-sharp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gtksourceview2-sharp.spec 25 May 2009 20:43:18 -0000 1.5 +++ gtksourceview2-sharp.spec 25 Jul 2009 01:48:00 -0000 1.6 @@ -4,7 +4,7 @@ Summary: A C sharp binder for gtksourceview2 Name: gtksourceview2-sharp Version: 1.0 -Release: 4.svn%{svn_revision}.3%{dist} +Release: 5.svn%{svn_revision}.3%{dist} License: LGPLv2 Group: System Environment/Libraries Source0: http://ftp.novell.com/pub/mono/sources/%{name}-%{svn_revision}.tar.bz2 @@ -61,6 +61,9 @@ make DESTDIR=%{buildroot} install %{__rm} -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-5.svn89788.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien 1.0-4.svn89788.3 - Build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 01:48:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:48:14 +0000 (UTC) Subject: rpms/gtksourceviewmm/devel gtksourceviewmm.spec,1.2,1.3 Message-ID: <20090725014814.C56FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtksourceviewmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7970 Modified Files: gtksourceviewmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtksourceviewmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtksourceviewmm/devel/gtksourceviewmm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gtksourceviewmm.spec 25 Feb 2009 02:31:54 -0000 1.2 +++ gtksourceviewmm.spec 25 Jul 2009 01:48:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: gtksourceviewmm Version: 2.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C++ wrapper for the gtksourceview widget library Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:48:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:48:30 +0000 (UTC) Subject: rpms/gtkspell/devel gtkspell.spec,1.31,1.32 Message-ID: <20090725014830.CB4B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8139 Modified Files: gtkspell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkspell/devel/gtkspell.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- gtkspell.spec 23 Feb 2009 19:50:17 -0000 1.31 +++ gtkspell.spec 25 Jul 2009 01:48:30 -0000 1.32 @@ -2,7 +2,7 @@ Name: gtkspell Version: 2.0.15 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries Summary: On-the-fly spell checking for GtkTextView widgets @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gtkspell-2.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Dec 12 2008 Matthew Barnes - 2.0.15-1.fc11 - Update to 2.0.15 - Add patch for a language comparison bug reported by Zden?k Jurka. From jkeating at fedoraproject.org Sat Jul 25 01:48:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:48:48 +0000 (UTC) Subject: rpms/gtkterm/devel gtkterm.spec,1.17,1.18 Message-ID: <20090725014848.A4C6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8300 Modified Files: gtkterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkterm/devel/gtkterm.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gtkterm.spec 25 Feb 2009 02:32:55 -0000 1.17 +++ gtkterm.spec 25 Jul 2009 01:48:48 -0000 1.18 @@ -1,6 +1,6 @@ Name: gtkterm Version: 0.99.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Serial port terminal Group: Applications/Communications License: GPLv2+ @@ -76,6 +76,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.99.5-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:49:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:49:03 +0000 (UTC) Subject: rpms/gtkwave/devel gtkwave.spec,1.63,1.64 Message-ID: <20090725014903.C98E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtkwave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8461 Modified Files: gtkwave.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtkwave.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtkwave/devel/gtkwave.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- gtkwave.spec 15 Jul 2009 14:58:12 -0000 1.63 +++ gtkwave.spec 25 Jul 2009 01:49:03 -0000 1.64 @@ -3,7 +3,7 @@ Summary: Waveform Viewer Name: gtkwave Version: 3.2.1 -Release: %{?prerel:0.}2%{?prerel:.%{prerel}}%{?dist} +Release: %{?prerel:0.}2%{?prerel:.%{prerel}}%{?dist}.1 License: GPLv2+ Group: Applications/Engineering URL: http://gtkwave.sourceforge.net/ @@ -98,6 +98,9 @@ done %{_mandir}/man5/gtkwaverc.5* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Paul Howarth 3.2.1-2 - add upstream patch for crash on print to file (#511858) From jkeating at fedoraproject.org Sat Jul 25 01:49:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:49:18 +0000 (UTC) Subject: rpms/gtorrentviewer/devel gtorrentviewer.spec,1.14,1.15 Message-ID: <20090725014918.B049911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtorrentviewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8647 Modified Files: gtorrentviewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtorrentviewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtorrentviewer/devel/gtorrentviewer.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gtorrentviewer.spec 25 Feb 2009 02:34:46 -0000 1.14 +++ gtorrentviewer.spec 25 Jul 2009 01:49:18 -0000 1.15 @@ -1,6 +1,6 @@ Name: gtorrentviewer Version: 0.2b -Release: 17%{?dist} +Release: 18%{?dist} Summary: A GTK2-based viewer and editor for BitTorrent meta files Group: Applications/Internet License: GPL+ @@ -59,6 +59,9 @@ download. %{_mandir}/man1/gtorrentviewer.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2b-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2b-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:49:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:49:33 +0000 (UTC) Subject: rpms/gtranslator/devel gtranslator.spec,1.27,1.28 Message-ID: <20090725014933.CC1E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtranslator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8798 Modified Files: gtranslator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtranslator.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtranslator/devel/gtranslator.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- gtranslator.spec 14 Jul 2009 09:46:09 -0000 1.27 +++ gtranslator.spec 25 Jul 2009 01:49:33 -0000 1.28 @@ -1,6 +1,6 @@ Name: gtranslator Version: 1.9.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Gettext po file editor for GNOME Group: Development/Tools @@ -132,6 +132,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Alexey Torkhov - 1.9.5-2 - Update for new gdl and requiring libuuid directly From jkeating at fedoraproject.org Sat Jul 25 01:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:49:51 +0000 (UTC) Subject: rpms/gts/devel gts.spec,1.9,1.10 Message-ID: <20090725014951.7DEDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9084 Modified Files: gts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gts.spec =================================================================== RCS file: /cvs/pkgs/rpms/gts/devel/gts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- gts.spec 25 Feb 2009 02:36:42 -0000 1.9 +++ gts.spec 25 Jul 2009 01:49:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: gts Version: 0.7.6 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GNU Triangulated Surface Library Group: Applications/Engineering License: LGPLv2+ @@ -87,6 +87,9 @@ make check ||: %{_datadir}/aclocal/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.6-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:50:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:50:04 +0000 (UTC) Subject: rpms/gtweakui/devel gtweakui.spec,1.12,1.13 Message-ID: <20090725015004.CD73911C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtweakui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9410 Modified Files: gtweakui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtweakui.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtweakui/devel/gtweakui.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- gtweakui.spec 25 Feb 2009 02:37:35 -0000 1.12 +++ gtweakui.spec 25 Jul 2009 01:50:04 -0000 1.13 @@ -3,7 +3,7 @@ Summary: Extra configuration dialogs for GNOME Name: gtweakui Version: 0.4.0 -Release: 7 +Release: 8 License: GPLv2 Group: User Interface/Desktops URL: http://gtweakui.sourceforge.net/ @@ -45,6 +45,9 @@ gTweakUI Provides extra configuration di %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.4.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:50:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:50:18 +0000 (UTC) Subject: rpms/gtypist/devel gtypist.spec,1.6,1.7 Message-ID: <20090725015018.516BE11C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gtypist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9771 Modified Files: gtypist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gtypist.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtypist/devel/gtypist.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- gtypist.spec 25 Feb 2009 02:38:27 -0000 1.6 +++ gtypist.spec 25 Jul 2009 01:50:18 -0000 1.7 @@ -1,6 +1,6 @@ Name: gtypist Version: 2.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNU typing tutor Group: Applications/Text License: GPLv3+ @@ -88,6 +88,9 @@ fi %{emacs_sitelisp}/site-start.d/gtypist-init.el %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:50:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:50:32 +0000 (UTC) Subject: rpms/guake/devel guake.spec,1.12,1.13 Message-ID: <20090725015032.6EF4911C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10109 Modified Files: guake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guake.spec =================================================================== RCS file: /cvs/pkgs/rpms/guake/devel/guake.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- guake.spec 7 Apr 2009 13:17:26 -0000 1.12 +++ guake.spec 25 Jul 2009 01:50:32 -0000 1.13 @@ -1,6 +1,6 @@ Name: guake Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Drop-down terminal for GNOME Group: Applications/System @@ -107,6 +107,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 pingou - 0.4.0-1 - Update to version 0.4.0 From jkeating at fedoraproject.org Sat Jul 25 01:50:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:50:56 +0000 (UTC) Subject: rpms/gucharmap/devel gucharmap.spec,1.39,1.40 Message-ID: <20090725015056.B874611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gucharmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10332 Modified Files: gucharmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gucharmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/gucharmap/devel/gucharmap.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- gucharmap.spec 16 Jul 2009 03:35:48 -0000 1.39 +++ gucharmap.spec 25 Jul 2009 01:50:56 -0000 1.40 @@ -4,7 +4,7 @@ Name: gucharmap Version: 2.26.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Unicode character picker and font browser Group: Applications/System @@ -146,6 +146,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.26.3.1-2 - Fix some stubborn button images From jkeating at fedoraproject.org Sat Jul 25 01:51:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:51:09 +0000 (UTC) Subject: rpms/guichan/devel guichan.spec,1.9,1.10 Message-ID: <20090725015110.0298C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guichan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10532 Modified Files: guichan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guichan.spec =================================================================== RCS file: /cvs/pkgs/rpms/guichan/devel/guichan.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- guichan.spec 25 Feb 2009 02:43:02 -0000 1.9 +++ guichan.spec 25 Jul 2009 01:51:09 -0000 1.10 @@ -1,6 +1,6 @@ Name: guichan Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable C++ GUI library for games using Allegro, SDL and OpenGL Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:51:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:51:23 +0000 (UTC) Subject: rpms/guile/devel guile.spec,1.65,1.66 Message-ID: <20090725015123.87CBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10691 Modified Files: guile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guile.spec =================================================================== RCS file: /cvs/pkgs/rpms/guile/devel/guile.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- guile.spec 16 Jul 2009 16:39:44 -0000 1.65 +++ guile.spec 25 Jul 2009 01:51:23 -0000 1.66 @@ -4,7 +4,7 @@ Summary: A GNU implementation of Scheme Name: guile %define mver 1.8 Version: 1.8.7 -Release: 1%{?dist} +Release: 2%{?dist} Source: ftp://ftp.gnu.org/pub/gnu/guile/guile-%{version}.tar.gz URL: http://www.gnu.org/software/guile/ Patch1: guile-1.8.7-multilib.patch @@ -185,6 +185,9 @@ fi %{_includedir}/libguile.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5:1.8.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Miroslav Lichvar - 5:1.8.7-1 - update to 1.8.7 From jkeating at fedoraproject.org Sat Jul 25 01:51:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:51:36 +0000 (UTC) Subject: rpms/guile-cairo/devel guile-cairo.spec,1.6,1.7 Message-ID: <20090725015136.90DE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guile-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10841 Modified Files: guile-cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guile-cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/guile-cairo/devel/guile-cairo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- guile-cairo.spec 25 Feb 2009 02:48:14 -0000 1.6 +++ guile-cairo.spec 25 Jul 2009 01:51:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: guile-cairo Version: 1.4.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The Cairo graphics library for Guile Scheme Group: Development/Libraries @@ -102,6 +102,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:51:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:51:49 +0000 (UTC) Subject: rpms/guile-gnome-platform/devel guile-gnome-platform.spec,1.7,1.8 Message-ID: <20090725015149.ACA6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guile-gnome-platform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10980 Modified Files: guile-gnome-platform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guile-gnome-platform.spec =================================================================== RCS file: /cvs/pkgs/rpms/guile-gnome-platform/devel/guile-gnome-platform.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- guile-gnome-platform.spec 25 Feb 2009 02:49:42 -0000 1.7 +++ guile-gnome-platform.spec 25 Jul 2009 01:51:49 -0000 1.8 @@ -1,6 +1,6 @@ Name: guile-gnome-platform Version: 2.16.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Guile wrapper collection for the GNOME library stack Group: Applications/System @@ -137,6 +137,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.16.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.16.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:52:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:52:02 +0000 (UTC) Subject: rpms/guile-lib/devel guile-lib.spec,1.3,1.4 Message-ID: <20090725015202.80A8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guile-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11110 Modified Files: guile-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guile-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/guile-lib/devel/guile-lib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- guile-lib.spec 25 Feb 2009 02:50:42 -0000 1.3 +++ guile-lib.spec 25 Jul 2009 01:52:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: guile-lib Version: 0.1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A repository of useful code written in Guile Scheme Group: System Environment/Libraries @@ -76,6 +76,9 @@ fi %{_infodir}/*.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:52:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:52:15 +0000 (UTC) Subject: rpms/guiloader/devel guiloader.spec,1.6,1.7 Message-ID: <20090725015215.7028811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guiloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11252 Modified Files: guiloader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guiloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/guiloader/devel/guiloader.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- guiloader.spec 7 Jul 2009 20:28:10 -0000 1.6 +++ guiloader.spec 25 Jul 2009 01:52:15 -0000 1.7 @@ -1,6 +1,6 @@ Name: guiloader Version: 2.15.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GuiXml Loader Library Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.15.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Fabian Affolter - 2.15.0-1 - Removed Patch0 - Updated to new upstream version 2.15.0 From jkeating at fedoraproject.org Sat Jul 25 01:52:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:52:27 +0000 (UTC) Subject: rpms/guiloader-c++/devel guiloader-c++.spec,1.6,1.7 Message-ID: <20090725015227.B51E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guiloader-c++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11369 Modified Files: guiloader-c++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guiloader-c++.spec =================================================================== RCS file: /cvs/pkgs/rpms/guiloader-c++/devel/guiloader-c++.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- guiloader-c++.spec 9 Jul 2009 22:04:06 -0000 1.6 +++ guiloader-c++.spec 25 Jul 2009 01:52:27 -0000 1.7 @@ -1,6 +1,6 @@ Name: guiloader-c++ Version: 2.15.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Binding to GuiLoader Library Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.15.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Fabian Affolter - 2.15.0-1 - Removed Patch0 - Updated to new upstream version 2.15.0 From jkeating at fedoraproject.org Sat Jul 25 01:52:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:52:40 +0000 (UTC) Subject: rpms/guilt/devel guilt.spec,1.8,1.9 Message-ID: <20090725015240.9EB6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guilt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11514 Modified Files: guilt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guilt.spec =================================================================== RCS file: /cvs/pkgs/rpms/guilt/devel/guilt.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- guilt.spec 11 Jul 2009 20:35:04 -0000 1.8 +++ guilt.spec 25 Jul 2009 01:52:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: guilt Version: 0.32.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scripts to manage quilt-like patches on top of git Group: Development/Tools @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man7/guilt*.7* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.32.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Eric Sandeen 0.32.1-2 - Fix asciidoc call so it works. From jkeating at fedoraproject.org Sat Jul 25 01:52:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:52:53 +0000 (UTC) Subject: rpms/guimup/devel guimup.spec,1.6,1.7 Message-ID: <20090725015253.BBDC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guimup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11662 Modified Files: guimup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guimup.spec =================================================================== RCS file: /cvs/pkgs/rpms/guimup/devel/guimup.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- guimup.spec 18 Jun 2009 12:02:25 -0000 1.6 +++ guimup.spec 25 Jul 2009 01:52:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: guimup Version: 0.1.4 -Release: 7.b%{?dist} +Release: 8.b%{?dist} Summary: A GTKmm based drag-&-drop oriented client for MPD Group: Applications/Multimedia @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.4-8.b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Andreas Osowski 0.1.4-7.b - Rebuild for broken dependencies (libmpd) From jkeating at fedoraproject.org Sat Jul 25 01:53:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:53:06 +0000 (UTC) Subject: rpms/guitarix/devel guitarix.spec,1.2,1.3 Message-ID: <20090725015306.6884311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guitarix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11812 Modified Files: guitarix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guitarix.spec =================================================================== RCS file: /cvs/pkgs/rpms/guitarix/devel/guitarix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- guitarix.spec 24 Jun 2009 19:55:57 -0000 1.2 +++ guitarix.spec 25 Jul 2009 01:53:06 -0000 1.3 @@ -1,6 +1,6 @@ Name: guitarix Version: 0.04.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mono amplifier to JACK Group: Applications/Multimedia License: GPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.04.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Orcan Ogetbil - 0.04.6-1 - Update to 0.04.6 (build system uses waf now) - License is GPLv2+ From jkeating at fedoraproject.org Sat Jul 25 01:53:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:53:18 +0000 (UTC) Subject: rpms/guitone/devel guitone.spec,1.9,1.10 Message-ID: <20090725015318.7924611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/guitone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11945 Modified Files: guitone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: guitone.spec =================================================================== RCS file: /cvs/pkgs/rpms/guitone/devel/guitone.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- guitone.spec 25 Feb 2009 02:54:20 -0000 1.9 +++ guitone.spec 25 Jul 2009 01:53:18 -0000 1.10 @@ -1,6 +1,6 @@ Name: guitone Version: 0.9_1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A frontend for Monotone Group: Development/Tools @@ -87,6 +87,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9_1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9_1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:53:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:53:30 +0000 (UTC) Subject: rpms/gupnp/devel gupnp.spec,1.21,1.22 Message-ID: <20090725015330.8E8E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12088 Modified Files: gupnp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gupnp.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp/devel/gupnp.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gupnp.spec 1 Jul 2009 09:23:11 -0000 1.21 +++ gupnp.spec 25 Jul 2009 01:53:30 -0000 1.22 @@ -1,6 +1,6 @@ Name: gupnp Version: 0.12.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A framework for creating UPnP devices & control points Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/gupnp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Peter Robinson 0.12.8-2 - Rebuild with new libuuid build req From jkeating at fedoraproject.org Sat Jul 25 01:53:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:53:43 +0000 (UTC) Subject: rpms/gupnp-av/devel gupnp-av.spec,1.11,1.12 Message-ID: <20090725015343.4DDD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-av/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12224 Modified Files: gupnp-av.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gupnp-av.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-av/devel/gupnp-av.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- gupnp-av.spec 9 Jun 2009 06:56:02 -0000 1.11 +++ gupnp-av.spec 25 Jul 2009 01:53:43 -0000 1.12 @@ -1,6 +1,6 @@ Name: gupnp-av Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of helpers for building UPnP AV applications Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/gupnp-av/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Peter Robinson 0.4.1-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 01:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:53:55 +0000 (UTC) Subject: rpms/gupnp-igd/devel gupnp-igd.spec,1.4,1.5 Message-ID: <20090725015355.895D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-igd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12356 Modified Files: gupnp-igd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gupnp-igd.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-igd/devel/gupnp-igd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gupnp-igd.spec 10 Jun 2009 22:32:13 -0000 1.4 +++ gupnp-igd.spec 25 Jul 2009 01:53:55 -0000 1.5 @@ -3,7 +3,7 @@ Name: gupnp-igd Version: 0.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library to handle UPnP IGD port mapping Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Brian Pepple - 0.1.3-1 - Update to 0.1.3. From jkeating at fedoraproject.org Sat Jul 25 01:54:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:54:08 +0000 (UTC) Subject: rpms/gupnp-tools/devel gupnp-tools.spec,1.13,1.14 Message-ID: <20090725015408.2195A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12508 Modified Files: gupnp-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gupnp-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-tools/devel/gupnp-tools.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gupnp-tools.spec 1 Jul 2009 09:27:01 -0000 1.13 +++ gupnp-tools.spec 25 Jul 2009 01:54:08 -0000 1.14 @@ -1,6 +1,6 @@ Name: gupnp-tools Version: 0.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of dev tools utilising GUPnP and GTK+ Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gupnp-tools/*.ui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Peter Robinson 0.7.1-4 - Rebuild with new libuuid build req From jkeating at fedoraproject.org Sat Jul 25 01:54:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:54:24 +0000 (UTC) Subject: rpms/gupnp-vala/devel gupnp-vala.spec,1.5,1.6 Message-ID: <20090725015424.413F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12702 Modified Files: gupnp-vala.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gupnp-vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-vala/devel/gupnp-vala.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- gupnp-vala.spec 21 Jun 2009 16:33:18 -0000 1.5 +++ gupnp-vala.spec 25 Jul 2009 01:54:24 -0000 1.6 @@ -1,6 +1,6 @@ Name: gupnp-vala Version: 0.5.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GUPnP is a upnp framework. This adds vala language bindings Group: Development/Languages @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gupnp-vala-1.0.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Peter Robinson 0.5.4-2 - Add patch to fix 64 bit pkgconfig paths. Fixes RHBZ 496794 From jkeating at fedoraproject.org Sat Jul 25 01:54:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:54:39 +0000 (UTC) Subject: rpms/gurlchecker/devel gurlchecker.spec,1.28,1.29 Message-ID: <20090725015439.035D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gurlchecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12861 Modified Files: gurlchecker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gurlchecker.spec =================================================================== RCS file: /cvs/pkgs/rpms/gurlchecker/devel/gurlchecker.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gurlchecker.spec 10 Mar 2009 00:10:13 -0000 1.28 +++ gurlchecker.spec 25 Jul 2009 01:54:38 -0000 1.29 @@ -1,6 +1,6 @@ Name: gurlchecker Version: 0.10.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A Gnome link validity checker @@ -56,6 +56,9 @@ desktop-file-install --vendor fedora --d %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Kevin Kofler - 0.10.1-12 - rebuild for clamav 0.95rc1 From jkeating at fedoraproject.org Sat Jul 25 01:54:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:54:54 +0000 (UTC) Subject: rpms/gutenprint/devel gutenprint.spec,1.48,1.49 Message-ID: <20090725015454.1CDBC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gutenprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13052 Modified Files: gutenprint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- gutenprint.spec 15 Jul 2009 08:12:51 -0000 1.48 +++ gutenprint.spec 25 Jul 2009 01:54:53 -0000 1.49 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -254,6 +254,9 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Tim Waugh 5.2.3-6 - Don't build CUPS PPDs (instead build a CUPS driver that can generate them). Fixes build (bug #511538). From jkeating at fedoraproject.org Sat Jul 25 01:55:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:55:15 +0000 (UTC) Subject: rpms/gv/devel gv.spec,1.21,1.22 Message-ID: <20090725015515.2857611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13275 Modified Files: gv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gv.spec =================================================================== RCS file: /cvs/pkgs/rpms/gv/devel/gv.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- gv.spec 24 Mar 2009 22:09:36 -0000 1.21 +++ gv.spec 25 Jul 2009 01:55:14 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A X front-end for the Ghostscript PostScript(TM) interpreter Name: gv Version: 3.6.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Publishing Requires: ghostscript @@ -100,6 +100,9 @@ fi %{_mandir}/man1/gv-update-userconfig.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Orion Poplawski 3.6.7-1 - Update to 3.6.7 From jkeating at fedoraproject.org Sat Jul 25 01:55:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:55:31 +0000 (UTC) Subject: rpms/gvfs/devel gvfs.spec,1.137,1.138 Message-ID: <20090725015531.0902611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13488 Modified Files: gvfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/gvfs.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- gvfs.spec 14 Jul 2009 03:08:46 -0000 1.137 +++ gvfs.spec 25 Jul 2009 01:55:30 -0000 1.138 @@ -1,7 +1,7 @@ Summary: Backends for the gio framework in GLib Name: gvfs Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -270,6 +270,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 1.3.2-1 - Update to 1.3.2 - Drop upstreamed patches From jkeating at fedoraproject.org Sat Jul 25 01:55:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:55:44 +0000 (UTC) Subject: rpms/gvrpcd/devel gvrpcd.spec,1.1,1.2 Message-ID: <20090725015544.06D5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gvrpcd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13627 Modified Files: gvrpcd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gvrpcd.spec =================================================================== RCS file: /cvs/pkgs/rpms/gvrpcd/devel/gvrpcd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gvrpcd.spec 16 May 2009 15:13:46 -0000 1.1 +++ gvrpcd.spec 25 Jul 2009 01:55:43 -0000 1.2 @@ -1,6 +1,6 @@ Name: gvrpcd Version: 1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A program for announcing VLANs using GVRP Group: System Environment/Daemons @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Jasper Capel - 1.3-2 - Depend on /sbin/service and /sbin/chkconfig instead of initscripts and chkconfig. From jkeating at fedoraproject.org Sat Jul 25 01:55:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:55:56 +0000 (UTC) Subject: rpms/gwave/devel gwave.spec,1.14,1.15 Message-ID: <20090725015556.F157D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gwave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13763 Modified Files: gwave.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gwave.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwave/devel/gwave.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gwave.spec 25 Feb 2009 03:03:33 -0000 1.14 +++ gwave.spec 25 Jul 2009 01:55:56 -0000 1.15 @@ -2,7 +2,7 @@ Name: gwave Version: 2 -Release: 15.%{snap_date}snap%{?dist} +Release: 16.%{snap_date}snap%{?dist} Summary: GPLed Analog Waveform Viewing Environment License: GPLv2+ @@ -93,6 +93,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2-16.20090124snap +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2-15.20090124snap - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:56:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:56:13 +0000 (UTC) Subject: rpms/gweled/devel gweled.spec,1.24,1.25 Message-ID: <20090725015613.9B68511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gweled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13919 Modified Files: gweled.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gweled.spec =================================================================== RCS file: /cvs/pkgs/rpms/gweled/devel/gweled.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- gweled.spec 25 Feb 2009 03:04:32 -0000 1.24 +++ gweled.spec 25 Jul 2009 01:56:13 -0000 1.25 @@ -2,7 +2,7 @@ Name: gweled Version: 0.7 -Release: 14.1 +Release: 15.1 Summary: Swapping gem game @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sounds/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-15.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-14.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:56:29 +0000 (UTC) Subject: rpms/gwenhywfar/devel gwenhywfar.spec,1.33,1.34 Message-ID: <20090725015629.B21A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gwenhywfar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14072 Modified Files: gwenhywfar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gwenhywfar.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwenhywfar/devel/gwenhywfar.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- gwenhywfar.spec 15 Apr 2009 15:39:19 -0000 1.33 +++ gwenhywfar.spec 25 Jul 2009 01:56:29 -0000 1.34 @@ -1,7 +1,7 @@ Summary: A multi-platform helper library for other libraries Name: gwenhywfar Version: 3.7.2 -Release: 2%{?dist} +Release: 3%{?dist} # Download is PHP form at http://www.aquamaniac.de/sites/download/packages.php Source: %{name}-%{version}.tar.gz Group: System Environment/Libraries @@ -71,6 +71,9 @@ find $RPM_BUILD_ROOT -name *.la -exec rm %{_datadir}/aclocal/gwenhywfar.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Bill Nottingham - 3.7.2-2 - buildrequire openssl-devel, for gct-tool (#495813) From jkeating at fedoraproject.org Sat Jul 25 01:56:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:56:47 +0000 (UTC) Subject: rpms/gwget/devel gwget.spec,1.34,1.35 Message-ID: <20090725015647.A881211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gwget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14285 Modified Files: gwget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gwget.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwget/devel/gwget.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- gwget.spec 24 Jul 2009 16:06:10 -0000 1.34 +++ gwget.spec 25 Jul 2009 01:56:47 -0000 1.35 @@ -4,7 +4,7 @@ Name: gwget Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Graphical download manager that uses wget License: GPLv2+ @@ -123,6 +123,9 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Christoph Wickert - 1.0.1-5 - Temporarily disable broken epiphany extension From jkeating at fedoraproject.org Sat Jul 25 01:57:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:57:04 +0000 (UTC) Subject: rpms/gwibber/devel gwibber.spec,1.28,1.29 Message-ID: <20090725015704.16DB311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gwibber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14492 Modified Files: gwibber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gwibber.spec =================================================================== RCS file: /cvs/pkgs/rpms/gwibber/devel/gwibber.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gwibber.spec 14 Jul 2009 02:58:53 -0000 1.28 +++ gwibber.spec 25 Jul 2009 01:57:03 -0000 1.29 @@ -4,7 +4,7 @@ Name: gwibber Version: 1.2.0 -Release: 2.%{bzr_rev}bzr%{?dist} +Release: 3.%{bzr_rev}bzr%{?dist} Epoch: 1 Summary: An open source microblogging client for GNOME developed with Python and GTK @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.2.0-3.349bzr +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Ian Weller - 1:1.2.0-2.349bzr - update to r349, bugfixes From jkeating at fedoraproject.org Sat Jul 25 01:57:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:57:21 +0000 (UTC) Subject: rpms/gxemul/devel gxemul.spec,1.17,1.18 Message-ID: <20090725015721.4242C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gxemul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14665 Modified Files: gxemul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gxemul.spec =================================================================== RCS file: /cvs/pkgs/rpms/gxemul/devel/gxemul.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- gxemul.spec 9 Jul 2009 01:21:33 -0000 1.17 +++ gxemul.spec 25 Jul 2009 01:57:21 -0000 1.18 @@ -1,6 +1,6 @@ Name: gxemul Version: 0.4.7.2 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Tools Summary: Instruction-level machine emulator @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/gxemul.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Tom "spot" Callaway - 0.4.7.2-1 - update to 0.4.7.2 From jkeating at fedoraproject.org Sat Jul 25 01:57:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:57:36 +0000 (UTC) Subject: rpms/gxine/devel gxine.spec,1.28,1.29 Message-ID: <20090725015736.1109811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gxine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14835 Modified Files: gxine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gxine.spec =================================================================== RCS file: /cvs/pkgs/rpms/gxine/devel/gxine.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- gxine.spec 25 Feb 2009 03:09:09 -0000 1.28 +++ gxine.spec 25 Jul 2009 01:57:35 -0000 1.29 @@ -1,6 +1,6 @@ Name: gxine Version: 0.5.903 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK frontend for the xine multimedia library Group: Applications/Multimedia @@ -124,6 +124,9 @@ touch --no-create %{_datadir}/icons/hico %{_libdir}/mozilla/plugins/gxineplugin.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.903-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.903-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:57:49 +0000 (UTC) Subject: rpms/gxmessage/devel gxmessage.spec,1.2,1.3 Message-ID: <20090725015749.ED86011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gxmessage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14985 Modified Files: gxmessage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gxmessage.spec =================================================================== RCS file: /cvs/pkgs/rpms/gxmessage/devel/gxmessage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gxmessage.spec 27 Apr 2009 13:06:37 -0000 1.2 +++ gxmessage.spec 25 Jul 2009 01:57:49 -0000 1.3 @@ -1,6 +1,6 @@ Name: gxmessage Version: 2.12.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK2 based xmessage clone Group: User Interface/X @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Christoph Wickert - 2.12.1-1 - Update to 2.12.1 - License change to GPLv3+ From jkeating at fedoraproject.org Sat Jul 25 01:58:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:58:06 +0000 (UTC) Subject: rpms/gxmms2/devel gxmms2.spec,1.2,1.3 Message-ID: <20090725015806.0B2DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gxmms2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15151 Modified Files: gxmms2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gxmms2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gxmms2/devel/gxmms2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gxmms2.spec 25 Feb 2009 03:10:05 -0000 1.2 +++ gxmms2.spec 25 Jul 2009 01:58:05 -0000 1.3 @@ -1,7 +1,7 @@ Name: gxmms2 Summary: A graphical audio player Version: 0.7.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Multimedia Source0: http://wejp.k.vu/projects/xmms2/%{name}-%{version}.tar.gz @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_libdir}/gkrellm2/plugins/gkrellxmms2.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:58:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:58:21 +0000 (UTC) Subject: rpms/gyachi/devel gyachi.spec,1.46,1.47 Message-ID: <20090725015821.2E81111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gyachi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15318 Modified Files: gyachi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gyachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/gyachi/devel/gyachi.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- gyachi.spec 3 Jul 2009 16:10:28 -0000 1.46 +++ gyachi.spec 25 Jul 2009 01:58:20 -0000 1.47 @@ -27,7 +27,7 @@ Name: gyachi Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Yahoo! chat client with Webcam and voice support Group: Applications/Internet @@ -371,6 +371,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Gregory D Hosler - 1.2.1-4 - Fix double post of YM-9 client text. From jkeating at fedoraproject.org Sat Jul 25 01:58:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:58:35 +0000 (UTC) Subject: rpms/gypsy/devel gypsy.spec,1.8,1.9 Message-ID: <20090725015835.5A35211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gypsy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15483 Modified Files: gypsy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gypsy.spec =================================================================== RCS file: /cvs/pkgs/rpms/gypsy/devel/gypsy.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gypsy.spec 19 Jun 2009 12:28:12 -0000 1.8 +++ gypsy.spec 25 Jul 2009 01:58:35 -0000 1.9 @@ -1,6 +1,6 @@ Name: gypsy Version: 0.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A GPS multiplexing daemon Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gypsy %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Bastien Nocera 0.6-9 - Gypsy is supposed to run as a system service, as root From jkeating at fedoraproject.org Sat Jul 25 01:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:58:50 +0000 (UTC) Subject: rpms/gzip/devel gzip.spec,1.47,1.48 Message-ID: <20090725015850.2A8CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15635 Modified Files: gzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: gzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/gzip/devel/gzip.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- gzip.spec 13 Mar 2009 14:29:04 -0000 1.47 +++ gzip.spec 25 Jul 2009 01:58:49 -0000 1.48 @@ -1,7 +1,7 @@ Summary: The GNU data compression program Name: gzip Version: 1.3.12 -Release: 9%{?dist} +Release: 10%{?dist} # info pages are under GFDL license License: GPLv2 and GFDL Group: Applications/File @@ -89,6 +89,9 @@ fi %{_infodir}/gzip.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Ivana Varekova - 1.3.12-9 - fix #484213 - zdiff shows no output From jkeating at fedoraproject.org Sat Jul 25 01:59:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:59:07 +0000 (UTC) Subject: rpms/hackedbox/devel hackedbox.spec,1.14,1.15 Message-ID: <20090725015907.6D7E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hackedbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15821 Modified Files: hackedbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hackedbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/hackedbox/devel/hackedbox.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hackedbox.spec 25 Feb 2009 03:13:40 -0000 1.14 +++ hackedbox.spec 25 Jul 2009 01:59:07 -0000 1.15 @@ -1,7 +1,7 @@ Summary: The bastard son of Blackbox, a small and fast Window Manager Name: hackedbox Version: 0.8.5 -Release: 6%{?dist} +Release: 7%{?dist} # Most of the sources are MIT-licensed from blackbox, but a (very) small # portion is GPLv2+, so that is the resulting license License: GPLv2+ @@ -83,6 +83,9 @@ EOF %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:59:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:59:23 +0000 (UTC) Subject: rpms/hal/devel hal.spec,1.196,1.197 Message-ID: <20090725015923.8790811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15990 Modified Files: hal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.196 retrieving revision 1.197 diff -u -p -r1.196 -r1.197 --- hal.spec 23 Jul 2009 01:28:11 -0000 1.196 +++ hal.spec 25 Jul 2009 01:59:23 -0000 1.197 @@ -27,7 +27,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.12 #Release: 14%{?dist} -Release: 26.%{?alphatag}%{?dist}.4 +Release: 27.%{?alphatag}%{?dist}.4 URL: http://www.freedesktop.org/Software/hal #Source0: http://hal.freedesktop.org/releases/%{name}-%{version}rc1.tar.bz2 Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz @@ -288,6 +288,9 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.12-27.20090226git.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 David Zeuthen - 0.5.12-26.20090226git.4 - Disable ConsoleKit+PolicyKit support and lock down most interfaces with at_console - Disable ACL management, this is now handled by udev >= 145 From jkeating at fedoraproject.org Sat Jul 25 01:59:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:59:36 +0000 (UTC) Subject: rpms/hal-cups-utils/devel hal-cups-utils.spec,1.76,1.77 Message-ID: <20090725015936.BD48111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hal-cups-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16142 Modified Files: hal-cups-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hal-cups-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal-cups-utils/devel/hal-cups-utils.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- hal-cups-utils.spec 25 Feb 2009 03:16:25 -0000 1.76 +++ hal-cups-utils.spec 25 Jul 2009 01:59:36 -0000 1.77 @@ -1,7 +1,7 @@ Summary: Halified CUPS utilities Name: hal-cups-utils Version: 0.6.19 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: https://fedorahosted.org/hal-cups-utils @@ -60,6 +60,9 @@ exit 0 %{_initrddir}/cups-config-daemon %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 01:59:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 01:59:49 +0000 (UTC) Subject: rpms/hal-info/devel hal-info.spec,1.44,1.45 Message-ID: <20090725015949.8685411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hal-info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16284 Modified Files: hal-info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hal-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal-info/devel/hal-info.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- hal-info.spec 16 Jul 2009 10:47:19 -0000 1.44 +++ hal-info.spec 25 Jul 2009 01:59:49 -0000 1.45 @@ -1,7 +1,7 @@ Summary: Device information files for HAL Name: hal-info Version: 20090716 -Release: 1%{?dist} +Release: 2%{?dist} License: AFL or GPLv2 Group: System Environment/Libraries URL: http://www.freedesktop.org/Software/hal @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/preprobe/10osvendor/*.fdi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090716-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Richard Hughes - 20090716-1 - New upstream release to fix some more music players, resume problems and keymaps. See http://lists.freedesktop.org/archives/hal/2009-July/013481.html From jkeating at fedoraproject.org Sat Jul 25 02:00:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:00:01 +0000 (UTC) Subject: rpms/halberd/devel halberd.spec,1.8,1.9 Message-ID: <20090725020001.BFC7811C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/halberd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16418 Modified Files: halberd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: halberd.spec =================================================================== RCS file: /cvs/pkgs/rpms/halberd/devel/halberd.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- halberd.spec 1 Apr 2009 04:00:52 -0000 1.8 +++ halberd.spec 25 Jul 2009 02:00:01 -0000 1.9 @@ -3,7 +3,7 @@ Name: halberd Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to discover HTTP load balancers Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 0.2.3-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 02:00:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:00:17 +0000 (UTC) Subject: rpms/halevt/devel halevt.spec,1.9,1.10 Message-ID: <20090725020017.EFAB511C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/halevt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16617 Modified Files: halevt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: halevt.spec =================================================================== RCS file: /cvs/pkgs/rpms/halevt/devel/halevt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- halevt.spec 25 Feb 2009 03:19:12 -0000 1.9 +++ halevt.spec 25 Jul 2009 02:00:17 -0000 1.10 @@ -1,6 +1,6 @@ Name: halevt Version: 0.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generic handler for HAL events Group: Applications/System @@ -94,6 +94,9 @@ fi %dir %attr(755,halevt,halevt) %{_localstatedir}/lib/halevt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:00:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:00:33 +0000 (UTC) Subject: rpms/hamcrest/devel hamcrest.spec,1.4,1.5 Message-ID: <20090725020033.5A02C11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hamcrest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16765 Modified Files: hamcrest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hamcrest.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamcrest/devel/hamcrest.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hamcrest.spec 25 Feb 2009 03:20:09 -0000 1.4 +++ hamcrest.spec 25 Jul 2009 02:00:33 -0000 1.5 @@ -53,7 +53,7 @@ Name: hamcrest Version: 1.1 -Release: 8.1%{?dist} +Release: 9.1%{?dist} Epoch: 0 Summary: Library of matchers for building test expressions License: BSD @@ -297,6 +297,9 @@ fi %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1-9.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.1-8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:00:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:00:47 +0000 (UTC) Subject: rpms/hamlib/devel hamlib.spec,1.38,1.39 Message-ID: <20090725020047.38D8911C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hamlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16916 Modified Files: hamlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hamlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamlib/devel/hamlib.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- hamlib.spec 1 Apr 2009 17:19:13 -0000 1.38 +++ hamlib.spec 25 Jul 2009 02:00:47 -0000 1.39 @@ -2,7 +2,7 @@ Name: hamlib Version: 1.2.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Run-time library to control radio transceivers and receivers Group: System Environment/Libraries @@ -203,6 +203,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/hamlibtcl* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 1.2.8-3 - Add hackish fix for python binding issue From jkeating at fedoraproject.org Sat Jul 25 02:01:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:01:01 +0000 (UTC) Subject: rpms/hamster-applet/devel hamster-applet.spec,1.27,1.28 Message-ID: <20090725020101.010E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hamster-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17085 Modified Files: hamster-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hamster-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hamster-applet/devel/hamster-applet.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- hamster-applet.spec 14 Jul 2009 18:33:23 -0000 1.27 +++ hamster-applet.spec 25 Jul 2009 02:01:00 -0000 1.28 @@ -3,7 +3,7 @@ Name: hamster-applet Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Time tracking applet Group: Development/Languages @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Mads Villadsen - 2.27.4-1 - Update to latest development release - Better autocompletion From jkeating at fedoraproject.org Sat Jul 25 02:01:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:01:14 +0000 (UTC) Subject: rpms/hanazono-fonts/devel hanazono-fonts.spec,1.3,1.4 Message-ID: <20090725020114.BD58111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hanazono-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17224 Modified Files: hanazono-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hanazono-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/hanazono-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hanazono-fonts.spec 25 Feb 2009 03:22:55 -0000 1.3 +++ hanazono-fonts.spec 25 Jul 2009 02:01:14 -0000 1.4 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20081012 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Japanese Mincho-typeface TrueType font Group: User Interface/X @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20081012-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20081012-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:01:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:01:32 +0000 (UTC) Subject: rpms/happy/devel happy.spec,1.12,1.13 Message-ID: <20090725020132.0FE6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/happy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17411 Modified Files: happy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: happy.spec =================================================================== RCS file: /cvs/pkgs/rpms/happy/devel/happy.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- happy.spec 17 May 2009 01:17:43 -0000 1.12 +++ happy.spec 25 Jul 2009 02:01:31 -0000 1.13 @@ -4,7 +4,7 @@ Name: happy # part of haskell-platform Version: 1.18.4 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Tools URL: http://haskell.org/happy/ @@ -66,6 +66,9 @@ restorecon %{_bindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jens Petersen - 1.18.4-2 - buildrequires ghc-rpm-macros From jkeating at fedoraproject.org Sat Jul 25 02:01:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:01:50 +0000 (UTC) Subject: rpms/haproxy/devel haproxy.spec,1.19,1.20 Message-ID: <20090725020150.2796611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/haproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17614 Modified Files: haproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: haproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/haproxy/devel/haproxy.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- haproxy.spec 17 May 2009 21:35:41 -0000 1.19 +++ haproxy.spec 25 Jul 2009 02:01:50 -0000 1.20 @@ -6,7 +6,7 @@ Name: haproxy Version: 1.3.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments Group: System Environment/Daemons @@ -127,6 +127,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jeremy Hinegardner - 1.3.18-1 - update to 1.3.18 From jkeating at fedoraproject.org Sat Jul 25 02:02:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:02:06 +0000 (UTC) Subject: rpms/hardinfo/devel hardinfo.spec,1.33,1.34 Message-ID: <20090725020206.3231611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hardinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17773 Modified Files: hardinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hardinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/hardinfo/devel/hardinfo.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- hardinfo.spec 10 Apr 2009 12:14:49 -0000 1.33 +++ hardinfo.spec 25 Jul 2009 02:02:06 -0000 1.34 @@ -1,6 +1,6 @@ Name: hardinfo Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: System Profiler and Benchmark Group: Applications/System @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Adel Gadllah 0.5.1-1 - Update to 0.5.1 From cwickert at fedoraproject.org Sat Jul 25 02:02:13 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:02:13 +0000 (UTC) Subject: rpms/lxde-common/devel .cvsignore, 1.4, 1.5 lxde-common-0.4-lxde-logout.desktop.patch, 1.1, 1.2 lxde-common-0.4-lxpanel-config.patch, 1.3, 1.4 lxde-common.spec, 1.12, 1.13 sources, 1.4, 1.5 Message-ID: <20090725020213.8A0B911C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17871 Modified Files: .cvsignore lxde-common-0.4-lxde-logout.desktop.patch lxde-common-0.4-lxpanel-config.patch lxde-common.spec sources Log Message: * Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 - Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 May 2009 11:14:36 -0000 1.4 +++ .cvsignore 25 Jul 2009 02:02:12 -0000 1.5 @@ -1 +1 @@ -lxde-common-0.4.1.tar.bz2 +lxde-common-0.4.2.tar.bz2 lxde-common-0.4-lxde-logout.desktop.patch: lxde-logout.desktop.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: lxde-common-0.4-lxde-logout.desktop.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/devel/lxde-common-0.4-lxde-logout.desktop.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxde-common-0.4-lxde-logout.desktop.patch 13 Jun 2009 17:39:45 -0000 1.1 +++ lxde-common-0.4-lxde-logout.desktop.patch 25 Jul 2009 02:02:13 -0000 1.2 @@ -1,17 +1,18 @@ --- lxde-common-0.4.orig/lxde-logout.desktop.in 2008-11-11 10:47:06.000000000 +0100 +++ lxde-common-0.4/lxde-logout.desktop.in 2009-06-13 18:44:37.000000000 +0200 -@@ -1,9 +1,14 @@ +@@ -1,11 +1,14 @@ [Desktop Entry] Encoding=UTF-8 +Type=Application Name=Logout +Name[de]=Abmelden -+Name[fr]=D?connexion Name[zh_TW]=?? Name[fi]=Kirjaudu ulos Comment=Logout, shutdown or reboot +Comment[de]=Abmelden, herunterfahren oder neu starten -+Comment[fr]=D?connexion, arr?ter ou red?marrer Comment[zh_TW]=??????????? Comment[fi]=Kirjaudu ulos, sammuta tai k?ynnist? tietokone uudelleen - Icon=stock_exit +-Icon=stock_exit ++Icon=gnome-logout + Exec=lxde-logout + NoDisplay=true lxde-common-0.4-lxpanel-config.patch: config | 2 +- panel.in | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) Index: lxde-common-0.4-lxpanel-config.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/devel/lxde-common-0.4-lxpanel-config.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxde-common-0.4-lxpanel-config.patch 13 Jun 2009 17:39:45 -0000 1.3 +++ lxde-common-0.4-lxpanel-config.patch 25 Jul 2009 02:02:13 -0000 1.4 @@ -27,7 +27,7 @@ diff -dur lxde-common-0.4.orig/lxpanel/p type = menu Config { - image=@prefix@/share/lxde/images/lxde-icon.png -+ image=fedora-logo-icon.png ++ image=start-here.png system { } separator { Index: lxde-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/devel/lxde-common.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- lxde-common.spec 13 Jun 2009 21:49:37 -0000 1.12 +++ lxde-common.spec 25 Jul 2009 02:02:13 -0000 1.13 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=442270 Name: lxde-common -Version: 0.4.1 -Release: 3%{?dist} +Version: 0.4.2 +Release: 1%{?dist} Summary: Default configuration files for LXDE Group: User Interface/Desktops @@ -49,13 +49,24 @@ This package contains the configuration Desktop Environment. +%package -n lxde-icon-theme +Summary: Default icon theme for LXDE +Group: User Interface/Desktops +License: LGPLv3 +URL: http://nuovext.pwsp.net/ + +%description -n lxde-icon-theme +nuoveXT is a very complete set of icons for Linux, Mac OS X and Windows. It is +also the default icon-theme of LXDE, the Lightweight X11 Desktop Environment. + + %prep %setup -q %patch10 -p1 -b .orig %patch11 -p1 -b .orig %patch12 -p1 -b .orig %patch13 -p1 -b .logout-banner -%patch14 -p1 -b .olpc +#%patch14 -p1 -b .olpc %patch4 -p1 -b .pulseaudio %patch6 -p1 -b .desktop %if 0%{?fedora} > 8 @@ -70,8 +81,6 @@ Desktop Environment. %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -# the icon theme is packaged in a different package -rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/nuoveXT2/ # only used by obsolete lxsession, not lxsession-lite rm -f $RPM_BUILD_ROOT%{_sysconfdir}/xdg/lxsession/LXDE/default desktop-file-install \ @@ -86,6 +95,21 @@ desktop-file-install rm -rf $RPM_BUILD_ROOT +%post -n lxde-icon-theme +touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + +%postun -n lxde-icon-theme +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : +fi + + +%posttrans -n lxde-icon-theme +gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + %files %defattr(-,root,root,-) %doc AUTHORS COPYING @@ -101,8 +125,18 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xsessions/LXDE.desktop %{_datadir}/applications/lxde-*.desktop +%files -n lxde-icon-theme +%doc icon-theme/AUTHORS icon-theme/COPYING +%defattr(-,root,root,-) +%{_datadir}/icons/nuoveXT2/ + %changelog +* Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 +- Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Christoph Wickert - 0.4.1-3 - Add XO keyboard shortcuts Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 May 2009 11:14:36 -0000 1.4 +++ sources 25 Jul 2009 02:02:13 -0000 1.5 @@ -1 +1 @@ -1d71d77d331b56ab26b0c13b709d032e lxde-common-0.4.1.tar.bz2 +81978c149ef7f349d904c4796d623ee6 lxde-common-0.4.2.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 02:02:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:02:22 +0000 (UTC) Subject: rpms/hardlink/devel hardlink.spec,1.32,1.33 Message-ID: <20090725020222.4FB9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hardlink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17972 Modified Files: hardlink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hardlink.spec =================================================================== RCS file: /cvs/pkgs/rpms/hardlink/devel/hardlink.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- hardlink.spec 25 Feb 2009 03:25:38 -0000 1.32 +++ hardlink.spec 25 Jul 2009 02:02:22 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Create a tree of hardlinks Name: hardlink Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Epoch: 1 Group: System Environment/Base URL: http://cvs.fedora.redhat.com/viewcvs/devel/hardlink/ @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/hardlink.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:02:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:02:38 +0000 (UTC) Subject: rpms/harminv/devel harminv.spec,1.12,1.13 Message-ID: <20090725020238.AA63C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/harminv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18195 Modified Files: harminv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: harminv.spec =================================================================== RCS file: /cvs/pkgs/rpms/harminv/devel/harminv.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- harminv.spec 25 Feb 2009 03:26:34 -0000 1.12 +++ harminv.spec 25 Jul 2009 02:02:38 -0000 1.13 @@ -1,6 +1,6 @@ Name: harminv Version: 1.3.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Program and library for solving the harmonic inversion problem Group: Applications/Engineering @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:02:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:02:55 +0000 (UTC) Subject: rpms/hartke-aurulent-sans-fonts/devel hartke-aurulent-sans-fonts.spec, 1.2, 1.3 Message-ID: <20090725020255.9208F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hartke-aurulent-sans-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18356 Modified Files: hartke-aurulent-sans-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hartke-aurulent-sans-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/hartke-aurulent-sans-fonts/devel/hartke-aurulent-sans-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hartke-aurulent-sans-fonts.spec 25 Feb 2009 03:27:27 -0000 1.2 +++ hartke-aurulent-sans-fonts.spec 25 Jul 2009 02:02:55 -0000 1.3 @@ -10,7 +10,7 @@ punctuation, as well as some accents. It Name: %{fontname}-fonts Version: 20070504 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A sans-serif font for use as primary interface font Group: User Interface/X @@ -94,6 +94,9 @@ rm -fr %{buildroot} %doc README *.pdf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070504-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20070504-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:03:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:03:10 +0000 (UTC) Subject: rpms/hatari/devel hatari.spec,1.12,1.13 Message-ID: <20090725020310.61D0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hatari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18496 Modified Files: hatari.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hatari.spec =================================================================== RCS file: /cvs/pkgs/rpms/hatari/devel/hatari.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- hatari.spec 25 Feb 2009 03:28:22 -0000 1.12 +++ hatari.spec 25 Jul 2009 02:03:10 -0000 1.13 @@ -1,7 +1,7 @@ Summary: An Atari ST emulator suitable for playing games Name: hatari Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Emulators URL: http://hatari.berlios.de/ @@ -110,6 +110,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:03:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:03:25 +0000 (UTC) Subject: rpms/hatools/devel hatools.spec,1.2,1.3 Message-ID: <20090725020325.65F0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hatools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18660 Modified Files: hatools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hatools.spec =================================================================== RCS file: /cvs/pkgs/rpms/hatools/devel/hatools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hatools.spec 25 Feb 2009 03:29:17 -0000 1.2 +++ hatools.spec 25 Jul 2009 02:03:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: hatools Version: 2.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Improved shell scripting in High Availability environment Group: System Environment/Base @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:03:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:03:40 +0000 (UTC) Subject: rpms/hawknl/devel hawknl.spec,1.5,1.6 Message-ID: <20090725020340.208FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hawknl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18818 Modified Files: hawknl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hawknl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hawknl/devel/hawknl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hawknl.spec 25 Feb 2009 03:30:10 -0000 1.5 +++ hawknl.spec 25 Jul 2009 02:03:40 -0000 1.6 @@ -1,6 +1,6 @@ Name: hawknl Version: 1.68 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Game oriented network library Group: System Environment/Libraries License: LGPLv2+ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.68-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.68-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:03:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:03:57 +0000 (UTC) Subject: rpms/hddtemp/devel hddtemp.spec,1.27,1.28 Message-ID: <20090725020357.B540411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hddtemp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19003 Modified Files: hddtemp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hddtemp.spec =================================================================== RCS file: /cvs/pkgs/rpms/hddtemp/devel/hddtemp.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- hddtemp.spec 25 Feb 2009 03:31:07 -0000 1.27 +++ hddtemp.spec 25 Jul 2009 02:03:57 -0000 1.28 @@ -2,7 +2,7 @@ Name: hddtemp Version: 0.3 -Release: 0.17.%{beta}%{?dist} +Release: 0.18.%{beta}%{?dist} Summary: Hard disk temperature tool Group: Applications/System @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-0.18.beta15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3-0.17.beta15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:04:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:04:15 +0000 (UTC) Subject: rpms/hdf/devel hdf.spec,1.31,1.32 Message-ID: <20090725020415.28BD111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19245 Modified Files: hdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/hdf/devel/hdf.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- hdf.spec 7 Apr 2009 15:03:05 -0000 1.31 +++ hdf.spec 25 Jul 2009 02:04:15 -0000 1.32 @@ -1,6 +1,6 @@ Name: hdf Version: 4.2r4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A general purpose library and file format for storing scientific data License: BSD Group: System Environment/Libraries @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2r4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Orion Poplawski 4.2r4-2 - Add Provides hdf-static to hdf-devel (bug #494529) From jkeating at fedoraproject.org Sat Jul 25 02:04:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:04:30 +0000 (UTC) Subject: rpms/hdf5/devel hdf5.spec,1.37,1.38 Message-ID: <20090725020430.D9B9811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hdf5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19425 Modified Files: hdf5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hdf5.spec =================================================================== RCS file: /cvs/pkgs/rpms/hdf5/devel/hdf5.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- hdf5.spec 2 Jun 2009 17:26:06 -0000 1.37 +++ hdf5.spec 25 Jul 2009 02:04:30 -0000 1.38 @@ -1,6 +1,6 @@ Name: hdf5 Version: 1.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A general purpose library and file format for storing scientific data License: BSD Group: System Environment/Libraries @@ -159,6 +159,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Orion Poplawski 1.8.3-1 - Update to 1.8.3 - Update signal and detect patches From jkeating at fedoraproject.org Sat Jul 25 02:04:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:04:46 +0000 (UTC) Subject: rpms/hdhomerun/devel hdhomerun.spec,1.10,1.11 Message-ID: <20090725020446.48FA011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hdhomerun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19574 Modified Files: hdhomerun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hdhomerun.spec =================================================================== RCS file: /cvs/pkgs/rpms/hdhomerun/devel/hdhomerun.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hdhomerun.spec 30 Jun 2009 18:43:05 -0000 1.10 +++ hdhomerun.spec 25 Jul 2009 02:04:46 -0000 1.11 @@ -1,7 +1,7 @@ %define releasedate 20090415 Name: hdhomerun Version: 0.0 -Release: 0.11.%{releasedate}%{?dist} +Release: 0.12.%{releasedate}%{?dist} Summary: Silicon Dust HDHomeRun configuration utility Group: Applications/System @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/hdhomerun_config_gui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0-0.12.20090415 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Jarod Wilson 0.0-0.11.20090415 - Add README.firmware, pointing folks to firmware downloads From jkeating at fedoraproject.org Sat Jul 25 02:05:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:05:01 +0000 (UTC) Subject: rpms/hdparm/devel hdparm.spec,1.47,1.48 Message-ID: <20090725020501.14A3211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hdparm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19734 Modified Files: hdparm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hdparm.spec =================================================================== RCS file: /cvs/pkgs/rpms/hdparm/devel/hdparm.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- hdparm.spec 17 Jul 2009 21:05:49 -0000 1.47 +++ hdparm.spec 25 Jul 2009 02:05:00 -0000 1.48 @@ -1,7 +1,7 @@ Summary: A utility for displaying and/or setting hard disk parameters Name: hdparm Version: 9.16 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/System URL: http://sourceforge.net/projects/hdparm/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/hdparm.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Karsten Hopp 9.16-1 - update to 9.16, fixes disk spindowns From cwickert at fedoraproject.org Sat Jul 25 02:05:12 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:05:12 +0000 (UTC) Subject: rpms/lxpanel/devel noautobuild,NONE,1.1 Message-ID: <20090725020512.F417611C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19851 Added Files: noautobuild Log Message: opt out from mass rebuild --- NEW FILE noautobuild --- From jkeating at fedoraproject.org Sat Jul 25 02:05:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:05:17 +0000 (UTC) Subject: rpms/hdrprep/devel hdrprep.spec,1.2,1.3 Message-ID: <20090725020517.66D8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hdrprep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19913 Modified Files: hdrprep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hdrprep.spec =================================================================== RCS file: /cvs/pkgs/rpms/hdrprep/devel/hdrprep.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hdrprep.spec 25 Feb 2009 03:34:35 -0000 1.2 +++ hdrprep.spec 25 Jul 2009 02:05:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: hdrprep Version: 0.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Align digicam images and fix EXIF information Group: Applications/Multimedia @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:05:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:05:33 +0000 (UTC) Subject: rpms/healpix/devel healpix.spec,1.2,1.3 Message-ID: <20090725020533.7DD3911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/healpix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20077 Modified Files: healpix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: healpix.spec =================================================================== RCS file: /cvs/pkgs/rpms/healpix/devel/healpix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- healpix.spec 7 Apr 2009 08:44:37 -0000 1.2 +++ healpix.spec 25 Jul 2009 02:05:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: healpix Version: 2.11c -Release: 5%{?dist} +Release: 6%{?dist} Summary: Hierarchical Equal Area isoLatitude Pixelization of a sphere Group: Development/Libraries @@ -312,6 +312,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.11c-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Lubomir Rintel (Fedora Astronomy) - 2.11c-5 - Minor style adjustments - Don't override sane gcc flags From jkeating at fedoraproject.org Sat Jul 25 02:05:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:05:48 +0000 (UTC) Subject: rpms/healpy/devel healpy.spec,1.1,1.2 Message-ID: <20090725020548.1BF4011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/healpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20231 Modified Files: healpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: healpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/healpy/devel/healpy.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- healpy.spec 18 Jun 2009 22:44:04 -0000 1.1 +++ healpy.spec 25 Jul 2009 02:05:47 -0000 1.2 @@ -2,7 +2,7 @@ Name: healpy Version: 0.9.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A python wrapper of the healpix library Group: Applications/Engineering @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Joseph Smidt 0.9.6.1-3 - Changed name back to healpy From jkeating at fedoraproject.org Sat Jul 25 02:06:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:06:03 +0000 (UTC) Subject: rpms/heartbeat/devel heartbeat.spec,1.35,1.36 Message-ID: <20090725020603.C399D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/heartbeat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20391 Modified Files: heartbeat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: heartbeat.spec =================================================================== RCS file: /cvs/pkgs/rpms/heartbeat/devel/heartbeat.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- heartbeat.spec 25 Jun 2009 20:11:57 -0000 1.35 +++ heartbeat.spec 25 Jul 2009 02:06:03 -0000 1.36 @@ -6,7 +6,7 @@ Summary: Heartbeat subsystem for High-Availability Linux Name: heartbeat Version: 2.1.4 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 and LGPLv2+ URL: http://linux-ha.org/ Group: System Environment/Daemons @@ -347,6 +347,9 @@ fi %{_bindir}/hb_gui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Jochen Schmitt - 2.1.4-11 - Revert changes of 2-1.4-11 From jkeating at fedoraproject.org Sat Jul 25 02:06:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:06:18 +0000 (UTC) Subject: rpms/hedgewars/devel hedgewars.spec,1.20,1.21 Message-ID: <20090725020618.3EA4D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hedgewars/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20549 Modified Files: hedgewars.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hedgewars.spec =================================================================== RCS file: /cvs/pkgs/rpms/hedgewars/devel/hedgewars.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- hedgewars.spec 25 May 2009 11:14:53 -0000 1.20 +++ hedgewars.spec 25 Jul 2009 02:06:18 -0000 1.21 @@ -1,6 +1,6 @@ Name: hedgewars Version: 0.9.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 2D tankbattle game with the tanks replaced by hedgehogs Group: Amusements/Games License: GPL+ @@ -83,6 +83,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Hans de Goede 0.9.11-1 - New upstream release 0.9.11 From jkeating at fedoraproject.org Sat Jul 25 02:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:06:33 +0000 (UTC) Subject: rpms/hellanzb/devel hellanzb.spec,1.4,1.5 Message-ID: <20090725020633.034D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hellanzb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20725 Modified Files: hellanzb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hellanzb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hellanzb/devel/hellanzb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hellanzb.spec 25 Feb 2009 03:36:24 -0000 1.4 +++ hellanzb.spec 25 Jul 2009 02:06:32 -0000 1.5 @@ -2,7 +2,7 @@ Name: hellanzb Version: 0.13 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Hands-free nzb downloader and post processor Group: Applications/Internet @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:06:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:06:50 +0000 (UTC) Subject: rpms/hello/devel hello.spec,1.2,1.3 Message-ID: <20090725020650.9248811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hello/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20903 Modified Files: hello.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hello.spec =================================================================== RCS file: /cvs/pkgs/rpms/hello/devel/hello.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hello.spec 25 Feb 2009 03:37:28 -0000 1.2 +++ hello.spec 25 Jul 2009 02:06:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: hello Version: 2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Prints a Familiar, Friendly Greeting Group: Development/Tools # Parts of the documentation are under GFDL, BSD, and Public Domain @@ -64,6 +64,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:07:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:07:03 +0000 (UTC) Subject: rpms/help2man/devel help2man.spec,1.13,1.14 Message-ID: <20090725020703.687A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/help2man/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21045 Modified Files: help2man.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: help2man.spec =================================================================== RCS file: /cvs/pkgs/rpms/help2man/devel/help2man.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- help2man.spec 18 May 2009 04:00:14 -0000 1.13 +++ help2man.spec 25 Jul 2009 02:07:03 -0000 1.14 @@ -5,7 +5,7 @@ Name: help2man Summary: Create simple man pages from --help output Version: 1.36.4 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Tools License: GPLv2+ URL: http://www.gnu.org/software/help2man @@ -86,6 +86,9 @@ fi %lang(sv) %{_mandir}/sv/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.36.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 corsepiu at fedoraproject.org> - 1.36.4-4 - Apply patch from http://bugs.gentoo.org/show_bug.cgi?id=237378#c6 to address BZ #494089. From jkeating at fedoraproject.org Sat Jul 25 02:07:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:07:17 +0000 (UTC) Subject: rpms/hercules/devel hercules.spec,1.24,1.25 Message-ID: <20090725020717.B8F3B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hercules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21209 Modified Files: hercules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hercules.spec =================================================================== RCS file: /cvs/pkgs/rpms/hercules/devel/hercules.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- hercules.spec 25 Feb 2009 03:39:17 -0000 1.24 +++ hercules.spec 25 Jul 2009 02:07:17 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Hercules S/370, ESA/390, and z/Architecture emulator Name: hercules Version: 3.06 -Release: 2%{?dist} +Release: 3%{?dist} License: QPL Group: Applications/Emulators URL: http://www.hercules-390.org/ @@ -99,6 +99,9 @@ sed -i 's|\${DESTPREFIX}/lib/|%{_libdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:07:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:07:30 +0000 (UTC) Subject: rpms/hesinfo/devel hesinfo.spec,1.5,1.6 Message-ID: <20090725020730.E48E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hesinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21344 Modified Files: hesinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hesinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/hesinfo/devel/hesinfo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hesinfo.spec 25 Feb 2009 03:40:10 -0000 1.5 +++ hesinfo.spec 25 Jul 2009 02:07:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: hesinfo Version: 3.1.0 -Release: 4 +Release: 5 Source: ftp://athena-dist.mit.edu/pub/ATHENA/hesiod/hesinfo-%{version}.tar.gz Summary: Command-line Hesiod client. Group: Applications/Internet @@ -17,6 +17,9 @@ which can be used to query Hesiod. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:07:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:07:48 +0000 (UTC) Subject: rpms/hesiod/devel hesiod.spec,1.33,1.34 Message-ID: <20090725020748.D677C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hesiod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21502 Modified Files: hesiod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hesiod.spec =================================================================== RCS file: /cvs/pkgs/rpms/hesiod/devel/hesiod.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- hesiod.spec 25 Feb 2009 03:41:12 -0000 1.33 +++ hesiod.spec 25 Jul 2009 02:07:48 -0000 1.34 @@ -1,6 +1,6 @@ Name: hesiod Version: 3.1.0 -Release: 15 +Release: 16 Source: ftp://athena-dist.mit.edu/pub/ATHENA/hesiod/hesiod-%{version}.tar.gz Patch0: hesiod-3.1.0-classes.patch Patch1: hesiod-3.1.0-env.patch @@ -34,6 +34,9 @@ ensure synchronize the files among multi the header files and libraries required for building programs which use Hesiod. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.1.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:08:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:08:02 +0000 (UTC) Subject: rpms/hevea/devel hevea.spec,1.10,1.11 Message-ID: <20090725020802.DBD8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hevea/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21653 Modified Files: hevea.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hevea.spec =================================================================== RCS file: /cvs/pkgs/rpms/hevea/devel/hevea.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hevea.spec 25 Feb 2009 03:42:10 -0000 1.10 +++ hevea.spec 25 Jul 2009 02:08:02 -0000 1.11 @@ -2,7 +2,7 @@ Name: hevea Version: 1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: LaTeX to HTML translator Group: Applications/Publishing License: QPL @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:08:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:08:15 +0000 (UTC) Subject: rpms/hexedit/devel hexedit.spec,1.29,1.30 Message-ID: <20090725020815.B9E7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hexedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21792 Modified Files: hexedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hexedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/hexedit/devel/hexedit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- hexedit.spec 25 Feb 2009 03:43:05 -0000 1.29 +++ hexedit.spec 25 Jul 2009 02:08:15 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A hexadecimal file viewer and editor Name: hexedit Version: 1.2.12 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Editors URL: http://merd.sourceforge.net/pixel/hexedit.html @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.12-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.12-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:08:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:08:29 +0000 (UTC) Subject: rpms/hexter-dssi/devel hexter-dssi.spec,1.12,1.13 Message-ID: <20090725020829.93C3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hexter-dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21957 Modified Files: hexter-dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hexter-dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hexter-dssi/devel/hexter-dssi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- hexter-dssi.spec 30 May 2009 06:14:49 -0000 1.12 +++ hexter-dssi.spec 25 Jul 2009 02:08:29 -0000 1.13 @@ -1,7 +1,7 @@ Summary: DSSI software synthesizer plugin emulating DX7 Name: hexter-dssi Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://dssi.sourceforge.net/hexter.html Source0: http://easynews.dl.sourceforge.net/sourceforge/dssi/hexter-%{version}.tar.gz Source1: hexter.desktop @@ -81,6 +81,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %exclude %{_libdir}/dssi/hexter.la %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Orcan Ogetbil - 0.6.2-2 - Add a .desktop file From jkeating at fedoraproject.org Sat Jul 25 02:08:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:08:42 +0000 (UTC) Subject: rpms/hfsplus-tools/devel hfsplus-tools.spec,1.9,1.10 Message-ID: <20090725020842.E220911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hfsplus-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22103 Modified Files: hfsplus-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hfsplus-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/hfsplus-tools/devel/hfsplus-tools.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- hfsplus-tools.spec 25 Feb 2009 03:44:53 -0000 1.9 +++ hfsplus-tools.spec 25 Jul 2009 02:08:42 -0000 1.10 @@ -1,6 +1,6 @@ Name: hfsplus-tools Version: 332.14 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Tools to create/check Apple HFS+ filesystems Group: System Environment/Base @@ -110,6 +110,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 332.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 332.14-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:08:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:08:56 +0000 (UTC) Subject: rpms/hfsplusutils/devel hfsplusutils.spec,1.14,1.15 Message-ID: <20090725020856.CA12211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hfsplusutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22242 Modified Files: hfsplusutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hfsplusutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/hfsplusutils/devel/hfsplusutils.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hfsplusutils.spec 25 Feb 2009 03:45:50 -0000 1.14 +++ hfsplusutils.spec 25 Jul 2009 02:08:56 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Tools for reading Macintosh HFS+ volumes Name: hfsplusutils Version: 1.0.4 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/File @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 02:09:07 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:09:07 +0000 (UTC) Subject: rpms/lxpanel/devel lxpanel.spec,1.20,1.21 Message-ID: <20090725020907.BADF011C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22352 Modified Files: lxpanel.spec Log Message: * Sat Jul 25 2009 Christoph Wickert 0.4.1-2 - Patch to fix CPU usage monitor history - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/devel/lxpanel.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- lxpanel.spec 5 May 2009 02:54:21 -0000 1.20 +++ lxpanel.spec 25 Jul 2009 02:09:07 -0000 1.21 @@ -5,7 +5,7 @@ Name: lxpanel Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight X11 desktop panel Group: User Interface/Desktops @@ -15,6 +15,8 @@ Source0: http://downloads.sourcef Patch1: lxpanel-default.patch Patch2: lxpanel-0.4.0-manpages.patch Patch3: lxpanel-0.3.8.1-system-config-network.patch +# http://sourceforge.net/tracker/?func=detail&aid=2800828&group_id=180858&atid=894871 +Patch4: lxpanel-0.4.1-cpu-history.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #BuildRequires: docbook-utils @@ -53,6 +55,7 @@ developing applications that use %{name} %patch1 -p1 -b .default %patch2 -p1 -b .manpage %patch3 -p1 -b .system-config-network +%patch4 -p1 -b .history %build %configure @@ -83,6 +86,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lxpanel.pc %changelog +* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +- Patch to fix CPU usage monitor history +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Christoph Wickert 0.4.1-1 - Update to 0.4.1 From jkeating at fedoraproject.org Sat Jul 25 02:09:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:09:10 +0000 (UTC) Subject: rpms/hfsutils/devel hfsutils.spec,1.20,1.21 Message-ID: <20090725020910.8BED511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hfsutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22400 Modified Files: hfsutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hfsutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/hfsutils/devel/hfsutils.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- hfsutils.spec 25 Feb 2009 03:46:43 -0000 1.20 +++ hfsutils.spec 25 Jul 2009 02:09:10 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Tools for reading and writing Macintosh HFS volumes. Name: hfsutils Version: 3.2.6 -Release: 16%{?dist} +Release: 17%{?dist} Group: Applications/File License: GPLv2+ Source: ftp://ftp.mars.org/pub/hfs/%{name}-%{version}.tar.gz @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/rsrc.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.6-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2.6-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:09:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:09:25 +0000 (UTC) Subject: rpms/hgsvn/devel hgsvn.spec,1.5,1.6 Message-ID: <20090725020925.9EA8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hgsvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22605 Modified Files: hgsvn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hgsvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hgsvn/devel/hgsvn.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hgsvn.spec 25 Feb 2009 03:47:38 -0000 1.5 +++ hgsvn.spec 25 Jul 2009 02:09:25 -0000 1.6 @@ -4,7 +4,7 @@ Summary: A set of scripts to work locally on subversion checkouts using mercurial Name: hgsvn Version: 0.1.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Development/Tools URL : http://pypi.python.org/pypi/%{name}/ @@ -55,6 +55,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitelib}/%{name}-%{version}-py%{pyver}.egg-info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:09:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:09:37 +0000 (UTC) Subject: rpms/hicolor-icon-theme/devel hicolor-icon-theme.spec,1.24,1.25 Message-ID: <20090725020937.7E8D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hicolor-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22741 Modified Files: hicolor-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hicolor-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/hicolor-icon-theme/devel/hicolor-icon-theme.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- hicolor-icon-theme.spec 25 Feb 2009 03:48:33 -0000 1.24 +++ hicolor-icon-theme.spec 25 Jul 2009 02:09:37 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Basic requirement for icon themes Name: hicolor-icon-theme Version: 0.10 -Release: 6 +Release: 7 License: GPL+ Group: User Interface/Desktops URL: http://icon-theme.freedesktop.org/wiki/HicolorTheme @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %{_datadir}/icons/hicolor/icon-theme.cache %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:09:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:09:50 +0000 (UTC) Subject: rpms/highlight/devel highlight.spec,1.45,1.46 Message-ID: <20090725020950.8440411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/highlight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22876 Modified Files: highlight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: highlight.spec =================================================================== RCS file: /cvs/pkgs/rpms/highlight/devel/highlight.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- highlight.spec 29 Jun 2009 16:38:32 -0000 1.45 +++ highlight.spec 25 Jul 2009 02:09:50 -0000 1.46 @@ -1,7 +1,7 @@ Name: highlight Summary: Universal source code to formatted text converter Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Tools License: GPLv3 @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/highlight.xpm %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Jochen Schmitt 2.10-2 - License was changed go GPLv3 from upstream From jkeating at fedoraproject.org Sat Jul 25 02:10:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:10:02 +0000 (UTC) Subject: rpms/higlayout/devel higlayout.spec,1.3,1.4 Message-ID: <20090725021002.CF9F111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/higlayout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23015 Modified Files: higlayout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: higlayout.spec =================================================================== RCS file: /cvs/pkgs/rpms/higlayout/devel/higlayout.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- higlayout.spec 25 Feb 2009 03:50:17 -0000 1.3 +++ higlayout.spec 25 Jul 2009 02:10:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: higlayout Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easy to use and powerful layout manager for Java Group: System Environment/Libraries License: LGPLv2+ @@ -81,6 +81,9 @@ ln -s %{name}-%{version} %{_javadocdir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:10:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:10:16 +0000 (UTC) Subject: rpms/hippo-canvas/devel hippo-canvas.spec,1.17,1.18 Message-ID: <20090725021016.9ECEB11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hippo-canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23163 Modified Files: hippo-canvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hippo-canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/hippo-canvas/devel/hippo-canvas.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- hippo-canvas.spec 25 Feb 2009 03:51:10 -0000 1.17 +++ hippo-canvas.spec 25 Jul 2009 02:10:16 -0000 1.18 @@ -2,7 +2,7 @@ Name: hippo-canvas Version: 0.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A canvas widget Group: System Environment/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.3.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:10:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:10:28 +0000 (UTC) Subject: rpms/hmaccalc/devel hmaccalc.spec,1.4,1.5 Message-ID: <20090725021028.DE20B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hmaccalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23292 Modified Files: hmaccalc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hmaccalc.spec =================================================================== RCS file: /cvs/pkgs/rpms/hmaccalc/devel/hmaccalc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hmaccalc.spec 22 Jul 2009 22:11:34 -0000 1.4 +++ hmaccalc.spec 25 Jul 2009 02:10:28 -0000 1.5 @@ -13,7 +13,7 @@ Name: hmaccalc Version: 0.9.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for computing and checking HMAC values for files Group: System Environment/Base @@ -61,6 +61,9 @@ make check %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 11 2009 Nalin Dahyabhai 0.9.9-1 - look for prelink at compile-time, and if we find it try to invoke it using a full pathname before trying with $PATH (#512275) From jkeating at fedoraproject.org Sat Jul 25 02:10:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:10:43 +0000 (UTC) Subject: rpms/hmmer/devel hmmer.spec,1.9,1.10 Message-ID: <20090725021043.31ACF11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hmmer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23431 Modified Files: hmmer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hmmer.spec =================================================================== RCS file: /cvs/pkgs/rpms/hmmer/devel/hmmer.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- hmmer.spec 25 Feb 2009 03:52:03 -0000 1.9 +++ hmmer.spec 25 Jul 2009 02:10:43 -0000 1.10 @@ -1,6 +1,6 @@ Name: hmmer Version: 2.3.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Profile HMM software for protein sequence analysis Group: Applications/Engineering @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:10:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:10:57 +0000 (UTC) Subject: rpms/hnb/devel hnb.spec,1.6,1.7 Message-ID: <20090725021057.08F3A11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hnb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23569 Modified Files: hnb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hnb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hnb/devel/hnb.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hnb.spec 25 Feb 2009 03:52:57 -0000 1.6 +++ hnb.spec 25 Jul 2009 02:10:56 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Hierarchical Notebook Name: hnb Version: 1.9.18 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: http://hnb.sourceforge.net Group: Applications/Productivity @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.18-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9.18-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:11:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:11:09 +0000 (UTC) Subject: rpms/homebank/devel homebank.spec,1.13,1.14 Message-ID: <20090725021109.989B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/homebank/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23710 Modified Files: homebank.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: homebank.spec =================================================================== RCS file: /cvs/pkgs/rpms/homebank/devel/homebank.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- homebank.spec 28 Jun 2009 10:49:16 -0000 1.13 +++ homebank.spec 25 Jul 2009 02:11:09 -0000 1.14 @@ -1,6 +1,6 @@ Name: homebank Version: 4.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Free easy personal accounting for all Group: Applications/Productivity @@ -103,6 +103,9 @@ update-desktop-database &> /dev/null || %{_datadir}/%{name}/help %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Johan Cwiklinski 4.0.4-1 - 4.0.4 From jkeating at fedoraproject.org Sat Jul 25 02:11:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:11:22 +0000 (UTC) Subject: rpms/honeyd/devel honeyd.spec,1.3,1.4 Message-ID: <20090725021122.94B6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/honeyd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23868 Modified Files: honeyd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: honeyd.spec =================================================================== RCS file: /cvs/pkgs/rpms/honeyd/devel/honeyd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- honeyd.spec 25 Feb 2009 03:54:57 -0000 1.3 +++ honeyd.spec 25 Jul 2009 02:11:22 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Honeypot daemon Name: honeyd Version: 1.5c -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ and BSD Group: Applications/Internet URL: http://www.honeyd.org/ @@ -110,6 +110,9 @@ fi %{_mandir}/man8/farpd.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5c-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5c-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:11:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:11:34 +0000 (UTC) Subject: rpms/horde/devel horde.spec,1.12,1.13 Message-ID: <20090725021134.C593211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/horde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23995 Modified Files: horde.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: horde.spec =================================================================== RCS file: /cvs/pkgs/rpms/horde/devel/horde.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- horde.spec 25 Feb 2009 03:55:58 -0000 1.12 +++ horde.spec 25 Jul 2009 02:11:34 -0000 1.13 @@ -1,6 +1,6 @@ Name: horde Version: 3.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The common Horde Framework for all Horde applications Source0: ftp://ftp.horde.org/pub/horde/tarballs/horde-%{version}.tar.gz @@ -253,6 +253,9 @@ rm -rf %{buildroot} %doc README.Fedora %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:11:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:11:47 +0000 (UTC) Subject: rpms/hosts3d/devel hosts3d.spec,1.8,1.9 Message-ID: <20090725021147.AAC0611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hosts3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24140 Modified Files: hosts3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hosts3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/hosts3d/devel/hosts3d.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hosts3d.spec 7 Jul 2009 15:37:17 -0000 1.8 +++ hosts3d.spec 25 Jul 2009 02:11:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: hosts3d Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D real-time network visualiser Group: Applications/Internet @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Simon Wesp - 1.00-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 02:12:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:12:00 +0000 (UTC) Subject: rpms/hotssh/devel hotssh.spec,1.4,1.5 Message-ID: <20090725021200.D8F8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hotssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24286 Modified Files: hotssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hotssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/hotssh/devel/hotssh.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hotssh.spec 25 Feb 2009 03:57:46 -0000 1.4 +++ hotssh.spec 25 Jul 2009 02:12:00 -0000 1.5 @@ -4,7 +4,7 @@ Summary: Secure Shell Client Name: hotssh Version: 0.2.6 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://ftp.gnome.org/pub/GNOME/sources/hotssh/0.2/hotssh-%{version}.tar.bz2 License: GPLv2+ Group: User Interface/Desktops @@ -64,6 +64,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 02:12:10 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:12:10 +0000 (UTC) Subject: rpms/lxlauncher/F-11 .cvsignore, 1.2, 1.3 lxlauncher.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090725021210.8712111C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxlauncher/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24383/F-11 Modified Files: .cvsignore lxlauncher.spec sources Log Message: * Tue Jul 07 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 - Switch from libgnome-menu to menu-cache Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 Jul 2008 20:22:22 -0000 1.2 +++ .cvsignore 25 Jul 2009 02:12:10 -0000 1.3 @@ -1 +1 @@ -lxlauncher-0.2.tar.gz +lxlauncher-0.2.1.tar.gz Index: lxlauncher.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-11/lxlauncher.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxlauncher.spec 25 Feb 2009 22:19:10 -0000 1.2 +++ lxlauncher.spec 25 Jul 2009 02:12:10 -0000 1.3 @@ -1,16 +1,16 @@ Name: lxlauncher -Version: 0.2 -Release: 2%{?dist} -Summary: Open source replacement for Asus Launcher on the EeePC +Version: 0.2.1 +Release: 1%{?dist} +Summary: Open source replacement for Launcher on the EeePC Group: User Interface/Desktops License: GPLv2+ -URL: http://lxde.sourceforge.net/ +URL: http://lxde.org/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.12 startup-notification-devel -BuildRequires: gnome-menus-devel >= 2.18.0 +BuildRequires: menu-cache-devel BuildRequires: gettext %description @@ -31,7 +31,8 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' +mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name} mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/backgrounds mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/icons %find_lang %{name} @@ -44,18 +45,26 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING README +%dir %{_sysconfdir}/xdg/lxlauncher/ +%config(noreplace) %{_sysconfdir}/xdg/lxlauncher/gtkrc +%config(noreplace) %{_sysconfdir}/xdg/lxlauncher/settings.conf +%config(noreplace) %{_sysconfdir}/xdg/menus/lxlauncher-applications.menu %{_bindir}/%{name} %{_datadir}/%{name}/ -%{_datadir}/desktop-directories/*.directory +%{_datadir}/desktop-directories/lxde-*.directory %changelog +* Tue Jul 07 2009 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 +- Switch from libgnome-menu to menu-cache + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Sat Jun 21 2008 Christoph Wickert - 0.2-1 +* Sat Jun 21 2008 Christoph Wickert - 0.2-1 - Update to 0.2 - Remove empty ChangeLog -* Mon May 12 2008 Christoph Wickert - 0.1.6-1 +* Mon May 12 2008 Christoph Wickert - 0.1.6-1 - Initial Fedora RPM Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 Jul 2008 20:22:22 -0000 1.2 +++ sources 25 Jul 2009 02:12:10 -0000 1.3 @@ -1 +1 @@ -fc4405e6d20c1de5eef86569ed748847 lxlauncher-0.2.tar.gz +5dbe6076eb1a411278e1fc2bccf2d75d lxlauncher-0.2.1.tar.gz From cwickert at fedoraproject.org Sat Jul 25 02:12:10 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:12:10 +0000 (UTC) Subject: rpms/lxlauncher/F-10 .cvsignore, 1.2, 1.3 lxlauncher.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090725021210.BB92111C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxlauncher/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24383/F-10 Modified Files: .cvsignore lxlauncher.spec sources Log Message: * Tue Jul 07 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 - Switch from libgnome-menu to menu-cache Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 26 Jul 2008 20:22:22 -0000 1.2 +++ .cvsignore 25 Jul 2009 02:12:10 -0000 1.3 @@ -1 +1 @@ -lxlauncher-0.2.tar.gz +lxlauncher-0.2.1.tar.gz Index: lxlauncher.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-10/lxlauncher.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxlauncher.spec 26 Jul 2008 20:22:22 -0000 1.1 +++ lxlauncher.spec 25 Jul 2009 02:12:10 -0000 1.2 @@ -1,16 +1,16 @@ Name: lxlauncher -Version: 0.2 +Version: 0.2.1 Release: 1%{?dist} -Summary: Open source replacement for Asus Launcher on the EeePC +Summary: Open source replacement for Launcher on the EeePC Group: User Interface/Desktops License: GPLv2+ -URL: http://lxde.sourceforge.net/ +URL: http://lxde.org/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.12 startup-notification-devel -BuildRequires: gnome-menus-devel >= 2.18.0 +BuildRequires: menu-cache-devel BuildRequires: gettext %description @@ -31,7 +31,8 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' +mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name} mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/backgrounds mkdir -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/icons %find_lang %{name} @@ -44,15 +45,26 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING README +%dir %{_sysconfdir}/xdg/lxlauncher/ +%config(noreplace) %{_sysconfdir}/xdg/lxlauncher/gtkrc +%config(noreplace) %{_sysconfdir}/xdg/lxlauncher/settings.conf +%config(noreplace) %{_sysconfdir}/xdg/menus/lxlauncher-applications.menu %{_bindir}/%{name} %{_datadir}/%{name}/ -%{_datadir}/desktop-directories/*.directory +%{_datadir}/desktop-directories/lxde-*.directory %changelog -* Sat Jun 21 2008 Christoph Wickert - 0.2-1 +* Tue Jul 07 2009 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 +- Switch from libgnome-menu to menu-cache + +* Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jun 21 2008 Christoph Wickert - 0.2-1 - Update to 0.2 - Remove empty ChangeLog -* Mon May 12 2008 Christoph Wickert - 0.1.6-1 +* Mon May 12 2008 Christoph Wickert - 0.1.6-1 - Initial Fedora RPM Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 26 Jul 2008 20:22:22 -0000 1.2 +++ sources 25 Jul 2009 02:12:10 -0000 1.3 @@ -1 +1 @@ -fc4405e6d20c1de5eef86569ed748847 lxlauncher-0.2.tar.gz +5dbe6076eb1a411278e1fc2bccf2d75d lxlauncher-0.2.1.tar.gz From jkeating at fedoraproject.org Sat Jul 25 02:12:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:12:13 +0000 (UTC) Subject: rpms/hotwire/devel hotwire.spec,1.25,1.26 Message-ID: <20090725021213.ED31411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hotwire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24454 Modified Files: hotwire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hotwire.spec =================================================================== RCS file: /cvs/pkgs/rpms/hotwire/devel/hotwire.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- hotwire.spec 25 Feb 2009 03:58:42 -0000 1.25 +++ hotwire.spec 25 Jul 2009 02:12:13 -0000 1.26 @@ -4,7 +4,7 @@ Summary: Hotwire Shell Name: hotwire Version: 0.721 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://hotwire-shell.googlecode.com/files/hotwire-%{version}.zip License: GPLv2+ Group: User Interface/Desktops @@ -80,6 +80,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.721-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.721-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:12:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:12:28 +0000 (UTC) Subject: rpms/hpic/devel hpic.spec,1.12,1.13 Message-ID: <20090725021228.9340C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hpic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24607 Modified Files: hpic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hpic.spec =================================================================== RCS file: /cvs/pkgs/rpms/hpic/devel/hpic.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- hpic.spec 23 Feb 2009 20:46:59 -0000 1.12 +++ hpic.spec 25 Jul 2009 02:12:28 -0000 1.13 @@ -1,6 +1,6 @@ Name: hpic Version: 0.52.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Healpix manipulation binaries and library Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_libdir}/libhpic.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.52.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Matthew Truch - 0.52.2-7 - Bump for mass rebuild. From jkeating at fedoraproject.org Sat Jul 25 02:12:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:12:41 +0000 (UTC) Subject: rpms/hping3/devel hping3.spec,1.14,1.15 Message-ID: <20090725021241.CBCC911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hping3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24764 Modified Files: hping3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hping3.spec =================================================================== RCS file: /cvs/pkgs/rpms/hping3/devel/hping3.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- hping3.spec 25 May 2009 07:43:31 -0000 1.14 +++ hping3.spec 25 Jul 2009 02:12:41 -0000 1.15 @@ -1,7 +1,7 @@ %define cvs 20051105 Name: hping3 Version: 0.0.%{cvs} -Release: 14%{?dist} +Release: 15%{?dist} Summary: TCP/IP stack auditing and much more Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.20051105-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Dan Horak - 0.0.20051105-14 - update the bytesex patch to include s390/s390x arch From jkeating at fedoraproject.org Sat Jul 25 02:12:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:12:56 +0000 (UTC) Subject: rpms/hplip/devel hplip.spec,1.207,1.208 Message-ID: <20090725021256.29FA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hplip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24927 Modified Files: hplip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hplip.spec =================================================================== RCS file: /cvs/pkgs/rpms/hplip/devel/hplip.spec,v retrieving revision 1.207 retrieving revision 1.208 diff -u -p -r1.207 -r1.208 --- hplip.spec 23 Jul 2009 17:30:37 -0000 1.207 +++ hplip.spec 25 Jul 2009 02:12:55 -0000 1.208 @@ -1,7 +1,7 @@ Summary: HP Linux Imaging and Printing Project Name: hplip Version: 3.9.2 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ and MIT Group: System Environment/Daemons Conflicts: system-config-printer < 0.6.132 @@ -336,6 +336,9 @@ fi exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Tim Waugh 3.9.2-8 - Use existing libusb-using routines to try fetching Device ID. From jkeating at fedoraproject.org Sat Jul 25 02:13:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:13:08 +0000 (UTC) Subject: rpms/hscolour/devel hscolour.spec,1.3,1.4 Message-ID: <20090725021308.A5C4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hscolour/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25062 Modified Files: hscolour.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hscolour.spec =================================================================== RCS file: /cvs/pkgs/rpms/hscolour/devel/hscolour.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hscolour.spec 24 May 2009 00:06:58 -0000 1.3 +++ hscolour.spec 25 Jul 2009 02:13:08 -0000 1.4 @@ -6,7 +6,7 @@ Name: hscolour Version: 1.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Colourizes Haskell code Group: Development/Tools @@ -139,6 +139,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Jens Petersen - 1.13-1 - update to 1.13 - buildrequires ghc-rpm-macros (cabal2spec-0.16) From jkeating at fedoraproject.org Sat Jul 25 02:13:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:13:23 +0000 (UTC) Subject: rpms/hspell/devel hspell.spec,1.15,1.16 Message-ID: <20090725021323.2E6C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25213 Modified Files: hspell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/hspell/devel/hspell.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- hspell.spec 25 Feb 2009 04:01:34 -0000 1.15 +++ hspell.spec 25 Jul 2009 02:13:23 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A Hebrew spell checker Name: hspell Version: 1.0 -Release: 12%{?dist} +Release: 13%{?dist} URL: http://ivrix.org.il/projects/spell-checker/ Source: http://ivrix.org.il/projects/spell-checker/hspell-%{version}.tar.gz # No version specified. @@ -102,6 +102,9 @@ rm -rf %{buildroot} %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:13:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:13:39 +0000 (UTC) Subject: rpms/hsqldb/devel hsqldb.spec,1.44,1.45 Message-ID: <20090725021339.1C1F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hsqldb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25351 Modified Files: hsqldb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hsqldb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hsqldb/devel/hsqldb.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- hsqldb.spec 25 Feb 2009 04:02:28 -0000 1.44 +++ hsqldb.spec 25 Jul 2009 02:13:39 -0000 1.45 @@ -38,7 +38,7 @@ Name: hsqldb Version: 1.8.0.10 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Hsqldb Database Engine License: BSD @@ -270,6 +270,9 @@ fi %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.8.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:1.8.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:13:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:13:55 +0000 (UTC) Subject: rpms/ht/devel ht.spec,1.4,1.5 Message-ID: <20090725021355.3B57A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ht/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25509 Modified Files: ht.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ht.spec =================================================================== RCS file: /cvs/pkgs/rpms/ht/devel/ht.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ht.spec 5 Apr 2009 18:22:06 -0000 1.4 +++ ht.spec 25 Jul 2009 02:13:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: ht Version: 2.0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File editor/viewer/analyzer for executables Group: Applications/Editors @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ht %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Dan Hor?k - 2.0.16-1 - version update From jkeating at fedoraproject.org Sat Jul 25 02:14:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:14:10 +0000 (UTC) Subject: rpms/ht2html/devel ht2html.spec,1.7,1.8 Message-ID: <20090725021410.F423111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ht2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25667 Modified Files: ht2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ht2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/ht2html/devel/ht2html.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ht2html.spec 25 Feb 2009 04:04:14 -0000 1.7 +++ ht2html.spec 25 Jul 2009 02:14:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: ht2html Version: 2.0 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://ht2html.sourceforge.net Source0: http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz Source1: %{name} @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:14:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:14:27 +0000 (UTC) Subject: rpms/htdig/devel htdig.spec,1.50,1.51 Message-ID: <20090725021427.3D8A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/htdig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25814 Modified Files: htdig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: htdig.spec =================================================================== RCS file: /cvs/pkgs/rpms/htdig/devel/htdig.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- htdig.spec 25 Feb 2009 04:05:06 -0000 1.50 +++ htdig.spec 25 Jul 2009 02:14:27 -0000 1.51 @@ -5,7 +5,7 @@ Summary: ht://Dig - Web search engine Name: htdig Version: 3.2.0 -Release: 0.6.b6%{?dist} +Release: 0.7.b6%{?dist} Epoch: 4 License: GPLv2 Group: Applications/Internet @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4:3.2.0-0.7.b6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4:3.2.0-0.6.b6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:14:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:14:43 +0000 (UTC) Subject: rpms/html-xml-utils/devel html-xml-utils.spec,1.8,1.9 Message-ID: <20090725021443.6CA9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/html-xml-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25996 Modified Files: html-xml-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: html-xml-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/html-xml-utils/devel/html-xml-utils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- html-xml-utils.spec 19 Jul 2009 08:27:50 -0000 1.8 +++ html-xml-utils.spec 25 Jul 2009 02:14:43 -0000 1.9 @@ -1,6 +1,6 @@ Name: html-xml-utils Version: 5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A number of simple utilities for manipulating HTML and XML files Group: Development/Tools @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Milos Jakubicek - 5.4-1 - Update to 5.4 (bug in removal of /./ fixed. Now leaves one / instead of none). From jkeating at fedoraproject.org Sat Jul 25 02:14:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:14:58 +0000 (UTC) Subject: rpms/html2ps/devel html2ps.spec,1.2,1.3 Message-ID: <20090725021458.9323211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/html2ps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26165 Modified Files: html2ps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: html2ps.spec =================================================================== RCS file: /cvs/pkgs/rpms/html2ps/devel/html2ps.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- html2ps.spec 25 Feb 2009 04:07:04 -0000 1.2 +++ html2ps.spec 25 Jul 2009 02:14:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: html2ps Version: 1.0 -Release: 0.2.b5%{?dist} +Release: 0.3.b5%{?dist} Summary: HTML to PostScript converter Group: Applications/Publishing @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*xhtml2ps.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.3.b5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-0.2.b5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:15:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:15:14 +0000 (UTC) Subject: rpms/html2text/devel html2text.spec,1.2,1.3 Message-ID: <20090725021514.2A24211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/html2text/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26333 Modified Files: html2text.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: html2text.spec =================================================================== RCS file: /cvs/pkgs/rpms/html2text/devel/html2text.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- html2text.spec 25 Feb 2009 04:08:03 -0000 1.2 +++ html2text.spec 25 Jul 2009 02:15:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: html2text Version: 1.3.2a -Release: 5%{?dist} +Release: 6%{?dist} Summary: HTML-to-text converter Group: Applications/Text @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.2a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:15:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:15:31 +0000 (UTC) Subject: rpms/html401-dtds/devel html401-dtds.spec,1.7,1.8 Message-ID: <20090725021531.4E27711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/html401-dtds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26536 Modified Files: html401-dtds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: html401-dtds.spec =================================================================== RCS file: /cvs/pkgs/rpms/html401-dtds/devel/html401-dtds.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- html401-dtds.spec 25 Feb 2009 04:09:01 -0000 1.7 +++ html401-dtds.spec 25 Jul 2009 02:15:31 -0000 1.8 @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.9 +Release: %{date}.10 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.01-19991224.10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.01-19991224.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:15:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:15:45 +0000 (UTC) Subject: rpms/htmldoc/devel htmldoc.spec,1.14,1.15 Message-ID: <20090725021545.EFA8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/htmldoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26683 Modified Files: htmldoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: htmldoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/htmldoc/devel/htmldoc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- htmldoc.spec 25 Feb 2009 04:10:02 -0000 1.14 +++ htmldoc.spec 25 Jul 2009 02:15:45 -0000 1.15 @@ -1,6 +1,6 @@ Name: htmldoc Version: 1.8.27 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Converter from HTML into indexed HTML, PostScript, or PDF Group: Applications/Publishing @@ -173,6 +173,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.27-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.8.27-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:16:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:16:04 +0000 (UTC) Subject: rpms/htmlparser/devel htmlparser.spec,1.3,1.4 Message-ID: <20090725021604.9212A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/htmlparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26869 Modified Files: htmlparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: htmlparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/htmlparser/devel/htmlparser.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- htmlparser.spec 12 May 2009 13:17:56 -0000 1.3 +++ htmlparser.spec 25 Jul 2009 02:16:04 -0000 1.4 @@ -1,6 +1,6 @@ Name: htmlparser Version: 1.6 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 Summary: HTML Parser, a Java library used to parse HTML Group: Development/Tools License: LGPLv2+ @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Karsten Hopp 1.6-4.1 - Specify source and target as 1.4 to make it build - require java-1.6.0 for com.sun.tools.doclets From jkeating at fedoraproject.org Sat Jul 25 02:16:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:16:21 +0000 (UTC) Subject: rpms/htmlview/devel htmlview.spec,1.31,1.32 Message-ID: <20090725021621.3FC0511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/htmlview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27071 Modified Files: htmlview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: htmlview.spec =================================================================== RCS file: /cvs/pkgs/rpms/htmlview/devel/htmlview.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- htmlview.spec 27 Feb 2009 22:48:15 -0000 1.31 +++ htmlview.spec 25 Jul 2009 02:16:21 -0000 1.32 @@ -1,6 +1,6 @@ Name: htmlview Version: 4.0.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools for launching Preferred Applications License: Public Domain Source0: htmlview @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/redhat-email.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.0.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:16:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:16:37 +0000 (UTC) Subject: rpms/htop/devel htop.spec,1.22,1.23 Message-ID: <20090725021637.46DA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/htop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27279 Modified Files: htop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: htop.spec =================================================================== RCS file: /cvs/pkgs/rpms/htop/devel/htop.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- htop.spec 23 Jun 2009 15:09:12 -0000 1.22 +++ htop.spec 25 Jul 2009 02:16:37 -0000 1.23 @@ -1,6 +1,6 @@ Name: htop Version: 0.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Interactive process viewer Summary(pl): Interaktywna przegl?darka proces?w @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Rafa? Psota - 0.8.3-1 - update to 0.8.3 From jkeating at fedoraproject.org Sat Jul 25 02:16:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:16:52 +0000 (UTC) Subject: rpms/http_ping/devel http_ping.spec,1.15,1.16 Message-ID: <20090725021652.C3C8F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/http_ping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27455 Modified Files: http_ping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: http_ping.spec =================================================================== RCS file: /cvs/pkgs/rpms/http_ping/devel/http_ping.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- http_ping.spec 25 Feb 2009 04:13:44 -0000 1.15 +++ http_ping.spec 25 Jul 2009 02:16:52 -0000 1.16 @@ -1,6 +1,6 @@ Name: http_ping Version: 20050629 -Release: 9%{?dist} +Release: 10%{?dist} Summary: HTTP latency measuring utility Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050629-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20050629-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:17:16 +0000 (UTC) Subject: rpms/httpd/devel httpd.spec,1.135,1.136 Message-ID: <20090725021716.8FD8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/httpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27701 Modified Files: httpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: httpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/httpd/devel/httpd.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- httpd.spec 16 Jun 2009 11:47:48 -0000 1.135 +++ httpd.spec 25 Jul 2009 02:17:16 -0000 1.136 @@ -7,7 +7,7 @@ Summary: Apache HTTP Server Name: httpd Version: 2.2.11 -Release: 9 +Release: 10 URL: http://httpd.apache.org/ Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.gz Source1: index.html @@ -483,6 +483,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/httpd/build/*.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.11-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Joe Orton 2.2.11-9 - build -manual as noarch From jkeating at fedoraproject.org Sat Jul 25 02:17:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:17:31 +0000 (UTC) Subject: rpms/httperf/devel httperf.spec,1.3,1.4 Message-ID: <20090725021731.2176511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/httperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27867 Modified Files: httperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: httperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/httperf/devel/httperf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- httperf.spec 25 Feb 2009 04:15:35 -0000 1.3 +++ httperf.spec 25 Jul 2009 02:17:31 -0000 1.4 @@ -1,6 +1,6 @@ Name: httperf Version: 0.9.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool for measuring web server performance Group: Development/Tools License: GPLv2+ with exceptions @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:17:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:17:49 +0000 (UTC) Subject: rpms/httptunnel/devel httptunnel.spec,1.3,1.4 Message-ID: <20090725021749.DED3D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/httptunnel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28075 Modified Files: httptunnel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: httptunnel.spec =================================================================== RCS file: /cvs/pkgs/rpms/httptunnel/devel/httptunnel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- httptunnel.spec 25 Feb 2009 04:17:21 -0000 1.3 +++ httptunnel.spec 25 Jul 2009 02:17:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: httptunnel Version: 3.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tunnels a data stream in HTTP requests Group: Applications/Internet @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:18:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:18:03 +0000 (UTC) Subject: rpms/httpunit/devel httpunit.spec,1.3,1.4 Message-ID: <20090725021803.E746311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/httpunit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28221 Modified Files: httpunit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: httpunit.spec =================================================================== RCS file: /cvs/pkgs/rpms/httpunit/devel/httpunit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- httpunit.spec 25 Feb 2009 04:18:14 -0000 1.3 +++ httpunit.spec 25 Jul 2009 02:18:03 -0000 1.4 @@ -30,7 +30,7 @@ Name: httpunit Version: 1.6.2 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 0 Summary: Automated web site testing toolkit License: MIT @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0:1.6.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:18:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:18:18 +0000 (UTC) Subject: rpms/httrack/devel httrack.spec,1.12,1.13 Message-ID: <20090725021818.4492611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/httrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28370 Modified Files: httrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: httrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/httrack/devel/httrack.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- httrack.spec 31 Mar 2009 14:53:48 -0000 1.12 +++ httrack.spec 25 Jul 2009 02:18:18 -0000 1.13 @@ -12,7 +12,7 @@ Summary: Website copier and offline browser Name: httrack Version: 3.43.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.httrack.com/ @@ -164,6 +164,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.43.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Tom "spot" Callaway - 3.43.2-3 - Updated 'Requires: openssl = 0.9.8k' From jkeating at fedoraproject.org Sat Jul 25 02:18:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:18:32 +0000 (UTC) Subject: rpms/hugin/devel hugin.spec,1.22,1.23 Message-ID: <20090725021832.0203011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28536 Modified Files: hugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugin/devel/hugin.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- hugin.spec 20 Jul 2009 20:54:17 -0000 1.22 +++ hugin.spec 25 Jul 2009 02:18:31 -0000 1.23 @@ -1,7 +1,7 @@ Summary: A panoramic photo stitcher and more Name: hugin Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://downloads.sourceforge.net/hugin/%{name}-%{version}.tar.gz @@ -125,6 +125,9 @@ touch --no-create %{_datadir}/icons/gnom %{_mandir}/man1/vig_optimize.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Bruno Postle 0.8.0-1 - 0.8.0 release From jkeating at fedoraproject.org Sat Jul 25 02:18:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:18:45 +0000 (UTC) Subject: rpms/hugs98/devel hugs98.spec,1.15,1.16 Message-ID: <20090725021845.D2D1811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hugs98/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28688 Modified Files: hugs98.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hugs98.spec =================================================================== RCS file: /cvs/pkgs/rpms/hugs98/devel/hugs98.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- hugs98.spec 4 Jul 2009 11:11:57 -0000 1.15 +++ hugs98.spec 25 Jul 2009 02:18:45 -0000 1.16 @@ -2,7 +2,7 @@ Name: hugs98 Version: 2006.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Haskell Interpreter Group: Development/Languages @@ -210,6 +210,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2006.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Gerard Milmeister - 2006.09-6 - added alternatives setup for runhaskell and friends From jkeating at fedoraproject.org Sat Jul 25 02:19:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:19:00 +0000 (UTC) Subject: rpms/hulahop/devel hulahop.spec,1.13,1.14 Message-ID: <20090725021900.B06F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hulahop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28830 Modified Files: hulahop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hulahop.spec =================================================================== RCS file: /cvs/pkgs/rpms/hulahop/devel/hulahop.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- hulahop.spec 19 Jul 2009 11:43:22 -0000 1.13 +++ hulahop.spec 25 Jul 2009 02:19:00 -0000 1.14 @@ -2,7 +2,7 @@ Name: hulahop Version: 0.5.0 -Release: 0%{?dist} +Release: 1%{?dist} Summary: A pygtk widget for embedding mozilla Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tomeu Vizoso - 0.5.0-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 02:19:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:19:13 +0000 (UTC) Subject: rpms/hunspell/devel hunspell.spec,1.71,1.72 Message-ID: <20090725021913.EAFE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28975 Modified Files: hunspell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell/devel/hunspell.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- hunspell.spec 23 Jul 2009 19:33:47 -0000 1.71 +++ hunspell.spec 25 Jul 2009 02:19:13 -0000 1.72 @@ -1,7 +1,7 @@ Name: hunspell Summary: A spell checker and morphological analyzer library Version: 1.2.8 -Release: 10%{?dist} +Release: 11%{?dist} Source0: http://downloads.sourceforge.net/%{name}/hunspell-%{version}.tar.gz Source1: http://people.debian.org/~agmartin/misc/ispellaff2myspell Source2: http://people.redhat.com/caolanm/hunspell/wordlist2hunspell @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/hunspell.3.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.8-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Caolan McNamara - 1.2.8-10 - run tests in check From jkeating at fedoraproject.org Sat Jul 25 02:19:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:19:33 +0000 (UTC) Subject: rpms/hunspell-af/devel hunspell-af.spec,1.9,1.10 Message-ID: <20090725021933.B661911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-af/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29161 Modified Files: hunspell-af.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-af.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-af/devel/hunspell-af.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- hunspell-af.spec 25 Feb 2009 04:23:42 -0000 1.9 +++ hunspell-af.spec 25 Jul 2009 02:19:33 -0000 1.10 @@ -2,7 +2,7 @@ Name: hunspell-af Summary: Afrikaans hunspell dictionary %define upstreamid 20080825 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/afrikaans/myspell-af_ZA-0.%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080825-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080825-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:19:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:19:49 +0000 (UTC) Subject: rpms/hunspell-am/devel hunspell-am.spec,1.1,1.2 Message-ID: <20090725021949.4C15D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-am/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29334 Modified Files: hunspell-am.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-am.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-am/devel/hunspell-am.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-am.spec 7 Jul 2009 08:30:23 -0000 1.1 +++ hunspell-am.spec 25 Jul 2009 02:19:49 -0000 1.2 @@ -2,7 +2,7 @@ Name: hunspell-am Summary: Amharic hunspell dictionaries %define upstreamid 20090704 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.cs.ru.nl/~biniam/geez/dict/am_ET.zip Group: Applications/Text URL: http://www.cs.ru.nl/~biniam/geez/index.php @@ -37,5 +37,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090704-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Caolan McNamara - 0.20090704-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:20:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:20:04 +0000 (UTC) Subject: rpms/hunspell-ar/devel hunspell-ar.spec,1.5,1.6 Message-ID: <20090725022004.EAB6311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29502 Modified Files: hunspell-ar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ar.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ar/devel/hunspell-ar.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-ar.spec 6 May 2009 12:28:12 -0000 1.5 +++ hunspell-ar.spec 25 Jul 2009 02:20:04 -0000 1.6 @@ -2,7 +2,7 @@ Name: hunspell-ar Summary: Arabic hunspell dictionaries %define upstreamid 20080110 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/ayaspell/hunspell-ar_%{upstreamid}.tar.gz Group: Applications/Text URL: http://ayaspell.sourceforge.net/ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080110-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Caolan McNamara - 0.20080110-3 - extend aliases From jkeating at fedoraproject.org Sat Jul 25 02:20:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:20:22 +0000 (UTC) Subject: rpms/hunspell-as/devel hunspell-as.spec,1.2,1.3 Message-ID: <20090725022022.B018311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-as/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29654 Modified Files: hunspell-as.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-as.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-as/devel/hunspell-as.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-as.spec 29 Apr 2009 08:34:10 -0000 1.2 +++ hunspell-as.spec 25 Jul 2009 02:20:22 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-as Summary: Assamese hunspell dictionaries Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/2318/4/as_IN.oxt URL: http://extensions.services.openoffice.org/project/AssameseDict @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Parag - 1.0.3-2 - Fix source issue in cvs From jkeating at fedoraproject.org Sat Jul 25 02:20:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:20:37 +0000 (UTC) Subject: rpms/hunspell-az/devel hunspell-az.spec,1.3,1.4 Message-ID: <20090725022037.DA63311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-az/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29905 Modified Files: hunspell-az.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-az.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-az/devel/hunspell-az.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-az.spec 11 Jul 2009 10:41:30 -0000 1.3 +++ hunspell-az.spec 25 Jul 2009 02:20:37 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-az Summary: Azerbaijani hunspell dictionaries %define upstreamid 20040827 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: ftp://ftp.gnu.org/gnu/aspell/dict/az/aspell6-az-0.02-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040827-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20040827-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:21:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:21:14 +0000 (UTC) Subject: rpms/hunspell-be/devel hunspell-be.spec,1.3,1.4 Message-ID: <20090725022114.653A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-be/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30752 Modified Files: hunspell-be.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-be.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-be/devel/hunspell-be.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-be.spec 1 Jun 2009 14:45:49 -0000 1.3 +++ hunspell-be.spec 25 Jul 2009 02:21:14 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-be Summary: Belarusian hunspell dictionaries Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/2412/0/dict-be-official.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/dict-be-official @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Caolan McNamara - 1.0.0-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:21:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:21:27 +0000 (UTC) Subject: rpms/hunspell-ber/devel hunspell-ber.spec,1.2,1.3 Message-ID: <20090725022127.9ECC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30917 Modified Files: hunspell-ber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ber.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ber/devel/hunspell-ber.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ber.spec 25 Feb 2009 04:27:24 -0000 1.2 +++ hunspell-ber.spec 25 Jul 2009 02:21:27 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-ber Summary: Amazigh hunspell dictionaries %define upstreamid 20080210 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ayaspell.sourceforge.net/data/hunspell-am_test.tar.gz Group: Applications/Text URL: http://ayaspell.sourceforge.net/am.html @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080210-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080210-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:21:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:21:41 +0000 (UTC) Subject: rpms/hunspell-bg/devel hunspell-bg.spec,1.7,1.8 Message-ID: <20090725022141.0E25211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31053 Modified Files: hunspell-bg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-bg/devel/hunspell-bg.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-bg.spec 10 Jul 2009 15:52:35 -0000 1.7 +++ hunspell-bg.spec 25 Jul 2009 02:21:40 -0000 1.8 @@ -1,7 +1,7 @@ Name: hunspell-bg Summary: Bulgarian hunspell dictionaries Version: 4.1 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://downloads.sourceforge.net/bgoffice/OOo-spell-bg-%{version}.zip Group: Applications/Text URL: http://bgoffice.sourceforge.net/ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 4.1-4 - clean up spec From jkeating at fedoraproject.org Sat Jul 25 02:21:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:21:54 +0000 (UTC) Subject: rpms/hunspell-bn/devel hunspell-bn.spec,1.4,1.5 Message-ID: <20090725022154.551DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-bn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31196 Modified Files: hunspell-bn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-bn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-bn/devel/hunspell-bn.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-bn.spec 25 Feb 2009 04:29:18 -0000 1.4 +++ hunspell-bn.spec 25 Jul 2009 02:21:54 -0000 1.5 @@ -4,7 +4,7 @@ Name: hunspell-bn Summary: Bengali hunspell dictionaries Version: %{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.ankur.org.bd/downloads/spell_check/hunspell/%{name}-BD-%{upstreamver}.tar.bz2 Group: Applications/Text URL: http://ankur.org.bd/wiki/Documentation#OpenOffice.org @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080201-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20080201-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:22:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:22:06 +0000 (UTC) Subject: rpms/hunspell-br/devel hunspell-br.spec,1.4,1.5 Message-ID: <20090725022206.96D1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-br/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31345 Modified Files: hunspell-br.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-br.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-br/devel/hunspell-br.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-br.spec 16 Jun 2009 08:19:32 -0000 1.4 +++ hunspell-br.spec 25 Jul 2009 02:22:06 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-br Summary: Breton hunspell dictionaries Epoch: 1 Version: 0.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text URL: http://www.drouizig.org/ Source: http://extensions.services.openoffice.org/files/2207/1/dict-br_0.2.oxt @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Caolan McNamara - 1:0.2-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:22:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:22:19 +0000 (UTC) Subject: rpms/hunspell-ca/devel hunspell-ca.spec,1.17,1.18 Message-ID: <20090725022219.28B7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31505 Modified Files: hunspell-ca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ca/devel/hunspell-ca.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- hunspell-ca.spec 1 Jul 2009 09:14:07 -0000 1.17 +++ hunspell-ca.spec 25 Jul 2009 02:22:19 -0000 1.18 @@ -2,7 +2,7 @@ Name: hunspell-ca Summary: Catalan hunspell dictionaries %define upstreamid 20090630 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} #svn checkout svn://softcatala.org/corrector/trunk/resultats/hunspell Source: hunspell-ca-%{upstreamid}.tar.bz2 Group: Applications/Text @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090630-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Caolan McNamara - 0.20090630-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:22:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:22:33 +0000 (UTC) Subject: rpms/hunspell-cop/devel hunspell-cop.spec,1.4,1.5 Message-ID: <20090725022233.0D99811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-cop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31681 Modified Files: hunspell-cop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-cop.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cop/devel/hunspell-cop.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-cop.spec 11 Jul 2009 16:14:15 -0000 1.4 +++ hunspell-cop.spec 25 Jul 2009 02:22:32 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-cop Summary: Coptic hunspell dictionaries Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/793/1/dictionaries-cop.oxt URL: http://www.moheb.de/coptic_oo.html @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.2.0-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:22:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:22:47 +0000 (UTC) Subject: rpms/hunspell-csb/devel hunspell-csb.spec,1.3,1.4 Message-ID: <20090725022247.3F8DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-csb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31853 Modified Files: hunspell-csb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-csb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-csb/devel/hunspell-csb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-csb.spec 11 Jul 2009 10:44:30 -0000 1.3 +++ hunspell-csb.spec 25 Jul 2009 02:22:47 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-csb Summary: Kashubian hunspell dictionaries %define upstreamid 20050311 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/csb/aspell6-csb-0.02-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050311-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050311-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:23:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:23:00 +0000 (UTC) Subject: rpms/hunspell-cv/devel hunspell-cv.spec,1.2,1.3 Message-ID: <20090725022300.5406211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-cv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32006 Modified Files: hunspell-cv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-cv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cv/devel/hunspell-cv.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-cv.spec 11 Jul 2009 16:44:50 -0000 1.2 +++ hunspell-cv.spec 25 Jul 2009 02:23:00 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-cv Summary: Chuvash hunspell dictionaries Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://hunspell.chv.su/files/cv_RU-%{version}.zip URL: http://hunspell.chv.su/download.shtml @@ -37,5 +37,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Caolan McNamara - 1.01-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:23:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:23:15 +0000 (UTC) Subject: rpms/hunspell-cy/devel hunspell-cy.spec,1.5,1.6 Message-ID: <20090725022315.1ABAE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-cy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32157 Modified Files: hunspell-cy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-cy.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-cy/devel/hunspell-cy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-cy.spec 11 Jul 2009 15:14:51 -0000 1.5 +++ hunspell-cy.spec 25 Jul 2009 02:23:14 -0000 1.6 @@ -2,7 +2,7 @@ Name: hunspell-cy Summary: Welsh hunspell dictionaries %define upstreamid 20040425 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://www.e-gymraeg.co.uk/myspell/myspell.zip Group: Applications/Text URL: http://www.e-gymraeg.co.uk/ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040425-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20040425-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:23:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:23:34 +0000 (UTC) Subject: rpms/hunspell-da/devel hunspell-da.spec,1.19,1.20 Message-ID: <20090725022334.68B9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-da/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32369 Modified Files: hunspell-da.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-da.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-da/devel/hunspell-da.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- hunspell-da.spec 19 May 2009 11:34:36 -0000 1.19 +++ hunspell-da.spec 25 Jul 2009 02:23:34 -0000 1.20 @@ -1,7 +1,7 @@ Name: hunspell-da Summary: Danish hunspell dictionaries Version: 1.7.28 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://da.speling.org/filer/myspell-da-%{version}.tar.bz2 Group: Applications/Text URL: http://da.speling.org/ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Caolan McNamara - 1.7.28-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:23:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:23:46 +0000 (UTC) Subject: rpms/hunspell-de/devel hunspell-de.spec,1.11,1.12 Message-ID: <20090725022346.E1DDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32517 Modified Files: hunspell-de.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-de/devel/hunspell-de.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- hunspell-de.spec 11 Jul 2009 14:16:50 -0000 1.11 +++ hunspell-de.spec 25 Jul 2009 02:23:46 -0000 1.12 @@ -2,7 +2,7 @@ Name: hunspell-de Summary: German hunspell dictionaries %define upstreamid 20090107 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://www.j3e.de/ispell/igerman98/dict/igerman98-%{upstreamid}.tar.bz2 Group: Applications/Text URL: http://www.j3e.de/ispell/igerman98 @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090107-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090107-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:24:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:24:02 +0000 (UTC) Subject: rpms/hunspell-el/devel hunspell-el.spec,1.5,1.6 Message-ID: <20090725022402.EE8A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32696 Modified Files: hunspell-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-el/devel/hunspell-el.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-el.spec 12 Jun 2009 14:05:05 -0000 1.5 +++ hunspell-el.spec 25 Jul 2009 02:24:02 -0000 1.6 @@ -2,7 +2,7 @@ Name: hunspell-el Summary: Greek hunspell dictionaries Epoch: 1 Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ispell.math.upatras.gr/files/ooffice/el_GR.zip Group: Applications/Text URL: http://ispell.math.upatras.gr/?section=oofficespell @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Caolan McNamara - 1:0.7-3 - extend coverage From jkeating at fedoraproject.org Sat Jul 25 02:24:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:24:15 +0000 (UTC) Subject: rpms/hunspell-en/devel hunspell-en.spec,1.34,1.35 Message-ID: <20090725022415.AF9AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv410 Modified Files: hunspell-en.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-en/devel/hunspell-en.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- hunspell-en.spec 11 Jul 2009 15:15:26 -0000 1.34 +++ hunspell-en.spec 25 Jul 2009 02:24:15 -0000 1.35 @@ -2,7 +2,7 @@ Name: hunspell-en Summary: English hunspell dictionaries %define upstreamid 20090216 Version: 0.%{upstreamid} -Release: 5%{?dist} +Release: 6%{?dist} #svn co https://wordlist.svn.sourceforge.net/svnroot/wordlist/trunk wordlist Source0: wordlist-%{upstreamid}.tar.bz2 Source1: http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090216-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090216-5 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:24:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:24:27 +0000 (UTC) Subject: rpms/hunspell-eo/devel hunspell-eo.spec,1.2,1.3 Message-ID: <20090725022427.8AC0011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-eo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv568 Modified Files: hunspell-eo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-eo.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-eo/devel/hunspell-eo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-eo.spec 25 Feb 2009 04:39:40 -0000 1.2 +++ hunspell-eo.spec 25 Jul 2009 02:24:27 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-eo Summary: Esperanto hunspell dictionaries %define upstreamid 20041129 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/eo.zip URL: http://wiki.services.openoffice.org/wiki/Dictionaries#Esperanto_.28anywhere.29 @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20041129-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20041129-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:24:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:24:40 +0000 (UTC) Subject: rpms/hunspell-es/devel hunspell-es.spec,1.8,1.9 Message-ID: <20090725022440.CA11211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv724 Modified Files: hunspell-es.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-es/devel/hunspell-es.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hunspell-es.spec 25 Feb 2009 04:40:34 -0000 1.8 +++ hunspell-es.spec 25 Jul 2009 02:24:40 -0000 1.9 @@ -2,7 +2,7 @@ Name: hunspell-es Summary: Spanish hunspell dictionaries %define upstreamid 20081215 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://es.openoffice.org/files/documents/73/3001/es_ANY.zip Group: Applications/Text URL: http://es.openoffice.org/programa/diccionario.html @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081215-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20081215-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:24:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:24:54 +0000 (UTC) Subject: rpms/hunspell-et/devel hunspell-et.spec,1.1,1.2 Message-ID: <20090725022454.BCB6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-et/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv876 Modified Files: hunspell-et.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-et.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-et/devel/hunspell-et.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-et.spec 1 Jul 2009 07:39:51 -0000 1.1 +++ hunspell-et.spec 25 Jul 2009 02:24:54 -0000 1.2 @@ -2,7 +2,7 @@ Name: hunspell-et Summary: Estonian hunspell dictionaries %define upstreamid 20030606 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://www.meso.ee/~jjpp/speller/ispell-et_%{upstreamid}.tar.gz Group: Applications/Text URL: http://www.meso.ee/~jjpp/speller/ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20030606-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Caolan McNamara - 0.20030606-4 - erroneously imported as hunspell-ee, rename as hunspell-et From jkeating at fedoraproject.org Sat Jul 25 02:25:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:25:06 +0000 (UTC) Subject: rpms/hunspell-eu/devel hunspell-eu.spec,1.2,1.3 Message-ID: <20090725022506.DFA8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-eu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1022 Modified Files: hunspell-eu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-eu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-eu/devel/hunspell-eu.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-eu.spec 25 Feb 2009 04:41:30 -0000 1.2 +++ hunspell-eu.spec 25 Jul 2009 02:25:06 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-eu Summary: Basque hunspell dictionaries %define upstreamid 20080507 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://www.euskara.euskadi.net/r59-20660/eu/contenidos/informacion/euskarazko_softwarea/eu_9567/adjuntos/eu-ES-hunspell.tar.gz Source1: http://www.euskara.euskadi.net/r59-20660/eu/contenidos/informacion/euskarazko_softwarea/eu_9567/adjuntos/XUXEN_kode_irekia_eskuliburua-LINUX-OO.pdf Group: Applications/Text @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080507-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080507-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:25:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:25:19 +0000 (UTC) Subject: rpms/hunspell-fa/devel hunspell-fa.spec,1.2,1.3 Message-ID: <20090725022519.AB1A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1174 Modified Files: hunspell-fa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fa/devel/hunspell-fa.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-fa.spec 25 Feb 2009 04:42:26 -0000 1.2 +++ hunspell-fa.spec 25 Jul 2009 02:25:19 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-fa Summary: Farsi hunspell dictionaries %define upstreamid 20070116 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: ftp://ftp.gnu.org/gnu/aspell/dict/fa/aspell6-fa-0.11-0.tar.bz2 URL: http://aspell.net/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20070116-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20070116-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:25:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:25:34 +0000 (UTC) Subject: rpms/hunspell-fj/devel hunspell-fj.spec,1.3,1.4 Message-ID: <20090725022534.12DA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1333 Modified Files: hunspell-fj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fj.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fj/devel/hunspell-fj.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-fj.spec 11 Jul 2009 16:09:21 -0000 1.3 +++ hunspell-fj.spec 25 Jul 2009 02:25:33 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-fj Summary: Fijian hunspell dictionaries %define upstreamid 20050811 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source0: http://www.iosn.net/pacific-islands/usp-microgrants/fijian-spellchecker/README_fj_FJ.txt Source1: http://www.iosn.net/pacific-islands/usp-microgrants/fijian-spellchecker/fj_FJ.dic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050811-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050811-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:25:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:25:48 +0000 (UTC) Subject: rpms/hunspell-fo/devel hunspell-fo.spec,1.7,1.8 Message-ID: <20090725022548.5ADE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1524 Modified Files: hunspell-fo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fo.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fo/devel/hunspell-fo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-fo.spec 11 Jul 2009 13:38:53 -0000 1.7 +++ hunspell-fo.spec 25 Jul 2009 02:25:48 -0000 1.8 @@ -1,7 +1,7 @@ Name: hunspell-fo Summary: Faroese hunspell dictionaries Version: 0.2.36 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://fo.speling.org/filer/myspell-fo-%{version}.tar.gz Group: Applications/Text URL: http://fo.speling.org/ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.36-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.2.36-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:26:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:26:03 +0000 (UTC) Subject: rpms/hunspell-fr/devel hunspell-fr.spec,1.10,1.11 Message-ID: <20090725022603.705E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1727 Modified Files: hunspell-fr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fr/devel/hunspell-fr.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hunspell-fr.spec 23 May 2009 13:38:02 -0000 1.10 +++ hunspell-fr.spec 25 Jul 2009 02:26:03 -0000 1.11 @@ -1,7 +1,7 @@ Name: hunspell-fr Summary: French hunspell dictionaries Version: 3.2 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://download.tuxfamily.org/dicollecte2/hunspell_fr_3-2.zip Group: Applications/Text URL: http://dicollecte.tuxfamily.org/home.php?prj=fr @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Caolan McNamara - 3.2-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:26:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:26:18 +0000 (UTC) Subject: rpms/hunspell-fur/devel hunspell-fur.spec,1.3,1.4 Message-ID: <20090725022618.7207611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fur/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1916 Modified Files: hunspell-fur.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fur.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fur/devel/hunspell-fur.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-fur.spec 11 Jul 2009 13:00:56 -0000 1.3 +++ hunspell-fur.spec 25 Jul 2009 02:26:18 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-fur Summary: Friulian hunspell dictionaries %define upstreamid 20050912 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://digilander.libero.it/paganf/coretors/myspell-fur-12092005.zip Group: Applications/Text URL: http://digilander.libero.it/paganf/coretors/dizionaris.html @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050912-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050912-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:26:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:26:39 +0000 (UTC) Subject: rpms/hunspell-fy/devel hunspell-fy.spec,1.3,1.4 Message-ID: <20090725022639.EEA6711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-fy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2095 Modified Files: hunspell-fy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-fy.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-fy/devel/hunspell-fy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-fy.spec 10 Jul 2009 08:27:32 -0000 1.3 +++ hunspell-fy.spec 25 Jul 2009 02:26:39 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-fy Summary: Frisian hunspell dictionaries Version: 2.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Source: https://addons.mozilla.org/en-US/firefox/downloads/file/32102/frysk_wurdboek-%{version}-fx+tb+sm.xpi Group: Applications/Text URL: http://www.mozilla-nl.org/projecten/frysk @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 2.0.0-3 - tidy up From jkeating at fedoraproject.org Sat Jul 25 02:26:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:26:54 +0000 (UTC) Subject: rpms/hunspell-ga/devel hunspell-ga.spec,1.8,1.9 Message-ID: <20090725022654.F11C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2235 Modified Files: hunspell-ga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ga.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ga/devel/hunspell-ga.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hunspell-ga.spec 25 Feb 2009 04:47:57 -0000 1.8 +++ hunspell-ga.spec 25 Jul 2009 02:26:54 -0000 1.9 @@ -1,7 +1,7 @@ Name: hunspell-ga Summary: Irish hunspell dictionaries Version: 4.4 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://borel.slu.edu/ispell/ispell-gaeilge-%{version}.tar.gz Source1: myspell-header Source2: hunspell-header @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:27:10 +0000 (UTC) Subject: rpms/hunspell-gd/devel hunspell-gd.spec,1.4,1.5 Message-ID: <20090725022710.2628C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-gd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2402 Modified Files: hunspell-gd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-gd.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gd/devel/hunspell-gd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-gd.spec 11 Jul 2009 16:40:10 -0000 1.4 +++ hunspell-gd.spec 25 Jul 2009 02:27:10 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-gd Summary: Scots Gaelic hunspell dictionaries Version: 1.0.0 -Release: 0.2.rc.1%{?dist} +Release: 0.3.rc.1%{?dist} Source: http://www.sealgar.co.uk/gd_GB.oxt Group: Applications/Text URL: http://www.sealgar.co.uk/spell.jsp @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-0.3.rc.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 1.0.0-0.2.rc.1 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:27:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:27:24 +0000 (UTC) Subject: rpms/hunspell-gl/devel hunspell-gl.spec,1.7,1.8 Message-ID: <20090725022724.72E5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-gl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2588 Modified Files: hunspell-gl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-gl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gl/devel/hunspell-gl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-gl.spec 25 Feb 2009 04:49:47 -0000 1.7 +++ hunspell-gl.spec 25 Jul 2009 02:27:24 -0000 1.8 @@ -2,7 +2,7 @@ Name: hunspell-gl Summary: Galician hunspell dictionaries %define upstreamid 20080515 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://openoffice.mancomun.org/libreeengalego/Corrector/gl_ES-pack.zip Group: Applications/Text URL: http://wiki.mancomun.org/index.php/Corrector_ortogr%C3%A1fico_para_OpenOffice.org#Descrici.C3.B3n @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080515-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080515-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:27:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:27:37 +0000 (UTC) Subject: rpms/hunspell-gu/devel hunspell-gu.spec,1.2,1.3 Message-ID: <20090725022737.EFA6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-gu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2720 Modified Files: hunspell-gu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-gu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gu/devel/hunspell-gu.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-gu.spec 25 Feb 2009 04:50:43 -0000 1.2 +++ hunspell-gu.spec 25 Jul 2009 02:27:37 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-gu Summary: Gujarati hunspell dictionaries Version: 20061015 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/gu_IN.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20061015-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20061015-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:27:52 +0000 (UTC) Subject: rpms/hunspell-gv/devel hunspell-gv.spec,1.3,1.4 Message-ID: <20090725022752.25EB011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-gv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2872 Modified Files: hunspell-gv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-gv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-gv/devel/hunspell-gv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-gv.spec 11 Jul 2009 10:51:58 -0000 1.3 +++ hunspell-gv.spec 25 Jul 2009 02:27:52 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-gv Summary: Manx hunspell dictionaries %define upstreamid 20040505 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/gv/aspell-gv-0.50-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040505-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20040505-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:28:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:28:06 +0000 (UTC) Subject: rpms/hunspell-hi/devel hunspell-hi.spec,1.2,1.3 Message-ID: <20090725022806.E871E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3042 Modified Files: hunspell-hi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hi/devel/hunspell-hi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-hi.spec 25 Feb 2009 04:52:32 -0000 1.2 +++ hunspell-hi.spec 25 Jul 2009 02:28:06 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-hi Summary: Hindi hunspell dictionaries Version: 20050726 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://hunspell.sourceforge.net/hi-demo.tar.gz Group: Applications/Text URL: http://hunspell.sourceforge.net @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050726-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20050726-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:28:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:28:22 +0000 (UTC) Subject: rpms/hunspell-hil/devel hunspell-hil.spec,1.3,1.4 Message-ID: <20090725022822.135D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3193 Modified Files: hunspell-hil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hil.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hil/devel/hunspell-hil.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-hil.spec 11 Jul 2009 12:48:10 -0000 1.3 +++ hunspell-hil.spec 25 Jul 2009 02:28:21 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-hil Summary: Hiligaynon hunspell dictionaries %define upstreamid 20050406 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/hil/aspell5-hil-0.11-0.tar.bz2 URL: http://borel.slu.edu/crubadan/apps.html @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050406-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050406-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:28:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:28:36 +0000 (UTC) Subject: rpms/hunspell-hr/devel hunspell-hr.spec,1.7,1.8 Message-ID: <20090725022836.0133F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3327 Modified Files: hunspell-hr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hr/devel/hunspell-hr.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-hr.spec 25 Feb 2009 04:54:30 -0000 1.7 +++ hunspell-hr.spec 25 Jul 2009 02:28:35 -0000 1.8 @@ -2,7 +2,7 @@ Name: hunspell-hr Summary: Croatian hunspell dictionaries %define upstreamid 20040608 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Source: http://cvs.linux.hr/spell/myspell/hr_HR.zip Group: Applications/Text @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.20040608-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:0.20040608-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:28:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:28:50 +0000 (UTC) Subject: rpms/hunspell-hsb/devel hunspell-hsb.spec,1.2,1.3 Message-ID: <20090725022850.F211211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hsb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3484 Modified Files: hunspell-hsb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hsb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hsb/devel/hunspell-hsb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-hsb.spec 25 Feb 2009 04:55:21 -0000 1.2 +++ hunspell-hsb.spec 25 Jul 2009 02:28:50 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-hsb Summary: Upper Sorbian hunspell dictionaries Version: 0.20060327.2 -Release: 2%{?dist} +Release: 3%{?dist} Source: https://addons.mozilla.org/en-US/firefox/downloads/file/21550/upper_sorbian_spelling_dictionary-0.0.20060327.2-fx+tb+sm.xpi Group: Applications/Text URL: http://sorbzilla.de/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060327.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060327.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:29:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:29:05 +0000 (UTC) Subject: rpms/hunspell-hu/devel hunspell-hu.spec,1.13,1.14 Message-ID: <20090725022905.EFCF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3644 Modified Files: hunspell-hu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hu/devel/hunspell-hu.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- hunspell-hu.spec 25 Feb 2009 04:56:13 -0000 1.13 +++ hunspell-hu.spec 25 Jul 2009 02:29:05 -0000 1.14 @@ -1,7 +1,7 @@ Name: hunspell-hu Summary: Hungarian hunspell dictionaries Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/magyarispell/hu_HU-%{version}.tar.gz Group: Applications/Text URL: http://magyarispell.sourceforge.net @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:29:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:29:20 +0000 (UTC) Subject: rpms/hunspell-hy/devel hunspell-hy.spec,1.2,1.3 Message-ID: <20090725022920.0CD0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-hy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3791 Modified Files: hunspell-hy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-hy.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-hy/devel/hunspell-hy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-hy.spec 25 Feb 2009 04:57:09 -0000 1.2 +++ hunspell-hy.spec 25 Jul 2009 02:29:19 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-hy Summary: Armenian hunspell dictionaries Version: 0.10.1 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/armspell/myspell-hy-%{version}.tar.gz Group: Applications/Text URL: http://sourceforge.net/projects/armspell @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:29:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:29:34 +0000 (UTC) Subject: rpms/hunspell-ia/devel hunspell-ia.spec,1.4,1.5 Message-ID: <20090725022934.365C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3948 Modified Files: hunspell-ia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ia.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ia/devel/hunspell-ia.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-ia.spec 10 Jul 2009 15:42:26 -0000 1.4 +++ hunspell-ia.spec 25 Jul 2009 02:29:34 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-ia Summary: Interlingua hunspell dictionaries %define upstreamid 20050226 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://download.savannah.gnu.org/releases/interlingua/ia_myspell.zip URL: http://wiki.services.openoffice.org/wiki/Dictionaries#Interlingua_.28x-register.29 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050226-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050226-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:29:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:29:51 +0000 (UTC) Subject: rpms/hunspell-id/devel hunspell-id.spec,1.3,1.4 Message-ID: <20090725022951.D974311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-id/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4143 Modified Files: hunspell-id.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-id.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-id/devel/hunspell-id.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-id.spec 25 Feb 2009 04:59:01 -0000 1.3 +++ hunspell-id.spec 25 Jul 2009 02:29:51 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-id Summary: Indonesian hunspell dictionaries %define upstreamid 20040812 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/id_ID.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries#Indonesian_.28Indonesia.29 @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040812-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040812-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:30:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:30:10 +0000 (UTC) Subject: rpms/hunspell-is/devel hunspell-is.spec,1.4,1.5 Message-ID: <20090725023010.D467311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-is/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4336 Modified Files: hunspell-is.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-is.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-is/devel/hunspell-is.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-is.spec 11 Jul 2009 15:00:07 -0000 1.4 +++ hunspell-is.spec 25 Jul 2009 02:30:10 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-is Summary: Icelandic hunspell dictionaries %define upstreamid 20060928 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://hunspell.sourceforge.net/is_IS.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries#Icelandic_.28Iceland.29 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060928-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20060928-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:30:26 +0000 (UTC) Subject: rpms/hunspell-it/devel hunspell-it.spec,1.4,1.5 Message-ID: <20090725023026.C6B7C11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4584 Modified Files: hunspell-it.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-it/devel/hunspell-it.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-it.spec 25 Feb 2009 05:00:53 -0000 1.4 +++ hunspell-it.spec 25 Jul 2009 02:30:26 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-it Summary: Italian hunspell dictionaries %define upstreamid 20070901 Version: 2.4 -Release: 0.2.%{upstreamid}%{?dist} +Release: 0.3.%{upstreamid}%{?dist} Source: http://downloads.sourceforge.net/sourceforge/linguistico/italiano_2_4_2007_09_01.zip Group: Applications/Text URL: http://linguistico.sourceforge.net @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-0.3.20070901 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.4-0.2.20070901 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:30:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:30:44 +0000 (UTC) Subject: rpms/hunspell-kk/devel hunspell-kk.spec,1.3,1.4 Message-ID: <20090725023044.CD58711C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-kk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4789 Modified Files: hunspell-kk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-kk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-kk/devel/hunspell-kk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-kk.spec 11 Jul 2009 16:20:09 -0000 1.3 +++ hunspell-kk.spec 25 Jul 2009 02:30:44 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-kk Summary: Kazakh hunspell dictionaries Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/1172/7/dict-kk.oxt URL: http://extensions.services.openoffice.org/node/2240 @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 1.0-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:31:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:31:22 +0000 (UTC) Subject: rpms/hunspell-km/devel hunspell-km.spec,1.3,1.4 Message-ID: <20090725023122.754AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-km/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5105 Modified Files: hunspell-km.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-km.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-km/devel/hunspell-km.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-km.spec 16 Jun 2009 07:32:49 -0000 1.3 +++ hunspell-km.spec 25 Jul 2009 02:31:22 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-km Summary: Khmer hunspell dictionaries Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/2250/0/SBBIC-spellingchecker-OOo.1.1.oxt Group: Applications/Text URL: http://www.sbbic.org/ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Caolan McNamara - 1.1-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:31:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:31:37 +0000 (UTC) Subject: rpms/hunspell-kn/devel hunspell-kn.spec,1.1,1.2 Message-ID: <20090725023137.3928F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-kn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5255 Modified Files: hunspell-kn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-kn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-kn/devel/hunspell-kn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-kn.spec 15 Jul 2009 09:24:59 -0000 1.1 +++ hunspell-kn.spec 25 Jul 2009 02:31:37 -0000 1.2 @@ -1,7 +1,7 @@ Name: hunspell-kn Summary: Kannada hunspell dictionaries Version: 1.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/2628/1/kannada.oxt URL: http://extensions.services.openoffice.org/project/kannada @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Ramakrishna Reddy Yekulla - 1.0.3-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:31:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:31:52 +0000 (UTC) Subject: rpms/hunspell-ko/devel hunspell-ko.spec,1.4,1.5 Message-ID: <20090725023152.5C1FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5419 Modified Files: hunspell-ko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ko.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/hunspell-ko.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-ko.spec 6 Jul 2009 08:02:24 -0000 1.4 +++ hunspell-ko.spec 25 Jul 2009 02:31:52 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-ko Summary: Korean hunspell dictionaries Version: 0.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://spellcheck-ko.googlecode.com/files/hunspell-dict-ko-%{version}.tar.gz Group: Applications/Text URL: http://code.google.com/p/spellcheck-ko/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Caolan McNamara - 0.3.1-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:32:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:32:08 +0000 (UTC) Subject: rpms/hunspell-ku/devel hunspell-ku.spec,1.6,1.7 Message-ID: <20090725023208.4A95311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ku/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5583 Modified Files: hunspell-ku.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ku.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ku/devel/hunspell-ku.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hunspell-ku.spec 10 Jul 2009 16:18:50 -0000 1.6 +++ hunspell-ku.spec 25 Jul 2009 02:32:08 -0000 1.7 @@ -1,7 +1,7 @@ Name: hunspell-ku Summary: Kurdish hunspell dictionaries Version: 0.21 -Release: 5%{?dist} +Release: 6%{?dist} #http://hunspell-ku.googlecode.com/files/ku_TR-021_source.zip ? Source0: http://downloads.sourceforge.net/myspellkurdish/ku_TR-021.zip Group: Applications/Text @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.21-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 0.21-5 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:32:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:32:24 +0000 (UTC) Subject: rpms/hunspell-ky/devel hunspell-ky.spec,1.3,1.4 Message-ID: <20090725023224.5F1F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ky/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5746 Modified Files: hunspell-ky.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ky.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ky/devel/hunspell-ky.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ky.spec 11 Jul 2009 12:49:30 -0000 1.3 +++ hunspell-ky.spec 25 Jul 2009 02:32:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-ky Summary: Kirghiz hunspell dictionaries %define upstreamid 20090415 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text Source: http://ftp.gnu.org/gnu/aspell/dict/ky/aspell6-ky-0.01-0.tar.bz2 URL: http://borel.slu.edu/crubadan/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090415-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090414-2 - preserve timestamp From jkeating at fedoraproject.org Sat Jul 25 02:32:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:32:40 +0000 (UTC) Subject: rpms/hunspell-la/devel hunspell-la.spec,1.3,1.4 Message-ID: <20090725023240.17DC911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-la/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5900 Modified Files: hunspell-la.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-la.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-la/devel/hunspell-la.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-la.spec 11 Jul 2009 16:10:56 -0000 1.3 +++ hunspell-la.spec 25 Jul 2009 02:32:39 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-la Summary: Latin hunspell dictionaries %define upstreamid 20080903 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/1141/0/dict-la_2008-09-03.oxt URL: http://extensions.services.openoffice.org/project/dict-la @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080903-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20080903-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:32:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:32:55 +0000 (UTC) Subject: rpms/hunspell-ln/devel hunspell-ln.spec,1.1,1.2 Message-ID: <20090725023255.662DB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ln/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6071 Modified Files: hunspell-ln.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ln.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ln/devel/hunspell-ln.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-ln.spec 29 Apr 2009 07:07:48 -0000 1.1 +++ hunspell-ln.spec 25 Jul 2009 02:32:55 -0000 1.2 @@ -1,7 +1,7 @@ Name: hunspell-ln Summary: Lingala hunspell dictionaries Version: 0.02 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://downloads.sourceforge.net/lingala/hunspell-ln-0.02.zip URL: http://lingala.sourceforge.net/ @@ -32,5 +32,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Caolan McNamara - 0.02-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:33:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:33:14 +0000 (UTC) Subject: rpms/hunspell-lt/devel hunspell-lt.spec,1.8,1.9 Message-ID: <20090725023314.8A15011C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-lt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6251 Modified Files: hunspell-lt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-lt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-lt/devel/hunspell-lt.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- hunspell-lt.spec 11 Jul 2009 15:56:42 -0000 1.8 +++ hunspell-lt.spec 25 Jul 2009 02:33:14 -0000 1.9 @@ -1,7 +1,7 @@ Name: hunspell-lt Summary: Lithuanian hunspell dictionaries Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Source: ftp://ftp.akl.lt/ispell-lt/lt_LT-%{version}.zip Group: Applications/Text URL: ftp://ftp.akl.lt/ispell-lt/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 1.2.1-4 - clean spec From jkeating at fedoraproject.org Sat Jul 25 02:33:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:33:30 +0000 (UTC) Subject: rpms/hunspell-mg/devel hunspell-mg.spec,1.4,1.5 Message-ID: <20090725023330.55EDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6436 Modified Files: hunspell-mg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mg/devel/hunspell-mg.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-mg.spec 11 Jul 2009 15:06:59 -0000 1.4 +++ hunspell-mg.spec 25 Jul 2009 02:33:30 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-mg Summary: Malagasy hunspell dictionaries %define upstreamid 20050109 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/mg_MG.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050109-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050109-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:33:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:33:45 +0000 (UTC) Subject: rpms/hunspell-mi/devel hunspell-mi.spec,1.2,1.3 Message-ID: <20090725023345.5CCD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6589 Modified Files: hunspell-mi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mi/devel/hunspell-mi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-mi.spec 25 Feb 2009 05:06:18 -0000 1.2 +++ hunspell-mi.spec 25 Jul 2009 02:33:45 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-mi Summary: Maori hunspell dictionaries %define upstreamid 20080630 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://packages.papakupu.maori.nz/hunspell/hunspell-mi-0.1.%{upstreamid}-beta.tar.gz Group: Applications/Text URL: http://papakupu.maori.nz/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080630-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080630-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:34:03 +0000 (UTC) Subject: rpms/hunspell-mk/devel hunspell-mk.spec,1.2,1.3 Message-ID: <20090725023403.4126A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6799 Modified Files: hunspell-mk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mk/devel/hunspell-mk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-mk.spec 25 Feb 2009 05:07:16 -0000 1.2 +++ hunspell-mk.spec 25 Jul 2009 02:34:03 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-mk Summary: Macedonian hunspell dictionaries %define upstreamid 20051126 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://mk.openoffice.org/files/documents/215/3053/mk_MK.zip Group: Applications/Text URL: http://mk.openoffice.org @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20051126-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20051126-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 02:34:14 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:34:14 +0000 (UTC) Subject: rpms/lxpanel/devel lxpanel-0.3.8.1-nm-connection-editor.patch, NONE, 1.1 lxpanel-0.4.1-cpu-history.patch, NONE, 1.1 lxpanel.spec, 1.21, 1.22 lxpanel-0.3.8.1-system-config-network.patch, 1.1, NONE Message-ID: <20090725023414.3E9BD11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6932 Modified Files: lxpanel.spec Added Files: lxpanel-0.3.8.1-nm-connection-editor.patch lxpanel-0.4.1-cpu-history.patch Removed Files: lxpanel-0.3.8.1-system-config-network.patch Log Message: add patches lxpanel-0.3.8.1-nm-connection-editor.patch: netstatus-dialog.c | 3 ++- netstatus.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE lxpanel-0.3.8.1-nm-connection-editor.patch --- diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c 2009-01-06 06:28:35.000000000 +0100 @@ -125,7 +125,7 @@ else { ns->iface = g_strdup("eth0"); - ns->config_tool = g_strdup("network-admin --configure %i"); + ns->config_tool = g_strdup("nm-connection-editor"); } iface = netstatus_iface_new(ns->iface); diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c 2009-01-06 06:28:35.000000000 +0100 @@ -42,7 +42,8 @@ #if 0 /* stripped-down version does nothing to configurators. */ static const char *network_config_tools[] = { - "network-admin --configure %i", + "nm-connection-editor", + "system-config-network", "redhat-config-network", "system-control-network" }; lxpanel-0.4.1-cpu-history.patch: cpu.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- NEW FILE lxpanel-0.4.1-cpu-history.patch --- --- a/src/plugins/cpu/cpu.c 2008-12-10 15:37:34.452819574 -0600 +++ b/src/plugins/cpu/cpu.c 2009-06-03 18:28:59.904598839 -0500 @@ -116,11 +116,17 @@ ENTER; if (c->pixmap) g_object_unref(c->pixmap); +tick *t0; +t0= g_new0( typeof(*c->stats_cpu), widget->allocation.width); +unsigned int imax; +imax=c->Wwg > widget->allocation.width? widget->allocation.width:c->Wwg; +memcpy(t0,c->stats_cpu,imax*sizeof(tick)); + c->Wwg = widget->allocation.width; c->Hwg = widget->allocation.height; if (c->stats_cpu) g_free(c->stats_cpu); - c->stats_cpu = g_new0( typeof(*c->stats_cpu), c->Wwg); +c->stats_cpu = t0; /* set pixmap size */ c->pixmap = gdk_pixmap_new (widget->window, widget->allocation.width-BORDER_SIZE * 2, Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/devel/lxpanel.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- lxpanel.spec 25 Jul 2009 02:09:07 -0000 1.21 +++ lxpanel.spec 25 Jul 2009 02:34:14 -0000 1.22 @@ -14,7 +14,7 @@ URL: http://lxde.sourceforge. Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz Patch1: lxpanel-default.patch Patch2: lxpanel-0.4.0-manpages.patch -Patch3: lxpanel-0.3.8.1-system-config-network.patch +Patch3: lxpanel-0.3.8.1-nm-connection-editor.patch # http://sourceforge.net/tracker/?func=detail&aid=2800828&group_id=180858&atid=894871 Patch4: lxpanel-0.4.1-cpu-history.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -88,6 +88,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sat Jul 25 2009 Christoph Wickert 0.4.1-2 - Patch to fix CPU usage monitor history +- Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue May 05 2009 Christoph Wickert 0.4.1-1 --- lxpanel-0.3.8.1-system-config-network.patch DELETED --- From jkeating at fedoraproject.org Sat Jul 25 02:34:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:34:19 +0000 (UTC) Subject: rpms/hunspell-ml/devel hunspell-ml.spec,1.3,1.4 Message-ID: <20090725023419.63C2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6994 Modified Files: hunspell-ml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ml.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ml/devel/hunspell-ml.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ml.spec 25 Feb 2009 05:08:11 -0000 1.3 +++ hunspell-ml.spec 25 Jul 2009 02:34:19 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-ml Summary: Malayalam hunspell dictionaries Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://download.savannah.gnu.org/releases/smc/Spellchecker/ooo-hunspell-ml-%{version}.tar.bz2 Group: Applications/Text URL: http://download.savannah.gnu.org/releases/smc/Spellchecker/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:34:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:34:40 +0000 (UTC) Subject: rpms/hunspell-mn/devel hunspell-mn.spec,1.3,1.4 Message-ID: <20090725023440.2329F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7203 Modified Files: hunspell-mn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mn/devel/hunspell-mn.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-mn.spec 3 May 2009 13:02:58 -0000 1.3 +++ hunspell-mn.spec 25 Jul 2009 02:34:40 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-mn Summary: Mongolian hunspell dictionaries %define upstreamid 20080709 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/1408/0/dict-mn_0.06-5.oxt Group: Applications/Text URL: http://mnspell.openmn.org @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080709-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Caolan McNamara - 0.20080709.1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:34:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:34:53 +0000 (UTC) Subject: rpms/hunspell-mr/devel hunspell-mr.spec,1.3,1.4 Message-ID: <20090725023453.E28D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7341 Modified Files: hunspell-mr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mr/devel/hunspell-mr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-mr.spec 28 Jun 2009 16:28:07 -0000 1.3 +++ hunspell-mr.spec 25 Jul 2009 02:34:53 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-mr Summary: Marathi hunspell dictionaries Version: 20060920 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.stardiv.de/pub/OpenOffice.org/contrib/dictionaries/mr_IN.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20060920-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Caol?n McNamara - 20060920-3 - bring wordlist encoding issue fix from F-11 into devel From jkeating at fedoraproject.org Sat Jul 25 02:35:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:35:07 +0000 (UTC) Subject: rpms/hunspell-ms/devel hunspell-ms.spec,1.3,1.4 Message-ID: <20090725023507.D570C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7482 Modified Files: hunspell-ms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ms.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ms/devel/hunspell-ms.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ms.spec 25 Feb 2009 05:10:57 -0000 1.3 +++ hunspell-ms.spec 25 Jul 2009 02:35:07 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-ms Summary: Malay hunspell dictionaries %define upstreamid 20050117 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ms_MY.zip Group: Applications/Text URL: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050117-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050117-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:35:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:35:20 +0000 (UTC) Subject: rpms/hunspell-mt/devel hunspell-mt.spec,1.4,1.5 Message-ID: <20090725023520.D176D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-mt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7615 Modified Files: hunspell-mt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-mt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-mt/devel/hunspell-mt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-mt.spec 10 Jul 2009 16:04:22 -0000 1.4 +++ hunspell-mt.spec 25 Jul 2009 02:35:20 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-mt Summary: Maltese hunspell dictionaries %define upstreamid 20020708 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://linux.org.mt/downloads/spellcheck-mt-0.3.tar.gz URL: http://linux.org.mt/node/62 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20020708-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Caolan McNamara - 0.20020708-3 - spurious extra .aff file packaged From jkeating at fedoraproject.org Sat Jul 25 02:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:35:33 +0000 (UTC) Subject: rpms/hunspell-nds/devel hunspell-nds.spec,1.2,1.3 Message-ID: <20090725023533.2489A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-nds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7752 Modified Files: hunspell-nds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-nds.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-nds/devel/hunspell-nds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-nds.spec 25 Feb 2009 05:12:48 -0000 1.2 +++ hunspell-nds.spec 25 Jul 2009 02:35:33 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-nds Summary: Lowlands Saxon hunspell dictionaries Version: 0.1 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/aspell-nds/hunspell-nds-0.1.zip Group: Applications/Text URL: http://aspell-nds.sourceforge.net/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:35:46 +0000 (UTC) Subject: rpms/hunspell-ne/devel hunspell-ne.spec,1.3,1.4 Message-ID: <20090725023546.0F2D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ne/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7899 Modified Files: hunspell-ne.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ne.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ne/devel/hunspell-ne.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ne.spec 25 Feb 2009 05:13:39 -0000 1.3 +++ hunspell-ne.spec 25 Jul 2009 02:35:45 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-ne Summary: Nepali hunspell dictionaries Version: 20061217 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://nepalinux.org/downloads/ne_NP_dict.zip Group: Applications/Text URL: http://nepalinux.org/downloads @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20061217-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20061217-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:35:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:35:59 +0000 (UTC) Subject: rpms/hunspell-nl/devel hunspell-nl.spec,1.7,1.8 Message-ID: <20090725023559.E976911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8038 Modified Files: hunspell-nl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-nl/devel/hunspell-nl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- hunspell-nl.spec 11 Jul 2009 14:21:02 -0000 1.7 +++ hunspell-nl.spec 25 Jul 2009 02:35:59 -0000 1.8 @@ -1,7 +1,7 @@ Name: hunspell-nl Summary: Dutch hunspell dictionaries Version: 1.00g -Release: 5%{?dist} +Release: 6%{?dist} Source: http://www.opentaal.org/bestanden/nl_NL-Pack Group: Applications/Text URL: http://www.opentaal.org/english.php @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.00g-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 1.00g-5 - retain timestamp From jkeating at fedoraproject.org Sat Jul 25 02:36:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:36:13 +0000 (UTC) Subject: rpms/hunspell-no/devel hunspell-no.spec,1.5,1.6 Message-ID: <20090725023613.17BA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-no/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8176 Modified Files: hunspell-no.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-no.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-no/devel/hunspell-no.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-no.spec 11 Jul 2009 15:18:57 -0000 1.5 +++ hunspell-no.spec 25 Jul 2009 02:36:12 -0000 1.6 @@ -1,7 +1,7 @@ Name: hunspell-no Summary: Norwegian hunspell dictionaries Version: 2.0.10 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://alioth.debian.org/frs/download.php/2357/no_NO-pack2-%{version}.zip Group: Applications/Text URL: http://spell-norwegian.alioth.debian.org @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/th_nn_NO_v2.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 2.0.10-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:36:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:36:25 +0000 (UTC) Subject: rpms/hunspell-nr/devel hunspell-nr.spec,1.4,1.5 Message-ID: <20090725023625.DBB0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-nr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8326 Modified Files: hunspell-nr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-nr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-nr/devel/hunspell-nr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-nr.spec 25 Feb 2009 05:16:14 -0000 1.4 +++ hunspell-nr.spec 25 Jul 2009 02:36:25 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-nr Summary: Southern Ndebele hunspell dictionaries %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.translate.org.za/spellchecker/ndebele/myspell-nr_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060120-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060120-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:36:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:36:38 +0000 (UTC) Subject: rpms/hunspell-nso/devel hunspell-nso.spec,1.2,1.3 Message-ID: <20090725023638.0A2A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-nso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8455 Modified Files: hunspell-nso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-nso.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-nso/devel/hunspell-nso.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-nso.spec 25 Feb 2009 05:17:06 -0000 1.2 +++ hunspell-nso.spec 25 Jul 2009 02:36:37 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-nso Summary: Northern Sotho hunspell dictionaries %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/northern_sotho/myspell-ns_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060120-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060120-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:36:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:36:51 +0000 (UTC) Subject: rpms/hunspell-ny/devel hunspell-ny.spec,1.3,1.4 Message-ID: <20090725023651.C207111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8596 Modified Files: hunspell-ny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ny.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ny/devel/hunspell-ny.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ny.spec 11 Jul 2009 16:36:16 -0000 1.3 +++ hunspell-ny.spec 25 Jul 2009 02:36:51 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-ny Summary: Chichewa hunspell dictionaries %define upstreamid 20050108 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ny_MW.zip URL: http://borel.slu.edu/crubadan/apps.html @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050108-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050108-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:37:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:37:05 +0000 (UTC) Subject: rpms/hunspell-oc/devel hunspell-oc.spec,1.2,1.3 Message-ID: <20090725023705.D988211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-oc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8795 Modified Files: hunspell-oc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-oc.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-oc/devel/hunspell-oc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-oc.spec 25 Feb 2009 05:19:03 -0000 1.2 +++ hunspell-oc.spec 25 Jul 2009 02:37:05 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-oc Summary: Occitan hunspell dictionaries Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} Source: https://addons.mozilla.org/en-US/firefox/downloads/file/34604/occitan-languedocien-%{version}-fx+tb+sm.xpi Group: Applications/Text URL: https://addons.mozilla.org/en-US/firefox/addon/8235 @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:37:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:37:18 +0000 (UTC) Subject: rpms/hunspell-or/devel hunspell-or.spec,1.2,1.3 Message-ID: <20090725023718.EF64211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-or/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8930 Modified Files: hunspell-or.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-or.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-or/devel/hunspell-or.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-or.spec 25 Feb 2009 05:19:56 -0000 1.2 +++ hunspell-or.spec 25 Jul 2009 02:37:18 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-or Summary: Oriya hunspell dictionaries Version: 20050726 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://hunspell.sourceforge.net/or-demo.tar.gz Group: Applications/Text URL: http://hunspell.sourceforge.net @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050726-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20050726-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:37:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:37:32 +0000 (UTC) Subject: rpms/hunspell-pa/devel hunspell-pa.spec,1.2,1.3 Message-ID: <20090725023732.1712011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-pa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9065 Modified Files: hunspell-pa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-pa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pa/devel/hunspell-pa.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-pa.spec 25 Feb 2009 05:20:51 -0000 1.2 +++ hunspell-pa.spec 25 Jul 2009 02:37:31 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-pa Summary: Punjabi hunspell dictionaries Version: 20050726 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://hunspell.sourceforge.net/pa-demo.tar.gz Group: Applications/Text URL: http://hunspell.sourceforge.net @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20050726-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20050726-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:37:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:37:45 +0000 (UTC) Subject: rpms/hunspell-pl/devel hunspell-pl.spec,1.47,1.48 Message-ID: <20090725023745.3688111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9202 Modified Files: hunspell-pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pl/devel/hunspell-pl.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- hunspell-pl.spec 8 Jul 2009 09:54:56 -0000 1.47 +++ hunspell-pl.spec 25 Jul 2009 02:37:45 -0000 1.48 @@ -2,7 +2,7 @@ Name: hunspell-pl Summary: Polish hunspell dictionaries %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://sjp.pl/slownik/ort/sjp-myspell-pl-%{upstreamid}.zip Group: Applications/Text URL: http://www.kurnik.pl/dictionary/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090708-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Caolan McNamara - 0.20090708-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:38:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:38:01 +0000 (UTC) Subject: rpms/hunspell-pt/devel hunspell-pt.spec,1.33,1.34 Message-ID: <20090725023801.58AA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9363 Modified Files: hunspell-pt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-pt/devel/hunspell-pt.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- hunspell-pt.spec 11 Jul 2009 14:35:35 -0000 1.33 +++ hunspell-pt.spec 25 Jul 2009 02:38:01 -0000 1.34 @@ -2,7 +2,7 @@ Name: hunspell-pt Summary: Portuguese hunspell dictionaries %define upstreamid 20090702 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20090309.tar.gz Source1: http://www.broffice.org/files/pt_BR-2009-07-02AOC.zip Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090702-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090702-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:38:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:38:16 +0000 (UTC) Subject: rpms/hunspell-quh/devel hunspell-quh.spec,1.1,1.2 Message-ID: <20090725023816.5B1B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-quh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9558 Modified Files: hunspell-quh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-quh.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-quh/devel/hunspell-quh.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-quh.spec 19 Jun 2009 07:35:34 -0000 1.1 +++ hunspell-quh.spec 25 Jul 2009 02:38:16 -0000 1.2 @@ -2,7 +2,7 @@ Name: hunspell-quh Summary: Quechua, South Bolivia hunspell dictionaries %define upstreamid 20081017 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.runasimipi.org/quh_BO-pack.zip Group: Applications/Text URL: http://www.runasimipi.org/blanco-en.php?file=desarrollar-orto @@ -35,5 +35,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081017-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Caolan McNamara - 0.20081017-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:38:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:38:30 +0000 (UTC) Subject: rpms/hunspell-ro/devel hunspell-ro.spec,1.2,1.3 Message-ID: <20090725023830.830E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9748 Modified Files: hunspell-ro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ro.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ro/devel/hunspell-ro.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ro.spec 25 Feb 2009 05:23:47 -0000 1.2 +++ hunspell-ro.spec 25 Jul 2009 02:38:30 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-ro Summary: Romanian hunspell dictionaries Version: 3.2 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://downloads.sourceforge.net/rospell/%{name}.%{version}.tar.gz Group: Applications/Text URL: http://rospell.sourceforge.net/ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:38:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:38:47 +0000 (UTC) Subject: rpms/hunspell-ru/devel hunspell-ru.spec,1.4,1.5 Message-ID: <20090725023847.2D83F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9902 Modified Files: hunspell-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ru/devel/hunspell-ru.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-ru.spec 25 Feb 2009 05:24:49 -0000 1.4 +++ hunspell-ru.spec 25 Jul 2009 02:38:46 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-ru Summary: Russian hunspell dictionaries Version: 0.99f7 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Source: ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell/rus-myspell-%{version}.tar.gz Group: Applications/Text @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.99f7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1:0.99f7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:39:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:39:02 +0000 (UTC) Subject: rpms/hunspell-rw/devel hunspell-rw.spec,1.2,1.3 Message-ID: <20090725023902.3AB8B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-rw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10081 Modified Files: hunspell-rw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-rw.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-rw/devel/hunspell-rw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-rw.spec 25 Feb 2009 05:25:50 -0000 1.2 +++ hunspell-rw.spec 25 Jul 2009 02:39:02 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-rw Summary: Kinyarwanda hunspell dictionaries %define upstreamid 20050109 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/rw_RW.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050109-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20050109-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:39:19 +0000 (UTC) Subject: rpms/hunspell-sc/devel hunspell-sc.spec,1.4,1.5 Message-ID: <20090725023919.C7AC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10234 Modified Files: hunspell-sc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sc.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sc/devel/hunspell-sc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-sc.spec 9 Jul 2009 15:17:48 -0000 1.4 +++ hunspell-sc.spec 25 Jul 2009 02:39:19 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-sc Summary: Sardinian hunspell dictionaries %define upstreamid 20081101 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://extensions.services.openoffice.org/files/1446/2/Dict_sc_IT03.oxt URL: http://extensions.services.openoffice.org/project/Dict_sc @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081101-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Caolan McNamara - 0.20081101-3 - drop unneeded buildrequires From jkeating at fedoraproject.org Sat Jul 25 02:39:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:39:34 +0000 (UTC) Subject: rpms/hunspell-se/devel hunspell-se.spec,1.2,1.3 Message-ID: <20090725023934.8069211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-se/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10398 Modified Files: hunspell-se.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-se.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-se/devel/hunspell-se.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-se.spec 18 Jun 2009 09:28:01 -0000 1.2 +++ hunspell-se.spec 25 Jul 2009 02:39:34 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-se Summary: Northern Saami hunspell dictionaries Version: 1.0 -Release: 0.1.beta7%{?dist} +Release: 0.2.beta7%{?dist} Source: http://divvun.no/static_files/hunspell-se.tar.gz Group: Applications/Text URL: http://www.divvun.no/index.html @@ -41,5 +41,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.2.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Caolan McNamara - 1.0-0.1.beta7 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:39:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:39:49 +0000 (UTC) Subject: rpms/hunspell-sk/devel hunspell-sk.spec,1.10,1.11 Message-ID: <20090725023949.B73F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10566 Modified Files: hunspell-sk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sk/devel/hunspell-sk.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- hunspell-sk.spec 1 Apr 2009 09:21:36 -0000 1.10 +++ hunspell-sk.spec 25 Jul 2009 02:39:49 -0000 1.11 @@ -3,7 +3,7 @@ Summary: Slovak hunspell dictionaries Epoch: 1 %define upstreamid 20090330 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.sk-spell.sk.cx/file_download/51/%{name}-%{upstreamid}.zip Group: Applications/Text URL: http://www.sk-spell.sk.cx/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.20090330-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Caolan McNamara - 1:0.20090330-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:40:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:40:09 +0000 (UTC) Subject: rpms/hunspell-sl/devel hunspell-sl.spec,1.4,1.5 Message-ID: <20090725024009.9F26C11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10749 Modified Files: hunspell-sl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sl/devel/hunspell-sl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-sl.spec 25 Feb 2009 05:29:08 -0000 1.4 +++ hunspell-sl.spec 25 Jul 2009 02:40:09 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-sl Summary: Slovenian hunspell dictionaries %define upstreamid 20070127 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/sl_SI.zip Group: Applications/Text URL: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20070127-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20070127-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:40:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:40:24 +0000 (UTC) Subject: rpms/hunspell-smj/devel hunspell-smj.spec,1.2,1.3 Message-ID: <20090725024024.6EE3711C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-smj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10905 Modified Files: hunspell-smj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-smj.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-smj/devel/hunspell-smj.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-smj.spec 18 Jun 2009 09:28:28 -0000 1.2 +++ hunspell-smj.spec 25 Jul 2009 02:40:24 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-smj Summary: Lule Saami hunspell dictionaries Version: 1.0 -Release: 0.1.beta7%{?dist} +Release: 0.2.beta7%{?dist} Source: http://divvun.no/static_files/hunspell-smj.tar.gz Group: Applications/Text URL: http://www.divvun.no/index.html @@ -41,5 +41,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.2.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Caolan McNamara - 1.0-0.1.beta7 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:40:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:40:39 +0000 (UTC) Subject: rpms/hunspell-so/devel hunspell-so.spec,1.1,1.2 Message-ID: <20090725024039.8CBBD11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-so/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11060 Modified Files: hunspell-so.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-so.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-so/devel/hunspell-so.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-so.spec 5 May 2009 07:31:05 -0000 1.1 +++ hunspell-so.spec 25 Jul 2009 02:40:39 -0000 1.2 @@ -1,7 +1,7 @@ Name: hunspell-so Summary: Somali hunspell dictionaries Version: 0.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text Source: http://www.opensourcesomalia.org/uploads/so-SO at dictionaries.addons.mozilla.org3.xpi URL: http://www.opensourcesomalia.org/index.php?page=hingaad-saxe @@ -42,5 +42,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Caolan McNamara - 0.1.2-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:40:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:40:55 +0000 (UTC) Subject: rpms/hunspell-sq/devel hunspell-sq.spec,1.2,1.3 Message-ID: <20090725024055.BC49311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11225 Modified Files: hunspell-sq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sq.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sq/devel/hunspell-sq.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-sq.spec 25 Feb 2009 05:30:28 -0000 1.2 +++ hunspell-sq.spec 25 Jul 2009 02:40:55 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-sq Summary: Albanian hunspell dictionaries Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.shkenca.org/shkarkime/myspell-sq_AL-%{version}.zip Group: Applications/Text URL: http://www.shkenca.org/k6i/albanian_dictionary_for_myspell_en.html @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:41:11 +0000 (UTC) Subject: rpms/hunspell-sr/devel hunspell-sr.spec,1.4,1.5 Message-ID: <20090725024111.87D2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11379 Modified Files: hunspell-sr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sr/devel/hunspell-sr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-sr.spec 22 May 2009 15:42:36 -0000 1.4 +++ hunspell-sr.spec 25 Jul 2009 02:41:11 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-sr Summary: Serbian hunspell dictionaries %define upstreamid 20090511 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/1572/4/dict-sr.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/dict-sr @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090511-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 11 2009 Caolan McNamara - 0.20090511-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:41:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:41:26 +0000 (UTC) Subject: rpms/hunspell-ss/devel hunspell-ss.spec,1.2,1.3 Message-ID: <20090725024126.DC4ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11552 Modified Files: hunspell-ss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ss.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ss/devel/hunspell-ss.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ss.spec 25 Feb 2009 05:32:45 -0000 1.2 +++ hunspell-ss.spec 25 Jul 2009 02:41:26 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-ss Summary: Swati hunspell dictionaries %define upstreamid 20060705 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/swati/myspell-ss_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060705-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060705-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:41:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:41:41 +0000 (UTC) Subject: rpms/hunspell-st/devel hunspell-st.spec,1.2,1.3 Message-ID: <20090725024141.8CA1411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-st/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11684 Modified Files: hunspell-st.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-st.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-st/devel/hunspell-st.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-st.spec 25 Feb 2009 05:33:57 -0000 1.2 +++ hunspell-st.spec 25 Jul 2009 02:41:41 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-st Summary: Southern Sotho hunspell dictionaries %define upstreamid 20060123 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/southern_sotho/myspell-st_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060123-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060123-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:41:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:41:57 +0000 (UTC) Subject: rpms/hunspell-sv/devel hunspell-sv.spec,1.21,1.22 Message-ID: <20090725024157.CEAE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11830 Modified Files: hunspell-sv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sv/devel/hunspell-sv.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- hunspell-sv.spec 14 Jun 2009 09:19:52 -0000 1.21 +++ hunspell-sv.spec 25 Jul 2009 02:41:57 -0000 1.22 @@ -1,7 +1,7 @@ Name: hunspell-sv Summary: Swedish hunspell dictionaries Version: 1.39 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://hem.bredband.net/dsso1/sv-%{version}.zip Group: Applications/Text URL: http://dsso.se/ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.39-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Caolan McNamara - 1.39-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:42:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:42:15 +0000 (UTC) Subject: rpms/hunspell-sw/devel hunspell-sw.spec,1.3,1.4 Message-ID: <20090725024215.1ED5E11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-sw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11996 Modified Files: hunspell-sw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-sw.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-sw/devel/hunspell-sw.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-sw.spec 11 Jul 2009 16:12:18 -0000 1.3 +++ hunspell-sw.spec 25 Jul 2009 02:42:14 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-sw Summary: Swahili hunspell dictionaries %define upstreamid 20050819 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Source: http://www.it46.se/downloads/openoffice/dictionary/dictionary_myspell_sw_TZ_1.1.tar.gz URL: http://www.it46.se @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050819-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050819-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:42:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:42:30 +0000 (UTC) Subject: rpms/hunspell-ta/devel hunspell-ta.spec,1.2,1.3 Message-ID: <20090725024230.47A3311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12144 Modified Files: hunspell-ta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ta.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ta/devel/hunspell-ta.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-ta.spec 25 Feb 2009 05:37:09 -0000 1.2 +++ hunspell-ta.spec 25 Jul 2009 02:42:30 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-ta Summary: Tamil hunspell dictionaries Version: 20060222 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://hunspell.sourceforge.net/ta-demo.tar.gz Group: Applications/Text URL: http://hunspell.sourceforge.net @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20060222-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20060222-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:42:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:42:50 +0000 (UTC) Subject: rpms/hunspell-te/devel hunspell-te.spec,1.3,1.4 Message-ID: <20090725024250.5B1E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-te/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12318 Modified Files: hunspell-te.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-te.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-te/devel/hunspell-te.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-te.spec 17 Jul 2009 04:21:41 -0000 1.3 +++ hunspell-te.spec 25 Jul 2009 02:42:50 -0000 1.4 @@ -6,7 +6,7 @@ Name: hunspell-te Summary: Telugu hunspell dictionaries %define upstreamid 20050929 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text License: GPLv2+ URL: http://aspell.net/ @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050929-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Parag - 0.20050929-3 - Use aspell source instead to pull source as BR:aspell-te - Resolves:rh#511262 buildrequires aspell-te From jkeating at fedoraproject.org Sat Jul 25 02:43:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:43:05 +0000 (UTC) Subject: rpms/hunspell-tet/devel hunspell-tet.spec,1.4,1.5 Message-ID: <20090725024305.750DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-tet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12493 Modified Files: hunspell-tet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-tet.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tet/devel/hunspell-tet.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-tet.spec 11 Jul 2009 16:21:29 -0000 1.4 +++ hunspell-tet.spec 25 Jul 2009 02:43:05 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-tet Summary: Tetum hunspell dictionaries %define upstreamid 20050108 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/tet_ID.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050108-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050108-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:43:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:43:20 +0000 (UTC) Subject: rpms/hunspell-th/devel hunspell-th.spec,1.4,1.5 Message-ID: <20090725024320.9D3FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-th/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12663 Modified Files: hunspell-th.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-th.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-th/devel/hunspell-th.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-th.spec 25 Feb 2009 05:40:09 -0000 1.4 +++ hunspell-th.spec 25 Jul 2009 02:43:20 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-th Summary: Thai hunspell dictionaries %define upstreamid 20061212 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/th_TH.zip Group: Applications/Text URL: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20061212-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20061212-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:43:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:43:36 +0000 (UTC) Subject: rpms/hunspell-ti/devel hunspell-ti.spec,1.1,1.2 Message-ID: <20090725024336.47CB711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ti/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12817 Modified Files: hunspell-ti.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ti.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ti/devel/hunspell-ti.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hunspell-ti.spec 7 Jul 2009 08:31:56 -0000 1.1 +++ hunspell-ti.spec 25 Jul 2009 02:43:36 -0000 1.2 @@ -2,7 +2,7 @@ Name: hunspell-ti Summary: Tigrigna hunspell dictionaries %define upstreamid 20090704 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.cs.ru.nl/~biniam/geez/dict/ti_ER.zip Group: Applications/Text URL: http://www.cs.ru.nl/~biniam/geez/index.php @@ -43,5 +43,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090704-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Caolan McNamara - 0.20090704-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:43:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:43:51 +0000 (UTC) Subject: rpms/hunspell-tk/devel hunspell-tk.spec,1.2,1.3 Message-ID: <20090725024351.605B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-tk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12979 Modified Files: hunspell-tk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-tk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tk/devel/hunspell-tk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-tk.spec 25 Feb 2009 05:41:09 -0000 1.2 +++ hunspell-tk.spec 25 Jul 2009 02:43:51 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-tk Summary: Turkmen hunspell dictionaries %define upstreamid 20080213 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://borel.slu.edu/ispell/tk_TM.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080213-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080213-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:44:06 +0000 (UTC) Subject: rpms/hunspell-tl/devel hunspell-tl.spec,1.3,1.4 Message-ID: <20090725024406.0DD9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-tl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13148 Modified Files: hunspell-tl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-tl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tl/devel/hunspell-tl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-tl.spec 11 Jul 2009 15:20:43 -0000 1.3 +++ hunspell-tl.spec 25 Jul 2009 02:44:05 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-tl Summary: Tagalog hunspell dictionaries %define upstreamid 20050109 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/tl_PH.zip Group: Applications/Text URL: http://borel.slu.edu/crubadan/apps.html @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050109-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050109-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:44:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:44:20 +0000 (UTC) Subject: rpms/hunspell-tn/devel hunspell-tn.spec,1.4,1.5 Message-ID: <20090725024420.7C43D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-tn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13303 Modified Files: hunspell-tn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-tn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-tn/devel/hunspell-tn.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-tn.spec 25 Feb 2009 05:43:09 -0000 1.4 +++ hunspell-tn.spec 25 Jul 2009 02:44:20 -0000 1.5 @@ -2,7 +2,7 @@ Name: hunspell-tn Summary: Tswana hunspell dictionaries %define upstreamid 20060123 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.translate.org.za/spellchecker/tswana/myspell-tn_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060123-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060123-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 02:44:29 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:44:29 +0000 (UTC) Subject: rpms/lxpanel/F-11 lxpanel-0.3.8.1-nm-connection-editor.patch, NONE, 1.1 lxpanel-0.4.1-cpu-history.patch, NONE, 1.1 .cvsignore, 1.12, 1.13 lxpanel.spec, 1.19, 1.20 sources, 1.12, 1.13 lxpanel-0.3.8.1-system-config-network.patch, 1.1, NONE Message-ID: <20090725024429.E15B511C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13400 Modified Files: .cvsignore lxpanel.spec sources Added Files: lxpanel-0.3.8.1-nm-connection-editor.patch lxpanel-0.4.1-cpu-history.patch Removed Files: lxpanel-0.3.8.1-system-config-network.patch Log Message: * Sat Jul 25 2009 Christoph Wickert 0.4.1-2 - Patch to fix CPU usage monitor history - Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild lxpanel-0.3.8.1-nm-connection-editor.patch: netstatus-dialog.c | 3 ++- netstatus.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE lxpanel-0.3.8.1-nm-connection-editor.patch --- diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c 2009-01-06 06:28:35.000000000 +0100 @@ -125,7 +125,7 @@ else { ns->iface = g_strdup("eth0"); - ns->config_tool = g_strdup("network-admin --configure %i"); + ns->config_tool = g_strdup("nm-connection-editor"); } iface = netstatus_iface_new(ns->iface); diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c 2009-01-06 06:28:35.000000000 +0100 @@ -42,7 +42,8 @@ #if 0 /* stripped-down version does nothing to configurators. */ static const char *network_config_tools[] = { - "network-admin --configure %i", + "nm-connection-editor", + "system-config-network", "redhat-config-network", "system-control-network" }; lxpanel-0.4.1-cpu-history.patch: cpu.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- NEW FILE lxpanel-0.4.1-cpu-history.patch --- --- a/src/plugins/cpu/cpu.c 2008-12-10 15:37:34.452819574 -0600 +++ b/src/plugins/cpu/cpu.c 2009-06-03 18:28:59.904598839 -0500 @@ -116,11 +116,17 @@ ENTER; if (c->pixmap) g_object_unref(c->pixmap); +tick *t0; +t0= g_new0( typeof(*c->stats_cpu), widget->allocation.width); +unsigned int imax; +imax=c->Wwg > widget->allocation.width? widget->allocation.width:c->Wwg; +memcpy(t0,c->stats_cpu,imax*sizeof(tick)); + c->Wwg = widget->allocation.width; c->Hwg = widget->allocation.height; if (c->stats_cpu) g_free(c->stats_cpu); - c->stats_cpu = g_new0( typeof(*c->stats_cpu), c->Wwg); +c->stats_cpu = t0; /* set pixmap size */ c->pixmap = gdk_pixmap_new (widget->window, widget->allocation.width-BORDER_SIZE * 2, Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-11/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 24 Apr 2009 20:28:21 -0000 1.12 +++ .cvsignore 25 Jul 2009 02:44:29 -0000 1.13 @@ -1 +1 @@ -lxpanel-0.4.0.tar.gz +lxpanel-0.4.1.tar.gz Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-11/lxpanel.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- lxpanel.spec 24 Apr 2009 20:28:21 -0000 1.19 +++ lxpanel.spec 25 Jul 2009 02:44:29 -0000 1.20 @@ -4,8 +4,8 @@ #define _default_patch_fuzz 0 Name: lxpanel -Version: 0.4.0 -Release: 1%{?dist} +Version: 0.4.1 +Release: 2%{?dist} Summary: A lightweight X11 desktop panel Group: User Interface/Desktops @@ -14,7 +14,9 @@ URL: http://lxde.sourceforge. Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz Patch1: lxpanel-default.patch Patch2: lxpanel-0.4.0-manpages.patch -Patch3: lxpanel-0.3.8.1-system-config-network.patch +Patch3: lxpanel-0.3.8.1-nm-connection-editor.patch +# http://sourceforge.net/tracker/?func=detail&aid=2800828&group_id=180858&atid=894871 +Patch4: lxpanel-0.4.1-cpu-history.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) #BuildRequires: docbook-utils @@ -53,6 +55,7 @@ developing applications that use %{name} %patch1 -p1 -b .default %patch2 -p1 -b .manpage %patch3 -p1 -b .system-config-network +%patch4 -p1 -b .history %build %configure @@ -83,6 +86,14 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lxpanel.pc %changelog +* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +- Patch to fix CPU usage monitor history +- Make netstatus plugin prefer nm-connetction-editor over system-config-network +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue May 05 2009 Christoph Wickert 0.4.1-1 +- Update to 0.4.1 + * Fri Apr 24 2009 Christoph Wickert 0.4.0-1 - Update to 0.4.0 final (fixes #496833) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-11/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 24 Apr 2009 20:28:21 -0000 1.12 +++ sources 25 Jul 2009 02:44:29 -0000 1.13 @@ -1 +1 @@ -a03c7b21338a812207b035204f6dad6e lxpanel-0.4.0.tar.gz +cdc16f8126bc21c9a5f17f21433c1bf2 lxpanel-0.4.1.tar.gz --- lxpanel-0.3.8.1-system-config-network.patch DELETED --- From jkeating at fedoraproject.org Sat Jul 25 02:44:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:44:34 +0000 (UTC) Subject: rpms/hunspell-ts/devel hunspell-ts.spec,1.3,1.4 Message-ID: <20090725024434.3776511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13493 Modified Files: hunspell-ts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ts.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ts/devel/hunspell-ts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ts.spec 25 Feb 2009 05:44:08 -0000 1.3 +++ hunspell-ts.spec 25 Jul 2009 02:44:34 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-ts Summary: Tsonga hunspell dictionaries %define upstreamid 20060123 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/tsonga/myspell-ts_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060123-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060123-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:44:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:44:47 +0000 (UTC) Subject: rpms/hunspell-uk/devel hunspell-uk.spec,1.4,1.5 Message-ID: <20090725024447.5A0CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-uk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13694 Modified Files: hunspell-uk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-uk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-uk/devel/hunspell-uk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-uk.spec 25 Feb 2009 05:45:08 -0000 1.4 +++ hunspell-uk.spec 25 Jul 2009 02:44:47 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-uk Summary: Ukrainian hunspell dictionaries Version: 1.5.7 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/ispell-uk/myspell-uk_UA-%{version}.zip Group: Applications/Text URL: http://sourceforge.net/projects/ispell-uk @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.5.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:45:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:45:02 +0000 (UTC) Subject: rpms/hunspell-ur/devel hunspell-ur.spec,1.4,1.5 Message-ID: <20090725024502.6186511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ur/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13864 Modified Files: hunspell-ur.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ur.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ur/devel/hunspell-ur.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hunspell-ur.spec 10 Jul 2009 08:30:19 -0000 1.4 +++ hunspell-ur.spec 25 Jul 2009 02:45:02 -0000 1.5 @@ -1,7 +1,7 @@ Name: hunspell-ur Summary: Urdu hunspell dictionaries Version: 0.64 -Release: 1%{?dist} +Release: 2%{?dist} #http://urdudictionary.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30004#DownloadId=74761 #and click yes to agree to LGPLv2+, which stinks as a download-url :-( Source: UrduDictionary.xpi @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.64-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 09 2009 Caolan McNamara - 0.64-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:45:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:45:16 +0000 (UTC) Subject: rpms/hunspell-uz/devel hunspell-uz.spec,1.2,1.3 Message-ID: <20090725024516.1549511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-uz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14024 Modified Files: hunspell-uz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-uz.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-uz/devel/hunspell-uz.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-uz.spec 25 Feb 2009 05:47:20 -0000 1.2 +++ hunspell-uz.spec 25 Jul 2009 02:45:15 -0000 1.3 @@ -1,7 +1,7 @@ Name: hunspell-uz Summary: Uzbek hunspell dictionaries Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://www-user.uni-bremen.de/~kmashrab/uzbek-word-list/uzbek-wordlist-%{version}.tar.bz2 Group: Applications/Text URL: http://www-user.uni-bremen.de/~kmashrab/uzbek-word-list @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:45:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:45:30 +0000 (UTC) Subject: rpms/hunspell-ve/devel hunspell-ve.spec,1.3,1.4 Message-ID: <20090725024530.1C85111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-ve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14190 Modified Files: hunspell-ve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-ve.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ve/devel/hunspell-ve.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-ve.spec 25 Feb 2009 05:48:25 -0000 1.3 +++ hunspell-ve.spec 25 Jul 2009 02:45:30 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-ve Summary: Venda hunspell dictionaries %define upstreamid 20060706 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/venda/myspell-ve_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060706-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060706-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:45:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:45:45 +0000 (UTC) Subject: rpms/hunspell-vi/devel hunspell-vi.spec,1.2,1.3 Message-ID: <20090725024545.6032111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-vi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14342 Modified Files: hunspell-vi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-vi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-vi/devel/hunspell-vi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hunspell-vi.spec 25 Feb 2009 05:49:29 -0000 1.2 +++ hunspell-vi.spec 25 Jul 2009 02:45:45 -0000 1.3 @@ -2,7 +2,7 @@ Name: hunspell-vi Summary: Vietnamese hunspell dictionaries %define upstreamid 20080604 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://hunspell-spellcheck-vi.googlecode.com/files/vi_VN.zip Group: Applications/Text URL: http://code.google.com/p/hunspell-spellcheck-vi @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080604-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080604-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:46:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:46:03 +0000 (UTC) Subject: rpms/hunspell-wa/devel hunspell-wa.spec,1.3,1.4 Message-ID: <20090725024603.C601D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-wa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14543 Modified Files: hunspell-wa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-wa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-wa/devel/hunspell-wa.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-wa.spec 11 Jul 2009 12:56:34 -0000 1.3 +++ hunspell-wa.spec 25 Jul 2009 02:46:03 -0000 1.4 @@ -1,7 +1,7 @@ Name: hunspell-wa Summary: Walloon hunspell dictionaries Version: 0.4.15 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://chanae.walon.org/walon/aspell-wa-%{version}.tar.bz2 Group: Applications/Text URL: http://chanae.walon.org/walon/aspell.php @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.4.15-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:46:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:46:18 +0000 (UTC) Subject: rpms/hunspell-xh/devel hunspell-xh.spec,1.3,1.4 Message-ID: <20090725024618.6F41B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-xh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14710 Modified Files: hunspell-xh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-xh.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-xh/devel/hunspell-xh.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hunspell-xh.spec 25 Feb 2009 05:51:36 -0000 1.3 +++ hunspell-xh.spec 25 Jul 2009 02:46:18 -0000 1.4 @@ -2,7 +2,7 @@ Name: hunspell-xh Summary: Xhosa hunspell dictionaries %define upstreamid 20060123 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.translate.org.za/spellchecker/xhosa/myspell-xh_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060123-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060123-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:46:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:46:33 +0000 (UTC) Subject: rpms/hunspell-zu/devel hunspell-zu.spec,1.5,1.6 Message-ID: <20090725024633.7156411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunspell-zu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14866 Modified Files: hunspell-zu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunspell-zu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-zu/devel/hunspell-zu.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-zu.spec 25 Feb 2009 05:52:39 -0000 1.5 +++ hunspell-zu.spec 25 Jul 2009 02:46:33 -0000 1.6 @@ -2,7 +2,7 @@ Name: hunspell-zu Summary: Zulu hunspell dictionaries %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/translate/myspell-zu_ZA-%{upstreamid}.zip Group: Applications/Text URL: http://www.translate.org.za/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060120-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20060120-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:46:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:46:49 +0000 (UTC) Subject: rpms/hunt/devel hunt.spec,1.15,1.16 Message-ID: <20090725024649.4929A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hunt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15030 Modified Files: hunt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hunt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunt/devel/hunt.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- hunt.spec 7 Mar 2009 11:27:08 -0000 1.15 +++ hunt.spec 25 Jul 2009 02:46:49 -0000 1.16 @@ -3,7 +3,7 @@ Summary: Tool for demonstrating well known weaknesses in the TCP/IP protocol suite Name: hunt Version: 1.5 -Release: %release_func 10 +Release: %release_func 11 License: GPLv2 Group: Applications/Internet Source: http://lin.fsid.cvut.cz/~kra/hunt/%name-%version.tgz @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Enrico Scholz - 1.5-10 - do not build the static binary - fixed some int <-> void * cast issues From jkeating at fedoraproject.org Sat Jul 25 02:47:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:47:05 +0000 (UTC) Subject: rpms/hwbrowser/devel hwbrowser.spec,1.56,1.57 Message-ID: <20090725024705.B35A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hwbrowser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15196 Modified Files: hwbrowser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hwbrowser.spec =================================================================== RCS file: /cvs/pkgs/rpms/hwbrowser/devel/hwbrowser.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- hwbrowser.spec 25 Feb 2009 05:54:42 -0000 1.56 +++ hwbrowser.spec 25 Jul 2009 02:47:05 -0000 1.57 @@ -1,7 +1,7 @@ Summary: Hardware browser Name: hwbrowser Version: 0.42 -Release: 3%{?dist} +Release: 4%{?dist} # We are upstream, thus the source is only available from within this source # package. Source0: %{name}-%{version}.tar.bz2 @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_datadir}/applications/redhat-hwbrowser.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.42-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.42-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:47:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:47:21 +0000 (UTC) Subject: rpms/hwdata/devel hwdata.spec,1.112,1.113 Message-ID: <20090725024721.A259211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hwdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15372 Modified Files: hwdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hwdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/hwdata/devel/hwdata.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- hwdata.spec 7 Jul 2009 22:33:21 -0000 1.112 +++ hwdata.spec 25 Jul 2009 02:47:21 -0000 1.113 @@ -1,7 +1,7 @@ Name: hwdata Summary: Hardware identification and configuration data Version: 0.225 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base Source: hwdata-%{version}.tar.bz2 @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.225-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Adam Jackson 0.225-2 - pnp-dell.patch: Fix Dell's entry in pnp.ids From jkeating at fedoraproject.org Sat Jul 25 02:47:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:47:36 +0000 (UTC) Subject: rpms/hydrogen/devel hydrogen.spec,1.11,1.12 Message-ID: <20090725024736.7DDC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hydrogen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15527 Modified Files: hydrogen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hydrogen.spec =================================================================== RCS file: /cvs/pkgs/rpms/hydrogen/devel/hydrogen.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- hydrogen.spec 15 Jul 2009 02:15:50 -0000 1.11 +++ hydrogen.spec 25 Jul 2009 02:47:36 -0000 1.12 @@ -4,7 +4,7 @@ Summary: Advanced drum machine for GNU/Linux Name: hydrogen Version: 0.9.4 -Release: 0.4.%{prerel}%{?dist} +Release: 0.5.%{prerel}%{?dist} URL: http://www.hydrogen-music.org/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-%{prerel2}.tar.gz # For convenience, to take the svn snapshot: @@ -91,6 +91,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/scalable/apps/*.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-0.5.rc1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Orcan Ogetbil - 0.9.4-0.4.rc1.1 - Rebuild against new lash build on F-12 due to the e2fsprogs split From jkeating at fedoraproject.org Sat Jul 25 02:47:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:47:51 +0000 (UTC) Subject: rpms/hydrogen-drumkits/devel hydrogen-drumkits.spec,1.2,1.3 Message-ID: <20090725024751.5F0A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hydrogen-drumkits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15670 Modified Files: hydrogen-drumkits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hydrogen-drumkits.spec =================================================================== RCS file: /cvs/pkgs/rpms/hydrogen-drumkits/devel/hydrogen-drumkits.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hydrogen-drumkits.spec 25 Feb 2009 05:57:43 -0000 1.2 +++ hydrogen-drumkits.spec 25 Jul 2009 02:47:51 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Additional DrumKits for Hydrogen Name: hydrogen-drumkits Version: 0.9.3 -Release: 2.20080907%{?dist} +Release: 3.20080907%{?dist} License: GPLv2+ and GPLv3 and Green OpenMusic Group: Applications/Multimedia URL: http://www.hydrogen-music.org @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hydrogen/data/drumkits/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.3-3.20080907 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.9.3-2.20080907 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:48:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:48:07 +0000 (UTC) Subject: rpms/hyphen/devel hyphen.spec,1.9,1.10 Message-ID: <20090725024807.4FE8011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15826 Modified Files: hyphen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen/devel/hyphen.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- hyphen.spec 22 Jul 2009 13:12:01 -0000 1.9 +++ hyphen.spec 25 Jul 2009 02:48:07 -0000 1.10 @@ -1,7 +1,7 @@ Name: hyphen Summary: A text hyphenation library Version: 2.4 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://downloads.sourceforge.net/hunspell/hyphen-%{version}.tar.gz Group: System Environment/Libraries URL: http://hunspell.sf.net @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/substrings.pl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caolan McNamara - 2.4-4 - make hyphen-en a noarch subpackage From jkeating at fedoraproject.org Sat Jul 25 02:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:48:23 +0000 (UTC) Subject: rpms/hyphen-bg/devel hyphen-bg.spec,1.3,1.4 Message-ID: <20090725024823.617B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15966 Modified Files: hyphen-bg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-bg/devel/hyphen-bg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-bg.spec 10 Jul 2009 15:54:26 -0000 1.3 +++ hyphen-bg.spec 25 Jul 2009 02:48:23 -0000 1.4 @@ -1,7 +1,7 @@ Name: hyphen-bg Summary: Bulgarian hyphenation rules Version: 4.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/bgoffice/OOo-hyph-bg-%{version}.zip Group: Applications/Text URL: http://bgoffice.sourceforge.net/ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 4.1-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:48:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:48:37 +0000 (UTC) Subject: rpms/hyphen-ca/devel hyphen-ca.spec,1.4,1.5 Message-ID: <20090725024837.40B5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16110 Modified Files: hyphen-ca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ca/devel/hyphen-ca.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-ca.spec 11 Jul 2009 16:42:47 -0000 1.4 +++ hyphen-ca.spec 25 Jul 2009 02:48:37 -0000 1.5 @@ -2,7 +2,7 @@ Name: hyphen-ca Summary: Catalan hyphenation rules Epoch: 1 Version: 0.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/2010/5/hyph-ca.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/ca_hyph @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Caol?n McNamara - 1:0.9.2-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:48:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:48:51 +0000 (UTC) Subject: rpms/hyphen-cy/devel hyphen-cy.spec,1.1,1.2 Message-ID: <20090725024851.00A6711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-cy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16259 Modified Files: hyphen-cy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-cy.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-cy/devel/hyphen-cy.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-cy.spec 15 Jun 2009 20:13:47 -0000 1.1 +++ hyphen-cy.spec 25 Jul 2009 02:48:50 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-cy Summary: Welsh hyphenation rules %define upstreamid 20080619 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-cy.tex Group: Applications/Text URL: http://tug.org/tex-hyphen @@ -41,5 +41,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080619-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Caolan McNamara - 0.20080619-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:49:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:49:03 +0000 (UTC) Subject: rpms/hyphen-da/devel hyphen-da.spec,1.4,1.5 Message-ID: <20090725024903.151AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-da/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16381 Modified Files: hyphen-da.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-da.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-da/devel/hyphen-da.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-da.spec 25 Feb 2009 06:01:40 -0000 1.4 +++ hyphen-da.spec 25 Jul 2009 02:49:02 -0000 1.5 @@ -2,7 +2,7 @@ Name: hyphen-da Summary: Danish hyphenation rules %define upstreamid 20070903 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_da_DK.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20070903-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20070903-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:49:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:49:16 +0000 (UTC) Subject: rpms/hyphen-de/devel hyphen-de.spec,1.3,1.4 Message-ID: <20090725024916.391DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16535 Modified Files: hyphen-de.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-de/devel/hyphen-de.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-de.spec 11 Jul 2009 15:59:01 -0000 1.3 +++ hyphen-de.spec 25 Jul 2009 02:49:16 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-de Summary: German hyphenation rules %define upstreamid 20060120 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_de_DE.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060120-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20060120-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:49:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:49:29 +0000 (UTC) Subject: rpms/hyphen-el/devel hyphen-el.spec,1.3,1.4 Message-ID: <20090725024929.4729211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16691 Modified Files: hyphen-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-el/devel/hyphen-el.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-el.spec 12 Jun 2009 14:12:51 -0000 1.3 +++ hyphen-el.spec 25 Jul 2009 02:49:29 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-el Summary: Greek hyphenation rules %define upstreamid 20051018 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_el_GR.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20051018-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Caolan McNamara - 0.20051018-3 - extend coverage From jkeating at fedoraproject.org Sat Jul 25 02:49:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:49:42 +0000 (UTC) Subject: rpms/hyphen-es/devel hyphen-es.spec,1.2,1.3 Message-ID: <20090725024942.4119711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16845 Modified Files: hyphen-es.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-es/devel/hyphen-es.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-es.spec 25 Feb 2009 06:04:37 -0000 1.2 +++ hyphen-es.spec 25 Jul 2009 02:49:42 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-es Summary: Spanish hyphenation rules %define upstreamid 20040810 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_es_ES.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040810-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040810-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 02:49:41 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 02:49:41 +0000 (UTC) Subject: rpms/lxpanel/F-10 lxpanel-0.3.8.1-nm-connection-editor.patch, NONE, 1.1 lxpanel-0.4.0-manpages.patch, NONE, 1.1 lxpanel-0.4.1-cpu-history.patch, NONE, 1.1 .cvsignore, 1.10, 1.11 lxpanel-default.patch, 1.5, 1.6 lxpanel.spec, 1.16, 1.17 sources, 1.10, 1.11 lxpanel-0.2.8-manpage.patch, 1.2, NONE Message-ID: <20090725024941.56BC211C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16824 Modified Files: .cvsignore lxpanel-default.patch lxpanel.spec sources Added Files: lxpanel-0.3.8.1-nm-connection-editor.patch lxpanel-0.4.0-manpages.patch lxpanel-0.4.1-cpu-history.patch Removed Files: lxpanel-0.2.8-manpage.patch Log Message: * Sat Jul 25 2009 Christoph Wickert 0.4.1-2 - Patch to fix CPU usage monitor history - Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild lxpanel-0.3.8.1-nm-connection-editor.patch: netstatus-dialog.c | 3 ++- netstatus.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE lxpanel-0.3.8.1-nm-connection-editor.patch --- diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus.c 2009-01-06 06:28:35.000000000 +0100 @@ -125,7 +125,7 @@ else { ns->iface = g_strdup("eth0"); - ns->config_tool = g_strdup("network-admin --configure %i"); + ns->config_tool = g_strdup("nm-connection-editor"); } iface = netstatus_iface_new(ns->iface); diff -dur lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c --- lxpanel-0.3.8.1.orig/src/plugins/netstatus/netstatus-dialog.c 2008-04-20 10:44:13.000000000 +0200 +++ lxpanel-0.3.8.1/src/plugins/netstatus/netstatus-dialog.c 2009-01-06 06:28:35.000000000 +0100 @@ -42,7 +42,8 @@ #if 0 /* stripped-down version does nothing to configurators. */ static const char *network_config_tools[] = { - "network-admin --configure %i", + "nm-connection-editor", + "system-config-network", "redhat-config-network", "system-control-network" }; lxpanel-0.4.0-manpages.patch: lxpanel.1 | 74 +++++++++++++++++++++++++++++++++++++++++++++++------------ lxpanelctl.1 | 54 +++++++++++++++++++++++++++++++------------ 2 files changed, 100 insertions(+), 28 deletions(-) --- NEW FILE lxpanel-0.4.0-manpages.patch --- diff -dur lxpanel-0.4.0.orig/man/lxpanel.1 lxpanel-0.4.0/man/lxpanel.1 --- lxpanel-0.4.0.orig/man/lxpanel.1 2009-04-20 17:18:04.000000000 +0200 +++ lxpanel-0.4.0/man/lxpanel.1 2009-04-24 18:45:34.000000000 +0200 @@ -1,14 +1,60 @@ -Using catalogs: /etc/sgml/sgml-docbook-4.1-1.0-41.fc10.cat -Using stylesheet: /usr/share/sgml/docbook/utils-0.6.14/docbook-utils.dsl#print -Working on: /home/pcman/Projects/lxde/trunk/lxpanel/man/lxpanel.sgml -.sp -.RS -.sp -.nf - - -.sp -.fi -.RE -.sp -Ying-Chun Liu 2008paulliuDone. +.TH "LXPANEL" "1" +.SH "NAME" +lxpanel \(em a lightweight GTK2-based panel for LXDE desktop. +.SH "SYNOPSIS" +.PP +\fBlxpanel\fR +.SH "DESCRIPTION" +.PP +This manual page documents briefly the +\fBlxpanel\fR command. +.PP +\fBlxpanel\fR is a program that provides a panel +for desktop, usually for LXDE. It is lightweight GTK+ 2.x based desktop +panel. + +.PP +Features +.IP " \(bu" 6 +User-friendly application menu automatically generated from \fB.desktop\fP files on the system. + +.IP " \(bu" 6 +Launcher bar (small icons clicked to launch apps) +.IP " \(bu" 6 +Task bar supporting urgency hint (can be flash when gaim gets new +incoming messages) +.IP " \(bu" 6 +Notification area (system tray) +.IP " \(bu" 6 +Digital clock +.IP " \(bu" 6 +Run dialog (a dialog let you type a command and run, can be called +in external programs) +.IP " \(bu" 6 +Net status icon plug-in (optional) +.IP " \(bu" 6 +Volume control plug-in (optional) +.IP " \(bu" 6 +lxpanelctl, an external controller let you control lxpanel in +other programs. For example, "lxpanelctl run" will show the Run +dialog in lxpanel, and "lxpanelctl menu" will show the application +menu. This is useful in key bindings provided by window managers. +.SH "FILES" +.IP "\fB~/.config/lxpanel\fP" 10 +config file, can be edited by preference dialog. +.SH "SEE ALSO" +.PP +lxsession (1), lxpanelctl (1). +.SH "AUTHOR" +.PP +This manual page was written by paulliu grandpaul at gmail.com for +the \fBDebian\fP system (but may be used by others). Permission is +granted to copy, distribute and/or modify this document under +the terms of the GNU General Public License, Version 2 any +later version published by the Free Software Foundation. + +.PP +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL. + +.\" created by instant / docbook-to-man, Sun 20 Apr 2008, 17:00 diff -dur lxpanel-0.4.0.orig/man/lxpanelctl.1 lxpanel-0.4.0/man/lxpanelctl.1 --- lxpanel-0.4.0.orig/man/lxpanelctl.1 2009-04-20 17:18:04.000000000 +0200 +++ lxpanel-0.4.0/man/lxpanelctl.1 2009-04-24 18:45:34.000000000 +0200 @@ -1,14 +1,40 @@ -Using catalogs: /etc/sgml/sgml-docbook-4.1-1.0-41.fc10.cat -Using stylesheet: /usr/share/sgml/docbook/utils-0.6.14/docbook-utils.dsl#print -Working on: /home/pcman/Projects/lxde/trunk/lxpanel/man/lxpanelctl.sgml -.sp -.RS -.sp -.nf - - -.sp -.fi -.RE -.sp -Ying-Chun Liu 2008paulliuDone. +.TH "LXPANEL" "1" +.SH "NAME" +lxpanelctl \(em controller for lxpanel. +.SH "SYNOPSIS" +.PP +\fBlxpanelctl\fR command +.SH "DESCRIPTION" +.PP +This manual page documents briefly the +\fBlxpanelctl\fR command. +.PP +\fBlxpanelctl\fR is a program that controls lxpanel. + +.SH "COMMANDS" +.IP "\fBmenu\fR " 10 +show system menu +.IP "\fBrun\fR " 10 +show run dialog +.IP "\fBconfig\fR " 10 +show config dialog +.IP "\fBrestart\fR " 10 +restart lxpanel +.IP "\fBexit\fR " 10 +exit lxpanel +.SH "SEE ALSO" +.PP +lxpanel (1). +.SH "AUTHOR" +.PP +This manual page was written by paulliu grandpaul at gmail.com for +the \fBDebian\fP system (but may be used by others). Permission is +granted to copy, distribute and/or modify this document under +the terms of the GNU General Public License, Version 2 any +later version published by the Free Software Foundation. + +.PP +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL. + +.\" created by instant / docbook-to-man, Sun 20 Apr 2008, 17:00 lxpanel-0.4.1-cpu-history.patch: cpu.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- NEW FILE lxpanel-0.4.1-cpu-history.patch --- --- a/src/plugins/cpu/cpu.c 2008-12-10 15:37:34.452819574 -0600 +++ b/src/plugins/cpu/cpu.c 2009-06-03 18:28:59.904598839 -0500 @@ -116,11 +116,17 @@ ENTER; if (c->pixmap) g_object_unref(c->pixmap); +tick *t0; +t0= g_new0( typeof(*c->stats_cpu), widget->allocation.width); +unsigned int imax; +imax=c->Wwg > widget->allocation.width? widget->allocation.width:c->Wwg; +memcpy(t0,c->stats_cpu,imax*sizeof(tick)); + c->Wwg = widget->allocation.width; c->Hwg = widget->allocation.height; if (c->stats_cpu) g_free(c->stats_cpu); - c->stats_cpu = g_new0( typeof(*c->stats_cpu), c->Wwg); +c->stats_cpu = t0; /* set pixmap size */ c->pixmap = gdk_pixmap_new (widget->window, widget->allocation.width-BORDER_SIZE * 2, Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-10/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Nov 2008 04:16:39 -0000 1.10 +++ .cvsignore 25 Jul 2009 02:49:41 -0000 1.11 @@ -1,2 +1 @@ -lxpanel-0.3.8.1.tar.gz -gnome-run.png +lxpanel-0.4.1.tar.gz lxpanel-default.patch: panel.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) Index: lxpanel-default.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-10/lxpanel-default.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lxpanel-default.patch 1 Nov 2008 04:16:39 -0000 1.5 +++ lxpanel-default.patch 25 Jul 2009 02:49:41 -0000 1.6 @@ -1,15 +1,7 @@ diff -up lxpanel-0.3.8.1/data/default/panels/panel.in.orig lxpanel-0.3.8.1/data/default/panels/panel.in --- lxpanel-0.3.8.1/data/default/panels/panel.in.orig 2008-08-28 21:19:43.000000000 +0200 +++ lxpanel-0.3.8.1/data/default/panels/panel.in 2008-08-28 21:20:00.000000000 +0200 -@@ -35,6 +35,7 @@ - separator { - } - item { -+ image=gnome-run - command=run - } - separator { -@@ -50,13 +51,10 @@ Plugin { +@@ -50,13 +50,10 @@ Plugin { type = launchbar Config { Button { @@ -24,3 +16,4 @@ diff -up lxpanel-0.3.8.1/data/default/pa } } } + Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-10/lxpanel.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- lxpanel.spec 1 Nov 2008 04:46:04 -0000 1.16 +++ lxpanel.spec 25 Jul 2009 02:49:41 -0000 1.17 @@ -4,40 +4,58 @@ #define _default_patch_fuzz 0 Name: lxpanel -Version: 0.3.8.1 -Release: 3%{?dist} +Version: 0.4.1 +Release: 2%{?dist} Summary: A lightweight X11 desktop panel Group: User Interface/Desktops License: GPLv2+ URL: http://lxde.sourceforge.net/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.gz -Source1: gnome-run.png Patch1: lxpanel-default.patch -Patch2: lxpanel-0.2.8-manpage.patch -# Posted on LXDE mailing list by J?rgen H?tzel, see -# http://sourceforge.net/mailarchive/forum.php?thread_name=20081026205556.GA20553%40p15200770.pureserver.info&forum_name=lxde-list -Patch3: lxpanel-battery-callback.patch +Patch2: lxpanel-0.4.0-manpages.patch +Patch3: lxpanel-0.3.8.1-nm-connection-editor.patch +# http://sourceforge.net/tracker/?func=detail&aid=2800828&group_id=180858&atid=894871 +Patch4: lxpanel-0.4.1-cpu-history.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: docbook-utils +#BuildRequires: docbook-utils BuildRequires: gettext BuildRequires: gtk2-devel BuildRequires: intltool -BuildRequires: libXmu-devel +#BuildRequires: libXmu-devel BuildRequires: libXpm-devel BuildRequires: startup-notification-devel +# required for alsa mixer plugin +BuildRequires: alsa-lib-devel +# required for netstatus plugin +BuildRequires: wireless-tools-devel +BuildRequires: menu-cache-devel %description lxpanel is a lightweight X11 desktop panel. It works with any ICCCM / NETWM compliant window manager (eg sawfish, metacity, xfwm4, kwin) and features a tasklist, pager, launchbar, clock, menu and sytray. +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: gtk2-devel +Requires: libXpm-devel +#Requires: libXmu-devel + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + %prep %setup -q %patch1 -p1 -b .default %patch2 -p1 -b .manpage -%patch3 -p0 -b .callback +%patch3 -p1 -b .system-config-network +%patch4 -p1 -b .history %build %configure @@ -50,8 +68,6 @@ make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} -install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/%{name}/images/ - %clean rm -rf $RPM_BUILD_ROOT @@ -64,7 +80,31 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lxpanel/ %{_mandir}/man1/lxpanel* +%files devel +%defattr(-,root,root,-) +%{_includedir}/lxpanel/ +%{_libdir}/pkgconfig/lxpanel.pc + %changelog +* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +- Patch to fix CPU usage monitor history +- Make netstatus plugin prefer nm-connetction-editor over system-config-network +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue May 05 2009 Christoph Wickert 0.4.1-1 +- Update to 0.4.1 + +* Fri Apr 24 2009 Christoph Wickert 0.4.0-1 +- Update to 0.4.0 final (fixes #496833) + +* Sun Mar 22 2009 Christoph Wickert 0.3.999-1 +- Update to 0.4.0 Beta 2 +- Build alsa mixer plugin +- BR wireless-tools-devel + +* Wed Feb 25 2009 Fedora Release Engineering - 0.3.8.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Nov 01 2008 Christoph Wickert 0.3.8.1-3 - Add battery callback patch - Add gnome-run icon and update default patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 1 Nov 2008 04:16:39 -0000 1.10 +++ sources 25 Jul 2009 02:49:41 -0000 1.11 @@ -1,2 +1 @@ -18b03bd5556d14b8bd1adf00f4e95574 lxpanel-0.3.8.1.tar.gz -2c84679ed6c5cc86a305e6d06e52b01a gnome-run.png +cdc16f8126bc21c9a5f17f21433c1bf2 lxpanel-0.4.1.tar.gz --- lxpanel-0.2.8-manpage.patch DELETED --- From jkeating at fedoraproject.org Sat Jul 25 02:49:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:49:54 +0000 (UTC) Subject: rpms/hyphen-eu/devel hyphen-eu.spec,1.1,1.2 Message-ID: <20090725024954.ECDEE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-eu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17054 Modified Files: hyphen-eu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-eu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-eu/devel/hyphen-eu.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-eu.spec 15 Jun 2009 20:06:09 -0000 1.1 +++ hyphen-eu.spec 25 Jul 2009 02:49:54 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-eu Summary: Basque hyphenation rules %define upstreamid 20080628 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-eu.tex Group: Applications/Text URL: http://tp.lc.ehu.es/jma/basque.html @@ -42,5 +42,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080628-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Caolan McNamara - 0.20080628-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:50:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:50:17 +0000 (UTC) Subject: rpms/hyphen-fa/devel hyphen-fa.spec,1.1,1.2 Message-ID: <20090725025017.9F4B511C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-fa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17269 Modified Files: hyphen-fa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-fa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-fa/devel/hyphen-fa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-fa.spec 20 Mar 2009 08:34:06 -0000 1.1 +++ hyphen-fa.spec 25 Jul 2009 02:50:17 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-fa Summary: Farsi hyphenation rules %define upstreamid 20081119 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.ctan.org/get/language/hyphenation/fahyph.zip Group: Applications/Text URL: http://www.ctan.org/tex-archive/help/Catalogue/entries/fahyph.html @@ -38,5 +38,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081119-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Caolan McNamara - 0.20081119-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:50:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:50:33 +0000 (UTC) Subject: rpms/hyphen-fr/devel hyphen-fr.spec,1.3,1.4 Message-ID: <20090725025033.78BBA11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17431 Modified Files: hyphen-fr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-fr/devel/hyphen-fr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-fr.spec 23 May 2009 16:22:17 -0000 1.3 +++ hyphen-fr.spec 25 Jul 2009 02:50:33 -0000 1.4 @@ -1,7 +1,7 @@ Name: hyphen-fr Summary: French hyphenation rules Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://download.tuxfamily.org/dicollecte2/hyph_fr_FR_2-0.zip Group: Applications/Text URL: http://dicollecte.tuxfamily.org/home.php?prj=fr @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Caolan McNamara - 2.0-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:50:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:50:48 +0000 (UTC) Subject: rpms/hyphen-ga/devel hyphen-ga.spec,1.2,1.3 Message-ID: <20090725025048.668E011C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17588 Modified Files: hyphen-ga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ga.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ga/devel/hyphen-ga.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-ga.spec 25 Feb 2009 06:06:35 -0000 1.2 +++ hyphen-ga.spec 25 Jul 2009 02:50:48 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-ga Summary: Irish hyphenation rules %define upstreamid 20040220 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_ga_IE.zip Group: Applications/Text URL: http://borel.slu.edu/fleiscin/index.html @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040220-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040220-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:51:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:51:05 +0000 (UTC) Subject: rpms/hyphen-gl/devel hyphen-gl.spec,1.1,1.2 Message-ID: <20090725025105.C691D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-gl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17763 Modified Files: hyphen-gl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-gl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-gl/devel/hyphen-gl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-gl.spec 15 Jun 2009 20:16:14 -0000 1.1 +++ hyphen-gl.spec 25 Jul 2009 02:51:05 -0000 1.2 @@ -1,7 +1,7 @@ Name: hyphen-gl Summary: Galician hyphenation rules Version: 0.99 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/2004/0/hyph_gl.oxt Group: Applications/Text URL: https://forxa.mancomun.org/projects/hyphenation-gl @@ -33,5 +33,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Caolan McNamara - 0.99-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:51:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:51:21 +0000 (UTC) Subject: rpms/hyphen-gu/devel hyphen-gu.spec,1.1,1.2 Message-ID: <20090725025121.4ABC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-gu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18126 Modified Files: hyphen-gu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-gu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-gu/devel/hyphen-gu.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-gu.spec 8 Apr 2009 08:37:07 -0000 1.1 +++ hyphen-gu.spec 25 Jul 2009 02:51:21 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-gu Summary: Gujarati hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_gu_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:51:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:51:41 +0000 (UTC) Subject: rpms/hyphen-hi/devel hyphen-hi.spec,1.1,1.2 Message-ID: <20090725025141.E6E2411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-hi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18807 Modified Files: hyphen-hi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-hi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-hi/devel/hyphen-hi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-hi.spec 8 Apr 2009 08:47:06 -0000 1.1 +++ hyphen-hi.spec 25 Jul 2009 02:51:41 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-hi Summary: Hindi hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_hi_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:51:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:51:59 +0000 (UTC) Subject: rpms/hyphen-hsb/devel hyphen-hsb.spec,1.2,1.3 Message-ID: <20090725025159.5735711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-hsb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18990 Modified Files: hyphen-hsb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-hsb.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-hsb/devel/hyphen-hsb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-hsb.spec 14 Jul 2009 19:35:14 -0000 1.2 +++ hyphen-hsb.spec 25 Jul 2009 02:51:59 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-hsb Summary: Upper Sorbian hyphenation rules %define upstreamid 20080619 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-hsb.tex Source1: http://www.tug.org/pipermail/tex-live/2005-June/008156.html Group: Applications/Text @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080619-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Caolan McNamara - 0.20080619-2 - links doesn't have a -no-references mode anymore From jkeating at fedoraproject.org Sat Jul 25 02:52:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:52:15 +0000 (UTC) Subject: rpms/hyphen-hu/devel hyphen-hu.spec,1.5,1.6 Message-ID: <20090725025215.8CA1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-hu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19135 Modified Files: hyphen-hu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-hu.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-hu/devel/hyphen-hu.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hyphen-hu.spec 24 Jun 2009 14:49:14 -0000 1.5 +++ hyphen-hu.spec 25 Jul 2009 02:52:15 -0000 1.6 @@ -2,7 +2,7 @@ Name: hyphen-hu Summary: Hungarian hyphenation rules %define upstreamid 20090612 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://download.github.com/nagybence-huhyphn-aa3fc85f5ea7450f84f0cd3881a09ca065198dfc.tar.gz Group: Applications/Text URL: http://www.tipogral.hu/ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090612-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Caolan McNamara - 0.20090612-2 - vanilla patgen's limit is too small From jkeating at fedoraproject.org Sat Jul 25 02:52:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:52:31 +0000 (UTC) Subject: rpms/hyphen-ia/devel hyphen-ia.spec,1.2,1.3 Message-ID: <20090725025231.A485A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19296 Modified Files: hyphen-ia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ia.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ia/devel/hyphen-ia.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-ia.spec 28 Mar 2009 16:19:31 -0000 1.2 +++ hyphen-ia.spec 25 Jul 2009 02:52:31 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-ia Summary: Interlingua hyphenation rules %define upstreamid 20050628 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.ctan.org/get/language/hyphenation/iahyphen.tex Group: Applications/Text URL: http://www.ctan.org/tex-archive/help/Catalogue/entries/iahyphen.html @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050628-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Caolan McNamara - 0.20050628-1 - bump to next day for consistency From jkeating at fedoraproject.org Sat Jul 25 02:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:52:47 +0000 (UTC) Subject: rpms/hyphen-id/devel hyphen-id.spec,1.2,1.3 Message-ID: <20090725025247.486D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-id/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19457 Modified Files: hyphen-id.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-id.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-id/devel/hyphen-id.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-id.spec 25 Feb 2009 06:08:33 -0000 1.2 +++ hyphen-id.spec 25 Jul 2009 02:52:47 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-id Summary: Indonesian hyphenation rules %define upstreamid 20040812 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_id_ID.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040812-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040812-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:53:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:53:04 +0000 (UTC) Subject: rpms/hyphen-is/devel hyphen-is.spec,1.3,1.4 Message-ID: <20090725025304.6B41911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-is/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19635 Modified Files: hyphen-is.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-is.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-is/devel/hyphen-is.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-is.spec 11 Jul 2009 16:05:34 -0000 1.3 +++ hyphen-is.spec 25 Jul 2009 02:53:04 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-is Summary: Icelandic hyphenation rules %define upstreamid 20030920 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_is_IS.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20030920-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20030920-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:53:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:53:22 +0000 (UTC) Subject: rpms/hyphen-it/devel hyphen-it.spec,1.6,1.7 Message-ID: <20090725025322.AF03811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19871 Modified Files: hyphen-it.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-it/devel/hyphen-it.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hyphen-it.spec 25 Feb 2009 06:10:33 -0000 1.6 +++ hyphen-it.spec 25 Jul 2009 02:53:22 -0000 1.7 @@ -2,7 +2,7 @@ Name: hyphen-it Summary: Italian hyphenation rules %define upstreamid 20071127 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_it_IT.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20071127-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20071127-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:53:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:53:38 +0000 (UTC) Subject: rpms/hyphen-kn/devel hyphen-kn.spec,1.1,1.2 Message-ID: <20090725025338.E20A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-kn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20034 Modified Files: hyphen-kn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-kn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-kn/devel/hyphen-kn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-kn.spec 8 Apr 2009 08:33:16 -0000 1.1 +++ hyphen-kn.spec 25 Jul 2009 02:53:38 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-kn Summary: Kannada hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_kn_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:53:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:53:54 +0000 (UTC) Subject: rpms/hyphen-ku/devel hyphen-ku.spec,1.3,1.4 Message-ID: <20090725025354.6D1A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ku/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20191 Modified Files: hyphen-ku.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ku.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ku/devel/hyphen-ku.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-ku.spec 24 Jun 2009 07:54:25 -0000 1.3 +++ hyphen-ku.spec 25 Jul 2009 02:53:54 -0000 1.4 @@ -1,7 +1,7 @@ Name: hyphen-ku Summary: Kurdish hyphenation rules Version: 1.60 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/2445/6/hyph_ku.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/kitandin @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.60-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Caolan McNamara - 1.60-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:54:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:54:10 +0000 (UTC) Subject: rpms/hyphen-lt/devel hyphen-lt.spec,1.2,1.3 Message-ID: <20090725025410.9170911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-lt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20376 Modified Files: hyphen-lt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-lt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-lt/devel/hyphen-lt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-lt.spec 25 Feb 2009 06:11:30 -0000 1.2 +++ hyphen-lt.spec 25 Jul 2009 02:54:10 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-lt Summary: Lithuanian hyphenation rules %define upstreamid 20040110 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_lt_LT.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20040110-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20040110-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:54:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:54:27 +0000 (UTC) Subject: rpms/hyphen-mi/devel hyphen-mi.spec,1.2,1.3 Message-ID: <20090725025427.7F1E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-mi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20557 Modified Files: hyphen-mi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-mi.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-mi/devel/hyphen-mi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-mi.spec 25 Feb 2009 06:12:29 -0000 1.2 +++ hyphen-mi.spec 25 Jul 2009 02:54:27 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-mi Summary: Maori hyphenation rules %define upstreamid 20080630 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://packages.papakupu.maori.nz/hunspell-hyphen/hunspell-hyphen-mi-0.1.%{upstreamid}-beta.tar.gz Group: Applications/Text URL: http://papakupu.maori.nz/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080630-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20080630-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:54:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:54:43 +0000 (UTC) Subject: rpms/hyphen-ml/devel hyphen-ml.spec,1.2,1.3 Message-ID: <20090725025443.9FC7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20727 Modified Files: hyphen-ml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ml.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ml/devel/hyphen-ml.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-ml.spec 28 May 2009 16:46:16 -0000 1.2 +++ hyphen-ml.spec 25 Jul 2009 02:54:43 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-ml Summary: Malayalam hyphenation rules %define upstreamid 20090512 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_ml_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090512-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Caolan McNamara - 0.20090512-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:55:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:55:01 +0000 (UTC) Subject: rpms/hyphen-mn/devel hyphen-mn.spec,1.1,1.2 Message-ID: <20090725025501.4FF2111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-mn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20908 Modified Files: hyphen-mn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-mn.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-mn/devel/hyphen-mn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-mn.spec 17 Mar 2009 10:04:33 -0000 1.1 +++ hyphen-mn.spec 25 Jul 2009 02:55:01 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-mn Summary: Mongolian hyphenation rules %define upstreamid 20090315 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-mn-cyrl-x-2a.tex Group: Applications/Text URL: http://www.ctan.org/tex-archive/help/Catalogue/entries/mnhyphn.html @@ -42,5 +42,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090315-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Caolan McNamara - 0.20090315-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:55:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:55:15 +0000 (UTC) Subject: rpms/hyphen-nl/devel hyphen-nl.spec,1.4,1.5 Message-ID: <20090725025515.3EBC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21081 Modified Files: hyphen-nl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-nl/devel/hyphen-nl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-nl.spec 11 Jul 2009 15:55:10 -0000 1.4 +++ hyphen-nl.spec 25 Jul 2009 02:55:15 -0000 1.5 @@ -2,7 +2,7 @@ Name: hyphen-nl Summary: Dutch hyphenation rules %define upstreamid 20050617 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_nl_NL.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20050617-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20050617-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:55:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:55:28 +0000 (UTC) Subject: rpms/hyphen-or/devel hyphen-or.spec,1.1,1.2 Message-ID: <20090725025528.6D6F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-or/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21238 Modified Files: hyphen-or.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-or.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-or/devel/hyphen-or.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-or.spec 8 Apr 2009 08:23:51 -0000 1.1 +++ hyphen-or.spec 25 Jul 2009 02:55:28 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-or Summary: Oriya hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_or_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:55:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:55:42 +0000 (UTC) Subject: rpms/hyphen-pa/devel hyphen-pa.spec,1.1,1.2 Message-ID: <20090725025542.2636511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-pa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21382 Modified Files: hyphen-pa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-pa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-pa/devel/hyphen-pa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-pa.spec 8 Apr 2009 08:16:51 -0000 1.1 +++ hyphen-pa.spec 25 Jul 2009 02:55:42 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-pa Summary: Punjabi hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_pa_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -41,5 +41,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:55:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:55:56 +0000 (UTC) Subject: rpms/hyphen-pl/devel hyphen-pl.spec,1.3,1.4 Message-ID: <20090725025556.5175C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21539 Modified Files: hyphen-pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-pl/devel/hyphen-pl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-pl.spec 11 Jul 2009 15:40:29 -0000 1.3 +++ hyphen-pl.spec 25 Jul 2009 02:55:56 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-pl Summary: Polish hyphenation rules %define upstreamid 20060726 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://pl.openoffice.org/pliki/hyph_pl_PL.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20060726-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20060726-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:56:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:56:11 +0000 (UTC) Subject: rpms/hyphen-pt/devel hyphen-pt.spec,1.2,1.3 Message-ID: <20090725025611.6E6F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21691 Modified Files: hyphen-pt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-pt/devel/hyphen-pt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-pt.spec 25 Feb 2009 06:15:34 -0000 1.2 +++ hyphen-pt.spec 25 Jul 2009 02:56:11 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-pt Summary: Portuguese hyphenation rules %define upstreamid 20021021 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_pt_PT.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20021021-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20021021-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:56:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:56:24 +0000 (UTC) Subject: rpms/hyphen-ro/devel hyphen-ro.spec,1.2,1.3 Message-ID: <20090725025624.63AE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21858 Modified Files: hyphen-ro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ro.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ro/devel/hyphen-ro.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-ro.spec 25 Feb 2009 06:16:37 -0000 1.2 +++ hyphen-ro.spec 25 Jul 2009 02:56:24 -0000 1.3 @@ -1,7 +1,7 @@ Name: hyphen-ro Summary: Romanian hyphenation rules Version: 3.3 -Release: 0.2.test3%{?dist} +Release: 0.3.test3%{?dist} Source: http://downloads.sourceforge.net/rospell/hyph_ro_RO.3.3-test3.zip Group: Applications/Text URL: http://rospell.sourceforge.net/ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3-0.3.test3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.3-0.2.test3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:56:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:56:37 +0000 (UTC) Subject: rpms/hyphen-ru/devel hyphen-ru.spec,1.3,1.4 Message-ID: <20090725025637.5BBF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22007 Modified Files: hyphen-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ru/devel/hyphen-ru.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- hyphen-ru.spec 25 Feb 2009 06:17:38 -0000 1.3 +++ hyphen-ru.spec 25 Jul 2009 02:56:37 -0000 1.4 @@ -2,7 +2,7 @@ Name: hyphen-ru Summary: Russian hyphenation rules %define upstreamid 20020727 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_ru_RU.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20020727-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20020727-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:56:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:56:59 +0000 (UTC) Subject: rpms/hyphen-sa/devel hyphen-sa.spec,1.2,1.3 Message-ID: <20090725025659.3E68611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-sa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22218 Modified Files: hyphen-sa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sa/devel/hyphen-sa.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-sa.spec 3 May 2009 12:55:46 -0000 1.2 +++ hyphen-sa.spec 25 Jul 2009 02:56:59 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-sa Summary: Sanskrit hyphenation rules %define upstreamid 20090412 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/hyph-sa.tex Group: Applications/Text URL: http://tug.org/tex-hyphen @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/hyph_bn_*.dic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090412-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Caolan McNamara - 0.20090412-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 02:57:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:57:13 +0000 (UTC) Subject: rpms/hyphen-sk/devel hyphen-sk.spec,1.4,1.5 Message-ID: <20090725025713.7D38411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22370 Modified Files: hyphen-sk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sk/devel/hyphen-sk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-sk.spec 11 Jul 2009 16:01:50 -0000 1.4 +++ hyphen-sk.spec 25 Jul 2009 02:57:13 -0000 1.5 @@ -2,7 +2,7 @@ Name: hyphen-sk Summary: Slovak hyphenation rules %define upstreamid 20031227 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_sk_SK.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20031227-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20031227-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:57:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:57:27 +0000 (UTC) Subject: rpms/hyphen-sl/devel hyphen-sl.spec,1.2,1.3 Message-ID: <20090725025727.8533411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22520 Modified Files: hyphen-sl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sl/devel/hyphen-sl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-sl.spec 25 Feb 2009 06:19:48 -0000 1.2 +++ hyphen-sl.spec 25 Jul 2009 02:57:27 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-sl Summary: Slovenian hyphenation rules %define upstreamid 20070127 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_sl_SI.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20070127-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20070127-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:57:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:57:41 +0000 (UTC) Subject: rpms/hyphen-sv/devel hyphen-sv.spec,1.4,1.5 Message-ID: <20090725025741.A244A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-sv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22675 Modified Files: hyphen-sv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-sv.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-sv/devel/hyphen-sv.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- hyphen-sv.spec 11 Jul 2009 15:25:43 -0000 1.4 +++ hyphen-sv.spec 25 Jul 2009 02:57:41 -0000 1.5 @@ -1,7 +1,7 @@ Name: hyphen-sv Summary: Swedish hyphenation rules Version: 1.00.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://extensions.services.openoffice.org/files/1966/4/hyph_sv_SE.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/node/1968 @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.00.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 1.00.1-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 02:57:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:57:55 +0000 (UTC) Subject: rpms/hyphen-ta/devel hyphen-ta.spec,1.1,1.2 Message-ID: <20090725025755.7E52A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-ta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22840 Modified Files: hyphen-ta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-ta.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-ta/devel/hyphen-ta.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-ta.spec 8 Apr 2009 08:13:21 -0000 1.1 +++ hyphen-ta.spec 25 Jul 2009 02:57:55 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-ta Summary: Tamil hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_ta_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:58:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:58:10 +0000 (UTC) Subject: rpms/hyphen-te/devel hyphen-te.spec,1.1,1.2 Message-ID: <20090725025810.9274611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-te/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22992 Modified Files: hyphen-te.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-te.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-te/devel/hyphen-te.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- hyphen-te.spec 8 Apr 2009 08:06:43 -0000 1.1 +++ hyphen-te.spec 25 Jul 2009 02:58:10 -0000 1.2 @@ -2,7 +2,7 @@ Name: hyphen-te Summary: Telugu hyphenation rules %define upstreamid 20081213 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://git.savannah.gnu.org/cgit/smc.git/plain/hyphenation/hyph_te_IN.dic Group: Applications/Text URL: http://wiki.smc.org.in @@ -34,5 +34,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20081213-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Caolan McNamara - 0.20081213-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 02:58:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:58:25 +0000 (UTC) Subject: rpms/hyphen-uk/devel hyphen-uk.spec,1.2,1.3 Message-ID: <20090725025825.AC48A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/hyphen-uk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23130 Modified Files: hyphen-uk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: hyphen-uk.spec =================================================================== RCS file: /cvs/pkgs/rpms/hyphen-uk/devel/hyphen-uk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- hyphen-uk.spec 25 Feb 2009 06:21:49 -0000 1.2 +++ hyphen-uk.spec 25 Jul 2009 02:58:25 -0000 1.3 @@ -2,7 +2,7 @@ Name: hyphen-uk Summary: Ukrainian hyphenation rules %define upstreamid 20030903 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_uk_UA.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20030903-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.20030903-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:58:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:58:40 +0000 (UTC) Subject: rpms/i2c-tools/devel i2c-tools.spec,1.6,1.7 Message-ID: <20090725025840.B997311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/i2c-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23285 Modified Files: i2c-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: i2c-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/i2c-tools/devel/i2c-tools.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- i2c-tools.spec 13 Apr 2009 22:27:51 -0000 1.6 +++ i2c-tools.spec 25 Jul 2009 02:58:40 -0000 1.7 @@ -6,7 +6,7 @@ Name: i2c-tools Version: 3.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A heterogeneous set of I2C tools for Linux Group: Applications/System License: GPLv2+ @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Adam Jackson 3.0.2-3 - mv /etc/modprobe.d/i2c-dev /etc/modprobe.d/i2c-dev.conf (#495455) From jkeating at fedoraproject.org Sat Jul 25 02:58:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:58:57 +0000 (UTC) Subject: rpms/i8kutils/devel i8kutils.spec,1.19,1.20 Message-ID: <20090725025857.A7AFD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/i8kutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23437 Modified Files: i8kutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: i8kutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/i8kutils/devel/i8kutils.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- i8kutils.spec 28 Feb 2009 01:10:49 -0000 1.19 +++ i8kutils.spec 25 Jul 2009 02:58:57 -0000 1.20 @@ -4,7 +4,7 @@ Summary: Dell laptop (Inspiron 8000 and others) SMM BIOS support tools Name: i8kutils Version: 1.25 -Release: 16 +Release: 17 License: GPLv2+ Group: System Environment/Base URL: http://people.debian.org/~dz/i8k/ @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.25-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.25-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:59:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:59:13 +0000 (UTC) Subject: rpms/iasl/devel iasl.spec,1.8,1.9 Message-ID: <20090725025913.94FBA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iasl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23609 Modified Files: iasl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iasl.spec =================================================================== RCS file: /cvs/pkgs/rpms/iasl/devel/iasl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- iasl.spec 25 Feb 2009 06:24:59 -0000 1.8 +++ iasl.spec 25 Jul 2009 02:59:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: iasl Version: 20090123 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Intel ASL compiler/decompiler Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090123-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 20090123-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 02:59:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:59:29 +0000 (UTC) Subject: rpms/iax/devel iax.spec,1.1,1.2 Message-ID: <20090725025929.955F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23792 Modified Files: iax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iax.spec =================================================================== RCS file: /cvs/pkgs/rpms/iax/devel/iax.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- iax.spec 12 Mar 2009 20:46:56 -0000 1.1 +++ iax.spec 25 Jul 2009 02:59:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: iax Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Implementation of Inter-Asterisk eXchange protocol Group: System Environment/Libraries License: GPL+ and LGPLv2+ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_libdir}/libiax.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Tom "spot" Callaway 0.2.2-2 - fix iax-config.in - fix dead URL From jkeating at fedoraproject.org Sat Jul 25 02:59:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:59:43 +0000 (UTC) Subject: rpms/iaxclient/devel iaxclient.spec,1.1,1.2 Message-ID: <20090725025943.2B48A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iaxclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23943 Modified Files: iaxclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iaxclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/iaxclient/devel/iaxclient.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- iaxclient.spec 6 Apr 2009 21:15:05 -0000 1.1 +++ iaxclient.spec 25 Jul 2009 02:59:42 -0000 1.2 @@ -11,7 +11,7 @@ Name: iaxclient Version: %{mainver} -Release: 0.3.%{betaver}%{?dist} +Release: 0.4.%{betaver}%{?dist} Summary: Library for creating telephony solutions that interoperate with Asterisk Group: System Environment/Libraries License: LGPLv2+ @@ -180,6 +180,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/wxiax.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-0.4.beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Tom "spot" Callaway 2.1-0.3.beta3 - fix lib/libiax2/iax-config.in to not use wrong /usr/lib From jkeating at fedoraproject.org Sat Jul 25 02:59:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 02:59:56 +0000 (UTC) Subject: rpms/ibmasm/devel ibmasm.spec,1.5,1.6 Message-ID: <20090725025956.A19E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibmasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24107 Modified Files: ibmasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibmasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibmasm/devel/ibmasm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibmasm.spec 25 Feb 2009 06:26:03 -0000 1.5 +++ ibmasm.spec 25 Jul 2009 02:59:56 -0000 1.6 @@ -1,7 +1,7 @@ Summary: IBM Advanced System Management Drivers Name: ibmasm Version: 3.0 -Release: 16%{?dist} +Release: 17%{?dist} License: LGPLv2 and GPLv2+ Group: Applications/System URL: http://ibmasm.sourceforge.net @@ -91,6 +91,9 @@ fi %{_includedir}/ibmasm/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:00:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:00:12 +0000 (UTC) Subject: rpms/ibmonitor/devel ibmonitor.spec,1.13,1.14 Message-ID: <20090725030012.3356B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibmonitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24278 Modified Files: ibmonitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibmonitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibmonitor/devel/ibmonitor.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ibmonitor.spec 25 Feb 2009 06:27:08 -0000 1.13 +++ ibmonitor.spec 25 Jul 2009 03:00:12 -0000 1.14 @@ -1,6 +1,6 @@ Name: ibmonitor Version: 1.4 -Release: 3 +Release: 4 Summary: Interactive bandwidth monitor @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:00:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:00:30 +0000 (UTC) Subject: rpms/ibp/devel ibp.spec,1.2,1.3 Message-ID: <20090725030030.0802D11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24457 Modified Files: ibp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibp/devel/ibp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ibp.spec 25 Feb 2009 06:28:11 -0000 1.2 +++ ibp.spec 25 Jul 2009 03:00:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: ibp Version: 0.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool to show which IBP beacons are transmitting Group: Applications/Communications @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:01:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:01:08 +0000 (UTC) Subject: rpms/ibus/devel ibus.spec,1.75,1.76 Message-ID: <20090725030108.E91E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24743 Modified Files: ibus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus/devel/ibus.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- ibus.spec 23 Jul 2009 05:09:28 -0000 1.75 +++ ibus.spec 25 Jul 2009 03:01:08 -0000 1.76 @@ -8,7 +8,7 @@ Name: ibus Version: 1.2.0.20090723 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPLv2+ Group: System Environment/Libraries @@ -228,6 +228,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090723-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Peng Huang - 1.2.0.20090723-1 - Update to 1.2.0.20090723 - Fix dead loop in ibus-gconf From jkeating at fedoraproject.org Sat Jul 25 03:01:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:01:25 +0000 (UTC) Subject: rpms/ibus-anthy/devel ibus-anthy.spec,1.18,1.19 Message-ID: <20090725030125.B552D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-anthy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24901 Modified Files: ibus-anthy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-anthy/devel/ibus-anthy.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ibus-anthy.spec 22 Jun 2009 05:17:19 -0000 1.18 +++ ibus-anthy.spec 25 Jul 2009 03:01:25 -0000 1.19 @@ -2,7 +2,7 @@ %define require_ibus_version 1.2.0 Name: ibus-anthy Version: 1.2.0.20090617 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Anthy engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 - Update to 1.2.0.20090617 From jkeating at fedoraproject.org Sat Jul 25 03:01:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:01:42 +0000 (UTC) Subject: rpms/ibus-chewing/devel ibus-chewing.spec,1.23,1.24 Message-ID: <20090725030142.9456211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-chewing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25037 Modified Files: ibus-chewing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-chewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-chewing/devel/ibus-chewing.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ibus-chewing.spec 24 Jun 2009 00:31:34 -0000 1.23 +++ ibus-chewing.spec 25 Jul 2009 03:01:42 -0000 1.24 @@ -1,6 +1,6 @@ Name: ibus-chewing Version: 1.2.0.20090624 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Chewing engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/gconf/schemas/%{name}.schemas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090624-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Ding-Yi Chen - 1.2.0.20090624-1 - Lookup table now shows the selection key. From jkeating at fedoraproject.org Sat Jul 25 03:02:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:02:00 +0000 (UTC) Subject: rpms/ibus-hangul/devel ibus-hangul.spec,1.10,1.11 Message-ID: <20090725030200.085EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-hangul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25184 Modified Files: ibus-hangul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-hangul.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-hangul/devel/ibus-hangul.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ibus-hangul.spec 22 Jun 2009 05:24:45 -0000 1.10 +++ ibus-hangul.spec 25 Jul 2009 03:01:59 -0000 1.11 @@ -3,7 +3,7 @@ Name: ibus-hangul Version: 1.2.0.20090617 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Hangul engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Peng Huang - 1.1.0.20090330-1 - Update version to 1.2.0.20090617. From jkeating at fedoraproject.org Sat Jul 25 03:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:02:15 +0000 (UTC) Subject: rpms/ibus-m17n/devel ibus-m17n.spec,1.16,1.17 Message-ID: <20090725030215.34B6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-m17n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25372 Modified Files: ibus-m17n.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-m17n.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-m17n/devel/ibus-m17n.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ibus-m17n.spec 22 Jun 2009 05:41:54 -0000 1.16 +++ ibus-m17n.spec 25 Jul 2009 03:02:15 -0000 1.17 @@ -2,7 +2,7 @@ Name: ibus-m17n Version: 1.2.0.20090617 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The M17N engine for IBus platform License: GPLv2+ Group: System Environment/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Peng Huang - 1.2.0.20090617-1 - Update to 1.2.0.20090617. From jkeating at fedoraproject.org Sat Jul 25 03:02:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:02:30 +0000 (UTC) Subject: rpms/ibus-pinyin/devel ibus-pinyin.spec,1.16,1.17 Message-ID: <20090725030230.C106F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-pinyin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25543 Modified Files: ibus-pinyin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-pinyin.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-pinyin/devel/ibus-pinyin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ibus-pinyin.spec 25 Jun 2009 05:09:08 -0000 1.16 +++ ibus-pinyin.spec 25 Jul 2009 03:02:30 -0000 1.17 @@ -2,7 +2,7 @@ Name: ibus-pinyin Version: 1.2.0.20090617 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The PinYin engine for IBus platform License: GPLv2+ Group: System Environment/Libraries @@ -54,6 +54,9 @@ python -c "import pysqlitedb; db = pysql %{_libexecdir}/ibus-setup-pinyin %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090617-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 17 2009 Peng Huang - 1.2.0.20090617-1 - Update to 1.2.0.20090617. From jkeating at fedoraproject.org Sat Jul 25 03:03:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:03:02 +0000 (UTC) Subject: rpms/ibus-rawcode/devel ibus-rawcode.spec,1.3,1.4 Message-ID: <20090725030302.F16D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-rawcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25770 Modified Files: ibus-rawcode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-rawcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-rawcode/devel/ibus-rawcode.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ibus-rawcode.spec 3 Jul 2009 08:48:41 -0000 1.3 +++ ibus-rawcode.spec 25 Jul 2009 03:03:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: ibus-rawcode Version: 1.2.0.20090703 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Rawcode engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090703-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 - upstream release 1.2.0 From jkeating at fedoraproject.org Sat Jul 25 03:03:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:03:18 +0000 (UTC) Subject: rpms/ibus-sayura/devel ibus-sayura.spec,1.5,1.6 Message-ID: <20090725030318.F21C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-sayura/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25927 Modified Files: ibus-sayura.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-sayura.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-sayura/devel/ibus-sayura.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibus-sayura.spec 3 Jul 2009 07:04:07 -0000 1.5 +++ ibus-sayura.spec 25 Jul 2009 03:03:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: ibus-sayura Version: 1.2.0.20090703 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Sinhala engine for IBus input platform License: GPLv2+ Group: System Environment/Libraries @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus/component/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090703-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Pravin Satpute - @VERSON at -1 - upstream release 1.2.0 From jkeating at fedoraproject.org Sat Jul 25 03:03:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:03:33 +0000 (UTC) Subject: rpms/ibus-table/devel ibus-table.spec,1.19,1.20 Message-ID: <20090725030333.ADEDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26085 Modified Files: ibus-table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table/devel/ibus-table.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ibus-table.spec 1 Jul 2009 06:40:10 -0000 1.19 +++ ibus-table.spec 25 Jul 2009 03:03:33 -0000 1.20 @@ -1,6 +1,6 @@ Name: ibus-table Version: 1.2.0.20090625 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Table engine for IBus platform License: LGPLv2+ Group: System Environment/Libraries @@ -106,6 +106,9 @@ ibus-table-createdb -i -n %{_datadir}/ib %{_datadir}/%{name}/icons/latex.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090625-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Caius 'kaio' Chance - 1.2.0.20090625-2.fc12 - Rebuilt. From jkeating at fedoraproject.org Sat Jul 25 03:03:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:03:48 +0000 (UTC) Subject: rpms/ibus-table-array30/devel ibus-table-array30.spec,1.1,1.2 Message-ID: <20090725030348.CB4B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-array30/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26255 Modified Files: ibus-table-array30.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-array30.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-array30/devel/ibus-table-array30.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ibus-table-array30.spec 16 Jul 2009 08:00:06 -0000 1.1 +++ ibus-table-array30.spec 25 Jul 2009 03:03:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: ibus-table-array30 Version: 1.2.0.20090715 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Array 30 Chinese input method for ibus-table Summary(zh_CN): ?? ibus-table ?????? Summary(zh_TW): ?? ibus-table ?????? @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ibus-table/icons/Array30.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090715-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Ding-Yi Chen - 1.2.0.20090715-1 Correct license. Revise spec file for package review [Bug 511196]. From jkeating at fedoraproject.org Sat Jul 25 03:04:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:04:04 +0000 (UTC) Subject: rpms/ibus-table-cangjie/devel ibus-table-cangjie.spec,1.13,1.14 Message-ID: <20090725030404.7D2B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-cangjie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26431 Modified Files: ibus-table-cangjie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-cangjie.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-cangjie/devel/ibus-table-cangjie.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ibus-table-cangjie.spec 22 Jul 2009 04:55:09 -0000 1.13 +++ ibus-table-cangjie.spec 25 Jul 2009 03:04:04 -0000 1.14 @@ -1,6 +1,6 @@ Name: ibus-table-cangjie Version: 1.2.0.20090717 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Cang Jie input methods for ibus-table License: Public Domain and GPLv2+ Group: System Environment/Libraries @@ -52,6 +52,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/cangjie5.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090717-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090717-5.fc12 - Rebuilt. From jkeating at fedoraproject.org Sat Jul 25 03:04:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:04:20 +0000 (UTC) Subject: rpms/ibus-table-erbi/devel ibus-table-erbi.spec,1.11,1.12 Message-ID: <20090725030420.9BE4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-erbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26618 Modified Files: ibus-table-erbi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-erbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-erbi/devel/ibus-table-erbi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ibus-table-erbi.spec 22 Jul 2009 04:27:42 -0000 1.11 +++ ibus-table-erbi.spec 25 Jul 2009 03:04:20 -0000 1.12 @@ -1,6 +1,6 @@ Name: ibus-table-erbi Version: 1.2.0.20090717 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Erbi input methods for ibus-table License: GPLv2+ Group: System Environment/Libraries @@ -43,6 +43,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/erbi-qs.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090717-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caius 'kaio' Chance - 1.1.0.20090717-2.fc12 - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. From jkeating at fedoraproject.org Sat Jul 25 03:04:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:04:35 +0000 (UTC) Subject: rpms/ibus-table-extraphrase/devel ibus-table-extraphrase.spec, 1.2, 1.3 Message-ID: <20090725030435.E3DA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-extraphrase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26782 Modified Files: ibus-table-extraphrase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-extraphrase.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-extraphrase/devel/ibus-table-extraphrase.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ibus-table-extraphrase.spec 23 Apr 2009 02:50:56 -0000 1.2 +++ ibus-table-extraphrase.spec 25 Jul 2009 03:04:35 -0000 1.3 @@ -2,7 +2,7 @@ Name: ibus-table-extraphrase Version: 1.1.0.20090415 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extra phrase for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -55,6 +55,9 @@ make install \ %{_datadir}/ibus-table/data/extra_phrase.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0.20090415-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Caius 'kaio' Chance - 1.1.0.20090415-3.fc11 - Updated desciption. From jkeating at fedoraproject.org Sat Jul 25 03:05:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:05:14 +0000 (UTC) Subject: rpms/ibus-table-wubi/devel ibus-table-wubi.spec,1.10,1.11 Message-ID: <20090725030514.9EEB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-wubi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27089 Modified Files: ibus-table-wubi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-wubi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-wubi/devel/ibus-table-wubi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ibus-table-wubi.spec 22 Jul 2009 04:21:23 -0000 1.10 +++ ibus-table-wubi.spec 25 Jul 2009 03:05:14 -0000 1.11 @@ -1,6 +1,6 @@ Name: ibus-table-wubi Version: 1.2.0.20090715 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Wubi input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -43,6 +43,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/wubi86.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090715-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caius 'kaio' Chance - 1.2.0.20090715-2.fc12 - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. From jkeating at fedoraproject.org Sat Jul 25 03:05:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:05:30 +0000 (UTC) Subject: rpms/ibus-table-yong/devel ibus-table-yong.spec,1.5,1.6 Message-ID: <20090725030530.9318B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ibus-table-yong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27241 Modified Files: ibus-table-yong.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ibus-table-yong.spec =================================================================== RCS file: /cvs/pkgs/rpms/ibus-table-yong/devel/ibus-table-yong.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ibus-table-yong.spec 22 Jul 2009 04:19:35 -0000 1.5 +++ ibus-table-yong.spec 25 Jul 2009 03:05:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: ibus-table-yong Version: 1.2.0.20090717 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Yong input methods for ibus-table License: GPLv3+ Group: System Environment/Libraries @@ -45,6 +45,9 @@ cd %{_datadir}/ibus-table/tables/ %{_datadir}/ibus-table/icons/yong.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0.20090717-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caius 'kaio' Chance - 1.1.0.20090717-2.fc12 - Removed unneccessary BuildRequires. - Removed unneccessary owned directories. From jkeating at fedoraproject.org Sat Jul 25 03:05:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:05:44 +0000 (UTC) Subject: rpms/icc_examin/devel icc_examin.spec,1.2,1.3 Message-ID: <20090725030544.7A42311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icc_examin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27396 Modified Files: icc_examin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icc_examin.spec =================================================================== RCS file: /cvs/pkgs/rpms/icc_examin/devel/icc_examin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- icc_examin.spec 22 May 2009 16:35:53 -0000 1.2 +++ icc_examin.spec 25 Jul 2009 03:05:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: icc_examin Version: 0.46 -Release: 2%{?dist} +Release: 3%{?dist} Summary: ICC profile viewer and color visualization Group: Applications/Multimedia @@ -100,6 +100,9 @@ update-desktop-database &> /dev/null || %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.46-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 kwizart < kwizart at gmail.com > - 0.46-2 - Rebuild for ftgl (#501323) From jkeating at fedoraproject.org Sat Jul 25 03:06:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:06:01 +0000 (UTC) Subject: rpms/ice/devel ice.spec,1.32,1.33 Message-ID: <20090725030601.3EAAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27580 Modified Files: ice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ice/devel/ice.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- ice.spec 13 Jul 2009 14:45:21 -0000 1.32 +++ ice.spec 25 Jul 2009 03:06:01 -0000 1.33 @@ -7,7 +7,7 @@ Name: ice Version: 3.3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Ice base runtime and services Group: System Environment/Libraries @@ -547,6 +547,9 @@ fi %config(noreplace) %{_sysconfdir}/php.d/ice.ini %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 3.3.1-3 - rebuild for new PHP 5.3.0 ABI (20090626) + ice-php53.patch - add PHP ABI check From jkeating at fedoraproject.org Sat Jul 25 03:06:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:06:17 +0000 (UTC) Subject: rpms/icecast/devel icecast.spec,1.7,1.8 Message-ID: <20090725030617.969BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icecast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27759 Modified Files: icecast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icecast.spec =================================================================== RCS file: /cvs/pkgs/rpms/icecast/devel/icecast.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- icecast.spec 25 Feb 2009 06:37:13 -0000 1.7 +++ icecast.spec 25 Jul 2009 03:06:17 -0000 1.8 @@ -1,7 +1,7 @@ Summary: ShoutCast compatible streaming media server Name: icecast Version: 2.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Multimedia License: GPLv2 URL: http://www.icecast.org/ @@ -107,6 +107,9 @@ fi %dir %attr(-,icecast,icecast) %{_localstatedir}/run/icecast %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:06:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:06:37 +0000 (UTC) Subject: rpms/icecream/devel icecream.spec,1.21,1.22 Message-ID: <20090725030637.A95BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icecream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27955 Modified Files: icecream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icecream.spec =================================================================== RCS file: /cvs/pkgs/rpms/icecream/devel/icecream.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- icecream.spec 30 Apr 2009 13:22:28 -0000 1.21 +++ icecream.spec 25 Jul 2009 03:06:37 -0000 1.22 @@ -11,7 +11,7 @@ Name: icecream Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Distributed compiler Group: Development/Tools @@ -233,6 +233,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/icecc.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Michal Schmidt - 0.9.4-1 - Upstream release 0.9.4. - Dropped merged patches. From jkeating at fedoraproject.org Sat Jul 25 03:06:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:06:55 +0000 (UTC) Subject: rpms/icelandic-fonts/devel icelandic-fonts.spec,1.6,1.7 Message-ID: <20090725030655.AF70A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icelandic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28140 Modified Files: icelandic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icelandic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/icelandic-fonts/devel/icelandic-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- icelandic-fonts.spec 9 Mar 2009 04:15:02 -0000 1.6 +++ icelandic-fonts.spec 25 Jul 2009 03:06:55 -0000 1.7 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 1.001 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Icelandic Magical Staves Group: User Interface/X @@ -41,6 +41,9 @@ rm -fr %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.001-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Jon Stanley - 1.001-7 - Fix including %%post in here from last fix From jkeating at fedoraproject.org Sat Jul 25 03:07:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:07:12 +0000 (UTC) Subject: rpms/ices/devel ices.spec,1.8,1.9 Message-ID: <20090725030712.2E03511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ices/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28346 Modified Files: ices.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ices.spec =================================================================== RCS file: /cvs/pkgs/rpms/ices/devel/ices.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ices.spec 25 Feb 2009 06:40:25 -0000 1.8 +++ ices.spec 25 Jul 2009 03:07:11 -0000 1.9 @@ -1,6 +1,6 @@ Name: ices Version: 2.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Source streaming for Icecast Group: System Environment/Daemons License: GPLv2 @@ -79,6 +79,9 @@ fi %attr(0770,root,ices) %{_var}/log/ices %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:07:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:07:32 +0000 (UTC) Subject: rpms/icewm/devel icewm.spec,1.21,1.22 Message-ID: <20090725030732.E656411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icewm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28536 Modified Files: icewm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icewm.spec =================================================================== RCS file: /cvs/pkgs/rpms/icewm/devel/icewm.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- icewm.spec 16 Jul 2009 11:10:19 -0000 1.21 +++ icewm.spec 25 Jul 2009 03:07:32 -0000 1.22 @@ -1,6 +1,6 @@ Name: icewm Version: 1.2.37 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Light and configurable window manager Group: User Interface/Desktops @@ -201,6 +201,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Gilboa Davara - 1.2.37-1 - 1.2.37. - Fix missing directory ownership. (#483346) From jkeating at fedoraproject.org Sat Jul 25 03:07:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:07:49 +0000 (UTC) Subject: rpms/icon-naming-utils/devel icon-naming-utils.spec,1.19,1.20 Message-ID: <20090725030749.9643B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icon-naming-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28707 Modified Files: icon-naming-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icon-naming-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/icon-naming-utils/devel/icon-naming-utils.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- icon-naming-utils.spec 25 Feb 2009 06:42:36 -0000 1.19 +++ icon-naming-utils.spec 25 Jul 2009 03:07:49 -0000 1.20 @@ -1,6 +1,6 @@ Name: icon-naming-utils Version: 0.8.90 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A script to handle icon names in desktop icon themes Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/icon-naming-utils.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.90-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.8.90-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:08:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:08:04 +0000 (UTC) Subject: rpms/icon-slicer/devel icon-slicer.spec,1.15,1.16 Message-ID: <20090725030804.D880F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icon-slicer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28838 Modified Files: icon-slicer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icon-slicer.spec =================================================================== RCS file: /cvs/pkgs/rpms/icon-slicer/devel/icon-slicer.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- icon-slicer.spec 8 Apr 2009 08:16:48 -0000 1.15 +++ icon-slicer.spec 25 Jul 2009 03:08:04 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Utility for icon theme generation Name: icon-slicer Version: 0.3 -Release: 12%{?dist} +Release: 13%{?dist} License: MIT Group: Development/Tools Source: icon-slicer-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/icon-slicer %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Simon Schampijer - 0.3-12 - hotspot location ignores the y-coordinate (#494521) From jkeating at fedoraproject.org Sat Jul 25 03:08:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:08:22 +0000 (UTC) Subject: rpms/icu/devel icu.spec,1.98,1.99 Message-ID: <20090725030822.0C7FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29016 Modified Files: icu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icu.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu/devel/icu.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- icu.spec 22 Jul 2009 13:44:49 -0000 1.98 +++ icu.spec 25 Jul 2009 03:08:21 -0000 1.99 @@ -1,6 +1,6 @@ Name: icu Version: 4.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: International Components for Unicode Group: Development/Tools License: MIT @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %doc source/__docs/%{name}/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Caolan McNamara - 4.2.1-3 - make documentation noarch From jkeating at fedoraproject.org Sat Jul 25 03:08:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:08:36 +0000 (UTC) Subject: rpms/icu4j/devel icu4j.spec,1.18,1.19 Message-ID: <20090725030836.8965F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/icu4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29170 Modified Files: icu4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: icu4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/icu4j/devel/icu4j.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- icu4j.spec 8 Apr 2009 10:25:58 -0000 1.18 +++ icu4j.spec 25 Jul 2009 03:08:36 -0000 1.19 @@ -50,7 +50,7 @@ Name: icu4j Version: 4.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: International Components for Unicode for Java License: MIT and EPL @@ -191,6 +191,9 @@ unzip -qq -d %{buildroot}/%{eclipse_base %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:4.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Alexander Kurtakov 1:4.0.1-1 - Update to 4.0.1. From jkeating at fedoraproject.org Sat Jul 25 03:08:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:08:50 +0000 (UTC) Subject: rpms/id3lib/devel id3lib.spec,1.20,1.21 Message-ID: <20090725030850.6816911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/id3lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29340 Modified Files: id3lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: id3lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/id3lib/devel/id3lib.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- id3lib.spec 29 Jun 2009 14:04:16 -0000 1.20 +++ id3lib.spec 25 Jul 2009 03:08:50 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Library for manipulating ID3v1 and ID3v2 tags Name: id3lib Version: 3.8.3 -Release: 22%{?dist} +Release: 23%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://id3lib.sourceforge.net/ @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.3-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Adrian Reber - 3.8.3-22 - Fix "id3lib-devel multilib conflict" (bz #507700) From jkeating at fedoraproject.org Sat Jul 25 03:09:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:09:04 +0000 (UTC) Subject: rpms/id3v2/devel id3v2.spec,1.13,1.14 Message-ID: <20090725030904.B4C6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/id3v2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29483 Modified Files: id3v2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: id3v2.spec =================================================================== RCS file: /cvs/pkgs/rpms/id3v2/devel/id3v2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- id3v2.spec 25 Feb 2009 06:47:33 -0000 1.13 +++ id3v2.spec 25 Jul 2009 03:09:04 -0000 1.14 @@ -1,6 +1,6 @@ Name: id3v2 Version: 0.1.11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Command line ID3 tag editor Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:09:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:09:18 +0000 (UTC) Subject: rpms/idesk/devel idesk.spec,1.2,1.3 Message-ID: <20090725030918.CDB6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/idesk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29635 Modified Files: idesk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: idesk.spec =================================================================== RCS file: /cvs/pkgs/rpms/idesk/devel/idesk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- idesk.spec 25 Feb 2009 06:48:34 -0000 1.2 +++ idesk.spec 25 Jul 2009 03:09:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: idesk Version: 0.7.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Light desktop manager for minimal WMs Group: User Interface/Desktops License: BSD @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:09:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:09:32 +0000 (UTC) Subject: rpms/idm-console-framework/devel idm-console-framework.spec, 1.5, 1.6 Message-ID: <20090725030932.516B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/idm-console-framework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29793 Modified Files: idm-console-framework.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: idm-console-framework.spec =================================================================== RCS file: /cvs/pkgs/rpms/idm-console-framework/devel/idm-console-framework.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- idm-console-framework.spec 31 Mar 2009 20:58:28 -0000 1.5 +++ idm-console-framework.spec 25 Jul 2009 03:09:32 -0000 1.6 @@ -3,7 +3,7 @@ Name: idm-console-framework Version: %{major_version}.%{minor_version} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Identity Management Console Framework Group: System Environment/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/idm-console-nmclf_en.jar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Rich Megginson 1.1.3-1 - this is the 1.1.3 release - use the epoch with the java-devel version From jkeating at fedoraproject.org Sat Jul 25 03:09:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:09:46 +0000 (UTC) Subject: rpms/idw-gpl/devel idw-gpl.spec,1.4,1.5 Message-ID: <20090725030946.55D8711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/idw-gpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29925 Modified Files: idw-gpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: idw-gpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/idw-gpl/devel/idw-gpl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- idw-gpl.spec 18 Mar 2009 19:26:27 -0000 1.4 +++ idw-gpl.spec 25 Jul 2009 03:09:46 -0000 1.5 @@ -3,7 +3,7 @@ Name: idw-gpl Version: 1.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Java Swing-based docking windows framework Group: Development/Libraries/Java @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Jerry James - 1.6.1-1 - Update to 1.6.1 - Drop upstreamed patches From jkeating at fedoraproject.org Sat Jul 25 03:09:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:09:59 +0000 (UTC) Subject: rpms/ifd-egate/devel ifd-egate.spec,1.16,1.17 Message-ID: <20090725030959.6103A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifd-egate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30088 Modified Files: ifd-egate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ifd-egate.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifd-egate/devel/ifd-egate.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ifd-egate.spec 25 Feb 2009 06:51:34 -0000 1.16 +++ ifd-egate.spec 25 Jul 2009 03:09:59 -0000 1.17 @@ -4,7 +4,7 @@ Name: ifd-egate Version: 0.05 -Release: 21 +Release: 22 Summary: Axalto Egate SmartCard device driver for PCSC-lite Group: System Environment/Base License: BSD or LGPLv2+ @@ -67,6 +67,9 @@ exit 0 %{_sysconfdir}/udev/rules.d/85-pcscd_egate.rules %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.05-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.05-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:10:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:10:20 +0000 (UTC) Subject: rpms/ifm/devel ifm.spec,1.9,1.10 Message-ID: <20090725031020.BBC9E11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30270 Modified Files: ifm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ifm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifm/devel/ifm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ifm.spec 3 Mar 2009 21:16:02 -0000 1.9 +++ ifm.spec 25 Jul 2009 03:10:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: ifm Version: 5.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Interactive Fiction Mapper Group: Amusements/Games @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Robert Scheck - 5.1-9 - Solve the ppc64-redhat-linux-gnu configure target error From cwickert at fedoraproject.org Sat Jul 25 03:10:56 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:10:56 +0000 (UTC) Subject: rpms/lxde-common/F-11 .cvsignore, 1.4, 1.5 lxde-common-0.4-lxde-logout.desktop.patch, 1.1, 1.2 lxde-common-0.4-lxpanel-config.patch, 1.3, 1.4 lxde-common.spec, 1.9, 1.10 sources, 1.4, 1.5 Message-ID: <20090725031056.7233011C04D2@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30536 Modified Files: .cvsignore lxde-common-0.4-lxde-logout.desktop.patch lxde-common-0.4-lxpanel-config.patch lxde-common.spec sources Log Message: * Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 - Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-11/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 20 May 2009 12:38:11 -0000 1.4 +++ .cvsignore 25 Jul 2009 03:10:53 -0000 1.5 @@ -1 +1 @@ -lxde-common-0.4.1.tar.bz2 +lxde-common-0.4.2.tar.bz2 lxde-common-0.4-lxde-logout.desktop.patch: lxde-logout.desktop.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: lxde-common-0.4-lxde-logout.desktop.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-11/lxde-common-0.4-lxde-logout.desktop.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lxde-common-0.4-lxde-logout.desktop.patch 13 Jun 2009 18:16:52 -0000 1.1 +++ lxde-common-0.4-lxde-logout.desktop.patch 25 Jul 2009 03:10:54 -0000 1.2 @@ -1,17 +1,18 @@ --- lxde-common-0.4.orig/lxde-logout.desktop.in 2008-11-11 10:47:06.000000000 +0100 +++ lxde-common-0.4/lxde-logout.desktop.in 2009-06-13 18:44:37.000000000 +0200 -@@ -1,9 +1,14 @@ +@@ -1,11 +1,14 @@ [Desktop Entry] Encoding=UTF-8 +Type=Application Name=Logout +Name[de]=Abmelden -+Name[fr]=D?connexion Name[zh_TW]=?? Name[fi]=Kirjaudu ulos Comment=Logout, shutdown or reboot +Comment[de]=Abmelden, herunterfahren oder neu starten -+Comment[fr]=D?connexion, arr?ter ou red?marrer Comment[zh_TW]=??????????? Comment[fi]=Kirjaudu ulos, sammuta tai k?ynnist? tietokone uudelleen - Icon=stock_exit +-Icon=stock_exit ++Icon=gnome-logout + Exec=lxde-logout + NoDisplay=true lxde-common-0.4-lxpanel-config.patch: config | 2 +- panel.in | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) Index: lxde-common-0.4-lxpanel-config.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-11/lxde-common-0.4-lxpanel-config.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxde-common-0.4-lxpanel-config.patch 13 Jun 2009 18:16:53 -0000 1.3 +++ lxde-common-0.4-lxpanel-config.patch 25 Jul 2009 03:10:54 -0000 1.4 @@ -27,7 +27,7 @@ diff -dur lxde-common-0.4.orig/lxpanel/p type = menu Config { - image=@prefix@/share/lxde/images/lxde-icon.png -+ image=fedora-logo-icon.png ++ image=start-here.png system { } separator { Index: lxde-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-11/lxde-common.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lxde-common.spec 13 Jun 2009 21:43:17 -0000 1.9 +++ lxde-common.spec 25 Jul 2009 03:10:54 -0000 1.10 @@ -1,8 +1,8 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=442270 Name: lxde-common -Version: 0.4.1 -Release: 3%{?dist} +Version: 0.4.2 +Release: 1%{?dist} Summary: Default configuration files for LXDE Group: User Interface/Desktops @@ -49,13 +49,24 @@ This package contains the configuration Desktop Environment. +%package -n lxde-icon-theme +Summary: Default icon theme for LXDE +Group: User Interface/Desktops +License: LGPLv3 +URL: http://nuovext.pwsp.net/ + +%description -n lxde-icon-theme +nuoveXT is a very complete set of icons for Linux, Mac OS X and Windows. It is +also the default icon-theme of LXDE, the Lightweight X11 Desktop Environment. + + %prep %setup -q %patch10 -p1 -b .orig %patch11 -p1 -b .orig %patch12 -p1 -b .orig %patch13 -p1 -b .logout-banner -%patch14 -p1 -b .olpc +#%patch14 -p1 -b .olpc %patch4 -p1 -b .pulseaudio %patch6 -p1 -b .desktop %if 0%{?fedora} > 8 @@ -70,8 +81,6 @@ Desktop Environment. %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -# the icon theme is packaged in a different package -rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/nuoveXT2/ # only used by obsolete lxsession, not lxsession-lite rm -f $RPM_BUILD_ROOT%{_sysconfdir}/xdg/lxsession/LXDE/default desktop-file-install \ @@ -86,6 +95,21 @@ desktop-file-install rm -rf $RPM_BUILD_ROOT +%post -n lxde-icon-theme +touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + +%postun -n lxde-icon-theme +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : +fi + + +%posttrans -n lxde-icon-theme +gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + %files %defattr(-,root,root,-) %doc AUTHORS COPYING @@ -101,8 +125,18 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xsessions/LXDE.desktop %{_datadir}/applications/lxde-*.desktop +%files -n lxde-icon-theme +%doc icon-theme/AUTHORS icon-theme/COPYING +%defattr(-,root,root,-) +%{_datadir}/icons/nuoveXT2/ + %changelog +* Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 +- Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Christoph Wickert - 0.4.1-3 - Add XO keyboard shortcuts Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-11/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 20 May 2009 12:38:11 -0000 1.4 +++ sources 25 Jul 2009 03:10:54 -0000 1.5 @@ -1 +1 @@ -1d71d77d331b56ab26b0c13b709d032e lxde-common-0.4.1.tar.bz2 +81978c149ef7f349d904c4796d623ee6 lxde-common-0.4.2.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 03:14:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:14:13 +0000 (UTC) Subject: rpms/ifstat/devel ifstat.spec,1.2,1.3 Message-ID: <20090725031413.1611D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31955 Modified Files: ifstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ifstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifstat/devel/ifstat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ifstat.spec 25 Feb 2009 06:54:17 -0000 1.2 +++ ifstat.spec 25 Jul 2009 03:14:12 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Interface statistics Name: ifstat Version: 1.1 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://gael.roualland.free.fr/ifstat/ @@ -43,6 +43,9 @@ need to have snmpd running for this thou %{_bindir}/ifstat %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:14:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:14:28 +0000 (UTC) Subject: rpms/ifstatus/devel ifstatus.spec,1.2,1.3 Message-ID: <20090725031428.E98D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifstatus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32157 Modified Files: ifstatus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ifstatus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifstatus/devel/ifstatus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ifstatus.spec 22 Apr 2009 14:04:11 -0000 1.2 +++ ifstatus.spec 25 Jul 2009 03:14:28 -0000 1.3 @@ -1,6 +1,6 @@ Name: ifstatus Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Command line real time interface graphs using ncurses Group: Applications/Internet @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_sbindir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Adam Miller - 1.1.0-5 - Added CXXFLAGS and CXFLAGS to resolve debuginfo sources issue From jkeating at fedoraproject.org Sat Jul 25 03:14:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:14:42 +0000 (UTC) Subject: rpms/iftop/devel iftop.spec,1.18,1.19 Message-ID: <20090725031442.A65C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iftop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32340 Modified Files: iftop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iftop.spec =================================================================== RCS file: /cvs/pkgs/rpms/iftop/devel/iftop.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- iftop.spec 23 Feb 2009 20:26:40 -0000 1.18 +++ iftop.spec 25 Jul 2009 03:14:42 -0000 1.19 @@ -1,7 +1,7 @@ Summary: Command line tool that displays bandwidth usage on an interface Name: iftop Version: 0.17 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.ex-parrot.com/~pdw/%{name}/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.17-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0.17-8 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 03:15:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:15:18 +0000 (UTC) Subject: rpms/ifuse/devel ifuse.spec,1.4,1.5 Message-ID: <20090725031518.2DD4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32635 Modified Files: ifuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ifuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifuse/devel/ifuse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ifuse.spec 12 May 2009 16:42:20 -0000 1.4 +++ ifuse.spec 25 Jul 2009 03:15:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: ifuse Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mount Apple iPhone and iPod touch devices Group: System Environment/Libraries @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/information/20thirdparty/30-ifuse.fdi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Peter Robinson 0.9.1-1 - Update to official 0.9.1 release From jkeating at fedoraproject.org Sat Jul 25 03:15:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:15:31 +0000 (UTC) Subject: rpms/igraph/devel igraph.spec,1.31,1.32 Message-ID: <20090725031531.7577111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/igraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv318 Modified Files: igraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: igraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/igraph/devel/igraph.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- igraph.spec 16 Jun 2009 11:22:30 -0000 1.31 +++ igraph.spec 25 Jul 2009 03:15:31 -0000 1.32 @@ -1,6 +1,6 @@ Name: igraph Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for creating and manipulating graphs Group: System Environment/Libraries @@ -95,6 +95,9 @@ fi make check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 3 2009 Neal Becker - 0.5.2-4 - Try removing Provides From jkeating at fedoraproject.org Sat Jul 25 03:15:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:15:45 +0000 (UTC) Subject: rpms/ikarus/devel ikarus.spec,1.8,1.9 Message-ID: <20090725031545.751CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ikarus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv472 Modified Files: ikarus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ikarus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ikarus/devel/ikarus.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ikarus.spec 25 Feb 2009 06:57:24 -0000 1.8 +++ ikarus.spec 25 Jul 2009 03:15:45 -0000 1.9 @@ -1,6 +1,6 @@ Name: ikarus Version: 0.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An incremental optimizing compiler for R6RS Scheme Group: Development/Languages @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:15:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:15:58 +0000 (UTC) Subject: rpms/ike-scan/devel ike-scan.spec,1.6,1.7 Message-ID: <20090725031558.8D30311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ike-scan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv607 Modified Files: ike-scan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ike-scan.spec =================================================================== RCS file: /cvs/pkgs/rpms/ike-scan/devel/ike-scan.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ike-scan.spec 25 Feb 2009 06:58:23 -0000 1.6 +++ ike-scan.spec 25 Jul 2009 03:15:58 -0000 1.7 @@ -1,6 +1,6 @@ Name: ike-scan Version: 1.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: IKE protocol tool to discover, fingerprint and test IPsec VPN servers Group: Applications/Internet @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:16:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:16:11 +0000 (UTC) Subject: rpms/ikiwiki/devel ikiwiki.spec,1.27,1.28 Message-ID: <20090725031611.9B66A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ikiwiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv741 Modified Files: ikiwiki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ikiwiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/ikiwiki/devel/ikiwiki.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ikiwiki.spec 17 Jul 2009 20:40:54 -0000 1.27 +++ ikiwiki.spec 25 Jul 2009 03:16:11 -0000 1.28 @@ -1,6 +1,6 @@ Name: ikiwiki Version: 3.1415 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A wiki compiler Group: Applications/Internet @@ -143,6 +143,9 @@ meta-wrapper in this package. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1415-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Thomas Moschny - 3.1415-1 - Update to 3.1415. From jkeating at fedoraproject.org Sat Jul 25 03:16:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:16:27 +0000 (UTC) Subject: rpms/iksemel/devel iksemel.spec,1.14,1.15 Message-ID: <20090725031627.E008911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iksemel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv886 Modified Files: iksemel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iksemel.spec =================================================================== RCS file: /cvs/pkgs/rpms/iksemel/devel/iksemel.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- iksemel.spec 25 Feb 2009 07:00:16 -0000 1.14 +++ iksemel.spec 25 Jul 2009 03:16:26 -0000 1.15 @@ -1,6 +1,6 @@ Name: iksemel Version: 1.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An XML parser library designed for Jabber applications Group: System Environment/Libraries @@ -117,6 +117,9 @@ fi %{_bindir}/iksroster %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kyle at fedoraproject.org Sat Jul 25 03:16:39 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Sat, 25 Jul 2009 03:16:39 +0000 (UTC) Subject: rpms/kernel/F-11 Makefile, 1.102, 1.103 config-arm, 1.2, 1.3 config-debug, 1.27, 1.28 config-generic, 1.286, 1.287 config-ia64-generic, 1.24, 1.25 config-nodebug, 1.36, 1.37 config-powerpc-generic, 1.40, 1.41 config-powerpc64, 1.28, 1.29 config-s390x, 1.12, 1.13 config-sparc64-generic, 1.25, 1.26 config-sparc64-smp, 1.3, 1.4 config-x86-generic, 1.77, 1.78 config-x86_64-generic, 1.77, 1.78 kernel.spec, 1.1680, 1.1681 Message-ID: <20090725031639.050E011C00CE@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1024 Modified Files: Makefile config-arm config-debug config-generic config-ia64-generic config-nodebug config-powerpc-generic config-powerpc64 config-s390x config-sparc64-generic config-sparc64-smp config-x86-generic config-x86_64-generic kernel.spec Log Message: * Fri Jul 24 2009 Kyle McMartin - Copy over release configs from devel-2.6.30 tag. - Fix up some spec deviations. Index: Makefile =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/Makefile,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- Makefile 8 Apr 2009 15:33:29 -0000 1.102 +++ Makefile 25 Jul 2009 03:16:38 -0000 1.103 @@ -71,6 +71,7 @@ debug: @perl -pi -e 's/# CONFIG_B43_DEBUG is not set/CONFIG_B43_DEBUG=y/' config-generic @perl -pi -e 's/# CONFIG_B43LEGACY_DEBUG is not set/CONFIG_B43LEGACY_DEBUG=y/' config-generic @perl -pi -e 's/# CONFIG_MMIOTRACE is not set/CONFIG_MMIOTRACE=y/' config-nodebug + @perl -pi -e 's/CONFIG_STRIP_ASM_SYMS=y/# CONFIG_STRIP_ASM_SYMS is not set/' config-nodebug @# just in case we're going from extremedebug -> debug @perl -pi -e 's/CONFIG_DEBUG_PAGEALLOC=y/# CONFIG_DEBUG_PAGEALLOC is not set/' config-nodebug @@ -116,6 +117,7 @@ release: @perl -pi -e 's/CONFIG_B43_DEBUG=y/# CONFIG_B43_DEBUG is not set/' config-generic @perl -pi -e 's/CONFIG_B43LEGACY_DEBUG=y/# CONFIG_B43LEGACY_DEBUG is not set/' config-generic @perl -pi -e 's/CONFIG_MMIOTRACE=y/# CONFIG_MMIOTRACE is not set/' config-nodebug + @perl -pi -e 's/# CONFIG_STRIP_ASM_SYMS is not set/CONFIG_STRIP_ASM_SYMS=y/' config-nodebug @perl -pi -e 's/CONFIG_NR_CPUS=512/CONFIG_NR_CPUS=64/' config-x86_64-generic Index: config-arm =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-arm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- config-arm 26 Jan 2009 20:24:02 -0000 1.2 +++ config-arm 25 Jul 2009 03:16:38 -0000 1.3 @@ -8,6 +8,8 @@ CONFIG_ARCH_VERSATILE=y CONFIG_ARCH_VERSATILE_PB=y CONFIG_MACH_VERSATILE_AB=y +CONFIG_HIGHMEM=y + # CONFIG_CPU_ICACHE_DISABLE is not set # CONFIG_CPU_DCACHE_DISABLE is not set # CONFIG_CPU_DCACHE_WRITETHROUGH is not set @@ -91,3 +93,5 @@ CONFIG_RTC_DRV_PL031=m # CONFIG_DEBUG_USER is not set # CONFIG_DEBUG_ERRORS is not set # CONFIG_DEBUG_LL is not set + +CONFIG_ARM_UNWIND=y Index: config-debug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-debug,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- config-debug 1 Jul 2009 02:26:10 -0000 1.27 +++ config-debug 25 Jul 2009 03:16:38 -0000 1.28 @@ -50,6 +50,3 @@ CONFIG_DEBUG_NOTIFIERS=y CONFIG_DMA_API_DEBUG=y CONFIG_MMIOTRACE=y - -# for bug #494067 -CONFIG_DEBUG_CREDENTIALS=y Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-generic,v retrieving revision 1.286 retrieving revision 1.287 diff -u -p -r1.286 -r1.287 --- config-generic 1 Jul 2009 02:26:10 -0000 1.286 +++ config-generic 25 Jul 2009 03:16:38 -0000 1.287 @@ -16,6 +16,7 @@ CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_BUILD_DOCSRC=y +CONFIG_DYNAMIC_DEBUG=y # # General setup @@ -78,9 +79,10 @@ CONFIG_KMOD=y CONFIG_PCI=y # CONFIG_PCI_DEBUG is not set CONFIG_PCI_STUB=y +CONFIG_PCI_IOV=y CONFIG_HT_IRQ=y CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_DEFAULT_ON=y +# CONFIG_PCI_MSI_DEFAULT_ON is not set CONFIG_PCIEPORTBUS=y CONFIG_PCIEAER=y CONFIG_PCIEASPM=y @@ -121,6 +123,7 @@ CONFIG_MMC_SDHCI_PCI=m CONFIG_MMC_SDRICOH_CS=m CONFIG_MMC_TIFM_SD=m CONFIG_MMC_WBSD=m +CONFIG_MMC_VIA_SDMMC=m CONFIG_INFINIBAND=m CONFIG_INFINIBAND_MTHCA=m @@ -515,6 +518,15 @@ CONFIG_MEGARAID_MM=m CONFIG_MEGARAID_MAILBOX=m CONFIG_MEGARAID_LEGACY=m CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS_LOGGING=y + +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_OSD_ULD=m +CONFIG_SCSI_OSD_DPRINT_SENSE=1 +# CONFIG_SCSI_OSD_DEBUG is not set CONFIG_ATA=y CONFIG_ATA_SFF=y @@ -613,7 +625,7 @@ CONFIG_SCSI_SYM53C8XX_MMIO=y CONFIG_SCSI_QLOGIC_1280=m CONFIG_SCSI_DC395x=m # CONFIG_SCSI_NSP32 is not set -CONFIG_SCSI_DEBUG=m +# CONFIG_SCSI_DEBUG is not set CONFIG_SCSI_DC390T=m CONFIG_SCSI_QLA_FC=m CONFIG_SCSI_QLA_ISCSI=m @@ -786,6 +798,9 @@ CONFIG_IPV6_MULTIPLE_TABLES=y CONFIG_IPV6_MROUTE=y CONFIG_IPV6_PIMSM_V2=y +CONFIG_RDS=m +# CONFIG_RDS_DEBUG is not set + CONFIG_NET_9P=m CONFIG_NET_9P_FD=m CONFIG_NET_9P_VIRTIO=m @@ -816,6 +831,7 @@ CONFIG_NETFILTER_XT_TARGET_SECMARK=m CONFIG_NETFILTER_XT_TARGET_TCPMSS=m CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_LED=m CONFIG_NETFILTER_XT_MATCH_COMMENT=m CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m CONFIG_NETFILTER_XT_MATCH_CONNMARK=m @@ -846,6 +862,8 @@ CONFIG_NETFILTER_XT_MATCH_STRING=m CONFIG_NETFILTER_XT_MATCH_TCPMSS=m CONFIG_NETFILTER_XT_MATCH_TIME=m CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_HL=m # CONFIG_NETFILTER_DEBUG is not set CONFIG_BRIDGE_NETFILTER=y @@ -1071,6 +1089,9 @@ CONFIG_NET_PKTGEN=m CONFIG_NET_DROP_MONITOR=y CONFIG_NETDEVICES=y +# disable later --kyle +CONFIG_COMPAT_NET_DEV_OPS=y + # # ARCnet devices # @@ -1127,8 +1148,8 @@ CONFIG_ATM_NICSTAR=m # CONFIG_ATM_IA_DEBUG is not set # CONFIG_ATM_SOLOS is not set -CONFIG_RFKILL=y -CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL=m +CONFIG_RFKILL_INPUT=m # # Ethernet (10 or 100Mbit) @@ -1231,6 +1252,7 @@ CONFIG_DE600=m CONFIG_DE620=m CONFIG_CASSINI=m # CONFIG_FEC_8XX is not set +CONFIG_ETHOC=m # # Ethernet (1000 Mbit) @@ -1245,6 +1267,7 @@ CONFIG_E1000E=m CONFIG_IGB=m # CONFIG_IGB_LRO is not set CONFIG_IGB_DCA=y +CONFIG_IGBVF=m CONFIG_NS83820=m CONFIG_HAMACHI=m CONFIG_YELLOWFIN=m @@ -1278,6 +1301,8 @@ CONFIG_NETXEN_NIC=m CONFIG_NIU=m CONFIG_S2IO=m CONFIG_S2IO_NAPI=y +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set CONFIG_TEHUTI=m CONFIG_ENIC=m CONFIG_MLX4_EN=m @@ -1353,6 +1378,7 @@ CONFIG_ATH5K=m CONFIG_ATH5K_DEBUG=y CONFIG_ATH9K=m # CONFIG_ATH9K_DEBUG is not set +CONFIG_AT76C50X_USB=m CONFIG_AIRO=m CONFIG_AIRO_CS=m CONFIG_ATMEL=m @@ -1388,16 +1414,14 @@ CONFIG_LIBERTAS_SDIO=m CONFIG_LIBERTAS_DEBUG=y CONFIG_LIBERTAS_THINFIRM=m CONFIG_LIBERTAS_THINFIRM_USB=m -CONFIG_IWLCORE=m -CONFIG_IWLCORE_RFKILL=y +CONFIG_IWLWIFI=m CONFIG_IWLWIFI_LEDS=y CONFIG_IWLWIFI_RUN_TIME_CALIB=y CONFIG_IWLWIFI_DEBUG=y CONFIG_IWLWIFI_DEBUGFS=y CONFIG_IWLWIFI_RFKILL=y +CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT=y CONFIG_IWLAGN=m -CONFIG_IWLAGN_SPECTRUM_MEASUREMENT=y -CONFIG_IWLAGN_LEDS=y CONFIG_IWL4965=y CONFIG_IWL5000=y CONFIG_IWL5000_RUN_TIME_CALIB=y @@ -1414,12 +1438,13 @@ CONFIG_P54_PCI=m CONFIG_PCI_HERMES=m CONFIG_PLX_HERMES=m CONFIG_PCI_ATMEL=m +CONFIG_MWL8K=m CONFIG_PRISM54=m CONFIG_PCMCIA_HERMES=m CONFIG_PCMCIA_SPECTRUM=m CONFIG_PCMCIA_ATMEL=m CONFIG_PCMCIA_WL3501=m -CONFIG_RT2X00=y +CONFIG_RT2X00=m CONFIG_RT2X00_LIB_DEBUGFS=y # CONFIG_RT2X00_DEBUG is not set CONFIG_RT2400PCI=m @@ -1442,7 +1467,7 @@ CONFIG_USB_ZD1201=m CONFIG_USB_NET_RNDIS_WLAN=m CONFIG_ZD1211RW=m # CONFIG_ZD1211RW_DEBUG is not set - +CONFIG_AR9170_USB=m # # Token Ring devices @@ -1804,6 +1829,7 @@ CONFIG_TOUCHSCREEN_MTOUCH=m CONFIG_TOUCHSCREEN_MK712=m CONFIG_TOUCHSCREEN_PENMOUNT=m CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m CONFIG_TOUCHSCREEN_TOUCHIT213=m CONFIG_TOUCHSCREEN_TOUCHRIGHT=m CONFIG_TOUCHSCREEN_TOUCHWIN=m @@ -1983,6 +2009,7 @@ CONFIG_SENSORS_F71805F=m CONFIG_SENSORS_F71882FG=m CONFIG_SENSORS_F75375S=m CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_G760A=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m CONFIG_SENSORS_HDAPS=m @@ -2013,6 +2040,7 @@ CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_PCA9539=m CONFIG_SENSORS_PCF8574=m CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_SHT15=m CONFIG_SENSORS_SIS5595=m CONFIG_SENSORS_SMSC47M1=m CONFIG_SENSORS_SMSC47M192=m @@ -2020,6 +2048,7 @@ CONFIG_SENSORS_SMSC47B397=m CONFIG_SENSORS_THMC50=m CONFIG_SENSORS_TSL2550=m CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VIA_CPUTEMP=m CONFIG_SENSORS_VT1211=m CONFIG_SENSORS_VT8231=m CONFIG_SENSORS_W83627HF=m @@ -2030,6 +2059,8 @@ CONFIG_SENSORS_W83627EHF=m CONFIG_SENSORS_W83791D=m CONFIG_SENSORS_W83792D=m CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LM95241=m CONFIG_W1=m CONFIG_W1_CON=y @@ -2100,6 +2131,7 @@ CONFIG_USBPCWATCHDOG=m CONFIG_WM8350_WATCHDOG=m CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=m # CONFIG_NVRAM is not set # CONFIG_RTC is not set # CONFIG_RTC_DEBUG is not set @@ -2276,6 +2308,7 @@ CONFIG_MEDIA_ATTACH=y # CONFIG_DVB_CAPTURE_DRIVERS=y CONFIG_DVB_CORE=m +CONFIG_DVB_DYNAMIC_MINORS=y # CONFIG_DVB_FE_CUSTOMISE is not set @@ -2293,13 +2326,12 @@ CONFIG_DVB_USB_AF9015=m CONFIG_DVB_USB_ANYSEE=m CONFIG_DVB_USB_DW2102=m CONFIG_DVB_DM1105=m -CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_DRX397XD=m CONFIG_DVB_LGDT3304=m +CONFIG_DVB_S921=m CONFIG_DVB_ISL6405=m CONFIG_DVB_LGS8GL5=m -CONFIG_DVB_S921=m -# CONFIG_DVB_DUMMY_FE is not set -CONFIG_DVB_DRX397XD=m +CONFIG_DVB_DUMMY_FE=m # # Supported SAA7146 based PCI Adapters @@ -2341,6 +2373,7 @@ CONFIG_DVB_USB_GL861=m CONFIG_DVB_USB_GP8PSK=m CONFIG_DVB_USB_M920X=m CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_CE6230=m CONFIG_DVB_USB_OPERA1=m CONFIG_DVB_USB_TTUSB2=m CONFIG_DVB_USB_UMT_010=m @@ -2350,7 +2383,6 @@ CONFIG_DVB_USB_VP7045=m CONFIG_VIDEO_SAA7146=m CONFIG_VIDEO_SAA7146_VV=m CONFIG_VIDEO_TUNER=m -CONFIG_DVB_USB_CE6230=m # CONFIG_VIDEO_TUNER_CUSTOMISE is not set CONFIG_VIDEO_BTCX=m CONFIG_VIDEO_PVRUSB2=m @@ -2371,6 +2403,7 @@ CONFIG_VIDEO_SELECT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_3DFX=m CONFIG_FB_3DFX_ACCEL=y +CONFIG_FB_3DFX_I2C=y # CONFIG_FB_ARC is not set # CONFIG_FB_ARK is not set CONFIG_FB_ATY128=m @@ -2404,7 +2437,9 @@ CONFIG_FB_MATROX_I2C=m CONFIG_FB_MATROX_MAVEN=m CONFIG_FB_MATROX_MULTIHEAD=y CONFIG_FB_NEOMAGIC=m -# CONFIG_FB_NVIDIA is not set +CONFIG_FB_NVIDIA=m +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y # CONFIG_FB_PM2 is not set # CONFIG_FB_PM2_FIFO_DISCONNECT is not set # CONFIG_FB_PM3 is not set @@ -2440,7 +2475,7 @@ CONFIG_FB_MB862XX_PCI_GDC=y CONFIG_FB_MB862XX_LIME=y # CONFIG_FB_PRE_INIT_FB is not set # CONFIG_FB_TMIO is not set -CONFIG_FB_MODE_HELPERS=y +# CONFIG_FB_BROADSHEET is not set # CONFIG_FIRMWARE_EDID is not set @@ -2510,6 +2545,8 @@ CONFIG_SND_DRIVERS=y # CONFIG_SND_AD1889=m # CONFIG_SND_WAVEFRONT is not set +# CONFIG_SND_MSND_PINNACLE is not set +# CONFIG_SND_MSND_CLASSIC is not set # # PCI devices @@ -2558,7 +2595,7 @@ CONFIG_SND_HDA_CODEC_SI3054=y CONFIG_SND_HDA_CODEC_NVHDMI=y CONFIG_SND_HDA_GENERIC=y CONFIG_SND_HDA_POWER_SAVE=y -CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=5 CONFIG_SND_HDA_RECONFIG=y CONFIG_SND_HDSPM=m CONFIG_SND_HIFIER=m @@ -2693,10 +2730,10 @@ CONFIG_GREENASIA_FF=m CONFIG_LOGIRUMBLEPAD2_FF=y CONFIG_PANTHERLORD_FF=y CONFIG_THRUSTMASTER_FF=y -CONFIG_HID_WACOM=y CONFIG_ZEROPLUS_FF=y CONFIG_USB_HIDDEV=y CONFIG_USB_IDMOUSE=m +CONFIG_DRAGONRISE_FF=m # # USB Imaging devices @@ -2778,6 +2815,7 @@ CONFIG_USB_NET_PLUSB=m CONFIG_USB_NET_MCS7830=m CONFIG_USB_NET_RNDIS_HOST=m CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_CDC_EEM=m CONFIG_USB_NET_ZAURUS=m # @@ -2812,6 +2850,9 @@ CONFIG_USB_SERIAL_CP2101=m CONFIG_USB_SERIAL_CYPRESS_M8=m CONFIG_USB_SERIAL_CYBERJACK=m CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SYMBOL=m CONFIG_USB_SERIAL_EDGEPORT=m CONFIG_USB_SERIAL_EDGEPORT_TI=m CONFIG_USB_SERIAL_EMPEG=m @@ -2853,7 +2894,6 @@ CONFIG_USB_SERIAL_SAFE=m CONFIG_USB_SERIAL_SAFE_PADDED=y CONFIG_USB_SERIAL_SIERRAWIRELESS=m CONFIG_USB_SERIAL_SIEMENS_MPI=m -CONFIG_USB_SERIAL_QUALCOMM=m CONFIG_USB_SERIAL_SPCP8X5=m CONFIG_USB_SERIAL_TI=m CONFIG_USB_SERIAL_VISOR=m @@ -2943,6 +2983,7 @@ CONFIG_SSB_DRIVER_PCICORE=y CONFIG_PCF50633_ADC=m CONFIG_PCF50633_GPIO=m CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m CONFIG_CHARGER_PCF50633=m CONFIG_REGULATOR_PCF50633=m CONFIG_RTC_DRV_PCF50633=m @@ -2965,6 +3006,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y CONFIG_EXT2_FS_SECURITY=y CONFIG_EXT2_FS_XIP=y CONFIG_EXT3_FS=y +CONFIG_EXT3_DEFAULTS_TO_ORDERED=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y @@ -3007,6 +3049,18 @@ CONFIG_DNOTIFY=y # Autofsv3 is obsolete. # CONFIG_AUTOFS_FS is not set CONFIG_AUTOFS4_FS=m +CONFIG_EXOFS_FS=m +# CONFIG_EXOFS_DEBUG is not set +CONFIG_NILFS2_FS=m + +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +# CONFIG_FSCACHE_HISTOGRAM is not set +# CONFIG_FSCACHE_DEBUG is not set + +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# CONFIG_CACHEFILES_HISTOGRAM is not set # # CD-ROM/DVD Filesystems @@ -3031,6 +3085,7 @@ CONFIG_FAT_DEFAULT_IOCHARSET="ascii" # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y CONFIG_TMPFS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_HUGETLBFS=y @@ -3087,6 +3142,7 @@ CONFIG_NFSD_V3=y CONFIG_NFSD_V3_ACL=y CONFIG_NFSD_V4=y CONFIG_NFSD_TCP=y +CONFIG_NFS_FSCACHE=y CONFIG_LOCKD=m CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=m @@ -3140,8 +3196,7 @@ CONFIG_CONFIGFS_FS=m CONFIG_DLM=m CONFIG_DLM_DEBUG=y CONFIG_GFS2_FS=m -CONFIG_GFS2_FS_LOCKING_NOLOCK=m -CONFIG_GFS2_FS_LOCKING_DLM=m +CONFIG_GFS2_FS_LOCKING_DLM=y CONFIG_UBIFS_FS=m CONFIG_UBIFS_FS_XATTR=y @@ -3281,6 +3336,7 @@ CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_D CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536 # CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y @@ -3292,7 +3348,6 @@ CONFIG_CRYPTO_FIPS=y CONFIG_CRYPTO_HW=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_MANAGER=m -CONFIG_CRYPTO_MANAGER2=m # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_AES=m CONFIG_CRYPTO_ARC4=m @@ -3359,6 +3414,7 @@ CONFIG_CRC_CCITT=m CONFIG_CRC_ITU_T=m CONFIG_CRC_T10DIF=m +CONFIG_CRYPTO_ZLIB=m CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=m @@ -3374,6 +3430,7 @@ CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_BACKLIGHT_CLASS_DEVICE=m # CONFIG_BACKLIGHT_GENERIC is not set CONFIG_BACKLIGHT_PROGEAR=m +CONFIG_FB_NVIDIA_BACKLIGHT=y CONFIG_FB_RIVA_BACKLIGHT=y CONFIG_FB_RADEON_BACKLIGHT=y CONFIG_FB_ATY128_BACKLIGHT=y @@ -3411,6 +3468,8 @@ CONFIG_ENABLE_MUST_CHECK=y CONFIG_DETECT_SOFTLOCKUP=y # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_DETECT_HUNG_TASK=y +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set CONFIG_KEXEC=y @@ -3454,7 +3513,6 @@ CONFIG_SCSI_ARCMSR_AER=y # CONFIG_SCSI_T128 is not set # CONFIG_SCSI_U14_34F is not set # CONFIG_SCSI_ULTRASTOR is not set -CONFIG_SCSI_MVSAS=m # CONFIG_EL1 is not set # CONFIG_EL2 is not set @@ -3582,6 +3640,8 @@ CONFIG_SND_ECHO3G=m CONFIG_SND_INDIGO=m CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m # CONFIG_SND_SOC is not set ## END of ISA options. @@ -3599,6 +3659,8 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_NET48XX is not set # CONFIG_LEDS_PCA9532 is not set # CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_BD2802 is not set # CONFIG_LEDS_S3C24XX is not set # CONFIG_LEDS_SPITZ is not set # CONFIG_LEDS_TOSA is not set @@ -3616,6 +3678,7 @@ CONFIG_DMADEVICES=y CONFIG_DMA_ENGINE=y CONFIG_NET_DMA=y # CONFIG_DMATEST is not set +CONFIG_ASYNC_TX_DMA=y CONFIG_UNUSED_SYMBOLS=y @@ -3626,6 +3689,10 @@ CONFIG_IRQSOFF_TRACER=y CONFIG_SCHED_TRACER=y CONFIG_PROCESS_TRACER=y CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_WORKQUEUE_TRACER=y +CONFIG_EVENT_TRACER=y +CONFIG_FTRACE_SYSCALLS=y +CONFIG_KMEMTRACE=y CONFIG_DYNAMIC_FTRACE=y CONFIG_FTRACE_MCOUNT_RECORD=y # CONFIG_FTRACE_STARTUP_TEST is not set @@ -3663,6 +3730,7 @@ CONFIG_UIO_CIF=m CONFIG_UIO_SMX=m CONFIG_UIO_PDRV=m CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_AEC=m CONFIG_UIO_SERCOS3=m CONFIG_INSTRUMENTATION=y @@ -3720,6 +3788,7 @@ CONFIG_INPUT_APANEL=m # CONFIG_INTEL_MENLOW is not set CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ISL29003=m CONFIG_IPWIRELESS=m CONFIG_RTC_DRV_DS1511=m CONFIG_CGROUP_MEM_CONT=y @@ -3778,6 +3847,7 @@ CONFIG_W83697UG_WDT=m CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set CONFIG_REGULATOR_BQ24022=m CONFIG_REGULATOR_WM8350=m @@ -3828,6 +3898,16 @@ CONFIG_USB_ATMEL=m # CONFIG_INPUT_MIMIO is not set # CONFIG_TRANZPORT is not set # CONFIG_EPL is not set +# CONFIG_POHMELFS is not set +# CONFIG_USB_SERIAL_ATEN2011 is not set +# CONFIG_B3DFG is not set +# CONFIG_DST is not set +# CONFIG_IDE_PHISON is not set +# CONFIG_PLAN9AUTH is not set +# CONFIG_HECI is not set +# CONFIG_LINE6_USB is not set +# CONFIG_USB_SERIAL_QUATECH_ESU100 is not set +# CONFIG_RT3070 is not set # # Android @@ -3853,10 +3933,20 @@ CONFIG_SECURITYFS=y CONFIG_SCSI_CXGB3_ISCSI=m CONFIG_LIBFC=m +CONFIG_LIBFCOE=m CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m # CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_NOP_USB_XCEIV=m + +# CONFIG_IMA is not set + +# CONFIG_PAGE_POISONING is not set + +CONFIG_SLOW_WORK=y + # CONFIG_CRASH_DUMP is not set # CONFIG_CRASH is not set -CONFIG_MMC_VIA_SDMMC=m +CONFIG_STRIP_ASM_SYMS=y Index: config-ia64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-ia64-generic,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- config-ia64-generic 30 Apr 2009 20:02:23 -0000 1.24 +++ config-ia64-generic 25 Jul 2009 03:16:38 -0000 1.25 @@ -70,6 +70,7 @@ CONFIG_TCG_INFINEON=m # CONFIG_HW_RANDOM is not set # CONFIG_GEN_RTC is not set CONFIG_EFI_RTC=y +CONFIG_RTC_DRV_EFI=y # Index: config-nodebug =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-nodebug,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- config-nodebug 1 Jul 2009 02:26:10 -0000 1.36 +++ config-nodebug 25 Jul 2009 03:16:38 -0000 1.37 @@ -49,6 +49,3 @@ CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 # CONFIG_DMA_API_DEBUG is not set # CONFIG_MMIOTRACE is not set - -# for bug #494067 -# CONFIG_DEBUG_CREDENTIALS is not set Index: config-powerpc-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-powerpc-generic,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- config-powerpc-generic 4 May 2009 07:54:51 -0000 1.40 +++ config-powerpc-generic 25 Jul 2009 03:16:38 -0000 1.41 @@ -36,6 +36,7 @@ CONFIG_HIBERNATION=y # CONFIG_GEN_RTC is not set # CONFIG_GEN_RTC_X is not set CONFIG_RTC_DRV_PPC=y +CONFIG_RTC_DRV_GENERIC=y CONFIG_PROC_DEVICETREE=y # CONFIG_CMDLINE_BOOL is not set CONFIG_ELECTRA_IDE=y @@ -54,12 +55,13 @@ CONFIG_FB_OF=y CONFIG_FB_IBM_GXT4500=y CONFIG_FB_RADEON=y CONFIG_FB_MATROX=y -# CONFIG_FB_NVIDIA is not set +CONFIG_FB_NVIDIA=y # CONFIG_FB_VGA16 is not set CONFIG_FB_ATY128_BACKLIGHT=y CONFIG_FB_ATY_BACKLIGHT=y CONFIG_FB_RADEON_BACKLIGHT=y CONFIG_FB_RIVA_BACKLIGHT=y +CONFIG_FB_NVIDIA_BACKLIGHT=y CONFIG_SND_POWERMAC=m CONFIG_SND_POWERMAC_AUTO_DRC=y @@ -110,11 +112,14 @@ CONFIG_USB_HIDINPUT_POWERBOOK=y # CONFIG_PMAC_BACKLIGHT_LEGACY is not set CONFIG_LEDS_TRIGGER_TIMER=m CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_GPIO=m # FIXME: Should depend on IA64/x86 # CONFIG_SGI_IOC4 is not set CONFIG_PPC_EFIKA=y +CONFIG_PPC_MEDIA5200=y + # CONFIG_PPC_LITE5200 is not set CONFIG_PPC_BESTCOMM=y CONFIG_PMAC_RACKMETER=m @@ -197,6 +202,8 @@ CONFIG_EDAC=y # CONFIG_EDAC_DEBUG is not set CONFIG_EDAC_MM_EDAC=m CONFIG_EDAC_PASEMI=m +CONFIG_EDAC_AMD8131=m +CONFIG_EDAC_AMD8111=m CONFIG_AXON_RAM=m CONFIG_OPROFILE_CELL=y @@ -252,8 +259,10 @@ CONFIG_SERIO_XILINX_XPS_PS2=m # CONFIG_PPC_SMLPAR is not set CONFIG_MGCOGE=y -### breaks usb on mac...? #486511 -# CONFIG_GEF_SBC610 is not set +CONFIG_GEF_SBC610=y +CONFIG_GEF_PPC9A=y +CONFIG_GEF_SBC310=y + CONFIG_QUICC_ENGINE=y CONFIG_QE_GPIO=y CONFIG_MPC8xxx_GPIO=y @@ -287,6 +296,8 @@ CONFIG_TOUCHSCREEN_DA9034=m CONFIG_SIMPLE_GPIO=y +CONFIG_FSL_PQ_MDIO=m + CONFIG_PS3_VRAM=m CONFIG_MDIO_GPIO=m CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL=m @@ -299,3 +310,13 @@ CONFIG_USB_FHCI_HCD=m # CONFIG_FHCI_DEBUG is not set # CONFIG_DRM_RADEON_KMS is not set + +CONFIG_AMIGAONE=y + +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y + +CONFIG_DTL=y + +CONFIG_MMC_SDHCI_OF=m + +# CONFIG_CONSISTENT_SIZE_BOOL is not set Index: config-powerpc64 =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-powerpc64,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- config-powerpc64 12 Mar 2009 03:23:02 -0000 1.28 +++ config-powerpc64 25 Jul 2009 03:16:38 -0000 1.29 @@ -40,6 +40,7 @@ CONFIG_GELIC_WIRELESS_OLD_PSK_INTERFACE= CONFIG_CBE_THERM=m CONFIG_CBE_CPUFREQ=m CONFIG_CBE_CPUFREQ_PMI=m +CONFIG_CBE_CPUFREQ_PMI_ENABLE=y CONFIG_PMAC_RACKMETER=m CONFIG_IBMEBUS=y CONFIG_SPU_FS=m @@ -175,3 +176,7 @@ CONFIG_PPC_IBM_CELL_RESETBUTTON=y CONFIG_PPC_IBM_CELL_POWERBUTTON=m CONFIG_CBE_CPUFREQ_SPU_GOVERNOR=m +CONFIG_RTC_DRV_PS3=y + +CONFIG_CRASH_DUMP=y +CONFIG_RELOCATABLE=y Index: config-s390x =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-s390x,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- config-s390x 12 Mar 2009 03:23:03 -0000 1.12 +++ config-s390x 25 Jul 2009 03:16:38 -0000 1.13 @@ -5,6 +5,11 @@ CONFIG_MARCH_Z900=y CONFIG_NR_CPUS=64 CONFIG_COMPAT=y +# See bug 496596 +CONFIG_HZ_100=y +# See bug 496605 +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set + CONFIG_MMU=y CONFIG_RWSEM_XCHGADD_ALGORITHM=y @@ -29,7 +34,7 @@ CONFIG_IPL=y CONFIG_IPL_VM=y # CONFIG_PROCESS_DEBUG is not set CONFIG_PFAULT=y -# CONFIG_SHARED_KERNEL is not set +CONFIG_SHARED_KERNEL=y CONFIG_CMM=m CONFIG_CMM_PROC=y CONFIG_VIRT_TIMER=y @@ -40,7 +45,7 @@ CONFIG_SMSGIUCV=m # SCSI low-level drivers # CONFIG_ZFCP=m -CONFIG_ZFCPDUMP=m +CONFIG_ZFCPDUMP=y CONFIG_CCW=y # @@ -123,10 +128,6 @@ CONFIG_CCWGROUP=m # CONFIG_IEEE80211 is not set # CONFIG_B44 is not set -# The s390 CPU does not have hardware support for big pages at all. -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set - # # Partition Types # Index: config-sparc64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-sparc64-generic,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- config-sparc64-generic 9 Apr 2009 19:15:20 -0000 1.25 +++ config-sparc64-generic 25 Jul 2009 03:16:38 -0000 1.26 @@ -151,7 +151,7 @@ CONFIG_ATM_FORE200E_USE_TASKLET=y CONFIG_ATM_FORE200E_DEBUG=0 CONFIG_ATM_FORE200E_TX_RETRY=16 # CONFIG_DRM_TDFX is not set -CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_ATKBD is not set CONFIG_KEYBOARD_SUNKBD=y # CONFIG_INPUT_PCSPKR is not set CONFIG_INPUT_SPARCSPKR=m @@ -197,5 +197,3 @@ CONFIG_US3_MC=y CONFIG_SENSORS_ULTRA45=m CONFIG_LEDS_SUNFIRE=m CONFIG_TADPOLE_TS102_UCTRL=m - -# CONFIG_KGDB is not set Index: config-sparc64-smp =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-sparc64-smp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- config-sparc64-smp 9 Apr 2009 19:15:20 -0000 1.3 +++ config-sparc64-smp 25 Jul 2009 03:16:38 -0000 1.4 @@ -1,2 +1 @@ CONFIG_SMP=y -CONFIG_KGDB=y Index: config-x86-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-x86-generic,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- config-x86-generic 13 Jun 2009 02:07:58 -0000 1.77 +++ config-x86-generic 25 Jul 2009 03:16:38 -0000 1.78 @@ -9,6 +9,9 @@ CONFIG_UID16=y # # CONFIG_X86_PC is not set CONFIG_X86_GENERICARCH=y +CONFIG_X86_EXTENDED_PLATFORM=y +CONFIG_X86_32_NON_STANDARD=y + # CONFIG_X86_ELAN is not set # CONFIG_X86_VOYAGER is not set # CONFIG_X86_NUMAQ is not set @@ -67,6 +70,7 @@ CONFIG_SONYPI_COMPAT=y CONFIG_MICROCODE=m CONFIG_X86_MSR=y CONFIG_X86_CPUID=y +CONFIG_X86_CPU_DEBUG=m CONFIG_EDD=m # CONFIG_EDD_OFF is not set # CONFIG_NUMA is not set @@ -83,6 +87,11 @@ CONFIG_EFI_PCDP=y CONFIG_FB_EFI=y # CONFIG_FB_N411 is not set +CONFIG_DMAR=y +CONFIG_DMAR_GFX_WA=y +CONFIG_DMAR_FLOPPY_WA=y +# CONFIG_DMAR_DEFAULT_ON is not set + CONFIG_FB_GEODE=y CONFIG_FB_GEODE_LX=y CONFIG_FB_GEODE_GX=y @@ -100,6 +109,8 @@ CONFIG_PCMCIA_FDOMAIN=m CONFIG_SCSI_FUTURE_DOMAIN=m CONFIG_SCSI_ADVANSYS=m +CONFIG_CC_STACKPROTECTOR=y + CONFIG_SECCOMP=y CONFIG_CAPI_EICON=y @@ -291,6 +302,8 @@ CONFIG_EDAC_I5000=m CONFIG_EDAC_I5100=m CONFIG_EDAC_I5400=m CONFIG_EDAC_R82600=m +CONFIG_EDAC_AMD8131=m +CONFIG_EDAC_AMD8111=m CONFIG_SCHED_MC=y @@ -323,6 +336,7 @@ CONFIG_ACPI_WMI=m CONFIG_ACER_WMI=m CONFIG_TC1100_WMI=m CONFIG_HP_WMI=m +CONFIG_DELL_WMI=m # CONFIG_SMSC37B787_WDT is not set CONFIG_W83697HF_WDT=m @@ -350,6 +364,9 @@ CONFIG_LGUEST=m CONFIG_PARAVIRT_GUEST=y CONFIG_PARAVIRT=y # CONFIG_PARAVIRT_DEBUG is not set + +# PARAVIRT_SPINLOCKS has a 5% perf hit +# CONFIG_PARAVIRT_SPINLOCKS is not set CONFIG_KVM_CLOCK=y CONFIG_KVM_GUEST=y CONFIG_LGUEST_GUEST=y @@ -384,6 +401,7 @@ CONFIG_THINKPAD_ACPI=m CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y CONFIG_THINKPAD_ACPI_BAY=y CONFIG_THINKPAD_ACPI_VIDEO=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set CONFIG_MACINTOSH_DRIVERS=y @@ -443,4 +461,3 @@ CONFIG_POWER_TRACER=y CONFIG_HW_BRANCH_TRACER=y # CONFIG_SPARSE_IRQ is not set -CONFIG_SENSORS_VIA_CPUTEMP=m Index: config-x86_64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-x86_64-generic,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- config-x86_64-generic 13 Jun 2009 02:07:58 -0000 1.77 +++ config-x86_64-generic 25 Jul 2009 03:16:38 -0000 1.78 @@ -3,8 +3,12 @@ CONFIG_UID16=y # CONFIG_MK8 is not set # CONFIG_MPSC is not set CONFIG_GENERIC_CPU=y +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_VSMP is not set +# CONFIG_X86_UV is not set CONFIG_X86_MSR=y CONFIG_X86_CPUID=y +CONFIG_X86_CPU_DEBUG=m CONFIG_MTRR=y CONFIG_NUMA=y CONFIG_K8_NUMA=y @@ -28,10 +32,12 @@ CONFIG_EDD=m CONFIG_PCI_BIOS=y CONFIG_PCI_MMCONFIG=y CONFIG_DMAR=y -CONFIG_DMAR_GFX_WA=y +# CONFIG_DMAR_GFX_WA is not set CONFIG_DMAR_FLOPPY_WA=y # CONFIG_DMAR_DEFAULT_ON is not set +CONFIG_KEXEC_JUMP=y + CONFIG_EFI=y CONFIG_EFI_VARS=y CONFIG_EFI_PCDP=y @@ -113,6 +119,7 @@ CONFIG_DELL_LAPTOP=m CONFIG_ACPI_WMI=m CONFIG_ACER_WMI=m CONFIG_HP_WMI=m +CONFIG_DELL_WMI=m CONFIG_THINKPAD_ACPI=m # CONFIG_THINKPAD_ACPI_DEBUG is not set @@ -120,6 +127,7 @@ CONFIG_THINKPAD_ACPI=m CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y CONFIG_THINKPAD_ACPI_BAY=y CONFIG_THINKPAD_ACPI_VIDEO=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_COMPAQ=m @@ -147,14 +155,15 @@ CONFIG_PNPACPI=y CONFIG_BLK_DEV_AMD74XX=y CONFIG_CRYPTO_DEV_PADLOCK=m -CONFIG_CRYPTO_DEV_PADLOCK_AES=y -CONFIG_CRYPTO_DEV_PADLOCK_SHA=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m # CONFIG_CRYPTO_AES is not set CONFIG_CRYPTO_AES_X86_64=m # CONFIG_CRYPTO_TWOFISH is not set CONFIG_CRYPTO_TWOFISH_X86_64=m # CONFIG_CRYPTO_SALSA20 is not set CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_AES_NI_INTEL=m CONFIG_X86_MCE=y CONFIG_X86_MCE_INTEL=y @@ -196,6 +205,8 @@ CONFIG_EDAC_I82875P=m CONFIG_EDAC_I82860=m CONFIG_EDAC_I82975X=m CONFIG_EDAC_R82600=m +CONFIG_EDAC_AMD8131=m +CONFIG_EDAC_AMD8111=m CONFIG_SCHED_MC=y @@ -272,6 +283,8 @@ CONFIG_KVM_TRACE=y CONFIG_PARAVIRT_GUEST=y CONFIG_PARAVIRT=y # CONFIG_PARAVIRT_DEBUG is not set +# PARAVIRT_SPINLOCKS has a 5% perf hit +# CONFIG_PARAVIRT_SPINLOCKS is not set CONFIG_KVM_CLOCK=y CONFIG_KVM_GUEST=y @@ -349,7 +362,6 @@ CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS= CONFIG_POWER_TRACER=y CONFIG_HW_BRANCH_TRACER=y +CONFIG_X86_X2APIC=y CONFIG_SPARSE_IRQ=y CONFIG_NUMA_MIGRATE_IRQ_DESC=y - -CONFIG_SENSORS_VIA_CPUTEMP=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1680 retrieving revision 1.1681 diff -u -p -r1.1680 -r1.1681 --- kernel.spec 25 Jul 2009 01:43:18 -0000 1.1680 +++ kernel.spec 25 Jul 2009 03:16:38 -0000 1.1681 @@ -412,9 +412,6 @@ Summary: The Linux kernel # %define kernel_xen_conflicts glibc < 2.3.5-1, xen < 3.0.1 -# upto and including kernel 2.4.9 rpms, the 4Gb+ kernel was called kernel-enterprise -# now that the smp kernel offers this capability, obsolete the old kernel -%define kernel_smp_obsoletes kernel-enterprise < 2.4.10 %define kernel_PAE_obsoletes kernel-smp < 2.6.17, kernel-xen <= 2.6.27-0.2.rc0.git6.fc10 %define kernel_PAE_provides kernel-xen = %{rpmversion}-%{pkg_release} @@ -589,30 +586,15 @@ Patch09: linux-2.6-upstream-reverts.patc # Git trees. Patch10: git-cpufreq.patch Patch11: git-bluetooth.patch -Patch12: git-bluetooth-fixes.patch # Standalone patches Patch20: linux-2.6-hotfixes.patch Patch21: linux-2.6-tracehook.patch Patch22: linux-2.6-utrace.patch -Patch23: linux-2.6-utrace-ftrace.patch - -# vm patches -Patch24: linux-2.6-defaults-saner-vm-settings.patch -Patch25: linux-2.6-mm-lru-evict-streaming-io-pages-first.patch -Patch26: linux-2.6-mm-lru-report-vm-flags-in-page-referenced.patch -Patch27: linux-2.6-mm-lru-dont-evict-mapped-executable-pages.patch - -# Support suspend/resume, other crash fixes -Patch30: linux-2.6-iommu-fixes.patch Patch41: linux-2.6-sysrq-c.patch -#Patch101: linux-2.6-e820-save-restore-edi-ebp.patch -#Patch102: linux-2.6-e820-acpi3-bios-workaround.patch -#Patch103: linux-2.6-e820-guard-against-pre-acpi3.patch - Patch141: linux-2.6-ps3-storage-alias.patch Patch143: linux-2.6-g5-therm-shutdown.patch Patch144: linux-2.6-vio-modalias.patch @@ -621,6 +603,9 @@ Patch147: linux-2.6-imac-transparent-bri Patch150: linux-2.6.29-sparc-IOC_TYPECHECK.patch Patch160: linux-2.6-execshield.patch + +Patch200: linux-2.6-ext4-prealloc-fixes.patch + Patch250: linux-2.6-debug-sizeof-structs.patch Patch260: linux-2.6-debug-nmi-timeout.patch Patch270: linux-2.6-debug-taint-vm.patch @@ -630,65 +615,25 @@ Patch360: linux-2.6-debug-always-inline- Patch380: linux-2.6-defaults-pci_no_msi.patch Patch381: linux-2.6-pciehp-update.patch Patch382: linux-2.6-defaults-pciehp.patch -Patch383: linux-2.6-pci-sysfs-remove-id.patch Patch390: linux-2.6-defaults-acpi-video.patch Patch391: linux-2.6-acpi-video-dos.patch -Patch392: linux-2.6-acpi-strict-resources.patch -Patch393: linux-2.6-hwmon-atk0110.patch -Patch394: linux-2.6-acpi-video-didl-intel-outputs.patch -Patch395: linux-2.6-sony-laptop-rfkill.patch -Patch400: linux-2.6-scsi-cpqarray-set-master.patch Patch450: linux-2.6-input-kill-stupid-messages.patch Patch451: linux-2.6-input-fix-toshiba-hotkeys.patch -Patch452: linux-2.6-input-hid-extra-gamepad.patch -Patch453: linux-2.6-input-wacom-bluetooth.patch -Patch455: linux-2.6-input-bcm5974-new-header-type.patch -Patch456: linux-2.6-input-bcm5974-add-quad-finger.patch -Patch457: linux-2.6-input-bcm5974-add-macbook-unibody.patch -Patch458: linux-2.6-hid-apple-mini-keyboard.patch - -Patch470: linux-2.6-serial-460800.patch -Patch471: linux-2.6-serial-add-txen-test-param.patch -Patch472: linux-2.6-drivers-char-low-latency-removal.patch -# 8192 too low -Patch480: increase-MAX_LOCKDEP_ENTRIES.patch +Patch460: linux-2.6-serial-460800.patch Patch510: linux-2.6-silence-noise.patch -Patch511: linux-2.6-shut-up-efifb.patch Patch530: linux-2.6-silence-fbcon-logo.patch Patch570: linux-2.6-selinux-mprotect-checks.patch Patch580: linux-2.6-sparc-selinux-mprotect-checks.patch + Patch600: linux-2.6-defaults-alsa-hda-beep-off.patch -Patch601: alsa-rewrite-hw_ptr-updaters.patch -Patch602: alsa-pcm-always-reset-invalid-position.patch -Patch603: alsa-pcm-fix-delta-calc-at-overlap.patch -Patch605: alsa-hda-dont-reset-BDL-unnecessarily.patch -Patch606: alsa-dont-reset-stream-at-each-prepare-callb.patch -Patch607: alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch -Patch608: alsa-pcm-safer-boundary-checks.patch Patch610: hda_intel-prealloc-4mb-dmabuffer.patch -Patch611: linux-2.6.29-alsa-update-quirks.patch -Patch612: alsa-hda-add-debugging.patch - -Patch630: net-revert-forcedeth-power-down-phy-when-interface-is.patch -Patch642: linux-2.6-netdev-r8169-use-different-family-defaults.patch Patch670: linux-2.6-ata-quirk.patch Patch680: linux-2.6-rt2x00-asus-leds.patch Patch681: linux-2.6-mac80211-age-scan-results-on-resume.patch -Patch682: linux-2.6-ipw2x00-age-scan-results-on-resume.patch -Patch683: linux-2.6-iwl3945-report-killswitch-changes-even-if-the-interface-is-down.patch -Patch684: linux-2.6-iwlagn-fix-hw-rfkill-while-the-interface-is-down.patch -Patch685: linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch -Patch686: linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch -Patch687: mac80211-don-t-drop-nullfunc-frames-during-software.patch -Patch690: iwl3945-release-resources-before-shutting-down.patch -Patch691: iwl3945-add-debugging-for-wrong-command-queue.patch -Patch692: iwl3945-fix-rfkill-sw-and-hw-mishmash.patch - -Patch700: linux-2.6-dma-debug-fixes.patch Patch800: linux-2.6-crash-driver.patch @@ -696,10 +641,6 @@ Patch1000: linux-2.6-neigh_-fix-state-tr Patch1515: linux-2.6.29-lirc.patch -# Fix the return code CD accesses when the CDROM drive door is closed -# but the drive isn't yet ready. -Patch1550: linux-2.6-cdrom-door-status.patch - Patch1700: agp-set_memory_ucwb.patch # nouveau + drm fixes Patch1811: drm-next.patch @@ -709,40 +650,9 @@ Patch1814: drm-nouveau.patch Patch1816: drm-no-gem-on-i8xx.patch Patch1818: drm-i915-resume-force-mode.patch Patch1819: drm-intel-big-hammer.patch -Patch1821: drm-intel-lying-systems-without-lvds.patch -Patch1822: drm-intel-gen3-fb-hack.patch -Patch1824: drm-intel-hdmi-edid-fix.patch -Patch1825: drm-intel-tiling-transition.patch -Patch1826: drm-intel-next.patch -Patch1828: drm-intel-debugfs-ringbuffer.patch -Patch1829: drm-edid-ignore-tiny-modes.patch -Patch1830: linux-2.6.29.3-boot-vga.patch -Patch1831: drm-intel-include-965gme-pci-id.patch -Patch1832: drm-intel-gem-use-dma32-on-pae.patch -Patch1833: drm-intel-i8xx-cursors.patch -Patch1834: drm-intel-vmalloc.patch -Patch1835: drm-copyback-ioctl-data-to-userspace-regardless-of-retcode.patch -Patch1836: drm-intel-disable-kms-i8xx.patch -Patch1837: drm-i915-apply-a-big-hammer-to-865-gem-object.patch -Patch1838: drm-i915-fix-tiling-pitch.patch -Patch1839: drm-intel-set-domain-on-fault.patch -Patch1840: drm-modesetting-radeon-fixes.patch -Patch1841: drm-radeon-fix-ring-commit.patch -Patch1842: drm-radeon-new-pciids.patch -Patch1843: drm-dont-frob-i2c.patch -Patch1844: drm-connector-dpms-fix.patch -Patch1845: drm-intel-tv-fix.patch -Patch1846: drm-radeon-cs-oops-fix.patch -Patch1847: drm-intel-a17-fix.patch -Patch1848: drm-pnp-add-resource-range-checker.patch -Patch1849: drm-i915-enable-mchbar.patch # kludge to make ich9 e1000 work Patch2000: linux-2.6-e1000-ich9.patch -# BZ #498854 -Patch2010: linux-2.6-netdev-ehea-fix-circular-locking.patch -Patch2012: linux-2.6-netdev-ehea-fix-page-alignment.patch -Patch2013: linux-2.6-netdev-ehea-remove-from-list.patch # linux1394 git patches Patch2200: linux-2.6-firewire-git-update.patch @@ -752,62 +662,27 @@ Patch2201: linux-2.6-firewire-git-pendin # silence the ACPI blacklist code Patch2802: linux-2.6-silence-acpi-blacklist.patch -Patch2900: linux-2.6-v4l-dvb-fixes.patch +Patch2899: linux-2.6-v4l-dvb-fixes.patch +Patch2900: linux-2.6-v4l-dvb-update.patch Patch2901: linux-2.6-v4l-dvb-experimental.patch -Patch2902: linux-2.6-v4l-dvb-fix-uint16_t-audio-h.patch Patch2903: linux-2.6-revert-dvb-net-kabi-change.patch # fs fixes -# ext4 fixes +Patch3000: linux-2.6-btrfs-experimental-branch.patch + +#snmp fixes +Patch10000: linux-2.6-missing-rfc2465-stats.patch -Patch3000: linux-2.6-btrfs-unstable-update.patch -Patch3010: linux-2.6-relatime-by-default.patch -Patch3020: linux-2.6-fiemap-header-install.patch - -Patch5000: linux-2.6-add-qcserial.patch - -# patches headed for -stable -# fix squashfs on systems where pagesize > blocksize (ia64, ppc64 w/64k pages) -Patch6010: squashfs-broken-when-pagesize-greater-than-blocksize.patch - -# CIFS -Patch6100: linux-2.6-fs-cifs-fix-port-numbers.patch - -Patch9001: revert-fix-modules_install-via-nfs.patch -Patch9010: linux-2.6-nfsd-report-short-writes.patch -Patch9020: linux-2.6-nfsd-report-short-writes-fix.patch -Patch9030: linux-2.6-nfsd-cred-refcount-fix.patch - -Patch9100: cpufreq-add-atom-to-p4-clockmod.patch -# VIA processors: enable pstates -Patch9110: linux-2.6-cpufreq-enable-acpi-pstates-on-via.patch - -#Adding dropwatch into rawhide until we get to 2.6.30 -Patch9200: linux-2.6-dropwatch-protocol.patch - -# kvm fixes -Patch9303: linux-2.6-kvm-skip-pit-check.patch -Patch9304: linux-2.6-xen-check-for-nx-support.patch -Patch9305: linux-2.6-xen-fix_warning_when_deleting_gendisk.patch -Patch9307: linux-2.6.29-xen-disable-gbpages.patch -Patch9308: linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch - -Patch11000: linux-2.6-parport-quickfix-the-proc-registration-bug.patch -Patch11010: linux-2.6-dev-zero-avoid-oom-lockup.patch -Patch11020: linux-2.6-usb-remove-low-latency-hack.patch -Patch11030: linux-2.6-x86-delay-tsc-barrier.patch - -# via: enable 64-bit padlock support on nano, add CPU temp sensor, -# add via-sdmmc driver -Patch11100: via-centaur-merge-32-64-bit-init.patch -Patch11105: via-sdmmc.patch -Patch11106: via-rng-64-bit-enable.patch -Patch11107: via-padlock-nano-workarounds-ecb.patch -Patch11108: via-padlock-nano-workarounds-cbc.patch -Patch11109: via-padlock-cryptodev-1-64bit-enable.patch -Patch11110: via-padlock-cryptodev-2-64bit-enable.patch -Patch11120: via-padlock-fix-might-sleep.patch -Patch11130: via-hwmon-temp-sensor.patch +# VIA Nano / VX8xx updates +Patch11000: linux-2.6-cpufreq-enable-acpi-pstates-on-via.patch +Patch11010: via-hwmon-temp-sensor.patch +Patch11020: via-padlock-10-enable-64bit.patch +Patch11030: via-padlock-20-add-x86-dependency.patch +Patch11040: via-padlock-30-fix-might-sleep.patch +Patch11050: via-padlock-40-nano-ecb.patch +Patch11060: via-padlock-50-nano-cbc.patch +Patch11070: via-rng-enable-64bit.patch +Patch11080: via-sdmmc.patch %endif @@ -865,11 +740,10 @@ Requires: gzip Kernel-bootwrapper contains the wrapper code which makes bootable "zImage" files combining both kernel and initial ramdisk. -%package debuginfo-common +%package debuginfo-common-%{_target_cpu} Summary: Kernel source files used by %{name}-debuginfo packages Group: Development/Debug -Provides: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release} -%description debuginfo-common +%description debuginfo-common-%{_target_cpu} This package is required by %{name}-debuginfo subpackages. It provides the kernel source files common to all builds. @@ -1033,6 +907,20 @@ ApplyPatch() esac } +# don't apply patch if it's empty +ApplyOptionalPatch() +{ + local patch=$1 + shift + if [ ! -f $RPM_SOURCE_DIR/$patch ]; then + exit 1 + fi + local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}') + if [ "$C" -gt 9 ]; then + ApplyPatch $patch ${1+"$@"} + fi +} + # First we unpack the kernel tarball. # If this isn't the first make prep, we use links to the existing clean tarball # which speeds things up quite a bit. @@ -1172,7 +1060,7 @@ make -f %{SOURCE20} VERSION=%{version} c done %endif -#ApplyPatch git-linus.diff +#ApplyOptionalPatch git-linus.diff # This patch adds a "make nonint_oldconfig" which is non-interactive and # also gives a list of missing options at the end. Useful for automated @@ -1184,47 +1072,38 @@ ApplyPatch linux-2.6-makefile-after_link # # misc small stuff to make things compile # -C=$(wc -l $RPM_SOURCE_DIR/linux-2.6-compile-fixes.patch | awk '{print $1}') -if [ "$C" -gt 10 ]; then -ApplyPatch linux-2.6-compile-fixes.patch -fi +ApplyOptionalPatch linux-2.6-compile-fixes.patch %if !%{nopatches} # revert patches from upstream that conflict or that we get via other means -C=$(wc -l $RPM_SOURCE_DIR/linux-2.6-upstream-reverts.patch | awk '{print $1}') -if [ "$C" -gt 10 ]; then -ApplyPatch linux-2.6-upstream-reverts.patch -R -fi +ApplyOptionalPatch linux-2.6-upstream-reverts.patch -R #ApplyPatch git-cpufreq.patch -ApplyPatch git-bluetooth.patch -ApplyPatch git-bluetooth-fixes.patch +#ApplyPatch git-bluetooth.patch ApplyPatch linux-2.6-hotfixes.patch # Roland's utrace ptrace replacement. ApplyPatch linux-2.6-tracehook.patch ApplyPatch linux-2.6-utrace.patch -ApplyPatch linux-2.6-utrace-ftrace.patch - -# vm patches -ApplyPatch linux-2.6-defaults-saner-vm-settings.patch -ApplyPatch linux-2.6-mm-lru-evict-streaming-io-pages-first.patch -ApplyPatch linux-2.6-mm-lru-report-vm-flags-in-page-referenced.patch -ApplyPatch linux-2.6-mm-lru-dont-evict-mapped-executable-pages.patch - -# IOMMU fixes backported to 2.6.29 -ApplyPatch linux-2.6-iommu-fixes.patch # enable sysrq-c on all kernels, not only kexec ApplyPatch linux-2.6-sysrq-c.patch +ApplyPatch linux-2.6-missing-rfc2465-stats.patch + # Architecture patches # x86(-64) -#ApplyPatch linux-2.6-e820-save-restore-edi-ebp.patch -#ApplyPatch linux-2.6-e820-acpi3-bios-workaround.patch -#ApplyPatch linux-2.6-e820-guard-against-pre-acpi3.patch +ApplyPatch linux-2.6-cpufreq-enable-acpi-pstates-on-via.patch +ApplyPatch via-hwmon-temp-sensor.patch +ApplyPatch via-padlock-10-enable-64bit.patch +ApplyPatch via-padlock-20-add-x86-dependency.patch +ApplyPatch via-padlock-30-fix-might-sleep.patch +ApplyPatch via-padlock-40-nano-ecb.patch +ApplyPatch via-padlock-50-nano-cbc.patch +ApplyPatch via-rng-enable-64bit.patch +ApplyPatch via-sdmmc.patch # # PowerPC @@ -1244,8 +1123,8 @@ ApplyPatch linux-2.6-imac-transparent-br # # SPARC64 # - ApplyPatch linux-2.6.29-sparc-IOC_TYPECHECK.patch + # # Exec shield # @@ -1256,33 +1135,23 @@ ApplyPatch linux-2.6-execshield.patch # # ext4 +#ApplyPatch linux-2.6-ext4-prealloc-fixes.patch # xfs # btrfs -ApplyPatch linux-2.6-btrfs-unstable-update.patch - -# relatime -ApplyPatch linux-2.6-relatime-by-default.patch - -# put fiemap.h into kernel-headers -ApplyPatch linux-2.6-fiemap-header-install.patch +#ApplyPatch linux-2.6-btrfs-experimental-branch.patch # USB -ApplyPatch linux-2.6-add-qcserial.patch # ACPI ApplyPatch linux-2.6-defaults-acpi-video.patch ApplyPatch linux-2.6-acpi-video-dos.patch -ApplyPatch linux-2.6-acpi-strict-resources.patch -ApplyPatch linux-2.6-hwmon-atk0110.patch -ApplyPatch linux-2.6-acpi-video-didl-intel-outputs.patch -ApplyPatch linux-2.6-sony-laptop-rfkill.patch # Various low-impact patches to aid debugging. ApplyPatch linux-2.6-debug-sizeof-structs.patch -ApplyPatch linux-2.6-debug-nmi-timeout.patch -ApplyPatch linux-2.6-debug-taint-vm.patch +#ApplyPatch linux-2.6-debug-nmi-timeout.patch +#ApplyPatch linux-2.6-debug-taint-vm.patch ApplyPatch linux-2.6-debug-spinlock-taint.patch ApplyPatch linux-2.6-debug-vm-would-have-oomkilled.patch ApplyPatch linux-2.6-debug-always-inline-kzalloc.patch @@ -1296,36 +1165,17 @@ ApplyPatch linux-2.6-defaults-pci_no_msi #ApplyPatch linux-2.6-pciehp-update.patch # default to enabling passively listening for hotplug events #ApplyPatch linux-2.6-defaults-pciehp.patch -# Add /sys/bus/pci/devices/*/remove_id -ApplyPatch linux-2.6-pci-sysfs-remove-id.patch # # SCSI Bits. # -# fix cpqarray pci enable -ApplyPatch linux-2.6-scsi-cpqarray-set-master.patch # ALSA # squelch hda_beep by default ApplyPatch linux-2.6-defaults-alsa-hda-beep-off.patch -ApplyPatch linux-2.6.29-alsa-update-quirks.patch - -# fix alsa for pulseaudio -ApplyPatch alsa-rewrite-hw_ptr-updaters.patch -ApplyPatch alsa-pcm-always-reset-invalid-position.patch -ApplyPatch alsa-pcm-fix-delta-calc-at-overlap.patch -ApplyPatch alsa-hda-dont-reset-BDL-unnecessarily.patch -ApplyPatch alsa-dont-reset-stream-at-each-prepare-callb.patch -ApplyPatch alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch -ApplyPatch alsa-pcm-safer-boundary-checks.patch ApplyPatch hda_intel-prealloc-4mb-dmabuffer.patch -ApplyPatch alsa-hda-add-debugging.patch # Networking -ApplyPatch net-revert-forcedeth-power-down-phy-when-interface-is.patch - -# r8169 fixes from 2.6.30 -ApplyPatch linux-2.6-netdev-r8169-use-different-family-defaults.patch # Misc fixes # The input layer spews crap no-one cares about. @@ -1334,42 +1184,19 @@ ApplyPatch linux-2.6-input-kill-stupid-m # Get away from having to poll Toshibas ApplyPatch linux-2.6-input-fix-toshiba-hotkeys.patch -# HID: add support for another version of 0e8f:0003 device in hid-pl -ApplyPatch linux-2.6-input-hid-extra-gamepad.patch - -# HID: add support for Bluetooth Wacom pads -ApplyPatch linux-2.6-input-wacom-bluetooth.patch - -# bcm5974: macbook 5 (unibody) support -ApplyPatch linux-2.6-input-bcm5974-new-header-type.patch -ApplyPatch linux-2.6-input-bcm5974-add-quad-finger.patch -ApplyPatch linux-2.6-input-bcm5974-add-macbook-unibody.patch - -# support apple mini keyboard (#507517) -ApplyPatch linux-2.6-hid-apple-mini-keyboard.patch - # Allow to use 480600 baud on 16C950 UARTs ApplyPatch linux-2.6-serial-460800.patch -# let users skip the TXEN bug test -ApplyPatch linux-2.6-serial-add-txen-test-param.patch -# fix oops in nozomi drver (#507005) plus two others -ApplyPatch linux-2.6-drivers-char-low-latency-removal.patch - -ApplyPatch increase-MAX_LOCKDEP_ENTRIES.patch # Silence some useless messages that still get printed with 'quiet' ApplyPatch linux-2.6-silence-noise.patch -# Avoid efifb spew -ApplyPatch linux-2.6-shut-up-efifb.patch - # Make fbcon not show the penguins with 'quiet' ApplyPatch linux-2.6-silence-fbcon-logo.patch # Fix the SELinux mprotect checks on executable mappings -ApplyPatch linux-2.6-selinux-mprotect-checks.patch +#ApplyPatch linux-2.6-selinux-mprotect-checks.patch # Fix SELinux for sparc -ApplyPatch linux-2.6-sparc-selinux-mprotect-checks.patch +#ApplyPatch linux-2.6-sparc-selinux-mprotect-checks.patch # Changes to upstream defaults. @@ -1378,28 +1205,10 @@ ApplyPatch linux-2.6-sparc-selinux-mprot ApplyPatch linux-2.6-ata-quirk.patch # rt2x00: back-port activity LED init patches -ApplyPatch linux-2.6-rt2x00-asus-leds.patch +#ApplyPatch linux-2.6-rt2x00-asus-leds.patch # back-port scan result aging patches -ApplyPatch linux-2.6-mac80211-age-scan-results-on-resume.patch -ApplyPatch linux-2.6-ipw2x00-age-scan-results-on-resume.patch - -# back-port iwlwifi rfkill while device down patches -ApplyPatch linux-2.6-iwl3945-report-killswitch-changes-even-if-the-interface-is-down.patch -ApplyPatch linux-2.6-iwlagn-fix-hw-rfkill-while-the-interface-is-down.patch -ApplyPatch linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch - -# back-port mac80211: fix beacon loss detection after scan -ApplyPatch linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch - -ApplyPatch mac80211-don-t-drop-nullfunc-frames-during-software.patch - -ApplyPatch iwl3945-release-resources-before-shutting-down.patch -ApplyPatch iwl3945-add-debugging-for-wrong-command-queue.patch -ApplyPatch iwl3945-fix-rfkill-sw-and-hw-mishmash.patch - -# Fix up DMA debug code -ApplyPatch linux-2.6-dma-debug-fixes.patch +#ApplyPatch linux-2.6-mac80211-age-scan-results-on-resume.patch # /dev/crash driver. ApplyPatch linux-2.6-crash-driver.patch @@ -1410,118 +1219,31 @@ ApplyPatch linux-2.6-neigh_-fix-state-tr # http://www.lirc.org/ ApplyPatch linux-2.6.29-lirc.patch -# Fix the return code CD accesses when the CDROM drive door is closed -# but the drive isn't yet ready. -ApplyPatch linux-2.6-cdrom-door-status.patch - ApplyPatch linux-2.6-e1000-ich9.patch -# bz 498854 -ApplyPatch linux-2.6-netdev-ehea-fix-circular-locking.patch -ApplyPatch linux-2.6-netdev-ehea-fix-page-alignment.patch -ApplyPatch linux-2.6-netdev-ehea-remove-from-list.patch ApplyPatch agp-set_memory_ucwb.patch # Nouveau DRM + drm fixes -ApplyPatch drm-next.patch -ApplyPatch drm-modesetting-radeon.patch -ApplyPatch drm-nouveau.patch +#ApplyPatch drm-next.patch +#ApplyPatch drm-modesetting-radeon.patch +#ApplyPatch drm-nouveau.patch # pm broken on my thinkpad t60p - airlied #ApplyPatch drm-radeon-pm.patch ApplyPatch drm-no-gem-on-i8xx.patch ApplyPatch drm-i915-resume-force-mode.patch ApplyPatch drm-intel-big-hammer.patch -ApplyPatch drm-intel-lying-systems-without-lvds.patch -ApplyPatch drm-intel-gen3-fb-hack.patch -ApplyPatch drm-intel-hdmi-edid-fix.patch -ApplyPatch drm-intel-tiling-transition.patch -ApplyPatch drm-intel-next.patch -ApplyPatch drm-intel-debugfs-ringbuffer.patch -ApplyPatch drm-edid-ignore-tiny-modes.patch -ApplyPatch drm-intel-include-965gme-pci-id.patch -ApplyPatch linux-2.6.29.3-boot-vga.patch -ApplyPatch drm-intel-gem-use-dma32-on-pae.patch -ApplyPatch drm-intel-i8xx-cursors.patch -ApplyPatch drm-intel-vmalloc.patch -ApplyPatch drm-copyback-ioctl-data-to-userspace-regardless-of-retcode.patch -# These should be fixed with the fix-tiling patch -# ApplyPatch drm-intel-disable-kms-i8xx.patch -ApplyPatch drm-i915-apply-a-big-hammer-to-865-gem-object.patch -ApplyPatch drm-i915-fix-tiling-pitch.patch -ApplyPatch drm-intel-set-domain-on-fault.patch -ApplyPatch drm-modesetting-radeon-fixes.patch -ApplyPatch drm-radeon-fix-ring-commit.patch -ApplyPatch drm-radeon-new-pciids.patch -ApplyPatch drm-dont-frob-i2c.patch -ApplyPatch drm-connector-dpms-fix.patch -ApplyPatch drm-intel-tv-fix.patch -ApplyPatch drm-radeon-cs-oops-fix.patch -ApplyPatch drm-intel-a17-fix.patch -ApplyPatch drm-pnp-add-resource-range-checker.patch -ApplyPatch drm-i915-enable-mchbar.patch # linux1394 git patches -ApplyPatch linux-2.6-firewire-git-update.patch -C=$(wc -l $RPM_SOURCE_DIR/linux-2.6-firewire-git-pending.patch | awk '{print $1}') -#if [ "$C" -gt 10 ]; then -#ApplyPatch linux-2.6-firewire-git-pending.patch -#fi +#ApplyPatch linux-2.6-firewire-git-update.patch +#ApplyOptionalPatch linux-2.6-firewire-git-pending.patch # silence the ACPI blacklist code ApplyPatch linux-2.6-silence-acpi-blacklist.patch # V4L/DVB updates/fixes/experimental drivers -ApplyPatch linux-2.6-v4l-dvb-fixes.patch -ApplyPatch linux-2.6-v4l-dvb-experimental.patch -ApplyPatch linux-2.6-v4l-dvb-fix-uint16_t-audio-h.patch -ApplyPatch linux-2.6-revert-dvb-net-kabi-change.patch - -# revert 8b249b6856f16f09b0e5b79ce5f4d435e439b9d6 -ApplyPatch revert-fix-modules_install-via-nfs.patch - -ApplyPatch linux-2.6-dropwatch-protocol.patch - -# patches headed for -stable -ApplyPatch squashfs-broken-when-pagesize-greater-than-blocksize.patch - -# fix nfs reporting of short writes (#493500) -ApplyPatch linux-2.6-nfsd-report-short-writes.patch -# fix the short write fix (#508174) -ApplyPatch linux-2.6-nfsd-report-short-writes-fix.patch -# Fix null credential bug (#494067) -ApplyPatch linux-2.6-nfsd-cred-refcount-fix.patch - -# fix cifs mount option "port=" (#506574) -ApplyPatch linux-2.6-fs-cifs-fix-port-numbers.patch - -# cpufreq -ApplyPatch cpufreq-add-atom-to-p4-clockmod.patch -ApplyPatch linux-2.6-cpufreq-enable-acpi-pstates-on-via.patch -# kvm fixes -ApplyPatch linux-2.6-kvm-skip-pit-check.patch -ApplyPatch linux-2.6-xen-check-for-nx-support.patch -ApplyPatch linux-2.6-xen-fix_warning_when_deleting_gendisk.patch -ApplyPatch linux-2.6.29-xen-disable-gbpages.patch -# http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=4eff3cae9c9809720c636e64bc72f212258e0bd5 (#510304) -ApplyPatch linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch -# finally fix the proc registration bug (F11#503773 and others) -ApplyPatch linux-2.6-parport-quickfix-the-proc-registration-bug.patch -# -ApplyPatch linux-2.6-dev-zero-avoid-oom-lockup.patch -# fix oopses in usb serial devices (#500954) -ApplyPatch linux-2.6-usb-remove-low-latency-hack.patch - -ApplyPatch linux-2.6-x86-delay-tsc-barrier.patch - -# VIA: add 64-bit padlock support, sdmmc driver, temp sensor driver -ApplyPatch via-centaur-merge-32-64-bit-init.patch -ApplyPatch via-padlock-fix-might-sleep.patch -ApplyPatch via-padlock-cryptodev-1-64bit-enable.patch -ApplyPatch via-padlock-cryptodev-2-64bit-enable.patch -ApplyPatch via-padlock-nano-workarounds-ecb.patch -ApplyPatch via-padlock-nano-workarounds-cbc.patch -ApplyPatch via-sdmmc.patch -ApplyPatch via-rng-64-bit-enable.patch -ApplyPatch via-hwmon-temp-sensor.patch +#ApplyPatch linux-2.6-v4l-dvb-fixes.patch +#ApplyPatch linux-2.6-v4l-dvb-update.patch +#ApplyPatch linux-2.6-v4l-dvb-experimental.patch +#ApplyPatch linux-2.6-revert-dvb-net-kabi-change.patch # END OF PATCH APPLICATIONS @@ -1825,8 +1547,7 @@ BuildKernel vmlinux vmlinux kdump vmlinu %if %{with_doc} # Make the HTML and man pages. -make htmldocs || %{doc_build_fail} -make %{?_smp_mflags} mandocs || %{doc_build_fail} +make %{?_smp_mflags} htmldocs mandocs || %{doc_build_fail} # sometimes non-world-readable files sneak into the kernel source tree chmod -R a=rX Documentation @@ -1849,7 +1570,7 @@ find Documentation -type d | xargs chmod %if %{with_debuginfo} %ifnarch noarch %global __debug_package 1 -%files -f debugfiles.list debuginfo-common +%files -f debugfiles.list debuginfo-common-%{_target_cpu} %defattr(-,root,root) %endif %endif @@ -2110,6 +1831,10 @@ fi %changelog * Fri Jul 24 2009 Kyle McMartin +- Copy over release configs from devel-2.6.30 tag. +- Fix up some spec deviations. + +* Fri Jul 24 2009 Kyle McMartin - Linux 2.6.30.3 rebase for Fedora 11. - Fedora 11 2.6.29 branch is on tag private-fedora-11-2_6_29_6. From jkeating at fedoraproject.org Sat Jul 25 03:16:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:16:41 +0000 (UTC) Subject: rpms/ilmbase/devel ilmbase.spec,1.7,1.8 Message-ID: <20090725031641.54BCD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ilmbase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1065 Modified Files: ilmbase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ilmbase.spec =================================================================== RCS file: /cvs/pkgs/rpms/ilmbase/devel/ilmbase.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ilmbase.spec 4 May 2009 15:38:09 -0000 1.7 +++ ilmbase.spec 25 Jul 2009 03:16:41 -0000 1.8 @@ -1,7 +1,7 @@ Name: ilmbase Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Abstraction/convenience libraries Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 4 2009 Ville Skytt? - 1.0.1-5 - Fix spelling error in summary. From jkeating at fedoraproject.org Sat Jul 25 03:17:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:17:20 +0000 (UTC) Subject: rpms/im-chooser/devel im-chooser.spec,1.57,1.58 Message-ID: <20090725031720.8260411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/im-chooser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1420 Modified Files: im-chooser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: im-chooser.spec =================================================================== RCS file: /cvs/pkgs/rpms/im-chooser/devel/im-chooser.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- im-chooser.spec 25 May 2009 12:15:11 -0000 1.57 +++ im-chooser.spec 25 Jul 2009 03:17:20 -0000 1.58 @@ -1,6 +1,6 @@ Name: im-chooser Version: 1.2.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://fedorahosted.org/im-chooser/ Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Akira TAGOH - 1.2.6-3 - Disable the status icon check box. From cwickert at fedoraproject.org Sat Jul 25 03:17:21 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:17:21 +0000 (UTC) Subject: rpms/lxde-common/F-10 lxde-common-0.4-olpc-keyboard-shortcuts.patch, NONE, 1.1 lxde-lock-screen.desktop, NONE, 1.1 .cvsignore, 1.3, 1.4 lxde-common-0.4-lxpanel-config.patch, 1.2, 1.3 lxde-common.spec, 1.4, 1.5 sources, 1.4, 1.5 Message-ID: <20090725031721.416A811C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1419 Modified Files: .cvsignore lxde-common-0.4-lxpanel-config.patch lxde-common.spec sources Added Files: lxde-common-0.4-olpc-keyboard-shortcuts.patch lxde-lock-screen.desktop Log Message: * Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 - Update to 0.4.2 - Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild lxde-common-0.4-olpc-keyboard-shortcuts.patch: rc.xml.in | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) --- NEW FILE lxde-common-0.4-olpc-keyboard-shortcuts.patch --- --- lxde-common-0.4.orig/openbox/rc.xml.in 2008-04-26 04:32:26.000000000 +0200 +++ lxde-common-0.4/openbox/rc.xml.in 2009-06-13 22:57:54.000000000 +0200 @@ -288,6 +288,53 @@ + + + + olpc-brightness down + + + + + + olpc-brightness up + + + + + + amixer set Master 3dB- -q + + + + + + amixer set Master 3dB+ -q + + + + + + + true + PCManFM + + pcmanfm -f + + + + + + client-list-combined-menu + + + + + + lxpanelctl menu + + + --- NEW FILE lxde-lock-screen.desktop --- [Desktop Entry] Encoding=UTF-8 Type=Application Name=Lock Screen Name[de_DE]=Bildschirm sperren Icon=system-lock-screen Exec=xdg-screensaver lock Comment=Lock Screen Comment[de_DE]=Bildschirm vor unbefugtem Zugriff sperren StartupNotify=false NoDisplay=true Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 3 May 2009 09:38:17 -0000 1.3 +++ .cvsignore 25 Jul 2009 03:17:21 -0000 1.4 @@ -1 +1 @@ -lxde-common-0.4.tar.bz2 +lxde-common-0.4.2.tar.bz2 lxde-common-0.4-lxpanel-config.patch: config | 2 +- panel.in | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) Index: lxde-common-0.4-lxpanel-config.patch =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-10/lxde-common-0.4-lxpanel-config.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxde-common-0.4-lxpanel-config.patch 23 May 2009 00:59:44 -0000 1.2 +++ lxde-common-0.4-lxpanel-config.patch 25 Jul 2009 03:17:21 -0000 1.3 @@ -8,8 +8,8 @@ diff -dur lxde-common-0.4.orig/lxpanel/c +Terminal=lxterminal -e Logout=lxde-logout diff -dur lxde-common-0.4.orig/lxpanel/panel.in lxde-common-0.4/lxpanel/panel.in ---- lxde-common-0.4.orig/lxpanel/panel.in 2008-06-16 10:10:24.000000000 +0200 -+++ lxde-common-0.4/lxpanel/panel.in 2009-05-18 01:49:31.000000000 +0200 +--- lxde-common-0.4.orig/lxpanel/panel.in ++++ lxde-common-0.4/lxpanel/panel.in @@ -13,9 +13,9 @@ alpha=0 setdocktype=1 @@ -27,7 +27,7 @@ diff -dur lxde-common-0.4.orig/lxpanel/p type = menu Config { - image=@prefix@/share/lxde/images/lxde-icon.png -+ image=fedora-logo-icon.png ++ image=start-here.png system { } separator { @@ -53,16 +53,25 @@ diff -dur lxde-common-0.4.orig/lxpanel/p } } } -@@ -131,11 +135,6 @@ +@@ -122,6 +126,10 @@ } Plugin { -- type = launchbar -- Config { -- Button { -- id=lxde-logout.desktop -- } -- } + type = volumealsa - } - ++} ++ ++Plugin { + type = dclock + Config { + ClockFmt=%R +@@ -134,6 +142,9 @@ + type = launchbar + Config { + Button { ++ id=lxde-lock-screen.desktop ++ } ++ Button { + id=lxde-logout.desktop + } + } + Index: lxde-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-10/lxde-common.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lxde-common.spec 23 May 2009 00:59:44 -0000 1.4 +++ lxde-common.spec 25 Jul 2009 03:17:21 -0000 1.5 @@ -1,7 +1,7 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=442270 Name: lxde-common -Version: 0.4.1 +Version: 0.4.2 Release: 1%{?dist} Summary: Default configuration files for LXDE @@ -9,11 +9,15 @@ Group: User Interface/Desktops License: GPLv2+ URL: http://lxde.sourceforge.net/ Source0: http://downloads.sourceforge.net/sourceforge/lxde/%{name}-%{version}.tar.bz2 +Source1: lxde-lock-screen.desktop +# fix lxde-logout.desktop +Patch6: %{name}-0.4-lxde-logout.desktop.patch # Distro specific patches -Patch10: %{name}-0.3.2.1-pcmanfm-config.patch -Patch11: %{name}-0.4-lxpanel-config.patch -Patch12: %{name}-0.4-openbox-menu.patch -Patch13: %{name}-0.3.2.1-logout-banner.patch +Patch10: %{name}-0.3.2.1-pcmanfm-config.patch +Patch11: %{name}-0.4-lxpanel-config.patch +Patch12: %{name}-0.4-openbox-menu.patch +Patch13: %{name}-0.3.2.1-logout-banner.patch +Patch14: %{name}-0.4-olpc-keyboard-shortcuts.patch # Pulseaudio Patch4: %{name}-0.4-pulseaudio.patch # Because of new gdm @@ -21,6 +25,7 @@ Patch4: %{name}-0.4-pulseaudio.p Patch5: %{name}-0.3.2.1-gdm-number-of-desktops.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: desktop-file-utils Requires: lxsession lxpanel pcmanfm openbox xdg-utils Requires: lxmenu-data lxde-settings-daemon # Use vendor's artwork @@ -44,13 +49,26 @@ This package contains the configuration Desktop Environment. +%package -n lxde-icon-theme +Summary: Default icon theme for LXDE +Group: User Interface/Desktops +License: LGPLv3 +URL: http://nuovext.pwsp.net/ + +%description -n lxde-icon-theme +nuoveXT is a very complete set of icons for Linux, Mac OS X and Windows. It is +also the default icon-theme of LXDE, the Lightweight X11 Desktop Environment. + + %prep %setup -q %patch10 -p1 -b .orig %patch11 -p1 -b .orig %patch12 -p1 -b .orig %patch13 -p1 -b .logout-banner +#%patch14 -p1 -b .olpc %patch4 -p1 -b .pulseaudio +%patch6 -p1 -b .desktop %if 0%{?fedora} > 8 %patch5 -p1 -b .gdm-desktops %endif @@ -63,16 +81,35 @@ Desktop Environment. %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -# the icon theme is packaged in a different package -rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/nuoveXT2/ # only used by obsolete lxsession, not lxsession-lite rm -f $RPM_BUILD_ROOT%{_sysconfdir}/xdg/lxsession/LXDE/default +desktop-file-install \ + --dir=%{buildroot}%{_datadir}/applications \ + lxde-logout.desktop +desktop-file-install \ + --dir=%{buildroot}%{_datadir}/applications \ + %{SOURCE1} %clean rm -rf $RPM_BUILD_ROOT +%post -n lxde-icon-theme +touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + +%postun -n lxde-icon-theme +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/nuoveXT2 &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : +fi + + +%posttrans -n lxde-icon-theme +gtk-update-icon-cache %{_datadir}/icons/nuoveXT2 &>/dev/null || : + + %files %defattr(-,root,root,-) %doc AUTHORS COPYING @@ -86,9 +123,26 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/lxpanel/profile/LXDE/ %{_mandir}/man1/*.1.gz %{_datadir}/xsessions/LXDE.desktop +%{_datadir}/applications/lxde-*.desktop + +%files -n lxde-icon-theme +%doc icon-theme/AUTHORS icon-theme/COPYING +%defattr(-,root,root,-) +%{_datadir}/icons/nuoveXT2/ %changelog +* Sat Jul 25 2009 Christoph Wickert - 0.4.2-1 +- Update to 0.4.2 +- Disable OLPC keyboard shortcuts for now, they interfere with OpenOffice +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat Jun 13 2009 Christoph Wickert - 0.4.1-3 +- Add XO keyboard shortcuts + +* Sat Jun 13 2009 Christoph Wickert - 0.4.1-2 +- Include logout and screenlock buttons (#503919) + * Mon May 18 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lxde-common/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 23 May 2009 00:59:44 -0000 1.4 +++ sources 25 Jul 2009 03:17:21 -0000 1.5 @@ -1 +1 @@ -1d71d77d331b56ab26b0c13b709d032e lxde-common-0.4.1.tar.bz2 +81978c149ef7f349d904c4796d623ee6 lxde-common-0.4.2.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 03:17:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:17:33 +0000 (UTC) Subject: rpms/imageinfo/devel imageinfo.spec,1.9,1.10 Message-ID: <20090725031733.3E70F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imageinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1634 Modified Files: imageinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imageinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/imageinfo/devel/imageinfo.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- imageinfo.spec 13 Mar 2009 03:00:56 -0000 1.9 +++ imageinfo.spec 25 Jul 2009 03:17:33 -0000 1.10 @@ -1,6 +1,6 @@ Name: imageinfo Version: 0.05 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Extract attributes of digital images Group: Applications/Multimedia @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.05-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Brendt Wohlberg - 0.05-9 - Release bump due to unrecoverable tagging problem. From jkeating at fedoraproject.org Sat Jul 25 03:17:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:17:46 +0000 (UTC) Subject: rpms/imake/devel imake.spec,1.33,1.34 Message-ID: <20090725031746.789C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1779 Modified Files: imake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imake.spec =================================================================== RCS file: /cvs/pkgs/rpms/imake/devel/imake.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- imake.spec 25 Feb 2009 07:03:03 -0000 1.33 +++ imake.spec 25 Jul 2009 03:17:46 -0000 1.34 @@ -1,7 +1,7 @@ Summary: imake source code configuration and build system Name: imake Version: 1.0.2 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xmkmf.1x* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:18:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:18:00 +0000 (UTC) Subject: rpms/imapsync/devel imapsync.spec,1.7,1.8 Message-ID: <20090725031800.4E47611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imapsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1914 Modified Files: imapsync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imapsync.spec =================================================================== RCS file: /cvs/pkgs/rpms/imapsync/devel/imapsync.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- imapsync.spec 25 Feb 2009 07:03:55 -0000 1.7 +++ imapsync.spec 25 Jul 2009 03:18:00 -0000 1.8 @@ -1,7 +1,7 @@ Name: imapsync Summary: Tool to migrate email between IMAP servers Version: 1.255 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Applications/Internet From jkeating at fedoraproject.org Sat Jul 25 03:18:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:18:13 +0000 (UTC) Subject: rpms/imgtarget/devel imgtarget.spec,1.1,1.2 Message-ID: <20090725031813.7F64E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imgtarget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2050 Modified Files: imgtarget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imgtarget.spec =================================================================== RCS file: /cvs/pkgs/rpms/imgtarget/devel/imgtarget.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- imgtarget.spec 18 May 2009 10:24:52 -0000 1.1 +++ imgtarget.spec 25 Jul 2009 03:18:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: imgtarget Version: 0.1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Front-end to functionality provided by ArgyllCMS Group: Applications/Multimedia @@ -72,6 +72,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Zarko - 0.1.4-3 - spec cleaning - added dialogs patch for resolving crashing From jkeating at fedoraproject.org Sat Jul 25 03:18:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:18:28 +0000 (UTC) Subject: rpms/iml/devel iml.spec,1.5,1.6 Message-ID: <20090725031828.83ABD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2203 Modified Files: iml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iml.spec =================================================================== RCS file: /cvs/pkgs/rpms/iml/devel/iml.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- iml.spec 26 Feb 2009 23:59:34 -0000 1.5 +++ iml.spec 25 Jul 2009 03:18:28 -0000 1.6 @@ -1,6 +1,6 @@ Name: iml Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Finds solutions to systems of linear equations over integers Group: Applications/Engineering License: BSD @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Conrad Meyer - 1.0.2-6 - Fix FTBFS errors. From jkeating at fedoraproject.org Sat Jul 25 03:18:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:18:42 +0000 (UTC) Subject: rpms/imlib/devel imlib.spec,1.16,1.17 Message-ID: <20090725031842.B94DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2336 Modified Files: imlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/imlib/devel/imlib.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- imlib.spec 21 Apr 2009 11:04:36 -0000 1.16 +++ imlib.spec 25 Jul 2009 03:18:42 -0000 1.17 @@ -1,7 +1,7 @@ Summary: An image loading and rendering library for X11R6 Name: imlib Version: 1.9.15 -Release: 11%{?dist} +Release: 12%{?dist} Epoch: 1 License: LGPLv2+ Group: System Environment/Libraries @@ -159,6 +159,9 @@ GX_LIBS=$(/usr/bin/gtk-config --libs | % %{_mandir}/man1/imlib-config.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.9.15-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Paul Howarth 1:1.9.15-11 - add libXt-devel dependency for -devel package (#478357) - use install -p to maintain timestamps where reasonable From jkeating at fedoraproject.org Sat Jul 25 03:18:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:18:56 +0000 (UTC) Subject: rpms/imlib2/devel imlib2.spec,1.37,1.38 Message-ID: <20090725031856.A221211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imlib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2468 Modified Files: imlib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imlib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/imlib2/devel/imlib2.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- imlib2.spec 25 Feb 2009 07:06:54 -0000 1.37 +++ imlib2.spec 25 Jul 2009 03:18:56 -0000 1.38 @@ -1,7 +1,7 @@ Summary: Image loading, saving, rendering, and manipulation library Name: imlib2 Version: 1.4.2 -Release: 4%{?dist} +Release: 5%{?dist} License: Imlib2 Group: System Environment/Libraries URL: http://docs.enlightenment.org/api/imlib2/html/ @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.4.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:19:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:19:09 +0000 (UTC) Subject: rpms/immix/devel immix.spec,1.4,1.5 Message-ID: <20090725031909.8576511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/immix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2601 Modified Files: immix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: immix.spec =================================================================== RCS file: /cvs/pkgs/rpms/immix/devel/immix.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- immix.spec 25 Feb 2009 07:08:11 -0000 1.4 +++ immix.spec 25 Jul 2009 03:19:09 -0000 1.5 @@ -3,7 +3,7 @@ Name: immix Version: %{maj_version}.%{min_version} -Release: 6%{?dist} +Release: 7%{?dist} Summary: An image mixer Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/immix.svg %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:19:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:19:22 +0000 (UTC) Subject: rpms/imp/devel imp.spec,1.9,1.10 Message-ID: <20090725031922.8D1B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2749 Modified Files: imp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imp.spec =================================================================== RCS file: /cvs/pkgs/rpms/imp/devel/imp.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- imp.spec 25 Feb 2009 07:08:42 -0000 1.9 +++ imp.spec 25 Jul 2009 03:19:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: imp Version: 4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Internet Messaging Program: webmail access to IMAP/POP3 accounts Source0: ftp://ftp.horde.org/pub/%{name}/tarballs/%{name}-h3-%{version}.tar.gz @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_datadir}/horde/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:19:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:19:37 +0000 (UTC) Subject: rpms/impressive/devel impressive.spec,1.5,1.6 Message-ID: <20090725031937.124EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/impressive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2901 Modified Files: impressive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: impressive.spec =================================================================== RCS file: /cvs/pkgs/rpms/impressive/devel/impressive.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- impressive.spec 25 Feb 2009 07:09:44 -0000 1.5 +++ impressive.spec 25 Jul 2009 03:19:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: impressive Version: 0.10.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The stylish way of giving presentations Group: Applications/Productivity @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.10.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:19:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:19:50 +0000 (UTC) Subject: rpms/imsettings/devel imsettings.spec,1.30,1.31 Message-ID: <20090725031950.E7F3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/imsettings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3049 Modified Files: imsettings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: imsettings.spec =================================================================== RCS file: /cvs/pkgs/rpms/imsettings/devel/imsettings.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- imsettings.spec 24 Jul 2009 00:49:44 -0000 1.30 +++ imsettings.spec 25 Jul 2009 03:19:50 -0000 1.31 @@ -1,6 +1,6 @@ Name: imsettings Version: 0.106.2 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ URL: http://code.google.com/p/imsettings/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -203,6 +203,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.106.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Akira TAGOH - 0.106.2-3 - Support immodule only configuration file. From jkeating at fedoraproject.org Sat Jul 25 03:20:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:20:16 +0000 (UTC) Subject: rpms/inadyn-mt/devel inadyn-mt.spec,1.2,1.3 Message-ID: <20090725032016.71DB311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inadyn-mt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3345 Modified Files: inadyn-mt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inadyn-mt.spec =================================================================== RCS file: /cvs/pkgs/rpms/inadyn-mt/devel/inadyn-mt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- inadyn-mt.spec 25 Feb 2009 07:11:44 -0000 1.2 +++ inadyn-mt.spec 25 Jul 2009 03:20:16 -0000 1.3 @@ -2,7 +2,7 @@ Name: inadyn-mt Version: 2.12.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Dynamic DNS Client @@ -99,6 +99,9 @@ fi %config(noreplace) %{_sysconfdir}/%{name}/lang/en.lng %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.12.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:20:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:20:03 +0000 (UTC) Subject: rpms/inadyn/devel inadyn.spec,1.21,1.22 Message-ID: <20090725032003.A4A5511C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inadyn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3200 Modified Files: inadyn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inadyn.spec =================================================================== RCS file: /cvs/pkgs/rpms/inadyn/devel/inadyn.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- inadyn.spec 25 Feb 2009 07:10:49 -0000 1.21 +++ inadyn.spec 25 Jul 2009 03:20:03 -0000 1.22 @@ -1,7 +1,7 @@ Name: inadyn Version: 1.96.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Dynamic DNS Client @@ -82,6 +82,9 @@ fi %config(noreplace) %{_sysconfdir}/inadyn.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.96.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.96.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:20:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:20:31 +0000 (UTC) Subject: rpms/inchi/devel inchi.spec,1.3,1.4 Message-ID: <20090725032031.3179C11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inchi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3486 Modified Files: inchi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inchi.spec =================================================================== RCS file: /cvs/pkgs/rpms/inchi/devel/inchi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- inchi.spec 25 Feb 2009 07:12:39 -0000 1.3 +++ inchi.spec 25 Jul 2009 03:20:31 -0000 1.4 @@ -3,7 +3,7 @@ Summary: The IUPAC International Chemical Identifier library Name: inchi Version: 1.0.2 -Release: 0.4%{?dist} +Release: 0.5%{?dist} URL: http://www.iupac.org/inchi/ Group: Development/Libraries Source0: http://www.iupac.org/inchi/download/inchi102b.zip @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libinchi.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-0.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0.2-0.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:21:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:21:04 +0000 (UTC) Subject: rpms/incollector/devel incollector.spec,1.4,1.5 Message-ID: <20090725032104.CF2E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/incollector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3718 Modified Files: incollector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: incollector.spec =================================================================== RCS file: /cvs/pkgs/rpms/incollector/devel/incollector.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- incollector.spec 28 Apr 2009 14:54:07 -0000 1.4 +++ incollector.spec 25 Jul 2009 03:21:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: incollector Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Information collector Summary(pl): Kolektor informacji Group: Applications/Productivity @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Milos Jakubicek - 1.0-8 - Fix FTBFS: added incollector-mono.patch. - Added explicit R: mono-core (resolves BZ#469602). From jkeating at fedoraproject.org Sat Jul 25 03:21:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:21:18 +0000 (UTC) Subject: rpms/incron/devel incron.spec,1.7,1.8 Message-ID: <20090725032118.9066511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/incron/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3857 Modified Files: incron.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: incron.spec =================================================================== RCS file: /cvs/pkgs/rpms/incron/devel/incron.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- incron.spec 25 Feb 2009 10:28:01 -0000 1.7 +++ incron.spec 25 Jul 2009 03:21:18 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Inotify cron system Name: incron Version: 0.5.8 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base License: GPLv2 @@ -79,6 +79,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Ruben Kerkhof 0.5.8-1 - Upstream released new version - GCC 4.4 fixes From jkeating at fedoraproject.org Sat Jul 25 03:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:21:32 +0000 (UTC) Subject: rpms/indent/devel indent.spec,1.36,1.37 Message-ID: <20090725032132.7238311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/indent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4004 Modified Files: indent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: indent.spec =================================================================== RCS file: /cvs/pkgs/rpms/indent/devel/indent.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- indent.spec 25 Feb 2009 07:16:24 -0000 1.36 +++ indent.spec 25 Jul 2009 03:21:32 -0000 1.37 @@ -2,7 +2,7 @@ Summary: A GNU program for formatting C code Name: indent Version: 2.2.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Text URL: http://indent.isidore-it.eu/beautify.html @@ -70,6 +70,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.2.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:21:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:21:46 +0000 (UTC) Subject: rpms/indi-apogee/devel indi-apogee.spec,1.2,1.3 Message-ID: <20090725032146.8526511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/indi-apogee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4151 Modified Files: indi-apogee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: indi-apogee.spec =================================================================== RCS file: /cvs/pkgs/rpms/indi-apogee/devel/indi-apogee.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- indi-apogee.spec 25 Feb 2009 07:17:25 -0000 1.2 +++ indi-apogee.spec 25 Jul 2009 03:21:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: indi-apogee Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The INDI driver for Apogee Alta (U & E) line of CCDs Group: Development/Libraries @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{_datadir}/indi/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:22:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:22:03 +0000 (UTC) Subject: rpms/inetvis/devel inetvis.spec,1.4,1.5 Message-ID: <20090725032203.0FC2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inetvis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4365 Modified Files: inetvis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inetvis.spec =================================================================== RCS file: /cvs/pkgs/rpms/inetvis/devel/inetvis.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- inetvis.spec 25 Feb 2009 12:22:36 -0000 1.4 +++ inetvis.spec 25 Jul 2009 03:22:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: inetvis Version: 0.9.3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 3-D scatter-plot visualization for network traffic Group: Applications/System License: GPLv2 @@ -63,6 +63,9 @@ rm -rf %{buildroot} %doc doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Daniel Kopecek - 0.9.3.1-3 - included cstdio where needed From jkeating at fedoraproject.org Sat Jul 25 03:22:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:22:16 +0000 (UTC) Subject: rpms/ingo/devel ingo.spec,1.7,1.8 Message-ID: <20090725032216.C34E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ingo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4536 Modified Files: ingo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ingo.spec =================================================================== RCS file: /cvs/pkgs/rpms/ingo/devel/ingo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ingo.spec 25 Feb 2009 07:19:12 -0000 1.7 +++ ingo.spec 25 Jul 2009 03:22:16 -0000 1.8 @@ -1,6 +1,6 @@ Name: ingo Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Horde web-based Email Filter Rules Manager Source0: ftp://ftp.horde.org/pub/%{name}/%{name}-h3-%{version}.tar.gz @@ -88,6 +88,9 @@ rm -rf %{buildroot} %{_datadir}/horde/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:22:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:22:32 +0000 (UTC) Subject: rpms/ini4j/devel ini4j.spec,1.3,1.4 Message-ID: <20090725032232.AD63111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ini4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4970 Modified Files: ini4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ini4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/ini4j/devel/ini4j.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ini4j.spec 2 Mar 2009 15:26:12 -0000 1.3 +++ ini4j.spec 25 Jul 2009 03:22:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: ini4j Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Java API for handling files in Windows .ini format Group: Development/Libraries @@ -132,6 +132,9 @@ install javadoc:javadoc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Victor Vasilyev 0.3.2-6 - BR tomcat5, because tomcat-tomcat-parent.pom is required From jkeating at fedoraproject.org Sat Jul 25 03:22:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:22:47 +0000 (UTC) Subject: rpms/iniparser/devel iniparser.spec,1.1,1.2 Message-ID: <20090725032247.23A4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iniparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5294 Modified Files: iniparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iniparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/iniparser/devel/iniparser.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- iniparser.spec 28 May 2009 17:53:55 -0000 1.1 +++ iniparser.spec 25 Jul 2009 03:22:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: iniparser Version: 3.0 -Release: 0.1.b%{?dist} +Release: 0.2.b%{?dist} Summary: C library for parsing "INI-style" files Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_includedir}/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0-0.2.b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jan 26 2009 Alex Hudson - 3.0-0.1.b - change version number to reflect "pre-release" status From jkeating at fedoraproject.org Sat Jul 25 03:23:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:23:00 +0000 (UTC) Subject: rpms/initng/devel initng.spec,1.21,1.22 Message-ID: <20090725032300.972DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/initng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5601 Modified Files: initng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: initng.spec =================================================================== RCS file: /cvs/pkgs/rpms/initng/devel/initng.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- initng.spec 25 Feb 2009 07:21:04 -0000 1.21 +++ initng.spec 25 Jul 2009 03:23:00 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Programs which control basic system processes Name: initng Version: 0.6.10.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://www.initng.org Group: System Environment/Base @@ -119,6 +119,9 @@ rm -rf %{buildroot} /%{_lib}/libngcclient.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.10.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.6.10.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:23:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:23:14 +0000 (UTC) Subject: rpms/initng-conf-gtk/devel initng-conf-gtk.spec,1.2,1.3 Message-ID: <20090725032314.B21B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/initng-conf-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5748 Modified Files: initng-conf-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: initng-conf-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/initng-conf-gtk/devel/initng-conf-gtk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- initng-conf-gtk.spec 25 Feb 2009 07:21:56 -0000 1.2 +++ initng-conf-gtk.spec 25 Jul 2009 03:23:14 -0000 1.3 @@ -1,7 +1,7 @@ Summary: GTK configuration and control utility for initng Name: initng-conf-gtk Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPLv2+ Source0: http://download.initng.org/initng-gui/%{name}/%{name}-%{version}.tar.gz @@ -101,6 +101,9 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:23:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:23:29 +0000 (UTC) Subject: rpms/initng-ifiles/devel initng-ifiles.spec,1.16,1.17 Message-ID: <20090725032329.0188111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/initng-ifiles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5906 Modified Files: initng-ifiles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: initng-ifiles.spec =================================================================== RCS file: /cvs/pkgs/rpms/initng-ifiles/devel/initng-ifiles.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- initng-ifiles.spec 25 Feb 2009 07:22:49 -0000 1.16 +++ initng-ifiles.spec 25 Jul 2009 03:23:28 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Scripts for initng Name: initng-ifiles Version: 0.1.5 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 and LGPLv2+ URL: http://www.initng.org Group: System Environment/Base @@ -105,6 +105,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:23:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:23:45 +0000 (UTC) Subject: rpms/initscripts/devel initscripts.spec,1.194,1.195 Message-ID: <20090725032345.1DE2A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/initscripts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6073 Modified Files: initscripts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: initscripts.spec =================================================================== RCS file: /cvs/pkgs/rpms/initscripts/devel/initscripts.spec,v retrieving revision 1.194 retrieving revision 1.195 diff -u -p -r1.194 -r1.195 --- initscripts.spec 4 Jun 2009 19:05:08 -0000 1.194 +++ initscripts.spec 25 Jul 2009 03:23:44 -0000 1.195 @@ -6,7 +6,7 @@ Version: 8.95 # ppp-watch is GPLv2+, everything else is GPLv2 License: GPLv2 and GPLv2+ Group: System Environment/Base -Release: 1 +Release: 2 URL: http://fedorahosted.org/releases/i/n/initscripts/ Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -249,6 +249,9 @@ rm -rf $RPM_BUILD_ROOT /etc/profile.d/debug* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.95-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Bill Nottingham - 8.95-1 - don't kill runlevel events on subsequent entering of the same runlevel (#498514) - lang.*sh: handle spaces in $HOME (#498482) From jkeating at fedoraproject.org Sat Jul 25 03:23:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:23:59 +0000 (UTC) Subject: rpms/inkboy-fonts/devel inkboy-fonts.spec,1.1,1.2 Message-ID: <20090725032359.3A3E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inkboy-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6270 Modified Files: inkboy-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inkboy-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/inkboy-fonts/devel/inkboy-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- inkboy-fonts.spec 25 Jun 2009 20:57:08 -0000 1.1 +++ inkboy-fonts.spec 25 Jul 2009 03:23:58 -0000 1.2 @@ -2,7 +2,7 @@ %global fontconf 65-%{fontname}.conf Name: %{fontname}-fonts Version: 20070624 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A clean and usable latin fantasy font Group: User Interface/X License: OFL @@ -65,6 +65,9 @@ rm -fr %{buildroot} %doc FONTLOG.txt OFL.txt OFL-FAQ.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20070624-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Jim Radford - 20070624-3 - add another doc and preserve timestamps From jkeating at fedoraproject.org Sat Jul 25 03:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:24:18 +0000 (UTC) Subject: rpms/inkscape/devel inkscape.spec,1.80,1.81 Message-ID: <20090725032418.E1F6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inkscape/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6461 Modified Files: inkscape.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inkscape.spec =================================================================== RCS file: /cvs/pkgs/rpms/inkscape/devel/inkscape.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- inkscape.spec 29 Jun 2009 22:27:37 -0000 1.80 +++ inkscape.spec 25 Jul 2009 03:24:18 -0000 1.81 @@ -2,7 +2,7 @@ Name: inkscape Version: 0.47 -Release: 0.13.pre0.20090629svn%{?dist} +Release: 0.14.pre0.20090629svn%{?dist} Summary: Vector-based drawing program using SVG Group: Applications/Productivity @@ -234,6 +234,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.47-0.14.pre0.20090629svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Lubomir Rintel - 0.47-0.13.pre0.20090629svn - Update to a newer snapshot From jkeating at fedoraproject.org Sat Jul 25 03:24:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:24:34 +0000 (UTC) Subject: rpms/inksmoto/devel inksmoto.spec,1.10,1.11 Message-ID: <20090725032434.F2D1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inksmoto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6666 Modified Files: inksmoto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inksmoto.spec =================================================================== RCS file: /cvs/pkgs/rpms/inksmoto/devel/inksmoto.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- inksmoto.spec 21 Apr 2009 12:45:55 -0000 1.10 +++ inksmoto.spec 25 Jul 2009 03:24:34 -0000 1.11 @@ -1,6 +1,6 @@ Name: inksmoto Version: 0.6.0 -Release: 1.rc1%{?dist} +Release: 1.rc1%{?dist}.1 Summary: The new xmoto level editor for Inkscape Group: Amusements/Games @@ -43,6 +43,9 @@ rm -rf %{buildroot} %doc AUTHORS COPYING INSTALL README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-1.rc1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Jon Ciesla - 0.6.0-1.rc1 - Update to 0.6.0~rc1. From jkeating at fedoraproject.org Sat Jul 25 03:24:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:24:51 +0000 (UTC) Subject: rpms/inn/devel inn.spec,1.67,1.68 Message-ID: <20090725032451.384ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6846 Modified Files: inn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inn.spec =================================================================== RCS file: /cvs/pkgs/rpms/inn/devel/inn.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- inn.spec 14 Jul 2009 10:11:51 -0000 1.67 +++ inn.spec 25 Jul 2009 03:24:51 -0000 1.68 @@ -1,7 +1,7 @@ Summary: The InterNetNews system, an Usenet news server Name: inn Version: 2.5.0 -Release: 3%{?dist} +Release: 4%{?dist} #see LICENSE file for details License: GPL+ and BSD and MIT and Public Domain Group: System Environment/Daemons @@ -547,6 +547,9 @@ exit 0 %{_mandir}/man1/inews* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Nikola Pajkovsky 2.5.0-3 - ugly sed script for file section was deleted and rewrite in classic style - fix init script(does not start correctly and shutdown when pid does not exist when service run) From jkeating at fedoraproject.org Sat Jul 25 03:25:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:25:06 +0000 (UTC) Subject: rpms/innotop/devel innotop.spec,1.6,1.7 Message-ID: <20090725032506.ED0A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/innotop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7065 Modified Files: innotop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: innotop.spec =================================================================== RCS file: /cvs/pkgs/rpms/innotop/devel/innotop.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- innotop.spec 25 Feb 2009 07:27:42 -0000 1.6 +++ innotop.spec 25 Jul 2009 03:25:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: innotop Version: 1.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A MySQL and InnoDB monitor program Group: Applications/Databases @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:25:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:25:23 +0000 (UTC) Subject: rpms/inotail/devel inotail.spec,1.3,1.4 Message-ID: <20090725032523.D9B5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inotail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7260 Modified Files: inotail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inotail.spec =================================================================== RCS file: /cvs/pkgs/rpms/inotail/devel/inotail.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- inotail.spec 25 Feb 2009 07:28:39 -0000 1.3 +++ inotail.spec 25 Jul 2009 03:25:23 -0000 1.4 @@ -3,7 +3,7 @@ Name: inotail Summary: An inotify-enabled tail replacement Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/System URL: http://distanz.ch/inotail/ @@ -40,6 +40,9 @@ rm -fr %{buildroot} %doc README changelog LICENSE %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 03:25:40 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:25:40 +0000 (UTC) Subject: rpms/lxde-common/F-10 lxde-common-0.4-lxde-logout.desktop.patch, NONE, 1.1 Message-ID: <20090725032540.E277B11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxde-common/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7447 Added Files: lxde-common-0.4-lxde-logout.desktop.patch Log Message: add missing patch lxde-common-0.4-lxde-logout.desktop.patch: lxde-logout.desktop.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- NEW FILE lxde-common-0.4-lxde-logout.desktop.patch --- --- lxde-common-0.4.orig/lxde-logout.desktop.in 2008-11-11 10:47:06.000000000 +0100 +++ lxde-common-0.4/lxde-logout.desktop.in 2009-06-13 18:44:37.000000000 +0200 @@ -1,11 +1,14 @@ [Desktop Entry] Encoding=UTF-8 +Type=Application Name=Logout +Name[de]=Abmelden Name[zh_TW]=?? Name[fi]=Kirjaudu ulos Comment=Logout, shutdown or reboot +Comment[de]=Abmelden, herunterfahren oder neu starten Comment[zh_TW]=??????????? Comment[fi]=Kirjaudu ulos, sammuta tai k?ynnist? tietokone uudelleen -Icon=stock_exit +Icon=gnome-logout Exec=lxde-logout NoDisplay=true From jkeating at fedoraproject.org Sat Jul 25 03:25:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:25:50 +0000 (UTC) Subject: rpms/inotify-tools/devel inotify-tools.spec,1.9,1.10 Message-ID: <20090725032550.0053611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/inotify-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7542 Modified Files: inotify-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: inotify-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/inotify-tools/devel/inotify-tools.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- inotify-tools.spec 25 Feb 2009 07:29:33 -0000 1.9 +++ inotify-tools.spec 25 Jul 2009 03:25:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: inotify-tools Version: 3.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line utilities for inotify Group: Applications/System @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 3.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:27:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:27:16 +0000 (UTC) Subject: rpms/insight/devel insight.spec,1.5,1.6 Message-ID: <20090725032716.B632511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/insight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8098 Modified Files: insight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: insight.spec =================================================================== RCS file: /cvs/pkgs/rpms/insight/devel/insight.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- insight.spec 16 Jul 2009 13:30:48 -0000 1.5 +++ insight.spec 25 Jul 2009 03:27:16 -0000 1.6 @@ -1,6 +1,6 @@ Name: insight Version: 6.8 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Graphical debugger based on GDB License: GPLv3+ Group: Development/Debuggers @@ -216,6 +216,9 @@ rm -rf "${RPM_BUILD_ROOT}" #------------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + #------------------------------------------------------------------------------- * Wed Jul 15 2009 Patrick Monnerat 6.8-8 From jkeating at fedoraproject.org Sat Jul 25 03:27:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:27:31 +0000 (UTC) Subject: rpms/international-time/devel international-time.spec,1.7,1.8 Message-ID: <20090725032731.BA20311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/international-time/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8241 Modified Files: international-time.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: international-time.spec =================================================================== RCS file: /cvs/pkgs/rpms/international-time/devel/international-time.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- international-time.spec 25 Feb 2009 07:32:01 -0000 1.7 +++ international-time.spec 25 Jul 2009 03:27:31 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A tool for arranging times in advance with overseas colleagues Name: international-time Version: 0.0.2 -Release: 6%{?dist} +Release: 7%{?dist} # No attribution, just COPYING License: GPL+ Group: Applications/System @@ -69,6 +69,9 @@ fi %{_datadir}/applications/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:27:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:27:46 +0000 (UTC) Subject: rpms/intltool/devel intltool.spec,1.55,1.56 Message-ID: <20090725032746.E248011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/intltool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8373 Modified Files: intltool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: intltool.spec =================================================================== RCS file: /cvs/pkgs/rpms/intltool/devel/intltool.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- intltool.spec 27 Apr 2009 17:10:31 -0000 1.55 +++ intltool.spec 25 Jul 2009 03:27:46 -0000 1.56 @@ -4,7 +4,7 @@ Name: intltool Summary: Utility for internationalizing various kinds of data files Version: 0.40.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 with exceptions Group: Development/Tools Source: http://download.gnome.org/sources/intltool/0.40/%{name}-%{version}.tar.bz2 @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.40.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Matthias Clasen - 0.40.6-2 - Don't merge translations back into GConf schemas From jkeating at fedoraproject.org Sat Jul 25 03:28:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:28:01 +0000 (UTC) Subject: rpms/intuitively/devel intuitively.spec,1.11,1.12 Message-ID: <20090725032801.A6AF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/intuitively/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8504 Modified Files: intuitively.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: intuitively.spec =================================================================== RCS file: /cvs/pkgs/rpms/intuitively/devel/intuitively.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- intuitively.spec 25 Feb 2009 07:33:55 -0000 1.11 +++ intuitively.spec 25 Jul 2009 03:28:01 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Automatic IP detection utility Name: intuitively Version: 0.7 -Release: 15%{?dist} +Release: 16%{?dist} URL: http://home.samfundet.no/~tfheen/intuitively.html Source0: http://ftp.debian.org/debian/pool/main/i/intuitively/intuitively_%{version}.orig.tar.gz # No attribution, just COPYING. @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.7-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:28:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:28:19 +0000 (UTC) Subject: rpms/iok/devel iok.spec,1.13,1.14 Message-ID: <20090725032819.D052D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8663 Modified Files: iok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iok.spec =================================================================== RCS file: /cvs/pkgs/rpms/iok/devel/iok.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- iok.spec 20 Jul 2009 10:54:45 -0000 1.13 +++ iok.spec 25 Jul 2009 03:28:19 -0000 1.14 @@ -1,6 +1,6 @@ Name: iok Version: 1.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Indic Onscreen Virtual Keyboard Group: Applications/System License: GPLv2+ @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Parag Nemade - 1.3.6-1 - Update to Next release 1.3.6 - Add BR:intltool From jkeating at fedoraproject.org Sat Jul 25 03:28:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:28:34 +0000 (UTC) Subject: rpms/ioport/devel ioport.spec,1.1,1.2 Message-ID: <20090725032834.C632E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ioport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8805 Modified Files: ioport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ioport.spec =================================================================== RCS file: /cvs/pkgs/rpms/ioport/devel/ioport.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ioport.spec 23 Mar 2009 11:27:32 -0000 1.1 +++ ioport.spec 25 Jul 2009 03:28:34 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Access I/O ports Name: ioport Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools URL: http://et.redhat.com/~rjones/ioport/ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Richard Jones - 1.1-1 - Only offer to build on x86 and x86-64 architectures. From jkeating at fedoraproject.org Sat Jul 25 03:28:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:28:49 +0000 (UTC) Subject: rpms/iotop/devel iotop.spec,1.9,1.10 Message-ID: <20090725032849.B35CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iotop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8949 Modified Files: iotop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iotop.spec =================================================================== RCS file: /cvs/pkgs/rpms/iotop/devel/iotop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- iotop.spec 19 May 2009 12:55:35 -0000 1.9 +++ iotop.spec 25 Jul 2009 03:28:49 -0000 1.10 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: iotop Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Top like utility for I/O Group: Applications/System @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Adel Gadllah 0.3-1 - New upstream version - fixes RH #475917 From jkeating at fedoraproject.org Sat Jul 25 03:29:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:29:03 +0000 (UTC) Subject: rpms/ip-sentinel/devel ip-sentinel.spec,1.17,1.18 Message-ID: <20090725032903.D6BFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ip-sentinel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9091 Modified Files: ip-sentinel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ip-sentinel.spec =================================================================== RCS file: /cvs/pkgs/rpms/ip-sentinel/devel/ip-sentinel.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ip-sentinel.spec 1 Mar 2009 16:49:11 -0000 1.17 +++ ip-sentinel.spec 25 Jul 2009 03:29:03 -0000 1.18 @@ -41,7 +41,7 @@ Summary: Tool to prevent unauthorized usage of IP addresses Name: ip-sentinel Version: 0.12 -Release: %release_func 14 +Release: %release_func 15 License: GPLv2 Group: System Environment/Daemons URL: http://www.nongnu.org/ip-sentinel/ @@ -219,6 +219,9 @@ test "$1" != "0" || /sbin/initctl -q sto %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Enrico Scholz - 0.12-14 - added -upstart subpackage - renamed -sysv subpackage to -sysvinit to let -upstart win the From jkeating at fedoraproject.org Sat Jul 25 03:29:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:29:18 +0000 (UTC) Subject: rpms/ip6sic/devel ip6sic.spec,1.7,1.8 Message-ID: <20090725032918.5646B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ip6sic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9224 Modified Files: ip6sic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ip6sic.spec =================================================================== RCS file: /cvs/pkgs/rpms/ip6sic/devel/ip6sic.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ip6sic.spec 25 Feb 2009 07:38:22 -0000 1.7 +++ ip6sic.spec 25 Jul 2009 03:29:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: ip6sic Version: 0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: IPv6 Stack Integrity Checker Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:29:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:29:32 +0000 (UTC) Subject: rpms/ipa/devel ipa.spec,1.22,1.23 Message-ID: <20090725032932.0F65511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9397 Modified Files: ipa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipa.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipa/devel/ipa.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ipa.spec 25 Feb 2009 07:39:20 -0000 1.22 +++ ipa.spec 25 Jul 2009 03:29:31 -0000 1.23 @@ -6,7 +6,7 @@ Name: ipa Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Identity, Policy and Audit system Group: System Environment/Base @@ -471,6 +471,9 @@ fi %{_sbindir}/ipa-modradiusprofile %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:29:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:29:46 +0000 (UTC) Subject: rpms/ipa-gothic-fonts/devel ipa-gothic-fonts.spec,1.3,1.4 Message-ID: <20090725032946.71FAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipa-gothic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9550 Modified Files: ipa-gothic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipa-gothic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/devel/ipa-gothic-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ipa-gothic-fonts.spec 5 Jun 2009 11:26:01 -0000 1.3 +++ ipa-gothic-fonts.spec 25 Jul 2009 03:29:46 -0000 1.4 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 003.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Japanese Gothic-typeface OpenType font by IPA Group: User Interface/X @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 003.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Akira TAGOH - 003.01-3 - Disable hinting. From jkeating at fedoraproject.org Sat Jul 25 03:30:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:30:02 +0000 (UTC) Subject: rpms/ipa-mincho-fonts/devel ipa-mincho-fonts.spec,1.3,1.4 Message-ID: <20090725033002.5C08F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipa-mincho-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9714 Modified Files: ipa-mincho-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipa-mincho-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/devel/ipa-mincho-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ipa-mincho-fonts.spec 5 Jun 2009 12:49:19 -0000 1.3 +++ ipa-mincho-fonts.spec 25 Jul 2009 03:30:02 -0000 1.4 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 003.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Japanese Mincho-typeface OpenType font by IPA Group: User Interface/X @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 003.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Akira TAGOH - 003.01-3 - Disable hinting. From jkeating at fedoraproject.org Sat Jul 25 03:30:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:30:16 +0000 (UTC) Subject: rpms/ipa-pgothic-fonts/devel ipa-pgothic-fonts.spec,1.2,1.3 Message-ID: <20090725033016.25D1911C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9892 Modified Files: ipa-pgothic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipa-pgothic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/devel/ipa-pgothic-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ipa-pgothic-fonts.spec 5 Jun 2009 12:06:16 -0000 1.2 +++ ipa-pgothic-fonts.spec 25 Jul 2009 03:30:15 -0000 1.3 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 003.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Japanese Proportional Gothic-typeface OpenType font by IPA Group: User Interface/X @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 003.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Akira TAGOH - 003.01-3 - Disable hinting. From jkeating at fedoraproject.org Sat Jul 25 03:30:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:30:29 +0000 (UTC) Subject: rpms/ipa-pmincho-fonts/devel ipa-pmincho-fonts.spec,1.3,1.4 Message-ID: <20090725033029.65F7411C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10056 Modified Files: ipa-pmincho-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipa-pmincho-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/devel/ipa-pmincho-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ipa-pmincho-fonts.spec 5 Jun 2009 12:53:41 -0000 1.3 +++ ipa-pmincho-fonts.spec 25 Jul 2009 03:30:29 -0000 1.4 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 003.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Japanese Proportional Mincho-typeface OpenType font by IPA Group: User Interface/X @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 003.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Akira TAGOH - 003.01-3 - Disable hinting. From jkeating at fedoraproject.org Sat Jul 25 03:30:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:30:42 +0000 (UTC) Subject: rpms/ipcalculator/devel ipcalculator.spec,1.3,1.4 Message-ID: <20090725033042.D583611C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipcalculator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10192 Modified Files: ipcalculator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipcalculator.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipcalculator/devel/ipcalculator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ipcalculator.spec 25 Feb 2009 07:40:16 -0000 1.3 +++ ipcalculator.spec 25 Jul 2009 03:30:42 -0000 1.4 @@ -1,6 +1,6 @@ Name: ipcalculator Version: 0.41 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A utility for computing broadcast, network, mask, and host ranges Group: Applications/Internet @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.41-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.41-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:30:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:30:56 +0000 (UTC) Subject: rpms/ipe/devel ipe.spec,1.22,1.23 Message-ID: <20090725033056.9856F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10333 Modified Files: ipe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipe.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipe/devel/ipe.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ipe.spec 27 Feb 2009 10:23:15 -0000 1.22 +++ ipe.spec 25 Jul 2009 03:30:56 -0000 1.23 @@ -2,7 +2,7 @@ Name: ipe Version: 6.0 -Release: 0.29.pre%{preversion}%{?dist} +Release: 0.30.pre%{preversion}%{?dist} Summary: Drawing editor for creating figures in PDF or PostScript formats Group: Applications/Publishing @@ -182,6 +182,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ipe/%{version}/doc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.0-0.30.pre30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 - 6.0-0.29.pre30%{?dist} - noarch ipe-doc From jkeating at fedoraproject.org Sat Jul 25 03:31:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:31:23 +0000 (UTC) Subject: rpms/ipmitool/devel ipmitool.spec,1.4,1.5 Message-ID: <20090725033123.6AD8D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipmitool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10596 Modified Files: ipmitool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipmitool.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipmitool/devel/ipmitool.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ipmitool.spec 26 Feb 2009 08:44:16 -0000 1.4 +++ ipmitool.spec 25 Jul 2009 03:31:23 -0000 1.5 @@ -1,7 +1,7 @@ Name: ipmitool Summary: Utility for IPMI control Version: 1.8.11 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Base URL: http://ipmitool.sourceforge.net/ @@ -85,6 +85,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Jan Safranek 1.8.11-1 - updated to new version From jkeating at fedoraproject.org Sat Jul 25 03:31:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:31:10 +0000 (UTC) Subject: rpms/iperf/devel iperf.spec,1.8,1.9 Message-ID: <20090725033110.A17F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10462 Modified Files: iperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/iperf/devel/iperf.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- iperf.spec 25 Feb 2009 07:42:08 -0000 1.8 +++ iperf.spec 25 Jul 2009 03:31:10 -0000 1.9 @@ -1,6 +1,6 @@ Name: iperf Version: 2.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Measurement tool for TCP/UDP bandwidth performance License: BSD Group: Applications/Internet @@ -37,6 +37,9 @@ jitter, datagram loss. %{_bindir}/iperf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 2.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:31:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:31:36 +0000 (UTC) Subject: rpms/ipod-sharp/devel ipod-sharp.spec,1.18,1.19 Message-ID: <20090725033136.D6DFA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipod-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10724 Modified Files: ipod-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipod-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipod-sharp/devel/ipod-sharp.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ipod-sharp.spec 14 Jun 2009 09:06:29 -0000 1.18 +++ ipod-sharp.spec 25 Jul 2009 03:31:36 -0000 1.19 @@ -1,6 +1,6 @@ Name: ipod-sharp Version: 0.8.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Support for high level features of Apple's iPod Group: Development/Libraries @@ -63,6 +63,9 @@ make install DESTDIR=${RPM_BUILD_ROOT} \ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Michael Schwendt - 0.8.1-3 - Don't claim ownership of %%_libdir/pkgconfig/ (#499658) From jkeating at fedoraproject.org Sat Jul 25 03:31:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:31:50 +0000 (UTC) Subject: rpms/iproute/devel iproute.spec,1.96,1.97 Message-ID: <20090725033151.007DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iproute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10864 Modified Files: iproute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iproute.spec =================================================================== RCS file: /cvs/pkgs/rpms/iproute/devel/iproute.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- iproute.spec 24 Apr 2009 07:49:30 -0000 1.96 +++ iproute.spec 25 Jul 2009 03:31:50 -0000 1.97 @@ -4,7 +4,7 @@ Summary: Advanced IP routing and network device configuration tools Name: iproute Version: 2.6.29 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/System Source: http://developer.osdl.org/dev/iproute2/download/iproute2-%{version}.tar.bz2 #Source1: iproute-doc-2.6.22.tar.gz @@ -130,6 +130,9 @@ EOF %doc RELNOTES %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.29-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Marcela Ma?l??ov? - 2.6.29-3 - new iptables (xtables) bring problems to tc, when ipt is used. rhbz#497344 still broken. tc_modules.patch brings correct paths to From jkeating at fedoraproject.org Sat Jul 25 03:32:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:32:04 +0000 (UTC) Subject: rpms/iprutils/devel iprutils.spec,1.37,1.38 Message-ID: <20090725033204.83B7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iprutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11004 Modified Files: iprutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iprutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/iprutils/devel/iprutils.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- iprutils.spec 25 Feb 2009 07:45:49 -0000 1.37 +++ iprutils.spec 25 Jul 2009 03:32:04 -0000 1.38 @@ -1,7 +1,7 @@ Summary: Utilities for the IBM Power Linux RAID adapters Name: iprutils Version: 2.2.13 -Release: 3%{?dist} +Release: 4%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/iprdd/ @@ -67,6 +67,9 @@ CFLAGS="%{optflags}" %{__make} %{_sysconfdir}/rc.d/init.d/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:32:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:32:20 +0000 (UTC) Subject: rpms/ipsec-tools/devel ipsec-tools.spec,1.65,1.66 Message-ID: <20090725033220.8511F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipsec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11162 Modified Files: ipsec-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipsec-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipsec-tools/devel/ipsec-tools.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- ipsec-tools.spec 15 Jul 2009 08:36:37 -0000 1.65 +++ ipsec-tools.spec 25 Jul 2009 03:32:20 -0000 1.66 @@ -1,6 +1,6 @@ Name: ipsec-tools Version: 0.7.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools for configuring and using IPSEC License: BSD Group: System Environment/Base @@ -123,6 +123,9 @@ fi %config(noreplace) /etc/racoon/racoon.conf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Tomas Mraz - 0.7.2-2 - fix FTBFS (#511556) - fix some memory leaks and compilation warnings found by review From jkeating at fedoraproject.org Sat Jul 25 03:32:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:32:34 +0000 (UTC) Subject: rpms/iptables/devel iptables.spec,1.77,1.78 Message-ID: <20090725033234.D501D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iptables/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11319 Modified Files: iptables.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iptables.spec =================================================================== RCS file: /cvs/pkgs/rpms/iptables/devel/iptables.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- iptables.spec 15 Apr 2009 12:29:01 -0000 1.77 +++ iptables.spec 25 Jul 2009 03:32:34 -0000 1.78 @@ -1,7 +1,7 @@ Name: iptables Summary: Tools for managing Linux kernel packet filtering capabilities Version: 1.4.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2 Source1: iptables.init Source2: iptables-config @@ -150,6 +150,9 @@ fi %{_libdir}/pkgconfig/xtables.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Thomas Woerner 1.4.3.2-1 - new version 1.4.3.2 - also install iptables/internal.h, needed for iptables.h and ip6tables.h From jkeating at fedoraproject.org Sat Jul 25 03:32:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:32:48 +0000 (UTC) Subject: rpms/iptraf/devel iptraf.spec,1.34,1.35 Message-ID: <20090725033248.A01C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iptraf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11459 Modified Files: iptraf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iptraf.spec =================================================================== RCS file: /cvs/pkgs/rpms/iptraf/devel/iptraf.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- iptraf.spec 25 Feb 2009 07:48:43 -0000 1.34 +++ iptraf.spec 25 Jul 2009 03:32:48 -0000 1.35 @@ -1,7 +1,7 @@ Summary: A console-based network monitoring utility Name: iptraf Version: 3.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Source0: ftp://iptraf.seul.org/pub/iptraf/%{name}-%{version}.tar.gz Source1: iptraf URL: http://iptraf.seul.org @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %dir %attr(644,root,root) %config(noreplace) /etc/logrotate.d/iptraf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:33:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:33:02 +0000 (UTC) Subject: rpms/iptstate/devel iptstate.spec,1.20,1.21 Message-ID: <20090725033302.9F89A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iptstate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11594 Modified Files: iptstate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iptstate.spec =================================================================== RCS file: /cvs/pkgs/rpms/iptstate/devel/iptstate.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- iptstate.spec 25 Feb 2009 07:49:44 -0000 1.20 +++ iptstate.spec 25 Jul 2009 03:33:02 -0000 1.21 @@ -1,7 +1,7 @@ Name: iptstate Summary: A top-like display of IP Tables state table entries Version: 2.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: iptstate-2.1-man8.patch Patch1: iptstate-2.2.1-strerror.patch @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man8/iptstate.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:33:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:33:15 +0000 (UTC) Subject: rpms/iptux/devel iptux.spec,1.1,1.2 Message-ID: <20090725033315.D3DC111C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iptux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11742 Modified Files: iptux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iptux.spec =================================================================== RCS file: /cvs/pkgs/rpms/iptux/devel/iptux.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- iptux.spec 5 May 2009 06:58:32 -0000 1.1 +++ iptux.spec 25 Jul 2009 03:33:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: iptux Version: 0.4.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A software for sharing in LAN Group: Applications/Internet License: GPLv2+ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/i-tux.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Liang Suilong 0.4.5-1 - Upstream to 0.4.5 From jkeating at fedoraproject.org Sat Jul 25 03:33:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:33:29 +0000 (UTC) Subject: rpms/iputils/devel iputils.spec,1.65,1.66 Message-ID: <20090725033329.DF93711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iputils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11898 Modified Files: iputils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iputils.spec =================================================================== RCS file: /cvs/pkgs/rpms/iputils/devel/iputils.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- iputils.spec 25 Feb 2009 21:59:39 -0000 1.65 +++ iputils.spec 25 Jul 2009 03:33:29 -0000 1.66 @@ -1,7 +1,7 @@ Summary: Network monitoring tools including ping Name: iputils Version: 20071127 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD URL: http://www.skbuff.net/iputils Group: System Environment/Daemons @@ -150,6 +150,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_sysconfdir}/rc.d/init.d/rdisc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20071127-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Jiri Skala - 20071127-8 - remake type conversions to gcc4.4 requirements From jkeating at fedoraproject.org Sat Jul 25 03:33:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:33:48 +0000 (UTC) Subject: rpms/ipv6calc/devel ipv6calc.spec,1.29,1.30 Message-ID: <20090725033348.185C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipv6calc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12057 Modified Files: ipv6calc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipv6calc.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipv6calc/devel/ipv6calc.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- ipv6calc.spec 16 Jun 2009 08:45:30 -0000 1.29 +++ ipv6calc.spec 25 Jul 2009 03:33:47 -0000 1.30 @@ -1,7 +1,7 @@ Summary: IPv6 address format change and calculation utility Name: ipv6calc Version: 0.72.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Text URL: http://www.deepspace6.net/projects/%{name}.html License: GPLv2 @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.72.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Marcela Ma?l??ov? - 0.72.1-1 - update to the latest version - change installonly to standart DESTDIR From jkeating at fedoraproject.org Sat Jul 25 03:34:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:34:05 +0000 (UTC) Subject: rpms/ipvsadm/devel ipvsadm.spec,1.19,1.20 Message-ID: <20090725033405.8ADEF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipvsadm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12239 Modified Files: ipvsadm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipvsadm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipvsadm/devel/ipvsadm.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ipvsadm.spec 25 Feb 2009 07:52:39 -0000 1.19 +++ ipvsadm.spec 25 Jul 2009 03:34:05 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Utility to administer the Linux Virtual Server Name: ipvsadm Version: 1.25 -Release: 3 +Release: 4 License: GPLv2+ Group: Applications/System URL: http://www.linuxvirtualserver.org/software/ipvs.html @@ -65,6 +65,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.25-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.25-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:34:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:34:20 +0000 (UTC) Subject: rpms/ipw2100-firmware/devel ipw2100-firmware.spec,1.3,1.4 Message-ID: <20090725033420.E292B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipw2100-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12386 Modified Files: ipw2100-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipw2100-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipw2100-firmware/devel/ipw2100-firmware.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ipw2100-firmware.spec 25 Feb 2009 07:53:40 -0000 1.3 +++ ipw2100-firmware.spec 25 Jul 2009 03:34:20 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Firmware for Intel? PRO/Wireless 2100 network adaptors Name: ipw2100-firmware Version: 1.3 -Release: 9 +Release: 10 License: Redistributable, no modification permitted Group: System Environment/Kernel URL: http://ipw2100.sourceforge.net/firmware.php @@ -48,6 +48,9 @@ in /lib/firmware/LICENSE.ipw2100. Please %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:34:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:34:36 +0000 (UTC) Subject: rpms/ipw2200-firmware/devel ipw2200-firmware.spec,1.7,1.8 Message-ID: <20090725033436.DCD0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipw2200-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12543 Modified Files: ipw2200-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipw2200-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipw2200-firmware/devel/ipw2200-firmware.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ipw2200-firmware.spec 11 Jun 2009 08:52:51 -0000 1.7 +++ ipw2200-firmware.spec 25 Jul 2009 03:34:36 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Firmware for Intel? PRO/Wireless 2200 network adaptors Name: ipw2200-firmware Version: 3.1 -Release: 2 +Release: 3 License: Redistributable, no modification permitted Group: System Environment/Kernel URL: http://ipw2200.sourceforge.net/firmware.php @@ -44,6 +44,9 @@ in /lib/firmware/LICENSE.ipw2200. Please %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Matthias Saou 3.1-2 - Bump release, the added dist tag in F-10 broke the update path (#505162). From jkeating at fedoraproject.org Sat Jul 25 03:34:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:34:51 +0000 (UTC) Subject: rpms/ipxripd/devel ipxripd.spec,1.6,1.7 Message-ID: <20090725033451.C113A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipxripd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12705 Modified Files: ipxripd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipxripd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipxripd/devel/ipxripd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ipxripd.spec 25 Feb 2009 07:55:35 -0000 1.6 +++ ipxripd.spec 25 Jul 2009 03:34:51 -0000 1.7 @@ -1,7 +1,7 @@ Summary: IPX RIP/SAP daemon - routing for IPX networks Name: ipxripd Version: 0.8 -Release: 6%{?dist} +Release: 7%{?dist} Group: System Environment/Daemons License: GPLv2+ URL: ftp://ftp.ibiblio.org/pub/Linux/system/filesystems/ncpfs/ @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:35:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:35:06 +0000 (UTC) Subject: rpms/ipython/devel ipython.spec,1.27,1.28 Message-ID: <20090725033506.8720E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ipython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12855 Modified Files: ipython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ipython.spec =================================================================== RCS file: /cvs/pkgs/rpms/ipython/devel/ipython.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- ipython.spec 25 Feb 2009 07:56:26 -0000 1.27 +++ ipython.spec 25 Jul 2009 03:35:06 -0000 1.28 @@ -2,7 +2,7 @@ Name: ipython Version: 0.9.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An enhanced interactive Python shell Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:35:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:35:20 +0000 (UTC) Subject: rpms/irc-otr/devel irc-otr.spec,1.2,1.3 Message-ID: <20090725033520.9EF8911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irc-otr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13006 Modified Files: irc-otr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irc-otr.spec =================================================================== RCS file: /cvs/pkgs/rpms/irc-otr/devel/irc-otr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- irc-otr.spec 25 Feb 2009 07:57:20 -0000 1.2 +++ irc-otr.spec 25 Jul 2009 03:35:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: irc-otr Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Off-The-Record Messaging plugin for various irc clients Group: Applications/Internet License: GPLv2+ @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:35:33 +0000 (UTC) Subject: rpms/ircd-hybrid/devel ircd-hybrid.spec,1.20,1.21 Message-ID: <20090725033533.7666511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ircd-hybrid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13162 Modified Files: ircd-hybrid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ircd-hybrid.spec =================================================================== RCS file: /cvs/pkgs/rpms/ircd-hybrid/devel/ircd-hybrid.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ircd-hybrid.spec 25 Feb 2009 07:58:15 -0000 1.20 +++ ircd-hybrid.spec 25 Jul 2009 03:35:33 -0000 1.21 @@ -10,7 +10,7 @@ Summary: Internet Relay Chat Server Name: ircd-hybrid Version: 7.2.3 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://ovh.dl.sourceforge.net/sourceforge/ircd-hybrid/ircd-hybrid-%{version}.tgz @@ -129,6 +129,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.2.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 7.2.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:35:46 +0000 (UTC) Subject: rpms/ircd-ratbox/devel ircd-ratbox.spec,1.4,1.5 Message-ID: <20090725033546.9E51A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ircd-ratbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13304 Modified Files: ircd-ratbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ircd-ratbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/ircd-ratbox/devel/ircd-ratbox.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ircd-ratbox.spec 25 Feb 2009 07:59:05 -0000 1.4 +++ ircd-ratbox.spec 25 Jul 2009 03:35:46 -0000 1.5 @@ -2,7 +2,7 @@ Name: ircd-ratbox Version: 2.2.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Ircd-ratbox is an advanced, stable and fast ircd License: GPLv2 @@ -128,6 +128,9 @@ fi %{_bindir}/ircd-mkpasswd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:36:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:36:01 +0000 (UTC) Subject: rpms/irclog2html/devel irclog2html.spec,1.2,1.3 Message-ID: <20090725033601.3C46711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irclog2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13456 Modified Files: irclog2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irclog2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/irclog2html/devel/irclog2html.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- irclog2html.spec 25 Feb 2009 07:59:56 -0000 1.2 +++ irclog2html.spec 25 Jul 2009 03:36:01 -0000 1.3 @@ -2,7 +2,7 @@ Name: irclog2html Version: 2.7 -Release: 3.svn%{svn_revision}%{?dist} +Release: 4.svn%{svn_revision}%{?dist} Summary: Script to convert IRC logs to HTML and other formats Group: Applications/Communications @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7-4.svn67 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-3.svn67 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:36:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:36:14 +0000 (UTC) Subject: rpms/ircp-tray/devel ircp-tray.spec,1.2,1.3 Message-ID: <20090725033614.6DCAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ircp-tray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13620 Modified Files: ircp-tray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ircp-tray.spec =================================================================== RCS file: /cvs/pkgs/rpms/ircp-tray/devel/ircp-tray.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ircp-tray.spec 25 Feb 2009 08:00:54 -0000 1.2 +++ ircp-tray.spec 25 Jul 2009 03:36:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: ircp-tray Version: 0.7.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Infrared file transfer applet for GNOME panel Group: Applications/Internet @@ -62,6 +62,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:36:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:36:27 +0000 (UTC) Subject: rpms/irda-utils/devel irda-utils.spec,1.34,1.35 Message-ID: <20090725033627.F120B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irda-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13762 Modified Files: irda-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irda-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/irda-utils/devel/irda-utils.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- irda-utils.spec 25 Feb 2009 08:01:49 -0000 1.34 +++ irda-utils.spec 25 Jul 2009 03:36:27 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Utilities for infrared communication between devices Name: irda-utils Version: 0.9.18 -Release: 7%{?dist} +Release: 8%{?dist} Url: http://irda.sourceforge.net/ License: GPLv2+ Group: Applications/System @@ -96,6 +96,9 @@ fi %doc tekram/README.tekram %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.18-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.18-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:36:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:36:43 +0000 (UTC) Subject: rpms/irqbalance/devel irqbalance.spec,1.55,1.56 Message-ID: <20090725033643.DDE4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irqbalance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13927 Modified Files: irqbalance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/devel/irqbalance.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- irqbalance.spec 6 Mar 2009 14:52:28 -0000 1.55 +++ irqbalance.spec 25 Jul 2009 03:36:43 -0000 1.56 @@ -1,7 +1,7 @@ Summary: IRQ balancing daemon. Name: irqbalance Version: 0.55 -Release: 14%{?dist} +Release: 15%{?dist} Epoch: 2 Group: System Environment/Base License: GPLv2 @@ -78,6 +78,9 @@ exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:0.55-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Neil Horman - Update spec file to build for i586 as per new build guidelines (bz 488849) From jkeating at fedoraproject.org Sat Jul 25 03:36:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:36:58 +0000 (UTC) Subject: rpms/irrlicht/devel irrlicht.spec,1.2,1.3 Message-ID: <20090725033658.E79D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irrlicht/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14097 Modified Files: irrlicht.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irrlicht.spec =================================================================== RCS file: /cvs/pkgs/rpms/irrlicht/devel/irrlicht.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- irrlicht.spec 25 Feb 2009 08:03:36 -0000 1.2 +++ irrlicht.spec 25 Jul 2009 03:36:58 -0000 1.3 @@ -1,7 +1,7 @@ Name: irrlicht Summary: A high performance realtime 3D engine Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} License: zlib Group: System Environment/Libraries Source0: http://downloads.sourceforge.net/irrlicht/%{name}-%{version}.zip @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_libdir}/libIrrlicht*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:37:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:37:29 +0000 (UTC) Subject: rpms/irsim/devel irsim.spec,1.9,1.10 Message-ID: <20090725033729.D654F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irsim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14321 Modified Files: irsim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irsim.spec =================================================================== RCS file: /cvs/pkgs/rpms/irsim/devel/irsim.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- irsim.spec 25 Feb 2009 08:04:37 -0000 1.9 +++ irsim.spec 25 Jul 2009 03:37:29 -0000 1.10 @@ -1,6 +1,6 @@ Name: irsim Version: 9.7.68 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Switch-level simulator used even for VLSI License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 03:37:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:37:44 +0000 (UTC) Subject: rpms/irssi/devel irssi.spec,1.39,1.40 Message-ID: <20090725033744.DA65E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/irssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14460 Modified Files: irssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: irssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/irssi/devel/irssi.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- irssi.spec 23 Jun 2009 10:47:21 -0000 1.39 +++ irssi.spec 25 Jul 2009 03:37:44 -0000 1.40 @@ -3,7 +3,7 @@ Summary: Modular text mode IRC client with Perl scripting Name: irssi Version: 0.8.13 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Communications @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Huzaifa Sidhpurwala - 0.8.13-2 - Resolve CVE-2009-1959 From jkeating at fedoraproject.org Sat Jul 25 03:37:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:37:59 +0000 (UTC) Subject: rpms/iscan-firmware/devel iscan-firmware.spec,1.2,1.3 Message-ID: <20090725033759.D116811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iscan-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14584 Modified Files: iscan-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iscan-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iscan-firmware/devel/iscan-firmware.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- iscan-firmware.spec 3 Mar 2009 02:22:06 -0000 1.2 +++ iscan-firmware.spec 25 Jul 2009 03:37:59 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Firmware for Epson flatbed scanners Name: iscan-firmware Version: 2.1.0 -Release: 3%{?dist} +Release: 4%{?dist} License: Redistributable, no modification permitted URL: http://www.avasys.jp/english/linux_e/index.html # Perfection 2480/2580 PHOTO @@ -80,6 +80,9 @@ rm -rf %{buildroot} /lib/firmware/epson %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 03 2009 Dominik Mierzejewski 2.1.0-3 - set version to that of the latest firmware package - updated source url for Perfection V200 firmware From jkeating at fedoraproject.org Sat Jul 25 03:38:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:38:16 +0000 (UTC) Subject: rpms/iscsi-initiator-utils/devel iscsi-initiator-utils.spec, 1.45, 1.46 Message-ID: <20090725033816.37C9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iscsi-initiator-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14726 Modified Files: iscsi-initiator-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iscsi-initiator-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/iscsi-initiator-utils/devel/iscsi-initiator-utils.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- iscsi-initiator-utils.spec 22 May 2009 13:29:02 -0000 1.45 +++ iscsi-initiator-utils.spec 25 Jul 2009 03:38:16 -0000 1.46 @@ -3,7 +3,7 @@ Summary: iSCSI daemon and utility programs Name: iscsi-initiator-utils Version: 6.2.0.870 -Release: 9%{?dist}.1 +Release: 10%{?dist}.1 Source0: http://www.open-iscsi.org/bits/open-iscsi-2.0-870.1.tar.gz Source1: iscsid.init Source2: iscsidevs.init @@ -161,6 +161,9 @@ fi %{_includedir}/libiscsi.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.2.0.870-10.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Dan Horak 6.2.0.870-9.1 - drop the s390/s390x ExcludeArch From jkeating at fedoraproject.org Sat Jul 25 03:38:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:38:34 +0000 (UTC) Subject: rpms/isdn4k-utils/devel isdn4k-utils.spec,1.80,1.81 Message-ID: <20090725033834.164D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isdn4k-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14884 Modified Files: isdn4k-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isdn4k-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/isdn4k-utils/devel/isdn4k-utils.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- isdn4k-utils.spec 27 Feb 2009 15:07:03 -0000 1.80 +++ isdn4k-utils.spec 25 Jul 2009 03:38:33 -0000 1.81 @@ -17,7 +17,7 @@ Summary: Utilities for configuring an ISDN subsystem. Name: isdn4k-utils Version: 3.2 -Release: 64%{?dist} +Release: 65%{?dist} License: GPLv2+ Group: Applications/System @@ -506,6 +506,9 @@ rm -rf %{buildroot} %doc xmonisdn/README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2-65 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Than Ngo 3.2-64 - fix build problem From jkeating at fedoraproject.org Sat Jul 25 03:38:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:38:48 +0000 (UTC) Subject: rpms/isic/devel isic.spec,1.5,1.6 Message-ID: <20090725033848.DE12011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15029 Modified Files: isic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isic.spec =================================================================== RCS file: /cvs/pkgs/rpms/isic/devel/isic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- isic.spec 25 Feb 2009 08:08:17 -0000 1.5 +++ isic.spec 25 Jul 2009 03:38:48 -0000 1.6 @@ -1,6 +1,6 @@ Name: isic Version: 0.07 -Release: 3%{?dist} +Release: 4%{?dist} Summary: IP Stack Integrity Checker Group: Applications/Internet @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc README ChangeLog INSTALL wrapper.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:39:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:39:03 +0000 (UTC) Subject: rpms/isight-firmware-tools/devel isight-firmware-tools.spec, 1.2, 1.3 Message-ID: <20090725033903.D46D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isight-firmware-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15209 Modified Files: isight-firmware-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isight-firmware-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/isight-firmware-tools/devel/isight-firmware-tools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- isight-firmware-tools.spec 25 Feb 2009 08:09:14 -0000 1.2 +++ isight-firmware-tools.spec 25 Jul 2009 03:39:03 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Firmware extraction tools for Apple Built-in iSight camera Name: isight-firmware-tools Version: 1.0.2 -Release: 3%{dist} +Release: 4%{dist} License: GPLv2+ Group: System Environment/Base URL: http://bersace03.free.fr/ift/ @@ -79,6 +79,9 @@ fi %{_mandir}/man1/ift-extract.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:39:19 +0000 (UTC) Subject: rpms/isns-utils/devel isns-utils.spec,1.4,1.5 Message-ID: <20090725033919.0B7DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isns-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15405 Modified Files: isns-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isns-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/isns-utils/devel/isns-utils.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- isns-utils.spec 25 Feb 2009 08:10:08 -0000 1.4 +++ isns-utils.spec 25 Jul 2009 03:39:18 -0000 1.5 @@ -1,6 +1,6 @@ Name: isns-utils Version: 0.91 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The iSNS daemon and utility programs Group: System Environment/Daemons @@ -97,6 +97,9 @@ fi %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/isns/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.91-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.91-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:39:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:39:33 +0000 (UTC) Subject: rpms/iso-codes/devel iso-codes.spec,1.34,1.35 Message-ID: <20090725033933.B9F9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iso-codes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15592 Modified Files: iso-codes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iso-codes.spec =================================================================== RCS file: /cvs/pkgs/rpms/iso-codes/devel/iso-codes.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- iso-codes.spec 2 Jun 2009 11:09:26 -0000 1.34 +++ iso-codes.spec 25 Jul 2009 03:39:33 -0000 1.35 @@ -2,7 +2,7 @@ Name: iso-codes Summary: ISO code lists and translations Version: 3.10 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Base URL: http://alioth.debian.org/projects/pkg-isocodes/ @@ -57,6 +57,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %{_datadir}/pkgconfig/iso-codes.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Parag Nemade - 3.10-2 - Upstream stopped providing iso_639.tab file since 3.9 release, so remove it from %%files. From jkeating at fedoraproject.org Sat Jul 25 03:39:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:39:47 +0000 (UTC) Subject: rpms/isomaster/devel isomaster.spec,1.16,1.17 Message-ID: <20090725033947.E37E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isomaster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15766 Modified Files: isomaster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isomaster.spec =================================================================== RCS file: /cvs/pkgs/rpms/isomaster/devel/isomaster.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- isomaster.spec 25 Feb 2009 08:12:03 -0000 1.16 +++ isomaster.spec 25 Jul 2009 03:39:47 -0000 1.17 @@ -1,7 +1,7 @@ Name: isomaster Summary: An easy to use GUI CD image editor Version: 1.3.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/File URL: http://littlesvr.ca/isomaster/ @@ -67,6 +67,9 @@ update-desktop-database %{_datadir}/appl %{_mandir}/man1/isomaster.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:40:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:40:01 +0000 (UTC) Subject: rpms/isomd5sum/devel isomd5sum.spec,1.11,1.12 Message-ID: <20090725034001.8DDDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isomd5sum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15911 Modified Files: isomd5sum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isomd5sum.spec =================================================================== RCS file: /cvs/pkgs/rpms/isomd5sum/devel/isomd5sum.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- isomd5sum.spec 25 Feb 2009 08:12:56 -0000 1.11 +++ isomd5sum.spec 25 Jul 2009 03:40:01 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Utilities for working with md5sum implanted in ISO images Name: isomd5sum Version: 1.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ Group: Applications/System @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:40:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:40:15 +0000 (UTC) Subject: rpms/isorelax/devel isorelax.spec,1.6,1.7 Message-ID: <20090725034015.D4D6011C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isorelax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16111 Modified Files: isorelax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isorelax.spec =================================================================== RCS file: /cvs/pkgs/rpms/isorelax/devel/isorelax.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- isorelax.spec 25 Feb 2009 08:13:49 -0000 1.6 +++ isorelax.spec 25 Jul 2009 03:40:15 -0000 1.7 @@ -36,7 +36,7 @@ Url: http://iso-relax.sourcef Epoch: 1 Version: 0 # I can't use %%{cvstag} as dashes aren't allowed in Release tags -Release: 0.3.release20050331%{?dist} +Release: 0.4.release20050331%{?dist} License: MIT Group: Development/Libraries/Java BuildArch: noarch @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0-0.4.release20050331 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0-0.3.release20050331 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:40:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:40:31 +0000 (UTC) Subject: rpms/istanbul/devel istanbul.spec,1.17,1.18 Message-ID: <20090725034031.69F8111C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/istanbul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16239 Modified Files: istanbul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: istanbul.spec =================================================================== RCS file: /cvs/pkgs/rpms/istanbul/devel/istanbul.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- istanbul.spec 25 Feb 2009 08:14:41 -0000 1.17 +++ istanbul.spec 25 Jul 2009 03:40:31 -0000 1.18 @@ -7,7 +7,7 @@ Summary: Desktop Session Recorder Name: istanbul Version: 0.2.2 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://live.gnome.org/Istanbul @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT #%{python_sitelib}/%{name}/extern/pytrayicon/*.so* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:40:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:40:44 +0000 (UTC) Subject: rpms/isync/devel isync.spec,1.10,1.11 Message-ID: <20090725034044.C933311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/isync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16390 Modified Files: isync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: isync.spec =================================================================== RCS file: /cvs/pkgs/rpms/isync/devel/isync.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- isync.spec 25 Feb 2009 08:15:37 -0000 1.10 +++ isync.spec 25 Jul 2009 03:40:44 -0000 1.11 @@ -1,6 +1,6 @@ Name: isync Version: 1.0.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to synchronize IMAP4 and Maildir mailboxes Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:40:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:40:58 +0000 (UTC) Subject: rpms/itaka/devel itaka.spec,1.4,1.5 Message-ID: <20090725034058.C733D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itaka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16541 Modified Files: itaka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itaka.spec =================================================================== RCS file: /cvs/pkgs/rpms/itaka/devel/itaka.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- itaka.spec 25 Feb 2009 08:16:29 -0000 1.4 +++ itaka.spec 25 Jul 2009 03:40:58 -0000 1.5 @@ -2,7 +2,7 @@ Name: itaka Version: 0.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: On-demand screen capture server Group: Applications/Communications @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:41:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:41:13 +0000 (UTC) Subject: rpms/itcl/devel itcl.spec,1.13,1.14 Message-ID: <20090725034113.E5EBB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16679 Modified Files: itcl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/itcl/devel/itcl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- itcl.spec 12 Jul 2009 00:19:42 -0000 1.13 +++ itcl.spec 25 Jul 2009 03:41:12 -0000 1.14 @@ -3,7 +3,7 @@ Name: itcl Version: 3.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Object oriented extensions to Tcl and Tk Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/itclConfig.sh %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Wart - 3.4-4 - Fix bad logic for locating itcl.tcl from the C bindings From jkeating at fedoraproject.org Sat Jul 25 03:41:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:41:30 +0000 (UTC) Subject: rpms/itext/devel itext.spec,1.20,1.21 Message-ID: <20090725034130.B786711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16846 Modified Files: itext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itext.spec =================================================================== RCS file: /cvs/pkgs/rpms/itext/devel/itext.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- itext.spec 10 Jul 2009 02:22:28 -0000 1.20 +++ itext.spec 25 Jul 2009 03:41:30 -0000 1.21 @@ -4,7 +4,7 @@ Summary: A Free Java-PDF library Name: itext Version: 2.1.7 -Release: 1%{?dist} +Release: 2%{?dist} License: (LGPLv2+ or MPLv1.1) and ASL 2.0 and BSD and MIT and LGPLv2+ and CC-BY URL: http://www.lowagie.com/iText/ Group: Development/Libraries @@ -138,6 +138,9 @@ if [ -x %{_bindir}/rebuild-gcj-db ] # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Orcan Ogetbil 2.1.7-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 03:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:41:46 +0000 (UTC) Subject: rpms/itk/devel itk.spec,1.13,1.14 Message-ID: <20090725034146.801CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16988 Modified Files: itk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itk.spec =================================================================== RCS file: /cvs/pkgs/rpms/itk/devel/itk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- itk.spec 12 Jul 2009 00:43:09 -0000 1.13 +++ itk.spec 25 Jul 2009 03:41:45 -0000 1.14 @@ -3,7 +3,7 @@ Name: itk Version: 3.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Object oriented extensions to Tk Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT # What happened to itk's stub library and itkConfig.sh? %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Wart - 3.4-4 - Fix bad logic for locating itk.tcl from the C bindings (bz #485252) From jkeating at fedoraproject.org Sat Jul 25 03:42:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:42:03 +0000 (UTC) Subject: rpms/itpp/devel itpp.spec,1.14,1.15 Message-ID: <20090725034203.6354911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17161 Modified Files: itpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/itpp/devel/itpp.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- itpp.spec 23 Apr 2009 23:57:34 -0000 1.14 +++ itpp.spec 25 Jul 2009 03:42:02 -0000 1.15 @@ -1,6 +1,6 @@ Name: itpp Version: 4.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ library for math, signal/speech processing, and communications Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Milos Jakubicek - 4.0.6-1 - Fix FTBFS: - Update to 4.0.6 bugfix release From jkeating at fedoraproject.org Sat Jul 25 03:42:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:42:27 +0000 (UTC) Subject: rpms/itzam-core/devel itzam-core.spec,1.2,1.3 Message-ID: <20090725034227.3D67C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/itzam-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17319 Modified Files: itzam-core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: itzam-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/itzam-core/devel/itzam-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- itzam-core.spec 25 Feb 2009 08:21:13 -0000 1.2 +++ itzam-core.spec 25 Jul 2009 03:42:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: itzam-core Version: 2.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for creating and manipulating keyed-access database files Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:42:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:42:44 +0000 (UTC) Subject: rpms/iverilog/devel iverilog.spec,1.12,1.13 Message-ID: <20090725034244.3E14C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iverilog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17541 Modified Files: iverilog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iverilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/iverilog/devel/iverilog.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- iverilog.spec 13 Jul 2009 22:29:17 -0000 1.12 +++ iverilog.spec 25 Jul 2009 03:42:43 -0000 1.13 @@ -2,7 +2,7 @@ Name: iverilog Version: 0.9.%{snapshot} -Release: 5%{?dist} +Release: 6%{?dist} Summary: Icarus Verilog is a verilog compiler and simulator Group: Applications/Engineering License: GPLv2 @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.20090423-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 13 2009 Chitlesh Goorah - 0.9.20090423-5 - Improved VPI support From jkeating at fedoraproject.org Sat Jul 25 03:43:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:43:01 +0000 (UTC) Subject: rpms/ivtv-firmware/devel ivtv-firmware.spec,1.5,1.6 Message-ID: <20090725034301.A1E1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ivtv-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17685 Modified Files: ivtv-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ivtv-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ivtv-firmware/devel/ivtv-firmware.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ivtv-firmware.spec 25 Feb 2009 08:23:01 -0000 1.5 +++ ivtv-firmware.spec 25 Jul 2009 03:43:01 -0000 1.6 @@ -4,7 +4,7 @@ Summary: Firmware for the Hauppauge PVR 250/350/150/500/USB2 model series Name: ivtv-firmware Version: 20080701 -Release: 19 +Release: 20 Epoch: 2 License: Redistributable, no modification permitted Group: System Environment/Kernel @@ -51,6 +51,9 @@ rm -rf %{buildroot} /lib/firmware/%{name}-license-*.txt %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:20080701-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2:20080701-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:43:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:43:18 +0000 (UTC) Subject: rpms/iw/devel iw.spec,1.13,1.14 Message-ID: <20090725034318.DF59511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17859 Modified Files: iw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iw.spec =================================================================== RCS file: /cvs/pkgs/rpms/iw/devel/iw.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- iw.spec 11 Jul 2009 08:58:15 -0000 1.13 +++ iw.spec 25 Jul 2009 03:43:18 -0000 1.14 @@ -1,6 +1,6 @@ Name: iw Version: 0.9.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A nl80211 based wireless configuration tool Group: System Environment/Base @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Adel Gadllah 0.9.15-1 - Update to 0.9.15 From jkeating at fedoraproject.org Sat Jul 25 03:43:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:43:33 +0000 (UTC) Subject: rpms/iwak/devel iwak.spec,1.1,1.2 Message-ID: <20090725034333.EB1A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iwak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18004 Modified Files: iwak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iwak.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwak/devel/iwak.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- iwak.spec 24 Jul 2009 04:43:38 -0000 1.1 +++ iwak.spec 25 Jul 2009 03:43:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: iwak Version: 2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Detect the openssh keys affected by CVE-2008-0166 among authorized_keys Group: Applications/Internet @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/iwak %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jan F. Chadima - 2.4-2 - Spec file tweaking From jkeating at fedoraproject.org Sat Jul 25 03:43:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:43:50 +0000 (UTC) Subject: rpms/iwidgets/devel iwidgets.spec,1.5,1.6 Message-ID: <20090725034350.DA0C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iwidgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18150 Modified Files: iwidgets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iwidgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwidgets/devel/iwidgets.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- iwidgets.spec 25 Feb 2009 08:25:50 -0000 1.5 +++ iwidgets.spec 25 Jul 2009 03:43:50 -0000 1.6 @@ -3,7 +3,7 @@ Name: iwidgets Version: 4.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A set of useful widgets based on itcl and itk Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %doc README license.terms doc/iwidgets.ps %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:44:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:44:05 +0000 (UTC) Subject: rpms/iwl3945-firmware/devel iwl3945-firmware.spec,1.5,1.6 Message-ID: <20090725034405.EF80711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iwl3945-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18296 Modified Files: iwl3945-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iwl3945-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwl3945-firmware/devel/iwl3945-firmware.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- iwl3945-firmware.spec 11 May 2009 18:07:50 -0000 1.5 +++ iwl3945-firmware.spec 25 Jul 2009 03:44:05 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Firmware for Intel? PRO/Wireless 3945 A/B/G network adaptors Name: iwl3945-firmware Version: 15.32.2.9 -Release: 1 +Release: 2 License: Redistributable, no modification permitted Group: System Environment/Kernel URL: http://intellinuxwireless.org/ @@ -55,6 +55,9 @@ touch -r iwlwifi-3945*.ucode LICENSE REA %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 15.32.2.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 John W. Linville 15.32.2.9-1 - Update to 15.32.2.9. From jkeating at fedoraproject.org Sat Jul 25 03:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:44:21 +0000 (UTC) Subject: rpms/iwl4965-firmware/devel iwl4965-firmware.spec,1.9,1.10 Message-ID: <20090725034421.085FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iwl4965-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18453 Modified Files: iwl4965-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iwl4965-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwl4965-firmware/devel/iwl4965-firmware.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- iwl4965-firmware.spec 10 Jul 2009 15:36:47 -0000 1.9 +++ iwl4965-firmware.spec 25 Jul 2009 03:44:20 -0000 1.10 @@ -4,7 +4,7 @@ Name: iwl4965-firmware Version: %{iwl4965_v2} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Firmware for Intel? PRO/Wireless 4965 A/G/N network adaptors Group: System Environment/Kernel @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 228.61.2.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 John W. Linville - 228.61.2.24-1 - Update v2 to 228.61.2.24 From jkeating at fedoraproject.org Sat Jul 25 03:44:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:44:39 +0000 (UTC) Subject: rpms/iwl5000-firmware/devel iwl5000-firmware.spec,1.4,1.5 Message-ID: <20090725034439.8F15711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/iwl5000-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18615 Modified Files: iwl5000-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: iwl5000-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/iwl5000-firmware/devel/iwl5000-firmware.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- iwl5000-firmware.spec 20 May 2009 13:59:30 -0000 1.4 +++ iwl5000-firmware.spec 25 Jul 2009 03:44:39 -0000 1.5 @@ -4,7 +4,7 @@ Name: iwl5000-firmware Version: %{iwl5000_v2} -Release: 1 +Release: 2 Summary: Firmware for Intel? PRO/Wireless 5000 A/G/N network adaptors Group: System Environment/Kernel @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/*.ucode %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 8.24.2.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 John W. Linville - 8.24.2.12-1 - Add v2 firmware From jkeating at fedoraproject.org Sat Jul 25 03:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:44:52 +0000 (UTC) Subject: rpms/jFormatString/devel jFormatString.spec,1.1,1.2 Message-ID: <20090725034452.B3F2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jFormatString/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18755 Modified Files: jFormatString.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jFormatString.spec =================================================================== RCS file: /cvs/pkgs/rpms/jFormatString/devel/jFormatString.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jFormatString.spec 5 Mar 2009 23:14:59 -0000 1.1 +++ jFormatString.spec 25 Jul 2009 03:44:52 -0000 1.2 @@ -2,7 +2,7 @@ Name: jFormatString Version: 0 -Release: 0.2.20081016svn%{?dist} +Release: 0.3.20081016svn%{?dist} Summary: Java format string compile-time checker Group: Development/Libraries/Java @@ -110,6 +110,9 @@ fi %{_javadocdir}/%{name}* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.3.20081016svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Jerry James - 0-0.2.20081016svn - Clean up minor issues raised in package review From jkeating at fedoraproject.org Sat Jul 25 03:45:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:45:05 +0000 (UTC) Subject: rpms/jVorbisEnc/devel jVorbisEnc.spec,1.1,1.2 Message-ID: <20090725034505.BD60111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jVorbisEnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18893 Modified Files: jVorbisEnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jVorbisEnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/jVorbisEnc/devel/jVorbisEnc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jVorbisEnc.spec 1 May 2009 22:33:52 -0000 1.1 +++ jVorbisEnc.spec 25 Jul 2009 03:45:05 -0000 1.2 @@ -3,7 +3,7 @@ Name: jVorbisEnc Summary: Pure Java Ogg Vorbis Encoder Group: System Environment/Libraries Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ URL: http://zbigniew.sudnik.org/app/vorbis/vorbis.html Source0: http://zbigniew.sudnik.org/app/vorbis/download/%{name}_src.zip @@ -103,6 +103,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Orcan Ogetbil - 0.1-3 - License is LGPLv2+ From jkeating at fedoraproject.org Sat Jul 25 03:45:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:45:20 +0000 (UTC) Subject: rpms/jabberd/devel jabberd.spec,1.34,1.35 Message-ID: <20090725034520.C82F811C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jabberd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19048 Modified Files: jabberd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jabberd.spec =================================================================== RCS file: /cvs/pkgs/rpms/jabberd/devel/jabberd.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- jabberd.spec 19 Jun 2009 11:09:52 -0000 1.34 +++ jabberd.spec 25 Jul 2009 03:45:20 -0000 1.35 @@ -1,7 +1,7 @@ Summary: OpenSource server implementation of the Jabber protocols Name: jabberd Version: 2.2.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://ftp.xiaoka.com/jabberd2/releases/jabberd-2.2.8.tar.bz2 @@ -192,6 +192,9 @@ fi %ghost %{_sysconfdir}/jabberd/server.pem %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Adrian Reber - 2.2.8-2 - updated to 2.2.8 - added patch to fix "router segfaults" (rhbz#497671) From jkeating at fedoraproject.org Sat Jul 25 03:45:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:45:34 +0000 (UTC) Subject: rpms/jabberpy/devel jabberpy.spec,1.3,1.4 Message-ID: <20090725034534.197AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jabberpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19204 Modified Files: jabberpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jabberpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/jabberpy/devel/jabberpy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jabberpy.spec 25 Feb 2009 08:30:13 -0000 1.3 +++ jabberpy.spec 25 Jul 2009 03:45:33 -0000 1.4 @@ -2,7 +2,7 @@ Name: jabberpy Version: 0.5 # Used like this because upstream releases like 0.5-0 -Release: 0.19%{?dist} +Release: 0.20%{?dist} Summary: Python xmlstream and jabber IM protocol libs Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-0.20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-0.19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:45:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:45:47 +0000 (UTC) Subject: rpms/jabbim/devel jabbim.spec,1.31,1.32 Message-ID: <20090725034547.C6F1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jabbim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19357 Modified Files: jabbim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jabbim.spec =================================================================== RCS file: /cvs/pkgs/rpms/jabbim/devel/jabbim.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- jabbim.spec 13 Apr 2009 14:01:03 -0000 1.31 +++ jabbim.spec 25 Jul 2009 03:45:47 -0000 1.32 @@ -2,7 +2,7 @@ %global svndate 20090408 Name: jabbim Version: 0.5 -Release: 0.5.svn%{svndate}%{?dist} +Release: 0.6.svn%{svndate}%{?dist} Summary: Jabber client for mere mortals Group: Applications/Internet @@ -98,6 +98,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-0.6.svn20090408 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Michal Schmidt - 0.5-0.5.svn20090408 - Update to SVN rev. 4103: - bugfixes for filetransfer, uniemoticons, logging From jkeating at fedoraproject.org Sat Jul 25 03:46:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:46:01 +0000 (UTC) Subject: rpms/jack-audio-connection-kit/devel jack-audio-connection-kit.spec, 1.29, 1.30 Message-ID: <20090725034601.CA68911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jack-audio-connection-kit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19537 Modified Files: jack-audio-connection-kit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jack-audio-connection-kit.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack-audio-connection-kit/devel/jack-audio-connection-kit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- jack-audio-connection-kit.spec 21 Jun 2009 11:19:57 -0000 1.29 +++ jack-audio-connection-kit.spec 25 Jul 2009 03:46:01 -0000 1.30 @@ -1,7 +1,7 @@ Summary: The Jack Audio Connection Kit Name: jack-audio-connection-kit Version: 0.116.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 and LGPLv2 Group: System Environment/Daemons Source0: http://www.jackaudio.org/downloads/%{name}-%{version}.tar.gz @@ -166,6 +166,9 @@ exit 0 %{_bindir}/jack_midisine %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.116.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Andy Shevchenko - 0.116.1-5 - create file under /etc/security/limits.d instead of limits.conf hack (#506583) - rename jack-audio-connection-kit.pa to jack.pa in the documentation part From jkeating at fedoraproject.org Sat Jul 25 03:46:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:46:15 +0000 (UTC) Subject: rpms/jack-keyboard/devel jack-keyboard.spec,1.1,1.2 Message-ID: <20090725034615.93EF911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jack-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19667 Modified Files: jack-keyboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jack-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack-keyboard/devel/jack-keyboard.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jack-keyboard.spec 9 May 2009 23:33:38 -0000 1.1 +++ jack-keyboard.spec 25 Jul 2009 03:46:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: jack-keyboard Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Virtual keyboard for JACK MIDI Group: Applications/Multimedia License: BSD @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Orcan Ogetbil - 2.5-2 - Update GenericName From jkeating at fedoraproject.org Sat Jul 25 03:46:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:46:31 +0000 (UTC) Subject: rpms/jack-rack/devel jack-rack.spec,1.4,1.5 Message-ID: <20090725034631.04BA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jack-rack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19818 Modified Files: jack-rack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jack-rack.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack-rack/devel/jack-rack.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jack-rack.spec 25 Feb 2009 08:33:59 -0000 1.4 +++ jack-rack.spec 25 Jul 2009 03:46:30 -0000 1.5 @@ -1,6 +1,6 @@ Name: jack-rack Version: 1.4.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Stereo LADSPA effects rack for the JACK audio API Group: Applications/Multimedia @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:47:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:47:00 +0000 (UTC) Subject: rpms/jack_capture/devel jack_capture.spec,1.3,1.4 Message-ID: <20090725034700.B951A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jack_capture/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20052 Modified Files: jack_capture.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jack_capture.spec =================================================================== RCS file: /cvs/pkgs/rpms/jack_capture/devel/jack_capture.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jack_capture.spec 15 Jul 2009 18:09:11 -0000 1.3 +++ jack_capture.spec 25 Jul 2009 03:47:00 -0000 1.4 @@ -1,6 +1,6 @@ Name: jack_capture Version: 0.9.35 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Record sound files with JACK Group: Applications/Multimedia # As explained in the COPYING file, @@ -76,6 +76,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Orcan Ogetbil - 0.9.35-1 - Update to 0.9.35 From jkeating at fedoraproject.org Sat Jul 25 03:47:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:47:13 +0000 (UTC) Subject: rpms/jadetex/devel jadetex.spec,1.24,1.25 Message-ID: <20090725034713.9228311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jadetex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20180 Modified Files: jadetex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jadetex.spec =================================================================== RCS file: /cvs/pkgs/rpms/jadetex/devel/jadetex.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- jadetex.spec 29 Jun 2009 10:24:00 -0000 1.24 +++ jadetex.spec 25 Jul 2009 03:47:13 -0000 1.25 @@ -1,6 +1,6 @@ Name: jadetex Version: 3.13 -Release: 6%{?dist} +Release: 7%{?dist} Group: Applications/Publishing Summary: TeX macros used by Jade TeX output @@ -96,6 +96,9 @@ exit 0 exit 0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.13-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Ondrej Vasik 3.13-6 - fix requires(to match TeXLive2008 provides) - trigger change to texlive From jkeating at fedoraproject.org Sat Jul 25 03:47:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:47:26 +0000 (UTC) Subject: rpms/jakarta-commons-beanutils/devel jakarta-commons-beanutils.spec, 1.46, 1.47 Message-ID: <20090725034726.ED6E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-beanutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20333 Modified Files: jakarta-commons-beanutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-beanutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-beanutils/devel/jakarta-commons-beanutils.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- jakarta-commons-beanutils.spec 25 Feb 2009 08:35:48 -0000 1.46 +++ jakarta-commons-beanutils.spec 25 Jul 2009 03:47:26 -0000 1.47 @@ -46,7 +46,7 @@ Name: jakarta-commons-beanutils Version: 1.7.0 -Release: 11.3%{?dist} +Release: 12.3%{?dist} Epoch: 0 Summary: Jakarta Commons BeanUtils Package License: ASL 2.0 @@ -280,6 +280,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.7.0-12.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.7.0-11.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:47:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:47:42 +0000 (UTC) Subject: rpms/jakarta-commons-cli/devel jakarta-commons-cli.spec,1.13,1.14 Message-ID: <20090725034742.CB7CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-cli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20493 Modified Files: jakarta-commons-cli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-cli.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-cli/devel/jakarta-commons-cli.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- jakarta-commons-cli.spec 26 Feb 2009 20:12:12 -0000 1.13 +++ jakarta-commons-cli.spec 25 Jul 2009 03:47:42 -0000 1.14 @@ -5,7 +5,7 @@ Name: %{name} Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 0 Summary: Command Line Interface Library for Java License: ASL 2.0 @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Deepak Bhole 0:1.1-4 - Add multi options patch to cvs From jkeating at fedoraproject.org Sat Jul 25 03:47:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:47:57 +0000 (UTC) Subject: rpms/jakarta-commons-codec/devel jakarta-commons-codec.spec, 1.22, 1.23 Message-ID: <20090725034757.DBC8411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-codec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20658 Modified Files: jakarta-commons-codec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-codec.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-codec/devel/jakarta-commons-codec.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- jakarta-commons-codec.spec 25 Feb 2009 08:37:33 -0000 1.22 +++ jakarta-commons-codec.spec 25 Jul 2009 03:47:57 -0000 1.23 @@ -38,7 +38,7 @@ Name: jakarta-commons-codec Version: 1.3 -Release: 10.4%{?dist} +Release: 11.4%{?dist} Summary: Implementations of common encoders and decoders License: ASL 2.0 Group: Development/Libraries/Java @@ -178,6 +178,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.3-11.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.3-10.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:48:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:48:15 +0000 (UTC) Subject: rpms/jakarta-commons-collections/devel jakarta-commons-collections.spec, 1.56, 1.57 Message-ID: <20090725034815.8B9FF11C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-collections/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20832 Modified Files: jakarta-commons-collections.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-collections.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-collections/devel/jakarta-commons-collections.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- jakarta-commons-collections.spec 25 Feb 2009 08:38:30 -0000 1.56 +++ jakarta-commons-collections.spec 25 Jul 2009 03:48:15 -0000 1.57 @@ -44,7 +44,7 @@ Name: jakarta-%{short_name} Version: 3.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 0 Summary: Provides new interfaces, implementations and utilities for Java Collections License: ASL 2.0 @@ -378,6 +378,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:3.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:3.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:48:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:48:30 +0000 (UTC) Subject: rpms/jakarta-commons-compress/devel jakarta-commons-compress.spec, 1.2, 1.3 Message-ID: <20090725034830.EE7E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-compress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21006 Modified Files: jakarta-commons-compress.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-compress.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-compress/devel/jakarta-commons-compress.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jakarta-commons-compress.spec 25 Feb 2009 08:39:28 -0000 1.2 +++ jakarta-commons-compress.spec 25 Jul 2009 03:48:30 -0000 1.3 @@ -4,7 +4,7 @@ Name: jakarta-%{shortname} Version: 0 -Release: 0.2.%{snapshot}svn%{revision}%{?dist} +Release: 0.3.%{snapshot}svn%{revision}%{?dist} Summary: Java API for working with tar, zip and bzip2 files Group: Development/Libraries License: ASL 2.0 @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.3.20081205svn727209 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20081205svn727209 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:48:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:48:49 +0000 (UTC) Subject: rpms/jakarta-commons-daemon/devel jakarta-commons-daemon.spec, 1.24, 1.25 Message-ID: <20090725034849.2AE4711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21220 Modified Files: jakarta-commons-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-daemon/devel/jakarta-commons-daemon.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- jakarta-commons-daemon.spec 3 Mar 2009 14:18:59 -0000 1.24 +++ jakarta-commons-daemon.spec 25 Jul 2009 03:48:49 -0000 1.25 @@ -39,7 +39,7 @@ Name: jakarta-%{short_name} Version: 1.0.1 -Release: 7.8%{?dist} +Release: 8.8%{?dist} Epoch: 1 Summary: Defines API to support an alternative invocation mechanism License: ASL 2.0 @@ -193,6 +193,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0.1-8.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Karsten Hopp 1.0.1-7.8 - ppc needs a similar patch From jkeating at fedoraproject.org Sat Jul 25 03:49:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:49:03 +0000 (UTC) Subject: rpms/jakarta-commons-dbcp/devel jakarta-commons-dbcp.spec, 1.31, 1.32 Message-ID: <20090725034903.EBAFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-dbcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21369 Modified Files: jakarta-commons-dbcp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-dbcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-dbcp/devel/jakarta-commons-dbcp.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- jakarta-commons-dbcp.spec 25 Feb 2009 08:41:20 -0000 1.31 +++ jakarta-commons-dbcp.spec 25 Jul 2009 03:49:03 -0000 1.32 @@ -45,7 +45,7 @@ Name: jakarta-commons-dbcp Version: 1.2.1 -Release: 12.5%{?dist} +Release: 13.5%{?dist} Epoch: 0 Summary: Jakarta Commons DataBase Pooling Package License: ASL 2.0 @@ -349,6 +349,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2.1-13.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.2.1-12.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:49:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:49:17 +0000 (UTC) Subject: rpms/jakarta-commons-digester/devel jakarta-commons-digester.spec, 1.40, 1.41 Message-ID: <20090725034917.1977311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-digester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21568 Modified Files: jakarta-commons-digester.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-digester.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-digester/devel/jakarta-commons-digester.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- jakarta-commons-digester.spec 25 Feb 2009 08:42:16 -0000 1.40 +++ jakarta-commons-digester.spec 25 Jul 2009 03:49:16 -0000 1.41 @@ -48,7 +48,7 @@ Name: jakarta-%{short_name} Version: 1.7 -Release: 8.3%{?dist} +Release: 9.3%{?dist} Epoch: 0 Summary: Jakarta Commons Digester Package License: ASL 2.0 @@ -201,6 +201,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.7-9.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.7-8.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:49:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:49:32 +0000 (UTC) Subject: rpms/jakarta-commons-discovery/devel jakarta-commons-discovery.spec, 1.16, 1.17 Message-ID: <20090725034932.23D0311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-discovery/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21746 Modified Files: jakarta-commons-discovery.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-discovery.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-discovery/devel/jakarta-commons-discovery.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- jakarta-commons-discovery.spec 28 May 2009 11:16:50 -0000 1.16 +++ jakarta-commons-discovery.spec 25 Jul 2009 03:49:31 -0000 1.17 @@ -34,7 +34,7 @@ Summary: Jakarta Commons Discovery Name: jakarta-commons-discovery Version: 0.4 -Release: 4.3%{?dist} +Release: 5.3%{?dist} Epoch: 1 Group: Development/Libraries License: ASL 2.0 @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.4-5.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Alexander Kurtakov 1:0.4-4.3 - Add OSGi manifest. - Drop gcj support. From jkeating at fedoraproject.org Sat Jul 25 03:49:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:49:46 +0000 (UTC) Subject: rpms/jakarta-commons-el/devel jakarta-commons-el.spec,1.44,1.45 Message-ID: <20090725034946.0686511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21944 Modified Files: jakarta-commons-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-el/devel/jakarta-commons-el.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- jakarta-commons-el.spec 27 Apr 2009 15:57:19 -0000 1.44 +++ jakarta-commons-el.spec 25 Jul 2009 03:49:45 -0000 1.45 @@ -39,7 +39,7 @@ Name: jakarta-commons-el Version: 1.0 -Release: 10.5%{?dist} +Release: 11.5%{?dist} Epoch: 0 Summary: The Jakarta Commons Extension Language License: ASL 1.1 @@ -180,6 +180,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0-11.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Milos Jakubicek - 0:1.0-10.5 - Fix FTBFS: added BR: tomcat5-jsp-2.0-api (resolves BZ#497179). From jkeating at fedoraproject.org Sat Jul 25 03:49:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:49:59 +0000 (UTC) Subject: rpms/jakarta-commons-fileupload/devel jakarta-commons-fileupload.spec, 1.26, 1.27 Message-ID: <20090725034959.C254311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-fileupload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22168 Modified Files: jakarta-commons-fileupload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-fileupload.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-fileupload/devel/jakarta-commons-fileupload.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- jakarta-commons-fileupload.spec 25 Feb 2009 08:44:57 -0000 1.26 +++ jakarta-commons-fileupload.spec 25 Jul 2009 03:49:59 -0000 1.27 @@ -37,7 +37,7 @@ Name: jakarta-%{short_name} Version: 1.0 -Release: 8.3%{?dist} +Release: 9.3%{?dist} Summary: This package provides an api to work with html file upload License: ASL 1.1 Group: Development/Libraries/Java @@ -164,6 +164,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.0-9.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:1.0-8.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:50:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:50:13 +0000 (UTC) Subject: rpms/jakarta-commons-httpclient/devel jakarta-commons-httpclient.spec, 1.24, 1.25 Message-ID: <20090725035013.D025711C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-httpclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22375 Modified Files: jakarta-commons-httpclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-httpclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-httpclient/devel/jakarta-commons-httpclient.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- jakarta-commons-httpclient.spec 25 Feb 2009 08:45:52 -0000 1.24 +++ jakarta-commons-httpclient.spec 25 Jul 2009 03:50:13 -0000 1.25 @@ -36,7 +36,7 @@ Name: jakarta-commons-httpclient Version: 3.1 -Release: 0.4%{?dist} +Release: 0.5%{?dist} Epoch: 1 Summary: Jakarta Commons HTTPClient implements the client side of HTTP standards License: ASL 2.0 @@ -233,6 +233,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.1-0.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.1-0.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:50:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:50:28 +0000 (UTC) Subject: rpms/jakarta-commons-io/devel jakarta-commons-io.spec,1.4,1.5 Message-ID: <20090725035028.0CBC711C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-io/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22608 Modified Files: jakarta-commons-io.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-io/devel/jakarta-commons-io.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jakarta-commons-io.spec 25 Feb 2009 08:46:44 -0000 1.4 +++ jakarta-commons-io.spec 25 Jul 2009 03:50:27 -0000 1.5 @@ -40,7 +40,7 @@ Name: jakarta-commons-io Version: 1.3.2 -Release: 2.2%{?dist} +Release: 3.2%{?dist} Epoch: 0 Summary: Utilities to assist with developing IO functionality @@ -206,6 +206,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.3.2-3.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.3.2-2.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:50:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:50:45 +0000 (UTC) Subject: rpms/jakarta-commons-lang/devel jakarta-commons-lang.spec, 1.28, 1.29 Message-ID: <20090725035045.1E07411C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-lang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22878 Modified Files: jakarta-commons-lang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-lang.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-lang/devel/jakarta-commons-lang.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- jakarta-commons-lang.spec 25 Feb 2009 08:47:36 -0000 1.28 +++ jakarta-commons-lang.spec 25 Jul 2009 03:50:44 -0000 1.29 @@ -40,7 +40,7 @@ Name: jakarta-%{short_name} Version: 2.3 -Release: 3.3%{?dist} +Release: 4.3%{?dist} Epoch: 0 Summary: Provides a host of helper utilities for the java.lang API License: ASL 2.0 @@ -253,6 +253,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.3-4.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:2.3-3.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:50:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:50:57 +0000 (UTC) Subject: rpms/jakarta-commons-launcher/devel jakarta-commons-launcher.spec, 1.21, 1.22 Message-ID: <20090725035057.D82CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-launcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23090 Modified Files: jakarta-commons-launcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-launcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-launcher/devel/jakarta-commons-launcher.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- jakarta-commons-launcher.spec 25 Feb 2009 08:48:30 -0000 1.21 +++ jakarta-commons-launcher.spec 25 Jul 2009 03:50:57 -0000 1.22 @@ -37,7 +37,7 @@ Name: jakarta-%{short_name} Version: 1.1 -Release: 3.4%{?dist} +Release: 4.4%{?dist} Epoch: 0 Summary: A cross platform Java application launcher License: ASL 2.0 @@ -180,6 +180,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1-4.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1-3.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:51:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:51:13 +0000 (UTC) Subject: rpms/jakarta-commons-logging/devel jakarta-commons-logging.spec, 1.45, 1.46 Message-ID: <20090725035113.27A5511C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-logging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23312 Modified Files: jakarta-commons-logging.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-logging.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-logging/devel/jakarta-commons-logging.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- jakarta-commons-logging.spec 25 Feb 2009 08:49:24 -0000 1.45 +++ jakarta-commons-logging.spec 25 Jul 2009 03:51:13 -0000 1.46 @@ -38,7 +38,7 @@ Name: jakarta-%{short_name} Version: 1.0.4 -Release: 8.8%{?dist} +Release: 9.8%{?dist} Epoch: 0 Summary: Jakarta Commons Logging Package License: ASL 2.0 @@ -185,6 +185,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0.4-9.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0.4-8.8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:51:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:51:27 +0000 (UTC) Subject: rpms/jakarta-commons-modeler/devel jakarta-commons-modeler.spec, 1.40, 1.41 Message-ID: <20090725035127.36EB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-modeler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23524 Modified Files: jakarta-commons-modeler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-modeler.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-modeler/devel/jakarta-commons-modeler.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- jakarta-commons-modeler.spec 25 Feb 2009 08:50:19 -0000 1.40 +++ jakarta-commons-modeler.spec 25 Jul 2009 03:51:27 -0000 1.41 @@ -38,7 +38,7 @@ Name: jakarta-%{short_name} Epoch: 0 Version: 2.0 -Release: 5.3%{?dist} +Release: 6.3%{?dist} Summary: Model MBeans utilty classes Group: Development/Libraries/Java License: ASL 2.0 @@ -178,6 +178,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.0-6.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:2.0-5.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:51:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:51:43 +0000 (UTC) Subject: rpms/jakarta-commons-net/devel jakarta-commons-net.spec,1.9,1.10 Message-ID: <20090725035143.12D9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23763 Modified Files: jakarta-commons-net.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-net.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-net/devel/jakarta-commons-net.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- jakarta-commons-net.spec 26 Jun 2009 18:35:00 -0000 1.9 +++ jakarta-commons-net.spec 25 Jul 2009 03:51:42 -0000 1.10 @@ -43,7 +43,7 @@ Name: jakarta-commons-net Version: 1.4.1 -Release: 5.4%{?dist} +Release: 6.4%{?dist} Epoch: 0 Summary: Internet protocol suite Java library License: ASL 2.0 @@ -284,6 +284,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.4.1-6.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Jeff Johnston - 0:1.4.1-5.4 - Resolves #507693 - Fix output Manifest file to be OSGi so it works with pdebuild. From jkeating at fedoraproject.org Sat Jul 25 03:51:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:51:59 +0000 (UTC) Subject: rpms/jakarta-commons-pool/devel jakarta-commons-pool.spec, 1.25, 1.26 Message-ID: <20090725035159.3B10E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-pool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24008 Modified Files: jakarta-commons-pool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-pool.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-pool/devel/jakarta-commons-pool.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- jakarta-commons-pool.spec 25 Feb 2009 08:52:08 -0000 1.25 +++ jakarta-commons-pool.spec 25 Jul 2009 03:51:59 -0000 1.26 @@ -45,7 +45,7 @@ Name: jakarta-commons-pool Version: 1.3 -Release: 11.5%{?dist} +Release: 12.5%{?dist} Epoch: 0 Summary: Jakarta Commons Pool Package License: ASL 2.0 @@ -269,6 +269,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.3-12.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.3-11.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:52:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:52:14 +0000 (UTC) Subject: rpms/jakarta-commons-validator/devel jakarta-commons-validator.spec, 1.20, 1.21 Message-ID: <20090725035214.31FE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-commons-validator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24244 Modified Files: jakarta-commons-validator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-commons-validator.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-commons-validator/devel/jakarta-commons-validator.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- jakarta-commons-validator.spec 25 Feb 2009 08:53:05 -0000 1.20 +++ jakarta-commons-validator.spec 25 Jul 2009 03:52:14 -0000 1.21 @@ -41,7 +41,7 @@ Summary: Jakarta Commons Validator Name: jakarta-%{short_name} Version: 1.1.4 -Release: 7.4%{?dist} +Release: 8.4%{?dist} Epoch: 0 License: ASL 2.0 Group: Development/Libraries/Java @@ -214,6 +214,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1.4-8.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1.4-7.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:52:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:52:29 +0000 (UTC) Subject: rpms/jakarta-oro/devel jakarta-oro.spec,1.7,1.8 Message-ID: <20090725035229.21D1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-oro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24485 Modified Files: jakarta-oro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-oro.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-oro/devel/jakarta-oro.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jakarta-oro.spec 26 Jun 2009 18:29:26 -0000 1.7 +++ jakarta-oro.spec 25 Jul 2009 03:52:28 -0000 1.8 @@ -38,7 +38,7 @@ Name: jakarta-oro Version: 2.0.8 -Release: 5.3%{?dist} +Release: 6.3%{?dist} Epoch: 0 Summary: Full regular expressions API License: ASL 1.1 @@ -163,6 +163,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.0.8-6.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Jeff Johnston - 0:2.0.8-5.3 - Add OSGi metadata to Manifest. From jkeating at fedoraproject.org Sat Jul 25 03:52:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:52:42 +0000 (UTC) Subject: rpms/jakarta-taglibs-standard/devel jakarta-taglibs-standard.spec, 1.25, 1.26 Message-ID: <20090725035242.C144311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jakarta-taglibs-standard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24709 Modified Files: jakarta-taglibs-standard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jakarta-taglibs-standard.spec =================================================================== RCS file: /cvs/pkgs/rpms/jakarta-taglibs-standard/devel/jakarta-taglibs-standard.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- jakarta-taglibs-standard.spec 25 Feb 2009 08:54:57 -0000 1.25 +++ jakarta-taglibs-standard.spec 25 Jul 2009 03:52:42 -0000 1.26 @@ -37,7 +37,7 @@ Name: jakarta-taglibs-standard Version: 1.1.1 -Release: 10.2%{?dist} +Release: 11.2%{?dist} Epoch: 0 Summary: An open-source implementation of the JSP Standard Tag Library License: ASL 2.0 @@ -155,6 +155,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1.1-11.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1.1-10.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:52:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:52:56 +0000 (UTC) Subject: rpms/jam/devel jam.spec,1.8,1.9 Message-ID: <20090725035256.C745311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24927 Modified Files: jam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jam.spec =================================================================== RCS file: /cvs/pkgs/rpms/jam/devel/jam.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jam.spec 25 Feb 2009 08:55:53 -0000 1.8 +++ jam.spec 25 Jul 2009 03:52:56 -0000 1.9 @@ -1,6 +1,6 @@ Name: jam Version: 2.5 -Release: 7%{?dist} +Release: 8%{?dist} License: Copyright only Group: Development/Tools Summary: Program construction tool, similar to make @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/mkjambase %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:53:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:53:10 +0000 (UTC) Subject: rpms/jamin/devel jamin.spec,1.1,1.2 Message-ID: <20090725035310.BF2AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jamin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25250 Modified Files: jamin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jamin.spec =================================================================== RCS file: /cvs/pkgs/rpms/jamin/devel/jamin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jamin.spec 8 Apr 2009 05:26:52 -0000 1.1 +++ jamin.spec 25 Jul 2009 03:53:10 -0000 1.2 @@ -1,7 +1,7 @@ Name: jamin Summary: JACK Audio Connection Kit (JACK) Audio Mastering interface Version: 0.95.0 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://jamin.sourceforge.net @@ -100,6 +100,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/mime/packages/%{name}.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.95.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Orcan Ogetbil 0.95.0-5 - Suppress double ./configure (in autogen.sh) - Clean up unnecessary BR's From jkeating at fedoraproject.org Sat Jul 25 03:53:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:53:25 +0000 (UTC) Subject: rpms/japanese-bitmap-fonts/devel japanese-bitmap-fonts.spec, 1.8, 1.9 Message-ID: <20090725035325.1584811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/japanese-bitmap-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25816 Modified Files: japanese-bitmap-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: japanese-bitmap-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/japanese-bitmap-fonts/devel/japanese-bitmap-fonts.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- japanese-bitmap-fonts.spec 19 Jun 2009 09:44:05 -0000 1.8 +++ japanese-bitmap-fonts.spec 25 Jul 2009 03:53:24 -0000 1.9 @@ -15,7 +15,7 @@ Name: %{fontname}-fonts Version: 0.20080710 -Release: 7%{?dist} +Release: 8%{?dist} License: Public Domain and BSD and mplus Group: User Interface/X BuildArch: noarch @@ -339,6 +339,9 @@ rm -rf $RPM_BUILD_ROOT %{cataloguedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20080710-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Akira TAGOH - 0.20080710-6 - Contains the correct fonts from kaname. (#505757) - Correct FAPIcidfmap.ja, cidfmap.ja and CIDFnmap.ja (#499634) From jkeating at fedoraproject.org Sat Jul 25 03:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:53:39 +0000 (UTC) Subject: rpms/jargs/devel jargs.spec,1.1,1.2 Message-ID: <20090725035339.8783111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jargs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26294 Modified Files: jargs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jargs.spec =================================================================== RCS file: /cvs/pkgs/rpms/jargs/devel/jargs.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jargs.spec 20 May 2009 08:57:44 -0000 1.1 +++ jargs.spec 25 Jul 2009 03:53:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: jargs Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Java command line option parsing suite Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Guido Grazioli 1.0-5 - sanitized %%files - fixed Source url again, according to Fedora guidelines From jkeating at fedoraproject.org Sat Jul 25 03:53:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:53:53 +0000 (UTC) Subject: rpms/jasper/devel jasper.spec,1.33,1.34 Message-ID: <20090725035353.E682011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jasper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26537 Modified Files: jasper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jasper.spec =================================================================== RCS file: /cvs/pkgs/rpms/jasper/devel/jasper.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- jasper.spec 18 Jul 2009 18:53:20 -0000 1.33 +++ jasper.spec 25 Jul 2009 03:53:53 -0000 1.34 @@ -7,7 +7,7 @@ Summary: Implementation of the JPEG-2000 Name: jasper Group: System Environment/Libraries Version: 1.900.1 -Release: 11%{?dist} +Release: 12%{?dist} License: JasPer URL: http://www.ece.uvic.ca/~mdadams/jasper/ @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.900.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 1.900.1-11 - FTBFS jasper-1.900.1-10.fc11 (#511743) From jkeating at fedoraproject.org Sat Jul 25 03:54:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:54:08 +0000 (UTC) Subject: rpms/java-1.5.0-gcj/devel java-1.5.0-gcj.spec,1.44,1.45 Message-ID: <20090725035408.574E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/java-1.5.0-gcj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26804 Modified Files: java-1.5.0-gcj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: java-1.5.0-gcj.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.5.0-gcj/devel/java-1.5.0-gcj.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- java-1.5.0-gcj.spec 12 May 2009 13:19:27 -0000 1.44 +++ java-1.5.0-gcj.spec 25 Jul 2009 03:54:08 -0000 1.45 @@ -55,7 +55,7 @@ Name: %{name} Version: %{javaver}.%{buildver} -Release: 28%{?dist} +Release: 29%{?dist} Summary: JPackage runtime compatibility layer for GCJ Group: Development/Languages # The LICENSE file has the classpath exception, but nothing in this package @@ -789,6 +789,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.0.0-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Stepan Kasal 1.5.0.0-28 - another attempt to rebuild, adding a workaround for #500314 From jkeating at fedoraproject.org Sat Jul 25 03:55:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:55:06 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk.spec,1.127,1.128 Message-ID: <20090725035506.EEAAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27472 Modified Files: java-1.6.0-openjdk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: java-1.6.0-openjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk.spec,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- java-1.6.0-openjdk.spec 10 Jul 2009 14:41:02 -0000 1.127 +++ java-1.6.0-openjdk.spec 25 Jul 2009 03:55:06 -0000 1.128 @@ -133,7 +133,7 @@ Name: java-%{javaver}-%{origin} Version: %{javaver}.%{buildver} -Release: 24.%{openjdkver}%{?dist} +Release: 25.%{openjdkver}%{?dist} # java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons, # and this change was brought into RHEL-4. java-1.5.0-ibm packages # also included the epoch in their virtual provides. This created a @@ -964,6 +964,9 @@ exit 0 %{_jvmdir}/%{jredir}/lib/%{archinstall}/IcedTeaPlugin.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.6.0.0-25.b16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Lillian Angel - 1:1.6.0-24.b16 - Added java-1.6.0-openjdk-execvpe.patch. From jkeating at fedoraproject.org Sat Jul 25 03:55:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:55:20 +0000 (UTC) Subject: rpms/java_cup/devel java_cup.spec,1.26,1.27 Message-ID: <20090725035520.B3DD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/java_cup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27645 Modified Files: java_cup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: java_cup.spec =================================================================== RCS file: /cvs/pkgs/rpms/java_cup/devel/java_cup.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- java_cup.spec 25 Feb 2009 09:00:49 -0000 1.26 +++ java_cup.spec 25 Jul 2009 03:55:20 -0000 1.27 @@ -37,7 +37,7 @@ Name: java_cup Version: 0.10k -Release: 2 +Release: 3 Epoch: 1 Summary: Java source interpreter License: BSD and LGPLv2 @@ -160,6 +160,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.10k-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.10k-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:55:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:55:35 +0000 (UTC) Subject: rpms/javacc/devel javacc.spec,1.25,1.26 Message-ID: <20090725035535.4718011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/javacc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27797 Modified Files: javacc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: javacc.spec =================================================================== RCS file: /cvs/pkgs/rpms/javacc/devel/javacc.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- javacc.spec 25 Feb 2009 09:01:47 -0000 1.25 +++ javacc.spec 25 Jul 2009 03:55:35 -0000 1.26 @@ -34,7 +34,7 @@ Name: javacc Version: 4.1 -Release: 0.3%{?dist} +Release: 0.4%{?dist} Epoch: 0 Summary: A parser/scanner generator for java License: BSD @@ -158,6 +158,9 @@ fi %{_datadir}/%{name}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:4.1-0.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:4.1-0.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:55:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:55:50 +0000 (UTC) Subject: rpms/javahelp2/devel javahelp2.spec,1.3,1.4 Message-ID: <20090725035550.0A83D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/javahelp2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27950 Modified Files: javahelp2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: javahelp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/javahelp2/devel/javahelp2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- javahelp2.spec 27 Apr 2009 11:02:18 -0000 1.3 +++ javahelp2.spec 25 Jul 2009 03:55:49 -0000 1.4 @@ -30,7 +30,7 @@ Name: javahelp2 Version: 2.0.05 -Release: 7%{?dist} +Release: 8%{?dist} Summary: JavaHelp is a full-featured, platform-independent, extensible help system License: GPLv2 with exceptions Url: https://javahelp.dev.java.net/ @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.05-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Milos Jakubicek - 2.0.05-7 - Fix FTBFS: added BR: servletapi5. - Fixed wrapper scripts, resolves BZ#479341. From jkeating at fedoraproject.org Sat Jul 25 03:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:56:04 +0000 (UTC) Subject: rpms/javanotes/devel javanotes.spec,1.1,1.2 Message-ID: <20090725035604.E133611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/javanotes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28097 Modified Files: javanotes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: javanotes.spec =================================================================== RCS file: /cvs/pkgs/rpms/javanotes/devel/javanotes.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- javanotes.spec 14 Jul 2009 12:40:58 -0000 1.1 +++ javanotes.spec 25 Jul 2009 03:56:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: javanotes Version: 5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Introduction to Programming Using Java, By David J. Eck Group: Documentation @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Steven Fernandez 5.1-2 - Added version to install directory and dist tag to package name From jkeating at fedoraproject.org Sat Jul 25 03:56:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:56:20 +0000 (UTC) Subject: rpms/javasqlite/devel javasqlite.spec,1.14,1.15 Message-ID: <20090725035620.2734011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/javasqlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28233 Modified Files: javasqlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: javasqlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/javasqlite/devel/javasqlite.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- javasqlite.spec 1 May 2009 07:36:52 -0000 1.14 +++ javasqlite.spec 25 Jul 2009 03:56:20 -0000 1.15 @@ -1,6 +1,6 @@ Name: javasqlite Version: 20090430 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SQLite Java Wrapper/JDBC Driver Group: Development/Libraries @@ -102,6 +102,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090430-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Ville Skytt? - 20090430-1 - Update to 20090430. From jkeating at fedoraproject.org Sat Jul 25 03:56:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:56:35 +0000 (UTC) Subject: rpms/javassist/devel javassist.spec,1.5,1.6 Message-ID: <20090725035635.2787511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/javassist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28401 Modified Files: javassist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: javassist.spec =================================================================== RCS file: /cvs/pkgs/rpms/javassist/devel/javassist.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- javassist.spec 25 Feb 2009 09:04:14 -0000 1.5 +++ javassist.spec 25 Jul 2009 03:56:34 -0000 1.6 @@ -2,7 +2,7 @@ Name: javassist Version: 3.9.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Java Programming Assistant provides simple Java bytecode manipulation Group: Development/Libraries License: MPLv1.1 or LGPLv2+ @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.9.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:56:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:56:49 +0000 (UTC) Subject: rpms/jaxen/devel jaxen.spec,1.5,1.6 Message-ID: <20090725035649.DFB7511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jaxen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28547 Modified Files: jaxen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jaxen.spec =================================================================== RCS file: /cvs/pkgs/rpms/jaxen/devel/jaxen.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jaxen.spec 25 Feb 2009 09:05:09 -0000 1.5 +++ jaxen.spec 25 Jul 2009 03:56:49 -0000 1.6 @@ -44,7 +44,7 @@ Name: jaxen Version: 1.1.1 -Release: 2.1%{?dist} +Release: 3.1%{?dist} Epoch: 0 Summary: An XPath engine written in Java License: BSD @@ -231,6 +231,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1.1-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1.1-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 03:57:01 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:57:01 +0000 (UTC) Subject: rpms/lxpanel/F-10 lxpanel.spec,1.17,1.18 Message-ID: <20090725035701.3AD2A11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28588/F-10 Modified Files: lxpanel.spec Log Message: fix changelog Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-10/lxpanel.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- lxpanel.spec 25 Jul 2009 02:49:41 -0000 1.17 +++ lxpanel.spec 25 Jul 2009 03:57:01 -0000 1.18 @@ -86,18 +86,18 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lxpanel.pc %changelog -* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +* Sat Jul 25 2009 Christoph Wickert - 0.4.1-2 - Patch to fix CPU usage monitor history - Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Tue May 05 2009 Christoph Wickert 0.4.1-1 +* Tue May 05 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 -* Fri Apr 24 2009 Christoph Wickert 0.4.0-1 +* Fri Apr 24 2009 Christoph Wickert - 0.4.0-1 - Update to 0.4.0 final (fixes #496833) -* Sun Mar 22 2009 Christoph Wickert 0.3.999-1 +* Sun Mar 22 2009 Christoph Wickert - 0.3.999-1 - Update to 0.4.0 Beta 2 - Build alsa mixer plugin - BR wireless-tools-devel From cwickert at fedoraproject.org Sat Jul 25 03:57:01 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:57:01 +0000 (UTC) Subject: rpms/lxpanel/F-11 lxpanel.spec,1.20,1.21 Message-ID: <20090725035701.6596A11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28588/F-11 Modified Files: lxpanel.spec Log Message: fix changelog Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/F-11/lxpanel.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- lxpanel.spec 25 Jul 2009 02:44:29 -0000 1.20 +++ lxpanel.spec 25 Jul 2009 03:57:01 -0000 1.21 @@ -86,18 +86,18 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lxpanel.pc %changelog -* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +* Sat Jul 25 2009 Christoph Wickert - 0.4.1-2 - Patch to fix CPU usage monitor history - Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Tue May 05 2009 Christoph Wickert 0.4.1-1 +* Tue May 05 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 -* Fri Apr 24 2009 Christoph Wickert 0.4.0-1 +* Fri Apr 24 2009 Christoph Wickert - 0.4.0-1 - Update to 0.4.0 final (fixes #496833) -* Sun Mar 22 2009 Christoph Wickert 0.3.999-1 +* Sun Mar 22 2009 Christoph Wickert - 0.3.999-1 - Update to 0.4.0 Beta 2 - Build alsa mixer plugin - BR wireless-tools-devel From jkeating at fedoraproject.org Sat Jul 25 03:57:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:57:05 +0000 (UTC) Subject: rpms/jaxen-bootstrap/devel jaxen-bootstrap.spec,1.3,1.4 Message-ID: <20090725035705.70A9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jaxen-bootstrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28746 Modified Files: jaxen-bootstrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jaxen-bootstrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/jaxen-bootstrap/devel/jaxen-bootstrap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jaxen-bootstrap.spec 25 Feb 2009 09:06:02 -0000 1.3 +++ jaxen-bootstrap.spec 25 Jul 2009 03:57:05 -0000 1.4 @@ -33,7 +33,7 @@ Name: %{real}-bootstrap Version: 1.1 -Release: 2.2%{?dist} +Release: 3.2%{?dist} Epoch: 0 Summary: A convenience package for build of dom4j License: BSD @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1-3.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1-2.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 03:57:01 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 03:57:01 +0000 (UTC) Subject: rpms/lxpanel/devel lxpanel.spec,1.22,1.23 Message-ID: <20090725035701.921B511C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/lxpanel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28588/devel Modified Files: lxpanel.spec Log Message: fix changelog Index: lxpanel.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxpanel/devel/lxpanel.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lxpanel.spec 25 Jul 2009 02:34:14 -0000 1.22 +++ lxpanel.spec 25 Jul 2009 03:57:01 -0000 1.23 @@ -86,18 +86,18 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lxpanel.pc %changelog -* Sat Jul 25 2009 Christoph Wickert 0.4.1-2 +* Sat Jul 25 2009 Christoph Wickert - 0.4.1-2 - Patch to fix CPU usage monitor history - Make netstatus plugin prefer nm-connetction-editor over system-config-network - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Tue May 05 2009 Christoph Wickert 0.4.1-1 +* Tue May 05 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 -* Fri Apr 24 2009 Christoph Wickert 0.4.0-1 +* Fri Apr 24 2009 Christoph Wickert - 0.4.0-1 - Update to 0.4.0 final (fixes #496833) -* Sun Mar 22 2009 Christoph Wickert 0.3.999-1 +* Sun Mar 22 2009 Christoph Wickert - 0.3.999-1 - Update to 0.4.0 Beta 2 - Build alsa mixer plugin - BR wireless-tools-devel From jkeating at fedoraproject.org Sat Jul 25 03:57:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:57:20 +0000 (UTC) Subject: rpms/jbrout/devel jbrout.spec,1.8,1.9 Message-ID: <20090725035720.46BB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jbrout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28916 Modified Files: jbrout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jbrout.spec =================================================================== RCS file: /cvs/pkgs/rpms/jbrout/devel/jbrout.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jbrout.spec 14 Jul 2009 21:31:53 -0000 1.8 +++ jbrout.spec 25 Jul 2009 03:57:20 -0000 1.9 @@ -1,6 +1,6 @@ Name: jbrout Version: 0.3.174 -Release: 3.0.20090714svn223.1%{?dist} +Release: 4.0.20090714svn223.1%{?dist} Summary: Photo manager, written in python/pygtk Group: Applications/Multimedia License: GPLv2 @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/jbrout.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.174-4.0.20090714svn223.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Mat?j Cepl 0.3.174-3.0.20090714svn223.1 - Attempt to build a new upstream SVN checkout. Fixes bug 510642 - Remove unneeded files (*.exe, *.c) From jkeating at fedoraproject.org Sat Jul 25 03:57:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:57:34 +0000 (UTC) Subject: rpms/jcalendar/devel jcalendar.spec,1.2,1.3 Message-ID: <20090725035734.D030F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jcalendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29081 Modified Files: jcalendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jcalendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/jcalendar/devel/jcalendar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jcalendar.spec 25 Feb 2009 09:07:50 -0000 1.2 +++ jcalendar.spec 25 Jul 2009 03:57:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: jcalendar Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Java date chooser bean for graphically picking a date Group: Development/Libraries License: LGPLv2+ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:57:49 +0000 (UTC) Subject: rpms/jcip-annotations/devel jcip-annotations.spec,1.2,1.3 Message-ID: <20090725035749.140A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jcip-annotations/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29258 Modified Files: jcip-annotations.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jcip-annotations.spec =================================================================== RCS file: /cvs/pkgs/rpms/jcip-annotations/devel/jcip-annotations.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jcip-annotations.spec 25 Feb 2009 09:08:48 -0000 1.2 +++ jcip-annotations.spec 25 Jul 2009 03:57:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: jcip-annotations Version: 0 -Release: 20060627.4%{?dist} +Release: 20060628.4%{?dist} Summary: Java annotations for multithreaded software Group: Development/Libraries/Java @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-20060628.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-20060627.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:58:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:58:02 +0000 (UTC) Subject: rpms/jcodings/devel jcodings.spec,1.3,1.4 Message-ID: <20090725035802.DA7E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jcodings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29428 Modified Files: jcodings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jcodings.spec =================================================================== RCS file: /cvs/pkgs/rpms/jcodings/devel/jcodings.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jcodings.spec 25 Feb 2009 09:09:50 -0000 1.3 +++ jcodings.spec 25 Jul 2009 03:58:02 -0000 1.4 @@ -2,7 +2,7 @@ Name: jcodings Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Java Libraries for Ruby String Encodings Group: Development/Libraries License: MIT @@ -84,6 +84,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:58:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:58:17 +0000 (UTC) Subject: rpms/jconv/devel jconv.spec,1.1,1.2 Message-ID: <20090725035817.F05C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jconv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29595 Modified Files: jconv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jconv.spec =================================================================== RCS file: /cvs/pkgs/rpms/jconv/devel/jconv.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jconv.spec 20 May 2009 05:53:40 -0000 1.1 +++ jconv.spec 25 Jul 2009 03:58:17 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Jack Convolution Engine Name: jconv Version: 0.8.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.kokkinizita.net/linuxaudio/ @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Orcan Ogetbil - 0.8.1-1 - update version to 0.8.1 - prepare package for Fedora submission (SPEC file from PlanetCCRMA) From jkeating at fedoraproject.org Sat Jul 25 03:58:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:58:33 +0000 (UTC) Subject: rpms/jday/devel jday.spec,1.4,1.5 Message-ID: <20090725035833.E0CC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jday/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29762 Modified Files: jday.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jday.spec =================================================================== RCS file: /cvs/pkgs/rpms/jday/devel/jday.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jday.spec 25 Feb 2009 09:12:37 -0000 1.4 +++ jday.spec 25 Jul 2009 03:58:33 -0000 1.5 @@ -1,6 +1,6 @@ Name: jday Version: 2.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple command to convert calendar dates to julian dates Group: Applications/Engineering License: BSD @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/jday.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:58:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:58:47 +0000 (UTC) Subject: rpms/jdepend/devel jdepend.spec,1.23,1.24 Message-ID: <20090725035847.CEB6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jdepend/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29906 Modified Files: jdepend.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jdepend.spec =================================================================== RCS file: /cvs/pkgs/rpms/jdepend/devel/jdepend.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- jdepend.spec 25 Feb 2009 09:13:34 -0000 1.23 +++ jdepend.spec 25 Jul 2009 03:58:47 -0000 1.24 @@ -36,7 +36,7 @@ Name: jdepend Version: 2.6 -Release: 8.4%{?dist} +Release: 9.4%{?dist} Epoch: 0 Summary: Java Design Quality Metrics License: BSD @@ -157,6 +157,9 @@ fi %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.6-9.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:2.6-8.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:59:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:59:01 +0000 (UTC) Subject: rpms/jdom/devel jdom.spec,1.23,1.24 Message-ID: <20090725035901.A91AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jdom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30061 Modified Files: jdom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jdom.spec =================================================================== RCS file: /cvs/pkgs/rpms/jdom/devel/jdom.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- jdom.spec 25 Feb 2009 09:14:26 -0000 1.23 +++ jdom.spec 25 Jul 2009 03:59:01 -0000 1.24 @@ -36,7 +36,7 @@ Name: jdom Version: 1.0 -Release: 6.5%{?dist} +Release: 7.5%{?dist} Epoch: 0 Summary: Java alternative to DOM and SAX License: BSD @@ -175,6 +175,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0-7.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-6.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:59:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:59:15 +0000 (UTC) Subject: rpms/jed/devel jed.spec,1.21,1.22 Message-ID: <20090725035915.121CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30186 Modified Files: jed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jed.spec =================================================================== RCS file: /cvs/pkgs/rpms/jed/devel/jed.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- jed.spec 25 Feb 2009 09:15:19 -0000 1.21 +++ jed.spec 25 Jul 2009 03:59:14 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Fast, compact editor based on the S-Lang screen library Name: jed Version: 0.99.18 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL+ Group: Applications/Editors Source0: ftp://space.mit.edu/pub/davis/jed/v0.99/jed-0.99-18.tar.bz2 @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/jed %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.18-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.18-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:59:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:59:29 +0000 (UTC) Subject: rpms/jeta/devel jeta.spec,1.3,1.4 Message-ID: <20090725035929.102C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jeta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30333 Modified Files: jeta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jeta.spec =================================================================== RCS file: /cvs/pkgs/rpms/jeta/devel/jeta.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jeta.spec 25 Feb 2009 09:16:10 -0000 1.3 +++ jeta.spec 25 Jul 2009 03:59:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: jeta Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Horde Java SSH module Source0: ftp://ftp.horde.org/pub/%{name}/%{name}-h3-%{version}.tar.gz @@ -93,6 +93,9 @@ rm -rf %{buildroot} %attr(0660,apache,apache) %config %{_sysconfdir}/horde/%{name}/*.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 03:59:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:59:44 +0000 (UTC) Subject: rpms/jetty/devel jetty.spec,1.15,1.16 Message-ID: <20090725035944.35FE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jetty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30483 Modified Files: jetty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jetty.spec =================================================================== RCS file: /cvs/pkgs/rpms/jetty/devel/jetty.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- jetty.spec 21 May 2009 21:10:34 -0000 1.15 +++ jetty.spec 25 Jul 2009 03:59:44 -0000 1.16 @@ -56,7 +56,7 @@ Name: jetty Version: 5.1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Jetty Webserver and Servlet Container Group: Applications/Internet @@ -606,6 +606,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.1.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Jeff Johnston 5.1.15-3 - Do not allow directory listings. From jkeating at fedoraproject.org Sat Jul 25 03:59:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 03:59:58 +0000 (UTC) Subject: rpms/jeuclid/devel jeuclid.spec,1.3,1.4 Message-ID: <20090725035958.CF62611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jeuclid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30611 Modified Files: jeuclid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jeuclid.spec =================================================================== RCS file: /cvs/pkgs/rpms/jeuclid/devel/jeuclid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jeuclid.spec 25 Feb 2009 09:17:53 -0000 1.3 +++ jeuclid.spec 25 Jul 2009 03:59:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: jeuclid Version: 3.1.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: MathML rendering solution Group: Development/Libraries License: ASL 2.0 and SPL @@ -163,6 +163,9 @@ fi %{_bindir}/jeuclid-cli %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:00:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:00:14 +0000 (UTC) Subject: rpms/jflex/devel jflex.spec,1.6,1.7 Message-ID: <20090725040014.D12E111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jflex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30776 Modified Files: jflex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jflex.spec =================================================================== RCS file: /cvs/pkgs/rpms/jflex/devel/jflex.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jflex.spec 25 Feb 2009 09:18:51 -0000 1.6 +++ jflex.spec 25 Jul 2009 04:00:14 -0000 1.7 @@ -33,7 +33,7 @@ Summary: Fast Scanner Generator Name: jflex Version: 1.4.1 -Release: 0.4%{?dist} +Release: 0.5%{?dist} Epoch: 0 License: GPLv2 URL: http://jflex.de/ @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.4.1-0.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.4.1-0.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:00:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:00:29 +0000 (UTC) Subject: rpms/jfreechart/devel jfreechart.spec,1.2,1.3 Message-ID: <20090725040029.3469711C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jfreechart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30909 Modified Files: jfreechart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jfreechart.spec =================================================================== RCS file: /cvs/pkgs/rpms/jfreechart/devel/jfreechart.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jfreechart.spec 25 Feb 2009 09:19:46 -0000 1.2 +++ jfreechart.spec 25 Jul 2009 04:00:28 -0000 1.3 @@ -6,7 +6,7 @@ Name: jfreechart Version: 1.0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Java chart library Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:00:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:00:43 +0000 (UTC) Subject: rpms/jfsutils/devel jfsutils.spec,1.28,1.29 Message-ID: <20090725040043.4BDFE11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jfsutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31035 Modified Files: jfsutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jfsutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/jfsutils/devel/jfsutils.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- jfsutils.spec 15 Jul 2009 12:21:17 -0000 1.28 +++ jfsutils.spec 25 Jul 2009 04:00:43 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Utilities for managing the JFS filesystem Name: jfsutils Version: 1.1.13 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz URL: http://jfs.sourceforge.net/ Group: System Environment/Base @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING NEWS ChangeLog %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Josh Boyer - 1.1.13-7 - Update for e2fsprogs package split-up From jkeating at fedoraproject.org Sat Jul 25 04:00:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:00:56 +0000 (UTC) Subject: rpms/jgoodies-forms/devel jgoodies-forms.spec,1.3,1.4 Message-ID: <20090725040056.B46E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jgoodies-forms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31186 Modified Files: jgoodies-forms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jgoodies-forms.spec =================================================================== RCS file: /cvs/pkgs/rpms/jgoodies-forms/devel/jgoodies-forms.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jgoodies-forms.spec 25 Feb 2009 09:21:34 -0000 1.3 +++ jgoodies-forms.spec 25 Jul 2009 04:00:56 -0000 1.4 @@ -5,7 +5,7 @@ Summary: Framework to lay out and implem URL: http://www.jgoodies.com/freeware/forms/ Group: Development/Libraries Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD BuildRequires: jpackage-utils >= 0:1.6 @@ -90,6 +90,9 @@ ln -s %{name}-%{version} %{name} %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:01:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:01:09 +0000 (UTC) Subject: rpms/jgoodies-looks/devel jgoodies-looks.spec,1.4,1.5 Message-ID: <20090725040109.C7A5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jgoodies-looks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31313 Modified Files: jgoodies-looks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jgoodies-looks.spec =================================================================== RCS file: /cvs/pkgs/rpms/jgoodies-looks/devel/jgoodies-looks.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jgoodies-looks.spec 25 Feb 2009 09:22:27 -0000 1.4 +++ jgoodies-looks.spec 25 Jul 2009 04:01:09 -0000 1.5 @@ -6,7 +6,7 @@ Summary: Free high-fidelity Windows and URL: http://www.jgoodies.com/freeware/looks/ Group: Development/Libraries Version: 2.2.1 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD BuildRequires: jpackage-utils >= 0:1.6 @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/%{name}-demo-%{version}.jar %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:01:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:01:24 +0000 (UTC) Subject: rpms/jgroups/devel jgroups.spec,1.22,1.23 Message-ID: <20090725040124.0ED2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jgroups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31442 Modified Files: jgroups.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jgroups.spec =================================================================== RCS file: /cvs/pkgs/rpms/jgroups/devel/jgroups.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- jgroups.spec 25 Feb 2009 09:23:20 -0000 1.22 +++ jgroups.spec 25 Jul 2009 04:01:23 -0000 1.23 @@ -43,7 +43,7 @@ Name: jgroups Version: 2.2.9.2 -Release: 5.6%{?dist} +Release: 6.6%{?dist} Epoch: 0 Summary: Toolkit for reliable multicast communication. License: LGPLv2+ @@ -226,6 +226,9 @@ fi %doc %{_docdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.2.9.2-6.6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:2.2.9.2-5.6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:01:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:01:38 +0000 (UTC) Subject: rpms/jhead/devel jhead.spec,1.25,1.26 Message-ID: <20090725040138.E81CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jhead/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31583 Modified Files: jhead.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jhead.spec =================================================================== RCS file: /cvs/pkgs/rpms/jhead/devel/jhead.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- jhead.spec 15 Jun 2009 09:45:13 -0000 1.25 +++ jhead.spec 25 Jul 2009 04:01:38 -0000 1.26 @@ -1,6 +1,6 @@ Name: jhead Version: 2.87 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for displaying EXIF data embedded in JPEG images Group: Applications/Multimedia License: Public Domain @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.87-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Adrian Reber - 2.87-1 - updated to 2.87 From jkeating at fedoraproject.org Sat Jul 25 04:01:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:01:53 +0000 (UTC) Subject: rpms/jigdo/devel jigdo.spec,1.10,1.11 Message-ID: <20090725040153.C5B5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jigdo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31713 Modified Files: jigdo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jigdo.spec =================================================================== RCS file: /cvs/pkgs/rpms/jigdo/devel/jigdo.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- jigdo.spec 25 Feb 2009 09:25:05 -0000 1.10 +++ jigdo.spec 25 Jul 2009 04:01:53 -0000 1.11 @@ -1,6 +1,6 @@ Name: jigdo Version: 0.7.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Ease distribution of large files over the Internet Group: Applications/Internet @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man[^3]/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:02:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:02:09 +0000 (UTC) Subject: rpms/jisksp16-1990-fonts/devel jisksp16-1990-fonts.spec,1.4,1.5 Message-ID: <20090725040209.4763211C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jisksp16-1990-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31910 Modified Files: jisksp16-1990-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jisksp16-1990-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/jisksp16-1990-fonts/devel/jisksp16-1990-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jisksp16-1990-fonts.spec 26 Mar 2009 09:29:05 -0000 1.4 +++ jisksp16-1990-fonts.spec 25 Jul 2009 04:02:09 -0000 1.5 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 0.983 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 16x16 JIS X 0212:1990 Bitmap font Group: User Interface/X License: Public Domain @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{catalogue}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.983-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Akira TAGOH - 0.983-4 - Update a spec file a bit. - rebuild to correct autoprovides. (#491965) From jkeating at fedoraproject.org Sat Jul 25 04:02:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:02:24 +0000 (UTC) Subject: rpms/jjack/devel jjack.spec,1.1,1.2 Message-ID: <20090725040224.A573811C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jjack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32327 Modified Files: jjack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jjack.spec =================================================================== RCS file: /cvs/pkgs/rpms/jjack/devel/jjack.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jjack.spec 27 Apr 2009 06:41:39 -0000 1.1 +++ jjack.spec 25 Jul 2009 04:02:24 -0000 1.2 @@ -2,7 +2,7 @@ Name: jjack Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: JACK audio driver for the Java Sound API Group: System Environment/Libraries License: LGPLv2+ @@ -151,6 +151,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Orcan Ogetbil - 0.3-2 - Minor update on the wrapper script From jkeating at fedoraproject.org Sat Jul 25 04:02:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:02:43 +0000 (UTC) Subject: rpms/jlex/devel jlex.spec,1.18,1.19 Message-ID: <20090725040243.D4A5811C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jlex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv330 Modified Files: jlex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jlex.spec =================================================================== RCS file: /cvs/pkgs/rpms/jlex/devel/jlex.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- jlex.spec 25 Feb 2009 09:26:59 -0000 1.18 +++ jlex.spec 25 Jul 2009 04:02:43 -0000 1.19 @@ -36,7 +36,7 @@ Name: jlex Version: 1.2.6 -Release: 7.3%{?dist} +Release: 8.3%{?dist} Epoch: 0 Summary: A Lexical Analyzer Generator for Java License: BSD @@ -136,6 +136,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2.6-8.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.2.6-7.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:03:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:03:00 +0000 (UTC) Subject: rpms/jline/devel jline.spec,1.5,1.6 Message-ID: <20090725040300.3D0E011C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv629 Modified Files: jline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jline.spec =================================================================== RCS file: /cvs/pkgs/rpms/jline/devel/jline.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jline.spec 25 Feb 2009 09:27:55 -0000 1.5 +++ jline.spec 25 Jul 2009 04:03:00 -0000 1.6 @@ -42,7 +42,7 @@ Name: jline Version: 0.9.94 -Release: 0.3%{?dist} +Release: 0.4%{?dist} Epoch: 0 Summary: Java library for reading and editing user input in console applications License: BSD @@ -226,6 +226,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.9.94-0.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:0.9.94-0.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:03:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:03:18 +0000 (UTC) Subject: rpms/jlint/devel jlint.spec,1.14,1.15 Message-ID: <20090725040318.AA15F11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jlint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv802 Modified Files: jlint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jlint.spec =================================================================== RCS file: /cvs/pkgs/rpms/jlint/devel/jlint.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- jlint.spec 25 Feb 2009 09:28:52 -0000 1.14 +++ jlint.spec 25 Jul 2009 04:03:18 -0000 1.15 @@ -1,6 +1,6 @@ Name: jlint Version: 1.23 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Java program checker Group: Development/Tools @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/jlint %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:03:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:03:35 +0000 (UTC) Subject: rpms/jmod/devel jmod.spec,1.1,1.2 Message-ID: <20090725040335.5EAA611C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jmod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6278 Modified Files: jmod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jmod.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmod/devel/jmod.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jmod.spec 10 Apr 2009 03:26:16 -0000 1.1 +++ jmod.spec 25 Jul 2009 04:03:35 -0000 1.2 @@ -3,7 +3,7 @@ Name: jmod Summary: Java Sound MODules Library Group: Development/Libraries Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: https://jmod.dev.java.net/ # The upstream removed the sources tarball from their website. @@ -137,6 +137,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Orcan Ogetbil - 0.9-1 - Initial build for Fedora. SPEC file adapted from SUSE. From jkeating at fedoraproject.org Sat Jul 25 04:03:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:03:51 +0000 (UTC) Subject: rpms/jmol/devel jmol.spec,1.10,1.11 Message-ID: <20090725040351.7D3E411C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9844 Modified Files: jmol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/jmol/devel/jmol.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- jmol.spec 16 Jul 2009 20:59:50 -0000 1.10 +++ jmol.spec 25 Jul 2009 04:03:51 -0000 1.11 @@ -2,7 +2,7 @@ Name: jmol Version: 11.6 -Release: 11.%{svnrel}svn%{?dist} +Release: 12.%{svnrel}svn%{?dist} Summary: An open-source Java viewer for chemical structures in 3D Group: Applications/Engineering License: LGPLv2+ @@ -113,6 +113,9 @@ rm -rf %{buildroot} %doc build/doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.6-12.11223svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 11.6-11.11223svn - Include desktop file in the spec. From jkeating at fedoraproject.org Sat Jul 25 04:04:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:04:06 +0000 (UTC) Subject: rpms/jna/devel jna.spec,1.16,1.17 Message-ID: <20090725040406.27FE811C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jna/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12899 Modified Files: jna.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jna.spec =================================================================== RCS file: /cvs/pkgs/rpms/jna/devel/jna.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- jna.spec 25 Feb 2009 09:30:44 -0000 1.16 +++ jna.spec 25 Jul 2009 04:04:05 -0000 1.17 @@ -1,6 +1,6 @@ Name: jna Version: 3.0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Pure Java access to native libraries Group: Development/Libraries @@ -117,6 +117,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:04:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:04:20 +0000 (UTC) Subject: rpms/jna-posix/devel jna-posix.spec,1.5,1.6 Message-ID: <20090725040420.9CCD611C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jna-posix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15983 Modified Files: jna-posix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jna-posix.spec =================================================================== RCS file: /cvs/pkgs/rpms/jna-posix/devel/jna-posix.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jna-posix.spec 25 Feb 2009 09:31:34 -0000 1.5 +++ jna-posix.spec 25 Jul 2009 04:04:20 -0000 1.6 @@ -1,6 +1,6 @@ Name: jna-posix Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: POSIX APIs for Java Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:04:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:04:34 +0000 (UTC) Subject: rpms/jnettop/devel jnettop.spec,1.2,1.3 Message-ID: <20090725040434.4799D11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jnettop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16587 Modified Files: jnettop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jnettop.spec =================================================================== RCS file: /cvs/pkgs/rpms/jnettop/devel/jnettop.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jnettop.spec 29 Apr 2009 05:42:30 -0000 1.2 +++ jnettop.spec 25 Jul 2009 04:04:34 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Network traffic tracker Name: jnettop Version: 0.13.0 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Internet License: GPLv2+ Source: http://www.kubs.cz/jnettop/dist/jnettop-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING NEWS README README.UIA .jnettop PORTING README.Fedora %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Manuel Wolfshant 0.13.0-5 - Use disttag in release field From jkeating at fedoraproject.org Sat Jul 25 04:04:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:04:48 +0000 (UTC) Subject: rpms/joda-time/devel joda-time.spec,1.8,1.9 Message-ID: <20090725040448.7BADB11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/joda-time/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16735 Modified Files: joda-time.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: joda-time.spec =================================================================== RCS file: /cvs/pkgs/rpms/joda-time/devel/joda-time.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- joda-time.spec 25 Feb 2009 09:32:25 -0000 1.8 +++ joda-time.spec 25 Jul 2009 04:04:48 -0000 1.9 @@ -2,7 +2,7 @@ Name: joda-time Version: 1.6 -Release: 2.%{tzversion}%{?dist} +Release: 3.%{tzversion}%{?dist} Summary: Java date and time API Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-3.tzdata2008i +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-2.tzdata2008i - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:05:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:05:28 +0000 (UTC) Subject: rpms/joe/devel joe.spec,1.42,1.43 Message-ID: <20090725040528.44CD911C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/joe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18041 Modified Files: joe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: joe.spec =================================================================== RCS file: /cvs/pkgs/rpms/joe/devel/joe.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- joe.spec 25 Feb 2009 09:33:15 -0000 1.42 +++ joe.spec 25 Jul 2009 04:05:28 -0000 1.43 @@ -1,7 +1,7 @@ Summary: An easy to use, modeless text editor Name: joe Version: 3.7 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Editors Source: http://downloads.sourceforge.net/joe-editor/joe-%{version}.tar.gz @@ -63,6 +63,9 @@ popd rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:06:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:06:24 +0000 (UTC) Subject: rpms/john/devel john.spec,1.17,1.18 Message-ID: <20090725040624.A981B11C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/john/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32345 Modified Files: john.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: john.spec =================================================================== RCS file: /cvs/pkgs/rpms/john/devel/john.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- john.spec 25 Feb 2009 09:34:11 -0000 1.17 +++ john.spec 25 Jul 2009 04:06:24 -0000 1.18 @@ -1,7 +1,7 @@ Summary: John the Ripper password cracker Name: john Version: 1.7.0.2 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.openwall.com/john License: GPLv2 @@ -87,6 +87,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.0.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:06:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:06:40 +0000 (UTC) Subject: rpms/jokosher/devel jokosher.spec,1.23,1.24 Message-ID: <20090725040640.B544011C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jokosher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6166 Modified Files: jokosher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jokosher.spec =================================================================== RCS file: /cvs/pkgs/rpms/jokosher/devel/jokosher.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- jokosher.spec 4 Jun 2009 20:47:36 -0000 1.23 +++ jokosher.spec 25 Jul 2009 04:06:40 -0000 1.24 @@ -5,7 +5,7 @@ Name: jokosher Version: 1.0 -Release: 0.5.20090604svn%{?dist} +Release: 0.6.20090604svn%{?dist} Summary: A simple and easy-to-use Open Source multi-track editor Group: Applications/Multimedia License: GPLv2+ with exceptions @@ -102,6 +102,9 @@ scrollkeeper-update -q ||: %{_datadir}/omf/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.6.20090604svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Christopher Brown - 1.0-0.5.20090604svn - Update to latest svn - fixes #499813 - Update tarball checkout instructions From jkeating at fedoraproject.org Sat Jul 25 04:06:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:06:57 +0000 (UTC) Subject: rpms/jomolhari-fonts/devel jomolhari-fonts.spec,1.5,1.6 Message-ID: <20090725040657.AC6C911C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jomolhari-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11554 Modified Files: jomolhari-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jomolhari-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/jomolhari-fonts/devel/jomolhari-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jomolhari-fonts.spec 15 Mar 2009 13:26:29 -0000 1.5 +++ jomolhari-fonts.spec 25 Jul 2009 04:06:57 -0000 1.6 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 0.003 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Jomolhari a Bhutanese style font for Tibetan and Dzongkha Group: User Interface/X @@ -47,6 +47,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.003-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Marcin Garski 0.003-7 - Update to new fonts guidelines, thanks to Rajeesh K Nambiar (#477403) From jkeating at fedoraproject.org Sat Jul 25 04:07:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:07:12 +0000 (UTC) Subject: rpms/joni/devel joni.spec,1.12,1.13 Message-ID: <20090725040712.9067611C02BA@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/joni/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17056 Modified Files: joni.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: joni.spec =================================================================== RCS file: /cvs/pkgs/rpms/joni/devel/joni.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- joni.spec 7 Mar 2009 02:05:06 -0000 1.12 +++ joni.spec 25 Jul 2009 04:07:12 -0000 1.13 @@ -1,6 +1,6 @@ Name: joni Version: 1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java regular expression library Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Conrad Meyer - 1.1.3-1 - Bump to 1.1.3. From jkeating at fedoraproject.org Sat Jul 25 04:07:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:07:27 +0000 (UTC) Subject: rpms/jorbis/devel jorbis.spec,1.1,1.2 Message-ID: <20090725040727.B522011C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20747 Modified Files: jorbis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/jorbis/devel/jorbis.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jorbis.spec 1 May 2009 22:23:44 -0000 1.1 +++ jorbis.spec 25 Jul 2009 04:07:27 -0000 1.2 @@ -6,7 +6,7 @@ URL: http://www.jcraft.com/jorbis/index Source0: http://www.jcraft.com/%{name}/%{name}-%{version}.zip Group: System Environment/Libraries Version: 0.0.17 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: ant @@ -180,6 +180,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Orcan Ogetbil - 0.0.17-2 - Fix duplicate files issue From jkeating at fedoraproject.org Sat Jul 25 04:07:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:07:42 +0000 (UTC) Subject: rpms/joystick/devel joystick.spec,1.20,1.21 Message-ID: <20090725040742.6E8D011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/joystick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21993 Modified Files: joystick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: joystick.spec =================================================================== RCS file: /cvs/pkgs/rpms/joystick/devel/joystick.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- joystick.spec 25 Feb 2009 09:37:48 -0000 1.20 +++ joystick.spec 25 Jul 2009 04:07:42 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Utilities for configuring most popular joysticks. Name: joystick Version: 1.2.15 -Release: 23%{?dist} +Release: 24%{?dist} License: GPLv2+ Group: System Environment/Base ExcludeArch: s390 s390x @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.15-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.15-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:07:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:07:57 +0000 (UTC) Subject: rpms/jpackage-utils/devel jpackage-utils.spec,1.48,1.49 Message-ID: <20090725040757.B25B111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpackage-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22139 Modified Files: jpackage-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpackage-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpackage-utils/devel/jpackage-utils.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- jpackage-utils.spec 31 Mar 2009 17:21:22 -0000 1.48 +++ jpackage-utils.spec 25 Jul 2009 04:07:57 -0000 1.49 @@ -34,7 +34,7 @@ Name: jpackage-utils Version: 1.7.5 -Release: 2.7%{?dist} +Release: 3.7%{?dist} Epoch: 0 Summary: JPackage utilities License: BSD @@ -201,6 +201,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.7.5-3.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Deepak Bhole - 0:1.7.5-2.7 - rhbz# 225950. Shortened description, moved it to a README From jkeating at fedoraproject.org Sat Jul 25 04:08:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:08:13 +0000 (UTC) Subject: rpms/jpcap/devel jpcap.spec,1.3,1.4 Message-ID: <20090725040813.4603911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22314 Modified Files: jpcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpcap/devel/jpcap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jpcap.spec 25 Feb 2009 09:39:37 -0000 1.3 +++ jpcap.spec 25 Jul 2009 04:08:13 -0000 1.4 @@ -7,7 +7,7 @@ Name: jpcap Version: 0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A Java library for capturing and sending network packets Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:08:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:08:29 +0000 (UTC) Subject: rpms/jpgalleg/devel jpgalleg.spec,1.4,1.5 Message-ID: <20090725040829.6ADAC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpgalleg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22485 Modified Files: jpgalleg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpgalleg.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpgalleg/devel/jpgalleg.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- jpgalleg.spec 25 Feb 2009 09:40:39 -0000 1.4 +++ jpgalleg.spec 25 Jul 2009 04:08:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: jpgalleg Version: 2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: JPEG library for the Allegro game library Group: System Environment/Libraries License: zlib @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:08:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:08:45 +0000 (UTC) Subject: rpms/jpilot/devel jpilot.spec,1.51,1.52 Message-ID: <20090725040845.D0DD811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpilot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22635 Modified Files: jpilot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpilot.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpilot/devel/jpilot.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- jpilot.spec 30 Mar 2009 13:44:23 -0000 1.51 +++ jpilot.spec 25 Jul 2009 04:08:45 -0000 1.52 @@ -1,7 +1,7 @@ Summary: Jpilot pilot desktop software Name: jpilot Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Productivity URL: http://jpilot.org @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Ismael Olea - 1.6.2-1 - updated to 1.6.2 From jkeating at fedoraproject.org Sat Jul 25 04:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:09:01 +0000 (UTC) Subject: rpms/jpilot-backup/devel jpilot-backup.spec,1.5,1.6 Message-ID: <20090725040901.7321E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpilot-backup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22801 Modified Files: jpilot-backup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpilot-backup.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpilot-backup/devel/jpilot-backup.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jpilot-backup.spec 26 May 2009 13:56:10 -0000 1.5 +++ jpilot-backup.spec 25 Jul 2009 04:09:01 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Enhanced backup plugin for J-Pilot Name: jpilot-backup Version: 0.60 -Release: 4%{dist} +Release: 5%{dist} License: GPLv2+ Group: Applications/Productivity Source: http://www.jlogday.com/code/jpilot-backup/%{name}-%{version}.tar.gz @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/jpilot/plugins/libbackup.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.60-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Patrick C. F. Ernzer 0.60-4 - added a comment as to why I exclude s390 and s390s From jkeating at fedoraproject.org Sat Jul 25 04:09:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:09:16 +0000 (UTC) Subject: rpms/jpoker/devel jpoker.spec,1.5,1.6 Message-ID: <20090725040916.F2DED11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jpoker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22964 Modified Files: jpoker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jpoker.spec =================================================================== RCS file: /cvs/pkgs/rpms/jpoker/devel/jpoker.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- jpoker.spec 25 Feb 2009 09:42:29 -0000 1.5 +++ jpoker.spec 25 Jul 2009 04:09:16 -0000 1.6 @@ -1,6 +1,6 @@ Name: jpoker Version: 1.0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Client for playing online poker in a Web browser Group: Applications/Internet @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:09:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:09:32 +0000 (UTC) Subject: rpms/jrefactory/devel jrefactory.spec,1.18,1.19 Message-ID: <20090725040932.61CE711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jrefactory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23154 Modified Files: jrefactory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jrefactory.spec =================================================================== RCS file: /cvs/pkgs/rpms/jrefactory/devel/jrefactory.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- jrefactory.spec 20 Mar 2009 19:30:38 -0000 1.18 +++ jrefactory.spec 25 Jul 2009 04:09:32 -0000 1.19 @@ -36,7 +36,7 @@ Name: jrefactory Version: 2.8.9 -Release: 8.7%{?dist} +Release: 9.7%{?dist} Epoch: 0 Summary: JRefactory and Pretty Print License: BSD and ASL 1.1 and GPL+ @@ -122,6 +122,9 @@ fi %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:2.8.9-9.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Deepak Bhole - 0:2.8.9-8.7 - Add patch to set source to 1.4 From kyle at fedoraproject.org Sat Jul 25 04:09:34 2009 From: kyle at fedoraproject.org (Kyle McMartin) Date: Sat, 25 Jul 2009 04:09:34 +0000 (UTC) Subject: rpms/kernel/F-11 linux-2.6-btrfs-experimental-branch.patch, 1.3, 1.4 linux-2.6-ext4-prealloc-fixes.patch, 1.3, 1.4 linux-2.6-missing-rfc2465-stats.patch, NONE, 1.1 linux-2.6-v4l-dvb-update.patch, 1.15, 1.16 via-padlock-10-enable-64bit.patch, NONE, 1.1 via-padlock-20-add-x86-dependency.patch, NONE, 1.1 via-padlock-30-fix-might-sleep.patch, NONE, 1.1 via-padlock-40-nano-ecb.patch, NONE, 1.1 via-padlock-50-nano-cbc.patch, NONE, 1.1 via-rng-enable-64bit.patch, NONE, 1.1 agp-set_memory_ucwb.patch, 1.2, 1.3 config-arm, 1.3, 1.4 config-ia64-generic, 1.25, 1.26 config-powerpc-generic, 1.41, 1.42 config-s390x, 1.13, 1.14 config-sparc64-generic, 1.26, 1.27 config-x86-generic, 1.78, 1.79 config-x86_64-generic, 1.78, 1.79 drm-modesetting-radeon.patch, 1.82, 1.83 drm-next.patch, 1.18, 1.19 drm-no-gem-on-i8xx.patch, 1.2, 1.3 drm-nouveau.patch, 1.59, 1.60 git-bluetooth.patch, 1.3, 1.4 kernel.spec, 1.1681, 1.1682 linux-2.6-defaults-pci_no_msi.patch, 1.4, 1.5 linux-2.6-execshield.patch, 1.105, 1.106 linux-2.6-tracehook.patch, 1.9, 1.10 linux-2.6-upstream-reverts.patch, 1.7, 1.8 linux-2.6-utrace.patch, 1.111, 1.112 linux-2.6-v4l-dvb-fixes.patch, 1.15, 1.16 linux-2.6.29-lirc.patch, 1.10, 1.11 alsa-dont-reset-stream-at-each-prepare-callb.patch, 1.1, NONE alsa-hda-add-debugging.patch, 1.1, NONE alsa-hda-dont-reset-BDL-unnecessarily.patch, 1.1, NONE alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch, 1.1, NONE alsa-pcm-always-reset-invalid-position.patch, 1.1, NONE alsa-pcm-fix-delta-calc-at-overlap.patch, 1.1, NONE alsa-pcm-safer-boundary-checks.patch, 1.3, NONE alsa-rewrite-hw_ptr-updaters.patch, 1.1, NONE cpufreq-add-atom-to-p4-clockmod.patch, 1.1, NONE drm-connector-dpms-fix.patch, 1.1, NONE drm-copyback-ioctl-data-to-userspace-regardless-of-retcode.patch, 1.1, NONE drm-dont-frob-i2c.patch, 1.1, NONE drm-edid-ignore-tiny-modes.patch, 1.1, NONE drm-i915-apply-a-big-hammer-to-865-gem-object.patch, 1.1, NONE drm-i915-enable-mchbar.patch, 1.1, NONE drm-i915-fix-tiling-pitch.patch, 1.1, NONE drm-intel-a17-fix.patch, 1.1, NONE drm-intel-debugfs-ringbuffer.patch, 1.1, NONE drm-intel-disable-kms-i8xx.patch, 1.2, NONE drm-intel-gem-use-dma32-on-pae.patch, 1.1, NONE drm-intel-gen3-fb-hack.patch, 1.1, NONE drm-intel-hdmi-edid-fix.patch, 1.1, NONE drm-intel-i8xx-cursors.patch, 1.1, NONE drm-intel-include-965gme-pci-id.patch, 1.1, NONE drm-intel-lying-systems-without-lvds.patch, 1.4, NONE drm-intel-next.patch, 1.8, NONE drm-intel-set-domain-on-fault.patch, 1.1, NONE drm-intel-tiling-transition.patch, 1.1, NONE drm-intel-tv-fix.patch, 1.1, NONE drm-intel-vmalloc.patch, 1.2, NONE drm-modesetting-radeon-fixes.patch, 1.1, NONE drm-pnp-add-resource-range-checker.patch, 1.1, NONE drm-radeon-cs-oops-fix.patch, 1.2, NONE drm-radeon-fix-ring-commit.patch, 1.1, NONE drm-radeon-new-pciids.patch, 1.1, NONE git-bluetooth-fixes.patch, 1.1, NONE increase-MAX_LOCKDEP_ENTRIES.patch, 1.3, NONE iwl3945-add-debugging-for-wrong-command-queue.patch, 1.1, NONE iwl3945-fix-rfkill-sw-and-hw-mishmash.patch, 1.1, NONE iwl3945-release-resources-before-shutting-down.patch, 1.1, NONE linux-2.6-acpi-strict-resources.patch, 1.1, NONE linux-2.6-acpi-video-didl-intel-outputs.patch, 1.3, NONE linux-2.6-add-qcserial.patch, 1.1, NONE linux-2.6-btrfs-unstable-update.patch, 1.2, NONE linux-2.6-cdrom-door-status.patch, 1.3, NONE linux-2.6-defaults-saner-vm-settings.patch, 1.1, NONE linux-2.6-dev-zero-avoid-oom-lockup.patch, 1.1, NONE linux-2.6-dma-debug-fixes.patch, 1.1, NONE linux-2.6-drivers-char-low-latency-removal.patch, 1.2, NONE linux-2.6-dropwatch-protocol.patch, 1.1, NONE linux-2.6-e820-acpi3-bios-workaround.patch, 1.1, NONE linux-2.6-e820-guard-against-pre-acpi3.patch, 1.1, NONE linux-2.6-e820-save-restore-edi-ebp.patch, 1.1, NONE linux-2.6-fiemap-header-install.patch, 1.1, NONE linux-2.6-fs-cifs-fix-port-numbers.patch, 1.1, NONE linux-2.6-hid-apple-mini-keyboard.patch, 1.1, NONE linux-2.6-hwmon-atk0110.patch, 1.2, NONE linux-2.6-input-bcm5974-add-macbook-unibody.patch, 1.1, NONE linux-2.6-input-bcm5974-add-quad-finger.patch, 1.1, NONE linux-2.6-input-bcm5974-new-header-type.patch, 1.1, NONE linux-2.6-input-hid-extra-gamepad.patch, 1.1, NONE linux-2.6-input-wacom-bluetooth.patch, 1.1, NONE linux-2.6-iommu-fixes.patch, 1.4, NONE linux-2.6-ipw2x00-age-scan-results-on-resume.patch, 1.1, NONE linux-2.6-iwl3945-report-killswitch-changes-even-if-the-interface-is-down.patch, 1.1, NONE linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch, 1.1, NONE linux-2.6-iwlagn-fix-hw-rfkill-while-the-interface-is-down.patch, 1.1, NONE linux-2.6-kvm-skip-pit-check.patch, 1.1, NONE linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch, 1.1, NONE linux-2.6-mm-lru-dont-evict-mapped-executable-pages.patch, 1.2, NONE linux-2.6-mm-lru-evict-streaming-io-pages-first.patch, 1.2, NONE linux-2.6-mm-lru-report-vm-flags-in-page-referenced.patch, 1.1, NONE linux-2.6-netdev-ehea-fix-circular-locking.patch, 1.2, NONE linux-2.6-netdev-ehea-fix-page-alignment.patch, 1.1, NONE linux-2.6-netdev-ehea-remove-from-list.patch, 1.1, NONE linux-2.6-netdev-r8169-use-different-family-defaults.patch, 1.1, NONE linux-2.6-nfsd-cred-refcount-fix.patch, 1.1, NONE linux-2.6-nfsd-report-short-writes-fix.patch, 1.1, NONE linux-2.6-nfsd-report-short-writes.patch, 1.1, NONE linux-2.6-parport-quickfix-the-proc-registration-bug.patch, 1.1, NONE linux-2.6-pci-sysfs-remove-id.patch, 1.1, NONE linux-2.6-relatime-by-default.patch, 1.1, NONE linux-2.6-scsi-cpqarray-set-master.patch, 1.1, NONE linux-2.6-serial-add-txen-test-param.patch, 1.1, NONE linux-2.6-shut-up-efifb.patch, 1.1, NONE linux-2.6-sony-laptop-rfkill.patch, 1.3, NONE linux-2.6-usb-remove-low-latency-hack.patch, 1.1, NONE linux-2.6-utrace-ftrace.patch, 1.2, NONE linux-2.6-v4l-dvb-fix-uint16_t-audio-h.patch, 1.1, NONE linux-2.6-v4l-pvrusb2-fixes.patch, 1.1, NONE linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch, 1.1, NONE linux-2.6-x86-delay-tsc-barrier.patch, 1.1, NONE linux-2.6-xen-check-for-nx-support.patch, 1.2, NONE linux-2.6-xen-fix_warning_when_deleting_gendisk.patch, 1.1, NONE linux-2.6.29-alsa-update-quirks.patch, 1.2, NONE linux-2.6.29-xen-disable-gbpages.patch, 1.1, NONE linux-2.6.29.3-boot-vga.patch, 1.1, NONE mac80211-don-t-drop-nullfunc-frames-during-software.patch, 1.1, NONE net-revert-forcedeth-power-down-phy-when-interface-is.patch, 1.2, NONE revert-fix-modules_install-via-nfs.patch, 1.1, NONE squashfs-broken-when-pagesize-greater-than-blocksize.patch, 1.1, NONE via-centaur-merge-32-64-bit-init.patch, 1.1, NONE via-padlock-cryptodev-1-64bit-enable.patch, 1.1, NONE via-padlock-cryptodev-2-64bit-enable.patch, 1.1, NONE via-padlock-fix-might-sleep.patch, 1.1, NONE via-padlock-nano-workarounds-cbc.patch, 1.1, NONE via-padlock-nano-workarounds-ecb.patch, 1.1, NONE via-rng-64-bit-enable.patch, 1.1, NONE Message-ID: <20090725040934.0E79E11C0099@cvs1.fedora.phx.redhat.com> Author: kyle Update of /cvs/pkgs/rpms/kernel/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22901 Modified Files: agp-set_memory_ucwb.patch config-arm config-ia64-generic config-powerpc-generic config-s390x config-sparc64-generic config-x86-generic config-x86_64-generic drm-modesetting-radeon.patch drm-next.patch drm-no-gem-on-i8xx.patch drm-nouveau.patch git-bluetooth.patch kernel.spec linux-2.6-defaults-pci_no_msi.patch linux-2.6-execshield.patch linux-2.6-tracehook.patch linux-2.6-upstream-reverts.patch linux-2.6-utrace.patch linux-2.6-v4l-dvb-fixes.patch linux-2.6.29-lirc.patch Added Files: linux-2.6-btrfs-experimental-branch.patch linux-2.6-ext4-prealloc-fixes.patch linux-2.6-missing-rfc2465-stats.patch linux-2.6-v4l-dvb-update.patch via-padlock-10-enable-64bit.patch via-padlock-20-add-x86-dependency.patch via-padlock-30-fix-might-sleep.patch via-padlock-40-nano-ecb.patch via-padlock-50-nano-cbc.patch via-rng-enable-64bit.patch Removed Files: alsa-dont-reset-stream-at-each-prepare-callb.patch alsa-hda-add-debugging.patch alsa-hda-dont-reset-BDL-unnecessarily.patch alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch alsa-pcm-always-reset-invalid-position.patch alsa-pcm-fix-delta-calc-at-overlap.patch alsa-pcm-safer-boundary-checks.patch alsa-rewrite-hw_ptr-updaters.patch cpufreq-add-atom-to-p4-clockmod.patch drm-connector-dpms-fix.patch drm-copyback-ioctl-data-to-userspace-regardless-of-retcode.patch drm-dont-frob-i2c.patch drm-edid-ignore-tiny-modes.patch drm-i915-apply-a-big-hammer-to-865-gem-object.patch drm-i915-enable-mchbar.patch drm-i915-fix-tiling-pitch.patch drm-intel-a17-fix.patch drm-intel-debugfs-ringbuffer.patch drm-intel-disable-kms-i8xx.patch drm-intel-gem-use-dma32-on-pae.patch drm-intel-gen3-fb-hack.patch drm-intel-hdmi-edid-fix.patch drm-intel-i8xx-cursors.patch drm-intel-include-965gme-pci-id.patch drm-intel-lying-systems-without-lvds.patch drm-intel-next.patch drm-intel-set-domain-on-fault.patch drm-intel-tiling-transition.patch drm-intel-tv-fix.patch drm-intel-vmalloc.patch drm-modesetting-radeon-fixes.patch drm-pnp-add-resource-range-checker.patch drm-radeon-cs-oops-fix.patch drm-radeon-fix-ring-commit.patch drm-radeon-new-pciids.patch git-bluetooth-fixes.patch increase-MAX_LOCKDEP_ENTRIES.patch iwl3945-add-debugging-for-wrong-command-queue.patch iwl3945-fix-rfkill-sw-and-hw-mishmash.patch iwl3945-release-resources-before-shutting-down.patch linux-2.6-acpi-strict-resources.patch linux-2.6-acpi-video-didl-intel-outputs.patch linux-2.6-add-qcserial.patch linux-2.6-btrfs-unstable-update.patch linux-2.6-cdrom-door-status.patch linux-2.6-defaults-saner-vm-settings.patch linux-2.6-dev-zero-avoid-oom-lockup.patch linux-2.6-dma-debug-fixes.patch linux-2.6-drivers-char-low-latency-removal.patch linux-2.6-dropwatch-protocol.patch linux-2.6-e820-acpi3-bios-workaround.patch linux-2.6-e820-guard-against-pre-acpi3.patch linux-2.6-e820-save-restore-edi-ebp.patch linux-2.6-fiemap-header-install.patch linux-2.6-fs-cifs-fix-port-numbers.patch linux-2.6-hid-apple-mini-keyboard.patch linux-2.6-hwmon-atk0110.patch linux-2.6-input-bcm5974-add-macbook-unibody.patch linux-2.6-input-bcm5974-add-quad-finger.patch linux-2.6-input-bcm5974-new-header-type.patch linux-2.6-input-hid-extra-gamepad.patch linux-2.6-input-wacom-bluetooth.patch linux-2.6-iommu-fixes.patch linux-2.6-ipw2x00-age-scan-results-on-resume.patch linux-2.6-iwl3945-report-killswitch-changes-even-if-the-interface-is-down.patch linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch linux-2.6-iwlagn-fix-hw-rfkill-while-the-interface-is-down.patch linux-2.6-kvm-skip-pit-check.patch linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch linux-2.6-mm-lru-dont-evict-mapped-executable-pages.patch linux-2.6-mm-lru-evict-streaming-io-pages-first.patch linux-2.6-mm-lru-report-vm-flags-in-page-referenced.patch linux-2.6-netdev-ehea-fix-circular-locking.patch linux-2.6-netdev-ehea-fix-page-alignment.patch linux-2.6-netdev-ehea-remove-from-list.patch linux-2.6-netdev-r8169-use-different-family-defaults.patch linux-2.6-nfsd-cred-refcount-fix.patch linux-2.6-nfsd-report-short-writes-fix.patch linux-2.6-nfsd-report-short-writes.patch linux-2.6-parport-quickfix-the-proc-registration-bug.patch linux-2.6-pci-sysfs-remove-id.patch linux-2.6-relatime-by-default.patch linux-2.6-scsi-cpqarray-set-master.patch linux-2.6-serial-add-txen-test-param.patch linux-2.6-shut-up-efifb.patch linux-2.6-sony-laptop-rfkill.patch linux-2.6-usb-remove-low-latency-hack.patch linux-2.6-utrace-ftrace.patch linux-2.6-v4l-dvb-fix-uint16_t-audio-h.patch linux-2.6-v4l-pvrusb2-fixes.patch linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch linux-2.6-x86-delay-tsc-barrier.patch linux-2.6-xen-check-for-nx-support.patch linux-2.6-xen-fix_warning_when_deleting_gendisk.patch linux-2.6.29-alsa-update-quirks.patch linux-2.6.29-xen-disable-gbpages.patch linux-2.6.29.3-boot-vga.patch mac80211-don-t-drop-nullfunc-frames-during-software.patch net-revert-forcedeth-power-down-phy-when-interface-is.patch revert-fix-modules_install-via-nfs.patch squashfs-broken-when-pagesize-greater-than-blocksize.patch via-centaur-merge-32-64-bit-init.patch via-padlock-cryptodev-1-64bit-enable.patch via-padlock-cryptodev-2-64bit-enable.patch via-padlock-fix-might-sleep.patch via-padlock-nano-workarounds-cbc.patch via-padlock-nano-workarounds-ecb.patch via-rng-64-bit-enable.patch Log Message: * Fri Jul 24 2009 Kyle McMartin - CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 [i386 x86_64], 4096 elsewhere, as per defconfigs. - Blat patches from other tag, now to rebase fixes, splat in the changelog, and tag it for building. linux-2.6-btrfs-experimental-branch.patch: b/fs/btrfs/Makefile | 2 b/fs/btrfs/btrfs_inode.h | 13 b/fs/btrfs/ctree.c | 588 ++++++++-------- b/fs/btrfs/ctree.h | 27 b/fs/btrfs/delayed-ref.c | 665 ++++++++++++++++++ b/fs/btrfs/delayed-ref.h | 192 +++++ b/fs/btrfs/dir-item.c | 3 b/fs/btrfs/disk-io.c | 79 +- b/fs/btrfs/disk-io.h | 1 b/fs/btrfs/extent-tree.c | 1668 +++++++++++++++-------------------------------- b/fs/btrfs/extent_io.c | 51 - b/fs/btrfs/extent_io.h | 3 b/fs/btrfs/file-item.c | 7 b/fs/btrfs/file.c | 10 b/fs/btrfs/inode-item.c | 3 b/fs/btrfs/inode.c | 85 ++ b/fs/btrfs/locking.c | 21 b/fs/btrfs/transaction.c | 140 +++ b/fs/btrfs/transaction.h | 8 b/fs/btrfs/tree-defrag.c | 2 b/fs/btrfs/tree-log.c | 444 ++++++++++-- b/fs/btrfs/tree-log.h | 17 fs/btrfs/ctree.h | 7 fs/btrfs/extent-tree.c | 2 fs/btrfs/file.c | 14 fs/btrfs/inode.c | 28 26 files changed, 2465 insertions(+), 1615 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.3 -r 1.4 linux-2.6-btrfs-experimental-branch.patchIndex: linux-2.6-btrfs-experimental-branch.patch =================================================================== RCS file: linux-2.6-btrfs-experimental-branch.patch diff -N linux-2.6-btrfs-experimental-branch.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ linux-2.6-btrfs-experimental-branch.patch 25 Jul 2009 04:09:23 -0000 1.4 @@ -0,0 +1,6150 @@ +diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile +index d2cf5a5..9adf5e4 100644 +--- a/fs/btrfs/Makefile ++++ b/fs/btrfs/Makefile +@@ -8,7 +8,7 @@ btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \ + extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \ + extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \ + ref-cache.o export.o tree-log.o acl.o free-space-cache.o zlib.o \ +- compression.o ++ compression.o delayed-ref.o + else + + # Normal Makefile +diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c +index 37f31b5..dbb7241 100644 +--- a/fs/btrfs/ctree.c ++++ b/fs/btrfs/ctree.c +@@ -254,18 +254,13 @@ int btrfs_copy_root(struct btrfs_trans_handle *trans, + * empty_size -- a hint that you plan on doing more cow. This is the size in + * bytes the allocator should try to find free next to the block it returns. + * This is just a hint and may be ignored by the allocator. +- * +- * prealloc_dest -- if you have already reserved a destination for the cow, +- * this uses that block instead of allocating a new one. +- * btrfs_alloc_reserved_extent is used to finish the allocation. + */ + static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, + struct btrfs_root *root, + struct extent_buffer *buf, + struct extent_buffer *parent, int parent_slot, + struct extent_buffer **cow_ret, +- u64 search_start, u64 empty_size, +- u64 prealloc_dest) ++ u64 search_start, u64 empty_size) + { + u64 parent_start; + struct extent_buffer *cow; +@@ -291,26 +286,10 @@ static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, + level = btrfs_header_level(buf); + nritems = btrfs_header_nritems(buf); + +- if (prealloc_dest) { +- struct btrfs_key ins; +- +- ins.objectid = prealloc_dest; +- ins.offset = buf->len; +- ins.type = BTRFS_EXTENT_ITEM_KEY; +- +- ret = btrfs_alloc_reserved_extent(trans, root, parent_start, +- root->root_key.objectid, +- trans->transid, level, &ins); +- BUG_ON(ret); +- cow = btrfs_init_new_buffer(trans, root, prealloc_dest, +- buf->len, level); +- } else { +- cow = btrfs_alloc_free_block(trans, root, buf->len, +- parent_start, +- root->root_key.objectid, +- trans->transid, level, +- search_start, empty_size); +- } ++ cow = btrfs_alloc_free_block(trans, root, buf->len, ++ parent_start, root->root_key.objectid, ++ trans->transid, level, ++ search_start, empty_size); + if (IS_ERR(cow)) + return PTR_ERR(cow); + +@@ -413,7 +392,7 @@ static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, + noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, + struct btrfs_root *root, struct extent_buffer *buf, + struct extent_buffer *parent, int parent_slot, +- struct extent_buffer **cow_ret, u64 prealloc_dest) ++ struct extent_buffer **cow_ret) + { + u64 search_start; + int ret; +@@ -436,7 +415,6 @@ noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, + btrfs_header_owner(buf) == root->root_key.objectid && + !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) { + *cow_ret = buf; +- WARN_ON(prealloc_dest); + return 0; + } + +@@ -447,8 +425,7 @@ noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, + btrfs_set_lock_blocking(buf); + + ret = __btrfs_cow_block(trans, root, buf, parent, +- parent_slot, cow_ret, search_start, 0, +- prealloc_dest); ++ parent_slot, cow_ret, search_start, 0); + return ret; + } + +@@ -617,7 +594,7 @@ int btrfs_realloc_node(struct btrfs_trans_handle *trans, + err = __btrfs_cow_block(trans, root, cur, parent, i, + &cur, search_start, + min(16 * blocksize, +- (end_slot - i) * blocksize), 0); ++ (end_slot - i) * blocksize)); + if (err) { + btrfs_tree_unlock(cur); + free_extent_buffer(cur); +@@ -937,7 +914,7 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, + BUG_ON(!child); + btrfs_tree_lock(child); + btrfs_set_lock_blocking(child); +- ret = btrfs_cow_block(trans, root, child, mid, 0, &child, 0); ++ ret = btrfs_cow_block(trans, root, child, mid, 0, &child); + BUG_ON(ret); + + spin_lock(&root->node_lock); +@@ -945,6 +922,7 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, + spin_unlock(&root->node_lock); + + ret = btrfs_update_extent_ref(trans, root, child->start, ++ child->len, + mid->start, child->start, + root->root_key.objectid, + trans->transid, level - 1); +@@ -971,6 +949,10 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, + BTRFS_NODEPTRS_PER_BLOCK(root) / 4) + return 0; + ++ if (trans->transaction->delayed_refs.flushing && ++ btrfs_header_nritems(mid) > 2) ++ return 0; ++ + if (btrfs_header_nritems(mid) < 2) + err_on_enospc = 1; + +@@ -979,7 +961,7 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, + btrfs_tree_lock(left); + btrfs_set_lock_blocking(left); + wret = btrfs_cow_block(trans, root, left, +- parent, pslot - 1, &left, 0); ++ parent, pslot - 1, &left); + if (wret) { + ret = wret; + goto enospc; +@@ -990,7 +972,7 @@ static noinline int balance_level(struct btrfs_trans_handle *trans, + btrfs_tree_lock(right); + btrfs_set_lock_blocking(right); + wret = btrfs_cow_block(trans, root, right, +- parent, pslot + 1, &right, 0); ++ parent, pslot + 1, &right); + if (wret) { + ret = wret; + goto enospc; +@@ -1171,7 +1153,7 @@ static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, + wret = 1; + } else { + ret = btrfs_cow_block(trans, root, left, parent, +- pslot - 1, &left, 0); ++ pslot - 1, &left); + if (ret) + wret = 1; + else { +@@ -1222,7 +1204,7 @@ static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, + } else { + ret = btrfs_cow_block(trans, root, right, + parent, pslot + 1, +- &right, 0); ++ &right); + if (ret) + wret = 1; + else { +@@ -1492,7 +1474,6 @@ int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root + u8 lowest_level = 0; + u64 blocknr; + u64 gen; +- struct btrfs_key prealloc_block; + + lowest_level = p->lowest_level; + WARN_ON(lowest_level && ins_len > 0); +@@ -1501,8 +1482,6 @@ int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root + if (ins_len < 0) + lowest_unlock = 2; + +- prealloc_block.objectid = 0; +- + again: + if (p->skip_locking) + b = btrfs_root_node(root); +@@ -1529,44 +1508,11 @@ again: + !btrfs_header_flag(b, BTRFS_HEADER_FLAG_WRITTEN)) { + goto cow_done; + } +- +- /* ok, we have to cow, is our old prealloc the right +- * size? +- */ [...5757 lines suppressed...] ++ goto end_no_trans; + + start_log_trans(trans, root); +- sb = dentry->d_inode->i_sb; +- while (1) { +- ret = __btrfs_log_inode(trans, root, dentry->d_inode, +- inode_only); +- BUG_ON(ret); +- inode_only = LOG_INODE_EXISTS; + +- dentry = dentry->d_parent; +- if (!dentry || !dentry->d_inode || sb != dentry->d_inode->i_sb) ++ ret = btrfs_log_inode(trans, root, inode, inode_only); ++ BUG_ON(ret); ++ ++ /* ++ * for regular files, if its inode is already on disk, we don't ++ * have to worry about the parents at all. This is because ++ * we can use the last_unlink_trans field to record renames ++ * and other fun in this file. ++ */ ++ if (S_ISREG(inode->i_mode) && ++ BTRFS_I(inode)->generation <= last_committed && ++ BTRFS_I(inode)->last_unlink_trans <= last_committed) ++ goto no_parent; ++ ++ inode_only = LOG_INODE_EXISTS; ++ while (1) { ++ if (!parent || !parent->d_inode || sb != parent->d_inode->i_sb) + break; + +- if (BTRFS_I(dentry->d_inode)->generation <= +- root->fs_info->last_trans_committed) ++ inode = parent->d_inode; ++ if (BTRFS_I(inode)->generation > ++ root->fs_info->last_trans_committed) { ++ ret = btrfs_log_inode(trans, root, inode, inode_only); ++ BUG_ON(ret); ++ } ++ if (parent == sb->s_root) + break; ++ ++ parent = parent->d_parent; + } +- end_log_trans(root); +- return 0; ++no_parent: ++ ret = 0; ++ btrfs_end_log_trans(root); ++end_no_trans: ++ return ret; + } + + /* +@@ -2760,12 +2959,8 @@ int btrfs_log_dentry(struct btrfs_trans_handle *trans, + int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, + struct btrfs_root *root, struct dentry *dentry) + { +- u64 gen; +- gen = root->fs_info->last_trans_new_blockgroup; +- if (gen > root->fs_info->last_trans_committed) +- return 1; +- else +- return btrfs_log_dentry(trans, root, dentry); ++ return btrfs_log_inode_parent(trans, root, dentry->d_inode, ++ dentry->d_parent, 0); + } + + /* +@@ -2884,3 +3079,94 @@ again: + kfree(log_root_tree); + return 0; + } ++ ++/* ++ * there are some corner cases where we want to force a full ++ * commit instead of allowing a directory to be logged. ++ * ++ * They revolve around files there were unlinked from the directory, and ++ * this function updates the parent directory so that a full commit is ++ * properly done if it is fsync'd later after the unlinks are done. ++ */ ++void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, ++ struct inode *dir, struct inode *inode, ++ int for_rename) ++{ ++ /* ++ * when we're logging a file, if it hasn't been renamed ++ * or unlinked, and its inode is fully committed on disk, ++ * we don't have to worry about walking up the directory chain ++ * to log its parents. ++ * ++ * So, we use the last_unlink_trans field to put this transid ++ * into the file. When the file is logged we check it and ++ * don't log the parents if the file is fully on disk. ++ */ ++ if (S_ISREG(inode->i_mode)) ++ BTRFS_I(inode)->last_unlink_trans = trans->transid; ++ ++ /* ++ * if this directory was already logged any new ++ * names for this file/dir will get recorded ++ */ ++ smp_mb(); ++ if (BTRFS_I(dir)->logged_trans == trans->transid) ++ return; ++ ++ /* ++ * if the inode we're about to unlink was logged, ++ * the log will be properly updated for any new names ++ */ ++ if (BTRFS_I(inode)->logged_trans == trans->transid) ++ return; ++ ++ /* ++ * when renaming files across directories, if the directory ++ * there we're unlinking from gets fsync'd later on, there's ++ * no way to find the destination directory later and fsync it ++ * properly. So, we have to be conservative and force commits ++ * so the new name gets discovered. ++ */ ++ if (for_rename) ++ goto record; ++ ++ /* we can safely do the unlink without any special recording */ ++ return; ++ ++record: ++ BTRFS_I(dir)->last_unlink_trans = trans->transid; ++} ++ ++/* ++ * Call this after adding a new name for a file and it will properly ++ * update the log to reflect the new name. ++ * ++ * It will return zero if all goes well, and it will return 1 if a ++ * full transaction commit is required. ++ */ ++int btrfs_log_new_name(struct btrfs_trans_handle *trans, ++ struct inode *inode, struct inode *old_dir, ++ struct dentry *parent) ++{ ++ struct btrfs_root * root = BTRFS_I(inode)->root; ++ ++ /* ++ * this will force the logging code to walk the dentry chain ++ * up for the file ++ */ ++ if (S_ISREG(inode->i_mode)) ++ BTRFS_I(inode)->last_unlink_trans = trans->transid; ++ ++ /* ++ * if this inode hasn't been logged and directory we're renaming it ++ * from hasn't been logged, we don't need to log it ++ */ ++ if (BTRFS_I(inode)->logged_trans <= ++ root->fs_info->last_trans_committed && ++ (!old_dir || BTRFS_I(old_dir)->logged_trans <= ++ root->fs_info->last_trans_committed)) ++ return 0; ++ ++ return btrfs_log_inode_parent(trans, root, inode, parent, 1); ++} ++ +diff --git a/fs/btrfs/tree-log.h b/fs/btrfs/tree-log.h +index b9409b3..d09c760 100644 +--- a/fs/btrfs/tree-log.h ++++ b/fs/btrfs/tree-log.h +@@ -22,14 +22,9 @@ + int btrfs_sync_log(struct btrfs_trans_handle *trans, + struct btrfs_root *root); + int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root); +-int btrfs_log_dentry(struct btrfs_trans_handle *trans, +- struct btrfs_root *root, struct dentry *dentry); + int btrfs_recover_log_trees(struct btrfs_root *tree_root); + int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans, + struct btrfs_root *root, struct dentry *dentry); +-int btrfs_log_inode(struct btrfs_trans_handle *trans, +- struct btrfs_root *root, struct inode *inode, +- int inode_only); + int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans, + struct btrfs_root *root, + const char *name, int name_len, +@@ -38,4 +33,16 @@ int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans, + struct btrfs_root *root, + const char *name, int name_len, + struct inode *inode, u64 dirid); ++int btrfs_join_running_log_trans(struct btrfs_root *root); ++int btrfs_end_log_trans(struct btrfs_root *root); ++int btrfs_pin_log_trans(struct btrfs_root *root); ++int btrfs_log_inode_parent(struct btrfs_trans_handle *trans, ++ struct btrfs_root *root, struct inode *inode, ++ struct dentry *parent, int exists_only); ++void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans, ++ struct inode *dir, struct inode *inode, ++ int for_rename); ++int btrfs_log_new_name(struct btrfs_trans_handle *trans, ++ struct inode *inode, struct inode *old_dir, ++ struct dentry *parent); + #endif linux-2.6-ext4-prealloc-fixes.patch: inode.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) Index: linux-2.6-ext4-prealloc-fixes.patch =================================================================== RCS file: linux-2.6-ext4-prealloc-fixes.patch diff -N linux-2.6-ext4-prealloc-fixes.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ linux-2.6-ext4-prealloc-fixes.patch 25 Jul 2009 04:09:25 -0000 1.4 @@ -0,0 +1,47 @@ +We need to mark the buffer_head mapping prealloc space +as new during write_begin. Otherwise we don't zero out the +page cache content properly for a partial write. This will +cause file corruption with preallocation. + +Also use block number -1 as the fake block number so that +unmap_underlying_metadata doesn't drop wrong buffer_head + +Signed-off-by: Aneesh Kumar K.V + +Block number '0' should not be used as the fake block number for +the delayed new buffer. This will result in vfs calling umap_underlying_metadata for +block number '0'. So use -1 instead. + +Signed-off-by: Aneesh Kumar K.V + +--- + fs/ext4/inode.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +Index: linux-2.6.29.noarch/fs/ext4/inode.c +=================================================================== +--- linux-2.6.29.noarch.orig/fs/ext4/inode.c ++++ linux-2.6.29.noarch/fs/ext4/inode.c +@@ -2318,11 +2318,21 @@ static int ext4_da_get_block_prep(struct + /* not enough space to reserve */ + return ret; + +- map_bh(bh_result, inode->i_sb, 0); ++ map_bh(bh_result, inode->i_sb, -1); + set_buffer_new(bh_result); + set_buffer_delay(bh_result); + } else if (ret > 0) { + bh_result->b_size = (ret << inode->i_blkbits); ++ /* ++ * With sub-block writes into unwritten extents ++ * we also need to mark the buffer as new so that ++ * the unwritten parts of the buffer gets correctly zeroed. ++ */ ++ if (buffer_unwritten(bh_result)) { ++ bh_result->b_bdev = inode->i_sb->s_bdev; ++ set_buffer_new(bh_result); ++ bh_result->b_blocknr = -1; ++ } + ret = 0; + } + linux-2.6-missing-rfc2465-stats.patch: include/linux/snmp.h | 10 ++++++++-- include/net/ip.h | 3 +++ include/net/ipv6.h | 15 ++++++++++++++- include/net/snmp.h | 19 ++++++++++++++++++- net/ipv4/ip_input.c | 13 ++++++++----- net/ipv4/ip_output.c | 14 +++++++------- net/ipv4/proc.c | 10 ++++++++-- net/ipv6/ip6_input.c | 7 ++++--- net/ipv6/ip6_output.c | 9 +++++---- net/ipv6/mcast.c | 19 ++++++++++++------- net/ipv6/ndisc.c | 4 ++-- net/ipv6/proc.c | 10 ++++++++-- net/ipv6/raw.c | 2 +- 13 files changed, 98 insertions(+), 37 deletions(-) --- NEW FILE linux-2.6-missing-rfc2465-stats.patch --- diff -up linux-2.6.29.noarch/include/linux/snmp.h.orig linux-2.6.29.noarch/include/linux/snmp.h --- linux-2.6.29.noarch/include/linux/snmp.h.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/include/linux/snmp.h 2009-04-27 10:15:53.000000000 -0400 @@ -18,7 +18,7 @@ enum { IPSTATS_MIB_NUM = 0, - IPSTATS_MIB_INRECEIVES, /* InReceives */ + IPSTATS_MIB_INPKTS, /* InReceives */ IPSTATS_MIB_INHDRERRORS, /* InHdrErrors */ IPSTATS_MIB_INTOOBIGERRORS, /* InTooBigErrors */ IPSTATS_MIB_INNOROUTES, /* InNoRoutes */ @@ -28,7 +28,7 @@ enum IPSTATS_MIB_INDISCARDS, /* InDiscards */ IPSTATS_MIB_INDELIVERS, /* InDelivers */ IPSTATS_MIB_OUTFORWDATAGRAMS, /* OutForwDatagrams */ - IPSTATS_MIB_OUTREQUESTS, /* OutRequests */ + IPSTATS_MIB_OUTPKTS, /* OutRequests */ IPSTATS_MIB_OUTDISCARDS, /* OutDiscards */ IPSTATS_MIB_OUTNOROUTES, /* OutNoRoutes */ IPSTATS_MIB_REASMTIMEOUT, /* ReasmTimeout */ @@ -42,6 +42,12 @@ enum IPSTATS_MIB_OUTMCASTPKTS, /* OutMcastPkts */ IPSTATS_MIB_INBCASTPKTS, /* InBcastPkts */ IPSTATS_MIB_OUTBCASTPKTS, /* OutBcastPkts */ + IPSTATS_MIB_INOCTETS, /* InOctets */ + IPSTATS_MIB_OUTOCTETS, /* OutOctets */ + IPSTATS_MIB_INMCASTOCTETS, /* InMcastOctets */ + IPSTATS_MIB_OUTMCASTOCTETS, /* OutMcastOctets */ + IPSTATS_MIB_INBCASTOCTETS, /* InBcastOctets */ + IPSTATS_MIB_OUTBCASTOCTETS, /* OutBcastOctets */ __IPSTATS_MIB_MAX }; diff -up linux-2.6.29.noarch/include/net/ip.h.orig linux-2.6.29.noarch/include/net/ip.h --- linux-2.6.29.noarch/include/net/ip.h.orig 2009-04-27 09:33:56.000000000 -0400 +++ linux-2.6.29.noarch/include/net/ip.h 2009-04-27 10:15:53.000000000 -0400 @@ -168,7 +168,10 @@ struct ipv4_config extern struct ipv4_config ipv4_config; #define IP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.ip_statistics, field) #define IP_INC_STATS_BH(net, field) SNMP_INC_STATS_BH((net)->mib.ip_statistics, field) +#define IP_ADD_STATS(net, field, val) SNMP_ADD_STATS((net)->mib.ip_statistics, field, val) #define IP_ADD_STATS_BH(net, field, val) SNMP_ADD_STATS_BH((net)->mib.ip_statistics, field, val) +#define IP_UPD_PO_STATS(net, field, val) SNMP_UPD_PO_STATS((net)->mib.ip_statistics, field, val) +#define IP_UPD_PO_STATS_BH(net, field, val) SNMP_UPD_PO_STATS_BH((net)->mib.ip_statistics, field, val) #define NET_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.net_statistics, field) #define NET_INC_STATS_BH(net, field) SNMP_INC_STATS_BH((net)->mib.net_statistics, field) #define NET_INC_STATS_USER(net, field) SNMP_INC_STATS_USER((net)->mib.net_statistics, field) diff -up linux-2.6.29.noarch/include/net/ipv6.h.orig linux-2.6.29.noarch/include/net/ipv6.h --- linux-2.6.29.noarch/include/net/ipv6.h.orig 2009-04-27 09:33:56.000000000 -0400 +++ linux-2.6.29.noarch/include/net/ipv6.h 2009-04-27 10:15:53.000000000 -0400 @@ -126,15 +126,28 @@ extern struct ctl_path net_ipv6_ctl_path SNMP_ADD_STATS##modifier((net)->mib.statname##_statistics, (field), (val));\ }) +#define _DEVUPD(net, statname, modifier, idev, field, val) \ +({ \ + struct inet6_dev *_idev = (idev); \ + if (likely(_idev != NULL)) \ + SNMP_UPD_PO_STATS##modifier((_idev)->stats.statname, field, (val)); \ + SNMP_UPD_PO_STATS##modifier((net)->mib.statname##_statistics, field, (val));\ +}) + /* MIBs */ #define IP6_INC_STATS(net, idev,field) \ _DEVINC(net, ipv6, , idev, field) #define IP6_INC_STATS_BH(net, idev,field) \ _DEVINC(net, ipv6, _BH, idev, field) +#define IP6_ADD_STATS(net, idev,field,val) \ + _DEVADD(net, ipv6, , idev, field, val) #define IP6_ADD_STATS_BH(net, idev,field,val) \ _DEVADD(net, ipv6, _BH, idev, field, val) - +#define IP6_UPD_PO_STATS(net, idev,field,val) \ + _DEVUPD(net, ipv6, , idev, field, val) +#define IP6_UPD_PO_STATS_BH(net, idev,field,val) \ + _DEVUPD(net, ipv6, _BH, idev, field, val) #define ICMP6_INC_STATS(net, idev, field) \ _DEVINC(net, icmpv6, , idev, field) #define ICMP6_INC_STATS_BH(net, idev, field) \ diff -up linux-2.6.29.noarch/include/net/snmp.h.orig linux-2.6.29.noarch/include/net/snmp.h --- linux-2.6.29.noarch/include/net/snmp.h.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/include/net/snmp.h 2009-04-27 10:15:53.000000000 -0400 @@ -153,6 +153,11 @@ struct linux_xfrm_mib { per_cpu_ptr(mib[!in_softirq()], get_cpu())->mibs[field]--; \ put_cpu(); \ } while (0) +#define SNMP_ADD_STATS(mib, field, addend) \ + do { \ + per_cpu_ptr(mib[!in_softirq()], get_cpu())->mibs[field] += addend; \ + put_cpu(); \ + } while (0) #define SNMP_ADD_STATS_BH(mib, field, addend) \ (per_cpu_ptr(mib[0], raw_smp_processor_id())->mibs[field] += addend) #define SNMP_ADD_STATS_USER(mib, field, addend) \ @@ -160,5 +165,17 @@ struct linux_xfrm_mib { per_cpu_ptr(mib[1], get_cpu())->mibs[field] += addend; \ put_cpu(); \ } while (0) - +#define SNMP_UPD_PO_STATS(mib, basefield, addend) \ + do { \ + __typeof__(mib[0]) ptr = per_cpu_ptr(mib[!in_softirq()], get_cpu());\ + ptr->mibs[basefield##PKTS]++; \ + ptr->mibs[basefield##OCTETS] += addend;\ + put_cpu(); \ + } while (0) +#define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \ + do { \ + __typeof__(mib[0]) ptr = per_cpu_ptr(mib[!in_softirq()], raw_smp_processor_id());\ + ptr->mibs[basefield##PKTS]++; \ + ptr->mibs[basefield##OCTETS] += addend;\ + } while (0) #endif diff -up linux-2.6.29.noarch/net/ipv4/ip_input.c.orig linux-2.6.29.noarch/net/ipv4/ip_input.c --- linux-2.6.29.noarch/net/ipv4/ip_input.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv4/ip_input.c 2009-04-27 10:15:53.000000000 -0400 @@ -358,10 +358,12 @@ static int ip_rcv_finish(struct sk_buff goto drop; rt = skb->rtable; - if (rt->rt_type == RTN_MULTICAST) - IP_INC_STATS_BH(dev_net(rt->u.dst.dev), IPSTATS_MIB_INMCASTPKTS); - else if (rt->rt_type == RTN_BROADCAST) - IP_INC_STATS_BH(dev_net(rt->u.dst.dev), IPSTATS_MIB_INBCASTPKTS); + if (rt->rt_type == RTN_MULTICAST) { + IP_UPD_PO_STATS_BH(dev_net(rt->u.dst.dev), IPSTATS_MIB_INMCAST, + skb->len); + } else if (rt->rt_type == RTN_BROADCAST) + IP_UPD_PO_STATS_BH(dev_net(rt->u.dst.dev), IPSTATS_MIB_INBCAST, + skb->len); return dst_input(skb); @@ -384,7 +386,8 @@ int ip_rcv(struct sk_buff *skb, struct n if (skb->pkt_type == PACKET_OTHERHOST) goto drop; - IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INRECEIVES); + + IP_UPD_PO_STATS_BH(dev_net(dev), IPSTATS_MIB_IN, skb->len); if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) { IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS); diff -up linux-2.6.29.noarch/net/ipv4/ip_output.c.orig linux-2.6.29.noarch/net/ipv4/ip_output.c --- linux-2.6.29.noarch/net/ipv4/ip_output.c.orig 2009-04-27 09:33:59.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv4/ip_output.c 2009-04-27 10:15:53.000000000 -0400 @@ -181,10 +181,10 @@ static inline int ip_finish_output2(stru struct net_device *dev = dst->dev; unsigned int hh_len = LL_RESERVED_SPACE(dev); - if (rt->rt_type == RTN_MULTICAST) - IP_INC_STATS(dev_net(dev), IPSTATS_MIB_OUTMCASTPKTS); - else if (rt->rt_type == RTN_BROADCAST) - IP_INC_STATS(dev_net(dev), IPSTATS_MIB_OUTBCASTPKTS); + if (rt->rt_type == RTN_MULTICAST) { + IP_UPD_PO_STATS(dev_net(dev), IPSTATS_MIB_OUTMCAST, skb->len); + } else if (rt->rt_type == RTN_BROADCAST) + IP_UPD_PO_STATS(dev_net(dev), IPSTATS_MIB_OUTBCAST, skb->len); /* Be paranoid, rather than too clever. */ if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) { @@ -244,8 +244,8 @@ int ip_mc_output(struct sk_buff *skb) /* * If the indicated interface is up and running, send the packet. */ - IP_INC_STATS(dev_net(dev), IPSTATS_MIB_OUTREQUESTS); - + IP_UPD_PO_STATS(dev_net(dev), IPSTATS_MIB_OUT, skb->len); + skb->dev = dev; skb->protocol = htons(ETH_P_IP); @@ -298,7 +298,7 @@ int ip_output(struct sk_buff *skb) { struct net_device *dev = skb->dst->dev; - IP_INC_STATS(dev_net(dev), IPSTATS_MIB_OUTREQUESTS); + IP_UPD_PO_STATS(dev_net(dev), IPSTATS_MIB_OUT, skb->len); skb->dev = dev; skb->protocol = htons(ETH_P_IP); diff -up linux-2.6.29.noarch/net/ipv4/proc.c.orig linux-2.6.29.noarch/net/ipv4/proc.c --- linux-2.6.29.noarch/net/ipv4/proc.c.orig 2009-04-27 09:34:00.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv4/proc.c 2009-04-27 10:15:53.000000000 -0400 @@ -90,14 +90,14 @@ static const struct file_operations sock /* snmp items */ static const struct snmp_mib snmp4_ipstats_list[] = { - SNMP_MIB_ITEM("InReceives", IPSTATS_MIB_INRECEIVES), + SNMP_MIB_ITEM("InReceives", IPSTATS_MIB_INPKTS), SNMP_MIB_ITEM("InHdrErrors", IPSTATS_MIB_INHDRERRORS), SNMP_MIB_ITEM("InAddrErrors", IPSTATS_MIB_INADDRERRORS), SNMP_MIB_ITEM("ForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS), SNMP_MIB_ITEM("InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS), SNMP_MIB_ITEM("InDiscards", IPSTATS_MIB_INDISCARDS), SNMP_MIB_ITEM("InDelivers", IPSTATS_MIB_INDELIVERS), - SNMP_MIB_ITEM("OutRequests", IPSTATS_MIB_OUTREQUESTS), + SNMP_MIB_ITEM("OutRequests", IPSTATS_MIB_OUTPKTS), SNMP_MIB_ITEM("OutDiscards", IPSTATS_MIB_OUTDISCARDS), SNMP_MIB_ITEM("OutNoRoutes", IPSTATS_MIB_OUTNOROUTES), SNMP_MIB_ITEM("ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT), @@ -118,6 +118,12 @@ static const struct snmp_mib snmp4_ipext SNMP_MIB_ITEM("OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS), SNMP_MIB_ITEM("InBcastPkts", IPSTATS_MIB_INBCASTPKTS), SNMP_MIB_ITEM("OutBcastPkts", IPSTATS_MIB_OUTBCASTPKTS), + SNMP_MIB_ITEM("InOctets", IPSTATS_MIB_INOCTETS), + SNMP_MIB_ITEM("OutOctets", IPSTATS_MIB_OUTOCTETS), + SNMP_MIB_ITEM("InMcastOctets", IPSTATS_MIB_INMCASTOCTETS), + SNMP_MIB_ITEM("OutMcastOctets", IPSTATS_MIB_OUTMCASTOCTETS), + SNMP_MIB_ITEM("InBcastOctets", IPSTATS_MIB_INBCASTOCTETS), + SNMP_MIB_ITEM("OutBcastOctets", IPSTATS_MIB_OUTBCASTOCTETS), SNMP_MIB_SENTINEL }; diff -up linux-2.6.29.noarch/net/ipv6/ip6_input.c.orig linux-2.6.29.noarch/net/ipv6/ip6_input.c --- linux-2.6.29.noarch/net/ipv6/ip6_input.c.orig 2009-04-27 09:34:00.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/ip6_input.c 2009-04-27 10:15:53.000000000 -0400 @@ -70,7 +70,7 @@ int ipv6_rcv(struct sk_buff *skb, struct idev = __in6_dev_get(skb->dev); - IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_INRECEIVES); + IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_IN, skb->len); if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL || !idev || unlikely(idev->cnf.disable_ipv6)) { @@ -242,8 +242,9 @@ int ip6_mc_input(struct sk_buff *skb) struct ipv6hdr *hdr; int deliver; - IP6_INC_STATS_BH(dev_net(skb->dst->dev), - ip6_dst_idev(skb->dst), IPSTATS_MIB_INMCASTPKTS); + IP6_UPD_PO_STATS_BH(dev_net(skb->dst->dev), + ip6_dst_idev(skb->dst), IPSTATS_MIB_INMCAST, + skb->len); hdr = ipv6_hdr(skb); deliver = ipv6_chk_mcast_addr(skb->dev, &hdr->daddr, NULL); diff -up linux-2.6.29.noarch/net/ipv6/ip6_output.c.orig linux-2.6.29.noarch/net/ipv6/ip6_output.c --- linux-2.6.29.noarch/net/ipv6/ip6_output.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/ip6_output.c 2009-04-27 10:15:53.000000000 -0400 @@ -159,7 +159,8 @@ static int ip6_output2(struct sk_buff *s } } - IP6_INC_STATS(dev_net(dev), idev, IPSTATS_MIB_OUTMCASTPKTS); + IP6_UPD_PO_STATS(dev_net(dev), idev, IPSTATS_MIB_OUTMCAST, + skb->len); } return NF_HOOK(PF_INET6, NF_INET_POST_ROUTING, skb, NULL, skb->dev, @@ -275,8 +276,8 @@ int ip6_xmit(struct sock *sk, struct sk_ mtu = dst_mtu(dst); if ((skb->len <= mtu) || skb->local_df || skb_is_gso(skb)) { - IP6_INC_STATS(net, ip6_dst_idev(skb->dst), - IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(net, ip6_dst_idev(skb->dst), + IPSTATS_MIB_OUT, skb->len); return NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev, dst_output); } @@ -1516,7 +1517,7 @@ int ip6_push_pending_frames(struct sock skb->mark = sk->sk_mark; skb->dst = dst_clone(&rt->u.dst); - IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len); if (proto == IPPROTO_ICMPV6) { struct inet6_dev *idev = ip6_dst_idev(skb->dst); diff -up linux-2.6.29.noarch/net/ipv6/mcast.c.orig linux-2.6.29.noarch/net/ipv6/mcast.c --- linux-2.6.29.noarch/net/ipv6/mcast.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/mcast.c 2009-04-27 10:15:53.000000000 -0400 @@ -1449,7 +1449,8 @@ static void mld_sendpack(struct sk_buff int err; struct flowi fl; - IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len); + payload_len = (skb->tail - skb->network_header) - sizeof(*pip6); mldlen = skb->tail - skb->transport_header; pip6->payload_len = htons(payload_len); @@ -1473,13 +1474,15 @@ static void mld_sendpack(struct sk_buff if (err) goto err_out; + payload_len = skb->len; + err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev, dst_output); out: if (!err) { ICMP6MSGOUT_INC_STATS_BH(net, idev, ICMPV6_MLD2_REPORT); ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS); - IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTMCASTPKTS); + IP6_UPD_PO_STATS_BH(net, idev, IPSTATS_MIB_OUTMCAST, payload_len); } else IP6_INC_STATS_BH(net, idev, IPSTATS_MIB_OUTDISCARDS); @@ -1773,10 +1776,6 @@ static void igmp6_send(struct in6_addr * IPV6_TLV_PADN, 0 }; struct flowi fl; - rcu_read_lock(); - IP6_INC_STATS(net, __in6_dev_get(dev), - IPSTATS_MIB_OUTREQUESTS); - rcu_read_unlock(); if (type == ICMPV6_MGM_REDUCTION) snd_addr = &in6addr_linklocal_allrouters; else @@ -1786,6 +1785,11 @@ static void igmp6_send(struct in6_addr * payload_len = len + sizeof(ra); full_len = sizeof(struct ipv6hdr) + payload_len; + rcu_read_lock(); + IP6_UPD_PO_STATS(net, __in6_dev_get(dev), + IPSTATS_MIB_OUT, full_len); + rcu_read_unlock(); + skb = sock_alloc_send_skb(sk, LL_ALLOCATED_SPACE(dev) + full_len, 1, &err); if (skb == NULL) { @@ -1838,13 +1842,14 @@ static void igmp6_send(struct in6_addr * if (err) goto err_out; + err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, skb->dev, dst_output); out: if (!err) { ICMP6MSGOUT_INC_STATS(net, idev, type); ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTMSGS); - IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTMCASTPKTS); + IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUTMCAST, full_len); } else IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTDISCARDS); diff -up linux-2.6.29.noarch/net/ipv6/ndisc.c.orig linux-2.6.29.noarch/net/ipv6/ndisc.c --- linux-2.6.29.noarch/net/ipv6/ndisc.c.orig 2009-04-27 09:34:00.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/ndisc.c 2009-04-27 10:15:53.000000000 -0400 @@ -533,7 +533,7 @@ void ndisc_send_skb(struct sk_buff *skb, skb->dst = dst; idev = in6_dev_get(dst->dev); - IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len); err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev, dst_output); @@ -1613,7 +1613,7 @@ void ndisc_send_redirect(struct sk_buff buff->dst = dst; idev = in6_dev_get(dst->dev); - IP6_INC_STATS(net, idev, IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len); err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev, dst_output); if (!err) { diff -up linux-2.6.29.noarch/net/ipv6/proc.c.orig linux-2.6.29.noarch/net/ipv6/proc.c --- linux-2.6.29.noarch/net/ipv6/proc.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/proc.c 2009-04-27 10:15:53.000000000 -0400 @@ -61,7 +61,7 @@ static const struct file_operations sock static struct snmp_mib snmp6_ipstats_list[] = { /* ipv6 mib according to RFC 2465 */ - SNMP_MIB_ITEM("Ip6InReceives", IPSTATS_MIB_INRECEIVES), + SNMP_MIB_ITEM("Ip6InReceives", IPSTATS_MIB_INPKTS), SNMP_MIB_ITEM("Ip6InHdrErrors", IPSTATS_MIB_INHDRERRORS), SNMP_MIB_ITEM("Ip6InTooBigErrors", IPSTATS_MIB_INTOOBIGERRORS), SNMP_MIB_ITEM("Ip6InNoRoutes", IPSTATS_MIB_INNOROUTES), @@ -71,7 +71,7 @@ static struct snmp_mib snmp6_ipstats_lis SNMP_MIB_ITEM("Ip6InDiscards", IPSTATS_MIB_INDISCARDS), SNMP_MIB_ITEM("Ip6InDelivers", IPSTATS_MIB_INDELIVERS), SNMP_MIB_ITEM("Ip6OutForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS), - SNMP_MIB_ITEM("Ip6OutRequests", IPSTATS_MIB_OUTREQUESTS), + SNMP_MIB_ITEM("Ip6OutRequests", IPSTATS_MIB_OUTPKTS), SNMP_MIB_ITEM("Ip6OutDiscards", IPSTATS_MIB_OUTDISCARDS), SNMP_MIB_ITEM("Ip6OutNoRoutes", IPSTATS_MIB_OUTNOROUTES), SNMP_MIB_ITEM("Ip6ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT), @@ -83,6 +83,12 @@ static struct snmp_mib snmp6_ipstats_lis SNMP_MIB_ITEM("Ip6FragCreates", IPSTATS_MIB_FRAGCREATES), SNMP_MIB_ITEM("Ip6InMcastPkts", IPSTATS_MIB_INMCASTPKTS), SNMP_MIB_ITEM("Ip6OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS), + SNMP_MIB_ITEM("Ip6InOctets", IPSTATS_MIB_INOCTETS), + SNMP_MIB_ITEM("Ip6OutOctets", IPSTATS_MIB_OUTOCTETS), + SNMP_MIB_ITEM("Ip6InMcastOctets", IPSTATS_MIB_INMCASTOCTETS), + SNMP_MIB_ITEM("Ip6OutMcastOctets", IPSTATS_MIB_OUTMCASTOCTETS), + SNMP_MIB_ITEM("Ip6InBcastOctets", IPSTATS_MIB_INBCASTOCTETS), + SNMP_MIB_ITEM("Ip6OutBcastOctets", IPSTATS_MIB_OUTBCASTOCTETS), SNMP_MIB_SENTINEL }; diff -up linux-2.6.29.noarch/net/ipv6/raw.c.orig linux-2.6.29.noarch/net/ipv6/raw.c --- linux-2.6.29.noarch/net/ipv6/raw.c.orig 2009-03-23 19:12:14.000000000 -0400 +++ linux-2.6.29.noarch/net/ipv6/raw.c 2009-04-27 10:15:53.000000000 -0400 @@ -638,7 +638,7 @@ static int rawv6_send_hdrinc(struct sock if (err) goto error_fault; - IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS); + IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len); err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, rt->u.dst.dev, dst_output); if (err > 0) linux-2.6-v4l-dvb-update.patch: smssdio.c | 354 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 354 insertions(+) Index: linux-2.6-v4l-dvb-update.patch =================================================================== RCS file: linux-2.6-v4l-dvb-update.patch diff -N linux-2.6-v4l-dvb-update.patch --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ linux-2.6-v4l-dvb-update.patch 25 Jul 2009 04:09:29 -0000 1.16 @@ -0,0 +1,366 @@ +Mauro Carvalho Chehab (1): + Merge branch 'next' of ../devel into Fedora + +Uri Shkolnik (1): + V4L/DVB (11241): Siano: SDIO interface driver - remove two redundant lines + +diff --git a/linux/drivers/media/dvb/siano/smssdio.c b/linux/drivers/media/dvb/siano/smssdio.c +new file mode 100644 +index 0000000..4f8fa59 +--- /dev/null ++++ b/linux/drivers/media/dvb/siano/smssdio.c +@@ -0,0 +1,354 @@ ++/* ++ * smssdio.c - Siano 1xxx SDIO interface driver ++ * ++ * Copyright 2008 Pierre Ossman ++ * ++ * Based on code by Siano Mobile Silicon, Inc., ++ * Copyright (C) 2006-2008, Uri Shkolnik ++ * ++ * This program is free software; you can redistribute it and/or modify ++ * it under the terms of the GNU General Public License as published by ++ * the Free Software Foundation; either version 2 of the License, or (at ++ * your option) any later version. ++ * ++ * ++ * This hardware is a bit odd in that all transfers should be done ++ * to/from the SMSSDIO_DATA register, yet the "increase address" bit ++ * always needs to be set. ++ * ++ * Also, buffers from the card are always aligned to 128 byte ++ * boundaries. ++ */ ++ ++/* ++ * General cleanup notes: ++ * ++ * - only typedefs should be name *_t ++ * ++ * - use ERR_PTR and friends for smscore_register_device() ++ * ++ * - smscore_getbuffer should zero fields ++ * ++ * Fix stop command ++ */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "smscoreapi.h" ++#include "sms-cards.h" ++ ++/* Registers */ ++ ++#define SMSSDIO_DATA 0x00 ++#define SMSSDIO_INT 0x04 ++ ++static const struct sdio_device_id smssdio_ids[] = { ++ {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_STELLAR), ++ .driver_data = SMS1XXX_BOARD_SIANO_STELLAR}, ++ {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_NOVA_A0), ++ .driver_data = SMS1XXX_BOARD_SIANO_NOVA_A}, ++ {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_NOVA_B0), ++ .driver_data = SMS1XXX_BOARD_SIANO_NOVA_B}, ++ {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_VEGA_A0), ++ .driver_data = SMS1XXX_BOARD_SIANO_VEGA}, ++ {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_VENICE), ++ .driver_data = SMS1XXX_BOARD_SIANO_VEGA}, ++ { /* end: all zeroes */ }, ++}; ++ ++MODULE_DEVICE_TABLE(sdio, smssdio_ids); ++ ++struct smssdio_device { ++ struct sdio_func *func; ++ ++ struct smscore_device_t *coredev; ++ ++ struct smscore_buffer_t *split_cb; ++}; ++ ++/*******************************************************************/ ++/* Siano core callbacks */ ++/*******************************************************************/ ++ ++static int smssdio_sendrequest(void *context, void *buffer, size_t size) ++{ ++ int ret; ++ struct smssdio_device *smsdev; ++ ++ smsdev = context; ++ ++ sdio_claim_host(smsdev->func); ++ ++ while (size >= smsdev->func->cur_blksize) { ++ ret = sdio_write_blocks(smsdev->func, SMSSDIO_DATA, buffer, 1); ++ if (ret) ++ goto out; ++ ++ buffer += smsdev->func->cur_blksize; ++ size -= smsdev->func->cur_blksize; ++ } ++ ++ if (size) { ++ ret = sdio_write_bytes(smsdev->func, SMSSDIO_DATA, ++ buffer, size); ++ } ++ ++out: ++ sdio_release_host(smsdev->func); ++ ++ return ret; ++} ++ ++/*******************************************************************/ ++/* SDIO callbacks */ ++/*******************************************************************/ ++ ++static void smssdio_interrupt(struct sdio_func *func) ++{ ++ int ret, isr; ++ ++ struct smssdio_device *smsdev; ++ struct smscore_buffer_t *cb; ++ struct SmsMsgHdr_ST *hdr; ++ size_t size; ++ ++ smsdev = sdio_get_drvdata(func); ++ ++ /* ++ * The interrupt register has no defined meaning. It is just ++ * a way of turning of the level triggered interrupt. ++ */ ++ isr = sdio_readb(func, SMSSDIO_INT, &ret); ++ if (ret) { ++ dev_err(&smsdev->func->dev, ++ "Unable to read interrupt register!\n"); ++ return; ++ } ++ ++ if (smsdev->split_cb == NULL) { ++ cb = smscore_getbuffer(smsdev->coredev); ++ if (!cb) { ++ dev_err(&smsdev->func->dev, ++ "Unable to allocate data buffer!\n"); ++ return; ++ } ++ ++ ret = sdio_read_blocks(smsdev->func, cb->p, SMSSDIO_DATA, 1); ++ if (ret) { ++ dev_err(&smsdev->func->dev, ++ "Error %d reading initial block!\n", ret); ++ return; ++ } ++ ++ hdr = cb->p; ++ ++ if (hdr->msgFlags & MSG_HDR_FLAG_SPLIT_MSG) { ++ smsdev->split_cb = cb; ++ return; ++ } ++ ++ size = hdr->msgLength - smsdev->func->cur_blksize; ++ } else { ++ cb = smsdev->split_cb; ++ hdr = cb->p; ++ ++ size = hdr->msgLength - sizeof(struct SmsMsgHdr_ST); ++ ++ smsdev->split_cb = NULL; ++ } ++ ++ if (hdr->msgLength > smsdev->func->cur_blksize) { ++ void *buffer; ++ ++ size = ALIGN(size, 128); ++ buffer = cb->p + hdr->msgLength; ++ ++ BUG_ON(smsdev->func->cur_blksize != 128); ++ ++ /* ++ * First attempt to transfer all of it in one go... ++ */ ++ ret = sdio_read_blocks(smsdev->func, buffer, ++ SMSSDIO_DATA, size / 128); ++ if (ret && ret != -EINVAL) { ++ smscore_putbuffer(smsdev->coredev, cb); ++ dev_err(&smsdev->func->dev, ++ "Error %d reading data from card!\n", ret); ++ return; ++ } ++ ++ /* ++ * ..then fall back to one block at a time if that is ++ * not possible... ++ * ++ * (we have to do this manually because of the ++ * problem with the "increase address" bit) ++ */ ++ if (ret == -EINVAL) { ++ while (size) { ++ ret = sdio_read_blocks(smsdev->func, ++ buffer, SMSSDIO_DATA, 1); ++ if (ret) { ++ smscore_putbuffer(smsdev->coredev, cb); ++ dev_err(&smsdev->func->dev, ++ "Error %d reading " ++ "data from card!\n", ret); ++ return; ++ } ++ ++ buffer += smsdev->func->cur_blksize; ++ if (size > smsdev->func->cur_blksize) ++ size -= smsdev->func->cur_blksize; ++ else ++ size = 0; ++ } ++ } ++ } ++ ++ cb->size = hdr->msgLength; ++ cb->offset = 0; ++ ++ smscore_onresponse(smsdev->coredev, cb); ++} ++ ++static int smssdio_probe(struct sdio_func *func, ++ const struct sdio_device_id *id) ++{ ++ int ret; ++ ++ int board_id; ++ struct smssdio_device *smsdev; ++ struct smsdevice_params_t params; ++ ++ board_id = id->driver_data; ++ ++ smsdev = kzalloc(sizeof(struct smssdio_device), GFP_KERNEL); ++ if (!smsdev) ++ return -ENOMEM; ++ ++ smsdev->func = func; ++ ++ memset(¶ms, 0, sizeof(struct smsdevice_params_t)); ++ ++ params.device = &func->dev; ++ params.buffer_size = 0x5000; /* ?? */ ++ params.num_buffers = 22; /* ?? */ ++ params.context = smsdev; ++ ++ snprintf(params.devpath, sizeof(params.devpath), ++ "sdio\\%s", sdio_func_id(func)); ++ ++ params.sendrequest_handler = smssdio_sendrequest; ++ ++ params.device_type = sms_get_board(board_id)->type; ++ ++ if (params.device_type != SMS_STELLAR) ++ params.flags |= SMS_DEVICE_FAMILY2; ++ else { ++ /* ++ * FIXME: Stellar needs special handling... ++ */ ++ ret = -ENODEV; ++ goto free; ++ } ++ ++ ret = smscore_register_device(¶ms, &smsdev->coredev); ++ if (ret < 0) ++ goto free; ++ ++ smscore_set_board_id(smsdev->coredev, board_id); ++ ++ sdio_claim_host(func); ++ ++ ret = sdio_enable_func(func); ++ if (ret) ++ goto release; ++ ++ ret = sdio_set_block_size(func, 128); ++ if (ret) ++ goto disable; ++ ++ ret = sdio_claim_irq(func, smssdio_interrupt); ++ if (ret) ++ goto disable; ++ ++ sdio_set_drvdata(func, smsdev); ++ ++ sdio_release_host(func); ++ ++ ret = smscore_start_device(smsdev->coredev); ++ if (ret < 0) ++ goto reclaim; ++ ++ return 0; ++ ++reclaim: ++ sdio_claim_host(func); ++ sdio_release_irq(func); ++disable: ++ sdio_disable_func(func); ++release: ++ sdio_release_host(func); ++ smscore_unregister_device(smsdev->coredev); ++free: ++ kfree(smsdev); ++ ++ return ret; ++} ++ ++static void smssdio_remove(struct sdio_func *func) ++{ ++ struct smssdio_device *smsdev; ++ ++ smsdev = sdio_get_drvdata(func); ++ ++ /* FIXME: racy! */ ++ if (smsdev->split_cb) ++ smscore_putbuffer(smsdev->coredev, smsdev->split_cb); ++ ++ smscore_unregister_device(smsdev->coredev); ++ ++ sdio_claim_host(func); ++ sdio_release_irq(func); ++ sdio_disable_func(func); ++ sdio_release_host(func); ++ ++ kfree(smsdev); ++} ++ ++static struct sdio_driver smssdio_driver = { ++ .name = "smssdio", ++ .id_table = smssdio_ids, ++ .probe = smssdio_probe, ++ .remove = smssdio_remove, ++}; ++ ++/*******************************************************************/ ++/* Module functions */ ++/*******************************************************************/ ++ ++int smssdio_register(void) ++{ ++ int ret = 0; ++ ++ printk(KERN_INFO "smssdio: Siano SMS1xxx SDIO driver\n"); ++ printk(KERN_INFO "smssdio: Copyright Pierre Ossman\n"); ++ ++ ret = sdio_register_driver(&smssdio_driver); ++ ++ return ret; ++} ++ ++void smssdio_unregister(void) ++{ ++ sdio_unregister_driver(&smssdio_driver); ++} ++ ++MODULE_DESCRIPTION("Siano SMS1xxx SDIO driver"); ++MODULE_AUTHOR("Pierre Ossman"); ++MODULE_LICENSE("GPL"); via-padlock-10-enable-64bit.patch: Kconfig | 2 +- padlock-aes.c | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) --- NEW FILE via-padlock-10-enable-64bit.patch --- From: Sebastian Andrzej Siewior Date: Tue, 21 Apr 2009 06:14:37 +0000 (+0800) Subject: crypto: padlock - Enable on x86_64 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fherbert%2Fcryptodev-2.6.git;a=commitdiff_plain;h=d1c8b0a7692e81b46550bcc493465ed10510cd33 crypto: padlock - Enable on x86_64 Almost everything stays the same, we need just to use the extended registers on the bit variant. Signed-off-by: Sebastian Andrzej Siewior Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index 01afd75..39eedd4 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig @@ -12,7 +12,7 @@ if CRYPTO_HW config CRYPTO_DEV_PADLOCK tristate "Support for VIA PadLock ACE" - depends on X86_32 && !UML + depends on !UML select CRYPTO_ALGAPI help Some VIA processors come with an integrated crypto engine diff --git a/drivers/crypto/padlock-aes.c b/drivers/crypto/padlock-aes.c index 856b3cc..87f92c3 100644 --- a/drivers/crypto/padlock-aes.c +++ b/drivers/crypto/padlock-aes.c @@ -154,7 +154,11 @@ static inline void padlock_reset_key(struct cword *cword) int cpu = raw_smp_processor_id(); if (cword != per_cpu(last_cword, cpu)) +#ifndef CONFIG_X86_64 asm volatile ("pushfl; popfl"); +#else + asm volatile ("pushfq; popfq"); +#endif } static inline void padlock_store_cword(struct cword *cword) @@ -208,10 +212,19 @@ static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key, asm volatile ("test $1, %%cl;" "je 1f;" +#ifndef CONFIG_X86_64 "lea -1(%%ecx), %%eax;" "mov $1, %%ecx;" +#else + "lea -1(%%rcx), %%rax;" + "mov $1, %%rcx;" +#endif ".byte 0xf3,0x0f,0xa7,0xc8;" /* rep xcryptecb */ +#ifndef CONFIG_X86_64 "mov %%eax, %%ecx;" +#else + "mov %%rax, %%rcx;" +#endif "1:" ".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ : "+S"(input), "+D"(output) via-padlock-20-add-x86-dependency.patch: Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE via-padlock-20-add-x86-dependency.patch --- From: Herbert Xu Date: Wed, 22 Apr 2009 05:00:15 +0000 (+0800) Subject: crypto: padlock - Restore dependency on x86 X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fherbert%2Fcryptodev-2.6.git;a=commitdiff_plain;h=2f8174187f409213e63c3589af163c627e8a182a crypto: padlock - Restore dependency on x86 When we added 64-bit support to padlock the dependency on x86 was lost. This causes build failures on non-x86 architectures. Reported-by: Stephen Rothwell Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index 39eedd4..e748e55 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig @@ -12,7 +12,7 @@ if CRYPTO_HW config CRYPTO_DEV_PADLOCK tristate "Support for VIA PadLock ACE" - depends on !UML + depends on X86 && !UML select CRYPTO_ALGAPI help Some VIA processors come with an integrated crypto engine via-padlock-30-fix-might-sleep.patch: i387.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- NEW FILE via-padlock-30-fix-might-sleep.patch --- x86: clear TS in irq_ts_save() when in atomic The dynamic FPU context allocation changes caused the padlock driver to generate the below warning. Fix it by masking TS when doing padlock encryption operations in an atomic section. BUG: sleeping function called from invalid context at mm/slub.c:1602 in_atomic(): 1, irqs_disabled(): 0, pid: 82, name: cryptomgr_test Pid: 82, comm: cryptomgr_test Not tainted 2.6.29.4-168.test7.fc11.x86_64 #1 Call Trace: [] __might_sleep+0x10b/0x110 [] kmem_cache_alloc+0x37/0xf1 [] init_fpu+0x49/0x8a [] math_state_restore+0x3e/0xbc [] do_device_not_available+0x9/0xb [] device_not_available+0x1b/0x20 [] ? aes_crypt+0x66/0x74 [padlock_aes] [] ? blkcipher_walk_next+0x257/0x2e0 [] ? blkcipher_walk_first+0x18e/0x19d [] aes_encrypt+0x9d/0xe5 [padlock_aes] [] crypt+0x6b/0x114 [xts] [] ? aes_encrypt+0x0/0xe5 [padlock_aes] [] ? aes_encrypt+0x0/0xe5 [padlock_aes] [] encrypt+0x49/0x4b [xts] [] async_encrypt+0x3c/0x3e [] test_skcipher+0x1da/0x658 [] ? crypto_spawn_tfm+0x8e/0xb1 [] ? __crypto_alloc_tfm+0x11b/0x15f [] ? crypto_spawn_tfm+0x8e/0xb1 [] ? skcipher_geniv_init+0x2b/0x47 [] ? async_chainiv_init+0x5c/0x61 [] alg_test_skcipher+0x63/0x9b [] alg_test+0x12d/0x175 [] cryptomgr_test+0x38/0x54 [] ? cryptomgr_test+0x0/0x54 [] kthread+0x4d/0x78 [] child_rip+0xa/0x20 [] ? restore_args+0x0/0x30 [] ? kthread+0x0/0x78 [] ? child_rip+0x0/0x20 Signed-off-by: Chuck Ebbert --- work-2.6.29.4.orig/arch/x86/include/asm/i387.h +++ work-2.6.29.4/arch/x86/include/asm/i387.h @@ -305,18 +305,18 @@ static inline void kernel_fpu_end(void) /* * Some instructions like VIA's padlock instructions generate a spurious * DNA fault but don't modify SSE registers. And these instructions - * get used from interrupt context aswell. To prevent these kernel instructions - * in interrupt context interact wrongly with other user/kernel fpu usage, we + * get used from interrupt context as well. To prevent these kernel instructions + * in interrupt context interacting wrongly with other user/kernel fpu usage, we * should use them only in the context of irq_ts_save/restore() */ static inline int irq_ts_save(void) { /* - * If we are in process context, we are ok to take a spurious DNA fault. - * Otherwise, doing clts() in process context require pre-emption to - * be disabled or some heavy lifting like kernel_fpu_begin() + * If in process context and not atomic, we can take a spurious DNA fault. + * Otherwise, doing clts() in process context requires disabling preemption + * or some heavy lifting like kernel_fpu_begin() */ - if (!in_interrupt()) + if (!in_atomic() && !in_interrupt()) return 0; if (read_cr0() & X86_CR0_TS) { via-padlock-40-nano-ecb.patch: padlock-aes.c | 81 ++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 46 insertions(+), 35 deletions(-) --- NEW FILE via-padlock-40-nano-ecb.patch --- From: Chuck Ebbert crypto: padlock-aes: work around Nano CPU errata in ECB mode The VIA Nano processor has a bug that makes it prefetch extra data during encryption operations, causing spurious page faults. Extend existing workarounds for ECB mode to copy the data to an temporary buffer to avoid the problem. Signed-off-by: Chuck Ebbert --- work-2.6.29.4.orig/drivers/crypto/padlock-aes.c +++ work-2.6.29.4/drivers/crypto/padlock-aes.c @@ -18,9 +18,17 @@ #include #include #include +#include #include #include "padlock.h" +/* number of data blocks actually fetched for each xcrypt insn */ +static unsigned int ecb_fetch_blocks = 2; +static unsigned int cbc_fetch_blocks = 1; + +#define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE) +#define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE) + /* Control word. */ struct cword { unsigned int __attribute__ ((__packed__)) @@ -173,63 +181,59 @@ static inline void padlock_store_cword(s */ static inline void padlock_xcrypt(const u8 *input, u8 *output, void *key, - struct cword *control_word) + struct cword *control_word, int count) { asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ : "+S"(input), "+D"(output) - : "d"(control_word), "b"(key), "c"(1)); + : "d"(control_word), "b"(key), "c"(count)); } -static void aes_crypt_copy(const u8 *in, u8 *out, u32 *key, struct cword *cword) +static void aes_crypt_copy(const u8 *in, u8 *out, u32 *key, + struct cword *cword, int count) { - u8 buf[AES_BLOCK_SIZE * 2 + PADLOCK_ALIGNMENT - 1]; + /* + * Padlock prefetches extra data so we must provide mapped input buffers. + * Assume there are at least 16 bytes of stack already in use. + */ + u8 buf[AES_BLOCK_SIZE * 7 + PADLOCK_ALIGNMENT - 1]; u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT); - memcpy(tmp, in, AES_BLOCK_SIZE); - padlock_xcrypt(tmp, out, key, cword); + memcpy(tmp, in, count * AES_BLOCK_SIZE); + padlock_xcrypt(tmp, out, key, cword, count); } static inline void aes_crypt(const u8 *in, u8 *out, u32 *key, - struct cword *cword) + struct cword *cword, int count) { - /* padlock_xcrypt requires at least two blocks of data. */ - if (unlikely(!(((unsigned long)in ^ (PAGE_SIZE - AES_BLOCK_SIZE)) & - (PAGE_SIZE - 1)))) { - aes_crypt_copy(in, out, key, cword); + /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data. + * We could avoid some copying here but it's probably not worth it. + */ + if (unlikely(((unsigned long)in & PAGE_SIZE) + ecb_fetch_bytes > PAGE_SIZE)) { + aes_crypt_copy(in, out, key, cword, count); return; } - padlock_xcrypt(in, out, key, cword); + padlock_xcrypt(in, out, key, cword, count); } static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key, void *control_word, u32 count) { - if (count == 1) { - aes_crypt(input, output, key, control_word); + u32 initial = count & (ecb_fetch_blocks - 1); + + if (count < ecb_fetch_blocks) { + aes_crypt(input, output, key, control_word, count); return; } - asm volatile ("test $1, %%cl;" - "je 1f;" -#ifndef CONFIG_X86_64 - "lea -1(%%ecx), %%eax;" - "mov $1, %%ecx;" -#else - "lea -1(%%rcx), %%rax;" - "mov $1, %%rcx;" -#endif - ".byte 0xf3,0x0f,0xa7,0xc8;" /* rep xcryptecb */ -#ifndef CONFIG_X86_64 - "mov %%eax, %%ecx;" -#else - "mov %%rax, %%rcx;" -#endif - "1:" - ".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ + if (initial) + asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ + : "+S"(input), "+D"(output) + : "d"(control_word), "b"(key), "c"(initial)); + + asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ : "+S"(input), "+D"(output) - : "d"(control_word), "b"(key), "c"(count) - : "ax"); + : "d"(control_word), "b"(key), "c"(count - initial)); } static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key, @@ -249,7 +253,7 @@ static void aes_encrypt(struct crypto_tf padlock_reset_key(&ctx->cword.encrypt); ts_state = irq_ts_save(); - aes_crypt(in, out, ctx->E, &ctx->cword.encrypt); + aes_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1); irq_ts_restore(ts_state); padlock_store_cword(&ctx->cword.encrypt); } @@ -261,7 +265,7 @@ static void aes_decrypt(struct crypto_tf padlock_reset_key(&ctx->cword.encrypt); ts_state = irq_ts_save(); - aes_crypt(in, out, ctx->D, &ctx->cword.decrypt); + aes_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1); irq_ts_restore(ts_state); padlock_store_cword(&ctx->cword.encrypt); } @@ -454,6 +458,7 @@ static struct crypto_alg cbc_aes_alg = { static int __init padlock_init(void) { int ret; + struct cpuinfo_x86 *c = &cpu_data(0); if (!cpu_has_xcrypt) { printk(KERN_NOTICE PFX "VIA PadLock not detected.\n"); @@ -476,6 +481,12 @@ static int __init padlock_init(void) printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n"); + if (c->x86 == 6 && c->x86_model == 15 && c->x86_mask == 2) { + ecb_fetch_blocks = 8; + cbc_fetch_blocks = 4; /* NOTE: notused */ + printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n"); + } + out: return ret; via-padlock-50-nano-cbc.patch: padlock-aes.c | 83 +++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 65 insertions(+), 18 deletions(-) --- NEW FILE via-padlock-50-nano-cbc.patch --- From: Chuck Ebbert crypto: padlock-aes: work around Nano CPU errata in CBC mode Extend previous workarounds for the prefetch bug to cover CBC mode, clean up the code a bit. Signed-off-by: Chuck Ebbert --- work-2.6.29.4.orig/drivers/crypto/padlock-aes.c +++ work-2.6.29.4/drivers/crypto/padlock-aes.c @@ -22,11 +22,16 @@ #include #include "padlock.h" -/* number of data blocks actually fetched for each xcrypt insn */ +/* + * Number of data blocks actually fetched for each xcrypt insn. + * Processors with prefetch errata will fetch extra blocks. + */ static unsigned int ecb_fetch_blocks = 2; -static unsigned int cbc_fetch_blocks = 1; - +#define MAX_ECB_FETCH_BLOCKS (8) #define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE) + +static unsigned int cbc_fetch_blocks = 1; +#define MAX_CBC_FETCH_BLOCKS (4) #define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE) /* Control word. */ @@ -176,7 +181,7 @@ static inline void padlock_store_cword(s * should be used only inside the irq_ts_save/restore() context */ -static inline void padlock_xcrypt(const u8 *input, u8 *output, void *key, +static inline void rep_xcrypt_ecb(const u8 *input, u8 *output, void *key, struct cword *control_word, int count) { asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ @@ -184,32 +189,65 @@ static inline void padlock_xcrypt(const : "d"(control_word), "b"(key), "c"(count)); } -static void aes_crypt_copy(const u8 *in, u8 *out, u32 *key, +static inline u8 *rep_xcrypt_cbc(const u8 *input, u8 *output, void *key, + u8 *iv, struct cword *control_word, int count) +{ + asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ + : "+S" (input), "+D" (output), "+a" (iv) + : "d" (control_word), "b" (key), "c" (count)); + return iv; +} + +static void ecb_crypt_copy(const u8 *in, u8 *out, u32 *key, struct cword *cword, int count) { /* * Padlock prefetches extra data so we must provide mapped input buffers. * Assume there are at least 16 bytes of stack already in use. */ - u8 buf[AES_BLOCK_SIZE * 7 + PADLOCK_ALIGNMENT - 1]; + u8 buf[AES_BLOCK_SIZE * (MAX_ECB_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1]; u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT); memcpy(tmp, in, count * AES_BLOCK_SIZE); - padlock_xcrypt(tmp, out, key, cword, count); + rep_xcrypt_ecb(tmp, out, key, cword, count); } -static inline void aes_crypt(const u8 *in, u8 *out, u32 *key, +static u8 *cbc_crypt_copy(const u8 *in, u8 *out, u32 *key, + u8 *iv, struct cword *cword, int count) +{ + /* + * Padlock prefetches extra data so we must provide mapped input buffers. + * Assume there are at least 16 bytes of stack already in use. + */ + u8 buf[AES_BLOCK_SIZE * (MAX_CBC_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1]; + u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT); + + memcpy(tmp, in, count * AES_BLOCK_SIZE); + return rep_xcrypt_cbc(tmp, out, key, iv, cword, count); +} + +static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key, struct cword *cword, int count) { /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data. * We could avoid some copying here but it's probably not worth it. */ if (unlikely(((unsigned long)in & PAGE_SIZE) + ecb_fetch_bytes > PAGE_SIZE)) { - aes_crypt_copy(in, out, key, cword, count); + ecb_crypt_copy(in, out, key, cword, count); return; } - padlock_xcrypt(in, out, key, cword, count); + rep_xcrypt_ecb(in, out, key, cword, count); +} + +static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key, + u8 *iv, struct cword *cword, int count) +{ + /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */ + if (unlikely(((unsigned long)in & PAGE_SIZE) + cbc_fetch_bytes > PAGE_SIZE)) + return cbc_crypt_copy(in, out, key, iv, cword, count); + + return rep_xcrypt_cbc(in, out, key, iv, cword, count); } static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key, @@ -218,7 +256,7 @@ static inline void padlock_xcrypt_ecb(co u32 initial = count & (ecb_fetch_blocks - 1); if (count < ecb_fetch_blocks) { - aes_crypt(input, output, key, control_word, count); + ecb_crypt(input, output, key, control_word, count); return; } @@ -235,10 +273,19 @@ static inline void padlock_xcrypt_ecb(co static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key, u8 *iv, void *control_word, u32 count) { - /* rep xcryptcbc */ - asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" + u32 initial = count & (cbc_fetch_blocks - 1); + + if (count < cbc_fetch_blocks) + return cbc_crypt(input, output, key, iv, control_word, count); + + if (initial) + asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ + : "+S" (input), "+D" (output), "+a" (iv) + : "d" (control_word), "b" (key), "c" (count)); + + asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ : "+S" (input), "+D" (output), "+a" (iv) - : "d" (control_word), "b" (key), "c" (count)); + : "d" (control_word), "b" (key), "c" (count-initial)); return iv; } @@ -249,7 +296,7 @@ static void aes_encrypt(struct crypto_tf padlock_reset_key(&ctx->cword.encrypt); ts_state = irq_ts_save(); - aes_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1); + ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1); irq_ts_restore(ts_state); padlock_store_cword(&ctx->cword.encrypt); } @@ -261,7 +308,7 @@ static void aes_decrypt(struct crypto_tf padlock_reset_key(&ctx->cword.encrypt); ts_state = irq_ts_save(); - aes_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1); + ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1); irq_ts_restore(ts_state); padlock_store_cword(&ctx->cword.encrypt); } @@ -478,8 +525,8 @@ static int __init padlock_init(void) printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n"); if (c->x86 == 6 && c->x86_model == 15 && c->x86_mask == 2) { - ecb_fetch_blocks = 8; - cbc_fetch_blocks = 4; /* NOTE: notused */ + ecb_fetch_blocks = MAX_ECB_FETCH_BLOCKS; + cbc_fetch_blocks = MAX_CBC_FETCH_BLOCKS; printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n"); } via-rng-enable-64bit.patch: Kconfig | 2 +- via-rng.c | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) --- NEW FILE via-rng-enable-64bit.patch --- Applying patch ../patches/1-linux-2.6-via.git-335095425dbd81b324a3048deab95c7616c79ae8.patch Applying patch ../patches/2-linux-2.6-via.git-fe96668d06398ede62535739fb9483853bd29b35.patch Applying patch ../patches/3-linux-2.6-via.git-1507086e4223df7d5e1cc38596930b17293f3daf.patch Applying patch ../patches/4-linux-2.6-via.git-e4839e519ba71cba2c6d8c8a90db830a3c4298de.patch --- work-2.6.29.4.orig/drivers/char/hw_random/via-rng.c +++ work-2.6.29.4/drivers/char/hw_random/via-rng.c @@ -132,6 +132,19 @@ static int via_rng_init(struct hwrng *rn struct cpuinfo_x86 *c = &cpu_data(0); u32 lo, hi, old_lo; + /* VIA Nano CPUs don't have the MSR_VIA_RNG anymore. The RNG + * is always enabled if CPUID rng_en is set. There is no + * RNG configuration like it used to be the case in this + * register */ + if ((c->x86 == 6) && (c->x86_model >= 0x0f)) { + if (!cpu_has_xstore_enabled) { + printk(KERN_ERR PFX "can't enable hardware RNG " + "if XSTORE is not enabled\n"); + return -ENODEV; + } + return 0; + } + /* Control the RNG via MSR. Tread lightly and pay very close * close attention to values written, as the reserved fields * are documented to be "undefined and unpredictable"; but it @@ -205,5 +218,5 @@ static void __exit mod_exit(void) module_init(mod_init); module_exit(mod_exit); -MODULE_DESCRIPTION("H/W RNG driver for VIA chipsets"); +MODULE_DESCRIPTION("H/W RNG driver for VIA CPU with PadLock"); MODULE_LICENSE("GPL"); --- work-2.6.29.4.orig/drivers/char/hw_random/Kconfig +++ work-2.6.29.4/drivers/char/hw_random/Kconfig @@ -74,7 +74,7 @@ config HW_RANDOM_N2RNG config HW_RANDOM_VIA tristate "VIA HW Random Number Generator support" - depends on HW_RANDOM && X86_32 + depends on HW_RANDOM && X86 default HW_RANDOM ---help--- This driver provides kernel-side support for the Random Number agp-set_memory_ucwb.patch: b/drivers/char/agp/generic.c | 14 ++++++++++++-- linux-2.6.28.noarch/drivers/gpu/drm/i915/i915_dma.c | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) Index: agp-set_memory_ucwb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/agp-set_memory_ucwb.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- agp-set_memory_ucwb.patch 20 May 2009 13:51:37 -0000 1.2 +++ agp-set_memory_ucwb.patch 25 Jul 2009 04:09:15 -0000 1.3 @@ -52,3 +52,15 @@ index 97e8b41..aeeaf68 100644 page = virt_to_page(addr); #ifndef CONFIG_X86 +diff -up linux-2.6.28.noarch/drivers/gpu/drm/i915/i915_dma.c.dma linux-2.6.28.noarch/drivers/gpu/drm/i915/i915_dma.c +--- linux-2.6.28.noarch/drivers/gpu/drm/i915/i915_dma.c.dma 2009-02-27 13:11:03.000000000 +1000 ++++ linux-2.6.28.noarch/drivers/gpu/drm/i915/i915_dma.c 2009-02-27 13:11:11.000000000 +1000 +@@ -1104,7 +1104,7 @@ int i915_driver_load(struct drm_device * + "performance may suffer.\n"); + } + +-#ifdef CONFIG_HIGHMEM64G ++#if 0 /* Fedora has AGP workaround patch */ + /* don't enable GEM on PAE - needs agp + set_memory_* interface fixes */ + dev_priv->has_gem = 0; + #else Index: config-arm =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-arm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- config-arm 25 Jul 2009 03:16:38 -0000 1.3 +++ config-arm 25 Jul 2009 04:09:16 -0000 1.4 @@ -95,3 +95,5 @@ CONFIG_RTC_DRV_PL031=m # CONFIG_DEBUG_LL is not set CONFIG_ARM_UNWIND=y + +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 Index: config-ia64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-ia64-generic,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- config-ia64-generic 25 Jul 2009 03:16:38 -0000 1.25 +++ config-ia64-generic 25 Jul 2009 04:09:16 -0000 1.26 @@ -208,3 +208,5 @@ CONFIG_PARAVIRT_GUEST=y CONFIG_PARAVIRT=y CONFIG_DMAR_DEFAULT_ON=y + +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 Index: config-powerpc-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-powerpc-generic,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- config-powerpc-generic 25 Jul 2009 03:16:38 -0000 1.41 +++ config-powerpc-generic 25 Jul 2009 04:09:16 -0000 1.42 @@ -320,3 +320,5 @@ CONFIG_DTL=y CONFIG_MMC_SDHCI_OF=m # CONFIG_CONSISTENT_SIZE_BOOL is not set + +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 Index: config-s390x =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-s390x,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- config-s390x 25 Jul 2009 03:16:38 -0000 1.13 +++ config-s390x 25 Jul 2009 04:09:17 -0000 1.14 @@ -218,3 +218,5 @@ CONFIG_CHSC_SCH=m # CONFIG_MISDN_HFCMULTI is not set CONFIG_HVC_IUCV=y + +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 Index: config-sparc64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-sparc64-generic,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- config-sparc64-generic 25 Jul 2009 03:16:38 -0000 1.26 +++ config-sparc64-generic 25 Jul 2009 04:09:17 -0000 1.27 @@ -197,3 +197,5 @@ CONFIG_US3_MC=y CONFIG_SENSORS_ULTRA45=m CONFIG_LEDS_SUNFIRE=m CONFIG_TADPOLE_TS102_UCTRL=m + +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 Index: config-x86-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-x86-generic,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- config-x86-generic 25 Jul 2009 03:16:38 -0000 1.78 +++ config-x86-generic 25 Jul 2009 04:09:17 -0000 1.79 @@ -461,3 +461,5 @@ CONFIG_POWER_TRACER=y CONFIG_HW_BRANCH_TRACER=y # CONFIG_SPARSE_IRQ is not set + +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 Index: config-x86_64-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/config-x86_64-generic,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- config-x86_64-generic 25 Jul 2009 03:16:38 -0000 1.78 +++ config-x86_64-generic 25 Jul 2009 04:09:17 -0000 1.79 @@ -365,3 +365,5 @@ CONFIG_HW_BRANCH_TRACER=y CONFIG_X86_X2APIC=y CONFIG_SPARSE_IRQ=y CONFIG_NUMA_MIGRATE_IRQ_DESC=y + +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 drm-modesetting-radeon.patch: arch/x86/mm/pat.c | 1 drivers/gpu/drm/Kconfig | 11 drivers/gpu/drm/Makefile | 3 drivers/gpu/drm/ati_pcigart.c | 267 + drivers/gpu/drm/drm_agpsupport.c | 171 drivers/gpu/drm/drm_bo.c | 2161 +++++++++ drivers/gpu/drm/drm_bo_move.c | 709 +++ drivers/gpu/drm/drm_bufs.c | 12 drivers/gpu/drm/drm_crtc.c | 2 drivers/gpu/drm/drm_crtc_helper.c | 29 drivers/gpu/drm/drm_debugfs.c | 1 drivers/gpu/drm/drm_dma.c | 2 drivers/gpu/drm/drm_drv.c | 29 drivers/gpu/drm/drm_fence.c | 540 ++ drivers/gpu/drm/drm_fops.c | 5 drivers/gpu/drm/drm_info.c | 8 drivers/gpu/drm/drm_memory.c | 107 drivers/gpu/drm/drm_page_alloc.c | 171 drivers/gpu/drm/drm_page_alloc.h | 33 drivers/gpu/drm/drm_stub.c | 18 drivers/gpu/drm/drm_ttm.c | 469 ++ drivers/gpu/drm/drm_vm.c | 206 drivers/gpu/drm/i915/i915_irq.c | 3 drivers/gpu/drm/i915/intel_display.c | 22 drivers/gpu/drm/radeon/Makefile | 6 drivers/gpu/drm/radeon/ObjectID.h | 518 ++ drivers/gpu/drm/radeon/atom-bits.h | 48 drivers/gpu/drm/radeon/atom-names.h | 100 drivers/gpu/drm/radeon/atom-types.h | 42 drivers/gpu/drm/radeon/atom.c | 1141 +++++ drivers/gpu/drm/radeon/atom.h | 150 drivers/gpu/drm/radeon/atombios.h | 5025 ++++++++++++++++++++++ drivers/gpu/drm/radeon/atombios_crtc.c | 501 ++ drivers/gpu/drm/radeon/r300_cmdbuf.c | 164 drivers/gpu/drm/radeon/r300_reg.h | 240 - drivers/gpu/drm/radeon/r600_cp.c | 2 drivers/gpu/drm/radeon/radeon_atombios.c | 1035 ++++ drivers/gpu/drm/radeon/radeon_buffer.c | 457 ++ drivers/gpu/drm/radeon/radeon_combios.c | 1767 +++++++ drivers/gpu/drm/radeon/radeon_connectors.c | 608 ++ drivers/gpu/drm/radeon/radeon_cp.c | 1538 ++++++ drivers/gpu/drm/radeon/radeon_cs.c | 687 +++ drivers/gpu/drm/radeon/radeon_cursor.c | 262 + drivers/gpu/drm/radeon/radeon_display.c | 643 ++ drivers/gpu/drm/radeon/radeon_drv.c | 131 drivers/gpu/drm/radeon/radeon_drv.h | 499 +- drivers/gpu/drm/radeon/radeon_encoders.c | 1743 +++++++ drivers/gpu/drm/radeon/radeon_fb.c | 927 ++++ drivers/gpu/drm/radeon/radeon_fence.c | 99 drivers/gpu/drm/radeon/radeon_gem.c | 1577 +++++++ drivers/gpu/drm/radeon/radeon_gem_debugfs.c | 179 drivers/gpu/drm/radeon/radeon_i2c.c | 195 drivers/gpu/drm/radeon/radeon_irq.c | 62 drivers/gpu/drm/radeon/radeon_legacy_crtc.c | 1121 +++++ drivers/gpu/drm/radeon/radeon_legacy_encoders.c | 1283 +++++ drivers/gpu/drm/radeon/radeon_mem.c | 2 drivers/gpu/drm/radeon/radeon_mode.h | 388 + drivers/gpu/drm/radeon/radeon_pm.c | 257 + drivers/gpu/drm/radeon/radeon_reg.h | 5344 ++++++++++++++++++++++++ drivers/gpu/drm/radeon/radeon_state.c | 88 include/drm/drm.h | 1 include/drm/drmP.h | 96 include/drm/drm_crtc_helper.h | 2 include/drm/drm_objects.h | 913 ++++ include/drm/radeon_drm.h | 138 65 files changed, 34357 insertions(+), 602 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.82 -r 1.83 drm-modesetting-radeon.patchIndex: drm-modesetting-radeon.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/drm-modesetting-radeon.patch,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- drm-modesetting-radeon.patch 6 May 2009 03:12:01 -0000 1.82 +++ drm-modesetting-radeon.patch 25 Jul 2009 04:09:19 -0000 1.83 @@ -1,5 +1,1755 @@ +commit dea27f6e83efabdc3e37bc5a91d29d6dab893853 +Author: Dave Airlie +Date: Wed Mar 18 17:07:07 2009 +1000 + + radeon: fixup encoder oops due to wrong ordering on init calls + +commit 4a90f1edefee2cba39d135f2866e1bacc1ac647e +Author: Dave Airlie +Date: Thu Mar 19 00:16:00 2009 +1000 + + drm/ttm: re-org the whole cached/uncached allocator yet again. + + This removes the allocator type, and instead tracks when pages + were allocated from which pool and frees them back into that pool + +commit c8ae93fa4ac69112f4fc16477f73e0a98bba2765 +Author: Dave Airlie +Date: Sun Mar 15 18:26:42 2009 +1000 + + ttm: prefetch pages on pagefault + +commit f4df0e7870378ec40c268b95fb4b5d13533095fd +Author: Alex Deucher +Date: Mon Mar 16 03:52:13 2009 -0400 + + radeon: make sure to free connector priv when done + + Signed-off-by: Alex Deucher + +commit 96d923793eb924750b26e8ab2a4264131e17cd5b +Author: Alex Deucher +Date: Mon Mar 16 03:36:16 2009 -0400 + + radeon: fix combios asic init + + - igp chips don't have asic_init3/4 or ram reset tables + - write out the detected ram size to the CONFIG_MEMSIZE register + - some r1xx chips require ram detection rather than reading size + from bios tables + - asic_init5 table isn't needed + + Signed-off-by: Alex Deucher + +commit 68f14af742eda9fd28c920776ce5396e304f8a82 +Author: Alex Deucher +Date: Mon Mar 16 03:16:35 2009 -0400 + + radeon: rework bios scratch regsiter handling + + split bios scratch reg handling into 3 functions: + + - connected/active + - crtc to encoder mapping + - encoder dpms state + + Hook the functions in at the appropriate places in + the driver. DVI-I is a bit messy since we need to know + digital vs analog so we have to update the scratch regs + twice: once in detect() and again after we know digital/analog + in get_modes(). + + Signed-off-by: Alex Deucher + +commit 3ba04861b4d399a7c6e21f0a7279d5f087fc4a8c +Author: Alex Deucher +Date: Sat Mar 14 16:43:14 2009 -0400 + + radeon: rework combios encoder/connector setup + + - along the same lines as atom + - re-enable atom and legacy paths for r4xx cards + - remove bios_connector struct + + Signed-off-by: Alex Deucher + +commit 2ed15179f72e66a020a7f318cc4c3fa57865e4ba +Author: Alex Deucher +Date: Thu Mar 12 16:02:01 2009 -0400 + + radeon: fix misleading messages + + Signed-off-by: Alex Deucher + +commit cb917ec2b585f5ac873ab2e6938da9a3b730c0a1 +Author: Alex Deucher +Date: Thu Mar 12 14:27:06 2009 -0400 + + atom: fix up encoder routines to deal with connector setup + + often times the links or lanes used are dependant on the + connector rather than the encoder. + + Signed-off-by: Alex Deucher + +commit abe11890fc272189712f2e6268a8751e25b7b7b5 +Author: Alex Deucher +Date: Thu Mar 12 13:43:03 2009 -0400 + + atom: re-enable quirks + + Signed-off-by: Alex Deucher + +commit 6a45dbd73c14735711f1803e8a3dd1063b7b3021 +Author: Alex Deucher +Date: Thu Mar 12 13:21:32 2009 -0400 + + object table: don't add ddc for tv/cv + + Signed-off-by: Alex Deucher + +commit 6fb018a3740510f140bcd5b6b89904e9d3167811 +Author: Alex Deucher +Date: Thu Mar 12 13:10:50 2009 -0400 + + radeon: major restructuring of atom output/connector setup + + - add connectors and encoders while parsing the bios tables. + - pull in fixed up object header parsing for r6xx+ + + Signed-off-by: Alex Deucher + +commit 034267381be779a1bbdb5f6f97c1471fb8538a04 +Author: Alex Deucher +Date: Wed Mar 4 13:02:26 2009 -0500 + + RS600 doesn't have DFP quirk in connector table + + Signed-off-by: Alex Deucher + +commit b7936094db13c736e4bee7494c2b99a8e5ced042 +Author: Alex Deucher +Date: Thu Mar 5 16:37:57 2009 -0500 + + R6xx/R7xx: don't mess with RADEON_HOST_PATH_CNTL + + these chips don't have this reg at this location. + + Signed-off-by: Alex Deucher + +commit a1fdbf2f4de3988f5e3319ee9f267f7b27e8fc6e +Author: Alex Deucher +Date: Wed Mar 11 16:50:19 2009 -0400 + + radeon: make sure to free enc_priv when done + + Signed-off-by: Alex Deucher + +commit d54586a52852497d82f322c536515d223697fdf4 +Author: Alex Deucher +Date: Wed Mar 11 15:43:16 2009 -0400 + + radeon: restructure encoders + + move encoder specific data into encoder specific structs + + Signed-off-by: Alex Deucher + +commit 0215044d42faded71b8591a79550c0bf04908458 +Author: Alex Deucher +Date: Wed Mar 11 11:23:16 2009 -0400 + + radeon: atom modesetting updates + + Signed-off-by: Alex Deucher + +commit 121d45a2e9562836138c658224def839bb166f68 +Author: Dave Airlie +Date: Thu Mar 12 11:39:05 2009 +1000 + + drm/radeon: Don't try to use agp symbols if we don't have AGP + + The radeon_buffer.c addition that gets pulled into the DRM driver as + part of Kernel Mode Setting (even if you disable KMS for the Radeon + driver) was assuming that it was safe to use symbols from the AGP code, + but that isn't safe on platforms where __OS_HAS_AGP is 0. Such as + sparc64. :) + + This patch gets the code building again. It probably should go into the + actual kms patch, but if you would prefer this go as a separate patch, I + can apply it. With this, we can get rawhide building for sparc64, so I'm + eager to see it applied in one way or another. + + Signed-off-by: Tom "spot" Callaway + +commit 36bbbdea9a2e77c1d1da7504bc5f03267d0e0d6c +Author: Dave Airlie +Date: Thu Mar 12 10:58:05 2009 +1000 + + radeon: fixup the IB getting routine + + This makes the IB get routine a lot smarter and hopefully [...6010 lines suppressed...] -+#define DRM_IOCTL_RADEON_GEM_WAIT_IDLE DRM_IOW(DRM_COMMAND_BASE + DRM_RADEON_GEM_WAIT_IDLE, struct drm_radeon_gem_wait_idle) -+#define DRM_IOCTL_RADEON_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_CS, struct drm_radeon_cs) -+#define DRM_IOCTL_RADEON_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_INFO, struct drm_radeon_info) -+ ++#define DRM_IOCTL_RADEON_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_INFO, struct drm_radeon_gem_info) ++#define DRM_IOCTL_RADEON_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_CREATE, struct drm_radeon_gem_create) ++#define DRM_IOCTL_RADEON_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_MMAP, struct drm_radeon_gem_mmap) ++#define DRM_IOCTL_RADEON_GEM_PIN DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_PIN, struct drm_radeon_gem_pin) ++#define DRM_IOCTL_RADEON_GEM_UNPIN DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_UNPIN, struct drm_radeon_gem_unpin) ++#define DRM_IOCTL_RADEON_GEM_PREAD DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_PREAD, struct drm_radeon_gem_pread) ++#define DRM_IOCTL_RADEON_GEM_PWRITE DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_PWRITE, struct drm_radeon_gem_pwrite) ++#define DRM_IOCTL_RADEON_GEM_SET_DOMAIN DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_GEM_SET_DOMAIN, struct drm_radeon_gem_set_domain) ++#define DRM_IOCTL_RADEON_GEM_WAIT_RENDERING DRM_IOW(DRM_COMMAND_BASE + DRM_RADEON_GEM_WAIT_RENDERING, struct drm_radeon_gem_wait_rendering) ++#define DRM_IOCTL_RADEON_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_RADEON_CS, struct drm_radeon_cs) ++ ++ typedef struct drm_radeon_init { enum { -@@ -682,6 +703,7 @@ typedef struct drm_radeon_indirect { + RADEON_INIT_CP = 0x01, +@@ -680,6 +713,8 @@ typedef struct drm_radeon_indirect { #define RADEON_PARAM_VBLANK_CRTC 13 /* VBLANK CRTC */ #define RADEON_PARAM_FB_LOCATION 14 /* FB location */ #define RADEON_PARAM_NUM_GB_PIPES 15 /* num GB pipes */ -+#define RADEON_PARAM_DEVICE_ID 16 ++#define RADEON_PARAM_KERNEL_MM 16 ++#define RADEON_PARAM_DEVICE_ID 17 typedef struct drm_radeon_getparam { int param; -@@ -751,4 +773,112 @@ typedef struct drm_radeon_surface_free { +@@ -734,6 +769,7 @@ typedef struct drm_radeon_setparam { + #define RADEON_SETPARAM_NEW_MEMMAP 4 /* Use new memory map */ + #define RADEON_SETPARAM_PCIGART_TABLE_SIZE 5 /* PCI GART Table Size */ + #define RADEON_SETPARAM_VBLANK_CRTC 6 /* VBLANK CRTC */ ++#define RADEON_SETPARAM_MM_INIT 7 /* DDX wants memory manager but has no modesetting */ + /* 1.14: Clients can allocate/free a surface + */ + typedef struct drm_radeon_surface_alloc { +@@ -749,4 +785,106 @@ typedef struct drm_radeon_surface_free { #define DRM_RADEON_VBLANK_CRTC1 1 #define DRM_RADEON_VBLANK_CRTC2 2 -+/* -+ * Kernel modesetting world below. -+ */ -+#define RADEON_GEM_DOMAIN_CPU 0x1 -+#define RADEON_GEM_DOMAIN_GTT 0x2 -+#define RADEON_GEM_DOMAIN_VRAM 0x4 ++#define RADEON_GEM_DOMAIN_CPU 0x1 // Cached CPU domain ++#define RADEON_GEM_DOMAIN_GTT 0x2 // GTT or cache flushed ++#define RADEON_GEM_DOMAIN_VRAM 0x4 // VRAM domain + ++/* return to userspace start/size of gtt and vram apertures */ +struct drm_radeon_gem_info { -+ uint64_t gart_size; -+ uint64_t vram_size; -+ uint64_t vram_visible; ++ uint64_t gart_start; ++ uint64_t gart_size; ++ uint64_t vram_start; ++ uint64_t vram_size; ++ uint64_t vram_visible; +}; + -+#define RADEON_GEM_NO_BACKING_STORE 1 -+ +struct drm_radeon_gem_create { -+ uint64_t size; -+ uint64_t alignment; -+ uint32_t handle; -+ uint32_t initial_domain; -+ uint32_t flags; ++ uint64_t size; ++ uint64_t alignment; ++ uint32_t handle; ++ uint32_t initial_domain; // to allow VRAM to be created ++ uint32_t no_backing_store; // for VRAM objects - select whether they need backing store ++ // pretty much front/back/depth don't need it - other things do +}; + +struct drm_radeon_gem_mmap { -+ uint32_t handle; -+ uint32_t pad; -+ uint64_t offset; -+ uint64_t size; -+ uint64_t addr_ptr; ++ uint32_t handle; ++ uint32_t pad; ++ uint64_t offset; ++ uint64_t size; ++ uint64_t addr_ptr; +}; + +struct drm_radeon_gem_set_domain { -+ uint32_t handle; -+ uint32_t read_domains; -+ uint32_t write_domain; ++ uint32_t handle; ++ uint32_t read_domains; ++ uint32_t write_domain; +}; + -+struct drm_radeon_gem_wait_idle { -+ uint32_t handle; -+ uint32_t pad; ++struct drm_radeon_gem_wait_rendering { ++ uint32_t handle; ++}; ++ ++struct drm_radeon_gem_pin { ++ uint32_t handle; ++ uint32_t pin_domain; ++ uint64_t alignment; ++ uint64_t offset; ++}; ++ ++struct drm_radeon_gem_unpin { ++ uint32_t handle; ++ uint32_t pad; +}; + +struct drm_radeon_gem_busy { -+ uint32_t handle; -+ uint32_t busy; ++ uint32_t handle; ++ uint32_t busy; +}; + +struct drm_radeon_gem_pread { @@ -37375,8 +38670,7 @@ index fe3e3a4..ed15ce2 100644 + /** Length of data to read */ + uint64_t size; + /** Pointer to write the data into. */ -+ /* void *, but pointers are not 32/64 compatible */ -+ uint64_t data_ptr; ++ uint64_t data_ptr; /* void *, but pointers are not 32/64 compatible */ +}; + +struct drm_radeon_gem_pwrite { @@ -37388,43 +38682,28 @@ index fe3e3a4..ed15ce2 100644 + /** Length of data to write */ + uint64_t size; + /** Pointer to read the data from. */ -+ /* void *, but pointers are not 32/64 compatible */ -+ uint64_t data_ptr; ++ uint64_t data_ptr; /* void *, but pointers are not 32/64 compatible */ +}; + -+#define RADEON_CHUNK_ID_RELOCS 0x01 -+#define RADEON_CHUNK_ID_IB 0x02 + -+struct drm_radeon_cs_chunk { -+ uint32_t chunk_id; -+ uint32_t length_dw; -+ uint64_t chunk_data; -+}; ++/* New interface which obsolete all previous interface. ++ */ ++#define RADEON_CHUNK_ID_RELOCS 0x01 ++#define RADEON_CHUNK_ID_IB 0x02 ++#define RADEON_CHUNK_ID_OLD 0xff + -+struct drm_radeon_cs_reloc { -+ uint32_t handle; -+ uint32_t read_domains; -+ uint32_t write_domain; -+ uint32_t flags; ++struct drm_radeon_cs_chunk { ++ uint32_t chunk_id; ++ uint32_t length_dw; ++ uint64_t chunk_data; +}; + +struct drm_radeon_cs { -+ uint32_t num_chunks; -+ uint32_t cs_id; -+ /* this points to uint64_t * which point to cs chunks */ -+ uint64_t chunks; -+ /* updates to the limits after this CS ioctl */ -+ uint64_t gart_limit; -+ uint64_t vram_limit; -+}; -+ -+#define RADEON_INFO_DEVICE_ID 0x00 -+#define RADEON_INFO_NUM_GB_PIPES 0x01 -+ -+struct drm_radeon_info { -+ uint32_t request; -+ uint32_t pad; -+ uint64_t value; ++ uint32_t num_chunks; ++ uint32_t cs_id; ++ uint64_t chunks; /* this points to uint64_t * which point to ++ cs chunks */ +}; + ++ #endif drm-next.patch: b/drivers/gpu/drm/Makefile | 3 b/drivers/gpu/drm/ati_pcigart.c | 40 b/drivers/gpu/drm/drm_bufs.c | 122 b/drivers/gpu/drm/drm_context.c | 4 b/drivers/gpu/drm/drm_debugfs.c | 235 b/drivers/gpu/drm/drm_drv.c | 85 b/drivers/gpu/drm/drm_gem.c | 2 b/drivers/gpu/drm/drm_info.c | 328 b/drivers/gpu/drm/drm_ioc32.c | 4 b/drivers/gpu/drm/drm_memory.c | 6 b/drivers/gpu/drm/drm_proc.c | 720 b/drivers/gpu/drm/drm_stub.c | 108 b/drivers/gpu/drm/drm_sysfs.c | 37 b/drivers/gpu/drm/drm_vm.c | 32 b/drivers/gpu/drm/i810/i810_drv.h | 4 b/drivers/gpu/drm/i830/i830_drv.h | 4 b/drivers/gpu/drm/i915/Makefile | 2 b/drivers/gpu/drm/i915/i915_dma.c | 2 b/drivers/gpu/drm/i915/i915_drv.c | 44 b/drivers/gpu/drm/i915/i915_drv.h | 6 b/drivers/gpu/drm/i915/i915_gem.c | 6 b/drivers/gpu/drm/i915/i915_gem_debugfs.c | 257 b/drivers/gpu/drm/mga/mga_dma.c | 17 b/drivers/gpu/drm/mga/mga_drv.h | 8 b/drivers/gpu/drm/r128/r128_cce.c | 7 b/drivers/gpu/drm/radeon/Makefile | 2 b/drivers/gpu/drm/radeon/r300_cmdbuf.c | 6 b/drivers/gpu/drm/radeon/r600_cp.c | 2253 ++ b/drivers/gpu/drm/radeon/r600_microcode.h |23297 ++++++++++++++++++++++++++++++ b/drivers/gpu/drm/radeon/radeon_cp.c | 520 b/drivers/gpu/drm/radeon/radeon_drv.c | 22 b/drivers/gpu/drm/radeon/radeon_drv.h | 634 b/drivers/gpu/drm/radeon/radeon_irq.c | 14 b/drivers/gpu/drm/radeon/radeon_state.c | 51 b/drivers/gpu/drm/savage/savage_bci.c | 8 b/drivers/gpu/drm/via/via_drv.c | 6 b/include/drm/drmP.h | 139 b/include/drm/drm_crtc.h | 2 b/include/drm/drm_os_linux.h | 19 b/include/drm/drm_pciids.h | 111 b/include/drm/radeon_drm.h | 5 drivers/gpu/drm/i915/i915_gem_proc.c | 334 42 files changed, 28158 insertions(+), 1348 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.18 -r 1.19 drm-next.patchIndex: drm-next.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/drm-next.patch,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- drm-next.patch 9 May 2009 02:08:23 -0000 1.18 +++ drm-next.patch 25 Jul 2009 04:09:20 -0000 1.19 @@ -1,3 +1,659 @@ +commit 41f13fe81dd1b08723ab9f3fc3c7f29cfa81f1a5 +Author: Alex Deucher +Date: Mon Mar 16 15:37:02 2009 -0400 + + drm/radeon: fix logic in r600_page_table_init() to match ati_gart + + This fixes page table init on rs600. + + Signed-off-by: Alex Deucher + Signed-off-by: Dave Airlie + +commit 06f0a488c1b642d3cd7769da66600e5148c3fad8 +Author: Dave Airlie +Date: Fri Mar 13 09:35:32 2009 +1000 + + drm/radeon: r600 ptes are 64-bit, cleanup cleanup function. + + Signed-off-by: Dave Airlie + +commit 03efb8853c35aff51c7b901bf412f32765fe0fd9 +Author: Dave Airlie +Date: Tue Mar 10 18:36:38 2009 +1000 + + drm/radeon: don't call irq changes on r600 suspend/resume + + Until we sort out r600 IRQs don't do this. + + Signed-off-by: Dave Airlie + +commit d02f7fa77d97a28a4276939f35e44ae995ad13d7 +Author: Dave Airlie +Date: Tue Mar 10 18:34:23 2009 +1000 + + drm/radeon: fix r600 writeback across suspend/resume + + This update was done in mainline radeon, but not in the r600. + + Signed-off-by: Dave Airlie + +commit 6546bf6d6cbf1f9ac350fd278a1d937d4bb9ad06 +Author: Dave Airlie +Date: Mon Mar 9 15:31:20 2009 +1000 + + drm/radeon: fix r600 writeback setup. + + This fixes 2 bugs: + 1. the AGP calculation wasn't consistent with the PCI(E) calc for the + RPTR_ADDR registers. This consolidates the writes and fixes it up. + + 2. The scratch address was being incorrectly calculated, this breaks + it out into a lot more linear steps. + + Signed-off-by: Dave Airlie + +commit 1847a549ac4db1272dea13d86331c492a2640b3b +Author: Dave Airlie +Date: Mon Mar 9 12:47:18 2009 +1000 + + drm: fix warnings about new mappings in info code. + + This fixes up the warnings in the debugfs code that conflicted + with the mapping fixups. + + Signed-off-by: Dave Airlie + +commit 8f497aade8df2a619eacda927a43ebe82167a84c +Author: Hannes Eder +Date: Thu Mar 5 20:14:18 2009 +0100 + + drm/radeon: NULL noise: drivers/gpu/drm/radeon/radeon_*.c + + Fix this sparse warning: + drivers/gpu/drm/radeon/r600_cp.c:1811:52: warning: Using plain integer as NULL pointer + drivers/gpu/drm/radeon/radeon_cp.c:1363:52: warning: Using plain integer as NULL pointer + drivers/gpu/drm/radeon/radeon_state.c:1983:61: warning: Using plain integer as NULL pointer + + Signed-off-by: Hannes Eder + Signed-off-by: Dave Airlie + +commit a763d7dc0adb1159c1a52d43e566409da9fa59f0 +Author: Dave Airlie +Date: Mon Mar 9 12:17:08 2009 +1000 + + drm/radeon: fix r600 pci mapping calls. + + This realigns the r600 pci mapping calls with the ati pcigart ones, + fixing the direction and using the correct interface. + + Suggested by Jerome Glisse. + + Signed-off-by: Dave Airlie + +commit 08932156cc2d4f8807dc5ca5c3d6ccd85080610a +Author: Alex Deucher +Date: Sat Mar 7 18:21:21 2009 -0500 + + drm/radeon: r6xx/r7xx: fix possible oops in r600_page_table_cleanup() + + Signed-off-by: Alex Deucher + Signed-off-by: Dave Airlie + +commit 53c379e9462b59d4e166429ff064aaf0e7743795 +Author: Dave Airlie +Date: Mon Mar 9 12:12:28 2009 +1000 + + radeon: call the correct idle function, logic got inverted. + + This calls the correct idle function for the R600 and previous chips. + + Signed-off-by: Dave Airlie + +commit 800b69951174f7de294da575d7e7921041a7e783 +Author: Alex Deucher +Date: Fri Mar 6 11:47:54 2009 -0500 + + drm/radeon: RS600: fix interrupt handling + + the checks weren't updated when RS600 support + was added. + + Signed-off-by: Alex Deucher + Signed-off-by: Dave Airlie + +commit a7d13ad0e2c1b0572492fd53ca1a090794e2f8e2 +Author: Dave Airlie +Date: Thu Feb 26 10:15:24 2009 +1000 + + drm/r600: fix rptr address along lines of previous fixes to radeon. + + Signed-off-by: Dave Airlie + +commit eb1d91954ededc00ddcfb51e2626f114ff351524 +Author: Dave Airlie +Date: Thu Feb 26 10:14:40 2009 +1000 + + drm/r600: fixup r600 gart table accessor like ati_pcigart.c + + This attempts to fixup the r600 GART accessors so they work on other arches. + + Signed-off-by: Dave Airlie + +commit 6abf66018f7fe231720e50f9a47b142182388869 +Author: Dave Airlie +Date: Thu Feb 26 10:13:47 2009 +1000 + + drm/ati_pcigart: use memset_io to reset the memory + + Also don't setup pci_gart if we aren't going to need it. + + Signed-off-by: Dave Airlie + +commit 87f0da55353e23826a54bff57c457a13b97d18f1 +Author: Dave Airlie +Date: Thu Feb 26 10:12:10 2009 +1000 + + drm: add DRM_READ/WRITE64 wrappers around readq/writeq. + + The readq/writeq stuff is from Dave Miller, and he + warns users to be careful about using these. Plans are only + r600 to use it so far. + + Signed-off-by: Dave Airlie + +commit 8ced9c75160947d2235fba75de9413e087e1171a +Author: Alex Deucher +Date: Wed Feb 25 17:02:19 2009 -0500 + + radeon: add RS600 pci ids + + Signed-off-by: Alex Deucher + Signed-off-by: Dave Airlie + +commit c1556f71513f2e660fb2bbdc29344361b1ebff35 +Author: Alex Deucher +Date: Wed Feb 25 16:57:49 2009 -0500 + + radeon: add support for rs600 GPUs + + RS600s are an AMD IGP for Intel CPUs, that look like RS690s from + a lot of perspectives but look like r600s from a memory controller + point of view. + + Signed-off-by: Alex Deucher + Signed-off-by: Dave Airlie + +commit 7659e9804b7a66047433182d86393d38ba4eff79 +Author: Alex Deucher +Date: Wed Feb 25 15:55:01 2009 -0500 + + radeon: fix r600 AGP support + [...6565 lines suppressed...] - #define DRM_IOCTL_MGA_DMA_BOOTSTRAP DRM_IOWR(DRM_COMMAND_BASE + DRM_MGA_DMA_BOOTSTRAP, drm_mga_dma_bootstrap_t) - - typedef struct _drm_mga_warp_index { -@@ -310,7 +312,7 @@ typedef struct drm_mga_dma_bootstrap { - */ - /*@{ */ - unsigned long texture_handle; /**< Handle used to map AGP textures. */ -- uint32_t texture_size; /**< Size of the AGP texture region. */ -+ __u32 texture_size; /**< Size of the AGP texture region. */ - /*@} */ - - /** -@@ -319,7 +321,7 @@ typedef struct drm_mga_dma_bootstrap { - * On return from the DRM_MGA_DMA_BOOTSTRAP ioctl, this field will be - * filled in with the actual AGP mode. If AGP was not available - */ -- uint32_t primary_size; -+ __u32 primary_size; - - /** - * Requested number of secondary DMA buffers. -@@ -329,7 +331,7 @@ typedef struct drm_mga_dma_bootstrap { - * allocated. Particularly when PCI DMA is used, this may be - * (subtantially) less than the number requested. - */ -- uint32_t secondary_bin_count; -+ __u32 secondary_bin_count; - - /** - * Requested size of each secondary DMA buffer. -@@ -338,7 +340,7 @@ typedef struct drm_mga_dma_bootstrap { - * dma_mga_dma_bootstrap::secondary_bin_count, it is \b not allowed - * to reduce dma_mga_dma_bootstrap::secondary_bin_size. - */ -- uint32_t secondary_bin_size; -+ __u32 secondary_bin_size; - - /** - * Bit-wise mask of AGPSTAT2_* values. Currently only \c AGPSTAT2_1X, -@@ -350,12 +352,12 @@ typedef struct drm_mga_dma_bootstrap { - * filled in with the actual AGP mode. If AGP was not available - * (i.e., PCI DMA was used), this value will be zero. - */ -- uint32_t agp_mode; -+ __u32 agp_mode; - - /** - * Desired AGP GART size, measured in megabytes. - */ -- uint8_t agp_size; -+ __u8 agp_size; - } drm_mga_dma_bootstrap_t; - - typedef struct drm_mga_clear { diff --git a/include/drm/radeon_drm.h b/include/drm/radeon_drm.h -index 73ff51f..fe3e3a4 100644 +index 73ff51f..937a275 100644 --- a/include/drm/radeon_drm.h +++ b/include/drm/radeon_drm.h -@@ -33,6 +33,8 @@ - #ifndef __RADEON_DRM_H__ - #define __RADEON_DRM_H__ - -+#include -+ - /* WARNING: If you change any of these defines, make sure to change the - * defines in the X server file (radeon_sarea.h) - */ -@@ -304,6 +306,8 @@ typedef union { +@@ -304,6 +304,8 @@ typedef union { #define RADEON_SCRATCH_REG_OFFSET 32 @@ -36253,7 +31890,7 @@ index 73ff51f..fe3e3a4 100644 #define RADEON_NR_SAREA_CLIPRECTS 12 /* There are 2 heaps (local/GART). Each region within a heap is a -@@ -526,7 +530,8 @@ typedef struct drm_radeon_init { +@@ -526,7 +528,8 @@ typedef struct drm_radeon_init { RADEON_INIT_CP = 0x01, RADEON_CLEANUP_CP = 0x02, RADEON_INIT_R200_CP = 0x03, @@ -36263,117 +31900,3 @@ index 73ff51f..fe3e3a4 100644 } func; unsigned long sarea_priv_offset; int is_pci; -@@ -722,7 +727,7 @@ typedef struct drm_radeon_irq_wait { - - typedef struct drm_radeon_setparam { - unsigned int param; -- int64_t value; -+ __s64 value; - } drm_radeon_setparam_t; - - #define RADEON_SETPARAM_FB_LOCATION 1 /* determined framebuffer location */ -diff --git a/include/drm/via_drm.h b/include/drm/via_drm.h -index a3b5c10..170786e 100644 ---- a/include/drm/via_drm.h -+++ b/include/drm/via_drm.h -@@ -24,6 +24,8 @@ - #ifndef _VIA_DRM_H_ - #define _VIA_DRM_H_ - -+#include -+ - /* WARNING: These defines must be the same as what the Xserver uses. - * if you change them, you must change the defines in the Xserver. - */ -@@ -114,19 +116,19 @@ - #define VIA_MEM_UNKNOWN 4 - - typedef struct { -- uint32_t offset; -- uint32_t size; -+ __u32 offset; -+ __u32 size; - } drm_via_agp_t; - - typedef struct { -- uint32_t offset; -- uint32_t size; -+ __u32 offset; -+ __u32 size; - } drm_via_fb_t; - - typedef struct { -- uint32_t context; -- uint32_t type; -- uint32_t size; -+ __u32 context; -+ __u32 type; -+ __u32 size; - unsigned long index; - unsigned long offset; - } drm_via_mem_t; -@@ -148,9 +150,9 @@ typedef struct _drm_via_futex { - VIA_FUTEX_WAIT = 0x00, - VIA_FUTEX_WAKE = 0X01 - } func; -- uint32_t ms; -- uint32_t lock; -- uint32_t val; -+ __u32 ms; -+ __u32 lock; -+ __u32 val; - } drm_via_futex_t; - - typedef struct _drm_via_dma_init { -@@ -211,7 +213,7 @@ typedef struct _drm_via_cmdbuf_size { - VIA_CMDBUF_LAG = 0x02 - } func; - int wait; -- uint32_t size; -+ __u32 size; - } drm_via_cmdbuf_size_t; - - typedef enum { -@@ -236,8 +238,8 @@ enum drm_via_irqs { - struct drm_via_wait_irq_request { - unsigned irq; - via_irq_seq_type_t type; -- uint32_t sequence; -- uint32_t signal; -+ __u32 sequence; -+ __u32 signal; - }; - - typedef union drm_via_irqwait { -@@ -246,7 +248,7 @@ typedef union drm_via_irqwait { - } drm_via_irqwait_t; - - typedef struct drm_via_blitsync { -- uint32_t sync_handle; -+ __u32 sync_handle; - unsigned engine; - } drm_via_blitsync_t; - -@@ -257,16 +259,16 @@ typedef struct drm_via_blitsync { - */ - - typedef struct drm_via_dmablit { -- uint32_t num_lines; -- uint32_t line_length; -+ __u32 num_lines; -+ __u32 line_length; - -- uint32_t fb_addr; -- uint32_t fb_stride; -+ __u32 fb_addr; -+ __u32 fb_stride; - - unsigned char *mem_addr; -- uint32_t mem_stride; -+ __u32 mem_stride; - -- uint32_t flags; -+ __u32 flags; - int to_fb; - - drm_via_blitsync_t sync; drm-no-gem-on-i8xx.patch: i915_dma.c | 4 ++-- i915_drv.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) Index: drm-no-gem-on-i8xx.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/drm-no-gem-on-i8xx.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- drm-no-gem-on-i8xx.patch 27 May 2009 20:12:00 -0000 1.2 +++ drm-no-gem-on-i8xx.patch 25 Jul 2009 04:09:21 -0000 1.3 @@ -22,7 +22,7 @@ index a70bf77..84664fe 100644 #define IS_I865G(dev) ((dev)->pci_device == 0x2572) +#define IS_I8XX(dev) (IS_I830(dev) || IS_845G(dev) || IS_I85X(dev) || \ -+ IS_I855(dev)) ++ IS_I855(dev) || IS_I865G(dev)) + #define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a) #define IS_I915GM(dev) ((dev)->pci_device == 0x2592) drm-nouveau.patch: drivers/gpu/drm/Kconfig | 15 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/drm_fence.c | 2 drivers/gpu/drm/drm_gem.c | 50 drivers/gpu/drm/drm_stub.c | 15 drivers/gpu/drm/nouveau/Makefile | 24 drivers/gpu/drm/nouveau/nouveau_backlight.c | 156 drivers/gpu/drm/nouveau/nouveau_bios.c | 854 drivers/gpu/drm/nouveau/nouveau_bios.h | 151 drivers/gpu/drm/nouveau/nouveau_bo.c | 415 drivers/gpu/drm/nouveau/nouveau_connector.h | 52 drivers/gpu/drm/nouveau/nouveau_crtc.h | 74 drivers/gpu/drm/nouveau/nouveau_display.c | 114 drivers/gpu/drm/nouveau/nouveau_dma.c | 213 drivers/gpu/drm/nouveau/nouveau_dma.h | 106 drivers/gpu/drm/nouveau/nouveau_drv.c | 172 drivers/gpu/drm/nouveau/nouveau_drv.h | 751 drivers/gpu/drm/nouveau/nouveau_encoder.h | 46 drivers/gpu/drm/nouveau/nouveau_fb.h | 44 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 945 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 48 drivers/gpu/drm/nouveau/nouveau_fence.c | 127 drivers/gpu/drm/nouveau/nouveau_fifo.c | 703 drivers/gpu/drm/nouveau/nouveau_gem.c | 727 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 608 drivers/gpu/drm/nouveau/nouveau_mem.c | 1071 + drivers/gpu/drm/nouveau/nouveau_notifier.c | 176 drivers/gpu/drm/nouveau/nouveau_object.c | 1240 + drivers/gpu/drm/nouveau/nouveau_reg.h | 835 drivers/gpu/drm/nouveau/nouveau_sgdma.c | 336 drivers/gpu/drm/nouveau/nouveau_state.c | 1042 + drivers/gpu/drm/nouveau/nouveau_swmthd.c | 191 drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nv04_fb.c | 23 drivers/gpu/drm/nouveau/nv04_fifo.c | 147 drivers/gpu/drm/nouveau/nv04_graph.c | 527 drivers/gpu/drm/nouveau/nv04_instmem.c | 189 drivers/gpu/drm/nouveau/nv04_mc.c | 22 drivers/gpu/drm/nouveau/nv04_timer.c | 53 drivers/gpu/drm/nouveau/nv10_fb.c | 25 drivers/gpu/drm/nouveau/nv10_fifo.c | 178 drivers/gpu/drm/nouveau/nv10_graph.c | 913 + drivers/gpu/drm/nouveau/nv20_graph.c | 915 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 218 drivers/gpu/drm/nouveau/nv40_graph.c | 2191 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 596 drivers/gpu/drm/nouveau/nv50_crtc.c | 804 drivers/gpu/drm/nouveau/nv50_cursor.c | 146 drivers/gpu/drm/nouveau/nv50_dac.c | 279 drivers/gpu/drm/nouveau/nv50_display.c | 441 drivers/gpu/drm/nouveau/nv50_display.h | 44 drivers/gpu/drm/nouveau/nv50_display_commands.h | 195 drivers/gpu/drm/nouveau/nv50_fbcon.c | 220 drivers/gpu/drm/nouveau/nv50_fifo.c | 353 drivers/gpu/drm/nouveau/nv50_graph.c | 345 drivers/gpu/drm/nouveau/nv50_grctx.h |20935 ++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_i2c.c | 400 drivers/gpu/drm/nouveau/nv50_i2c.h | 47 drivers/gpu/drm/nouveau/nv50_instmem.c | 379 drivers/gpu/drm/nouveau/nv50_mc.c | 43 drivers/gpu/drm/nouveau/nv50_sor.c | 277 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 299 68 files changed, 42696 insertions(+), 48 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.59 -r 1.60 drm-nouveau.patchIndex: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/drm-nouveau.patch,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- drm-nouveau.patch 22 Jul 2009 05:06:09 -0000 1.59 +++ drm-nouveau.patch 25 Jul 2009 04:09:21 -0000 1.60 @@ -103,7 +103,7 @@ index f1c386c..fd62fd9 100644 if (mask & ~fence->type) { DRM_ERROR("Wait trying to extend fence type" diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c -index 4984aa8..dee9b40 100644 +index c1173d8..2e4e667 100644 --- a/drivers/gpu/drm/drm_gem.c +++ b/drivers/gpu/drm/drm_gem.c @@ -280,48 +280,58 @@ drm_gem_close_ioctl(struct drm_device *dev, void *data, @@ -185,9 +185,58 @@ index 4984aa8..dee9b40 100644 mutex_lock(&dev->struct_mutex); drm_gem_object_unreference(obj); mutex_unlock(&dev->struct_mutex); +diff --git a/drivers/gpu/drm/drm_stub.c b/drivers/gpu/drm/drm_stub.c +index 5d45cbf..e3b0a76 100644 +--- a/drivers/gpu/drm/drm_stub.c ++++ b/drivers/gpu/drm/drm_stub.c +@@ -406,14 +406,14 @@ int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, + if (dev->driver->load) { + ret = dev->driver->load(dev, ent->driver_data); + if (ret) +- goto err_g3; ++ goto err_g4; + } + + /* setup the grouping for the legacy output */ + if (drm_core_check_feature(dev, DRIVER_MODESET)) { + ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group); + if (ret) +- goto err_g3; ++ goto err_g4; + } + + list_add_tail(&dev->driver_item, &driver->device_list); +@@ -424,8 +424,11 @@ int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, + + return 0; + +-err_g3: ++err_g4: + drm_put_minor(&dev->primary); ++err_g3: ++ if (drm_core_check_feature(dev, DRIVER_MODESET)) ++ drm_put_minor(&dev->control); + err_g2: + pci_disable_device(pdev); + err_g1: +@@ -507,11 +510,11 @@ void drm_put_dev(struct drm_device *dev) + dev->agp = NULL; + } + +- drm_ht_remove(&dev->map_hash); +- drm_ctxbitmap_cleanup(dev); +- + list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) + drm_rmmap(dev, r_list->map); ++ drm_ht_remove(&dev->map_hash); ++ ++ drm_ctxbitmap_cleanup(dev); + + if (drm_core_check_feature(dev, DRIVER_MODESET)) + drm_put_minor(&dev->control); diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile new file mode 100644 -index 0000000..06483d0 +index 0000000..12af41b --- /dev/null +++ b/drivers/gpu/drm/nouveau/Makefile @@ -0,0 +1,24 @@ @@ -200,8 +249,8 @@ index 0000000..06483d0 + nouveau_object.o nouveau_irq.o nouveau_notifier.o \ + nouveau_swmthd.o nouveau_sgdma.o nouveau_dma.o \ + nouveau_bo.o nouveau_fence.o nouveau_gem.o \ -+ nouveau_hw.o nouveau_calc.o nouveau_bios.o nouveau_i2c.o \ -+ nouveau_display.o nouveau_fbcon.o nouveau_backlight.o \ ++ nouveau_bios.o nouveau_display.o nouveau_fbcon.o \ ++ nouveau_backlight.o \ + nv04_timer.o \ + nv04_mc.o nv40_mc.o nv50_mc.o \ + nv04_fb.o nv10_fb.o nv40_fb.o \ @@ -210,17 +259,17 @@ index 0000000..06483d0 + nv40_graph.o nv50_graph.o \ + nv04_instmem.o nv50_instmem.o \ + nv50_crtc.o nv50_dac.o nv50_sor.o nv50_connector.o \ -+ nv50_cursor.o nv50_display.o nv50_fbcon.o ++ nv50_cursor.o nv50_i2c.o nv50_display.o nv50_fbcon.o + +nouveau-$(CONFIG_COMPAT) += nouveau_ioc32.o + +obj-$(CONFIG_DRM_NOUVEAU)+= nouveau.o diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c new file mode 100644 -index 0000000..e3d354f +index 0000000..3fc521e --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_backlight.c -@@ -0,0 +1,152 @@ +@@ -0,0 +1,156 @@ +/* + * Copyright (C) 2009 Red Hat + * @@ -263,6 +312,7 @@ index 0000000..e3d354f +static int nv40_get_intensity(struct backlight_device *bd) +{ + struct drm_device *dev = bl_get_data(bd); ++ struct drm_nouveau_private *dev_priv = dev->dev_private; + int val = (nv_rd32(NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK) >> 16; + + return val; @@ -271,6 +321,7 @@ index 0000000..e3d354f +static int nv40_set_intensity(struct backlight_device *bd) +{ + struct drm_device *dev = bl_get_data(bd); ++ struct drm_nouveau_private *dev_priv = dev->dev_private; + int val = bd->props.brightness; + int reg = nv_rd32(NV40_PMC_BACKLIGHT); + @@ -289,6 +340,7 @@ index 0000000..e3d354f +static int nv50_get_intensity(struct backlight_device *bd) +{ + struct drm_device *dev = bl_get_data(bd); ++ struct drm_nouveau_private *dev_priv = dev->dev_private; + + return nv_rd32(NV50_PDISPLAY_BACKLIGHT); +} @@ -296,6 +348,7 @@ index 0000000..e3d354f +static int nv50_set_intensity(struct backlight_device *bd) +{ + struct drm_device *dev = bl_get_data(bd); ++ struct drm_nouveau_private *dev_priv = dev->dev_private; + int val = bd->props.brightness; + + nv_wr32(NV50_PDISPLAY_BACKLIGHT, val | NV50_PDISPLAY_BACKLIGHT_ENABLE); @@ -375,66 +428,45 @@ index 0000000..e3d354f +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..d63baf3 +index 0000000..bcbedb7 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c -@@ -0,0 +1,4852 @@ +@@ -0,0 +1,854 @@ +/* -+ * Copyright 2005-2006 Erik Waling -+ * Copyright 2006 Stephane Marchesin -+ * Copyright 2007-2009 Stuart Bennett ++ * Copyright (C) 2005-2006 Erik Waling ++ * Copyright (C) 2006 Stephane Marchesin ++ * Copyright (C) 2007-2008 Stuart Bennett ++ * Copyright (C) 2008 Maarten Maathuis. ++ * All Rights Reserved. + * -+ * Permission is hereby granted, free of charge, to any person obtaining a -+ * copy of this software and associated documentation files (the "Software"), -+ * to deal in the Software without restriction, including without limitation -+ * the rights to use, copy, modify, merge, publish, distribute, sublicense, -+ * and/or sell copies of the Software, and to permit persons to whom the -+ * Software is furnished to do so, subject to the following conditions: ++ * Permission is hereby granted, free of charge, to any person obtaining ++ * a copy of this software and associated documentation files (the ++ * "Software"), to deal in the Software without restriction, including ++ * without limitation the rights to use, copy, modify, merge, publish, ++ * distribute, sublicense, and/or sell copies of the Software, and to ++ * permit persons to whom the Software is furnished to do so, subject to ++ * the following conditions: + * -+ * The above copyright notice and this permission notice shall be included in -+ * all copies or substantial portions of the Software. ++ * The above copyright notice and this permission notice (including the ++ * next paragraph) shall be included in all copies or substantial ++ * portions of the Software. ++ * ++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ++ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ++ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. ++ * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE ++ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ++ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ++ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * -+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -+ * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -+ * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -+ * SOFTWARE. + */ + -+#include "drmP.h" ++#include [...22225 lines suppressed...] -+# define NV_PRAMDAC_CU_START_POS_Y 31:16 -+#define NV_RAMDAC_NV10_CURSYNC 0x00680404 -+ -+#define NV_PRAMDAC_NVPLL_COEFF 0x00680500 -+#define NV_PRAMDAC_MPLL_COEFF 0x00680504 -+#define NV_PRAMDAC_VPLL_COEFF 0x00680508 -+# define NV30_RAMDAC_ENABLE_VCO2 (8 << 4) -+ -+#define NV_PRAMDAC_PLL_COEFF_SELECT 0x0068050c -+# define NV_RAMDAC_PLL_SELECT_USE_VPLL2_TRUE (4 << 0) -+# define NV_PRAMDAC_PLL_COEFF_SELECT_SOURCE_PROG_MPLL (1 << 8) -+# define NV_PRAMDAC_PLL_COEFF_SELECT_SOURCE_PROG_VPLL (2 << 8) -+# define NV_PRAMDAC_PLL_COEFF_SELECT_SOURCE_PROG_NVPLL (4 << 8) -+# define NV_RAMDAC_PLL_SELECT_PLL_SOURCE_VPLL2 (8 << 8) -+# define NV_PRAMDAC_PLL_COEFF_SELECT_VCLK_RATIO_DB2 (1 << 28) -+# define NV_RAMDAC_PLL_SELECT_VCLK2_RATIO_DB2 (2 << 28) -+ -+#define NV_PRAMDAC_PLL_SETUP_CONTROL 0x00680510 -+#define NV_RAMDAC_VPLL2 0x00680520 -+#define NV_PRAMDAC_SEL_CLK 0x00680524 -+#define NV_RAMDAC_DITHER_NV11 0x00680528 -+#define NV_PRAMDAC_DACCLK 0x0068052c -+# define NV_PRAMDAC_DACCLK_SEL_DACCLK (1 << 0) -+ -+#define NV_RAMDAC_NVPLL_B 0x00680570 -+#define NV_RAMDAC_MPLL_B 0x00680574 -+#define NV_RAMDAC_VPLL_B 0x00680578 -+#define NV_RAMDAC_VPLL2_B 0x0068057c -+# define NV31_RAMDAC_ENABLE_VCO2 (8 << 28) -+#define NV_PRAMDAC_580 0x00680580 -+# define NV_RAMDAC_580_VPLL1_ACTIVE (1 << 8) -+# define NV_RAMDAC_580_VPLL2_ACTIVE (1 << 28) -+ -+#define NV_PRAMDAC_GENERAL_CONTROL 0x00680600 -+#define NV_PRAMDAC_TEST_CONTROL 0x00680608 -+# define NV_PRAMDAC_TEST_CONTROL_TP_INS_EN_ASSERTED (1 << 12) -+# define NV_PRAMDAC_TEST_CONTROL_PWRDWN_DAC_OFF (1 << 16) -+# define NV_PRAMDAC_TEST_CONTROL_SENSEB_ALLHI (1 << 28) -+#define NV_PRAMDAC_TESTPOINT_DATA 0x00680610 -+# define NV_PRAMDAC_TESTPOINT_DATA_NOTBLANK (8 << 28) -+#define NV_PRAMDAC_630 0x00680630 -+#define NV_PRAMDAC_634 0x00680634 -+ -+#define NV_PRAMDAC_FP_VDISPLAY_END 0x00680800 -+#define NV_PRAMDAC_FP_VTOTAL 0x00680804 -+#define NV_PRAMDAC_FP_VCRTC 0x00680808 -+#define NV_PRAMDAC_FP_VSYNC_START 0x0068080c -+#define NV_PRAMDAC_FP_VSYNC_END 0x00680810 -+#define NV_PRAMDAC_FP_VVALID_START 0x00680814 -+#define NV_PRAMDAC_FP_VVALID_END 0x00680818 -+#define NV_PRAMDAC_FP_HDISPLAY_END 0x00680820 -+#define NV_PRAMDAC_FP_HTOTAL 0x00680824 -+#define NV_PRAMDAC_FP_HCRTC 0x00680828 -+#define NV_PRAMDAC_FP_HSYNC_START 0x0068082c -+#define NV_PRAMDAC_FP_HSYNC_END 0x00680830 -+#define NV_PRAMDAC_FP_HVALID_START 0x00680834 -+#define NV_PRAMDAC_FP_HVALID_END 0x00680838 -+ -+#define NV_RAMDAC_FP_DITHER 0x0068083c -+#define NV_PRAMDAC_FP_TG_CONTROL 0x00680848 -+# define NV_PRAMDAC_FP_TG_CONTROL_VSYNC_POS (1 << 0) -+# define NV_PRAMDAC_FP_TG_CONTROL_VSYNC_DISABLE (2 << 0) -+# define NV_PRAMDAC_FP_TG_CONTROL_HSYNC_POS (1 << 4) -+# define NV_PRAMDAC_FP_TG_CONTROL_HSYNC_DISABLE (2 << 4) -+# define NV_PRAMDAC_FP_TG_CONTROL_MODE_SCALE (0 << 8) -+# define NV_PRAMDAC_FP_TG_CONTROL_MODE_CENTER (1 << 8) -+# define NV_PRAMDAC_FP_TG_CONTROL_MODE_NATIVE (2 << 8) -+# define NV_PRAMDAC_FP_TG_CONTROL_READ_PROG (1 << 20) -+# define NV_PRAMDAC_FP_TG_CONTROL_WIDTH_12 (1 << 24) -+# define NV_PRAMDAC_FP_TG_CONTROL_DISPEN_POS (1 << 28) -+# define NV_PRAMDAC_FP_TG_CONTROL_DISPEN_DISABLE (2 << 28) -+#define NV_PRAMDAC_850 0x00680850 -+#define NV_PRAMDAC_85C 0x0068085c -+#define NV_PRAMDAC_FP_DEBUG_0 0x00680880 -+# define NV_PRAMDAC_FP_DEBUG_0_XSCALE_ENABLE (1 << 0) -+# define NV_PRAMDAC_FP_DEBUG_0_YSCALE_ENABLE (1 << 4) -+/* This doesn't seem to be essential for tmds, but still often set */ -+# define NV_RAMDAC_FP_DEBUG_0_TMDS_ENABLED (8 << 4) -+# define NV_PRAMDAC_FP_DEBUG_0_XINTERP_BILINEAR (1 << 8) -+# define NV_PRAMDAC_FP_DEBUG_0_YINTERP_BILINEAR (1 << 12) -+# define NV_PRAMDAC_FP_DEBUG_0_XWEIGHT_ROUND (1 << 20) -+# define NV_PRAMDAC_FP_DEBUG_0_YWEIGHT_ROUND (1 << 24) -+# define NV_PRAMDAC_FP_DEBUG_0_PWRDOWN_FPCLK (1 << 28) -+#define NV_PRAMDAC_FP_DEBUG_1 0x00680884 -+# define NV_PRAMDAC_FP_DEBUG_1_XSCALE_VALUE 11:0 -+# define NV_PRAMDAC_FP_DEBUG_1_XSCALE_TESTMODE_ENABLE (1 << 12) -+# define NV_PRAMDAC_FP_DEBUG_1_YSCALE_VALUE 27:16 -+# define NV_PRAMDAC_FP_DEBUG_1_YSCALE_TESTMODE_ENABLE (1 << 28) -+#define NV_PRAMDAC_FP_DEBUG_2 0x00680888 -+#define NV_PRAMDAC_FP_DEBUG_3 0x0068088C -+ -+/* see NV_PRAMDAC_INDIR_TMDS in rules.xml */ -+#define NV_PRAMDAC_FP_TMDS_CONTROL 0x006808b0 -+# define NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE (1 << 16) -+#define NV_PRAMDAC_FP_TMDS_DATA 0x006808b4 -+ -+/* Some kind of switch */ -+#define NV_PRAMDAC_900 0x00680900 -+#define NV_PRAMDAC_A20 0x00680A20 -+#define NV_PRAMDAC_A24 0x00680A24 -+#define NV_PRAMDAC_A34 0x00680A34 -+ -+/* names fabricated from NV_USER_DAC info */ -+#define NV_PRMDIO_PIXEL_MASK 0x006813c6 -+# define NV_PRMDIO_PIXEL_MASK_MASK 0xff -+#define NV_PRMDIO_READ_MODE_ADDRESS 0x006813c7 -+#define NV_PRMDIO_WRITE_MODE_ADDRESS 0x006813c8 -+#define NV_PRMDIO_PALETTE_DATA 0x006813c9 -+ -+#define NV_PGRAPH_DEBUG_0 0x00400080 -+#define NV_PGRAPH_DEBUG_1 0x00400084 -+#define NV_PGRAPH_DEBUG_2_NV04 0x00400088 -+#define NV_PGRAPH_DEBUG_2 0x00400620 -+#define NV_PGRAPH_DEBUG_3 0x0040008c -+#define NV_PGRAPH_DEBUG_4 0x00400090 -+#define NV_PGRAPH_INTR 0x00400100 -+#define NV_PGRAPH_INTR_EN 0x00400140 -+#define NV_PGRAPH_CTX_CONTROL 0x00400144 -+#define NV_PGRAPH_CTX_CONTROL_NV04 0x00400170 -+#define NV_PGRAPH_ABS_UCLIP_XMIN 0x0040053C -+#define NV_PGRAPH_ABS_UCLIP_YMIN 0x00400540 -+#define NV_PGRAPH_ABS_UCLIP_XMAX 0x00400544 -+#define NV_PGRAPH_ABS_UCLIP_YMAX 0x00400548 -+#define NV_PGRAPH_BETA_AND 0x00400608 -+#define NV_PGRAPH_LIMIT_VIOL_PIX 0x00400610 -+#define NV_PGRAPH_BOFFSET0 0x00400640 -+#define NV_PGRAPH_BOFFSET1 0x00400644 -+#define NV_PGRAPH_BOFFSET2 0x00400648 -+#define NV_PGRAPH_BLIMIT0 0x00400684 -+#define NV_PGRAPH_BLIMIT1 0x00400688 -+#define NV_PGRAPH_BLIMIT2 0x0040068c -+#define NV_PGRAPH_STATUS 0x00400700 -+#define NV_PGRAPH_SURFACE 0x00400710 -+#define NV_PGRAPH_STATE 0x00400714 -+#define NV_PGRAPH_FIFO 0x00400720 -+#define NV_PGRAPH_PATTERN_SHAPE 0x00400810 -+#define NV_PGRAPH_TILE 0x00400b00 -+ -+#define NV_PVIDEO_INTR_EN 0x00008140 -+#define NV_PVIDEO_BUFFER 0x00008700 -+#define NV_PVIDEO_STOP 0x00008704 -+#define NV_PVIDEO_UVPLANE_BASE(buff) (0x00008800+(buff)*4) -+#define NV_PVIDEO_UVPLANE_LIMIT(buff) (0x00008808+(buff)*4) -+#define NV_PVIDEO_UVPLANE_OFFSET_BUFF(buff) (0x00008820+(buff)*4) -+#define NV_PVIDEO_BASE(buff) (0x00008900+(buff)*4) -+#define NV_PVIDEO_LIMIT(buff) (0x00008908+(buff)*4) -+#define NV_PVIDEO_LUMINANCE(buff) (0x00008910+(buff)*4) -+#define NV_PVIDEO_CHROMINANCE(buff) (0x00008918+(buff)*4) -+#define NV_PVIDEO_OFFSET_BUFF(buff) (0x00008920+(buff)*4) -+#define NV_PVIDEO_SIZE_IN(buff) (0x00008928+(buff)*4) -+#define NV_PVIDEO_POINT_IN(buff) (0x00008930+(buff)*4) -+#define NV_PVIDEO_DS_DX(buff) (0x00008938+(buff)*4) -+#define NV_PVIDEO_DT_DY(buff) (0x00008940+(buff)*4) -+#define NV_PVIDEO_POINT_OUT(buff) (0x00008948+(buff)*4) -+#define NV_PVIDEO_SIZE_OUT(buff) (0x00008950+(buff)*4) -+#define NV_PVIDEO_FORMAT(buff) (0x00008958+(buff)*4) -+# define NV_PVIDEO_FORMAT_PLANAR (1 << 0) -+# define NV_PVIDEO_FORMAT_COLOR_LE_CR8YB8CB8YA8 (1 << 16) -+# define NV_PVIDEO_FORMAT_DISPLAY_COLOR_KEY (1 << 20) -+# define NV_PVIDEO_FORMAT_MATRIX_ITURBT709 (1 << 24) -+#define NV_PVIDEO_COLOR_KEY 0x00008B00 -+ -+/* NV04 overlay defines from VIDIX & Haiku */ -+#define NV_PVIDEO_INTR_EN_0 0x00680140 -+#define NV_PVIDEO_STEP_SIZE 0x00680200 -+#define NV_PVIDEO_CONTROL_Y 0x00680204 -+#define NV_PVIDEO_CONTROL_X 0x00680208 -+#define NV_PVIDEO_BUFF0_START_ADDRESS 0x0068020c -+#define NV_PVIDEO_BUFF0_PITCH_LENGTH 0x00680214 -+#define NV_PVIDEO_BUFF0_OFFSET 0x0068021c -+#define NV_PVIDEO_BUFF1_START_ADDRESS 0x00680210 -+#define NV_PVIDEO_BUFF1_PITCH_LENGTH 0x00680218 -+#define NV_PVIDEO_BUFF1_OFFSET 0x00680220 -+#define NV_PVIDEO_OE_STATE 0x00680224 -+#define NV_PVIDEO_SU_STATE 0x00680228 -+#define NV_PVIDEO_RM_STATE 0x0068022c -+#define NV_PVIDEO_WINDOW_START 0x00680230 -+#define NV_PVIDEO_WINDOW_SIZE 0x00680234 -+#define NV_PVIDEO_FIFO_THRES_SIZE 0x00680238 -+#define NV_PVIDEO_FIFO_BURST_LENGTH 0x0068023c -+#define NV_PVIDEO_KEY 0x00680240 -+#define NV_PVIDEO_OVERLAY 0x00680244 -+#define NV_PVIDEO_RED_CSC_OFFSET 0x00680280 -+#define NV_PVIDEO_GREEN_CSC_OFFSET 0x00680284 -+#define NV_PVIDEO_BLUE_CSC_OFFSET 0x00680288 -+#define NV_PVIDEO_CSC_ADJUST 0x0068028c -+ -+#endif diff --git a/include/drm/Kbuild b/include/drm/Kbuild index b940fdf..cfa6af4 100644 --- a/include/drm/Kbuild @@ -49627,7 +42929,7 @@ index b940fdf..cfa6af4 100644 unifdef-y += via_drm.h +unifdef-y += nouveau_drm.h diff --git a/include/drm/drmP.h b/include/drm/drmP.h -index 04fbd1e..f2a6bff 100644 +index b61b0c6..5b7ce2d 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1267,6 +1267,8 @@ extern void drm_idlelock_release(struct drm_lock_data *lock_data); git-bluetooth.patch: drivers/bluetooth/bfusb.c | 3 drivers/bluetooth/bt3c_cs.c | 4 drivers/bluetooth/btusb.c | 40 +- drivers/bluetooth/hci_h4.c | 3 drivers/bluetooth/hci_ll.c | 3 include/net/bluetooth/bluetooth.h | 12 include/net/bluetooth/hci.h | 8 include/net/bluetooth/hci_core.h | 84 +++-- include/net/bluetooth/l2cap.h | 13 include/net/bluetooth/rfcomm.h | 20 - net/bluetooth/af_bluetooth.c | 17 - net/bluetooth/cmtp/core.c | 3 net/bluetooth/hci_conn.c | 64 ++-- net/bluetooth/hci_core.c | 3 net/bluetooth/hci_event.c | 26 + net/bluetooth/l2cap.c | 602 +++++++++++++++++++++++++++----------- net/bluetooth/rfcomm/core.c | 179 ++++++----- net/bluetooth/rfcomm/sock.c | 189 +++++++++++ net/bluetooth/sco.c | 57 +++ 19 files changed, 968 insertions(+), 362 deletions(-) Index: git-bluetooth.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/git-bluetooth.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- git-bluetooth.patch 12 May 2009 13:54:05 -0000 1.3 +++ git-bluetooth.patch 25 Jul 2009 04:09:22 -0000 1.4 @@ -1,256 +1,4 @@ -commit 1e3ea965efd7fafb6b882956fe23613574dfe80e -Author: Marcel Holtmann -Date: Sat May 9 12:09:21 2009 -0700 - - Bluetooth: Don't trigger disconnect timeout for security mode 3 pairing - - A remote device in security mode 3 that tries to connect will require - the pairing during the connection setup phase. The disconnect timeout - is now triggered within 10 milliseconds and causes the pairing to fail. - - If a connection is not fully established and a PIN code request is - received, don't trigger the disconnect timeout. The either successful - or failing connection complete event will make sure that the timeout - is triggered at the right time. - - The biggest problem with security mode 3 is that many Bluetooth 2.0 - device and before use a temporary security mode 3 for dedicated - bonding. - - Based on a report by Johan Hedberg - - Signed-off-by: Marcel Holtmann - Tested-by: Johan Hedberg - -commit c5bf7426a6360fbdfc45fe25d6731733dca1e53e -Author: Marcel Holtmann -Date: Sat May 9 12:04:08 2009 -0700 - - Bluetooth: Don't use hci_acl_connect_cancel() for incoming connections - - The connection setup phase takes around 2 seconds or longer and in - that time it is possible that the need for an ACL connection is no - longer present. If that happens then, the connection attempt will - be canceled. - - This only applies to outgoing connections, but currently it can also - be triggered by incoming connection. Don't call hci_acl_connect_cancel() - on incoming connection since these have to be either accepted or rejected - in this state. Once they are successfully connected they need to be - fully disconnected anyway. - - Also remove the wrong hci_acl_disconn() call for SCO and eSCO links - since at this stage they can't be disconnected either, because the - connection handle is still unknown. - - Based on a report by Johan Hedberg - - Signed-off-by: Marcel Holtmann - Tested-by: Johan Hedberg - -commit 17c2c44c6c6d4a060b6d77eb81a0437f50879d1a -Author: Marcel Holtmann -Date: Fri May 8 18:20:43 2009 -0700 - - Bluetooth: Fix wrong module refcount when connection setup fails - - The module refcount is increased by hci_dev_hold() call in hci_conn_add() - and decreased by hci_dev_put() call in del_conn(). In case the connection - setup fails, hci_dev_put() is never called. - - Procedure to reproduce the issue: - - # hciconfig hci0 up - # lsmod | grep btusb -> "used by" refcount = 1 - - # hcitool cc -> will get timeout - - # lsmod | grep btusb -> "used by" refcount = 2 - # hciconfig hci0 down - # lsmod | grep btusb -> "used by" refcount = 1 - # rmmod btusb -> ERROR: Module btusb is in use - - The hci_dev_put() call got moved into del_conn() with the 2.6.25 kernel - to fix an issue with hci_dev going away before hci_conn. However that - change was wrong and introduced this problem. - - When calling hci_conn_del() it has to call hci_dev_put() after freeing - the connection details. This handling should be fully symmetric. The - execution of del_conn() is done in a work queue and needs it own calls - to hci_dev_hold() and hci_dev_put() to ensure that the hci_dev stays - until the connection cleanup has been finished. - - Based on a report by Bing Zhao - - Signed-off-by: Marcel Holtmann - Tested-by: Bing Zhao - -commit 5e9f9314a7da0b3a52d23a574770dc06f7ab7318 -Author: Marcel Holtmann -Date: Tue Apr 28 09:04:55 2009 -0700 - - Bluetooth: Fix connection establishment with low security requirement - - The Bluetooth 2.1 specification introduced four different security modes - that can be mapped using Legacy Pairing and Simple Pairing. With the - usage of Simple Pairing it is required that all connections (except - the ones for SDP) are encrypted. So even the low security requirement - mandates an encrypted connection when using Simple Pairing. When using - Legacy Pairing (for Bluetooth 2.0 devices and older) this is not required - since it causes interoperability issues. - - To support this properly the low security requirement translates into - different host controller transactions depending if Simple Pairing is - supported or not. However in case of Simple Pairing the command to - switch on encryption after a successful authentication is not triggered - for the low security mode. This patch fixes this and actually makes - the logic to differentiate between Simple Pairing and Legacy Pairing - a lot simpler. - - Based on a report by Ville Tervo - - Signed-off-by: Marcel Holtmann - -commit f9a02cb37e0321844fc6532a8531dcfedc2b7dff -Author: Marcel Holtmann -Date: Sun Apr 26 20:01:22 2009 +0200 - - Bluetooth: Add different pairing timeout for Legacy Pairing - - The Bluetooth stack uses a reference counting for all established ACL - links and if no user (L2CAP connection) is present, the link will be - terminated to save power. The problem part is the dedicated pairing - when using Legacy Pairing (Bluetooth 2.0 and before). At that point - no user is present and pairing attempts will be disconnected within - 10 seconds or less. In previous kernel version this was not a problem - since the disconnect timeout wasn't triggered on incoming connections - for the first time. However this caused issues with broken host stacks - that kept the connections around after dedicated pairing. When the - support for Simple Pairing got added, the link establishment procedure - needed to be changed and now causes issues when using Legacy Pairing - - When using Simple Pairing it is possible to do a proper reference - counting of ACL link users. With Legacy Pairing this is not possible - since the specification is unclear in some areas and too many broken - Bluetooth devices have already been deployed. So instead of trying to - deal with all the broken devices, a special pairing timeout will be - introduced that increases the timeout to 60 seconds when pairing is - triggered. - - If a broken devices now puts the stack into an unforeseen state, the - worst that happens is the disconnect timeout triggers after 120 seconds - instead of 4 seconds. This allows successful pairings with legacy and - broken devices now. - - Based on a report by Johan Hedberg - - Signed-off-by: Marcel Holtmann - -commit b91cd64b1639c33bc53279dd3ea78c26a8c59928 -Author: Roger Quadros -Date: Thu Apr 23 14:50:54 2009 +0300 - - Bluetooth: Ensure that HCI sysfs add/del is preempt safe - - Use a different work_struct variables for add_conn() and del_conn() and - use single work queue instead of two for adding and deleting connections. - - It eliminates the following error on a preemptible kernel: - - [ 204.358032] Unable to handle kernel NULL pointer dereference at virtual address 0000000c - [ 204.370697] pgd = c0004000 - [ 204.373443] [0000000c] *pgd=00000000 - [ 204.378601] Internal error: Oops: 17 [#1] PREEMPT - [ 204.383361] Modules linked in: vfat fat rfcomm sco l2cap sd_mod scsi_mod iphb pvr2d drm omaplfb ps - [ 204.438537] CPU: 0 Not tainted (2.6.28-maemo2 #1) - [ 204.443664] PC is at klist_put+0x2c/0xb4 - [ 204.447601] LR is at klist_put+0x18/0xb4 - [ 204.451568] pc : [] lr : [] psr: a0000113 - [ 204.451568] sp : cf1b3f10 ip : cf1b3f10 fp : cf1b3f2c - [ 204.463104] r10: 00000000 r9 : 00000000 r8 : bf08029c - [ 204.468353] r7 : c7869200 r6 : cfbe2690 r5 : c78692c8 r4 : 00000001 - [ 204.474945] r3 : 00000001 r2 : cf1b2000 r1 : 00000001 r0 : 00000000 - [ 204.481506] Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment kernel - [ 204.488861] Control: 10c5387d Table: 887fc018 DAC: 00000017 - [ 204.494628] Process btdelconn (pid: 515, stack limit = 0xcf1b22e0) - - Signed-off-by: Roger Quadros - Signed-off-by: Marcel Holtmann - -commit d7c26bff6fb2869ff5ee6a5f5911844d559bf77f -Author: Marcel Holtmann -Date: Sun Apr 19 19:30:03 2009 +0200 - - Bluetooth: Add workaround for wrong HCI event in eSCO setup - - The Broadcom chips with 2.1 firmware handle the fallback case to a SCO - link wrongly when setting up eSCO connections. - - < HCI Command: Setup Synchronous Connection (0x01|0x0028) plen 17 - handle 11 voice setting 0x0060 - > HCI Event: Command Status (0x0f) plen 4 - Setup Synchronous Connection (0x01|0x0028) status 0x00 ncmd 1 - > HCI Event: Connect Complete (0x03) plen 11 - status 0x00 handle 1 bdaddr 00:1E:3A:xx:xx:xx type SCO encrypt 0x01 - - The Link Manager negotiates the fallback to SCO, but then sends out - a Connect Complete event. This is wrong and the Link Manager should - actually send a Synchronous Connection Complete event if the Setup - Synchronous Connection has been used. Only the remote side is allowed - to use Connect Complete to indicate the missing support for eSCO in - the host stack. - - This patch adds a workaround for this which clearly should not be - needed, but reality is that broken Broadcom devices are deployed. - - Based on a report by Ville Tervo - - Signed-off-by: Marcel Holtman - -commit dd5214b3789cdeb63e4d866feba29b93c0d609b5 -Author: Marcel Holtmann -Date: Sun Apr 19 19:14:14 2009 +0200 - - Bluetooth: Fallback from eSCO to SCO on unspecified error - - Some Bluetooth chips (like the ones from Texas Instruments) don't do - proper eSCO negotiations inside the Link Manager. They just return an - error code and in case of the Kyocera ED-8800 headset it is just a - random error. - - < HCI Command: Setup Synchronous Connection 0x01|0x0028) plen 17 - handle 1 voice setting 0x0060 - > HCI Event: Command Status (0x0f) plen 4 - Setup Synchronous Connection (0x01|0x0028) status 0x00 ncmd 1 - > HCI Event: Synchronous Connect Complete (0x2c) plen 17 - status 0x1f handle 257 bdaddr 00:14:0A:xx:xx:xx type eSCO - Error: Unspecified Error - - In these cases it is up to the host stack to fallback to a SCO setup - and so retry with SCO parameters. - - Based on a report by Nick Pelly - - Signed-off-by: Marcel Holtmann - -commit 7441ee220db28dbba9987421de4ae7df878bbfb0 -Author: Johan Hedberg -Date: Thu Mar 26 16:41:56 2009 +0200 - - Bluetooth: Fix removing of RFCOMM DLC timer with DEFER_SETUP - - There is a missing call to rfcomm_dlc_clear_timer in the case that - DEFER_SETUP is used and so the connection gets disconnected after the - timeout even if it was successfully accepted previously. - - This patch adds a call to rfcomm_dlc_clear_timer to rfcomm_dlc_accept - which will get called when the user accepts the connection by calling - read() on the socket. - - Signed-off-by: Johan Hedberg - Signed-off-by: Marcel Holtmann - -commit 55294d00155240ba9008e495dcceaf255fbb9ee6 +commit b1fb06830dc870d862f7f80e276130c0ab84d59f Author: Wei Yongjun Date: Wed Feb 25 18:09:33 2009 +0800 @@ -261,7 +9,7 @@ Date: Wed Feb 25 18:09:33 2009 +0800 Signed-off-by: Wei Yongjun Signed-off-by: Marcel Holtmann -commit c46694e3a88224e52e5a2188b84d57ae2aa02a44 +commit 7585b97a48180f754ebdade1be94092e36bef365 Author: Wei Yongjun Date: Wed Feb 25 18:29:52 2009 +0800 @@ -272,7 +20,7 @@ Date: Wed Feb 25 18:29:52 2009 +0800 Signed-off-by: Wei Yongjun Signed-off-by: Marcel Holtmann -commit b138d79a7612a3d5dbc62115119c0db9f90b6e19 +commit 2ae9a6be5f476f3512839a4d11a8f432bfd2914c Author: Dave Young Date: Sat Feb 21 16:13:34 2009 +0800 @@ -479,7 +227,7 @@ Date: Sat Feb 21 16:13:34 2009 +0800 Signed-off-by: Dave Young Signed-off-by: Marcel Holtmann -commit fcf3f9cb7556f152f151aecee653f4d7c8bd8f18 +commit 2526d3d8b2f671a7d36cc486af984052cd5a690f Author: Marcel Holtmann Date: Fri Feb 20 20:54:06 2009 +0100 @@ -492,7 +240,7 @@ Date: Fri Feb 20 20:54:06 2009 +0100 Signed-off-by: Johan Hedberg Signed-off-by: Marcel Holtmann -commit 29c699aaa1e038177344d1eb38a347ae174ef5ec +commit 37e62f5516cfb210e64fe53457932df4341b0ad1 Author: Marcel Holtmann Date: Tue Feb 17 21:49:33 2009 +0100 @@ -505,7 +253,7 @@ Date: Tue Feb 17 21:49:33 2009 +0100 Signed-off-by: Marcel Holtmann -commit 1e58058c15f659ca97c38a80883c68d64ce6af79 +commit 2a517ca687232adc8f14893730644da712010ffc Author: Marcel Holtmann Date: Mon Feb 16 03:20:31 2009 +0100 @@ -519,7 +267,7 @@ Date: Mon Feb 16 03:20:31 2009 +0100 Signed-off-by: Marcel Holtmann -commit 74dffad5d84eb0db0e86e99795979c6e233110f6 +commit 8bf4794174659b06d43cc5e290cd384757374613 Author: Marcel Holtmann Date: Mon Feb 16 02:59:49 2009 +0100 @@ -532,7 +280,7 @@ Date: Mon Feb 16 02:59:49 2009 +0100 Signed-off-by: Marcel Holtmann -commit e269154213d9ed12488b925f44be1eb496125c43 +commit d5f2d2be68876f65dd051b978a7b66265fde9ffd Author: Marcel Holtmann Date: Mon Feb 16 02:57:30 2009 +0100 @@ -545,7 +293,7 @@ Date: Mon Feb 16 02:57:30 2009 +0100 Signed-off-by: Marcel Holtmann -commit 0d105ec8ed68d2fc2dcecf7600daeec99d2d669c +commit 96a3183322cba1a2846771b067c99b9d6f481263 Author: Marcel Holtmann Date: Thu Feb 12 16:23:03 2009 +0100 @@ -559,7 +307,7 @@ Date: Thu Feb 12 16:23:03 2009 +0100 Signed-off-by: Marcel Holtmann -commit 33641a119177c0765420e49afcee834c83626bd2 +commit 00ae4af91d8c5b6814e2bb3bfaaf743845f989eb Author: Marcel Holtmann Date: Thu Feb 12 16:19:45 2009 +0100 @@ -574,7 +322,7 @@ Date: Thu Feb 12 16:19:45 2009 +0100 Signed-off-by: Marcel Holtmann -commit e714c7d7337fead3ed9d0e9de4f2b9e2d6e6a3f3 +commit 2950f21acb0f6b8fcd964485c2ebf1e06545ac20 Author: Marcel Holtmann Date: Thu Feb 12 14:02:50 2009 +0100 @@ -607,7 +355,7 @@ Date: Thu Feb 12 14:02:50 2009 +0100 Signed-off-by: Marcel Holtmann -commit 6e6512b6f5abbda65ed3d27f11f681990e0f19f9 +commit f29972de8e7476706ab3c01304a505e7c95d9040 Author: Marcel Holtmann Date: Thu Feb 12 05:07:45 2009 +0100 @@ -625,7 +373,7 @@ Date: Thu Feb 12 05:07:45 2009 +0100 Signed-off-by: Marcel Holtmann -commit 59825c3cdfabca877a994573120a479c6e06646a +commit e1027a7c69700301d14db03d2e049ee60c4f92df Author: Marcel Holtmann Date: Mon Feb 9 09:18:02 2009 +0100 @@ -639,7 +387,7 @@ Date: Mon Feb 9 09:18:02 2009 +0100 Signed-off-by: Marcel Holtmann -commit 49fea994547a19087d962dd4e93efb0e5b40cee5 +commit 435fef20acfc48f46476abad55b0cd3aa47b8365 Author: Marcel Holtmann Date: Mon Feb 9 03:55:28 2009 +0100 @@ -660,7 +408,7 @@ Date: Mon Feb 9 03:55:28 2009 +0100 Signed-off-by: Marcel Holtmann -commit f4befabc4c291a5f437b9845233937099e1dee05 +commit 6a8d3010b313d99adbb28f1826fac0234395bb26 Author: Marcel Holtmann Date: Fri Feb 6 23:56:36 2009 +0100 @@ -675,7 +423,7 @@ Date: Fri Feb 6 23:56:36 2009 +0100 Signed-off-by: Marcel Holtmann -commit fe2e4d9c758ebf18c1db55eb8f7e655845b255c4 +commit 984947dc64f82bc6cafa4d84ba1a139718f634a8 Author: Marcel Holtmann Date: Fri Feb 6 23:35:19 2009 +0100 @@ -689,7 +437,7 @@ Date: Fri Feb 6 23:35:19 2009 +0100 Signed-off-by: Marcel Holtmann -commit 395c54b3da235b1827475973b95a12c153cc4600 +commit 657e17b03c80bec817975984d221bef716f83558 Author: Marcel Holtmann Date: Fri Feb 6 19:45:36 2009 +0100 @@ -705,7 +453,7 @@ Date: Fri Feb 6 19:45:36 2009 +0100 Signed-off-by: Marcel Holtmann -commit 5a10f179e4af482474dbf9adc58ce9fae9ea6b15 +commit 0684e5f9fb9e3f7e168ab831dfca693bcb44805b Author: Marcel Holtmann Date: Mon Feb 9 02:48:38 2009 +0100 @@ -717,7 +465,7 @@ Date: Mon Feb 9 02:48:38 2009 +0100 Signed-off-by: Marcel Holtmann -commit 1b7c3ce31a94cce8e818a6c043f65cddae9ef047 +commit efc7688b557dd1be10eead7399b315efcb1dbc74 Author: Marcel Holtmann Date: Fri Feb 6 09:13:37 2009 +0100 @@ -738,7 +486,7 @@ Date: Fri Feb 6 09:13:37 2009 +0100 Signed-off-by: Marcel Holtmann -commit 05a0fa77ec659a5aa7608e470d3e1b359ffba314 +commit 255c76014af74165428e7aa16414b857e2bdccf2 Author: Marcel Holtmann Date: Wed Feb 4 21:07:19 2009 +0100 @@ -754,7 +502,7 @@ Date: Wed Feb 4 21:07:19 2009 +0100 Signed-off-by: Marcel Holtmann -commit 07e2928373ec26bf42a71c4a6b1e86e8db3deb7b +commit 43c2e57f94c15744495fee564610aa24602b3824 Author: Marcel Holtmann Date: Wed Feb 4 17:41:38 2009 +0100 @@ -772,7 +520,7 @@ Date: Wed Feb 4 17:41:38 2009 +0100 Signed-off-by: Marcel Holtmann -commit 056367e0f7af33b39fa32beb4d81f47b1b505aa1 +commit 6e1031a40029492c10509e8c3dcac9b611438ccb Author: Jaikumar Ganesh Date: Mon Feb 2 18:03:57 2009 -0800 @@ -787,7 +535,7 @@ Date: Mon Feb 2 18:03:57 2009 -0800 Signed-off-by: Jaikumar Ganesh Signed-off-by: Marcel Holtmann -commit d242cdb6130ad02529fe5e688e8d7ae0b48301f8 +commit 34a55eda483e8177c9044f93fd2c9107f02bf1c7 Author: Andre Haupt Date: Mon Feb 2 14:45:11 2009 -0800 @@ -798,7 +546,7 @@ Date: Mon Feb 2 14:45:11 2009 -0800 Signed-off-by: Andre Haupt Signed-off-by: Marcel Holtmann -commit 0fd01f772fe7ab90928084ca123f4f0df7709bbd +commit dd2efd03b49d56ae795c71335bc7358022514c32 Author: Dave Young Date: Sat Jan 31 13:51:15 2009 +0800 @@ -818,7 +566,7 @@ Date: Sat Jan 31 13:51:15 2009 +0800 Signed-off-by: Dave Young Signed-off-by: Marcel Holtmann -commit 3f4b0e5002a401ec520f39fe470a23ebe6b8e634 +commit 5f9018af004fa8635bbbe3ab2dc61e8a686edfaa Author: Marcel Holtmann Date: Fri Jan 16 10:09:50 2009 +0100 @@ -833,7 +581,7 @@ Date: Fri Jan 16 10:09:50 2009 +0100 Signed-off-by: Marcel Holtmann -commit 23094d5ee9b1ce8968c1e93ef3b59c42a57fd0cf +commit 0588d94fd7e414367a7ae517569d2222441c255f Author: Marcel Holtmann Date: Fri Jan 16 10:06:13 2009 +0100 @@ -848,7 +596,7 @@ Date: Fri Jan 16 10:06:13 2009 +0100 Signed-off-by: Marcel Holtmann -commit 570f37485f475607cc946672302b62970e1cfdd7 +commit f62e4323ab43c59e7cd7f72c1eb392d7c767ce5a Author: Marcel Holtmann Date: Thu Jan 15 21:58:44 2009 +0100 @@ -865,7 +613,7 @@ Date: Thu Jan 15 21:58:44 2009 +0100 Signed-off-by: Marcel Holtmann -commit d9cbe1221781e3eac1c7a0594def985575d56fb3 +commit 8c84b83076b5062f59b6167cdda90d9e5124aa71 Author: Marcel Holtmann Date: Fri Jan 16 08:17:51 2009 +0100 @@ -886,7 +634,7 @@ Date: Fri Jan 16 08:17:51 2009 +0100 Signed-off-by: Marcel Holtmann -commit 494b54d3b734430334b38fdc68423bc5a4112422 +commit 9f2c8a03fbb3048cf38b158f87aa0c3c09bca084 Author: Marcel Holtmann Date: Thu Jan 15 21:58:40 2009 +0100 @@ -897,7 +645,7 @@ Date: Thu Jan 15 21:58:40 2009 +0100 Signed-off-by: Marcel Holtmann -commit 4a63263dc5c07f75318aded47b18a5b95cbfaab9 +commit 2af6b9d518ddfbc4d6990d5f9c9b1a05341c1cef Author: Marcel Holtmann Date: Thu Jan 15 21:58:38 2009 +0100 @@ -908,7 +656,7 @@ Date: Thu Jan 15 21:58:38 2009 +0100 Signed-off-by: Marcel Holtmann -commit b9849003b7f3b9a52e9d313cc5410f15c022e403 +commit 8c1b235594fbab9a13240a1dac12ea9fd99b6440 Author: Marcel Holtmann Date: Thu Jan 15 21:58:04 2009 +0100 @@ -944,7 +692,7 @@ Date: Thu Jan 15 21:58:04 2009 +0100 Signed-off-by: Marcel Holtmann -commit 148e04ad8caf7e613b4713aed9a3a3ae63b01ed9 +commit c89b6e6bda4c8021195778f47567d0cc9dbfe7ec Author: Marcel Holtmann Date: Thu Jan 15 21:57:03 2009 +0100 @@ -960,7 +708,7 @@ Date: Thu Jan 15 21:57:03 2009 +0100 Signed-off-by: Marcel Holtmann -commit 1d2d14c8ce227b1c2fb6584f27cfabee5a4eb3fd +commit 71aeeaa1fd88fe7446391e0553336f0e0c2cfe6a Author: Marcel Holtmann Date: Thu Jan 15 21:57:02 2009 +0100 @@ -972,7 +720,7 @@ Date: Thu Jan 15 21:57:02 2009 +0100 Signed-off-by: Marcel Holtmann -commit e8f4ffcd82776573bd738329be852f71a63ff1d3 +commit f66dc81f44d918ee1aa1a9d821bb2f25c7592bc0 Author: Marcel Holtmann Date: Thu Jan 15 21:57:00 2009 +0100 @@ -985,7 +733,7 @@ Date: Thu Jan 15 21:57:00 2009 +0100 Signed-off-by: Marcel Holtmann -commit 229f1d3e93e15e6d06f43a408869eb9b372d8db7 +commit bb23c0ab824653be4aa7dfca15b07b3059717004 Author: Marcel Holtmann Date: Thu Jan 15 21:56:48 2009 +0100 @@ -1001,7 +749,7 @@ Date: Thu Jan 15 21:56:48 2009 +0100 Signed-off-by: Marcel Holtmann -commit e00363cd524ae1005dbf475e88d998a483137a77 +commit c4f912e155504e94dd4f3d63c378dab0ff03dbda Author: Marcel Holtmann Date: Thu Jan 15 21:52:16 2009 +0100 @@ -1018,7 +766,7 @@ Date: Thu Jan 15 21:52:16 2009 +0100 Signed-off-by: Marcel Holtmann -commit d71f85471f699c246c6ab65042c7ddabf4b199f8 +commit d58daf42d29a3a4a4d4be46cf47ceee096789680 Author: Marcel Holtmann Date: Thu Jan 15 21:52:14 2009 +0100 @@ -1032,7 +780,7 @@ Date: Thu Jan 15 21:52:14 2009 +0100 Signed-off-by: Marcel Holtmann -commit f1562094f31ad51a74c20ee4e7f0eba37a051d9c +commit 91aa35a5aa3540223066bf6b51c935418c63a35d Author: Victor Shcherbatyuk Date: Thu Jan 15 21:52:12 2009 +0100 @@ -1217,18 +965,10 @@ index a04f846..3ad5390 100644 struct bt_sock_list { diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h -index 3645139..ed3aea1 100644 +index 3645139..f69f015 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h -@@ -101,6 +101,7 @@ enum { - /* HCI timeouts */ - #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */ - #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */ -+#define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */ - #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */ - #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */ - -@@ -133,8 +134,13 @@ enum { +@@ -133,8 +133,13 @@ enum { #define ESCO_EV3 0x0008 #define ESCO_EV4 0x0010 #define ESCO_EV5 0x0020 @@ -1242,7 +982,7 @@ index 3645139..ed3aea1 100644 /* ACL flags */ #define ACL_CONT 0x01 -@@ -176,6 +182,9 @@ enum { +@@ -176,6 +181,9 @@ enum { #define LMP_EV5 0x02 #define LMP_SNIFF_SUBR 0x02 @@ -1253,30 +993,18 @@ index 3645139..ed3aea1 100644 #define LMP_SIMPLE_PAIR 0x08 diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h -index 46a43b7..be5bd71 100644 +index 46a43b7..01f9316 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h -@@ -169,7 +169,9 @@ struct hci_conn { +@@ -169,6 +169,7 @@ struct hci_conn { __u16 link_policy; __u32 link_mode; __u8 auth_type; + __u8 sec_level; __u8 power_save; -+ __u16 disc_timeout; unsigned long pend; - unsigned int sent; -@@ -179,7 +181,8 @@ struct hci_conn { - struct timer_list disc_timer; - struct timer_list idle_timer; - -- struct work_struct work; -+ struct work_struct work_add; -+ struct work_struct work_del; - - struct device dev; - -@@ -325,12 +328,11 @@ int hci_conn_del(struct hci_conn *conn); +@@ -325,12 +326,11 @@ int hci_conn_del(struct hci_conn *conn); void hci_conn_hash_flush(struct hci_dev *hdev); void hci_conn_check_pending(struct hci_dev *hdev); @@ -1292,19 +1020,7 @@ index 46a43b7..be5bd71 100644 void hci_conn_enter_active_mode(struct hci_conn *conn); void hci_conn_enter_sniff_mode(struct hci_conn *conn); -@@ -348,9 +350,9 @@ static inline void hci_conn_put(struct hci_conn *conn) - if (conn->type == ACL_LINK) { - del_timer(&conn->idle_timer); - if (conn->state == BT_CONNECTED) { -- timeo = msecs_to_jiffies(HCI_DISCONN_TIMEOUT); -+ timeo = msecs_to_jiffies(conn->disc_timeout); - if (!conn->out) -- timeo *= 5; -+ timeo *= 2; - } else - timeo = msecs_to_jiffies(10); - } else -@@ -470,26 +472,26 @@ void hci_conn_del_sysfs(struct hci_conn *conn); +@@ -470,26 +470,26 @@ void hci_conn_del_sysfs(struct hci_conn *conn); /* ----- HCI protocols ----- */ struct hci_proto { @@ -1337,7 +1053,7 @@ index 46a43b7..be5bd71 100644 hp = hci_proto[HCI_PROTO_L2CAP]; if (hp && hp->connect_ind) mask |= hp->connect_ind(hdev, bdaddr, type); -@@ -514,30 +516,52 @@ static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status) +@@ -514,30 +514,52 @@ static inline void hci_proto_connect_cfm(struct hci_conn *conn, __u8 status) hp->connect_cfm(conn, status); } @@ -1397,7 +1113,7 @@ index 46a43b7..be5bd71 100644 } static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encrypt) -@@ -545,12 +569,12 @@ static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status, __u +@@ -545,12 +567,12 @@ static inline void hci_proto_encrypt_cfm(struct hci_conn *conn, __u8 status, __u register struct hci_proto *hp; hp = hci_proto[HCI_PROTO_L2CAP]; @@ -1414,7 +1130,7 @@ index 46a43b7..be5bd71 100644 } int hci_register_proto(struct hci_proto *hproto); -@@ -562,8 +586,7 @@ struct hci_cb { +@@ -562,8 +584,7 @@ struct hci_cb { char *name; @@ -1424,7 +1140,7 @@ index 46a43b7..be5bd71 100644 void (*key_change_cfm) (struct hci_conn *conn, __u8 status); void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role); }; -@@ -571,14 +594,20 @@ struct hci_cb { +@@ -571,14 +592,20 @@ struct hci_cb { static inline void hci_auth_cfm(struct hci_conn *conn, __u8 status) { struct list_head *p; @@ -1447,7 +1163,7 @@ index 46a43b7..be5bd71 100644 } read_unlock_bh(&hci_cb_list_lock); } -@@ -587,13 +616,16 @@ static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encr +@@ -587,13 +614,16 @@ static inline void hci_encrypt_cfm(struct hci_conn *conn, __u8 status, __u8 encr { struct list_head *p; @@ -1658,7 +1374,7 @@ index c9cac77..0073ec8 100644 static inline int cmtp_recv_frame(struct cmtp_session *session, struct sk_buff *skb) diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c -index a4a789f..8c66c9a 100644 +index a4a789f..1181db0 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -123,6 +123,8 @@ void hci_add_sco(struct hci_conn *conn, __u16 handle) @@ -1687,15 +1403,7 @@ index a4a789f..8c66c9a 100644 BT_DBG("conn %p state %d", conn, conn->state); -@@ -166,14 +171,13 @@ static void hci_conn_timeout(unsigned long arg) - switch (conn->state) { - case BT_CONNECT: - case BT_CONNECT2: -- if (conn->type == ACL_LINK) -+ if (conn->type == ACL_LINK && conn->out) - hci_acl_connect_cancel(conn); -- else -- hci_acl_disconn(conn, 0x13); +@@ -173,7 +178,8 @@ static void hci_conn_timeout(unsigned long arg) break; case BT_CONFIG: case BT_CONNECTED: @@ -1705,15 +1413,7 @@ index a4a789f..8c66c9a 100644 break; default: conn->state = BT_CLOSED; -@@ -209,6 +213,7 @@ struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) - conn->state = BT_OPEN; - - conn->power_save = 1; -+ conn->disc_timeout = HCI_DISCONN_TIMEOUT; - - switch (type) { - case ACL_LINK: -@@ -216,12 +221,13 @@ struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) +@@ -216,12 +222,13 @@ struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) break; case SCO_LINK: if (lmp_esco_capable(hdev)) @@ -1729,18 +1429,16 @@ index a4a789f..8c66c9a 100644 break; } -@@ -280,6 +286,10 @@ int hci_conn_del(struct hci_conn *conn) +@@ -280,6 +287,8 @@ int hci_conn_del(struct hci_conn *conn) skb_queue_purge(&conn->data_q); + hci_conn_del_sysfs(conn); + -+ hci_dev_put(hdev); -+ return 0; } -@@ -325,7 +335,7 @@ EXPORT_SYMBOL(hci_get_route); +@@ -325,7 +334,7 @@ EXPORT_SYMBOL(hci_get_route); /* Create SCO or ACL connection. * Device _must_ be locked */ @@ -1749,7 +1447,7 @@ index a4a789f..8c66c9a 100644 { struct hci_conn *acl; struct hci_conn *sco; -@@ -340,6 +350,7 @@ struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8 +@@ -340,6 +349,7 @@ struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8 hci_conn_hold(acl); if (acl->state == BT_OPEN || acl->state == BT_CLOSED) { @@ -1757,7 +1455,7 @@ index a4a789f..8c66c9a 100644 acl->auth_type = auth_type; hci_acl_connect(acl); } -@@ -385,51 +396,56 @@ int hci_conn_check_link_mode(struct hci_conn *conn) +@@ -385,51 +395,59 @@ int hci_conn_check_link_mode(struct hci_conn *conn) EXPORT_SYMBOL(hci_conn_check_link_mode); /* Authenticate remote device */ @@ -1802,9 +1500,12 @@ index a4a789f..8c66c9a 100644 + if (sec_level == BT_SECURITY_SDP) + return 1; + -+ if (sec_level == BT_SECURITY_LOW && -+ (!conn->ssp_mode || !conn->hdev->ssp_mode)) -+ return 1; ++ if (sec_level == BT_SECURITY_LOW) { ++ if (conn->ssp_mode > 0 && conn->hdev->ssp_mode > 0) ++ return hci_conn_auth(conn, sec_level, auth_type); ++ else ++ return 1; ++ } + if (conn->link_mode & HCI_LM_ENCRYPT) - return hci_conn_auth(conn); @@ -1829,7 +1530,7 @@ index a4a789f..8c66c9a 100644 /* Change link key */ int hci_conn_change_link_key(struct hci_conn *conn) -@@ -442,12 +458,13 @@ int hci_conn_change_link_key(struct hci_conn *conn) +@@ -442,12 +460,13 @@ int hci_conn_change_link_key(struct hci_conn *conn) hci_send_cmd(conn->hdev, HCI_OP_CHANGE_CONN_LINK_KEY, sizeof(cp), &cp); } @@ -1844,7 +1545,7 @@ index a4a789f..8c66c9a 100644 { BT_DBG("conn %p", conn); -@@ -460,6 +477,7 @@ int hci_conn_switch_role(struct hci_conn *conn, uint8_t role) +@@ -460,6 +479,7 @@ int hci_conn_switch_role(struct hci_conn *conn, uint8_t role) cp.role = role; hci_send_cmd(conn->hdev, HCI_OP_SWITCH_ROLE, sizeof(cp), &cp); } @@ -1852,7 +1553,7 @@ index a4a789f..8c66c9a 100644 return 0; } EXPORT_SYMBOL(hci_conn_switch_role); -@@ -542,9 +560,7 @@ void hci_conn_hash_flush(struct hci_dev *hdev) +@@ -542,9 +562,7 @@ void hci_conn_hash_flush(struct hci_dev *hdev) c->state = BT_CLOSED; @@ -1878,7 +1579,7 @@ index ba78cc1..cd06151 100644 if ((hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC))) { atomic_dec(&hdev->cmd_cnt); diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c -index f91ba69..184ba0a 100644 +index f91ba69..5553424 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -484,6 +484,15 @@ static void hci_cc_read_local_features(struct hci_dev *hdev, struct sk_buff *skb @@ -1897,34 +1598,7 @@ index f91ba69..184ba0a 100644 BT_DBG("%s features 0x%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x", hdev->name, hdev->features[0], hdev->features[1], hdev->features[2], hdev->features[3], -@@ -857,8 +866,16 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s - hci_dev_lock(hdev); - - conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr); -- if (!conn) -- goto unlock; -+ if (!conn) { -+ if (ev->link_type != SCO_LINK) -+ goto unlock; -+ -+ conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr); -+ if (!conn) -+ goto unlock; -+ -+ conn->type = SCO_LINK; -+ } - - if (!ev->status) { - conn->handle = __le16_to_cpu(ev->handle); -@@ -866,6 +883,7 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s - if (conn->type == ACL_LINK) { - conn->state = BT_CONFIG; - hci_conn_hold(conn); -+ conn->disc_timeout = HCI_DISCONN_TIMEOUT; - } else - conn->state = BT_CONNECTED; - -@@ -914,7 +932,8 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s +@@ -914,7 +923,8 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s if (ev->status) { hci_proto_connect_cfm(conn, ev->status); hci_conn_del(conn); @@ -1934,7 +1608,7 @@ index f91ba69..184ba0a 100644 unlock: hci_dev_unlock(hdev); -@@ -1009,9 +1028,7 @@ static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff +@@ -1009,9 +1019,7 @@ static inline void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff if (conn) { conn->state = BT_CLOSED; @@ -1945,67 +1619,7 @@ index f91ba69..184ba0a 100644 hci_conn_del(conn); } -@@ -1047,9 +1064,14 @@ static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *s - hci_proto_connect_cfm(conn, ev->status); - hci_conn_put(conn); - } -- } else -+ } else { - hci_auth_cfm(conn, ev->status); - -+ hci_conn_hold(conn); -+ conn->disc_timeout = HCI_DISCONN_TIMEOUT; -+ hci_conn_put(conn); -+ } -+ - if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) { - if (!ev->status) { - struct hci_cp_set_conn_encrypt cp; -@@ -1463,7 +1485,21 @@ static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb - - static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb) - { -+ struct hci_ev_pin_code_req *ev = (void *) skb->data; -+ struct hci_conn *conn; -+ - BT_DBG("%s", hdev->name); -+ -+ hci_dev_lock(hdev); -+ -+ conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); -+ if (conn && conn->state == BT_CONNECTED) { -+ hci_conn_hold(conn); -+ conn->disc_timeout = HCI_PAIRING_TIMEOUT; -+ hci_conn_put(conn); -+ } -+ -+ hci_dev_unlock(hdev); - } - - static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb) -@@ -1473,7 +1509,21 @@ static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff - - static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb) - { -+ struct hci_ev_link_key_notify *ev = (void *) skb->data; -+ struct hci_conn *conn; -+ - BT_DBG("%s", hdev->name); -+ -+ hci_dev_lock(hdev); -+ -+ conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); -+ if (conn) { -+ hci_conn_hold(conn); -+ conn->disc_timeout = HCI_DISCONN_TIMEOUT; -+ hci_conn_put(conn); -+ } -+ -+ hci_dev_unlock(hdev); - } - - static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb) -@@ -1600,7 +1650,8 @@ static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_b +@@ -1600,7 +1608,8 @@ static inline void hci_remote_ext_features_evt(struct hci_dev *hdev, struct sk_b if (conn->state == BT_CONFIG) { if (!ev->status && hdev->ssp_mode > 0 && @@ -2015,151 +1629,20 @@ index f91ba69..184ba0a 100644 struct hci_cp_auth_requested cp; cp.handle = ev->handle; hci_send_cmd(hdev, HCI_OP_AUTH_REQUESTED, -@@ -1637,13 +1688,28 @@ static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_bu +@@ -1637,6 +1646,13 @@ static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_bu conn->type = SCO_LINK; } -- if (!ev->status) { -+ switch (ev->status) { -+ case 0x00: - conn->handle = __le16_to_cpu(ev->handle); - conn->state = BT_CONNECTED; - - hci_conn_add_sysfs(conn); -- } else -+ break; -+ -+ case 0x1c: /* SCO interval rejected */ -+ case 0x1f: /* Unspecified error */ -+ if (conn->out && conn->attempt < 2) { -+ conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | ++ if (conn->out && ev->status == 0x1c && conn->attempt < 2) { ++ conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | + (hdev->esco_type & EDR_ESCO_MASK); -+ hci_setup_sync(conn, conn->link->handle); -+ goto unlock; -+ } -+ /* fall through */ -+ -+ default: - conn->state = BT_CLOSED; -+ break; ++ hci_setup_sync(conn, conn->link->handle); ++ goto unlock; + } - - hci_proto_connect_cfm(conn, ev->status); - if (ev->status) -diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c -index 1a1f916..41fbfa5 100644 ---- a/net/bluetooth/hci_sysfs.c -+++ b/net/bluetooth/hci_sysfs.c -@@ -9,8 +9,7 @@ - struct class *bt_class = NULL; - EXPORT_SYMBOL_GPL(bt_class); - --static struct workqueue_struct *btaddconn; --static struct workqueue_struct *btdelconn; -+static struct workqueue_struct *bluetooth; - - static inline char *link_typetostr(int type) - { -@@ -88,14 +87,17 @@ static struct device_type bt_link = { - - static void add_conn(struct work_struct *work) - { -- struct hci_conn *conn = container_of(work, struct hci_conn, work); -+ struct hci_conn *conn = container_of(work, struct hci_conn, work_add); - -- flush_workqueue(btdelconn); -+ /* ensure previous add/del is complete */ -+ flush_workqueue(bluetooth); - - if (device_add(&conn->dev) < 0) { - BT_ERR("Failed to register connection device"); - return; - } + -+ hci_dev_hold(hdev); - } - - void hci_conn_add_sysfs(struct hci_conn *conn) -@@ -114,9 +116,9 @@ void hci_conn_add_sysfs(struct hci_conn *conn) - - device_initialize(&conn->dev); - -- INIT_WORK(&conn->work, add_conn); -+ INIT_WORK(&conn->work_add, add_conn); - -- queue_work(btaddconn, &conn->work); -+ queue_work(bluetooth, &conn->work_add); - } - - /* -@@ -131,9 +133,12 @@ static int __match_tty(struct device *dev, void *data) - - static void del_conn(struct work_struct *work) - { -- struct hci_conn *conn = container_of(work, struct hci_conn, work); -+ struct hci_conn *conn = container_of(work, struct hci_conn, work_del); - struct hci_dev *hdev = conn->hdev; - -+ /* ensure previous add/del is complete */ -+ flush_workqueue(bluetooth); -+ - while (1) { - struct device *dev; - -@@ -146,6 +151,7 @@ static void del_conn(struct work_struct *work) - - device_del(&conn->dev); - put_device(&conn->dev); -+ - hci_dev_put(hdev); - } - -@@ -156,9 +162,9 @@ void hci_conn_del_sysfs(struct hci_conn *conn) - if (!device_is_registered(&conn->dev)) - return; - -- INIT_WORK(&conn->work, del_conn); -+ INIT_WORK(&conn->work_del, del_conn); - -- queue_work(btdelconn, &conn->work); -+ queue_work(bluetooth, &conn->work_del); - } - - static inline char *host_typetostr(int type) -@@ -435,20 +441,13 @@ void hci_unregister_sysfs(struct hci_dev *hdev) - - int __init bt_sysfs_init(void) - { -- btaddconn = create_singlethread_workqueue("btaddconn"); -- if (!btaddconn) -+ bluetooth = create_singlethread_workqueue("bluetooth"); -+ if (!bluetooth) - return -ENOMEM; - -- btdelconn = create_singlethread_workqueue("btdelconn"); -- if (!btdelconn) { -- destroy_workqueue(btaddconn); -- return -ENOMEM; -- } -- - bt_class = class_create(THIS_MODULE, "bluetooth"); - if (IS_ERR(bt_class)) { -- destroy_workqueue(btdelconn); -- destroy_workqueue(btaddconn); -+ destroy_workqueue(bluetooth); - return PTR_ERR(bt_class); - } - -@@ -457,8 +456,7 @@ int __init bt_sysfs_init(void) - - void bt_sysfs_cleanup(void) - { -- destroy_workqueue(btaddconn); -- destroy_workqueue(btdelconn); -+ destroy_workqueue(bluetooth); - - class_destroy(bt_class); - } + if (!ev->status) { + conn->handle = __le16_to_cpu(ev->handle); + conn->state = BT_CONNECTED; diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c index b93748e..ca4d3b4 100644 --- a/net/bluetooth/l2cap.c @@ -3140,7 +2623,7 @@ index b93748e..ca4d3b4 100644 }; diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c -index acd84fd..374536e 100644 +index acd84fd..1d0fb0f 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c @@ -46,7 +46,7 @@ @@ -3260,14 +2743,7 @@ index acd84fd..374536e 100644 { struct sock *sk = d->session->sock->sk; -@@ -1170,17 +1194,38 @@ static void rfcomm_dlc_accept(struct rfcomm_dlc *d) - - rfcomm_send_ua(d->session, d->dlci); - -+ rfcomm_dlc_clear_timer(d); -+ - rfcomm_dlc_lock(d); - d->state = BT_CONNECTED; +@@ -1175,12 +1199,31 @@ static void rfcomm_dlc_accept(struct rfcomm_dlc *d) d->state_change(d, 0); rfcomm_dlc_unlock(d); @@ -3300,7 +2776,7 @@ index acd84fd..374536e 100644 static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci) { struct rfcomm_dlc *d; -@@ -1203,11 +1248,7 @@ static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci) +@@ -1203,11 +1246,7 @@ static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci) if (d) { if (d->state == BT_OPEN) { /* DLC was previously opened by PN request */ @@ -3313,7 +2789,7 @@ index acd84fd..374536e 100644 } return 0; } -@@ -1219,11 +1260,7 @@ static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci) +@@ -1219,11 +1258,7 @@ static int rfcomm_recv_sabm(struct rfcomm_session *s, u8 dlci) d->addr = __addr(s->initiator, dlci); rfcomm_dlc_link(s, d); @@ -3326,7 +2802,7 @@ index acd84fd..374536e 100644 } else { rfcomm_send_dm(s, dlci); } -@@ -1637,11 +1674,12 @@ static void rfcomm_process_connect(struct rfcomm_session *s) +@@ -1637,11 +1672,12 @@ static void rfcomm_process_connect(struct rfcomm_session *s) d = list_entry(p, struct rfcomm_dlc, list); if (d->state == BT_CONFIG) { d->mtu = s->mtu; @@ -3342,7 +2818,7 @@ index acd84fd..374536e 100644 } } } -@@ -1717,11 +1755,17 @@ static inline void rfcomm_process_dlcs(struct rfcomm_session *s) +@@ -1717,11 +1753,17 @@ static inline void rfcomm_process_dlcs(struct rfcomm_session *s) if (d->out) { rfcomm_send_pn(s, 1, d); rfcomm_dlc_set_timer(d, RFCOMM_CONN_TIMEOUT); @@ -3365,7 +2841,7 @@ index acd84fd..374536e 100644 } continue; } else if (test_and_clear_bit(RFCOMM_AUTH_REJECT, &d->flags)) { -@@ -1734,6 +1778,9 @@ static inline void rfcomm_process_dlcs(struct rfcomm_session *s) +@@ -1734,6 +1776,9 @@ static inline void rfcomm_process_dlcs(struct rfcomm_session *s) continue; } @@ -3375,7 +2851,7 @@ index acd84fd..374536e 100644 if (test_bit(RFCOMM_TX_THROTTLED, &s->flags)) continue; -@@ -1876,6 +1923,7 @@ static int rfcomm_add_listener(bdaddr_t *ba) +@@ -1876,6 +1921,7 @@ static int rfcomm_add_listener(bdaddr_t *ba) bacpy(&addr.l2_bdaddr, ba); addr.l2_family = AF_BLUETOOTH; addr.l2_psm = htobs(RFCOMM_PSM); @@ -3383,7 +2859,7 @@ index acd84fd..374536e 100644 err = kernel_bind(sock, (struct sockaddr *) &addr, sizeof(addr)); if (err < 0) { BT_ERR("Bind failed %d", err); -@@ -1947,42 +1995,7 @@ static int rfcomm_run(void *unused) +@@ -1947,42 +1993,7 @@ static int rfcomm_run(void *unused) return 0; } @@ -3427,7 +2903,7 @@ index acd84fd..374536e 100644 { struct rfcomm_session *s; struct rfcomm_dlc *d; -@@ -1999,18 +2012,29 @@ static void rfcomm_encrypt_cfm(struct hci_conn *conn, u8 status, u8 encrypt) +@@ -1999,18 +2010,29 @@ static void rfcomm_encrypt_cfm(struct hci_conn *conn, u8 status, u8 encrypt) list_for_each_safe(p, n, &s->dlcs) { d = list_entry(p, struct rfcomm_dlc, list); @@ -3464,7 +2940,7 @@ index acd84fd..374536e 100644 set_bit(RFCOMM_AUTH_ACCEPT, &d->flags); else set_bit(RFCOMM_AUTH_REJECT, &d->flags); -@@ -2023,8 +2047,7 @@ static void rfcomm_encrypt_cfm(struct hci_conn *conn, u8 status, u8 encrypt) +@@ -2023,8 +2045,7 @@ static void rfcomm_encrypt_cfm(struct hci_conn *conn, u8 status, u8 encrypt) static struct hci_cb rfcomm_cb = { .name = "RFCOMM", Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v retrieving revision 1.1681 retrieving revision 1.1682 diff -u -p -r1.1681 -r1.1682 --- kernel.spec 25 Jul 2009 03:16:38 -0000 1.1681 +++ kernel.spec 25 Jul 2009 04:09:23 -0000 1.1682 @@ -1831,6 +1831,12 @@ fi %changelog * Fri Jul 24 2009 Kyle McMartin +- CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 [i386 x86_64], 4096 elsewhere, as + per defconfigs. +- Blat patches from other tag, now to rebase fixes, splat in the changelog, + and tag it for building. + +* Fri Jul 24 2009 Kyle McMartin - Copy over release configs from devel-2.6.30 tag. - Fix up some spec deviations. linux-2.6-defaults-pci_no_msi.patch: b/drivers/pci/Kconfig | 12 ++++++++++++ b/drivers/pci/msi.c | 9 +++++++++ b/drivers/pci/pci.c | 2 ++ b/drivers/pci/pci.h | 2 ++ linux-2.6.29.noarch/Documentation/kernel-parameters.txt | 3 +++ 5 files changed, 28 insertions(+) Index: linux-2.6-defaults-pci_no_msi.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-defaults-pci_no_msi.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- linux-2.6-defaults-pci_no_msi.patch 4 Feb 2009 17:50:39 -0000 1.4 +++ linux-2.6-defaults-pci_no_msi.patch 25 Jul 2009 04:09:24 -0000 1.5 @@ -1,10 +1,8 @@ -diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt -index d8362cf..30d6053 100644 ---- a/Documentation/kernel-parameters.txt -+++ b/Documentation/kernel-parameters.txt -@@ -1674,6 +1674,9 @@ and is between 256 and 4096 characters. It is defined in the file +--- linux-2.6.29.noarch/Documentation/kernel-parameters.txt~ 2009-04-20 13:36:09.000000000 -0400 ++++ linux-2.6.29.noarch/Documentation/kernel-parameters.txt 2009-04-20 13:36:33.000000000 -0400 +@@ -1723,6 +1723,9 @@ and is between 256 and 4096 characters. root domains (aka PCI segments, in ACPI-speak). - nommconf [X86-32,X86_64] Disable use of MMCONFIG for PCI + nommconf [X86] Disable use of MMCONFIG for PCI Configuration + msi [MSI] If the PCI_MSI kernel config parameter is + enabled, this kernel boot option can be used to linux-2.6-execshield.patch: arch/x86/include/asm/desc.h | 25 +++++++ arch/x86/include/asm/mmu.h | 7 ++ arch/x86/include/asm/paravirt.h | 9 ++ arch/x86/include/asm/processor.h | 3 arch/x86/kernel/cpu/common.c | 14 ++++ arch/x86/kernel/paravirt.c | 3 arch/x86/kernel/process_32.c | 49 ++++++++++++++ arch/x86/kernel/traps.c | 129 ++++++++++++++++++++++++++++++++++++--- arch/x86/mm/init.c | 4 + arch/x86/mm/init_32.c | 16 ++-- arch/x86/mm/mmap.c | 5 + arch/x86/mm/tlb.c | 7 ++ arch/x86/vdso/vdso32-setup.c | 2 arch/x86/xen/enlighten.c | 21 ++++++ fs/binfmt_elf.c | 21 +++++- include/linux/mm.h | 8 ++ include/linux/mm_types.h | 3 include/linux/resource.h | 5 + include/linux/sched.h | 7 ++ kernel/sysctl.c | 28 ++++++++ mm/mmap.c | 121 ++++++++++++++++++++++++++++++++++-- mm/mprotect.c | 10 ++- mm/mremap.c | 4 - 23 files changed, 464 insertions(+), 37 deletions(-) Index: linux-2.6-execshield.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-execshield.patch,v retrieving revision 1.105 retrieving revision 1.106 diff -u -p -r1.105 -r1.106 --- linux-2.6-execshield.patch 9 May 2009 02:08:24 -0000 1.105 +++ linux-2.6-execshield.patch 25 Jul 2009 04:09:24 -0000 1.106 @@ -1,5 +1,5 @@ diff --git a/arch/x86/include/asm/desc.h b/arch/x86/include/asm/desc.h -index dc27705..34ed3a2 100644 +index 5623c50..353a24e 100644 --- a/arch/x86/include/asm/desc.h +++ b/arch/x86/include/asm/desc.h @@ -6,6 +6,7 @@ @@ -10,7 +10,7 @@ index dc27705..34ed3a2 100644 static inline void fill_ldt(struct desc_struct *desc, const struct user_desc *info) -@@ -95,6 +96,9 @@ static inline int desc_empty(const void *ptr) +@@ -94,6 +95,9 @@ static inline int desc_empty(const void *ptr) #define load_TLS(t, cpu) native_load_tls(t, cpu) #define set_ldt native_set_ldt @@ -20,7 +20,7 @@ index dc27705..34ed3a2 100644 #define write_ldt_entry(dt, entry, desc) \ native_write_ldt_entry(dt, entry, desc) -@@ -379,6 +383,27 @@ static inline void set_system_intr_gate_ist(int n, void *addr, unsigned ist) +@@ -380,6 +384,27 @@ static inline void set_system_intr_gate_ist(int n, void *addr, unsigned ist) _set_gate(n, GATE_INTERRUPT, addr, 0x3, ist, __KERNEL_CS); } @@ -73,10 +73,10 @@ index 80a1dee..8314c66 100644 #ifdef CONFIG_SMP diff --git a/arch/x86/include/asm/paravirt.h b/arch/x86/include/asm/paravirt.h -index e299287..aaa8a35 100644 +index 7727aa8..5d6083c 100644 --- a/arch/x86/include/asm/paravirt.h +++ b/arch/x86/include/asm/paravirt.h -@@ -113,6 +113,9 @@ struct pv_cpu_ops { +@@ -138,6 +138,9 @@ struct pv_cpu_ops { void (*store_gdt)(struct desc_ptr *); void (*store_idt)(struct desc_ptr *); void (*set_ldt)(const void *desc, unsigned entries); @@ -86,7 +86,7 @@ index e299287..aaa8a35 100644 unsigned long (*store_tr)(void); void (*load_tls)(struct thread_struct *t, unsigned int cpu); #ifdef CONFIG_X86_64 -@@ -860,6 +863,12 @@ static inline void set_ldt(const void *addr, unsigned entries) +@@ -953,6 +956,12 @@ static inline void set_ldt(const void *addr, unsigned entries) { PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries); } @@ -100,10 +100,10 @@ index e299287..aaa8a35 100644 { PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr); diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h -index 3bfd523..99c8119 100644 +index 34c5237..4fc080f 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h -@@ -158,6 +158,9 @@ static inline int hlt_works(int cpu) +@@ -159,6 +159,9 @@ static inline int hlt_works(int cpu) #define cache_line_size() (boot_cpu_data.x86_cache_alignment) @@ -114,12 +114,12 @@ index 3bfd523..99c8119 100644 extern struct pt_regs *idle_regs(struct pt_regs *); diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c -index 83492b1..a84c787 100644 +index c4f6678..0a680c0 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c -@@ -708,6 +708,21 @@ static void __cpuinit identify_cpu(struct cpuinfo_x86 *c) - * we do "generic changes." - */ +@@ -789,6 +789,20 @@ static void __cpuinit identify_cpu(struct cpuinfo_x86 *c) + /* Filter out anything that depends on CPUID levels we don't have */ + filter_cpuid_features(c, true); + /* + * emulation of NX with segment limits unfortunately means @@ -135,15 +135,14 @@ index 83492b1..a84c787 100644 + clear_cpu_cap(c, X86_FEATURE_SEP); + } + -+ /* If the model name is still unset, do table lookup. */ if (!c->x86_model_id[0]) { - char *p; + const char *p; diff --git a/arch/x86/kernel/paravirt.c b/arch/x86/kernel/paravirt.c -index c6520a4..2066aa1 100644 +index 8e45f44..13c0535 100644 --- a/arch/x86/kernel/paravirt.c +++ b/arch/x86/kernel/paravirt.c -@@ -352,6 +352,9 @@ struct pv_cpu_ops pv_cpu_ops = { +@@ -369,6 +369,9 @@ struct pv_cpu_ops pv_cpu_ops = { .read_tscp = native_read_tscp, .load_tr_desc = native_load_tr_desc, .set_ldt = native_set_ldt, @@ -154,19 +153,21 @@ index c6520a4..2066aa1 100644 .load_idt = native_load_idt, .store_gdt = native_store_gdt, diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c -index bd4da2a..60823d4 100644 +index 76f8f84..4118f17 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c -@@ -343,6 +343,8 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, +@@ -301,7 +301,10 @@ int copy_thread(unsigned long clone_flags, unsigned long sp, void start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) { + int cpu; + - __asm__("movl %0, %%gs" : : "r"(0)); + set_user_gs(regs, 0); ++ regs->fs = 0; set_fs(USER_DS); -@@ -352,6 +354,11 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) + regs->ds = __USER_DS; +@@ -310,6 +313,11 @@ start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp) regs->cs = __USER_CS; regs->ip = new_ip; regs->sp = new_sp; @@ -178,7 +179,7 @@ index bd4da2a..60823d4 100644 /* * Free the old FP and other extended state */ -@@ -519,7 +526,8 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p) +@@ -356,7 +364,8 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p) /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */ __unlazy_fpu(prev_p); @@ -188,7 +189,7 @@ index bd4da2a..60823d4 100644 /* we're going to use this soon, after a few expensive things */ if (next_p->fpu_counter > 5) -@@ -692,3 +700,41 @@ unsigned long arch_randomize_brk(struct mm_struct *mm) +@@ -509,3 +518,41 @@ unsigned long arch_randomize_brk(struct mm_struct *mm) unsigned long range_end = mm->brk + 0x02000000; return randomize_range(mm->brk, range_end, 0) ? : mm->brk; } @@ -230,34 +231,13 @@ index bd4da2a..60823d4 100644 + mm->context.exec_limit = 0; + set_user_cs(&mm->context.user_cs, 0); +} -diff --git a/arch/x86/kernel/tlb_32.c b/arch/x86/kernel/tlb_32.c -index ce50546..bd6593a 100644 ---- a/arch/x86/kernel/tlb_32.c -+++ b/arch/x86/kernel/tlb_32.c -@@ -2,6 +2,7 @@ - #include - #include - -+#include - #include - - DEFINE_PER_CPU(struct tlb_state, cpu_tlbstate) -@@ -91,6 +92,8 @@ void smp_invalidate_interrupt(struct pt_regs *regs) - unsigned long cpu; - - cpu = get_cpu(); -+ if (current->active_mm) -+ load_user_cs_desc(cpu, current->active_mm); - - if (!cpu_isset(cpu, flush_cpumask)) - goto out; diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c -index a9e7548..af0f8f0 100644 +index a1d2883..453b616 100644 --- a/arch/x86/kernel/traps.c +++ b/arch/x86/kernel/traps.c -@@ -160,6 +160,76 @@ static int lazy_iobitmap_copy(void) - - return 0; +@@ -118,6 +118,76 @@ die_if_kernel(const char *str, struct pt_regs *regs, long err) + if (!user_mode_vm(regs)) + die(str, regs, err); } + +static inline int @@ -332,7 +312,7 @@ index a9e7548..af0f8f0 100644 #endif static void __kprobes -@@ -323,6 +393,29 @@ do_general_protection(struct pt_regs *regs, long error_code) +@@ -276,6 +346,29 @@ do_general_protection(struct pt_regs *regs, long error_code) if (!user_mode(regs)) goto gp_in_kernel; @@ -362,7 +342,7 @@ index a9e7548..af0f8f0 100644 tsk->thread.error_code = error_code; tsk->thread.trap_no = 13; -@@ -934,19 +1027,37 @@ dotraplinkage void __kprobes do_device_not_available(struct pt_regs regs) +@@ -888,19 +981,37 @@ do_device_not_available(struct pt_regs *regs, long error_code) } #ifdef CONFIG_X86_32 @@ -388,7 +368,7 @@ index a9e7548..af0f8f0 100644 - info.si_signo = SIGILL; - info.si_errno = 0; - info.si_code = ILL_BADSTK; -- info.si_addr = 0; +- info.si_addr = NULL; - if (notify_die(DIE_TRAP, "iret exception", - regs, error_code, 32, SIGILL) == NOTIFY_STOP) - return; @@ -409,11 +389,27 @@ index a9e7548..af0f8f0 100644 } #endif +diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c +index fd3da1d..ac54294 100644 +--- a/arch/x86/mm/init.c ++++ b/arch/x86/mm/init.c +@@ -163,7 +163,11 @@ unsigned long __init_refok init_memory_mapping(unsigned long start, + set_nx(); + if (nx_enabled) + printk(KERN_INFO "NX (Execute Disable) protection: active\n"); ++ else + #endif ++ if (exec_shield) ++ printk(KERN_INFO "Using x86 segment limits to approximate " ++ "NX protection\n"); + + /* Enable PSE if available */ + if (cpu_has_pse) diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c -index 2cef050..a18ae07 100644 +index 749559e..ad9943c 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c -@@ -617,7 +617,7 @@ static int disable_nx __initdata; +@@ -602,7 +602,7 @@ static int disable_nx __initdata; * Control non executable mappings. * * on Enable @@ -422,7 +418,7 @@ index 2cef050..a18ae07 100644 */ static int __init noexec_setup(char *str) { -@@ -626,14 +626,12 @@ static int __init noexec_setup(char *str) +@@ -611,14 +611,12 @@ static int __init noexec_setup(char *str) __supported_pte_mask |= _PAGE_NX; disable_nx = 0; } @@ -443,20 +439,8 @@ index 2cef050..a18ae07 100644 return 0; } -@@ -892,7 +890,11 @@ unsigned long __init_refok init_memory_mapping(unsigned long start, - set_nx(); - if (nx_enabled) - printk(KERN_INFO "NX (Execute Disable) protection: active\n"); -+ else - #endif -+ if (exec_shield) -+ printk(KERN_INFO "Using x86 segment limits to approximate " -+ "NX protection\n"); - - /* Enable PSE if available */ - if (cpu_has_pse) diff --git a/arch/x86/mm/mmap.c b/arch/x86/mm/mmap.c -index 56fe712..30d2be7 100644 +index 1658296..72056cf 100644 --- a/arch/x86/mm/mmap.c +++ b/arch/x86/mm/mmap.c @@ -111,13 +111,16 @@ static unsigned long mmap_legacy_base(void) @@ -477,6 +461,31 @@ index 56fe712..30d2be7 100644 mm->unmap_area = arch_unmap_area_topdown; } } +diff --git a/arch/x86/mm/tlb.c b/arch/x86/mm/tlb.c +index 821e970..ea5a4c3 100644 +--- a/arch/x86/mm/tlb.c ++++ b/arch/x86/mm/tlb.c +@@ -6,6 +6,7 @@ + #include + #include + ++#include + #include + #include + #include +@@ -129,6 +130,12 @@ void smp_invalidate_interrupt(struct pt_regs *regs) + union smp_flush_state *f; + + cpu = smp_processor_id(); ++ ++#ifdef CONFIG_X86_32 ++ if (current->active_mm) ++ load_user_cs_desc(cpu, current->active_mm); ++#endif ++ + /* + * orig_rax contains the negated interrupt vector. + * Use that to determine where the sender put the data. diff --git a/arch/x86/vdso/vdso32-setup.c b/arch/x86/vdso/vdso32-setup.c index 1241f11..3f2c44c 100644 --- a/arch/x86/vdso/vdso32-setup.c @@ -491,10 +500,10 @@ index 1241f11..3f2c44c 100644 ret = addr; goto up_fail; diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c -index b58e963..cdc83ce 100644 +index 82cd39a..702e3a0 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c -@@ -316,6 +316,24 @@ static void xen_set_ldt(const void *addr, unsigned entries) +@@ -282,6 +282,24 @@ static void xen_set_ldt(const void *addr, unsigned entries) xen_mc_issue(PARAVIRT_LAZY_CPU); } @@ -519,7 +528,7 @@ index b58e963..cdc83ce 100644 static void xen_load_gdt(const struct desc_ptr *dtr) { unsigned long *frames; -@@ -1232,6 +1250,9 @@ static const struct pv_cpu_ops xen_cpu_ops __initdata = { +@@ -792,6 +810,9 @@ static const struct pv_cpu_ops xen_cpu_ops __initdata = { .load_tr_desc = paravirt_nop, .set_ldt = xen_set_ldt, @@ -530,10 +539,10 @@ index b58e963..cdc83ce 100644 .load_idt = xen_load_idt, .load_tls = xen_load_tls, diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c -index 33b7235..ce1f044 100644 +index 40381df..f856fab 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c -@@ -80,7 +80,7 @@ static struct linux_binfmt elf_format = { +@@ -73,7 +73,7 @@ static struct linux_binfmt elf_format = { .hasvdso = 1 }; @@ -542,7 +551,7 @@ index 33b7235..ce1f044 100644 static int set_brk(unsigned long start, unsigned long end) { -@@ -735,6 +735,11 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) +@@ -721,6 +721,11 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) break; } @@ -554,7 +563,7 @@ index 33b7235..ce1f044 100644 /* Some simple consistency checks for the interpreter */ if (elf_interpreter) { retval = -ELIBBAD; -@@ -754,6 +759,15 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) +@@ -740,6 +745,15 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) if (retval) goto out_free_dentry; @@ -570,7 +579,7 @@ index 33b7235..ce1f044 100644 /* OK, This is the point of no return */ current->flags &= ~PF_FORKNOEXEC; current->mm->def_flags = def_flags; -@@ -761,7 +775,8 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) +@@ -747,7 +761,8 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) /* Do this immediately, since STACK_TOP as used in setup_arg_pages may depend on the personality. */ SET_PERSONALITY(loc->elf_ex); @@ -580,7 +589,7 @@ index 33b7235..ce1f044 100644 current->personality |= READ_IMPLIES_EXEC; if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) -@@ -926,7 +941,7 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) +@@ -912,7 +927,7 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs) interpreter, &interp_map_addr, load_bias); @@ -590,10 +599,10 @@ index 33b7235..ce1f044 100644 * load_elf_interp() returns relocation * adjustment diff --git a/include/linux/mm.h b/include/linux/mm.h -index 065cdf8..aa94aa9 100644 +index bff1f0d..88c5efa 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h -@@ -1135,7 +1135,13 @@ extern int install_special_mapping(struct mm_struct *mm, +@@ -1138,7 +1138,13 @@ extern int install_special_mapping(struct mm_struct *mm, unsigned long addr, unsigned long len, unsigned long flags, struct page **pages); @@ -609,10 +618,10 @@ index 065cdf8..aa94aa9 100644 extern unsigned long do_mmap_pgoff(struct file *file, unsigned long addr, unsigned long len, unsigned long prot, diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h -index 92915e8..4bfd050 100644 +index 0e80e26..af904ea 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h -@@ -194,6 +194,9 @@ struct mm_struct { +@@ -198,6 +198,9 @@ struct mm_struct { unsigned long (*get_unmapped_area) (struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags); @@ -640,12 +649,12 @@ index 40fc7e6..68c2549 100644 /* * GPG2 wants 64kB of mlocked memory, to make sure pass phrases diff --git a/include/linux/sched.h b/include/linux/sched.h -index 8c216e0..79eca33 100644 +index b94f354..aed6221 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h -@@ -98,6 +98,9 @@ struct robust_list_head; - struct bio; +@@ -99,6 +99,9 @@ struct bio; struct bts_tracer; + struct fs_struct; +extern int exec_shield; +extern int print_fatal_signals; @@ -653,7 +662,7 @@ index 8c216e0..79eca33 100644 /* * List of flags we want to share for kernel threads, * if only because they are not used by them anyway. -@@ -346,6 +349,10 @@ extern int sysctl_max_map_count; +@@ -351,6 +354,10 @@ extern int sysctl_max_map_count; extern unsigned long arch_get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); @@ -665,10 +674,10 @@ index 8c216e0..79eca33 100644 arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, diff --git a/kernel/sysctl.c b/kernel/sysctl.c -index c5ef44f..f7abce4 100644 +index 82350f8..d89dd29 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c -@@ -85,6 +85,26 @@ extern int sysctl_nr_open_min, sysctl_nr_open_max; +@@ -86,6 +86,26 @@ extern int sysctl_nr_open_min, sysctl_nr_open_max; #ifndef CONFIG_MMU extern int sysctl_nr_trim_pages; #endif @@ -695,7 +704,7 @@ index c5ef44f..f7abce4 100644 #ifdef CONFIG_RCU_TORTURE_TEST extern int rcutorture_runnable; #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ -@@ -379,6 +399,14 @@ static struct ctl_table kern_table[] = { +@@ -377,6 +397,14 @@ static struct ctl_table kern_table[] = { .proc_handler = &proc_dointvec, }, { @@ -711,10 +720,10 @@ index c5ef44f..f7abce4 100644 .procname = "core_uses_pid", .data = &core_uses_pid, diff --git a/mm/mmap.c b/mm/mmap.c -index 00ced3e..931bc3b 100644 +index 4a38411..12ca810 100644 --- a/mm/mmap.c +++ b/mm/mmap.c -@@ -27,6 +27,7 @@ +@@ -28,6 +28,7 @@ #include #include #include @@ -722,7 +731,7 @@ index 00ced3e..931bc3b 100644 #include #include -@@ -43,6 +44,18 @@ +@@ -44,6 +45,18 @@ #define arch_rebalance_pgtables(addr, len) (addr) #endif @@ -741,7 +750,7 @@ index 00ced3e..931bc3b 100644 static void unmap_region(struct mm_struct *mm, struct vm_area_struct *vma, struct vm_area_struct *prev, unsigned long start, unsigned long end); -@@ -391,6 +404,8 @@ static inline void +@@ -392,6 +405,8 @@ static inline void __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma, struct vm_area_struct *prev, struct rb_node *rb_parent) { @@ -750,7 +759,7 @@ index 00ced3e..931bc3b 100644 if (prev) { vma->vm_next = prev->vm_next; prev->vm_next = vma; -@@ -493,6 +508,8 @@ __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma, +@@ -494,6 +509,8 @@ __vma_unlink(struct mm_struct *mm, struct vm_area_struct *vma, rb_erase(&vma->vm_rb, &mm->mm_rb); if (mm->mmap_cache == vma) mm->mmap_cache = prev; @@ -759,7 +768,7 @@ index 00ced3e..931bc3b 100644 } /* -@@ -802,6 +819,8 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm, +@@ -803,6 +820,8 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm, } else /* cases 2, 5, 7 */ vma_adjust(prev, prev->vm_start, end, prev->vm_pgoff, NULL); @@ -768,7 +777,7 @@ index 00ced3e..931bc3b 100644 return prev; } -@@ -956,7 +975,8 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr, +@@ -957,7 +976,8 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr, /* Obtain the address to map to. we verify (or select) it and ensure * that it represents a valid section of the address space. */ @@ -778,7 +787,7 @@ index 00ced3e..931bc3b 100644 if (addr & ~PAGE_MASK) return addr; -@@ -1436,13 +1456,17 @@ void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr) +@@ -1440,13 +1460,17 @@ void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr) } unsigned long @@ -799,7 +808,7 @@ index 00ced3e..931bc3b 100644 if (file && file->f_op && file->f_op->get_unmapped_area) get_area = file->f_op->get_unmapped_area; addr = get_area(file, addr, len, pgoff, flags); -@@ -1456,8 +1480,76 @@ get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, +@@ -1460,8 +1484,76 @@ get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, return arch_rebalance_pgtables(addr, len); } @@ -877,7 +886,7 @@ index 00ced3e..931bc3b 100644 /* Look up the first VMA which satisfies addr < vm_end, NULL if none. */ struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr) -@@ -1532,6 +1624,14 @@ out: +@@ -1536,6 +1628,14 @@ out: return prev ? prev->vm_next : vma; } @@ -892,7 +901,7 @@ index 00ced3e..931bc3b 100644 /* * Verify that the stack growth is acceptable and * update accounting. This is shared with both the -@@ -1548,7 +1648,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns +@@ -1552,7 +1652,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns return -ENOMEM; /* Stack limit test */ @@ -901,7 +910,7 @@ index 00ced3e..931bc3b 100644 return -ENOMEM; /* mlock limit tests */ -@@ -1858,10 +1958,14 @@ int split_vma(struct mm_struct * mm, struct vm_area_struct * vma, +@@ -1862,10 +1962,14 @@ int split_vma(struct mm_struct * mm, struct vm_area_struct * vma, if (new->vm_ops && new->vm_ops->open) new->vm_ops->open(new); @@ -918,7 +927,7 @@ index 00ced3e..931bc3b 100644 vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new); return 0; -@@ -2110,6 +2214,7 @@ void exit_mmap(struct mm_struct *mm) +@@ -2114,6 +2218,7 @@ void exit_mmap(struct mm_struct *mm) vm_unacct_memory(nr_accounted); free_pgtables(tlb, vma, FIRST_USER_ADDRESS, 0); tlb_finish_mmu(tlb, 0, end); linux-2.6-tracehook.patch: include/linux/tracehook.h | 25 ++++++++++------ kernel/signal.c | 69 +++++++++++++++++++++++----------------------- 2 files changed, 51 insertions(+), 43 deletions(-) Index: linux-2.6-tracehook.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-tracehook.patch,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- linux-2.6-tracehook.patch 2 Jun 2009 20:44:55 -0000 1.9 +++ linux-2.6-tracehook.patch 25 Jul 2009 04:09:27 -0000 1.10 @@ -19,7 +19,7 @@ Signed-off-by: Roland McGrath siglock, notice SIGNAL_CLD_MASK, and * notify its parent. See get_signal_to_deliver(). */ -@@ -1637,29 +1637,6 @@ void ptrace_notify(int exit_code) +@@ -1665,29 +1665,6 @@ void ptrace_notify(int exit_code) spin_unlock_irq(¤t->sighand->siglock); } @@ -112,7 +112,7 @@ index 1c88144..1adbb90 100644 /* * This performs the stopping for SIGSTOP and other stop signals. * We have to stop all threads in the thread group. -@@ -1670,6 +1647,7 @@ static int do_signal_stop(int signr) +@@ -1698,6 +1675,7 @@ static int do_signal_stop(int signr) { struct signal_struct *sig = current->signal; int stop_count; @@ -120,7 +120,7 @@ index 1c88144..1adbb90 100644 if (sig->group_stop_count > 0) { /* -@@ -1709,8 +1687,30 @@ static int do_signal_stop(int signr) +@@ -1737,8 +1715,30 @@ static int do_signal_stop(int signr) current->exit_code = sig->group_exit_code; __set_current_state(TASK_STOPPED); @@ -152,7 +152,7 @@ index 1c88144..1adbb90 100644 return 1; } -@@ -1779,14 +1779,15 @@ relock: +@@ -1807,14 +1807,15 @@ relock: int why = (signal->flags & SIGNAL_STOP_CONTINUED) ? CLD_CONTINUED : CLD_STOPPED; signal->flags &= ~SIGNAL_CLD_MASK; @@ -174,7 +174,7 @@ index 1c88144..1adbb90 100644 goto relock; } -@@ -1944,14 +1945,14 @@ void exit_signals(struct task_struct *ts +@@ -1979,14 +1980,14 @@ void exit_signals(struct task_struct *ts if (unlikely(tsk->signal->group_stop_count) && !--tsk->signal->group_stop_count) { tsk->signal->flags = SIGNAL_STOP_STOPPED; linux-2.6-upstream-reverts.patch: 0 files changed Index: linux-2.6-upstream-reverts.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-upstream-reverts.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- linux-2.6-upstream-reverts.patch 13 Jun 2009 02:07:58 -0000 1.7 +++ linux-2.6-upstream-reverts.patch 25 Jul 2009 04:09:27 -0000 1.8 @@ -1,36 +1 @@ -From 42beefc0093725ec0f8cea340cc54c36ccaceea0 Mon Sep 17 00:00:00 2001 -From: Dave Airlie -Date: Wed, 6 May 2009 09:04:52 +1000 -Subject: drm/r128: fix r128 ioremaps to use ioremap_wc. - -From: Dave Airlie - -commit 42beefc0093725ec0f8cea340cc54c36ccaceea0 upstream. - -This should allow r128 to start working again since PAT changes. - -taken from F-11 kernel. - -Signed-off-by: Dave Airlie -Cc: Venkatesh Pallipadi -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/gpu/drm/r128/r128_cce.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - ---- a/drivers/gpu/drm/r128/r128_cce.c -+++ b/drivers/gpu/drm/r128/r128_cce.c -@@ -511,9 +511,9 @@ static int r128_do_init_cce(struct drm_d - - #if __OS_HAS_AGP - if (!dev_priv->is_pci) { -- drm_core_ioremap(dev_priv->cce_ring, dev); -- drm_core_ioremap(dev_priv->ring_rptr, dev); -- drm_core_ioremap(dev->agp_buffer_map, dev); -+ drm_core_ioremap_wc(dev_priv->cce_ring, dev); -+ drm_core_ioremap_wc(dev_priv->ring_rptr, dev); -+ drm_core_ioremap_wc(dev->agp_buffer_map, dev); - if (!dev_priv->cce_ring->handle || - !dev_priv->ring_rptr->handle || - !dev->agp_buffer_map->handle) { +nil linux-2.6-utrace.patch: Documentation/DocBook/Makefile | 2 Documentation/DocBook/utrace.tmpl | 590 +++++++++ fs/proc/array.c | 3 include/linux/init_task.h | 1 include/linux/sched.h | 6 include/linux/tracehook.h | 61 include/linux/utrace.h | 692 +++++++++++ include/linux/utrace_struct.h | 58 init/Kconfig | 9 kernel/Makefile | 1 kernel/ptrace.c | 18 kernel/utrace.c | 2357 ++++++++++++++++++++++++++++++++++++++ 12 files changed, 3795 insertions(+), 3 deletions(-) Index: linux-2.6-utrace.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-utrace.patch,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- linux-2.6-utrace.patch 2 Jun 2009 20:44:55 -0000 1.111 +++ linux-2.6-utrace.patch 25 Jul 2009 04:09:27 -0000 1.112 @@ -40,7 +40,7 @@ Signed-off-by: Roland McGrath files) fdt = files_fdtable(p->files); diff --git a/include/linux/init_task.h b/include/linux/init_task.h -index e752d97..39eebc8 100644 +index d87247d..0d0b55d 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h -@@ -181,6 +181,7 @@ extern struct cred init_cred; +@@ -170,6 +170,7 @@ extern struct cred init_cred; [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \ }, \ .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \ @@ -682,7 +682,7 @@ index e752d97..39eebc8 100644 INIT_TRACE_IRQFLAGS \ INIT_LOCKDEP \ diff --git a/include/linux/sched.h b/include/linux/sched.h -index f8af167..454de2a 100644 +index b4c38bc..30db106 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -59,6 +59,7 @@ struct sched_param { @@ -693,7 +693,7 @@ index f8af167..454de2a 100644 #include #include -@@ -1288,6 +1289,11 @@ struct task_struct { +@@ -1291,6 +1292,11 @@ struct task_struct { #endif seccomp_t seccomp; @@ -706,7 +706,7 @@ index f8af167..454de2a 100644 u32 parent_exec_id; u32 self_exec_id; diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h -index b622498..8def62a 100644 +index 4ec4821..a7de30f 100644 --- a/include/linux/tracehook.h +++ b/include/linux/tracehook.h @@ -49,6 +49,7 @@ @@ -777,9 +777,9 @@ index b622498..8def62a 100644 { + if (unlikely(task_utrace_flags(current) & UTRACE_EVENT(CLONE))) + utrace_report_clone(clone_flags, child); - if (unlikely(trace) || unlikely(clone_flags & CLONE_PTRACE)) { + if (unlikely(task_ptrace(child))) { /* - * The child starts up with an immediate SIGSTOP. + * It doesn't matter who attached/attaching to this @@ -311,6 +326,9 @@ static inline void tracehook_report_clon pid_t pid, struct task_struct *child) @@ -815,18 +815,18 @@ index b622498..8def62a 100644 if (stepping) ptrace_notify(SIGTRAP); } -@@ -400,6 +422,8 @@ static inline int tracehook_consider_ign - int sig, - void __user *handler) +@@ -397,6 +419,8 @@ static inline void tracehook_signal_hand + static inline int tracehook_consider_ignored_signal(struct task_struct *task, + int sig) { + if (unlikely(task_utrace_flags(task) & UTRACE_EVENT(SIGNAL_IGN))) + return 1; return (task_ptrace(task) & PT_PTRACED) != 0; } -@@ -421,6 +445,9 @@ static inline int tracehook_consider_fat - int sig, - void __user *handler) +@@ -416,6 +440,9 @@ static inline int tracehook_consider_ign + static inline int tracehook_consider_fatal_signal(struct task_struct *task, + int sig) { + if (unlikely(task_utrace_flags(task) & (UTRACE_EVENT(SIGNAL_TERM) | + UTRACE_EVENT(SIGNAL_CORE)))) @@ -834,7 +834,7 @@ index b622498..8def62a 100644 return (task_ptrace(task) & PT_PTRACED) != 0; } -@@ -435,6 +462,8 @@ static inline int tracehook_consider_fat +@@ -430,6 +457,8 @@ static inline int tracehook_consider_fat */ static inline int tracehook_force_sigpending(void) { @@ -843,7 +843,7 @@ index b622498..8def62a 100644 return 0; } -@@ -464,6 +493,8 @@ static inline int tracehook_get_signal(s +@@ -459,6 +488,8 @@ static inline int tracehook_get_signal(s siginfo_t *info, struct k_sigaction *return_ka) { @@ -852,7 +852,7 @@ index b622498..8def62a 100644 return 0; } -@@ -491,6 +522,8 @@ static inline int tracehook_get_signal(s +@@ -486,6 +517,8 @@ static inline int tracehook_get_signal(s */ static inline int tracehook_notify_jctl(int notify, int why) { @@ -861,16 +861,16 @@ index b622498..8def62a 100644 return notify ?: (current->ptrace & PT_PTRACED) ? why : 0; } -@@ -514,6 +547,8 @@ static inline int tracehook_notify_jctl( +@@ -509,6 +542,8 @@ static inline int tracehook_notify_jctl( static inline int tracehook_notify_death(struct task_struct *task, void **death_cookie, int group_dead) { + *death_cookie = task_utrace_struct(task); + - if (task->exit_signal == -1) + if (task_detached(task)) return task->ptrace ? SIGCHLD : DEATH_REAP; -@@ -550,6 +585,20 @@ static inline void tracehook_report_deat +@@ -545,6 +580,20 @@ static inline void tracehook_report_deat int signal, void *death_cookie, int group_dead) { @@ -891,7 +891,7 @@ index b622498..8def62a 100644 } #ifdef TIF_NOTIFY_RESUME -@@ -579,10 +628,20 @@ static inline void set_notify_resume(str +@@ -574,10 +623,20 @@ static inline void set_notify_resume(str * asynchronously, this will be called again before we return to * user mode. * @@ -1676,10 +1676,10 @@ index ...aba7e09 100644 + +#endif /* linux/utrace_struct.h */ diff --git a/init/Kconfig b/init/Kconfig -index 6a5c5fe..4b5ab3e 100644 +index 7be4d38..a6987df 100644 --- a/init/Kconfig +++ b/init/Kconfig -@@ -1060,6 +1060,15 @@ config STOP_MACHINE +@@ -1149,6 +1149,15 @@ config STOP_MACHINE help Need stop_machine() primitive. @@ -1696,7 +1696,7 @@ index 6a5c5fe..4b5ab3e 100644 config PREEMPT_NOTIFIERS diff --git a/kernel/Makefile b/kernel/Makefile -index e4791b3..7bff724 100644 +index 4242366..a79634e 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -68,6 +68,7 @@ obj-$(CONFIG_IKCONFIG) += configs.o @@ -1708,7 +1708,7 @@ index e4791b3..7bff724 100644 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o obj-$(CONFIG_AUDIT_TREE) += audit_tree.o diff --git a/kernel/ptrace.c b/kernel/ptrace.c -index dc3b98e..f897ef6 100644 +index 0692ab5..1d33e9c 100644 --- a/kernel/ptrace.c +++ b/kernel/ptrace.c @@ -16,6 +16,7 @@ @@ -1719,8 +1719,8 @@ index dc3b98e..f897ef6 100644 #include #include #include -@@ -172,6 +173,14 @@ bool ptrace_may_access(struct task_struc - return (!err ? true : false); +@@ -174,6 +175,14 @@ bool ptrace_may_access(struct task_struc + return !err; } +/* @@ -1734,7 +1734,7 @@ index dc3b98e..f897ef6 100644 int ptrace_attach(struct task_struct *task) { int retval; -@@ -210,6 +219,11 @@ repeat: +@@ -212,6 +221,11 @@ repeat: goto repeat; } @@ -1746,7 +1746,7 @@ index dc3b98e..f897ef6 100644 if (!task->mm) goto bad; /* the same process cannot be attached many times */ -@@ -515,7 +529,9 @@ int ptrace_traceme(void) +@@ -588,7 +602,9 @@ int ptrace_traceme(void) */ repeat: task_lock(current); linux-2.6-v4l-dvb-fixes.patch: b/Documentation/dvb/get_dvb_firmware | 85 b/Documentation/feature-removal-schedule.txt | 8 b/Documentation/ioctl/ioctl-number.txt | 2 b/Documentation/video4linux/CARDLIST.bttv | 6 b/Documentation/video4linux/CARDLIST.cx23885 | 4 b/Documentation/video4linux/CARDLIST.cx88 | 1 b/Documentation/video4linux/CARDLIST.em28xx | 9 b/Documentation/video4linux/CARDLIST.saa7134 | 2 b/Documentation/video4linux/Zoran | 3 b/Documentation/video4linux/bttv/Insmod-options | 10 b/Documentation/video4linux/bttv/README | 4 b/Documentation/video4linux/cx2341x/README.hm12 | 4 b/Documentation/video4linux/gspca.txt | 4 b/Documentation/video4linux/si470x.txt | 11 b/Documentation/video4linux/v4l2-framework.txt | 187 b/Documentation/video4linux/v4lgrab.c | 4 b/Documentation/video4linux/zr364xx.txt | 1 b/MAINTAINERS | 2 b/arch/arm/mach-pxa/pcm990-baseboard.c | 53 b/arch/arm/plat-mxc/include/mach/mx3_camera.h | 52 b/arch/sh/boards/board-ap325rxa.c | 3 b/arch/sh/boards/mach-migor/setup.c | 5 b/drivers/media/Kconfig | 2 b/drivers/media/common/ir-keymaps.c | 146 b/drivers/media/common/saa7146_core.c | 15 b/drivers/media/common/saa7146_fops.c | 48 b/drivers/media/common/saa7146_i2c.c | 29 b/drivers/media/common/saa7146_video.c | 1268 ++--- b/drivers/media/common/tuners/Kconfig | 64 b/drivers/media/common/tuners/Makefile | 1 b/drivers/media/common/tuners/mc44s803.c | 371 + b/drivers/media/common/tuners/mc44s803.h | 46 b/drivers/media/common/tuners/mc44s803_priv.h | 208 b/drivers/media/common/tuners/mt2060.c | 2 b/drivers/media/common/tuners/mt20xx.c | 2 b/drivers/media/common/tuners/mxl5005s.c | 7 b/drivers/media/common/tuners/mxl5007t.c | 428 - b/drivers/media/common/tuners/tda18271-common.c | 6 b/drivers/media/common/tuners/tda18271-fe.c | 37 b/drivers/media/common/tuners/tda18271-priv.h | 6 b/drivers/media/common/tuners/tda18271.h | 10 b/drivers/media/common/tuners/tda827x.c | 237 - b/drivers/media/common/tuners/tda8290.c | 9 b/drivers/media/common/tuners/tea5761.c | 2 b/drivers/media/common/tuners/tea5767.c | 2 b/drivers/media/common/tuners/xc5000.c | 14 b/drivers/media/dvb/b2c2/Kconfig | 2 b/drivers/media/dvb/b2c2/Makefile | 1 b/drivers/media/dvb/b2c2/flexcop-common.h | 64 b/drivers/media/dvb/b2c2/flexcop-dma.c | 27 b/drivers/media/dvb/b2c2/flexcop-eeprom.c | 47 b/drivers/media/dvb/b2c2/flexcop-fe-tuner.c | 6 b/drivers/media/dvb/b2c2/flexcop-hw-filter.c | 171 b/drivers/media/dvb/b2c2/flexcop-i2c.c | 61 b/drivers/media/dvb/b2c2/flexcop-misc.c | 68 b/drivers/media/dvb/b2c2/flexcop-pci.c | 165 b/drivers/media/dvb/b2c2/flexcop-reg.h | 21 b/drivers/media/dvb/b2c2/flexcop-sram.c | 112 b/drivers/media/dvb/b2c2/flexcop-usb.c | 368 - b/drivers/media/dvb/b2c2/flexcop-usb.h | 62 b/drivers/media/dvb/b2c2/flexcop.c | 86 b/drivers/media/dvb/b2c2/flexcop.h | 20 b/drivers/media/dvb/b2c2/flexcop_ibi_value_be.h | 7 b/drivers/media/dvb/b2c2/flexcop_ibi_value_le.h | 7 b/drivers/media/dvb/bt8xx/Kconfig | 2 b/drivers/media/dvb/bt8xx/dst_ca.c | 14 b/drivers/media/dvb/bt8xx/dvb-bt8xx.c | 2 b/drivers/media/dvb/dm1105/Kconfig | 1 b/drivers/media/dvb/dm1105/dm1105.c | 204 b/drivers/media/dvb/dvb-core/dmxdev.c | 2 b/drivers/media/dvb/dvb-core/dvb_ca_en50221.c | 2 b/drivers/media/dvb/dvb-core/dvb_frontend.c | 2 b/drivers/media/dvb/dvb-core/dvb_net.c | 2 b/drivers/media/dvb/dvb-core/dvbdev.c | 4 b/drivers/media/dvb/dvb-core/dvbdev.h | 2 b/drivers/media/dvb/dvb-usb/Kconfig | 67 b/drivers/media/dvb/dvb-usb/Makefile | 2 b/drivers/media/dvb/dvb-usb/af9015.c | 60 b/drivers/media/dvb/dvb-usb/af9015.h | 31 b/drivers/media/dvb/dvb-usb/ce6230.c | 328 + b/drivers/media/dvb/dvb-usb/ce6230.h | 69 b/drivers/media/dvb/dvb-usb/dib0700_core.c | 10 b/drivers/media/dvb/dvb-usb/dib0700_devices.c | 164 b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h | 11 b/drivers/media/dvb/dvb-usb/dvb-usb.h | 2 b/drivers/media/dvb/firewire/firedtv-avc.c | 2 b/drivers/media/dvb/frontends/Kconfig | 69 b/drivers/media/dvb/frontends/Makefile | 6 b/drivers/media/dvb/frontends/au8522.h | 16 b/drivers/media/dvb/frontends/au8522_decoder.c | 835 +++ b/drivers/media/dvb/frontends/au8522_dig.c | 902 +++ b/drivers/media/dvb/frontends/au8522_priv.h | 412 + b/drivers/media/dvb/frontends/cx24113.c | 2 b/drivers/media/dvb/frontends/cx24116.c | 63 b/drivers/media/dvb/frontends/cx24123.c | 4 b/drivers/media/dvb/frontends/dib0070.h | 2 b/drivers/media/dvb/frontends/dib3000mc.h | 36 b/drivers/media/dvb/frontends/dib7000m.h | 28 b/drivers/media/dvb/frontends/dib7000p.h | 35 b/drivers/media/dvb/frontends/dvb_dummy_fe.h | 19 b/drivers/media/dvb/frontends/itd1000_priv.h | 2 b/drivers/media/dvb/frontends/lgdt3304.c | 1 b/drivers/media/dvb/frontends/lgdt3305.c | 1087 ++++ b/drivers/media/dvb/frontends/lgdt3305.h | 85 b/drivers/media/dvb/frontends/lnbh24.h | 55 b/drivers/media/dvb/frontends/lnbp21.c | 41 b/drivers/media/dvb/frontends/lnbp21.h | 34 b/drivers/media/dvb/frontends/s921_module.c | 1 b/drivers/media/dvb/frontends/stb6100_cfg.h | 4 b/drivers/media/dvb/frontends/stv0900.h | 62 b/drivers/media/dvb/frontends/stv0900_core.c | 1949 ++++++++ b/drivers/media/dvb/frontends/stv0900_init.h | 441 + b/drivers/media/dvb/frontends/stv0900_priv.h | 430 + b/drivers/media/dvb/frontends/stv0900_reg.h | 3787 ++++++++++++++++ b/drivers/media/dvb/frontends/stv0900_sw.c | 2847 ++++++++++++ b/drivers/media/dvb/frontends/stv6110.c | 456 + b/drivers/media/dvb/frontends/stv6110.h | 62 b/drivers/media/dvb/frontends/tda1004x.c | 30 b/drivers/media/dvb/frontends/zl10036.c | 519 ++ b/drivers/media/dvb/frontends/zl10036.h | 53 b/drivers/media/dvb/frontends/zl10353.c | 8 b/drivers/media/dvb/frontends/zl10353.h | 4 b/drivers/media/dvb/frontends/zl10353_priv.h | 8 b/drivers/media/dvb/pluto2/pluto2.c | 7 b/drivers/media/dvb/siano/Makefile | 4 b/drivers/media/dvb/siano/sms-cards.c | 92 b/drivers/media/dvb/siano/sms-cards.h | 5 b/drivers/media/dvb/siano/smscoreapi.c | 45 b/drivers/media/dvb/siano/smscoreapi.h | 41 b/drivers/media/dvb/siano/smsdvb.c | 60 b/drivers/media/dvb/siano/smsusb.c | 73 b/drivers/media/dvb/ttpci/Kconfig | 2 b/drivers/media/dvb/ttpci/av7110.c | 2 b/drivers/media/dvb/ttpci/av7110_av.c | 4 b/drivers/media/dvb/ttpci/av7110_ca.c | 2 b/drivers/media/dvb/ttpci/av7110_v4l.c | 480 +- b/drivers/media/dvb/ttpci/budget-av.c | 88 b/drivers/media/dvb/ttpci/budget-ci.c | 6 b/drivers/media/radio/dsbr100.c | 10 b/drivers/media/radio/radio-aimslab.c | 347 - b/drivers/media/radio/radio-aztech.c | 378 - b/drivers/media/radio/radio-cadet.c | 595 +- b/drivers/media/radio/radio-gemtek-pci.c | 329 - b/drivers/media/radio/radio-gemtek.c | 396 - b/drivers/media/radio/radio-maestro.c | 337 - b/drivers/media/radio/radio-maxiradio.c | 374 - b/drivers/media/radio/radio-mr800.c | 221 b/drivers/media/radio/radio-rtrack2.c | 276 - b/drivers/media/radio/radio-sf16fmi.c | 283 - b/drivers/media/radio/radio-sf16fmr2.c | 371 - b/drivers/media/radio/radio-si470x.c | 200 b/drivers/media/radio/radio-tea5764.c | 3 b/drivers/media/radio/radio-terratec.c | 310 - b/drivers/media/radio/radio-trust.c | 343 - b/drivers/media/radio/radio-typhoon.c | 349 - b/drivers/media/radio/radio-zoltrix.c | 378 - b/drivers/media/video/Kconfig | 94 b/drivers/media/video/Makefile | 10 b/drivers/media/video/adv7170.c | 354 - b/drivers/media/video/adv7175.c | 329 - b/drivers/media/video/au0828/Kconfig | 10 b/drivers/media/video/au0828/Makefile | 2 b/drivers/media/video/au0828/au0828-cards.c | 127 b/drivers/media/video/au0828/au0828-core.c | 34 b/drivers/media/video/au0828/au0828-dvb.c | 2 b/drivers/media/video/au0828/au0828-i2c.c | 72 b/drivers/media/video/au0828/au0828-reg.h | 6 b/drivers/media/video/au0828/au0828-video.c | 1712 +++++++ b/drivers/media/video/au0828/au0828.h | 181 b/drivers/media/video/bt819.c | 493 +- b/drivers/media/video/bt856.c | 291 - b/drivers/media/video/bt866.c | 282 - b/drivers/media/video/bt8xx/Kconfig | 2 b/drivers/media/video/bt8xx/bttv-cards.c | 1672 +++---- b/drivers/media/video/bt8xx/bttv-driver.c | 197 b/drivers/media/video/bt8xx/bttv-i2c.c | 61 b/drivers/media/video/bt8xx/bttv-if.c | 18 b/drivers/media/video/bt8xx/bttv-risc.c | 4 b/drivers/media/video/bt8xx/bttv-vbi.c | 2 b/drivers/media/video/bt8xx/bttv.h | 96 b/drivers/media/video/bt8xx/bttvp.h | 30 b/drivers/media/video/cafe_ccic.c | 432 - b/drivers/media/video/cpia2/cpia2_v4l.c | 1 b/drivers/media/video/cs5345.c | 7 b/drivers/media/video/cs53l32a.c | 12 b/drivers/media/video/cx18/Kconfig | 2 b/drivers/media/video/cx18/cx18-audio.c | 52 b/drivers/media/video/cx18/cx18-audio.h | 2 b/drivers/media/video/cx18/cx18-av-audio.c | 120 b/drivers/media/video/cx18/cx18-av-core.c | 796 ++- b/drivers/media/video/cx18/cx18-av-core.h | 49 b/drivers/media/video/cx18/cx18-av-firmware.c | 16 b/drivers/media/video/cx18/cx18-av-vbi.c | 367 - b/drivers/media/video/cx18/cx18-cards.c | 50 b/drivers/media/video/cx18/cx18-cards.h | 18 b/drivers/media/video/cx18/cx18-controls.c | 70 b/drivers/media/video/cx18/cx18-driver.c | 416 - b/drivers/media/video/cx18/cx18-driver.h | 258 - b/drivers/media/video/cx18/cx18-dvb.c | 2 b/drivers/media/video/cx18/cx18-fileops.c | 107 b/drivers/media/video/cx18/cx18-firmware.c | 22 b/drivers/media/video/cx18/cx18-gpio.c | 319 - b/drivers/media/video/cx18/cx18-gpio.h | 10 b/drivers/media/video/cx18/cx18-i2c.c | 296 - b/drivers/media/video/cx18/cx18-i2c.h | 5 b/drivers/media/video/cx18/cx18-ioctl.c | 273 - b/drivers/media/video/cx18/cx18-mailbox.c | 44 b/drivers/media/video/cx18/cx18-queue.c | 4 b/drivers/media/video/cx18/cx18-queue.h | 4 b/drivers/media/video/cx18/cx18-streams.c | 210 b/drivers/media/video/cx18/cx18-vbi.c | 155 b/drivers/media/video/cx18/cx18-vbi.h | 2 b/drivers/media/video/cx18/cx18-version.h | 4 b/drivers/media/video/cx18/cx18-video.c | 3 b/drivers/media/video/cx18/cx23418.h | 16 b/drivers/media/video/cx2341x.c | 196 b/drivers/media/video/cx23885/Kconfig | 15 b/drivers/media/video/cx23885/Makefile | 4 b/drivers/media/video/cx23885/cimax2.c | 472 ++ b/drivers/media/video/cx23885/cimax2.h | 47 b/drivers/media/video/cx23885/cx23885-417.c | 49 b/drivers/media/video/cx23885/cx23885-cards.c | 94 b/drivers/media/video/cx23885/cx23885-core.c | 43 b/drivers/media/video/cx23885/cx23885-dvb.c | 166 b/drivers/media/video/cx23885/cx23885-i2c.c | 68 b/drivers/media/video/cx23885/cx23885-reg.h | 2 b/drivers/media/video/cx23885/cx23885-video.c | 51 b/drivers/media/video/cx23885/cx23885.h | 20 b/drivers/media/video/cx23885/netup-eeprom.c | 107 b/drivers/media/video/cx23885/netup-eeprom.h | 42 b/drivers/media/video/cx23885/netup-init.c | 125 b/drivers/media/video/cx23885/netup-init.h | 25 b/drivers/media/video/cx25840/cx25840-audio.c | 121 b/drivers/media/video/cx25840/cx25840-core.c | 65 b/drivers/media/video/cx25840/cx25840-core.h | 8 b/drivers/media/video/cx25840/cx25840-vbi.c | 314 - b/drivers/media/video/cx88/Kconfig | 2 b/drivers/media/video/cx88/cx88-blackbird.c | 8 b/drivers/media/video/cx88/cx88-cards.c | 99 b/drivers/media/video/cx88/cx88-core.c | 11 b/drivers/media/video/cx88/cx88-dvb.c | 18 b/drivers/media/video/cx88/cx88-i2c.c | 41 b/drivers/media/video/cx88/cx88-input.c | 29 b/drivers/media/video/cx88/cx88-video.c | 52 b/drivers/media/video/cx88/cx88.h | 24 b/drivers/media/video/dabusb.c | 83 b/drivers/media/video/em28xx/em28xx-audio.c | 77 b/drivers/media/video/em28xx/em28xx-cards.c | 195 b/drivers/media/video/em28xx/em28xx-core.c | 41 b/drivers/media/video/em28xx/em28xx-dvb.c | 3 b/drivers/media/video/em28xx/em28xx-i2c.c | 12 b/drivers/media/video/em28xx/em28xx-input.c | 22 b/drivers/media/video/em28xx/em28xx-video.c | 61 b/drivers/media/video/em28xx/em28xx.h | 24 b/drivers/media/video/gspca/Kconfig | 27 b/drivers/media/video/gspca/Makefile | 102 b/drivers/media/video/gspca/conex.c | 63 b/drivers/media/video/gspca/etoms.c | 36 b/drivers/media/video/gspca/finepix.c | 433 - b/drivers/media/video/gspca/gspca.c | 166 b/drivers/media/video/gspca/gspca.h | 14 b/drivers/media/video/gspca/jpeg.h | 263 - b/drivers/media/video/gspca/m5602/m5602_core.c | 7 b/drivers/media/video/gspca/mars.c | 506 +- b/drivers/media/video/gspca/mr97310a.c | 362 + b/drivers/media/video/gspca/ov519.c | 7 b/drivers/media/video/gspca/ov534.c | 820 ++- b/drivers/media/video/gspca/pac207.c | 8 b/drivers/media/video/gspca/pac7311.c | 7 b/drivers/media/video/gspca/sonixb.c | 7 b/drivers/media/video/gspca/sonixj.c | 951 +++- b/drivers/media/video/gspca/spca500.c | 99 b/drivers/media/video/gspca/spca501.c | 22 b/drivers/media/video/gspca/spca505.c | 525 +- b/drivers/media/video/gspca/spca506.c | 57 b/drivers/media/video/gspca/spca508.c | 128 b/drivers/media/video/gspca/spca561.c | 192 b/drivers/media/video/gspca/sq905.c | 456 + b/drivers/media/video/gspca/sq905c.c | 328 + b/drivers/media/video/gspca/stk014.c | 72 b/drivers/media/video/gspca/stv06xx/stv06xx.c | 7 b/drivers/media/video/gspca/stv06xx/stv06xx_hdcs.c | 76 b/drivers/media/video/gspca/stv06xx/stv06xx_hdcs.h | 65 b/drivers/media/video/gspca/stv06xx/stv06xx_pb0100.c | 147 b/drivers/media/video/gspca/stv06xx/stv06xx_pb0100.h | 130 b/drivers/media/video/gspca/stv06xx/stv06xx_sensor.h | 8 b/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.c | 123 b/drivers/media/video/gspca/stv06xx/stv06xx_vv6410.h | 58 b/drivers/media/video/gspca/sunplus.c | 124 b/drivers/media/video/gspca/t613.c | 564 +- b/drivers/media/video/gspca/tv8532.c | 483 -- b/drivers/media/video/gspca/vc032x.c | 1591 +++++- b/drivers/media/video/gspca/zc3xx.c | 884 ++- b/drivers/media/video/hdpvr/Kconfig | 10 b/drivers/media/video/hdpvr/Makefile | 9 b/drivers/media/video/hdpvr/hdpvr-control.c | 201 b/drivers/media/video/hdpvr/hdpvr-core.c | 466 ++ b/drivers/media/video/hdpvr/hdpvr-i2c.c | 145 b/drivers/media/video/hdpvr/hdpvr-video.c | 1248 +++++ b/drivers/media/video/hdpvr/hdpvr.h | 303 + b/drivers/media/video/hexium_gemini.c | 292 - b/drivers/media/video/hexium_orion.c | 103 b/drivers/media/video/indycam.c | 314 - b/drivers/media/video/indycam.h | 19 b/drivers/media/video/ir-kbd-i2c.c | 84 b/drivers/media/video/ivtv/ivtv-controls.c | 1 b/drivers/media/video/ivtv/ivtv-driver.c | 93 b/drivers/media/video/ivtv/ivtv-driver.h | 26 b/drivers/media/video/ivtv/ivtv-fileops.c | 10 b/drivers/media/video/ivtv/ivtv-firmware.c | 2 b/drivers/media/video/ivtv/ivtv-gpio.c | 4 b/drivers/media/video/ivtv/ivtv-i2c.c | 14 b/drivers/media/video/ivtv/ivtv-ioctl.c | 20 b/drivers/media/video/ivtv/ivtv-irq.c | 4 b/drivers/media/video/ivtv/ivtv-queue.c | 8 b/drivers/media/video/ivtv/ivtv-queue.h | 8 b/drivers/media/video/ivtv/ivtv-streams.c | 68 b/drivers/media/video/ivtv/ivtv-udma.c | 10 b/drivers/media/video/ivtv/ivtv-udma.h | 4 b/drivers/media/video/ivtv/ivtv-vbi.c | 2 b/drivers/media/video/ivtv/ivtv-version.h | 2 b/drivers/media/video/ivtv/ivtv-yuv.c | 6 b/drivers/media/video/ivtv/ivtvfb.c | 6 b/drivers/media/video/ks0127.c | 677 +- b/drivers/media/video/ks0127.h | 2 b/drivers/media/video/m52790.c | 7 b/drivers/media/video/meye.c | 45 b/drivers/media/video/msp3400-driver.c | 142 b/drivers/media/video/mt9m001.c | 164 b/drivers/media/video/mt9m111.c | 64 b/drivers/media/video/mt9t031.c | 179 b/drivers/media/video/mt9v022.c | 205 b/drivers/media/video/mx3_camera.c | 1220 +++++ b/drivers/media/video/mxb.c | 828 +-- b/drivers/media/video/omap24xxcam.c | 7 b/drivers/media/video/ov7670.c | 552 +- b/drivers/media/video/ov772x.c | 320 - b/drivers/media/video/ovcamchip/ovcamchip_core.c | 197 b/drivers/media/video/ovcamchip/ovcamchip_priv.h | 7 b/drivers/media/video/pvrusb2/Kconfig | 8 b/drivers/media/video/pvrusb2/Makefile | 7 b/drivers/media/video/pvrusb2/pvrusb2-audio.c | 142 b/drivers/media/video/pvrusb2/pvrusb2-audio.h | 6 b/drivers/media/video/pvrusb2/pvrusb2-cs53l32a.c | 95 b/drivers/media/video/pvrusb2/pvrusb2-cs53l32a.h | 48 b/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c | 245 - b/drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.h | 4 b/drivers/media/video/pvrusb2/pvrusb2-debugifc.c | 5 b/drivers/media/video/pvrusb2/pvrusb2-debugifc.h | 12 b/drivers/media/video/pvrusb2/pvrusb2-devattr.c | 102 b/drivers/media/video/pvrusb2/pvrusb2-devattr.h | 34 b/drivers/media/video/pvrusb2/pvrusb2-dvb.c | 2 b/drivers/media/video/pvrusb2/pvrusb2-encoder.c | 2 b/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | 50 b/drivers/media/video/pvrusb2/pvrusb2-hdw.c | 648 ++ b/drivers/media/video/pvrusb2/pvrusb2-hdw.h | 6 b/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c | 417 - b/drivers/media/video/pvrusb2/pvrusb2-i2c-core.h | 57 b/drivers/media/video/pvrusb2/pvrusb2-main.c | 4 b/drivers/media/video/pvrusb2/pvrusb2-sysfs.c | 12 b/drivers/media/video/pvrusb2/pvrusb2-v4l2.c | 18 b/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c | 214 b/drivers/media/video/pvrusb2/pvrusb2-video-v4l.h | 7 b/drivers/media/video/pvrusb2/pvrusb2-wm8775.c | 134 b/drivers/media/video/pvrusb2/pvrusb2-wm8775.h | 4 b/drivers/media/video/pwc/Kconfig | 10 b/drivers/media/video/pwc/pwc-if.c | 79 b/drivers/media/video/pwc/pwc.h | 6 b/drivers/media/video/pxa_camera.c | 68 b/drivers/media/video/s2255drv.c | 41 b/drivers/media/video/saa5246a.c | 70 b/drivers/media/video/saa5249.c | 71 b/drivers/media/video/saa6588.c | 207 b/drivers/media/video/saa7110.c | 472 +- b/drivers/media/video/saa7115.c | 64 b/drivers/media/video/saa7127.c | 1 b/drivers/media/video/saa7134/Kconfig | 13 b/drivers/media/video/saa7134/saa6752hs.c | 581 +- b/drivers/media/video/saa7134/saa7134-cards.c | 333 + b/drivers/media/video/saa7134/saa7134-core.c | 108 b/drivers/media/video/saa7134/saa7134-dvb.c | 75 b/drivers/media/video/saa7134/saa7134-empress.c | 27 b/drivers/media/video/saa7134/saa7134-i2c.c | 23 b/drivers/media/video/saa7134/saa7134-ts.c | 15 b/drivers/media/video/saa7134/saa7134-video.c | 75 b/drivers/media/video/saa7134/saa7134.h | 40 b/drivers/media/video/saa7146.h | 2 b/drivers/media/video/saa717x.c | 10 b/drivers/media/video/saa7185.c | 239 - b/drivers/media/video/saa7191.c | 500 -- b/drivers/media/video/saa7191.h | 26 b/drivers/media/video/sh_mobile_ceu_camera.c | 82 b/drivers/media/video/sn9c102/sn9c102_devtable.h | 4 b/drivers/media/video/soc_camera.c | 135 b/drivers/media/video/soc_camera_platform.c | 9 b/drivers/media/video/stk-webcam.c | 24 b/drivers/media/video/tcm825x.c | 22 b/drivers/media/video/tcm825x.h | 2 b/drivers/media/video/tda7432.c | 22 b/drivers/media/video/tda9840.c | 82 b/drivers/media/video/tda9875.c | 19 b/drivers/media/video/tea6415c.c | 53 b/drivers/media/video/tea6415c.h | 12 b/drivers/media/video/tea6420.c | 69 b/drivers/media/video/tea6420.h | 27 b/drivers/media/video/tlv320aic23b.c | 12 b/drivers/media/video/tuner-core.c | 152 b/drivers/media/video/tvaudio.c | 173 b/drivers/media/video/tveeprom.c | 7 b/drivers/media/video/tvp514x.c | 113 b/drivers/media/video/tvp5150.c | 10 b/drivers/media/video/tw9910.c | 36 b/drivers/media/video/upd64031a.c | 7 b/drivers/media/video/upd64083.c | 7 b/drivers/media/video/usbvideo/vicam.c | 2 b/drivers/media/video/usbvision/usbvision-core.c | 49 b/drivers/media/video/usbvision/usbvision-i2c.c | 153 b/drivers/media/video/usbvision/usbvision-video.c | 125 b/drivers/media/video/usbvision/usbvision.h | 10 b/drivers/media/video/uvc/uvc_ctrl.c | 2 b/drivers/media/video/uvc/uvc_driver.c | 45 b/drivers/media/video/uvc/uvc_status.c | 16 b/drivers/media/video/uvc/uvc_v4l2.c | 20 b/drivers/media/video/uvc/uvc_video.c | 133 b/drivers/media/video/uvc/uvcvideo.h | 8 b/drivers/media/video/v4l2-common.c | 265 - b/drivers/media/video/v4l2-compat-ioctl32.c | 1 b/drivers/media/video/v4l2-dev.c | 54 b/drivers/media/video/v4l2-device.c | 60 b/drivers/media/video/v4l2-ioctl.c | 192 b/drivers/media/video/v4l2-subdev.c | 18 b/drivers/media/video/videobuf-dma-contig.c | 2 b/drivers/media/video/videobuf-vmalloc.c | 2 b/drivers/media/video/vino.c | 1655 ++----- b/drivers/media/video/vivi.c | 495 +- b/drivers/media/video/vp27smpx.c | 7 b/drivers/media/video/vpx3220.c | 491 +- b/drivers/media/video/w9966.c | 2 b/drivers/media/video/w9968cf.c | 133 b/drivers/media/video/w9968cf.h | 24 b/drivers/media/video/wm8739.c | 7 b/drivers/media/video/wm8775.c | 12 b/drivers/media/video/zc0301/zc0301_sensor.h | 8 b/drivers/media/video/zoran/Kconfig | 8 b/drivers/media/video/zoran/videocodec.h | 9 b/drivers/media/video/zoran/zoran.h | 97 b/drivers/media/video/zoran/zoran_card.c | 555 -- b/drivers/media/video/zoran/zoran_card.h | 3 b/drivers/media/video/zoran/zoran_device.c | 529 -- b/drivers/media/video/zoran/zoran_device.h | 14 b/drivers/media/video/zoran/zoran_driver.c | 4385 ++++++------------- b/drivers/media/video/zoran/zoran_procfs.c | 2 b/drivers/media/video/zoran/zr36016.c | 5 b/drivers/media/video/zoran/zr36050.c | 4 b/drivers/media/video/zoran/zr36060.c | 4 b/drivers/media/video/zr364xx.c | 17 b/include/linux/Kbuild | 2 b/include/linux/i2c-id.h | 2 b/include/linux/ivtv.h | 10 b/include/linux/videodev.h | 18 b/include/linux/videodev2.h | 69 b/include/media/bt819.h | 33 b/include/media/cx2341x.h | 6 b/include/media/cx25840.h | 12 b/include/media/ir-common.h | 3 b/include/media/ir-kbd-i2c.h | 3 b/include/media/ov772x.h | 5 b/include/media/saa7146.h | 8 b/include/media/saa7146_vv.h | 17 b/include/media/sh_mobile_ceu.h | 5 b/include/media/soc_camera.h | 24 b/include/media/v4l2-chip-ident.h | 94 b/include/media/v4l2-common.h | 24 b/include/media/v4l2-dev.h | 2 b/include/media/v4l2-device.h | 40 b/include/media/v4l2-ioctl.h | 2 b/include/media/v4l2-subdev.h | 22 b/include/media/videobuf-core.h | 1 b/include/sound/tea575x-tuner.h | 8 b/sound/i2c/other/tea575x-tuner.c | 302 - b/sound/pci/Kconfig | 2 drivers/media/dvb/frontends/au8522.c | 874 --- drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c | 113 drivers/media/video/pvrusb2/pvrusb2-i2c-cmd-v4l2.c | 322 - drivers/media/video/pvrusb2/pvrusb2-i2c-cmd-v4l2.h | 50 drivers/media/video/pvrusb2/pvrusb2-tuner.c | 120 drivers/media/video/pvrusb2/pvrusb2-tuner.h | 37 drivers/media/video/saa7111.c | 492 -- drivers/media/video/saa7114.c | 1068 ---- drivers/media/video/tda9840.h | 14 include/linux/video_decoder.h | 48 include/linux/video_encoder.h | 23 492 files changed, 49377 insertions(+), 28220 deletions(-) Index: linux-2.6-v4l-dvb-fixes.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6-v4l-dvb-fixes.patch,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- linux-2.6-v4l-dvb-fixes.patch 1 May 2009 20:40:05 -0000 1.15 +++ linux-2.6-v4l-dvb-fixes.patch 25 Jul 2009 04:09:28 -0000 1.16 @@ -315,6 +315,7 @@ Hans Verkuil (171): V4L/DVB (11051): v4l-dvb: replace remaining references to the old mailinglist. V4L/DVB (11052): bt819: remove an unused header V4L/DVB (11053): saa7134: set v4l2_dev field of video_device + V4L/DVB (11098): v4l2-common: remove incorrect MODULE test V4L/DVB (11100): au8522: fix compilation warning. V4L/DVB (11112): v4l2-subdev: add support for TRY_FMT, ENUM_FMT and G/S_PARM. V4L/DVB (11113): ov7670: convert to v4l2_subdev @@ -56798,6 +56799,83 @@ index c0ff230..996b4ed 100644 /* * Local variables: * c-basic-offset: 8 +diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c +index 8683d10..ec05312 100644 +--- a/drivers/media/video/cx88/cx88-input.c ++++ b/drivers/media/video/cx88/cx88-input.c +@@ -48,8 +48,7 @@ struct cx88_IR { + + /* poll external decoder */ + int polling; +- struct work_struct work; +- struct timer_list timer; ++ struct delayed_work work; + u32 gpio_addr; + u32 last_gpio; + u32 mask_keycode; +@@ -143,27 +142,19 @@ static void cx88_ir_handle_key(struct cx88_IR *ir) + } + } + +-static void ir_timer(unsigned long data) +-{ +- struct cx88_IR *ir = (struct cx88_IR *)data; +- +- schedule_work(&ir->work); +-} +- + static void cx88_ir_work(struct work_struct *work) + { +- struct cx88_IR *ir = container_of(work, struct cx88_IR, work); ++ struct cx88_IR *ir = container_of(work, struct cx88_IR, work.work); + + cx88_ir_handle_key(ir); +- mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling)); ++ schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling)); + } + + void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir) + { + if (ir->polling) { +- setup_timer(&ir->timer, ir_timer, (unsigned long)ir); +- INIT_WORK(&ir->work, cx88_ir_work); +- schedule_work(&ir->work); ++ INIT_DELAYED_WORK(&ir->work, cx88_ir_work); ++ schedule_delayed_work(&ir->work, 0); + } + if (ir->sampling) { + core->pci_irqmask |= PCI_INT_IR_SMPINT; +@@ -179,10 +170,8 @@ void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir) + core->pci_irqmask &= ~PCI_INT_IR_SMPINT; + } + +- if (ir->polling) { +- del_timer_sync(&ir->timer); +- flush_scheduled_work(); +- } ++ if (ir->polling) ++ cancel_delayed_work_sync(&ir->work); + } + + /* ---------------------------------------------------------------------- */ +@@ -226,6 +215,8 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) + case CX88_BOARD_HAUPPAUGE_HVR3000: + case CX88_BOARD_HAUPPAUGE_HVR4000: + case CX88_BOARD_HAUPPAUGE_HVR4000LITE: ++ case CX88_BOARD_PCHDTV_HD3000: ++ case CX88_BOARD_PCHDTV_HD5500: + ir_codes = ir_codes_hauppauge_new; + ir_type = IR_TYPE_RC5; + ir->sampling = 1; +@@ -466,6 +457,8 @@ void cx88_ir_irq(struct cx88_core *core) + case CX88_BOARD_HAUPPAUGE_HVR3000: + case CX88_BOARD_HAUPPAUGE_HVR4000: + case CX88_BOARD_HAUPPAUGE_HVR4000LITE: ++ case CX88_BOARD_PCHDTV_HD3000: ++ case CX88_BOARD_PCHDTV_HD5500: + ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7); + ir_dprintk("biphase decoded: %x\n", ircode); + /* diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 791e69d..434237a 100644 --- a/drivers/media/video/cx88/cx88-video.c @@ -98317,6 +98395,19 @@ index b8f2be8..1da8cb8 100644 to high class IDs. This function returns the first ID that follows after the given ID. +@@ -910,10 +797,10 @@ struct v4l2_subdev *v4l2_i2c_new_subdev(struct i2c_adapter *adapter, + struct i2c_board_info info; + + BUG_ON(!dev); +-#ifdef MODULE ++ + if (module_name) + request_module(module_name); +-#endif ++ + /* Setup the i2c board info with the device type and + the device address. */ + memset(&info, 0, sizeof(info)); @@ -927,11 +814,11 @@ struct v4l2_subdev *v4l2_i2c_new_subdev(struct i2c_adapter *adapter, We need better support from the kernel so that we can easily wait for the load to finish. */ @@ -98346,6 +98437,19 @@ index b8f2be8..1da8cb8 100644 } EXPORT_SYMBOL_GPL(v4l2_i2c_new_subdev); +@@ -958,10 +850,10 @@ struct v4l2_subdev *v4l2_i2c_new_probed_subdev(struct i2c_adapter *adapter, + struct i2c_board_info info; + + BUG_ON(!dev); +-#ifdef MODULE ++ + if (module_name) + request_module(module_name); +-#endif ++ + /* Setup the i2c board info with the device type and + the device address. */ + memset(&info, 0, sizeof(info)); @@ -974,11 +866,11 @@ struct v4l2_subdev *v4l2_i2c_new_probed_subdev(struct i2c_adapter *adapter, We need better support from the kernel so that we can easily wait for the load to finish. */ linux-2.6.29-lirc.patch: MAINTAINERS | 9 drivers/input/Kconfig | 2 drivers/input/Makefile | 2 drivers/input/lirc/Kconfig | 118 + drivers/input/lirc/Makefile | 21 drivers/input/lirc/lirc.h | 100 + drivers/input/lirc/lirc_bt829.c | 383 ++++++ drivers/input/lirc/lirc_dev.c | 849 ++++++++++++++ drivers/input/lirc/lirc_dev.h | 184 +++ drivers/input/lirc/lirc_i2c.c | 649 ++++++++++ drivers/input/lirc/lirc_igorplugusb.c | 556 +++++++++ drivers/input/lirc/lirc_imon.c | 2043 ++++++++++++++++++++++++++++++++++ drivers/input/lirc/lirc_it87.c | 986 ++++++++++++++++ drivers/input/lirc/lirc_it87.h | 116 + drivers/input/lirc/lirc_ite8709.c | 539 ++++++++ drivers/input/lirc/lirc_mceusb.c | 749 ++++++++++++ drivers/input/lirc/lirc_mceusb2.c | 1103 ++++++++++++++++++ drivers/input/lirc/lirc_parallel.c | 709 +++++++++++ drivers/input/lirc/lirc_parallel.h | 26 drivers/input/lirc/lirc_sasem.c | 931 +++++++++++++++ drivers/input/lirc/lirc_serial.c | 1316 +++++++++++++++++++++ drivers/input/lirc/lirc_sir.c | 1294 +++++++++++++++++++++ drivers/input/lirc/lirc_streamzap.c | 777 ++++++++++++ drivers/input/lirc/lirc_ttusbir.c | 397 ++++++ drivers/input/lirc/lirc_zilog.c | 1384 +++++++++++++++++++++++ 25 files changed, 15243 insertions(+) Index: linux-2.6.29-lirc.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-11/linux-2.6.29-lirc.patch,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- linux-2.6.29-lirc.patch 30 Jun 2009 04:59:08 -0000 1.10 +++ linux-2.6.29-lirc.patch 25 Jul 2009 04:09:30 -0000 1.11 @@ -2,8 +2,6 @@ Linux Infrared Remote Control drivers -- From http://git.wilsonet.com/linux-2.6-lirc.git/ -Refreshed 20090630 - Signed-off-by: Jarod Wilson --- @@ -14,16 +12,16 @@ Signed-off-by: Jarod Wilson d.name, ir->d.minor); + mutex_init(&ir->buffer_lock); + ir->d.minor = NOPLUG; +} @@ -917,7 +914,7 @@ index 0000000..a5d5c89 + cdev_init(&ir->cdev, &fops); + ir->cdev.owner = THIS_MODULE; + } -+ kobject_set_name(&ir->cdev.kobj, "lirc%d", d->minor); ++ kobject_set_name(&ir->cdev.kobj, "lircv%d", d->minor); + + retval = cdev_add(&ir->cdev, MKDEV(MAJOR(lirc_base_dev), d->minor), 1); + if (retval) @@ -1038,8 +1035,7 @@ index 0000000..a5d5c89 + /* some safety check 8-) */ + d->name[sizeof(d->name)-1] = '\0'; + -+ bytes_in_key = BITS_TO_LONGS(d->code_length) + -+ (d->code_length % 8 ? 1 : 0); ++ bytes_in_key = BITS_TO_LONGS(d->code_length); + buffer_size = d->buffer_size ? d->buffer_size : BUFLEN / bytes_in_key; + chunk_size = d->chunk_size ? d->chunk_size : bytes_in_key; + @@ -2989,10 +2985,10 @@ index 0000000..ff49bdd + diff --git a/drivers/input/lirc/lirc_imon.c b/drivers/input/lirc/lirc_imon.c new file mode 100644 -index 0000000..5375d6f +index 0000000..bcd8d42 --- /dev/null +++ b/drivers/input/lirc/lirc_imon.c -@@ -0,0 +1,2057 @@ +@@ -0,0 +1,2043 @@ +/* + * lirc_imon.c: LIRC/VFD/LCD driver for SoundGraph iMON IR/VFD/LCD + * including the iMON PAD model @@ -3357,12 +3353,6 @@ index 0000000..5375d6f +/* IR protocol: native iMON or Windows MCE (RC-6) */ +static int ir_protocol; + -+/* -+ * In certain use cases, mouse mode isn't really helpful, and could actually -+ * cause confusion, so allow disabling it when the IR device is open. -+ */ -+static int nomouse; -+ + +/*** M O D U L E C O D E ***/ + @@ -3379,9 +3369,6 @@ index 0000000..5375d6f +module_param(ir_protocol, int, S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(ir_protocol, "Which IR protocol to use. 0=native iMON, " + "1=Windows Media Center Ed. (RC-6) (default: native iMON)"); -+module_param(nomouse, int, S_IRUGO | S_IWUSR); -+MODULE_PARM_DESC(nomouse, "Disable mouse input device mode when IR device is " -+ "open. 0=don't disable, 1=disable. (default: don't disable)"); + +static void free_imon_context(struct imon_context *context) +{ @@ -4111,14 +4098,9 @@ index 0000000..5375d6f + /* keyboard/mouse mode toggle button */ + if (memcmp(buf, toggle_button1, 4) == 0 || + memcmp(buf, toggle_button2, 4) == 0) { -+ if (!nomouse) { -+ context->pad_mouse = ~(context->pad_mouse) & 0x1; -+ dprintk("toggling to %s mode\n", -+ context->pad_mouse ? "mouse" : "keyboard"); -+ } else { -+ context->pad_mouse = 0; -+ dprintk("mouse mode was disabled by modparam\n"); -+ } ++ context->pad_mouse = ~(context->pad_mouse) & 0x1; ++ dprintk("toggling to %s mode\n", ++ context->pad_mouse ? "mouse" : "keyboard"); + return; + } + @@ -7466,10 +7448,10 @@ index 0000000..12d9723 +MODULE_PARM_DESC(debug, "Debug enabled or not"); diff --git a/drivers/input/lirc/lirc_mceusb2.c b/drivers/input/lirc/lirc_mceusb2.c new file mode 100644 -index 0000000..7c3d0b1 +index 0000000..36ef032 --- /dev/null +++ b/drivers/input/lirc/lirc_mceusb2.c -@@ -0,0 +1,1105 @@ +@@ -0,0 +1,1103 @@ +/* + * LIRC driver for Philips eHome USB Infrared Transceiver + * and the Microsoft Media Center Edition Remote Control @@ -7652,10 +7634,8 @@ index 0000000..7c3d0b1 + { USB_DEVICE(VENDOR_WISTRON, 0x0002) }, + /* Compro K100 */ + { USB_DEVICE(VENDOR_COMPRO, 0x3020) }, -+ /* Compro K100 v2 */ -+ { USB_DEVICE(VENDOR_COMPRO, 0x3082) }, + /* Northstar Systems, Inc. eHome Infrared Transceiver */ -+ { USB_DEVICE(VENDOR_NORTHSTAR, 0xe004) }, ++ { USB_DEVICE(VENDOR_NORTHSTAR, 0xe0004) }, + /* Terminating entry */ + { } +}; @@ -10261,7 +10241,7 @@ index 0000000..270f8ff +module_exit(sasem_exit); diff --git a/drivers/input/lirc/lirc_serial.c b/drivers/input/lirc/lirc_serial.c new file mode 100644 -index 0000000..d602e90 +index 0000000..1b79ced --- /dev/null +++ b/drivers/input/lirc/lirc_serial.c @@ -0,0 +1,1316 @@ @@ -11171,6 +11151,11 @@ index 0000000..d602e90 + int result; + unsigned long flags; + ++ /* Init read buffer. */ ++ result = lirc_buffer_init(&rbuf, sizeof(int), RBUF_LEN); ++ if (result < 0) ++ return -ENOMEM; ++ + /* initialize timestamp */ + do_gettimeofday(&lasttv); + @@ -11181,10 +11166,12 @@ index 0000000..d602e90 + switch (result) { + case -EBUSY: + printk(KERN_ERR LIRC_DRIVER_NAME ": IRQ %d busy\n", irq); ++ lirc_buffer_free(&rbuf); + return -EBUSY; + case -EINVAL: + printk(KERN_ERR LIRC_DRIVER_NAME + ": Bad irq number or handler\n"); ++ lirc_buffer_free(&rbuf); + return -EINVAL; + default: + dprintk("Interrupt %d, port %04x obtained\n", irq, io); @@ -11219,6 +11206,7 @@ index 0000000..d602e90 + free_irq(irq, (void *)&hardware); + + dprintk("freed IRQ %d\n", irq); ++ lirc_buffer_free(&rbuf); +} + +static ssize_t lirc_write(struct file *file, const char *buf, @@ -11417,15 +11405,10 @@ index 0000000..d602e90 +{ + int result; + -+ /* Init read buffer. */ -+ result = lirc_buffer_init(&rbuf, sizeof(int), RBUF_LEN); -+ if (result < 0) -+ return -ENOMEM; -+ + result = platform_driver_register(&lirc_serial_driver); + if (result) { + printk("lirc register returned %d\n", result); -+ goto exit_buffer_free; ++ return result; + } + + lirc_serial_dev = platform_device_alloc("lirc_serial", 0); @@ -11444,8 +11427,6 @@ index 0000000..d602e90 + platform_device_put(lirc_serial_dev); +exit_driver_unregister: + platform_driver_unregister(&lirc_serial_driver); -+exit_buffer_free: -+ lirc_buffer_free(&rbuf); + return result; +} + @@ -11453,7 +11434,6 @@ index 0000000..d602e90 +{ + platform_device_unregister(lirc_serial_dev); + platform_driver_unregister(&lirc_serial_driver); -+ lirc_buffer_free(&rbuf); +} + +static int __init lirc_serial_init_module(void) --- alsa-dont-reset-stream-at-each-prepare-callb.patch DELETED --- --- alsa-hda-add-debugging.patch DELETED --- --- alsa-hda-dont-reset-BDL-unnecessarily.patch DELETED --- --- alsa-hda_intel-fix-unexpected-ring-buffer-positio.patch DELETED --- --- alsa-pcm-always-reset-invalid-position.patch DELETED --- --- alsa-pcm-fix-delta-calc-at-overlap.patch DELETED --- --- alsa-pcm-safer-boundary-checks.patch DELETED --- --- alsa-rewrite-hw_ptr-updaters.patch DELETED --- --- cpufreq-add-atom-to-p4-clockmod.patch DELETED --- --- drm-connector-dpms-fix.patch DELETED --- --- drm-copyback-ioctl-data-to-userspace-regardless-of-retcode.patch DELETED --- --- drm-dont-frob-i2c.patch DELETED --- --- drm-edid-ignore-tiny-modes.patch DELETED --- --- drm-i915-apply-a-big-hammer-to-865-gem-object.patch DELETED --- --- drm-i915-enable-mchbar.patch DELETED --- --- drm-i915-fix-tiling-pitch.patch DELETED --- --- drm-intel-a17-fix.patch DELETED --- --- drm-intel-debugfs-ringbuffer.patch DELETED --- --- drm-intel-disable-kms-i8xx.patch DELETED --- --- drm-intel-gem-use-dma32-on-pae.patch DELETED --- --- drm-intel-gen3-fb-hack.patch DELETED --- --- drm-intel-hdmi-edid-fix.patch DELETED --- --- drm-intel-i8xx-cursors.patch DELETED --- --- drm-intel-include-965gme-pci-id.patch DELETED --- --- drm-intel-lying-systems-without-lvds.patch DELETED --- --- drm-intel-next.patch DELETED --- --- drm-intel-set-domain-on-fault.patch DELETED --- --- drm-intel-tiling-transition.patch DELETED --- --- drm-intel-tv-fix.patch DELETED --- --- drm-intel-vmalloc.patch DELETED --- --- drm-modesetting-radeon-fixes.patch DELETED --- --- drm-pnp-add-resource-range-checker.patch DELETED --- --- drm-radeon-cs-oops-fix.patch DELETED --- --- drm-radeon-fix-ring-commit.patch DELETED --- --- drm-radeon-new-pciids.patch DELETED --- --- git-bluetooth-fixes.patch DELETED --- --- increase-MAX_LOCKDEP_ENTRIES.patch DELETED --- --- iwl3945-add-debugging-for-wrong-command-queue.patch DELETED --- --- iwl3945-fix-rfkill-sw-and-hw-mishmash.patch DELETED --- --- iwl3945-release-resources-before-shutting-down.patch DELETED --- --- linux-2.6-acpi-strict-resources.patch DELETED --- --- linux-2.6-acpi-video-didl-intel-outputs.patch DELETED --- --- linux-2.6-add-qcserial.patch DELETED --- --- linux-2.6-btrfs-unstable-update.patch DELETED --- --- linux-2.6-cdrom-door-status.patch DELETED --- --- linux-2.6-defaults-saner-vm-settings.patch DELETED --- --- linux-2.6-dev-zero-avoid-oom-lockup.patch DELETED --- --- linux-2.6-dma-debug-fixes.patch DELETED --- --- linux-2.6-drivers-char-low-latency-removal.patch DELETED --- --- linux-2.6-dropwatch-protocol.patch DELETED --- --- linux-2.6-e820-acpi3-bios-workaround.patch DELETED --- --- linux-2.6-e820-guard-against-pre-acpi3.patch DELETED --- --- linux-2.6-e820-save-restore-edi-ebp.patch DELETED --- --- linux-2.6-fiemap-header-install.patch DELETED --- --- linux-2.6-fs-cifs-fix-port-numbers.patch DELETED --- --- linux-2.6-hid-apple-mini-keyboard.patch DELETED --- --- linux-2.6-hwmon-atk0110.patch DELETED --- --- linux-2.6-input-bcm5974-add-macbook-unibody.patch DELETED --- --- linux-2.6-input-bcm5974-add-quad-finger.patch DELETED --- --- linux-2.6-input-bcm5974-new-header-type.patch DELETED --- --- linux-2.6-input-hid-extra-gamepad.patch DELETED --- --- linux-2.6-input-wacom-bluetooth.patch DELETED --- --- linux-2.6-iommu-fixes.patch DELETED --- --- linux-2.6-ipw2x00-age-scan-results-on-resume.patch DELETED --- --- linux-2.6-iwl3945-report-killswitch-changes-even-if-the-interface-is-down.patch DELETED --- --- linux-2.6-iwl3945-use-cancel_delayed_work_sync-to-cancel-rfkill_poll.patch DELETED --- --- linux-2.6-iwlagn-fix-hw-rfkill-while-the-interface-is-down.patch DELETED --- --- linux-2.6-kvm-skip-pit-check.patch DELETED --- --- linux-2.6-mac80211-fix-beacon-loss-detection-after-scan.patch DELETED --- --- linux-2.6-mm-lru-dont-evict-mapped-executable-pages.patch DELETED --- --- linux-2.6-mm-lru-evict-streaming-io-pages-first.patch DELETED --- --- linux-2.6-mm-lru-report-vm-flags-in-page-referenced.patch DELETED --- --- linux-2.6-netdev-ehea-fix-circular-locking.patch DELETED --- --- linux-2.6-netdev-ehea-fix-page-alignment.patch DELETED --- --- linux-2.6-netdev-ehea-remove-from-list.patch DELETED --- --- linux-2.6-netdev-r8169-use-different-family-defaults.patch DELETED --- --- linux-2.6-nfsd-cred-refcount-fix.patch DELETED --- --- linux-2.6-nfsd-report-short-writes-fix.patch DELETED --- --- linux-2.6-nfsd-report-short-writes.patch DELETED --- --- linux-2.6-parport-quickfix-the-proc-registration-bug.patch DELETED --- --- linux-2.6-pci-sysfs-remove-id.patch DELETED --- --- linux-2.6-relatime-by-default.patch DELETED --- --- linux-2.6-scsi-cpqarray-set-master.patch DELETED --- --- linux-2.6-serial-add-txen-test-param.patch DELETED --- --- linux-2.6-shut-up-efifb.patch DELETED --- --- linux-2.6-sony-laptop-rfkill.patch DELETED --- --- linux-2.6-usb-remove-low-latency-hack.patch DELETED --- --- linux-2.6-utrace-ftrace.patch DELETED --- --- linux-2.6-v4l-dvb-fix-uint16_t-audio-h.patch DELETED --- --- linux-2.6-v4l-pvrusb2-fixes.patch DELETED --- --- linux-2.6-virtio_blk-dont-bounce-highmem-requests.patch DELETED --- --- linux-2.6-x86-delay-tsc-barrier.patch DELETED --- --- linux-2.6-xen-check-for-nx-support.patch DELETED --- --- linux-2.6-xen-fix_warning_when_deleting_gendisk.patch DELETED --- --- linux-2.6.29-alsa-update-quirks.patch DELETED --- --- linux-2.6.29-xen-disable-gbpages.patch DELETED --- --- linux-2.6.29.3-boot-vga.patch DELETED --- --- mac80211-don-t-drop-nullfunc-frames-during-software.patch DELETED --- --- net-revert-forcedeth-power-down-phy-when-interface-is.patch DELETED --- --- revert-fix-modules_install-via-nfs.patch DELETED --- --- squashfs-broken-when-pagesize-greater-than-blocksize.patch DELETED --- --- via-centaur-merge-32-64-bit-init.patch DELETED --- --- via-padlock-cryptodev-1-64bit-enable.patch DELETED --- --- via-padlock-cryptodev-2-64bit-enable.patch DELETED --- --- via-padlock-fix-might-sleep.patch DELETED --- --- via-padlock-nano-workarounds-cbc.patch DELETED --- --- via-padlock-nano-workarounds-ecb.patch DELETED --- --- via-rng-64-bit-enable.patch DELETED --- From jkeating at fedoraproject.org Sat Jul 25 04:09:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:09:48 +0000 (UTC) Subject: rpms/jrexx/devel jrexx.spec,1.3,1.4 Message-ID: <20090725040948.42F1D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jrexx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23369 Modified Files: jrexx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jrexx.spec =================================================================== RCS file: /cvs/pkgs/rpms/jrexx/devel/jrexx.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- jrexx.spec 25 Feb 2009 09:44:14 -0000 1.3 +++ jrexx.spec 25 Jul 2009 04:09:48 -0000 1.4 @@ -31,7 +31,7 @@ Summary: Automaton based regluar expression API for Java Name: jrexx Version: 1.1.1 -Release: 4.2%{?dist} +Release: 5.2%{?dist} Epoch: 0 License: LGPLv2+ URL: http://www.karneim.com/jrexx/ @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.1.1-5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.1.1-4.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:10:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:10:03 +0000 (UTC) Subject: rpms/jrosetta/devel jrosetta.spec,1.2,1.3 Message-ID: <20090725041003.47A9B11C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jrosetta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23509 Modified Files: jrosetta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jrosetta.spec =================================================================== RCS file: /cvs/pkgs/rpms/jrosetta/devel/jrosetta.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- jrosetta.spec 25 Feb 2009 09:45:13 -0000 1.2 +++ jrosetta.spec 25 Jul 2009 04:10:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: jrosetta Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A common base to build a graphical console Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:10:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:10:18 +0000 (UTC) Subject: rpms/jrtplib/devel jrtplib.spec,1.8,1.9 Message-ID: <20090725041018.85A1C11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jrtplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23667 Modified Files: jrtplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jrtplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/jrtplib/devel/jrtplib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jrtplib.spec 27 Feb 2009 15:23:27 -0000 1.8 +++ jrtplib.spec 25 Jul 2009 04:10:18 -0000 1.9 @@ -1,7 +1,7 @@ Summary: JRTPLIB is an object-oriented RTP library written in C++ Name: jrtplib Version: 3.7.1 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jrtplib @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/jrtplib.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Jeffrey C. Ollie - 3.7.1-6 - Add a patch to fix snprintf usage. - Update the memcpy patch to use instead of From jkeating at fedoraproject.org Sat Jul 25 04:10:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:10:33 +0000 (UTC) Subject: rpms/jruby/devel jruby.spec,1.16,1.17 Message-ID: <20090725041033.390BB11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23829 Modified Files: jruby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jruby.spec =================================================================== RCS file: /cvs/pkgs/rpms/jruby/devel/jruby.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- jruby.spec 6 Mar 2009 23:41:28 -0000 1.16 +++ jruby.spec 25 Jul 2009 04:10:33 -0000 1.17 @@ -2,7 +2,7 @@ Name: jruby Version: 1.1.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Pure Java implementation of the Ruby interpreter Group: Development/Languages License: (CPL or GPLv2+ or LGPLv2+) and ASL 1.1 and MIT and Ruby @@ -165,6 +165,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Conrad Meyer - 1.1.6-3 - debug_package nil, as this is a pure-java package (that can't be built with gcj). From jkeating at fedoraproject.org Sat Jul 25 04:10:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:10:47 +0000 (UTC) Subject: rpms/js/devel js.spec,1.26,1.27 Message-ID: <20090725041047.07BBB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/js/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23973 Modified Files: js.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: js.spec =================================================================== RCS file: /cvs/pkgs/rpms/js/devel/js.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- js.spec 29 May 2009 11:11:19 -0000 1.26 +++ js.spec 25 Jul 2009 04:10:46 -0000 1.27 @@ -3,7 +3,7 @@ Summary: JavaScript interpreter and libraries Name: js Version: 1.70 -Release: 6%{?dist} +Release: 7%{?dist} # The sources are triple licensed, but when we link against readline which is # GPL, the result can only be GPL. %if 0%{?_without_readline:1} @@ -128,6 +128,9 @@ export BUILD_OPT=1 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.70-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Dan Horak 1.70-6 - update the va_copy patch for s390x From jkeating at fedoraproject.org Sat Jul 25 04:11:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:11:00 +0000 (UTC) Subject: rpms/jsch/devel jsch.spec,1.30,1.31 Message-ID: <20090725041100.F176B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jsch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24110 Modified Files: jsch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jsch.spec =================================================================== RCS file: /cvs/pkgs/rpms/jsch/devel/jsch.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- jsch.spec 9 Apr 2009 18:11:03 -0000 1.30 +++ jsch.spec 25 Jul 2009 04:11:00 -0000 1.31 @@ -34,7 +34,7 @@ Name: jsch Version: 0.1.41 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 Summary: Pure Java implementation of SSH2 Group: Development/Libraries/Java @@ -184,6 +184,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:0.1.41-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Alexander Kurtakov 0:0.1.41-1 - Update to new version 0.1.41. From mclasen at fedoraproject.org Sat Jul 25 04:11:11 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Sat, 25 Jul 2009 04:11:11 +0000 (UTC) Subject: rpms/gtk2/devel .cvsignore, 1.110, 1.111 gtk2.spec, 1.390, 1.391 sources, 1.119, 1.120 Message-ID: <20090725041111.ABAD511C0099@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24136 Modified Files: .cvsignore gtk2.spec sources Log Message: 2.17.6 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/.cvsignore,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- .cvsignore 18 Jul 2009 03:33:40 -0000 1.110 +++ .cvsignore 25 Jul 2009 04:11:11 -0000 1.111 @@ -1 +1 @@ -gtk+-2.17.5.tar.bz2 +gtk+-2.17.6.tar.bz2 Index: gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v retrieving revision 1.390 retrieving revision 1.391 diff -u -p -r1.390 -r1.391 --- gtk2.spec 25 Jul 2009 01:43:07 -0000 1.390 +++ gtk2.spec 25 Jul 2009 04:11:11 -0000 1.391 @@ -11,13 +11,13 @@ %define libpng_version 2:1.2.2-16 %define xrandr_version 1.2.99.4-2 -%define base_version 2.17.5 +%define base_version 2.17.6 %define bin_version 2.10.0 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X Name: gtk2 Version: %{base_version} -Release: 2%{?dist} +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/gtk+/2.17/gtk+-%{version}.tar.bz2 @@ -380,6 +380,9 @@ fi %changelog +* Sat Jul 25 2009 Matthias Clasen - 2.17.5-3 +- 2.17.6 + * Fri Jul 24 2009 Fedora Release Engineering - 2.17.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gtk2/devel/sources,v retrieving revision 1.119 retrieving revision 1.120 diff -u -p -r1.119 -r1.120 --- sources 18 Jul 2009 03:33:40 -0000 1.119 +++ sources 25 Jul 2009 04:11:11 -0000 1.120 @@ -1 +1 @@ -549fe72768e2d3e6a9553d45622134d2 gtk+-2.17.5.tar.bz2 +6e812cfed1caae289705876d84f2be79 gtk+-2.17.6.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 04:11:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:11:14 +0000 (UTC) Subject: rpms/jsl/devel jsl.spec,1.1,1.2 Message-ID: <20090725041114.0BF3911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24259 Modified Files: jsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/jsl/devel/jsl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- jsl.spec 16 Apr 2009 05:29:16 -0000 1.1 +++ jsl.spec 25 Jul 2009 04:11:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: jsl Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Check JavaScript code for common mistakes Group: Development/Tools @@ -60,5 +60,8 @@ perl run_tests.pl ../src/jsl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Lubomir Rintel (Good Data) - 0.3.0-1 - Initial packaging From jkeating at fedoraproject.org Sat Jul 25 04:11:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:11:27 +0000 (UTC) Subject: rpms/json/devel json.spec,1.1,1.2 Message-ID: <20090725041127.16B9B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/json/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24406 Modified Files: json.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: json.spec =================================================================== RCS file: /cvs/pkgs/rpms/json/devel/json.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- json.spec 17 Apr 2009 16:58:53 -0000 1.1 +++ json.spec 25 Jul 2009 04:11:26 -0000 1.2 @@ -32,7 +32,7 @@ Name: json Summary: JavaScript Object Notation URL: http://www.json.org/java/index.html Version: 2 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 Group: Development/Libraries BuildArch: noarch @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Andrew Overholt 2-1 - Some cleanups for Fedora (license, version, tabs vs. spaces). - Remove maven POM file of unknown origin. From jkeating at fedoraproject.org Sat Jul 25 04:11:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:11:40 +0000 (UTC) Subject: rpms/json-glib/devel json-glib.spec,1.4,1.5 Message-ID: <20090725041140.E87D911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/json-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24560 Modified Files: json-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: json-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/json-glib/devel/json-glib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- json-glib.spec 27 Feb 2009 00:08:42 -0000 1.4 +++ json-glib.spec 25 Jul 2009 04:11:40 -0000 1.5 @@ -2,7 +2,7 @@ Name: json-glib Version: 0.6.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for JavaScript Object Notation format Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Brian Pepple - 0.6.2-3 - Disable tests for now. From jkeating at fedoraproject.org Sat Jul 25 04:11:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:11:53 +0000 (UTC) Subject: rpms/jsr-305/devel jsr-305.spec,1.6,1.7 Message-ID: <20090725041153.CD7ED11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jsr-305/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24763 Modified Files: jsr-305.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jsr-305.spec =================================================================== RCS file: /cvs/pkgs/rpms/jsr-305/devel/jsr-305.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jsr-305.spec 4 Mar 2009 23:36:55 -0000 1.6 +++ jsr-305.spec 25 Jul 2009 04:11:53 -0000 1.7 @@ -2,7 +2,7 @@ Name: jsr-305 Version: 0 -Release: 0.3.20090203svn%{?dist} +Release: 0.4.20090203svn%{?dist} Summary: Correctness annotations for Java code Group: Development/Libraries/Java @@ -116,6 +116,9 @@ fi %{_javadocdir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.4.20090203svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Jerry James - 0-0.3.20090203svn - Explicitly require OpenJDK to build From jkeating at fedoraproject.org Sat Jul 25 04:12:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:12:08 +0000 (UTC) Subject: rpms/jss/devel jss.spec,1.8,1.9 Message-ID: <20090725041208.63D3A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24900 Modified Files: jss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jss.spec =================================================================== RCS file: /cvs/pkgs/rpms/jss/devel/jss.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- jss.spec 5 Jun 2009 15:26:08 -0000 1.8 +++ jss.spec 25 Jul 2009 04:12:08 -0000 1.9 @@ -1,6 +1,6 @@ Name: jss Version: 4.2.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Java Security Services (JSS) Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Rob Crittenden 4.2.6-2 - Include patch to fix missing @param so javadocs will build From jkeating at fedoraproject.org Sat Jul 25 04:12:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:12:23 +0000 (UTC) Subject: rpms/jthread/devel jthread.spec,1.7,1.8 Message-ID: <20090725041223.7E06111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jthread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25040 Modified Files: jthread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/jthread/devel/jthread.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jthread.spec 25 Feb 2009 09:52:30 -0000 1.7 +++ jthread.spec 25 Jul 2009 04:12:23 -0000 1.8 @@ -1,7 +1,7 @@ Summary: JThread provides classes to make use of threads easy on different platforms Name: jthread Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jthread @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/jthread.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:12:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:12:38 +0000 (UTC) Subject: rpms/jtidy/devel jtidy.spec,1.6,1.7 Message-ID: <20090725041238.3682711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jtidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25181 Modified Files: jtidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jtidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/jtidy/devel/jtidy.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jtidy.spec 20 Mar 2009 19:36:40 -0000 1.6 +++ jtidy.spec 25 Jul 2009 04:12:38 -0000 1.7 @@ -33,7 +33,7 @@ Summary: HTML syntax checker and pretty printer Name: jtidy Version: 1.0 -Release: 0.3.r7dev.1.4%{?dist} +Release: 0.4.r7dev.1.4%{?dist} Epoch: 2 License: zlib URL: http://jtidy.sourceforge.net/ @@ -163,6 +163,9 @@ fi %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:1.0-0.4.r7dev.1.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Deepak Bhole - 2:1.0-0.3.r7dev.1.4 - Add patch to set source to 1.4 From jkeating at fedoraproject.org Sat Jul 25 04:12:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:12:53 +0000 (UTC) Subject: rpms/junit/devel junit.spec,1.31,1.32 Message-ID: <20090725041253.9689C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/junit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25330 Modified Files: junit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: junit.spec =================================================================== RCS file: /cvs/pkgs/rpms/junit/devel/junit.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- junit.spec 25 Feb 2009 09:54:20 -0000 1.31 +++ junit.spec 25 Jul 2009 04:12:53 -0000 1.32 @@ -34,7 +34,7 @@ Name: junit Version: 3.8.2 -Release: 5.4%{?dist} +Release: 6.4%{?dist} Summary: Java regression test package License: CPL Url: http://www.junit.org/ @@ -163,6 +163,9 @@ fi %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.8.2-6.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.8.2-5.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:13:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:13:08 +0000 (UTC) Subject: rpms/junit4/devel junit4.spec,1.12,1.13 Message-ID: <20090725041308.8ECDE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/junit4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25491 Modified Files: junit4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: junit4.spec =================================================================== RCS file: /cvs/pkgs/rpms/junit4/devel/junit4.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- junit4.spec 25 Feb 2009 09:55:14 -0000 1.12 +++ junit4.spec 25 Jul 2009 04:13:08 -0000 1.13 @@ -33,7 +33,7 @@ Name: junit4 Version: 4.5 -Release: 4.1%{?dist} +Release: 5.1%{?dist} Epoch: 0 Summary: Java regression test package License: CPL @@ -180,6 +180,9 @@ fi %doc junit%{version}/doc/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:4.5-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:4.5-4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:13:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:13:23 +0000 (UTC) Subject: rpms/junitperf/devel junitperf.spec,1.3,1.4 Message-ID: <20090725041323.4263811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/junitperf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25636 Modified Files: junitperf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: junitperf.spec =================================================================== RCS file: /cvs/pkgs/rpms/junitperf/devel/junitperf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- junitperf.spec 25 Feb 2009 09:56:10 -0000 1.3 +++ junitperf.spec 25 Jul 2009 04:13:23 -0000 1.4 @@ -30,7 +30,7 @@ Name: junitperf Version: 1.9.1 -Release: 3.2%{?dist} +Release: 4.2%{?dist} Epoch: 0 Summary: JUnit extension for performance and scalability testing License: BSD @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT # ----------------------------------------------------------------------------- %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.9.1-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.9.1-3.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:13:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:13:38 +0000 (UTC) Subject: rpms/justmoon/devel justmoon.spec,1.3,1.4 Message-ID: <20090725041338.5D80611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/justmoon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25779 Modified Files: justmoon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: justmoon.spec =================================================================== RCS file: /cvs/pkgs/rpms/justmoon/devel/justmoon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- justmoon.spec 24 Mar 2009 13:46:30 -0000 1.3 +++ justmoon.spec 25 Jul 2009 04:13:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: justmoon Version: 0.3.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Just Moon is lunar observing software for Linux Group: Amusements/Graphics @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 0.3.3-5 - Fix the summary and icon location From jkeating at fedoraproject.org Sat Jul 25 04:13:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:13:53 +0000 (UTC) Subject: rpms/jvyamlb/devel jvyamlb.spec,1.6,1.7 Message-ID: <20090725041353.60D7311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jvyamlb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25935 Modified Files: jvyamlb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jvyamlb.spec =================================================================== RCS file: /cvs/pkgs/rpms/jvyamlb/devel/jvyamlb.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jvyamlb.spec 27 Feb 2009 00:34:39 -0000 1.6 +++ jvyamlb.spec 25 Jul 2009 04:13:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: jvyamlb Version: 0.2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: YAML processor for JRuby Group: Development/Libraries License: MIT @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:14:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:14:09 +0000 (UTC) Subject: rpms/jwhois/devel jwhois.spec,1.50,1.51 Message-ID: <20090725041409.40FA611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jwhois/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26122 Modified Files: jwhois.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jwhois.spec =================================================================== RCS file: /cvs/pkgs/rpms/jwhois/devel/jwhois.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- jwhois.spec 3 May 2009 11:23:39 -0000 1.50 +++ jwhois.spec 25 Jul 2009 04:14:09 -0000 1.51 @@ -1,6 +1,6 @@ Name: jwhois Version: 4.0 -Release: 15%{?dist} +Release: 16%{?dist} URL: http://www.gnu.org/software/jwhois/ Source0: ftp://ftp.gnu.org/gnu/jwhois/jwhois-%{version}.tar.gz Patch0: jwhois-4.0-connect.patch @@ -75,6 +75,9 @@ fi rm -fr $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Robert Scheck - 4.0-15 - Update jwhois.conf for .al, .cu, .my and .so domains From jkeating at fedoraproject.org Sat Jul 25 04:14:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:14:25 +0000 (UTC) Subject: rpms/jython/devel jython.spec,1.12,1.13 Message-ID: <20090725041425.C12FC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26274 Modified Files: jython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jython.spec =================================================================== RCS file: /cvs/pkgs/rpms/jython/devel/jython.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- jython.spec 25 Feb 2009 09:59:46 -0000 1.12 +++ jython.spec 25 Jul 2009 04:14:25 -0000 1.13 @@ -8,7 +8,7 @@ Name: jython Version: 2.2.1 -Release: 3.2%{?dist} +Release: 4.2%{?dist} Summary: A Java implementation of the Python language License: BSD URL: http://www.jython.org/ @@ -278,6 +278,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/%{name}/Demo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.1-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-3.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:14:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:14:42 +0000 (UTC) Subject: rpms/jzlib/devel jzlib.spec,1.14,1.15 Message-ID: <20090725041442.6D93311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/jzlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26445 Modified Files: jzlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: jzlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/jzlib/devel/jzlib.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- jzlib.spec 25 Feb 2009 10:00:42 -0000 1.14 +++ jzlib.spec 25 Jul 2009 04:14:42 -0000 1.15 @@ -36,7 +36,7 @@ Name: jzlib Version: 1.0.7 -Release: 6.3%{?dist} +Release: 7.3%{?dist} Epoch: 0 Summary: JZlib re-implementation of zlib in pure Java @@ -176,6 +176,9 @@ fi %ghost %doc %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.0.7-7.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0.7-6.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:15:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:15:03 +0000 (UTC) Subject: rpms/k12linux-quick-start-guide/devel k12linux-quick-start-guide.spec, 1.5, 1.6 Message-ID: <20090725041503.0314A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/k12linux-quick-start-guide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26604 Modified Files: k12linux-quick-start-guide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: k12linux-quick-start-guide.spec =================================================================== RCS file: /cvs/pkgs/rpms/k12linux-quick-start-guide/devel/k12linux-quick-start-guide.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- k12linux-quick-start-guide.spec 25 Feb 2009 10:01:37 -0000 1.5 +++ k12linux-quick-start-guide.spec 25 Jul 2009 04:15:02 -0000 1.6 @@ -1,6 +1,6 @@ Name: k12linux-quick-start-guide Version: 0.0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Quick Start Guide for K12Linux Live LTSP Server Group: Documentation @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:15:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:15:18 +0000 (UTC) Subject: rpms/k3b/devel k3b.spec,1.75,1.76 Message-ID: <20090725041518.72ABF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/k3b/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26775 Modified Files: k3b.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: k3b.spec =================================================================== RCS file: /cvs/pkgs/rpms/k3b/devel/k3b.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- k3b.spec 18 Jun 2009 13:03:00 -0000 1.75 +++ k3b.spec 25 Jul 2009 04:15:18 -0000 1.76 @@ -5,7 +5,7 @@ Name: k3b Summary: CD/DVD burning application Epoch: 0 Version: 1.66.0 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Archiving License: GPLv2+ @@ -136,6 +136,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.66.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Rex Dieter - 0:1.66.0-3 - -extras-freeworld avail now, drop Obsoletes From jkeating at fedoraproject.org Sat Jul 25 04:15:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:15:34 +0000 (UTC) Subject: rpms/k3d/devel k3d.spec,1.34,1.35 Message-ID: <20090725041534.8D05F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/k3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26952 Modified Files: k3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: k3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/k3d/devel/k3d.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- k3d.spec 23 Mar 2009 12:45:00 -0000 1.34 +++ k3d.spec 25 Jul 2009 04:15:34 -0000 1.35 @@ -1,7 +1,7 @@ Name: k3d Version: 0.7.11.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A 3D Modeling, Animation and Rendering System Group: Applications/Multimedia @@ -148,6 +148,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.11.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Denis Leroy - 0.7.11.0-1 - Update to upstream 0.7.11.0 From jkeating at fedoraproject.org Sat Jul 25 04:15:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:15:49 +0000 (UTC) Subject: rpms/k3guitune/devel k3guitune.spec,1.1,1.2 Message-ID: <20090725041549.5564B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/k3guitune/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27119 Modified Files: k3guitune.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: k3guitune.spec =================================================================== RCS file: /cvs/pkgs/rpms/k3guitune/devel/k3guitune.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- k3guitune.spec 13 Mar 2009 11:21:46 -0000 1.1 +++ k3guitune.spec 25 Jul 2009 04:15:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: k3guitune Version: 1.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Musical instrument tuner Group: Applications/Multimedia @@ -112,6 +112,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 David Timms - 1.01-4 - fix command order for nonutffile timestamping From jkeating at fedoraproject.org Sat Jul 25 04:16:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:16:05 +0000 (UTC) Subject: rpms/kBuild/devel kBuild.spec,1.8,1.9 Message-ID: <20090725041605.AE2E811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kBuild/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27292 Modified Files: kBuild.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kBuild.spec =================================================================== RCS file: /cvs/pkgs/rpms/kBuild/devel/kBuild.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kBuild.spec 25 Apr 2009 06:11:34 -0000 1.8 +++ kBuild.spec 25 Jul 2009 04:16:05 -0000 1.9 @@ -2,7 +2,7 @@ Name: kBuild Version: 0.1.5 -Release: 5%{?patchlevel:.%{patchlevel}}%{?dist} +Release: 6%{?patchlevel:.%{patchlevel}}%{?dist} Summary: A cross-platform build environment Group: Development/Tools @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.5-6.p1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Lubomir Rintel - 0.1.5-5.p1 - Update to later patchlevel to support VirtualBox 2.2.0 From jkeating at fedoraproject.org Sat Jul 25 04:16:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:16:20 +0000 (UTC) Subject: rpms/kacst-fonts/devel kacst-fonts.spec,1.7,1.8 Message-ID: <20090725041620.DA5B711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kacst-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27464 Modified Files: kacst-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kacst-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/kacst-fonts/devel/kacst-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- kacst-fonts.spec 9 Jul 2009 05:07:23 -0000 1.7 +++ kacst-fonts.spec 25 Jul 2009 04:16:20 -0000 1.8 @@ -8,7 +8,7 @@ from the King Abdulaziz City for Science Name: %{fontname}-fonts Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Source: http://downloads.sourceforge.net/sourceforge/arabeyes/%{fontname}_fonts_%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -235,6 +235,9 @@ rm -rf %{buildroot} %dir %{fontdir} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Pravin Satpute - 2.0-4 - cleaned rpmlink From jkeating at fedoraproject.org Sat Jul 25 04:16:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:16:36 +0000 (UTC) Subject: rpms/kadu/devel kadu.spec,1.45,1.46 Message-ID: <20090725041636.EA21811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kadu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27636 Modified Files: kadu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kadu.spec =================================================================== RCS file: /cvs/pkgs/rpms/kadu/devel/kadu.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- kadu.spec 27 May 2009 16:36:42 -0000 1.45 +++ kadu.spec 25 Jul 2009 04:16:36 -0000 1.46 @@ -107,7 +107,7 @@ Name: kadu Name: kadu_opt %endif Version: 0.6.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An Gadu-Gadu client for online messaging Summary(pl): Klient Gadu-Gadu Group: Applications/Internet @@ -701,6 +701,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Dawid Gajownik - 0.6.5.2-1 - Update to 0.6.5.2 - Update kadu-gcc44.patch From jkeating at fedoraproject.org Sat Jul 25 04:16:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:16:53 +0000 (UTC) Subject: rpms/kadu-theme/devel kadu-theme.spec,1.3,1.4 Message-ID: <20090725041653.4151811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kadu-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27821 Modified Files: kadu-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kadu-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/kadu-theme/devel/kadu-theme.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kadu-theme.spec 25 Feb 2009 10:06:58 -0000 1.3 +++ kadu-theme.spec 25 Jul 2009 04:16:53 -0000 1.4 @@ -1,6 +1,6 @@ Name: kadu-theme Version: 0.5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Kadu themes Group: Applications/Internet License: GPLv2 and LGPLv2+ @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %{_themesdir}/icons/glass22 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:17:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:17:07 +0000 (UTC) Subject: rpms/kaffeine/devel kaffeine.spec,1.26,1.27 Message-ID: <20090725041707.69FBB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kaffeine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27975 Modified Files: kaffeine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kaffeine.spec =================================================================== RCS file: /cvs/pkgs/rpms/kaffeine/devel/kaffeine.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- kaffeine.spec 26 Apr 2009 19:41:58 -0000 1.26 +++ kaffeine.spec 25 Jul 2009 04:17:07 -0000 1.27 @@ -3,7 +3,7 @@ Name: kaffeine Version: 1.0 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} License: GPLv2+ Summary: Xine-based media player @@ -80,6 +80,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-0.2.pre1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Rex Dieter - 1.0-0.1.pre1 - kaffeine-1.0-pre1 From jkeating at fedoraproject.org Sat Jul 25 04:17:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:17:21 +0000 (UTC) Subject: rpms/kakasi/devel kakasi.spec,1.10,1.11 Message-ID: <20090725041721.6F1D011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kakasi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28128 Modified Files: kakasi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kakasi.spec =================================================================== RCS file: /cvs/pkgs/rpms/kakasi/devel/kakasi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kakasi.spec 27 Feb 2009 14:08:47 -0000 1.10 +++ kakasi.spec 25 Jul 2009 04:17:21 -0000 1.11 @@ -1,6 +1,6 @@ Name: kakasi Version: 2.3.4 -Release: 28%{?dist} +Release: 29%{?dist} URL: http://kakasi.namazu.org/ License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.4-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Akira TAGOH - 2.3.4-28 - Fix a build fail on ppc64. From jkeating at fedoraproject.org Sat Jul 25 04:17:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:17:34 +0000 (UTC) Subject: rpms/kanatest/devel kanatest.spec,1.14,1.15 Message-ID: <20090725041734.DF24D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kanatest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28292 Modified Files: kanatest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kanatest.spec =================================================================== RCS file: /cvs/pkgs/rpms/kanatest/devel/kanatest.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- kanatest.spec 13 Jun 2009 17:10:25 -0000 1.14 +++ kanatest.spec 25 Jul 2009 04:17:34 -0000 1.15 @@ -1,6 +1,6 @@ Name: kanatest Version: 0.4.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hiragana and Katakana drill tool Group: Amusements/Games @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Robert Marcano - 0.4.8-2 - Update to upstream release 0.4.8 From jkeating at fedoraproject.org Sat Jul 25 04:17:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:17:48 +0000 (UTC) Subject: rpms/kannel/devel kannel.spec,1.22,1.23 Message-ID: <20090725041748.47A4611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kannel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28434 Modified Files: kannel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kannel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kannel/devel/kannel.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kannel.spec 25 Jun 2009 19:48:12 -0000 1.22 +++ kannel.spec 25 Jul 2009 04:17:48 -0000 1.23 @@ -1,7 +1,7 @@ Summary: WAP and SMS gateway Name: kannel Version: 1.4.3 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Daemons URL: http://www.kannel.org/ @@ -164,6 +164,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Ville Skytt? - 1.4.3-1 - Update to 1.4.3 (#495891). - Provide -static in -devel. From jkeating at fedoraproject.org Sat Jul 25 04:18:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:18:02 +0000 (UTC) Subject: rpms/kanyremote/devel kanyremote.spec,1.24,1.25 Message-ID: <20090725041802.17ED111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kanyremote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28578 Modified Files: kanyremote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kanyremote.spec =================================================================== RCS file: /cvs/pkgs/rpms/kanyremote/devel/kanyremote.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- kanyremote.spec 2 Jul 2009 20:04:06 -0000 1.24 +++ kanyremote.spec 25 Jul 2009 04:18:01 -0000 1.25 @@ -1,7 +1,7 @@ Summary: KDE frontend for anyRemote Name: kanyremote Version: 5.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/anyremote/%{name}-%{version}.tar.gz @@ -37,6 +37,9 @@ desktop-file-install --vendor="" \ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Mikhail Fedotov - 5.10 - Tool was rewritten on QT4. Enhanced handling of GuiAppBinary tag. From jkeating at fedoraproject.org Sat Jul 25 04:18:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:18:15 +0000 (UTC) Subject: rpms/kasablanca/devel kasablanca.spec,1.22,1.23 Message-ID: <20090725041815.08AD511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kasablanca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28706 Modified Files: kasablanca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kasablanca.spec =================================================================== RCS file: /cvs/pkgs/rpms/kasablanca/devel/kasablanca.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kasablanca.spec 25 Feb 2009 10:12:22 -0000 1.22 +++ kasablanca.spec 25 Jul 2009 04:18:14 -0000 1.23 @@ -2,7 +2,7 @@ Name: kasablanca Summary: Graphical FTP client Version: 0.4.0.2 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Url: http://kasablanca.berlios.de/ @@ -108,6 +108,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:18:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:18:29 +0000 (UTC) Subject: rpms/kasumi/devel kasumi.spec,1.31,1.32 Message-ID: <20090725041829.03D0C11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kasumi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28849 Modified Files: kasumi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kasumi.spec =================================================================== RCS file: /cvs/pkgs/rpms/kasumi/devel/kasumi.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- kasumi.spec 25 Feb 2009 10:13:18 -0000 1.31 +++ kasumi.spec 25 Jul 2009 04:18:28 -0000 1.32 @@ -1,6 +1,6 @@ Name: kasumi Version: 2.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://kasumi.sourceforge.jp/ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:18:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:18:44 +0000 (UTC) Subject: rpms/kawa/devel kawa.spec,1.25,1.26 Message-ID: <20090725041844.C183011C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kawa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28992 Modified Files: kawa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kawa.spec =================================================================== RCS file: /cvs/pkgs/rpms/kawa/devel/kawa.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- kawa.spec 25 Feb 2009 10:14:13 -0000 1.25 +++ kawa.spec 25 Jul 2009 04:18:44 -0000 1.26 @@ -5,7 +5,7 @@ Version: 1.9.1 %define nversion 1.9.1 %define dversion 1.9.1 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: Development/Languages URL: http://www.gnu.org/software/kawa/ @@ -99,6 +99,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:1.9.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:1.9.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:19:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:19:00 +0000 (UTC) Subject: rpms/kaya/devel kaya.spec,1.8,1.9 Message-ID: <20090725041900.7BD2C11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kaya/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29129 Modified Files: kaya.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kaya.spec =================================================================== RCS file: /cvs/pkgs/rpms/kaya/devel/kaya.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kaya.spec 22 Jul 2009 17:28:10 -0000 1.8 +++ kaya.spec 25 Jul 2009 04:19:00 -0000 1.9 @@ -4,7 +4,7 @@ Name: kaya Version: 0.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Statically typed, imperative programming-language Group: Development/Languages @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples/ docs/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Jochen Schmitt 0.5.2-2 - Bump release From jkeating at fedoraproject.org Sat Jul 25 04:19:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:19:15 +0000 (UTC) Subject: rpms/kbd/devel kbd.spec,1.63,1.64 Message-ID: <20090725041915.718C511C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29268 Modified Files: kbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/kbd/devel/kbd.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- kbd.spec 5 Mar 2009 12:52:12 -0000 1.63 +++ kbd.spec 25 Jul 2009 04:19:15 -0000 1.64 @@ -1,6 +1,6 @@ Name: kbd Version: 1.15 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tools for configuring the console (keyboard, virtual terminals, etc.) Group: System Environment/Base @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT /lib/kbd %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Vitezslav Crhonek - 1.15-7 - Add loadkeys 'q' option to loadkeys manpage and --help Resolves: #487538 From jkeating at fedoraproject.org Sat Jul 25 04:19:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:19:30 +0000 (UTC) Subject: rpms/kbibtex/devel kbibtex.spec,1.14,1.15 Message-ID: <20090725041930.65B0311C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kbibtex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29400 Modified Files: kbibtex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kbibtex.spec =================================================================== RCS file: /cvs/pkgs/rpms/kbibtex/devel/kbibtex.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- kbibtex.spec 25 Feb 2009 10:17:59 -0000 1.14 +++ kbibtex.spec 25 Jul 2009 04:19:30 -0000 1.15 @@ -1,6 +1,6 @@ Name: kbibtex Version: 0.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A BibTeX editor for KDE Group: Applications/Editors @@ -115,6 +115,9 @@ fi %{_datadir}/applications/fedora-kbibtex_part.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:19:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:19:45 +0000 (UTC) Subject: rpms/kbilliards/devel kbilliards.spec,1.9,1.10 Message-ID: <20090725041945.108BA11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kbilliards/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29529 Modified Files: kbilliards.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kbilliards.spec =================================================================== RCS file: /cvs/pkgs/rpms/kbilliards/devel/kbilliards.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kbilliards.spec 25 Feb 2009 10:18:50 -0000 1.9 +++ kbilliards.spec 25 Jul 2009 04:19:44 -0000 1.10 @@ -1,6 +1,6 @@ Name: kbilliards Version: 0.8.7b -Release: 9%{?dist} +Release: 10%{?dist} Summary: A Fun Billiards Simulator Game Group: Amusements/Games License: GPLv2+ @@ -82,6 +82,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.7b-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.7b-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:20:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:20:00 +0000 (UTC) Subject: rpms/kcbench/devel kcbench.spec,1.4,1.5 Message-ID: <20090725042000.4777B11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcbench/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29679 Modified Files: kcbench.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcbench.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcbench/devel/kcbench.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kcbench.spec 25 Feb 2009 10:19:42 -0000 1.4 +++ kcbench.spec 25 Jul 2009 04:20:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: kcbench Version: 0.3 -Release: 2.1 +Release: 3.1 Summary: Kernel compile benchmark Group: Applications/System @@ -54,6 +54,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:20:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:20:14 +0000 (UTC) Subject: rpms/kcbench-data/devel kcbench-data.spec,1.3,1.4 Message-ID: <20090725042014.0733711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcbench-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29816 Modified Files: kcbench-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcbench-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcbench-data/devel/kcbench-data.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kcbench-data.spec 25 Feb 2009 10:20:38 -0000 1.3 +++ kcbench-data.spec 25 Jul 2009 04:20:13 -0000 1.4 @@ -1,6 +1,6 @@ Name: kcbench-data Version: 0.1 -Release: 4 +Release: 5 Summary: Kernel sources to be used by kcbench Group: Applications/System @@ -67,6 +67,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:20:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:20:26 +0000 (UTC) Subject: rpms/kcc/devel kcc.spec,1.22,1.23 Message-ID: <20090725042026.EEE5811C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29951 Modified Files: kcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcc/devel/kcc.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kcc.spec 25 Feb 2009 10:21:33 -0000 1.22 +++ kcc.spec 25 Jul 2009 04:20:26 -0000 1.23 @@ -1,6 +1,6 @@ Name: kcc Version: 2.3 -Release: 29 +Release: 30 License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/kcc.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:20:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:20:41 +0000 (UTC) Subject: rpms/kcemirror/devel kcemirror.spec,1.5,1.6 Message-ID: <20090725042041.2B37811C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcemirror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30096 Modified Files: kcemirror.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcemirror.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcemirror/devel/kcemirror.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- kcemirror.spec 25 Feb 2009 10:22:28 -0000 1.5 +++ kcemirror.spec 25 Jul 2009 04:20:40 -0000 1.6 @@ -1,7 +1,7 @@ Name: kcemirror Summary: Remote display control for PocketPC devices Version: 0.1.5 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Productivity License: MIT URL: http://synce.sourceforge.net/synce/kde/ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:20:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:20:54 +0000 (UTC) Subject: rpms/kchmviewer/devel kchmviewer.spec,1.23,1.24 Message-ID: <20090725042054.F1EFE11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kchmviewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30252 Modified Files: kchmviewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kchmviewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/kchmviewer/devel/kchmviewer.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- kchmviewer.spec 27 Apr 2009 16:06:52 -0000 1.23 +++ kchmviewer.spec 25 Jul 2009 04:20:54 -0000 1.24 @@ -1,7 +1,7 @@ Name: kchmviewer Version: 4.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: CHM viewer Group: Applications/Publishing @@ -91,6 +91,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Rex Dieter - 4.0-4 - fix conflicts with kdegraphics (#484861) - optimize scriptlets From jkeating at fedoraproject.org Sat Jul 25 04:21:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:21:07 +0000 (UTC) Subject: rpms/kcirbshooter/devel kcirbshooter.spec,1.2,1.3 Message-ID: <20090725042107.EDDDA11C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcirbshooter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30382 Modified Files: kcirbshooter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcirbshooter.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcirbshooter/devel/kcirbshooter.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kcirbshooter.spec 25 Feb 2009 10:24:13 -0000 1.2 +++ kcirbshooter.spec 25 Jul 2009 04:21:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: kcirbshooter Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A small puzzle game Group: Amusements/Games @@ -84,6 +84,9 @@ fi %{_datadir}/icons/hicolor/*/apps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:21:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:21:22 +0000 (UTC) Subject: rpms/kcoloredit/devel kcoloredit.spec,1.16,1.17 Message-ID: <20090725042122.29E3811C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcoloredit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30524 Modified Files: kcoloredit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcoloredit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcoloredit/devel/kcoloredit.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- kcoloredit.spec 10 Jun 2009 12:43:31 -0000 1.16 +++ kcoloredit.spec 25 Jul 2009 04:21:22 -0000 1.17 @@ -5,7 +5,7 @@ Name: kcoloredit Version: 4.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A color palette Editor Group: Applications/Publishing @@ -84,6 +84,9 @@ xdg-icon-resource forceupdate --theme hi %{_kde4_iconsdir}/hicolor/*/*/kcoloredit.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 10 2009 Sebastian Vahl - 4.2.4-1 - 4.2.4 From jkeating at fedoraproject.org Sat Jul 25 04:21:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:21:36 +0000 (UTC) Subject: rpms/kcometen4/devel kcometen4.spec,1.2,1.3 Message-ID: <20090725042136.A05E711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kcometen4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30671 Modified Files: kcometen4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kcometen4.spec =================================================================== RCS file: /cvs/pkgs/rpms/kcometen4/devel/kcometen4.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kcometen4.spec 30 Jun 2009 22:27:14 -0000 1.2 +++ kcometen4.spec 25 Jul 2009 04:21:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: kcometen4 Version: 1.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An OpenGL screensaver with exploding comets for KDE4 Group: Amusements/Graphics License: GPLv2+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.kss.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Alexey Kurov - 1.0.5-1 - update to 1.0.5 From jkeating at fedoraproject.org Sat Jul 25 04:21:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:21:52 +0000 (UTC) Subject: rpms/kdbg/devel kdbg.spec,1.34,1.35 Message-ID: <20090725042152.15A0611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdbg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30820 Modified Files: kdbg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdbg.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdbg/devel/kdbg.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- kdbg.spec 2 Mar 2009 10:15:48 -0000 1.34 +++ kdbg.spec 25 Jul 2009 04:21:51 -0000 1.35 @@ -1,7 +1,7 @@ Name: kdbg Summary: A GUI for gdb, the GNU debugger, and KDE Version: 2.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Source: http://download.sourceforge.net/kdbg/%{name}-%{version}.tar.gz # No version specified. @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %config (noreplace) %{_datadir}/config/kdbgrc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Than Ngo - 2.1.1-1 - 2.1.1 - fix build issue against gcc-4.4 From jkeating at fedoraproject.org Sat Jul 25 04:22:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:22:07 +0000 (UTC) Subject: rpms/kde-filesystem/devel kde-filesystem.spec,1.40,1.41 Message-ID: <20090725042207.B486011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30972 Modified Files: kde-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-filesystem/devel/kde-filesystem.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- kde-filesystem.spec 13 Jun 2009 19:58:36 -0000 1.40 +++ kde-filesystem.spec 25 Jul 2009 04:22:07 -0000 1.41 @@ -17,7 +17,7 @@ Summary: KDE filesystem layout Name: kde-filesystem Version: 4 -Release: 27%{?dist} +Release: 28%{?dist} Group: System Environment/Base License: Public Domain @@ -181,6 +181,9 @@ rm -rf $RPM_BUILD_ROOT %{name}.list %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Rex Dieter 4-27 - Should own /usr/share/kde4/services/ServiceMenus (#505735) From jkeating at fedoraproject.org Sat Jul 25 04:22:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:22:24 +0000 (UTC) Subject: rpms/kde-i18n/devel kde-i18n.spec,1.99,1.100 Message-ID: <20090725042224.C4AA911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-i18n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31125 Modified Files: kde-i18n.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-i18n.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-i18n/devel/kde-i18n.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- kde-i18n.spec 7 Jul 2009 21:39:26 -0000 1.99 +++ kde-i18n.spec 25 Jul 2009 04:22:24 -0000 1.100 @@ -7,7 +7,7 @@ Summary: Internationalization support fo Name: kde-i18n Epoch: 1 Version: 3.5.10 -Release: 8%{?dist} +Release: 9%{?dist} # GFDL, with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. License: GFDL @@ -1939,6 +1939,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.5.10-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Tom "spot" Callaway 1:3.5.10-8 - catch the missing files in the locale directories From jkeating at fedoraproject.org Sat Jul 25 04:22:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:22:40 +0000 (UTC) Subject: rpms/kde-l10n/devel kde-l10n.spec,1.87,1.88 Message-ID: <20090725042240.2E27211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-l10n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31280 Modified Files: kde-l10n.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-l10n.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-l10n/devel/kde-l10n.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- kde-l10n.spec 23 Jul 2009 09:47:02 -0000 1.87 +++ kde-l10n.spec 25 Jul 2009 04:22:39 -0000 1.88 @@ -2,7 +2,7 @@ Name: kde-l10n Version: 4.2.98 -Release: 1%{dist} +Release: 2%{dist} Url: http://www.kde.org Summary: Internationalization support for KDE Group: User Interface/Desktops @@ -1499,6 +1499,9 @@ rm -rf %{buildroot} %lang(zh_TW) %{_kde4_docdir}/HTML/zh_TW %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:22:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:22:55 +0000 (UTC) Subject: rpms/kde-plasma-ihatethecashew/devel kde-plasma-ihatethecashew.spec, 1.3, 1.4 Message-ID: <20090725042255.67C7911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-ihatethecashew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31424 Modified Files: kde-plasma-ihatethecashew.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-ihatethecashew.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-ihatethecashew/devel/kde-plasma-ihatethecashew.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-ihatethecashew.spec 25 Feb 2009 10:29:37 -0000 1.3 +++ kde-plasma-ihatethecashew.spec 25 Jul 2009 04:22:55 -0000 1.4 @@ -1,6 +1,6 @@ Name: kde-plasma-ihatethecashew Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Removes the KDE Plasma Cashew From the Corner of the Display Group: User Interface/Desktops @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-ihatethecashew.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:23:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:23:10 +0000 (UTC) Subject: rpms/kde-plasma-networkmanagement/devel kde-plasma-networkmanagement.spec, 1.11, 1.12 Message-ID: <20090725042310.CD51111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31564 Modified Files: kde-plasma-networkmanagement.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-networkmanagement.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/kde-plasma-networkmanagement.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- kde-plasma-networkmanagement.spec 9 Jun 2009 14:18:07 -0000 1.11 +++ kde-plasma-networkmanagement.spec 25 Jul 2009 04:23:10 -0000 1.12 @@ -1,6 +1,6 @@ Name: kde-plasma-networkmanagement Version: 0.1 -Release: 0.16.20090602svn%{?dist} +Release: 0.17.20090602svn%{?dist} Summary: NetworkManager KDE 4 integration Group: User Interface/Desktops @@ -151,6 +151,9 @@ xdg-icon-resource forceupdate --theme ox %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.17.20090602svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Rex Dieter 0.1-0.16.20090602svn - Requires: NetworkManager From jkeating at fedoraproject.org Sat Jul 25 04:23:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:23:25 +0000 (UTC) Subject: rpms/kde-plasma-quickaccess/devel kde-plasma-quickaccess.spec, 1.12, 1.13 Message-ID: <20090725042325.BDC4711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-quickaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31716 Modified Files: kde-plasma-quickaccess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-quickaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-quickaccess/devel/kde-plasma-quickaccess.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- kde-plasma-quickaccess.spec 1 Jun 2009 15:04:03 -0000 1.12 +++ kde-plasma-quickaccess.spec 25 Jul 2009 04:23:25 -0000 1.13 @@ -1,6 +1,6 @@ Name: kde-plasma-quickaccess Version: 0.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plasma applet for quick access to the most used folders Group: User Interface/Desktops @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-quickaccess.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Jaroslav Reznik 0.8.1-1 - update to version 0.8.1 From jkeating at fedoraproject.org Sat Jul 25 04:23:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:23:39 +0000 (UTC) Subject: rpms/kde-plasma-runcommand/devel kde-plasma-runcommand.spec, 1.11, 1.12 Message-ID: <20090725042339.51A8811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-runcommand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31845 Modified Files: kde-plasma-runcommand.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-runcommand.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-runcommand/devel/kde-plasma-runcommand.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- kde-plasma-runcommand.spec 23 Jul 2009 10:21:45 -0000 1.11 +++ kde-plasma-runcommand.spec 25 Jul 2009 04:23:39 -0000 1.12 @@ -1,6 +1,6 @@ Name: kde-plasma-runcommand Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple plasmoid to run commands without using terminal or KRunner Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/plasma-applet-runcommand.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jaroslav Reznik 1.3-1 - update to 1.3 From jkeating at fedoraproject.org Sat Jul 25 04:23:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:23:53 +0000 (UTC) Subject: rpms/kde-plasma-stasks/devel kde-plasma-stasks.spec,1.3,1.4 Message-ID: <20090725042353.2583711C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-stasks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32073 Modified Files: kde-plasma-stasks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-stasks.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-stasks/devel/kde-plasma-stasks.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-plasma-stasks.spec 6 Jul 2009 21:18:12 -0000 1.3 +++ kde-plasma-stasks.spec 25 Jul 2009 04:23:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: kde-plasma-stasks Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Alternate Task-Switcher plasma applet Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf %{buildroot} %doc COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 26 2009 Sven Lankes 0.5.1-4 - Really fix it for KDE 4.3 From jkeating at fedoraproject.org Sat Jul 25 04:24:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:24:02 +0000 (UTC) Subject: rpms/kde-plasma-translatoid/devel kde-plasma-translatoid.spec, 1.4, 1.5 Message-ID: <20090725042402.C3FA011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-translatoid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32190 Modified Files: kde-plasma-translatoid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-translatoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-translatoid/devel/kde-plasma-translatoid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kde-plasma-translatoid.spec 6 Jul 2009 06:36:15 -0000 1.4 +++ kde-plasma-translatoid.spec 25 Jul 2009 04:24:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: kde-plasma-translatoid Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Translator Using Google Translator Group: User Interface/Desktops @@ -261,6 +261,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Eli Wapniarski 0.9-1 -0.9 - Add new flags list ! Use a plasma::treeview with a QAbstractModel From jkeating at fedoraproject.org Sat Jul 25 04:24:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:24:16 +0000 (UTC) Subject: rpms/kde-plasma-yawp/devel kde-plasma-yawp.spec,1.1,1.2 Message-ID: <20090725042416.379F911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-plasma-yawp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32524 Modified Files: kde-plasma-yawp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-plasma-yawp.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-yawp/devel/kde-plasma-yawp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kde-plasma-yawp.spec 9 May 2009 23:18:32 -0000 1.1 +++ kde-plasma-yawp.spec 25 Jul 2009 04:24:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: kde-plasma-yawp Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Yet Another Weather Plasmoid Group: User Interface/Desktops License: GPLv2+ @@ -47,5 +47,8 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Orcan Ogetbil - 0.2.3-1 - Initial build From jkeating at fedoraproject.org Sat Jul 25 04:24:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:24:30 +0000 (UTC) Subject: rpms/kde-settings/devel kde-settings.spec,1.75,1.76 Message-ID: <20090725042430.77A6E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-settings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv564 Modified Files: kde-settings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-settings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-settings/devel/kde-settings.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- kde-settings.spec 30 Apr 2009 18:40:34 -0000 1.75 +++ kde-settings.spec 25 Jul 2009 04:24:30 -0000 1.76 @@ -3,7 +3,7 @@ # The actuall tarball also DIFFERS between releases! # Use kde-settings trunk for F11+, F-10 branch of F10, F-9 branch for F9. -%define rel 20090430svn +%define rel 20090431svn Summary: Config files for kde Name: kde-settings @@ -158,6 +158,9 @@ touch --no-create %{_datadir}/kde-settin %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2-10.20090431svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Rex Dieter - 4.2-10.20090430svn - nepomukserverrc: disable nepomuk From jkeating at fedoraproject.org Sat Jul 25 04:24:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:24:43 +0000 (UTC) Subject: rpms/kde-style-skulpture/devel kde-style-skulpture.spec,1.3,1.4 Message-ID: <20090725042443.333B511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kde-style-skulpture/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv745 Modified Files: kde-style-skulpture.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kde-style-skulpture.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-style-skulpture/devel/kde-style-skulpture.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kde-style-skulpture.spec 17 Jul 2009 12:40:39 -0000 1.3 +++ kde-style-skulpture.spec 25 Jul 2009 04:24:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: kde-style-skulpture Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.kde-look.org/content/show.php/Skulpture?content=59031 Source: http://www.kde-look.org/CONTENT/content-files/59031-skulpture-%{version}.tar.bz2 Group: User Interface/Desktops @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Jaroslav Reznik - 0.2.3-1 - update to 0.2.3 (minor bug fixes) - removed F10 stuff From jkeating at fedoraproject.org Sat Jul 25 04:24:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:24:57 +0000 (UTC) Subject: rpms/kdeaccessibility/devel kdeaccessibility.spec,1.85,1.86 Message-ID: <20090725042457.9003311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdeaccessibility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv919 Modified Files: kdeaccessibility.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdeaccessibility.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeaccessibility/devel/kdeaccessibility.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- kdeaccessibility.spec 21 Jul 2009 21:36:08 -0000 1.85 +++ kdeaccessibility.spec 25 Jul 2009 04:24:57 -0000 1.86 @@ -2,7 +2,7 @@ Summary: K Desktop Environment - Name: kdeaccessibility Epoch: 1 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -111,6 +111,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:25:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:25:11 +0000 (UTC) Subject: rpms/kdeaddons/devel kdeaddons.spec,1.76,1.77 Message-ID: <20090725042511.97D2311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdeaddons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1060 Modified Files: kdeaddons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdeaddons.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeaddons/devel/kdeaddons.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- kdeaddons.spec 25 Feb 2009 10:35:14 -0000 1.76 +++ kdeaddons.spec 25 Jul 2009 04:25:11 -0000 1.77 @@ -7,7 +7,7 @@ Name: kdeaddons Summary: K Desktop Environment - Plugins Version: 3.5.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: User Interface/Desktops Url: http://www.kde.org/ @@ -82,6 +82,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:25:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:25:26 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin.spec,1.142,1.143 Message-ID: <20090725042526.7CBDD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1227 Modified Files: kdeadmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdeadmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- kdeadmin.spec 21 Jul 2009 21:47:05 -0000 1.142 +++ kdeadmin.spec 25 Jul 2009 04:25:26 -0000 1.143 @@ -4,7 +4,7 @@ Name: kdeadmin Summary: K Desktop Environment - Administrative tools Epoch: 7 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -150,6 +150,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:25:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:25:41 +0000 (UTC) Subject: rpms/kdebase/devel kdebase.spec,1.384,1.385 Message-ID: <20090725042541.EC60511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1408 Modified Files: kdebase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebase.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase/devel/kdebase.spec,v retrieving revision 1.384 retrieving revision 1.385 diff -u -p -r1.384 -r1.385 --- kdebase.spec 21 Jul 2009 21:53:57 -0000 1.384 +++ kdebase.spec 25 Jul 2009 04:25:41 -0000 1.385 @@ -1,7 +1,7 @@ Name: kdebase Summary: K Desktop Environment 4 - Core Files Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 6 License: GPLv2 @@ -202,6 +202,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:25:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:25:55 +0000 (UTC) Subject: rpms/kdebase-runtime/devel kdebase-runtime.spec,1.130,1.131 Message-ID: <20090725042555.BD36711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebase-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1548 Modified Files: kdebase-runtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebase-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-runtime/devel/kdebase-runtime.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- kdebase-runtime.spec 23 Jul 2009 08:01:08 -0000 1.130 +++ kdebase-runtime.spec 25 Jul 2009 04:25:55 -0000 1.131 @@ -5,7 +5,7 @@ Name: kdebase-runtime Summary: K Desktop Environment - Runtime Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} # http://techbase.kde.org/Policies/Licensing_Policy License: LGPLv2+ @@ -215,6 +215,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:26:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:26:11 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace.spec,1.254,1.255 Message-ID: <20090725042611.2807F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1688 Modified Files: kdebase-workspace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.254 retrieving revision 1.255 diff -u -p -r1.254 -r1.255 --- kdebase-workspace.spec 23 Jul 2009 19:51:00 -0000 1.254 +++ kdebase-workspace.spec 25 Jul 2009 04:26:10 -0000 1.255 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -503,6 +503,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:26:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:26:28 +0000 (UTC) Subject: rpms/kdebase3/devel kdebase3.spec,1.84,1.85 Message-ID: <20090725042628.CA0C211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebase3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1872 Modified Files: kdebase3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebase3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebase3/devel/kdebase3.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- kdebase3.spec 19 Jul 2009 01:00:32 -0000 1.84 +++ kdebase3.spec 25 Jul 2009 04:26:28 -0000 1.85 @@ -14,7 +14,7 @@ %define _with_samba --with-samba Version: 3.5.10 -Release: 11%{?dist} +Release: 12%{?dist} %if 0%{?fedora} > 8 Name: kdebase3 @@ -881,6 +881,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter 3.5.10-11 - FTBFS kdebase3-3.5.10-8.fc11 (#511656) - Requires: %%name-libs%%?_isa ... From jkeating at fedoraproject.org Sat Jul 25 04:26:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:26:45 +0000 (UTC) Subject: rpms/kdebindings/devel kdebindings.spec,1.225,1.226 Message-ID: <20090725042645.3FA6F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2045 Modified Files: kdebindings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebindings/devel/kdebindings.spec,v retrieving revision 1.225 retrieving revision 1.226 diff -u -p -r1.225 -r1.226 --- kdebindings.spec 23 Jul 2009 19:41:34 -0000 1.225 +++ kdebindings.spec 25 Jul 2009 04:26:44 -0000 1.226 @@ -32,7 +32,7 @@ Name: kdebindings Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE bindings to non-C++ languages # http://techbase.kde.org/Policies/Licensing_Policy @@ -492,6 +492,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:27:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:27:00 +0000 (UTC) Subject: rpms/kdebluetooth/devel kdebluetooth.spec,1.22,1.23 Message-ID: <20090725042700.DD1B111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdebluetooth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2243 Modified Files: kdebluetooth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdebluetooth.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdebluetooth/devel/kdebluetooth.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kdebluetooth.spec 9 Mar 2009 20:49:01 -0000 1.22 +++ kdebluetooth.spec 25 Jul 2009 04:27:00 -0000 1.23 @@ -1,7 +1,7 @@ Summary: The KDE Bluetooth Framework Name: kdebluetooth Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: GPLv2+ Group: Applications/Communications @@ -75,6 +75,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Kevin Kofler - 1:0.3-3 - Provides: dbus-bluez-pin-helper (so bluez doesn't drag in gnome-bluetooth) From jkeating at fedoraproject.org Sat Jul 25 04:27:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:27:16 +0000 (UTC) Subject: rpms/kdeedu/devel kdeedu.spec,1.193,1.194 Message-ID: <20090725042716.B9A8F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdeedu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2415 Modified Files: kdeedu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdeedu.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdeedu/devel/kdeedu.spec,v retrieving revision 1.193 retrieving revision 1.194 diff -u -p -r1.193 -r1.194 --- kdeedu.spec 21 Jul 2009 22:16:37 -0000 1.193 +++ kdeedu.spec 25 Jul 2009 04:27:16 -0000 1.194 @@ -7,7 +7,7 @@ Name: kdeedu Summary: Educational/Edutainment applications Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Amusements/Games @@ -450,6 +450,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:27:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:27:31 +0000 (UTC) Subject: rpms/kdegames/devel kdegames.spec,1.138,1.139 Message-ID: <20090725042731.C940311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2574 Modified Files: kdegames.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdegames.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- kdegames.spec 22 Jul 2009 09:39:33 -0000 1.138 +++ kdegames.spec 25 Jul 2009 04:27:31 -0000 1.139 @@ -2,7 +2,7 @@ Name: kdegames Summary: K Desktop Environment 4 - Games Epoch: 6 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://www.kde.org/ @@ -197,6 +197,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:27:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:27:47 +0000 (UTC) Subject: rpms/kdegames3/devel kdegames3.spec,1.12,1.13 Message-ID: <20090725042747.C2C5811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdegames3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2763 Modified Files: kdegames3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdegames3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdegames3/devel/kdegames3.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- kdegames3.spec 19 May 2009 00:12:23 -0000 1.12 +++ kdegames3.spec 25 Jul 2009 04:27:47 -0000 1.13 @@ -9,7 +9,7 @@ Name: kdegames3 Summary: K Desktop Environment 3 - Games not ported to KDE 4 Version: 3.5.10 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Amusements/Games @@ -189,6 +189,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Kevin Kofler - 3.5.10-5 - drop KSnakeDuel, part of kdegames since 4.3 From jkeating at fedoraproject.org Sat Jul 25 04:28:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:28:02 +0000 (UTC) Subject: rpms/kdegraphics/devel kdegraphics.spec,1.209,1.210 Message-ID: <20090725042802.783FA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdegraphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2913 Modified Files: kdegraphics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdegraphics.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdegraphics/devel/kdegraphics.spec,v retrieving revision 1.209 retrieving revision 1.210 diff -u -p -r1.209 -r1.210 --- kdegraphics.spec 22 Jul 2009 09:42:32 -0000 1.209 +++ kdegraphics.spec 25 Jul 2009 04:28:02 -0000 1.210 @@ -8,7 +8,7 @@ Summary: K Desktop Environment - Graphics Applications Epoch: 7 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Name: kdegraphics #Obsoletes: kdegraphics4 < %{version}-%{release} @@ -231,6 +231,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:28:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:28:16 +0000 (UTC) Subject: rpms/kdelibs-experimental/devel kdelibs-experimental.spec,1.8,1.9 Message-ID: <20090725042816.5A5E011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdelibs-experimental/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3068 Modified Files: kdelibs-experimental.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdelibs-experimental.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs-experimental/devel/kdelibs-experimental.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kdelibs-experimental.spec 22 Jul 2009 10:26:31 -0000 1.8 +++ kdelibs-experimental.spec 25 Jul 2009 04:28:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: kdelibs-experimental Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE libraries with experimental or unstable api/abi Group: System Environment/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:28:32 +0000 (UTC) Subject: rpms/kdelibs3/devel kdelibs3.spec,1.62,1.63 Message-ID: <20090725042832.3EDCE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdelibs3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3222 Modified Files: kdelibs3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/devel/kdelibs3.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- kdelibs3.spec 19 Jul 2009 00:40:12 -0000 1.62 +++ kdelibs3.spec 25 Jul 2009 04:28:32 -0000 1.63 @@ -36,7 +36,7 @@ Summary: K Desktop Environment 3 - Libraries Version: 3.5.10 -Release: 11%{?dist} +Release: 12%{?dist} %if 0%{?fedora} > 8 Name: kdelibs3 @@ -625,6 +625,9 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 3.5.10-12 - FTBFS kdelibs3-3.5.10-11.fc11 (#511571) - -devel: Requires: %%{name}%%_isa ... From jkeating at fedoraproject.org Sat Jul 25 04:28:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:28:46 +0000 (UTC) Subject: rpms/kdemultimedia/devel kdemultimedia.spec,1.152,1.153 Message-ID: <20090725042846.8044D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdemultimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3379 Modified Files: kdemultimedia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdemultimedia.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdemultimedia/devel/kdemultimedia.spec,v retrieving revision 1.152 retrieving revision 1.153 diff -u -p -r1.152 -r1.153 --- kdemultimedia.spec 22 Jul 2009 10:38:27 -0000 1.152 +++ kdemultimedia.spec 25 Jul 2009 04:28:46 -0000 1.153 @@ -1,7 +1,7 @@ Name: kdemultimedia Epoch: 6 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Summary: K Desktop Environment - Multimedia applications Group: Applications/Multimedia @@ -165,6 +165,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:29:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:29:02 +0000 (UTC) Subject: rpms/kdepim/devel kdepim.spec,1.226,1.227 Message-ID: <20090725042902.A666F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdepim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3537 Modified Files: kdepim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdepim.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepim/devel/kdepim.spec,v retrieving revision 1.226 retrieving revision 1.227 diff -u -p -r1.226 -r1.227 --- kdepim.spec 22 Jul 2009 11:01:29 -0000 1.226 +++ kdepim.spec 25 Jul 2009 04:29:02 -0000 1.227 @@ -6,7 +6,7 @@ Name: kdepim Summary: PIM (Personal Information Manager) applications Epoch: 6 Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Productivity @@ -188,6 +188,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6:4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:29:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:29:16 +0000 (UTC) Subject: rpms/kdepim3/devel kdepim3.spec,1.2,1.3 Message-ID: <20090725042916.5115511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdepim3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3671 Modified Files: kdepim3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdepim3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepim3/devel/kdepim3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kdepim3.spec 6 Mar 2009 15:51:28 -0000 1.2 +++ kdepim3.spec 25 Jul 2009 04:29:16 -0000 1.3 @@ -2,7 +2,7 @@ Name: kdepim3 Summary: Compatibility support for kdepim3 Version: 3.5.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Productivity @@ -119,6 +119,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Rex Dieter 3.5.10-1 - first try at kdepim3 compat pkg, including libkcal From jkeating at fedoraproject.org Sat Jul 25 04:29:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:29:30 +0000 (UTC) Subject: rpms/kdepimlibs/devel kdepimlibs.spec,1.93,1.94 Message-ID: <20090725042930.54F0111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdepimlibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3844 Modified Files: kdepimlibs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdepimlibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdepimlibs/devel/kdepimlibs.spec,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -r1.93 -r1.94 --- kdepimlibs.spec 22 Jul 2009 11:07:33 -0000 1.93 +++ kdepimlibs.spec 25 Jul 2009 04:29:30 -0000 1.94 @@ -12,7 +12,7 @@ Name: kdepimlibs Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} Summary: K Desktop Environment 4 - PIM Libraries # http://techbase.kde.org/Policies/Licensing_Policy @@ -210,6 +210,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 04:29:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:29:44 +0000 (UTC) Subject: rpms/kdesvn/devel kdesvn.spec,1.57,1.58 Message-ID: <20090725042944.A4CC311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdesvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3968 Modified Files: kdesvn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdesvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdesvn/devel/kdesvn.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- kdesvn.spec 16 Jul 2009 21:47:20 -0000 1.57 +++ kdesvn.spec 25 Jul 2009 04:29:44 -0000 1.58 @@ -1,6 +1,6 @@ Name: kdesvn Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A subversion client for KDE4 with KIO integration Group: Development/Tools @@ -107,6 +107,9 @@ xdg-icon-resource forceupdate --theme hi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 - Orion Poplawski - 1.3.2-1 - Update to 1.3.2 From jkeating at fedoraproject.org Sat Jul 25 04:29:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:29:58 +0000 (UTC) Subject: rpms/kdetv/devel kdetv.spec,1.10,1.11 Message-ID: <20090725042958.83C6711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdetv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4100 Modified Files: kdetv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdetv.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdetv/devel/kdetv.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kdetv.spec 18 Apr 2009 14:22:57 -0000 1.10 +++ kdetv.spec 25 Jul 2009 04:29:58 -0000 1.11 @@ -1,6 +1,6 @@ Name: kdetv Version: 0.8.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: KDE application for watching TV Group: Applications/Multimedia # Licensing Notes: @@ -109,6 +109,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Milos Jakubicek - 0.8.9-12 - Fix FTBFS: BR kdebase-workspace-devel and look for KDE4 headers in %%{_incluedir}/kde4 From jkeating at fedoraproject.org Sat Jul 25 04:30:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:30:15 +0000 (UTC) Subject: rpms/kdevelop/devel kdevelop.spec,1.86,1.87 Message-ID: <20090725043015.4BBF911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdevelop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4265 Modified Files: kdevelop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdevelop.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdevelop/devel/kdevelop.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- kdevelop.spec 19 Jul 2009 02:07:56 -0000 1.86 +++ kdevelop.spec 25 Jul 2009 04:30:14 -0000 1.87 @@ -20,7 +20,7 @@ Name: kdevelop Summary: Integrated Development Environment for C++/C Epoch: 9 Version: 3.5.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 URL: http://www.kdevelop.org/ @@ -260,6 +260,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 9:3.5.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 9:3.5.4-4 - FTBFS kdevelop-3.5.4-3.fc11 (#511768) From jkeating at fedoraproject.org Sat Jul 25 04:30:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:30:31 +0000 (UTC) Subject: rpms/kdewebdev/devel kdewebdev.spec,1.52,1.53 Message-ID: <20090725043031.82E9211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdewebdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4419 Modified Files: kdewebdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdewebdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdewebdev/devel/kdewebdev.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- kdewebdev.spec 25 Feb 2009 10:57:09 -0000 1.52 +++ kdewebdev.spec 25 Jul 2009 04:30:31 -0000 1.53 @@ -10,7 +10,7 @@ Name: kdewebdev Summary: Web development applications Epoch: 6 Version: 3.5.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Url: http://kdewebdev.org/ @@ -215,6 +215,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6:3.5.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6:3.5.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:30:46 +0000 (UTC) Subject: rpms/kdiff3/devel kdiff3.spec,1.25,1.26 Message-ID: <20090725043046.C864C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdiff3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4560 Modified Files: kdiff3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdiff3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdiff3/devel/kdiff3.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- kdiff3.spec 4 Mar 2009 11:57:51 -0000 1.25 +++ kdiff3.spec 25 Jul 2009 04:30:46 -0000 1.26 @@ -1,6 +1,6 @@ Name: kdiff3 Version: 0.9.95 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Compare + merge 2 or 3 files or directories Group: Development/Tools @@ -110,6 +110,9 @@ touch --no-create %{_kde4_iconsdir}/loco %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.95-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Neal Becker - 0.9.95-2 - Fix Changelog order From jkeating at fedoraproject.org Sat Jul 25 04:31:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:31:02 +0000 (UTC) Subject: rpms/kdirstat/devel kdirstat.spec,1.8,1.9 Message-ID: <20090725043102.75C5511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdirstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4711 Modified Files: kdirstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdirstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdirstat/devel/kdirstat.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kdirstat.spec 25 Feb 2009 10:59:00 -0000 1.8 +++ kdirstat.spec 25 Jul 2009 04:31:02 -0000 1.9 @@ -1,6 +1,6 @@ Name: kdirstat Version: 2.5.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Graphical Directory Statistics for Used Disk Space License: GPLv2 @@ -72,6 +72,9 @@ touch --no-create %{_datadir}/icons/hico %{_docdir}/HTML/*/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:31:16 +0000 (UTC) Subject: rpms/kdissert/devel kdissert.spec,1.15,1.16 Message-ID: <20090725043116.9333511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdissert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4829 Modified Files: kdissert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdissert.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdissert/devel/kdissert.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- kdissert.spec 25 Feb 2009 10:59:51 -0000 1.15 +++ kdissert.spec 25 Jul 2009 04:31:16 -0000 1.16 @@ -1,6 +1,6 @@ Name: kdissert Version: 1.0.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Mind-mapping tool Group: Applications/Productivity @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:31:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:31:44 +0000 (UTC) Subject: rpms/kdocker/devel kdocker.spec,1.15,1.16 Message-ID: <20090725043144.3D8E611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdocker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5090 Modified Files: kdocker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdocker.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdocker/devel/kdocker.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- kdocker.spec 25 Feb 2009 11:01:42 -0000 1.15 +++ kdocker.spec 25 Jul 2009 04:31:44 -0000 1.16 @@ -2,7 +2,7 @@ Name: kdocker Summary: Dock any application in the system tray Version: 1.3 -Release: 12%{?dist} +Release: 13%{?dist} Group: User Interface/Desktops License: GPLv2+ @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:31:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:31:31 +0000 (UTC) Subject: rpms/kdnssd-avahi/devel kdnssd-avahi.spec,1.8,1.9 Message-ID: <20090725043131.623E711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kdnssd-avahi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4958 Modified Files: kdnssd-avahi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kdnssd-avahi.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdnssd-avahi/devel/kdnssd-avahi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kdnssd-avahi.spec 19 Jul 2009 01:10:12 -0000 1.8 +++ kdnssd-avahi.spec 25 Jul 2009 04:31:31 -0000 1.9 @@ -4,7 +4,7 @@ Summary: KDE zeroconf implementation based on avahi Name: kdnssd-avahi Version: 0.1.3 -Release: 0.8.%{beta}%{?dist} +Release: 0.9.%{beta}%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.3-0.9.20080116svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter 0.1.3-0.8.20080116svn - FTBFS kdnssd-avahi-0.1.3-0.7.20080116svn.fc11 (#511519) - -devel: Requires: %%name%%?_isa ... From jkeating at fedoraproject.org Sat Jul 25 04:31:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:31:58 +0000 (UTC) Subject: rpms/keepalived/devel keepalived.spec,1.15,1.16 Message-ID: <20090725043158.279B011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keepalived/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5219 Modified Files: keepalived.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keepalived.spec =================================================================== RCS file: /cvs/pkgs/rpms/keepalived/devel/keepalived.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- keepalived.spec 12 Apr 2009 17:07:57 -0000 1.15 +++ keepalived.spec 25 Jul 2009 04:31:58 -0000 1.16 @@ -4,7 +4,7 @@ Summary: HA monitor built upon LVS, VRRP and service pollers Name: keepalived Version: 1.1.17 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.keepalived.org/ @@ -106,6 +106,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 1.1.17-1 - Update to 1.1.17. - Update init script all the way. From jkeating at fedoraproject.org Sat Jul 25 04:32:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:32:26 +0000 (UTC) Subject: rpms/kerneloops/devel kerneloops.spec,1.18,1.19 Message-ID: <20090725043226.6A0E311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kerneloops/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5475 Modified Files: kerneloops.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kerneloops.spec =================================================================== RCS file: /cvs/pkgs/rpms/kerneloops/devel/kerneloops.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- kerneloops.spec 8 Apr 2009 02:34:04 -0000 1.18 +++ kerneloops.spec 25 Jul 2009 04:32:26 -0000 1.19 @@ -1,6 +1,6 @@ Name: kerneloops Version: 0.12 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool to automatically collect and submit kernel crash signatures Group: System Environment/Base @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_mandir}/man8/kerneloops.8.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Chuck Ebbert 0.12-5 - Log the URL of the last patch submitted to the system log (#493963) From jkeating at fedoraproject.org Sat Jul 25 04:32:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:32:12 +0000 (UTC) Subject: rpms/keepassx/devel keepassx.spec,1.17,1.18 Message-ID: <20090725043212.B3A0E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keepassx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5353 Modified Files: keepassx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keepassx.spec =================================================================== RCS file: /cvs/pkgs/rpms/keepassx/devel/keepassx.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- keepassx.spec 18 Apr 2009 09:21:09 -0000 1.17 +++ keepassx.spec 25 Jul 2009 04:32:12 -0000 1.18 @@ -1,6 +1,6 @@ Name: keepassx Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform password manager Group: User Interface/Desktops @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Aurelien Bompard 0.4.0-2 - add patch0 to fix bug 496035 From jkeating at fedoraproject.org Sat Jul 25 04:32:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:32:40 +0000 (UTC) Subject: rpms/kerry/devel kerry.spec,1.10,1.11 Message-ID: <20090725043240.7151911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kerry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5620 Modified Files: kerry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kerry.spec =================================================================== RCS file: /cvs/pkgs/rpms/kerry/devel/kerry.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kerry.spec 25 Feb 2009 11:05:26 -0000 1.10 +++ kerry.spec 25 Jul 2009 04:32:40 -0000 1.11 @@ -1,6 +1,6 @@ Name: kerry Version: 0.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Kerry Beagle is a KDE frontend for the Beagle desktop search Group: User Interface/Desktops @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:32:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:32:54 +0000 (UTC) Subject: rpms/ketchup/devel ketchup.spec,1.3,1.4 Message-ID: <20090725043255.06B1F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ketchup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5752 Modified Files: ketchup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ketchup.spec =================================================================== RCS file: /cvs/pkgs/rpms/ketchup/devel/ketchup.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ketchup.spec 25 Feb 2009 11:06:22 -0000 1.3 +++ ketchup.spec 25 Jul 2009 04:32:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: ketchup Version: 0.9.8 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Tools Summary: Linux Kernel source switch/update tool License: GPL+ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:33:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:33:09 +0000 (UTC) Subject: rpms/keurocalc/devel keurocalc.spec,1.8,1.9 Message-ID: <20090725043309.808A311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keurocalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5882 Modified Files: keurocalc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keurocalc.spec =================================================================== RCS file: /cvs/pkgs/rpms/keurocalc/devel/keurocalc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- keurocalc.spec 25 Feb 2009 11:07:19 -0000 1.8 +++ keurocalc.spec 25 Jul 2009 04:33:09 -0000 1.9 @@ -1,6 +1,6 @@ Name: keurocalc Version: 1.0.0 -Release: 2.rc2%{?dist}.1 +Release: 2.rc2%{?dist}.2 Summary: KEurocalc is a universal currency converter and calculator License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 04:33:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:33:33 +0000 (UTC) Subject: rpms/kexec-tools/devel kexec-tools.spec,1.146,1.147 Message-ID: <20090725043333.532CB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kexec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6069 Modified Files: kexec-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kexec-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/kexec-tools/devel/kexec-tools.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- kexec-tools.spec 6 Jul 2009 20:11:59 -0000 1.146 +++ kexec-tools.spec 25 Jul 2009 04:33:33 -0000 1.147 @@ -1,6 +1,6 @@ Name: kexec-tools Version: 2.0.0 -Release: 21%{?dist} +Release: 22%{?dist} License: GPLv2 Group: Applications/System Summary: The kexec/kdump userspace component. @@ -261,6 +261,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Neil Horman 2.0.0-21 - Fixed build break From jkeating at fedoraproject.org Sat Jul 25 04:33:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:33:49 +0000 (UTC) Subject: rpms/keychain/devel keychain.spec,1.14,1.15 Message-ID: <20090725043349.972D911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keychain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6271 Modified Files: keychain.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keychain.spec =================================================================== RCS file: /cvs/pkgs/rpms/keychain/devel/keychain.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- keychain.spec 2 Mar 2009 21:15:20 -0000 1.14 +++ keychain.spec 25 Jul 2009 04:33:49 -0000 1.15 @@ -1,7 +1,7 @@ Name: keychain Summary: Agent manager for OpenSSH, ssh.com, Sun SSH, and GnuPG Version: 2.6.8 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/Internet URL: http://agriffis.n01se.net/keychain/ @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man1/keychain.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Ville Skytt? - 2.6.8-6 - Write ~/.gpg-agent-info when launching gpg-agent for better compatibility with other things using it, e.g. KDE 4 (#486025). From jkeating at fedoraproject.org Sat Jul 25 04:34:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:34:04 +0000 (UTC) Subject: rpms/keyjnote/devel keyjnote.spec,1.10,1.11 Message-ID: <20090725043404.9EC1611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keyjnote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6417 Modified Files: keyjnote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keyjnote.spec =================================================================== RCS file: /cvs/pkgs/rpms/keyjnote/devel/keyjnote.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- keyjnote.spec 25 Feb 2009 11:10:24 -0000 1.10 +++ keyjnote.spec 25 Jul 2009 04:34:04 -0000 1.11 @@ -1,6 +1,6 @@ Name: keyjnote Version: 0.10.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A program that displays presentation slides Group: Applications/Productivity @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/keyjnote.py %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:34:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:34:19 +0000 (UTC) Subject: rpms/keyutils/devel keyutils.spec,1.6,1.7 Message-ID: <20090725043419.67D1811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/keyutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6579 Modified Files: keyutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: keyutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/keyutils/devel/keyutils.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- keyutils.spec 25 Feb 2009 11:11:23 -0000 1.6 +++ keyutils.spec 25 Jul 2009 04:34:19 -0000 1.7 @@ -6,7 +6,7 @@ Summary: Linux Key Management Utilities Name: keyutils Version: %{version} -Release: 5%{?dist} +Release: 6%{?dist} # The main package is GPLv2+ and -libs/-libs-devel are LGPLv2+ License: GPLv2+ and LGPLv2+ Group: System Environment/Base @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:34:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:34:34 +0000 (UTC) Subject: rpms/kflickr/devel kflickr.spec,1.9,1.10 Message-ID: <20090725043434.D102D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kflickr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6771 Modified Files: kflickr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kflickr.spec =================================================================== RCS file: /cvs/pkgs/rpms/kflickr/devel/kflickr.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kflickr.spec 25 Feb 2009 11:12:15 -0000 1.9 +++ kflickr.spec 25 Jul 2009 04:34:34 -0000 1.10 @@ -1,6 +1,6 @@ Name: kflickr Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Standalone Flickr Uploader Group: Applications/Internet @@ -92,6 +92,9 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:34:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:34:49 +0000 (UTC) Subject: rpms/kftpgrabber/devel kftpgrabber.spec,1.9,1.10 Message-ID: <20090725043449.B85DF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kftpgrabber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6923 Modified Files: kftpgrabber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kftpgrabber.spec =================================================================== RCS file: /cvs/pkgs/rpms/kftpgrabber/devel/kftpgrabber.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kftpgrabber.spec 28 Feb 2009 16:15:02 -0000 1.9 +++ kftpgrabber.spec 25 Jul 2009 04:34:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: kftpgrabber Version: 0.8.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: FTP client Group: Applications/Internet @@ -107,6 +107,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Johan Cwiklinski - 0.8.1-9 - Fix for cast issue From jkeating at fedoraproject.org Sat Jul 25 04:35:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:35:04 +0000 (UTC) Subject: rpms/kgrab/devel kgrab.spec,1.18,1.19 Message-ID: <20090725043504.B012411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7091 Modified Files: kgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/kgrab/devel/kgrab.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- kgrab.spec 10 Jun 2009 13:14:38 -0000 1.18 +++ kgrab.spec 25 Jul 2009 04:35:04 -0000 1.19 @@ -5,7 +5,7 @@ Name: kgrab Version: 0.1.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A screen grabbing utility Group: User Interface/Desktops @@ -75,6 +75,9 @@ xdg-icon-resource forceupdate --theme hi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 10 2009 Sebastian Vahl - 0.1.1-16 - 4.2.4 From jkeating at fedoraproject.org Sat Jul 25 04:35:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:35:21 +0000 (UTC) Subject: rpms/kgtk/devel kgtk.spec,1.11,1.12 Message-ID: <20090725043521.0716811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7249 Modified Files: kgtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/kgtk/devel/kgtk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- kgtk.spec 30 Jun 2009 09:32:05 -0000 1.11 +++ kgtk.spec 25 Jul 2009 04:35:20 -0000 1.12 @@ -5,7 +5,7 @@ %endif Name: kgtk Version: 0.10.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allows Gtk and Qt applications to use KDE's file dialogs Group: System Environment/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Francois Aucamp - 0.10.1-1 - Update to version 0.10.1 - Added "kgtk2_wrapper_lib_suffix" patch to fix libdir locations on x86_64 (RHBZ #508733) From jkeating at fedoraproject.org Sat Jul 25 04:35:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:35:37 +0000 (UTC) Subject: rpms/kguitar/devel kguitar.spec,1.4,1.5 Message-ID: <20090725043537.6745C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kguitar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7432 Modified Files: kguitar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kguitar.spec =================================================================== RCS file: /cvs/pkgs/rpms/kguitar/devel/kguitar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kguitar.spec 11 Jun 2009 17:49:28 -0000 1.4 +++ kguitar.spec 25 Jul 2009 04:35:37 -0000 1.5 @@ -2,7 +2,7 @@ Name: kguitar Version: 0.5.1 -Release: 6.%{svnver}%{?dist} +Release: 7.%{svnver}%{?dist} Group: Applications/Multimedia Summary: Guitar Tabulature Music Editor License: GPLv2+ @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %{_texmf_main}/tex/generic/kgtabs %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-7.926svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Orcan Ogetbil - 0.5.1-6.926svn - Patch to enable build with automake-1.11 or higher - Update scriptlets according to the new guidelines From jkeating at fedoraproject.org Sat Jul 25 04:35:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:35:52 +0000 (UTC) Subject: rpms/khmeros-fonts/devel khmeros-fonts.spec,1.5,1.6 Message-ID: <20090725043552.928F911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/khmeros-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7567 Modified Files: khmeros-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: khmeros-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/khmeros-fonts/devel/khmeros-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- khmeros-fonts.spec 25 Feb 2009 11:17:00 -0000 1.5 +++ khmeros-fonts.spec 25 Jul 2009 04:35:52 -0000 1.6 @@ -13,7 +13,7 @@ They were created by Danh Hong of the Ca Name: %{fontname}-fonts Version: 5.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Khmer font set created by Danh Hong of the Cambodian Open Institute Group: User Interface/X @@ -174,6 +174,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 5.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:36:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:36:08 +0000 (UTC) Subject: rpms/kicad/devel kicad.spec,1.18,1.19 Message-ID: <20090725043608.C303911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kicad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7725 Modified Files: kicad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kicad.spec =================================================================== RCS file: /cvs/pkgs/rpms/kicad/devel/kicad.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- kicad.spec 10 Jul 2009 14:34:56 -0000 1.18 +++ kicad.spec 25 Jul 2009 04:36:08 -0000 1.19 @@ -1,6 +1,6 @@ Name: kicad Version: 2009.07.07 -Release: 2.rev1863%{?dist} +Release: 3.rev1863%{?dist} Summary: Electronic schematic diagrams and printed circuit board artwork Summary(fr): Saisie de sch?ma ?lectronique et trac? de circuit imprim? @@ -340,6 +340,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2009.07.07-3.rev1863 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Jon Ciesla - 2009.07.07-2.rev1863 - Dropped eeschema desktop file. - Moved English kicad.pdf to main rpm. From jkeating at fedoraproject.org Sat Jul 25 04:36:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:36:25 +0000 (UTC) Subject: rpms/kiconedit/devel kiconedit.spec,1.19,1.20 Message-ID: <20090725043625.11B6A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kiconedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7879 Modified Files: kiconedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kiconedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kiconedit/devel/kiconedit.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- kiconedit.spec 10 Jun 2009 13:30:03 -0000 1.19 +++ kiconedit.spec 25 Jul 2009 04:36:24 -0000 1.20 @@ -2,7 +2,7 @@ Name: kiconedit Version: 4.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An icon editor Group: Applications/Publishing @@ -88,6 +88,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 10 2009 Sebastian Vahl 4.2.4-1 - 4.2.4 From jkeating at fedoraproject.org Sat Jul 25 04:36:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:36:40 +0000 (UTC) Subject: rpms/kid3/devel kid3.spec,1.27,1.28 Message-ID: <20090725043640.D8BC711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kid3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8015 Modified Files: kid3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kid3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kid3/devel/kid3.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- kid3.spec 30 Apr 2009 16:50:43 -0000 1.27 +++ kid3.spec 25 Jul 2009 04:36:40 -0000 1.28 @@ -1,6 +1,6 @@ Name: kid3 Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Efficient ID3 tag editor Group: Applications/Multimedia @@ -82,6 +82,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Ville Skytt? - 1.2-1 - Update to 1.2, discogs.com patch applied upstream. - Use %%find_lang --with-kde. From jkeating at fedoraproject.org Sat Jul 25 04:36:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:36:54 +0000 (UTC) Subject: rpms/kile/devel kile.spec,1.48,1.49 Message-ID: <20090725043654.EF41A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8158 Modified Files: kile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kile.spec =================================================================== RCS file: /cvs/pkgs/rpms/kile/devel/kile.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- kile.spec 17 Jun 2009 19:21:10 -0000 1.48 +++ kile.spec 25 Jul 2009 04:36:54 -0000 1.49 @@ -4,7 +4,7 @@ Name: kile Summary: (La)TeX source editor and TeX shell Version: 2.1 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} License: GPLv2+ Group: Applications/Publishing @@ -127,6 +127,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1-0.2.b1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Rex Dieter - 2.1-0.1.b1 - kile-2.1b1, kde4 version, woo! From jkeating at fedoraproject.org Sat Jul 25 04:37:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:37:09 +0000 (UTC) Subject: rpms/kinput2/devel kinput2.spec,1.22,1.23 Message-ID: <20090725043709.50BC111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kinput2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8317 Modified Files: kinput2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kinput2.spec =================================================================== RCS file: /cvs/pkgs/rpms/kinput2/devel/kinput2.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kinput2.spec 25 Feb 2009 11:21:46 -0000 1.22 +++ kinput2.spec 25 Jul 2009 04:37:09 -0000 1.23 @@ -25,7 +25,7 @@ Name: kinput2 Version: v3.1 -Release: 40%{?dist} +Release: 41%{?dist} License: MIT BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libICE-devel libSM-devel libX11-devel libXaw-devel libXext-devel libXmu-devel libXpm-devel libXt-devel libXp-devel @@ -258,6 +258,9 @@ ln -sf kinput2.canna-wnn6 %{_bindir}/kin %{_sysconfdir}/X11/xinit/xinput.d %changelog +* Fri Jul 24 2009 Fedora Release Engineering - v3.1-41 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - v3.1-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:37:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:37:24 +0000 (UTC) Subject: rpms/kio_sword/devel kio_sword.spec,1.8,1.9 Message-ID: <20090725043724.6C4B511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kio_sword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8490 Modified Files: kio_sword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kio_sword.spec =================================================================== RCS file: /cvs/pkgs/rpms/kio_sword/devel/kio_sword.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- kio_sword.spec 14 Jun 2009 13:05:40 -0000 1.8 +++ kio_sword.spec 25 Jul 2009 04:37:24 -0000 1.9 @@ -1,6 +1,6 @@ Name: kio_sword Version: 0.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A lightweight frontend for the Sword Bible project for KDE URL: http://lukeplant.me.uk/kio-sword/ License: GPLv2+ @@ -80,6 +80,9 @@ touch --no-create %{_datadir}/icons/hico %doc AUTHORS COPYING README TODO %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Deji Akingunola 0.3-10 - Rebuild for sword-1.6.0 From jkeating at fedoraproject.org Sat Jul 25 04:37:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:37:38 +0000 (UTC) Subject: rpms/kio_sysinfo/devel kio_sysinfo.spec,1.4,1.5 Message-ID: <20090725043738.4029711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kio_sysinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8650 Modified Files: kio_sysinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kio_sysinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/kio_sysinfo/devel/kio_sysinfo.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kio_sysinfo.spec 20 Jun 2009 12:26:59 -0000 1.4 +++ kio_sysinfo.spec 25 Jul 2009 04:37:38 -0000 1.5 @@ -2,7 +2,7 @@ Name: kio_sysinfo Version: 20090620 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KIO slave which shows basic system information Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090620-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Luk?? Tinkl - 20090620-1 - new upstream version - drop patches From jkeating at fedoraproject.org Sat Jul 25 04:37:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:37:53 +0000 (UTC) Subject: rpms/kiosktool/devel kiosktool.spec,1.13,1.14 Message-ID: <20090725043753.A991A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kiosktool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8791 Modified Files: kiosktool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kiosktool.spec =================================================================== RCS file: /cvs/pkgs/rpms/kiosktool/devel/kiosktool.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- kiosktool.spec 25 Feb 2009 11:25:27 -0000 1.13 +++ kiosktool.spec 25 Jul 2009 04:37:53 -0000 1.14 @@ -2,7 +2,7 @@ Summary: KIOSK administration tool for KDE Name: kiosktool Version: 1.0 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 Group: System Environment/Base @@ -94,6 +94,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:38:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:38:10 +0000 (UTC) Subject: rpms/kismet/devel kismet.spec,1.22,1.23 Message-ID: <20090725043810.2F35611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kismet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8938 Modified Files: kismet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kismet.spec =================================================================== RCS file: /cvs/pkgs/rpms/kismet/devel/kismet.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kismet.spec 18 Mar 2009 07:29:05 -0000 1.22 +++ kismet.spec 25 Jul 2009 04:38:10 -0000 1.23 @@ -18,7 +18,7 @@ Summary: WLAN detector, sniffer and IDS Name: kismet Version: %_rpmversion -Release: %release_func 5 +Release: %release_func 6 License: GPLv2+ Group: Applications/Internet URL: http://www.kismetwireless.net/ @@ -161,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.2008.05.R1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Alex Lancaster - 0.0.2008.05.R1-5 - Add patch to fix build against GCC 4.4 (#490811) From jkeating at fedoraproject.org Sat Jul 25 04:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:38:27 +0000 (UTC) Subject: rpms/kitsune/devel kitsune.spec,1.3,1.4 Message-ID: <20090725043827.C401411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kitsune/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9093 Modified Files: kitsune.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kitsune.spec =================================================================== RCS file: /cvs/pkgs/rpms/kitsune/devel/kitsune.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kitsune.spec 25 Feb 2009 11:31:53 -0000 1.3 +++ kitsune.spec 25 Jul 2009 04:38:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: kitsune Version: 2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Program to solve mathematical problems Group: Amusements/Games @@ -77,6 +77,9 @@ if [ -x %{_bindir}/gtk-update-icon-cache fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:38:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:38:42 +0000 (UTC) Subject: rpms/klamav/devel klamav.spec,1.35,1.36 Message-ID: <20090725043842.D68AF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klamav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9247 Modified Files: klamav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: klamav.spec =================================================================== RCS file: /cvs/pkgs/rpms/klamav/devel/klamav.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- klamav.spec 19 Mar 2009 12:23:16 -0000 1.35 +++ klamav.spec 25 Jul 2009 04:38:42 -0000 1.36 @@ -1,7 +1,7 @@ Summary: Clam Anti-Virus on the KDE Desktop Name: klamav Version: 0.46 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://downloads.sourceforge.net/klamav/%{name}-%{version}.tar.bz2 Patch0: klamav-0.46-suse-clamav-path.patch # Upstream notified via mailing list: @@ -87,6 +87,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/*/*x*/apps/klamav.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.46-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Andy Shevchenko - 0.46-2 - disable update from GUI (#490451) From jkeating at fedoraproject.org Sat Jul 25 04:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:38:59 +0000 (UTC) Subject: rpms/klatexformula/devel klatexformula.spec,1.1,1.2 Message-ID: <20090725043859.08C1911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klatexformula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9426 Modified Files: klatexformula.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: klatexformula.spec =================================================================== RCS file: /cvs/pkgs/rpms/klatexformula/devel/klatexformula.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- klatexformula.spec 6 May 2009 22:37:17 -0000 1.1 +++ klatexformula.spec 25 Jul 2009 04:38:58 -0000 1.2 @@ -1,6 +1,6 @@ Name: klatexformula Version: 3.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Application for easy image creating from a LaTeX equation Group: Applications/Publishing License: GPLv2+ @@ -108,6 +108,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_includedir}/klfbackend.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Alexey Kurov - 3.0.1-3 - build with shared libraries - fixed license tag From jkeating at fedoraproject.org Sat Jul 25 04:39:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:39:14 +0000 (UTC) Subject: rpms/klavaro/devel klavaro.spec,1.1,1.2 Message-ID: <20090725043914.A363A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klavaro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9600 Modified Files: klavaro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: klavaro.spec =================================================================== RCS file: /cvs/pkgs/rpms/klavaro/devel/klavaro.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- klavaro.spec 15 Jul 2009 19:45:07 -0000 1.1 +++ klavaro.spec 25 Jul 2009 04:39:14 -0000 1.2 @@ -1,6 +1,6 @@ Name: klavaro Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Typing tutor Group: Applications/Multimedia @@ -83,6 +83,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Fabian Affolter - 1.2.1-3 - Fixed license tag From jkeating at fedoraproject.org Sat Jul 25 04:39:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:39:30 +0000 (UTC) Subject: rpms/klear/devel klear.spec,1.5,1.6 Message-ID: <20090725043930.5817011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9763 Modified Files: klear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: klear.spec =================================================================== RCS file: /cvs/pkgs/rpms/klear/devel/klear.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- klear.spec 25 Feb 2009 11:33:46 -0000 1.5 +++ klear.spec 25 Jul 2009 04:39:30 -0000 1.6 @@ -2,7 +2,7 @@ Name: klear Version: 0.7.0 -Release: 3.svn%{svnrel}%{?dist} +Release: 4.svn%{svnrel}%{?dist} Summary: DVB TV application and harddisk-recorder for linux Group: Applications/Multimedia @@ -91,6 +91,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-4.svn113 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.0-3.svn113 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:39:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:39:47 +0000 (UTC) Subject: rpms/klibido/devel klibido.spec,1.6,1.7 Message-ID: <20090725043947.7FDAA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/klibido/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9920 Modified Files: klibido.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: klibido.spec =================================================================== RCS file: /cvs/pkgs/rpms/klibido/devel/klibido.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- klibido.spec 25 Feb 2009 11:34:42 -0000 1.6 +++ klibido.spec 25 Jul 2009 04:39:47 -0000 1.7 @@ -1,6 +1,6 @@ Name: klibido Version: 0.2.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: NNTP (Usenet) file grabber for KDE Group: Applications/Internet @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:40:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:40:07 +0000 (UTC) Subject: rpms/kmenu-gnome/devel kmenu-gnome.spec,1.21,1.22 Message-ID: <20090725044007.B1C4F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kmenu-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10106 Modified Files: kmenu-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kmenu-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmenu-gnome/devel/kmenu-gnome.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- kmenu-gnome.spec 25 Feb 2009 11:35:41 -0000 1.21 +++ kmenu-gnome.spec 25 Jul 2009 04:40:07 -0000 1.22 @@ -2,7 +2,7 @@ Name: kmenu-gnome Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: K Menu with Gnome directory License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 04:40:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:40:23 +0000 (UTC) Subject: rpms/kmid/devel kmid.spec,1.4,1.5 Message-ID: <20090725044023.A90D111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kmid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10234 Modified Files: kmid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kmid.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmid/devel/kmid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kmid.spec 25 Feb 2009 11:36:39 -0000 1.4 +++ kmid.spec 25 Jul 2009 04:40:23 -0000 1.5 @@ -2,7 +2,7 @@ Name: kmid Version: 2.0 -Release: 0.7.%{svn_date}svn%{?dist} +Release: 0.8.%{svn_date}svn%{?dist} Summary: A midi/karaoke player for KDE Group: Applications/Multimedia @@ -131,6 +131,9 @@ xdg-icon-resource forceupdate --theme hi %{_kde4_libdir}/liblibkmid.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-0.8.20080213svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-0.7.20080213svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:40:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:40:39 +0000 (UTC) Subject: rpms/kmplayer/devel kmplayer.spec,1.14,1.15 Message-ID: <20090725044039.B4D0411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kmplayer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10367 Modified Files: kmplayer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kmplayer.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmplayer/devel/kmplayer.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- kmplayer.spec 17 Jun 2009 22:47:42 -0000 1.14 +++ kmplayer.spec 25 Jul 2009 04:40:39 -0000 1.15 @@ -1,7 +1,7 @@ Name: kmplayer Summary: A simple frontend for MPlayer/FFMpeg/Phonon Version: 0.11.1b -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Multimedia # The documentation is GFDL. # The files under src/moz-sdk are MPLv1.1 or GPLv2+ or LGPLv2+ @@ -132,6 +132,9 @@ update-desktop-database -q &> /dev/null %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.1b-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Orcan Ogetbil - 0.11.1b-1 - kmplayer-0.11.1b - drop upstreamed patches From jkeating at fedoraproject.org Sat Jul 25 04:40:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:40:58 +0000 (UTC) Subject: rpms/kmymoney2/devel kmymoney2.spec,1.39,1.40 Message-ID: <20090725044058.C885E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kmymoney2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10546 Modified Files: kmymoney2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kmymoney2.spec =================================================================== RCS file: /cvs/pkgs/rpms/kmymoney2/devel/kmymoney2.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- kmymoney2.spec 17 Jul 2009 13:36:58 -0000 1.39 +++ kmymoney2.spec 25 Jul 2009 04:40:58 -0000 1.40 @@ -18,7 +18,7 @@ BuildRequires: libutempter-devel Summary: Personal finance Name: kmymoney2 Version: 0.9.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Url: http://kmymoney2.sourceforge.net/ @@ -179,6 +179,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Rex Dieter - 0.9.3-3 - validate .desktop file - -libs unconditional From jkeating at fedoraproject.org Sat Jul 25 04:41:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:41:15 +0000 (UTC) Subject: rpms/knemo/devel knemo.spec,1.16,1.17 Message-ID: <20090725044115.DF2FD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/knemo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10710 Modified Files: knemo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: knemo.spec =================================================================== RCS file: /cvs/pkgs/rpms/knemo/devel/knemo.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- knemo.spec 1 Apr 2009 01:40:56 -0000 1.16 +++ knemo.spec 25 Jul 2009 04:41:15 -0000 1.17 @@ -1,6 +1,6 @@ Name: knemo Version: 0.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A KDE network monitoring tool Group: Applications/Internet License: GPLv2+ @@ -67,6 +67,9 @@ xdg-desktop-menu forceupdate 2> /dev/nul %{_kde4_iconsdir}/hicolor/*/apps/knemo.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Alexey Kurov - 0.5.2-1 - Update to version 0.5.2 - Fixed spec License and URL fields From jkeating at fedoraproject.org Sat Jul 25 04:41:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:41:31 +0000 (UTC) Subject: rpms/knetstats/devel knetstats.spec,1.18,1.19 Message-ID: <20090725044131.5805D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/knetstats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10881 Modified Files: knetstats.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: knetstats.spec =================================================================== RCS file: /cvs/pkgs/rpms/knetstats/devel/knetstats.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- knetstats.spec 16 Jul 2009 08:45:48 -0000 1.18 +++ knetstats.spec 25 Jul 2009 04:41:31 -0000 1.19 @@ -1,6 +1,6 @@ Name: knetstats Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A KDE Network monitor License: GPLv2 @@ -70,6 +70,9 @@ touch --no-create %{_datadir}/icons/hico %{_docdir}/HTML/en/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Chitlesh Goorah - 1.6.2-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 04:41:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:41:47 +0000 (UTC) Subject: rpms/knm_new-fonts/devel knm_new-fonts.spec,1.5,1.6 Message-ID: <20090725044147.8A22A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/knm_new-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11026 Modified Files: knm_new-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: knm_new-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/knm_new-fonts/devel/knm_new-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- knm_new-fonts.spec 26 Mar 2009 09:39:00 -0000 1.5 +++ knm_new-fonts.spec 25 Jul 2009 04:41:47 -0000 1.6 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 12x12 JIS X 0208 Bitmap font Group: User Interface/X @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Akira TAGOH - 1.1-5 - Clean up a spec file. - Rebuild to correct autoprovides (#491966) From jkeating at fedoraproject.org Sat Jul 25 04:42:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:42:03 +0000 (UTC) Subject: rpms/koan/devel koan.spec,1.46,1.47 Message-ID: <20090725044203.CFCBA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11172 Modified Files: koan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koan.spec =================================================================== RCS file: /cvs/pkgs/rpms/koan/devel/koan.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- koan.spec 12 Jun 2009 20:53:12 -0000 1.46 +++ koan.spec 25 Jul 2009 04:42:03 -0000 1.47 @@ -3,7 +3,7 @@ Summary: Network provisioning tool for Xen and Bare Metal Machines Name: koan Version: 1.6.6 -Release: 1%{?dist} +Release: 2%{?dist} Source0: %{name}-%{version}.tar.gz License: GPLv2+ Group: Applications/System @@ -60,6 +60,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %doc AUTHORS COPYING CHANGELOG README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Michael DeHaan - 1.6.6-1 - Placeholder for future release From jkeating at fedoraproject.org Sat Jul 25 04:42:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:42:19 +0000 (UTC) Subject: rpms/kobo/devel kobo.spec,1.2,1.3 Message-ID: <20090725044219.C626411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kobo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11316 Modified Files: kobo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kobo.spec =================================================================== RCS file: /cvs/pkgs/rpms/kobo/devel/kobo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kobo.spec 22 Jul 2009 17:45:10 -0000 1.2 +++ kobo.spec 25 Jul 2009 04:42:19 -0000 1.3 @@ -7,7 +7,7 @@ %define version 0.1.1 -%define release 1 +%define release 2 # set git to %{nil} (release) or to YYYYMMDD.123456 (git build) %define git %{nil} @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel Mach - 0.1.1-1 - Enhance types.Enum to support help_text and additonal options. Update tests for types module. (Daniel Mach) - Remove temp directory after file upload. (Tomas Kopecek) From jkeating at fedoraproject.org Sat Jul 25 04:42:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:42:35 +0000 (UTC) Subject: rpms/kodos/devel kodos.spec,1.6,1.7 Message-ID: <20090725044235.1924B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kodos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11454 Modified Files: kodos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kodos.spec =================================================================== RCS file: /cvs/pkgs/rpms/kodos/devel/kodos.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- kodos.spec 25 Feb 2009 11:42:23 -0000 1.6 +++ kodos.spec 25 Jul 2009 04:42:34 -0000 1.7 @@ -2,7 +2,7 @@ Name: kodos Version: 2.4.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Visual regular expression editor Group: Development/Tools @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:42:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:42:57 +0000 (UTC) Subject: rpms/koffice/devel koffice.spec,1.110,1.111 Message-ID: <20090725044257.E56AC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koffice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11624 Modified Files: koffice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice/devel/koffice.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- koffice.spec 6 Jul 2009 12:37:31 -0000 1.110 +++ koffice.spec 25 Jul 2009 04:42:57 -0000 1.111 @@ -12,7 +12,7 @@ Name: koffice Epoch: 2 Version: 2.0.1 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 Summary: An integrated office suite Group: Applications/Productivity @@ -767,6 +767,9 @@ update-desktop-database -q &> /dev/null %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:2.0.1-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Rex Dieter - 2:2.0.1-2 - rebuild (GraphicsMagick) From jkeating at fedoraproject.org Sat Jul 25 04:43:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:43:12 +0000 (UTC) Subject: rpms/koffice-langpack/devel koffice-langpack.spec,1.22,1.23 Message-ID: <20090725044312.D1BE311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koffice-langpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11790 Modified Files: koffice-langpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koffice-langpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/koffice-langpack/devel/koffice-langpack.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- koffice-langpack.spec 24 May 2009 07:24:37 -0000 1.22 +++ koffice-langpack.spec 25 Jul 2009 04:43:12 -0000 1.23 @@ -4,7 +4,7 @@ Name: koffice-langpack Epoch: 1 Version: 2.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Language files for koffice Group: Applications/Productivity @@ -749,6 +749,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Rex Dieter 1:2.0.0-1 - koffice-l10n-2.0.0 From jkeating at fedoraproject.org Sat Jul 25 04:43:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:43:27 +0000 (UTC) Subject: rpms/koji/devel koji.spec,1.16,1.17 Message-ID: <20090725044327.C5BA711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koji/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11932 Modified Files: koji.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koji.spec =================================================================== RCS file: /cvs/pkgs/rpms/koji/devel/koji.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- koji.spec 25 Feb 2009 11:45:17 -0000 1.16 +++ koji.spec 25 Jul 2009 04:43:27 -0000 1.17 @@ -1,6 +1,6 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define baserelease 2 +%define baserelease 3 #build with --define 'testbuild 1' to have a timestamp appended to release %if "x%{?testbuild}" == "x1" %define release %{baserelease}.%(date +%%Y%%m%%d.%%H%%M.%%S) @@ -169,6 +169,9 @@ if [ $1 = 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:43:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:43:42 +0000 (UTC) Subject: rpms/komparator/devel komparator.spec,1.7,1.8 Message-ID: <20090725044342.A32E411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/komparator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12075 Modified Files: komparator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: komparator.spec =================================================================== RCS file: /cvs/pkgs/rpms/komparator/devel/komparator.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- komparator.spec 25 Feb 2009 11:46:11 -0000 1.7 +++ komparator.spec 25 Jul 2009 04:43:42 -0000 1.8 @@ -1,6 +1,6 @@ Name: komparator Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Kompare and merge two folders Group: Development/Tools @@ -83,6 +83,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:43:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:43:57 +0000 (UTC) Subject: rpms/konq-plugins/devel konq-plugins.spec,1.27,1.28 Message-ID: <20090725044357.765FA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/konq-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12244 Modified Files: konq-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: konq-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/konq-plugins/devel/konq-plugins.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- konq-plugins.spec 8 May 2009 14:45:56 -0000 1.27 +++ konq-plugins.spec 25 Jul 2009 04:43:57 -0000 1.28 @@ -2,7 +2,7 @@ Name: konq-plugins Version: 4.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Additional plugins that interact with konqueror Group: Applications/Internet @@ -126,6 +126,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Rex Dieter 4.2.3-1 - 4.2.3 From jkeating at fedoraproject.org Sat Jul 25 04:44:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:44:12 +0000 (UTC) Subject: rpms/konversation/devel konversation.spec,1.28,1.29 Message-ID: <20090725044412.667E911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/konversation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12387 Modified Files: konversation.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: konversation.spec =================================================================== RCS file: /cvs/pkgs/rpms/konversation/devel/konversation.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- konversation.spec 4 Jul 2009 03:23:46 -0000 1.28 +++ konversation.spec 25 Jul 2009 04:44:12 -0000 1.29 @@ -3,7 +3,7 @@ Name: konversation Version: 1.2 -Release: 0.2.%{pre}%{?dist} +Release: 0.3.%{pre}%{?dist} Summary: A user friendly IRC client Group: Applications/Internet @@ -95,6 +95,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-0.3.alpha4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Rex Dieter - 1.2-0.2.alpha4 - konversation-1.2-alpha4 From jkeating at fedoraproject.org Sat Jul 25 04:44:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:44:28 +0000 (UTC) Subject: rpms/kopete-cryptography/devel kopete-cryptography.spec,1.9,1.10 Message-ID: <20090725044428.16FEC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kopete-cryptography/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12532 Modified Files: kopete-cryptography.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kopete-cryptography.spec =================================================================== RCS file: /cvs/pkgs/rpms/kopete-cryptography/devel/kopete-cryptography.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kopete-cryptography.spec 19 Jul 2009 01:16:49 -0000 1.9 +++ kopete-cryptography.spec 25 Jul 2009 04:44:27 -0000 1.10 @@ -3,7 +3,7 @@ Name: kopete-cryptography Version: %{pluginversion} -Release: 10%{?dist} +Release: 11%{?dist} Summary: Encrypts and signs messages in Kopete using the OpenPGP Group: Applications/Internet @@ -78,6 +78,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 1.3.0-10 - 1.3.0-kde4.2.4 From jkeating at fedoraproject.org Sat Jul 25 04:44:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:44:43 +0000 (UTC) Subject: rpms/koules/devel koules.spec,1.9,1.10 Message-ID: <20090725044443.967C111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12683 Modified Files: koules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koules.spec =================================================================== RCS file: /cvs/pkgs/rpms/koules/devel/koules.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- koules.spec 13 Apr 2009 19:33:59 -0000 1.9 +++ koules.spec 25 Jul 2009 04:44:43 -0000 1.10 @@ -1,6 +1,6 @@ Name: koules Version: 1.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Action game with multiplayer, network and sound support Group: Amusements/Games @@ -201,6 +201,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Lubomir Rintel 1.4-7 - Debian apparently fixed shm more sanely than me - Import bunch of Debian fixes From jkeating at fedoraproject.org Sat Jul 25 04:44:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:44:59 +0000 (UTC) Subject: rpms/kover/devel kover.spec,1.26,1.27 Message-ID: <20090725044459.1014111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kover/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12829 Modified Files: kover.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kover.spec =================================================================== RCS file: /cvs/pkgs/rpms/kover/devel/kover.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- kover.spec 2 Mar 2009 09:52:20 -0000 1.26 +++ kover.spec 25 Jul 2009 04:44:58 -0000 1.27 @@ -1,7 +1,7 @@ Name: kover Summary: WYSIWYG CD cover printer with CDDB support Version: 4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Publishing Source0 http://lisas.de/kover/kover-4.tar.bz2 @@ -73,6 +73,9 @@ update-desktop-database %{_datadir}/appl %attr(755,root,root)%{_bindir}/kover %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Adrian Reber - 4-4 - included patch to build with gcc 4.4 From jkeating at fedoraproject.org Sat Jul 25 04:45:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:45:13 +0000 (UTC) Subject: rpms/koverartist/devel koverartist.spec,1.7,1.8 Message-ID: <20090725044513.7B80F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/koverartist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12991 Modified Files: koverartist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: koverartist.spec =================================================================== RCS file: /cvs/pkgs/rpms/koverartist/devel/koverartist.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- koverartist.spec 25 Feb 2009 11:52:41 -0000 1.7 +++ koverartist.spec 25 Jul 2009 04:45:13 -0000 1.8 @@ -1,6 +1,6 @@ Name: koverartist Version: 0.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Create CD/DVD covers Group: Applications/Publishing @@ -70,6 +70,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/mimelnk/application/x-koverartist.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:45:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:45:28 +0000 (UTC) Subject: rpms/kpackagekit/devel kpackagekit.spec,1.38,1.39 Message-ID: <20090725044528.B5D1611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kpackagekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13145 Modified Files: kpackagekit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kpackagekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/kpackagekit/devel/kpackagekit.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- kpackagekit.spec 16 Jul 2009 13:52:56 -0000 1.38 +++ kpackagekit.spec 25 Jul 2009 04:45:28 -0000 1.39 @@ -3,7 +3,7 @@ Name: kpackagekit Version: 0.4.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: KDE interface for PackageKit License: GPLv2+ @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Steven M. Parrish 0.4.1.1-3 - Now includes Sloval(sk) translations From jkeating at fedoraproject.org Sat Jul 25 04:45:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:45:43 +0000 (UTC) Subject: rpms/kphotoalbum/devel kphotoalbum.spec,1.38,1.39 Message-ID: <20090725044543.D1A7011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kphotoalbum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13293 Modified Files: kphotoalbum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kphotoalbum.spec =================================================================== RCS file: /cvs/pkgs/rpms/kphotoalbum/devel/kphotoalbum.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- kphotoalbum.spec 22 May 2009 16:46:06 -0000 1.38 +++ kphotoalbum.spec 25 Jul 2009 04:45:43 -0000 1.39 @@ -2,7 +2,7 @@ Summary: KDE Photo Album Name: kphotoalbum Version: 4.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia @@ -102,6 +102,9 @@ xdg-desktop-menu forceupdate 2> /dev/nul %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Rex Dieter - 4.0.1-1 - kphotoalbum-4.0.1 From jkeating at fedoraproject.org Sat Jul 25 04:45:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:45:58 +0000 (UTC) Subject: rpms/kphotobymail/devel kphotobymail.spec,1.11,1.12 Message-ID: <20090725044558.9823511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kphotobymail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13433 Modified Files: kphotobymail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kphotobymail.spec =================================================================== RCS file: /cvs/pkgs/rpms/kphotobymail/devel/kphotobymail.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- kphotobymail.spec 25 Feb 2009 11:55:39 -0000 1.11 +++ kphotobymail.spec 25 Jul 2009 04:45:58 -0000 1.12 @@ -4,7 +4,7 @@ Name: kphotobymail Version: 0.4.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A PyKDE based application for uploading photos to flickr account Group: Applications/Internet # No version specified. @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-kphotobymail.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:46:13 +0000 (UTC) Subject: rpms/kpolynome/devel kpolynome.spec,1.9,1.10 Message-ID: <20090725044613.CE66A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kpolynome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13595 Modified Files: kpolynome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kpolynome.spec =================================================================== RCS file: /cvs/pkgs/rpms/kpolynome/devel/kpolynome.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kpolynome.spec 25 Feb 2009 11:56:32 -0000 1.9 +++ kpolynome.spec 25 Jul 2009 04:46:13 -0000 1.10 @@ -1,7 +1,7 @@ Name: kpolynome #Version 0.1-2 second upstream release Version: 0.1.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A polynome calculation program License: GPLv2 @@ -82,6 +82,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/??x??/apps/%{name}.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:46:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:46:30 +0000 (UTC) Subject: rpms/krazy2/devel krazy2.spec,1.14,1.15 Message-ID: <20090725044630.1490111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krazy2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13775 Modified Files: krazy2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krazy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/krazy2/devel/krazy2.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- krazy2.spec 20 Jul 2009 15:34:49 -0000 1.14 +++ krazy2.spec 25 Jul 2009 04:46:29 -0000 1.15 @@ -3,7 +3,7 @@ Name: krazy2 Version: 2.9 -Release: 2.20090719svn%{?dist} +Release: 3.20090719svn%{?dist} Summary: Krazy is a tool for checking code against the KDE coding guidelines Group: Development/Libraries @@ -150,6 +150,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.9-3.20090719svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ben Boeckel 2.9-2.20090719svn - Fix %%changelog - Fix CVS mistakes (update tarball) From jkeating at fedoraproject.org Sat Jul 25 04:46:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:46:51 +0000 (UTC) Subject: rpms/krb5/devel krb5.spec,1.207,1.208 Message-ID: <20090725044651.0C1DC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krb5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13955 Modified Files: krb5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krb5.spec =================================================================== RCS file: /cvs/pkgs/rpms/krb5/devel/krb5.spec,v retrieving revision 1.207 retrieving revision 1.208 diff -u -p -r1.207 -r1.208 --- krb5.spec 6 Jul 2009 22:56:11 -0000 1.207 +++ krb5.spec 25 Jul 2009 04:46:50 -0000 1.208 @@ -10,7 +10,7 @@ Summary: The Kerberos network authentication system Name: krb5 Version: 1.7 -Release: 4%{?dist} +Release: 5%{?dist} # Maybe we should explode from the now-available-to-everybody tarball instead? # http://web.mit.edu/kerberos/dist/krb5/1.7/krb5-1.7-signed.tar Source0: krb5-%{version}.tar.gz @@ -207,6 +207,9 @@ to obtain initial credentials from a KDC certificate. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Nalin Dahyabhai - simplify the man pages patch by only preprocessing the files we care about and moving shared configure.in logic into a shared function From jkeating at fedoraproject.org Sat Jul 25 04:47:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:47:04 +0000 (UTC) Subject: rpms/krb5-auth-dialog/devel krb5-auth-dialog.spec,1.35,1.36 Message-ID: <20090725044704.A562A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krb5-auth-dialog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14095 Modified Files: krb5-auth-dialog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krb5-auth-dialog.spec =================================================================== RCS file: /cvs/pkgs/rpms/krb5-auth-dialog/devel/krb5-auth-dialog.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- krb5-auth-dialog.spec 12 Jun 2009 20:31:55 -0000 1.35 +++ krb5-auth-dialog.spec 25 Jul 2009 04:47:04 -0000 1.36 @@ -6,7 +6,7 @@ Summary: Kerberos 5 authentication dialog Name: krb5-auth-dialog Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: User Interface/X URL: https://honk.sigxcpu.org/piki/projects/krb5-auth-dialog/ @@ -83,6 +83,9 @@ if [ "$1" -eq 0 ]; then fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Mat?j Cepl - 0.10-1 - Catch up with upstream release again. From jkeating at fedoraproject.org Sat Jul 25 04:47:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:47:18 +0000 (UTC) Subject: rpms/krecipes/devel krecipes.spec,1.18,1.19 Message-ID: <20090725044718.8C97711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krecipes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14224 Modified Files: krecipes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krecipes.spec =================================================================== RCS file: /cvs/pkgs/rpms/krecipes/devel/krecipes.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- krecipes.spec 16 Jun 2009 18:06:17 -0000 1.18 +++ krecipes.spec 25 Jul 2009 04:47:18 -0000 1.19 @@ -1,6 +1,6 @@ Name: krecipes Version: 0.9.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Application to manage recipes and shopping-lists Group: Applications/Productivity @@ -97,6 +97,9 @@ touch --no-create %{_datadir}/icons/crys %{_datadir}/mimelnk/*/*.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Rex Dieter - 0.9.1-11 - re-enable mysql/postgresql support - re-enable mostly harmless X11 patch From jkeating at fedoraproject.org Sat Jul 25 04:47:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:47:33 +0000 (UTC) Subject: rpms/krename/devel krename.spec,1.6,1.7 Message-ID: <20090725044733.E0B1D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krename/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14360 Modified Files: krename.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krename.spec =================================================================== RCS file: /cvs/pkgs/rpms/krename/devel/krename.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- krename.spec 25 Feb 2009 12:01:11 -0000 1.6 +++ krename.spec 25 Jul 2009 04:47:33 -0000 1.7 @@ -1,6 +1,6 @@ Name: krename Version: 3.0.14 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Powerful batch file renamer Group: Applications/File License: GPLv2 @@ -63,6 +63,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:47:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:47:49 +0000 (UTC) Subject: rpms/kronolith/devel kronolith.spec,1.9,1.10 Message-ID: <20090725044749.34B8511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kronolith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14528 Modified Files: kronolith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kronolith.spec =================================================================== RCS file: /cvs/pkgs/rpms/kronolith/devel/kronolith.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- kronolith.spec 25 Feb 2009 12:02:04 -0000 1.9 +++ kronolith.spec 25 Jul 2009 04:47:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: kronolith Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Horde calendar application Source0: ftp://ftp.horde.org/pub/%{name}/%{name}-h3-%{version}.tar.gz @@ -101,6 +101,9 @@ rm -rf %{buildroot} %{_datadir}/horde/%{name} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:48:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:48:04 +0000 (UTC) Subject: rpms/krusader/devel krusader.spec,1.29,1.30 Message-ID: <20090725044804.A41A911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/krusader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14694 Modified Files: krusader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: krusader.spec =================================================================== RCS file: /cvs/pkgs/rpms/krusader/devel/krusader.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- krusader.spec 19 Apr 2009 22:56:46 -0000 1.29 +++ krusader.spec 25 Jul 2009 04:48:04 -0000 1.30 @@ -1,6 +1,6 @@ Name: krusader Version: 2.0.0 -Release: 1.1%{?dist} +Release: 2.1%{?dist} Summary: An advanced twin-panel (commander-style) file-manager for KDE Group: Applications/File @@ -88,6 +88,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/kde4/services/*.protocol %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.0-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Marcin Garski 2.0.0-1.1 - Update to final 2.0.0 From whot at fedoraproject.org Sat Jul 25 04:48:07 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sat, 25 Jul 2009 04:48:07 +0000 (UTC) Subject: rpms/xorg-x11-server/devel .cvsignore, 1.64, 1.65 commitid, 1.27, 1.28 sources, 1.59, 1.60 xorg-x11-server.spec, 1.450, 1.451 Message-ID: <20090725044807.0047B11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14668 Modified Files: .cvsignore commitid sources xorg-x11-server.spec Log Message: * Fri Jul 24 2009 Peter Hutterer 1.6.99-16.20090724 - Today's git snapshot. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/.cvsignore,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- .cvsignore 21 Jul 2009 17:31:15 -0000 1.64 +++ .cvsignore 25 Jul 2009 04:48:06 -0000 1.65 @@ -1 +1 @@ -xorg-server-20090721.tar.bz2 +xorg-server-20090724.tar.bz2 Index: commitid =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/commitid,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- commitid 21 Jul 2009 17:31:15 -0000 1.27 +++ commitid 25 Jul 2009 04:48:06 -0000 1.28 @@ -1 +1 @@ -afc3e3b5955ea4a49308399820cc4c499f4312da +7c6b5458de9bc7f6cd972a36b56888aaa3d201ee Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 21 Jul 2009 17:31:15 -0000 1.59 +++ sources 25 Jul 2009 04:48:06 -0000 1.60 @@ -1 +1 @@ -78de268918337f01dd534ac42e8bfffa xorg-server-20090721.tar.bz2 +537084e15ae293b3dbb3a6c160fc17a1 xorg-server-20090724.tar.bz2 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.450 retrieving revision 1.451 diff -u -p -r1.450 -r1.451 --- xorg-x11-server.spec 23 Jul 2009 19:33:58 -0000 1.450 +++ xorg-x11-server.spec 25 Jul 2009 04:48:06 -0000 1.451 @@ -14,7 +14,7 @@ # Fix rhpxl to no longer need vesamodes/extramodes %define pkgname xorg-server -%define gitdate 20090721 +%define gitdate 20090724 Summary: X.Org X11 X server Name: xorg-x11-server @@ -101,7 +101,7 @@ BuildRequires: git-core BuildRequires: automake autoconf libtool pkgconfig BuildRequires: xorg-x11-util-macros >= 1.1.5 -BuildRequires: xorg-x11-proto-devel >= 7.4-19 +BuildRequires: xorg-x11-proto-devel >= 7.4-23 BuildRequires: xorg-x11-xtrans-devel >= 1.2.2-1 BuildRequires: libXfont-devel libXau-devel libxkbfile-devel libXres-devel @@ -523,6 +523,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Peter Hutterer 1.6.99-16.20090724 +- Today's git snapshot. + * Thu Jul 23 2009 Adam Jackson 1.6.99-16.20090721 - xserver-1.6.99-linkmap.patch: Print load offsets of all DSOs on backtrace so we addr2line afterwards. From jkeating at fedoraproject.org Sat Jul 25 04:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:48:23 +0000 (UTC) Subject: rpms/kscope/devel kscope.spec,1.10,1.11 Message-ID: <20090725044823.AE86B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kscope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14917 Modified Files: kscope.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kscope.spec =================================================================== RCS file: /cvs/pkgs/rpms/kscope/devel/kscope.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kscope.spec 16 Mar 2009 18:35:54 -0000 1.10 +++ kscope.spec 25 Jul 2009 04:48:23 -0000 1.11 @@ -1,7 +1,7 @@ Name: kscope Summary: QT front-end to Cscope Version: 1.9.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools Source0: http://download.sourceforge.net/kscope/%{name}-%{version}.tar.gz @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_libdir}/libkscope_editor.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Tom "spot" Callaway - 1.9.4-1 - update to 1.9.4 From jkeating at fedoraproject.org Sat Jul 25 04:48:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:48:40 +0000 (UTC) Subject: rpms/ksensors/devel ksensors.spec,1.23,1.24 Message-ID: <20090725044840.9C9E111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ksensors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15090 Modified Files: ksensors.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ksensors.spec =================================================================== RCS file: /cvs/pkgs/rpms/ksensors/devel/ksensors.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ksensors.spec 25 Feb 2009 12:05:35 -0000 1.23 +++ ksensors.spec 25 Jul 2009 04:48:40 -0000 1.24 @@ -1,6 +1,6 @@ Name: ksensors Version: 0.7.3 -Release: 17%{?dist} +Release: 18%{?dist} Summary: KDE frontend to lm_sensors Group: Applications/System License: GPLv2+ @@ -88,6 +88,9 @@ done %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.3-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:48:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:48:56 +0000 (UTC) Subject: rpms/ksh/devel ksh.spec,1.48,1.49 Message-ID: <20090725044856.0187F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ksh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15238 Modified Files: ksh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ksh.spec =================================================================== RCS file: /cvs/pkgs/rpms/ksh/devel/ksh.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- ksh.spec 11 May 2009 08:08:38 -0000 1.48 +++ ksh.spec 25 Jul 2009 04:48:55 -0000 1.49 @@ -6,7 +6,7 @@ URL: http://www.kornshell.com/ Group: System Environment/Shells License: CPL Version: 20090505 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://www.research.att.com/~gsf/download/tgz/ast-ksh.%{releasedate}.tgz Source1: http://www.research.att.com/~gsf/download/tgz/INIT.%{releasedate}.tgz Source3: kshrc.rhs @@ -84,6 +84,9 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20090505-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Michal Hlavinka - 20090505-1 - updated to 2009-05-05 From jkeating at fedoraproject.org Sat Jul 25 04:49:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:49:11 +0000 (UTC) Subject: rpms/kshutdown/devel kshutdown.spec,1.10,1.11 Message-ID: <20090725044911.187B311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kshutdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15373 Modified Files: kshutdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kshutdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/kshutdown/devel/kshutdown.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- kshutdown.spec 25 Feb 2009 12:07:24 -0000 1.10 +++ kshutdown.spec 25 Jul 2009 04:49:10 -0000 1.11 @@ -1,6 +1,6 @@ Name: kshutdown Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: KShutDown is an advanced shut down utility for KDE 3 Group: Applications/System From jkeating at fedoraproject.org Sat Jul 25 04:49:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:49:26 +0000 (UTC) Subject: rpms/ksig/devel ksig.spec,1.8,1.9 Message-ID: <20090725044926.0896411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ksig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15520 Modified Files: ksig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ksig.spec =================================================================== RCS file: /cvs/pkgs/rpms/ksig/devel/ksig.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ksig.spec 25 Feb 2009 12:08:21 -0000 1.8 +++ ksig.spec 25 Jul 2009 04:49:25 -0000 1.9 @@ -5,7 +5,7 @@ Name: ksig Version: 1.1 -Release: 0.7.%{svn_date}%{?dist} +Release: 0.8.%{svn_date}%{?dist} Summary: A graphical application to manage multiple email signatures Group: Applications/Internet @@ -96,6 +96,9 @@ xdg-icon-resource forceupdate --theme hi %{_datadir}/applications/kde4/ksig.desktop %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-0.8.20080213 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-0.7.20080213 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:49:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:49:39 +0000 (UTC) Subject: rpms/ksplice/devel ksplice.spec,1.16,1.17 Message-ID: <20090725044939.7388A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ksplice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15693 Modified Files: ksplice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ksplice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ksplice/devel/ksplice.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ksplice.spec 1 Apr 2009 14:50:20 -0000 1.16 +++ ksplice.spec 25 Jul 2009 04:49:39 -0000 1.17 @@ -1,6 +1,6 @@ Name: ksplice Version: 0.9.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Patching a Linux kernel without reboot Group: System Environment/Kernel @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Jochen Schmitt 0.9.7-3 - Change from ExcludeArch to ExclusiveArch From jkeating at fedoraproject.org Sat Jul 25 04:49:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:49:53 +0000 (UTC) Subject: rpms/ksshaskpass/devel ksshaskpass.spec,1.10,1.11 Message-ID: <20090725044953.916D811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ksshaskpass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15867 Modified Files: ksshaskpass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ksshaskpass.spec =================================================================== RCS file: /cvs/pkgs/rpms/ksshaskpass/devel/ksshaskpass.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ksshaskpass.spec 30 Mar 2009 06:36:16 -0000 1.10 +++ ksshaskpass.spec 25 Jul 2009 04:49:53 -0000 1.11 @@ -1,6 +1,6 @@ Name: ksshaskpass Version: 0.5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A KDE version of ssh-askpass with KWallet support Group: Applications/Internet @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Aurelien Bompard 0.5.1-3 - fix bug 485009 - install the desktop file with desktop-file-install From jkeating at fedoraproject.org Sat Jul 25 04:50:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:50:07 +0000 (UTC) Subject: rpms/kstart/devel kstart.spec,1.3,1.4 Message-ID: <20090725045007.8870211C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16054 Modified Files: kstart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/kstart/devel/kstart.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- kstart.spec 25 Feb 2009 12:11:07 -0000 1.3 +++ kstart.spec 25 Jul 2009 04:50:07 -0000 1.4 @@ -1,6 +1,6 @@ Name: kstart Version: 3.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Daemon version of kinit for Kerberos v5 License: MIT Group: Applications/System @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{_mandir}/man1/krenew.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:50:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:50:21 +0000 (UTC) Subject: rpms/ktechlab/devel ktechlab.spec,1.25,1.26 Message-ID: <20090725045021.5823B11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ktechlab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16212 Modified Files: ktechlab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ktechlab.spec =================================================================== RCS file: /cvs/pkgs/rpms/ktechlab/devel/ktechlab.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- ktechlab.spec 5 Mar 2009 21:33:53 -0000 1.25 +++ ktechlab.spec 25 Jul 2009 04:50:21 -0000 1.26 @@ -1,6 +1,6 @@ Name: ktechlab Version: 0.3.70 -Release: 1.20090304svn%{?dist} +Release: 2.20090304svn%{?dist} # revision checkout 238 Summary: Development and simulation of microcontrollers and electronic circuits From whot at fedoraproject.org Sat Jul 25 04:50:28 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sat, 25 Jul 2009 04:50:28 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xorg-x11-server.spec,1.451,1.452 Message-ID: <20090725045028.97F7211C049E@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16239 Modified Files: xorg-x11-server.spec Log Message: * Sat Jul 25 2009 Peter Hutterer 1.6.99-17.20090724 - Bump release number. Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.451 retrieving revision 1.452 diff -u -p -r1.451 -r1.452 --- xorg-x11-server.spec 25 Jul 2009 04:48:06 -0000 1.451 +++ xorg-x11-server.spec 25 Jul 2009 04:50:28 -0000 1.452 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 16.%{gitdate}%{?dist} +Release: 17.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -523,6 +523,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Peter Hutterer 1.6.99-17.20090724 +- Bump release number. + * Fri Jul 24 2009 Peter Hutterer 1.6.99-16.20090724 - Today's git snapshot. From jkeating at fedoraproject.org Sat Jul 25 04:50:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:50:35 +0000 (UTC) Subject: rpms/ktorrent/devel ktorrent.spec,1.100,1.101 Message-ID: <20090725045035.67F4611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ktorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16372 Modified Files: ktorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ktorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/ktorrent/devel/ktorrent.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- ktorrent.spec 8 Jul 2009 01:49:54 -0000 1.100 +++ ktorrent.spec 25 Jul 2009 04:50:35 -0000 1.101 @@ -3,7 +3,7 @@ Name: ktorrent Version: 3.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A BitTorrent program Group: Applications/Internet License: GPLv2+ @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_appsdir}/cmake/modules/FindBTCore.cmake %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Rex Dieter - 3.2.2-3 - don't use internal flags (prefer those provided by kdebase-runtime-flags) From jkeating at fedoraproject.org Sat Jul 25 04:50:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:50:50 +0000 (UTC) Subject: rpms/kudzu/devel kudzu.spec,1.195,1.196 Message-ID: <20090725045050.727B111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kudzu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16586 Modified Files: kudzu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kudzu.spec =================================================================== RCS file: /cvs/pkgs/rpms/kudzu/devel/kudzu.spec,v retrieving revision 1.195 retrieving revision 1.196 diff -u -p -r1.195 -r1.196 --- kudzu.spec 18 Jun 2009 15:36:43 -0000 1.195 +++ kudzu.spec 25 Jul 2009 04:50:50 -0000 1.196 @@ -1,6 +1,6 @@ Name: kudzu Version: 1.2.86 -Release: 1 +Release: 2 License: GPLv2 Summary: The Red Hat Linux hardware probing tool. Group: Applications/System @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/kudzu %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.86-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Bill Nottingham 1.2.86-1 - assorted spec cleanups from merge review - remove loglevel stuff (#445561) From jkeating at fedoraproject.org Sat Jul 25 04:51:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:51:04 +0000 (UTC) Subject: rpms/kurdit-unikurd-web-fonts/devel kurdit-unikurd-web-fonts.spec, 1.2, 1.3 Message-ID: <20090725045104.B717F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kurdit-unikurd-web-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16747 Modified Files: kurdit-unikurd-web-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kurdit-unikurd-web-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/kurdit-unikurd-web-fonts/devel/kurdit-unikurd-web-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kurdit-unikurd-web-fonts.spec 25 Feb 2009 12:14:40 -0000 1.2 +++ kurdit-unikurd-web-fonts.spec 25 Jul 2009 04:51:04 -0000 1.3 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 20020502 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A widely used Kurdish font for Arabic-like scripts and Latin Group: User Interface/X @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20020502-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20020502-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:51:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:51:18 +0000 (UTC) Subject: rpms/kvirc/devel kvirc.spec,1.1,1.2 Message-ID: <20090725045118.701E811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kvirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16888 Modified Files: kvirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kvirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/kvirc/devel/kvirc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kvirc.spec 9 Apr 2009 23:43:28 -0000 1.1 +++ kvirc.spec 25 Jul 2009 04:51:18 -0000 1.2 @@ -2,7 +2,7 @@ Name: kvirc Version: 4.0.0 -Release: 0.6.%{pre}%{?dist} +Release: 0.7.%{pre}%{?dist} Summary: Free portable IRC client Group: Applications/Internet License: GPLv2+ with exceptions @@ -119,6 +119,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %exclude %{_datadir}/%{name}/4.0/doc/README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.0-0.7.20090409svn3173 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Alexey Kurov - 4.0.0-0.6.20090409svn3173 - svn snapshot 3173 - Summary changed to Free portable IRC client From jkeating at fedoraproject.org Sat Jul 25 04:51:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:51:32 +0000 (UTC) Subject: rpms/kvkbd/devel kvkbd.spec,1.1,1.2 Message-ID: <20090725045132.5CDEE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/kvkbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17030 Modified Files: kvkbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: kvkbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/kvkbd/devel/kvkbd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kvkbd.spec 11 Mar 2009 09:05:58 -0000 1.1 +++ kvkbd.spec 25 Jul 2009 04:51:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: kvkbd Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Virtual keyboard for KDE Group: Applications/System @@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_appsdir}/kvkbd/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Jaroslav Reznik - 0.6-1 - Initial package From jkeating at fedoraproject.org Sat Jul 25 04:51:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:51:45 +0000 (UTC) Subject: rpms/l2fprod-common/devel l2fprod-common.spec,1.1,1.2 Message-ID: <20090725045145.C9CD711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/l2fprod-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17207 Modified Files: l2fprod-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: l2fprod-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/l2fprod-common/devel/l2fprod-common.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- l2fprod-common.spec 7 May 2009 07:31:38 -0000 1.1 +++ l2fprod-common.spec 25 Jul 2009 04:51:45 -0000 1.2 @@ -3,7 +3,7 @@ Name: l2fprod-common Version: 7.3 -Release: 5.%{cvstag}%{?dist} +Release: 6.%{cvstag}%{?dist} Summary: In JavaSE missing Swing components, inspired from modern user interfaces Group: Development/Libraries License: ASL 2.0 @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 7.3-6.20090428cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Sandro Mathys - 7.3-5.20090428cvs - Finishing touch before importing into Fedora CVS. From mtruch at fedoraproject.org Sat Jul 25 04:52:00 2009 From: mtruch at fedoraproject.org (Matthew D Truch) Date: Sat, 25 Jul 2009 04:52:00 +0000 (UTC) Subject: rpms/kst/devel noautobuild,1.3,NONE Message-ID: <20090725045200.BC05711C0099@cvs1.fedora.phx.redhat.com> Author: mtruch Update of /cvs/extras/rpms/kst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17256 Removed Files: noautobuild Log Message: Already built for mass rebuild. --- noautobuild DELETED --- From jkeating at fedoraproject.org Sat Jul 25 04:51:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:51:59 +0000 (UTC) Subject: rpms/labrea/devel labrea.spec,1.2,1.3 Message-ID: <20090725045159.E6ADB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/labrea/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17374 Modified Files: labrea.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: labrea.spec =================================================================== RCS file: /cvs/pkgs/rpms/labrea/devel/labrea.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- labrea.spec 25 Feb 2009 12:16:27 -0000 1.2 +++ labrea.spec 25 Jul 2009 04:51:59 -0000 1.3 @@ -3,7 +3,7 @@ Name: labrea Version: 2.5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tarpit (slow to a crawl) worms and port scanners Group: Applications/Productivity License: GPLv2 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:52:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:52:13 +0000 (UTC) Subject: rpms/labyrinth/devel labyrinth.spec,1.7,1.8 Message-ID: <20090725045213.9E64511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/labyrinth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17535 Modified Files: labyrinth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: labyrinth.spec =================================================================== RCS file: /cvs/pkgs/rpms/labyrinth/devel/labyrinth.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- labyrinth.spec 25 Feb 2009 12:17:22 -0000 1.7 +++ labyrinth.spec 25 Jul 2009 04:52:13 -0000 1.8 @@ -3,7 +3,7 @@ Name: labyrinth Version: 0.4.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple yet powerful mind-mapping tool for the GNOME desktop Summary(es): Una aplicaci?n sencilla y poderosa para hacer mapas de mente @@ -99,6 +99,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:52:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:52:27 +0000 (UTC) Subject: rpms/lacewing/devel lacewing.spec,1.11,1.12 Message-ID: <20090725045227.B276B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lacewing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17704 Modified Files: lacewing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lacewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/lacewing/devel/lacewing.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- lacewing.spec 25 Feb 2009 12:18:19 -0000 1.11 +++ lacewing.spec 25 Jul 2009 04:52:27 -0000 1.12 @@ -1,6 +1,6 @@ Name: lacewing Version: 1.10 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Arcade-style shoot-em-up Group: Amusements/Games License: GPLv2+ @@ -83,6 +83,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/lacewing.png %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.10-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.10-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:52:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:52:43 +0000 (UTC) Subject: rpms/ladspa/devel ladspa.spec,1.20,1.21 Message-ID: <20090725045243.E2B9B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17876 Modified Files: ladspa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa/devel/ladspa.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ladspa.spec 22 Mar 2009 16:12:13 -0000 1.20 +++ ladspa.spec 25 Jul 2009 04:52:43 -0000 1.21 @@ -1,6 +1,6 @@ Name: ladspa Version: 1.13 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Linux Audio Developer's Simple Plug-in API, examples and tools @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Robert Scheck - 1.13-5 - Really added the plugindir patch now (thanks to Karsten Hopp) - Avoid the make errors because of mkdirhier better than until now From jkeating at fedoraproject.org Sat Jul 25 04:52:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:52:59 +0000 (UTC) Subject: rpms/ladspa-amb-plugins/devel ladspa-amb-plugins.spec,1.4,1.5 Message-ID: <20090725045259.056E011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-amb-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18014 Modified Files: ladspa-amb-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-amb-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-amb-plugins/devel/ladspa-amb-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ladspa-amb-plugins.spec 25 Feb 2009 12:20:05 -0000 1.4 +++ ladspa-amb-plugins.spec 25 Jul 2009 04:52:58 -0000 1.5 @@ -1,6 +1,6 @@ Name: ladspa-amb-plugins Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ambisonics LADSPA plugins License: GPLv2+ Group: Applications/Multimedia @@ -46,6 +46,9 @@ hexagon horizontal decoders. See the REA %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:53:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:53:21 +0000 (UTC) Subject: rpms/ladspa-blop-plugins/devel ladspa-blop-plugins.spec,1.4,1.5 Message-ID: <20090725045321.BD39311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-blop-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18193 Modified Files: ladspa-blop-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-blop-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-blop-plugins/devel/ladspa-blop-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ladspa-blop-plugins.spec 25 Feb 2009 12:20:59 -0000 1.4 +++ ladspa-blop-plugins.spec 25 Jul 2009 04:53:21 -0000 1.5 @@ -1,6 +1,6 @@ Name: ladspa-blop-plugins Version: 0.2.8 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Bandlimited LADSPA Oscillator Plugins License: GPLv2+ Group: Applications/Multimedia @@ -60,6 +60,9 @@ chmod -x src/lp4pole_filter.c src/includ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:53:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:53:36 +0000 (UTC) Subject: rpms/ladspa-caps-plugins/devel ladspa-caps-plugins.spec,1.6,1.7 Message-ID: <20090725045336.E954911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-caps-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18333 Modified Files: ladspa-caps-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-caps-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-caps-plugins/devel/ladspa-caps-plugins.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ladspa-caps-plugins.spec 25 Mar 2009 09:39:24 -0000 1.6 +++ ladspa-caps-plugins.spec 25 Jul 2009 04:53:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: ladspa-caps-plugins Version: 0.4.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The C* Audio Plugin Suite License: GPLv2+ Group: Applications/Multimedia @@ -51,6 +51,9 @@ equalization and others. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Hans de Goede 0.4.2-4 - Remove -ffast-math from CFLAGS, as it causes errors in the output (#491636) From jkeating at fedoraproject.org Sat Jul 25 04:53:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:53:51 +0000 (UTC) Subject: rpms/ladspa-cmt-plugins/devel ladspa-cmt-plugins.spec,1.4,1.5 Message-ID: <20090725045351.B92FF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-cmt-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18470 Modified Files: ladspa-cmt-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-cmt-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-cmt-plugins/devel/ladspa-cmt-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ladspa-cmt-plugins.spec 1 Apr 2009 19:15:50 -0000 1.4 +++ ladspa-cmt-plugins.spec 25 Jul 2009 04:53:51 -0000 1.5 @@ -1,6 +1,6 @@ Name: ladspa-cmt-plugins Version: 1.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of LADSPA plugins License: GPLv2+ Group: Applications/Multimedia @@ -60,6 +60,9 @@ would like to help out, please feel free %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Orcan Ogetbil - 1.16-1 - New upstream bugfix release From jkeating at fedoraproject.org Sat Jul 25 04:54:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:54:06 +0000 (UTC) Subject: rpms/ladspa-fil-plugins/devel ladspa-fil-plugins.spec,1.4,1.5 Message-ID: <20090725045406.9616C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-fil-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18620 Modified Files: ladspa-fil-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-fil-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-fil-plugins/devel/ladspa-fil-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ladspa-fil-plugins.spec 19 Jun 2009 02:31:45 -0000 1.4 +++ ladspa-fil-plugins.spec 25 Jul 2009 04:54:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: ladspa-fil-plugins Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Summary: LADSPA Filter plugins Group: Applications/Multimedia @@ -47,6 +47,9 @@ gain control. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Orcan Ogetbil - 0.3.0-1 - updated to 0.3.0 From jkeating at fedoraproject.org Sat Jul 25 04:54:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:54:20 +0000 (UTC) Subject: rpms/ladspa-mcp-plugins/devel ladspa-mcp-plugins.spec,1.4,1.5 Message-ID: <20090725045420.A25D611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-mcp-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18767 Modified Files: ladspa-mcp-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-mcp-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-mcp-plugins/devel/ladspa-mcp-plugins.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ladspa-mcp-plugins.spec 25 Feb 2009 12:24:45 -0000 1.4 +++ ladspa-mcp-plugins.spec 25 Jul 2009 04:54:20 -0000 1.5 @@ -1,7 +1,7 @@ Name: ladspa-mcp-plugins Epoch: 1 Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A set of audio plugins for LADSPA License: GPLv2+ Group: Applications/Multimedia @@ -46,6 +46,9 @@ rm ladspa.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:54:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:54:35 +0000 (UTC) Subject: rpms/ladspa-rev-plugins/devel ladspa-rev-plugins.spec,1.3,1.4 Message-ID: <20090725045435.CECE911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-rev-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18982 Modified Files: ladspa-rev-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-rev-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-rev-plugins/devel/ladspa-rev-plugins.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ladspa-rev-plugins.spec 25 Feb 2009 12:25:43 -0000 1.3 +++ ladspa-rev-plugins.spec 25 Jul 2009 04:54:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: ladspa-rev-plugins Version: 0.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A reverberation plugin for LADSPA License: GPLv2+ Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm ladspa.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:54:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:54:51 +0000 (UTC) Subject: rpms/ladspa-swh-plugins/devel ladspa-swh-plugins.spec,1.10,1.11 Message-ID: <20090725045451.4ADA911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-swh-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19310 Modified Files: ladspa-swh-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-swh-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-swh-plugins/devel/ladspa-swh-plugins.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ladspa-swh-plugins.spec 7 Apr 2009 15:31:29 -0000 1.10 +++ ladspa-swh-plugins.spec 25 Jul 2009 04:54:51 -0000 1.11 @@ -3,7 +3,7 @@ Summary: A set of audio plugins for LADSPA Name: ladspa-%{pkgname} Version: 0.4.15 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://plugin.org.uk/releases/0.4.15/swh-plugins-%{version}.tar.gz @@ -51,6 +51,9 @@ CFLAGS="$RPM_OPT_FLAGS -fPIC -DPIC" %con %{_datadir}/ladspa/rdf/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.15-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Tom "spot" Callaway - 0.4.15-15 - fix this package so it builds properly, with the right optflags, and without tons of missing symbols From jkeating at fedoraproject.org Sat Jul 25 04:55:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:55:06 +0000 (UTC) Subject: rpms/ladspa-tap-plugins/devel ladspa-tap-plugins.spec,1.3,1.4 Message-ID: <20090725045506.E9F5C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-tap-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19833 Modified Files: ladspa-tap-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-tap-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-tap-plugins/devel/ladspa-tap-plugins.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ladspa-tap-plugins.spec 25 Feb 2009 12:27:33 -0000 1.3 +++ ladspa-tap-plugins.spec 25 Jul 2009 04:55:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: ladspa-tap-plugins Version: 0.7.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tom's Audio Processing plugin License: GPLv2+ Group: Applications/Multimedia @@ -48,6 +48,9 @@ ln -s /usr/include/ladspa.h . %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:55:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:55:22 +0000 (UTC) Subject: rpms/ladspa-vco-plugins/devel ladspa-vco-plugins.spec,1.3,1.4 Message-ID: <20090725045522.173E511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladspa-vco-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20053 Modified Files: ladspa-vco-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladspa-vco-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladspa-vco-plugins/devel/ladspa-vco-plugins.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ladspa-vco-plugins.spec 25 Feb 2009 12:28:28 -0000 1.3 +++ ladspa-vco-plugins.spec 25 Jul 2009 04:55:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: ladspa-vco-plugins Version: 0.3.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Anti-aliased pulse and sawtooth oscillators License: GPLv2+ Group: Applications/Multimedia @@ -50,6 +50,9 @@ fundamental frequencies all known musica %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:55:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:55:38 +0000 (UTC) Subject: rpms/ladvd/devel ladvd.spec,1.3,1.4 Message-ID: <20090725045538.54DB511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ladvd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20226 Modified Files: ladvd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ladvd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ladvd/devel/ladvd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ladvd.spec 25 Feb 2009 12:29:23 -0000 1.3 +++ ladvd.spec 25 Jul 2009 04:55:38 -0000 1.4 @@ -9,7 +9,7 @@ Name: ladvd Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: CDP/LLDP sender for unix Group: Applications/Internet @@ -165,6 +165,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:55:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:55:53 +0000 (UTC) Subject: rpms/laf-plugin/devel laf-plugin.spec,1.2,1.3 Message-ID: <20090725045553.B614D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/laf-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20392 Modified Files: laf-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: laf-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/laf-plugin/devel/laf-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- laf-plugin.spec 25 Feb 2009 12:30:18 -0000 1.2 +++ laf-plugin.spec 25 Jul 2009 04:55:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: laf-plugin Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Generic plugin framework for Java look-and-feels Group: System Environment/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:56:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:56:09 +0000 (UTC) Subject: rpms/lagan/devel lagan.spec,1.9,1.10 Message-ID: <20090725045609.25AE911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lagan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20529 Modified Files: lagan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lagan.spec =================================================================== RCS file: /cvs/pkgs/rpms/lagan/devel/lagan.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lagan.spec 5 Jun 2009 16:44:44 -0000 1.9 +++ lagan.spec 25 Jul 2009 04:56:08 -0000 1.10 @@ -1,6 +1,6 @@ Name: lagan Version: 2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Local, global, and multiple alignment of DNA sequences Group: Applications/Engineering @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Christian Iseli - 2.0-5 - Add fix for getline() conflicting with stdio.h definition in new glibc From jkeating at fedoraproject.org Sat Jul 25 04:56:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:56:25 +0000 (UTC) Subject: rpms/lam/devel lam.spec,1.57,1.58 Message-ID: <20090725045625.5FAF811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20665 Modified Files: lam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lam.spec =================================================================== RCS file: /cvs/pkgs/rpms/lam/devel/lam.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- lam.spec 21 Jul 2009 18:08:20 -0000 1.57 +++ lam.spec 25 Jul 2009 04:56:25 -0000 1.58 @@ -1,7 +1,7 @@ Summary: The Local Area Multicomputer programming environment Name: lam Version: 7.1.4 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD Epoch: 2 Group: System Environment/Base @@ -205,6 +205,9 @@ fi %{mpidir}/man/man[23]/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:7.1.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Doug Ledford - 2:7.1.4-8 - Update module file - Fix Group listing (bz512542) From jkeating at fedoraproject.org Sat Jul 25 04:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:57:17 +0000 (UTC) Subject: rpms/lapack/devel lapack.spec,1.20,1.21 Message-ID: <20090725045717.1CEA211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lapack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21009 Modified Files: lapack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lapack.spec =================================================================== RCS file: /cvs/pkgs/rpms/lapack/devel/lapack.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- lapack.spec 25 Feb 2009 12:33:31 -0000 1.20 +++ lapack.spec 25 Jul 2009 04:57:16 -0000 1.21 @@ -1,7 +1,7 @@ Summary: The LAPACK libraries for numerical linear algebra. Name: lapack Version: 3.1.1 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Development/Libraries URL: http://www.netlib.org/lapack/ @@ -187,6 +187,9 @@ rm -fr ${RPM_BUILD_ROOT} %{_libdir}/libblas*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:57:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:57:32 +0000 (UTC) Subject: rpms/lash/devel lash.spec,1.23,1.24 Message-ID: <20090725045732.294C311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21150 Modified Files: lash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lash.spec =================================================================== RCS file: /cvs/pkgs/rpms/lash/devel/lash.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- lash.spec 14 Jul 2009 21:59:42 -0000 1.23 +++ lash.spec 25 Jul 2009 04:57:31 -0000 1.24 @@ -3,7 +3,7 @@ Summary: LASH Audio Session Handler Name: lash Version: 0.5.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.nongnu.org/lash/ @@ -171,6 +171,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitearch}/lash.py* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Orcan Ogetbil - 0.5.4-6 - Build against libuuid on F-12 (e2fsprogs got split up) From jkeating at fedoraproject.org Sat Jul 25 04:57:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:57:47 +0000 (UTC) Subject: rpms/lasi/devel lasi.spec,1.7,1.8 Message-ID: <20090725045747.F343911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lasi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21298 Modified Files: lasi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lasi.spec =================================================================== RCS file: /cvs/pkgs/rpms/lasi/devel/lasi.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lasi.spec 15 Jul 2009 15:19:26 -0000 1.7 +++ lasi.spec 25 Jul 2009 04:57:47 -0000 1.8 @@ -1,6 +1,6 @@ Name: lasi Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ library for creating Postscript documents Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 - Orion Poplawski - 1.1.0-5 - Fix font BR From jkeating at fedoraproject.org Sat Jul 25 04:58:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:58:03 +0000 (UTC) Subject: rpms/lat/devel lat.spec,1.23,1.24 Message-ID: <20090725045803.F20D311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21450 Modified Files: lat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lat.spec =================================================================== RCS file: /cvs/pkgs/rpms/lat/devel/lat.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- lat.spec 30 May 2009 08:02:51 -0000 1.23 +++ lat.spec 25 Jul 2009 04:58:03 -0000 1.24 @@ -1,7 +1,7 @@ Name: lat Summary: LDAP Administration Tool Version: 1.2.3 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/Productivity Url: http://sourceforge.net/projects/ldap-at/ @@ -116,6 +116,9 @@ The lat-devel package contains the files %{_libdir}/pkgconfig/lat-plugins.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien - 1.2.3-7 - Build arch ppc64 now that mono stack is available for that arch (#241911) From jkeating at fedoraproject.org Sat Jul 25 04:58:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:58:19 +0000 (UTC) Subject: rpms/latencytop/devel latencytop.spec,1.7,1.8 Message-ID: <20090725045819.157EE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latencytop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21585 Modified Files: latencytop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latencytop.spec =================================================================== RCS file: /cvs/pkgs/rpms/latencytop/devel/latencytop.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- latencytop.spec 17 May 2009 20:16:07 -0000 1.7 +++ latencytop.spec 25 Jul 2009 04:58:18 -0000 1.8 @@ -1,6 +1,6 @@ Name: latencytop Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: System latency monitor Group: Applications/System @@ -46,6 +46,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Michal Schmidt 0.5-1 - Upstream release 0.5, adds GTK based GUI. From jkeating at fedoraproject.org Sat Jul 25 04:58:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:58:34 +0000 (UTC) Subject: rpms/latex-mk/devel latex-mk.spec,1.3,1.4 Message-ID: <20090725045834.01BEA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latex-mk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21734 Modified Files: latex-mk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latex-mk.spec =================================================================== RCS file: /cvs/pkgs/rpms/latex-mk/devel/latex-mk.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- latex-mk.spec 25 Feb 2009 12:38:11 -0000 1.3 +++ latex-mk.spec 25 Jul 2009 04:58:33 -0000 1.4 @@ -1,6 +1,6 @@ Name: latex-mk Version: 1.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Makefile fragments and shell scripts for latex Group: Applications/Text @@ -72,6 +72,9 @@ fi %{_infodir}/latex-mk.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:58:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:58:49 +0000 (UTC) Subject: rpms/latex2emf/devel latex2emf.spec,1.3,1.4 Message-ID: <20090725045849.E1C5211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latex2emf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21890 Modified Files: latex2emf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latex2emf.spec =================================================================== RCS file: /cvs/pkgs/rpms/latex2emf/devel/latex2emf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- latex2emf.spec 25 Feb 2009 12:39:11 -0000 1.3 +++ latex2emf.spec 25 Jul 2009 04:58:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: latex2emf Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Create an EMF file from LaTeX source Group: Applications/Productivity @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:59:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:59:04 +0000 (UTC) Subject: rpms/latex2html/devel latex2html.spec,1.12,1.13 Message-ID: <20090725045904.C698311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latex2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22039 Modified Files: latex2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latex2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/latex2html/devel/latex2html.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- latex2html.spec 25 Feb 2009 12:40:09 -0000 1.12 +++ latex2html.spec 25 Jul 2009 04:59:04 -0000 1.13 @@ -3,7 +3,7 @@ Summary: Converts LaTeX documents to HTML Name: latex2html Version: 2008 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Publishing URL: http://www.latex2html.org/ @@ -219,6 +219,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/pstoimg.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2008-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2008-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:59:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:59:18 +0000 (UTC) Subject: rpms/latex2rtf/devel latex2rtf.spec,1.5,1.6 Message-ID: <20090725045918.C10D211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latex2rtf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22205 Modified Files: latex2rtf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latex2rtf.spec =================================================================== RCS file: /cvs/pkgs/rpms/latex2rtf/devel/latex2rtf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- latex2rtf.spec 27 Apr 2009 10:39:46 -0000 1.5 +++ latex2rtf.spec 25 Jul 2009 04:59:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: latex2rtf Version: 1.9.19 -Release: 8%{?dist} +Release: 9%{?dist} Summary: LaTeX to RTF converter that handles equations, figures, and cross-references Group: Applications/File License: GPLv2+ @@ -84,6 +84,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.19-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jussi Lehtola - 1.9.19-8 - Added patch to fix image height on 64-bit architectures. https://bugzilla.redhat.com/show_bug.cgi?id=497752 From jkeating at fedoraproject.org Sat Jul 25 04:59:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:59:32 +0000 (UTC) Subject: rpms/latexdiff/devel latexdiff.spec,1.2,1.3 Message-ID: <20090725045932.15FEF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latexdiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22373 Modified Files: latexdiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latexdiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/latexdiff/devel/latexdiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- latexdiff.spec 25 Feb 2009 12:41:09 -0000 1.2 +++ latexdiff.spec 25 Jul 2009 04:59:31 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Determine and mark up significant differences between latex files Name: latexdiff Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=latexdiff Source: http://tug.ctan.org/cgi-bin/getFile.py?fn=/systems/win32/miktex/tm/packages/latexdiff.tar.bz2 License: GPLv2 @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man1/latexrevise.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 04:59:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 04:59:47 +0000 (UTC) Subject: rpms/latexmk/devel latexmk.spec,1.11,1.12 Message-ID: <20090725045947.093FB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/latexmk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22498 Modified Files: latexmk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: latexmk.spec =================================================================== RCS file: /cvs/pkgs/rpms/latexmk/devel/latexmk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- latexmk.spec 1 Jun 2009 15:44:26 -0000 1.11 +++ latexmk.spec 25 Jul 2009 04:59:46 -0000 1.12 @@ -1,6 +1,6 @@ Name: latexmk Version: 4.07 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A make-like utility for LaTeX files Group: Applications/Publishing @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %doc CHANGES COPYING INSTALL README README.fedora extra-scripts %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Jerry James - 4.07-1 - Update to 4.07 to correct problem with exiting from preview-continuous mode. From jkeating at fedoraproject.org Sat Jul 25 05:00:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:00:02 +0000 (UTC) Subject: rpms/lazarus/devel lazarus.spec,1.8,1.9 Message-ID: <20090725050002.46B3911C04E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lazarus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22646 Modified Files: lazarus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lazarus.spec =================================================================== RCS file: /cvs/pkgs/rpms/lazarus/devel/lazarus.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lazarus.spec 18 Jun 2009 12:49:38 -0000 1.8 +++ lazarus.spec 25 Jul 2009 05:00:01 -0000 1.9 @@ -1,6 +1,6 @@ Name: lazarus Version: 0.9.26.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lazarus Component Library and IDE for Freepascal Group: Development/Languages @@ -101,6 +101,9 @@ update-mime-database %{_datadir}/mime &> %{_mandir}/*/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.26.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Dan Horak 0.9.26.2-3 - Exclude s390/s390x architectures, FPC doesn't exist there From jkeating at fedoraproject.org Sat Jul 25 05:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:00:22 +0000 (UTC) Subject: rpms/lazygal/devel lazygal.spec,1.1,1.2 Message-ID: <20090725050022.1D36B11C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lazygal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22848 Modified Files: lazygal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lazygal.spec =================================================================== RCS file: /cvs/pkgs/rpms/lazygal/devel/lazygal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lazygal.spec 14 Jun 2009 22:28:53 -0000 1.1 +++ lazygal.spec 25 Jul 2009 05:00:21 -0000 1.2 @@ -2,7 +2,7 @@ Name: lazygal Version: 0.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A static web gallery generator Group: Applications/Multimedia @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 8 2009 Byron Clark 0.4.1-3 - Use python-devel in place of python for BuildRequires. - Add TODO and ChangeLog to docs. From jkeating at fedoraproject.org Sat Jul 25 05:00:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:00:36 +0000 (UTC) Subject: rpms/lbrickbuster2/devel lbrickbuster2.spec,1.2,1.3 Message-ID: <20090725050036.9514511C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lbrickbuster2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22995 Modified Files: lbrickbuster2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lbrickbuster2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lbrickbuster2/devel/lbrickbuster2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lbrickbuster2.spec 25 Feb 2009 12:44:05 -0000 1.2 +++ lbrickbuster2.spec 25 Jul 2009 05:00:36 -0000 1.3 @@ -5,7 +5,7 @@ Name: lbrickbuster2 Version: 2.6 -Release: 0.10.%{_prever}%{?dist} +Release: 0.11.%{_prever}%{?dist} Summary: Brickbuster arcade game License: GPLv2+ Group: Amusements/Games @@ -117,6 +117,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6-0.11.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6-0.10.beta7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:00:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:00:52 +0000 (UTC) Subject: rpms/lcdf-typetools/devel lcdf-typetools.spec,1.9,1.10 Message-ID: <20090725050052.489EE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lcdf-typetools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23155 Modified Files: lcdf-typetools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lcdf-typetools.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcdf-typetools/devel/lcdf-typetools.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lcdf-typetools.spec 13 Jul 2009 08:58:33 -0000 1.9 +++ lcdf-typetools.spec 25 Jul 2009 05:00:52 -0000 1.10 @@ -1,6 +1,6 @@ Name: lcdf-typetools Version: 2.79 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for manipulating OpenType fonts Group: User Interface/X License: GPLv2+ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/lcdf-typetools %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.79-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Parag Nemade - 2.79-1 - Update to next upstream release 2.79 From jkeating at fedoraproject.org Sat Jul 25 05:01:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:01:07 +0000 (UTC) Subject: rpms/lcdproc/devel lcdproc.spec,1.17,1.18 Message-ID: <20090725050107.BC61311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lcdproc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23308 Modified Files: lcdproc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lcdproc.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcdproc/devel/lcdproc.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- lcdproc.spec 25 Jun 2009 18:43:00 -0000 1.17 +++ lcdproc.spec 25 Jul 2009 05:01:07 -0000 1.18 @@ -1,7 +1,7 @@ Summary: LCDproc displays real-time system information on a 20x4 backlit LCD Name: lcdproc Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: http://lcdproc.omnipotent.net Group: System Environment/Libraries @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT __doc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Jarod Wilson - 0.5.3-2 - Fix broken LCDd initscript patch that prevented it from starting From jkeating at fedoraproject.org Sat Jul 25 05:01:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:01:23 +0000 (UTC) Subject: rpms/lcms/devel lcms.spec,1.26,1.27 Message-ID: <20090725050123.D300311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lcms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23501 Modified Files: lcms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lcms.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcms/devel/lcms.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- lcms.spec 21 Apr 2009 23:28:19 -0000 1.26 +++ lcms.spec 25 Jul 2009 05:01:23 -0000 1.27 @@ -2,7 +2,7 @@ Name: lcms Version: 1.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Color Management System Group: Applications/Productivity @@ -128,6 +128,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 22 2009 kwizart < kwizart at gmail.com > - 1.18-2 - Add lcms-CVE-2009-0793.patch from 1.18a From jkeating at fedoraproject.org Sat Jul 25 05:01:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:01:38 +0000 (UTC) Subject: rpms/lcov/devel lcov.spec,1.5,1.6 Message-ID: <20090725050138.D6FBC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lcov/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23652 Modified Files: lcov.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lcov.spec =================================================================== RCS file: /cvs/pkgs/rpms/lcov/devel/lcov.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lcov.spec 25 Feb 2009 12:47:05 -0000 1.5 +++ lcov.spec 25 Jul 2009 05:01:38 -0000 1.6 @@ -1,6 +1,6 @@ Name: lcov Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: LTP GCOV extension code coverage tool Group: Development/Tools @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/lcovrc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:01:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:01:53 +0000 (UTC) Subject: rpms/ldapjdk/devel ldapjdk.spec,1.17,1.18 Message-ID: <20090725050153.AB00B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldapjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23817 Modified Files: ldapjdk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldapjdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldapjdk/devel/ldapjdk.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ldapjdk.spec 20 Mar 2009 20:56:37 -0000 1.17 +++ ldapjdk.spec 25 Jul 2009 05:01:53 -0000 1.18 @@ -9,7 +9,7 @@ Name: ldapjdk Version: 4.18 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 0 Summary: The Mozilla LDAP Java SDK License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -142,6 +142,9 @@ fi %{_javadocdir}/%{name}-%{version}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0:4.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Deepak Bhole - 0:4.18-4 - RPM was using pre-built jars before. Fixed that problem. From jkeating at fedoraproject.org Sat Jul 25 05:02:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:02:12 +0000 (UTC) Subject: rpms/ldapvi/devel ldapvi.spec,1.8,1.9 Message-ID: <20090725050212.15AA711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldapvi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23985 Modified Files: ldapvi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldapvi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldapvi/devel/ldapvi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ldapvi.spec 25 Feb 2009 12:49:08 -0000 1.8 +++ ldapvi.spec 25 Jul 2009 05:02:11 -0000 1.9 @@ -1,6 +1,6 @@ Name: ldapvi Version: 1.7 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An interactive LDAP client Group: Applications/Editors @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:02:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:02:27 +0000 (UTC) Subject: rpms/ldd-pdf/devel ldd-pdf.spec,1.2,1.3 Message-ID: <20090725050227.89F4C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldd-pdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24158 Modified Files: ldd-pdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldd-pdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldd-pdf/devel/ldd-pdf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ldd-pdf.spec 2 Jul 2009 14:03:40 -0000 1.2 +++ ldd-pdf.spec 25 Jul 2009 05:02:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: ldd-pdf Version: 3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Linux Device Drivers, Third Edition Book in PDF format Group: Documentation License: CC-BY-SA @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Steven Fernandez 3.0-3 - Added the dist tag From jkeating at fedoraproject.org Sat Jul 25 05:02:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:02:42 +0000 (UTC) Subject: rpms/ldm/devel ldm.spec,1.23,1.24 Message-ID: <20090725050242.EC13211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24300 Modified Files: ldm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldm/devel/ldm.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- ldm.spec 20 Apr 2009 20:58:13 -0000 1.23 +++ ldm.spec 25 Jul 2009 05:02:42 -0000 1.24 @@ -2,7 +2,7 @@ Name: ldm Version: 2.0.33 %define _datestamp .20090127.13 #Release: 1%{_datestamp}%{?dist} -Release: 3%{?dist} +Release: 4%{?dist} Summary: LTSP Display Manager Group: User Interface/X @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/ltsp/ldm-global-dmrc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.33-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Ville Skytt? - 2.0.33-3 - Build using $RPM_OPT_FLAGS. - Build with dependency tracking disabled for possible speedup and cleaner logs. From jkeating at fedoraproject.org Sat Jul 25 05:02:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:02:58 +0000 (UTC) Subject: rpms/ldns/devel ldns.spec,1.46,1.47 Message-ID: <20090725050258.0248111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24433 Modified Files: ldns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldns.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldns/devel/ldns.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- ldns.spec 13 Jul 2009 20:34:47 -0000 1.46 +++ ldns.spec 25 Jul 2009 05:02:57 -0000 1.47 @@ -1,7 +1,7 @@ Summary: Lowlevel DNS(SEC) library with API Name: ldns Version: 1.6.0 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}-%{version}.tar.gz @@ -90,6 +90,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Paul Wouters - 1.6.0-4 - Fixed the ssl patch so it can now compile --without-ssl From jkeating at fedoraproject.org Sat Jul 25 05:03:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:03:13 +0000 (UTC) Subject: rpms/ldtp/devel ldtp.spec,1.3,1.4 Message-ID: <20090725050313.D607811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ldtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24619 Modified Files: ldtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ldtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ldtp/devel/ldtp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ldtp.spec 25 Feb 2009 12:51:58 -0000 1.3 +++ ldtp.spec 25 Jul 2009 05:03:13 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Desktop testing framework Name: ldtp Version: 1.3.0 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: User Interface/X URL: http://ldtp.freedesktop.org/wiki/ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/ldtplib/*.py* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:03:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:03:29 +0000 (UTC) Subject: rpms/leafnode/devel leafnode.spec,1.19,1.20 Message-ID: <20090725050329.C155011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/leafnode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24785 Modified Files: leafnode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: leafnode.spec =================================================================== RCS file: /cvs/pkgs/rpms/leafnode/devel/leafnode.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- leafnode.spec 7 Jul 2009 02:52:24 -0000 1.19 +++ leafnode.spec 25 Jul 2009 05:03:29 -0000 1.20 @@ -1,6 +1,6 @@ Name: leafnode Version: 1.11.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Leaf site offline NNTP server License: MIT and LGPLv2 @@ -103,6 +103,9 @@ exit 0 rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.11.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Kevin Fenzi - 1.11.7-3 - Enable ipv6 support From jkeating at fedoraproject.org Sat Jul 25 05:03:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:03:46 +0000 (UTC) Subject: rpms/leafpad/devel leafpad.spec,1.27,1.28 Message-ID: <20090725050346.E2C9411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/leafpad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24945 Modified Files: leafpad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: leafpad.spec =================================================================== RCS file: /cvs/pkgs/rpms/leafpad/devel/leafpad.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- leafpad.spec 25 Feb 2009 12:53:49 -0000 1.27 +++ leafpad.spec 25 Jul 2009 05:03:46 -0000 1.28 @@ -1,6 +1,6 @@ Name: leafpad Version: 0.8.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK+ based simple text editor @@ -63,6 +63,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/pixmaps/leafpad.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:04:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:04:01 +0000 (UTC) Subject: rpms/lekhonee/devel lekhonee.spec,1.7,1.8 Message-ID: <20090725050401.8EDD511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lekhonee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25128 Modified Files: lekhonee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lekhonee.spec =================================================================== RCS file: /cvs/pkgs/rpms/lekhonee/devel/lekhonee.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lekhonee.spec 23 Jul 2009 05:50:30 -0000 1.7 +++ lekhonee.spec 25 Jul 2009 05:04:01 -0000 1.8 @@ -2,7 +2,7 @@ Name: lekhonee Version: 0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A blog client Group: Applications/Internet @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Kushal Das 0.7-1 - New release From jkeating at fedoraproject.org Sat Jul 25 05:04:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:04:14 +0000 (UTC) Subject: rpms/lensfun/devel lensfun.spec,1.3,1.4 Message-ID: <20090725050414.528ED11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lensfun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25282 Modified Files: lensfun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lensfun.spec =================================================================== RCS file: /cvs/pkgs/rpms/lensfun/devel/lensfun.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lensfun.spec 25 Feb 2009 12:54:51 -0000 1.3 +++ lensfun.spec 25 Jul 2009 05:04:14 -0000 1.4 @@ -4,7 +4,7 @@ Name: lensfun Version: 0.2.3 Summary: A library to rectify the defects introduced by your photographic equipment -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv3 Group: System Environment/Libraries URL: http://lensfun.berlios.de/ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:04:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:04:27 +0000 (UTC) Subject: rpms/leonidas-backgrounds/devel leonidas-backgrounds.spec,1.6,1.7 Message-ID: <20090725050427.6DDA611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/leonidas-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25432 Modified Files: leonidas-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: leonidas-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/leonidas-backgrounds/devel/leonidas-backgrounds.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- leonidas-backgrounds.spec 24 Jul 2009 01:12:16 -0000 1.6 +++ leonidas-backgrounds.spec 25 Jul 2009 05:04:27 -0000 1.7 @@ -1,6 +1,6 @@ Name: leonidas-backgrounds Version: 11.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Leonidas desktop backgrounds Group: Applications/Multimedia @@ -195,6 +195,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/backgrounds/leonidas/leonidas_right.xml %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 09 2009 Martin Sourada - 11.0.0-1 - Include the lion design optionally on single screens as well via -lion subpackage From jkeating at fedoraproject.org Sat Jul 25 05:04:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:04:41 +0000 (UTC) Subject: rpms/leonidas-kde-theme/devel leonidas-kde-theme.spec,1.4,1.5 Message-ID: <20090725050441.5CBA511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/leonidas-kde-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25594 Modified Files: leonidas-kde-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: leonidas-kde-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/leonidas-kde-theme/devel/leonidas-kde-theme.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- leonidas-kde-theme.spec 12 May 2009 13:51:44 -0000 1.4 +++ leonidas-kde-theme.spec 25 Jul 2009 05:04:41 -0000 1.5 @@ -1,6 +1,6 @@ Name: leonidas-kde-theme Version: 11.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Leonidas KDE Theme Group: User Interface/Desktops @@ -206,6 +206,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 11.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Jaroslav Reznik 11.0.1-1 - reenable icon labels From jkeating at fedoraproject.org Sat Jul 25 05:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:05:09 +0000 (UTC) Subject: rpms/less/devel less.spec,1.57,1.58 Message-ID: <20090725050509.C282211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/less/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25831 Modified Files: less.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: less.spec =================================================================== RCS file: /cvs/pkgs/rpms/less/devel/less.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- less.spec 10 Jul 2009 07:32:27 -0000 1.57 +++ less.spec 25 Jul 2009 05:05:09 -0000 1.58 @@ -1,7 +1,7 @@ Summary: A text file browser similar to more, but better Name: less Version: 436 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Text Source: http://www.greenwoodsoftware.com/less/%{name}-%{version}.tar.gz @@ -63,6 +63,9 @@ ls -la $RPM_BUILD_ROOT/etc/profile.d rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 436-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 10 2009 Zdenek Prikryl - 436-1 - Foption patch is more optimal now - Update to 436 From jkeating at fedoraproject.org Sat Jul 25 05:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:05:23 +0000 (UTC) Subject: rpms/lesstif/devel lesstif.spec,1.26,1.27 Message-ID: <20090725050523.9939B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lesstif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25991 Modified Files: lesstif.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lesstif.spec =================================================================== RCS file: /cvs/pkgs/rpms/lesstif/devel/lesstif.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- lesstif.spec 25 Feb 2009 12:56:47 -0000 1.26 +++ lesstif.spec 25 Jul 2009 05:05:23 -0000 1.27 @@ -1,7 +1,7 @@ Summary: OSF/Motif library clone Name: lesstif Version: 0.95.0 -Release: 28%{?dist} +Release: 29%{?dist} License: LGPLv2+ # in Xm-2.1/ # some files are MIT @@ -318,6 +318,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.95.0-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.95.0-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:05:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:05:37 +0000 (UTC) Subject: rpms/levien-inconsolata-fonts/devel levien-inconsolata-fonts.spec, 1.3, 1.4 Message-ID: <20090725050537.8DB3011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/levien-inconsolata-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26138 Modified Files: levien-inconsolata-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: levien-inconsolata-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/levien-inconsolata-fonts/devel/levien-inconsolata-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- levien-inconsolata-fonts.spec 15 Mar 2009 18:29:47 -0000 1.3 +++ levien-inconsolata-fonts.spec 25 Jul 2009 05:05:37 -0000 1.4 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Inconsolata fonts Group: User Interface/X @@ -59,6 +59,9 @@ rm -fr %{buildroot} %doc *.pdf %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 1.01-3 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Sat Jul 25 05:05:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:05:52 +0000 (UTC) Subject: rpms/lftp/devel lftp.spec,1.81,1.82 Message-ID: <20090725050552.D330F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26297 Modified Files: lftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/lftp/devel/lftp.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- lftp.spec 20 Jul 2009 17:24:40 -0000 1.81 +++ lftp.spec 25 Jul 2009 05:05:52 -0000 1.82 @@ -1,7 +1,7 @@ Summary: A sophisticated file transfer program Name: lftp Version: 3.7.14 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Internet Source0: ftp://ftp.yar.ru/lftp/lftp-%{version}.tar.gz @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Adam Jackson 3.7.14-4 - Split utility scripts to subpackage to isolate perl dependency. (#510813) From jkeating at fedoraproject.org Sat Jul 25 05:06:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:06:07 +0000 (UTC) Subject: rpms/lib3ds/devel lib3ds.spec,1.22,1.23 Message-ID: <20090725050607.A17D011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lib3ds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26443 Modified Files: lib3ds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lib3ds.spec =================================================================== RCS file: /cvs/pkgs/rpms/lib3ds/devel/lib3ds.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lib3ds.spec 25 Feb 2009 12:58:32 -0000 1.22 +++ lib3ds.spec 25 Jul 2009 05:06:07 -0000 1.23 @@ -1,6 +1,6 @@ Name: lib3ds Version: 1.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 3D Studio file format library @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:06:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:06:24 +0000 (UTC) Subject: rpms/lib765/devel lib765.spec,1.12,1.13 Message-ID: <20090725050624.315A811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lib765/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26588 Modified Files: lib765.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lib765.spec =================================================================== RCS file: /cvs/pkgs/rpms/lib765/devel/lib765.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- lib765.spec 25 Feb 2009 12:59:29 -0000 1.12 +++ lib765.spec 25 Jul 2009 05:06:23 -0000 1.13 @@ -1,6 +1,6 @@ Name: lib765 Version: 0.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A library for emulating the uPD765a floppy controller Group: System Environment/Libraries License: LGPLv2+ @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:06:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:06:39 +0000 (UTC) Subject: rpms/libAfterImage/devel libAfterImage.spec,1.15,1.16 Message-ID: <20090725050639.BF1A911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libAfterImage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26745 Modified Files: libAfterImage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libAfterImage.spec =================================================================== RCS file: /cvs/pkgs/rpms/libAfterImage/devel/libAfterImage.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libAfterImage.spec 25 Feb 2009 13:00:27 -0000 1.15 +++ libAfterImage.spec 25 Jul 2009 05:06:39 -0000 1.16 @@ -1,6 +1,6 @@ Name: libAfterImage Version: 1.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A generic image manipulation library Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.18-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:06:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:06:56 +0000 (UTC) Subject: rpms/libEMF/devel libEMF.spec,1.7,1.8 Message-ID: <20090725050656.16E8911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libEMF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26900 Modified Files: libEMF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libEMF.spec =================================================================== RCS file: /cvs/pkgs/rpms/libEMF/devel/libEMF.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libEMF.spec 3 Jun 2009 13:49:57 -0000 1.7 +++ libEMF.spec 25 Jul 2009 05:06:55 -0000 1.8 @@ -2,7 +2,7 @@ Summary: A library for generating Enhanc Summary(pl): Biblioteka do generowania plik?w w formacie Enhanced Metafile Name: libEMF Version: 1.0.3 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ and GPLv2+ Group: System Environment/Libraries Source0: http://dl.sourceforge.net/pstoedit/%{name}-%{version}.tar.gz @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libEMF %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Dan Horak - 1.0.3-9 - add support for s390/s390x From jkeating at fedoraproject.org Sat Jul 25 05:07:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:07:13 +0000 (UTC) Subject: rpms/libFS/devel libFS.spec,1.33,1.34 Message-ID: <20090725050713.B9FD211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libFS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27054 Modified Files: libFS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libFS.spec =================================================================== RCS file: /cvs/pkgs/rpms/libFS/devel/libFS.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libFS.spec 23 Jul 2009 14:21:15 -0000 1.33 +++ libFS.spec 25 Jul 2009 05:07:13 -0000 1.34 @@ -1,7 +1,7 @@ Summary: X.Org X11 libFS runtime library Name: libFS Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libfs.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.1-4 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:07:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:07:29 +0000 (UTC) Subject: rpms/libFoundation/devel libFoundation.spec,1.5,1.6 Message-ID: <20090725050729.CC95011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libFoundation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27220 Modified Files: libFoundation.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libFoundation.spec =================================================================== RCS file: /cvs/pkgs/rpms/libFoundation/devel/libFoundation.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libFoundation.spec 25 Feb 2009 13:03:10 -0000 1.5 +++ libFoundation.spec 25 Jul 2009 05:07:29 -0000 1.6 @@ -1,7 +1,7 @@ Summary: A free implementation of OpenStep's Foundation Kit Name: libFoundation Version: 1.1.3 -Release: 14%{?dist} +Release: 15%{?dist} License: MIT Group: Development/Libraries URL: http://www.opengroupware.org/ @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_libdir}/libFoundation.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.3-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:07:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:07:44 +0000 (UTC) Subject: rpms/libHX/devel libHX.spec,1.16,1.17 Message-ID: <20090725050744.C894611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libHX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27357 Modified Files: libHX.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libHX.spec =================================================================== RCS file: /cvs/pkgs/rpms/libHX/devel/libHX.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libHX.spec 2 Jul 2009 20:48:25 -0000 1.16 +++ libHX.spec 25 Jul 2009 05:07:44 -0000 1.17 @@ -1,6 +1,6 @@ Name: libHX Version: 2.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: General-purpose library for typical low-level operations Group: System Environment/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Till Maas - 2.8-1 - Update to new release - Define docdir for %%configure, because of installed PDF documentation From jkeating at fedoraproject.org Sat Jul 25 05:07:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:07:59 +0000 (UTC) Subject: rpms/libICE/devel libICE.spec,1.29,1.30 Message-ID: <20090725050759.BC33511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libICE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27503 Modified Files: libICE.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libICE.spec =================================================================== RCS file: /cvs/pkgs/rpms/libICE/devel/libICE.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libICE.spec 23 Jul 2009 13:05:57 -0000 1.29 +++ libICE.spec 25 Jul 2009 05:07:59 -0000 1.30 @@ -1,7 +1,7 @@ Summary: X.Org X11 ICE runtime library Name: libICE Version: 1.0.4 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ice.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-8 - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:08:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:08:14 +0000 (UTC) Subject: rpms/libIDL/devel libIDL.spec,1.38,1.39 Message-ID: <20090725050814.EE94F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libIDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27635 Modified Files: libIDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libIDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/libIDL/devel/libIDL.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- libIDL.spec 17 Mar 2009 15:19:17 -0000 1.38 +++ libIDL.spec 25 Jul 2009 05:08:14 -0000 1.39 @@ -1,7 +1,7 @@ Summary: Library for parsing IDL (Interface Definition Language) Name: libIDL Version: 0.8.13 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://download.gnome.org/sources/libIDL/0.8/%{name}-%{version}.tar.bz2 Patch0: libIDL-0.8.6-multilib.patch Group: System Environment/Libraries @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_infodir}/libIDL2.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 0.8.13-1 - Update to 0.8.13 From jkeating at fedoraproject.org Sat Jul 25 05:08:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:08:29 +0000 (UTC) Subject: rpms/libQGLViewer/devel libQGLViewer.spec,1.4,1.5 Message-ID: <20090725050829.E573511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libQGLViewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27779 Modified Files: libQGLViewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libQGLViewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/libQGLViewer/devel/libQGLViewer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libQGLViewer.spec 24 Jun 2009 09:51:43 -0000 1.4 +++ libQGLViewer.spec 25 Jul 2009 05:08:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: libQGLViewer Version: 2.3.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Qt based OpenGL generic 3D viewer library Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %doc examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Laurent Rineau - 2.3.1-9 - noarch -doc subpackage. From jkeating at fedoraproject.org Sat Jul 25 05:08:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:08:42 +0000 (UTC) Subject: rpms/libSM/devel libSM.spec,1.27,1.28 Message-ID: <20090725050842.59DD711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libSM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27910 Modified Files: libSM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libSM.spec =================================================================== RCS file: /cvs/pkgs/rpms/libSM/devel/libSM.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libSM.spec 23 Jul 2009 13:07:03 -0000 1.27 +++ libSM.spec 25 Jul 2009 05:08:42 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 SM runtime library Name: libSM Version: 1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/sm.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.1.0-6 - Un-require xorg-x11-filesystem, it's going away. From jkeating at fedoraproject.org Sat Jul 25 05:08:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:08:56 +0000 (UTC) Subject: rpms/libUnihan/devel libUnihan.spec,1.8,1.9 Message-ID: <20090725050856.A258311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libUnihan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28046 Modified Files: libUnihan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libUnihan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libUnihan/devel/libUnihan.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libUnihan.spec 25 Feb 2009 13:07:31 -0000 1.8 +++ libUnihan.spec 25 Jul 2009 05:08:56 -0000 1.9 @@ -5,7 +5,7 @@ Name: libUnihan %define libUnihan_ver_major 0 %define libUnihan_ver_minor 5 Version: %{libUnihan_ver_major}.%{libUnihan_ver_minor}.3 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries License: LGPLv2+ Summary: C library for Unihan character database in fifth normal form @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:09:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:09:10 +0000 (UTC) Subject: rpms/libX11/devel libX11.spec,1.63,1.64 Message-ID: <20090725050910.6B0C711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libX11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28183 Modified Files: libX11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libX11.spec =================================================================== RCS file: /cvs/pkgs/rpms/libX11/devel/libX11.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- libX11.spec 23 Jul 2009 13:27:54 -0000 1.63 +++ libX11.spec 25 Jul 2009 05:09:10 -0000 1.64 @@ -4,7 +4,7 @@ Summary: X.Org X11 libX11 runtime library Name: libX11 Version: 1.2.99 -Release: 2.%{gitdate}%{?dist} +Release: 3.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.99-3.20090712 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.2.99-2.20090712 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:09:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:09:23 +0000 (UTC) Subject: rpms/libXNVCtrl/devel libXNVCtrl.spec,1.7,1.8 Message-ID: <20090725050923.6F4A511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXNVCtrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28321 Modified Files: libXNVCtrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXNVCtrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXNVCtrl/devel/libXNVCtrl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libXNVCtrl.spec 25 Feb 2009 13:09:27 -0000 1.7 +++ libXNVCtrl.spec 25 Jul 2009 05:09:23 -0000 1.8 @@ -1,6 +1,6 @@ Name: libXNVCtrl Version: 169.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library providing the NV-CONTROL API Group: System Environment/Libraries License: GPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 169.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 169.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:09:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:09:37 +0000 (UTC) Subject: rpms/libXScrnSaver/devel libXScrnSaver.spec,1.30,1.31 Message-ID: <20090725050937.6132811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXScrnSaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28457 Modified Files: libXScrnSaver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXScrnSaver.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXScrnSaver/devel/libXScrnSaver.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libXScrnSaver.spec 23 Jul 2009 13:53:17 -0000 1.30 +++ libXScrnSaver.spec 25 Jul 2009 05:09:37 -0000 1.31 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXss runtime library Name: libXScrnSaver Version: 1.1.3 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.1.3-4 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:09:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:09:50 +0000 (UTC) Subject: rpms/libXau/devel libXau.spec,1.28,1.29 Message-ID: <20090725050950.8EFAB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28591 Modified Files: libXau.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXau.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXau/devel/libXau.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libXau.spec 23 Jul 2009 13:08:02 -0000 1.28 +++ libXau.spec 25 Jul 2009 05:09:50 -0000 1.29 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXau runtime library Name: libXau Version: 1.0.4 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-6 - Remove useless %%dir - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:10:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:10:03 +0000 (UTC) Subject: rpms/libXaw/devel libXaw.spec,1.31,1.32 Message-ID: <20090725051003.DD75111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28744 Modified Files: libXaw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXaw/devel/libXaw.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libXaw.spec 23 Jul 2009 13:19:01 -0000 1.31 +++ libXaw.spec 25 Jul 2009 05:10:03 -0000 1.32 @@ -3,7 +3,7 @@ Summary: X.Org X11 libXaw runtime library Name: libXaw Version: 1.0.6 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT URL: http://www.x.org Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.6-2 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:10:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:10:17 +0000 (UTC) Subject: rpms/libXcomposite/devel libXcomposite.spec,1.27,1.28 Message-ID: <20090725051017.7582111C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXcomposite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28914 Modified Files: libXcomposite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXcomposite.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXcomposite/devel/libXcomposite.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libXcomposite.spec 23 Jul 2009 13:22:49 -0000 1.27 +++ libXcomposite.spec 25 Jul 2009 05:10:17 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXcomposite runtime library Name: libXcomposite Version: 0.4.0 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/X?omposite*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 0.4.0-8 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:10:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:10:32 +0000 (UTC) Subject: rpms/libXcursor/devel libXcursor.spec,1.24,1.25 Message-ID: <20090725051032.1C55811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXcursor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29067 Modified Files: libXcursor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXcursor.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXcursor/devel/libXcursor.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXcursor.spec 23 Jul 2009 13:17:15 -0000 1.24 +++ libXcursor.spec 25 Jul 2009 05:10:31 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXcursor runtime library Name: libXcursor Version: 1.1.9 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xcursor*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.1.9-5 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:11:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:11:10 +0000 (UTC) Subject: rpms/libXdamage/devel libXdamage.spec,1.23,1.24 Message-ID: <20090725051110.40AA211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXdamage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29341 Modified Files: libXdamage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXdamage.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXdamage/devel/libXdamage.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libXdamage.spec 23 Jul 2009 13:24:38 -0000 1.23 +++ libXdamage.spec 25 Jul 2009 05:11:10 -0000 1.24 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXdamage runtime library Name: libXdamage Version: 1.1.1 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xdamage.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.1.1-7 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:11:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:11:23 +0000 (UTC) Subject: rpms/libXdmcp/devel libXdmcp.spec,1.24,1.25 Message-ID: <20090725051123.8120711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXdmcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29483 Modified Files: libXdmcp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXdmcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXdmcp/devel/libXdmcp.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libXdmcp.spec 23 Jul 2009 13:47:02 -0000 1.24 +++ libXdmcp.spec 25 Jul 2009 05:11:23 -0000 1.25 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXdmcp runtime library Name: libXdmcp Version: 1.0.2 -Release: 10%{?dist} +Release: 11%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xdmcp.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.2-10 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:11:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:11:38 +0000 (UTC) Subject: rpms/libXevie/devel libXevie.spec,1.22,1.23 Message-ID: <20090725051138.C155511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXevie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29645 Modified Files: libXevie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXevie.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXevie/devel/libXevie.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXevie.spec 23 Jul 2009 13:20:17 -0000 1.22 +++ libXevie.spec 25 Jul 2009 05:11:38 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXevie runtime library Name: libXevie Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.2-6 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:11:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:11:55 +0000 (UTC) Subject: rpms/libXext/devel libXext.spec,1.28,1.29 Message-ID: <20090725051155.086F411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29789 Modified Files: libXext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXext.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXext/devel/libXext.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libXext.spec 23 Jul 2009 13:49:11 -0000 1.28 +++ libXext.spec 25 Jul 2009 05:11:54 -0000 1.29 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXext runtime library Name: libXext Version: 1.0.99.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.99.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.99.4-2 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:12:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:12:09 +0000 (UTC) Subject: rpms/libXfixes/devel libXfixes.spec,1.22,1.23 Message-ID: <20090725051209.B957811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXfixes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29930 Modified Files: libXfixes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXfixes.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXfixes/devel/libXfixes.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXfixes.spec 23 Jul 2009 13:50:52 -0000 1.22 +++ libXfixes.spec 25 Jul 2009 05:12:09 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXfixes runtime library Name: libXfixes Version: 4.0.3 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xfixes.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 4.0.3-7 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:12:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:12:26 +0000 (UTC) Subject: rpms/libXfont/devel libXfont.spec,1.46,1.47 Message-ID: <20090725051226.24B6611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXfont/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30083 Modified Files: libXfont.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXfont.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXfont/devel/libXfont.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libXfont.spec 23 Jul 2009 13:22:11 -0000 1.46 +++ libXfont.spec 25 Jul 2009 05:12:25 -0000 1.47 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXfont runtime library Name: libXfont Version: 1.4.0 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xfont.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.4.0-4 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:12:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:12:40 +0000 (UTC) Subject: rpms/libXft/devel libXft.spec,1.25,1.26 Message-ID: <20090725051240.DB87A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXft/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30214 Modified Files: libXft.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXft.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXft/devel/libXft.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXft.spec 23 Jul 2009 13:15:23 -0000 1.25 +++ libXft.spec 25 Jul 2009 05:12:40 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXft runtime library Name: libXft Version: 2.1.13 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Xft.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 2.1.13-3 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:13:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:13:27 +0000 (UTC) Subject: rpms/libXi/devel libXi.spec,1.35,1.36 Message-ID: <20090725051327.1797F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30465 Modified Files: libXi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXi/devel/libXi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libXi.spec 23 Jul 2009 13:51:29 -0000 1.35 +++ libXi.spec 25 Jul 2009 05:13:26 -0000 1.36 @@ -4,7 +4,7 @@ Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.2.99 -Release: 7.%{gitdate}%{?dist} +Release: 8.%{gitdate}%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.99-8.20090723 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.2.99-7.20090723 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:13:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:13:42 +0000 (UTC) Subject: rpms/libXinerama/devel libXinerama.spec,1.21,1.22 Message-ID: <20090725051342.E5C5111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXinerama/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30622 Modified Files: libXinerama.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXinerama.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXinerama/devel/libXinerama.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libXinerama.spec 25 Feb 2009 13:22:38 -0000 1.21 +++ libXinerama.spec 25 Jul 2009 05:13:42 -0000 1.22 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXinerama runtime library Name: libXinerama Version: 1.0.3 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:13:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:13:58 +0000 (UTC) Subject: rpms/libXmu/devel libXmu.spec,1.29,1.30 Message-ID: <20090725051358.003F211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXmu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30755 Modified Files: libXmu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXmu.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXmu/devel/libXmu.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libXmu.spec 23 Jul 2009 13:14:49 -0000 1.29 +++ libXmu.spec 25 Jul 2009 05:13:57 -0000 1.30 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXmu/libXmuu runtime libraries Name: libXmu Version: 1.0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xmuu.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-3 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:14:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:14:13 +0000 (UTC) Subject: rpms/libXp/devel libXp.spec,1.33,1.34 Message-ID: <20090725051413.1BB4C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30896 Modified Files: libXp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXp/devel/libXp.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libXp.spec 23 Jul 2009 13:52:45 -0000 1.33 +++ libXp.spec 25 Jul 2009 05:14:12 -0000 1.34 @@ -12,7 +12,7 @@ Summary: X.Org X11 libXp runtime library Name: libXp Version: 1.0.0 -Release: 14%{?dist} +Release: 15%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.0-14 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:14:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:14:28 +0000 (UTC) Subject: rpms/libXpm/devel libXpm.spec,1.27,1.28 Message-ID: <20090725051428.561D411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31021 Modified Files: libXpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXpm/devel/libXpm.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libXpm.spec 23 Jul 2009 13:14:06 -0000 1.27 +++ libXpm.spec 25 Jul 2009 05:14:28 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXpm runtime library Name: libXpm Version: 3.5.7 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT #%{_mandir}/man1/*.1x* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 3.5.7-6 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:14:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:14:41 +0000 (UTC) Subject: rpms/libXrandr/devel libXrandr.spec,1.33,1.34 Message-ID: <20090725051441.B321711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31151 Modified Files: libXrandr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrandr/devel/libXrandr.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libXrandr.spec 23 Jul 2009 13:28:37 -0000 1.33 +++ libXrandr.spec 25 Jul 2009 05:14:41 -0000 1.34 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrandr runtime library Name: libXrandr Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.3.0-2 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:14:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:14:55 +0000 (UTC) Subject: rpms/libXrender/devel libXrender.spec,1.25,1.26 Message-ID: <20090725051455.C1C4611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXrender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31289 Modified Files: libXrender.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXrender.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXrender/devel/libXrender.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXrender.spec 23 Jul 2009 13:23:32 -0000 1.25 +++ libXrender.spec 25 Jul 2009 05:14:55 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXrender runtime library Name: libXrender Version: 0.9.4 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xrender.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 0.9.4-6 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:15:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:15:10 +0000 (UTC) Subject: rpms/libXres/devel libXres.spec,1.23,1.24 Message-ID: <20090725051510.19F4B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXres/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31454 Modified Files: libXres.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXres.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXres/devel/libXres.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libXres.spec 23 Jul 2009 13:20:57 -0000 1.23 +++ libXres.spec 25 Jul 2009 05:15:09 -0000 1.24 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXres runtime library Name: libXres Version: 1.0.3 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.3-7 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:15:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:15:27 +0000 (UTC) Subject: rpms/libXt/devel libXt.spec,1.32,1.33 Message-ID: <20090725051527.09EAA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31653 Modified Files: libXt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXt/devel/libXt.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libXt.spec 23 Jul 2009 13:12:16 -0000 1.32 +++ libXt.spec 25 Jul 2009 05:15:26 -0000 1.33 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXt runtime library Name: libXt Version: 1.0.6 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.6-2 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:15:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:15:40 +0000 (UTC) Subject: rpms/libXtst/devel libXtst.spec,1.27,1.28 Message-ID: <20090725051540.72DE711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXtst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31799 Modified Files: libXtst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXtst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXtst/devel/libXtst.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libXtst.spec 23 Jul 2009 13:53:40 -0000 1.27 +++ libXtst.spec 25 Jul 2009 05:15:40 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXtst runtime library Name: libXtst Version: 1.0.99.1 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/XTest*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.99.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.99.1-2 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:15:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:15:53 +0000 (UTC) Subject: rpms/libXv/devel libXv.spec,1.25,1.26 Message-ID: <20090725051553.AC1BC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31944 Modified Files: libXv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXv/devel/libXv.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXv.spec 23 Jul 2009 13:15:49 -0000 1.25 +++ libXv.spec 25 Jul 2009 05:15:53 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXv runtime library Name: libXv Version: 1.0.4 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-3 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:16:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:16:08 +0000 (UTC) Subject: rpms/libXvMC/devel libXvMC.spec,1.25,1.26 Message-ID: <20090725051608.DA90911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXvMC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32097 Modified Files: libXvMC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXvMC.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXvMC/devel/libXvMC.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libXvMC.spec 23 Jul 2009 13:18:27 -0000 1.25 +++ libXvMC.spec 25 Jul 2009 05:16:08 -0000 1.26 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXvMC runtime library Name: libXvMC Version: 1.0.4 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xvmc.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-7 - Un-require xorg-x11-filesystem - Remove useless %%dir From jkeating at fedoraproject.org Sat Jul 25 05:16:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:16:25 +0000 (UTC) Subject: rpms/libXxf86dga/devel libXxf86dga.spec,1.21,1.22 Message-ID: <20090725051625.2CB6C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXxf86dga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32266 Modified Files: libXxf86dga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXxf86dga.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86dga/devel/libXxf86dga.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libXxf86dga.spec 23 Jul 2009 13:54:22 -0000 1.21 +++ libXxf86dga.spec 25 Jul 2009 05:16:24 -0000 1.22 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86dga runtime library Name: libXxf86dga Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.2-5 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:16:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:16:40 +0000 (UTC) Subject: rpms/libXxf86misc/devel libXxf86misc.spec,1.20,1.21 Message-ID: <20090725051640.CA98211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXxf86misc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32417 Modified Files: libXxf86misc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXxf86misc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86misc/devel/libXxf86misc.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libXxf86misc.spec 23 Jul 2009 13:54:52 -0000 1.20 +++ libXxf86misc.spec 25 Jul 2009 05:16:40 -0000 1.21 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86misc runtime library Name: libXxf86misc Version: 1.0.1 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3x* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.1-8 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:16:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:16:57 +0000 (UTC) Subject: rpms/libXxf86vm/devel libXxf86vm.spec,1.22,1.23 Message-ID: <20090725051657.7F78C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libXxf86vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32600 Modified Files: libXxf86vm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libXxf86vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libXxf86vm/devel/libXxf86vm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libXxf86vm.spec 23 Jul 2009 13:55:14 -0000 1.22 +++ libXxf86vm.spec 25 Jul 2009 05:16:57 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 libXxf86vm runtime library Name: libXxf86vm Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.2-3 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:17:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:17:13 +0000 (UTC) Subject: rpms/libacpi/devel libacpi.spec,1.2,1.3 Message-ID: <20090725051713.C9F0B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libacpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv308 Modified Files: libacpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libacpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libacpi/devel/libacpi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libacpi.spec 25 Feb 2009 13:35:29 -0000 1.2 +++ libacpi.spec 25 Jul 2009 05:17:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: libacpi Version: 0.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: General purpose library for ACPI Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:17:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:17:29 +0000 (UTC) Subject: rpms/libaio/devel libaio.spec,1.31,1.32 Message-ID: <20090725051729.C5D0511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libaio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv467 Modified Files: libaio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libaio.spec =================================================================== RCS file: /cvs/pkgs/rpms/libaio/devel/libaio.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libaio.spec 25 Feb 2009 13:36:28 -0000 1.31 +++ libaio.spec 25 Jul 2009 05:17:29 -0000 1.32 @@ -1,6 +1,6 @@ Name: libaio Version: 0.3.107 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Linux-native asynchronous I/O access library License: LGPLv2+ Group: System Environment/Libraries @@ -73,6 +73,9 @@ make destdir=$RPM_BUILD_ROOT prefix=/ li %attr(0644,root,root) %{_libdir}/libaio.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.107-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.107-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From whot at fedoraproject.org Sat Jul 25 05:17:39 2009 From: whot at fedoraproject.org (Peter Hutterer) Date: Sat, 25 Jul 2009 05:17:39 +0000 (UTC) Subject: rpms/hal/devel hal-HDAPS-blacklist.patch, NONE, 1.1 hal.spec, 1.197, 1.198 Message-ID: <20090725051739.D445B11C0099@cvs1.fedora.phx.redhat.com> Author: whot Update of /cvs/pkgs/rpms/hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv496 Modified Files: hal.spec Added Files: hal-HDAPS-blacklist.patch Log Message: * Sat Jul 25 2009 Peter Hutterer - 0.5.12-28.20090226git.4 - hal-HDAPS-blacklist.patch: blacklist Thinkpad HDAPS accelerometer device, it screws with X (FDO #22442). hal-HDAPS-blacklist.patch: 10-x11-input.fdi | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- NEW FILE hal-HDAPS-blacklist.patch --- >From e1f85fe0cdfa7e4d4ce7a811d0b0c90bf38fba0c Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 25 Jun 2009 09:47:27 +1000 Subject: [PATCH] Blacklist HDAPS accelerometer device from being picked up in X. This device posts accelerometer data through ABS_X/ABS_Y, making X unusable if it's controlling the pointer. --- fdi/policy/10osvendor/10-x11-input.fdi | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/fdi/policy/10osvendor/10-x11-input.fdi b/fdi/policy/10osvendor/10-x11-input.fdi index a342421..89ba672 100644 --- a/fdi/policy/10osvendor/10-x11-input.fdi +++ b/fdi/policy/10osvendor/10-x11-input.fdi @@ -38,5 +38,11 @@ evdev + + + + + -- 1.6.3.rc1.2.g0164.dirty Index: hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/hal/devel/hal.spec,v retrieving revision 1.197 retrieving revision 1.198 diff -u -p -r1.197 -r1.198 --- hal.spec 25 Jul 2009 01:59:23 -0000 1.197 +++ hal.spec 25 Jul 2009 05:17:39 -0000 1.198 @@ -27,7 +27,7 @@ Summary: Hardware Abstraction Layer Name: hal Version: 0.5.12 #Release: 14%{?dist} -Release: 27.%{?alphatag}%{?dist}.4 +Release: 28.%{?alphatag}%{?dist}.4 URL: http://www.freedesktop.org/Software/hal #Source0: http://hal.freedesktop.org/releases/%{name}-%{version}rc1.tar.bz2 Source0: http://hal.freedesktop.org/releases/%{name}-%{version}-%{?alphatag}.tar.gz @@ -52,6 +52,8 @@ Patch9: hal-KVM-evdev.patch # from upstream Patch10: blkid.patch +# http://bugs.freedesktop.org/show_bug.cgi?id=22442 +Patch11: hal-HDAPS-blacklist.patch Patch100: hal-0.5.12-use-at-console.patch @@ -148,6 +150,7 @@ API docs for HAL. %patch8 -p1 -b .fix-udev %patch9 -p1 -b .kvm-evdev %patch10 -p1 -b .blkid +%patch11 -p1 -b .hdaps-blacklist %patch100 -p1 -b .drop-polkit autoreconf -i -f @@ -288,6 +291,10 @@ fi %{_datadir}/gtk-doc/html/libhal-storage/* %changelog +* Sat Jul 25 2009 Peter Hutterer - 0.5.12-28.20090226git.4 +- hal-HDAPS-blacklist.patch: blacklist Thinkpad HDAPS accelerometer device, + it screws with X (FDO #22442). + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.12-27.20090226git.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:17:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:17:49 +0000 (UTC) Subject: rpms/libannodex/devel libannodex.spec,1.14,1.15 Message-ID: <20090725051749.B4A6211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libannodex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv694 Modified Files: libannodex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libannodex.spec =================================================================== RCS file: /cvs/pkgs/rpms/libannodex/devel/libannodex.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libannodex.spec 25 Feb 2009 13:37:28 -0000 1.14 +++ libannodex.spec 25 Jul 2009 05:17:49 -0000 1.15 @@ -1,6 +1,6 @@ Name: libannodex Version: 0.7.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Library for annotating and indexing networked media Group: System Environment/Libraries @@ -107,6 +107,9 @@ exit 0 %postun -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:18:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:18:04 +0000 (UTC) Subject: rpms/libao/devel libao.spec,1.30,1.31 Message-ID: <20090725051804.E2A2D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libao/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv901 Modified Files: libao.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libao.spec =================================================================== RCS file: /cvs/pkgs/rpms/libao/devel/libao.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libao.spec 25 Feb 2009 13:38:22 -0000 1.30 +++ libao.spec 25 Jul 2009 05:18:04 -0000 1.31 @@ -1,6 +1,6 @@ Name: libao Version: 0.8.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Cross Platform Audio Output Library Group: System Environment/Libraries License: GPLv2+ @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:18:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:18:20 +0000 (UTC) Subject: rpms/libapogee/devel libapogee.spec,1.2,1.3 Message-ID: <20090725051820.6D57111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libapogee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1036 Modified Files: libapogee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libapogee.spec =================================================================== RCS file: /cvs/pkgs/rpms/libapogee/devel/libapogee.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libapogee.spec 25 Feb 2009 13:39:16 -0000 1.2 +++ libapogee.spec 25 Jul 2009 05:18:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: libapogee Version: 2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for Apogee CCD Cameras %define majorver 2 @@ -63,6 +63,9 @@ rm -fr %{buildroot} %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:18:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:18:35 +0000 (UTC) Subject: rpms/libapreq2/devel libapreq2.spec,1.47,1.48 Message-ID: <20090725051835.F3E4B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libapreq2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1175 Modified Files: libapreq2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libapreq2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libapreq2/devel/libapreq2.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- libapreq2.spec 15 Mar 2009 08:11:55 -0000 1.47 +++ libapreq2.spec 25 Jul 2009 05:18:35 -0000 1.48 @@ -2,7 +2,7 @@ Name: libapreq2 Version: 2.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Apache HTTP request library Group: System Environment/Libraries @@ -170,6 +170,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Bojan Smojver - 2.12-1 - bump up to 2.12 release From jkeating at fedoraproject.org Sat Jul 25 05:18:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:18:51 +0000 (UTC) Subject: rpms/libarchive/devel libarchive.spec,1.11,1.12 Message-ID: <20090725051851.8E43F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libarchive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1317 Modified Files: libarchive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libarchive.spec =================================================================== RCS file: /cvs/pkgs/rpms/libarchive/devel/libarchive.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libarchive.spec 12 May 2009 12:38:37 -0000 1.11 +++ libarchive.spec 25 Jul 2009 05:18:51 -0000 1.12 @@ -1,6 +1,6 @@ Name: libarchive Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library for handling streaming archive formats Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Tomas Bzatek 2.7.0-1 - Update to 2.7.0 From jkeating at fedoraproject.org Sat Jul 25 05:19:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:19:11 +0000 (UTC) Subject: rpms/libart_lgpl/devel libart_lgpl.spec,1.25,1.26 Message-ID: <20090725051911.26B3A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libart_lgpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1510 Modified Files: libart_lgpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libart_lgpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libart_lgpl/devel/libart_lgpl.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libart_lgpl.spec 25 Feb 2009 13:41:53 -0000 1.25 +++ libart_lgpl.spec 25 Jul 2009 05:19:11 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Library of graphics routines used by libgnomecanvas Name: libart_lgpl Version: 2.3.20 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.gnome.org/ Source0: http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3/%{name}-%{version}.tar.bz2 Patch0: libart-multilib.patch @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.3.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:19:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:19:27 +0000 (UTC) Subject: rpms/libass/devel libass.spec,1.1,1.2 Message-ID: <20090725051927.5D0DD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1680 Modified Files: libass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libass.spec =================================================================== RCS file: /cvs/pkgs/rpms/libass/devel/libass.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libass.spec 24 Mar 2009 17:52:39 -0000 1.1 +++ libass.spec 25 Jul 2009 05:19:27 -0000 1.2 @@ -1,6 +1,6 @@ Name: libass Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2008 Martin Sourada - 0.9.6-2 - remove glibc-devel and freetype-devel BRs, they're already pulled in by the rest From jkeating at fedoraproject.org Sat Jul 25 05:19:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:19:44 +0000 (UTC) Subject: rpms/libassa/devel libassa.spec,1.6,1.7 Message-ID: <20090725051944.2AC3111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libassa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1880 Modified Files: libassa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libassa.spec =================================================================== RCS file: /cvs/pkgs/rpms/libassa/devel/libassa.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libassa.spec 28 Feb 2009 13:35:51 -0000 1.6 +++ libassa.spec 25 Jul 2009 05:19:43 -0000 1.7 @@ -11,7 +11,7 @@ Summary: C++ network-oriented application framework Name: libassa Version: 3.5.0 -Release: 5 +Release: 6 License: LGPLv2+ Group: System Environment/Libraries URL: http://libassa.sourceforge.net/ @@ -126,6 +126,9 @@ mv %{buildroot}%{_datadir}/doc/%{name}-% %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Caol?n McNamara - 3.5.0-5 - add stdarg.h for va_list and stdio.h for vsnprintf From jkeating at fedoraproject.org Sat Jul 25 05:20:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:20:04 +0000 (UTC) Subject: rpms/libassuan/devel libassuan.spec,1.30,1.31 Message-ID: <20090725052004.163E611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libassuan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2089 Modified Files: libassuan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libassuan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libassuan/devel/libassuan.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- libassuan.spec 21 Jun 2009 03:28:42 -0000 1.30 +++ libassuan.spec 25 Jul 2009 05:20:03 -0000 1.31 @@ -2,7 +2,7 @@ Name: libassuan Summary: GnuPG IPC library Version: 1.0.5 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Source0: ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-%{version}.tar.bz2 @@ -90,6 +90,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Rex Dieter - 1.0.5-1 - libassuan-1.0.5 From jkeating at fedoraproject.org Sat Jul 25 05:20:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:20:26 +0000 (UTC) Subject: rpms/libast/devel libast.spec,1.7,1.8 Message-ID: <20090725052026.3465011C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2281 Modified Files: libast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libast.spec =================================================================== RCS file: /cvs/pkgs/rpms/libast/devel/libast.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libast.spec 25 Feb 2009 13:44:31 -0000 1.7 +++ libast.spec 25 Jul 2009 05:20:26 -0000 1.8 @@ -7,7 +7,7 @@ Summary: Library of Assorted Spiffy Things Name: libast Version: 0.7.1 -Release: 0.7.%{cvs}cvs%{?dist} +Release: 0.8.%{cvs}cvs%{?dist} Group: System Environment/Libraries License: BSD URL: http://www.eterm.org/ @@ -88,6 +88,9 @@ touch -r ChangeLog %{buildroot}%{_bindir %exclude %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.1-0.8.20080502cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-0.7.20080502cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:20:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:20:40 +0000 (UTC) Subject: rpms/libasyncns/devel libasyncns.spec,1.6,1.7 Message-ID: <20090725052040.3D83911C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libasyncns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2462 Modified Files: libasyncns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libasyncns.spec =================================================================== RCS file: /cvs/pkgs/rpms/libasyncns/devel/libasyncns.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libasyncns.spec 25 Feb 2009 13:45:28 -0000 1.6 +++ libasyncns.spec 25 Jul 2009 05:20:40 -0000 1.7 @@ -1,6 +1,6 @@ Name: libasyncns Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Asynchronous Name Service Library Group: System Environment/Libraries Source0: http://0pointer.de/lennart/projects/libasyncns/libasyncns-%{version}.tar.gz @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libasyncns.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:20:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:20:53 +0000 (UTC) Subject: rpms/libatasmart/devel libatasmart.spec,1.16,1.17 Message-ID: <20090725052053.C00D611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libatasmart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2611 Modified Files: libatasmart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libatasmart.spec =================================================================== RCS file: /cvs/pkgs/rpms/libatasmart/devel/libatasmart.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libatasmart.spec 22 Apr 2009 22:58:08 -0000 1.16 +++ libatasmart.spec 25 Jul 2009 05:20:53 -0000 1.17 @@ -1,6 +1,6 @@ Name: libatasmart Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ATA S.M.A.R.T. Disk Health Monitoring Library Group: System Environment/Libraries Source0: http://0pointer.de/public/libatasmart-%{version}.tar.gz @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %doc blob-examples/SAMSUNG* blob-examples/ST* blob-examples/Maxtor* blob-examples/WDC* blob-examples/FUJITSU* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Lennart Poettering 0.13-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 05:21:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:21:09 +0000 (UTC) Subject: rpms/libavc1394/devel libavc1394.spec,1.29,1.30 Message-ID: <20090725052109.0329B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libavc1394/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2791 Modified Files: libavc1394.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libavc1394.spec =================================================================== RCS file: /cvs/pkgs/rpms/libavc1394/devel/libavc1394.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libavc1394.spec 10 Jun 2009 20:22:23 -0000 1.29 +++ libavc1394.spec 25 Jul 2009 05:21:08 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Audio/Video Control library for IEEE-1394 devices Name: libavc1394 Version: 0.5.3 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Libraries URL: http://sourceforge.net/projects/libavc1394/ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Jarod Wilson 0.5.3-8 - Fix duplicate global symbols in libavc1394 vs. librom1394 (#216143) From jkeating at fedoraproject.org Sat Jul 25 05:21:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:21:22 +0000 (UTC) Subject: rpms/libax25/devel libax25.spec,1.2,1.3 Message-ID: <20090725052122.C3AA811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libax25/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2950 Modified Files: libax25.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libax25.spec =================================================================== RCS file: /cvs/pkgs/rpms/libax25/devel/libax25.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libax25.spec 25 Feb 2009 13:49:16 -0000 1.2 +++ libax25.spec 25 Jul 2009 05:21:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: libax25 Version: 0.0.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: AX.25 library for hamradio applications Group: System Environment/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:21:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:21:37 +0000 (UTC) Subject: rpms/libbeagle/devel libbeagle.spec,1.21,1.22 Message-ID: <20090725052137.E184C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbeagle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3116 Modified Files: libbeagle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbeagle.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbeagle/devel/libbeagle.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libbeagle.spec 19 Jul 2009 03:02:31 -0000 1.21 +++ libbeagle.spec 25 Jul 2009 05:21:37 -0000 1.22 @@ -2,7 +2,7 @@ Name: libbeagle Version: 0.3.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Beagle C interface Group: Development/Libraries License: MIT @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen - 0.3.9-3 - Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:21:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:21:55 +0000 (UTC) Subject: rpms/libbind/devel libbind.spec,1.3,1.4 Message-ID: <20090725052155.86FC611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3268 Modified Files: libbind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbind.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbind/devel/libbind.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libbind.spec 2 Apr 2009 14:05:42 -0000 1.3 +++ libbind.spec 25 Jul 2009 05:21:55 -0000 1.4 @@ -4,7 +4,7 @@ Name: libbind Version: 6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ISC's standard resolver library Group: System Environment/Libraries @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man7/libbind_* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Adam Tkac 6.0-1 - update to final 6.0 From jkeating at fedoraproject.org Sat Jul 25 05:22:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:22:09 +0000 (UTC) Subject: rpms/libbinio/devel libbinio.spec,1.8,1.9 Message-ID: <20090725052209.0839811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbinio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3409 Modified Files: libbinio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbinio.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbinio/devel/libbinio.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libbinio.spec 2 Mar 2009 23:21:31 -0000 1.8 +++ libbinio.spec 25 Jul 2009 05:22:08 -0000 1.9 @@ -3,7 +3,7 @@ Name: libbinio Version: 1.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A software library for binary I/O classes in C++ URL: http://libbinio.sourceforge.net/ Group: System Environment/Libraries @@ -83,6 +83,9 @@ fi %{_infodir}/*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Caol?n McNamara - 1.4-11 - include stdio.h for EOF From jkeating at fedoraproject.org Sat Jul 25 05:22:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:22:22 +0000 (UTC) Subject: rpms/libbonobo/devel libbonobo.spec,1.88,1.89 Message-ID: <20090725052222.E337811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbonobo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3556 Modified Files: libbonobo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbonobo.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbonobo/devel/libbonobo.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- libbonobo.spec 15 Jun 2009 00:34:41 -0000 1.88 +++ libbonobo.spec 25 Jul 2009 05:22:22 -0000 1.89 @@ -6,7 +6,7 @@ Summary: Bonobo component system Name: libbonobo Version: 2.24.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://ftp.gnome.org Source0: http://download.gnome.org/sources/libbonobo/2.24/%{name}-%{version}.tar.bz2 License: GPLv2+ and LGPLv2+ @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/bonobo-activation %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Matthias Clasen - 2.24.1-2 - Minor directory ownership cleanup - Fix installation From jkeating at fedoraproject.org Sat Jul 25 05:22:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:22:37 +0000 (UTC) Subject: rpms/libbonoboui/devel libbonoboui.spec,1.68,1.69 Message-ID: <20090725052237.C440D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbonoboui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3710 Modified Files: libbonoboui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbonoboui.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbonoboui/devel/libbonoboui.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- libbonoboui.spec 16 Mar 2009 04:10:12 -0000 1.68 +++ libbonoboui.spec 25 Jul 2009 05:22:37 -0000 1.69 @@ -14,7 +14,7 @@ Summary: Bonobo user interface components Name: libbonoboui Version: 2.24.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libbonoboui/2.24/%{name}-%{version}.tar.bz2 License: GPLv2+ and LGPLv2+ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libbonoboui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Matthias Clasen - 2.24.1-1 - Update to 2.24.1 From jkeating at fedoraproject.org Sat Jul 25 05:22:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:22:50 +0000 (UTC) Subject: rpms/libbsr/devel libbsr.spec,1.2,1.3 Message-ID: <20090725052250.BF52A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbsr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3852 Modified Files: libbsr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbsr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbsr/devel/libbsr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libbsr.spec 25 Feb 2009 13:54:03 -0000 1.2 +++ libbsr.spec 25 Jul 2009 05:22:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: libbsr Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Barrier Synchronization Register access library Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/%{name}-%{version}/examples/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:23:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:23:04 +0000 (UTC) Subject: rpms/libbtctl/devel libbtctl.spec,1.61,1.62 Message-ID: <20090725052304.DE0C711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libbtctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3982 Modified Files: libbtctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libbtctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libbtctl/devel/libbtctl.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- libbtctl.spec 25 Feb 2009 13:54:56 -0000 1.61 +++ libbtctl.spec 25 Jul 2009 05:23:04 -0000 1.62 @@ -8,7 +8,7 @@ ExcludeArch: s390 s390x Summary: Library for the GNOME Bluetooth Subsystem Name: libbtctl Version: 0.11.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ Group: System Environment/Libraries URL: http://live.gnome.org/GnomeBluetooth @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libbtctl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:23:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:23:19 +0000 (UTC) Subject: rpms/libburn/devel libburn.spec,1.17,1.18 Message-ID: <20090725052319.A633911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libburn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4143 Modified Files: libburn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libburn.spec =================================================================== RCS file: /cvs/pkgs/rpms/libburn/devel/libburn.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libburn.spec 25 Feb 2009 13:55:52 -0000 1.17 +++ libburn.spec 25 Jul 2009 05:23:19 -0000 1.18 @@ -2,7 +2,7 @@ Name: libburn Version: 0.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for reading, mastering and writing optical discs Group: System Environment/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:23:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:23:33 +0000 (UTC) Subject: rpms/libcaca/devel libcaca.spec,1.20,1.21 Message-ID: <20090725052333.CFBD311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcaca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4289 Modified Files: libcaca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcaca.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcaca/devel/libcaca.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libcaca.spec 11 Jun 2009 10:48:31 -0000 1.20 +++ libcaca.spec 25 Jul 2009 05:23:33 -0000 1.21 @@ -3,7 +3,7 @@ Summary: Library for Colour AsCii Art, text mode graphics Name: libcaca Version: 0.99 -Release: 0.8.%{beta}%{?dist} +Release: 0.9.%{beta}%{?dist} License: WTFPL Group: System Environment/Libraries URL: http://libcaca.zoy.org/ @@ -138,6 +138,9 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpa %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99-0.9.beta16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Matthias Saou 0.99-0.8.beta16 - Fix build now that glut no longer links against libGLU (#502296). From jkeating at fedoraproject.org Sat Jul 25 05:23:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:23:47 +0000 (UTC) Subject: rpms/libcanberra/devel libcanberra.spec,1.29,1.30 Message-ID: <20090725052347.AEDD311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcanberra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4423 Modified Files: libcanberra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcanberra.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcanberra/devel/libcanberra.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libcanberra.spec 2 Jul 2009 01:18:57 -0000 1.29 +++ libcanberra.spec 25 Jul 2009 05:23:47 -0000 1.30 @@ -1,6 +1,6 @@ Name: libcanberra Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable Sound Event Library Group: System Environment/Libraries Source0: http://0pointer.de/lennart/projects/libcanberra/libcanberra-%{version}.tar.gz @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libcanberra.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Lennart Poettering 0.14-2 - Upload the right tarball From jkeating at fedoraproject.org Sat Jul 25 05:24:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:24:01 +0000 (UTC) Subject: rpms/libcap/devel libcap.spec,1.43,1.44 Message-ID: <20090725052401.94C3911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4575 Modified Files: libcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcap/devel/libcap.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- libcap.spec 16 Jun 2009 19:42:32 -0000 1.43 +++ libcap.spec 25 Jul 2009 05:24:01 -0000 1.44 @@ -1,6 +1,6 @@ Name: libcap Version: 2.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for getting and setting POSIX.1e capabilities Source: http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/%{name}-%{version}.tar.gz Patch0: libcap-2.16-headerfix.patch @@ -77,6 +77,9 @@ chmod +x ${RPM_BUILD_ROOT}/%{_lib}/*.so. rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Karsten Hopp 2.16-4 - fix build problems with p.e. cdrkit From jkeating at fedoraproject.org Sat Jul 25 05:24:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:24:15 +0000 (UTC) Subject: rpms/libcap-ng/devel libcap-ng.spec,1.9,1.10 Message-ID: <20090725052415.8E9B511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcap-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4708 Modified Files: libcap-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcap-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcap-ng/devel/libcap-ng.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libcap-ng.spec 29 Jun 2009 17:43:40 -0000 1.9 +++ libcap-ng.spec 25 Jul 2009 05:24:15 -0000 1.10 @@ -3,7 +3,7 @@ Summary: An alternate posix capabilities library Name: libcap-ng Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://people.redhat.com/sgrubb/libcap-ng @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Steve Grubb 0.6-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 05:24:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:24:28 +0000 (UTC) Subject: rpms/libcapseo/devel libcapseo.spec,1.6,1.7 Message-ID: <20090725052428.C010611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcapseo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4848 Modified Files: libcapseo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcapseo.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcapseo/devel/libcapseo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libcapseo.spec 25 Feb 2009 13:58:43 -0000 1.6 +++ libcapseo.spec 25 Jul 2009 05:24:28 -0000 1.7 @@ -14,7 +14,7 @@ Summary: A realtime encoder/decoder library Name: libcapseo Version: %{capseo_version} -Release: 0.2.%{snapshot}%{?dist} +Release: 0.3.%{snapshot}%{?dist} License: GPLv3 Group: System Environment/Libraries URL: http://gitorious.org/projects/capseo/ @@ -96,6 +96,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/capseo.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-0.3.20081031git431a293 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-0.2.20081031git431a293 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:24:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:24:42 +0000 (UTC) Subject: rpms/libcaptury/devel libcaptury.spec,1.3,1.4 Message-ID: <20090725052442.A8CC411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcaptury/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4974 Modified Files: libcaptury.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcaptury.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcaptury/devel/libcaptury.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libcaptury.spec 25 Feb 2009 13:59:39 -0000 1.3 +++ libcaptury.spec 25 Jul 2009 05:24:42 -0000 1.4 @@ -14,7 +14,7 @@ Summary: A library for X11/OpenGL video capturing framework Name: libcaptury Version: %{captury_version} -Release: 0.3.%{snapshot}%{?dist} +Release: 0.4.%{snapshot}%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://gitorious.org/projects/libcaptury/ @@ -88,6 +88,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libcaptury.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-0.4.20080323gitcca4e3c +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-0.3.20080323gitcca4e3c - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:24:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:24:56 +0000 (UTC) Subject: rpms/libccss/devel libccss.spec,1.6,1.7 Message-ID: <20090725052456.E31A311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libccss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5108 Modified Files: libccss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libccss.spec =================================================================== RCS file: /cvs/pkgs/rpms/libccss/devel/libccss.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libccss.spec 9 Jul 2009 18:20:57 -0000 1.6 +++ libccss.spec 25 Jul 2009 05:24:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: libccss Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple api for CSS Stylesheets Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/ccss-cairo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Peter Robinson 0.3.1-2 - Add new files to specs From jkeating at fedoraproject.org Sat Jul 25 05:25:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:25:10 +0000 (UTC) Subject: rpms/libcdaudio/devel libcdaudio.spec,1.6,1.7 Message-ID: <20090725052510.E796211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcdaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5240 Modified Files: libcdaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcdaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcdaudio/devel/libcdaudio.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libcdaudio.spec 25 Feb 2009 14:00:39 -0000 1.6 +++ libcdaudio.spec 25 Jul 2009 05:25:10 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Control operation of a CD-ROM when playing audio CDs Name: libcdaudio Version: 0.99.12p2 -Release: 12%{?dist} +Release: 13%{?dist} # COPYING is a copy of GPLv2, but the code and the README clearly indicate # that the code is LGPLv2+. Probably want to let upstream know about COPYING. License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libcdaudio.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.99.12p2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.12p2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:25:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:25:24 +0000 (UTC) Subject: rpms/libcddb/devel libcddb.spec,1.29,1.30 Message-ID: <20090725052524.E360F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcddb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5544 Modified Files: libcddb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcddb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcddb/devel/libcddb.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libcddb.spec 7 Apr 2009 09:43:35 -0000 1.29 +++ libcddb.spec 25 Jul 2009 05:25:24 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Library (C API) for accessing CDDB servers Name: libcddb Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://libcddb.sourceforge.net/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Hans de Goede 1.3.2-1 - New upstream release 1.3.2 From jkeating at fedoraproject.org Sat Jul 25 05:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:25:39 +0000 (UTC) Subject: rpms/libcdio/devel libcdio.spec,1.36,1.37 Message-ID: <20090725052539.48D2311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcdio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6053 Modified Files: libcdio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcdio.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcdio/devel/libcdio.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libcdio.spec 25 Feb 2009 14:02:32 -0000 1.36 +++ libcdio.spec 25 Jul 2009 05:25:39 -0000 1.37 @@ -1,6 +1,6 @@ Name: libcdio Version: 0.81 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CD-ROM input and control library Group: System Environment/Libraries License: GPLv3+ @@ -129,6 +129,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.81-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.81-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:25:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:25:53 +0000 (UTC) Subject: rpms/libcgi/devel libcgi.spec,1.6,1.7 Message-ID: <20090725052553.00DF711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6421 Modified Files: libcgi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcgi/devel/libcgi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libcgi.spec 25 Feb 2009 14:03:26 -0000 1.6 +++ libcgi.spec 25 Jul 2009 05:25:52 -0000 1.7 @@ -13,7 +13,7 @@ Name: libcgi Version: 1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: CGI easy as C Group: System Environment/Libraries @@ -111,6 +111,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:26:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:26:05 +0000 (UTC) Subject: rpms/libcgroup/devel libcgroup.spec,1.14,1.15 Message-ID: <20090725052605.B09AB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcgroup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6567 Modified Files: libcgroup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcgroup.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcgroup/devel/libcgroup.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libcgroup.spec 8 Jul 2009 08:24:49 -0000 1.14 +++ libcgroup.spec 25 Jul 2009 05:26:05 -0000 1.15 @@ -4,7 +4,7 @@ Name: libcgroup Summary: Tools and libraries to control and monitor control groups Group: Development/Libraries Version: 0.34 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://libcg.sourceforge.net/ Source0: http://downloads.sourceforge.net/libcg/%{name}-%{version}.tar.bz2 @@ -116,6 +116,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Jan Safranek 0.34-1 - Update to 0.34 * Mon Mar 09 2009 Dhaval Giani 0.33-3 From jkeating at fedoraproject.org Sat Jul 25 05:26:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:26:19 +0000 (UTC) Subject: rpms/libchamplain/devel libchamplain.spec,1.4,1.5 Message-ID: <20090725052619.DA4DC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libchamplain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6703 Modified Files: libchamplain.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libchamplain.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchamplain/devel/libchamplain.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libchamplain.spec 13 Jul 2009 05:18:53 -0000 1.4 +++ libchamplain.spec 25 Jul 2009 05:26:19 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Map view for Clutter Name: libchamplain Version: 0.3.3 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://projects.gnome.org/libchamplain/ @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}-gtk-0.3/champlain-gtk %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Debarshi Ray - 0.3.3-1 - Version bump to 0.3.3. - Added 'BuildRequires: chrpath' for removing rpaths. From jkeating at fedoraproject.org Sat Jul 25 05:26:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:26:33 +0000 (UTC) Subject: rpms/libchewing/devel libchewing.spec,1.35,1.36 Message-ID: <20090725052633.F24D911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libchewing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6887 Modified Files: libchewing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libchewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/devel/libchewing.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libchewing.spec 30 Jun 2009 02:46:45 -0000 1.35 +++ libchewing.spec 25 Jul 2009 05:26:33 -0000 1.36 @@ -1,7 +1,7 @@ Name: libchewing Version: 0.3.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Intelligent phonetic input method library for Traditional Chinese Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Ding-Yi Chen - 0.3.2-12 - Rebuild to correct tags. From jkeating at fedoraproject.org Sat Jul 25 05:26:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:26:47 +0000 (UTC) Subject: rpms/libchmxx/devel libchmxx.spec,1.8,1.9 Message-ID: <20090725052647.BC72A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libchmxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7028 Modified Files: libchmxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libchmxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchmxx/devel/libchmxx.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libchmxx.spec 25 Feb 2009 14:07:14 -0000 1.8 +++ libchmxx.spec 25 Jul 2009 05:26:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: libchmxx Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ bindings for chmlib Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/chmxx.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:27:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:27:03 +0000 (UTC) Subject: rpms/libcmml/devel libcmml.spec,1.8,1.9 Message-ID: <20090725052703.B4CC411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcmml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7199 Modified Files: libcmml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcmml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcmml/devel/libcmml.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libcmml.spec 25 Feb 2009 14:08:12 -0000 1.8 +++ libcmml.spec 25 Jul 2009 05:27:03 -0000 1.9 @@ -1,6 +1,6 @@ Name: libcmml Version: 0.9.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for handling Continuous Media Markup Language Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:27:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:27:17 +0000 (UTC) Subject: rpms/libcmpiutil/devel libcmpiutil.spec,1.8,1.9 Message-ID: <20090725052717.B1FF311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcmpiutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7352 Modified Files: libcmpiutil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcmpiutil.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcmpiutil/devel/libcmpiutil.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libcmpiutil.spec 16 Jul 2009 00:49:26 -0000 1.8 +++ libcmpiutil.spec 25 Jul 2009 05:27:17 -0000 1.9 @@ -3,7 +3,7 @@ Summary: CMPI Utility Library Name: libcmpiutil Version: 0.5 -Release: 1%{?dist}%{?extra_release} +Release: 2%{?dist}%{?extra_release} License: LGPLv2+ Group: System Environment/Libraries Source: ftp://libvirt.org/libvirt-cim/libcmpiutil-%{version}.tar.gz @@ -75,6 +75,9 @@ rm -fr $RPM_BUILD_ROOT %doc doc/SubmittingPatches %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Kaitlin Rupert - 0.5-1 - Updated to official 0.5 source release From jkeating at fedoraproject.org Sat Jul 25 05:27:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:27:31 +0000 (UTC) Subject: rpms/libcompizconfig/devel libcompizconfig.spec,1.17,1.18 Message-ID: <20090725052731.8BC6A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7515 Modified Files: libcompizconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcompizconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/libcompizconfig.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libcompizconfig.spec 23 Jul 2009 17:48:18 -0000 1.17 +++ libcompizconfig.spec 25 Jul 2009 05:27:31 -0000 1.18 @@ -2,7 +2,7 @@ Name: libcompizconfig Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Configuration backend for compiz Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Leigh Scott 0.8.2-3 - remove dead files from files section From jkeating at fedoraproject.org Sat Jul 25 05:27:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:27:51 +0000 (UTC) Subject: rpms/libconcord/devel libconcord.spec,1.8,1.9 Message-ID: <20090725052751.1318411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libconcord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7694 Modified Files: libconcord.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/devel/libconcord.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libconcord.spec 17 Jun 2009 20:15:57 -0000 1.8 +++ libconcord.spec 25 Jul 2009 05:27:50 -0000 1.9 @@ -3,7 +3,7 @@ Name: libconcord Version: 0.21 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries @@ -174,6 +174,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.21-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Douglas E. Warner 0.21-4 - updated patch w/ autoreconf run From jkeating at fedoraproject.org Sat Jul 25 05:28:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:28:04 +0000 (UTC) Subject: rpms/libconfig/devel libconfig.spec,1.7,1.8 Message-ID: <20090725052804.9740611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7842 Modified Files: libconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconfig/devel/libconfig.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libconfig.spec 25 Feb 2009 14:11:57 -0000 1.7 +++ libconfig.spec 25 Jul 2009 05:28:04 -0000 1.8 @@ -1,7 +1,7 @@ Name: libconfig Summary: C/C++ configuration file library Version: 1.3.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://www.hyperrealm.com/libconfig/libconfig-%{version}.tar.gz @@ -76,6 +76,9 @@ fi %{_infodir}/libconfig.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:28:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:28:18 +0000 (UTC) Subject: rpms/libconfuse/devel libconfuse.spec,1.4,1.5 Message-ID: <20090725052818.9CB1911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libconfuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7991 Modified Files: libconfuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libconfuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconfuse/devel/libconfuse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libconfuse.spec 25 Feb 2009 14:12:51 -0000 1.4 +++ libconfuse.spec 25 Jul 2009 05:28:18 -0000 1.5 @@ -1,6 +1,6 @@ Name: libconfuse Version: 2.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A configuration file parser library Group: System Environment/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:28:32 +0000 (UTC) Subject: rpms/libcroco/devel libcroco.spec,1.24,1.25 Message-ID: <20090725052832.273C711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcroco/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8139 Modified Files: libcroco.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcroco.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcroco/devel/libcroco.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libcroco.spec 25 Feb 2009 14:13:44 -0000 1.24 +++ libcroco.spec 25 Jul 2009 05:28:32 -0000 1.25 @@ -1,7 +1,7 @@ Name: libcroco Summary: A CSS2 parsing library Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 Group: System Environment/Libraries Source: %{name}-%{version}.tar.bz2 @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libcroco-0.6.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:28:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:28:44 +0000 (UTC) Subject: rpms/libctl/devel libctl.spec,1.6,1.7 Message-ID: <20090725052844.B99F911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8267 Modified Files: libctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libctl/devel/libctl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libctl.spec 22 Mar 2009 16:37:30 -0000 1.6 +++ libctl.spec 25 Jul 2009 05:28:44 -0000 1.7 @@ -1,6 +1,6 @@ Name: libctl Version: 3.0.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Guile-based support for flexible control files Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/libctl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Robert Scheck - 3.0.2-9 - Rebuilt against libtool 2.2 From jkeating at fedoraproject.org Sat Jul 25 05:28:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:28:59 +0000 (UTC) Subject: rpms/libcxgb3/devel libcxgb3.spec,1.2,1.3 Message-ID: <20090725052859.6518A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libcxgb3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8409 Modified Files: libcxgb3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libcxgb3.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcxgb3/devel/libcxgb3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libcxgb3.spec 25 Feb 2009 14:15:38 -0000 1.2 +++ libcxgb3.spec 25 Jul 2009 05:28:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: libcxgb3 Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Chelsio T3 iWARP HCA Userspace Driver Group: System Environment/Libraries License: GPLv2 or BSD @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:29:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:29:12 +0000 (UTC) Subject: rpms/libdaemon/devel libdaemon.spec,1.16,1.17 Message-ID: <20090725052912.A367011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdaemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8554 Modified Files: libdaemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdaemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdaemon/devel/libdaemon.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libdaemon.spec 25 Feb 2009 14:16:35 -0000 1.16 +++ libdaemon.spec 25 Jul 2009 05:29:12 -0000 1.17 @@ -1,6 +1,6 @@ Name: libdaemon Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for writing UNIX daemons Group: System Environment/Libraries License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:29:26 +0000 (UTC) Subject: rpms/libdap/devel libdap.spec,1.26,1.27 Message-ID: <20090725052926.BBB0511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8710 Modified Files: libdap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdap/devel/libdap.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libdap.spec 22 Jul 2009 17:39:58 -0000 1.26 +++ libdap.spec 25 Jul 2009 05:29:26 -0000 1.27 @@ -1,7 +1,7 @@ Name: libdap Summary: The C++ DAP2 library from OPeNDAP Version: 3.9.3 -Release: 1%{?dist} +Release: 2%{?dist} # the deflate program is covered by the W3C license License: LGPLv2+ and W3C @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 3.9.3-1 - Update to 3.9.3 From jkeating at fedoraproject.org Sat Jul 25 05:29:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:29:39 +0000 (UTC) Subject: rpms/libdbi/devel libdbi.spec,1.24,1.25 Message-ID: <20090725052939.A597D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8843 Modified Files: libdbi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdbi/devel/libdbi.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libdbi.spec 25 Feb 2009 14:18:27 -0000 1.24 +++ libdbi.spec 25 Jul 2009 05:29:39 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Database Independent Abstraction Layer for C Name: libdbi Version: 0.8.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries License: LGPLv2+ URL: http://libdbi.sourceforge.net/ @@ -78,6 +78,9 @@ rm -f ${RPM_BUILD_ROOT}%{_libdir}/libdbi %{_libdir}/libdbi.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:29:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:29:53 +0000 (UTC) Subject: rpms/libdbi-drivers/devel libdbi-drivers.spec,1.17,1.18 Message-ID: <20090725052953.9140E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdbi-drivers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8987 Modified Files: libdbi-drivers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdbi-drivers.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdbi-drivers/devel/libdbi-drivers.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libdbi-drivers.spec 25 Feb 2009 14:19:23 -0000 1.17 +++ libdbi-drivers.spec 25 Jul 2009 05:29:53 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Database-specific drivers for libdbi Name: libdbi-drivers Version: 0.8.3 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Libraries License: LGPLv2+ URL: http://libdbi-drivers.sourceforge.net/ @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT%{_docdir}/libdbi- %{_libdir}/dbd/libdbdsqlite3.* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:30:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:30:07 +0000 (UTC) Subject: rpms/libdc1394/devel libdc1394.spec,1.6,1.7 Message-ID: <20090725053007.8BAF011C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdc1394/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9135 Modified Files: libdc1394.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdc1394.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdc1394/devel/libdc1394.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libdc1394.spec 11 Jun 2009 22:41:38 -0000 1.6 +++ libdc1394.spec 25 Jul 2009 05:30:07 -0000 1.7 @@ -8,7 +8,7 @@ Summary: 1394-based digital camera control library Name: libdc1394 Version: 2.1.2 -Release: 1%{?svn_snapshot}%{?dist} +Release: 2%{?svn_snapshot}%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://sourceforge.net/projects/libdc1394/ @@ -115,6 +115,9 @@ done %{_mandir}/man1/dc1394_*.1.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Tim Niemueller - 2.1.2-1 - Update to latest stable release 2.1.2 From jkeating at fedoraproject.org Sat Jul 25 05:30:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:30:21 +0000 (UTC) Subject: rpms/libdiscid/devel libdiscid.spec,1.5,1.6 Message-ID: <20090725053021.E796F11C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdiscid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9261 Modified Files: libdiscid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdiscid.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdiscid/devel/libdiscid.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libdiscid.spec 25 Feb 2009 14:21:17 -0000 1.5 +++ libdiscid.spec 25 Jul 2009 05:30:21 -0000 1.6 @@ -1,6 +1,6 @@ Name: libdiscid Version: 0.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Library for creating MusicBrainz DiscIDs Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:30:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:30:36 +0000 (UTC) Subject: rpms/libdmapsharing/devel libdmapsharing.spec,1.2,1.3 Message-ID: <20090725053036.967FA11C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdmapsharing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9418 Modified Files: libdmapsharing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdmapsharing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmapsharing/devel/libdmapsharing.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libdmapsharing.spec 24 Jul 2009 00:29:27 -0000 1.2 +++ libdmapsharing.spec 25 Jul 2009 05:30:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: libdmapsharing Version: 1.9.0.9 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Source: http://downloads.sourceforge.net/%name/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 W. Michael Petullo - 1.9.0.9-1 - New upstream version. From jkeating at fedoraproject.org Sat Jul 25 05:30:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:30:50 +0000 (UTC) Subject: rpms/libdmx/devel libdmx.spec,1.22,1.23 Message-ID: <20090725053050.B603711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdmx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9559 Modified Files: libdmx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdmx.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdmx/devel/libdmx.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libdmx.spec 25 Feb 2009 14:22:11 -0000 1.22 +++ libdmx.spec 25 Jul 2009 05:30:50 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X.Org X11 DMX runtime library Name: libdmx Version: 1.0.2 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:31:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:31:04 +0000 (UTC) Subject: rpms/libdnet/devel libdnet.spec,1.11,1.12 Message-ID: <20090725053104.BEA0E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9698 Modified Files: libdnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdnet/devel/libdnet.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libdnet.spec 25 Feb 2009 14:23:04 -0000 1.11 +++ libdnet.spec 25 Jul 2009 05:31:04 -0000 1.12 @@ -2,7 +2,7 @@ Summary: Simple portable interface to lo Name: libdnet Version: 1.12 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: System Environment/Libraries @@ -77,6 +77,9 @@ Requires: %{name} = %{version}-%{release %{_mandir}/man8/*.8* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:31:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:31:19 +0000 (UTC) Subject: rpms/libdockapp/devel libdockapp.spec,1.7,1.8 Message-ID: <20090725053119.C424C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdockapp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9831 Modified Files: libdockapp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdockapp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdockapp/devel/libdockapp.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libdockapp.spec 25 Feb 2009 14:24:00 -0000 1.7 +++ libdockapp.spec 25 Jul 2009 05:31:19 -0000 1.8 @@ -3,7 +3,7 @@ Name: libdockapp Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DockApp Development Standard Library Group: System Environment/Libraries @@ -108,6 +108,9 @@ fi %{catalogue}/dockapp %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:31:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:31:37 +0000 (UTC) Subject: rpms/libdrm/devel libdrm.spec,1.78,1.79 Message-ID: <20090725053137.6F5AA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdrm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9988 Modified Files: libdrm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdrm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdrm/devel/libdrm.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- libdrm.spec 16 Jul 2009 23:14:58 -0000 1.78 +++ libdrm.spec 25 Jul 2009 05:31:37 -0000 1.79 @@ -3,7 +3,7 @@ Summary: Direct Rendering Manager runtime library Name: libdrm Version: 2.4.12 -Release: 0.2%{?dist} +Release: 0.3%{?dist} License: MIT Group: System Environment/Libraries URL: http://dri.sourceforge.net @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdrm_nouveau.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.12-0.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Ben Skeggs 2.4.12-0.2 - rebase onto git snapshot From jkeating at fedoraproject.org Sat Jul 25 05:31:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:31:53 +0000 (UTC) Subject: rpms/libdsk/devel libdsk.spec,1.10,1.11 Message-ID: <20090725053153.14DC111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdsk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10123 Modified Files: libdsk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdsk.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdsk/devel/libdsk.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libdsk.spec 25 Feb 2009 14:24:57 -0000 1.10 +++ libdsk.spec 25 Jul 2009 05:31:52 -0000 1.11 @@ -1,6 +1,6 @@ Name: libdsk Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for accessing disk images Group: System Environment/Libraries License: LGPLv2+ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:32:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:32:09 +0000 (UTC) Subject: rpms/libdv/devel libdv.spec,1.27,1.28 Message-ID: <20090725053209.0515A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10253 Modified Files: libdv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdv/devel/libdv.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libdv.spec 3 Mar 2009 22:56:32 -0000 1.27 +++ libdv.spec 25 Jul 2009 05:32:08 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Software decoder for DV format video Name: libdv Version: 1.0.0 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://libdv.sourceforge.net/ @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libdv.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Robert Scheck 1.0.0-7 - Rebuilt against libtool 2.2 From jkeating at fedoraproject.org Sat Jul 25 05:32:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:32:24 +0000 (UTC) Subject: rpms/libdvdnav/devel libdvdnav.spec,1.14,1.15 Message-ID: <20090725053224.1CF5011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdvdnav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10391 Modified Files: libdvdnav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdvdnav.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdvdnav/devel/libdvdnav.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libdvdnav.spec 25 Feb 2009 14:26:51 -0000 1.14 +++ libdvdnav.spec 25 Jul 2009 05:32:23 -0000 1.15 @@ -1,6 +1,6 @@ Name: libdvdnav Version: 4.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for reading DVD video discs based on Ogle code Group: System Environment/Libraries @@ -78,6 +78,9 @@ popd %{_libdir}/pkgconfig/dvdnavmini.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:32:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:32:39 +0000 (UTC) Subject: rpms/libdvdread/devel libdvdread.spec,1.11,1.12 Message-ID: <20090725053239.254BA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdvdread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10527 Modified Files: libdvdread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdvdread.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdvdread/devel/libdvdread.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libdvdread.spec 28 Jun 2009 02:30:10 -0000 1.11 +++ libdvdread.spec 25 Jul 2009 05:32:39 -0000 1.12 @@ -1,6 +1,6 @@ Name: libdvdread Version: 4.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A library for reading DVD video discs based on Ogle code Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/dvdread.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Rex Dieter - 4.1.3-3 - fix multilib conflict (#477687) From jkeating at fedoraproject.org Sat Jul 25 05:32:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:32:52 +0000 (UTC) Subject: rpms/libdwarf/devel libdwarf.spec,1.1,1.2 Message-ID: <20090725053252.D3F2D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libdwarf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10666 Modified Files: libdwarf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libdwarf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libdwarf/devel/libdwarf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libdwarf.spec 1 Apr 2009 16:55:45 -0000 1.1 +++ libdwarf.spec 25 Jul 2009 05:32:52 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Library to access the DWARF Debugging file format Name: libdwarf Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://reality.sgiweb.org/davea/dwarf.html @@ -101,6 +101,9 @@ rm -rf %{buildroot} %{_bindir}/dwarfdump %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.20090324-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 - Suravee Suthikulpanit - 0.20090324-4 - Adding _smp_mflags for libdwarf build From jkeating at fedoraproject.org Sat Jul 25 05:33:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:33:07 +0000 (UTC) Subject: rpms/libeXosip2/devel libeXosip2.spec,1.15,1.16 Message-ID: <20090725053307.C16D211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libeXosip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10800 Modified Files: libeXosip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libeXosip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libeXosip2/devel/libeXosip2.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libeXosip2.spec 25 Feb 2009 14:28:39 -0000 1.15 +++ libeXosip2.spec 25 Jul 2009 05:33:07 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A library that hides the complexity of using the SIP protocol Name: libeXosip2 Version: 3.1.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://savannah.nongnu.org/projects/eXosip @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:33:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:33:22 +0000 (UTC) Subject: rpms/libebml/devel libebml.spec,1.20,1.21 Message-ID: <20090725053322.F004311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libebml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10951 Modified Files: libebml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libebml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libebml/devel/libebml.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libebml.spec 25 Feb 2009 14:29:34 -0000 1.20 +++ libebml.spec 25 Jul 2009 05:33:22 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Extensible Binary Meta Language library Name: libebml Version: 0.7.8 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.matroska.org/ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:33:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:33:38 +0000 (UTC) Subject: rpms/libedit/devel libedit.spec,1.14,1.15 Message-ID: <20090725053338.609A411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11081 Modified Files: libedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/libedit/devel/libedit.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libedit.spec 25 Feb 2009 14:30:31 -0000 1.14 +++ libedit.spec 25 Jul 2009 05:33:38 -0000 1.15 @@ -3,7 +3,7 @@ Summary: The NetBSD Editline library Name: libedit Version: 2.11 -Release: 3.%{snap}cvs%{?dist} +Release: 4.%{snap}cvs%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.thrysoee.dk/editline/ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/editline/readline.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.11-4.20080712cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.11-3.20080712cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:33:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:33:53 +0000 (UTC) Subject: rpms/libepc/devel libepc.spec,1.13,1.14 Message-ID: <20090725053353.02B2511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libepc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11216 Modified Files: libepc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libepc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libepc/devel/libepc.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libepc.spec 5 Jun 2009 21:01:29 -0000 1.13 +++ libepc.spec 25 Jul 2009 05:33:52 -0000 1.14 @@ -5,7 +5,7 @@ Name: libepc Version: 0.3.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy Publish and Consume library Group: System Environment/Libraries @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Brian Pepple - 0.3.10-1 - Update to 0.3.10. From jkeating at fedoraproject.org Sat Jul 25 05:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:34:08 +0000 (UTC) Subject: rpms/liberation-fonts/devel liberation-fonts.spec,1.42,1.43 Message-ID: <20090725053408.25FFE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liberation-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11361 Modified Files: liberation-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liberation-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/liberation-fonts/devel/liberation-fonts.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- liberation-fonts.spec 21 Jul 2009 02:30:24 -0000 1.42 +++ liberation-fonts.spec 25 Jul 2009 05:34:08 -0000 1.43 @@ -10,7 +10,7 @@ New. Name: %{fontname}-fonts Summary: Fonts to replace commonly used Microsoft Windows fonts Version: 1.05.1.20090721 -Release: 1%{?dist} +Release: 2%{?dist} # The license of the Liberation Fonts is a EULA that contains GPLv2 and two # exceptions: # The first exception is the standard FSF font exception. @@ -112,6 +112,9 @@ mkfontscale %{buildroot}%{_fontdir} rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.05.1.20090721-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Caius 'kaio' Chance - 1.05.1.20090721-1.fc12 - Fixed fontforge scripting of sfd -> ttf generation. - Checked existance of traditionat kern table in Sans and Serif. From jkeating at fedoraproject.org Sat Jul 25 05:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:34:22 +0000 (UTC) Subject: rpms/libertas-usb8388-firmware/devel libertas-usb8388-firmware.spec, 1.7, 1.8 Message-ID: <20090725053422.D2EFF11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libertas-usb8388-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11486 Modified Files: libertas-usb8388-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libertas-usb8388-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/libertas-usb8388-firmware/devel/libertas-usb8388-firmware.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libertas-usb8388-firmware.spec 25 Feb 2009 14:33:16 -0000 1.7 +++ libertas-usb8388-firmware.spec 25 Jul 2009 05:34:22 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Firmware for Marvell Libertas USB 8388 Network Adapter Name: libertas-usb8388-firmware Version: 5.110.22.p23 -Release: 2%{?dist} +Release: 3%{?dist} # up the Epoch because the Marvel version scheme is less than Cozybit's Epoch: 2 License: Redistributable, no modification permitted @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:5.110.22.p23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2:5.110.22.p23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:34:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:34:39 +0000 (UTC) Subject: rpms/libesmtp/devel libesmtp.spec,1.17,1.18 Message-ID: <20090725053439.2669C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libesmtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11626 Modified Files: libesmtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libesmtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libesmtp/devel/libesmtp.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libesmtp.spec 25 Feb 2009 14:34:12 -0000 1.17 +++ libesmtp.spec 25 Jul 2009 05:34:38 -0000 1.18 @@ -3,7 +3,7 @@ Summary: SMTP client library Name: libesmtp Version: 1.0.4 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.stafford.uklinux.net/libesmtp/%{name}-%{version}.tar.bz2 @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libesmtp.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:34:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:34:52 +0000 (UTC) Subject: rpms/libetpan/devel libetpan.spec,1.28,1.29 Message-ID: <20090725053452.A6DAE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libetpan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11772 Modified Files: libetpan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libetpan.spec =================================================================== RCS file: /cvs/pkgs/rpms/libetpan/devel/libetpan.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libetpan.spec 15 Jul 2009 18:51:32 -0000 1.28 +++ libetpan.spec 25 Jul 2009 05:34:52 -0000 1.29 @@ -1,6 +1,6 @@ Name: libetpan Version: 0.58 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable, efficient middleware for different kinds of mail access Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.58-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Andreas Bierfert - 0.58-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 05:35:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:35:06 +0000 (UTC) Subject: rpms/libev/devel libev.spec,1.10,1.11 Message-ID: <20090725053506.BB78011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11934 Modified Files: libev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libev.spec =================================================================== RCS file: /cvs/pkgs/rpms/libev/devel/libev.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libev.spec 17 Jul 2009 20:44:56 -0000 1.10 +++ libev.spec 25 Jul 2009 05:35:06 -0000 1.11 @@ -2,7 +2,7 @@ Name: libev Version: 3.70 -Release: 2%{?dist} +Release: 3%{?dist} Summary: High-performance event loop/event model with lots of features Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.70-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Michal Nowak - 3.70-2 - spec file change, which prevented uploading most recent tarball so the RPM was "3.70" but tarball was from 3.60 From jkeating at fedoraproject.org Sat Jul 25 05:35:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:35:20 +0000 (UTC) Subject: rpms/libevent/devel libevent.spec,1.19,1.20 Message-ID: <20090725053520.D608C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libevent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12079 Modified Files: libevent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libevent.spec =================================================================== RCS file: /cvs/pkgs/rpms/libevent/devel/libevent.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libevent.spec 20 Apr 2009 16:10:05 -0000 1.19 +++ libevent.spec 25 Jul 2009 05:35:20 -0000 1.20 @@ -1,6 +1,6 @@ Name: libevent Version: 1.4.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Abstract asynchronous event notification library Group: System Environment/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Steve Dickson 1.4.10-1 - Updated to latest stable upstream version: 1.4.10 From jkeating at fedoraproject.org Sat Jul 25 05:35:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:35:34 +0000 (UTC) Subject: rpms/libewf/devel libewf.spec,1.13,1.14 Message-ID: <20090725053534.E546911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libewf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12226 Modified Files: libewf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libewf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libewf/devel/libewf.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libewf.spec 29 Jun 2009 18:56:29 -0000 1.13 +++ libewf.spec 25 Jul 2009 05:35:34 -0000 1.14 @@ -1,6 +1,6 @@ Name: libewf Version: 20080501 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Library for the Expert Witness Compression Format (EWF) Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080501-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 20080501-7 - Switch to libuuid-devel usage over e2fsprogs-devel From jkeating at fedoraproject.org Sat Jul 25 05:35:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:35:49 +0000 (UTC) Subject: rpms/libexif/devel libexif.spec,1.39,1.40 Message-ID: <20090725053549.89D6111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libexif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12358 Modified Files: libexif.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libexif.spec =================================================================== RCS file: /cvs/pkgs/rpms/libexif/devel/libexif.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- libexif.spec 25 Feb 2009 14:39:04 -0000 1.39 +++ libexif.spec 25 Jul 2009 05:35:49 -0000 1.40 @@ -1,7 +1,7 @@ Summary: Library for extracting extra information from image files Name: libexif Version: 0.6.16 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://libexif.sourceforge.net/ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libexif.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:36:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:36:02 +0000 (UTC) Subject: rpms/libextractor/devel libextractor.spec,1.12,1.13 Message-ID: <20090725053602.B64A511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libextractor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12485 Modified Files: libextractor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libextractor.spec =================================================================== RCS file: /cvs/pkgs/rpms/libextractor/devel/libextractor.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libextractor.spec 7 Mar 2009 12:02:38 -0000 1.12 +++ libextractor.spec 25 Jul 2009 05:36:02 -0000 1.13 @@ -6,7 +6,7 @@ Name: libextractor Version: 0.5.22 -Release: %release_func 1 +Release: %release_func 2 Summary: Simple library for keyword extraction Group: System Environment/Libraries @@ -248,6 +248,9 @@ test "$1" != 0 || \ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Enrico Scholz - 0.5.22-1 - updated to 0.5.22 - disabled rpm plugin for now as it does not build with rpm-4.6 From jkeating at fedoraproject.org Sat Jul 25 05:36:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:36:19 +0000 (UTC) Subject: rpms/libfac/devel libfac.spec,1.23,1.24 Message-ID: <20090725053619.1DDC111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12663 Modified Files: libfac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfac.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfac/devel/libfac.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libfac.spec 25 Feb 2009 17:54:30 -0000 1.23 +++ libfac.spec 25 Jul 2009 05:36:18 -0000 1.24 @@ -2,7 +2,7 @@ Summary: An extension to Singular-factory Name: libfac Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Url: http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/Libfac/ @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Rex Dieter 3.1.0-1 - libfac-3-1-0 From jkeating at fedoraproject.org Sat Jul 25 05:36:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:36:33 +0000 (UTC) Subject: rpms/libfakekey/devel libfakekey.spec,1.2,1.3 Message-ID: <20090725053633.DFB5611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfakekey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12816 Modified Files: libfakekey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfakekey.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfakekey/devel/libfakekey.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libfakekey.spec 25 Feb 2009 14:41:53 -0000 1.2 +++ libfakekey.spec 25 Jul 2009 05:36:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: libfakekey Version: 0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for converting characters to X key-presses Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libfakekey.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:36:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:36:47 +0000 (UTC) Subject: rpms/libffi/devel libffi.spec,1.4,1.5 Message-ID: <20090725053647.CC95C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libffi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12959 Modified Files: libffi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libffi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libffi/devel/libffi.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libffi.spec 25 Feb 2009 14:42:48 -0000 1.4 +++ libffi.spec 25 Jul 2009 05:36:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: libffi Version: 3.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A portable foreign function interface library Group: System Environment/Libraries @@ -97,6 +97,9 @@ fi %{_infodir}/libffi.info.gz %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:37:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:37:01 +0000 (UTC) Subject: rpms/libfishsound/devel libfishsound.spec,1.6,1.7 Message-ID: <20090725053701.A2EA111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfishsound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13095 Modified Files: libfishsound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfishsound.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfishsound/devel/libfishsound.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libfishsound.spec 25 Feb 2009 14:43:44 -0000 1.6 +++ libfishsound.spec 25 Jul 2009 05:37:01 -0000 1.7 @@ -1,6 +1,6 @@ Name: libfishsound Version: 0.9.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple programming interface for Xiph.Org codecs Group: System Environment/Libraries @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:37:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:37:15 +0000 (UTC) Subject: rpms/libflaim/devel libflaim.spec,1.14,1.15 Message-ID: <20090725053715.C5BF611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libflaim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13235 Modified Files: libflaim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libflaim.spec =================================================================== RCS file: /cvs/pkgs/rpms/libflaim/devel/libflaim.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libflaim.spec 9 Jun 2009 19:25:41 -0000 1.14 +++ libflaim.spec 25 Jul 2009 05:37:15 -0000 1.15 @@ -8,7 +8,7 @@ BuildRequires: ncurses-devel Summary: Embeddable cross-platform database engine URL: http://forge.novell.com/modules/xfmod/project/?flaim Version: 4.9.1052 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: System Environment/Libraries Source: http://forgeftp.novell.com/flaim/development/flaim/downloads/source/%{name}-4.9.1052.tar.gz @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/flaimtk.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.9.1052-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Ville Skytt? - 4.9.1052-3 - Build with $RPM_OPT_FLAGS (#500062). From jkeating at fedoraproject.org Sat Jul 25 05:37:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:37:29 +0000 (UTC) Subject: rpms/libfli/devel libfli.spec,1.3,1.4 Message-ID: <20090725053729.BA10811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13378 Modified Files: libfli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfli.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfli/devel/libfli.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libfli.spec 25 Feb 2009 14:45:45 -0000 1.3 +++ libfli.spec 25 Jul 2009 05:37:29 -0000 1.4 @@ -1,6 +1,6 @@ Name: libfli Version: 1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for FLI CCD Camera & Filter Wheels %define majorver 1 @@ -58,6 +58,9 @@ rm -fr %{buildroot} %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:37:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:37:43 +0000 (UTC) Subject: rpms/libfontenc/devel libfontenc.spec,1.27,1.28 Message-ID: <20090725053743.52C6311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfontenc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13516 Modified Files: libfontenc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfontenc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfontenc/devel/libfontenc.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libfontenc.spec 23 Jul 2009 13:41:07 -0000 1.27 +++ libfontenc.spec 25 Jul 2009 05:37:43 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libfontenc runtime library Name: libfontenc Version: 1.0.4 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/fontenc.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-9 - Un-requires xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 05:37:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:37:59 +0000 (UTC) Subject: rpms/libfplll/devel libfplll.spec,1.3,1.4 Message-ID: <20090725053759.DAB3611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfplll/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13690 Modified Files: libfplll.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfplll.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfplll/devel/libfplll.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libfplll.spec 25 Feb 2009 14:49:40 -0000 1.3 +++ libfplll.spec 25 Jul 2009 05:37:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: libfplll Version: 3.0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: LLL-reduces euclidian lattices Group: System Environment/Libraries License: LGPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:38:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:38:14 +0000 (UTC) Subject: rpms/libfprint/devel libfprint.spec,1.23,1.24 Message-ID: <20090725053814.0893A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13833 Modified Files: libfprint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfprint/devel/libfprint.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libfprint.spec 21 Jul 2009 13:02:16 -0000 1.23 +++ libfprint.spec 25 Jul 2009 05:38:13 -0000 1.24 @@ -1,6 +1,6 @@ Name: libfprint Version: 0.1.0 -Release: 9.pre2%{?dist} +Release: 10.pre2%{?dist} Summary: Tool kit for fingerprint scanner Group: System Environment/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-10.pre2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bastien Nocera 0.1.0-9.pre2 - Use gdk-pixbuf for image manipulation instead of ImageMagick (#472103) From jkeating at fedoraproject.org Sat Jul 25 05:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:38:27 +0000 (UTC) Subject: rpms/libfreebob/devel libfreebob.spec,1.14,1.15 Message-ID: <20090725053827.E2E6F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfreebob/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13989 Modified Files: libfreebob.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfreebob.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfreebob/devel/libfreebob.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libfreebob.spec 5 Mar 2009 16:43:11 -0000 1.14 +++ libfreebob.spec 25 Jul 2009 05:38:27 -0000 1.15 @@ -1,7 +1,7 @@ Summary: FreeBoB firewire audio driver library Name: libfreebob Version: 1.0.11 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Libraries Source0: http://surfnet.dl.sourceforge.net/sourceforge/freebob/libfreebob-%{version}.tar.gz @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Caol?n McNamara - 1.0.11-5 - fix up includes for gcc44 From jkeating at fedoraproject.org Sat Jul 25 05:38:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:38:41 +0000 (UTC) Subject: rpms/libftdi/devel libftdi.spec,1.8,1.9 Message-ID: <20090725053841.A9CE211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14149 Modified Files: libftdi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/devel/libftdi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libftdi.spec 1 Jul 2009 09:02:06 -0000 1.8 +++ libftdi.spec 25 Jul 2009 05:38:41 -0000 1.9 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Lucian Langa - 0.16-3 - added udev rules - addedd c++, python bindings From jkeating at fedoraproject.org Sat Jul 25 05:39:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:39:11 +0000 (UTC) Subject: rpms/libgadu/devel libgadu.spec,1.10,1.11 Message-ID: <20090725053911.584A111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgadu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14419 Modified Files: libgadu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgadu.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgadu/devel/libgadu.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libgadu.spec 25 Feb 2009 14:54:56 -0000 1.10 +++ libgadu.spec 25 Jul 2009 05:39:11 -0000 1.11 @@ -1,6 +1,6 @@ Name: libgadu Version: 1.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Gadu-gadu protocol compatible communications library License: LGPLv2 Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:38:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:38:55 +0000 (UTC) Subject: rpms/libfwbuilder/devel libfwbuilder.spec,1.32,1.33 Message-ID: <20090725053855.EA9EC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libfwbuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14281 Modified Files: libfwbuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libfwbuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/libfwbuilder/devel/libfwbuilder.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libfwbuilder.spec 28 Jun 2009 18:57:24 -0000 1.32 +++ libfwbuilder.spec 25 Jul 2009 05:38:55 -0000 1.33 @@ -1,7 +1,7 @@ Name: libfwbuilder Summary: Firewall Builder API Version: 3.0.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.fwbuilder.org/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Ralf Ertzinger 3.0.5-1 - Update to 3.0.5 From jkeating at fedoraproject.org Sat Jul 25 05:39:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:39:26 +0000 (UTC) Subject: rpms/libgail-gnome/devel libgail-gnome.spec,1.31,1.32 Message-ID: <20090725053926.3EC7E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgail-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14577 Modified Files: libgail-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgail-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgail-gnome/devel/libgail-gnome.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libgail-gnome.spec 25 Feb 2009 14:55:55 -0000 1.31 +++ libgail-gnome.spec 25 Jul 2009 05:39:26 -0000 1.32 @@ -7,7 +7,7 @@ Summary: Accessibility implementation for GTK+ and GNOME libraries Name: libgail-gnome Version: 1.20.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://developer.gnome.org/projects/gap Source0: http://download.gnome.org/sources/libgail-gnome/1.20/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.20.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.20.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:39:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:39:41 +0000 (UTC) Subject: rpms/libgalago/devel libgalago.spec,1.16,1.17 Message-ID: <20090725053941.444DE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgalago/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14721 Modified Files: libgalago.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgalago.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgalago/devel/libgalago.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libgalago.spec 25 Feb 2009 14:56:54 -0000 1.16 +++ libgalago.spec 25 Jul 2009 05:39:41 -0000 1.17 @@ -1,6 +1,6 @@ Name: libgalago Version: 0.5.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Galago presence library Group: System Environment/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:39:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:39:57 +0000 (UTC) Subject: rpms/libgalago-gtk/devel libgalago-gtk.spec,1.7,1.8 Message-ID: <20090725053957.1263411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgalago-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14880 Modified Files: libgalago-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgalago-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgalago-gtk/devel/libgalago-gtk.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libgalago-gtk.spec 25 Feb 2009 14:57:51 -0000 1.7 +++ libgalago-gtk.spec 25 Jul 2009 05:39:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: libgalago-gtk Version: 0.5.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: GTK+ widgets for the Galago presence framework Group: System Environment/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:40:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:40:13 +0000 (UTC) Subject: rpms/libgarmin/devel libgarmin.spec,1.1,1.2 Message-ID: <20090725054013.22FDC11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgarmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15061 Modified Files: libgarmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgarmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgarmin/devel/libgarmin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libgarmin.spec 17 Apr 2009 19:16:38 -0000 1.1 +++ libgarmin.spec 25 Jul 2009 05:40:12 -0000 1.2 @@ -3,7 +3,7 @@ Name: libgarmin Version: 0 -Release: 0.6.%{alphatag}%{vcs}%{?dist} +Release: 0.7.%{alphatag}%{vcs}%{?dist} Summary: C library to parse and use Garmin image files Group: System Environment/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0-0.7.20090212svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Fabian Affolter - 0-0.6.20090212svn - Added virtual provide - Changed group tag From jkeating at fedoraproject.org Sat Jul 25 05:40:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:40:29 +0000 (UTC) Subject: rpms/libgconf-java/devel libgconf-java.spec,1.48,1.49 Message-ID: <20090725054029.3429D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgconf-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15229 Modified Files: libgconf-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgconf-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgconf-java/devel/libgconf-java.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- libgconf-java.spec 25 Feb 2009 14:58:45 -0000 1.48 +++ libgconf-java.spec 25 Jul 2009 05:40:29 -0000 1.49 @@ -3,7 +3,7 @@ Summary: Java bindings for GConf Name: %{name_base} Version: 2.12.4 -Release: 13%{?dist} +Release: 14%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://java-gnome.sourceforge.net @@ -105,6 +105,9 @@ rm -rf %{buildroot} %{_datadir}/java/*.zip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:40:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:40:41 +0000 (UTC) Subject: rpms/libgcroots/devel libgcroots.spec,1.3,1.4 Message-ID: <20090725054041.C65EC11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgcroots/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15367 Modified Files: libgcroots.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgcroots.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgcroots/devel/libgcroots.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libgcroots.spec 25 Feb 2009 14:59:44 -0000 1.3 +++ libgcroots.spec 25 Jul 2009 05:40:41 -0000 1.4 @@ -1,6 +1,6 @@ Name: libgcroots Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT URL: http://code.google.com/p/sigscheme/wiki/libgcroots BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gcroots.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:40:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:40:56 +0000 (UTC) Subject: rpms/libgcrypt/devel libgcrypt.spec,1.38,1.39 Message-ID: <20090725054056.B4E6311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15529 Modified Files: libgcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgcrypt/devel/libgcrypt.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- libgcrypt.spec 18 Jun 2009 21:30:12 -0000 1.38 +++ libgcrypt.spec 25 Jul 2009 05:40:56 -0000 1.39 @@ -1,6 +1,6 @@ Name: libgcrypt Version: 1.4.4 -Release: 6%{?dist} +Release: 7%{?dist} Source0: libgcrypt-%{version}-hobbled.tar.bz2 # The original libgcrypt sources now contain potentially patented ECC # cipher support. We have to remove it in the tarball we ship with @@ -147,6 +147,9 @@ exit 0 %{_infodir}/gcrypt.info* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.4.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Tomas Mraz 1.4.4-6 - and now really apply the padlock patch From jkeating at fedoraproject.org Sat Jul 25 05:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:41:11 +0000 (UTC) Subject: rpms/libgda/devel libgda.spec,1.48,1.49 Message-ID: <20090725054111.15CA911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15668 Modified Files: libgda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgda.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgda/devel/libgda.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- libgda.spec 25 Jun 2009 07:15:39 -0000 1.48 +++ libgda.spec 25 Jul 2009 05:41:10 -0000 1.49 @@ -41,7 +41,7 @@ Name: libgda Epoch: 1 Version: 4.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for writing gnome database programs Group: System Environment/Libraries License: LGPLv2+ @@ -573,6 +573,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:4.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Denis Leroy - 1:4.0.2-1 - Update to upstream 4.0.2 - Use system sqlite library From jkeating at fedoraproject.org Sat Jul 25 05:41:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:41:24 +0000 (UTC) Subject: rpms/libgdamm/devel libgdamm.spec,1.17,1.18 Message-ID: <20090725054124.C4D3D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdamm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15792 Modified Files: libgdamm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdamm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdamm/devel/libgdamm.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libgdamm.spec 25 Jun 2009 07:16:02 -0000 1.17 +++ libgdamm.spec 25 Jul 2009 05:41:24 -0000 1.18 @@ -1,6 +1,6 @@ Name: libgdamm Version: 3.99.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrappers for libgda Group: System Environment/Libraries License: LGPLv2+ @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.99.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Denis Leroy - 3.99.15-1 - Update to upstream 3.99.15, as part of glom update From jkeating at fedoraproject.org Sat Jul 25 05:41:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:41:38 +0000 (UTC) Subject: rpms/libgdata/devel libgdata.spec,1.4,1.5 Message-ID: <20090725054138.2167D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15921 Modified Files: libgdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdata/devel/libgdata.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libgdata.spec 20 Jul 2009 20:00:32 -0000 1.4 +++ libgdata.spec 25 Jul 2009 05:41:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: libgdata Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for the GData protocol Group: System Environment/Libraries @@ -69,6 +69,9 @@ cd gdata/tests %{_datadir}/gtk-doc/html/gdata/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Bastien Nocera 0.4.0-1 - Update to 0.4.0 From jkeating at fedoraproject.org Sat Jul 25 05:41:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:41:51 +0000 (UTC) Subject: rpms/libgdbus/devel libgdbus.spec,1.2,1.3 Message-ID: <20090725054151.2366511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16055 Modified Files: libgdbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdbus/devel/libgdbus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libgdbus.spec 25 Feb 2009 15:03:07 -0000 1.2 +++ libgdbus.spec 25 Jul 2009 05:41:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: libgdbus Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for simple D-Bus integration with GLib Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:42:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:42:05 +0000 (UTC) Subject: rpms/libgdiplus/devel libgdiplus.spec,1.44,1.45 Message-ID: <20090725054205.2C2BB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdiplus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16193 Modified Files: libgdiplus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdiplus.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdiplus/devel/libgdiplus.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- libgdiplus.spec 14 Jun 2009 11:17:44 -0000 1.44 +++ libgdiplus.spec 25 Jul 2009 05:42:05 -0000 1.45 @@ -1,6 +1,6 @@ Name: libgdiplus Version: 2.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: libgdiplus: An Open Source implementation of the GDI+ API Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_libdir}/lib*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Paul F. Johnson 2.4.2-1 - bump to 2.4.2 preview From jkeating at fedoraproject.org Sat Jul 25 05:42:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:42:19 +0000 (UTC) Subject: rpms/libgdither/devel libgdither.spec,1.1,1.2 Message-ID: <20090725054219.E190811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdither/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16353 Modified Files: libgdither.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdither.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdither/devel/libgdither.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libgdither.spec 24 Mar 2009 18:26:02 -0000 1.1 +++ libgdither.spec 25 Jul 2009 05:42:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: libgdither Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for applying dithering to PCM audio sources Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libgdither.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 27 2008 kwizart < kwizart at gmail.com > - 0.6-1 - Backport patch from gavl From jkeating at fedoraproject.org Sat Jul 25 05:42:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:42:35 +0000 (UTC) Subject: rpms/libgdl/devel libgdl.spec,1.15,1.16 Message-ID: <20090725054235.04E7A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16500 Modified Files: libgdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgdl/devel/libgdl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libgdl.spec 10 Jul 2009 05:43:00 -0000 1.15 +++ libgdl.spec 25 Jul 2009 05:42:34 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Components and library for GNOME development tools Name: libgdl Version: 2.27.3 -Release: 1%{?dist} +Release: 2%{?dist} # Mixed source licensing scenario. License: (GPLv2 and GPLv2+ and LGPLv2+) Group: Development/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}-1.0/gdl %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Debarshi Ray - 2.27.3-1 - Version bump to 2.27.3. * Fixed soname generation. From jkeating at fedoraproject.org Sat Jul 25 05:43:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:43:14 +0000 (UTC) Subject: rpms/libgeda/devel libgeda.spec,1.18,1.19 Message-ID: <20090725054314.CE74311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgeda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16729 Modified Files: libgeda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgeda.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgeda/devel/libgeda.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libgeda.spec 25 Feb 2009 15:05:02 -0000 1.18 +++ libgeda.spec 25 Jul 2009 05:43:14 -0000 1.19 @@ -2,7 +2,7 @@ Name: libgeda Version: 20081231 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries for the gEDA project Group: System Environment/Libraries From jkeating at fedoraproject.org Sat Jul 25 05:43:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:43:30 +0000 (UTC) Subject: rpms/libgee/devel libgee.spec,1.8,1.9 Message-ID: <20090725054330.6EC4311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16891 Modified Files: libgee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgee.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgee/devel/libgee.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libgee.spec 2 Mar 2009 15:53:09 -0000 1.8 +++ libgee.spec 25 Jul 2009 05:43:30 -0000 1.9 @@ -1,6 +1,6 @@ Name: libgee Version: 0.1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GObject collection library Group: System Environment/Libraries @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Michel Salim - 0.1.5-1 - Update to 0.1.5 From jkeating at fedoraproject.org Sat Jul 25 05:43:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:43:46 +0000 (UTC) Subject: rpms/libgeotiff/devel libgeotiff.spec,1.10,1.11 Message-ID: <20090725054346.8E4B311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgeotiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17055 Modified Files: libgeotiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgeotiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgeotiff/devel/libgeotiff.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libgeotiff.spec 22 Apr 2009 20:24:10 -0000 1.10 +++ libgeotiff.spec 25 Jul 2009 05:43:46 -0000 1.11 @@ -1,6 +1,6 @@ Name: libgeotiff Version: 1.2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GeoTIFF format library Group: System Environment/Libraries License: MIT @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Milos Jakubicek - 1.2.5-4 - Fix FTBFS: use gcc -shared instead of ld -shared to compile with -fstack-protector From jkeating at fedoraproject.org Sat Jul 25 05:44:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:44:01 +0000 (UTC) Subject: rpms/libglade/devel libglade.spec,1.6,1.7 Message-ID: <20090725054401.6F74711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17208 Modified Files: libglade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglade.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglade/devel/libglade.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libglade.spec 21 Apr 2009 11:12:51 -0000 1.6 +++ libglade.spec 25 Jul 2009 05:44:01 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Gnome-1 support library for loading user interfaces Name: libglade Version: 0.17 -Release: 23%{?dist} +Release: 24%{?dist} Epoch: 1 License: LGPLv2+ Group: System Environment/Libraries @@ -109,6 +109,9 @@ that you can use to develop libglade app %doc %{_datadir}/gnome/html/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.17-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Paul Howarth 1:0.17-23 - use an alternative approach to rpath-fixing - hacking the supplied libtool rather than trying to use the system one From jkeating at fedoraproject.org Sat Jul 25 05:44:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:44:17 +0000 (UTC) Subject: rpms/libglade-java/devel libglade-java.spec,1.54,1.55 Message-ID: <20090725054417.47A9011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglade-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17367 Modified Files: libglade-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglade-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglade-java/devel/libglade-java.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- libglade-java.spec 25 Feb 2009 15:09:25 -0000 1.54 +++ libglade-java.spec 25 Jul 2009 05:44:17 -0000 1.55 @@ -15,7 +15,7 @@ Summary: Java bindings for libglade Name: %{java_pkg_prefix}%{name_base} Version: 2.12.5 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://java-gnome.sourceforge.net @@ -118,6 +118,9 @@ rm -rf %{buildroot} %{_datadir}/java/*.zip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:44:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:44:32 +0000 (UTC) Subject: rpms/libglade2/devel libglade2.spec,1.40,1.41 Message-ID: <20090725054432.6594011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglade2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17501 Modified Files: libglade2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglade2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglade2/devel/libglade2.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- libglade2.spec 15 Jun 2009 00:08:00 -0000 1.40 +++ libglade2.spec 25 Jul 2009 05:44:32 -0000 1.41 @@ -5,7 +5,7 @@ Summary: The libglade library for loading user interfaces Name: libglade2 Version: 2.6.4 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://download.gnome.org/sources/libglade/2.6/libglade-%{version}.tar.bz2 @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libglade %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Matthias Clasen 2.6.4-2 - Require xml-common From jkeating at fedoraproject.org Sat Jul 25 05:44:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:44:48 +0000 (UTC) Subject: rpms/libglademm24/devel libglademm.spec,1.16,1.17 Message-ID: <20090725054448.98D8F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglademm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17650 Modified Files: libglademm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglademm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglademm24/devel/libglademm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libglademm.spec 25 Feb 2009 15:11:13 -0000 1.16 +++ libglademm.spec 25 Jul 2009 05:44:48 -0000 1.17 @@ -1,6 +1,6 @@ Name: libglademm24 Version: 2.6.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ wrapper for libglade @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:45:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:45:05 +0000 (UTC) Subject: rpms/libglfw/devel libglfw.spec,1.2,1.3 Message-ID: <20090725054505.45BF511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglfw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17833 Modified Files: libglfw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglfw.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglfw/devel/libglfw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libglfw.spec 25 Feb 2009 15:12:04 -0000 1.2 +++ libglfw.spec 25 Jul 2009 05:45:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: libglfw Version: 2.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Framework for OpenGL application development Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %doc docs/*.pdf docs/*.txt examples %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:45:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:45:21 +0000 (UTC) Subject: rpms/libglpng/devel libglpng.spec,1.1,1.2 Message-ID: <20090725054521.6022111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libglpng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17986 Modified Files: libglpng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libglpng.spec =================================================================== RCS file: /cvs/pkgs/rpms/libglpng/devel/libglpng.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libglpng.spec 23 May 2009 15:06:46 -0000 1.1 +++ libglpng.spec 25 Jul 2009 05:45:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: libglpng Version: 1.45 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Toolkit for loading PNG images as OpenGL textures Group: System Environment/Libraries License: MIT @@ -65,5 +65,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.45-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Hans de Goede 1.45-1 - Initial Fedora package, based on Mandriva package From jkeating at fedoraproject.org Sat Jul 25 05:45:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:45:47 +0000 (UTC) Subject: rpms/libgnome/devel libgnome.spec,1.146,1.147 Message-ID: <20090725054547.33ACA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18181 Modified Files: libgnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnome/devel/libgnome.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- libgnome.spec 22 Jul 2009 21:41:28 -0000 1.146 +++ libgnome.spec 25 Jul 2009 05:45:46 -0000 1.147 @@ -14,7 +14,7 @@ Summary: GNOME base library Name: libgnome Version: 2.26.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libgnome/2.26/%{name}-%{version}.tar.bz2 Source1: desktop_gnome_peripherals_monitor.schemas @@ -203,6 +203,9 @@ fi %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Matthias Clasen - 2.26.0-4 - Turn off icons in buttons and menus by default From jkeating at fedoraproject.org Sat Jul 25 05:46:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:46:03 +0000 (UTC) Subject: rpms/libgnome-java/devel libgnome-java.spec,1.52,1.53 Message-ID: <20090725054603.AD05A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnome-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18330 Modified Files: libgnome-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnome-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnome-java/devel/libgnome-java.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- libgnome-java.spec 25 Feb 2009 15:13:52 -0000 1.52 +++ libgnome-java.spec 25 Jul 2009 05:46:03 -0000 1.53 @@ -15,7 +15,7 @@ Summary: Java bindings for libgnome Name: %{java_pkg_prefix}%{name_base} Version: 2.12.4 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://java-gnome.sourceforge.net @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_datadir}/java/*.zip %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.12.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:46:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:46:21 +0000 (UTC) Subject: rpms/libgnomecanvas/devel libgnomecanvas.spec,1.53,1.54 Message-ID: <20090725054621.45A4911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomecanvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18471 Modified Files: libgnomecanvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomecanvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomecanvas/devel/libgnomecanvas.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- libgnomecanvas.spec 17 Mar 2009 15:12:00 -0000 1.53 +++ libgnomecanvas.spec 25 Jul 2009 05:46:20 -0000 1.54 @@ -8,7 +8,7 @@ Summary: GnomeCanvas widget Name: libgnomecanvas Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org/ Source0: http://download.gnome.org/sources/libgnomecanvas/2.26/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/libgnomecanvas %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 05:46:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:46:37 +0000 (UTC) Subject: rpms/libgnomecanvasmm26/devel libgnomecanvasmm.spec,1.20,1.21 Message-ID: <20090725054637.6992711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomecanvasmm26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18621 Modified Files: libgnomecanvasmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomecanvasmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomecanvasmm26/devel/libgnomecanvasmm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libgnomecanvasmm.spec 6 Apr 2009 10:32:55 -0000 1.20 +++ libgnomecanvasmm.spec 25 Jul 2009 05:46:37 -0000 1.21 @@ -1,6 +1,6 @@ Name: libgnomecanvasmm26 Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for Gnome libs (a GUI library for X) @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 6 2009 Denis Leroy - 2.26.0-1 - Update to upstream 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 05:46:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:46:51 +0000 (UTC) Subject: rpms/libgnomecups/devel libgnomecups.spec,1.56,1.57 Message-ID: <20090725054651.0D44B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomecups/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18764 Modified Files: libgnomecups.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomecups.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomecups/devel/libgnomecups.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- libgnomecups.spec 12 Jun 2009 01:32:55 -0000 1.56 +++ libgnomecups.spec 25 Jul 2009 05:46:50 -0000 1.57 @@ -1,7 +1,7 @@ Summary: GNOME library for CUPS integration Name: libgnomecups Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://www.gnome.org @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Matthias Clasen - 0.2.3-6 - Drop cups, dbus dependencies (#192402) From jkeating at fedoraproject.org Sat Jul 25 05:47:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:47:05 +0000 (UTC) Subject: rpms/libgnomedb/devel libgnomedb.spec,1.35,1.36 Message-ID: <20090725054705.8D05811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomedb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18893 Modified Files: libgnomedb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomedb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomedb/devel/libgnomedb.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libgnomedb.spec 25 Feb 2009 15:17:34 -0000 1.35 +++ libgnomedb.spec 25 Jul 2009 05:47:05 -0000 1.36 @@ -1,7 +1,7 @@ Name: libgnomedb Epoch: 1 Version: 3.99.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for writing gnome database programs Group: System Environment/Libraries License: LGPLv2+ @@ -163,6 +163,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:3.99.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.99.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:47:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:47:19 +0000 (UTC) Subject: rpms/libgnomekbd/devel libgnomekbd.spec,1.47,1.48 Message-ID: <20090725054719.70DF311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomekbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19026 Modified Files: libgnomekbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomekbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomekbd/devel/libgnomekbd.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- libgnomekbd.spec 15 Jul 2009 14:39:10 -0000 1.47 +++ libgnomekbd.spec 25 Jul 2009 05:47:18 -0000 1.48 @@ -1,6 +1,6 @@ Name: libgnomekbd Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A keyboard configuration library Group: System Environment/Libraries @@ -128,6 +128,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 05:47:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:47:34 +0000 (UTC) Subject: rpms/libgnomemm26/devel libgnomemm.spec,1.22,1.23 Message-ID: <20090725054734.656BB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomemm26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19164 Modified Files: libgnomemm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomemm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomemm26/devel/libgnomemm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libgnomemm.spec 7 Apr 2009 06:35:11 -0000 1.22 +++ libgnomemm.spec 25 Jul 2009 05:47:33 -0000 1.23 @@ -1,6 +1,6 @@ Name: libgnomemm26 Version: 2.26.0 -Release: 1 +Release: 2 Summary: C++ interface for Gnome libs (a GUI library for X) @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Denis Leroy - 2.26.0-1 - Update to upstream 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 05:47:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:47:50 +0000 (UTC) Subject: rpms/libgnomeprint22/devel libgnomeprint22.spec,1.64,1.65 Message-ID: <20090725054750.4BCA611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomeprint22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19293 Modified Files: libgnomeprint22.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomeprint22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeprint22/devel/libgnomeprint22.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- libgnomeprint22.spec 19 Jul 2009 03:26:12 -0000 1.64 +++ libgnomeprint22.spec 25 Jul 2009 05:47:49 -0000 1.65 @@ -13,7 +13,7 @@ Summary: Printing library for GNOME Name: libgnomeprint22 Version: 2.18.6 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ and BSD # BSD applies to ttsubset code that was taken from STSF Group: System Environment/Base @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libgnomeprint %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen - 2.18.6-2 - Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:48:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:48:05 +0000 (UTC) Subject: rpms/libgnomeprintui22/devel libgnomeprintui22.spec,1.51,1.52 Message-ID: <20090725054805.D492B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomeprintui22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19450 Modified Files: libgnomeprintui22.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomeprintui22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeprintui22/devel/libgnomeprintui22.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- libgnomeprintui22.spec 17 Mar 2009 04:29:40 -0000 1.51 +++ libgnomeprintui22.spec 25 Jul 2009 05:48:05 -0000 1.52 @@ -6,7 +6,7 @@ Summary: GUI support for libgnomeprint Name: libgnomeprintui22 Version: 2.18.4 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://ftp.gnome.org/pub/gnome/sources/libgnomeprintui/2.18/libgnomeprintui-%{version}.tar.bz2 URL: http://ftp.gnome.org/pub/gnome/sources/libgnomeprintui/ License: LGPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libgnomeprintui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.18.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.18.4-1 - Update to 2.18.4 From jkeating at fedoraproject.org Sat Jul 25 05:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:48:20 +0000 (UTC) Subject: rpms/libgnomeui/devel libgnomeui.spec,1.112,1.113 Message-ID: <20090725054820.3856211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomeui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19604 Modified Files: libgnomeui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomeui.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeui/devel/libgnomeui.spec,v retrieving revision 1.112 retrieving revision 1.113 diff -u -p -r1.112 -r1.113 --- libgnomeui.spec 16 Mar 2009 04:04:32 -0000 1.112 +++ libgnomeui.spec 25 Jul 2009 05:48:19 -0000 1.113 @@ -18,7 +18,7 @@ Summary: GNOME base GUI library Name: libgnomeui Version: 2.24.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libgnomeui/2.24/%{name}-%{version}.tar.bz2 Patch0: libgnomeui-2.23.4-disable-event-sounds.patch @@ -149,6 +149,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libgnomeui %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Matthias Clasen - 2.24.1-1 - Update to 2.24.1 From jkeating at fedoraproject.org Sat Jul 25 05:48:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:48:39 +0000 (UTC) Subject: rpms/libgnomeuimm26/devel libgnomeuimm.spec,1.22,1.23 Message-ID: <20090725054839.C4E8D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgnomeuimm26/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19785 Modified Files: libgnomeuimm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgnomeuimm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeuimm26/devel/libgnomeuimm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libgnomeuimm.spec 7 Apr 2009 06:37:57 -0000 1.22 +++ libgnomeuimm.spec 25 Jul 2009 05:48:38 -0000 1.23 @@ -1,6 +1,6 @@ Name: libgnomeuimm26 Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for Gnome libs (a GUI library for X) @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Denis Leroy - 2.26.0-1 - Update to upstream 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 05:48:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:48:55 +0000 (UTC) Subject: rpms/libgpg-error/devel libgpg-error.spec,1.25,1.26 Message-ID: <20090725054855.05FE111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgpg-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19944 Modified Files: libgpg-error.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgpg-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgpg-error/devel/libgpg-error.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libgpg-error.spec 25 Feb 2009 15:24:58 -0000 1.25 +++ libgpg-error.spec 25 Jul 2009 05:48:54 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Library for error values used by GnuPG components Name: libgpg-error Version: 1.6 -Release: 3 +Release: 4 URL: ftp://ftp.gnupg.org/gcrypt/libgpg-error/ Source0: ftp://ftp.gnupg.org/gcrypt/libgpg-error/%{name}-%{version}.tar.bz2 Source1: ftp://ftp.gnupg.org/gcrypt/libgpg-error/%{name}-%{version}.tar.bz2.sig @@ -98,6 +98,9 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/aclocal/gpg-error.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:49:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:49:09 +0000 (UTC) Subject: rpms/libgphoto2/devel libgphoto2.spec,1.21,1.22 Message-ID: <20090725054909.ADCBB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgphoto2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20087 Modified Files: libgphoto2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgphoto2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgphoto2/devel/libgphoto2.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libgphoto2.spec 18 May 2009 09:50:45 -0000 1.21 +++ libgphoto2.spec 25 Jul 2009 05:49:09 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Library for accessing digital cameras Name: libgphoto2 Version: 2.4.6 -Release: 1%{?dist} +Release: 2%{?dist} # GPLV2+ for the main lib (due to exif.c) and most plugins, some plugins GPLv2 License: GPLv2+ and GPLv2 Group: Development/Libraries @@ -151,6 +151,9 @@ rm -rf "${RPM_BUILD_ROOT}" %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Jindrich Novy 2.4.6-1 - update to 2.4.6 - new IDs for Kodak V803, M1063, Canon PowerShot A650IS, SD990 (aka IXUS 980IS), From jkeating at fedoraproject.org Sat Jul 25 05:49:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:49:24 +0000 (UTC) Subject: rpms/libgpod/devel libgpod.spec,1.25,1.26 Message-ID: <20090725054924.1509D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgpod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20249 Modified Files: libgpod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgpod.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgpod/devel/libgpod.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libgpod.spec 6 Jun 2009 02:11:27 -0000 1.25 +++ libgpod.spec 25 Jul 2009 05:49:23 -0000 1.26 @@ -3,7 +3,7 @@ Summary: Library to access the contents of an iPod Name: libgpod Version: 0.7.2 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtkpod.org/libgpod.html @@ -137,6 +137,9 @@ libgpod library. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Todd Zullinger - 0.7.2-1 - Update to 0.7.2 - Make doc subpackage noarch (on Fedora >= 10) From jkeating at fedoraproject.org Sat Jul 25 05:49:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:49:42 +0000 (UTC) Subject: rpms/libgringotts/devel libgringotts.spec,1.2,1.3 Message-ID: <20090725054942.82CF511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgringotts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20425 Modified Files: libgringotts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgringotts.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgringotts/devel/libgringotts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libgringotts.spec 25 Feb 2009 15:27:35 -0000 1.2 +++ libgringotts.spec 25 Jul 2009 05:49:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: libgringotts Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A backend for managing encrypted data files on the disk Summary(pl): Zaplecze do zarz?dzania zaszyfrowanymi plikami danych na dysku @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:49:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:49:58 +0000 (UTC) Subject: rpms/libgsasl/devel libgsasl.spec,1.9,1.10 Message-ID: <20090725054958.D639E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgsasl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20581 Modified Files: libgsasl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgsasl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgsasl/devel/libgsasl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libgsasl.spec 25 Feb 2009 15:28:30 -0000 1.9 +++ libgsasl.spec 25 Jul 2009 05:49:58 -0000 1.10 @@ -1,6 +1,6 @@ Name: libgsasl Version: 0.2.29 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNU SASL library Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.29-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.29-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:50:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:50:16 +0000 (UTC) Subject: rpms/libgsf/devel libgsf.spec,1.71,1.72 Message-ID: <20090725055016.1D7C711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20750 Modified Files: libgsf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgsf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgsf/devel/libgsf.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- libgsf.spec 10 Jul 2009 09:14:42 -0000 1.71 +++ libgsf.spec 25 Jul 2009 05:50:15 -0000 1.72 @@ -4,7 +4,7 @@ Summary: GNOME Structured File library Name: libgsf Version: 1.14.15 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: LGPLv2 Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/1.14/%{name}-%{version}.tar.bz2 @@ -133,6 +133,9 @@ fi rm -r $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.14.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caol?n McNamara 1.14.15-2 - clean some rpmlint warnings From jkeating at fedoraproject.org Sat Jul 25 05:50:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:50:32 +0000 (UTC) Subject: rpms/libgssapi/devel libgssapi.spec,1.25,1.26 Message-ID: <20090725055032.880E411C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgssapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20927 Modified Files: libgssapi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgssapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgssapi/devel/libgssapi.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libgssapi.spec 25 Feb 2009 15:30:27 -0000 1.25 +++ libgssapi.spec 25 Jul 2009 05:50:32 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Generic Security Services Application Programming Interface Library Name: libgssapi Version: 0.11 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.citi.umich.edu/projects/nfsv4/linux/ License: BSD and MIT Source0: http://www.citi.umich.edu/projects/nfsv4/linux/libgssapi/libgssapi-0.11.tar.gz @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libgssapi.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:50:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:50:47 +0000 (UTC) Subject: rpms/libgssglue/devel libgssglue.spec,1.7,1.8 Message-ID: <20090725055047.79EE111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgssglue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21066 Modified Files: libgssglue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgssglue.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgssglue/devel/libgssglue.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libgssglue.spec 25 Feb 2009 15:31:26 -0000 1.7 +++ libgssglue.spec 25 Jul 2009 05:50:46 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Generic Security Services Application Programming Interface Library Name: libgssglue Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.citi.umich.edu/projects/nfsv4/linux/ License: GPL+ Source0:http://www.citi.umich.edu/projects/nfsv4/linux/%{name}/%{name}-%{version}.tar.gz @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libgssglue.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:51:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:51:02 +0000 (UTC) Subject: rpms/libgtk-java/devel libgtk-java.spec,1.81,1.82 Message-ID: <20090725055102.5DC5011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgtk-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21216 Modified Files: libgtk-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgtk-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgtk-java/devel/libgtk-java.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- libgtk-java.spec 30 Apr 2009 14:26:21 -0000 1.81 +++ libgtk-java.spec 25 Jul 2009 05:51:02 -0000 1.82 @@ -18,7 +18,7 @@ Summary: Java bindings for GTK+ Name: %{java_pkg_prefix}%{name_base} Version: 2.8.7 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://java-gnome.sourceforge.net @@ -136,6 +136,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.7-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Stepan Kasal - 2.8.7-11 - fix multilib problem with an example script (#342171) From jkeating at fedoraproject.org Sat Jul 25 05:51:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:51:18 +0000 (UTC) Subject: rpms/libgtksourceviewmm/devel libgtksourceviewmm.spec,1.9,1.10 Message-ID: <20090725055118.A7BB611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgtksourceviewmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21371 Modified Files: libgtksourceviewmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgtksourceviewmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgtksourceviewmm/devel/libgtksourceviewmm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libgtksourceviewmm.spec 25 Feb 2009 15:33:17 -0000 1.9 +++ libgtksourceviewmm.spec 25 Jul 2009 05:51:18 -0000 1.10 @@ -1,6 +1,6 @@ Name: libgtksourceviewmm Version: 0.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C++ wrapper for the gtksourceview widget library Group: System Environment/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:51:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:51:34 +0000 (UTC) Subject: rpms/libgtop2/devel libgtop2.spec,1.79,1.80 Message-ID: <20090725055134.C3E4A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgtop2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21532 Modified Files: libgtop2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgtop2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgtop2/devel/libgtop2.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- libgtop2.spec 31 May 2009 22:47:08 -0000 1.79 +++ libgtop2.spec 25 Jul 2009 05:51:34 -0000 1.80 @@ -7,7 +7,7 @@ Name: libgtop2 Summary: libgtop library (version 2) Version: 2.27.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://download.gnome.org/sources/libgtop/2.27 Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_datadir}/info %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Matthias Clasen - 2.27.3-1 - Update to 2.27.3 - http://download.gnome.org/sources/libgtop/2.27/libgtop-2.27.3.news From jkeating at fedoraproject.org Sat Jul 25 05:51:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:51:50 +0000 (UTC) Subject: rpms/libgweather/devel libgweather.spec,1.43,1.44 Message-ID: <20090725055150.9830311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgweather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21683 Modified Files: libgweather.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgweather.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgweather/devel/libgweather.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- libgweather.spec 20 Jul 2009 15:02:55 -0000 1.43 +++ libgweather.spec 25 Jul 2009 05:51:50 -0000 1.44 @@ -1,6 +1,6 @@ Name: libgweather Version: 2.26.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A library for weather information Group: System Environment/Libraries @@ -102,6 +102,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Matthias Clasen 2.26.1-5 - Keep locations in gettext catalogs From jkeating at fedoraproject.org Sat Jul 25 05:52:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:52:05 +0000 (UTC) Subject: rpms/libgxim/devel libgxim.spec,1.11,1.12 Message-ID: <20090725055205.D471C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libgxim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21834 Modified Files: libgxim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libgxim.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgxim/devel/libgxim.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libgxim.spec 3 Apr 2009 10:38:39 -0000 1.11 +++ libgxim.spec 25 Jul 2009 05:52:05 -0000 1.12 @@ -1,6 +1,6 @@ Name: libgxim Version: 0.3.3 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: http://code.google.com/p/libgxim/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libgxim %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 3 2009 Akira TAGOH - 0.3.3-2 - Fix an error message about FontSet. From jkeating at fedoraproject.org Sat Jul 25 05:52:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:52:24 +0000 (UTC) Subject: rpms/libhangul/devel libhangul.spec,1.11,1.12 Message-ID: <20090725055224.E691A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhangul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22005 Modified Files: libhangul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhangul.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhangul/devel/libhangul.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libhangul.spec 10 Jun 2009 04:19:11 -0000 1.11 +++ libhangul.spec 25 Jul 2009 05:52:24 -0000 1.12 @@ -1,6 +1,6 @@ Name: libhangul Version: 0.0.9 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://kldp.net/projects/hangul/ @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Jens Petersen - 0.0.9-1 - update to 0.0.9 (fixes #501212) - hanjac and hanja.txt are gone From jkeating at fedoraproject.org Sat Jul 25 05:52:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:52:40 +0000 (UTC) Subject: rpms/libhbaapi/devel libhbaapi.spec,1.1,1.2 Message-ID: <20090725055240.D803A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhbaapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22169 Modified Files: libhbaapi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhbaapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhbaapi/devel/libhbaapi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libhbaapi.spec 8 Apr 2009 13:19:02 -0000 1.1 +++ libhbaapi.spec 25 Jul 2009 05:52:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: libhbaapi Version: 2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SNIA HBAAPI library Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Jan Zeleny - 2.2-4 - added some info to description line - replaced unoficial build source tarball with official one From jkeating at fedoraproject.org Sat Jul 25 05:53:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:53:22 +0000 (UTC) Subject: rpms/libhbalinux/devel libhbalinux.spec,1.1,1.2 Message-ID: <20090725055322.B6AED11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhbalinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22479 Modified Files: libhbalinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhbalinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhbalinux/devel/libhbalinux.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libhbalinux.spec 10 Apr 2009 06:44:19 -0000 1.1 +++ libhbalinux.spec 25 Jul 2009 05:53:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: libhbalinux Version: 1.0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: FC-HBAAPI implementation using scsi_transport_fc interfaces Group: System Environment/Libraries @@ -66,6 +66,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 01 2009 Jan Zeleny - 1.0.7-3 - replaced unofficial 1.0.7 source tarball with official one - update of Makefile, part of it moved to postinstall section From jkeating at fedoraproject.org Sat Jul 25 05:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:53:39 +0000 (UTC) Subject: rpms/libhildon/devel libhildon.spec,1.2,1.3 Message-ID: <20090725055339.0726411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhildon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22634 Modified Files: libhildon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhildon.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhildon/devel/libhildon.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libhildon.spec 25 Feb 2009 15:38:12 -0000 1.2 +++ libhildon.spec 25 Jul 2009 05:53:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: libhildon Version: 2.0.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Hildon Application Framework - shared libraries Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:53:55 +0000 (UTC) Subject: rpms/libhocr/devel libhocr.spec,1.3,1.4 Message-ID: <20090725055355.1B02E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhocr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22791 Modified Files: libhocr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhocr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhocr/devel/libhocr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libhocr.spec 25 Feb 2009 15:39:04 -0000 1.3 +++ libhocr.spec 25 Jul 2009 05:53:54 -0000 1.4 @@ -7,7 +7,7 @@ Name: libhocr Version: 0.10.17 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Hebrew optical character recognition library Group: System Environment/Libraries @@ -163,6 +163,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.17-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10.17-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:54:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:54:11 +0000 (UTC) Subject: rpms/libhugetlbfs/devel libhugetlbfs.spec,1.28,1.29 Message-ID: <20090725055411.86F3311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libhugetlbfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22964 Modified Files: libhugetlbfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libhugetlbfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libhugetlbfs/devel/libhugetlbfs.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libhugetlbfs.spec 20 Jul 2009 08:30:45 -0000 1.28 +++ libhugetlbfs.spec 25 Jul 2009 05:54:11 -0000 1.29 @@ -1,6 +1,6 @@ Name: libhugetlbfs Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library which provides easy access to huge pages of memory Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %exclude /usr/lib/perl5/TLBC %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Eric Munson 2.5-2 - Update Group for -utils package to Applications/System From jkeating at fedoraproject.org Sat Jul 25 05:54:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:54:27 +0000 (UTC) Subject: rpms/libibcm/devel libibcm.spec,1.2,1.3 Message-ID: <20090725055427.54A3411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libibcm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23129 Modified Files: libibcm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libibcm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libibcm/devel/libibcm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libibcm.spec 25 Feb 2009 15:40:59 -0000 1.2 +++ libibcm.spec 25 Jul 2009 05:54:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: libibcm Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Userspace InfiniBand Connection Manager Group: System Environment/Libraries License: GPLv2 or BSD @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:54:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:54:42 +0000 (UTC) Subject: rpms/libibcommon/devel libibcommon.spec,1.5,1.6 Message-ID: <20090725055442.DB33011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libibcommon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23293 Modified Files: libibcommon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libibcommon.spec =================================================================== RCS file: /cvs/pkgs/rpms/libibcommon/devel/libibcommon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libibcommon.spec 22 Apr 2009 13:15:22 -0000 1.5 +++ libibcommon.spec 25 Jul 2009 05:54:42 -0000 1.6 @@ -1,7 +1,7 @@ Summary: OpenFabrics Alliance InfiniBand management common library Name: libibcommon Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibcommon.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Doug Ledford - 1.2.0-1 - Update to latest upstream version From jkeating at fedoraproject.org Sat Jul 25 05:54:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:54:58 +0000 (UTC) Subject: rpms/libibmad/devel libibmad.spec,1.5,1.6 Message-ID: <20090725055458.AC40D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libibmad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23440 Modified Files: libibmad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libibmad.spec =================================================================== RCS file: /cvs/pkgs/rpms/libibmad/devel/libibmad.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libibmad.spec 20 Jul 2009 17:46:46 -0000 1.5 +++ libibmad.spec 25 Jul 2009 05:54:58 -0000 1.6 @@ -1,7 +1,7 @@ Summary: OpenFabrics Alliance InfiniBand MAD library Name: libibmad Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibmad.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Doug Ledford - 1.3.2-1 - Update to latest upstream version - Require the same version of libibumad as our version From jkeating at fedoraproject.org Sat Jul 25 05:55:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:55:14 +0000 (UTC) Subject: rpms/libibumad/devel libibumad.spec,1.8,1.9 Message-ID: <20090725055514.428BD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libibumad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23616 Modified Files: libibumad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libibumad.spec =================================================================== RCS file: /cvs/pkgs/rpms/libibumad/devel/libibumad.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libibumad.spec 20 Jul 2009 16:49:56 -0000 1.8 +++ libibumad.spec 25 Jul 2009 05:55:13 -0000 1.9 @@ -1,7 +1,7 @@ Summary: OpenFabrics Alliance InfiniBand umad (user MAD) library Name: libibumad Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 or BSD Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libibumad.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Doug Ledford - 1.3.2-2 - Forgot to remove both instances of the libibcommon requires - Add build requires on glibc-static From jkeating at fedoraproject.org Sat Jul 25 05:55:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:55:32 +0000 (UTC) Subject: rpms/libibverbs/devel libibverbs.spec,1.15,1.16 Message-ID: <20090725055532.E9BD111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libibverbs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23795 Modified Files: libibverbs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libibverbs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libibverbs/devel/libibverbs.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libibverbs.spec 25 Feb 2009 15:44:46 -0000 1.15 +++ libibverbs.spec 25 Jul 2009 05:55:32 -0000 1.16 @@ -1,6 +1,6 @@ Name: libibverbs Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for direct userspace use of RDMA (InfiniBand/iWARP) hardware Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:55:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:55:48 +0000 (UTC) Subject: rpms/libica/devel libica.spec,1.1,1.2 Message-ID: <20090725055548.4DDCA11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libica/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23980 Modified Files: libica.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libica.spec =================================================================== RCS file: /cvs/pkgs/rpms/libica/devel/libica.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libica.spec 2 May 2009 06:40:06 -0000 1.1 +++ libica.spec 25 Jul 2009 05:55:48 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Library for accessing ICA hardware crypto on IBM zSeries Name: libica Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: CPL Group: System Environment/Libraries URL: http://sourceforge.net/projects/opencryptoki/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Dan Horak - 2.0.1-1 - update to 2.0.1 From jkeating at fedoraproject.org Sat Jul 25 05:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:56:04 +0000 (UTC) Subject: rpms/libical/devel libical.spec,1.21,1.22 Message-ID: <20090725055604.A727011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libical/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24223 Modified Files: libical.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libical.spec =================================================================== RCS file: /cvs/pkgs/rpms/libical/devel/libical.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libical.spec 6 May 2009 22:47:57 -0000 1.21 +++ libical.spec 25 Jul 2009 05:56:04 -0000 1.22 @@ -1,6 +1,6 @@ Name: libical Version: 0.43 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Reference implementation of the iCalendar data type and serialization format Summary(pl): Implementacja formatu iCalendar @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}/vobject.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.43-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Debarshi Ray - 0.43-4 - Updated patch to fix #includes in the headers to work with 'pkg-config --cflags libical'. (Red Hat Bugzilla #484091) From jkeating at fedoraproject.org Sat Jul 25 05:56:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:56:20 +0000 (UTC) Subject: rpms/libicns/devel libicns.spec,1.5,1.6 Message-ID: <20090725055620.092E111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libicns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24399 Modified Files: libicns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libicns.spec =================================================================== RCS file: /cvs/pkgs/rpms/libicns/devel/libicns.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libicns.spec 13 Jun 2009 15:51:08 -0000 1.5 +++ libicns.spec 25 Jul 2009 05:56:19 -0000 1.6 @@ -1,6 +1,6 @@ Name: libicns Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for manipulating Macintosh icns files Group: System Environment/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Andrea Musuruane - 0.7.0-1 - Updated to upstream 0.7.0 From jkeating at fedoraproject.org Sat Jul 25 05:56:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:56:36 +0000 (UTC) Subject: rpms/libid3tag/devel libid3tag.spec,1.18,1.19 Message-ID: <20090725055636.320A611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libid3tag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24711 Modified Files: libid3tag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libid3tag.spec =================================================================== RCS file: /cvs/pkgs/rpms/libid3tag/devel/libid3tag.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libid3tag.spec 25 Feb 2009 15:47:35 -0000 1.18 +++ libid3tag.spec 25 Jul 2009 05:56:35 -0000 1.19 @@ -1,6 +1,6 @@ Name: libid3tag Version: 0.15.1b -Release: 8%{?dist} +Release: 9%{?dist} Summary: ID3 tag manipulation library Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.15.1b-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.15.1b-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:56:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:56:51 +0000 (UTC) Subject: rpms/libident/devel libident.spec,1.3,1.4 Message-ID: <20090725055651.A4B9A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libident/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25228 Modified Files: libident.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libident.spec =================================================================== RCS file: /cvs/pkgs/rpms/libident/devel/libident.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libident.spec 25 Feb 2009 15:48:32 -0000 1.3 +++ libident.spec 25 Jul 2009 05:56:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: libident Version: 0.32 -Release: 3%{?dist} +Release: 4%{?dist} Summary: New LibIdent C library Group: System Environment/Libraries License: Public Domain @@ -112,6 +112,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.32-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.32-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:57:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:57:08 +0000 (UTC) Subject: rpms/libidn/devel libidn.spec,1.54,1.55 Message-ID: <20090725055708.0CD9011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libidn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25471 Modified Files: libidn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libidn.spec =================================================================== RCS file: /cvs/pkgs/rpms/libidn/devel/libidn.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- libidn.spec 10 Mar 2009 09:10:52 -0000 1.54 +++ libidn.spec 25 Jul 2009 05:57:07 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Internationalized Domain Name support library Name: libidn Version: 1.9 -Release: 4 +Release: 5 URL: http://www.gnu.org/software/libidn/ License: LGPLv2+ and GPLv3+ Source0: http://josefsson.org/libidn/releases/libidn-%{version}.tar.gz @@ -106,6 +106,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Joe Orton 1.9-4 - update to 1.9 (#302111) - update License to reflect GPLv3+ binaries, LGPLv2+ library From jkeating at fedoraproject.org Sat Jul 25 05:57:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:57:25 +0000 (UTC) Subject: rpms/libiec61883/devel libiec61883.spec,1.18,1.19 Message-ID: <20090725055725.413B611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libiec61883/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25637 Modified Files: libiec61883.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libiec61883.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiec61883/devel/libiec61883.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libiec61883.spec 25 Feb 2009 15:50:28 -0000 1.18 +++ libiec61883.spec 25 Jul 2009 05:57:24 -0000 1.19 @@ -1,7 +1,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://linux1394.org/dl/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:57:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:57:41 +0000 (UTC) Subject: rpms/libieee1284/devel libieee1284.spec,1.21,1.22 Message-ID: <20090725055741.7827F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libieee1284/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25788 Modified Files: libieee1284.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libieee1284.spec =================================================================== RCS file: /cvs/pkgs/rpms/libieee1284/devel/libieee1284.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libieee1284.spec 14 May 2009 14:45:25 -0000 1.21 +++ libieee1284.spec 25 Jul 2009 05:57:40 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A library for interfacing IEEE 1284-compatible devices Name: libieee1284 Version: 0.2.11 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://cyberelk.net/tim/libieee1284/ @@ -68,6 +68,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.11-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Tim Waugh 0.2.11-7 - Package review fix: removed trailing dot in python package summary (bug #226031). From jkeating at fedoraproject.org Sat Jul 25 05:57:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:57:55 +0000 (UTC) Subject: rpms/libifp/devel libifp.spec,1.12,1.13 Message-ID: <20090725055755.4B10D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libifp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25931 Modified Files: libifp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libifp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libifp/devel/libifp.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libifp.spec 25 Feb 2009 15:52:24 -0000 1.12 +++ libifp.spec 25 Jul 2009 05:57:54 -0000 1.13 @@ -1,6 +1,6 @@ Name: libifp Version: 1.0.0.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A general-purpose library-driver for iRiver's iFP portable audio players Group: System Environment/Base @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.0.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:58:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:58:09 +0000 (UTC) Subject: rpms/libindi/devel libindi.spec,1.6,1.7 Message-ID: <20090725055809.2A7DC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libindi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26072 Modified Files: libindi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libindi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libindi/devel/libindi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libindi.spec 25 Feb 2009 15:53:18 -0000 1.6 +++ libindi.spec 25 Jul 2009 05:58:08 -0000 1.7 @@ -1,6 +1,6 @@ Name: libindi Version: 0.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Instrument Neutral Distributed Interface Group: Development/Libraries @@ -75,6 +75,9 @@ rm -fr %{buildroot} %{_libdir}/*.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 05:58:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:58:22 +0000 (UTC) Subject: rpms/libinfinity/devel libinfinity.spec,1.1,1.2 Message-ID: <20090725055822.EC2A611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libinfinity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26217 Modified Files: libinfinity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libinfinity.spec =================================================================== RCS file: /cvs/pkgs/rpms/libinfinity/devel/libinfinity.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libinfinity.spec 27 Jun 2009 17:43:39 -0000 1.1 +++ libinfinity.spec 25 Jul 2009 05:58:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: libinfinity Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library implementing the infinote protocol Group: System Environment/Libraries @@ -161,6 +161,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Ben Boeckel 0.3.0-2 - Build everything (added gettext, avahi-devel, and gtk2-devel) - Add gtk sub-packages From jkeating at fedoraproject.org Sat Jul 25 05:58:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:58:36 +0000 (UTC) Subject: rpms/libint/devel libint.spec,1.1,1.2 Message-ID: <20090725055836.BF16211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26351 Modified Files: libint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libint.spec =================================================================== RCS file: /cvs/pkgs/rpms/libint/devel/libint.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libint.spec 5 Jun 2009 09:02:36 -0000 1.1 +++ libint.spec 25 Jul 2009 05:58:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: libint Version: 1.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library that evaluates integrals over Gaussian basis functions Group: System Environment/Libraries License: GPLv2+ @@ -76,5 +76,8 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Jussi Lehtola - 1.1.4-1 - First release. From jkeating at fedoraproject.org Sat Jul 25 05:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:58:50 +0000 (UTC) Subject: rpms/libiodbc/devel libiodbc.spec,1.2,1.3 Message-ID: <20090725055850.741CE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libiodbc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26514 Modified Files: libiodbc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libiodbc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiodbc/devel/libiodbc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libiodbc.spec 6 Jun 2009 18:45:07 -0000 1.2 +++ libiodbc.spec 25 Jul 2009 05:58:50 -0000 1.3 @@ -5,7 +5,7 @@ Summary: iODBC Driver Manager Name: libiodbc Version: 3.52.6 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries License: LGPLv2 or BSD URL: http://www.iodbc.org/ @@ -116,6 +116,9 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.52.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Rex Dieter 3.52.6-4 - -devel: install headers to /usr/include/libiodbc/ to better avoid conflicts and need for bogus unixODBC-devel dep From jkeating at fedoraproject.org Sat Jul 25 05:59:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:59:05 +0000 (UTC) Subject: rpms/libiphone/devel libiphone.spec,1.13,1.14 Message-ID: <20090725055905.E666511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libiphone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26653 Modified Files: libiphone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libiphone.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiphone/devel/libiphone.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libiphone.spec 13 May 2009 09:06:25 -0000 1.13 +++ libiphone.spec 25 Jul 2009 05:59:05 -0000 1.14 @@ -2,7 +2,7 @@ Name: libiphone Version: 0.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for connecting to Apple iPhone and iPod touch Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/libiphone/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Peter Robinson 0.9.1-2 - Add new build reqs From jkeating at fedoraproject.org Sat Jul 25 05:59:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:59:22 +0000 (UTC) Subject: rpms/libipoddevice/devel libipoddevice.spec,1.19,1.20 Message-ID: <20090725055922.1804D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libipoddevice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26812 Modified Files: libipoddevice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libipoddevice.spec =================================================================== RCS file: /cvs/pkgs/rpms/libipoddevice/devel/libipoddevice.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libipoddevice.spec 28 Apr 2009 13:13:14 -0000 1.19 +++ libipoddevice.spec 25 Jul 2009 05:59:21 -0000 1.20 @@ -3,7 +3,7 @@ Name: libipoddevice Version: 0.5.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Device-specific layer for the Apple iPod Group: Development/Libraries @@ -75,6 +75,9 @@ make %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Dan Horak - 0.5.3-7 - rebuild for sg3_utils 1.27 From jkeating at fedoraproject.org Sat Jul 25 05:59:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:59:37 +0000 (UTC) Subject: rpms/libiptcdata/devel libiptcdata.spec,1.10,1.11 Message-ID: <20090725055937.EAE3011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libiptcdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26973 Modified Files: libiptcdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libiptcdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/libiptcdata/devel/libiptcdata.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libiptcdata.spec 6 Jul 2009 00:53:47 -0000 1.10 +++ libiptcdata.spec 25 Jul 2009 05:59:37 -0000 1.11 @@ -2,7 +2,7 @@ Name: libiptcdata Version: 1.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: IPTC tag library Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 David Moore 1.0.4-1 - New upstream version From jkeating at fedoraproject.org Sat Jul 25 05:59:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 05:59:54 +0000 (UTC) Subject: rpms/libirman/devel libirman.spec,1.1,1.2 Message-ID: <20090725055954.270B611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libirman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27121 Modified Files: libirman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libirman.spec =================================================================== RCS file: /cvs/pkgs/rpms/libirman/devel/libirman.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libirman.spec 28 May 2009 16:15:24 -0000 1.1 +++ libirman.spec 25 Jul 2009 05:59:53 -0000 1.2 @@ -1,6 +1,6 @@ Name: libirman Version: 0.4.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for IRMAN hardware Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 J?n ONDREJ (SAL) - 0.4.5-3 - added libtoolize to fix build for f11 From jkeating at fedoraproject.org Sat Jul 25 06:00:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:00:10 +0000 (UTC) Subject: rpms/libisofs/devel libisofs.spec,1.12,1.13 Message-ID: <20090725060010.8133411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libisofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27295 Modified Files: libisofs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libisofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libisofs/devel/libisofs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libisofs.spec 18 Jul 2009 13:44:28 -0000 1.12 +++ libisofs.spec 25 Jul 2009 06:00:10 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Library to create ISO 9660 disk images Name: libisofs Version: 0.6.20 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Libraries URL: http://libburnia-project.org/ @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}*.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Robert Scheck 0.6.20-1 - Upgrade to 0.6.20 From jkeating at fedoraproject.org Sat Jul 25 06:00:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:00:29 +0000 (UTC) Subject: rpms/libitl/devel libitl.spec,1.4,1.5 Message-ID: <20090725060029.8611011C02BB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libitl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27451 Modified Files: libitl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libitl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libitl/devel/libitl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libitl.spec 25 Feb 2009 15:57:47 -0000 1.4 +++ libitl.spec 25 Jul 2009 06:00:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: libitl Version: 0.6.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Libraries for The Islamic Tools and Libraries Project Group: System Environment/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:00:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:00:44 +0000 (UTC) Subject: rpms/libjingle/devel libjingle.spec,1.14,1.15 Message-ID: <20090725060044.9D0A211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libjingle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27578 Modified Files: libjingle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libjingle.spec =================================================================== RCS file: /cvs/pkgs/rpms/libjingle/devel/libjingle.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libjingle.spec 2 Mar 2009 19:51:59 -0000 1.14 +++ libjingle.spec 25 Jul 2009 06:00:44 -0000 1.15 @@ -1,6 +1,6 @@ Name: libjingle Version: 0.3.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GoogleTalk implementation of Jingle Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Brian Pepple - 0.3.12-4 - Add patch to fix gcc-4.4.0 errors. From jkeating at fedoraproject.org Sat Jul 25 06:00:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:00:59 +0000 (UTC) Subject: rpms/libjpeg/devel libjpeg.spec,1.28,1.29 Message-ID: <20090725060059.A095B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libjpeg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27715 Modified Files: libjpeg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libjpeg.spec =================================================================== RCS file: /cvs/pkgs/rpms/libjpeg/devel/libjpeg.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libjpeg.spec 25 Feb 2009 15:59:41 -0000 1.28 +++ libjpeg.spec 25 Jul 2009 06:00:59 -0000 1.29 @@ -1,7 +1,7 @@ Summary: A library for manipulating JPEG image format files Name: libjpeg Version: 6b -Release: 45%{?dist} +Release: 46%{?dist} License: IJG Group: System Environment/Libraries URL: http://www.ijg.org/ @@ -128,6 +128,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/*.la rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 6b-46 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6b-45 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:01:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:01:13 +0000 (UTC) Subject: rpms/libkate/devel libkate.spec,1.5,1.6 Message-ID: <20090725060113.18DFC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libkate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27838 Modified Files: libkate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libkate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libkate/devel/libkate.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libkate.spec 8 Jul 2009 12:20:02 -0000 1.5 +++ libkate.spec 25 Jul 2009 06:01:12 -0000 1.6 @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 kwizart < kwizart at gmail.com > - 0.3.4-1 - Update to 0.3.4 From jkeating at fedoraproject.org Sat Jul 25 06:01:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:01:28 +0000 (UTC) Subject: rpms/libkexif/devel libkexif.spec,1.22,1.23 Message-ID: <20090725060128.355C011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libkexif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27958 Modified Files: libkexif.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libkexif.spec =================================================================== RCS file: /cvs/pkgs/rpms/libkexif/devel/libkexif.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libkexif.spec 25 Feb 2009 16:00:35 -0000 1.22 +++ libkexif.spec 25 Jul 2009 06:01:27 -0000 1.23 @@ -1,7 +1,7 @@ Name: libkexif Version: 0.2.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Allow Kipi plugins to extract EXIF information @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:01:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:01:42 +0000 (UTC) Subject: rpms/libkml/devel libkml.spec,1.4,1.5 Message-ID: <20090725060142.713B811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libkml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28086 Modified Files: libkml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libkml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libkml/devel/libkml.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libkml.spec 12 Apr 2009 18:37:22 -0000 1.4 +++ libkml.spec 25 Jul 2009 06:01:42 -0000 1.5 @@ -3,7 +3,7 @@ Name: libkml Version: 0.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A KML library written in C++ with bindings to other languagues Group: Development/Libraries @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libkml/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Rakesh Pandit 0.6.1-4 - Included *pyc and pyo files in %%files and added BuildRequires libgcj-devel. From jkeating at fedoraproject.org Sat Jul 25 06:01:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:01:57 +0000 (UTC) Subject: rpms/libksba/devel libksba.spec,1.34,1.35 Message-ID: <20090725060157.6452B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libksba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28201 Modified Files: libksba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libksba.spec =================================================================== RCS file: /cvs/pkgs/rpms/libksba/devel/libksba.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- libksba.spec 21 Jun 2009 02:23:30 -0000 1.34 +++ libksba.spec 25 Jul 2009 06:01:56 -0000 1.35 @@ -2,7 +2,7 @@ Summary: X.509 library Name: libksba Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3 Group: System Environment/Libraries @@ -92,6 +92,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Rex Dieter - 1.0.6-1 - libksba-1.0.6 - -devel: fix info scriptlet From jkeating at fedoraproject.org Sat Jul 25 06:02:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:02:11 +0000 (UTC) Subject: rpms/liblicense/devel liblicense.spec,1.6,1.7 Message-ID: <20090725060211.5D5D511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liblicense/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28325 Modified Files: liblicense.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liblicense.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblicense/devel/liblicense.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- liblicense.spec 25 Feb 2009 16:03:20 -0000 1.6 +++ liblicense.spec 25 Jul 2009 06:02:11 -0000 1.7 @@ -1,6 +1,6 @@ Name: liblicense Version: 0.8.1 -Release: 2 +Release: 3 License: LGPLv2 Summary: Content License Library Group: Development/Libraries @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/liblicense/__init__.pyo %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:02:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:02:26 +0000 (UTC) Subject: rpms/liblinebreak/devel liblinebreak.spec,1.4,1.5 Message-ID: <20090725060226.55ECD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liblinebreak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28450 Modified Files: liblinebreak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liblinebreak.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblinebreak/devel/liblinebreak.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- liblinebreak.spec 2 Jul 2009 23:42:45 -0000 1.4 +++ liblinebreak.spec 25 Jul 2009 06:02:26 -0000 1.5 @@ -6,7 +6,7 @@ Name: liblinebreak Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 0.5.%{cvs_date}cvs%{?dist} Summary: A Unicode line-breaking library @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Michel Salim - 1.2-1 - Update to 1.2 - Build as dynamic library, instead of static From jkeating at fedoraproject.org Sat Jul 25 06:02:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:02:41 +0000 (UTC) Subject: rpms/liblo/devel liblo.spec,1.14,1.15 Message-ID: <20090725060241.8E1ED11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liblo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28577 Modified Files: liblo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liblo.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblo/devel/liblo.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- liblo.spec 28 Feb 2009 13:37:07 -0000 1.14 +++ liblo.spec 25 Jul 2009 06:02:41 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Open Sound Control library Name: liblo Version: 0.24 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://liblo.sourceforge.net @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.24-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Anthony Green 0.24-4 - Remove latex docs as they bundle a .ttf file which goes against the Fedora guidelines. HTML docs should be sufficient. From jkeating at fedoraproject.org Sat Jul 25 06:02:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:02:56 +0000 (UTC) Subject: rpms/liblqr-1/devel liblqr-1.spec,1.3,1.4 Message-ID: <20090725060256.05D3F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liblqr-1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28729 Modified Files: liblqr-1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liblqr-1.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblqr-1/devel/liblqr-1.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- liblqr-1.spec 25 Feb 2009 16:06:59 -0000 1.3 +++ liblqr-1.spec 25 Jul 2009 06:02:55 -0000 1.4 @@ -2,7 +2,7 @@ Name: liblqr-1 Version: 0.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: LiquidRescale library Group: System Environment/Libraries License: GPLv3 @@ -75,6 +75,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec % %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:03:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:03:11 +0000 (UTC) Subject: rpms/liblrdf/devel liblrdf.spec,1.10,1.11 Message-ID: <20090725060311.4427811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liblrdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28875 Modified Files: liblrdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liblrdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/liblrdf/devel/liblrdf.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- liblrdf.spec 25 Feb 2009 16:07:58 -0000 1.10 +++ liblrdf.spec 25 Jul 2009 06:03:11 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Library for manipulating RDF files describing LADSPA plugins Name: liblrdf Version: 0.4.0 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://lrdf.sourceforge.net/ @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:03:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:03:25 +0000 (UTC) Subject: rpms/libmal/devel libmal.spec,1.12,1.13 Message-ID: <20090725060325.28FEC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29018 Modified Files: libmal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmal.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmal/devel/libmal.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libmal.spec 25 Feb 2009 16:08:55 -0000 1.12 +++ libmal.spec 25 Jul 2009 06:03:25 -0000 1.13 @@ -2,7 +2,7 @@ Summary: A convenience library for malsync Name: libmal Version: 0.44 -Release: 2%{?dist} +Release: 3%{?dist} License: MPLv1.0 Url: http://jasonday.home.att.net/code/libmal/ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.44-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.44-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:03:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:03:39 +0000 (UTC) Subject: rpms/libmatchbox/devel libmatchbox.spec,1.6,1.7 Message-ID: <20090725060339.6256811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmatchbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29155 Modified Files: libmatchbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmatchbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmatchbox/devel/libmatchbox.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libmatchbox.spec 25 Feb 2009 16:09:52 -0000 1.6 +++ libmatchbox.spec 25 Jul 2009 06:03:38 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Libraries for the Matchbox Desktop Name: libmatchbox Version: 1.9 -Release: 5%{?dist} +Release: 6%{?dist} Url: http://projects.o-hand.com/matchbox/ License: LGPLv2+ Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libmb/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:03:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:03:53 +0000 (UTC) Subject: rpms/libmatheval/devel libmatheval.spec,1.7,1.8 Message-ID: <20090725060353.E5C9411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmatheval/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29285 Modified Files: libmatheval.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmatheval.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmatheval/devel/libmatheval.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libmatheval.spec 25 Feb 2009 16:10:47 -0000 1.7 +++ libmatheval.spec 25 Jul 2009 06:03:53 -0000 1.8 @@ -1,6 +1,6 @@ Name: libmatheval Version: 1.1.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for parsing and evaluating symbolic expressions input as text Group: System Environment/Libraries @@ -83,6 +83,9 @@ fi %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:04:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:04:08 +0000 (UTC) Subject: rpms/libmatroska/devel libmatroska.spec,1.19,1.20 Message-ID: <20090725060408.A8EA311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmatroska/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29434 Modified Files: libmatroska.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmatroska.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmatroska/devel/libmatroska.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libmatroska.spec 25 Feb 2009 16:11:40 -0000 1.19 +++ libmatroska.spec 25 Jul 2009 06:04:08 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Open audio/video container format library Name: libmatroska Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.matroska.org/ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:04:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:04:22 +0000 (UTC) Subject: rpms/libmatthew-java/devel libmatthew-java.spec,1.5,1.6 Message-ID: <20090725060422.1E76B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmatthew-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29579 Modified Files: libmatthew-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmatthew-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmatthew-java/devel/libmatthew-java.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libmatthew-java.spec 25 Feb 2009 16:12:36 -0000 1.5 +++ libmatthew-java.spec 25 Jul 2009 06:04:21 -0000 1.6 @@ -2,7 +2,7 @@ Name: libmatthew-java Version: 0.7.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A few useful Java libraries Group: Development/Libraries License: LGPLv2 @@ -141,6 +141,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:04:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:04:37 +0000 (UTC) Subject: rpms/libmcrypt/devel libmcrypt.spec,1.13,1.14 Message-ID: <20090725060437.6486411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29711 Modified Files: libmcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmcrypt/devel/libmcrypt.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libmcrypt.spec 25 Feb 2009 16:13:29 -0000 1.13 +++ libmcrypt.spec 25 Jul 2009 06:04:36 -0000 1.14 @@ -1,6 +1,6 @@ Name: libmcrypt Version: 2.5.8 -Release: 8%{?dist} +Release: 9%{?dist} License: LGPLv2+ Group: System Environment/Libraries Summary: Encryption algorithms library @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/libmcrypt.m4 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.5.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:04:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:04:51 +0000 (UTC) Subject: rpms/libmemcached/devel libmemcached.spec,1.3,1.4 Message-ID: <20090725060451.E79AE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmemcached/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29852 Modified Files: libmemcached.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmemcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmemcached/devel/libmemcached.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libmemcached.spec 14 Jun 2009 09:58:22 -0000 1.3 +++ libmemcached.spec 25 Jul 2009 06:04:51 -0000 1.4 @@ -1,7 +1,7 @@ Name: libmemcached Summary: Client library and command line tools for memcached server Version: 0.30 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Libraries URL: http://tangent.org/552/libmemcached.html @@ -105,6 +105,9 @@ you will need to install %{name}-devel. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Remi Collet - 0.30-1 - update to 0.30 From jkeating at fedoraproject.org Sat Jul 25 06:05:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:05:05 +0000 (UTC) Subject: rpms/libmetalink/devel libmetalink.spec,1.1,1.2 Message-ID: <20090725060505.846B111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmetalink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30005 Modified Files: libmetalink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmetalink.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmetalink/devel/libmetalink.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libmetalink.spec 13 May 2009 20:23:10 -0000 1.1 +++ libmetalink.spec 25 Jul 2009 06:05:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: libmetalink Version: 0.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Metalink C library Group: System Environment/Libraries License: MIT @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Ant Bryan - 0.0.3-4 - Remove Provides: libmetalink-static = %{version}-%{release} From jkeating at fedoraproject.org Sat Jul 25 06:05:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:05:19 +0000 (UTC) Subject: rpms/libmicrohttpd/devel libmicrohttpd.spec,1.6,1.7 Message-ID: <20090725060519.2016B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmicrohttpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30144 Modified Files: libmicrohttpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmicrohttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmicrohttpd/devel/libmicrohttpd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libmicrohttpd.spec 21 Jul 2009 21:11:38 -0000 1.6 +++ libmicrohttpd.spec 25 Jul 2009 06:05:18 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Lightweight library for embedding a webserver in applications Name: libmicrohttpd Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Libraries License: LGPLv2+ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -113,6 +113,9 @@ fi %doc html %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Erik van Pienbroek - 0.4.2-1 - Update to version 0.4.2 - Drop upstreamed patch From jkeating at fedoraproject.org Sat Jul 25 06:05:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:05:33 +0000 (UTC) Subject: rpms/libmikmod/devel libmikmod.spec,1.8,1.9 Message-ID: <20090725060533.75EC811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmikmod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30301 Modified Files: libmikmod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmikmod.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmikmod/devel/libmikmod.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libmikmod.spec 25 Feb 2009 16:15:18 -0000 1.8 +++ libmikmod.spec 25 Jul 2009 06:05:33 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A MOD music file player library Name: libmikmod Version: 3.2.0 -Release: 4.beta2%{?dist} +Release: 5.beta2%{?dist} License: GPLv2 and LGPLv2+ Group: Applications/Multimedia Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -80,6 +80,9 @@ fi %{_mandir}/man1/libmikmod-config* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.0-5.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.0-4.beta2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:05:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:05:47 +0000 (UTC) Subject: rpms/libmimedir/devel libmimedir.spec,1.4,1.5 Message-ID: <20090725060547.9276111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmimedir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30439 Modified Files: libmimedir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmimedir.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmimedir/devel/libmimedir.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libmimedir.spec 25 Feb 2009 16:16:18 -0000 1.4 +++ libmimedir.spec 25 Jul 2009 06:05:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: libmimedir Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library to parse MIME Directory Profile Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:06:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:06:00 +0000 (UTC) Subject: rpms/libmirage/devel libmirage.spec,1.2,1.3 Message-ID: <20090725060600.CDCD111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmirage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30605 Modified Files: libmirage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmirage.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmirage/devel/libmirage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libmirage.spec 25 Feb 2009 16:17:12 -0000 1.2 +++ libmirage.spec 25 Jul 2009 06:06:00 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A CD-ROM image access library Name: libmirage Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://cdemu.sourceforge.net/pkg_libmirage.php @@ -75,6 +75,9 @@ update-mime-database %{_datadir}/mime &> %doc %{_datadir}/gtk-doc/html/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:06:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:06:13 +0000 (UTC) Subject: rpms/libmkv/devel libmkv.spec,1.2,1.3 Message-ID: <20090725060613.D4A3911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmkv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30752 Modified Files: libmkv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmkv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmkv/devel/libmkv.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libmkv.spec 5 Jun 2009 05:52:22 -0000 1.2 +++ libmkv.spec 25 Jul 2009 06:06:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: libmkv Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An alternative to the official libmatroska library Group: System Environment/Libraries @@ -55,6 +55,9 @@ development files. %exclude %{_libdir}/libmkv.la %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Bernard Johnson - 0.6.4-1 - v 0.6.4 From jkeating at fedoraproject.org Sat Jul 25 06:06:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:06:27 +0000 (UTC) Subject: rpms/libmlx4/devel libmlx4.spec,1.2,1.3 Message-ID: <20090725060627.A74C311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmlx4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30896 Modified Files: libmlx4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmlx4.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmlx4/devel/libmlx4.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libmlx4.spec 25 Feb 2009 16:18:05 -0000 1.2 +++ libmlx4.spec 25 Jul 2009 06:06:26 -0000 1.3 @@ -1,6 +1,6 @@ Name: libmlx4 Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Mellanox ConnectX InfiniBand HCA Userspace Driver Group: System Environment/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libmlx4.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:06:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:06:41 +0000 (UTC) Subject: rpms/libmng/devel libmng.spec,1.36,1.37 Message-ID: <20090725060641.84C4211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31067 Modified Files: libmng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmng.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmng/devel/libmng.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libmng.spec 15 Apr 2009 13:29:02 -0000 1.36 +++ libmng.spec 25 Jul 2009 06:06:41 -0000 1.37 @@ -1,6 +1,6 @@ Name: libmng Version: 1.0.10 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.libmng.com/ Summary: Library for Multiple-image Network Graphics support # This is a common zlib variant. @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Jon Ciesla - 1.0.10-3 - Fixed -devel requires and make install syntax. From jkeating at fedoraproject.org Sat Jul 25 06:07:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:07:14 +0000 (UTC) Subject: rpms/libmodelfile/devel libmodelfile.spec,1.6,1.7 Message-ID: <20090725060714.452A311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmodelfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31364 Modified Files: libmodelfile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmodelfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmodelfile/devel/libmodelfile.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libmodelfile.spec 25 Feb 2009 16:19:57 -0000 1.6 +++ libmodelfile.spec 25 Jul 2009 06:07:13 -0000 1.7 @@ -1,6 +1,6 @@ Name: libmodelfile Version: 0.1.92 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for accessing various model file formats Group: Development/Libraries @@ -64,6 +64,9 @@ make %{?_smp_mflags} check %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1.92-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.92-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:07:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:07:30 +0000 (UTC) Subject: rpms/libmodplug/devel libmodplug.spec,1.17,1.18 Message-ID: <20090725060730.1A18511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmodplug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31552 Modified Files: libmodplug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmodplug.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmodplug/devel/libmodplug.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libmodplug.spec 27 Apr 2009 18:09:51 -0000 1.17 +++ libmodplug.spec 25 Jul 2009 06:07:29 -0000 1.18 @@ -1,6 +1,6 @@ Name: libmodplug Version: 0.8.7 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Modplug mod music file format library @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.8.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ville Skytt? - 1:0.8.7-1 - Update to 0.8.7 (security, #496834). From jkeating at fedoraproject.org Sat Jul 25 06:07:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:07:46 +0000 (UTC) Subject: rpms/libmowgli/devel libmowgli.spec,1.4,1.5 Message-ID: <20090725060746.14D2611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmowgli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31751 Modified Files: libmowgli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmowgli.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmowgli/devel/libmowgli.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libmowgli.spec 4 Jun 2009 12:25:48 -0000 1.4 +++ libmowgli.spec 25 Jul 2009 06:07:45 -0000 1.5 @@ -2,7 +2,7 @@ Name: libmowgli Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library of many utility functions and classes Group: System Environment/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libmowgli.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Michael Schwendt - 0.7.0-1 - Upgrade to 0.7.0 (SONAME version change). - License is unchanged, but more similar to MIT than ISC. From jkeating at fedoraproject.org Sat Jul 25 06:08:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:08:01 +0000 (UTC) Subject: rpms/libmp4v2/devel libmp4v2.spec,1.8,1.9 Message-ID: <20090725060801.7651911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmp4v2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31925 Modified Files: libmp4v2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmp4v2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmp4v2/devel/libmp4v2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libmp4v2.spec 13 Jul 2009 11:32:47 -0000 1.8 +++ libmp4v2.spec 25 Jul 2009 06:08:01 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Library for working with files using the mp4 container format Name: libmp4v2 Version: 1.5.0.1 -Release: 9%{?dist} +Release: 10%{?dist} License: MPLv1.1 Group: System Environment/Libraries URL: http://resare.com/libmp4v2/ @@ -70,6 +70,9 @@ using the libmp4v2 library. %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.0.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Saou 1.5.0.1-9 - Rebuild to fix runtime problems of the latest builds (#507302). From jkeating at fedoraproject.org Sat Jul 25 06:08:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:08:16 +0000 (UTC) Subject: rpms/libmpcdec/devel libmpcdec.spec,1.9,1.10 Message-ID: <20090725060816.A9D1611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmpcdec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32124 Modified Files: libmpcdec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmpcdec.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmpcdec/devel/libmpcdec.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libmpcdec.spec 25 Feb 2009 16:23:48 -0000 1.9 +++ libmpcdec.spec 25 Jul 2009 06:08:16 -0000 1.10 @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:08:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:08:31 +0000 (UTC) Subject: rpms/libmpd/devel libmpd.spec,1.12,1.13 Message-ID: <20090725060831.788F011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32329 Modified Files: libmpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmpd/devel/libmpd.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libmpd.spec 16 Jun 2009 11:55:18 -0000 1.12 +++ libmpd.spec 25 Jul 2009 06:08:31 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Music Player Daemon Library Name: libmpd Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Url: http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client Group: Applications/Multimedia @@ -54,6 +54,9 @@ for developing program with libmpd. %{_includedir}/libmpd-1.0 %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Adrian Reber - 0.18.0-1 - updated to 0.18.0 From jkeating at fedoraproject.org Sat Jul 25 06:08:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:08:46 +0000 (UTC) Subject: rpms/libmsn/devel libmsn.spec,1.10,1.11 Message-ID: <20090725060846.9878F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmsn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32512 Modified Files: libmsn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmsn.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmsn/devel/libmsn.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libmsn.spec 23 Jul 2009 11:50:59 -0000 1.10 +++ libmsn.spec 25 Jul 2009 06:08:46 -0000 1.11 @@ -3,7 +3,7 @@ Name: libmsn Version: 4.0 -Release: 0.12.%{beta}%{?dist} +Release: 0.13.%{beta}%{?dist} Group: System Environment/Libraries License: GPLv2 @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.0-0.13.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Luk?? Tinkl 4.0-0.12.beta7 - 4.0 beta 7 From jkeating at fedoraproject.org Sat Jul 25 06:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:09:01 +0000 (UTC) Subject: rpms/libmspack/devel libmspack.spec,1.3,1.4 Message-ID: <20090725060901.C4DAD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmspack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32702 Modified Files: libmspack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmspack.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmspack/devel/libmspack.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libmspack.spec 25 Feb 2009 16:26:30 -0000 1.3 +++ libmspack.spec 25 Jul 2009 06:09:01 -0000 1.4 @@ -1,6 +1,6 @@ Name: libmspack Version: 0.0 -Release: 0.6.20060920alpha%{?dist} +Release: 0.7.20060920alpha%{?dist} Summary: Library for CAB and related files compression and decompression Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/html/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0-0.7.20060920alpha +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0-0.6.20060920alpha - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:09:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:09:15 +0000 (UTC) Subject: rpms/libmthca/devel libmthca.spec,1.12,1.13 Message-ID: <20090725060915.73B1B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmthca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv411 Modified Files: libmthca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmthca.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmthca/devel/libmthca.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libmthca.spec 25 Feb 2009 16:27:24 -0000 1.12 +++ libmthca.spec 25 Jul 2009 06:09:15 -0000 1.13 @@ -1,6 +1,6 @@ Name: libmthca Version: 1.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mellanox InfiniBand HCA Userspace Driver Group: System Environment/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libmthca.a %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:09:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:09:30 +0000 (UTC) Subject: rpms/libmtp/devel libmtp.spec,1.33,1.34 Message-ID: <20090725060930.0401211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv600 Modified Files: libmtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmtp/devel/libmtp.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libmtp.spec 16 Mar 2009 23:57:22 -0000 1.33 +++ libmtp.spec 25 Jul 2009 06:09:29 -0000 1.34 @@ -3,7 +3,7 @@ Name: libmtp Version: 0.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A software library for MTP media players URL: http://libmtp.sourceforge.net/ @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Linus Walleij 0.3.7-1 - New upstream bugfix release. From jkeating at fedoraproject.org Sat Jul 25 06:09:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:09:44 +0000 (UTC) Subject: rpms/libmusicbrainz/devel libmusicbrainz.spec,1.32,1.33 Message-ID: <20090725060944.697C111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmusicbrainz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv746 Modified Files: libmusicbrainz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmusicbrainz.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmusicbrainz/devel/libmusicbrainz.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libmusicbrainz.spec 10 Jun 2009 17:21:59 -0000 1.32 +++ libmusicbrainz.spec 25 Jul 2009 06:09:44 -0000 1.33 @@ -2,7 +2,7 @@ Summary: Library for accessing MusicBrainz servers Name: libmusicbrainz Version: 2.1.5 -Release: 10%{?dist} +Release: 11%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.musicbrainz.org/ @@ -75,6 +75,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Bastien Nocera 2.1.5-10 - Fix ordering of the files members From jkeating at fedoraproject.org Sat Jul 25 06:09:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:09:59 +0000 (UTC) Subject: rpms/libmusicbrainz3/devel libmusicbrainz3.spec,1.11,1.12 Message-ID: <20090725060959.0C60E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libmusicbrainz3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv912 Modified Files: libmusicbrainz3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libmusicbrainz3.spec =================================================================== RCS file: /cvs/pkgs/rpms/libmusicbrainz3/devel/libmusicbrainz3.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libmusicbrainz3.spec 29 Jun 2009 20:58:00 -0000 1.11 +++ libmusicbrainz3.spec 25 Jul 2009 06:09:58 -0000 1.12 @@ -7,7 +7,7 @@ Summary: Library for accessing MusicBrainz servers Name: libmusicbrainz3 Version: 3.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.musicbrainz.org/ @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Rex Dieter - 3.0.2-5 - fix doxygen-induced multilib conflicts (#480378) - add %%check section (disabled by default, pending cppunit detection issues) From jkeating at fedoraproject.org Sat Jul 25 06:10:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:10:15 +0000 (UTC) Subject: rpms/libnasl/devel libnasl.spec,1.19,1.20 Message-ID: <20090725061015.BAE7A11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnasl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1086 Modified Files: libnasl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnasl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnasl/devel/libnasl.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libnasl.spec 25 Feb 2009 16:31:08 -0000 1.19 +++ libnasl.spec 25 Jul 2009 06:10:15 -0000 1.20 @@ -1,6 +1,6 @@ Name: libnasl Version: 2.2.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Nessus Attack Scripting Language Group: System Environment/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/libnasl/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:10:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:10:30 +0000 (UTC) Subject: rpms/libnc-dap/devel libnc-dap.spec,1.28,1.29 Message-ID: <20090725061030.B9D8F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnc-dap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1244 Modified Files: libnc-dap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnc-dap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnc-dap/devel/libnc-dap.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libnc-dap.spec 23 Jul 2009 02:56:18 -0000 1.28 +++ libnc-dap.spec 25 Jul 2009 06:10:30 -0000 1.29 @@ -1,7 +1,7 @@ Name: libnc-dap Summary: The NetCDF interface to DAP-2 from OPeNDAP Version: 3.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Libraries # ncdump, netcdf headers, lnetcdf are coverd by a BSD/MIT-like license @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.7.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Orion Poplawski - 3.7.4-1 - Update to 3.7.4 - Drop templates patch applied upstream From jkeating at fedoraproject.org Sat Jul 25 06:10:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:10:44 +0000 (UTC) Subject: rpms/libnemesi/devel libnemesi.spec,1.9,1.10 Message-ID: <20090725061044.DF34F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnemesi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1396 Modified Files: libnemesi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnemesi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnemesi/devel/libnemesi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libnemesi.spec 27 Feb 2009 01:52:57 -0000 1.9 +++ libnemesi.spec 25 Jul 2009 06:10:44 -0000 1.10 @@ -4,7 +4,7 @@ Summary: RTSP/RTP client library Name: libnemesi Version: 0.6.4 -Release: 0.5.rc2%{?git:.%{rev}git}%{?dist} +Release: 0.6.rc2%{?git:.%{rev}git}%{?dist} License: LGPLv2+ Group: Development/Libraries %if %{?git:1}0 @@ -109,6 +109,9 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpa %{_bindir}/nemesi_loop_stream %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-0.6.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Dominik Mierzejewski 0.6.4-0.5.rc2 - fix source and project URLs From jkeating at fedoraproject.org Sat Jul 25 06:10:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:10:58 +0000 (UTC) Subject: rpms/libnet/devel libnet.spec,1.16,1.17 Message-ID: <20090725061058.B60D711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1565 Modified Files: libnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnet/devel/libnet.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libnet.spec 11 Jun 2009 11:58:58 -0000 1.16 +++ libnet.spec 25 Jul 2009 06:10:58 -0000 1.17 @@ -1,7 +1,7 @@ Summary: C library for portable packet creation and injection Name: libnet Version: 1.1.4 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.sourceforge.net/projects/libnet-dev/ @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/%{name}*.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Robert Scheck 1.1.4-1 - Upgrade to 1.1.4 From jkeating at fedoraproject.org Sat Jul 25 06:11:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:11:13 +0000 (UTC) Subject: rpms/libnet10/devel libnet10.spec,1.18,1.19 Message-ID: <20090725061113.6CA8A11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnet10/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1737 Modified Files: libnet10.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnet10.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnet10/devel/libnet10.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libnet10.spec 18 Apr 2009 20:07:39 -0000 1.18 +++ libnet10.spec 25 Jul 2009 06:11:13 -0000 1.19 @@ -1,7 +1,7 @@ Summary: High-level API (toolkit) to construct and inject network packets Name: libnet10 Version: 1.0.2a -Release: 17%{?dist} +Release: 18%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.packetfactory.net/libnet/ @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.2a-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Robert Scheck 1.0.2a-17 - Enabled a shared library and made lots of spec file cleanups From jkeating at fedoraproject.org Sat Jul 25 06:11:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:11:28 +0000 (UTC) Subject: rpms/libnetdude/devel libnetdude.spec,1.2,1.3 Message-ID: <20090725061128.3839611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnetdude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1909 Modified Files: libnetdude.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnetdude.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnetdude/devel/libnetdude.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libnetdude.spec 25 Feb 2009 16:34:00 -0000 1.2 +++ libnetdude.spec 25 Jul 2009 06:11:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: libnetdude Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Management framework for pcap packet traces Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/%{name}/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:11:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:11:42 +0000 (UTC) Subject: rpms/libnetfilter_conntrack/devel libnetfilter_conntrack.spec, 1.22, 1.23 Message-ID: <20090725061142.5AECB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnetfilter_conntrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2093 Modified Files: libnetfilter_conntrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnetfilter_conntrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnetfilter_conntrack/devel/libnetfilter_conntrack.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libnetfilter_conntrack.spec 25 Feb 2009 16:34:54 -0000 1.22 +++ libnetfilter_conntrack.spec 25 Jul 2009 06:11:41 -0000 1.23 @@ -3,7 +3,7 @@ Name: libnetfilter_conntrack Version: 0.0.99 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Netfilter conntrack userspace library Group: System Environment/Libraries License: GPLv2+ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libnetfilter_conntrack/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.99-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.99-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:11:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:11:56 +0000 (UTC) Subject: rpms/libnetfilter_log/devel libnetfilter_log.spec,1.12,1.13 Message-ID: <20090725061156.B26AD11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnetfilter_log/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2273 Modified Files: libnetfilter_log.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnetfilter_log.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnetfilter_log/devel/libnetfilter_log.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libnetfilter_log.spec 21 Jun 2009 10:12:17 -0000 1.12 +++ libnetfilter_log.spec 25 Jul 2009 06:11:56 -0000 1.13 @@ -2,7 +2,7 @@ Name: libnetfilter_log Version: 0.0.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Netfilter logging userspace library Group: System Environment/Libraries License: GPLv2 @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Paul P. Komkoff Jr - 0.0.16-1 - upstream release From jkeating at fedoraproject.org Sat Jul 25 06:12:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:12:11 +0000 (UTC) Subject: rpms/libnetfilter_queue/devel libnetfilter_queue.spec,1.10,1.11 Message-ID: <20090725061211.AF74011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnetfilter_queue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2455 Modified Files: libnetfilter_queue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnetfilter_queue.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnetfilter_queue/devel/libnetfilter_queue.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libnetfilter_queue.spec 7 Mar 2009 13:23:34 -0000 1.10 +++ libnetfilter_queue.spec 25 Jul 2009 06:12:11 -0000 1.11 @@ -2,7 +2,7 @@ Name: libnetfilter_queue Version: 0.0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries # Most files say GPLv2+, one says v2 only. @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Paul P. Komkoff Jr - 0.0.17-1 - upstream update From jkeating at fedoraproject.org Sat Jul 25 06:12:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:12:28 +0000 (UTC) Subject: rpms/libnfnetlink/devel libnfnetlink.spec,1.16,1.17 Message-ID: <20090725061228.2FDB311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnfnetlink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2660 Modified Files: libnfnetlink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnfnetlink.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnfnetlink/devel/libnfnetlink.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libnfnetlink.spec 6 Mar 2009 18:01:02 -0000 1.16 +++ libnfnetlink.spec 25 Jul 2009 06:12:28 -0000 1.17 @@ -3,7 +3,7 @@ Name: libnfnetlink Version: 0.0.41 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Netfilter netlink userspace library Group: System Environment/Libraries License: GPLv2 @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libnfnetlink/*.h %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.41-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Paul P. Komkoff Jr - 0.0.41-1 - upstream release From jkeating at fedoraproject.org Sat Jul 25 06:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:12:44 +0000 (UTC) Subject: rpms/libnice/devel libnice.spec,1.7,1.8 Message-ID: <20090725061244.058E511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2904 Modified Files: libnice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnice.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnice/devel/libnice.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libnice.spec 22 Jul 2009 02:52:13 -0000 1.7 +++ libnice.spec 25 Jul 2009 06:12:43 -0000 1.8 @@ -1,6 +1,6 @@ Name: libnice Version: 0.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GLib ICE implementation Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Warren Togami - 0.0.8-2 - stun sha1 patch from upstream to make it work at all From jkeating at fedoraproject.org Sat Jul 25 06:12:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:12:59 +0000 (UTC) Subject: rpms/libnids/devel libnids.spec,1.9,1.10 Message-ID: <20090725061259.C2E3D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnids/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3111 Modified Files: libnids.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnids.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnids/devel/libnids.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libnids.spec 1 Mar 2009 18:30:52 -0000 1.9 +++ libnids.spec 25 Jul 2009 06:12:59 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Implementation of an E-component of Network Intrusion Detection System Name: libnids Version: 1.23 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://libnids.sourceforge.net/ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/libnids.3* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck 1.23-3 - Added patch to correct the wrong elif preprocessor statement From jkeating at fedoraproject.org Sat Jul 25 06:13:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:13:15 +0000 (UTC) Subject: rpms/libnjb/devel libnjb.spec,1.14,1.15 Message-ID: <20090725061315.A6E5F11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnjb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3336 Modified Files: libnjb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnjb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnjb/devel/libnjb.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libnjb.spec 25 Feb 2009 16:39:24 -0000 1.14 +++ libnjb.spec 25 Jul 2009 06:13:15 -0000 1.15 @@ -3,7 +3,7 @@ Name: libnjb Version: 2.2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A software library for talking to the Creative Nomad Jukeboxes and Dell DJs URL: http://libnjb.sourceforge.net/ @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.2.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:13:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:13:31 +0000 (UTC) Subject: rpms/libnl/devel libnl.spec,1.29,1.30 Message-ID: <20090725061331.D462411C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3529 Modified Files: libnl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnl.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnl/devel/libnl.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- libnl.spec 14 May 2009 15:44:51 -0000 1.29 +++ libnl.spec 25 Jul 2009 06:13:31 -0000 1.30 @@ -3,7 +3,7 @@ Group: Development/Libraries License: LGPLv2 Name: libnl Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://people.suug.ch/~tgr/libnl/ Source: http://people.suug.ch/~tgr/libnl/files/libnl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -73,6 +73,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}-1.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Peter Jones - 1.1-7 - Don't present "extern inline nl_object_priv();" to consumers in the headers. From jkeating at fedoraproject.org Sat Jul 25 06:13:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:13:47 +0000 (UTC) Subject: rpms/libnotify/devel libnotify.spec,1.39,1.40 Message-ID: <20090725061347.077D811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3748 Modified Files: libnotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnotify/devel/libnotify.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- libnotify.spec 25 Feb 2009 16:41:14 -0000 1.39 +++ libnotify.spec 25 Jul 2009 06:13:46 -0000 1.40 @@ -8,7 +8,7 @@ Summary: Desktop notification library Name: libnotify Version: 0.4.5 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.galago-project.org/specs/notification/ Source0: http://www.galago-project.org/files/releases/source/%{name}/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libnotify/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:14:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:14:02 +0000 (UTC) Subject: rpms/libnotifymm/devel libnotifymm.spec,1.5,1.6 Message-ID: <20090725061402.9FE8311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnotifymm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3968 Modified Files: libnotifymm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnotifymm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnotifymm/devel/libnotifymm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libnotifymm.spec 25 Feb 2009 16:42:09 -0000 1.5 +++ libnotifymm.spec 25 Jul 2009 06:14:02 -0000 1.6 @@ -3,7 +3,7 @@ Name: libnotifymm Version: 0.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ interface for libnotify Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:14:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:14:16 +0000 (UTC) Subject: rpms/libnova/devel libnova.spec,1.4,1.5 Message-ID: <20090725061416.6990011C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnova/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4153 Modified Files: libnova.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnova.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnova/devel/libnova.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libnova.spec 25 Feb 2009 16:42:59 -0000 1.4 +++ libnova.spec 25 Jul 2009 06:14:16 -0000 1.5 @@ -1,6 +1,6 @@ Name: libnova Version: 0.12.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Libnova is a general purpose astronomy & astrodynamics library Group: Development/Libraries License: LGPLv2+ @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.12.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:14:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:14:30 +0000 (UTC) Subject: rpms/libnss-mysql/devel libnss-mysql.spec,1.8,1.9 Message-ID: <20090725061430.8FEC111C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnss-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4331 Modified Files: libnss-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnss-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnss-mysql/devel/libnss-mysql.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libnss-mysql.spec 16 Mar 2009 07:25:56 -0000 1.8 +++ libnss-mysql.spec 25 Jul 2009 06:14:30 -0000 1.9 @@ -1,7 +1,7 @@ Summary: NSS library for MySQL Name: libnss-mysql Version: 1.5 -Release: 11%{?dist} +Release: 12%{?dist} Source0: http://prdownloads.sourceforge.net/libnss-mysql/libnss-mysql-%{version}.tar.gz Patch1: libnss-mysql-multiarch.patch URL: http://libnss-mysql.sourceforge.net @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %doc sample %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:14:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:14:43 +0000 (UTC) Subject: rpms/libnss-pgsql/devel libnss-pgsql.spec,1.2,1.3 Message-ID: <20090725061443.68C4511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnss-pgsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4501 Modified Files: libnss-pgsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnss-pgsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnss-pgsql/devel/libnss-pgsql.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libnss-pgsql.spec 25 Feb 2009 16:44:51 -0000 1.2 +++ libnss-pgsql.spec 25 Jul 2009 06:14:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: libnss-pgsql Version: 1.5.0 -Release: 0.3.beta%{?dist} +Release: 0.4.beta%{?dist} Summary: Name Service Switch library that interface with PostgreSQL Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.5.0-0.4.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.0-0.3.beta - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:14:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:14:57 +0000 (UTC) Subject: rpms/libntlm/devel libntlm.spec,1.8,1.9 Message-ID: <20090725061457.91E6B11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libntlm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4702 Modified Files: libntlm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libntlm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libntlm/devel/libntlm.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libntlm.spec 25 Feb 2009 16:45:47 -0000 1.8 +++ libntlm.spec 25 Jul 2009 06:14:57 -0000 1.9 @@ -1,6 +1,6 @@ Name: libntlm Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NTLM authentication library Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:15:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:15:11 +0000 (UTC) Subject: rpms/libnxml/devel libnxml.spec,1.2,1.3 Message-ID: <20090725061511.A5E3511C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libnxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4906 Modified Files: libnxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libnxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libnxml/devel/libnxml.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libnxml.spec 25 Feb 2009 16:46:44 -0000 1.2 +++ libnxml.spec 25 Jul 2009 06:15:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: libnxml Version: 0.18.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C library for parsing, writing and creating XML Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.18.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.18.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:15:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:15:27 +0000 (UTC) Subject: rpms/libofa/devel libofa.spec,1.9,1.10 Message-ID: <20090725061527.777EB11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libofa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5096 Modified Files: libofa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libofa.spec =================================================================== RCS file: /cvs/pkgs/rpms/libofa/devel/libofa.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libofa.spec 25 Feb 2009 17:18:47 -0000 1.9 +++ libofa.spec 25 Jul 2009 06:15:27 -0000 1.10 @@ -4,7 +4,7 @@ Summary: Open Fingerprint Architecture library Name: libofa Version: 0.9.3 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2 Url: http://code.google.com/p/musicip-libofa/ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Rex Dieter - 0.9.3-15 - update Url, Source - gcc44 patch From jkeating at fedoraproject.org Sat Jul 25 06:15:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:15:43 +0000 (UTC) Subject: rpms/libofx/devel libofx.spec,1.36,1.37 Message-ID: <20090725061543.6DA7E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libofx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5294 Modified Files: libofx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libofx.spec =================================================================== RCS file: /cvs/pkgs/rpms/libofx/devel/libofx.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libofx.spec 5 Mar 2009 18:50:45 -0000 1.36 +++ libofx.spec 25 Jul 2009 06:15:43 -0000 1.37 @@ -1,7 +1,7 @@ Summary: A library for supporting Open Financial Exchange (OFX) Name: libofx Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://downloads.sourceforge.net/libofx/%{name}-%{version}.tar.gz URL: http://libofx.sourceforge.net/ Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Bill Nottingham - 0.9.1-1 - update to 0.9.1 - remove xml++ support - we've never built it From jkeating at fedoraproject.org Sat Jul 25 06:16:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:16:00 +0000 (UTC) Subject: rpms/libogg/devel libogg.spec,1.34,1.35 Message-ID: <20090725061600.7E37D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libogg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5509 Modified Files: libogg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libogg.spec =================================================================== RCS file: /cvs/pkgs/rpms/libogg/devel/libogg.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- libogg.spec 2 Jul 2009 17:05:26 -0000 1.34 +++ libogg.spec 25 Jul 2009 06:16:00 -0000 1.35 @@ -1,7 +1,7 @@ Summary: The Ogg bitstream file format library Name: libogg Version: 1.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 2 Group: System Environment/Libraries License: BSD @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/%{name}-%{version} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Adam Jackson 1.1.4-1 - libogg 1.1.4 From jkeating at fedoraproject.org Sat Jul 25 06:16:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:16:17 +0000 (UTC) Subject: rpms/liboggz/devel liboggz.spec,1.16,1.17 Message-ID: <20090725061617.0E3A711C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liboggz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5716 Modified Files: liboggz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liboggz.spec =================================================================== RCS file: /cvs/pkgs/rpms/liboggz/devel/liboggz.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- liboggz.spec 25 Feb 2009 16:50:17 -0000 1.16 +++ liboggz.spec 25 Jul 2009 06:16:16 -0000 1.17 @@ -1,6 +1,6 @@ Name: liboggz Version: 0.9.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple programming interface for Ogg files and streams Group: System Environment/Libraries @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:16:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:16:32 +0000 (UTC) Subject: rpms/liboil/devel liboil.spec,1.37,1.38 Message-ID: <20090725061632.9B14C11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liboil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5919 Modified Files: liboil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liboil.spec =================================================================== RCS file: /cvs/pkgs/rpms/liboil/devel/liboil.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- liboil.spec 10 Jun 2009 17:20:21 -0000 1.37 +++ liboil.spec 25 Jul 2009 06:16:32 -0000 1.38 @@ -1,7 +1,7 @@ Summary: Library of Optimized Inner Loops, CPU optimized functions Name: liboil Version: 0.3.16 -Release: 3%{?dist} +Release: 4%{?dist} # See COPYING which details everything, various BSD licenses apply License: BSD Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Bastien Nocera 0.3.16-3 - Fix ordering of the files members From jkeating at fedoraproject.org Sat Jul 25 06:16:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:16:49 +0000 (UTC) Subject: rpms/libopendaap/devel libopendaap.spec,1.3,1.4 Message-ID: <20090725061649.0308E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopendaap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6145 Modified Files: libopendaap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopendaap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopendaap/devel/libopendaap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libopendaap.spec 25 Feb 2009 16:52:10 -0000 1.3 +++ libopendaap.spec 25 Jul 2009 06:16:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: libopendaap Version: 0.4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for connection to iTunes music shares Group: System Environment/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:17:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:17:04 +0000 (UTC) Subject: rpms/libopenraw/devel libopenraw.spec,1.9,1.10 Message-ID: <20090725061704.6837D11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopenraw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6422 Modified Files: libopenraw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopenraw.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopenraw/devel/libopenraw.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libopenraw.spec 28 Feb 2009 14:10:13 -0000 1.9 +++ libopenraw.spec 25 Jul 2009 06:17:04 -0000 1.10 @@ -1,6 +1,6 @@ Name: libopenraw Version: 0.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Decode camera RAW files Group: System Environment/Libraries @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Caol?n McNamara - 0.0.5-3 - add stdio.h for fopen and friends From jkeating at fedoraproject.org Sat Jul 25 06:17:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:17:18 +0000 (UTC) Subject: rpms/libopensync/devel libopensync.spec,1.32,1.33 Message-ID: <20090725061718.B0F5211C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6608 Modified Files: libopensync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync/devel/libopensync.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- libopensync.spec 25 Mar 2009 19:14:21 -0000 1.32 +++ libopensync.spec 25 Jul 2009 06:17:18 -0000 1.33 @@ -2,7 +2,7 @@ Name: libopensync Epoch: 1 Version: 0.22 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A synchronization framework Group: System Environment/Libraries @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Andreas Bierfert - 1:0.22-4 - add patch for werr build failure From jkeating at fedoraproject.org Sat Jul 25 06:17:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:17:32 +0000 (UTC) Subject: rpms/libopensync-plugin-evolution2/devel libopensync-plugin-evolution2.spec, 1.20, 1.21 Message-ID: <20090725061732.9E0E811C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-evolution2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6813 Modified Files: libopensync-plugin-evolution2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-evolution2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-evolution2/devel/libopensync-plugin-evolution2.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libopensync-plugin-evolution2.spec 26 Mar 2009 13:27:40 -0000 1.20 +++ libopensync-plugin-evolution2.spec 25 Jul 2009 06:17:32 -0000 1.21 @@ -1,7 +1,7 @@ Name: libopensync-plugin-evolution2 Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Evolution 2 plugin for libopensync Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/evo2-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 10 2009 Andreas Bierfert - 1:0.22-2 - use versioned provides/requires/obsoletes From jkeating at fedoraproject.org Sat Jul 25 06:17:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:17:47 +0000 (UTC) Subject: rpms/libopensync-plugin-file/devel libopensync-plugin-file.spec, 1.15, 1.16 Message-ID: <20090725061747.3619311C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-file/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7015 Modified Files: libopensync-plugin-file.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-file.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-file/devel/libopensync-plugin-file.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libopensync-plugin-file.spec 26 Mar 2009 13:32:32 -0000 1.15 +++ libopensync-plugin-file.spec 25 Jul 2009 06:17:47 -0000 1.16 @@ -1,7 +1,7 @@ Name: libopensync-plugin-file Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File plugin for libopensync Group: System Environment/Libraries @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/file-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - use epoch in require From jkeating at fedoraproject.org Sat Jul 25 06:18:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:18:01 +0000 (UTC) Subject: rpms/libopensync-plugin-gnokii/devel libopensync-plugin-gnokii.spec, 1.7, 1.8 Message-ID: <20090725061801.748D611C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-gnokii/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7214 Modified Files: libopensync-plugin-gnokii.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-gnokii.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-gnokii/devel/libopensync-plugin-gnokii.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libopensync-plugin-gnokii.spec 26 Mar 2009 14:06:31 -0000 1.7 +++ libopensync-plugin-gnokii.spec 25 Jul 2009 06:18:01 -0000 1.8 @@ -1,7 +1,7 @@ Name: libopensync-plugin-gnokii Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Gnokii plugin for libopensync Group: System Environment/Libraries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/gnokii-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - use epoch for buildrequires From jkeating at fedoraproject.org Sat Jul 25 06:18:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:18:15 +0000 (UTC) Subject: rpms/libopensync-plugin-google-calendar/devel libopensync-plugin-google-calendar.spec, 1.6, 1.7 Message-ID: <20090725061815.25D6E11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-google-calendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7414 Modified Files: libopensync-plugin-google-calendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-google-calendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-google-calendar/devel/libopensync-plugin-google-calendar.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libopensync-plugin-google-calendar.spec 26 Mar 2009 14:08:04 -0000 1.6 +++ libopensync-plugin-google-calendar.spec 25 Jul 2009 06:18:14 -0000 1.7 @@ -1,7 +1,7 @@ Name: libopensync-plugin-google-calendar Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Google Calendar plugin for libopensync Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/google-cal-helper %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - use epoch in requires From jkeating at fedoraproject.org Sat Jul 25 06:18:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:18:30 +0000 (UTC) Subject: rpms/libopensync-plugin-gpe/devel libopensync-plugin-gpe.spec, 1.13, 1.14 Message-ID: <20090725061830.AF1BC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-gpe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7638 Modified Files: libopensync-plugin-gpe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-gpe.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-gpe/devel/libopensync-plugin-gpe.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libopensync-plugin-gpe.spec 27 Mar 2009 18:12:54 -0000 1.13 +++ libopensync-plugin-gpe.spec 25 Jul 2009 06:18:30 -0000 1.14 @@ -1,7 +1,7 @@ Name: libopensync-plugin-gpe Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GPE plugin for libopensync Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/gpe-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - use epch in requires and provides From jkeating at fedoraproject.org Sat Jul 25 06:18:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:18:44 +0000 (UTC) Subject: rpms/libopensync-plugin-irmc/devel libopensync-plugin-irmc.spec, 1.19, 1.20 Message-ID: <20090725061844.76C6911C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-irmc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7849 Modified Files: libopensync-plugin-irmc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-irmc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-irmc/devel/libopensync-plugin-irmc.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libopensync-plugin-irmc.spec 27 Mar 2009 18:19:01 -0000 1.19 +++ libopensync-plugin-irmc.spec 25 Jul 2009 06:18:44 -0000 1.20 @@ -1,7 +1,7 @@ Name: libopensync-plugin-irmc Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Irmc plugin for libopensync Group: System Environment/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/irmc-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - use epoch for buildrequires From jkeating at fedoraproject.org Sat Jul 25 06:18:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:18:59 +0000 (UTC) Subject: rpms/libopensync-plugin-kdepim/devel libopensync-plugin-kdepim.spec, 1.18, 1.19 Message-ID: <20090725061859.CE6AC11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-kdepim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8041 Modified Files: libopensync-plugin-kdepim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-kdepim.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-kdepim/devel/libopensync-plugin-kdepim.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libopensync-plugin-kdepim.spec 6 Apr 2009 00:34:55 -0000 1.18 +++ libopensync-plugin-kdepim.spec 25 Jul 2009 06:18:59 -0000 1.19 @@ -4,7 +4,7 @@ Name: libopensync-plugin-kdepim Version: 0.22 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 Summary: KDE plugin for libopensync @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/kdepim-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Kevin Kofler 1:0.22-5 - rebuild against fixed kdepimlibs (libkcal devel symlink) From jkeating at fedoraproject.org Sat Jul 25 06:19:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:19:14 +0000 (UTC) Subject: rpms/libopensync-plugin-moto/devel libopensync-plugin-moto.spec, 1.7, 1.8 Message-ID: <20090725061914.15FEE11C0099@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-moto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8238 Modified Files: libopensync-plugin-moto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-moto.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-moto/devel/libopensync-plugin-moto.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libopensync-plugin-moto.spec 27 Mar 2009 18:22:57 -0000 1.7 +++ libopensync-plugin-moto.spec 25 Jul 2009 06:19:13 -0000 1.8 @@ -4,7 +4,7 @@ Name: libopensync-plugin-moto Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Plugin for syncing with Motorola phones via libopensync Group: System Environment/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/moto-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - drop libopensync BR From jkeating at fedoraproject.org Sat Jul 25 06:20:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:20:01 +0000 (UTC) Subject: rpms/libopensync-plugin-opie/devel libopensync-plugin-opie.spec, 1.6, 1.7 Message-ID: <20090725062001.9CD8611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-opie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8734 Modified Files: libopensync-plugin-opie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-opie.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-opie/devel/libopensync-plugin-opie.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libopensync-plugin-opie.spec 27 Mar 2009 18:29:25 -0000 1.6 +++ libopensync-plugin-opie.spec 25 Jul 2009 06:20:01 -0000 1.7 @@ -1,7 +1,7 @@ Name: libopensync-plugin-opie Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Synchronisation with the Opie handheld environment Group: System Environment/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/opie-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 11 2009 Andreas Bierfert - 1:0.22-2 - Use versioned BR From jkeating at fedoraproject.org Sat Jul 25 06:20:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:20:15 +0000 (UTC) Subject: rpms/libopensync-plugin-palm/devel libopensync-plugin-palm.spec, 1.17, 1.18 Message-ID: <20090725062015.45F7D11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-palm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8951 Modified Files: libopensync-plugin-palm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-palm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-palm/devel/libopensync-plugin-palm.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libopensync-plugin-palm.spec 27 Mar 2009 18:31:59 -0000 1.17 +++ libopensync-plugin-palm.spec 25 Jul 2009 06:20:14 -0000 1.18 @@ -1,7 +1,7 @@ Name: libopensync-plugin-palm Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Palm plugin for libopensync Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/palm-sync %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 12 2009 Andreas Bierfert - 1:0.22-2 - Use versioned dependencies From jkeating at fedoraproject.org Sat Jul 25 06:20:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:20:32 +0000 (UTC) Subject: rpms/libopensync-plugin-python/devel libopensync-plugin-python.spec, 1.18, 1.19 Message-ID: <20090725062032.ABBA511C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9176 Modified Files: libopensync-plugin-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-python/devel/libopensync-plugin-python.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libopensync-plugin-python.spec 27 Mar 2009 18:38:32 -0000 1.18 +++ libopensync-plugin-python.spec 25 Jul 2009 06:20:32 -0000 1.19 @@ -1,7 +1,7 @@ Name: libopensync-plugin-python Epoch: 1 Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python plugin for libopensync Group: System Environment/Libraries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/opensync/python-plugins/sample* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 12 2009 Andreas Bierfert - 1:0.22-2 - Use versioned dependencies From jkeating at fedoraproject.org Sat Jul 25 06:20:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:20:47 +0000 (UTC) Subject: rpms/libopensync-plugin-sunbird/devel libopensync-plugin-sunbird.spec, 1.3, 1.4 Message-ID: <20090725062047.48E3311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-sunbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9416 Modified Files: libopensync-plugin-sunbird.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-sunbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-sunbird/devel/libopensync-plugin-sunbird.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libopensync-plugin-sunbird.spec 27 Mar 2009 18:41:54 -0000 1.3 +++ libopensync-plugin-sunbird.spec 25 Jul 2009 06:20:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: libopensync-plugin-sunbird Version: 0.22 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Mozilla Calendar / Sunbird Synchronization Plug-In for OpenSync Group: Applications/Productivity @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS COPYING INSTALL NEWS README %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 12 2009 Andreas Bierfert - 0.22-5 - use versioned dependencies From jkeating at fedoraproject.org Sat Jul 25 06:21:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:21:01 +0000 (UTC) Subject: rpms/libopensync-plugin-synce/devel libopensync-plugin-synce.spec, 1.7, 1.8 Message-ID: <20090725062101.CA30111C02B9@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-synce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9644 Modified Files: libopensync-plugin-synce.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-synce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-synce/devel/libopensync-plugin-synce.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libopensync-plugin-synce.spec 21 Jul 2009 20:26:02 -0000 1.7 +++ libopensync-plugin-synce.spec 25 Jul 2009 06:21:01 -0000 1.8 @@ -1,7 +1,7 @@ Name: libopensync-plugin-synce Epoch: 1 Version: 0.22.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Synce plugin for libopensync to sync WM2003 devices Group: System Environment/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/synce-plugin %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 1:0.22.1-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 06:21:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:21:16 +0000 (UTC) Subject: rpms/libopensync-plugin-syncml/devel libopensync-plugin-syncml.spec, 1.21, 1.22 Message-ID: <20090725062116.5B15A11C0381@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopensync-plugin-syncml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9853 Modified Files: libopensync-plugin-syncml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopensync-plugin-syncml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopensync-plugin-syncml/devel/libopensync-plugin-syncml.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libopensync-plugin-syncml.spec 2 Apr 2009 04:03:13 -0000 1.21 +++ libopensync-plugin-syncml.spec 25 Jul 2009 06:21:15 -0000 1.22 @@ -1,6 +1,6 @@ Name: libopensync-plugin-syncml Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: SyncML plugin for libopensync @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/syncml-obex-client %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1:0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Kevin Kofler - 1:0.22-2 - BR libsoup22-devel instead of libsoup-devel - disable -Werror so deprecation warnings from libsyncml don't break the build From jkeating at fedoraproject.org Sat Jul 25 06:21:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:21:31 +0000 (UTC) Subject: rpms/libopm/devel libopm.spec,1.6,1.7 Message-ID: <20090725062131.947A311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libopm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10070 Modified Files: libopm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libopm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libopm/devel/libopm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libopm.spec 23 Feb 2009 20:43:21 -0000 1.6 +++ libopm.spec 25 Jul 2009 06:21:31 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Blitzed open proxy monitor library Name: libopm Version: 0.1 -Release: 8.20050731cvs%{?dist} +Release: 9.20050731cvs%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://wiki.blitzed.org/BOPM @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.1-9.20050731cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0.1-8.20050731cvs - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 06:21:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:21:45 +0000 (UTC) Subject: rpms/liborigin/devel liborigin.spec,1.9,1.10 Message-ID: <20090725062145.2F97F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liborigin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10288 Modified Files: liborigin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liborigin.spec =================================================================== RCS file: /cvs/pkgs/rpms/liborigin/devel/liborigin.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- liborigin.spec 21 May 2009 10:23:54 -0000 1.9 +++ liborigin.spec 25 Jul 2009 06:21:45 -0000 1.10 @@ -1,6 +1,6 @@ Name: liborigin Version: 20080225 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for reading OriginLab OPJ project files License: GPLv2 @@ -71,6 +71,9 @@ chmod 0644 ws4.opj %{_libdir}/%{name}.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 20080225-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Dan Horak - 20080225-3 - add s390x as 64-bit arch From jkeating at fedoraproject.org Sat Jul 25 06:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:21:59 +0000 (UTC) Subject: rpms/libosip2/devel libosip2.spec,1.16,1.17 Message-ID: <20090725062159.AD2BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libosip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10508 Modified Files: libosip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libosip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libosip2/devel/libosip2.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libosip2.spec 25 Feb 2009 17:18:43 -0000 1.16 +++ libosip2.spec 25 Jul 2009 06:21:59 -0000 1.17 @@ -1,6 +1,6 @@ Name: libosip2 Version: 3.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: oSIP is an implementation of SIP @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:22:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:22:15 +0000 (UTC) Subject: rpms/libotf/devel libotf.spec,1.3,1.4 Message-ID: <20090725062215.0E45611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libotf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10747 Modified Files: libotf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libotf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libotf/devel/libotf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libotf.spec 25 Feb 2009 17:19:42 -0000 1.3 +++ libotf.spec 25 Jul 2009 06:22:14 -0000 1.4 @@ -1,6 +1,6 @@ Name: libotf Version: 0.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Library for handling OpenType Font Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/libotf-config %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:22:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:22:32 +0000 (UTC) Subject: rpms/libotr/devel libotr.spec,1.17,1.18 Message-ID: <20090725062232.C288211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libotr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11018 Modified Files: libotr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libotr.spec =================================================================== RCS file: /cvs/pkgs/rpms/libotr/devel/libotr.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libotr.spec 25 Feb 2009 17:20:40 -0000 1.17 +++ libotr.spec 25 Jul 2009 06:22:32 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Off-The-Record Messaging library and toolkit Name: libotr Version: 3.2.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 and LGPLv2 Group: System Environment/Libraries Source0: http://otr.cypherpunks.ca/%{name}-%{version}.tar.gz @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:22:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:22:47 +0000 (UTC) Subject: rpms/libowfat/devel libowfat.spec,1.1,1.2 Message-ID: <20090725062247.94DA911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libowfat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11210 Modified Files: libowfat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libowfat.spec =================================================================== RCS file: /cvs/pkgs/rpms/libowfat/devel/libowfat.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libowfat.spec 20 Mar 2009 11:08:05 -0000 1.1 +++ libowfat.spec 25 Jul 2009 06:22:47 -0000 1.2 @@ -1,7 +1,7 @@ ###%define debug_package %{nil} Name: libowfat Version: 0.28 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Reimplementation of libdjb Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.28-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Simon Wesp - 0.28-2 - Honor optflags - Add parallel build From jkeating at fedoraproject.org Sat Jul 25 06:23:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:23:02 +0000 (UTC) Subject: rpms/libp11/devel libp11.spec,1.9,1.10 Message-ID: <20090725062302.7210B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libp11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11400 Modified Files: libp11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libp11.spec =================================================================== RCS file: /cvs/pkgs/rpms/libp11/devel/libp11.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libp11.spec 25 Feb 2009 17:21:36 -0000 1.9 +++ libp11.spec 25 Jul 2009 06:23:02 -0000 1.10 @@ -1,6 +1,6 @@ Name: libp11 Version: 0.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for using PKCS#11 modules Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:23:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:23:17 +0000 (UTC) Subject: rpms/libpanelappletmm/devel libpanelappletmm.spec,1.6,1.7 Message-ID: <20090725062317.A816311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpanelappletmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11594 Modified Files: libpanelappletmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpanelappletmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpanelappletmm/devel/libpanelappletmm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libpanelappletmm.spec 16 May 2009 22:11:29 -0000 1.6 +++ libpanelappletmm.spec 25 Jul 2009 06:23:17 -0000 1.7 @@ -1,6 +1,6 @@ Name: libpanelappletmm Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for Gnome panel applets Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Denis Leroy - 2.26.0-1 - Update to upstream 2.26.0 - Removed upstreamed patch From jkeating at fedoraproject.org Sat Jul 25 06:23:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:23:33 +0000 (UTC) Subject: rpms/libpano12/devel libpano12.spec,1.5,1.6 Message-ID: <20090725062333.2BDF011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpano12/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11792 Modified Files: libpano12.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpano12.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpano12/devel/libpano12.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libpano12.spec 25 Feb 2009 17:23:25 -0000 1.5 +++ libpano12.spec 25 Jul 2009 06:23:32 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Library for manipulating panoramic images Name: libpano12 Version: 2.8.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://panotools.sourceforge.net/ Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_libdir}/libpano12.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.8.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.8.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:23:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:23:47 +0000 (UTC) Subject: rpms/libpano13/devel libpano13.spec,1.6,1.7 Message-ID: <20090725062347.58D8E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpano13/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11979 Modified Files: libpano13.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpano13.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpano13/devel/libpano13.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libpano13.spec 27 May 2009 23:02:56 -0000 1.6 +++ libpano13.spec 25 Jul 2009 06:23:47 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Library for manipulating panoramic images Name: libpano13 Version: 2.9.14 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://panotools.sourceforge.net/ Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf %{buildroot} %{_libdir}/libpano13.so %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2.9.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Bruno Postle - 2.9.14-1 - New upstream release with soname increment. From jkeating at fedoraproject.org Sat Jul 25 06:24:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:24:05 +0000 (UTC) Subject: rpms/libpaper/devel libpaper.spec,1.14,1.15 Message-ID: <20090725062405.5545611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpaper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12215 Modified Files: libpaper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpaper.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpaper/devel/libpaper.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libpaper.spec 25 Feb 2009 17:25:22 -0000 1.14 +++ libpaper.spec 25 Jul 2009 06:24:05 -0000 1.15 @@ -1,6 +1,6 @@ Name: libpaper Version: 1.1.23 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library and tools for handling papersize Group: System Environment/Libraries License: GPLv2 @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.23-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.23-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:24:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:24:20 +0000 (UTC) Subject: rpms/libpar2/devel libpar2.spec,1.5,1.6 Message-ID: <20090725062420.0400E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpar2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12386 Modified Files: libpar2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpar2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpar2/devel/libpar2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libpar2.spec 25 Feb 2009 17:26:17 -0000 1.5 +++ libpar2.spec 25 Jul 2009 06:24:19 -0000 1.6 @@ -1,6 +1,6 @@ Name: libpar2 Version: 0.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Library for performing comman tasks related to PAR recovery sets Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}/include/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:24:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:24:34 +0000 (UTC) Subject: rpms/libpcap/devel libpcap.spec,1.10,1.11 Message-ID: <20090725062434.7B3E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12549 Modified Files: libpcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpcap/devel/libpcap.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libpcap.spec 22 Jul 2009 16:39:29 -0000 1.10 +++ libpcap.spec 25 Jul 2009 06:24:34 -0000 1.11 @@ -1,7 +1,7 @@ Name: libpcap Epoch: 14 Version: 1.0.0 -Release: 1.20090716git6de2de%{?dist} +Release: 2.20090716git6de2de%{?dist} Summary: A system-independent interface for user-level packet capture Group: Development/Libraries License: BSD with advertising @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/pcap*.5* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 14:1.0.0-2.20090716git6de2de +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Miroslav Lichvar 14:1.0.0-1.20090716git6de2de - update to 1.0.0, git snapshot 20090716git6de2de From jkeating at fedoraproject.org Sat Jul 25 06:24:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:24:49 +0000 (UTC) Subject: rpms/libpcapnav/devel libpcapnav.spec,1.2,1.3 Message-ID: <20090725062449.0B8E411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpcapnav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12700 Modified Files: libpcapnav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpcapnav.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpcapnav/devel/libpcapnav.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libpcapnav.spec 25 Feb 2009 17:28:15 -0000 1.2 +++ libpcapnav.spec 25 Jul 2009 06:24:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: libpcapnav Version: 0.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Wrapper library for libpcap offering navigation inside of a tracefile Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/pcapnav/ %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:25:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:25:02 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess.spec,1.16,1.17 Message-ID: <20090725062502.D1E1F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12842 Modified Files: libpciaccess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libpciaccess.spec 21 Apr 2009 14:40:06 -0000 1.16 +++ libpciaccess.spec 25 Jul 2009 06:25:02 -0000 1.17 @@ -3,7 +3,7 @@ Name: libpciaccess Version: 0.10.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PCI access library Group: System Environment/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pciaccess.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Adam Jackson 0.10.5-1 - libpciaccess 0.10.5 From jkeating at fedoraproject.org Sat Jul 25 06:25:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:25:24 +0000 (UTC) Subject: rpms/libpfm/devel libpfm.spec,1.34,1.35 Message-ID: <20090725062524.33C3811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpfm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13023 Modified Files: libpfm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpfm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpfm/devel/libpfm.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- libpfm.spec 25 Feb 2009 17:30:13 -0000 1.34 +++ libpfm.spec 25 Jul 2009 06:25:23 -0000 1.35 @@ -1,7 +1,7 @@ Summary: A performance monitoring library for Linux Name: libpfm Version: 3.5 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: Development/Libraries ExclusiveArch: ia64 %{ix86} x86_64 ppc ppc64 @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_includedir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 06:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:25:39 +0000 (UTC) Subject: rpms/libplist/devel libplist.spec,1.2,1.3 Message-ID: <20090725062539.DE5A911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libplist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13175 Modified Files: libplist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libplist.spec =================================================================== RCS file: /cvs/pkgs/rpms/libplist/devel/libplist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libplist.spec 18 Jul 2009 22:12:07 -0000 1.2 +++ libplist.spec 25 Jul 2009 06:25:39 -0000 1.3 @@ -2,7 +2,7 @@ Name: libplist Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for manipulating Apple Binary and XML Property Lists Group: System Environment/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/libplist %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Peter Robinson 0.13-1 - New upstream 0.13 release From jkeating at fedoraproject.org Sat Jul 25 06:25:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:25:54 +0000 (UTC) Subject: rpms/libpng/devel libpng.spec,1.53,1.54 Message-ID: <20090725062554.A6FAE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13333 Modified Files: libpng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpng.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpng/devel/libpng.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- libpng.spec 13 Jun 2009 17:28:56 -0000 1.53 +++ libpng.spec 25 Jul 2009 06:25:54 -0000 1.54 @@ -2,7 +2,7 @@ Summary: A library of functions for mani Name: libpng Epoch: 2 Version: 1.2.37 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: System Environment/Libraries URL: http://www.libpng.org/pub/png/ @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/libpng1 rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 2:1.2.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Tom Lane 2:1.2.37-1 - Update to libpng 1.2.37, to fix CVE-2009-2042 Related: #504782 From jkeating at fedoraproject.org Sat Jul 25 06:26:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:26:11 +0000 (UTC) Subject: rpms/libpng10/devel libpng10.spec,1.31,1.32 Message-ID: <20090725062611.4E60511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpng10/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13483 Modified Files: libpng10.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpng10.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpng10/devel/libpng10.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libpng10.spec 17 Jul 2009 11:32:35 -0000 1.31 +++ libpng10.spec 25 Jul 2009 06:26:10 -0000 1.32 @@ -1,7 +1,7 @@ Summary: Old version of libpng, needed to run old binaries Name: libpng10 Version: 1.0.47 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib Group: System Environment/Libraries URL: http://www.libpng.org/pub/png/libpng.html @@ -111,6 +111,9 @@ libpng10-devel. %{_libdir}/pkgconfig/libpng10.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.47-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Paul Howarth 1.0.47-1 - update to 1.0.47 (changes to unknown chunk handling and documentation) From jkeating at fedoraproject.org Sat Jul 25 06:26:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 06:26:28 +0000 (UTC) Subject: rpms/libpolyxmass/devel libpolyxmass.spec,1.12,1.13 Message-ID: <20090725062628.5C79411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpolyxmass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13662 Modified Files: libpolyxmass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpolyxmass.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpolyxmass/devel/libpolyxmass.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libpolyxmass.spec 3 Mar 2009 19:41:59 -0000 1.12 +++ libpolyxmass.spec 25 Jul 2009 06:26:27 -0000 1.13 @@ -1,6 +1,6 @@ Name: libpolyxmass Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Polymer chemistry-related functionalities Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libpolyxmass.pc %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Robert Scheck - 0.9.1-4 - Rebuilt against libtool 2.2 From mtasaka at fedoraproject.org Sat Jul 25 06:53:16 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 06:53:16 +0000 (UTC) Subject: rpms/rubygem-allison/devel rubygem-allison.spec,1.1,1.2 Message-ID: <20090725065316.2CBDD11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-allison/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23235 Modified Files: rubygem-allison.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.3-4 - F-12: Mass rebuild Index: rubygem-allison.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-allison/devel/rubygem-allison.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-allison.spec 24 Jun 2009 18:57:06 -0000 1.1 +++ rubygem-allison.spec 25 Jul 2009 06:53:14 -0000 1.2 @@ -9,7 +9,7 @@ Summary: A modern, pretty RDoc template Name: rubygem-%{gemname} Version: 2.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: AFL URL: http://github.com/fauna/allison/tree/master @@ -89,6 +89,9 @@ rm -rf %{buildroot} %{gemdir}/doc/%{gemname}-%{version}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.3-4 +- F-12: Mass rebuild + * Thu Jun 25 2009 Mamoru Tasaka - 2.0.3-3 - It turned out that the patch mentioned below was not needed... From mtasaka at fedoraproject.org Sat Jul 25 06:54:24 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 06:54:24 +0000 (UTC) Subject: rpms/rubygem-gettext/devel rubygem-gettext.spec,1.10,1.11 Message-ID: <20090725065424.049A511C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23632 Modified Files: rubygem-gettext.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-2 - F-12: Mass rebuild Index: rubygem-gettext.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-gettext/devel/rubygem-gettext.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- rubygem-gettext.spec 27 May 2009 15:20:27 -0000 1.10 +++ rubygem-gettext.spec 25 Jul 2009 06:54:23 -0000 1.11 @@ -14,7 +14,7 @@ Name: rubygem-%{gemname} Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: RubyGem of Localization Library and Tools for Ruby Group: Development/Languages @@ -226,6 +226,9 @@ rake test %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-2 +- F-12: Mass rebuild + * Wed May 28 2009 Mamoru Tasaka - 2.0.4-1 - 2.0.4 From mtasaka at fedoraproject.org Sat Jul 25 06:54:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 06:54:56 +0000 (UTC) Subject: rpms/rubygem-gettext_activerecord/devel rubygem-gettext_activerecord.spec, 1.3, 1.4 Message-ID: <20090725065456.29AF911C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-gettext_activerecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23856 Modified Files: rubygem-gettext_activerecord.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-8 - F-12: Mass rebuild Index: rubygem-gettext_activerecord.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-gettext_activerecord/devel/rubygem-gettext_activerecord.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-gettext_activerecord.spec 24 Jun 2009 18:56:59 -0000 1.3 +++ rubygem-gettext_activerecord.spec 25 Jul 2009 06:54:55 -0000 1.4 @@ -15,7 +15,7 @@ Summary: Localization support for ActiveRecord by Ruby-GetText-Package Name: rubygem-%{gemname} Version: 2.0.4 -Release: 7%{?dist} +Release: 8%{?dist} Group: Development/Languages License: GPLv2 or Ruby URL: http://www.yotabanana.com/hiki/ruby-gettext-rails.html @@ -145,6 +145,9 @@ rake test || : %{geminstdir}/test/[dm-pv-z]*/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-8 +- F-12: Mass rebuild + * Thu Jun 25 2009 Mamoru Tasaka - 2.0.4-7 - Add BR: rubygem(allison) for %%check From mtasaka at fedoraproject.org Sat Jul 25 06:55:24 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 06:55:24 +0000 (UTC) Subject: rpms/rubygem-gettext_rails/devel rubygem-gettext_rails.spec, 1.1, 1.2 Message-ID: <20090725065524.0093311C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-gettext_rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24067 Modified Files: rubygem-gettext_rails.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-5 - F-12: Mass rebuild Index: rubygem-gettext_rails.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-gettext_rails/devel/rubygem-gettext_rails.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-gettext_rails.spec 27 Jun 2009 04:00:37 -0000 1.1 +++ rubygem-gettext_rails.spec 25 Jul 2009 06:55:23 -0000 1.2 @@ -17,7 +17,7 @@ Summary: Localization support for Ruby on Rails by Ruby-GetText-Package Name: rubygem-%{gemname} Version: 2.0.4 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: GPLv2 or Ruby URL: http://www.yotabanana.com/hiki/ruby-gettext-rails.html @@ -173,6 +173,9 @@ rake test || : %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-5 +- F-12: Mass rebuild + * Fri Jun 26 2009 Mamoru Tasaka - 2.0.4-4 - Fix BRs - Cleanup Summary and so on From mtasaka at fedoraproject.org Sat Jul 25 06:56:36 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 06:56:36 +0000 (UTC) Subject: rpms/rubygem-hpricot/devel rubygem-hpricot.spec,1.6,1.7 Message-ID: <20090725065636.5CD3411C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-hpricot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24476 Modified Files: rubygem-hpricot.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.8.1-3 - F-12: Mass rebuild Index: rubygem-hpricot.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-hpricot/devel/rubygem-hpricot.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- rubygem-hpricot.spec 26 Jun 2009 17:51:19 -0000 1.6 +++ rubygem-hpricot.spec 25 Jul 2009 06:56:36 -0000 1.7 @@ -10,7 +10,7 @@ Summary: A Fast, Enjoyable HTML Parser for Ruby Name: rubygem-%{gemname} Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages # ext/fast_xs/FastXsService.java is licensed under ASL 2.0 License: MIT and ASL 2.0 @@ -193,6 +193,9 @@ rm -rf %{buildroot} %{ruby_sitelib}/%{gemname}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.8.1-3 +- F-12: Mass rebuild + * Sat Jun 27 2009 Mamoru Tasaka - 0.8.1-2 - Readd Rakefile - Enable check From mtasaka at fedoraproject.org Sat Jul 25 07:01:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:01:29 +0000 (UTC) Subject: rpms/rubygem-htmlentities/devel rubygem-htmlentities.spec,1.1,1.2 Message-ID: <20090725070129.D928F11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-htmlentities/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26928 Modified Files: rubygem-htmlentities.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 4.0.0-3 - F-12: Mass rebuild Index: rubygem-htmlentities.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-htmlentities/devel/rubygem-htmlentities.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-htmlentities.spec 6 Mar 2009 01:18:55 -0000 1.1 +++ rubygem-htmlentities.spec 25 Jul 2009 07:01:29 -0000 1.2 @@ -10,7 +10,7 @@ Summary: A module for encoding and decoding (X)HTML entities Name: rubygem-%{gemname} Version: 4.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://htmlentities.rubyforge.org/ @@ -137,6 +137,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 4.0.0-3 +- F-12: Mass rebuild + * Fri Mar 6 2009 Mamoru Tasaka - Cleanups From mtasaka at fedoraproject.org Sat Jul 25 07:04:31 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:04:31 +0000 (UTC) Subject: rpms/rubygem-locale/devel rubygem-locale.spec,1.4,1.5 Message-ID: <20090725070431.9327611C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-locale/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27915 Modified Files: rubygem-locale.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-2 - F-12: Mass rebuild Index: rubygem-locale.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-locale/devel/rubygem-locale.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-locale.spec 27 May 2009 15:20:28 -0000 1.4 +++ rubygem-locale.spec 25 Jul 2009 07:04:31 -0000 1.5 @@ -10,7 +10,7 @@ Summary: Pure ruby library which provides basic APIs for localization Name: rubygem-%{gemname} Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: LGPLv2+ or Ruby URL: http://locale.rubyforge.org/ @@ -161,6 +161,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-2 +- F-12: Mass rebuild + * Wed May 27 2009 Mamoru Tasaka - 2.0.4-1 - 2.0.4 From mtasaka at fedoraproject.org Sat Jul 25 07:06:02 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:06:02 +0000 (UTC) Subject: rpms/rubygem-locale_rails/devel rubygem-locale_rails.spec,1.1,1.2 Message-ID: <20090725070602.584E511C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-locale_rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28447 Modified Files: rubygem-locale_rails.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-3 - F-12: Mass rebuild Index: rubygem-locale_rails.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-locale_rails/devel/rubygem-locale_rails.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-locale_rails.spec 23 Jun 2009 04:30:50 -0000 1.1 +++ rubygem-locale_rails.spec 25 Jul 2009 07:06:02 -0000 1.2 @@ -16,7 +16,7 @@ Summary: Ruby-Locale for Ruby on Rails Name: rubygem-%{gemname} Version: 2.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: GPLv2 or Ruby URL: http://www.yotabanana.com/hiki/ruby-locale-rails.html @@ -101,6 +101,9 @@ rake test %{geminstdir}/test/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.0.4-3 +- F-12: Mass rebuild + * Tue Jun 23 2009 Mamoru Tasaka - 2.0.4-2 - Fix license tag From mtasaka at fedoraproject.org Sat Jul 25 07:06:39 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:06:39 +0000 (UTC) Subject: rpms/rubygem-mechanize/devel rubygem-mechanize.spec,1.8,1.9 Message-ID: <20090725070639.C14C011C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-mechanize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28697 Modified Files: rubygem-mechanize.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.9.3-2 - F-12: Mass rebuild Index: rubygem-mechanize.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-mechanize/devel/rubygem-mechanize.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-mechanize.spec 10 Jun 2009 20:21:33 -0000 1.8 +++ rubygem-mechanize.spec 25 Jul 2009 07:06:39 -0000 1.9 @@ -9,7 +9,7 @@ Summary: A handy web browsing ruby object Name: rubygem-%{gemname} Version: 0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPL+ URL: http://mechanize.rubyforge.org/ @@ -182,6 +182,9 @@ popd %{ruby_sitelib}/www/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.9.3-2 +- F-12: Mass rebuild + * Thu Jun 11 2009 Mamoru Tasaka - 0.9.3-1 - 0.9.3 From mtasaka at fedoraproject.org Sat Jul 25 07:07:07 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:07:07 +0000 (UTC) Subject: rpms/rubygem-mkrf/devel rubygem-mkrf.spec,1.1,1.2 Message-ID: <20090725070707.C22FA11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-mkrf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28891 Modified Files: rubygem-mkrf.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.2.3-3 - F-12: Mass rebuild Index: rubygem-mkrf.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-mkrf/devel/rubygem-mkrf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-mkrf.spec 10 Jul 2009 04:10:09 -0000 1.1 +++ rubygem-mkrf.spec 25 Jul 2009 07:07:07 -0000 1.2 @@ -7,7 +7,7 @@ Summary: Making C extensions for Ruby a bit easier Name: rubygem-%{gemname} Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://mkrf.rubyforge.org/ @@ -93,6 +93,9 @@ popd %{gemdir}/doc/%{gemname}-%{version}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.2.3-3 +- F-12: Mass rebuild + * Thu Jul 9 2009 Mamoru Tasaka - 0.2.3-2 - Improve indentation - Make sure gem is installed with proper permission From mtasaka at fedoraproject.org Sat Jul 25 07:07:58 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:07:58 +0000 (UTC) Subject: rpms/rubygem-nokogiri/devel rubygem-nokogiri.spec,1.9,1.10 Message-ID: <20090725070758.365D211C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-nokogiri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29205 Modified Files: rubygem-nokogiri.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.3.2-3 - F-12: Mass rebuild Index: rubygem-nokogiri.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-nokogiri/devel/rubygem-nokogiri.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-nokogiri.spec 2 Jul 2009 05:36:36 -0000 1.9 +++ rubygem-nokogiri.spec 25 Jul 2009 07:07:57 -0000 1.10 @@ -9,7 +9,7 @@ Summary: An HTML, XML, SAX, and Reader parser Name: rubygem-%{gemname} Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://nokogiri.rubyforge.org/nokogiri/ @@ -198,6 +198,9 @@ popd %{ruby_sitelib}/xsd/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.3.2-3 +- F-12: Mass rebuild + * Thu Jul 2 2009 Mamoru Tasaka - 1.3.2-2 - Enable test - Recompile with -O2 From mtasaka at fedoraproject.org Sat Jul 25 07:10:19 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:10:19 +0000 (UTC) Subject: rpms/rubygem-rake-compiler/devel rubygem-rake-compiler.spec, 1.1, 1.2 Message-ID: <20090725071019.32E9911C04D2@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rake-compiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29951 Modified Files: rubygem-rake-compiler.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.5.0-2 - F-12: Mass rebuild Index: rubygem-rake-compiler.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rake-compiler/devel/rubygem-rake-compiler.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-rake-compiler.spec 2 Jul 2009 05:36:30 -0000 1.1 +++ rubygem-rake-compiler.spec 25 Jul 2009 07:10:18 -0000 1.2 @@ -7,7 +7,7 @@ Summary: Rake-based Ruby C Extension task generator Name: rubygem-%{gemname} Version: 0.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://rake-compiler.rubyforge.org/ @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.5.0-2 +- F-12: Mass rebuild + * Thu Jul 2 2009 Mamoru Tasaka - 0.5.0-2 - Restore files under %%{geminstdir}/bin From mtasaka at fedoraproject.org Sat Jul 25 07:11:56 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:11:56 +0000 (UTC) Subject: rpms/rubygem-ruby-opengl/devel rubygem-ruby-opengl.spec,1.1,1.2 Message-ID: <20090725071156.4420111C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-ruby-opengl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30583 Modified Files: rubygem-ruby-opengl.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.60.1-3 - F-12: Mass rebuild Index: rubygem-ruby-opengl.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-ruby-opengl/devel/rubygem-ruby-opengl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-ruby-opengl.spec 10 Jul 2009 04:10:10 -0000 1.1 +++ rubygem-ruby-opengl.spec 25 Jul 2009 07:11:56 -0000 1.2 @@ -9,7 +9,7 @@ Summary: OpenGL Interface for Ruby Name: rubygem-%{gemname} Version: 0.60.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://ruby-opengl.rubyforge.org/ @@ -164,5 +164,8 @@ exit 0 %{ruby_sitelib}/opengl.rb %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.60.1-3 +- F-12: Mass rebuild + * Fri Jun 27 2009 Mamoru Tasaka - 0.60.1-2 - Initial packaging From mtasaka at fedoraproject.org Sat Jul 25 07:12:50 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:12:50 +0000 (UTC) Subject: rpms/rubygem-zoom/devel rubygem-zoom.spec,1.8,1.9 Message-ID: <20090725071250.EB5D211C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-zoom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30893 Modified Files: rubygem-zoom.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4.1-6 - F-12: Mass rebuild Index: rubygem-zoom.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-zoom/devel/rubygem-zoom.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-zoom.spec 24 Feb 2009 15:02:07 -0000 1.8 +++ rubygem-zoom.spec 25 Jul 2009 07:12:50 -0000 1.9 @@ -10,7 +10,7 @@ Name: rubygem-%{gemname} Version: 0.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages Summary: Ruby binding to ZOOM @@ -151,6 +151,9 @@ rake test %{geminstdir}/Rakefile %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4.1-6 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.4.1-5 - %%global-ize "nested" macro From mtasaka at fedoraproject.org Sat Jul 25 07:17:54 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:17:54 +0000 (UTC) Subject: rpms/ruby-RMagick/devel ruby-RMagick.spec,1.31,1.32 Message-ID: <20090725071754.5688811C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-RMagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32289 Modified Files: ruby-RMagick.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 2.10.0-2 - F-12: Mass rebuild Index: ruby-RMagick.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-RMagick/devel/ruby-RMagick.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- ruby-RMagick.spec 27 Jun 2009 19:02:33 -0000 1.31 +++ ruby-RMagick.spec 25 Jul 2009 07:17:53 -0000 1.32 @@ -15,7 +15,7 @@ Requires: ImageMagick = %2\ %define mainver 2.10.0 %undefine betaver -%define fedorarel 1 +%define fedorarel 2 Name: ruby-%{modname} @@ -106,6 +106,9 @@ touch -r README.html DOCDIR/README.html %doc DOCDIR/HTML/* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 2.10.0-2 +- F-12: Mass rebuild + * Sun Jun 28 2009 Mamoru Tasaka - 2.10.0-1 - 2.10.0 From mtasaka at fedoraproject.org Sat Jul 25 07:19:42 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:19:42 +0000 (UTC) Subject: rpms/ruby-aws/devel ruby-aws.spec,1.16,1.17 Message-ID: <20090725071942.E2CAA11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-aws/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv367 Modified Files: ruby-aws.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.7.0-2 - F-12: Mass rebuild Index: ruby-aws.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-aws/devel/ruby-aws.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ruby-aws.spec 24 Jun 2009 18:22:40 -0000 1.16 +++ ruby-aws.spec 25 Jul 2009 07:19:42 -0000 1.17 @@ -3,7 +3,7 @@ Name: ruby-aws Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Ruby interface to Amazon Web Services Group: Development/Languages @@ -78,6 +78,9 @@ ruby setup.rb install \ %doc test/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.7.0-2 +- F-12: Mass rebuild + * Thu Jun 25 2009 Mamoru Tasaka - 0.7.0-1 - 0.7.0 From mtasaka at fedoraproject.org Sat Jul 25 07:20:07 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:20:07 +0000 (UTC) Subject: rpms/ruby-bsearch/devel ruby-bsearch.spec,1.4,1.5 Message-ID: <20090725072007.38F1011C049E@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-bsearch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv565 Modified Files: ruby-bsearch.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.5-4 - F-12: Mass rebuild Index: ruby-bsearch.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-bsearch/devel/ruby-bsearch.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ruby-bsearch.spec 24 Feb 2009 13:02:31 -0000 1.4 +++ ruby-bsearch.spec 25 Jul 2009 07:20:07 -0000 1.5 @@ -4,7 +4,7 @@ Name: ruby-bsearch Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Binary search library for Ruby Group: Development/Languages License: Ruby @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.5-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.5-3 - %%global-ize "nested" macro From mtasaka at fedoraproject.org Sat Jul 25 07:21:15 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:21:15 +0000 (UTC) Subject: rpms/ruby-imagesize/devel ruby-imagesize.spec,1.2,1.3 Message-ID: <20090725072115.211A911C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-imagesize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv918 Modified Files: ruby-imagesize.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.1.1-3 - F-12: Mass rebuild Index: ruby-imagesize.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-imagesize/devel/ruby-imagesize.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ruby-imagesize.spec 24 Feb 2009 13:09:17 -0000 1.2 +++ ruby-imagesize.spec 25 Jul 2009 07:21:14 -0000 1.3 @@ -6,7 +6,7 @@ Name: ruby-%{modname} Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Measure image size code by Pure Ruby Group: Development/Languages @@ -67,6 +67,9 @@ ruby setup.rb test %{ruby_sitelib}/image_size/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.1.1-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.1.1-2 - %%global-ize "nested" macro From mtasaka at fedoraproject.org Sat Jul 25 07:21:55 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:21:55 +0000 (UTC) Subject: rpms/ruby-marc/devel ruby-marc.spec,1.7,1.8 Message-ID: <20090725072155.355E711C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-marc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1255 Modified Files: ruby-marc.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.2.2-3 - F-12: Mass rebuild Index: ruby-marc.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-marc/devel/ruby-marc.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ruby-marc.spec 24 Feb 2009 13:15:34 -0000 1.7 +++ ruby-marc.spec 25 Jul 2009 07:21:54 -0000 1.8 @@ -7,7 +7,7 @@ Name: ruby-%{modname} Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ruby library for MARC catalog Group: Development/Languages @@ -57,6 +57,9 @@ rake -v test || : %{ruby_sitelib}/%{modname}/ %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.2.2-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.2.2-2 - %%global-ize "nested" macro From ellert at fedoraproject.org Sat Jul 25 07:25:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:25:22 +0000 (UTC) Subject: rpms/globus-callout/devel globus-callout.spec,1.4,1.5 Message-ID: <20090725072522.8A87F11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2403 Modified Files: globus-callout.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-callout.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-callout/devel/globus-callout.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- globus-callout.spec 15 Jun 2009 17:20:16 -0000 1.4 +++ globus-callout.spec 25 Jul 2009 07:25:22 -0000 1.5 @@ -7,7 +7,7 @@ Name: globus-callout %global _name %(tr - _ <<< %{name}) Version: 0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus Callout Library Group: System Environment/Libraries @@ -31,38 +31,37 @@ Patch0: %{name}-noflavext.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Callout Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Callout Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -198,6 +197,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.7-4 - Update to official Fedora Globus packaging guidelines - Allow loading callouts without flavor extensions From ellert at fedoraproject.org Sat Jul 25 07:25:30 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:25:30 +0000 (UTC) Subject: rpms/globus-callout/F-11 globus-callout.spec,1.4,1.5 Message-ID: <20090725072530.D4C0A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2467 Modified Files: globus-callout.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-callout.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-callout/F-11/globus-callout.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- globus-callout.spec 15 Jun 2009 17:23:31 -0000 1.4 +++ globus-callout.spec 25 Jul 2009 07:25:30 -0000 1.5 @@ -7,7 +7,7 @@ Name: globus-callout %global _name %(tr - _ <<< %{name}) Version: 0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus Callout Library Group: System Environment/Libraries @@ -31,38 +31,37 @@ Patch0: %{name}-noflavext.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Callout Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Callout Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -198,6 +197,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.7-4 - Update to official Fedora Globus packaging guidelines - Allow loading callouts without flavor extensions From ellert at fedoraproject.org Sat Jul 25 07:25:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:25:39 +0000 (UTC) Subject: rpms/globus-callout/F-10 globus-callout.spec,1.4,1.5 Message-ID: <20090725072539.9156511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2522 Modified Files: globus-callout.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-callout.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-callout/F-10/globus-callout.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- globus-callout.spec 15 Jun 2009 17:22:15 -0000 1.4 +++ globus-callout.spec 25 Jul 2009 07:25:39 -0000 1.5 @@ -7,7 +7,7 @@ Name: globus-callout %global _name %(tr - _ <<< %{name}) Version: 0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus Callout Library Group: System Environment/Libraries @@ -31,38 +31,37 @@ Patch0: %{name}-noflavext.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Callout Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Callout Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -198,6 +197,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.7-4 - Update to official Fedora Globus packaging guidelines - Allow loading callouts without flavor extensions From ellert at fedoraproject.org Sat Jul 25 07:25:47 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:25:47 +0000 (UTC) Subject: rpms/globus-callout/EL-5 globus-callout.spec,1.4,1.5 Message-ID: <20090725072548.0035911C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2589 Modified Files: globus-callout.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-callout.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-callout/EL-5/globus-callout.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- globus-callout.spec 15 Jun 2009 17:25:58 -0000 1.4 +++ globus-callout.spec 25 Jul 2009 07:25:47 -0000 1.5 @@ -7,7 +7,7 @@ Name: globus-callout %global _name %(tr - _ <<< %{name}) Version: 0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus Callout Library Group: System Environment/Libraries @@ -31,38 +31,37 @@ Patch0: %{name}-noflavext.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Callout Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Callout Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -198,6 +197,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.7-4 - Update to official Fedora Globus packaging guidelines - Allow loading callouts without flavor extensions From ellert at fedoraproject.org Sat Jul 25 07:25:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:25:56 +0000 (UTC) Subject: rpms/globus-callout/EL-4 globus-callout.spec,1.4,1.5 Message-ID: <20090725072556.F0FAD11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-callout/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2658 Modified Files: globus-callout.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-callout.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-callout/EL-4/globus-callout.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- globus-callout.spec 15 Jun 2009 17:24:46 -0000 1.4 +++ globus-callout.spec 25 Jul 2009 07:25:56 -0000 1.5 @@ -7,7 +7,7 @@ Name: globus-callout %global _name %(tr - _ <<< %{name}) Version: 0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus Callout Library Group: System Environment/Libraries @@ -31,38 +31,37 @@ Patch0: %{name}-noflavext.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Callout Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Callout Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -198,6 +197,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.7-4 - Update to official Fedora Globus packaging guidelines - Allow loading callouts without flavor extensions From ellert at fedoraproject.org Sat Jul 25 07:26:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:05 +0000 (UTC) Subject: rpms/globus-common/devel globus-common.spec,1.5,1.6 Message-ID: <20090725072605.6DA5D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2720 Modified Files: globus-common.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 10.2-6 - Add instruction set architecture (isa) tags - Make doc subpackage noarch - Replace /usr/bin/env shebangs Index: globus-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-common/devel/globus-common.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-common.spec 15 Jun 2009 15:33:32 -0000 1.5 +++ globus-common.spec 25 Jul 2009 07:26:05 -0000 1.6 @@ -10,7 +10,7 @@ Name: globus-common %global _name %(tr - _ <<< %{name}) Version: 10.2 %global setupversion 2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Common Library Group: System Environment/Libraries @@ -74,52 +74,47 @@ Patch11: %{name}-pathmax.patch Patch12: %{name}-setup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Common Library Programs Group: Applications/Internet Provides: %{name}-setup = %{setupversion} -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool >= 1 -%if %{?fedora}%{!?fedora:0} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -%else -%if %{?rhel}%{!?rhel:0} >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool%{?_isa} >= 1 +%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 4 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %else Requires: perl %endif -%endif %package devel Summary: Globus Toolkit - Common Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Common Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -284,6 +279,10 @@ grep globus-makefile-header $GLOBUSPACKA sed /globus-makefile-header/d \ -i $GLOBUSPACKAGEDIR/%{_name}/%{flavor}_pgm.filelist +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' \ + -i $RPM_BUILD_ROOT%{_bindir}/globus-makefile-header* + # Remove config.guess file (conflicts with grid-packaging-tools package) rm $RPM_BUILD_ROOT%{_datadir}/globus/config.guess sed /config.guess/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -371,6 +370,11 @@ rm -f config.log config.status %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 10.2-6 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 10.2-5 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:26:13 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:13 +0000 (UTC) Subject: rpms/globus-common/F-11 globus-common.spec,1.5,1.6 Message-ID: <20090725072613.AFB1E11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2778 Modified Files: globus-common.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 10.2-6 - Add instruction set architecture (isa) tags - Make doc subpackage noarch - Replace /usr/bin/env shebangs Index: globus-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-common/F-11/globus-common.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-common.spec 15 Jun 2009 15:37:11 -0000 1.5 +++ globus-common.spec 25 Jul 2009 07:26:13 -0000 1.6 @@ -10,7 +10,7 @@ Name: globus-common %global _name %(tr - _ <<< %{name}) Version: 10.2 %global setupversion 2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Common Library Group: System Environment/Libraries @@ -74,52 +74,47 @@ Patch11: %{name}-pathmax.patch Patch12: %{name}-setup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Common Library Programs Group: Applications/Internet Provides: %{name}-setup = %{setupversion} -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool >= 1 -%if %{?fedora}%{!?fedora:0} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -%else -%if %{?rhel}%{!?rhel:0} >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool%{?_isa} >= 1 +%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 4 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %else Requires: perl %endif -%endif %package devel Summary: Globus Toolkit - Common Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Common Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -284,6 +279,10 @@ grep globus-makefile-header $GLOBUSPACKA sed /globus-makefile-header/d \ -i $GLOBUSPACKAGEDIR/%{_name}/%{flavor}_pgm.filelist +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' \ + -i $RPM_BUILD_ROOT%{_bindir}/globus-makefile-header* + # Remove config.guess file (conflicts with grid-packaging-tools package) rm $RPM_BUILD_ROOT%{_datadir}/globus/config.guess sed /config.guess/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -371,6 +370,11 @@ rm -f config.log config.status %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 10.2-6 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 10.2-5 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:26:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:22 +0000 (UTC) Subject: rpms/globus-common/F-10 globus-common.spec,1.5,1.6 Message-ID: <20090725072622.D4C3D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2834 Modified Files: globus-common.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 10.2-6 - Add instruction set architecture (isa) tags - Make doc subpackage noarch - Replace /usr/bin/env shebangs Index: globus-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-common/F-10/globus-common.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-common.spec 15 Jun 2009 15:36:19 -0000 1.5 +++ globus-common.spec 25 Jul 2009 07:26:22 -0000 1.6 @@ -10,7 +10,7 @@ Name: globus-common %global _name %(tr - _ <<< %{name}) Version: 10.2 %global setupversion 2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Common Library Group: System Environment/Libraries @@ -74,52 +74,47 @@ Patch11: %{name}-pathmax.patch Patch12: %{name}-setup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Common Library Programs Group: Applications/Internet Provides: %{name}-setup = %{setupversion} -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool >= 1 -%if %{?fedora}%{!?fedora:0} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -%else -%if %{?rhel}%{!?rhel:0} >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool%{?_isa} >= 1 +%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 4 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %else Requires: perl %endif -%endif %package devel Summary: Globus Toolkit - Common Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Common Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -284,6 +279,10 @@ grep globus-makefile-header $GLOBUSPACKA sed /globus-makefile-header/d \ -i $GLOBUSPACKAGEDIR/%{_name}/%{flavor}_pgm.filelist +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' \ + -i $RPM_BUILD_ROOT%{_bindir}/globus-makefile-header* + # Remove config.guess file (conflicts with grid-packaging-tools package) rm $RPM_BUILD_ROOT%{_datadir}/globus/config.guess sed /config.guess/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -371,6 +370,11 @@ rm -f config.log config.status %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 10.2-6 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 10.2-5 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:26:31 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:31 +0000 (UTC) Subject: rpms/globus-common/EL-5 globus-common.spec,1.5,1.6 Message-ID: <20090725072631.7422511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2892 Modified Files: globus-common.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 10.2-6 - Add instruction set architecture (isa) tags - Make doc subpackage noarch - Replace /usr/bin/env shebangs Index: globus-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-common/EL-5/globus-common.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-common.spec 15 Jun 2009 15:39:53 -0000 1.5 +++ globus-common.spec 25 Jul 2009 07:26:30 -0000 1.6 @@ -10,7 +10,7 @@ Name: globus-common %global _name %(tr - _ <<< %{name}) Version: 10.2 %global setupversion 2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Common Library Group: System Environment/Libraries @@ -74,52 +74,47 @@ Patch11: %{name}-pathmax.patch Patch12: %{name}-setup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Common Library Programs Group: Applications/Internet Provides: %{name}-setup = %{setupversion} -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool >= 1 -%if %{?fedora}%{!?fedora:0} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -%else -%if %{?rhel}%{!?rhel:0} >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool%{?_isa} >= 1 +%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 4 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %else Requires: perl %endif -%endif %package devel Summary: Globus Toolkit - Common Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Common Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -284,6 +279,10 @@ grep globus-makefile-header $GLOBUSPACKA sed /globus-makefile-header/d \ -i $GLOBUSPACKAGEDIR/%{_name}/%{flavor}_pgm.filelist +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' \ + -i $RPM_BUILD_ROOT%{_bindir}/globus-makefile-header* + # Remove config.guess file (conflicts with grid-packaging-tools package) rm $RPM_BUILD_ROOT%{_datadir}/globus/config.guess sed /config.guess/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -371,6 +370,11 @@ rm -f config.log config.status %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 10.2-6 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 10.2-5 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:26:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:39 +0000 (UTC) Subject: rpms/globus-common/EL-4 globus-common.spec,1.5,1.6 Message-ID: <20090725072639.C8A5B11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-common/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2953 Modified Files: globus-common.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 10.2-6 - Add instruction set architecture (isa) tags - Make doc subpackage noarch - Replace /usr/bin/env shebangs Index: globus-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-common/EL-4/globus-common.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-common.spec 15 Jun 2009 15:38:35 -0000 1.5 +++ globus-common.spec 25 Jul 2009 07:26:39 -0000 1.6 @@ -10,7 +10,7 @@ Name: globus-common %global _name %(tr - _ <<< %{name}) Version: 10.2 %global setupversion 2.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Common Library Group: System Environment/Libraries @@ -74,52 +74,47 @@ Patch11: %{name}-pathmax.patch Patch12: %{name}-setup.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-libtool >= 1 +Requires: globus-libtool%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-libtool-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-libtool-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Common Library Programs Group: Applications/Internet Provides: %{name}-setup = %{setupversion} -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool >= 1 -%if %{?fedora}%{!?fedora:0} -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) -%else -%if %{?rhel}%{!?rhel:0} >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool%{?_isa} >= 1 +%if %{?fedora}%{!?fedora:0} || %{?rhel}%{!?rhel:0} >= 4 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %else Requires: perl %endif -%endif %package devel Summary: Globus Toolkit - Common Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-libtool-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-libtool-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Common Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -284,6 +279,10 @@ grep globus-makefile-header $GLOBUSPACKA sed /globus-makefile-header/d \ -i $GLOBUSPACKAGEDIR/%{_name}/%{flavor}_pgm.filelist +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' \ + -i $RPM_BUILD_ROOT%{_bindir}/globus-makefile-header* + # Remove config.guess file (conflicts with grid-packaging-tools package) rm $RPM_BUILD_ROOT%{_datadir}/globus/config.guess sed /config.guess/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -371,6 +370,11 @@ rm -f config.log config.status %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 10.2-6 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 10.2-5 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:26:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:48 +0000 (UTC) Subject: rpms/globus-core/devel globus-core.spec, 1.5, 1.6 globus-spec-creator, 1.2, 1.3 Message-ID: <20090725072648.93AD011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3026 Modified Files: globus-core.spec globus-spec-creator Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.15-6 - The globus-spec-creator script now uses isa tags and noarch doc subpackages - Replace /usr/bin/env shebangs Index: globus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/devel/globus-core.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-core.spec 15 Jun 2009 15:02:31 -0000 1.5 +++ globus-core.spec 25 Jul 2009 07:26:48 -0000 1.6 @@ -13,7 +13,7 @@ Name: globus-core %global _name %(tr - _ <<< %{name}) Version: 5.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Globus Core Group: Development/Tools @@ -169,6 +169,9 @@ $RPM_BUILD_ROOT%{_datadir}/globus/globus pkgdata/pkg_data_%{flavor}_dev.gpt > \ $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' -i $RPM_BUILD_ROOT%{_sbindir}/globus-* + # Remove license file installed directly in the buildroot rm -f $RPM_BUILD_ROOT/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -205,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.15-6 +- The globus-spec-creator script now uses isa tags and noarch doc subpackages +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 5.15-5 - Update to official Fedora Globus packaging guidelines - Fix build configuration for s390x and kfreebsd Index: globus-spec-creator =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/devel/globus-spec-creator,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-spec-creator 15 Jun 2009 15:02:31 -0000 1.2 +++ globus-spec-creator 25 Jul 2009 07:26:48 -0000 1.3 @@ -256,7 +256,8 @@ if (!$libs) { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } @@ -272,11 +273,11 @@ if (!$libs) { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -290,14 +291,15 @@ else { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } # Need at least one Requires to own directories print "Requires:\tglobus-common\n" unless $hasrequires; while (($key, $value) = each(%{$srcdeps{'rtl_runtime'}})) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } while (($key, $value) = each(%{$setupdeps{'rtl'}})) { print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") @@ -306,33 +308,28 @@ else { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } while (($key, $value) = each(%{$srcdeps{'doc_runtime'}})) { - print "BuildRequires:\t$key" . - ($value > 0 ? " >= $value\n" : "\n"); + print "BuildRequires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); } if ($docpkg) { print "BuildRequires:\tdoxygen\n"; print "BuildRequires:\tgraphviz\n"; - print "BuildRequires:\tghostscript\n"; print "%if \"%{?rhel}\" == \"5\"\n"; - print "BuildRequires:\tgraphviz-gd\n"; + print "BuildRequires:\tgraphviz-gd\n"; print "%endif\n"; - print "%if %{?fedora}%{!?fedora:0} >= 9\n"; - print "BuildRequires:\ttex(latex)\n"; + print "BuildRequires:\tghostscript\n"; + print "%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildRequires:\ttex(latex)\n"; print "%else\n"; - print "%if %{?rhel}%{!?rhel:0} >= 6\n"; - print "BuildRequires:\ttex(latex)\n"; - print "%else\n"; - print "BuildRequires:\ttetex-latex\n"; - print "%endif\n"; + print "BuildRequires:\ttetex-latex\n"; print "%endif\n"; } if ($progspkg) { @@ -342,13 +339,14 @@ else { print "Group:\t\tApplications/Internet\n"; print "Provides:\t%{name}-setup = %{setupversion}\n" if defined $setupfile; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'pgm_link'}})) { # Explicit Requires for libraries should not be used according # to the packaging guidelines. The autogenerated Requires on # sonames make them redundant. # Only add Requires for GPT glue packages and XIO plugins. - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n") if $key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/; @@ -369,14 +367,14 @@ if ($develpkg) { print "%package devel\n"; print "Summary:\tGlobus Toolkit - $description Development Files\n"; print "Group:\t\tDevelopment/Libraries\n"; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "Requires:\t$key" . + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "Requires:\t$key-devel" . + print "Requires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -387,6 +385,9 @@ if ($docpkg) { print "%package doc\n"; print "Summary:\tGlobus Toolkit - $description Documentation Files\n"; print "Group:\t\tDocumentation\n"; + print "%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildArch:\tnoarch\n"; + print "%endif\n"; print "Requires:\t%{name} = %{version}-%{release}\n"; } From ellert at fedoraproject.org Sat Jul 25 07:26:57 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:26:57 +0000 (UTC) Subject: rpms/globus-core/F-11 globus-core.spec, 1.5, 1.6 globus-spec-creator, 1.2, 1.3 Message-ID: <20090725072657.3671311C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3088 Modified Files: globus-core.spec globus-spec-creator Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.15-6 - The globus-spec-creator script now uses isa tags and noarch doc subpackages - Replace /usr/bin/env shebangs Index: globus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/F-11/globus-core.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-core.spec 15 Jun 2009 15:10:15 -0000 1.5 +++ globus-core.spec 25 Jul 2009 07:26:56 -0000 1.6 @@ -13,7 +13,7 @@ Name: globus-core %global _name %(tr - _ <<< %{name}) Version: 5.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Globus Core Group: Development/Tools @@ -169,6 +169,9 @@ $RPM_BUILD_ROOT%{_datadir}/globus/globus pkgdata/pkg_data_%{flavor}_dev.gpt > \ $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' -i $RPM_BUILD_ROOT%{_sbindir}/globus-* + # Remove license file installed directly in the buildroot rm -f $RPM_BUILD_ROOT/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -205,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.15-6 +- The globus-spec-creator script now uses isa tags and noarch doc subpackages +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 5.15-5 - Update to official Fedora Globus packaging guidelines - Fix build configuration for s390x and kfreebsd Index: globus-spec-creator =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/F-11/globus-spec-creator,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-spec-creator 15 Jun 2009 15:10:15 -0000 1.2 +++ globus-spec-creator 25 Jul 2009 07:26:57 -0000 1.3 @@ -256,7 +256,8 @@ if (!$libs) { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } @@ -272,11 +273,11 @@ if (!$libs) { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -290,14 +291,15 @@ else { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } # Need at least one Requires to own directories print "Requires:\tglobus-common\n" unless $hasrequires; while (($key, $value) = each(%{$srcdeps{'rtl_runtime'}})) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } while (($key, $value) = each(%{$setupdeps{'rtl'}})) { print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") @@ -306,33 +308,28 @@ else { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } while (($key, $value) = each(%{$srcdeps{'doc_runtime'}})) { - print "BuildRequires:\t$key" . - ($value > 0 ? " >= $value\n" : "\n"); + print "BuildRequires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); } if ($docpkg) { print "BuildRequires:\tdoxygen\n"; print "BuildRequires:\tgraphviz\n"; - print "BuildRequires:\tghostscript\n"; print "%if \"%{?rhel}\" == \"5\"\n"; - print "BuildRequires:\tgraphviz-gd\n"; + print "BuildRequires:\tgraphviz-gd\n"; print "%endif\n"; - print "%if %{?fedora}%{!?fedora:0} >= 9\n"; - print "BuildRequires:\ttex(latex)\n"; + print "BuildRequires:\tghostscript\n"; + print "%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildRequires:\ttex(latex)\n"; print "%else\n"; - print "%if %{?rhel}%{!?rhel:0} >= 6\n"; - print "BuildRequires:\ttex(latex)\n"; - print "%else\n"; - print "BuildRequires:\ttetex-latex\n"; - print "%endif\n"; + print "BuildRequires:\ttetex-latex\n"; print "%endif\n"; } if ($progspkg) { @@ -342,13 +339,14 @@ else { print "Group:\t\tApplications/Internet\n"; print "Provides:\t%{name}-setup = %{setupversion}\n" if defined $setupfile; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'pgm_link'}})) { # Explicit Requires for libraries should not be used according # to the packaging guidelines. The autogenerated Requires on # sonames make them redundant. # Only add Requires for GPT glue packages and XIO plugins. - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n") if $key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/; @@ -369,14 +367,14 @@ if ($develpkg) { print "%package devel\n"; print "Summary:\tGlobus Toolkit - $description Development Files\n"; print "Group:\t\tDevelopment/Libraries\n"; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "Requires:\t$key" . + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "Requires:\t$key-devel" . + print "Requires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -387,6 +385,9 @@ if ($docpkg) { print "%package doc\n"; print "Summary:\tGlobus Toolkit - $description Documentation Files\n"; print "Group:\t\tDocumentation\n"; + print "%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildArch:\tnoarch\n"; + print "%endif\n"; print "Requires:\t%{name} = %{version}-%{release}\n"; } From ellert at fedoraproject.org Sat Jul 25 07:27:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:06 +0000 (UTC) Subject: rpms/globus-core/F-10 globus-core.spec, 1.5, 1.6 globus-spec-creator, 1.2, 1.3 Message-ID: <20090725072706.B96A511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3226 Modified Files: globus-core.spec globus-spec-creator Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.15-6 - The globus-spec-creator script now uses isa tags and noarch doc subpackages - Replace /usr/bin/env shebangs Index: globus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/F-10/globus-core.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-core.spec 15 Jun 2009 15:08:42 -0000 1.5 +++ globus-core.spec 25 Jul 2009 07:27:06 -0000 1.6 @@ -13,7 +13,7 @@ Name: globus-core %global _name %(tr - _ <<< %{name}) Version: 5.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Globus Core Group: Development/Tools @@ -169,6 +169,9 @@ $RPM_BUILD_ROOT%{_datadir}/globus/globus pkgdata/pkg_data_%{flavor}_dev.gpt > \ $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' -i $RPM_BUILD_ROOT%{_sbindir}/globus-* + # Remove license file installed directly in the buildroot rm -f $RPM_BUILD_ROOT/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -205,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.15-6 +- The globus-spec-creator script now uses isa tags and noarch doc subpackages +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 5.15-5 - Update to official Fedora Globus packaging guidelines - Fix build configuration for s390x and kfreebsd Index: globus-spec-creator =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/F-10/globus-spec-creator,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-spec-creator 15 Jun 2009 15:08:42 -0000 1.2 +++ globus-spec-creator 25 Jul 2009 07:27:06 -0000 1.3 @@ -256,7 +256,8 @@ if (!$libs) { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } @@ -272,11 +273,11 @@ if (!$libs) { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -290,14 +291,15 @@ else { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } # Need at least one Requires to own directories print "Requires:\tglobus-common\n" unless $hasrequires; while (($key, $value) = each(%{$srcdeps{'rtl_runtime'}})) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } while (($key, $value) = each(%{$setupdeps{'rtl'}})) { print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") @@ -306,33 +308,28 @@ else { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } while (($key, $value) = each(%{$srcdeps{'doc_runtime'}})) { - print "BuildRequires:\t$key" . - ($value > 0 ? " >= $value\n" : "\n"); + print "BuildRequires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); } if ($docpkg) { print "BuildRequires:\tdoxygen\n"; print "BuildRequires:\tgraphviz\n"; - print "BuildRequires:\tghostscript\n"; print "%if \"%{?rhel}\" == \"5\"\n"; - print "BuildRequires:\tgraphviz-gd\n"; + print "BuildRequires:\tgraphviz-gd\n"; print "%endif\n"; - print "%if %{?fedora}%{!?fedora:0} >= 9\n"; - print "BuildRequires:\ttex(latex)\n"; + print "BuildRequires:\tghostscript\n"; + print "%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildRequires:\ttex(latex)\n"; print "%else\n"; - print "%if %{?rhel}%{!?rhel:0} >= 6\n"; - print "BuildRequires:\ttex(latex)\n"; - print "%else\n"; - print "BuildRequires:\ttetex-latex\n"; - print "%endif\n"; + print "BuildRequires:\ttetex-latex\n"; print "%endif\n"; } if ($progspkg) { @@ -342,13 +339,14 @@ else { print "Group:\t\tApplications/Internet\n"; print "Provides:\t%{name}-setup = %{setupversion}\n" if defined $setupfile; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'pgm_link'}})) { # Explicit Requires for libraries should not be used according # to the packaging guidelines. The autogenerated Requires on # sonames make them redundant. # Only add Requires for GPT glue packages and XIO plugins. - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n") if $key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/; @@ -369,14 +367,14 @@ if ($develpkg) { print "%package devel\n"; print "Summary:\tGlobus Toolkit - $description Development Files\n"; print "Group:\t\tDevelopment/Libraries\n"; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "Requires:\t$key" . + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "Requires:\t$key-devel" . + print "Requires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -387,6 +385,9 @@ if ($docpkg) { print "%package doc\n"; print "Summary:\tGlobus Toolkit - $description Documentation Files\n"; print "Group:\t\tDocumentation\n"; + print "%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildArch:\tnoarch\n"; + print "%endif\n"; print "Requires:\t%{name} = %{version}-%{release}\n"; } From ellert at fedoraproject.org Sat Jul 25 07:27:15 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:15 +0000 (UTC) Subject: rpms/globus-core/EL-5 globus-core.spec, 1.5, 1.6 globus-spec-creator, 1.2, 1.3 Message-ID: <20090725072715.F1C5C11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3284 Modified Files: globus-core.spec globus-spec-creator Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.15-6 - The globus-spec-creator script now uses isa tags and noarch doc subpackages - Replace /usr/bin/env shebangs Index: globus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/EL-5/globus-core.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-core.spec 15 Jun 2009 15:13:00 -0000 1.5 +++ globus-core.spec 25 Jul 2009 07:27:15 -0000 1.6 @@ -13,7 +13,7 @@ Name: globus-core %global _name %(tr - _ <<< %{name}) Version: 5.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Globus Core Group: Development/Tools @@ -169,6 +169,9 @@ $RPM_BUILD_ROOT%{_datadir}/globus/globus pkgdata/pkg_data_%{flavor}_dev.gpt > \ $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' -i $RPM_BUILD_ROOT%{_sbindir}/globus-* + # Remove license file installed directly in the buildroot rm -f $RPM_BUILD_ROOT/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -205,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.15-6 +- The globus-spec-creator script now uses isa tags and noarch doc subpackages +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 5.15-5 - Update to official Fedora Globus packaging guidelines - Fix build configuration for s390x and kfreebsd Index: globus-spec-creator =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/EL-5/globus-spec-creator,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-spec-creator 15 Jun 2009 15:13:00 -0000 1.2 +++ globus-spec-creator 25 Jul 2009 07:27:15 -0000 1.3 @@ -256,7 +256,8 @@ if (!$libs) { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } @@ -272,11 +273,11 @@ if (!$libs) { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -290,14 +291,15 @@ else { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } # Need at least one Requires to own directories print "Requires:\tglobus-common\n" unless $hasrequires; while (($key, $value) = each(%{$srcdeps{'rtl_runtime'}})) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } while (($key, $value) = each(%{$setupdeps{'rtl'}})) { print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") @@ -306,33 +308,28 @@ else { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } while (($key, $value) = each(%{$srcdeps{'doc_runtime'}})) { - print "BuildRequires:\t$key" . - ($value > 0 ? " >= $value\n" : "\n"); + print "BuildRequires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); } if ($docpkg) { print "BuildRequires:\tdoxygen\n"; print "BuildRequires:\tgraphviz\n"; - print "BuildRequires:\tghostscript\n"; print "%if \"%{?rhel}\" == \"5\"\n"; - print "BuildRequires:\tgraphviz-gd\n"; + print "BuildRequires:\tgraphviz-gd\n"; print "%endif\n"; - print "%if %{?fedora}%{!?fedora:0} >= 9\n"; - print "BuildRequires:\ttex(latex)\n"; + print "BuildRequires:\tghostscript\n"; + print "%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildRequires:\ttex(latex)\n"; print "%else\n"; - print "%if %{?rhel}%{!?rhel:0} >= 6\n"; - print "BuildRequires:\ttex(latex)\n"; - print "%else\n"; - print "BuildRequires:\ttetex-latex\n"; - print "%endif\n"; + print "BuildRequires:\ttetex-latex\n"; print "%endif\n"; } if ($progspkg) { @@ -342,13 +339,14 @@ else { print "Group:\t\tApplications/Internet\n"; print "Provides:\t%{name}-setup = %{setupversion}\n" if defined $setupfile; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'pgm_link'}})) { # Explicit Requires for libraries should not be used according # to the packaging guidelines. The autogenerated Requires on # sonames make them redundant. # Only add Requires for GPT glue packages and XIO plugins. - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n") if $key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/; @@ -369,14 +367,14 @@ if ($develpkg) { print "%package devel\n"; print "Summary:\tGlobus Toolkit - $description Development Files\n"; print "Group:\t\tDevelopment/Libraries\n"; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "Requires:\t$key" . + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "Requires:\t$key-devel" . + print "Requires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -387,6 +385,9 @@ if ($docpkg) { print "%package doc\n"; print "Summary:\tGlobus Toolkit - $description Documentation Files\n"; print "Group:\t\tDocumentation\n"; + print "%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildArch:\tnoarch\n"; + print "%endif\n"; print "Requires:\t%{name} = %{version}-%{release}\n"; } From ellert at fedoraproject.org Sat Jul 25 07:27:25 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:25 +0000 (UTC) Subject: rpms/globus-core/EL-4 globus-core.spec, 1.5, 1.6 globus-spec-creator, 1.2, 1.3 Message-ID: <20090725072725.58B3011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-core/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3350 Modified Files: globus-core.spec globus-spec-creator Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.15-6 - The globus-spec-creator script now uses isa tags and noarch doc subpackages - Replace /usr/bin/env shebangs Index: globus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/EL-4/globus-core.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- globus-core.spec 15 Jun 2009 15:11:49 -0000 1.5 +++ globus-core.spec 25 Jul 2009 07:27:24 -0000 1.6 @@ -13,7 +13,7 @@ Name: globus-core %global _name %(tr - _ <<< %{name}) Version: 5.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Globus Toolkit - Globus Core Group: Development/Tools @@ -169,6 +169,9 @@ $RPM_BUILD_ROOT%{_datadir}/globus/globus pkgdata/pkg_data_%{flavor}_dev.gpt > \ $RPM_BUILD_ROOT%{_libdir}/pkgconfig/%{name}.pc +# Don't use /usr/bin/env +sed 's!/usr/bin/env perl!/usr/bin/perl!' -i $RPM_BUILD_ROOT%{_sbindir}/globus-* + # Remove license file installed directly in the buildroot rm -f $RPM_BUILD_ROOT/GLOBUS_LICENSE sed /GLOBUS_LICENSE/d -i $GLOBUSPACKAGEDIR/%{_name}/noflavor_data.filelist @@ -205,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.15-6 +- The globus-spec-creator script now uses isa tags and noarch doc subpackages +- Replace /usr/bin/env shebangs + * Tue Jun 02 2009 Mattias Ellert - 5.15-5 - Update to official Fedora Globus packaging guidelines - Fix build configuration for s390x and kfreebsd Index: globus-spec-creator =================================================================== RCS file: /cvs/pkgs/rpms/globus-core/EL-4/globus-spec-creator,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-spec-creator 15 Jun 2009 15:11:49 -0000 1.2 +++ globus-spec-creator 25 Jul 2009 07:27:25 -0000 1.3 @@ -256,7 +256,8 @@ if (!$libs) { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } @@ -272,11 +273,11 @@ if (!$libs) { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -290,14 +291,15 @@ else { if ($key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n"); $hasrequires = 1; } } # Need at least one Requires to own directories print "Requires:\tglobus-common\n" unless $hasrequires; while (($key, $value) = each(%{$srcdeps{'rtl_runtime'}})) { - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } while (($key, $value) = each(%{$setupdeps{'rtl'}})) { print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") @@ -306,33 +308,28 @@ else { print "BuildRequires:\tgrid-packaging-tools\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "BuildRequires:\t$key" . + print "BuildRequires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "BuildRequires:\t$key-devel" . + print "BuildRequires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } while (($key, $value) = each(%{$srcdeps{'doc_runtime'}})) { - print "BuildRequires:\t$key" . - ($value > 0 ? " >= $value\n" : "\n"); + print "BuildRequires:\t$key" . ($value > 0 ? " >= $value\n" : "\n"); } if ($docpkg) { print "BuildRequires:\tdoxygen\n"; print "BuildRequires:\tgraphviz\n"; - print "BuildRequires:\tghostscript\n"; print "%if \"%{?rhel}\" == \"5\"\n"; - print "BuildRequires:\tgraphviz-gd\n"; + print "BuildRequires:\tgraphviz-gd\n"; print "%endif\n"; - print "%if %{?fedora}%{!?fedora:0} >= 9\n"; - print "BuildRequires:\ttex(latex)\n"; + print "BuildRequires:\tghostscript\n"; + print "%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildRequires:\ttex(latex)\n"; print "%else\n"; - print "%if %{?rhel}%{!?rhel:0} >= 6\n"; - print "BuildRequires:\ttex(latex)\n"; - print "%else\n"; - print "BuildRequires:\ttetex-latex\n"; - print "%endif\n"; + print "BuildRequires:\ttetex-latex\n"; print "%endif\n"; } if ($progspkg) { @@ -342,13 +339,14 @@ else { print "Group:\t\tApplications/Internet\n"; print "Provides:\t%{name}-setup = %{setupversion}\n" if defined $setupfile; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'pgm_link'}})) { # Explicit Requires for libraries should not be used according # to the packaging guidelines. The autogenerated Requires on # sonames make them redundant. # Only add Requires for GPT glue packages and XIO plugins. - print "Requires:\t$key" . ($value > 0 ? " >= $value\n" : "\n") + print "Requires:\t$key%{?_isa}" . + ($value > 0 ? " >= $value\n" : "\n") if $key eq 'globus-libtool' or $key eq 'globus-openssl' or $key eq 'globus-libxml2' or $key eq 'globus-xmlsec1' or $key =~ /^globus-xio-/; @@ -369,14 +367,14 @@ if ($develpkg) { print "%package devel\n"; print "Summary:\tGlobus Toolkit - $description Development Files\n"; print "Group:\t\tDevelopment/Libraries\n"; - print "Requires:\t%{name} = %{version}-%{release}\n"; + print "Requires:\t%{name}%{?_isa} = %{version}-%{release}\n"; while (($key, $value) = each(%{$srcdeps{'compile'}})) { if ($key eq "globus-core") { - print "Requires:\t$key" . + print "Requires:\t$key%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } else { - print "Requires:\t$key-devel" . + print "Requires:\t$key-devel%{?_isa}" . ($value > 0 ? " >= $value\n" : "\n"); } } @@ -387,6 +385,9 @@ if ($docpkg) { print "%package doc\n"; print "Summary:\tGlobus Toolkit - $description Documentation Files\n"; print "Group:\t\tDocumentation\n"; + print "%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6\n"; + print "BuildArch:\tnoarch\n"; + print "%endif\n"; print "Requires:\t%{name} = %{version}-%{release}\n"; } From ellert at fedoraproject.org Sat Jul 25 07:27:33 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:33 +0000 (UTC) Subject: rpms/globus-ftp-client/devel globus-ftp-client.spec,1.2,1.3 Message-ID: <20090725072733.CFDC011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3413 Modified Files: globus-ftp-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-client/devel/globus-ftp-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-client.spec 15 Jun 2009 19:35:29 -0000 1.2 +++ globus-ftp-client.spec 25 Jul 2009 07:27:33 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-client %global _name %(tr - _ <<< %{name}) Version: 3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Library Group: System Environment/Libraries @@ -34,41 +34,40 @@ Patch1: %{name}-type-punned-pointer.pat Patch2: %{name}-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-popen-driver +Requires: globus-xio-popen-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-popen-driver-devel -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-popen-driver-devel%{?_isa} +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: globus-ftp-control-doc >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-popen-driver-devel -Requires: globus-common-devel >= 4 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-popen-driver-devel%{?_isa} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -208,6 +207,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:27:51 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:51 +0000 (UTC) Subject: rpms/globus-ftp-client/F-10 globus-ftp-client.spec,1.2,1.3 Message-ID: <20090725072751.1481811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3544 Modified Files: globus-ftp-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-client/F-10/globus-ftp-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-client.spec 15 Jun 2009 19:37:46 -0000 1.2 +++ globus-ftp-client.spec 25 Jul 2009 07:27:50 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-client %global _name %(tr - _ <<< %{name}) Version: 3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Library Group: System Environment/Libraries @@ -34,41 +34,40 @@ Patch1: %{name}-type-punned-pointer.pat Patch2: %{name}-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-popen-driver +Requires: globus-xio-popen-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-popen-driver-devel -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-popen-driver-devel%{?_isa} +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: globus-ftp-control-doc >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-popen-driver-devel -Requires: globus-common-devel >= 4 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-popen-driver-devel%{?_isa} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -208,6 +207,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:27:42 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:42 +0000 (UTC) Subject: rpms/globus-ftp-client/F-11 globus-ftp-client.spec,1.2,1.3 Message-ID: <20090725072742.159AE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3474 Modified Files: globus-ftp-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-client/F-11/globus-ftp-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-client.spec 15 Jun 2009 19:39:07 -0000 1.2 +++ globus-ftp-client.spec 25 Jul 2009 07:27:41 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-client %global _name %(tr - _ <<< %{name}) Version: 3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Library Group: System Environment/Libraries @@ -34,41 +34,40 @@ Patch1: %{name}-type-punned-pointer.pat Patch2: %{name}-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-popen-driver +Requires: globus-xio-popen-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-popen-driver-devel -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-popen-driver-devel%{?_isa} +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: globus-ftp-control-doc >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-popen-driver-devel -Requires: globus-common-devel >= 4 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-popen-driver-devel%{?_isa} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -208,6 +207,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:27:59 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:27:59 +0000 (UTC) Subject: rpms/globus-ftp-client/EL-5 globus-ftp-client.spec,1.2,1.3 Message-ID: <20090725072759.B5C1D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3622 Modified Files: globus-ftp-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-client/EL-5/globus-ftp-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-client.spec 15 Jun 2009 19:41:18 -0000 1.2 +++ globus-ftp-client.spec 25 Jul 2009 07:27:59 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-client %global _name %(tr - _ <<< %{name}) Version: 3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Library Group: System Environment/Libraries @@ -34,41 +34,40 @@ Patch1: %{name}-type-punned-pointer.pat Patch2: %{name}-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-popen-driver +Requires: globus-xio-popen-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-popen-driver-devel -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-popen-driver-devel%{?_isa} +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: globus-ftp-control-doc >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-popen-driver-devel -Requires: globus-common-devel >= 4 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-popen-driver-devel%{?_isa} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -208,6 +207,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:07 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:07 +0000 (UTC) Subject: rpms/globus-ftp-client/EL-4 globus-ftp-client.spec,1.2,1.3 Message-ID: <20090725072807.D187811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-client/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3676 Modified Files: globus-ftp-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-client/EL-4/globus-ftp-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-client.spec 15 Jun 2009 19:40:12 -0000 1.2 +++ globus-ftp-client.spec 25 Jul 2009 07:28:07 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-client %global _name %(tr - _ <<< %{name}) Version: 3.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Library Group: System Environment/Libraries @@ -34,41 +34,40 @@ Patch1: %{name}-type-punned-pointer.pat Patch2: %{name}-format.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-popen-driver +Requires: globus-xio-popen-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-popen-driver-devel -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-popen-driver-devel%{?_isa} +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: globus-ftp-control-doc >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-popen-driver-devel -Requires: globus-common-devel >= 4 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-popen-driver-devel%{?_isa} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -208,6 +207,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:16 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:16 +0000 (UTC) Subject: rpms/globus-ftp-control/devel globus-ftp-control.spec,1.2,1.3 Message-ID: <20090725072816.D415D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3729 Modified Files: globus-ftp-control.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-control/devel/globus-ftp-control.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-control.spec 15 Jun 2009 19:14:32 -0000 1.2 +++ globus-ftp-control.spec 25 Jul 2009 07:28:16 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-control %global _name %(tr - _ <<< %{name}) Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Control Library Group: System Environment/Libraries @@ -39,40 +39,39 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-io-devel >= 6 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 6 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Control Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-io-devel >= 6 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 6 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Control Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:25 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:25 +0000 (UTC) Subject: rpms/globus-ftp-control/F-11 globus-ftp-control.spec,1.2,1.3 Message-ID: <20090725072825.1CF3D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3868 Modified Files: globus-ftp-control.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-control/F-11/globus-ftp-control.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-control.spec 15 Jun 2009 19:18:00 -0000 1.2 +++ globus-ftp-control.spec 25 Jul 2009 07:28:24 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-control %global _name %(tr - _ <<< %{name}) Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Control Library Group: System Environment/Libraries @@ -39,40 +39,39 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-io-devel >= 6 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 6 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Control Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-io-devel >= 6 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 6 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Control Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:33 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:33 +0000 (UTC) Subject: rpms/globus-ftp-control/F-10 globus-ftp-control.spec,1.2,1.3 Message-ID: <20090725072833.DBAC711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3942 Modified Files: globus-ftp-control.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-control/F-10/globus-ftp-control.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-control.spec 15 Jun 2009 19:16:44 -0000 1.2 +++ globus-ftp-control.spec 25 Jul 2009 07:28:33 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-control %global _name %(tr - _ <<< %{name}) Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Control Library Group: System Environment/Libraries @@ -39,40 +39,39 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-io-devel >= 6 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 6 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Control Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-io-devel >= 6 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 6 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Control Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:42 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:42 +0000 (UTC) Subject: rpms/globus-ftp-control/EL-5 globus-ftp-control.spec,1.2,1.3 Message-ID: <20090725072842.2C3DB11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3996 Modified Files: globus-ftp-control.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-control/EL-5/globus-ftp-control.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-control.spec 15 Jun 2009 19:20:24 -0000 1.2 +++ globus-ftp-control.spec 25 Jul 2009 07:28:42 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-control %global _name %(tr - _ <<< %{name}) Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Control Library Group: System Environment/Libraries @@ -39,40 +39,39 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-io-devel >= 6 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 6 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Control Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-io-devel >= 6 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 6 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Control Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:50 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:50 +0000 (UTC) Subject: rpms/globus-ftp-control/EL-4 globus-ftp-control.spec,1.2,1.3 Message-ID: <20090725072850.C1EA811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-ftp-control/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4047 Modified Files: globus-ftp-control.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-ftp-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-ftp-control/EL-4/globus-ftp-control.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-ftp-control.spec 15 Jun 2009 19:19:09 -0000 1.2 +++ globus-ftp-control.spec 25 Jul 2009 07:28:50 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-ftp-control %global _name %(tr - _ <<< %{name}) Version: 2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GridFTP Client Control Library Group: System Environment/Libraries @@ -39,40 +39,39 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-io-devel >= 6 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 6 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GridFTP Client Control Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-io-devel >= 6 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 6 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GridFTP Client Control Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:07 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:07 +0000 (UTC) Subject: rpms/globus-gass-copy/F-11 globus-gass-copy.spec,1.2,1.3 Message-ID: <20090725072907.BAE3411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4149 Modified Files: globus-gass-copy.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-copy/F-11/globus-gass-copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-copy.spec 15 Jun 2009 20:22:43 -0000 1.2 +++ globus-gass-copy.spec 25 Jul 2009 07:29:07 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-copy %global _name %(tr - _ <<< %{name}) Version: 4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Copy Group: System Environment/Libraries @@ -36,47 +36,46 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-ftp-client-devel >= 2 -BuildRequires: globus-common-devel >= 6 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gass-transfer-devel >= 2 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-ftp-client-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 6 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gass-transfer-devel%{?_isa} >= 2 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus Gass Copy Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Globus Gass Copy Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-ftp-client-devel >= 2 -Requires: globus-common-devel >= 6 -Requires: globus-io-devel >= 3 -Requires: globus-gass-transfer-devel >= 2 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-ftp-client-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 6 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gass-transfer-devel%{?_isa} >= 2 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Copy Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -226,6 +225,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 4.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:28:59 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:28:59 +0000 (UTC) Subject: rpms/globus-gass-copy/devel globus-gass-copy.spec,1.2,1.3 Message-ID: <20090725072859.4384611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4095 Modified Files: globus-gass-copy.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-copy/devel/globus-gass-copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-copy.spec 15 Jun 2009 20:18:48 -0000 1.2 +++ globus-gass-copy.spec 25 Jul 2009 07:28:59 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-copy %global _name %(tr - _ <<< %{name}) Version: 4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Copy Group: System Environment/Libraries @@ -36,47 +36,46 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-ftp-client-devel >= 2 -BuildRequires: globus-common-devel >= 6 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gass-transfer-devel >= 2 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-ftp-client-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 6 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gass-transfer-devel%{?_isa} >= 2 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus Gass Copy Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Globus Gass Copy Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-ftp-client-devel >= 2 -Requires: globus-common-devel >= 6 -Requires: globus-io-devel >= 3 -Requires: globus-gass-transfer-devel >= 2 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-ftp-client-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 6 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gass-transfer-devel%{?_isa} >= 2 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Copy Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -226,6 +225,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 4.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:16 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:16 +0000 (UTC) Subject: rpms/globus-gass-copy/F-10 globus-gass-copy.spec,1.2,1.3 Message-ID: <20090725072916.06FF611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4255 Modified Files: globus-gass-copy.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-copy/F-10/globus-gass-copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-copy.spec 15 Jun 2009 20:21:21 -0000 1.2 +++ globus-gass-copy.spec 25 Jul 2009 07:29:15 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-copy %global _name %(tr - _ <<< %{name}) Version: 4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Copy Group: System Environment/Libraries @@ -36,47 +36,46 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-ftp-client-devel >= 2 -BuildRequires: globus-common-devel >= 6 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gass-transfer-devel >= 2 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-ftp-client-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 6 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gass-transfer-devel%{?_isa} >= 2 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus Gass Copy Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Globus Gass Copy Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-ftp-client-devel >= 2 -Requires: globus-common-devel >= 6 -Requires: globus-io-devel >= 3 -Requires: globus-gass-transfer-devel >= 2 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-ftp-client-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 6 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gass-transfer-devel%{?_isa} >= 2 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Copy Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -226,6 +225,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 4.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:25 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:25 +0000 (UTC) Subject: rpms/globus-gass-copy/EL-5 globus-gass-copy.spec,1.2,1.3 Message-ID: <20090725072925.29CB211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4338 Modified Files: globus-gass-copy.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-copy/EL-5/globus-gass-copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-copy.spec 15 Jun 2009 20:25:14 -0000 1.2 +++ globus-gass-copy.spec 25 Jul 2009 07:29:24 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-copy %global _name %(tr - _ <<< %{name}) Version: 4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Copy Group: System Environment/Libraries @@ -36,47 +36,46 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-ftp-client-devel >= 2 -BuildRequires: globus-common-devel >= 6 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gass-transfer-devel >= 2 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-ftp-client-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 6 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gass-transfer-devel%{?_isa} >= 2 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus Gass Copy Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Globus Gass Copy Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-ftp-client-devel >= 2 -Requires: globus-common-devel >= 6 -Requires: globus-io-devel >= 3 -Requires: globus-gass-transfer-devel >= 2 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-ftp-client-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 6 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gass-transfer-devel%{?_isa} >= 2 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Copy Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -226,6 +225,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 4.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:33 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:33 +0000 (UTC) Subject: rpms/globus-gass-copy/EL-4 globus-gass-copy.spec,1.2,1.3 Message-ID: <20090725072933.B53EC11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-copy/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4406 Modified Files: globus-gass-copy.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.14-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-copy/EL-4/globus-gass-copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-copy.spec 15 Jun 2009 20:23:58 -0000 1.2 +++ globus-gass-copy.spec 25 Jul 2009 07:29:33 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-copy %global _name %(tr - _ <<< %{name}) Version: 4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Copy Group: System Environment/Libraries @@ -36,47 +36,46 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-ftp-client-devel >= 2 -BuildRequires: globus-common-devel >= 6 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gass-transfer-devel >= 2 -BuildRequires: globus-ftp-control-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-ftp-client-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 6 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gass-transfer-devel%{?_isa} >= 2 +BuildRequires: globus-ftp-control-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus Gass Copy Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Globus Gass Copy Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-ftp-client-devel >= 2 -Requires: globus-common-devel >= 6 -Requires: globus-io-devel >= 3 -Requires: globus-gass-transfer-devel >= 2 -Requires: globus-ftp-control-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-ftp-client-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 6 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gass-transfer-devel%{?_isa} >= 2 +Requires: globus-ftp-control-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Copy Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -226,6 +225,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.14-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 4.14-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:42 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:42 +0000 (UTC) Subject: rpms/globus-gass-transfer/devel globus-gass-transfer.spec,1.2,1.3 Message-ID: <20090725072942.1177611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4634 Modified Files: globus-gass-transfer.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-transfer.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-transfer/devel/globus-gass-transfer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-transfer.spec 15 Jun 2009 19:53:06 -0000 1.2 +++ globus-gass-transfer.spec 25 Jul 2009 07:29:41 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-transfer %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Transfer Group: System Environment/Libraries @@ -30,38 +30,37 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Gass Transfer Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-io-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Transfer Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -195,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:50 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:50 +0000 (UTC) Subject: rpms/globus-gass-transfer/F-11 globus-gass-transfer.spec,1.2,1.3 Message-ID: <20090725072950.D189311C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4828 Modified Files: globus-gass-transfer.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-transfer.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-transfer/F-11/globus-gass-transfer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-transfer.spec 15 Jun 2009 19:55:22 -0000 1.2 +++ globus-gass-transfer.spec 25 Jul 2009 07:29:50 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-transfer %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Transfer Group: System Environment/Libraries @@ -30,38 +30,37 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Gass Transfer Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-io-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Transfer Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -195,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:29:59 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:29:59 +0000 (UTC) Subject: rpms/globus-gass-transfer/F-10 globus-gass-transfer.spec,1.2,1.3 Message-ID: <20090725072959.0808111C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5070 Modified Files: globus-gass-transfer.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-transfer.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-transfer/F-10/globus-gass-transfer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-transfer.spec 15 Jun 2009 19:54:47 -0000 1.2 +++ globus-gass-transfer.spec 25 Jul 2009 07:29:58 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-transfer %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Transfer Group: System Environment/Libraries @@ -30,38 +30,37 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Gass Transfer Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-io-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Transfer Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -195,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:15 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:15 +0000 (UTC) Subject: rpms/globus-gass-transfer/EL-4 globus-gass-transfer.spec,1.2,1.3 Message-ID: <20090725073015.D64F311C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5292 Modified Files: globus-gass-transfer.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-transfer.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-transfer/EL-4/globus-gass-transfer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-transfer.spec 15 Jun 2009 19:55:56 -0000 1.2 +++ globus-gass-transfer.spec 25 Jul 2009 07:30:15 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-transfer %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Transfer Group: System Environment/Libraries @@ -30,38 +30,37 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Gass Transfer Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-io-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Transfer Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -195,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:07 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:07 +0000 (UTC) Subject: rpms/globus-gass-transfer/EL-5 globus-gass-transfer.spec,1.2,1.3 Message-ID: <20090725073007.BFEB411C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gass-transfer/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5233 Modified Files: globus-gass-transfer.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gass-transfer.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gass-transfer/EL-5/globus-gass-transfer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gass-transfer.spec 15 Jun 2009 19:56:40 -0000 1.2 +++ globus-gass-transfer.spec 25 Jul 2009 07:30:07 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gass-transfer %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus Gass Transfer Group: System Environment/Libraries @@ -30,38 +30,37 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus Gass Transfer Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-io-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus Gass Transfer Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -195,6 +194,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:42 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:42 +0000 (UTC) Subject: rpms/globus-gsi-callback/F-10 globus-gsi-callback.spec,1.2,1.3 Message-ID: <20090725073042.196B111C02C8@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5461 Modified Files: globus-gsi-callback.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-callback/F-10/globus-gsi-callback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-callback.spec 15 Jun 2009 16:56:44 -0000 1.2 +++ globus-gsi-callback.spec 25 Jul 2009 07:30:41 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-callback %global _name %(tr - _ <<< %{name}) Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Callback Library Group: System Environment/Libraries @@ -28,48 +28,47 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-ltlib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Callback Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Callback Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -207,6 +206,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:50 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:50 +0000 (UTC) Subject: rpms/globus-gsi-callback/EL-5 globus-gsi-callback.spec,1.2,1.3 Message-ID: <20090725073050.92F4011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5517 Modified Files: globus-gsi-callback.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-callback/EL-5/globus-gsi-callback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-callback.spec 15 Jun 2009 17:00:03 -0000 1.2 +++ globus-gsi-callback.spec 25 Jul 2009 07:30:50 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-callback %global _name %(tr - _ <<< %{name}) Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Callback Library Group: System Environment/Libraries @@ -28,48 +28,47 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-ltlib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Callback Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Callback Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -207,6 +206,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:59 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:59 +0000 (UTC) Subject: rpms/globus-gsi-callback/EL-4 globus-gsi-callback.spec,1.2,1.3 Message-ID: <20090725073059.09F5711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5580 Modified Files: globus-gsi-callback.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-callback/EL-4/globus-gsi-callback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-callback.spec 15 Jun 2009 16:58:57 -0000 1.2 +++ globus-gsi-callback.spec 25 Jul 2009 07:30:58 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-callback %global _name %(tr - _ <<< %{name}) Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Callback Library Group: System Environment/Libraries @@ -28,48 +28,47 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-ltlib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Callback Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Callback Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -207,6 +206,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:08 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:08 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/devel globus-gsi-cert-utils.spec, 1.2, 1.3 Message-ID: <20090725073108.52B4411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5635 Modified Files: globus-gsi-cert-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.5-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-cert-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-cert-utils/devel/globus-gsi-cert-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-cert-utils.spec 15 Jun 2009 16:36:40 -0000 1.2 +++ globus-gsi-cert-utils.spec 25 Jul 2009 07:31:08 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-cert-utils %global _name %(tr - _ <<< %{name}) Version: 5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Cert Utils Library Group: System Environment/Libraries @@ -19,49 +19,48 @@ Source: http://www-unix.globus.org/ftpp Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus GSI Cert Utils Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-openssl-progs >= 1 Requires: globus-common-setup >= 2 %package devel Summary: Globus Toolkit - Globus GSI Cert Utils Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Cert Utils Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -203,6 +202,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.5-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:17 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:17 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/F-11 globus-gsi-cert-utils.spec,1.2,1.3 Message-ID: <20090725073117.17F8A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5699 Modified Files: globus-gsi-cert-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.5-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-cert-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-cert-utils/F-11/globus-gsi-cert-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-cert-utils.spec 15 Jun 2009 16:39:50 -0000 1.2 +++ globus-gsi-cert-utils.spec 25 Jul 2009 07:31:16 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-cert-utils %global _name %(tr - _ <<< %{name}) Version: 5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Cert Utils Library Group: System Environment/Libraries @@ -19,49 +19,48 @@ Source: http://www-unix.globus.org/ftpp Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus GSI Cert Utils Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-openssl-progs >= 1 Requires: globus-common-setup >= 2 %package devel Summary: Globus Toolkit - Globus GSI Cert Utils Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Cert Utils Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -203,6 +202,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.5-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:27 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:27 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/F-10 globus-gsi-cert-utils.spec,1.2,1.3 Message-ID: <20090725073127.4AD2D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5765 Modified Files: globus-gsi-cert-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.5-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-cert-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-cert-utils/F-10/globus-gsi-cert-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-cert-utils.spec 15 Jun 2009 16:38:46 -0000 1.2 +++ globus-gsi-cert-utils.spec 25 Jul 2009 07:31:26 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-cert-utils %global _name %(tr - _ <<< %{name}) Version: 5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Cert Utils Library Group: System Environment/Libraries @@ -19,49 +19,48 @@ Source: http://www-unix.globus.org/ftpp Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus GSI Cert Utils Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-openssl-progs >= 1 Requires: globus-common-setup >= 2 %package devel Summary: Globus Toolkit - Globus GSI Cert Utils Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Cert Utils Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -203,6 +202,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.5-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:37 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/EL-5 globus-gsi-cert-utils.spec,1.2,1.3 Message-ID: <20090725073137.86F9011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5849 Modified Files: globus-gsi-cert-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.5-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-cert-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-cert-utils/EL-5/globus-gsi-cert-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-cert-utils.spec 15 Jun 2009 16:41:39 -0000 1.2 +++ globus-gsi-cert-utils.spec 25 Jul 2009 07:31:37 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-cert-utils %global _name %(tr - _ <<< %{name}) Version: 5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Cert Utils Library Group: System Environment/Libraries @@ -19,49 +19,48 @@ Source: http://www-unix.globus.org/ftpp Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus GSI Cert Utils Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-openssl-progs >= 1 Requires: globus-common-setup >= 2 %package devel Summary: Globus Toolkit - Globus GSI Cert Utils Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Cert Utils Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -203,6 +202,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.5-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:46 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:46 +0000 (UTC) Subject: rpms/globus-gsi-cert-utils/EL-4 globus-gsi-cert-utils.spec,1.2,1.3 Message-ID: <20090725073146.2E0BE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-cert-utils/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5929 Modified Files: globus-gsi-cert-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.5-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-cert-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-cert-utils/EL-4/globus-gsi-cert-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-cert-utils.spec 15 Jun 2009 16:41:02 -0000 1.2 +++ globus-gsi-cert-utils.spec 25 Jul 2009 07:31:45 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-cert-utils %global _name %(tr - _ <<< %{name}) Version: 5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Cert Utils Library Group: System Environment/Libraries @@ -19,49 +19,48 @@ Source: http://www-unix.globus.org/ftpp Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Globus GSI Cert Utils Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-openssl-progs >= 1 Requires: globus-common-setup >= 2 %package devel Summary: Globus Toolkit - Globus GSI Cert Utils Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Cert Utils Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -203,6 +202,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.5-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:31:55 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:31:55 +0000 (UTC) Subject: rpms/globus-gsi-credential/devel globus-gsi-credential.spec, 1.2, 1.3 Message-ID: <20090725073155.0D8F011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5989 Modified Files: globus-gsi-credential.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-credential.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-credential/devel/globus-gsi-credential.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-credential.spec 15 Jun 2009 17:02:38 -0000 1.2 +++ globus-gsi-credential.spec 25 Jul 2009 07:31:54 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-credential %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Credential Library Group: System Environment/Libraries @@ -25,48 +25,47 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Credential Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Credential Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -199,6 +198,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:03 +0000 (UTC) Subject: rpms/globus-gsi-credential/F-11 globus-gsi-credential.spec,1.2,1.3 Message-ID: <20090725073203.C712C11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6068 Modified Files: globus-gsi-credential.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-credential.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-credential/F-11/globus-gsi-credential.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-credential.spec 15 Jun 2009 17:05:40 -0000 1.2 +++ globus-gsi-credential.spec 25 Jul 2009 07:32:03 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-credential %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Credential Library Group: System Environment/Libraries @@ -25,48 +25,47 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Credential Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Credential Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -199,6 +198,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:12 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:12 +0000 (UTC) Subject: rpms/globus-gsi-credential/F-10 globus-gsi-credential.spec,1.2,1.3 Message-ID: <20090725073212.40F2211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6129 Modified Files: globus-gsi-credential.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-credential.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-credential/F-10/globus-gsi-credential.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-credential.spec 15 Jun 2009 17:05:05 -0000 1.2 +++ globus-gsi-credential.spec 25 Jul 2009 07:32:12 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-credential %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Credential Library Group: System Environment/Libraries @@ -25,48 +25,47 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Credential Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Credential Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -199,6 +198,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:24 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:24 +0000 (UTC) Subject: rpms/globus-gsi-callback/devel globus-gsi-callback.spec,1.2,1.3 Message-ID: <20090725073024.C4CEF11C0500@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5349 Modified Files: globus-gsi-callback.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-callback/devel/globus-gsi-callback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-callback.spec 15 Jun 2009 16:54:34 -0000 1.2 +++ globus-gsi-callback.spec 25 Jul 2009 07:30:24 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-callback %global _name %(tr - _ <<< %{name}) Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Callback Library Group: System Environment/Libraries @@ -28,48 +28,47 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-ltlib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Callback Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Callback Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -207,6 +206,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.10-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:20 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:20 +0000 (UTC) Subject: rpms/globus-gsi-credential/EL-5 globus-gsi-credential.spec,1.2,1.3 Message-ID: <20090725073220.B329A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6206 Modified Files: globus-gsi-credential.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-credential.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-credential/EL-5/globus-gsi-credential.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-credential.spec 15 Jun 2009 17:08:52 -0000 1.2 +++ globus-gsi-credential.spec 25 Jul 2009 07:32:20 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-credential %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Credential Library Group: System Environment/Libraries @@ -25,48 +25,47 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Credential Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Credential Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -199,6 +198,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:29 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:29 +0000 (UTC) Subject: rpms/globus-gsi-credential/EL-4 globus-gsi-credential.spec,1.2,1.3 Message-ID: <20090725073229.EBAC611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-credential/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6272 Modified Files: globus-gsi-credential.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-credential.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-credential/EL-4/globus-gsi-credential.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-credential.spec 16 Jun 2009 02:03:45 -0000 1.2 +++ globus-gsi-credential.spec 25 Jul 2009 07:32:29 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-credential %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Credential Library Group: System Environment/Libraries @@ -25,48 +25,47 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Credential Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Credential Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -199,6 +198,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:38 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:38 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/devel globus-gsi-openssl-error.spec, 1.3, 1.4 Message-ID: <20090725073238.E444611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6332 Modified Files: globus-gsi-openssl-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.14-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-openssl-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-openssl-error/devel/globus-gsi-openssl-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-openssl-error.spec 15 Jun 2009 15:42:30 -0000 1.3 +++ globus-gsi-openssl-error.spec 25 Jul 2009 07:32:38 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-openssl-error %global _name %(tr - _ <<< %{name}) Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus OpenSSL Error Handling Group: System Environment/Libraries @@ -25,38 +25,37 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Error Handling Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Error Handling Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -189,6 +188,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.14-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.14-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:48 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/F-11 globus-gsi-openssl-error.spec, 1.3, 1.4 Message-ID: <20090725073248.013FC11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6401 Modified Files: globus-gsi-openssl-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.14-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-openssl-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-openssl-error/F-11/globus-gsi-openssl-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-openssl-error.spec 15 Jun 2009 15:45:50 -0000 1.3 +++ globus-gsi-openssl-error.spec 25 Jul 2009 07:32:47 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-openssl-error %global _name %(tr - _ <<< %{name}) Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus OpenSSL Error Handling Group: System Environment/Libraries @@ -25,38 +25,37 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Error Handling Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Error Handling Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -189,6 +188,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.14-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.14-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:32:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:32:56 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/F-10 globus-gsi-openssl-error.spec, 1.3, 1.4 Message-ID: <20090725073256.D523111C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6468 Modified Files: globus-gsi-openssl-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.14-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-openssl-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-openssl-error/F-10/globus-gsi-openssl-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-openssl-error.spec 15 Jun 2009 15:44:42 -0000 1.3 +++ globus-gsi-openssl-error.spec 25 Jul 2009 07:32:56 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-openssl-error %global _name %(tr - _ <<< %{name}) Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus OpenSSL Error Handling Group: System Environment/Libraries @@ -25,38 +25,37 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Error Handling Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Error Handling Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -189,6 +188,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.14-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.14-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:04 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/EL-5 globus-gsi-openssl-error.spec, 1.3, 1.4 Message-ID: <20090725073304.DE73F11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6549 Modified Files: globus-gsi-openssl-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.14-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-openssl-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-openssl-error/EL-5/globus-gsi-openssl-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-openssl-error.spec 15 Jun 2009 15:47:58 -0000 1.3 +++ globus-gsi-openssl-error.spec 25 Jul 2009 07:33:04 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-openssl-error %global _name %(tr - _ <<< %{name}) Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus OpenSSL Error Handling Group: System Environment/Libraries @@ -25,38 +25,37 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Error Handling Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Error Handling Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -189,6 +188,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.14-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.14-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:14 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:14 +0000 (UTC) Subject: rpms/globus-gsi-openssl-error/EL-4 globus-gsi-openssl-error.spec, 1.3, 1.4 Message-ID: <20090725073314.134CB11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-openssl-error/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6616 Modified Files: globus-gsi-openssl-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.14-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-openssl-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-openssl-error/EL-4/globus-gsi-openssl-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-openssl-error.spec 15 Jun 2009 15:46:53 -0000 1.3 +++ globus-gsi-openssl-error.spec 25 Jul 2009 07:33:13 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-openssl-error %global _name %(tr - _ <<< %{name}) Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus OpenSSL Error Handling Group: System Environment/Libraries @@ -25,38 +25,37 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Error Handling Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Error Handling Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -189,6 +188,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.14-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.14-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:23 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:23 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/devel globus-gsi-proxy-core.spec, 1.2, 1.3 Message-ID: <20090725073323.15E6411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6688 Modified Files: globus-gsi-proxy-core.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-core/devel/globus-gsi-proxy-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-proxy-core.spec 15 Jun 2009 17:12:40 -0000 1.2 +++ globus-gsi-proxy-core.spec 25 Jul 2009 07:33:22 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-core %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Core Library Group: System Environment/Libraries @@ -25,50 +25,49 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy Core Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Proxy Core Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -201,6 +200,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:31 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:31 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/F-11 globus-gsi-proxy-core.spec,1.2,1.3 Message-ID: <20090725073331.D9F7211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6770 Modified Files: globus-gsi-proxy-core.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-core/F-11/globus-gsi-proxy-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-proxy-core.spec 15 Jun 2009 17:15:46 -0000 1.2 +++ globus-gsi-proxy-core.spec 25 Jul 2009 07:33:31 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-core %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Core Library Group: System Environment/Libraries @@ -25,50 +25,49 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy Core Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Proxy Core Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -201,6 +200,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From mtasaka at fedoraproject.org Sat Jul 25 07:33:37 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:33:37 +0000 (UTC) Subject: rpms/ruby-mecab/devel ruby-mecab.spec,1.14,1.15 Message-ID: <20090725073337.0B68811C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6824 Modified Files: ruby-mecab.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 - F-12: Mass rebuild Index: ruby-mecab.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-mecab/devel/ruby-mecab.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ruby-mecab.spec 3 Jun 2009 19:46:30 -0000 1.14 +++ ruby-mecab.spec 25 Jul 2009 07:33:36 -0000 1.15 @@ -1,6 +1,6 @@ %define mainver 0.98 %define betaver pre3 -%define relnumber 2 +%define relnumber 3 %define srcname mecab-ruby %define rubyver 1.8 @@ -61,6 +61,9 @@ ruby test.rb %{ruby_sitearch}/*MeCab* %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.3.pre3 +- F-12: Mass rebuild + * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.2.pre3 - 0.98pre3 From ellert at fedoraproject.org Sat Jul 25 07:33:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:39 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/F-10 globus-gsi-proxy-core.spec,1.2,1.3 Message-ID: <20090725073339.D2CA011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6849 Modified Files: globus-gsi-proxy-core.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-core/F-10/globus-gsi-proxy-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-proxy-core.spec 15 Jun 2009 17:14:43 -0000 1.2 +++ globus-gsi-proxy-core.spec 25 Jul 2009 07:33:39 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-core %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Core Library Group: System Environment/Libraries @@ -25,50 +25,49 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy Core Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Proxy Core Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -201,6 +200,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:48 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/EL-5 globus-gsi-proxy-core.spec,1.2,1.3 Message-ID: <20090725073348.F3B1811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6967 Modified Files: globus-gsi-proxy-core.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-core/EL-5/globus-gsi-proxy-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-proxy-core.spec 15 Jun 2009 17:17:55 -0000 1.2 +++ globus-gsi-proxy-core.spec 25 Jul 2009 07:33:48 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-core %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Core Library Group: System Environment/Libraries @@ -25,50 +25,49 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy Core Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Proxy Core Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -201,6 +200,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:33:57 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:33:57 +0000 (UTC) Subject: rpms/globus-gsi-proxy-core/EL-4 globus-gsi-proxy-core.spec,1.2,1.3 Message-ID: <20090725073357.959FE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-core/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7035 Modified Files: globus-gsi-proxy-core.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.4-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-core/EL-4/globus-gsi-proxy-core.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-proxy-core.spec 15 Jun 2009 17:16:48 -0000 1.2 +++ globus-gsi-proxy-core.spec 25 Jul 2009 07:33:57 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-core %global _name %(tr - _ <<< %{name}) Version: 3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Core Library Group: System Environment/Libraries @@ -25,50 +25,49 @@ Source: %{_name}-%{version}.tar.gz Source9: epstopdf-2.9.5gw BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy Core Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Proxy Core Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -201,6 +200,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.4-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 3.4-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:06 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:06 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/devel globus-gsi-proxy-ssl.spec,1.3,1.4 Message-ID: <20090725073406.0A9D511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7091 Modified Files: globus-gsi-proxy-ssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-ssl/devel/globus-gsi-proxy-ssl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-proxy-ssl.spec 15 Jun 2009 15:50:38 -0000 1.3 +++ globus-gsi-proxy-ssl.spec 25 Jul 2009 07:34:05 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-ssl %global _name %(tr - _ <<< %{name}) Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus GSI Proxy SSL Library Group: System Environment/Libraries @@ -28,36 +28,35 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-doxygen.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy SSL Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Proxy SSL Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -191,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:14 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:14 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/F-11 globus-gsi-proxy-ssl.spec,1.3,1.4 Message-ID: <20090725073414.58E1711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7154 Modified Files: globus-gsi-proxy-ssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-ssl/F-11/globus-gsi-proxy-ssl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-proxy-ssl.spec 15 Jun 2009 16:18:11 -0000 1.3 +++ globus-gsi-proxy-ssl.spec 25 Jul 2009 07:34:14 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-ssl %global _name %(tr - _ <<< %{name}) Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus GSI Proxy SSL Library Group: System Environment/Libraries @@ -28,36 +28,35 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-doxygen.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy SSL Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Proxy SSL Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -191,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:22 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/F-10 globus-gsi-proxy-ssl.spec,1.3,1.4 Message-ID: <20090725073422.C4D9E11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7212 Modified Files: globus-gsi-proxy-ssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-ssl/F-10/globus-gsi-proxy-ssl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-proxy-ssl.spec 15 Jun 2009 15:54:01 -0000 1.3 +++ globus-gsi-proxy-ssl.spec 25 Jul 2009 07:34:22 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-ssl %global _name %(tr - _ <<< %{name}) Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus GSI Proxy SSL Library Group: System Environment/Libraries @@ -28,36 +28,35 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-doxygen.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy SSL Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Proxy SSL Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -191,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:31 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:31 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/EL-5 globus-gsi-proxy-ssl.spec,1.3,1.4 Message-ID: <20090725073431.7BBF611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7284 Modified Files: globus-gsi-proxy-ssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-ssl/EL-5/globus-gsi-proxy-ssl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-proxy-ssl.spec 15 Jun 2009 16:20:15 -0000 1.3 +++ globus-gsi-proxy-ssl.spec 25 Jul 2009 07:34:31 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-ssl %global _name %(tr - _ <<< %{name}) Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus GSI Proxy SSL Library Group: System Environment/Libraries @@ -28,36 +28,35 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-doxygen.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy SSL Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Proxy SSL Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -191,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:39 +0000 (UTC) Subject: rpms/globus-gsi-proxy-ssl/EL-4 globus-gsi-proxy-ssl.spec,1.3,1.4 Message-ID: <20090725073439.B36A611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-proxy-ssl/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7388 Modified Files: globus-gsi-proxy-ssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-proxy-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-proxy-ssl/EL-4/globus-gsi-proxy-ssl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-gsi-proxy-ssl.spec 15 Jun 2009 16:19:14 -0000 1.3 +++ globus-gsi-proxy-ssl.spec 25 Jul 2009 07:34:39 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-gsi-proxy-ssl %global _name %(tr - _ <<< %{name}) Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus GSI Proxy SSL Library Group: System Environment/Libraries @@ -28,36 +28,35 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-doxygen.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Proxy SSL Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI Proxy SSL Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -191,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:47 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:47 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/devel globus-gsi-sysconfig.spec,1.2,1.3 Message-ID: <20090725073447.EB67511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7448 Modified Files: globus-gsi-sysconfig.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-sysconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-sysconfig/devel/globus-gsi-sysconfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-sysconfig.spec 15 Jun 2009 16:44:51 -0000 1.2 +++ globus-gsi-sysconfig.spec 25 Jul 2009 07:34:47 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-sysconfig %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI System Config Library Group: System Environment/Libraries @@ -28,42 +28,41 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI System Config Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI System Config Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -197,6 +196,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:34:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:34:56 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/F-11 globus-gsi-sysconfig.spec,1.2,1.3 Message-ID: <20090725073456.1B92111C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7507 Modified Files: globus-gsi-sysconfig.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-sysconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-sysconfig/F-11/globus-gsi-sysconfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-sysconfig.spec 15 Jun 2009 16:48:17 -0000 1.2 +++ globus-gsi-sysconfig.spec 25 Jul 2009 07:34:55 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-sysconfig %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI System Config Library Group: System Environment/Libraries @@ -28,42 +28,41 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI System Config Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI System Config Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -197,6 +196,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:04 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/F-10 globus-gsi-sysconfig.spec,1.2,1.3 Message-ID: <20090725073504.9D27411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7557 Modified Files: globus-gsi-sysconfig.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-sysconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-sysconfig/F-10/globus-gsi-sysconfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-sysconfig.spec 15 Jun 2009 16:47:09 -0000 1.2 +++ globus-gsi-sysconfig.spec 25 Jul 2009 07:35:04 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-sysconfig %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI System Config Library Group: System Environment/Libraries @@ -28,42 +28,41 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI System Config Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI System Config Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -197,6 +196,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:12 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:12 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/EL-5 globus-gsi-sysconfig.spec,1.2,1.3 Message-ID: <20090725073512.C170311C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7615 Modified Files: globus-gsi-sysconfig.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-sysconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-sysconfig/EL-5/globus-gsi-sysconfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-sysconfig.spec 15 Jun 2009 16:50:13 -0000 1.2 +++ globus-gsi-sysconfig.spec 25 Jul 2009 07:35:12 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-sysconfig %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI System Config Library Group: System Environment/Libraries @@ -28,42 +28,41 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI System Config Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI System Config Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -197,6 +196,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:20 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:20 +0000 (UTC) Subject: rpms/globus-gsi-sysconfig/EL-4 globus-gsi-sysconfig.spec,1.2,1.3 Message-ID: <20090725073520.DCDFC11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-sysconfig/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7666 Modified Files: globus-gsi-sysconfig.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.2-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-sysconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-sysconfig/EL-4/globus-gsi-sysconfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-sysconfig.spec 15 Jun 2009 16:49:33 -0000 1.2 +++ globus-gsi-sysconfig.spec 25 Jul 2009 07:35:20 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-sysconfig %global _name %(tr - _ <<< %{name}) Version: 2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI System Config Library Group: System Environment/Libraries @@ -28,42 +28,41 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI System Config Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus GSI System Config Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -197,6 +196,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.2-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.2-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:29 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:29 +0000 (UTC) Subject: rpms/globus-gssapi-error/devel globus-gssapi-error.spec,1.2,1.3 Message-ID: <20090725073529.8955C11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7734 Modified Files: globus-gssapi-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-error/devel/globus-gssapi-error.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-error.spec 15 Jun 2009 18:10:31 -0000 1.2 +++ globus-gssapi-error.spec 25 Jul 2009 07:35:29 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-error %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI Error Library Group: System Environment/Libraries @@ -30,36 +30,35 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI Error Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Error Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -193,6 +192,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:37 +0000 (UTC) Subject: rpms/globus-gssapi-error/F-11 globus-gssapi-error.spec,1.2,1.3 Message-ID: <20090725073537.E788B11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7798 Modified Files: globus-gssapi-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-error/F-11/globus-gssapi-error.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-error.spec 15 Jun 2009 18:13:50 -0000 1.2 +++ globus-gssapi-error.spec 25 Jul 2009 07:35:37 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-error %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI Error Library Group: System Environment/Libraries @@ -30,36 +30,35 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI Error Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Error Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -193,6 +192,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:47 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:47 +0000 (UTC) Subject: rpms/globus-gssapi-error/F-10 globus-gssapi-error.spec,1.2,1.3 Message-ID: <20090725073547.1318711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7873 Modified Files: globus-gssapi-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-error/F-10/globus-gssapi-error.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-error.spec 15 Jun 2009 18:12:44 -0000 1.2 +++ globus-gssapi-error.spec 25 Jul 2009 07:35:46 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-error %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI Error Library Group: System Environment/Libraries @@ -30,36 +30,35 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI Error Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Error Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -193,6 +192,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:35:55 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:35:55 +0000 (UTC) Subject: rpms/globus-gssapi-error/EL-5 globus-gssapi-error.spec,1.2,1.3 Message-ID: <20090725073555.BB3F011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7946 Modified Files: globus-gssapi-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-error/EL-5/globus-gssapi-error.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-error.spec 15 Jun 2009 18:16:09 -0000 1.2 +++ globus-gssapi-error.spec 25 Jul 2009 07:35:55 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-error %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI Error Library Group: System Environment/Libraries @@ -30,36 +30,35 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI Error Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Error Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -193,6 +192,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:36:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:03 +0000 (UTC) Subject: rpms/globus-gssapi-error/EL-4 globus-gssapi-error.spec,1.2,1.3 Message-ID: <20090725073603.E80C011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-error/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8014 Modified Files: globus-gssapi-error.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-error/EL-4/globus-gssapi-error.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-error.spec 15 Jun 2009 18:15:05 -0000 1.2 +++ globus-gssapi-error.spec 25 Jul 2009 07:36:03 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-error %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI Error Library Group: System Environment/Libraries @@ -30,36 +30,35 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI Error Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Error Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -193,6 +192,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 2.5-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:36:13 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:13 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/devel globus-gssapi-gsi.spec,1.2,1.3 Message-ID: <20090725073613.79F1411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8099 Modified Files: globus-gssapi-gsi.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.9-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-gsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-gsi/devel/globus-gssapi-gsi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-gsi.spec 15 Jun 2009 17:29:25 -0000 1.2 +++ globus-gssapi-gsi.spec 25 Jul 2009 07:36:13 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-gsi %global _name %(tr - _ <<< %{name}) Version: 5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI library Group: System Environment/Libraries @@ -40,50 +40,49 @@ Patch2: %{name}-sslinit.patch Patch3: %{name}-type-punned-pointer.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 5 -BuildRequires: globus-common-devel >= 3 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-gsi-proxy-core-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 5 -Requires: globus-common-devel >= 3 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +Requires: globus-common-devel%{?_isa} >= 3 %package doc Summary: Globus Toolkit - GSSAPI library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -224,6 +223,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.9-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.9-3 - Update to official Fedora Globus packaging guidelines From mtasaka at fedoraproject.org Sat Jul 25 07:36:18 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:36:18 +0000 (UTC) Subject: rpms/ruby-revolution/devel ruby-revolution.spec,1.4,1.5 Message-ID: <20090725073618.23AA811C04D1@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-revolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8148 Modified Files: ruby-revolution.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.5-3.svn210 - F-12: Mass rebuild Index: ruby-revolution.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-revolution/devel/ruby-revolution.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ruby-revolution.spec 24 Feb 2009 13:33:26 -0000 1.4 +++ ruby-revolution.spec 25 Jul 2009 07:36:17 -0000 1.5 @@ -8,7 +8,7 @@ %define mainver 0.5 %define svnid 210 -%define fedorarel 2 +%define fedorarel 3 ########################################## # For using svn: do @@ -73,6 +73,9 @@ ruby extconf.rb %{ruby_sitearch}/%{modname}.so %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.5-3.svn210 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.5-2.svn210 - %%global-ize "nested" macro From ellert at fedoraproject.org Sat Jul 25 07:36:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:22 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/F-11 globus-gssapi-gsi.spec,1.2,1.3 Message-ID: <20090725073622.2725A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8186 Modified Files: globus-gssapi-gsi.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.9-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-gsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-gsi/F-11/globus-gssapi-gsi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-gsi.spec 15 Jun 2009 17:32:37 -0000 1.2 +++ globus-gssapi-gsi.spec 25 Jul 2009 07:36:21 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-gsi %global _name %(tr - _ <<< %{name}) Version: 5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI library Group: System Environment/Libraries @@ -40,50 +40,49 @@ Patch2: %{name}-sslinit.patch Patch3: %{name}-type-punned-pointer.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 5 -BuildRequires: globus-common-devel >= 3 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-gsi-proxy-core-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 5 -Requires: globus-common-devel >= 3 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +Requires: globus-common-devel%{?_isa} >= 3 %package doc Summary: Globus Toolkit - GSSAPI library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -224,6 +223,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.9-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.9-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:36:30 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:30 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/F-10 globus-gssapi-gsi.spec,1.2,1.3 Message-ID: <20090725073630.E369611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8312 Modified Files: globus-gssapi-gsi.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.9-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-gsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-gsi/F-10/globus-gssapi-gsi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-gsi.spec 15 Jun 2009 17:31:33 -0000 1.2 +++ globus-gssapi-gsi.spec 25 Jul 2009 07:36:30 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-gsi %global _name %(tr - _ <<< %{name}) Version: 5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI library Group: System Environment/Libraries @@ -40,50 +40,49 @@ Patch2: %{name}-sslinit.patch Patch3: %{name}-type-punned-pointer.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 5 -BuildRequires: globus-common-devel >= 3 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-gsi-proxy-core-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 5 -Requires: globus-common-devel >= 3 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +Requires: globus-common-devel%{?_isa} >= 3 %package doc Summary: Globus Toolkit - GSSAPI library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -224,6 +223,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.9-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.9-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:36:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:39 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/EL-5 globus-gssapi-gsi.spec,1.2,1.3 Message-ID: <20090725073639.5241811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8386 Modified Files: globus-gssapi-gsi.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.9-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-gsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-gsi/EL-5/globus-gssapi-gsi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-gsi.spec 15 Jun 2009 17:34:45 -0000 1.2 +++ globus-gssapi-gsi.spec 25 Jul 2009 07:36:39 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-gsi %global _name %(tr - _ <<< %{name}) Version: 5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI library Group: System Environment/Libraries @@ -40,50 +40,49 @@ Patch2: %{name}-sslinit.patch Patch3: %{name}-type-punned-pointer.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 5 -BuildRequires: globus-common-devel >= 3 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-gsi-proxy-core-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 5 -Requires: globus-common-devel >= 3 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +Requires: globus-common-devel%{?_isa} >= 3 %package doc Summary: Globus Toolkit - GSSAPI library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -224,6 +223,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.9-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.9-3 - Update to official Fedora Globus packaging guidelines From mtasaka at fedoraproject.org Sat Jul 25 07:36:45 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:36:45 +0000 (UTC) Subject: rpms/ruby-romkan/devel ruby-romkan.spec,1.3,1.4 Message-ID: <20090725073645.4013B11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-romkan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8443 Modified Files: ruby-romkan.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.4-4 - F-12: Mass rebuild Index: ruby-romkan.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-romkan/devel/ruby-romkan.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ruby-romkan.spec 24 Feb 2009 13:44:50 -0000 1.3 +++ ruby-romkan.spec 25 Jul 2009 07:36:45 -0000 1.4 @@ -4,7 +4,7 @@ Name: ruby-romkan Version: 0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Romaji <-> Kana conversion library for Ruby Group: Development/Languages License: Ruby @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 0.4-4 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 0.4-3 - %%global-ize "nested" macro From ellert at fedoraproject.org Sat Jul 25 07:36:47 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:47 +0000 (UTC) Subject: rpms/globus-gssapi-gsi/EL-4 globus-gssapi-gsi.spec,1.2,1.3 Message-ID: <20090725073647.AE58F11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gssapi-gsi/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8471 Modified Files: globus-gssapi-gsi.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.9-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gssapi-gsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gssapi-gsi/EL-4/globus-gssapi-gsi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gssapi-gsi.spec 15 Jun 2009 17:33:42 -0000 1.2 +++ globus-gssapi-gsi.spec 25 Jul 2009 07:36:47 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gssapi-gsi %global _name %(tr - _ <<< %{name}) Version: 5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - GSSAPI library Group: System Environment/Libraries @@ -40,50 +40,49 @@ Patch2: %{name}-sslinit.patch Patch3: %{name}-type-punned-pointer.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 5 -BuildRequires: globus-common-devel >= 3 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - GSSAPI library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-credential-devel >= 1 -Requires: globus-gsi-callback-devel -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-gsi-proxy-core-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 5 -Requires: globus-common-devel >= 3 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-credential-devel%{?_isa} >= 1 +Requires: globus-gsi-callback-devel%{?_isa} +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 5 +Requires: globus-common-devel%{?_isa} >= 3 %package doc Summary: Globus Toolkit - GSSAPI library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -224,6 +223,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.9-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 5.9-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:36:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:36:56 +0000 (UTC) Subject: rpms/globus-gss-assist/devel globus-gss-assist.spec,1.2,1.3 Message-ID: <20090725073656.0633811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8583 Modified Files: globus-gss-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.0-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gss-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gss-assist/devel/globus-gss-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gss-assist.spec 15 Jun 2009 17:37:01 -0000 1.2 +++ globus-gss-assist.spec 25 Jul 2009 07:36:55 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gss-assist %global _name %(tr - _ <<< %{name}) Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GSSAPI Assist library Group: System Environment/Libraries @@ -40,48 +40,47 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-gsi-sysconfig-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-callout-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-callout-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - GSSAPI Assist library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-common-progs >= 3 %package devel Summary: Globus Toolkit - GSSAPI Assist library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-gsi-sysconfig-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-callout-devel -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-callout-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Assist library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -232,6 +231,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.0-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 4.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:05 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:05 +0000 (UTC) Subject: rpms/globus-gss-assist/F-11 globus-gss-assist.spec,1.2,1.3 Message-ID: <20090725073705.0DDCF11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8659 Modified Files: globus-gss-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.0-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gss-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gss-assist/F-11/globus-gss-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gss-assist.spec 15 Jun 2009 17:40:18 -0000 1.2 +++ globus-gss-assist.spec 25 Jul 2009 07:37:04 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gss-assist %global _name %(tr - _ <<< %{name}) Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GSSAPI Assist library Group: System Environment/Libraries @@ -40,48 +40,47 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-gsi-sysconfig-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-callout-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-callout-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - GSSAPI Assist library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-common-progs >= 3 %package devel Summary: Globus Toolkit - GSSAPI Assist library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-gsi-sysconfig-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-callout-devel -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-callout-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Assist library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -232,6 +231,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.0-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 4.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:14 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:14 +0000 (UTC) Subject: rpms/globus-gss-assist/F-10 globus-gss-assist.spec,1.2,1.3 Message-ID: <20090725073714.0521811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8714 Modified Files: globus-gss-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.0-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gss-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gss-assist/F-10/globus-gss-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gss-assist.spec 15 Jun 2009 17:39:12 -0000 1.2 +++ globus-gss-assist.spec 25 Jul 2009 07:37:13 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gss-assist %global _name %(tr - _ <<< %{name}) Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GSSAPI Assist library Group: System Environment/Libraries @@ -40,48 +40,47 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-gsi-sysconfig-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-callout-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-callout-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - GSSAPI Assist library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-common-progs >= 3 %package devel Summary: Globus Toolkit - GSSAPI Assist library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-gsi-sysconfig-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-callout-devel -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-callout-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Assist library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -232,6 +231,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.0-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 4.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:23 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:23 +0000 (UTC) Subject: rpms/globus-gss-assist/EL-5 globus-gss-assist.spec,1.2,1.3 Message-ID: <20090725073723.BE2E511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8777 Modified Files: globus-gss-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.0-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gss-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gss-assist/EL-5/globus-gss-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gss-assist.spec 15 Jun 2009 17:42:29 -0000 1.2 +++ globus-gss-assist.spec 25 Jul 2009 07:37:23 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gss-assist %global _name %(tr - _ <<< %{name}) Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GSSAPI Assist library Group: System Environment/Libraries @@ -40,48 +40,47 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-gsi-sysconfig-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-callout-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-callout-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - GSSAPI Assist library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-common-progs >= 3 %package devel Summary: Globus Toolkit - GSSAPI Assist library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-gsi-sysconfig-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-callout-devel -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-callout-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Assist library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -232,6 +231,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.0-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 4.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:32 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:32 +0000 (UTC) Subject: rpms/globus-gss-assist/EL-4 globus-gss-assist.spec,1.2,1.3 Message-ID: <20090725073732.4F2C011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gss-assist/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8845 Modified Files: globus-gss-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.0-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gss-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gss-assist/EL-4/globus-gss-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gss-assist.spec 15 Jun 2009 17:41:22 -0000 1.2 +++ globus-gss-assist.spec 25 Jul 2009 07:37:31 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gss-assist %global _name %(tr - _ <<< %{name}) Version: 4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - GSSAPI Assist library Group: System Environment/Libraries @@ -40,48 +40,47 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-gsi-sysconfig-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-callout-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-callout-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - GSSAPI Assist library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: globus-common-progs >= 3 %package devel Summary: Globus Toolkit - GSSAPI Assist library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-gsi-sysconfig-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-callout-devel -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-callout-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - GSSAPI Assist library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -232,6 +231,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.0-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 4.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:40 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:40 +0000 (UTC) Subject: rpms/globus-io/devel globus-io.spec,1.2,1.3 Message-ID: <20090725073740.B4B2A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8906 Modified Files: globus-io.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 6.3-3 - Add instruction set architecture (isa) tags Index: globus-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-io/devel/globus-io.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-io.spec 15 Jun 2009 18:57:13 -0000 1.2 +++ globus-io.spec 25 Jul 2009 07:37:40 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-io %global _name %(tr - _ <<< %{name}) Version: 6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - uniform I/O interface Group: System Environment/Libraries @@ -25,21 +25,21 @@ Source: %{_name}-%{version}.tar.gz Patch0: %{name}-parens.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-gsi-driver +Requires: globus-xio-gsi-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-gsi-driver-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-gsi-driver-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - uniform I/O interface Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-gsi-driver-devel -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-gsi-driver-devel%{?_isa} +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 6.3-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 6.3-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:48 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:48 +0000 (UTC) Subject: rpms/globus-io/F-11 globus-io.spec,1.2,1.3 Message-ID: <20090725073748.B876011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8970 Modified Files: globus-io.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 6.3-3 - Add instruction set architecture (isa) tags Index: globus-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-io/F-11/globus-io.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-io.spec 15 Jun 2009 19:00:45 -0000 1.2 +++ globus-io.spec 25 Jul 2009 07:37:48 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-io %global _name %(tr - _ <<< %{name}) Version: 6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - uniform I/O interface Group: System Environment/Libraries @@ -25,21 +25,21 @@ Source: %{_name}-%{version}.tar.gz Patch0: %{name}-parens.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-gsi-driver +Requires: globus-xio-gsi-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-gsi-driver-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-gsi-driver-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - uniform I/O interface Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-gsi-driver-devel -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-gsi-driver-devel%{?_isa} +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 6.3-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 6.3-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:37:56 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:37:56 +0000 (UTC) Subject: rpms/globus-io/F-10 globus-io.spec,1.2,1.3 Message-ID: <20090725073756.CB22D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9039 Modified Files: globus-io.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 6.3-3 - Add instruction set architecture (isa) tags Index: globus-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-io/F-10/globus-io.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-io.spec 15 Jun 2009 18:59:29 -0000 1.2 +++ globus-io.spec 25 Jul 2009 07:37:56 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-io %global _name %(tr - _ <<< %{name}) Version: 6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - uniform I/O interface Group: System Environment/Libraries @@ -25,21 +25,21 @@ Source: %{_name}-%{version}.tar.gz Patch0: %{name}-parens.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-gsi-driver +Requires: globus-xio-gsi-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-gsi-driver-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-gsi-driver-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - uniform I/O interface Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-gsi-driver-devel -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-gsi-driver-devel%{?_isa} +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 6.3-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 6.3-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:04 +0000 (UTC) Subject: rpms/globus-io/EL-5 globus-io.spec,1.2,1.3 Message-ID: <20090725073804.F406C11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9091 Modified Files: globus-io.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 6.3-3 - Add instruction set architecture (isa) tags Index: globus-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-io/EL-5/globus-io.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-io.spec 15 Jun 2009 19:03:04 -0000 1.2 +++ globus-io.spec 25 Jul 2009 07:38:04 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-io %global _name %(tr - _ <<< %{name}) Version: 6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - uniform I/O interface Group: System Environment/Libraries @@ -25,21 +25,21 @@ Source: %{_name}-%{version}.tar.gz Patch0: %{name}-parens.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-gsi-driver +Requires: globus-xio-gsi-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-gsi-driver-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-gsi-driver-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - uniform I/O interface Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-gsi-driver-devel -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-gsi-driver-devel%{?_isa} +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 6.3-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 6.3-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:13 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:13 +0000 (UTC) Subject: rpms/globus-io/EL-4 globus-io.spec,1.2,1.3 Message-ID: <20090725073813.3FFA811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-io/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9147 Modified Files: globus-io.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 6.3-3 - Add instruction set architecture (isa) tags Index: globus-io.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-io/EL-4/globus-io.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-io.spec 15 Jun 2009 19:01:56 -0000 1.2 +++ globus-io.spec 25 Jul 2009 07:38:13 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-io %global _name %(tr - _ <<< %{name}) Version: 6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - uniform I/O interface Group: System Environment/Libraries @@ -25,21 +25,21 @@ Source: %{_name}-%{version}.tar.gz Patch0: %{name}-parens.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-xio-gsi-driver +Requires: globus-xio-gsi-driver%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-gsi-driver-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-gsi-driver-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - uniform I/O interface Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-gsi-driver-devel -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-gsi-driver-devel%{?_isa} +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 6.3-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 6.3-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:21 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:21 +0000 (UTC) Subject: rpms/globus-libtool/devel globus-libtool.spec,1.3,1.4 Message-ID: <20090725073821.85DD011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9211 Modified Files: globus-libtool.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.2-4 - Add instruction set architecture (isa) tags Index: globus-libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-libtool/devel/globus-libtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-libtool.spec 15 Jun 2009 15:16:47 -0000 1.3 +++ globus-libtool.spec 25 Jul 2009 07:38:21 -0000 1.4 @@ -9,7 +9,7 @@ Name: globus-libtool %global _name %(tr - _ <<< %{name}) Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus libtool package Group: System Environment/Libraries @@ -25,31 +25,23 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl%{?_isa} %else Requires: libtool-libs %endif -%endif BuildRequires: grid-packaging-tools -BuildRequires: globus-core +BuildRequires: globus-core%{?_isa} %package devel Summary: Globus Toolkit - Globus libtool package Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl-devel -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl-devel%{?_isa} %else Requires: libtool %endif -%endif Requires: pkgconfig %description @@ -129,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.2-4 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 1.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:29 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:29 +0000 (UTC) Subject: rpms/globus-libtool/F-11 globus-libtool.spec,1.3,1.4 Message-ID: <20090725073829.7CE7711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9284 Modified Files: globus-libtool.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.2-4 - Add instruction set architecture (isa) tags Index: globus-libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-libtool/F-11/globus-libtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-libtool.spec 15 Jun 2009 15:20:23 -0000 1.3 +++ globus-libtool.spec 25 Jul 2009 07:38:29 -0000 1.4 @@ -9,7 +9,7 @@ Name: globus-libtool %global _name %(tr - _ <<< %{name}) Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus libtool package Group: System Environment/Libraries @@ -25,31 +25,23 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl%{?_isa} %else Requires: libtool-libs %endif -%endif BuildRequires: grid-packaging-tools -BuildRequires: globus-core +BuildRequires: globus-core%{?_isa} %package devel Summary: Globus Toolkit - Globus libtool package Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl-devel -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl-devel%{?_isa} %else Requires: libtool %endif -%endif Requires: pkgconfig %description @@ -129,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.2-4 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 1.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:46 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:46 +0000 (UTC) Subject: rpms/globus-libtool/EL-5 globus-libtool.spec,1.3,1.4 Message-ID: <20090725073846.A4BEE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9406 Modified Files: globus-libtool.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.2-4 - Add instruction set architecture (isa) tags Index: globus-libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-libtool/EL-5/globus-libtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-libtool.spec 15 Jun 2009 15:22:49 -0000 1.3 +++ globus-libtool.spec 25 Jul 2009 07:38:46 -0000 1.4 @@ -9,7 +9,7 @@ Name: globus-libtool %global _name %(tr - _ <<< %{name}) Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus libtool package Group: System Environment/Libraries @@ -25,31 +25,23 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl%{?_isa} %else Requires: libtool-libs %endif -%endif BuildRequires: grid-packaging-tools -BuildRequires: globus-core +BuildRequires: globus-core%{?_isa} %package devel Summary: Globus Toolkit - Globus libtool package Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl-devel -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl-devel%{?_isa} %else Requires: libtool %endif -%endif Requires: pkgconfig %description @@ -129,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.2-4 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 1.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:37 +0000 (UTC) Subject: rpms/globus-libtool/F-10 globus-libtool.spec,1.3,1.4 Message-ID: <20090725073837.80D4511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9342 Modified Files: globus-libtool.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.2-4 - Add instruction set architecture (isa) tags Index: globus-libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-libtool/F-10/globus-libtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-libtool.spec 15 Jun 2009 15:19:12 -0000 1.3 +++ globus-libtool.spec 25 Jul 2009 07:38:37 -0000 1.4 @@ -9,7 +9,7 @@ Name: globus-libtool %global _name %(tr - _ <<< %{name}) Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus libtool package Group: System Environment/Libraries @@ -25,31 +25,23 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl%{?_isa} %else Requires: libtool-libs %endif -%endif BuildRequires: grid-packaging-tools -BuildRequires: globus-core +BuildRequires: globus-core%{?_isa} %package devel Summary: Globus Toolkit - Globus libtool package Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl-devel -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl-devel%{?_isa} %else Requires: libtool %endif -%endif Requires: pkgconfig %description @@ -129,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.2-4 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 1.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:38:55 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:38:55 +0000 (UTC) Subject: rpms/globus-libtool/EL-4 globus-libtool.spec,1.3,1.4 Message-ID: <20090725073855.120FE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-libtool/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9496 Modified Files: globus-libtool.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.2-4 - Add instruction set architecture (isa) tags Index: globus-libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-libtool/EL-4/globus-libtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-libtool.spec 15 Jun 2009 15:21:33 -0000 1.3 +++ globus-libtool.spec 25 Jul 2009 07:38:54 -0000 1.4 @@ -9,7 +9,7 @@ Name: globus-libtool %global _name %(tr - _ <<< %{name}) Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus libtool package Group: System Environment/Libraries @@ -25,31 +25,23 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl%{?_isa} %else Requires: libtool-libs %endif -%endif BuildRequires: grid-packaging-tools -BuildRequires: globus-core +BuildRequires: globus-core%{?_isa} %package devel Summary: Globus Toolkit - Globus libtool package Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -%if %{?fedora}%{!?fedora:0} >= 4 -Requires: libtool-ltdl-devel -%else -%if %{?rhel}%{!?rhel:0} >= 5 -Requires: libtool-ltdl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +%if %{?fedora}%{!?fedora:0} >= 4 || %{?rhel}%{!?rhel:0} >= 5 +Requires: libtool-ltdl-devel%{?_isa} %else Requires: libtool %endif -%endif Requires: pkgconfig %description @@ -129,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.2-4 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 1.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:03 +0000 (UTC) Subject: rpms/globus-openssl/devel globus-openssl.spec,1.2,1.3 Message-ID: <20090725073903.D495311C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9571 Modified Files: globus-openssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.0-3 - Add instruction set architecture (isa) tags Index: globus-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl/devel/globus-openssl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl.spec 15 Jun 2009 15:25:41 -0000 1.2 +++ globus-openssl.spec 25 Jul 2009 07:39:03 -0000 1.3 @@ -9,7 +9,7 @@ Name: globus-openssl %global _name %(tr - _ <<< %{name}) Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Openssl Library Group: System Environment/Libraries @@ -25,21 +25,21 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: openssl +Requires: openssl%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-core -BuildRequires: openssl-devel +BuildRequires: globus-core%{?_isa} +BuildRequires: openssl-devel%{?_isa} %package progs Summary: Globus Toolkit - Openssl Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Openssl Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: openssl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} # Workaround for broken openssl-devel on RHL9 (it is missing # Requires: zlib-devel) %if %{?fedora:0}%{!?fedora:1} @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.0-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 3.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:12 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:12 +0000 (UTC) Subject: rpms/globus-openssl/F-11 globus-openssl.spec,1.2,1.3 Message-ID: <20090725073912.5B2A511C02C8@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9625 Modified Files: globus-openssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.0-3 - Add instruction set architecture (isa) tags Index: globus-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl/F-11/globus-openssl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl.spec 15 Jun 2009 15:28:52 -0000 1.2 +++ globus-openssl.spec 25 Jul 2009 07:39:11 -0000 1.3 @@ -9,7 +9,7 @@ Name: globus-openssl %global _name %(tr - _ <<< %{name}) Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Openssl Library Group: System Environment/Libraries @@ -25,21 +25,21 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: openssl +Requires: openssl%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-core -BuildRequires: openssl-devel +BuildRequires: globus-core%{?_isa} +BuildRequires: openssl-devel%{?_isa} %package progs Summary: Globus Toolkit - Openssl Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Openssl Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: openssl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} # Workaround for broken openssl-devel on RHL9 (it is missing # Requires: zlib-devel) %if %{?fedora:0}%{!?fedora:1} @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.0-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 3.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:20 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:20 +0000 (UTC) Subject: rpms/globus-openssl/F-10 globus-openssl.spec,1.2,1.3 Message-ID: <20090725073920.8936611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9685 Modified Files: globus-openssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.0-3 - Add instruction set architecture (isa) tags Index: globus-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl/F-10/globus-openssl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl.spec 15 Jun 2009 15:27:50 -0000 1.2 +++ globus-openssl.spec 25 Jul 2009 07:39:20 -0000 1.3 @@ -9,7 +9,7 @@ Name: globus-openssl %global _name %(tr - _ <<< %{name}) Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Openssl Library Group: System Environment/Libraries @@ -25,21 +25,21 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: openssl +Requires: openssl%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-core -BuildRequires: openssl-devel +BuildRequires: globus-core%{?_isa} +BuildRequires: openssl-devel%{?_isa} %package progs Summary: Globus Toolkit - Openssl Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Openssl Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: openssl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} # Workaround for broken openssl-devel on RHL9 (it is missing # Requires: zlib-devel) %if %{?fedora:0}%{!?fedora:1} @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.0-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 3.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:29 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:29 +0000 (UTC) Subject: rpms/globus-openssl/EL-5 globus-openssl.spec,1.2,1.3 Message-ID: <20090725073929.1D2AA11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9760 Modified Files: globus-openssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.0-3 - Add instruction set architecture (isa) tags Index: globus-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl/EL-5/globus-openssl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl.spec 15 Jun 2009 15:31:01 -0000 1.2 +++ globus-openssl.spec 25 Jul 2009 07:39:28 -0000 1.3 @@ -9,7 +9,7 @@ Name: globus-openssl %global _name %(tr - _ <<< %{name}) Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Openssl Library Group: System Environment/Libraries @@ -25,21 +25,21 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: openssl +Requires: openssl%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-core -BuildRequires: openssl-devel +BuildRequires: globus-core%{?_isa} +BuildRequires: openssl-devel%{?_isa} %package progs Summary: Globus Toolkit - Openssl Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Openssl Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: openssl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} # Workaround for broken openssl-devel on RHL9 (it is missing # Requires: zlib-devel) %if %{?fedora:0}%{!?fedora:1} @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.0-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 3.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:46 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:46 +0000 (UTC) Subject: rpms/globus-openssl-module/devel globus-openssl-module.spec, 1.2, 1.3 Message-ID: <20090725073946.1288911C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9869 Modified Files: globus-openssl-module.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-openssl-module.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl-module/devel/globus-openssl-module.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl-module.spec 15 Jun 2009 16:27:40 -0000 1.2 +++ globus-openssl-module.spec 25 Jul 2009 07:39:45 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-openssl-module %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Group: System Environment/Libraries @@ -35,42 +35,41 @@ Patch1: %{name}-typo.patch Patch2: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -206,6 +205,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:37 +0000 (UTC) Subject: rpms/globus-openssl/EL-4 globus-openssl.spec,1.2,1.3 Message-ID: <20090725073937.A23F711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9819 Modified Files: globus-openssl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 3.0-3 - Add instruction set architecture (isa) tags Index: globus-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl/EL-4/globus-openssl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl.spec 15 Jun 2009 15:29:55 -0000 1.2 +++ globus-openssl.spec 25 Jul 2009 07:39:37 -0000 1.3 @@ -9,7 +9,7 @@ Name: globus-openssl %global _name %(tr - _ <<< %{name}) Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Openssl Library Group: System Environment/Libraries @@ -25,21 +25,21 @@ URL: http://www.globus.org/ Source: %{name}-pkg_data_src.gpt.in BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: openssl +Requires: openssl%{?_isa} BuildRequires: grid-packaging-tools -BuildRequires: globus-core -BuildRequires: openssl-devel +BuildRequires: globus-core%{?_isa} +BuildRequires: openssl-devel%{?_isa} %package progs Summary: Globus Toolkit - Openssl Library Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Openssl Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: openssl-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: openssl-devel%{?_isa} # Workaround for broken openssl-devel on RHL9 (it is missing # Requires: zlib-devel) %if %{?fedora:0}%{!?fedora:1} @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 3.0-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 3.0-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:39:54 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:39:54 +0000 (UTC) Subject: rpms/globus-openssl-module/F-11 globus-openssl-module.spec,1.2,1.3 Message-ID: <20090725073954.EA59211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9928 Modified Files: globus-openssl-module.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-openssl-module.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl-module/F-11/globus-openssl-module.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl-module.spec 15 Jun 2009 16:31:14 -0000 1.2 +++ globus-openssl-module.spec 25 Jul 2009 07:39:54 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-openssl-module %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Group: System Environment/Libraries @@ -35,42 +35,41 @@ Patch1: %{name}-typo.patch Patch2: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -206,6 +205,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:03 +0000 (UTC) Subject: rpms/globus-openssl-module/F-10 globus-openssl-module.spec,1.2,1.3 Message-ID: <20090725074003.A7D2211C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9973 Modified Files: globus-openssl-module.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-openssl-module.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl-module/F-10/globus-openssl-module.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl-module.spec 15 Jun 2009 16:29:58 -0000 1.2 +++ globus-openssl-module.spec 25 Jul 2009 07:40:03 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-openssl-module %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Group: System Environment/Libraries @@ -35,42 +35,41 @@ Patch1: %{name}-typo.patch Patch2: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -206,6 +205,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:11 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:11 +0000 (UTC) Subject: rpms/globus-openssl-module/EL-5 globus-openssl-module.spec,1.2,1.3 Message-ID: <20090725074011.EBAE111C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10042 Modified Files: globus-openssl-module.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-openssl-module.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl-module/EL-5/globus-openssl-module.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl-module.spec 15 Jun 2009 16:33:03 -0000 1.2 +++ globus-openssl-module.spec 25 Jul 2009 07:40:11 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-openssl-module %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Group: System Environment/Libraries @@ -35,42 +35,41 @@ Patch1: %{name}-typo.patch Patch2: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -206,6 +205,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:20 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:20 +0000 (UTC) Subject: rpms/globus-openssl-module/EL-4 globus-openssl-module.spec,1.2,1.3 Message-ID: <20090725074020.C7E2111C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-openssl-module/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10094 Modified Files: globus-openssl-module.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-openssl-module.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-openssl-module/EL-4/globus-openssl-module.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-openssl-module.spec 15 Jun 2009 16:31:55 -0000 1.2 +++ globus-openssl-module.spec 25 Jul 2009 07:40:20 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-openssl-module %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Group: System Environment/Libraries @@ -35,42 +35,41 @@ Patch1: %{name}-typo.patch Patch2: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus OpenSSL Module Wrapper Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -206,6 +205,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:28 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:28 +0000 (UTC) Subject: rpms/globus-proxy-utils/devel globus-proxy-utils.spec,1.2,1.3 Message-ID: <20090725074028.E8CB411C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10153 Modified Files: globus-proxy-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-3 - Add instruction set architecture (isa) tags Index: globus-proxy-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-proxy-utils/devel/globus-proxy-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-proxy-utils.spec 15 Jun 2009 17:44:42 -0000 1.2 +++ globus-proxy-utils.spec 25 Jul 2009 07:40:28 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-proxy-utils %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Utility Programs Group: Applications/Internet @@ -28,20 +28,20 @@ Patch0: %{name}-ldflag-overwrt.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 2.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:37 +0000 (UTC) Subject: rpms/globus-proxy-utils/F-11 globus-proxy-utils.spec,1.2,1.3 Message-ID: <20090725074037.93B6411C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10205 Modified Files: globus-proxy-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-3 - Add instruction set architecture (isa) tags Index: globus-proxy-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-proxy-utils/F-11/globus-proxy-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-proxy-utils.spec 15 Jun 2009 17:48:07 -0000 1.2 +++ globus-proxy-utils.spec 25 Jul 2009 07:40:37 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-proxy-utils %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Utility Programs Group: Applications/Internet @@ -28,20 +28,20 @@ Patch0: %{name}-ldflag-overwrt.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 2.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:45 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:45 +0000 (UTC) Subject: rpms/globus-proxy-utils/F-10 globus-proxy-utils.spec,1.2,1.3 Message-ID: <20090725074045.F103611C04D2@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10270 Modified Files: globus-proxy-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-3 - Add instruction set architecture (isa) tags Index: globus-proxy-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-proxy-utils/F-10/globus-proxy-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-proxy-utils.spec 15 Jun 2009 17:47:00 -0000 1.2 +++ globus-proxy-utils.spec 25 Jul 2009 07:40:45 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-proxy-utils %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Utility Programs Group: Applications/Internet @@ -28,20 +28,20 @@ Patch0: %{name}-ldflag-overwrt.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 2.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:40:53 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:40:53 +0000 (UTC) Subject: rpms/globus-proxy-utils/EL-5 globus-proxy-utils.spec,1.2,1.3 Message-ID: <20090725074053.F2F2E11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10338 Modified Files: globus-proxy-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-3 - Add instruction set architecture (isa) tags Index: globus-proxy-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-proxy-utils/EL-5/globus-proxy-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-proxy-utils.spec 15 Jun 2009 17:50:26 -0000 1.2 +++ globus-proxy-utils.spec 25 Jul 2009 07:40:53 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-proxy-utils %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Utility Programs Group: Applications/Internet @@ -28,20 +28,20 @@ Patch0: %{name}-ldflag-overwrt.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 2.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:02 +0000 (UTC) Subject: rpms/globus-proxy-utils/EL-4 globus-proxy-utils.spec,1.2,1.3 Message-ID: <20090725074102.62FCC11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-proxy-utils/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10387 Modified Files: globus-proxy-utils.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.5-3 - Add instruction set architecture (isa) tags Index: globus-proxy-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-proxy-utils/EL-4/globus-proxy-utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-proxy-utils.spec 15 Jun 2009 17:49:18 -0000 1.2 +++ globus-proxy-utils.spec 25 Jul 2009 07:41:02 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-proxy-utils %global _name %(tr - _ <<< %{name}) Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Proxy Utility Programs Group: Applications/Internet @@ -28,20 +28,20 @@ Patch0: %{name}-ldflag-overwrt.patch Patch1: %{name}-mingw.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-gsi-credential-devel >= 1 -BuildRequires: globus-gsi-callback-devel -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-gsi-proxy-core-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 1 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-credential-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-callback-devel%{?_isa} +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-gsi-proxy-core-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 1 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/GLOBUS_LICENSE %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.5-3 +- Add instruction set architecture (isa) tags + * Wed Jun 03 2009 Mattias Ellert - 2.5-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:11 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:11 +0000 (UTC) Subject: rpms/globus-rls-client/devel globus-rls-client.spec,1.2,1.3 Message-ID: <20090725074111.41A2A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10441 Modified Files: globus-rls-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.1-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-rls-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-client/devel/globus-rls-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-client.spec 15 Jun 2009 21:06:13 -0000 1.2 +++ globus-rls-client.spec 25 Jul 2009 07:41:10 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rls-client %global _name %(tr - _ <<< %{name}) Version: 5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Client Group: System Environment/Libraries @@ -40,43 +40,42 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Replica Location Service Client Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Replica Location Service Client Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-io-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Replica Location Service Client Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -234,6 +233,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.1-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 5.1-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:19 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:19 +0000 (UTC) Subject: rpms/globus-rls-client/F-11 globus-rls-client.spec,1.2,1.3 Message-ID: <20090725074119.DB21C11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10504 Modified Files: globus-rls-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.1-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-rls-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-client/F-11/globus-rls-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-client.spec 15 Jun 2009 21:09:45 -0000 1.2 +++ globus-rls-client.spec 25 Jul 2009 07:41:19 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rls-client %global _name %(tr - _ <<< %{name}) Version: 5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Client Group: System Environment/Libraries @@ -40,43 +40,42 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Replica Location Service Client Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Replica Location Service Client Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-io-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Replica Location Service Client Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -234,6 +233,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.1-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 5.1-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:28 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:28 +0000 (UTC) Subject: rpms/globus-rls-client/F-10 globus-rls-client.spec,1.2,1.3 Message-ID: <20090725074128.7236211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10551 Modified Files: globus-rls-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.1-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-rls-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-client/F-10/globus-rls-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-client.spec 15 Jun 2009 21:08:36 -0000 1.2 +++ globus-rls-client.spec 25 Jul 2009 07:41:28 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rls-client %global _name %(tr - _ <<< %{name}) Version: 5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Client Group: System Environment/Libraries @@ -40,43 +40,42 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Replica Location Service Client Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Replica Location Service Client Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-io-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Replica Location Service Client Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -234,6 +233,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.1-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 5.1-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:37 +0000 (UTC) Subject: rpms/globus-rls-client/EL-5 globus-rls-client.spec,1.2,1.3 Message-ID: <20090725074137.0825611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10610 Modified Files: globus-rls-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.1-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-rls-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-client/EL-5/globus-rls-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-client.spec 15 Jun 2009 21:12:15 -0000 1.2 +++ globus-rls-client.spec 25 Jul 2009 07:41:36 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rls-client %global _name %(tr - _ <<< %{name}) Version: 5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Client Group: System Environment/Libraries @@ -40,43 +40,42 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Replica Location Service Client Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Replica Location Service Client Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-io-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Replica Location Service Client Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -234,6 +233,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.1-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 5.1-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:55 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:55 +0000 (UTC) Subject: rpms/globus-rls-server/devel globus-rls-server.spec,1.2,1.3 Message-ID: <20090725074155.4ADE911C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10717 Modified Files: globus-rls-server.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.7-4 - Add instruction set architecture (isa) tags Index: globus-rls-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-server/devel/globus-rls-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-server.spec 15 Jun 2009 21:13:46 -0000 1.2 +++ globus-rls-server.spec 25 Jul 2009 07:41:55 -0000 1.3 @@ -8,7 +8,7 @@ Name: globus-rls-server %global _name %(tr - _ <<< %{name}) Version: 4.7 %global setupversion 4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Server Group: Applications/Internet @@ -52,12 +52,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version Provides: %{name}-setup = %{setupversion} Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rls-client-devel >= 5 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-usage-devel -BuildRequires: unixODBC-devel -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rls-client-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-usage-devel%{?_isa} +BuildRequires: unixODBC-devel%{?_isa} +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 Requires(post): chkconfig Requires(preun): chkconfig @@ -227,6 +227,9 @@ fi %doc %{_docdir}/%{name}-%{version}/INSTALL %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.7-4 +- Add instruction set architecture (isa) tags + * Sun Jun 07 2009 Mattias Ellert - 4.7-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:41:46 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:41:46 +0000 (UTC) Subject: rpms/globus-rls-client/EL-4 globus-rls-client.spec,1.2,1.3 Message-ID: <20090725074146.025AD11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-client/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10667 Modified Files: globus-rls-client.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.1-4 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-rls-client.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-client/EL-4/globus-rls-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-client.spec 15 Jun 2009 21:11:00 -0000 1.2 +++ globus-rls-client.spec 25 Jul 2009 07:41:45 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rls-client %global _name %(tr - _ <<< %{name}) Version: 5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Client Group: System Environment/Libraries @@ -40,43 +40,42 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gssapi-gsi-devel >= 4 -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package progs Summary: Globus Toolkit - Replica Location Service Client Programs Group: Applications/Internet -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %package devel Summary: Globus Toolkit - Replica Location Service Client Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-gssapi-gsi-devel >= 4 -Requires: globus-io-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 +Requires: globus-io-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Replica Location Service Client Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -234,6 +233,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.1-4 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 5.1-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:04 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:04 +0000 (UTC) Subject: rpms/globus-rls-server/F-11 globus-rls-server.spec,1.2,1.3 Message-ID: <20090725074204.11AF711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10773 Modified Files: globus-rls-server.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.7-4 - Add instruction set architecture (isa) tags Index: globus-rls-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-server/F-11/globus-rls-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-server.spec 15 Jun 2009 21:17:49 -0000 1.2 +++ globus-rls-server.spec 25 Jul 2009 07:42:03 -0000 1.3 @@ -8,7 +8,7 @@ Name: globus-rls-server %global _name %(tr - _ <<< %{name}) Version: 4.7 %global setupversion 4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Server Group: Applications/Internet @@ -52,12 +52,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version Provides: %{name}-setup = %{setupversion} Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rls-client-devel >= 5 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-usage-devel -BuildRequires: unixODBC-devel -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rls-client-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-usage-devel%{?_isa} +BuildRequires: unixODBC-devel%{?_isa} +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 Requires(post): chkconfig Requires(preun): chkconfig @@ -227,6 +227,9 @@ fi %doc %{_docdir}/%{name}-%{version}/INSTALL %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.7-4 +- Add instruction set architecture (isa) tags + * Sun Jun 07 2009 Mattias Ellert - 4.7-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:13 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:13 +0000 (UTC) Subject: rpms/globus-rls-server/F-10 globus-rls-server.spec,1.2,1.3 Message-ID: <20090725074213.1B4E911C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10838 Modified Files: globus-rls-server.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.7-4 - Add instruction set architecture (isa) tags Index: globus-rls-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-server/F-10/globus-rls-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-server.spec 15 Jun 2009 21:16:18 -0000 1.2 +++ globus-rls-server.spec 25 Jul 2009 07:42:12 -0000 1.3 @@ -8,7 +8,7 @@ Name: globus-rls-server %global _name %(tr - _ <<< %{name}) Version: 4.7 %global setupversion 4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Server Group: Applications/Internet @@ -52,12 +52,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version Provides: %{name}-setup = %{setupversion} Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rls-client-devel >= 5 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-usage-devel -BuildRequires: unixODBC-devel -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rls-client-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-usage-devel%{?_isa} +BuildRequires: unixODBC-devel%{?_isa} +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 Requires(post): chkconfig Requires(preun): chkconfig @@ -227,6 +227,9 @@ fi %doc %{_docdir}/%{name}-%{version}/INSTALL %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.7-4 +- Add instruction set architecture (isa) tags + * Sun Jun 07 2009 Mattias Ellert - 4.7-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:22 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:22 +0000 (UTC) Subject: rpms/globus-rls-server/EL-5 globus-rls-server.spec,1.2,1.3 Message-ID: <20090725074222.0DA9511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10899 Modified Files: globus-rls-server.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.7-4 - Add instruction set architecture (isa) tags Index: globus-rls-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-server/EL-5/globus-rls-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-server.spec 15 Jun 2009 21:19:59 -0000 1.2 +++ globus-rls-server.spec 25 Jul 2009 07:42:21 -0000 1.3 @@ -8,7 +8,7 @@ Name: globus-rls-server %global _name %(tr - _ <<< %{name}) Version: 4.7 %global setupversion 4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Server Group: Applications/Internet @@ -52,12 +52,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version Provides: %{name}-setup = %{setupversion} Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rls-client-devel >= 5 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-usage-devel -BuildRequires: unixODBC-devel -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rls-client-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-usage-devel%{?_isa} +BuildRequires: unixODBC-devel%{?_isa} +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 Requires(post): chkconfig Requires(preun): chkconfig @@ -227,6 +227,9 @@ fi %doc %{_docdir}/%{name}-%{version}/INSTALL %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.7-4 +- Add instruction set architecture (isa) tags + * Sun Jun 07 2009 Mattias Ellert - 4.7-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:31 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:31 +0000 (UTC) Subject: rpms/globus-rls-server/EL-4 globus-rls-server.spec,1.2,1.3 Message-ID: <20090725074231.1679511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rls-server/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10963 Modified Files: globus-rls-server.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 4.7-4 - Add instruction set architecture (isa) tags Index: globus-rls-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rls-server/EL-4/globus-rls-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rls-server.spec 15 Jun 2009 21:18:53 -0000 1.2 +++ globus-rls-server.spec 25 Jul 2009 07:42:30 -0000 1.3 @@ -8,7 +8,7 @@ Name: globus-rls-server %global _name %(tr - _ <<< %{name}) Version: 4.7 %global setupversion 4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Replica Location Service Server Group: Applications/Internet @@ -52,12 +52,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version Provides: %{name}-setup = %{setupversion} Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rls-client-devel >= 5 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-usage-devel -BuildRequires: unixODBC-devel -BuildRequires: globus-io-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rls-client-devel%{?_isa} >= 5 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-usage-devel%{?_isa} +BuildRequires: unixODBC-devel%{?_isa} +BuildRequires: globus-io-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 Requires(post): chkconfig Requires(preun): chkconfig @@ -227,6 +227,9 @@ fi %doc %{_docdir}/%{name}-%{version}/INSTALL %changelog +* Thu Jul 23 2009 Mattias Ellert - 4.7-4 +- Add instruction set architecture (isa) tags + * Sun Jun 07 2009 Mattias Ellert - 4.7-3 - Update to official Fedora Globus packaging guidelines From mtasaka at fedoraproject.org Sat Jul 25 07:42:34 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 07:42:34 +0000 (UTC) Subject: rpms/ruby-taglib/devel ruby-taglib.spec,1.2,1.3 Message-ID: <20090725074234.A12C211C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-taglib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10998 Modified Files: ruby-taglib.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1.1-3 - F-12: Mass rebuild Index: ruby-taglib.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-taglib/devel/ruby-taglib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ruby-taglib.spec 24 Feb 2009 13:57:30 -0000 1.2 +++ ruby-taglib.spec 25 Jul 2009 07:42:34 -0000 1.3 @@ -3,7 +3,7 @@ Name: ruby-taglib Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ruby library wrapping the Taglib library Group: Development/Languages @@ -56,6 +56,9 @@ ruby setup.rb install \ %{ruby_sitelib}/taglib.rb %changelog +* Sat Jul 25 2009 Mamoru Tasaka - 1.1-3 +- F-12: Mass rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.1-2 - %%global-ize "nested" macro From ellert at fedoraproject.org Sat Jul 25 07:42:39 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:39 +0000 (UTC) Subject: rpms/globus-rsl/devel globus-rsl.spec,1.3,1.4 Message-ID: <20090725074239.7A2C711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11044 Modified Files: globus-rsl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.0-5 - Add instruction set architecture (isa) tags Index: globus-rsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl/devel/globus-rsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-rsl.spec 15 Jun 2009 20:43:00 -0000 1.3 +++ globus-rsl.spec 25 Jul 2009 07:42:39 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-rsl %global _name %(tr - _ <<< %{name}) Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Resource Specification Language Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Resource Specification Language Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.0-5 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 5.0-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:47 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:47 +0000 (UTC) Subject: rpms/globus-rsl/F-11 globus-rsl.spec,1.3,1.4 Message-ID: <20090725074247.AC0B811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11155 Modified Files: globus-rsl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.0-5 - Add instruction set architecture (isa) tags Index: globus-rsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl/F-11/globus-rsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-rsl.spec 15 Jun 2009 20:46:19 -0000 1.3 +++ globus-rsl.spec 25 Jul 2009 07:42:47 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-rsl %global _name %(tr - _ <<< %{name}) Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Resource Specification Language Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Resource Specification Language Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.0-5 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 5.0-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:42:55 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:42:55 +0000 (UTC) Subject: rpms/globus-rsl/F-10 globus-rsl.spec,1.3,1.4 Message-ID: <20090725074255.8821411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11209 Modified Files: globus-rsl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.0-5 - Add instruction set architecture (isa) tags Index: globus-rsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl/F-10/globus-rsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-rsl.spec 15 Jun 2009 20:45:14 -0000 1.3 +++ globus-rsl.spec 25 Jul 2009 07:42:55 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-rsl %global _name %(tr - _ <<< %{name}) Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Resource Specification Language Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Resource Specification Language Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.0-5 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 5.0-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:03 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:03 +0000 (UTC) Subject: rpms/globus-rsl/EL-5 globus-rsl.spec,1.3,1.4 Message-ID: <20090725074303.B70CD11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11277 Modified Files: globus-rsl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.0-5 - Add instruction set architecture (isa) tags Index: globus-rsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl/EL-5/globus-rsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-rsl.spec 15 Jun 2009 20:48:28 -0000 1.3 +++ globus-rsl.spec 25 Jul 2009 07:43:03 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-rsl %global _name %(tr - _ <<< %{name}) Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Resource Specification Language Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Resource Specification Language Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.0-5 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 5.0-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:11 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:11 +0000 (UTC) Subject: rpms/globus-rsl/EL-4 globus-rsl.spec,1.3,1.4 Message-ID: <20090725074311.9AD2D11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11333 Modified Files: globus-rsl.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 5.0-5 - Add instruction set architecture (isa) tags Index: globus-rsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl/EL-4/globus-rsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-rsl.spec 15 Jun 2009 20:47:23 -0000 1.3 +++ globus-rsl.spec 25 Jul 2009 07:43:11 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-rsl %global _name %(tr - _ <<< %{name}) Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Resource Specification Language Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Resource Specification Language Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 3 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 5.0-5 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 5.0-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:19 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:19 +0000 (UTC) Subject: rpms/globus-rsl-assist/devel globus-rsl-assist.spec,1.2,1.3 Message-ID: <20090725074319.F037A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11402 Modified Files: globus-rsl-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.1-3 - Add instruction set architecture (isa) tags Index: globus-rsl-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl-assist/devel/globus-rsl-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rsl-assist.spec 15 Jun 2009 20:50:15 -0000 1.2 +++ globus-rsl-assist.spec 25 Jul 2009 07:43:19 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rsl-assist %global _name %(tr - _ <<< %{name}) Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - RSL Manipulation Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rsl-devel >= 2 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rsl-devel%{?_isa} >= 2 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - RSL Manipulation Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-rsl-devel >= 2 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-rsl-devel%{?_isa} >= 2 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.1-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 2.1-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:28 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:28 +0000 (UTC) Subject: rpms/globus-rsl-assist/F-11 globus-rsl-assist.spec,1.2,1.3 Message-ID: <20090725074328.5967511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11465 Modified Files: globus-rsl-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.1-3 - Add instruction set architecture (isa) tags Index: globus-rsl-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl-assist/F-11/globus-rsl-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rsl-assist.spec 15 Jun 2009 20:53:35 -0000 1.2 +++ globus-rsl-assist.spec 25 Jul 2009 07:43:28 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rsl-assist %global _name %(tr - _ <<< %{name}) Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - RSL Manipulation Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rsl-devel >= 2 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rsl-devel%{?_isa} >= 2 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - RSL Manipulation Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-rsl-devel >= 2 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-rsl-devel%{?_isa} >= 2 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.1-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 2.1-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:36 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:36 +0000 (UTC) Subject: rpms/globus-rsl-assist/F-10 globus-rsl-assist.spec,1.2,1.3 Message-ID: <20090725074336.C19D711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11521 Modified Files: globus-rsl-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.1-3 - Add instruction set architecture (isa) tags Index: globus-rsl-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl-assist/F-10/globus-rsl-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rsl-assist.spec 15 Jun 2009 20:52:24 -0000 1.2 +++ globus-rsl-assist.spec 25 Jul 2009 07:43:36 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rsl-assist %global _name %(tr - _ <<< %{name}) Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - RSL Manipulation Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rsl-devel >= 2 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rsl-devel%{?_isa} >= 2 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - RSL Manipulation Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-rsl-devel >= 2 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-rsl-devel%{?_isa} >= 2 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.1-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 2.1-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:45 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:45 +0000 (UTC) Subject: rpms/globus-rsl-assist/EL-5 globus-rsl-assist.spec,1.2,1.3 Message-ID: <20090725074345.38DD211C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11572 Modified Files: globus-rsl-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.1-3 - Add instruction set architecture (isa) tags Index: globus-rsl-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl-assist/EL-5/globus-rsl-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rsl-assist.spec 15 Jun 2009 20:55:43 -0000 1.2 +++ globus-rsl-assist.spec 25 Jul 2009 07:43:44 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rsl-assist %global _name %(tr - _ <<< %{name}) Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - RSL Manipulation Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rsl-devel >= 2 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rsl-devel%{?_isa} >= 2 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - RSL Manipulation Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-rsl-devel >= 2 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-rsl-devel%{?_isa} >= 2 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.1-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 2.1-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:43:53 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:43:53 +0000 (UTC) Subject: rpms/globus-rsl-assist/EL-4 globus-rsl-assist.spec,1.2,1.3 Message-ID: <20090725074353.BFF3311C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-rsl-assist/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11627 Modified Files: globus-rsl-assist.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.1-3 - Add instruction set architecture (isa) tags Index: globus-rsl-assist.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-rsl-assist/EL-4/globus-rsl-assist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-rsl-assist.spec 15 Jun 2009 20:54:39 -0000 1.2 +++ globus-rsl-assist.spec 25 Jul 2009 07:43:53 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-rsl-assist %global _name %(tr - _ <<< %{name}) Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - RSL Manipulation Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-rsl-devel >= 2 -BuildRequires: globus-core >= 4 +BuildRequires: globus-rsl-devel%{?_isa} >= 2 +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - RSL Manipulation Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-rsl-devel >= 2 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-rsl-devel%{?_isa} >= 2 +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.1-3 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 2.1-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:02 +0000 (UTC) Subject: rpms/globus-usage/devel globus-usage.spec,1.3,1.4 Message-ID: <20090725074402.514C411C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11694 Modified Files: globus-usage.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.0-4 - Add instruction set architecture (isa) tags Index: globus-usage.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-usage/devel/globus-usage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-usage.spec 15 Jun 2009 20:58:53 -0000 1.3 +++ globus-usage.spec 25 Jul 2009 07:44:02 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-usage %global _name %(tr - _ <<< %{name}) Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Usage Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Usage Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.0-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 1.0-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:10 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:10 +0000 (UTC) Subject: rpms/globus-usage/F-11 globus-usage.spec,1.3,1.4 Message-ID: <20090725074410.E036A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11756 Modified Files: globus-usage.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.0-4 - Add instruction set architecture (isa) tags Index: globus-usage.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-usage/F-11/globus-usage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-usage.spec 15 Jun 2009 21:02:11 -0000 1.3 +++ globus-usage.spec 25 Jul 2009 07:44:10 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-usage %global _name %(tr - _ <<< %{name}) Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Usage Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Usage Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.0-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 1.0-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:19 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:19 +0000 (UTC) Subject: rpms/globus-usage/F-10 globus-usage.spec,1.3,1.4 Message-ID: <20090725074419.75E3811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11842 Modified Files: globus-usage.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.0-4 - Add instruction set architecture (isa) tags Index: globus-usage.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-usage/F-10/globus-usage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-usage.spec 15 Jun 2009 21:01:05 -0000 1.3 +++ globus-usage.spec 25 Jul 2009 07:44:19 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-usage %global _name %(tr - _ <<< %{name}) Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Usage Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Usage Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.0-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 1.0-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:20 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:20 +0000 (UTC) Subject: rpms/globus-xio/EL-4 globus-xio.spec,1.3,1.4 Message-ID: <20090725074520.4492E11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12348 Modified Files: globus-xio.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio/EL-4/globus-xio.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-xio.spec 15 Jun 2009 17:59:06 -0000 1.3 +++ globus-xio.spec 25 Jul 2009 07:45:19 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-xio %global _name %(tr - _ <<< %{name}) Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus XIO Framework Group: System Environment/Libraries @@ -42,34 +42,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO Framework Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO Framework Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.7-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:28 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:28 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/devel globus-xio-gsi-driver.spec, 1.2, 1.3 Message-ID: <20090725074528.CEB7011C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12405 Modified Files: globus-xio-gsi-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio-gsi-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-gsi-driver/devel/globus-xio-gsi-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-gsi-driver.spec 15 Jun 2009 18:27:55 -0000 1.2 +++ globus-xio-gsi-driver.spec 25 Jul 2009 07:45:28 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-gsi-driver %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus XIO GSI Driver Group: System Environment/Libraries @@ -36,39 +36,38 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gssapi-error-devel >= 2 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 +BuildRequires: globus-gssapi-error-devel%{?_isa} >= 2 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 BuildRequires: globus-xio-doc BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO GSI Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gssapi-error-devel >= 2 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-gssapi-gsi-devel >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gssapi-error-devel%{?_isa} >= 2 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO GSI Driver Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -209,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:37 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:37 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/F-11 globus-xio-gsi-driver.spec,1.2,1.3 Message-ID: <20090725074537.39A3711C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12456 Modified Files: globus-xio-gsi-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio-gsi-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-gsi-driver/F-11/globus-xio-gsi-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-gsi-driver.spec 15 Jun 2009 18:31:21 -0000 1.2 +++ globus-xio-gsi-driver.spec 25 Jul 2009 07:45:36 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-gsi-driver %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus XIO GSI Driver Group: System Environment/Libraries @@ -36,39 +36,38 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gssapi-error-devel >= 2 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 +BuildRequires: globus-gssapi-error-devel%{?_isa} >= 2 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 BuildRequires: globus-xio-doc BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO GSI Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gssapi-error-devel >= 2 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-gssapi-gsi-devel >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gssapi-error-devel%{?_isa} >= 2 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO GSI Driver Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -209,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:27 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:27 +0000 (UTC) Subject: rpms/globus-usage/EL-5 globus-usage.spec,1.3,1.4 Message-ID: <20090725074427.D2CEA11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11908 Modified Files: globus-usage.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.0-4 - Add instruction set architecture (isa) tags Index: globus-usage.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-usage/EL-5/globus-usage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-usage.spec 15 Jun 2009 21:04:15 -0000 1.3 +++ globus-usage.spec 25 Jul 2009 07:44:27 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-usage %global _name %(tr - _ <<< %{name}) Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Usage Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Usage Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.0-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 1.0-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:36 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:36 +0000 (UTC) Subject: rpms/globus-usage/EL-4 globus-usage.spec,1.3,1.4 Message-ID: <20090725074436.1A71B11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-usage/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11972 Modified Files: globus-usage.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.0-4 - Add instruction set architecture (isa) tags Index: globus-usage.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-usage/EL-4/globus-usage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-usage.spec 15 Jun 2009 21:03:13 -0000 1.3 +++ globus-usage.spec 25 Jul 2009 07:44:35 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-usage %global _name %(tr - _ <<< %{name}) Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Usage Library Group: System Environment/Libraries @@ -24,15 +24,15 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel -BuildRequires: globus-core >= 4 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-core%{?_isa} >= 4 %package devel Summary: Globus Toolkit - Usage Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} +Requires: globus-core%{?_isa} >= 4 %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.0-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 1.0-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:44 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:44 +0000 (UTC) Subject: rpms/globus-xio/devel globus-xio.spec,1.3,1.4 Message-ID: <20090725074444.E110511C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12040 Modified Files: globus-xio.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio/devel/globus-xio.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-xio.spec 15 Jun 2009 17:54:02 -0000 1.3 +++ globus-xio.spec 25 Jul 2009 07:44:44 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-xio %global _name %(tr - _ <<< %{name}) Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus XIO Framework Group: System Environment/Libraries @@ -42,34 +42,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO Framework Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO Framework Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.7-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:44:54 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:44:54 +0000 (UTC) Subject: rpms/globus-xio/F-11 globus-xio.spec,1.3,1.4 Message-ID: <20090725074454.1977B11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12142 Modified Files: globus-xio.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio/F-11/globus-xio.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-xio.spec 15 Jun 2009 17:57:51 -0000 1.3 +++ globus-xio.spec 25 Jul 2009 07:44:53 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-xio %global _name %(tr - _ <<< %{name}) Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus XIO Framework Group: System Environment/Libraries @@ -42,34 +42,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO Framework Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO Framework Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.7-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:02 +0000 (UTC) Subject: rpms/globus-xio/F-10 globus-xio.spec,1.3,1.4 Message-ID: <20090725074502.BA22F11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12218 Modified Files: globus-xio.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio/F-10/globus-xio.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-xio.spec 15 Jun 2009 17:56:37 -0000 1.3 +++ globus-xio.spec 25 Jul 2009 07:45:02 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-xio %global _name %(tr - _ <<< %{name}) Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus XIO Framework Group: System Environment/Libraries @@ -42,34 +42,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO Framework Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO Framework Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.7-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:10 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:10 +0000 (UTC) Subject: rpms/globus-xio/EL-5 globus-xio.spec,1.3,1.4 Message-ID: <20090725074510.DD1C111C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12275 Modified Files: globus-xio.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 2.7-5 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio/EL-5/globus-xio.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- globus-xio.spec 15 Jun 2009 18:00:26 -0000 1.3 +++ globus-xio.spec 25 Jul 2009 07:45:10 -0000 1.4 @@ -7,7 +7,7 @@ Name: globus-xio %global _name %(tr - _ <<< %{name}) Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Globus Toolkit - Globus XIO Framework Group: System Environment/Libraries @@ -42,34 +42,33 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-common-devel >= 4 -BuildRequires: globus-core >= 4 +BuildRequires: globus-common-devel%{?_isa} >= 4 +BuildRequires: globus-core%{?_isa} >= 4 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO Framework Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-common-devel >= 4 -Requires: globus-core >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-common-devel%{?_isa} >= 4 +Requires: globus-core%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO Framework Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -215,6 +214,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 2.7-5 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 2.7-4 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:45 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:45 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/F-10 globus-xio-gsi-driver.spec,1.2,1.3 Message-ID: <20090725074545.90F5611C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12520 Modified Files: globus-xio-gsi-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio-gsi-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-gsi-driver/F-10/globus-xio-gsi-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-gsi-driver.spec 15 Jun 2009 18:30:05 -0000 1.2 +++ globus-xio-gsi-driver.spec 25 Jul 2009 07:45:45 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-gsi-driver %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus XIO GSI Driver Group: System Environment/Libraries @@ -36,39 +36,38 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gssapi-error-devel >= 2 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 +BuildRequires: globus-gssapi-error-devel%{?_isa} >= 2 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 BuildRequires: globus-xio-doc BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO GSI Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gssapi-error-devel >= 2 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-gssapi-gsi-devel >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gssapi-error-devel%{?_isa} >= 2 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO GSI Driver Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -209,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:45:54 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:45:54 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/EL-5 globus-xio-gsi-driver.spec,1.2,1.3 Message-ID: <20090725074554.2A65A11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12584 Modified Files: globus-xio-gsi-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio-gsi-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-gsi-driver/EL-5/globus-xio-gsi-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-gsi-driver.spec 15 Jun 2009 18:33:34 -0000 1.2 +++ globus-xio-gsi-driver.spec 25 Jul 2009 07:45:53 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-gsi-driver %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus XIO GSI Driver Group: System Environment/Libraries @@ -36,39 +36,38 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gssapi-error-devel >= 2 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 +BuildRequires: globus-gssapi-error-devel%{?_isa} >= 2 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 BuildRequires: globus-xio-doc BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO GSI Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gssapi-error-devel >= 2 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-gssapi-gsi-devel >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gssapi-error-devel%{?_isa} >= 2 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO GSI Driver Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -209,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:02 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:02 +0000 (UTC) Subject: rpms/globus-xio-gsi-driver/EL-4 globus-xio-gsi-driver.spec,1.2,1.3 Message-ID: <20090725074602.7D9BB11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-gsi-driver/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12702 Modified Files: globus-xio-gsi-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.6-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-xio-gsi-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-gsi-driver/EL-4/globus-xio-gsi-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-gsi-driver.spec 15 Jun 2009 18:32:41 -0000 1.2 +++ globus-xio-gsi-driver.spec 25 Jul 2009 07:46:02 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-gsi-driver %global _name %(tr - _ <<< %{name}) Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus XIO GSI Driver Group: System Environment/Libraries @@ -36,39 +36,38 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-gssapi-error-devel >= 2 -BuildRequires: globus-gss-assist-devel >= 3 -BuildRequires: globus-xio-devel -BuildRequires: globus-gssapi-gsi-devel >= 4 +BuildRequires: globus-gssapi-error-devel%{?_isa} >= 2 +BuildRequires: globus-gss-assist-devel%{?_isa} >= 3 +BuildRequires: globus-xio-devel%{?_isa} +BuildRequires: globus-gssapi-gsi-devel%{?_isa} >= 4 BuildRequires: globus-xio-doc BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus XIO GSI Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gssapi-error-devel >= 2 -Requires: globus-gss-assist-devel >= 3 -Requires: globus-xio-devel -Requires: globus-gssapi-gsi-devel >= 4 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gssapi-error-devel%{?_isa} >= 2 +Requires: globus-gss-assist-devel%{?_isa} >= 3 +Requires: globus-xio-devel%{?_isa} +Requires: globus-gssapi-gsi-devel%{?_isa} >= 4 %package doc Summary: Globus Toolkit - Globus XIO GSI Driver Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -209,6 +208,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.6-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Thu Jun 04 2009 Mattias Ellert - 0.6-2 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:10 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:10 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/devel globus-xio-popen-driver.spec, 1.2, 1.3 Message-ID: <20090725074610.B02DE11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12758 Modified Files: globus-xio-popen-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.2-4 - Add instruction set architecture (isa) tags Index: globus-xio-popen-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-popen-driver/devel/globus-xio-popen-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-popen-driver.spec 15 Jun 2009 18:44:44 -0000 1.2 +++ globus-xio-popen-driver.spec 25 Jul 2009 07:46:10 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-popen-driver %global _name %(tr - _ <<< %{name}) Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus XIO Pipe Open Driver Group: System Environment/Libraries @@ -33,13 +33,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel +BuildRequires: globus-xio-devel%{?_isa} %package devel Summary: Globus Toolkit - Globus XIO Pipe Open Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.2-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 0.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:19 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:19 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/F-11 globus-xio-popen-driver.spec, 1.2, 1.3 Message-ID: <20090725074619.02A7E11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12828 Modified Files: globus-xio-popen-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.2-4 - Add instruction set architecture (isa) tags Index: globus-xio-popen-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-popen-driver/F-11/globus-xio-popen-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-popen-driver.spec 15 Jun 2009 18:48:14 -0000 1.2 +++ globus-xio-popen-driver.spec 25 Jul 2009 07:46:18 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-popen-driver %global _name %(tr - _ <<< %{name}) Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus XIO Pipe Open Driver Group: System Environment/Libraries @@ -33,13 +33,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel +BuildRequires: globus-xio-devel%{?_isa} %package devel Summary: Globus Toolkit - Globus XIO Pipe Open Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.2-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 0.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:27 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:27 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/F-10 globus-xio-popen-driver.spec, 1.2, 1.3 Message-ID: <20090725074627.724F811C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12889 Modified Files: globus-xio-popen-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.2-4 - Add instruction set architecture (isa) tags Index: globus-xio-popen-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-popen-driver/F-10/globus-xio-popen-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-popen-driver.spec 15 Jun 2009 18:47:06 -0000 1.2 +++ globus-xio-popen-driver.spec 25 Jul 2009 07:46:27 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-popen-driver %global _name %(tr - _ <<< %{name}) Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus XIO Pipe Open Driver Group: System Environment/Libraries @@ -33,13 +33,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel +BuildRequires: globus-xio-devel%{?_isa} %package devel Summary: Globus Toolkit - Globus XIO Pipe Open Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.2-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 0.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:35 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:35 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/EL-5 globus-xio-popen-driver.spec, 1.2, 1.3 Message-ID: <20090725074635.BD38911C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12951 Modified Files: globus-xio-popen-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.2-4 - Add instruction set architecture (isa) tags Index: globus-xio-popen-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-popen-driver/EL-5/globus-xio-popen-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-popen-driver.spec 15 Jun 2009 18:50:36 -0000 1.2 +++ globus-xio-popen-driver.spec 25 Jul 2009 07:46:35 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-popen-driver %global _name %(tr - _ <<< %{name}) Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus XIO Pipe Open Driver Group: System Environment/Libraries @@ -33,13 +33,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel +BuildRequires: globus-xio-devel%{?_isa} %package devel Summary: Globus Toolkit - Globus XIO Pipe Open Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.2-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 0.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:46:44 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:46:44 +0000 (UTC) Subject: rpms/globus-xio-popen-driver/EL-4 globus-xio-popen-driver.spec, 1.2, 1.3 Message-ID: <20090725074644.15C3B11C02BC@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-xio-popen-driver/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13003 Modified Files: globus-xio-popen-driver.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 0.2-4 - Add instruction set architecture (isa) tags Index: globus-xio-popen-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-xio-popen-driver/EL-4/globus-xio-popen-driver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-xio-popen-driver.spec 15 Jun 2009 18:49:25 -0000 1.2 +++ globus-xio-popen-driver.spec 25 Jul 2009 07:46:43 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-xio-popen-driver %global _name %(tr - _ <<< %{name}) Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Globus Toolkit - Globus XIO Pipe Open Driver Group: System Environment/Libraries @@ -33,13 +33,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version Requires: globus-common BuildRequires: grid-packaging-tools -BuildRequires: globus-xio-devel +BuildRequires: globus-xio-devel%{?_isa} %package devel Summary: Globus Toolkit - Globus XIO Pipe Open Driver Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-xio-devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-xio-devel%{?_isa} %description The Globus Toolkit is an open source software toolkit used for building Grid @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Jul 23 2009 Mattias Ellert - 0.2-4 +- Add instruction set architecture (isa) tags + * Thu Jun 04 2009 Mattias Ellert - 0.2-3 - Update to official Fedora Globus packaging guidelines From ellert at fedoraproject.org Sat Jul 25 07:30:33 2009 From: ellert at fedoraproject.org (Mattias Ellert) Date: Sat, 25 Jul 2009 07:30:33 +0000 (UTC) Subject: rpms/globus-gsi-callback/F-11 globus-gsi-callback.spec,1.2,1.3 Message-ID: <20090725073033.115EB11C02C8@cvs1.fedora.phx.redhat.com> Author: ellert Update of /cvs/pkgs/rpms/globus-gsi-callback/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5406 Modified Files: globus-gsi-callback.spec Log Message: * Thu Jul 23 2009 Mattias Ellert - 1.10-3 - Add instruction set architecture (isa) tags - Make doc subpackage noarch Index: globus-gsi-callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/globus-gsi-callback/F-11/globus-gsi-callback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- globus-gsi-callback.spec 15 Jun 2009 16:57:49 -0000 1.2 +++ globus-gsi-callback.spec 25 Jul 2009 07:30:32 -0000 1.3 @@ -7,7 +7,7 @@ Name: globus-gsi-callback %global _name %(tr - _ <<< %{name}) Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Globus Toolkit - Globus GSI Callback Library Group: System Environment/Libraries @@ -28,48 +28,47 @@ Source9: epstopdf-2.9.5gw Patch0: %{name}-ltlib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: globus-openssl >= 1 +Requires: globus-openssl%{?_isa} >= 1 BuildRequires: grid-packaging-tools -BuildRequires: globus-gsi-proxy-ssl-devel >= 1 -BuildRequires: globus-openssl-module-devel -BuildRequires: globus-gsi-openssl-error-devel -BuildRequires: globus-openssl-devel >= 1 -BuildRequires: globus-core >= 4 -BuildRequires: globus-gsi-cert-utils-devel >= 2 -BuildRequires: globus-common-devel >= 3 -BuildRequires: globus-gsi-sysconfig-devel >= 1 +BuildRequires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +BuildRequires: globus-openssl-module-devel%{?_isa} +BuildRequires: globus-gsi-openssl-error-devel%{?_isa} +BuildRequires: globus-openssl-devel%{?_isa} >= 1 +BuildRequires: globus-core%{?_isa} >= 4 +BuildRequires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +BuildRequires: globus-common-devel%{?_isa} >= 3 +BuildRequires: globus-gsi-sysconfig-devel%{?_isa} >= 1 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: ghostscript %if "%{?rhel}" == "5" BuildRequires: graphviz-gd %endif -%if %{?fedora}%{!?fedora:0} >= 9 -BuildRequires: tex(latex) -%else -%if %{?rhel}%{!?rhel:0} >= 6 +BuildRequires: ghostscript +%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6 BuildRequires: tex(latex) %else BuildRequires: tetex-latex %endif -%endif %package devel Summary: Globus Toolkit - Globus GSI Callback Library Development Files Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: globus-gsi-proxy-ssl-devel >= 1 -Requires: globus-openssl-module-devel -Requires: globus-gsi-openssl-error-devel -Requires: globus-openssl-devel >= 1 -Requires: globus-core >= 4 -Requires: globus-gsi-cert-utils-devel >= 2 -Requires: globus-common-devel >= 3 -Requires: globus-gsi-sysconfig-devel >= 1 +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: globus-gsi-proxy-ssl-devel%{?_isa} >= 1 +Requires: globus-openssl-module-devel%{?_isa} +Requires: globus-gsi-openssl-error-devel%{?_isa} +Requires: globus-openssl-devel%{?_isa} >= 1 +Requires: globus-core%{?_isa} >= 4 +Requires: globus-gsi-cert-utils-devel%{?_isa} >= 2 +Requires: globus-common-devel%{?_isa} >= 3 +Requires: globus-gsi-sysconfig-devel%{?_isa} >= 1 %package doc Summary: Globus Toolkit - Globus GSI Callback Library Documentation Files Group: Documentation +%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6 +BuildArch: noarch +%endif Requires: %{name} = %{version}-%{release} %description @@ -207,6 +206,10 @@ rm -rf $RPM_BUILD_ROOT %dir %{_docdir}/%{name}-%{version}/html %changelog +* Thu Jul 23 2009 Mattias Ellert - 1.10-3 +- Add instruction set architecture (isa) tags +- Make doc subpackage noarch + * Wed Jun 03 2009 Mattias Ellert - 1.10-2 - Update to official Fedora Globus packaging guidelines From sailer at fedoraproject.org Sat Jul 25 08:03:40 2009 From: sailer at fedoraproject.org (sailer) Date: Sat, 25 Jul 2009 08:03:40 +0000 (UTC) Subject: rpms/mingw32-qt/F-11 .cvsignore, 1.3, 1.4 mingw32-qt.spec, 1.5, 1.6 qt-win-configure.patch, 1.1, 1.2 qt-win-configure.sh, 1.1, 1.2 sources, 1.3, 1.4 Message-ID: <20090725080340.3156B11C02BC@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/extras/rpms/mingw32-qt/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21060 Modified Files: .cvsignore mingw32-qt.spec qt-win-configure.patch qt-win-configure.sh sources Log Message: update to 4.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 16 Jun 2009 12:54:11 -0000 1.3 +++ .cvsignore 25 Jul 2009 08:03:39 -0000 1.4 @@ -1 +1,2 @@ qt-win-opensource-src-4.5.1.zip +qt-win-opensource-src-4.5.2.zip Index: mingw32-qt.spec =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt/F-11/mingw32-qt.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-qt.spec 16 Jun 2009 14:03:18 -0000 1.5 +++ mingw32-qt.spec 25 Jul 2009 08:03:39 -0000 1.6 @@ -16,8 +16,8 @@ %global subdirs src/corelib src/network src/xml src/xmlpatterns src/gui src/winmain src/svg src/sql src/qt3support src/opengl src/script src/scripttools Name: mingw32-qt -Version: 4.5.1 -Release: 2%{?dist} +Version: 4.5.2 +Release: 1%{?dist} Summary: Qt for Windows License: GPLv3 with exceptions or LGPLv2 with exceptions @@ -85,7 +85,7 @@ Fedora Windows cross-compiler. %patch11 -p1 -for f in LICENSE.GPL3 LICENSE.LGPL LGPL_EXCEPTION.txt KNOWN.ISSUES README; do +for f in LICENSE.GPL3 LICENSE.LGPL LGPL_EXCEPTION.txt README; do dos2unix --keepdate $f done @@ -163,8 +163,8 @@ mv $RPM_BUILD_ROOT%{_includedir}/* $RPM_ mkdir -p $RPM_BUILD_ROOT%{_mingw32_bindir} mkdir -p $RPM_BUILD_ROOT%{_mingw32_libdir} mv $RPM_BUILD_ROOT%{_libdir}/qt4/bin/*.dll $RPM_BUILD_ROOT%{_mingw32_bindir} -mv $RPM_BUILD_ROOT%{_libdir}/*.dll $RPM_BUILD_ROOT%{_mingw32_bindir} -mv $RPM_BUILD_ROOT%{_libdir}/*.a $RPM_BUILD_ROOT%{_mingw32_libdir} +mv $RPM_BUILD_ROOT/usr/lib*/*.dll $RPM_BUILD_ROOT%{_mingw32_bindir} +mv $RPM_BUILD_ROOT/usr/lib*/*.a $RPM_BUILD_ROOT%{_mingw32_libdir} rm -rf $RPM_BUILD_ROOT%{_libdir}/qt4/bin rm $RPM_BUILD_ROOT%{_libdir}/*.prl @@ -176,7 +176,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc configure.output -%doc LICENSE.GPL3 LICENSE.LGPL LGPL_EXCEPTION.txt KNOWN.ISSUES README +%doc LICENSE.GPL3 LICENSE.LGPL LGPL_EXCEPTION.txt README %{_mingw32_bindir}/Qt3Support4.dll %{_mingw32_bindir}/Qt3Supportd4.dll %{_mingw32_bindir}/QtCore4.dll @@ -238,6 +238,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Thomas Sailer - 4.5.2-1 +- update to 4.5.2 + * Tue Jun 16 2009 Thomas Sailer - 4.5.1-2 - fix building on 64bit builders qt-win-configure.patch: .qmake.cache | 20 +++++ configure.cache | 30 +++++++ configure.output | 125 +++++++++++++++++++++++++++++++ include/Qt/qconfig.h | 1 include/QtCore/qconfig.h | 1 mkspecs/default/qmake.conf | 113 ++++++++++++++++++++++++++++ mkspecs/default/qplatformdefs.h | 160 ++++++++++++++++++++++++++++++++++++++++ mkspecs/qconfig.pri | 11 ++ src/corelib/global/qconfig.cpp | 27 ++++++ src/corelib/global/qconfig.h | 102 +++++++++++++++++++++++++ 10 files changed, 590 insertions(+) Index: qt-win-configure.patch =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt/F-11/qt-win-configure.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qt-win-configure.patch 16 Mar 2009 02:25:38 -0000 1.1 +++ qt-win-configure.patch 25 Jul 2009 08:03:39 -0000 1.2 @@ -1,6 +1,6 @@ -diff -urN qt-win-opensource-src-4.5.0.orig/configure.cache qt-win-opensource-src-4.5.0/configure.cache ---- qt-win-opensource-src-4.5.0.orig/configure.cache 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/configure.cache 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/configure.cache qt-win-opensource-src-4.5.2/configure.cache +--- qt-win-opensource-src-4.5.2.orig/configure.cache 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/configure.cache 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1,30 @@ +-platform +fedora-win32-cross @@ -32,28 +32,13 @@ diff -urN qt-win-opensource-src-4.5.0.or +-no-sse2 +-release +-shared -diff -urN qt-win-opensource-src-4.5.0.orig/configure.output qt-win-opensource-src-4.5.0/configure.output ---- qt-win-opensource-src-4.5.0.orig/configure.output 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/configure.output 2009-03-11 21:28:03.000000000 +0100 -@@ -0,0 +1,154 @@ -+err:wineboot:ProcessRunKeys Error running cmd #2 (2) -+err:wineboot:ProcessRunKeys Error running cmd #0 (2) -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"redbook" - skipping -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"sbemul" - skipping -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"swmidi" - skipping -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"UPDATE" - skipping -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"wdmaud" - skipping -+err:service:load_reg_dword Error 1804 while reading value L"Type" -+err:service:scmdatabase_load_services Error 1804 reading registry key for service L"WDMFS" - skipping -+err:winedevice:ServiceMain driver L"VIAPFD" failed to load -+No protocol specified -+No protocol specified -+No protocol specified +diff -urN qt-win-opensource-src-4.5.2.orig/configure.output qt-win-opensource-src-4.5.2/configure.output +--- qt-win-opensource-src-4.5.2.orig/configure.output 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/configure.output 2009-06-26 17:14:45.000000000 +0200 +@@ -0,0 +1,125 @@ ++Which edition of Qt do you want to use ? ++Type 'c' if you want to use the Commercial Edition. ++Type 'o' if you want to use the Open Source Edition. + +This is the Qt for Windows Open Source Edition. + @@ -73,18 +58,12 @@ diff -urN qt-win-opensource-src-4.5.0.or + LIB= + Unset + PATH= -+ c:\windows -+ c:\windows\system -+ s:\ -+ s:\test -+ f:\ -+ s:\xilinx\bin\nt -+ s:\modelsim\win32 -+ s:\fujitsu16\bin -+ s:\fujitsu16\flash510 -+You are licensed to use this software under the terms of the GNU LGPL version 2.1 or the GNU GPL version 3. -+See J:/rpmbuild/SOURCES/qt-win-opensource-src-4.5.0/LICENSE.LGPL -+ or J:/rpmbuild/SOURCES/qt-win-opensource-src-4.5.0/LICENSE.GPL3 ++ C:\windows\system32 ++ C:\windows ++You are licensed to use this software under the terms of the GNU GPL version 3.You are licensed to use this software under the terms of the Lesser GNU LGPL version 2.1. ++See H:/src/fedora-extras/rpms/mingw32-qt/devel/qt-win-opensource-src-4.5.23 ++ ++ or H:/src/fedora-extras/rpms/mingw32-qt/devel/qt-win-opensource-src-4.5.2L + +Configuration: + dist-config @@ -115,6 +94,7 @@ diff -urN qt-win-opensource-src-4.5.0.or +Architecture................windows +Maketool....................make +Debug symbols...............no ++Link Time Code Generation...no +Accessibility support.......yes +STL support.................yes +Exception support...........yes @@ -165,8 +145,8 @@ diff -urN qt-win-opensource-src-4.5.0.or + SQLite2.................no + InterBase...............no + -+Sources are in..............J:\rpmbuild\SOURCES\qt-win-opensource-src-4.5.0 -+Build is done in............J:\rpmbuild\SOURCES\qt-win-opensource-src-4.5.0 ++Sources are in..............H:\src\fedora-extras\rpms\mingw32-qt\devel\qt-win-opensource-src-4.5.2 ++Build is done in............H:\src\fedora-extras\rpms\mingw32-qt\devel\qt-win-opensource-src-4.5.2 +Install prefix............../usr/i686-pc-mingw32/sys-root/mingw +Headers installed to......../usr/i686-pc-mingw32/sys-root/mingw/include +Libraries installed to....../usr/i686-pc-mingw32/sys-root/mingw/lib @@ -181,29 +161,20 @@ diff -urN qt-win-opensource-src-4.5.0.or +Processing of project files have been disabled. +Only use this option if you really know what you're doing. + -+No protocol specified -+No protocol specified -+Application tried to create a window, but no driver could be loaded. -+Make sure that your X server is running and that $DISPLAY is set correctly. -+Application tried to create a window, but no driver could be loaded. -+Make sure that your X server is running and that $DISPLAY is set correctly. -+fixme:powrprof:DllMain (0x60750000, 1, (nil)) not fully implemented -+err:rundll32:WinMain Unable to find the entry point L"LoadCurrentPwrScheme" in L"powrprof.dll" -+fixme:powrprof:DllMain (0x60750000, 0, (nil)) not fully implemented -diff -urN qt-win-opensource-src-4.5.0.orig/include/Qt/qconfig.h qt-win-opensource-src-4.5.0/include/Qt/qconfig.h ---- qt-win-opensource-src-4.5.0.orig/include/Qt/qconfig.h 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/include/Qt/qconfig.h 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/include/Qt/qconfig.h qt-win-opensource-src-4.5.2/include/Qt/qconfig.h +--- qt-win-opensource-src-4.5.2.orig/include/Qt/qconfig.h 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/include/Qt/qconfig.h 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1 @@ +#include "../../src/corelib/global/qconfig.h" -diff -urN qt-win-opensource-src-4.5.0.orig/include/QtCore/qconfig.h qt-win-opensource-src-4.5.0/include/QtCore/qconfig.h ---- qt-win-opensource-src-4.5.0.orig/include/QtCore/qconfig.h 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/include/QtCore/qconfig.h 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/include/QtCore/qconfig.h qt-win-opensource-src-4.5.2/include/QtCore/qconfig.h +--- qt-win-opensource-src-4.5.2.orig/include/QtCore/qconfig.h 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/include/QtCore/qconfig.h 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1 @@ +#include "../../src/corelib/global/qconfig.h" -diff -urN qt-win-opensource-src-4.5.0.orig/mkspecs/default/qmake.conf qt-win-opensource-src-4.5.0/mkspecs/default/qmake.conf ---- qt-win-opensource-src-4.5.0.orig/mkspecs/default/qmake.conf 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/mkspecs/default/qmake.conf 2009-03-11 21:28:03.000000000 +0100 -@@ -0,0 +1,109 @@ +diff -urN qt-win-opensource-src-4.5.2.orig/mkspecs/default/qmake.conf qt-win-opensource-src-4.5.2/mkspecs/default/qmake.conf +--- qt-win-opensource-src-4.5.2.orig/mkspecs/default/qmake.conf 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/mkspecs/default/qmake.conf 2009-06-26 17:14:45.000000000 +0200 +@@ -0,0 +1,113 @@ +# +# qmake configuration for fedora-win32-cross +# (Fedora Windows cross-compiler) @@ -303,19 +274,23 @@ diff -urN qt-win-opensource-src-4.5.0.or +QMAKE_UIC = uic-qt4 +QMAKE_IDC = idc + ++QMAKE_RCC = $$[QT_INSTALL_BINS]/rcc ++ +QMAKE_IDL = midl +QMAKE_LIB = i686-pc-mingw32-ar -ru +QMAKE_RC = i686-pc-mingw32-windres +QMAKE_ZIP = zip -r -9 + ++#QT_LIBINFIX = 4 ++ +QMAKE_STRIP = strip +QMAKE_STRIPFLAGS_LIB += --strip-unneeded +load(qt_config) + -+QMAKESPEC_ORIGINAL=J:/rpmbuild/SOURCES/qt-win-opensource-src-4.5.0/mkspecs/fedora-win32-cross -diff -urN qt-win-opensource-src-4.5.0.orig/mkspecs/default/qplatformdefs.h qt-win-opensource-src-4.5.0/mkspecs/default/qplatformdefs.h ---- qt-win-opensource-src-4.5.0.orig/mkspecs/default/qplatformdefs.h 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/mkspecs/default/qplatformdefs.h 2009-03-11 21:27:56.000000000 +0100 ++QMAKESPEC_ORIGINAL=H:/src/fedora-extras/rpms/mingw32-qt/devel/qt-win-opensource-src-4.5.2/mkspecs/fedora-win32-cross +diff -urN qt-win-opensource-src-4.5.2.orig/mkspecs/default/qplatformdefs.h qt-win-opensource-src-4.5.2/mkspecs/default/qplatformdefs.h +--- qt-win-opensource-src-4.5.2.orig/mkspecs/default/qplatformdefs.h 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/mkspecs/default/qplatformdefs.h 2009-06-26 17:14:41.000000000 +0200 @@ -0,0 +1,160 @@ +/**************************************************************************** +** @@ -477,24 +452,24 @@ diff -urN qt-win-opensource-src-4.5.0.or + + +#endif // QPLATFORMDEFS_H -diff -urN qt-win-opensource-src-4.5.0.orig/mkspecs/qconfig.pri qt-win-opensource-src-4.5.0/mkspecs/qconfig.pri ---- qt-win-opensource-src-4.5.0.orig/mkspecs/qconfig.pri 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/mkspecs/qconfig.pri 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/mkspecs/qconfig.pri qt-win-opensource-src-4.5.2/mkspecs/qconfig.pri +--- qt-win-opensource-src-4.5.2.orig/mkspecs/qconfig.pri 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/mkspecs/qconfig.pri 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1,11 @@ +CONFIG+= release shared stl exceptions rtti +QT_ARCH = windows +QT_EDITION = OpenSource +QT_CONFIG += release zlib png accessibility qt3support opengl ipv6 scripttools xmlpatterns svg minimal-config small-config medium-config large-config full-config +#versioning -+QT_VERSION = 4.5.0 ++QT_VERSION = 4.5.2 +QT_MAJOR_VERSION = 4 +QT_MINOR_VERSION = 5 -+QT_PATCH_VERSION = 0 ++QT_PATCH_VERSION = 2 +#Qt for Windows CE c-runtime deployment +QT_CE_C_RUNTIME = no -diff -urN qt-win-opensource-src-4.5.0.orig/.qmake.cache qt-win-opensource-src-4.5.0/.qmake.cache ---- qt-win-opensource-src-4.5.0.orig/.qmake.cache 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/.qmake.cache 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/.qmake.cache qt-win-opensource-src-4.5.2/.qmake.cache +--- qt-win-opensource-src-4.5.2.orig/.qmake.cache 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/.qmake.cache 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1,20 @@ +QMAKE_QT_VERSION_OVERRIDE = 4 +OBJECTS_DIR = tmp\obj\release_shared @@ -505,10 +480,10 @@ diff -urN qt-win-opensource-src-4.5.0.or +imageformat-plugins += gif tiff jpeg +CONFIG += dist-config large-config medium-config minimal-config small-config full-config release incremental create_prl link_prl depend_includepath QTDIR_build +QT_BUILD_PARTS = libs tools examples demos docs translations -+QMAKESPEC = J:\rpmbuild\SOURCES\qt-win-opensource-src-4.5.0\mkspecs\fedora-win32-cross ++QMAKESPEC = H:\src\fedora-extras\rpms\mingw32-qt\devel\qt-win-opensource-src-4.5.2\mkspecs\fedora-win32-cross +ARCH = windows -+QT_BUILD_TREE = J:\rpmbuild\SOURCES\qt-win-opensource-src-4.5.0 -+QT_SOURCE_TREE = J:\rpmbuild\SOURCES\qt-win-opensource-src-4.5.0 ++QT_BUILD_TREE = H:\src\fedora-extras\rpms\mingw32-qt\devel\qt-win-opensource-src-4.5.2 ++QT_SOURCE_TREE = H:\src\fedora-extras\rpms\mingw32-qt\devel\qt-win-opensource-src-4.5.2 +QMAKE_MOC = $$QT_BUILD_TREE\bin\moc.exe +QMAKE_UIC = $$QT_BUILD_TREE\bin\uic.exe +QMAKE_UIC3 = $$QT_BUILD_TREE\bin\uic3.exe @@ -516,9 +491,9 @@ diff -urN qt-win-opensource-src-4.5.0.or +QMAKE_DUMPCPP = $$QT_BUILD_TREE\bin\dumpcpp.exe +QMAKE_INCDIR_QT = $$QT_BUILD_TREE\include +QMAKE_LIBDIR_QT = $$QT_BUILD_TREE\lib -diff -urN qt-win-opensource-src-4.5.0.orig/src/corelib/global/qconfig.cpp qt-win-opensource-src-4.5.0/src/corelib/global/qconfig.cpp ---- qt-win-opensource-src-4.5.0.orig/src/corelib/global/qconfig.cpp 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/src/corelib/global/qconfig.cpp 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/src/corelib/global/qconfig.cpp qt-win-opensource-src-4.5.2/src/corelib/global/qconfig.cpp +--- qt-win-opensource-src-4.5.2.orig/src/corelib/global/qconfig.cpp 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/src/corelib/global/qconfig.cpp 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1,27 @@ +/* Licensed */ +static const char qt_configure_licensee_str [512 + 12] = "qt_lcnsuser=Open Source"; @@ -547,9 +522,9 @@ diff -urN qt-win-opensource-src-4.5.0.or +#define QT_CONFIGURE_EXAMPLES_PATH qt_configure_examples_path_str + 12; +#define QT_CONFIGURE_DEMOS_PATH qt_configure_demos_path_str + 12; + -diff -urN qt-win-opensource-src-4.5.0.orig/src/corelib/global/qconfig.h qt-win-opensource-src-4.5.0/src/corelib/global/qconfig.h ---- qt-win-opensource-src-4.5.0.orig/src/corelib/global/qconfig.h 1970-01-01 01:00:00.000000000 +0100 -+++ qt-win-opensource-src-4.5.0/src/corelib/global/qconfig.h 2009-03-11 21:28:03.000000000 +0100 +diff -urN qt-win-opensource-src-4.5.2.orig/src/corelib/global/qconfig.h qt-win-opensource-src-4.5.2/src/corelib/global/qconfig.h +--- qt-win-opensource-src-4.5.2.orig/src/corelib/global/qconfig.h 1970-01-01 01:00:00.000000000 +0100 ++++ qt-win-opensource-src-4.5.2/src/corelib/global/qconfig.h 2009-06-26 17:14:45.000000000 +0200 @@ -0,0 +1,102 @@ +/* Everything */ + Index: qt-win-configure.sh =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt/F-11/qt-win-configure.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qt-win-configure.sh 16 Mar 2009 02:25:38 -0000 1.1 +++ qt-win-configure.sh 25 Jul 2009 08:03:39 -0000 1.2 @@ -15,7 +15,7 @@ # error: #error "MMX instruction set not enabled" # . Same as above for -no-sse and -no-sse2 -version=4.5.0 +version=4.5.2 platform=fedora-win32-cross set -e @@ -41,7 +41,7 @@ cp qmake.conf qplatformdefs.h $srcdir/mk cd $srcdir -wine configure.exe \ +echo "o" | wine configure.exe \ -platform $platform \ -confirm-license \ -no-qmake \ Index: sources =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 16 Jun 2009 12:54:11 -0000 1.3 +++ sources 25 Jul 2009 08:03:39 -0000 1.4 @@ -1 +1 @@ -ef2934257c893b7694437cc8d1e37bd9 qt-win-opensource-src-4.5.1.zip +05d3d3448218acc72bd7a5bbfae9312a qt-win-opensource-src-4.5.2.zip From sailer at fedoraproject.org Sat Jul 25 08:06:56 2009 From: sailer at fedoraproject.org (sailer) Date: Sat, 25 Jul 2009 08:06:56 +0000 (UTC) Subject: rpms/mingw32-qt-qmake/F-11 mingw32-qt-qmake.spec,1.4,1.5 Message-ID: <20090725080656.655AD11C02BC@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/extras/rpms/mingw32-qt-qmake/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22213 Modified Files: mingw32-qt-qmake.spec Log Message: update to 4.5.2 to match mingw32-qt version Index: mingw32-qt-qmake.spec =================================================================== RCS file: /cvs/extras/rpms/mingw32-qt-qmake/F-11/mingw32-qt-qmake.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mingw32-qt-qmake.spec 16 Jun 2009 15:03:54 -0000 1.4 +++ mingw32-qt-qmake.spec 25 Jul 2009 08:06:56 -0000 1.5 @@ -7,7 +7,7 @@ %global debug_package %{nil} Name: mingw32-qt-qmake -Version: 4.5.1 +Version: 4.5.2 Release: 1%{?dist} Summary: Qt for Windows Build Environment @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Thomas Sailer - 4.5.2-1 +- update to 4.5.2 to match mingw32-qt version + * Tue Jun 16 2009 Thomas Sailer - 4.5.1-1 - update to match mingw32-qt version - replace %%define with %%global From kkofler at fedoraproject.org Sat Jul 25 08:07:49 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sat, 25 Jul 2009 08:07:49 +0000 (UTC) Subject: rpms/kde-settings/devel kde-settings.spec,1.76,1.77 Message-ID: <20090725080749.60A1011C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kde-settings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22537/devel Modified Files: kde-settings.spec Log Message: Poison this tag to make the incorrectly-bumped autobuild fail. Index: kde-settings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-settings/devel/kde-settings.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- kde-settings.spec 25 Jul 2009 04:24:30 -0000 1.76 +++ kde-settings.spec 25 Jul 2009 08:07:48 -0000 1.77 @@ -3,6 +3,8 @@ # The actuall tarball also DIFFERS between releases! # Use kde-settings trunk for F11+, F-10 branch of F10, F-9 branch for F9. +Error: + %define rel 20090431svn Summary: Config files for kde From kkofler at fedoraproject.org Sat Jul 25 08:16:02 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sat, 25 Jul 2009 08:16:02 +0000 (UTC) Subject: rpms/kde-settings/devel kde-settings.spec,1.77,1.78 Message-ID: <20090725081602.89E6811C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kde-settings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25447/devel Modified Files: kde-settings.spec Log Message: Bump correctly (to 4.2-11.20090430svn). Rename %{rel} to %{svndate} so the script does the right thing next time. * Sat Jul 25 2009 Kevin Kofler - 4.2-11.20090430svn - rebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - rename %%{rel} to %%{svndate} to fix automated bumps Index: kde-settings.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-settings/devel/kde-settings.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- kde-settings.spec 25 Jul 2009 08:07:48 -0000 1.77 +++ kde-settings.spec 25 Jul 2009 08:16:02 -0000 1.78 @@ -3,19 +3,17 @@ # The actuall tarball also DIFFERS between releases! # Use kde-settings trunk for F11+, F-10 branch of F10, F-9 branch for F9. -Error: - -%define rel 20090431svn +%define svndate 20090430svn Summary: Config files for kde Name: kde-settings Version: 4.2 -Release: 10.%{rel}%{?dist} +Release: 11.%{svndate}%{?dist} Group: System Environment/Base License: Public Domain Url: http://fedorahosted.org/kde-settings -Source0: kde-settings-%{version}-%{rel}.tar.bz2 +Source0: kde-settings-%{version}-%{svndate}.tar.bz2 # used to generate Source0 Source1: kde-settings-svn.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -160,8 +158,9 @@ touch --no-create %{_datadir}/kde-settin %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 4.2-10.20090431svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Sat Jul 25 2009 Kevin Kofler - 4.2-11.20090430svn +- rebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +- rename %%{rel} to %%{svndate} to fix automated bumps * Thu Apr 30 2009 Rex Dieter - 4.2-10.20090430svn - nepomukserverrc: disable nepomuk From jkeating at fedoraproject.org Sat Jul 25 08:28:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:28:16 +0000 (UTC) Subject: rpms/libpqxx/devel libpqxx.spec,1.26,1.27 Message-ID: <20090725082816.440C011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpqxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32501 Modified Files: libpqxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpqxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpqxx/devel/libpqxx.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libpqxx.spec 10 Apr 2009 13:58:53 -0000 1.26 +++ libpqxx.spec 25 Jul 2009 08:28:15 -0000 1.27 @@ -1,6 +1,6 @@ Name: libpqxx Version: 3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ client API for PostgreSQL Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Rex Dieter 3.0.0-1 - libpqxx-3.0 From jkeating at fedoraproject.org Sat Jul 25 08:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:28:32 +0000 (UTC) Subject: rpms/libprelude/devel libprelude.spec,1.46,1.47 Message-ID: <20090725082832.7228F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libprelude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv341 Modified Files: libprelude.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libprelude.spec =================================================================== RCS file: /cvs/pkgs/rpms/libprelude/devel/libprelude.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libprelude.spec 9 Jul 2009 19:37:48 -0000 1.46 +++ libprelude.spec 25 Jul 2009 08:28:32 -0000 1.47 @@ -5,7 +5,7 @@ Name: libprelude Version: 0.9.24 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The prelude library Group: System Environment/Libraries License: GPLv2+ @@ -137,6 +137,9 @@ rm -rf %{buildroot} %{ruby_sitearch}/PreludeEasy.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Steve Grubb - 0.9.24-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 08:28:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:28:48 +0000 (UTC) Subject: rpms/libpreludedb/devel libpreludedb.spec,1.21,1.22 Message-ID: <20090725082848.8F2B311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpreludedb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv632 Modified Files: libpreludedb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpreludedb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpreludedb/devel/libpreludedb.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libpreludedb.spec 13 Jul 2009 14:37:48 -0000 1.21 +++ libpreludedb.spec 25 Jul 2009 08:28:48 -0000 1.22 @@ -3,7 +3,7 @@ Name: libpreludedb Version: 0.9.15.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provide the framework for easy access to the Prelude database Group: System Environment/Libraries License: GPLv2+ @@ -163,6 +163,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.15.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Steve Grubb 0.9.15.2-1 - new upstream bugfix release From jkeating at fedoraproject.org Sat Jul 25 08:29:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:29:02 +0000 (UTC) Subject: rpms/libpri/devel libpri.spec,1.17,1.18 Message-ID: <20090725082902.43C3111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv911 Modified Files: libpri.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpri.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpri/devel/libpri.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libpri.spec 24 Apr 2009 14:05:56 -0000 1.17 +++ libpri.spec 25 Jul 2009 08:29:02 -0000 1.18 @@ -1,7 +1,7 @@ Summary: An implementation of Primary Rate ISDN Name: libpri Version: 1.4.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.asterisk.org/ @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_libdir}/libpri.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Jeffrey C. Ollie - 1.4.10-1 - Update to 1.4.10 From jkeating at fedoraproject.org Sat Jul 25 08:29:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:29:16 +0000 (UTC) Subject: rpms/libprojectM/devel libprojectM.spec,1.5,1.6 Message-ID: <20090725082916.65C5211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libprojectM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1148 Modified Files: libprojectM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libprojectM.spec =================================================================== RCS file: /cvs/pkgs/rpms/libprojectM/devel/libprojectM.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libprojectM.spec 26 Feb 2009 01:07:00 -0000 1.5 +++ libprojectM.spec 25 Jul 2009 08:29:16 -0000 1.6 @@ -1,6 +1,6 @@ Name: libprojectM Version: 1.2.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The libraries for the projectM music visualization plugin Group: Applications/Multimedia License: LGPLv2+ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Jameson Pugh (imntreal at gmail.com) - 1.2.0-9 - Aparently stdio.h didn't need to be included in BuiltinParams.cpp before, but is now From jkeating at fedoraproject.org Sat Jul 25 08:29:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:29:30 +0000 (UTC) Subject: rpms/libprojectM-qt/devel libprojectM-qt.spec,1.3,1.4 Message-ID: <20090725082930.D470311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libprojectM-qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1443 Modified Files: libprojectM-qt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libprojectM-qt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libprojectM-qt/devel/libprojectM-qt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libprojectM-qt.spec 25 Feb 2009 17:38:16 -0000 1.3 +++ libprojectM-qt.spec 25 Jul 2009 08:29:30 -0000 1.4 @@ -1,6 +1,6 @@ Name: libprojectM-qt Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The Qt frontend to the projectM visualization plugin Group: Applications/Multimedia License: GPLv2+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:29:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:29:44 +0000 (UTC) Subject: rpms/libproxy/devel libproxy.spec,1.3,1.4 Message-ID: <20090725082944.4619311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1711 Modified Files: libproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/libproxy/devel/libproxy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libproxy.spec 9 Mar 2009 08:53:24 -0000 1.3 +++ libproxy.spec 25 Jul 2009 08:29:44 -0000 1.4 @@ -4,7 +4,7 @@ Name: libproxy Version: 0.2.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A library handling all the details of proxy configuration Group: System Environment/Libraries @@ -184,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 kwizart < kwizart at gmail.com > - 0.2.3-10 - Rebuild for webkit - Raise requirement for xulrunner to 1.9.1 From jkeating at fedoraproject.org Sat Jul 25 08:29:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:29:58 +0000 (UTC) Subject: rpms/libpst/devel libpst.spec,1.25,1.26 Message-ID: <20090725082958.C8CFF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1970 Modified Files: libpst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpst.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpst/devel/libpst.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libpst.spec 24 Jun 2009 03:41:46 -0000 1.25 +++ libpst.spec 25 Jul 2009 08:29:58 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Utilities to convert Outlook .pst files to other formats Name: libpst Version: 0.6.41 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Productivity Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz @@ -146,6 +146,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.41-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Carl Byington - 0.6.41-1 - fix ax_python detection - should not use locate command - checking for fedora versions is not needed From jkeating at fedoraproject.org Sat Jul 25 08:30:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:30:13 +0000 (UTC) Subject: rpms/libpuzzle/devel libpuzzle.spec,1.2,1.3 Message-ID: <20090725083013.01B8011C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libpuzzle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2239 Modified Files: libpuzzle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libpuzzle.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpuzzle/devel/libpuzzle.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libpuzzle.spec 13 Jul 2009 08:12:30 -0000 1.2 +++ libpuzzle.spec 25 Jul 2009 08:30:12 -0000 1.3 @@ -3,7 +3,7 @@ Name: libpuzzle Version: 0.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library to quickly find visually similar images (gif, png, jpg) Group: System Environment/Libraries License: BSD @@ -115,6 +115,9 @@ find %{buildroot} -name '*.la' -exec rm %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.11-5 - rebuild for new PHP 5.3.0 ABI (20090626) - add PHP ABI check From jkeating at fedoraproject.org Sat Jul 25 08:30:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:30:27 +0000 (UTC) Subject: rpms/libqalculate/devel libqalculate.spec,1.26,1.27 Message-ID: <20090725083027.7BCBC11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libqalculate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2478 Modified Files: libqalculate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libqalculate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqalculate/devel/libqalculate.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libqalculate.spec 6 Jul 2009 16:46:29 -0000 1.26 +++ libqalculate.spec 25 Jul 2009 08:30:27 -0000 1.27 @@ -1,7 +1,7 @@ Summary: Multi-purpose calculator library Name: libqalculate Version: 0.9.6 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://qalculate.sourceforge.net/ @@ -92,6 +92,9 @@ rm -rf %{buildroot} %{_bindir}/qalc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Rex Dieter 0.9.6-7 - move auto*foo to prep stage - trim pkg-config-related deps (#509840) From jkeating at fedoraproject.org Sat Jul 25 08:30:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:30:43 +0000 (UTC) Subject: rpms/libqinfinity/devel libqinfinity.spec,1.1,1.2 Message-ID: <20090725083043.1D58111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libqinfinity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2743 Modified Files: libqinfinity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libqinfinity.spec =================================================================== RCS file: /cvs/pkgs/rpms/libqinfinity/devel/libqinfinity.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libqinfinity.spec 10 Jul 2009 01:30:48 -0000 1.1 +++ libqinfinity.spec 25 Jul 2009 08:30:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: libqinfinity Version: 1.0 -Release: 0.1.b3%{?dist} +Release: 0.2.b3%{?dist} Summary: Qt interface for libinfinity Group: System Environment/Libraries @@ -70,5 +70,8 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.2.b3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 29 2009 Ben Boeckel 1.0-0.1.b3 - Initial package From jkeating at fedoraproject.org Sat Jul 25 08:31:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:31:21 +0000 (UTC) Subject: rpms/librapi/devel librapi.spec,1.11,1.12 Message-ID: <20090725083121.25C7111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3489 Modified Files: librapi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/librapi/devel/librapi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- librapi.spec 21 Jul 2009 16:00:17 -0000 1.11 +++ librapi.spec 25 Jul 2009 08:31:20 -0000 1.12 @@ -2,7 +2,7 @@ Name: librapi Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library to connect to Pocket PC devices Group: System Environment/Libraries @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 08:31:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:31:36 +0000 (UTC) Subject: rpms/libraw1394/devel libraw1394.spec,1.52,1.53 Message-ID: <20090725083136.986CE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libraw1394/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4063 Modified Files: libraw1394.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libraw1394.spec =================================================================== RCS file: /cvs/pkgs/rpms/libraw1394/devel/libraw1394.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- libraw1394.spec 25 Feb 2009 17:42:11 -0000 1.52 +++ libraw1394.spec 25 Jul 2009 08:31:36 -0000 1.53 @@ -1,7 +1,7 @@ Summary: Library providing low-level IEEE-1394 access Name: libraw1394 Version: 2.0.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.linux1394.org/dl/libraw1394-%{version}.tar.gz @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:31:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:31:52 +0000 (UTC) Subject: rpms/librdmacm/devel librdmacm.spec,1.3,1.4 Message-ID: <20090725083152.8640411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librdmacm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4491 Modified Files: librdmacm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librdmacm.spec =================================================================== RCS file: /cvs/pkgs/rpms/librdmacm/devel/librdmacm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- librdmacm.spec 25 Feb 2009 17:43:07 -0000 1.3 +++ librdmacm.spec 25 Jul 2009 08:31:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: librdmacm Version: 1.0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Userspace RDMA Connection Manager Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:32:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:32:08 +0000 (UTC) Subject: rpms/libreadline-java/devel libreadline-java.spec,1.12,1.13 Message-ID: <20090725083208.DEA4D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libreadline-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4752 Modified Files: libreadline-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libreadline-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libreadline-java/devel/libreadline-java.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libreadline-java.spec 25 Feb 2009 17:44:00 -0000 1.12 +++ libreadline-java.spec 25 Jul 2009 08:32:08 -0000 1.13 @@ -4,7 +4,7 @@ Name: libreadline-java Version: 0.8.0 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Java wrapper for the EditLine library Group: Development/Libraries @@ -119,6 +119,9 @@ fi %{_javadocdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.0-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.0-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:32:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:32:23 +0000 (UTC) Subject: rpms/librelp/devel librelp.spec,1.2,1.3 Message-ID: <20090725083223.8992B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5027 Modified Files: librelp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/librelp/devel/librelp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- librelp.spec 25 Feb 2009 17:44:56 -0000 1.2 +++ librelp.spec 25 Jul 2009 08:32:23 -0000 1.3 @@ -1,7 +1,7 @@ Summary: The Reliable Event Logging Protocol library Name: librelp Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: System Environment/Libraries URL: http://www.rsyslog.com/ @@ -61,6 +61,9 @@ fi %{_libdir}/pkgconfig/relp.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:32:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:32:44 +0000 (UTC) Subject: rpms/libresample/devel libresample.spec,1.10,1.11 Message-ID: <20090725083244.794BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libresample/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5378 Modified Files: libresample.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libresample.spec =================================================================== RCS file: /cvs/pkgs/rpms/libresample/devel/libresample.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libresample.spec 21 Apr 2009 15:37:10 -0000 1.10 +++ libresample.spec 25 Jul 2009 08:32:44 -0000 1.11 @@ -1,7 +1,7 @@ Summary: A real-time library for audio sampling rate conversion Name: libresample Version: 0.1.3 -Release: 11%{?dist} +Release: 12%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://ccrma-www.stanford.edu/~jos/resample/Free_Resampling_Software.html @@ -82,6 +82,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libresample.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Milos Jakubicek - 0.1.3-11 - Fix FTBFS: fixed failing tests in %%check From jkeating at fedoraproject.org Sat Jul 25 08:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:32:59 +0000 (UTC) Subject: rpms/librfid/devel librfid.spec,1.8,1.9 Message-ID: <20090725083259.76BC211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librfid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5661 Modified Files: librfid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librfid.spec =================================================================== RCS file: /cvs/pkgs/rpms/librfid/devel/librfid.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- librfid.spec 25 Feb 2009 17:47:53 -0000 1.8 +++ librfid.spec 25 Jul 2009 08:32:59 -0000 1.9 @@ -1,6 +1,6 @@ Name: librfid Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The librfid is a Free Software RFID library Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:33:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:33:14 +0000 (UTC) Subject: rpms/librra/devel librra.spec,1.15,1.16 Message-ID: <20090725083314.F3D2911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5895 Modified Files: librra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librra.spec =================================================================== RCS file: /cvs/pkgs/rpms/librra/devel/librra.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- librra.spec 21 Jul 2009 18:30:15 -0000 1.15 +++ librra.spec 25 Jul 2009 08:33:14 -0000 1.16 @@ -2,7 +2,7 @@ Name: librra Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Connection to Pocket PC devices, part of SynCE Group: System Environment/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 08:33:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:33:29 +0000 (UTC) Subject: rpms/librsvg2/devel librsvg2.spec,1.74,1.75 Message-ID: <20090725083329.F0BBE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librsvg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6170 Modified Files: librsvg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librsvg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/librsvg2/devel/librsvg2.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- librsvg2.spec 16 Mar 2009 18:38:13 -0000 1.74 +++ librsvg2.spec 25 Jul 2009 08:33:29 -0000 1.75 @@ -13,7 +13,7 @@ Name: librsvg2 Summary: An SVG library based on cairo Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/rsvg %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Matthias Clasen - 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Sat Jul 25 08:33:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:33:46 +0000 (UTC) Subject: rpms/librsync/devel librsync.spec,1.21,1.22 Message-ID: <20090725083346.A3CB611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6440 Modified Files: librsync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librsync.spec =================================================================== RCS file: /cvs/pkgs/rpms/librsync/devel/librsync.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- librsync.spec 23 Feb 2009 20:16:59 -0000 1.21 +++ librsync.spec 25 Jul 2009 08:33:46 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Rsync libraries Name: librsync Version: 0.9.7 -Release: 14%{?dist} +Release: 15%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://librsync.sourceforge.net/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/librsync.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.7-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0.9.7-14 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 08:34:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:34:02 +0000 (UTC) Subject: rpms/librtas/devel librtas.spec,1.16,1.17 Message-ID: <20090725083402.9189C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librtas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6734 Modified Files: librtas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librtas.spec =================================================================== RCS file: /cvs/pkgs/rpms/librtas/devel/librtas.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- librtas.spec 25 Feb 2009 17:50:45 -0000 1.16 +++ librtas.spec 25 Jul 2009 08:34:02 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Libraries to provide access to RTAS calls and RTAS events Name: librtas Version: 1.3.3 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://librtas.ozlabs.org License: IBM Group: System Environment/Libraries @@ -69,6 +69,9 @@ developing programs using librtas. %{_includedir}/librtasevent_v6.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:34:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:34:19 +0000 (UTC) Subject: rpms/librtfcomp/devel librtfcomp.spec,1.5,1.6 Message-ID: <20090725083419.1A6FA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librtfcomp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7005 Modified Files: librtfcomp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librtfcomp.spec =================================================================== RCS file: /cvs/pkgs/rpms/librtfcomp/devel/librtfcomp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- librtfcomp.spec 25 Feb 2009 17:52:00 -0000 1.5 +++ librtfcomp.spec 25 Jul 2009 08:34:18 -0000 1.6 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: librtfcomp Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for reading of compressed RTF files Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/pyrtfcomp.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:34:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:34:36 +0000 (UTC) Subject: rpms/librx/devel librx.spec,1.13,1.14 Message-ID: <20090725083436.00AC711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/librx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7280 Modified Files: librx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: librx.spec =================================================================== RCS file: /cvs/pkgs/rpms/librx/devel/librx.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- librx.spec 24 Apr 2009 13:33:53 -0000 1.13 +++ librx.spec 25 Jul 2009 08:34:35 -0000 1.14 @@ -1,7 +1,7 @@ Summary: POSIX regexp functions Name: librx Version: 1.5 -Release: 12%{?dist}.1 +Release: 13%{?dist}.1 License: GPLv2+ URL: http://www.gnu.org/software/rx/rx.html Group: Applications/Text @@ -86,6 +86,9 @@ fi %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-13.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Karsten Hopp 1.5-12.1 - add s390x to 64bit archs From jkeating at fedoraproject.org Sat Jul 25 08:34:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:34:52 +0000 (UTC) Subject: rpms/libsamplerate/devel libsamplerate.spec,1.21,1.22 Message-ID: <20090725083452.A8A7E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsamplerate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7583 Modified Files: libsamplerate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsamplerate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsamplerate/devel/libsamplerate.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libsamplerate.spec 8 May 2009 09:26:16 -0000 1.21 +++ libsamplerate.spec 25 Jul 2009 08:34:52 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Sample rate conversion library for audio data Name: libsamplerate Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.mega-nerd.com/SRC/ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Lubomir Rintel - 0.1.7-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 08:35:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:35:07 +0000 (UTC) Subject: rpms/libscigraphica/devel libscigraphica.spec,1.5,1.6 Message-ID: <20090725083507.A675711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libscigraphica/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7864 Modified Files: libscigraphica.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libscigraphica.spec =================================================================== RCS file: /cvs/pkgs/rpms/libscigraphica/devel/libscigraphica.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libscigraphica.spec 25 Feb 2009 18:00:01 -0000 1.5 +++ libscigraphica.spec 25 Jul 2009 08:35:07 -0000 1.6 @@ -3,7 +3,7 @@ Summary: A library of gtk+ widgets for SciGraphica Name: libscigraphica Version: 2.1.1 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: System Environment/Libraries Url: http://scigraphica.sourceforge.net @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/%{name}/*.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:35:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:35:31 +0000 (UTC) Subject: rpms/libselinux/devel libselinux.spec,1.374,1.375 Message-ID: <20090725083531.758DD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libselinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8206 Modified Files: libselinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libselinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/libselinux/devel/libselinux.spec,v retrieving revision 1.374 retrieving revision 1.375 diff -u -p -r1.374 -r1.375 --- libselinux.spec 14 Jul 2009 15:29:55 -0000 1.374 +++ libselinux.spec 25 Jul 2009 08:35:31 -0000 1.375 @@ -5,7 +5,7 @@ Summary: SELinux library and simple utilities Name: libselinux Version: 2.0.85 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain Group: System Environment/Libraries Source: http://www.nsa.gov/research/selinux/%{name}-%{version}.tgz @@ -165,6 +165,9 @@ exit 0 %{ruby_sitearch}/selinux.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.85-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Dan Walsh - 2.0.85-1 - Update to upstream * Reverted Tomas Mraz's fix for freeing thread local storage to avoid From jkeating at fedoraproject.org Sat Jul 25 08:35:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:35:48 +0000 (UTC) Subject: rpms/libsemanage/devel libsemanage.spec,1.179,1.180 Message-ID: <20090725083548.3DB0A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsemanage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8480 Modified Files: libsemanage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsemanage.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsemanage/devel/libsemanage.spec,v retrieving revision 1.179 retrieving revision 1.180 diff -u -p -r1.179 -r1.180 --- libsemanage.spec 10 Jul 2009 18:46:52 -0000 1.179 +++ libsemanage.spec 25 Jul 2009 08:35:48 -0000 1.180 @@ -3,7 +3,7 @@ Summary: SELinux binary policy manipulation library Name: libsemanage Version: 2.0.33 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.nsa.gov/selinux/archives/libsemanage-%{version}.tgz @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/python*/site-packages/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.33-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Dan Walsh - 2.0.33-2 - Put check for /root back into genhomedircon From jkeating at fedoraproject.org Sat Jul 25 08:36:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:36:05 +0000 (UTC) Subject: rpms/libsepol/devel libsepol.spec,1.192,1.193 Message-ID: <20090725083605.3677011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsepol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8761 Modified Files: libsepol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsepol.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsepol/devel/libsepol.spec,v retrieving revision 1.192 retrieving revision 1.193 diff -u -p -r1.192 -r1.193 --- libsepol.spec 7 Jul 2009 19:33:40 -0000 1.192 +++ libsepol.spec 25 Jul 2009 08:36:05 -0000 1.193 @@ -1,7 +1,7 @@ Summary: SELinux binary policy manipulation library Name: libsepol Version: 2.0.37 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source: http://www.nsa.gov/selinux/archives/libsepol-%{version}.tgz @@ -96,6 +96,9 @@ exit 0 /%{_lib}/libsepol.so.1 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Dan Walsh 2.0.37-1 - Upgrade to latest from NSA * Add method to check disable dontaudit flag from Christopher Pardy. From jkeating at fedoraproject.org Sat Jul 25 08:36:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:36:19 +0000 (UTC) Subject: rpms/libservicelog/devel libservicelog.spec,1.2,1.3 Message-ID: <20090725083619.B7BCC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libservicelog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9040 Modified Files: libservicelog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libservicelog.spec =================================================================== RCS file: /cvs/pkgs/rpms/libservicelog/devel/libservicelog.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libservicelog.spec 31 Mar 2009 15:41:17 -0000 1.2 +++ libservicelog.spec 25 Jul 2009 08:36:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: libservicelog Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Servicelog Database and Library Group: System Environment/Libraries @@ -75,6 +75,9 @@ getent group service >/dev/null || /usr/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Roman Rakus - 1.0.1-2 - Added missing requires sqlite-devel in devel subpackage From jkeating at fedoraproject.org Sat Jul 25 08:36:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:36:35 +0000 (UTC) Subject: rpms/libsexy/devel libsexy.spec,1.22,1.23 Message-ID: <20090725083635.C1FD311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsexy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9207 Modified Files: libsexy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsexy.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsexy/devel/libsexy.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- libsexy.spec 25 Feb 2009 18:03:39 -0000 1.22 +++ libsexy.spec 25 Jul 2009 08:36:35 -0000 1.23 @@ -1,6 +1,6 @@ Name: libsexy Version: 0.1.11 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Funky fresh graphical widgets for GTK+ 2 Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.11-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.11-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:36:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:36:51 +0000 (UTC) Subject: rpms/libsexymm/devel libsexymm.spec,1.10,1.11 Message-ID: <20090725083651.9E76C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsexymm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9386 Modified Files: libsexymm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsexymm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsexymm/devel/libsexymm.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libsexymm.spec 25 Feb 2009 18:04:29 -0000 1.10 +++ libsexymm.spec 25 Jul 2009 08:36:51 -0000 1.11 @@ -1,6 +1,6 @@ Name: libsexymm Version: 0.1.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ wrapper for libsexy @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:37:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:37:07 +0000 (UTC) Subject: rpms/libshout/devel libshout.spec,1.18,1.19 Message-ID: <20090725083707.AB03B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libshout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9559 Modified Files: libshout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libshout.spec =================================================================== RCS file: /cvs/pkgs/rpms/libshout/devel/libshout.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libshout.spec 25 Feb 2009 18:05:23 -0000 1.18 +++ libshout.spec 25 Jul 2009 08:37:07 -0000 1.19 @@ -1,6 +1,6 @@ Name: libshout Version: 2.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Icecast source streaming library Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/shout.m4 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:37:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:37:22 +0000 (UTC) Subject: rpms/libsidplay/devel libsidplay.spec,1.25,1.26 Message-ID: <20090725083722.B332C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsidplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9740 Modified Files: libsidplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsidplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsidplay/devel/libsidplay.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- libsidplay.spec 25 Feb 2009 18:06:16 -0000 1.25 +++ libsidplay.spec 25 Jul 2009 08:37:22 -0000 1.26 @@ -1,7 +1,7 @@ Name: libsidplay Summary: SID chip music module playing library Version: 1.36.57 -Release: 19 +Release: 20 Source: http://home.arcor.de/ms2002sep/bak/%{name}-%{version}.tgz Patch: libsidplay-post57fixes.patch Patch2: libsidplay-1.36.57-opts.patch @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_includedir}/sidplay %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.36.57-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.36.57-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:37:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:37:37 +0000 (UTC) Subject: rpms/libsieve/devel libsieve.spec,1.7,1.8 Message-ID: <20090725083737.968B111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsieve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9931 Modified Files: libsieve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsieve.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsieve/devel/libsieve.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libsieve.spec 25 Feb 2009 18:07:09 -0000 1.7 +++ libsieve.spec 25 Jul 2009 08:37:37 -0000 1.8 @@ -1,6 +1,6 @@ Name: libsieve Version: 2.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for parsing, sorting and filtering your mail Group: System Environment/Libraries @@ -132,6 +132,9 @@ These are the development libraries. %{_includedir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:37:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:37:53 +0000 (UTC) Subject: rpms/libsigc++/devel libsigc++.spec,1.16,1.17 Message-ID: <20090725083753.1869411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsigc++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10119 Modified Files: libsigc++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsigc++.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsigc++/devel/libsigc++.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- libsigc++.spec 25 Feb 2009 18:08:04 -0000 1.16 +++ libsigc++.spec 25 Jul 2009 08:37:52 -0000 1.17 @@ -1,6 +1,6 @@ Name: libsigc++ Version: 1.2.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Typesafe signal framework for C++ Group: System Environment/Libraries License: LGPLv2+ @@ -95,6 +95,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:38:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:38:07 +0000 (UTC) Subject: rpms/libsigc++20/devel libsigc++.spec,1.19,1.20 Message-ID: <20090725083807.63A3711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsigc++20/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10311 Modified Files: libsigc++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsigc++.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsigc++20/devel/libsigc++.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libsigc++.spec 25 Feb 2009 18:09:02 -0000 1.19 +++ libsigc++.spec 25 Jul 2009 08:38:07 -0000 1.20 @@ -1,6 +1,6 @@ Name: libsigc++20 Version: 2.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Typesafe signal framework for C++ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:38:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:38:24 +0000 (UTC) Subject: rpms/libsigsegv/devel libsigsegv.spec,1.21,1.22 Message-ID: <20090725083824.63A5A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsigsegv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10517 Modified Files: libsigsegv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsigsegv.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsigsegv/devel/libsigsegv.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libsigsegv.spec 16 Jul 2009 18:31:19 -0000 1.21 +++ libsigsegv.spec 25 Jul 2009 08:38:23 -0000 1.22 @@ -4,7 +4,7 @@ Summary: Library for handling page faults in user mode Name: libsigsegv Version: 2.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://libsigsegv.sourceforge.net/ @@ -111,6 +111,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Rex Dieter - 2.6-3 - move libsigsegv.so.* to /lib (#512219, F-12+) - %%doc: -ChangeLog, +COPYING From jkeating at fedoraproject.org Sat Jul 25 08:38:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:38:40 +0000 (UTC) Subject: rpms/libsilc/devel libsilc.spec,1.26,1.27 Message-ID: <20090725083840.E22E911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsilc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10737 Modified Files: libsilc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsilc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsilc/devel/libsilc.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libsilc.spec 25 Feb 2009 18:11:03 -0000 1.26 +++ libsilc.spec 25 Jul 2009 08:38:40 -0000 1.27 @@ -1,7 +1,7 @@ Summary: SILC Client Library Name: libsilc Version: 1.1.8 -Release: 3%{dist} +Release: 4%{dist} License: GPLv2 or BSD Group: System Environment/Libraries URL: http://www.silcnet.org/ @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:38:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:38:58 +0000 (UTC) Subject: rpms/libsmbios/devel libsmbios.spec,1.24,1.25 Message-ID: <20090725083858.3689011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsmbios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10976 Modified Files: libsmbios.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsmbios.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsmbios/devel/libsmbios.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libsmbios.spec 15 May 2009 01:57:29 -0000 1.24 +++ libsmbios.spec 25 Jul 2009 08:38:57 -0000 1.25 @@ -91,7 +91,7 @@ Name: %{release_name} Version: %{release_version} -Release: 2.1%{?releasesuffix}%{?dist} +Release: 3.1%{?releasesuffix}%{?dist} License: GPLv2+ or OSL 2.1 Summary: Libsmbios C/C++ shared libraries Group: System Environment/Libraries @@ -366,6 +366,9 @@ rm -rf %{buildroot} %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.16-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 24 2009 Michael E Brown - 2.2.16-1 - add gcc 4.4 support From jkeating at fedoraproject.org Sat Jul 25 08:39:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:39:14 +0000 (UTC) Subject: rpms/libsmi/devel libsmi.spec,1.6,1.7 Message-ID: <20090725083914.B001011C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsmi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11126 Modified Files: libsmi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsmi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsmi/devel/libsmi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libsmi.spec 25 Feb 2009 18:13:51 -0000 1.6 +++ libsmi.spec 25 Jul 2009 08:39:14 -0000 1.7 @@ -1,6 +1,6 @@ Name: libsmi Version: 0.4.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library to access SMI MIB information Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:39:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:39:31 +0000 (UTC) Subject: rpms/libsndfile/devel libsndfile.spec,1.23,1.24 Message-ID: <20090725083931.A784211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsndfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11302 Modified Files: libsndfile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsndfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsndfile/devel/libsndfile.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- libsndfile.spec 6 Jun 2009 14:24:32 -0000 1.23 +++ libsndfile.spec 25 Jul 2009 08:39:31 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Library for reading and writing sound files Name: libsndfile Version: 1.0.20 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.mega-nerd.com/libsndfile/ @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Lennart Poettering - 1.0.20-1 - Updated to 1.0.20 From jkeating at fedoraproject.org Sat Jul 25 08:39:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:39:48 +0000 (UTC) Subject: rpms/libsoup/devel libsoup.spec,1.95,1.96 Message-ID: <20090725083948.F3F6111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11458 Modified Files: libsoup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup/devel/libsoup.spec,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -r1.95 -r1.96 --- libsoup.spec 13 Jul 2009 17:32:32 -0000 1.95 +++ libsoup.spec 25 Jul 2009 08:39:48 -0000 1.96 @@ -4,7 +4,7 @@ Name: libsoup Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2 Group: Development/Libraries Summary: Soup, an HTTP library implementation @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/%{name}-2.4 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 08:40:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:40:04 +0000 (UTC) Subject: rpms/libsoup22/devel libsoup22.spec,1.5,1.6 Message-ID: <20090725084004.A551811C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsoup22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11626 Modified Files: libsoup22.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsoup22.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsoup22/devel/libsoup22.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libsoup22.spec 15 Jul 2009 16:41:09 -0000 1.5 +++ libsoup22.spec 25 Jul 2009 08:40:04 -0000 1.6 @@ -2,7 +2,7 @@ Name: libsoup22 Version: 2.2.105 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Development/Libraries Summary: Soup, an HTTP library implementation @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/libsoup-2.2 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.105-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthew Barnes - 2.2.105-5 - Add patch for RH bug #511673 (dprintf conflict). From jkeating at fedoraproject.org Sat Jul 25 08:40:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:40:17 +0000 (UTC) Subject: rpms/libspe2/devel libspe2.spec,1.10,1.11 Message-ID: <20090725084017.E692511C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libspe2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11787 Modified Files: libspe2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libspe2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libspe2/devel/libspe2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libspe2.spec 25 Feb 2009 18:18:09 -0000 1.10 +++ libspe2.spec 25 Jul 2009 08:40:17 -0000 1.11 @@ -4,7 +4,7 @@ Name: libspe2 Version: %{up_version}.%{up_release} -Release: 4%{?dist} +Release: 5%{?dist} Summary: SPE Runtime Management Library Group: System Environment/Libraries @@ -158,6 +158,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.0.135-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.0.135-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:40:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:40:33 +0000 (UTC) Subject: rpms/libspectre/devel libspectre.spec,1.5,1.6 Message-ID: <20090725084033.8BC2C11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libspectre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11966 Modified Files: libspectre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libspectre.spec =================================================================== RCS file: /cvs/pkgs/rpms/libspectre/devel/libspectre.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libspectre.spec 25 Feb 2009 19:01:28 -0000 1.5 +++ libspectre.spec 25 Jul 2009 08:40:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: libspectre Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for rendering PostScript(TM) documents Group: System Environment/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:40:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:40:47 +0000 (UTC) Subject: rpms/libspectrum/devel libspectrum.spec,1.8,1.9 Message-ID: <20090725084047.CA7BA11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libspectrum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12107 Modified Files: libspectrum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libspectrum.spec =================================================================== RCS file: /cvs/pkgs/rpms/libspectrum/devel/libspectrum.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libspectrum.spec 25 Feb 2009 19:02:31 -0000 1.8 +++ libspectrum.spec 25 Jul 2009 08:40:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: libspectrum Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for reading spectrum emulator file formats Group: System Environment/Libraries License: GPLv2+ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:41:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:41:02 +0000 (UTC) Subject: rpms/libspiro/devel libspiro.spec,1.2,1.3 Message-ID: <20090725084102.7BCCA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libspiro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12251 Modified Files: libspiro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libspiro.spec =================================================================== RCS file: /cvs/pkgs/rpms/libspiro/devel/libspiro.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libspiro.spec 25 Feb 2009 19:03:41 -0000 1.2 +++ libspiro.spec 25 Jul 2009 08:41:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: libspiro Version: 20071029 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to simplify the drawing of beautiful curves Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20071029-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20071029-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:41:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:41:15 +0000 (UTC) Subject: rpms/libsqlite3x/devel libsqlite3x.spec,1.4,1.5 Message-ID: <20090725084115.4A75A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsqlite3x/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12376 Modified Files: libsqlite3x.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsqlite3x.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsqlite3x/devel/libsqlite3x.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libsqlite3x.spec 29 Apr 2009 11:36:42 -0000 1.4 +++ libsqlite3x.spec 25 Jul 2009 08:41:15 -0000 1.5 @@ -4,7 +4,7 @@ %global namesq3 libsq3 Name: libsqlite3x Version: %{veryear}%{vermon}%{verday} -Release: 7%{?dist} +Release: 8%{?dist} Summary: A C++ Wrapper for the SQLite3 embeddable SQL database engine Group: System Environment/Libraries @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libsq3.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20071018-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Thomas Sailer - 20071018-7 - fix license tag From jkeating at fedoraproject.org Sat Jul 25 08:41:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:41:28 +0000 (UTC) Subject: rpms/libss7/devel libss7.spec,1.3,1.4 Message-ID: <20090725084128.84F8211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libss7/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12505 Modified Files: libss7.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libss7.spec =================================================================== RCS file: /cvs/pkgs/rpms/libss7/devel/libss7.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libss7.spec 25 Feb 2009 19:05:33 -0000 1.3 +++ libss7.spec 25 Jul 2009 08:41:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: libss7 Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SS7 protocol services to applications Group: System Environment/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:41:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:41:42 +0000 (UTC) Subject: rpms/libssh/devel libssh.spec,1.1,1.2 Message-ID: <20090725084142.95F1A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12636 Modified Files: libssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/libssh/devel/libssh.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libssh.spec 4 Jun 2009 13:12:03 -0000 1.1 +++ libssh.spec 25 Jul 2009 08:41:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: libssh Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library implementing the SSH2 protocol (0xbadc0de version) Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Jan F. Chadima - 0.2-2 - Small changes during review From jkeating at fedoraproject.org Sat Jul 25 08:41:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:41:56 +0000 (UTC) Subject: rpms/libssh2/devel libssh2.spec,1.7,1.8 Message-ID: <20090725084156.E5E6111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libssh2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12796 Modified Files: libssh2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libssh2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libssh2/devel/libssh2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libssh2.spec 25 Feb 2009 19:06:30 -0000 1.7 +++ libssh2.spec 25 Jul 2009 08:41:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: libssh2 Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library implementing the SSH2 protocol Group: System Environment/Libraries @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:42:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:42:26 +0000 (UTC) Subject: rpms/libstroke/devel libstroke.spec,1.13,1.14 Message-ID: <20090725084226.A124A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libstroke/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13102 Modified Files: libstroke.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libstroke.spec =================================================================== RCS file: /cvs/pkgs/rpms/libstroke/devel/libstroke.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libstroke.spec 25 Feb 2009 19:08:26 -0000 1.13 +++ libstroke.spec 25 Jul 2009 08:42:26 -0000 1.14 @@ -1,6 +1,6 @@ Name: libstroke Version: 0.5.1 -Release: 22%{?dist} +Release: 23%{?dist} Summary: A stroke interface library License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 08:42:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:42:11 +0000 (UTC) Subject: rpms/libstatgrab/devel libstatgrab.spec,1.11,1.12 Message-ID: <20090725084211.BE6FC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libstatgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12951 Modified Files: libstatgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libstatgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/libstatgrab/devel/libstatgrab.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libstatgrab.spec 25 Feb 2009 19:07:29 -0000 1.11 +++ libstatgrab.spec 25 Jul 2009 08:42:11 -0000 1.12 @@ -4,7 +4,7 @@ Summary: Make system statistics Name: libstatgrab Version: 0.16 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://ftp.i-scream.org/pub/i-scream/%{name}/%{name}-%{version}.tar.gz Patch0: %{name}.nochmod.patch @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/vm_stats %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:42:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:42:40 +0000 (UTC) Subject: rpms/libsvm/devel libsvm.spec,1.35,1.36 Message-ID: <20090725084240.E616811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13242 Modified Files: libsvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsvm/devel/libsvm.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libsvm.spec 3 Apr 2009 06:30:04 -0000 1.35 +++ libsvm.spec 25 Jul 2009 08:42:40 -0000 1.36 @@ -1,6 +1,6 @@ Name: libsvm Version: 2.89 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Library for Support Vector Machines Group: Development/Libraries @@ -203,6 +203,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.89-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 Ding-Yi Chen - 2.89-1 - Upstream Update to 2.89: + reduce input/loading time of svm-train/svm-predict by half From jkeating at fedoraproject.org Sat Jul 25 08:42:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:42:55 +0000 (UTC) Subject: rpms/libsx/devel libsx.spec,1.13,1.14 Message-ID: <20090725084255.BAB4211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13396 Modified Files: libsx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsx.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsx/devel/libsx.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- libsx.spec 25 Feb 2009 19:13:35 -0000 1.13 +++ libsx.spec 25 Jul 2009 08:42:55 -0000 1.14 @@ -1,7 +1,7 @@ Name: libsx Summary: Simple X library Version: 2.05 -Release: 16%{?dist} +Release: 17%{?dist} Group: System Environment/Libraries License: LGPLv2+ Url: ftp://ftp.ac-grenoble.fr/ge/Xlibraries/ @@ -118,6 +118,9 @@ rm -rf %{buildroot} %{_includedir}/libsx.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.05-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.05-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:43:09 +0000 (UTC) Subject: rpms/libsynce/devel libsynce.spec,1.10,1.11 Message-ID: <20090725084309.57FD111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsynce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13533 Modified Files: libsynce.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsynce.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsynce/devel/libsynce.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libsynce.spec 21 Jul 2009 04:31:03 -0000 1.10 +++ libsynce.spec 25 Jul 2009 08:43:09 -0000 1.11 @@ -1,6 +1,6 @@ Name: libsynce Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Connection library for Pocket PC devices Group: System Environment/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 08:43:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:43:24 +0000 (UTC) Subject: rpms/libsyncml/devel libsyncml.spec,1.9,1.10 Message-ID: <20090725084324.6364311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libsyncml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13704 Modified Files: libsyncml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libsyncml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libsyncml/devel/libsyncml.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libsyncml.spec 31 Mar 2009 14:34:12 -0000 1.9 +++ libsyncml.spec 25 Jul 2009 08:43:24 -0000 1.10 @@ -1,7 +1,7 @@ Name: libsyncml Epoch: 1 Version: 0.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SyncML protocol library Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Felix Kaechele - 1:0.4.6-1 - downgraded to 0.4.6 From jkeating at fedoraproject.org Sat Jul 25 08:43:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:43:38 +0000 (UTC) Subject: rpms/libtalloc/devel libtalloc.spec,1.3,1.4 Message-ID: <20090725084338.50D1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtalloc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13841 Modified Files: libtalloc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtalloc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtalloc/devel/libtalloc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libtalloc.spec 17 Jun 2009 14:54:58 -0000 1.3 +++ libtalloc.spec 25 Jul 2009 08:43:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: libtalloc Version: 1.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Daemons Summary: The talloc library License: LGPLv3+ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Simo Sorce - 1.3.1-1 - Original tarballs had a screw-up, rebuild with new fixed tarballs from upstream. From jkeating at fedoraproject.org Sat Jul 25 08:43:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:43:52 +0000 (UTC) Subject: rpms/libtar/devel libtar.spec,1.15,1.16 Message-ID: <20090725084352.7A2AA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13969 Modified Files: libtar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtar.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtar/devel/libtar.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- libtar.spec 25 Feb 2009 19:16:25 -0000 1.15 +++ libtar.spec 25 Jul 2009 08:43:52 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Tar file manipulation API Name: libtar Version: 1.2.11 -Release: 12%{?dist} +Release: 13%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.feep.net/libtar/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.11-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.11-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:44:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:44:07 +0000 (UTC) Subject: rpms/libtasn1/devel libtasn1.spec,1.31,1.32 Message-ID: <20090725084407.5640911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtasn1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14138 Modified Files: libtasn1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtasn1.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtasn1/devel/libtasn1.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libtasn1.spec 29 May 2009 12:05:28 -0000 1.31 +++ libtasn1.spec 25 Jul 2009 08:44:07 -0000 1.32 @@ -3,7 +3,7 @@ Summary: The ASN.1 library used in GNUTLS Name: libtasn1 Version: 2.2 -Release: %release_func 1 +Release: %release_func 2 # The libtasn1 library is LGPLv2+, utilities are GPLv3+ License: GPLv3+ and LGPLv2+ @@ -117,6 +117,9 @@ test "$1" != 0 || %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Tomas Mraz - 2.2-1 - updated to new upstream version - SMP build should work now From jkeating at fedoraproject.org Sat Jul 25 08:44:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:44:20 +0000 (UTC) Subject: rpms/libtdb/devel libtdb.spec,1.4,1.5 Message-ID: <20090725084420.5A19E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14273 Modified Files: libtdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtdb/devel/libtdb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libtdb.spec 17 Jun 2009 15:04:54 -0000 1.4 +++ libtdb.spec 25 Jul 2009 08:44:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: libtdb Version: 1.1.5 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Daemons Summary: The tdb library License: LGPLv3+ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Simo Sorce - 1.1.5-1 - Original tarballs had a screw-up, rebuild with new fixed tarballs from upstream. From jkeating at fedoraproject.org Sat Jul 25 08:44:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:44:37 +0000 (UTC) Subject: rpms/libtelepathy/devel libtelepathy.spec,1.20,1.21 Message-ID: <20090725084437.1E05611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtelepathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14435 Modified Files: libtelepathy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtelepathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtelepathy/devel/libtelepathy.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libtelepathy.spec 25 Feb 2009 19:18:14 -0000 1.20 +++ libtelepathy.spec 25 Jul 2009 08:44:36 -0000 1.21 @@ -1,6 +1,6 @@ Name: libtelepathy Version: 0.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GLib library to ease writing telepathy clients Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:44:52 +0000 (UTC) Subject: rpms/libtextcat/devel libtextcat.spec,1.8,1.9 Message-ID: <20090725084452.342B711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtextcat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14605 Modified Files: libtextcat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtextcat.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtextcat/devel/libtextcat.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libtextcat.spec 11 Jul 2009 13:16:41 -0000 1.8 +++ libtextcat.spec 25 Jul 2009 08:44:51 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Text Categorization Library Name: libtextcat Version: 2.2 -Release: 7%{?dist} +Release: 8%{?dist} Group: System Environment/Libraries License: BSD Source0: http://software.wise-guys.nl/download/%{name}-%{version}.tar.gz @@ -138,6 +138,9 @@ cp -p %{SOURCE4} $RPM_BUILD_ROOT/%{_data rm -r $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara 2.2-7 - remove rpmlint warnings From jkeating at fedoraproject.org Sat Jul 25 08:45:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:45:07 +0000 (UTC) Subject: rpms/libthai/devel libthai.spec,1.12,1.13 Message-ID: <20090725084507.AFF6E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libthai/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14804 Modified Files: libthai.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libthai.spec =================================================================== RCS file: /cvs/pkgs/rpms/libthai/devel/libthai.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libthai.spec 27 Jun 2009 22:24:09 -0000 1.12 +++ libthai.spec 25 Jul 2009 08:45:07 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Thai language support routines Name: libthai Version: 0.1.12 -Release: 1%{?dist} +Release: 2%{?dist} # No version is specified, so all versions are possible. License: LGPLv2+ Group: System Environment/Libraries @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Matthias Clasen - 0.1.12-1 - Update to 0.1.12 From jkeating at fedoraproject.org Sat Jul 25 08:45:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:45:24 +0000 (UTC) Subject: rpms/libtheora/devel libtheora.spec,1.35,1.36 Message-ID: <20090725084524.DC3BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtheora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14986 Modified Files: libtheora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtheora.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtheora/devel/libtheora.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libtheora.spec 3 Jun 2009 14:51:03 -0000 1.35 +++ libtheora.spec 25 Jul 2009 08:45:24 -0000 1.36 @@ -1,7 +1,7 @@ Summary: Theora Video Compression Codec Name: libtheora Version: 1.1alpha2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: BSD Group: System Environment/Libraries @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.1alpha2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Adam Jackson 1.1alpha2-1 - 1.1alpha2 From jkeating at fedoraproject.org Sat Jul 25 08:45:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:45:40 +0000 (UTC) Subject: rpms/libtiff/devel libtiff.spec,1.55,1.56 Message-ID: <20090725084540.D79B211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15152 Modified Files: libtiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtiff/devel/libtiff.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- libtiff.spec 13 Jul 2009 14:39:58 -0000 1.55 +++ libtiff.spec 25 Jul 2009 08:45:40 -0000 1.56 @@ -1,7 +1,7 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 3.8.2 -Release: 14%{?dist} +Release: 15%{?dist} License: libtiff Group: System Environment/Libraries URL: http://www.remotesensing.org/libtiff/ @@ -159,6 +159,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.8.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Tom Lane 3.8.2-14 - Fix buffer overrun risks caused by unchecked integer overflow (CVE-2009-2347) Related: #510041 From jkeating at fedoraproject.org Sat Jul 25 08:45:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:45:56 +0000 (UTC) Subject: rpms/libtimidity/devel libtimidity.spec,1.7,1.8 Message-ID: <20090725084556.AD62811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtimidity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15329 Modified Files: libtimidity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtimidity.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtimidity/devel/libtimidity.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libtimidity.spec 25 Feb 2009 19:25:05 -0000 1.7 +++ libtimidity.spec 25 Jul 2009 08:45:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: libtimidity Version: 0.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MIDI to WAVE converter library Group: System Environment/Libraries License: LGPLv2+ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:46:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:46:11 +0000 (UTC) Subject: rpms/libtirpc/devel libtirpc.spec,1.50,1.51 Message-ID: <20090725084611.70A5711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtirpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15480 Modified Files: libtirpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtirpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtirpc/devel/libtirpc.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- libtirpc.spec 9 Jul 2009 20:06:18 -0000 1.50 +++ libtirpc.spec 25 Jul 2009 08:46:11 -0000 1.51 @@ -1,6 +1,6 @@ Name: libtirpc Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Transport Independent RPC Library Group: System Environment/Libraries License: SISSL and BSD @@ -126,6 +126,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Steve Dickson 0.2.0-3 - Updated to latest upstream tag: 0-2-1-rc3 Fixed the --disable-gss options From jkeating at fedoraproject.org Sat Jul 25 08:46:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:46:25 +0000 (UTC) Subject: rpms/libtlen/devel libtlen.spec,1.5,1.6 Message-ID: <20090725084625.9BD2411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtlen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15631 Modified Files: libtlen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtlen.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtlen/devel/libtlen.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libtlen.spec 25 Feb 2009 19:26:53 -0000 1.5 +++ libtlen.spec 25 Jul 2009 08:46:25 -0000 1.6 @@ -2,7 +2,7 @@ Name: libtlen Version: 0 -Release: 0.8.%{_snap}%{?dist} +Release: 0.9.%{_snap}%{?dist} Summary: Tlen.pl client library Summary(pl): Biblioteka kliencka Tlen.pl Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libtlen.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.9.20060309 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.8.20060309 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:46:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:46:40 +0000 (UTC) Subject: rpms/libtomcrypt/devel libtomcrypt.spec,1.10,1.11 Message-ID: <20090725084640.E639C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtomcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15785 Modified Files: libtomcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtomcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtomcrypt/devel/libtomcrypt.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libtomcrypt.spec 25 Feb 2009 19:27:52 -0000 1.10 +++ libtomcrypt.spec 25 Jul 2009 08:46:40 -0000 1.11 @@ -1,6 +1,6 @@ Name: libtomcrypt Version: 1.17 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A comprehensive, portable cryptographic toolkit Group: System Environment/Libraries License: Public Domain @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE doc/crypt.pdf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.17-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.17-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:46:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:46:56 +0000 (UTC) Subject: rpms/libtommath/devel libtommath.spec,1.5,1.6 Message-ID: <20090725084656.0398C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtommath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15958 Modified Files: libtommath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtommath.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtommath/devel/libtommath.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libtommath.spec 25 Feb 2009 19:28:52 -0000 1.5 +++ libtommath.spec 25 Jul 2009 08:46:55 -0000 1.6 @@ -1,6 +1,6 @@ Name: libtommath Version: 0.41 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A portable number theoretic multiple-precision integer library Group: System Environment/Libraries License: Public Domain @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %doc bn.pdf poster.pdf tommath.pdf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.41-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.41-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:47:11 +0000 (UTC) Subject: rpms/libtool/devel libtool.spec,1.76,1.77 Message-ID: <20090725084711.55EF611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16128 Modified Files: libtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtool/devel/libtool.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- libtool.spec 23 Jul 2009 02:07:10 -0000 1.76 +++ libtool.spec 25 Jul 2009 08:47:11 -0000 1.77 @@ -3,7 +3,7 @@ Summary: The GNU Portable Library Tool Name: libtool Version: 2.2.6 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ and LGPLv2+ and GFDL Group: Development/Tools Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}a.tar.gz @@ -142,6 +142,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Matthias Clasen - 2.2.6-12 - Rebuild for gcc 4.4.1 From jkeating at fedoraproject.org Sat Jul 25 08:47:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:47:24 +0000 (UTC) Subject: rpms/libtopology/devel libtopology.spec,1.3,1.4 Message-ID: <20090725084724.D098611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtopology/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16283 Modified Files: libtopology.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtopology.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtopology/devel/libtopology.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libtopology.spec 25 Feb 2009 19:31:00 -0000 1.3 +++ libtopology.spec 25 Jul 2009 08:47:24 -0000 1.4 @@ -1,6 +1,6 @@ name: libtopology Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: CPU Topology library Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/%{name}-%{version}/doc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:47:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:47:38 +0000 (UTC) Subject: rpms/libtorrent/devel libtorrent.spec,1.33,1.34 Message-ID: <20090725084738.A671411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16430 Modified Files: libtorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtorrent/devel/libtorrent.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libtorrent.spec 3 Jul 2009 21:14:37 -0000 1.33 +++ libtorrent.spec 25 Jul 2009 08:47:38 -0000 1.34 @@ -2,7 +2,7 @@ Name: libtorrent License: GPLv2+ Group: System Environment/Libraries Version: 0.12.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: BitTorrent library with a focus on high performance & good code URL: http://libtorrent.rakshasa.no/ Source0: http://libtorrent.rakshasa.no/downloads/libtorrent-%{version}.tar.gz @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Conrad Meyer - 0.12.5-1 - Bump version. From jkeating at fedoraproject.org Sat Jul 25 08:47:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:47:53 +0000 (UTC) Subject: rpms/libtranslate/devel libtranslate.spec,1.26,1.27 Message-ID: <20090725084753.8082E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtranslate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16588 Modified Files: libtranslate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtranslate.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtranslate/devel/libtranslate.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- libtranslate.spec 3 Mar 2009 17:43:05 -0000 1.26 +++ libtranslate.spec 25 Jul 2009 08:47:53 -0000 1.27 @@ -1,7 +1,7 @@ Name: libtranslate Summary: Natural language translation library Version: 0.99 -Release: 20%{?dist} +Release: 21%{?dist} License: BSD Group: System Environment/Libraries %define url http://savannah.nongnu.org/download/libtranslate @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Dmitry Butskoy - 0.99-20 - add more language pairs for google service (#487951, by Dwayne Bailey (dwayne at translate.org.za>) From jkeating at fedoraproject.org Sat Jul 25 08:48:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:48:09 +0000 (UTC) Subject: rpms/libtrash/devel libtrash.spec,1.3,1.4 Message-ID: <20090725084809.0168811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtrash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16765 Modified Files: libtrash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtrash/devel/libtrash.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libtrash.spec 22 Apr 2009 07:30:57 -0000 1.3 +++ libtrash.spec 25 Jul 2009 08:48:08 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Libraries to move files to a trash-folder on delete Name: libtrash Version: 3.2 -Release: 7%{dist} +Release: 8%{dist} Group: System Environment/Libraries License: GPLv2+ URL: http://pages.stern.nyu.edu/~marriaga/software/libtrash @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc README TODO COPYING CHANGE.LOG config.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Zdenek Prikryl 3.2-7 - Fixed usage of RPM_OPT_FLAGS From jkeating at fedoraproject.org Sat Jul 25 08:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:48:23 +0000 (UTC) Subject: rpms/libtunepimp/devel libtunepimp.spec,1.44,1.45 Message-ID: <20090725084823.6EDA411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtunepimp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16942 Modified Files: libtunepimp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtunepimp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtunepimp/devel/libtunepimp.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- libtunepimp.spec 6 Mar 2009 19:43:34 -0000 1.44 +++ libtunepimp.spec 25 Jul 2009 08:48:22 -0000 1.45 @@ -6,7 +6,7 @@ Summary: A library for creating MusicBrainz enabled tagging applications Name: libtunepimp Version: 0.5.3 -Release: 15%{?dist} +Release: 16%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -167,6 +167,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.3-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Rex Dieter - 0.5.3-15 - glibc210_strrchr patch From jkeating at fedoraproject.org Sat Jul 25 08:48:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:48:37 +0000 (UTC) Subject: rpms/libtwin/devel libtwin.spec,1.11,1.12 Message-ID: <20090725084837.80B6911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libtwin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17150 Modified Files: libtwin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libtwin.spec =================================================================== RCS file: /cvs/pkgs/rpms/libtwin/devel/libtwin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- libtwin.spec 25 Feb 2009 19:35:54 -0000 1.11 +++ libtwin.spec 25 Jul 2009 08:48:37 -0000 1.12 @@ -1,6 +1,6 @@ Name: libtwin Version: 0.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tiny Window System Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libtwin.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:48:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:48:53 +0000 (UTC) Subject: rpms/libuninameslist/devel libuninameslist.spec,1.14,1.15 Message-ID: <20090725084853.174A111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libuninameslist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17311 Modified Files: libuninameslist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libuninameslist.spec =================================================================== RCS file: /cvs/pkgs/rpms/libuninameslist/devel/libuninameslist.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- libuninameslist.spec 25 Feb 2009 19:36:57 -0000 1.14 +++ libuninameslist.spec 25 Jul 2009 08:48:52 -0000 1.15 @@ -1,6 +1,6 @@ Name: libuninameslist Version: 20080409 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library providing Unicode character names and annotations @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20080409-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20080409-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:49:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:49:07 +0000 (UTC) Subject: rpms/libuninum/devel libuninum.spec,1.3,1.4 Message-ID: <20090725084907.EA79111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libuninum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17477 Modified Files: libuninum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libuninum.spec =================================================================== RCS file: /cvs/pkgs/rpms/libuninum/devel/libuninum.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libuninum.spec 25 Feb 2009 19:37:57 -0000 1.3 +++ libuninum.spec 25 Jul 2009 08:49:07 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Library for converting unicode strings to numbers Name: libuninum Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} # numconv is GPLv2, lib is LGPLv2 License: GPLv2 and LGPLv2 Group: Development/Libraries @@ -69,6 +69,9 @@ using %{name}, you will need to install %exclude %{_libdir}/libuninum.la %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:49:38 +0000 (UTC) Subject: rpms/libunwind/devel libunwind.spec,1.31,1.32 Message-ID: <20090725084938.D30E311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libunwind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17732 Modified Files: libunwind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libunwind.spec =================================================================== RCS file: /cvs/pkgs/rpms/libunwind/devel/libunwind.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- libunwind.spec 15 Jul 2009 08:39:50 -0000 1.31 +++ libunwind.spec 25 Jul 2009 08:49:38 -0000 1.32 @@ -9,7 +9,7 @@ Summary: An unwinding library Name: libunwind Version: 0.99 %define snapshot 20090430betagit4b8404d1 -Release: 0.11.%{snapshot}%{?dist} +Release: 0.12.%{snapshot}%{?dist} License: BSD Group: Development/Debuggers Source: libunwind-%{snapshot}.tar.bz2 @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libunwind*.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99-0.12.20090430betagit4b8404d1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Jan Kratochvil - 0.99-0.11.20090430betagit4b8404d1 - Disable the libunwind-setjmp library as no longer compatible with glibc and no Fedora dependencies on it (FTBSFS BZ 511562). From jkeating at fedoraproject.org Sat Jul 25 08:49:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:49:53 +0000 (UTC) Subject: rpms/libupnp/devel libupnp.spec,1.24,1.25 Message-ID: <20090725084953.F0CF211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libupnp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17905 Modified Files: libupnp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libupnp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libupnp/devel/libupnp.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libupnp.spec 25 Feb 2009 19:40:04 -0000 1.24 +++ libupnp.spec 25 Jul 2009 08:49:53 -0000 1.25 @@ -1,7 +1,7 @@ Version: 1.6.6 Summary: Universal Plug and Play (UPnP) SDK Name: libupnp -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.libupnp.org/ @@ -75,6 +75,9 @@ make install DESTDIR=$RPM_BUILD_ROOT rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:50:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:50:08 +0000 (UTC) Subject: rpms/libusb/devel libusb.spec,1.46,1.47 Message-ID: <20090725085008.885C811C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libusb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18061 Modified Files: libusb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libusb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libusb/devel/libusb.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- libusb.spec 25 Feb 2009 19:40:57 -0000 1.46 +++ libusb.spec 25 Jul 2009 08:50:08 -0000 1.47 @@ -1,7 +1,7 @@ Summary: A library which allows userspace access to USB devices Name: libusb Version: 0.1.12 -Release: 21%{?dist} +Release: 22%{?dist} Source0: http://prdownloads.sourceforge.net/libusb/%{name}-%{version}.tar.gz Patch0: libusb-0.1.12-libusbconfig.patch Patch1: libusb-0.1.12-memset.patch @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.12-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.12-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:50:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:50:22 +0000 (UTC) Subject: rpms/libusb1/devel libusb1.spec,1.8,1.9 Message-ID: <20090725085022.C7DDA11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libusb1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18235 Modified Files: libusb1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libusb1.spec =================================================================== RCS file: /cvs/pkgs/rpms/libusb1/devel/libusb1.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libusb1.spec 15 Jun 2009 05:34:28 -0000 1.8 +++ libusb1.spec 25 Jul 2009 08:50:22 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A library which allows userspace access to USB devices Name: libusb1 Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://downloads.sourceforge.net/libusb/libusb-%{version}.tar.bz2 License: LGPLv2+ Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Jindrich Novy 1.0.2-1 - update to 1.0.2 From jkeating at fedoraproject.org Sat Jul 25 08:50:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:50:38 +0000 (UTC) Subject: rpms/libuser/devel libuser.spec,1.82,1.83 Message-ID: <20090725085038.2ECA311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libuser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18405 Modified Files: libuser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libuser.spec =================================================================== RCS file: /cvs/pkgs/rpms/libuser/devel/libuser.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- libuser.spec 15 Apr 2009 15:45:29 -0000 1.82 +++ libuser.spec 25 Jul 2009 08:50:37 -0000 1.83 @@ -2,7 +2,7 @@ Name: libuser Version: 0.56.10 -Release: 1 +Release: 2 Group: System Environment/Base License: LGPLv2+ URL: https://fedorahosted.org/libuser/ @@ -98,6 +98,9 @@ python -c "import libuser" %{_datadir}/gtk-doc/html/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.56.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Miloslav Trma? - 0.56.10-1 - Update to libuser-0.56.10. From jkeating at fedoraproject.org Sat Jul 25 08:50:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:50:51 +0000 (UTC) Subject: rpms/libutempter/devel libutempter.spec,1.6,1.7 Message-ID: <20090725085051.E93F411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libutempter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18560 Modified Files: libutempter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libutempter.spec =================================================================== RCS file: /cvs/pkgs/rpms/libutempter/devel/libutempter.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libutempter.spec 25 Feb 2009 19:43:32 -0000 1.6 +++ libutempter.spec 25 Jul 2009 08:50:51 -0000 1.7 @@ -3,7 +3,7 @@ Summary: A privileged helper for utmp/wtmp updates Name: libutempter Version: 1.1.5 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 Group: System Environment/Libraries URL: ftp://ftp.altlinux.org/pub/people/ldv/utempter @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libutempter.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:51:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:51:05 +0000 (UTC) Subject: rpms/libv4l/devel libv4l.spec,1.19,1.20 Message-ID: <20090725085105.BED9111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libv4l/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18756 Modified Files: libv4l.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libv4l.spec =================================================================== RCS file: /cvs/pkgs/rpms/libv4l/devel/libv4l.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libv4l.spec 9 Jul 2009 12:20:44 -0000 1.19 +++ libv4l.spec 25 Jul 2009 08:51:05 -0000 1.20 @@ -1,6 +1,6 @@ Name: libv4l Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of video4linux support libraries Group: System Environment/Libraries License: LGPLv2+ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Hans de Goede 0.6.0-1 - New upstream release 0.6.0 - This fixes a divide by 0 crash in the whitebalancing code (#507748) From jkeating at fedoraproject.org Sat Jul 25 08:51:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:51:20 +0000 (UTC) Subject: rpms/libvidcap/devel libvidcap.spec,1.3,1.4 Message-ID: <20090725085120.98A7111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvidcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18924 Modified Files: libvidcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvidcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvidcap/devel/libvidcap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libvidcap.spec 25 Feb 2009 19:45:27 -0000 1.3 +++ libvidcap.spec 25 Jul 2009 08:51:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: libvidcap Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cross-platform video capture library Group: System Environment/Libraries License: LGPLv2+ @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_includedir}/vidcap/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:51:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:51:35 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.145,1.146 Message-ID: <20090725085135.71B8211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19092 Modified Files: libvirt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- libvirt.spec 10 Jul 2009 22:08:43 -0000 1.145 +++ libvirt.spec 25 Jul 2009 08:51:35 -0000 1.146 @@ -62,7 +62,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.6.5 -Release: 2%{?dist}%{?extra_release} +Release: 3%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-%{version}.tar.gz @@ -558,6 +558,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Richard W.M. Jones - 0.6.5-2.fc12 - Bump release number to rebuild against new libparted. From jkeating at fedoraproject.org Sat Jul 25 08:51:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:51:49 +0000 (UTC) Subject: rpms/libvirt-cim/devel libvirt-cim.spec,1.27,1.28 Message-ID: <20090725085149.C6A1811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvirt-cim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19266 Modified Files: libvirt-cim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvirt-cim.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-cim/devel/libvirt-cim.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libvirt-cim.spec 16 Jul 2009 00:18:25 -0000 1.27 +++ libvirt-cim.spec 25 Jul 2009 08:51:49 -0000 1.28 @@ -3,7 +3,7 @@ Summary: A CIM provider for libvirt Name: libvirt-cim Version: 0.5.6 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries Source: libvirt-cim-%{version}.tar.gz @@ -122,6 +122,9 @@ rm -fr $RPM_BUILD_ROOT /etc/ld.so.conf.d/libvirt-cim.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Kaitlin Rupert - 0.5.6-1 - Updated to latest upstream source From jkeating at fedoraproject.org Sat Jul 25 08:52:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:52:04 +0000 (UTC) Subject: rpms/libvirt-java/devel libvirt-java.spec,1.4,1.5 Message-ID: <20090725085204.4EF3A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvirt-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19444 Modified Files: libvirt-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvirt-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-java/devel/libvirt-java.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libvirt-java.spec 25 Feb 2009 19:48:23 -0000 1.4 +++ libvirt-java.spec 25 Jul 2009 08:52:04 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Java bindings for the libvirt virtualization API Name: libvirt-java Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Libraries Source: http://libvirt.org/sources/java/libvirt-java-%{version}.tar.gz @@ -92,6 +92,9 @@ rm -rf %{buildroot} /usr/share/javadoc/%{name}-%{version} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:52:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:52:18 +0000 (UTC) Subject: rpms/libvirt-qpid/devel libvirt-qpid.spec,1.6,1.7 Message-ID: <20090725085218.A216211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvirt-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19646 Modified Files: libvirt-qpid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvirt-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt-qpid/devel/libvirt-qpid.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libvirt-qpid.spec 7 Jul 2009 20:19:23 -0000 1.6 +++ libvirt-qpid.spec 25 Jul 2009 08:52:18 -0000 1.7 @@ -1,7 +1,7 @@ Summary: QPid QMF interface to Libvirt Name: libvirt-qpid Version: 0.2.16 -Release: 5%{?dist} +Release: 6%{?dist} Source: libvirt-qpid-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-root License: LGPLv2+ @@ -73,6 +73,9 @@ test "x$RPM_BUILD_ROOT" != "x" && rm -rf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.16-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Ian Main - 0.2.16-5 - Bump for new build. From jkeating at fedoraproject.org Sat Jul 25 08:52:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:52:32 +0000 (UTC) Subject: rpms/libvisual/devel libvisual.spec,1.21,1.22 Message-ID: <20090725085232.9E24D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvisual/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19808 Modified Files: libvisual.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvisual.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvisual/devel/libvisual.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libvisual.spec 7 Mar 2009 17:33:58 -0000 1.21 +++ libvisual.spec 25 Jul 2009 08:52:32 -0000 1.22 @@ -2,7 +2,7 @@ Name: libvisual Version: 0.4.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Abstraction library for audio visualisation plugins Group: Applications/Multimedia @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Caol?n McNamara - 0.4.0-8 - defining inline causes problems trying to build against libvisual headers, e.g. libvisual-plugins From jkeating at fedoraproject.org Sat Jul 25 08:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:52:47 +0000 (UTC) Subject: rpms/libvisual-plugins/devel libvisual-plugins.spec,1.17,1.18 Message-ID: <20090725085247.19BBF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvisual-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19978 Modified Files: libvisual-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvisual-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvisual-plugins/devel/libvisual-plugins.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libvisual-plugins.spec 25 Feb 2009 19:50:12 -0000 1.17 +++ libvisual-plugins.spec 25 Jul 2009 08:52:46 -0000 1.18 @@ -1,6 +1,6 @@ Name: libvisual-plugins Version: 0.4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Plugins for use with libvisual Group: Applications/Multimedia @@ -75,6 +75,9 @@ rm -rf %buildroot %_datadir/%{name}-0.4/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:53:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:53:00 +0000 (UTC) Subject: rpms/libvmime/devel libvmime.spec,1.1,1.2 Message-ID: <20090725085300.C2ECA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvmime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20144 Modified Files: libvmime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvmime.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvmime/devel/libvmime.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libvmime.spec 22 Apr 2009 08:59:40 -0000 1.1 +++ libvmime.spec 25 Jul 2009 08:53:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: libvmime Version: 0.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Powerful library for MIME messages and Internet messaging services Group: System Environment/Libraries License: GPLv2+ @@ -88,6 +88,9 @@ rm -rf %{buildroot} %exclude %{_libdir}/%{name}.la %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Jeroen van Meeuwen - 0.9.0-3 - From feedback in review request (#494073, rsc) From jkeating at fedoraproject.org Sat Jul 25 08:53:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:53:14 +0000 (UTC) Subject: rpms/libvncserver/devel libvncserver.spec,1.7,1.8 Message-ID: <20090725085314.CF6C511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvncserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20308 Modified Files: libvncserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvncserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvncserver/devel/libvncserver.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libvncserver.spec 24 May 2009 04:30:29 -0000 1.7 +++ libvncserver.spec 25 Jul 2009 08:53:14 -0000 1.8 @@ -8,7 +8,7 @@ Summary: Library to make writing a vnc server easy Name: libvncserver Version: 0.9.7 -Release: 2%{?dist} +Release: 3%{?dist} # NOTE: --with-tightvnc-filetransfer => GPLv2 License: GPLv2+ Group: System Environment/Libraries @@ -122,6 +122,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Rex Dieter - 0.9.7-3 - Socket is not closed when disconnecting from server (#501895) From jkeating at fedoraproject.org Sat Jul 25 08:53:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:53:28 +0000 (UTC) Subject: rpms/libvoikko/devel libvoikko.spec,1.24,1.25 Message-ID: <20090725085328.5B2FB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvoikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20481 Modified Files: libvoikko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvoikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvoikko/devel/libvoikko.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- libvoikko.spec 2 May 2009 17:42:55 -0000 1.24 +++ libvoikko.spec 25 Jul 2009 08:53:28 -0000 1.25 @@ -1,6 +1,6 @@ Name: libvoikko Version: 2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Voikko is a library for spellcheckers and hyphenators Group: System Environment/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libvoikko.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Ville-Pekka Vainio - 2.1-1 - 2.1 final, including fixes to grammar checking From jkeating at fedoraproject.org Sat Jul 25 08:53:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:53:44 +0000 (UTC) Subject: rpms/libvorbis/devel libvorbis.spec,1.38,1.39 Message-ID: <20090725085344.41A1D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20688 Modified Files: libvorbis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvorbis/devel/libvorbis.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- libvorbis.spec 13 Jul 2009 15:22:49 -0000 1.38 +++ libvorbis.spec 25 Jul 2009 08:53:44 -0000 1.39 @@ -1,7 +1,7 @@ Summary: The Vorbis General Audio Compression Codec. Name: libvorbis Version: 1.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Group: System Environment/Libraries License: BSD @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Adam Jackson 1.2.3-1 - libvorbis 1.2.3 From jkeating at fedoraproject.org Sat Jul 25 08:53:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:53:59 +0000 (UTC) Subject: rpms/libvpd/devel libvpd.spec,1.10,1.11 Message-ID: <20090725085359.1820D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20882 Modified Files: libvpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvpd/devel/libvpd.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libvpd.spec 16 Mar 2009 11:34:48 -0000 1.10 +++ libvpd.spec 25 Jul 2009 08:53:58 -0000 1.11 @@ -3,7 +3,7 @@ Name: %{name} Version: %{version} -Release: 3%{?dist} +Release: 4%{?dist} Summary: VPD Database access library for lsvpd Group: System Environment/Libraries @@ -60,6 +60,9 @@ Contains header files for building with %{_libdir}/pkgconfig/libvpd_cxx-2.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Eric Munson 2.1.0-3 - Bump dist for rebuild From jkeating at fedoraproject.org Sat Jul 25 08:54:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:54:15 +0000 (UTC) Subject: rpms/libvte-java/devel libvte-java.spec,1.37,1.38 Message-ID: <20090725085415.70E2011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libvte-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21070 Modified Files: libvte-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libvte-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvte-java/devel/libvte-java.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- libvte-java.spec 25 Feb 2009 19:55:03 -0000 1.37 +++ libvte-java.spec 25 Jul 2009 08:54:14 -0000 1.38 @@ -1,7 +1,7 @@ Summary: Wrapper library for GNOME VTE Name: libvte-java Version: 0.12.1 -Release: 14%{?dist} +Release: 15%{?dist} URL: http://java-gnome.sourceforge.net Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.12/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/java/*.zip %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:54:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:54:30 +0000 (UTC) Subject: rpms/libwfut/devel libwfut.spec,1.9,1.10 Message-ID: <20090725085430.D170C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwfut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21261 Modified Files: libwfut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwfut.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwfut/devel/libwfut.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libwfut.spec 27 Feb 2009 21:53:19 -0000 1.9 +++ libwfut.spec 25 Jul 2009 08:54:30 -0000 1.10 @@ -3,7 +3,7 @@ Name: libwfut Version: 0.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Software updater tool for WorldForge applications Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Alexey Torkhov - 0.2.1-5 - Fixing build on recent compiler From jkeating at fedoraproject.org Sat Jul 25 08:54:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:54:46 +0000 (UTC) Subject: rpms/libwiimote/devel libwiimote.spec,1.8,1.9 Message-ID: <20090725085446.63E5311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwiimote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21422 Modified Files: libwiimote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwiimote.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwiimote/devel/libwiimote.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libwiimote.spec 25 Feb 2009 19:58:01 -0000 1.8 +++ libwiimote.spec 25 Jul 2009 08:54:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: libwiimote Version: 0.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Simple Wiimote Library for Linux Group: System Environment/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:55:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:55:02 +0000 (UTC) Subject: rpms/libwmf/devel libwmf.spec,1.37,1.38 Message-ID: <20090725085502.1934211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwmf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21604 Modified Files: libwmf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwmf.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwmf/devel/libwmf.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- libwmf.spec 26 May 2009 12:25:15 -0000 1.37 +++ libwmf.spec 25 Jul 2009 08:55:01 -0000 1.38 @@ -1,7 +1,7 @@ Summary: Windows MetaFile Library Name: libwmf Version: 0.2.8.4 -Release: 20%{?dist} +Release: 21%{?dist} Group: System Environment/Libraries License: LGPLv2+ Source: http://downloads.sourceforge.net/wvware/%{name}-%{version}.tar.gz @@ -123,6 +123,9 @@ sed -i $RPM_BUILD_ROOT%{_datadir}/libwmf rm -r $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.8.4-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Caol?n McNamara - 0.2.8.4-20 - Resolves: CVE-2009-1364 From jkeating at fedoraproject.org Sat Jul 25 08:55:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:55:32 +0000 (UTC) Subject: rpms/libwpd/devel libwpd.spec,1.45,1.46 Message-ID: <20090725085532.09B1811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21947 Modified Files: libwpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwpd/devel/libwpd.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- libwpd.spec 25 Feb 2009 20:00:05 -0000 1.45 +++ libwpd.spec 25 Jul 2009 08:55:31 -0000 1.46 @@ -1,7 +1,7 @@ Name: libwpd Summary: Library for reading and converting WordPerfect(tm) documents Version: 0.8.14 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Group: System Environment/Libraries URL: http://libwpd.sf.net/ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/libwpd-0.8/libwpd/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:55:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:55:17 +0000 (UTC) Subject: rpms/libwnck/devel libwnck.spec,1.110,1.111 Message-ID: <20090725085517.3E7F411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21773 Modified Files: libwnck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwnck/devel/libwnck.spec,v retrieving revision 1.110 retrieving revision 1.111 diff -u -p -r1.110 -r1.111 --- libwnck.spec 15 Jul 2009 16:08:04 -0000 1.110 +++ libwnck.spec 25 Jul 2009 08:55:17 -0000 1.111 @@ -6,7 +6,7 @@ Summary: Window Navigator Construction Kit Name: libwnck Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://download.gnome.org/sources/libwnck/ Source0: http://download.gnome.org/sources/libwnck/2.27/%{name}-%{version}.tar.bz2 License: LGPLv2+ @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/libwnck %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 08:55:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:55:47 +0000 (UTC) Subject: rpms/libwpg/devel libwpg.spec,1.2,1.3 Message-ID: <20090725085547.0752811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22129 Modified Files: libwpg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwpg/devel/libwpg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libwpg.spec 25 Feb 2009 20:01:03 -0000 1.2 +++ libwpg.spec 25 Jul 2009 08:55:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: libwpg Version: 0.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library for reading WordPerfect Graphics images Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:56:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:56:01 +0000 (UTC) Subject: rpms/libwps/devel libwps.spec,1.1,1.2 Message-ID: <20090725085601.EC46F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22321 Modified Files: libwps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwps.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwps/devel/libwps.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libwps.spec 17 Mar 2009 10:52:58 -0000 1.1 +++ libwps.spec 25 Jul 2009 08:56:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: libwps Version: 0.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for reading and converting Microsoft Works word processor documents Group: System Environment/Libraries @@ -119,6 +119,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 2009 Simon Wesp - 0.1.2-5 - Correct DOC issues (again) RHBZ: #484933 / C14 From jkeating at fedoraproject.org Sat Jul 25 08:56:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:56:17 +0000 (UTC) Subject: rpms/libwvstreams/devel libwvstreams.spec,1.40,1.41 Message-ID: <20090725085617.A777711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libwvstreams/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22508 Modified Files: libwvstreams.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libwvstreams.spec =================================================================== RCS file: /cvs/pkgs/rpms/libwvstreams/devel/libwvstreams.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- libwvstreams.spec 27 Jun 2009 17:22:43 -0000 1.40 +++ libwvstreams.spec 25 Jul 2009 08:56:17 -0000 1.41 @@ -1,6 +1,6 @@ Name: libwvstreams Version: 4.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: WvStreams is a network programming library written in C++ Source: http://wvstreams.googlecode.com/files/wvstreams-%{version}.tar.gz Patch1: wvstreams-4.2.2-multilib.patch @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Ondrej Vasik - 4.6-3 - another fix for build with dbus(#479144) From jkeating at fedoraproject.org Sat Jul 25 08:56:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:56:32 +0000 (UTC) Subject: rpms/libx86/devel libx86.spec,1.5,1.6 Message-ID: <20090725085632.8C24411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libx86/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22698 Modified Files: libx86.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libx86.spec =================================================================== RCS file: /cvs/pkgs/rpms/libx86/devel/libx86.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libx86.spec 25 Feb 2009 20:02:54 -0000 1.5 +++ libx86.spec 25 Jul 2009 08:56:32 -0000 1.6 @@ -1,6 +1,6 @@ Name: libx86 Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for making real-mode x86 calls Group: System Environment/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/*.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:56:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:56:47 +0000 (UTC) Subject: rpms/libxcb/devel libxcb.spec,1.27,1.28 Message-ID: <20090725085647.3ACEA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22857 Modified Files: libxcb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxcb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxcb/devel/libxcb.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libxcb.spec 14 Jul 2009 15:54:53 -0000 1.27 +++ libxcb.spec 25 Jul 2009 08:56:47 -0000 1.28 @@ -7,7 +7,7 @@ Name: libxcb Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C binding to the X11 protocol Group: System Environment/Libraries @@ -160,6 +160,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Adam Jackson 1.3-1 - libxcb 1.3 - List DSO versions explicitly. From jkeating at fedoraproject.org Sat Jul 25 08:57:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:57:00 +0000 (UTC) Subject: rpms/libxdg-basedir/devel libxdg-basedir.spec,1.1,1.2 Message-ID: <20090725085700.ECA4611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxdg-basedir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23032 Modified Files: libxdg-basedir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxdg-basedir.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxdg-basedir/devel/libxdg-basedir.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libxdg-basedir.spec 13 Jun 2009 01:04:13 -0000 1.1 +++ libxdg-basedir.spec 25 Jul 2009 08:57:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: libxdg-basedir Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Implementation of the XDG Base Directory Specifications Group: System Environment/Libraries @@ -85,6 +85,9 @@ make check %doc doc/html/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Michal Nowak - 1.0.1-2 - removed bogus ownership of %%{_libdir}/pkgconfig/ - "docs" sub-package renamed to "doc" From jkeating at fedoraproject.org Sat Jul 25 08:57:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:57:14 +0000 (UTC) Subject: rpms/libxfce4menu/devel libxfce4menu.spec,1.7,1.8 Message-ID: <20090725085714.CEEB511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxfce4menu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23204 Modified Files: libxfce4menu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxfce4menu.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxfce4menu/devel/libxfce4menu.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libxfce4menu.spec 20 Apr 2009 02:05:49 -0000 1.7 +++ libxfce4menu.spec 25 Jul 2009 08:57:14 -0000 1.8 @@ -1,6 +1,6 @@ Name: libxfce4menu Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A freedesktop.org compliant menu implementation for Xfce Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}-0.1.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Sat Jul 25 08:57:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:57:28 +0000 (UTC) Subject: rpms/libxfce4util/devel libxfce4util.spec,1.28,1.29 Message-ID: <20090725085728.E0E6A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxfce4util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23383 Modified Files: libxfce4util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxfce4util.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxfce4util/devel/libxfce4util.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- libxfce4util.spec 20 Apr 2009 01:59:12 -0000 1.28 +++ libxfce4util.spec 25 Jul 2009 08:57:28 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Utility library for the Xfce4 desktop environment Name: libxfce4util Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/libxfce4util-%{version}.tar.bz2 @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/libxfce4util/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Sat Jul 25 08:57:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:57:58 +0000 (UTC) Subject: rpms/libxkbfile/devel libxkbfile.spec,1.27,1.28 Message-ID: <20090725085758.D918011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxkbfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23760 Modified Files: libxkbfile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxkbfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxkbfile/devel/libxkbfile.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libxkbfile.spec 23 Jul 2009 13:51:53 -0000 1.27 +++ libxkbfile.spec 25 Jul 2009 08:57:58 -0000 1.28 @@ -1,7 +1,7 @@ Summary: X.Org X11 libxkbfile runtime library Name: libxkbfile Version: 1.0.4 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xkbfile.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.4-9 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Sat Jul 25 08:58:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:58:14 +0000 (UTC) Subject: rpms/libxklavier/devel libxklavier.spec,1.51,1.52 Message-ID: <20090725085814.1538111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxklavier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23951 Modified Files: libxklavier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxklavier.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxklavier/devel/libxklavier.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- libxklavier.spec 9 Jul 2009 18:48:53 -0000 1.51 +++ libxklavier.spec 25 Jul 2009 08:58:13 -0000 1.52 @@ -1,7 +1,7 @@ Summary: High-level API for X Keyboard Extension Name: libxklavier Version: 4.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://gswitchit.sourceforge.net/ @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/libxklavier/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Matthias Clasen - 4.0-3 - Avoid a critical warning at runtime From jkeating at fedoraproject.org Sat Jul 25 08:58:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:58:29 +0000 (UTC) Subject: rpms/libxml/devel libxml.spec,1.12,1.13 Message-ID: <20090725085829.945AC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24126 Modified Files: libxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxml/devel/libxml.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- libxml.spec 21 Apr 2009 10:22:03 -0000 1.12 +++ libxml.spec 25 Jul 2009 08:58:29 -0000 1.13 @@ -2,7 +2,7 @@ Name: libxml Summary: Old XML library for Gnome-1 application compatibility Epoch: 1 Version: 1.8.17 -Release: 22%{?dist} +Release: 23%{?dist} License: LGPLv2+ or W3C Group: Development/Libraries URL: http://veillard.com/XML/ @@ -71,6 +71,9 @@ fi %exclude %{_libdir}/libxml.la %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.8.17-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Paul Howarth 1:1.8.17-22 - rebuild for %%{_isa} provides/requires From jkeating at fedoraproject.org Sat Jul 25 08:58:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:58:45 +0000 (UTC) Subject: rpms/libxml++/devel libxml++.spec,1.27,1.28 Message-ID: <20090725085845.3D1CA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxml++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24304 Modified Files: libxml++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxml++.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxml++/devel/libxml++.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- libxml++.spec 12 Apr 2009 08:59:35 -0000 1.27 +++ libxml++.spec 25 Jul 2009 08:58:45 -0000 1.28 @@ -1,6 +1,6 @@ Name: libxml++ Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ wrapper for the libxml2 XML parser library Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Denis Leroy - 2.26.0-1 - Update to upstream 2.26.0 (to match Gnome release) From jkeating at fedoraproject.org Sat Jul 25 08:59:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:59:00 +0000 (UTC) Subject: rpms/libxml2/devel libxml2.spec,1.70,1.71 Message-ID: <20090725085900.665D311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxml2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24465 Modified Files: libxml2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxml2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxml2/devel/libxml2.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- libxml2.spec 25 Feb 2009 20:10:22 -0000 1.70 +++ libxml2.spec 25 Jul 2009 08:59:00 -0000 1.71 @@ -1,7 +1,7 @@ Summary: Library providing XML and HTML support Name: libxml2 Version: 2.7.3 -Release: 2%{?dist}%{?extra_release} +Release: 3%{?dist}%{?extra_release} License: MIT Group: Development/Libraries Source: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz @@ -141,6 +141,9 @@ rm -fr %{buildroot} %doc doc/python.html %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:59:17 +0000 (UTC) Subject: rpms/libxnm/devel libxnm.spec,1.2,1.3 Message-ID: <20090725085917.0EB9511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxnm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24655 Modified Files: libxnm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxnm.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxnm/devel/libxnm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libxnm.spec 25 Feb 2009 20:11:23 -0000 1.2 +++ libxnm.spec 25 Jul 2009 08:59:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: libxnm Version: 0.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for parsing the XNM format Group: System Environment/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:59:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:59:31 +0000 (UTC) Subject: rpms/libxslt/devel libxslt.spec,1.57,1.58 Message-ID: <20090725085931.33ECF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxslt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24823 Modified Files: libxslt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxslt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxslt/devel/libxslt.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- libxslt.spec 25 Feb 2009 20:12:19 -0000 1.57 +++ libxslt.spec 25 Jul 2009 08:59:30 -0000 1.58 @@ -1,7 +1,7 @@ Summary: Library providing the Gnome XSLT engine Name: libxslt Version: 1.1.24 -Release: 4%{?dist}%{?extra_release} +Release: 5%{?dist}%{?extra_release} License: MIT Group: Development/Libraries Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz @@ -127,6 +127,9 @@ rm -fr %{buildroot} %doc python/tests/*.xsl %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.24-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.24-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:59:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:59:45 +0000 (UTC) Subject: rpms/libyahoo2/devel libyahoo2.spec,1.6,1.7 Message-ID: <20090725085945.3AE8111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libyahoo2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24994 Modified Files: libyahoo2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libyahoo2.spec =================================================================== RCS file: /cvs/pkgs/rpms/libyahoo2/devel/libyahoo2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libyahoo2.spec 25 Feb 2009 20:13:15 -0000 1.6 +++ libyahoo2.spec 25 Jul 2009 08:59:45 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Library for the Yahoo! Messenger Protocol Name: libyahoo2 Version: 0.7.7 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: GPLv2 Url: http://libyahoo2.sourceforge.net/ @@ -58,6 +58,9 @@ iconv -f iso8859-1 -t UTF8 NEWS > NEWS.u %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 08:59:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:59:57 +0000 (UTC) Subject: rpms/libyaml/devel libyaml.spec,1.3,1.4 Message-ID: <20090725085957.F37B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libyaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25146 Modified Files: libyaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libyaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/libyaml/devel/libyaml.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libyaml.spec 22 Jul 2009 18:04:18 -0000 1.3 +++ libyaml.spec 25 Jul 2009 08:59:57 -0000 1.4 @@ -4,7 +4,7 @@ Name: libyaml Version: 0.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: YAML 1.1 parser and emitter written in C Group: System Environment/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 John Eckersberg - 0.1.2-4 - Minor tweaks to spec file - Enable %%check section From jkeating at fedoraproject.org Sat Jul 25 09:00:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 09:00:12 +0000 (UTC) Subject: rpms/libytnef/devel libytnef.spec,1.3,1.4 Message-ID: <20090725090012.CC57311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libytnef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25320 Modified Files: libytnef.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libytnef.spec =================================================================== RCS file: /cvs/pkgs/rpms/libytnef/devel/libytnef.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libytnef.spec 25 Feb 2009 20:14:14 -0000 1.3 +++ libytnef.spec 25 Jul 2009 09:00:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: libytnef Version: 1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: TNEF Stream Parser Library Group: System Environment/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From harald at fedoraproject.org Sat Jul 25 09:11:40 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sat, 25 Jul 2009 09:11:40 +0000 (UTC) Subject: rpms/dracut/devel .cvsignore, 1.4, 1.5 dracut.spec, 1.5, 1.6 sources, 1.5, 1.6 Message-ID: <20090725091140.6CED011C02BC@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30537 Modified Files: .cvsignore dracut.spec sources Log Message: * Fri Jul 24 2009 Harald Hoyer 0.7-1 - version 0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jul 2009 14:02:20 -0000 1.4 +++ .cvsignore 25 Jul 2009 09:11:39 -0000 1.5 @@ -1 +1 @@ -dracut-0.5.tar.bz2 +dracut-0.7.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- dracut.spec 24 Jul 2009 20:30:08 -0000 1.5 +++ dracut.spec 25 Jul 2009 09:11:39 -0000 1.6 @@ -12,8 +12,8 @@ %endif Name: dracut -Version: 0.5 -Release: 2%{?rdist} +Version: 0.7 +Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base License: GPLv2+ @@ -38,6 +38,7 @@ Requires: filesystem >= 2.1.0, cpio, dev Requires: e2fsprogs >= 1.38-12, libselinux, libsepol, coreutils Requires: mdadm, elfutils-libelf, plymouth >= 0.7.0 Requires: cryptsetup-luks +Requires: bridge-utils %ifnarch s390 s390x Requires: dmraid Requires: kbd @@ -51,25 +52,43 @@ BuildArch: noarch %description dracut is a new, event-driven initramfs infrastructure based around udev. - %package generic -Summary: Metapackage to build a generic initramfs +Summary: Metapackage to build a generic initramfs with dracut Requires: %{name} = %{version}-%{release} Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute -Requires: kernel-firmware +Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar + +%description generic +This package requires everything which is needed to build a generic +all purpose initramfs with dracut. + +%package kernel +Summary: Metapackage to build generic initramfs with dracut with only kernel modules +Requires: %{name} = %{version}-%{release} Requires: ql2100-firmware Requires: ql2200-firmware Requires: ql23xx-firmware Requires: ql2400-firmware Requires: ql2500-firmware -Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar -%description generic -This package requires everything which is needed to build a generic -all purpose initramfs. +%description kernel +This package requires everything which is needed to build a initramfs with all +kernel modules and firmware files needed by dracut modules. + +%package tools +Summary: dracut tools to build the local initramfs +Requires: %{name} = %{version}-%{release} +Requires: ql2100-firmware +Requires: ql2200-firmware +Requires: ql23xx-firmware +Requires: ql2400-firmware +Requires: ql2500-firmware + +%description tools +This package contains tools to assemble the local initrd and host configuration. %prep %setup -q -n %{name}-%{version}%{?dashgittag} @@ -86,6 +105,9 @@ make install DESTDIR=$RPM_BUILD_ROOT sbi rm -f $RPM_BUILD_ROOT/sbin/switch_root %endif +mkdir -p $RPM_BUILD_ROOT/boot/dracut +mkdir -p $RPM_BUILD_ROOT/var/lib/dracut/overlay + %clean rm -rf $RPM_BUILD_ROOT @@ -93,7 +115,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut -/sbin/dracut-gencmdline %if 0%{?with_switch_root} /sbin/switch_root %endif @@ -107,9 +128,25 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README.generic +%files kernel +%defattr(-,root,root,0755) +%doc README.kernel + +%files tools +%defattr(-,root,root,0755) +%doc COPYING +/sbin/dracut-gencmdline +/sbin/dracut-catimages +%dir /boot/dracut +%dir /var/lib/dracut +%dir /var/lib/dracut/overlay + %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Fri Jul 24 2009 Harald Hoyer 0.7-1 +- version 0.7 + +* Wed Jul 22 2009 Harald Hoyer 0.6-1 +- version 0.6 * Fri Jul 17 2009 Harald Hoyer 0.5-1 - version 0.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jul 2009 14:02:20 -0000 1.5 +++ sources 25 Jul 2009 09:11:39 -0000 1.6 @@ -1 +1 @@ -0d979e6d3f13e458c6cfad838477681d dracut-0.5.tar.bz2 +01687a7dd7d56f63b0bf3dfd6fd60d9e dracut-0.7.tar.bz2 From harald at fedoraproject.org Sat Jul 25 09:12:35 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sat, 25 Jul 2009 09:12:35 +0000 (UTC) Subject: rpms/dracut/F-11 .cvsignore, 1.5, 1.6 dracut.spec, 1.4, 1.5 sources, 1.5, 1.6 Message-ID: <20090725091235.E37D411C02BC@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30953 Modified Files: .cvsignore dracut.spec sources Log Message: * Fri Jul 24 2009 Harald Hoyer 0.7-1 - version 0.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 17 Jul 2009 14:02:48 -0000 1.5 +++ .cvsignore 25 Jul 2009 09:12:35 -0000 1.6 @@ -1 +1 @@ -dracut-0.5.tar.bz2 +dracut-0.7.tar.bz2 Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/dracut.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dracut.spec 17 Jul 2009 14:02:48 -0000 1.4 +++ dracut.spec 25 Jul 2009 09:12:35 -0000 1.5 @@ -12,7 +12,7 @@ %endif Name: dracut -Version: 0.5 +Version: 0.7 Release: 1%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base @@ -38,6 +38,7 @@ Requires: filesystem >= 2.1.0, cpio, dev Requires: e2fsprogs >= 1.38-12, libselinux, libsepol, coreutils Requires: mdadm, elfutils-libelf, plymouth >= 0.7.0 Requires: cryptsetup-luks +Requires: bridge-utils %ifnarch s390 s390x Requires: dmraid Requires: kbd @@ -51,25 +52,43 @@ BuildArch: noarch %description dracut is a new, event-driven initramfs infrastructure based around udev. - %package generic -Summary: Metapackage to build a generic initramfs +Summary: Metapackage to build a generic initramfs with dracut Requires: %{name} = %{version}-%{release} Requires: rpcbind nfs-utils Requires: iscsi-initiator-utils Requires: nbd Requires: net-tools iproute -Requires: kernel-firmware +Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar + +%description generic +This package requires everything which is needed to build a generic +all purpose initramfs with dracut. + +%package kernel +Summary: Metapackage to build generic initramfs with dracut with only kernel modules +Requires: %{name} = %{version}-%{release} Requires: ql2100-firmware Requires: ql2200-firmware Requires: ql23xx-firmware Requires: ql2400-firmware Requires: ql2500-firmware -Requires: plymouth-system-theme plymouth-theme-charge plymouth-theme-solar -%description generic -This package requires everything which is needed to build a generic -all purpose initramfs. +%description kernel +This package requires everything which is needed to build a initramfs with all +kernel modules and firmware files needed by dracut modules. + +%package tools +Summary: dracut tools to build the local initramfs +Requires: %{name} = %{version}-%{release} +Requires: ql2100-firmware +Requires: ql2200-firmware +Requires: ql23xx-firmware +Requires: ql2400-firmware +Requires: ql2500-firmware + +%description tools +This package contains tools to assemble the local initrd and host configuration. %prep %setup -q -n %{name}-%{version}%{?dashgittag} @@ -86,6 +105,9 @@ make install DESTDIR=$RPM_BUILD_ROOT sbi rm -f $RPM_BUILD_ROOT/sbin/switch_root %endif +mkdir -p $RPM_BUILD_ROOT/boot/dracut +mkdir -p $RPM_BUILD_ROOT/var/lib/dracut/overlay + %clean rm -rf $RPM_BUILD_ROOT @@ -93,7 +115,6 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README HACKING TODO COPYING AUTHORS /sbin/dracut -/sbin/dracut-gencmdline %if 0%{?with_switch_root} /sbin/switch_root %endif @@ -107,7 +128,26 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,0755) %doc README.generic +%files kernel +%defattr(-,root,root,0755) +%doc README.kernel + +%files tools +%defattr(-,root,root,0755) +%doc COPYING +/sbin/dracut-gencmdline +/sbin/dracut-catimages +%dir /boot/dracut +%dir /var/lib/dracut +%dir /var/lib/dracut/overlay + %changelog +* Fri Jul 24 2009 Harald Hoyer 0.7-1 +- version 0.7 + +* Wed Jul 22 2009 Harald Hoyer 0.6-1 +- version 0.6 + * Fri Jul 17 2009 Harald Hoyer 0.5-1 - version 0.5 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/dracut/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 17 Jul 2009 14:02:48 -0000 1.5 +++ sources 25 Jul 2009 09:12:35 -0000 1.6 @@ -1 +1 @@ -0d979e6d3f13e458c6cfad838477681d dracut-0.5.tar.bz2 +01687a7dd7d56f63b0bf3dfd6fd60d9e dracut-0.7.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 08:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 08:57:45 +0000 (UTC) Subject: rpms/libxfcegui4/devel libxfcegui4.spec,1.35,1.36 Message-ID: <20090725085745.0CCAA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libxfcegui4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23568 Modified Files: libxfcegui4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libxfcegui4.spec =================================================================== RCS file: /cvs/pkgs/rpms/libxfcegui4/devel/libxfcegui4.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libxfcegui4.spec 20 Apr 2009 02:03:09 -0000 1.35 +++ libxfcegui4.spec 25 Jul 2009 08:57:44 -0000 1.36 @@ -1,7 +1,7 @@ Summary: GTK widgets for Xfce Name: libxfcegui4 Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/libxfcegui4-%{version}.tar.bz2 @@ -96,6 +96,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/glade3/pixmaps/hicolor/*/actions/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jakub at fedoraproject.org Sat Jul 25 10:08:13 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Sat, 25 Jul 2009 10:08:13 +0000 (UTC) Subject: rpms/gcc/devel .cvsignore, 1.280, 1.281 gcc.spec, 1.57, 1.58 sources, 1.283, 1.284 Message-ID: <20090725100813.8D32B11C02BC@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14750 Modified Files: .cvsignore gcc.spec sources Log Message: 4.4.1-3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/.cvsignore,v retrieving revision 1.280 retrieving revision 1.281 diff -u -p -r1.280 -r1.281 --- .cvsignore 23 Jul 2009 16:44:00 -0000 1.280 +++ .cvsignore 25 Jul 2009 10:08:12 -0000 1.281 @@ -1,2 +1,2 @@ fastjar-0.97.tar.gz -gcc-4.4.1-20090723.tar.bz2 +gcc-4.4.1-20090725.tar.bz2 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- gcc.spec 24 Jul 2009 23:34:39 -0000 1.57 +++ gcc.spec 25 Jul 2009 10:08:12 -0000 1.58 @@ -1,9 +1,9 @@ -%global DATE 20090723 -%global SVNREV 150015 +%global DATE 20090725 +%global SVNREV 150077 %global gcc_version 4.4.1 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 2 +%global gcc_release 3 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %global include_gappletviewer 1 @@ -211,6 +211,7 @@ including templates and exception handli Summary: GNU Standard C++ Library Group: System Environment/Libraries Autoreq: true +Requires: glibc >= 2.10.90-7 %description -n libstdc++ The libstdc++ package contains a rewritten standard compliant GCC Standard @@ -1811,10 +1812,16 @@ fi %doc rpm.doc/changelogs/libmudflap/ChangeLog* %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 4.4.1-2.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Sat Jul 25 2009 Jakub Jelinek 4.4.1-3 +- update from gcc-4_4-branch + - PR fortran/40727 +- fix unwind info for -freorder-blocks-and-partitions + (PR rtl-optimization/34999) +- fix Fortran MINLOC/MAXLOC/MINVAL/MAXVAL handling of infinities and NaNs, + speed them up (PRs fortran/40643, fortran/31067) +- fix ICE with Fortran data xfer without io unit (PR fortran/40839) -* Thu Jul 23 2009 Jakub Jelinek 4.4.1-3 +* Thu Jul 23 2009 Jakub Jelinek 4.4.1-2 - update from gcc-4_4-branch - PRs rtl-optimization/40710, target/40832, tree-optimization/40321 - use STB_GNU_UNIQUE symbols for inline fn local statics and Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.283 retrieving revision 1.284 diff -u -p -r1.283 -r1.284 --- sources 23 Jul 2009 16:44:00 -0000 1.283 +++ sources 25 Jul 2009 10:08:12 -0000 1.284 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -efd4e9fff96d944bf2b878aabe6a75f9 gcc-4.4.1-20090723.tar.bz2 +e2e0ad162513321411f3fb253e3b6855 gcc-4.4.1-20090725.tar.bz2 From nim at fedoraproject.org Sat Jul 25 10:54:37 2009 From: nim at fedoraproject.org (nim) Date: Sat, 25 Jul 2009 10:54:37 +0000 (UTC) Subject: rpms/google-droid-fonts/devel .cvsignore, 1.2, 1.3 google-droid-fonts-sans-fontconfig.conf, 1.1, 1.2 google-droid-fonts.spec, 1.7, 1.8 import.log, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090725105437.9797211C02BC@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/google-droid-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30201/devel Modified Files: .cvsignore google-droid-fonts-sans-fontconfig.conf google-droid-fonts.spec import.log sources Log Message: Ja Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 16 Jan 2009 22:10:39 -0000 1.2 +++ .cvsignore 25 Jul 2009 10:54:37 -0000 1.3 @@ -6,3 +6,4 @@ DroidSerif-Bold.ttf DroidSerif-BoldItalic.ttf DroidSerif-Italic.ttf DroidSerif-Regular.ttf +DroidSansJapanese.ttf Index: google-droid-fonts-sans-fontconfig.conf =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/google-droid-fonts-sans-fontconfig.conf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- google-droid-fonts-sans-fontconfig.conf 16 Jan 2009 22:10:40 -0000 1.1 +++ google-droid-fonts-sans-fontconfig.conf 25 Jul 2009 10:54:37 -0000 1.2 @@ -13,7 +13,22 @@ sans-serif + + + ja-jp + + + Droid Sans Japanese + + + Droid Sans + + + + + ja-jp + Droid Sans Fallback Index: google-droid-fonts.spec =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/google-droid-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- google-droid-fonts.spec 25 Jul 2009 01:03:49 -0000 1.7 +++ google-droid-fonts.spec 25 Jul 2009 10:54:37 -0000 1.8 @@ -1,6 +1,6 @@ %global fontname google-droid -%global download_root http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob_plain;f=data/fonts +%global download_root http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob_plain;f=data/fonts/ %global common_desc \ The Droid typeface family was designed in the fall of 2006 by Ascender's \ @@ -10,27 +10,29 @@ on a mobile handset when rendered in app other screen text. Name: %{fontname}-fonts -# The font files all have the same version except for sans fallback which I'm going to ignore here -Version: 1.0.112 -Release: 7%{?dist} +# No sane versionning upstream +Version: 20090320 +Epoch: 1 +Release: 1%{?dist} Summary: General-purpose fonts released by Google as part of Android Group: User Interface/X License: ASL 2.0 URL: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts -Source1: %{download_root}/DroidSans.ttf -Source2: %{download_root}/DroidSans-Bold.ttf -Source3: %{download_root}/DroidSansFallback.ttf -Source4: %{download_root}/DroidSansMono.ttf -Source5: %{download_root}/DroidSerif-Regular.ttf -Source6: %{download_root}/DroidSerif-Bold.ttf -Source7: %{download_root}/DroidSerif-Italic.ttf -Source8: %{download_root}/DroidSerif-BoldItalic.ttf -Source9: %{download_root}/NOTICE -Source10: %{download_root}/README.txt -Source11: %{name}-sans-fontconfig.conf -Source12: %{name}-sans-mono-fontconfig.conf -Source13: %{name}-serif-fontconfig.conf +Source1: %{download_root}DroidSans.ttf +Source2: %{download_root}DroidSans-Bold.ttf +Source3: %{download_root}DroidSansJapanese.ttf +Source4: %{download_root}DroidSansFallback.ttf +Source5: %{download_root}DroidSansMono.ttf +Source6: %{download_root}DroidSerif-Regular.ttf +Source7: %{download_root}DroidSerif-Bold.ttf +Source8: %{download_root}DroidSerif-Italic.ttf +Source9: %{download_root}DroidSerif-BoldItalic.ttf +Source20: %{download_root}NOTICE +Source21: %{download_root}README.txt +Source31: %{name}-sans-fontconfig.conf +Source32: %{name}-sans-mono-fontconfig.conf +Source33: %{name}-serif-fontconfig.conf BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch @@ -59,7 +61,7 @@ Requires: %{name}-common = %{version}-%{ Droid Sans is a humanist sans serif typeface designed for user interfaces and electronic communication. -%_font_pkg -n sans -f ??-%{fontname}-sans.conf DroidSans.ttf DroidSans-Bold.ttf DroidSansFallback.ttf +%_font_pkg -n sans -f ??-%{fontname}-sans.conf DroidSans.ttf DroidSans-Bold.ttf DroidSansJapanese.ttf DroidSansFallback.ttf %package -n %{fontname}-sans-mono-fonts @@ -93,8 +95,8 @@ companion Droid Sans. %prep %setup -q -c -T -install -m 0644 -p %{SOURCE9} notice.txt -install -m 0644 -p %{SOURCE10} readme.txt +install -m 0644 -p %{SOURCE20} notice.txt +install -m 0644 -p %{SOURCE21} readme.txt %build @@ -106,16 +108,17 @@ rm -fr %{buildroot} install -m 0755 -d %{buildroot}%{_fontdir} install -m 0644 -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} \ - %{SOURCE6} %{SOURCE7} %{SOURCE8} %{buildroot}%{_fontdir} + %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} \ + %{buildroot}%{_fontdir} install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \ %{buildroot}%{_fontconfig_confdir} -install -m 0644 -p %{SOURCE11} \ +install -m 0644 -p %{SOURCE31} \ %{buildroot}%{_fontconfig_templatedir}/65-%{fontname}-sans.conf -install -m 0644 -p %{SOURCE12} \ +install -m 0644 -p %{SOURCE32} \ %{buildroot}%{_fontconfig_templatedir}/60-%{fontname}-sans-mono.conf -install -m 0644 -p %{SOURCE13} \ +install -m 0644 -p %{SOURCE33} \ %{buildroot}%{_fontconfig_templatedir}/59-%{fontname}-serif.conf for fontconf in 65-%{fontname}-sans.conf \ @@ -136,7 +139,12 @@ rm -fr %{buildroot} %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.0.112-7 +* Sat Jul 25 2009 Nicolas Mailhot +- 20090320-1 +? try to fit Japanese in + +* Fri Jul 24 2009 Fedora Release Engineering +- 1.0.112-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Feb 24 2009 Fedora Release Engineering - 1.0.112-6 Index: import.log =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 23 Feb 2009 08:57:19 -0000 1.4 +++ import.log 25 Jul 2009 10:54:37 -0000 1.5 @@ -2,3 +2,4 @@ google-droid-fonts-1_0_112-2_fc11:HEAD:g google-droid-fonts-1_0_112-3_fc11:HEAD:google-droid-fonts-1.0.112-3.fc11.src.rpm:1232144541 google-droid-fonts-1_0_112-4_fc11:HEAD:google-droid-fonts-1.0.112-4.fc11.src.rpm:1233428004 google-droid-fonts-1_0_112-5_fc11:HEAD:google-droid-fonts-1.0.112-5.fc11.src.rpm:1235379417 +google-droid-fonts-20090320-1_fc12:HEAD:google-droid-fonts-20090320-1.fc12.src.rpm:1248519226 Index: sources =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 16 Jan 2009 22:10:40 -0000 1.2 +++ sources 25 Jul 2009 10:54:37 -0000 1.3 @@ -6,3 +6,4 @@ a062025df92affc1331a05b7c07793fc DroidSerif-BoldItalic.ttf a2e7305a0ba8bb7091124f4cd1485fc9 DroidSerif-Italic.ttf bfb2f44a7c1deba39f7f4d39bff18eeb DroidSerif-Regular.ttf +8fbc87c7c5089a8e86c670b93a78964f DroidSansJapanese.ttf From jkeating at fedoraproject.org Sat Jul 25 11:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:02:04 +0000 (UTC) Subject: rpms/libzip/devel libzip.spec,1.5,1.6 Message-ID: <20090725110204.8B79A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv306 Modified Files: libzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzip/devel/libzip.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libzip.spec 25 Feb 2009 20:15:08 -0000 1.5 +++ libzip.spec 25 Jul 2009 11:02:04 -0000 1.6 @@ -3,7 +3,7 @@ Name: libzip Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C library for reading, creating, and modifying zip archives Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:02:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:02:21 +0000 (UTC) Subject: rpms/libzrtpcpp/devel libzrtpcpp.spec,1.3,1.4 Message-ID: <20090725110221.10F0511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libzrtpcpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv492 Modified Files: libzrtpcpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: libzrtpcpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzrtpcpp/devel/libzrtpcpp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libzrtpcpp.spec 7 Apr 2009 23:42:11 -0000 1.3 +++ libzrtpcpp.spec 25 Jul 2009 11:02:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: libzrtpcpp Version: 1.4.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ZRTP support library for the GNU ccRTP stack Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Kevin Fenzi - 1.4.3-1 - Update to 1.4.3 and rebuild against new ccrtp From jkeating at fedoraproject.org Sat Jul 25 11:02:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:02:40 +0000 (UTC) Subject: rpms/licq/devel licq.spec,1.29,1.30 Message-ID: <20090725110240.1B53511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/licq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv668 Modified Files: licq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: licq.spec =================================================================== RCS file: /cvs/pkgs/rpms/licq/devel/licq.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- licq.spec 23 May 2009 21:54:24 -0000 1.29 +++ licq.spec 25 Jul 2009 11:02:39 -0000 1.30 @@ -1,6 +1,6 @@ Name: licq Version: 1.3.5 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Source0: http://prdownloads.sourceforge.net/licq/licq-%{version}.tar.gz Source1: http://prdownloads.sourceforge.net/icqnd/icqnd-0.1.9.6.tar.bz2 @@ -234,6 +234,9 @@ rm -rf $RPM_BUILD_ROOT %doc plugins/auto-reply/{README,licq_autoreply.conf,examples} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Milos Jakubicek - 1.3.5-7 - Fix FTBFS: added licq-1.3.5-gcc44.patch - Do submit patches upstream! From jkeating at fedoraproject.org Sat Jul 25 11:03:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:03:06 +0000 (UTC) Subject: rpms/liferea/devel liferea.spec,1.139,1.140 Message-ID: <20090725110306.58CDF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liferea/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv875 Modified Files: liferea.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liferea.spec =================================================================== RCS file: /cvs/pkgs/rpms/liferea/devel/liferea.spec,v retrieving revision 1.139 retrieving revision 1.140 diff -u -p -r1.139 -r1.140 --- liferea.spec 23 Jul 2009 19:25:29 -0000 1.139 +++ liferea.spec 25 Jul 2009 11:03:05 -0000 1.140 @@ -1,6 +1,6 @@ Name: liferea Version: 1.6.0 -Release: 0.4.rc7%{?dist} +Release: 0.5.rc7%{?dist} Summary: An RSS/RDF feed reader Group: Applications/Internet @@ -106,6 +106,9 @@ fi %dir %{_libdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.0-0.5.rc7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Steven M. Parrish 1.6.0-0.4.rc7 - Open the "Decrease/Increase Text Size" menu instead of the - normal link menu on JavaScript links. From jkeating at fedoraproject.org Sat Jul 25 11:03:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:03:30 +0000 (UTC) Subject: rpms/lightning/devel lightning.spec,1.18,1.19 Message-ID: <20090725110330.5677D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lightning/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1143 Modified Files: lightning.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lightning.spec =================================================================== RCS file: /cvs/pkgs/rpms/lightning/devel/lightning.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- lightning.spec 3 Mar 2009 19:28:51 -0000 1.18 +++ lightning.spec 25 Jul 2009 11:03:30 -0000 1.19 @@ -1,6 +1,6 @@ Name: lightning Version: 1.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Library for generating assembly code on run time Group: Development/Libraries @@ -63,6 +63,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Jochen Schmitt 1.2-16 - Failback to release 1.2 From jkeating at fedoraproject.org Sat Jul 25 11:03:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:03:48 +0000 (UTC) Subject: rpms/lighttpd/devel lighttpd.spec,1.58,1.59 Message-ID: <20090725110348.B32F911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lighttpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1305 Modified Files: lighttpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lighttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/lighttpd/devel/lighttpd.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- lighttpd.spec 12 Apr 2009 16:38:57 -0000 1.58 +++ lighttpd.spec 25 Jul 2009 11:03:48 -0000 1.59 @@ -6,7 +6,7 @@ Summary: Lightning fast webserver with light system requirements Name: lighttpd Version: 1.4.22 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Daemons URL: http://www.lighttpd.net/ @@ -242,6 +242,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 1.4.22-3 - Update init script to new style. - No longer include a sysconfig file, though one can be set to override the From jkeating at fedoraproject.org Sat Jul 25 11:04:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:04:06 +0000 (UTC) Subject: rpms/lilypond/devel lilypond.spec,1.44,1.45 Message-ID: <20090725110406.81B3511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lilypond/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1484 Modified Files: lilypond.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lilypond.spec =================================================================== RCS file: /cvs/pkgs/rpms/lilypond/devel/lilypond.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- lilypond.spec 1 Jun 2009 17:09:02 -0000 1.44 +++ lilypond.spec 25 Jul 2009 11:04:06 -0000 1.45 @@ -1,6 +1,6 @@ Name: lilypond Version: 2.12.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A typesetting system for music notation Group: Applications/Publishing @@ -241,6 +241,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Jon Ciesla - 2.12.2-4 - Update for vim 7.2, BZ 503429. From jkeating at fedoraproject.org Sat Jul 25 11:04:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:04:23 +0000 (UTC) Subject: rpms/lilypond-doc/devel lilypond-doc.spec,1.14,1.15 Message-ID: <20090725110423.4AFBF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lilypond-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1639 Modified Files: lilypond-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lilypond-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/lilypond-doc/devel/lilypond-doc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- lilypond-doc.spec 25 Feb 2009 20:22:57 -0000 1.14 +++ lilypond-doc.spec 25 Jul 2009 11:04:23 -0000 1.15 @@ -1,6 +1,6 @@ Name: lilypond-doc Version: 2.12.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: HTML documentation for LilyPond Group: Applications/Publishing @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:04:39 +0000 (UTC) Subject: rpms/lilyterm/devel lilyterm.spec,1.2,1.3 Message-ID: <20090725110439.B5A9911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lilyterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1791 Modified Files: lilyterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lilyterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/lilyterm/devel/lilyterm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lilyterm.spec 9 Jun 2009 21:12:59 -0000 1.2 +++ lilyterm.spec 25 Jul 2009 11:04:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: lilyterm Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Light and easy to use X Terminal Emulator Group: User Interface/X @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Christoph Wickert - 0.9.6-2 - Rebuilt for libvte SONAME bump From jkeating at fedoraproject.org Sat Jul 25 11:04:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:04:56 +0000 (UTC) Subject: rpms/limph/devel limph.spec,1.8,1.9 Message-ID: <20090725110456.4D14D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/limph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937 Modified Files: limph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: limph.spec =================================================================== RCS file: /cvs/pkgs/rpms/limph/devel/limph.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- limph.spec 18 Jul 2009 03:16:00 -0000 1.8 +++ limph.spec 25 Jul 2009 11:04:56 -0000 1.9 @@ -1,7 +1,7 @@ %define limphdir %{_datadir}/limph Name: limph Version: 1.9.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A PHP5-compatible network host/service poller with web interface Group: Applications/System @@ -91,6 +91,9 @@ rm -rf %{buildroot} %{limphdir}/config.php %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.9.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Jon Ciesla - 1.9.6-5 - Dropped php-mhash requires from subpackage. - Fixed EVR. . . From jkeating at fedoraproject.org Sat Jul 25 11:05:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:05:14 +0000 (UTC) Subject: rpms/lincity-ng/devel lincity-ng.spec,1.22,1.23 Message-ID: <20090725110514.4036811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lincity-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2096 Modified Files: lincity-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lincity-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/lincity-ng/devel/lincity-ng.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lincity-ng.spec 23 Feb 2009 19:12:26 -0000 1.22 +++ lincity-ng.spec 25 Jul 2009 11:05:14 -0000 1.23 @@ -1,6 +1,6 @@ Name: lincity-ng Version: 2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games Summary: City Simulation Game @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/lincity-ng/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Dennis Gilmore 2.0-2 - make data subpackage noarch From jkeating at fedoraproject.org Sat Jul 25 11:05:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:05:31 +0000 (UTC) Subject: rpms/link-grammar/devel link-grammar.spec,1.12,1.13 Message-ID: <20090725110531.2CAC411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/link-grammar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2259 Modified Files: link-grammar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: link-grammar.spec =================================================================== RCS file: /cvs/pkgs/rpms/link-grammar/devel/link-grammar.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- link-grammar.spec 25 Feb 2009 20:24:49 -0000 1.12 +++ link-grammar.spec 25 Jul 2009 11:05:31 -0000 1.13 @@ -1,7 +1,7 @@ Summary: A Grammar Checking library Name: link-grammar Version: 4.3.5 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries License: BSD Source: http://www.abisource.com/downloads/link-grammar/%{version}/link-grammar-%{version}.tar.gz @@ -56,6 +56,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la rm -r $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.3.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.3.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:05:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:05:52 +0000 (UTC) Subject: rpms/linkchecker/devel linkchecker.spec,1.28,1.29 Message-ID: <20090725110552.785A411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linkchecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2430 Modified Files: linkchecker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linkchecker.spec =================================================================== RCS file: /cvs/pkgs/rpms/linkchecker/devel/linkchecker.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- linkchecker.spec 25 Feb 2009 20:26:46 -0000 1.28 +++ linkchecker.spec 25 Jul 2009 11:05:52 -0000 1.29 @@ -5,7 +5,7 @@ Summary: Check HTML documents for broken links Name: linkchecker Version: 4.7 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2 Group: Development/Tools Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -63,6 +63,9 @@ rm -rf %{buildroot} %doc TODO doc/en README COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.7-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.7-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:06:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:06:12 +0000 (UTC) Subject: rpms/links/devel links.spec,1.3,1.4 Message-ID: <20090725110612.34B9511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/links/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2711 Modified Files: links.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: links.spec =================================================================== RCS file: /cvs/pkgs/rpms/links/devel/links.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- links.spec 21 Apr 2009 04:15:45 -0000 1.3 +++ links.spec 25 Jul 2009 11:06:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: links Version: 2.2 -Release: 9%{?dist} +Release: 10%{?dist} Epoch: 1 Summary: Web browser running in both graphics and text mode @@ -107,6 +107,9 @@ exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Lubomir Rintel - 2.2-9 - Add epoch to beat elinks obsoletes From jkeating at fedoraproject.org Sat Jul 25 11:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:06:33 +0000 (UTC) Subject: rpms/linphone/devel linphone.spec,1.40,1.41 Message-ID: <20090725110633.C774E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linphone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3280 Modified Files: linphone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linphone.spec =================================================================== RCS file: /cvs/pkgs/rpms/linphone/devel/linphone.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- linphone.spec 13 Mar 2009 12:15:20 -0000 1.40 +++ linphone.spec 25 Jul 2009 11:06:33 -0000 1.41 @@ -1,6 +1,6 @@ Name: linphone Version: 2.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Phone anywhere in the whole world by using the Internet Group: Applications/Communications @@ -149,6 +149,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Ralf Cors?pius - 2.1.1-3 - Re-base patches to fix rebuild breakdowns. - Fix various autotool source file bugs. From jkeating at fedoraproject.org Sat Jul 25 11:06:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:06:52 +0000 (UTC) Subject: rpms/linpsk/devel linpsk.spec,1.4,1.5 Message-ID: <20090725110652.4B0BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linpsk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3691 Modified Files: linpsk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linpsk.spec =================================================================== RCS file: /cvs/pkgs/rpms/linpsk/devel/linpsk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- linpsk.spec 21 Mar 2009 15:07:32 -0000 1.4 +++ linpsk.spec 25 Jul 2009 11:06:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: linpsk Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Psk31 and RTTY program for Linux Group: Applications/Communications @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*%{name}.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Robert Scheck 0.9-6 - Rebuilt against libtool 2.2 From jkeating at fedoraproject.org Sat Jul 25 11:07:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:07:11 +0000 (UTC) Subject: rpms/linsmith/devel linsmith.spec,1.5,1.6 Message-ID: <20090725110711.01FDA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linsmith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3888 Modified Files: linsmith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linsmith.spec =================================================================== RCS file: /cvs/pkgs/rpms/linsmith/devel/linsmith.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- linsmith.spec 7 May 2009 22:17:22 -0000 1.5 +++ linsmith.spec 25 Jul 2009 11:07:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: linsmith Version: 0.99.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Smith charting program Group: Applications/Engineering @@ -77,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Chitlesh Goorah - 0.99.12-1 - new upstream release - fixes segmentation fault during saving of log From jkeating at fedoraproject.org Sat Jul 25 11:07:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:07:27 +0000 (UTC) Subject: rpms/linux-atm/devel linux-atm.spec,1.29,1.30 Message-ID: <20090725110727.4879411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linux-atm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4086 Modified Files: linux-atm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linux-atm.spec =================================================================== RCS file: /cvs/pkgs/rpms/linux-atm/devel/linux-atm.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- linux-atm.spec 25 Feb 2009 20:30:47 -0000 1.29 +++ linux-atm.spec 25 Jul 2009 11:07:27 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Tools to support ATM networking under Linux Name: linux-atm Version: 2.5.0 -Release: 9 +Release: 10 # The licensing here is a mess. This is as close to accurate as possible. License: BSD and GPLv2 and GPLv2+ and LGPLv2+ and MIT URL: http://linux-atm.sourceforge.net/ @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libatm.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:07:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:07:44 +0000 (UTC) Subject: rpms/linux-igd/devel linux-igd.spec,1.6,1.7 Message-ID: <20090725110744.578E511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linux-igd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4266 Modified Files: linux-igd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linux-igd.spec =================================================================== RCS file: /cvs/pkgs/rpms/linux-igd/devel/linux-igd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- linux-igd.spec 25 Feb 2009 20:31:51 -0000 1.6 +++ linux-igd.spec 25 Jul 2009 11:07:44 -0000 1.7 @@ -3,7 +3,7 @@ Summary: The Linux UPNP Internet GATEWAY DEVICE Name: linux-igd Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://linux-igd.sourceforge.net/index.php Source0: http://downloads.sourceforge.net/%{name}/%{source_name}-%{version}.tar.gz Patch1: %{source_name}-%{version}.patch @@ -71,6 +71,9 @@ if [ "$1" -ge "1" ]; then fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:08:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:08:05 +0000 (UTC) Subject: rpms/linux-libertine-fonts/devel linux-libertine-fonts.spec, 1.13, 1.14 Message-ID: <20090725110805.8118911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linux-libertine-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4497 Modified Files: linux-libertine-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linux-libertine-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/devel/linux-libertine-fonts.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- linux-libertine-fonts.spec 15 Jul 2009 06:03:06 -0000 1.13 +++ linux-libertine-fonts.spec 25 Jul 2009 11:08:05 -0000 1.14 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 4.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Linux Libertine Open Fonts Group: User Interface/X @@ -68,6 +68,9 @@ rm -fr %{buildroot} %doc OFL.txt GPL.txt ChangeLog.txt LICENCE.txt Readme Readme-TEX.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Kevin Fenzi - 4.4.1-1 - Upgrade to 4.4.1 - Fix to match current font guidelines From jkeating at fedoraproject.org Sat Jul 25 11:08:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:08:21 +0000 (UTC) Subject: rpms/linux_logo/devel linux_logo.spec,1.21,1.22 Message-ID: <20090725110821.5CED311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linux_logo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4685 Modified Files: linux_logo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linux_logo.spec =================================================================== RCS file: /cvs/pkgs/rpms/linux_logo/devel/linux_logo.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- linux_logo.spec 25 Feb 2009 20:33:40 -0000 1.21 +++ linux_logo.spec 25 Jul 2009 11:08:21 -0000 1.22 @@ -1,7 +1,7 @@ Summary: The linux logo - a colorful console penguin logo Name: linux_logo Version: 5.04 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: http://www.deater.net/weave/vmwprod/linux_logo/ @@ -46,6 +46,9 @@ done %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:08:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:08:36 +0000 (UTC) Subject: rpms/linuxdcpp/devel linuxdcpp.spec,1.11,1.12 Message-ID: <20090725110836.6001811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linuxdcpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4871 Modified Files: linuxdcpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linuxdcpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/linuxdcpp/devel/linuxdcpp.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- linuxdcpp.spec 25 Feb 2009 20:34:29 -0000 1.11 +++ linuxdcpp.spec 25 Jul 2009 11:08:35 -0000 1.12 @@ -1,6 +1,6 @@ Name: linuxdcpp Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Direct Connect client Group: Applications/Internet @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/linuxdcpp.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:08:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:08:53 +0000 (UTC) Subject: rpms/linuxdoc-tools/devel linuxdoc-tools.spec,1.36,1.37 Message-ID: <20090725110853.5800611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/linuxdoc-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5058 Modified Files: linuxdoc-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: linuxdoc-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/linuxdoc-tools/devel/linuxdoc-tools.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- linuxdoc-tools.spec 22 Jun 2009 13:35:12 -0000 1.36 +++ linuxdoc-tools.spec 25 Jul 2009 11:08:53 -0000 1.37 @@ -3,7 +3,7 @@ Summary: A text formatting package based on SGML Name: linuxdoc-tools Version: 0.9.65 -Release: 1%{?dist} +Release: 2%{?dist} License: Freely redistributable without restriction Group: Applications/Publishing Source: http://http.us.debian.org/debian/pool/main/l/linuxdoc-tools/%{name}_%{version}.tar.gz @@ -96,6 +96,9 @@ exit 0 %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Ondrej Vasik 0.9.65-1 - Used latest upstream version 0.9.65, reflect changes From jkeating at fedoraproject.org Sat Jul 25 11:09:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:09:09 +0000 (UTC) Subject: rpms/liquidwar/devel liquidwar.spec,1.11,1.12 Message-ID: <20090725110909.ED61111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liquidwar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5235 Modified Files: liquidwar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liquidwar.spec =================================================================== RCS file: /cvs/pkgs/rpms/liquidwar/devel/liquidwar.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- liquidwar.spec 25 Feb 2009 20:36:56 -0000 1.11 +++ liquidwar.spec 25 Jul 2009 11:09:09 -0000 1.12 @@ -1,6 +1,6 @@ Name: liquidwar Version: 5.6.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Multiplayer wargame with liquid armies Group: Amusements/Games License: GPLv2+ @@ -181,6 +181,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.6.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.6.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:09:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:09:26 +0000 (UTC) Subject: rpms/lirc/devel lirc.spec,1.58,1.59 Message-ID: <20090725110927.0017E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5379 Modified Files: lirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/lirc/devel/lirc.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- lirc.spec 22 Jul 2009 02:41:45 -0000 1.58 +++ lirc.spec 25 Jul 2009 11:09:26 -0000 1.59 @@ -18,7 +18,7 @@ Name: lirc Version: 0.8.6 -Release: 0.3%{?pre:.%{pre}}%{?dist} +Release: 0.4%{?pre:.%{pre}}%{?dist} Summary: The Linux Infrared Remote Control package Group: System Environment/Daemons @@ -273,6 +273,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.6-0.4.pre1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Jarod Wilson 0.8.6-0.3.pre1 - Set up tools to use /dev/lirc0 instead of /dev/lirc by default - Set a default font for xmode2 most people actually have (#467339) From jkeating at fedoraproject.org Sat Jul 25 11:09:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:09:41 +0000 (UTC) Subject: rpms/listen/devel listen.spec,1.40,1.41 Message-ID: <20090725110941.0D86811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/listen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5515 Modified Files: listen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: listen.spec =================================================================== RCS file: /cvs/pkgs/rpms/listen/devel/listen.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- listen.spec 6 Jul 2009 09:02:17 -0000 1.40 +++ listen.spec 25 Jul 2009 11:09:40 -0000 1.41 @@ -1,6 +1,6 @@ Name: listen Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A music manager and player for GNOME Group: Applications/Multimedia License: GPLv2+ @@ -126,6 +126,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Ha?kel Gu?mar 0.6.2-2 - added python-inotify as Requires From jkeating at fedoraproject.org Sat Jul 25 11:09:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:09:54 +0000 (UTC) Subject: rpms/livecd-tools/devel livecd-tools.spec,1.26,1.27 Message-ID: <20090725110954.EDE9D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/livecd-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5649 Modified Files: livecd-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: livecd-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/livecd-tools/devel/livecd-tools.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- livecd-tools.spec 22 Jul 2009 14:16:48 -0000 1.26 +++ livecd-tools.spec 25 Jul 2009 11:09:54 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Tools for building live CDs Name: livecd-tools Version: 024 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base URL: http://git.fedorahosted.org/git/livecd @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/imgcreate/*.pyc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 024-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Jeremy Katz - 024-1 - Fix ppc image creation (#497193, help from jwboyer) - Fixes for using ext[23] usb stick (wtogami) From jkeating at fedoraproject.org Sat Jul 25 11:10:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:10:12 +0000 (UTC) Subject: rpms/liveusb-creator/devel liveusb-creator.spec,1.24,1.25 Message-ID: <20090725111012.2CBDB11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/liveusb-creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5804 Modified Files: liveusb-creator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: liveusb-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/liveusb-creator/devel/liveusb-creator.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- liveusb-creator.spec 24 Jun 2009 18:46:46 -0000 1.24 +++ liveusb-creator.spec 25 Jul 2009 11:10:12 -0000 1.25 @@ -2,7 +2,7 @@ Name: liveusb-creator Version: 3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A liveusb creator Group: Applications/System @@ -68,6 +68,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Luke Macken - 3.7 - Latest upstream bugfix release From jkeating at fedoraproject.org Sat Jul 25 11:10:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:10:52 +0000 (UTC) Subject: rpms/lklug-fonts/devel lklug-fonts.spec,1.6,1.7 Message-ID: <20090725111052.7671911C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lklug-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5982 Modified Files: lklug-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lklug-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/lklug-fonts/devel/lklug-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lklug-fonts.spec 10 Mar 2009 17:36:54 -0000 1.6 +++ lklug-fonts.spec 25 Jul 2009 11:10:50 -0000 1.7 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts # update versions on file changes. When in doubt use the timestamp of the most # recent file as version. Version: 0.2.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Fonts for Sinhala language Group: User Interface/X @@ -47,6 +47,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Rahul Bhalerao - 0.2.2-9 - Dropping previous release. From jkeating at fedoraproject.org Sat Jul 25 11:11:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:11:26 +0000 (UTC) Subject: rpms/lksctp-tools/devel lksctp-tools.spec,1.23,1.24 Message-ID: <20090725111126.0DF2411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lksctp-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6448 Modified Files: lksctp-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lksctp-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/lksctp-tools/devel/lksctp-tools.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- lksctp-tools.spec 14 Apr 2009 07:24:10 -0000 1.23 +++ lksctp-tools.spec 25 Jul 2009 11:11:25 -0000 1.24 @@ -1,7 +1,7 @@ Summary: User-space access to Linux Kernel SCTP Name: lksctp-tools Version: 1.0.10 -Release: 1%{?dist} +Release: 2%{?dist} # src/apps/bindx_test.C is GPLv2, I've asked upstream for clarification License: GPLv2 and GPLv2+ and LGPLv2 and MIT Group: System Environment/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/*.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Zdenek Prikryl 1.0.10-1 - added release tag to Requires of devel and doc packages (#492531) - Update to 1.0.10 From jkeating at fedoraproject.org Sat Jul 25 11:11:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:11:42 +0000 (UTC) Subject: rpms/llvm/devel llvm.spec,1.11,1.12 Message-ID: <20090725111142.5B23A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/llvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6654 Modified Files: llvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: llvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/llvm/devel/llvm.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- llvm.spec 5 Mar 2009 01:25:55 -0000 1.11 +++ llvm.spec 25 Jul 2009 11:11:42 -0000 1.12 @@ -15,7 +15,7 @@ Name: llvm Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Low Level Virtual Machine Group: Development/Languages @@ -349,6 +349,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Michel Salim - 2.5-2 - Remove build scripts; they require the build directory to work From jkeating at fedoraproject.org Sat Jul 25 11:11:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:11:59 +0000 (UTC) Subject: rpms/lm_sensors/devel lm_sensors.spec,1.71,1.72 Message-ID: <20090725111159.7FCFC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lm_sensors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6851 Modified Files: lm_sensors.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lm_sensors.spec =================================================================== RCS file: /cvs/pkgs/rpms/lm_sensors/devel/lm_sensors.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- lm_sensors.spec 10 Jul 2009 20:48:28 -0000 1.71 +++ lm_sensors.spec 25 Jul 2009 11:11:59 -0000 1.72 @@ -1,6 +1,6 @@ Name: lm_sensors Version: 3.1.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.lm-sensors.org/ Source: http://dl.lm-sensors.org/lm-sensors/releases/%{name}-%{version}.tar.bz2 Source1: lm_sensors.sysconfig @@ -175,6 +175,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Adam Jackson 3.1.1-2 - Add -libs subpackage so perl doesn't get dragged in just for linking against libsensors. From mtasaka at fedoraproject.org Sat Jul 25 11:12:10 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 11:12:10 +0000 (UTC) Subject: rpms/xscreensaver/devel noautobuild,1.1,1.2 Message-ID: <20090725111210.C75FF11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xscreensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6984 Modified Files: noautobuild Log Message: does not build, need fixing Index: noautobuild =================================================================== RCS file: /cvs/extras/rpms/xscreensaver/devel/noautobuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- noautobuild 22 Feb 2009 13:56:28 -0000 1.1 +++ noautobuild 25 Jul 2009 11:12:10 -0000 1.2 @@ -1 +1 @@ -Avoid non-clean release bump for this package +does not build, need fixing From jkeating at fedoraproject.org Sat Jul 25 11:12:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:12:18 +0000 (UTC) Subject: rpms/lmarbles/devel lmarbles.spec,1.15,1.16 Message-ID: <20090725111218.EA13E11C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lmarbles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7070 Modified Files: lmarbles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lmarbles.spec =================================================================== RCS file: /cvs/pkgs/rpms/lmarbles/devel/lmarbles.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- lmarbles.spec 25 Feb 2009 20:44:56 -0000 1.15 +++ lmarbles.spec 25 Jul 2009 11:12:18 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Atomix clone where you create figures out of marbles Name: lmarbles Version: 1.0.7 -Release: 11 +Release: 12 License: GPLv2+ Group: Amusements/Games URL: http://lgames.sourceforge.net/ @@ -77,6 +77,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.7-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:12:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:12:37 +0000 (UTC) Subject: rpms/lmms/devel lmms.spec,1.5,1.6 Message-ID: <20090725111237.D763111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lmms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7292 Modified Files: lmms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lmms.spec =================================================================== RCS file: /cvs/pkgs/rpms/lmms/devel/lmms.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lmms.spec 19 May 2009 18:40:59 -0000 1.5 +++ lmms.spec 25 Jul 2009 11:12:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: lmms Version: 0.4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Linux MultiMedia Studio URL: http://lmms.sourceforge.net/ Group: Applications/Multimedia @@ -223,6 +223,9 @@ This package contains the necessary file %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Thomas Moschny - 0.4.4-1 - Update to 0.4.4. - Need to borrow patches for embedded fltk from the fltk package. From mtasaka at fedoraproject.org Sat Jul 25 11:13:03 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 11:13:03 +0000 (UTC) Subject: rpms/mecab/devel mecab.spec,1.23,1.24 Message-ID: <20090725111303.0621C11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/mecab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7562 Modified Files: mecab.spec Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.4.pre3 - Kill tests on ppc, ppc64 for now as tests hang Index: mecab.spec =================================================================== RCS file: /cvs/extras/rpms/mecab/devel/mecab.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- mecab.spec 24 Jul 2009 18:22:03 -0000 1.23 +++ mecab.spec 25 Jul 2009 11:13:02 -0000 1.24 @@ -81,6 +81,12 @@ find . -name \*.cpp -print0 | xargs -0 % %{__mkdir} -p $RPM_BUILD_ROOT%{_libdir}/mecab/dic/ %check +# Test hangs, need check later +%ifarch ppc ppc64 +echo "Test disabled, please check later!!" +exit 0 +%endif + # here enable rpath export LD_LIBRARY_PATH=$(pwd)/src/.libs cd tests @@ -116,7 +122,7 @@ cd .. %changelog * Sat Jul 25 2009 Mamoru Tasaka - 0.98-0.4.pre3 -- F-12: Mass rebuild +- Kill tests on ppc, ppc64 for now as tests hang * Thu Jun 4 2009 Mamoru Tasaka - 0.98-0.3.pre3 - 0.98 pre3 From jkeating at fedoraproject.org Sat Jul 25 11:12:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:12:55 +0000 (UTC) Subject: rpms/lock-keys-applet/devel lock-keys-applet.spec,1.22,1.23 Message-ID: <20090725111255.68FBD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lock-keys-applet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7495 Modified Files: lock-keys-applet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lock-keys-applet.spec =================================================================== RCS file: /cvs/pkgs/rpms/lock-keys-applet/devel/lock-keys-applet.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lock-keys-applet.spec 25 Feb 2009 20:46:39 -0000 1.22 +++ lock-keys-applet.spec 25 Jul 2009 11:12:54 -0000 1.23 @@ -1,6 +1,6 @@ Name: lock-keys-applet Version: 1.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A GNOME panel applet that shows the status of the lock keys Group: Applications/System @@ -54,6 +54,9 @@ scrollkeeper-update -q || : %{_libexecdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:13:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:13:12 +0000 (UTC) Subject: rpms/lockdev/devel lockdev.spec,1.30,1.31 Message-ID: <20090725111312.ED1B011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lockdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7785 Modified Files: lockdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lockdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/lockdev/devel/lockdev.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- lockdev.spec 25 Feb 2009 20:47:33 -0000 1.30 +++ lockdev.spec 25 Jul 2009 11:13:12 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A library for locking devices Name: lockdev Version: 1.0.1 -Release: 14%{?dist} +Release: 15%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://packages.debian.org/unstable/source/lockdev @@ -91,6 +91,9 @@ rm -fr $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:13:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:13:28 +0000 (UTC) Subject: rpms/log4c/devel log4c.spec,1.2,1.3 Message-ID: <20090725111328.6BE1811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/log4c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7963 Modified Files: log4c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: log4c.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4c/devel/log4c.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- log4c.spec 25 Feb 2009 20:48:25 -0000 1.2 +++ log4c.spec 25 Jul 2009 11:13:28 -0000 1.3 @@ -1,6 +1,6 @@ Name: log4c Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for logging application messages Group: System Environment/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_datadir}/aclocal/log4c.m4 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:13:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:13:43 +0000 (UTC) Subject: rpms/log4cpp/devel log4cpp.spec,1.4,1.5 Message-ID: <20090725111343.74AB211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/log4cpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8139 Modified Files: log4cpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: log4cpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4cpp/devel/log4cpp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- log4cpp.spec 25 Feb 2009 20:49:16 -0000 1.4 +++ log4cpp.spec 25 Jul 2009 11:13:43 -0000 1.5 @@ -1,6 +1,6 @@ Name: log4cpp Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ logging library Group: Development/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:14:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:14:01 +0000 (UTC) Subject: rpms/log4cxx/devel log4cxx.spec,1.3,1.4 Message-ID: <20090725111401.CFC1011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/log4cxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8300 Modified Files: log4cxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: log4cxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4cxx/devel/log4cxx.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- log4cxx.spec 25 Apr 2009 20:26:47 -0000 1.3 +++ log4cxx.spec 25 Jul 2009 11:14:01 -0000 1.4 @@ -1,6 +1,6 @@ Name: log4cxx Version: 0.10.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A port to C++ of the Log4j project Group: System Environment/Libraries @@ -69,6 +69,9 @@ Header files and documentation you can u %doc html/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Milos Jakubicek - 0.10.0-7 - Fix FTBFS: updated log4cxx-cstring.patch for gcc 4.4 From jkeating at fedoraproject.org Sat Jul 25 11:14:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:14:19 +0000 (UTC) Subject: rpms/log4j/devel log4j.spec,1.27,1.28 Message-ID: <20090725111419.7AEA811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/log4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8475 Modified Files: log4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: log4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4j/devel/log4j.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- log4j.spec 25 Feb 2009 20:50:56 -0000 1.27 +++ log4j.spec 25 Jul 2009 11:14:19 -0000 1.28 @@ -37,7 +37,7 @@ Name: log4j Version: 1.2.14 -Release: 5.3%{?dist} +Release: 6.3%{?dist} Epoch: 0 Summary: Java logging package License: ASL 2.0 @@ -273,6 +273,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.2.14-6.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.2.14-5.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:14:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:14:33 +0000 (UTC) Subject: rpms/log4net/devel log4net.spec,1.4,1.5 Message-ID: <20090725111433.EDCE311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/log4net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8621 Modified Files: log4net.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: log4net.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4net/devel/log4net.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- log4net.spec 25 Feb 2009 20:51:50 -0000 1.4 +++ log4net.spec 25 Jul 2009 11:14:33 -0000 1.5 @@ -16,7 +16,7 @@ URL: http://logging.apache.org/log4net/ License: ASL 2.0 Group: System Environment/Libraries Version: 1.2.10 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A .NET framework for logging Source: http://cvs.apache.org/dist/incubator/log4net/1.2.10/incubating-log4net-1.2.10.zip Source1: log4net.pc @@ -80,6 +80,9 @@ gacutil -i bin/mono/1.0/release/log4net. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:14:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:14:50 +0000 (UTC) Subject: rpms/logjam/devel logjam.spec,1.55,1.56 Message-ID: <20090725111450.49D6111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/logjam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8772 Modified Files: logjam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: logjam.spec =================================================================== RCS file: /cvs/pkgs/rpms/logjam/devel/logjam.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- logjam.spec 27 Apr 2009 21:38:35 -0000 1.55 +++ logjam.spec 25 Jul 2009 11:14:50 -0000 1.56 @@ -2,7 +2,7 @@ Name: logjam Version: 4.5.3 -Release: 33%{?dist} +Release: 34%{?dist} Epoch: 1 Summary: GTK2 client for LiveJournal License: GPLv2+ @@ -143,6 +143,9 @@ desktop-file-install --vendor fedora rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:4.5.3-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Tom "spot" Callaway - 4.5.3-33 - conditionalize libtool fun for F10+ From jkeating at fedoraproject.org Sat Jul 25 11:15:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:15:06 +0000 (UTC) Subject: rpms/logrotate/devel logrotate.spec,1.79,1.80 Message-ID: <20090725111506.A660611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/logrotate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8915 Modified Files: logrotate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: logrotate.spec =================================================================== RCS file: /cvs/pkgs/rpms/logrotate/devel/logrotate.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- logrotate.spec 25 Feb 2009 20:53:35 -0000 1.79 +++ logrotate.spec 25 Jul 2009 11:15:06 -0000 1.80 @@ -1,7 +1,7 @@ Summary: Rotates, compresses, removes and mails system log files Name: logrotate Version: 3.7.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ Group: System Environment/Base Source: https://fedorahosted.org/releases/l/o/logrotate/logrotate-%{version}.tar.gz @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644, root, root) %verify(not size md5 mtime) %config(noreplace) %{_localstatedir}/lib/logrotate.status %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.7.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:15:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:15:24 +0000 (UTC) Subject: rpms/logserial/devel logserial.spec,1.9,1.10 Message-ID: <20090725111524.1FDC011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/logserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9071 Modified Files: logserial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: logserial.spec =================================================================== RCS file: /cvs/pkgs/rpms/logserial/devel/logserial.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- logserial.spec 25 Feb 2009 20:54:24 -0000 1.9 +++ logserial.spec 25 Jul 2009 11:15:23 -0000 1.10 @@ -1,6 +1,6 @@ Name: logserial Version: 0.4.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Package for logging incoming bytes on asynchronous serial ports Group: Applications/Communications @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:15:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:15:40 +0000 (UTC) Subject: rpms/logstalgia/devel logstalgia.spec,1.2,1.3 Message-ID: <20090725111540.6D80B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/logstalgia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9245 Modified Files: logstalgia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: logstalgia.spec =================================================================== RCS file: /cvs/pkgs/rpms/logstalgia/devel/logstalgia.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- logstalgia.spec 25 Feb 2009 20:55:13 -0000 1.2 +++ logstalgia.spec 25 Jul 2009 11:15:40 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Web server access log visualizer Name: logstalgia Version: 0.9.1 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Internet License: GPLv3+ URL: http://code.google.com/p/logstalgia/ @@ -43,6 +43,9 @@ access log (eg access.log) as a retro ar %{_mandir}/man1/%{name}.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:15:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:15:57 +0000 (UTC) Subject: rpms/logwatch/devel logwatch.spec,1.116,1.117 Message-ID: <20090725111557.8D42911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/logwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9416 Modified Files: logwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: logwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/logwatch/devel/logwatch.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- logwatch.spec 7 Jul 2009 11:03:25 -0000 1.116 +++ logwatch.spec 25 Jul 2009 11:15:57 -0000 1.117 @@ -1,7 +1,7 @@ Summary: A log file analysis program Name: logwatch Version: 7.3.6 -Release: 46%{?dist} +Release: 47%{?dist} License: MIT Group: Applications/System URL: http://www.logwatch.org/ @@ -236,6 +236,9 @@ rm -rf %{buildroot} %doc License project/CHANGES %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7.3.6-47 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Ivana Varekova 7.3.6-16 - fix cron script From jkeating at fedoraproject.org Sat Jul 25 11:16:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:16:17 +0000 (UTC) Subject: rpms/lohit-fonts/devel lohit-fonts.spec,1.12,1.13 Message-ID: <20090725111617.6E36011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lohit-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9585 Modified Files: lohit-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lohit-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/lohit-fonts/devel/lohit-fonts.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- lohit-fonts.spec 5 Mar 2009 14:12:48 -0000 1.12 +++ lohit-fonts.spec 25 Jul 2009 11:16:17 -0000 1.13 @@ -8,7 +8,7 @@ Languages. Name: %{fontname}-fonts Version: 2.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Free Indian truetype/opentype fonts Group: User Interface/X @@ -267,6 +267,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Rahul Bhalerao - 2.3.8-1.fc11 - Bug 428427 - [kn_IN][fonts-indic] - 0CB5+0CCA is wrongly rendering From jkeating at fedoraproject.org Sat Jul 25 11:16:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:16:32 +0000 (UTC) Subject: rpms/loki-lib/devel loki-lib.spec,1.5,1.6 Message-ID: <20090725111632.37F8611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/loki-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9726 Modified Files: loki-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: loki-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/loki-lib/devel/loki-lib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- loki-lib.spec 25 Feb 2009 20:57:51 -0000 1.5 +++ loki-lib.spec 25 Jul 2009 11:16:32 -0000 1.6 @@ -2,7 +2,7 @@ %define majorversion 0 Name: %{upname}-lib Version: 0.1.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Loki C++ Library of design patterns and idioms Group: Development/Libraries @@ -83,6 +83,9 @@ HTML documentation files for the Loki C+ %doc doc/html doc/flex doc/yasli %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:16:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:16:47 +0000 (UTC) Subject: rpms/londonlaw/devel londonlaw.spec,1.6,1.7 Message-ID: <20090725111647.F33C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/londonlaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9881 Modified Files: londonlaw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: londonlaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/londonlaw/devel/londonlaw.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- londonlaw.spec 25 Feb 2009 20:58:44 -0000 1.6 +++ londonlaw.spec 25 Jul 2009 11:16:47 -0000 1.7 @@ -2,7 +2,7 @@ Name: londonlaw Version: 0.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Online multiplayer version of a well known detective boardgame License: GPLv2 Group: Amusements/Games @@ -86,6 +86,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:17:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:17:02 +0000 (UTC) Subject: rpms/lordsawar/devel lordsawar.spec,1.8,1.9 Message-ID: <20090725111702.0BC8111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lordsawar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10049 Modified Files: lordsawar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lordsawar.spec =================================================================== RCS file: /cvs/pkgs/rpms/lordsawar/devel/lordsawar.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lordsawar.spec 16 Jul 2009 04:40:56 -0000 1.8 +++ lordsawar.spec 25 Jul 2009 11:17:01 -0000 1.9 @@ -1,6 +1,6 @@ Name: lordsawar Version: 0.1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Turn-based strategy game in a fantasy setting Group: Amusements/Games @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Ian Weller - 0.1.5-3 - Fix build dependency on uuid.h From jkeating at fedoraproject.org Sat Jul 25 11:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:17:16 +0000 (UTC) Subject: rpms/lostirc/devel lostirc.spec,1.9,1.10 Message-ID: <20090725111716.7E78E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lostirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10210 Modified Files: lostirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lostirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/lostirc/devel/lostirc.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lostirc.spec 25 Feb 2009 21:00:23 -0000 1.9 +++ lostirc.spec 25 Jul 2009 11:17:16 -0000 1.10 @@ -1,6 +1,6 @@ Name: lostirc Version: 0.4.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Simple IRC client for X11 Group: Applications/Internet @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:17:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:17:30 +0000 (UTC) Subject: rpms/lostlabyrinth/devel lostlabyrinth.spec,1.6,1.7 Message-ID: <20090725111730.96E1611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lostlabyrinth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10357 Modified Files: lostlabyrinth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lostlabyrinth.spec =================================================================== RCS file: /cvs/pkgs/rpms/lostlabyrinth/devel/lostlabyrinth.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lostlabyrinth.spec 25 Feb 2009 21:01:14 -0000 1.6 +++ lostlabyrinth.spec 25 Jul 2009 11:17:30 -0000 1.7 @@ -1,6 +1,6 @@ Name: lostlabyrinth Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lost Labyrinth is a coffeebreak dungeon crawling game Group: Amusements/Games License: GPLv3+ @@ -92,6 +92,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pbrobinson at fedoraproject.org Sat Jul 25 11:17:59 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 25 Jul 2009 11:17:59 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.8,1.9 Message-ID: <20090725111759.7D4B111C02BC@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10673 Modified Files: nbtk.spec Log Message: - fix changelog Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nbtk.spec 15 Jul 2009 16:09:38 -0000 1.8 +++ nbtk.spec 25 Jul 2009 11:17:59 -0000 1.9 @@ -76,7 +76,7 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog -* Thu Jul 9 2009 Peter Robinson 0.14.5-2 +* Thu Jul 9 2009 Peter Robinson 0.14.5-3 - More updates * Thu Jul 9 2009 Peter Robinson 0.14.5-2 From jkeating at fedoraproject.org Sat Jul 25 11:17:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:17:46 +0000 (UTC) Subject: rpms/lostlabyrinth-graphics/devel lostlabyrinth-graphics.spec, 1.5, 1.6 Message-ID: <20090725111746.31CC611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lostlabyrinth-graphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10517 Modified Files: lostlabyrinth-graphics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lostlabyrinth-graphics.spec =================================================================== RCS file: /cvs/pkgs/rpms/lostlabyrinth-graphics/devel/lostlabyrinth-graphics.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lostlabyrinth-graphics.spec 25 Feb 2009 21:02:03 -0000 1.5 +++ lostlabyrinth-graphics.spec 25 Jul 2009 11:17:44 -0000 1.6 @@ -1,6 +1,6 @@ Name: lostlabyrinth-graphics Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lost Labyrinth graphics Group: Amusements/Games License: GPLv3+ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:18:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:18:01 +0000 (UTC) Subject: rpms/lostlabyrinth-sounds/devel lostlabyrinth-sounds.spec,1.4,1.5 Message-ID: <20090725111801.0E78C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lostlabyrinth-sounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10722 Modified Files: lostlabyrinth-sounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lostlabyrinth-sounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/lostlabyrinth-sounds/devel/lostlabyrinth-sounds.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lostlabyrinth-sounds.spec 25 Feb 2009 21:02:53 -0000 1.4 +++ lostlabyrinth-sounds.spec 25 Jul 2009 11:18:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: lostlabyrinth-sounds Version: 3.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lost Labyrinth sounds Group: Amusements/Games License: GPLv2+ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:18:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:18:16 +0000 (UTC) Subject: rpms/loudmouth/devel loudmouth.spec,1.47,1.48 Message-ID: <20090725111816.8D47811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/loudmouth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10900 Modified Files: loudmouth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: loudmouth.spec =================================================================== RCS file: /cvs/pkgs/rpms/loudmouth/devel/loudmouth.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- loudmouth.spec 13 Jun 2009 21:28:40 -0000 1.47 +++ loudmouth.spec 25 Jul 2009 11:18:16 -0000 1.48 @@ -3,7 +3,7 @@ Name: loudmouth Version: 1.4.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: XMPP/Jabber C programming library Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Brian Pepple - 1.4.3-5 - Add patch to fix digest uri bug. (#503901) From jkeating at fedoraproject.org Sat Jul 25 11:18:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:18:48 +0000 (UTC) Subject: rpms/lout/devel lout.spec,1.11,1.12 Message-ID: <20090725111848.7A64B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11220 Modified Files: lout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lout.spec =================================================================== RCS file: /cvs/pkgs/rpms/lout/devel/lout.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- lout.spec 25 Feb 2009 21:04:52 -0000 1.11 +++ lout.spec 25 Jul 2009 11:18:48 -0000 1.12 @@ -5,7 +5,7 @@ Name: lout Summary: A document formatting system Version: 3.38 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Publishing URL: ftp://ftp.cs.usyd.edu.au/jeff/lout/ @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.38-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:19:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:19:04 +0000 (UTC) Subject: rpms/lpairs/devel lpairs.spec,1.1,1.2 Message-ID: <20090725111904.9240A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lpairs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11399 Modified Files: lpairs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lpairs.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpairs/devel/lpairs.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lpairs.spec 11 Mar 2009 19:22:07 -0000 1.1 +++ lpairs.spec 25 Jul 2009 11:19:04 -0000 1.2 @@ -1,7 +1,7 @@ Name: lpairs Summary: Classical memory game with cards Version: 1.0.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ and CC-BY-SA and Freely redistributable without restriction Group: Amusements/Games URL: http://lgames.sourceforge.net/index.php?project=LPairs @@ -60,6 +60,9 @@ rm -fr %{buildroot} %{_datadir}/pixmaps/%{name}.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Marcin Zajaczkowski - 1.0.4-6 - removed macros from changelog - removed spaces introduces during last changes (instead of tabs) From jkeating at fedoraproject.org Sat Jul 25 11:19:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:19:19 +0000 (UTC) Subject: rpms/lpg/devel lpg.spec,1.2,1.3 Message-ID: <20090725111919.6F6F111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11581 Modified Files: lpg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpg/devel/lpg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lpg.spec 15 Jul 2009 10:45:28 -0000 1.2 +++ lpg.spec 25 Jul 2009 11:19:19 -0000 1.3 @@ -3,7 +3,7 @@ Name: lpg Version: %{_version} -Release: 3%{?dist} +Release: 4%{?dist} Summary: LALR Parser Generator Group: Development/Libraries # although the text of the licence isn't distributed with some of the source, @@ -147,6 +147,9 @@ rm -rf %{buildroot} %{_javadir}/%{name}javaruntime* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.17-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Mat Booth 2.0.17-3 - Add missing build dependency on ant-apache-regexp. - Remove empty sub-package that was accidentally left. From jkeating at fedoraproject.org Sat Jul 25 11:19:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:19:34 +0000 (UTC) Subject: rpms/lpsk31/devel lpsk31.spec,1.5,1.6 Message-ID: <20090725111934.1F53A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lpsk31/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11732 Modified Files: lpsk31.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lpsk31.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpsk31/devel/lpsk31.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lpsk31.spec 25 Feb 2009 21:06:13 -0000 1.5 +++ lpsk31.spec 25 Jul 2009 11:19:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: lpsk31 Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A ncurses application for ham radio communications using PSK31 digital mode Group: Applications/Communications @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:19:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:19:49 +0000 (UTC) Subject: rpms/lpsolve/devel lpsolve.spec,1.8,1.9 Message-ID: <20090725111949.331B911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lpsolve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11863 Modified Files: lpsolve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lpsolve.spec =================================================================== RCS file: /cvs/pkgs/rpms/lpsolve/devel/lpsolve.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- lpsolve.spec 25 Feb 2009 21:07:19 -0000 1.8 +++ lpsolve.spec 25 Jul 2009 11:19:49 -0000 1.9 @@ -1,7 +1,7 @@ Name: lpsolve Summary: A Mixed Integer Linear Programming (MILP) solver Version: 5.5.0.14 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/lpsolve/lp_solve_%{version}_source.tar.gz Group: System Environment/Libraries URL: http://sourceforge.net/projects/lpsolve @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/lpsolve %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.5.0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.5.0.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:20:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:20:05 +0000 (UTC) Subject: rpms/lrmi/devel lrmi.spec,1.13,1.14 Message-ID: <20090725112005.1189D11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lrmi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12012 Modified Files: lrmi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lrmi.spec =================================================================== RCS file: /cvs/pkgs/rpms/lrmi/devel/lrmi.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- lrmi.spec 25 Feb 2009 21:08:14 -0000 1.13 +++ lrmi.spec 25 Jul 2009 11:20:04 -0000 1.14 @@ -1,6 +1,6 @@ Name: lrmi Version: 0.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for calling real mode BIOS routines Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:20:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:20:20 +0000 (UTC) Subject: rpms/lrzip/devel lrzip.spec,1.4,1.5 Message-ID: <20090725112020.0C86C11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lrzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12153 Modified Files: lrzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lrzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/lrzip/devel/lrzip.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lrzip.spec 25 Feb 2009 21:09:08 -0000 1.4 +++ lrzip.spec 25 Jul 2009 11:20:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: lrzip Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Compression program optimised for large files Group: Applications/File @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/man/man1/lrzip.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:20:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:20:35 +0000 (UTC) Subject: rpms/lrzsz/devel lrzsz.spec,1.22,1.23 Message-ID: <20090725112035.3505711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lrzsz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12292 Modified Files: lrzsz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lrzsz.spec =================================================================== RCS file: /cvs/pkgs/rpms/lrzsz/devel/lrzsz.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lrzsz.spec 25 Feb 2009 21:09:59 -0000 1.22 +++ lrzsz.spec 25 Jul 2009 11:20:35 -0000 1.23 @@ -1,7 +1,7 @@ Summary: The lrz and lsz modem communications programs Name: lrzsz Version: 0.12.20 -Release: 26%{?dist} +Release: 27%{?dist} License: GPLv2+ Group: Applications/Communications Source: http://www.ohse.de/uwe/releases/%{name}-%{version}.tar.gz @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12.20-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.20-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:20:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:20:51 +0000 (UTC) Subject: rpms/lsdvd/devel lsdvd.spec,1.7,1.8 Message-ID: <20090725112051.41FB011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lsdvd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12445 Modified Files: lsdvd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lsdvd.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsdvd/devel/lsdvd.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lsdvd.spec 25 Feb 2009 21:11:02 -0000 1.7 +++ lsdvd.spec 25 Jul 2009 11:20:51 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Small application for listing the contents of DVDs Name: lsdvd Version: 0.16 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://untrepid.com/lsdvd/ @@ -40,6 +40,9 @@ lsdvd is a small application which lists %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.16-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:21:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:21:08 +0000 (UTC) Subject: rpms/lshw/devel lshw.spec,1.13,1.14 Message-ID: <20090725112108.0134A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lshw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12599 Modified Files: lshw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lshw.spec =================================================================== RCS file: /cvs/pkgs/rpms/lshw/devel/lshw.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- lshw.spec 6 May 2009 17:51:47 -0000 1.13 +++ lshw.spec 25 Jul 2009 11:21:07 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Hardware lister Name: lshw Version: B.02.14 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: http://ezix.org/project/wiki/HardwareLiSter @@ -114,6 +114,9 @@ desktop-file-install --vendor fedora \ %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - B.02.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Adam Jackson B.02.14-2 - Requires: hwdata - Drop redundant copies of pci.ids and friends, since we'll pick up the From jkeating at fedoraproject.org Sat Jul 25 11:21:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:21:23 +0000 (UTC) Subject: rpms/lslk/devel lslk.spec,1.23,1.24 Message-ID: <20090725112123.3562811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lslk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12753 Modified Files: lslk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lslk.spec =================================================================== RCS file: /cvs/pkgs/rpms/lslk/devel/lslk.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- lslk.spec 25 Feb 2009 21:12:52 -0000 1.23 +++ lslk.spec 25 Jul 2009 11:21:23 -0000 1.24 @@ -1,7 +1,7 @@ Summary: A lock file lister Name: lslk Version: 1.29 -Release: 21%{?dist} +Release: 22%{?dist} License: zlib Group: Development/Debuggers URL: ftp://vic.cc.purdue.edu/pub/tools/unix/lslk @@ -50,6 +50,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.29-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.29-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:21:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:21:36 +0000 (UTC) Subject: rpms/lsnipes/devel lsnipes.spec,1.2,1.3 Message-ID: <20090725112136.DC3B611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lsnipes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12900 Modified Files: lsnipes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lsnipes.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsnipes/devel/lsnipes.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lsnipes.spec 25 Feb 2009 21:13:53 -0000 1.2 +++ lsnipes.spec 25 Jul 2009 11:21:36 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A text-mode maze game Name: lsnipes Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Amusements/Games Source: http://www.ugcs.caltech.edu/~boultonj/snipes/%{name}-%{version}.tgz @@ -51,6 +51,9 @@ partially implemented) let you build you %{_mandir}/man6/snipes.6* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:21:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:21:50 +0000 (UTC) Subject: rpms/lsof/devel lsof.spec,1.45,1.46 Message-ID: <20090725112150.F14B511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lsof/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13030 Modified Files: lsof.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lsof.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsof/devel/lsof.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- lsof.spec 25 Feb 2009 21:14:54 -0000 1.45 +++ lsof.spec 25 Jul 2009 11:21:50 -0000 1.46 @@ -1,7 +1,7 @@ Summary: A utility which lists open files on a Linux/UNIX system Name: lsof Version: 4.81 -Release: 3%{?dist} +Release: 4%{?dist} License: zlib Group: Development/Debuggers @@ -56,6 +56,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.81-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.81-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:22:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:22:05 +0000 (UTC) Subject: rpms/lsscsi/devel lsscsi.spec,1.9,1.10 Message-ID: <20090725112205.45C0611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lsscsi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13165 Modified Files: lsscsi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lsscsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsscsi/devel/lsscsi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lsscsi.spec 25 Feb 2009 21:15:53 -0000 1.9 +++ lsscsi.spec 25 Jul 2009 11:22:05 -0000 1.10 @@ -1,7 +1,7 @@ Summary: List SCSI devices (or hosts) and associated information Name: lsscsi Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.22-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:22:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:22:20 +0000 (UTC) Subject: rpms/lsvpd/devel lsvpd.spec,1.9,1.10 Message-ID: <20090725112220.99A1E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lsvpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13339 Modified Files: lsvpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lsvpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsvpd/devel/lsvpd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lsvpd.spec 28 Apr 2009 13:10:28 -0000 1.9 +++ lsvpd.spec 25 Jul 2009 11:22:20 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{name} Version: %{version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: VPD/hardware inventory utilities for Linux Group: Applications/System @@ -71,6 +71,9 @@ on POWER PC based systems. %dir %{_sysconfdir}/lsvpd %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 - Dan Horak - 1.6.5-2 - rebuild for sg3_utils 1.27 From jkeating at fedoraproject.org Sat Jul 25 11:22:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:22:35 +0000 (UTC) Subject: rpms/ltrace/devel ltrace.spec,1.67,1.68 Message-ID: <20090725112235.2156911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ltrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13489 Modified Files: ltrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ltrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/ltrace/devel/ltrace.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- ltrace.spec 25 Feb 2009 21:54:38 -0000 1.67 +++ ltrace.spec 25 Jul 2009 11:22:34 -0000 1.68 @@ -1,7 +1,7 @@ Summary: Tracks runtime library calls from dynamically linked executables Name: ltrace Version: 0.5 -Release: 13.45svn%{?dist} +Release: 14.45svn%{?dist} URL: http://ltrace.alioth.debian.org/ License: GPLv2+ Group: Development/Debuggers @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/ltrace.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5-14.45svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-13.45svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:22:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:22:49 +0000 (UTC) Subject: rpms/ltsp/devel ltsp.spec,1.32,1.33 Message-ID: <20090725112249.1A54A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ltsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13650 Modified Files: ltsp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ltsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ltsp/devel/ltsp.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- ltsp.spec 30 Apr 2009 22:12:13 -0000 1.32 +++ ltsp.spec 25 Jul 2009 11:22:48 -0000 1.33 @@ -2,7 +2,7 @@ Name: ltsp Version: 5.1.72 %define _datestamp .20090422.23 #Release: 1%{_datestamp}%{?dist} -Release: 1%{?dist} +Release: 2%{?dist} Summary: Linux Terminal Server Project Server and Client Group: User Interface/Desktops @@ -412,6 +412,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.72-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Warren Togami - 5.1.72-1 - no code changes, only important documentation update regarding disabling ltspbr0 see /etc/sysconfig/network-scripts/ifcfg-ltspbr0 From jkeating at fedoraproject.org Sat Jul 25 11:23:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:23:03 +0000 (UTC) Subject: rpms/ltspfs/devel ltspfs.spec,1.6,1.7 Message-ID: <20090725112303.2E1D611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ltspfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13808 Modified Files: ltspfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ltspfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/ltspfs/devel/ltspfs.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ltspfs.spec 25 Feb 2009 21:56:49 -0000 1.6 +++ ltspfs.spec 25 Jul 2009 11:23:03 -0000 1.7 @@ -2,7 +2,7 @@ Name: ltspfs Version: 0.5.8 %define _datestamp .20081211.20 #Release: 2%{_datestamp}%{?dist} -Release: 2%{?dist} +Release: 3%{?dist} Summary: LTSP file system, daemon that runs on thin clients Group: System Environment/Base @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_localstatedir}/run/devices/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:23:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:23:42 +0000 (UTC) Subject: rpms/lua/devel lua.spec,1.34,1.35 Message-ID: <20090725112342.EFFBA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14128 Modified Files: lua.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua/devel/lua.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- lua.spec 11 Jun 2009 22:37:45 -0000 1.34 +++ lua.spec 25 Jul 2009 11:23:42 -0000 1.35 @@ -1,6 +1,6 @@ Name: lua Version: 5.1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Powerful light-weight programming language Group: Development/Languages License: MIT @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Tim Niemueller - 5.1.4-2 - Link liblua.so with -lm (math lib), fixes rhbz #499238 From jkeating at fedoraproject.org Sat Jul 25 11:23:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:23:58 +0000 (UTC) Subject: rpms/lua-expat/devel lua-expat.spec,1.2,1.3 Message-ID: <20090725112358.B210A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-expat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14325 Modified Files: lua-expat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-expat.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-expat/devel/lua-expat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lua-expat.spec 25 Feb 2009 21:59:26 -0000 1.2 +++ lua-expat.spec 25 Jul 2009 11:23:58 -0000 1.3 @@ -4,7 +4,7 @@ Name: lua-expat Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SAX XML parser based on the Expat library Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:24:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:24:14 +0000 (UTC) Subject: rpms/lua-filesystem/devel lua-filesystem.spec,1.3,1.4 Message-ID: <20090725112414.1503E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14509 Modified Files: lua-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-filesystem/devel/lua-filesystem.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lua-filesystem.spec 25 Feb 2009 22:00:18 -0000 1.3 +++ lua-filesystem.spec 25 Jul 2009 11:24:13 -0000 1.4 @@ -4,7 +4,7 @@ Name: lua-filesystem Version: 1.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File System Library for the Lua Programming Language Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:24:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:24:29 +0000 (UTC) Subject: rpms/lua-logging/devel lua-logging.spec,1.2,1.3 Message-ID: <20090725112429.7793B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-logging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14680 Modified Files: lua-logging.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-logging.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-logging/devel/lua-logging.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lua-logging.spec 25 Feb 2009 22:01:14 -0000 1.2 +++ lua-logging.spec 25 Jul 2009 11:24:29 -0000 1.3 @@ -4,7 +4,7 @@ Name: lua-logging Version: 1.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple API to use logging features in Lua Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:24:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:24:44 +0000 (UTC) Subject: rpms/lua-lpeg/devel lua-lpeg.spec,1.3,1.4 Message-ID: <20090725112444.437BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-lpeg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14805 Modified Files: lua-lpeg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-lpeg.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-lpeg/devel/lua-lpeg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lua-lpeg.spec 25 Feb 2009 22:02:07 -0000 1.3 +++ lua-lpeg.spec 25 Jul 2009 11:24:44 -0000 1.4 @@ -4,7 +4,7 @@ Name: lua-lpeg Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parsing Expression Grammars for Lua Group: Development/Libraries @@ -54,6 +54,9 @@ lua test.lua %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:24:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:24:59 +0000 (UTC) Subject: rpms/lua-posix/devel lua-posix.spec,1.3,1.4 Message-ID: <20090725112459.4AFC011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-posix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14933 Modified Files: lua-posix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-posix.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-posix/devel/lua-posix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lua-posix.spec 25 Feb 2009 22:03:08 -0000 1.3 +++ lua-posix.spec 25 Jul 2009 11:24:59 -0000 1.4 @@ -4,7 +4,7 @@ Name: lua-posix Version: 5.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A POSIX library for Lua Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:25:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:25:15 +0000 (UTC) Subject: rpms/lua-rex/devel lua-rex.spec,1.3,1.4 Message-ID: <20090725112515.15A3011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-rex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15079 Modified Files: lua-rex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-rex.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-rex/devel/lua-rex.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lua-rex.spec 25 Feb 2009 22:04:07 -0000 1.3 +++ lua-rex.spec 25 Jul 2009 11:25:14 -0000 1.4 @@ -3,7 +3,7 @@ Name: lua-rex Version: 2.4.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Regular expression handling library for Lua Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:25:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:25:34 +0000 (UTC) Subject: rpms/lua-socket/devel lua-socket.spec,1.2,1.3 Message-ID: <20090725112534.92C4E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-socket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15265 Modified Files: lua-socket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-socket.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-socket/devel/lua-socket.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lua-socket.spec 25 Feb 2009 22:05:04 -0000 1.2 +++ lua-socket.spec 25 Jul 2009 11:25:34 -0000 1.3 @@ -4,7 +4,7 @@ Name: lua-socket Version: 2.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Network support for the Lua language Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:25:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:25:49 +0000 (UTC) Subject: rpms/lua-sql/devel lua-sql.spec,1.3,1.4 Message-ID: <20090725112549.599C611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lua-sql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15415 Modified Files: lua-sql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lua-sql.spec =================================================================== RCS file: /cvs/pkgs/rpms/lua-sql/devel/lua-sql.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lua-sql.spec 25 Feb 2009 22:06:00 -0000 1.3 +++ lua-sql.spec 25 Jul 2009 11:25:49 -0000 1.4 @@ -4,7 +4,7 @@ Name: lua-sql Version: 2.1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Database connectivity for the Lua programming language Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:26:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:26:04 +0000 (UTC) Subject: rpms/luadoc/devel luadoc.spec,1.2,1.3 Message-ID: <20090725112604.1955A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/luadoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15567 Modified Files: luadoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: luadoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/luadoc/devel/luadoc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- luadoc.spec 25 Feb 2009 22:07:02 -0000 1.2 +++ luadoc.spec 25 Jul 2009 11:26:03 -0000 1.3 @@ -4,7 +4,7 @@ Name: luadoc Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Documentation Generator Tool for the Lua language Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:26:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:26:19 +0000 (UTC) Subject: rpms/lucene/devel lucene.spec,1.41,1.42 Message-ID: <20090725112619.7F6B111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lucene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15697 Modified Files: lucene.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lucene.spec =================================================================== RCS file: /cvs/pkgs/rpms/lucene/devel/lucene.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- lucene.spec 30 Apr 2009 18:30:49 -0000 1.41 +++ lucene.spec 25 Jul 2009 11:26:19 -0000 1.42 @@ -36,7 +36,7 @@ Summary: High-performance, full-featured text search engine Name: lucene Version: 2.3.1 -Release: 4.5%{?dist} +Release: 5.5%{?dist} Epoch: 0 License: ASL 2.0 URL: http://lucene.apache.org/ @@ -272,6 +272,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:2.3.1-5.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Deepak Bhole - 0:2.3.1-4.5 - rhbz #465344: Fix Implementation-Version and remove Class-Path from manifest From jkeating at fedoraproject.org Sat Jul 25 11:26:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:26:34 +0000 (UTC) Subject: rpms/lucidlife/devel lucidlife.spec,1.22,1.23 Message-ID: <20090725112634.8ACC011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lucidlife/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15835 Modified Files: lucidlife.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lucidlife.spec =================================================================== RCS file: /cvs/pkgs/rpms/lucidlife/devel/lucidlife.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- lucidlife.spec 25 Feb 2009 22:09:02 -0000 1.22 +++ lucidlife.spec 25 Jul 2009 11:26:34 -0000 1.23 @@ -1,6 +1,6 @@ Name: lucidlife Version: 0.9.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Conway's Life simulator Group: Amusements/Games @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:26:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:26:50 +0000 (UTC) Subject: rpms/luma/devel luma.spec,1.12,1.13 Message-ID: <20090725112650.5303411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/luma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16013 Modified Files: luma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: luma.spec =================================================================== RCS file: /cvs/pkgs/rpms/luma/devel/luma.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- luma.spec 25 Feb 2009 22:09:55 -0000 1.12 +++ luma.spec 25 Jul 2009 11:26:50 -0000 1.13 @@ -4,7 +4,7 @@ Name: luma Version: 2.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A graphical tool for managing LDAP servers Group: Applications/System @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:27:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:27:06 +0000 (UTC) Subject: rpms/lure/devel lure.spec,1.3,1.4 Message-ID: <20090725112706.60FF511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lure/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16173 Modified Files: lure.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lure.spec =================================================================== RCS file: /cvs/pkgs/rpms/lure/devel/lure.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lure.spec 5 Apr 2009 12:39:03 -0000 1.3 +++ lure.spec 25 Jul 2009 11:27:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: lure Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lure of the Temptress - Adventure Game Group: Amusements/Games # For further discussion on distribution rights see: @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Hans de Goede 1.1-3 - Drop lure.dat from the included files, as that is part of scummvm itself since 0.12.0 From jkeating at fedoraproject.org Sat Jul 25 11:27:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:27:22 +0000 (UTC) Subject: rpms/lush/devel lush.spec,1.5,1.6 Message-ID: <20090725112722.D714B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lush/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16321 Modified Files: lush.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lush.spec =================================================================== RCS file: /cvs/pkgs/rpms/lush/devel/lush.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- lush.spec 25 Feb 2009 22:11:48 -0000 1.5 +++ lush.spec 25 Jul 2009 11:27:22 -0000 1.6 @@ -1,6 +1,6 @@ Name: lush Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An object-oriented Lisp interpreter and compiler Group: Development/Languages @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:27:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:27:39 +0000 (UTC) Subject: rpms/lv/devel lv.spec,1.30,1.31 Message-ID: <20090725112739.8BF9A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16476 Modified Files: lv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv/devel/lv.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- lv.spec 25 Feb 2009 22:12:50 -0000 1.30 +++ lv.spec 25 Jul 2009 11:27:39 -0000 1.31 @@ -2,7 +2,7 @@ Name: lv Version: 4.51 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ URL: http://www.ff.iij4u.or.jp/~nrt/lv/ Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -62,6 +62,9 @@ make install bindir=$RPM_BUILD_ROOT%{_bi rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.51-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.51-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:27:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:27:55 +0000 (UTC) Subject: rpms/lv2-swh-plugins/devel lv2-swh-plugins.spec,1.1,1.2 Message-ID: <20090725112755.7993511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv2-swh-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16627 Modified Files: lv2-swh-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv2-swh-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv2-swh-plugins/devel/lv2-swh-plugins.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lv2-swh-plugins.spec 27 Apr 2009 18:03:03 -0000 1.1 +++ lv2-swh-plugins.spec 25 Jul 2009 11:27:55 -0000 1.2 @@ -2,7 +2,7 @@ Name: lv2-swh-plugins Version: 1.0.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: LV2 ports of LADSPA swh plugins Group: Applications/Multimedia License: GPLv2+ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Orcan Ogetbil - 1.0.15-2 - Fix unresolved symbols From jkeating at fedoraproject.org Sat Jul 25 11:28:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:28:11 +0000 (UTC) Subject: rpms/lv2-vocoder-plugins/devel lv2-vocoder-plugins.spec,1.1,1.2 Message-ID: <20090725112811.49C1111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv2-vocoder-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16777 Modified Files: lv2-vocoder-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv2-vocoder-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv2-vocoder-plugins/devel/lv2-vocoder-plugins.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lv2-vocoder-plugins.spec 27 Apr 2009 18:11:11 -0000 1.1 +++ lv2-vocoder-plugins.spec 25 Jul 2009 11:28:11 -0000 1.2 @@ -2,7 +2,7 @@ Name: lv2-vocoder-plugins Version: 1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add a robotic effect to vocals Group: Applications/Multimedia License: GPLv2 @@ -46,5 +46,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Orcan Ogetbil - 1-1 - Initial build From jkeating at fedoraproject.org Sat Jul 25 11:28:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:28:31 +0000 (UTC) Subject: rpms/lv2-zynadd-plugins/devel lv2-zynadd-plugins.spec,1.1,1.2 Message-ID: <20090725112831.70CD811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv2-zynadd-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16979 Modified Files: lv2-zynadd-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv2-zynadd-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv2-zynadd-plugins/devel/lv2-zynadd-plugins.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lv2-zynadd-plugins.spec 27 Apr 2009 18:18:25 -0000 1.1 +++ lv2-zynadd-plugins.spec 25 Jul 2009 11:28:31 -0000 1.2 @@ -3,7 +3,7 @@ Summary: LV2 port of the ZynAddSubFX engine Name: lv2-zynadd-plugins Version: 1 -Release: 3%{?dist} +Release: 4%{?dist} # lv2-midi*.h is LGPLv2+ # but the rest is GPLv2. The whole plugin will be then: License: GPLv2 @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_libdir}/lv2/zynadd.lv2/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Orcan Ogetbil - 1-3 - Remove unnecessary BR: jack-audio-connection-kit-devel - Fix mixed tabs&spaces warnings From jkeating at fedoraproject.org Sat Jul 25 11:28:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:28:46 +0000 (UTC) Subject: rpms/lv2core/devel lv2core.spec,1.6,1.7 Message-ID: <20090725112846.50D5511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv2core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17125 Modified Files: lv2core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv2core.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv2core/devel/lv2core.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lv2core.spec 8 Apr 2009 13:56:18 -0000 1.6 +++ lv2core.spec 25 Jul 2009 11:28:46 -0000 1.7 @@ -2,7 +2,7 @@ Name: lv2core Version: 3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Audio Plugin Standard @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/lv2core.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Orcan Ogetbil - 3.0-3 - Add Requires: pkgconfig to the -devel subpackage. From jkeating at fedoraproject.org Sat Jul 25 11:29:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:29:03 +0000 (UTC) Subject: rpms/lv2dynparam/devel lv2dynparam.spec,1.1,1.2 Message-ID: <20090725112903.50E8711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lv2dynparam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17281 Modified Files: lv2dynparam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lv2dynparam.spec =================================================================== RCS file: /cvs/pkgs/rpms/lv2dynparam/devel/lv2dynparam.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lv2dynparam.spec 10 Apr 2009 22:39:59 -0000 1.1 +++ lv2dynparam.spec 25 Jul 2009 11:29:03 -0000 1.2 @@ -1,7 +1,7 @@ Summary: LV2 dynamic parameters extension Name: lv2dynparam Version: 2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Libraries URL: http://home.gna.org/lv2dynparam/ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}plugin1.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Orcan Ogetbil - 2-1 - update to version 2 - prepare package for Fedora review. SPEC file is courtesy of PlanetCCRMA From jkeating at fedoraproject.org Sat Jul 25 11:29:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:29:19 +0000 (UTC) Subject: rpms/lvm2/devel lvm2.spec,1.162,1.163 Message-ID: <20090725112919.1C45B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lvm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17430 Modified Files: lvm2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lvm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/lvm2/devel/lvm2.spec,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- lvm2.spec 15 Jul 2009 16:29:49 -0000 1.162 +++ lvm2.spec 25 Jul 2009 11:29:18 -0000 1.163 @@ -8,7 +8,7 @@ Summary: Userland logical volume management tools Name: lvm2 Version: 2.02.49 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: System Environment/Base URL: http://sources.redhat.com/lvm2 @@ -266,6 +266,9 @@ This package contains the device-mapper %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.02.49-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Alasdair Kergon - 2.02.49-1 - Exclude VG_GLOBAL from vg_write_lock_held so scans open devs read-only again. - Fix dev name mismatch in vgcreate man page example. From jkeating at fedoraproject.org Sat Jul 25 11:29:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:29:38 +0000 (UTC) Subject: rpms/lwp/devel lwp.spec,1.4,1.5 Message-ID: <20090725112938.4AA5411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lwp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17625 Modified Files: lwp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lwp.spec =================================================================== RCS file: /cvs/pkgs/rpms/lwp/devel/lwp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lwp.spec 27 Feb 2009 16:44:25 -0000 1.4 +++ lwp.spec 25 Jul 2009 11:29:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: lwp Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C library for user-mode threading Group: System Environment/Libraries License: LGPLv2 @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Adam Goode - 2.5-1 - New upstream release + Correct license on a few files From jkeating at fedoraproject.org Sat Jul 25 11:29:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:29:52 +0000 (UTC) Subject: rpms/lx/devel lx.spec,1.4,1.5 Message-ID: <20090725112952.3A1BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17807 Modified Files: lx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lx.spec =================================================================== RCS file: /cvs/pkgs/rpms/lx/devel/lx.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lx.spec 25 Feb 2009 22:16:58 -0000 1.4 +++ lx.spec 25 Jul 2009 11:29:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: lx Version: 20030328 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Converts PBM data to Lexmark 1000 printer language Group: System Environment/Libraries @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/lm1100 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20030328-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20030328-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:30:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:30:06 +0000 (UTC) Subject: rpms/lxappearance/devel lxappearance.spec,1.3,1.4 Message-ID: <20090725113006.DAF3E11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxappearance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17965 Modified Files: lxappearance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxappearance.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxappearance/devel/lxappearance.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxappearance.spec 5 Jul 2009 23:20:18 -0000 1.3 +++ lxappearance.spec 25 Jul 2009 11:30:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: lxappearance Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Feature-rich GTK+ theme switcher for LXDE Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 From jkeating at fedoraproject.org Sat Jul 25 11:30:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:30:21 +0000 (UTC) Subject: rpms/lxde-settings-daemon/devel lxde-settings-daemon.spec,1.3,1.4 Message-ID: <20090725113021.13ED411C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxde-settings-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18117 Modified Files: lxde-settings-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxde-settings-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxde-settings-daemon/devel/lxde-settings-daemon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxde-settings-daemon.spec 17 May 2009 23:33:07 -0000 1.3 +++ lxde-settings-daemon.spec 25 Jul 2009 11:30:20 -0000 1.4 @@ -2,7 +2,7 @@ Name: lxde-settings-daemon Version: 0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XSettings Daemon for LXDE Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Christoph Wickert - 0.4-3 - Remove requirement for lxde-common From jkeating at fedoraproject.org Sat Jul 25 11:30:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:30:35 +0000 (UTC) Subject: rpms/lxinput/devel lxinput.spec,1.4,1.5 Message-ID: <20090725113035.3927911C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxinput/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18258 Modified Files: lxinput.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxinput.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxinput/devel/lxinput.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lxinput.spec 7 Jul 2009 16:14:57 -0000 1.4 +++ lxinput.spec 25 Jul 2009 11:30:35 -0000 1.5 @@ -2,7 +2,7 @@ Name: lxinput Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Keyboard and mouse settings dialog for LXDE Group: User Interface/Desktops @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 - Include new manpage From jkeating at fedoraproject.org Sat Jul 25 11:30:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:30:50 +0000 (UTC) Subject: rpms/lxlauncher/devel lxlauncher.spec,1.3,1.4 Message-ID: <20090725113050.1EE6B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxlauncher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18411 Modified Files: lxlauncher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxlauncher.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxlauncher/devel/lxlauncher.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxlauncher.spec 7 Jul 2009 17:52:11 -0000 1.3 +++ lxlauncher.spec 25 Jul 2009 11:30:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: lxlauncher Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open source replacement for Launcher on the EeePC Group: User Interface/Desktops @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 - Switch from libgnome-menu to menu-cache From jkeating at fedoraproject.org Sat Jul 25 11:31:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:31:03 +0000 (UTC) Subject: rpms/lxmenu-data/devel lxmenu-data.spec,1.2,1.3 Message-ID: <20090725113103.F130511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxmenu-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18561 Modified Files: lxmenu-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxmenu-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmenu-data/devel/lxmenu-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxmenu-data.spec 5 Jul 2009 23:51:55 -0000 1.2 +++ lxmenu-data.spec 25 Jul 2009 11:31:03 -0000 1.3 @@ -2,7 +2,7 @@ Name: lxmenu-data Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Data files for the LXDE menu Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Christoph Wickert 0.1.1-1 - Update to 0.1.1 From jkeating at fedoraproject.org Sat Jul 25 11:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:31:16 +0000 (UTC) Subject: rpms/lxmusic/devel lxmusic.spec,1.2,1.3 Message-ID: <20090725113116.DB83311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxmusic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18692 Modified Files: lxmusic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxmusic.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxmusic/devel/lxmusic.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxmusic.spec 13 Apr 2009 21:49:41 -0000 1.2 +++ lxmusic.spec 25 Jul 2009 11:31:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: lxmusic Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lightweight XMMS2 client with simple user interface Group: Applications/Multimedia @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Christoph Wickert - 0.2.3-3 - Disable empty tools menu From jkeating at fedoraproject.org Sat Jul 25 11:31:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:31:29 +0000 (UTC) Subject: rpms/lxrandr/devel lxrandr.spec,1.2,1.3 Message-ID: <20090725113129.F352811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxrandr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18822 Modified Files: lxrandr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxrandr.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxrandr/devel/lxrandr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxrandr.spec 19 Jul 2009 21:24:03 -0000 1.2 +++ lxrandr.spec 25 Jul 2009 11:31:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: lxrandr Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple monitor configuration tool Group: User Interface/Desktops @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 - Include new manpage From jkeating at fedoraproject.org Sat Jul 25 11:31:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:31:53 +0000 (UTC) Subject: rpms/lxsession/devel lxsession.spec,1.2,1.3 Message-ID: <20090725113153.0E2C811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxsession/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19014 Modified Files: lxsession.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxsession.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxsession/devel/lxsession.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- lxsession.spec 26 May 2009 23:29:20 -0000 1.2 +++ lxsession.spec 25 Jul 2009 11:31:52 -0000 1.3 @@ -4,7 +4,7 @@ Name: lxsession Version: 0.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight X11 session manager Summary(de): Leichtgewichtiger X11 Sitzungsverwalter @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/xdg/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Christoph Wickert - 0.3.8-1 - Update to 0.3.8 and remove all patches - Rename back to lxsession again (upstream) From jkeating at fedoraproject.org Sat Jul 25 11:32:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:32:07 +0000 (UTC) Subject: rpms/lxsession-edit/devel lxsession-edit.spec,1.4,1.5 Message-ID: <20090725113207.04C9B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxsession-edit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19162 Modified Files: lxsession-edit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxsession-edit.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxsession-edit/devel/lxsession-edit.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lxsession-edit.spec 6 Jul 2009 20:43:41 -0000 1.4 +++ lxsession-edit.spec 25 Jul 2009 11:32:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: lxsession-edit Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple GUI to configure what?s automatically started in LXDE Group: User Interface/Desktops @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 From jkeating at fedoraproject.org Sat Jul 25 11:32:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:32:23 +0000 (UTC) Subject: rpms/lxshortcut/devel lxshortcut.spec,1.3,1.4 Message-ID: <20090725113223.DFCA111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxshortcut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19324 Modified Files: lxshortcut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxshortcut.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxshortcut/devel/lxshortcut.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lxshortcut.spec 6 Jul 2009 00:17:11 -0000 1.3 +++ lxshortcut.spec 25 Jul 2009 11:32:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: lxshortcut Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Small utility to edit application shortcuts Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Christoph Wickert - 0.1.1-1 - Update to 0.1.1 From jkeating at fedoraproject.org Sat Jul 25 11:32:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:32:38 +0000 (UTC) Subject: rpms/lxsplit/devel lxsplit.spec,1.6,1.7 Message-ID: <20090725113238.BF05511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxsplit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19472 Modified Files: lxsplit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxsplit.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxsplit/devel/lxsplit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lxsplit.spec 25 Feb 2009 22:23:23 -0000 1.6 +++ lxsplit.spec 25 Jul 2009 11:32:38 -0000 1.7 @@ -1,6 +1,6 @@ Name: lxsplit Version: 0.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: File split / merge utility Group: Applications/File @@ -37,6 +37,9 @@ HJSplit utility which is available for o %{_bindir}/lxsplit %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:32:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:32:55 +0000 (UTC) Subject: rpms/lxterminal/devel lxterminal.spec,1.9,1.10 Message-ID: <20090725113255.4898D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lxterminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19709 Modified Files: lxterminal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lxterminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/lxterminal/devel/lxterminal.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- lxterminal.spec 11 Jul 2009 17:22:48 -0000 1.9 +++ lxterminal.spec 25 Jul 2009 11:32:55 -0000 1.10 @@ -1,6 +1,6 @@ Name: lxterminal Version: 0.1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Desktop-independent VTE-based terminal emulator Summary(de): Desktup-unabh?ngiger VTE-basierter Terminal Emulator @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Christoph Wickert - 0.1.6-1 - Update to 0.1.6 - Remove missing-icons.patch, changes got upstreamed From jkeating at fedoraproject.org Sat Jul 25 11:33:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:33:08 +0000 (UTC) Subject: rpms/lybniz/devel lybniz.spec,1.6,1.7 Message-ID: <20090725113308.14FDF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lybniz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19863 Modified Files: lybniz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lybniz.spec =================================================================== RCS file: /cvs/pkgs/rpms/lybniz/devel/lybniz.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- lybniz.spec 25 Feb 2009 22:26:33 -0000 1.6 +++ lybniz.spec 25 Jul 2009 11:33:07 -0000 1.7 @@ -2,7 +2,7 @@ Name: lybniz Version: 1.3.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A function graph plotter Group: Applications/Engineering @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:33:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:33:25 +0000 (UTC) Subject: rpms/lynis/devel lynis.spec,1.4,1.5 Message-ID: <20090725113325.077AA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lynis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20065 Modified Files: lynis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lynis.spec =================================================================== RCS file: /cvs/pkgs/rpms/lynis/devel/lynis.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- lynis.spec 8 Jun 2009 11:56:49 -0000 1.4 +++ lynis.spec 25 Jul 2009 11:33:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: lynis Version: 1.2.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Security and system auditing tool Group: Applications/System License: GPLv3 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/%{name}/default.prf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Rakesh Pandit - 1.2.6-2 - fixed requires tag From jkeating at fedoraproject.org Sat Jul 25 11:33:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:33:39 +0000 (UTC) Subject: rpms/lynx/devel lynx.spec,1.57,1.58 Message-ID: <20090725113339.4EBE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lynx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20244 Modified Files: lynx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lynx.spec =================================================================== RCS file: /cvs/pkgs/rpms/lynx/devel/lynx.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- lynx.spec 25 Feb 2009 22:28:40 -0000 1.57 +++ lynx.spec 25 Jul 2009 11:33:39 -0000 1.58 @@ -1,7 +1,7 @@ Summary: A text-based Web browser Name: lynx Version: 2.8.6 -Release: 20%{?dist} +Release: 21%{?dist} License: GPLv2 Group: Applications/Internet Source: http://lynx.isc.org/current/lynx%{version}.tar.bz2 @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace,missingok) %{_sysconfdir}/lynx-site.cfg %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.8.6-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.8.6-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:33:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:33:53 +0000 (UTC) Subject: rpms/lyx/devel lyx.spec,1.96,1.97 Message-ID: <20090725113353.6216E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lyx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20438 Modified Files: lyx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lyx.spec =================================================================== RCS file: /cvs/pkgs/rpms/lyx/devel/lyx.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- lyx.spec 23 Jun 2009 03:30:38 -0000 1.96 +++ lyx.spec 25 Jul 2009 11:33:53 -0000 1.97 @@ -7,7 +7,7 @@ Summary: WYSIWYM (What You See Is What You Mean) document processor Name: lyx Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Publishing @@ -197,6 +197,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Rex Dieter - 1.6.3-1 - lyx-1.6.3 From jkeating at fedoraproject.org Sat Jul 25 11:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:34:08 +0000 (UTC) Subject: rpms/lzip/devel lzip.spec,1.3,1.4 Message-ID: <20090725113408.4D99611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20690 Modified Files: lzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzip/devel/lzip.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- lzip.spec 25 Feb 2009 22:31:04 -0000 1.3 +++ lzip.spec 25 Jul 2009 11:34:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: lzip Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: LZMA compressor with integrity checking Group: Applications/File @@ -67,6 +67,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:34:22 +0000 (UTC) Subject: rpms/lzma/devel lzma.spec,1.7,1.8 Message-ID: <20090725113422.7E8D711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lzma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20881 Modified Files: lzma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lzma.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzma/devel/lzma.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- lzma.spec 25 Feb 2009 22:32:03 -0000 1.7 +++ lzma.spec 25 Jul 2009 11:34:22 -0000 1.8 @@ -1,7 +1,7 @@ Summary: LZMA utils Name: lzma Version: 4.32.7 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}.tar.gz @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.32.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.32.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:34:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:34:37 +0000 (UTC) Subject: rpms/lzo/devel lzo.spec,1.18,1.19 Message-ID: <20090725113437.5718611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lzo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21098 Modified Files: lzo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lzo.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzo/devel/lzo.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- lzo.spec 25 Feb 2009 22:33:17 -0000 1.18 +++ lzo.spec 25 Jul 2009 11:34:37 -0000 1.19 @@ -1,6 +1,6 @@ Name: lzo Version: 2.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Data compression library with very fast (de)compression Group: System Environment/Libraries License: GPLv2+ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:34:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:34:51 +0000 (UTC) Subject: rpms/lzop/devel lzop.spec,1.15,1.16 Message-ID: <20090725113451.337F611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/lzop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21294 Modified Files: lzop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: lzop.spec =================================================================== RCS file: /cvs/pkgs/rpms/lzop/devel/lzop.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- lzop.spec 23 Feb 2009 20:52:41 -0000 1.15 +++ lzop.spec 25 Jul 2009 11:34:51 -0000 1.16 @@ -2,7 +2,7 @@ Name: lzop Version: 1.02 -Release: 0.7.rc1%{?dist} +Release: 0.8.rc1%{?dist} Summary: Real-time file compressor @@ -43,6 +43,9 @@ rm -fr %{buildroot} %attr(0755,root,root) %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-0.8.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.02-0.7.rc1 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 11:35:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:35:06 +0000 (UTC) Subject: rpms/m17n-contrib/devel m17n-contrib.spec,1.29,1.30 Message-ID: <20090725113506.4CBCD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m17n-contrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21511 Modified Files: m17n-contrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m17n-contrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/m17n-contrib/devel/m17n-contrib.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- m17n-contrib.spec 10 Jul 2009 08:01:14 -0000 1.29 +++ m17n-contrib.spec 25 Jul 2009 11:35:06 -0000 1.30 @@ -1,7 +1,7 @@ Name: m17n-contrib Summary: Contributed multilingualization datafiles for m17n-lib Version: 1.1.9 -Release: 7%{?dist} +Release: 8%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.m17n.org/m17n-lib/index.html @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/m17n/scripts %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Parag Nemade -1.1.9-7 - update patch pa-jhelum-numeric-503478.patch From jkeating at fedoraproject.org Sat Jul 25 11:35:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:35:25 +0000 (UTC) Subject: rpms/m17n-db/devel m17n-db.spec,1.99,1.100 Message-ID: <20090725113525.474FE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m17n-db/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21701 Modified Files: m17n-db.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m17n-db.spec =================================================================== RCS file: /cvs/pkgs/rpms/m17n-db/devel/m17n-db.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- m17n-db.spec 8 Apr 2009 09:19:59 -0000 1.99 +++ m17n-db.spec 25 Jul 2009 11:35:25 -0000 1.100 @@ -1,7 +1,7 @@ Name: m17n-db Summary: Multilingualization datafiles for m17n-lib Version: 1.5.4 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://www.m17n.org/m17n-lib/index.html @@ -274,6 +274,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/m17n/ug-*.mim %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Parag Nemade -1.5.4-2 - Resolves: rh#494810-[indic][m17n-db][m17n-contrib] ibus .engine files no longer needed for new ibus From jkeating at fedoraproject.org Sat Jul 25 11:35:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:35:39 +0000 (UTC) Subject: rpms/m17n-lib/devel m17n-lib.spec,1.24,1.25 Message-ID: <20090725113539.31A3611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m17n-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21922 Modified Files: m17n-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m17n-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/m17n-lib/devel/m17n-lib.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- m17n-lib.spec 3 Mar 2009 04:45:29 -0000 1.24 +++ m17n-lib.spec 25 Jul 2009 11:35:39 -0000 1.25 @@ -5,7 +5,7 @@ Name: m17n-lib Version: 1.5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multilingual text library Group: System Environment/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Parag Nemade -1.5.4-1 - Update to new upstream release 1.5.4 From jkeating at fedoraproject.org Sat Jul 25 11:35:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:35:53 +0000 (UTC) Subject: rpms/m2crypto/devel m2crypto.spec,1.54,1.55 Message-ID: <20090725113553.3053A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m2crypto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22091 Modified Files: m2crypto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m2crypto.spec =================================================================== RCS file: /cvs/pkgs/rpms/m2crypto/devel/m2crypto.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- m2crypto.spec 24 Jun 2009 17:55:31 -0000 1.54 +++ m2crypto.spec 25 Jul 2009 11:35:53 -0000 1.55 @@ -6,7 +6,7 @@ Summary: Support for using OpenSSL in python scripts Name: m2crypto Version: 0.19.1 -Release: 9 +Release: 10 Source0: http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz # https://bugzilla.osafoundation.org/show_bug.cgi?id=2341 Patch0: m2crypto-0.18-timeouts.patch @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/M2Crypto-*.egg-info %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.19.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Miloslav Trma? - 0.19.1-9 - Fix OpenSSL locking callback Resolves: #507903 From jkeating at fedoraproject.org Sat Jul 25 11:36:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:36:07 +0000 (UTC) Subject: rpms/m4/devel m4.spec,1.37,1.38 Message-ID: <20090725113607.B725F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22280 Modified Files: m4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m4.spec =================================================================== RCS file: /cvs/pkgs/rpms/m4/devel/m4.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- m4.spec 27 May 2009 09:46:47 -0000 1.37 +++ m4.spec 25 Jul 2009 11:36:07 -0000 1.38 @@ -1,7 +1,7 @@ Summary: The GNU macro processor Name: m4 Version: 1.4.13 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Text Source: http://ftp.gnu.org/gnu/m4/m4-%{version}.tar.bz2 @@ -55,6 +55,9 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Stepan Kasal - 1.4.13-1 - new upstream release - drop the ununsed Source1: %%{SOURCE0}.sig From jkeating at fedoraproject.org Sat Jul 25 11:36:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:36:22 +0000 (UTC) Subject: rpms/m4ri/devel m4ri.spec,1.2,1.3 Message-ID: <20090725113622.A868511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/m4ri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22475 Modified Files: m4ri.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: m4ri.spec =================================================================== RCS file: /cvs/pkgs/rpms/m4ri/devel/m4ri.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- m4ri.spec 25 Feb 2009 22:40:54 -0000 1.2 +++ m4ri.spec 25 Jul 2009 11:36:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: m4ri Version: 20081028 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Linear Algebra over F_2 Group: Development/Libraries License: GPLv2+ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20081028-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20081028-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:36:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:36:37 +0000 (UTC) Subject: rpms/mISDN/devel mISDN.spec,1.8,1.9 Message-ID: <20090725113637.8453F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mISDN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22659 Modified Files: mISDN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mISDN.spec =================================================================== RCS file: /cvs/pkgs/rpms/mISDN/devel/mISDN.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mISDN.spec 25 Feb 2009 22:41:58 -0000 1.8 +++ mISDN.spec 25 Jul 2009 11:36:37 -0000 1.9 @@ -3,7 +3,7 @@ Name: mISDN Version: 1.1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Userspace part of Modular ISDN stack Group: System Environment/Libraries @@ -105,6 +105,9 @@ test "$1" != 0 || /usr/sbin/fedora-group %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:36:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:36:53 +0000 (UTC) Subject: rpms/maatkit/devel maatkit.spec,1.6,1.7 Message-ID: <20090725113653.5E34611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maatkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22943 Modified Files: maatkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maatkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/maatkit/devel/maatkit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- maatkit.spec 25 Feb 2009 22:43:14 -0000 1.6 +++ maatkit.spec 25 Jul 2009 11:36:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: maatkit Version: 2725 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Essential command-line utilities for MySQL Group: Applications/Databases @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2725-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2725-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:37:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:37:10 +0000 (UTC) Subject: rpms/mac-robber/devel mac-robber.spec,1.2,1.3 Message-ID: <20090725113710.9198611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mac-robber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23219 Modified Files: mac-robber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mac-robber.spec =================================================================== RCS file: /cvs/pkgs/rpms/mac-robber/devel/mac-robber.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mac-robber.spec 25 Feb 2009 22:44:28 -0000 1.2 +++ mac-robber.spec 25 Jul 2009 11:37:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: mac-robber Version: 1.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to create a timeline of file activity for mounted file systems Group: Applications/System @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:37:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:37:26 +0000 (UTC) Subject: rpms/macchanger/devel macchanger.spec,1.4,1.5 Message-ID: <20090725113726.6FA3411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/macchanger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23822 Modified Files: macchanger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: macchanger.spec =================================================================== RCS file: /cvs/pkgs/rpms/macchanger/devel/macchanger.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- macchanger.spec 25 Feb 2009 22:45:32 -0000 1.4 +++ macchanger.spec 25 Jul 2009 11:37:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: macchanger Version: 1.5.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An utility for viewing/manipulating the MAC address of network interfaces Group: Applications/System @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:37:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:37:41 +0000 (UTC) Subject: rpms/mach/devel mach.spec,1.20,1.21 Message-ID: <20090725113741.9F24211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mach/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24120 Modified Files: mach.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mach.spec =================================================================== RCS file: /cvs/pkgs/rpms/mach/devel/mach.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- mach.spec 27 Jun 2009 20:54:15 -0000 1.20 +++ mach.spec 25 Jul 2009 11:37:41 -0000 1.21 @@ -1,6 +1,6 @@ Name: mach Version: 0.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Make a chroot Group: Applications/System @@ -103,6 +103,9 @@ fi %attr(04750,root,mach) %{_sbindir}/mach-helper %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Thomas Vander Stichele - 0.9.5-1 - new release From jkeating at fedoraproject.org Sat Jul 25 11:37:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:37:56 +0000 (UTC) Subject: rpms/machineball/devel machineball.spec,1.6,1.7 Message-ID: <20090725113756.771BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/machineball/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24290 Modified Files: machineball.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: machineball.spec =================================================================== RCS file: /cvs/pkgs/rpms/machineball/devel/machineball.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- machineball.spec 25 Feb 2009 22:47:59 -0000 1.6 +++ machineball.spec 25 Jul 2009 11:37:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: machineball Version: 1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A futuristic ball game with simple rules Group: Amusements/Games License: GPL+ @@ -76,6 +76,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:38:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:38:12 +0000 (UTC) Subject: rpms/madan-fonts/devel madan-fonts.spec,1.4,1.5 Message-ID: <20090725113812.81B0911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/madan-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24445 Modified Files: madan-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: madan-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/madan-fonts/devel/madan-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- madan-fonts.spec 8 Jul 2009 06:57:45 -0000 1.4 +++ madan-fonts.spec 25 Jul 2009 11:38:12 -0000 1.5 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Font for Nepali language Group: User Interface/X # No version specified. @@ -38,6 +38,9 @@ rm -rf %{buildroot} %_font_pkg *.ttf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Pravin Satpute - 1.0-9 - updated spec as per new packaging guideline From jkeating at fedoraproject.org Sat Jul 25 11:38:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:38:28 +0000 (UTC) Subject: rpms/magic/devel magic.spec,1.16,1.17 Message-ID: <20090725113828.A4BA411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/magic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24616 Modified Files: magic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: magic.spec =================================================================== RCS file: /cvs/pkgs/rpms/magic/devel/magic.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- magic.spec 25 Feb 2009 22:50:13 -0000 1.16 +++ magic.spec 25 Jul 2009 11:38:28 -0000 1.17 @@ -1,6 +1,6 @@ Name: magic Version: 7.5.169 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A very capable VLSI layout tool License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 11:38:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:38:43 +0000 (UTC) Subject: rpms/magicmaze/devel magicmaze.spec,1.2,1.3 Message-ID: <20090725113843.4D00911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/magicmaze/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24793 Modified Files: magicmaze.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: magicmaze.spec =================================================================== RCS file: /cvs/pkgs/rpms/magicmaze/devel/magicmaze.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- magicmaze.spec 25 Feb 2009 22:51:15 -0000 1.2 +++ magicmaze.spec 25 Jul 2009 11:38:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: magicmaze Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Board game featuring a maze which the players change each turn Group: Amusements/Games License: zlib and GPLv2+ @@ -86,6 +86,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:38:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:38:58 +0000 (UTC) Subject: rpms/magicor/devel magicor.spec,1.8,1.9 Message-ID: <20090725113858.99EE311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/magicor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24956 Modified Files: magicor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: magicor.spec =================================================================== RCS file: /cvs/pkgs/rpms/magicor/devel/magicor.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- magicor.spec 25 Feb 2009 22:52:11 -0000 1.8 +++ magicor.spec 25 Jul 2009 11:38:58 -0000 1.9 @@ -2,7 +2,7 @@ Name: magicor Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Push ice blocks around to extenguish all fires Group: Amusements/Games License: Public Domain @@ -85,6 +85,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:39:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:39:14 +0000 (UTC) Subject: rpms/mail-notification/devel mail-notification.spec,1.70,1.71 Message-ID: <20090725113914.8758F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mail-notification/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25152 Modified Files: mail-notification.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mail-notification.spec =================================================================== RCS file: /cvs/pkgs/rpms/mail-notification/devel/mail-notification.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- mail-notification.spec 19 May 2009 17:54:41 -0000 1.70 +++ mail-notification.spec 25 Jul 2009 11:39:14 -0000 1.71 @@ -1,6 +1,6 @@ Name: mail-notification Version: 5.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Status icon that informs you if you have new mail Group: Applications/Internet @@ -183,6 +183,9 @@ export GCONF_CONFIG_SOURCE=`gconftool-2 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Dmitry Butskoy - 5.4-11 - add patch for new cyrus-sasl's ABI (Jan F. Chadima, #501456) From jkeating at fedoraproject.org Sat Jul 25 11:39:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:39:30 +0000 (UTC) Subject: rpms/mailcap/devel mailcap.spec,1.32,1.33 Message-ID: <20090725113930.5E81011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mailcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25318 Modified Files: mailcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mailcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mailcap/devel/mailcap.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- mailcap.spec 25 Feb 2009 22:54:08 -0000 1.32 +++ mailcap.spec 25 Jul 2009 11:39:30 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Associates helper applications with particular file types Name: mailcap Version: 2.1.29 -Release: 2%{?dist} +Release: 3%{?dist} License: Public Domain Group: System Environment/Base Source0: https://fedorahosted.org/releases/m/a/mailcap/%{name}-%{version}.tar.gz @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mailcap.* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.29-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.29-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:39:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:39:45 +0000 (UTC) Subject: rpms/maildrop/devel maildrop.spec,1.4,1.5 Message-ID: <20090725113945.4ED1511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maildrop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25472 Modified Files: maildrop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maildrop.spec =================================================================== RCS file: /cvs/pkgs/rpms/maildrop/devel/maildrop.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- maildrop.spec 1 Mar 2009 16:56:47 -0000 1.4 +++ maildrop.spec 25 Jul 2009 11:39:45 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Mail delivery agent with filtering abilities Name: maildrop Version: 2.0.4 -Release: 9%{?dist} +Release: 10%{?dist} # Exception is explicit permission to link to OpenSSL License: GPLv2 with exceptions Group: System Environment/Daemons @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_mandir}/man8/*.8* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck - 2.0.4-9 - Rebuilt against libtool 2.2 to avoid libtool errors From jkeating at fedoraproject.org Sat Jul 25 11:40:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:40:01 +0000 (UTC) Subject: rpms/mailgraph/devel mailgraph.spec,1.9,1.10 Message-ID: <20090725114001.A047A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mailgraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25643 Modified Files: mailgraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mailgraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/mailgraph/devel/mailgraph.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mailgraph.spec 25 Feb 2009 22:55:59 -0000 1.9 +++ mailgraph.spec 25 Jul 2009 11:40:01 -0000 1.10 @@ -7,7 +7,7 @@ Name: mailgraph Version: 1.14 -Release: 4%{?dist}%{?repotag:.%{repotag}} +Release: 5%{?dist}%{?repotag:.%{repotag}} Summary: A RRDtool frontend for Mail statistics Group: System Environment/Daemons @@ -196,6 +196,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:40:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:40:22 +0000 (UTC) Subject: rpms/mailman/devel mailman.spec,1.84,1.85 Message-ID: <20090725114022.18D2211C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mailman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25852 Modified Files: mailman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mailman.spec =================================================================== RCS file: /cvs/pkgs/rpms/mailman/devel/mailman.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- mailman.spec 22 Jul 2009 11:30:14 -0000 1.84 +++ mailman.spec 25 Jul 2009 11:40:21 -0000 1.85 @@ -1,7 +1,7 @@ Summary: Mailing list manager with built in Web access Name: mailman Version: 2.1.12 -Release: 7%{?dist} +Release: 8%{?dist} Epoch: 3 Group: Applications/Internet Source0: ftp://ftp.gnu.org/pub/gnu/mailman/mailman-%{version}.tgz @@ -485,6 +485,9 @@ exit 0 %attr(0755,root,root) %{_bindir}/mailman-update-cfg %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3:2.1.12-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel Novotny 3:2.1.12-7 - fix bz#512798 - Mailman path in /usr/bin/mailman-update-cfg is incorrect on x86_64. From jkeating at fedoraproject.org Sat Jul 25 11:40:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:40:39 +0000 (UTC) Subject: rpms/mailx/devel mailx.spec,1.34,1.35 Message-ID: <20090725114039.8C59511C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mailx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26044 Modified Files: mailx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mailx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mailx/devel/mailx.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- mailx.spec 25 Feb 2009 22:58:28 -0000 1.34 +++ mailx.spec 25 Jul 2009 11:40:39 -0000 1.35 @@ -4,7 +4,7 @@ Summary: Enhanced implementation of the mailx command Name: mailx Version: 12.4 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Internet License: BSD with advertising URL: http://heirloom.sourceforge.net/mailx.html @@ -130,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 12.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 12.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:40:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:40:55 +0000 (UTC) Subject: rpms/mairix/devel mairix.spec,1.3,1.4 Message-ID: <20090725114055.7399911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mairix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26202 Modified Files: mairix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mairix.spec =================================================================== RCS file: /cvs/pkgs/rpms/mairix/devel/mairix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mairix.spec 25 Feb 2009 23:00:13 -0000 1.3 +++ mairix.spec 25 Jul 2009 11:40:55 -0000 1.4 @@ -1,6 +1,6 @@ Name: mairix Version: 0.21 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A program for indexing and searching email messages Group: Applications/Internet @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/mairixrc.5* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:41:11 +0000 (UTC) Subject: rpms/make/devel make.spec,1.46,1.47 Message-ID: <20090725114111.A256711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/make/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26367 Modified Files: make.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: make.spec =================================================================== RCS file: /cvs/pkgs/rpms/make/devel/make.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- make.spec 25 Feb 2009 23:01:14 -0000 1.46 +++ make.spec 25 Jul 2009 11:41:11 -0000 1.47 @@ -3,7 +3,7 @@ Summary: A GNU tool which simplifies the Name: make Epoch: 1 Version: 3.81 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.gnu.org/software/make/ @@ -78,6 +78,9 @@ fi %{_infodir}/*.info* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.81-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.81-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:41:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:41:27 +0000 (UTC) Subject: rpms/makebootfat/devel makebootfat.spec,1.8,1.9 Message-ID: <20090725114127.51B8D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/makebootfat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26517 Modified Files: makebootfat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: makebootfat.spec =================================================================== RCS file: /cvs/pkgs/rpms/makebootfat/devel/makebootfat.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- makebootfat.spec 25 Feb 2009 23:02:12 -0000 1.8 +++ makebootfat.spec 25 Jul 2009 11:41:27 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Utility for creation bootable FAT disk Name: makebootfat Version: 1.4 -Release: 8%{?dist} +Release: 9%{?dist} Group: Applications/System License: GPLv2+ URL: http://advancemame.sourceforge.net/doc-makebootfat.html @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:41:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:41:42 +0000 (UTC) Subject: rpms/makehuman/devel makehuman.spec,1.5,1.6 Message-ID: <20090725114142.7AC0C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/makehuman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26657 Modified Files: makehuman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: makehuman.spec =================================================================== RCS file: /cvs/pkgs/rpms/makehuman/devel/makehuman.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- makehuman.spec 25 Feb 2009 23:03:08 -0000 1.5 +++ makehuman.spec 25 Jul 2009 11:41:42 -0000 1.6 @@ -1,6 +1,6 @@ Name: makehuman Version: 0.9.1 -Release: 0.4.rc1a%{?dist} +Release: 0.5.rc1a%{?dist} Summary: Modeling of three-dimensional humanoid characters Group: Applications/Multimedia @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.1-0.5.rc1a +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-0.4.rc1a - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:41:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:41:57 +0000 (UTC) Subject: rpms/malaga/devel malaga.spec,1.7,1.8 Message-ID: <20090725114157.9744D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/malaga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26807 Modified Files: malaga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: malaga.spec =================================================================== RCS file: /cvs/pkgs/rpms/malaga/devel/malaga.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- malaga.spec 14 Jun 2009 19:44:33 -0000 1.7 +++ malaga.spec 25 Jul 2009 11:41:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: malaga Version: 7.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A programming language for automatic language analysis Group: Development/Languages @@ -108,6 +108,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Ville-Pekka Vainio 7.12-4 - Add patch to change the (un)map_file functions to malaga_(un)map_file, there was a symbol conflict with the samba libraries causing a segfault From jkeating at fedoraproject.org Sat Jul 25 11:42:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:42:12 +0000 (UTC) Subject: rpms/malaga-suomi-voikko/devel malaga-suomi-voikko.spec,1.10,1.11 Message-ID: <20090725114212.745FE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/malaga-suomi-voikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26956 Modified Files: malaga-suomi-voikko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: malaga-suomi-voikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/malaga-suomi-voikko/devel/malaga-suomi-voikko.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- malaga-suomi-voikko.spec 7 Apr 2009 19:25:58 -0000 1.10 +++ malaga-suomi-voikko.spec 25 Jul 2009 11:42:12 -0000 1.11 @@ -1,6 +1,6 @@ Name: malaga-suomi-voikko Version: 1.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A description of Finnish morphology written in Malaga (Voikko edition) Group: Applications/Text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 06 2009 - Ville-Pekka Vainio 1.3-10 - Install data files into the new location expected by libvoikko 2.1 - Bump Release to 10 to differentiate this from earlier packages, From jkeating at fedoraproject.org Sat Jul 25 11:42:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:42:28 +0000 (UTC) Subject: rpms/man/devel man.spec,1.81,1.82 Message-ID: <20090725114228.C657911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27120 Modified Files: man.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man.spec =================================================================== RCS file: /cvs/pkgs/rpms/man/devel/man.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- man.spec 21 Apr 2009 12:46:10 -0000 1.81 +++ man.spec 25 Jul 2009 11:42:28 -0000 1.82 @@ -4,7 +4,7 @@ Summary: A set of documentation tools: man, apropos and whatis Name: man Version: 1.6f -Release: 20%{?dist} +Release: 21%{?dist} License: GPLv2 Group: System Environment/Base @@ -265,6 +265,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6f-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Lubomir Rintel - 1.6f-20 - Don't remove cache and whatis database on updates - Ghost whatis database From jkeating at fedoraproject.org Sat Jul 25 11:42:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:42:43 +0000 (UTC) Subject: rpms/man-pages/devel man-pages.spec,1.114,1.115 Message-ID: <20090725114243.7823211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27257 Modified Files: man-pages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/man-pages.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- man-pages.spec 17 Jul 2009 11:31:46 -0000 1.114 +++ man-pages.spec 25 Jul 2009 11:42:43 -0000 1.115 @@ -4,7 +4,7 @@ Summary: Man (manual) pages from the Linux Documentation Project Name: man-pages Version: 3.21 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GPL+ and BSD and MIT and Copyright only and IEEE Group: Documentation URL: http://www.kernel.org/pub/linux/docs/manpages/ @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %lang(en) %{_mandir}/en/man* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Ivana Varekova - 3.21-2 - fix major.3 man page From jkeating at fedoraproject.org Sat Jul 25 11:42:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:42:57 +0000 (UTC) Subject: rpms/man-pages-cs/devel man-pages-cs.spec,1.23,1.24 Message-ID: <20090725114257.8686511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-cs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27399 Modified Files: man-pages-cs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-cs.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-cs/devel/man-pages-cs.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- man-pages-cs.spec 25 Feb 2009 23:07:56 -0000 1.23 +++ man-pages-cs.spec 25 Jul 2009 11:42:57 -0000 1.24 @@ -2,7 +2,7 @@ Summary: Czech man pages from the Linux Documentation Project Name: man-pages-cs Version: 0.17.20080113 -Release: 7%{?dist} +Release: 8%{?dist} License: GFDL and GPL+ Group: Documentation URL: http://sweb.cz/tropikhajma/man-pages-cs/index.html @@ -40,6 +40,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/cs/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17.20080113-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.17.20080113-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:43:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:43:11 +0000 (UTC) Subject: rpms/man-pages-de/devel man-pages-de.spec,1.17,1.18 Message-ID: <20090725114311.0FD8011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27534 Modified Files: man-pages-de.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-de/devel/man-pages-de.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- man-pages-de.spec 25 Feb 2009 23:08:52 -0000 1.17 +++ man-pages-de.spec 25 Jul 2009 11:43:10 -0000 1.18 @@ -1,7 +1,7 @@ Summary: German man pages from the Linux Documentation Project Name: man-pages-de Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ Group: Documentation URL: http://www.infodrom.org/projects/manpages-de/ @@ -54,6 +54,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:43:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:43:25 +0000 (UTC) Subject: rpms/man-pages-es/devel man-pages-es.spec,1.24,1.25 Message-ID: <20090725114325.C6CC811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27668 Modified Files: man-pages-es.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-es/devel/man-pages-es.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- man-pages-es.spec 10 Jul 2009 01:48:59 -0000 1.24 +++ man-pages-es.spec 25 Jul 2009 11:43:25 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Spanish man pages from the Linux Documentation Project Name: man-pages-es Version: 1.55 -Release: 9%{?dist} +Release: 10%{?dist} # These man pages come under various copyrights. # All are freely distributable when the nroff source is included. License: IEEE @@ -1712,6 +1712,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.55-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Ding-Yi Chen - 1.55-9 - Bug 510363 - Unowned directories in man-pages-es-1.55-7.fc11 From jkeating at fedoraproject.org Sat Jul 25 11:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:43:39 +0000 (UTC) Subject: rpms/man-pages-fr/devel man-pages-fr.spec,1.47,1.48 Message-ID: <20090725114339.622FA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27799 Modified Files: man-pages-fr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-fr/devel/man-pages-fr.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- man-pages-fr.spec 13 May 2009 19:19:34 -0000 1.47 +++ man-pages-fr.spec 25 Jul 2009 11:43:39 -0000 1.48 @@ -4,7 +4,7 @@ Summary: French version of the Linux man-pages Name: man-pages-fr Version: 3.03.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ Group: Documentation URL: http://manpagesfr.free.fr/ @@ -82,6 +82,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/fr/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.03.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Pablo Martin-Gomez 3.03.0-3 - Fix #495703 From jkeating at fedoraproject.org Sat Jul 25 11:43:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:43:52 +0000 (UTC) Subject: rpms/man-pages-it/devel man-pages-it.spec,1.31,1.32 Message-ID: <20090725114352.56C2F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27924 Modified Files: man-pages-it.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-it/devel/man-pages-it.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- man-pages-it.spec 25 Feb 2009 23:11:48 -0000 1.31 +++ man-pages-it.spec 25 Jul 2009 11:43:52 -0000 1.32 @@ -1,7 +1,7 @@ Summary: Italian man (manual) pages from the Linux Documentation Project Name: man-pages-it Version: 2.80 -Release: 2%{?dist} +Release: 3%{?dist} License: IEEE Group: Documentation URL: http://www.pluto.linux.it/ildp/man/ @@ -154,6 +154,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.80-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.80-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:44:06 +0000 (UTC) Subject: rpms/man-pages-ja/devel man-pages-ja.spec,1.72,1.73 Message-ID: <20090725114406.3439A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-ja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28070 Modified Files: man-pages-ja.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-ja.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ja/devel/man-pages-ja.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- man-pages-ja.spec 16 Jun 2009 03:10:24 -0000 1.72 +++ man-pages-ja.spec 25 Jul 2009 11:44:06 -0000 1.73 @@ -2,7 +2,7 @@ Name: man-pages-ja Version: 20090615 -Release: 1%{?dist} +Release: 2%{?dist} # Actual license for each Japanese manpages is the same to the original English manpages' license. License: Freely redistributable without restriction BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -135,6 +135,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20090615-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Akira TAGOH - 20090615-1 - updates to 20090615. - Remove patches merged upstream: From jkeating at fedoraproject.org Sat Jul 25 11:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:44:21 +0000 (UTC) Subject: rpms/man-pages-ko/devel man-pages-ko.spec,1.22,1.23 Message-ID: <20090725114421.2D3A611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-ko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28215 Modified Files: man-pages-ko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-ko.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ko/devel/man-pages-ko.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- man-pages-ko.spec 25 Feb 2009 23:13:47 -0000 1.22 +++ man-pages-ko.spec 25 Jul 2009 11:44:21 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Korean(Hangul) Man(manual) Pages from the Korean Manpage Project Name: man-pages-ko Version: 20050219 -Release: 8%{?dist} +Release: 9%{?dist} License: Copyright only Epoch: 2 Group: Documentation @@ -86,6 +86,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/ko %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2:20050219-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2:20050219-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:44:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:44:36 +0000 (UTC) Subject: rpms/man-pages-pl/devel man-pages-pl.spec,1.25,1.26 Message-ID: <20090725114436.A2BBC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28368 Modified Files: man-pages-pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-pl/devel/man-pages-pl.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- man-pages-pl.spec 25 Feb 2009 23:14:59 -0000 1.25 +++ man-pages-pl.spec 25 Jul 2009 11:44:36 -0000 1.26 @@ -2,7 +2,7 @@ Summary: Polish man pages from the Linux Documentation Project Name: man-pages-pl Version: 0.24 -Release: 6%{?dist} +Release: 7%{?dist} # No clear versioning. License: GPL+ Group: Documentation @@ -60,6 +60,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/pl/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.24-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.24-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:44:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:44:51 +0000 (UTC) Subject: rpms/man-pages-ru/devel man-pages-ru.spec,1.18,1.19 Message-ID: <20090725114451.7727011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28533 Modified Files: man-pages-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ru/devel/man-pages-ru.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- man-pages-ru.spec 25 Feb 2009 23:16:04 -0000 1.18 +++ man-pages-ru.spec 25 Jul 2009 11:44:51 -0000 1.19 @@ -1,7 +1,7 @@ Summary: Russian man pages from the Linux Documentation Project Name: man-pages-ru Version: 0.97 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD and GPL+ and MIT Group: Documentation URL: http://linuxshare.ru/projects/trans/ @@ -42,6 +42,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/ru/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.97-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.97-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:45:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:45:07 +0000 (UTC) Subject: rpms/man-pages-uk/devel man-pages-uk.spec,1.8,1.9 Message-ID: <20090725114507.8AF5311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/man-pages-uk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28743 Modified Files: man-pages-uk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: man-pages-uk.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-uk/devel/man-pages-uk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- man-pages-uk.spec 25 Feb 2009 23:17:08 -0000 1.8 +++ man-pages-uk.spec 25 Jul 2009 11:45:07 -0000 1.9 @@ -1,7 +1,7 @@ %define date 20071108 Name: man-pages-uk Version: 0.1 -Release: 0.9.%{date}%{?dist} +Release: 0.10.%{date}%{?dist} Summary: Ukrainian man pages from the Linux Documentation Project License: GFDL Group: Documentation @@ -35,6 +35,9 @@ rm -rf %{buildroot} %lang(uk) %{_mandir}/uk %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-0.10.20071108 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-0.9.20071108 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:45:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:45:24 +0000 (UTC) Subject: rpms/manaworld/devel manaworld.spec,1.19,1.20 Message-ID: <20090725114524.CCD7011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/manaworld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28959 Modified Files: manaworld.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: manaworld.spec =================================================================== RCS file: /cvs/pkgs/rpms/manaworld/devel/manaworld.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- manaworld.spec 6 Jul 2009 03:23:58 -0000 1.19 +++ manaworld.spec 25 Jul 2009 11:45:24 -0000 1.20 @@ -1,6 +1,6 @@ Name: manaworld Version: 0.0.29.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 2D MMORPG world Group: Amusements/Games @@ -80,6 +80,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.29.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 5 2009 Wart 0.0.29.1-1 - Update to 0.0.29.1 From jkeating at fedoraproject.org Sat Jul 25 11:45:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:45:40 +0000 (UTC) Subject: rpms/manaworld-music/devel manaworld-music.spec,1.3,1.4 Message-ID: <20090725114540.CCAE211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/manaworld-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29122 Modified Files: manaworld-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: manaworld-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/manaworld-music/devel/manaworld-music.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- manaworld-music.spec 25 Feb 2009 23:32:35 -0000 1.3 +++ manaworld-music.spec 25 Jul 2009 11:45:40 -0000 1.4 @@ -1,6 +1,6 @@ Name: manaworld-music Version: 0.0.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Music files for the Manaworld game Group: Amusements/Games @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:45:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:45:57 +0000 (UTC) Subject: rpms/maniadrive/devel maniadrive.spec,1.15,1.16 Message-ID: <20090725114557.A8CE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maniadrive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29305 Modified Files: maniadrive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maniadrive.spec =================================================================== RCS file: /cvs/pkgs/rpms/maniadrive/devel/maniadrive.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- maniadrive.spec 14 Jul 2009 08:36:41 -0000 1.15 +++ maniadrive.spec 25 Jul 2009 11:45:57 -0000 1.16 @@ -1,6 +1,6 @@ Name: maniadrive Version: 1.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: 3D stunt driving game Group: Amusements/Games License: GPLv2+ @@ -165,6 +165,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Hans de Goede 1.2-16 - Rebuild for new php 5.3.0 From jkeating at fedoraproject.org Sat Jul 25 11:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:46:13 +0000 (UTC) Subject: rpms/maniadrive-data/devel maniadrive-data.spec,1.2,1.3 Message-ID: <20090725114613.E978311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maniadrive-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29473 Modified Files: maniadrive-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maniadrive-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/maniadrive-data/devel/maniadrive-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- maniadrive-data.spec 25 Feb 2009 23:34:23 -0000 1.2 +++ maniadrive-data.spec 25 Jul 2009 11:46:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: maniadrive-data Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Data files for maniadrive, a 3D stunt driving game Group: Amusements/Games License: GPL+ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:46:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:46:30 +0000 (UTC) Subject: rpms/maniadrive-music/devel maniadrive-music.spec,1.2,1.3 Message-ID: <20090725114630.D9E2C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maniadrive-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29655 Modified Files: maniadrive-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maniadrive-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/maniadrive-music/devel/maniadrive-music.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- maniadrive-music.spec 25 Feb 2009 23:35:23 -0000 1.2 +++ maniadrive-music.spec 25 Jul 2009 11:46:30 -0000 1.3 @@ -1,6 +1,6 @@ Name: maniadrive-music Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Replacement soundtrack for the non free ManiaDrive soundtrack Group: Amusements/Games License: CC-BY and Free Art and GPL+ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:46:46 +0000 (UTC) Subject: rpms/mantis/devel mantis.spec,1.26,1.27 Message-ID: <20090725114646.CED3511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mantis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29830 Modified Files: mantis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mantis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mantis/devel/mantis.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- mantis.spec 8 Jun 2009 23:13:05 -0000 1.26 +++ mantis.spec 25 Jul 2009 11:46:46 -0000 1.27 @@ -6,7 +6,7 @@ Summary: Web-based bugtracking system Name: mantis Version: 1.1.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.mantisbt.org/ @@ -150,6 +150,9 @@ rm -rf "${RPM_BUILD_ROOT}" %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 8 2009 Gianluca Sforna - 1.1.8-1 - new upstream release From jkeating at fedoraproject.org Sat Jul 25 11:47:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:47:01 +0000 (UTC) Subject: rpms/mapbender/devel mapbender.spec,1.2,1.3 Message-ID: <20090725114701.5C22911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mapbender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29988 Modified Files: mapbender.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mapbender.spec =================================================================== RCS file: /cvs/pkgs/rpms/mapbender/devel/mapbender.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mapbender.spec 25 Feb 2009 23:37:32 -0000 1.2 +++ mapbender.spec 25 Jul 2009 11:47:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: mapbender Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Geospatial portal for OGC OWS architectures Group: Applications/Internet License: GPLv2 @@ -132,6 +132,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/resources %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:47:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:47:18 +0000 (UTC) Subject: rpms/mapnik/devel mapnik.spec,1.14,1.15 Message-ID: <20090725114718.7246811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mapnik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30149 Modified Files: mapnik.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mapnik.spec =================================================================== RCS file: /cvs/pkgs/rpms/mapnik/devel/mapnik.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- mapnik.spec 20 Jun 2009 07:16:26 -0000 1.14 +++ mapnik.spec 25 Jul 2009 11:47:18 -0000 1.15 @@ -1,6 +1,6 @@ Name: mapnik Version: 0.5.2 -Release: 0.13.svn780%{?dist} +Release: 0.14.svn780%{?dist} Summary: Free Toolkit for developing mapping applications Group: Applications/Engineering License: LGPLv2+ @@ -267,6 +267,9 @@ rm -rf %{buildroot} %doc demo/python demo/test %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.2-0.14.svn780 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Alex Lancaster - 0.5.2-0.13.svn780 - Require individual dejavu font packages From jkeating at fedoraproject.org Sat Jul 25 11:47:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:47:44 +0000 (UTC) Subject: rpms/mapserver/devel mapserver.spec,1.28,1.29 Message-ID: <20090725114744.4AEE711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mapserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30341 Modified Files: mapserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mapserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/mapserver/devel/mapserver.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- mapserver.spec 17 Jun 2009 20:34:33 -0000 1.28 +++ mapserver.spec 25 Jul 2009 11:47:44 -0000 1.29 @@ -1,6 +1,6 @@ Name: mapserver Version: 5.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Environment for building spatially-enabled internet applications Group: Development/Tools License: BSD @@ -239,6 +239,9 @@ rm -rf %{buildroot} %{_javadir}/*.jar %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Devrim GUNDUZ - 5.4.1-1 - Update to 5.4.1 From jkeating at fedoraproject.org Sat Jul 25 11:47:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:47:59 +0000 (UTC) Subject: rpms/maradns/devel maradns.spec,1.3,1.4 Message-ID: <20090725114759.5681611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maradns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30475 Modified Files: maradns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maradns.spec =================================================================== RCS file: /cvs/pkgs/rpms/maradns/devel/maradns.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- maradns.spec 25 Feb 2009 23:40:51 -0000 1.3 +++ maradns.spec 25 Jul 2009 11:47:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: maradns Version: 1.3.07.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Authoritative and recursive DNS server made with security in mind Source0: http://www.maradns.org/download/1.3/%{version}/%{name}-%{version}.tar.bz2 @@ -170,6 +170,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.07.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.07.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:48:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:48:13 +0000 (UTC) Subject: rpms/marlin/devel marlin.spec,1.1,1.2 Message-ID: <20090725114813.3AA2511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/marlin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30617 Modified Files: marlin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: marlin.spec =================================================================== RCS file: /cvs/pkgs/rpms/marlin/devel/marlin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- marlin.spec 24 Feb 2009 21:21:48 -0000 1.1 +++ marlin.spec 25 Jul 2009 11:48:13 -0000 1.2 @@ -9,7 +9,7 @@ Name: marlin Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Sound Sample Editor for GNOME Group: Applications/Multimedia @@ -124,6 +124,9 @@ fi %exclude %{_includedir}/lib%{name}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 22 2009 Dodji Seketeli 0.13-4 - Patch to fix broken application menu icon installation From jkeating at fedoraproject.org Sat Jul 25 11:48:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:48:27 +0000 (UTC) Subject: rpms/mars-sim/devel mars-sim.spec,1.4,1.5 Message-ID: <20090725114827.2538211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mars-sim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30764 Modified Files: mars-sim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mars-sim.spec =================================================================== RCS file: /cvs/pkgs/rpms/mars-sim/devel/mars-sim.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mars-sim.spec 8 May 2009 16:54:39 -0000 1.4 +++ mars-sim.spec 25 Jul 2009 11:48:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: mars-sim Version: 2.84 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Mars Simulation Project Group: Amusements/Games @@ -139,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.84-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 07 2009 Lubomir Rintel (Fedora Astronomy) - 2.84-4 - Fix desktop entry categories From jkeating at fedoraproject.org Sat Jul 25 11:48:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:48:42 +0000 (UTC) Subject: rpms/matahari/devel matahari.spec,1.1,1.2 Message-ID: <20090725114842.4E21711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/matahari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30930 Modified Files: matahari.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: matahari.spec =================================================================== RCS file: /cvs/pkgs/rpms/matahari/devel/matahari.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- matahari.spec 22 Jul 2009 14:37:53 -0000 1.1 +++ matahari.spec 25 Jul 2009 11:48:42 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Qpid QMF Agent for Ovirt Nodes Name: matahari Version: 0.0.4 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://arjunroy.fedorapeople.org/matahari/matahari-0.0.4.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root License: GPLv2 @@ -76,6 +76,9 @@ test "x%{buildroot}" != "x" && rm -rf %{ %doc AUTHORS COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Arjun Roy - 0.0.4-4 - Changed buildroot value to meet fedora packaging guidelines From jkeating at fedoraproject.org Sat Jul 25 11:48:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:48:56 +0000 (UTC) Subject: rpms/matchbox-keyboard/devel matchbox-keyboard.spec,1.2,1.3 Message-ID: <20090725114856.BDA0D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/matchbox-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31060 Modified Files: matchbox-keyboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: matchbox-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/matchbox-keyboard/devel/matchbox-keyboard.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- matchbox-keyboard.spec 25 Feb 2009 23:43:08 -0000 1.2 +++ matchbox-keyboard.spec 25 Jul 2009 11:48:56 -0000 1.3 @@ -2,7 +2,7 @@ Name: matchbox-keyboard Version: 0.1 -Release: 0.2009.05.19.1%{?dist} +Release: 0.2010.05.19.1%{?dist} Summary: An on screen virtual keyboard Group: User Interface/Desktops @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-0.2010.05.19.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-0.2009.05.19.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:49:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:49:11 +0000 (UTC) Subject: rpms/matchbox-window-manager/devel matchbox-window-manager.spec, 1.4, 1.5 Message-ID: <20090725114911.A381611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/matchbox-window-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31196 Modified Files: matchbox-window-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: matchbox-window-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/matchbox-window-manager/devel/matchbox-window-manager.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- matchbox-window-manager.spec 25 Feb 2009 23:43:59 -0000 1.4 +++ matchbox-window-manager.spec 25 Jul 2009 11:49:11 -0000 1.5 @@ -4,7 +4,7 @@ Summary: Window manager for the Matchbox Desktop Name: matchbox-window-manager Version: 1.2 -Release: 5.%{alphatag}%{?dist} +Release: 6.%{alphatag}%{?dist} Url: http://projects.o-hand.com/matchbox/ # svn checkout http://svn.o-hand.com/repos/matchbox/trunk/matchbox-window-manager License: GPLv2+ @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-6.20070628svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-5.20070628svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:49:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:49:27 +0000 (UTC) Subject: rpms/mathmap/devel mathmap.spec,1.2,1.3 Message-ID: <20090725114927.A337311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mathmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31353 Modified Files: mathmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mathmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mathmap/devel/mathmap.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mathmap.spec 25 Feb 2009 23:44:51 -0000 1.2 +++ mathmap.spec 25 Jul 2009 11:49:27 -0000 1.3 @@ -4,7 +4,7 @@ Name: mathmap Version: 1.2.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: MathMap GIMP Plug-In and Command-Line Tool Group: Applications/Multimedia @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:49:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:49:47 +0000 (UTC) Subject: rpms/mathml-fonts/devel mathml-fonts.spec,1.16,1.17 Message-ID: <20090725114947.A238411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mathml-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31518 Modified Files: mathml-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mathml-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/mathml-fonts/devel/mathml-fonts.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- mathml-fonts.spec 25 Feb 2009 23:45:48 -0000 1.16 +++ mathml-fonts.spec 25 Jul 2009 11:49:47 -0000 1.17 @@ -4,7 +4,7 @@ Summary: Mathematical symbol fonts Name: mathml-fonts Version: 1.0 -Release: 23%{?dist} +Release: 24%{?dist} URL: http://www.mozilla.org/projects/mathml/fonts/ # The actual license says "The author of these fonts, Basil K. Malyshev, has @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:50:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:50:02 +0000 (UTC) Subject: rpms/mathomatic/devel mathomatic.spec,1.5,1.6 Message-ID: <20090725115002.7A3E411C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mathomatic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31660 Modified Files: mathomatic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mathomatic.spec =================================================================== RCS file: /cvs/pkgs/rpms/mathomatic/devel/mathomatic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mathomatic.spec 25 Feb 2009 23:46:37 -0000 1.5 +++ mathomatic.spec 25 Jul 2009 11:50:02 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Small, portable symbolic math program Name: mathomatic Version: 14.3.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 Group: Applications/Engineering URL: http://www.mathomatic.org/ @@ -71,6 +71,9 @@ pushd primes %{_mandir}/man1/matho-sumsq.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 14.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 14.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:50:20 +0000 (UTC) Subject: rpms/matio/devel matio.spec,1.1,1.2 Message-ID: <20090725115020.C612611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/matio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31837 Modified Files: matio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: matio.spec =================================================================== RCS file: /cvs/pkgs/rpms/matio/devel/matio.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- matio.spec 26 May 2009 21:58:54 -0000 1.1 +++ matio.spec 25 Jul 2009 11:50:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: matio Version: 1.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library for reading/writing Matlab MAT files Group: System Environment/Libraries @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 kwizart < kwizart at gmail.com > - 1.3.3-3 - Remove the test subpackage - Enable make check From jkeating at fedoraproject.org Sat Jul 25 11:50:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:50:36 +0000 (UTC) Subject: rpms/maven-doxia/devel maven-doxia.spec,1.13,1.14 Message-ID: <20090725115036.D07FC11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-doxia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32010 Modified Files: maven-doxia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-doxia.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-doxia/devel/maven-doxia.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- maven-doxia.spec 25 Feb 2009 23:47:27 -0000 1.13 +++ maven-doxia.spec 25 Jul 2009 11:50:36 -0000 1.14 @@ -43,7 +43,7 @@ Name: maven-doxia Version: 1.0 -Release: 0.3.a7.2.10%{?dist} +Release: 0.4.a7.2.10%{?dist} Epoch: 0 Summary: Content generation framework License: ASL 2.0 @@ -278,6 +278,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-0.4.a7.2.10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-0.3.a7.2.10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:50:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:50:51 +0000 (UTC) Subject: rpms/maven-jxr/devel maven-jxr.spec,1.10,1.11 Message-ID: <20090725115051.11E3211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-jxr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32180 Modified Files: maven-jxr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-jxr.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-jxr/devel/maven-jxr.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- maven-jxr.spec 25 Feb 2009 23:48:17 -0000 1.10 +++ maven-jxr.spec 25 Jul 2009 11:50:50 -0000 1.11 @@ -42,7 +42,7 @@ Name: maven-jxr Version: 1.0 -Release: 3.8%{?dist} +Release: 4.8%{?dist} Epoch: 0 Summary: Source cross referencing tool License: ASL 2.0 @@ -209,6 +209,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-4.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-3.8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:51:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:51:06 +0000 (UTC) Subject: rpms/maven-scm/devel maven-scm.spec,1.9,1.10 Message-ID: <20090725115106.950F811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-scm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32360 Modified Files: maven-scm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-scm.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-scm/devel/maven-scm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- maven-scm.spec 23 Mar 2009 17:06:48 -0000 1.9 +++ maven-scm.spec 25 Jul 2009 11:51:06 -0000 1.10 @@ -36,7 +36,7 @@ Name: maven-scm Version: 1.0 -Release: 0.3.b3.1.7%{?dist} +Release: 0.4.b3.1.7%{?dist} Epoch: 0 Summary: Common API for doing SCM operations License: ASL 2.0 @@ -293,6 +293,9 @@ fi %{_javadocdir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-0.4.b3.1.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Deepak Bhole - 0:1.0-0.3.b3.1.7 - Remove ppc64 arch exclusion From jkeating at fedoraproject.org Sat Jul 25 11:51:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:51:23 +0000 (UTC) Subject: rpms/maven-shared/devel maven-shared.spec,1.9,1.10 Message-ID: <20090725115123.E3A1511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-shared/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32503 Modified Files: maven-shared.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-shared.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-shared/devel/maven-shared.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- maven-shared.spec 23 Mar 2009 17:11:20 -0000 1.9 +++ maven-shared.spec 25 Jul 2009 11:51:22 -0000 1.10 @@ -51,7 +51,7 @@ Patch1: maven-shared-plugin-test Name: maven-shared Version: 1.0 -Release: 5.7%{?dist} +Release: 6.7%{?dist} Epoch: 0 License: ASL 2.0 Group: Development/Libraries @@ -280,6 +280,9 @@ fi %doc %{_javadocdir}/%{name}-plugin-testing-harness* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-6.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Deepak Bhole - 0:1.0-5.7 - Remove ppc64 exclusion From jkeating at fedoraproject.org Sat Jul 25 11:51:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:51:38 +0000 (UTC) Subject: rpms/maven-surefire/devel maven-surefire.spec,1.11,1.12 Message-ID: <20090725115138.D8EDA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-surefire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32725 Modified Files: maven-surefire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-surefire.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-surefire/devel/maven-surefire.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- maven-surefire.spec 25 Feb 2009 23:50:49 -0000 1.11 +++ maven-surefire.spec 25 Jul 2009 11:51:38 -0000 1.12 @@ -43,7 +43,7 @@ Name: maven-surefire Version: 1.5.3 -Release: 3.8%{?dist} +Release: 4.8%{?dist} Epoch: 0 Summary: Test framework project License: ASL 2.0 @@ -314,6 +314,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.5.3-4.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.5.3-3.8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:51:52 +0000 (UTC) Subject: rpms/maven-wagon/devel maven-wagon.spec,1.6,1.7 Message-ID: <20090725115152.8154311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven-wagon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv420 Modified Files: maven-wagon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven-wagon.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven-wagon/devel/maven-wagon.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- maven-wagon.spec 25 Feb 2009 23:51:43 -0000 1.6 +++ maven-wagon.spec 25 Jul 2009 11:51:52 -0000 1.7 @@ -16,7 +16,7 @@ Name: maven-%{bname} Version: 1.0 -Release: 0.2.a5.3.5%{?dist} +Release: 0.3.a5.3.5%{?dist} Epoch: 0 Summary: Tools to manage artifacts and deployment License: ASL 2.0 @@ -398,6 +398,9 @@ rm -rf $RPM_BUILD_ROOT #%endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-0.3.a5.3.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-0.2.a5.3.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:52:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:52:10 +0000 (UTC) Subject: rpms/maven2/devel maven2.spec,1.19,1.20 Message-ID: <20090725115210.30A4D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv601 Modified Files: maven2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven2.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven2/devel/maven2.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- maven2.spec 2 Mar 2009 19:44:19 -0000 1.19 +++ maven2.spec 25 Jul 2009 11:52:09 -0000 1.20 @@ -50,7 +50,7 @@ Name: %{name} Version: %{maven_version} -Release: 11.19%{?dist} +Release: 12.19%{?dist} Epoch: 0 Summary: Java project management and project comprehension tool @@ -2300,6 +2300,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:2.0.4-12.19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Deepak Bhole 2.0.4-11.19 - Build with OpenJDK again, now that koji issues are resolved From jkeating at fedoraproject.org Sat Jul 25 11:52:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:52:25 +0000 (UTC) Subject: rpms/maven2-common-poms/devel maven2-common-poms.spec,1.5,1.6 Message-ID: <20090725115225.C34BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maven2-common-poms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv762 Modified Files: maven2-common-poms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maven2-common-poms.spec =================================================================== RCS file: /cvs/pkgs/rpms/maven2-common-poms/devel/maven2-common-poms.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- maven2-common-poms.spec 25 Feb 2009 23:53:32 -0000 1.5 +++ maven2-common-poms.spec 25 Jul 2009 11:52:25 -0000 1.6 @@ -33,7 +33,7 @@ Name: %{parent}-%{subname} Version: 1.0 -Release: 5.4%{?dist} +Release: 6.4%{?dist} Epoch: 0 Summary: Common poms for maven2 License: ASL 2.0 and BSD @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/maven2 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-6.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-5.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:52:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:52:41 +0000 (UTC) Subject: rpms/maxima/devel maxima.spec,1.131,1.132 Message-ID: <20090725115241.D43BA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv960 Modified Files: maxima.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/devel/maxima.spec,v retrieving revision 1.131 retrieving revision 1.132 diff -u -p -r1.131 -r1.132 --- maxima.spec 28 Jun 2009 19:28:00 -0000 1.131 +++ maxima.spec 25 Jul 2009 11:52:41 -0000 1.132 @@ -3,7 +3,7 @@ Summary: Symbolic Computation Program Name: maxima Version: 5.18.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -424,6 +424,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 29 2009 Rex Dieter - 5.18.1-3 - disable -runtime-gcl until issues (selinux, bug #496124) are fixed From jkeating at fedoraproject.org Sat Jul 25 11:52:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:52:56 +0000 (UTC) Subject: rpms/maxr/devel maxr.spec,1.3,1.4 Message-ID: <20090725115256.8700111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/maxr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1129 Modified Files: maxr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: maxr.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxr/devel/maxr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- maxr.spec 3 May 2009 17:22:00 -0000 1.3 +++ maxr.spec 25 Jul 2009 11:52:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: maxr Version: 0.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A classic turn-based strategy game Group: Amusements/Games @@ -89,6 +89,9 @@ fi %{_datadir}/icons/hicolor/*/apps/%{name}.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Stefan Posdzich - 0.2.5-1 - New Upstream Release From jkeating at fedoraproject.org Sat Jul 25 11:53:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:53:11 +0000 (UTC) Subject: rpms/mb2md/devel mb2md.spec,1.2,1.3 Message-ID: <20090725115311.8F68811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mb2md/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1273 Modified Files: mb2md.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mb2md.spec =================================================================== RCS file: /cvs/pkgs/rpms/mb2md/devel/mb2md.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mb2md.spec 7 May 2009 06:03:13 -0000 1.2 +++ mb2md.spec 25 Jul 2009 11:53:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: mb2md Version: 3.20 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Mailbox to maildir converter Group: Applications/Internet License: Public Domain @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Jussi Lehtola - 3.20-4 - Bump revision to retry CVS import. From jkeating at fedoraproject.org Sat Jul 25 11:53:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:53:26 +0000 (UTC) Subject: rpms/mboxgrep/devel mboxgrep.spec,1.7,1.8 Message-ID: <20090725115326.9889711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mboxgrep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1436 Modified Files: mboxgrep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mboxgrep.spec =================================================================== RCS file: /cvs/pkgs/rpms/mboxgrep/devel/mboxgrep.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mboxgrep.spec 25 Feb 2009 23:56:05 -0000 1.7 +++ mboxgrep.spec 25 Jul 2009 11:53:26 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Displays e-mail messages matching a pattern Name: mboxgrep Version: 0.7.9 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://download.sourceforge.net/mboxgrep/mboxgrep-0.7.9.tar.gz @@ -51,6 +51,9 @@ fi %{_infodir}/mboxgrep.info* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:53:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:53:41 +0000 (UTC) Subject: rpms/mbuffer/devel mbuffer.spec,1.11,1.12 Message-ID: <20090725115341.E8EE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mbuffer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1577 Modified Files: mbuffer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mbuffer.spec =================================================================== RCS file: /cvs/pkgs/rpms/mbuffer/devel/mbuffer.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mbuffer.spec 17 Jul 2009 23:02:59 -0000 1.11 +++ mbuffer.spec 25 Jul 2009 11:53:41 -0000 1.12 @@ -1,6 +1,6 @@ Name: mbuffer Version: 20090628 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Measuring Buffer is an enhanced version of buffer Group: Applications/File @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20090628-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Fabian Affolter - 20090628-1 - Fixed license (since 20080910 GPLv3+) - Removed --enable-networking, is no longer needed From jkeating at fedoraproject.org Sat Jul 25 11:54:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:54:02 +0000 (UTC) Subject: rpms/mc/devel mc.spec,1.142,1.143 Message-ID: <20090725115402.3719211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1761 Modified Files: mc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/mc.spec,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- mc.spec 27 May 2009 05:49:13 -0000 1.142 +++ mc.spec 25 Jul 2009 11:54:02 -0000 1.143 @@ -1,7 +1,7 @@ Summary: User-friendly text console file manager and visual shell Name: mc Version: 4.6.2 -Release: 11%{?dist} +Release: 12%{?dist} Epoch: 1 License: GPLv2 Group: System Environment/Shells @@ -200,6 +200,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_libexecdir}/mc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:4.6.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 17 2009 Jindrich Novy 4.6.2-11 - update to mc-4.6.2 release - drop .8bit-hex, .preserveattrs, .cloexec, .7zip and part of From jkeating at fedoraproject.org Sat Jul 25 11:54:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:54:18 +0000 (UTC) Subject: rpms/mcabber/devel mcabber.spec,1.12,1.13 Message-ID: <20090725115418.9FD4411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcabber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937 Modified Files: mcabber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcabber.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcabber/devel/mcabber.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mcabber.spec 25 Feb 2009 23:58:45 -0000 1.12 +++ mcabber.spec 25 Jul 2009 11:54:18 -0000 1.13 @@ -1,6 +1,6 @@ Name: mcabber Version: 0.9.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Console Jabber instant messaging client Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_datadir}/mcabber %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:54:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:54:33 +0000 (UTC) Subject: rpms/mcelog/devel mcelog.spec,1.25,1.26 Message-ID: <20090725115433.7378311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcelog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2105 Modified Files: mcelog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcelog.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcelog/devel/mcelog.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- mcelog.spec 25 Feb 2009 23:59:35 -0000 1.25 +++ mcelog.spec 25 Jul 2009 11:54:33 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Tool to translate x86-64 CPU Machine Check Exception data. Name: mcelog Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2 @@ -44,6 +44,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:54:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:54:49 +0000 (UTC) Subject: rpms/mcpp/devel mcpp.spec,1.8,1.9 Message-ID: <20090725115449.7BB6611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2247 Modified Files: mcpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcpp/devel/mcpp.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mcpp.spec 26 Feb 2009 00:00:26 -0000 1.8 +++ mcpp.spec 25 Jul 2009 11:54:49 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Alternative C/C++ preprocessor Name: mcpp Version: 2.7.2 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Languages Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -93,6 +93,9 @@ This package provides an html manual for rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:55:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:55:04 +0000 (UTC) Subject: rpms/mcrypt/devel mcrypt.spec,1.10,1.11 Message-ID: <20090725115504.93F3C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2393 Modified Files: mcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcrypt/devel/mcrypt.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mcrypt.spec 26 Feb 2009 00:01:16 -0000 1.10 +++ mcrypt.spec 25 Jul 2009 11:55:04 -0000 1.11 @@ -1,6 +1,6 @@ Name: mcrypt Version: 2.6.8 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/System Summary: Replacement for crypt() @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:55:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:55:20 +0000 (UTC) Subject: rpms/mcs/devel mcs.spec,1.12,1.13 Message-ID: <20090725115520.1D6DA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2548 Modified Files: mcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcs/devel/mcs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mcs.spec 5 Jun 2009 10:43:22 -0000 1.12 +++ mcs.spec 25 Jul 2009 11:55:19 -0000 1.13 @@ -1,6 +1,6 @@ Name: mcs Version: 0.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Configuration file abstraction system Group: Applications/System @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libmcs.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Michael Schwendt - 0.7.1-4 - Rebuild for new libmowgli SONAME. From jkeating at fedoraproject.org Sat Jul 25 11:55:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:55:35 +0000 (UTC) Subject: rpms/mcstrans/devel mcstrans.spec,1.42,1.43 Message-ID: <20090725115535.7B2BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcstrans/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2715 Modified Files: mcstrans.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcstrans.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcstrans/devel/mcstrans.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- mcstrans.spec 24 Feb 2009 15:07:31 -0000 1.42 +++ mcstrans.spec 25 Jul 2009 11:55:35 -0000 1.43 @@ -1,7 +1,7 @@ Summary: SELinux Translation Daemon Name: mcstrans Version: 0.3.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ Group: System Environment/Daemons Source: http://fedora.redhat.com/projects/%{name}-%{version}.tgz @@ -86,6 +86,9 @@ fi %{_usr}/share/mcstrans/util/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 5 2009 Joe Nall 0.3.1-1 - Rewrite translations to allow individual word/category mapping - Eamon Walsh's color mapping changes From jkeating at fedoraproject.org Sat Jul 25 11:55:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:55:50 +0000 (UTC) Subject: rpms/mcu8051ide/devel mcu8051ide.spec,1.1,1.2 Message-ID: <20090725115550.9D4F411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mcu8051ide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2869 Modified Files: mcu8051ide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mcu8051ide.spec =================================================================== RCS file: /cvs/pkgs/rpms/mcu8051ide/devel/mcu8051ide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mcu8051ide.spec 19 Jun 2009 05:30:42 -0000 1.1 +++ mcu8051ide.spec 25 Jul 2009 11:55:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: mcu8051ide Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: IDE for MCS-51 based microcontrollers Group: Applications/Engineering @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/mcu8051ide.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Shakthi Kannan - 1.1-4 - Added Requires: sdcc From jkeating at fedoraproject.org Sat Jul 25 11:56:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:56:06 +0000 (UTC) Subject: rpms/md5deep/devel md5deep.spec,1.2,1.3 Message-ID: <20090725115606.CA48011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/md5deep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3062 Modified Files: md5deep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: md5deep.spec =================================================================== RCS file: /cvs/pkgs/rpms/md5deep/devel/md5deep.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- md5deep.spec 26 Feb 2009 00:02:54 -0000 1.2 +++ md5deep.spec 25 Jul 2009 11:56:06 -0000 1.3 @@ -1,6 +1,6 @@ Name: md5deep Version: 3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A set of cross-platform tools to compute hashes Group: Applications/File License: GPLv2 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:56:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:56:22 +0000 (UTC) Subject: rpms/mdbtools/devel mdbtools.spec,1.5,1.6 Message-ID: <20090725115622.9AAB411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mdbtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3222 Modified Files: mdbtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mdbtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mdbtools/devel/mdbtools.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mdbtools.spec 11 Apr 2009 22:12:24 -0000 1.5 +++ mdbtools.spec 25 Jul 2009 11:56:22 -0000 1.6 @@ -2,7 +2,7 @@ Name: mdbtools Version: 0.6 -Release: 0.6.cvs20051109%{?dist}.1 +Release: 0.7.cvs20051109%{?dist}.1 Summary: Access data stored in Microsoft Access databases Group: Applications/Databases License: GPLv2+ @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6-0.7.cvs20051109.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Karsten Hopp 0.6-0.6.cvs20051109.1 - bump and rebuild for current unixODBC libs From jkeating at fedoraproject.org Sat Jul 25 11:56:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:56:38 +0000 (UTC) Subject: rpms/mdsplib/devel mdsplib.spec,1.7,1.8 Message-ID: <20090725115638.ECA7611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mdsplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3388 Modified Files: mdsplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mdsplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/mdsplib/devel/mdsplib.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mdsplib.spec 11 Jun 2009 10:09:06 -0000 1.7 +++ mdsplib.spec 25 Jul 2009 11:56:38 -0000 1.8 @@ -1,7 +1,7 @@ Summary: METAR Decoder Software Package Library Name: mdsplib Version: 0.11 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://limulus.net/mdsplib/ @@ -77,6 +77,9 @@ library. Also prtDMETR, which prints out %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Matthias Saou 0.11-9 - Fix null check which could cause segfaults (#505050). From jkeating at fedoraproject.org Sat Jul 25 11:56:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:56:53 +0000 (UTC) Subject: rpms/me-tv/devel me-tv.spec,1.3,1.4 Message-ID: <20090725115653.B3C2A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/me-tv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3548 Modified Files: me-tv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: me-tv.spec =================================================================== RCS file: /cvs/pkgs/rpms/me-tv/devel/me-tv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- me-tv.spec 29 Jun 2009 08:29:01 -0000 1.3 +++ me-tv.spec 25 Jul 2009 11:56:53 -0000 1.4 @@ -1,6 +1,6 @@ Name: me-tv Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GNOME desktop application for watching digital television Group: Applications/Multimedia @@ -70,6 +70,9 @@ update-desktop-database &> /dev/null || %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 29 2009 Zarko - 0.9.4-1 - new release From jkeating at fedoraproject.org Sat Jul 25 11:57:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:57:09 +0000 (UTC) Subject: rpms/meanwhile/devel meanwhile.spec,1.18,1.19 Message-ID: <20090725115709.5095D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/meanwhile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3732 Modified Files: meanwhile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: meanwhile.spec =================================================================== RCS file: /cvs/pkgs/rpms/meanwhile/devel/meanwhile.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- meanwhile.spec 13 Mar 2009 11:59:19 -0000 1.18 +++ meanwhile.spec 25 Jul 2009 11:57:09 -0000 1.19 @@ -7,7 +7,7 @@ Summary: Lotus Sametime Community Client License: LGPLv2+ Group: Applications/Internet Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://dl.sf.net/meanwhile/meanwhile-%{version}.tar.gz Patch0: meanwhile-crash.patch URL: http://meanwhile.sourceforge.net @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/doc/%{name}-doc-%{version}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Josh Boyer - 1.1.0-1 - Update to meanwhile_v1_1_0 branch from upstream CVS. Fixes bug 490088 From jkeating at fedoraproject.org Sat Jul 25 11:57:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:57:29 +0000 (UTC) Subject: rpms/mediascrapper/devel mediascrapper.spec,1.3,1.4 Message-ID: <20090725115729.81E4611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediascrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3960 Modified Files: mediascrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediascrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediascrapper/devel/mediascrapper.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mediascrapper.spec 26 Feb 2009 00:07:02 -0000 1.3 +++ mediascrapper.spec 25 Jul 2009 11:57:28 -0000 1.4 @@ -3,7 +3,7 @@ Name: mediascrapper Version: 0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A script to scrap media files from different sites Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:57:45 +0000 (UTC) Subject: rpms/mediatomb/devel mediatomb.spec,1.13,1.14 Message-ID: <20090725115745.7425A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediatomb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4136 Modified Files: mediatomb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediatomb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediatomb/devel/mediatomb.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mediatomb.spec 5 Jul 2009 10:47:48 -0000 1.13 +++ mediatomb.spec 25 Jul 2009 11:57:45 -0000 1.14 @@ -1,7 +1,7 @@ Version: 0.11.0 Summary: UPnP AV MediaServer Name: mediatomb -Release: 9%{?dist} +Release: 10%{?dist} Summary: MediaTomb - UPnP AV Mediaserver for Linux License: GPLv2 Group: Applications/Multimedia @@ -101,6 +101,9 @@ fi %{_initrddir}/mediatomb %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Marc Wiriadisastra - 0.11.0-9 - Change requires from mysql to mysql-libs closes bz#483635 - Change priority of system-init scripts closes bz#487877 From jkeating at fedoraproject.org Sat Jul 25 11:58:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:58:00 +0000 (UTC) Subject: rpms/mediawiki/devel mediawiki.spec,1.35,1.36 Message-ID: <20090725115800.C2FBB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4306 Modified Files: mediawiki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki/devel/mediawiki.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- mediawiki.spec 24 Jul 2009 21:28:33 -0000 1.35 +++ mediawiki.spec 25 Jul 2009 11:58:00 -0000 1.36 @@ -1,7 +1,7 @@ Summary: A wiki engine Name: mediawiki Version: 1.15.1 -Release: 50%{?dist} +Release: 51%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/ @@ -127,6 +127,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15.1-51 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Axel Thimm - 1.15.1-50 - Add a README.RPM and a sample apache mediawiki.conf file. From jkeating at fedoraproject.org Sat Jul 25 11:58:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:58:14 +0000 (UTC) Subject: rpms/mediawiki-CategoryTree/devel mediawiki-CategoryTree.spec, 1.1, 1.2 Message-ID: <20090725115814.78A4611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-CategoryTree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4460 Modified Files: mediawiki-CategoryTree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-CategoryTree.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-CategoryTree/devel/mediawiki-CategoryTree.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-CategoryTree.spec 25 Jun 2009 15:39:54 -0000 1.1 +++ mediawiki-CategoryTree.spec 25 Jul 2009 11:58:14 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-CategoryTree Version: 45462 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides a dynamic view of the wiki's category structure as a tree Group: Applications/Internet @@ -52,5 +52,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 45462-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Ian Weller - 45462-1 - Initial package build From jkeating at fedoraproject.org Sat Jul 25 11:58:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:58:29 +0000 (UTC) Subject: rpms/mediawiki-Cite/devel mediawiki-Cite.spec,1.3,1.4 Message-ID: <20090725115829.1318B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-Cite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4631 Modified Files: mediawiki-Cite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-Cite.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-Cite/devel/mediawiki-Cite.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mediawiki-Cite.spec 26 May 2009 16:22:51 -0000 1.3 +++ mediawiki-Cite.spec 25 Jul 2009 11:58:28 -0000 1.4 @@ -1,7 +1,7 @@ %define svnrev r40286 Name: mediawiki-Cite Version: 0 -Release: 0.5.20080901svn%{?dist} +Release: 0.6.20080901svn%{?dist} Summary: An extension to provide Citation tools for Mediawiki Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/README.fedora %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.6.20080901svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Michael Schwendt - 0-0.5.20080901svn - Fix unowned versioned documentation directory (#474673). From jkeating at fedoraproject.org Sat Jul 25 11:58:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:58:42 +0000 (UTC) Subject: rpms/mediawiki-HNP/devel mediawiki-HNP.spec,1.2,1.3 Message-ID: <20090725115842.B8AD711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-HNP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4787 Modified Files: mediawiki-HNP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-HNP.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-HNP/devel/mediawiki-HNP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mediawiki-HNP.spec 26 Feb 2009 00:10:32 -0000 1.2 +++ mediawiki-HNP.spec 25 Jul 2009 11:58:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: mediawiki-HNP Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An extension to provide a hierarchical namespace permissions system Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:58:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:58:56 +0000 (UTC) Subject: rpms/mediawiki-HTTP302Found/devel mediawiki-HTTP302Found.spec, 1.1, 1.2 Message-ID: <20090725115856.CFFC911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-HTTP302Found/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4962 Modified Files: mediawiki-HTTP302Found.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-HTTP302Found.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-HTTP302Found/devel/mediawiki-HTTP302Found.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-HTTP302Found.spec 26 Jun 2009 14:53:52 -0000 1.1 +++ mediawiki-HTTP302Found.spec 25 Jul 2009 11:58:56 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-HTTP302Found Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Forces an external HTTP 302 redirect instead of internal redirects Group: Applications/Internet @@ -47,5 +47,8 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Ian Weller - 1.0-1 - Initial package build From jkeating at fedoraproject.org Sat Jul 25 11:59:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:59:10 +0000 (UTC) Subject: rpms/mediawiki-InputBox/devel mediawiki-InputBox.spec,1.1,1.2 Message-ID: <20090725115910.5067311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-InputBox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5130 Modified Files: mediawiki-InputBox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-InputBox.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-InputBox/devel/mediawiki-InputBox.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-InputBox.spec 23 Apr 2009 18:42:20 -0000 1.1 +++ mediawiki-InputBox.spec 25 Jul 2009 11:59:10 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-InputBox Version: 0 -Release: 0.2.20090420svn%{?dist} +Release: 0.3.20090420svn%{?dist} Summary: An extension to enable input box tags for mediawiki pages Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/README.fedora %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.3.20090420svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 John Guthrie - 0-0.2.20090420svn - Fixed the source URLs and updated to the latest svn version. From jkeating at fedoraproject.org Sat Jul 25 11:59:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:59:24 +0000 (UTC) Subject: rpms/mediawiki-ParserFunctions/devel mediawiki-ParserFunctions.spec, 1.4, 1.5 Message-ID: <20090725115924.6DC4E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-ParserFunctions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5300 Modified Files: mediawiki-ParserFunctions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-ParserFunctions.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-ParserFunctions/devel/mediawiki-ParserFunctions.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mediawiki-ParserFunctions.spec 26 Feb 2009 00:11:28 -0000 1.4 +++ mediawiki-ParserFunctions.spec 25 Jul 2009 11:59:24 -0000 1.5 @@ -2,7 +2,7 @@ Name: mediawiki-ParserFunctions Version: 1.1.1 -Release: 5.svn%{svn_rev}%{?dist} +Release: 6.svn%{svn_rev}%{?dist} Summary: Enhances the Mediawiki parser with logical functions Group: Applications/Internet @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.1-6.svn45003 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.1-5.svn45003 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 11:59:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:59:40 +0000 (UTC) Subject: rpms/mediawiki-Renameuser/devel mediawiki-Renameuser.spec,1.1,1.2 Message-ID: <20090725115940.E481B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-Renameuser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5478 Modified Files: mediawiki-Renameuser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-Renameuser.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-Renameuser/devel/mediawiki-Renameuser.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-Renameuser.spec 26 Jun 2009 03:25:37 -0000 1.1 +++ mediawiki-Renameuser.spec 25 Jul 2009 11:59:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-Renameuser Version: 0 -Release: 0.5.20090505svn%{?dist} +Release: 0.6.20090505svn%{?dist} Summary: An extension that provides a special page for renaming user accounts Group: Applications/Internet @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/LICENSE.fedora %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.6.20090505svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 John Guthrie - 0-0.5.20090505svn - Corrected UTF8 problems with the LICENSE.fedora file. From jkeating at fedoraproject.org Sat Jul 25 11:59:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 11:59:55 +0000 (UTC) Subject: rpms/mediawiki-SpecialInterwiki/devel mediawiki-SpecialInterwiki.spec, 1.5, 1.6 Message-ID: <20090725115955.D52B511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-SpecialInterwiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5664 Modified Files: mediawiki-SpecialInterwiki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-SpecialInterwiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-SpecialInterwiki/devel/mediawiki-SpecialInterwiki.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mediawiki-SpecialInterwiki.spec 26 May 2009 16:25:27 -0000 1.5 +++ mediawiki-SpecialInterwiki.spec 25 Jul 2009 11:59:55 -0000 1.6 @@ -1,6 +1,6 @@ Name: mediawiki-SpecialInterwiki Version: 0 -Release: 0.6.20080913svn%{?dist} +Release: 0.7.20080913svn%{?dist} Summary: An extension to provide an interwiki management system Group: Applications/Internet @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version}/README.fedora %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.7.20080913svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Michael Schwendt - 0-0.6.20080913svn - Fix unowned versioned documentation directory (#474674). From jkeating at fedoraproject.org Sat Jul 25 12:00:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:00:10 +0000 (UTC) Subject: rpms/mediawiki-StubManager/devel mediawiki-StubManager.spec, 1.3, 1.4 Message-ID: <20090725120010.C4B5D11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-StubManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5823 Modified Files: mediawiki-StubManager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-StubManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-StubManager/devel/mediawiki-StubManager.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mediawiki-StubManager.spec 26 Feb 2009 00:13:26 -0000 1.3 +++ mediawiki-StubManager.spec 25 Jul 2009 12:00:10 -0000 1.4 @@ -1,6 +1,6 @@ Name: mediawiki-StubManager Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An extension meant to address 'rare events' handling Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:00:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:00:25 +0000 (UTC) Subject: rpms/mediawiki-imagemap/devel mediawiki-imagemap.spec,1.2,1.3 Message-ID: <20090725120025.9573111C0501@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-imagemap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5963 Modified Files: mediawiki-imagemap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-imagemap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-imagemap/devel/mediawiki-imagemap.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mediawiki-imagemap.spec 26 Feb 2009 00:14:22 -0000 1.2 +++ mediawiki-imagemap.spec 25 Jul 2009 12:00:25 -0000 1.3 @@ -1,7 +1,7 @@ Summary: The ImageMap extension for MediaWiki Name: mediawiki-imagemap Version: 0 -Release: 0.2.r37906%{?dist} +Release: 0.3.r37906%{?dist} License: GPLv2+ Group: Development/Tools @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_datadir}/mediawiki/extensions/ImageMap %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.3.r37906 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.r37906 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:00:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:00:42 +0000 (UTC) Subject: rpms/mediawiki-openid/devel mediawiki-openid.spec,1.4,1.5 Message-ID: <20090725120042.6676311C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-openid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6107 Modified Files: mediawiki-openid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-openid.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-openid/devel/mediawiki-openid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mediawiki-openid.spec 26 Feb 2009 00:15:23 -0000 1.4 +++ mediawiki-openid.spec 25 Jul 2009 12:00:42 -0000 1.5 @@ -1,7 +1,7 @@ Summary: The OpenID extension for MediaWiki Name: mediawiki-openid Version: 0.8.2 -Release: 8.0.1 +Release: 9.0.1 License: GPLv2+ Group: Development/Tools URL: http://www.mediawiki.org/wiki/Extension:OpenID @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_datadir}/mediawiki/extensions/OpenID %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.2-9.0.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.2-8.0.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:00:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:00:59 +0000 (UTC) Subject: rpms/mediawiki-rss/devel mediawiki-rss.spec,1.1,1.2 Message-ID: <20090725120059.9F7B211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6264 Modified Files: mediawiki-rss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-rss/devel/mediawiki-rss.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-rss.spec 16 Jul 2009 04:28:47 -0000 1.1 +++ mediawiki-rss.spec 25 Jul 2009 12:00:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-rss Version: 1.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Displays an RSS feed on a mediawiki page Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc README %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Clint Savage 1.5-2 - Updated the license * Fri Jul 3 2009 Clint Savage 1.5-1 From jkeating at fedoraproject.org Sat Jul 25 12:01:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:01:14 +0000 (UTC) Subject: rpms/mediawiki-semantic/devel mediawiki-semantic.spec,1.1,1.2 Message-ID: <20090725120114.AC09011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-semantic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6419 Modified Files: mediawiki-semantic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-semantic.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-semantic/devel/mediawiki-semantic.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-semantic.spec 18 Mar 2009 11:51:45 -0000 1.1 +++ mediawiki-semantic.spec 25 Jul 2009 12:01:14 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-semantic Version: 1.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An extension of MediaWiki that improves content organization Group: Applications/Internet License: GPLv2 @@ -59,5 +59,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 James Laska 1.4.2-1 - Initial packaging of 1.4.2 From jkeating at fedoraproject.org Sat Jul 25 12:01:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:01:31 +0000 (UTC) Subject: rpms/mediawiki-wikicalendar/devel mediawiki-wikicalendar.spec, 1.1, 1.2 Message-ID: <20090725120131.78A3911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mediawiki-wikicalendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6578 Modified Files: mediawiki-wikicalendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mediawiki-wikicalendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/mediawiki-wikicalendar/devel/mediawiki-wikicalendar.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mediawiki-wikicalendar.spec 1 Mar 2009 11:27:39 -0000 1.1 +++ mediawiki-wikicalendar.spec 25 Jul 2009 12:01:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: mediawiki-wikicalendar Version: 1.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple calendar extension for mediawiki Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Christof Damian 1.15-1 - updated to version 1.15 From jkeating at fedoraproject.org Sat Jul 25 12:01:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:01:46 +0000 (UTC) Subject: rpms/medusa/devel medusa.spec,1.3,1.4 Message-ID: <20090725120146.DF80411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/medusa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6755 Modified Files: medusa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: medusa.spec =================================================================== RCS file: /cvs/pkgs/rpms/medusa/devel/medusa.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- medusa.spec 11 Jun 2009 12:25:40 -0000 1.3 +++ medusa.spec 25 Jul 2009 12:01:46 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Parallel brute forcing password cracker Name: medusa Version: 1.5 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Applications/System URL: http://www.foofus.net/jmk/medusa/medusa.html @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_libdir}/medusa/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Jan F. Chadima - 10.5-7 - enable afpfs_ng backend From jkeating at fedoraproject.org Sat Jul 25 12:02:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:02:03 +0000 (UTC) Subject: rpms/meld/devel meld.spec,1.31,1.32 Message-ID: <20090725120203.14EF611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/meld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6915 Modified Files: meld.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: meld.spec =================================================================== RCS file: /cvs/pkgs/rpms/meld/devel/meld.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- meld.spec 10 May 2009 19:38:16 -0000 1.31 +++ meld.spec 25 Jul 2009 12:02:02 -0000 1.32 @@ -1,6 +1,6 @@ Name: meld Version: 1.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Visual diff and merge tool Group: Development/Tools @@ -82,6 +82,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Brian Pepple - 1.3.0-1 - Update to 1.3.0. - Drop gnome-python2-* requires, since they shouldn't be needed anymore. From jkeating at fedoraproject.org Sat Jul 25 12:02:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:02:20 +0000 (UTC) Subject: rpms/memchan/devel memchan.spec,1.6,1.7 Message-ID: <20090725120220.9641911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/memchan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7099 Modified Files: memchan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: memchan.spec =================================================================== RCS file: /cvs/pkgs/rpms/memchan/devel/memchan.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- memchan.spec 26 Feb 2009 00:18:23 -0000 1.6 +++ memchan.spec 25 Jul 2009 12:02:20 -0000 1.7 @@ -3,7 +3,7 @@ Name: memchan Version: 2.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: In-memory channels for Tcl Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:02:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:02:37 +0000 (UTC) Subject: rpms/memtest86+/devel memtest86+.spec,1.46,1.47 Message-ID: <20090725120237.E4FC511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/memtest86+/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7305 Modified Files: memtest86+.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: memtest86+.spec =================================================================== RCS file: /cvs/pkgs/rpms/memtest86+/devel/memtest86+.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- memtest86+.spec 24 Apr 2009 19:12:27 -0000 1.46 +++ memtest86+.spec 25 Jul 2009 12:02:37 -0000 1.47 @@ -7,7 +7,7 @@ Name: memtest86+ Version: 2.11 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2 Summary: Stand-alone memory tester for x86 and x86-64 computers Group: System Environment/Base @@ -84,6 +84,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.11-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Warren Togami - 2.11-9 - Fix uninstall to remove stanza from grub.conf From jkeating at fedoraproject.org Sat Jul 25 12:02:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:02:54 +0000 (UTC) Subject: rpms/memtester/devel memtester.spec,1.2,1.3 Message-ID: <20090725120254.EF8B211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/memtester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7527 Modified Files: memtester.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: memtester.spec =================================================================== RCS file: /cvs/pkgs/rpms/memtester/devel/memtester.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- memtester.spec 26 Feb 2009 00:20:16 -0000 1.2 +++ memtester.spec 25 Jul 2009 12:02:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: memtester Version: 4.0.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utility to test for faulty memory subsystem Group: System Environment/Base @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:03:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:03:12 +0000 (UTC) Subject: rpms/mencal/devel mencal.spec,1.2,1.3 Message-ID: <20090725120312.229E011C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mencal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7695 Modified Files: mencal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mencal.spec =================================================================== RCS file: /cvs/pkgs/rpms/mencal/devel/mencal.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mencal.spec 26 Feb 2009 00:21:18 -0000 1.2 +++ mencal.spec 25 Jul 2009 12:03:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: mencal Version: 2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Menstruation calendar @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:03:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:03:27 +0000 (UTC) Subject: rpms/menu-cache/devel menu-cache.spec,1.7,1.8 Message-ID: <20090725120327.AA20511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/menu-cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7880 Modified Files: menu-cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: menu-cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/menu-cache/devel/menu-cache.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- menu-cache.spec 28 Apr 2009 16:35:26 -0000 1.7 +++ menu-cache.spec 25 Jul 2009 12:03:27 -0000 1.8 @@ -1,6 +1,6 @@ Name: menu-cache Version: 0.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Caching mechanism for freedesktop.org compliant menus Group: System Environment/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Christoph Wickert - 0.2.5-1 - Update to 0.2.5 From jkeating at fedoraproject.org Sat Jul 25 12:03:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:03:42 +0000 (UTC) Subject: rpms/mercator/devel mercator.spec,1.9,1.10 Message-ID: <20090725120342.D2D8511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mercator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8032 Modified Files: mercator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mercator.spec =================================================================== RCS file: /cvs/pkgs/rpms/mercator/devel/mercator.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mercator.spec 1 Mar 2009 13:47:29 -0000 1.9 +++ mercator.spec 25 Jul 2009 12:03:42 -0000 1.10 @@ -1,6 +1,6 @@ Name: mercator Version: 0.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Terrain library for WorldForge client/server Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Alexey Torkhov - 0.2.7-2 - Actually perform the tests From jkeating at fedoraproject.org Sat Jul 25 12:03:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:03:59 +0000 (UTC) Subject: rpms/merkaartor/devel merkaartor.spec,1.13,1.14 Message-ID: <20090725120359.14A1211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/merkaartor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8233 Modified Files: merkaartor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: merkaartor.spec =================================================================== RCS file: /cvs/pkgs/rpms/merkaartor/devel/merkaartor.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- merkaartor.spec 5 Jul 2009 20:41:51 -0000 1.13 +++ merkaartor.spec 25 Jul 2009 12:03:58 -0000 1.14 @@ -1,6 +1,6 @@ Name: merkaartor Version: 0.14 -Release: 0.1.pre2%{?dist} +Release: 0.2.pre2%{?dist} Summary: Qt-Based OpenStreetMap editor Group: Applications/Productivity @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS CHANGELOG HACKING LICENSE %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-0.2.pre2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Sven Lankes - 0.14-0.1-pre2 - 0.14-pre2 From jkeating at fedoraproject.org Sat Jul 25 12:04:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:04:18 +0000 (UTC) Subject: rpms/mesa/devel mesa.spec,1.246,1.247 Message-ID: <20090725120418.2248311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8410 Modified Files: mesa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.246 retrieving revision 1.247 diff -u -p -r1.246 -r1.247 --- mesa.spec 23 Jul 2009 02:17:11 -0000 1.246 +++ mesa.spec 25 Jul 2009 12:04:17 -0000 1.247 @@ -21,7 +21,7 @@ Summary: Mesa graphics libraries Name: mesa Version: 7.6 -Release: 0.4%{?dist} +Release: 0.5%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -366,6 +366,9 @@ rm -rf $RPM_BUILD_ROOT %{demodir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7.6-0.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Dave Airlie 7.6-0.4 - rebase to latest upstream snapshot From jkeating at fedoraproject.org Sat Jul 25 12:04:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:04:32 +0000 (UTC) Subject: rpms/mesa-libGLw/devel mesa-libGLw.spec,1.9,1.10 Message-ID: <20090725120432.9C96111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mesa-libGLw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8624 Modified Files: mesa-libGLw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mesa-libGLw.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa-libGLw/devel/mesa-libGLw.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mesa-libGLw.spec 26 Feb 2009 00:24:12 -0000 1.9 +++ mesa-libGLw.spec 25 Jul 2009 12:04:32 -0000 1.10 @@ -4,7 +4,7 @@ Summary: Xt / Motif OpenGL widgets Name: mesa-libGLw Version: 6.5.1 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/GL/GLwMDrawAP.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.5.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:05:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:05:03 +0000 (UTC) Subject: rpms/meshmagick/devel meshmagick.spec,1.2,1.3 Message-ID: <20090725120503.CFE9F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/meshmagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8884 Modified Files: meshmagick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: meshmagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/meshmagick/devel/meshmagick.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- meshmagick.spec 11 May 2009 07:48:26 -0000 1.2 +++ meshmagick.spec 25 Jul 2009 12:05:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: meshmagick Version: 0.5.2 -Release: 5.20090124svn2618%{?dist} +Release: 6.20090124svn2618%{?dist} Summary: Command line manipulation tool for Ogre meshes Group: Applications/Multimedia @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.2-6.20090124svn2618 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Alexey Torkhov - 0.5.2-5.20090124svn2618 - Rebuild for new OGRE From jkeating at fedoraproject.org Sat Jul 25 12:05:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:05:18 +0000 (UTC) Subject: rpms/messiggy/devel messiggy.spec,1.2,1.3 Message-ID: <20090725120518.8195011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/messiggy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9049 Modified Files: messiggy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: messiggy.spec =================================================================== RCS file: /cvs/pkgs/rpms/messiggy/devel/messiggy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- messiggy.spec 26 Feb 2009 00:25:09 -0000 1.2 +++ messiggy.spec 25 Jul 2009 12:05:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: messiggy Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Messiggy is a database of celestial objects Group: Applications/Engineering @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:05:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:05:32 +0000 (UTC) Subject: rpms/metacafe-dl/devel metacafe-dl.spec,1.3,1.4 Message-ID: <20090725120532.9FE0E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metacafe-dl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9231 Modified Files: metacafe-dl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metacafe-dl.spec =================================================================== RCS file: /cvs/pkgs/rpms/metacafe-dl/devel/metacafe-dl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- metacafe-dl.spec 26 Feb 2009 00:26:13 -0000 1.3 +++ metacafe-dl.spec 25 Jul 2009 12:05:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: metacafe-dl Version: 2008.07.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command-line program to download videos from metacafe.com Summary(pl): Tekstowy program do pobierania film?w z metacafe.com @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2008.07.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2008.07.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:05:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:05:51 +0000 (UTC) Subject: rpms/metacity/devel metacity.spec,1.193,1.194 Message-ID: <20090725120551.1072611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metacity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9411 Modified Files: metacity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metacity.spec =================================================================== RCS file: /cvs/pkgs/rpms/metacity/devel/metacity.spec,v retrieving revision 1.193 retrieving revision 1.194 diff -u -p -r1.193 -r1.194 --- metacity.spec 8 Jun 2009 04:09:35 -0000 1.193 +++ metacity.spec 25 Jul 2009 12:05:50 -0000 1.194 @@ -1,7 +1,7 @@ Summary: Unobtrusive window manager Name: metacity Version: 2.27.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://download.gnome.org/sources/metacity/ Source0: http://download.gnome.org/sources/metacity/2.27/metacity-%{version}.tar.bz2 Patch0: default-theme.patch @@ -178,6 +178,9 @@ fi %{_mandir}/man1/metacity-window-demo.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 7 2009 Matthias Clasen - 2.27.0-2 - Make DND work better - Don't show a lame dialog From jkeating at fedoraproject.org Sat Jul 25 12:06:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:06:08 +0000 (UTC) Subject: rpms/metakit/devel metakit.spec,1.23,1.24 Message-ID: <20090725120608.06AB511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metakit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9594 Modified Files: metakit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metakit.spec =================================================================== RCS file: /cvs/pkgs/rpms/metakit/devel/metakit.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- metakit.spec 26 Feb 2009 00:28:09 -0000 1.23 +++ metakit.spec 25 Jul 2009 12:06:07 -0000 1.24 @@ -3,7 +3,7 @@ Summary: Embeddable database Name: metakit Version: 2.4.9.7 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.equi4.com/metakit/ @@ -82,6 +82,9 @@ popd %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.9.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.9.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:06:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:06:23 +0000 (UTC) Subject: rpms/metalink/devel metalink.spec,1.1,1.2 Message-ID: <20090725120623.4460D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metalink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9757 Modified Files: metalink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metalink.spec =================================================================== RCS file: /cvs/pkgs/rpms/metalink/devel/metalink.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- metalink.spec 27 Feb 2009 18:30:22 -0000 1.1 +++ metalink.spec 25 Jul 2009 12:06:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: metalink Version: 0.3.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Metalink Generator Group: Applications/Internet License: GPLv3+ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jan 05 2009 Ant Bryan - 0.3.6-2 - New version, 0.3.6-2 - man page, licensing clarification upstream. From jkeating at fedoraproject.org Sat Jul 25 12:06:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:06:38 +0000 (UTC) Subject: rpms/metamonitor/devel metamonitor.spec,1.7,1.8 Message-ID: <20090725120638.A6D3811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metamonitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9907 Modified Files: metamonitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metamonitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/metamonitor/devel/metamonitor.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- metamonitor.spec 26 Feb 2009 00:28:59 -0000 1.7 +++ metamonitor.spec 25 Jul 2009 12:06:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: metamonitor Version: 0.4.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A Simple program that watches log files and popup its changes Group: Applications/System @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/metamonitor.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:06:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:06:54 +0000 (UTC) Subject: rpms/metapixel/devel metapixel.spec,1.10,1.11 Message-ID: <20090725120654.0E8B311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metapixel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10049 Modified Files: metapixel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metapixel.spec =================================================================== RCS file: /cvs/pkgs/rpms/metapixel/devel/metapixel.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- metapixel.spec 26 Feb 2009 00:29:47 -0000 1.10 +++ metapixel.spec 25 Jul 2009 12:06:53 -0000 1.11 @@ -1,7 +1,7 @@ Summary: A Photomosaic Generator Name: metapixel Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Multimedia Source0: http://www.complang.tuwien.ac.at/schani/metapixel/metapixel-%{version}.tar.gz @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:07:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:07:08 +0000 (UTC) Subject: rpms/metapost-metauml/devel metapost-metauml.spec,1.3,1.4 Message-ID: <20090725120708.8021E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metapost-metauml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10202 Modified Files: metapost-metauml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metapost-metauml.spec =================================================================== RCS file: /cvs/pkgs/rpms/metapost-metauml/devel/metapost-metauml.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- metapost-metauml.spec 24 May 2009 15:48:49 -0000 1.3 +++ metapost-metauml.spec 25 Jul 2009 12:07:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: metapost-metauml Version: 0.2.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: UML in LaTeX/MetaPost Group: Applications/Publishing @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Ben Boeckel 0.2.5-5 - Add post/postun to do texhash so it is found - Use RPM macro rather than shell-like macro From jkeating at fedoraproject.org Sat Jul 25 12:07:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:07:22 +0000 (UTC) Subject: rpms/meterbridge/devel meterbridge.spec,1.1,1.2 Message-ID: <20090725120722.6FB6511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/meterbridge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10348 Modified Files: meterbridge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: meterbridge.spec =================================================================== RCS file: /cvs/pkgs/rpms/meterbridge/devel/meterbridge.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- meterbridge.spec 6 May 2009 23:43:21 -0000 1.1 +++ meterbridge.spec 25 Jul 2009 12:07:22 -0000 1.2 @@ -2,7 +2,7 @@ Name: meterbridge Summary: Meter Bridge for JACK Group: Applications/Multimedia Version: 0.9.2 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://plugin.org.uk/meterbridge/ Source0: http://plugin.org.uk/%{name}/%{name}-%{version}.tar.gz # Patch sent upstream via email (there is no bugtracker) @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Orcan Ogetbil - 0.9.2-3 - prepare package for Fedora submission (SPEC file from PlanetCCRMA) From jkeating at fedoraproject.org Sat Jul 25 12:07:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:07:40 +0000 (UTC) Subject: rpms/methane/devel methane.spec,1.7,1.8 Message-ID: <20090725120740.8923511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/methane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10602 Modified Files: methane.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: methane.spec =================================================================== RCS file: /cvs/pkgs/rpms/methane/devel/methane.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- methane.spec 18 May 2009 13:53:04 -0000 1.7 +++ methane.spec 25 Jul 2009 12:07:40 -0000 1.8 @@ -1,6 +1,6 @@ Name: methane Version: 1.4.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Super Methane Brothers Group: Amusements/Games License: GPLv2+ @@ -92,6 +92,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 1.4.7-7 - Rebuild for new ClanLib From jkeating at fedoraproject.org Sat Jul 25 12:07:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:07:54 +0000 (UTC) Subject: rpms/metromap/devel metromap.spec,1.1,1.2 Message-ID: <20090725120754.5CFD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/metromap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10991 Modified Files: metromap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: metromap.spec =================================================================== RCS file: /cvs/pkgs/rpms/metromap/devel/metromap.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- metromap.spec 9 Mar 2009 23:44:06 -0000 1.1 +++ metromap.spec 25 Jul 2009 12:07:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: metromap Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple program for finding paths in subway/metro maps Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Fabian Affolter - 0.1.2-3 - Added russian translation to .desktop file From jkeating at fedoraproject.org Sat Jul 25 12:08:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:08:15 +0000 (UTC) Subject: rpms/mfstools/devel mfstools.spec,1.13,1.14 Message-ID: <20090725120815.A080F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mfstools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11535 Modified Files: mfstools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mfstools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mfstools/devel/mfstools.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mfstools.spec 26 Feb 2009 00:32:28 -0000 1.13 +++ mfstools.spec 25 Jul 2009 12:08:15 -0000 1.14 @@ -2,7 +2,7 @@ Name: mfstools Version: 2.0 -Release: 14.%{releasename}%{?dist} +Release: 15.%{releasename}%{?dist} Summary: Utilities for TiVo drive upgrades Group: Applications/File License: GPL+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-15.snapshot050221 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-14.snapshot050221 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:08:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:08:29 +0000 (UTC) Subject: rpms/mftrace/devel mftrace.spec,1.15,1.16 Message-ID: <20090725120829.6F78A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mftrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11685 Modified Files: mftrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mftrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/mftrace/devel/mftrace.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mftrace.spec 26 Feb 2009 00:33:24 -0000 1.15 +++ mftrace.spec 25 Jul 2009 12:08:29 -0000 1.16 @@ -1,6 +1,6 @@ Name: mftrace Version: 1.2.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utility for converting TeX bitmap fonts to Type 1 or TrueType fonts Group: Applications/Publishing @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:08:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:08:47 +0000 (UTC) Subject: rpms/mgetty/devel mgetty.spec,1.51,1.52 Message-ID: <20090725120847.57DC211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mgetty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11851 Modified Files: mgetty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mgetty.spec =================================================================== RCS file: /cvs/pkgs/rpms/mgetty/devel/mgetty.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- mgetty.spec 26 Feb 2009 00:34:19 -0000 1.51 +++ mgetty.spec 25 Jul 2009 12:08:47 -0000 1.52 @@ -3,7 +3,7 @@ Summary: A getty replacement for use with data and fax modems Name: mgetty Version: 1.1.36 -Release: 3%{?dist} +Release: 4%{?dist} Source: ftp://mgetty.greenie.net/pub/mgetty/source/1.1/mgetty%{version}-%{date}.tar.gz Source1: ftp://mgetty.greenie.net/pub/mgetty/source/1.1/mgetty%{version}-%{date}.tar.gz.asc Source2: logrotate.mgetty @@ -319,6 +319,9 @@ fi %{_mandir}/man1/viewfax.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.36-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:09:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:09:04 +0000 (UTC) Subject: rpms/mgopen-fonts/devel mgopen-fonts.spec,1.15,1.16 Message-ID: <20090725120904.16F1911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mgopen-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12024 Modified Files: mgopen-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mgopen-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/mgopen-fonts/devel/mgopen-fonts.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mgopen-fonts.spec 26 Feb 2009 00:35:10 -0000 1.15 +++ mgopen-fonts.spec 25 Jul 2009 12:09:03 -0000 1.16 @@ -19,7 +19,7 @@ It can be safely uninstalled. Name: %{fontname}-fonts Version: 0.%{upstream_date} -Release: 15%{?dist} +Release: 16%{?dist} Summary: Truetype greek fonts Group: User Interface/X License: MgOpen @@ -157,6 +157,9 @@ rm -rf %{buildroot} %files compat %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20050515-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20050515-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:09:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:09:21 +0000 (UTC) Subject: rpms/mhash/devel mhash.spec,1.30,1.31 Message-ID: <20090725120921.03F5311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mhash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12208 Modified Files: mhash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mhash.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhash/devel/mhash.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mhash.spec 22 Jul 2009 22:35:38 -0000 1.30 +++ mhash.spec 25 Jul 2009 12:09:20 -0000 1.31 @@ -4,7 +4,7 @@ Summary: Thread-safe hash algorithms library Name: mhash Version: 0.9.9.9 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://mhash.sourceforge.net/ License: LGPLv2+ Group: System Environment/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.9.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 0.9.9.9-2 - bump rawhide, fixed the last bug From jkeating at fedoraproject.org Sat Jul 25 12:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:09:36 +0000 (UTC) Subject: rpms/mhgui/devel mhgui.spec,1.8,1.9 Message-ID: <20090725120936.D6BAB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mhgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12377 Modified Files: mhgui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mhgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhgui/devel/mhgui.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mhgui.spec 26 Feb 2009 00:37:06 -0000 1.8 +++ mhgui.spec 25 Jul 2009 12:09:36 -0000 1.9 @@ -1,6 +1,6 @@ Name: mhgui Version: 0.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A simple GUI library for MakeHuman Group: System Environment/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:09:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:09:52 +0000 (UTC) Subject: rpms/mhonarc/devel mhonarc.spec,1.19,1.20 Message-ID: <20090725120952.ED81711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mhonarc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12572 Modified Files: mhonarc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mhonarc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mhonarc/devel/mhonarc.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- mhonarc.spec 9 Mar 2009 07:19:55 -0000 1.19 +++ mhonarc.spec 25 Jul 2009 12:09:52 -0000 1.20 @@ -1,6 +1,6 @@ Name: mhonarc Version: 2.6.16 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl mail-to-HTML converter Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.16-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Aurelien Bompard 2.6.16-6 - filter out unwanted Requires (provided by MHonArc itself) From jkeating at fedoraproject.org Sat Jul 25 12:10:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:10:07 +0000 (UTC) Subject: rpms/miau/devel miau.spec,1.6,1.7 Message-ID: <20090725121007.E832311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/miau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12741 Modified Files: miau.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: miau.spec =================================================================== RCS file: /cvs/pkgs/rpms/miau/devel/miau.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- miau.spec 26 Feb 2009 00:39:00 -0000 1.6 +++ miau.spec 25 Jul 2009 12:10:07 -0000 1.7 @@ -1,6 +1,6 @@ Name: miau Version: 0.6.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Full-featured IRC bouncer Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/%{name}.info* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:10:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:10:29 +0000 (UTC) Subject: rpms/microcode_ctl/devel microcode_ctl.spec,1.52,1.53 Message-ID: <20090725121029.B19FD11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/microcode_ctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12926 Modified Files: microcode_ctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: microcode_ctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/microcode_ctl/devel/microcode_ctl.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- microcode_ctl.spec 25 Jun 2009 23:35:01 -0000 1.52 +++ microcode_ctl.spec 25 Jul 2009 12:10:29 -0000 1.53 @@ -1,7 +1,7 @@ Summary: Tool to update x86/x86-64 CPU microcode. Name: microcode_ctl Version: 1.17 -Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist} +Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist}.1 Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -78,6 +78,9 @@ family=`cat /proc/cpuinfo | grep "^cpu f exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.17-1.52.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Dave Jones - Shorten sleep time during init. This really needs to be replaced with proper udev hooks, but this is From jkeating at fedoraproject.org Sat Jul 25 12:10:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:10:45 +0000 (UTC) Subject: rpms/midisport-firmware/devel midisport-firmware.spec,1.7,1.8 Message-ID: <20090725121045.98B6611C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/midisport-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13118 Modified Files: midisport-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: midisport-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/midisport-firmware/devel/midisport-firmware.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- midisport-firmware.spec 26 Feb 2009 00:40:53 -0000 1.7 +++ midisport-firmware.spec 25 Jul 2009 12:10:45 -0000 1.8 @@ -1,6 +1,6 @@ Name: midisport-firmware Version: 1.2 -Release: 5%{dist} +Release: 6%{dist} Summary: Firmware for the M-Audio/Midiman USB MIDI and Audio devices Group: System Environment/Kernel License: (MIT or GPLv2+) and Redistributable, no modification permitted @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/udev/rules.d/42-midisport-firmware.rules %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:11:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:11:00 +0000 (UTC) Subject: rpms/midori/devel midori.spec,1.23,1.24 Message-ID: <20090725121100.2BA1C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/midori/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13278 Modified Files: midori.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: midori.spec =================================================================== RCS file: /cvs/pkgs/rpms/midori/devel/midori.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- midori.spec 4 Jun 2009 03:22:06 -0000 1.23 +++ midori.spec 25 Jul 2009 12:10:59 -0000 1.24 @@ -1,6 +1,6 @@ Name: midori Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight GTK+ web browser Group: Applications/Internet @@ -102,6 +102,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Peter Gordon - 0.1.7-1 - Update to new upstream release (0.1.7): Implements saving activation state of extensions, ignore mouse buttons used for horizontal scrolling, panel From jkeating at fedoraproject.org Sat Jul 25 12:11:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:11:14 +0000 (UTC) Subject: rpms/migrationtools/devel migrationtools.spec,1.3,1.4 Message-ID: <20090725121114.7A3BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/migrationtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13445 Modified Files: migrationtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: migrationtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/migrationtools/devel/migrationtools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- migrationtools.spec 26 Feb 2009 00:42:34 -0000 1.3 +++ migrationtools.spec 25 Jul 2009 12:11:14 -0000 1.4 @@ -1,7 +1,7 @@ %define version 47 Name: migrationtools Version: %{version} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Migration scripts for LDAP Group: System Environment/Daemons @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc migration-tools.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 47-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 47-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:11:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:11:29 +0000 (UTC) Subject: rpms/mikmod/devel mikmod.spec,1.42,1.43 Message-ID: <20090725121129.25C3411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mikmod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13614 Modified Files: mikmod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mikmod.spec =================================================================== RCS file: /cvs/pkgs/rpms/mikmod/devel/mikmod.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- mikmod.spec 26 Feb 2009 00:43:28 -0000 1.42 +++ mikmod.spec 25 Jul 2009 12:11:28 -0000 1.43 @@ -3,7 +3,7 @@ Summary: Music module player Name: mikmod Version: 3.2.2 -Release: 10.beta1%{?dist} +Release: 11.beta1%{?dist} License: GPLv2 and LGPLv2+ Group: Applications/Multimedia Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2.2-11.beta1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.2-10.beta1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:11:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:11:43 +0000 (UTC) Subject: rpms/milkytracker/devel milkytracker.spec,1.2,1.3 Message-ID: <20090725121143.8798811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/milkytracker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13761 Modified Files: milkytracker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: milkytracker.spec =================================================================== RCS file: /cvs/pkgs/rpms/milkytracker/devel/milkytracker.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- milkytracker.spec 26 Feb 2009 00:44:28 -0000 1.2 +++ milkytracker.spec 25 Jul 2009 12:11:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: milkytracker Version: 0.90.80 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Module tracker software for creating music Group: Applications/Multimedia @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/milkytracker.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.90.80-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.90.80-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:11:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:11:58 +0000 (UTC) Subject: rpms/milter-greylist/devel milter-greylist.spec,1.31,1.32 Message-ID: <20090725121158.C937D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/milter-greylist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13919 Modified Files: milter-greylist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: milter-greylist.spec =================================================================== RCS file: /cvs/pkgs/rpms/milter-greylist/devel/milter-greylist.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- milter-greylist.spec 11 Apr 2009 12:01:30 -0000 1.31 +++ milter-greylist.spec 25 Jul 2009 12:11:58 -0000 1.32 @@ -19,7 +19,7 @@ Summary: Milter for greylisting, the next step in the spam control war Name: milter-greylist Version: 4.2.2 -Release: %release_func 0%{?beta} +Release: %release_func 1%{?beta} License: BSD with advertising Group: System Environment/Daemons URL: http://hcpnet.free.fr/milter-greylist/ @@ -212,6 +212,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.2-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Enrico Scholz - 4.2.2-0. - updated to 4.2.2 - removed patches which where applied upstream From jkeating at fedoraproject.org Sat Jul 25 12:12:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:12:13 +0000 (UTC) Subject: rpms/milter-regex/devel milter-regex.spec,1.8,1.9 Message-ID: <20090725121213.7306F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/milter-regex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14061 Modified Files: milter-regex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: milter-regex.spec =================================================================== RCS file: /cvs/pkgs/rpms/milter-regex/devel/milter-regex.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- milter-regex.spec 26 Feb 2009 00:46:29 -0000 1.8 +++ milter-regex.spec 25 Jul 2009 12:12:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: milter-regex Version: 1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Sendmail milter plugin for regular expression filtering Group: System Environment/Daemons License: BSD @@ -83,6 +83,9 @@ fi %{_mandir}/man8/milter-regex.8* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:12:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:12:27 +0000 (UTC) Subject: rpms/mimedefang/devel mimedefang.spec,1.14,1.15 Message-ID: <20090725121227.B95CB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mimedefang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14203 Modified Files: mimedefang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mimedefang.spec =================================================================== RCS file: /cvs/pkgs/rpms/mimedefang/devel/mimedefang.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- mimedefang.spec 5 Apr 2009 20:15:20 -0000 1.14 +++ mimedefang.spec 25 Jul 2009 12:12:27 -0000 1.15 @@ -1,7 +1,7 @@ Summary: E-Mail filtering framework using Sendmail's Milter interface Name: mimedefang Version: 2.67 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.mimedefang.org/ @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.67-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Robert Scheck 2.67-1 - Upgrade to 2.67 From jkeating at fedoraproject.org Sat Jul 25 12:12:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:12:41 +0000 (UTC) Subject: rpms/mimetex/devel mimetex.spec,1.7,1.8 Message-ID: <20090725121241.59C3611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mimetex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14342 Modified Files: mimetex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mimetex.spec =================================================================== RCS file: /cvs/pkgs/rpms/mimetex/devel/mimetex.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mimetex.spec 26 Feb 2009 00:47:32 -0000 1.7 +++ mimetex.spec 25 Jul 2009 12:12:41 -0000 1.8 @@ -1,6 +1,6 @@ Name: mimetex Version: 1.60 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Easily embed LaTeX math in web pages Group: Applications/Publishing @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc /%{_var}/www/html/%{name}.html %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.60-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.60-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:12:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:12:56 +0000 (UTC) Subject: rpms/mimetic/devel mimetic.spec,1.16,1.17 Message-ID: <20090725121256.72EF811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mimetic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14491 Modified Files: mimetic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mimetic.spec =================================================================== RCS file: /cvs/pkgs/rpms/mimetic/devel/mimetic.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- mimetic.spec 7 Mar 2009 12:32:22 -0000 1.16 +++ mimetic.spec 25 Jul 2009 12:12:56 -0000 1.17 @@ -2,7 +2,7 @@ Name: mimetic Version: 0.9.5 -Release: %release_func 0 +Release: %release_func 1 Summary: A full featured MIME library written in C++ Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.5-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Enrico Scholz - 0.9.5-0 - updated to 0.9.5 From jkeating at fedoraproject.org Sat Jul 25 12:13:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:13:10 +0000 (UTC) Subject: rpms/min12xxw/devel min12xxw.spec,1.4,1.5 Message-ID: <20090725121310.961D411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/min12xxw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14638 Modified Files: min12xxw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: min12xxw.spec =================================================================== RCS file: /cvs/pkgs/rpms/min12xxw/devel/min12xxw.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- min12xxw.spec 26 Feb 2009 00:49:33 -0000 1.4 +++ min12xxw.spec 25 Jul 2009 12:13:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: min12xxw Version: 0.0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Converts PBM stream to Minolta printer language Group: System Environment/Libraries @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog NEWS README COPYING format.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:13:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:13:24 +0000 (UTC) Subject: rpms/minbar/devel minbar.spec,1.2,1.3 Message-ID: <20090725121324.A839211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/minbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14767 Modified Files: minbar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: minbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/minbar/devel/minbar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- minbar.spec 26 Feb 2009 00:50:43 -0000 1.2 +++ minbar.spec 25 Jul 2009 12:13:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: minbar Version: 0.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Athan call and prayer times notification software Group: User Interface/Desktops @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/minbar/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:13:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:13:38 +0000 (UTC) Subject: rpms/mingetty/devel mingetty.spec,1.22,1.23 Message-ID: <20090725121338.E83F811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingetty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14936 Modified Files: mingetty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingetty.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingetty/devel/mingetty.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mingetty.spec 26 Feb 2009 00:51:48 -0000 1.22 +++ mingetty.spec 25 Jul 2009 12:13:38 -0000 1.23 @@ -2,7 +2,7 @@ Summary: A compact getty program for vir Name: mingetty Version: 1.08 License: GPLv2+ -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Base URL: http://sourceforge.net/projects/mingetty/ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/mingetty.* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:13:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:13:54 +0000 (UTC) Subject: rpms/mingw32-SDL/devel mingw32-SDL.spec,1.4,1.5 Message-ID: <20090725121354.3823711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15109 Modified Files: mingw32-SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-SDL/devel/mingw32-SDL.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mingw32-SDL.spec 28 Apr 2009 11:11:13 -0000 1.4 +++ mingw32-SDL.spec 25 Jul 2009 12:13:54 -0000 1.5 @@ -6,7 +6,7 @@ Name: mingw32-SDL Version: 1.2.13 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW Windows port of SDL cross-platform multimedia library License: LGPLv2+ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 29 2009 Richard W.M. Jones - 1.2.13-7 - Add runtime Requires mingw32-iconv (kraxel). From jkeating at fedoraproject.org Sat Jul 25 12:14:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:14:09 +0000 (UTC) Subject: rpms/mingw32-atk/devel mingw32-atk.spec,1.5,1.6 Message-ID: <20090725121409.B5B4911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-atk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15293 Modified Files: mingw32-atk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-atk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-atk/devel/mingw32-atk.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-atk.spec 10 Jun 2009 20:58:00 -0000 1.5 +++ mingw32-atk.spec 25 Jul 2009 12:14:09 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-atk Version: 1.26.0 -Release: 0%{?dist} +Release: 1%{?dist} Summary: MinGW Windows Atk library License: LGPLv2+ @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.26.0-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Erik van Pienbroek - 1.26.0-1 - Update to 1.26.0 - Use %%global instead of %%define From jkeating at fedoraproject.org Sat Jul 25 12:14:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:14:24 +0000 (UTC) Subject: rpms/mingw32-binutils/devel mingw32-binutils.spec,1.8,1.9 Message-ID: <20090725121424.9101411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15492 Modified Files: mingw32-binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-binutils/devel/mingw32-binutils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mingw32-binutils.spec 10 Mar 2009 13:50:31 -0000 1.8 +++ mingw32-binutils.spec 25 Jul 2009 12:14:24 -0000 1.9 @@ -1,6 +1,6 @@ Name: mingw32-binutils Version: 2.19.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MinGW Windows binutils License: GPLv2+ and LGPLv2+ and GPLv3+ and LGPLv3+ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.19.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Richard W.M. Jones - 2.19.1-4 - Switch to using upstream (GNU) binutils 2.19.1. It's exactly the same as the MinGW version now. From jkeating at fedoraproject.org Sat Jul 25 12:14:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:14:39 +0000 (UTC) Subject: rpms/mingw32-boost/devel mingw32-boost.spec,1.3,1.4 Message-ID: <20090725121439.3893711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-boost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15639 Modified Files: mingw32-boost.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-boost.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-boost/devel/mingw32-boost.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-boost.spec 25 Jun 2009 10:37:34 -0000 1.3 +++ mingw32-boost.spec 25 Jul 2009 12:14:39 -0000 1.4 @@ -17,7 +17,7 @@ Name: mingw32-%{name1} Version: %{verdot} -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows port of Boost C++ Libraries License: Boost @@ -281,6 +281,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.39.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 1.39.0-2 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:15:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:15:09 +0000 (UTC) Subject: rpms/mingw32-cairo/devel mingw32-cairo.spec,1.6,1.7 Message-ID: <20090725121509.5A0DE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15991 Modified Files: mingw32-cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-cairo/devel/mingw32-cairo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mingw32-cairo.spec 14 Apr 2009 19:25:29 -0000 1.6 +++ mingw32-cairo.spec 25 Jul 2009 12:15:08 -0000 1.7 @@ -6,7 +6,7 @@ Name: mingw32-cairo Version: 1.8.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows Cairo library License: LGPLv2 or MPLv1.1 @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 3 2009 Erik van Pienbroek - 1.8.6-2 - Fixed %%defattr line - Added -static subpackage From jkeating at fedoraproject.org Sat Jul 25 12:14:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:14:52 +0000 (UTC) Subject: rpms/mingw32-bzip2/devel mingw32-bzip2.spec,1.3,1.4 Message-ID: <20090725121452.9003411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15806 Modified Files: mingw32-bzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-bzip2/devel/mingw32-bzip2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-bzip2.spec 26 Feb 2009 00:55:56 -0000 1.3 +++ mingw32-bzip2.spec 25 Jul 2009 12:14:52 -0000 1.4 @@ -11,7 +11,7 @@ Name: mingw32-bzip2 Version: 1.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW port of bzip2 file compression utility License: BSD @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:15:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:15:30 +0000 (UTC) Subject: rpms/mingw32-cairomm/devel mingw32-cairomm.spec,1.3,1.4 Message-ID: <20090725121530.8E74911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-cairomm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16197 Modified Files: mingw32-cairomm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-cairomm.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-cairomm/devel/mingw32-cairomm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-cairomm.spec 25 Jun 2009 11:04:44 -0000 1.3 +++ mingw32-cairomm.spec 25 Jul 2009 12:15:30 -0000 1.4 @@ -7,7 +7,7 @@ Name: mingw32-cairomm Version: 1.8.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW Windows C++ API for the cairo graphics library License: LGPLv2+ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 1.8.0-3 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:15:47 +0000 (UTC) Subject: rpms/mingw32-crossreport/devel mingw32-crossreport.spec,1.5,1.6 Message-ID: <20090725121547.0D7C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-crossreport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16366 Modified Files: mingw32-crossreport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-crossreport.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-crossreport/devel/mingw32-crossreport.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-crossreport.spec 26 Feb 2009 01:00:53 -0000 1.5 +++ mingw32-crossreport.spec 25 Jul 2009 12:15:46 -0000 1.6 @@ -1,6 +1,6 @@ Name: mingw32-crossreport Version: 6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Analysis tool to help cross-compilation to Windows License: GPLv2+ @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:16:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:16:03 +0000 (UTC) Subject: rpms/mingw32-dlfcn/devel mingw32-dlfcn.spec,1.3,1.4 Message-ID: <20090725121603.1803D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-dlfcn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16545 Modified Files: mingw32-dlfcn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-dlfcn.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-dlfcn/devel/mingw32-dlfcn.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-dlfcn.spec 26 Feb 2009 01:02:03 -0000 1.3 +++ mingw32-dlfcn.spec 25 Jul 2009 12:16:02 -0000 1.4 @@ -10,7 +10,7 @@ Name: mingw32-dlfcn Version: 0 -Release: 0.5.%{alphatag}%{?dist} +Release: 0.6.%{alphatag}%{?dist} Summary: Implements a wrapper for dlfcn (dlopen dlclose dlsym dlerror) License: LGPLv2+ @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.6.r11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.5.r11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:16:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:16:17 +0000 (UTC) Subject: rpms/mingw32-expat/devel mingw32-expat.spec,1.1,1.2 Message-ID: <20090725121617.ED52411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-expat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16733 Modified Files: mingw32-expat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-expat.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-expat/devel/mingw32-expat.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-expat.spec 10 Mar 2009 22:45:32 -0000 1.1 +++ mingw32-expat.spec 25 Jul 2009 12:16:17 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-expat Version: 2.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MinGW Windows port of expat XML parser library License: MIT @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Richard W.M. Jones - 2.0.1-4 - Remove +x permissions on COPYING file. From jkeating at fedoraproject.org Sat Jul 25 12:16:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:16:43 +0000 (UTC) Subject: rpms/mingw32-filesystem/devel mingw32-filesystem.spec,1.25,1.26 Message-ID: <20090725121643.372E611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16966 Modified Files: mingw32-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-filesystem/devel/mingw32-filesystem.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- mingw32-filesystem.spec 24 Jun 2009 17:27:24 -0000 1.25 +++ mingw32-filesystem.spec 25 Jul 2009 12:16:43 -0000 1.26 @@ -2,7 +2,7 @@ Name: mingw32-filesystem Version: 52 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW base filesystem and environment Group: Development/Libraries @@ -165,6 +165,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 52-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Erik van Pienbroek - 52-2 - Updated ChangeLog comment from previous version as the RPM variable __debug_install_post needs to be overridden instead of __os_install_post From jkeating at fedoraproject.org Sat Jul 25 12:16:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:16:59 +0000 (UTC) Subject: rpms/mingw32-fontconfig/devel mingw32-fontconfig.spec,1.1,1.2 Message-ID: <20090725121659.01D8711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-fontconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17138 Modified Files: mingw32-fontconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-fontconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-fontconfig/devel/mingw32-fontconfig.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-fontconfig.spec 10 Mar 2009 22:45:39 -0000 1.1 +++ mingw32-fontconfig.spec 25 Jul 2009 12:16:58 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-fontconfig Version: 2.6.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: MinGW Windows Fontconfig library License: MIT @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_datadir}/doc/fontconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 20 2009 Richard W.M. Jones - 2.6.0-9 - Rebuild for mingw32-gcc 4.4 From jkeating at fedoraproject.org Sat Jul 25 12:17:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:17:14 +0000 (UTC) Subject: rpms/mingw32-freetype/devel mingw32-freetype.spec,1.3,1.4 Message-ID: <20090725121714.EA1F111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-freetype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17305 Modified Files: mingw32-freetype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-freetype.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-freetype/devel/mingw32-freetype.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-freetype.spec 26 Feb 2009 01:03:57 -0000 1.3 +++ mingw32-freetype.spec 25 Jul 2009 12:17:14 -0000 1.4 @@ -17,7 +17,7 @@ Name: mingw32-freetype Version: 2.3.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Free and portable font rendering engine License: FTL or GPLv2+ @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:17:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:17:33 +0000 (UTC) Subject: rpms/mingw32-gcc/devel mingw32-gcc.spec,1.5,1.6 Message-ID: <20090725121733.0685311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17499 Modified Files: mingw32-gcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gcc/devel/mingw32-gcc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-gcc.spec 23 Mar 2009 10:56:41 -0000 1.5 +++ mingw32-gcc.spec 25 Jul 2009 12:17:32 -0000 1.6 @@ -5,7 +5,7 @@ Name: mingw32-gcc Version: 4.4.0 -Release: 0.7%{?dist} +Release: 0.8%{?dist} Summary: MinGW Windows cross-compiler (GCC) for C License: GPLv3+ and GPLv2+ with exceptions @@ -296,6 +296,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.4.0-0.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Richard W.M. Jones - 4.4.0-0.7 - New native Fedora version gcc 4.4.0 20090319 svn 144967. - Enable _smp_mflags. From jkeating at fedoraproject.org Sat Jul 25 12:17:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:17:49 +0000 (UTC) Subject: rpms/mingw32-gdbm/devel mingw32-gdbm.spec,1.4,1.5 Message-ID: <20090725121749.1D6F311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gdbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17662 Modified Files: mingw32-gdbm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gdbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gdbm/devel/mingw32-gdbm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mingw32-gdbm.spec 26 Feb 2009 01:06:26 -0000 1.4 +++ mingw32-gdbm.spec 25 Jul 2009 12:17:48 -0000 1.5 @@ -6,7 +6,7 @@ Name: mingw32-gdbm Version: 1.8.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MinGW port of GNU database routines License: GPLv2+ @@ -118,6 +118,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:18:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:18:04 +0000 (UTC) Subject: rpms/mingw32-gettext/devel mingw32-gettext.spec,1.5,1.6 Message-ID: <20090725121804.CD33111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17817 Modified Files: mingw32-gettext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gettext/devel/mingw32-gettext.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-gettext.spec 14 Apr 2009 19:26:46 -0000 1.5 +++ mingw32-gettext.spec 25 Jul 2009 12:18:04 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-gettext Version: 0.17 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GNU libraries and utilities for producing multi-lingual messages License: GPLv2+ and LGPLv2+ @@ -140,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 3 2009 Erik van Pienbroek - 0.17-11 - Added -static subpackage From jkeating at fedoraproject.org Sat Jul 25 12:18:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:18:19 +0000 (UTC) Subject: rpms/mingw32-glib2/devel mingw32-glib2.spec,1.11,1.12 Message-ID: <20090725121819.BE49811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-glib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17982 Modified Files: mingw32-glib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-glib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-glib2/devel/mingw32-glib2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mingw32-glib2.spec 6 Jul 2009 18:06:51 -0000 1.11 +++ mingw32-glib2.spec 25 Jul 2009 12:18:19 -0000 1.12 @@ -7,7 +7,7 @@ Name: mingw32-glib2 Version: 2.21.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows GLib2 library License: LGPLv2+ @@ -176,6 +176,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.21.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Erik van Pienbroek - 2.21.3-1 - Update to 2.21.3 - Drop upstreamed patch From jkeating at fedoraproject.org Sat Jul 25 12:18:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:18:34 +0000 (UTC) Subject: rpms/mingw32-glibmm24/devel mingw32-glibmm24.spec,1.5,1.6 Message-ID: <20090725121834.5451011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-glibmm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18136 Modified Files: mingw32-glibmm24.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-glibmm24.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-glibmm24/devel/mingw32-glibmm24.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-glibmm24.spec 25 Jun 2009 10:43:12 -0000 1.5 +++ mingw32-glibmm24.spec 25 Jul 2009 12:18:34 -0000 1.6 @@ -7,7 +7,7 @@ Name: mingw32-glibmm24 Version: 2.20.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MinGW Windows C++ interface for GTK2 (a GUI library for X) License: LGPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.20.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.20.0-4 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:18:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:18:49 +0000 (UTC) Subject: rpms/mingw32-gnutls/devel mingw32-gnutls.spec,1.1,1.2 Message-ID: <20090725121849.623A711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gnutls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18283 Modified Files: mingw32-gnutls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gnutls.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gnutls/devel/mingw32-gnutls.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-gnutls.spec 9 Mar 2009 17:46:15 -0000 1.1 +++ mingw32-gnutls.spec 25 Jul 2009 12:18:49 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-gnutls Version: 2.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW GnuTLS TLS/SSL encryption library License: GPLv3+ and LGPLv2+ @@ -130,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Richard W.M. Jones - 2.6.4-1 - New Fedora native version 2.6.4. From jkeating at fedoraproject.org Sat Jul 25 12:19:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:19:03 +0000 (UTC) Subject: rpms/mingw32-gtk-vnc/devel mingw32-gtk-vnc.spec,1.3,1.4 Message-ID: <20090725121903.C7D1111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gtk-vnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18424 Modified Files: mingw32-gtk-vnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gtk-vnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gtk-vnc/devel/mingw32-gtk-vnc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-gtk-vnc.spec 6 Mar 2009 11:01:43 -0000 1.3 +++ mingw32-gtk-vnc.spec 25 Jul 2009 12:19:03 -0000 1.4 @@ -8,7 +8,7 @@ Name: mingw32-gtk-vnc Version: 0.3.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: MinGW Windows port of VNC client GTK widget License: LGPLv2+ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Daniel P. Berrange - 0.3.8-5 - Fix relative mouse handling to avoid 'invisible wall' From jkeating at fedoraproject.org Sat Jul 25 12:19:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:19:17 +0000 (UTC) Subject: rpms/mingw32-gtk2/devel mingw32-gtk2.spec,1.7,1.8 Message-ID: <20090725121917.BD54D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18569 Modified Files: mingw32-gtk2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gtk2/devel/mingw32-gtk2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mingw32-gtk2.spec 10 Jun 2009 19:57:01 -0000 1.7 +++ mingw32-gtk2.spec 25 Jul 2009 12:19:17 -0000 1.8 @@ -6,7 +6,7 @@ Name: mingw32-gtk2 Version: 2.17.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows Gtk2 library License: LGPLv2+ @@ -324,6 +324,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/gtk-2.0/modules/libgail.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.17.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 20 2009 Erik van Pienbroek - 2.17.1-1 - Update to 2.17.1 - Use %%global instead of %%define From jkeating at fedoraproject.org Sat Jul 25 12:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:19:31 +0000 (UTC) Subject: rpms/mingw32-gtkmm24/devel mingw32-gtkmm24.spec,1.2,1.3 Message-ID: <20090725121931.95A7F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-gtkmm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18744 Modified Files: mingw32-gtkmm24.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-gtkmm24.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-gtkmm24/devel/mingw32-gtkmm24.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-gtkmm24.spec 25 Jun 2009 11:04:50 -0000 1.2 +++ mingw32-gtkmm24.spec 25 Jul 2009 12:19:31 -0000 1.3 @@ -7,7 +7,7 @@ Name: mingw32-gtkmm24 Version: 2.16.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows C++ interface for GTK2 (a GUI library for X) License: LGPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.16.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.16.0-2 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:19:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:19:48 +0000 (UTC) Subject: rpms/mingw32-iconv/devel mingw32-iconv.spec,1.3,1.4 Message-ID: <20090725121948.9477311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-iconv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18927 Modified Files: mingw32-iconv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-iconv.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-iconv/devel/mingw32-iconv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-iconv.spec 26 Feb 2009 01:11:38 -0000 1.3 +++ mingw32-iconv.spec 25 Jul 2009 12:19:48 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-iconv Version: 1.12 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GNU libraries and utilities for character set conversion License: GPLv2+ and LGPLv2+ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From cwickert at fedoraproject.org Sat Jul 25 12:20:02 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Sat, 25 Jul 2009 12:20:02 +0000 (UTC) Subject: rpms/rednotebook/devel .cvsignore, 1.14, 1.15 rednotebook.spec, 1.14, 1.15 sources, 1.14, 1.15 Message-ID: <20090725122002.AF63311C049E@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/rednotebook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19071 Modified Files: .cvsignore rednotebook.spec sources Log Message: * Sat Jul 25 2009 Christoph Wickert - 0.8.1-1 - Updated to new upstream version 0.8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 22 Jul 2009 17:12:42 -0000 1.14 +++ .cvsignore 25 Jul 2009 12:20:02 -0000 1.15 @@ -1 +1 @@ -rednotebook-0.8.0.tar.gz +rednotebook-0.8.1.tar.gz Index: rednotebook.spec =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/rednotebook.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- rednotebook.spec 22 Jul 2009 17:36:09 -0000 1.14 +++ rednotebook.spec 25 Jul 2009 12:20:02 -0000 1.15 @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: rednotebook -Version: 0.8.0 +Version: 0.8.1 Release: 1%{?dist} Summary: A desktop diary @@ -70,8 +70,11 @@ gtk-update-icon-cache %{_datadir}/icons/ %{python_sitelib}/%{name}/ %{python_sitelib}/%{name}*.egg-info - %changelog +* Sat Jul 25 2009 Christoph Wickert - 0.8.1-1 +- Updated to new upstream version 0.8.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Fabian Affolter - 0.8.0-1 - Updated BR python - Icon cache update added Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rednotebook/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 22 Jul 2009 17:12:42 -0000 1.14 +++ sources 25 Jul 2009 12:20:02 -0000 1.15 @@ -1 +1 @@ -aa5ed8dd54b21b55d9f8db54c6319965 rednotebook-0.8.0.tar.gz +de46ca9d09cfd9553bf1888419cce592 rednotebook-0.8.1.tar.gz From jkeating at fedoraproject.org Sat Jul 25 12:20:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:20:04 +0000 (UTC) Subject: rpms/mingw32-jasper/devel mingw32-jasper.spec,1.1,1.2 Message-ID: <20090725122004.0167911C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-jasper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19093 Modified Files: mingw32-jasper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-jasper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-jasper/devel/mingw32-jasper.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-jasper.spec 13 Mar 2009 19:48:02 -0000 1.1 +++ mingw32-jasper.spec 25 Jul 2009 12:20:03 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-jasper Version: 1.900.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW Windows Jasper library License: JasPer @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.900.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Richard W.M. Jones - 1.900.1-8 - Fix defattr line. - Remove the enable-shared patch, and just use --enable-shared on From jkeating at fedoraproject.org Sat Jul 25 12:20:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:20:20 +0000 (UTC) Subject: rpms/mingw32-libgcrypt/devel mingw32-libgcrypt.spec,1.3,1.4 Message-ID: <20090725122020.E3D5E11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libgcrypt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19350 Modified Files: mingw32-libgcrypt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libgcrypt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libgcrypt/devel/mingw32-libgcrypt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libgcrypt.spec 26 Feb 2009 01:12:41 -0000 1.3 +++ mingw32-libgcrypt.spec 25 Jul 2009 12:20:19 -0000 1.4 @@ -8,7 +8,7 @@ Name: mingw32-libgcrypt Version: 1.4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW Windows gcrypt encryption library License: LGPLv2+ and GPLv2+ @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:20:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:20:36 +0000 (UTC) Subject: rpms/mingw32-libglade2/devel mingw32-libglade2.spec,1.3,1.4 Message-ID: <20090725122036.2D55011C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libglade2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19525 Modified Files: mingw32-libglade2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libglade2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libglade2/devel/mingw32-libglade2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libglade2.spec 25 Jun 2009 12:54:13 -0000 1.3 +++ mingw32-libglade2.spec 25 Jul 2009 12:20:35 -0000 1.4 @@ -7,7 +7,7 @@ Name: mingw32-libglade2 Version: 2.6.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW Windows Libglade2 library License: LGPLv2+ @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/libglade-2.0.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.6.4-3 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:21:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:21:00 +0000 (UTC) Subject: rpms/mingw32-libglademm24/devel mingw32-libglademm24.spec,1.3,1.4 Message-ID: <20090725122100.D665E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libglademm24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19763 Modified Files: mingw32-libglademm24.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libglademm24.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libglademm24/devel/mingw32-libglademm24.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libglademm24.spec 25 Jun 2009 11:08:19 -0000 1.3 +++ mingw32-libglademm24.spec 25 Jul 2009 12:21:00 -0000 1.4 @@ -9,7 +9,7 @@ Name: mingw32-%{name1} Version: 2.6.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW Windows C++ wrapper for libglade @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.6.7-7 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:21:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:21:16 +0000 (UTC) Subject: rpms/mingw32-libgnurx/devel mingw32-libgnurx.spec,1.4,1.5 Message-ID: <20090725122116.CFD4611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libgnurx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19961 Modified Files: mingw32-libgnurx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libgnurx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libgnurx/devel/mingw32-libgnurx.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mingw32-libgnurx.spec 22 Jun 2009 18:10:04 -0000 1.4 +++ mingw32-libgnurx.spec 25 Jul 2009 12:21:15 -0000 1.5 @@ -7,7 +7,7 @@ Name: mingw32-libgnurx Version: 2.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: MinGW Regex library License: LGPLv2+ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Erik van Pienbroek - 2.5.1-5 - The wrong RPM variable was overriden for -debuginfo support. Should be okay now From jkeating at fedoraproject.org Sat Jul 25 12:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:21:32 +0000 (UTC) Subject: rpms/mingw32-libgpg-error/devel mingw32-libgpg-error.spec,1.3,1.4 Message-ID: <20090725122132.BC4B611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libgpg-error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20139 Modified Files: mingw32-libgpg-error.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libgpg-error.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libgpg-error/devel/mingw32-libgpg-error.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libgpg-error.spec 26 Feb 2009 01:13:41 -0000 1.3 +++ mingw32-libgpg-error.spec 25 Jul 2009 12:21:32 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-libgpg-error Version: 1.6 -Release: 11%{?dist} +Release: 12%{?dist} Summary: MinGW Windows GnuPGP error library License: LGPLv2+ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_datadir}/common-lisp/source/gpg-error/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:21:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:21:46 +0000 (UTC) Subject: rpms/mingw32-libidn/devel mingw32-libidn.spec,1.1,1.2 Message-ID: <20090725122146.273C911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libidn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20273 Modified Files: mingw32-libidn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libidn.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libidn/devel/mingw32-libidn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-libidn.spec 24 May 2009 12:32:38 -0000 1.1 +++ mingw32-libidn.spec 25 Jul 2009 12:21:45 -0000 1.2 @@ -10,7 +10,7 @@ Name: mingw32-libidn Version: 1.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows Internationalized Domain Name support library License: LGPLv2+ @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/libidn.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Erik van Pienbroek - 1.14-2 - Use %%global instead of %%define - Fixed the Source URL From jkeating at fedoraproject.org Sat Jul 25 12:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:21:59 +0000 (UTC) Subject: rpms/mingw32-libjpeg/devel mingw32-libjpeg.spec,1.3,1.4 Message-ID: <20090725122159.C5DAF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libjpeg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20427 Modified Files: mingw32-libjpeg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libjpeg.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libjpeg/devel/mingw32-libjpeg.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libjpeg.spec 26 Feb 2009 01:14:41 -0000 1.3 +++ mingw32-libjpeg.spec 25 Jul 2009 12:21:59 -0000 1.4 @@ -10,7 +10,7 @@ Name: mingw32-libjpeg Version: 6b -Release: 10%{?dist} +Release: 11%{?dist} Summary: MinGW Windows Libjpeg library License: IJG @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6b-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6b-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:22:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:22:13 +0000 (UTC) Subject: rpms/mingw32-libltdl/devel mingw32-libltdl.spec,1.2,1.3 Message-ID: <20090725122213.A924711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libltdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20581 Modified Files: mingw32-libltdl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libltdl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libltdl/devel/mingw32-libltdl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libltdl.spec 26 Feb 2009 01:15:39 -0000 1.2 +++ mingw32-libltdl.spec 25 Jul 2009 12:22:13 -0000 1.3 @@ -11,7 +11,7 @@ Summary: Runtime libraries for GNU Libtool Dynamic Module Loader Name: mingw32-libltdl Version: 1.5.26 -Release: 13%{?dist} +Release: 14%{?dist} Group: System Environment/Libraries # Even though the source package contains files under # "GPLv2+ and LGPLv2+ and GFDL", the binary RPM only ships LGPLv2+ code. @@ -97,6 +97,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.26-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.26-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 12:22:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:22:30 +0000 (UTC) Subject: rpms/mingw32-liboil/devel mingw32-liboil.spec,1.2,1.3 Message-ID: <20090725122230.8145A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-liboil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20752 Modified Files: mingw32-liboil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-liboil.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-liboil/devel/mingw32-liboil.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-liboil.spec 26 Mar 2009 11:46:21 -0000 1.2 +++ mingw32-liboil.spec 25 Jul 2009 12:22:30 -0000 1.3 @@ -7,7 +7,7 @@ Summary: Library of Optimized Inner Loops, CPU optimized functions Name: mingw32-liboil Version: 0.3.16 -Release: 1%{?dist} +Release: 2%{?dist} # See COPYING which details everything, various BSD licenses apply License: BSD Group: System Environment/Libraries @@ -101,6 +101,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 26 2009 Levente Farkas - 0.3.16-1 - add mingw32 changes From jkeating at fedoraproject.org Sat Jul 25 12:22:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:22:45 +0000 (UTC) Subject: rpms/mingw32-libp11/devel mingw32-libp11.spec,1.1,1.2 Message-ID: <20090725122245.2966D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libp11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20883 Modified Files: mingw32-libp11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libp11.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libp11/devel/mingw32-libp11.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-libp11.spec 16 Apr 2009 08:25:16 -0000 1.1 +++ mingw32-libp11.spec 25 Jul 2009 12:22:44 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-libp11 Version: 0.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MingGW Windows libp11 library Group: Development/Libraries @@ -68,5 +68,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Kalev Lember - 0.2.4-1 - Initial RPM release. From jkeating at fedoraproject.org Sat Jul 25 12:22:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:22:59 +0000 (UTC) Subject: rpms/mingw32-libpng/devel mingw32-libpng.spec,1.5,1.6 Message-ID: <20090725122259.5D68E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libpng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21035 Modified Files: mingw32-libpng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libpng.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libpng/devel/mingw32-libpng.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-libpng.spec 9 Jun 2009 12:52:51 -0000 1.5 +++ mingw32-libpng.spec 25 Jul 2009 12:22:59 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-libpng Version: 1.2.37 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows Libpng library License: zlib @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Richard W.M. Jones - 1.2.37-1 - New upstream version 1.2.37 to fix SECURITY bug RHBZ#504782. From jkeating at fedoraproject.org Sat Jul 25 12:23:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:23:13 +0000 (UTC) Subject: rpms/mingw32-libsigc++20/devel mingw32-libsigc++20.spec,1.3,1.4 Message-ID: <20090725122313.AC8E511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libsigc++20/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21175 Modified Files: mingw32-libsigc++20.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libsigc++20.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libsigc++20/devel/mingw32-libsigc++20.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libsigc++20.spec 23 Jun 2009 09:29:04 -0000 1.3 +++ mingw32-libsigc++20.spec 25 Jul 2009 12:23:13 -0000 1.4 @@ -7,7 +7,7 @@ Name: mingw32-libsigc++20 Version: 2.2.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW Windows port of the typesafe signal framework for C++ License: LGPLv2+ @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.2.2-8 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 12:23:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 12:23:29 +0000 (UTC) Subject: rpms/mingw32-libsoup/devel mingw32-libsoup.spec,1.2,1.3 Message-ID: <20090725122329.0250311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21346 Modified Files: mingw32-libsoup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libsoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libsoup/devel/mingw32-libsoup.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libsoup.spec 10 Jun 2009 21:29:24 -0000 1.2 +++ mingw32-libsoup.spec 25 Jul 2009 12:23:28 -0000 1.3 @@ -6,7 +6,7 @@ Name: mingw32-libsoup Version: 2.27.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW library for HTTP and XML-RPC functionality License: LGPLv2 @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Erik van Pienbroek - 2.27.1-1 - Update to 2.27.1 From jens at fedoraproject.org Sat Jul 25 12:37:43 2009 From: jens at fedoraproject.org (jens) Date: Sat, 25 Jul 2009 12:37:43 +0000 (UTC) Subject: rpms/miredo/devel .cvsignore, 1.2, 1.3 miredo.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090725123743.BCFBA11C02BC@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26565 Modified Files: .cvsignore miredo.spec sources Log Message: Update to 1.1.7-2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jul 2009 05:21:48 -0000 1.2 +++ .cvsignore 25 Jul 2009 12:37:43 -0000 1.3 @@ -1 +1 @@ -miredo-1.1.6.tar.bz2 +miredo-1.1.7.tar.bz2 Index: miredo.spec =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/miredo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- miredo.spec 1 Jul 2009 05:21:48 -0000 1.1 +++ miredo.spec 25 Jul 2009 12:37:43 -0000 1.2 @@ -1,6 +1,6 @@ # vim: expandtab Name: miredo -Version: 1.1.6 +Version: 1.1.7 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs @@ -10,9 +10,6 @@ URL: http://www.simphalempin. Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init -%if 0%{?rhel} -Source3: isatapd.init -%endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -23,26 +20,61 @@ Requires(post): chkconfig, /sbin/ldcon Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig - %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo -server. It is meant to provide IPv6 connectivity to hosts behind NAT +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). +%package libs +Summary: Tunneling of IPv6 over UDP through NATs +Group: Applications/Internet + +%description libs +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). It can serve +either as a Teredo client, a stand-alone Teredo relay, or a Teredo +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT +devices, most of which do not support IPv6, and not even +IPv6-over-IPv4 (including 6to4). +This libs package provides the files necessary for both server and client. + %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. +%package server +Summary: Tunneling server for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +%description server +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the server +part of miredo. Most people will need only the client part. + +%package client +Summary: Tunneling client for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} = 1.1.6-2 + + +%description client +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the client +part of miredo. Most people only need the client part. %prep %setup -q @@ -52,8 +84,9 @@ you will need to install %{name}-devel. %configure \ --disable-static \ --disable-rpath \ - --with-Judy \ - --enable-miredo-user + --enable-miredo-user \ + --without-Judy + # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -69,84 +102,64 @@ mv %{buildroot}%{_docdir}/miredo/example mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server -%if 0%{?rhel} -install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd -%endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf -%pre +%pre libs getent group miredo >/dev/null || groupadd -r miredo -getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ - -c "Miredo Daemon" miredo +getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo \ + -s /sbin/nologin -c "Miredo Daemon" miredo exit 0 -%post -/sbin/ldconfig +%post libs -p /sbin/ldconfig + +%post client /sbin/chkconfig --add miredo-client + +%post server /sbin/chkconfig --add miredo-server -%if 0%{?rhel} -/sbin/chkconfig --add isatapd -%endif -%preun +%preun client if [ $1 = 0 ] ; then - %if 0%{?rhel} - /sbin/service isatapd stop >/dev/null 2>&1 - %endif - /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client +fi + +%preun server +if [ $1 = 0 ] ; then + /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-server - %if 0%{?rhel} - /sbin/chkconfig --del isatapd - %endif fi -%postun -/sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%postun client if [ "$1" -ge "1" ] ; then - %if 0%{?rhel} - /sbin/service isatapd condrestart >/dev/null 2>&1 || : - %endif - /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi +%postun server +if [ "$1" -ge "1" ] ; then + /sbin/service miredo-server condrestart >/dev/null 2>&1 || : +fi + %clean rm -rf %{buildroot} -%files -f %{name}.lang +%files libs -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* -%doc %{_mandir}/man?/miredo* -%doc %{_mandir}/man1/teredo-mire* +#%doc %{_mandir}/man?/miredo* %dir %{_sysconfdir}/miredo -%config(noreplace) %{_sysconfdir}/miredo/miredo.conf -%config(noreplace) %{_sysconfdir}/miredo/client-hook -%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf -%{_sbindir}/miredo -%{_sbindir}/miredo-checkconf -%{_sbindir}/miredo-server -%{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* -%{_initrddir}/miredo-client -%{_initrddir}/miredo-server - -%if 0%{?rhel} -%{_sbindir}/isatapd -%doc %{_mandir}/man5/isatapd.conf* -%doc %{_mandir}/man8/isatapd* -%{_initrddir}/isatapd -%endif - +%{_libdir}/miredo/miredo-privproc %files devel %defattr(-,root,root,-) @@ -155,8 +168,36 @@ rm -rf %{buildroot} %{_libdir}/libteredo.so %{_libdir}/libtun6.so +%files server +%defattr(-,root,root,-) +%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf +%{_bindir}/teredo-mire +%{_sbindir}/miredo-server +%{_sbindir}/miredo-checkconf +%{_initrddir}/miredo-server +%doc %{_mandir}/man1/teredo-mire* +%doc %{_mandir}/man?/miredo-server* +%doc %{_mandir}/man?/miredo-checkconf* + + +%files client +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/miredo/miredo.conf +%config(noreplace) %{_sysconfdir}/miredo/client-hook +%{_initrddir}/miredo-client +%{_sbindir}/miredo +%doc %{_mandir}/man?/miredo.* + %changelog +* Sun Jul 19 2009 Jens Kuehnel 1.1.7-2 +- rename miredo to miredo-libs +- fixes EL + +* Thu Jul 14 2009 Jens Kuehnel 1.1.7-1 +- split into server and client package +- update to upstream 1.1.7 + * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jul 2009 05:21:48 -0000 1.2 +++ sources 25 Jul 2009 12:37:43 -0000 1.3 @@ -1 +1 @@ -bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 +4fb5e7df6a6255528e4c5380401ad3ea miredo-1.1.7.tar.bz2 From mtasaka at fedoraproject.org Sat Jul 25 13:09:33 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 13:09:33 +0000 (UTC) Subject: rpms/xscreensaver/devel xscreensaver-5.08-gcc441-aliasing.patch, NONE, 1.1 xscreensaver-5.08-new-xextproto.patch, NONE, 1.1 xscreensaver.spec, 1.91, 1.92 Message-ID: <20090725130933.DB86111C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/xscreensaver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7567 Modified Files: xscreensaver.spec Added Files: xscreensaver-5.08-gcc441-aliasing.patch xscreensaver-5.08-new-xextproto.patch Log Message: * Sat Jul 25 2009 Mamoru Tasaka - 1:5.08-11 - Build fix for new xextproto (libXext 1.0.99.3) - Fix for breaking strict aliasing rule - Again change %default_text xscreensaver-5.08-gcc441-aliasing.patch: timers.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- NEW FILE xscreensaver-5.08-gcc441-aliasing.patch --- --- xscreensaver-5.08/driver/timers.c.aliasing 2009-07-25 17:00:59.000000000 +0900 +++ xscreensaver-5.08/driver/timers.c 2009-07-25 20:50:30.000000000 +0900 @@ -1020,13 +1020,20 @@ /* The Resize and Rotate extension sends an event when the size, rotation, or refresh rate of any screen has changed. */ +#if 0 XRRScreenChangeNotifyEvent *xrr_event = (XRRScreenChangeNotifyEvent *) &event; +#endif if (p->verbose_p) { /* XRRRootToScreen is in Xrandr.h 1.4, 2001/06/07 */ - int screen = XRRRootToScreen (si->dpy, xrr_event->window); + + /* Fix for the warning about breaking strict aliasing rule. + Note that the first 5 entries of struct XAnyEvent + and struct XRRScreenChangeNotifyEvent are the same. + */ + int screen = XRRRootToScreen (si->dpy, event.xany.window); fprintf (stderr, "%s: %d: screen change event received\n", blurb(), screen); } xscreensaver-5.08-new-xextproto.patch: dpms.c | 1 - 1 file changed, 1 deletion(-) --- NEW FILE xscreensaver-5.08-new-xextproto.patch --- --- xscreensaver-5.08/driver/dpms.c.newproto 2005-03-22 11:07:21.000000000 +0900 +++ xscreensaver-5.08/driver/dpms.c 2009-07-25 16:53:09.000000000 +0900 @@ -55,7 +55,6 @@ # include # include -# include /* Why this crap is not in a header file somewhere, I have no idea. Losers! */ Index: xscreensaver.spec =================================================================== RCS file: /cvs/extras/rpms/xscreensaver/devel/xscreensaver.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- xscreensaver.spec 24 Jul 2009 20:15:48 -0000 1.91 +++ xscreensaver.spec 25 Jul 2009 13:09:33 -0000 1.92 @@ -9,7 +9,7 @@ %define extrarel %{nil} -%define default_text %{_datadir}/doc/HTML/README-Accessibility +%define default_text %{_datadir}/doc/HTML/readme/en_US/README-en_US.txt %define pam_ver 0.80-7 %define autoconf_ver 2.53 @@ -46,7 +46,15 @@ Patch51: xscreensaver-5.08-phosp # bug 504912, must be reported to upstream # ref: gentoo http://bugs.gentoo.org/show_bug.cgi?id=249680 # xscreensaver crashes when randr reportes 0 rroi->ncrtc -Patch52: xscreensaver-5.08-randr-ncrtc-from-gentoo.patch +Patch52: xscreensaver-5.08-randr-ncrtc-from-gentoo.patch +# +# Not sent to upstream yet, must do later +# +# Fix for Xext 1.0.99.3 +# http://lists.freedesktop.org/archives/xorg/2009-July/046521.html +Patch53: xscreensaver-5.08-new-xextproto.patch +# Fix warnings for breaking strict aliasing rule +Patch54: xscreensaver-5.08-gcc441-aliasing.patch Requires: xscreensaver-base = %{epoch}:%{version}-%{release} Requires: xscreensaver-extras = %{epoch}:%{version}-%{release} Requires: xscreensaver-gl-extras = %{epoch}:%{version}-%{release} @@ -202,6 +210,8 @@ This package contains some test programs %patch50 -p1 -b .po %patch51 -p1 -b .phosphor %patch52 -p0 -b .randr_ncrtc +%patch53 -p1 -b .newxextproto +%patch54 -p1 -b .aliasing change_option(){ set +x @@ -653,7 +663,9 @@ exit 0 %changelog * Sat Jul 25 2009 Mamoru Tasaka - 1:5.08-11 -- F-12: Mass rebuild +- Build fix for new xextproto (libXext 1.0.99.3) +- Fix for breaking strict aliasing rule +- Again change %%default_text * Thu Jun 11 2009 Mamoru Tasaka - 1:5.08-10 - Fix crash on startup when randr reports no rroi->ncrtc From pbrobinson at fedoraproject.org Sat Jul 25 13:23:40 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sat, 25 Jul 2009 13:23:40 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.9,1.10 Message-ID: <20090725132340.E851711C02BC@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12990 Modified Files: nbtk.spec Log Message: - New upstream 0.16.3 release Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- nbtk.spec 25 Jul 2009 11:17:59 -0000 1.9 +++ nbtk.spec 25 Jul 2009 13:23:40 -0000 1.10 @@ -1,6 +1,6 @@ Name: nbtk -Version: 0.14.5 -Release: 3%{?dist} +Version: 0.16.3 +Release: 1%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -10,10 +10,11 @@ Source0: http://git.moblin.org/cg BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel >= 0.9.4 +BuildRequires: clutter-imcontext-devel BuildRequires: glib2-devel BuildRequires: gtk2-devel -BuildRequires: pkgconfig BuildRequires: libccss-devel +BuildRequires: pkgconfig BuildRequires: gtk-doc # Require these because the git tarball doesn't have the configure built @@ -76,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog +* Thu Jul 9 2009 Peter Robinson 0.16.3-1 +- New upstream 0.16.3 release + * Thu Jul 9 2009 Peter Robinson 0.14.5-3 - More updates From jens at fedoraproject.org Sat Jul 25 13:30:10 2009 From: jens at fedoraproject.org (jens) Date: Sat, 25 Jul 2009 13:30:10 +0000 (UTC) Subject: rpms/miredo/F-11 .cvsignore, 1.2, 1.3 miredo.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090725133010.4CBAA11C04D2@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15246 Modified Files: .cvsignore miredo.spec sources Log Message: Update to 1.1.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jul 2009 05:23:49 -0000 1.2 +++ .cvsignore 25 Jul 2009 13:30:10 -0000 1.3 @@ -1 +1 @@ -miredo-1.1.6.tar.bz2 +miredo-1.1.7.tar.bz2 Index: miredo.spec =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-11/miredo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- miredo.spec 1 Jul 2009 05:23:49 -0000 1.1 +++ miredo.spec 25 Jul 2009 13:30:10 -0000 1.2 @@ -1,6 +1,6 @@ # vim: expandtab Name: miredo -Version: 1.1.6 +Version: 1.1.7 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs @@ -10,9 +10,6 @@ URL: http://www.simphalempin. Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init -%if 0%{?rhel} -Source3: isatapd.init -%endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -23,26 +20,61 @@ Requires(post): chkconfig, /sbin/ldcon Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig - %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo -server. It is meant to provide IPv6 connectivity to hosts behind NAT +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). +%package libs +Summary: Tunneling of IPv6 over UDP through NATs +Group: Applications/Internet + +%description libs +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). It can serve +either as a Teredo client, a stand-alone Teredo relay, or a Teredo +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT +devices, most of which do not support IPv6, and not even +IPv6-over-IPv4 (including 6to4). +This libs package provides the files necessary for both server and client. + %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. +%package server +Summary: Tunneling server for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +%description server +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the server +part of miredo. Most people will need only the client part. + +%package client +Summary: Tunneling client for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} = 1.1.6-2 + + +%description client +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the client +part of miredo. Most people only need the client part. %prep %setup -q @@ -52,8 +84,9 @@ you will need to install %{name}-devel. %configure \ --disable-static \ --disable-rpath \ - --with-Judy \ - --enable-miredo-user + --enable-miredo-user \ + --without-Judy + # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -69,84 +102,64 @@ mv %{buildroot}%{_docdir}/miredo/example mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server -%if 0%{?rhel} -install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd -%endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf -%pre +%pre libs getent group miredo >/dev/null || groupadd -r miredo -getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ - -c "Miredo Daemon" miredo +getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo \ + -s /sbin/nologin -c "Miredo Daemon" miredo exit 0 -%post -/sbin/ldconfig +%post libs -p /sbin/ldconfig + +%post client /sbin/chkconfig --add miredo-client + +%post server /sbin/chkconfig --add miredo-server -%if 0%{?rhel} -/sbin/chkconfig --add isatapd -%endif -%preun +%preun client if [ $1 = 0 ] ; then - %if 0%{?rhel} - /sbin/service isatapd stop >/dev/null 2>&1 - %endif - /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client +fi + +%preun server +if [ $1 = 0 ] ; then + /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-server - %if 0%{?rhel} - /sbin/chkconfig --del isatapd - %endif fi -%postun -/sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%postun client if [ "$1" -ge "1" ] ; then - %if 0%{?rhel} - /sbin/service isatapd condrestart >/dev/null 2>&1 || : - %endif - /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi +%postun server +if [ "$1" -ge "1" ] ; then + /sbin/service miredo-server condrestart >/dev/null 2>&1 || : +fi + %clean rm -rf %{buildroot} -%files -f %{name}.lang +%files libs -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* -%doc %{_mandir}/man?/miredo* -%doc %{_mandir}/man1/teredo-mire* +#%doc %{_mandir}/man?/miredo* %dir %{_sysconfdir}/miredo -%config(noreplace) %{_sysconfdir}/miredo/miredo.conf -%config(noreplace) %{_sysconfdir}/miredo/client-hook -%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf -%{_sbindir}/miredo -%{_sbindir}/miredo-checkconf -%{_sbindir}/miredo-server -%{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* -%{_initrddir}/miredo-client -%{_initrddir}/miredo-server - -%if 0%{?rhel} -%{_sbindir}/isatapd -%doc %{_mandir}/man5/isatapd.conf* -%doc %{_mandir}/man8/isatapd* -%{_initrddir}/isatapd -%endif - +%{_libdir}/miredo/miredo-privproc %files devel %defattr(-,root,root,-) @@ -155,8 +168,36 @@ rm -rf %{buildroot} %{_libdir}/libteredo.so %{_libdir}/libtun6.so +%files server +%defattr(-,root,root,-) +%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf +%{_bindir}/teredo-mire +%{_sbindir}/miredo-server +%{_sbindir}/miredo-checkconf +%{_initrddir}/miredo-server +%doc %{_mandir}/man1/teredo-mire* +%doc %{_mandir}/man?/miredo-server* +%doc %{_mandir}/man?/miredo-checkconf* + + +%files client +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/miredo/miredo.conf +%config(noreplace) %{_sysconfdir}/miredo/client-hook +%{_initrddir}/miredo-client +%{_sbindir}/miredo +%doc %{_mandir}/man?/miredo.* + %changelog +* Sun Jul 19 2009 Jens Kuehnel 1.1.7-2 +- rename miredo to miredo-libs +- fixes EL + +* Thu Jul 14 2009 Jens Kuehnel 1.1.7-1 +- split into server and client package +- update to upstream 1.1.7 + * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jul 2009 05:23:49 -0000 1.2 +++ sources 25 Jul 2009 13:30:10 -0000 1.3 @@ -1 +1 @@ -bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 +4fb5e7df6a6255528e4c5380401ad3ea miredo-1.1.7.tar.bz2 From jens at fedoraproject.org Sat Jul 25 13:44:59 2009 From: jens at fedoraproject.org (jens) Date: Sat, 25 Jul 2009 13:44:59 +0000 (UTC) Subject: rpms/miredo/F-10 .cvsignore, 1.2, 1.3 miredo.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090725134459.98E2011C02BC@cvs1.fedora.phx.redhat.com> Author: jens Update of /cvs/pkgs/rpms/miredo/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21828 Modified Files: .cvsignore miredo.spec sources Log Message: Update to 1.1.7 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 1 Jul 2009 07:31:39 -0000 1.2 +++ .cvsignore 25 Jul 2009 13:44:59 -0000 1.3 @@ -1 +1 @@ -miredo-1.1.6.tar.bz2 +miredo-1.1.7.tar.bz2 Index: miredo.spec =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-10/miredo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- miredo.spec 1 Jul 2009 07:31:39 -0000 1.1 +++ miredo.spec 25 Jul 2009 13:44:59 -0000 1.2 @@ -1,6 +1,6 @@ # vim: expandtab Name: miredo -Version: 1.1.6 +Version: 1.1.7 Release: 2%{?dist} Summary: Tunneling of IPv6 over UDP through NATs @@ -10,9 +10,6 @@ URL: http://www.simphalempin. Source0: http://www.remlab.net/files/miredo/miredo-%{version}.tar.bz2 Source1: miredo-client.init Source2: miredo-server.init -%if 0%{?rhel} -Source3: isatapd.init -%endif Patch0: miredo-config-not-exec BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -23,26 +20,61 @@ Requires(post): chkconfig, /sbin/ldcon Requires(preun): chkconfig, initscripts Requires(postun): initscripts, /sbin/ldconfig - %description Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP through NATs" proposed Internet standard (RFC4380). It can serve either as a Teredo client, a stand-alone Teredo relay, or a Teredo -server. It is meant to provide IPv6 connectivity to hosts behind NAT +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT devices, most of which do not support IPv6, and not even IPv6-over-IPv4 (including 6to4). +%package libs +Summary: Tunneling of IPv6 over UDP through NATs +Group: Applications/Internet + +%description libs +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). It can serve +either as a Teredo client, a stand-alone Teredo relay, or a Teredo +server, please install the miredo-server or miredo-client aproprietly. +It is meant to provide IPv6 connectivity to hosts behind NAT +devices, most of which do not support IPv6, and not even +IPv6-over-IPv4 (including 6to4). +This libs package provides the files necessary for both server and client. + %package devel Summary: Header files, libraries and development documentation for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} %description devel This package contains the header files, development libraries and development documentation for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. +%package server +Summary: Tunneling server for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +%description server +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the server +part of miredo. Most people will need only the client part. + +%package client +Summary: Tunneling client for IPv6 over UDP through NATs +Group: Applications/Internet +Requires: %{name}-libs = %{version}-%{release} +Provides: %{name} = %{version}-%{release} +Obsoletes: %{name} = 1.1.6-2 + + +%description client +Miredo is an implementation of the "Teredo: Tunneling IPv6 over UDP +through NATs" proposed Internet standard (RFC4380). This offers the client +part of miredo. Most people only need the client part. %prep %setup -q @@ -52,8 +84,9 @@ you will need to install %{name}-devel. %configure \ --disable-static \ --disable-rpath \ - --with-Judy \ - --enable-miredo-user + --enable-miredo-user \ + --without-Judy + # rpath does not really work sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool @@ -69,84 +102,64 @@ mv %{buildroot}%{_docdir}/miredo/example mkdir -p %{buildroot}%{_initrddir} install -p -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/miredo-client install -p -m 755 %{SOURCE2} %{buildroot}%{_initrddir}/miredo-server -%if 0%{?rhel} -install -p -m 755 %{SOURCE3} %{buildroot}%{_initrddir}/isatapd -%endif rm -f %{buildroot}%{_libdir}/lib*.la touch %{buildroot}%{_sysconfdir}/miredo/miredo-server.conf -%pre +%pre libs getent group miredo >/dev/null || groupadd -r miredo -getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo -s /sbin/nologin \ - -c "Miredo Daemon" miredo +getent passwd miredo >/dev/null || useradd -r -g miredo -d /etc/miredo \ + -s /sbin/nologin -c "Miredo Daemon" miredo exit 0 -%post -/sbin/ldconfig +%post libs -p /sbin/ldconfig + +%post client /sbin/chkconfig --add miredo-client + +%post server /sbin/chkconfig --add miredo-server -%if 0%{?rhel} -/sbin/chkconfig --add isatapd -%endif -%preun +%preun client if [ $1 = 0 ] ; then - %if 0%{?rhel} - /sbin/service isatapd stop >/dev/null 2>&1 - %endif - /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/service miredo-client stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-client +fi + +%preun server +if [ $1 = 0 ] ; then + /sbin/service miredo-server stop >/dev/null 2>&1 /sbin/chkconfig --del miredo-server - %if 0%{?rhel} - /sbin/chkconfig --del isatapd - %endif fi -%postun -/sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%postun client if [ "$1" -ge "1" ] ; then - %if 0%{?rhel} - /sbin/service isatapd condrestart >/dev/null 2>&1 || : - %endif - /sbin/service miredo-server condrestart >/dev/null 2>&1 || : /sbin/service miredo-client condrestart >/dev/null 2>&1 || : fi +%postun server +if [ "$1" -ge "1" ] ; then + /sbin/service miredo-server condrestart >/dev/null 2>&1 || : +fi + %clean rm -rf %{buildroot} -%files -f %{name}.lang +%files libs -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO rpmdocs/* -%doc %{_mandir}/man?/miredo* -%doc %{_mandir}/man1/teredo-mire* +#%doc %{_mandir}/man?/miredo* %dir %{_sysconfdir}/miredo -%config(noreplace) %{_sysconfdir}/miredo/miredo.conf -%config(noreplace) %{_sysconfdir}/miredo/client-hook -%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf -%{_sbindir}/miredo -%{_sbindir}/miredo-checkconf -%{_sbindir}/miredo-server -%{_bindir}/teredo-mire %{_libdir}/libteredo.so.* %{_libdir}/libtun6.so.* -%{_initrddir}/miredo-client -%{_initrddir}/miredo-server - -%if 0%{?rhel} -%{_sbindir}/isatapd -%doc %{_mandir}/man5/isatapd.conf* -%doc %{_mandir}/man8/isatapd* -%{_initrddir}/isatapd -%endif - +%{_libdir}/miredo/miredo-privproc %files devel %defattr(-,root,root,-) @@ -155,8 +168,36 @@ rm -rf %{buildroot} %{_libdir}/libteredo.so %{_libdir}/libtun6.so +%files server +%defattr(-,root,root,-) +%ghost %config(noreplace,missingok) %{_sysconfdir}/miredo/miredo-server.conf +%{_bindir}/teredo-mire +%{_sbindir}/miredo-server +%{_sbindir}/miredo-checkconf +%{_initrddir}/miredo-server +%doc %{_mandir}/man1/teredo-mire* +%doc %{_mandir}/man?/miredo-server* +%doc %{_mandir}/man?/miredo-checkconf* + + +%files client +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/miredo/miredo.conf +%config(noreplace) %{_sysconfdir}/miredo/client-hook +%{_initrddir}/miredo-client +%{_sbindir}/miredo +%doc %{_mandir}/man?/miredo.* + %changelog +* Sun Jul 19 2009 Jens Kuehnel 1.1.7-2 +- rename miredo to miredo-libs +- fixes EL + +* Thu Jul 14 2009 Jens Kuehnel 1.1.7-1 +- split into server and client package +- update to upstream 1.1.7 + * Sat Jun 28 2009 Jens Kuehnel 1.1.6-2 - renamed miredo startscript to miredo-client - preliminary preperation for EL Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/miredo/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 1 Jul 2009 07:31:39 -0000 1.2 +++ sources 25 Jul 2009 13:44:59 -0000 1.3 @@ -1 +1 @@ -bf49c1ddc068746760787d0cf76e40de miredo-1.1.6.tar.bz2 +4fb5e7df6a6255528e4c5380401ad3ea miredo-1.1.7.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 14:25:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:25:23 +0000 (UTC) Subject: rpms/mingw32-libssh2/devel mingw32-libssh2.spec,1.1,1.2 Message-ID: <20090725142523.2114211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libssh2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5593 Modified Files: mingw32-libssh2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libssh2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libssh2/devel/mingw32-libssh2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mingw32-libssh2.spec 24 May 2009 12:38:47 -0000 1.1 +++ mingw32-libssh2.spec 25 Jul 2009 14:25:22 -0000 1.2 @@ -6,7 +6,7 @@ Name: mingw32-libssh2 Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows library implementation of the SSH2 protocol License: BSD @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/libssh2.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Erik van Pienbroek - 1.1-2 - Use %%global instead of %%define From jkeating at fedoraproject.org Sat Jul 25 14:25:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:25:36 +0000 (UTC) Subject: rpms/mingw32-libtiff/devel mingw32-libtiff.spec,1.3,1.4 Message-ID: <20090725142536.C9B9011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libtiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5767 Modified Files: mingw32-libtiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libtiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libtiff/devel/mingw32-libtiff.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libtiff.spec 13 Jul 2009 23:09:30 -0000 1.3 +++ mingw32-libtiff.spec 25 Jul 2009 14:25:36 -0000 1.4 @@ -7,7 +7,7 @@ Summary: MinGW Windows port of the LibTIFF library Name: mingw32-libtiff Version: 3.8.2 -Release: 17%{?dist} +Release: 18%{?dist} License: libtiff Group: System Environment/Libraries URL: http://www.remotesensing.org/libtiff/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.8.2-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Michael Ploujnikov - 3.8.2-17 - update upstream URL - Fix some more LZW decoding vulnerabilities (CVE-2009-2285) From jkeating at fedoraproject.org Sat Jul 25 14:25:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:25:54 +0000 (UTC) Subject: rpms/mingw32-libxml++/devel mingw32-libxml++.spec,1.2,1.3 Message-ID: <20090725142554.BEEAF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libxml++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5939 Modified Files: mingw32-libxml++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libxml++.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libxml++/devel/mingw32-libxml++.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libxml++.spec 25 Jun 2009 10:40:12 -0000 1.2 +++ mingw32-libxml++.spec 25 Jul 2009 14:25:54 -0000 1.3 @@ -9,7 +9,7 @@ Name: mingw32-%{name1} Version: 2.26.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: MinGW Windows C++ wrapper for the libxml2 XML parser library Group: System Environment/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.26.0-2 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:26:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:26:10 +0000 (UTC) Subject: rpms/mingw32-libxml2/devel mingw32-libxml2.spec,1.5,1.6 Message-ID: <20090725142610.0C96E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libxml2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6121 Modified Files: mingw32-libxml2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libxml2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libxml2/devel/mingw32-libxml2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-libxml2.spec 4 May 2009 14:52:53 -0000 1.5 +++ mingw32-libxml2.spec 25 Jul 2009 14:26:09 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-libxml2 Version: 2.7.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows libxml2 XML processing library License: MIT @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/libxml2.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 4 2009 Erik van Pienbroek - 2.7.3-1 - Update to 2.7.3 From jkeating at fedoraproject.org Sat Jul 25 14:26:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:26:26 +0000 (UTC) Subject: rpms/mingw32-libxslt/devel mingw32-libxslt.spec,1.3,1.4 Message-ID: <20090725142626.C654611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libxslt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6260 Modified Files: mingw32-libxslt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-libxslt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libxslt/devel/mingw32-libxslt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-libxslt.spec 11 Jun 2009 09:14:02 -0000 1.3 +++ mingw32-libxslt.spec 25 Jul 2009 14:26:26 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-libxslt Version: 1.1.24 -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW Windows Library providing the Gnome XSLT engine License: MIT @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.24-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Erik van Pienbroek - 1.1.24-8 - Resolve FTBFS From jkeating at fedoraproject.org Sat Jul 25 14:26:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:26:44 +0000 (UTC) Subject: rpms/mingw32-nsis/devel mingw32-nsis.spec,1.10,1.11 Message-ID: <20090725142644.3454711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-nsis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6447 Modified Files: mingw32-nsis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-nsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsis/devel/mingw32-nsis.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mingw32-nsis.spec 21 Jul 2009 03:36:25 -0000 1.10 +++ mingw32-nsis.spec 25 Jul 2009 14:26:44 -0000 1.11 @@ -3,7 +3,7 @@ Name: mingw32-nsis Version: 2.45 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Nullsoft Scriptable Install System License: zlib and CPL @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.45-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Kevin Kofler - 2.45-1 - Update to 2.45 (#512429) From jkeating at fedoraproject.org Sat Jul 25 14:27:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:27:02 +0000 (UTC) Subject: rpms/mingw32-nsiswrapper/devel mingw32-nsiswrapper.spec,1.5,1.6 Message-ID: <20090725142702.2FCA511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-nsiswrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6647 Modified Files: mingw32-nsiswrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-nsiswrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-nsiswrapper/devel/mingw32-nsiswrapper.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-nsiswrapper.spec 5 Jul 2009 21:06:04 -0000 1.5 +++ mingw32-nsiswrapper.spec 25 Jul 2009 14:27:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: mingw32-nsiswrapper Version: 4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Helper program for making NSIS Windows installers License: GPLv2+ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 5 2009 Richard W.M. Jones - 4-2 - Add runtime requires mingw32-binutils (RHBZ#509747). From jkeating at fedoraproject.org Sat Jul 25 14:27:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:27:17 +0000 (UTC) Subject: rpms/mingw32-opensc/devel mingw32-opensc.spec,1.2,1.3 Message-ID: <20090725142717.64C8411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-opensc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6862 Modified Files: mingw32-opensc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-opensc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-opensc/devel/mingw32-opensc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-opensc.spec 13 May 2009 01:55:32 -0000 1.2 +++ mingw32-opensc.spec 25 Jul 2009 14:27:17 -0000 1.3 @@ -6,7 +6,7 @@ Name: mingw32-opensc Version: 0.11.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MingGW Windows OpenSC library Group: Development/Libraries @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Kalev Lember - 0.11.8-1 - Update to 0.11.8, fixes a security issue. - Remove iconv detection patch that was applied upstream. From jkeating at fedoraproject.org Sat Jul 25 14:27:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:27:40 +0000 (UTC) Subject: rpms/mingw32-openssl/devel mingw32-openssl.spec,1.5,1.6 Message-ID: <20090725142740.31C3911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7105 Modified Files: mingw32-openssl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-openssl/devel/mingw32-openssl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-openssl.spec 9 May 2009 11:34:22 -0000 1.5 +++ mingw32-openssl.spec 25 Jul 2009 14:27:40 -0000 1.6 @@ -27,7 +27,7 @@ Name: mingw32-openssl Version: 0.9.8j -Release: 6%{?dist} +Release: 7%{?dist} Summary: MinGW port of the OpenSSL toolkit License: OpenSSL @@ -342,6 +342,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.8j-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Erik van Pienbroek - 0.9.8j-6 - Add the file include/openssl/applink.c to the package (BZ #499934) From jkeating at fedoraproject.org Sat Jul 25 14:27:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:27:56 +0000 (UTC) Subject: rpms/mingw32-pango/devel mingw32-pango.spec,1.3,1.4 Message-ID: <20090725142756.D19EE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-pango/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7281 Modified Files: mingw32-pango.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-pango.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-pango/devel/mingw32-pango.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-pango.spec 15 Jun 2009 18:05:13 -0000 1.3 +++ mingw32-pango.spec 25 Jul 2009 14:27:56 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-pango Version: 1.24.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows Pango library License: LGPLv2+ @@ -191,6 +191,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.24.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Erik van Pienbroek - 1.24.2-1 - Update to 1.24.2 - Use %%global instead of %%define From jkeating at fedoraproject.org Sat Jul 25 14:28:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:28:10 +0000 (UTC) Subject: rpms/mingw32-pangomm/devel mingw32-pangomm.spec,1.3,1.4 Message-ID: <20090725142810.AF80C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-pangomm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7464 Modified Files: mingw32-pangomm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-pangomm.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-pangomm/devel/mingw32-pangomm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-pangomm.spec 25 Jun 2009 10:53:33 -0000 1.3 +++ mingw32-pangomm.spec 25 Jul 2009 14:28:10 -0000 1.4 @@ -9,7 +9,7 @@ Name: mingw32-pangomm Version: 2.24.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW Windows C++ interface for Pango License: LGPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.24.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 2.24.0-3 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:28:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:28:26 +0000 (UTC) Subject: rpms/mingw32-pdcurses/devel mingw32-pdcurses.spec,1.3,1.4 Message-ID: <20090725142826.2BA1511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-pdcurses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7642 Modified Files: mingw32-pdcurses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-pdcurses.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-pdcurses/devel/mingw32-pdcurses.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-pdcurses.spec 26 Feb 2009 01:20:26 -0000 1.3 +++ mingw32-pdcurses.spec 25 Jul 2009 14:28:25 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-pdcurses Version: 3.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Curses library for MinGW License: Public Domain @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:28:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:28:40 +0000 (UTC) Subject: rpms/mingw32-physfs/devel mingw32-physfs.spec,1.2,1.3 Message-ID: <20090725142840.2161511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-physfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7835 Modified Files: mingw32-physfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-physfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-physfs/devel/mingw32-physfs.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-physfs.spec 24 Mar 2009 00:53:08 -0000 1.2 +++ mingw32-physfs.spec 25 Jul 2009 14:28:39 -0000 1.3 @@ -6,7 +6,7 @@ Name: mingw32-physfs Version: 1.0.1 -Release: 12%{?dist} +Release: 13%{?dist} License: zlib Group: System Environment/Libraries Summary: MinGW Windows port of the PhysicsFS library @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_includedir}/physfs.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Michael Ploujnikov - 1.0.1-12 - use noarch http://fedoraproject.org/wiki/Packaging/MinGW#Build_architecture From jkeating at fedoraproject.org Sat Jul 25 14:29:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:29:20 +0000 (UTC) Subject: rpms/mingw32-pixman/devel mingw32-pixman.spec,1.5,1.6 Message-ID: <20090725142920.471AA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-pixman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8188 Modified Files: mingw32-pixman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-pixman.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-pixman/devel/mingw32-pixman.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-pixman.spec 10 Jun 2009 19:35:34 -0000 1.5 +++ mingw32-pixman.spec 25 Jul 2009 14:29:19 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-pixman Version: 0.15.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows Pixman library License: MIT @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Erik van Pienbroek - 0.15.10-1 - Update to 0.15.10 - Use %%global instead of %%define From jkeating at fedoraproject.org Sat Jul 25 14:29:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:29:36 +0000 (UTC) Subject: rpms/mingw32-plotmm/devel mingw32-plotmm.spec,1.2,1.3 Message-ID: <20090725142936.EB5A111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-plotmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8392 Modified Files: mingw32-plotmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-plotmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-plotmm/devel/mingw32-plotmm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-plotmm.spec 25 Jun 2009 11:08:55 -0000 1.2 +++ mingw32-plotmm.spec 25 Jul 2009 14:29:36 -0000 1.3 @@ -7,7 +7,7 @@ Name: mingw32-plotmm Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW GTKmm plot widget for scientific applications Group: Development/Libraries License: LGPLv2 @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_includedir}/plotmm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 0.1.2-3 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:29:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:29:58 +0000 (UTC) Subject: rpms/mingw32-pthreads/devel mingw32-pthreads.spec,1.5,1.6 Message-ID: <20090725142958.60BA211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-pthreads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8664 Modified Files: mingw32-pthreads.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-pthreads.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-pthreads/devel/mingw32-pthreads.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-pthreads.spec 22 May 2009 20:57:34 -0000 1.5 +++ mingw32-pthreads.spec 25 Jul 2009 14:29:58 -0000 1.6 @@ -9,7 +9,7 @@ Name: mingw32-pthreads Version: 2.8.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW pthread library %define crazy_version %(echo %{version}|tr . -) @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.8.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Erik van Pienbroek - 2.8.0-8 - Create a symlink from libpthreadGC2.a to libpthread.a because of BZ #498616 From jkeating at fedoraproject.org Sat Jul 25 14:30:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:30:18 +0000 (UTC) Subject: rpms/mingw32-qt/devel mingw32-qt.spec,1.12,1.13 Message-ID: <20090725143018.74D3411C04FC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8874 Modified Files: mingw32-qt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-qt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-qt/devel/mingw32-qt.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mingw32-qt.spec 29 Jun 2009 14:37:14 -0000 1.12 +++ mingw32-qt.spec 25 Jul 2009 14:30:18 -0000 1.13 @@ -18,7 +18,7 @@ Name: mingw32-qt Version: 4.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Qt for Windows License: GPLv3 with exceptions or LGPLv2 with exceptions @@ -242,6 +242,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Thomas Sailer - 4.5.2-1 - update to 4.5.2 From jkeating at fedoraproject.org Sat Jul 25 14:30:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:30:35 +0000 (UTC) Subject: rpms/mingw32-qt-qmake/devel mingw32-qt-qmake.spec,1.6,1.7 Message-ID: <20090725143035.B220A11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-qt-qmake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9089 Modified Files: mingw32-qt-qmake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-qt-qmake.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-qt-qmake/devel/mingw32-qt-qmake.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mingw32-qt-qmake.spec 1 Jul 2009 13:00:59 -0000 1.6 +++ mingw32-qt-qmake.spec 25 Jul 2009 14:30:35 -0000 1.7 @@ -8,7 +8,7 @@ Name: mingw32-qt-qmake Version: 4.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Qt for Windows Build Environment License: GPLv3 with exceptions or LGPLv2 with exceptions @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Thomas Sailer - 4.5.2-1 - update to 4.5.2 to match mingw32-qt version From jkeating at fedoraproject.org Sat Jul 25 14:30:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:30:52 +0000 (UTC) Subject: rpms/mingw32-qwt/devel mingw32-qwt.spec,1.6,1.7 Message-ID: <20090725143052.1F98B11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-qwt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9258 Modified Files: mingw32-qwt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-qwt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-qwt/devel/mingw32-qwt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mingw32-qwt.spec 25 Jun 2009 15:28:37 -0000 1.6 +++ mingw32-qwt.spec 25 Jul 2009 14:30:51 -0000 1.7 @@ -4,7 +4,7 @@ Name: mingw32-%{name1} Summary: MinGW Windows Qwt library Version: 5.1.1 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://qwt.sourceforge.net License: LGPLv2 with exceptions Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/lib%{name1}d5.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 5.1.1-8 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:31:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:31:07 +0000 (UTC) Subject: rpms/mingw32-readline/devel mingw32-readline.spec,1.3,1.4 Message-ID: <20090725143107.CDC0611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-readline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9448 Modified Files: mingw32-readline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-readline.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-readline/devel/mingw32-readline.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-readline.spec 26 Feb 2009 01:23:29 -0000 1.3 +++ mingw32-readline.spec 25 Jul 2009 14:31:07 -0000 1.4 @@ -6,7 +6,7 @@ Name: mingw32-readline Version: 5.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: MinGW port of readline for editing typed command lines License: GPLv2+ @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:31:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:31:21 +0000 (UTC) Subject: rpms/mingw32-runtime/devel mingw32-runtime.spec,1.5,1.6 Message-ID: <20090725143121.F14AF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9621 Modified Files: mingw32-runtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-runtime/devel/mingw32-runtime.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-runtime.spec 26 Feb 2009 01:24:26 -0000 1.5 +++ mingw32-runtime.spec 25 Jul 2009 14:31:21 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-runtime Version: 3.15.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MinGW Windows cross-compiler runtime License: Public Domain @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.15.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.15.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:31:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:31:42 +0000 (UTC) Subject: rpms/mingw32-sqlite/devel mingw32-sqlite.spec,1.9,1.10 Message-ID: <20090725143142.177BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-sqlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9805 Modified Files: mingw32-sqlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-sqlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-sqlite/devel/mingw32-sqlite.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mingw32-sqlite.spec 25 Jun 2009 10:18:52 -0000 1.9 +++ mingw32-sqlite.spec 25 Jul 2009 14:31:41 -0000 1.10 @@ -11,7 +11,7 @@ Name: mingw32-sqlite Version: 3.6.14.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MinGW Windows port of sqlite embeddable SQL database engine License: Public Domain @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.6.14.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Thomas Sailer - 3.6.14.2-1 - update to 3.6.14.2 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:31:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:31:57 +0000 (UTC) Subject: rpms/mingw32-tcl/devel mingw32-tcl.spec,1.6,1.7 Message-ID: <20090725143157.250F511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-tcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9988 Modified Files: mingw32-tcl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-tcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-tcl/devel/mingw32-tcl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mingw32-tcl.spec 23 Jun 2009 09:22:15 -0000 1.6 +++ mingw32-tcl.spec 25 Jul 2009 14:31:56 -0000 1.7 @@ -15,7 +15,7 @@ Summary: MinGW Windows Tool Command Language, pronounced tickle Name: mingw32-%{name1} Version: %{vers} -Release: 6%{?dist} +Release: 7%{?dist} License: TCL Group: Development/Languages URL: http://tcl.sourceforge.net/ @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %doc license.terms %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 8.5.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 8.5.7-6 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:32:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:32:11 +0000 (UTC) Subject: rpms/mingw32-termcap/devel mingw32-termcap.spec,1.3,1.4 Message-ID: <20090725143211.8C48311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-termcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10182 Modified Files: mingw32-termcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-termcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-termcap/devel/mingw32-termcap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-termcap.spec 26 Feb 2009 01:27:37 -0000 1.3 +++ mingw32-termcap.spec 25 Jul 2009 14:32:11 -0000 1.4 @@ -13,7 +13,7 @@ Name: mingw32-termcap Version: 1.3.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MinGW terminal feature database License: GPLv2+ @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:32:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:32:26 +0000 (UTC) Subject: rpms/mingw32-w32api/devel mingw32-w32api.spec,1.5,1.6 Message-ID: <20090725143226.98B1311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-w32api/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10352 Modified Files: mingw32-w32api.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-w32api.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-w32api/devel/mingw32-w32api.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mingw32-w32api.spec 26 Feb 2009 01:28:39 -0000 1.5 +++ mingw32-w32api.spec 25 Jul 2009 14:32:26 -0000 1.6 @@ -6,7 +6,7 @@ Name: mingw32-w32api Version: 3.13 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Win32 header files and stubs License: Public Domain @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:32:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:32:43 +0000 (UTC) Subject: rpms/mingw32-wpcap/devel mingw32-wpcap.spec,1.7,1.8 Message-ID: <20090725143243.917D111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-wpcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10547 Modified Files: mingw32-wpcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-wpcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-wpcap/devel/mingw32-wpcap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mingw32-wpcap.spec 15 Jul 2009 06:44:38 -0000 1.7 +++ mingw32-wpcap.spec 25 Jul 2009 14:32:43 -0000 1.8 @@ -7,7 +7,7 @@ Name: mingw32-wpcap Version: %{versionmajor}.%{versionminor}.%{versionsuffix} -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW user-level packet capture Group: Development/Libraries @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %{wpcapexamples} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.1.beta5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Thomas Sailer - 4.1.beta5-8 - fix BR From jkeating at fedoraproject.org Sat Jul 25 14:32:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:32:58 +0000 (UTC) Subject: rpms/mingw32-zfstream/devel mingw32-zfstream.spec,1.3,1.4 Message-ID: <20090725143258.43A0A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-zfstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10760 Modified Files: mingw32-zfstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-zfstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-zfstream/devel/mingw32-zfstream.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mingw32-zfstream.spec 23 Jun 2009 09:19:04 -0000 1.3 +++ mingw32-zfstream.spec 25 Jul 2009 14:32:58 -0000 1.4 @@ -12,7 +12,7 @@ Name: mingw32-%{name1} Version: %{vyear}%{vmonth}%{vday} -Release: 6%{?dist} +Release: 7%{?dist} Summary: MinGW Windows abstraction API for reading and writing compressed files Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/pkgconfig/zfstream.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20041202-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Thomas Sailer - 20041202-6 - add debuginfo packages From jkeating at fedoraproject.org Sat Jul 25 14:33:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:33:13 +0000 (UTC) Subject: rpms/mingw32-zlib/devel mingw32-zlib.spec,1.8,1.9 Message-ID: <20090725143313.44B0611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10922 Modified Files: mingw32-zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mingw32-zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-zlib/devel/mingw32-zlib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mingw32-zlib.spec 12 Jun 2009 09:48:15 -0000 1.8 +++ mingw32-zlib.spec 25 Jul 2009 14:33:13 -0000 1.9 @@ -6,7 +6,7 @@ Name: mingw32-zlib Version: 1.2.3 -Release: 18%{?dist} +Release: 19%{?dist} Summary: MinGW Windows zlib compression library License: zlib @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.3-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 1.2.3-18 - Cannot copy current directory into itself, so fix the copy command which creates 'x' subdirectory. From jkeating at fedoraproject.org Sat Jul 25 14:33:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:33:29 +0000 (UTC) Subject: rpms/minicom/devel minicom.spec,1.34,1.35 Message-ID: <20090725143329.4666011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/minicom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11128 Modified Files: minicom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: minicom.spec =================================================================== RCS file: /cvs/pkgs/rpms/minicom/devel/minicom.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- minicom.spec 16 Jul 2009 12:51:01 -0000 1.34 +++ minicom.spec 25 Jul 2009 14:33:28 -0000 1.35 @@ -1,7 +1,7 @@ Summary: A text-based modem control and terminal emulation program Name: minicom Version: 2.3 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://alioth.debian.org/projects/minicom/ License: GPLv2+ Group: Applications/Communications @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Miroslav Lichvar 2.3-5 - rename getline to avoid conflict with glibc (#511715) - remove makefiles from docs From jkeating at fedoraproject.org Sat Jul 25 14:33:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:33:49 +0000 (UTC) Subject: rpms/minicomputer/devel minicomputer.spec,1.1,1.2 Message-ID: <20090725143349.39A8B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/minicomputer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11322 Modified Files: minicomputer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: minicomputer.spec =================================================================== RCS file: /cvs/pkgs/rpms/minicomputer/devel/minicomputer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- minicomputer.spec 27 Apr 2009 17:00:00 -0000 1.1 +++ minicomputer.spec 25 Jul 2009 14:33:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: minicomputer Version: 1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Software Synthesizer Group: Applications/Multimedia License: GPLv3+ @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/32x32/apps/%{name}.xpm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Orcan Ogetbil - 1.3-3 - Cleanup the compiler flags From jkeating at fedoraproject.org Sat Jul 25 14:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:34:03 +0000 (UTC) Subject: rpms/minirpc/devel minirpc.spec,1.6,1.7 Message-ID: <20090725143403.B90C011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/minirpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11548 Modified Files: minirpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: minirpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/minirpc/devel/minirpc.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- minirpc.spec 26 Feb 2009 01:31:47 -0000 1.6 +++ minirpc.spec 25 Jul 2009 14:34:03 -0000 1.7 @@ -1,6 +1,6 @@ Name: minirpc Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C library for remote procedure calls over stream-oriented transports Group: System Environment/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:34:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:34:20 +0000 (UTC) Subject: rpms/minisat2/devel minisat2.spec,1.2,1.3 Message-ID: <20090725143420.CF22311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/minisat2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11728 Modified Files: minisat2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: minisat2.spec =================================================================== RCS file: /cvs/pkgs/rpms/minisat2/devel/minisat2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- minisat2.spec 26 Feb 2009 01:32:44 -0000 1.2 +++ minisat2.spec 25 Jul 2009 14:34:20 -0000 1.3 @@ -6,7 +6,7 @@ Summary: A minimalistic, open-source SAT Name: minisat2 Version: 2.0 # Use Fedora 'Snapshot' naming convention due to odd upstream version naming: -Release: 8.20070721%{?dist} +Release: 9.20070721%{?dist} License: MIT Group: Applications/Engineering Source: http://minisat.se/downloads/%{name}-%{myversion}.zip @@ -93,6 +93,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-9.20070721 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-8.20070721 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:34:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:34:40 +0000 (UTC) Subject: rpms/mirrormagic/devel mirrormagic.spec,1.5,1.6 Message-ID: <20090725143440.2241C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mirrormagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11938 Modified Files: mirrormagic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mirrormagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/mirrormagic/devel/mirrormagic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mirrormagic.spec 26 Feb 2009 01:33:46 -0000 1.5 +++ mirrormagic.spec 25 Jul 2009 14:34:39 -0000 1.6 @@ -1,6 +1,6 @@ Name: mirrormagic Version: 2.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Puzzle game where you steer a beam of light using mirrors Group: Amusements/Games License: GPL+ @@ -82,6 +82,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:34:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:34:57 +0000 (UTC) Subject: rpms/mirrormanager/devel mirrormanager.spec,1.7,1.8 Message-ID: <20090725143457.56D9411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mirrormanager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12143 Modified Files: mirrormanager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mirrormanager.spec =================================================================== RCS file: /cvs/pkgs/rpms/mirrormanager/devel/mirrormanager.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mirrormanager.spec 7 Apr 2009 16:53:08 -0000 1.7 +++ mirrormanager.spec 25 Jul 2009 14:34:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: mirrormanager Version: 1.2.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fedora mirror management system BuildArch: noarch @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Matt Domsch - 1.2.11-1 - fix quite a few bugs from previous version From jkeating at fedoraproject.org Sat Jul 25 14:35:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:35:13 +0000 (UTC) Subject: rpms/mitter/devel mitter.spec,1.2,1.3 Message-ID: <20090725143513.62C7911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mitter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12330 Modified Files: mitter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mitter.spec =================================================================== RCS file: /cvs/pkgs/rpms/mitter/devel/mitter.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mitter.spec 26 Feb 2009 01:35:40 -0000 1.2 +++ mitter.spec 25 Jul 2009 14:35:13 -0000 1.3 @@ -4,7 +4,7 @@ Name: mitter Version: 0.4.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A maemo/GTK+ client for twitter Group: Applications/Internet @@ -51,6 +51,9 @@ rm -rf %{buildroot} %doc AUTHORS COPYING THANKS %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:35:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:35:30 +0000 (UTC) Subject: rpms/mk-files/devel mk-files.spec,1.3,1.4 Message-ID: <20090725143530.201D711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mk-files/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12536 Modified Files: mk-files.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mk-files.spec =================================================================== RCS file: /cvs/pkgs/rpms/mk-files/devel/mk-files.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mk-files.spec 15 Jul 2009 12:09:08 -0000 1.3 +++ mk-files.spec 25 Jul 2009 14:35:29 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Support files for bmake, the NetBSD make(1) tool Name: mk-files Version: 20081111 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Tools URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/ @@ -38,6 +38,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/mk/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20081111-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Stepan Kasal - 20081111-1 - new upstream version From jkeating at fedoraproject.org Sat Jul 25 14:35:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:35:45 +0000 (UTC) Subject: rpms/mkbootdisk/devel mkbootdisk.spec,1.25,1.26 Message-ID: <20090725143545.48DC411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mkbootdisk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12718 Modified Files: mkbootdisk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mkbootdisk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkbootdisk/devel/mkbootdisk.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- mkbootdisk.spec 26 Feb 2009 01:37:41 -0000 1.25 +++ mkbootdisk.spec 25 Jul 2009 14:35:44 -0000 1.26 @@ -1,7 +1,7 @@ Summary: Creates a boot floppy disk for booting a system. Name: mkbootdisk Version: 1.5.3 -Release: 5%{?dist} +Release: 6%{?dist} # No version specified, only attribution is included spec file. License: GPL+ Group: System Environment/Base @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %attr(644,root,root) %{_mandir}/man8/mkbootdisk.8.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:36:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:36:01 +0000 (UTC) Subject: rpms/mkdst/devel mkdst.spec,1.13,1.14 Message-ID: <20090725143601.2C66111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mkdst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12937 Modified Files: mkdst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mkdst.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkdst/devel/mkdst.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mkdst.spec 26 Feb 2009 01:38:36 -0000 1.13 +++ mkdst.spec 25 Jul 2009 14:36:00 -0000 1.14 @@ -2,7 +2,7 @@ Name: mkdst Version: 0.11 %define _datestamp .20081208.19 #Release: 1%{_datestamp}%{?dist} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Source repository to tarball release tool Group: Development/Tools @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mkdst/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:36:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:36:19 +0000 (UTC) Subject: rpms/mkelfimage/devel mkelfimage.spec,1.5,1.6 Message-ID: <20090725143619.E5C6E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mkelfimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13135 Modified Files: mkelfimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mkelfimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkelfimage/devel/mkelfimage.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mkelfimage.spec 26 Feb 2009 01:39:37 -0000 1.5 +++ mkelfimage.spec 25 Jul 2009 14:36:19 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Utility to create ELF boot images from Linux kernel images Name: mkelfimage Version: 2.7 -Release: 5%{?dist} +Release: 6%{?dist} # No license declaration in the source files, but parts come from the Linux # kernel. License: GPLv2 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/mkelfImage.8.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:36:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:36:35 +0000 (UTC) Subject: rpms/mkinitrd/devel mkinitrd.spec,1.328,1.329 Message-ID: <20090725143635.E6D1D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mkinitrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13297 Modified Files: mkinitrd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mkinitrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkinitrd/devel/mkinitrd.spec,v retrieving revision 1.328 retrieving revision 1.329 diff -u -p -r1.328 -r1.329 --- mkinitrd.spec 21 Jul 2009 02:26:56 -0000 1.328 +++ mkinitrd.spec 25 Jul 2009 14:36:35 -0000 1.329 @@ -3,7 +3,7 @@ Summary: Creates an initial ramdisk image for preloading modules. Name: mkinitrd Version: 6.0.92 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source0: mkinitrd-%{version}.tar.bz2 @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/kernel/prerm.d %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0.92-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Jeremy Katz - 6.0.92-1 - Fix live image booting with udev creating /dev/mapper/control - Workaround to try to stop the live image dm backing images from showing From jkeating at fedoraproject.org Sat Jul 25 14:36:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:36:49 +0000 (UTC) Subject: rpms/mksh/devel mksh.spec,1.24,1.25 Message-ID: <20090725143649.B192D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mksh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13455 Modified Files: mksh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mksh.spec =================================================================== RCS file: /cvs/pkgs/rpms/mksh/devel/mksh.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mksh.spec 31 May 2009 20:09:38 -0000 1.24 +++ mksh.spec 25 Jul 2009 14:36:49 -0000 1.25 @@ -3,7 +3,7 @@ Summary: MirBSD enhanced version of the Korn Shell Name: mksh Version: 38b -Release: 1%{?dist} +Release: 2%{?dist} License: BSD with advertising Group: System Environment/Shells URL: http://www.mirbsd.de/%{name}/ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 38b-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Robert Scheck 38b-1 - Upgrade to 38b From jkeating at fedoraproject.org Sat Jul 25 14:37:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:37:04 +0000 (UTC) Subject: rpms/mkvtoolnix/devel mkvtoolnix.spec,1.27,1.28 Message-ID: <20090725143704.C08FB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mkvtoolnix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13618 Modified Files: mkvtoolnix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mkvtoolnix.spec =================================================================== RCS file: /cvs/pkgs/rpms/mkvtoolnix/devel/mkvtoolnix.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mkvtoolnix.spec 6 Apr 2009 20:13:48 -0000 1.27 +++ mkvtoolnix.spec 25 Jul 2009 14:37:04 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Matroska container manipulation utilities Name: mkvtoolnix Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia Source0: http://www.bunkus.org/videotools/mkvtoolnix/sources/%{name}-%{version}.tar.bz2 @@ -112,6 +112,9 @@ gtk-update-icon-cache --quiet %{_datadir %{_datadir}/icons/hicolor/32x32/apps/mmg.xpm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Dominik Mierzejewski 2.6.0-1 - updated to 2.6.0 - dropped upstreamed patches From jkeating at fedoraproject.org Sat Jul 25 14:37:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:37:23 +0000 (UTC) Subject: rpms/mldonkey/devel mldonkey.spec,1.6,1.7 Message-ID: <20090725143723.C188911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mldonkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13813 Modified Files: mldonkey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mldonkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/mldonkey/devel/mldonkey.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mldonkey.spec 14 Mar 2009 08:10:19 -0000 1.6 +++ mldonkey.spec 25 Jul 2009 14:37:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: mldonkey Version: 3.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Client for several P2P networks License: GPLv2+ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 @@ -319,6 +319,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Peter Lemenkov 3.0.0-1 - Ver. 3.0.0 - Dropped patch1 From jkeating at fedoraproject.org Sat Jul 25 14:37:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:37:41 +0000 (UTC) Subject: rpms/mlmmj/devel mlmmj.spec,1.34,1.35 Message-ID: <20090725143741.A41EB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mlmmj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14019 Modified Files: mlmmj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mlmmj.spec =================================================================== RCS file: /cvs/pkgs/rpms/mlmmj/devel/mlmmj.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- mlmmj.spec 26 Feb 2009 01:43:30 -0000 1.34 +++ mlmmj.spec 25 Jul 2009 14:37:41 -0000 1.35 @@ -3,7 +3,7 @@ Summary: Mailserver-independent ezmlm-like mailing list manager Name: mlmmj Version: 1.2.16 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Applications/Internet URL: http://www.mlmmj.org/ @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man1/mlmmj-* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:38:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:38:00 +0000 (UTC) Subject: rpms/mlocate/devel mlocate.spec,1.24,1.25 Message-ID: <20090725143800.95CA311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mlocate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14227 Modified Files: mlocate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mlocate.spec =================================================================== RCS file: /cvs/pkgs/rpms/mlocate/devel/mlocate.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mlocate.spec 19 May 2009 15:46:06 -0000 1.24 +++ mlocate.spec 25 Jul 2009 14:38:00 -0000 1.25 @@ -1,7 +1,7 @@ Summary: An utility for finding files by name Name: mlocate Version: 0.22 -Release: 2 +Release: 3 License: GPLv2 URL: https://fedorahosted.org/mlocate/ Group: Applications/System @@ -70,6 +70,9 @@ exit 0 %ghost %{_localstatedir}/lib/mlocate/mlocate.db %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Miloslav Trma? - 0.22-2 - Add /var/cache/ccache to PRUNEPATHS. From jkeating at fedoraproject.org Sat Jul 25 14:38:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:38:19 +0000 (UTC) Subject: rpms/mlton/devel mlton.spec,1.31,1.32 Message-ID: <20090725143819.ACA1C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mlton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14446 Modified Files: mlton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mlton.spec =================================================================== RCS file: /cvs/pkgs/rpms/mlton/devel/mlton.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mlton.spec 31 May 2009 23:23:31 -0000 1.31 +++ mlton.spec 25 Jul 2009 14:38:19 -0000 1.32 @@ -2,7 +2,7 @@ Name: mlton Version: 20070826 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Optimizing compiler for Standard ML Group: Development/Languages @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20070826-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Adam Goode - 20070826-19 - Add forgotten changelog entry From jkeating at fedoraproject.org Sat Jul 25 14:38:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:38:40 +0000 (UTC) Subject: rpms/mm/devel mm.spec,1.8,1.9 Message-ID: <20090725143840.8E9E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14666 Modified Files: mm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mm.spec =================================================================== RCS file: /cvs/pkgs/rpms/mm/devel/mm.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mm.spec 26 Feb 2009 01:46:22 -0000 1.8 +++ mm.spec 25 Jul 2009 14:38:39 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Shared memory allocation library Name: mm Version: 1.4.2 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD with advertising Group: System Environment/Libraries Source0: ftp://ftp.ossp.org/pkg/lib/mm/mm-%{version}.tar.gz @@ -77,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:39:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:39:01 +0000 (UTC) Subject: rpms/mm3d/devel mm3d.spec,1.4,1.5 Message-ID: <20090725143901.E143C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mm3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14965 Modified Files: mm3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mm3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/mm3d/devel/mm3d.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mm3d.spec 10 Mar 2009 08:04:15 -0000 1.4 +++ mm3d.spec 25 Jul 2009 14:39:01 -0000 1.5 @@ -5,7 +5,7 @@ Name: mm3d Version: 1.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 3D model editor Group: Applications/Multimedia @@ -118,6 +118,9 @@ update-desktop-database &> /dev/null || %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Dan Hor?k 1.3.8-1 - update to 1.3.8 From jkeating at fedoraproject.org Sat Jul 25 14:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:39:27 +0000 (UTC) Subject: rpms/mmdb/devel mmdb.spec,1.5,1.6 Message-ID: <20090725143927.29C5511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mmdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15216 Modified Files: mmdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mmdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mmdb/devel/mmdb.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mmdb.spec 20 May 2009 23:45:23 -0000 1.5 +++ mmdb.spec 25 Jul 2009 14:39:26 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Macromolecular coordinate library Name: mmdb Version: 1.21 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3 Group: System Environment/Libraries URL: http://www.ebi.ac.uk/~keb/cldoc/ @@ -87,6 +87,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Tim Fenn - 1.21-1 - update to 1.21 - remove examples From jkeating at fedoraproject.org Sat Jul 25 14:39:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:39:51 +0000 (UTC) Subject: rpms/mmv/devel mmv.spec,1.12,1.13 Message-ID: <20090725143951.5D68C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mmv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15505 Modified Files: mmv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mmv.spec =================================================================== RCS file: /cvs/pkgs/rpms/mmv/devel/mmv.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mmv.spec 2 Jun 2009 22:47:52 -0000 1.12 +++ mmv.spec 25 Jul 2009 14:39:51 -0000 1.13 @@ -1,6 +1,6 @@ Name: mmv Version: 1.01b -Release: 13%{?dist} +Release: 14%{?dist} Summary: Move/copy/append/link multiple files Group: Applications/File @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01b-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Zing - 1.01b-13 - enable LFS support - updated changelog and copyright files From spot at fedoraproject.org Sat Jul 25 14:39:56 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Sat, 25 Jul 2009 14:39:56 +0000 (UTC) Subject: rpms/perl-Template-Toolkit/devel .cvsignore, 1.6, 1.7 perl-Template-Toolkit.spec, 1.14, 1.15 sources, 1.6, 1.7 Message-ID: <20090725143956.D353211C02BC@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/perl-Template-Toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15584 Modified Files: .cvsignore perl-Template-Toolkit.spec sources Log Message: 2.22 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Template-Toolkit/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 13 Mar 2009 23:25:22 -0000 1.6 +++ .cvsignore 25 Jul 2009 14:39:56 -0000 1.7 @@ -1 +1,2 @@ -Template-Toolkit-2.20.tar.gz +Template-Toolkit-2.22.tar.gz +TT_v222_html_docs.tar.gz Index: perl-Template-Toolkit.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Template-Toolkit/devel/perl-Template-Toolkit.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Template-Toolkit.spec 13 Mar 2009 23:25:22 -0000 1.14 +++ perl-Template-Toolkit.spec 25 Jul 2009 14:39:56 -0000 1.15 @@ -1,11 +1,12 @@ Name: perl-Template-Toolkit -Version: 2.20 +Version: 2.22 Release: 1%{?dist} Summary: Template processing system Group: Development/Libraries License: GPL+ or Artistic URL: http://www.template-toolkit.org/ Source0: http://search.cpan.org/CPAN/authors/id/A/AB/ABW/Template-Toolkit-%{version}.tar.gz +Source1: http://tt2.org/download/TT_v222_html_docs.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(Test::More), tetex-dvips, tetex-latex @@ -13,6 +14,8 @@ BuildRequires: perl(AppConfig), perl(Te BuildRequires: perl(GD::Text), perl(Image::Info), perl(Image::Size), perl(Pod::POM) BuildRequires: perl(XML::DOM), perl(XML::RSS), perl(XML::XPath) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Provides: perl-Template-Toolkit-examples = %{version}-%{release} +Obsoletes: perl-Template-Toolkit-examples < %{version}-%{release} %description The Template Toolkit is a collection of modules which implement a @@ -22,17 +25,10 @@ dynamic web content, but it can be used any other kind of text based documents: HTML, XML, POD, PostScript, LaTeX, and so on. -%package examples -Summary: Examples of how to use Template Toolkit -Group: Documentation -Requires: %{name} = %{version}-%{release} - -%description examples -%{summary}. - %prep -%setup -q -n Template-Toolkit-%{version} +%setup -q -n Template-Toolkit-%{version} -a 1 find lib -type f | xargs chmod -c -x +find TT_v*_html_docs -depth -name .svn -type d -exec rm -rf {} \; # Filter false positive provides. cat < %{name}-prov @@ -46,17 +42,16 @@ EOF %define __perl_provides %{_builddir}/Template-Toolkit-%{version}/%{name}-prov chmod +x %{__perl_provides} -# enable examples, docstyle -sed -i 's|#html_docstyle();|html_docstyle();|g' Makefile.PL -sed -i 's|#html_examples();|html_examples();|g' Makefile.PL +# Convert file to UTF-8 +iconv -f iso-8859-1 -t utf-8 -o Changes{.utf8,} +mv Changes{.utf8,} %build CFLAGS="$RPM_OPT_FLAGS" %{__perl} Makefile.PL INSTALLDIRS=vendor \ - TT_PREFIX=$RPM_BUILD_ROOT%{_datadir}/tt2 TT_DBI=n TT_ACCEPT=y TT_BUILD_DOCS=y + TT_DBI=n TT_ACCEPT=y make %{?_smp_mflags} OPTIMIZE="$RPM_OPT_FLAGS" %install -rm -rf $RPM_BUILD_ROOT _docs # install (+ INSTALLARCHLIB) instead of pure_install to get docs # and the template library installed too make install \ @@ -68,9 +63,7 @@ find $RPM_BUILD_ROOT -type f -name .pack find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';' chmod -R u+w $RPM_BUILD_ROOT/* -mkdir _docs ; mv $RPM_BUILD_ROOT%{_datadir}/tt2/docs _docs # Nuke buildroot where it hides -sed -i "s|$RPM_BUILD_ROOT||g" $RPM_BUILD_ROOT%{_datadir}/tt2/examples/ttree.cfg sed -i "s|$RPM_BUILD_ROOT||g" $RPM_BUILD_ROOT%{perl_vendorarch}/Template/Config.pm %check @@ -81,23 +74,20 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc Changes HACKING README TODO _docs/* +%doc Changes HACKING README TODO TT_v*_html_docs/* %{_bindir}/tpage %{_bindir}/ttree %{perl_vendorarch}/Template.pm %{perl_vendorarch}/auto/Template %{perl_vendorarch}/Template -%{_datadir}/tt2 -# The examples get their own package due to size. -%exclude %{_datadir}/tt2/examples %{_mandir}/man1/*.1* %{_mandir}/man3/*.3* -%files examples -%defattr(-,root,root,-) -%{_datadir}/tt2/examples - %changelog +* Sat Jul 25 2009 Tom "spot" Callaway - 2.22-1 +- update to 2.22 +- obsolete examples package, upstream got rid of them + * Fri Mar 13 2009 Tom "spot" Callaway - 2.20-1 - update to 2.20 Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Template-Toolkit/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 13 Mar 2009 23:25:23 -0000 1.6 +++ sources 25 Jul 2009 14:39:56 -0000 1.7 @@ -1 +1,2 @@ -b1fac2d5df7b6b5f194af0ac0d9b7c73 Template-Toolkit-2.20.tar.gz +d98277f6420e5da6b93d99a8db2b3934 Template-Toolkit-2.22.tar.gz +587d909170fd7dcbe8a51485c49fa3e0 TT_v222_html_docs.tar.gz From jkeating at fedoraproject.org Sat Jul 25 14:40:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:40:16 +0000 (UTC) Subject: rpms/mnemosyne/devel mnemosyne.spec,1.3,1.4 Message-ID: <20090725144016.AAC5F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mnemosyne/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15873 Modified Files: mnemosyne.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mnemosyne.spec =================================================================== RCS file: /cvs/pkgs/rpms/mnemosyne/devel/mnemosyne.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mnemosyne.spec 26 Feb 2009 01:49:26 -0000 1.3 +++ mnemosyne.spec 25 Jul 2009 14:40:16 -0000 1.4 @@ -3,7 +3,7 @@ Name: mnemosyne Summary: Flash-card learning tool Version: 1.2 -Release: 2.r1%{?dist} +Release: 3.r1%{?dist} URL: http://www.mnemosyne-proj.org/ Source0: http://downloads.sourceforge.net/sourceforge/mnemosyne-proj/%{name}-%{version}-r1.tgz Patch0: %{name}-desktop.patch @@ -72,6 +72,9 @@ fi %{_datadir}/icons/hicolor/*/apps/%{name}.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-3.r1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-2.r1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:40:49 +0000 (UTC) Subject: rpms/mobile-broadband-provider-info/devel mobile-broadband-provider-info.spec, 1.2, 1.3 Message-ID: <20090725144049.2A29F11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mobile-broadband-provider-info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16193 Modified Files: mobile-broadband-provider-info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mobile-broadband-provider-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/mobile-broadband-provider-info/devel/mobile-broadband-provider-info.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mobile-broadband-provider-info.spec 7 Jul 2009 14:01:24 -0000 1.2 +++ mobile-broadband-provider-info.spec 25 Jul 2009 14:40:45 -0000 1.3 @@ -3,7 +3,7 @@ Summary: Mobile broadband provider database Name: mobile-broadband-provider-info Version: 1.%{upstream_version} -Release: 1%{?dist} +Release: 2%{?dist} # # Source from git://git.gnome.org/mobile-broadband-provider-info # tarball built with: @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_datadir}/%{name}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.20090707-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Dan Williams - 1.20090707-1 - Update to latest upstream release including: - T-Mobile USA From nim at fedoraproject.org Sat Jul 25 14:40:52 2009 From: nim at fedoraproject.org (nim) Date: Sat, 25 Jul 2009 14:40:52 +0000 (UTC) Subject: rpms/google-droid-fonts/devel .cvsignore, 1.3, 1.4 google-droid-fonts.spec, 1.8, 1.9 import.log, 1.5, 1.6 sources, 1.3, 1.4 Message-ID: <20090725144052.2AD5C11C04D2@cvs1.fedora.phx.redhat.com> Author: nim Update of /cvs/extras/rpms/google-droid-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16254/devel Modified Files: .cvsignore google-droid-fonts.spec import.log sources Log Message: stupid fixup Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Jul 2009 10:54:37 -0000 1.3 +++ .cvsignore 25 Jul 2009 14:40:50 -0000 1.4 @@ -1,9 +1,9 @@ DroidSans-Bold.ttf DroidSans.ttf DroidSansFallback.ttf +DroidSansJapanese.ttf DroidSansMono.ttf DroidSerif-Bold.ttf DroidSerif-BoldItalic.ttf DroidSerif-Italic.ttf DroidSerif-Regular.ttf -DroidSansJapanese.ttf Index: google-droid-fonts.spec =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/google-droid-fonts.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- google-droid-fonts.spec 25 Jul 2009 10:54:37 -0000 1.8 +++ google-droid-fonts.spec 25 Jul 2009 14:40:50 -0000 1.9 @@ -12,8 +12,7 @@ other screen text. Name: %{fontname}-fonts # No sane versionning upstream Version: 20090320 -Epoch: 1 -Release: 1%{?dist} +Release: 3%{?dist} Summary: General-purpose fonts released by Google as part of Android Group: User Interface/X @@ -140,7 +139,7 @@ rm -fr %{buildroot} %changelog * Sat Jul 25 2009 Nicolas Mailhot -- 20090320-1 +- 20090320-3 ? try to fit Japanese in * Fri Jul 24 2009 Fedora Release Engineering Index: import.log =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/import.log,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- import.log 25 Jul 2009 10:54:37 -0000 1.5 +++ import.log 25 Jul 2009 14:40:50 -0000 1.6 @@ -3,3 +3,4 @@ google-droid-fonts-1_0_112-3_fc11:HEAD:g google-droid-fonts-1_0_112-4_fc11:HEAD:google-droid-fonts-1.0.112-4.fc11.src.rpm:1233428004 google-droid-fonts-1_0_112-5_fc11:HEAD:google-droid-fonts-1.0.112-5.fc11.src.rpm:1235379417 google-droid-fonts-20090320-1_fc12:HEAD:google-droid-fonts-20090320-1.fc12.src.rpm:1248519226 +google-droid-fonts-20090320-3_fc12:HEAD:google-droid-fonts-20090320-3.fc12.src.rpm:1248532826 Index: sources =================================================================== RCS file: /cvs/extras/rpms/google-droid-fonts/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Jul 2009 10:54:37 -0000 1.3 +++ sources 25 Jul 2009 14:40:51 -0000 1.4 @@ -1,9 +1,9 @@ 2afdf28d5cdd079b41968cdabf1b469e DroidSans-Bold.ttf 6f28ad369fa0f2661cc2de7a7be9977e DroidSans.ttf 4caeadd734f4be9973163bdf02ea6cf5 DroidSansFallback.ttf +8fbc87c7c5089a8e86c670b93a78964f DroidSansJapanese.ttf 3922dfe38a36da7d6edfb1fe77b276fb DroidSansMono.ttf 849a92990a80cbb665bfc74fd03743bd DroidSerif-Bold.ttf a062025df92affc1331a05b7c07793fc DroidSerif-BoldItalic.ttf a2e7305a0ba8bb7091124f4cd1485fc9 DroidSerif-Italic.ttf bfb2f44a7c1deba39f7f4d39bff18eeb DroidSerif-Regular.ttf -8fbc87c7c5089a8e86c670b93a78964f DroidSansJapanese.ttf From jkeating at fedoraproject.org Sat Jul 25 14:41:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:41:16 +0000 (UTC) Subject: rpms/mock/devel mock.spec,1.75,1.76 Message-ID: <20090725144116.4169E11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16526 Modified Files: mock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mock.spec =================================================================== RCS file: /cvs/pkgs/rpms/mock/devel/mock.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- mock.spec 8 Jul 2009 23:06:23 -0000 1.75 +++ mock.spec 25 Jul 2009 14:41:16 -0000 1.76 @@ -11,7 +11,7 @@ Summary: Builds packages inside chroots Name: mock Version: %{release_version} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools Source: https://fedorahosted.org/mock/attachment/wiki/MockTarballs/%{name}-%{version}.tar.gz @@ -97,6 +97,9 @@ fi %attr(02775, root, mock) %dir /var/cache/mock %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Clark Williams - 0.9.17-1 - Patch from Jakub Jelinek for mounting /dev/pts correctly in the chroot (BZ# 510183) From jkeating at fedoraproject.org Sat Jul 25 14:41:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:41:32 +0000 (UTC) Subject: rpms/mod_annodex/devel mod_annodex.spec,1.10,1.11 Message-ID: <20090725144132.577B211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_annodex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16777 Modified Files: mod_annodex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_annodex.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_annodex/devel/mod_annodex.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mod_annodex.spec 26 Feb 2009 01:51:17 -0000 1.10 +++ mod_annodex.spec 25 Jul 2009 14:41:32 -0000 1.11 @@ -1,6 +1,6 @@ Name: mod_annodex Version: 0.2.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Apache module for server-side support of annodex media Group: System Environment/Daemons @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:41:46 +0000 (UTC) Subject: rpms/mod_auth_kerb/devel mod_auth_kerb.spec,1.23,1.24 Message-ID: <20090725144146.0F0DD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_kerb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16924 Modified Files: mod_auth_kerb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_kerb.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_kerb/devel/mod_auth_kerb.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- mod_auth_kerb.spec 26 Feb 2009 01:52:16 -0000 1.23 +++ mod_auth_kerb.spec 25 Jul 2009 14:41:45 -0000 1.24 @@ -2,7 +2,7 @@ Summary: Kerberos authentication module for HTTP Name: mod_auth_kerb Version: 5.4 -Release: 3 +Release: 4 License: BSD and MIT Group: System Environment/Daemons URL: http://modauthkerb.sourceforge.net/ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/httpd/modules/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:42:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:42:07 +0000 (UTC) Subject: rpms/mod_auth_mysql/devel mod_auth_mysql.spec,1.29,1.30 Message-ID: <20090725144207.2E8E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17133 Modified Files: mod_auth_mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_mysql/devel/mod_auth_mysql.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mod_auth_mysql.spec 26 Feb 2009 01:53:21 -0000 1.29 +++ mod_auth_mysql.spec 25 Jul 2009 14:42:06 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Basic authentication for the Apache web server using a MySQL database Name: mod_auth_mysql Version: 3.0.0 -Release: 8 +Release: 9 Epoch: 1 Group: System Environment/Daemons URL: http://modauthmysql.sourceforge.net/ @@ -47,6 +47,9 @@ install -m 644 $RPM_SOURCE_DIR/auth_mysq %config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.0.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.0.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:42:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:42:27 +0000 (UTC) Subject: rpms/mod_auth_ntlm_winbind/devel mod_auth_ntlm_winbind.spec, 1.7, 1.8 Message-ID: <20090725144227.08E4B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_ntlm_winbind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17489 Modified Files: mod_auth_ntlm_winbind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_ntlm_winbind.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_ntlm_winbind/devel/mod_auth_ntlm_winbind.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mod_auth_ntlm_winbind.spec 26 Feb 2009 01:54:32 -0000 1.7 +++ mod_auth_ntlm_winbind.spec 25 Jul 2009 14:42:26 -0000 1.8 @@ -4,7 +4,7 @@ Summary: NTLM authentication for the Apache web server using winbind daemon Name: mod_auth_ntlm_winbind Version: 0.0.0 -Release: 0.9.%{svn}%{?dist} +Release: 0.10.%{svn}%{?dist} Group: System Environment/Daemons License: ASL 2.0 URL: http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/mod_auth_ntlm_winbind/?root=lorikeet @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.0-0.10.20070129svn713 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.0-0.9.20070129svn713 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:42:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:42:55 +0000 (UTC) Subject: rpms/mod_auth_pam/devel mod_auth_pam.spec,1.10,1.11 Message-ID: <20090725144255.955D811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_pam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18169 Modified Files: mod_auth_pam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_pam.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_pam/devel/mod_auth_pam.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- mod_auth_pam.spec 26 Feb 2009 01:55:32 -0000 1.10 +++ mod_auth_pam.spec 25 Jul 2009 14:42:55 -0000 1.11 @@ -1,6 +1,6 @@ Name: mod_auth_pam Version: 1.1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: PAM authentication module for Apache Group: System Environment/Daemons @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:43:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:43:13 +0000 (UTC) Subject: rpms/mod_auth_pgsql/devel mod_auth_pgsql.spec,1.32,1.33 Message-ID: <20090725144313.D220711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_pgsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18564 Modified Files: mod_auth_pgsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_pgsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_pgsql/devel/mod_auth_pgsql.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- mod_auth_pgsql.spec 26 Feb 2009 01:56:33 -0000 1.32 +++ mod_auth_pgsql.spec 25 Jul 2009 14:43:13 -0000 1.33 @@ -3,7 +3,7 @@ Summary: Basic authentication for the Apache HTTP Server using a PostgreSQL database Name: mod_auth_pgsql Version: 2.0.3 -Release: 8 +Release: 9 Group: System Environment/Daemons URL: http://www.giuseppetanzilli.it/mod_auth_pgsql2/ Source: http://www.giuseppetanzilli.it/mod_auth_pgsql2/dist/mod_auth_pgsql-%{version}.tar.gz @@ -54,6 +54,9 @@ cp *.html $RPM_BUILD_ROOT%{contentdir}/m %config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:43:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:43:31 +0000 (UTC) Subject: rpms/mod_auth_shadow/devel mod_auth_shadow.spec,1.6,1.7 Message-ID: <20090725144331.F2D6211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_auth_shadow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18784 Modified Files: mod_auth_shadow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_auth_shadow.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_auth_shadow/devel/mod_auth_shadow.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mod_auth_shadow.spec 26 Feb 2009 01:57:30 -0000 1.6 +++ mod_auth_shadow.spec 25 Jul 2009 14:43:31 -0000 1.7 @@ -1,6 +1,6 @@ Name: mod_auth_shadow Version: 2.2 -Release: 6%{?dist} +Release: 7%{?dist} Source: http://downloads.sourceforge.net/mod-auth-shadow/%{name}-%{version}.tar.gz Source1: mod_auth_shadow.conf URL: http://mod-auth-shadow.sourceforge.net @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %doc CHANGES INSTALL README COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:43:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:43:47 +0000 (UTC) Subject: rpms/mod_authz_ldap/devel mod_authz_ldap.spec,1.21,1.22 Message-ID: <20090725144347.9FE6811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_authz_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18942 Modified Files: mod_authz_ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_authz_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_authz_ldap/devel/mod_authz_ldap.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- mod_authz_ldap.spec 26 Feb 2009 01:58:26 -0000 1.21 +++ mod_authz_ldap.spec 25 Jul 2009 14:43:47 -0000 1.22 @@ -2,7 +2,7 @@ Summary: LDAP authorization module for the Apache HTTP Server Name: mod_authz_ldap Version: 0.26 -Release: 12 +Release: 13 License: BSD Group: System Environment/Daemons URL: http://authzldap.othello.ch/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %doc NEWS AUTHORS ChangeLog COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.26-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.26-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:44:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:44:02 +0000 (UTC) Subject: rpms/mod_bw/devel mod_bw.spec,1.2,1.3 Message-ID: <20090725144402.CEE4C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_bw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19129 Modified Files: mod_bw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_bw.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_bw/devel/mod_bw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mod_bw.spec 26 Feb 2009 01:59:23 -0000 1.2 +++ mod_bw.spec 25 Jul 2009 14:44:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: mod_bw Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Bandwidth Limiter For Apache Group: System Environment/Daemons @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:44:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:44:18 +0000 (UTC) Subject: rpms/mod_cband/devel mod_cband.spec,1.9,1.10 Message-ID: <20090725144418.6E51811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_cband/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19261 Modified Files: mod_cband.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_cband.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_cband/devel/mod_cband.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mod_cband.spec 26 Feb 2009 02:00:24 -0000 1.9 +++ mod_cband.spec 25 Jul 2009 14:44:18 -0000 1.10 @@ -1,6 +1,6 @@ Name: mod_cband Version: 0.9.7.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Bandwidth limiting for virtual hosts Group: System Environment/Daemons License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/httpd/conf.d/mod_cband.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.7.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.7.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:44:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:44:33 +0000 (UTC) Subject: rpms/mod_dnssd/devel mod_dnssd.spec,1.9,1.10 Message-ID: <20090725144433.D61FF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_dnssd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19418 Modified Files: mod_dnssd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_dnssd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_dnssd/devel/mod_dnssd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mod_dnssd.spec 26 Feb 2009 02:01:19 -0000 1.9 +++ mod_dnssd.spec 25 Jul 2009 14:44:33 -0000 1.10 @@ -1,6 +1,6 @@ Name: mod_dnssd Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An Apache HTTPD module which adds Zeroconf support Group: System Environment/Daemons @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/httpd/modules/mod_dnssd.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:44:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:44:54 +0000 (UTC) Subject: rpms/mod_evasive/devel mod_evasive.spec,1.6,1.7 Message-ID: <20090725144454.865B111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_evasive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19595 Modified Files: mod_evasive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_evasive.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_evasive/devel/mod_evasive.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mod_evasive.spec 26 Feb 2009 02:02:14 -0000 1.6 +++ mod_evasive.spec 25 Jul 2009 14:44:54 -0000 1.7 @@ -1,6 +1,6 @@ Name: mod_evasive Version: 1.10.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Denial of Service evasion module for Apache Group: System Environment/Daemons @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.10.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.10.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:45:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:45:10 +0000 (UTC) Subject: rpms/mod_extract_forwarded/devel mod_extract_forwarded.spec, 1.5, 1.6 Message-ID: <20090725144510.48E1511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_extract_forwarded/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19764 Modified Files: mod_extract_forwarded.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_extract_forwarded.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_extract_forwarded/devel/mod_extract_forwarded.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mod_extract_forwarded.spec 26 Feb 2009 02:03:11 -0000 1.5 +++ mod_extract_forwarded.spec 25 Jul 2009 14:45:09 -0000 1.6 @@ -1,6 +1,6 @@ Name: mod_extract_forwarded Version: 2.0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Extract real source IP for forwarded HTTP requests Group: System Environment/Daemons @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:45:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:45:26 +0000 (UTC) Subject: rpms/mod_fcgid/devel mod_fcgid.spec,1.20,1.21 Message-ID: <20090725144526.8C17911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_fcgid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19960 Modified Files: mod_fcgid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_fcgid.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_fcgid/devel/mod_fcgid.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- mod_fcgid.spec 26 May 2009 15:52:47 -0000 1.20 +++ mod_fcgid.spec 25 Jul 2009 14:45:26 -0000 1.21 @@ -16,7 +16,7 @@ Name: mod_fcgid Version: 2.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Apache2 module for high-performance server-side scripting Group: System Environment/Daemons License: GPL+ @@ -175,6 +175,9 @@ exit 0 %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Paul Howarth 2.2-12 - Don't use /etc/httpd/run as basis of "run" directory as its DAC permissions are not permissive enough in F-11 onwards; instead, revert to From jkeating at fedoraproject.org Sat Jul 25 14:45:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:45:41 +0000 (UTC) Subject: rpms/mod_geoip/devel mod_geoip.spec,1.13,1.14 Message-ID: <20090725144541.241E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_geoip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20140 Modified Files: mod_geoip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_geoip.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_geoip/devel/mod_geoip.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mod_geoip.spec 26 Feb 2009 02:05:08 -0000 1.13 +++ mod_geoip.spec 25 Jul 2009 14:45:40 -0000 1.14 @@ -1,7 +1,7 @@ Summary: GeoIP module for the Apache HTTP Server Name: mod_geoip Version: 1.2.5 -Release: 3%{?dist} +Release: 4%{?dist} License: ASL 1.1 Group: System Environment/Daemons URL: http://www.maxmind.com/app/mod_geoip @@ -46,6 +46,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/httpd/conf.d/mod_geoip.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:45:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:45:57 +0000 (UTC) Subject: rpms/mod_limitipconn/devel mod_limitipconn.spec,1.2,1.3 Message-ID: <20090725144557.5AF3011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_limitipconn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20362 Modified Files: mod_limitipconn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_limitipconn.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_limitipconn/devel/mod_limitipconn.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mod_limitipconn.spec 26 Feb 2009 02:06:02 -0000 1.2 +++ mod_limitipconn.spec 25 Jul 2009 14:45:57 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Simultaneous connection limiting module for Apache Name: mod_limitipconn Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Daemons License: ASL 2.0 URL: http://dominia.org/djao/limitipconn2.html @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:46:13 +0000 (UTC) Subject: rpms/mod_line_edit/devel mod_line_edit.spec,1.4,1.5 Message-ID: <20090725144613.656DD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_line_edit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20586 Modified Files: mod_line_edit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_line_edit.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_line_edit/devel/mod_line_edit.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mod_line_edit.spec 26 Feb 2009 02:06:57 -0000 1.4 +++ mod_line_edit.spec 25 Jul 2009 14:46:13 -0000 1.5 @@ -6,7 +6,7 @@ Summary: A general-purpose filter for text documents Name: %{mod_name} Version: 1.0.0 -Release: 5%{?dist} +Release: 6%{?dist} Group: System Environment/Daemons License: GPLv2+ URL: http://apache.webthing.com/mod_line_edit/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %attr(0755,root,root) %{_libdir}/httpd/modules/%{mod_so} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:46:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:46:28 +0000 (UTC) Subject: rpms/mod_log_post/devel mod_log_post.spec,1.2,1.3 Message-ID: <20090725144628.9613111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_log_post/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20837 Modified Files: mod_log_post.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_log_post.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_log_post/devel/mod_log_post.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mod_log_post.spec 26 May 2009 22:23:44 -0000 1.2 +++ mod_log_post.spec 25 Jul 2009 14:46:28 -0000 1.3 @@ -2,7 +2,7 @@ Summary: Module for the Apache web serve Summary(de): Modul f?r den Apache Webserver zur Protokollierung von HTTP POST Name: mod_log_post Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Daemons License: GPLv2 with exceptions URL: http://ftp.robert-scheck.de/linux/%{name}/ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/httpd/conf.d/log_post.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Robert Scheck 0.1.0-1 - Upgrade to 0.1.0 - Initial spec file for Fedora and Red Hat Enterprise Linux From jkeating at fedoraproject.org Sat Jul 25 14:46:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:46:44 +0000 (UTC) Subject: rpms/mod_mono/devel mod_mono.spec,1.25,1.26 Message-ID: <20090725144644.0E37B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_mono/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21004 Modified Files: mod_mono.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_mono.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_mono/devel/mod_mono.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- mod_mono.spec 14 Jun 2009 11:19:53 -0000 1.25 +++ mod_mono.spec 25 Jul 2009 14:46:43 -0000 1.26 @@ -1,6 +1,6 @@ Name: mod_mono Version: 2.4.2 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://mono.ximian.com/monobuild/preview/sources-preview/ @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man8/mod_mono.8* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Paul F. Johnson 2.4.2-1 - Bump to 2.4.2 preview - Reenable ppc From jkeating at fedoraproject.org Sat Jul 25 14:46:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:46:59 +0000 (UTC) Subject: rpms/mod_nss/devel mod_nss.spec,1.16,1.17 Message-ID: <20090725144659.F0D3511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_nss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21194 Modified Files: mod_nss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_nss/devel/mod_nss.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- mod_nss.spec 5 Mar 2009 15:22:20 -0000 1.16 +++ mod_nss.spec 25 Jul 2009 14:46:59 -0000 1.17 @@ -1,6 +1,6 @@ Name: mod_nss Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SSL/TLS module for the Apache HTTP server Group: System Environment/Daemons License: ASL 2.0 @@ -110,6 +110,9 @@ fi %{_sbindir}/gencert %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Rob Crittenden - 1.0.8-1 - Update to 1.0.8 - Add patch that fixes NSPR layer bug From jkeating at fedoraproject.org Sat Jul 25 14:47:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:47:25 +0000 (UTC) Subject: rpms/mod_perl/devel mod_perl.spec,1.68,1.69 Message-ID: <20090725144725.461D811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21432 Modified Files: mod_perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_perl/devel/mod_perl.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- mod_perl.spec 26 Feb 2009 02:09:50 -0000 1.68 +++ mod_perl.spec 25 Jul 2009 14:47:25 -0000 1.69 @@ -2,7 +2,7 @@ Name: mod_perl Version: 2.0.4 -Release: 8 +Release: 9 Summary: An embedded Perl interpreter for the Apache HTTP Server Group: System Environment/Daemons @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/httpd/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:47:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:47:42 +0000 (UTC) Subject: rpms/mod_perlite/devel mod_perlite.spec,1.1,1.2 Message-ID: <20090725144742.D8E4011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_perlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21639 Modified Files: mod_perlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_perlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_perlite/devel/mod_perlite.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mod_perlite.spec 11 Apr 2009 05:06:28 -0000 1.1 +++ mod_perlite.spec 25 Jul 2009 14:47:42 -0000 1.2 @@ -7,7 +7,7 @@ Name: mod_perlite Version: 0.09 # I'm treating this as a pre-release as we don't have any actual tarballs yet. -Release: 0.2%{?tag:.%{tag}}%{?dist} +Release: 0.3%{?tag:.%{tag}}%{?dist} Summary: Kinder, gentler embedded Perl for the Apache HTTP Server Group: System Environment/Daemons @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-0.3.git20090314 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Chris Weyl 0.09-0.2.git20090314 - patch up tarball creation, per review From jkeating at fedoraproject.org Sat Jul 25 14:48:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:48:07 +0000 (UTC) Subject: rpms/mod_python/devel mod_python.spec,1.44,1.45 Message-ID: <20090725144807.3CC9011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21869 Modified Files: mod_python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_python.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_python/devel/mod_python.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- mod_python.spec 26 Feb 2009 02:10:49 -0000 1.44 +++ mod_python.spec 25 Jul 2009 14:48:06 -0000 1.45 @@ -4,7 +4,7 @@ Summary: An embedded Python interpreter for the Apache HTTP Server Name: mod_python Version: 3.3.1 -Release: 10 +Release: 11 Source: http://www.apache.org/dist/httpd/modpython/%{name}-%{version}.tgz Source1: python.conf Patch1: mod_python-3.1.3-ldflags.patch @@ -62,6 +62,9 @@ cp -a doc-html/* $RPM_BUILD_ROOT%{conten %{python_sitearch}/mod_python* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.3.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:48:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:48:36 +0000 (UTC) Subject: rpms/mod_revocator/devel mod_revocator.spec,1.7,1.8 Message-ID: <20090725144836.59E6411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_revocator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22154 Modified Files: mod_revocator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_revocator.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_revocator/devel/mod_revocator.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mod_revocator.spec 3 Mar 2009 23:23:31 -0000 1.7 +++ mod_revocator.spec 25 Jul 2009 14:48:35 -0000 1.8 @@ -1,6 +1,6 @@ Name: mod_revocator Version: 1.0.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: CRL retrieval module for the Apache HTTP server Group: System Environment/Daemons License: ASL 2.0 @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ldapget %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Robert Scheck - 1.0.2-7 - Solve the ppc64-redhat-linux-gnu configure target error From ensc at fedoraproject.org Sat Jul 25 14:52:49 2009 From: ensc at fedoraproject.org (ensc) Date: Sat, 25 Jul 2009 14:52:49 +0000 (UTC) Subject: rpms/dietlibc/devel ChangeLog.2005, NONE, 1.1 dietlibc-0.31-smp-fix.patch, NONE, 1.1 dietlibc-0.31-stackgap-minor.patch, NONE, 1.1 dietlibc-0.31-strip.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 dietlibc-0.28-setpriority.patch, 1.4, 1.5 dietlibc-0.29-scall.patch, 1.6, 1.7 dietlibc-0.30-longdouble.patch, 1.4, 1.5 dietlibc-0.31-defpath.patch, 1.4, 1.5 dietlibc-0.31-implicitfunc.patch, 1.7, 1.8 dietlibc-0.31-lcctime.patch, 1.4, 1.5 dietlibc-0.31-no-stack-protector.patch, 1.1, 1.2 dietlibc-0.31-noreturn.patch, 1.4, 1.5 dietlibc-0.31-pagesize.patch, 1.12, 1.13 dietlibc-0.31-printFG.patch, 1.8, 1.9 dietlibc-0.31-stacksmash-dyn.patch, 1.4, 1.5 dietlibc-0.31-stacksmash.patch, 1.4, 1.5 dietlibc-0.31-testsuite.patch, 1.7, 1.8 dietlibc-0.31.20080212-teststdout.patch, 1.4, 1.5 dietlibc.spec, 1.65, 1.66 lastver, 1.1, 1.2 sources, 1.13, 1.14 Message-ID: <20090725145250.02F6D11C02BC@cvs1.fedora.phx.redhat.com> Author: ensc Update of /cvs/extras/rpms/dietlibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23944 Modified Files: .cvsignore dietlibc-0.28-setpriority.patch dietlibc-0.29-scall.patch dietlibc-0.30-longdouble.patch dietlibc-0.31-defpath.patch dietlibc-0.31-implicitfunc.patch dietlibc-0.31-lcctime.patch dietlibc-0.31-no-stack-protector.patch dietlibc-0.31-noreturn.patch dietlibc-0.31-pagesize.patch dietlibc-0.31-printFG.patch dietlibc-0.31-stacksmash-dyn.patch dietlibc-0.31-stacksmash.patch dietlibc-0.31-testsuite.patch dietlibc-0.31.20080212-teststdout.patch dietlibc.spec lastver sources Added Files: ChangeLog.2005 dietlibc-0.31-smp-fix.patch dietlibc-0.31-stackgap-minor.patch dietlibc-0.31-strip.patch Log Message: updated --- NEW FILE ChangeLog.2005 --- * Sun Oct 30 2005 Enrico Scholz - 0.29-4 - added '-fno-stack-protector' to the CFLAGS * Sun Oct 30 2005 Enrico Scholz - 0.29-3 - removed '-fstack-protector' from CLI because it uses __stack_chk_fail which is not provided by dietlibc * Thu May 26 2005 Enrico Scholz - 0.29-2 - rebuilt * Tue May 24 2005 Enrico Scholz - 0.29-1 - updated to 0.29 - unset some compiler options which cause errors with gcc4 - rediffed -scall patch - removed most patches as already in upstream * Thu May 19 2005 Enrico Scholz - 0.28-6 - use %%dist instead of %%disttag - package some more %%doc files (reported by Chris Ricker) - add %%release to the BuildRoot (reported by Chris Ricker) - fixed URLs of the sources (reported by Chris Ricker) * Sun May 1 2005 Enrico Scholz - 0.28-5 - added Herbert Poetzl's syscall(2) implementation for x86_64 and sparc* architectures (see http://vserver.13thfloor.at/Experimental/delta-diet.diff); rediffed the .call patch - catch the case when syscall(2) is used on archs where it is not implemented yet - define MADV_* constants on HPPA and IA64 archs - fix *truncate64() handling on 64bit archs * Fri Mar 4 2005 Enrico Scholz - 0.28-4 - rebuild - fixed compilation with gcc4 - made nice(2) SUSv3 compliantly on x86_64 and other platforms (patch provided by Colin Hill) - build the dynamic libs for x86, x86_64 and arm only - fixed PPC issues in ISO mode (do not use the 'powerpc' macro but the '__powerpc__' one) - added some O_* -flags for the HPPA arch - use more modern flags for '-Os' * Tue Feb 1 2005 Enrico Scholz - 1:0.28-1 - updated to 0.28 - unset LD_RUN_PATH which would result in empty rpaths else - removed the waitpid patch; it is solved upstream * Tue Aug 17 2004 Enrico Scholz - 1:0.27-1 - updated to 0.27 * Fri Jun 11 2004 Enrico Scholz - 1:0.26-1 - updated to 0.26 * Fri Apr 9 2004 Enrico Scholz - 1:0.25-1 - updated to 0.25 * Sat Jan 17 2004 Enrico Scholz - 1:%VERSION.90.%DATE}-5 - renewed -snprintf patch * Tue Jan 6 2004 Enrico Scholz - 1:%VERSION.90.%DATE}-4 - applied -snprintf patch (from fedora dietlibc-0.24-2 package) * Tue Dec 30 2003 Enrico Scholz - 1:%VERSION.90.%DATE}-2 - added C99 patch * Thu Dec 4 2003 Enrico Scholz - 1:0.24-1 - updated to 0.24 * Tue Sep 16 2003 Enrico Scholz - 1:0.23-1 - updated to 0.23 * Fri Nov 8 2002 Enrico Scholz 1:0.21-1 - updated to 0.21 - removed unpackaged files in %%install-stage * Thu Jul 11 2002 Enrico Scholz 1:0.18-1 - updated to 0.18 * Thu Jul 4 2002 Enrico Scholz - Initial build. dietlibc-0.31-smp-fix.patch: Makefile | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) --- NEW FILE dietlibc-0.31-smp-fix.patch --- >From c1354c051ff98683508272385834d35198253542 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 25 Jul 2009 13:54:39 +0200 Subject: [PATCH 02/18] Fixed SMP build 'make -j' fails usually because $(OBJDIR) was not created yet when compiling files. This patch adds a $(OBJDIR)/.dirstamp target which is added as a dependency for object files and executes an 'mkdir'. Ditto for $(PICODIR) --- Makefile | 42 +++++++++++++++++++++--------------------- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Makefile b/Makefile index adc2779..8009cb4 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,7 @@ ILIBDIR=$(LIBDIR)-$(ARCH) HOME=$(shell pwd) -WHAT= $(OBJDIR) $(OBJDIR)/start.o $(OBJDIR)/dyn_start.o $(OBJDIR)/dyn_stop.o \ +WHAT= $(OBJDIR)/start.o $(OBJDIR)/dyn_start.o $(OBJDIR)/dyn_stop.o \ $(OBJDIR)/dietlibc.a $(OBJDIR)/liblatin1.a \ $(OBJDIR)/libcompat.a $(OBJDIR)/libm.a \ $(OBJDIR)/librpc.a $(OBJDIR)/libpthread.a \ @@ -150,30 +150,30 @@ PWD=$(shell pwd) # added real dynamic dietlibc.so PICODIR = pic-$(ARCH) -$(OBJDIR) $(PICODIR): - mkdir $@ - % :: %,v +%/.dirstamp: + mkdir $* + @touch $@ ifeq ($(CC),tcc) -$(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h +$(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h $(OBJDIR)/.dirstamp $(CROSS)cpp $(INC) $< | $(CROSS)as -o $@ -$(OBJDIR)/%.o: %.c +$(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp tcc -I. -Iinclude -c $< -o $@ $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ else -$(OBJDIR)/pstart.o: start.S +$(OBJDIR)/pstart.o: start.S $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -DPROFILING -c $< -o $@ -$(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h +$(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ -$(OBJDIR)/pthread_%.o: libpthread/pthread_%.c +$(OBJDIR)/pthread_%.o: libpthread/pthread_%.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ -$(OBJDIR)/%.o: %.c +$(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ -D__dietlibc__ $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ endif @@ -188,7 +188,7 @@ endif CC+=-D__dietlibc__ -$(OBJDIR)/crypt.o: libcrypt/crypt.c +$(OBJDIR)/crypt.o: libcrypt/crypt.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(SAFER_CFLAGS) -c $< -o $@ DIETLIBC_OBJ = $(OBJDIR)/unified.o \ @@ -203,7 +203,7 @@ $(OBJDIR)/dietlibc.a: $(DIETLIBC_OBJ) $(OBJDIR)/start.o $(OBJDIR)/librpc.a: $(LIBRPCOBJ) $(CROSS)ar cru $@ $(LIBRPCOBJ) -$(OBJDIR)/libcrypt.a: +$(OBJDIR)/libcrypt.a: $(OBJDIR)/.dirstamp touch dummy.c $(CROSS)$(CC) -c dummy.c $(CROSS)ar cru $@ dummy.o @@ -235,26 +235,26 @@ dyn: dyn_lib $(OBJDIR)/libdl.a: $(LIBDLOBJ) $(CROSS)ar cru $@ $(LIBDLOBJ) -dyn_lib: $(PICODIR) $(PICODIR)/libc.so $(PICODIR)/dstart.o \ +dyn_lib: $(PICODIR)/libc.so $(PICODIR)/dstart.o \ $(PICODIR)/dyn_so_start.o $(PICODIR)/dyn_start.o $(PICODIR)/dyn_stop.o \ $(PICODIR)/libpthread.so $(PICODIR)/libdl.so $(PICODIR)/libcompat.so \ $(PICODIR)/libm.so $(PICODIR)/diet-dyn $(PICODIR)/diet-dyn-i -$(PICODIR)/%.o: %.S $(ARCH)/syscalls.h +$(PICODIR)/%.o: %.S $(ARCH)/syscalls.h $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ -$(PICODIR)/pthread_%.o: libpthread/pthread_%.c +$(PICODIR)/pthread_%.o: libpthread/pthread_%.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ -$(PICODIR)/%.o: %.c +$(PICODIR)/%.o: %.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ -$(PICODIR)/dstart.o: start.S +$(PICODIR)/dstart.o: start.S $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ -$(PICODIR)/dyn_so_start.o: dyn_start.c +$(PICODIR)/dyn_so_start.o: dyn_start.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -D__DYN_LIB_SHARED -c $< -o $@ $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ @@ -272,13 +272,13 @@ DYN_LIBCOMPAT_OBJS = $(patsubst $(OBJDIR)/%.o,$(PICODIR)/%.o,$(LIBCOMPATOBJ)) DYN_LIBMATH_OBJS = $(patsubst $(OBJDIR)/%.o,$(PICODIR)/%.o,$(LIBMATHOBJ)) -$(PICODIR)/libc.so: $(PICODIR) $(DYN_LIBC_OBJ) +$(PICODIR)/libc.so: $(DYN_LIBC_OBJ) $(LD_UNSET) $(CROSS)$(CC) -nostdlib -shared -o $@ $(CFLAGS) -fPIC $(DYN_LIBC_OBJ) -lgcc -Wl,-soname=libc.so $(PICODIR)/libpthread.so: $(DYN_PTHREAD_OBJS) dietfeatures.h $(LD_UNSET) $(CROSS)$(CC) -nostdlib -shared -o $@ $(CFLAGS) -fPIC $(DYN_PTHREAD_OBJS) -L$(PICODIR) -lc -Wl,-soname=libpthread.so -$(PICODIR)/libdl.so: libdl/_dl_main.c dietfeatures.h +$(PICODIR)/libdl.so: libdl/_dl_main.c dietfeatures.h $(PICODIR)/.dirstamp $(LD_UNSET) $(CROSS)$(CC) -D__OD_CLEAN_ROOM -DNODIETREF -fPIC -nostdlib -shared -Bsymbolic -Wl,-Bsymbolic \ -o $@ $(SAFE_CFLAGS) $(INC) libdl/_dl_main.c -Wl,-soname=libdl.so @@ -330,7 +330,7 @@ $(OBJDIR)/load: chmod 755 $@ clean: - rm -f *.o *.a t t1 compile load elftrunc exports mapfile libdietc.so + rm -f *.o *.a t t1 compile load elftrunc exports mapfile libdietc.so .dirstamp rm -rf bin-* pic-* $(MAKE) -C examples clean $(MAKE) -C dynlinker clean -- 1.6.2.5 dietlibc-0.31-stackgap-minor.patch: stackgap.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) --- NEW FILE dietlibc-0.31-stackgap-minor.patch --- >From b993cb8bebea6870771bb66eae8b6d41f9e6e9e6 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 25 Jul 2009 15:34:44 +0200 Subject: [PATCH 17/18] minor cleanups in stackgap.c --- lib/stackgap.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/stackgap.c b/lib/stackgap.c index 5d51c5d..f30b58a 100644 --- a/lib/stackgap.c +++ b/lib/stackgap.c @@ -26,9 +26,9 @@ void* __tdataptr; static void findtlsdata(long* auxvec) { #if (__WORDSIZE == 64) - Elf64_Phdr* x=0; + Elf64_Phdr const * x=0; #else - Elf32_Phdr* x=0; + Elf32_Phdr const * x=0; #endif size_t i,n; #ifndef WANT_ELFINFO @@ -125,9 +125,9 @@ int stackgap(int argc,char* argv[],char* envp[]) { #endif #ifdef WANT_STACKGAP unsigned short s; + volatile char* gap; #endif #if defined(WANT_STACKGAP) || defined(WANT_SSP) - volatile char* gap; #ifndef WANT_ELFINFO rand=find_rand(auxvec); #else -- 1.6.2.5 dietlibc-0.31-strip.patch: Makefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) --- NEW FILE dietlibc-0.31-strip.patch --- >From 87682b6ad631272dfdc45e1c760331d803851c06 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 25 Jul 2009 15:12:43 +0200 Subject: [PATCH 03/18] Define and use $(STRIP) makefile variable This increases readability and makes it easier to turn off stripping of debug symbols. --- Makefile | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 8009cb4..dc23d1a 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,7 @@ CROSS= CC=gcc INC=-I. -isystem include +STRIP=$(CROSS)strip VPATH=lib:libstdio:libugly:libcruft:libcrypt:libshell:liblatin1:libcompat:libdl:librpc:libregex:libm:profiling @@ -161,7 +162,7 @@ $(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h $(OBJDIR)/.dirstamp $(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp tcc -I. -Iinclude -c $< -o $@ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ else $(OBJDIR)/pstart.o: start.S $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -DPROFILING -c $< -o $@ @@ -171,11 +172,11 @@ $(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h $(OBJDIR)/.dirstamp $(OBJDIR)/pthread_%.o: libpthread/pthread_%.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ $(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ -D__dietlibc__ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ endif ifeq ($(shell $(CC) -v 2>&1 | grep "gcc version"),gcc version 4.0.0) @@ -245,18 +246,18 @@ $(PICODIR)/%.o: %.S $(ARCH)/syscalls.h $(PICODIR)/.dirstamp $(PICODIR)/pthread_%.o: libpthread/pthread_%.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ - $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) $(STRIP) -x -R .comment -R .note $@ $(PICODIR)/%.o: %.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ - $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) $(STRIP) -x -R .comment -R .note $@ $(PICODIR)/dstart.o: start.S $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -c $< -o $@ $(PICODIR)/dyn_so_start.o: dyn_start.c $(PICODIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -fPIC -D__DYN_LIB -D__DYN_LIB_SHARED -c $< -o $@ - $(COMMENT) $(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) $(STRIP) -x -R .comment -R .note $@ DYN_LIBC_PIC = $(LIBOBJ) $(LIBSTDIOOBJ) $(LIBUGLYOBJ) \ $(LIBCRUFTOBJ) $(LIBCRYPTOBJ) $(LIBSHELLOBJ) $(LIBREGEXOBJ) @@ -305,19 +306,19 @@ CURNAME=$(notdir $(shell pwd)) $(OBJDIR)/diet: $(OBJDIR)/start.o $(OBJDIR)/dyn_start.o diet.c $(OBJDIR)/dietlibc.a $(OBJDIR)/dyn_stop.o $(CROSS)$(CC) -isystem include $(CFLAGS) -nostdlib -o $@ $^ -DDIETHOME=\"$(HOME)\" -DVERSION=\"$(VERSION)\" -lgcc - $(CROSS)strip -R .comment -R .note $@ + $(STRIP) -R .comment -R .note $@ $(OBJDIR)/diet-i: $(OBJDIR)/start.o $(OBJDIR)/dyn_start.o diet.c $(OBJDIR)/dietlibc.a $(OBJDIR)/dyn_stop.o $(CROSS)$(CC) -isystem include $(CFLAGS) -nostdlib -o $@ $^ -DDIETHOME=\"$(prefix)\" -DVERSION=\"$(VERSION)\" -DINSTALLVERSION -lgcc - $(CROSS)strip -R .comment -R .note $@ + $(STRIP) -R .comment -R .note $@ $(PICODIR)/diet-dyn: $(PICODIR)/start.o $(PICODIR)/dyn_start.o diet.c $(LD_UNSET) $(CROSS)$(CC) -isystem include $(CFLAGS) -fPIC -nostdlib -o $@ $^ -DDIETHOME=\"$(HOME)\" -D__DYN_LIB -DVERSION=\"$(VERSION)\" -L$(PICODIR) -lc -lgcc $(PICODIR)/dyn_stop.o -Wl,-dynamic-linker=$(HOME)/$(PICODIR)/libdl.so - $(CROSS)strip -R .command -R .note $@ + $(STRIP) -R .command -R .note $@ $(PICODIR)/diet-dyn-i: $(PICODIR)/start.o $(PICODIR)/dyn_start.o diet.c $(LD_UNSET) $(CROSS)$(CC) -isystem include $(CFLAGS) -fPIC -nostdlib -o $@ $^ -DDIETHOME=\"$(prefix)\" -D__DYN_LIB -DVERSION=\"$(VERSION)\" -L$(PICODIR) -lc -lgcc $(PICODIR)/dyn_stop.o -Wl,-dynamic-linker=$(ILIBDIR)/libdl.so -DINSTALLVERSION - $(CROSS)strip -R .command -R .note $@ + $(STRIP) -R .command -R .note $@ $(OBJDIR)/djb: $(OBJDIR)/compile $(OBJDIR)/load -- 1.6.2.5 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 1 Mar 2009 11:53:24 -0000 1.7 +++ .cvsignore 25 Jul 2009 14:52:48 -0000 1.8 @@ -1 +1,2 @@ -dietlibc-0.31.20090228.tar.bz2 +dietlibc-0.32.tar.bz2 +dietlibc-0.32.tar.bz2.sig dietlibc-0.28-setpriority.patch: __nice.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) Index: dietlibc-0.28-setpriority.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.28-setpriority.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.28-setpriority.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.28-setpriority.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From 5ba671b7b8446645f31fcf7928908950573c53f5 Mon Sep 17 00:00:00 2001 +From fdd7de4dbb4b214b45e1b53100110af4e4895458 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:49:05 +0200 -Subject: [PATCH] Return new nice value for nice(2) +Subject: [PATCH 01/18] Return new nice value for nice(2) Changed nice(2) to return the new nice value instead of 0/-1. --- @@ -29,5 +29,5 @@ index d751104..8e205c0 100644 } #endif -- -1.6.0.6 +1.6.2.5 dietlibc-0.29-scall.patch: syscall.S | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) Index: dietlibc-0.29-scall.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.29-scall.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dietlibc-0.29-scall.patch 1 Mar 2009 11:53:24 -0000 1.6 +++ dietlibc-0.29-scall.patch 25 Jul 2009 14:52:48 -0000 1.7 @@ -1,7 +1,7 @@ -From 5dc478088a3358ba32ae2b4c104735eb966b62d1 Mon Sep 17 00:00:00 2001 +From b855ea26129711c87489ce185def60ea46a77698 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:50:24 +0200 -Subject: [PATCH] Sanity checks for syscall availability +Subject: [PATCH 05/18] Sanity checks for syscall availability Catch the case when syscall(2) is not implemented for the actual arch instead of jumping to the next function and executing the wrong code @@ -28,5 +28,5 @@ index c9f72bb..4188167 100644 #endif .size syscall, . - syscall -- -1.6.0.6 +1.6.2.5 dietlibc-0.30-longdouble.patch: gamma.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) Index: dietlibc-0.30-longdouble.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.30-longdouble.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.30-longdouble.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.30-longdouble.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From e4be3aa68fdfb87c35378adc3b947e805b923fcf Mon Sep 17 00:00:00 2001 +From 81eaf0eab3a66c6e055dc243fc70b204d33c59a2 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:54:03 +0200 -Subject: [PATCH] Workaround PPC build issues +Subject: [PATCH 06/18] Workaround PPC build issues Fixes https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=182118 and http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27054 @@ -47,5 +47,5 @@ index 9682f35..370bec6 100644 static const double coeff[] = { B0, B1, B2, B3, B4, B5, B6, B7, B8, B9, B10 }; int signgam; -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-defpath.patch: paths.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: dietlibc-0.31-defpath.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-defpath.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31-defpath.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31-defpath.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From 4fee9a2dc10208f639590cabc07e7f3b91cf0d17 Mon Sep 17 00:00:00 2001 +From 6aecc55de013adb4cf83be57a85092a96034731c Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 18:00:19 +0200 -Subject: [PATCH] Security fix for proper $PATH +Subject: [PATCH 07/18] Security fix for proper $PATH Removed '.' from the default $PATH. --- @@ -22,5 +22,5 @@ index 553b4fa..9bf216f 100644 #define _PATH_DEVNULL "/dev/null" -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-implicitfunc.patch: getservbyname.c | 1 + stdlib/testsort.c | 2 ++ stdlib/tst-calloc.c | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) Index: dietlibc-0.31-implicitfunc.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-implicitfunc.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dietlibc-0.31-implicitfunc.patch 1 Mar 2009 11:53:24 -0000 1.7 +++ dietlibc-0.31-implicitfunc.patch 25 Jul 2009 14:52:48 -0000 1.8 @@ -1,7 +1,7 @@ -From 50c65fce74b343c43161d8194d36aa52ebed51ec Mon Sep 17 00:00:00 2001 +From 1a0c2661fa8f3ad43c7d38915c967ad6aac987f9 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:43:08 +0200 -Subject: [PATCH] Fixes for -Werror-no-implicit-functions +Subject: [PATCH 14/18] Fixes for -Werror-no-implicit-functions Some fixes for issues preventing builds with '-Werror-implicit-function-declaration'. @@ -46,5 +46,5 @@ index a9b9e2a..049117b 100644 #include #include -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-lcctime.patch: strftime.c | 1 + strptime.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) Index: dietlibc-0.31-lcctime.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-lcctime.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31-lcctime.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31-lcctime.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From 7e9b745e0cca4916c29b40fac68cb98d91904b09 Mon Sep 17 00:00:00 2001 +From 93df169bb52d83027d77f17c30212a1b109cfc9d Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:42:20 +0200 -Subject: [PATCH] Fixes/enhancements in str?time() functions +Subject: [PATCH 13/18] Fixes/enhancements in str?time() functions This patch changes the used format for %x and %X specifiers in strptime(3) to match these specified by SUSv2. It adds support @@ -42,5 +42,5 @@ index 9d7f530..d19f309 100644 case 'y': i=getint(&s,2); -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-no-stack-protector.patch: Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: dietlibc-0.31-no-stack-protector.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-no-stack-protector.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- dietlibc-0.31-no-stack-protector.patch 1 Mar 2009 11:53:24 -0000 1.1 +++ dietlibc-0.31-no-stack-protector.patch 25 Jul 2009 14:52:48 -0000 1.2 @@ -1,17 +1,17 @@ -From 3bbcb9a3a908d1aceb9f69118c1ed17a8d6d1871 Mon Sep 17 00:00:00 2001 +From f49499c7c3a6791249588ab4863d6e9eb1ba1010 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 28 Feb 2009 13:32:45 +0100 -Subject: [PATCH] build some files without stack-protector +Subject: [PATCH 04/18] Build some files without stack-protector --- Makefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile -index 0cd0105..46ef360 100644 +index dc23d1a..ec97fe9 100644 --- a/Makefile +++ b/Makefile -@@ -128,6 +128,8 @@ LIBPTHREAD_OBJS=$(patsubst libpthread/%.c,$(OBJDIR)/%.o,$(shell ./threadsafe.sh) +@@ -129,6 +129,8 @@ LIBPTHREAD_OBJS=$(patsubst libpthread/%.c,$(OBJDIR)/%.o,$(shell ./threadsafe.sh) LIBGMON_OBJS=$(OBJDIR)/__mcount.o $(OBJDIR)/monitor.o $(OBJDIR)/profil.o @@ -20,15 +20,15 @@ index 0cd0105..46ef360 100644 include $(ARCH)/Makefile.add LIBMATHOBJ=$(patsubst %,$(OBJDIR)/%,$(LIBMATH)) -@@ -177,6 +179,8 @@ $(OBJDIR)/stack_smash_handler2.o: XCFLAGS:=-fno-omit-frame-pointer - $(OBJDIR)/%.o: %.c - $(CROSS)$(CC) $(INC) $(CFLAGS) $(XCFLAGS) -c $< -o $@ -D__dietlibc__ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ +@@ -177,6 +179,8 @@ $(OBJDIR)/pthread_%.o: libpthread/pthread_%.c $(OBJDIR)/.dirstamp + $(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp + $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ -D__dietlibc__ + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ + +$(addprefix $(OBJDIR)/,$(NO_STACK_PROTECTOR)): XCFLAGS+=-fno-stack-protector endif ifeq ($(shell $(CC) -v 2>&1 | grep "gcc version"),gcc version 4.0.0) -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-noreturn.patch: stdlib.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: dietlibc-0.31-noreturn.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-noreturn.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31-noreturn.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31-noreturn.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From c895c51d84b36cf649764193f33f296728b27bdc Mon Sep 17 00:00:00 2001 +From a4e9c68f8d10d81bca7b285c100405492b7687da Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:43:42 +0200 -Subject: [PATCH] __noreturn__ annotation for abort(3) +Subject: [PATCH 15/18] __noreturn__ annotation for abort(3) SUSv2 says about abort(3): @@ -27,5 +27,5 @@ index 34f3a7f..0cea604 100644 extern int rand(void) __THROW; extern int rand_r(unsigned int *seed) __THROW; -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-pagesize.patch: alpha/start.S | 9 +++++ arm/start.S | 13 ++++++- dietdirent.h | 6 ++- dietelfinfo.h | 20 +++++++++++ dietfeatures.h | 14 ++++++++ dietpagesize.h | 31 +++++++++++++++++ dynlinker/ldso_start.S | 9 +++++ i386/start.S | 7 ++++ ia64/start.S | 10 +++++ include/sys/shm.h | 9 ----- lib/__get_elf_aux_value.c | 14 ++++++++ lib/alloc.c | 9 ++--- lib/closedir.c | 4 +- lib/mmap64.c | 6 ++- lib/opendir.c | 4 +- lib/readdir.c | 2 - lib/readdir64.c | 6 +-- lib/stackgap.c | 28 +++++++++++++++- libcruft/getpagesize.c | 28 +++++++--------- libcruft/sysconf.c | 17 ++++++--- mips/start.S | 9 +++++ parisc/start.S | 10 +++++ ppc/start.S | 9 +++++ ppc64/start.S | 9 +++++ s390/start.S | 11 ++++++ s390x/start.S | 11 ++++++ sparc/shmat.c | 8 +--- sparc/start.S | 11 ++++++ sparc64/start.S | 11 ++++++ syscalls.s/environ.S | 16 +++++++++ test/Makefile | 2 - test/runtests.sh | 2 - test/sysconf.c | 80 ++++++++++++++++++++++++++++++++++++++++++++++ x86_64/start.S | 17 +++++++++ 34 files changed, 400 insertions(+), 52 deletions(-) Index: dietlibc-0.31-pagesize.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-pagesize.patch,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- dietlibc-0.31-pagesize.patch 1 Mar 2009 11:53:24 -0000 1.12 +++ dietlibc-0.31-pagesize.patch 25 Jul 2009 14:52:48 -0000 1.13 @@ -1,7 +1,7 @@ -From 2f762bc732fef1c0e91b7e920c025783d204100e Mon Sep 17 00:00:00 2001 +From e6aa8f40136da35a259bcc92026aa2c8f0c935ff Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:35:14 +0200 -Subject: [PATCH] Support for dynamic PAGE_SIZE +Subject: [PATCH 11/18] Support for dynamic PAGE_SIZE This patch adds support for dynamic PAGE_SIZE values. It is a little bit invasive in several aspects: @@ -82,7 +82,7 @@ use a type derived from __WORD_SIZE. lib/opendir.c | 4 ++- lib/readdir.c | 2 +- lib/readdir64.c | 6 ++-- - lib/stackgap.c | 20 +++++++++++- + lib/stackgap.c | 28 +++++++++++++++- libcruft/getpagesize.c | 28 +++++++-------- libcruft/sysconf.c | 17 +++++++--- mips/start.S | 9 +++++ @@ -99,7 +99,7 @@ use a type derived from __WORD_SIZE. test/runtests.sh | 2 +- test/sysconf.c | 80 +++++++++++++++++++++++++++++++++++++++++++++ x86_64/start.S | 16 +++++++++ - 34 files changed, 392 insertions(+), 51 deletions(-) + 34 files changed, 400 insertions(+), 51 deletions(-) create mode 100644 dietelfinfo.h create mode 100644 dietpagesize.h create mode 100644 lib/__get_elf_aux_value.c @@ -173,7 +173,7 @@ index dbd7206..c9c7127 100644 +#define __DIRSTREAM_BUF_SIZE (__DIET_PAGE_SIZE - offsetof(struct __dirstream, buf)) diff --git a/dietelfinfo.h b/dietelfinfo.h new file mode 100644 -index 0000000..f18627b +index 0000000..de8c717 --- /dev/null +++ b/dietelfinfo.h @@ -0,0 +1,20 @@ @@ -194,7 +194,7 @@ index 0000000..f18627b +typedef uint32_t __diet_elf_addr_t; +#endif + -+__diet_elf_addr_t * __get_elf_aux_value(unsigned int tag) ++__diet_elf_addr_t const * __get_elf_aux_value(unsigned int tag) + __attribute__((__visibility__("hidden"),__const__)) __pure; +#endif diff --git a/dietfeatures.h b/dietfeatures.h @@ -345,17 +345,17 @@ index 9b2d04d..70bb17e 100644 extern int shmdt (const void *shmaddr) __THROW; diff --git a/lib/__get_elf_aux_value.c b/lib/__get_elf_aux_value.c new file mode 100644 -index 0000000..6ddddb4 +index 0000000..8a2e3bc --- /dev/null +++ b/lib/__get_elf_aux_value.c @@ -0,0 +1,14 @@ +#include +#include "../dietelfinfo.h" + -+__diet_elf_addr_t *__get_elf_aux_value(unsigned int tag) ++__diet_elf_addr_t const *__get_elf_aux_value(unsigned int tag) +{ + extern __diet_elf_addr_t const * const __elfinfo; -+ __diet_elf_addr_t *aux_ptr; ++ __diet_elf_addr_t const *aux_ptr; + + for (aux_ptr = __elfinfo; aux_ptr[0]!=AT_NULL; aux_ptr += 2) + if (aux_ptr[0]==tag) @@ -505,7 +505,7 @@ index 924f0a8..06d073b 100644 if (errno==ENOSYS) { trygetdents64=0; diff --git a/lib/stackgap.c b/lib/stackgap.c -index 0149bbe..49ad489 100644 +index e974e2c..5d51c5d 100644 --- a/lib/stackgap.c +++ b/lib/stackgap.c @@ -6,6 +6,7 @@ @@ -524,18 +524,23 @@ index 0149bbe..49ad489 100644 while (*auxvec) { if (auxvec[0]==3) { x=(void*)auxvec[1]; -@@ -37,6 +39,10 @@ static void findtlsdata(long* auxvec) { +@@ -37,6 +39,15 @@ static void findtlsdata(long* auxvec) { } auxvec+=2; } /* if we don't find the entry, the kernel let us down */ +#else -+ (void)auxvec; -+ x = __get_elf_aux_value(AT_PHDR); ++ { ++ __diet_elf_addr_t const *x_addr = __get_elf_aux_value(AT_PHDR); ++ ++ (void)auxvec; ++ if (x_addr) ++ x = (__typeof__(x)) *x_addr; ++ } +#endif if (!x) return; /* a kernel this old does not support thread local storage anyway */ - n=x->p_memsz/sizeof(*x); - for (i=1; ip_type!=PT_PHDR) return; /* should start with PT_PHDR */ + /* if it doesn't, assume there is no thread local storage */ +@@ -92,6 +103,7 @@ static void setup_tls(tcbhead_t* mainthread) { } #endif @@ -543,7 +548,7 @@ index 0149bbe..49ad489 100644 static void* find_rand(long* x) { while (*x) { if (*x==25) -@@ -98,20 +105,27 @@ static void* find_rand(long* x) { +@@ -100,20 +112,30 @@ static void* find_rand(long* x) { } return NULL; } @@ -567,12 +572,15 @@ index 0149bbe..49ad489 100644 +#ifndef WANT_ELFINFO rand=find_rand(auxvec); +#else -+ rand = __get_elf_aux_value(25); ++ { ++ __diet_elf_addr_t const *rand_addr = __get_elf_aux_value(25); ++ rand = rand_addr ? (void *)*rand_addr : NULL; ++ } +#endif if (!rand) { char myrand[10]; int fd=open("/dev/urandom",O_RDONLY); -@@ -132,7 +146,11 @@ int stackgap(int argc,char* argv[],char* envp[]) { +@@ -134,7 +156,11 @@ int stackgap(int argc,char* argv[],char* envp[]) { #endif #if defined(WANT_SSP) || defined(WANT_TLS) @@ -585,7 +593,7 @@ index 0149bbe..49ad489 100644 memcpy(tlsdata,__tdataptr,__tdatasize); memset(tlsdata+__tdatasize,0,__tmemsize-__tdatasize); diff --git a/libcruft/getpagesize.c b/libcruft/getpagesize.c -index 5ff8973..80f476b 100644 +index 5ff8973..ac701cf 100644 --- a/libcruft/getpagesize.c +++ b/libcruft/getpagesize.c @@ -1,25 +1,23 @@ @@ -614,7 +622,7 @@ index 5ff8973..80f476b 100644 + static size_t pgsz; + + if (__unlikely(pgsz==0)) { -+ __diet_elf_addr_t *v = __get_elf_aux_value(AT_PAGESZ); ++ __diet_elf_addr_t const *v = __get_elf_aux_value(AT_PAGESZ); + pgsz = *v; /* causes segfault when 'v==NULL' */ } - return PAGE_SIZE; @@ -628,26 +636,26 @@ index 5ff8973..80f476b 100644 size_t getpagesize(void) __attribute__((weak,alias("__libc_getpagesize"))); - diff --git a/libcruft/sysconf.c b/libcruft/sysconf.c -index e9c15cb..b98195c 100644 +index 5a6259c..507de94 100644 --- a/libcruft/sysconf.c +++ b/libcruft/sysconf.c -@@ -3,6 +3,9 @@ - #include +@@ -4,6 +4,9 @@ #include + #include +#include "dietelfinfo.h" +#include "dietpagesize.h" + extern int __sc_nr_cpus(); - long sysconf(int name) -@@ -16,6 +19,14 @@ long sysconf(int name) + static long physpages() { +@@ -40,6 +43,14 @@ long sysconf(int name) return limit.rlim_cur; } case _SC_CLK_TCK: +#ifdef WANT_ELFINFO + { -+ __diet_elf_addr_t *v = __get_elf_aux_value(AT_CLKTCK); ++ __diet_elf_addr_t const *v = __get_elf_aux_value(AT_CLKTCK); + if (v) + return *v; + } @@ -656,7 +664,7 @@ index e9c15cb..b98195c 100644 #ifdef __alpha__ return 1024; #else -@@ -23,11 +34,7 @@ long sysconf(int name) +@@ -47,11 +58,7 @@ long sysconf(int name) #endif case _SC_PAGESIZE: @@ -667,8 +675,8 @@ index e9c15cb..b98195c 100644 -#endif + return __libc_getpagesize(); - case _SC_ARG_MAX: - return ARG_MAX; + case _SC_PHYS_PAGES: + return physpages(); diff --git a/mips/start.S b/mips/start.S index 57144b3..3cf3433 100644 --- a/mips/start.S @@ -1039,5 +1047,5 @@ index adc461a..8b4f3c9 100644 #ifdef PROFILING pushq %rdi /* save reg args */ -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-printFG.patch: include/stdlib.h | 6 ++++- lib/__dtostr.c | 18 +++++++++++----- lib/__v_printf.c | 59 +++++++++++++++++++++++++++++-------------------------- test/printf.c | 45 ++++++++++++++++++++++++++++++++++++----- 4 files changed, 88 insertions(+), 40 deletions(-) Index: dietlibc-0.31-printFG.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-printFG.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- dietlibc-0.31-printFG.patch 1 Mar 2009 11:53:24 -0000 1.8 +++ dietlibc-0.31-printFG.patch 25 Jul 2009 14:52:48 -0000 1.9 @@ -1,7 +1,7 @@ -From a38148e35b746f3325d39aca189a38e808c5585e Mon Sep 17 00:00:00 2001 +From d10d2f6fca4e391fa863d771dd8c5f7c01d7dfa4 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:39:23 +0200 -Subject: [PATCH] Fixes/enhancements for INF/NAN handling in printf() +Subject: [PATCH 12/18] Fixes/enhancements for INF/NAN handling in printf() This patch adds support for uppercase 'F' and 'G' printf format specifiers. It fixes handling of -INF values in __dtostr() too; @@ -271,5 +271,5 @@ index 719461a..ef6050d 100644 return EXIT_SUCCESS; } -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-stacksmash-dyn.patch: stack_smash_handler2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: dietlibc-0.31-stacksmash-dyn.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-stacksmash-dyn.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31-stacksmash-dyn.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31-stacksmash-dyn.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From 62f02d841ea2fb19e365af01892e793ed923ce06 Mon Sep 17 00:00:00 2001 +From 729c8524b8a5f3a4bf4ebda7ae23c0a10ef62560 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:57:09 +0200 -Subject: [PATCH] __stack_chk_fail_local function +Subject: [PATCH 09/18] __stack_chk_fail_local function Added __stack_chk_fail_local() function as an alias for __stack_chk_fail(). This is required for dynamic linking. @@ -22,5 +22,5 @@ index ecefeb8..b03c0d5 100644 /* earlier versions of ProPolice actually gave the address and function * name as arguments to the handler, so it could print some useful -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-stacksmash.patch: Makefile | 3 ++- lib/stack_smash_handler2.c | 11 +++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) Index: dietlibc-0.31-stacksmash.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-stacksmash.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31-stacksmash.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31-stacksmash.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From f8b1f860c0038613c31b800ff0466fc1c4e25823 Mon Sep 17 00:00:00 2001 +From 6838387d66f76e8acb227102d46549a26e7b217c Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:56:07 +0200 -Subject: [PATCH] Enhanced __stack_chk_fail +Subject: [PATCH 08/18] Enhanced __stack_chk_fail * modified __stack_chk_fail() to trigger a segfault by accessing address 0x0. Every system with an MMU known by me, segfaults @@ -15,21 +15,21 @@ Subject: [PATCH] Enhanced __stack_chk_fa 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile -index adc2779..0cd0105 100644 +index ec97fe9..9ea5078 100644 --- a/Makefile +++ b/Makefile -@@ -172,9 +172,10 @@ $(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h - $(OBJDIR)/pthread_%.o: libpthread/pthread_%.c +@@ -175,9 +175,10 @@ $(OBJDIR)/%.o: %.S $(ARCH)/syscalls.h $(OBJDIR)/.dirstamp + $(OBJDIR)/pthread_%.o: libpthread/pthread_%.c $(OBJDIR)/.dirstamp $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ +$(OBJDIR)/stack_smash_handler2.o: XCFLAGS:=-fno-omit-frame-pointer - $(OBJDIR)/%.o: %.c + $(OBJDIR)/%.o: %.c $(OBJDIR)/.dirstamp - $(CROSS)$(CC) $(INC) $(CFLAGS) -c $< -o $@ -D__dietlibc__ + $(CROSS)$(CC) $(INC) $(CFLAGS) $(XCFLAGS) -c $< -o $@ -D__dietlibc__ - $(COMMENT) -$(CROSS)strip -x -R .comment -R .note $@ - endif + $(COMMENT) -$(STRIP) -x -R .comment -R .note $@ + $(addprefix $(OBJDIR)/,$(NO_STACK_PROTECTOR)): XCFLAGS+=-fno-stack-protector diff --git a/lib/stack_smash_handler2.c b/lib/stack_smash_handler2.c index 9e85099..ecefeb8 100644 --- a/lib/stack_smash_handler2.c @@ -50,5 +50,5 @@ index 9e85099..ecefeb8 100644 + *(char *)0 = 0; } -- -1.6.0.6 +1.6.2.5 dietlibc-0.31-testsuite.patch: Makefile | 2 +- asprintf.c | 2 +- bsearch.c | 2 +- byteswap.c | 8 ++++---- cycles.c | 2 +- getmntent.c | 6 +----- math.c | 29 +++++++++++++++++++++++++++++ mktime.c | 6 +++--- printftest.c | 6 +++--- rand48.c | 12 ++++++------ runtests.sh | 2 +- speed.c | 4 ++-- stdio/tstscanf.c | 4 ++-- stdlib/tst-malloc.c | 6 +++++- stdlib/tst-strtod.c | 4 ++-- sysenter.c | 6 +++--- time/tst-strftime.c | 6 +++--- time/tst-strptime.c | 24 ++++++++++++++++++++---- 18 files changed, 88 insertions(+), 43 deletions(-) Index: dietlibc-0.31-testsuite.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31-testsuite.patch,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dietlibc-0.31-testsuite.patch 1 Mar 2009 11:53:24 -0000 1.7 +++ dietlibc-0.31-testsuite.patch 25 Jul 2009 14:52:48 -0000 1.8 @@ -1,7 +1,7 @@ -From 02a0efbc861696460826282e5d0c1e706644991a Mon Sep 17 00:00:00 2001 +From 7227ec436a737f13d8bc1fd9bf8f8995d073eb0b Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:41:23 +0200 -Subject: [PATCH] Several testsuite fixes/enhancments +Subject: [PATCH 16/18] Several testsuite fixes/enhancments * test/getmntent.c: I removed the checks which called endmntent() multiple times resp. with a NULL pointer. Behavior in first @@ -457,5 +457,5 @@ index 6277ea6..2773180 100644 printf ("not all of `%s' read\n", day_tests[i].input); result = 1; -- -1.6.0.6 +1.6.2.5 dietlibc-0.31.20080212-teststdout.patch: atexit.c | 2 +- malloc-debugger.c | 2 +- sendfile.c | 2 +- waitpid.c | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) Index: dietlibc-0.31.20080212-teststdout.patch =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc-0.31.20080212-teststdout.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- dietlibc-0.31.20080212-teststdout.patch 1 Mar 2009 11:53:24 -0000 1.4 +++ dietlibc-0.31.20080212-teststdout.patch 25 Jul 2009 14:52:48 -0000 1.5 @@ -1,7 +1,7 @@ -From fd63f368885bbb3e637866a2651348cfce7f69d2 Mon Sep 17 00:00:00 2001 +From 7bf571cbff4c43098d9b1cd2b4bbd9457bff5b60 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 19 Apr 2008 17:45:11 +0200 -Subject: [PATCH] Use stdout instead of stderr in testsuite +Subject: [PATCH 10/18] Use stdout instead of stderr in testsuite This patches uses stdout instead stderr when giving out normal status messages in the testsuite. @@ -63,5 +63,5 @@ index fe2cb5b..92c0b0e 100644 _exit(23); } -- -1.6.0.6 +1.6.2.5 Index: dietlibc.spec =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/dietlibc.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- dietlibc.spec 24 Jul 2009 20:15:23 -0000 1.65 +++ dietlibc.spec 25 Jul 2009 14:52:48 -0000 1.66 @@ -4,7 +4,7 @@ ## --with dynamic ... enable dynamic lib support -%global snapshot 20090228 +#global snapshot 20090228 %global pkglibdir %_prefix/lib/dietlibc %ifarch %ix86 x86_64 @@ -27,8 +27,8 @@ Summary: Small libc implementation Name: dietlibc -Version: 0.31 -Release: %release_func 9%{?snapshot:.%snapshot} +Version: 0.32 +Release: %release_func 0%{?snapshot:.%snapshot} License: GPLv2 Group: Development/Libraries URL: http://www.fefe.de/dietlibc/ @@ -55,6 +55,9 @@ Patch47: dietlibc-0.31-lcctime.patch Patch48: dietlibc-0.31-implicitfunc.patch Patch49: dietlibc-0.31-noreturn.patch Patch50: dietlibc-0.31-no-stack-protector.patch +Patch51: dietlibc-0.31-smp-fix.patch +Patch52: dietlibc-0.31-stackgap-minor.patch +Patch53: dietlibc-0.31-strip.patch BuildRoot: %_tmppath/%name-%version-%release-buildroot %{?with_dynamic:Requires: dietlibc-lib = %version-%release} %{!?with_dynamic:Obsoletes: dietlibc-lib < %version-%release} @@ -112,6 +115,10 @@ This package contains the dynamic librar %prep %setup -q %{?snapshot:-n %name-%version.%snapshot} %patch1 -p1 -b .nice +%patch51 -p1 -b .smp +%patch53 -p1 -b .strip +%patch50 -p1 -b .no-stack-protector + %patch10 -p1 -b .scall %patch30 -p1 -b .longdouble %patch31 -p1 -b .defpath @@ -125,7 +132,7 @@ This package contains the dynamic librar %patch47 -p1 -b .lcctime %patch48 -p1 -b .implicitfunc %patch49 -p1 -b .noreturn -%patch50 -p1 -b .no-stack-protector +%patch52 -p1 -b .stackgap %if %{without ssp} %patch20 -p1 -b .nostackprotector @@ -144,10 +151,8 @@ sed -i \ dietfeatures.h %endif -sed -i -e 's!strip !: !g' Makefile - %global fixcflags -fomit-frame-pointer -fno-exceptions -fno-asynchronous-unwind-tables %xtra_fixcflags -Os -g3 -Werror-implicit-function-declaration -%global basemakeflags prefix=%pkglibdir BINDIR=%_bindir MAN1DIR=%_mandir/man1 COMMENT=: CFLAGS="$RPM_OPT_FLAGS %fixcflags $XTRA_CFLAGS" PDIET=%pkglibdir +%global basemakeflags prefix=%pkglibdir BINDIR=%_bindir MAN1DIR=%_mandir/man1 CFLAGS="$RPM_OPT_FLAGS %fixcflags $XTRA_CFLAGS" PDIET=%pkglibdir STRIP=: %global makeflags %basemakeflags for i in `find test -name 'runtests.sh'`; do @@ -188,6 +193,8 @@ bash ./runtests-X.sh %clean rm -rf $RPM_BUILD_ROOT +%changelog + %files %defattr(-,root,root,-) %doc AUTHOR BUGS CAVEAT CHANGES COPYING FAQ PORTING README* @@ -219,6 +226,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Enrico Scholz - 0.32-0 +- updated to 0.32 +- fixed stackgap/auxvec patch +- added patches to fix SMP builds and to prevent object file stripping +- moved %%changelog entries from 2005 and before into ChangeLog.2005 file + * Fri Jul 24 2009 Fedora Release Engineering - 0.31-9.20090228 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -304,85 +317,3 @@ rm -rf $RPM_BUILD_ROOT * Sat Feb 18 2006 Enrico Scholz - 0.29-6 - added '-Os' to the CFLAGS - exclude PPC arch due to strange compilation errors - -* Sun Oct 30 2005 Enrico Scholz - 0.29-4 -- added '-fno-stack-protector' to the CFLAGS - -* Sun Oct 30 2005 Enrico Scholz - 0.29-3 -- removed '-fstack-protector' from CLI because it uses __stack_chk_fail - which is not provided by dietlibc - -* Thu May 26 2005 Enrico Scholz - 0.29-2 -- rebuilt - -* Tue May 24 2005 Enrico Scholz - 0.29-1 -- updated to 0.29 -- unset some compiler options which cause errors with gcc4 -- rediffed -scall patch -- removed most patches as already in upstream - -* Thu May 19 2005 Enrico Scholz - 0.28-6 -- use %%dist instead of %%disttag -- package some more %%doc files (reported by Chris Ricker) -- add %%release to the BuildRoot (reported by Chris Ricker) -- fixed URLs of the sources (reported by Chris Ricker) - -* Sun May 1 2005 Enrico Scholz - 0.28-5 -- added Herbert Poetzl's syscall(2) implementation for x86_64 and - sparc* architectures (see - http://vserver.13thfloor.at/Experimental/delta-diet.diff); rediffed - the .call patch -- catch the case when syscall(2) is used on archs where it is not - implemented yet -- define MADV_* constants on HPPA and IA64 archs -- fix *truncate64() handling on 64bit archs - -* Fri Mar 4 2005 Enrico Scholz - 0.28-4 -- rebuild -- fixed compilation with gcc4 -- made nice(2) SUSv3 compliantly on x86_64 and other platforms (patch - provided by Colin Hill) -- build the dynamic libs for x86, x86_64 and arm only -- fixed PPC issues in ISO mode (do not use the 'powerpc' macro but the - '__powerpc__' one) -- added some O_* -flags for the HPPA arch -- use more modern flags for '-Os' - -* Tue Feb 1 2005 Enrico Scholz - 1:0.28-1 -- updated to 0.28 -- unset LD_RUN_PATH which would result in empty rpaths else -- removed the waitpid patch; it is solved upstream - -* Tue Aug 17 2004 Enrico Scholz - 1:0.27-1 -- updated to 0.27 - -* Fri Jun 11 2004 Enrico Scholz - 1:0.26-1 -- updated to 0.26 - -* Fri Apr 9 2004 Enrico Scholz - 1:0.25-1 -- updated to 0.25 - -* Sat Jan 17 2004 Enrico Scholz - 1:%VERSION.90.%DATE}-5 -- renewed -snprintf patch - -* Tue Jan 6 2004 Enrico Scholz - 1:%VERSION.90.%DATE}-4 -- applied -snprintf patch (from fedora dietlibc-0.24-2 package) - -* Tue Dec 30 2003 Enrico Scholz - 1:%VERSION.90.%DATE}-2 -- added C99 patch - -* Thu Dec 4 2003 Enrico Scholz - 1:0.24-1 -- updated to 0.24 - -* Tue Sep 16 2003 Enrico Scholz - 1:0.23-1 -- updated to 0.23 - -* Fri Nov 8 2002 Enrico Scholz 1:0.21-1 -- updated to 0.21 -- removed unpackaged files in %%install-stage - -* Thu Jul 11 2002 Enrico Scholz 1:0.18-1 -- updated to 0.18 - -* Thu Jul 4 2002 Enrico Scholz -- Initial build. Index: lastver =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/lastver,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- lastver 1 Sep 2007 12:34:41 -0000 1.1 +++ lastver 25 Jul 2009 14:52:48 -0000 1.2 @@ -1 +1 @@ -0.31 +0.32 Index: sources =================================================================== RCS file: /cvs/extras/rpms/dietlibc/devel/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 1 Mar 2009 11:53:24 -0000 1.13 +++ sources 25 Jul 2009 14:52:48 -0000 1.14 @@ -1 +1,2 @@ -e627aa62e21a812add91bd7a2b7d9e05 dietlibc-0.31.20090228.tar.bz2 +0098761c17924c15e21d25acdda4a8b5 dietlibc-0.32.tar.bz2 +f2c6737dc9597558da34deed1246c802 dietlibc-0.32.tar.bz2.sig From jkeating at fedoraproject.org Sat Jul 25 14:55:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:55:15 +0000 (UTC) Subject: rpms/mod_security/devel mod_security.spec,1.31,1.32 Message-ID: <20090725145515.6682111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_security/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25125 Modified Files: mod_security.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_security.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_security/devel/mod_security.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mod_security.spec 12 Mar 2009 09:39:50 -0000 1.31 +++ mod_security.spec 25 Jul 2009 14:55:15 -0000 1.32 @@ -1,7 +1,7 @@ Summary: Security module for the Apache HTTP Server Name: mod_security Version: 2.5.9 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://www.modsecurity.org/ Group: System Environment/Daemons @@ -54,6 +54,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/optional_rules/*.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Michael Fleming 2.5.9-1 - Update to upstream release 2.5.9 - Fixes potential DoS' in multipart request and PDF XSS handling From jkeating at fedoraproject.org Sat Jul 25 14:55:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:55:30 +0000 (UTC) Subject: rpms/mod_selinux/devel mod_selinux.spec,1.3,1.4 Message-ID: <20090725145530.1782D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_selinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25322 Modified Files: mod_selinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_selinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_selinux/devel/mod_selinux.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mod_selinux.spec 11 Jun 2009 04:07:15 -0000 1.3 +++ mod_selinux.spec 25 Jul 2009 14:55:29 -0000 1.4 @@ -2,7 +2,7 @@ Name: mod_selinux Version: 2.2.2015 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Apache/SELinux plus module Group: System Environment/Daemons License: ASL 2.0 @@ -84,6 +84,9 @@ fi %{_datadir}/selinux/*/%{name}.pp %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.2015-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 KaiGai Kohei - 2.2.2015-1 - update: add support to use translated format in MLS-range From jkeating at fedoraproject.org Sat Jul 25 14:55:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:55:44 +0000 (UTC) Subject: rpms/mod_suphp/devel mod_suphp.spec,1.19,1.20 Message-ID: <20090725145544.2C15511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_suphp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25496 Modified Files: mod_suphp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_suphp.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_suphp/devel/mod_suphp.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- mod_suphp.spec 26 Feb 2009 02:14:32 -0000 1.19 +++ mod_suphp.spec 25 Jul 2009 14:55:44 -0000 1.20 @@ -25,7 +25,7 @@ Summary: An apache2 module for executing PHP scripts with the permissions of their owners Name: mod_suphp Version: 0.6.3 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://www.suphp.org/download/suphp-%{version}.tar.gz @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:56:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:56:01 +0000 (UTC) Subject: rpms/mod_wsgi/devel mod_wsgi.spec,1.11,1.12 Message-ID: <20090725145601.7E28011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_wsgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25702 Modified Files: mod_wsgi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mod_wsgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_wsgi/devel/mod_wsgi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mod_wsgi.spec 2 Jul 2009 19:10:59 -0000 1.11 +++ mod_wsgi.spec 25 Jul 2009 14:56:01 -0000 1.12 @@ -1,6 +1,6 @@ Name: mod_wsgi Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A WSGI interface for Python web applications in Apache Group: System Environment/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 James Bowes 2.5-1 - Update to 2.5 From jkeating at fedoraproject.org Sat Jul 25 14:56:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:56:15 +0000 (UTC) Subject: rpms/modello/devel modello.spec,1.4,1.5 Message-ID: <20090725145615.552FB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/modello/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25890 Modified Files: modello.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: modello.spec =================================================================== RCS file: /cvs/pkgs/rpms/modello/devel/modello.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- modello.spec 26 Feb 2009 02:16:26 -0000 1.4 +++ modello.spec 25 Jul 2009 14:56:15 -0000 1.5 @@ -39,7 +39,7 @@ Name: modello Version: 1.0 -Release: 0.2.a8.4.4%{?dist} +Release: 0.3.a8.4.4%{?dist} Epoch: 0 Summary: Modello Data Model toolkit License: MIT @@ -245,6 +245,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.0-0.3.a8.4.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.0-0.2.a8.4.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:56:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:56:30 +0000 (UTC) Subject: rpms/module-init-tools/devel module-init-tools.spec,1.88,1.89 Message-ID: <20090725145630.6F9E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/module-init-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26080 Modified Files: module-init-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: module-init-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/module-init-tools/devel/module-init-tools.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- module-init-tools.spec 27 May 2009 18:54:34 -0000 1.88 +++ module-init-tools.spec 25 Jul 2009 14:56:30 -0000 1.89 @@ -2,7 +2,7 @@ Summary: Kernel module management utilit Name: module-init-tools Version: 3.9 #define PreRelease -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Kernel #Source: http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-%{version}%{PreRelease}.tar.bz2 @@ -85,6 +85,9 @@ fi %ghost %config(noreplace) %verify(not md5 size mtime) /etc/modprobe.d/local.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Jon Masters - 3.9 - Rebase to latest upstream. From jkeating at fedoraproject.org Sat Jul 25 14:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:56:45 +0000 (UTC) Subject: rpms/moe/devel moe.spec,1.4,1.5 Message-ID: <20090725145645.BC17211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26267 Modified Files: moe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moe.spec =================================================================== RCS file: /cvs/pkgs/rpms/moe/devel/moe.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- moe.spec 19 Apr 2009 17:45:34 -0000 1.4 +++ moe.spec 25 Jul 2009 14:56:45 -0000 1.5 @@ -1,6 +1,6 @@ Name: moe Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A powerful clean text editor Group: Applications/Editors @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Debarshi Ray 1.0-5 - Fixed configure to respect the environment's CFLAGS and CXXFLAGS settings. From jkeating at fedoraproject.org Sat Jul 25 14:57:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:57:01 +0000 (UTC) Subject: rpms/moin/devel moin.spec,1.29,1.30 Message-ID: <20090725145701.5DE3311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26481 Modified Files: moin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moin.spec =================================================================== RCS file: /cvs/pkgs/rpms/moin/devel/moin.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- moin.spec 12 Jul 2009 17:31:41 -0000 1.29 +++ moin.spec 25 Jul 2009 14:57:01 -0000 1.30 @@ -3,7 +3,7 @@ Summary: MoinMoin is a WikiEngine to collaborate on easily editable web pages Name: moin Version: 1.8.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://moinmo.in/ @@ -54,6 +54,9 @@ rm -r wiki/htdocs/applets/FCKeditor/edit %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Ville-Pekka Vainio 1.8.4-2 - Remove the filemanager directory from the embedded FCKeditor, it contains code with know security vulnerabilities, even though that code couldn't From jkeating at fedoraproject.org Sat Jul 25 14:57:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:57:18 +0000 (UTC) Subject: rpms/moin-latex/devel moin-latex.spec,1.6,1.7 Message-ID: <20090725145718.D5F2111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moin-latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26673 Modified Files: moin-latex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/moin-latex/devel/moin-latex.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- moin-latex.spec 26 Feb 2009 02:20:21 -0000 1.6 +++ moin-latex.spec 25 Jul 2009 14:57:17 -0000 1.7 @@ -1,7 +1,7 @@ Summary: LaTeX plugin for the MoinMoin wiki Name: moin-latex Version: 0 -Release: 0.20051128.4%{?dist} +Release: 0.20051129.4%{?dist} License: GPLv2 Group: Applications/Internet URL: http://johannes.sipsolutions.net/Projects/new-moinmoin-latex @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.20051129.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.20051128.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:57:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:57:33 +0000 (UTC) Subject: rpms/mojito/devel mojito.spec,1.6,1.7 Message-ID: <20090725145733.CD5BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mojito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26923 Modified Files: mojito.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mojito.spec =================================================================== RCS file: /cvs/pkgs/rpms/mojito/devel/mojito.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mojito.spec 18 Jul 2009 10:31:57 -0000 1.6 +++ mojito.spec 25 Jul 2009 14:57:33 -0000 1.7 @@ -1,6 +1,6 @@ Name: mojito Version: 0.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A social network data aggregator Group: Applications/Internet @@ -103,6 +103,9 @@ rm -rf %{buildroot} %{_libdir}/libmojito-keystore.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Peter Robinson 0.19-1 - Update to 0.19 From jkeating at fedoraproject.org Sat Jul 25 14:57:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:57:56 +0000 (UTC) Subject: rpms/mon/devel mon.spec,1.3,1.4 Message-ID: <20090725145756.1AA2711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27118 Modified Files: mon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mon.spec =================================================================== RCS file: /cvs/pkgs/rpms/mon/devel/mon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mon.spec 26 Feb 2009 02:21:22 -0000 1.3 +++ mon.spec 25 Jul 2009 14:57:53 -0000 1.4 @@ -6,7 +6,7 @@ Name: mon Summary: General-purpose resource monitoring system Version: 1.2.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.kernel.org/software/mon/ @@ -162,6 +162,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:58:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:58:14 +0000 (UTC) Subject: rpms/mona/devel mona.spec,1.4,1.5 Message-ID: <20090725145814.6C3BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mona/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27395 Modified Files: mona.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mona.spec =================================================================== RCS file: /cvs/pkgs/rpms/mona/devel/mona.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mona.spec 26 Feb 2009 02:22:20 -0000 1.4 +++ mona.spec 25 Jul 2009 14:58:13 -0000 1.5 @@ -24,7 +24,7 @@ Name: mona Version: %{upver}r%{uprel} -Release: 2%{?dist} +Release: 3%{?dist} Summary: A decision procedure for the WS1S and WS2S logics Group: Applications/Engineering @@ -184,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT %{xemacs_lispdir}/mona-mode.el %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4r13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4r13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:58:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:58:30 +0000 (UTC) Subject: rpms/monit/devel monit.spec,1.8,1.9 Message-ID: <20090725145830.795E711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27661 Modified Files: monit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monit.spec =================================================================== RCS file: /cvs/pkgs/rpms/monit/devel/monit.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- monit.spec 26 Feb 2009 02:23:18 -0000 1.8 +++ monit.spec 25 Jul 2009 14:58:30 -0000 1.9 @@ -1,6 +1,6 @@ Name: monit Version: 4.10.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Manages and monitors processes, files, directories and devices Group: Applications/Internet @@ -96,6 +96,9 @@ fi %{_mandir}/man1/monit.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.10.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.10.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:58:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:58:46 +0000 (UTC) Subject: rpms/monitor-edid/devel monitor-edid.spec,1.3,1.4 Message-ID: <20090725145846.3891411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monitor-edid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27846 Modified Files: monitor-edid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monitor-edid.spec =================================================================== RCS file: /cvs/pkgs/rpms/monitor-edid/devel/monitor-edid.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- monitor-edid.spec 26 Feb 2009 02:24:18 -0000 1.3 +++ monitor-edid.spec 25 Jul 2009 14:58:45 -0000 1.4 @@ -7,7 +7,7 @@ Group: System Environment/Base Url: http://wiki.mandriva.com/en/Tools/monitor-edid Version: 2.0 -Release: 2%{?dist} +Release: 3%{?dist} # run monitor-edid-makesource.sh to create Source0: %{name}-%{version}.tar.bz2 @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:59:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:59:00 +0000 (UTC) Subject: rpms/monkey-bubble/devel monkey-bubble.spec,1.19,1.20 Message-ID: <20090725145900.370C611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monkey-bubble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28069 Modified Files: monkey-bubble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monkey-bubble.spec =================================================================== RCS file: /cvs/pkgs/rpms/monkey-bubble/devel/monkey-bubble.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- monkey-bubble.spec 26 Feb 2009 02:25:16 -0000 1.19 +++ monkey-bubble.spec 25 Jul 2009 14:59:00 -0000 1.20 @@ -1,6 +1,6 @@ Name: monkey-bubble Version: 0.4.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Game in the spirit of Frozen Bubble Group: Amusements/Games License: GPLv2+ @@ -109,6 +109,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 14:59:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:59:19 +0000 (UTC) Subject: rpms/mono/devel mono.spec,1.137,1.138 Message-ID: <20090725145919.1E82B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28243 Modified Files: mono.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono/devel/mono.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- mono.spec 18 Jul 2009 07:47:10 -0000 1.137 +++ mono.spec 25 Jul 2009 14:59:18 -0000 1.138 @@ -1,6 +1,6 @@ Name: mono Version: 2.4.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A .NET runtime environment Group: Development/Languages @@ -721,6 +721,9 @@ install monodir %{buildroot}%{_bindir} %{_libdir}/pkgconfig/monodoc.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Paul F. Johnson 2.4.2.2-1 - Patch for cve-2009-0217 From jkeating at fedoraproject.org Sat Jul 25 14:59:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:59:33 +0000 (UTC) Subject: rpms/mono-addins/devel mono-addins.spec,1.18,1.19 Message-ID: <20090725145933.1F9D211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-addins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28487 Modified Files: mono-addins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-addins.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-addins/devel/mono-addins.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- mono-addins.spec 25 May 2009 22:36:45 -0000 1.18 +++ mono-addins.spec 25 Jul 2009 14:59:32 -0000 1.19 @@ -3,7 +3,7 @@ Name: mono-addins Version: 0.4 -Release: 7.20091702svn%{svnver}.1%{?dist} +Release: 8.20091702svn%{svnver}.1%{?dist} Summary: Addins for mono Group: Development/Languages License: MIT @@ -68,6 +68,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/pkgconfig/mono-addins* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-8.20091702svn127062.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien 0.4-7.20091702svn127062.1 - Build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 14:59:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 14:59:48 +0000 (UTC) Subject: rpms/mono-basic/devel mono-basic.spec,1.26,1.27 Message-ID: <20090725145948.E5E9F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-basic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28701 Modified Files: mono-basic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-basic.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-basic/devel/mono-basic.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- mono-basic.spec 23 Jun 2009 20:14:07 -0000 1.26 +++ mono-basic.spec 25 Jul 2009 14:59:48 -0000 1.27 @@ -2,7 +2,7 @@ Name: mono-basic Version: 2.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: VisualBasic.NET support for mono Group: Development/Languages License: LGPLv2+ @@ -79,6 +79,9 @@ EOF %{_libdir}/pkgconfig/mono-basic.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Paul F. Johnson 2.4.2-2 - Bump to 2.4.2 RC1 - Drop R mono-winforms From jkeating at fedoraproject.org Sat Jul 25 15:00:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:00:03 +0000 (UTC) Subject: rpms/mono-cecil-flowanalysis/devel mono-cecil-flowanalysis.spec, 1.8, 1.9 Message-ID: <20090725150003.F077C11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-cecil-flowanalysis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28886 Modified Files: mono-cecil-flowanalysis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-cecil-flowanalysis.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-cecil-flowanalysis/devel/mono-cecil-flowanalysis.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mono-cecil-flowanalysis.spec 26 Feb 2009 02:29:14 -0000 1.8 +++ mono-cecil-flowanalysis.spec 25 Jul 2009 15:00:03 -0000 1.9 @@ -2,7 +2,7 @@ Name: mono-cecil-flowanalysis Version: 0.1 -Release: 0.8.20080409svn100264%{?dist} +Release: 0.9.20080409svn100264%{?dist} Summary: Flowanalysis engine for Cecil URL: http://anonsvn.mono-project.com/viewcvs/trunk/cecil/flowanalysis/ License: MIT @@ -59,6 +59,9 @@ gacutil -i bin/Cecil.FlowAnalysis.dll -f %{_libdir}/pkgconfig/cecil-flowanalysis.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-0.9.20080409svn100264 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-0.8.20080409svn100264 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:00:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:00:30 +0000 (UTC) Subject: rpms/mono-debugger/devel mono-debugger.spec,1.27,1.28 Message-ID: <20090725150030.C2E9F11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-debugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29103 Modified Files: mono-debugger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-debugger.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-debugger/devel/mono-debugger.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mono-debugger.spec 9 Jul 2009 22:23:28 -0000 1.27 +++ mono-debugger.spec 25 Jul 2009 15:00:30 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A debugger for Mono Name: mono-debugger Version: 2.4.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://www.go-mono.com/sources-stable/ @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/mono-debugger-frontend.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Paul F. Johnson 2.4.2.1-1 - Bump to 2.4.2.1 From jkeating at fedoraproject.org Sat Jul 25 15:00:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:00:50 +0000 (UTC) Subject: rpms/mono-nat/devel mono-nat.spec,1.5,1.6 Message-ID: <20090725150050.3A33911C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-nat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29280 Modified Files: mono-nat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-nat.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-nat/devel/mono-nat.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mono-nat.spec 1 Jul 2009 18:07:34 -0000 1.5 +++ mono-nat.spec 25 Jul 2009 15:00:49 -0000 1.6 @@ -2,7 +2,7 @@ Name: mono-nat Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: .NET library for automatic port forwarding Group: Development/Libraries License: MIT @@ -54,6 +54,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/pkgconfig/mono.nat.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Paul Lange - 1.0.2-1 - Update to 1.0.2 From jkeating at fedoraproject.org Sat Jul 25 15:01:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:01:09 +0000 (UTC) Subject: rpms/mono-ndoc/devel mono-ndoc.spec,1.3,1.4 Message-ID: <20090725150109.A729311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-ndoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29476 Modified Files: mono-ndoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-ndoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-ndoc/devel/mono-ndoc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mono-ndoc.spec 26 Feb 2009 02:32:12 -0000 1.3 +++ mono-ndoc.spec 25 Jul 2009 15:01:08 -0000 1.4 @@ -2,7 +2,7 @@ Name: mono-ndoc Version: 1.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Code Documentation Generator for .NET URL: http://ndoc.sourceforge.net/ License: GPLv2+ @@ -90,6 +90,9 @@ rm -rf -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndoc.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:01:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:01:48 +0000 (UTC) Subject: rpms/mono-nunit22/devel mono-nunit22.spec,1.13,1.14 Message-ID: <20090725150148.9B7BE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-nunit22/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29778 Modified Files: mono-nunit22.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-nunit22.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-nunit22/devel/mono-nunit22.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mono-nunit22.spec 3 Mar 2009 22:58:21 -0000 1.13 +++ mono-nunit22.spec 25 Jul 2009 15:01:48 -0000 1.14 @@ -2,7 +2,7 @@ Name: mono-nunit22 Version: 2.2.10 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Unit-testing framework for .NET URL: http://www.nunit.org/ License: MIT with acknowledgement @@ -78,6 +78,9 @@ rm -rf -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:2.2.10-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Tom "spot" Callaway - 1:2.2.10-9 - forgot to include epoch in devel requires From jkeating at fedoraproject.org Sat Jul 25 15:02:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:02:07 +0000 (UTC) Subject: rpms/mono-sharpcvslib/devel mono-sharpcvslib.spec,1.8,1.9 Message-ID: <20090725150207.AC0FF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-sharpcvslib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30005 Modified Files: mono-sharpcvslib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-sharpcvslib.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-sharpcvslib/devel/mono-sharpcvslib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mono-sharpcvslib.spec 2 Mar 2009 23:36:52 -0000 1.8 +++ mono-sharpcvslib.spec 25 Jul 2009 15:02:07 -0000 1.9 @@ -2,7 +2,7 @@ Name: mono-sharpcvslib Version: 0.35 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Client cvs library written in C# URL: http://sharpcvslib.sourceforge.net/ # Exception: Permission is given to use this library in commercial closed-source applications @@ -95,6 +95,9 @@ mv src/doc/api/msdn/tree.js{.utf8,} %{_libdir}/pkgconfig/sharpcvslib.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.35-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Tom "spot" Callaway 0.35-9 - rebuild again From jkeating at fedoraproject.org Sat Jul 25 15:02:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:02:28 +0000 (UTC) Subject: rpms/mono-tools/devel mono-tools.spec,1.40,1.41 Message-ID: <20090725150228.9086A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30223 Modified Files: mono-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-tools/devel/mono-tools.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- mono-tools.spec 12 Jul 2009 08:01:25 -0000 1.40 +++ mono-tools.spec 25 Jul 2009 15:02:28 -0000 1.41 @@ -3,7 +3,7 @@ Summary: A collection of tools for mono applications Name: mono-tools Version: 2.4.2 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: Development/Tools Source0: %{name}-%{version}.tar.bz2 @@ -135,6 +135,9 @@ desktop-file-install --vendor fedora \ %{_libdir}/monodoc/web/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Christian Krause - 2.4.2-4 - Add version to requirement of gtkhtml-sharp to distinguish between gtk-sharp and gnome-desktop-sharp From jkeating at fedoraproject.org Sat Jul 25 15:02:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:02:43 +0000 (UTC) Subject: rpms/mono-zeroconf/devel mono-zeroconf.spec,1.12,1.13 Message-ID: <20090725150243.EC21511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mono-zeroconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30389 Modified Files: mono-zeroconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mono-zeroconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-zeroconf/devel/mono-zeroconf.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mono-zeroconf.spec 26 Feb 2009 02:36:03 -0000 1.12 +++ mono-zeroconf.spec 25 Jul 2009 15:02:43 -0000 1.13 @@ -2,7 +2,7 @@ Name: mono-zeroconf Version: 0.7.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Mono-zeroconf namespace Group: Development/Languages License: MIT @@ -58,6 +58,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/pkgconfig/mono-zeroconf.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:03:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:03:04 +0000 (UTC) Subject: rpms/monodevelop/devel monodevelop-2.spec,1.17,1.18 Message-ID: <20090725150304.3AEC011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monodevelop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30634 Modified Files: monodevelop-2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monodevelop-2.spec =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop/devel/monodevelop-2.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- monodevelop-2.spec 23 Jun 2009 20:16:27 -0000 1.17 +++ monodevelop-2.spec 25 Jul 2009 15:03:03 -0000 1.18 @@ -10,7 +10,7 @@ Name: monodevelop Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A full-featured IDE for Mono and Gtk# Group: Development/Tools @@ -159,6 +159,9 @@ update-desktop-database &> /dev/null || %{_libdir}/pkgconfig/monodevelop*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Paul F. Johnson -2.0-3 - Fix mdtool libdir issue - Add additional arcs From jkeating at fedoraproject.org Sat Jul 25 15:03:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:03:30 +0000 (UTC) Subject: rpms/monodevelop-debugger-mdb/devel monodevelop-debugger-mdb.spec, 1.1, 1.2 Message-ID: <20090725150330.AB82611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monodevelop-debugger-mdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30830 Modified Files: monodevelop-debugger-mdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monodevelop-debugger-mdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/monodevelop-debugger-mdb/devel/monodevelop-debugger-mdb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- monodevelop-debugger-mdb.spec 2 Jul 2009 21:45:44 -0000 1.1 +++ monodevelop-debugger-mdb.spec 25 Jul 2009 15:03:28 -0000 1.2 @@ -4,7 +4,7 @@ Summary: MonoDevelop Debugger Addin Name: monodevelop-debugger-mdb Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Tools Source: http://ftp.novell.com/pub/mono/sources-stable/%{name}-%{version}.tar.bz2 @@ -64,5 +64,8 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/mono.debugging.backend.mdb.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Mauricio Henriquez - 2.0-1 - Initial packaging with help by Ryan Bair From jkeating at fedoraproject.org Sat Jul 25 15:03:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:03:51 +0000 (UTC) Subject: rpms/monosim/devel monosim.spec,1.3,1.4 Message-ID: <20090725150351.459A711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monosim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31114 Modified Files: monosim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/devel/monosim.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- monosim.spec 25 May 2009 22:17:39 -0000 1.3 +++ monosim.spec 25 Jul 2009 15:03:50 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Manage your SIM Card contacts Name: monosim Version: 1.3.0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Productivity Source: http://www.integrazioneweb.com/monosim/packages/fedora/%{name}-%{version}.tar.gz @@ -59,6 +59,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien - 1.3.0.2-3 - build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 15:04:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:04:10 +0000 (UTC) Subject: rpms/monotone/devel monotone.spec,1.47,1.48 Message-ID: <20090725150410.BE3AD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monotone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31383 Modified Files: monotone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monotone.spec =================================================================== RCS file: /cvs/pkgs/rpms/monotone/devel/monotone.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- monotone.spec 15 May 2009 18:04:49 -0000 1.47 +++ monotone.spec 25 Jul 2009 15:04:09 -0000 1.48 @@ -1,6 +1,6 @@ Name: monotone Version: 0.44 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A free, distributed version control system Group: Development/Tools @@ -191,6 +191,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.44-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Thomas Moschny - 0.44-1 - Update to 0.44. From jkeating at fedoraproject.org Sat Jul 25 15:04:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:04:37 +0000 (UTC) Subject: rpms/monotone-viz/devel monotone-viz.spec,1.5,1.6 Message-ID: <20090725150437.C0D4F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monotone-viz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31683 Modified Files: monotone-viz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monotone-viz.spec =================================================================== RCS file: /cvs/pkgs/rpms/monotone-viz/devel/monotone-viz.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- monotone-viz.spec 16 Apr 2009 09:26:12 -0000 1.5 +++ monotone-viz.spec 25 Jul 2009 15:04:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: monotone-viz Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GNOME application that visualizes Monotone ancestry graphs Group: Development/Tools @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Sat Jul 25 15:04:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:04:57 +0000 (UTC) Subject: rpms/monotorrent/devel monotorrent.spec,1.11,1.12 Message-ID: <20090725150457.875D211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monotorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31893 Modified Files: monotorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monotorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/monotorrent/devel/monotorrent.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- monotorrent.spec 26 Jun 2009 06:43:05 -0000 1.11 +++ monotorrent.spec 25 Jul 2009 15:04:57 -0000 1.12 @@ -2,7 +2,7 @@ Name: monotorrent Version: 0.72 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Mono bittorrent client Group: Development/Languages License: MIT @@ -49,6 +49,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/pkgconfig/monotorrent.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.72-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Paul F. Johnson - 0.72.3 - rebuild for additional arcs From jkeating at fedoraproject.org Sat Jul 25 15:05:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:05:12 +0000 (UTC) Subject: rpms/monsoon/devel monsoon.spec,1.3,1.4 Message-ID: <20090725150512.1A1D811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monsoon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32109 Modified Files: monsoon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monsoon.spec =================================================================== RCS file: /cvs/pkgs/rpms/monsoon/devel/monsoon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- monsoon.spec 14 Jun 2009 19:33:58 -0000 1.3 +++ monsoon.spec 25 Jul 2009 15:05:11 -0000 1.4 @@ -2,7 +2,7 @@ Name: monsoon Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bittorrent client based on MonoTorrent Group: Development/Languages License: MIT @@ -47,6 +47,9 @@ desktop-file-install --vendor gnome --de %{_datadir}/applications/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 David Nielsen - 0.21-1 - update to 0.21 - drop upstreamed patch From jkeating at fedoraproject.org Sat Jul 25 15:05:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:05:37 +0000 (UTC) Subject: rpms/monsterz/devel monsterz.spec,1.8,1.9 Message-ID: <20090725150537.E710A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/monsterz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32401 Modified Files: monsterz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: monsterz.spec =================================================================== RCS file: /cvs/pkgs/rpms/monsterz/devel/monsterz.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- monsterz.spec 26 Feb 2009 02:41:52 -0000 1.8 +++ monsterz.spec 25 Jul 2009 15:05:37 -0000 1.9 @@ -1,6 +1,6 @@ Name: monsterz Version: 0.7.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Puzzle game, similar to Bejeweled or Zookeeper Group: Amusements/Games License: WTFPL @@ -104,6 +104,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:05:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:05:58 +0000 (UTC) Subject: rpms/moodbar/devel moodbar.spec,1.3,1.4 Message-ID: <20090725150558.E86CB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moodbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32618 Modified Files: moodbar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moodbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/moodbar/devel/moodbar.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- moodbar.spec 26 Feb 2009 02:42:46 -0000 1.3 +++ moodbar.spec 25 Jul 2009 15:05:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: moodbar Version: 0.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Identifies the "mood" of your music files Group: Applications/Multimedia @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From caolanm at fedoraproject.org Sat Jul 25 15:07:30 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 25 Jul 2009 15:07:30 +0000 (UTC) Subject: rpms/hunspell-en/devel hunspell-en.spec, 1.35, 1.36 mozilla_words.patch, 1.6, 1.7 Message-ID: <20090725150730.14C0311C02BC@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv883 Modified Files: hunspell-en.spec mozilla_words.patch Log Message: add extra mozilla REPs Index: hunspell-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-en/devel/hunspell-en.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- hunspell-en.spec 25 Jul 2009 02:24:15 -0000 1.35 +++ hunspell-en.spec 25 Jul 2009 15:07:29 -0000 1.36 @@ -2,7 +2,7 @@ Name: hunspell-en Summary: English hunspell dictionaries %define upstreamid 20090216 Version: 0.%{upstreamid} -Release: 6%{?dist} +Release: 7%{?dist} #svn co https://wordlist.svn.sourceforge.net/svnroot/wordlist/trunk wordlist Source0: wordlist-%{upstreamid}.tar.bz2 Source1: http://en-gb.pyxidium.co.uk/dictionary/en_GB.zip @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 25 2009 Caolan McNamara - 0.20090216-7 +- add extra mozilla REPs + * Fri Jul 24 2009 Fedora Release Engineering - 0.20090216-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild mozilla_words.patch: r/special/proper-names | 6 ++++++ speller/en.aff | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) Index: mozilla_words.patch =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-en/devel/mozilla_words.patch,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mozilla_words.patch 11 Jan 2009 12:55:15 -0000 1.6 +++ mozilla_words.patch 25 Jul 2009 15:07:29 -0000 1.7 @@ -27,12 +27,15 @@ XEmacs --- wordlist.orig/scowl/speller/en.aff 2008-02-08 20:28:24.000000000 +0000 +++ wordlist/scowl/speller/en.aff 2008-02-08 20:28:45.000000000 +0000 -@@ -110,13 +110,14 @@ +@@ -110,13 +110,17 @@ SFX L Y 1 SFX L 0 ment . -REP 88 -+REP 89 ++SFX i N 1 ++SFX i us i us ++ ++REP 90 REP a ei REP ei a REP a ey @@ -43,3 +46,8 @@ REP are air REP are ear REP are eir +@@ -199,3 +203,4 @@ + REP shun tion + REP shun sion + REP shun cion ++REP sitted sat From jkeating at fedoraproject.org Sat Jul 25 15:08:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:08:28 +0000 (UTC) Subject: rpms/moon-buggy/devel moon-buggy.spec,1.2,1.3 Message-ID: <20090725150828.50AE311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moon-buggy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1411 Modified Files: moon-buggy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moon-buggy.spec =================================================================== RCS file: /cvs/pkgs/rpms/moon-buggy/devel/moon-buggy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- moon-buggy.spec 23 Feb 2009 20:58:27 -0000 1.2 +++ moon-buggy.spec 25 Jul 2009 15:08:28 -0000 1.3 @@ -4,7 +4,7 @@ Summary: Drive and jump with some kind of car across the moon Name: moon-buggy Version: 1.0.51 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ Group: Amusements/Games URL: http://seehuhn.de/pages/%{name} @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %verify(not md5 size mtime) %config(noreplace) %attr(664,root,games) %{_localstatedir}/games/%{name}/mbscore %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.51-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.0.51-3 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 15:08:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:08:46 +0000 (UTC) Subject: rpms/moreutils/devel moreutils.spec,1.11,1.12 Message-ID: <20090725150846.C10D311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1567 Modified Files: moreutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/moreutils/devel/moreutils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- moreutils.spec 16 Jul 2009 04:59:12 -0000 1.11 +++ moreutils.spec 25 Jul 2009 15:08:46 -0000 1.12 @@ -1,6 +1,6 @@ Name: moreutils Version: 0.36 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Additional unix utilities Group: Applications/System License: GPLv2 @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.36-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Marc Bradshaw 0.36-1%{?dist} - new upstream version 0.36 released with these changes - * parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average. From jkeating at fedoraproject.org Sat Jul 25 15:09:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:09:04 +0000 (UTC) Subject: rpms/morse2txt/devel morse2txt.spec,1.1,1.2 Message-ID: <20090725150904.D252D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/morse2txt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1803 Modified Files: morse2txt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: morse2txt.spec =================================================================== RCS file: /cvs/pkgs/rpms/morse2txt/devel/morse2txt.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- morse2txt.spec 11 Jul 2009 21:42:37 -0000 1.1 +++ morse2txt.spec 25 Jul 2009 15:09:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: morse2txt Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Morse Code Reader Group: Applications/Communications @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Fabian Affolter - 1.0.0-1 - Removed .desktop file and icon, now included in the source - Updated to new upstream version 1.0.0 From jkeating at fedoraproject.org Sat Jul 25 15:09:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:09:28 +0000 (UTC) Subject: rpms/moserial/devel moserial.spec,1.1,1.2 Message-ID: <20090725150928.1AF3611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2025 Modified Files: moserial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moserial.spec =================================================================== RCS file: /cvs/pkgs/rpms/moserial/devel/moserial.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- moserial.spec 31 May 2009 20:53:13 -0000 1.1 +++ moserial.spec 25 Jul 2009 15:09:27 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Serial terminal for the gnome desktop Name: moserial Version: 2.26.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Communications License: GPLv3+ URL: http://live.gnome.org/moserial/ @@ -58,6 +58,9 @@ fi %{_datadir}/omf/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.26.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Terje Rosten - 2.26.1-2 - add req. on yelp and hicolor-icon-theme - fix dir ownership From jkeating at fedoraproject.org Sat Jul 25 15:09:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:09:45 +0000 (UTC) Subject: rpms/most/devel most.spec,1.18,1.19 Message-ID: <20090725150945.40DD311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/most/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2174 Modified Files: most.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: most.spec =================================================================== RCS file: /cvs/pkgs/rpms/most/devel/most.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- most.spec 26 Feb 2009 02:46:31 -0000 1.18 +++ most.spec 25 Jul 2009 15:09:44 -0000 1.19 @@ -1,7 +1,7 @@ Summary: more, less, most Name: most Version: 5.0.0 -Release: 2.a.1%{?dist} +Release: 3.a.1%{?dist} License: GPLv2+ URL: ftp://space.mit.edu/pub/davis/most/ Group: Applications/Text @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.0.0-3.a.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0.0-2.a.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:10:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:10:01 +0000 (UTC) Subject: rpms/moto4lin/devel moto4lin.spec,1.7,1.8 Message-ID: <20090725151001.D8AC511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moto4lin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2331 Modified Files: moto4lin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moto4lin.spec =================================================================== RCS file: /cvs/pkgs/rpms/moto4lin/devel/moto4lin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- moto4lin.spec 26 Feb 2009 02:47:27 -0000 1.7 +++ moto4lin.spec 25 Jul 2009 15:10:01 -0000 1.8 @@ -1,7 +1,7 @@ Name: moto4lin Version: 0.3 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ Summary: Filemanager and seem editor for Motorola P2k phones Group: Applications/Communications @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:10:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:10:24 +0000 (UTC) Subject: rpms/mousepad/devel mousepad.spec,1.14,1.15 Message-ID: <20090725151024.DDC1B11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mousepad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2505 Modified Files: mousepad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mousepad.spec =================================================================== RCS file: /cvs/pkgs/rpms/mousepad/devel/mousepad.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- mousepad.spec 27 Feb 2009 21:22:19 -0000 1.14 +++ mousepad.spec 25 Jul 2009 15:10:24 -0000 1.15 @@ -1,6 +1,6 @@ Name: mousepad Version: 0.2.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mousepad - A simple text editor for Xfce Group: Applications/Editors @@ -75,6 +75,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/pixmaps/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kevin Fenzi - 0.2.16-1 - Update to 0.2.16 From jkeating at fedoraproject.org Sat Jul 25 15:10:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:10:57 +0000 (UTC) Subject: rpms/mousetweaks/devel mousetweaks.spec,1.30,1.31 Message-ID: <20090725151057.A6FAB11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mousetweaks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2741 Modified Files: mousetweaks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mousetweaks.spec =================================================================== RCS file: /cvs/pkgs/rpms/mousetweaks/devel/mousetweaks.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- mousetweaks.spec 14 Jul 2009 04:14:03 -0000 1.30 +++ mousetweaks.spec 25 Jul 2009 15:10:57 -0000 1.31 @@ -1,6 +1,6 @@ Name: mousetweaks Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mouse accessibility support for the GNOME desktop Group: User Interface/Desktops License: GPLv3 and GFDL @@ -108,6 +108,9 @@ fi %doc %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 15:11:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:11:15 +0000 (UTC) Subject: rpms/mozilla-filesystem/devel mozilla-filesystem.spec,1.4,1.5 Message-ID: <20090725151115.ACABF11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mozilla-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2990 Modified Files: mozilla-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mozilla-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozilla-filesystem/devel/mozilla-filesystem.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mozilla-filesystem.spec 26 Feb 2009 02:50:18 -0000 1.4 +++ mozilla-filesystem.spec 25 Jul 2009 15:11:15 -0000 1.5 @@ -1,6 +1,6 @@ Name: mozilla-filesystem Version: 1.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Mozilla filesytem layout Group: Applications/Internet License: MPLv1.1 @@ -29,6 +29,9 @@ rm -rf $RPM_BUILD_ROOT /etc/skel/.mozilla %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:11:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:11:33 +0000 (UTC) Subject: rpms/mozldap/devel mozldap.spec,1.12,1.13 Message-ID: <20090725151133.BC65F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mozldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3194 Modified Files: mozldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mozldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozldap/devel/mozldap.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mozldap.spec 26 Feb 2009 02:51:25 -0000 1.12 +++ mozldap.spec 25 Jul 2009 15:11:33 -0000 1.13 @@ -13,7 +13,7 @@ Summary: Mozilla LDAP C SDK Name: mozldap Version: %{major}.%{minor}.%{submin} -Release: 5%{?dist} +Release: 6%{?dist} License: MPLv1.1 or GPLv2+ or LGPLv2+ URL: http://www.mozilla.org/directory/csdk.html Group: System Environment/Libraries @@ -186,6 +186,9 @@ cp -r mozilla/directory/c-sdk/ldap/examp %{_datadir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:11:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:11:50 +0000 (UTC) Subject: rpms/mozplugger/devel mozplugger.spec,1.32,1.33 Message-ID: <20090725151150.EC29911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mozplugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3340 Modified Files: mozplugger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mozplugger.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozplugger/devel/mozplugger.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- mozplugger.spec 3 Jul 2009 14:21:00 -0000 1.32 +++ mozplugger.spec 25 Jul 2009 15:11:50 -0000 1.33 @@ -1,7 +1,7 @@ Summary: A generic mozilla plug-in Name: mozplugger Version: 1.12.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://mozplugger.mozdev.org/ @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man7/mozplugger.7* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Than Ngo - 1.12.1-3 - fix #469257, selinux policy and mozplugger do not get along From jkeating at fedoraproject.org Sat Jul 25 15:12:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:12:12 +0000 (UTC) Subject: rpms/mozvoikko/devel mozvoikko.spec,1.11,1.12 Message-ID: <20090725151212.19D1011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mozvoikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3553 Modified Files: mozvoikko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mozvoikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/mozvoikko/devel/mozvoikko.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mozvoikko.spec 19 Jul 2009 17:43:41 -0000 1.11 +++ mozvoikko.spec 25 Jul 2009 15:12:11 -0000 1.12 @@ -18,7 +18,7 @@ Name: mozvoikko Version: 0.9.7 -Release: 0.5.rc1%{?dist} +Release: 0.6.rc1%{?dist} Summary: Finnish Voikko spell-checker extension for Mozilla programs Group: Applications/Internet License: GPLv2+ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.7-0.6.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Ville-Pekka Vainio - 0.9.7-0.5.rc1 - Rebuild against newer gecko - Bump Release to fix upgrade path From jkeating at fedoraproject.org Sat Jul 25 15:12:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:12:28 +0000 (UTC) Subject: rpms/mpage/devel mpage.spec,1.34,1.35 Message-ID: <20090725151228.4D1AC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3714 Modified Files: mpage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpage.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpage/devel/mpage.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- mpage.spec 27 Mar 2009 14:44:19 -0000 1.34 +++ mpage.spec 25 Jul 2009 15:12:28 -0000 1.35 @@ -1,7 +1,7 @@ Summary: A tool for printing multiple pages of text on each printed page Name: mpage Version: 2.5.6 -Release: 7%{dist} +Release: 8%{dist} License: GPLv2+ Url: http://www.mesa.nl/pub/mpage/ Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mpage %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Michal Hlavinka - 2.5.6-7 - fix doc in file section From jkeating at fedoraproject.org Sat Jul 25 15:12:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:12:49 +0000 (UTC) Subject: rpms/mpc/devel mpc.spec,1.15,1.16 Message-ID: <20090725151249.8CC8111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3903 Modified Files: mpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpc/devel/mpc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mpc.spec 16 Jun 2009 07:48:58 -0000 1.15 +++ mpc.spec 25 Jul 2009 15:12:49 -0000 1.16 @@ -1,7 +1,7 @@ Name: mpc Summary: Command-line client for MPD Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Multimedia @@ -47,6 +47,9 @@ ln -sf %{_datadir}/%{name}/mpc-bashrc %{ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Adrian Reber - 0.16-1 - updated to 0.16 From jkeating at fedoraproject.org Sat Jul 25 15:13:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:13:06 +0000 (UTC) Subject: rpms/mpfi/devel mpfi.spec,1.4,1.5 Message-ID: <20090725151306.4339411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpfi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4061 Modified Files: mpfi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpfi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpfi/devel/mpfi.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mpfi.spec 18 Jul 2009 00:35:09 -0000 1.4 +++ mpfi.spec 25 Jul 2009 15:13:05 -0000 1.5 @@ -1,6 +1,6 @@ Name: mpfi Version: 1.3.4 -Release: 0.6.RC3%{?dist} +Release: 0.7.RC3%{?dist} Summary: An interval arithmetic library based on MPFR Group: Applications/Engineering License: LGPLv2+ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.4-0.7.RC3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Conrad Meyer - 1.3.4-0.6.RC3 - Add missing BR on texinfo. From jkeating at fedoraproject.org Sat Jul 25 15:13:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:13:24 +0000 (UTC) Subject: rpms/mpfr/devel mpfr.spec,1.13,1.14 Message-ID: <20090725151324.3F80C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpfr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4328 Modified Files: mpfr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpfr.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpfr/devel/mpfr.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- mpfr.spec 11 Mar 2009 11:21:52 -0000 1.13 +++ mpfr.spec 25 Jul 2009 15:13:23 -0000 1.14 @@ -1,7 +1,7 @@ Summary: A C library for multiple-precision floating-point computations Name: mpfr Version: 2.4.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.mpfr.org/ Source0: http://www.mpfr.org/mpfr-current/mpfr-%{version}.tar.bz2 License: LGPLv2+ and GPLv2+ and GFDL @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/mpfr.info* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Ivana Varekova - 2.4.1-1 - update to 2.4.1 From jkeating at fedoraproject.org Sat Jul 25 15:13:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:13:45 +0000 (UTC) Subject: rpms/mpich2/devel mpich2.spec,1.9,1.10 Message-ID: <20090725151345.3F96311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpich2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4538 Modified Files: mpich2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpich2.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpich2/devel/mpich2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mpich2.spec 22 Jul 2009 16:38:18 -0000 1.9 +++ mpich2.spec 25 Jul 2009 15:13:45 -0000 1.10 @@ -1,7 +1,7 @@ Summary: A high-performance implementation of MPI Name: mpich2 Version: 1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Libraries URL: http://www.mcs.anl.gov/research/projects/mpich2 @@ -288,6 +288,9 @@ fi %{_mandir}/man4/*.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Deji Akingunola - 1.1.1-1 - Update to 1.1.1 - Remove (and obsolete) the -libs subpackage, it is not necessary. From jkeating at fedoraproject.org Sat Jul 25 15:14:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:14:05 +0000 (UTC) Subject: rpms/mpop/devel mpop.spec,1.3,1.4 Message-ID: <20090725151405.5AEF511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mpop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5145 Modified Files: mpop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mpop.spec =================================================================== RCS file: /cvs/pkgs/rpms/mpop/devel/mpop.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mpop.spec 11 Apr 2009 14:35:14 -0000 1.3 +++ mpop.spec 25 Jul 2009 15:14:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: mpop Version: 1.0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: POP3 client for recieving mail from POP3 mailboxes Group: Applications/Internet @@ -67,6 +67,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Fabian Affolter - 1.0.17-1 - Updated to new upstream version 1.0.17 From jkeating at fedoraproject.org Sat Jul 25 15:14:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:14:24 +0000 (UTC) Subject: rpms/mr/devel mr.spec,1.4,1.5 Message-ID: <20090725151424.4996A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5544 Modified Files: mr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mr.spec =================================================================== RCS file: /cvs/pkgs/rpms/mr/devel/mr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mr.spec 5 Apr 2009 17:05:09 -0000 1.4 +++ mr.spec 25 Jul 2009 15:14:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: mr Version: 0.39 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A multiple repository management tool Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.39-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Fabian Affolter - 0.39-1 - Updated to new upstream version 0.39 From jkeating at fedoraproject.org Sat Jul 25 15:14:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:14:46 +0000 (UTC) Subject: rpms/mrepo/devel mrepo.spec,1.3,1.4 Message-ID: <20090725151446.532B611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mrepo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5746 Modified Files: mrepo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mrepo.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrepo/devel/mrepo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mrepo.spec 12 Jul 2009 21:46:12 -0000 1.3 +++ mrepo.spec 25 Jul 2009 15:14:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: mrepo Version: 0.8.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool to set up a yum/apt mirror from various sources License: GPLv2 Group: System Environment/Base @@ -124,6 +124,9 @@ rm -rf %{buildroot} %{_localstatedir}/mrepo/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Sandro Mathys - 0.8.6-3 - Changed the usage of macros to get the spec file to work in EL, too. From jkeating at fedoraproject.org Sat Jul 25 15:15:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:15:01 +0000 (UTC) Subject: rpms/mrpt/devel mrpt.spec,1.3,1.4 Message-ID: <20090725151501.DAB9311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mrpt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5993 Modified Files: mrpt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mrpt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrpt/devel/mrpt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mrpt.spec 14 Jul 2009 22:31:29 -0000 1.3 +++ mrpt.spec 25 Jul 2009 15:15:01 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Libraries and programs for mobile robot SLAM and navigation Name: mrpt Version: 0.7.0 -Release: 0.1.20090529svn1047%{?dist} +Release: 0.2.20090529svn1047%{?dist} License: GPLv3+ Group: Development/Libraries URL: http://babel.isa.uma.es/mrpt/ @@ -306,6 +306,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.0-0.2.20090529svn1047 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 - Jose Luis Blanco 0.7.0-0.1.20090529svn1047 - Packaging of new upstream version 0.7.0. From jkeating at fedoraproject.org Sat Jul 25 15:15:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:15:31 +0000 (UTC) Subject: rpms/mrtg/devel mrtg.spec,1.48,1.49 Message-ID: <20090725151531.2553B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mrtg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6235 Modified Files: mrtg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mrtg.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrtg/devel/mrtg.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- mrtg.spec 26 Feb 2009 03:01:38 -0000 1.48 +++ mrtg.spec 25 Jul 2009 15:15:30 -0000 1.49 @@ -6,7 +6,7 @@ Summary: Multi Router Traffic Grapher Name: mrtg Version: 2.16.2 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://oss.oetiker.ch/mrtg/ Source0: http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz #Source1: http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz.md5.gpg @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_localstatedir}/lock/mrtg %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.16.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.16.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:16:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:16:00 +0000 (UTC) Subject: rpms/mrxvt/devel mrxvt.spec,1.7,1.8 Message-ID: <20090725151600.A91BE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mrxvt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6602 Modified Files: mrxvt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mrxvt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mrxvt/devel/mrxvt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mrxvt.spec 26 Feb 2009 03:02:32 -0000 1.7 +++ mrxvt.spec 25 Jul 2009 15:16:00 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A lightweight multi-tabbed terminal emulator for X Name: mrxvt Version: 0.5.3 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://materm.sourceforge.net/wiki/Main/HomePage License: GPLv2+ Group: User Interface/X @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:16:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:16:26 +0000 (UTC) Subject: rpms/mscore/devel mscore.spec,1.2,1.3 Message-ID: <20090725151626.1E1BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mscore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6835 Modified Files: mscore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mscore.spec =================================================================== RCS file: /cvs/pkgs/rpms/mscore/devel/mscore.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mscore.spec 12 Jun 2009 00:36:52 -0000 1.2 +++ mscore.spec 25 Jul 2009 15:16:25 -0000 1.3 @@ -9,7 +9,7 @@ Name: mscore Summary: Music Composition & Notation Software Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} # rtf2html is LGPLv2+ # paper4.png paper5.png are LGPLv3 # the rest is GPLv2 @@ -231,6 +231,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Orcan Ogetbil 0.9.4-4 - Font package cleanup for F-12 (RHBZ#493463) - One specfile for all releases From jkeating at fedoraproject.org Sat Jul 25 15:16:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:16:50 +0000 (UTC) Subject: rpms/msmtp/devel msmtp.spec,1.10,1.11 Message-ID: <20090725151650.810D111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msmtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7076 Modified Files: msmtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msmtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/msmtp/devel/msmtp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- msmtp.spec 26 Feb 2009 03:04:26 -0000 1.10 +++ msmtp.spec 25 Jul 2009 15:16:50 -0000 1.11 @@ -1,6 +1,6 @@ Name: msmtp Version: 1.4.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SMTP client Group: System Environment/Base License: GPLv3+ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:17:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:17:05 +0000 (UTC) Subject: rpms/msort/devel msort.spec,1.3,1.4 Message-ID: <20090725151705.BB8E011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7327 Modified Files: msort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msort.spec =================================================================== RCS file: /cvs/pkgs/rpms/msort/devel/msort.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- msort.spec 26 Feb 2009 03:05:31 -0000 1.3 +++ msort.spec 25 Jul 2009 15:17:05 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Sort files in sophisticated ways Name: msort Version: 8.46 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3 Group: Applications/Publishing URL: http://billposer.org/Software/msort.html @@ -44,6 +44,9 @@ line interface, but may be driven by an %{_mandir}/man1/msort.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 8.46-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.46-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:17:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:17:28 +0000 (UTC) Subject: rpms/msp430-binutils/devel msp430-binutils.spec,1.3,1.4 Message-ID: <20090725151728.84FD111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msp430-binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7548 Modified Files: msp430-binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msp430-binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/msp430-binutils/devel/msp430-binutils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- msp430-binutils.spec 12 Jun 2009 17:00:07 -0000 1.3 +++ msp430-binutils.spec 25 Jul 2009 15:17:28 -0000 1.4 @@ -2,7 +2,7 @@ Name: %{target}-binutils Version: 2.19.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cross Compiling GNU binutils targeted at %{target} Group: Development/Tools License: GPLv2+ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{target}-*.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.19.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rob Spanton rspanton at zepler.net 2.19.1-1 - Bump up to binutils 2.19.1 From jkeating at fedoraproject.org Sat Jul 25 15:17:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:17:44 +0000 (UTC) Subject: rpms/msp430-gcc/devel msp430-gcc.spec,1.1,1.2 Message-ID: <20090725151744.DD02311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msp430-gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7715 Modified Files: msp430-gcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msp430-gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/msp430-gcc/devel/msp430-gcc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- msp430-gcc.spec 15 Apr 2009 15:44:52 -0000 1.1 +++ msp430-gcc.spec 25 Jul 2009 15:17:44 -0000 1.2 @@ -3,7 +3,7 @@ Name: %{target}-gcc Version: 3.2.3 # There has been no release, so this is a snapshot -Release: 2.20090210cvs%{?dist} +Release: 3.20090210cvs%{?dist} Summary: Cross Compiling GNU GCC targeted at %{target} Group: Development/Languages License: GPLv2+ @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2.3-3.20090210cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 21 2009 Rob Spanton 3.2.3-2.20090210cvs - Use setup macro to do cleaner decompressing. - Own libdir/gcc-lib dirs. From jkeating at fedoraproject.org Sat Jul 25 15:18:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:18:01 +0000 (UTC) Subject: rpms/msr-tools/devel msr-tools.spec,1.2,1.3 Message-ID: <20090725151801.3065D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msr-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7870 Modified Files: msr-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msr-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/msr-tools/devel/msr-tools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- msr-tools.spec 26 Feb 2009 03:07:32 -0000 1.2 +++ msr-tools.spec 25 Jul 2009 15:18:01 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Collection of tools for reading/writing CPU model specific registers. Name: msr-tools Version: 1.1.2 -Release: 2%{dist} +Release: 3%{dist} Group: System Environment/Base License: GPLv2+ Source0: http://www.kernel.org/pub/linux/utils/cpu/msr-tools/%{name}-%{version}.tar.gz @@ -33,6 +33,9 @@ rm -rf %{buildroot} %{_sbindir}/wrmsr %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:18:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:18:19 +0000 (UTC) Subject: rpms/msv/devel msv.spec,1.7,1.8 Message-ID: <20090725151819.6253111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8038 Modified Files: msv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msv.spec =================================================================== RCS file: /cvs/pkgs/rpms/msv/devel/msv.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- msv.spec 8 May 2009 17:53:42 -0000 1.7 +++ msv.spec 25 Jul 2009 15:18:18 -0000 1.8 @@ -37,7 +37,7 @@ Summary: Multischema Validator Name: msv Version: 1.2 -Release: 0.3.%{cvsdate}.3.4%{?dist}.1 +Release: 0.4.%{cvsdate}.3.4%{?dist}.1 Epoch: 1 License: BSD URL: http://msv.dev.java.net @@ -484,6 +484,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.2-0.4.20050722.3.4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Karsten Hopp 1.2-0.3.20050722.3.4.1 - Specify source and target as 1.4 to make it build From jkeating at fedoraproject.org Sat Jul 25 15:18:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:18:35 +0000 (UTC) Subject: rpms/msynctool/devel msynctool.spec,1.6,1.7 Message-ID: <20090725151835.B7A6E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/msynctool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8264 Modified Files: msynctool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: msynctool.spec =================================================================== RCS file: /cvs/pkgs/rpms/msynctool/devel/msynctool.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- msynctool.spec 27 Mar 2009 18:48:51 -0000 1.6 +++ msynctool.spec 25 Jul 2009 15:18:35 -0000 1.7 @@ -1,7 +1,7 @@ Name: msynctool Epoch: 1 Version: 0.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calendar (and other PIM data) synchronization program Group: Applications/Communications @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 07 2009 Andreas Bierfert - 1:0.22-1 - downgrade (#474070) From jkeating at fedoraproject.org Sat Jul 25 15:19:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:19:00 +0000 (UTC) Subject: rpms/mt-daapd/devel mt-daapd.spec,1.15,1.16 Message-ID: <20090725151900.06A3411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mt-daapd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8455 Modified Files: mt-daapd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mt-daapd.spec =================================================================== RCS file: /cvs/pkgs/rpms/mt-daapd/devel/mt-daapd.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mt-daapd.spec 26 Feb 2009 03:10:32 -0000 1.15 +++ mt-daapd.spec 25 Jul 2009 15:18:59 -0000 1.16 @@ -11,7 +11,7 @@ Summary: An iTunes-compatible media serv Name: mt-daapd Epoch: 1 Version: 0.2.4.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -86,6 +86,9 @@ rm -rf %{buildroot} %doc AUTHORS COPYING CREDITS INSTALL NEWS README TODO %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.2.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.2.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:19:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:19:19 +0000 (UTC) Subject: rpms/mt-st/devel mt-st.spec,1.29,1.30 Message-ID: <20090725151919.2AA1011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mt-st/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8636 Modified Files: mt-st.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mt-st.spec =================================================================== RCS file: /cvs/pkgs/rpms/mt-st/devel/mt-st.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- mt-st.spec 26 Feb 2009 03:11:32 -0000 1.29 +++ mt-st.spec 25 Jul 2009 15:19:18 -0000 1.30 @@ -1,7 +1,7 @@ Summary: Tool for controlling tape drives Name: mt-st Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: ftp://ftp.ibiblio.org/pub/linux/system/backup @@ -65,6 +65,9 @@ fi %{_initddir}/stinit %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:19:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:19:35 +0000 (UTC) Subject: rpms/mtd-utils/devel mtd-utils.spec,1.11,1.12 Message-ID: <20090725151935.7893111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mtd-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8839 Modified Files: mtd-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mtd-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/mtd-utils/devel/mtd-utils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- mtd-utils.spec 26 Feb 2009 03:12:31 -0000 1.11 +++ mtd-utils.spec 25 Jul 2009 15:19:35 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Utilities for dealing with MTD (flash) devices Name: mtd-utils Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.linux-mtd.infradead.org/ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/ubi* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:19:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:19:53 +0000 (UTC) Subject: rpms/mtools/devel mtools.spec,1.44,1.45 Message-ID: <20090725151953.CCEA311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8984 Modified Files: mtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mtools/devel/mtools.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- mtools.spec 7 Apr 2009 10:51:19 -0000 1.44 +++ mtools.spec 25 Jul 2009 15:19:53 -0000 1.45 @@ -1,7 +1,7 @@ Summary: Programs for accessing MS-DOS disks without mounting the disks Name: mtools Version: 4.0.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source: http://mtools.linux.lu/mtools-%{version}.tar.bz2 @@ -67,6 +67,9 @@ fi %{_infodir}/%{name}.info.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 04 2009 Adam Tkac 4.0.10-1 - update to 4.0.10 From jkeating at fedoraproject.org Sat Jul 25 15:20:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:20:11 +0000 (UTC) Subject: rpms/mtpaint/devel mtpaint.spec,1.4,1.5 Message-ID: <20090725152011.0D12411C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mtpaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9198 Modified Files: mtpaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mtpaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/mtpaint/devel/mtpaint.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mtpaint.spec 26 Feb 2009 03:14:31 -0000 1.4 +++ mtpaint.spec 25 Jul 2009 15:20:10 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Painting program for creating icons and pixel-based artwork Name: mtpaint Version: 3.21 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Multimedia URL: http://mtpaint.sourceforge.net/ @@ -99,6 +99,9 @@ exit 0 %doc %{name}_handbook-%{docver}/COPYING %{name}_handbook-%{docver}/docs/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:20:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:20:38 +0000 (UTC) Subject: rpms/mtr/devel mtr.spec,1.50,1.51 Message-ID: <20090725152038.2D74711C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mtr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9451 Modified Files: mtr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mtr.spec =================================================================== RCS file: /cvs/pkgs/rpms/mtr/devel/mtr.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- mtr.spec 26 Feb 2009 03:15:34 -0000 1.50 +++ mtr.spec 25 Jul 2009 15:20:37 -0000 1.51 @@ -1,7 +1,7 @@ Summary: A network diagnostic tool Name: mtr Version: 0.75 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 2 Group: Applications/Internet License: GPLv2+ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/mtr_icon.xpm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2:0.75-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2:0.75-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:21:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:21:05 +0000 (UTC) Subject: rpms/mtx/devel mtx.spec,1.28,1.29 Message-ID: <20090725152105.1D15D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mtx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9643 Modified Files: mtx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mtx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mtx/devel/mtx.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- mtx.spec 26 Feb 2009 03:16:36 -0000 1.28 +++ mtx.spec 25 Jul 2009 15:21:04 -0000 1.29 @@ -1,6 +1,6 @@ Name: mtx Version: 1.3.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SCSI media changer control program License: GPLv2 Group: Applications/System @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:21:28 +0000 (UTC) Subject: rpms/muParser/devel muParser.spec,1.7,1.8 Message-ID: <20090725152128.4EF5711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/muParser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9936 Modified Files: muParser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: muParser.spec =================================================================== RCS file: /cvs/pkgs/rpms/muParser/devel/muParser.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- muParser.spec 26 Feb 2009 03:17:31 -0000 1.7 +++ muParser.spec 25 Jul 2009 15:21:27 -0000 1.8 @@ -1,7 +1,7 @@ Name: muParser Summary: A fast math parser library Version: 1.28 -Release: 5%{?dist} +Release: 6%{?dist} BuildRequires: dos2unix URL: http://muparser.sourceforge.net License: MIT @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/muparser.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.28-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.28-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:21:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:21:43 +0000 (UTC) Subject: rpms/mugshot/devel mugshot.spec,1.43,1.44 Message-ID: <20090725152143.C391A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mugshot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10175 Modified Files: mugshot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mugshot.spec =================================================================== RCS file: /cvs/pkgs/rpms/mugshot/devel/mugshot.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- mugshot.spec 28 Apr 2009 03:30:49 -0000 1.43 +++ mugshot.spec 25 Jul 2009 15:21:43 -0000 1.44 @@ -3,7 +3,7 @@ Name: mugshot Version: 1.2.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Companion software for mugshot.org Group: Applications/Internet @@ -172,6 +172,9 @@ fi %{_sysconfdir}/gconf/schemas/*.schemas %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Christopher Aillon - 1.2.2-9 - Rebuild against newer gecko From jkeating at fedoraproject.org Sat Jul 25 15:22:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:22:16 +0000 (UTC) Subject: rpms/muine/devel muine.spec,1.30,1.31 Message-ID: <20090725152216.32DB311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/muine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10490 Modified Files: muine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: muine.spec =================================================================== RCS file: /cvs/pkgs/rpms/muine/devel/muine.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- muine.spec 26 Feb 2009 03:19:20 -0000 1.30 +++ muine.spec 25 Jul 2009 15:22:15 -0000 1.31 @@ -1,6 +1,6 @@ Name: muine Version: 0.8.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Music Player for GNOME ExcludeArch: ppc64 @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/muine/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:22:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:22:36 +0000 (UTC) Subject: rpms/muine-scrobbler/devel muine-scrobbler.spec,1.10,1.11 Message-ID: <20090725152236.6C9A111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/muine-scrobbler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10778 Modified Files: muine-scrobbler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: muine-scrobbler.spec =================================================================== RCS file: /cvs/pkgs/rpms/muine-scrobbler/devel/muine-scrobbler.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- muine-scrobbler.spec 3 Mar 2009 14:58:45 -0000 1.10 +++ muine-scrobbler.spec 25 Jul 2009 15:22:36 -0000 1.11 @@ -2,7 +2,7 @@ Name: muine-scrobbler Version: 0.1.8 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Audioscrobbler plugin for Muine Group: Applications/Multimedia @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.8-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 04 2009 Sindre Pedersen Bj?rdal - 0.1.8-9 - Don't use i386, use macro instead * Wed Feb 25 2009 Fedora Release Engineering - 0.1.8-8 From jkeating at fedoraproject.org Sat Jul 25 15:22:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:22:52 +0000 (UTC) Subject: rpms/mulk/devel mulk.spec,1.1,1.2 Message-ID: <20090725152252.AF82E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mulk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10934 Modified Files: mulk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mulk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mulk/devel/mulk.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mulk.spec 28 May 2009 20:20:26 -0000 1.1 +++ mulk.spec 25 Jul 2009 15:22:52 -0000 1.2 @@ -1,6 +1,6 @@ Name: mulk Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Multi-connection network downloader with Metalink support Group: Applications/Internet License: GPLv3+ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Ant Bryan - 0.4.1-2 - Remove spurious executable perm on uri_parser.c - Add THANKS and TODO to %doc From pkgdb at fedoraproject.org Sat Jul 25 15:23:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 25 Jul 2009 15:23:07 +0000 Subject: [pkgdb] xml-commons-apis12 ownership updated Message-ID: <20090725152307.B283410F87E@bastion2.fedora.phx.redhat.com> Package xml-commons-apis12 in Fedora 11 is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xml-commons-apis12 From jkeating at fedoraproject.org Sat Jul 25 15:23:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:23:08 +0000 (UTC) Subject: rpms/multican/devel multican.spec,1.9,1.10 Message-ID: <20090725152308.2D37311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/multican/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11103 Modified Files: multican.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: multican.spec =================================================================== RCS file: /cvs/pkgs/rpms/multican/devel/multican.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- multican.spec 26 Feb 2009 03:21:21 -0000 1.9 +++ multican.spec 25 Jul 2009 15:23:07 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Remote control utility for Canon cameras Name: multican Version: 0.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://downloads.sourceforge.net/multican/%{name}-%{version}.tar.gz URL: http://multican.sourceforge.net/ License: GPLv2 @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sat Jul 25 15:23:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sat, 25 Jul 2009 15:23:14 +0000 Subject: [pkgdb] xml-commons-apis12 ownership updated Message-ID: <20090725152314.7B75810F8A9@bastion2.fedora.phx.redhat.com> Package xml-commons-apis12 in Fedora devel is now owned by mbooth To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xml-commons-apis12 From jkeating at fedoraproject.org Sat Jul 25 15:23:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:23:25 +0000 (UTC) Subject: rpms/multiget/devel multiget.spec,1.5,1.6 Message-ID: <20090725152325.7566A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/multiget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11277 Modified Files: multiget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: multiget.spec =================================================================== RCS file: /cvs/pkgs/rpms/multiget/devel/multiget.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- multiget.spec 5 Mar 2009 15:07:03 -0000 1.5 +++ multiget.spec 25 Jul 2009 15:23:25 -0000 1.6 @@ -1,6 +1,6 @@ Name: multiget Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An easy-to-use GUI file downloader Group: Applications/Internet @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/MultiGet.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Caol?n McNamara - 1.2.0-5 - include cstdio for sprintf From jkeating at fedoraproject.org Sat Jul 25 15:23:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:23:43 +0000 (UTC) Subject: rpms/multisync/devel multisync.spec,1.13,1.14 Message-ID: <20090725152343.7718B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/multisync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11474 Modified Files: multisync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: multisync.spec =================================================================== RCS file: /cvs/pkgs/rpms/multisync/devel/multisync.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- multisync.spec 6 May 2009 21:46:53 -0000 1.13 +++ multisync.spec 25 Jul 2009 15:23:43 -0000 1.14 @@ -1,6 +1,6 @@ Name: multisync Version: 0.91.1 -Release: 0.2.svn384%{?dist} +Release: 0.3.svn384%{?dist} Summary: Calendar (and other PIM data) synchronization program Group: Applications/Communications @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91.1-0.3.svn384 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Ville Skytt? - 0.91.1-0.2.svn384 - Build with $RPM_OPT_FLAGS, output more useful build logs. From jkeating at fedoraproject.org Sat Jul 25 15:24:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:24:02 +0000 (UTC) Subject: rpms/multitail/devel multitail.spec,1.14,1.15 Message-ID: <20090725152402.B3F9D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/multitail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11696 Modified Files: multitail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: multitail.spec =================================================================== RCS file: /cvs/pkgs/rpms/multitail/devel/multitail.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- multitail.spec 26 Feb 2009 03:23:23 -0000 1.14 +++ multitail.spec 25 Jul 2009 15:24:02 -0000 1.15 @@ -1,6 +1,6 @@ Name: multitail Version: 5.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: View one or multiple files like tail but with multiple windows Group: Applications/Text @@ -71,6 +71,9 @@ rm %{buildroot}%{_sysconfdir}/multitail/ %{_mandir}/man1/multitail.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:24:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:24:20 +0000 (UTC) Subject: rpms/mumble/devel mumble.spec,1.1,1.2 Message-ID: <20090725152420.EA29D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mumble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11912 Modified Files: mumble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mumble.spec =================================================================== RCS file: /cvs/pkgs/rpms/mumble/devel/mumble.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mumble.spec 22 May 2009 12:29:06 -0000 1.1 +++ mumble.spec 25 Jul 2009 15:24:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: mumble Version: 1.1.8 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Voice chat software primarily intended for use while gaming Group: Applications/Internet @@ -248,6 +248,9 @@ fi %{_datadir}/kde4/services/mumble.protocol %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.8-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Igor Juri??kovi?? 1.1.8-13 - Fixed mumble-overlay error. - Fixed some scriptlets and requirements. From jkeating at fedoraproject.org Sat Jul 25 15:24:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:24:39 +0000 (UTC) Subject: rpms/mumbles/devel mumbles.spec,1.5,1.6 Message-ID: <20090725152439.ECDF411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mumbles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12203 Modified Files: mumbles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mumbles.spec =================================================================== RCS file: /cvs/pkgs/rpms/mumbles/devel/mumbles.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mumbles.spec 3 Jul 2009 02:05:25 -0000 1.5 +++ mumbles.spec 25 Jul 2009 15:24:39 -0000 1.6 @@ -3,7 +3,7 @@ Name: mumbles Version: 0.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A plugin driven DBus based notification system for the Gnome desktop Group: User Interface/Desktops @@ -105,6 +105,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Tim Waugh 0.4-11 - Rebuild the plugins at build time (bug #505070). From jkeating at fedoraproject.org Sat Jul 25 15:25:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:25:01 +0000 (UTC) Subject: rpms/munin/devel munin.spec,1.26,1.27 Message-ID: <20090725152501.073D211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/munin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12433 Modified Files: munin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: munin.spec =================================================================== RCS file: /cvs/pkgs/rpms/munin/devel/munin.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- munin.spec 26 Feb 2009 03:25:23 -0000 1.26 +++ munin.spec 25 Jul 2009 15:24:58 -0000 1.27 @@ -1,6 +1,6 @@ Name: munin Version: 1.2.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Network-wide graphing framework (grapher/gatherer) License: GPLv2 and Bitstream Vera Group: System Environment/Daemons @@ -249,6 +249,9 @@ exit 0 %doc %{_mandir}/man5/munin-node* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:25:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:25:19 +0000 (UTC) Subject: rpms/munipack/devel munipack.spec,1.5,1.6 Message-ID: <20090725152519.19DA111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/munipack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12695 Modified Files: munipack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: munipack.spec =================================================================== RCS file: /cvs/pkgs/rpms/munipack/devel/munipack.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- munipack.spec 26 Feb 2009 03:26:23 -0000 1.5 +++ munipack.spec 25 Jul 2009 15:25:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: munipack Version: 1.1.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The C-Munipack is an astrophotometry software package License: GPLv2+ Group: Applications/Engineering @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:25:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:25:37 +0000 (UTC) Subject: rpms/muse/devel muse.spec,1.6,1.7 Message-ID: <20090725152537.7F28A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/muse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12929 Modified Files: muse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: muse.spec =================================================================== RCS file: /cvs/pkgs/rpms/muse/devel/muse.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- muse.spec 17 Jul 2009 06:30:43 -0000 1.6 +++ muse.spec 25 Jul 2009 15:25:37 -0000 1.7 @@ -6,7 +6,7 @@ Summary: Midi/Audio Music Sequence # See: https://fedoraproject.org/wiki/AudioCreation Epoch: 1 Version: 1.0 -Release: %{?prerelease:0.}7%{?prerelease:.%prerelease}%{?dist} +Release: %{?prerelease:0.}7%{?prerelease:.%prerelease}%{?dist}.1 # synti/vam is GPLv2+ # original freeverb plugin was public domain # some of the widgets are GPLv2 @@ -146,7 +146,10 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/*/*/* -%changelog +%changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.0-0.7.rc3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Orcan Ogetbil 1:1.0-0.7.rc3 - Bugfix: muse doesn't start properly on x86_64 on F-11+. Backport glibc-2.10 patch from trunk - Remove BR: e2fsprogs-devel From jkeating at fedoraproject.org Sat Jul 25 15:25:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:25:58 +0000 (UTC) Subject: rpms/museek+/devel museek+.spec,1.13,1.14 Message-ID: <20090725152558.2F7DA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/museek+/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13206 Modified Files: museek+.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: museek+.spec =================================================================== RCS file: /cvs/pkgs/rpms/museek+/devel/museek+.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- museek+.spec 10 Jun 2009 23:10:21 -0000 1.13 +++ museek+.spec 25 Jul 2009 15:25:57 -0000 1.14 @@ -2,7 +2,7 @@ Name: museek+ Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Soulseek filesharing client Group: Applications/Internet @@ -216,6 +216,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Julian Sikorski - 0.2-2 - Dropped unnecessary byte compilation workaround for Fedora 11 and above From caolanm at fedoraproject.org Sat Jul 25 15:26:06 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 25 Jul 2009 15:26:06 +0000 (UTC) Subject: rpms/openoffice.org/F-11 workspace.os132.patch, NONE, 1.1 openoffice.org.spec, 1.1925, 1.1926 Message-ID: <20090725152606.4277611C02BC@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13195/F-11 Modified Files: openoffice.org.spec Added Files: workspace.os132.patch Log Message: add workspace.os132.patch to avoid switch html view overwrite horror workspace.os132.patch: docsh2.cxx | 27 --------------------------- 1 file changed, 27 deletions(-) --- NEW FILE workspace.os132.patch --- Index: sw/source/ui/app/docsh2.cxx =================================================================== --- sw/source/ui/app/docsh2.cxx (.../tags/DEV300_m50/sw) (revision 274340) +++ sw/source/ui/app/docsh2.cxx (.../cws/os132/sw) (revision 274340) @@ -918,33 +918,6 @@ if(!pBool || !pBool->GetValue()) break; } - else - { - // try to store the document - sal_uInt32 nErrorCode = ERRCODE_NONE; - try - { - uno::Reference< frame::XStorable > xStorable( GetModel(), uno::UNO_QUERY_THROW ); - xStorable->store(); - } - catch( task::ErrorCodeIOException& aErrEx ) - { - nErrorCode = (sal_uInt32)aErrEx.ErrCode; - } - catch( uno::Exception& ) - { - nErrorCode = ERRCODE_IO_GENERAL; - } - - if ( nErrorCode != ERRCODE_NONE ) - { - // if the saving has failed show the error and break the action - if ( nErrorCode != ERRCODE_ABORT ) - ErrorHandler::HandleError( nErrorCode ); - - break; - } - } } #ifdef DBG_UTIL { Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/F-11/openoffice.org.spec,v retrieving revision 1.1925 retrieving revision 1.1926 diff -u -p -r1.1925 -r1.1926 --- openoffice.org.spec 20 Jul 2009 08:47:35 -0000 1.1925 +++ openoffice.org.spec 25 Jul 2009 15:26:04 -0000 1.1926 @@ -150,6 +150,7 @@ Patch74: openoffice.org-3.1.0.ooo103277. Patch75: workspace.calc311fixes.patch Patch76: openoffice.org-3.1.0.oooXXXXX.svx.64bit.patch Patch77: openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patch +Patch78: workspace.os132.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1658,6 +1659,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch75 -p0 -b .workspace.calc311fixes.patch %patch76 -p0 -b .oooXXXXX.svx.64bit.patch %patch77 -p0 -b .ooo103651.canvas.nosubpixel.patch +%patch78 -p0 -b .workspace.os132.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4160,8 +4162,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Mon Jul 20 2009 Caol?n McNamara - 1:3.1.0-11.6-UNBUILT +* Sat Jul 25 2009 Caol?n McNamara - 1:3.1.0-11.6-UNBUILT - Resolves: rhbz#512355 add openoffice.org-3.1.0.ooo103651.canvas.nosubpixel.patc +- add workspace.os132.patch to avoid switch html view overwrite horror * Thu Jul 09 2009 Caol?n McNamara - 1:3.1.0-11.5 - Resolves: rhbz#506984 openoffice.org-3.1.0.ooo103277.vcl.kwinworkaround.patch From caolanm at fedoraproject.org Sat Jul 25 15:26:06 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sat, 25 Jul 2009 15:26:06 +0000 (UTC) Subject: rpms/openoffice.org/devel workspace.os132.patch, NONE, 1.1 openoffice.org.spec, 1.1973, 1.1974 Message-ID: <20090725152606.EA77511C02BC@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/openoffice.org/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13195/devel Modified Files: openoffice.org.spec Added Files: workspace.os132.patch Log Message: add workspace.os132.patch to avoid switch html view overwrite horror workspace.os132.patch: docsh2.cxx | 27 --------------------------- 1 file changed, 27 deletions(-) --- NEW FILE workspace.os132.patch --- Index: sw/source/ui/app/docsh2.cxx =================================================================== --- sw/source/ui/app/docsh2.cxx (.../tags/DEV300_m50/sw) (revision 274340) +++ sw/source/ui/app/docsh2.cxx (.../cws/os132/sw) (revision 274340) @@ -918,33 +918,6 @@ if(!pBool || !pBool->GetValue()) break; } - else - { - // try to store the document - sal_uInt32 nErrorCode = ERRCODE_NONE; - try - { - uno::Reference< frame::XStorable > xStorable( GetModel(), uno::UNO_QUERY_THROW ); - xStorable->store(); - } - catch( task::ErrorCodeIOException& aErrEx ) - { - nErrorCode = (sal_uInt32)aErrEx.ErrCode; - } - catch( uno::Exception& ) - { - nErrorCode = ERRCODE_IO_GENERAL; - } - - if ( nErrorCode != ERRCODE_NONE ) - { - // if the saving has failed show the error and break the action - if ( nErrorCode != ERRCODE_ABORT ) - ErrorHandler::HandleError( nErrorCode ); - - break; - } - } } #ifdef DBG_UTIL { Index: openoffice.org.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org/devel/openoffice.org.spec,v retrieving revision 1.1973 retrieving revision 1.1974 diff -u -p -r1.1973 -r1.1974 --- openoffice.org.spec 24 Jul 2009 10:47:13 -0000 1.1973 +++ openoffice.org.spec 25 Jul 2009 15:26:06 -0000 1.1974 @@ -151,6 +151,7 @@ Patch73: workspace.cmcfixes60.patch Patch74: openoffice.org-3.1.0.ooo92645.oox.msxmldecryptimpl.patch Patch75: workspace.vcl103.patch Patch76: workspace.cmcfixes61.patch +Patch77: workspace.os132.patch %define python_py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)") %define instdir %{_libdir} @@ -1687,6 +1688,7 @@ cat %{PATCH11} >> svtools/source/dialogs %patch74 -p0 -b .ooo92645.oox.msxmldecryptimpl.patch %patch75 -p0 -b .workspace.vcl103.patch %patch76 -p0 -b .workspace.cmcfixes61.patch +%patch77 -p0 -b .workspace.os132.patch %build echo build start time is `date`, diskspace: `df -h . | tail -n 1` @@ -4196,8 +4198,9 @@ fi unopkg list --shared > /dev/null 2>&1 || : %changelog -* Fri Jul 24 2009 Caol?n McNamara - 1:3.1.1-16.2 +* Sat Jul 25 2009 Caol?n McNamara - 1:3.1.1-16.2 - make autocorrect and font subpackages noarch +- add workspace.os132.patch to avoid switch html view overwrite horror * Wed Jul 22 2009 Caol?n McNamara - 1:3.1.1-16.1 - next milestone From jkeating at fedoraproject.org Sat Jul 25 15:26:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:26:20 +0000 (UTC) Subject: rpms/musicbox/devel musicbox.spec,1.6,1.7 Message-ID: <20090725152620.0A15B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/musicbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13464 Modified Files: musicbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: musicbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/musicbox/devel/musicbox.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- musicbox.spec 26 Feb 2009 03:27:18 -0000 1.6 +++ musicbox.spec 25 Jul 2009 15:26:19 -0000 1.7 @@ -1,6 +1,6 @@ Name: musicbox Version: 0.2.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A simple one-file-at-a-time audio tag editor Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/*.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:26:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:26:38 +0000 (UTC) Subject: rpms/mussh/devel mussh.spec,1.4,1.5 Message-ID: <20090725152638.CB03011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mussh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13799 Modified Files: mussh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mussh.spec =================================================================== RCS file: /cvs/pkgs/rpms/mussh/devel/mussh.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mussh.spec 26 Feb 2009 03:28:16 -0000 1.4 +++ mussh.spec 25 Jul 2009 15:26:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: mussh Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Multihost SSH wrapper Group: Applications/System @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:26:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:26:57 +0000 (UTC) Subject: rpms/mutt/devel mutt.spec,1.62,1.63 Message-ID: <20090725152657.B0F9611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mutt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14068 Modified Files: mutt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mutt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mutt/devel/mutt.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- mutt.spec 9 Jun 2009 15:14:58 -0000 1.62 +++ mutt.spec 25 Jul 2009 15:26:57 -0000 1.63 @@ -16,7 +16,7 @@ Summary: A text mode mail user agent Name: mutt Version: 1.5.19 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 5 # The entire source code is GPLv2+ except # pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain @@ -150,6 +150,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/muttrc.* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5:1.5.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Miroslav Lichvar 5:1.5.19-5 - fix certificate verification (CVE-2009-1390) - add support for gnutls INSECURE_ALGORITHM error code (#499390) From jkeating at fedoraproject.org Sat Jul 25 15:27:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:27:13 +0000 (UTC) Subject: rpms/mutter/devel mutter.spec,1.1,1.2 Message-ID: <20090725152713.458F711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14290 Modified Files: mutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/mutter/devel/mutter.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mutter.spec 23 Jul 2009 16:53:14 -0000 1.1 +++ mutter.spec 25 Jul 2009 15:27:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: mutter Version: 2.27.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Window and compositing manager based on Clutter Group: User Interface/Desktops @@ -147,6 +147,9 @@ gconftool-2 --makefile-install-rule \ %doc %{_mandir}/man1/mutter-window-demo.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Peter Robinson 2.27.1-2 - Updates from review request From jkeating at fedoraproject.org Sat Jul 25 15:27:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:27:34 +0000 (UTC) Subject: rpms/mux/devel mux.spec,1.1,1.2 Message-ID: <20090725152734.0397811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14548 Modified Files: mux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mux.spec =================================================================== RCS file: /cvs/pkgs/rpms/mux/devel/mux.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mux.spec 23 Jun 2009 06:42:46 -0000 1.1 +++ mux.spec 25 Jul 2009 15:27:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: mux Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK+ widgets for moblin Group: System Environment/Libraries @@ -64,5 +64,8 @@ rm -rf %{buildroot} %{_libdir}/libmux.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Peter Robinson 0.3-1 - Initial packaging From jkeating at fedoraproject.org Sat Jul 25 15:27:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:27:56 +0000 (UTC) Subject: rpms/mx/devel mx.spec,1.22,1.23 Message-ID: <20090725152756.AD0B511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14777 Modified Files: mx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mx.spec =================================================================== RCS file: /cvs/pkgs/rpms/mx/devel/mx.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mx.spec 26 Feb 2009 03:30:14 -0000 1.22 +++ mx.spec 25 Jul 2009 15:27:56 -0000 1.23 @@ -5,7 +5,7 @@ Summary: A collection of Python software tools Name: mx%{pybasever} Version: 3.1.1 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.lemburg.com/files/python/eGenix-mx-Extensions.html Source0: http://www.lemburg.com/python/egenix-mx-base-%{version}.tar.gz Patch1: mx-3.1.1-longyear.patch @@ -108,6 +108,9 @@ rm -rf %{buildroot} %{_includedir}/mx/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:28:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:28:12 +0000 (UTC) Subject: rpms/mx4j/devel mx4j.spec,1.70,1.71 Message-ID: <20090725152812.9759A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mx4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14937 Modified Files: mx4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mx4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/mx4j/devel/mx4j.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- mx4j.spec 26 Feb 2009 03:31:10 -0000 1.70 +++ mx4j.spec 25 Jul 2009 15:28:11 -0000 1.71 @@ -40,7 +40,7 @@ Name: mx4j Version: 3.0.1 -Release: 8.9%{?dist} +Release: 9.9%{?dist} Epoch: 1 Summary: Open source implementation of JMX Java API License: ASL 1.1 @@ -275,6 +275,9 @@ fi %doc dist/docs/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.0.1-9.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.0.1-8.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:28:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:28:29 +0000 (UTC) Subject: rpms/mxml/devel mxml.spec,1.9,1.10 Message-ID: <20090725152829.1D73811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15172 Modified Files: mxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/mxml/devel/mxml.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mxml.spec 26 Feb 2009 03:32:05 -0000 1.9 +++ mxml.spec 25 Jul 2009 15:28:28 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Miniature XML development library Name: mxml Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.easysw.com/~mike/mxml/ @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/mxml.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:28:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:28:43 +0000 (UTC) Subject: rpms/myanmar3-unicode-fonts/devel myanmar3-unicode-fonts.spec, 1.2, 1.3 Message-ID: <20090725152843.AFEEC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/myanmar3-unicode-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15327 Modified Files: myanmar3-unicode-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: myanmar3-unicode-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/myanmar3-unicode-fonts/devel/myanmar3-unicode-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- myanmar3-unicode-fonts.spec 26 Feb 2009 03:32:59 -0000 1.2 +++ myanmar3-unicode-fonts.spec 25 Jul 2009 15:28:43 -0000 1.3 @@ -7,7 +7,7 @@ Name: %{fontname}-fonts Version: 3.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Myanmar3 unicode font Group: User Interface/X @@ -68,6 +68,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:28:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:28:58 +0000 (UTC) Subject: rpms/mybashburn/devel mybashburn.spec,1.2,1.3 Message-ID: <20090725152858.C385B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mybashburn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15526 Modified Files: mybashburn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mybashburn.spec =================================================================== RCS file: /cvs/pkgs/rpms/mybashburn/devel/mybashburn.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mybashburn.spec 26 Feb 2009 03:33:55 -0000 1.2 +++ mybashburn.spec 25 Jul 2009 15:28:58 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Burn data and create songs with interactive dialogs Name: mybashburn Version: 1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/Multimedia License: GPLv2+ URL: http://mybashburn.sf.net @@ -75,6 +75,9 @@ rm -rf "%{buildroot}" %attr(0644,root,root) %{_mandir}/man1/mybashburn.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:29:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:29:13 +0000 (UTC) Subject: rpms/mydns/devel mydns.spec,1.3,1.4 Message-ID: <20090725152913.6C6CD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mydns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15681 Modified Files: mydns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mydns.spec =================================================================== RCS file: /cvs/pkgs/rpms/mydns/devel/mydns.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mydns.spec 25 May 2009 19:22:13 -0000 1.3 +++ mydns.spec 25 Jul 2009 15:29:13 -0000 1.4 @@ -6,7 +6,7 @@ Summary: A Database based DNS server Name: mydns Version: 1.2.8.27 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://mydns-ng.com/ @@ -246,6 +246,9 @@ exit 0 %{_sbindir}/mydns-pgsql %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.8.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Itamar Reis Peixoto - 1.2.8.27-1 - New version 1.2.8.27 From jkeating at fedoraproject.org Sat Jul 25 15:29:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:29:31 +0000 (UTC) Subject: rpms/mypaint/devel mypaint.spec,1.6,1.7 Message-ID: <20090725152931.14AB111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mypaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15864 Modified Files: mypaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mypaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/mypaint/devel/mypaint.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mypaint.spec 26 Feb 2009 03:35:46 -0000 1.6 +++ mypaint.spec 25 Jul 2009 15:29:30 -0000 1.7 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: mypaint Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple paint program Group: Applications/Multimedia @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/%{name}/mydrawwidget.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:29:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:29:59 +0000 (UTC) Subject: rpms/mysql/devel mysql.spec,1.122,1.123 Message-ID: <20090725152959.DC18D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16144 Modified Files: mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql/devel/mysql.spec,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- mysql.spec 11 Jul 2009 03:43:11 -0000 1.122 +++ mysql.spec 25 Jul 2009 15:29:59 -0000 1.123 @@ -1,6 +1,6 @@ Name: mysql Version: 5.1.36 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MySQL client programs and shared libraries Group: Applications/Databases URL: http://www.mysql.com @@ -639,6 +639,9 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.36-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Tom Lane 5.1.36-1 - Update to MySQL 5.1.36, for various fixes described at http://dev.mysql.com/doc/refman/5.1/en/news-5-1-36.html From jkeating at fedoraproject.org Sat Jul 25 15:30:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:30:22 +0000 (UTC) Subject: rpms/mysql++/devel mysql++.spec,1.19,1.20 Message-ID: <20090725153022.A46BA11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16353 Modified Files: mysql++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql++.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql++/devel/mysql++.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- mysql++.spec 26 Feb 2009 03:37:49 -0000 1.19 +++ mysql++.spec 25 Jul 2009 15:30:22 -0000 1.20 @@ -1,7 +1,7 @@ Summary: C++ wrapper for the MySQL C API Name: mysql++ Version: 3.0.9 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 Group: Development/Libraries URL: http://tangentsoft.net/mysql++/ @@ -129,6 +129,9 @@ rm -rf %{buildroot} doc/examples %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:30:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:30:45 +0000 (UTC) Subject: rpms/mysql-connector-java/devel mysql-connector-java.spec,1.7,1.8 Message-ID: <20090725153045.654A711C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql-connector-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16583 Modified Files: mysql-connector-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql-connector-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql-connector-java/devel/mysql-connector-java.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mysql-connector-java.spec 26 Feb 2009 03:38:44 -0000 1.7 +++ mysql-connector-java.spec 25 Jul 2009 15:30:44 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Official JDBC driver for MySQL Name: mysql-connector-java Version: 3.1.12 -Release: 7%{?dist} +Release: 8%{?dist} Epoch: 1 # MySQL FLOSS Exception License: GPLv2 with exceptions @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.1.12-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:3.1.12-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:31:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:31:03 +0000 (UTC) Subject: rpms/mysql-connector-odbc/devel mysql-connector-odbc.spec, 1.19, 1.20 Message-ID: <20090725153103.7497A11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql-connector-odbc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16805 Modified Files: mysql-connector-odbc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql-connector-odbc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql-connector-odbc/devel/mysql-connector-odbc.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- mysql-connector-odbc.spec 26 Feb 2009 03:39:44 -0000 1.19 +++ mysql-connector-odbc.spec 25 Jul 2009 15:31:02 -0000 1.20 @@ -1,7 +1,7 @@ Summary: ODBC driver for MySQL Name: mysql-connector-odbc Version: 5.1.5r1144 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries URL: http://dev.mysql.com/downloads/connector/odbc/5.1.html # exceptions allow library to be linked with most open source SW, @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.5r1144-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.5r1144-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:31:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:31:26 +0000 (UTC) Subject: rpms/mysql-gui-tools/devel mysql-gui-tools.spec,1.12,1.13 Message-ID: <20090725153126.DD8FF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql-gui-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17035 Modified Files: mysql-gui-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql-gui-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql-gui-tools/devel/mysql-gui-tools.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- mysql-gui-tools.spec 26 Feb 2009 03:40:45 -0000 1.12 +++ mysql-gui-tools.spec 25 Jul 2009 15:31:25 -0000 1.13 @@ -1,6 +1,6 @@ Name: mysql-gui-tools Version: 5.0r12 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GUI tools to manage mysql Databases Group: Applications/Databases @@ -178,6 +178,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.0r12-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0r12-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:31:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:31:48 +0000 (UTC) Subject: rpms/mysql-proxy/devel mysql-proxy.spec,1.8,1.9 Message-ID: <20090725153148.6E1E411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysql-proxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17271 Modified Files: mysql-proxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysql-proxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysql-proxy/devel/mysql-proxy.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mysql-proxy.spec 26 Feb 2009 03:41:42 -0000 1.8 +++ mysql-proxy.spec 25 Jul 2009 15:31:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: mysql-proxy Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A proxy for the MySQL Client/Server protocol Group: Applications/Databases @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:32:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:32:09 +0000 (UTC) Subject: rpms/mysqlreport/devel mysqlreport.spec,1.2,1.3 Message-ID: <20090725153209.AC34311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysqlreport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17533 Modified Files: mysqlreport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysqlreport.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysqlreport/devel/mysqlreport.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mysqlreport.spec 26 Feb 2009 03:42:39 -0000 1.2 +++ mysqlreport.spec 25 Jul 2009 15:32:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: mysqlreport Version: 3.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A friendly report of important MySQL status values Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:32:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:32:37 +0000 (UTC) Subject: rpms/mysqltuner/devel mysqltuner.spec,1.9,1.10 Message-ID: <20090725153237.80B2711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysqltuner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17831 Modified Files: mysqltuner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysqltuner.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/devel/mysqltuner.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mysqltuner.spec 1 Jul 2009 19:11:38 -0000 1.9 +++ mysqltuner.spec 25 Jul 2009 15:32:37 -0000 1.10 @@ -1,6 +1,6 @@ Name: mysqltuner Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MySQL high performance tuning script Group: Applications/Databases @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Ville Skytt? - 1.0.0-1 - Update to 1.0.0. From jkeating at fedoraproject.org Sat Jul 25 15:32:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:32:56 +0000 (UTC) Subject: rpms/mysqludf_xql/devel mysqludf_xql.spec,1.1,1.2 Message-ID: <20090725153256.1F2BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mysqludf_xql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18060 Modified Files: mysqludf_xql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mysqludf_xql.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysqludf_xql/devel/mysqludf_xql.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mysqludf_xql.spec 4 Jun 2009 15:48:25 -0000 1.1 +++ mysqludf_xql.spec 25 Jul 2009 15:32:55 -0000 1.2 @@ -2,7 +2,7 @@ Name: mysqludf_xql Version: 0.9.7 -Release: 10%{?dist} +Release: 11%{?dist} Summary: MySQL UDF library for XML output Group: Applications/Databases @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Yanko Kaneti - 0.9.7-10 - update myplugdir for F-11 and mysql-5.1. Remove ldconfig. - initial import From jkeating at fedoraproject.org Sat Jul 25 15:33:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:33:31 +0000 (UTC) Subject: rpms/mythes-bg/devel mythes-bg.spec,1.2,1.3 Message-ID: <20090725153331.61D6B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-bg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18364 Modified Files: mythes-bg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-bg.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-bg/devel/mythes-bg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-bg.spec 26 Feb 2009 03:44:43 -0000 1.2 +++ mythes-bg.spec 25 Jul 2009 15:33:30 -0000 1.3 @@ -1,7 +1,7 @@ Name: mythes-bg Summary: Bulgarian thesaurus Version: 4.1 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/sourceforge/bgoffice/OOo-thes-bg-%{version}.zip Group: Applications/Text @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:34:08 +0000 (UTC) Subject: rpms/mythes-ca/devel mythes-ca.spec,1.5,1.6 Message-ID: <20090725153408.1694D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-ca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18731 Modified Files: mythes-ca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-ca.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ca/devel/mythes-ca.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-ca.spec 11 Jul 2009 16:16:32 -0000 1.5 +++ mythes-ca.spec 25 Jul 2009 15:34:07 -0000 1.6 @@ -1,7 +1,7 @@ Name: mythes-ca Summary: Catalan thesaurus Version: 1.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.softcatala.org/diccionaris/actualitzacions/sinonims/thesaurus-ca.oxt Group: Applications/Text URL: http://www.softcatala.org/wiki/Projectes/Openthesaurus-ca @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caol?n McNamara - 1.5.0-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:34:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:34:32 +0000 (UTC) Subject: rpms/mythes-cs/devel mythes-cs.spec,1.3,1.4 Message-ID: <20090725153432.014F311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-cs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18943 Modified Files: mythes-cs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-cs.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-cs/devel/mythes-cs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-cs.spec 26 Feb 2009 03:46:43 -0000 1.3 +++ mythes-cs.spec 25 Jul 2009 15:34:31 -0000 1.4 @@ -2,7 +2,7 @@ Name: mythes-cs Summary: Czech thesaurus %define upstreamid 20070926 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/thes_cs_CZ_v2.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20070926-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20070926-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:34:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:34:58 +0000 (UTC) Subject: rpms/mythes-da/devel mythes-da.spec,1.4,1.5 Message-ID: <20090725153458.177AE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-da/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19202 Modified Files: mythes-da.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-da.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-da/devel/mythes-da.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-da.spec 11 Jul 2009 16:18:14 -0000 1.4 +++ mythes-da.spec 25 Jul 2009 15:34:57 -0000 1.5 @@ -2,7 +2,7 @@ Name: mythes-da Summary: Danish thesaurus %define upstreamid 20090522 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://extensions.services.openoffice.org/files/1388/9/DanskeSynonymer.oxt Group: Applications/Text URL: http://synonym.oooforum.dk @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090522-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caol?n McNamara - 0.20090522-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:35:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:35:34 +0000 (UTC) Subject: rpms/mythes-de/devel mythes-de.spec,1.24,1.25 Message-ID: <20090725153534.9B5B511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-de/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19596 Modified Files: mythes-de.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-de.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-de/devel/mythes-de.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mythes-de.spec 11 Jul 2009 14:25:07 -0000 1.24 +++ mythes-de.spec 25 Jul 2009 15:35:34 -0000 1.25 @@ -2,7 +2,7 @@ Name: mythes-de Summary: German thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.openthesaurus.de/download/thes_de_DE_v2.zip Group: Applications/Text URL: http://www.openthesaurus.de @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090708-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:35:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:35:57 +0000 (UTC) Subject: rpms/mythes-el/devel mythes-el.spec,1.4,1.5 Message-ID: <20090725153557.AA91A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19865 Modified Files: mythes-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-el/devel/mythes-el.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-el.spec 11 Jul 2009 15:38:25 -0000 1.4 +++ mythes-el.spec 25 Jul 2009 15:35:57 -0000 1.5 @@ -2,7 +2,7 @@ Name: mythes-el Summary: Greek thesaurus %define upstreamid 20070412 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://www.ellak.gr/pub/oo_extras/th_el.zip Group: Applications/Text URL: http://www.openthesaurus.gr/ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20070412-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20070412-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:36:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:36:20 +0000 (UTC) Subject: rpms/mythes-en/devel mythes-en.spec,1.5,1.6 Message-ID: <20090725153620.92CC111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20129 Modified Files: mythes-en.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-en/devel/mythes-en.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-en.spec 12 Jun 2009 14:25:13 -0000 1.5 +++ mythes-en.spec 25 Jul 2009 15:36:20 -0000 1.6 @@ -1,7 +1,7 @@ Name: mythes-en Summary: English thesaurus Version: 3.0 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://www.danielnaber.de/wn2ooo/wn2ooo20050723.tgz Group: Applications/Text URL: http://www.danielnaber.de/wn2ooo/ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Caolan McNamara - 3.0-4 - extend coverage From jkeating at fedoraproject.org Sat Jul 25 15:36:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:36:38 +0000 (UTC) Subject: rpms/mythes-es/devel mythes-es.spec,1.7,1.8 Message-ID: <20090725153638.8BA5711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-es/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20382 Modified Files: mythes-es.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-es.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-es/devel/mythes-es.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mythes-es.spec 11 Jul 2009 14:27:51 -0000 1.7 +++ mythes-es.spec 25 Jul 2009 15:36:38 -0000 1.8 @@ -2,7 +2,7 @@ Name: mythes-es Summary: Spanish thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://openthes-es.berlios.de/download/OOo2-thes_es_ES.tar.bz2 Group: Applications/Text URL: http://openthes-es.berlios.de @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090708-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caol?n McNamara - 0.20090708-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:36:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:36:57 +0000 (UTC) Subject: rpms/mythes-fr/devel mythes-fr.spec,1.4,1.5 Message-ID: <20090725153657.3891711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-fr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20616 Modified Files: mythes-fr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-fr.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-fr/devel/mythes-fr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mythes-fr.spec 13 Jul 2009 15:30:34 -0000 1.4 +++ mythes-fr.spec 25 Jul 2009 15:36:57 -0000 1.5 @@ -1,7 +1,7 @@ Name: mythes-fr Summary: French thesaurus Version: 2.1 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://download.tuxfamily.org/dicollecte2/thesaurus_2-1.zip Group: Applications/Text URL: http://dicollecte.tuxfamily.org/home.php?prj=fr @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Caolan McNamara - 2.1-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:37:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:37:15 +0000 (UTC) Subject: rpms/mythes-ga/devel mythes-ga.spec,1.6,1.7 Message-ID: <20090725153715.986F111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-ga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20909 Modified Files: mythes-ga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-ga.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ga/devel/mythes-ga.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mythes-ga.spec 11 Jul 2009 15:37:16 -0000 1.6 +++ mythes-ga.spec 25 Jul 2009 15:37:15 -0000 1.7 @@ -2,7 +2,7 @@ Name: mythes-ga Summary: Irish thesaurus %define upstreamid 20071001 Version: 0.%{upstreamid} -Release: 4%{?dist} +Release: 5%{?dist} Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/thes_ga_IE_v2.zip Group: Applications/Text URL: http://borel.slu.edu/lsg/index-en.html @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20071001-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20071001-4 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:37:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:37:35 +0000 (UTC) Subject: rpms/mythes-hu/devel mythes-hu.spec,1.1,1.2 Message-ID: <20090725153735.C408411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-hu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21221 Modified Files: mythes-hu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-hu.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-hu/devel/mythes-hu.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mythes-hu.spec 16 Jul 2009 08:11:22 -0000 1.1 +++ mythes-hu.spec 25 Jul 2009 15:37:35 -0000 1.2 @@ -2,7 +2,7 @@ Name: mythes-hu Summary: Hungarian thesaurus %define upstreamid 20090203 Version: 0.%{upstreamid} -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/1283/4/hu_dicts.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/hu_dicts @@ -33,5 +33,8 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090203-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Caolan McNamara - 0.20090203-1 - initial version From jkeating at fedoraproject.org Sat Jul 25 15:37:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:37:56 +0000 (UTC) Subject: rpms/mythes-it/devel mythes-it.spec,1.3,1.4 Message-ID: <20090725153756.8FF3211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-it/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21447 Modified Files: mythes-it.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-it.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-it/devel/mythes-it.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-it.spec 10 Jul 2009 15:59:02 -0000 1.3 +++ mythes-it.spec 25 Jul 2009 15:37:56 -0000 1.4 @@ -1,7 +1,7 @@ Name: mythes-it Summary: Italian thesaurus Version: 2.0.9l -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/sourceforge/linguistico/thesaurus2_it_02_09_l_2008_11_29.zip Group: Applications/Text URL: http://linguistico.sourceforge.net/pages/thesaurus_italiano.html @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.9l-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 2.0.9l-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:38:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:38:15 +0000 (UTC) Subject: rpms/mythes-mi/devel mythes-mi.spec,1.2,1.3 Message-ID: <20090725153815.26C7D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-mi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21638 Modified Files: mythes-mi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-mi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-mi/devel/mythes-mi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-mi.spec 26 Feb 2009 03:55:16 -0000 1.2 +++ mythes-mi.spec 25 Jul 2009 15:38:14 -0000 1.3 @@ -2,7 +2,7 @@ Name: mythes-mi Summary: Maori thesaurus %define upstreamid 20080630 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://packages.papakupu.maori.nz/mythes/mythes-mi-0.1.%{upstreamid}-beta.tar.gz Group: Applications/Text URL: http://papakupu.maori.nz/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20080630-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20080630-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:38:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:38:32 +0000 (UTC) Subject: rpms/mythes-nl/devel mythes-nl.spec,1.5,1.6 Message-ID: <20090725153832.E5CFA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-nl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21926 Modified Files: mythes-nl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-nl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-nl/devel/mythes-nl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- mythes-nl.spec 11 Jul 2009 14:30:33 -0000 1.5 +++ mythes-nl.spec 25 Jul 2009 15:38:32 -0000 1.6 @@ -2,7 +2,7 @@ Name: mythes-nl Summary: Dutch thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.opentaal.org/opentaalbank/thesaurus/download/thes_nl_v2.zip Group: Applications/Text URL: http://www.opentaal.org/opentaalbank/thesaurus @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090708-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:38:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:38:56 +0000 (UTC) Subject: rpms/mythes-pl/devel mythes-pl.spec,1.6,1.7 Message-ID: <20090725153856.64D7111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22230 Modified Files: mythes-pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-pl/devel/mythes-pl.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mythes-pl.spec 14 Jul 2009 12:27:46 -0000 1.6 +++ mythes-pl.spec 25 Jul 2009 15:38:55 -0000 1.7 @@ -1,7 +1,7 @@ Name: mythes-pl Summary: Polish thesaurus Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/synonimy/OOo2-Thesaurus-%{version}.zip Group: Applications/Text URL: http://synonimy.ux.pl/ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Caolan McNamara - 1.5-3 - clean spec From jkeating at fedoraproject.org Sat Jul 25 15:39:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:39:10 +0000 (UTC) Subject: rpms/mythes-pt/devel mythes-pt.spec,1.3,1.4 Message-ID: <20090725153910.9FB9D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-pt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22422 Modified Files: mythes-pt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-pt.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-pt/devel/mythes-pt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- mythes-pt.spec 11 Jul 2009 16:46:52 -0000 1.3 +++ mythes-pt.spec 25 Jul 2009 15:39:10 -0000 1.4 @@ -2,7 +2,7 @@ Name: mythes-pt Summary: Portuguese thesaurus %define upstreamid 20060817 Version: 0.%{upstreamid} -Release: 3%{?dist} +Release: 4%{?dist} Source: http://openthesaurus.caixamagica.pt/download/thes_pt_PT_v2.zip Group: Applications/Text URL: http://openthesaurus.caixamagica.pt/ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20060817-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20060817-3 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:39:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:39:29 +0000 (UTC) Subject: rpms/mythes-ro/devel mythes-ro.spec,1.2,1.3 Message-ID: <20090725153929.C3BBC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-ro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22593 Modified Files: mythes-ro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-ro.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ro/devel/mythes-ro.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-ro.spec 26 Feb 2009 03:58:11 -0000 1.2 +++ mythes-ro.spec 25 Jul 2009 15:39:29 -0000 1.3 @@ -1,7 +1,7 @@ Name: mythes-ro Summary: Romanian thesaurus Version: 3.3 -Release: 0.2.test3%{?dist} +Release: 0.3.test3%{?dist} Source: http://downloads.sourceforge.net/rospell/th_ro_RO.3.3-test3.zip Group: Applications/Text URL: http://rospell.sourceforge.net/ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3-0.3.test3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.3-0.2.test3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:39:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:39:45 +0000 (UTC) Subject: rpms/mythes-ru/devel mythes-ru.spec,1.2,1.3 Message-ID: <20090725153945.41BD111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22832 Modified Files: mythes-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-ru/devel/mythes-ru.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-ru.spec 26 Feb 2009 03:59:05 -0000 1.2 +++ mythes-ru.spec 25 Jul 2009 15:39:45 -0000 1.3 @@ -2,7 +2,7 @@ Name: mythes-ru Summary: Russian thesaurus %define upstreamid 20070613 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://download.i-rs.ru/pub/openoffice/dict/thes_ru_RU_v2.zip Group: Applications/Text URL: http://wiki.services.openoffice.org/wiki/Dictionaries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20070613-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20070613-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:40:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:40:00 +0000 (UTC) Subject: rpms/mythes-sk/devel mythes-sk.spec,1.14,1.15 Message-ID: <20090725154000.EEC8C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-sk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23011 Modified Files: mythes-sk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-sk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sk/devel/mythes-sk.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- mythes-sk.spec 11 Jul 2009 14:23:28 -0000 1.14 +++ mythes-sk.spec 25 Jul 2009 15:40:00 -0000 1.15 @@ -2,7 +2,7 @@ Name: mythes-sk Summary: Slovak thesaurus %define upstreamid 20090707 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://www.sk-spell.sk.cx/thesaurus/download/OOo-Thesaurus2-sk_SK.zip Group: Applications/Text URL: http://www.sk-spell.sk.cx/thesaurus/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090707-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090707-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:40:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:40:17 +0000 (UTC) Subject: rpms/mythes-sl/devel mythes-sl.spec,1.8,1.9 Message-ID: <20090725154017.41EA411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23164 Modified Files: mythes-sl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sl/devel/mythes-sl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mythes-sl.spec 11 Jul 2009 14:29:17 -0000 1.8 +++ mythes-sl.spec 25 Jul 2009 15:40:16 -0000 1.9 @@ -2,7 +2,7 @@ Name: mythes-sl Summary: Slovenian thesaurus %define upstreamid 20090708 Version: 0.%{upstreamid} -Release: 2%{?dist} +Release: 3%{?dist} Source: http://193.2.66.133:85/download/thes_sl_SI_v2.zip Group: Applications/Text URL: http://www.tezaver.si/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20090708-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.20090708-2 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 15:40:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:40:40 +0000 (UTC) Subject: rpms/mythes-sv/devel mythes-sv.spec,1.2,1.3 Message-ID: <20090725154040.DAC9B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-sv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23412 Modified Files: mythes-sv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-sv.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-sv/devel/mythes-sv.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-sv.spec 27 Jun 2009 08:44:18 -0000 1.2 +++ mythes-sv.spec 25 Jul 2009 15:40:40 -0000 1.3 @@ -1,7 +1,7 @@ Name: mythes-sv Summary: Swedish thesaurus Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://extensions.services.openoffice.org/files/934/3/SwedishThesaurus.oxt Group: Applications/Text URL: http://extensions.services.openoffice.org/project/SweThes @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Caolan McNamara - 1.2-1 - latest version From jkeating at fedoraproject.org Sat Jul 25 15:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:41:04 +0000 (UTC) Subject: rpms/mythes-uk/devel mythes-uk.spec,1.2,1.3 Message-ID: <20090725154104.4E9FC11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mythes-uk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23680 Modified Files: mythes-uk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mythes-uk.spec =================================================================== RCS file: /cvs/pkgs/rpms/mythes-uk/devel/mythes-uk.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mythes-uk.spec 26 Feb 2009 04:01:51 -0000 1.2 +++ mythes-uk.spec 25 Jul 2009 15:41:04 -0000 1.3 @@ -1,7 +1,7 @@ Name: mythes-uk Summary: Ukrainian thesaurus Version: 1.5.7 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://downloads.sourceforge.net/ispell-uk/spell-uk-%{version}.tgz Group: Applications/Text URL: http://sourceforge.net/projects/ispell-uk @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mythes/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:41:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:41:21 +0000 (UTC) Subject: rpms/mytop/devel mytop.spec,1.2,1.3 Message-ID: <20090725154121.A82A111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mytop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23877 Modified Files: mytop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: mytop.spec =================================================================== RCS file: /cvs/pkgs/rpms/mytop/devel/mytop.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mytop.spec 26 Feb 2009 04:03:08 -0000 1.2 +++ mytop.spec 25 Jul 2009 15:41:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: mytop Version: 1.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A top clone for MySQL Group: Applications/System License: GPLv2 @@ -46,6 +46,9 @@ familiar top application. %{_bindir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:41:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:41:43 +0000 (UTC) Subject: rpms/nabi/devel nabi.spec,1.11,1.12 Message-ID: <20090725154143.526AF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nabi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24147 Modified Files: nabi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nabi.spec =================================================================== RCS file: /cvs/pkgs/rpms/nabi/devel/nabi.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- nabi.spec 26 Feb 2009 04:04:08 -0000 1.11 +++ nabi.spec 25 Jul 2009 15:41:42 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Hangul X Input Method Name: nabi Version: 0.99.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: User Interface/X License: GPLv2+ @@ -58,6 +58,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:42:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:42:04 +0000 (UTC) Subject: rpms/nachocalendar/devel nachocalendar.spec,1.2,1.3 Message-ID: <20090725154204.D203E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nachocalendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24388 Modified Files: nachocalendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nachocalendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/nachocalendar/devel/nachocalendar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nachocalendar.spec 26 Feb 2009 04:05:09 -0000 1.2 +++ nachocalendar.spec 25 Jul 2009 15:42:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: nachocalendar Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides a flexible Calendar component to the Java Platform Group: Development/Libraries License: LGPLv2+ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:42:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:42:28 +0000 (UTC) Subject: rpms/nafees-web-naskh-fonts/devel nafees-web-naskh-fonts.spec, 1.6, 1.7 Message-ID: <20090725154228.078BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nafees-web-naskh-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24652 Modified Files: nafees-web-naskh-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nafees-web-naskh-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/nafees-web-naskh-fonts/devel/nafees-web-naskh-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nafees-web-naskh-fonts.spec 11 Apr 2009 20:42:19 -0000 1.6 +++ nafees-web-naskh-fonts.spec 25 Jul 2009 15:42:27 -0000 1.7 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Nafees Web font for writing Urdu in the Naskh script Group: User Interface/X @@ -58,6 +58,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Mathieu Bridon - 1.2-2 - added comment explaining how the source is obtained (as it is modified from upstream) - temporary fix for RHBZ#490830 while not fixed upstream From jkeating at fedoraproject.org Sat Jul 25 15:42:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:42:46 +0000 (UTC) Subject: rpms/nagi/devel nagi.spec,1.6,1.7 Message-ID: <20090725154246.A567611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nagi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24871 Modified Files: nagi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nagi.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagi/devel/nagi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nagi.spec 26 Feb 2009 04:06:58 -0000 1.6 +++ nagi.spec 25 Jul 2009 15:42:46 -0000 1.7 @@ -2,7 +2,7 @@ Summary: An interpreter for AGI games Name: nagi Version: 2.06 -Release: 7%{?dist} +Release: 8%{?dist} Group: Amusements/Games License: MIT URL: http://www.agidev.com/projects/nagi/ @@ -58,6 +58,9 @@ install -Dp -m644 src/nagi.1 %{buildroot rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.06-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.06-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:43:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:43:05 +0000 (UTC) Subject: rpms/nagios-plugins/devel nagios-plugins.spec,1.59,1.60 Message-ID: <20090725154305.95A4A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nagios-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25121 Modified Files: nagios-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nagios-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios-plugins/devel/nagios-plugins.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- nagios-plugins.spec 22 Jun 2009 19:56:33 -0000 1.59 +++ nagios-plugins.spec 25 Jul 2009 15:43:05 -0000 1.60 @@ -1,6 +1,6 @@ Name: nagios-plugins Version: 1.4.13 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Host/service/network monitoring program plugins for Nagios Group: Applications/System @@ -809,6 +809,9 @@ rm -rf %{buildroot} %{_libdir}/nagios/plugins/utils.sh %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.13-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Mike McGrath - 1.4.13-15 - Added patch from upstream to fix ntp faults (bz #479030) From jkeating at fedoraproject.org Sat Jul 25 15:43:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:43:25 +0000 (UTC) Subject: rpms/nagios-plugins-check_sip/devel nagios-plugins-check_sip.spec, 1.2, 1.3 Message-ID: <20090725154325.04D5611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nagios-plugins-check_sip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25404 Modified Files: nagios-plugins-check_sip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nagios-plugins-check_sip.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios-plugins-check_sip/devel/nagios-plugins-check_sip.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nagios-plugins-check_sip.spec 26 Feb 2009 04:09:52 -0000 1.2 +++ nagios-plugins-check_sip.spec 25 Jul 2009 15:43:24 -0000 1.3 @@ -3,7 +3,7 @@ Summary: A Nagios plugin to check SIP servers and devices Name: nagios-plugins-check_sip Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/System URL: http://bashton.com/osprojects/nagiosplugins/ @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{_libdir}/nagios/plugins/check_sip %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:43:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:43:41 +0000 (UTC) Subject: rpms/nagios-plugins-snmp-disk-proc/devel nagios-plugins-snmp-disk-proc.spec, 1.8, 1.9 Message-ID: <20090725154341.899D111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nagios-plugins-snmp-disk-proc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25618 Modified Files: nagios-plugins-snmp-disk-proc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nagios-plugins-snmp-disk-proc.spec =================================================================== RCS file: /cvs/pkgs/rpms/nagios-plugins-snmp-disk-proc/devel/nagios-plugins-snmp-disk-proc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nagios-plugins-snmp-disk-proc.spec 26 Feb 2009 04:10:49 -0000 1.8 +++ nagios-plugins-snmp-disk-proc.spec 25 Jul 2009 15:43:41 -0000 1.9 @@ -2,7 +2,7 @@ Name: nagios-plugins-snmp-disk-proc Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Nagios SNMP plugins to monitor remote disk and processes Group: Applications/System @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:43:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:43:59 +0000 (UTC) Subject: rpms/naim/devel naim.spec,1.18,1.19 Message-ID: <20090725154359.8625E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/naim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25841 Modified Files: naim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: naim.spec =================================================================== RCS file: /cvs/pkgs/rpms/naim/devel/naim.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- naim.spec 26 Feb 2009 04:11:45 -0000 1.18 +++ naim.spec 25 Jul 2009 15:43:59 -0000 1.19 @@ -1,6 +1,6 @@ Name: naim Version: 0.11.8.3.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An ncurses-based console AIM, ICQ, IRC, and Lily client Group: Applications/Internet @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.8.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11.8.3.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:44:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:44:14 +0000 (UTC) Subject: rpms/namazu/devel namazu.spec,1.27,1.28 Message-ID: <20090725154414.2137611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/namazu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26039 Modified Files: namazu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: namazu.spec =================================================================== RCS file: /cvs/pkgs/rpms/namazu/devel/namazu.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- namazu.spec 30 Mar 2009 01:56:56 -0000 1.27 +++ namazu.spec 25 Jul 2009 15:44:13 -0000 1.28 @@ -4,7 +4,7 @@ Name: namazu Version: 2.0.19 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://www.namazu.org/ BuildRequires: perl >= 5.8.0, perl(NKF) >= 2.04, perl(Text::Kakasi) >= 1.00 @@ -159,6 +159,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Akira TAGOH - 2.0.19-2 - Fix a broken deps. From jkeating at fedoraproject.org Sat Jul 25 15:44:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:44:28 +0000 (UTC) Subject: rpms/nano/devel nano.spec,1.25,1.26 Message-ID: <20090725154428.7F1FE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nano/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26279 Modified Files: nano.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nano.spec =================================================================== RCS file: /cvs/pkgs/rpms/nano/devel/nano.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- nano.spec 26 Feb 2009 04:13:32 -0000 1.25 +++ nano.spec 25 Jul 2009 15:44:28 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A small text editor Name: nano Version: 2.0.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Editors URL: http://www.nano-editor.org @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_datadir}/nano %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:44:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:44:46 +0000 (UTC) Subject: rpms/nant/devel nant.spec,1.32,1.33 Message-ID: <20090725154446.9BAF711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26493 Modified Files: nant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nant.spec =================================================================== RCS file: /cvs/pkgs/rpms/nant/devel/nant.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- nant.spec 3 Mar 2009 22:10:11 -0000 1.32 +++ nant.spec 25 Jul 2009 15:44:45 -0000 1.33 @@ -6,7 +6,7 @@ Summary: NAnt is a build tool for Mono and .NET Name: nant Version: 0.85 -Release: 27%{?dist} +Release: 28%{?dist} Epoch: 1 Source0: http://download.sourceforge.net/nant/%{name}-%{version}-src.tar.gz Patch0: nant-build.patch @@ -132,6 +132,9 @@ scrollkeeper-update -q || : %doc examples/* doc/help/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.85-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Tom "spot" Callaway - 1:0.85-27 - unbootstrap From jkeating at fedoraproject.org Sat Jul 25 15:45:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:45:03 +0000 (UTC) Subject: rpms/nas/devel nas.spec,1.24,1.25 Message-ID: <20090725154503.20E9D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26846 Modified Files: nas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nas.spec =================================================================== RCS file: /cvs/pkgs/rpms/nas/devel/nas.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- nas.spec 26 Feb 2009 04:15:36 -0000 1.24 +++ nas.spec 25 Jul 2009 15:45:02 -0000 1.25 @@ -7,7 +7,7 @@ Name: nas Summary: The Network Audio System (NAS) Version: 1.9.1 -Release: 5%{?dist} +Release: 6%{?dist} BuildRequires: bison flex %if 0%{?fedora} > 4 || 0%{?rhel} > 4 BuildRequires: imake libXaw-devel libXpm-devel libXp-devel libXext-devel libXt-devel @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.9.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:45:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:45:24 +0000 (UTC) Subject: rpms/nasm/devel nasm.spec,1.29,1.30 Message-ID: <20090725154524.2DB6D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27352 Modified Files: nasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/nasm/devel/nasm.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- nasm.spec 21 Jul 2009 14:53:08 -0000 1.29 +++ nasm.spec 25 Jul 2009 15:45:23 -0000 1.30 @@ -2,7 +2,7 @@ Summary: A portable x86 assembler which uses Intel-like syntax Name: nasm Version: 2.07 -Release: 1%{?dist} +Release: 2%{?dist} # No version specified. License: LGPLv2+ Group: Development/Languages @@ -90,6 +90,9 @@ fi %{_bindir}/rdf2srec %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Adam Tkac - 2.07-1 - update to 2.07 From jkeating at fedoraproject.org Sat Jul 25 15:45:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:45:43 +0000 (UTC) Subject: rpms/naturette/devel naturette.spec,1.3,1.4 Message-ID: <20090725154543.9542B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/naturette/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27761 Modified Files: naturette.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: naturette.spec =================================================================== RCS file: /cvs/pkgs/rpms/naturette/devel/naturette.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- naturette.spec 26 Feb 2009 04:17:35 -0000 1.3 +++ naturette.spec 25 Jul 2009 15:45:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: naturette Version: 1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An AGI adventure game Group: Amusements/Games @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/naturette-wrapper.sh %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:46:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:46:04 +0000 (UTC) Subject: rpms/nautilus/devel nautilus.spec,1.276,1.277 Message-ID: <20090725154604.06A7611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28070 Modified Files: nautilus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus/devel/nautilus.spec,v retrieving revision 1.276 retrieving revision 1.277 diff -u -p -r1.276 -r1.277 --- nautilus.spec 14 Jul 2009 04:06:30 -0000 1.276 +++ nautilus.spec 25 Jul 2009 15:46:03 -0000 1.277 @@ -16,7 +16,7 @@ Name: nautilus Summary: File manager for GNOME Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: User Interface/Desktops Source: http://download.gnome.org/sources/%{name}/2.27/%{name}-%{version}.tar.bz2 @@ -263,6 +263,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 15:46:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:46:30 +0000 (UTC) Subject: rpms/nautilus-actions/devel nautilus-actions.spec,1.21,1.22 Message-ID: <20090725154630.2268C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-actions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28331 Modified Files: nautilus-actions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-actions.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-actions/devel/nautilus-actions.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- nautilus-actions.spec 29 May 2009 12:39:57 -0000 1.21 +++ nautilus-actions.spec 25 Jul 2009 15:46:30 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Nautilus extension for customizing the context menu Name: nautilus-actions Version: 1.10.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: User Interface/Desktops License: GPLv2+ URL: http://www.grumz.net/node/8 @@ -69,6 +69,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/fedora-nact.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.10.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Deji Akingunola - 1.10.1-1 - Update to version 1.10.1 From jkeating at fedoraproject.org Sat Jul 25 15:46:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:46:47 +0000 (UTC) Subject: rpms/nautilus-cd-burner/devel nautilus-cd-burner.spec,1.116,1.117 Message-ID: <20090725154647.D5EA211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-cd-burner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28521 Modified Files: nautilus-cd-burner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-cd-burner.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-cd-burner/devel/nautilus-cd-burner.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- nautilus-cd-burner.spec 23 Apr 2009 22:36:51 -0000 1.116 +++ nautilus-cd-burner.spec 25 Jul 2009 15:46:47 -0000 1.117 @@ -12,7 +12,7 @@ Summary: Easy to use CD burning for Gnome Name: nautilus-cd-burner Version: 2.25.3 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://download.gnome.org/sources/nautilus-cd-burner/2.25/%{name}-%{version}.tar.bz2 License: GPLv2+ Group: User Interface/Desktops @@ -116,6 +116,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.25.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Tom "spot" Callaway - 2.25.3-7 - don't package main bits, only libs and devel From jkeating at fedoraproject.org Sat Jul 25 15:47:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:47:01 +0000 (UTC) Subject: rpms/nautilus-image-converter/devel nautilus-image-converter.spec, 1.19, 1.20 Message-ID: <20090725154701.BB6BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-image-converter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28764 Modified Files: nautilus-image-converter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-image-converter.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-image-converter/devel/nautilus-image-converter.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- nautilus-image-converter.spec 26 Feb 2009 04:22:10 -0000 1.19 +++ nautilus-image-converter.spec 25 Jul 2009 15:47:01 -0000 1.20 @@ -1,6 +1,6 @@ Name: nautilus-image-converter Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Nautilus extension to mass resize images Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:47:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:47:24 +0000 (UTC) Subject: rpms/nautilus-open-terminal/devel nautilus-open-terminal.spec, 1.31, 1.32 Message-ID: <20090725154724.4C22811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-open-terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28955 Modified Files: nautilus-open-terminal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-open-terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-open-terminal/devel/nautilus-open-terminal.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- nautilus-open-terminal.spec 14 Jul 2009 11:59:32 -0000 1.31 +++ nautilus-open-terminal.spec 25 Jul 2009 15:47:24 -0000 1.32 @@ -1,6 +1,6 @@ Name: nautilus-open-terminal Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Nautilus extension for an open terminal shortcut Group: User Interface/Desktops @@ -61,6 +61,9 @@ gconftool-2 \ %{_libdir}/nautilus/extensions-2.0/*.so* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Paul W. Frields - 0.13-1 - Update to upstream 0.13 From jkeating at fedoraproject.org Sat Jul 25 15:47:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:47:41 +0000 (UTC) Subject: rpms/nautilus-python/devel nautilus-python.spec,1.8,1.9 Message-ID: <20090725154741.0AE0611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29174 Modified Files: nautilus-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-python/devel/nautilus-python.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nautilus-python.spec 26 Feb 2009 04:24:02 -0000 1.8 +++ nautilus-python.spec 25 Jul 2009 15:47:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: nautilus-python Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python bindings for Nautilus Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:47:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:47:59 +0000 (UTC) Subject: rpms/nautilus-search-tool/devel nautilus-search-tool.spec, 1.16, 1.17 Message-ID: <20090725154759.F0B1811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-search-tool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29406 Modified Files: nautilus-search-tool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-search-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-search-tool/devel/nautilus-search-tool.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- nautilus-search-tool.spec 18 Jul 2009 18:13:05 -0000 1.16 +++ nautilus-search-tool.spec 25 Jul 2009 15:47:59 -0000 1.17 @@ -1,6 +1,6 @@ Name: nautilus-search-tool Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Nautilus extension that makes searching for files easier Group: System Environment/Shells @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Paul W. Frields - 0.3.0-2 - Fix missing BuildRequires From jkeating at fedoraproject.org Sat Jul 25 15:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:48:26 +0000 (UTC) Subject: rpms/nautilus-sendto/devel nautilus-sendto.spec,1.77,1.78 Message-ID: <20090725154826.077E411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-sendto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29631 Modified Files: nautilus-sendto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-sendto.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sendto/devel/nautilus-sendto.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- nautilus-sendto.spec 19 Jun 2009 19:20:22 -0000 1.77 +++ nautilus-sendto.spec 25 Jul 2009 15:48:25 -0000 1.78 @@ -1,6 +1,6 @@ Name: nautilus-sendto Version: 1.1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Nautilus context menu for sending files Group: User Interface/Desktops @@ -99,6 +99,9 @@ fi %{_mandir}/man1/nautilus-sendto.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Bastien Nocera 1.1.5-4 - Update for new empathy API From jkeating at fedoraproject.org Sat Jul 25 15:48:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:48:41 +0000 (UTC) Subject: rpms/nautilus-sound-converter/devel nautilus-sound-converter.spec, 1.8, 1.9 Message-ID: <20090725154841.9683611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nautilus-sound-converter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29814 Modified Files: nautilus-sound-converter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nautilus-sound-converter.spec =================================================================== RCS file: /cvs/pkgs/rpms/nautilus-sound-converter/devel/nautilus-sound-converter.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nautilus-sound-converter.spec 26 Apr 2009 21:04:35 -0000 1.8 +++ nautilus-sound-converter.spec 25 Jul 2009 15:48:41 -0000 1.9 @@ -1,6 +1,6 @@ Name: nautilus-sound-converter Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Nautilus extension to convert audio files Group: User Interface/Desktops @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Brian Pepple - 1.0.2-1 - Update to 1.0.2. From jkeating at fedoraproject.org Sat Jul 25 15:49:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:49:00 +0000 (UTC) Subject: rpms/nazghul/devel nazghul.spec,1.23,1.24 Message-ID: <20090725154900.E2B4211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nazghul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30020 Modified Files: nazghul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nazghul.spec =================================================================== RCS file: /cvs/pkgs/rpms/nazghul/devel/nazghul.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- nazghul.spec 14 Apr 2009 16:28:28 -0000 1.23 +++ nazghul.spec 25 Jul 2009 15:49:00 -0000 1.24 @@ -1,7 +1,7 @@ %define cvsdate 20080407 Name: nazghul Version: 0.6.0 -Release: 6.%{cvsdate}cvs%{?dist} +Release: 7.%{cvsdate}cvs%{?dist} Summary: A computer role-playing game (CRPG) engine Group: Amusements/Games @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.0-7.20080407cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Jason L Tibbitts III - 0.6.0-6.20080407cvs - Tweak desktop file with proper categories (bug 485358) and fixes for other desktop-file-install complaints. From jkeating at fedoraproject.org Sat Jul 25 15:49:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:49:19 +0000 (UTC) Subject: rpms/nbd/devel nbd.spec,1.7,1.8 Message-ID: <20090725154919.A125F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30190 Modified Files: nbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbd/devel/nbd.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nbd.spec 13 May 2009 23:07:41 -0000 1.7 +++ nbd.spec 25 Jul 2009 15:49:19 -0000 1.8 @@ -1,6 +1,6 @@ Name: nbd Version: 2.9.12 -Release: 1%{dist} +Release: 2%{dist} Summary: Network Block Device user-space tools (TCP version) Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/nbd-client %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.9.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Milos Jakubicek - 2.9.12-1 - Update to 2.9.12 (resolves BZ#454099). - Added nbd-module.patch (resolves BZ#496751). From jkeating at fedoraproject.org Sat Jul 25 15:49:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:49:36 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.10,1.11 Message-ID: <20090725154936.D650211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30399 Modified Files: nbtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- nbtk.spec 25 Jul 2009 13:23:40 -0000 1.10 +++ nbtk.spec 25 Jul 2009 15:49:36 -0000 1.11 @@ -1,6 +1,6 @@ Name: nbtk Version: 0.16.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Peter Robinson 0.16.3-1 - New upstream 0.16.3 release From jkeating at fedoraproject.org Sat Jul 25 15:49:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:49:54 +0000 (UTC) Subject: rpms/nbtscan/devel nbtscan.spec,1.4,1.5 Message-ID: <20090725154954.7FF6411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nbtscan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30560 Modified Files: nbtscan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nbtscan.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtscan/devel/nbtscan.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nbtscan.spec 26 Feb 2009 04:30:46 -0000 1.4 +++ nbtscan.spec 25 Jul 2009 15:49:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: nbtscan Version: 1.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to gather NetBIOS info from Windows networks Group: Applications/Internet @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:50:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:50:11 +0000 (UTC) Subject: rpms/nc/devel nc.spec,1.43,1.44 Message-ID: <20090725155011.9EA6011C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30759 Modified Files: nc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nc.spec =================================================================== RCS file: /cvs/pkgs/rpms/nc/devel/nc.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- nc.spec 3 Apr 2009 14:42:00 -0000 1.43 +++ nc.spec 25 Jul 2009 15:50:11 -0000 1.44 @@ -1,7 +1,7 @@ Summary: Reads and writes data across network connections using TCP or UDP Name: nc Version: 1.84 -Release: 19%{?dist} +Release: 20%{?dist} URL: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/ # source is CVS checkout Source0: nc-%{version}.tar.bz2 @@ -72,6 +72,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc README scripts %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.84-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 Jan Zeleny - 1.84-19 - updated network reading to be more efficient (#493129) From jkeating at fedoraproject.org Sat Jul 25 15:50:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:50:29 +0000 (UTC) Subject: rpms/nc6/devel nc6.spec,1.7,1.8 Message-ID: <20090725155029.900E311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nc6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30972 Modified Files: nc6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nc6.spec =================================================================== RCS file: /cvs/pkgs/rpms/nc6/devel/nc6.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nc6.spec 26 Feb 2009 04:32:46 -0000 1.7 +++ nc6.spec 25 Jul 2009 15:50:29 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Netcat with IPv6 Support Name: nc6 Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Group: Applications/Internet URL: http://www.deepspace6.net/projects/netcat6.html License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc README AUTHORS COPYING NEWS TODO %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:50:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:50:44 +0000 (UTC) Subject: rpms/ncdu/devel ncdu.spec,1.3,1.4 Message-ID: <20090725155044.F1F4D11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncdu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31174 Modified Files: ncdu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncdu.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/devel/ncdu.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ncdu.spec 26 Feb 2009 04:33:43 -0000 1.3 +++ ncdu.spec 25 Jul 2009 15:50:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: ncdu Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Text-based disk usage viewer Group: Applications/File @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{_bindir}/ncdu %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:51:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:51:00 +0000 (UTC) Subject: rpms/ncftp/devel ncftp.spec,1.16,1.17 Message-ID: <20090725155100.D538D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31360 Modified Files: ncftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncftp/devel/ncftp.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ncftp.spec 26 Feb 2009 04:34:39 -0000 1.16 +++ ncftp.spec 25 Jul 2009 15:51:00 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Improved console FTP client Name: ncftp Version: 3.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 2 License: Artistic clarified Group: Applications/Internet @@ -68,6 +68,9 @@ anonymous logins, and more. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2:3.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2:3.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:51:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:51:17 +0000 (UTC) Subject: rpms/ncl/devel ncl.spec,1.20,1.21 Message-ID: <20090725155117.E33CC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31551 Modified Files: ncl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncl/devel/ncl.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- ncl.spec 23 Jul 2009 15:30:20 -0000 1.20 +++ ncl.spec 25 Jul 2009 15:51:17 -0000 1.21 @@ -1,6 +1,6 @@ Name: ncl Version: 5.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NCAR Command Language and NCAR Graphics Group: Applications/Engineering @@ -299,6 +299,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 - Orion Poplawski - 5.1.1-2 - Rebuild for libdap 3.9.3 From jkeating at fedoraproject.org Sat Jul 25 15:51:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:51:32 +0000 (UTC) Subject: rpms/ncmpc/devel ncmpc.spec,1.12,1.13 Message-ID: <20090725155132.EC56E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncmpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31729 Modified Files: ncmpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncmpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncmpc/devel/ncmpc.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ncmpc.spec 24 Jun 2009 19:03:05 -0000 1.12 +++ ncmpc.spec 25 Jul 2009 15:51:32 -0000 1.13 @@ -1,6 +1,6 @@ Name: ncmpc Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A curses client for the Music Player Daemon (MPD) Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_datadir}/doc/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Sat Jul 25 15:51:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:51:54 +0000 (UTC) Subject: rpms/ncmpcpp/devel ncmpcpp.spec,1.8,1.9 Message-ID: <20090725155154.AD69D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncmpcpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31963 Modified Files: ncmpcpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncmpcpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncmpcpp/devel/ncmpcpp.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ncmpcpp.spec 24 Jun 2009 14:16:37 -0000 1.8 +++ ncmpcpp.spec 25 Jul 2009 15:51:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: ncmpcpp Version: 0.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Clone of ncmpc with new features and written in C++ Group: Applications/Multimedia License: GPLv2+ @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Michal Nowak - 0.3.5-1 - 0.3.5 - new feature: custom command execution on song change From jkeating at fedoraproject.org Sat Jul 25 15:52:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:52:11 +0000 (UTC) Subject: rpms/nco/devel nco.spec,1.19,1.20 Message-ID: <20090725155211.39EB811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nco/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32191 Modified Files: nco.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nco.spec =================================================================== RCS file: /cvs/pkgs/rpms/nco/devel/nco.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- nco.spec 30 Apr 2009 20:48:19 -0000 1.19 +++ nco.spec 25 Jul 2009 15:52:11 -0000 1.20 @@ -1,6 +1,6 @@ Name: nco Version: 3.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Suite of programs for manipulating NetCDF/HDF4 files Group: Applications/Engineering License: GPLv3 @@ -108,6 +108,9 @@ fi %{_libdir}/libnco*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 - Orion Poplawski - 3.9.8-1 - Update to 3.9.8 - Update install headers patch From jkeating at fedoraproject.org Sat Jul 25 15:52:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:52:31 +0000 (UTC) Subject: rpms/ncompress/devel ncompress.spec,1.28,1.29 Message-ID: <20090725155231.A166C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncompress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32415 Modified Files: ncompress.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncompress.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncompress/devel/ncompress.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- ncompress.spec 26 Feb 2009 04:38:30 -0000 1.28 +++ ncompress.spec 25 Jul 2009 15:52:31 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Fast compression and decompression utilities Name: ncompress Version: 4.2.4 -Release: 52%{?dist} +Release: 53%{?dist} License: Public Domain Group: Applications/File URL: http://ncompress.sourceforge.net/ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %doc LZW.INFO README %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.4-53 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.2.4-52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:52:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:52:52 +0000 (UTC) Subject: rpms/ncpfs/devel ncpfs.spec,1.36,1.37 Message-ID: <20090725155252.5B38111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncpfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32688 Modified Files: ncpfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncpfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncpfs/devel/ncpfs.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- ncpfs.spec 26 Feb 2009 04:39:27 -0000 1.36 +++ ncpfs.spec 25 Jul 2009 15:52:52 -0000 1.37 @@ -1,7 +1,7 @@ Summary: Utilities for the ncpfs filesystem, a NetWare client for Linux Name: ncpfs Version: 2.2.6 -Release: 11%{?dist} +Release: 12%{?dist} License: GPL+ URL: ftp://platan.vc.cvut.cz/pub/linux/ncpfs/ Source: http://ftp.cvut.cz/ncpfs/ncpfs-%{version}.tar.gz @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/ipx* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:53:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:53:10 +0000 (UTC) Subject: rpms/ncurses/devel ncurses.spec,1.90,1.91 Message-ID: <20090725155310.3DB4F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncurses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv437 Modified Files: ncurses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncurses.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncurses/devel/ncurses.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- ncurses.spec 26 Feb 2009 04:40:23 -0000 1.90 +++ ncurses.spec 25 Jul 2009 15:53:09 -0000 1.91 @@ -1,7 +1,7 @@ Summary: Ncurses support utilities Name: ncurses Version: 5.7 -Release: 2.20090207%{?dist} +Release: 3.20090207%{?dist} License: MIT Group: System Environment/Base URL: http://invisible-island.net/ncurses/ncurses.html @@ -265,6 +265,9 @@ bzip2 NEWS rm -rf ${RPM_BUILD_ROOT} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.7-3.20090207 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.7-2.20090207 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:53:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:53:31 +0000 (UTC) Subject: rpms/ncview/devel ncview.spec,1.15,1.16 Message-ID: <20090725155331.9EFE411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ncview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv694 Modified Files: ncview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ncview.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncview/devel/ncview.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ncview.spec 26 Feb 2009 04:41:25 -0000 1.15 +++ ncview.spec 25 Jul 2009 15:53:31 -0000 1.16 @@ -1,6 +1,6 @@ Name: ncview Version: 1.93c -Release: 5%{?dist} +Release: 6%{?dist} Summary: A visual browser for netCDF format files Group: Applications/Engineering License: GPLv1 @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.93c-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.93c-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:53:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:53:50 +0000 (UTC) Subject: rpms/ndesk-dbus/devel ndesk-dbus.spec,1.12,1.13 Message-ID: <20090725155350.9E03611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ndesk-dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv924 Modified Files: ndesk-dbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ndesk-dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ndesk-dbus/devel/ndesk-dbus.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ndesk-dbus.spec 29 May 2009 22:46:54 -0000 1.12 +++ ndesk-dbus.spec 25 Jul 2009 15:53:49 -0000 1.13 @@ -2,7 +2,7 @@ Name: ndesk-dbus Version: 0.6.1a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Managed C# implementation of DBus License: MIT @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndesk-dbus-1.0.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Xavier Lamien - 0.6-1a-5 - Build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 15:54:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:54:05 +0000 (UTC) Subject: rpms/ndesk-dbus-glib/devel ndesk-dbus-glib.spec,1.5,1.6 Message-ID: <20090725155406.0FF8C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ndesk-dbus-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1143 Modified Files: ndesk-dbus-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ndesk-dbus-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ndesk-dbus-glib/devel/ndesk-dbus-glib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ndesk-dbus-glib.spec 17 Jun 2009 13:00:11 -0000 1.5 +++ ndesk-dbus-glib.spec 25 Jul 2009 15:54:05 -0000 1.6 @@ -5,7 +5,7 @@ URL: http://www.ndesk.org/DBusSharp License: MIT Group: Development/Libraries Version: 0.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Provides glib mainloop integration for ndesk-dbus Source0: http://www.ndesk.org/archive/dbus-sharp/ndesk-dbus-glib-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndesk-dbus-glib-1.0.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Xavier Lamien - 0.4.1-5 - Build arch ppc64. From jkeating at fedoraproject.org Sat Jul 25 15:54:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:54:30 +0000 (UTC) Subject: rpms/neXtaw/devel neXtaw.spec,1.17,1.18 Message-ID: <20090725155430.D5D2A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/neXtaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1453 Modified Files: neXtaw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: neXtaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/neXtaw/devel/neXtaw.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- neXtaw.spec 26 Feb 2009 04:42:31 -0000 1.17 +++ neXtaw.spec 25 Jul 2009 15:54:30 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Modified version of the Athena Widgets with N*XTSTEP appearance Name: neXtaw Version: 0.15.1 -Release: 13%{?dist} +Release: 14%{?dist} URL: http://siag.nu/neXtaw/ Source0: http://siag.nu/pub/neXtaw/%{name}-%{version}.tar.gz @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.15.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:54:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:54:46 +0000 (UTC) Subject: rpms/nebula/devel nebula.spec,1.3,1.4 Message-ID: <20090725155446.7246611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nebula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1677 Modified Files: nebula.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nebula.spec =================================================================== RCS file: /cvs/pkgs/rpms/nebula/devel/nebula.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nebula.spec 26 Feb 2009 04:43:51 -0000 1.3 +++ nebula.spec 25 Jul 2009 15:54:46 -0000 1.4 @@ -1,6 +1,6 @@ Name: nebula Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Intrusion signature generator Group: Applications/System @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/nebulaclient %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:55:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:55:00 +0000 (UTC) Subject: rpms/nec2c/devel nec2c.spec,1.7,1.8 Message-ID: <20090725155500.F0D2F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nec2c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1897 Modified Files: nec2c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nec2c.spec =================================================================== RCS file: /cvs/pkgs/rpms/nec2c/devel/nec2c.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nec2c.spec 26 Feb 2009 04:44:51 -0000 1.7 +++ nec2c.spec 25 Jul 2009 15:55:00 -0000 1.8 @@ -1,6 +1,6 @@ Name: nec2c Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Translation of NEC2 antenna modeling tool from FORTRAN to C Group: Applications/Communications @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:55:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:55:23 +0000 (UTC) Subject: rpms/nedit/devel nedit.spec,1.21,1.22 Message-ID: <20090725155523.542E411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2130 Modified Files: nedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/nedit/devel/nedit.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- nedit.spec 26 Feb 2009 04:45:52 -0000 1.21 +++ nedit.spec 25 Jul 2009 15:55:23 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A GUI text editor for systems with X Name: nedit Version: 5.5 -Release: 21%{?dist} +Release: 22%{?dist} Source: http://nedit.org/ftp/v5_5/nedit-%{version}-src.tar.bz2 Source1: nedit.desktop Source2: nedit-icon.png @@ -86,6 +86,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.5-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.5-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:55:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:55:40 +0000 (UTC) Subject: rpms/nekobee-dssi/devel nekobee-dssi.spec,1.1,1.2 Message-ID: <20090725155540.7683811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nekobee-dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2348 Modified Files: nekobee-dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nekobee-dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/nekobee-dssi/devel/nekobee-dssi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nekobee-dssi.spec 6 Jun 2009 03:07:53 -0000 1.1 +++ nekobee-dssi.spec 25 Jul 2009 15:55:40 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Acid sounds synthesizer Name: nekobee-dssi Version: 0.1.7 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.nekosynth.co.uk/wiki/nekobee @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/48x48/apps/nekobee.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Orcan Ogetbil - 0.1.7-2 - Add icon cache scriptlet From jkeating at fedoraproject.org Sat Jul 25 15:55:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:55:58 +0000 (UTC) Subject: rpms/nekohtml/devel nekohtml.spec,1.3,1.4 Message-ID: <20090725155558.4148F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nekohtml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2585 Modified Files: nekohtml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nekohtml.spec =================================================================== RCS file: /cvs/pkgs/rpms/nekohtml/devel/nekohtml.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nekohtml.spec 26 Feb 2009 04:46:51 -0000 1.3 +++ nekohtml.spec 25 Jul 2009 15:55:58 -0000 1.4 @@ -32,7 +32,7 @@ Name: nekohtml Version: 0.9.5 -Release: 5.2%{?dist} +Release: 6.2%{?dist} Epoch: 0 Summary: HTML scanner and tag balancer License: ASL 2.0 @@ -169,6 +169,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:0.9.5-6.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:0.9.5-5.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:56:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:56:15 +0000 (UTC) Subject: rpms/nekovm/devel nekovm.spec,1.3,1.4 Message-ID: <20090725155615.CEA0311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nekovm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2743 Modified Files: nekovm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nekovm.spec =================================================================== RCS file: /cvs/pkgs/rpms/nekovm/devel/nekovm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nekovm.spec 26 Feb 2009 04:47:47 -0000 1.3 +++ nekovm.spec 25 Jul 2009 15:56:15 -0000 1.4 @@ -5,7 +5,7 @@ Name: nekovm Version: 1.8.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Neko embedded scripting language and virtual machine Group: Development/Libraries @@ -161,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:56:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:56:30 +0000 (UTC) Subject: rpms/nemiver/devel nemiver.spec,1.27,1.28 Message-ID: <20090725155630.BDF4711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nemiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2968 Modified Files: nemiver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nemiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nemiver/devel/nemiver.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- nemiver.spec 2 Jul 2009 16:21:18 -0000 1.27 +++ nemiver.spec 25 Jul 2009 15:56:30 -0000 1.28 @@ -1,6 +1,6 @@ Name: nemiver Version: 0.7.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GNOME C/C++ Debugger Group: Development/Debuggers @@ -143,6 +143,9 @@ scrollkeeper-update -q ||: %{_mandir}/man?/%{name}.* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Dodji Seketeli - 0.7.0-2 - Fix typo (redhat.org -> redhat.com) From jkeating at fedoraproject.org Sat Jul 25 15:56:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:56:46 +0000 (UTC) Subject: rpms/neon/devel neon.spec,1.50,1.51 Message-ID: <20090725155646.305A211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/neon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3123 Modified Files: neon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: neon.spec =================================================================== RCS file: /cvs/pkgs/rpms/neon/devel/neon.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- neon.spec 9 Jul 2009 14:40:38 -0000 1.50 +++ neon.spec 25 Jul 2009 15:56:46 -0000 1.51 @@ -1,7 +1,7 @@ Summary: An HTTP and WebDAV client library Name: neon Version: 0.28.5 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.webdav.org/neon/ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.28.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Joe Orton 0.28.5-1 - update to 0.28.5 From jkeating at fedoraproject.org Sat Jul 25 15:57:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:57:02 +0000 (UTC) Subject: rpms/neon-backgrounds/devel neon-backgrounds.spec,1.2,1.3 Message-ID: <20090725155702.108C311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/neon-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3334 Modified Files: neon-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: neon-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/neon-backgrounds/devel/neon-backgrounds.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- neon-backgrounds.spec 26 Feb 2009 04:49:50 -0000 1.2 +++ neon-backgrounds.spec 25 Jul 2009 15:57:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: neon-backgrounds Version: 0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Neon desktop backgrounds Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:57:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:57:21 +0000 (UTC) Subject: rpms/nes_ntsc/devel nes_ntsc.spec,1.2,1.3 Message-ID: <20090725155721.C946E11C0381@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nes_ntsc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3522 Modified Files: nes_ntsc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nes_ntsc.spec =================================================================== RCS file: /cvs/pkgs/rpms/nes_ntsc/devel/nes_ntsc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nes_ntsc.spec 26 Feb 2009 04:51:00 -0000 1.2 +++ nes_ntsc.spec 25 Jul 2009 15:57:21 -0000 1.3 @@ -2,7 +2,7 @@ Name: nes_ntsc Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides a NES NTSC video filtering library Group: System Environment/Libraries @@ -122,6 +122,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 15:57:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 15:57:38 +0000 (UTC) Subject: rpms/nessus-core/devel nessus-core.spec,1.14,1.15 Message-ID: <20090725155738.969A911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nessus-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3783 Modified Files: nessus-core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nessus-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/nessus-core/devel/nessus-core.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nessus-core.spec 26 Feb 2009 04:51:58 -0000 1.14 +++ nessus-core.spec 25 Jul 2009 15:57:38 -0000 1.15 @@ -1,6 +1,6 @@ Name: nessus-core Version: 2.2.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Network vulnerability scanner Group: Applications/System @@ -233,6 +233,9 @@ fi %ghost %config(missingok,noreplace) %verify(not md5 size mtime) %{_sysconfdir}/nessus/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Sat Jul 25 16:58:39 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sat, 25 Jul 2009 16:58:39 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.492,1.493 Message-ID: <20090725165839.5E4C611C02BC@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1730 Modified Files: kdelibs.spec Log Message: update changelog (including strigi), and resubmit build Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.492 retrieving revision 1.493 diff -u -p -r1.492 -r1.493 --- kdelibs.spec 24 Jul 2009 16:48:26 -0000 1.492 +++ kdelibs.spec 25 Jul 2009 16:58:35 -0000 1.493 @@ -1,7 +1,7 @@ %define phonon_ver 4.3.1 %define soprano_ver 2.3.0 -%define strigi_ver 0.6.5 +%define strigi_ver 0.7.0 Summary: K Desktop Environment 4 - Libraries Version: 4.2.98 @@ -399,7 +399,7 @@ rm -rf %{buildroot} %changelog * Fri Jul 24 2009 Luk?? Tinkl - 4.2.98-2 - respun tarball, to fix KIO HTTP redirects -- fix Phonon version number +- fix phonon/strigi versions * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From mtasaka at fedoraproject.org Sat Jul 25 17:12:22 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 17:12:22 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.376, 1.377 jd.spec, 1.438, 1.439 sources, 1.377, 1.378 Message-ID: <20090725171223.319EC11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8628 Modified Files: .cvsignore jd.spec sources Log Message: * Sun Jul 26 2009 Mamoru Tasaka - rev 2979 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.376 retrieving revision 1.377 diff -u -p -r1.376 -r1.377 --- .cvsignore 22 Jul 2009 17:42:11 -0000 1.376 +++ .cvsignore 25 Jul 2009 17:12:22 -0000 1.377 @@ -1 +1 @@ -jd-2.4.2-svn2964_trunk.tgz +jd-2.4.2-svn2979_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.438 retrieving revision 1.439 diff -u -p -r1.438 -r1.439 --- jd.spec 22 Jul 2009 17:42:11 -0000 1.438 +++ jd.spec 25 Jul 2009 17:12:22 -0000 1.439 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2964_trunk +%define strtag svn2979_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Thu Jul 23 2009 Mamoru Tasaka -- rev 2964 +* Sun Jul 26 2009 Mamoru Tasaka +- rev 2979 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.377 retrieving revision 1.378 diff -u -p -r1.377 -r1.378 --- sources 22 Jul 2009 17:42:11 -0000 1.377 +++ sources 25 Jul 2009 17:12:22 -0000 1.378 @@ -1 +1 @@ -a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz +78e25a5ccc00f621121070e8ee650e2a jd-2.4.2-svn2979_trunk.tgz From mtasaka at fedoraproject.org Sat Jul 25 17:25:03 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 17:25:03 +0000 (UTC) Subject: rpms/kazehakase/devel .cvsignore, 1.31, 1.32 kazehakase.spec, 1.87, 1.88 sources, 1.31, 1.32 Message-ID: <20090725172503.B2F3E11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/kazehakase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15907 Modified Files: .cvsignore kazehakase.spec sources Log Message: * Sun Jul 26 2009 Mamoru Tasaka - rev 3778 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/.cvsignore,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- .cvsignore 30 May 2009 15:47:16 -0000 1.31 +++ .cvsignore 25 Jul 2009 17:25:03 -0000 1.32 @@ -1 +1 @@ -kazehakase-0.5.6-svn3773_trunk.tar.gz +kazehakase-0.5.6-svn3778_trunk.tar.gz Index: kazehakase.spec =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/kazehakase.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- kazehakase.spec 24 Jul 2009 17:36:57 -0000 1.87 +++ kazehakase.spec 25 Jul 2009 17:25:03 -0000 1.88 @@ -31,7 +31,7 @@ %define obsolete_plugin_ver 0.4.5-1 %define repoid 33533 -%define svnver 3773_trunk +%define svnver 3778_trunk %define fedorarel 15 @@ -321,6 +321,9 @@ desktop-file-install \ %endif %changelog +* Sun Jul 26 2009 Mamoru Tasaka +- rev 3778 + * Sat Jul 25 2009 Mamoru Tasaka - 0.5.6-15.svn3773_trunk - F-12: Mass rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/kazehakase/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 30 May 2009 15:47:16 -0000 1.31 +++ sources 25 Jul 2009 17:25:03 -0000 1.32 @@ -1 +1 @@ -9a40c41c2c593bca6bfed9f53dea1f1a kazehakase-0.5.6-svn3773_trunk.tar.gz +e970c273ffd3c019bbab513befcb48ba kazehakase-0.5.6-svn3778_trunk.tar.gz From mtasaka at fedoraproject.org Sat Jul 25 17:35:04 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 17:35:04 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.377, 1.378 jd.spec, 1.439, 1.440 sources, 1.378, 1.379 Message-ID: <20090725173504.7641F11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21040 Modified Files: .cvsignore jd.spec sources Log Message: Try 2981, 2979 won't build Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.377 retrieving revision 1.378 diff -u -p -r1.377 -r1.378 --- .cvsignore 25 Jul 2009 17:12:22 -0000 1.377 +++ .cvsignore 25 Jul 2009 17:35:04 -0000 1.378 @@ -1 +1 @@ -jd-2.4.2-svn2979_trunk.tgz +jd-2.4.2-svn2981_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.439 retrieving revision 1.440 diff -u -p -r1.439 -r1.440 --- jd.spec 25 Jul 2009 17:12:22 -0000 1.439 +++ jd.spec 25 Jul 2009 17:35:04 -0000 1.440 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2979_trunk +%define strtag svn2981_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -136,7 +136,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sun Jul 26 2009 Mamoru Tasaka -- rev 2979 +- rev 2981 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.378 retrieving revision 1.379 diff -u -p -r1.378 -r1.379 --- sources 25 Jul 2009 17:12:22 -0000 1.378 +++ sources 25 Jul 2009 17:35:04 -0000 1.379 @@ -1 +1 @@ -78e25a5ccc00f621121070e8ee650e2a jd-2.4.2-svn2979_trunk.tgz +5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz From jkeating at fedoraproject.org Sat Jul 25 17:59:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 17:59:37 +0000 (UTC) Subject: rpms/net-snmp/devel net-snmp.spec,1.184,1.185 Message-ID: <20090725175938.107F311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/net-snmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1521 Modified Files: net-snmp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: net-snmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-snmp/devel/net-snmp.spec,v retrieving revision 1.184 retrieving revision 1.185 diff -u -p -r1.184 -r1.185 --- net-snmp.spec 1 Jul 2009 14:41:45 -0000 1.184 +++ net-snmp.spec 25 Jul 2009 17:59:37 -0000 1.185 @@ -8,7 +8,7 @@ Summary: A collection of SNMP protocol tools and libraries Name: net-snmp Version: %{major_ver} -Release: 13%{?dist} +Release: 14%{?dist} Epoch: 1 License: BSD and MIT @@ -429,6 +429,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/snmp/mibs %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:5.4.2.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Jan Safranek 5.4.2.1-13 - package cleanup, remove unnecessary patches - move local state file from /var/net-snmp/ to /var/lib/net-snmp From jkeating at fedoraproject.org Sat Jul 25 17:59:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 17:59:56 +0000 (UTC) Subject: rpms/net-tools/devel net-tools.spec,1.99,1.100 Message-ID: <20090725175956.3A08011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/net-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1773 Modified Files: net-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: net-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/net-tools/devel/net-tools.spec,v retrieving revision 1.99 retrieving revision 1.100 diff -u -p -r1.99 -r1.100 --- net-tools.spec 8 Jul 2009 13:28:27 -0000 1.99 +++ net-tools.spec 25 Jul 2009 17:59:56 -0000 1.100 @@ -3,7 +3,7 @@ Summary: Basic networking tools Name: net-tools Version: 1.60 -Release: 93%{?dist} +Release: 94%{?dist} License: GPL+ Group: System Environment/Base URL: http://net-tools.berlios.de/ @@ -281,6 +281,9 @@ exit 0 %{_sysconfdir}/rc.d/init.d/netplugd %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.60-94 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Jiri Popelka - 1.60-93 - scanf format length fix (non exploitable?) from Fabian Hugelshofer - URL tag changed to http://net-tools.berlios.de/ From jkeating at fedoraproject.org Sat Jul 25 18:00:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:00:14 +0000 (UTC) Subject: rpms/net6/devel net6.spec,1.24,1.25 Message-ID: <20090725180014.49C8B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/net6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2032 Modified Files: net6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: net6.spec =================================================================== RCS file: /cvs/pkgs/rpms/net6/devel/net6.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- net6.spec 26 Feb 2009 04:55:52 -0000 1.24 +++ net6.spec 25 Jul 2009 18:00:14 -0000 1.25 @@ -1,6 +1,6 @@ Name: net6 Version: 1.3.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A TCP protocol abstraction for library C++ Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:00:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:00:32 +0000 (UTC) Subject: rpms/netactview/devel netactview.spec,1.3,1.4 Message-ID: <20090725180032.0642711C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netactview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2314 Modified Files: netactview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netactview.spec =================================================================== RCS file: /cvs/pkgs/rpms/netactview/devel/netactview.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- netactview.spec 26 Feb 2009 04:56:47 -0000 1.3 +++ netactview.spec 25 Jul 2009 18:00:31 -0000 1.4 @@ -1,6 +1,6 @@ Name: netactview Version: 0.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Graphical network connections viewer for Linux Group: Applications/Internet @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/netactview.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:01:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:01:00 +0000 (UTC) Subject: rpms/netatalk/devel netatalk.spec,1.53,1.54 Message-ID: <20090725180100.73B7D11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netatalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2587 Modified Files: netatalk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netatalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/netatalk/devel/netatalk.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- netatalk.spec 14 Jul 2009 15:36:57 -0000 1.53 +++ netatalk.spec 25 Jul 2009 18:00:59 -0000 1.54 @@ -1,7 +1,7 @@ Summary: AppleTalk networking programs Name: netatalk Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 4 License: GPLv2+ Group: System Environment/Daemons @@ -182,6 +182,9 @@ fi %{_mandir}/man*/netatalk-config.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4:2.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Jiri Skala - 4:2.0.4-1 - updated to latest upstream version From jkeating at fedoraproject.org Sat Jul 25 18:01:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:01:28 +0000 (UTC) Subject: rpms/netbeans/devel netbeans.spec,1.10,1.11 Message-ID: <20090725180128.7E5AB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2862 Modified Files: netbeans.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans/devel/netbeans.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- netbeans.spec 26 Feb 2009 04:59:25 -0000 1.10 +++ netbeans.spec 25 Jul 2009 18:01:28 -0000 1.11 @@ -80,7 +80,7 @@ Name: %{nb_} Version: %{nb_ver} -Release: 3%{?dist} +Release: 4%{?dist} Summary: Integrated Development Environment (IDE) Group: Development/Tools License: GPLv2 with exceptions or CDDL @@ -465,6 +465,9 @@ fi %doc nbbuild/standard-nbm-license.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:01:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:01:48 +0000 (UTC) Subject: rpms/netbeans-javaparser/devel netbeans-javaparser.spec,1.3,1.4 Message-ID: <20090725180148.1200511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans-javaparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3135 Modified Files: netbeans-javaparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans-javaparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans-javaparser/devel/netbeans-javaparser.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- netbeans-javaparser.spec 26 Feb 2009 05:00:18 -0000 1.3 +++ netbeans-javaparser.spec 25 Jul 2009 18:01:47 -0000 1.4 @@ -3,7 +3,7 @@ Name: netbeans-javaparser Version: 6.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NetBeans Java Parser License: GPLv2 with exceptions Url: http://java.netbeans.org/javaparser/ @@ -60,6 +60,9 @@ ant -f make/netbeans/nb-javac/build.xml %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:02:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:02:08 +0000 (UTC) Subject: rpms/netbeans-platform/devel netbeans-platform.spec,1.3,1.4 Message-ID: <20090725180208.BBDCB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans-platform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3388 Modified Files: netbeans-platform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans-platform.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans-platform/devel/netbeans-platform.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- netbeans-platform.spec 26 Feb 2009 05:01:16 -0000 1.3 +++ netbeans-platform.spec 25 Jul 2009 18:02:08 -0000 1.4 @@ -30,7 +30,7 @@ Name: netbeans-platform Version: %{nb_ver} -Release: 6%{?dist} +Release: 7%{?dist} Summary: NetBeans Platform %{nb_platform_ver} Group: Development/Libraries License: GPLv2 with exceptions or CDDL @@ -237,6 +237,9 @@ sendopts,options.api,editor.mimelookup \ %doc %{nb_javadoc_dir}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:02:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:02:23 +0000 (UTC) Subject: rpms/netbeans-platform8/devel netbeans-platform8.spec,1.3,1.4 Message-ID: <20090725180223.6C62611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans-platform8/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3609 Modified Files: netbeans-platform8.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans-platform8.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans-platform8/devel/netbeans-platform8.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- netbeans-platform8.spec 26 Feb 2009 05:02:13 -0000 1.3 +++ netbeans-platform8.spec 25 Jul 2009 18:02:23 -0000 1.4 @@ -31,7 +31,7 @@ Name: %{nb_}-%{nb_platform} Version: %{nb_ver} -Release: 6%{?dist} +Release: 7%{?dist} Summary: NetBeans Platform %{nb_platform_ver} Group: Development/Libraries License: GPLv2 with exceptions or CDDL @@ -244,6 +244,9 @@ sendopts,options.api,editor.mimelookup \ %doc %{nb_javadoc_dir}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:02:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:02:36 +0000 (UTC) Subject: rpms/netbeans-resolver/devel netbeans-resolver.spec,1.2,1.3 Message-ID: <20090725180236.BBAD811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans-resolver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3784 Modified Files: netbeans-resolver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans-resolver.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans-resolver/devel/netbeans-resolver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- netbeans-resolver.spec 26 Feb 2009 05:03:12 -0000 1.2 +++ netbeans-resolver.spec 25 Jul 2009 18:02:36 -0000 1.3 @@ -3,7 +3,7 @@ Name: netbeans-resolver Version: 6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Resolver subproject of xml-commons patched for NetBeans Group: Development/Libraries @@ -60,6 +60,9 @@ dos2unix -k LICENSE.resolver.txt %doc LICENSE.resolver.txt KEYS %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:02:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:02:51 +0000 (UTC) Subject: rpms/netbeans-svnclientadapter/devel netbeans-svnclientadapter.spec, 1.3, 1.4 Message-ID: <20090725180251.AD1BE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbeans-svnclientadapter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3953 Modified Files: netbeans-svnclientadapter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbeans-svnclientadapter.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbeans-svnclientadapter/devel/netbeans-svnclientadapter.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- netbeans-svnclientadapter.spec 26 Feb 2009 05:04:10 -0000 1.3 +++ netbeans-svnclientadapter.spec 25 Jul 2009 18:02:51 -0000 1.4 @@ -4,7 +4,7 @@ Name: %{nb_}-svnclientadapter Version: %{nb_ver} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Subversion Client Adapter License: ASL 2.0 @@ -72,6 +72,9 @@ ant -verbose svnClientAdapter.jar %{_javadir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:03:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:03:05 +0000 (UTC) Subject: rpms/netbsd-iscsi/devel netbsd-iscsi.spec,1.6,1.7 Message-ID: <20090725180305.CE52611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netbsd-iscsi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4132 Modified Files: netbsd-iscsi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netbsd-iscsi.spec =================================================================== RCS file: /cvs/pkgs/rpms/netbsd-iscsi/devel/netbsd-iscsi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- netbsd-iscsi.spec 26 Feb 2009 05:05:08 -0000 1.6 +++ netbsd-iscsi.spec 25 Jul 2009 18:03:05 -0000 1.7 @@ -1,6 +1,6 @@ Name: netbsd-iscsi Version: 20080207 -Release: 2%{?dist} +Release: 3%{?dist} Summary: User-space implementation of iSCSI target from NetBSD project Group: System Environment/Daemons @@ -93,6 +93,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20080207-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20080207-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:03:21 +0000 (UTC) Subject: rpms/netcdf/devel netcdf.spec,1.36,1.37 Message-ID: <20090725180321.04B3111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netcdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4300 Modified Files: netcdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netcdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/netcdf/devel/netcdf.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- netcdf.spec 16 Apr 2009 17:37:33 -0000 1.36 +++ netcdf.spec 25 Jul 2009 18:03:20 -0000 1.37 @@ -1,6 +1,6 @@ Name: netcdf Version: 4.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries for the Unidata network Common Data Form Group: Applications/Engineering @@ -130,6 +130,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Orion Poplawski - 4.0.1-1 - Update to 4.0.1 - Add pkgconfig file From jkeating at fedoraproject.org Sat Jul 25 18:03:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:03:38 +0000 (UTC) Subject: rpms/netcdf-decoders/devel netcdf-decoders.spec,1.8,1.9 Message-ID: <20090725180338.5B66311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netcdf-decoders/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4496 Modified Files: netcdf-decoders.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netcdf-decoders.spec =================================================================== RCS file: /cvs/pkgs/rpms/netcdf-decoders/devel/netcdf-decoders.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- netcdf-decoders.spec 26 Feb 2009 05:06:54 -0000 1.8 +++ netcdf-decoders.spec 25 Jul 2009 18:03:37 -0000 1.9 @@ -1,6 +1,6 @@ Name: netcdf-decoders Version: 5.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Converts WMO GRIB products into NetCDF files Group: Applications/Engineering @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:03:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:03:54 +0000 (UTC) Subject: rpms/netcdf-perl/devel netcdf-perl.spec,1.8,1.9 Message-ID: <20090725180354.3E52411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netcdf-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4726 Modified Files: netcdf-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netcdf-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/netcdf-perl/devel/netcdf-perl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- netcdf-perl.spec 15 Jul 2009 19:55:35 -0000 1.8 +++ netcdf-perl.spec 25 Jul 2009 18:03:53 -0000 1.9 @@ -1,6 +1,6 @@ Name: netcdf-perl Version: 1.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension module for scientific data access via the netCDF API Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Orion Poplawski - 1.2.4-1 - Update to 1.2.4, fixes build issue (bug #511613) From jkeating at fedoraproject.org Sat Jul 25 18:04:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:04:08 +0000 (UTC) Subject: rpms/netcf/devel netcf.spec,1.1,1.2 Message-ID: <20090725180408.41B1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netcf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4969 Modified Files: netcf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netcf.spec =================================================================== RCS file: /cvs/pkgs/rpms/netcf/devel/netcf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- netcf.spec 14 Jul 2009 04:17:03 -0000 1.1 +++ netcf.spec 25 Jul 2009 18:04:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: netcf Version: 0.1.0 -Release: 1%{?dist}%{?extra_release} +Release: 2%{?dist}%{?extra_release} Summary: Cross-platform network configuration library Group: System Environment/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/netcf.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 David Lutterkort - 0.1.0-1 - BR on augeas-0.5.2 - Drop explicit requires for augeas-libs From jkeating at fedoraproject.org Sat Jul 25 18:04:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:04:24 +0000 (UTC) Subject: rpms/netdump-server/devel netdump-server.spec,1.6,1.7 Message-ID: <20090725180424.7F8DA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netdump-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5201 Modified Files: netdump-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netdump-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/netdump-server/devel/netdump-server.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- netdump-server.spec 26 Feb 2009 05:10:10 -0000 1.6 +++ netdump-server.spec 25 Jul 2009 18:04:24 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Server for network kernel message logging and crash dumps Name: netdump-server Version: 0.7.16 -Release: 24%{dist} +Release: 25%{dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -97,6 +97,9 @@ fi %doc COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.16-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.16-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:04:39 +0000 (UTC) Subject: rpms/netembryo/devel netembryo.spec,1.7,1.8 Message-ID: <20090725180439.104EA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netembryo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5404 Modified Files: netembryo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netembryo.spec =================================================================== RCS file: /cvs/pkgs/rpms/netembryo/devel/netembryo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- netembryo.spec 27 Feb 2009 01:49:56 -0000 1.7 +++ netembryo.spec 25 Jul 2009 18:04:38 -0000 1.8 @@ -4,7 +4,7 @@ Summary: Network abstraction library Name: netembryo Version: 0.0.5 -Release: 4%{?git:.%{rev}git}%{?dist} +Release: 5%{?git:.%{rev}git}%{?dist} License: LGPLv2+ Group: Development/Libraries %if %{?git:1}0 @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libnetembryo.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Dominik Mierzejewski 0.0.5-4 - fix Source and project URLs From jkeating at fedoraproject.org Sat Jul 25 18:04:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:04:54 +0000 (UTC) Subject: rpms/netgen/devel netgen.spec,1.8,1.9 Message-ID: <20090725180454.4D34311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netgen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5639 Modified Files: netgen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netgen.spec =================================================================== RCS file: /cvs/pkgs/rpms/netgen/devel/netgen.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- netgen.spec 26 Feb 2009 05:12:43 -0000 1.8 +++ netgen.spec 25 Jul 2009 18:04:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: netgen Version: 1.3.7 -Release: 18%{?dist} +Release: 19%{?dist} Summary: LVS netlist comparison tool for VLSI License: GPL+ From jkeating at fedoraproject.org Sat Jul 25 18:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:05:09 +0000 (UTC) Subject: rpms/netgo/devel netgo.spec,1.9,1.10 Message-ID: <20090725180509.4C4D211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netgo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5898 Modified Files: netgo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netgo.spec =================================================================== RCS file: /cvs/pkgs/rpms/netgo/devel/netgo.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- netgo.spec 26 Feb 2009 05:13:49 -0000 1.9 +++ netgo.spec 25 Jul 2009 18:05:08 -0000 1.10 @@ -1,6 +1,6 @@ Name: netgo Version: 0.5 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/System Summary: Networking profile manager @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/netgo %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 18:05:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:05:29 +0000 (UTC) Subject: rpms/nethack/devel nethack.spec,1.27,1.28 Message-ID: <20090725180529.0AA1D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nethack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6142 Modified Files: nethack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nethack.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethack/devel/nethack.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- nethack.spec 10 Jul 2009 15:20:13 -0000 1.27 +++ nethack.spec 25 Jul 2009 18:05:28 -0000 1.28 @@ -5,7 +5,7 @@ Name: nethack Version: 3.4.3 -Release: 21%{?dist} +Release: 22%{?dist} Summary: A rogue-like single player dungeon exploration game Group: Amusements/Games @@ -169,6 +169,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.4.3-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Luke Macken - 3.4.3-21 - Apply a patch from Iain Arnell to update our spec to comply with the new font packaging guidelines (#505613) From jkeating at fedoraproject.org Sat Jul 25 18:05:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 18:05:48 +0000 (UTC) Subject: rpms/nethack-vultures/devel nethack-vultures.spec,1.44,1.45 Message-ID: <20090725180548.0C62811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nethack-vultures/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6329 Modified Files: nethack-vultures.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nethack-vultures.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethack-vultures/devel/nethack-vultures.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- nethack-vultures.spec 8 Jul 2009 16:26:29 -0000 1.44 +++ nethack-vultures.spec 25 Jul 2009 18:05:47 -0000 1.45 @@ -1,6 +1,6 @@ Name: nethack-vultures Version: 2.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: NetHack - Vulture's Eye and Vulture's Claw Group: Amusements/Games @@ -196,6 +196,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Ville Skytt? - 2.1.2-1 - Update to 2.1.2 (#502292). - Patch to log in %%{_var}/log/vultures. From gemi at fedoraproject.org Sat Jul 25 18:16:17 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 25 Jul 2009 18:16:17 +0000 (UTC) Subject: rpms/gauche/devel gauche-arch.patch,1.3,1.4 gauche.spec,1.15,1.16 Message-ID: <20090725181618.020B911C02BC@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/gauche/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11305 Modified Files: gauche-arch.patch gauche.spec Log Message: patch for setting target arch gauche-arch.patch: ext/Makefile.ext.in | 2 +- src/Makefile.in | 8 ++++---- src/genconfig.in | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) Index: gauche-arch.patch =================================================================== RCS file: /cvs/pkgs/rpms/gauche/devel/gauche-arch.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gauche-arch.patch 20 Jun 2009 17:17:02 -0000 1.3 +++ gauche-arch.patch 25 Jul 2009 18:16:17 -0000 1.4 @@ -1,6 +1,6 @@ diff -up Gauche-0.8.14/ext/Makefile.ext.in.arch Gauche-0.8.14/ext/Makefile.ext.in ---- Gauche-0.8.14/ext/Makefile.ext.in.arch 2009-06-19 22:17:50.000000000 +0200 -+++ Gauche-0.8.14/ext/Makefile.ext.in 2009-06-19 22:18:11.000000000 +0200 +--- Gauche-0.8.14/ext/Makefile.ext.in.arch 2009-07-25 19:49:30.000000000 +0200 ++++ Gauche-0.8.14/ext/Makefile.ext.in 2009-07-25 19:49:45.000000000 +0200 @@ -12,7 +12,7 @@ datarootdir = @datarootdir@ VPATH = $(srcdir) GAUCHE_VERSION = @GAUCHE_VERSION@ @@ -10,3 +10,43 @@ diff -up Gauche-0.8.14/ext/Makefile.ext. # These may be overridden by make invocators DESTDIR = +diff -up Gauche-0.8.14/src/genconfig.in.arch Gauche-0.8.14/src/genconfig.in +--- Gauche-0.8.14/src/genconfig.in.arch 2009-07-25 19:51:35.000000000 +0200 ++++ Gauche-0.8.14/src/genconfig.in 2009-07-25 19:51:49.000000000 +0200 +@@ -10,8 +10,8 @@ + # (cmds[]) and config.scm part (*configurations*). They should be + # generated from a single source. + +-host=@host@ +-xhost=@xhost@ ++host=@target@ ++xhost=@target@ + gauche_version=@GAUCHE_VERSION@ + + case "$xhost" in +diff -up Gauche-0.8.14/src/Makefile.in.arch Gauche-0.8.14/src/Makefile.in +--- Gauche-0.8.14/src/Makefile.in.arch 2009-07-25 19:52:19.000000000 +0200 ++++ Gauche-0.8.14/src/Makefile.in 2009-07-25 19:52:59.000000000 +0200 +@@ -40,7 +40,7 @@ top_srcdir = @top_srcdir@ + + # for cross build + build = @build@ +-host = @host@ ++host = @target@ + + # These may be overridden by make invocators + DESTDIR = +@@ -101,10 +101,10 @@ GAUCHE_ARCH_DIR = @libdir@/gauche + + HEADER_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/include + SCM_INSTALL_DIR = $(GAUCHE_DATA_DIR)/@GAUCHE_VERSION@/lib +-ARCH_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/@host@ ++ARCH_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/@target@ + SITE_SCM_DIR = $(GAUCHE_DATA_DIR)/site/lib +-SITE_ARCH_DIR = $(GAUCHE_ARCH_DIR)/site/@GAUCHE_VERSION@/@host@ +-ARCH = @host@ ++SITE_ARCH_DIR = $(GAUCHE_ARCH_DIR)/site/@GAUCHE_VERSION@/@target@ ++ARCH = @target@ + + # targetlib is given when we relink the final version of gosh to embed + # the path to libgauche. Usually it is LIB_INSTALL_DIR, but under Index: gauche.spec =================================================================== RCS file: /cvs/pkgs/rpms/gauche/devel/gauche.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- gauche.spec 24 Jul 2009 23:31:32 -0000 1.15 +++ gauche.spec 25 Jul 2009 18:16:17 -0000 1.16 @@ -1,6 +1,6 @@ Name: gauche Version: 0.8.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scheme script interpreter with multibyte character handling Group: Development/Languages @@ -123,6 +123,9 @@ fi %changelog +* Sat Jul 25 2009 Gerard Milmeister - 0.8.14-3 +- patch for setting target arch + * Fri Jul 24 2009 Fedora Release Engineering - 0.8.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From leigh123linux at fedoraproject.org Sat Jul 25 18:21:34 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Sat, 25 Jul 2009 18:21:34 +0000 (UTC) Subject: rpms/qbittorrent/F-11 .cvsignore, 1.5, 1.6 qbittorrent.spec, 1.14, 1.15 sources, 1.5, 1.6 Message-ID: <20090725182134.D384911C0380@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14797 Modified Files: .cvsignore qbittorrent.spec sources Log Message: * Sat Jul 25 2009 Leigh Scott - 1.3.5-1 - update to version 1.3.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 18 Jul 2009 11:46:35 -0000 1.5 +++ .cvsignore 25 Jul 2009 18:21:32 -0000 1.6 @@ -1 +1 @@ -qbittorrent-1.3.4.tar.gz +qbittorrent-1.3.5.tar.gz Index: qbittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/qbittorrent.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qbittorrent.spec 18 Jul 2009 11:46:35 -0000 1.14 +++ qbittorrent.spec 25 Jul 2009 18:21:33 -0000 1.15 @@ -1,6 +1,6 @@ Name: qbittorrent Summary: A Bittorrent Client -Version: 1.3.4 +Version: 1.3.5 Release: 1%{dist} Source0: http://downloads.sf.net/qbittorrent/%{name}-%{version}.tar.gz Patch0: qbittorrent_flag.patch @@ -66,6 +66,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/qbittorrent.png %changelog +* Sat Jul 25 2009 Leigh Scott - 1.3.5-1 +- update to version 1.3.5 + * Sat Jul 18 2009 Leigh Scott - 1.3.4-1 - update to version 1.3.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 18 Jul 2009 11:46:10 -0000 1.5 +++ sources 25 Jul 2009 18:21:33 -0000 1.6 @@ -1 +1 @@ -867c7a23406a87176ec55efcc3407ddb qbittorrent-1.3.4.tar.gz +c4f1b208f9c0a3f55aa0237bf6348d8d qbittorrent-1.3.5.tar.gz From leigh123linux at fedoraproject.org Sat Jul 25 18:27:58 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Sat, 25 Jul 2009 18:27:58 +0000 (UTC) Subject: rpms/qbittorrent/devel .cvsignore, 1.8, 1.9 qbittorrent.spec, 1.22, 1.23 sources, 1.8, 1.9 Message-ID: <20090725182758.F1F3111C02BC@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/qbittorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18087 Modified Files: .cvsignore qbittorrent.spec sources Log Message: * Sat Jul 25 2009 Leigh Scott - 1.4.0-0.6.20090725svn - update to svn 2409 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 15 Jul 2009 19:43:14 -0000 1.8 +++ .cvsignore 25 Jul 2009 18:27:58 -0000 1.9 @@ -1 +1 @@ -qbittorrent-2385svn.tar.gz +qbittorrent-2409svn.tar.gz Index: qbittorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/qbittorrent.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- qbittorrent.spec 15 Jul 2009 19:46:03 -0000 1.22 +++ qbittorrent.spec 25 Jul 2009 18:27:58 -0000 1.23 @@ -1,9 +1,9 @@ -%define svn_rev 2385 +%define svn_rev 2409 Name: qbittorrent Summary: A Bittorrent Client Version: 1.4.0 -Release: 0.5.20090715svn%{?dist} +Release: 0.6.20090725svn%{?dist} # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn checkout -r %{svn_rev} https://qbittorrent.svn.sourceforge.net/svnroot/qbittorrent/trunk qbittorrent @@ -74,6 +74,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/*/apps/qbittorrent.png %changelog +* Sat Jul 25 2009 Leigh Scott - 1.4.0-0.6.20090725svn +- update to svn 2409 + * Wed Jul 15 2009 Leigh Scott - 1.4.0-0.5.20090715svn - update to svn 2385 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qbittorrent/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 15 Jul 2009 19:43:15 -0000 1.8 +++ sources 25 Jul 2009 18:27:58 -0000 1.9 @@ -1 +1 @@ -7da585eea2cee5a107ad243971d2a619 qbittorrent-2385svn.tar.gz +52634255c75a3af971cb1a3782a971b0 qbittorrent-2409svn.tar.gz From mtasaka at fedoraproject.org Sat Jul 25 19:01:29 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 19:01:29 +0000 (UTC) Subject: rpms/jd/devel jd-rev2982-windres.patch, NONE, 1.1 jd.spec, 1.440, 1.441 Message-ID: <20090725190129.88E6B11C02C8@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3493 Modified Files: jd.spec Added Files: jd-rev2982-windres.patch Log Message: Fix build jd-rev2982-windres.patch: configure.in | 1 + src/Makefile.am | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) --- NEW FILE jd-rev2982-windres.patch --- Index: configure.in =================================================================== --- configure.in (revision 2982) +++ configure.in (working copy) @@ -161,6 +161,7 @@ esac AC_SUBST(MAKE_WINDRES) +AM_CONDITIONAL(WINDRES, test -n "$MAKE_WINDRES") dnl Index: src/Makefile.am =================================================================== --- src/Makefile.am (revision 2982) +++ src/Makefile.am (working copy) @@ -59,11 +59,8 @@ usrcmdpref.cpp \ linkfilterpref.cpp \ iomonitor.cpp \ - environment.cpp \ -\ - jd_windres.rc + environment.cpp - noinst_HEADERS = \ winmain.h \ httpcode.h \ @@ -123,6 +120,10 @@ MAKE_WINDRES = @MAKE_WINDRES@ +if WINDRES +jd_SOURCES += jd_windres.rc +endif + SUFFIXES = .rc .o .rc.o: Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.440 retrieving revision 1.441 diff -u -p -r1.440 -r1.441 --- jd.spec 25 Jul 2009 17:35:04 -0000 1.440 +++ jd.spec 25 Jul 2009 19:01:26 -0000 1.441 @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 1 +%define vendor_rel 2 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -51,6 +51,7 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz +Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -77,6 +78,7 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf +%patch0 -p0 sh autogen.sh From jkeating at fedoraproject.org Sat Jul 25 19:12:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:12:30 +0000 (UTC) Subject: rpms/netlabel_tools/devel netlabel_tools.spec,1.13,1.14 Message-ID: <20090725191230.41F3D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netlabel_tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8592 Modified Files: netlabel_tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netlabel_tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/netlabel_tools/devel/netlabel_tools.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- netlabel_tools.spec 26 Feb 2009 05:17:43 -0000 1.13 +++ netlabel_tools.spec 25 Jul 2009 19:12:29 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Tools to manage the Linux NetLabel subsystem Name: netlabel_tools Version: 0.19 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://netlabel.sf.net/ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:12:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:12:49 +0000 (UTC) Subject: rpms/netmask/devel netmask.spec,1.16,1.17 Message-ID: <20090725191249.B45C511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netmask/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8789 Modified Files: netmask.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netmask.spec =================================================================== RCS file: /cvs/pkgs/rpms/netmask/devel/netmask.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- netmask.spec 26 Feb 2009 05:18:38 -0000 1.16 +++ netmask.spec 25 Jul 2009 19:12:49 -0000 1.17 @@ -1,6 +1,6 @@ Name: netmask Version: 2.3.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility for determining network masks Group: Applications/Internet @@ -68,6 +68,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:13:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:13:08 +0000 (UTC) Subject: rpms/netmonitor/devel netmonitor.spec,1.2,1.3 Message-ID: <20090725191308.B972611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netmonitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9000 Modified Files: netmonitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netmonitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/netmonitor/devel/netmonitor.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- netmonitor.spec 26 Feb 2009 05:19:35 -0000 1.2 +++ netmonitor.spec 25 Jul 2009 19:13:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: netmonitor Version: 0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The free linux network bandwidth monitor Summary(pl): Darmowy monitor transferu linuksowych sieci Group: Applications/Internet @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:13:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:13:30 +0000 (UTC) Subject: rpms/netpanzer/devel netpanzer.spec,1.10,1.11 Message-ID: <20090725191330.8B56A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netpanzer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9286 Modified Files: netpanzer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netpanzer.spec =================================================================== RCS file: /cvs/pkgs/rpms/netpanzer/devel/netpanzer.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- netpanzer.spec 26 Feb 2009 05:20:32 -0000 1.10 +++ netpanzer.spec 25 Jul 2009 19:13:30 -0000 1.11 @@ -1,6 +1,6 @@ Name: netpanzer Version: 0.8.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An Online Multiplayer Tactical Warfare Game Group: Amusements/Games @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/netpanzer %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:13:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:13:49 +0000 (UTC) Subject: rpms/netpbm/devel netpbm.spec,1.141,1.142 Message-ID: <20090725191349.39E8D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netpbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9511 Modified Files: netpbm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netpbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/netpbm/devel/netpbm.spec,v retrieving revision 1.141 retrieving revision 1.142 diff -u -p -r1.141 -r1.142 --- netpbm.spec 27 Jun 2009 06:52:45 -0000 1.141 +++ netpbm.spec 25 Jul 2009 19:13:49 -0000 1.142 @@ -1,7 +1,7 @@ Summary: A library for handling different graphics file formats Name: netpbm Version: 10.35.65 -Release: 1%{?dist} +Release: 2%{?dist} # See copyright_summary for details License: BSD and GPLv2 and IJG and MIT and Public Domain Group: System Environment/Libraries @@ -217,6 +217,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/netpbm/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 10.35.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Jindrich Novy 10.35.65-1 - update to 10.35.65 From jkeating at fedoraproject.org Sat Jul 25 19:14:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:14:04 +0000 (UTC) Subject: rpms/netstat-nat/devel netstat-nat.spec,1.1,1.2 Message-ID: <20090725191404.E154311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netstat-nat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9723 Modified Files: netstat-nat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netstat-nat.spec =================================================================== RCS file: /cvs/pkgs/rpms/netstat-nat/devel/netstat-nat.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- netstat-nat.spec 27 Mar 2009 20:32:29 -0000 1.1 +++ netstat-nat.spec 25 Jul 2009 19:14:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: netstat-nat Version: 1.4.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool that displays NAT connections Group: Applications/Internet @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Alexey Kurov - 1.4.9-2 - Fixed file permissions and time stamps From jkeating at fedoraproject.org Sat Jul 25 19:14:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:14:19 +0000 (UTC) Subject: rpms/netstiff/devel netstiff.spec,1.2,1.3 Message-ID: <20090725191419.6345611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/netstiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9889 Modified Files: netstiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: netstiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/netstiff/devel/netstiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- netstiff.spec 26 Feb 2009 05:22:46 -0000 1.2 +++ netstiff.spec 25 Jul 2009 19:14:19 -0000 1.3 @@ -2,7 +2,7 @@ Name: netstiff Version: 0 -Release: 0.2.%{verstring}%{?dist} +Release: 0.3.%{verstring}%{?dist} Summary: A powerful Web and FTP site update checker Group: Applications/Internet License: GPLv3+ @@ -44,6 +44,9 @@ in a diff(1)-like manner. %{_mandir}/man1/%{name}.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.3.20080331 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20080331 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:14:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:14:36 +0000 (UTC) Subject: rpms/nettee/devel nettee.spec,1.4,1.5 Message-ID: <20090725191436.33B5211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nettee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10090 Modified Files: nettee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nettee.spec =================================================================== RCS file: /cvs/pkgs/rpms/nettee/devel/nettee.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nettee.spec 26 Feb 2009 05:23:44 -0000 1.4 +++ nettee.spec 25 Jul 2009 19:14:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: nettee Version: 0.1.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Network "tee" program Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.9.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:14:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:14:51 +0000 (UTC) Subject: rpms/nettle/devel nettle.spec,1.4,1.5 Message-ID: <20090725191451.2789011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nettle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10283 Modified Files: nettle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nettle.spec =================================================================== RCS file: /cvs/pkgs/rpms/nettle/devel/nettle.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nettle.spec 26 Feb 2009 05:24:45 -0000 1.4 +++ nettle.spec 25 Jul 2009 19:14:50 -0000 1.5 @@ -1,6 +1,6 @@ Name: nettle Version: 1.15 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A low-level cryptographic library Group: Development/Libraries @@ -110,6 +110,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.15-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:15:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:15:06 +0000 (UTC) Subject: rpms/neverball/devel neverball.spec,1.22,1.23 Message-ID: <20090725191506.8F1D111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/neverball/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10457 Modified Files: neverball.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: neverball.spec =================================================================== RCS file: /cvs/pkgs/rpms/neverball/devel/neverball.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- neverball.spec 26 Feb 2009 05:25:40 -0000 1.22 +++ neverball.spec 25 Jul 2009 19:15:06 -0000 1.23 @@ -1,6 +1,6 @@ Name: neverball Version: 1.4.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Roll a ball through an obstacle course @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:15:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:15:20 +0000 (UTC) Subject: rpms/newscache/devel newscache.spec,1.24,1.25 Message-ID: <20090725191520.D51BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/newscache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10614 Modified Files: newscache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: newscache.spec =================================================================== RCS file: /cvs/pkgs/rpms/newscache/devel/newscache.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- newscache.spec 26 Feb 2009 05:26:39 -0000 1.24 +++ newscache.spec 25 Jul 2009 19:15:20 -0000 1.25 @@ -4,7 +4,7 @@ Name: newscache Summary: Free cache server for USENET News Version: 1.2 -Release: 0.9.rc6%{?dist} +Release: 0.10.rc6%{?dist} Group: System Environment/Daemons License: GPLv2+ URL: http://www.linuxhacker.at/newscache/ @@ -156,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-0.10.rc6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-0.9.rc6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:15:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:15:36 +0000 (UTC) Subject: rpms/newsx/devel newsx.spec,1.12,1.13 Message-ID: <20090725191536.0E3C211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/newsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10802 Modified Files: newsx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: newsx.spec =================================================================== RCS file: /cvs/pkgs/rpms/newsx/devel/newsx.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- newsx.spec 26 Feb 2009 05:27:36 -0000 1.12 +++ newsx.spec 25 Jul 2009 19:15:35 -0000 1.13 @@ -1,6 +1,6 @@ Name: newsx Version: 1.6 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Summary: NNTP news exchange utility Summary(pl): Narz?dzie do wymiany news?w po NNTP @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man[158]/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:15:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:15:53 +0000 (UTC) Subject: rpms/newt/devel newt.spec,1.59,1.60 Message-ID: <20090725191553.72DDC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/newt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11013 Modified Files: newt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: newt.spec =================================================================== RCS file: /cvs/pkgs/rpms/newt/devel/newt.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- newt.spec 26 Feb 2009 05:28:32 -0000 1.59 +++ newt.spec 25 Jul 2009 19:15:53 -0000 1.60 @@ -2,7 +2,7 @@ Summary: A library for text mode user interfaces Name: newt Version: 0.52.10 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 Group: System Environment/Libraries URL: https://fedorahosted.org/newt/ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.py* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.52.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.52.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:16:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:16:24 +0000 (UTC) Subject: rpms/nexcontrol/devel nexcontrol.spec,1.2,1.3 Message-ID: <20090725191624.5667C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nexcontrol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11305 Modified Files: nexcontrol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nexcontrol.spec =================================================================== RCS file: /cvs/pkgs/rpms/nexcontrol/devel/nexcontrol.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nexcontrol.spec 26 Feb 2009 05:29:29 -0000 1.2 +++ nexcontrol.spec 25 Jul 2009 19:16:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: nexcontrol Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Software to control your Celestron NexStar Telescope License: GPLv2+ @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/nexcontrol %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:16:42 +0000 (UTC) Subject: rpms/nexuiz/devel nexuiz.spec,1.33,1.34 Message-ID: <20090725191642.03D0C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nexuiz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11532 Modified Files: nexuiz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nexuiz.spec =================================================================== RCS file: /cvs/pkgs/rpms/nexuiz/devel/nexuiz.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- nexuiz.spec 27 May 2009 16:08:57 -0000 1.33 +++ nexuiz.spec 25 Jul 2009 19:16:41 -0000 1.34 @@ -3,7 +3,7 @@ Summary: Multiplayer, deathmatch oriented first person shooter Name: nexuiz Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.nexuiz.com/ @@ -217,6 +217,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Ville Skytt? - 2.5.1-2 - Disable parallel build (#502271). From jkeating at fedoraproject.org Sat Jul 25 19:17:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:17:03 +0000 (UTC) Subject: rpms/nexuiz-data/devel nexuiz-data.spec,1.18,1.19 Message-ID: <20090725191703.4277D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nexuiz-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11765 Modified Files: nexuiz-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nexuiz-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/nexuiz-data/devel/nexuiz-data.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- nexuiz-data.spec 27 May 2009 12:02:49 -0000 1.18 +++ nexuiz-data.spec 25 Jul 2009 19:17:03 -0000 1.19 @@ -3,7 +3,7 @@ Summary: Game data for the Nexuiz first person shooter Name: nexuiz-data Version: 2.5.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.nexuiz.com/ @@ -58,6 +58,9 @@ Data (textures, maps, sounds and models) %{_datadir}/nexuiz/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Ville Skytt? - 2.5.1-1 - Update to 2.5.1. From jkeating at fedoraproject.org Sat Jul 25 19:17:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:17:50 +0000 (UTC) Subject: rpms/nfoview/devel nfoview.spec,1.2,1.3 Message-ID: <20090725191750.C20A511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nfoview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12212 Modified Files: nfoview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nfoview.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfoview/devel/nfoview.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nfoview.spec 15 May 2009 17:43:12 -0000 1.2 +++ nfoview.spec 25 Jul 2009 19:17:50 -0000 1.3 @@ -2,7 +2,7 @@ Name: nfoview Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Viewer for NFO files Group: Applications/File @@ -77,6 +77,9 @@ update-desktop-database &> /dev/null || %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Christoph Wickert - 1.5-1 - Update to 1.5 - Fix conditional comparison that caused broken deps in Fedora 9 From jkeating at fedoraproject.org Sat Jul 25 19:18:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:18:10 +0000 (UTC) Subject: rpms/nfs-utils-lib/devel nfs-utils-lib.spec,1.40,1.41 Message-ID: <20090725191810.A233D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nfs-utils-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12449 Modified Files: nfs-utils-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nfs-utils-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs-utils-lib/devel/nfs-utils-lib.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- nfs-utils-lib.spec 5 Jun 2009 15:30:40 -0000 1.40 +++ nfs-utils-lib.spec 25 Jul 2009 19:18:10 -0000 1.41 @@ -1,7 +1,7 @@ Summary: Network File System Support Library Name: nfs-utils-lib Version: 1.1.4 -Release: 7%{?dist} +Release: 8%{?dist} URL: http://www.citi.umich.edu/projects/nfsv4/linux/ License: BSD @@ -150,6 +150,9 @@ rm -rf %{buildroot} %{_libdir}/libnfsidmap*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Steve Dickson 1.1.4-7 - Added a debug line to log when the local realm is not found From jkeating at fedoraproject.org Sat Jul 25 19:18:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:18:25 +0000 (UTC) Subject: rpms/nfs4-acl-tools/devel nfs4-acl-tools.spec,1.6,1.7 Message-ID: <20090725191825.0424E11C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nfs4-acl-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12627 Modified Files: nfs4-acl-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nfs4-acl-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs4-acl-tools/devel/nfs4-acl-tools.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nfs4-acl-tools.spec 26 Feb 2009 05:34:16 -0000 1.6 +++ nfs4-acl-tools.spec 25 Jul 2009 19:18:24 -0000 1.7 @@ -1,6 +1,6 @@ Name: nfs4-acl-tools Version: 0.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The nfs4 ACL tools Group: System Environment/Tools License: BSD @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man5/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:18:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:18:48 +0000 (UTC) Subject: rpms/nfswatch/devel nfswatch.spec,1.17,1.18 Message-ID: <20090725191848.557C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nfswatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12879 Modified Files: nfswatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nfswatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfswatch/devel/nfswatch.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- nfswatch.spec 15 Apr 2009 15:53:20 -0000 1.17 +++ nfswatch.spec 25 Jul 2009 19:18:48 -0000 1.18 @@ -2,7 +2,7 @@ Summary: An NFS traffic monitoring tool Name: nfswatch Version: 4.99.10 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD URL: http://nfswatch.sourceforge.net @@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.99.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Christian Iseli 4.99.10-1 - new upstream version - needs libpcap-devel From jkeating at fedoraproject.org Sat Jul 25 19:19:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:19:19 +0000 (UTC) Subject: rpms/nget/devel nget.spec,1.13,1.14 Message-ID: <20090725191919.9E81011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13158 Modified Files: nget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nget.spec =================================================================== RCS file: /cvs/pkgs/rpms/nget/devel/nget.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- nget.spec 26 Feb 2009 05:36:09 -0000 1.13 +++ nget.spec 25 Jul 2009 19:19:19 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Command line NNTP file grabber Name: nget Version: 0.27.1 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://nget.sourceforge.net/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/ngetlite.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.27.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.27.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:19:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:19:42 +0000 (UTC) Subject: rpms/nginx/devel nginx.spec,1.34,1.35 Message-ID: <20090725191942.E2AE011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nginx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13378 Modified Files: nginx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nginx.spec =================================================================== RCS file: /cvs/pkgs/rpms/nginx/devel/nginx.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- nginx.spec 17 May 2009 21:11:07 -0000 1.34 +++ nginx.spec 25 Jul 2009 19:19:42 -0000 1.35 @@ -9,7 +9,7 @@ Name: nginx Version: 0.6.36 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Robust, small and high performance http and reverse proxy server Group: System Environment/Daemons @@ -174,6 +174,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.36-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Jeremy Hinegardner - 0.6.36-2 - init script updates from Gena Makhomed - remove nginx-upstream-fair From jkeating at fedoraproject.org Sat Jul 25 19:20:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:20:02 +0000 (UTC) Subject: rpms/ngircd/devel ngircd.spec,1.4,1.5 Message-ID: <20090725192002.E4F7F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ngircd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13582 Modified Files: ngircd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ngircd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ngircd/devel/ngircd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ngircd.spec 26 Feb 2009 05:38:06 -0000 1.4 +++ ngircd.spec 25 Jul 2009 19:20:00 -0000 1.5 @@ -5,7 +5,7 @@ Name: ngircd Version: 0.12.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Next Generation IRC Daemon Group: System Environment/Daemons License: GPLv2+ @@ -92,6 +92,9 @@ test "$1" != 0 || /usr/sbin/fedora-group %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:20:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:20:19 +0000 (UTC) Subject: rpms/ngrep/devel ngrep.spec,1.10,1.11 Message-ID: <20090725192019.BA54911C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ngrep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13799 Modified Files: ngrep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ngrep.spec =================================================================== RCS file: /cvs/pkgs/rpms/ngrep/devel/ngrep.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ngrep.spec 26 Feb 2009 05:39:03 -0000 1.10 +++ ngrep.spec 25 Jul 2009 19:20:19 -0000 1.11 @@ -5,7 +5,7 @@ Name: ngrep Summary: Network layer grep tool Version: 1.45 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Internet License: BSD with advertising @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/ngrep.8* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.45-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.45-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:20:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:20:50 +0000 (UTC) Subject: rpms/ngspice/devel ngspice.spec,1.17,1.18 Message-ID: <20090725192050.B325211C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ngspice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13990 Modified Files: ngspice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ngspice.spec =================================================================== RCS file: /cvs/pkgs/rpms/ngspice/devel/ngspice.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ngspice.spec 24 Feb 2009 21:33:27 -0000 1.17 +++ ngspice.spec 25 Jul 2009 19:20:50 -0000 1.18 @@ -1,6 +1,6 @@ Name: ngspice Version: 18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A mixed level/signal circuit simulator License: BSD From jkeating at fedoraproject.org Sat Jul 25 19:21:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:21:08 +0000 (UTC) Subject: rpms/nhpf/devel nhpf.spec,1.18,1.19 Message-ID: <20090725192108.6012D11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nhpf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14260 Modified Files: nhpf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nhpf.spec =================================================================== RCS file: /cvs/pkgs/rpms/nhpf/devel/nhpf.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- nhpf.spec 26 Feb 2009 05:40:00 -0000 1.18 +++ nhpf.spec 25 Jul 2009 19:21:08 -0000 1.19 @@ -1,7 +1,7 @@ Name: nhpf Summary: Hangul Printing Filter for Netscape (2.0 or later) PS-saved file Version: 1.42 -Release: 13%{?dist} +Release: 14%{?dist} License: MIT URL: http://cglab.snu.ac.kr/~yjlee/n3f/applications/nhpf.html Group: Applications/Text @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root)/usr/bin/nhpf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.42-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.42-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:21:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:21:26 +0000 (UTC) Subject: rpms/nickle/devel nickle.spec,1.7,1.8 Message-ID: <20090725192126.0FEB911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nickle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14510 Modified Files: nickle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nickle.spec =================================================================== RCS file: /cvs/pkgs/rpms/nickle/devel/nickle.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nickle.spec 11 Mar 2009 17:38:06 -0000 1.7 +++ nickle.spec 25 Jul 2009 19:21:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: nickle Version: 2.68 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A programming language-based prototyping environment Group: Development/Languages @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/nickle %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.68-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Michel Salim - 2.68-1 - Update to 2.68 - Enable checks From jkeating at fedoraproject.org Sat Jul 25 19:21:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:21:46 +0000 (UTC) Subject: rpms/nightfall/devel nightfall.spec,1.6,1.7 Message-ID: <20090725192146.1DFB411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nightfall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14723 Modified Files: nightfall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nightfall.spec =================================================================== RCS file: /cvs/pkgs/rpms/nightfall/devel/nightfall.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nightfall.spec 9 Jun 2009 19:06:59 -0000 1.6 +++ nightfall.spec 25 Jul 2009 19:21:45 -0000 1.7 @@ -1,6 +1,6 @@ Name: nightfall Version: 1.62 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Nightfall is an astronomy application for emulation of eclipsing stars License: GPLv2+ @@ -50,6 +50,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/applications/fedora-nightfall.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.62-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Ville Skytt? - 1.62-7 - Patch for useful debuginfo package, better honor $RPM_OPT_FLAGS (#499917). From jkeating at fedoraproject.org Sat Jul 25 19:22:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:22:17 +0000 (UTC) Subject: rpms/nightview/devel nightview.spec,1.8,1.9 Message-ID: <20090725192217.48AE511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nightview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14959 Modified Files: nightview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nightview.spec =================================================================== RCS file: /cvs/pkgs/rpms/nightview/devel/nightview.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nightview.spec 13 Jul 2009 00:02:53 -0000 1.8 +++ nightview.spec 25 Jul 2009 19:22:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: nightview Version: 0.3.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A general astronomical software package to control of a CCD camera Group: Amusements/Graphics @@ -245,6 +245,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Jason L Tibbitts III - 0.3.2-7 - Should not own /usr/share/pixmaps, as that directory is provided by the filesystem package. From jkeating at fedoraproject.org Sat Jul 25 19:22:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:22:45 +0000 (UTC) Subject: rpms/nikto/devel nikto.spec,1.4,1.5 Message-ID: <20090725192245.2B0B511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nikto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15306 Modified Files: nikto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nikto.spec =================================================================== RCS file: /cvs/pkgs/rpms/nikto/devel/nikto.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nikto.spec 1 Apr 2009 01:27:23 -0000 1.4 +++ nikto.spec 25 Jul 2009 19:22:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: nikto Version: 2.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Web server scanner Group: Applications/Internet @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 2.03-1 - New upstream release From mtasaka at fedoraproject.org Sat Jul 25 19:23:03 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 19:23:03 +0000 (UTC) Subject: rpms/jd/F-11 jd-rev2982-windres.patch, NONE, 1.1 .cvsignore, 1.379, 1.380 jd.spec, 1.441, 1.442 sources, 1.380, 1.381 Message-ID: <20090725192303.8ECBC11C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15467/F-11 Modified Files: .cvsignore jd.spec sources Added Files: jd-rev2982-windres.patch Log Message: jd-rev2982-windres.patch: configure.in | 1 + src/Makefile.am | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) --- NEW FILE jd-rev2982-windres.patch --- Index: configure.in =================================================================== --- configure.in (revision 2982) +++ configure.in (working copy) @@ -161,6 +161,7 @@ esac AC_SUBST(MAKE_WINDRES) +AM_CONDITIONAL(WINDRES, test -n "$MAKE_WINDRES") dnl Index: src/Makefile.am =================================================================== --- src/Makefile.am (revision 2982) +++ src/Makefile.am (working copy) @@ -59,11 +59,8 @@ usrcmdpref.cpp \ linkfilterpref.cpp \ iomonitor.cpp \ - environment.cpp \ -\ - jd_windres.rc + environment.cpp - noinst_HEADERS = \ winmain.h \ httpcode.h \ @@ -123,6 +120,10 @@ MAKE_WINDRES = @MAKE_WINDRES@ +if WINDRES +jd_SOURCES += jd_windres.rc +endif + SUFFIXES = .rc .o .rc.o: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.379 retrieving revision 1.380 diff -u -p -r1.379 -r1.380 --- .cvsignore 22 Jul 2009 17:42:11 -0000 1.379 +++ .cvsignore 25 Jul 2009 19:23:02 -0000 1.380 @@ -1 +1 @@ -jd-2.4.2-svn2964_trunk.tgz +jd-2.4.2-svn2981_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.441 retrieving revision 1.442 diff -u -p -r1.441 -r1.442 --- jd.spec 22 Jul 2009 17:42:11 -0000 1.441 +++ jd.spec 25 Jul 2009 19:23:02 -0000 1.442 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2964_trunk +%define strtag svn2981_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 1 +%define vendor_rel 2 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -51,6 +51,7 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz +Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -77,6 +78,7 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf +%patch0 -p0 sh autogen.sh @@ -135,8 +137,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Thu Jul 23 2009 Mamoru Tasaka -- rev 2964 +* Sun Jul 26 2009 Mamoru Tasaka +- rev 2981 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.380 retrieving revision 1.381 diff -u -p -r1.380 -r1.381 --- sources 22 Jul 2009 17:42:11 -0000 1.380 +++ sources 25 Jul 2009 19:23:03 -0000 1.381 @@ -1 +1 @@ -a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz +5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz From mtasaka at fedoraproject.org Sat Jul 25 19:23:04 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 19:23:04 +0000 (UTC) Subject: rpms/jd/F-10 jd-rev2982-windres.patch, NONE, 1.1 .cvsignore, 1.385, 1.386 jd.spec, 1.445, 1.446 sources, 1.386, 1.387 Message-ID: <20090725192304.1ECA211C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15467/F-10 Modified Files: .cvsignore jd.spec sources Added Files: jd-rev2982-windres.patch Log Message: jd-rev2982-windres.patch: configure.in | 1 + src/Makefile.am | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) --- NEW FILE jd-rev2982-windres.patch --- Index: configure.in =================================================================== --- configure.in (revision 2982) +++ configure.in (working copy) @@ -161,6 +161,7 @@ esac AC_SUBST(MAKE_WINDRES) +AM_CONDITIONAL(WINDRES, test -n "$MAKE_WINDRES") dnl Index: src/Makefile.am =================================================================== --- src/Makefile.am (revision 2982) +++ src/Makefile.am (working copy) @@ -59,11 +59,8 @@ usrcmdpref.cpp \ linkfilterpref.cpp \ iomonitor.cpp \ - environment.cpp \ -\ - jd_windres.rc + environment.cpp - noinst_HEADERS = \ winmain.h \ httpcode.h \ @@ -123,6 +120,10 @@ MAKE_WINDRES = @MAKE_WINDRES@ +if WINDRES +jd_SOURCES += jd_windres.rc +endif + SUFFIXES = .rc .o .rc.o: Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.385 retrieving revision 1.386 diff -u -p -r1.385 -r1.386 --- .cvsignore 22 Jul 2009 17:42:10 -0000 1.385 +++ .cvsignore 25 Jul 2009 19:23:01 -0000 1.386 @@ -1 +1 @@ -jd-2.4.2-svn2964_trunk.tgz +jd-2.4.2-svn2981_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.445 retrieving revision 1.446 diff -u -p -r1.445 -r1.446 --- jd.spec 22 Jul 2009 17:42:10 -0000 1.445 +++ jd.spec 25 Jul 2009 19:23:01 -0000 1.446 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2964_trunk +%define strtag svn2981_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -19,7 +19,7 @@ ########################################## # Defined by vendor # -%define vendor_rel 1 +%define vendor_rel 2 %define extra_rel %{nil} # Tag name changed from vendor to vendorname so as not to # overwrite Vendor entry in Summary @@ -51,6 +51,7 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz +Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -77,6 +78,7 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf +%patch0 -p0 sh autogen.sh @@ -135,8 +137,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Thu Jul 23 2009 Mamoru Tasaka -- rev 2964 +* Sun Jul 26 2009 Mamoru Tasaka +- rev 2981 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.386 retrieving revision 1.387 diff -u -p -r1.386 -r1.387 --- sources 22 Jul 2009 17:42:10 -0000 1.386 +++ sources 25 Jul 2009 19:23:01 -0000 1.387 @@ -1 +1 @@ -a822dc3e6717cf9117b98fcf04746d08 jd-2.4.2-svn2964_trunk.tgz +5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz From jkeating at fedoraproject.org Sat Jul 25 19:23:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:23:16 +0000 (UTC) Subject: rpms/ninja/devel ninja.spec,1.15,1.16 Message-ID: <20090725192316.6B34B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ninja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15600 Modified Files: ninja.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ninja.spec =================================================================== RCS file: /cvs/pkgs/rpms/ninja/devel/ninja.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ninja.spec 26 Feb 2009 05:44:38 -0000 1.15 +++ ninja.spec 25 Jul 2009 19:23:16 -0000 1.16 @@ -1,6 +1,6 @@ Name: ninja Version: 1.5.8.1 -Release: 9 +Release: 10 License: GPLv2+ Summary: Text based Internet Relay Chat (IRC) client Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf %{buildroot} %doc README ChangeLog BUGS+TODO COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.8.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.8.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:23:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:23:37 +0000 (UTC) Subject: rpms/ninvaders/devel ninvaders.spec,1.2,1.3 Message-ID: <20090725192337.767F511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ninvaders/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16032 Modified Files: ninvaders.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ninvaders.spec =================================================================== RCS file: /cvs/pkgs/rpms/ninvaders/devel/ninvaders.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ninvaders.spec 21 Apr 2009 19:24:35 -0000 1.2 +++ ninvaders.spec 25 Jul 2009 19:23:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: ninvaders Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Space Invaders clone written in ncurses for cli gaming Group: Amusements/Games @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Adam Miller - 0.1.1-3 - Patched Makefile to include $RPM_OPT_FLAGS to fix debuginfo issue From jkeating at fedoraproject.org Sat Jul 25 19:23:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:23:56 +0000 (UTC) Subject: rpms/nip2/devel nip2.spec,1.23,1.24 Message-ID: <20090725192356.4A75A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16535 Modified Files: nip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/nip2/devel/nip2.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- nip2.spec 11 Mar 2009 02:00:08 -0000 1.23 +++ nip2.spec 25 Jul 2009 19:23:56 -0000 1.24 @@ -1,6 +1,6 @@ Name: nip2 Version: 7.16.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Interactive tool for working with large images Group: Applications/Multimedia @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7.16.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Adam Goode - 7.16.4-3 - Rebuild for ImageMagick soname change From jkeating at fedoraproject.org Sat Jul 25 19:24:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:24:22 +0000 (UTC) Subject: rpms/njam/devel njam.spec,1.9,1.10 Message-ID: <20090725192422.BEE1711C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/njam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17186 Modified Files: njam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: njam.spec =================================================================== RCS file: /cvs/pkgs/rpms/njam/devel/njam.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- njam.spec 26 Feb 2009 05:46:39 -0000 1.9 +++ njam.spec 25 Jul 2009 19:24:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: njam Version: 1.25 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Maze-game, eat all the cookies while avoiding the badguys Group: Amusements/Games License: GPLv2+ @@ -101,6 +101,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.25-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.25-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:24:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:24:50 +0000 (UTC) Subject: rpms/nkf/devel nkf.spec,1.30,1.31 Message-ID: <20090725192450.490B811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nkf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17549 Modified Files: nkf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nkf.spec =================================================================== RCS file: /cvs/pkgs/rpms/nkf/devel/nkf.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- nkf.spec 26 Feb 2009 05:47:33 -0000 1.30 +++ nkf.spec 25 Jul 2009 19:24:49 -0000 1.31 @@ -3,7 +3,7 @@ Name: nkf Epoch: 1 Version: 2.0.8b -Release: 5%{?dist} +Release: 6%{?dist} License: BSD URL: http://nkf.sourceforge.jp/ Source0: http://osdn.dl.sourceforge.jp/nkf/26243/%{name}-%{version}.tar.gz @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/NKF.3pm.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:2.0.8b-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:2.0.8b-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:25:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:25:57 +0000 (UTC) Subject: rpms/nled/devel nled.spec,1.3,1.4 Message-ID: <20090725192557.0A56611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18248 Modified Files: nled.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nled.spec =================================================================== RCS file: /cvs/pkgs/rpms/nled/devel/nled.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nled.spec 20 May 2009 21:52:39 -0000 1.3 +++ nled.spec 25 Jul 2009 19:25:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: nled Version: 2.52 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Nifty Little EDitor Group: Applications/Editors License: GPLv2+ @@ -37,6 +37,9 @@ rm -rf %{buildroot} %doc nled.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.52-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Ville Skytt? - 2.52-5 - Build with $RPM_OPT_FLAGS (#497431). From jkeating at fedoraproject.org Sat Jul 25 19:26:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:26:16 +0000 (UTC) Subject: rpms/nload/devel nload.spec,1.2,1.3 Message-ID: <20090725192616.5562E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18449 Modified Files: nload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nload.spec =================================================================== RCS file: /cvs/pkgs/rpms/nload/devel/nload.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nload.spec 26 Feb 2009 05:49:27 -0000 1.2 +++ nload.spec 25 Jul 2009 19:26:15 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Monitor Network Traffic and Bandwidth usage in real time Name: nload Version: 0.7.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.roland-riegel.de/nload/ @@ -40,6 +40,9 @@ network usage. %{_bindir}/nload %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:26:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:26:35 +0000 (UTC) Subject: rpms/nmap/devel nmap.spec,1.56,1.57 Message-ID: <20090725192635.87A2E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18665 Modified Files: nmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nmap/devel/nmap.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- nmap.spec 17 Jul 2009 05:19:11 -0000 1.56 +++ nmap.spec 25 Jul 2009 19:26:35 -0000 1.57 @@ -1,7 +1,7 @@ Summary: Network exploration tool and security scanner Name: nmap Version: 5.00 -Release: 1%{?dist} +Release: 2%{?dist} # libdnet-stripped is BSD (advertising clause rescinded by the Univ. of California in 1999) License: GPLv2 Group: Applications/System @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xnmap.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2:5.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Michal Hlavinka - 2:5.0-1 - updated to 5.0 From jkeating at fedoraproject.org Sat Jul 25 19:26:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:26:55 +0000 (UTC) Subject: rpms/nmh/devel nmh.spec,1.26,1.27 Message-ID: <20090725192655.5364311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nmh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18887 Modified Files: nmh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nmh.spec =================================================================== RCS file: /cvs/pkgs/rpms/nmh/devel/nmh.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- nmh.spec 26 Feb 2009 05:51:18 -0000 1.26 +++ nmh.spec 25 Jul 2009 19:26:54 -0000 1.27 @@ -1,6 +1,6 @@ Name: nmh Version: 1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A capable mail handling system with a command line interface. Group: Applications/Internet @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/TODO docs/README* COPYRIGHT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:27:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:27:18 +0000 (UTC) Subject: rpms/nntpgrab/devel nntpgrab.spec,1.38,1.39 Message-ID: <20090725192718.3B75611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nntpgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19165 Modified Files: nntpgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nntpgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/nntpgrab/devel/nntpgrab.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- nntpgrab.spec 19 Jul 2009 19:44:51 -0000 1.38 +++ nntpgrab.spec 25 Jul 2009 19:27:18 -0000 1.39 @@ -1,7 +1,7 @@ Summary: Download files from the usenet Name: nntpgrab Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://www.nntpgrab.nl/releases/nntpgrab-%{version}.tar.bz2 @@ -277,6 +277,9 @@ rm -rf %{buildroot} %{_datadir}/nntpgrab/web %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Erik van Pienbroek - 0.5.1-1 - Update to 0.5.1 From jkeating at fedoraproject.org Sat Jul 25 19:27:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:27:40 +0000 (UTC) Subject: rpms/nocpulse-common/devel nocpulse-common.spec,1.2,1.3 Message-ID: <20090725192740.A12B111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nocpulse-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19357 Modified Files: nocpulse-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nocpulse-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/nocpulse-common/devel/nocpulse-common.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nocpulse-common.spec 26 Feb 2009 05:53:05 -0000 1.2 +++ nocpulse-common.spec 25 Jul 2009 19:27:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: nocpulse-common Version: 2.0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NOCpulse common License: GPLv2 URL: https://fedorahosted.org/spacewalk @@ -86,6 +86,9 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:27:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:27:56 +0000 (UTC) Subject: rpms/node/devel node.spec,1.3,1.4 Message-ID: <20090725192756.B6C6B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/node/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19585 Modified Files: node.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: node.spec =================================================================== RCS file: /cvs/pkgs/rpms/node/devel/node.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- node.spec 26 Feb 2009 05:54:03 -0000 1.3 +++ node.spec 25 Jul 2009 19:27:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: node Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple node front end, modelled after the node shells of TheNet and G8BPQ nodes Group: Applications/Communications @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:28:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:28:10 +0000 (UTC) Subject: rpms/nodoka-theme-gnome/devel nodoka-theme-gnome.spec,1.13,1.14 Message-ID: <20090725192810.A03CC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nodoka-theme-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19777 Modified Files: nodoka-theme-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nodoka-theme-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/nodoka-theme-gnome/devel/nodoka-theme-gnome.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- nodoka-theme-gnome.spec 26 Feb 2009 05:55:00 -0000 1.13 +++ nodoka-theme-gnome.spec 25 Jul 2009 19:28:10 -0000 1.14 @@ -2,7 +2,7 @@ Name: nodoka-theme-gnome Version: 0.3.90 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Nodoka Theme Pack for Gnome Group: System Environment/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{nodoka_dir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.90-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.90-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:28:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:28:25 +0000 (UTC) Subject: rpms/nogravity/devel nogravity.spec,1.3,1.4 Message-ID: <20090725192825.C105111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nogravity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19968 Modified Files: nogravity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nogravity.spec =================================================================== RCS file: /cvs/pkgs/rpms/nogravity/devel/nogravity.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nogravity.spec 26 Feb 2009 05:55:53 -0000 1.3 +++ nogravity.spec 25 Jul 2009 19:28:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: nogravity Version: 2.00 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Space shooter in 3D Group: Amusements/Games License: GPLv2+ @@ -110,6 +110,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.00-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.00-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:28:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:28:39 +0000 (UTC) Subject: rpms/nogravity-data/devel nogravity-data.spec,1.2,1.3 Message-ID: <20090725192839.E341311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nogravity-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20191 Modified Files: nogravity-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nogravity-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/nogravity-data/devel/nogravity-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nogravity-data.spec 26 Feb 2009 05:56:44 -0000 1.2 +++ nogravity-data.spec 25 Jul 2009 19:28:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: nogravity-data Version: 2.00 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Data files for No Gravity Group: Amusements/Games License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.00-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.00-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:28:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:28:53 +0000 (UTC) Subject: rpms/noip/devel noip.spec,1.1,1.2 Message-ID: <20090725192853.C5D2011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/noip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20354 Modified Files: noip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: noip.spec =================================================================== RCS file: /cvs/pkgs/rpms/noip/devel/noip.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- noip.spec 27 Mar 2009 20:45:12 -0000 1.1 +++ noip.spec 25 Jul 2009 19:28:53 -0000 1.2 @@ -1,6 +1,6 @@ Name: noip Version: 2.1.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A dynamic DNS update client Group: System Environment/Daemons License: GPLv2+ @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_initrddir}/noip %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Jussi Lehtola - 2.1.9-3 - Fix initrd file. From jkeating at fedoraproject.org Sat Jul 25 19:29:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:29:12 +0000 (UTC) Subject: rpms/nomarch/devel nomarch.spec,1.14,1.15 Message-ID: <20090725192912.3E68711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nomarch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20583 Modified Files: nomarch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nomarch.spec =================================================================== RCS file: /cvs/pkgs/rpms/nomarch/devel/nomarch.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- nomarch.spec 23 Feb 2009 21:21:46 -0000 1.14 +++ nomarch.spec 25 Jul 2009 19:29:11 -0000 1.15 @@ -1,6 +1,6 @@ Name: nomarch Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GPLed Arc de-archiver @@ -45,6 +45,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.4-5 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sat Jul 25 19:29:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:29:28 +0000 (UTC) Subject: rpms/notecase/devel notecase.spec,1.31,1.32 Message-ID: <20090725192928.10B4B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/notecase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20809 Modified Files: notecase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: notecase.spec =================================================================== RCS file: /cvs/pkgs/rpms/notecase/devel/notecase.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- notecase.spec 26 Feb 2009 05:58:28 -0000 1.31 +++ notecase.spec 25 Jul 2009 19:29:27 -0000 1.32 @@ -1,6 +1,6 @@ Name: notecase Version: 1.6.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A hierarchical note manager Group: Applications/Productivity @@ -60,6 +60,9 @@ update-desktop-database &> /dev/null || %{_datadir}/mime/packages/%{name}.xml %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:29:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:29:50 +0000 (UTC) Subject: rpms/notification-daemon/devel notification-daemon.spec,1.30,1.31 Message-ID: <20090725192950.3153D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/notification-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21064 Modified Files: notification-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: notification-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon/devel/notification-daemon.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- notification-daemon.spec 22 Jul 2009 12:51:00 -0000 1.30 +++ notification-daemon.spec 25 Jul 2009 19:29:49 -0000 1.31 @@ -7,7 +7,7 @@ Summary: Desktop Notification Daemon Name: notification-daemon Version: 0.4.0 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.galago-project.org/specs/notification/ License: GPLv2+ Group: System Environment/Libraries @@ -109,6 +109,9 @@ gconftool-2 --makefile-install-rule \ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Matthias Clasen - 0.4.0-5 - Copy nodoka patch from F11 From jkeating at fedoraproject.org Sat Jul 25 19:30:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:30:16 +0000 (UTC) Subject: rpms/notification-daemon-engine-nodoka/devel notification-daemon-engine-nodoka.spec, 1.9, 1.10 Message-ID: <20090725193016.92EE511C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21298 Modified Files: notification-daemon-engine-nodoka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: notification-daemon-engine-nodoka.spec =================================================================== RCS file: /cvs/pkgs/rpms/notification-daemon-engine-nodoka/devel/notification-daemon-engine-nodoka.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- notification-daemon-engine-nodoka.spec 21 Jul 2009 14:57:32 -0000 1.9 +++ notification-daemon-engine-nodoka.spec 25 Jul 2009 19:30:15 -0000 1.10 @@ -1,6 +1,6 @@ Name: notification-daemon-engine-nodoka Version: 0.1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The Nodoka theme engine for the notification daemon Group: System Environment/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/notification-daemon-1.0/engines/libnodoka.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Matthias Clasen - 0.1.0-9 - Fix the libsexy removal patch From jkeating at fedoraproject.org Sat Jul 25 19:30:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:30:35 +0000 (UTC) Subject: rpms/notify-python/devel notify-python.spec,1.10,1.11 Message-ID: <20090725193035.C1BA111C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/notify-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21573 Modified Files: notify-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: notify-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/notify-python/devel/notify-python.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- notify-python.spec 1 Jun 2009 17:00:56 -0000 1.10 +++ notify-python.spec 25 Jul 2009 19:30:35 -0000 1.11 @@ -2,7 +2,7 @@ Name: notify-python Version: 0.1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python bindings for libnotify Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 John Dennis - 0.1.1-7 - change requires of notification-daemon to desktop-notification-daemon as per bug #500586 From jkeating at fedoraproject.org Sat Jul 25 19:30:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:30:51 +0000 (UTC) Subject: rpms/notify-sharp/devel notify-sharp.spec,1.3,1.4 Message-ID: <20090725193051.A4E3611C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/notify-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21751 Modified Files: notify-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: notify-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/notify-sharp/devel/notify-sharp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- notify-sharp.spec 17 Jun 2009 12:48:05 -0000 1.3 +++ notify-sharp.spec 25 Jul 2009 19:30:51 -0000 1.4 @@ -3,7 +3,7 @@ Name: notify-sharp Version: 0.4.0 -Release: 0.7.%{svndate}svn%{?dist}.1 +Release: 0.8.%{svndate}svn%{?dist}.1 Summary: A C# implementation for Desktop Notifications Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/monodoc/sources/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.0-0.8.20080912svn.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Karsten Hopp 0.4.0-0.7.20080912svn.1 - mono is available on s390x From jkeating at fedoraproject.org Sat Jul 25 19:31:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:31:11 +0000 (UTC) Subject: rpms/npush/devel npush.spec,1.4,1.5 Message-ID: <20090725193111.2F47911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/npush/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21953 Modified Files: npush.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: npush.spec =================================================================== RCS file: /cvs/pkgs/rpms/npush/devel/npush.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- npush.spec 9 Apr 2009 23:12:10 -0000 1.4 +++ npush.spec 25 Jul 2009 19:31:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: npush Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A logic game similar to Sokoban Group: Amusements/Games @@ -84,6 +84,9 @@ fi %{_datadir}/icons/hicolor/*/apps/%{name}.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Stefan Posdzich - 0.7-3 - Fix Bug #485363 From jkeating at fedoraproject.org Sat Jul 25 19:31:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:31:27 +0000 (UTC) Subject: rpms/nqc/devel nqc.spec,1.12,1.13 Message-ID: <20090725193127.3551E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nqc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22126 Modified Files: nqc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nqc.spec =================================================================== RCS file: /cvs/pkgs/rpms/nqc/devel/nqc.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- nqc.spec 20 May 2009 19:43:35 -0000 1.12 +++ nqc.spec 25 Jul 2009 19:31:27 -0000 1.13 @@ -1,6 +1,6 @@ Name: nqc Version: 3.1.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Not Quite C compiler Group: Development/Languages @@ -171,6 +171,9 @@ fi %lang(pt) %doc nqc-tutorial-pt.pdf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Rick L Vinyard Jr - 3.1.6-5 - Added lang(xx) directives to international files From jkeating at fedoraproject.org Sat Jul 25 19:31:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:31:51 +0000 (UTC) Subject: rpms/nrg2iso/devel nrg2iso.spec,1.4,1.5 Message-ID: <20090725193151.DD2F411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nrg2iso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22363 Modified Files: nrg2iso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nrg2iso.spec =================================================================== RCS file: /cvs/pkgs/rpms/nrg2iso/devel/nrg2iso.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- nrg2iso.spec 26 Feb 2009 06:04:44 -0000 1.4 +++ nrg2iso.spec 25 Jul 2009 19:31:50 -0000 1.5 @@ -1,6 +1,6 @@ Name: nrg2iso Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert Nero Burning Rom image files into ISO Group: Applications/File @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:32:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:32:10 +0000 (UTC) Subject: rpms/nrpe/devel nrpe.spec,1.13,1.14 Message-ID: <20090725193210.94F5311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nrpe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22659 Modified Files: nrpe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nrpe.spec =================================================================== RCS file: /cvs/pkgs/rpms/nrpe/devel/nrpe.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- nrpe.spec 26 Feb 2009 06:05:35 -0000 1.13 +++ nrpe.spec 25 Jul 2009 19:32:10 -0000 1.14 @@ -2,7 +2,7 @@ Name: nrpe Version: 2.12 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Host/service/network monitoring agent for Nagios Group: Applications/System @@ -112,6 +112,9 @@ fi %doc Changelog LEGAL README %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:32:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:32:37 +0000 (UTC) Subject: rpms/nsca/devel nsca.spec,1.2,1.3 Message-ID: <20090725193237.7DD9C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nsca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22969 Modified Files: nsca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nsca.spec =================================================================== RCS file: /cvs/pkgs/rpms/nsca/devel/nsca.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nsca.spec 26 Feb 2009 06:06:26 -0000 1.2 +++ nsca.spec 25 Jul 2009 19:32:37 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Nagios Service Check Acceptor Name: nsca Version: 2.7.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.nagios.org/ @@ -99,6 +99,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.7.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:33:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:33:16 +0000 (UTC) Subject: rpms/nsd/devel nsd.spec,1.54,1.55 Message-ID: <20090725193316.76BCE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23228 Modified Files: nsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/nsd/devel/nsd.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- nsd.spec 6 Jun 2009 16:13:03 -0000 1.54 +++ nsd.spec 25 Jul 2009 19:33:16 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Fast and lean authoritative DNS Name Server Name: nsd Version: 3.2.2 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Url: http://www.nlnetlabs.nl/%{name}/ Source: http://www.nlnetlabs.nl/downloads/%{name}/%{name}-%{version}.tar.gz @@ -97,6 +97,9 @@ if [ "$1" -ge "1" ]; then fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Paul Wouters - 3.2.2-3 - Fixed /dev/nul which cause a file \%%1 to be written by cron - Bump for EVR. From jkeating at fedoraproject.org Sat Jul 25 19:33:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:33:35 +0000 (UTC) Subject: rpms/nspluginwrapper/devel nspluginwrapper.spec,1.80,1.81 Message-ID: <20090725193335.3B3FD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nspluginwrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23546 Modified Files: nspluginwrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nspluginwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/nspluginwrapper/devel/nspluginwrapper.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- nspluginwrapper.spec 15 Jul 2009 12:58:31 -0000 1.80 +++ nspluginwrapper.spec 25 Jul 2009 19:33:35 -0000 1.81 @@ -73,7 +73,7 @@ Summary: A compatibility layer for Netscape 4 plugins Name: nspluginwrapper Version: 1.3.0 -Release: 7%{?dist} +Release: 8%{?dist} Source0: %{name}-%{version}%{?svndate:-%{svndate}}.tar.bz2 Source1: %{plugin_config_name}.tar.gz Source2: plugin-config.sh.in @@ -246,6 +246,9 @@ fi; %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Martin Stransky 1.3.0-7 - NPIdentifiers fix by Tristan Schmelcher (Google) From jkeating at fedoraproject.org Sat Jul 25 19:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:34:03 +0000 (UTC) Subject: rpms/nspr/devel nspr.spec,1.44,1.45 Message-ID: <20090725193403.0944311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nspr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23753 Modified Files: nspr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nspr.spec =================================================================== RCS file: /cvs/pkgs/rpms/nspr/devel/nspr.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- nspr.spec 30 Jun 2009 15:56:22 -0000 1.44 +++ nspr.spec 25 Jul 2009 19:34:02 -0000 1.45 @@ -1,7 +1,7 @@ Summary: Netscape Portable Runtime Name: nspr Version: 4.8 -Release: 1%{?dist} +Release: 2%{?dist} License: MPLv1.1 or GPLv2+ or LGPLv2+ URL: http://www.mozilla.org/projects/nspr/ Group: System Environment/Libraries @@ -131,6 +131,9 @@ done %{_bindir}/nspr-config %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Christopher Aillon 4.8-1 - update to 4.8 From jkeating at fedoraproject.org Sat Jul 25 19:34:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:34:25 +0000 (UTC) Subject: rpms/nss/devel nss.spec,1.79,1.80 Message-ID: <20090725193425.67B2111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24100 Modified Files: nss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss/devel/nss.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- nss.spec 7 Jul 2009 16:11:33 -0000 1.79 +++ nss.spec 25 Jul 2009 19:34:25 -0000 1.80 @@ -4,7 +4,7 @@ Summary: Network Security Services Name: nss Version: 3.12.3.99.3 -Release: 6%{?dist} +Release: 7%{?dist} License: MPLv1.1 or GPLv2+ or LGPLv2+ URL: http://www.mozilla.org/projects/security/pki/nss/ Group: System Environment/Libraries @@ -476,6 +476,9 @@ done %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.12.3.99.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Elio Maldonado - 3.12.3.99.3-6 - removed two patch files which are no longer needed and fixed previous change log number * Mon Jun 22 2009 Elio Maldonado - 3.12.3.99.3-5 From jkeating at fedoraproject.org Sat Jul 25 19:34:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:34:54 +0000 (UTC) Subject: rpms/nss-ldapd/devel nss-ldapd.spec,1.1,1.2 Message-ID: <20090725193454.1EAF311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss-ldapd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24394 Modified Files: nss-ldapd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss-ldapd.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss-ldapd/devel/nss-ldapd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nss-ldapd.spec 23 Jun 2009 18:17:31 -0000 1.1 +++ nss-ldapd.spec 25 Jul 2009 19:34:53 -0000 1.2 @@ -5,7 +5,7 @@ Name: nss-ldapd Version: 0.6.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An nsswitch module which uses directory servers Group: System Environment/Base License: LGPLv2+ @@ -147,6 +147,9 @@ fi exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Nalin Dahyabhai 0.6.10-3 - update URL: and Source: From jkeating at fedoraproject.org Sat Jul 25 19:35:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:35:18 +0000 (UTC) Subject: rpms/nss-mdns/devel nss-mdns.spec,1.6,1.7 Message-ID: <20090725193518.62C4D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss-mdns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24665 Modified Files: nss-mdns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss-mdns.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss-mdns/devel/nss-mdns.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nss-mdns.spec 26 Feb 2009 06:10:56 -0000 1.6 +++ nss-mdns.spec 25 Jul 2009 19:35:17 -0000 1.7 @@ -1,7 +1,7 @@ Summary: glibc plugin for .local name resolution Name: nss-mdns Version: 0.10 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ URL: http://0pointer.de/lennart/projects/nss-mdns/ Group: System Environment/Libraries @@ -61,6 +61,9 @@ fi /%{_lib}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:35:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:35:43 +0000 (UTC) Subject: rpms/nss-myhostname/devel nss-myhostname.spec,1.1,1.2 Message-ID: <20090725193543.968BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss-myhostname/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24935 Modified Files: nss-myhostname.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss-myhostname.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss-myhostname/devel/nss-myhostname.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nss-myhostname.spec 23 May 2009 22:00:33 -0000 1.1 +++ nss-myhostname.spec 25 Jul 2009 19:35:43 -0000 1.2 @@ -1,7 +1,7 @@ Summary: glibc plugin for local system host name resolution Name: nss-myhostname Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: http://0pointer.de/lennart/projects/nss-myhostname/ Group: System Environment/Libraries @@ -67,6 +67,9 @@ fi /%{_lib}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 - Lennart Poettering - 0.2-2 - Add missing dependencies From jkeating at fedoraproject.org Sat Jul 25 19:36:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:36:08 +0000 (UTC) Subject: rpms/nss_compat_ossl/devel nss_compat_ossl.spec,1.16,1.17 Message-ID: <20090725193608.7807E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss_compat_ossl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25136 Modified Files: nss_compat_ossl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss_compat_ossl.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_compat_ossl/devel/nss_compat_ossl.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- nss_compat_ossl.spec 29 Apr 2009 14:37:08 -0000 1.16 +++ nss_compat_ossl.spec 25 Jul 2009 19:36:08 -0000 1.17 @@ -1,6 +1,6 @@ Name: nss_compat_ossl Version: 0.9.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Source-level compatibility library for OpenSSL to NSS porting Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Rob Crittenden - 0.9.5-3 - Resolve BZ 497788, implement default loading of root CAs From jkeating at fedoraproject.org Sat Jul 25 19:36:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:36:24 +0000 (UTC) Subject: rpms/nss_db/devel nss_db.spec,1.44,1.45 Message-ID: <20090725193624.DD02111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss_db/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25331 Modified Files: nss_db.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss_db.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_db/devel/nss_db.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- nss_db.spec 26 Feb 2009 06:12:44 -0000 1.44 +++ nss_db.spec 25 Jul 2009 19:36:24 -0000 1.45 @@ -2,7 +2,7 @@ Summary: An NSS library for the Berkeley DB Name: nss_db Version: 2.2 -Release: 44%{?dist} +Release: 45%{?dist} Source: ftp://sources.redhat.com/pub/glibc/releases/nss_db-%{version}.tar.gz Source1: http://download.oracle.com/berkeley-db/db-%{db_version}.tar.gz Source2: db-getent-Makefile @@ -121,6 +121,9 @@ rm -rf ${RPM_BUILD_ROOT} %config(noreplace) /var/db/Makefile %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-45 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:36:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:36:45 +0000 (UTC) Subject: rpms/nss_ldap/devel nss_ldap.spec,1.114,1.115 Message-ID: <20090725193645.822C611C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nss_ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25542 Modified Files: nss_ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nss_ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/nss_ldap/devel/nss_ldap.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- nss_ldap.spec 22 Jul 2009 20:19:10 -0000 1.114 +++ nss_ldap.spec 25 Jul 2009 19:36:45 -0000 1.115 @@ -2,7 +2,7 @@ Summary: NSS library and PAM module for LDAP Name: nss_ldap Version: 264 -Release: 5%{?dist} +Release: 6%{?dist} Source0: ftp://ftp.padl.com/pub/nss_ldap-%{version}.tar.gz Source1: ftp://ftp.padl.com/pub/pam_ldap-%{pam_ldap_version}.tar.gz Source3: nss_ldap.versions @@ -196,6 +196,9 @@ fi %doc pam_ldap-%{pam_ldap_version}/ns-pwd-policy.schema %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 264-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Nalin Dahyabhai 264-5 - fix some minor leaks in pam_ldap, part of upstream #326,#333 From jkeating at fedoraproject.org Sat Jul 25 19:37:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:37:08 +0000 (UTC) Subject: rpms/nssbackup/devel nssbackup.spec,1.1,1.2 Message-ID: <20090725193708.DABDD11C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nssbackup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25787 Modified Files: nssbackup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nssbackup.spec =================================================================== RCS file: /cvs/pkgs/rpms/nssbackup/devel/nssbackup.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nssbackup.spec 17 Apr 2009 19:51:44 -0000 1.1 +++ nssbackup.spec 25 Jul 2009 19:37:07 -0000 1.2 @@ -5,7 +5,7 @@ Name: nssbackup Version: 0.2 -Release: 0.2.rc7%{?dist} +Release: 0.3.rc7%{?dist} Summary: (Not so) Simple Backup Suite for desktop use Group: Applications/Archiving @@ -160,6 +160,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2-0.3.rc7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Simon Wesp - 0.2-0.2.rc7 - Fix license tag - Add missed Requires to the package From jkeating at fedoraproject.org Sat Jul 25 19:37:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:37:31 +0000 (UTC) Subject: rpms/nted/devel nted.spec,1.17,1.18 Message-ID: <20090725193731.381E311C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26026 Modified Files: nted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nted.spec =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/nted.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- nted.spec 21 Jul 2009 13:04:53 -0000 1.17 +++ nted.spec 25 Jul 2009 19:37:30 -0000 1.18 @@ -15,7 +15,7 @@ Name: nted Version: 1.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Musical score editor Summary(de): Partitureditor @@ -125,6 +125,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 - Upstream release 1.6.0/1.6.1 From jkeating at fedoraproject.org Sat Jul 25 19:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:37:50 +0000 (UTC) Subject: rpms/ntfs-3g/devel ntfs-3g.spec,1.48,1.49 Message-ID: <20090725193750.25B8311C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntfs-3g/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26358 Modified Files: ntfs-3g.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntfs-3g.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntfs-3g/devel/ntfs-3g.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- ntfs-3g.spec 3 Apr 2009 13:08:42 -0000 1.48 +++ ntfs-3g.spec 25 Jul 2009 19:37:49 -0000 1.49 @@ -5,7 +5,7 @@ Name: ntfs-3g Summary: Linux NTFS userspace driver Version: 2009.4.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://ntfs-3g.org/ntfs-3g-%{version}.tgz @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libntfs-3g.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2:2009.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 3 2009 Tom "spot" Callaway - 2:2009.4.4-1 - update to 4.4, patch for mount issue merged From jkeating at fedoraproject.org Sat Jul 25 19:38:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:38:10 +0000 (UTC) Subject: rpms/ntfs-config/devel ntfs-config.spec,1.18,1.19 Message-ID: <20090725193810.B393211C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntfs-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26599 Modified Files: ntfs-config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntfs-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntfs-config/devel/ntfs-config.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ntfs-config.spec 14 Jun 2009 19:28:54 -0000 1.18 +++ ntfs-config.spec 25 Jul 2009 19:38:10 -0000 1.19 @@ -3,7 +3,7 @@ Name: ntfs-config Version: 1.0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A front-end to Enable/disable NTFS write support Group: Applications/System @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Xavier Lamien - 1.0.1-6 - Fix sitelib. From jkeating at fedoraproject.org Sat Jul 25 19:38:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:38:35 +0000 (UTC) Subject: rpms/ntfsprogs/devel ntfsprogs.spec,1.18,1.19 Message-ID: <20090725193835.D835B11C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntfsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26864 Modified Files: ntfsprogs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntfsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntfsprogs/devel/ntfsprogs.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ntfsprogs.spec 9 Jul 2009 18:47:03 -0000 1.18 +++ ntfsprogs.spec 25 Jul 2009 19:38:35 -0000 1.19 @@ -1,6 +1,6 @@ Name: ntfsprogs Version: 2.0.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: NTFS filesystem libraries and utilities Source0: http://download.sf.net/linux-ntfs/%{name}-%{version}.tar.bz2 Patch0: ntfsprogs-2.0.0-build-extras-by-default.patch @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gnome-vfs-2.0/modules/libntfs-gnomevfs.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Tom "spot" Callaway - 2.0.0-11 - Fix BuildRequires from e2fsprogs-devel to libuuid-devel From jkeating at fedoraproject.org Sat Jul 25 19:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:38:59 +0000 (UTC) Subject: rpms/ntl/devel ntl.spec,1.18,1.19 Message-ID: <20090725193859.2C99011C02BD@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27151 Modified Files: ntl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntl/devel/ntl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ntl.spec 17 Apr 2009 17:42:26 -0000 1.18 +++ ntl.spec 25 Jul 2009 19:38:58 -0000 1.19 @@ -7,7 +7,7 @@ Summary: High-performance algorithms for vectors, matrices, and polynomials Name: ntl Version: 5.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://shoup.net/ntl/ @@ -135,6 +135,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Rex Dieter - 5.5-1 - ntl-5.5 - enable shared libs (and omit static lib) From jkeating at fedoraproject.org Sat Jul 25 19:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:39:27 +0000 (UTC) Subject: rpms/ntop/devel ntop.spec,1.9,1.10 Message-ID: <20090725193927.6AC5C11C0381@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27475 Modified Files: ntop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntop.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntop/devel/ntop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ntop.spec 17 Mar 2009 08:28:30 -0000 1.9 +++ ntop.spec 25 Jul 2009 19:39:24 -0000 1.10 @@ -1,6 +1,6 @@ Name: ntop Version: 3.3.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A network traffic probe similar to the UNIX top command Group: Applications/Internet # Confirmed from fedora legal 488717 @@ -188,6 +188,9 @@ fi %{_localstatedir}/lib/ntop/rrd %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Rakesh Pandit - 3.3.9-5 - Fixed world-writable access log (#490561) From jkeating at fedoraproject.org Sat Jul 25 19:39:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:39:50 +0000 (UTC) Subject: rpms/ntp/devel ntp.spec,1.92,1.93 Message-ID: <20090725193950.228F111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ntp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27726 Modified Files: ntp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ntp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ntp/devel/ntp.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- ntp.spec 21 Jul 2009 15:55:14 -0000 1.92 +++ ntp.spec 25 Jul 2009 19:39:49 -0000 1.93 @@ -1,7 +1,7 @@ Summary: The NTP daemon and utilities Name: ntp Version: 4.2.4p7 -Release: 3%{?dist} +Release: 4%{?dist} # primary license (COPYRIGHT) : MIT # ElectricFence/ (not used) : GPLv2 # kernel/sys/ppsclock.h (not used) : BSD with advertising @@ -365,6 +365,9 @@ fi %{ntpdocdir}/html %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.4p7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Miroslav Lichvar 4.2.4p7-3 - handle system time jumps better - don't wake up every second for refclocks without timer From scop at fedoraproject.org Sat Jul 25 19:40:07 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Sat, 25 Jul 2009 19:40:07 +0000 (UTC) Subject: rpms/gkrellm-volume/devel gkrellm-volume.spec,1.14,1.15 Message-ID: <20090725194007.3EDA411C04D2@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/gkrellm-volume/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27891 Modified Files: gkrellm-volume.spec Log Message: * Sat Jul 25 2009 Ville Skytt? - 2.1.13-10 - Make dependency on gkrellm ISA qualified. - Use %global instead of %define. Index: gkrellm-volume.spec =================================================================== RCS file: /cvs/pkgs/rpms/gkrellm-volume/devel/gkrellm-volume.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gkrellm-volume.spec 25 Jul 2009 00:15:54 -0000 1.14 +++ gkrellm-volume.spec 25 Jul 2009 19:40:06 -0000 1.15 @@ -1,8 +1,8 @@ -%define plugdir %{_libdir}/gkrellm2/plugins +%global plugdir %{_libdir}/gkrellm2/plugins Name: gkrellm-volume Version: 2.1.13 -Release: 9%{?dist} +Release: 10%{?dist} Summary: GKrellM volume plugin Group: Applications/Multimedia @@ -17,7 +17,7 @@ BuildRequires: gkrellm-devel >= 2.0 BuildRequires: gtk2-devel >= 2.0.1 BuildRequires: gettext BuildRequires: alsa-lib-devel -Requires: gkrellm >= 2.0 +Requires: gkrellm%{?_isa} >= 2.0 %description GKrellM plugin for controlling mixer devices. @@ -56,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Ville Skytt? - 2.1.13-10 +- Make dependency on gkrellm ISA qualified. +- Use %%global instead of %%define. + * Fri Jul 24 2009 Fedora Release Engineering - 2.1.13-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:40:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:40:16 +0000 (UTC) Subject: rpms/nufw/devel nufw.spec,1.8,1.9 Message-ID: <20090725194016.B01F311C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nufw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28004 Modified Files: nufw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nufw.spec =================================================================== RCS file: /cvs/pkgs/rpms/nufw/devel/nufw.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- nufw.spec 1 Apr 2009 09:54:25 -0000 1.8 +++ nufw.spec 25 Jul 2009 19:40:15 -0000 1.9 @@ -2,7 +2,7 @@ Name: nufw Version: 2.2.21 -Release: 3%{dist} +Release: 4%{dist} Summary: Authentication Firewall Suite for Linux License: GPLv2 Group: System Environment/Daemons @@ -360,6 +360,9 @@ fi %{python_sitelib}/nuclient/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Michael Schwendt - 2.2.21-3 - Fix unowned directories (#483383). From jkeating at fedoraproject.org Sat Jul 25 19:40:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:40:38 +0000 (UTC) Subject: rpms/nullmodem/devel nullmodem.spec,1.3,1.4 Message-ID: <20090725194038.0FAAA11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nullmodem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28301 Modified Files: nullmodem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nullmodem.spec =================================================================== RCS file: /cvs/pkgs/rpms/nullmodem/devel/nullmodem.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nullmodem.spec 25 Apr 2009 09:07:34 -0000 1.3 +++ nullmodem.spec 25 Jul 2009 19:40:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: nullmodem Version: 0.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A utility to loopback pseudo-terminals Group: Applications/Communications @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Fabian Affolter - 0.0.6-1 - Updated to new upstream version 0.0.6 From jkeating at fedoraproject.org Sat Jul 25 19:41:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:41:13 +0000 (UTC) Subject: rpms/numactl/devel numactl.spec,1.61,1.62 Message-ID: <20090725194113.9325011C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/numactl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28609 Modified Files: numactl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: numactl.spec =================================================================== RCS file: /cvs/pkgs/rpms/numactl/devel/numactl.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- numactl.spec 26 Jun 2009 15:57:41 -0000 1.61 +++ numactl.spec 25 Jul 2009 19:41:12 -0000 1.62 @@ -1,7 +1,7 @@ Name: numactl Summary: Library for tuning for Non Uniform Memory Access machines Version: 2.0.3 -Release: 4%{dist} +Release: 5%{dist} License: LGPLv2/GPLv2 Group: System Environment/Base URL: ftp://oss.sgi.com/www/projects/libnuma/download @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Neil Horman - Update to full 2.0.3 version (bz 506795) From jkeating at fedoraproject.org Sat Jul 25 19:41:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:41:31 +0000 (UTC) Subject: rpms/numlockx/devel numlockx.spec,1.14,1.15 Message-ID: <20090725194131.7846C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/numlockx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28888 Modified Files: numlockx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: numlockx.spec =================================================================== RCS file: /cvs/pkgs/rpms/numlockx/devel/numlockx.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- numlockx.spec 26 Feb 2009 06:23:51 -0000 1.14 +++ numlockx.spec 25 Jul 2009 19:41:31 -0000 1.15 @@ -1,6 +1,6 @@ Name: numlockx Version: 1.0 -Release: 15%{?dist} +Release: 16%{?dist} Summary: NumLockX turns on NumLock after starting X Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS README LICENSE %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:41:46 +0000 (UTC) Subject: rpms/numptyphysics/devel numptyphysics.spec,1.3,1.4 Message-ID: <20090725194146.25B9511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/numptyphysics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29057 Modified Files: numptyphysics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: numptyphysics.spec =================================================================== RCS file: /cvs/pkgs/rpms/numptyphysics/devel/numptyphysics.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- numptyphysics.spec 26 Feb 2009 06:24:45 -0000 1.3 +++ numptyphysics.spec 25 Jul 2009 19:41:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: numptyphysics Version: 0.3 -Release: 0.4.20080925svn%{?dist} +Release: 0.5.20080925svn%{?dist} Summary: A crayon-drawing based physics puzzle game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3-0.5.20080925svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-0.4.20080925svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:42:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:42:02 +0000 (UTC) Subject: rpms/numpy/devel numpy.spec,1.37,1.38 Message-ID: <20090725194202.1408011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/numpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29237 Modified Files: numpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: numpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/numpy/devel/numpy.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- numpy.spec 11 Jun 2009 19:21:24 -0000 1.37 +++ numpy.spec 25 Jul 2009 19:42:01 -0000 1.38 @@ -4,7 +4,7 @@ Name: numpy Version: 1.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A fast multidimensional array facility for Python Group: Development/Languages @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Jon Ciesla 1.3.0-5 - Fixed atlas BR, BZ 505376. From jkeating at fedoraproject.org Sat Jul 25 19:42:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:42:20 +0000 (UTC) Subject: rpms/nurbs++/devel nurbs++.spec,1.1,1.2 Message-ID: <20090725194220.252C511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nurbs++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29435 Modified Files: nurbs++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nurbs++.spec =================================================================== RCS file: /cvs/pkgs/rpms/nurbs++/devel/nurbs++.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- nurbs++.spec 10 Jul 2009 14:51:44 -0000 1.1 +++ nurbs++.spec 25 Jul 2009 19:42:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: nurbs++ Version: 3.0.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Non Uniform Rational Basis Spline (NURBS) library for C++ Group: Development/Libraries @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_libdir}/libnurbsf.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 3.0.11-6 - ImageMagick is in ifdefs that are not activated - Fix more weak-link errors From jkeating at fedoraproject.org Sat Jul 25 19:42:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:42:37 +0000 (UTC) Subject: rpms/nut/devel nut.spec,1.76,1.77 Message-ID: <20090725194237.159F811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29636 Modified Files: nut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nut.spec =================================================================== RCS file: /cvs/pkgs/rpms/nut/devel/nut.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- nut.spec 3 Jun 2009 06:09:22 -0000 1.76 +++ nut.spec 25 Jul 2009 19:42:36 -0000 1.77 @@ -9,7 +9,7 @@ Summary: Network UPS Tools Name: nut Version: 2.4.1 -Release: 6%{?dist} +Release: 7%{?dist} Group: Applications/System License: GPLv2+ Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -343,6 +343,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/libupsclient.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Michal Hlavinka - 2.4.1-6 - fix coexistence with virtualbox (#488368) From jkeating at fedoraproject.org Sat Jul 25 19:43:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:43:03 +0000 (UTC) Subject: rpms/nuttcp/devel nuttcp.spec,1.9,1.10 Message-ID: <20090725194303.AB53C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nuttcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29928 Modified Files: nuttcp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nuttcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/nuttcp/devel/nuttcp.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- nuttcp.spec 26 Feb 2009 06:27:40 -0000 1.9 +++ nuttcp.spec 25 Jul 2009 19:43:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: nuttcp Version: 5.5.5 -Release: 2%{?dist} +Release: 3%{?dist} Source0: ftp://ftp.lcp.nrl.navy.mil/pub/nuttcp/%{name}-%{version}.tar.bz2 Patch1: %{name}-%{version}-makefile.patch URL: ftp://ftp.lcp.nrl.navy.mil/pub/nuttcp/ @@ -49,6 +49,9 @@ rm -fr $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/xinetd.d/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:43:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:43:20 +0000 (UTC) Subject: rpms/nvclock/devel nvclock.spec,1.6,1.7 Message-ID: <20090725194320.9DCA511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nvclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30206 Modified Files: nvclock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nvclock.spec =================================================================== RCS file: /cvs/pkgs/rpms/nvclock/devel/nvclock.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nvclock.spec 26 Feb 2009 06:28:38 -0000 1.6 +++ nvclock.spec 25 Jul 2009 19:43:20 -0000 1.7 @@ -1,7 +1,7 @@ %define beta_version b4 Name: nvclock Version: 0.8 -Release: 0.8.%{beta_version}%{?dist} +Release: 0.9.%{beta_version}%{?dist} Summary: Utility that allows users to overclock NVIDIA based video cards Group: Applications/System @@ -81,6 +81,9 @@ fi %{_datadir}/applications/fedora-nvclock.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-0.9.b4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-0.8.b4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:43:39 +0000 (UTC) Subject: rpms/nwsclient/devel nwsclient.spec,1.2,1.3 Message-ID: <20090725194339.119E111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nwsclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30449 Modified Files: nwsclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nwsclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/nwsclient/devel/nwsclient.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nwsclient.spec 26 Feb 2009 06:29:36 -0000 1.2 +++ nwsclient.spec 25 Jul 2009 19:43:38 -0000 1.3 @@ -3,7 +3,7 @@ Name: nwsclient Summary: NetWorkSpaces Client for Python Version: 1.6.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Tools Source0: http://downloads.sourceforge.net/nws-py/%{name}-%{version}.tar.gz @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:44:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:44:03 +0000 (UTC) Subject: rpms/nwsserver/devel nwsserver.spec,1.2,1.3 Message-ID: <20090725194403.2218711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nwsserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30782 Modified Files: nwsserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nwsserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/nwsserver/devel/nwsserver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nwsserver.spec 6 Mar 2009 20:28:28 -0000 1.2 +++ nwsserver.spec 25 Jul 2009 19:44:02 -0000 1.3 @@ -3,7 +3,7 @@ Name: nwsserver Summary: NetWorkSpaces Server for clustering of scripting languages Version: 1.5.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Tools Source0: http://downloads.sourceforge.net/nws-r/%{name}-%{version}.tar.gz @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-%{version}-py*.egg-info %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Tom "spot" Callaway 1.5.2-2 - fix description From jkeating at fedoraproject.org Sat Jul 25 19:44:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:44:27 +0000 (UTC) Subject: rpms/nx/devel nx.spec,1.31,1.32 Message-ID: <20090725194427.3CD6811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31106 Modified Files: nx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nx.spec =================================================================== RCS file: /cvs/pkgs/rpms/nx/devel/nx.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- nx.spec 7 Jun 2009 08:02:10 -0000 1.31 +++ nx.spec 25 Jul 2009 19:44:26 -0000 1.32 @@ -8,7 +8,7 @@ Summary: Proxy system for X11 Name: nx Version: 3.3.0 -Release: 35%{?dist} +Release: 36%{?dist} # MIT on the X11 bits License: GPLv2 and MIT Group: Applications/Internet @@ -171,6 +171,9 @@ rm -rf %{buildroot} %{_pkglibexecdir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3.0-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 6 2009 Axel Thimm - 3.3.0-35 - Update to latest maintenance sources. From jkeating at fedoraproject.org Sat Jul 25 19:44:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:44:46 +0000 (UTC) Subject: rpms/nxt_python/devel nxt_python.spec,1.3,1.4 Message-ID: <20090725194446.9E20711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nxt_python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31414 Modified Files: nxt_python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nxt_python.spec =================================================================== RCS file: /cvs/pkgs/rpms/nxt_python/devel/nxt_python.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- nxt_python.spec 26 Feb 2009 06:31:32 -0000 1.3 +++ nxt_python.spec 25 Jul 2009 19:44:46 -0000 1.4 @@ -3,7 +3,7 @@ Name: nxt_python Version: 0.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Nxt_python is a package for controlling a LEGO NXT robot using python Group: Applications/Engineering @@ -51,6 +51,9 @@ getent group lego >/dev/null || groupadd %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:45:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:45:07 +0000 (UTC) Subject: rpms/nxtvepg/devel nxtvepg.spec,1.2,1.3 Message-ID: <20090725194507.EDDBA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nxtvepg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31686 Modified Files: nxtvepg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nxtvepg.spec =================================================================== RCS file: /cvs/pkgs/rpms/nxtvepg/devel/nxtvepg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- nxtvepg.spec 26 Feb 2009 06:32:30 -0000 1.2 +++ nxtvepg.spec 25 Jul 2009 19:45:07 -0000 1.3 @@ -4,7 +4,7 @@ Name: nxtvepg Version: 2.8.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A nexTView EPG decoder and browser Group: Applications/Multimedia @@ -144,6 +144,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.8.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:45:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:45:37 +0000 (UTC) Subject: rpms/nyquist/devel nyquist.spec,1.10,1.11 Message-ID: <20090725194537.DA63811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nyquist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32065 Modified Files: nyquist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nyquist.spec =================================================================== RCS file: /cvs/pkgs/rpms/nyquist/devel/nyquist.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- nyquist.spec 26 Feb 2009 21:52:35 -0000 1.10 +++ nyquist.spec 25 Jul 2009 19:45:37 -0000 1.11 @@ -1,6 +1,6 @@ Name: nyquist Version: 3.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Sound synthesis and composition language with a Lisp syntax Group: Applications/Multimedia @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Gerard Milmeister - 3.02-1 - new release 3.02 From jkeating at fedoraproject.org Sat Jul 25 19:46:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:46:04 +0000 (UTC) Subject: rpms/o3read/devel o3read.spec,1.3,1.4 Message-ID: <20090725194604.68FDB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/o3read/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32424 Modified Files: o3read.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: o3read.spec =================================================================== RCS file: /cvs/pkgs/rpms/o3read/devel/o3read.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- o3read.spec 26 Feb 2009 06:34:22 -0000 1.3 +++ o3read.spec 25 Jul 2009 19:46:03 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Standalone converter for OpenOffice.org documents Name: o3read Version: 0.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Tools License: GPLv2+ URL: http://siag.nu/o3read/ From jkeating at fedoraproject.org Sat Jul 25 19:46:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:46:21 +0000 (UTC) Subject: rpms/obby/devel obby.spec,1.34,1.35 Message-ID: <20090725194621.4737D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32714 Modified Files: obby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obby.spec =================================================================== RCS file: /cvs/pkgs/rpms/obby/devel/obby.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- obby.spec 26 Feb 2009 06:35:15 -0000 1.34 +++ obby.spec 25 Jul 2009 19:46:21 -0000 1.35 @@ -1,6 +1,6 @@ Name: obby Version: 0.4.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library which provides synced document buffers Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:46:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:46:35 +0000 (UTC) Subject: rpms/obconf/devel obconf.spec,1.9,1.10 Message-ID: <20090725194635.15CD811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv445 Modified Files: obconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/obconf/devel/obconf.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- obconf.spec 26 Feb 2009 06:36:13 -0000 1.9 +++ obconf.spec 25 Jul 2009 19:46:34 -0000 1.10 @@ -1,6 +1,6 @@ Name: obconf Version: 2.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A graphical configuration editor for the Openbox window manager Group: User Interface/X @@ -68,6 +68,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:46:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:46:48 +0000 (UTC) Subject: rpms/obex-data-server/devel obex-data-server.spec,1.21,1.22 Message-ID: <20090725194648.8C51D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obex-data-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv597 Modified Files: obex-data-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obex-data-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/obex-data-server/devel/obex-data-server.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- obex-data-server.spec 26 Feb 2009 06:37:09 -0000 1.21 +++ obex-data-server.spec 25 Jul 2009 19:46:48 -0000 1.22 @@ -1,6 +1,6 @@ Name: obex-data-server Version: 0.4.3 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: D-Bus service for Obex access @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/obex-data-server.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:47:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:47:04 +0000 (UTC) Subject: rpms/obexd/devel obexd.spec,1.12,1.13 Message-ID: <20090725194704.9457611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obexd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv788 Modified Files: obexd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obexd.spec =================================================================== RCS file: /cvs/pkgs/rpms/obexd/devel/obexd.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- obexd.spec 16 Jul 2009 09:50:47 -0000 1.12 +++ obexd.spec 25 Jul 2009 19:47:04 -0000 1.13 @@ -1,6 +1,6 @@ Name: obexd Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: D-Bus service for Obex Client access Group: System Environment/Daemons @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/obex-client.service %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Bastien Nocera 0.15-1 - Update to 0.15 From jkeating at fedoraproject.org Sat Jul 25 19:47:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:47:20 +0000 (UTC) Subject: rpms/obexfs/devel obexfs.spec,1.6,1.7 Message-ID: <20090725194720.2BCA011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obexfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv969 Modified Files: obexfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obexfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/obexfs/devel/obexfs.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- obexfs.spec 28 Feb 2009 14:29:51 -0000 1.6 +++ obexfs.spec 25 Jul 2009 19:47:19 -0000 1.7 @@ -2,7 +2,7 @@ Name: obexfs Summary: FUSE based filesystem using ObexFTP Group: System Environment/Base Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://openobex.triq.net/ Source: http://triq.net/obexftp/%{name}-%{version}.tar.gz @@ -35,6 +35,9 @@ to mobile phones. %{_bindir}/obexfs %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Dominik Mierzejewski - 0.11-1 - updated to 0.11 release From mtasaka at fedoraproject.org Sat Jul 25 19:47:39 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sat, 25 Jul 2009 19:47:39 +0000 (UTC) Subject: rpms/ruby-gnome2/devel ruby-gnome2.spec,1.42,1.43 Message-ID: <20090725194739.32FC411C02BC@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/ruby-gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1181 Modified Files: ruby-gnome2.spec Log Message: * Sun Jul 26 2009 Mamoru Tasaka - 0.19.0-4 - F-12: Mass rebuild Index: ruby-gnome2.spec =================================================================== RCS file: /cvs/extras/rpms/ruby-gnome2/devel/ruby-gnome2.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- ruby-gnome2.spec 11 Jul 2009 14:29:49 -0000 1.42 +++ ruby-gnome2.spec 25 Jul 2009 19:47:38 -0000 1.43 @@ -4,7 +4,7 @@ %define xulrunner_still_beta 1 %define betaver rc1 -%define mainrel 3 +%define mainrel 4 # Note # Currently this spec file does not support libgda module. @@ -730,6 +730,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Mamoru Tasaka - 0.19.0-4 +- F-12: Mass rebuild + * Thu Jul 09 2009 Mamoru Tasaka - 0.19.0-3 - Make ruby-gtkglext require ruby(opengl) From jkeating at fedoraproject.org Sat Jul 25 19:47:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:47:45 +0000 (UTC) Subject: rpms/obexftp/devel obexftp.spec,1.20,1.21 Message-ID: <20090725194745.11B0911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obexftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1282 Modified Files: obexftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obexftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/obexftp/devel/obexftp.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- obexftp.spec 28 Feb 2009 14:23:46 -0000 1.20 +++ obexftp.spec 25 Jul 2009 19:47:44 -0000 1.21 @@ -6,7 +6,7 @@ Name: obexftp Summary: Tool to access devices via the OBEX protocol Group: Applications/File Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://openobex.triq.net/ Source: http://triq.net/obexftp/%{name}-%{version}.tar.bz2 @@ -159,6 +159,9 @@ chmod 755 %{buildroot}%{python_sitearch} %{ruby_sitearch}/obexftp.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Dominik Mierzejewski - 0.23-1 - updated to 0.23 release From jkeating at fedoraproject.org Sat Jul 25 19:48:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:48:08 +0000 (UTC) Subject: rpms/objectweb-anttask/devel objectweb-anttask.spec,1.5,1.6 Message-ID: <20090725194808.DE67311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/objectweb-anttask/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1655 Modified Files: objectweb-anttask.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: objectweb-anttask.spec =================================================================== RCS file: /cvs/pkgs/rpms/objectweb-anttask/devel/objectweb-anttask.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- objectweb-anttask.spec 26 Feb 2009 06:40:50 -0000 1.5 +++ objectweb-anttask.spec 25 Jul 2009 19:48:08 -0000 1.6 @@ -38,7 +38,7 @@ Summary: ObjectWeb Ant task Name: objectweb-anttask Version: 1.3.2 -Release: 2.4%{?dist} +Release: 3.4%{?dist} Epoch: 0 Group: Development/Java License: LGPLv2+ @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %dir %{_javadocdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:1.3.2-3.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.3.2-2.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:48:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:48:41 +0000 (UTC) Subject: rpms/objectweb-asm/devel objectweb-asm.spec,1.6,1.7 Message-ID: <20090725194841.8B5CF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/objectweb-asm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1936 Modified Files: objectweb-asm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: objectweb-asm.spec =================================================================== RCS file: /cvs/pkgs/rpms/objectweb-asm/devel/objectweb-asm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- objectweb-asm.spec 26 Feb 2009 06:41:44 -0000 1.6 +++ objectweb-asm.spec 25 Jul 2009 19:48:39 -0000 1.7 @@ -32,7 +32,7 @@ Name: objectweb-asm Version: 3.1 -Release: 6.1%{?dist} +Release: 7.1%{?dist} Epoch: 0 Summary: A code manipulation tool to implement adaptable systems License: BSD @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0:3.1-7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:3.1-6.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:48:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:48:57 +0000 (UTC) Subject: rpms/obmenu/devel obmenu.spec,1.8,1.9 Message-ID: <20090725194857.E0DE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/obmenu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2271 Modified Files: obmenu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: obmenu.spec =================================================================== RCS file: /cvs/pkgs/rpms/obmenu/devel/obmenu.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- obmenu.spec 26 Feb 2009 06:42:42 -0000 1.8 +++ obmenu.spec 25 Jul 2009 19:48:57 -0000 1.9 @@ -2,7 +2,7 @@ Name: obmenu Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A graphical menu editor for Openbox Group: User Interface/Desktops License: GPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 19:49:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:49:20 +0000 (UTC) Subject: rpms/ocaml/devel ocaml.spec,1.56,1.57 Message-ID: <20090725194920.3269111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2562 Modified Files: ocaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml/devel/ocaml.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- ocaml.spec 3 Jun 2009 18:20:32 -0000 1.56 +++ ocaml.spec 25 Jul 2009 19:49:19 -0000 1.57 @@ -2,7 +2,7 @@ Name: ocaml Version: 3.11.1 -Release: 0.rc1.2%{?dist} +Release: 0.rc1.2%{?dist}.1 Summary: Objective Caml compiler and programming environment @@ -434,6 +434,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.11.1-0.rc1.2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Richard W.M. Jones - 3.11.1-0.rc1.2 - Remember to upload the source this time. From jkeating at fedoraproject.org Sat Jul 25 19:49:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:49:45 +0000 (UTC) Subject: rpms/ocaml-SDL/devel ocaml-SDL.spec,1.17,1.18 Message-ID: <20090725194945.DCA9711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2822 Modified Files: ocaml-SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-SDL/devel/ocaml-SDL.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-SDL.spec 23 May 2009 07:37:44 -0000 1.17 +++ ocaml-SDL.spec 25 Jul 2009 19:49:45 -0000 1.18 @@ -3,7 +3,7 @@ Name: ocaml-SDL Version: 0.7.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: OCaml bindings for SDL Group: Development/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.7.2-19 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:50:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:50:01 +0000 (UTC) Subject: rpms/ocaml-ancient/devel ocaml-ancient.spec,1.1,1.2 Message-ID: <20090725195001.5D07411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ancient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3071 Modified Files: ocaml-ancient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ancient.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ancient/devel/ocaml-ancient.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ocaml-ancient.spec 4 Jun 2009 17:43:03 -0000 1.1 +++ ocaml-ancient.spec 25 Jul 2009 19:50:00 -0000 1.2 @@ -5,7 +5,7 @@ Name: ocaml-ancient Version: 0.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for large memory structures and sharing Group: Development/Libraries @@ -113,5 +113,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Richard W.M. Jones - 0.9.0-1 - Initial RPM release. From jkeating at fedoraproject.org Sat Jul 25 19:50:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:50:26 +0000 (UTC) Subject: rpms/ocaml-augeas/devel ocaml-augeas.spec,1.6,1.7 Message-ID: <20090725195026.7153E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3296 Modified Files: ocaml-augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-augeas/devel/ocaml-augeas.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-augeas.spec 23 May 2009 08:57:01 -0000 1.6 +++ ocaml-augeas.spec 25 Jul 2009 19:50:26 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocaml-augeas Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml bindings for Augeas configuration API Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.4-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:50:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:50:49 +0000 (UTC) Subject: rpms/ocaml-autoconf/devel ocaml-autoconf.spec,1.5,1.6 Message-ID: <20090725195049.D6CF011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-autoconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3593 Modified Files: ocaml-autoconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-autoconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-autoconf/devel/ocaml-autoconf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ocaml-autoconf.spec 23 May 2009 06:41:18 -0000 1.5 +++ ocaml-autoconf.spec 25 Jul 2009 19:50:49 -0000 1.6 @@ -1,6 +1,6 @@ Name: ocaml-autoconf Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Autoconf macros for OCaml Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Richard W.M. Jones - 1.0-4 - Upstream has released version 1.0 and it is properly licensed. From jkeating at fedoraproject.org Sat Jul 25 19:51:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:51:06 +0000 (UTC) Subject: rpms/ocaml-bisect/devel ocaml-bisect.spec,1.6,1.7 Message-ID: <20090725195106.E88B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-bisect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3881 Modified Files: ocaml-bisect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-bisect.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-bisect/devel/ocaml-bisect.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-bisect.spec 23 May 2009 08:53:49 -0000 1.6 +++ ocaml-bisect.spec 25 Jul 2009 19:51:06 -0000 1.7 @@ -6,7 +6,7 @@ Name: ocaml-bisect Version: %{mainversion} -Release: 0.5.%{subversion}%{?dist} +Release: 0.6.%{subversion}%{?dist} Summary: OCaml code coverage tool Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.6.alpha +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0-0.5.alpha - Rebuild for OCaml 3.11.1 From chkr at fedoraproject.org Sat Jul 25 19:51:25 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 25 Jul 2009 19:51:25 +0000 (UTC) Subject: rpms/f-spot/F-10 gvfs-gphoto.patch,NONE,1.1 f-spot.spec,1.81,1.82 Message-ID: <20090725195125.8BFFA11C02BC@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/f-spot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3820 Modified Files: f-spot.spec Added Files: gvfs-gphoto.patch Log Message: Ported the following fixes from F-11: - Avoid showing f-spot twice for photo imports - Make f-spot-import work with gvfs (BZ #485037) gvfs-gphoto.patch: f-spot-import | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) --- NEW FILE gvfs-gphoto.patch --- diff -up f-spot-0.5.0.3/tools/f-spot-import.gvfs f-spot-0.5.0.3/tools/f-spot-import --- f-spot-0.5.0.3/tools/f-spot-import.gvfs 2009-04-18 21:56:21.248974676 -0400 +++ f-spot-0.5.0.3/tools/f-spot-import 2009-04-18 21:56:30.800987772 -0400 @@ -1,20 +1,20 @@ #!/bin/bash -udi="$1" -#xmessage $udi -mount_point=`hal-get-property --udi="$udi" --key=volume.mount_point` -if [ -n "$mount_point" ]; then - # USB Mass Storage camera: need to pass f-spot a mount point +URI=`gvfs-ls -c "$1/"` - f-spot --import "$mount_point" -else - # Some other camera try GPhoto2 +if [ "${URI:0:10}" = "gphoto2://" ] ; then + # Yield for f-spot since it wants to access the device directly + # + gvfs-mount --unmount-scheme gphoto2 - bus=`hal-get-property --udi="$udi" --key=usb.bus_number` - dev=`hal-get-property --udi="$udi" --key=usb.linux.device_number` - uri=`printf gphoto2:usb:%.3d,%.3d $bus $dev` + if [ "${URI:11:4}" = "usb:" ] ; then + # Rewrite the uri to something f-spot can handle + # + bus="${URI:15:3}" + dev="${URI:19:3}" - echo $uri - - f-spot --import "$uri" + URI="gphoto2:usb:$bus,$dev" + fi fi + +f-spot --import "$URI" Index: f-spot.spec =================================================================== RCS file: /cvs/pkgs/rpms/f-spot/F-10/f-spot.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- f-spot.spec 4 Jan 2009 17:20:14 -0000 1.81 +++ f-spot.spec 25 Jul 2009 19:51:25 -0000 1.82 @@ -1,18 +1,18 @@ Name: f-spot Version: 0.5.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Photo management application Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ and CPL and MIT URL: http://f-spot.org/ Source0: http://download.gnome.org/sources/f-spot/0.5/f-spot-%{version}.tar.bz2 -# http://bugzilla.gnome.org/show_bug.cgi?id=510325 -Patch0: x-content.patch # I'm told this is fixed in SVN Patch1: f-spot-0.4.4-gtk-deprecated.patch # fix a missing icon Patch2: missing-icon.patch +# unmount cameras before importing +Patch3: gvfs-gphoto.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel mono-web mono-data mono-data-sqlite lcms-devel @@ -53,9 +53,9 @@ sorting and tagging of digital images. # preserve timestamps touch -r configure.in configure.in.stamp -%patch0 -p1 -b .x-content %patch1 -p1 -b .gtk-deprecated %patch2 -p1 -b .missing-icon +%patch3 -p1 -b .gvfs-gphoto # restore timestamps touch -r configure.in.stamp configure.in @@ -123,6 +123,10 @@ fi %{_libdir}/gio-sharp-unstable %changelog +* Sat Jul 25 2009 Christian Krause - 0.5.0.3-4 +- Avoid showing f-spot twice for photo imports +- Make f-spot-import work with gvfs (BZ #485037) + * Sun Jan 04 2009 Devan Goodwin 0.5.0.3-3 - Merge in changes from devel spec file. From jkeating at fedoraproject.org Sat Jul 25 19:51:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:51:27 +0000 (UTC) Subject: rpms/ocaml-bitstring/devel ocaml-bitstring.spec,1.12,1.13 Message-ID: <20090725195127.E8E8411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-bitstring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4126 Modified Files: ocaml-bitstring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-bitstring.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-bitstring/devel/ocaml-bitstring.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-bitstring.spec 23 May 2009 08:52:19 -0000 1.12 +++ ocaml-bitstring.spec 25 Jul 2009 19:51:27 -0000 1.13 @@ -6,7 +6,7 @@ Name: ocaml-bitstring Version: 2.0.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for matching and constructing bitstrings Group: Development/Libraries @@ -185,6 +185,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.0.0-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:51:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:51:49 +0000 (UTC) Subject: rpms/ocaml-cairo/devel ocaml-cairo.spec,1.11,1.12 Message-ID: <20090725195149.83DD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4422 Modified Files: ocaml-cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cairo/devel/ocaml-cairo.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-cairo.spec 23 May 2009 09:05:28 -0000 1.11 +++ ocaml-cairo.spec 25 Jul 2009 19:51:49 -0000 1.12 @@ -13,7 +13,7 @@ Name: ocaml-cairo Version: 1.2.0.cvs20080301 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for accessing cairo graphics Group: Development/Libraries @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.0.cvs20080301-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.2.0.cvs20080301-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:52:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:04 +0000 (UTC) Subject: rpms/ocaml-calendar/devel ocaml-calendar.spec,1.14,1.15 Message-ID: <20090725195204.E883A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-calendar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4661 Modified Files: ocaml-calendar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-calendar.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-calendar/devel/ocaml-calendar.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-calendar.spec 23 May 2009 09:10:27 -0000 1.14 +++ ocaml-calendar.spec 25 Jul 2009 19:52:04 -0000 1.15 @@ -3,7 +3,7 @@ Name: ocaml-calendar Version: 2.0.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Objective Caml library for managing dates and times Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.0.4-6 - Calendar has a new upstream URL. From jkeating at fedoraproject.org Sat Jul 25 19:52:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:19 +0000 (UTC) Subject: rpms/ocaml-camlidl/devel ocaml-camlidl.spec,1.8,1.9 Message-ID: <20090725195219.D5CBC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlidl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4823 Modified Files: ocaml-camlidl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlidl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlidl/devel/ocaml-camlidl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-camlidl.spec 23 May 2009 07:31:35 -0000 1.8 +++ ocaml-camlidl.spec 25 Jul 2009 19:52:19 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-camlidl Version: 1.05 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Stub code generator and COM binding for Objective Caml Group: Development/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.05-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:52:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:36 +0000 (UTC) Subject: rpms/ocaml-camlimages/devel ocaml-camlimages.spec,1.18,1.19 Message-ID: <20090725195236.4101B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlimages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5009 Modified Files: ocaml-camlimages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlimages.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlimages/devel/ocaml-camlimages.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ocaml-camlimages.spec 3 Jul 2009 18:30:06 -0000 1.18 +++ ocaml-camlimages.spec 25 Jul 2009 19:52:35 -0000 1.19 @@ -4,7 +4,7 @@ Name: ocaml-camlimages Version: 3.0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: OCaml image processing library Group: Development/Libraries @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Richard W.M. Jones - 3.0.1-10 - ocaml-camlimages: PNG reader multiple integer overflows (CVE 2009-2295 / RHBZ#509531). From jkeating at fedoraproject.org Sat Jul 25 19:52:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:52:51 +0000 (UTC) Subject: rpms/ocaml-camlp5/devel ocaml-camlp5.spec,1.10,1.11 Message-ID: <20090725195251.7011711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camlp5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5199 Modified Files: ocaml-camlp5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camlp5.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camlp5/devel/ocaml-camlp5.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-camlp5.spec 23 May 2009 11:44:56 -0000 1.10 +++ ocaml-camlp5.spec 25 Jul 2009 19:52:51 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-camlp5 Version: 5.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Classical version of camlp4 OCaml preprocessor Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 5.12-1 - New upstream version 5.12, excepted to fix 3.11.1 build problems. From jkeating at fedoraproject.org Sat Jul 25 19:53:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:06 +0000 (UTC) Subject: rpms/ocaml-camomile/devel ocaml-camomile.spec,1.8,1.9 Message-ID: <20090725195306.729A211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-camomile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5383 Modified Files: ocaml-camomile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-camomile.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-camomile/devel/ocaml-camomile.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-camomile.spec 23 May 2009 08:47:26 -0000 1.8 +++ ocaml-camomile.spec 25 Jul 2009 19:53:06 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-camomile Version: 0.7.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Unicode library for OCaml Group: Development/Libraries @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.7.1-11 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:53:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:25 +0000 (UTC) Subject: rpms/ocaml-cil/devel ocaml-cil.spec,1.10,1.11 Message-ID: <20090725195325.86C5511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5606 Modified Files: ocaml-cil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cil.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cil/devel/ocaml-cil.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-cil.spec 26 May 2009 14:50:04 -0000 1.10 +++ ocaml-cil.spec 25 Jul 2009 19:53:25 -0000 1.11 @@ -6,7 +6,7 @@ Name: ocaml-cil Version: 1.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CIL - Infrastructure for C Program Analysis and Transformation Group: Development/Libraries @@ -195,6 +195,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Richard W.M. Jones - 1.3.7-1 - New upstream version 1.3.7. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:53:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:53:53 +0000 (UTC) Subject: rpms/ocaml-cmigrep/devel ocaml-cmigrep.spec,1.12,1.13 Message-ID: <20090725195353.A2F8711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cmigrep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5924 Modified Files: ocaml-cmigrep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cmigrep.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cmigrep/devel/ocaml-cmigrep.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-cmigrep.spec 23 May 2009 11:24:22 -0000 1.12 +++ ocaml-cmigrep.spec 25 Jul 2009 19:53:53 -0000 1.13 @@ -8,7 +8,7 @@ Name: ocaml-cmigrep Version: 1.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Search OCaml compiled interface (cmi) files Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5-12 - Rebuild for OCaml 3.11.1+rc0. From jkeating at fedoraproject.org Sat Jul 25 19:54:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:54:10 +0000 (UTC) Subject: rpms/ocaml-cryptokit/devel ocaml-cryptokit.spec,1.9,1.10 Message-ID: <20090725195410.6621B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-cryptokit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6138 Modified Files: ocaml-cryptokit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-cryptokit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-cryptokit/devel/ocaml-cryptokit.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-cryptokit.spec 22 May 2009 21:52:46 -0000 1.9 +++ ocaml-cryptokit.spec 25 Jul 2009 19:54:10 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-cryptokit Version: 1.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library of cryptographic and hash functions Group: Development/Libraries @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 1.3-9 - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:54:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:54:28 +0000 (UTC) Subject: rpms/ocaml-csv/devel ocaml-csv.spec,1.12,1.13 Message-ID: <20090725195428.DD24211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-csv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6332 Modified Files: ocaml-csv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-csv.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-csv/devel/ocaml-csv.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-csv.spec 23 May 2009 11:21:19 -0000 1.12 +++ ocaml-csv.spec 25 Jul 2009 19:54:28 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-csv Version: 1.1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml library for reading and writing CSV files Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1.7-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:54:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:54:46 +0000 (UTC) Subject: rpms/ocaml-curl/devel ocaml-curl.spec,1.13,1.14 Message-ID: <20090725195446.851EB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6659 Modified Files: ocaml-curl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-curl/devel/ocaml-curl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-curl.spec 23 May 2009 08:46:41 -0000 1.13 +++ ocaml-curl.spec 25 Jul 2009 19:54:46 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-curl Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml Curl library (ocurl) Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.5.1-1 - New upstream version 0.5.1. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:55:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:04 +0000 (UTC) Subject: rpms/ocaml-curses/devel ocaml-curses.spec,1.12,1.13 Message-ID: <20090725195504.3C21B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-curses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7271 Modified Files: ocaml-curses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-curses.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-curses/devel/ocaml-curses.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-curses.spec 23 May 2009 08:43:32 -0000 1.12 +++ ocaml-curses.spec 25 Jul 2009 19:55:04 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-curses Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml bindings for ncurses Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.3-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:55:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:20 +0000 (UTC) Subject: rpms/ocaml-dbus/devel ocaml-dbus.spec,1.12,1.13 Message-ID: <20090725195520.ADFE811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-dbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7713 Modified Files: ocaml-dbus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-dbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-dbus/devel/ocaml-dbus.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-dbus.spec 23 May 2009 08:41:57 -0000 1.12 +++ ocaml-dbus.spec 25 Jul 2009 19:55:20 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-dbus Version: 0.07 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml library for using D-Bus Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.07-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:55:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:41 +0000 (UTC) Subject: rpms/ocaml-deriving/devel ocaml-deriving.spec,1.7,1.8 Message-ID: <20090725195541.7E1A911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-deriving/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7923 Modified Files: ocaml-deriving.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-deriving.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-deriving/devel/ocaml-deriving.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-deriving.spec 23 May 2009 08:39:12 -0000 1.7 +++ ocaml-deriving.spec 25 Jul 2009 19:55:41 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-deriving Version: 0.1.1a -Release: 8%{?dist} +Release: 9%{?dist} Summary: Extension to OCaml for deriving functions from types Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1a-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1.1a-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:55:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:55:59 +0000 (UTC) Subject: rpms/ocaml-expat/devel ocaml-expat.spec,1.14,1.15 Message-ID: <20090725195559.7EC0D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-expat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8148 Modified Files: ocaml-expat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-expat.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-expat/devel/ocaml-expat.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-expat.spec 23 May 2009 08:37:43 -0000 1.14 +++ ocaml-expat.spec 25 Jul 2009 19:55:59 -0000 1.15 @@ -3,7 +3,7 @@ Name: ocaml-expat Version: 0.9.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: OCaml wrapper for the Expat XML parsing library Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.1-16 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:14 +0000 (UTC) Subject: rpms/ocaml-extlib/devel ocaml-extlib.spec,1.11,1.12 Message-ID: <20090725195614.4E94211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-extlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8338 Modified Files: ocaml-extlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-extlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-extlib/devel/ocaml-extlib.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-extlib.spec 23 May 2009 08:36:27 -0000 1.11 +++ ocaml-extlib.spec 25 Jul 2009 19:56:14 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-extlib Version: 1.5.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml ExtLib additions to the standard library Group: Development/Libraries @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ocaml/extlib/*.ml %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5.1-7 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:28 +0000 (UTC) Subject: rpms/ocaml-facile/devel ocaml-facile.spec,1.10,1.11 Message-ID: <20090725195628.1C1D411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-facile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8509 Modified Files: ocaml-facile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-facile.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-facile/devel/ocaml-facile.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-facile.spec 22 May 2009 23:43:58 -0000 1.10 +++ ocaml-facile.spec 25 Jul 2009 19:56:27 -0000 1.11 @@ -9,7 +9,7 @@ ExcludeArch: ppc64 Name: ocaml-facile Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for constraint programming Summary(fr): Librairie OCaml de programmation par contraintes @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ocaml/facile/*.mli %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Kevin Kofler - 1.1-9 - Rebuild for new OCaml (3.11.1 rc0) From jkeating at fedoraproject.org Sat Jul 25 19:56:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:44 +0000 (UTC) Subject: rpms/ocaml-fileutils/devel ocaml-fileutils.spec,1.8,1.9 Message-ID: <20090725195644.F26F911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-fileutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8698 Modified Files: ocaml-fileutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-fileutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-fileutils/devel/ocaml-fileutils.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-fileutils.spec 23 May 2009 08:35:39 -0000 1.8 +++ ocaml-fileutils.spec 25 Jul 2009 19:56:44 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-fileutils Version: 0.3.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: OCaml library for common file and filename operations Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.3.0-10 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:56:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:56:58 +0000 (UTC) Subject: rpms/ocaml-findlib/devel ocaml-findlib.spec,1.22,1.23 Message-ID: <20090725195658.D4B4A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-findlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8870 Modified Files: ocaml-findlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-findlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-findlib/devel/ocaml-findlib.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ocaml-findlib.spec 22 May 2009 21:38:33 -0000 1.22 +++ ocaml-findlib.spec 25 Jul 2009 19:56:58 -0000 1.23 @@ -3,7 +3,7 @@ Name: ocaml-findlib Version: 1.2.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Objective CAML package manager and build helper Group: Development/Libraries @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 1.2.4-3 - Rebuild for OCaml 3.11.1. - New upstream version 1.2.4. From jkeating at fedoraproject.org Sat Jul 25 19:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:17 +0000 (UTC) Subject: rpms/ocaml-gettext/devel ocaml-gettext.spec,1.11,1.12 Message-ID: <20090725195717.C2D5611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9050 Modified Files: ocaml-gettext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-gettext/devel/ocaml-gettext.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-gettext.spec 23 May 2009 11:21:21 -0000 1.11 +++ ocaml-gettext.spec 25 Jul 2009 19:57:17 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-gettext Version: 0.3.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml library for i18n Group: Development/Libraries @@ -221,6 +221,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.3.2-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:30 +0000 (UTC) Subject: rpms/ocaml-gsl/devel ocaml-gsl.spec,1.7,1.8 Message-ID: <20090725195730.A877E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-gsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9207 Modified Files: ocaml-gsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-gsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-gsl/devel/ocaml-gsl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-gsl.spec 23 May 2009 08:29:45 -0000 1.7 +++ ocaml-gsl.spec 25 Jul 2009 19:57:30 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-gsl Version: 0.6.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Interface to GSL (GNU scientific library) for OCaml Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.6.0-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:44 +0000 (UTC) Subject: rpms/ocaml-json-static/devel ocaml-json-static.spec,1.7,1.8 Message-ID: <20090725195744.9E21511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-json-static/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9365 Modified Files: ocaml-json-static.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-json-static.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-json-static/devel/ocaml-json-static.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-json-static.spec 23 May 2009 08:28:23 -0000 1.7 +++ ocaml-json-static.spec 25 Jul 2009 19:57:44 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-json-static Version: 0.9.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml JSON validator and converter (syntax extension) Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.6-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:57:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:57:58 +0000 (UTC) Subject: rpms/ocaml-json-wheel/devel ocaml-json-wheel.spec,1.7,1.8 Message-ID: <20090725195758.5860611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-json-wheel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9529 Modified Files: ocaml-json-wheel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-json-wheel.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-json-wheel/devel/ocaml-json-wheel.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-json-wheel.spec 23 May 2009 11:30:13 -0000 1.7 +++ ocaml-json-wheel.spec 25 Jul 2009 19:57:58 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-json-wheel Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for parsing JSON Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.6-1 - New upstream version 1.0.6. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 19:58:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:14 +0000 (UTC) Subject: rpms/ocaml-lablgl/devel ocaml-lablgl.spec,1.15,1.16 Message-ID: <20090725195814.5348111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lablgl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9703 Modified Files: ocaml-lablgl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lablgl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgl/devel/ocaml-lablgl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-lablgl.spec 22 May 2009 21:49:08 -0000 1.15 +++ ocaml-lablgl.spec 25 Jul 2009 19:58:13 -0000 1.16 @@ -2,7 +2,7 @@ Name: ocaml-lablgl Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: LablGL is an OpenGL interface for Objective Caml @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Richard W.M. Jones - 1.04-1 - Rebuild for OCaml 3.11.1. - New upstream version 1.04. From jkeating at fedoraproject.org Sat Jul 25 19:58:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:31 +0000 (UTC) Subject: rpms/ocaml-lablgtk/devel ocaml-lablgtk.spec,1.17,1.18 Message-ID: <20090725195831.A801711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lablgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9921 Modified Files: ocaml-lablgtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lablgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgtk/devel/ocaml-lablgtk.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ocaml-lablgtk.spec 23 May 2009 07:31:30 -0000 1.17 +++ ocaml-lablgtk.spec 25 Jul 2009 19:58:30 -0000 1.18 @@ -2,7 +2,7 @@ Name: ocaml-lablgtk Version: 2.12.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Objective Caml interface to gtk+ @@ -156,6 +156,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.12.0-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:58:50 +0000 (UTC) Subject: rpms/ocaml-lacaml/devel ocaml-lacaml.spec,1.11,1.12 Message-ID: <20090725195850.3ED8611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lacaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10162 Modified Files: ocaml-lacaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lacaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lacaml/devel/ocaml-lacaml.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ocaml-lacaml.spec 23 May 2009 08:29:34 -0000 1.11 +++ ocaml-lacaml.spec 25 Jul 2009 19:58:50 -0000 1.12 @@ -3,7 +3,7 @@ Name: ocaml-lacaml Version: 5.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: BLAS/LAPACK-interface for OCaml Group: Development/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 5.1.0-1 - Rebuild for OCaml 3.11.1. - New upstream release 5.1.0. From jkeating at fedoraproject.org Sat Jul 25 19:59:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:06 +0000 (UTC) Subject: rpms/ocaml-libvirt/devel ocaml-libvirt.spec,1.32,1.33 Message-ID: <20090725195906.1832111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10379 Modified Files: ocaml-libvirt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-libvirt/devel/ocaml-libvirt.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- ocaml-libvirt.spec 15 Jul 2009 08:19:03 -0000 1.32 +++ ocaml-libvirt.spec 25 Jul 2009 19:59:05 -0000 1.33 @@ -6,7 +6,7 @@ Name: ocaml-libvirt Version: 0.6.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml binding for libvirt Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Richard W.M. Jones - 0.6.1.0-5 - Force rebuild to test FTBFS issue. From jkeating at fedoraproject.org Sat Jul 25 19:59:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:21 +0000 (UTC) Subject: rpms/ocaml-lwt/devel ocaml-lwt.spec,1.6,1.7 Message-ID: <20090725195921.17D5211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-lwt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10599 Modified Files: ocaml-lwt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-lwt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lwt/devel/ocaml-lwt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocaml-lwt.spec 23 May 2009 11:07:22 -0000 1.6 +++ ocaml-lwt.spec 25 Jul 2009 19:59:20 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocaml-lwt Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml lightweight thread library Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1.0-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:59:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:36 +0000 (UTC) Subject: rpms/ocaml-mikmatch/devel ocaml-mikmatch.spec,1.7,1.8 Message-ID: <20090725195936.32A7F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-mikmatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10815 Modified Files: ocaml-mikmatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-mikmatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-mikmatch/devel/ocaml-mikmatch.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-mikmatch.spec 23 May 2009 11:07:25 -0000 1.7 +++ ocaml-mikmatch.spec 25 Jul 2009 19:59:36 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-mikmatch Version: 1.0.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OCaml extension for pattern matching with regexps Group: Development/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.0-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 19:59:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 19:59:52 +0000 (UTC) Subject: rpms/ocaml-mlgmpidl/devel ocaml-mlgmpidl.spec,1.4,1.5 Message-ID: <20090725195952.DBA2411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-mlgmpidl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11024 Modified Files: ocaml-mlgmpidl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-mlgmpidl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-mlgmpidl/devel/ocaml-mlgmpidl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ocaml-mlgmpidl.spec 23 May 2009 09:01:00 -0000 1.4 +++ ocaml-mlgmpidl.spec 25 Jul 2009 19:59:52 -0000 1.5 @@ -11,7 +11,7 @@ Name: ocaml-mlgmpidl Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml interface to GMP and MPFR libraries Group: Development/Libraries License: LGPLv2 @@ -142,6 +142,9 @@ rm -rf %{buildroot} %{_docdir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:00:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:00:13 +0000 (UTC) Subject: rpms/ocaml-mysql/devel ocaml-mysql.spec,1.9,1.10 Message-ID: <20090725200013.F20D611C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11280 Modified Files: ocaml-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-mysql/devel/ocaml-mysql.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-mysql.spec 23 May 2009 08:20:41 -0000 1.9 +++ ocaml-mysql.spec 25 Jul 2009 20:00:13 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-mysql Version: 1.0.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for accessing MySQL databases Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.4-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:00:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:00:33 +0000 (UTC) Subject: rpms/ocaml-newt/devel ocaml-newt.spec,1.7,1.8 Message-ID: <20090725200033.21D1F11C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-newt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11502 Modified Files: ocaml-newt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-newt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-newt/devel/ocaml-newt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-newt.spec 23 May 2009 08:58:06 -0000 1.7 +++ ocaml-newt.spec 25 Jul 2009 20:00:32 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-newt Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OCaml library for using newt text mode window system Group: Development/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:00:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:00:49 +0000 (UTC) Subject: rpms/ocaml-ocamlgraph/devel ocaml-ocamlgraph.spec,1.7,1.8 Message-ID: <20090725200049.1105811C0380@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ocamlgraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11658 Modified Files: ocaml-ocamlgraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ocamlgraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ocamlgraph/devel/ocaml-ocamlgraph.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-ocamlgraph.spec 23 May 2009 09:02:55 -0000 1.7 +++ ocaml-ocamlgraph.spec 25 Jul 2009 20:00:48 -0000 1.8 @@ -19,7 +19,7 @@ Name: ocaml-ocamlgraph Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml library for arc and node graphs Group: Development/Libraries @@ -131,6 +131,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:05 +0000 (UTC) Subject: rpms/ocaml-ocamlnet/devel ocaml-ocamlnet.spec,1.14,1.15 Message-ID: <20090725200105.0516E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ocamlnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11837 Modified Files: ocaml-ocamlnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ocamlnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ocamlnet/devel/ocaml-ocamlnet.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ocaml-ocamlnet.spec 23 May 2009 11:07:23 -0000 1.14 +++ ocaml-ocamlnet.spec 25 Jul 2009 20:01:04 -0000 1.15 @@ -6,7 +6,7 @@ Name: ocaml-ocamlnet Version: 2.2.9 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Network protocols for OCaml Group: Development/Libraries @@ -243,6 +243,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.9-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.2.9-13 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:24 +0000 (UTC) Subject: rpms/ocaml-omake/devel ocaml-omake.spec,1.8,1.9 Message-ID: <20090725200124.5B01211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-omake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12049 Modified Files: ocaml-omake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-omake.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-omake/devel/ocaml-omake.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-omake.spec 23 May 2009 08:19:54 -0000 1.8 +++ ocaml-omake.spec 25 Jul 2009 20:01:23 -0000 1.9 @@ -2,7 +2,7 @@ Name: ocaml-omake Version: 0.9.8.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml build system with automated dependency analysis Group: Development/Tools @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.8.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.8.5-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:40 +0000 (UTC) Subject: rpms/ocaml-openin/devel ocaml-openin.spec,1.8,1.9 Message-ID: <20090725200140.0B2B911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-openin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12248 Modified Files: ocaml-openin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-openin.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-openin/devel/ocaml-openin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-openin.spec 23 May 2009 08:18:55 -0000 1.8 +++ ocaml-openin.spec 25 Jul 2009 20:01:39 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-openin Version: 20070524 -Release: 8%{?dist} +Release: 9%{?dist} Summary: OCaml syntax to locally open modules Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20070524-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 20070524-8 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:01:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:01:56 +0000 (UTC) Subject: rpms/ocaml-ounit/devel ocaml-ounit.spec,1.7,1.8 Message-ID: <20090725200156.6AC1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ounit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12435 Modified Files: ocaml-ounit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ounit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ounit/devel/ocaml-ounit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ocaml-ounit.spec 23 May 2009 08:18:06 -0000 1.7 +++ ocaml-ounit.spec 25 Jul 2009 20:01:56 -0000 1.8 @@ -3,7 +3,7 @@ Name: ocaml-ounit Version: 1.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Unit test framework for OCaml Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.0.3-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:02:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:11 +0000 (UTC) Subject: rpms/ocaml-p3l/devel ocaml-p3l.spec,1.3,1.4 Message-ID: <20090725200211.634E311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-p3l/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12613 Modified Files: ocaml-p3l.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-p3l.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-p3l/devel/ocaml-p3l.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocaml-p3l.spec 23 May 2009 07:23:17 -0000 1.3 +++ ocaml-p3l.spec 25 Jul 2009 20:02:10 -0000 1.4 @@ -3,7 +3,7 @@ Name: ocaml-p3l Version: 2.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OCaml compiler for parallel programs Group: Development/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.03-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:02:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:24 +0000 (UTC) Subject: rpms/ocaml-pa-do/devel ocaml-pa-do.spec,1.10,1.11 Message-ID: <20090725200224.D39CF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pa-do/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12758 Modified Files: ocaml-pa-do.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pa-do.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-do/devel/ocaml-pa-do.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-pa-do.spec 15 Jul 2009 08:58:02 -0000 1.10 +++ ocaml-pa-do.spec 25 Jul 2009 20:02:24 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-pa-do Version: 0.8.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OCaml syntax extension for delimited overloading Group: Development/Libraries @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Richard W.M. Jones - 0.8.9-5 - Force rebuild to test FTBFS issue (RHBZ#511603). - Add ocaml-pa-do-0.8.9-pdfpagelabels-off.patch. From jkeating at fedoraproject.org Sat Jul 25 20:02:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:39 +0000 (UTC) Subject: rpms/ocaml-pa-monad/devel ocaml-pa-monad.spec,1.8,1.9 Message-ID: <20090725200239.014A011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pa-monad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12909 Modified Files: ocaml-pa-monad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pa-monad.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pa-monad/devel/ocaml-pa-monad.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-pa-monad.spec 23 May 2009 08:11:50 -0000 1.8 +++ ocaml-pa-monad.spec 25 Jul 2009 20:02:38 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-pa-monad Version: 6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml syntax extension for monads Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 6.0-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:02:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:02:53 +0000 (UTC) Subject: rpms/ocaml-pcre/devel ocaml-pcre.spec,1.15,1.16 Message-ID: <20090725200253.065B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pcre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13071 Modified Files: ocaml-pcre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pcre.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pcre/devel/ocaml-pcre.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-pcre.spec 23 May 2009 08:11:09 -0000 1.15 +++ ocaml-pcre.spec 25 Jul 2009 20:02:52 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-pcre Version: 6.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl compatibility regular expressions (PCRE) for OCaml Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Sat Jul 25 20:03:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:08 +0000 (UTC) Subject: rpms/ocaml-perl4caml/devel ocaml-perl4caml.spec,1.10,1.11 Message-ID: <20090725200308.251BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-perl4caml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13235 Modified Files: ocaml-perl4caml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-perl4caml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-perl4caml/devel/ocaml-perl4caml.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-perl4caml.spec 23 May 2009 07:23:21 -0000 1.10 +++ ocaml-perl4caml.spec 25 Jul 2009 20:03:07 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-perl4caml Version: 0.9.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for calling Perl libraries and code Group: Development/Libraries @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.9.5-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:21 +0000 (UTC) Subject: rpms/ocaml-pgocaml/devel ocaml-pgocaml.spec,1.9,1.10 Message-ID: <20090725200321.E441A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pgocaml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13378 Modified Files: ocaml-pgocaml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pgocaml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pgocaml/devel/ocaml-pgocaml.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-pgocaml.spec 23 May 2009 13:59:03 -0000 1.9 +++ ocaml-pgocaml.spec 25 Jul 2009 20:03:21 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-pgocaml Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: OCaml library for type-safe access to PostgreSQL databases Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1-9 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:03:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:37 +0000 (UTC) Subject: rpms/ocaml-postgresql/devel ocaml-postgresql.spec,1.15,1.16 Message-ID: <20090725200337.8929911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-postgresql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13533 Modified Files: ocaml-postgresql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-postgresql.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-postgresql/devel/ocaml-postgresql.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-postgresql.spec 23 May 2009 08:12:43 -0000 1.15 +++ ocaml-postgresql.spec 25 Jul 2009 20:03:37 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-postgresql Version: 1.11.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for accessing PostgreSQL databases Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.11.1-2 - Rebuild for OCaml 3.11.1 - New upstream version 1.11.1. From jkeating at fedoraproject.org Sat Jul 25 20:03:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:03:51 +0000 (UTC) Subject: rpms/ocaml-preludeml/devel ocaml-preludeml.spec,1.4,1.5 Message-ID: <20090725200351.B3C3C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-preludeml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13686 Modified Files: ocaml-preludeml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-preludeml.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-preludeml/devel/ocaml-preludeml.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ocaml-preludeml.spec 23 May 2009 11:31:22 -0000 1.4 +++ ocaml-preludeml.spec 25 Jul 2009 20:03:51 -0000 1.5 @@ -8,7 +8,7 @@ Name: ocaml-preludeml Version: 0.1 -Release: 0.12.%{gitdate}%{?dist} +Release: 0.13.%{gitdate}%{?dist} Summary: OCaml utility functions Group: Development/Libraries @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-0.13.20090113 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1-0.12.20090113 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:04:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:06 +0000 (UTC) Subject: rpms/ocaml-pxp/devel ocaml-pxp.spec,1.10,1.11 Message-ID: <20090725200406.8725011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-pxp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13844 Modified Files: ocaml-pxp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-pxp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-pxp/devel/ocaml-pxp.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-pxp.spec 23 May 2009 11:33:44 -0000 1.10 +++ ocaml-pxp.spec 25 Jul 2009 20:04:06 -0000 1.11 @@ -2,7 +2,7 @@ Name: ocaml-pxp Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Validating XML parser Group: Development/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.2.1-1 - New upstream version 1.2.1. - Rebuild for OCaml 3.11.1. From jkeating at fedoraproject.org Sat Jul 25 20:04:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:21 +0000 (UTC) Subject: rpms/ocaml-reins/devel ocaml-reins.spec,1.5,1.6 Message-ID: <20090725200421.2FEED11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-reins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14002 Modified Files: ocaml-reins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-reins.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-reins/devel/ocaml-reins.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ocaml-reins.spec 23 May 2009 11:19:19 -0000 1.5 +++ ocaml-reins.spec 25 Jul 2009 20:04:20 -0000 1.6 @@ -3,7 +3,7 @@ Name: ocaml-reins Version: 0.1a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library of OCaml persistent data structures Group: Development/Libraries @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.1a-5 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:38 +0000 (UTC) Subject: rpms/ocaml-res/devel ocaml-res.spec,1.9,1.10 Message-ID: <20090725200438.496DA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-res/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14171 Modified Files: ocaml-res.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-res.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-res/devel/ocaml-res.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocaml-res.spec 23 May 2009 08:09:18 -0000 1.9 +++ ocaml-res.spec 25 Jul 2009 20:04:38 -0000 1.10 @@ -3,7 +3,7 @@ Name: ocaml-res Version: 3.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OCaml library for resizing arrays and strings Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 3.1.1-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:04:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:04:53 +0000 (UTC) Subject: rpms/ocaml-sexplib/devel ocaml-sexplib.spec,1.10,1.11 Message-ID: <20090725200453.50EB811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-sexplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14336 Modified Files: ocaml-sexplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-sexplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-sexplib/devel/ocaml-sexplib.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-sexplib.spec 12 Jun 2009 10:10:27 -0000 1.10 +++ ocaml-sexplib.spec 25 Jul 2009 20:04:53 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-sexplib Version: 4.2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for converting OCaml values to S-expressions Group: Development/Libraries @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 4.2.10-2 - Rebuild to try to fix rpmdepsize FTBFS problem. From jkeating at fedoraproject.org Sat Jul 25 20:05:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:08 +0000 (UTC) Subject: rpms/ocaml-sqlite/devel ocaml-sqlite.spec,1.13,1.14 Message-ID: <20090725200508.3FFD711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-sqlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14508 Modified Files: ocaml-sqlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-sqlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-sqlite/devel/ocaml-sqlite.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-sqlite.spec 23 May 2009 08:05:16 -0000 1.13 +++ ocaml-sqlite.spec 25 Jul 2009 20:05:07 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-sqlite Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OCaml library for accessing SQLite3 databases Group: Development/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.5.0-1 - Rebuild for OCaml 3.11.1 - New upstream version 1.5.0. From jkeating at fedoraproject.org Sat Jul 25 20:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:23 +0000 (UTC) Subject: rpms/ocaml-ssl/devel ocaml-ssl.spec,1.15,1.16 Message-ID: <20090725200523.0A1CE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14638 Modified Files: ocaml-ssl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ssl/devel/ocaml-ssl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ocaml-ssl.spec 23 May 2009 07:49:59 -0000 1.15 +++ ocaml-ssl.spec 25 Jul 2009 20:05:22 -0000 1.16 @@ -3,7 +3,7 @@ Name: ocaml-ssl Version: 0.4.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SSL bindings for OCaml Group: Development/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.4.3-3 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:38 +0000 (UTC) Subject: rpms/ocaml-type-conv/devel ocaml-type-conv.spec,1.13,1.14 Message-ID: <20090725200538.4DDF311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-type-conv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14768 Modified Files: ocaml-type-conv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-type-conv.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-type-conv/devel/ocaml-type-conv.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocaml-type-conv.spec 23 May 2009 07:47:18 -0000 1.13 +++ ocaml-type-conv.spec 25 Jul 2009 20:05:38 -0000 1.14 @@ -3,7 +3,7 @@ Name: ocaml-type-conv Version: 1.6.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml base library for type conversion Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.6.7-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:05:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:05:53 +0000 (UTC) Subject: rpms/ocaml-ulex/devel ocaml-ulex.spec,1.16,1.17 Message-ID: <20090725200553.1F9D411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-ulex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14903 Modified Files: ocaml-ulex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-ulex.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-ulex/devel/ocaml-ulex.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ocaml-ulex.spec 23 May 2009 07:45:52 -0000 1.16 +++ ocaml-ulex.spec 25 Jul 2009 20:05:53 -0000 1.17 @@ -3,7 +3,7 @@ Name: ocaml-ulex Version: 1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: OCaml lexer generator for Unicode Group: Development/Libraries @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.1-7 - Rebuild for OCaml 3.11.1 From jakub at fedoraproject.org Sat Jul 25 20:06:17 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Sat, 25 Jul 2009 20:06:17 +0000 (UTC) Subject: rpms/gcc/devel gcc.spec,1.58,1.59 sources,1.284,1.285 Message-ID: <20090725200617.4269811C02BC@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/gcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15127 Modified Files: gcc.spec sources Log Message: 4.4.1-3 Index: gcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/gcc.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- gcc.spec 25 Jul 2009 10:08:12 -0000 1.58 +++ gcc.spec 25 Jul 2009 20:06:16 -0000 1.59 @@ -1,5 +1,5 @@ %global DATE 20090725 -%global SVNREV 150077 +%global SVNREV 150088 %global gcc_version 4.4.1 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. @@ -40,7 +40,7 @@ Summary: Various compilers (C, C++, Objective-C, Java, ...) Name: gcc Version: %{gcc_version} -Release: %{gcc_release}.1 +Release: %{gcc_release} # libgcc, libgfortran, libmudflap, libgomp, libstdc++ and crtstuff have # GCC Runtime Exception. License: GPLv3+, GPLv3+ with exceptions and GPLv2+ with exceptions Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gcc/devel/sources,v retrieving revision 1.284 retrieving revision 1.285 diff -u -p -r1.284 -r1.285 --- sources 25 Jul 2009 10:08:12 -0000 1.284 +++ sources 25 Jul 2009 20:06:17 -0000 1.285 @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -e2e0ad162513321411f3fb253e3b6855 gcc-4.4.1-20090725.tar.bz2 +790eff8544b324a732498609bffbb7f7 gcc-4.4.1-20090725.tar.bz2 From jkeating at fedoraproject.org Sat Jul 25 20:06:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:14 +0000 (UTC) Subject: rpms/ocaml-xml-light/devel ocaml-xml-light.spec,1.12,1.13 Message-ID: <20090725200614.2428511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-xml-light/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15089 Modified Files: ocaml-xml-light.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-xml-light.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-xml-light/devel/ocaml-xml-light.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ocaml-xml-light.spec 23 May 2009 07:45:16 -0000 1.12 +++ ocaml-xml-light.spec 25 Jul 2009 20:06:13 -0000 1.13 @@ -3,7 +3,7 @@ Name: ocaml-xml-light Version: 2.2.cvs20070817 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Minimal XML parser and printer for OCaml Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.cvs20070817-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 2.2.cvs20070817-12 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:06:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:30 +0000 (UTC) Subject: rpms/ocaml-xmlrpc-light/devel ocaml-xmlrpc-light.spec,1.8,1.9 Message-ID: <20090725200630.2951C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15312 Modified Files: ocaml-xmlrpc-light.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-xmlrpc-light.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-xmlrpc-light/devel/ocaml-xmlrpc-light.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ocaml-xmlrpc-light.spec 23 May 2009 11:32:02 -0000 1.8 +++ ocaml-xmlrpc-light.spec 25 Jul 2009 20:06:30 -0000 1.9 @@ -3,7 +3,7 @@ Name: ocaml-xmlrpc-light Version: 0.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for writing XML-RPC clients and servers Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.6.1-2 - Rebuild for OCaml 3.11.1 From behdad at fedoraproject.org Sat Jul 25 20:06:31 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Sat, 25 Jul 2009 20:06:31 +0000 (UTC) Subject: rpms/freetype/F-11 freetype-2.3.9-aliasing.patch, NONE, 1.1 freetype.spec, 1.73, 1.74 Message-ID: <20090725200631.48AF111C02BC@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/freetype/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15221 Modified Files: freetype.spec Added Files: freetype-2.3.9-aliasing.patch Log Message: * Sat Jul 25 2009 Behdad Esfahbod 2.3.9-5 - Add freetype-2.3.9-aliasing.patch - Resolves: 513582 freetype-2.3.9-aliasing.patch: ftccache.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE freetype-2.3.9-aliasing.patch --- --- freetype-2.3.9.bak/src/cache/ftccache.h 2007-05-16 17:37:05.000000000 +0200 +++ freetype-2.3.9/src/cache/ftccache.h 2009-07-02 14:54:10.000000000 +0200 @@ -246,8 +246,7 @@ error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \ \ _Ok: \ - _pnode = (FTC_Node*)(void*)&(node); \ - *_pnode = _node; \ + node = _node; \ FT_END_STMNT #else /* !FTC_INLINE */ Index: freetype.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetype/F-11/freetype.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- freetype.spec 7 May 2009 21:32:44 -0000 1.73 +++ freetype.spec 25 Jul 2009 20:06:31 -0000 1.74 @@ -9,7 +9,7 @@ Summary: A free and portable font rendering engine Name: freetype Version: 2.3.9 -Release: 4%{?dist} +Release: 5%{?dist} License: FTL or GPLv2+ Group: System Environment/Libraries URL: http://www.freetype.org @@ -31,6 +31,9 @@ Patch88: freetype-multilib.patch # Fix crash https://bugs.freedesktop.org/show_bug.cgi?id=6841 Patch89: freetype-2.2.1-memcpy-fix.patch +# Fix aliasing issue +Patch90: freetype-2.3.9-aliasing.patch + Buildroot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) BuildRequires: libX11-devel @@ -97,6 +100,7 @@ popd %patch88 -p1 -b .multilib %patch89 -p1 -b .memcpy +%patch90 -p1 -b .aliasing %build @@ -226,6 +230,10 @@ rm -rf $RPM_BUILD_ROOT %doc docs/tutorial %changelog +* Sat Jul 25 2009 Behdad Esfahbod 2.3.9-5 +- Add freetype-2.3.9-aliasing.patch +- Resolves: 513582 + * Thu May 7 2009 Matthias Clasen 2.3.9-4 - Don't own /usr/lib/pkgconfig From jkeating at fedoraproject.org Sat Jul 25 20:06:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:06:45 +0000 (UTC) Subject: rpms/ocaml-zip/devel ocaml-zip.spec,1.10,1.11 Message-ID: <20090725200645.234BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocaml-zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15514 Modified Files: ocaml-zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocaml-zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-zip/devel/ocaml-zip.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- ocaml-zip.spec 23 May 2009 07:41:34 -0000 1.10 +++ ocaml-zip.spec 25 Jul 2009 20:06:45 -0000 1.11 @@ -3,7 +3,7 @@ Name: ocaml-zip Version: 1.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OCaml library for reading and writing zip, jar and gzip files Group: Development/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 1.04-2 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:07:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:00 +0000 (UTC) Subject: rpms/ocamldsort/devel ocamldsort.spec,1.6,1.7 Message-ID: <20090725200700.1858A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocamldsort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15656 Modified Files: ocamldsort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocamldsort.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocamldsort/devel/ocamldsort.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocamldsort.spec 23 May 2009 07:38:40 -0000 1.6 +++ ocamldsort.spec 25 Jul 2009 20:06:59 -0000 1.7 @@ -3,7 +3,7 @@ Name: ocamldsort Version: 0.14.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Dependency sorter for OCaml source files Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Richard W.M. Jones - 0.14.4-6 - Rebuild for OCaml 3.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:07:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:14 +0000 (UTC) Subject: rpms/ocfs2-tools/devel ocfs2-tools.spec,1.6,1.7 Message-ID: <20090725200714.1FB0011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocfs2-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15816 Modified Files: ocfs2-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocfs2-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocfs2-tools/devel/ocfs2-tools.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ocfs2-tools.spec 26 Feb 2009 07:42:08 -0000 1.6 +++ ocfs2-tools.spec 25 Jul 2009 20:07:13 -0000 1.7 @@ -6,7 +6,7 @@ Summary: Tools for managing the Ocfs2 cluster file system Name: ocfs2-tools Version: 1.3.9 -Release: 10%{?alphatag:.%{alphatag}}%{?dist} +Release: 11%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2 Group: System Environment/Base # The source for this package was pulled from upstream's git repo and manually @@ -183,6 +183,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.9-11.20080221git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.9-10.20080221git - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:07:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:27 +0000 (UTC) Subject: rpms/ocp/devel ocp.spec,1.3,1.4 Message-ID: <20090725200727.E85C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15997 Modified Files: ocp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocp/devel/ocp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocp.spec 26 Feb 2009 07:43:03 -0000 1.3 +++ ocp.spec 25 Jul 2009 20:07:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: ocp Version: 0.1.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Open Cubic Player for MOD/S3M/XM/IT/SID/MIDI music files Group: Applications/Multimedia @@ -173,6 +173,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:07:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:42 +0000 (UTC) Subject: rpms/ocrad/devel ocrad.spec,1.3,1.4 Message-ID: <20090725200742.2475711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocrad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16150 Modified Files: ocrad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocrad.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocrad/devel/ocrad.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocrad.spec 20 Jul 2009 07:40:40 -0000 1.3 +++ ocrad.spec 25 Jul 2009 20:07:41 -0000 1.4 @@ -1,7 +1,7 @@ Summary: An Optical Character Recognition program Name: ocrad Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Multimedia Source: ftp://ftp.gnu.org/gnu/ocrad/%{name}-%{version}.tar.gz @@ -52,6 +52,9 @@ fi %attr(0644,root,root) %{_infodir}/ocrad.info.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Tomas Smetana 0.18-1 - new upstream version From jkeating at fedoraproject.org Sat Jul 25 20:07:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:07:55 +0000 (UTC) Subject: rpms/ocsinventory/devel ocsinventory.spec,1.9,1.10 Message-ID: <20090725200755.F397F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocsinventory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16276 Modified Files: ocsinventory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocsinventory.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocsinventory/devel/ocsinventory.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ocsinventory.spec 30 May 2009 18:26:43 -0000 1.9 +++ ocsinventory.spec 25 Jul 2009 20:07:55 -0000 1.10 @@ -10,7 +10,7 @@ Name: ocsinventory Summary: Open Computer and Software Inventory Next Generation Version: 1.02.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Internet License: GPLv2 @@ -271,6 +271,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Remi Collet 1.02.1-1 - update to OCS Inventory NG 1.02.1 - Security Fixes (internal version 5003) From jkeating at fedoraproject.org Sat Jul 25 20:08:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:08:12 +0000 (UTC) Subject: rpms/ocsinventory-agent/devel ocsinventory-agent.spec,1.13,1.14 Message-ID: <20090725200812.4B78711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocsinventory-agent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16423 Modified Files: ocsinventory-agent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocsinventory-agent.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocsinventory-agent/devel/ocsinventory-agent.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ocsinventory-agent.spec 14 May 2009 15:16:22 -0000 1.13 +++ ocsinventory-agent.spec 25 Jul 2009 20:08:11 -0000 1.14 @@ -6,7 +6,7 @@ Name: ocsinventory-agent Summary: Open Computer and Software Inventory Next Generation client Version: 1.0.1 -Release: 4%{?dist}%{?ocstag:.%{ocstag}} +Release: 5%{?dist}%{?ocstag:.%{ocstag}} Source0: http://search.cpan.org/CPAN/authors/id/G/GO/GONERI/Ocsinventory-Agent-%{version}.tar.gz #Source0: http://nana.rulezlan.org/~goneri/ocsinventory-agent/Ocsinventory-Agent-nobundle-%{version}.tar.gz @@ -191,6 +191,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Remi Collet 1.0.1-4 - fix typo From jkeating at fedoraproject.org Sat Jul 25 20:08:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:08:27 +0000 (UTC) Subject: rpms/ocsinventory-ipdiscover/devel ocsinventory-ipdiscover.spec, 1.4, 1.5 Message-ID: <20090725200827.D06A211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocsinventory-ipdiscover/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16592 Modified Files: ocsinventory-ipdiscover.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocsinventory-ipdiscover.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocsinventory-ipdiscover/devel/ocsinventory-ipdiscover.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ocsinventory-ipdiscover.spec 26 Feb 2009 07:47:14 -0000 1.4 +++ ocsinventory-ipdiscover.spec 25 Jul 2009 20:08:27 -0000 1.5 @@ -2,7 +2,7 @@ Name: ocsinventory-ipdiscover Version: 1.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Open Computer and Software Inventory Next Generation client Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:08:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:08:43 +0000 (UTC) Subject: rpms/ocspd/devel ocspd.spec,1.3,1.4 Message-ID: <20090725200843.673B011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ocspd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16782 Modified Files: ocspd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ocspd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocspd/devel/ocspd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocspd.spec 26 Feb 2009 07:48:10 -0000 1.3 +++ ocspd.spec 25 Jul 2009 20:08:43 -0000 1.4 @@ -4,7 +4,7 @@ Name: ocspd Version: 1.5.1 -Release: 0.5.%{alphatag}%{?dist} +Release: 0.6.%{alphatag}%{?dist} Summary: OpenCA OCSP Daemon License: ASL 1.0 Group: System Environment/Daemons @@ -106,6 +106,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.1-0.6.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.1-0.5.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From chkr at fedoraproject.org Sat Jul 25 20:14:22 2009 From: chkr at fedoraproject.org (chkr) Date: Sat, 25 Jul 2009 20:14:22 +0000 (UTC) Subject: rpms/f-spot/devel gvfs-gphoto.patch,NONE,1.1 f-spot.spec,1.86,1.87 Message-ID: <20090725201422.5647711C02BC@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/f-spot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18449 Modified Files: f-spot.spec Added Files: gvfs-gphoto.patch Log Message: Ported the following fixes from F-11: - Avoid showing f-spot twice for photo imports - Make f-spot-import work with gvfs (BZ #485037) Minor indentation fix gvfs-gphoto.patch: f-spot-import | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) --- NEW FILE gvfs-gphoto.patch --- diff -up f-spot-0.5.0.3/tools/f-spot-import.gvfs f-spot-0.5.0.3/tools/f-spot-import --- f-spot-0.5.0.3/tools/f-spot-import.gvfs 2009-04-18 21:56:21.248974676 -0400 +++ f-spot-0.5.0.3/tools/f-spot-import 2009-04-18 21:56:30.800987772 -0400 @@ -1,20 +1,20 @@ #!/bin/bash -udi="$1" -#xmessage $udi -mount_point=`hal-get-property --udi="$udi" --key=volume.mount_point` -if [ -n "$mount_point" ]; then - # USB Mass Storage camera: need to pass f-spot a mount point +URI=`gvfs-ls -c "$1/"` - f-spot --import "$mount_point" -else - # Some other camera try GPhoto2 +if [ "${URI:0:10}" = "gphoto2://" ] ; then + # Yield for f-spot since it wants to access the device directly + # + gvfs-mount --unmount-scheme gphoto2 - bus=`hal-get-property --udi="$udi" --key=usb.bus_number` - dev=`hal-get-property --udi="$udi" --key=usb.linux.device_number` - uri=`printf gphoto2:usb:%.3d,%.3d $bus $dev` + if [ "${URI:11:4}" = "usb:" ] ; then + # Rewrite the uri to something f-spot can handle + # + bus="${URI:15:3}" + dev="${URI:19:3}" - echo $uri - - f-spot --import "$uri" + URI="gphoto2:usb:$bus,$dev" + fi fi + +f-spot --import "$URI" Index: f-spot.spec =================================================================== RCS file: /cvs/pkgs/rpms/f-spot/devel/f-spot.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- f-spot.spec 24 Jul 2009 22:28:32 -0000 1.86 +++ f-spot.spec 25 Jul 2009 20:14:22 -0000 1.87 @@ -1,18 +1,18 @@ Name: f-spot Version: 0.5.0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Photo management application Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ and CPL and MIT URL: http://f-spot.org/ Source0: http://download.gnome.org/sources/f-spot/0.5/f-spot-%{version}.tar.bz2 -# http://bugzilla.gnome.org/show_bug.cgi?id=510325 -Patch0: x-content.patch # Use system mono-addins -Patch3: f-spot-0.4.4-link-system-mono-addins.patch +Patch3: f-spot-0.4.4-link-system-mono-addins.patch # fix a missing icon -Patch4: missing-icon.patch +Patch4: missing-icon.patch +# unmount cameras before importing +Patch5: gvfs-gphoto.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel mono-web mono-data mono-data-sqlite lcms-devel @@ -53,9 +53,9 @@ sorting and tagging of digital images. # preserve timestamps touch -r configure.in configure.in.stamp -%patch0 -p1 -b .x-content %patch3 -p1 -b .link-system-mono-addins %patch4 -p1 -b .missing-icon +%patch5 -p1 -b .gvfs-gphoto # restore timestamps touch -r configure.in.stamp configure.in @@ -123,6 +123,11 @@ fi %{_libdir}/gio-sharp-unstable %changelog +* Sat Jul 25 2009 Christian Krause - 0.5.0.3-9 +- Avoid showing f-spot twice for photo imports +- Make f-spot-import work with gvfs +- Minor indentation fix + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.0.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kzak at fedoraproject.org Sat Jul 25 20:14:35 2009 From: kzak at fedoraproject.org (kzak) Date: Sat, 25 Jul 2009 20:14:35 +0000 (UTC) Subject: rpms/e2fsprogs/devel e2fsprogs.spec, 1.145, 1.146 uuidd.init, 1.3, NONE Message-ID: <20090725201435.E54D411C02BC@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/e2fsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18735 Modified Files: e2fsprogs.spec Removed Files: uuidd.init Log Message: * Sat Jul 25 2009 Karel Zak 1.41.8-4 - disable libuuid and uuidd (replaced by util-linux-ng) Index: e2fsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2fsprogs/devel/e2fsprogs.spec,v retrieving revision 1.145 retrieving revision 1.146 diff -u -p -r1.145 -r1.146 --- e2fsprogs.spec 24 Jul 2009 20:44:54 -0000 1.145 +++ e2fsprogs.spec 25 Jul 2009 20:14:35 -0000 1.146 @@ -4,19 +4,17 @@ Summary: Utilities for managing ext2, ext3, and ext4 filesystems Name: e2fsprogs Version: 1.41.8 -Release: 3%{?dist} +Release: 4%{?dist} # License tags based on COPYING file distinctions for various components License: GPLv2 Group: System Environment/Base Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz Source1: ext2_types-wrapper.h -Source3: uuidd.init Patch2: e2fsprogs-1.40.4-sb_feature_check_ignore.patch Url: http://e2fsprogs.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: e2fsprogs-libs = %{version}-%{release} -Requires: device-mapper # e4fsprogs was a parallel ext4-capable package in RHEL5.x %if 0%{?rhel} > 0 @@ -27,6 +25,7 @@ Provides: e4fsprogs = %{version}-%{relea BuildRequires: pkgconfig, texinfo, libselinux-devel BuildRequires: libsepol-devel BuildRequires: libblkid-devel +BuildRequires: libuuid-devel %description The e2fsprogs package contains a number of utilities for creating, @@ -61,7 +60,6 @@ Group: Development/Libraries License: GPLv2 and LGPLv2 Provides: %{name}-static = %{version}-%{release} Requires: e2fsprogs-libs = %{version}-%{release} -Requires: device-mapper-devel >= 1.02.02-3 Requires: gawk Requires: libcom_err-devel Requires: pkgconfig @@ -77,18 +75,6 @@ You should install e2fsprogs-devel if yo filesystem-specific programs. If you install e2fsprogs-devel, you'll also want to install e2fsprogs. -%package -n uuidd -Summary: Helper daemon to guarantee uniqueness of time-based UUIDs -Group: System Environment/Daemons -Requires: libuuid = %{version}-%{release} -License: GPLv2 -Requires(pre): shadow-utils - -%description -n uuidd -The uuidd package contains a userspace daemon (uuidd) which guarantees -uniqueness of time-based UUID generation even at very high rates on -SMP systems. - %package -n libcom_err Summary: Common error description library Group: Development/Libraries @@ -144,44 +130,6 @@ parses a command table to generate a sim It was originally inspired by the Multics SubSystem library. -%package -n libuuid -Summary: Universally unique ID library -Group: Development/Libraries -License: BSD - -%description -n libuuid -This is the universally unique ID library, part of e2fsprogs. - -The libuuid library generates and parses 128-bit universally unique -id's (UUID's). A UUID is an identifier that is unique across both -space and time, with respect to the space of all UUIDs. A UUID can -be used for multiple purposes, from tagging objects with an extremely -short lifetime, to reliably identifying very persistent objects -across a network. - -See also the "uuid" package, which is a separate implementation. - -%package -n libuuid-devel -Summary: Universally unique ID library -Group: Development/Libraries -License: BSD -Provides: libuuid-static = %{version}-%{release} -Requires: libuuid = %{version}-%{release} -Requires: pkgconfig - -%description -n libuuid-devel -This is the universally unique ID development library and headers, -part of e2fsprogs. - -The libuuid library generates and parses 128-bit universally unique -id's (UUID's). A UUID is an identifier that is unique across both -space and time, with respect to the space of all UUIDs. A UUID can -be used for multiple purposes, from tagging objects with an extremely -short lifetime, to reliably identifying very persistent objects -across a network. - -See also the "uuid-devel" package, which is a separate implementation. - %prep %setup -q # ignore some flag differences on primary/backup sb feature checks @@ -190,8 +138,8 @@ See also the "uuid-devel" package, which %patch2 -p1 -b .featurecheck %build -%configure --enable-elf-shlibs --enable-nls \ - --disable-e2initrd-helper --disable-libblkid +%configure --enable-elf-shlibs --enable-nls --disable-uuidd \ + --disable-e2initrd-helper --disable-libblkid --disable-libuuid make %{?_smp_mflags} V=1 %install @@ -209,11 +157,6 @@ mv -f %{buildroot}%{_includedir}/ext2fs/ install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/ext2fs/ext2_types.h %endif -# Our own initscript for uuidd -install -D -m 755 %{SOURCE3} %{buildroot}/%{_initrddir}/uuidd -# And a dir uuidd needs that the makefiles don't create -install -d %{buildroot}/var/lib/libuuid - %find_lang %{name} %check @@ -240,26 +183,6 @@ exit 0 %post -n libss -p /sbin/ldconfig %postun -n libss -p /sbin/ldconfig -%post -n libuuid -p /sbin/ldconfig -%postun -n libuuid -p /sbin/ldconfig - -%pre -n uuidd -getent group uuidd >/dev/null || groupadd -r uuidd -getent passwd uuidd >/dev/null || \ -useradd -r -g uuidd -d /var/lib/libuuid -s /sbin/nologin \ - -c "UUID generator helper daemon" uuidd -exit 0 - -%post -n uuidd -/sbin/chkconfig --add uuidd - -%preun -n uuidd -if [ "$1" = 0 ] -then - /sbin/service uuidd stop > /dev/null 2>&1 || : - /sbin/chkconfig --del uuidd -fi - %files -f %{name}.lang %defattr(-,root,root) %doc COPYING README RELEASE-NOTES @@ -290,10 +213,8 @@ fi %{_bindir}/chattr %{_bindir}/lsattr -%{_bindir}/uuidgen %{_mandir}/man1/chattr.1* %{_mandir}/man1/lsattr.1* -%{_mandir}/man1/uuidgen.1* %{_mandir}/man5/e2fsck.conf.5* %{_mandir}/man5/mke2fs.conf.5* @@ -340,14 +261,6 @@ fi %{_includedir}/e2p %{_includedir}/ext2fs -%files -n uuidd -%defattr(-,root,root) -%doc COPYING -%{_initrddir}/uuidd -%{_mandir}/man8/uuidd.8* -%attr(-, uuidd, uuidd) %{_sbindir}/uuidd -%dir %attr(2775, uuidd, uuidd) /var/lib/libuuid - %files -n libcom_err %defattr(-,root,root) %doc COPYING @@ -379,30 +292,10 @@ fi %{_mandir}/man1/mk_cmds.1* %{_libdir}/pkgconfig/ss.pc -%files -n libuuid -%defattr(-,root,root) -%doc COPYING -%{_root_libdir}/libuuid.so.* - -%files -n libuuid-devel -%defattr(-,root,root) -%{_libdir}/libuuid.a -%{_libdir}/libuuid.so -%{_includedir}/uuid -%{_mandir}/man3/uuid.3* -%{_mandir}/man3/uuid_clear.3* -%{_mandir}/man3/uuid_compare.3* -%{_mandir}/man3/uuid_copy.3* -%{_mandir}/man3/uuid_generate.3* -%{_mandir}/man3/uuid_generate_random.3* -%{_mandir}/man3/uuid_generate_time.3* -%{_mandir}/man3/uuid_is_null.3* -%{_mandir}/man3/uuid_parse.3* -%{_mandir}/man3/uuid_time.3* -%{_mandir}/man3/uuid_unparse.3* -%{_libdir}/pkgconfig/uuid.pc - %changelog +* Sat Jul 25 2009 Karel Zak 1.41.8-4 +- disable libuuid and uuidd (replaced by util-linux-ng) + * Fri Jul 24 2009 Fedora Release Engineering - 1.41.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- uuidd.init DELETED --- From kzak at fedoraproject.org Sat Jul 25 20:18:48 2009 From: kzak at fedoraproject.org (kzak) Date: Sat, 25 Jul 2009 20:18:48 +0000 (UTC) Subject: rpms/util-linux-ng/devel util-linux-ng-2.16-blkid-cachefile.patch, NONE, 1.1 uuidd.init, NONE, 1.1 .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 util-linux-ng.spec, 1.49, 1.50 util-linux-ng-2.15-blkid-cachefile.patch, 1.1, NONE Message-ID: <20090725201848.27F0D11C02BC@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/util-linux-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19878 Modified Files: .cvsignore sources util-linux-ng.spec Added Files: util-linux-ng-2.16-blkid-cachefile.patch uuidd.init Removed Files: util-linux-ng-2.15-blkid-cachefile.patch Log Message: * Sat Jul 25 2009 Karel Zak 2.16-1 - upgrade to 2.16 ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.16/v2.16-ReleaseNotes - enable built-in libuuid (replacement for the old uuid stuff from e2fsprogs) - new commands switch_root, uuidgen and uuidd (subpackage) util-linux-ng-2.16-blkid-cachefile.patch: misc-utils/blkid.8 | 4 ++-- misc-utils/blkid.c | 2 +- shlibs/blkid/libblkid.3 | 6 +++--- shlibs/blkid/src/blkidP.h | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) --- NEW FILE util-linux-ng-2.16-blkid-cachefile.patch --- diff -up util-linux-ng-2.16/misc-utils/blkid.8.kzak util-linux-ng-2.16/misc-utils/blkid.8 --- util-linux-ng-2.16/misc-utils/blkid.8.kzak 2009-07-04 01:20:01.000000000 +0200 +++ util-linux-ng-2.16/misc-utils/blkid.8 2009-07-16 00:41:28.000000000 +0200 @@ -64,7 +64,7 @@ more devices. Read from .I cachefile instead of reading from the default cache file -.IR /etc/blkid.tab . +.IR /etc/blkid/blkid.tab . If you want to start with a clean cache (i.e. don't report devices previously scanned but not necessarily available at this time), specify .IR /dev/null . @@ -179,7 +179,7 @@ Display version number and exit. Write the device cache to .I writecachefile instead of writing it to the default cache file -.IR /etc/blkid.tab . +.IR /etc/blkid/blkid.tab . If you don't want to save the cache to the default file, specify .IR /dev/null. If not specified it will be the same file as that given by the diff -up util-linux-ng-2.16/misc-utils/blkid.c.kzak util-linux-ng-2.16/misc-utils/blkid.c --- util-linux-ng-2.16/misc-utils/blkid.c.kzak 2009-07-04 01:20:01.000000000 +0200 +++ util-linux-ng-2.16/misc-utils/blkid.c 2009-07-16 00:41:28.000000000 +0200 @@ -60,7 +60,7 @@ static void usage(int error) " [-t ] [-w ] [dev ...]\n\n" " %1$s -p [-O ] [-S ] [-o format] [dev ...]\n\n" "Options:\n" - " -c cache file (default: /etc/blkid.tab, /dev/null = none)\n" + " -c cache file (default: /etc/blkid/blkid.tab, /dev/null = none)\n" " -h print this usage message and exit\n" " -g garbage collect the blkid cache\n" " -o output format; can be one of:\n" diff -up util-linux-ng-2.16/shlibs/blkid/libblkid.3.kzak util-linux-ng-2.16/shlibs/blkid/libblkid.3 --- util-linux-ng-2.16/shlibs/blkid/libblkid.3.kzak 2009-07-04 01:20:03.000000000 +0200 +++ util-linux-ng-2.16/shlibs/blkid/libblkid.3 2009-07-16 00:40:13.000000000 +0200 @@ -24,7 +24,7 @@ A common use is to allow use of LABEL= a specific block device names into configuration files. .P Block device information is normally kept in a cache file -.I /etc/blkid.tab +.I /etc/blkid/blkid.tab and is verified to still be valid before being returned to the user (if the user has read permission on the raw block device, otherwise not). The cache file also allows unprivileged users (normally anyone other @@ -59,7 +59,7 @@ symlink does not match with LABEL or UUI .I CACHE_FILE= Overrides the standard location of the cache file. This setting can be overridden by the environment variable BLKID_FILE. Default is -.I /etc/blkid.tab. +.I /etc/blkid/blkid.tab. .TP .I EVALUATE= Defines LABEL and UUID evaluation method(s). Currently, the libblkid library @@ -77,7 +77,7 @@ from Ted Ts'o. The library was subseque The low-level probing code was rewritten by Karel Zak. .SH FILES .TP 18 -.I /etc/blkid.tab +.I /etc/blkid/blkid.tab caches data extracted from each recognized block device .TP .I /etc/blkid.conf diff -up util-linux-ng-2.16/shlibs/blkid/src/blkidP.h.kzak util-linux-ng-2.16/shlibs/blkid/src/blkidP.h --- util-linux-ng-2.16/shlibs/blkid/src/blkidP.h.kzak 2009-07-13 20:30:36.000000000 +0200 +++ util-linux-ng-2.16/shlibs/blkid/src/blkidP.h 2009-07-16 00:40:13.000000000 +0200 @@ -223,7 +223,7 @@ struct blkid_struct_cache extern char *blkid_strdup(const char *s); extern char *blkid_strndup(const char *s, const int length); -#define BLKID_CACHE_FILE "/etc/blkid.tab" +#define BLKID_CACHE_FILE "/etc/blkid/blkid.tab" #define BLKID_CONFIG_FILE "/etc/blkid.conf" #define BLKID_ERR_IO 5 --- NEW FILE uuidd.init --- #!/bin/bash # # uuidd uuidd daemon for unique time-based UUID generation # # Author: Eric Sandeen # # chkconfig: - 60 99 # # description: uuidd is a helper daemon to guarantee uniqueness of \ # time-based UUIDs when using libuuid. # processname: uuidd # pidfile: /var/lib/libuuid/uuidd.pid # ### BEGIN INIT INFO # Provides: uuidd # Required-Start: $time $local_fs # Required-Stop: $time $local_fs # Default-Stop: 0 1 6 # Short-Description: UUID daemon # Description: Daemon which guarantees uniqueness of time-based UUIDS # when using libuuid. ### END INIT INFO # source function library . /etc/rc.d/init.d/functions RETVAL=0 DAEMON=uuidd start() { echo -n $"Starting uuidd: " daemon --user uuidd --pidfile /var/run/uuidd/uuidd.pid /usr/sbin/uuidd RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/uuidd } stop() { echo -n $"Stopping uuidd: " killproc uuidd echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/uuidd } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|force-reload|reload) restart ;; condrestart) [ -f /var/lock/subsys/uuidd ] && restart ;; status) status -p /var/run/uuidid/uuidd.pid uuidd uuidd RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}" exit 1 esac exit $RETVAL Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 10 Jun 2009 13:10:27 -0000 1.18 +++ .cvsignore 25 Jul 2009 20:18:47 -0000 1.19 @@ -1,2 +1,2 @@ -util-linux-ng-2.15.1.tar.bz2 +util-linux-ng-2.16.tar.bz2 floppy-0.16.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 10 Jun 2009 13:10:27 -0000 1.18 +++ sources 25 Jul 2009 20:18:47 -0000 1.19 @@ -1,2 +1,2 @@ -a06d94c4dc94c56a636c6e456698e40d util-linux-ng-2.15.1.tar.bz2 +9623380641b0c2e0449f5b1ecc567663 util-linux-ng-2.16.tar.bz2 7eeb9a6f7a258174bf0fa80f1370788d floppy-0.16.tar.bz2 Index: util-linux-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/util-linux-ng.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- util-linux-ng.spec 10 Jun 2009 13:10:27 -0000 1.49 +++ util-linux-ng.spec 25 Jul 2009 20:18:47 -0000 1.50 @@ -1,7 +1,7 @@ ### Header Summary: A collection of basic system utilities Name: util-linux-ng -Version: 2.15.1 +Version: 2.16 Release: 1%{?dist} License: GPLv2 and GPLv2+ and BSD with advertising and Public Domain Group: System Environment/Base @@ -43,6 +43,7 @@ Source4: util-linux-ng-60-raw.rules Source5: mount.tmpfs Source8: nologin.c Source9: nologin.8 +Source10: uuidd.init Source11: http://download.sourceforge.net/floppyutil/floppy-%{floppyver}.tar.bz2 ### Obsoletes & Conflicts & Provides @@ -95,7 +96,7 @@ Patch3: util-linux-ng-2.14-blockdev-rmpa # 199745 - Non-existant simpleinit(8) mentioned in ctrlaltdel(8) Patch4: util-linux-ng-2.13-ctrlaltdel-man.patch # /etc/blkid.tab --> /etc/blkid/blkid.tab -Patch5: util-linux-ng-2.15-blkid-cachefile.patch +Patch5: util-linux-ng-2.16-blkid-cachefile.patch ### Ready for upstream? ### @@ -124,16 +125,67 @@ This is block device identification libr Summary: Block device ID library Group: Development/Libraries License: LGPLv2+ +Provides: libblkid-static = %{version}-%{release} Requires: libblkid = %{version}-%{release} Requires: pkgconfig -# for libuuid and uuid.pc -Requires: e2fsprogs-devel %description -n libblkid-devel This is the block device identification development library and headers, part of util-linux-ng. +%package -n libuuid +Summary: Universally unique ID library +Group: Development/Libraries +License: BSD + +%description -n libuuid +This is the universally unique ID library, part of e2fsprogs. + +The libuuid library generates and parses 128-bit universally unique +id's (UUID's). A UUID is an identifier that is unique across both +space and time, with respect to the space of all UUIDs. A UUID can +be used for multiple purposes, from tagging objects with an extremely +short lifetime, to reliably identifying very persistent objects +across a network. + +See also the "uuid" package, which is a separate implementation. + +%package -n libuuid-devel +Summary: Universally unique ID library +Group: Development/Libraries +License: BSD +Provides: libuuid-static = %{version}-%{release} +Requires: libuuid = %{version}-%{release} +Requires: pkgconfig + +%description -n libuuid-devel +This is the universally unique ID development library and headers, +part of e2fsprogs. + +The libuuid library generates and parses 128-bit universally unique +id's (UUID's). A UUID is an identifier that is unique across both +space and time, with respect to the space of all UUIDs. A UUID can +be used for multiple purposes, from tagging objects with an extremely +short lifetime, to reliably identifying very persistent objects +across a network. + +See also the "uuid-devel" package, which is a separate implementation. + + +%package -n uuidd +Summary: Helper daemon to guarantee uniqueness of time-based UUIDs +Group: System Environment/Daemons +Requires: libuuid = %{version}-%{release} +License: GPLv2 +Requires(pre): shadow-utils + +%description -n uuidd +The uuidd package contains a userspace daemon (uuidd) which guarantees +uniqueness of time-based UUID generation even at very high rates on +SMP systems. + + %prep %setup -q -a 11 -n %{name}-%{upstream_version} cp %{SOURCE8} %{SOURCE9} . @@ -217,6 +269,15 @@ echo '.so man8/raw.8' > $RPM_BUILD_ROOT% } %endif +# Our own initscript for uuidd +install -D -m 755 %{SOURCE10} ${RPM_BUILD_ROOT}/etc/rc.d/init.d/uuidd +# And a dirs uuidd needs that the makefiles don't create +install -d ${RPM_BUILD_ROOT}/var/run/uuidd +install -d ${RPM_BUILD_ROOT}/var/lib/libuuid + +# libtool junk +rm -rf ${RPM_BUILD_ROOT}%{_libdir}/*.la + %ifarch sparc sparc64 sparcv9 rm -rf ${RPM_BUILD_ROOT}%{_bindir}/sunhostid cat << E-O-F > ${RPM_BUILD_ROOT}%{_bindir}/sunhostid @@ -249,13 +310,7 @@ ln -sf hwclock ${RPM_BUILD_ROOT}/sbin/cl # remove libtool junk (TODO) -rm -f ${RPM_BUILD_ROOT}/%{_lib}/libblkid.la - -# libtool installs all libraries to --libdir=/lib, but we need -# devel stuff in /usr/lib (TODO) -rm -f ${RPM_BUILD_ROOT}/%{_lib}/libblkid.so -mv ${RPM_BUILD_ROOT}/%{_lib}/libblkid.a ${RPM_BUILD_ROOT}%{_libdir}/ -ln -sf ../../%{_lib}/libblkid.so.1 ${RPM_BUILD_ROOT}%{_libdir}/libblkid.so +#rm -f ${RPM_BUILD_ROOT}/%{_lib}/libblkid.la # install tmpfs mount helper pushd ${RPM_BUILD_ROOT}/sbin @@ -396,6 +451,24 @@ exit 0 %postun -n libblkid -p /sbin/ldconfig +%post -n libuuid -p /sbin/ldconfig +%postun -n libuuid -p /sbin/ldconfig + +%pre -n uuidd +getent group uuidd >/dev/null || groupadd -r uuidd +getent passwd uuidd >/dev/null || \ +useradd -r -g uuidd -d /var/lib/libuuid -s /sbin/nologin \ + -c "UUID generator helper daemon" uuidd +exit 0 + +%post -n uuidd +/sbin/chkconfig --add uuidd + +%preun -n uuidd +if [ "$1" = 0 ]; then + /sbin/service uuidd stop > /dev/null 2>&1 || : + /sbin/chkconfig --del uuidd +fi %files -f %{name}.files %defattr(-,root,root) @@ -429,6 +502,7 @@ exit 0 /sbin/delpart /sbin/fdisk /sbin/findfs +/sbin/fsck /sbin/fsck.cramfs /sbin/losetup /sbin/mkfs @@ -439,6 +513,7 @@ exit 0 /sbin/pivot_root /sbin/swapoff /sbin/swapon +/sbin/switch_root %{_bindir}/cal %{_bindir}/chrt @@ -471,6 +546,7 @@ exit 0 %{_bindir}/setterm %{_bindir}/tailf %{_bindir}/ul +%{_bindir}/uuidgen %{_bindir}/whereis %{_sbindir}/ldattach @@ -515,6 +591,7 @@ exit 0 %{_mandir}/man1/tailf.1* %{_mandir}/man1/taskset.1* %{_mandir}/man1/ul.1* +%{_mandir}/man1/uuidgen.1* %{_mandir}/man1/whereis.1* %{_mandir}/man1/write.1* @@ -528,6 +605,7 @@ exit 0 %{_mandir}/man8/delpart.8* %{_mandir}/man8/fdisk.8* %{_mandir}/man8/findfs.8* +%{_mandir}/man8/fsck.8* %{_mandir}/man8/isosize.8* %{_mandir}/man8/ldattach.8* %{_mandir}/man8/losetup.8* @@ -541,6 +619,7 @@ exit 0 %{_mandir}/man8/setarch.8* %{_mandir}/man8/swapoff.8* %{_mandir}/man8/swapon.8* +%{_mandir}/man8/switch_root.8* %{_mandir}/man8/umount.8* %if %{include_raw} @@ -581,6 +660,15 @@ exit 0 %endif +%files -n uuidd +%defattr(-,root,root) +/etc/rc.d/init.d/uuidd +%{_mandir}/man8/uuidd.8* +%attr(-, uuidd, uuidd) %{_sbindir}/uuidd +%dir %attr(2775, uuidd, uuidd) /var/lib/libuuid +%dir %attr(2775, uuidd, uuidd) /var/run/uuidd + + %files -n libblkid %defattr(-,root,root) %dir /etc/blkid @@ -594,9 +682,38 @@ exit 0 %{_includedir}/blkid %{_mandir}/man3/libblkid.3* %{_libdir}/pkgconfig/blkid.pc -%{_includedir}/blkid + + +%files -n libuuid +%defattr(-,root,root) +/%{_lib}/libuuid.so.* + +%files -n libuuid-devel +%defattr(-,root,root) +%{_libdir}/libuuid.a +%{_libdir}/libuuid.so +%{_includedir}/uuid +%{_mandir}/man3/uuid.3* +%{_mandir}/man3/uuid_clear.3* +%{_mandir}/man3/uuid_compare.3* +%{_mandir}/man3/uuid_copy.3* +%{_mandir}/man3/uuid_generate.3* +%{_mandir}/man3/uuid_generate_random.3* +%{_mandir}/man3/uuid_generate_time.3* +%{_mandir}/man3/uuid_is_null.3* +%{_mandir}/man3/uuid_parse.3* +%{_mandir}/man3/uuid_time.3* +%{_mandir}/man3/uuid_unparse.3* +%{_libdir}/pkgconfig/uuid.pc + %changelog +* Sat Jul 25 2009 Karel Zak 2.16-1 +- upgrade to 2.16 + ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.16/v2.16-ReleaseNotes +- enable built-in libuuid (replacement for the old uuid stuff from e2fsprogs) +- new commands switch_root, uuidgen and uuidd (subpackage) + * Wed Jun 10 2009 Karel Zak 2.15.1-1 - upgrade to 2.15.1 --- util-linux-ng-2.15-blkid-cachefile.patch DELETED --- From kzak at fedoraproject.org Sat Jul 25 20:20:55 2009 From: kzak at fedoraproject.org (kzak) Date: Sat, 25 Jul 2009 20:20:55 +0000 (UTC) Subject: rpms/util-linux-ng/devel util-linux-ng.spec,1.50,1.51 Message-ID: <20090725202056.00BA911C02BC@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/util-linux-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20367 Modified Files: util-linux-ng.spec Log Message: remove obsolete build requires Index: util-linux-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/util-linux-ng.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- util-linux-ng.spec 25 Jul 2009 20:18:47 -0000 1.50 +++ util-linux-ng.spec 25 Jul 2009 20:20:55 -0000 1.51 @@ -25,7 +25,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version ### Dependences BuildRequires: audit-libs-devel >= 1.0.6 -BuildRequires: e2fsprogs-devel BuildRequires: gettext-devel BuildRequires: libselinux-devel BuildRequires: ncurses-devel From dwalsh at fedoraproject.org Sat Jul 25 20:23:22 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Sat, 25 Jul 2009 20:23:22 +0000 (UTC) Subject: rpms/selinux-policy/devel modules-minimum.conf,1.23,1.24 Message-ID: <20090725202322.B23D611C02BC@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21184 Modified Files: modules-minimum.conf Log Message: * Thu Jul 22 2009 Dan Walsh 3.6.23-1 - Update to upstream Index: modules-minimum.conf =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/modules-minimum.conf,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- modules-minimum.conf 8 May 2009 17:12:28 -0000 1.23 +++ modules-minimum.conf 25 Jul 2009 20:23:22 -0000 1.24 @@ -413,6 +413,13 @@ domain = base dovecot = module # Layer: apps +# Module: gitosis +# +# Policy for gitosis +# +gitosis = module + +# Layer: apps # Module: gpg # # Policy for GNU Privacy Guard and related programs. @@ -550,11 +557,11 @@ gnomeclock = module hal = module # Layer: services -# Module: polkit +# Module: policykit # # Hardware abstraction layer # -polkit = module +policykit = module # Layer: services # Module: psad @@ -829,6 +836,13 @@ mount = base # mozilla = module +# Layer: services +# Module: nslcd +# +# Policy for nslcd +# +nslcd = module + # Layer: apps # Module: nsplugin # @@ -1172,6 +1186,13 @@ rshd = module rsync = module # Layer: services +# Module: rtkit_daemon +# +# Real Time Kit Daemon +# +rtkit_daemon = module + +# Layer: services # Module: rwho # # who is logged in on local machines @@ -1188,6 +1209,13 @@ rwho = module samba = module # Layer: apps +# Module: sandbox +# +# Experimental policy for running apps within a sandbox +# +sandbox = module + +# Layer: apps # Module: sambagui # # policy for system-config-samba @@ -1450,6 +1478,13 @@ usernetctl = module xen = module # Layer: services +# Module: varnishd +# +# Varnishd http accelerator daemon +# +varnishd = module + +# Layer: services # Module: virt # # Virtualization libraries @@ -1633,6 +1668,13 @@ portreserve = module rpcbind = module # Layer: apps +# Module: rssh +# +# Restricted (scp/sftp) only shell +# +rssh = module + +# Layer: apps # Module: vmware # # VMWare Workstation virtual machines From jkeating at fedoraproject.org Sat Jul 25 20:33:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:33:55 +0000 (UTC) Subject: rpms/octave-forge/devel octave-forge.spec,1.69,1.70 Message-ID: <20090725203355.E282611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/octave-forge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25717 Modified Files: octave-forge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: octave-forge.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave-forge/devel/octave-forge.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- octave-forge.spec 9 Jul 2009 08:36:35 -0000 1.69 +++ octave-forge.spec 25 Jul 2009 20:33:55 -0000 1.70 @@ -2,7 +2,7 @@ Name: octave-forge Version: 20080831 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Contributed functions for octave Group: Applications/Engineering @@ -207,6 +207,9 @@ octave -q -H --no-site-file --eval "pkg( %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20080831-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Alex Lancaster - 20080831-9 - Rebuild for dependencies From jkeating at fedoraproject.org Sat Jul 25 20:34:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:34:11 +0000 (UTC) Subject: rpms/octaviz/devel octaviz.spec,1.2,1.3 Message-ID: <20090725203411.B86C611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/octaviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25922 Modified Files: octaviz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: octaviz.spec =================================================================== RCS file: /cvs/pkgs/rpms/octaviz/devel/octaviz.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- octaviz.spec 26 Feb 2009 07:49:05 -0000 1.2 +++ octaviz.spec 25 Jul 2009 20:34:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: octaviz Version: 0.4.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 3D visualization system for Octave Group: Applications/Engineering @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:34:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:34:26 +0000 (UTC) Subject: rpms/odccm/devel odccm.spec,1.4,1.5 Message-ID: <20090725203426.DD35211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/odccm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26076 Modified Files: odccm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: odccm.spec =================================================================== RCS file: /cvs/pkgs/rpms/odccm/devel/odccm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- odccm.spec 26 Feb 2009 07:50:04 -0000 1.4 +++ odccm.spec 25 Jul 2009 20:34:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: odccm Version: 0.11.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Connection daemon for Pocket PC devices for Windows Mobile Group: Applications/Communications @@ -65,6 +65,9 @@ fi %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:34:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:34:43 +0000 (UTC) Subject: rpms/oddjob/devel oddjob.spec,1.19,1.20 Message-ID: <20090725203443.CCCAA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oddjob/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26245 Modified Files: oddjob.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oddjob.spec =================================================================== RCS file: /cvs/pkgs/rpms/oddjob/devel/oddjob.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- oddjob.spec 26 Feb 2009 07:51:08 -0000 1.19 +++ oddjob.spec 25 Jul 2009 20:34:43 -0000 1.20 @@ -3,7 +3,7 @@ Name: oddjob Version: 0.29.1 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://people.redhat.com/nalin/oddjob/oddjob-%{version}-1.tar.gz Summary: A D-BUS service which runs odd jobs on behalf of client applications License: BSD @@ -190,6 +190,9 @@ fi exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.29.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.29.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:34:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:34:59 +0000 (UTC) Subject: rpms/ode/devel ode.spec,1.17,1.18 Message-ID: <20090725203459.C93D311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26434 Modified Files: ode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ode.spec =================================================================== RCS file: /cvs/pkgs/rpms/ode/devel/ode.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ode.spec 25 May 2009 09:53:51 -0000 1.17 +++ ode.spec 25 Jul 2009 20:34:59 -0000 1.18 @@ -1,6 +1,6 @@ Name: ode Version: 0.11.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: High performance library for simulating rigid body dynamics Group: System Environment/Libraries License: BSD or LGPLv2+ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Hans de Goede 0.11.1-1 - New upstream release 0.11.1 From jkeating at fedoraproject.org Sat Jul 25 20:35:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:35:15 +0000 (UTC) Subject: rpms/odfpy/devel odfpy.spec,1.5,1.6 Message-ID: <20090725203515.49A5711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/odfpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26595 Modified Files: odfpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: odfpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/odfpy/devel/odfpy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- odfpy.spec 22 May 2009 13:27:42 -0000 1.5 +++ odfpy.spec 25 Jul 2009 20:35:15 -0000 1.6 @@ -2,7 +2,7 @@ Name: odfpy Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python library for manipulating OpenDocument files Group: Development/Languages @@ -59,6 +59,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Ian Weller - 0.9-1 - Update upstream From jkeating at fedoraproject.org Sat Jul 25 20:35:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:35:32 +0000 (UTC) Subject: rpms/odt2txt/devel odt2txt.spec,1.4,1.5 Message-ID: <20090725203532.3810B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/odt2txt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26766 Modified Files: odt2txt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: odt2txt.spec =================================================================== RCS file: /cvs/pkgs/rpms/odt2txt/devel/odt2txt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- odt2txt.spec 26 Feb 2009 07:54:09 -0000 1.4 +++ odt2txt.spec 25 Jul 2009 20:35:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: odt2txt Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Converts an OpenDocument to plain text Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:35:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:35:50 +0000 (UTC) Subject: rpms/offlineimap/devel offlineimap.spec,1.24,1.25 Message-ID: <20090725203550.8568411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/offlineimap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26972 Modified Files: offlineimap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: offlineimap.spec =================================================================== RCS file: /cvs/pkgs/rpms/offlineimap/devel/offlineimap.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- offlineimap.spec 17 Jul 2009 12:37:39 -0000 1.24 +++ offlineimap.spec 25 Jul 2009 20:35:50 -0000 1.25 @@ -2,7 +2,7 @@ Name: offlineimap Version: 6.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Powerful IMAP/Maildir synchronization and reader support License: GPLv2+ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/offlineimap.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Christoph H?ger - 6.1.2-1 - Update to latest version - remove patch -> upstream From jkeating at fedoraproject.org Sat Jul 25 20:36:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:36:07 +0000 (UTC) Subject: rpms/oflb-goudy-bookletter-1911-fonts/devel oflb-goudy-bookletter-1911-fonts.spec, 1.1, 1.2 Message-ID: <20090725203607.D0B6F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oflb-goudy-bookletter-1911-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27168 Modified Files: oflb-goudy-bookletter-1911-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oflb-goudy-bookletter-1911-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/oflb-goudy-bookletter-1911-fonts/devel/oflb-goudy-bookletter-1911-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- oflb-goudy-bookletter-1911-fonts.spec 1 Apr 2009 20:51:39 -0000 1.1 +++ oflb-goudy-bookletter-1911-fonts.spec 25 Jul 2009 20:36:06 -0000 1.2 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Summary: Clean serif font based on Kennerly Old Style Version: 20080206 -Release: 2%{?dist} +Release: 3%{?dist} License: Public Domain Group: User Interface/X Source0: http://openfontlibrary.org/people/chemoelectric/chemoelectric_-_Goudy_Bookletter_1.zip @@ -43,6 +43,9 @@ rm -rf %{buildroot} %_font_pkg -f %{fontconf} *.otf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20080206-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Tom "spot" Callaway 20080206-2 - rename package to oflb-goudy-bookletter-1911-fonts - drop common_desc (unnecessary) From jkeating at fedoraproject.org Sat Jul 25 20:36:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:36:25 +0000 (UTC) Subject: rpms/oflb-notcouriersans-fonts/devel oflb-notcouriersans-fonts.spec, 1.1, 1.2 Message-ID: <20090725203625.753BB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oflb-notcouriersans-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27361 Modified Files: oflb-notcouriersans-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oflb-notcouriersans-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/oflb-notcouriersans-fonts/devel/oflb-notcouriersans-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- oflb-notcouriersans-fonts.spec 4 Jul 2009 11:53:12 -0000 1.1 +++ oflb-notcouriersans-fonts.spec 25 Jul 2009 20:36:25 -0000 1.2 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: NotCourier Sans is a re-interpretation of Nimbus Mono Group: User Interface/X @@ -72,6 +72,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Ankur Sinha - 1.1-1 - Initial RPM build. From jkeating at fedoraproject.org Sat Jul 25 20:36:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:36:39 +0000 (UTC) Subject: rpms/oflb-riordonfancy-fonts/devel oflb-riordonfancy-fonts.spec, 1.2, 1.3 Message-ID: <20090725203639.4963D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oflb-riordonfancy-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27492 Modified Files: oflb-riordonfancy-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oflb-riordonfancy-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/oflb-riordonfancy-fonts/devel/oflb-riordonfancy-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- oflb-riordonfancy-fonts.spec 14 Apr 2009 02:40:26 -0000 1.2 +++ oflb-riordonfancy-fonts.spec 25 Jul 2009 20:36:39 -0000 1.3 @@ -3,7 +3,7 @@ Name: oflb-%{fontname}-fonts Version: 4 -Release: 2 +Release: 3 Summary: A stylized font Group: User Interface/X @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_fontdir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Ignacio Vazquez-Abrams 4-2 - Rebuild for stronger hashes From jkeating at fedoraproject.org Sat Jul 25 20:36:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:36:53 +0000 (UTC) Subject: rpms/ogdi/devel ogdi.spec,1.12,1.13 Message-ID: <20090725203653.26FA311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ogdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27608 Modified Files: ogdi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ogdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ogdi/devel/ogdi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ogdi.spec 26 Feb 2009 07:55:57 -0000 1.12 +++ ogdi.spec 25 Jul 2009 20:36:52 -0000 1.13 @@ -1,6 +1,6 @@ Name: ogdi Version: 3.2.0 -Release: 0.13.beta2%{?dist} +Release: 0.14.beta2%{?dist} Summary: Open Geographic Datastore Interface Group: Applications/Engineering License: BSD @@ -176,6 +176,9 @@ rm -rf %{buildroot} %{_libdir}/%{name}/libecs_tcl.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2.0-0.14.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2.0-0.13.beta2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:37:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:37:06 +0000 (UTC) Subject: rpms/oggconvert/devel oggconvert.spec,1.9,1.10 Message-ID: <20090725203706.91CE511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oggconvert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27769 Modified Files: oggconvert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oggconvert.spec =================================================================== RCS file: /cvs/pkgs/rpms/oggconvert/devel/oggconvert.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- oggconvert.spec 26 Feb 2009 07:56:53 -0000 1.9 +++ oggconvert.spec 25 Jul 2009 20:37:06 -0000 1.10 @@ -3,7 +3,7 @@ Name: oggconvert Version: 0.3.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert media files to Free formats Group: Applications/Multimedia @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/oggconvert-%{version}-py?.?.egg-info %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:37:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:37:20 +0000 (UTC) Subject: rpms/oggvideotools/devel oggvideotools.spec,1.8,1.9 Message-ID: <20090725203720.6F6D011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oggvideotools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27906 Modified Files: oggvideotools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oggvideotools.spec =================================================================== RCS file: /cvs/pkgs/rpms/oggvideotools/devel/oggvideotools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- oggvideotools.spec 29 May 2009 14:32:34 -0000 1.8 +++ oggvideotools.spec 25 Jul 2009 20:37:20 -0000 1.9 @@ -1,6 +1,6 @@ Name: oggvideotools Version: 0.7b -Release: 1%{?dist} +Release: 2%{?dist} Summary: Toolbox for manipulating Ogg video files Group: Applications/Multimedia @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7b-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Adam Miller - 0.7b-1 - New release upstream, previous patches are included and no longer needed From jkeating at fedoraproject.org Sat Jul 25 20:37:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:37:34 +0000 (UTC) Subject: rpms/ogmtools/devel ogmtools.spec,1.2,1.3 Message-ID: <20090725203734.36E0211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ogmtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28047 Modified Files: ogmtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ogmtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/ogmtools/devel/ogmtools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ogmtools.spec 21 Apr 2009 22:25:00 -0000 1.2 +++ ogmtools.spec 25 Jul 2009 20:37:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: ogmtools Version: 1.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools for Ogg media streams Group: Applications/Multimedia @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Gianluca Sforna - 1.5-6 - honour RPM_OPT_FLAGS - use --disable-dependency-tracking From jkeating at fedoraproject.org Sat Jul 25 20:37:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:37:48 +0000 (UTC) Subject: rpms/ogre/devel ogre.spec,1.51,1.52 Message-ID: <20090725203748.87B6811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ogre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28208 Modified Files: ogre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ogre.spec =================================================================== RCS file: /cvs/pkgs/rpms/ogre/devel/ogre.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- ogre.spec 16 Apr 2009 13:13:18 -0000 1.51 +++ ogre.spec 25 Jul 2009 20:37:48 -0000 1.52 @@ -1,6 +1,6 @@ Name: ogre Version: 1.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Object-Oriented Graphics Rendering Engine # LGPLv2+ with exceptions - main library # CC-BY-SA - devel docs @@ -215,6 +215,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Alexey Torkhov - 1.6.2-1 - New upstream release 1.6.2 - Exceptions added to License From jkeating at fedoraproject.org Sat Jul 25 20:38:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:38:02 +0000 (UTC) Subject: rpms/ohm/devel ohm.spec,1.4,1.5 Message-ID: <20090725203802.A8DB211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ohm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28374 Modified Files: ohm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ohm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ohm/devel/ohm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ohm.spec 24 Mar 2009 11:34:53 -0000 1.4 +++ ohm.spec 25 Jul 2009 20:38:02 -0000 1.5 @@ -7,7 +7,7 @@ Summary: Open Hardware Manager Name: ohm Version: 0.1.1 -Release: 9.22.%{alphatag}%{?dist} +Release: 10.22.%{alphatag}%{?dist} URL: http://www.freedesktop.org/Software/ohm Source0: http://people.freedesktop.org/~hughsient/temp/%{name}-%{version}-1.%alphatag.tar.gz @@ -139,6 +139,9 @@ fi %{_includedir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.1-10.22.20080921git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Robert Scheck - 0.1.1-9.22.20080921git.olpc - Set ExclusiveArch %%{ix86} so it builds for F-11 From jkeating at fedoraproject.org Sat Jul 25 20:38:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:38:16 +0000 (UTC) Subject: rpms/oidentd/devel oidentd.spec,1.17,1.18 Message-ID: <20090725203816.55DF111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oidentd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28530 Modified Files: oidentd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oidentd.spec =================================================================== RCS file: /cvs/pkgs/rpms/oidentd/devel/oidentd.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- oidentd.spec 11 Apr 2009 11:52:10 -0000 1.17 +++ oidentd.spec 25 Jul 2009 20:38:16 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Implementation of the RFC1413 identification server Name: oidentd Version: 2.0.8 -Release: 7%{?dist} +Release: 8%{?dist} # A few files taken from other projects are GPLv2+, but the core of oidentd # is definitely GPLv2 only. License: GPLv2 @@ -86,6 +86,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Matthias Saou 2.0.8-7 - Update init script (#247006). - Mark the ghosted config files as noreplace just in case. From jkeating at fedoraproject.org Sat Jul 25 20:38:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:38:32 +0000 (UTC) Subject: rpms/ois/devel ois.spec,1.5,1.6 Message-ID: <20090725203832.1927011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ois/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28666 Modified Files: ois.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ois.spec =================================================================== RCS file: /cvs/pkgs/rpms/ois/devel/ois.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ois.spec 26 Feb 2009 08:01:43 -0000 1.5 +++ ois.spec 25 Jul 2009 20:38:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: ois Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Open Input System, OO gaming input library Group: System Environment/Libraries License: zlib @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:38:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:38:45 +0000 (UTC) Subject: rpms/oldstandard-sfd-fonts/devel oldstandard-sfd-fonts.spec, 1.5, 1.6 Message-ID: <20090725203845.E9E3811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oldstandard-sfd-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28842 Modified Files: oldstandard-sfd-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oldstandard-sfd-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/oldstandard-sfd-fonts/devel/oldstandard-sfd-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- oldstandard-sfd-fonts.spec 15 Mar 2009 21:11:02 -0000 1.5 +++ oldstandard-sfd-fonts.spec 25 Jul 2009 20:38:45 -0000 1.6 @@ -3,7 +3,7 @@ Name: %{fontname}-sfd-fonts Version: 2.0.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Old Standard True-Type Fonts Group: User Interface/X @@ -80,6 +80,9 @@ rm -rf %{buildroot} %dir %{_fontdir}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Ankur Sinha - 2.0.2-7 - changed in accordance with #490369 From jkeating at fedoraproject.org Sat Jul 25 20:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:38:59 +0000 (UTC) Subject: rpms/olpc-contents/devel olpc-contents.spec,1.1,1.2 Message-ID: <20090725203859.2ACD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-contents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28992 Modified Files: olpc-contents.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-contents.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-contents/devel/olpc-contents.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-contents.spec 17 Jul 2009 16:30:40 -0000 1.1 +++ olpc-contents.spec 25 Jul 2009 20:38:58 -0000 1.2 @@ -1,6 +1,6 @@ Name: olpc-contents Version: 2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC contents manifest tools License: GPLv2+ and Public Domain @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Daniel Drake - 2.6-1 - Initial import From jkeating at fedoraproject.org Sat Jul 25 20:39:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:39:12 +0000 (UTC) Subject: rpms/olpc-kbdshim/devel olpc-kbdshim.spec,1.4,1.5 Message-ID: <20090725203912.A98B411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-kbdshim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29131 Modified Files: olpc-kbdshim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-kbdshim.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/devel/olpc-kbdshim.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- olpc-kbdshim.spec 11 Jun 2009 03:24:16 -0000 1.4 +++ olpc-kbdshim.spec 25 Jul 2009 20:39:12 -0000 1.5 @@ -1,7 +1,7 @@ Summary: OLPC XO keyboard support daemon Name: olpc-kbdshim Version: 6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/olpc-kbdshim/tree/README @@ -58,6 +58,9 @@ echo A system restart may be necessary f echo proper initialization of olpc-kbdshim-hal. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Paul Fox - 6-4 - 6-3 From jkeating at fedoraproject.org Sat Jul 25 20:39:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:39:25 +0000 (UTC) Subject: rpms/olpc-library/devel olpc-library.spec,1.1,1.2 Message-ID: <20090725203925.42A5E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-library/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29256 Modified Files: olpc-library.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-library.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-library/devel/olpc-library.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-library.spec 11 Jul 2009 22:38:43 -0000 1.1 +++ olpc-library.spec 25 Jul 2009 20:39:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: olpc-library Version: 2.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC library files and scripts # library.js is AGPLv1 @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Daniel Drake - 2.0.2-1 - Initial import From jkeating at fedoraproject.org Sat Jul 25 20:39:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:39:41 +0000 (UTC) Subject: rpms/olpc-netutils/devel olpc-netutils.spec,1.3,1.4 Message-ID: <20090725203941.DC55611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-netutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29428 Modified Files: olpc-netutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-netutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-netutils/devel/olpc-netutils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- olpc-netutils.spec 26 Feb 2009 08:05:25 -0000 1.3 +++ olpc-netutils.spec 25 Jul 2009 20:39:41 -0000 1.4 @@ -1,6 +1,6 @@ Name: olpc-netutils Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OLPC network utilities Group: System Environment/Base @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:39:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:39:57 +0000 (UTC) Subject: rpms/olpc-switch-desktop/devel olpc-switch-desktop.spec,1.1,1.2 Message-ID: <20090725203957.D9F5D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-switch-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29568 Modified Files: olpc-switch-desktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-switch-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-switch-desktop/devel/olpc-switch-desktop.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-switch-desktop.spec 16 Jul 2009 09:23:50 -0000 1.1 +++ olpc-switch-desktop.spec 25 Jul 2009 20:39:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: olpc-switch-desktop Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC desktop switching utilities License: GPLv2+ @@ -59,6 +59,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Daniel Drake - 0.6-1 - Initial import From jkeating at fedoraproject.org Sat Jul 25 20:40:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:40:13 +0000 (UTC) Subject: rpms/olpc-update/devel olpc-update.spec,1.1,1.2 Message-ID: <20090725204013.CA54411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-update/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29745 Modified Files: olpc-update.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-update.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-update/devel/olpc-update.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-update.spec 17 Jul 2009 16:41:06 -0000 1.1 +++ olpc-update.spec 25 Jul 2009 20:40:13 -0000 1.2 @@ -1,6 +1,6 @@ Name: olpc-update Version: 2.19 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OLPC system update tools Group: System Environment/Base @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Daniel Drake - 2.19-2 - forgot to put spec file in CVS From jkeating at fedoraproject.org Sat Jul 25 20:40:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:40:33 +0000 (UTC) Subject: rpms/olpc-utils/devel olpc-utils.spec,1.11,1.12 Message-ID: <20090725204033.252CA11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/olpc-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29914 Modified Files: olpc-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: olpc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-utils/devel/olpc-utils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- olpc-utils.spec 6 Jul 2009 13:55:29 -0000 1.11 +++ olpc-utils.spec 25 Jul 2009 20:40:32 -0000 1.12 @@ -1,6 +1,6 @@ Name: olpc-utils Version: 1.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OLPC utilities URL: http://dev.laptop.org/git?p=projects/olpc-utils;a=summary Group: System Environment/Base @@ -81,6 +81,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/ConsoleKit/run-session.d/pam-console-compat.ck %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Daniel Drake 1.0.3-1 - Bug fix release From jkeating at fedoraproject.org Sat Jul 25 20:40:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:40:56 +0000 (UTC) Subject: rpms/onboard/devel onboard.spec,1.2,1.3 Message-ID: <20090725204056.605E411C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/onboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30149 Modified Files: onboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: onboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/onboard/devel/onboard.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- onboard.spec 26 Feb 2009 08:08:15 -0000 1.2 +++ onboard.spec 25 Jul 2009 20:40:55 -0000 1.3 @@ -2,7 +2,7 @@ Name: onboard Version: 0.91.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple on-screen Keyboard Group: User Interface/Desktops @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.91.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:41:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:41:13 +0000 (UTC) Subject: rpms/oneko/devel oneko.spec,1.5,1.6 Message-ID: <20090725204113.827CF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oneko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30358 Modified Files: oneko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oneko.spec =================================================================== RCS file: /cvs/pkgs/rpms/oneko/devel/oneko.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- oneko.spec 26 Feb 2009 08:09:14 -0000 1.5 +++ oneko.spec 25 Jul 2009 20:41:13 -0000 1.6 @@ -1,7 +1,7 @@ Name: oneko Summary: Cat chases the cursor Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} License: Public Domain Group: Amusements/Graphics # Modified Source to remove BSD images, due to copyright. @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:41:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:41:29 +0000 (UTC) Subject: rpms/onesixtyone/devel onesixtyone.spec,1.4,1.5 Message-ID: <20090725204129.85B9D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/onesixtyone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30507 Modified Files: onesixtyone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: onesixtyone.spec =================================================================== RCS file: /cvs/pkgs/rpms/onesixtyone/devel/onesixtyone.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- onesixtyone.spec 26 Feb 2009 08:10:17 -0000 1.4 +++ onesixtyone.spec 25 Jul 2009 20:41:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: onesixtyone Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An efficient SNMP scanner Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:41:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:41:44 +0000 (UTC) Subject: rpms/online-desktop/devel online-desktop.spec,1.33,1.34 Message-ID: <20090725204144.DB77B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/online-desktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30659 Modified Files: online-desktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: online-desktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/online-desktop/devel/online-desktop.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- online-desktop.spec 26 Feb 2009 08:11:17 -0000 1.33 +++ online-desktop.spec 25 Jul 2009 20:41:44 -0000 1.34 @@ -3,7 +3,7 @@ Name: online-desktop Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Desktop built around web sites and online services Group: Applications/Internet @@ -201,6 +201,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:42:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:42:00 +0000 (UTC) Subject: rpms/ooo2txt/devel ooo2txt.spec,1.4,1.5 Message-ID: <20090725204200.B9CB811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ooo2txt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30795 Modified Files: ooo2txt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ooo2txt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ooo2txt/devel/ooo2txt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ooo2txt.spec 26 Feb 2009 08:12:17 -0000 1.4 +++ ooo2txt.spec 25 Jul 2009 20:42:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: ooo2txt Version: 0.0.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert OpenOffice documents to simple text Group: Applications/Text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/ooo2txt.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:42:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:42:16 +0000 (UTC) Subject: rpms/oooqs2/devel oooqs2.spec,1.8,1.9 Message-ID: <20090725204216.8D53D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oooqs2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30962 Modified Files: oooqs2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oooqs2.spec =================================================================== RCS file: /cvs/pkgs/rpms/oooqs2/devel/oooqs2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- oooqs2.spec 26 Feb 2009 08:13:15 -0000 1.8 +++ oooqs2.spec 25 Jul 2009 20:42:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: oooqs2 Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OpenOffice.org Quickstarter 2 Group: Applications/Productivity @@ -81,6 +81,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:42:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:42:31 +0000 (UTC) Subject: rpms/oorexx/devel oorexx.spec,1.11,1.12 Message-ID: <20090725204231.7735811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oorexx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31091 Modified Files: oorexx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oorexx.spec =================================================================== RCS file: /cvs/pkgs/rpms/oorexx/devel/oorexx.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- oorexx.spec 26 Feb 2009 08:14:14 -0000 1.11 +++ oorexx.spec 25 Jul 2009 20:42:31 -0000 1.12 @@ -1,6 +1,6 @@ Name: oorexx Version: 3.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Open Object Rexx Group: Development/Languages @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:42:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:42:48 +0000 (UTC) Subject: rpms/opal/devel opal.spec,1.53,1.54 Message-ID: <20090725204248.C93CD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31270 Modified Files: opal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opal.spec =================================================================== RCS file: /cvs/pkgs/rpms/opal/devel/opal.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- opal.spec 6 Jul 2009 20:53:27 -0000 1.53 +++ opal.spec 25 Jul 2009 20:42:48 -0000 1.54 @@ -1,7 +1,7 @@ Name: opal Summary: Open Phone Abstraction Library Version: 3.6.4 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.opalvoip.org/ # We cannot use unmodified upstream source code because it contains the # non-free iLBC codec. @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/opal.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Peter Robinson - 3.6.4-2 - Increment required ptlib version From jkeating at fedoraproject.org Sat Jul 25 20:43:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:43:04 +0000 (UTC) Subject: rpms/open-cobol/devel open-cobol.spec,1.8,1.9 Message-ID: <20090725204304.C03FD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/open-cobol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31428 Modified Files: open-cobol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: open-cobol.spec =================================================================== RCS file: /cvs/pkgs/rpms/open-cobol/devel/open-cobol.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- open-cobol.spec 23 Mar 2009 20:51:35 -0000 1.8 +++ open-cobol.spec 25 Jul 2009 20:43:04 -0000 1.9 @@ -2,7 +2,7 @@ Name: open-cobol Version: 1.1 -Release: 0.20090206%{?dist} +Release: 0.20090207%{?dist} Summary: OpenCOBOL - COBOL compiler Group: Development/Languages @@ -105,6 +105,9 @@ fi %postun -n libcob -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-0.20090207 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Jochen Schmitt 1.1-0.20090206 - Adapt version to naming guidelines From jkeating at fedoraproject.org Sat Jul 25 20:43:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:43:20 +0000 (UTC) Subject: rpms/openais/devel openais.spec,1.46,1.47 Message-ID: <20090725204320.C86E311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openais/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31596 Modified Files: openais.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/devel/openais.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- openais.spec 8 Jul 2009 20:13:32 -0000 1.46 +++ openais.spec 25 Jul 2009 20:43:20 -0000 1.47 @@ -3,7 +3,7 @@ Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs Version: 1.0.0 -Release: 1%{?alphatag:.%{alphatag}}%{?dist} +Release: 2%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://developer.osdl.org/dev/openais/ @@ -155,6 +155,9 @@ This package contains the include files %{_libdir}/pkgconfig/*.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Fabio M. Di Nitto - 1.0.0-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 20:43:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:43:37 +0000 (UTC) Subject: rpms/openal/devel openal.spec,1.29,1.30 Message-ID: <20090725204337.E4A7311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31768 Modified Files: openal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openal.spec =================================================================== RCS file: /cvs/pkgs/rpms/openal/devel/openal.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- openal.spec 3 Mar 2009 20:07:56 -0000 1.29 +++ openal.spec 25 Jul 2009 20:43:37 -0000 1.30 @@ -1,6 +1,6 @@ Name: openal Version: 0.0.9 -Release: 0.17.20060204cvs%{?dist} +Release: 0.18.20060204cvs%{?dist} Summary: Open Audio Library Group: System Environment/Libraries @@ -114,6 +114,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.9-0.18.20060204cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Robert Scheck - 0.0.9-0.17.20060204cvs - Re-diffed the openal arch and gcc 4.3 patches for no fuzz From jkeating at fedoraproject.org Sat Jul 25 20:43:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:43:59 +0000 (UTC) Subject: rpms/openalchemist/devel openalchemist.spec,1.3,1.4 Message-ID: <20090725204359.6623411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openalchemist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31964 Modified Files: openalchemist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openalchemist.spec =================================================================== RCS file: /cvs/pkgs/rpms/openalchemist/devel/openalchemist.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openalchemist.spec 18 May 2009 19:06:23 -0000 1.3 +++ openalchemist.spec 25 Jul 2009 20:43:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: openalchemist Version: 0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Reflection game Group: Amusements/Games @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Xavier Bachelot 0.3-6 - Rebuild for ClanLib 1.0. From jkeating at fedoraproject.org Sat Jul 25 20:44:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:44:16 +0000 (UTC) Subject: rpms/openarena/devel openarena.spec,1.15,1.16 Message-ID: <20090725204416.856D911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openarena/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32144 Modified Files: openarena.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openarena.spec =================================================================== RCS file: /cvs/pkgs/rpms/openarena/devel/openarena.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- openarena.spec 26 Feb 2009 08:20:12 -0000 1.15 +++ openarena.spec 25 Jul 2009 20:44:16 -0000 1.16 @@ -1,7 +1,7 @@ %define ver %(echo %version | tr -d .) Name: openarena Version: 0.7.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Open source first person shooter Group: Amusements/Games License: GPLv2 @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:44:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:44:33 +0000 (UTC) Subject: rpms/openbabel/devel openbabel.spec,1.46,1.47 Message-ID: <20090725204433.3C72D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openbabel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32322 Modified Files: openbabel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openbabel.spec =================================================================== RCS file: /cvs/pkgs/rpms/openbabel/devel/openbabel.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- openbabel.spec 1 Mar 2009 12:18:33 -0000 1.46 +++ openbabel.spec 25 Jul 2009 20:44:32 -0000 1.47 @@ -9,7 +9,7 @@ Name: openbabel Version: 2.2.1 -Release: 0.1.%{beta_ver}%{?dist} +Release: 0.2.%{beta_ver}%{?dist} Summary: Chemistry software file format converter License: GPLv2 Group: Applications/File @@ -183,6 +183,9 @@ popd %{ruby_sitearch}/openbabel.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.1-0.2.b3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Dominik Mierzejewski 2.2.1-0.1.b3 - update to 2.2.1 beta3 - drop some obsolete workarounds From jkeating at fedoraproject.org Sat Jul 25 20:44:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:44:47 +0000 (UTC) Subject: rpms/openbios/devel openbios.spec,1.4,1.5 Message-ID: <20090725204447.8E29711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openbios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32500 Modified Files: openbios.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openbios.spec =================================================================== RCS file: /cvs/pkgs/rpms/openbios/devel/openbios.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openbios.spec 21 May 2009 16:01:29 -0000 1.4 +++ openbios.spec 25 Jul 2009 20:44:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: openbios Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OpenBios implementation of IEEE 1275-1994 Group: Applications/Emulators License: GPLv2 @@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Mark McLoughlin - 1.0-1 - Replace previous attempt to fix bug #494075 with fix from Pavel Roskin - Drop the 0.x.463 numbering; we are using official upstream 1.0 From jkeating at fedoraproject.org Sat Jul 25 20:45:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:45:01 +0000 (UTC) Subject: rpms/openbox/devel openbox.spec,1.42,1.43 Message-ID: <20090725204501.8BEAE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32664 Modified Files: openbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/openbox/devel/openbox.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- openbox.spec 20 Jul 2009 20:55:37 -0000 1.42 +++ openbox.spec 25 Jul 2009 20:45:01 -0000 1.43 @@ -1,6 +1,6 @@ Name: openbox Version: 3.4.7.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A highly configurable and standards-compliant X11 window manager Group: User Interface/Desktops @@ -146,6 +146,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.4.7.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Luke Macken - 3.4.7.2-8 - Require the gnome-menus package to get our xdg-menu dynamic pipe menu to work out of the box. From jkeating at fedoraproject.org Sat Jul 25 20:45:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:45:16 +0000 (UTC) Subject: rpms/opencdk/devel opencdk.spec,1.17,1.18 Message-ID: <20090725204516.C54F511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opencdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv364 Modified Files: opencdk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opencdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/opencdk/devel/opencdk.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- opencdk.spec 26 Feb 2009 08:23:08 -0000 1.17 +++ opencdk.spec 25 Jul 2009 20:45:16 -0000 1.18 @@ -3,7 +3,7 @@ Summary: Provides basic parts of the OpenPGP message format Name: opencdk Version: 0.6.6 -Release: %release_func 3 +Release: %release_func 4 License: GPLv2+ Group: System Environment/Libraries @@ -92,6 +92,9 @@ rm -rf "$RPM_BUILD_ROOT" %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:45:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:45:30 +0000 (UTC) Subject: rpms/openchange/devel openchange.spec,1.8,1.9 Message-ID: <20090725204530.52F7711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openchange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv539 Modified Files: openchange.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openchange.spec =================================================================== RCS file: /cvs/pkgs/rpms/openchange/devel/openchange.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openchange.spec 29 Jun 2009 18:12:06 -0000 1.8 +++ openchange.spec 25 Jul 2009 20:45:30 -0000 1.9 @@ -10,7 +10,7 @@ Name: openchange Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/System Summary: Provides access to Microsoft Exchange servers using native protocols License: GPLv3+ and Public Domain @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mapistore_backends/mapistore_sqlite3.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Matthew Barnes - 0.8.2-3 - Rename libmapi so as not to conflict with Zarafa (RH bug #505783). From jkeating at fedoraproject.org Sat Jul 25 20:45:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:45:45 +0000 (UTC) Subject: rpms/openclipart/devel openclipart.spec,1.2,1.3 Message-ID: <20090725204545.EA61111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openclipart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv677 Modified Files: openclipart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openclipart.spec =================================================================== RCS file: /cvs/pkgs/rpms/openclipart/devel/openclipart.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openclipart.spec 26 Feb 2009 08:24:08 -0000 1.2 +++ openclipart.spec 25 Jul 2009 20:45:45 -0000 1.3 @@ -1,6 +1,6 @@ Name: openclipart Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open Clip Art Library Group: Applications/Publishing @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:45:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:45:59 +0000 (UTC) Subject: rpms/openconnect/devel openconnect.spec,1.13,1.14 Message-ID: <20090725204559.4035611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openconnect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv820 Modified Files: openconnect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openconnect.spec =================================================================== RCS file: /cvs/pkgs/rpms/openconnect/devel/openconnect.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- openconnect.spec 24 Jun 2009 17:39:11 -0000 1.13 +++ openconnect.spec 25 Jul 2009 20:45:59 -0000 1.14 @@ -1,6 +1,6 @@ Name: openconnect Version: 2.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open client for Cisco AnyConnect VPN Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 David Woodhouse - 2.01-1 - Update to 2.01. From jkeating at fedoraproject.org Sat Jul 25 20:46:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:46:14 +0000 (UTC) Subject: rpms/opencsv/devel opencsv.spec,1.2,1.3 Message-ID: <20090725204614.6740811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opencsv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv981 Modified Files: opencsv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opencsv.spec =================================================================== RCS file: /cvs/pkgs/rpms/opencsv/devel/opencsv.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- opencsv.spec 26 Feb 2009 08:25:57 -0000 1.2 +++ opencsv.spec 25 Jul 2009 20:46:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: opencsv Version: 1.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A very simple csv (comma-separated values) parser library for Java Group: Development/Libraries License: ASL 2.0 @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:46:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:46:30 +0000 (UTC) Subject: rpms/openct/devel openct.spec,1.37,1.38 Message-ID: <20090725204630.B9CB611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openct/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1146 Modified Files: openct.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openct.spec =================================================================== RCS file: /cvs/pkgs/rpms/openct/devel/openct.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- openct.spec 15 Jun 2009 21:30:00 -0000 1.37 +++ openct.spec 25 Jul 2009 20:46:30 -0000 1.38 @@ -4,7 +4,7 @@ Name: openct Version: 0.6.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Middleware framework for smart card terminals Group: System Environment/Libraries @@ -179,6 +179,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Tomas Mraz - 0.6.16-1 - Update to latest upstream - Prefer udevname to udevinfo (#506163) From jkeating at fedoraproject.org Sat Jul 25 20:46:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:46:47 +0000 (UTC) Subject: rpms/opencv/devel opencv.spec,1.33,1.34 Message-ID: <20090725204647.CB66D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opencv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1326 Modified Files: opencv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opencv.spec =================================================================== RCS file: /cvs/pkgs/rpms/opencv/devel/opencv.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- opencv.spec 16 Jul 2009 10:56:36 -0000 1.33 +++ opencv.spec 25 Jul 2009 20:46:47 -0000 1.34 @@ -3,7 +3,7 @@ Name: opencv Version: 1.1.0 -Release: 0.3.pre1%{?dist} +Release: 0.4.pre1%{?dist} Summary: Collection of algorithms for computer vision Group: Development/Libraries @@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-0.4.pre1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.1.0-0.3.pre1 - Build with gstreamer support - #491223 - Backport gcc43 fix from trunk From jkeating at fedoraproject.org Sat Jul 25 20:47:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:47:04 +0000 (UTC) Subject: rpms/opengl-games-utils/devel opengl-games-utils.spec,1.7,1.8 Message-ID: <20090725204704.1D10511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opengl-games-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1486 Modified Files: opengl-games-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opengl-games-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/opengl-games-utils/devel/opengl-games-utils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- opengl-games-utils.spec 10 Apr 2009 13:32:19 -0000 1.7 +++ opengl-games-utils.spec 25 Jul 2009 20:47:03 -0000 1.8 @@ -1,6 +1,6 @@ Name: opengl-games-utils Version: 0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Utilities to check proper 3d support before launching 3d games Group: Amusements/Games License: Public Domain @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Hans de Goede 0.1-8 - Recognize software rendering as such with new Mesa which always says DRI = Yes (rh 494174) From jkeating at fedoraproject.org Sat Jul 25 20:47:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:47:20 +0000 (UTC) Subject: rpms/opengrok/devel opengrok.spec,1.8,1.9 Message-ID: <20090725204720.BC9FA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opengrok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1675 Modified Files: opengrok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opengrok.spec =================================================================== RCS file: /cvs/pkgs/rpms/opengrok/devel/opengrok.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- opengrok.spec 12 Jul 2009 16:49:12 -0000 1.8 +++ opengrok.spec 25 Jul 2009 20:47:20 -0000 1.9 @@ -4,7 +4,7 @@ Name: opengrok Version: 0.8 -Release: 0.1.20090712hg%{?dist} +Release: 0.2.20090712hg%{?dist} Summary: Source browser and indexer Group: Development/Tools @@ -231,6 +231,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-0.2.20090712hg +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Lubomir Rintel - 0.8-0.1.20090712hg - Update to latest Mercurial snapshot - bconds are nice, use them From jkeating at fedoraproject.org Sat Jul 25 20:47:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:47:35 +0000 (UTC) Subject: rpms/openhpi/devel openhpi.spec,1.75,1.76 Message-ID: <20090725204735.E006D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openhpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1800 Modified Files: openhpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openhpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/openhpi/devel/openhpi.spec,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- openhpi.spec 15 Jul 2009 07:31:52 -0000 1.75 +++ openhpi.spec 25 Jul 2009 20:47:35 -0000 1.76 @@ -1,7 +1,7 @@ Summary: Hardware Platform Interface library and tools Name: openhpi Version: 2.14.0 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Base URL: http://www.openhpi.org @@ -140,6 +140,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.14.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 14 2009 Dan Horak - 2.14.0-3 - add BR: libuuid-devel From jkeating at fedoraproject.org Sat Jul 25 20:47:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:47:53 +0000 (UTC) Subject: rpms/openhpi-subagent/devel openhpi-subagent.spec,1.4,1.5 Message-ID: <20090725204753.DE48811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openhpi-subagent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1951 Modified Files: openhpi-subagent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openhpi-subagent.spec =================================================================== RCS file: /cvs/pkgs/rpms/openhpi-subagent/devel/openhpi-subagent.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openhpi-subagent.spec 26 Feb 2009 08:30:40 -0000 1.4 +++ openhpi-subagent.spec 25 Jul 2009 20:47:53 -0000 1.5 @@ -1,6 +1,6 @@ Name: openhpi-subagent Version: 2.3.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: NetSNMP subagent for OpenHPI Group: System Environment/Base @@ -67,6 +67,9 @@ fi %{_datadir}/snmp/mibs/*.mib %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:48:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:48:10 +0000 (UTC) Subject: rpms/openjade/devel openjade.spec,1.46,1.47 Message-ID: <20090725204810.577F611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openjade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2125 Modified Files: openjade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openjade.spec =================================================================== RCS file: /cvs/pkgs/rpms/openjade/devel/openjade.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- openjade.spec 27 Feb 2009 13:16:53 -0000 1.46 +++ openjade.spec 25 Jul 2009 20:48:10 -0000 1.47 @@ -1,7 +1,7 @@ Summary: A DSSSL implementation Name: openjade Version: 1.3.2 -Release: 34%{?dist} +Release: 35%{?dist} Prereq: sgml-common >= 0.5 Source: http://download.sourceforge.net/openjade/openjade-%{version}.tar.gz Patch0: openjade-ppc64.patch @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sgml/%{name}-%{version} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.2-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ondrej Vasik 1.3.2-34 - disable parallel build (culprit of build failure) - http://bugs.gentoo.org/181651 From jkeating at fedoraproject.org Sat Jul 25 20:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:48:26 +0000 (UTC) Subject: rpms/openjpeg/devel openjpeg.spec,1.8,1.9 Message-ID: <20090725204826.A664511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openjpeg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2305 Modified Files: openjpeg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openjpeg.spec =================================================================== RCS file: /cvs/pkgs/rpms/openjpeg/devel/openjpeg.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openjpeg.spec 19 Jun 2009 15:05:04 -0000 1.8 +++ openjpeg.spec 25 Jul 2009 20:48:26 -0000 1.9 @@ -3,7 +3,7 @@ Name: openjpeg Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: OpenJPEG command line tools Group: Applications/Multimedia @@ -129,6 +129,9 @@ rm -rf %{buildroot} %{_libdir}/libopenjpeg.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Rex Dieter - 1.3-5 - libopenjpeg has undefined references (#467661) - openjpeg.h is installed in a directory different from upstream's default (#484887) From jkeating at fedoraproject.org Sat Jul 25 20:48:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:48:43 +0000 (UTC) Subject: rpms/openlayers/devel openlayers.spec,1.3,1.4 Message-ID: <20090725204843.9484511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openlayers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2472 Modified Files: openlayers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openlayers.spec =================================================================== RCS file: /cvs/pkgs/rpms/openlayers/devel/openlayers.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openlayers.spec 4 Jul 2009 16:38:59 -0000 1.3 +++ openlayers.spec 25 Jul 2009 20:48:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: openlayers Version: 2.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A JavaScript library for displaying map data in web browsers Group: Applications/Publishing License: BSD @@ -138,6 +138,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Mathieu Bridon - 2.8-1 - New upstream version: 2.8 - see http://trac.openlayers.org/wiki/Release/2.8/Notes From jkeating at fedoraproject.org Sat Jul 25 20:49:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:49:05 +0000 (UTC) Subject: rpms/openldap/devel openldap.spec,1.143,1.144 Message-ID: <20090725204905.3F93E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2637 Modified Files: openldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/openldap/devel/openldap.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- openldap.spec 1 Jul 2009 12:56:24 -0000 1.143 +++ openldap.spec 25 Jul 2009 20:49:05 -0000 1.144 @@ -11,7 +11,7 @@ Summary: LDAP support libraries Name: openldap Version: %{version} -Release: 1%{?dist} +Release: 2%{?dist} License: OpenLDAP Group: System Environment/Daemons Source0: ftp://ftp.OpenLDAP.org/pub/OpenLDAP/openldap-release/openldap-%{version}.tgz @@ -604,6 +604,9 @@ fi %attr(0644,root,root) %{evolution_connector_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Jan Zeleny 2.4.16-1 - rebase of openldap to 2.4.16 - fixed minor issue in spec file (output looking interactive From jkeating at fedoraproject.org Sat Jul 25 20:49:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:49:21 +0000 (UTC) Subject: rpms/openlierox/devel openlierox.spec,1.13,1.14 Message-ID: <20090725204921.7244211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openlierox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2801 Modified Files: openlierox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openlierox.spec =================================================================== RCS file: /cvs/pkgs/rpms/openlierox/devel/openlierox.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- openlierox.spec 26 Feb 2009 19:04:29 -0000 1.13 +++ openlierox.spec 25 Jul 2009 20:49:21 -0000 1.14 @@ -2,7 +2,7 @@ Name: openlierox Version: 0.57 -Release: 0.13.%{prever}%{?dist} +Release: 0.14.%{prever}%{?dist} Summary: Addictive realtime multiplayer 2D shoot-em-up Group: Amusements/Games License: LGPLv2+ @@ -81,6 +81,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.57-0.14.beta8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Hans de Goede 0.57-0.13.beta8 - Fix building with bash 4.0 From jkeating at fedoraproject.org Sat Jul 25 20:49:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:49:36 +0000 (UTC) Subject: rpms/openmpi/devel openmpi.spec,1.39,1.40 Message-ID: <20090725204936.9DB6B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openmpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2960 Modified Files: openmpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openmpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/openmpi/devel/openmpi.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- openmpi.spec 21 Jul 2009 16:28:46 -0000 1.39 +++ openmpi.spec 25 Jul 2009 20:49:36 -0000 1.40 @@ -18,7 +18,7 @@ Name: openmpi%{?cc_name_suffix} Version: 1.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open Message Passing Interface Group: Development/Libraries License: BSD @@ -183,6 +183,9 @@ rm -rf %{buildroot} %{_libdir}/%{mpidir}/share/vampirtrace/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Doug Ledford - 1.3.3-2 - Add MPI_BIN and MPI_LIB to the modules file (related bz511099) From jkeating at fedoraproject.org Sat Jul 25 20:49:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:49:50 +0000 (UTC) Subject: rpms/openmsx/devel openmsx.spec,1.13,1.14 Message-ID: <20090725204950.48CC611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openmsx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3092 Modified Files: openmsx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openmsx.spec =================================================================== RCS file: /cvs/pkgs/rpms/openmsx/devel/openmsx.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- openmsx.spec 6 Jul 2009 10:36:51 -0000 1.13 +++ openmsx.spec 25 Jul 2009 20:49:50 -0000 1.14 @@ -1,6 +1,6 @@ Name: openmsx Version: 0.7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An emulator for the MSX home computer system Group: Applications/Emulators License: GPL+ @@ -151,6 +151,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Hans de Goede 0.7.2-1 - New upstream release 0.7.2 From jkeating at fedoraproject.org Sat Jul 25 20:50:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:50:05 +0000 (UTC) Subject: rpms/openobex/devel openobex.spec,1.36,1.37 Message-ID: <20090725205005.08E8611C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openobex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3218 Modified Files: openobex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openobex.spec =================================================================== RCS file: /cvs/pkgs/rpms/openobex/devel/openobex.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- openobex.spec 26 Feb 2009 08:37:26 -0000 1.36 +++ openobex.spec 25 Jul 2009 20:50:04 -0000 1.37 @@ -1,7 +1,7 @@ Summary: Library for using OBEX Name: openobex Version: 1.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://openobex.sourceforge.net @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:50:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:50:19 +0000 (UTC) Subject: rpms/openoffice-lv/devel openoffice-lv.spec,1.5,1.6 Message-ID: <20090725205019.65FF411C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openoffice-lv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3395 Modified Files: openoffice-lv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openoffice-lv.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice-lv/devel/openoffice-lv.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openoffice-lv.spec 11 Jul 2009 10:36:53 -0000 1.5 +++ openoffice-lv.spec 25 Jul 2009 20:50:19 -0000 1.6 @@ -1,7 +1,7 @@ Name: openoffice-lv Summary: Latvian linguistic dictionaries Version: 0.8 -Release: 0.2.b1%{?dist} +Release: 0.3.b1%{?dist} Source: http://downloads.sourceforge.net/%{name}/lv_LV-0.8b1.zip # Source: http://dict.dv.lv/dl/lv_LV-0.8b1.zip ? Group: Applications/Text @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-0.3.b1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Caolan McNamara - 0.8-0.2.b1 - tidy spec From jkeating at fedoraproject.org Sat Jul 25 20:50:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:50:35 +0000 (UTC) Subject: rpms/openoffice.org-dict-cs_CZ/devel openoffice.org-dict-cs_CZ.spec, 1.10, 1.11 Message-ID: <20090725205035.7259111C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openoffice.org-dict-cs_CZ/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3582 Modified Files: openoffice.org-dict-cs_CZ.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openoffice.org-dict-cs_CZ.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org-dict-cs_CZ/devel/openoffice.org-dict-cs_CZ.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- openoffice.org-dict-cs_CZ.spec 26 Feb 2009 08:39:09 -0000 1.10 +++ openoffice.org-dict-cs_CZ.spec 25 Jul 2009 20:50:35 -0000 1.11 @@ -1,6 +1,6 @@ Name: openoffice.org-dict-cs_CZ Version: 20060303 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Czech spellchecker and hyphenation dictionaries for OpenOffice.org License: GPL+ Group: Applications/Productivity @@ -64,6 +64,9 @@ install -m 644 hyph*.dic $RPM_BUILD_ROOT %{hunspelldir}/cs* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20060303-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20060303-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:50:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:50:50 +0000 (UTC) Subject: rpms/openoffice.org-extendedPDF/devel openoffice.org-extendedPDF.spec, 1.3, 1.4 Message-ID: <20090725205050.5098811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openoffice.org-extendedPDF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3754 Modified Files: openoffice.org-extendedPDF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openoffice.org-extendedPDF.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org-extendedPDF/devel/openoffice.org-extendedPDF.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openoffice.org-extendedPDF.spec 14 Apr 2009 22:09:05 -0000 1.3 +++ openoffice.org-extendedPDF.spec 25 Jul 2009 20:50:50 -0000 1.4 @@ -2,7 +2,7 @@ Name: openoffice.org-extendedPDF Version: 1.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Create PDF with hyperlinks, bookmarks and more Group: Applications/Productivity @@ -100,6 +100,9 @@ unopkg list --shared > /dev/null 2>&1 || %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Orion Poplawski 1.4-6 - Add patch to fix bug #495777 From jkeating at fedoraproject.org Sat Jul 25 20:51:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:51:04 +0000 (UTC) Subject: rpms/openoffice.org-ooolatex/devel openoffice.org-ooolatex.spec, 1.6, 1.7 Message-ID: <20090725205104.DFE3E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openoffice.org-ooolatex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3900 Modified Files: openoffice.org-ooolatex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openoffice.org-ooolatex.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org-ooolatex/devel/openoffice.org-ooolatex.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- openoffice.org-ooolatex.spec 26 Feb 2009 08:41:12 -0000 1.6 +++ openoffice.org-ooolatex.spec 25 Jul 2009 20:51:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: openoffice.org-ooolatex Version: 4.0.0 -Release: 0.6.beta2%{?dist}.1 +Release: 0.7.beta2%{?dist}.1 Summary: Support for embedded LaTeX in Impress/Writer documents Group: Applications/Productivity @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %doc README pkg-licence/gpl_GB.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0.0-0.7.beta2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.0.0-0.6.beta2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:51:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:51:19 +0000 (UTC) Subject: rpms/openoffice.org-voikko/devel openoffice.org-voikko.spec, 1.21, 1.22 Message-ID: <20090725205119.6645011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openoffice.org-voikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4019 Modified Files: openoffice.org-voikko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openoffice.org-voikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/openoffice.org-voikko/devel/openoffice.org-voikko.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- openoffice.org-voikko.spec 2 May 2009 10:51:09 -0000 1.21 +++ openoffice.org-voikko.spec 25 Jul 2009 20:51:19 -0000 1.22 @@ -3,7 +3,7 @@ # tarballs match. Name: openoffice.org-voikko Version: 3.1 -Release: 0.2.rc2%{?dist} +Release: 0.3.rc2%{?dist} Summary: Finnish spellchecker and hyphenator extension for OpenOffice.org Group: Applications/Productivity @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1-0.3.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Ville-Pekka Vainio - 3.1-0.2.rc2 - New release candidate From jkeating at fedoraproject.org Sat Jul 25 20:51:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:51:35 +0000 (UTC) Subject: rpms/opensc/devel opensc.spec,1.45,1.46 Message-ID: <20090725205135.23A3F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opensc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4163 Modified Files: opensc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opensc.spec =================================================================== RCS file: /cvs/pkgs/rpms/opensc/devel/opensc.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- opensc.spec 15 Jun 2009 20:51:23 -0000 1.45 +++ opensc.spec 25 Jul 2009 20:51:34 -0000 1.46 @@ -2,7 +2,7 @@ Name: opensc Version: 0.11.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Smart card library and applications Group: System Environment/Libraries @@ -153,6 +153,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Tomas Mraz - 0.11.8-2 - Rebuilt with new openct From jkeating at fedoraproject.org Sat Jul 25 20:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:51:53 +0000 (UTC) Subject: rpms/openscada/devel openscada.spec,1.8,1.9 Message-ID: <20090725205153.1BDC811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openscada/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4324 Modified Files: openscada.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/devel/openscada.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openscada.spec 14 Jul 2009 11:35:08 -0000 1.8 +++ openscada.spec 25 Jul 2009 20:51:52 -0000 1.9 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 9%{?dist} +Release: 10%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -1208,6 +1208,9 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov - Somes cosmetics. From jkeating at fedoraproject.org Sat Jul 25 20:52:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:52:09 +0000 (UTC) Subject: rpms/openscap/devel openscap.spec,1.3,1.4 Message-ID: <20090725205209.9A94F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openscap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4478 Modified Files: openscap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openscap.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscap/devel/openscap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openscap.spec 30 Apr 2009 11:57:28 -0000 1.3 +++ openscap.spec 25 Jul 2009 20:52:09 -0000 1.4 @@ -3,7 +3,7 @@ Name: openscap Version: 0.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Set of open source libraries enabling integration of the SCAP line of standards Group: System Environment/Libraries License: LGPLv2+ @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Peter Vrabec 0.3.3-1 - upgrade From jkeating at fedoraproject.org Sat Jul 25 20:52:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:52:26 +0000 (UTC) Subject: rpms/openser/devel openser.spec,1.31,1.32 Message-ID: <20090725205226.5CA7511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4625 Modified Files: openser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openser.spec =================================================================== RCS file: /cvs/pkgs/rpms/openser/devel/openser.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- openser.spec 2 Mar 2009 16:22:41 -0000 1.31 +++ openser.spec 25 Jul 2009 20:52:26 -0000 1.32 @@ -10,7 +10,7 @@ Summary: Open Source SIP Server Name: openser Version: 1.3.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://www.kamailio.org/pub/%{name}/%{version}/src/%{name}-%{version}-tls_src.tar.gz @@ -847,6 +847,9 @@ fi %doc docdir/README.xmpp %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Jan ONDREJ (SAL) - 1.3.4-6 - allow build of this package on fedora<=10 From jkeating at fedoraproject.org Sat Jul 25 20:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:52:47 +0000 (UTC) Subject: rpms/openslp/devel openslp.spec,1.20,1.21 Message-ID: <20090725205247.AE82711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openslp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4818 Modified Files: openslp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openslp.spec =================================================================== RCS file: /cvs/pkgs/rpms/openslp/devel/openslp.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- openslp.spec 26 Feb 2009 08:45:35 -0000 1.20 +++ openslp.spec 25 Jul 2009 20:52:47 -0000 1.21 @@ -2,7 +2,7 @@ Summary: Open implementation of Service Location Protocol V2 Name: openslp Version: 1.2.1 -Release: 11%{?dist} +Release: 12%{?dist} Group: System Environment/Libraries License: BSD @@ -139,6 +139,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:53:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:53:04 +0000 (UTC) Subject: rpms/opensm/devel opensm.spec,1.6,1.7 Message-ID: <20090725205304.24E4C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opensm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4972 Modified Files: opensm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opensm.spec =================================================================== RCS file: /cvs/pkgs/rpms/opensm/devel/opensm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- opensm.spec 20 Jul 2009 20:06:57 -0000 1.6 +++ opensm.spec 25 Jul 2009 20:53:03 -0000 1.7 @@ -1,6 +1,6 @@ Name: opensm Version: 3.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OpenIB InfiniBand Subnet Manager and management utilities Group: System Environment/Daemons License: GPLv2 or BSD @@ -108,6 +108,9 @@ fi %{_libdir}/lib*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Doug Ledford - 3.3.2-1 - Update to latest upstream version From jkeating at fedoraproject.org Sat Jul 25 20:53:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:53:20 +0000 (UTC) Subject: rpms/opensp/devel opensp.spec,1.23,1.24 Message-ID: <20090725205320.5914811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opensp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5123 Modified Files: opensp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opensp.spec =================================================================== RCS file: /cvs/pkgs/rpms/opensp/devel/opensp.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- opensp.spec 26 Feb 2009 08:47:36 -0000 1.23 +++ opensp.spec 25 Jul 2009 20:53:20 -0000 1.24 @@ -1,7 +1,7 @@ Summary: SGML and XML parser Name: opensp Version: 1.5.2 -Release: 11%{?dist} +Release: 12%{?dist} Requires: sgml-common >= 0.5 URL: http://openjade.sourceforge.net/ Source: http://download.sourceforge.net/openjade/OpenSP-%{version}.tar.gz @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:53:39 +0000 (UTC) Subject: rpms/openssh/devel openssh.spec,1.153,1.154 Message-ID: <20090725205339.0D01F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5288 Modified Files: openssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh/devel/openssh.spec,v retrieving revision 1.153 retrieving revision 1.154 diff -u -p -r1.153 -r1.154 --- openssh.spec 24 Jul 2009 06:15:35 -0000 1.153 +++ openssh.spec 25 Jul 2009 20:53:38 -0000 1.154 @@ -63,7 +63,7 @@ Summary: An open source implementation of SSH protocol versions 1 and 2 Name: openssh Version: 5.2p1 -Release: 15%{?dist}%{?rescue_rel} +Release: 16%{?dist}%{?rescue_rel} URL: http://www.openssh.com/portable.html #Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz #Source1: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{version}.tar.gz.asc @@ -472,6 +472,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.2p1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Jan F. Chadima - 5.2p1-15 - only INTERNAL_SFTP can be home-chrooted - save _u and _r parts of context changing to sftpd_t From jkeating at fedoraproject.org Sat Jul 25 20:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:53:55 +0000 (UTC) Subject: rpms/openssh-blacklist/devel openssh-blacklist.spec,1.1,1.2 Message-ID: <20090725205355.820D611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openssh-blacklist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5444 Modified Files: openssh-blacklist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openssh-blacklist.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssh-blacklist/devel/openssh-blacklist.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openssh-blacklist.spec 22 Jul 2009 08:52:36 -0000 1.1 +++ openssh-blacklist.spec 25 Jul 2009 20:53:55 -0000 1.2 @@ -1,6 +1,6 @@ Name: openssh-blacklist Version: 0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fingerprints of the openssh keys affected by CVE-2008-0166 Group: Applications/Internet @@ -32,6 +32,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Jan F. Chadima - 0.7-1 - Redesigned From jkeating at fedoraproject.org Sat Jul 25 20:54:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:54:16 +0000 (UTC) Subject: rpms/openssl/devel openssl.spec,1.132,1.133 Message-ID: <20090725205416.C290A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openssl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5640 Modified Files: openssl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openssl.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssl/devel/openssl.spec,v retrieving revision 1.132 retrieving revision 1.133 diff -u -p -r1.132 -r1.133 --- openssl.spec 22 Jul 2009 15:57:43 -0000 1.132 +++ openssl.spec 25 Jul 2009 20:54:16 -0000 1.133 @@ -20,7 +20,7 @@ Summary: A general purpose cryptography library with TLS implementation Name: openssl Version: 0.9.8k -Release: 6%{?dist} +Release: 7%{?dist} # We remove certain patented algorithms from the openssl source tarball # with the hobble-openssl script which is included below. Source: openssl-%{version}-usa.tar.bz2 @@ -401,6 +401,9 @@ rm -rf $RPM_BUILD_ROOT/%{_libdir}/fipsca %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.8k-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Bill Nottingham - do not build special 'optimized' versions for i686, as that's the base arch in Fedora now From jkeating at fedoraproject.org Sat Jul 25 20:54:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:54:30 +0000 (UTC) Subject: rpms/openssl-ibmca/devel openssl-ibmca.spec,1.1,1.2 Message-ID: <20090725205430.AC2A811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openssl-ibmca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5769 Modified Files: openssl-ibmca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openssl-ibmca.spec =================================================================== RCS file: /cvs/pkgs/rpms/openssl-ibmca/devel/openssl-ibmca.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openssl-ibmca.spec 11 Jul 2009 20:35:31 -0000 1.1 +++ openssl-ibmca.spec 25 Jul 2009 20:54:30 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A dynamic OpenSSL engine for IBMCA Name: openssl-ibmca Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: OpenSSL Group: System Environment/Libraries URL: http://sourceforge.net/projects/opencryptoki @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Dan Horak Author: jkeating Update of /cvs/pkgs/rpms/openswan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5916 Modified Files: openswan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openswan.spec =================================================================== RCS file: /cvs/pkgs/rpms/openswan/devel/openswan.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- openswan.spec 23 Jul 2009 22:01:58 -0000 1.80 +++ openswan.spec 25 Jul 2009 20:54:45 -0000 1.81 @@ -7,7 +7,7 @@ Summary: Openswan IPSEC implementation Name: openswan Version: 2.6.22 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Url: http://www.openswan.org/ Source: openswan-%{version}.tar.gz @@ -222,6 +222,9 @@ fi chkconfig --add ipsec || : %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.6.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Avesh Agarwal - 2.6.22-1 - New upstream release - Added support for using PSK with NSS From jkeating at fedoraproject.org Sat Jul 25 20:54:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:54:59 +0000 (UTC) Subject: rpms/openttd/devel openttd.spec,1.4,1.5 Message-ID: <20090725205459.7864A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openttd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6065 Modified Files: openttd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openttd.spec =================================================================== RCS file: /cvs/pkgs/rpms/openttd/devel/openttd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- openttd.spec 12 Jun 2009 15:27:18 -0000 1.4 +++ openttd.spec 25 Jul 2009 20:54:59 -0000 1.5 @@ -3,7 +3,7 @@ Name: openttd Version: 0.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Transport system simulation game Group: Amusements/Games @@ -116,6 +116,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Felix Kaechele - 0.7.1-1 - upstream 0.7.1 From jkeating at fedoraproject.org Sat Jul 25 20:55:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:55:13 +0000 (UTC) Subject: rpms/openttd-opengfx/devel openttd-opengfx.spec,1.1,1.2 Message-ID: <20090725205513.2767E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openttd-opengfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6223 Modified Files: openttd-opengfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openttd-opengfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/openttd-opengfx/devel/openttd-opengfx.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- openttd-opengfx.spec 29 May 2009 13:08:48 -0000 1.1 +++ openttd-opengfx.spec 25 Jul 2009 20:55:12 -0000 1.2 @@ -2,7 +2,7 @@ Name: openttd-opengfx Version: 0 -Release: 0.4.alpha4.2%{?dist} +Release: 0.5.alpha4.2%{?dist} Summary: OpenGFX replacement graphics for OpenTTD Group: Amusements/Games @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.5.alpha4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Felix Kaechele - 0-0.4.alpha4.2 - added md5 check From jkeating at fedoraproject.org Sat Jul 25 20:55:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:55:26 +0000 (UTC) Subject: rpms/openuniverse/devel openuniverse.spec,1.3,1.4 Message-ID: <20090725205526.1FD8511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openuniverse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6351 Modified Files: openuniverse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openuniverse.spec =================================================================== RCS file: /cvs/pkgs/rpms/openuniverse/devel/openuniverse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openuniverse.spec 24 Mar 2009 16:38:06 -0000 1.3 +++ openuniverse.spec 25 Jul 2009 20:55:26 -0000 1.4 @@ -2,7 +2,7 @@ Name: openuniverse Version: 1.0 -Release: 0.2.%{snapshot}%{?dist} +Release: 0.3.%{snapshot}%{?dist} Summary: OpenGL space simulator focused on the Solar System Group: Amusements/Graphics @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-0.3.beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 1.0-0.2.beta3 - Add icon From jkeating at fedoraproject.org Sat Jul 25 20:55:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:55:40 +0000 (UTC) Subject: rpms/openvas-libraries/devel openvas-libraries.spec,1.2,1.3 Message-ID: <20090725205540.7482411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openvas-libraries/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6513 Modified Files: openvas-libraries.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openvas-libraries.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvas-libraries/devel/openvas-libraries.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openvas-libraries.spec 26 Feb 2009 08:53:03 -0000 1.2 +++ openvas-libraries.spec 25 Jul 2009 20:55:40 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Support libraries for Open Vulnerability Assessment (OpenVAS) Server Name: openvas-libraries Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://wald.intevation.org/frs/download.php/467/%{name}-%{version}.tar.gz License: GPLv2+ Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/libopenvas-config.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:55:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:55:54 +0000 (UTC) Subject: rpms/openvpn/devel openvpn.spec,1.44,1.45 Message-ID: <20090725205554.7BA4111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openvpn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6688 Modified Files: openvpn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openvpn.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvpn/devel/openvpn.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- openvpn.spec 26 Feb 2009 08:54:10 -0000 1.44 +++ openvpn.spec 25 Jul 2009 20:55:54 -0000 1.45 @@ -4,7 +4,7 @@ Name: openvpn Version: 2.1 -Release: 0.32%{?prerelease:.%{prerelease}}%{?dist} +Release: 0.33%{?prerelease:.%{prerelease}}%{?dist} Summary: A full-featured SSL VPN solution URL: http://openvpn.net/ #Source0: http://openvpn.net/beta/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.gz @@ -169,6 +169,9 @@ fi %config %dir %{_sysconfdir}/%{name}/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1-0.33.rc15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1-0.32.rc15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:56:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:56:14 +0000 (UTC) Subject: rpms/openvpn-auth-ldap/devel openvpn-auth-ldap.spec,1.3,1.4 Message-ID: <20090725205614.CA31111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openvpn-auth-ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6963 Modified Files: openvpn-auth-ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openvpn-auth-ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvpn-auth-ldap/devel/openvpn-auth-ldap.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- openvpn-auth-ldap.spec 26 Feb 2009 09:01:42 -0000 1.3 +++ openvpn-auth-ldap.spec 25 Jul 2009 20:56:14 -0000 1.4 @@ -1,7 +1,7 @@ Summary: OpenVPN plugin for LDAP authentication Name: openvpn-auth-ldap Version: 2.0.3 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Applications/Internet URL: http://code.google.com/p/openvpn-auth-ldap/ @@ -64,6 +64,9 @@ LDAP for OpenVPN 2.x. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Matthias Saou 2.0.3-5 - Update URL and Source locations. From jkeating at fedoraproject.org Sat Jul 25 20:56:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:56:29 +0000 (UTC) Subject: rpms/openvrml/devel openvrml.spec,1.68,1.69 Message-ID: <20090725205629.9791B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openvrml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7301 Modified Files: openvrml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openvrml.spec =================================================================== RCS file: /cvs/pkgs/rpms/openvrml/devel/openvrml.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- openvrml.spec 24 Jul 2009 01:24:49 -0000 1.68 +++ openvrml.spec 25 Jul 2009 20:56:29 -0000 1.69 @@ -1,7 +1,7 @@ # -*- rpm-spec -*- Name: openvrml Version: 0.18.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: VRML/X3D runtime library License: LGPLv3+ Group: System Environment/Libraries @@ -191,6 +191,9 @@ CXXFLAGS="%optflags -fvisibility=hidden %{_javadocdir}/%{name}-%{version} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Braden McDaniel - Made dependencies on gecko-libs and java arch-specific. - Removed unnecessary (redundant) dependencies on libGLU-devel and From jkeating at fedoraproject.org Sat Jul 25 20:56:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:56:47 +0000 (UTC) Subject: rpms/openwsman/devel openwsman.spec,1.2,1.3 Message-ID: <20090725205647.D223D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/openwsman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7855 Modified Files: openwsman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: openwsman.spec =================================================================== RCS file: /cvs/pkgs/rpms/openwsman/devel/openwsman.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- openwsman.spec 26 Feb 2009 08:56:51 -0000 1.2 +++ openwsman.spec 25 Jul 2009 20:56:47 -0000 1.3 @@ -3,7 +3,7 @@ Name: openwsman Version: 2.1.0 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Url: http://www.openwsman.org/ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 @@ -135,6 +135,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:57:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:57:01 +0000 (UTC) Subject: rpms/ophcrack/devel ophcrack.spec,1.1,1.2 Message-ID: <20090725205701.6C3B311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ophcrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8068 Modified Files: ophcrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ophcrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/ophcrack/devel/ophcrack.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ophcrack.spec 3 Jun 2009 17:53:20 -0000 1.1 +++ ophcrack.spec 25 Jul 2009 20:57:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: ophcrack Version: 3.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Free Windows password cracker based on rainbow tables Group: Applications/System License: GPLv2+ with exceptions @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_datadir}/applications/%{name}.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Adam Miller - 3.3.0-3 - Added comment for LFLAGS justification, fixed rpmlint warnings From jkeating at fedoraproject.org Sat Jul 25 20:57:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:57:22 +0000 (UTC) Subject: rpms/oprofile/devel oprofile.spec,1.79,1.80 Message-ID: <20090725205722.B433A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oprofile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8229 Modified Files: oprofile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oprofile.spec =================================================================== RCS file: /cvs/pkgs/rpms/oprofile/devel/oprofile.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- oprofile.spec 16 Jul 2009 18:53:35 -0000 1.79 +++ oprofile.spec 25 Jul 2009 20:57:22 -0000 1.80 @@ -3,7 +3,7 @@ Summary: System wide profiler Name: oprofile Version: 0.9.4 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Development/System # @@ -232,6 +232,9 @@ exit 0 /etc/ld.so.conf.d/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Will Cohen - 0.9.4-12 - Add shadow-utils to requires. Resolves: rhbz #501357 - Add LGPL license to provided java support. Resolves: rhbz #474666 From jkeating at fedoraproject.org Sat Jul 25 20:57:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:57:36 +0000 (UTC) Subject: rpms/oprofileui/devel oprofileui.spec,1.2,1.3 Message-ID: <20090725205736.6848E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oprofileui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8385 Modified Files: oprofileui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oprofileui.spec =================================================================== RCS file: /cvs/pkgs/rpms/oprofileui/devel/oprofileui.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- oprofileui.spec 26 Feb 2009 08:58:52 -0000 1.2 +++ oprofileui.spec 25 Jul 2009 20:57:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: oprofileui Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK2 user interface for oprofile License: GPLv2 Group: User Interface/Desktops @@ -62,6 +62,9 @@ fi rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:57:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:57:54 +0000 (UTC) Subject: rpms/opticalraytracer/devel opticalraytracer.spec,1.4,1.5 Message-ID: <20090725205754.7517311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/opticalraytracer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8509 Modified Files: opticalraytracer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: opticalraytracer.spec =================================================================== RCS file: /cvs/pkgs/rpms/opticalraytracer/devel/opticalraytracer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- opticalraytracer.spec 26 Feb 2009 08:59:46 -0000 1.4 +++ opticalraytracer.spec 25 Jul 2009 20:57:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: opticalraytracer Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utility that analyzes systems of lenses Group: Amusements/Graphics @@ -79,6 +79,9 @@ fi %{_docdir}/HTML/en/raytracer/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:58:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:58:09 +0000 (UTC) Subject: rpms/optipng/devel optipng.spec,1.13,1.14 Message-ID: <20090725205809.A49DD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/optipng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8661 Modified Files: optipng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: optipng.spec =================================================================== RCS file: /cvs/pkgs/rpms/optipng/devel/optipng.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- optipng.spec 20 Jul 2009 14:38:59 -0000 1.13 +++ optipng.spec 25 Jul 2009 20:58:09 -0000 1.14 @@ -2,7 +2,7 @@ Name: optipng Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PNG optimizer and converter Group: Applications/Multimedia @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Ville Skytt? - 0.6.3-1 - Update to 0.6.3. - Use %%global instead of %%define. From jkeating at fedoraproject.org Sat Jul 25 20:58:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:58:29 +0000 (UTC) Subject: rpms/orage/devel orage.spec,1.17,1.18 Message-ID: <20090725205829.A540911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/orage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8815 Modified Files: orage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: orage.spec =================================================================== RCS file: /cvs/pkgs/rpms/orage/devel/orage.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- orage.spec 27 Feb 2009 20:38:38 -0000 1.17 +++ orage.spec 25 Jul 2009 20:58:29 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Time-managing application for Xfce4 Name: orage Version: 4.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/orage-%{version}.tar.bz2 @@ -71,6 +71,9 @@ touch --no-create %{_datadir}/icons/hico %{_mandir}/man1/orage.1.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kevin Fenzi - 4.6.0-1 - Update to 4.6.0 From jkeating at fedoraproject.org Sat Jul 25 20:58:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:58:45 +0000 (UTC) Subject: rpms/orange/devel orange.spec,1.15,1.16 Message-ID: <20090725205845.985FF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/orange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8980 Modified Files: orange.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: orange.spec =================================================================== RCS file: /cvs/pkgs/rpms/orange/devel/orange.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- orange.spec 26 Feb 2009 09:01:52 -0000 1.15 +++ orange.spec 25 Jul 2009 20:58:45 -0000 1.16 @@ -1,6 +1,6 @@ Name: orange Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Squeeze out installable Microsoft cabinet files Group: Applications/Communications @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/liborange.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:59:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:59:03 +0000 (UTC) Subject: rpms/orca/devel orca.spec,1.88,1.89 Message-ID: <20090725205903.00EBB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/orca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9152 Modified Files: orca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: orca.spec =================================================================== RCS file: /cvs/pkgs/rpms/orca/devel/orca.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- orca.spec 14 Jul 2009 04:09:21 -0000 1.88 +++ orca.spec 25 Jul 2009 20:59:02 -0000 1.89 @@ -18,7 +18,7 @@ Name: orca Version: 2.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Assistive technology for people with visual impairments Group: User Interface/Desktops @@ -106,6 +106,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Matthias Clasen - 2.27.4-1 - Update to 2.27.4 From jkeating at fedoraproject.org Sat Jul 25 20:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:59:17 +0000 (UTC) Subject: rpms/orpie/devel orpie.spec,1.10,1.11 Message-ID: <20090725205917.C24BA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/orpie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9300 Modified Files: orpie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: orpie.spec =================================================================== RCS file: /cvs/pkgs/rpms/orpie/devel/orpie.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- orpie.spec 16 Apr 2009 09:26:12 -0000 1.10 +++ orpie.spec 25 Jul 2009 20:59:17 -0000 1.11 @@ -4,7 +4,7 @@ Name: orpie Version: 1.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A fullscreen console-based RPN calculator Group: Applications/Engineering @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT ################################################################################ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Sat Jul 25 20:59:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:59:34 +0000 (UTC) Subject: rpms/ortp/devel ortp.spec,1.22,1.23 Message-ID: <20090725205934.72ACF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ortp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9464 Modified Files: ortp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ortp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ortp/devel/ortp.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ortp.spec 26 Feb 2009 09:06:37 -0000 1.22 +++ ortp.spec 25 Jul 2009 20:59:34 -0000 1.23 @@ -2,7 +2,7 @@ Name: ortp Version: 0.14.2 -Release: 0.4.%{cvs}%{?dist} +Release: 0.5.%{cvs}%{?dist} Summary: A C library implementing the RTP protocol (RFC3550) Epoch: 1 @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ortp.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.14.2-0.5.20080211 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.14.2-0.4.20080211 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 20:59:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 20:59:49 +0000 (UTC) Subject: rpms/osgal/devel osgal.spec,1.15,1.16 Message-ID: <20090725205949.9579711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/osgal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9659 Modified Files: osgal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: osgal.spec =================================================================== RCS file: /cvs/pkgs/rpms/osgal/devel/osgal.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- osgal.spec 26 Feb 2009 09:07:35 -0000 1.15 +++ osgal.spec 25 Jul 2009 20:59:49 -0000 1.16 @@ -1,7 +1,7 @@ Name: osgal Epoch: 1 Version: 0.6.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Adapts OpenSceneGraph to use OpenAL++ Group: System Environment/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.6.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:00:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:00:09 +0000 (UTC) Subject: rpms/osgcal/devel osgcal.spec,1.19,1.20 Message-ID: <20090725210009.211DE11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/osgcal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9822 Modified Files: osgcal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: osgcal.spec =================================================================== RCS file: /cvs/pkgs/rpms/osgcal/devel/osgcal.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- osgcal.spec 12 May 2009 16:31:55 -0000 1.19 +++ osgcal.spec 25 Jul 2009 21:00:08 -0000 1.20 @@ -1,6 +1,6 @@ Name: osgcal Version: 0.1.46 -Release: 9%{?dist}.1 +Release: 10%{?dist}.1 Summary: Adapts OpenSceneGraph to use Cal3D Group: Development/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.46-10.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Karsten Hopp 0.1.46-9.1 - s390(x) doesn't have xorg-x11-server-Xorg From jkeating at fedoraproject.org Sat Jul 25 21:00:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:00:26 +0000 (UTC) Subject: rpms/osiv/devel osiv.spec,1.12,1.13 Message-ID: <20090725210026.09FA811C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/osiv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10014 Modified Files: osiv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: osiv.spec =================================================================== RCS file: /cvs/pkgs/rpms/osiv/devel/osiv.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- osiv.spec 26 Feb 2009 09:09:29 -0000 1.12 +++ osiv.spec 25 Jul 2009 21:00:25 -0000 1.13 @@ -1,6 +1,6 @@ Name: osiv Version: 2.0.0 -Release: 0.7.beta%{?dist} +Release: 0.8.beta%{?dist} Summary: Open Source Image Velocimetry Group: Applications/Engineering @@ -79,6 +79,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.0-0.8.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.0-0.7.beta - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:00:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:00:41 +0000 (UTC) Subject: rpms/osmo/devel osmo.spec,1.13,1.14 Message-ID: <20090725210041.6806C11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/osmo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10153 Modified Files: osmo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: osmo.spec =================================================================== RCS file: /cvs/pkgs/rpms/osmo/devel/osmo.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- osmo.spec 19 Apr 2009 06:30:44 -0000 1.13 +++ osmo.spec 25 Jul 2009 21:00:41 -0000 1.14 @@ -2,7 +2,7 @@ Summary: Personal organizer Summary(pl): Osobisty organizer Name: osmo Version: 0.2.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Productivity URL: http://clay.ll.pl/osmo/ @@ -101,6 +101,9 @@ fi %{_mandir}/man1/%{name}.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Debarshi Ray - 0.2.4-6 - Fixed configure to ensure correct usage of CFLAGS and CPPFLAGS, and respect the environment's settings. From jkeating at fedoraproject.org Sat Jul 25 21:00:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:00:57 +0000 (UTC) Subject: rpms/osslsigncode/devel osslsigncode.spec,1.5,1.6 Message-ID: <20090725210057.081C811C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/osslsigncode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10273 Modified Files: osslsigncode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: osslsigncode.spec =================================================================== RCS file: /cvs/pkgs/rpms/osslsigncode/devel/osslsigncode.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- osslsigncode.spec 25 Feb 2009 21:51:47 -0000 1.5 +++ osslsigncode.spec 25 Jul 2009 21:00:56 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Tool for Authenticode signing of EXE/CAB files Name: osslsigncode Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://sourceforge.net/projects/osslsigncode/ @@ -40,6 +40,9 @@ Tool for Authenticode signing of EXE/CAB %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Matthias Saou 1.3-1 - Update to 1.3. - Remove now included hashfix patch. From jkeating at fedoraproject.org Sat Jul 25 21:01:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:01:11 +0000 (UTC) Subject: rpms/otl/devel otl.spec,1.2,1.3 Message-ID: <20090725210111.D848E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/otl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10458 Modified Files: otl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: otl.spec =================================================================== RCS file: /cvs/pkgs/rpms/otl/devel/otl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- otl.spec 26 Feb 2009 09:11:30 -0000 1.2 +++ otl.spec 25 Jul 2009 21:01:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: otl Version: 4.0.176 -Release: 6%{?dist} +Release: 7%{?dist} Summary: OTL is a C++ template library for Oracle/OCI, ODBC, and DB2/CLI connectivity Group: Development/Libraries @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/otl %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.0.176-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.0.176-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:01:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:01:27 +0000 (UTC) Subject: rpms/ots/devel ots.spec,1.12,1.13 Message-ID: <20090725210127.019D811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ots/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10601 Modified Files: ots.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ots.spec =================================================================== RCS file: /cvs/pkgs/rpms/ots/devel/ots.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ots.spec 26 Feb 2009 09:12:25 -0000 1.12 +++ ots.spec 25 Jul 2009 21:01:26 -0000 1.13 @@ -1,7 +1,7 @@ Name: ots Summary: A text summarizer Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://libots.sourceforge.net/ @@ -94,6 +94,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:01:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:01:42 +0000 (UTC) Subject: rpms/ovaldi/devel ovaldi.spec,1.13,1.14 Message-ID: <20090725210142.B3D2F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ovaldi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10749 Modified Files: ovaldi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ovaldi.spec =================================================================== RCS file: /cvs/pkgs/rpms/ovaldi/devel/ovaldi.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- ovaldi.spec 6 Mar 2009 22:55:52 -0000 1.13 +++ ovaldi.spec 25 Jul 2009 21:01:42 -0000 1.14 @@ -1,6 +1,6 @@ Name: ovaldi Version: 5.5.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Reference implementation of the OVAL interpreter Group: Applications/System @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Jesse Keating - 5.5.4-3 - Rebuild for new rpm From jkeating at fedoraproject.org Sat Jul 25 21:02:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:02:03 +0000 (UTC) Subject: rpms/overgod/devel overgod.spec,1.8,1.9 Message-ID: <20090725210203.7669711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/overgod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10943 Modified Files: overgod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: overgod.spec =================================================================== RCS file: /cvs/pkgs/rpms/overgod/devel/overgod.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- overgod.spec 26 Feb 2009 09:14:17 -0000 1.8 +++ overgod.spec 25 Jul 2009 21:02:03 -0000 1.9 @@ -1,6 +1,6 @@ Name: overgod Version: 1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Another arcade-style shoot-em-up Group: Amusements/Games License: GPLv2+ @@ -75,6 +75,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:02:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:02:23 +0000 (UTC) Subject: rpms/ovirt-server/devel ovirt-server.spec,1.1,1.2 Message-ID: <20090725210223.9BF5211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ovirt-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11127 Modified Files: ovirt-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ovirt-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/devel/ovirt-server.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ovirt-server.spec 23 Jul 2009 18:14:17 -0000 1.1 +++ ovirt-server.spec 25 Jul 2009 21:02:23 -0000 1.2 @@ -5,7 +5,7 @@ Summary: The oVirt Server Suite Name: ovirt-server Version: 0.100 -Release: 1%{?dist}%{?extra_release} +Release: 2%{?dist}%{?extra_release} # full source URL will be added with the next oVirt release. This is a pre-release # code drop to make sure we get the package approved by f12 feature freeze. Source0: %{name}-%{version}.tar.gz @@ -263,6 +263,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.100-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Scott Seago - 0.100-1 - rpmlint fixes for Fedora 12 inclusion From jkeating at fedoraproject.org Sat Jul 25 21:02:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:02:41 +0000 (UTC) Subject: rpms/oxine/devel oxine.spec,1.10,1.11 Message-ID: <20090725210241.A263011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oxine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11293 Modified Files: oxine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oxine.spec =================================================================== RCS file: /cvs/pkgs/rpms/oxine/devel/oxine.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- oxine.spec 12 Mar 2009 10:00:29 -0000 1.10 +++ oxine.spec 25 Jul 2009 21:02:41 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Lightweight, purely OSD based xine frontend Name: oxine Version: 0.7.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://oxine.sourceforge.net/ @@ -94,6 +94,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Matthias Saou 0.7.1-4 - Rebuild for new ImageMagick. From jkeating at fedoraproject.org Sat Jul 25 21:02:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:02:57 +0000 (UTC) Subject: rpms/oxygen-icon-theme/devel oxygen-icon-theme.spec,1.6,1.7 Message-ID: <20090725210257.B32CF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oxygen-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11435 Modified Files: oxygen-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oxygen-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/oxygen-icon-theme/devel/oxygen-icon-theme.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- oxygen-icon-theme.spec 22 Jul 2009 11:51:27 -0000 1.6 +++ oxygen-icon-theme.spec 25 Jul 2009 21:02:57 -0000 1.7 @@ -1,7 +1,7 @@ Name: oxygen-icon-theme Summary: Oxygen icon theme Version: 4.2.98 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv3+ Group: User Interface/Desktops @@ -66,6 +66,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.2.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Than Ngo - 4.2.98-1 - 4.3rc3 From jkeating at fedoraproject.org Sat Jul 25 21:03:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:03:14 +0000 (UTC) Subject: rpms/oyranos/devel oyranos.spec,1.8,1.9 Message-ID: <20090725210314.3FB4D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/oyranos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11598 Modified Files: oyranos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: oyranos.spec =================================================================== RCS file: /cvs/pkgs/rpms/oyranos/devel/oyranos.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- oyranos.spec 10 Mar 2009 13:38:43 -0000 1.8 +++ oyranos.spec 25 Jul 2009 21:03:14 -0000 1.9 @@ -1,6 +1,6 @@ Name: oyranos Version: 0.1.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Oyranos Colour Management System (CMS) Group: Applications/Multimedia @@ -182,6 +182,9 @@ fi || : %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 kwizart < kwizart at gmail.com > - 0.1.9-3 - Fix wrong %%post requires From jkeating at fedoraproject.org Sat Jul 25 21:03:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:03:31 +0000 (UTC) Subject: rpms/p0f/devel p0f.spec,1.16,1.17 Message-ID: <20090725210331.171D911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/p0f/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11749 Modified Files: p0f.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: p0f.spec =================================================================== RCS file: /cvs/pkgs/rpms/p0f/devel/p0f.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- p0f.spec 26 Feb 2009 09:17:07 -0000 1.16 +++ p0f.spec 25 Jul 2009 21:03:30 -0000 1.17 @@ -1,6 +1,6 @@ Name: p0f Version: 2.0.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Versatile passive OS fingerprinting tool Group: Applications/Internet @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:03:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:03:49 +0000 (UTC) Subject: rpms/p0rn-comfort/devel p0rn-comfort.spec,1.7,1.8 Message-ID: <20090725210349.8556C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/p0rn-comfort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11930 Modified Files: p0rn-comfort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: p0rn-comfort.spec =================================================================== RCS file: /cvs/pkgs/rpms/p0rn-comfort/devel/p0rn-comfort.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- p0rn-comfort.spec 26 Feb 2009 09:18:02 -0000 1.7 +++ p0rn-comfort.spec 25 Jul 2009 21:03:49 -0000 1.8 @@ -1,6 +1,6 @@ Name: p0rn-comfort Version: 0.0.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Support programs for browsing image-gallery sites License: GPL+ Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:04:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:04:05 +0000 (UTC) Subject: rpms/p7zip/devel p7zip.spec,1.24,1.25 Message-ID: <20090725210405.7005F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/p7zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12096 Modified Files: p7zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: p7zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/p7zip/devel/p7zip.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- p7zip.spec 12 Apr 2009 18:58:38 -0000 1.24 +++ p7zip.spec 25 Jul 2009 21:04:04 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Very high compression ratio file archiver Name: p7zip Version: 4.65 -Release: 1%{?dist} +Release: 2%{?dist} # Files under C/Compress/Lzma/ are dual LGPL or CPL License: LGPLv2 and (LGPLv2+ or CPL) Group: Applications/Archiving @@ -111,6 +111,9 @@ find contrib -type f -exec chmod -x {} \ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 4.65-1 - Update to 4.65. - Update norar patch. From jkeating at fedoraproject.org Sat Jul 25 21:04:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:04:21 +0000 (UTC) Subject: rpms/pAgenda/devel pAgenda.spec,1.3,1.4 Message-ID: <20090725210421.2F40611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pAgenda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12272 Modified Files: pAgenda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pAgenda.spec =================================================================== RCS file: /cvs/pkgs/rpms/pAgenda/devel/pAgenda.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pAgenda.spec 26 Feb 2009 09:19:55 -0000 1.3 +++ pAgenda.spec 25 Jul 2009 21:04:21 -0000 1.4 @@ -2,7 +2,7 @@ Name: pAgenda Version: 3.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A cross platform calendar and scheduler Group: Applications/Productivity @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/32x32/apps/pagenda32.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:04:39 +0000 (UTC) Subject: rpms/pachi/devel pachi.spec,1.8,1.9 Message-ID: <20090725210439.5B0C911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pachi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12440 Modified Files: pachi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pachi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pachi/devel/pachi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pachi.spec 26 Feb 2009 09:20:50 -0000 1.8 +++ pachi.spec 25 Jul 2009 21:04:39 -0000 1.9 @@ -1,6 +1,6 @@ Name: pachi Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Pachi El Marciano - Platform Game Group: Amusements/Games License: GPLv2+ @@ -81,6 +81,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:05:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:05:02 +0000 (UTC) Subject: rpms/padevchooser/devel padevchooser.spec,1.10,1.11 Message-ID: <20090725210502.2C16011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/padevchooser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12651 Modified Files: padevchooser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: padevchooser.spec =================================================================== RCS file: /cvs/pkgs/rpms/padevchooser/devel/padevchooser.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- padevchooser.spec 26 Feb 2009 09:22:36 -0000 1.10 +++ padevchooser.spec 25 Jul 2009 21:05:01 -0000 1.11 @@ -1,6 +1,6 @@ Name: padevchooser Version: 0.9.4 -Release: 0.9.svn20070925%{?dist} +Release: 0.10.svn20070925%{?dist} Summary: Control applet for PulseAudio Group: Applications/Multimedia @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-0.10.svn20070925 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.4-0.9.svn20070925 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:05:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:05:24 +0000 (UTC) Subject: rpms/pads/devel pads.spec,1.5,1.6 Message-ID: <20090725210524.69B3311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pads/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12897 Modified Files: pads.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pads.spec =================================================================== RCS file: /cvs/pkgs/rpms/pads/devel/pads.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pads.spec 26 Feb 2009 09:24:17 -0000 1.5 +++ pads.spec 25 Jul 2009 21:05:24 -0000 1.6 @@ -1,7 +1,7 @@ %define _default_patch_fuzz 2 Name: pads Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Passive Asset Detection System Group: Applications/System License: GPLv2+ @@ -106,6 +106,9 @@ fi %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 21:05:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 21:05:53 +0000 (UTC) Subject: rpms/pakchois/devel pakchois.spec,1.2,1.3 Message-ID: <20090725210553.EC49C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pakchois/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13081 Modified Files: pakchois.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pakchois.spec =================================================================== RCS file: /cvs/pkgs/rpms/pakchois/devel/pakchois.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pakchois.spec 26 Feb 2009 09:25:09 -0000 1.2 +++ pakchois.spec 25 Jul 2009 21:05:53 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A wrapper library for PKCS#11 Name: pakchois Version: 0.4 -Release: 2 +Release: 3 License: LGPLv2+ Group: System Environment/Libraries URL: http://www.manyfish.co.uk/pakchois/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From gemi at fedoraproject.org Sat Jul 25 21:28:23 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 25 Jul 2009 21:28:23 +0000 (UTC) Subject: rpms/gauche/F-11 gauche-arch.patch,1.3,1.4 gauche.spec,1.14,1.15 Message-ID: <20090725212823.C607911C02BC@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/gauche/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21018 Modified Files: gauche-arch.patch gauche.spec Log Message: gauche-arch.patch: ext/Makefile.ext.in | 2 +- src/Makefile.in | 8 ++++---- src/genconfig.in | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) Index: gauche-arch.patch =================================================================== RCS file: /cvs/pkgs/rpms/gauche/F-11/gauche-arch.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gauche-arch.patch 20 Jun 2009 17:17:02 -0000 1.3 +++ gauche-arch.patch 25 Jul 2009 21:28:23 -0000 1.4 @@ -1,6 +1,6 @@ diff -up Gauche-0.8.14/ext/Makefile.ext.in.arch Gauche-0.8.14/ext/Makefile.ext.in ---- Gauche-0.8.14/ext/Makefile.ext.in.arch 2009-06-19 22:17:50.000000000 +0200 -+++ Gauche-0.8.14/ext/Makefile.ext.in 2009-06-19 22:18:11.000000000 +0200 +--- Gauche-0.8.14/ext/Makefile.ext.in.arch 2009-07-25 19:49:30.000000000 +0200 ++++ Gauche-0.8.14/ext/Makefile.ext.in 2009-07-25 19:49:45.000000000 +0200 @@ -12,7 +12,7 @@ datarootdir = @datarootdir@ VPATH = $(srcdir) GAUCHE_VERSION = @GAUCHE_VERSION@ @@ -10,3 +10,43 @@ diff -up Gauche-0.8.14/ext/Makefile.ext. # These may be overridden by make invocators DESTDIR = +diff -up Gauche-0.8.14/src/genconfig.in.arch Gauche-0.8.14/src/genconfig.in +--- Gauche-0.8.14/src/genconfig.in.arch 2009-07-25 19:51:35.000000000 +0200 ++++ Gauche-0.8.14/src/genconfig.in 2009-07-25 19:51:49.000000000 +0200 +@@ -10,8 +10,8 @@ + # (cmds[]) and config.scm part (*configurations*). They should be + # generated from a single source. + +-host=@host@ +-xhost=@xhost@ ++host=@target@ ++xhost=@target@ + gauche_version=@GAUCHE_VERSION@ + + case "$xhost" in +diff -up Gauche-0.8.14/src/Makefile.in.arch Gauche-0.8.14/src/Makefile.in +--- Gauche-0.8.14/src/Makefile.in.arch 2009-07-25 19:52:19.000000000 +0200 ++++ Gauche-0.8.14/src/Makefile.in 2009-07-25 19:52:59.000000000 +0200 +@@ -40,7 +40,7 @@ top_srcdir = @top_srcdir@ + + # for cross build + build = @build@ +-host = @host@ ++host = @target@ + + # These may be overridden by make invocators + DESTDIR = +@@ -101,10 +101,10 @@ GAUCHE_ARCH_DIR = @libdir@/gauche + + HEADER_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/include + SCM_INSTALL_DIR = $(GAUCHE_DATA_DIR)/@GAUCHE_VERSION@/lib +-ARCH_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/@host@ ++ARCH_INSTALL_DIR = $(GAUCHE_ARCH_DIR)/@GAUCHE_VERSION@/@target@ + SITE_SCM_DIR = $(GAUCHE_DATA_DIR)/site/lib +-SITE_ARCH_DIR = $(GAUCHE_ARCH_DIR)/site/@GAUCHE_VERSION@/@host@ +-ARCH = @host@ ++SITE_ARCH_DIR = $(GAUCHE_ARCH_DIR)/site/@GAUCHE_VERSION@/@target@ ++ARCH = @target@ + + # targetlib is given when we relink the final version of gosh to embed + # the path to libgauche. Usually it is LIB_INSTALL_DIR, but under Index: gauche.spec =================================================================== RCS file: /cvs/pkgs/rpms/gauche/F-11/gauche.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gauche.spec 20 Jun 2009 17:17:02 -0000 1.14 +++ gauche.spec 25 Jul 2009 21:28:23 -0000 1.15 @@ -1,6 +1,6 @@ Name: gauche Version: 0.8.14 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Scheme script interpreter with multibyte character handling Group: Development/Languages @@ -123,6 +123,12 @@ fi %changelog +* Sat Jul 25 2009 Gerard Milmeister - 0.8.14-3 +- patch for setting target arch + +* Fri Jul 24 2009 Fedora Release Engineering - 0.8.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Gerard Milmeister - 0.8.14-1 - new release 0.8.14 From hadess at fedoraproject.org Sat Jul 25 21:53:20 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Sat, 25 Jul 2009 21:53:20 +0000 (UTC) Subject: rpms/clutter-gst/devel .cvsignore, 1.6, 1.7 clutter-gst.spec, 1.9, 1.10 sources, 1.6, 1.7 import.log, 1.2, NONE Message-ID: <20090725215320.A710B11C02BC@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29078 Modified Files: .cvsignore clutter-gst.spec sources Removed Files: import.log Log Message: * Sat Jul 25 2009 Bastien Nocera 0.9.0-1 - Update to 0.9.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 23 Jan 2009 12:48:07 -0000 1.6 +++ .cvsignore 25 Jul 2009 21:53:20 -0000 1.7 @@ -1 +1 @@ -clutter-gst-0.8.0.tar.bz2 +clutter-gst-0.9.0.tar.bz2 Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- clutter-gst.spec 24 Jul 2009 19:09:40 -0000 1.9 +++ clutter-gst.spec 25 Jul 2009 21:53:20 -0000 1.10 @@ -1,12 +1,12 @@ Name: clutter-gst -Version: 0.8.0 -Release: 5%{?dist} +Version: 0.9.0 +Release: 1%{?dist} Summary: ClutterMedia interface to GStreamer Group: Development/Languages License: LGPLv2+ URL: http://www.clutter-project.org -Source0: http://www.clutter-project.org/sources/%{name}/0.8/%{name}-%{version}.tar.bz2 +Source0: http://www.clutter-project.org/sources/%{name}/0.9/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: clutter-devel gstreamer-plugins-base-devel gstreamer-devel @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libclutter-gst-0.8.so %changelog +* Sat Jul 25 2009 Bastien Nocera 0.9.0-1 +- Update to 0.9.0 + * Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 23 Jan 2009 12:48:07 -0000 1.6 +++ sources 25 Jul 2009 21:53:20 -0000 1.7 @@ -1 +1 @@ -13d2a34ea76e4f010e66d20eba12e864 clutter-gst-0.8.0.tar.bz2 +ddb41185fdad5ce689a133c13e342057 clutter-gst-0.9.0.tar.bz2 --- import.log DELETED --- From gemi at fedoraproject.org Sat Jul 25 22:02:21 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 25 Jul 2009 22:02:21 +0000 (UTC) Subject: rpms/xaos/F-10 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xaos.spec, 1.11, 1.12 Message-ID: <20090725220221.9099711C02BC@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/xaos/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv339 Modified Files: .cvsignore sources xaos.spec Log Message: new release 3.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-10/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 20 Aug 2008 21:08:16 -0000 1.5 +++ .cvsignore 25 Jul 2009 22:02:21 -0000 1.6 @@ -1 +1 @@ -XaoS-3.4.tar.gz +xaos-3.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 20 Aug 2008 21:08:16 -0000 1.5 +++ sources 25 Jul 2009 22:02:21 -0000 1.6 @@ -1 +1 @@ -366fd8151e9642a0d9afce889912e388 XaoS-3.4.tar.gz +465d1469b276501a58bf325e493ea591 xaos-3.5.tar.gz Index: xaos.spec =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-10/xaos.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xaos.spec 20 Aug 2008 21:39:40 -0000 1.11 +++ xaos.spec 25 Jul 2009 22:02:21 -0000 1.12 @@ -1,14 +1,13 @@ Name: xaos -Version: 3.4 -Release: 2%{?dist} +Version: 3.5 +Release: 1%{?dist} Summary: A fast, portable real-time interactive fractal zoomer Group: Applications/Multimedia License: GPLv2+ URL: http://xaos.sourceforge.net -Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/XaoS-%{version}.tar.gz +Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/xaos-%{version}.tar.gz Source1: xaos.png -Source2: config.sub BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel BuildRequires: zlib-devel @@ -42,13 +41,22 @@ on-the-fly plane switching. %prep -%setup0 -q -n XaoS-%version -cp %{SOURCE2} . +%setup0 -q # disable stripping binaries when installing sed -i 's| -s | |' Makefile.in %build -%configure --with-gsl=yes --with-png=yes --with-gtk-driver=yes --with-aa-driver=yes +%ifarch %ix86 x86_64 +%define long_double --with-long-double +%endif +%configure \ + --with-gsl=yes \ + --with-sffe=yes \ + --with-png=yes \ + --with-gtk-driver=yes \ + --with-aa-driver=yes \ + --with-pthread=yes \ + %{long_double} make %{?_smp_mflags} @@ -111,8 +119,8 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc README RELEASE_NOTES COPYING TODO ChangeLog -%doc doc/AUTHORS doc/SPONSORS doc/xaos.pdf doc/PROBLEMS +%doc README COPYING TODO ChangeLog NEWS +%doc AUTHORS doc/xaos.pdf %doc --parents help/*.html help/*.jpg %{_bindir}/* %{_infodir}/* @@ -123,6 +131,12 @@ fi %changelog +* Sat Jul 25 2009 Gerard Milmeister - 3.5-1 +- new release 3.5 +- Enable long double on ix86 and x86_64 architectures. +- Enable i386 inline assembly on ix86. +- Enable threads on all architectures + * Wed Aug 20 2008 Gerard Milmeister - 3.4-2 - enabled GTK driver From gemi at fedoraproject.org Sat Jul 25 22:06:50 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 25 Jul 2009 22:06:50 +0000 (UTC) Subject: rpms/xaos/F-11 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xaos.spec, 1.12, 1.13 config.sub, 1.1, NONE Message-ID: <20090725220650.9913F11C02BC@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/xaos/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1924/F-11 Modified Files: .cvsignore sources xaos.spec Removed Files: config.sub Log Message: new release 3.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 20 Aug 2008 21:08:16 -0000 1.5 +++ .cvsignore 25 Jul 2009 22:06:50 -0000 1.6 @@ -1 +1 @@ -XaoS-3.4.tar.gz +xaos-3.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 20 Aug 2008 21:08:16 -0000 1.5 +++ sources 25 Jul 2009 22:06:50 -0000 1.6 @@ -1 +1 @@ -366fd8151e9642a0d9afce889912e388 XaoS-3.4.tar.gz +465d1469b276501a58bf325e493ea591 xaos-3.5.tar.gz Index: xaos.spec =================================================================== RCS file: /cvs/pkgs/rpms/xaos/F-11/xaos.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xaos.spec 26 Feb 2009 07:37:06 -0000 1.12 +++ xaos.spec 25 Jul 2009 22:06:50 -0000 1.13 @@ -1,14 +1,13 @@ Name: xaos -Version: 3.4 -Release: 3%{?dist} +Version: 3.5 +Release: 1%{?dist} Summary: A fast, portable real-time interactive fractal zoomer Group: Applications/Multimedia License: GPLv2+ URL: http://xaos.sourceforge.net -Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/XaoS-%{version}.tar.gz +Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/xaos-%{version}.tar.gz Source1: xaos.png -Source2: config.sub BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel BuildRequires: zlib-devel @@ -42,13 +41,22 @@ on-the-fly plane switching. %prep -%setup0 -q -n XaoS-%version -cp %{SOURCE2} . +%setup0 -q # disable stripping binaries when installing sed -i 's| -s | |' Makefile.in %build -%configure --with-gsl=yes --with-png=yes --with-gtk-driver=yes --with-aa-driver=yes +%ifarch %ix86 x86_64 +%define long_double --with-long-double +%endif +%configure \ + --with-gsl=yes \ + --with-sffe=yes \ + --with-png=yes \ + --with-gtk-driver=yes \ + --with-aa-driver=yes \ + --with-pthread=yes \ + %{long_double} make %{?_smp_mflags} @@ -111,8 +119,8 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc README RELEASE_NOTES COPYING TODO ChangeLog -%doc doc/AUTHORS doc/SPONSORS doc/xaos.pdf doc/PROBLEMS +%doc README COPYING TODO ChangeLog NEWS +%doc AUTHORS doc/xaos.pdf %doc --parents help/*.html help/*.jpg %{_bindir}/* %{_infodir}/* @@ -123,6 +131,12 @@ fi %changelog +* Sat Jul 25 2009 Gerard Milmeister - 3.5-1 +- new release 3.5 +- Enable long double on ix86 and x86_64 architectures. +- Enable i386 inline assembly on ix86. +- Enable threads on all architectures + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- config.sub DELETED --- From gemi at fedoraproject.org Sat Jul 25 22:06:50 2009 From: gemi at fedoraproject.org (=?utf-8?q?G=C3=A9rard_Milmeister?=) Date: Sat, 25 Jul 2009 22:06:50 +0000 (UTC) Subject: rpms/xaos/devel .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xaos.spec, 1.12, 1.13 config.sub, 1.1, NONE Message-ID: <20090725220650.D60E711C02BC@cvs1.fedora.phx.redhat.com> Author: gemi Update of /cvs/pkgs/rpms/xaos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1924/devel Modified Files: .cvsignore sources xaos.spec Removed Files: config.sub Log Message: new release 3.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xaos/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 20 Aug 2008 21:08:16 -0000 1.5 +++ .cvsignore 25 Jul 2009 22:06:50 -0000 1.6 @@ -1 +1 @@ -XaoS-3.4.tar.gz +xaos-3.5.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xaos/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 20 Aug 2008 21:08:16 -0000 1.5 +++ sources 25 Jul 2009 22:06:50 -0000 1.6 @@ -1 +1 @@ -366fd8151e9642a0d9afce889912e388 XaoS-3.4.tar.gz +465d1469b276501a58bf325e493ea591 xaos-3.5.tar.gz Index: xaos.spec =================================================================== RCS file: /cvs/pkgs/rpms/xaos/devel/xaos.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xaos.spec 26 Feb 2009 07:37:06 -0000 1.12 +++ xaos.spec 25 Jul 2009 22:06:50 -0000 1.13 @@ -1,14 +1,13 @@ Name: xaos -Version: 3.4 -Release: 3%{?dist} +Version: 3.5 +Release: 1%{?dist} Summary: A fast, portable real-time interactive fractal zoomer Group: Applications/Multimedia License: GPLv2+ URL: http://xaos.sourceforge.net -Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/XaoS-%{version}.tar.gz +Source0: http://surfnet.dl.sourceforge.net/sourceforge/xaos/xaos-%{version}.tar.gz Source1: xaos.png -Source2: config.sub BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: slang-devel BuildRequires: zlib-devel @@ -42,13 +41,22 @@ on-the-fly plane switching. %prep -%setup0 -q -n XaoS-%version -cp %{SOURCE2} . +%setup0 -q # disable stripping binaries when installing sed -i 's| -s | |' Makefile.in %build -%configure --with-gsl=yes --with-png=yes --with-gtk-driver=yes --with-aa-driver=yes +%ifarch %ix86 x86_64 +%define long_double --with-long-double +%endif +%configure \ + --with-gsl=yes \ + --with-sffe=yes \ + --with-png=yes \ + --with-gtk-driver=yes \ + --with-aa-driver=yes \ + --with-pthread=yes \ + %{long_double} make %{?_smp_mflags} @@ -111,8 +119,8 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc README RELEASE_NOTES COPYING TODO ChangeLog -%doc doc/AUTHORS doc/SPONSORS doc/xaos.pdf doc/PROBLEMS +%doc README COPYING TODO ChangeLog NEWS +%doc AUTHORS doc/xaos.pdf %doc --parents help/*.html help/*.jpg %{_bindir}/* %{_infodir}/* @@ -123,6 +131,12 @@ fi %changelog +* Sat Jul 25 2009 Gerard Milmeister - 3.5-1 +- new release 3.5 +- Enable long double on ix86 and x86_64 architectures. +- Enable i386 inline assembly on ix86. +- Enable threads on all architectures + * Wed Feb 25 2009 Fedora Release Engineering - 3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- config.sub DELETED --- From athimm at fedoraproject.org Sat Jul 25 22:29:31 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:29:31 +0000 (UTC) Subject: rpms/freenx-server/devel freenx-server-0.7.3-fixes.patch, NONE, 1.1 freenx-server.spec, 1.7, 1.8 freenx-server-0.7.2-sharing_and_multimedia_fixes.patch, 1.1, NONE Message-ID: <20090725222931.7207211C02BC@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8906/freenx-server/devel Modified Files: freenx-server.spec Added Files: freenx-server-0.7.3-fixes.patch Removed Files: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch Log Message: - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. - Add dependency for misc fonts Fedora bug #467494. - Fix stale X11 displays from Fedora bug #492402. - Fix authorized_keys*2* syncing, may fix Fedora bug #503822. - Move %post parts to nxserver startup, fixes Fedora bug #474720. - Copy ssh keys on first start, fixes Fedora bug #235592. - Add init script with CentOS patches that ensures /tmp/.X11-unix always exists, fixes Fedora bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 83 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 317 insertions(+), 83 deletions(-) --- NEW FILE freenx-server-0.7.3-fixes.patch --- diff -Naur freenx-server-0.7.3/ChangeLog freenx-server.svn613.plusfixes/ChangeLog --- freenx-server-0.7.3/ChangeLog 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/ChangeLog 2008-09-01 22:42:31.000000000 +0200 @@ -1,3 +1,20 @@ +xx.11.2008 FreeNX 0.7.4 + * Opened the 0.7.4 development. + * Fixed missing export of NX_ETC_DIR in Makefile, + so node.conf.sample is installed correctly. + (fabianx at bat.berlios.de) + * Fixed broken round-robin load balance algorithm. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + load balancing case. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + usermode case. + (fabianx at bat.berlios.de) + * Fixed non-encrypted session mode. You might need to + set EXTERNAL_PROXY_IP in node.conf. + (fabianx at bat.berlios.de) + 18.08.2008 FreeNX 0.7.3 "Priscilla One Year Edition" * Opened the 0.7.3 development. * Added logging of failed authentication attempts diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 @@ -8,21 +8,78 @@ # # SVN: $Id: freenx-server 485 2008-03-02 10:29:52Z fabianx $ # +# Modified to be chkconfig compatible by Johnny Hughes +# +# chkconfig: 2345 91 35 +# description: Creates /tmp/.X11-unix/ if required and cleans up dead \ +# NX sessions. + # Read the config file -. $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +. /usr/libexec/nx/nxloadconfig -- + +# Source function library. +. /etc/init.d/functions +prog="freenx-server" + +start() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then + /bin/chown root /tmp/.X11-unix + fi + ret=0 + fi + if [ $ret -eq 0 ]; then + touch /var/lock/subsys/freenx-server + action $"Starting $prog: " /bin/true + else + action $"Starting $prog: " /bin/false + fi + echo + return $ret +} + +stop() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ -e "/var/lock/subsys/freenx-server" ]; then + rm -f /var/lock/subsys/freenx-server + ret=$? + else + ret=0 + fi + if [ $ret -eq 0 ]; then + action $"Stopping $prog: " /bin/true + else + action $"Stopping $prog: " /bin/false + fi + echo + return $ret +} + +restart() { + echo $"Restarting $prog:" + stop + start +} case "$1" in - start) - [ ! -d "/tmp/.X11-unix" ] && mkdir -m1755 /tmp/.X11-unix/ - $PATH_BIN/nxserver --cleanup - $PATH_BIN/nxserver --start - ;; - stop) - $PATH_BIN/nxserver --stop - $PATH_BIN/nxserver --cleanup - ;; - *) - echo "Usage: $0 " - ;; + start) + start + ;; + stop) + stop + ;; + restart) + restart + ;; + *) + echo $"Usage: $prog {start|stop|restart}" + exit 1 esac + +exit $? diff -Naur freenx-server-0.7.3/Makefile freenx-server.svn613.plusfixes/Makefile --- freenx-server-0.7.3/Makefile 2008-08-18 04:16:25.000000000 +0200 +++ freenx-server.svn613.plusfixes/Makefile 2008-08-25 04:41:44.000000000 +0200 @@ -8,7 +8,7 @@ all: cd nxviewer-passwd && xmkmf && make Makefiles && make depend source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ for i in $(SUBDIRS) ; \ do\ echo "making" all "in $$i..."; \ @@ -44,5 +44,5 @@ install: source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ $(MAKE) nxenv_install diff -Naur freenx-server-0.7.3/node.conf.sample freenx-server.svn613.plusfixes/node.conf.sample --- freenx-server-0.7.3/node.conf.sample 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/node.conf.sample 2008-09-01 22:42:31.000000000 +0200 @@ -37,7 +37,7 @@ # # https://mail.kde.org/mailman/listinfo/freenx-knx # -# SVN: $Id: node.conf.sample 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: node.conf.sample 613 2008-09-01 20:42:31Z fabianx $ ######################################################################### # General FreeNX directives @@ -47,6 +47,11 @@ # different than the default hostname (as returned by `hostname`) #SERVER_NAME="$(hostname)" +# The node ip which is used by NX Node in unecnrypted session mode. +# Set it if you want to use a specific external ip or the autodetection +# is not working. +#EXTERNAL_PROXY_IP="" + # The port number where local 'sshd' is listening. #SSHD_PORT=22 diff -Naur freenx-server-0.7.3/nxloadconfig freenx-server.svn613.plusfixes/nxloadconfig --- freenx-server-0.7.3/nxloadconfig 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxloadconfig 2009-07-26 00:19:30.000000000 +0200 @@ -5,7 +5,7 @@ # # License: GPL, version 2 # -# SVN: $Id: nxloadconfig 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxloadconfig 613 2008-09-01 20:42:31Z fabianx $ # # ======================================================================== @@ -52,7 +52,7 @@ # DO NOT TOUCH unless you REALLY know what you are doing ######################################################################### -NX_VERSION=3.2.0-73 +NX_VERSION=3.2.0-74-SVN NX_LICENSE="OS (GPL, using backend: %BACKEND%)" # Where can different nx components be found @@ -85,6 +85,7 @@ # General FreeNX directives SERVER_NAME="$(hostname)" +EXTERNAL_PROXY_IP="" SSHD_PORT=22 # Authentication / Security directives @@ -104,11 +105,28 @@ # Restriction directives -DISPLAY_BASE=1000 +#JJK: DISPLAY_BASE=1000 +#JJK: Change DISPLAY_BASE to 2000 to avoid conflict of DISPLAY_BASE+7000 with nasd +DISPLAY_BASE=2000 SESSION_LIMIT=200 SESSION_USER_LIMIT="" #Calculated DISPLAY_LIMIT=200 +#JJK: Added the following to allow printing when using cifs mount +#JJK: Note the smb print port (#139) must then be tunnelled manually +#JJK: from on the server to port 139 on the host +#JJK: by running on the client: +#JJK: ssh ... -R ::139 +#JJK: If SAMBA_MOUNT_SHARE_PROTOCOL="smbfs" (technically, if it doesn't equal +#JJK 'cifs' or in most cases 'both') then the ssh tunnel is automatically +#JJK: set up from port on the server to port 139 +#JJK: on the remote client. +#JJK: Note in *all* cases, the cups printer on the client is accessed from +#JJK: the server via the command line, using the following -h flag: +#JJK: -h localhost: [-P ] +#JJK: or via the CUPS web browser using: +#JJK: http://localhost: +SMBPORT_OFFSET=8000 ENABLE_PERSISTENT_SESSION="all" DISABLE_PERSISTENT_SESSION="" @@ -166,7 +184,11 @@ ENABLE_CUPS_SEAMLESS="0" CUPS_SEAMLESS_DELAY="10" ENABLE_FOOMATIC="1" -COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +#JJK: COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +COMMAND_FOOMATIC="/usr/bin/foomatic-ppdfile" + +#JJK: added the following path referenced in nxprint +PPD_DIR="/usr/share/cups/model" #JJK: Note /usr/share/ppd on some systems CUPS_BACKEND="/usr/lib/cups/backend" CUPS_IPP_BACKEND="$CUPS_BACKEND/nxipp" @@ -185,7 +207,8 @@ DEFAULT_X_WM="" KILL_DEFAULT_X_WM="1" USER_X_STARTUP_SCRIPT=.Xclients -DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +#JJK: DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +DEFAULT_X_SESSION=/etc/X11/xinit/Xsession COMMAND_START_KDE=startkde COMMAND_START_GNOME=gnome-session COMMAND_START_CDE=cdwm @@ -315,7 +338,7 @@ [ -z "$AGENT_LIBRARY_PATH" ] && AGENT_LIBRARY_PATH=$PATH_LIB [ -z "$PROXY_LIBRARY_PATH" ] && PROXY_LIBRARY_PATH=$PATH_LIB [ -z "$APPLICATION_LIBRARY_PATH" ] && APPLICATION_LIBRARY_PATH=$PATH_LIB -[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6.2:$APPLICATION_LIBRARY_PATH/libXext.so.6.4:$APPLICATION_LIBRARY_PATH/libXcomp.so:$APPLICATION_LIBRARY_PATH/libXcompext.so:$APPLICATION_LIBRARY_PATH/libXrender.so.1.2" +[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6:$APPLICATION_LIBRARY_PATH/libXext.so.6:$APPLICATION_LIBRARY_PATH/libXcomp.so.3:$APPLICATION_LIBRARY_PATH/libXcompext.so.3:$APPLICATION_LIBRARY_PATH/libXrender.so.1" NX_BACKEND_VERSION=$(strings $PATH_BIN/nxagent 2>/dev/null | egrep 'NXAGENT - Version' | sed 's/.*Version //g') diff -Naur freenx-server-0.7.3/nxnode freenx-server.svn613.plusfixes/nxnode --- freenx-server-0.7.3/nxnode 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxnode 2009-07-25 17:59:33.000000000 +0200 @@ -13,13 +13,27 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxnode 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxnode 613 2008-09-01 20:42:31Z fabianx $ # # 21.06.2004: - Full reconnection support # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) --userconf +#JJK: Added following 'if' stanza as a kluge since the following variables +#JJK: need to be set in cmd_node_smbmount node_umount_smb +#JJK: but they are currently set only in startsession which is called +#JJK: separately from nxserver via ssh so environment variables +#JJK: aren't preserved. +if [[ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" || \ + ( "$SAMBA_MOUNT_SHARE_PROTOCOL" = "both" && \ + `which "$COMMAND_SMBMOUNT_CIFS"` && `which "$COMMAND_SMBUMOUNT_CIFS"` ) \ + ]] > /dev/null 2>&1; then + COMMAND_SMBMOUNT=$COMMAND_SMBMOUNT_CIFS + COMMAND_SMBUMOUNT=$COMMAND_SMBUMOUNT_CIFS + SAMBA_MOUNT_SHARE_PROTOCOL="cifs" +fi + # # ----------------------------------------------------------------------------- # Startup of nxnode @@ -540,7 +554,8 @@ # Start the agent - PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + #PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & fi # @@ -620,11 +635,27 @@ touch "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/certs" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/ppd" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cache" + mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/log" #JJK cups log file home + +#JJK: Modifications to cupsd.conf +#JJK: - Added SystemGroup line in order to add $USER to SystemGroup +#JJK: - Moved all the log files to log/ +#JJK: - Set AccessLog to: log/access_log (was /dev/null) +#JJK: - Added listening on $NODE_CUPSD_PORT +#JJK: Listen localhost: $NODE_CUPSD_PORT +#JJK: - Removed following line because directive is specific to Debian +#JJK: PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: - Access restrictions borrowed from /etc/cups/cupsd.conf +#JJK: - Default policy borrowed from /etc/cups/cupsd.conf but modified +#JJK: to allow Add, Delete, and Default printer without (password) +#JJK: authentication +#JJK: - Note for more detailed logging set: LogLevel debug cat < $USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf -AccessLog /dev/null -ErrorLog error_log -PageLog page_log +SystemGroup sys root $USER +AccessLog log/access_log +ErrorLog log/error_log +PageLog log/page_log LogLevel info TempDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp RequestRoot $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool @@ -632,19 +663,60 @@ StateDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/ CacheDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/cache +Listen localhost:$NODE_CUPSD_PORT Listen $NODE_CUPSD_SOCKET Browsing Off ServerName localhost -PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: Restrict access to the server... Order Deny,Allow Deny From All Allow from 127.0.0.1 +#JJK: Restrict access to the admin pages... + + Encryption Required + Order allow,deny + Allow localhost + + +#JJK: Restrict access to configuration files... + + AuthType Basic + Require user @SYSTEM + Order allow,deny + Allow localhost + + # Allow everything for anonymous, because we are protected through UNIX socket +#JJK: Since allowing access via $NODE_CUPSD_PORT, need to add protection + #JJK: Job-related operations must be done by the owner or an adminstrator... + + Require user @OWNER @SYSTEM + Order deny,allow + + + #JJK:All administration operations require an adminstrator to authenticate... + + AuthType Basic + Require user @SYSTEM + Order deny,allow + + + #JJK: Except need to allow these for nxnode to work + + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER @SYSTEM + Order deny,allow + + AuthType None Order deny,allow @@ -656,9 +728,17 @@ # copy mime.* files cp -af "$CUPS_ETC"/mime.* "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" + #JJK: Also copy over pstoraster.convs + cp -af "$CUPS_ETC"/mime.* "$CUPS_ETC"/pstoraster.convs "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" # start cupsd - $COMMAND_CUPSD -c "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf" &>/dev/null /dev/null /dev/null "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" # setup KDE if [ "$ENABLE_KDE_CUPS" = "1" -a -e "$KDE_PRINTRC" ] @@ -700,6 +780,7 @@ cat "$USER_FAKE_HOME/.nx/C-$sess_id/scripts/mpoint" | while read mpoint do $COMMAND_SMBUMOUNT "$mpoint" >/dev/null 2>/dev/null + rmdir "$mpoint" >/dev/null 2>/dev/null #JJK:Remove mount point if empty done } @@ -1078,6 +1159,8 @@ # Rootless fix from 2x nxserver 1.5.0 realtype=$type [ "$type" = "unix-application" -o "$type" = "unix-default" ] && realtype="unix-desktop" + [ "$type" = "unix-gnome" ] && realtype="gnome" + [ "$type" = "unix-kde" ] && realtype="kde" # NX 2.1.0 file-sharing port options client=$(getparam client) @@ -1116,6 +1199,7 @@ COMMAND_SMBMOUNT=/bin/true COMMAND_SMBUMOUNT=/bin/true + smbport=139 #JJK: still may want to do printer sharing... else # smbfs smbport=139 fi @@ -1184,6 +1268,17 @@ [ -z "$userip" -a "$host" = "127.0.0.1" ] && userip="127.0.0.1" [ -z "$userip" ] && userip="*" fi + + # We need our own external IP + proxyip="$EXTERNAL_PROXY_IP" + + if [ -z "$proxyip" -a -n "$host" ] + then + [ "$host" = "127.0.0.1" ] && host=$(hostname) + proxyip=$(ping -c1 "$host" | grep 'PING' | cut -d'(' -f2 | cut -d')' -f1) + fi + + [ -z "$proxyip" ] && proxyip="127.0.0.1" # ok, lets make the session dir first: @@ -1245,7 +1340,7 @@ umask 0077 cat << EOF > "$USER_FAKE_HOME/.nx/C-$sess_id/options" -${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype,cleanup=0,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${clipboard:+,clipboard=$clipboard}${menu:+,menu=$menu}:$display +nx/nx,${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${geometry:+geometry=$geometry,}${client:+client=$client,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype${clipboard:+,clipboard=$clipboard}${composite:+composite=$composite},cleanup=0,product=LFE/None/LFEN/None,shmem=1,${backingstore:+backingstore=$backingstore,}shpix=1,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${menu:+,menu=$menu}:$display EOF umask $OLD_UMASK #samba=$samba, @@ -1316,7 +1411,7 @@ NX> 705 Session display: $display NX> 703 Session type: $type NX> 701 Proxy cookie: $proxy_cookie -NX> 702 Proxy IP: $userip +NX> 702 Proxy IP: $proxyip NX> 706 Agent cookie: $cookie NX> 704 Session cache: $type NX> 707 SSL tunneling: $ssl_tunnel @@ -1373,7 +1468,8 @@ password=$(getparam password) share=$(getparam share) computername=$(getparam computername) - dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') +#JJK: dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') + dir=$(getparam dir | sed 's/\(%24\|\$\)(SHARES)/MyShares/g') # rdir=$(getparam dir | sed 's|$(SHARES)/||g') display=$(cd $USER_FAKE_HOME/.nx/; echo C-$SERVER_NAME-*-$sessionid | awk 'BEGIN {FS="-"} {i=NF-1; print $i}') mkdir -p "$HOME/$dir" @@ -1393,6 +1489,7 @@ echo "$HOME/$dir" >> "$USER_FAKE_HOME/.nx/C-$SERVER_NAME-$display-$sessionid/scripts/mpoint" else $PATH_BIN/nxdialog -dialog ok -caption "NXServer Message" -message "Info: Share: '//$computername/$share' failed to mount: $error" -display :$display & + rmdir "$HOME/$dir" >/dev/null 2>/dev/null #JJK: Remove mount point if empty fi } @@ -1415,6 +1512,12 @@ # this will also setup the userspace cupsd export CUPS_SERVER=$(node_cupsd_get_socket) +#JJK: The following if-stanza kludge added to enable printing when smbport=cifs +#JJK: since smb printing won't work when forwarded over port 445 + if [ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" ] ; then + let port=$port+$SMBPORT_OFFSET + fi + if [ "$type" = "smb" ] then if [ -x "$CUPS_BACKEND/nxsmb" ] @@ -1443,6 +1546,9 @@ if [ "$ENABLE_CUPS_SEAMLESS" != "1" ] then + #JJK: Export the following variables for use by nxdialog/nxprint + #JJK: Note they are also exported in nxdialog but doesn't help there + export ENABLE_FOOMATIC COMMAND_FOOMATIC PPD_DIR MODEL=$($PATH_BIN/nxdialog -printer "$NAME" -display :$display) [ -z "$MODEL" -o "$MODEL" = "cancel: aborted" ] && return else @@ -1450,7 +1556,11 @@ MODEL="download_cached" fi - PUBLIC="-u allow:$USER" +#JJK: I like to also allow 'guest' so you can do things like print +#JJK: testpages from the CUPS web interface. Note this is required +#JJK: even for the original user to print test pages +#JJK: PUBLIC="-u allow:$USER" + PUBLIC="-u allow:$USER,guest" [ "$public" == "1" ] && PUBLIC="" if [ "$MODEL" = "download_new" -o "$MODEL" = "download_cached" ] diff -Naur freenx-server-0.7.3/nxprint freenx-server.svn613.plusfixes/nxprint --- freenx-server-0.7.3/nxprint 2008-03-11 00:01:03.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxprint 2009-07-25 17:32:00.000000000 +0200 @@ -51,7 +51,8 @@ if [ -z "$(find $UTILITY_DRIVERS_CACHE.all -mmin -60 2> /dev/null)" ] then { - cd /usr/share/ppd/ +#JJK: cd /usr/share/ppd/ + cd $PPD_DIR awk -F '"' '/\*Manufacturer:/ { a[FILENAME]=$2 } /\*NickName:/ { b[FILENAME]=$2 } END { diff -Naur freenx-server-0.7.3/nxredir/nxsmb freenx-server.svn613.plusfixes/nxredir/nxsmb --- freenx-server-0.7.3/nxredir/nxsmb 2008-03-14 21:52:47.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxredir/nxsmb 2009-07-25 18:15:06.000000000 +0200 @@ -18,6 +18,11 @@ PROTOCOL=$(echo $DEVICE_URI | cut -d/ -f4) PRINTER=$(echo $DEVICE_URI | cut -d/ -f5) +if [ "$#" -eq 0 ] +then + exit 0 +fi + if [ -z "$PRINTER" ] # old style setup then echo "Warning: Not using nxredir library. The DEVICE_URI is not in the right format." diff -Naur freenx-server-0.7.3/nxserver freenx-server.svn613.plusfixes/nxserver --- freenx-server-0.7.3/nxserver 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxserver 2009-07-25 21:49:06.000000000 +0200 @@ -11,12 +11,28 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxserver 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxserver 612 2008-08-25 03:28:15Z fabianx $ # # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +if test ! -e $NX_ETC_DIR/users.id_dsa; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/users.id_dsa +fi + +if test ! -e $NX_ETC_DIR/client.id_dsa.key -o ! -e $NX_ETC_DIR/server.id_dsa.pub.key; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/local.id_dsa + mv -f $NX_ETC_DIR/local.id_dsa $NX_ETC_DIR/client.id_dsa.key + mv -f $NX_ETC_DIR/local.id_dsa.pub $NX_ETC_DIR/server.id_dsa.pub.key + chmod 0600 $NX_ETC_DIR/client.id_dsa.key $NX_ETC_DIR/server.id_dsa.pub.key +fi + +if test ! -s $NX_HOME_DIR/.ssh/known_hosts -a -e /etc/ssh/ssh_host_rsa_key.pub; then + echo -n "127.0.0.1 " > $NX_HOME_DIR/.ssh/known_hosts + cat /etc/ssh/ssh_host_rsa_key.pub >> $NX_HOME_DIR/.ssh/known_hosts 2>/dev/null +fi + # following two functions are Copyright by Klaus Knopper stringinstring(){ @@ -1192,7 +1208,7 @@ # Lock held SERVER_LB_NR=$(cat $NX_SESS_DIR/round-robin 2>/dev/null) - let SERVER_LB_NR=(SERVER_LB_NR+1) % SERVER_LB_NR_OF_HOSTS + let SERVER_LB_NR=(SERVER_LB_NR+1)%SERVER_LB_NR_OF_HOSTS echo $SERVER_LB_NR >$NX_SESS_DIR/round-robin # Exit critical section @@ -1436,7 +1452,7 @@ done # Check if there is already an agent running on that display on that host - let AGENT_DISPLAY=$SESS_DISPLAY+6000 + let AGENT_DISPLAY=$SESS_DISPLAY-$DISPLAY_BASE+6000 if $COMMAND_NETCAT -z "$SERVER_HOST" $AGENT_DISPLAY 2>/dev/null then log 2 "Warning: Stray nxagent without .nX$SESS_DISPLAY-lock found on host:port $SERVER_HOST:$AGENT_DISPLAY." @@ -1961,71 +1977,71 @@ session_history "$user" "$sessid" } -cmd_terminate() +cmd_execute() +{ + cmd_host="$1" + cmd_user="$2" + cmd_cmd="$3" + + if [ "$ENABLE_USERMODE_AUTHENTICATION" = "1" ] + then + sh -c "$cmd_cmd" + elif [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + then + su - "$cmd_user" -c "$cmd_cmd" + else + ssh "$cmd_host" su - "$cmd_user" -c "'$cmd_cmd'" + fi +} + +cmd_terminate_or_send() { - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - for i in $CMD_PARAMS; + CMD="$1" + + if [ "$CMD" = "--broadcast" ] + then + CMD_PARAMS=$(session_find_all) + [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." + else + CMD_PARAMS=$(cmd_parse_3_params "$2") + [ -z "$CMD_PARAMS" ] && exit 1 + shift + fi + shift + + for i in $CMD_PARAMS do CMDLINE=$(session_get_cmdline $i) cmd_sessionid=$(getparam sessionId) + cmd_display=$(getparam display) cmd_user=$(getparam userName) cmd_type=$(getparam type) cmd_status=$(getparam status) + cmd_host=$(getparam host) # is it a "good" session? - case "$1" in + case "$CMD" in --suspend) if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --suspend" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --suspend" fi ;; --terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" ;; --force-terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" session_close $cmd_sessionid ;; - esac - done - -} - -cmd_send() -{ - if [ "$1" = "--broadcast" ] - then - CMD_PARAMS=$(session_find_all) - [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." - else - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - shift - fi - shift - for i in $CMD_PARAMS; - do - CMDLINE=$(session_get_cmdline $i) - cmd_display=$(getparam display) - cmd_user=$(getparam userName) - cmd_type=$(getparam type) - cmd_status=$(getparam status) - cmd_host=$(getparam host) - - # is it a "good" session? - if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" - then - if [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + --send|--broadcast) + # is it a "good" session? + if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - su - "$cmd_user" -c "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" - else - ssh $cmd_host su - "$cmd_user" -c "'$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &'" + cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" fi - fi + esac done - #nxnode_start --send "$CMD_PARAMS" } # @@ -2099,13 +2115,13 @@ cmd_history "$@" ;; --terminate|--suspend|--force-terminate) - cmd_terminate "$@" + cmd_terminate_or_send "$@" ;; --cleanup) - cmd_terminate "--force-terminate" "*" + cmd_terminate_or_send "--force-terminate" "*" ;; --send|--broadcast) - cmd_send "$@" + cmd_terminate_or_send "$@" ;; *) cmd_abort "Error: Function $CMD not implemented yet." Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/devel/freenx-server.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- freenx-server.spec 24 Jul 2009 23:10:47 -0000 1.7 +++ freenx-server.spec 25 Jul 2009 22:29:31 -0000 1.8 @@ -1,3 +1,5 @@ +%bcond_with oldx11 + %define _pkglibdir %{_libdir}/nx %define _pkgdatadir %{_datadir}/nx %define _pkglibexecdir %{_libexecdir}/nx @@ -11,15 +13,20 @@ Group: Applications/Internet URL: http://freenx.berlios.de/ Source0: http://download.berlios.de/freenx/%{name}-%{version}.tar.gz Source1: freenx.logrotate -Patch0: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch +Patch0: freenx-server-0.7.3-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: imake, redhat-release Requires: nx, %{_pkglibdir} Requires: openssh-server nc expect which perl Requires: xorg-x11-server-Xorg xorg-x11-apps Requires: /usr/lib/cups/backend +%if %{with oldx11} +Requires: fonts-xorg-base +%else +Requires: xorg-x11-fonts-misc +%endif -Obsoletes: freenx <= %{version}-%{release} +Obsoletes: freenx < %{version}-%{release} Provides: freenx = %{version}-%{release} %description @@ -30,7 +37,7 @@ under the GPL. FreeNX-server is a GPL im %prep %setup -q -%patch0 -p1 -b .sharing_and_multimedia +%patch0 -p1 -b .fixes sed -i -e's,\$NX_DIR/bin,%{_pkglibexecdir},g'\ -e's,\$NX_DIR/lib,%{_pkglibdir},g'\ @@ -45,12 +52,21 @@ make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} NX_ETC_DIR=/etc/nxserver +cp -a %{buildroot}/etc/nxserver/node.conf.sample \ + %{buildroot}/etc/nxserver/node.conf + +touch \ + %{buildroot}/etc/nxserver/users.id_dsa \ + %{buildroot}/etc/nxserver/users.id_dsa.pub \ + %{buildroot}/etc/nxserver/client.id_dsa.key \ + %{buildroot}/etc/nxserver/server.id_dsa.pub.key +# Create the nx user home mkdir -p %{buildroot}/var/lib/nxserver/home/.ssh ln -s /etc/nxserver/server.id_dsa.pub.key \ - %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys + %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys2 chmod 0700 %{buildroot}/var/lib/nxserver/home{,/.ssh} - +touch %{buildroot}/var/lib/nxserver/home/.ssh/known_hosts mkdir -p %{buildroot}/var/lib/nxserver/db/closed mkdir -p %{buildroot}/var/lib/nxserver/db/running mkdir -p %{buildroot}/var/lib/nxserver/db/failed @@ -60,7 +76,10 @@ mkdir -p %{buildroot}/var/log/nx chmod 0700 %{buildroot}/var/log/nx mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d -cp -pr %SOURCE1 %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server + +mkdir -p %{buildroot}%{_sysconfdir}/init.d +install -p init.d/freenx-server %{buildroot}%{_sysconfdir}/init.d/freenx-server %clean rm -rf %{buildroot} @@ -70,21 +89,16 @@ rm -rf %{buildroot} || %{_sbindir}/usermod -d /var/lib/nxserver/home -s %{_pkglibexecdir}/nxserver nx 2>/dev/null || : %post -if test ! -e /etc/nxserver/users.id_dsa; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/users.id_dsa +/sbin/chkconfig --add freenx-server +# Not a real service, just to make sure we have /tmp/.X11-unix +/sbin/service freenx-server start > /dev/null 2>&1 + +%preun +if [ $1 = 0 ]; then + /sbin/service freenx-server stop > /dev/null 2>&1 + /sbin/chkconfig --del freenx-server fi -if ! test -e /etc/nxserver/client.id_dsa.key -a -e /etc/nxserver/server.id_dsa.pub.key; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/local.id_dsa - mv -f /etc/nxserver/local.id_dsa /etc/nxserver/client.id_dsa.key - mv -f /etc/nxserver/local.id_dsa.pub /etc/nxserver/server.id_dsa.pub.key -fi - -echo -n "127.0.0.1 " > /var/lib/nxserver/home/.ssh/known_hosts -# We do depend on openssh-server, but package installation != key -# creation time. See also Fedora bug #235592 -cat /etc/ssh/ssh_host_rsa_key.pub >> /var/lib/nxserver/home/.ssh/known_hosts 2>/dev/null -chown nx:root /var/lib/nxserver/home/.ssh/known_hosts %files %defattr(-,root,root,-) @@ -93,18 +107,31 @@ chown nx:root /var/lib/nxserver/home/.ss %{_pkglibexecdir}/* %{_pkglibdir}/* /usr/lib/cups/backend/nxsmb -%defattr(-,nx,root,-) -/etc/nxserver -/var/lib/nxserver -/var/log/nx +%dir %attr(-,nx,root) /etc/nxserver +/etc/nxserver/node.conf.sample +%config(noreplace) /etc/nxserver/node.conf +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa.pub +%ghost %attr(-,nx,root) /etc/nxserver/client.id_dsa.key +%ghost %attr(-,nx,root) /etc/nxserver/server.id_dsa.pub.key +%attr(-,nx,root) /var/lib/nxserver +%ghost %attr(-,nx,root) /var/lib/nxserver/home/.ssh/known_hosts +%attr(-,nx,root) /var/log/nx %config(noreplace) %{_sysconfdir}/logrotate.d/freenx-server +%{_sysconfdir}/init.d/freenx-server %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 0.7.3-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Feb 24 2009 Fedora Release Engineering - 0.7.3-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +- Use some patches from up to svn 613 (dated 2008-09-01). +- Add keymap.patch from Fedora bug #506470. +- Add cups listing patch from Fedora bug #509879. +- Add dependency for misc fonts Fedora bug #467494. +- Fix stale X11 displays from Fedora bug #492402. +- Fix authorized_keys*2* syncing, may fix Fedora bug #503822. +- Move %post parts to nxserver startup, fixes Fedora bug #474720. +- Copy ssh keys on first start, fixes Fedora bug #235592. +- Add init script with CentOS patches that ensures /tmp/.X11-unix + always exists, fixes Fedora bug #437655. * Sun Aug 24 2008 Axel Thimm - 0.7.3-11 - Rebase patch to 0.7.2 to avoid fuzz=0 rejection on recent rpm. --- freenx-server-0.7.2-sharing_and_multimedia_fixes.patch DELETED --- From athimm at fedoraproject.org Sat Jul 25 22:29:30 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:29:30 +0000 (UTC) Subject: rpms/freenx-server/F-11 freenx-server-0.7.3-fixes.patch, NONE, 1.1 freenx-server.spec, 1.6, 1.7 freenx-server-0.7.2-sharing_and_multimedia_fixes.patch, 1.1, NONE Message-ID: <20090725222930.F13CB11C02BD@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8906/freenx-server/F-11 Modified Files: freenx-server.spec Added Files: freenx-server-0.7.3-fixes.patch Removed Files: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch Log Message: - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. - Add dependency for misc fonts Fedora bug #467494. - Fix stale X11 displays from Fedora bug #492402. - Fix authorized_keys*2* syncing, may fix Fedora bug #503822. - Move %post parts to nxserver startup, fixes Fedora bug #474720. - Copy ssh keys on first start, fixes Fedora bug #235592. - Add init script with CentOS patches that ensures /tmp/.X11-unix always exists, fixes Fedora bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 83 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 317 insertions(+), 83 deletions(-) --- NEW FILE freenx-server-0.7.3-fixes.patch --- diff -Naur freenx-server-0.7.3/ChangeLog freenx-server.svn613.plusfixes/ChangeLog --- freenx-server-0.7.3/ChangeLog 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/ChangeLog 2008-09-01 22:42:31.000000000 +0200 @@ -1,3 +1,20 @@ +xx.11.2008 FreeNX 0.7.4 + * Opened the 0.7.4 development. + * Fixed missing export of NX_ETC_DIR in Makefile, + so node.conf.sample is installed correctly. + (fabianx at bat.berlios.de) + * Fixed broken round-robin load balance algorithm. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + load balancing case. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + usermode case. + (fabianx at bat.berlios.de) + * Fixed non-encrypted session mode. You might need to + set EXTERNAL_PROXY_IP in node.conf. + (fabianx at bat.berlios.de) + 18.08.2008 FreeNX 0.7.3 "Priscilla One Year Edition" * Opened the 0.7.3 development. * Added logging of failed authentication attempts diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 @@ -8,21 +8,78 @@ # # SVN: $Id: freenx-server 485 2008-03-02 10:29:52Z fabianx $ # +# Modified to be chkconfig compatible by Johnny Hughes +# +# chkconfig: 2345 91 35 +# description: Creates /tmp/.X11-unix/ if required and cleans up dead \ +# NX sessions. + # Read the config file -. $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +. /usr/libexec/nx/nxloadconfig -- + +# Source function library. +. /etc/init.d/functions +prog="freenx-server" + +start() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then + /bin/chown root /tmp/.X11-unix + fi + ret=0 + fi + if [ $ret -eq 0 ]; then + touch /var/lock/subsys/freenx-server + action $"Starting $prog: " /bin/true + else + action $"Starting $prog: " /bin/false + fi + echo + return $ret +} + +stop() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ -e "/var/lock/subsys/freenx-server" ]; then + rm -f /var/lock/subsys/freenx-server + ret=$? + else + ret=0 + fi + if [ $ret -eq 0 ]; then + action $"Stopping $prog: " /bin/true + else + action $"Stopping $prog: " /bin/false + fi + echo + return $ret +} + +restart() { + echo $"Restarting $prog:" + stop + start +} case "$1" in - start) - [ ! -d "/tmp/.X11-unix" ] && mkdir -m1755 /tmp/.X11-unix/ - $PATH_BIN/nxserver --cleanup - $PATH_BIN/nxserver --start - ;; - stop) - $PATH_BIN/nxserver --stop - $PATH_BIN/nxserver --cleanup - ;; - *) - echo "Usage: $0 " - ;; + start) + start + ;; + stop) + stop + ;; + restart) + restart + ;; + *) + echo $"Usage: $prog {start|stop|restart}" + exit 1 esac + +exit $? diff -Naur freenx-server-0.7.3/Makefile freenx-server.svn613.plusfixes/Makefile --- freenx-server-0.7.3/Makefile 2008-08-18 04:16:25.000000000 +0200 +++ freenx-server.svn613.plusfixes/Makefile 2008-08-25 04:41:44.000000000 +0200 @@ -8,7 +8,7 @@ all: cd nxviewer-passwd && xmkmf && make Makefiles && make depend source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ for i in $(SUBDIRS) ; \ do\ echo "making" all "in $$i..."; \ @@ -44,5 +44,5 @@ install: source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ $(MAKE) nxenv_install diff -Naur freenx-server-0.7.3/node.conf.sample freenx-server.svn613.plusfixes/node.conf.sample --- freenx-server-0.7.3/node.conf.sample 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/node.conf.sample 2008-09-01 22:42:31.000000000 +0200 @@ -37,7 +37,7 @@ # # https://mail.kde.org/mailman/listinfo/freenx-knx # -# SVN: $Id: node.conf.sample 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: node.conf.sample 613 2008-09-01 20:42:31Z fabianx $ ######################################################################### # General FreeNX directives @@ -47,6 +47,11 @@ # different than the default hostname (as returned by `hostname`) #SERVER_NAME="$(hostname)" +# The node ip which is used by NX Node in unecnrypted session mode. +# Set it if you want to use a specific external ip or the autodetection +# is not working. +#EXTERNAL_PROXY_IP="" + # The port number where local 'sshd' is listening. #SSHD_PORT=22 diff -Naur freenx-server-0.7.3/nxloadconfig freenx-server.svn613.plusfixes/nxloadconfig --- freenx-server-0.7.3/nxloadconfig 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxloadconfig 2009-07-26 00:19:30.000000000 +0200 @@ -5,7 +5,7 @@ # # License: GPL, version 2 # -# SVN: $Id: nxloadconfig 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxloadconfig 613 2008-09-01 20:42:31Z fabianx $ # # ======================================================================== @@ -52,7 +52,7 @@ # DO NOT TOUCH unless you REALLY know what you are doing ######################################################################### -NX_VERSION=3.2.0-73 +NX_VERSION=3.2.0-74-SVN NX_LICENSE="OS (GPL, using backend: %BACKEND%)" # Where can different nx components be found @@ -85,6 +85,7 @@ # General FreeNX directives SERVER_NAME="$(hostname)" +EXTERNAL_PROXY_IP="" SSHD_PORT=22 # Authentication / Security directives @@ -104,11 +105,28 @@ # Restriction directives -DISPLAY_BASE=1000 +#JJK: DISPLAY_BASE=1000 +#JJK: Change DISPLAY_BASE to 2000 to avoid conflict of DISPLAY_BASE+7000 with nasd +DISPLAY_BASE=2000 SESSION_LIMIT=200 SESSION_USER_LIMIT="" #Calculated DISPLAY_LIMIT=200 +#JJK: Added the following to allow printing when using cifs mount +#JJK: Note the smb print port (#139) must then be tunnelled manually +#JJK: from on the server to port 139 on the host +#JJK: by running on the client: +#JJK: ssh ... -R ::139 +#JJK: If SAMBA_MOUNT_SHARE_PROTOCOL="smbfs" (technically, if it doesn't equal +#JJK 'cifs' or in most cases 'both') then the ssh tunnel is automatically +#JJK: set up from port on the server to port 139 +#JJK: on the remote client. +#JJK: Note in *all* cases, the cups printer on the client is accessed from +#JJK: the server via the command line, using the following -h flag: +#JJK: -h localhost: [-P ] +#JJK: or via the CUPS web browser using: +#JJK: http://localhost: +SMBPORT_OFFSET=8000 ENABLE_PERSISTENT_SESSION="all" DISABLE_PERSISTENT_SESSION="" @@ -166,7 +184,11 @@ ENABLE_CUPS_SEAMLESS="0" CUPS_SEAMLESS_DELAY="10" ENABLE_FOOMATIC="1" -COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +#JJK: COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +COMMAND_FOOMATIC="/usr/bin/foomatic-ppdfile" + +#JJK: added the following path referenced in nxprint +PPD_DIR="/usr/share/cups/model" #JJK: Note /usr/share/ppd on some systems CUPS_BACKEND="/usr/lib/cups/backend" CUPS_IPP_BACKEND="$CUPS_BACKEND/nxipp" @@ -185,7 +207,8 @@ DEFAULT_X_WM="" KILL_DEFAULT_X_WM="1" USER_X_STARTUP_SCRIPT=.Xclients -DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +#JJK: DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +DEFAULT_X_SESSION=/etc/X11/xinit/Xsession COMMAND_START_KDE=startkde COMMAND_START_GNOME=gnome-session COMMAND_START_CDE=cdwm @@ -315,7 +338,7 @@ [ -z "$AGENT_LIBRARY_PATH" ] && AGENT_LIBRARY_PATH=$PATH_LIB [ -z "$PROXY_LIBRARY_PATH" ] && PROXY_LIBRARY_PATH=$PATH_LIB [ -z "$APPLICATION_LIBRARY_PATH" ] && APPLICATION_LIBRARY_PATH=$PATH_LIB -[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6.2:$APPLICATION_LIBRARY_PATH/libXext.so.6.4:$APPLICATION_LIBRARY_PATH/libXcomp.so:$APPLICATION_LIBRARY_PATH/libXcompext.so:$APPLICATION_LIBRARY_PATH/libXrender.so.1.2" +[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6:$APPLICATION_LIBRARY_PATH/libXext.so.6:$APPLICATION_LIBRARY_PATH/libXcomp.so.3:$APPLICATION_LIBRARY_PATH/libXcompext.so.3:$APPLICATION_LIBRARY_PATH/libXrender.so.1" NX_BACKEND_VERSION=$(strings $PATH_BIN/nxagent 2>/dev/null | egrep 'NXAGENT - Version' | sed 's/.*Version //g') diff -Naur freenx-server-0.7.3/nxnode freenx-server.svn613.plusfixes/nxnode --- freenx-server-0.7.3/nxnode 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxnode 2009-07-25 17:59:33.000000000 +0200 @@ -13,13 +13,27 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxnode 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxnode 613 2008-09-01 20:42:31Z fabianx $ # # 21.06.2004: - Full reconnection support # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) --userconf +#JJK: Added following 'if' stanza as a kluge since the following variables +#JJK: need to be set in cmd_node_smbmount node_umount_smb +#JJK: but they are currently set only in startsession which is called +#JJK: separately from nxserver via ssh so environment variables +#JJK: aren't preserved. +if [[ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" || \ + ( "$SAMBA_MOUNT_SHARE_PROTOCOL" = "both" && \ + `which "$COMMAND_SMBMOUNT_CIFS"` && `which "$COMMAND_SMBUMOUNT_CIFS"` ) \ + ]] > /dev/null 2>&1; then + COMMAND_SMBMOUNT=$COMMAND_SMBMOUNT_CIFS + COMMAND_SMBUMOUNT=$COMMAND_SMBUMOUNT_CIFS + SAMBA_MOUNT_SHARE_PROTOCOL="cifs" +fi + # # ----------------------------------------------------------------------------- # Startup of nxnode @@ -540,7 +554,8 @@ # Start the agent - PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + #PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & fi # @@ -620,11 +635,27 @@ touch "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/certs" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/ppd" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cache" + mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/log" #JJK cups log file home + +#JJK: Modifications to cupsd.conf +#JJK: - Added SystemGroup line in order to add $USER to SystemGroup +#JJK: - Moved all the log files to log/ +#JJK: - Set AccessLog to: log/access_log (was /dev/null) +#JJK: - Added listening on $NODE_CUPSD_PORT +#JJK: Listen localhost: $NODE_CUPSD_PORT +#JJK: - Removed following line because directive is specific to Debian +#JJK: PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: - Access restrictions borrowed from /etc/cups/cupsd.conf +#JJK: - Default policy borrowed from /etc/cups/cupsd.conf but modified +#JJK: to allow Add, Delete, and Default printer without (password) +#JJK: authentication +#JJK: - Note for more detailed logging set: LogLevel debug cat < $USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf -AccessLog /dev/null -ErrorLog error_log -PageLog page_log +SystemGroup sys root $USER +AccessLog log/access_log +ErrorLog log/error_log +PageLog log/page_log LogLevel info TempDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp RequestRoot $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool @@ -632,19 +663,60 @@ StateDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/ CacheDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/cache +Listen localhost:$NODE_CUPSD_PORT Listen $NODE_CUPSD_SOCKET Browsing Off ServerName localhost -PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: Restrict access to the server... Order Deny,Allow Deny From All Allow from 127.0.0.1 +#JJK: Restrict access to the admin pages... + + Encryption Required + Order allow,deny + Allow localhost + + +#JJK: Restrict access to configuration files... + + AuthType Basic + Require user @SYSTEM + Order allow,deny + Allow localhost + + # Allow everything for anonymous, because we are protected through UNIX socket +#JJK: Since allowing access via $NODE_CUPSD_PORT, need to add protection + #JJK: Job-related operations must be done by the owner or an adminstrator... + + Require user @OWNER @SYSTEM + Order deny,allow + + + #JJK:All administration operations require an adminstrator to authenticate... + + AuthType Basic + Require user @SYSTEM + Order deny,allow + + + #JJK: Except need to allow these for nxnode to work + + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER @SYSTEM + Order deny,allow + + AuthType None Order deny,allow @@ -656,9 +728,17 @@ # copy mime.* files cp -af "$CUPS_ETC"/mime.* "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" + #JJK: Also copy over pstoraster.convs + cp -af "$CUPS_ETC"/mime.* "$CUPS_ETC"/pstoraster.convs "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" # start cupsd - $COMMAND_CUPSD -c "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf" &>/dev/null /dev/null /dev/null "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" # setup KDE if [ "$ENABLE_KDE_CUPS" = "1" -a -e "$KDE_PRINTRC" ] @@ -700,6 +780,7 @@ cat "$USER_FAKE_HOME/.nx/C-$sess_id/scripts/mpoint" | while read mpoint do $COMMAND_SMBUMOUNT "$mpoint" >/dev/null 2>/dev/null + rmdir "$mpoint" >/dev/null 2>/dev/null #JJK:Remove mount point if empty done } @@ -1078,6 +1159,8 @@ # Rootless fix from 2x nxserver 1.5.0 realtype=$type [ "$type" = "unix-application" -o "$type" = "unix-default" ] && realtype="unix-desktop" + [ "$type" = "unix-gnome" ] && realtype="gnome" + [ "$type" = "unix-kde" ] && realtype="kde" # NX 2.1.0 file-sharing port options client=$(getparam client) @@ -1116,6 +1199,7 @@ COMMAND_SMBMOUNT=/bin/true COMMAND_SMBUMOUNT=/bin/true + smbport=139 #JJK: still may want to do printer sharing... else # smbfs smbport=139 fi @@ -1184,6 +1268,17 @@ [ -z "$userip" -a "$host" = "127.0.0.1" ] && userip="127.0.0.1" [ -z "$userip" ] && userip="*" fi + + # We need our own external IP + proxyip="$EXTERNAL_PROXY_IP" + + if [ -z "$proxyip" -a -n "$host" ] + then + [ "$host" = "127.0.0.1" ] && host=$(hostname) + proxyip=$(ping -c1 "$host" | grep 'PING' | cut -d'(' -f2 | cut -d')' -f1) + fi + + [ -z "$proxyip" ] && proxyip="127.0.0.1" # ok, lets make the session dir first: @@ -1245,7 +1340,7 @@ umask 0077 cat << EOF > "$USER_FAKE_HOME/.nx/C-$sess_id/options" -${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype,cleanup=0,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${clipboard:+,clipboard=$clipboard}${menu:+,menu=$menu}:$display +nx/nx,${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${geometry:+geometry=$geometry,}${client:+client=$client,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype${clipboard:+,clipboard=$clipboard}${composite:+composite=$composite},cleanup=0,product=LFE/None/LFEN/None,shmem=1,${backingstore:+backingstore=$backingstore,}shpix=1,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${menu:+,menu=$menu}:$display EOF umask $OLD_UMASK #samba=$samba, @@ -1316,7 +1411,7 @@ NX> 705 Session display: $display NX> 703 Session type: $type NX> 701 Proxy cookie: $proxy_cookie -NX> 702 Proxy IP: $userip +NX> 702 Proxy IP: $proxyip NX> 706 Agent cookie: $cookie NX> 704 Session cache: $type NX> 707 SSL tunneling: $ssl_tunnel @@ -1373,7 +1468,8 @@ password=$(getparam password) share=$(getparam share) computername=$(getparam computername) - dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') +#JJK: dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') + dir=$(getparam dir | sed 's/\(%24\|\$\)(SHARES)/MyShares/g') # rdir=$(getparam dir | sed 's|$(SHARES)/||g') display=$(cd $USER_FAKE_HOME/.nx/; echo C-$SERVER_NAME-*-$sessionid | awk 'BEGIN {FS="-"} {i=NF-1; print $i}') mkdir -p "$HOME/$dir" @@ -1393,6 +1489,7 @@ echo "$HOME/$dir" >> "$USER_FAKE_HOME/.nx/C-$SERVER_NAME-$display-$sessionid/scripts/mpoint" else $PATH_BIN/nxdialog -dialog ok -caption "NXServer Message" -message "Info: Share: '//$computername/$share' failed to mount: $error" -display :$display & + rmdir "$HOME/$dir" >/dev/null 2>/dev/null #JJK: Remove mount point if empty fi } @@ -1415,6 +1512,12 @@ # this will also setup the userspace cupsd export CUPS_SERVER=$(node_cupsd_get_socket) +#JJK: The following if-stanza kludge added to enable printing when smbport=cifs +#JJK: since smb printing won't work when forwarded over port 445 + if [ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" ] ; then + let port=$port+$SMBPORT_OFFSET + fi + if [ "$type" = "smb" ] then if [ -x "$CUPS_BACKEND/nxsmb" ] @@ -1443,6 +1546,9 @@ if [ "$ENABLE_CUPS_SEAMLESS" != "1" ] then + #JJK: Export the following variables for use by nxdialog/nxprint + #JJK: Note they are also exported in nxdialog but doesn't help there + export ENABLE_FOOMATIC COMMAND_FOOMATIC PPD_DIR MODEL=$($PATH_BIN/nxdialog -printer "$NAME" -display :$display) [ -z "$MODEL" -o "$MODEL" = "cancel: aborted" ] && return else @@ -1450,7 +1556,11 @@ MODEL="download_cached" fi - PUBLIC="-u allow:$USER" +#JJK: I like to also allow 'guest' so you can do things like print +#JJK: testpages from the CUPS web interface. Note this is required +#JJK: even for the original user to print test pages +#JJK: PUBLIC="-u allow:$USER" + PUBLIC="-u allow:$USER,guest" [ "$public" == "1" ] && PUBLIC="" if [ "$MODEL" = "download_new" -o "$MODEL" = "download_cached" ] diff -Naur freenx-server-0.7.3/nxprint freenx-server.svn613.plusfixes/nxprint --- freenx-server-0.7.3/nxprint 2008-03-11 00:01:03.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxprint 2009-07-25 17:32:00.000000000 +0200 @@ -51,7 +51,8 @@ if [ -z "$(find $UTILITY_DRIVERS_CACHE.all -mmin -60 2> /dev/null)" ] then { - cd /usr/share/ppd/ +#JJK: cd /usr/share/ppd/ + cd $PPD_DIR awk -F '"' '/\*Manufacturer:/ { a[FILENAME]=$2 } /\*NickName:/ { b[FILENAME]=$2 } END { diff -Naur freenx-server-0.7.3/nxredir/nxsmb freenx-server.svn613.plusfixes/nxredir/nxsmb --- freenx-server-0.7.3/nxredir/nxsmb 2008-03-14 21:52:47.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxredir/nxsmb 2009-07-25 18:15:06.000000000 +0200 @@ -18,6 +18,11 @@ PROTOCOL=$(echo $DEVICE_URI | cut -d/ -f4) PRINTER=$(echo $DEVICE_URI | cut -d/ -f5) +if [ "$#" -eq 0 ] +then + exit 0 +fi + if [ -z "$PRINTER" ] # old style setup then echo "Warning: Not using nxredir library. The DEVICE_URI is not in the right format." diff -Naur freenx-server-0.7.3/nxserver freenx-server.svn613.plusfixes/nxserver --- freenx-server-0.7.3/nxserver 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxserver 2009-07-25 21:49:06.000000000 +0200 @@ -11,12 +11,28 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxserver 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxserver 612 2008-08-25 03:28:15Z fabianx $ # # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +if test ! -e $NX_ETC_DIR/users.id_dsa; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/users.id_dsa +fi + +if test ! -e $NX_ETC_DIR/client.id_dsa.key -o ! -e $NX_ETC_DIR/server.id_dsa.pub.key; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/local.id_dsa + mv -f $NX_ETC_DIR/local.id_dsa $NX_ETC_DIR/client.id_dsa.key + mv -f $NX_ETC_DIR/local.id_dsa.pub $NX_ETC_DIR/server.id_dsa.pub.key + chmod 0600 $NX_ETC_DIR/client.id_dsa.key $NX_ETC_DIR/server.id_dsa.pub.key +fi + +if test ! -s $NX_HOME_DIR/.ssh/known_hosts -a -e /etc/ssh/ssh_host_rsa_key.pub; then + echo -n "127.0.0.1 " > $NX_HOME_DIR/.ssh/known_hosts + cat /etc/ssh/ssh_host_rsa_key.pub >> $NX_HOME_DIR/.ssh/known_hosts 2>/dev/null +fi + # following two functions are Copyright by Klaus Knopper stringinstring(){ @@ -1192,7 +1208,7 @@ # Lock held SERVER_LB_NR=$(cat $NX_SESS_DIR/round-robin 2>/dev/null) - let SERVER_LB_NR=(SERVER_LB_NR+1) % SERVER_LB_NR_OF_HOSTS + let SERVER_LB_NR=(SERVER_LB_NR+1)%SERVER_LB_NR_OF_HOSTS echo $SERVER_LB_NR >$NX_SESS_DIR/round-robin # Exit critical section @@ -1436,7 +1452,7 @@ done # Check if there is already an agent running on that display on that host - let AGENT_DISPLAY=$SESS_DISPLAY+6000 + let AGENT_DISPLAY=$SESS_DISPLAY-$DISPLAY_BASE+6000 if $COMMAND_NETCAT -z "$SERVER_HOST" $AGENT_DISPLAY 2>/dev/null then log 2 "Warning: Stray nxagent without .nX$SESS_DISPLAY-lock found on host:port $SERVER_HOST:$AGENT_DISPLAY." @@ -1961,71 +1977,71 @@ session_history "$user" "$sessid" } -cmd_terminate() +cmd_execute() +{ + cmd_host="$1" + cmd_user="$2" + cmd_cmd="$3" + + if [ "$ENABLE_USERMODE_AUTHENTICATION" = "1" ] + then + sh -c "$cmd_cmd" + elif [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + then + su - "$cmd_user" -c "$cmd_cmd" + else + ssh "$cmd_host" su - "$cmd_user" -c "'$cmd_cmd'" + fi +} + +cmd_terminate_or_send() { - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - for i in $CMD_PARAMS; + CMD="$1" + + if [ "$CMD" = "--broadcast" ] + then + CMD_PARAMS=$(session_find_all) + [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." + else + CMD_PARAMS=$(cmd_parse_3_params "$2") + [ -z "$CMD_PARAMS" ] && exit 1 + shift + fi + shift + + for i in $CMD_PARAMS do CMDLINE=$(session_get_cmdline $i) cmd_sessionid=$(getparam sessionId) + cmd_display=$(getparam display) cmd_user=$(getparam userName) cmd_type=$(getparam type) cmd_status=$(getparam status) + cmd_host=$(getparam host) # is it a "good" session? - case "$1" in + case "$CMD" in --suspend) if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --suspend" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --suspend" fi ;; --terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" ;; --force-terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" session_close $cmd_sessionid ;; - esac - done - -} - -cmd_send() -{ - if [ "$1" = "--broadcast" ] - then - CMD_PARAMS=$(session_find_all) - [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." - else - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - shift - fi - shift - for i in $CMD_PARAMS; - do - CMDLINE=$(session_get_cmdline $i) - cmd_display=$(getparam display) - cmd_user=$(getparam userName) - cmd_type=$(getparam type) - cmd_status=$(getparam status) - cmd_host=$(getparam host) - - # is it a "good" session? - if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" - then - if [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + --send|--broadcast) + # is it a "good" session? + if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - su - "$cmd_user" -c "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" - else - ssh $cmd_host su - "$cmd_user" -c "'$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &'" + cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" fi - fi + esac done - #nxnode_start --send "$CMD_PARAMS" } # @@ -2099,13 +2115,13 @@ cmd_history "$@" ;; --terminate|--suspend|--force-terminate) - cmd_terminate "$@" + cmd_terminate_or_send "$@" ;; --cleanup) - cmd_terminate "--force-terminate" "*" + cmd_terminate_or_send "--force-terminate" "*" ;; --send|--broadcast) - cmd_send "$@" + cmd_terminate_or_send "$@" ;; *) cmd_abort "Error: Function $CMD not implemented yet." Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-11/freenx-server.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- freenx-server.spec 24 Feb 2009 18:26:12 -0000 1.6 +++ freenx-server.spec 25 Jul 2009 22:29:30 -0000 1.7 @@ -1,3 +1,5 @@ +%bcond_with oldx11 + %define _pkglibdir %{_libdir}/nx %define _pkgdatadir %{_datadir}/nx %define _pkglibexecdir %{_libexecdir}/nx @@ -5,21 +7,26 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ Source0: http://download.berlios.de/freenx/%{name}-%{version}.tar.gz Source1: freenx.logrotate -Patch0: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch +Patch0: freenx-server-0.7.3-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: imake, redhat-release Requires: nx, %{_pkglibdir} Requires: openssh-server nc expect which perl Requires: xorg-x11-server-Xorg xorg-x11-apps Requires: /usr/lib/cups/backend +%if %{with oldx11} +Requires: fonts-xorg-base +%else +Requires: xorg-x11-fonts-misc +%endif -Obsoletes: freenx <= %{version}-%{release} +Obsoletes: freenx < %{version}-%{release} Provides: freenx = %{version}-%{release} %description @@ -30,7 +37,7 @@ under the GPL. FreeNX-server is a GPL im %prep %setup -q -%patch0 -p1 -b .sharing_and_multimedia +%patch0 -p1 -b .fixes sed -i -e's,\$NX_DIR/bin,%{_pkglibexecdir},g'\ -e's,\$NX_DIR/lib,%{_pkglibdir},g'\ @@ -45,12 +52,21 @@ make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} NX_ETC_DIR=/etc/nxserver +cp -a %{buildroot}/etc/nxserver/node.conf.sample \ + %{buildroot}/etc/nxserver/node.conf + +touch \ + %{buildroot}/etc/nxserver/users.id_dsa \ + %{buildroot}/etc/nxserver/users.id_dsa.pub \ + %{buildroot}/etc/nxserver/client.id_dsa.key \ + %{buildroot}/etc/nxserver/server.id_dsa.pub.key +# Create the nx user home mkdir -p %{buildroot}/var/lib/nxserver/home/.ssh ln -s /etc/nxserver/server.id_dsa.pub.key \ - %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys + %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys2 chmod 0700 %{buildroot}/var/lib/nxserver/home{,/.ssh} - +touch %{buildroot}/var/lib/nxserver/home/.ssh/known_hosts mkdir -p %{buildroot}/var/lib/nxserver/db/closed mkdir -p %{buildroot}/var/lib/nxserver/db/running mkdir -p %{buildroot}/var/lib/nxserver/db/failed @@ -60,7 +76,10 @@ mkdir -p %{buildroot}/var/log/nx chmod 0700 %{buildroot}/var/log/nx mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d -cp -pr %SOURCE1 %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server + +mkdir -p %{buildroot}%{_sysconfdir}/init.d +install -p init.d/freenx-server %{buildroot}%{_sysconfdir}/init.d/freenx-server %clean rm -rf %{buildroot} @@ -70,21 +89,16 @@ rm -rf %{buildroot} || %{_sbindir}/usermod -d /var/lib/nxserver/home -s %{_pkglibexecdir}/nxserver nx 2>/dev/null || : %post -if test ! -e /etc/nxserver/users.id_dsa; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/users.id_dsa -fi - -if ! test -e /etc/nxserver/client.id_dsa.key -a -e /etc/nxserver/server.id_dsa.pub.key; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/local.id_dsa - mv -f /etc/nxserver/local.id_dsa /etc/nxserver/client.id_dsa.key - mv -f /etc/nxserver/local.id_dsa.pub /etc/nxserver/server.id_dsa.pub.key +/sbin/chkconfig --add freenx-server +# Not a real service, just to make sure we have /tmp/.X11-unix +/sbin/service freenx-server start > /dev/null 2>&1 + +%preun +if [ $1 = 0 ]; then + /sbin/service freenx-server stop > /dev/null 2>&1 + /sbin/chkconfig --del freenx-server fi -echo -n "127.0.0.1 " > /var/lib/nxserver/home/.ssh/known_hosts -# We do depend on openssh-server, but package installation != key -# creation time. See also Fedora bug #235592 -cat /etc/ssh/ssh_host_rsa_key.pub >> /var/lib/nxserver/home/.ssh/known_hosts 2>/dev/null -chown nx:root /var/lib/nxserver/home/.ssh/known_hosts %files %defattr(-,root,root,-) @@ -93,15 +107,31 @@ chown nx:root /var/lib/nxserver/home/.ss %{_pkglibexecdir}/* %{_pkglibdir}/* /usr/lib/cups/backend/nxsmb -%defattr(-,nx,root,-) -/etc/nxserver -/var/lib/nxserver -/var/log/nx +%dir %attr(-,nx,root) /etc/nxserver +/etc/nxserver/node.conf.sample +%config(noreplace) /etc/nxserver/node.conf +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa.pub +%ghost %attr(-,nx,root) /etc/nxserver/client.id_dsa.key +%ghost %attr(-,nx,root) /etc/nxserver/server.id_dsa.pub.key +%attr(-,nx,root) /var/lib/nxserver +%ghost %attr(-,nx,root) /var/lib/nxserver/home/.ssh/known_hosts +%attr(-,nx,root) /var/log/nx %config(noreplace) %{_sysconfdir}/logrotate.d/freenx-server +%{_sysconfdir}/init.d/freenx-server %changelog -* Tue Feb 24 2009 Fedora Release Engineering - 0.7.3-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +- Use some patches from up to svn 613 (dated 2008-09-01). +- Add keymap.patch from Fedora bug #506470. +- Add cups listing patch from Fedora bug #509879. +- Add dependency for misc fonts Fedora bug #467494. +- Fix stale X11 displays from Fedora bug #492402. +- Fix authorized_keys*2* syncing, may fix Fedora bug #503822. +- Move %post parts to nxserver startup, fixes Fedora bug #474720. +- Copy ssh keys on first start, fixes Fedora bug #235592. +- Add init script with CentOS patches that ensures /tmp/.X11-unix + always exists, fixes Fedora bug #437655. * Sun Aug 24 2008 Axel Thimm - 0.7.3-11 - Rebase patch to 0.7.2 to avoid fuzz=0 rejection on recent rpm. --- freenx-server-0.7.2-sharing_and_multimedia_fixes.patch DELETED --- From athimm at fedoraproject.org Sat Jul 25 22:29:30 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:29:30 +0000 (UTC) Subject: rpms/freenx-server/F-10 freenx-server-0.7.3-fixes.patch, NONE, 1.1 freenx-server.spec, 1.5, 1.6 freenx-server-0.7.2-sharing_and_multimedia_fixes.patch, 1.1, NONE Message-ID: <20090725222930.94F3211C02BC@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8906/freenx-server/F-10 Modified Files: freenx-server.spec Added Files: freenx-server-0.7.3-fixes.patch Removed Files: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch Log Message: - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. - Add dependency for misc fonts Fedora bug #467494. - Fix stale X11 displays from Fedora bug #492402. - Fix authorized_keys*2* syncing, may fix Fedora bug #503822. - Move %post parts to nxserver startup, fixes Fedora bug #474720. - Copy ssh keys on first start, fixes Fedora bug #235592. - Add init script with CentOS patches that ensures /tmp/.X11-unix always exists, fixes Fedora bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 83 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 317 insertions(+), 83 deletions(-) --- NEW FILE freenx-server-0.7.3-fixes.patch --- diff -Naur freenx-server-0.7.3/ChangeLog freenx-server.svn613.plusfixes/ChangeLog --- freenx-server-0.7.3/ChangeLog 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/ChangeLog 2008-09-01 22:42:31.000000000 +0200 @@ -1,3 +1,20 @@ +xx.11.2008 FreeNX 0.7.4 + * Opened the 0.7.4 development. + * Fixed missing export of NX_ETC_DIR in Makefile, + so node.conf.sample is installed correctly. + (fabianx at bat.berlios.de) + * Fixed broken round-robin load balance algorithm. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + load balancing case. + (fabianx at bat.berlios.de) + * Fixed --terminate|--suspend|--force-terminate for + usermode case. + (fabianx at bat.berlios.de) + * Fixed non-encrypted session mode. You might need to + set EXTERNAL_PROXY_IP in node.conf. + (fabianx at bat.berlios.de) + 18.08.2008 FreeNX 0.7.3 "Priscilla One Year Edition" * Opened the 0.7.3 development. * Added logging of failed authentication attempts diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 @@ -8,21 +8,78 @@ # # SVN: $Id: freenx-server 485 2008-03-02 10:29:52Z fabianx $ # +# Modified to be chkconfig compatible by Johnny Hughes +# +# chkconfig: 2345 91 35 +# description: Creates /tmp/.X11-unix/ if required and cleans up dead \ +# NX sessions. + # Read the config file -. $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +. /usr/libexec/nx/nxloadconfig -- + +# Source function library. +. /etc/init.d/functions +prog="freenx-server" + +start() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then + /bin/chown root /tmp/.X11-unix + fi + ret=0 + fi + if [ $ret -eq 0 ]; then + touch /var/lock/subsys/freenx-server + action $"Starting $prog: " /bin/true + else + action $"Starting $prog: " /bin/false + fi + echo + return $ret +} + +stop() { + runuser -s /bin/bash - nx -c "$PATH_BIN/nxserver --cleanup" > /dev/null 2>&1 < /dev/null + if [ -e "/var/lock/subsys/freenx-server" ]; then + rm -f /var/lock/subsys/freenx-server + ret=$? + else + ret=0 + fi + if [ $ret -eq 0 ]; then + action $"Stopping $prog: " /bin/true + else + action $"Stopping $prog: " /bin/false + fi + echo + return $ret +} + +restart() { + echo $"Restarting $prog:" + stop + start +} case "$1" in - start) - [ ! -d "/tmp/.X11-unix" ] && mkdir -m1755 /tmp/.X11-unix/ - $PATH_BIN/nxserver --cleanup - $PATH_BIN/nxserver --start - ;; - stop) - $PATH_BIN/nxserver --stop - $PATH_BIN/nxserver --cleanup - ;; - *) - echo "Usage: $0 " - ;; + start) + start + ;; + stop) + stop + ;; + restart) + restart + ;; + *) + echo $"Usage: $prog {start|stop|restart}" + exit 1 esac + +exit $? diff -Naur freenx-server-0.7.3/Makefile freenx-server.svn613.plusfixes/Makefile --- freenx-server-0.7.3/Makefile 2008-08-18 04:16:25.000000000 +0200 +++ freenx-server.svn613.plusfixes/Makefile 2008-08-25 04:41:44.000000000 +0200 @@ -8,7 +8,7 @@ all: cd nxviewer-passwd && xmkmf && make Makefiles && make depend source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ for i in $(SUBDIRS) ; \ do\ echo "making" all "in $$i..."; \ @@ -44,5 +44,5 @@ install: source nxloadconfig &&\ - export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION &&\ + export PATH_BIN PATH_LIB CUPS_BACKEND NX_VERSION NX_ETC_DIR &&\ $(MAKE) nxenv_install diff -Naur freenx-server-0.7.3/node.conf.sample freenx-server.svn613.plusfixes/node.conf.sample --- freenx-server-0.7.3/node.conf.sample 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/node.conf.sample 2008-09-01 22:42:31.000000000 +0200 @@ -37,7 +37,7 @@ # # https://mail.kde.org/mailman/listinfo/freenx-knx # -# SVN: $Id: node.conf.sample 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: node.conf.sample 613 2008-09-01 20:42:31Z fabianx $ ######################################################################### # General FreeNX directives @@ -47,6 +47,11 @@ # different than the default hostname (as returned by `hostname`) #SERVER_NAME="$(hostname)" +# The node ip which is used by NX Node in unecnrypted session mode. +# Set it if you want to use a specific external ip or the autodetection +# is not working. +#EXTERNAL_PROXY_IP="" + # The port number where local 'sshd' is listening. #SSHD_PORT=22 diff -Naur freenx-server-0.7.3/nxloadconfig freenx-server.svn613.plusfixes/nxloadconfig --- freenx-server-0.7.3/nxloadconfig 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxloadconfig 2009-07-26 00:19:30.000000000 +0200 @@ -5,7 +5,7 @@ # # License: GPL, version 2 # -# SVN: $Id: nxloadconfig 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxloadconfig 613 2008-09-01 20:42:31Z fabianx $ # # ======================================================================== @@ -52,7 +52,7 @@ # DO NOT TOUCH unless you REALLY know what you are doing ######################################################################### -NX_VERSION=3.2.0-73 +NX_VERSION=3.2.0-74-SVN NX_LICENSE="OS (GPL, using backend: %BACKEND%)" # Where can different nx components be found @@ -85,6 +85,7 @@ # General FreeNX directives SERVER_NAME="$(hostname)" +EXTERNAL_PROXY_IP="" SSHD_PORT=22 # Authentication / Security directives @@ -104,11 +105,28 @@ # Restriction directives -DISPLAY_BASE=1000 +#JJK: DISPLAY_BASE=1000 +#JJK: Change DISPLAY_BASE to 2000 to avoid conflict of DISPLAY_BASE+7000 with nasd +DISPLAY_BASE=2000 SESSION_LIMIT=200 SESSION_USER_LIMIT="" #Calculated DISPLAY_LIMIT=200 +#JJK: Added the following to allow printing when using cifs mount +#JJK: Note the smb print port (#139) must then be tunnelled manually +#JJK: from on the server to port 139 on the host +#JJK: by running on the client: +#JJK: ssh ... -R ::139 +#JJK: If SAMBA_MOUNT_SHARE_PROTOCOL="smbfs" (technically, if it doesn't equal +#JJK 'cifs' or in most cases 'both') then the ssh tunnel is automatically +#JJK: set up from port on the server to port 139 +#JJK: on the remote client. +#JJK: Note in *all* cases, the cups printer on the client is accessed from +#JJK: the server via the command line, using the following -h flag: +#JJK: -h localhost: [-P ] +#JJK: or via the CUPS web browser using: +#JJK: http://localhost: +SMBPORT_OFFSET=8000 ENABLE_PERSISTENT_SESSION="all" DISABLE_PERSISTENT_SESSION="" @@ -166,7 +184,11 @@ ENABLE_CUPS_SEAMLESS="0" CUPS_SEAMLESS_DELAY="10" ENABLE_FOOMATIC="1" -COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +#JJK: COMMAND_FOOMATIC="/usr/lib/cups/driver/foomatic-ppdfile" +COMMAND_FOOMATIC="/usr/bin/foomatic-ppdfile" + +#JJK: added the following path referenced in nxprint +PPD_DIR="/usr/share/cups/model" #JJK: Note /usr/share/ppd on some systems CUPS_BACKEND="/usr/lib/cups/backend" CUPS_IPP_BACKEND="$CUPS_BACKEND/nxipp" @@ -185,7 +207,8 @@ DEFAULT_X_WM="" KILL_DEFAULT_X_WM="1" USER_X_STARTUP_SCRIPT=.Xclients -DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +#JJK: DEFAULT_X_SESSION=/etc/X11/xdm/Xsession +DEFAULT_X_SESSION=/etc/X11/xinit/Xsession COMMAND_START_KDE=startkde COMMAND_START_GNOME=gnome-session COMMAND_START_CDE=cdwm @@ -315,7 +338,7 @@ [ -z "$AGENT_LIBRARY_PATH" ] && AGENT_LIBRARY_PATH=$PATH_LIB [ -z "$PROXY_LIBRARY_PATH" ] && PROXY_LIBRARY_PATH=$PATH_LIB [ -z "$APPLICATION_LIBRARY_PATH" ] && APPLICATION_LIBRARY_PATH=$PATH_LIB -[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6.2:$APPLICATION_LIBRARY_PATH/libXext.so.6.4:$APPLICATION_LIBRARY_PATH/libXcomp.so:$APPLICATION_LIBRARY_PATH/libXcompext.so:$APPLICATION_LIBRARY_PATH/libXrender.so.1.2" +[ -z "$APPLICATION_LIBRARY_PRELOAD" ] && APPLICATION_LIBRARY_PRELOAD="$APPLICATION_LIBRARY_PATH/libX11.so.6:$APPLICATION_LIBRARY_PATH/libXext.so.6:$APPLICATION_LIBRARY_PATH/libXcomp.so.3:$APPLICATION_LIBRARY_PATH/libXcompext.so.3:$APPLICATION_LIBRARY_PATH/libXrender.so.1" NX_BACKEND_VERSION=$(strings $PATH_BIN/nxagent 2>/dev/null | egrep 'NXAGENT - Version' | sed 's/.*Version //g') diff -Naur freenx-server-0.7.3/nxnode freenx-server.svn613.plusfixes/nxnode --- freenx-server-0.7.3/nxnode 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxnode 2009-07-25 17:59:33.000000000 +0200 @@ -13,13 +13,27 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxnode 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxnode 613 2008-09-01 20:42:31Z fabianx $ # # 21.06.2004: - Full reconnection support # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) --userconf +#JJK: Added following 'if' stanza as a kluge since the following variables +#JJK: need to be set in cmd_node_smbmount node_umount_smb +#JJK: but they are currently set only in startsession which is called +#JJK: separately from nxserver via ssh so environment variables +#JJK: aren't preserved. +if [[ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" || \ + ( "$SAMBA_MOUNT_SHARE_PROTOCOL" = "both" && \ + `which "$COMMAND_SMBMOUNT_CIFS"` && `which "$COMMAND_SMBUMOUNT_CIFS"` ) \ + ]] > /dev/null 2>&1; then + COMMAND_SMBMOUNT=$COMMAND_SMBMOUNT_CIFS + COMMAND_SMBUMOUNT=$COMMAND_SMBUMOUNT_CIFS + SAMBA_MOUNT_SHARE_PROTOCOL="cifs" +fi + # # ----------------------------------------------------------------------------- # Startup of nxnode @@ -540,7 +554,8 @@ # Start the agent - PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + #PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $P $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $K $G $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & + PATH="$PATH_BIN:$PATH" $PATH_BIN/nxagent $R -name "NX - $user@$SERVER_NAME:$display - $session (GPL Edition)" -option "$USER_FAKE_HOME/.nx/C-$sess_id/options" $B $FP $AGENT_EXTRA_OPTIONS_X :$display 2>&3 & fi # @@ -620,11 +635,27 @@ touch "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/certs" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/ppd" "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cache" + mkdir -p "$USER_FAKE_HOME/.nx/C-$sess_id/cups/log" #JJK cups log file home + +#JJK: Modifications to cupsd.conf +#JJK: - Added SystemGroup line in order to add $USER to SystemGroup +#JJK: - Moved all the log files to log/ +#JJK: - Set AccessLog to: log/access_log (was /dev/null) +#JJK: - Added listening on $NODE_CUPSD_PORT +#JJK: Listen localhost: $NODE_CUPSD_PORT +#JJK: - Removed following line because directive is specific to Debian +#JJK: PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: - Access restrictions borrowed from /etc/cups/cupsd.conf +#JJK: - Default policy borrowed from /etc/cups/cupsd.conf but modified +#JJK: to allow Add, Delete, and Default printer without (password) +#JJK: authentication +#JJK: - Note for more detailed logging set: LogLevel debug cat < $USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf -AccessLog /dev/null -ErrorLog error_log -PageLog page_log +SystemGroup sys root $USER +AccessLog log/access_log +ErrorLog log/error_log +PageLog log/page_log LogLevel info TempDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool/tmp RequestRoot $USER_FAKE_HOME/.nx/C-$sess_id/cups/spool @@ -632,19 +663,60 @@ StateDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/ CacheDir $USER_FAKE_HOME/.nx/C-$sess_id/cups/cache +Listen localhost:$NODE_CUPSD_PORT Listen $NODE_CUPSD_SOCKET Browsing Off ServerName localhost -PidFile $USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd +#JJK: Restrict access to the server... Order Deny,Allow Deny From All Allow from 127.0.0.1 +#JJK: Restrict access to the admin pages... + + Encryption Required + Order allow,deny + Allow localhost + + +#JJK: Restrict access to configuration files... + + AuthType Basic + Require user @SYSTEM + Order allow,deny + Allow localhost + + # Allow everything for anonymous, because we are protected through UNIX socket +#JJK: Since allowing access via $NODE_CUPSD_PORT, need to add protection + #JJK: Job-related operations must be done by the owner or an adminstrator... + + Require user @OWNER @SYSTEM + Order deny,allow + + + #JJK:All administration operations require an adminstrator to authenticate... + + AuthType Basic + Require user @SYSTEM + Order deny,allow + + + #JJK: Except need to allow these for nxnode to work + + Order deny,allow + + + # Only the owner or an administrator can cancel or authenticate a job... + + Require user @OWNER @SYSTEM + Order deny,allow + + AuthType None Order deny,allow @@ -656,9 +728,17 @@ # copy mime.* files cp -af "$CUPS_ETC"/mime.* "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" + #JJK: Also copy over pstoraster.convs + cp -af "$CUPS_ETC"/mime.* "$CUPS_ETC"/pstoraster.convs "$USER_FAKE_HOME/.nx/C-$sess_id/cups/" # start cupsd - $COMMAND_CUPSD -c "$USER_FAKE_HOME/.nx/C-$sess_id/cups/cupsd.conf" &>/dev/null /dev/null /dev/null "$USER_FAKE_HOME/.nx/C-$sess_id/pids/cupsd" # setup KDE if [ "$ENABLE_KDE_CUPS" = "1" -a -e "$KDE_PRINTRC" ] @@ -700,6 +780,7 @@ cat "$USER_FAKE_HOME/.nx/C-$sess_id/scripts/mpoint" | while read mpoint do $COMMAND_SMBUMOUNT "$mpoint" >/dev/null 2>/dev/null + rmdir "$mpoint" >/dev/null 2>/dev/null #JJK:Remove mount point if empty done } @@ -1078,6 +1159,8 @@ # Rootless fix from 2x nxserver 1.5.0 realtype=$type [ "$type" = "unix-application" -o "$type" = "unix-default" ] && realtype="unix-desktop" + [ "$type" = "unix-gnome" ] && realtype="gnome" + [ "$type" = "unix-kde" ] && realtype="kde" # NX 2.1.0 file-sharing port options client=$(getparam client) @@ -1116,6 +1199,7 @@ COMMAND_SMBMOUNT=/bin/true COMMAND_SMBUMOUNT=/bin/true + smbport=139 #JJK: still may want to do printer sharing... else # smbfs smbport=139 fi @@ -1184,6 +1268,17 @@ [ -z "$userip" -a "$host" = "127.0.0.1" ] && userip="127.0.0.1" [ -z "$userip" ] && userip="*" fi + + # We need our own external IP + proxyip="$EXTERNAL_PROXY_IP" + + if [ -z "$proxyip" -a -n "$host" ] + then + [ "$host" = "127.0.0.1" ] && host=$(hostname) + proxyip=$(ping -c1 "$host" | grep 'PING' | cut -d'(' -f2 | cut -d')' -f1) + fi + + [ -z "$proxyip" ] && proxyip="127.0.0.1" # ok, lets make the session dir first: @@ -1245,7 +1340,7 @@ umask 0077 cat << EOF > "$USER_FAKE_HOME/.nx/C-$sess_id/options" -${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype,cleanup=0,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${clipboard:+,clipboard=$clipboard}${menu:+,menu=$menu}:$display +nx/nx,${keyboard:+keyboard=$keyboard,}${kbtype:+kbtype=$kbtype,}${kbload:+kbload=$kbload,}${keymap:+keymap=$keymap,}${geometry:+geometry=$geometry,}${client:+client=$client,}${resize:+resize=$resize,}${CACHE}${IMAGES}${PACK}link=$link,nodelay=$nodelay,type=$realtype${clipboard:+,clipboard=$clipboard}${composite:+composite=$composite},cleanup=0,product=LFE/None/LFEN/None,shmem=1,${backingstore:+backingstore=$backingstore,}shpix=1,${ACCEPT}cookie=$proxy_cookie,id=$sess_id,samba=$samba,media=$media${sync:+,sync=$sync}${cups:+,cups=$cups}${keybd:+,keybd=$keybd}${aux:+,aux=$aux}${http:+,http=$http}${rdpcolors:+,rdpcolors=$rdpcolors}${rdpcache:+,rdpcache=$rdpcache}${fullscreen:+,fullscreen=1}${menu:+,menu=$menu}:$display EOF umask $OLD_UMASK #samba=$samba, @@ -1316,7 +1411,7 @@ NX> 705 Session display: $display NX> 703 Session type: $type NX> 701 Proxy cookie: $proxy_cookie -NX> 702 Proxy IP: $userip +NX> 702 Proxy IP: $proxyip NX> 706 Agent cookie: $cookie NX> 704 Session cache: $type NX> 707 SSL tunneling: $ssl_tunnel @@ -1373,7 +1468,8 @@ password=$(getparam password) share=$(getparam share) computername=$(getparam computername) - dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') +#JJK: dir=$(getparam dir | sed 's|$(SHARES)|MyShares|g') + dir=$(getparam dir | sed 's/\(%24\|\$\)(SHARES)/MyShares/g') # rdir=$(getparam dir | sed 's|$(SHARES)/||g') display=$(cd $USER_FAKE_HOME/.nx/; echo C-$SERVER_NAME-*-$sessionid | awk 'BEGIN {FS="-"} {i=NF-1; print $i}') mkdir -p "$HOME/$dir" @@ -1393,6 +1489,7 @@ echo "$HOME/$dir" >> "$USER_FAKE_HOME/.nx/C-$SERVER_NAME-$display-$sessionid/scripts/mpoint" else $PATH_BIN/nxdialog -dialog ok -caption "NXServer Message" -message "Info: Share: '//$computername/$share' failed to mount: $error" -display :$display & + rmdir "$HOME/$dir" >/dev/null 2>/dev/null #JJK: Remove mount point if empty fi } @@ -1415,6 +1512,12 @@ # this will also setup the userspace cupsd export CUPS_SERVER=$(node_cupsd_get_socket) +#JJK: The following if-stanza kludge added to enable printing when smbport=cifs +#JJK: since smb printing won't work when forwarded over port 445 + if [ "$SAMBA_MOUNT_SHARE_PROTOCOL" = "cifs" ] ; then + let port=$port+$SMBPORT_OFFSET + fi + if [ "$type" = "smb" ] then if [ -x "$CUPS_BACKEND/nxsmb" ] @@ -1443,6 +1546,9 @@ if [ "$ENABLE_CUPS_SEAMLESS" != "1" ] then + #JJK: Export the following variables for use by nxdialog/nxprint + #JJK: Note they are also exported in nxdialog but doesn't help there + export ENABLE_FOOMATIC COMMAND_FOOMATIC PPD_DIR MODEL=$($PATH_BIN/nxdialog -printer "$NAME" -display :$display) [ -z "$MODEL" -o "$MODEL" = "cancel: aborted" ] && return else @@ -1450,7 +1556,11 @@ MODEL="download_cached" fi - PUBLIC="-u allow:$USER" +#JJK: I like to also allow 'guest' so you can do things like print +#JJK: testpages from the CUPS web interface. Note this is required +#JJK: even for the original user to print test pages +#JJK: PUBLIC="-u allow:$USER" + PUBLIC="-u allow:$USER,guest" [ "$public" == "1" ] && PUBLIC="" if [ "$MODEL" = "download_new" -o "$MODEL" = "download_cached" ] diff -Naur freenx-server-0.7.3/nxprint freenx-server.svn613.plusfixes/nxprint --- freenx-server-0.7.3/nxprint 2008-03-11 00:01:03.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxprint 2009-07-25 17:32:00.000000000 +0200 @@ -51,7 +51,8 @@ if [ -z "$(find $UTILITY_DRIVERS_CACHE.all -mmin -60 2> /dev/null)" ] then { - cd /usr/share/ppd/ +#JJK: cd /usr/share/ppd/ + cd $PPD_DIR awk -F '"' '/\*Manufacturer:/ { a[FILENAME]=$2 } /\*NickName:/ { b[FILENAME]=$2 } END { diff -Naur freenx-server-0.7.3/nxredir/nxsmb freenx-server.svn613.plusfixes/nxredir/nxsmb --- freenx-server-0.7.3/nxredir/nxsmb 2008-03-14 21:52:47.000000000 +0100 +++ freenx-server.svn613.plusfixes/nxredir/nxsmb 2009-07-25 18:15:06.000000000 +0200 @@ -18,6 +18,11 @@ PROTOCOL=$(echo $DEVICE_URI | cut -d/ -f4) PRINTER=$(echo $DEVICE_URI | cut -d/ -f5) +if [ "$#" -eq 0 ] +then + exit 0 +fi + if [ -z "$PRINTER" ] # old style setup then echo "Warning: Not using nxredir library. The DEVICE_URI is not in the right format." diff -Naur freenx-server-0.7.3/nxserver freenx-server.svn613.plusfixes/nxserver --- freenx-server-0.7.3/nxserver 2008-08-22 02:44:43.000000000 +0200 +++ freenx-server.svn613.plusfixes/nxserver 2009-07-25 21:49:06.000000000 +0200 @@ -11,12 +11,28 @@ # # License: GNU GPL, version 2 # -# SVN: $Id: nxserver 580 2008-08-22 00:44:43Z fabianx $ +# SVN: $Id: nxserver 612 2008-08-25 03:28:15Z fabianx $ # # Read the config file . $(PATH=$(cd $(dirname $0) && pwd):$PATH which nxloadconfig) -- +if test ! -e $NX_ETC_DIR/users.id_dsa; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/users.id_dsa +fi + +if test ! -e $NX_ETC_DIR/client.id_dsa.key -o ! -e $NX_ETC_DIR/server.id_dsa.pub.key; then + $COMMAND_SSH_KEYGEN -q -t dsa -N "" -f $NX_ETC_DIR/local.id_dsa + mv -f $NX_ETC_DIR/local.id_dsa $NX_ETC_DIR/client.id_dsa.key + mv -f $NX_ETC_DIR/local.id_dsa.pub $NX_ETC_DIR/server.id_dsa.pub.key + chmod 0600 $NX_ETC_DIR/client.id_dsa.key $NX_ETC_DIR/server.id_dsa.pub.key +fi + +if test ! -s $NX_HOME_DIR/.ssh/known_hosts -a -e /etc/ssh/ssh_host_rsa_key.pub; then + echo -n "127.0.0.1 " > $NX_HOME_DIR/.ssh/known_hosts + cat /etc/ssh/ssh_host_rsa_key.pub >> $NX_HOME_DIR/.ssh/known_hosts 2>/dev/null +fi + # following two functions are Copyright by Klaus Knopper stringinstring(){ @@ -1192,7 +1208,7 @@ # Lock held SERVER_LB_NR=$(cat $NX_SESS_DIR/round-robin 2>/dev/null) - let SERVER_LB_NR=(SERVER_LB_NR+1) % SERVER_LB_NR_OF_HOSTS + let SERVER_LB_NR=(SERVER_LB_NR+1)%SERVER_LB_NR_OF_HOSTS echo $SERVER_LB_NR >$NX_SESS_DIR/round-robin # Exit critical section @@ -1436,7 +1452,7 @@ done # Check if there is already an agent running on that display on that host - let AGENT_DISPLAY=$SESS_DISPLAY+6000 + let AGENT_DISPLAY=$SESS_DISPLAY-$DISPLAY_BASE+6000 if $COMMAND_NETCAT -z "$SERVER_HOST" $AGENT_DISPLAY 2>/dev/null then log 2 "Warning: Stray nxagent without .nX$SESS_DISPLAY-lock found on host:port $SERVER_HOST:$AGENT_DISPLAY." @@ -1961,71 +1977,71 @@ session_history "$user" "$sessid" } -cmd_terminate() +cmd_execute() +{ + cmd_host="$1" + cmd_user="$2" + cmd_cmd="$3" + + if [ "$ENABLE_USERMODE_AUTHENTICATION" = "1" ] + then + sh -c "$cmd_cmd" + elif [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + then + su - "$cmd_user" -c "$cmd_cmd" + else + ssh "$cmd_host" su - "$cmd_user" -c "'$cmd_cmd'" + fi +} + +cmd_terminate_or_send() { - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - for i in $CMD_PARAMS; + CMD="$1" + + if [ "$CMD" = "--broadcast" ] + then + CMD_PARAMS=$(session_find_all) + [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." + else + CMD_PARAMS=$(cmd_parse_3_params "$2") + [ -z "$CMD_PARAMS" ] && exit 1 + shift + fi + shift + + for i in $CMD_PARAMS do CMDLINE=$(session_get_cmdline $i) cmd_sessionid=$(getparam sessionId) + cmd_display=$(getparam display) cmd_user=$(getparam userName) cmd_type=$(getparam type) cmd_status=$(getparam status) + cmd_host=$(getparam host) # is it a "good" session? - case "$1" in + case "$CMD" in --suspend) if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --suspend" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --suspend" fi ;; --terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" ;; --force-terminate) - echo "sessionid=$cmd_sessionid" | su - "$cmd_user" -c "$PATH_BIN/nxnode --terminate" + echo "sessionid=$cmd_sessionid" | cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxnode --terminate" session_close $cmd_sessionid ;; - esac - done - -} - -cmd_send() -{ - if [ "$1" = "--broadcast" ] - then - CMD_PARAMS=$(session_find_all) - [ -z "$CMD_PARAMS" ] && cmd_abort "Error: No running session could be found." - else - CMD_PARAMS=$(cmd_parse_3_params "$2") - [ -z "$CMD_PARAMS" ] && exit 1 - shift - fi - shift - for i in $CMD_PARAMS; - do - CMDLINE=$(session_get_cmdline $i) - cmd_display=$(getparam display) - cmd_user=$(getparam userName) - cmd_type=$(getparam type) - cmd_status=$(getparam status) - cmd_host=$(getparam host) - - # is it a "good" session? - if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" - then - if [ "$cmd_host" = "127.0.0.1" -o "$cmd_host" = "localhost" ] + --send|--broadcast) + # is it a "good" session? + if [ "$cmd_status" = "Running" ] && stringinstring "unix-" "$cmd_type" then - su - "$cmd_user" -c "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" - else - ssh $cmd_host su - "$cmd_user" -c "'$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &'" + cmd_execute "$cmd_host" "$cmd_user" "$PATH_BIN/nxdialog --dialog ok --caption \"NX Administrator Message\" --message \"$@\" -display \":$cmd_display\" &" fi - fi + esac done - #nxnode_start --send "$CMD_PARAMS" } # @@ -2099,13 +2115,13 @@ cmd_history "$@" ;; --terminate|--suspend|--force-terminate) - cmd_terminate "$@" + cmd_terminate_or_send "$@" ;; --cleanup) - cmd_terminate "--force-terminate" "*" + cmd_terminate_or_send "--force-terminate" "*" ;; --send|--broadcast) - cmd_send "$@" + cmd_terminate_or_send "$@" ;; *) cmd_abort "Error: Function $CMD not implemented yet." Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-10/freenx-server.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- freenx-server.spec 25 Aug 2008 09:32:11 -0000 1.5 +++ freenx-server.spec 25 Jul 2009 22:29:29 -0000 1.6 @@ -1,3 +1,5 @@ +%bcond_with oldx11 + %define _pkglibdir %{_libdir}/nx %define _pkgdatadir %{_datadir}/nx %define _pkglibexecdir %{_libexecdir}/nx @@ -5,21 +7,26 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 11%{?dist} +Release: 13%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ Source0: http://download.berlios.de/freenx/%{name}-%{version}.tar.gz Source1: freenx.logrotate -Patch0: freenx-server-0.7.2-sharing_and_multimedia_fixes.patch +Patch0: freenx-server-0.7.3-fixes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: imake, redhat-release Requires: nx, %{_pkglibdir} Requires: openssh-server nc expect which perl Requires: xorg-x11-server-Xorg xorg-x11-apps Requires: /usr/lib/cups/backend +%if %{with oldx11} +Requires: fonts-xorg-base +%else +Requires: xorg-x11-fonts-misc +%endif -Obsoletes: freenx <= %{version}-%{release} +Obsoletes: freenx < %{version}-%{release} Provides: freenx = %{version}-%{release} %description @@ -30,7 +37,7 @@ under the GPL. FreeNX-server is a GPL im %prep %setup -q -%patch0 -p1 -b .sharing_and_multimedia +%patch0 -p1 -b .fixes sed -i -e's,\$NX_DIR/bin,%{_pkglibexecdir},g'\ -e's,\$NX_DIR/lib,%{_pkglibdir},g'\ @@ -45,12 +52,21 @@ make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} NX_ETC_DIR=/etc/nxserver +cp -a %{buildroot}/etc/nxserver/node.conf.sample \ + %{buildroot}/etc/nxserver/node.conf + +touch \ + %{buildroot}/etc/nxserver/users.id_dsa \ + %{buildroot}/etc/nxserver/users.id_dsa.pub \ + %{buildroot}/etc/nxserver/client.id_dsa.key \ + %{buildroot}/etc/nxserver/server.id_dsa.pub.key +# Create the nx user home mkdir -p %{buildroot}/var/lib/nxserver/home/.ssh ln -s /etc/nxserver/server.id_dsa.pub.key \ - %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys + %{buildroot}/var/lib/nxserver/home/.ssh/authorized_keys2 chmod 0700 %{buildroot}/var/lib/nxserver/home{,/.ssh} - +touch %{buildroot}/var/lib/nxserver/home/.ssh/known_hosts mkdir -p %{buildroot}/var/lib/nxserver/db/closed mkdir -p %{buildroot}/var/lib/nxserver/db/running mkdir -p %{buildroot}/var/lib/nxserver/db/failed @@ -60,7 +76,10 @@ mkdir -p %{buildroot}/var/log/nx chmod 0700 %{buildroot}/var/log/nx mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d -cp -pr %SOURCE1 %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server +install -p %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/freenx-server + +mkdir -p %{buildroot}%{_sysconfdir}/init.d +install -p init.d/freenx-server %{buildroot}%{_sysconfdir}/init.d/freenx-server %clean rm -rf %{buildroot} @@ -70,21 +89,16 @@ rm -rf %{buildroot} || %{_sbindir}/usermod -d /var/lib/nxserver/home -s %{_pkglibexecdir}/nxserver nx 2>/dev/null || : %post -if test ! -e /etc/nxserver/users.id_dsa; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/users.id_dsa +/sbin/chkconfig --add freenx-server +# Not a real service, just to make sure we have /tmp/.X11-unix +/sbin/service freenx-server start > /dev/null 2>&1 + +%preun +if [ $1 = 0 ]; then + /sbin/service freenx-server stop > /dev/null 2>&1 + /sbin/chkconfig --del freenx-server fi -if ! test -e /etc/nxserver/client.id_dsa.key -a -e /etc/nxserver/server.id_dsa.pub.key; then - %{_bindir}/ssh-keygen -q -t dsa -N "" -f /etc/nxserver/local.id_dsa - mv -f /etc/nxserver/local.id_dsa /etc/nxserver/client.id_dsa.key - mv -f /etc/nxserver/local.id_dsa.pub /etc/nxserver/server.id_dsa.pub.key -fi - -echo -n "127.0.0.1 " > /var/lib/nxserver/home/.ssh/known_hosts -# We do depend on openssh-server, but package installation != key -# creation time. See also Fedora bug #235592 -cat /etc/ssh/ssh_host_rsa_key.pub >> /var/lib/nxserver/home/.ssh/known_hosts 2>/dev/null -chown nx:root /var/lib/nxserver/home/.ssh/known_hosts %files %defattr(-,root,root,-) @@ -93,13 +107,32 @@ chown nx:root /var/lib/nxserver/home/.ss %{_pkglibexecdir}/* %{_pkglibdir}/* /usr/lib/cups/backend/nxsmb -%defattr(-,nx,root,-) -/etc/nxserver -/var/lib/nxserver -/var/log/nx +%dir %attr(-,nx,root) /etc/nxserver +/etc/nxserver/node.conf.sample +%config(noreplace) /etc/nxserver/node.conf +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa +%ghost %attr(-,nx,root) /etc/nxserver/users.id_dsa.pub +%ghost %attr(-,nx,root) /etc/nxserver/client.id_dsa.key +%ghost %attr(-,nx,root) /etc/nxserver/server.id_dsa.pub.key +%attr(-,nx,root) /var/lib/nxserver +%ghost %attr(-,nx,root) /var/lib/nxserver/home/.ssh/known_hosts +%attr(-,nx,root) /var/log/nx %config(noreplace) %{_sysconfdir}/logrotate.d/freenx-server +%{_sysconfdir}/init.d/freenx-server %changelog +* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +- Use some patches from up to svn 613 (dated 2008-09-01). +- Add keymap.patch from Fedora bug #506470. +- Add cups listing patch from Fedora bug #509879. +- Add dependency for misc fonts Fedora bug #467494. +- Fix stale X11 displays from Fedora bug #492402. +- Fix authorized_keys*2* syncing, may fix Fedora bug #503822. +- Move %post parts to nxserver startup, fixes Fedora bug #474720. +- Copy ssh keys on first start, fixes Fedora bug #235592. +- Add init script with CentOS patches that ensures /tmp/.X11-unix + always exists, fixes Fedora bug #437655. + * Sun Aug 24 2008 Axel Thimm - 0.7.3-11 - Rebase patch to 0.7.2 to avoid fuzz=0 rejection on recent rpm. - Update to 0.7.3. --- freenx-server-0.7.2-sharing_and_multimedia_fixes.patch DELETED --- From athimm at fedoraproject.org Sat Jul 25 22:30:21 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:30:21 +0000 (UTC) Subject: rpms/freenx-client/F-10 freenx-client-0.9-fixes.patch, 1.1, 1.2 freenx-client.spec, 1.1, 1.2 Message-ID: <20090725223021.E368C11C02C8@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-client/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9774/freenx-client/F-10 Modified Files: freenx-client-0.9-fixes.patch freenx-client.spec Log Message: - Split package into several subpackages. - Add some patches from CentOS (multiple-id-key & mode 0660 for key). - Use some patches from up to svn 545 (dated 2008-07-10). freenx-client-0.9-fixes.patch: nxcl/configure.ac | 2 nxcl/doc/Makefile.am | 2 nxcl/lib/notQt.cpp | 26 ++++++++++- nxcl/lib/notQt.h | 17 +++++++ nxcl/lib/nxclientlib.cpp | 109 +++++++++++++++++++++++++++++++++++++++++------ nxcl/lib/nxsession.cpp | 13 +++++ nxcl/nxcl/nxcl.cpp | 2 qtnx/qtnx.pro | 4 + qtnx/qtnxwindow.cpp | 6 +- 9 files changed, 160 insertions(+), 21 deletions(-) Index: freenx-client-0.9-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-client/F-10/freenx-client-0.9-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-client-0.9-fixes.patch 23 Apr 2008 16:57:39 -0000 1.1 +++ freenx-client-0.9-fixes.patch 25 Jul 2009 22:30:21 -0000 1.2 @@ -1,5 +1,30 @@ ---- freenx-client-0.9/nxcl/lib/notQt.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/notQt.cpp 2008-04-05 20:36:05.000000000 +0200 +diff -Naur freenx-client-0.9/nxcl/configure.ac freenx-client.svn545.plusfixes/nxcl/configure.ac +--- freenx-client-0.9/nxcl/configure.ac 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/configure.ac 2008-07-10 10:01:24.000000000 +0200 +@@ -5,7 +5,7 @@ + AC_REVISION([$Revision$]) + AC_PREFIX_DEFAULT(/usr/local) + +-AM_INIT_AUTOMAKE([1.10 foreign]) ++AM_INIT_AUTOMAKE([1.9 foreign]) + + AM_CONFIG_HEADER(config.h) + AM_MAINTAINER_MODE +diff -Naur freenx-client-0.9/nxcl/doc/Makefile.am freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am +--- freenx-client-0.9/nxcl/doc/Makefile.am 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am 2008-07-10 10:01:24.000000000 +0200 +@@ -2,8 +2,6 @@ + + DOXYFILE = Doxyfile + +-docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION) +- + EXTRA_DIST = html + + SEDCMD1 = s/$$title/GNU nxcl documentation version $(VERSION)/g +diff -Naur freenx-client-0.9/nxcl/lib/notQt.cpp freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp +--- freenx-client-0.9/nxcl/lib/notQt.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp 2009-07-25 17:07:36.000000000 +0200 @@ -19,6 +19,7 @@ #include @@ -8,28 +33,396 @@ extern "C" { #include #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-05 20:54:18.000000000 +0200 -@@ -27,6 +27,7 @@ +@@ -26,8 +27,10 @@ + #include + #include + #include ++#include + #include + } ++#include + #include "../config.h" + #include "notQt.h" +@@ -52,7 +55,8 @@ + progName("unknown"), + error (NOTQPROCNOERROR), + pid(0), +- signalledStart(false) ++ signalledStart(false), ++ parentFD(-1) + { + // Set up the polling structs + this->p = static_cast(malloc (2*sizeof (struct pollfd))); +@@ -62,6 +66,15 @@ + notQProcess::~notQProcess () + { + free (this->p); ++ if (parentFD != -1) ++ { ++ close(parentFD); ++ parentFD=-1; ++ } ++ // FIXME: this should be closed here ++ // close (parentToChild[READING_END]); ++ // close (childToParent[WRITING_END]); ++ // close (childErrToParent[WRITING_END]); + } - #include -+#include + void +@@ -84,10 +97,18 @@ + // NB: The first item in the args list should be the program name. + this->progName = program; - extern "C" { - #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-04-05 20:54:18.000000000 +0200 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-06 06:37:37.000000000 +0200 -@@ -28,6 +28,7 @@ ++#ifdef NXCL_USE_NXSSH + // Set up our pipes + if (pipe(parentToChild) == -1 || pipe(childToParent) == -1 || pipe(childErrToParent) == -1) { + return NOTQTPROCESS_FAILURE; + } ++#else /* We need a socketpair for that to work */ ++ if (socketpair(AF_UNIX, SOCK_STREAM, 0, parentToChild) == -1 || pipe(childErrToParent) == -1) ++ return NOTQTPROCESS_FAILURE; ++ ++ childToParent[READING_END]=dup(parentToChild[WRITING_END]); ++ childToParent[WRITING_END]=dup(parentToChild[READING_END]); ++#endif + + this->pid = fork(); + +@@ -339,6 +360,9 @@ + fn << "/tmp/notQt" << time(NULL); + this->theFileName = fn.str(); + this->f.open (this->theFileName.c_str(), ios::in|ios::out|ios::trunc); ++ if (chmod(this->theFileName.c_str(), S_IRUSR | S_IWUSR) == -1) { ++ perror("chmod"); ++ } + } + + void +diff -Naur freenx-client-0.9/nxcl/lib/notQt.h freenx-client.svn545.plusfixes/nxcl/lib/notQt.h +--- freenx-client-0.9/nxcl/lib/notQt.h 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.h 2008-03-12 04:40:04.000000000 +0100 +@@ -117,6 +117,18 @@ + pid_t getPid (void) { return this->pid; } + int getError (void) { return this->error; } + void setError (int e) { this->error = e; } ++ ++ int getParentFD() ++ { ++ this->parentFD = this->parentToChild[1]; ++ close(this->childToParent[0]); ++ ++ // Create new pipes ++ pipe(this->parentToChild); ++ pipe(this->childToParent); ++ ++ return this->parentFD; ++ } + + /*! + * Setter for the callbacks. +@@ -180,6 +192,11 @@ + * Pointer to a callback object + */ + notQProcessCallbacks * callbacks; ++ ++ /*! ++ * old parent FD for comm with child ++ */ ++ int parentFD; + }; + + /*! +diff -Naur freenx-client-0.9/nxcl/lib/nxclientlib.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp +--- freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp 2009-07-25 16:59:24.000000000 +0200 +@@ -8,7 +8,8 @@ + : Author: Sebastian James + : (C) 2008 Defuturo Ltd + : Author: George Wright +- email : seb at esfnet.co.uk, gwright at kde.org ++ : (C) 2008 Fabian Franz ++ email : seb at esfnet.co.uk, gwright at kde.org, freenx at fabian-franz.de + ***************************************************************************/ + + /*************************************************************************** +@@ -27,6 +28,16 @@ + #include "../config.h" #include - #include ++#include +#include ++ ++// Define to use nxssh ++#if defined(NXCL_CYGWIN) || defined(NXCL_DARWIN) ++ ++// FF-FIXME That does not work. ++//#define NXCL_USE_NXSSH 1 ++ ++#endif extern "C" { #include ---- freenx-client-0.9/nxcl/nxcl/nxcl.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-04-06 06:48:34.000000000 +0200 +@@ -34,6 +45,8 @@ + #include + #include + } ++#include ++#include + + /* + * On the location of nxproxy and nxssh binaries +@@ -186,10 +199,14 @@ + + // Start to build the arguments for the nxssh command. + // notQProcess requires that argv[0] contains the program name ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("nxssh"); + + argtmp << "-nx"; + arguments.push_back (argtmp.str()); ++#else ++ arguments.push_back ("ssh"); ++#endif + + argtmp.str(""); + argtmp << "-p" << port; +@@ -215,6 +232,7 @@ + } + + argtmp.str(""); ++ // FF-FIXME: Perhaps the user wants to login as user directly + argtmp << "nx@" << serverHost; + arguments.push_back (argtmp.str()); + +@@ -227,9 +245,13 @@ + arguments.push_back ("-oRSAAuthentication no"); + arguments.push_back ("-oRhostsRSAAuthentication no"); + arguments.push_back ("-oPubkeyAuthentication yes"); ++ // FF-FIXME: Perhaps the user wants to login as user directly ++ //arguments.push_back ("-c nxserver"); + + if (encryption == true) { ++#ifdef NXCL_USE_NXSSH + arguments.push_back("-B"); ++#endif + session.setEncryption (true); + } else { + session.setEncryption (false); +@@ -240,10 +262,16 @@ + // nxssh -E gives this message when called: + // NX> 285 Enabling skip of SSH config files + // ...so there you have the meaning. ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("-E"); ++#endif + + // Find a path for the nxssh process using getPath() ++#ifdef NXCL_USE_NXSSH + string nxsshPath = this->getPath ("nxssh"); ++#else ++ string nxsshPath = this->getPath ("ssh"); ++#endif + + this->nxsshProcess->start(nxsshPath, arguments); + +@@ -365,8 +393,9 @@ + + // On some connections this is sent via stdout instead of stderr? + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye")!=string::npos)) { +- ++ ((*msgiter).find("NX> 999 Bye")!=string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + // This is "NX> 299 Switching connection to: " in + // version 1.5.0. This was changed in nxssh version + // 2.0.0-8 (see the nxssh CHANGELOG). +@@ -388,6 +417,11 @@ + this->externalCallbacks->connectedSuccessfullySignal(); + this->sessionRunning = true; + } ++#else /* don't use nxssh, start nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + + if ((*msgiter).find("Password") != string::npos) { + this->externalCallbacks->write +@@ -402,6 +436,9 @@ + dbgln ("NXClientLib::processParseStdout: Got auth failed" + " or capacity reached, calling this->parseSSH."); + msg = this->parseSSH (*msgiter); ++#ifndef NXCL_USE_NXSSH ++ this->isFinished = true; ++#endif + } + if (msg.size() > 0) { + this->write (msg); +@@ -436,7 +473,9 @@ + + (*msgiter) + "'(end msg)"); + + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye") != string::npos)) { ++ ((*msgiter).find("NX> 999 Bye") != string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + + string switchCommand = "NX> 299 Switch connection to: "; + stringstream ss; +@@ -478,6 +517,11 @@ + _("SSH host key verification failed")); + this->isFinished = true; + } ++#else /* don't use nxssh, use nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + } + } + +@@ -580,21 +624,41 @@ + this->externalCallbacks->serverCapacitySignal(); + this->isFinished = true; + +- } else if ++ } ++#ifdef NXCL_USE_NXSSH ++ else if + (message.find ("NX> 204 Authentication failed.") != string::npos) { + + this->externalCallbacks->write + (204, _("NX SSH Authentication Failed, finishing")); + this->isFinished = true; + } ++#endif + + if (message.find("NX> 710 Session status: running") != string::npos) { + + this->externalCallbacks->write + (710, _("Session status is \"running\"")); ++ } ++ ++ // FF-FIXME: This is technically incorrect as the proxy is just ready once 1002 and 1006 have ++ // been sent. ++ if (message.find("NX> 710 Session status: running") != string::npos) { ++ ++ //this->externalCallbacks->write ++ // (1006, _("Session status is \"running\"")); ++ ++#ifdef NXCL_USE_NXSSH + invokeProxy(); ++#else ++ if (!proxyData.encrypted) ++ invokeProxy(); ++#endif + session.wipeSessions(); +- rMessage = "bye\n"; ++ if (proxyData.encrypted) ++ rMessage = "bye\n"; ++ else ++ rMessage = "quit\n"; + } + + return rMessage; +@@ -700,18 +764,24 @@ + stringstream data; + + if (proxyData.encrypted) { ++#ifdef NXCL_USE_NXSSH + data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" + << proxyData.cookie + << ",id=" << proxyData.id << ",listen=" + << proxyData.port << ":" << proxyData.display << "\n"; + // may also need shmem=1,shpix=1,font=1,product=... ++#else ++ data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" ++ << proxyData.cookie ++ << ",id=" << proxyData.id << ":" << proxyData.display << "\n"; ++#endif + + } else { +- // Not tested yet ++ // Not tested yet, FF-FIXME: Test + data << "nx/nx" << x11Display << ",session=session,cookie=" << proxyData.cookie +- << ",id=" << proxyData.id +- // << ",connect=" << proxyData.server << ":" << proxyData.display +- << ",listen=" << proxyData.port << ":" << proxyData.display ++ << ",connect=" << proxyData.server << ":" << proxyData.port ++ << ",id=" << proxyData.id << ":" << proxyData.display ++ //<< ",listen=" << proxyData.port << ":" << proxyData.display + << "\n"; + } + +@@ -726,10 +796,23 @@ + list arguments; + arguments.push_back("nxproxy"); // argv[0] has to be the program name + arguments.push_back("-S"); ++ + ss.str(""); +- ss << "options=" << nxdir; +- ss << ":" << proxyData.display; +- arguments.push_back(ss.str()); ++ ss << "nx/nx,options=" << nxdir << ":" << proxyData.display; ++ ++ setenv("NX_DISPLAY", ss.str().c_str(), 1); ++ ++#ifndef NXCL_USE_NXSSH ++ if (proxyData.encrypted) ++ { ++ ss.str(""); ++ ss << this->nxsshProcess->getParentFD(); ++ fprintf(stderr, "NX_COMMFD=%d", this->nxsshProcess->getParentFD()); ++ setenv("NX_COMMFD", ss.str().c_str(), 1); ++ // FF-FIXME: need to wait for 2 secs due to race condition with "bye" in buffer ++ sleep(2); ++ } ++#endif + + // Find a path for the nxproxy process using getPath() + string nxproxyPath = this->getPath ("nxproxy"); +diff -Naur freenx-client-0.9/nxcl/lib/nxsession.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp +--- freenx-client-0.9/nxcl/lib/nxsession.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp 2008-03-12 04:40:04.000000000 +0100 +@@ -69,6 +69,7 @@ + int response = parseResponse (message); + string returnMessage; + ++#ifdef NXCL_USE_NXSSH + if (response == 211) { + if (doSSH == true) { + returnMessage = "yes"; +@@ -80,6 +81,7 @@ + if (response == 204) { // Authentication failed + returnMessage = "204"; + } ++#endif + + if (response == 147) { // Server capacity reached + returnMessage = "147"; +@@ -90,6 +92,17 @@ + case HELLO_NXCLIENT: + dbgln ("HELLO_NXCLIENT stage"); + ++ if (message.find("Are you sure you want to continue connecting (yes/no)?") != string::npos) ++ returnMessage = "yes"; // FF-FIXME: Or 211? ++ ++ if (message.find("assword") != string::npos) ++ returnMessage = nxPassword; // FF-FIXME: -> What to do? What to do? ++ ++ if (message.find("Permission denied") != string::npos || ++ message.find("su: Authentication failure") != string::npos || ++ message.find("Unknown id:") != string::npos) ++ returnMessage = "204"; // Authentication failed ++ + if (message.find("HELLO NXSERVER - Version") != string::npos) { + this->callbacks->authenticatedSignal(); + returnMessage = "hello NXCLIENT - Version "; +diff -Naur freenx-client-0.9/nxcl/nxcl/nxcl.cpp freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp +--- freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp 2009-07-25 16:59:24.000000000 +0200 @@ -20,6 +20,7 @@ #include "nxclientlib_i18n.h" #include "nxclientlib.h" @@ -38,3 +431,52 @@ #include "nxcl.h" +@@ -30,6 +31,7 @@ + #include + #include + } ++#include + + using namespace nxcl; + using namespace std; +diff -Naur freenx-client-0.9/qtnx/qtnx.pro freenx-client.svn545.plusfixes/qtnx/qtnx.pro +--- freenx-client-0.9/qtnx/qtnx.pro 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnx.pro 2008-07-10 10:01:24.000000000 +0200 +@@ -24,6 +24,8 @@ + DEPENDPATH += $(QTDIR)/include + + +-QT += ui xml ++QT += gui xml + + TARGET = qtnx ++target.path = $$[QT_INSTALL_BINS] ++INSTALLS += target +diff -Naur freenx-client-0.9/qtnx/qtnxwindow.cpp freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp +--- freenx-client-0.9/qtnx/qtnxwindow.cpp 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp 2009-07-25 17:07:19.000000000 +0200 +@@ -274,7 +274,8 @@ + key = config.key; + session.key = "supplied"; + } else +- session.key = "default"; ++ session.key = "id.key"; ++ + + if (config.sessionType == "unix-application") + session.customCommand = config.customCommand; +@@ -290,13 +291,12 @@ + + m_NXClient->setDepth(getDepth()); + +- QString keyPath = "id.key"; + + #ifdef Q_WS_MAC + keyPath = binaryPath + "/id.key"; + #endif + +- m_NXClient->invokeNXSSH(keyPath.toStdString(), config.serverHost, config.encryption, "", ++ m_NXClient->invokeNXSSH(session.key, config.serverHost, config.encryption, config.key, + config.serverPort); + + processProbe->start(30); Index: freenx-client.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-client/F-10/freenx-client.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-client.spec 23 Apr 2008 16:57:39 -0000 1.1 +++ freenx-client.spec 25 Jul 2009 22:30:21 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Free client libraries and binaries for the NX protocol Name: freenx-client Version: 0.9 -Release: 7%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -16,12 +16,9 @@ BuildRequires: gcc-c++ #Requires: nxssh, nxproxy BuildRequires: dbus-devel BuildRequires: doxygen -BuildRequires: qt-devel +BuildRequires: qt4-devel BuildRequires: desktop-file-utils -# Maybe this could be split later -Provides: nxcl = %{version}-%{release} -#Provides: nxcl-devel = %{version}-%{release} -Provides: qtnx = %{version}-%{release} +Requires: nxcl, qtnx %description NX is an exciting new technology for remote display. It provides near @@ -31,6 +28,39 @@ bandwidth links. FreeNX-client contains client libraries and executables for connecting to an NX server. +%package -n nxcl +Summary: A library for building NX clients +Group: Applications/Internet + +%description -n nxcl +Based on nxclientlib by George Wright, but with all dependencies on Qt +removed and the Qt build system replaced with GNU autotools. + +A binary, called nxcl - the "nxcl dbus daemon" links to libnxcl and +can negotiate an nx connection. + +%package -n nxcl-devel +Summary: Development files for building against the nxcl package +Group: Development/Libraries +Requires: nxcl, pkgconfig + +%description -n nxcl-devel +This package provides the files necessary for development against +nxcl. Use this package if you need to build a package depending on +nxcl at build time, or if you want to do your own development +against nxcl. + + +%package -n qtnx +Summary: A Qt-based NX client linking to nxcl +Group: System Environment/Libraries +Requires: %{_bindir}/nxssh, %{_bindir}/nxproxy + +%description -n qtnx +This is an update of the experimental QtNX client which was based on the +now deprecated NXClientLib backend library. This is an experimental port +to Seb James' nxcl library. + %prep %setup -q %patch0 -p1 -b .fixes @@ -38,8 +68,6 @@ cat >> qtnx/qtnx.pro << EOF QMAKE_CXXFLAGS += -I`pwd`/nxcl/lib LIBS += -L`pwd`/nxcl/lib -lnxcl EOF -mv nxcl/README nxcl/README.nxcl -mv qtnx/README qtnx/README.qtnx %build cd nxcl @@ -47,15 +75,16 @@ autoreconf -is %configure --disable-static make cd ../qtnx +export CFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" PATH=`pkg-config --variable=bindir Qt`:$PATH qmake make %install rm -rf %{buildroot} -make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/%{name}-%{version}/nxcl +make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/nxcl-%{version}/nxcl install -p -m 0755 qtnx/qtnx %{buildroot}%{_bindir}/ -install -p -m 0644 */README* %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ desktop-file-install --vendor="freenx" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} @@ -65,26 +94,39 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc %{_defaultdocdir}/%{name}-%{version} -# could become nxcl +%files -n nxcl +%defattr(-,root,root,-) +%doc nxcl/README %{_bindir}/libtest %{_bindir}/notQttest %{_bindir}/nxcl %{_bindir}/nxcmd %{_libdir}/libnxcl.so.* -# could become nxcl-devel -%exclude %{_includedir}/nxcl -%exclude %{_libdir}/libnxcl.so +%files -n nxcl-devel +%defattr(-,root,root,-) +%doc %{_defaultdocdir}/nxcl-%{version} +%{_includedir}/nxcl +%{_libdir}/libnxcl.so %exclude %{_libdir}/libnxcl.la -%exclude %{_libdir}/pkgconfig/nxcl.pc +%{_libdir}/pkgconfig/nxcl.pc -# could become qtnx +%files -n qtnx +%defattr(-,root,root,-) +%doc qtnx/README %{_bindir}/qtnx %{_datadir}/applications/*qtnx.desktop %changelog +* Sat Jul 25 2009 Axel Thimm - 0.9-9 +- Split package into several subpackages. +- Add some patches from CentOS (multiple-id-key & mode 0660 for key). +- Use some patches from up to svn 545 (dated 2008-07-10). + +* Mon Aug 25 2008 Axel Thimm - 0.9-8 +- qt4-devel is a more precise dependency than qt-devel. + * Thu Apr 10 2008 Axel Thimm - 0.9-7 - Fix description. - Remove devel files and embedded *-devel Provides:. From athimm at fedoraproject.org Sat Jul 25 22:30:22 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:30:22 +0000 (UTC) Subject: rpms/freenx-client/F-11 freenx-client-0.9-fixes.patch, 1.1, 1.2 freenx-client.spec, 1.2, 1.3 Message-ID: <20090725223022.281B111C02C8@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-client/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9774/freenx-client/F-11 Modified Files: freenx-client-0.9-fixes.patch freenx-client.spec Log Message: - Split package into several subpackages. - Add some patches from CentOS (multiple-id-key & mode 0660 for key). - Use some patches from up to svn 545 (dated 2008-07-10). freenx-client-0.9-fixes.patch: nxcl/configure.ac | 2 nxcl/doc/Makefile.am | 2 nxcl/lib/notQt.cpp | 26 ++++++++++- nxcl/lib/notQt.h | 17 +++++++ nxcl/lib/nxclientlib.cpp | 109 +++++++++++++++++++++++++++++++++++++++++------ nxcl/lib/nxsession.cpp | 13 +++++ nxcl/nxcl/nxcl.cpp | 2 qtnx/qtnx.pro | 4 + qtnx/qtnxwindow.cpp | 6 +- 9 files changed, 160 insertions(+), 21 deletions(-) Index: freenx-client-0.9-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-client/F-11/freenx-client-0.9-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-client-0.9-fixes.patch 23 Apr 2008 16:57:39 -0000 1.1 +++ freenx-client-0.9-fixes.patch 25 Jul 2009 22:30:21 -0000 1.2 @@ -1,5 +1,30 @@ ---- freenx-client-0.9/nxcl/lib/notQt.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/notQt.cpp 2008-04-05 20:36:05.000000000 +0200 +diff -Naur freenx-client-0.9/nxcl/configure.ac freenx-client.svn545.plusfixes/nxcl/configure.ac +--- freenx-client-0.9/nxcl/configure.ac 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/configure.ac 2008-07-10 10:01:24.000000000 +0200 +@@ -5,7 +5,7 @@ + AC_REVISION([$Revision$]) + AC_PREFIX_DEFAULT(/usr/local) + +-AM_INIT_AUTOMAKE([1.10 foreign]) ++AM_INIT_AUTOMAKE([1.9 foreign]) + + AM_CONFIG_HEADER(config.h) + AM_MAINTAINER_MODE +diff -Naur freenx-client-0.9/nxcl/doc/Makefile.am freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am +--- freenx-client-0.9/nxcl/doc/Makefile.am 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am 2008-07-10 10:01:24.000000000 +0200 +@@ -2,8 +2,6 @@ + + DOXYFILE = Doxyfile + +-docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION) +- + EXTRA_DIST = html + + SEDCMD1 = s/$$title/GNU nxcl documentation version $(VERSION)/g +diff -Naur freenx-client-0.9/nxcl/lib/notQt.cpp freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp +--- freenx-client-0.9/nxcl/lib/notQt.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp 2009-07-25 17:07:36.000000000 +0200 @@ -19,6 +19,7 @@ #include @@ -8,28 +33,396 @@ extern "C" { #include #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-05 20:54:18.000000000 +0200 -@@ -27,6 +27,7 @@ +@@ -26,8 +27,10 @@ + #include + #include + #include ++#include + #include + } ++#include + #include "../config.h" + #include "notQt.h" +@@ -52,7 +55,8 @@ + progName("unknown"), + error (NOTQPROCNOERROR), + pid(0), +- signalledStart(false) ++ signalledStart(false), ++ parentFD(-1) + { + // Set up the polling structs + this->p = static_cast(malloc (2*sizeof (struct pollfd))); +@@ -62,6 +66,15 @@ + notQProcess::~notQProcess () + { + free (this->p); ++ if (parentFD != -1) ++ { ++ close(parentFD); ++ parentFD=-1; ++ } ++ // FIXME: this should be closed here ++ // close (parentToChild[READING_END]); ++ // close (childToParent[WRITING_END]); ++ // close (childErrToParent[WRITING_END]); + } - #include -+#include + void +@@ -84,10 +97,18 @@ + // NB: The first item in the args list should be the program name. + this->progName = program; - extern "C" { - #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-04-05 20:54:18.000000000 +0200 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-06 06:37:37.000000000 +0200 -@@ -28,6 +28,7 @@ ++#ifdef NXCL_USE_NXSSH + // Set up our pipes + if (pipe(parentToChild) == -1 || pipe(childToParent) == -1 || pipe(childErrToParent) == -1) { + return NOTQTPROCESS_FAILURE; + } ++#else /* We need a socketpair for that to work */ ++ if (socketpair(AF_UNIX, SOCK_STREAM, 0, parentToChild) == -1 || pipe(childErrToParent) == -1) ++ return NOTQTPROCESS_FAILURE; ++ ++ childToParent[READING_END]=dup(parentToChild[WRITING_END]); ++ childToParent[WRITING_END]=dup(parentToChild[READING_END]); ++#endif + + this->pid = fork(); + +@@ -339,6 +360,9 @@ + fn << "/tmp/notQt" << time(NULL); + this->theFileName = fn.str(); + this->f.open (this->theFileName.c_str(), ios::in|ios::out|ios::trunc); ++ if (chmod(this->theFileName.c_str(), S_IRUSR | S_IWUSR) == -1) { ++ perror("chmod"); ++ } + } + + void +diff -Naur freenx-client-0.9/nxcl/lib/notQt.h freenx-client.svn545.plusfixes/nxcl/lib/notQt.h +--- freenx-client-0.9/nxcl/lib/notQt.h 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.h 2008-03-12 04:40:04.000000000 +0100 +@@ -117,6 +117,18 @@ + pid_t getPid (void) { return this->pid; } + int getError (void) { return this->error; } + void setError (int e) { this->error = e; } ++ ++ int getParentFD() ++ { ++ this->parentFD = this->parentToChild[1]; ++ close(this->childToParent[0]); ++ ++ // Create new pipes ++ pipe(this->parentToChild); ++ pipe(this->childToParent); ++ ++ return this->parentFD; ++ } + + /*! + * Setter for the callbacks. +@@ -180,6 +192,11 @@ + * Pointer to a callback object + */ + notQProcessCallbacks * callbacks; ++ ++ /*! ++ * old parent FD for comm with child ++ */ ++ int parentFD; + }; + + /*! +diff -Naur freenx-client-0.9/nxcl/lib/nxclientlib.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp +--- freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp 2009-07-25 16:59:24.000000000 +0200 +@@ -8,7 +8,8 @@ + : Author: Sebastian James + : (C) 2008 Defuturo Ltd + : Author: George Wright +- email : seb at esfnet.co.uk, gwright at kde.org ++ : (C) 2008 Fabian Franz ++ email : seb at esfnet.co.uk, gwright at kde.org, freenx at fabian-franz.de + ***************************************************************************/ + + /*************************************************************************** +@@ -27,6 +28,16 @@ + #include "../config.h" #include - #include ++#include +#include ++ ++// Define to use nxssh ++#if defined(NXCL_CYGWIN) || defined(NXCL_DARWIN) ++ ++// FF-FIXME That does not work. ++//#define NXCL_USE_NXSSH 1 ++ ++#endif extern "C" { #include ---- freenx-client-0.9/nxcl/nxcl/nxcl.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-04-06 06:48:34.000000000 +0200 +@@ -34,6 +45,8 @@ + #include + #include + } ++#include ++#include + + /* + * On the location of nxproxy and nxssh binaries +@@ -186,10 +199,14 @@ + + // Start to build the arguments for the nxssh command. + // notQProcess requires that argv[0] contains the program name ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("nxssh"); + + argtmp << "-nx"; + arguments.push_back (argtmp.str()); ++#else ++ arguments.push_back ("ssh"); ++#endif + + argtmp.str(""); + argtmp << "-p" << port; +@@ -215,6 +232,7 @@ + } + + argtmp.str(""); ++ // FF-FIXME: Perhaps the user wants to login as user directly + argtmp << "nx@" << serverHost; + arguments.push_back (argtmp.str()); + +@@ -227,9 +245,13 @@ + arguments.push_back ("-oRSAAuthentication no"); + arguments.push_back ("-oRhostsRSAAuthentication no"); + arguments.push_back ("-oPubkeyAuthentication yes"); ++ // FF-FIXME: Perhaps the user wants to login as user directly ++ //arguments.push_back ("-c nxserver"); + + if (encryption == true) { ++#ifdef NXCL_USE_NXSSH + arguments.push_back("-B"); ++#endif + session.setEncryption (true); + } else { + session.setEncryption (false); +@@ -240,10 +262,16 @@ + // nxssh -E gives this message when called: + // NX> 285 Enabling skip of SSH config files + // ...so there you have the meaning. ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("-E"); ++#endif + + // Find a path for the nxssh process using getPath() ++#ifdef NXCL_USE_NXSSH + string nxsshPath = this->getPath ("nxssh"); ++#else ++ string nxsshPath = this->getPath ("ssh"); ++#endif + + this->nxsshProcess->start(nxsshPath, arguments); + +@@ -365,8 +393,9 @@ + + // On some connections this is sent via stdout instead of stderr? + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye")!=string::npos)) { +- ++ ((*msgiter).find("NX> 999 Bye")!=string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + // This is "NX> 299 Switching connection to: " in + // version 1.5.0. This was changed in nxssh version + // 2.0.0-8 (see the nxssh CHANGELOG). +@@ -388,6 +417,11 @@ + this->externalCallbacks->connectedSuccessfullySignal(); + this->sessionRunning = true; + } ++#else /* don't use nxssh, start nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + + if ((*msgiter).find("Password") != string::npos) { + this->externalCallbacks->write +@@ -402,6 +436,9 @@ + dbgln ("NXClientLib::processParseStdout: Got auth failed" + " or capacity reached, calling this->parseSSH."); + msg = this->parseSSH (*msgiter); ++#ifndef NXCL_USE_NXSSH ++ this->isFinished = true; ++#endif + } + if (msg.size() > 0) { + this->write (msg); +@@ -436,7 +473,9 @@ + + (*msgiter) + "'(end msg)"); + + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye") != string::npos)) { ++ ((*msgiter).find("NX> 999 Bye") != string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + + string switchCommand = "NX> 299 Switch connection to: "; + stringstream ss; +@@ -478,6 +517,11 @@ + _("SSH host key verification failed")); + this->isFinished = true; + } ++#else /* don't use nxssh, use nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + } + } + +@@ -580,21 +624,41 @@ + this->externalCallbacks->serverCapacitySignal(); + this->isFinished = true; + +- } else if ++ } ++#ifdef NXCL_USE_NXSSH ++ else if + (message.find ("NX> 204 Authentication failed.") != string::npos) { + + this->externalCallbacks->write + (204, _("NX SSH Authentication Failed, finishing")); + this->isFinished = true; + } ++#endif + + if (message.find("NX> 710 Session status: running") != string::npos) { + + this->externalCallbacks->write + (710, _("Session status is \"running\"")); ++ } ++ ++ // FF-FIXME: This is technically incorrect as the proxy is just ready once 1002 and 1006 have ++ // been sent. ++ if (message.find("NX> 710 Session status: running") != string::npos) { ++ ++ //this->externalCallbacks->write ++ // (1006, _("Session status is \"running\"")); ++ ++#ifdef NXCL_USE_NXSSH + invokeProxy(); ++#else ++ if (!proxyData.encrypted) ++ invokeProxy(); ++#endif + session.wipeSessions(); +- rMessage = "bye\n"; ++ if (proxyData.encrypted) ++ rMessage = "bye\n"; ++ else ++ rMessage = "quit\n"; + } + + return rMessage; +@@ -700,18 +764,24 @@ + stringstream data; + + if (proxyData.encrypted) { ++#ifdef NXCL_USE_NXSSH + data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" + << proxyData.cookie + << ",id=" << proxyData.id << ",listen=" + << proxyData.port << ":" << proxyData.display << "\n"; + // may also need shmem=1,shpix=1,font=1,product=... ++#else ++ data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" ++ << proxyData.cookie ++ << ",id=" << proxyData.id << ":" << proxyData.display << "\n"; ++#endif + + } else { +- // Not tested yet ++ // Not tested yet, FF-FIXME: Test + data << "nx/nx" << x11Display << ",session=session,cookie=" << proxyData.cookie +- << ",id=" << proxyData.id +- // << ",connect=" << proxyData.server << ":" << proxyData.display +- << ",listen=" << proxyData.port << ":" << proxyData.display ++ << ",connect=" << proxyData.server << ":" << proxyData.port ++ << ",id=" << proxyData.id << ":" << proxyData.display ++ //<< ",listen=" << proxyData.port << ":" << proxyData.display + << "\n"; + } + +@@ -726,10 +796,23 @@ + list arguments; + arguments.push_back("nxproxy"); // argv[0] has to be the program name + arguments.push_back("-S"); ++ + ss.str(""); +- ss << "options=" << nxdir; +- ss << ":" << proxyData.display; +- arguments.push_back(ss.str()); ++ ss << "nx/nx,options=" << nxdir << ":" << proxyData.display; ++ ++ setenv("NX_DISPLAY", ss.str().c_str(), 1); ++ ++#ifndef NXCL_USE_NXSSH ++ if (proxyData.encrypted) ++ { ++ ss.str(""); ++ ss << this->nxsshProcess->getParentFD(); ++ fprintf(stderr, "NX_COMMFD=%d", this->nxsshProcess->getParentFD()); ++ setenv("NX_COMMFD", ss.str().c_str(), 1); ++ // FF-FIXME: need to wait for 2 secs due to race condition with "bye" in buffer ++ sleep(2); ++ } ++#endif + + // Find a path for the nxproxy process using getPath() + string nxproxyPath = this->getPath ("nxproxy"); +diff -Naur freenx-client-0.9/nxcl/lib/nxsession.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp +--- freenx-client-0.9/nxcl/lib/nxsession.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp 2008-03-12 04:40:04.000000000 +0100 +@@ -69,6 +69,7 @@ + int response = parseResponse (message); + string returnMessage; + ++#ifdef NXCL_USE_NXSSH + if (response == 211) { + if (doSSH == true) { + returnMessage = "yes"; +@@ -80,6 +81,7 @@ + if (response == 204) { // Authentication failed + returnMessage = "204"; + } ++#endif + + if (response == 147) { // Server capacity reached + returnMessage = "147"; +@@ -90,6 +92,17 @@ + case HELLO_NXCLIENT: + dbgln ("HELLO_NXCLIENT stage"); + ++ if (message.find("Are you sure you want to continue connecting (yes/no)?") != string::npos) ++ returnMessage = "yes"; // FF-FIXME: Or 211? ++ ++ if (message.find("assword") != string::npos) ++ returnMessage = nxPassword; // FF-FIXME: -> What to do? What to do? ++ ++ if (message.find("Permission denied") != string::npos || ++ message.find("su: Authentication failure") != string::npos || ++ message.find("Unknown id:") != string::npos) ++ returnMessage = "204"; // Authentication failed ++ + if (message.find("HELLO NXSERVER - Version") != string::npos) { + this->callbacks->authenticatedSignal(); + returnMessage = "hello NXCLIENT - Version "; +diff -Naur freenx-client-0.9/nxcl/nxcl/nxcl.cpp freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp +--- freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp 2009-07-25 16:59:24.000000000 +0200 @@ -20,6 +20,7 @@ #include "nxclientlib_i18n.h" #include "nxclientlib.h" @@ -38,3 +431,52 @@ #include "nxcl.h" +@@ -30,6 +31,7 @@ + #include + #include + } ++#include + + using namespace nxcl; + using namespace std; +diff -Naur freenx-client-0.9/qtnx/qtnx.pro freenx-client.svn545.plusfixes/qtnx/qtnx.pro +--- freenx-client-0.9/qtnx/qtnx.pro 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnx.pro 2008-07-10 10:01:24.000000000 +0200 +@@ -24,6 +24,8 @@ + DEPENDPATH += $(QTDIR)/include + + +-QT += ui xml ++QT += gui xml + + TARGET = qtnx ++target.path = $$[QT_INSTALL_BINS] ++INSTALLS += target +diff -Naur freenx-client-0.9/qtnx/qtnxwindow.cpp freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp +--- freenx-client-0.9/qtnx/qtnxwindow.cpp 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp 2009-07-25 17:07:19.000000000 +0200 +@@ -274,7 +274,8 @@ + key = config.key; + session.key = "supplied"; + } else +- session.key = "default"; ++ session.key = "id.key"; ++ + + if (config.sessionType == "unix-application") + session.customCommand = config.customCommand; +@@ -290,13 +291,12 @@ + + m_NXClient->setDepth(getDepth()); + +- QString keyPath = "id.key"; + + #ifdef Q_WS_MAC + keyPath = binaryPath + "/id.key"; + #endif + +- m_NXClient->invokeNXSSH(keyPath.toStdString(), config.serverHost, config.encryption, "", ++ m_NXClient->invokeNXSSH(session.key, config.serverHost, config.encryption, config.key, + config.serverPort); + + processProbe->start(30); Index: freenx-client.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-client/F-11/freenx-client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- freenx-client.spec 24 Feb 2009 18:25:19 -0000 1.2 +++ freenx-client.spec 25 Jul 2009 22:30:21 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Free client libraries and binaries for the NX protocol Name: freenx-client Version: 0.9 -Release: 8%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -16,12 +16,9 @@ BuildRequires: gcc-c++ #Requires: nxssh, nxproxy BuildRequires: dbus-devel BuildRequires: doxygen -BuildRequires: qt-devel +BuildRequires: qt4-devel BuildRequires: desktop-file-utils -# Maybe this could be split later -Provides: nxcl = %{version}-%{release} -#Provides: nxcl-devel = %{version}-%{release} -Provides: qtnx = %{version}-%{release} +Requires: nxcl, qtnx %description NX is an exciting new technology for remote display. It provides near @@ -31,6 +28,39 @@ bandwidth links. FreeNX-client contains client libraries and executables for connecting to an NX server. +%package -n nxcl +Summary: A library for building NX clients +Group: Applications/Internet + +%description -n nxcl +Based on nxclientlib by George Wright, but with all dependencies on Qt +removed and the Qt build system replaced with GNU autotools. + +A binary, called nxcl - the "nxcl dbus daemon" links to libnxcl and +can negotiate an nx connection. + +%package -n nxcl-devel +Summary: Development files for building against the nxcl package +Group: Development/Libraries +Requires: nxcl, pkgconfig + +%description -n nxcl-devel +This package provides the files necessary for development against +nxcl. Use this package if you need to build a package depending on +nxcl at build time, or if you want to do your own development +against nxcl. + + +%package -n qtnx +Summary: A Qt-based NX client linking to nxcl +Group: System Environment/Libraries +Requires: %{_bindir}/nxssh, %{_bindir}/nxproxy + +%description -n qtnx +This is an update of the experimental QtNX client which was based on the +now deprecated NXClientLib backend library. This is an experimental port +to Seb James' nxcl library. + %prep %setup -q %patch0 -p1 -b .fixes @@ -38,8 +68,6 @@ cat >> qtnx/qtnx.pro << EOF QMAKE_CXXFLAGS += -I`pwd`/nxcl/lib LIBS += -L`pwd`/nxcl/lib -lnxcl EOF -mv nxcl/README nxcl/README.nxcl -mv qtnx/README qtnx/README.qtnx %build cd nxcl @@ -47,15 +75,16 @@ autoreconf -is %configure --disable-static make cd ../qtnx +export CFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" PATH=`pkg-config --variable=bindir Qt`:$PATH qmake make %install rm -rf %{buildroot} -make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/%{name}-%{version}/nxcl +make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/nxcl-%{version}/nxcl install -p -m 0755 qtnx/qtnx %{buildroot}%{_bindir}/ -install -p -m 0644 */README* %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ desktop-file-install --vendor="freenx" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} @@ -65,28 +94,38 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc %{_defaultdocdir}/%{name}-%{version} -# could become nxcl +%files -n nxcl +%defattr(-,root,root,-) +%doc nxcl/README %{_bindir}/libtest %{_bindir}/notQttest %{_bindir}/nxcl %{_bindir}/nxcmd %{_libdir}/libnxcl.so.* -# could become nxcl-devel -%exclude %{_includedir}/nxcl -%exclude %{_libdir}/libnxcl.so +%files -n nxcl-devel +%defattr(-,root,root,-) +%doc %{_defaultdocdir}/nxcl-%{version} +%{_includedir}/nxcl +%{_libdir}/libnxcl.so %exclude %{_libdir}/libnxcl.la -%exclude %{_libdir}/pkgconfig/nxcl.pc +%{_libdir}/pkgconfig/nxcl.pc -# could become qtnx +%files -n qtnx +%defattr(-,root,root,-) +%doc qtnx/README %{_bindir}/qtnx %{_datadir}/applications/*qtnx.desktop %changelog -* Tue Feb 24 2009 Fedora Release Engineering - 0.9-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Sat Jul 25 2009 Axel Thimm - 0.9-9 +- Split package into several subpackages. +- Add some patches from CentOS (multiple-id-key & mode 0660 for key). +- Use some patches from up to svn 545 (dated 2008-07-10). + +* Mon Aug 25 2008 Axel Thimm - 0.9-8 +- qt4-devel is a more precise dependency than qt-devel. * Thu Apr 10 2008 Axel Thimm - 0.9-7 - Fix description. From athimm at fedoraproject.org Sat Jul 25 22:30:22 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:30:22 +0000 (UTC) Subject: rpms/freenx-client/devel freenx-client-0.9-fixes.patch, 1.1, 1.2 freenx-client.spec, 1.3, 1.4 Message-ID: <20090725223022.5F49311C02C8@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9774/freenx-client/devel Modified Files: freenx-client-0.9-fixes.patch freenx-client.spec Log Message: - Split package into several subpackages. - Add some patches from CentOS (multiple-id-key & mode 0660 for key). - Use some patches from up to svn 545 (dated 2008-07-10). freenx-client-0.9-fixes.patch: nxcl/configure.ac | 2 nxcl/doc/Makefile.am | 2 nxcl/lib/notQt.cpp | 26 ++++++++++- nxcl/lib/notQt.h | 17 +++++++ nxcl/lib/nxclientlib.cpp | 109 +++++++++++++++++++++++++++++++++++++++++------ nxcl/lib/nxsession.cpp | 13 +++++ nxcl/nxcl/nxcl.cpp | 2 qtnx/qtnx.pro | 4 + qtnx/qtnxwindow.cpp | 6 +- 9 files changed, 160 insertions(+), 21 deletions(-) Index: freenx-client-0.9-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-client/devel/freenx-client-0.9-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-client-0.9-fixes.patch 23 Apr 2008 16:57:39 -0000 1.1 +++ freenx-client-0.9-fixes.patch 25 Jul 2009 22:30:22 -0000 1.2 @@ -1,5 +1,30 @@ ---- freenx-client-0.9/nxcl/lib/notQt.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/notQt.cpp 2008-04-05 20:36:05.000000000 +0200 +diff -Naur freenx-client-0.9/nxcl/configure.ac freenx-client.svn545.plusfixes/nxcl/configure.ac +--- freenx-client-0.9/nxcl/configure.ac 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/configure.ac 2008-07-10 10:01:24.000000000 +0200 +@@ -5,7 +5,7 @@ + AC_REVISION([$Revision$]) + AC_PREFIX_DEFAULT(/usr/local) + +-AM_INIT_AUTOMAKE([1.10 foreign]) ++AM_INIT_AUTOMAKE([1.9 foreign]) + + AM_CONFIG_HEADER(config.h) + AM_MAINTAINER_MODE +diff -Naur freenx-client-0.9/nxcl/doc/Makefile.am freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am +--- freenx-client-0.9/nxcl/doc/Makefile.am 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/doc/Makefile.am 2008-07-10 10:01:24.000000000 +0200 +@@ -2,8 +2,6 @@ + + DOXYFILE = Doxyfile + +-docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION) +- + EXTRA_DIST = html + + SEDCMD1 = s/$$title/GNU nxcl documentation version $(VERSION)/g +diff -Naur freenx-client-0.9/nxcl/lib/notQt.cpp freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp +--- freenx-client-0.9/nxcl/lib/notQt.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.cpp 2009-07-25 17:07:36.000000000 +0200 @@ -19,6 +19,7 @@ #include @@ -8,28 +33,396 @@ extern "C" { #include #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-05 20:54:18.000000000 +0200 -@@ -27,6 +27,7 @@ +@@ -26,8 +27,10 @@ + #include + #include + #include ++#include + #include + } ++#include + #include "../config.h" + #include "notQt.h" +@@ -52,7 +55,8 @@ + progName("unknown"), + error (NOTQPROCNOERROR), + pid(0), +- signalledStart(false) ++ signalledStart(false), ++ parentFD(-1) + { + // Set up the polling structs + this->p = static_cast(malloc (2*sizeof (struct pollfd))); +@@ -62,6 +66,15 @@ + notQProcess::~notQProcess () + { + free (this->p); ++ if (parentFD != -1) ++ { ++ close(parentFD); ++ parentFD=-1; ++ } ++ // FIXME: this should be closed here ++ // close (parentToChild[READING_END]); ++ // close (childToParent[WRITING_END]); ++ // close (childErrToParent[WRITING_END]); + } - #include -+#include + void +@@ -84,10 +97,18 @@ + // NB: The first item in the args list should be the program name. + this->progName = program; - extern "C" { - #include ---- freenx-client-0.9/nxcl/lib/nxclientlib.cpp~ 2008-04-05 20:54:18.000000000 +0200 -+++ freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-04-06 06:37:37.000000000 +0200 -@@ -28,6 +28,7 @@ ++#ifdef NXCL_USE_NXSSH + // Set up our pipes + if (pipe(parentToChild) == -1 || pipe(childToParent) == -1 || pipe(childErrToParent) == -1) { + return NOTQTPROCESS_FAILURE; + } ++#else /* We need a socketpair for that to work */ ++ if (socketpair(AF_UNIX, SOCK_STREAM, 0, parentToChild) == -1 || pipe(childErrToParent) == -1) ++ return NOTQTPROCESS_FAILURE; ++ ++ childToParent[READING_END]=dup(parentToChild[WRITING_END]); ++ childToParent[WRITING_END]=dup(parentToChild[READING_END]); ++#endif + + this->pid = fork(); + +@@ -339,6 +360,9 @@ + fn << "/tmp/notQt" << time(NULL); + this->theFileName = fn.str(); + this->f.open (this->theFileName.c_str(), ios::in|ios::out|ios::trunc); ++ if (chmod(this->theFileName.c_str(), S_IRUSR | S_IWUSR) == -1) { ++ perror("chmod"); ++ } + } + + void +diff -Naur freenx-client-0.9/nxcl/lib/notQt.h freenx-client.svn545.plusfixes/nxcl/lib/notQt.h +--- freenx-client-0.9/nxcl/lib/notQt.h 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/notQt.h 2008-03-12 04:40:04.000000000 +0100 +@@ -117,6 +117,18 @@ + pid_t getPid (void) { return this->pid; } + int getError (void) { return this->error; } + void setError (int e) { this->error = e; } ++ ++ int getParentFD() ++ { ++ this->parentFD = this->parentToChild[1]; ++ close(this->childToParent[0]); ++ ++ // Create new pipes ++ pipe(this->parentToChild); ++ pipe(this->childToParent); ++ ++ return this->parentFD; ++ } + + /*! + * Setter for the callbacks. +@@ -180,6 +192,11 @@ + * Pointer to a callback object + */ + notQProcessCallbacks * callbacks; ++ ++ /*! ++ * old parent FD for comm with child ++ */ ++ int parentFD; + }; + + /*! +diff -Naur freenx-client-0.9/nxcl/lib/nxclientlib.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp +--- freenx-client-0.9/nxcl/lib/nxclientlib.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxclientlib.cpp 2009-07-25 16:59:24.000000000 +0200 +@@ -8,7 +8,8 @@ + : Author: Sebastian James + : (C) 2008 Defuturo Ltd + : Author: George Wright +- email : seb at esfnet.co.uk, gwright at kde.org ++ : (C) 2008 Fabian Franz ++ email : seb at esfnet.co.uk, gwright at kde.org, freenx at fabian-franz.de + ***************************************************************************/ + + /*************************************************************************** +@@ -27,6 +28,16 @@ + #include "../config.h" #include - #include ++#include +#include ++ ++// Define to use nxssh ++#if defined(NXCL_CYGWIN) || defined(NXCL_DARWIN) ++ ++// FF-FIXME That does not work. ++//#define NXCL_USE_NXSSH 1 ++ ++#endif extern "C" { #include ---- freenx-client-0.9/nxcl/nxcl/nxcl.cpp~ 2008-03-11 00:13:08.000000000 +0100 -+++ freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-04-06 06:48:34.000000000 +0200 +@@ -34,6 +45,8 @@ + #include + #include + } ++#include ++#include + + /* + * On the location of nxproxy and nxssh binaries +@@ -186,10 +199,14 @@ + + // Start to build the arguments for the nxssh command. + // notQProcess requires that argv[0] contains the program name ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("nxssh"); + + argtmp << "-nx"; + arguments.push_back (argtmp.str()); ++#else ++ arguments.push_back ("ssh"); ++#endif + + argtmp.str(""); + argtmp << "-p" << port; +@@ -215,6 +232,7 @@ + } + + argtmp.str(""); ++ // FF-FIXME: Perhaps the user wants to login as user directly + argtmp << "nx@" << serverHost; + arguments.push_back (argtmp.str()); + +@@ -227,9 +245,13 @@ + arguments.push_back ("-oRSAAuthentication no"); + arguments.push_back ("-oRhostsRSAAuthentication no"); + arguments.push_back ("-oPubkeyAuthentication yes"); ++ // FF-FIXME: Perhaps the user wants to login as user directly ++ //arguments.push_back ("-c nxserver"); + + if (encryption == true) { ++#ifdef NXCL_USE_NXSSH + arguments.push_back("-B"); ++#endif + session.setEncryption (true); + } else { + session.setEncryption (false); +@@ -240,10 +262,16 @@ + // nxssh -E gives this message when called: + // NX> 285 Enabling skip of SSH config files + // ...so there you have the meaning. ++#ifdef NXCL_USE_NXSSH + arguments.push_back ("-E"); ++#endif + + // Find a path for the nxssh process using getPath() ++#ifdef NXCL_USE_NXSSH + string nxsshPath = this->getPath ("nxssh"); ++#else ++ string nxsshPath = this->getPath ("ssh"); ++#endif + + this->nxsshProcess->start(nxsshPath, arguments); + +@@ -365,8 +393,9 @@ + + // On some connections this is sent via stdout instead of stderr? + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye")!=string::npos)) { +- ++ ((*msgiter).find("NX> 999 Bye")!=string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + // This is "NX> 299 Switching connection to: " in + // version 1.5.0. This was changed in nxssh version + // 2.0.0-8 (see the nxssh CHANGELOG). +@@ -388,6 +417,11 @@ + this->externalCallbacks->connectedSuccessfullySignal(); + this->sessionRunning = true; + } ++#else /* don't use nxssh, start nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + + if ((*msgiter).find("Password") != string::npos) { + this->externalCallbacks->write +@@ -402,6 +436,9 @@ + dbgln ("NXClientLib::processParseStdout: Got auth failed" + " or capacity reached, calling this->parseSSH."); + msg = this->parseSSH (*msgiter); ++#ifndef NXCL_USE_NXSSH ++ this->isFinished = true; ++#endif + } + if (msg.size() > 0) { + this->write (msg); +@@ -436,7 +473,9 @@ + + (*msgiter) + "'(end msg)"); + + if (proxyData.encrypted && readyForProxy && +- ((*msgiter).find("NX> 999 Bye") != string::npos)) { ++ ((*msgiter).find("NX> 999 Bye") != string::npos)) ++#ifdef NXCL_USE_NXSSH ++ { + + string switchCommand = "NX> 299 Switch connection to: "; + stringstream ss; +@@ -478,6 +517,11 @@ + _("SSH host key verification failed")); + this->isFinished = true; + } ++#else /* don't use nxssh, use nxproxy -stdin */ ++ { ++ invokeProxy(); ++ } ++#endif + } + } + +@@ -580,21 +624,41 @@ + this->externalCallbacks->serverCapacitySignal(); + this->isFinished = true; + +- } else if ++ } ++#ifdef NXCL_USE_NXSSH ++ else if + (message.find ("NX> 204 Authentication failed.") != string::npos) { + + this->externalCallbacks->write + (204, _("NX SSH Authentication Failed, finishing")); + this->isFinished = true; + } ++#endif + + if (message.find("NX> 710 Session status: running") != string::npos) { + + this->externalCallbacks->write + (710, _("Session status is \"running\"")); ++ } ++ ++ // FF-FIXME: This is technically incorrect as the proxy is just ready once 1002 and 1006 have ++ // been sent. ++ if (message.find("NX> 710 Session status: running") != string::npos) { ++ ++ //this->externalCallbacks->write ++ // (1006, _("Session status is \"running\"")); ++ ++#ifdef NXCL_USE_NXSSH + invokeProxy(); ++#else ++ if (!proxyData.encrypted) ++ invokeProxy(); ++#endif + session.wipeSessions(); +- rMessage = "bye\n"; ++ if (proxyData.encrypted) ++ rMessage = "bye\n"; ++ else ++ rMessage = "quit\n"; + } + + return rMessage; +@@ -700,18 +764,24 @@ + stringstream data; + + if (proxyData.encrypted) { ++#ifdef NXCL_USE_NXSSH + data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" + << proxyData.cookie + << ",id=" << proxyData.id << ",listen=" + << proxyData.port << ":" << proxyData.display << "\n"; + // may also need shmem=1,shpix=1,font=1,product=... ++#else ++ data << "nx/nx" << x11Display << ",session=session,encryption=1,cookie=" ++ << proxyData.cookie ++ << ",id=" << proxyData.id << ":" << proxyData.display << "\n"; ++#endif + + } else { +- // Not tested yet ++ // Not tested yet, FF-FIXME: Test + data << "nx/nx" << x11Display << ",session=session,cookie=" << proxyData.cookie +- << ",id=" << proxyData.id +- // << ",connect=" << proxyData.server << ":" << proxyData.display +- << ",listen=" << proxyData.port << ":" << proxyData.display ++ << ",connect=" << proxyData.server << ":" << proxyData.port ++ << ",id=" << proxyData.id << ":" << proxyData.display ++ //<< ",listen=" << proxyData.port << ":" << proxyData.display + << "\n"; + } + +@@ -726,10 +796,23 @@ + list arguments; + arguments.push_back("nxproxy"); // argv[0] has to be the program name + arguments.push_back("-S"); ++ + ss.str(""); +- ss << "options=" << nxdir; +- ss << ":" << proxyData.display; +- arguments.push_back(ss.str()); ++ ss << "nx/nx,options=" << nxdir << ":" << proxyData.display; ++ ++ setenv("NX_DISPLAY", ss.str().c_str(), 1); ++ ++#ifndef NXCL_USE_NXSSH ++ if (proxyData.encrypted) ++ { ++ ss.str(""); ++ ss << this->nxsshProcess->getParentFD(); ++ fprintf(stderr, "NX_COMMFD=%d", this->nxsshProcess->getParentFD()); ++ setenv("NX_COMMFD", ss.str().c_str(), 1); ++ // FF-FIXME: need to wait for 2 secs due to race condition with "bye" in buffer ++ sleep(2); ++ } ++#endif + + // Find a path for the nxproxy process using getPath() + string nxproxyPath = this->getPath ("nxproxy"); +diff -Naur freenx-client-0.9/nxcl/lib/nxsession.cpp freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp +--- freenx-client-0.9/nxcl/lib/nxsession.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/lib/nxsession.cpp 2008-03-12 04:40:04.000000000 +0100 +@@ -69,6 +69,7 @@ + int response = parseResponse (message); + string returnMessage; + ++#ifdef NXCL_USE_NXSSH + if (response == 211) { + if (doSSH == true) { + returnMessage = "yes"; +@@ -80,6 +81,7 @@ + if (response == 204) { // Authentication failed + returnMessage = "204"; + } ++#endif + + if (response == 147) { // Server capacity reached + returnMessage = "147"; +@@ -90,6 +92,17 @@ + case HELLO_NXCLIENT: + dbgln ("HELLO_NXCLIENT stage"); + ++ if (message.find("Are you sure you want to continue connecting (yes/no)?") != string::npos) ++ returnMessage = "yes"; // FF-FIXME: Or 211? ++ ++ if (message.find("assword") != string::npos) ++ returnMessage = nxPassword; // FF-FIXME: -> What to do? What to do? ++ ++ if (message.find("Permission denied") != string::npos || ++ message.find("su: Authentication failure") != string::npos || ++ message.find("Unknown id:") != string::npos) ++ returnMessage = "204"; // Authentication failed ++ + if (message.find("HELLO NXSERVER - Version") != string::npos) { + this->callbacks->authenticatedSignal(); + returnMessage = "hello NXCLIENT - Version "; +diff -Naur freenx-client-0.9/nxcl/nxcl/nxcl.cpp freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp +--- freenx-client-0.9/nxcl/nxcl/nxcl.cpp 2008-03-11 00:13:08.000000000 +0100 ++++ freenx-client.svn545.plusfixes/nxcl/nxcl/nxcl.cpp 2009-07-25 16:59:24.000000000 +0200 @@ -20,6 +20,7 @@ #include "nxclientlib_i18n.h" #include "nxclientlib.h" @@ -38,3 +431,52 @@ #include "nxcl.h" +@@ -30,6 +31,7 @@ + #include + #include + } ++#include + + using namespace nxcl; + using namespace std; +diff -Naur freenx-client-0.9/qtnx/qtnx.pro freenx-client.svn545.plusfixes/qtnx/qtnx.pro +--- freenx-client-0.9/qtnx/qtnx.pro 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnx.pro 2008-07-10 10:01:24.000000000 +0200 +@@ -24,6 +24,8 @@ + DEPENDPATH += $(QTDIR)/include + + +-QT += ui xml ++QT += gui xml + + TARGET = qtnx ++target.path = $$[QT_INSTALL_BINS] ++INSTALLS += target +diff -Naur freenx-client-0.9/qtnx/qtnxwindow.cpp freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp +--- freenx-client-0.9/qtnx/qtnxwindow.cpp 2008-03-11 00:13:09.000000000 +0100 ++++ freenx-client.svn545.plusfixes/qtnx/qtnxwindow.cpp 2009-07-25 17:07:19.000000000 +0200 +@@ -274,7 +274,8 @@ + key = config.key; + session.key = "supplied"; + } else +- session.key = "default"; ++ session.key = "id.key"; ++ + + if (config.sessionType == "unix-application") + session.customCommand = config.customCommand; +@@ -290,13 +291,12 @@ + + m_NXClient->setDepth(getDepth()); + +- QString keyPath = "id.key"; + + #ifdef Q_WS_MAC + keyPath = binaryPath + "/id.key"; + #endif + +- m_NXClient->invokeNXSSH(keyPath.toStdString(), config.serverHost, config.encryption, "", ++ m_NXClient->invokeNXSSH(session.key, config.serverHost, config.encryption, config.key, + config.serverPort); + + processProbe->start(30); Index: freenx-client.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-client/devel/freenx-client.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- freenx-client.spec 24 Jul 2009 23:10:31 -0000 1.3 +++ freenx-client.spec 25 Jul 2009 22:30:22 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Free client libraries and binaries for the NX protocol Name: freenx-client Version: 0.9 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -16,12 +16,9 @@ BuildRequires: gcc-c++ #Requires: nxssh, nxproxy BuildRequires: dbus-devel BuildRequires: doxygen -BuildRequires: qt-devel +BuildRequires: qt4-devel BuildRequires: desktop-file-utils -# Maybe this could be split later -Provides: nxcl = %{version}-%{release} -#Provides: nxcl-devel = %{version}-%{release} -Provides: qtnx = %{version}-%{release} +Requires: nxcl, qtnx %description NX is an exciting new technology for remote display. It provides near @@ -31,6 +28,39 @@ bandwidth links. FreeNX-client contains client libraries and executables for connecting to an NX server. +%package -n nxcl +Summary: A library for building NX clients +Group: Applications/Internet + +%description -n nxcl +Based on nxclientlib by George Wright, but with all dependencies on Qt +removed and the Qt build system replaced with GNU autotools. + +A binary, called nxcl - the "nxcl dbus daemon" links to libnxcl and +can negotiate an nx connection. + +%package -n nxcl-devel +Summary: Development files for building against the nxcl package +Group: Development/Libraries +Requires: nxcl, pkgconfig + +%description -n nxcl-devel +This package provides the files necessary for development against +nxcl. Use this package if you need to build a package depending on +nxcl at build time, or if you want to do your own development +against nxcl. + + +%package -n qtnx +Summary: A Qt-based NX client linking to nxcl +Group: System Environment/Libraries +Requires: %{_bindir}/nxssh, %{_bindir}/nxproxy + +%description -n qtnx +This is an update of the experimental QtNX client which was based on the +now deprecated NXClientLib backend library. This is an experimental port +to Seb James' nxcl library. + %prep %setup -q %patch0 -p1 -b .fixes @@ -38,8 +68,6 @@ cat >> qtnx/qtnx.pro << EOF QMAKE_CXXFLAGS += -I`pwd`/nxcl/lib LIBS += -L`pwd`/nxcl/lib -lnxcl EOF -mv nxcl/README nxcl/README.nxcl -mv qtnx/README qtnx/README.qtnx %build cd nxcl @@ -47,15 +75,16 @@ autoreconf -is %configure --disable-static make cd ../qtnx +export CFLAGS="%{optflags}" +export CXXFLAGS="%{optflags}" PATH=`pkg-config --variable=bindir Qt`:$PATH qmake make %install rm -rf %{buildroot} -make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/%{name}-%{version}/nxcl +make -C nxcl install DESTDIR=%{buildroot} docdir=%{_defaultdocdir}/nxcl-%{version}/nxcl install -p -m 0755 qtnx/qtnx %{buildroot}%{_bindir}/ -install -p -m 0644 */README* %{buildroot}%{_defaultdocdir}/%{name}-%{version}/ desktop-file-install --vendor="freenx" \ --dir=%{buildroot}%{_datadir}/applications \ %{SOURCE1} @@ -65,31 +94,38 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc %{_defaultdocdir}/%{name}-%{version} -# could become nxcl +%files -n nxcl +%defattr(-,root,root,-) +%doc nxcl/README %{_bindir}/libtest %{_bindir}/notQttest %{_bindir}/nxcl %{_bindir}/nxcmd %{_libdir}/libnxcl.so.* -# could become nxcl-devel -%exclude %{_includedir}/nxcl -%exclude %{_libdir}/libnxcl.so +%files -n nxcl-devel +%defattr(-,root,root,-) +%doc %{_defaultdocdir}/nxcl-%{version} +%{_includedir}/nxcl +%{_libdir}/libnxcl.so %exclude %{_libdir}/libnxcl.la -%exclude %{_libdir}/pkgconfig/nxcl.pc +%{_libdir}/pkgconfig/nxcl.pc -# could become qtnx +%files -n qtnx +%defattr(-,root,root,-) +%doc qtnx/README %{_bindir}/qtnx %{_datadir}/applications/*qtnx.desktop %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 0.9-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Sat Jul 25 2009 Axel Thimm - 0.9-9 +- Split package into several subpackages. +- Add some patches from CentOS (multiple-id-key & mode 0660 for key). +- Use some patches from up to svn 545 (dated 2008-07-10). -* Tue Feb 24 2009 Fedora Release Engineering - 0.9-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Mon Aug 25 2008 Axel Thimm - 0.9-8 +- qt4-devel is a more precise dependency than qt-devel. * Thu Apr 10 2008 Axel Thimm - 0.9-7 - Fix description. From athimm at fedoraproject.org Sat Jul 25 22:55:31 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:55:31 +0000 (UTC) Subject: rpms/freenx-server/F-10 freenx-server.spec,1.6,1.7 Message-ID: <20090725225531.C808611C02C8@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20003/freenx-server/F-10 Modified Files: freenx-server.spec Log Message: Bump up release, there was an old build with the same release in koji. Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-10/freenx-server.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- freenx-server.spec 25 Jul 2009 22:29:29 -0000 1.6 +++ freenx-server.spec 25 Jul 2009 22:55:30 -0000 1.7 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From athimm at fedoraproject.org Sat Jul 25 22:55:31 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:55:31 +0000 (UTC) Subject: rpms/freenx-server/F-11 freenx-server.spec,1.7,1.8 Message-ID: <20090725225531.C7FD111C02BD@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20003/freenx-server/F-11 Modified Files: freenx-server.spec Log Message: Bump up release, there was an old build with the same release in koji. Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-11/freenx-server.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- freenx-server.spec 25 Jul 2009 22:29:30 -0000 1.7 +++ freenx-server.spec 25 Jul 2009 22:55:30 -0000 1.8 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From athimm at fedoraproject.org Sat Jul 25 22:55:31 2009 From: athimm at fedoraproject.org (athimm) Date: Sat, 25 Jul 2009 22:55:31 +0000 (UTC) Subject: rpms/freenx-server/devel freenx-server.spec,1.8,1.9 Message-ID: <20090725225531.BDF4711C02BC@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20003/freenx-server/devel Modified Files: freenx-server.spec Log Message: Bump up release, there was an old build with the same release in koji. Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/devel/freenx-server.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- freenx-server.spec 25 Jul 2009 22:29:31 -0000 1.8 +++ freenx-server.spec 25 Jul 2009 22:55:31 -0000 1.9 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-13 +* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From jkeating at fedoraproject.org Sat Jul 25 23:07:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:07:51 +0000 (UTC) Subject: rpms/palp/devel palp.spec,1.2,1.3 Message-ID: <20090725230751.9C1C811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/palp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25806 Modified Files: palp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: palp.spec =================================================================== RCS file: /cvs/pkgs/rpms/palp/devel/palp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- palp.spec 26 Feb 2009 09:27:02 -0000 1.2 +++ palp.spec 25 Jul 2009 23:07:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: palp Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Package for Analyzing Lattice Polytopes Group: Applications/Engineering License: GPLv3+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:08:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:08:11 +0000 (UTC) Subject: rpms/pam/devel pam.spec,1.198,1.199 Message-ID: <20090725230811.F353A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25999 Modified Files: pam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam/devel/pam.spec,v retrieving revision 1.198 retrieving revision 1.199 diff -u -p -r1.198 -r1.199 --- pam.spec 24 Jun 2009 07:09:21 -0000 1.198 +++ pam.spec 25 Jul 2009 23:08:11 -0000 1.199 @@ -3,7 +3,7 @@ Summary: An extensible library which provides authentication for applications Name: pam Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} # The library is BSD licensed with option to relicense as GPLv2+ - this option is redundant # as the BSD license allows that anyway. pam_timestamp and pam_console modules are GPLv2+, # pam_rhosts_auth module is BSD with advertising @@ -325,6 +325,9 @@ fi %doc doc/adg/*.txt doc/adg/html %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Tomas Mraz 1.1.0-1 - update to new upstream version From jkeating at fedoraproject.org Sat Jul 25 23:08:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:08:30 +0000 (UTC) Subject: rpms/pam_abl/devel pam_abl.spec,1.8,1.9 Message-ID: <20090725230830.0301511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_abl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26196 Modified Files: pam_abl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_abl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_abl/devel/pam_abl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pam_abl.spec 26 Feb 2009 09:30:34 -0000 1.8 +++ pam_abl.spec 25 Jul 2009 23:08:29 -0000 1.9 @@ -1,7 +1,7 @@ Name: pam_abl Summary: A Pluggable Authentication Module (PAM) for auto blacklisting Version: 0.2.3 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD or GPL+ Group: System Environment/Base URL: http://www.hexten.net/sw/pam_abl/ @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man?/%{name}.* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:08:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:08:50 +0000 (UTC) Subject: rpms/pam_ccreds/devel pam_ccreds.spec,1.26,1.27 Message-ID: <20090725230850.1ABFB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_ccreds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26417 Modified Files: pam_ccreds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_ccreds.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_ccreds/devel/pam_ccreds.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- pam_ccreds.spec 26 Feb 2009 09:31:42 -0000 1.26 +++ pam_ccreds.spec 25 Jul 2009 23:08:49 -0000 1.27 @@ -1,7 +1,7 @@ Summary: Pam module to cache login credentials Name: pam_ccreds Version: 7 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: System Environment/Base URL: http://www.padl.com/OSS/pam_ccreds.html @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/cc_dump %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:09:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:09:06 +0000 (UTC) Subject: rpms/pam_kcoda/devel pam_kcoda.spec,1.3,1.4 Message-ID: <20090725230906.8DB4911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_kcoda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26594 Modified Files: pam_kcoda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_kcoda.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_kcoda/devel/pam_kcoda.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pam_kcoda.spec 26 Feb 2009 09:32:39 -0000 1.3 +++ pam_kcoda.spec 25 Jul 2009 23:09:06 -0000 1.4 @@ -2,7 +2,7 @@ Summary: A Pluggable Authentication Module for coda using krb5 authentication Name: pam_kcoda Version: 0.5.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://mir.dnsalias.com/_media/oss/pamcoda/ Source0: http://mir.dnsalias.com/_media/oss/pamcoda/pam_kcoda-v%{version}.tgz Source1: pam_kcoda-license-README.txt @@ -43,6 +43,9 @@ install -m 0755 pam_kcoda.so $RPM_BUILD_ %doc README AUTHORS COPYING %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:09:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:09:22 +0000 (UTC) Subject: rpms/pam_keyring/devel pam_keyring.spec,1.8,1.9 Message-ID: <20090725230922.8212411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_keyring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26786 Modified Files: pam_keyring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_keyring.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_keyring/devel/pam_keyring.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pam_keyring.spec 26 Feb 2009 09:33:33 -0000 1.8 +++ pam_keyring.spec 25 Jul 2009 23:09:22 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A PAM module that execute gnome-keyring-daemon and unlock the default keyring Name: pam_keyring Version: 0.0.9 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://www.hekanetworks.com/opensource/%name/%{name}-%{version}.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:09:36 +0000 (UTC) Subject: rpms/pam_krb5/devel pam_krb5.spec,1.71,1.72 Message-ID: <20090725230936.E14BA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_krb5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26981 Modified Files: pam_krb5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_krb5.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_krb5/devel/pam_krb5.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- pam_krb5.spec 26 Jun 2009 21:41:33 -0000 1.71 +++ pam_krb5.spec 25 Jul 2009 23:09:36 -0000 1.72 @@ -1,7 +1,7 @@ Summary: A Pluggable Authentication Module for Kerberos 5. Name: pam_krb5 Version: 2.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Source0: pam_krb5-%{version}-1.tar.gz License: BSD or LGPLv2+ Group: System Environment/Base @@ -50,6 +50,9 @@ sed -ri -e 's|/lib(64)?/|/\$LIB/|g' $RPM %doc README* COPYING* ChangeLog NEWS %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Nalin Dahyabhai - 2.3.7-1 - when called to refresh credentials, store the new creds in the default ccache location if $KRB5CCNAME isn't set (#507984) From jkeating at fedoraproject.org Sat Jul 25 23:09:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:09:53 +0000 (UTC) Subject: rpms/pam_mount/devel pam_mount.spec,1.56,1.57 Message-ID: <20090725230953.054CF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_mount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27152 Modified Files: pam_mount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_mount.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_mount/devel/pam_mount.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- pam_mount.spec 2 Jul 2009 20:48:35 -0000 1.56 +++ pam_mount.spec 25 Jul 2009 23:09:52 -0000 1.57 @@ -2,7 +2,7 @@ Name: pam_mount Version: 1.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A PAM module that can mount volumes for a user session Group: System Environment/Base @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Till Maas - 1.27-1 - Update to new release From jkeating at fedoraproject.org Sat Jul 25 23:10:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:10:08 +0000 (UTC) Subject: rpms/pam_mysql/devel pam_mysql.spec,1.23,1.24 Message-ID: <20090725231008.6CC6911C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27346 Modified Files: pam_mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_mysql/devel/pam_mysql.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- pam_mysql.spec 26 Feb 2009 09:36:31 -0000 1.23 +++ pam_mysql.spec 25 Jul 2009 23:10:08 -0000 1.24 @@ -1,7 +1,7 @@ Summary: PAM module for auth UNIX users using MySQL data base Name: pam_mysql Version: 0.7 -Release: 0.7.rc1%{?dist}.2 +Release: 0.8.rc1%{?dist}.2 Epoch: 1 License: GPLv2+ Group: System Environment/Base @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT /%{_lib}/security/pam_mysql.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.7-0.8.rc1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.7-0.7.rc1.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:10:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:10:25 +0000 (UTC) Subject: rpms/pam_passwdqc/devel pam_passwdqc.spec,1.15,1.16 Message-ID: <20090725231025.B441B11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_passwdqc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27538 Modified Files: pam_passwdqc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_passwdqc.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_passwdqc/devel/pam_passwdqc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pam_passwdqc.spec 26 Feb 2009 09:37:26 -0000 1.15 +++ pam_passwdqc.spec 25 Jul 2009 23:10:25 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Pluggable password quality-control module. Name: pam_passwdqc Version: 1.0.5 -Release: 2 +Release: 3 # License of man page is BSD, rest is Copyright only License: BSD and Copyright only Group: System Environment/Base @@ -38,6 +38,9 @@ make install DESTDIR=$RPM_BUILD_ROOT MAN %{_mandir}/man*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:11:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:11:19 +0000 (UTC) Subject: rpms/pam_pkcs11/devel pam_pkcs11.spec,1.31,1.32 Message-ID: <20090725231119.431FC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_pkcs11/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27941 Modified Files: pam_pkcs11.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_pkcs11.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_pkcs11/devel/pam_pkcs11.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- pam_pkcs11.spec 26 Feb 2009 09:38:34 -0000 1.31 +++ pam_pkcs11.spec 25 Jul 2009 23:11:19 -0000 1.32 @@ -6,7 +6,7 @@ Name: pam_pkcs11 Version: 0.5.3 -Release: 28 +Release: 29 Summary: PKCS #11/NSS PAM login module Group: System Environment/Base @@ -154,6 +154,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/%{name}/pkcs11_eventmgr.conf.example %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.3-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.3-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:11:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:11:32 +0000 (UTC) Subject: rpms/pam_smb/devel pam_smb.spec,1.21,1.22 Message-ID: <20090725231132.D21CC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_smb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28120 Modified Files: pam_smb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_smb.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_smb/devel/pam_smb.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- pam_smb.spec 26 Feb 2009 09:39:27 -0000 1.21 +++ pam_smb.spec 25 Jul 2009 23:11:32 -0000 1.22 @@ -1,6 +1,6 @@ Name: pam_smb Version: 1.1.7 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A Pluggable Authentication Module (PAM) for use with SMB servers. Group: System Environment/Base URL: http://www.csn.ul.ie/~airlied/pam_smb/ @@ -43,6 +43,9 @@ rm -fr $RPM_BUILD_ROOT /%{_lib}/security/pam_smb_auth.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.7-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:11:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:11:47 +0000 (UTC) Subject: rpms/pam_ssh/devel pam_ssh.spec,1.24,1.25 Message-ID: <20090725231147.9E60211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_ssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28295 Modified Files: pam_ssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_ssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_ssh/devel/pam_ssh.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- pam_ssh.spec 16 Jul 2009 15:09:15 -0000 1.24 +++ pam_ssh.spec 25 Jul 2009 23:11:47 -0000 1.25 @@ -1,7 +1,7 @@ Summary: PAM module for use with SSH keys and ssh-agent Name: pam_ssh Version: 1.97 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base License: BSD URL: http://sourceforge.net/projects/pam-ssh/ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.97-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Dmitry Butskoy - 1.97-1 - update to 1.97 - drop no more needed patches From jkeating at fedoraproject.org Sat Jul 25 23:12:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:12:03 +0000 (UTC) Subject: rpms/pam_yubico/devel pam_yubico.spec,1.2,1.3 Message-ID: <20090725231203.A4DCE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pam_yubico/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28497 Modified Files: pam_yubico.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pam_yubico.spec =================================================================== RCS file: /cvs/pkgs/rpms/pam_yubico/devel/pam_yubico.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pam_yubico.spec 8 May 2009 18:49:54 -0000 1.2 +++ pam_yubico.spec 25 Jul 2009 23:12:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: pam_yubico Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Pluggable Authentication Module for yubikeys Group: System Environment/Base @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Mike McGrath - 2.1-2 - Added patch to prevent segfaults in x86_64 From jkeating at fedoraproject.org Sat Jul 25 23:12:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:12:19 +0000 (UTC) Subject: rpms/paman/devel paman.spec,1.5,1.6 Message-ID: <20090725231219.0F60311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/paman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28668 Modified Files: paman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: paman.spec =================================================================== RCS file: /cvs/pkgs/rpms/paman/devel/paman.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- paman.spec 26 Feb 2009 09:41:32 -0000 1.5 +++ paman.spec 25 Jul 2009 23:12:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: paman Version: 0.9.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Management tool for PulseAudio Group: Applications/Multimedia @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:12:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:12:36 +0000 (UTC) Subject: rpms/pan/devel pan.spec,1.42,1.43 Message-ID: <20090725231236.102F411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28874 Modified Files: pan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pan.spec =================================================================== RCS file: /cvs/pkgs/rpms/pan/devel/pan.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- pan.spec 20 Mar 2009 06:35:44 -0000 1.42 +++ pan.spec 25 Jul 2009 23:12:35 -0000 1.43 @@ -1,7 +1,7 @@ Summary: A GNOME/GTK+ news reader for X Name: pan Version: 0.133 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: GPLv2 Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.133-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Alex Lancaster - 1:0.133-3 - Add patch to fix build against GCC 4.4 - Rebuild against new gmime22 compatibility package (#476250) From jkeating at fedoraproject.org Sat Jul 25 23:12:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:12:53 +0000 (UTC) Subject: rpms/pangomm/devel pangomm.spec,1.7,1.8 Message-ID: <20090725231253.E49C011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pangomm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29091 Modified Files: pangomm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pangomm.spec =================================================================== RCS file: /cvs/pkgs/rpms/pangomm/devel/pangomm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pangomm.spec 6 Apr 2009 10:26:31 -0000 1.7 +++ pangomm.spec 25 Jul 2009 23:12:53 -0000 1.8 @@ -2,7 +2,7 @@ Name: pangomm Version: 2.24.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ interface for Pango Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.24.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Denis Leroy - 2.24.0-1 - Update to upstream 2.24.0 From jkeating at fedoraproject.org Sat Jul 25 23:13:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:13:17 +0000 (UTC) Subject: rpms/panoglview/devel panoglview.spec,1.1,1.2 Message-ID: <20090725231317.E98BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/panoglview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29333 Modified Files: panoglview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: panoglview.spec =================================================================== RCS file: /cvs/pkgs/rpms/panoglview/devel/panoglview.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- panoglview.spec 8 Jul 2009 19:22:32 -0000 1.1 +++ panoglview.spec 25 Jul 2009 23:13:17 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Immersive viewer for spherical panoramas Name: panoglview Version: 0.2.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://hugin.sourceforge.net/ Group: Applications/Multimedia @@ -48,6 +48,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/pixmaps/%{name}.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Bruno Postle 0.2.2-5 - spec improvements, add icon From jkeating at fedoraproject.org Sat Jul 25 23:13:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:13:38 +0000 (UTC) Subject: rpms/paperkey/devel paperkey.spec,1.5,1.6 Message-ID: <20090725231338.EA49711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/paperkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29541 Modified Files: paperkey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: paperkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/paperkey/devel/paperkey.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- paperkey.spec 26 Feb 2009 09:45:41 -0000 1.5 +++ paperkey.spec 25 Jul 2009 23:13:38 -0000 1.6 @@ -1,6 +1,6 @@ Name: paperkey Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An OpenPGP key archiver Group: Applications/Archiving @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:13:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:13:54 +0000 (UTC) Subject: rpms/paprefs/devel paprefs.spec,1.14,1.15 Message-ID: <20090725231354.C696911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/paprefs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29694 Modified Files: paprefs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: paprefs.spec =================================================================== RCS file: /cvs/pkgs/rpms/paprefs/devel/paprefs.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- paprefs.spec 14 Apr 2009 17:01:14 -0000 1.14 +++ paprefs.spec 25 Jul 2009 23:13:54 -0000 1.15 @@ -1,6 +1,6 @@ Name: paprefs Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Management tool for PulseAudio Group: Applications/Multimedia @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/paprefs.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Lennart Poettering 0.9.8-1 - Update to 0.9.8 From jkeating at fedoraproject.org Sat Jul 25 23:14:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:14:12 +0000 (UTC) Subject: rpms/paps/devel paps.spec,1.37,1.38 Message-ID: <20090725231412.33E0211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/paps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29894 Modified Files: paps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: paps.spec =================================================================== RCS file: /cvs/pkgs/rpms/paps/devel/paps.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- paps.spec 26 Feb 2009 09:48:24 -0000 1.37 +++ paps.spec 25 Jul 2009 23:14:11 -0000 1.38 @@ -1,6 +1,6 @@ Name: paps Version: 0.6.8 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ URL: http://paps.sourceforge.net/ @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libpaps.so %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.8-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.8-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:14:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:14:28 +0000 (UTC) Subject: rpms/papyrus/devel papyrus.spec,1.26,1.27 Message-ID: <20090725231428.0B4D511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/papyrus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30075 Modified Files: papyrus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: papyrus.spec =================================================================== RCS file: /cvs/pkgs/rpms/papyrus/devel/papyrus.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- papyrus.spec 26 May 2009 16:22:56 -0000 1.26 +++ papyrus.spec 25 Jul 2009 23:14:27 -0000 1.27 @@ -1,7 +1,7 @@ Summary: Cairo based C++ scenegraph library Name: papyrus Version: 0.11.1 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv3 URL: http://libpapyrus.sourceforge.net/ Group: System Environment/Libraries @@ -171,6 +171,9 @@ find %{buildroot} -type f -name "*.la" - %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Rick L Vinyard Jr - 0.11.2-1 - Rebuild for cairomm-1.8 From jkeating at fedoraproject.org Sat Jul 25 23:14:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:14:44 +0000 (UTC) Subject: rpms/par2cmdline/devel par2cmdline.spec,1.9,1.10 Message-ID: <20090725231444.B9AA711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/par2cmdline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30252 Modified Files: par2cmdline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: par2cmdline.spec =================================================================== RCS file: /cvs/pkgs/rpms/par2cmdline/devel/par2cmdline.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- par2cmdline.spec 26 Feb 2009 09:49:30 -0000 1.9 +++ par2cmdline.spec 25 Jul 2009 23:14:44 -0000 1.10 @@ -1,7 +1,7 @@ Summary: PAR 2.0 compatible file verification and repair tool Name: par2cmdline Version: 0.4 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Archiving Source: http://dl.sourceforge.net/parchive/%{name}-%{version}.tar.gz @@ -52,6 +52,9 @@ make check-TESTS %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:15:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:15:01 +0000 (UTC) Subject: rpms/parcellite/devel parcellite.spec,1.6,1.7 Message-ID: <20090725231501.4701E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/parcellite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30420 Modified Files: parcellite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: parcellite.spec =================================================================== RCS file: /cvs/pkgs/rpms/parcellite/devel/parcellite.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- parcellite.spec 18 Mar 2009 23:09:14 -0000 1.6 +++ parcellite.spec 25 Jul 2009 23:15:01 -0000 1.7 @@ -1,6 +1,6 @@ Name: parcellite Version: 0.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight GTK+ clipboard manager Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Christoph Wickert - 0.9.1-1 - Update to 0.9.1 - Remove both patches as all fixes got upstreamed From jkeating at fedoraproject.org Sat Jul 25 23:15:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:15:22 +0000 (UTC) Subject: rpms/pards/devel pards.spec,1.4,1.5 Message-ID: <20090725231522.655F911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pards/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30628 Modified Files: pards.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pards.spec =================================================================== RCS file: /cvs/pkgs/rpms/pards/devel/pards.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pards.spec 26 Feb 2009 09:51:17 -0000 1.4 +++ pards.spec 25 Jul 2009 23:15:22 -0000 1.5 @@ -3,7 +3,7 @@ Summary: A library for PARallel programs with Dataflow Synchronization Name: pards Version: 0.4 -Release: 8%{?dist} +Release: 9%{?dist} URL: http://pards.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/%{name}/%{repoid}/%{name}04.tar.gz Patch0: %{name}-%{version}.patch @@ -66,6 +66,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:15:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:15:37 +0000 (UTC) Subject: rpms/pari/devel pari.spec,1.12,1.13 Message-ID: <20090725231537.D71BA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30826 Modified Files: pari.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pari.spec =================================================================== RCS file: /cvs/pkgs/rpms/pari/devel/pari.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pari.spec 26 Feb 2009 09:52:53 -0000 1.12 +++ pari.spec 25 Jul 2009 23:15:37 -0000 1.13 @@ -1,6 +1,6 @@ Name: pari Version: 2.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Number Theory-oriented Computer Algebra System Group: System Environment/Libraries @@ -163,6 +163,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:15:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:15:53 +0000 (UTC) Subject: rpms/parprouted/devel parprouted.spec,1.2,1.3 Message-ID: <20090725231553.47E1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/parprouted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30983 Modified Files: parprouted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: parprouted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parprouted/devel/parprouted.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- parprouted.spec 26 Feb 2009 09:53:45 -0000 1.2 +++ parprouted.spec 25 Jul 2009 23:15:53 -0000 1.3 @@ -2,7 +2,7 @@ Name: parprouted Version: 0.70 -Release: 4%{dist} +Release: 5%{dist} License: GPLv2 Summary: Proxy ARP IP bridging daemon Group: Applications/Internet @@ -43,6 +43,9 @@ transparent firewalls. %{_mandir}/man8/%{name}.8* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.70-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.70-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:16:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:16:08 +0000 (UTC) Subject: rpms/parrot/devel parrot.spec,1.7,1.8 Message-ID: <20090725231608.4A03B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/parrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31172 Modified Files: parrot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: parrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/parrot/devel/parrot.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- parrot.spec 22 Jul 2009 18:27:58 -0000 1.7 +++ parrot.spec 25 Jul 2009 23:16:08 -0000 1.8 @@ -1,6 +1,6 @@ Name: parrot Version: 1.4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Parrot is a virtual machine License: Artistic 2.0 Group: Development/Libraries @@ -288,6 +288,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Gerd Pokorra 1.4.0-1 - add the new disable-rpath configure option From jkeating at fedoraproject.org Sat Jul 25 23:16:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:16:30 +0000 (UTC) Subject: rpms/parted/devel parted.spec,1.140,1.141 Message-ID: <20090725231630.01EAA11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/parted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31383 Modified Files: parted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/devel/parted.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- parted.spec 23 Jul 2009 21:59:41 -0000 1.140 +++ parted.spec 25 Jul 2009 23:16:29 -0000 1.141 @@ -4,7 +4,7 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted @@ -129,6 +129,9 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.9.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Joel Granados - 1.9.0-6 - Rebuild usiing the official tar.gz at http://ftp.gnu.org/gnu/parted/parted-1.9.0.tar.gz From jkeating at fedoraproject.org Sat Jul 25 23:16:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:16:47 +0000 (UTC) Subject: rpms/partimage/devel partimage.spec,1.4,1.5 Message-ID: <20090725231647.651F111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/partimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31545 Modified Files: partimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: partimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/partimage/devel/partimage.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- partimage.spec 26 Feb 2009 17:01:22 -0000 1.4 +++ partimage.spec 25 Jul 2009 23:16:47 -0000 1.5 @@ -13,7 +13,7 @@ Summary: Partition imaging utility, much like Ghost Name: partimage Version: 0.6.7 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.partimage.org/ @@ -223,6 +223,9 @@ fi %dir %{image_place} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Paulo Roma - 0.6.7-7 - Patched for gcc-4.4. From jkeating at fedoraproject.org Sat Jul 25 23:17:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:17:00 +0000 (UTC) Subject: rpms/passivetex/devel passivetex.spec,1.19,1.20 Message-ID: <20090725231700.85EB111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/passivetex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31709 Modified Files: passivetex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: passivetex.spec =================================================================== RCS file: /cvs/pkgs/rpms/passivetex/devel/passivetex.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- passivetex.spec 26 Feb 2009 09:56:46 -0000 1.19 +++ passivetex.spec 25 Jul 2009 23:17:00 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Macros to process XSL formatting objects Name: passivetex Version: 1.25 -Release: 9%{?dist} +Release: 10%{?dist} License: LPPL Group: Applications/Publishing Source0: http://www.tei-c.org.uk/Software/passivetex/%{name}-%{version}.zip @@ -53,6 +53,9 @@ exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.25-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.25-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild @@ -152,8 +155,8 @@ exit 0 All persons listed below can be reached at @pld.org.pl $Log$ -Revision 1.19 2009/02/26 09:56:46 jkeating -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +Revision 1.20 2009/07/25 23:17:00 jkeating +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Revision 1.8 2001/08/21 10:12:42 wrobell - ver. 1.6 From jkeating at fedoraproject.org Sat Jul 25 23:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:17:16 +0000 (UTC) Subject: rpms/passwd/devel passwd.spec,1.38,1.39 Message-ID: <20090725231716.1097311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/passwd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31885 Modified Files: passwd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: passwd.spec =================================================================== RCS file: /cvs/pkgs/rpms/passwd/devel/passwd.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- passwd.spec 26 Feb 2009 09:57:44 -0000 1.38 +++ passwd.spec 25 Jul 2009 23:17:15 -0000 1.39 @@ -7,7 +7,7 @@ Summary: An utility for setting or changing passwords using PAM Name: passwd Version: 0.76 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Base URL: http://fedorahosted.org/passwd @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/passwd.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.76-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.76-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:17:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:17:32 +0000 (UTC) Subject: rpms/pastebin/devel pastebin.spec,1.8,1.9 Message-ID: <20090725231732.A506E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pastebin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32069 Modified Files: pastebin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pastebin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pastebin/devel/pastebin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pastebin.spec 26 Feb 2009 09:58:43 -0000 1.8 +++ pastebin.spec 25 Jul 2009 23:17:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: pastebin Version: 0.60 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A collaborative debugging tool Group: Applications/Internet @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.60-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.60-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:17:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:17:49 +0000 (UTC) Subject: rpms/patch/devel patch.spec,1.39,1.40 Message-ID: <20090725231749.67FDE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/patch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32264 Modified Files: patch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: patch.spec =================================================================== RCS file: /cvs/pkgs/rpms/patch/devel/patch.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- patch.spec 29 Apr 2009 16:39:13 -0000 1.39 +++ patch.spec 25 Jul 2009 23:17:49 -0000 1.40 @@ -1,7 +1,7 @@ Summary: Utility for modifying/upgrading files Name: patch Version: 2.5.4 -Release: 39%{?dist} +Release: 40%{?dist} License: GPLv2+ URL: http://www.gnu.org/software/patch/patch.html Group: Development/Tools @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.5.4-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Tim Waugh 2.5.4-39 - Fixed operation when SELinux is disabled (bug #498102). Patch from Jan Kratochvil. From jkeating at fedoraproject.org Sat Jul 25 23:18:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:18:05 +0000 (UTC) Subject: rpms/patchutils/devel patchutils.spec,1.27,1.28 Message-ID: <20090725231805.BAFEF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/patchutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32438 Modified Files: patchutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: patchutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/patchutils/devel/patchutils.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- patchutils.spec 26 Feb 2009 10:00:39 -0000 1.27 +++ patchutils.spec 25 Jul 2009 23:18:05 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A collection of programs for manipulating patch files Name: patchutils Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://cyberelk.net/tim/patchutils/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:18:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:18:25 +0000 (UTC) Subject: rpms/pathfinder/devel pathfinder.spec,1.1,1.2 Message-ID: <20090725231825.550BF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pathfinder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32605 Modified Files: pathfinder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pathfinder.spec =================================================================== RCS file: /cvs/pkgs/rpms/pathfinder/devel/pathfinder.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pathfinder.spec 14 Jul 2009 15:37:24 -0000 1.1 +++ pathfinder.spec 25 Jul 2009 23:18:25 -0000 1.2 @@ -2,7 +2,7 @@ Name: pathfinder Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: X.509 Path Discovery and Validation Group: Applications/Internet @@ -210,6 +210,9 @@ exit 0 %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Konstantin Ryabitsev - 1.0.0-1 - Import into fedora cvs. From jkeating at fedoraproject.org Sat Jul 25 23:18:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:18:47 +0000 (UTC) Subject: rpms/pavucontrol/devel pavucontrol.spec,1.19,1.20 Message-ID: <20090725231847.265F211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pavucontrol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv372 Modified Files: pavucontrol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pavucontrol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pavucontrol/devel/pavucontrol.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pavucontrol.spec 2 Jul 2009 01:13:56 -0000 1.19 +++ pavucontrol.spec 25 Jul 2009 23:18:46 -0000 1.20 @@ -1,6 +1,6 @@ Name: pavucontrol Version: 0.9.9 -Release: 0.test1%{?dist} +Release: 0.test1%{?dist}.1 Summary: Volume control for PulseAudio Group: Applications/Multimedia @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/pavucontrol.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.9-0.test1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Lennart Poettering 0.9.9-1 - Preview of upcoming 0.9.9 From jkeating at fedoraproject.org Sat Jul 25 23:19:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:19:03 +0000 (UTC) Subject: rpms/pavumeter/devel pavumeter.spec,1.6,1.7 Message-ID: <20090725231903.261C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pavumeter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv593 Modified Files: pavumeter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pavumeter.spec =================================================================== RCS file: /cvs/pkgs/rpms/pavumeter/devel/pavumeter.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pavumeter.spec 26 Feb 2009 10:01:43 -0000 1.6 +++ pavumeter.spec 25 Jul 2009 23:19:02 -0000 1.7 @@ -1,6 +1,6 @@ Name: pavumeter Version: 0.9.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Volume meter for PulseAudio Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:19:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:19:24 +0000 (UTC) Subject: rpms/pax/devel pax.spec,1.25,1.26 Message-ID: <20090725231924.2F14F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv795 Modified Files: pax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pax.spec =================================================================== RCS file: /cvs/pkgs/rpms/pax/devel/pax.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- pax.spec 26 Feb 2009 10:02:13 -0000 1.25 +++ pax.spec 25 Jul 2009 23:19:23 -0000 1.26 @@ -1,7 +1,7 @@ Summary: POSIX File System Archiver Name: pax Version: 3.4 -Release: 9%{?dist} +Release: 10%{?dist} License: BSD Group: Applications/Archiving Source: ftp://ftp.suse.com/pub/people/kukuk/pax/%{name}-%{version}.tar.bz2 @@ -42,6 +42,9 @@ rm -rf %{buildroot} %doc %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:19:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:19:43 +0000 (UTC) Subject: rpms/pax-utils/devel pax-utils.spec,1.4,1.5 Message-ID: <20090725231943.0923111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pax-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1014 Modified Files: pax-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pax-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pax-utils/devel/pax-utils.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pax-utils.spec 28 Feb 2009 15:04:35 -0000 1.4 +++ pax-utils.spec 25 Jul 2009 23:19:42 -0000 1.5 @@ -1,7 +1,7 @@ Summary: PaX aware and related utilities for ELF binaries Name: pax-utils Version: 0.1.19 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://hardened.gentoo.org/pax-utils.xml Group: Development/Tools Source: http://distfiles.gentoo.org/distfiles/%{name}-%{version}.tar.bz2 @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_mandir}/man1/scanmacho.1* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Dominik Mierzejewski 0.1.19-1 - updated to 0.1.19 - fix installed binaries permissions From jkeating at fedoraproject.org Sat Jul 25 23:19:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:19:59 +0000 (UTC) Subject: rpms/pbm2l2030/devel pbm2l2030.spec,1.4,1.5 Message-ID: <20090725231959.CBF7511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pbm2l2030/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1213 Modified Files: pbm2l2030.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pbm2l2030.spec =================================================================== RCS file: /cvs/pkgs/rpms/pbm2l2030/devel/pbm2l2030.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pbm2l2030.spec 26 Feb 2009 10:04:28 -0000 1.4 +++ pbm2l2030.spec 25 Jul 2009 23:19:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: pbm2l2030 Version: 1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Converts PBM stream to Lexmark 2030 printer language Group: System Environment/Libraries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE README.TXT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:20:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:20:18 +0000 (UTC) Subject: rpms/pbm2l7k/devel pbm2l7k.spec,1.5,1.6 Message-ID: <20090725232018.CA08E11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pbm2l7k/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1464 Modified Files: pbm2l7k.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pbm2l7k.spec =================================================================== RCS file: /cvs/pkgs/rpms/pbm2l7k/devel/pbm2l7k.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pbm2l7k.spec 26 Feb 2009 10:05:25 -0000 1.5 +++ pbm2l7k.spec 25 Jul 2009 23:20:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: pbm2l7k Version: 990321 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Converts PBM stream to Lexmark 7000, 7200 and 5700 printer language Group: System Environment/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %doc README lexmarkprotocol.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 990321-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 990321-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:20:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:20:40 +0000 (UTC) Subject: rpms/pbzip2/devel pbzip2.spec,1.15,1.16 Message-ID: <20090725232040.6890811C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pbzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1665 Modified Files: pbzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pbzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pbzip2/devel/pbzip2.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pbzip2.spec 26 Feb 2009 10:06:23 -0000 1.15 +++ pbzip2.spec 25 Jul 2009 23:20:39 -0000 1.16 @@ -1,6 +1,6 @@ Name: pbzip2 Version: 1.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parallel implementation of bzip2 URL: http://www.compression.ca/pbzip2/ License: BSD @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:20:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:20:56 +0000 (UTC) Subject: rpms/pcapdiff/devel pcapdiff.spec,1.4,1.5 Message-ID: <20090725232056.A75F011C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcapdiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1852 Modified Files: pcapdiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcapdiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcapdiff/devel/pcapdiff.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pcapdiff.spec 26 Feb 2009 10:07:17 -0000 1.4 +++ pcapdiff.spec 25 Jul 2009 23:20:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: pcapdiff Version: 0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Compares packet captures, detects forged, dropped or mangled packets Group: Development/Languages @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pcapdiff/*.pyo %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:21:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:21:13 +0000 (UTC) Subject: rpms/pcapy/devel pcapy.spec,1.5,1.6 Message-ID: <20090725232113.F1F1B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcapy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2056 Modified Files: pcapy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcapy.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcapy/devel/pcapy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pcapy.spec 26 Feb 2009 10:08:12 -0000 1.5 +++ pcapy.spec 25 Jul 2009 23:21:13 -0000 1.6 @@ -1,7 +1,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: pcapy Version: 0.10.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A Python interface to libpcap Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %dir %{python_sitearch}/pcapy* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:21:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:21:38 +0000 (UTC) Subject: rpms/pcb/devel pcb.spec,1.25,1.26 Message-ID: <20090725232138.9282711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2292 Modified Files: pcb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcb.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcb/devel/pcb.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- pcb.spec 26 Feb 2009 10:09:07 -0000 1.25 +++ pcb.spec 25 Jul 2009 23:21:38 -0000 1.26 @@ -2,7 +2,7 @@ Name: pcb Version: 0.%{pcbver} -Release: 2%{?dist} +Release: 3%{?dist} Summary: An interactive printed circuit board editor License: GPLv2 From jkeating at fedoraproject.org Sat Jul 25 23:21:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:21:54 +0000 (UTC) Subject: rpms/pciutils/devel pciutils.spec,1.72,1.73 Message-ID: <20090725232154.60F2011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pciutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2508 Modified Files: pciutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pciutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pciutils/devel/pciutils.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- pciutils.spec 29 Apr 2009 15:35:56 -0000 1.72 +++ pciutils.spec 25 Jul 2009 23:21:54 -0000 1.73 @@ -1,6 +1,6 @@ Name: pciutils Version: 3.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Source: ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz Patch1: pciutils-2.2.4-buf.patch Patch2: pciutils-2.1.10-scan.patch @@ -114,6 +114,9 @@ install -p lib/libpci.pc $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Michal Hlavinka - 3.1.2-5 - add support for ARM From jkeating at fedoraproject.org Sat Jul 25 23:22:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:22:11 +0000 (UTC) Subject: rpms/pcmanx-gtk2/devel pcmanx-gtk2.spec,1.13,1.14 Message-ID: <20090725232211.0AE4711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcmanx-gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2684 Modified Files: pcmanx-gtk2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcmanx-gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmanx-gtk2/devel/pcmanx-gtk2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pcmanx-gtk2.spec 21 Jul 2009 16:32:18 -0000 1.13 +++ pcmanx-gtk2.spec 25 Jul 2009 23:22:10 -0000 1.14 @@ -7,7 +7,7 @@ Summary: Telnet client designed for BBS browsing Name: pcmanx-gtk2 Version: 0.3.8 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://pcmanx.csie.net/release/%{name}-%{version}.tar.bz2 @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/mozilla/plugins/ %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Caol?n McNamara - 0.3.8-7 - Resolves: rhbz#511615 FTBFS From jkeating at fedoraproject.org Sat Jul 25 23:22:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:22:27 +0000 (UTC) Subject: rpms/pcmciautils/devel pcmciautils.spec,1.32,1.33 Message-ID: <20090725232227.1796011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcmciautils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2825 Modified Files: pcmciautils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcmciautils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcmciautils/devel/pcmciautils.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- pcmciautils.spec 12 Mar 2009 13:12:00 -0000 1.32 +++ pcmciautils.spec 25 Jul 2009 23:22:26 -0000 1.33 @@ -2,7 +2,7 @@ Name: pcmciautils Summary: PCMCIA utilities and initialization programs License: GPLv2 Version: 015 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Base ExclusiveArch: i386 i586 x86_64 ia64 ppc ppc64 %{?arm} URL: http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html @@ -54,6 +54,9 @@ mv $RPM_BUILD_ROOT/sbin/pcmcia-socket-st %{_mandir}/man*/pccardctl* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 015-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Harald Hoyer 015-2 - moved binaries for udev rules to /lib/udev From jkeating at fedoraproject.org Sat Jul 25 23:22:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:22:42 +0000 (UTC) Subject: rpms/pcre/devel pcre.spec,1.30,1.31 Message-ID: <20090725232242.98E5B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3001 Modified Files: pcre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcre.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcre/devel/pcre.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- pcre.spec 26 Feb 2009 10:13:07 -0000 1.30 +++ pcre.spec 25 Jul 2009 23:22:42 -0000 1.31 @@ -1,6 +1,6 @@ Name: pcre Version: 7.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl-compatible regular expression library URL: http://www.pcre.org/ Source: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2 @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 7.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 7.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:22:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:22:58 +0000 (UTC) Subject: rpms/pcsc-lite/devel pcsc-lite.spec,1.21,1.22 Message-ID: <20090725232258.3CC2611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcsc-lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3166 Modified Files: pcsc-lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcsc-lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcsc-lite/devel/pcsc-lite.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- pcsc-lite.spec 17 Jun 2009 17:39:03 -0000 1.21 +++ pcsc-lite.spec 25 Jul 2009 23:22:58 -0000 1.22 @@ -1,6 +1,6 @@ Name: pcsc-lite Version: 1.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PC/SC Lite smart card framework and applications %define upstream_build 2795 @@ -152,6 +152,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Bob Relyea - 1.5.2-2 - Pick up security fixes from upstream From jkeating at fedoraproject.org Sat Jul 25 23:23:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:23:13 +0000 (UTC) Subject: rpms/pcsc-perl/devel pcsc-perl.spec,1.18,1.19 Message-ID: <20090725232313.B874811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcsc-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3330 Modified Files: pcsc-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcsc-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcsc-perl/devel/pcsc-perl.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- pcsc-perl.spec 26 Feb 2009 10:15:05 -0000 1.18 +++ pcsc-perl.spec 25 Jul 2009 23:23:13 -0000 1.19 @@ -6,7 +6,7 @@ Name: pcsc-perl Version: 1.4.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the PC/SC smart card library Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:23:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:23:28 +0000 (UTC) Subject: rpms/pcsc-tools/devel pcsc-tools.spec,1.16,1.17 Message-ID: <20090725232328.F422111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pcsc-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3486 Modified Files: pcsc-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pcsc-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/pcsc-tools/devel/pcsc-tools.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pcsc-tools.spec 26 Feb 2009 10:16:02 -0000 1.16 +++ pcsc-tools.spec 25 Jul 2009 23:23:28 -0000 1.17 @@ -1,6 +1,6 @@ Name: pcsc-tools Version: 1.4.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools to be used with smart cards and PC/SC Group: Development/Tools @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:23:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:23:44 +0000 (UTC) Subject: rpms/pdf-renderer/devel pdf-renderer.spec,1.5,1.6 Message-ID: <20090725232344.A7AE611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdf-renderer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3691 Modified Files: pdf-renderer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdf-renderer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdf-renderer/devel/pdf-renderer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pdf-renderer.spec 11 Apr 2009 23:29:23 -0000 1.5 +++ pdf-renderer.spec 25 Jul 2009 23:23:44 -0000 1.6 @@ -6,7 +6,7 @@ Summary: A 100% Java PDF renderer and viewer Name: pdf-renderer Version: 0 -Release: 0.5%{?cvs_rel}%{?dist} +Release: 0.6%{?cvs_rel}%{?dist} License: LGPLv2+ URL: https://pdf-renderer.dev.java.net/ Group: Development/Libraries @@ -139,6 +139,9 @@ if [ -x %{_bindir}/rebuild-gcj-db ] # ----------------------------------------------------------------------------- %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0-0.6.20090405cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Orcan Ogetbil 0-0.5.20090405cvs - New cvs checkout - Raise minimum java requirement From jkeating at fedoraproject.org Sat Jul 25 23:24:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:24:00 +0000 (UTC) Subject: rpms/pdf2djvu/devel pdf2djvu.spec,1.4,1.5 Message-ID: <20090725232400.6BF8C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdf2djvu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3855 Modified Files: pdf2djvu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdf2djvu.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdf2djvu/devel/pdf2djvu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pdf2djvu.spec 29 Apr 2009 01:22:26 -0000 1.4 +++ pdf2djvu.spec 25 Jul 2009 23:24:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: pdf2djvu Version: 0.5.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PDF to DjVu converter Group: Applications/Publishing License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Milos Jakubicek - 0.5.0-3 - Fix FTBFS: added BR: djvulibre, fontconfig-devel. From jkeating at fedoraproject.org Sat Jul 25 23:24:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:24:17 +0000 (UTC) Subject: rpms/pdfbook/devel pdfbook.spec,1.2,1.3 Message-ID: <20090725232417.DB32911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfbook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4034 Modified Files: pdfbook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfbook.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfbook/devel/pdfbook.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdfbook.spec 26 Feb 2009 10:19:15 -0000 1.2 +++ pdfbook.spec 25 Jul 2009 23:24:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: pdfbook Version: 20070930 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Rearrange pages in a PDF file into signatures License: GPLv2 Group: Applications/Publishing @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20070930-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20070930-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:24:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:24:36 +0000 (UTC) Subject: rpms/pdfchain/devel pdfchain.spec,1.3,1.4 Message-ID: <20090725232436.759C111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfchain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4291 Modified Files: pdfchain.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfchain.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfchain/devel/pdfchain.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pdfchain.spec 16 Jul 2009 14:55:38 -0000 1.3 +++ pdfchain.spec 25 Jul 2009 23:24:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: pdfchain Version: 0.123 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A GUI for pdftk Group: Applications/Productivity License: GPLv3 @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/pdfchain.png %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.123-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 0.123-1 - Update to 0.123. From jkeating at fedoraproject.org Sat Jul 25 23:24:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:24:53 +0000 (UTC) Subject: rpms/pdfcube/devel pdfcube.spec,1.11,1.12 Message-ID: <20090725232453.5378A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfcube/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4491 Modified Files: pdfcube.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfcube.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfcube/devel/pdfcube.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pdfcube.spec 26 May 2009 21:03:48 -0000 1.11 +++ pdfcube.spec 25 Jul 2009 23:24:53 -0000 1.12 @@ -1,6 +1,6 @@ Name: pdfcube Version: 0.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PDF presentation viewer with a spinning cube Group: Applications/Productivity @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Jussi Lehtola - 0.0.3-4 - Fix build on x86_64 and ppc64. From jkeating at fedoraproject.org Sat Jul 25 23:25:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:25:09 +0000 (UTC) Subject: rpms/pdfedit/devel pdfedit.spec,1.15,1.16 Message-ID: <20090725232509.B363611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4681 Modified Files: pdfedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfedit/devel/pdfedit.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pdfedit.spec 22 Jul 2009 02:17:20 -0000 1.15 +++ pdfedit.spec 25 Jul 2009 23:25:09 -0000 1.16 @@ -1,6 +1,6 @@ Name: pdfedit Version: 0.4.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A complete pdf document editing solution Group: Applications/Publishing @@ -100,6 +100,9 @@ fi %{_docdir} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Bernard Johnson - 0.4.3-1 - 0.4.3 From jkeating at fedoraproject.org Sat Jul 25 23:25:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:25:43 +0000 (UTC) Subject: rpms/pdfmerge/devel pdfmerge.spec,1.2,1.3 Message-ID: <20090725232543.D75B811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfmerge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5069 Modified Files: pdfmerge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfmerge.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfmerge/devel/pdfmerge.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdfmerge.spec 26 Feb 2009 10:23:01 -0000 1.2 +++ pdfmerge.spec 25 Jul 2009 23:25:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: pdfmerge Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Command line utility program for merging PDF files Group: Applications/Publishing License: GPLv2+ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pdfmerge %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:26:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:26:01 +0000 (UTC) Subject: rpms/pdfposter/devel pdfposter.spec,1.3,1.4 Message-ID: <20090725232601.8B0A611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfposter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5285 Modified Files: pdfposter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfposter.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfposter/devel/pdfposter.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pdfposter.spec 9 Jul 2009 12:55:00 -0000 1.3 +++ pdfposter.spec 25 Jul 2009 23:26:01 -0000 1.4 @@ -2,7 +2,7 @@ Name: pdfposter Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scale and tile PDF images/pages to print on multiple pages Group: Applications/Engineering @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Fabian Affolter - 0.5.0-2 - Replaced 'define' with 'global' From jkeating at fedoraproject.org Sat Jul 25 23:26:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:26:22 +0000 (UTC) Subject: rpms/pdfresurrect/devel pdfresurrect.spec,1.3,1.4 Message-ID: <20090725232622.596E811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfresurrect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5505 Modified Files: pdfresurrect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfresurrect.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfresurrect/devel/pdfresurrect.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pdfresurrect.spec 1 Jun 2009 08:07:59 -0000 1.3 +++ pdfresurrect.spec 25 Jul 2009 23:26:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: pdfresurrect Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PDF Analysis and Scrubbing Utility Group: Applications/Productivity License: GPLv3+ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Peter Lemenkov 0.6-1 - Ver. 0.6 From jkeating at fedoraproject.org Sat Jul 25 23:26:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:26:37 +0000 (UTC) Subject: rpms/pdfshuffler/devel pdfshuffler.spec,1.6,1.7 Message-ID: <20090725232637.7068411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfshuffler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5701 Modified Files: pdfshuffler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfshuffler.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfshuffler/devel/pdfshuffler.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pdfshuffler.spec 22 Jul 2009 22:48:04 -0000 1.6 +++ pdfshuffler.spec 25 Jul 2009 23:26:37 -0000 1.7 @@ -2,7 +2,7 @@ Name: pdfshuffler Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PDF file merging, rearranging, and splitting Group: Applications/Publishing @@ -59,6 +59,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Fabian Affolter - 0.4.2-1 - Updated to new upstream version 0.4.2 From jkeating at fedoraproject.org Sat Jul 25 23:26:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:26:54 +0000 (UTC) Subject: rpms/pdftk/devel pdftk.spec,1.22,1.23 Message-ID: <20090725232654.4AA4011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdftk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5908 Modified Files: pdftk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdftk.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdftk/devel/pdftk.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- pdftk.spec 10 Jul 2009 02:27:30 -0000 1.22 +++ pdftk.spec 25 Jul 2009 23:26:53 -0000 1.23 @@ -3,7 +3,7 @@ Summary: The PDF Tool Kit Name: pdftk Version: 1.41 -Release: 21%{?dist} +Release: 22%{?dist} License: GPLv2+ URL: http://www.pdfhacks.com/pdftk/ # Remove java-lib/com because it's contains licensing issue @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.41-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Orcan Ogetbil 1.41-21 - Build against itext-2.1.7 From jkeating at fedoraproject.org Sat Jul 25 23:27:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:27:15 +0000 (UTC) Subject: rpms/pdns/devel pdns.spec,1.19,1.20 Message-ID: <20090725232715.1464811C0381@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6116 Modified Files: pdns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdns.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdns/devel/pdns.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pdns.spec 26 Feb 2009 16:37:43 -0000 1.19 +++ pdns.spec 25 Jul 2009 23:27:14 -0000 1.20 @@ -1,7 +1,7 @@ Summary: A modern, advanced and high performance authoritative-only nameserver Name: pdns Version: 2.9.22 -Release: 5%{?dist} +Release: 6%{?dist} Group: System Environment/Daemons License: GPLv2 @@ -181,6 +181,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.9.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Ruben Kerkhof - 2.9.22-5 - Fix build with gcc4.4 From jkeating at fedoraproject.org Sat Jul 25 23:27:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:27:35 +0000 (UTC) Subject: rpms/pdns-recursor/devel pdns-recursor.spec,1.11,1.12 Message-ID: <20090725232735.551C211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdns-recursor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6362 Modified Files: pdns-recursor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdns-recursor.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdns-recursor/devel/pdns-recursor.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pdns-recursor.spec 27 Feb 2009 15:44:06 -0000 1.11 +++ pdns-recursor.spec 25 Jul 2009 23:27:35 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Modern, advanced and high performance recursing/non authoritative nameserver Name: pdns-recursor Version: 3.1.7 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Daemons License: GPLv2 URL: http://powerdns.com @@ -80,6 +80,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.1.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ruben Kerkhof - 3.1.7-4 - Fix errors with newer Boost - Fix build with gcc4.4 From jkeating at fedoraproject.org Sat Jul 25 23:27:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:27:54 +0000 (UTC) Subject: rpms/pdsh/devel pdsh.spec,1.16,1.17 Message-ID: <20090725232755.006F711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6560 Modified Files: pdsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdsh/devel/pdsh.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pdsh.spec 8 Jun 2009 12:14:35 -0000 1.16 +++ pdsh.spec 25 Jul 2009 23:27:54 -0000 1.17 @@ -1,6 +1,6 @@ Name: pdsh Version: 2.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parallel remote shell program License: GPLv2+ Url: http://sourceforge.net/projects/pdsh/ @@ -408,6 +408,9 @@ fi %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Ruben Kerkhof 2.18-2 - Enable nodeupdown module From jkeating at fedoraproject.org Sat Jul 25 23:28:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:28:11 +0000 (UTC) Subject: rpms/pdumpfs/devel pdumpfs.spec,1.2,1.3 Message-ID: <20090725232811.18CD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdumpfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6749 Modified Files: pdumpfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdumpfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdumpfs/devel/pdumpfs.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pdumpfs.spec 26 Feb 2009 10:28:36 -0000 1.2 +++ pdumpfs.spec 25 Jul 2009 23:28:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: pdumpfs Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Daily backup system Group: Applications/Archiving License: GPLv2 @@ -46,6 +46,9 @@ day's snapshot for saving a disk space. %{_bindir}/pdumpfs %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:28:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:28:26 +0000 (UTC) Subject: rpms/pem/devel pem.spec,1.10,1.11 Message-ID: <20090725232826.0AA7811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6913 Modified Files: pem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pem/devel/pem.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pem.spec 13 Jul 2009 10:45:24 -0000 1.10 +++ pem.spec 25 Jul 2009 23:28:25 -0000 1.11 @@ -1,6 +1,6 @@ Name: pem Version: 0.7.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Personal Expenses Manager Group: Applications/Productivity @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 P J P - 0.7.7-1 - Fixed a minor bug and did few changes recommended by PBP. From jkeating at fedoraproject.org Sat Jul 25 23:28:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:28:39 +0000 (UTC) Subject: rpms/pen/devel pen.spec,1.2,1.3 Message-ID: <20090725232839.D80BD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7082 Modified Files: pen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pen.spec =================================================================== RCS file: /cvs/pkgs/rpms/pen/devel/pen.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pen.spec 26 Feb 2009 10:31:31 -0000 1.2 +++ pen.spec 25 Jul 2009 23:28:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: pen Version: 0.18.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Load balancer for "simple" tcp based protocols such as http or smtp Group: Applications/Internet @@ -57,6 +57,9 @@ done %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:28:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:28:54 +0000 (UTC) Subject: rpms/penguin-command/devel penguin-command.spec,1.5,1.6 Message-ID: <20090725232854.4A5D511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/penguin-command/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7244 Modified Files: penguin-command.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: penguin-command.spec =================================================================== RCS file: /cvs/pkgs/rpms/penguin-command/devel/penguin-command.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- penguin-command.spec 26 Feb 2009 10:32:27 -0000 1.5 +++ penguin-command.spec 25 Jul 2009 23:28:53 -0000 1.6 @@ -1,6 +1,6 @@ Name: penguin-command Version: 1.6.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Open source arcade game Group: Amusements/Games @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:29:11 +0000 (UTC) Subject: rpms/pengupop/devel pengupop.spec,1.9,1.10 Message-ID: <20090725232911.7A7B311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pengupop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7458 Modified Files: pengupop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pengupop.spec =================================================================== RCS file: /cvs/pkgs/rpms/pengupop/devel/pengupop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pengupop.spec 26 Feb 2009 10:33:21 -0000 1.9 +++ pengupop.spec 25 Jul 2009 23:29:11 -0000 1.10 @@ -1,6 +1,6 @@ Name: pengupop Version: 2.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Networked Game in the vein of Move/Puzzle Bobble Group: Amusements/Games @@ -67,6 +67,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:29:26 +0000 (UTC) Subject: rpms/peppy/devel peppy.spec,1.3,1.4 Message-ID: <20090725232926.3748B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/peppy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7672 Modified Files: peppy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: peppy.spec =================================================================== RCS file: /cvs/pkgs/rpms/peppy/devel/peppy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- peppy.spec 17 Jul 2009 20:38:32 -0000 1.3 +++ peppy.spec 25 Jul 2009 23:29:26 -0000 1.4 @@ -2,7 +2,7 @@ Name: peppy Version: 0.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Editor written in python Group: Applications/Editors @@ -82,6 +82,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Simon Wesp - 0.10.0-1 - New upstream release From jkeating at fedoraproject.org Sat Jul 25 23:30:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:30:12 +0000 (UTC) Subject: rpms/perl/devel perl.spec,1.224,1.225 Message-ID: <20090725233012.BAC9411C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8096 Modified Files: perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl/devel/perl.spec,v retrieving revision 1.224 retrieving revision 1.225 diff -u -p -r1.224 -r1.225 --- perl.spec 10 Jul 2009 18:38:10 -0000 1.224 +++ perl.spec 25 Jul 2009 23:30:12 -0000 1.225 @@ -7,7 +7,7 @@ Name: perl Version: %{perl_version} -Release: 74%{?dist} +Release: 75%{?dist} Epoch: %{perl_epoch} Summary: Practical Extraction and Report Language Group: Development/Languages @@ -1917,6 +1917,9 @@ TMPDIR="$PWD/tmp" make test # Old changelog entries are preserved in CVS. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4:5.10.0-75 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Stepan Kasal - 4:5.10.0-74 - fix generated .ph files so that they no longer cause warnings (#509676) - remove PREREQ_FATAL from Makefile.PL's processed by miniperl From jkeating at fedoraproject.org Sat Jul 25 23:30:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:30:30 +0000 (UTC) Subject: rpms/perl-Ace/devel perl-Ace.spec,1.5,1.6 Message-ID: <20090725233030.2DD5E11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Ace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8285 Modified Files: perl-Ace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Ace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Ace/devel/perl-Ace.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Ace.spec 26 Feb 2009 10:37:01 -0000 1.5 +++ perl-Ace.spec 25 Jul 2009 23:30:29 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Ace Version: 1.92 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module for interfacing with ACE bioinformatics databases License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.92-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.92-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:30:46 +0000 (UTC) Subject: rpms/perl-Acme-Damn/devel perl-Acme-Damn.spec,1.8,1.9 Message-ID: <20090725233046.0A22111C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Acme-Damn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8432 Modified Files: perl-Acme-Damn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Acme-Damn.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Acme-Damn/devel/perl-Acme-Damn.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Acme-Damn.spec 17 May 2009 05:41:21 -0000 1.8 +++ perl-Acme-Damn.spec 25 Jul 2009 23:30:45 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Acme-Damn Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unbless Perl objects License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 0.04-1 - auto-update to 0.04 (by cpan-spec-update 0.01) - added a new br on perl(Test::More) (version 0) From jkeating at fedoraproject.org Sat Jul 25 23:31:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:31:00 +0000 (UTC) Subject: rpms/perl-Acme-PlayCode/devel perl-Acme-PlayCode.spec,1.1,1.2 Message-ID: <20090725233100.38BB711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Acme-PlayCode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8604 Modified Files: perl-Acme-PlayCode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Acme-PlayCode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Acme-PlayCode/devel/perl-Acme-PlayCode.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Acme-PlayCode.spec 7 May 2009 07:12:33 -0000 1.1 +++ perl-Acme-PlayCode.spec 25 Jul 2009 23:30:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Acme-PlayCode Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Play code to win License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Marcela Ma?l??ov? 0.11-2 - add BR Test::Pod, move dos2unix into prep From jkeating at fedoraproject.org Sat Jul 25 23:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:31:16 +0000 (UTC) Subject: rpms/perl-Affix-Infix2Postfix/devel perl-Affix-Infix2Postfix.spec, 1.3, 1.4 Message-ID: <20090725233116.44FA711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Affix-Infix2Postfix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8820 Modified Files: perl-Affix-Infix2Postfix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Affix-Infix2Postfix.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Affix-Infix2Postfix/devel/perl-Affix-Infix2Postfix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Affix-Infix2Postfix.spec 26 Feb 2009 10:39:10 -0000 1.3 +++ perl-Affix-Infix2Postfix.spec 25 Jul 2009 23:31:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Affix-Infix2Postfix Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for converting from infix notation to postfix notation License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:31:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:31:33 +0000 (UTC) Subject: rpms/perl-Algorithm-Annotate/devel perl-Algorithm-Annotate.spec, 1.4, 1.5 Message-ID: <20090725233133.BD79A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-Annotate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8979 Modified Files: perl-Algorithm-Annotate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-Annotate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-Annotate/devel/perl-Algorithm-Annotate.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Algorithm-Annotate.spec 26 Feb 2009 10:40:02 -0000 1.4 +++ perl-Algorithm-Annotate.spec 25 Jul 2009 23:31:33 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Algorithm-Annotate Version: 0.10 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Represent a series of changes in annotate form License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:31:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:31:48 +0000 (UTC) Subject: rpms/perl-Algorithm-C3/devel perl-Algorithm-C3.spec,1.7,1.8 Message-ID: <20090725233148.EF52B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-C3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9163 Modified Files: perl-Algorithm-C3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-C3.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-C3/devel/perl-Algorithm-C3.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Algorithm-C3.spec 7 Jun 2009 08:32:19 -0000 1.7 +++ perl-Algorithm-C3.spec 25 Jul 2009 23:31:48 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Algorithm-C3 Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Module for merging hierarchies using the C3 algorithm License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 0.08-1 - auto-update to 0.08 (by cpan-spec-update 0.01) - altered br on perl(Test::More) (0 => 0.47) From jkeating at fedoraproject.org Sat Jul 25 23:32:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:32:06 +0000 (UTC) Subject: rpms/perl-Algorithm-CheckDigits/devel perl-Algorithm-CheckDigits.spec, 1.6, 1.7 Message-ID: <20090725233206.DD08411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-CheckDigits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9427 Modified Files: perl-Algorithm-CheckDigits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-CheckDigits.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-CheckDigits/devel/perl-Algorithm-CheckDigits.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Algorithm-CheckDigits.spec 26 Feb 2009 10:41:53 -0000 1.6 +++ perl-Algorithm-CheckDigits.spec 25 Jul 2009 23:32:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Algorithm-CheckDigits Version: 0.50 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension to generate and test check digits @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.50-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.50-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:32:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:32:23 +0000 (UTC) Subject: rpms/perl-Algorithm-CurveFit/devel perl-Algorithm-CurveFit.spec, 1.3, 1.4 Message-ID: <20090725233223.0560A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-CurveFit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9835 Modified Files: perl-Algorithm-CurveFit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-CurveFit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-CurveFit/devel/perl-Algorithm-CurveFit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Algorithm-CurveFit.spec 26 Feb 2009 10:42:51 -0000 1.3 +++ perl-Algorithm-CurveFit.spec 25 Jul 2009 23:32:22 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Algorithm-CurveFit Version: 1.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Nonlinear Least Squares Curve Fitting License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:32:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:32:41 +0000 (UTC) Subject: rpms/perl-Algorithm-Dependency/devel perl-Algorithm-Dependency.spec, 1.16, 1.17 Message-ID: <20090725233241.8F74111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-Dependency/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10357 Modified Files: perl-Algorithm-Dependency.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-Dependency.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-Dependency/devel/perl-Algorithm-Dependency.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Algorithm-Dependency.spec 18 Jun 2009 04:12:57 -0000 1.16 +++ perl-Algorithm-Dependency.spec 25 Jul 2009 23:32:41 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Algorithm-Dependency Version: 1.110 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Algorithmic framework for implementing dependency trees License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.110-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Ralf Cors?pius - 1.110-1 - Upstream update. From jkeating at fedoraproject.org Sat Jul 25 23:32:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:32:57 +0000 (UTC) Subject: rpms/perl-Algorithm-Diff/devel perl-Algorithm-Diff.spec,1.8,1.9 Message-ID: <20090725233257.4B37011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10607 Modified Files: perl-Algorithm-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-Diff/devel/perl-Algorithm-Diff.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Algorithm-Diff.spec 26 Feb 2009 10:44:46 -0000 1.8 +++ perl-Algorithm-Diff.spec 25 Jul 2009 23:32:57 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Algorithm-Diff Version: 1.1902 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Algorithm::Diff Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1902-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1902-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:33:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:33:13 +0000 (UTC) Subject: rpms/perl-Algorithm-FastPermute/devel perl-Algorithm-FastPermute.spec, 1.2, 1.3 Message-ID: <20090725233313.6964411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-FastPermute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10771 Modified Files: perl-Algorithm-FastPermute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-FastPermute.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-FastPermute/devel/perl-Algorithm-FastPermute.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Algorithm-FastPermute.spec 26 Feb 2009 10:45:39 -0000 1.2 +++ perl-Algorithm-FastPermute.spec 25 Jul 2009 23:33:13 -0000 1.3 @@ -2,7 +2,7 @@ Name: perl-%{short_name} Version: 0.999 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Rapid generation of permutations Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{perl_vendorarch}/Algorithm/perms.pl %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.999-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.999-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sat Jul 25 23:33:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:33:32 +0000 (UTC) Subject: rpms/perl-Algorithm-IncludeExclude/devel perl-Algorithm-IncludeExclude.spec, 1.1, 1.2 Message-ID: <20090725233332.D40D311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10975 Modified Files: perl-Algorithm-IncludeExclude.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-IncludeExclude.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-IncludeExclude/devel/perl-Algorithm-IncludeExclude.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Algorithm-IncludeExclude.spec 20 Jul 2009 07:37:15 -0000 1.1 +++ perl-Algorithm-IncludeExclude.spec 25 Jul 2009 23:33:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Algorithm-IncludeExclude Version: 0.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Build and evaluate include/exclude lists License: GPL+ or Artistic Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Iain Arnell 0.01-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sat Jul 25 23:33:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:33:46 +0000 (UTC) Subject: rpms/perl-Algorithm-Merge/devel perl-Algorithm-Merge.spec,1.1,1.2 Message-ID: <20090725233346.A5BB111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-Merge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11143 Modified Files: perl-Algorithm-Merge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Algorithm-Merge.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-Merge/devel/perl-Algorithm-Merge.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Algorithm-Merge.spec 1 Mar 2009 04:43:35 -0000 1.1 +++ perl-Algorithm-Merge.spec 25 Jul 2009 23:33:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Algorithm-Merge Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Three-way merge and diff License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Iain Arnell 0.08-1 - Specfile autogenerated by cpanspec 1.77. - remove unnecessary requires From kzak at fedoraproject.org Sat Jul 25 23:54:38 2009 From: kzak at fedoraproject.org (kzak) Date: Sat, 25 Jul 2009 23:54:38 +0000 (UTC) Subject: rpms/e2fsprogs/devel e2fsprogs.spec,1.146,1.147 Message-ID: <20090725235438.C408811C02BC@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/e2fsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19689 Modified Files: e2fsprogs.spec Log Message: * Sun Jul 26 2009 Karel Zak 1.41.8-5 - disable fsck (replaced by util-linux-ng) Index: e2fsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/e2fsprogs/devel/e2fsprogs.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- e2fsprogs.spec 25 Jul 2009 20:14:35 -0000 1.146 +++ e2fsprogs.spec 25 Jul 2009 23:54:38 -0000 1.147 @@ -4,7 +4,7 @@ Summary: Utilities for managing ext2, ext3, and ext4 filesystems Name: e2fsprogs Version: 1.41.8 -Release: 4%{?dist} +Release: 5%{?dist} # License tags based on COPYING file distinctions for various components License: GPLv2 Group: System Environment/Base @@ -138,7 +138,7 @@ It was originally inspired by the Multic %patch2 -p1 -b .featurecheck %build -%configure --enable-elf-shlibs --enable-nls --disable-uuidd \ +%configure --enable-elf-shlibs --enable-nls --disable-uuidd --disable-fsck \ --disable-e2initrd-helper --disable-libblkid --disable-libuuid make %{?_smp_mflags} V=1 @@ -195,7 +195,6 @@ exit 0 %{_root_sbindir}/e2image %{_root_sbindir}/e2label %{_root_sbindir}/e2undo -%{_root_sbindir}/fsck %{_root_sbindir}/fsck.ext2 %{_root_sbindir}/fsck.ext3 %{_root_sbindir}/fsck.ext4 @@ -231,7 +230,6 @@ exit 0 %{_mandir}/man8/e2image.8* %{_mandir}/man8/e2label.8* %{_mandir}/man8/e2undo.8* -%{_mandir}/man8/fsck.8* %{_mandir}/man8/logsave.8* %{_mandir}/man8/mke2fs.8* %{_mandir}/man8/mkfs.ext2.8* @@ -293,6 +291,9 @@ exit 0 %{_libdir}/pkgconfig/ss.pc %changelog +* Sun Jul 26 2009 Karel Zak 1.41.8-5 +- disable fsck (replaced by util-linux-ng) + * Sat Jul 25 2009 Karel Zak 1.41.8-4 - disable libuuid and uuidd (replaced by util-linux-ng) From jkeating at fedoraproject.org Sat Jul 25 23:25:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sat, 25 Jul 2009 23:25:28 +0000 (UTC) Subject: rpms/pdfjam/devel pdfjam.spec,1.9,1.10 Message-ID: <20090725232528.303F811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pdfjam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4882 Modified Files: pdfjam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pdfjam.spec =================================================================== RCS file: /cvs/pkgs/rpms/pdfjam/devel/pdfjam.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pdfjam.spec 12 Mar 2009 20:44:26 -0000 1.9 +++ pdfjam.spec 25 Jul 2009 23:25:28 -0000 1.10 @@ -1,6 +1,6 @@ Name: pdfjam Version: 1.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Utilities for join, rotate and align PDFs Group: Applications/Publishing @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Michel Salim - 1.21-1 - Update to 1.21, fixing security issues CVE-2008-5743, CVE-2008-5843 (bz #480174) From sailer at fedoraproject.org Sun Jul 26 00:14:32 2009 From: sailer at fedoraproject.org (sailer) Date: Sun, 26 Jul 2009 00:14:32 +0000 (UTC) Subject: rpms/ghdl/devel ghdl.spec,1.52,1.53 Message-ID: <20090726001432.186C111C02BC@cvs1.fedora.phx.redhat.com> Author: sailer Update of /cvs/extras/rpms/ghdl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28950 Modified Files: ghdl.spec Log Message: this gcc does not understand -mtune=atom Index: ghdl.spec =================================================================== RCS file: /cvs/extras/rpms/ghdl/devel/ghdl.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- ghdl.spec 25 Jul 2009 00:06:20 -0000 1.52 +++ ghdl.spec 26 Jul 2009 00:14:31 -0000 1.53 @@ -5,7 +5,7 @@ Summary: A VHDL simulator, using the GCC technology Name: ghdl Version: %{ghdlver} -Release: 0.%{ghdlsvnver}svn.7%{?dist}.1 +Release: 0.%{ghdlsvnver}svn.8%{?dist} License: GPLv2+ Group: Development/Languages URL: http://ghdl.free.fr/ @@ -150,7 +150,7 @@ OPT_FLAGS=$(echo %{optflags} | %{__sed} # These compiler flags in rawhide seem to break the build, so get rid of them OPT_FLAGS=$(echo $OPT_FLAGS | %{__sed} \ %ifarch i386 i486 i586 i686 - -e 's/-mtune=generic/-mtune=pentium4/g' \ + -e 's/-mtune=atom/-mtune=pentium4/g' \ %endif %ifarch x86_64 -e 's/-mtune=generic/-mtune=nocona/g' \ @@ -314,6 +314,9 @@ popd %changelog +* Sun Jul 26 2009 Thomas Sailer - 0.27-0.110svn.8 +- this gcc does not understand -mtune=atom + * Fri Jul 24 2009 Fedora Release Engineering - 0.27-0.110svn.7.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:35:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:35:40 +0000 (UTC) Subject: rpms/perl-Alien-SeleniumRC/devel perl-Alien-SeleniumRC.spec, 1.1, 1.2 Message-ID: <20090726013540.7439511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Alien-SeleniumRC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32374 Modified Files: perl-Alien-SeleniumRC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Alien-SeleniumRC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Alien-SeleniumRC/devel/perl-Alien-SeleniumRC.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Alien-SeleniumRC.spec 10 Jun 2009 22:24:59 -0000 1.1 +++ perl-Alien-SeleniumRC.spec 26 Jul 2009 01:35:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Alien-SeleniumRC Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Packages the Selenium Remote Control server License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Emmanuel Seyman 1.00-1 - Update to 1.00 From jkeating at fedoraproject.org Sun Jul 26 01:35:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:35:58 +0000 (UTC) Subject: rpms/perl-Alien-wxWidgets/devel perl-Alien-wxWidgets.spec, 1.20, 1.21 Message-ID: <20090726013558.76EE611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Alien-wxWidgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32579 Modified Files: perl-Alien-wxWidgets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Alien-wxWidgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Alien-wxWidgets/devel/perl-Alien-wxWidgets.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Alien-wxWidgets.spec 26 Feb 2009 10:47:34 -0000 1.20 +++ perl-Alien-wxWidgets.spec 26 Jul 2009 01:35:58 -0000 1.21 @@ -1,6 +1,6 @@ Name: perl-Alien-wxWidgets Version: 0.42 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Building, finding and using wxWidgets binaries Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.42-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:36:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:36:14 +0000 (UTC) Subject: rpms/perl-Any-Moose/devel perl-Any-Moose.spec,1.2,1.3 Message-ID: <20090726013614.F2E6311C04D1@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Any-Moose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32739 Modified Files: perl-Any-Moose.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Any-Moose.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Any-Moose/devel/perl-Any-Moose.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Any-Moose.spec 21 May 2009 05:09:12 -0000 1.2 +++ perl-Any-Moose.spec 26 Jul 2009 01:36:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Any-Moose Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Any/Moose.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.09-1 - auto-update to 0.09 (by cpan-spec-update 0.01) - altered br on perl(Mouse) (0.20 => 0.21) From jkeating at fedoraproject.org Sun Jul 26 01:36:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:36:40 +0000 (UTC) Subject: rpms/perl-AnyData/devel perl-AnyData.spec,1.7,1.8 Message-ID: <20090726013640.D88E211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AnyData/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv495 Modified Files: perl-AnyData.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AnyData.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyData/devel/perl-AnyData.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-AnyData.spec 26 Feb 2009 10:48:35 -0000 1.7 +++ perl-AnyData.spec 26 Jul 2009 01:36:40 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-AnyData Version: 0.10 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Easy access to data in many formats Group: Development/Libraries License: GPL+ or Artistic @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:36:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:36:59 +0000 (UTC) Subject: rpms/perl-AnyEvent/devel perl-AnyEvent.spec,1.15,1.16 Message-ID: <20090726013659.E72FC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AnyEvent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv720 Modified Files: perl-AnyEvent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AnyEvent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent/devel/perl-AnyEvent.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-AnyEvent.spec 15 Jul 2009 10:03:44 -0000 1.15 +++ perl-AnyEvent.spec 26 Jul 2009 01:36:59 -0000 1.16 @@ -2,7 +2,7 @@ Name: perl-AnyEvent Version: 4.820 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Framework for multiple event loops Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.820-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 15 2009 kwizart < kwizart at gmail.com > - 4.820-1 - Update to 4.82 (rpm version : 4.820 From jkeating at fedoraproject.org Sun Jul 26 01:37:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:37:20 +0000 (UTC) Subject: rpms/perl-AnyEvent-AIO/devel perl-AnyEvent-AIO.spec,1.2,1.3 Message-ID: <20090726013721.00DD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1023 Modified Files: perl-AnyEvent-AIO.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AnyEvent-AIO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-AIO/devel/perl-AnyEvent-AIO.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-AnyEvent-AIO.spec 26 Feb 2009 10:50:32 -0000 1.2 +++ perl-AnyEvent-AIO.spec 26 Jul 2009 01:37:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-AIO Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Truly asynchronous file and directrory I/O Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:37:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:37:36 +0000 (UTC) Subject: rpms/perl-AnyEvent-BDB/devel perl-AnyEvent-BDB.spec,1.2,1.3 Message-ID: <20090726013736.93E9111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1180 Modified Files: perl-AnyEvent-BDB.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AnyEvent-BDB.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-BDB/devel/perl-AnyEvent-BDB.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-AnyEvent-BDB.spec 26 Feb 2009 10:51:33 -0000 1.2 +++ perl-AnyEvent-BDB.spec 26 Jul 2009 01:37:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-BDB Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Truly asynchronous Berkeley DB access Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:37:50 +0000 (UTC) Subject: rpms/perl-AnyEvent-XMPP/devel perl-AnyEvent-XMPP.spec,1.1,1.2 Message-ID: <20090726013750.1781611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AnyEvent-XMPP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1539 Modified Files: perl-AnyEvent-XMPP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AnyEvent-XMPP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AnyEvent-XMPP/devel/perl-AnyEvent-XMPP.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-AnyEvent-XMPP.spec 28 Feb 2009 23:54:53 -0000 1.1 +++ perl-AnyEvent-XMPP.spec 26 Jul 2009 01:37:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-AnyEvent-XMPP Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Implementation of the XMPP Protocol License: GPL+ or Artistic Group: Development/Libraries @@ -103,5 +103,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Allisson Azevedo 0.4-1 - Initial rpm release. From jkeating at fedoraproject.org Sun Jul 26 01:38:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:38:06 +0000 (UTC) Subject: rpms/perl-Apache-DBI/devel perl-Apache-DBI.spec,1.7,1.8 Message-ID: <20090726013806.8FDD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2021 Modified Files: perl-Apache-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-DBI/devel/perl-Apache-DBI.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Apache-DBI.spec 26 Feb 2009 10:52:38 -0000 1.7 +++ perl-Apache-DBI.spec 26 Jul 2009 01:38:06 -0000 1.8 @@ -2,7 +2,7 @@ Name: perl-Apache-DBI Version: 1.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Persistent database connections with Apache/mod_perl Group: Development/Libraries @@ -69,6 +69,9 @@ make test %{perl_vendorlib}/Apache %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:38:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:38:20 +0000 (UTC) Subject: rpms/perl-Apache-DBI-Cache/devel perl-Apache-DBI-Cache.spec, 1.2, 1.3 Message-ID: <20090726013820.376E611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-DBI-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2251 Modified Files: perl-Apache-DBI-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-DBI-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-DBI-Cache/devel/perl-Apache-DBI-Cache.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Apache-DBI-Cache.spec 26 Feb 2009 10:53:44 -0000 1.2 +++ perl-Apache-DBI-Cache.spec 26 Jul 2009 01:38:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Apache-DBI-Cache Version: 0.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl DBI connection cache License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:38:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:38:34 +0000 (UTC) Subject: rpms/perl-Apache-Htpasswd/devel perl-Apache-Htpasswd.spec,1.2,1.3 Message-ID: <20090726013834.86FC611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-Htpasswd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2425 Modified Files: perl-Apache-Htpasswd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-Htpasswd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-Htpasswd/devel/perl-Apache-Htpasswd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Apache-Htpasswd.spec 13 Mar 2009 11:39:14 -0000 1.2 +++ perl-Apache-Htpasswd.spec 26 Jul 2009 01:38:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Apache-Htpasswd Version: 1.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manage Unix crypt-style password file Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Xavier Bachelot - 1.8-2 - Use %%{version} macro in Source0. - Spelling fix in Description. From jkeating at fedoraproject.org Sun Jul 26 01:38:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:38:49 +0000 (UTC) Subject: rpms/perl-Apache-LogRegex/devel perl-Apache-LogRegex.spec,1.8,1.9 Message-ID: <20090726013849.E946111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-LogRegex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2584 Modified Files: perl-Apache-LogRegex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-LogRegex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-LogRegex/devel/perl-Apache-LogRegex.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Apache-LogRegex.spec 26 Feb 2009 10:54:41 -0000 1.8 +++ perl-Apache-LogRegex.spec 26 Jul 2009 01:38:49 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Apache-LogRegex Version: 1.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse a line from an Apache logfile into a hash License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:39:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:39:05 +0000 (UTC) Subject: rpms/perl-Apache-Session/devel perl-Apache-Session.spec,1.14,1.15 Message-ID: <20090726013905.862BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-Session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2769 Modified Files: perl-Apache-Session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-Session.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-Session/devel/perl-Apache-Session.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Apache-Session.spec 4 Jun 2009 16:16:34 -0000 1.14 +++ perl-Apache-Session.spec 26 Jul 2009 01:39:05 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Apache-Session Version: 1.88 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Persistence framework for session data License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.88-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Steven Pritchard 1.88-1 - Update to 1.88. From jkeating at fedoraproject.org Sun Jul 26 01:39:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:39:21 +0000 (UTC) Subject: rpms/perl-Apache-Session-Wrapper/devel perl-Apache-Session-Wrapper.spec, 1.9, 1.10 Message-ID: <20090726013921.18C3A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache-Session-Wrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2925 Modified Files: perl-Apache-Session-Wrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache-Session-Wrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache-Session-Wrapper/devel/perl-Apache-Session-Wrapper.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Apache-Session-Wrapper.spec 26 Feb 2009 10:56:39 -0000 1.9 +++ perl-Apache-Session-Wrapper.spec 26 Jul 2009 01:39:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Apache-Session-Wrapper Version: 0.33 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple wrapper around Apache::Session Group: Development/Libraries License: GPL+ or Artistic @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.33-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.33-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:39:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:39:38 +0000 (UTC) Subject: rpms/perl-Apache2-SOAP/devel perl-Apache2-SOAP.spec,1.2,1.3 Message-ID: <20090726013938.4150C11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Apache2-SOAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3115 Modified Files: perl-Apache2-SOAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Apache2-SOAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Apache2-SOAP/devel/perl-Apache2-SOAP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Apache2-SOAP.spec 26 Feb 2009 10:57:41 -0000 1.2 +++ perl-Apache2-SOAP.spec 26 Jul 2009 01:39:38 -0000 1.3 @@ -2,7 +2,7 @@ Name: perl-Apache2-SOAP Version: 0.73 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A replacement for Apache::SOAP designed to work with mod_perl 2 Group: Development/Libraries @@ -66,6 +66,9 @@ APACHE_TEST_HTTPD=%{_sbindir}/httpd make %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.73-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.73-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:39:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:39:54 +0000 (UTC) Subject: rpms/perl-App-Asciio/devel perl-App-Asciio.spec,1.2,1.3 Message-ID: <20090726013954.8C7CD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-Asciio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3303 Modified Files: perl-App-Asciio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-Asciio.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Asciio/devel/perl-App-Asciio.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-App-Asciio.spec 26 Feb 2009 10:58:36 -0000 1.2 +++ perl-App-Asciio.spec 26 Jul 2009 01:39:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-App-Asciio Version: 1.02.71 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/App/Asciio.pm License: GPL+ or Artistic Group: Development/Libraries @@ -152,6 +152,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02.71-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02.71-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:40:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:40:12 +0000 (UTC) Subject: rpms/perl-App-CLI/devel perl-App-CLI.spec,1.4,1.5 Message-ID: <20090726014012.0B37011C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-CLI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3483 Modified Files: perl-App-CLI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-CLI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-CLI/devel/perl-App-CLI.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-App-CLI.spec 26 Feb 2009 10:59:30 -0000 1.4 +++ perl-App-CLI.spec 26 Jul 2009 01:40:11 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-App-CLI Version: 0.07 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Dispatcher module for command line interface programs License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:40:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:40:44 +0000 (UTC) Subject: rpms/perl-App-Cache/devel perl-App-Cache.spec,1.1,1.2 Message-ID: <20090726014044.C95BF11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3725 Modified Files: perl-App-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Cache/devel/perl-App-Cache.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-App-Cache.spec 7 Mar 2009 20:37:58 -0000 1.1 +++ perl-App-Cache.spec 26 Jul 2009 01:40:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-App-Cache Version: 0.35 -Release: 1%{?dist} +Release: 2%{?dist} # lib/App/Cache.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Chris Weyl 0.35-1 - submission From jkeating at fedoraproject.org Sun Jul 26 01:41:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:41:05 +0000 (UTC) Subject: rpms/perl-App-Cmd/devel perl-App-Cmd.spec,1.5,1.6 Message-ID: <20090726014105.68BA111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-Cmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3976 Modified Files: perl-App-Cmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-Cmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Cmd/devel/perl-App-Cmd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-App-Cmd.spec 26 Feb 2009 11:00:28 -0000 1.5 +++ perl-App-Cmd.spec 26 Jul 2009 01:41:05 -0000 1.6 @@ -1,7 +1,7 @@ Name: perl-App-Cmd Version: 0.203 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/App/Cmd.pm License: GPL+ or Artistic Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.203-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.203-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:41:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:41:20 +0000 (UTC) Subject: rpms/perl-App-Daemon/devel perl-App-Daemon.spec,1.1,1.2 Message-ID: <20090726014120.A069111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-Daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4138 Modified Files: perl-App-Daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-Daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Daemon/devel/perl-App-Daemon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-App-Daemon.spec 30 Apr 2009 07:11:18 -0000 1.1 +++ perl-App-Daemon.spec 26 Jul 2009 01:41:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-App-Daemon Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Start an Application as a Daemon License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Iain Arnell 0.06-1 - Specfile autogenerated by cpanspec 1.77. - remove explicit requires From jkeating at fedoraproject.org Sun Jul 26 01:41:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:41:44 +0000 (UTC) Subject: rpms/perl-App-Nopaste/devel perl-App-Nopaste.spec,1.6,1.7 Message-ID: <20090726014144.8DCE611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-App-Nopaste/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4362 Modified Files: perl-App-Nopaste.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-App-Nopaste.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Nopaste/devel/perl-App-Nopaste.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-App-Nopaste.spec 21 Jun 2009 07:26:51 -0000 1.6 +++ perl-App-Nopaste.spec 26 Jul 2009 01:41:44 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-App-Nopaste Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easy access to any pastebin License: GPL+ or Artistic Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Iain Arnell 0.11-2 - pretend that CPANPLUS is running From jkeating at fedoraproject.org Sun Jul 26 01:42:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:42:02 +0000 (UTC) Subject: rpms/perl-AppConfig/devel perl-AppConfig.spec,1.17,1.18 Message-ID: <20090726014202.589B711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AppConfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4628 Modified Files: perl-AppConfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AppConfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AppConfig/devel/perl-AppConfig.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-AppConfig.spec 26 Feb 2009 11:01:26 -0000 1.17 +++ perl-AppConfig.spec 26 Jul 2009 01:42:02 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-AppConfig Version: 1.66 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module for reading configuration files Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.66-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.66-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:42:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:42:18 +0000 (UTC) Subject: rpms/perl-AppConfig-Std/devel perl-AppConfig-Std.spec,1.3,1.4 Message-ID: <20090726014218.A781011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AppConfig-Std/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4799 Modified Files: perl-AppConfig-Std.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AppConfig-Std.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AppConfig-Std/devel/perl-AppConfig-Std.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-AppConfig-Std.spec 26 Feb 2009 11:02:25 -0000 1.3 +++ perl-AppConfig-Std.spec 26 Jul 2009 01:42:18 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-AppConfig-Std Version: 1.07 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/AppConfig/Std.pm License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:42:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:42:35 +0000 (UTC) Subject: rpms/perl-Archive-Any/devel perl-Archive-Any.spec,1.5,1.6 Message-ID: <20090726014235.BF8F211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Archive-Any/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4971 Modified Files: perl-Archive-Any.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Archive-Any.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-Any/devel/perl-Archive-Any.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Archive-Any.spec 7 Jun 2009 08:33:17 -0000 1.5 +++ perl-Archive-Any.spec 26 Jul 2009 01:42:35 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Archive-Any Version: 0.0932 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Single interface to deal with file archives License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0932-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 0.0932-1 - auto-update to 0.0932 (by cpan-spec-update 0.01) - altered br on perl(Test::More) (0 => 0.4) From jkeating at fedoraproject.org Sun Jul 26 01:42:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:42:49 +0000 (UTC) Subject: rpms/perl-Archive-RPM/devel perl-Archive-RPM.spec,1.1,1.2 Message-ID: <20090726014249.2070011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Archive-RPM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5139 Modified Files: perl-Archive-RPM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Archive-RPM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-RPM/devel/perl-Archive-RPM.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Archive-RPM.spec 2 May 2009 03:52:22 -0000 1.1 +++ perl-Archive-RPM.spec 26 Jul 2009 01:42:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Archive-RPM Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Archive/RPM.pm -> LGPLv2+ # lib/Archive/RPM/ChangeLogEntry.pm -> LGPLv2+ License: LGPLv2+ @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Chris Weyl 0.04-1 - update to 0.04 From jkeating at fedoraproject.org Sun Jul 26 01:43:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:43:05 +0000 (UTC) Subject: rpms/perl-Archive-Zip/devel perl-Archive-Zip.spec,1.15,1.16 Message-ID: <20090726014305.1423411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Archive-Zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5299 Modified Files: perl-Archive-Zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Archive-Zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-Zip/devel/perl-Archive-Zip.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Archive-Zip.spec 26 Feb 2009 11:04:16 -0000 1.15 +++ perl-Archive-Zip.spec 26 Jul 2009 01:43:04 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Archive-Zip Version: 1.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl library for accessing Zip archives Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:43:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:43:19 +0000 (UTC) Subject: rpms/perl-Array-Compare/devel perl-Array-Compare.spec,1.11,1.12 Message-ID: <20090726014319.17A0311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Array-Compare/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5431 Modified Files: perl-Array-Compare.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Array-Compare.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Array-Compare/devel/perl-Array-Compare.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Array-Compare.spec 27 Feb 2009 15:38:37 -0000 1.11 +++ perl-Array-Compare.spec 26 Jul 2009 01:43:18 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Array-Compare Version: 1.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for comparing arrays Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ralf Cors?pius - 1.17-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 01:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:43:39 +0000 (UTC) Subject: rpms/perl-Array-Diff/devel perl-Array-Diff.spec,1.4,1.5 Message-ID: <20090726014339.32BA111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Array-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5591 Modified Files: perl-Array-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Array-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Array-Diff/devel/perl-Array-Diff.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Array-Diff.spec 22 Jul 2009 19:01:55 -0000 1.4 +++ perl-Array-Diff.spec 26 Jul 2009 01:43:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Array-Diff Version: 0.05002 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Diff two arrays License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05002-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 0.05002-1 - Update to new 0.05002 release From jkeating at fedoraproject.org Sun Jul 26 01:44:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:44:00 +0000 (UTC) Subject: rpms/perl-Array-RefElem/devel perl-Array-RefElem.spec,1.3,1.4 Message-ID: <20090726014400.A518A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Array-RefElem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5814 Modified Files: perl-Array-RefElem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Array-RefElem.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Array-RefElem/devel/perl-Array-RefElem.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Array-RefElem.spec 26 Feb 2009 11:07:13 -0000 1.3 +++ perl-Array-RefElem.spec 26 Jul 2009 01:44:00 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Array-RefElem Version: 1.00 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Set up array elements as aliases License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:44:21 +0000 (UTC) Subject: rpms/perl-Astro-FITS-CFITSIO/devel perl-Astro-FITS-CFITSIO.spec, 1.5, 1.6 Message-ID: <20090726014421.05CA511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Astro-FITS-CFITSIO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6037 Modified Files: perl-Astro-FITS-CFITSIO.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Astro-FITS-CFITSIO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Astro-FITS-CFITSIO/devel/perl-Astro-FITS-CFITSIO.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Astro-FITS-CFITSIO.spec 26 Feb 2009 11:08:14 -0000 1.5 +++ perl-Astro-FITS-CFITSIO.spec 26 Jul 2009 01:44:20 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Astro-FITS-CFITSIO Version: 1.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl extension for using the cfitsio library License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:44:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:44:38 +0000 (UTC) Subject: rpms/perl-Authen-Captcha/devel perl-Authen-Captcha.spec,1.2,1.3 Message-ID: <20090726014438.8B9DE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-Captcha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6217 Modified Files: perl-Authen-Captcha.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-Captcha.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-Captcha/devel/perl-Authen-Captcha.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Authen-Captcha.spec 26 Feb 2009 11:09:09 -0000 1.2 +++ perl-Authen-Captcha.spec 26 Jul 2009 01:44:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Authen-Captcha Version: 1.023 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for creating captchas License: GPLv2 Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.023-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.023-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:44:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:44:55 +0000 (UTC) Subject: rpms/perl-Authen-DigestMD5/devel perl-Authen-DigestMD5.spec, 1.7, 1.8 Message-ID: <20090726014455.4E0F211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-DigestMD5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6418 Modified Files: perl-Authen-DigestMD5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-DigestMD5.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-DigestMD5/devel/perl-Authen-DigestMD5.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Authen-DigestMD5.spec 26 Feb 2009 11:10:02 -0000 1.7 +++ perl-Authen-DigestMD5.spec 26 Jul 2009 01:44:55 -0000 1.8 @@ -1,7 +1,7 @@ Summary: SASL DIGEST-MD5 authentication (RFC2831) Name: perl-Authen-DigestMD5 Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Authen-DigestMD5/ @@ -52,6 +52,9 @@ This module supports DIGEST-MD5 SASL aut %{_mandir}/man3/Authen::DigestMD5.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:45:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:45:09 +0000 (UTC) Subject: rpms/perl-Authen-Krb5/devel perl-Authen-Krb5.spec,1.5,1.6 Message-ID: <20090726014509.6FC2211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-Krb5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6582 Modified Files: perl-Authen-Krb5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-Krb5.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-Krb5/devel/perl-Authen-Krb5.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Authen-Krb5.spec 26 Feb 2009 11:11:06 -0000 1.5 +++ perl-Authen-Krb5.spec 26 Jul 2009 01:45:09 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Authen-Krb5 Version: 1.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Krb5 Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:45:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:45:25 +0000 (UTC) Subject: rpms/perl-Authen-Krb5-Admin/devel perl-Authen-Krb5-Admin.spec, 1.2, 1.3 Message-ID: <20090726014525.9F2BE11C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-Krb5-Admin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6724 Modified Files: perl-Authen-Krb5-Admin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-Krb5-Admin.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-Krb5-Admin/devel/perl-Authen-Krb5-Admin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Authen-Krb5-Admin.spec 8 Jun 2009 19:55:41 -0000 1.2 +++ perl-Authen-Krb5-Admin.spec 26 Jul 2009 01:45:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Authen-Krb5-Admin Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for MIT Kerberos 5 admin interface Group: Development/Libraries # admin.h - MIT @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Christian Krause - 0.11-3 - rebuild against new krb5-1.7 From jkeating at fedoraproject.org Sun Jul 26 01:45:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:45:46 +0000 (UTC) Subject: rpms/perl-Authen-PAM/devel perl-Authen-PAM.spec,1.6,1.7 Message-ID: <20090726014546.69D7311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-PAM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6906 Modified Files: perl-Authen-PAM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-PAM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-PAM/devel/perl-Authen-PAM.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Authen-PAM.spec 26 Feb 2009 11:12:02 -0000 1.6 +++ perl-Authen-PAM.spec 26 Jul 2009 01:45:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Authen-PAM Version: 0.16 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Authen::PAM Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:46:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:46:00 +0000 (UTC) Subject: rpms/perl-Authen-Radius/devel perl-Authen-Radius.spec,1.7,1.8 Message-ID: <20090726014600.CB60B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-Radius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7096 Modified Files: perl-Authen-Radius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-Radius.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-Radius/devel/perl-Authen-Radius.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Authen-Radius.spec 26 Feb 2009 11:12:59 -0000 1.7 +++ perl-Authen-Radius.spec 26 Jul 2009 01:46:00 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Authen-Radius Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl Authen::Radius modules # See LICENSING.txt License: Artistic 2.0 @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:46:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:46:17 +0000 (UTC) Subject: rpms/perl-Authen-SASL/devel perl-Authen-SASL.spec,1.11,1.12 Message-ID: <20090726014617.B9D3F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Authen-SASL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7270 Modified Files: perl-Authen-SASL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Authen-SASL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Authen-SASL/devel/perl-Authen-SASL.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Authen-SASL.spec 26 Feb 2009 11:13:52 -0000 1.11 +++ perl-Authen-SASL.spec 26 Jul 2009 01:46:17 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Authen-SASL Version: 2.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SASL Authentication framework for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:46:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:46:42 +0000 (UTC) Subject: rpms/perl-AutoClass/devel perl-AutoClass.spec,1.6,1.7 Message-ID: <20090726014642.66DE911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AutoClass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7455 Modified Files: perl-AutoClass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AutoClass.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AutoClass/devel/perl-AutoClass.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-AutoClass.spec 26 Feb 2009 11:14:53 -0000 1.6 +++ perl-AutoClass.spec 26 Jul 2009 01:46:42 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-AutoClass Version: 1_01 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Automatically define classes and objects for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1_01-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1_01-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 01:46:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:46:56 +0000 (UTC) Subject: rpms/perl-AutoXS-Header/devel perl-AutoXS-Header.spec,1.4,1.5 Message-ID: <20090726014656.21FF511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-AutoXS-Header/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7657 Modified Files: perl-AutoXS-Header.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-AutoXS-Header.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-AutoXS-Header/devel/perl-AutoXS-Header.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-AutoXS-Header.spec 19 Jun 2009 15:42:46 -0000 1.4 +++ perl-AutoXS-Header.spec 26 Jul 2009 01:46:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-AutoXS-Header Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Container for the AutoXS header files License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Stepan Kasal 1.02-1 - update From jkeating at fedoraproject.org Sun Jul 26 01:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:47:11 +0000 (UTC) Subject: rpms/perl-B-Hooks-EndOfScope/devel perl-B-Hooks-EndOfScope.spec, 1.4, 1.5 Message-ID: <20090726014711.4A18911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-B-Hooks-EndOfScope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7822 Modified Files: perl-B-Hooks-EndOfScope.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-B-Hooks-EndOfScope.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-B-Hooks-EndOfScope/devel/perl-B-Hooks-EndOfScope.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-B-Hooks-EndOfScope.spec 19 May 2009 02:08:49 -0000 1.4 +++ perl-B-Hooks-EndOfScope.spec 26 Jul 2009 01:47:11 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-B-Hooks-EndOfScope Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/B/Hooks/EndOfScope.pm License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 0.08-1 - auto-update to 0.08 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 01:47:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:47:32 +0000 (UTC) Subject: rpms/perl-B-Hooks-OP-Check/devel perl-B-Hooks-OP-Check.spec, 1.2, 1.3 Message-ID: <20090726014732.3788311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-B-Hooks-OP-Check/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8000 Modified Files: perl-B-Hooks-OP-Check.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-B-Hooks-OP-Check.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-B-Hooks-OP-Check/devel/perl-B-Hooks-OP-Check.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-B-Hooks-OP-Check.spec 17 May 2009 06:47:51 -0000 1.2 +++ perl-B-Hooks-OP-Check.spec 26 Jul 2009 01:47:31 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-B-Hooks-OP-Check Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} # lib/B/Hooks/OP/Check.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 0.17-1 - auto-update to 0.17 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 01:47:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:47:48 +0000 (UTC) Subject: rpms/perl-B-Hooks-OP-Check-StashChange/devel perl-B-Hooks-OP-Check-StashChange.spec, 1.1, 1.2 Message-ID: <20090726014748.A6B4E11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-B-Hooks-OP-Check-StashChange/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8221 Modified Files: perl-B-Hooks-OP-Check-StashChange.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-B-Hooks-OP-Check-StashChange.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-B-Hooks-OP-Check-StashChange/devel/perl-B-Hooks-OP-Check-StashChange.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-B-Hooks-OP-Check-StashChange.spec 24 Apr 2009 05:13:47 -0000 1.1 +++ perl-B-Hooks-OP-Check-StashChange.spec 26 Jul 2009 01:47:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-B-Hooks-OP-Check-StashChange Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Invoke callbacks when the stash code is being compiled in changes License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Chris Weyl 0.06-1 - update to 0.06 From jkeating at fedoraproject.org Sun Jul 26 01:48:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:48:06 +0000 (UTC) Subject: rpms/perl-B-Keywords/devel perl-B-Keywords.spec,1.12,1.13 Message-ID: <20090726014806.4764011C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-B-Keywords/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8402 Modified Files: perl-B-Keywords.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-B-Keywords.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-B-Keywords/devel/perl-B-Keywords.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-B-Keywords.spec 29 Mar 2009 01:32:34 -0000 1.12 +++ perl-B-Keywords.spec 26 Jul 2009 01:48:05 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-B-Keywords Version: 1.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lists of reserved barewords and symbol names Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Chris Weyl 1.09-2 - BR Test -> Test::More From jkeating at fedoraproject.org Sun Jul 26 01:48:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 01:48:21 +0000 (UTC) Subject: rpms/perl-B-Utils/devel perl-B-Utils.spec,1.3,1.4 Message-ID: <20090726014821.6A97711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-B-Utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8556 Modified Files: perl-B-Utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-B-Utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-B-Utils/devel/perl-B-Utils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-B-Utils.spec 26 Feb 2009 11:18:40 -0000 1.3 +++ perl-B-Utils.spec 26 Jul 2009 01:48:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-B-Utils Version: 0.07 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Helper functions for op tree manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kkofler at fedoraproject.org Sun Jul 26 02:25:44 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 02:25:44 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs-4.2.98-cve-2009-1687.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1698.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1725.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs.spec, 1.493, 1.494 Message-ID: <20090726022544.DB22B11C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24395/devel Modified Files: kdelibs.spec Added Files: kdelibs-4.2.98-cve-2009-1687.patch kdelibs-4.2.98-cve-2009-1698.patch kdelibs-4.2.98-cve-2009-1725.patch kdelibs-4.2.98-cve-2009-2537-select-length.patch Log Message: * Sun Jul 26 2009 Kevin Kofler - 4.2.98-3 - fix CVE-2009-2537 - select length DoS - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling kdelibs-4.2.98-cve-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-4.2.98-cve-2009-1687.patch --- diff -ur kdelibs-4.2.98/kjs/collector.cpp kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp --- kdelibs-4.2.98/kjs/collector.cpp 2009-04-30 20:02:44.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp 2009-07-26 03:52:44.000000000 +0200 @@ -31,6 +31,7 @@ #include "value.h" #include +#include #include #if PLATFORM(DARWIN) @@ -109,6 +110,9 @@ void append(CollectorBlock* block) { if (m_used == m_capacity) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (m_capacity > maxNumBlocks) + CRASH(); m_capacity = max(MIN_ARRAY_SIZE, m_capacity * GROWTH_FACTOR); m_data = static_cast(fastRealloc(m_data, m_capacity * sizeof(CollectorBlock *))); } kdelibs-4.2.98-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1698.patch --- diff -ur kdelibs-4.2.98/khtml/css/cssparser.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-4.2.98/khtml/css/cssparser.cpp 2009-07-21 17:16:12.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 04:19:38.000000000 +0200 @@ -1513,6 +1513,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1565,7 +1573,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-4.2.98/khtml/css/css_valueimpl.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-4.2.98/khtml/css/css_valueimpl.cpp 2009-05-14 19:27:35.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 04:17:28.000000000 +0200 @@ -1212,7 +1212,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; kdelibs-4.2.98-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002162) +++ khtml/html/htmltokenizer.cpp (revision 1002163) @@ -1038,7 +1038,7 @@ #ifdef TOKEN_DEBUG kDebug( 6036 ) << "unknown entity!"; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) kdelibs-4.2.98-cve-2009-2537-select-length.patch: kjs_html.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.98-cve-2009-2537-select-length.patch --- Index: khtml/ecma/kjs_html.cpp =================================================================== --- khtml/ecma/kjs_html.cpp (revision 1001151) +++ khtml/ecma/kjs_html.cpp (revision 1001152) @@ -69,6 +69,9 @@ #include #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + using namespace DOM; namespace KJS { @@ -2454,8 +2457,12 @@ case SelectValue: { select.setValue(str.implementation()); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable JSObject *coll = getSelectHTMLCollection(exec, select.options(), &select)->getObject(); + if ( coll ) - coll->put(exec,"length",value); + if (value->toInteger(exec) >= MAX_SELECT_LENGTH) + setDOMException(exec, DOMException::INDEX_SIZE_ERR); + else + coll->put(exec, "length", value); return; } // read-only: form Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.493 retrieving revision 1.494 diff -u -p -r1.493 -r1.494 --- kdelibs.spec 25 Jul 2009 16:58:35 -0000 1.493 +++ kdelibs.spec 26 Jul 2009 02:25:44 -0000 1.494 @@ -5,7 +5,7 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.98 -Release: 2%{?dist} +Release: 3%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -84,6 +84,15 @@ Patch20: kdelibs-4.1.70-cmake.patch # upstream # 4.3 branch +# fix CVE-2009-2537 - select length DoS +Patch100: kdelibs-4.2.98-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch101: kdelibs-4.2.98-cve-2009-1725.patch +### I will upstream these ones if the build completes successfully. -- kkofler +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) +Patch102: kdelibs-4.2.98-cve-2009-1687.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch103: kdelibs-4.2.98-cve-2009-1698.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -215,6 +224,10 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi # upstream patches # 4.3 +%patch100 -p0 -b .cve-2009-2537 +%patch101 -p0 -b .cve-2009-1725 +%patch102 -p0 -b .cve-2009-1687 +%patch103 -p0 -b .cve-2009-1698 %build @@ -397,6 +410,12 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Kevin Kofler - 4.2.98-3 +- fix CVE-2009-2537 - select length DoS +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling + * Fri Jul 24 2009 Luk?? Tinkl - 4.2.98-2 - respun tarball, to fix KIO HTTP redirects - fix phonon/strigi versions From kkofler at fedoraproject.org Sun Jul 26 02:27:07 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 02:27:07 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.494,1.495 Message-ID: <20090726022707.60A7311C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25070/devel Modified Files: kdelibs.spec Log Message: Use -p1 rather than -p0 for the patches which expect it. Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.494 retrieving revision 1.495 diff -u -p -r1.494 -r1.495 --- kdelibs.spec 26 Jul 2009 02:25:44 -0000 1.494 +++ kdelibs.spec 26 Jul 2009 02:27:07 -0000 1.495 @@ -226,8 +226,8 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi # 4.3 %patch100 -p0 -b .cve-2009-2537 %patch101 -p0 -b .cve-2009-1725 -%patch102 -p0 -b .cve-2009-1687 -%patch103 -p0 -b .cve-2009-1698 +%patch102 -p1 -b .cve-2009-1687 +%patch103 -p1 -b .cve-2009-1698 %build From itamarjp at fedoraproject.org Sun Jul 26 02:35:52 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sun, 26 Jul 2009 02:35:52 +0000 (UTC) Subject: rpms/python-Lightbox/devel import.log, NONE, 1.1 python-Lightbox.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726023552.5B78E11C02BC@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28823/devel Modified Files: .cvsignore sources Added Files: import.log python-Lightbox.spec Log Message: initial rpm version --- NEW FILE import.log --- python-Lightbox-2_1-2_fc12:HEAD:python-Lightbox-2.1-2.fc12.src.rpm:1248564885 --- NEW FILE python-Lightbox.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %global pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-Lightbox Version: 2.1 Release: 2%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries License: MIT URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: TurboGears python-devel Requires: TurboGears Requires: python-Scriptaculous %description Lightbox is a TurboGears widget wrapper for the Lightbox2 JavaScript library by Lokesh Dhakar. It displays a thumbnail image which, when clicked, opens an overlay popup window for viewing the linked image in full size. You can also browse through several Lightbox images that are grouped together %prep %setup -q -n Lightbox-%{version} rm -rf tests %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} #fix wrong permissions script-without-shebang rpmlint warning %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/javascript/lightbox.js %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/css/lightbox.css %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt PKG-INFO %{python_sitelib}/Lightbox-%{version}-py%{pyver}.egg-info %{python_sitelib}/lightbox/ %changelog * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages * Sat Jun 27 2009 Itamar Reis Peixoto - 2.1-1 - Initial RPM version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:02 -0000 1.1 +++ .cvsignore 26 Jul 2009 02:35:51 -0000 1.2 @@ -0,0 +1 @@ +Lightbox-2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:02 -0000 1.1 +++ sources 26 Jul 2009 02:35:51 -0000 1.2 @@ -0,0 +1 @@ +23068b8660a910c79f8b3f3bd4041aff Lightbox-2.1.tar.bz2 From itamarjp at fedoraproject.org Sun Jul 26 02:39:23 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sun, 26 Jul 2009 02:39:23 +0000 (UTC) Subject: rpms/python-Lightbox/F-11 import.log, NONE, 1.1 python-Lightbox.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726023923.CABA911C048A@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30441/F-11 Modified Files: .cvsignore sources Added Files: import.log python-Lightbox.spec Log Message: initial rpm version --- NEW FILE import.log --- python-Lightbox-2_1-2_fc12:F-11:python-Lightbox-2.1-2.fc12.src.rpm:1248564997 --- NEW FILE python-Lightbox.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %global pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-Lightbox Version: 2.1 Release: 2%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries License: MIT URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: TurboGears python-devel Requires: TurboGears Requires: python-Scriptaculous %description Lightbox is a TurboGears widget wrapper for the Lightbox2 JavaScript library by Lokesh Dhakar. It displays a thumbnail image which, when clicked, opens an overlay popup window for viewing the linked image in full size. You can also browse through several Lightbox images that are grouped together %prep %setup -q -n Lightbox-%{version} rm -rf tests %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} #fix wrong permissions script-without-shebang rpmlint warning %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/javascript/lightbox.js %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/css/lightbox.css %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt PKG-INFO %{python_sitelib}/Lightbox-%{version}-py%{pyver}.egg-info %{python_sitelib}/lightbox/ %changelog * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages * Sat Jun 27 2009 Itamar Reis Peixoto - 2.1-1 - Initial RPM version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:02 -0000 1.1 +++ .cvsignore 26 Jul 2009 02:39:23 -0000 1.2 @@ -0,0 +1 @@ +Lightbox-2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:02 -0000 1.1 +++ sources 26 Jul 2009 02:39:23 -0000 1.2 @@ -0,0 +1 @@ +23068b8660a910c79f8b3f3bd4041aff Lightbox-2.1.tar.bz2 From itamarjp at fedoraproject.org Sun Jul 26 02:48:57 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sun, 26 Jul 2009 02:48:57 +0000 (UTC) Subject: rpms/python-Lightbox/F-10 import.log, NONE, 1.1 python-Lightbox.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726024857.A1F6C11C02BC@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2720/F-10 Modified Files: .cvsignore sources Added Files: import.log python-Lightbox.spec Log Message: initial rpm version --- NEW FILE import.log --- python-Lightbox-2_1-2_fc12:F-10:python-Lightbox-2.1-2.fc12.src.rpm:1248565496 --- NEW FILE python-Lightbox.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %global pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-Lightbox Version: 2.1 Release: 2%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries License: MIT URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: TurboGears python-devel Requires: TurboGears Requires: python-Scriptaculous %description Lightbox is a TurboGears widget wrapper for the Lightbox2 JavaScript library by Lokesh Dhakar. It displays a thumbnail image which, when clicked, opens an overlay popup window for viewing the linked image in full size. You can also browse through several Lightbox images that are grouped together %prep %setup -q -n Lightbox-%{version} rm -rf tests %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} #fix wrong permissions script-without-shebang rpmlint warning %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/javascript/lightbox.js %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/css/lightbox.css %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt PKG-INFO %{python_sitelib}/Lightbox-%{version}-py%{pyver}.egg-info %{python_sitelib}/lightbox/ %changelog * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages * Sat Jun 27 2009 Itamar Reis Peixoto - 2.1-1 - Initial RPM version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:02 -0000 1.1 +++ .cvsignore 26 Jul 2009 02:48:57 -0000 1.2 @@ -0,0 +1 @@ +Lightbox-2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:02 -0000 1.1 +++ sources 26 Jul 2009 02:48:57 -0000 1.2 @@ -0,0 +1 @@ +23068b8660a910c79f8b3f3bd4041aff Lightbox-2.1.tar.bz2 From itamarjp at fedoraproject.org Sun Jul 26 02:50:27 2009 From: itamarjp at fedoraproject.org (Itamar Reis Peixoto) Date: Sun, 26 Jul 2009 02:50:27 +0000 (UTC) Subject: rpms/python-Lightbox/EL-5 import.log, NONE, 1.1 python-Lightbox.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726025027.9E9C711C049E@cvs1.fedora.phx.redhat.com> Author: itamarjp Update of /cvs/pkgs/rpms/python-Lightbox/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3555/EL-5 Modified Files: .cvsignore sources Added Files: import.log python-Lightbox.spec Log Message: initial rpm version --- NEW FILE import.log --- python-Lightbox-2_1-2_fc12:EL-5:python-Lightbox-2.1-2.fc12.src.rpm:1248565782 --- NEW FILE python-Lightbox.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %{!?pyver: %global pyver %(%{__python} -c "import sys ; print sys.version[:3]")} Name: python-Lightbox Version: 2.1 Release: 2%{?dist} Summary: Lightbox photo display widget Group: Development/Libraries License: MIT URL: http://pypi.python.org/pypi/Lightbox/2.1 Source0: http://pypi.python.org/packages/source/L/Lightbox/Lightbox-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: TurboGears python-devel Requires: TurboGears Requires: python-Scriptaculous %description Lightbox is a TurboGears widget wrapper for the Lightbox2 JavaScript library by Lokesh Dhakar. It displays a thumbnail image which, when clicked, opens an overlay popup window for viewing the linked image in full size. You can also browse through several Lightbox images that are grouped together %prep %setup -q -n Lightbox-%{version} rm -rf tests %build %{__python} setup.py build %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} #fix wrong permissions script-without-shebang rpmlint warning %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/javascript/lightbox.js %{__chmod} 0644 %{buildroot}%{python_sitelib}/lightbox/static/css/lightbox.css %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README.txt PKG-INFO %{python_sitelib}/Lightbox-%{version}-py%{pyver}.egg-info %{python_sitelib}/lightbox/ %changelog * Fri Jul 17 2009 Itamar Reis Peixoto - 2.1-2 - fix BZ #508511 Comment #1 From jussi.lehtola at iki.fi - dir listed twice - fix BZ #508511 Comment #5 From panemade at gmail.com - rpmlint messages * Sat Jun 27 2009 Itamar Reis Peixoto - 2.1-1 - Initial RPM version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:39:02 -0000 1.1 +++ .cvsignore 26 Jul 2009 02:50:27 -0000 1.2 @@ -0,0 +1 @@ +Lightbox-2.1.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-Lightbox/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:39:02 -0000 1.1 +++ sources 26 Jul 2009 02:50:27 -0000 1.2 @@ -0,0 +1 @@ +23068b8660a910c79f8b3f3bd4041aff Lightbox-2.1.tar.bz2 From kkofler at fedoraproject.org Sun Jul 26 02:59:13 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 02:59:13 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.495,1.496 Message-ID: <20090726025913.2A9F511C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7697/devel Modified Files: kdelibs.spec Log Message: - fix minimum strigi version (0.7, not 0.7.0, RPM thinks 0.7 < 0.7.0) Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.495 retrieving revision 1.496 diff -u -p -r1.495 -r1.496 --- kdelibs.spec 26 Jul 2009 02:27:07 -0000 1.495 +++ kdelibs.spec 26 Jul 2009 02:59:12 -0000 1.496 @@ -1,7 +1,7 @@ %define phonon_ver 4.3.1 %define soprano_ver 2.3.0 -%define strigi_ver 0.7.0 +%define strigi_ver 0.7 Summary: K Desktop Environment 4 - Libraries Version: 4.2.98 @@ -415,6 +415,7 @@ rm -rf %{buildroot} - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +- fix minimum strigi version (0.7, not 0.7.0, RPM thinks 0.7 < 0.7.0) * Fri Jul 24 2009 Luk?? Tinkl - 4.2.98-2 - respun tarball, to fix KIO HTTP redirects From kkofler at fedoraproject.org Sun Jul 26 03:09:17 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 03:09:17 +0000 (UTC) Subject: rpms/kdelibs3/devel kdelibs-3.5.10-cve-2009-1725.patch, NONE, 1.1 kdelibs-3.5.10-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1687.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1690.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1698.patch, NONE, 1.1 kdelibs3.spec, 1.63, 1.64 Message-ID: <20090726030918.05D8411C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11938/devel Modified Files: kdelibs3.spec Added Files: kdelibs-3.5.10-cve-2009-1725.patch kdelibs-3.5.10-cve-2009-2537-select-length.patch kdelibs-3.5.4-CVE-2009-1687.patch kdelibs-3.5.4-CVE-2009-1690.patch kdelibs-3.5.4-CVE-2009-1698.patch Log Message: * Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 - fix CVE-2009-2537 - select length DoS - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) - fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling kdelibs-3.5.10-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002163) +++ khtml/html/htmltokenizer.cpp (revision 1002164) @@ -736,7 +736,7 @@ #ifdef TOKEN_DEBUG kdDebug( 6036 ) << "unknown entity!" << endl; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) kdelibs-3.5.10-cve-2009-2537-select-length.patch: kjs_html.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-2537-select-length.patch --- diff -ur kdelibs-3.5.10/khtml/ecma/kjs_html.cpp kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp --- kdelibs-3.5.10/khtml/ecma/kjs_html.cpp 2008-02-13 10:41:09.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp 2009-07-26 04:54:52.000000000 +0200 @@ -62,6 +62,9 @@ #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + namespace KJS { KJS_DEFINE_PROTOTYPE_WITH_PROTOTYPE(HTMLDocumentProto, DOMDocumentProto) @@ -2550,8 +2553,14 @@ case SelectValue: { select.setValue(str); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable Object coll = Object::dynamicCast( getSelectHTMLCollection(exec, select.options(), select) ); - if ( coll.isValid() ) - coll.put(exec,"length",value); + + if ( coll.isValid() ) { + if (value.toInteger(exec) >= MAX_SELECT_LENGTH) { + Object err = Error::create(exec, RangeError); + exec->setException(err); + } else + coll.put(exec, "length", value); + } return; } // read-only: form kdelibs-3.5.4-CVE-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-3.5.4-CVE-2009-1687.patch --- --- kdelibs-3.5.4/kjs/collector.cpp.CVE-2009-1687 2009-06-17 15:07:33.000000000 +0200 +++ kdelibs-3.5.4/kjs/collector.cpp 2009-06-20 00:42:48.000000000 +0200 @@ -23,6 +23,7 @@ #include "value.h" #include "internal.h" +#include #ifndef MAX #define MAX(a,b) ((a) > (b) ? (a) : (b)) @@ -119,6 +120,9 @@ // didn't find one, need to allocate a new block if (heap.usedBlocks == heap.numBlocks) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (heap.numBlocks > maxNumBlocks) + return 0L; heap.numBlocks = MAX(MIN_ARRAY_SIZE, heap.numBlocks * GROWTH_FACTOR); heap.blocks = (CollectorBlock **)realloc(heap.blocks, heap.numBlocks * sizeof(CollectorBlock *)); } kdelibs-3.5.4-CVE-2009-1690.patch: AlwaysInline.h | 49 ++++++++++++ Platform.h | 218 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RefPtr.h | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++ htmlparser.cpp | 10 +- htmlparser.h | 4 - 5 files changed, 475 insertions(+), 8 deletions(-) --- NEW FILE kdelibs-3.5.4-CVE-2009-1690.patch --- --- kdelibs-3.5.4/khtml/html/RefPtr.h.CVE-2009-1690 2009-06-17 14:19:00.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/RefPtr.h 2009-06-17 14:19:00.000000000 +0200 @@ -0,0 +1,202 @@ +// -*- mode: c++; c-basic-offset: 4 -*- +/* + * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef WTF_RefPtr_h +#define WTF_RefPtr_h + +#include +#include "AlwaysInline.h" + +namespace WTF { + + enum PlacementNewAdoptType { PlacementNewAdopt }; + + template class PassRefPtr; + + enum HashTableDeletedValueType { HashTableDeletedValue }; + + template class RefPtr { + public: + RefPtr() : m_ptr(0) { } + RefPtr(T* ptr) : m_ptr(ptr) { if (ptr) ptr->ref(); } + RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->ref(); } + // see comment in PassRefPtr.h for why this takes const reference + template RefPtr(const PassRefPtr&); + + // Special constructor for cases where we overwrite an object in place. + RefPtr(PlacementNewAdoptType) { } + + // Hash table deleted values, which are only constructed and never copied or destroyed. + RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } + bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } + + ~RefPtr() { if (T* ptr = m_ptr) ptr->deref(); } + + template RefPtr(const RefPtr& o) : m_ptr(o.get()) { if (T* ptr = m_ptr) ptr->ref(); } + + T* get() const { return m_ptr; } + + void clear() { if (T* ptr = m_ptr) ptr->deref(); m_ptr = 0; } + PassRefPtr release() { PassRefPtr tmp = adoptRef(m_ptr); m_ptr = 0; return tmp; } + + T& operator*() const { return *m_ptr; } + ALWAYS_INLINE T* operator->() const { return m_ptr; } + + bool operator!() const { return !m_ptr; } + + // This conversion operator allows implicit conversion to bool but not to other integer types. + typedef T* RefPtr::*UnspecifiedBoolType; + operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } + + RefPtr& operator=(const RefPtr&); + RefPtr& operator=(T*); + RefPtr& operator=(const PassRefPtr&); + template RefPtr& operator=(const RefPtr&); + template RefPtr& operator=(const PassRefPtr&); + + void swap(RefPtr&); + + private: + static T* hashTableDeletedValue() { return reinterpret_cast(-1); } + + T* m_ptr; + }; + + template template inline RefPtr::RefPtr(const PassRefPtr& o) + : m_ptr(o.releaseRef()) + { + } + + template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(T* optr) + { + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template inline void RefPtr::swap(RefPtr& o) + { + std::swap(m_ptr, o.m_ptr); + } + + template inline void swap(RefPtr& a, RefPtr& b) + { + a.swap(b); + } + + template inline bool operator==(const RefPtr& a, const RefPtr& b) + { + return a.get() == b.get(); + } + + template inline bool operator==(const RefPtr& a, U* b) + { + return a.get() == b; + } + + template inline bool operator==(T* a, const RefPtr& b) + { + return a == b.get(); + } + + template inline bool operator!=(const RefPtr& a, const RefPtr& b) + { + return a.get() != b.get(); + } + + template inline bool operator!=(const RefPtr& a, U* b) + { + return a.get() != b; + } + + template inline bool operator!=(T* a, const RefPtr& b) + { + return a != b.get(); + } + + template inline RefPtr static_pointer_cast(const RefPtr& p) + { + return RefPtr(static_cast(p.get())); + } + + template inline RefPtr const_pointer_cast(const RefPtr& p) + { + return RefPtr(const_cast(p.get())); + } + + template inline T* getPtr(const RefPtr& p) + { + return p.get(); + } + +} // namespace WTF + +using WTF::RefPtr; +using WTF::static_pointer_cast; +using WTF::const_pointer_cast; + +#endif // WTF_RefPtr_h --- kdelibs-3.5.4/khtml/html/htmlparser.cpp.CVE-2009-1690 2006-07-22 10:16:43.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.cpp 2009-06-17 11:51:15.000000000 +0200 @@ -199,7 +199,6 @@ form = 0; map = 0; - head = 0; end = false; isindex = 0; @@ -616,8 +615,7 @@ case ID_BASE: if(!head) { head = new HTMLHeadElementImpl(document); - e = head; - insertNode(e); + insertNode(head.get()); handled = true; } break; @@ -839,7 +837,7 @@ case ID_HEAD: if(!head && current->id() == ID_HTML) { head = new HTMLHeadElementImpl(document); - n = head; + n = head.get(); } break; case ID_BODY: @@ -1679,12 +1677,12 @@ head = new HTMLHeadElementImpl(document); HTMLElementImpl *body = doc()->body(); int exceptioncode = 0; - doc()->firstChild()->insertBefore(head, body, exceptioncode); + doc()->firstChild()->insertBefore(head.get(), body, exceptioncode); if ( exceptioncode ) { #ifdef PARSER_DEBUG kdDebug( 6035 ) << "creation of head failed!!!!" << endl; #endif - delete head; + delete head.get(); head = 0; } } --- kdelibs-3.5.4/khtml/html/Platform.h.CVE-2009-1690 2009-06-17 14:19:07.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/Platform.h 2009-06-17 14:19:07.000000000 +0200 @@ -0,0 +1,218 @@ +/* -*- mode: c++; c-basic-offset: 4 -*- */ +/* + * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef WTF_Platform_h +#define WTF_Platform_h + +/* Force KDE build here in our tree... */ +#ifndef BUILDING_KDE__ +#define BUILDING_KDE__ 1 +#endif + +/* PLATFORM handles OS, operating environment, graphics API, and CPU */ +#define PLATFORM(WTF_FEATURE) (defined( WTF_PLATFORM_##WTF_FEATURE ) && WTF_PLATFORM_##WTF_FEATURE) +#define COMPILER(WTF_FEATURE) (defined( WTF_COMPILER_##WTF_FEATURE ) && WTF_COMPILER_##WTF_FEATURE) +#define HAVE(WTF_FEATURE) (defined( HAVE_##WTF_FEATURE ) && HAVE_##WTF_FEATURE) +#define USE(WTF_FEATURE) (defined( WTF_USE_##WTF_FEATURE ) && WTF_USE_##WTF_FEATURE) +#define ENABLE(WTF_FEATURE) (defined( ENABLE_##WTF_FEATURE ) && ENABLE_##WTF_FEATURE) + +/* Operating systems - low-level dependencies */ + +/* PLATFORM(DARWIN) */ +/* Operating system level dependencies for Mac OS X / Darwin that should */ +/* be used regardless of operating environment */ +#ifdef __APPLE__ +#define WTF_PLATFORM_DARWIN 1 +#endif + +/* PLATFORM(WIN_OS) */ +/* Operating system level dependencies for Windows that should be used */ +/* regardless of operating environment */ +#if defined(WIN32) || defined(_WIN32) +#define WTF_PLATFORM_WIN_OS 1 +#endif + +/* PLATFORM(UNIX) */ +/* Operating system level dependencies for Unix-like systems that */ +/* should be used regardless of operating environment */ +/* (includes PLATFORM(DARWIN)) */ +#if defined(__APPLE__) \ + || defined(unix) \ + || defined(__unix) \ + || defined(__unix__) \ + || defined (__NetBSD__) \ + || defined(_AIX) +#define WTF_PLATFORM_UNIX 1 +#endif + +/* PLATFORM(SOLARIS_OS) */ +/* Operating system level dependencies for Sun (Open)Solaris 10. */ +/* Studio 12 on Solaris defines __SunOS; gcc defines __sun__; */ +/* Both compilers define __sun and sun. */ +#if defined(__sun) || defined(sun) +#define WTF_PLATFORM_SOLARIS_OS 1 +#endif + +/* Operating environments */ + +/* I made the BUILDING_KDE__ macro up for the KDE build system to define */ + +/* PLATFORM(KDE) */ +/* PLATFORM(MAC) */ +/* PLATFORM(WIN) */ +#if BUILDING_KDE__ +#define WTF_PLATFORM_KDE 1 +#elif PLATFORM(DARWIN) +#define WTF_PLATFORM_MAC 1 +#elif PLATFORM(WIN_OS) +#define WTF_PLATFORM_WIN 1 +#endif +#if defined(BUILDING_GDK__) +#define WTF_PLATFORM_GDK 1 +#endif + + +/* CPU */ + +/* PLATFORM(PPC) */ +#if defined(__ppc__) \ + || defined(__PPC__) \ + || defined(__powerpc__) \ + || defined(__powerpc) \ + || defined(__POWERPC__) \ + || defined(_M_PPC) \ + || defined(__PPC) +#define WTF_PLATFORM_PPC 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +/* PLATFORM(PPC64) */ +#if defined(__ppc64__) \ + || defined(__PPC64__) +#define WTF_PLATFORM_PPC64 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +#if defined(arm) +#define WTF_PLATFORM_ARM 1 +#if defined(__ARMEB__) +#define WTF_PLATFORM_BIG_ENDIAN 1 +#elif !defined(__ARM_EABI__) && !defined(__ARMEB__) +#define WTF_PLATFORM_MIDDLE_ENDIAN 1 +#endif +#if !defined(__ARM_EABI__) +#define WTF_PLATFORM_FORCE_PACK 1 +#endif +#endif + +/* PLATFORM(X86) */ +#if defined(__i386__) \ + || defined(i386) \ + || defined(_M_IX86) \ + || defined(_X86_) \ + || defined(__THW_INTEL) +#define WTF_PLATFORM_X86 1 +#endif + +/* PLATFORM(X86_64) */ +#if defined(__x86_64__) \ + || defined(__ia64__) +#define WTF_PLATFORM_X86_64 1 +#endif + +/* PLATFORM(SPARC) */ +#if defined(sparc) +#define WTF_PLATFORM_SPARC 1 +#endif + +/* Compiler */ + +/* COMPILER(CWP) */ +#if defined(__MWERKS__) +#define WTF_COMPILER_CWP 1 +#endif + +/* COMPILER(MSVC) */ +#if defined(_MSC_VER) +#define WTF_COMPILER_MSVC 1 +#endif + +/* COMPILER(GCC) */ +#if defined(__GNUC__) +#define WTF_COMPILER_GCC 1 +#endif + +/* COMPILER(SUNPRO) */ +#if defined(__SUNPRO_CC) +#define WTF_COMPILER_SUNPRO 1 +#endif + +/* COMPILER(BORLAND) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__BORLANDC__) +#define WTF_COMPILER_BORLAND 1 +#endif + +/* COMPILER(CYGWIN) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__CYGWIN__) +#define WTF_COMPILER_CYGWIN 1 +#endif + +/* multiple threads only supported on Mac for now */ +#if PLATFORM(MAC) +#ifndef WTF_USE_MULTIPLE_THREADS +#define WTF_USE_MULTIPLE_THREADS 1 +#endif +#ifndef WTF_USE_BINDINGS +#define WTF_USE_BINDINGS 1 +#endif +#endif + +/* for Unicode, KDE uses Qt, everything else uses ICU */ +#if PLATFORM(KDE) || PLATFORM(QT) +#define WTF_USE_QT4_UNICODE 1 +#elif PLATFORM(SYMBIAN) +#define WTF_USE_SYMBIAN_UNICODE 1 +#else +#define WTF_USE_ICU_UNICODE 1 +#endif + +#if PLATFORM(MAC) +#define WTF_PLATFORM_CF 1 +#endif + +#if PLATFORM(WIN) +#define WTF_USE_WININET 1 +#endif + +#if PLATFORM(GDK) +#define WTF_USE_CURL 1 +#endif + +/* ENABLE macro defaults */ + +#endif /* WTF_Platform_h */ --- kdelibs-3.5.4/khtml/html/AlwaysInline.h.CVE-2009-1690 2009-06-17 14:18:52.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/AlwaysInline.h 2009-06-17 13:56:36.000000000 +0200 @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#include "html/Platform.h" + + +#ifndef ALWAYS_INLINE +#if COMPILER(GCC) && defined(NDEBUG) && __GNUC__ > 3 +#define ALWAYS_INLINE inline __attribute__ ((__always_inline__)) +#elif COMPILER(MSVC) && defined(NDEBUG) +#define ALWAYS_INLINE __forceinline +#else +#define ALWAYS_INLINE inline +#endif +#endif + +#ifndef ALWAYS_INLINE_INTO +#if COMPILER(GCC) && defined(NDEBUG) && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || __GNUC__ > 4) +#define ALWAYS_INLINE_INTO __attribute__ ((__flatten__)) +#else +#define ALWAYS_INLINE_INTO +#endif +#endif + + +#ifndef NEVER_INLINE +#if COMPILER(GCC) && __GNUC__ > 3 +#define NEVER_INLINE __attribute__ ((__noinline__)) +#else +#define NEVER_INLINE +#endif +#endif --- kdelibs-3.5.4/khtml/html/htmlparser.h.CVE-2009-1690 2005-10-10 17:06:04.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.h 2009-06-17 14:42:27.000000000 +0200 @@ -38,10 +38,10 @@ #include #endif - #include "dom/dom_string.h" #include "xml/dom_nodeimpl.h" #include "html/html_documentimpl.h" +#include "html/RefPtr.h" class KHTMLView; class HTMLStackElem; @@ -148,7 +148,7 @@ /* * the head element. Needed for crappy html which defines after */ - DOM::HTMLHeadElementImpl *head; + RefPtr head; /* * a possible element in the head. Compatibility hack for kdelibs-3.5.4-CVE-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 14 ++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) --- NEW FILE kdelibs-3.5.4-CVE-2009-1698.patch --- --- kdelibs-3.5.4/khtml/css/css_valueimpl.cpp.CVE-2009-1698 2009-06-18 10:59:23.000000000 +0200 +++ kdelibs-3.5.4/khtml/css/css_valueimpl.cpp 2009-06-18 12:53:44.000000000 +0200 @@ -736,7 +736,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; --- kdelibs-3.5.4/khtml/css/cssparser.cpp.CVE-2009-1698 2009-06-18 10:37:13.000000000 +0200 +++ kdelibs-3.5.4/khtml/css/cssparser.cpp 2009-06-23 13:05:20.000000000 +0200 @@ -1318,6 +1318,7 @@ Value *val; CSSValueImpl *parsedValue = 0; + bool valid = true; while ( (val = valueList->current()) ) { if ( val->unit == CSSPrimitiveValue::CSS_URI ) { // url @@ -1336,6 +1337,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + valid=false; + break; + } + if (qString(a->string)[0] == '-') { + valid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1367,7 +1376,7 @@ break; valueList->next(); } - if ( values->length() ) { + if ( valid && values->length() ) { addProperty( propId, values, important ); valueList->next(); return true; @@ -1384,7 +1393,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/devel/kdelibs3.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- kdelibs3.spec 25 Jul 2009 04:28:32 -0000 1.63 +++ kdelibs3.spec 26 Jul 2009 03:09:15 -0000 1.64 @@ -36,7 +36,7 @@ Summary: K Desktop Environment 3 - Libraries Version: 3.5.10 -Release: 12%{?dist} +Release: 13%{?dist} %if 0%{?fedora} > 8 Name: kdelibs3 @@ -97,7 +97,17 @@ Patch101: kde-3.5-libtool-shlibext.patch Patch103: kdelibs-3.5.0-101956.patch Patch104: kdelibs-3.5.10-gcc44.patch -## upstream patches +## security fixes +# fix CVE-2009-2537 - select length DoS +Patch200: kdelibs-3.5.10-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch201: kdelibs-3.5.10-cve-2009-1725.patch +# fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +Patch202: kdelibs-3.5.4-CVE-2009-1687.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +Patch203: kdelibs-3.5.4-CVE-2009-1690.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch204: kdelibs-3.5.4-CVE-2009-1698.patch #{?arts:Requires: arts >= %{arts_ev}} #Requires: %{qt3} >= %{qt3_ev} @@ -273,7 +283,12 @@ format for easy browsing %patch101 -p1 -b .libtool-shlibext %patch104 -p1 -b .gcc44 -# upstream patches +# security fixes +%patch200 -p1 -b .cve-2009-2537 +%patch201 -p0 -b .cve-2009-1725 +%patch202 -p1 -b .cve-2009-1687 +%patch203 -p1 -b .cve-2009-1690 +%patch204 -p1 -b .cve-2009-1698 sed -i -e "s,^#define KDE_VERSION_STRING .*,#define KDE_VERSION_STRING \"%{version}-%{release} %{distname}\"," kdecore/kdeversion.h @@ -625,6 +640,13 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 +- fix CVE-2009-2537 - select length DoS +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling + * Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kkofler at fedoraproject.org Sun Jul 26 03:41:31 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 03:41:31 +0000 (UTC) Subject: rpms/kdelibs/devel kdelibs.spec,1.496,1.497 Message-ID: <20090726034132.15ADD11C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25653/devel Modified Files: kdelibs.spec Log Message: Security fixes upstreamed. Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/devel/kdelibs.spec,v retrieving revision 1.496 retrieving revision 1.497 diff -u -p -r1.496 -r1.497 --- kdelibs.spec 26 Jul 2009 02:59:12 -0000 1.496 +++ kdelibs.spec 26 Jul 2009 03:41:30 -0000 1.497 @@ -88,7 +88,6 @@ Patch20: kdelibs-4.1.70-cmake.patch Patch100: kdelibs-4.2.98-cve-2009-2537-select-length.patch # fix CVE-2009-1725 - crash, possible ACE in numeric character references Patch101: kdelibs-4.2.98-cve-2009-1725.patch -### I will upstream these ones if the build completes successfully. -- kkofler # fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) Patch102: kdelibs-4.2.98-cve-2009-1687.patch # fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling From kkofler at fedoraproject.org Sun Jul 26 03:49:33 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 03:49:33 +0000 (UTC) Subject: rpms/kdelibs3/devel kdelibs-3.5.10-cve-2009-1698.patch, NONE, 1.1 kdelibs3.spec, 1.64, 1.65 kdelibs-3.5.4-CVE-2009-1698.patch, 1.1, NONE Message-ID: <20090726034933.EBA8311C02BC@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29709/devel Modified Files: kdelibs3.spec Added Files: kdelibs-3.5.10-cve-2009-1698.patch Removed Files: kdelibs-3.5.4-CVE-2009-1698.patch Log Message: Rebase CVE-2009-1698 patch. kdelibs-3.5.10-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1698.patch --- diff -ur kdelibs-3.5.10/khtml/css/cssparser.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-3.5.10/khtml/css/cssparser.cpp 2007-01-15 12:34:04.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 05:46:39.000000000 +0200 @@ -1344,6 +1344,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1396,7 +1404,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-3.5.10/khtml/css/css_valueimpl.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-3.5.10/khtml/css/css_valueimpl.cpp 2006-07-22 10:16:49.000000000 +0200 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 05:45:36.000000000 +0200 @@ -736,7 +736,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/devel/kdelibs3.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- kdelibs3.spec 26 Jul 2009 03:09:15 -0000 1.64 +++ kdelibs3.spec 26 Jul 2009 03:49:33 -0000 1.65 @@ -107,7 +107,7 @@ Patch202: kdelibs-3.5.4-CVE-2009-1687.pa # fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) Patch203: kdelibs-3.5.4-CVE-2009-1690.patch # fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling -Patch204: kdelibs-3.5.4-CVE-2009-1698.patch +Patch204: kdelibs-3.5.10-cve-2009-1698.patch #{?arts:Requires: arts >= %{arts_ev}} #Requires: %{qt3} >= %{qt3_ev} --- kdelibs-3.5.4-CVE-2009-1698.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 03:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:50:20 +0000 (UTC) Subject: rpms/perl-BSD-Resource/devel perl-BSD-Resource.spec,1.30,1.31 Message-ID: <20090726035020.74CA311C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-BSD-Resource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30155 Modified Files: perl-BSD-Resource.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-BSD-Resource.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-BSD-Resource/devel/perl-BSD-Resource.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- perl-BSD-Resource.spec 26 Feb 2009 11:20:36 -0000 1.30 +++ perl-BSD-Resource.spec 26 Jul 2009 03:50:20 -0000 1.31 @@ -1,6 +1,6 @@ Name: perl-BSD-Resource Version: 1.28 -Release: 8%{?dist} +Release: 9%{?dist} Summary: BSD process resource limit and priority functions Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.28-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.28-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:50:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:50:37 +0000 (UTC) Subject: rpms/perl-BerkeleyDB/devel perl-BerkeleyDB.spec,1.23,1.24 Message-ID: <20090726035037.EE5EB11C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-BerkeleyDB/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30359 Modified Files: perl-BerkeleyDB.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-BerkeleyDB.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-BerkeleyDB/devel/perl-BerkeleyDB.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-BerkeleyDB.spec 4 Jun 2009 16:32:54 -0000 1.23 +++ perl-BerkeleyDB.spec 26 Jul 2009 03:50:37 -0000 1.24 @@ -1,6 +1,6 @@ Name: perl-BerkeleyDB Version: 0.38 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for Berkeley DB version 2, 3 or 4 License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.38-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Steven Pritchard 0.38-1 - Update to 0.38. From jkeating at fedoraproject.org Sun Jul 26 03:50:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:50:54 +0000 (UTC) Subject: rpms/perl-Best/devel perl-Best.spec,1.1,1.2 Message-ID: <20090726035054.1E11A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Best/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30607 Modified Files: perl-Best.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Best.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Best/devel/perl-Best.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Best.spec 18 Mar 2009 22:50:54 -0000 1.1 +++ perl-Best.spec 26 Jul 2009 03:50:53 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Best Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} # note that README says "perl", but the actual source says "MIT" # lib/Best.pm -> MIT License: MIT @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Chris Weyl 0.12-1 - submission From jkeating at fedoraproject.org Sun Jul 26 03:51:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:51:09 +0000 (UTC) Subject: rpms/perl-Bio-ASN1-EntrezGene/devel perl-Bio-ASN1-EntrezGene.spec, 1.6, 1.7 Message-ID: <20090726035109.D816211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Bio-ASN1-EntrezGene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30823 Modified Files: perl-Bio-ASN1-EntrezGene.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Bio-ASN1-EntrezGene.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Bio-ASN1-EntrezGene/devel/perl-Bio-ASN1-EntrezGene.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Bio-ASN1-EntrezGene.spec 26 Feb 2009 11:22:44 -0000 1.6 +++ perl-Bio-ASN1-EntrezGene.spec 26 Jul 2009 03:51:09 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Bio-ASN1-EntrezGene Version: 1.091 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Regular expression-based Perl Parser for NCBI Entrez Gene License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.091-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.091-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:51:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:51:23 +0000 (UTC) Subject: rpms/perl-Bio-Graphics/devel perl-Bio-Graphics.spec,1.6,1.7 Message-ID: <20090726035123.56FF311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Bio-Graphics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31002 Modified Files: perl-Bio-Graphics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Bio-Graphics.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Bio-Graphics/devel/perl-Bio-Graphics.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Bio-Graphics.spec 16 Jul 2009 06:47:10 -0000 1.6 +++ perl-Bio-Graphics.spec 26 Jul 2009 03:51:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Bio-Graphics Version: 1.97 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate GD images of Bio::Seq objects License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.97-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Alex Lancaster - 1.97-1 - Update to latest upstream (1.97) to fix FTBFS (#511633) and disable tests temporarily (reported upstream: From jkeating at fedoraproject.org Sun Jul 26 03:51:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:51:37 +0000 (UTC) Subject: rpms/perl-Bit-Vector/devel perl-Bit-Vector.spec,1.27,1.28 Message-ID: <20090726035137.55E3B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Bit-Vector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31173 Modified Files: perl-Bit-Vector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Bit-Vector.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Bit-Vector/devel/perl-Bit-Vector.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- perl-Bit-Vector.spec 26 Feb 2009 11:24:50 -0000 1.27 +++ perl-Bit-Vector.spec 26 Jul 2009 03:51:37 -0000 1.28 @@ -1,6 +1,6 @@ Name: perl-Bit-Vector Version: 6.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Efficient bit vector, set of integers and "big int" math library Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 6.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:51:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:51:51 +0000 (UTC) Subject: rpms/perl-Boulder/devel perl-Boulder.spec,1.7,1.8 Message-ID: <20090726035151.8A33F11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Boulder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31368 Modified Files: perl-Boulder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Boulder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Boulder/devel/perl-Boulder.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Boulder.spec 26 Feb 2009 11:25:48 -0000 1.7 +++ perl-Boulder.spec 26 Jul 2009 03:51:51 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Boulder Version: 1.30 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An API for hierarchical tag/value structures License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.30-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.30-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:52:07 +0000 (UTC) Subject: rpms/perl-Business-CreditCard/devel perl-Business-CreditCard.spec, 1.2, 1.3 Message-ID: <20090726035207.CCAD511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Business-CreditCard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31533 Modified Files: perl-Business-CreditCard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Business-CreditCard.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Business-CreditCard/devel/perl-Business-CreditCard.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Business-CreditCard.spec 26 Feb 2009 11:26:44 -0000 1.2 +++ perl-Business-CreditCard.spec 26 Jul 2009 03:52:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Business-CreditCard Version: 0.30 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Validate/generate credit card checksums/names License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:52:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:52:21 +0000 (UTC) Subject: rpms/perl-Business-Hours/devel perl-Business-Hours.spec,1.9,1.10 Message-ID: <20090726035221.4458B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Business-Hours/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31688 Modified Files: perl-Business-Hours.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Business-Hours.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Business-Hours/devel/perl-Business-Hours.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Business-Hours.spec 26 Feb 2009 11:27:43 -0000 1.9 +++ perl-Business-Hours.spec 26 Jul 2009 03:52:21 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Calculate business hours in a time period Name: perl-Business-Hours Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Business-Hours/ @@ -53,6 +53,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:52:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:52:40 +0000 (UTC) Subject: rpms/perl-Business-ISBN/devel perl-Business-ISBN.spec,1.4,1.5 Message-ID: <20090726035240.B1FFD11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Business-ISBN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31896 Modified Files: perl-Business-ISBN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Business-ISBN.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Business-ISBN/devel/perl-Business-ISBN.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Business-ISBN.spec 26 Feb 2009 11:28:54 -0000 1.4 +++ perl-Business-ISBN.spec 26 Jul 2009 03:52:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Business-ISBN Version: 2.04_01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module to work with International Standard Book Numbers Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.04_01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.04_01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:52:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:52:58 +0000 (UTC) Subject: rpms/perl-Business-ISBN-Data/devel perl-Business-ISBN-Data.spec, 1.5, 1.6 Message-ID: <20090726035258.BC2B211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Business-ISBN-Data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32090 Modified Files: perl-Business-ISBN-Data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Business-ISBN-Data.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Business-ISBN-Data/devel/perl-Business-ISBN-Data.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Business-ISBN-Data.spec 26 Feb 2009 11:29:56 -0000 1.5 +++ perl-Business-ISBN-Data.spec 26 Jul 2009 03:52:58 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Business-ISBN-Data Version: 20081020 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The data pack for Business::ISBN Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 20081020-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20081020-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:53:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:53:15 +0000 (UTC) Subject: rpms/perl-CGI-Ajax/devel perl-CGI-Ajax.spec,1.7,1.8 Message-ID: <20090726035315.2F1AC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Ajax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32289 Modified Files: perl-CGI-Ajax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Ajax.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Ajax/devel/perl-CGI-Ajax.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-CGI-Ajax.spec 26 Feb 2009 11:31:00 -0000 1.7 +++ perl-CGI-Ajax.spec 26 Jul 2009 03:53:14 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-CGI-Ajax Version: 0.707 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl-specific system for writing Asynchronous web applications License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.707-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.707-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:53:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:53:32 +0000 (UTC) Subject: rpms/perl-CGI-Application/devel perl-CGI-Application.spec,1.1,1.2 Message-ID: <20090726035332.45DEC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32467 Modified Files: perl-CGI-Application.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application/devel/perl-CGI-Application.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application.spec 22 Mar 2009 22:09:40 -0000 1.1 +++ perl-CGI-Application.spec 26 Jul 2009 03:53:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application Version: 4.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Framework for building reusable web-applications License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Emmanuel Seyman 4.21-2 - Include Test::More in the BuildRequires (brc #486584) From jkeating at fedoraproject.org Sun Jul 26 03:53:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:53:47 +0000 (UTC) Subject: rpms/perl-CGI-Application-Dispatch/devel perl-CGI-Application-Dispatch.spec, 1.1, 1.2 Message-ID: <20090726035347.6659D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32656 Modified Files: perl-CGI-Application-Dispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Dispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Dispatch/devel/perl-CGI-Application-Dispatch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Dispatch.spec 2 Jul 2009 23:01:09 -0000 1.1 +++ perl-CGI-Application-Dispatch.spec 26 Jul 2009 03:53:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Dispatch Version: 2.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Dispatch requests to CGI::Application based objects License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Emmanuel Seyman 2.16-1 - Update to 2.15 - Tests activated From jkeating at fedoraproject.org Sun Jul 26 03:54:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:54:02 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-AutoRunmode/devel perl-CGI-Application-Plugin-AutoRunmode.spec, 1.1, 1.2 Message-ID: <20090726035402.9B78A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-AutoRunmode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv349 Modified Files: perl-CGI-Application-Plugin-AutoRunmode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-AutoRunmode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-AutoRunmode/devel/perl-CGI-Application-Plugin-AutoRunmode.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-AutoRunmode.spec 21 Jun 2009 08:59:23 -0000 1.1 +++ perl-CGI-Application-Plugin-AutoRunmode.spec 26 Jul 2009 03:54:02 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-AutoRunmode Version: 0.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: CGI::App plugin to automatically register runmodes License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Emmanuel Seyman 0.16-2 - Add Test::More to BuildRequires From jkeating at fedoraproject.org Sun Jul 26 03:54:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:54:20 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ConfigAuto/devel perl-CGI-Application-Plugin-ConfigAuto.spec, 1.1, 1.2 Message-ID: <20090726035420.94AA111C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv538 Modified Files: perl-CGI-Application-Plugin-ConfigAuto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-ConfigAuto.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ConfigAuto/devel/perl-CGI-Application-Plugin-ConfigAuto.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-ConfigAuto.spec 2 Jul 2009 06:38:02 -0000 1.1 +++ perl-CGI-Application-Plugin-ConfigAuto.spec 26 Jul 2009 03:54:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-ConfigAuto Version: 1.30 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy config file management for CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.30-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:54:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:54:35 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DBH/devel perl-CGI-Application-Plugin-DBH.spec, 1.1, 1.2 Message-ID: <20090726035435.E96BC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DBH/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv710 Modified Files: perl-CGI-Application-Plugin-DBH.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-DBH.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DBH/devel/perl-CGI-Application-Plugin-DBH.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-DBH.spec 21 Jun 2009 09:19:17 -0000 1.1 +++ perl-CGI-Application-Plugin-DBH.spec 26 Jul 2009 03:54:35 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-DBH Version: 4.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy DBI access from CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 11 2007 Emmanuel Seyman 4.00-1 - Specfile autogenerated by cpanspec 1.70. From jkeating at fedoraproject.org Sun Jul 26 03:54:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:54:51 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DebugScreen/devel perl-CGI-Application-Plugin-DebugScreen.spec, 1.1, 1.2 Message-ID: <20090726035451.9C6BE11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv916 Modified Files: perl-CGI-Application-Plugin-DebugScreen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-DebugScreen.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DebugScreen/devel/perl-CGI-Application-Plugin-DebugScreen.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-DebugScreen.spec 17 Jul 2009 15:55:40 -0000 1.1 +++ perl-CGI-Application-Plugin-DebugScreen.spec 26 Jul 2009 03:54:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-DebugScreen Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add Debug support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 0.06-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:55:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:55:07 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-DevPopup/devel perl-CGI-Application-Plugin-DevPopup.spec, 1.1, 1.2 Message-ID: <20090726035507.41C2311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DevPopup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1082 Modified Files: perl-CGI-Application-Plugin-DevPopup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-DevPopup.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-DevPopup/devel/perl-CGI-Application-Plugin-DevPopup.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-DevPopup.spec 21 Jun 2009 13:55:11 -0000 1.1 +++ perl-CGI-Application-Plugin-DevPopup.spec 26 Jul 2009 03:55:06 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-DevPopup Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Runtime cgiapp info in a popup window License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:55:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:55:22 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ErrorPage/devel perl-CGI-Application-Plugin-ErrorPage.spec, 1.3, 1.4 Message-ID: <20090726035522.B39B711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ErrorPage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1265 Modified Files: perl-CGI-Application-Plugin-ErrorPage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-ErrorPage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ErrorPage/devel/perl-CGI-Application-Plugin-ErrorPage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-CGI-Application-Plugin-ErrorPage.spec 27 Jun 2009 22:32:27 -0000 1.3 +++ perl-CGI-Application-Plugin-ErrorPage.spec 26 Jul 2009 03:55:22 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-ErrorPage Version: 1.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple error page plugin for CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.21-2 - Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:55:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:55:37 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-FillInForm/devel perl-CGI-Application-Plugin-FillInForm.spec, 1.1, 1.2 Message-ID: <20090726035537.E3E9A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1452 Modified Files: perl-CGI-Application-Plugin-FillInForm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-FillInForm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-FillInForm/devel/perl-CGI-Application-Plugin-FillInForm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-FillInForm.spec 6 Jul 2009 09:15:07 -0000 1.1 +++ perl-CGI-Application-Plugin-FillInForm.spec 26 Jul 2009 03:55:37 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-FillInForm Version: 1.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Integrate CGI::Application with HTML::FillInForm License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.14-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:55:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:55:51 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Forward/devel perl-CGI-Application-Plugin-Forward.spec, 1.1, 1.2 Message-ID: <20090726035551.4C68711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1626 Modified Files: perl-CGI-Application-Plugin-Forward.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-Forward.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Forward/devel/perl-CGI-Application-Plugin-Forward.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-Forward.spec 6 Jul 2009 09:33:21 -0000 1.1 +++ perl-CGI-Application-Plugin-Forward.spec 26 Jul 2009 03:55:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-Forward Version: 1.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pass control from one run mode to another in CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.06-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:56:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:56:05 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-LogDispatch/devel perl-CGI-Application-Plugin-LogDispatch.spec, 1.1, 1.2 Message-ID: <20090726035605.156D611C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1770 Modified Files: perl-CGI-Application-Plugin-LogDispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-LogDispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-LogDispatch/devel/perl-CGI-Application-Plugin-LogDispatch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-LogDispatch.spec 6 Jul 2009 09:59:23 -0000 1.1 +++ perl-CGI-Application-Plugin-LogDispatch.spec 26 Jul 2009 03:56:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-LogDispatch Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add Log::Dispatch support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.02-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:56:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:56:19 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Redirect/devel perl-CGI-Application-Plugin-Redirect.spec, 1.1, 1.2 Message-ID: <20090726035619.9BC9B11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Redirect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1920 Modified Files: perl-CGI-Application-Plugin-Redirect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-Redirect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Redirect/devel/perl-CGI-Application-Plugin-Redirect.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-Redirect.spec 21 Jun 2009 14:53:07 -0000 1.1 +++ perl-CGI-Application-Plugin-Redirect.spec 26 Jul 2009 03:56:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-Redirect Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy external redirects in CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.00-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:56:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:56:33 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Session/devel perl-CGI-Application-Plugin-Session.spec, 1.1, 1.2 Message-ID: <20090726035633.81AC211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2094 Modified Files: perl-CGI-Application-Plugin-Session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-Session.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Session/devel/perl-CGI-Application-Plugin-Session.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-Session.spec 23 Jun 2009 22:58:52 -0000 1.1 +++ perl-CGI-Application-Plugin-Session.spec 26 Jul 2009 03:56:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-Session Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add CGI::Session support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.03-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:56:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:56:46 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-Stream/devel perl-CGI-Application-Plugin-Stream.spec, 1.1, 1.2 Message-ID: <20090726035646.3B35D11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Stream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2238 Modified Files: perl-CGI-Application-Plugin-Stream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-Stream.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-Stream/devel/perl-CGI-Application-Plugin-Stream.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-Stream.spec 24 Jun 2009 20:17:17 -0000 1.1 +++ perl-CGI-Application-Plugin-Stream.spec 26 Jul 2009 03:56:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-Stream Version: 2.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CGI::Application Plugin for streaming files License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 2.06-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:56:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:56:59 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-TT/devel perl-CGI-Application-Plugin-TT.spec, 1.1, 1.2 Message-ID: <20090726035659.768DC11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2383 Modified Files: perl-CGI-Application-Plugin-TT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-TT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-TT/devel/perl-CGI-Application-Plugin-TT.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-TT.spec 6 Jul 2009 08:46:57 -0000 1.1 +++ perl-CGI-Application-Plugin-TT.spec 26 Jul 2009 03:56:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-TT Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add Template Toolkit support to CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 11 2007 Emmanuel Seyman 1.04-1 - Specfile autogenerated by cpanspec 1.70. From jkeating at fedoraproject.org Sun Jul 26 03:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:57:17 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ValidateRM/devel perl-CGI-Application-Plugin-ValidateRM.spec, 1.1, 1.2 Message-ID: <20090726035717.0ACE211C049E@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ValidateRM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2538 Modified Files: perl-CGI-Application-Plugin-ValidateRM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-ValidateRM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ValidateRM/devel/perl-CGI-Application-Plugin-ValidateRM.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-ValidateRM.spec 7 Jul 2009 06:44:49 -0000 1.1 +++ perl-CGI-Application-Plugin-ValidateRM.spec 26 Jul 2009 03:57:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-ValidateRM Version: 2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Help validate CGI::Application run modes using Data::FormValidator License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 2.3-2 - Fix a directory ownership issue. From jkeating at fedoraproject.org Sun Jul 26 03:57:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:57:31 +0000 (UTC) Subject: rpms/perl-CGI-Application-Plugin-ViewCode/devel perl-CGI-Application-Plugin-ViewCode.spec, 1.1, 1.2 Message-ID: <20090726035731.0BABF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ViewCode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2754 Modified Files: perl-CGI-Application-Plugin-ViewCode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Plugin-ViewCode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Plugin-ViewCode/devel/perl-CGI-Application-Plugin-ViewCode.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Plugin-ViewCode.spec 7 Jul 2009 07:10:48 -0000 1.1 +++ perl-CGI-Application-Plugin-ViewCode.spec 26 Jul 2009 03:57:30 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Plugin-ViewCode Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allows you to view the source of a CGI::Application module License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.02-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:57:49 +0000 (UTC) Subject: rpms/perl-CGI-Application-Server/devel perl-CGI-Application-Server.spec, 1.1, 1.2 Message-ID: <20090726035749.45A9311C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2943 Modified Files: perl-CGI-Application-Server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Server.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Server/devel/perl-CGI-Application-Server.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Server.spec 9 Jul 2009 11:48:51 -0000 1.1 +++ perl-CGI-Application-Server.spec 26 Jul 2009 03:57:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Server Version: 0.061 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple HTTP server for developing with CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.061-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Emmanuel Seyman 0.061-1 - Update to 0.061 From jkeating at fedoraproject.org Sun Jul 26 03:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:58:04 +0000 (UTC) Subject: rpms/perl-CGI-Application-Standard-Config/devel perl-CGI-Application-Standard-Config.spec, 1.1, 1.2 Message-ID: <20090726035804.8948411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3126 Modified Files: perl-CGI-Application-Standard-Config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Application-Standard-Config.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Application-Standard-Config/devel/perl-CGI-Application-Standard-Config.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CGI-Application-Standard-Config.spec 9 Jul 2009 15:16:30 -0000 1.1 +++ perl-CGI-Application-Standard-Config.spec 26 Jul 2009 03:58:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CGI-Application-Standard-Config Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Defines a standard configuration API for CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 03:58:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:58:19 +0000 (UTC) Subject: rpms/perl-CGI-Ex/devel perl-CGI-Ex.spec,1.10,1.11 Message-ID: <20090726035819.8886A11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Ex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3290 Modified Files: perl-CGI-Ex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Ex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Ex/devel/perl-CGI-Ex.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-CGI-Ex.spec 2 Apr 2009 07:04:04 -0000 1.10 +++ perl-CGI-Ex.spec 26 Jul 2009 03:58:19 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-CGI-Ex Version: 2.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CGI utility suite - makes powerful application writing fun and easy License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 2.27-1 - update to 2.27 From jkeating at fedoraproject.org Sun Jul 26 03:58:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:58:34 +0000 (UTC) Subject: rpms/perl-CGI-FastTemplate/devel perl-CGI-FastTemplate.spec, 1.4, 1.5 Message-ID: <20090726035834.7EDB711C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-FastTemplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3475 Modified Files: perl-CGI-FastTemplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-FastTemplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-FastTemplate/devel/perl-CGI-FastTemplate.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-CGI-FastTemplate.spec 26 Feb 2009 11:33:01 -0000 1.4 +++ perl-CGI-FastTemplate.spec 26 Jul 2009 03:58:34 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-CGI-FastTemplate Version: 1.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl extension for managing templates and performing variable interpolation Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:58:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:58:49 +0000 (UTC) Subject: rpms/perl-CGI-FormBuilder/devel perl-CGI-FormBuilder.spec,1.3,1.4 Message-ID: <20090726035849.970E411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-FormBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3646 Modified Files: perl-CGI-FormBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-FormBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-FormBuilder/devel/perl-CGI-FormBuilder.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-CGI-FormBuilder.spec 26 Feb 2009 11:33:56 -0000 1.3 +++ perl-CGI-FormBuilder.spec 26 Jul 2009 03:58:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-CGI-FormBuilder Version: 3.0501 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Easily generate and process stateful forms Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0501-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.0501-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:59:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:59:04 +0000 (UTC) Subject: rpms/perl-CGI-Prototype/devel perl-CGI-Prototype.spec,1.4,1.5 Message-ID: <20090726035904.8201811C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Prototype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3823 Modified Files: perl-CGI-Prototype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Prototype.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Prototype/devel/perl-CGI-Prototype.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-CGI-Prototype.spec 26 Feb 2009 11:34:54 -0000 1.4 +++ perl-CGI-Prototype.spec 26 Jul 2009 03:59:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-CGI-Prototype Version: 0.9053 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Create a CGI application by subclassing License: GPL+ or Artistic Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9053-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9053-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:59:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:59:19 +0000 (UTC) Subject: rpms/perl-CGI-Session/devel perl-CGI-Session.spec,1.6,1.7 Message-ID: <20090726035919.99F2211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3976 Modified Files: perl-CGI-Session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Session.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Session/devel/perl-CGI-Session.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-CGI-Session.spec 26 Feb 2009 11:35:57 -0000 1.6 +++ perl-CGI-Session.spec 26 Jul 2009 03:59:19 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-CGI-Session Version: 4.35 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Persistent session data in CGI applications License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.35-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.35-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 03:59:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:59:35 +0000 (UTC) Subject: rpms/perl-CGI-Simple/devel perl-CGI-Simple.spec,1.10,1.11 Message-ID: <20090726035935.EE03211C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4173 Modified Files: perl-CGI-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Simple/devel/perl-CGI-Simple.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-CGI-Simple.spec 13 Mar 2009 18:42:33 -0000 1.10 +++ perl-CGI-Simple.spec 26 Jul 2009 03:59:35 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-CGI-Simple Version: 1.108 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple totally OO CGI interface that is CGI.pm compliant Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.108-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway 1.108-1 - update to 1.108 From jkeating at fedoraproject.org Sun Jul 26 03:59:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 03:59:52 +0000 (UTC) Subject: rpms/perl-CGI-SpeedyCGI/devel perl-CGI-SpeedyCGI.spec,1.5,1.6 Message-ID: <20090726035952.5CBD411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-SpeedyCGI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4357 Modified Files: perl-CGI-SpeedyCGI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-SpeedyCGI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-SpeedyCGI/devel/perl-CGI-SpeedyCGI.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-CGI-SpeedyCGI.spec 23 Feb 2009 21:10:04 -0000 1.5 +++ perl-CGI-SpeedyCGI.spec 26 Jul 2009 03:59:52 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Speed up perl scripts by running them persistently Name: perl-CGI-SpeedyCGI Version: 2.22 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv3+ Group: Development/Libraries URL: http://search.cpan.org/dist/%{pkgname}/ @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/httpd/conf.d/speedycgi.conf %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.22-5 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 04:00:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:00:13 +0000 (UTC) Subject: rpms/perl-CGI-Untaint/devel perl-CGI-Untaint.spec,1.8,1.9 Message-ID: <20090726040013.718AE11C04D2@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Untaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4615 Modified Files: perl-CGI-Untaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Untaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Untaint/devel/perl-CGI-Untaint.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-CGI-Untaint.spec 26 Feb 2009 11:37:56 -0000 1.8 +++ perl-CGI-Untaint.spec 26 Jul 2009 04:00:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-CGI-Untaint Version: 1.26 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Process CGI input parameters Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.26-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.26-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:00:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:00:38 +0000 (UTC) Subject: rpms/perl-CGI-Untaint-date/devel perl-CGI-Untaint-date.spec, 1.7, 1.8 Message-ID: <20090726040038.CCA2211C02C8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Untaint-date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4907 Modified Files: perl-CGI-Untaint-date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Untaint-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Untaint-date/devel/perl-CGI-Untaint-date.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-CGI-Untaint-date.spec 26 Feb 2009 11:38:53 -0000 1.7 +++ perl-CGI-Untaint-date.spec 26 Jul 2009 04:00:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-CGI-Untaint-date Version: 1.00 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Validate a date Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:00:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:00:53 +0000 (UTC) Subject: rpms/perl-CGI-Untaint-email/devel perl-CGI-Untaint-email.spec, 1.5, 1.6 Message-ID: <20090726040053.4FD5911C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CGI-Untaint-email/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5072 Modified Files: perl-CGI-Untaint-email.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CGI-Untaint-email.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CGI-Untaint-email/devel/perl-CGI-Untaint-email.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-CGI-Untaint-email.spec 26 Feb 2009 11:39:50 -0000 1.5 +++ perl-CGI-Untaint-email.spec 26 Jul 2009 04:00:53 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-CGI-Untaint-email Version: 0.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Validate an email address Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:01:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:01:07 +0000 (UTC) Subject: rpms/perl-CPAN-DistnameInfo/devel perl-CPAN-DistnameInfo.spec, 1.7, 1.8 Message-ID: <20090726040107.90F1411C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CPAN-DistnameInfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5223 Modified Files: perl-CPAN-DistnameInfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CPAN-DistnameInfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CPAN-DistnameInfo/devel/perl-CPAN-DistnameInfo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-CPAN-DistnameInfo.spec 12 May 2009 21:27:03 -0000 1.7 +++ perl-CPAN-DistnameInfo.spec 26 Jul 2009 04:01:07 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-CPAN-DistnameInfo Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extract distribution name and version from a distribution filename License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Steven Pritchard 0.08-1 - Update to 0.08. - BR Test::More. From jkeating at fedoraproject.org Sun Jul 26 04:01:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:01:23 +0000 (UTC) Subject: rpms/perl-CPAN-Mini/devel perl-CPAN-Mini.spec,1.4,1.5 Message-ID: <20090726040123.C02ED11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CPAN-Mini/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5392 Modified Files: perl-CPAN-Mini.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CPAN-Mini.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CPAN-Mini/devel/perl-CPAN-Mini.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-CPAN-Mini.spec 26 Feb 2009 11:41:49 -0000 1.4 +++ perl-CPAN-Mini.spec 26 Jul 2009 04:01:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-CPAN-Mini Version: 0.576 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create a minimal mirror of CPAN License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.576-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.576-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:01:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:01:37 +0000 (UTC) Subject: rpms/perl-CPANPLUS-Shell-Default-Plugins-Changes/devel perl-CPANPLUS-Shell-Default-Plugins-Changes.spec, 1.2, 1.3 Message-ID: <20090726040137.5541511C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-Changes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5592 Modified Files: perl-CPANPLUS-Shell-Default-Plugins-Changes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CPANPLUS-Shell-Default-Plugins-Changes.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-Changes/devel/perl-CPANPLUS-Shell-Default-Plugins-Changes.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CPANPLUS-Shell-Default-Plugins-Changes.spec 26 Feb 2009 11:43:29 -0000 1.2 +++ perl-CPANPLUS-Shell-Default-Plugins-Changes.spec 26 Jul 2009 04:01:37 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CPANPLUS-Shell-Default-Plugins-Changes Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} # lib/CPANPLUS/Shell/Default/Plugins/Changes.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:01:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:01:51 +0000 (UTC) Subject: rpms/perl-CPANPLUS-Shell-Default-Plugins-Diff/devel perl-CPANPLUS-Shell-Default-Plugins-Diff.spec, 1.2, 1.3 Message-ID: <20090726040151.AE2CB11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5777 Modified Files: perl-CPANPLUS-Shell-Default-Plugins-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CPANPLUS-Shell-Default-Plugins-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-Diff/devel/perl-CPANPLUS-Shell-Default-Plugins-Diff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CPANPLUS-Shell-Default-Plugins-Diff.spec 26 Feb 2009 11:44:25 -0000 1.2 +++ perl-CPANPLUS-Shell-Default-Plugins-Diff.spec 26 Jul 2009 04:01:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CPANPLUS-Shell-Default-Plugins-Diff Version: 0.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Diff module versions from the CPANPLUS shell License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:02:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:02:07 +0000 (UTC) Subject: rpms/perl-CPANPLUS-Shell-Default-Plugins-RT/devel perl-CPANPLUS-Shell-Default-Plugins-RT.spec, 1.2, 1.3 Message-ID: <20090726040207.D181A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-RT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6006 Modified Files: perl-CPANPLUS-Shell-Default-Plugins-RT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CPANPLUS-Shell-Default-Plugins-RT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CPANPLUS-Shell-Default-Plugins-RT/devel/perl-CPANPLUS-Shell-Default-Plugins-RT.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-CPANPLUS-Shell-Default-Plugins-RT.spec 26 Feb 2009 11:45:23 -0000 1.2 +++ perl-CPANPLUS-Shell-Default-Plugins-RT.spec 26 Jul 2009 04:02:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-CPANPLUS-Shell-Default-Plugins-RT Version: 0.01 -Release: 2%{?dist} +Release: 3%{?dist} # see README License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{perl_vendorlib}/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:02:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:02:27 +0000 (UTC) Subject: rpms/perl-CSS/devel perl-CSS.spec,1.4,1.5 Message-ID: <20090726040227.8D59111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CSS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6192 Modified Files: perl-CSS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CSS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CSS/devel/perl-CSS.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-CSS.spec 26 Feb 2009 11:46:28 -0000 1.4 +++ perl-CSS.spec 26 Jul 2009 04:02:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-CSS Version: 1.08 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Object oriented access to Cascading Style Sheets (CSS) License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ find %{buildroot} -depth -type d -exec r %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:02:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:02:50 +0000 (UTC) Subject: rpms/perl-CSS-Minifier/devel perl-CSS-Minifier.spec,1.1,1.2 Message-ID: <20090726040250.C35C111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CSS-Minifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6400 Modified Files: perl-CSS-Minifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CSS-Minifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CSS-Minifier/devel/perl-CSS-Minifier.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CSS-Minifier.spec 14 Apr 2009 02:22:48 -0000 1.1 +++ perl-CSS-Minifier.spec 26 Jul 2009 04:02:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CSS-Minifier Version: 0.01 -Release: 1%{?dist} +Release: 2%{?dist} # lib/CSS/Minifier.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Chris Weyl 0.01-1 - update for submission From jkeating at fedoraproject.org Sun Jul 26 04:03:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:03:12 +0000 (UTC) Subject: rpms/perl-CSS-Minifier-XS/devel perl-CSS-Minifier-XS.spec,1.1,1.2 Message-ID: <20090726040312.D145211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CSS-Minifier-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6659 Modified Files: perl-CSS-Minifier-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CSS-Minifier-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CSS-Minifier-XS/devel/perl-CSS-Minifier-XS.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-CSS-Minifier-XS.spec 12 Apr 2009 21:01:06 -0000 1.1 +++ perl-CSS-Minifier-XS.spec 26 Jul 2009 04:03:11 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-CSS-Minifier-XS Version: 0.03 -Release: 1%{?dist} +Release: 2%{?dist} # lib/CSS/Minifier/XS.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Chris Weyl 0.03-1 - update for submission From jkeating at fedoraproject.org Sun Jul 26 04:03:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:03:32 +0000 (UTC) Subject: rpms/perl-CSS-Squish/devel perl-CSS-Squish.spec,1.4,1.5 Message-ID: <20090726040332.9261C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CSS-Squish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6885 Modified Files: perl-CSS-Squish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CSS-Squish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CSS-Squish/devel/perl-CSS-Squish.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-CSS-Squish.spec 27 Apr 2009 03:45:52 -0000 1.4 +++ perl-CSS-Squish.spec 26 Jul 2009 04:03:32 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-CSS-Squish Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Compact many CSS files into one big file License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ralf Cors?pius - 0.08-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 04:03:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:03:51 +0000 (UTC) Subject: rpms/perl-CSS-Tiny/devel perl-CSS-Tiny.spec,1.6,1.7 Message-ID: <20090726040351.5210311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-CSS-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7085 Modified Files: perl-CSS-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-CSS-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-CSS-Tiny/devel/perl-CSS-Tiny.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-CSS-Tiny.spec 26 Feb 2009 11:48:28 -0000 1.6 +++ perl-CSS-Tiny.spec 26 Jul 2009 04:03:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-CSS-Tiny Version: 1.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Read/Write .css files with as little code as possible Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:04:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:04:07 +0000 (UTC) Subject: rpms/perl-Cache/devel perl-Cache.spec,1.7,1.8 Message-ID: <20090726040407.D86AB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7416 Modified Files: perl-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache/devel/perl-Cache.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Cache.spec 26 Feb 2009 11:49:23 -0000 1.7 +++ perl-Cache.spec 26 Jul 2009 04:04:07 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Cache Version: 2.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Cache interface Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:04:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:04:22 +0000 (UTC) Subject: rpms/perl-Cache-Cache/devel perl-Cache-Cache.spec,1.14,1.15 Message-ID: <20090726040422.6A92211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7869 Modified Files: perl-Cache-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-Cache/devel/perl-Cache-Cache.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Cache-Cache.spec 13 May 2009 17:48:30 -0000 1.14 +++ perl-Cache-Cache.spec 26 Jul 2009 04:04:22 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Cache-Cache Version: 1.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generic cache interface and implementations License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Steven Pritchard 1.06-1 - Update to 1.06. - Reformat to match cpanspec output. From jkeating at fedoraproject.org Sun Jul 26 04:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:04:38 +0000 (UTC) Subject: rpms/perl-Cache-FastMmap/devel perl-Cache-FastMmap.spec,1.4,1.5 Message-ID: <20090726040438.4EB6B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache-FastMmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8318 Modified Files: perl-Cache-FastMmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache-FastMmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-FastMmap/devel/perl-Cache-FastMmap.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Cache-FastMmap.spec 21 Jun 2009 07:17:26 -0000 1.4 +++ perl-Cache-FastMmap.spec 26 Jul 2009 04:04:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Cache-FastMmap Version: 1.34 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Uses an mmap'ed file to act as a shared memory interprocess cache License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Iain Arnell 1.34-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 04:04:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:04:55 +0000 (UTC) Subject: rpms/perl-Cache-Memcached/devel perl-Cache-Memcached.spec,1.1,1.2 Message-ID: <20090726040455.ACC2011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache-Memcached/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8608 Modified Files: perl-Cache-Memcached.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache-Memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-Memcached/devel/perl-Cache-Memcached.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Cache-Memcached.spec 12 Jun 2009 10:52:46 -0000 1.1 +++ perl-Cache-Memcached.spec 26 Jul 2009 04:04:55 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Cache-Memcached Version: 1.26 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl client for memcached Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Michael Fleming - 1.2.6-3 - More cleanups - Change license From jkeating at fedoraproject.org Sun Jul 26 04:05:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:05:10 +0000 (UTC) Subject: rpms/perl-Cache-Mmap/devel perl-Cache-Mmap.spec,1.7,1.8 Message-ID: <20090726040510.D7BB011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache-Mmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8792 Modified Files: perl-Cache-Mmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache-Mmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-Mmap/devel/perl-Cache-Mmap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Cache-Mmap.spec 26 Feb 2009 11:52:29 -0000 1.7 +++ perl-Cache-Mmap.spec 26 Jul 2009 04:05:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Cache-Mmap Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Shared data cache using memory mapped files License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:05:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:05:26 +0000 (UTC) Subject: rpms/perl-Cache-Simple-TimedExpiry/devel perl-Cache-Simple-TimedExpiry.spec, 1.9, 1.10 Message-ID: <20090726040526.AF76E11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cache-Simple-TimedExpiry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10473 Modified Files: perl-Cache-Simple-TimedExpiry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cache-Simple-TimedExpiry.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-Simple-TimedExpiry/devel/perl-Cache-Simple-TimedExpiry.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Cache-Simple-TimedExpiry.spec 26 Feb 2009 11:53:27 -0000 1.9 +++ perl-Cache-Simple-TimedExpiry.spec 26 Jul 2009 04:05:26 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Cache-Simple-TimedExpiry Version: 0.27 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A lightweight cache with timed expiration License: GPL+ or Artistic Group: Development/Libraries @@ -43,6 +43,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.27-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.27-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:05:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:05:42 +0000 (UTC) Subject: rpms/perl-Cairo/devel perl-Cairo.spec,1.22,1.23 Message-ID: <20090726040542.0899211C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14840 Modified Files: perl-Cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cairo/devel/perl-Cairo.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Cairo.spec 13 Mar 2009 18:39:27 -0000 1.22 +++ perl-Cairo.spec 26 Jul 2009 04:05:41 -0000 1.23 @@ -6,7 +6,7 @@ Name: perl-Cairo Version: 1.060 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl interface to the cairo library Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.060-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.060-1 - update to 1.060 From jkeating at fedoraproject.org Sun Jul 26 04:05:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:05:57 +0000 (UTC) Subject: rpms/perl-Calendar-Simple/devel perl-Calendar-Simple.spec, 1.11, 1.12 Message-ID: <20090726040557.EB3D911C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Calendar-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17552 Modified Files: perl-Calendar-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Calendar-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Calendar-Simple/devel/perl-Calendar-Simple.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Calendar-Simple.spec 26 Feb 2009 11:55:23 -0000 1.11 +++ perl-Calendar-Simple.spec 26 Jul 2009 04:05:57 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Perl extension to create simple calendars Name: perl-Calendar-Simple Version: 1.20 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Calendar-Simple/ @@ -51,6 +51,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:06:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:06:20 +0000 (UTC) Subject: rpms/perl-Callback/devel perl-Callback.spec,1.3,1.4 Message-ID: <20090726040620.2C3A411C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Callback/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20626 Modified Files: perl-Callback.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Callback.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Callback/devel/perl-Callback.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Callback.spec 26 Feb 2009 11:56:22 -0000 1.3 +++ perl-Callback.spec 26 Jul 2009 04:06:19 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Callback Version: 1.07 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object interface for function callbacks License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:06:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:06:39 +0000 (UTC) Subject: rpms/perl-Captcha-reCAPTCHA/devel perl-Captcha-reCAPTCHA.spec, 1.2, 1.3 Message-ID: <20090726040639.736D711C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Captcha-reCAPTCHA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23633 Modified Files: perl-Captcha-reCAPTCHA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Captcha-reCAPTCHA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Captcha-reCAPTCHA/devel/perl-Captcha-reCAPTCHA.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Captcha-reCAPTCHA.spec 26 Feb 2009 11:57:21 -0000 1.2 +++ perl-Captcha-reCAPTCHA.spec 26 Jul 2009 04:06:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Captcha-reCAPTCHA Version: 0.92 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl implementation of the reCAPTCHA API License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.92-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.92-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:06:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:06:57 +0000 (UTC) Subject: rpms/perl-Capture-Tiny/devel perl-Capture-Tiny.spec,1.1,1.2 Message-ID: <20090726040657.A3D8511C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Capture-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24931 Modified Files: perl-Capture-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Capture-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Capture-Tiny/devel/perl-Capture-Tiny.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Capture-Tiny.spec 29 Apr 2009 08:58:51 -0000 1.1 +++ perl-Capture-Tiny.spec 26 Jul 2009 04:06:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Capture-Tiny Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Capture STDOUT and STDERR from Perl, XS or external programs License: ASL 2.0 Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Marcela Ma?l??ov? 0.05-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 04:07:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:07:12 +0000 (UTC) Subject: rpms/perl-Carp-Assert/devel perl-Carp-Assert.spec,1.7,1.8 Message-ID: <20090726040712.BE92C11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Carp-Assert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25130 Modified Files: perl-Carp-Assert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Carp-Assert.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Carp-Assert/devel/perl-Carp-Assert.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Carp-Assert.spec 26 Feb 2009 11:58:20 -0000 1.7 +++ perl-Carp-Assert.spec 26 Jul 2009 04:07:12 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Carp-Assert Version: 0.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Executable comments Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:07:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:07:27 +0000 (UTC) Subject: rpms/perl-Carp-Assert-More/devel perl-Carp-Assert-More.spec, 1.7, 1.8 Message-ID: <20090726040727.9877E11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Carp-Assert-More/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25307 Modified Files: perl-Carp-Assert-More.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Carp-Assert-More.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Carp-Assert-More/devel/perl-Carp-Assert-More.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Carp-Assert-More.spec 26 Feb 2009 11:59:22 -0000 1.7 +++ perl-Carp-Assert-More.spec 26 Jul 2009 04:07:27 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Carp-Assert-More Version: 1.12 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convenience wrappers around Carp::Assert Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:07:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:07:50 +0000 (UTC) Subject: rpms/perl-Carp-Clan/devel perl-Carp-Clan.spec,1.19,1.20 Message-ID: <20090726040750.AD7D811C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Carp-Clan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25574 Modified Files: perl-Carp-Clan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Carp-Clan.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Carp-Clan/devel/perl-Carp-Clan.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Carp-Clan.spec 22 Mar 2009 17:10:11 -0000 1.19 +++ perl-Carp-Clan.spec 26 Jul 2009 04:07:50 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-Carp-Clan Version: 6.00 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module to print improved warning messages Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6.00-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Robert Scheck - 6.00-4 - Really remove the no-prompt patch to avoid RPM rebuild errors From jkeating at fedoraproject.org Sun Jul 26 04:08:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:08:14 +0000 (UTC) Subject: rpms/perl-Carp-Clan-Share/devel perl-Carp-Clan-Share.spec,1.1,1.2 Message-ID: <20090726040815.04DC111C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Carp-Clan-Share/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25886 Modified Files: perl-Carp-Clan-Share.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Carp-Clan-Share.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Carp-Clan-Share/devel/perl-Carp-Clan-Share.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Carp-Clan-Share.spec 27 May 2009 03:17:12 -0000 1.1 +++ perl-Carp-Clan-Share.spec 26 Jul 2009 04:08:14 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Carp-Clan-Share Version: 0.013 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Share your Carp::Clan settings with your whole Clan License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.013-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Iain Arnell 0.013-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 04:08:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:08:32 +0000 (UTC) Subject: rpms/perl-Catalyst-Action-RenderView/devel perl-Catalyst-Action-RenderView.spec, 1.9, 1.10 Message-ID: <20090726040832.3017A11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Action-RenderView/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26964 Modified Files: perl-Catalyst-Action-RenderView.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Action-RenderView.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Action-RenderView/devel/perl-Catalyst-Action-RenderView.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Catalyst-Action-RenderView.spec 29 May 2009 06:48:39 -0000 1.9 +++ perl-Catalyst-Action-RenderView.spec 26 Jul 2009 04:08:31 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Action-RenderView Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sensible default end action for view renders License: GPL+ or Artistic Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Chris Weyl 0.10-2 - add a br on CPAN (for now) From jkeating at fedoraproject.org Sun Jul 26 04:08:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:08:49 +0000 (UTC) Subject: rpms/perl-Catalyst-Authentication-Store-DBIx-Class/devel perl-Catalyst-Authentication-Store-DBIx-Class.spec, 1.2, 1.3 Message-ID: <20090726040849.18C0611C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Authentication-Store-DBIx-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27458 Modified Files: perl-Catalyst-Authentication-Store-DBIx-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Authentication-Store-DBIx-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Authentication-Store-DBIx-Class/devel/perl-Catalyst-Authentication-Store-DBIx-Class.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Catalyst-Authentication-Store-DBIx-Class.spec 26 Feb 2009 12:02:15 -0000 1.2 +++ perl-Catalyst-Authentication-Store-DBIx-Class.spec 26 Jul 2009 04:08:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Authentication-Store-DBIx-Class Version: 0.1082 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A storage class for Catalyst Authentication using DBIx::Class License: GPL+ or Artistic Group: Development/Libraries @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1082-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1082-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:09:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:09:05 +0000 (UTC) Subject: rpms/perl-Catalyst-Component-InstancePerContext/devel perl-Catalyst-Component-InstancePerContext.spec, 1.2, 1.3 Message-ID: <20090726040905.757CE11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Component-InstancePerContext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29716 Modified Files: perl-Catalyst-Component-InstancePerContext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Component-InstancePerContext.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Component-InstancePerContext/devel/perl-Catalyst-Component-InstancePerContext.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Catalyst-Component-InstancePerContext.spec 26 Feb 2009 12:03:09 -0000 1.2 +++ perl-Catalyst-Component-InstancePerContext.spec 26 Jul 2009 04:09:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Component-InstancePerContext Version: 0.001001 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Return a new instance a component on each request License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.001001-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.001001-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:09:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:09:23 +0000 (UTC) Subject: rpms/perl-Catalyst-Controller-BindLex/devel perl-Catalyst-Controller-BindLex.spec, 1.4, 1.5 Message-ID: <20090726040923.9A65011C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Controller-BindLex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31543 Modified Files: perl-Catalyst-Controller-BindLex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Controller-BindLex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-BindLex/devel/perl-Catalyst-Controller-BindLex.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Controller-BindLex.spec 26 Feb 2009 12:04:03 -0000 1.4 +++ perl-Catalyst-Controller-BindLex.spec 26 Jul 2009 04:09:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Controller-BindLex Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Stash your lexical goodness License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:09:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:09:45 +0000 (UTC) Subject: rpms/perl-Catalyst-Controller-FormBuilder/devel perl-Catalyst-Controller-FormBuilder.spec, 1.5, 1.6 Message-ID: <20090726040945.7D3D411C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Controller-FormBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2665 Modified Files: perl-Catalyst-Controller-FormBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Controller-FormBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-FormBuilder/devel/perl-Catalyst-Controller-FormBuilder.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-Controller-FormBuilder.spec 31 May 2009 06:36:03 -0000 1.5 +++ perl-Catalyst-Controller-FormBuilder.spec 26 Jul 2009 04:09:45 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Controller-FormBuilder Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Catalyst FormBuilder Base Controller License: GPL+ or Artistic Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Chris Weyl 0.05-2 - add br on CPAN From jkeating at fedoraproject.org Sun Jul 26 04:10:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:10:01 +0000 (UTC) Subject: rpms/perl-Catalyst-Controller-HTML-FormFu/devel perl-Catalyst-Controller-HTML-FormFu.spec, 1.5, 1.6 Message-ID: <20090726041001.84B2311C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6080 Modified Files: perl-Catalyst-Controller-HTML-FormFu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Controller-HTML-FormFu.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Controller-HTML-FormFu/devel/perl-Catalyst-Controller-HTML-FormFu.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-Controller-HTML-FormFu.spec 8 Jul 2009 06:06:41 -0000 1.5 +++ perl-Catalyst-Controller-HTML-FormFu.spec 26 Jul 2009 04:10:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Controller-HTML-FormFu Version: 0.05000 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTML::FormFu controller for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05000-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Iain Arnell 0.05000-1 - update to latest upstream version - BR perl(namespace::autoclean) From jkeating at fedoraproject.org Sun Jul 26 04:10:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:10:18 +0000 (UTC) Subject: rpms/perl-Catalyst-Devel/devel perl-Catalyst-Devel.spec,1.14,1.15 Message-ID: <20090726041018.1A41411C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10237 Modified Files: perl-Catalyst-Devel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Devel/devel/perl-Catalyst-Devel.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Catalyst-Devel.spec 17 Jun 2009 17:07:29 -0000 1.14 +++ perl-Catalyst-Devel.spec 26 Jul 2009 04:10:17 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Devel Version: 1.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Catalyst Development Tools License: GPL+ or Artistic Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf %{buildroot} %exclude %{perl_vendorlib}/Catalyst/Restarter/Win32.pm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Chris Weyl 1.18-3 - exclude Catalyst::Restarter::Win32 (dep issues and unneeded on this platform) From jkeating at fedoraproject.org Sun Jul 26 04:10:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:10:38 +0000 (UTC) Subject: rpms/perl-Catalyst-Engine-Apache/devel perl-Catalyst-Engine-Apache.spec, 1.2, 1.3 Message-ID: <20090726041038.9E7DC11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Engine-Apache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15376 Modified Files: perl-Catalyst-Engine-Apache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Engine-Apache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Engine-Apache/devel/perl-Catalyst-Engine-Apache.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Catalyst-Engine-Apache.spec 26 Feb 2009 12:07:50 -0000 1.2 +++ perl-Catalyst-Engine-Apache.spec 26 Jul 2009 04:10:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Engine-Apache Version: 1.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Catalyst Apache Engines License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:10:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:10:54 +0000 (UTC) Subject: rpms/perl-Catalyst-Helper-FastCGI-ExternalServer/devel perl-Catalyst-Helper-FastCGI-ExternalServer.spec, 1.1, 1.2 Message-ID: <20090726041054.B321711C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Helper-FastCGI-ExternalServer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19419 Modified Files: perl-Catalyst-Helper-FastCGI-ExternalServer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Helper-FastCGI-ExternalServer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Helper-FastCGI-ExternalServer/devel/perl-Catalyst-Helper-FastCGI-ExternalServer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-Helper-FastCGI-ExternalServer.spec 4 Jun 2009 16:26:03 -0000 1.1 +++ perl-Catalyst-Helper-FastCGI-ExternalServer.spec 26 Jul 2009 04:10:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Helper-FastCGI-ExternalServer Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Catalyst/Helper/FastCGI/ExternalServer.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Chris Weyl 0.05-1 - submission From jkeating at fedoraproject.org Sun Jul 26 04:11:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:11:12 +0000 (UTC) Subject: rpms/perl-Catalyst-Log-Log4perl/devel perl-Catalyst-Log-Log4perl.spec, 1.4, 1.5 Message-ID: <20090726041112.3AEE711C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Log-Log4perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22083 Modified Files: perl-Catalyst-Log-Log4perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Log-Log4perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Log-Log4perl/devel/perl-Catalyst-Log-Log4perl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Log-Log4perl.spec 8 Apr 2009 15:26:45 -0000 1.4 +++ perl-Catalyst-Log-Log4perl.spec 26 Jul 2009 04:11:11 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Log-Log4perl Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Log::Log4perl logging for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 1.03-1 - update to latest upstream From jkeating at fedoraproject.org Sun Jul 26 04:11:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:11:26 +0000 (UTC) Subject: rpms/perl-Catalyst-Manual/devel perl-Catalyst-Manual.spec, 1.16, 1.17 Message-ID: <20090726041126.C525411C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Manual/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25759 Modified Files: perl-Catalyst-Manual.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Manual.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Manual/devel/perl-Catalyst-Manual.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Catalyst-Manual.spec 8 Jun 2009 04:39:11 -0000 1.16 +++ perl-Catalyst-Manual.spec 26 Jul 2009 04:11:26 -0000 1.17 @@ -1,7 +1,7 @@ Name: perl-Catalyst-Manual Epoch: 1 Version: 5.8000 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Catalyst web framework manual License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:5.8000-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Chris Weyl 5.8000-2 - add br on CPAN until bundled M::I is installed From jkeating at fedoraproject.org Sun Jul 26 04:11:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:11:41 +0000 (UTC) Subject: rpms/perl-Catalyst-Model-DBIC-Schema/devel perl-Catalyst-Model-DBIC-Schema.spec, 1.4, 1.5 Message-ID: <20090726041141.1984711C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Model-DBIC-Schema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28797 Modified Files: perl-Catalyst-Model-DBIC-Schema.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Model-DBIC-Schema.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Model-DBIC-Schema/devel/perl-Catalyst-Model-DBIC-Schema.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Model-DBIC-Schema.spec 5 Apr 2009 05:31:54 -0000 1.4 +++ perl-Catalyst-Model-DBIC-Schema.spec 26 Jul 2009 04:11:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Model-DBIC-Schema Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DBIx::Class::Schema Model Class License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Chris Weyl 0.23-1 - update to 0.23 From jkeating at fedoraproject.org Sun Jul 26 04:11:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:11:55 +0000 (UTC) Subject: rpms/perl-Catalyst-Model-LDAP/devel perl-Catalyst-Model-LDAP.spec, 1.4, 1.5 Message-ID: <20090726041155.DEFE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Model-LDAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32003 Modified Files: perl-Catalyst-Model-LDAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Model-LDAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Model-LDAP/devel/perl-Catalyst-Model-LDAP.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Model-LDAP.spec 26 Feb 2009 12:11:44 -0000 1.4 +++ perl-Catalyst-Model-LDAP.spec 26 Jul 2009 04:11:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Model-LDAP Version: 0.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: LDAP model class for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:12:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:12:13 +0000 (UTC) Subject: rpms/perl-Catalyst-Model-XMLRPC/devel perl-Catalyst-Model-XMLRPC.spec, 1.3, 1.4 Message-ID: <20090726041213.56B1D11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Model-XMLRPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32201 Modified Files: perl-Catalyst-Model-XMLRPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Model-XMLRPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Model-XMLRPC/devel/perl-Catalyst-Model-XMLRPC.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Catalyst-Model-XMLRPC.spec 26 Feb 2009 12:12:37 -0000 1.3 +++ perl-Catalyst-Model-XMLRPC.spec 26 Jul 2009 04:12:13 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Model-XMLRPC Version: 0.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XMLRPC model class for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:12:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:12:28 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Authentication/devel perl-Catalyst-Plugin-Authentication.spec, 1.9, 1.10 Message-ID: <20090726041228.B54E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authentication/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32438 Modified Files: perl-Catalyst-Plugin-Authentication.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Authentication.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authentication/devel/perl-Catalyst-Plugin-Authentication.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Catalyst-Plugin-Authentication.spec 15 Jun 2009 05:46:37 -0000 1.9 +++ perl-Catalyst-Plugin-Authentication.spec 26 Jul 2009 04:12:28 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Authentication Version: 0.10012 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Infrastructure plugin for the Catalyst authentication framework License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10012-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Chris Weyl 0.10012-1 - switch fitering system to a cleaner one - auto-update to 0.10012 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 04:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:12:44 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Authorization-ACL/devel perl-Catalyst-Plugin-Authorization-ACL.spec, 1.3, 1.4 Message-ID: <20090726041244.ACEE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authorization-ACL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32627 Modified Files: perl-Catalyst-Plugin-Authorization-ACL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Authorization-ACL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authorization-ACL/devel/perl-Catalyst-Plugin-Authorization-ACL.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Catalyst-Plugin-Authorization-ACL.spec 26 Feb 2009 12:14:29 -0000 1.3 +++ perl-Catalyst-Plugin-Authorization-ACL.spec 26 Jul 2009 04:12:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Authorization-ACL Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ACL Support for Catalyst Applications License: GPL+ or Artistic Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:12:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:12:59 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Authorization-Roles/devel perl-Catalyst-Plugin-Authorization-Roles.spec, 1.2, 1.3 Message-ID: <20090726041259.9A61811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authorization-Roles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv323 Modified Files: perl-Catalyst-Plugin-Authorization-Roles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Authorization-Roles.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Authorization-Roles/devel/perl-Catalyst-Plugin-Authorization-Roles.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Catalyst-Plugin-Authorization-Roles.spec 26 Feb 2009 12:15:27 -0000 1.2 +++ perl-Catalyst-Plugin-Authorization-Roles.spec 26 Jul 2009 04:12:59 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Authorization-Roles Version: 0.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Role based authorization for Catalyst based on Catalyst::Plugin::Authentication License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:13:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:13:14 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-CGI-Untaint/devel perl-Catalyst-Plugin-CGI-Untaint.spec, 1.4, 1.5 Message-ID: <20090726041314.C608B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-CGI-Untaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv503 Modified Files: perl-Catalyst-Plugin-CGI-Untaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-CGI-Untaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-CGI-Untaint/devel/perl-Catalyst-Plugin-CGI-Untaint.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Plugin-CGI-Untaint.spec 26 Feb 2009 12:16:27 -0000 1.4 +++ perl-Catalyst-Plugin-CGI-Untaint.spec 26 Jul 2009 04:13:14 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-CGI-Untaint Version: 0.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: CGI::Untaint Plugin for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:13:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:13:30 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Cache/devel perl-Catalyst-Plugin-Cache.spec, 1.1, 1.2 Message-ID: <20090726041330.C140011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv676 Modified Files: perl-Catalyst-Plugin-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Cache/devel/perl-Catalyst-Plugin-Cache.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-Plugin-Cache.spec 4 May 2009 05:34:01 -0000 1.1 +++ perl-Catalyst-Plugin-Cache.spec 26 Jul 2009 04:13:30 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Cache Version: 0.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Flexible caching support for Catalyst License: (GPL+ or Artistic) or MIT Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Iain Arnell 0.08-2 - add missing requires From jkeating at fedoraproject.org Sun Jul 26 04:13:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:13:45 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-ConfigLoader/devel perl-Catalyst-Plugin-ConfigLoader.spec, 1.9, 1.10 Message-ID: <20090726041345.9A7DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-ConfigLoader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv846 Modified Files: perl-Catalyst-Plugin-ConfigLoader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-ConfigLoader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-ConfigLoader/devel/perl-Catalyst-Plugin-ConfigLoader.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Catalyst-Plugin-ConfigLoader.spec 25 May 2009 07:36:49 -0000 1.9 +++ perl-Catalyst-Plugin-ConfigLoader.spec 26 Jul 2009 04:13:45 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-ConfigLoader Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Load config files of various types License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Chris Weyl 0.23-1 - auto-update to 0.23 (by cpan-spec-update 0.01) - added a new br on perl(Catalyst::Runtime) (version 5.7008) From jkeating at fedoraproject.org Sun Jul 26 04:14:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:14:00 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Email/devel perl-Catalyst-Plugin-Email.spec, 1.1, 1.2 Message-ID: <20090726041400.AD62E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Email/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1021 Modified Files: perl-Catalyst-Plugin-Email.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Email.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Email/devel/perl-Catalyst-Plugin-Email.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-Plugin-Email.spec 1 Mar 2009 04:38:38 -0000 1.1 +++ perl-Catalyst-Plugin-Email.spec 26 Jul 2009 04:14:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Email Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Send emails with Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Iain Arnell 0.08-1 - Specfile autogenerated by cpanspec 1.77. - cleanup BR/R From jkeating at fedoraproject.org Sun Jul 26 04:14:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:14:16 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-I18N/devel perl-Catalyst-Plugin-I18N.spec, 1.4, 1.5 Message-ID: <20090726041416.4254511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-I18N/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1197 Modified Files: perl-Catalyst-Plugin-I18N.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-I18N.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-I18N/devel/perl-Catalyst-Plugin-I18N.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Plugin-I18N.spec 24 May 2009 13:33:39 -0000 1.4 +++ perl-Catalyst-Plugin-I18N.spec 26 Jul 2009 04:14:16 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-I18N Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: I18N for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Iain Arnell 0.09-2 - add missing requires perl(Locale::Maketext::Lexicon) From jkeating at fedoraproject.org Sun Jul 26 04:14:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:14:33 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session/devel perl-Catalyst-Plugin-Session.spec, 1.6, 1.7 Message-ID: <20090726041433.C1DDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1466 Modified Files: perl-Catalyst-Plugin-Session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Session.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session/devel/perl-Catalyst-Plugin-Session.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Catalyst-Plugin-Session.spec 27 May 2009 02:56:10 -0000 1.6 +++ perl-Catalyst-Plugin-Session.spec 26 Jul 2009 04:14:32 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Session Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Catalyst generic session plugin License: GPL+ or Artistic Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Iain Arnell 0.22-2 - add missing requires perl(MooseX::Emulate::Class::Accessor::Fast) From jkeating at fedoraproject.org Sun Jul 26 04:14:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:14:49 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-State-Cookie/devel perl-Catalyst-Plugin-Session-State-Cookie.spec, 1.6, 1.7 Message-ID: <20090726041449.94CF311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-Cookie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1838 Modified Files: perl-Catalyst-Plugin-Session-State-Cookie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Session-State-Cookie.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-Cookie/devel/perl-Catalyst-Plugin-Session-State-Cookie.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Catalyst-Plugin-Session-State-Cookie.spec 29 May 2009 07:21:21 -0000 1.6 +++ perl-Catalyst-Plugin-Session-State-Cookie.spec 26 Jul 2009 04:14:49 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Session-State-Cookie Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Maintain session IDs using cookies License: GPL+ or Artistic Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Chris Weyl 0.11-2 - add br on CPAN From jkeating at fedoraproject.org Sun Jul 26 04:15:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:15:12 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-State-URI/devel perl-Catalyst-Plugin-Session-State-URI.spec, 1.3, 1.4 Message-ID: <20090726041512.8E97511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2314 Modified Files: perl-Catalyst-Plugin-Session-State-URI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Session-State-URI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel/perl-Catalyst-Plugin-Session-State-URI.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Catalyst-Plugin-Session-State-URI.spec 8 Apr 2009 15:31:36 -0000 1.3 +++ perl-Catalyst-Plugin-Session-State-URI.spec 26 Jul 2009 04:15:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Session-State-URI Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Saves session IDs by rewriting URIs delivered to the client License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 0.09-1 - update to latest upstream From jkeating at fedoraproject.org Sun Jul 26 04:15:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:15:29 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-Store-FastMmap/devel perl-Catalyst-Plugin-Session-Store-FastMmap.spec, 1.6, 1.7 Message-ID: <20090726041529.397CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-Store-FastMmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2691 Modified Files: perl-Catalyst-Plugin-Session-Store-FastMmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Session-Store-FastMmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-Store-FastMmap/devel/perl-Catalyst-Plugin-Session-Store-FastMmap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Catalyst-Plugin-Session-Store-FastMmap.spec 21 Jun 2009 07:25:28 -0000 1.6 +++ perl-Catalyst-Plugin-Session-Store-FastMmap.spec 26 Jul 2009 04:15:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Session-Store-FastMmap Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: FastMmap session storage backend License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Iain Arnell 0.11-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 04:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:15:47 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-Store-File/devel perl-Catalyst-Plugin-Session-Store-File.spec, 1.5, 1.6 Message-ID: <20090726041547.B80E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-Store-File/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2876 Modified Files: perl-Catalyst-Plugin-Session-Store-File.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Session-Store-File.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-Store-File/devel/perl-Catalyst-Plugin-Session-Store-File.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-Plugin-Session-Store-File.spec 21 Jun 2009 07:34:07 -0000 1.5 +++ perl-Catalyst-Plugin-Session-Store-File.spec 26 Jul 2009 04:15:47 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Session-Store-File Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File storage backend for session data License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Iain Arnell 0.17-1 - update to latest upstream version - pretend that CPANPLUS is running From jkeating at fedoraproject.org Sun Jul 26 04:16:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:16:02 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Setenv/devel perl-Catalyst-Plugin-Setenv.spec, 1.1, 1.2 Message-ID: <20090726041602.D4C4C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Setenv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3070 Modified Files: perl-Catalyst-Plugin-Setenv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Setenv.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Setenv/devel/perl-Catalyst-Plugin-Setenv.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-Plugin-Setenv.spec 4 May 2009 05:35:34 -0000 1.1 +++ perl-Catalyst-Plugin-Setenv.spec 26 Jul 2009 04:16:02 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Setenv Version: 0.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Catalyst::Plugin::Setenv Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Iain Arnell 0.03-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 04:16:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:16:17 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Singleton/devel perl-Catalyst-Plugin-Singleton.spec, 1.1, 1.2 Message-ID: <20090726041617.CB80511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Singleton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3248 Modified Files: perl-Catalyst-Plugin-Singleton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Singleton.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Singleton/devel/perl-Catalyst-Plugin-Singleton.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-Plugin-Singleton.spec 1 Mar 2009 04:55:24 -0000 1.1 +++ perl-Catalyst-Plugin-Singleton.spec 26 Jul 2009 04:16:17 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Singleton Version: 0.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Singleton to context License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Iain Arnell 0.02-1 - Specfile autogenerated by cpanspec 1.77. - enable pod tests From jkeating at fedoraproject.org Sun Jul 26 04:16:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:16:32 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-StackTrace/devel perl-Catalyst-Plugin-StackTrace.spec, 1.7, 1.8 Message-ID: <20090726041632.D74E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-StackTrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3443 Modified Files: perl-Catalyst-Plugin-StackTrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-StackTrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-StackTrace/devel/perl-Catalyst-Plugin-StackTrace.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Catalyst-Plugin-StackTrace.spec 31 May 2009 07:04:28 -0000 1.7 +++ perl-Catalyst-Plugin-StackTrace.spec 26 Jul 2009 04:16:32 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-StackTrace Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Display a stack trace on the debug screen License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Chris Weyl 0.10-1 - auto-update to 0.10 (by cpan-spec-update 0.01) - added a new br on perl(MRO::Compat) (version 0.10) From jkeating at fedoraproject.org Sun Jul 26 04:16:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:16:48 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Static-Simple/devel perl-Catalyst-Plugin-Static-Simple.spec, 1.8, 1.9 Message-ID: <20090726041648.B72FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Static-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3651 Modified Files: perl-Catalyst-Plugin-Static-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Static-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Static-Simple/devel/perl-Catalyst-Plugin-Static-Simple.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Catalyst-Plugin-Static-Simple.spec 25 May 2009 07:34:48 -0000 1.8 +++ perl-Catalyst-Plugin-Static-Simple.spec 26 Jul 2009 04:16:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Static-Simple Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Make serving static pages painless License: GPL+ or Artistic Group: Development/Libraries @@ -87,6 +87,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Chris Weyl 0.21-1 - auto-update to 0.21 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.50) From jkeating at fedoraproject.org Sun Jul 26 04:17:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:17:03 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-SubRequest/devel perl-Catalyst-Plugin-SubRequest.spec, 1.5, 1.6 Message-ID: <20090726041703.D346411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-SubRequest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3855 Modified Files: perl-Catalyst-Plugin-SubRequest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-SubRequest.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-SubRequest/devel/perl-Catalyst-Plugin-SubRequest.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-Plugin-SubRequest.spec 26 Feb 2009 12:24:03 -0000 1.5 +++ perl-Catalyst-Plugin-SubRequest.spec 26 Jul 2009 04:17:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-SubRequest Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Make subrequests to actions in Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:17:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:17:18 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Unicode/devel perl-Catalyst-Plugin-Unicode.spec, 1.2, 1.3 Message-ID: <20090726041718.99BBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Unicode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4071 Modified Files: perl-Catalyst-Plugin-Unicode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Plugin-Unicode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Unicode/devel/perl-Catalyst-Plugin-Unicode.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Catalyst-Plugin-Unicode.spec 22 Apr 2009 04:08:08 -0000 1.2 +++ perl-Catalyst-Plugin-Unicode.spec 26 Jul 2009 04:17:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Plugin-Unicode Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unicode aware Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Iain Arnell 0.91-1 - update to 0.91 - BR perl(MRO::Compat) From jkeating at fedoraproject.org Sun Jul 26 04:17:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:17:34 +0000 (UTC) Subject: rpms/perl-Catalyst-Runtime/devel perl-Catalyst-Runtime.spec, 1.17, 1.18 Message-ID: <20090726041734.E008011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-Runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4241 Modified Files: perl-Catalyst-Runtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-Runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Runtime/devel/perl-Catalyst-Runtime.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Catalyst-Runtime.spec 1 Jul 2009 16:01:49 -0000 1.17 +++ perl-Catalyst-Runtime.spec 26 Jul 2009 04:17:34 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-Catalyst-Runtime Version: 5.80005 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Catalyst core modules License: GPL+ or Artistic Group: Development/Libraries @@ -177,6 +177,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.80005-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Chris Weyl 5.80005-3 - flesh out to full requires list (from upstream metadata) - auto-update to 5.80005 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 04:17:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:17:50 +0000 (UTC) Subject: rpms/perl-Catalyst-View-Email/devel perl-Catalyst-View-Email.spec, 1.1, 1.2 Message-ID: <20090726041750.A8F6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-View-Email/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4408 Modified Files: perl-Catalyst-View-Email.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-View-Email.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-View-Email/devel/perl-Catalyst-View-Email.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-View-Email.spec 13 May 2009 15:02:33 -0000 1.1 +++ perl-Catalyst-View-Email.spec 26 Jul 2009 04:17:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-View-Email Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Send Email from Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -59,5 +59,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 0.13-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 04:18:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:18:06 +0000 (UTC) Subject: rpms/perl-Catalyst-View-JSON/devel perl-Catalyst-View-JSON.spec, 1.4, 1.5 Message-ID: <20090726041806.110CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-View-JSON/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4565 Modified Files: perl-Catalyst-View-JSON.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-View-JSON.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-View-JSON/devel/perl-Catalyst-View-JSON.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-View-JSON.spec 31 May 2009 07:10:01 -0000 1.4 +++ perl-Catalyst-View-JSON.spec 26 Jul 2009 04:18:05 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Catalyst-View-JSON Version: 0.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: JSON view for your data License: GPL+ or Artistic 2.0 Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Chris Weyl 0.25-1 - auto-update to 0.25 (by cpan-spec-update 0.01) - added a new br on perl(MRO::Compat) (version 0) From jkeating at fedoraproject.org Sun Jul 26 04:18:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:18:21 +0000 (UTC) Subject: rpms/perl-Catalyst-View-Mason/devel perl-Catalyst-View-Mason.spec, 1.1, 1.2 Message-ID: <20090726041821.E84BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-View-Mason/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4742 Modified Files: perl-Catalyst-View-Mason.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-View-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-View-Mason/devel/perl-Catalyst-View-Mason.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-View-Mason.spec 11 May 2009 03:14:36 -0000 1.1 +++ perl-Catalyst-View-Mason.spec 26 Jul 2009 04:18:21 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-View-Mason Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mason View Class License: GPL+ or Artistic Group: Development/Libraries @@ -57,5 +57,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 0.17-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 04:18:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:18:40 +0000 (UTC) Subject: rpms/perl-Catalyst-View-PDF-Reuse/devel perl-Catalyst-View-PDF-Reuse.spec, 1.1, 1.2 Message-ID: <20090726041840.1711D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-View-PDF-Reuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4935 Modified Files: perl-Catalyst-View-PDF-Reuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-View-PDF-Reuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-View-PDF-Reuse/devel/perl-Catalyst-View-PDF-Reuse.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Catalyst-View-PDF-Reuse.spec 22 Jun 2009 04:57:51 -0000 1.1 +++ perl-Catalyst-View-PDF-Reuse.spec 26 Jul 2009 04:18:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Catalyst-View-PDF-Reuse Version: 0.03 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Catalyst/Helper/View/PDF/Reuse.pm -> GPL+ or Artistic # lib/Catalyst/View/PDF/Reuse.pm -> GPL+ or Artistic # lib/Template/Plugin/Catalyst/View/PDF/Reuse.pm -> GPL+ or Artistic @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Chris Weyl 0.03-1 - submission From jkeating at fedoraproject.org Sun Jul 26 04:18:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:18:54 +0000 (UTC) Subject: rpms/perl-Catalyst-View-TT/devel perl-Catalyst-View-TT.spec, 1.5, 1.6 Message-ID: <20090726041854.B83CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Catalyst-View-TT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5119 Modified Files: perl-Catalyst-View-TT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Catalyst-View-TT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-View-TT/devel/perl-Catalyst-View-TT.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-View-TT.spec 28 Feb 2009 06:21:26 -0000 1.5 +++ perl-Catalyst-View-TT.spec 26 Jul 2009 04:18:54 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Catalyst-View-TT Version: 0.29 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Template Toolkit View Class License: GPL+ or Artistic Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Chris Weyl 0.29-1 - update to 0.29 From jkeating at fedoraproject.org Sun Jul 26 04:19:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:19:10 +0000 (UTC) Subject: rpms/perl-Cflow/devel perl-Cflow.spec,1.10,1.11 Message-ID: <20090726041910.B1B5611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Cflow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5288 Modified Files: perl-Cflow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Cflow.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cflow/devel/perl-Cflow.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Cflow.spec 26 Feb 2009 12:27:36 -0000 1.10 +++ perl-Cflow.spec 26 Jul 2009 04:19:10 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Cflow Version: 1.053 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Find flows in raw IP flow files Group: Development/Libraries License: GPLv2+ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.053-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.053-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:19:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:19:26 +0000 (UTC) Subject: rpms/perl-Chart/devel perl-Chart.spec,1.12,1.13 Message-ID: <20090726041926.5140011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Chart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5436 Modified Files: perl-Chart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Chart.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Chart/devel/perl-Chart.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Chart.spec 26 Feb 2009 12:28:30 -0000 1.12 +++ perl-Chart.spec 26 Jul 2009 04:19:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Chart Version: 2.4.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl module for producing many types of charts License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Chart.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.4.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:19:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:19:41 +0000 (UTC) Subject: rpms/perl-Chatbot-Eliza/devel perl-Chatbot-Eliza.spec,1.5,1.6 Message-ID: <20090726041941.953EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Chatbot-Eliza/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5625 Modified Files: perl-Chatbot-Eliza.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Chatbot-Eliza.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Chatbot-Eliza/devel/perl-Chatbot-Eliza.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Chatbot-Eliza.spec 26 Feb 2009 12:29:22 -0000 1.5 +++ perl-Chatbot-Eliza.spec 26 Jul 2009 04:19:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Chatbot-Eliza Version: 1.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Implementation of the Eliza algorithm License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:19:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:19:57 +0000 (UTC) Subject: rpms/perl-Check-ISA/devel perl-Check-ISA.spec,1.3,1.4 Message-ID: <20090726041957.CACC611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Check-ISA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5792 Modified Files: perl-Check-ISA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Check-ISA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Check-ISA/devel/perl-Check-ISA.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Check-ISA.spec 26 Feb 2009 12:30:17 -0000 1.3 +++ perl-Check-ISA.spec 26 Jul 2009 04:19:57 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-Check-ISA Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/Check/ISA.pm License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kkofler at fedoraproject.org Sun Jul 26 04:20:01 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 04:20:01 +0000 (UTC) Subject: rpms/kdelibs/F-11 kdelibs-4.2.4-cve-2009-0945.patch, NONE, 1.1 kdelibs-4.2.4-cve-2009-1690.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1687.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1698.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1725.patch, NONE, 1.1 kdelibs.spec, 1.485, 1.486 Message-ID: <20090726042001.87C8611C00CE@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5812/F-11 Modified Files: kdelibs.spec Added Files: kdelibs-4.2.4-cve-2009-0945.patch kdelibs-4.2.4-cve-2009-1690.patch kdelibs-4.2.98-cve-2009-1687.patch kdelibs-4.2.98-cve-2009-1698.patch kdelibs-4.2.98-cve-2009-1725.patch Log Message: * Sun Jul 26 2009 Kevin Kofler - 4.2.4-6 - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) - fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling - fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl kdelibs-4.2.4-cve-2009-0945.patch: SVGList.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.4-cve-2009-0945.patch --- Index: khtml/svg/SVGList.h =================================================================== --- khtml/svg/SVGList.h (revision 983301) +++ khtml/svg/SVGList.h (revision 983302) @@ -97,7 +97,11 @@ Item insertItemBefore(Item newItem, unsigned int index, ExceptionCode&) { - m_vector.insert(index, newItem); + if (index < m_vector.size()) { + m_vector.insert(index, newItem); + } else { + m_vector.append(newItem); + } return newItem; } kdelibs-4.2.4-cve-2009-1690.patch: htmlparser.cpp | 12 +++++------- htmlparser.h | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) --- NEW FILE kdelibs-4.2.4-cve-2009-1690.patch --- Index: khtml/html/htmlparser.h =================================================================== --- khtml/html/htmlparser.h (revision 983315) +++ khtml/html/htmlparser.h (revision 983316) @@ -157,7 +157,7 @@ /* * the head element. Needed for crappy html which defines after */ - DOM::HTMLHeadElementImpl *head; + RefPtr head; /* * a possible element in the head. Compatibility hack for Index: khtml/html/htmlparser.cpp =================================================================== --- khtml/html/htmlparser.cpp (revision 983315) +++ khtml/html/htmlparser.cpp (revision 983316) @@ -216,7 +216,6 @@ form = 0; map = 0; - head = 0; end = false; isindex = 0; @@ -678,8 +677,7 @@ case ID_BASE: if(!head) { head = new HTMLHeadElementImpl(document); - e = head; - insertNode(e); + insertNode(head.get()); handled = true; } break; @@ -894,7 +892,7 @@ case ID_HEAD: if(!head && (current->id() == ID_HTML || current->isDocumentNode())) { head = new HTMLHeadElementImpl(document); - n = head; + n = head.get(); } break; case ID_BODY: @@ -1907,19 +1905,19 @@ head = new HTMLHeadElementImpl(document); HTMLElementImpl *body = doc()->body(); int exceptioncode = 0; - doc()->documentElement()->insertBefore(head, body, exceptioncode); + doc()->documentElement()->insertBefore(head.get(), body, exceptioncode); if ( exceptioncode ) { #ifdef PARSER_DEBUG kDebug( 6035 ) << "creation of head failed!!!!:" << exceptioncode; #endif - delete head; + delete head.get(); head = 0; } // If the body does not exist yet, then the should be pushed as the current block. if (head && !body) { pushBlock(head->id(), tagPriority(head->id())); - setCurrent(head); + setCurrent(head.get()); } } kdelibs-4.2.98-cve-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-4.2.98-cve-2009-1687.patch --- diff -ur kdelibs-4.2.98/kjs/collector.cpp kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp --- kdelibs-4.2.98/kjs/collector.cpp 2009-04-30 20:02:44.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp 2009-07-26 03:52:44.000000000 +0200 @@ -31,6 +31,7 @@ #include "value.h" #include +#include #include #if PLATFORM(DARWIN) @@ -109,6 +110,9 @@ void append(CollectorBlock* block) { if (m_used == m_capacity) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (m_capacity > maxNumBlocks) + CRASH(); m_capacity = max(MIN_ARRAY_SIZE, m_capacity * GROWTH_FACTOR); m_data = static_cast(fastRealloc(m_data, m_capacity * sizeof(CollectorBlock *))); } kdelibs-4.2.98-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1698.patch --- diff -ur kdelibs-4.2.98/khtml/css/cssparser.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-4.2.98/khtml/css/cssparser.cpp 2009-07-21 17:16:12.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 04:19:38.000000000 +0200 @@ -1513,6 +1513,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1565,7 +1573,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-4.2.98/khtml/css/css_valueimpl.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-4.2.98/khtml/css/css_valueimpl.cpp 2009-05-14 19:27:35.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 04:17:28.000000000 +0200 @@ -1212,7 +1212,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; kdelibs-4.2.98-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002162) +++ khtml/html/htmltokenizer.cpp (revision 1002163) @@ -1038,7 +1038,7 @@ #ifdef TOKEN_DEBUG kDebug( 6036 ) << "unknown entity!"; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-11/kdelibs.spec,v retrieving revision 1.485 retrieving revision 1.486 diff -u -p -r1.485 -r1.486 --- kdelibs.spec 23 Jul 2009 10:12:02 -0000 1.485 +++ kdelibs.spec 26 Jul 2009 04:20:01 -0000 1.486 @@ -1,6 +1,6 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.4 -Release: 5%{?dist} +Release: 6%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -85,12 +85,21 @@ Patch50: kdelibs-4.2.3-fixPopupForPlasma # upstream # 4.2 branch - -# security -Patch100: kdelibs-4.2.4-cve-2009-2537-select-length.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +Patch100: kdelibs-4.2.4-cve-2009-1690.patch +# fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl +Patch101: kdelibs-4.2.4-cve-2009-0945.patch # 4.3 branch Patch200: kdelibs-4.1.96-AllowExternalPaths.patch +# fix CVE-2009-2537 - select length DoS +Patch201: kdelibs-4.2.4-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch202: kdelibs-4.2.98-cve-2009-1725.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) +Patch203: kdelibs-4.2.98-cve-2009-1687.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch204: kdelibs-4.2.98-cve-2009-1698.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -224,13 +233,17 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi %patch50 -p1 -b .fixPopupForPlasmaboard -%patch100 -p1 -b .cve-2009-2537-select-length - # upstream patches # 4.2 +%patch100 -p0 -b .cve-2009-1690 +%patch101 -p0 -b .cve-2009-0945 # 4.3 %patch200 -p1 -b .AllowExternalPaths +%patch201 -p1 -b .cve-2009-2537-select-length +%patch202 -p0 -b .cve-2009-1725 +%patch203 -p1 -b .cve-2009-1687 +%patch204 -p1 -b .cve-2009-1698 %build @@ -413,6 +426,13 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Kevin Kofler - 4.2.4-6 +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +- fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl + * Thu Jul 23 2009 Jaroslav Reznik - 4.2.4-5 - CVE-2009-2537 - select length DoS - correct fixPopupForPlasmaboard.patch From jkeating at fedoraproject.org Sun Jul 26 04:20:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:20:14 +0000 (UTC) Subject: rpms/perl-Class-Accessor/devel perl-Class-Accessor.spec,1.12,1.13 Message-ID: <20090726042014.DBCD711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Accessor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5995 Modified Files: perl-Class-Accessor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Accessor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Accessor/devel/perl-Class-Accessor.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Class-Accessor.spec 26 Feb 2009 12:31:13 -0000 1.12 +++ perl-Class-Accessor.spec 26 Jul 2009 04:20:14 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Class-Accessor Version: 0.31 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Automated accessor generation Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.31-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.31-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:20:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:20:29 +0000 (UTC) Subject: rpms/perl-Class-Accessor-Chained/devel perl-Class-Accessor-Chained.spec, 1.6, 1.7 Message-ID: <20090726042029.9ED6111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Accessor-Chained/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6209 Modified Files: perl-Class-Accessor-Chained.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Accessor-Chained.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Accessor-Chained/devel/perl-Class-Accessor-Chained.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Class-Accessor-Chained.spec 26 Feb 2009 12:32:08 -0000 1.6 +++ perl-Class-Accessor-Chained.spec 26 Jul 2009 04:20:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Class-Accessor-Chained Version: 0.01 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Make chained accessors Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:20:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:20:48 +0000 (UTC) Subject: rpms/perl-Class-Accessor-Grouped/devel perl-Class-Accessor-Grouped.spec, 1.8, 1.9 Message-ID: <20090726042048.0A29B11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Accessor-Grouped/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6419 Modified Files: perl-Class-Accessor-Grouped.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Accessor-Grouped.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Accessor-Grouped/devel/perl-Class-Accessor-Grouped.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-Accessor-Grouped.spec 2 Apr 2009 07:06:38 -0000 1.8 +++ perl-Class-Accessor-Grouped.spec 26 Jul 2009 04:20:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-Accessor-Grouped Version: 0.08003 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lets you build groups of accessors License: GPL+ or Artistic Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08003-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.08003-1 - update to 0.08003 From jkeating at fedoraproject.org Sun Jul 26 04:21:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:21:03 +0000 (UTC) Subject: rpms/perl-Class-Adapter/devel perl-Class-Adapter.spec,1.2,1.3 Message-ID: <20090726042103.40C4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Adapter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6634 Modified Files: perl-Class-Adapter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Adapter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Adapter/devel/perl-Class-Adapter.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Adapter.spec 26 Feb 2009 12:34:02 -0000 1.2 +++ perl-Class-Adapter.spec 26 Jul 2009 04:21:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Adapter Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl implementation of the "Adapter" Design Pattern License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:21:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:21:21 +0000 (UTC) Subject: rpms/perl-Class-Autouse/devel perl-Class-Autouse.spec,1.15,1.16 Message-ID: <20090726042121.1786111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Autouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6841 Modified Files: perl-Class-Autouse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Autouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Autouse/devel/perl-Class-Autouse.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Class-Autouse.spec 27 Feb 2009 05:04:48 -0000 1.15 +++ perl-Class-Autouse.spec 26 Jul 2009 04:21:20 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Class-Autouse Version: 1.29 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Run-time class loading on first method call License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.29-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ralf Cors?pius - 1.29-5 - Adjust minimum perl version in META.yml (Add Class-Autouse-1.29.diff). - BR: perl(List::Util) >= 1.19. From jkeating at fedoraproject.org Sun Jul 26 04:21:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:21:35 +0000 (UTC) Subject: rpms/perl-Class-Base/devel perl-Class-Base.spec,1.4,1.5 Message-ID: <20090726042135.B1D4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6970 Modified Files: perl-Class-Base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Base.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Base/devel/perl-Class-Base.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-Base.spec 26 Feb 2009 12:35:51 -0000 1.4 +++ perl-Class-Base.spec 26 Jul 2009 04:21:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-Base Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Useful base class for deriving other modules License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:21:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:21:50 +0000 (UTC) Subject: rpms/perl-Class-C3/devel perl-Class-C3.spec,1.11,1.12 Message-ID: <20090726042150.C79E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-C3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7116 Modified Files: perl-Class-C3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-C3.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-C3/devel/perl-Class-C3.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Class-C3.spec 2 Apr 2009 07:10:19 -0000 1.11 +++ perl-Class-C3.spec 26 Jul 2009 04:21:50 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Class-C3 Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pragma to use the C3 method resolution order algorithm License: GPL+ or Artistic Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.21-1 - update to 0.21 From jkeating at fedoraproject.org Sun Jul 26 04:22:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:22:05 +0000 (UTC) Subject: rpms/perl-Class-C3-Adopt-NEXT/devel perl-Class-C3-Adopt-NEXT.spec, 1.7, 1.8 Message-ID: <20090726042205.5B88E11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-C3-Adopt-NEXT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7248 Modified Files: perl-Class-C3-Adopt-NEXT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-C3-Adopt-NEXT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-C3-Adopt-NEXT/devel/perl-Class-C3-Adopt-NEXT.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-C3-Adopt-NEXT.spec 16 Jun 2009 05:19:18 -0000 1.7 +++ perl-Class-C3-Adopt-NEXT.spec 26 Jul 2009 04:22:05 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-C3-Adopt-NEXT Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Class/C3/Adopt/NEXT.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Chris Weyl 0.12-1 - auto-update to 0.12 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 04:22:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:22:21 +0000 (UTC) Subject: rpms/perl-Class-C3-Componentised/devel perl-Class-C3-Componentised.spec, 1.7, 1.8 Message-ID: <20090726042221.2F09D11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-C3-Componentised/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10867 Modified Files: perl-Class-C3-Componentised.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-C3-Componentised.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-C3-Componentised/devel/perl-Class-C3-Componentised.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-C3-Componentised.spec 23 May 2009 20:30:52 -0000 1.7 +++ perl-Class-C3-Componentised.spec 26 Jul 2009 04:22:20 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-C3-Componentised Version: 1.0005 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Load mix-ins or components to your C3-based class License: GPL+ or Artistic Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0005-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Chris Weyl 1.0005-1 - auto-update to 1.0005 (by cpan-spec-update 0.01) - added a new br on perl(FindBin) (version 0) From jkeating at fedoraproject.org Sun Jul 26 04:22:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:22:35 +0000 (UTC) Subject: rpms/perl-Class-C3-XS/devel perl-Class-C3-XS.spec,1.11,1.12 Message-ID: <20090726042235.EC00D11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-C3-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13805 Modified Files: perl-Class-C3-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-C3-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-C3-XS/devel/perl-Class-C3-XS.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Class-C3-XS.spec 2 Apr 2009 07:22:28 -0000 1.11 +++ perl-Class-C3-XS.spec 26 Jul 2009 04:22:35 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Class-C3-XS Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XS speedups for Class::C3 License: GPL+ or Artistic Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.11-1 - update to 0.11 From jkeating at fedoraproject.org Sun Jul 26 04:22:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:22:49 +0000 (UTC) Subject: rpms/perl-Class-CSV/devel perl-Class-CSV.spec,1.3,1.4 Message-ID: <20090726042249.7847211C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-CSV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16692 Modified Files: perl-Class-CSV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-CSV.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-CSV/devel/perl-Class-CSV.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Class-CSV.spec 26 Feb 2009 12:40:25 -0000 1.3 +++ perl-Class-CSV.spec 26 Jul 2009 04:22:49 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Class-CSV Version: 1.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Class based CSV parser/writer License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:23:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:23:02 +0000 (UTC) Subject: rpms/perl-Class-Can/devel perl-Class-Can.spec,1.2,1.3 Message-ID: <20090726042302.429AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Can/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17520 Modified Files: perl-Class-Can.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Can.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Can/devel/perl-Class-Can.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Can.spec 26 Feb 2009 12:41:28 -0000 1.2 +++ perl-Class-Can.spec 26 Jul 2009 04:23:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Can Version: 0.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Inspect a class/method and say what it can do (and why) License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:23:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:23:19 +0000 (UTC) Subject: rpms/perl-Class-Container/devel perl-Class-Container.spec,1.8,1.9 Message-ID: <20090726042319.0504E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Container/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17694 Modified Files: perl-Class-Container.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Container.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Container/devel/perl-Class-Container.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-Container.spec 26 Feb 2009 12:42:21 -0000 1.8 +++ perl-Class-Container.spec 26 Jul 2009 04:23:18 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-Container Version: 0.12 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Class::Container Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:23:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:23:32 +0000 (UTC) Subject: rpms/perl-Class-DBI/devel perl-Class-DBI.spec,1.10,1.11 Message-ID: <20090726042332.6B47811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17870 Modified Files: perl-Class-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI/devel/perl-Class-DBI.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Class-DBI.spec 26 Feb 2009 12:43:15 -0000 1.10 +++ perl-Class-DBI.spec 26 Jul 2009 04:23:32 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Class-DBI Version: 3.0.17 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple Database Abstraction Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.0.17-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.0.17-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:23:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:23:48 +0000 (UTC) Subject: rpms/perl-Class-DBI-AbstractSearch/devel perl-Class-DBI-AbstractSearch.spec, 1.8, 1.9 Message-ID: <20090726042348.53CF011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-AbstractSearch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18047 Modified Files: perl-Class-DBI-AbstractSearch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-AbstractSearch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-AbstractSearch/devel/perl-Class-DBI-AbstractSearch.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-DBI-AbstractSearch.spec 26 Feb 2009 12:44:08 -0000 1.8 +++ perl-Class-DBI-AbstractSearch.spec 26 Jul 2009 04:23:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-AbstractSearch Version: 0.07 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Abstract Class::DBI's SQL with SQL::Abstract Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:24:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:24:03 +0000 (UTC) Subject: rpms/perl-Class-DBI-AsForm/devel perl-Class-DBI-AsForm.spec, 1.9, 1.10 Message-ID: <20090726042403.5AF2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-AsForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18250 Modified Files: perl-Class-DBI-AsForm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-AsForm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-AsForm/devel/perl-Class-DBI-AsForm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Class-DBI-AsForm.spec 26 Feb 2009 12:45:01 -0000 1.9 +++ perl-Class-DBI-AsForm.spec 26 Jul 2009 04:24:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-AsForm Version: 2.42 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Produce HTML form elements for database columns Group: Development/Libraries License: GPL+ or Artistic @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.42-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.42-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:24:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:24:22 +0000 (UTC) Subject: rpms/perl-Class-DBI-FromCGI/devel perl-Class-DBI-FromCGI.spec, 1.6, 1.7 Message-ID: <20090726042422.7A2B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-FromCGI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18430 Modified Files: perl-Class-DBI-FromCGI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-FromCGI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-FromCGI/devel/perl-Class-DBI-FromCGI.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Class-DBI-FromCGI.spec 26 Feb 2009 12:46:03 -0000 1.6 +++ perl-Class-DBI-FromCGI.spec 26 Jul 2009 04:24:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-FromCGI Version: 1.00 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Update Class::DBI data using CGI::Untaint Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:24:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:24:38 +0000 (UTC) Subject: rpms/perl-Class-DBI-Loader/devel perl-Class-DBI-Loader.spec, 1.7, 1.8 Message-ID: <20090726042438.02F8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Loader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18640 Modified Files: perl-Class-DBI-Loader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Loader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Loader/devel/perl-Class-DBI-Loader.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-DBI-Loader.spec 26 Feb 2009 12:47:01 -0000 1.7 +++ perl-Class-DBI-Loader.spec 26 Jul 2009 04:24:37 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Loader Version: 0.34 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Dynamic definition of Class::DBI sub classes Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.34-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.34-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:24:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:24:52 +0000 (UTC) Subject: rpms/perl-Class-DBI-Loader-Relationship/devel perl-Class-DBI-Loader-Relationship.spec, 1.11, 1.12 Message-ID: <20090726042452.EBF6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Loader-Relationship/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18806 Modified Files: perl-Class-DBI-Loader-Relationship.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Loader-Relationship.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Loader-Relationship/devel/perl-Class-DBI-Loader-Relationship.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Class-DBI-Loader-Relationship.spec 26 Feb 2009 12:47:56 -0000 1.11 +++ perl-Class-DBI-Loader-Relationship.spec 26 Jul 2009 04:24:52 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Loader-Relationship Version: 1.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Easier relationship specification in CDBI::L Group: Development/Libraries License: GPL+ or Artistic @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:25:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:25:08 +0000 (UTC) Subject: rpms/perl-Class-DBI-Pager/devel perl-Class-DBI-Pager.spec,1.8,1.9 Message-ID: <20090726042508.3A89311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Pager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18974 Modified Files: perl-Class-DBI-Pager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Pager.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Pager/devel/perl-Class-DBI-Pager.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-DBI-Pager.spec 26 Feb 2009 12:48:55 -0000 1.8 +++ perl-Class-DBI-Pager.spec 26 Jul 2009 04:25:07 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Pager Version: 0.08 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Pager utility for Class::DBI Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:25:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:25:22 +0000 (UTC) Subject: rpms/perl-Class-DBI-Pg/devel perl-Class-DBI-Pg.spec,1.8,1.9 Message-ID: <20090726042522.C042511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Pg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19119 Modified Files: perl-Class-DBI-Pg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Pg.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Pg/devel/perl-Class-DBI-Pg.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-DBI-Pg.spec 26 Feb 2009 12:49:49 -0000 1.8 +++ perl-Class-DBI-Pg.spec 26 Jul 2009 04:25:22 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Pg Version: 0.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Class::DBI extension for PostgreSQL Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:25:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:25:38 +0000 (UTC) Subject: rpms/perl-Class-DBI-Plugin/devel perl-Class-DBI-Plugin.spec, 1.7, 1.8 Message-ID: <20090726042538.B2A0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19314 Modified Files: perl-Class-DBI-Plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Plugin/devel/perl-Class-DBI-Plugin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-DBI-Plugin.spec 26 Feb 2009 12:50:51 -0000 1.7 +++ perl-Class-DBI-Plugin.spec 26 Jul 2009 04:25:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Plugin Version: 0.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Abstract base class for Class::DBI plugins Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:25:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:25:52 +0000 (UTC) Subject: rpms/perl-Class-DBI-Plugin-DeepAbstractSearch/devel perl-Class-DBI-Plugin-DeepAbstractSearch.spec, 1.1, 1.2 Message-ID: <20090726042552.A79B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Plugin-DeepAbstractSearch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19467 Modified Files: perl-Class-DBI-Plugin-DeepAbstractSearch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Plugin-DeepAbstractSearch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Plugin-DeepAbstractSearch/devel/perl-Class-DBI-Plugin-DeepAbstractSearch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Class-DBI-Plugin-DeepAbstractSearch.spec 31 May 2009 17:57:35 -0000 1.1 +++ perl-Class-DBI-Plugin-DeepAbstractSearch.spec 26 Jul 2009 04:25:52 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Plugin-DeepAbstractSearch Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Class/DBI/Plugin/DeepAbstractSearch.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Chris Weyl 0.08-1 - submission (new testing dep of latest DBIx::Class) From jkeating at fedoraproject.org Sun Jul 26 04:26:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:26:07 +0000 (UTC) Subject: rpms/perl-Class-DBI-Plugin-RetrieveAll/devel perl-Class-DBI-Plugin-RetrieveAll.spec, 1.7, 1.8 Message-ID: <20090726042607.0247711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Plugin-RetrieveAll/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19644 Modified Files: perl-Class-DBI-Plugin-RetrieveAll.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Plugin-RetrieveAll.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Plugin-RetrieveAll/devel/perl-Class-DBI-Plugin-RetrieveAll.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-DBI-Plugin-RetrieveAll.spec 26 Feb 2009 12:51:51 -0000 1.7 +++ perl-Class-DBI-Plugin-RetrieveAll.spec 26 Jul 2009 04:26:06 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Plugin-RetrieveAll Version: 1.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: More complex retrieve_all() for Class::DBI Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:26:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:26:20 +0000 (UTC) Subject: rpms/perl-Class-DBI-Plugin-Type/devel perl-Class-DBI-Plugin-Type.spec, 1.6, 1.7 Message-ID: <20090726042620.EF79E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-Plugin-Type/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19811 Modified Files: perl-Class-DBI-Plugin-Type.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-Plugin-Type.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-Plugin-Type/devel/perl-Class-DBI-Plugin-Type.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Class-DBI-Plugin-Type.spec 26 Feb 2009 12:52:48 -0000 1.6 +++ perl-Class-DBI-Plugin-Type.spec 26 Jul 2009 04:26:20 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-Plugin-Type Version: 0.02 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Determine type information for columns Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:26:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:26:34 +0000 (UTC) Subject: rpms/perl-Class-DBI-SQLite/devel perl-Class-DBI-SQLite.spec, 1.7, 1.8 Message-ID: <20090726042634.E38BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-SQLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19988 Modified Files: perl-Class-DBI-SQLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-SQLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-SQLite/devel/perl-Class-DBI-SQLite.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-DBI-SQLite.spec 26 Feb 2009 12:53:40 -0000 1.7 +++ perl-Class-DBI-SQLite.spec 26 Jul 2009 04:26:34 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-SQLite Version: 0.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extension to Class::DBI for sqlite Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:26:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:26:48 +0000 (UTC) Subject: rpms/perl-Class-DBI-mysql/devel perl-Class-DBI-mysql.spec,1.7,1.8 Message-ID: <20090726042648.6779411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-DBI-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20147 Modified Files: perl-Class-DBI-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-DBI-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-DBI-mysql/devel/perl-Class-DBI-mysql.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-DBI-mysql.spec 26 Feb 2009 12:54:36 -0000 1.7 +++ perl-Class-DBI-mysql.spec 26 Jul 2009 04:26:48 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-DBI-mysql Version: 1.00 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extensions to Class::DBI for MySQL Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:27:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:27:06 +0000 (UTC) Subject: rpms/perl-Class-Data-Accessor/devel perl-Class-Data-Accessor.spec, 1.10, 1.11 Message-ID: <20090726042706.DE41A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Data-Accessor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20317 Modified Files: perl-Class-Data-Accessor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Data-Accessor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Data-Accessor/devel/perl-Class-Data-Accessor.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Class-Data-Accessor.spec 17 Jun 2009 03:59:56 -0000 1.10 +++ perl-Class-Data-Accessor.spec 26 Jul 2009 04:27:06 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Class-Data-Accessor Version: 0.04004 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Inheritable, overridable class and instance data accessor creation License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04004-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Iain Arnell 0.04004-3 - filter out requires perl(Test::More) From jkeating at fedoraproject.org Sun Jul 26 04:27:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:27:22 +0000 (UTC) Subject: rpms/perl-Class-Data-Inheritable/devel perl-Class-Data-Inheritable.spec, 1.11, 1.12 Message-ID: <20090726042722.D8AD111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Data-Inheritable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20488 Modified Files: perl-Class-Data-Inheritable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Data-Inheritable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Data-Inheritable/devel/perl-Class-Data-Inheritable.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Class-Data-Inheritable.spec 26 Feb 2009 12:56:31 -0000 1.11 +++ perl-Class-Data-Inheritable.spec 26 Jul 2009 04:27:22 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Class-Data-Inheritable Version: 0.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Inheritable, overridable class data Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:27:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:27:38 +0000 (UTC) Subject: rpms/perl-Class-Date/devel perl-Class-Date.spec,1.4,1.5 Message-ID: <20090726042738.1BF7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20648 Modified Files: perl-Class-Date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Date.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Date/devel/perl-Class-Date.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-Date.spec 26 Feb 2009 12:57:28 -0000 1.4 +++ perl-Class-Date.spec 26 Jul 2009 04:27:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-Date Version: 1.1.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Class for easy date and time manipulation Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:27:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:27:53 +0000 (UTC) Subject: rpms/perl-Class-ErrorHandler/devel perl-Class-ErrorHandler.spec, 1.5, 1.6 Message-ID: <20090726042753.4711111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-ErrorHandler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20794 Modified Files: perl-Class-ErrorHandler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-ErrorHandler.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-ErrorHandler/devel/perl-Class-ErrorHandler.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Class-ErrorHandler.spec 26 Feb 2009 12:58:25 -0000 1.5 +++ perl-Class-ErrorHandler.spec 26 Jul 2009 04:27:53 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Class-ErrorHandler Version: 0.01 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Class::ErrorHandler Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:28:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:28:09 +0000 (UTC) Subject: rpms/perl-Class-Exporter/devel perl-Class-Exporter.spec,1.2,1.3 Message-ID: <20090726042809.2FBF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Exporter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20965 Modified Files: perl-Class-Exporter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Exporter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Exporter/devel/perl-Class-Exporter.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Exporter.spec 26 Feb 2009 12:59:20 -0000 1.2 +++ perl-Class-Exporter.spec 26 Jul 2009 04:28:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Exporter Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Export class methods as regular subroutines License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:28:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:28:23 +0000 (UTC) Subject: rpms/perl-Class-Factory/devel perl-Class-Factory.spec,1.5,1.6 Message-ID: <20090726042823.C665811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Factory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21112 Modified Files: perl-Class-Factory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Factory.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Factory/devel/perl-Class-Factory.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Class-Factory.spec 26 Feb 2009 13:00:20 -0000 1.5 +++ perl-Class-Factory.spec 26 Jul 2009 04:28:23 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Class-Factory Version: 1.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Base class for dynamic factory classes # see lib/Class/Factory.pm License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:28:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:28:40 +0000 (UTC) Subject: rpms/perl-Class-Factory-Util/devel perl-Class-Factory-Util.spec, 1.7, 1.8 Message-ID: <20090726042840.6887B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Factory-Util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21291 Modified Files: perl-Class-Factory-Util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Factory-Util.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Factory-Util/devel/perl-Class-Factory-Util.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-Factory-Util.spec 26 Feb 2009 13:01:29 -0000 1.7 +++ perl-Class-Factory-Util.spec 26 Jul 2009 04:28:40 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Class-Factory-Util Version: 1.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Provide utility methods for factory classes Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:28:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:28:55 +0000 (UTC) Subject: rpms/perl-Class-Inner/devel perl-Class-Inner.spec,1.4,1.5 Message-ID: <20090726042855.E712111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Inner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21457 Modified Files: perl-Class-Inner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Inner.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Inner/devel/perl-Class-Inner.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-Inner.spec 26 Feb 2009 13:02:28 -0000 1.4 +++ perl-Class-Inner.spec 26 Jul 2009 04:28:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-Inner Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A perlish implementation of Java like inner classes Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:29:11 +0000 (UTC) Subject: rpms/perl-Class-InsideOut/devel perl-Class-InsideOut.spec, 1.13, 1.14 Message-ID: <20090726042911.E474E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-InsideOut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21641 Modified Files: perl-Class-InsideOut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-InsideOut.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-InsideOut/devel/perl-Class-InsideOut.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Class-InsideOut.spec 26 Feb 2009 13:03:24 -0000 1.13 +++ perl-Class-InsideOut.spec 26 Jul 2009 04:29:11 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Class-InsideOut Version: 1.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A safe, simple inside-out object construction kit Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:29:26 +0000 (UTC) Subject: rpms/perl-Class-Inspector/devel perl-Class-Inspector.spec, 1.24, 1.25 Message-ID: <20090726042926.E78AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Inspector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21832 Modified Files: perl-Class-Inspector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Inspector.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Inspector/devel/perl-Class-Inspector.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- perl-Class-Inspector.spec 17 Jun 2009 04:30:32 -0000 1.24 +++ perl-Class-Inspector.spec 26 Jul 2009 04:29:26 -0000 1.25 @@ -1,6 +1,6 @@ Name: perl-Class-Inspector Version: 1.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Get information about a class and its structure License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ralf Cors?pius - 1.24-2 - BR: perl(Test::MinimumVersion) >= 0.008 From jkeating at fedoraproject.org Sun Jul 26 04:29:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:29:42 +0000 (UTC) Subject: rpms/perl-Class-Loader/devel perl-Class-Loader.spec,1.8,1.9 Message-ID: <20090726042942.0A71811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Loader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22010 Modified Files: perl-Class-Loader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Loader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Loader/devel/perl-Class-Loader.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-Loader.spec 26 Feb 2009 13:05:17 -0000 1.8 +++ perl-Class-Loader.spec 26 Jul 2009 04:29:41 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Load modules and create objects on demand Name: perl-Class-Loader Version: 2.03 -Release: 7%{?dist} +Release: 8%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Class-Loader/ @@ -53,6 +53,9 @@ names that can be used in place of modul %{_mandir}/man3/Class::Loader.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:29:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:29:57 +0000 (UTC) Subject: rpms/perl-Class-MOP/devel perl-Class-MOP.spec,1.37,1.38 Message-ID: <20090726042957.14B7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-MOP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22155 Modified Files: perl-Class-MOP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-MOP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-MOP/devel/perl-Class-MOP.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- perl-Class-MOP.spec 7 Jun 2009 21:06:37 -0000 1.37 +++ perl-Class-MOP.spec 26 Jul 2009 04:29:56 -0000 1.38 @@ -1,6 +1,6 @@ Name: perl-Class-MOP Version: 0.85 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Metaobject programming model for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -88,6 +88,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.85-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 0.85-1 - auto-update to 0.85 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 04:30:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:30:15 +0000 (UTC) Subject: rpms/perl-Class-MakeMethods/devel perl-Class-MakeMethods.spec, 1.7, 1.8 Message-ID: <20090726043015.035DC11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-MakeMethods/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22331 Modified Files: perl-Class-MakeMethods.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-MakeMethods.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-MakeMethods/devel/perl-Class-MakeMethods.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Class-MakeMethods.spec 26 Feb 2009 13:07:11 -0000 1.7 +++ perl-Class-MakeMethods.spec 26 Jul 2009 04:30:14 -0000 1.8 @@ -2,7 +2,7 @@ Name: perl-Class-MakeMethods Version: 1.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Generate common types of methods Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:30:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:30:33 +0000 (UTC) Subject: rpms/perl-Class-Method-Modifiers/devel perl-Class-Method-Modifiers.spec, 1.5, 1.6 Message-ID: <20090726043033.7480F11C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Method-Modifiers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22529 Modified Files: perl-Class-Method-Modifiers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Method-Modifiers.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Method-Modifiers/devel/perl-Class-Method-Modifiers.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Class-Method-Modifiers.spec 8 Jun 2009 05:52:44 -0000 1.5 +++ perl-Class-Method-Modifiers.spec 26 Jul 2009 04:30:33 -0000 1.6 @@ -1,7 +1,7 @@ Name: perl-Class-Method-Modifiers Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Provides Moose-like method modifiers @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 1.02-1 - auto-update to 1.02 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 04:30:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:30:48 +0000 (UTC) Subject: rpms/perl-Class-MethodMaker/devel perl-Class-MethodMaker.spec, 1.19, 1.20 Message-ID: <20090726043048.95E3311C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-MethodMaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22690 Modified Files: perl-Class-MethodMaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-MethodMaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-MethodMaker/devel/perl-Class-MethodMaker.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Class-MethodMaker.spec 1 Mar 2009 05:55:47 -0000 1.19 +++ perl-Class-MethodMaker.spec 26 Jul 2009 04:30:48 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-Class-MethodMaker Version: 2.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module for creating generic object-oriented methods Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Ralf Cors?pius - 2.15-1 - Upstream update. - Build in subdir to work-around rpm breaking the testsuite. From jkeating at fedoraproject.org Sun Jul 26 04:31:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:31:01 +0000 (UTC) Subject: rpms/perl-Class-Mix/devel perl-Class-Mix.spec,1.2,1.3 Message-ID: <20090726043101.9EDF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Mix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22846 Modified Files: perl-Class-Mix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Mix.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Mix/devel/perl-Class-Mix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Mix.spec 22 May 2009 13:59:00 -0000 1.2 +++ perl-Class-Mix.spec 26 Jul 2009 04:31:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Mix Version: 0.003 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Dynamic class mixing License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.003-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Iain Arnell 0.003-1 - update to latest upstream - add missing requires perl(Exporter) From jkeating at fedoraproject.org Sun Jul 26 04:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:31:16 +0000 (UTC) Subject: rpms/perl-Class-Observable/devel perl-Class-Observable.spec, 1.4, 1.5 Message-ID: <20090726043116.3184911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Observable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23039 Modified Files: perl-Class-Observable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Observable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Observable/devel/perl-Class-Observable.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-Observable.spec 26 Feb 2009 13:10:05 -0000 1.4 +++ perl-Class-Observable.spec 26 Jul 2009 04:31:16 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-Observable Version: 1.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Allow other classes and objects to respond to events in yours License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:31:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:31:30 +0000 (UTC) Subject: rpms/perl-Class-Prototyped/devel perl-Class-Prototyped.spec, 1.6, 1.7 Message-ID: <20090726043130.2890711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Prototyped/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23228 Modified Files: perl-Class-Prototyped.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Prototyped.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Prototyped/devel/perl-Class-Prototyped.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Class-Prototyped.spec 8 Mar 2009 11:24:15 -0000 1.6 +++ perl-Class-Prototyped.spec 26 Jul 2009 04:31:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Class-Prototyped Version: 1.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast prototype-based OO programming in Perl License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 9 2009 Lubomir Rintel 1.11-3 - Fix permissions - Fix requires/provides From jkeating at fedoraproject.org Sun Jul 26 04:31:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:31:46 +0000 (UTC) Subject: rpms/perl-Class-ReturnValue/devel perl-Class-ReturnValue.spec, 1.10, 1.11 Message-ID: <20090726043146.25A3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-ReturnValue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23447 Modified Files: perl-Class-ReturnValue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-ReturnValue.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-ReturnValue/devel/perl-Class-ReturnValue.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Class-ReturnValue.spec 26 Feb 2009 13:12:06 -0000 1.10 +++ perl-Class-ReturnValue.spec 26 Jul 2009 04:31:45 -0000 1.11 @@ -1,7 +1,7 @@ Name: perl-Class-ReturnValue Summary: Class::ReturnValue Perl module Version: 0.55 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Class-ReturnValue @@ -44,6 +44,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.55-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.55-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:32:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:32:03 +0000 (UTC) Subject: rpms/perl-Class-Singleton/devel perl-Class-Singleton.spec,1.8,1.9 Message-ID: <20090726043203.A696B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Singleton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23681 Modified Files: perl-Class-Singleton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Singleton.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Singleton/devel/perl-Class-Singleton.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-Singleton.spec 26 Feb 2009 13:13:00 -0000 1.8 +++ perl-Class-Singleton.spec 26 Jul 2009 04:32:03 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-Singleton Version: 1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Implementation of a "Singleton" class License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:32:18 +0000 (UTC) Subject: rpms/perl-Class-Std/devel perl-Class-Std.spec,1.4,1.5 Message-ID: <20090726043218.C496A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Std/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23859 Modified Files: perl-Class-Std.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Std.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Std/devel/perl-Class-Std.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-Std.spec 26 Feb 2009 13:13:57 -0000 1.4 +++ perl-Class-Std.spec 26 Jul 2009 04:32:18 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-Std Version: 0.0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Support for creating standard "inside-out" classes License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:32:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:32:34 +0000 (UTC) Subject: rpms/perl-Class-Throwable/devel perl-Class-Throwable.spec,1.2,1.3 Message-ID: <20090726043234.9F98811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Throwable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24040 Modified Files: perl-Class-Throwable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Throwable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Throwable/devel/perl-Class-Throwable.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Throwable.spec 26 Feb 2009 13:14:50 -0000 1.2 +++ perl-Class-Throwable.spec 26 Jul 2009 04:32:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Throwable Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A minimal lightweight exception class Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:32:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:32:49 +0000 (UTC) Subject: rpms/perl-Class-Trigger/devel perl-Class-Trigger.spec,1.8,1.9 Message-ID: <20090726043249.D41AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Trigger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24220 Modified Files: perl-Class-Trigger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Trigger.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Trigger/devel/perl-Class-Trigger.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Class-Trigger.spec 13 Mar 2009 18:48:05 -0000 1.8 +++ perl-Class-Trigger.spec 26 Jul 2009 04:32:49 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Class-Trigger Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mixin to add / call inheritable triggers Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.13-1 - update to 0.13 From jkeating at fedoraproject.org Sun Jul 26 04:33:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:33:04 +0000 (UTC) Subject: rpms/perl-Class-Unload/devel perl-Class-Unload.spec,1.2,1.3 Message-ID: <20090726043304.B337411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Unload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24428 Modified Files: perl-Class-Unload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Unload.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Unload/devel/perl-Class-Unload.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-Unload.spec 26 Feb 2009 13:16:39 -0000 1.2 +++ perl-Class-Unload.spec 26 Jul 2009 04:33:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-Unload Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Unload given Class License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:33:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:33:20 +0000 (UTC) Subject: rpms/perl-Class-Whitehole/devel perl-Class-Whitehole.spec,1.5,1.6 Message-ID: <20090726043320.9DCEF11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-Whitehole/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24604 Modified Files: perl-Class-Whitehole.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-Whitehole.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-Whitehole/devel/perl-Class-Whitehole.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Class-Whitehole.spec 26 Feb 2009 13:17:32 -0000 1.5 +++ perl-Class-Whitehole.spec 26 Jul 2009 04:33:20 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Class-Whitehole Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Base class to treat unhandled method calls as errors Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:33:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:33:36 +0000 (UTC) Subject: rpms/perl-Class-XSAccessor/devel perl-Class-XSAccessor.spec, 1.4, 1.5 Message-ID: <20090726043336.15F6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-XSAccessor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24788 Modified Files: perl-Class-XSAccessor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-XSAccessor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-XSAccessor/devel/perl-Class-XSAccessor.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Class-XSAccessor.spec 19 Jun 2009 15:47:15 -0000 1.4 +++ perl-Class-XSAccessor.spec 26 Jul 2009 04:33:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Class-XSAccessor Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generate fast XS accessors without runtime compilation License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Stepan Kasal - 1.03-2 - rebuild with AutoXS::Header 1.02 From jkeating at fedoraproject.org Sun Jul 26 04:33:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:33:51 +0000 (UTC) Subject: rpms/perl-Class-XSAccessor-Array/devel perl-Class-XSAccessor-Array.spec, 1.2, 1.3 Message-ID: <20090726043351.6B89311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24961 Modified Files: perl-Class-XSAccessor-Array.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Class-XSAccessor-Array.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel/perl-Class-XSAccessor-Array.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Class-XSAccessor-Array.spec 4 Jun 2009 06:31:14 -0000 1.2 +++ perl-Class-XSAccessor-Array.spec 26 Jul 2009 04:33:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Class-XSAccessor-Array Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate fast XS accessors without runtime compilation License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Marcela Ma?l??ov? 1.03-1 - update From jkeating at fedoraproject.org Sun Jul 26 04:34:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:34:07 +0000 (UTC) Subject: rpms/perl-Clipboard/devel perl-Clipboard.spec,1.1,1.2 Message-ID: <20090726043407.397B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Clipboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25202 Modified Files: perl-Clipboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Clipboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Clipboard/devel/perl-Clipboard.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Clipboard.spec 23 Apr 2009 20:19:44 -0000 1.1 +++ perl-Clipboard.spec 26 Jul 2009 04:34:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Clipboard Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Copy and paste with any OS License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Iain Arnell 0.09-1 - Specfile autogenerated by cpanspec 1.77. - add bindir and man1 to files From jkeating at fedoraproject.org Sun Jul 26 04:34:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:34:23 +0000 (UTC) Subject: rpms/perl-Clone/devel perl-Clone.spec,1.14,1.15 Message-ID: <20090726043423.37DAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Clone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25403 Modified Files: perl-Clone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Clone.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Clone/devel/perl-Clone.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Clone.spec 23 May 2009 20:28:09 -0000 1.14 +++ perl-Clone.spec 26 Jul 2009 04:34:23 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Clone Version: 0.31 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Recursively copy perl datatypes Group: Development/Libraries License: GPL+ or Artistic @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Chris Weyl - 0.31-2 - filter private Perl solibs from provides - remove some executable bits -- keep rpmlint happy From jkeating at fedoraproject.org Sun Jul 26 04:34:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:34:39 +0000 (UTC) Subject: rpms/perl-Color-Library/devel perl-Color-Library.spec,1.3,1.4 Message-ID: <20090726043439.6199B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Color-Library/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25616 Modified Files: perl-Color-Library.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Color-Library.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Color-Library/devel/perl-Color-Library.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Color-Library.spec 26 Feb 2009 13:20:15 -0000 1.3 +++ perl-Color-Library.spec 26 Jul 2009 04:34:39 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Color-Library Version: 0.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easy-to-use and comprehensive named-color library License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:34:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:34:56 +0000 (UTC) Subject: rpms/perl-Compress-Bzip2/devel perl-Compress-Bzip2.spec,1.9,1.10 Message-ID: <20090726043456.6513111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Compress-Bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25784 Modified Files: perl-Compress-Bzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Compress-Bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Compress-Bzip2/devel/perl-Compress-Bzip2.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Compress-Bzip2.spec 26 Feb 2009 13:21:12 -0000 1.9 +++ perl-Compress-Bzip2.spec 26 Jul 2009 04:34:56 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Compress-Bzip2 Version: 2.09 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Interface to Bzip2 compression library Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.09-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.09-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:35:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:35:14 +0000 (UTC) Subject: rpms/perl-Compress-Raw-Bzip2/devel perl-Compress-Raw-Bzip2.spec, 1.7, 1.8 Message-ID: <20090726043514.1919C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26010 Modified Files: perl-Compress-Raw-Bzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Compress-Raw-Bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel/perl-Compress-Raw-Bzip2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Compress-Raw-Bzip2.spec 26 Feb 2009 13:22:10 -0000 1.7 +++ perl-Compress-Raw-Bzip2.spec 26 Jul 2009 04:35:13 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Compress-Raw-Bzip2 Version: 2.005 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Low-Level Interface to bzip2 compression library Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.005-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.005-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:35:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:35:31 +0000 (UTC) Subject: rpms/perl-Config-Any/devel perl-Config-Any.spec,1.9,1.10 Message-ID: <20090726043531.A54C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Any/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26208 Modified Files: perl-Config-Any.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Any.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Any/devel/perl-Config-Any.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Config-Any.spec 26 Feb 2009 13:23:08 -0000 1.9 +++ perl-Config-Any.spec 26 Jul 2009 04:35:31 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Config-Any Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Load configuration from different file formats, transparently License: GPL+ or Artistic Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:35:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:35:48 +0000 (UTC) Subject: rpms/perl-Config-Augeas/devel perl-Config-Augeas.spec,1.7,1.8 Message-ID: <20090726043548.C1A4A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26428 Modified Files: perl-Config-Augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Augeas/devel/perl-Config-Augeas.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Config-Augeas.spec 26 Feb 2009 21:24:37 -0000 1.7 +++ perl-Config-Augeas.spec 26 Jul 2009 04:35:48 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Config-Augeas Version: 0.400 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Edit configuration files through Augeas C library License: LGPLv2+ Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.400-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Alan Pevec - 0.400-1 - new upstream release 0.400 * lib/Config/Augeas.xs (match): dies if aug_match returns -1. Perl From jkeating at fedoraproject.org Sun Jul 26 04:36:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:36:08 +0000 (UTC) Subject: rpms/perl-Config-Auto/devel perl-Config-Auto.spec,1.1,1.2 Message-ID: <20090726043608.5ED8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Auto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26657 Modified Files: perl-Config-Auto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Auto.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Auto/devel/perl-Config-Auto.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Config-Auto.spec 12 Jun 2009 07:09:22 -0000 1.1 +++ perl-Config-Auto.spec 26 Jul 2009 04:36:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Config-Auto Version: 0.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Magical config file parser License: GPL+ or Artistic Group: Development/Libraries @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 0.20-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 04:36:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:36:27 +0000 (UTC) Subject: rpms/perl-Config-General/devel perl-Config-General.spec,1.20,1.21 Message-ID: <20090726043627.5A52B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-General/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26891 Modified Files: perl-Config-General.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-General.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-General/devel/perl-Config-General.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Config-General.spec 26 Feb 2009 13:25:05 -0000 1.20 +++ perl-Config-General.spec 26 Jul 2009 04:36:27 -0000 1.21 @@ -1,6 +1,6 @@ Name: perl-Config-General Version: 2.42 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generic configuration module for Perl Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.42-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:36:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:36:40 +0000 (UTC) Subject: rpms/perl-Config-Grammar/devel perl-Config-Grammar.spec,1.2,1.3 Message-ID: <20090726043640.F38F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Grammar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27067 Modified Files: perl-Config-Grammar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Grammar.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Grammar/devel/perl-Config-Grammar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Config-Grammar.spec 26 Feb 2009 13:26:02 -0000 1.2 +++ perl-Config-Grammar.spec 26 Jul 2009 04:36:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Config-Grammar Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Grammar-based, user-friendly config parser License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ find %{buildroot} -type f -name .packlis %{_mandir}/man3//Config::Grammar* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:36:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:36:53 +0000 (UTC) Subject: rpms/perl-Config-INI/devel perl-Config-INI.spec,1.1,1.2 Message-ID: <20090726043653.A494311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-INI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27244 Modified Files: perl-Config-INI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-INI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-INI/devel/perl-Config-INI.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Config-INI.spec 29 Apr 2009 04:38:36 -0000 1.1 +++ perl-Config-INI.spec 26 Jul 2009 04:36:53 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Config-INI Version: 0.014 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Config::INI Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.014-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Iain Arnell 0.014-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 04:37:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:37:08 +0000 (UTC) Subject: rpms/perl-Config-IniFiles/devel perl-Config-IniFiles.spec, 1.12, 1.13 Message-ID: <20090726043708.AEBF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-IniFiles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27438 Modified Files: perl-Config-IniFiles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-IniFiles.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-IniFiles/devel/perl-Config-IniFiles.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Config-IniFiles.spec 26 Feb 2009 13:26:59 -0000 1.12 +++ perl-Config-IniFiles.spec 26 Jul 2009 04:37:08 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Config-IniFiles Version: 2.47 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A module for reading .ini-style configuration files Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.47-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.47-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:37:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:37:22 +0000 (UTC) Subject: rpms/perl-Config-IniHash/devel perl-Config-IniHash.spec,1.6,1.7 Message-ID: <20090726043722.BD3E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-IniHash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27597 Modified Files: perl-Config-IniHash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-IniHash.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-IniHash/devel/perl-Config-IniHash.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Config-IniHash.spec 26 Feb 2009 13:27:56 -0000 1.6 +++ perl-Config-IniHash.spec 26 Jul 2009 04:37:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Config-IniHash Version: 3.00.00 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for reading and writing INI files License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.00.00-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.00.00-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:37:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:37:36 +0000 (UTC) Subject: rpms/perl-Config-JFDI/devel perl-Config-JFDI.spec,1.3,1.4 Message-ID: <20090726043736.BF41411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-JFDI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27757 Modified Files: perl-Config-JFDI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-JFDI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-JFDI/devel/perl-Config-JFDI.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Config-JFDI.spec 25 Jun 2009 03:28:39 -0000 1.3 +++ perl-Config-JFDI.spec 26 Jul 2009 04:37:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Config-JFDI Version: 0.063 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Just * Do it: A Catalyst::Plugin::ConfigLoader-style layer over Config::Any License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.063-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Iain Arnell 0.063-1 - update to latest upstream From jkeating at fedoraproject.org Sun Jul 26 04:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:37:50 +0000 (UTC) Subject: rpms/perl-Config-Properties/devel perl-Config-Properties.spec, 1.1, 1.2 Message-ID: <20090726043750.9C31611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Properties/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27929 Modified Files: perl-Config-Properties.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Properties.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Properties/devel/perl-Config-Properties.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Config-Properties.spec 4 Jun 2009 22:51:24 -0000 1.1 +++ perl-Config-Properties.spec 26 Jul 2009 04:37:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Config-Properties Version: 1.70 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Read and write property files License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.70-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Xavier Bachelot 1.70-2 - Remove useless require perl(Test::More). From jkeating at fedoraproject.org Sun Jul 26 04:38:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:38:05 +0000 (UTC) Subject: rpms/perl-Config-Record/devel perl-Config-Record.spec,1.12,1.13 Message-ID: <20090726043805.0CBFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Record/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28071 Modified Files: perl-Config-Record.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Record.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Record/devel/perl-Config-Record.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Config-Record.spec 26 Feb 2009 13:28:56 -0000 1.12 +++ perl-Config-Record.spec 26 Jul 2009 04:38:04 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Config-Record Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module for Configuration file access Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:38:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:38:18 +0000 (UTC) Subject: rpms/perl-Config-Simple/devel perl-Config-Simple.spec,1.3,1.4 Message-ID: <20090726043818.C62B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28244 Modified Files: perl-Config-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Simple/devel/perl-Config-Simple.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Config-Simple.spec 26 Feb 2009 13:29:48 -0000 1.3 +++ perl-Config-Simple.spec 26 Jul 2009 04:38:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Config-Simple Version: 4.59 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple configuration file class Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.59-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.59-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:38:33 +0000 (UTC) Subject: rpms/perl-Config-Tiny/devel perl-Config-Tiny.spec,1.23,1.24 Message-ID: <20090726043833.E56EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Config-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28407 Modified Files: perl-Config-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Config-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-Tiny/devel/perl-Config-Tiny.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-Config-Tiny.spec 26 Feb 2009 13:30:48 -0000 1.23 +++ perl-Config-Tiny.spec 26 Jul 2009 04:38:33 -0000 1.24 @@ -1,6 +1,6 @@ Name: perl-Config-Tiny Version: 2.12 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl module for reading and writing .ini style configuration files Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.12-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.12-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:38:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:38:48 +0000 (UTC) Subject: rpms/perl-ConfigReader/devel perl-ConfigReader.spec,1.3,1.4 Message-ID: <20090726043848.B895411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ConfigReader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28586 Modified Files: perl-ConfigReader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ConfigReader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ConfigReader/devel/perl-ConfigReader.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-ConfigReader.spec 26 Feb 2009 13:31:44 -0000 1.3 +++ perl-ConfigReader.spec 26 Jul 2009 04:38:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-ConfigReader Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Read directives from a configuration file License: LGPLv2+ Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:39:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:39:02 +0000 (UTC) Subject: rpms/perl-Contextual-Return/devel perl-Contextual-Return.spec, 1.7, 1.8 Message-ID: <20090726043902.ED80A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Contextual-Return/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28742 Modified Files: perl-Contextual-Return.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Contextual-Return.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Contextual-Return/devel/perl-Contextual-Return.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Contextual-Return.spec 26 Feb 2009 13:32:43 -0000 1.7 +++ perl-Contextual-Return.spec 26 Jul 2009 04:39:02 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Contextual-Return Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Create context-senstive return values Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:39:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:39:17 +0000 (UTC) Subject: rpms/perl-Convert-ASCII-Armour/devel perl-Convert-ASCII-Armour.spec, 1.6, 1.7 Message-ID: <20090726043917.2FF3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-ASCII-Armour/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28911 Modified Files: perl-Convert-ASCII-Armour.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-ASCII-Armour.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-ASCII-Armour/devel/perl-Convert-ASCII-Armour.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Convert-ASCII-Armour.spec 26 Feb 2009 13:33:38 -0000 1.6 +++ perl-Convert-ASCII-Armour.spec 26 Jul 2009 04:39:16 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Convert-ASCII-Armour Version: 1.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Convert binary octets into ASCII armoured messages License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:39:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:39:37 +0000 (UTC) Subject: rpms/perl-Convert-ASN1/devel perl-Convert-ASN1.spec,1.13,1.14 Message-ID: <20090726043937.E3BA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-ASN1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29143 Modified Files: perl-Convert-ASN1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-ASN1.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-ASN1/devel/perl-Convert-ASN1.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Convert-ASN1.spec 26 Feb 2009 13:34:31 -0000 1.13 +++ perl-Convert-ASN1.spec 26 Jul 2009 04:39:37 -0000 1.14 @@ -1,7 +1,7 @@ Summary: ASN.1 Encode/Decode library Name: perl-Convert-ASN1 Version: 0.21 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Libraries License: GPL+ or Artistic @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.21-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:39:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:39:53 +0000 (UTC) Subject: rpms/perl-Convert-BER/devel perl-Convert-BER.spec,1.2,1.3 Message-ID: <20090726043953.BA42911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-BER/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29317 Modified Files: perl-Convert-BER.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-BER.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-BER/devel/perl-Convert-BER.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Convert-BER.spec 26 Feb 2009 13:35:29 -0000 1.2 +++ perl-Convert-BER.spec 26 Jul 2009 04:39:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Convert-BER Version: 1.3101 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ASN.1 Basic Encoding Rules License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3101-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3101-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:40:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:40:10 +0000 (UTC) Subject: rpms/perl-Convert-BinHex/devel perl-Convert-BinHex.spec,1.12,1.13 Message-ID: <20090726044010.6506511C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-BinHex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29525 Modified Files: perl-Convert-BinHex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-BinHex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-BinHex/devel/perl-Convert-BinHex.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Convert-BinHex.spec 26 Feb 2009 13:35:56 -0000 1.12 +++ perl-Convert-BinHex.spec 26 Jul 2009 04:40:10 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Convert-BinHex Version: 1.119 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Macintosh BinHex extractor library for Perl Group: Development/Libraries License: GPL+ or Artistic @@ -45,6 +45,9 @@ Convert::BinHex extracts data from Macin %{_mandir}/man3/Convert::BinHex.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.119-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.119-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:40:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:40:27 +0000 (UTC) Subject: rpms/perl-Convert-Binary-C/devel perl-Convert-Binary-C.spec, 1.13, 1.14 Message-ID: <20090726044027.291F011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-Binary-C/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29716 Modified Files: perl-Convert-Binary-C.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-Binary-C.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-Binary-C/devel/perl-Convert-Binary-C.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Convert-Binary-C.spec 5 May 2009 08:13:11 -0000 1.13 +++ perl-Convert-Binary-C.spec 26 Jul 2009 04:40:26 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Convert-Binary-C Version: 0.74 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Binary data conversion using C types License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.74-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Alex Lancaster - 0.74-1 - Update to latest upstream (0.74) - Drop GCC 4.4 patch (fixed upstream) From jkeating at fedoraproject.org Sun Jul 26 04:40:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:40:43 +0000 (UTC) Subject: rpms/perl-Convert-NLS_DATE_FORMAT/devel perl-Convert-NLS_DATE_FORMAT.spec, 1.4, 1.5 Message-ID: <20090726044043.1231F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-NLS_DATE_FORMAT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29909 Modified Files: perl-Convert-NLS_DATE_FORMAT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-NLS_DATE_FORMAT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-NLS_DATE_FORMAT/devel/perl-Convert-NLS_DATE_FORMAT.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Convert-NLS_DATE_FORMAT.spec 26 Feb 2009 13:37:44 -0000 1.4 +++ perl-Convert-NLS_DATE_FORMAT.spec 26 Jul 2009 04:40:42 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Convert-NLS_DATE_FORMAT Version: 0.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert Oracle NLS_DATE_FORMAT <-> strftime Format Strings License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:40:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:40:59 +0000 (UTC) Subject: rpms/perl-Convert-PEM/devel perl-Convert-PEM.spec,1.6,1.7 Message-ID: <20090726044059.67D7511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-PEM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30113 Modified Files: perl-Convert-PEM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-PEM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-PEM/devel/perl-Convert-PEM.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Convert-PEM.spec 26 Feb 2009 13:38:40 -0000 1.6 +++ perl-Convert-PEM.spec 26 Jul 2009 04:40:59 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Convert-PEM Version: 0.07 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Read/write encrypted ASN.1 PEM files License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:41:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:41:15 +0000 (UTC) Subject: rpms/perl-Convert-TNEF/devel perl-Convert-TNEF.spec,1.12,1.13 Message-ID: <20090726044115.0277011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Convert-TNEF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30293 Modified Files: perl-Convert-TNEF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Convert-TNEF.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-TNEF/devel/perl-Convert-TNEF.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Convert-TNEF.spec 26 Feb 2009 13:39:34 -0000 1.12 +++ perl-Convert-TNEF.spec 26 Jul 2009 04:41:14 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Convert-TNEF Version: 0.17 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Perl module to read TNEF files License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Convert::TNEF.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.17-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.17-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:41:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:41:32 +0000 (UTC) Subject: rpms/perl-Crypt-Blowfish/devel perl-Crypt-Blowfish.spec,1.10,1.11 Message-ID: <20090726044132.5E45A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Blowfish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30473 Modified Files: perl-Crypt-Blowfish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Blowfish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Blowfish/devel/perl-Crypt-Blowfish.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Crypt-Blowfish.spec 26 Feb 2009 13:40:29 -0000 1.10 +++ perl-Crypt-Blowfish.spec 26 Jul 2009 04:41:32 -0000 1.11 @@ -1,7 +1,7 @@ Summary: XS Blowfish implementation for Perl Name: perl-Crypt-Blowfish Version: 2.10 -Release: 7%{?dist} +Release: 8%{?dist} License: Copyright only Group: Development/Libraries URL: http://search.cpan.org/dist/Crypt-Blowfish/ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:41:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:41:47 +0000 (UTC) Subject: rpms/perl-Crypt-CAST5_PP/devel perl-Crypt-CAST5_PP.spec,1.2,1.3 Message-ID: <20090726044147.23EE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-CAST5_PP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30636 Modified Files: perl-Crypt-CAST5_PP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-CAST5_PP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-CAST5_PP/devel/perl-Crypt-CAST5_PP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Crypt-CAST5_PP.spec 26 Feb 2009 13:41:27 -0000 1.2 +++ perl-Crypt-CAST5_PP.spec 26 Jul 2009 04:41:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Crypt-CAST5_PP Version: 1.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: CAST5 block cipher in pure Perl License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:42:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:42:08 +0000 (UTC) Subject: rpms/perl-Crypt-CBC/devel perl-Crypt-CBC.spec,1.10,1.11 Message-ID: <20090726044208.8D18511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-CBC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30834 Modified Files: perl-Crypt-CBC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-CBC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-CBC/devel/perl-Crypt-CBC.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Crypt-CBC.spec 26 Feb 2009 13:42:26 -0000 1.10 +++ perl-Crypt-CBC.spec 26 Jul 2009 04:42:08 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Encrypt Data with Cipher Block Chaining Mode Name: perl-Crypt-CBC Version: 2.29 -Release: 2%{?dist} +Release: 3%{?dist} # Upstream confirms that they're under the same license as perl. # Wording in CBC.pm is less than clear, but still. License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.29-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.29-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:42:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:42:25 +0000 (UTC) Subject: rpms/perl-Crypt-CipherSaber/devel perl-Crypt-CipherSaber.spec, 1.1, 1.2 Message-ID: <20090726044225.4589311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-CipherSaber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31011 Modified Files: perl-Crypt-CipherSaber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-CipherSaber.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-CipherSaber/devel/perl-Crypt-CipherSaber.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Crypt-CipherSaber.spec 27 Apr 2009 19:27:25 -0000 1.1 +++ perl-Crypt-CipherSaber.spec 26 Jul 2009 04:42:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Crypt-CipherSaber Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module implementing CipherSaber encryption License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Xavier Bachelot 1.00-1 - Specfile autogenerated by cpanspec 1.77. - Fix BR:s. From jkeating at fedoraproject.org Sun Jul 26 04:42:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:42:42 +0000 (UTC) Subject: rpms/perl-Crypt-DES/devel perl-Crypt-DES.spec,1.8,1.9 Message-ID: <20090726044242.1759411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-DES/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31189 Modified Files: perl-Crypt-DES.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-DES.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-DES/devel/perl-Crypt-DES.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Crypt-DES.spec 26 Feb 2009 13:43:29 -0000 1.8 +++ perl-Crypt-DES.spec 26 Jul 2009 04:42:41 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Crypt-DES Version: 2.05 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl DES encryption module License: BSD Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.05-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.05-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:42:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:42:57 +0000 (UTC) Subject: rpms/perl-Crypt-DES_EDE3/devel perl-Crypt-DES_EDE3.spec,1.6,1.7 Message-ID: <20090726044257.EEA6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-DES_EDE3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31358 Modified Files: perl-Crypt-DES_EDE3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-DES_EDE3.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-DES_EDE3/devel/perl-Crypt-DES_EDE3.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Crypt-DES_EDE3.spec 26 Feb 2009 13:44:28 -0000 1.6 +++ perl-Crypt-DES_EDE3.spec 26 Jul 2009 04:42:57 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Crypt-DES_EDE3 Version: 0.01 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Triple-DES EDE encryption/decryption module License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 04:43:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 04:43:12 +0000 (UTC) Subject: rpms/perl-Crypt-DH/devel perl-Crypt-DH.spec,1.11,1.12 Message-ID: <20090726044312.D155611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-DH/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31516 Modified Files: perl-Crypt-DH.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-DH.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-DH/devel/perl-Crypt-DH.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Crypt-DH.spec 26 Feb 2009 13:45:25 -0000 1.11 +++ perl-Crypt-DH.spec 26 Jul 2009 04:43:12 -0000 1.12 @@ -4,7 +4,7 @@ Summary: Perl module implementing the Diffie-Hellman key exchange system Name: perl-Crypt-DH Version: 0.06 -Release: 10%{?dist} +Release: 11%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-DH/ @@ -58,6 +58,9 @@ private keys, between them. %{_mandir}/man3/Crypt::DH.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:14:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:14:44 +0000 (UTC) Subject: rpms/perl-Crypt-Eksblowfish/devel perl-Crypt-Eksblowfish.spec, 1.1, 1.2 Message-ID: <20090726051444.380F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Eksblowfish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10495 Modified Files: perl-Crypt-Eksblowfish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Eksblowfish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Eksblowfish/devel/perl-Crypt-Eksblowfish.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Crypt-Eksblowfish.spec 7 May 2009 03:22:01 -0000 1.1 +++ perl-Crypt-Eksblowfish.spec 26 Jul 2009 05:14:43 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Crypt-Eksblowfish Version: 0.007 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Eksblowfish block cipher License: GPL+ or Artistic Group: Development/Libraries @@ -56,5 +56,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.007-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 0.007-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 05:14:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:14:58 +0000 (UTC) Subject: rpms/perl-Crypt-GPG/devel perl-Crypt-GPG.spec,1.1,1.2 Message-ID: <20090726051458.7E12B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-GPG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10634 Modified Files: perl-Crypt-GPG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-GPG.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-GPG/devel/perl-Crypt-GPG.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Crypt-GPG.spec 2 Jun 2009 21:43:52 -0000 1.1 +++ perl-Crypt-GPG.spec 26 Jul 2009 05:14:58 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Perl Object Oriented Interface to GnuPG Name: perl-Crypt-GPG Version: 1.63 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/%{pkgname}/ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Crypt::GPG.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.63-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Robert Scheck 1.63-3 - Changes to match with Fedora Packaging Guidelines (#503175) From jkeating at fedoraproject.org Sun Jul 26 05:15:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:15:17 +0000 (UTC) Subject: rpms/perl-Crypt-GeneratePassword/devel perl-Crypt-GeneratePassword.spec, 1.3, 1.4 Message-ID: <20090726051517.CABA711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-GeneratePassword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10819 Modified Files: perl-Crypt-GeneratePassword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-GeneratePassword.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-GeneratePassword/devel/perl-Crypt-GeneratePassword.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Crypt-GeneratePassword.spec 26 Feb 2009 13:47:16 -0000 1.3 +++ perl-Crypt-GeneratePassword.spec 26 Jul 2009 05:15:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Crypt-GeneratePassword Version: 0.03 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Generate secure random pronounceable passwords License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:15:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:15:34 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-AES/devel perl-Crypt-OpenSSL-AES.spec, 1.9, 1.10 Message-ID: <20090726051534.5A30611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-AES/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10997 Modified Files: perl-Crypt-OpenSSL-AES.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-AES.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-AES/devel/perl-Crypt-OpenSSL-AES.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Crypt-OpenSSL-AES.spec 26 Feb 2009 13:48:09 -0000 1.9 +++ perl-Crypt-OpenSSL-AES.spec 26 Jul 2009 05:15:34 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-AES Version: 0.02 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl interface to OpenSSL for AES License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:15:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:15:49 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-Bignum/devel perl-Crypt-OpenSSL-Bignum.spec, 1.9, 1.10 Message-ID: <20090726051549.3FED611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-Bignum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11152 Modified Files: perl-Crypt-OpenSSL-Bignum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-Bignum.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-Bignum/devel/perl-Crypt-OpenSSL-Bignum.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Crypt-OpenSSL-Bignum.spec 26 Feb 2009 13:49:03 -0000 1.9 +++ perl-Crypt-OpenSSL-Bignum.spec 26 Jul 2009 05:15:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-Bignum Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl interface to OpenSSL for Bignum License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:16:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:16:05 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-DSA/devel perl-Crypt-OpenSSL-DSA.spec, 1.8, 1.9 Message-ID: <20090726051605.3134011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-DSA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11317 Modified Files: perl-Crypt-OpenSSL-DSA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-DSA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-DSA/devel/perl-Crypt-OpenSSL-DSA.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Crypt-OpenSSL-DSA.spec 26 Feb 2009 13:50:01 -0000 1.8 +++ perl-Crypt-OpenSSL-DSA.spec 26 Jul 2009 05:16:05 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-DSA Version: 0.13 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Perl interface to OpenSSL for DSA License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:16:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:16:20 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-PKCS10/devel perl-Crypt-OpenSSL-PKCS10.spec, 1.7, 1.8 Message-ID: <20090726051620.74E2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-PKCS10/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11452 Modified Files: perl-Crypt-OpenSSL-PKCS10.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-PKCS10.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-PKCS10/devel/perl-Crypt-OpenSSL-PKCS10.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Crypt-OpenSSL-PKCS10.spec 26 Feb 2009 13:51:04 -0000 1.7 +++ perl-Crypt-OpenSSL-PKCS10.spec 26 Jul 2009 05:16:20 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-PKCS10 Version: 0.06 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Perl interface to OpenSSL for PKCS10 License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:16:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:16:39 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-RSA/devel perl-Crypt-OpenSSL-RSA.spec, 1.9, 1.10 Message-ID: <20090726051639.2DB5A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-RSA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11714 Modified Files: perl-Crypt-OpenSSL-RSA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-RSA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-RSA/devel/perl-Crypt-OpenSSL-RSA.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Crypt-OpenSSL-RSA.spec 26 Feb 2009 13:52:01 -0000 1.9 +++ perl-Crypt-OpenSSL-RSA.spec 26 Jul 2009 05:16:39 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-RSA Version: 0.25 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl interface to OpenSSL for RSA License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.25-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.25-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:16:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:16:54 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-Random/devel perl-Crypt-OpenSSL-Random.spec, 1.6, 1.7 Message-ID: <20090726051654.1737911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-Random/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11899 Modified Files: perl-Crypt-OpenSSL-Random.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-Random.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-Random/devel/perl-Crypt-OpenSSL-Random.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Crypt-OpenSSL-Random.spec 26 Feb 2009 13:52:57 -0000 1.6 +++ perl-Crypt-OpenSSL-Random.spec 26 Jul 2009 05:16:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-Random Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl interface to OpenSSL for Random License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:17:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:17:09 +0000 (UTC) Subject: rpms/perl-Crypt-OpenSSL-X509/devel perl-Crypt-OpenSSL-X509.spec, 1.9, 1.10 Message-ID: <20090726051709.54B6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-OpenSSL-X509/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12267 Modified Files: perl-Crypt-OpenSSL-X509.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-OpenSSL-X509.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-OpenSSL-X509/devel/perl-Crypt-OpenSSL-X509.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Crypt-OpenSSL-X509.spec 26 Feb 2009 13:53:54 -0000 1.9 +++ perl-Crypt-OpenSSL-X509.spec 26 Jul 2009 05:17:08 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Crypt-OpenSSL-X509 Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to OpenSSL for X509 License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:17:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:17:23 +0000 (UTC) Subject: rpms/perl-Crypt-PasswdMD5/devel perl-Crypt-PasswdMD5.spec,1.4,1.5 Message-ID: <20090726051723.CCA8911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-PasswdMD5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12710 Modified Files: perl-Crypt-PasswdMD5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-PasswdMD5.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-PasswdMD5/devel/perl-Crypt-PasswdMD5.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Crypt-PasswdMD5.spec 26 Feb 2009 13:54:50 -0000 1.4 +++ perl-Crypt-PasswdMD5.spec 26 Jul 2009 05:17:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Crypt-PasswdMD5 Version: 1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Provides interoperable MD5-based crypt() functions License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:17:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:17:38 +0000 (UTC) Subject: rpms/perl-Crypt-Primes/devel perl-Crypt-Primes.spec,1.7,1.8 Message-ID: <20090726051738.3554611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Primes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12980 Modified Files: perl-Crypt-Primes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Primes.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Primes/devel/perl-Crypt-Primes.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Crypt-Primes.spec 26 Feb 2009 13:55:42 -0000 1.7 +++ perl-Crypt-Primes.spec 26 Jul 2009 05:17:38 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Provable prime number generator for cryptographic applications Name: perl-Crypt-Primes Version: 0.50 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-Primes/ @@ -53,6 +53,9 @@ Parameters" (1994). %{_mandir}/man3/Crypt::Primes.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.50-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.50-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:17:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:17:51 +0000 (UTC) Subject: rpms/perl-Crypt-RSA/devel perl-Crypt-RSA.spec,1.13,1.14 Message-ID: <20090726051751.E9EDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-RSA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13130 Modified Files: perl-Crypt-RSA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-RSA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-RSA/devel/perl-Crypt-RSA.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Crypt-RSA.spec 8 Jun 2009 08:53:23 -0000 1.13 +++ perl-Crypt-RSA.spec 26 Jul 2009 05:17:51 -0000 1.14 @@ -1,7 +1,7 @@ Summary: RSA public-key cryptosystem Name: perl-Crypt-RSA Version: 1.99 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-RSA/ @@ -89,6 +89,9 @@ done %{_mandir}/man3/crypt-rsa-interoperablity-template.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.99-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 8 2009 Paul Howarth 1.99-1 - Update to 1.99 - * fix CPAN RT#37489 (precedence error in C::R::Key::{Private,Public}::write) From jkeating at fedoraproject.org Sun Jul 26 05:18:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:18:06 +0000 (UTC) Subject: rpms/perl-Crypt-Random/devel perl-Crypt-Random.spec,1.8,1.9 Message-ID: <20090726051806.3815111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Random/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13294 Modified Files: perl-Crypt-Random.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Random.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Random/devel/perl-Crypt-Random.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Crypt-Random.spec 26 Feb 2009 13:57:31 -0000 1.8 +++ perl-Crypt-Random.spec 26 Jul 2009 05:18:06 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Cryptographically Secure, True Random Number Generator Name: perl-Crypt-Random Version: 1.25 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-Random/ @@ -52,6 +52,9 @@ interval. %{_mandir}/man3/Crypt::Random.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.25-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.25-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:18:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:18:22 +0000 (UTC) Subject: rpms/perl-Crypt-Rijndael/devel perl-Crypt-Rijndael.spec,1.2,1.3 Message-ID: <20090726051822.513ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Rijndael/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13450 Modified Files: perl-Crypt-Rijndael.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Rijndael.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Rijndael/devel/perl-Crypt-Rijndael.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Crypt-Rijndael.spec 26 Feb 2009 13:58:27 -0000 1.2 +++ perl-Crypt-Rijndael.spec 26 Jul 2009 05:18:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Crypt-Rijndael Version: 1.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Crypt::CBC compliant Rijndael encryption module License: LGPLv2+ Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:18:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:18:37 +0000 (UTC) Subject: rpms/perl-Crypt-SSLeay/devel perl-Crypt-SSLeay.spec,1.39,1.40 Message-ID: <20090726051837.B23CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-SSLeay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13614 Modified Files: perl-Crypt-SSLeay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-SSLeay.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-SSLeay/devel/perl-Crypt-SSLeay.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- perl-Crypt-SSLeay.spec 26 Feb 2009 13:59:25 -0000 1.39 +++ perl-Crypt-SSLeay.spec 26 Jul 2009 05:18:37 -0000 1.40 @@ -1,7 +1,7 @@ Name: perl-Crypt-SSLeay Summary: Crypt::SSLeay - OpenSSL glue that provides LWP https support Version: 0.57 -Release: 11%{?dist} +Release: 12%{?dist} License: GPL+ or Artistic Group: Development/Libraries Source0: http://www.cpan.org/authors/id/D/DL/DLAND/Crypt-SSLeay-%{version}.tar.gz @@ -86,6 +86,9 @@ make test %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.57-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.57-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:18:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:18:52 +0000 (UTC) Subject: rpms/perl-Crypt-Simple/devel perl-Crypt-Simple.spec,1.6,1.7 Message-ID: <20090726051852.6E07211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13742 Modified Files: perl-Crypt-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Simple/devel/perl-Crypt-Simple.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Crypt-Simple.spec 26 Feb 2009 14:00:23 -0000 1.6 +++ perl-Crypt-Simple.spec 26 Jul 2009 05:18:52 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Crypt-Simple Version: 0.06 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Encrypt stuff simply Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:19:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:19:07 +0000 (UTC) Subject: rpms/perl-Crypt-SmbHash/devel perl-Crypt-SmbHash.spec,1.9,1.10 Message-ID: <20090726051907.F2D6D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-SmbHash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13915 Modified Files: perl-Crypt-SmbHash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-SmbHash.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-SmbHash/devel/perl-Crypt-SmbHash.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Crypt-SmbHash.spec 26 Feb 2009 14:01:21 -0000 1.9 +++ perl-Crypt-SmbHash.spec 26 Jul 2009 05:19:07 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Pure-perl Lanman and NT MD4 hash functions Name: perl-Crypt-SmbHash Version: 0.12 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-SmbHash/ @@ -44,6 +44,9 @@ systems. %{_mandir}/man3/Crypt::SmbHash.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:19:23 +0000 (UTC) Subject: rpms/perl-Crypt-Twofish/devel perl-Crypt-Twofish.spec,1.1,1.2 Message-ID: <20090726051923.5B8F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-Twofish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14073 Modified Files: perl-Crypt-Twofish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-Twofish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-Twofish/devel/perl-Crypt-Twofish.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Crypt-Twofish.spec 13 May 2009 14:58:15 -0000 1.1 +++ perl-Crypt-Twofish.spec 26 Jul 2009 05:19:23 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Crypt-Twofish Version: 2.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Twofish Encryption Algorithm License: GPL+ or Artistic Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Iain Arnell 2.13-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 05:19:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:19:39 +0000 (UTC) Subject: rpms/perl-Curses/devel perl-Curses.spec,1.13,1.14 Message-ID: <20090726051939.49DBB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Curses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14267 Modified Files: perl-Curses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Curses.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Curses/devel/perl-Curses.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Curses.spec 22 Jul 2009 07:39:33 -0000 1.13 +++ perl-Curses.spec 26 Jul 2009 05:19:39 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Curses Version: 1.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl bindings for ncurses Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 kwizart < kwizart at gmail.com > - 1.27-1 - Update to 1.27 - Remove exec perm for demo* provided as %%doc - Fix #510186 From jkeating at fedoraproject.org Sun Jul 26 05:19:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:19:54 +0000 (UTC) Subject: rpms/perl-DBD-AnyData/devel perl-DBD-AnyData.spec,1.6,1.7 Message-ID: <20090726051954.47BF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-AnyData/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14423 Modified Files: perl-DBD-AnyData.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-AnyData.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-AnyData/devel/perl-DBD-AnyData.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DBD-AnyData.spec 26 Feb 2009 14:03:13 -0000 1.6 +++ perl-DBD-AnyData.spec 26 Jul 2009 05:19:54 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DBD-AnyData Version: 0.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DBI access to XML, CSV and other formats Group: Development/Libraries License: GPL+ or Artistic @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:20:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:20:09 +0000 (UTC) Subject: rpms/perl-DBD-CSV/devel perl-DBD-CSV.spec,1.7,1.8 Message-ID: <20090726052009.C4ECC11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-CSV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14626 Modified Files: perl-DBD-CSV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-CSV.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-CSV/devel/perl-DBD-CSV.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-DBD-CSV.spec 26 Feb 2009 14:04:12 -0000 1.7 +++ perl-DBD-CSV.spec 26 Jul 2009 05:20:09 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-DBD-CSV Version: 0.22 -Release: 7%{?dist} +Release: 8%{?dist} Summary: DBI driver for CSV files Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:20:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:20:25 +0000 (UTC) Subject: rpms/perl-DBD-Mock/devel perl-DBD-Mock.spec,1.8,1.9 Message-ID: <20090726052025.4C07511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-Mock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14778 Modified Files: perl-DBD-Mock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-Mock.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-Mock/devel/perl-DBD-Mock.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-DBD-Mock.spec 26 Feb 2009 14:05:13 -0000 1.8 +++ perl-DBD-Mock.spec 26 Jul 2009 05:20:25 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-DBD-Mock Version: 1.39 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mock database driver for testing License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.39-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.39-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:20:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:20:41 +0000 (UTC) Subject: rpms/perl-DBD-Multi/devel perl-DBD-Multi.spec,1.3,1.4 Message-ID: <20090726052041.9774611C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-Multi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14970 Modified Files: perl-DBD-Multi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-Multi.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-Multi/devel/perl-DBD-Multi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DBD-Multi.spec 26 Feb 2009 14:06:11 -0000 1.3 +++ perl-DBD-Multi.spec 26 Jul 2009 05:20:41 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DBD-Multi Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} # see Makefile.PL License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:20:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:20:57 +0000 (UTC) Subject: rpms/perl-DBD-MySQL/devel perl-DBD-MySQL.spec,1.45,1.46 Message-ID: <20090726052057.7B60011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-MySQL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15116 Modified Files: perl-DBD-MySQL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-MySQL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-MySQL/devel/perl-DBD-MySQL.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- perl-DBD-MySQL.spec 10 Jun 2009 14:57:35 -0000 1.45 +++ perl-DBD-MySQL.spec 26 Jul 2009 05:20:57 -0000 1.46 @@ -1,6 +1,6 @@ Name: perl-DBD-MySQL Version: 4.011 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A MySQL interface for perl Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.011-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Stepan Kasal - 4.011-1 - new upstream version - apply iconv on primary source From jkeating at fedoraproject.org Sun Jul 26 05:21:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:21:12 +0000 (UTC) Subject: rpms/perl-DBD-Pg/devel perl-DBD-Pg.spec,1.52,1.53 Message-ID: <20090726052112.6EEB211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-Pg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15291 Modified Files: perl-DBD-Pg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-Pg.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-Pg/devel/perl-DBD-Pg.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- perl-DBD-Pg.spec 10 Jun 2009 14:48:29 -0000 1.52 +++ perl-DBD-Pg.spec 26 Jul 2009 05:21:12 -0000 1.53 @@ -1,6 +1,6 @@ Name: perl-DBD-Pg Version: 2.13.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A PostgreSQL interface for perl Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.13.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Stepan Kasal - 2.13.1-2 - rebuild against perl-DBI-1.609 From jkeating at fedoraproject.org Sun Jul 26 05:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:21:28 +0000 (UTC) Subject: rpms/perl-DBD-SQLite/devel perl-DBD-SQLite.spec,1.29,1.30 Message-ID: <20090726052128.767CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-SQLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15439 Modified Files: perl-DBD-SQLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-SQLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-SQLite/devel/perl-DBD-SQLite.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- perl-DBD-SQLite.spec 10 Jun 2009 15:05:25 -0000 1.29 +++ perl-DBD-SQLite.spec 26 Jul 2009 05:21:28 -0000 1.30 @@ -1,6 +1,6 @@ Name: perl-DBD-SQLite Version: 1.25 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Self Contained RDBMS in a DBI Driver Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Stepan Kasal 1.25-2 - rebuild against DBI 1.609 From jkeating at fedoraproject.org Sun Jul 26 05:21:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:21:44 +0000 (UTC) Subject: rpms/perl-DBD-SQLite2/devel perl-DBD-SQLite2.spec,1.11,1.12 Message-ID: <20090726052144.5DC4011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-SQLite2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15615 Modified Files: perl-DBD-SQLite2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-SQLite2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-SQLite2/devel/perl-DBD-SQLite2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-DBD-SQLite2.spec 26 Feb 2009 14:09:58 -0000 1.11 +++ perl-DBD-SQLite2.spec 26 Jul 2009 05:21:44 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-DBD-SQLite2 Version: 0.33 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Self Contained RDBMS in a DBI Driver (sqlite 2.x) Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.33-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.33-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:21:59 +0000 (UTC) Subject: rpms/perl-DBD-XBase/devel perl-DBD-XBase.spec,1.10,1.11 Message-ID: <20090726052159.3501A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBD-XBase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15756 Modified Files: perl-DBD-XBase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBD-XBase.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBD-XBase/devel/perl-DBD-XBase.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-DBD-XBase.spec 26 Feb 2009 14:10:58 -0000 1.10 +++ perl-DBD-XBase.spec 26 Jul 2009 05:21:59 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-DBD-XBase Version: 0.241 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl module for reading and writing the dbf files Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.241-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.241-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:22:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:22:14 +0000 (UTC) Subject: rpms/perl-DBI/devel perl-DBI.spec,1.42,1.43 Message-ID: <20090726052214.5110C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15916 Modified Files: perl-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBI/devel/perl-DBI.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- perl-DBI.spec 10 Jun 2009 14:36:14 -0000 1.42 +++ perl-DBI.spec 26 Jul 2009 05:22:14 -0000 1.43 @@ -1,6 +1,6 @@ Name: perl-DBI Version: 1.609 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A database access API for perl Group: Development/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.609-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Stepan Kasal - 1.609-1 - new upstream version - drop unneeded build patch From jkeating at fedoraproject.org Sun Jul 26 05:22:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:22:29 +0000 (UTC) Subject: rpms/perl-DBI-Dumper/devel perl-DBI-Dumper.spec,1.7,1.8 Message-ID: <20090726052229.8653B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBI-Dumper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16060 Modified Files: perl-DBI-Dumper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBI-Dumper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBI-Dumper/devel/perl-DBI-Dumper.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-DBI-Dumper.spec 26 Feb 2009 14:12:48 -0000 1.7 +++ perl-DBI-Dumper.spec 26 Jul 2009 05:22:29 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-DBI-Dumper Version: 2.01 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Dump data from a DBI datasource to file # see http://rt.cpan.org/Public/Bug/Display.html?id=27269 License: GPL+ or Artistic @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.01-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.01-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:22:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:22:44 +0000 (UTC) Subject: rpms/perl-DBICx-TestDatabase/devel perl-DBICx-TestDatabase.spec, 1.2, 1.3 Message-ID: <20090726052244.2D4C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBICx-TestDatabase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16232 Modified Files: perl-DBICx-TestDatabase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBICx-TestDatabase.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBICx-TestDatabase/devel/perl-DBICx-TestDatabase.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DBICx-TestDatabase.spec 4 Jun 2009 05:37:24 -0000 1.2 +++ perl-DBICx-TestDatabase.spec 26 Jul 2009 05:22:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-DBICx-TestDatabase Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} # lib/DBICx/TestDatabase.pm -> GPL+ or Artistic # lib/DBICx/TestDatabase/Subclass.pm -> GPL+ or Artistic License: GPL+ or Artistic @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Chris Weyl 0.02-2 - add br on DBD::SQLite From jkeating at fedoraproject.org Sun Jul 26 05:22:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:22:59 +0000 (UTC) Subject: rpms/perl-DBIx-Class/devel perl-DBIx-Class.spec,1.13,1.14 Message-ID: <20090726052259.883B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16378 Modified Files: perl-DBIx-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class/devel/perl-DBIx-Class.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-DBIx-Class.spec 26 Jun 2009 18:25:23 -0000 1.13 +++ perl-DBIx-Class.spec 26 Jul 2009 05:22:59 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class Version: 0.08107 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extensible and flexible object <-> relational mapper License: GPL+ or Artistic Group: Development/Libraries @@ -157,6 +157,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08107-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Chris Weyl 0.08107-1 - auto-update to 0.08107 (by cpan-spec-update 0.01) - altered br on perl(DBD::SQLite) (1.13 => 1.25) From jkeating at fedoraproject.org Sun Jul 26 05:23:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:23:17 +0000 (UTC) Subject: rpms/perl-DBIx-Class-DateTime-Epoch/devel perl-DBIx-Class-DateTime-Epoch.spec, 1.3, 1.4 Message-ID: <20090726052317.257DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Class-DateTime-Epoch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16558 Modified Files: perl-DBIx-Class-DateTime-Epoch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Class-DateTime-Epoch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class-DateTime-Epoch/devel/perl-DBIx-Class-DateTime-Epoch.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DBIx-Class-DateTime-Epoch.spec 26 Jun 2009 09:16:55 -0000 1.3 +++ perl-DBIx-Class-DateTime-Epoch.spec 26 Jul 2009 05:23:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class-DateTime-Epoch Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} # lib/DBIx/Class/DateTime/Epoch.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway 0.05-2 - fix duplicate directory ownership (perl-DBIx-Class owns %{perl_vendorlib}/DBIx/Class/) From jkeating at fedoraproject.org Sun Jul 26 05:23:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:23:32 +0000 (UTC) Subject: rpms/perl-DBIx-Class-DynamicDefault/devel perl-DBIx-Class-DynamicDefault.spec, 1.2, 1.3 Message-ID: <20090726052332.5013D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Class-DynamicDefault/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16696 Modified Files: perl-DBIx-Class-DynamicDefault.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Class-DynamicDefault.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class-DynamicDefault/devel/perl-DBIx-Class-DynamicDefault.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DBIx-Class-DynamicDefault.spec 26 Jun 2009 09:18:50 -0000 1.2 +++ perl-DBIx-Class-DynamicDefault.spec 26 Jul 2009 05:23:32 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class-DynamicDefault Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} # lib/DBIx/Class/DynamicDefault.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway 0.03-2 - fix duplicate directory ownership (perl-DBIx-Class owns %{perl_vendorlib}/DBIx/Class/) From jkeating at fedoraproject.org Sun Jul 26 05:23:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:23:48 +0000 (UTC) Subject: rpms/perl-DBIx-Class-EncodedColumn/devel perl-DBIx-Class-EncodedColumn.spec, 1.2, 1.3 Message-ID: <20090726052348.74FCC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Class-EncodedColumn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16841 Modified Files: perl-DBIx-Class-EncodedColumn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Class-EncodedColumn.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class-EncodedColumn/devel/perl-DBIx-Class-EncodedColumn.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DBIx-Class-EncodedColumn.spec 26 Jun 2009 09:12:21 -0000 1.2 +++ perl-DBIx-Class-EncodedColumn.spec 26 Jul 2009 05:23:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class-EncodedColumn Version: 0.00002 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatically encode columns License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.00002-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway 0.00002-2 - fix duplicate directory ownership (perl-DBIx-Class owns %{perl_vendorlib}/DBIx/Class/) From jkeating at fedoraproject.org Sun Jul 26 05:24:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:24:03 +0000 (UTC) Subject: rpms/perl-DBIx-Class-Schema-Loader/devel perl-DBIx-Class-Schema-Loader.spec, 1.5, 1.6 Message-ID: <20090726052403.8B14C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Class-Schema-Loader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16983 Modified Files: perl-DBIx-Class-Schema-Loader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Class-Schema-Loader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Class-Schema-Loader/devel/perl-DBIx-Class-Schema-Loader.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-DBIx-Class-Schema-Loader.spec 26 Jun 2009 09:23:59 -0000 1.5 +++ perl-DBIx-Class-Schema-Loader.spec 26 Jul 2009 05:24:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class-Schema-Loader Version: 0.04006 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Dynamic definition of a DBIx::Class::Schema License: GPL+ or Artistic Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04006-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway 0.04006-2 - fix duplicate directory ownership (perl-DBIx-Class owns %{perl_vendorlib}/DBIx/Class/) From jkeating at fedoraproject.org Sun Jul 26 05:24:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:24:16 +0000 (UTC) Subject: rpms/perl-DBIx-ContextualFetch/devel perl-DBIx-ContextualFetch.spec, 1.7, 1.8 Message-ID: <20090726052416.E77E911C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-ContextualFetch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17145 Modified Files: perl-DBIx-ContextualFetch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-ContextualFetch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-ContextualFetch/devel/perl-DBIx-ContextualFetch.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-DBIx-ContextualFetch.spec 26 Feb 2009 14:15:41 -0000 1.7 +++ perl-DBIx-ContextualFetch.spec 26 Jul 2009 05:24:16 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-DBIx-ContextualFetch Version: 1.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Add contextual fetches to DBI Group: Development/Libraries License: GPL+ or Artistic @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:24:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:24:31 +0000 (UTC) Subject: rpms/perl-DBIx-DBSchema/devel perl-DBIx-DBSchema.spec,1.14,1.15 Message-ID: <20090726052431.0A65811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-DBSchema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17304 Modified Files: perl-DBIx-DBSchema.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-DBSchema.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-DBSchema/devel/perl-DBIx-DBSchema.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-DBIx-DBSchema.spec 26 Feb 2009 14:16:40 -0000 1.14 +++ perl-DBIx-DBSchema.spec 26 Jul 2009 05:24:30 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-DBIx-DBSchema Version: 0.36 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Database-independent schema objects Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.36-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:24:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:24:44 +0000 (UTC) Subject: rpms/perl-DBIx-POS/devel perl-DBIx-POS.spec,1.5,1.6 Message-ID: <20090726052444.F3A2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-POS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17464 Modified Files: perl-DBIx-POS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-POS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-POS/devel/perl-DBIx-POS.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-DBIx-POS.spec 26 Feb 2009 14:17:37 -0000 1.5 +++ perl-DBIx-POS.spec 26 Jul 2009 05:24:44 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-DBIx-POS Version: 0.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Define a dictionary of SQL statements in a POD dialect (POS) # There was some code that was taken from Class::Singleton, which was Artistic only at the time. # That code has since been relicensed to GPL+ or Artistic. @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:24:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:24:58 +0000 (UTC) Subject: rpms/perl-DBIx-Safe/devel perl-DBIx-Safe.spec,1.2,1.3 Message-ID: <20090726052458.1C75811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-Safe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17598 Modified Files: perl-DBIx-Safe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-Safe.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-Safe/devel/perl-DBIx-Safe.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DBIx-Safe.spec 26 Feb 2009 14:18:31 -0000 1.2 +++ perl-DBIx-Safe.spec 26 Jul 2009 05:24:57 -0000 1.3 @@ -1,7 +1,7 @@ %define realname DBIx-Safe Name: perl-DBIx-Safe Version: 1.2.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Safer access to your database through a DBI database handle License: BSD Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:25:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:25:11 +0000 (UTC) Subject: rpms/perl-DBIx-SearchBuilder/devel perl-DBIx-SearchBuilder.spec, 1.20, 1.21 Message-ID: <20090726052511.0771F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17745 Modified Files: perl-DBIx-SearchBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBIx-SearchBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBIx-SearchBuilder/devel/perl-DBIx-SearchBuilder.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-DBIx-SearchBuilder.spec 18 Jun 2009 03:07:59 -0000 1.20 +++ perl-DBIx-SearchBuilder.spec 26 Jul 2009 05:25:10 -0000 1.21 @@ -7,7 +7,7 @@ Name: perl-DBIx-SearchBuilder Version: 1.55 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Encapsulate SQL queries and rows in simple perl objects License: GPL+ or Artistic Group: Development/Libraries @@ -94,6 +94,9 @@ DBIx::SearchBuilder bindings for Oracle %endif %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.55-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ralf Cors?pius - 1.55-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 05:25:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:25:24 +0000 (UTC) Subject: rpms/perl-DBM-Deep/devel perl-DBM-Deep.spec,1.4,1.5 Message-ID: <20090726052524.E5D2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DBM-Deep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17869 Modified Files: perl-DBM-Deep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DBM-Deep.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DBM-Deep/devel/perl-DBM-Deep.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-DBM-Deep.spec 26 Feb 2009 14:20:31 -0000 1.4 +++ perl-DBM-Deep.spec 26 Jul 2009 05:25:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-DBM-Deep Version: 0.983 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A pure perl multi-level hash/array DBM License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.983-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.983-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:25:39 +0000 (UTC) Subject: rpms/perl-DDL-Oracle/devel perl-DDL-Oracle.spec,1.2,1.3 Message-ID: <20090726052539.2387811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DDL-Oracle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18046 Modified Files: perl-DDL-Oracle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DDL-Oracle.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DDL-Oracle/devel/perl-DDL-Oracle.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DDL-Oracle.spec 26 Feb 2009 14:21:29 -0000 1.2 +++ perl-DDL-Oracle.spec 26 Jul 2009 05:25:38 -0000 1.3 @@ -2,7 +2,7 @@ Name: perl-DDL-Oracle Summary: DDL generator for Oracle databases Group: Development/Tools Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Source0: http://search.cpan.org/CPAN/authors/id/R/RV/RVSUTHERL/DDL-Oracle-%{version}.tar.gz URL: http://search.cpan.org/~rvsutherl/DDL-Oracle-1.11 @@ -45,6 +45,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/man3/DDL* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:25:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:25:54 +0000 (UTC) Subject: rpms/perl-Daemon-Generic/devel perl-Daemon-Generic.spec,1.1,1.2 Message-ID: <20090726052554.49FD611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Daemon-Generic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18175 Modified Files: perl-Daemon-Generic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Daemon-Generic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Daemon-Generic/devel/perl-Daemon-Generic.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Daemon-Generic.spec 10 May 2009 05:32:36 -0000 1.1 +++ perl-Daemon-Generic.spec 26 Jul 2009 05:25:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Daemon-Generic Version: 0.61 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Framework to provide start/stop/reload for a daemon License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.61-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Emmanuel Seyman 0.61-1 - Update to 0.61 From jkeating at fedoraproject.org Sun Jul 26 05:26:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:26:10 +0000 (UTC) Subject: rpms/perl-Danga-Socket/devel perl-Danga-Socket.spec,1.4,1.5 Message-ID: <20090726052610.7FA5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Danga-Socket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18330 Modified Files: perl-Danga-Socket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Danga-Socket.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Danga-Socket/devel/perl-Danga-Socket.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Danga-Socket.spec 26 Feb 2009 14:22:23 -0000 1.4 +++ perl-Danga-Socket.spec 26 Jul 2009 05:26:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Danga-Socket Version: 1.58 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Event loop and event-driven async socket base class License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.58-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.58-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:26:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:26:26 +0000 (UTC) Subject: rpms/perl-Data-Alias/devel perl-Data-Alias.spec,1.14,1.15 Message-ID: <20090726052626.9B31211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Alias/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18475 Modified Files: perl-Data-Alias.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Alias.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Alias/devel/perl-Data-Alias.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Data-Alias.spec 26 Feb 2009 14:23:21 -0000 1.14 +++ perl-Data-Alias.spec 26 Jul 2009 05:26:26 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Data-Alias Version: 1.07 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Comprehensive set of aliasing operations License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.07-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:26:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:26:42 +0000 (UTC) Subject: rpms/perl-Data-Buffer/devel perl-Data-Buffer.spec,1.8,1.9 Message-ID: <20090726052642.8505B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Buffer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18653 Modified Files: perl-Data-Buffer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Buffer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Buffer/devel/perl-Data-Buffer.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Data-Buffer.spec 26 Feb 2009 14:24:18 -0000 1.8 +++ perl-Data-Buffer.spec 26 Jul 2009 05:26:42 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Read/write buffer class for perl Name: perl-Data-Buffer Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Data-Buffer/ @@ -44,6 +44,9 @@ built-in functions. %{_mandir}/man3/Data::Buffer.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:26:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:26:57 +0000 (UTC) Subject: rpms/perl-Data-Compare/devel perl-Data-Compare.spec,1.11,1.12 Message-ID: <20090726052657.D697511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Compare/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18792 Modified Files: perl-Data-Compare.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Compare.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Compare/devel/perl-Data-Compare.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Data-Compare.spec 26 Feb 2009 14:25:13 -0000 1.11 +++ perl-Data-Compare.spec 26 Jul 2009 05:26:57 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Data-Compare Version: 1.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Compare perl data structures Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:27:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:27:11 +0000 (UTC) Subject: rpms/perl-Data-Denter/devel perl-Data-Denter.spec,1.1,1.2 Message-ID: <20090726052711.2739311C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Denter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18945 Modified Files: perl-Data-Denter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Denter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Denter/devel/perl-Data-Denter.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Data-Denter.spec 21 Mar 2009 19:30:12 -0000 1.1 +++ perl-Data-Denter.spec 26 Jul 2009 05:27:10 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Data-Denter Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} # Denter.pod -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Chris Weyl 0.15-1 - update for submission From jkeating at fedoraproject.org Sun Jul 26 05:27:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:27:25 +0000 (UTC) Subject: rpms/perl-Data-Dump/devel perl-Data-Dump.spec,1.7,1.8 Message-ID: <20090726052725.11EB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Dump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19081 Modified Files: perl-Data-Dump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Dump.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Dump/devel/perl-Data-Dump.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Data-Dump.spec 26 Feb 2009 14:26:06 -0000 1.7 +++ perl-Data-Dump.spec 26 Jul 2009 05:27:24 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Data-Dump Version: 1.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Pretty printing of data structures License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:27:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:27:44 +0000 (UTC) Subject: rpms/perl-Data-Dump-Streamer/devel perl-Data-Dump-Streamer.spec, 1.4, 1.5 Message-ID: <20090726052744.1C80311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Dump-Streamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19263 Modified Files: perl-Data-Dump-Streamer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Dump-Streamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Dump-Streamer/devel/perl-Data-Dump-Streamer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Data-Dump-Streamer.spec 12 Jun 2009 14:55:39 -0000 1.4 +++ perl-Data-Dump-Streamer.spec 26 Jul 2009 05:27:43 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Data-Dump-Streamer Version: 2.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Accurately serialize a data structure as Perl code License: GPL+ or Artistic Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Iain Arnell 2.09-2 - fix FTBFS by patching t/madness.t (due to rt #44610) From jkeating at fedoraproject.org Sun Jul 26 05:27:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:27:57 +0000 (UTC) Subject: rpms/perl-Data-Dumper-Names/devel perl-Data-Dumper-Names.spec, 1.3, 1.4 Message-ID: <20090726052757.2414F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Dumper-Names/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19417 Modified Files: perl-Data-Dumper-Names.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Dumper-Names.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Dumper-Names/devel/perl-Data-Dumper-Names.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Data-Dumper-Names.spec 22 Apr 2009 08:38:13 -0000 1.3 +++ perl-Data-Dumper-Names.spec 26 Jul 2009 05:27:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Data-Dumper-Names Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Data::Dumper like module for printing and eval data structures License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Marcela Ma?l??ov? 0.03-4 - added BR Test::More for tests, rebuild is not needed now From jkeating at fedoraproject.org Sun Jul 26 05:28:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:28:12 +0000 (UTC) Subject: rpms/perl-Data-FormValidator/devel perl-Data-FormValidator.spec, 1.1, 1.2 Message-ID: <20090726052812.2C73D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-FormValidator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19587 Modified Files: perl-Data-FormValidator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-FormValidator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-FormValidator/devel/perl-Data-FormValidator.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Data-FormValidator.spec 1 Mar 2009 05:05:19 -0000 1.1 +++ perl-Data-FormValidator.spec 26 Jul 2009 05:28:11 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Data-FormValidator Version: 4.63 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Validates user input (usually from an HTML form) based on input profile License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 4.63-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Iain Arnell 4.63-1 - Specfile autogenerated by cpanspec 1.77. - remove unnecessary requires From kkofler at fedoraproject.org Sun Jul 26 05:28:18 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 05:28:18 +0000 (UTC) Subject: rpms/kdelibs/F-10 kdelibs-4.2.3-fixPopupForPlasmaboard.patch, NONE, 1.1 kdelibs-4.2.4-cve-2009-0945.patch, NONE, 1.1 kdelibs-4.2.4-cve-2009-1690.patch, NONE, 1.1 kdelibs-4.2.4-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1687.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1698.patch, NONE, 1.1 kdelibs-4.2.98-cve-2009-1725.patch, NONE, 1.1 kdelibs-4.1.96-parallel_devel.patch, 1.1, 1.2 kdelibs.spec, 1.431, 1.432 Message-ID: <20090726052818.F1AFB11C00CE@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19647/F-10 Modified Files: kdelibs-4.1.96-parallel_devel.patch kdelibs.spec Added Files: kdelibs-4.2.3-fixPopupForPlasmaboard.patch kdelibs-4.2.4-cve-2009-0945.patch kdelibs-4.2.4-cve-2009-1690.patch kdelibs-4.2.4-cve-2009-2537-select-length.patch kdelibs-4.2.98-cve-2009-1687.patch kdelibs-4.2.98-cve-2009-1698.patch kdelibs-4.2.98-cve-2009-1725.patch Log Message: Sync from F11: * Sun Jul 26 2009 Kevin Kofler - 4.2.4-6 - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) - fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling - fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl * Thu Jul 23 2009 Jaroslav Reznik - 4.2.4-5 - CVE-2009-2537 - select length DoS - correct fixPopupForPlasmaboard.patch * Wed Jul 08 2009 Kevin Kofler - 4.2.4-4 - fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) * Mon Jun 15 2009 Rex Dieter 4.2.4-3 - fixPopupForPlasmaboard.patch kdelibs-4.2.3-fixPopupForPlasmaboard.patch: popupapplet.cpp | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) --- NEW FILE kdelibs-4.2.3-fixPopupForPlasmaboard.patch --- From: =?iso-8859-1?q?Bj=F6rn_Ruberg?= To: kde-packager at kde.org Subject: kdelibs patch for making virtual keyboard work Date: Sat, 6 Jun 2009 23:40:47 +0200 Message-Id: <200906062340.47628.bjoern at ruberg-wegener.de> Hello, I want you to have a look at the patch attached. It's from current KDE 4.2 and 4.3 trunk. It didn't make it into KDE 4.2.4, but maybe you want to apply it to your KDE packages. It is needed for making the plasmoid plasmaboard working. Plasmaboard is a virtual keyboard for plasma. Find it here: http://www.kde-look.org/content/show.php/Plasmaboard?content=101822 Without the patch, opening plasmaboard will steal window focus, what makes the plasmoid useless. Please notify me if this patch find its way in your distribution so I can maintain a list for the plasmaboard users. Regards, Bj?rn Ruberg Index: kdelibs/plasma/popupapplet.cpp =================================================================== --- kdelibs/plasma/popupapplet.cpp (Revision 976120) +++ kdelibs/plasma/popupapplet.cpp (Arbeitskopie) @@ -275,11 +275,7 @@ //stuff out of your Dialog (extenders). Monitor WindowDeactivate events so we can //emulate the same kind of behavior as Qt::Popup (close when you click somewhere //else. - dialog->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); - updateDialogFlags(); - KWindowSystem::setState(dialog->winId(), NET::SkipTaskbar | NET::SkipPager); - dialog->installEventFilter(q); - + q->setMinimumSize(QSize(0, 0)); if (gWidget) { Corona *corona = qobject_cast(gWidget->scene()); @@ -289,14 +285,25 @@ corona->addOffscreenWidget(gWidget); dialog->setGraphicsWidget(gWidget); } + + dialog->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | (gWidget->windowFlags() & Qt::X11BypassWindowManagerHint)); } else if (qWidget) { QVBoxLayout *l_layout = new QVBoxLayout(dialog); l_layout->setSpacing(0); l_layout->setMargin(0); l_layout->addWidget(qWidget); dialog->adjustSize(); + + dialog->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | (qWidget->windowFlags() & Qt::X11BypassWindowManagerHint)); } + else { + dialog->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); + } + updateDialogFlags(); + KWindowSystem::setState(dialog->winId(), NET::SkipTaskbar | NET::SkipPager); + dialog->installEventFilter(q); + QObject::connect(dialog, SIGNAL(dialogResized()), q, SLOT(dialogSizeChanged())); QObject::connect(dialog, SIGNAL(dialogVisible(bool)), q, SLOT(dialogStatusChanged(bool))); } kdelibs-4.2.4-cve-2009-0945.patch: SVGList.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.4-cve-2009-0945.patch --- Index: khtml/svg/SVGList.h =================================================================== --- khtml/svg/SVGList.h (revision 983301) +++ khtml/svg/SVGList.h (revision 983302) @@ -97,7 +97,11 @@ Item insertItemBefore(Item newItem, unsigned int index, ExceptionCode&) { - m_vector.insert(index, newItem); + if (index < m_vector.size()) { + m_vector.insert(index, newItem); + } else { + m_vector.append(newItem); + } return newItem; } kdelibs-4.2.4-cve-2009-1690.patch: htmlparser.cpp | 12 +++++------- htmlparser.h | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) --- NEW FILE kdelibs-4.2.4-cve-2009-1690.patch --- Index: khtml/html/htmlparser.h =================================================================== --- khtml/html/htmlparser.h (revision 983315) +++ khtml/html/htmlparser.h (revision 983316) @@ -157,7 +157,7 @@ /* * the head element. Needed for crappy html which defines after */ - DOM::HTMLHeadElementImpl *head; + RefPtr head; /* * a possible element in the head. Compatibility hack for Index: khtml/html/htmlparser.cpp =================================================================== --- khtml/html/htmlparser.cpp (revision 983315) +++ khtml/html/htmlparser.cpp (revision 983316) @@ -216,7 +216,6 @@ form = 0; map = 0; - head = 0; end = false; isindex = 0; @@ -678,8 +677,7 @@ case ID_BASE: if(!head) { head = new HTMLHeadElementImpl(document); - e = head; - insertNode(e); + insertNode(head.get()); handled = true; } break; @@ -894,7 +892,7 @@ case ID_HEAD: if(!head && (current->id() == ID_HTML || current->isDocumentNode())) { head = new HTMLHeadElementImpl(document); - n = head; + n = head.get(); } break; case ID_BODY: @@ -1907,19 +1905,19 @@ head = new HTMLHeadElementImpl(document); HTMLElementImpl *body = doc()->body(); int exceptioncode = 0; - doc()->documentElement()->insertBefore(head, body, exceptioncode); + doc()->documentElement()->insertBefore(head.get(), body, exceptioncode); if ( exceptioncode ) { #ifdef PARSER_DEBUG kDebug( 6035 ) << "creation of head failed!!!!:" << exceptioncode; #endif - delete head; + delete head.get(); head = 0; } // If the body does not exist yet, then the should be pushed as the current block. if (head && !body) { pushBlock(head->id(), tagPriority(head->id())); - setCurrent(head); + setCurrent(head.get()); } } kdelibs-4.2.4-cve-2009-2537-select-length.patch: kjs_html.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.4-cve-2009-2537-select-length.patch --- diff -up kdelibs-4.2.4/khtml/ecma/kjs_html.cpp.cve-2009-2537-select-length kdelibs-4.2.4/khtml/ecma/kjs_html.cpp --- kdelibs-4.2.4/khtml/ecma/kjs_html.cpp.cve-2009-2537-select-length 2009-03-26 15:44:13.000000000 +0100 +++ kdelibs-4.2.4/khtml/ecma/kjs_html.cpp 2009-07-23 10:35:55.908865609 +0200 @@ -69,6 +69,9 @@ #include #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + using namespace DOM; namespace KJS { @@ -2428,8 +2431,12 @@ void KJS::HTMLElement::putValueProperty( case SelectValue: { select.setValue(str.implementation()); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable JSObject *coll = getSelectHTMLCollection(exec, select.options(), &select)->getObject(); + if ( coll ) - coll->put(exec,"length",value); + if (value->toInteger(exec) >= MAX_SELECT_LENGTH) + setDOMException(exec, DOMException::INDEX_SIZE_ERR); + else + coll->put(exec, "length", value); return; } // read-only: form kdelibs-4.2.98-cve-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-4.2.98-cve-2009-1687.patch --- diff -ur kdelibs-4.2.98/kjs/collector.cpp kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp --- kdelibs-4.2.98/kjs/collector.cpp 2009-04-30 20:02:44.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1687/kjs/collector.cpp 2009-07-26 03:52:44.000000000 +0200 @@ -31,6 +31,7 @@ #include "value.h" #include +#include #include #if PLATFORM(DARWIN) @@ -109,6 +110,9 @@ void append(CollectorBlock* block) { if (m_used == m_capacity) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (m_capacity > maxNumBlocks) + CRASH(); m_capacity = max(MIN_ARRAY_SIZE, m_capacity * GROWTH_FACTOR); m_data = static_cast(fastRealloc(m_data, m_capacity * sizeof(CollectorBlock *))); } kdelibs-4.2.98-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1698.patch --- diff -ur kdelibs-4.2.98/khtml/css/cssparser.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-4.2.98/khtml/css/cssparser.cpp 2009-07-21 17:16:12.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 04:19:38.000000000 +0200 @@ -1513,6 +1513,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1565,7 +1573,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-4.2.98/khtml/css/css_valueimpl.cpp kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-4.2.98/khtml/css/css_valueimpl.cpp 2009-05-14 19:27:35.000000000 +0200 +++ kdelibs-4.2.98-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 04:17:28.000000000 +0200 @@ -1212,7 +1212,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; kdelibs-4.2.98-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-4.2.98-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002162) +++ khtml/html/htmltokenizer.cpp (revision 1002163) @@ -1038,7 +1038,7 @@ #ifdef TOKEN_DEBUG kDebug( 6036 ) << "unknown entity!"; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) kdelibs-4.1.96-parallel_devel.patch: cmake/modules/FindKDE4Internal.cmake | 36 ++++++++++++++-------------- doc/api/doxygen-preprocess-kcfg.sh | 4 +-- kdecore/kconfig_compiler/CMakeLists.txt | 6 ++-- kdecore/kconfig_compiler/checkkcfg.pl | 4 +-- kdeui/tests/kconfig_compiler/CMakeLists.txt | 2 - kdewidgets/CMakeLists.txt | 12 ++++----- 6 files changed, 33 insertions(+), 31 deletions(-) Index: kdelibs-4.1.96-parallel_devel.patch =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-10/kdelibs-4.1.96-parallel_devel.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kdelibs-4.1.96-parallel_devel.patch 23 Jan 2009 18:59:58 -0000 1.1 +++ kdelibs-4.1.96-parallel_devel.patch 26 Jul 2009 05:28:18 -0000 1.2 @@ -208,3 +208,12 @@ diff -up kdelibs-4.1.96/kdewidgets/CMake set(kdewidgets_PART_SRCS classpreviews.cpp +@@ -66,7 +66,7 @@ + + add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp + COMMAND "${MAKEKDEWIDGETS_EXECUTABLE}" -o ${CMAKE_CURRENT_BINARY_DIR}/kde3supportwidgets.cpp ${CMAKE_CURRENT_SOURCE_DIR}/kde3support.widgets +- MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets) ++ MAIN_DEPENDENCY kde3support.widgets DEPENDS makekdewidgets4) + + set(kde3supportwidgets_PART_SRCS + classpreviews.cpp Index: kdelibs.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs/F-10/kdelibs.spec,v retrieving revision 1.431 retrieving revision 1.432 diff -u -p -r1.431 -r1.432 --- kdelibs.spec 1 Jun 2009 11:51:50 -0000 1.431 +++ kdelibs.spec 26 Jul 2009 05:28:18 -0000 1.432 @@ -1,6 +1,6 @@ Summary: K Desktop Environment 4 - Libraries Version: 4.2.4 -Release: 2%{?dist} +Release: 6%{?dist} %if 0%{?fedora} > 8 Name: kdelibs @@ -80,11 +80,26 @@ Patch18: kdelibs-4.1.72-kstandarddirs.pa Patch20: kdelibs-4.1.70-cmake.patch Patch22: kdelibs-4.1.96-cmake.patch +# upstreamable +Patch50: kdelibs-4.2.3-fixPopupForPlasmaboard.patch + # upstream # 4.2 branch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +Patch100: kdelibs-4.2.4-cve-2009-1690.patch +# fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl +Patch101: kdelibs-4.2.4-cve-2009-0945.patch # 4.3 branch Patch200: kdelibs-4.1.96-AllowExternalPaths.patch +# fix CVE-2009-2537 - select length DoS +Patch201: kdelibs-4.2.4-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch202: kdelibs-4.2.98-cve-2009-1725.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: now aborts, so still crashes) +Patch203: kdelibs-4.2.98-cve-2009-1687.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch204: kdelibs-4.2.98-cve-2009-1698.patch BuildRequires: qt4-devel >= 4.4.0 # qt4%{_?_isa} isn't provided yet -- Rex @@ -216,11 +231,19 @@ sed -i -e "s|@@VERSION_RELEASE@@|%{versi %patch20 -p1 -b .xxcmake %patch22 -p1 -b .kdepimlibs-cmake +%patch50 -p1 -b .fixPopupForPlasmaboard + # upstream patches # 4.2 +%patch100 -p0 -b .cve-2009-1690 +%patch101 -p0 -b .cve-2009-0945 # 4.3 %patch200 -p1 -b .AllowExternalPaths +%patch201 -p1 -b .cve-2009-2537-select-length +%patch202 -p0 -b .cve-2009-1725 +%patch203 -p1 -b .cve-2009-1687 +%patch204 -p1 -b .cve-2009-1698 %build @@ -403,6 +426,23 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Kevin Kofler - 4.2.4-6 +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +- fix CVE-2009-0945 - NULL-pointer dereference in the SVGList interface impl + +* Thu Jul 23 2009 Jaroslav Reznik - 4.2.4-5 +- CVE-2009-2537 - select length DoS +- correct fixPopupForPlasmaboard.patch + +* Wed Jul 08 2009 Kevin Kofler - 4.2.4-4 +- fix CMake dependency in parallel_devel patch (#510259, CHIKAMA Masaki) + +* Mon Jun 15 2009 Rex Dieter 4.2.4-3 +- fixPopupForPlasmaboard.patch + * Mon Jun 1 2009 Luk?? Tinkl - 4.2.4-2 - respun tarball From jkeating at fedoraproject.org Sun Jul 26 05:28:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:28:25 +0000 (UTC) Subject: rpms/perl-Data-FormValidator-Constraints-DateTime/devel perl-Data-FormValidator-Constraints-DateTime.spec, 1.1, 1.2 Message-ID: <20090726052825.D335A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-FormValidator-Constraints-DateTime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19758 Modified Files: perl-Data-FormValidator-Constraints-DateTime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-FormValidator-Constraints-DateTime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-FormValidator-Constraints-DateTime/devel/perl-Data-FormValidator-Constraints-DateTime.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Data-FormValidator-Constraints-DateTime.spec 4 May 2009 23:13:00 -0000 1.1 +++ perl-Data-FormValidator-Constraints-DateTime.spec 26 Jul 2009 05:28:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Data-FormValidator-Constraints-DateTime Version: 1.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: D::FV constraints for dates and times License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 1.09-1 - Specfile autogenerated by cpanspec 1.77. - Tweak requires/buildrequires From jkeating at fedoraproject.org Sun Jul 26 05:28:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:28:41 +0000 (UTC) Subject: rpms/perl-Data-HexDump/devel perl-Data-HexDump.spec,1.5,1.6 Message-ID: <20090726052841.587AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-HexDump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19945 Modified Files: perl-Data-HexDump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-HexDump.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-HexDump/devel/perl-Data-HexDump.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Data-HexDump.spec 26 Feb 2009 14:27:55 -0000 1.5 +++ perl-Data-HexDump.spec 26 Jul 2009 05:28:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Data-HexDump Version: 0.02 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Hexadecial Dumper License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:28:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:28:56 +0000 (UTC) Subject: rpms/perl-Data-Hierarchy/devel perl-Data-Hierarchy.spec,1.6,1.7 Message-ID: <20090726052856.5D77911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Hierarchy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20118 Modified Files: perl-Data-Hierarchy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Hierarchy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Hierarchy/devel/perl-Data-Hierarchy.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Data-Hierarchy.spec 26 Feb 2009 14:28:48 -0000 1.6 +++ perl-Data-Hierarchy.spec 26 Jul 2009 05:28:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Data-Hierarchy Version: 0.34 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Handle data in a hierarchical structure License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.34-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.34-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:29:11 +0000 (UTC) Subject: rpms/perl-Data-ICal/devel perl-Data-ICal.spec,1.5,1.6 Message-ID: <20090726052911.545AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-ICal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20279 Modified Files: perl-Data-ICal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ICal/devel/perl-Data-ICal.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Data-ICal.spec 3 Mar 2009 15:22:52 -0000 1.5 +++ perl-Data-ICal.spec 26 Jul 2009 05:29:11 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Data-ICal Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generates iCalendar (RFC 2445) calendar files License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Ralf Cors?pius - 0.15-1 - Upstream update. - Reflect upstream maintainer having changed. From jkeating at fedoraproject.org Sun Jul 26 05:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:29:26 +0000 (UTC) Subject: rpms/perl-Data-ObjectDriver/devel perl-Data-ObjectDriver.spec, 1.1, 1.2 Message-ID: <20090726052926.6A1BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-ObjectDriver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20414 Modified Files: perl-Data-ObjectDriver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-ObjectDriver.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-ObjectDriver/devel/perl-Data-ObjectDriver.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Data-ObjectDriver.spec 4 Jun 2009 07:49:14 -0000 1.1 +++ perl-Data-ObjectDriver.spec 26 Jul 2009 05:29:26 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Data-ObjectDriver Version: 0.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple, transparent data interface, with caching License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Emmanuel Seyman 0.06-3 - Re-enable auto-Requires, for real this time - Add DBD::SQLite to the BuildRequires From jkeating at fedoraproject.org Sun Jul 26 05:29:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:29:42 +0000 (UTC) Subject: rpms/perl-Data-OptList/devel perl-Data-OptList.spec,1.6,1.7 Message-ID: <20090726052942.605D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-OptList/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20589 Modified Files: perl-Data-OptList.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-OptList.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-OptList/devel/perl-Data-OptList.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Data-OptList.spec 26 Feb 2009 14:30:44 -0000 1.6 +++ perl-Data-OptList.spec 26 Jul 2009 05:29:42 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Data-OptList Version: 0.104 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse and validate simple name/value option pairs License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.104-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.104-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:29:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:29:57 +0000 (UTC) Subject: rpms/perl-Data-Page/devel perl-Data-Page.spec,1.8,1.9 Message-ID: <20090726052957.8BEC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Page/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20767 Modified Files: perl-Data-Page.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Page.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Page/devel/perl-Data-Page.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Data-Page.spec 13 Mar 2009 18:58:19 -0000 1.8 +++ perl-Data-Page.spec 26 Jul 2009 05:29:57 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Data-Page Version: 2.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Help when paging through sets of results Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 2.01-1 - update to 2.01 From jkeating at fedoraproject.org Sun Jul 26 05:30:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:30:10 +0000 (UTC) Subject: rpms/perl-Data-Password/devel perl-Data-Password.spec,1.4,1.5 Message-ID: <20090726053010.EFBB211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Password/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20941 Modified Files: perl-Data-Password.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Password.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Password/devel/perl-Data-Password.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Data-Password.spec 26 Feb 2009 14:32:34 -0000 1.4 +++ perl-Data-Password.spec 26 Jul 2009 05:30:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Data-Password Version: 1.07 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl extension for assesing password quality License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.07-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:30:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:30:25 +0000 (UTC) Subject: rpms/perl-Data-Report/devel perl-Data-Report.spec,1.1,1.2 Message-ID: <20090726053025.39A6311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Report/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21086 Modified Files: perl-Data-Report.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Report.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Report/devel/perl-Data-Report.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Data-Report.spec 27 Apr 2009 09:21:58 -0000 1.1 +++ perl-Data-Report.spec 26 Jul 2009 05:30:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Data-Report Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A flexible plugin-driven reporting framework Group: Development/Libraries @@ -59,5 +59,8 @@ style sheets. %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jan 30 2009 Johan Vromans 0.10-1 - Initial Fedora RPM version From jkeating at fedoraproject.org Sun Jul 26 05:30:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:30:39 +0000 (UTC) Subject: rpms/perl-Data-Section/devel perl-Data-Section.spec,1.3,1.4 Message-ID: <20090726053039.ADDD711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Section/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21245 Modified Files: perl-Data-Section.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Section.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Section/devel/perl-Data-Section.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Data-Section.spec 22 Jul 2009 19:09:02 -0000 1.3 +++ perl-Data-Section.spec 26 Jul 2009 05:30:39 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Data-Section Version: 0.091820 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Read multiple hunks of data out of your DATA section License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.091820-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 0.091820-1 - Update to 0.091820 release From jkeating at fedoraproject.org Sun Jul 26 05:30:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:30:53 +0000 (UTC) Subject: rpms/perl-Data-Stag/devel perl-Data-Stag.spec,1.6,1.7 Message-ID: <20090726053053.A131A11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Stag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21387 Modified Files: perl-Data-Stag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Stag.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Stag/devel/perl-Data-Stag.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Data-Stag.spec 26 Feb 2009 14:34:20 -0000 1.6 +++ perl-Data-Stag.spec 26 Jul 2009 05:30:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Data-Stag Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl package for Structured Tags datastructures License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:31:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:31:20 +0000 (UTC) Subject: rpms/perl-Data-TreeDumper/devel perl-Data-TreeDumper.spec,1.3,1.4 Message-ID: <20090726053120.8FB7311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-TreeDumper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21698 Modified Files: perl-Data-TreeDumper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-TreeDumper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-TreeDumper/devel/perl-Data-TreeDumper.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Data-TreeDumper.spec 26 Feb 2009 14:36:08 -0000 1.3 +++ perl-Data-TreeDumper.spec 26 Jul 2009 05:31:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Data-TreeDumper Version: 0.35 -Release: 4%{?dist} +Release: 5%{?dist} # see TreeDumper.pm License: GPL+ or Artistic Group: Development/Libraries @@ -82,6 +82,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.35-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.35-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:31:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:31:07 +0000 (UTC) Subject: rpms/perl-Data-Structure-Util/devel perl-Data-Structure-Util.spec, 1.9, 1.10 Message-ID: <20090726053107.202CD11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Structure-Util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21563 Modified Files: perl-Data-Structure-Util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Structure-Util.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Structure-Util/devel/perl-Data-Structure-Util.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Data-Structure-Util.spec 26 Feb 2009 14:35:15 -0000 1.9 +++ perl-Data-Structure-Util.spec 26 Jul 2009 05:31:06 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Data-Structure-Util Version: 0.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Change nature of data within a structure License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:31:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:31:34 +0000 (UTC) Subject: rpms/perl-Data-TreeDumper-Renderer-GTK/devel perl-Data-TreeDumper-Renderer-GTK.spec, 1.4, 1.5 Message-ID: <20090726053134.7E5F211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-TreeDumper-Renderer-GTK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21862 Modified Files: perl-Data-TreeDumper-Renderer-GTK.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-TreeDumper-Renderer-GTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-TreeDumper-Renderer-GTK/devel/perl-Data-TreeDumper-Renderer-GTK.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Data-TreeDumper-Renderer-GTK.spec 26 Feb 2009 14:36:59 -0000 1.4 +++ perl-Data-TreeDumper-Renderer-GTK.spec 26 Jul 2009 05:31:34 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Data-TreeDumper-Renderer-GTK Version: 0.02 -Release: 5%{?dist} +Release: 6%{?dist} # see GTK.pm License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:31:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:31:49 +0000 (UTC) Subject: rpms/perl-Data-Visitor/devel perl-Data-Visitor.spec,1.9,1.10 Message-ID: <20090726053149.8929011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Data-Visitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22006 Modified Files: perl-Data-Visitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Data-Visitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Data-Visitor/devel/perl-Data-Visitor.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Data-Visitor.spec 21 May 2009 06:08:44 -0000 1.9 +++ perl-Data-Visitor.spec 26 Jul 2009 05:31:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Data-Visitor Version: 0.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Visitor style traversal of Perl data structures License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.25-1 - auto-update to 0.25 (by cpan-spec-update 0.01) - altered br on perl(Any::Moose) (0 => 0.09) From jkeating at fedoraproject.org Sun Jul 26 05:32:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:32:04 +0000 (UTC) Subject: rpms/perl-Date-Calc/devel perl-Date-Calc.spec,1.25,1.26 Message-ID: <20090726053204.C5CB111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Calc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22165 Modified Files: perl-Date-Calc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Calc.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Calc/devel/perl-Date-Calc.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- perl-Date-Calc.spec 26 Feb 2009 14:38:54 -0000 1.25 +++ perl-Date-Calc.spec 26 Jul 2009 05:32:04 -0000 1.26 @@ -1,6 +1,6 @@ Name: perl-Date-Calc Version: 5.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A module for extended and efficient date calculations in Perl Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:32:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:32:19 +0000 (UTC) Subject: rpms/perl-Date-ICal/devel perl-Date-ICal.spec,1.1,1.2 Message-ID: <20090726053219.3910011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-ICal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22317 Modified Files: perl-Date-ICal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-ICal/devel/perl-Date-ICal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Date-ICal.spec 24 Mar 2009 18:07:01 -0000 1.1 +++ perl-Date-ICal.spec 26 Jul 2009 05:32:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Date-ICal Version: 1.72 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for ICalendar date objects License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.72-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jan 08 2009 Xavier Bachelot 1.72-1 - Initial build. From jkeating at fedoraproject.org Sun Jul 26 05:32:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:32:34 +0000 (UTC) Subject: rpms/perl-Date-Leapyear/devel perl-Date-Leapyear.spec,1.2,1.3 Message-ID: <20090726053234.5DAD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Leapyear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22463 Modified Files: perl-Date-Leapyear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Leapyear.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Leapyear/devel/perl-Date-Leapyear.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Date-Leapyear.spec 2 Apr 2009 19:26:50 -0000 1.2 +++ perl-Date-Leapyear.spec 26 Jul 2009 05:32:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Date-Leapyear Version: 1.72 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Is a particular year a leap year? License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.72-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Xavier Bachelot 1.72-1 - New upstream release, under new license terms. From jkeating at fedoraproject.org Sun Jul 26 05:32:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:32:49 +0000 (UTC) Subject: rpms/perl-Date-Manip/devel perl-Date-Manip.spec,1.7,1.8 Message-ID: <20090726053249.7C91311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Manip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22594 Modified Files: perl-Date-Manip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Manip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Manip/devel/perl-Date-Manip.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Date-Manip.spec 26 Feb 2009 14:39:54 -0000 1.7 +++ perl-Date-Manip.spec 26 Jul 2009 05:32:49 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Date-Manip Version: 5.54 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Perl module containing a wide variety of date manipulation routines Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 5.54-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.54-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:33:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:33:05 +0000 (UTC) Subject: rpms/perl-Date-Pcalc/devel perl-Date-Pcalc.spec,1.5,1.6 Message-ID: <20090726053305.6924D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Pcalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22777 Modified Files: perl-Date-Pcalc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Pcalc.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Pcalc/devel/perl-Date-Pcalc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Date-Pcalc.spec 26 Feb 2009 14:40:59 -0000 1.5 +++ perl-Date-Pcalc.spec 26 Jul 2009 05:33:05 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Date-Pcalc Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Gregorian calendar date calculations License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:33:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:33:20 +0000 (UTC) Subject: rpms/perl-Date-Simple/devel perl-Date-Simple.spec,1.12,1.13 Message-ID: <20090726053320.7439611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22944 Modified Files: perl-Date-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Simple/devel/perl-Date-Simple.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Date-Simple.spec 7 Mar 2009 09:05:50 -0000 1.12 +++ perl-Date-Simple.spec 26 Jul 2009 05:33:20 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Simple date object for perl Name: perl-Date-Simple Version: 3.03 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Date-Simple/ @@ -59,6 +59,9 @@ BuildRequires: perl(ExtUtils::MakeMaker) %{_mandir}/man3/Date::Simple*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Paul Howarth - 3.03-3 - Filter out unwanted provides for perl shared objects From jkeating at fedoraproject.org Sun Jul 26 05:33:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:33:35 +0000 (UTC) Subject: rpms/perl-Date-Tiny/devel perl-Date-Tiny.spec,1.2,1.3 Message-ID: <20090726053335.B9A8D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Date-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23132 Modified Files: perl-Date-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Date-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Date-Tiny/devel/perl-Date-Tiny.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Date-Tiny.spec 26 Feb 2009 14:42:54 -0000 1.2 +++ perl-Date-Tiny.spec 26 Jul 2009 05:33:35 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Date-Tiny Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Date object with as little code as possible License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:33:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:33:52 +0000 (UTC) Subject: rpms/perl-DateTime/devel perl-DateTime.spec,1.32,1.33 Message-ID: <20090726053352.7624811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23319 Modified Files: perl-DateTime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime/devel/perl-DateTime.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-DateTime.spec 26 Feb 2009 14:43:47 -0000 1.32 +++ perl-DateTime.spec 26 Jul 2009 05:33:52 -0000 1.33 @@ -3,7 +3,7 @@ Name: perl-DateTime Version: 0.4501 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Date and time objects License: GPL+ or Artistic @@ -148,6 +148,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{perl_vendorarch}/DateTime*.pm %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.4501-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.4501-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:34:08 +0000 (UTC) Subject: rpms/perl-DateTime-Calendar-Mayan/devel perl-DateTime-Calendar-Mayan.spec, 1.1, 1.2 Message-ID: <20090726053408.2CC2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Calendar-Mayan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23482 Modified Files: perl-DateTime-Calendar-Mayan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Calendar-Mayan.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Calendar-Mayan/devel/perl-DateTime-Calendar-Mayan.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-DateTime-Calendar-Mayan.spec 23 May 2009 21:16:06 -0000 1.1 +++ perl-DateTime-Calendar-Mayan.spec 26 Jul 2009 05:34:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-DateTime-Calendar-Mayan Version: 0.0601 -Release: 1%{?dist} +Release: 2%{?dist} # lib/DateTime/Calendar/Mayan.pod -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0601-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Chris Weyl 0.0601-1 - submission From kkofler at fedoraproject.org Sun Jul 26 05:34:08 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 05:34:08 +0000 (UTC) Subject: rpms/kdelibs3/F-11 kdelibs-3.5.10-cve-2009-1698.patch, NONE, 1.1 kdelibs-3.5.10-cve-2009-1725.patch, NONE, 1.1 kdelibs-3.5.10-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1687.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1690.patch, NONE, 1.1 kdelibs3.spec, 1.61, 1.62 Message-ID: <20090726053408.7152411C00CE@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs3/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23464/F-11 Modified Files: kdelibs3.spec Added Files: kdelibs-3.5.10-cve-2009-1698.patch kdelibs-3.5.10-cve-2009-1725.patch kdelibs-3.5.10-cve-2009-2537-select-length.patch kdelibs-3.5.4-CVE-2009-1687.patch kdelibs-3.5.4-CVE-2009-1690.patch Log Message: Sync from devel: * Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 - fix CVE-2009-2537 - select length DoS - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) - fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling * Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat Jul 18 2009 Rex Dieter - 3.5.10-12 - FTBFS kdelibs3-3.5.10-11.fc11 (#511571) - -devel: Requires: %%{name}%%_isa ... kdelibs-3.5.10-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1698.patch --- diff -ur kdelibs-3.5.10/khtml/css/cssparser.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-3.5.10/khtml/css/cssparser.cpp 2007-01-15 12:34:04.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 05:46:39.000000000 +0200 @@ -1344,6 +1344,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1396,7 +1404,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-3.5.10/khtml/css/css_valueimpl.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-3.5.10/khtml/css/css_valueimpl.cpp 2006-07-22 10:16:49.000000000 +0200 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 05:45:36.000000000 +0200 @@ -736,7 +736,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; kdelibs-3.5.10-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002163) +++ khtml/html/htmltokenizer.cpp (revision 1002164) @@ -736,7 +736,7 @@ #ifdef TOKEN_DEBUG kdDebug( 6036 ) << "unknown entity!" << endl; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) kdelibs-3.5.10-cve-2009-2537-select-length.patch: kjs_html.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-2537-select-length.patch --- diff -ur kdelibs-3.5.10/khtml/ecma/kjs_html.cpp kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp --- kdelibs-3.5.10/khtml/ecma/kjs_html.cpp 2008-02-13 10:41:09.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp 2009-07-26 04:54:52.000000000 +0200 @@ -62,6 +62,9 @@ #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + namespace KJS { KJS_DEFINE_PROTOTYPE_WITH_PROTOTYPE(HTMLDocumentProto, DOMDocumentProto) @@ -2550,8 +2553,14 @@ case SelectValue: { select.setValue(str); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable Object coll = Object::dynamicCast( getSelectHTMLCollection(exec, select.options(), select) ); - if ( coll.isValid() ) - coll.put(exec,"length",value); + + if ( coll.isValid() ) { + if (value.toInteger(exec) >= MAX_SELECT_LENGTH) { + Object err = Error::create(exec, RangeError); + exec->setException(err); + } else + coll.put(exec, "length", value); + } return; } // read-only: form kdelibs-3.5.4-CVE-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-3.5.4-CVE-2009-1687.patch --- --- kdelibs-3.5.4/kjs/collector.cpp.CVE-2009-1687 2009-06-17 15:07:33.000000000 +0200 +++ kdelibs-3.5.4/kjs/collector.cpp 2009-06-20 00:42:48.000000000 +0200 @@ -23,6 +23,7 @@ #include "value.h" #include "internal.h" +#include #ifndef MAX #define MAX(a,b) ((a) > (b) ? (a) : (b)) @@ -119,6 +120,9 @@ // didn't find one, need to allocate a new block if (heap.usedBlocks == heap.numBlocks) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (heap.numBlocks > maxNumBlocks) + return 0L; heap.numBlocks = MAX(MIN_ARRAY_SIZE, heap.numBlocks * GROWTH_FACTOR); heap.blocks = (CollectorBlock **)realloc(heap.blocks, heap.numBlocks * sizeof(CollectorBlock *)); } kdelibs-3.5.4-CVE-2009-1690.patch: AlwaysInline.h | 49 ++++++++++++ Platform.h | 218 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RefPtr.h | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++ htmlparser.cpp | 10 +- htmlparser.h | 4 - 5 files changed, 475 insertions(+), 8 deletions(-) --- NEW FILE kdelibs-3.5.4-CVE-2009-1690.patch --- --- kdelibs-3.5.4/khtml/html/RefPtr.h.CVE-2009-1690 2009-06-17 14:19:00.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/RefPtr.h 2009-06-17 14:19:00.000000000 +0200 @@ -0,0 +1,202 @@ +// -*- mode: c++; c-basic-offset: 4 -*- +/* + * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef WTF_RefPtr_h +#define WTF_RefPtr_h + +#include +#include "AlwaysInline.h" + +namespace WTF { + + enum PlacementNewAdoptType { PlacementNewAdopt }; + + template class PassRefPtr; + + enum HashTableDeletedValueType { HashTableDeletedValue }; + + template class RefPtr { + public: + RefPtr() : m_ptr(0) { } + RefPtr(T* ptr) : m_ptr(ptr) { if (ptr) ptr->ref(); } + RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->ref(); } + // see comment in PassRefPtr.h for why this takes const reference + template RefPtr(const PassRefPtr&); + + // Special constructor for cases where we overwrite an object in place. + RefPtr(PlacementNewAdoptType) { } + + // Hash table deleted values, which are only constructed and never copied or destroyed. + RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } + bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } + + ~RefPtr() { if (T* ptr = m_ptr) ptr->deref(); } + + template RefPtr(const RefPtr& o) : m_ptr(o.get()) { if (T* ptr = m_ptr) ptr->ref(); } + + T* get() const { return m_ptr; } + + void clear() { if (T* ptr = m_ptr) ptr->deref(); m_ptr = 0; } + PassRefPtr release() { PassRefPtr tmp = adoptRef(m_ptr); m_ptr = 0; return tmp; } + + T& operator*() const { return *m_ptr; } + ALWAYS_INLINE T* operator->() const { return m_ptr; } + + bool operator!() const { return !m_ptr; } + + // This conversion operator allows implicit conversion to bool but not to other integer types. + typedef T* RefPtr::*UnspecifiedBoolType; + operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } + + RefPtr& operator=(const RefPtr&); + RefPtr& operator=(T*); + RefPtr& operator=(const PassRefPtr&); + template RefPtr& operator=(const RefPtr&); + template RefPtr& operator=(const PassRefPtr&); + + void swap(RefPtr&); + + private: + static T* hashTableDeletedValue() { return reinterpret_cast(-1); } + + T* m_ptr; + }; + + template template inline RefPtr::RefPtr(const PassRefPtr& o) + : m_ptr(o.releaseRef()) + { + } + + template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(T* optr) + { + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template inline void RefPtr::swap(RefPtr& o) + { + std::swap(m_ptr, o.m_ptr); + } + + template inline void swap(RefPtr& a, RefPtr& b) + { + a.swap(b); + } + + template inline bool operator==(const RefPtr& a, const RefPtr& b) + { + return a.get() == b.get(); + } + + template inline bool operator==(const RefPtr& a, U* b) + { + return a.get() == b; + } + + template inline bool operator==(T* a, const RefPtr& b) + { + return a == b.get(); + } + + template inline bool operator!=(const RefPtr& a, const RefPtr& b) + { + return a.get() != b.get(); + } + + template inline bool operator!=(const RefPtr& a, U* b) + { + return a.get() != b; + } + + template inline bool operator!=(T* a, const RefPtr& b) + { + return a != b.get(); + } + + template inline RefPtr static_pointer_cast(const RefPtr& p) + { + return RefPtr(static_cast(p.get())); + } + + template inline RefPtr const_pointer_cast(const RefPtr& p) + { + return RefPtr(const_cast(p.get())); + } + + template inline T* getPtr(const RefPtr& p) + { + return p.get(); + } + +} // namespace WTF + +using WTF::RefPtr; +using WTF::static_pointer_cast; +using WTF::const_pointer_cast; + +#endif // WTF_RefPtr_h --- kdelibs-3.5.4/khtml/html/htmlparser.cpp.CVE-2009-1690 2006-07-22 10:16:43.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.cpp 2009-06-17 11:51:15.000000000 +0200 @@ -199,7 +199,6 @@ form = 0; map = 0; - head = 0; end = false; isindex = 0; @@ -616,8 +615,7 @@ case ID_BASE: if(!head) { head = new HTMLHeadElementImpl(document); - e = head; - insertNode(e); + insertNode(head.get()); handled = true; } break; @@ -839,7 +837,7 @@ case ID_HEAD: if(!head && current->id() == ID_HTML) { head = new HTMLHeadElementImpl(document); - n = head; + n = head.get(); } break; case ID_BODY: @@ -1679,12 +1677,12 @@ head = new HTMLHeadElementImpl(document); HTMLElementImpl *body = doc()->body(); int exceptioncode = 0; - doc()->firstChild()->insertBefore(head, body, exceptioncode); + doc()->firstChild()->insertBefore(head.get(), body, exceptioncode); if ( exceptioncode ) { #ifdef PARSER_DEBUG kdDebug( 6035 ) << "creation of head failed!!!!" << endl; #endif - delete head; + delete head.get(); head = 0; } } --- kdelibs-3.5.4/khtml/html/Platform.h.CVE-2009-1690 2009-06-17 14:19:07.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/Platform.h 2009-06-17 14:19:07.000000000 +0200 @@ -0,0 +1,218 @@ +/* -*- mode: c++; c-basic-offset: 4 -*- */ +/* + * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef WTF_Platform_h +#define WTF_Platform_h + +/* Force KDE build here in our tree... */ +#ifndef BUILDING_KDE__ +#define BUILDING_KDE__ 1 +#endif + +/* PLATFORM handles OS, operating environment, graphics API, and CPU */ +#define PLATFORM(WTF_FEATURE) (defined( WTF_PLATFORM_##WTF_FEATURE ) && WTF_PLATFORM_##WTF_FEATURE) +#define COMPILER(WTF_FEATURE) (defined( WTF_COMPILER_##WTF_FEATURE ) && WTF_COMPILER_##WTF_FEATURE) +#define HAVE(WTF_FEATURE) (defined( HAVE_##WTF_FEATURE ) && HAVE_##WTF_FEATURE) +#define USE(WTF_FEATURE) (defined( WTF_USE_##WTF_FEATURE ) && WTF_USE_##WTF_FEATURE) +#define ENABLE(WTF_FEATURE) (defined( ENABLE_##WTF_FEATURE ) && ENABLE_##WTF_FEATURE) + +/* Operating systems - low-level dependencies */ + +/* PLATFORM(DARWIN) */ +/* Operating system level dependencies for Mac OS X / Darwin that should */ +/* be used regardless of operating environment */ +#ifdef __APPLE__ +#define WTF_PLATFORM_DARWIN 1 +#endif + +/* PLATFORM(WIN_OS) */ +/* Operating system level dependencies for Windows that should be used */ +/* regardless of operating environment */ +#if defined(WIN32) || defined(_WIN32) +#define WTF_PLATFORM_WIN_OS 1 +#endif + +/* PLATFORM(UNIX) */ +/* Operating system level dependencies for Unix-like systems that */ +/* should be used regardless of operating environment */ +/* (includes PLATFORM(DARWIN)) */ +#if defined(__APPLE__) \ + || defined(unix) \ + || defined(__unix) \ + || defined(__unix__) \ + || defined (__NetBSD__) \ + || defined(_AIX) +#define WTF_PLATFORM_UNIX 1 +#endif + +/* PLATFORM(SOLARIS_OS) */ +/* Operating system level dependencies for Sun (Open)Solaris 10. */ +/* Studio 12 on Solaris defines __SunOS; gcc defines __sun__; */ +/* Both compilers define __sun and sun. */ +#if defined(__sun) || defined(sun) +#define WTF_PLATFORM_SOLARIS_OS 1 +#endif + +/* Operating environments */ + +/* I made the BUILDING_KDE__ macro up for the KDE build system to define */ + +/* PLATFORM(KDE) */ +/* PLATFORM(MAC) */ +/* PLATFORM(WIN) */ +#if BUILDING_KDE__ +#define WTF_PLATFORM_KDE 1 +#elif PLATFORM(DARWIN) +#define WTF_PLATFORM_MAC 1 +#elif PLATFORM(WIN_OS) +#define WTF_PLATFORM_WIN 1 +#endif +#if defined(BUILDING_GDK__) +#define WTF_PLATFORM_GDK 1 +#endif + + +/* CPU */ + +/* PLATFORM(PPC) */ +#if defined(__ppc__) \ + || defined(__PPC__) \ + || defined(__powerpc__) \ + || defined(__powerpc) \ + || defined(__POWERPC__) \ + || defined(_M_PPC) \ + || defined(__PPC) +#define WTF_PLATFORM_PPC 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +/* PLATFORM(PPC64) */ +#if defined(__ppc64__) \ + || defined(__PPC64__) +#define WTF_PLATFORM_PPC64 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +#if defined(arm) +#define WTF_PLATFORM_ARM 1 +#if defined(__ARMEB__) +#define WTF_PLATFORM_BIG_ENDIAN 1 +#elif !defined(__ARM_EABI__) && !defined(__ARMEB__) +#define WTF_PLATFORM_MIDDLE_ENDIAN 1 +#endif +#if !defined(__ARM_EABI__) +#define WTF_PLATFORM_FORCE_PACK 1 +#endif +#endif + +/* PLATFORM(X86) */ +#if defined(__i386__) \ + || defined(i386) \ + || defined(_M_IX86) \ + || defined(_X86_) \ + || defined(__THW_INTEL) +#define WTF_PLATFORM_X86 1 +#endif + +/* PLATFORM(X86_64) */ +#if defined(__x86_64__) \ + || defined(__ia64__) +#define WTF_PLATFORM_X86_64 1 +#endif + +/* PLATFORM(SPARC) */ +#if defined(sparc) +#define WTF_PLATFORM_SPARC 1 +#endif + +/* Compiler */ + +/* COMPILER(CWP) */ +#if defined(__MWERKS__) +#define WTF_COMPILER_CWP 1 +#endif + +/* COMPILER(MSVC) */ +#if defined(_MSC_VER) +#define WTF_COMPILER_MSVC 1 +#endif + +/* COMPILER(GCC) */ +#if defined(__GNUC__) +#define WTF_COMPILER_GCC 1 +#endif + +/* COMPILER(SUNPRO) */ +#if defined(__SUNPRO_CC) +#define WTF_COMPILER_SUNPRO 1 +#endif + +/* COMPILER(BORLAND) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__BORLANDC__) +#define WTF_COMPILER_BORLAND 1 +#endif + +/* COMPILER(CYGWIN) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__CYGWIN__) +#define WTF_COMPILER_CYGWIN 1 +#endif + +/* multiple threads only supported on Mac for now */ +#if PLATFORM(MAC) +#ifndef WTF_USE_MULTIPLE_THREADS +#define WTF_USE_MULTIPLE_THREADS 1 +#endif +#ifndef WTF_USE_BINDINGS +#define WTF_USE_BINDINGS 1 +#endif +#endif + +/* for Unicode, KDE uses Qt, everything else uses ICU */ +#if PLATFORM(KDE) || PLATFORM(QT) +#define WTF_USE_QT4_UNICODE 1 +#elif PLATFORM(SYMBIAN) +#define WTF_USE_SYMBIAN_UNICODE 1 +#else +#define WTF_USE_ICU_UNICODE 1 +#endif + +#if PLATFORM(MAC) +#define WTF_PLATFORM_CF 1 +#endif + +#if PLATFORM(WIN) +#define WTF_USE_WININET 1 +#endif + +#if PLATFORM(GDK) +#define WTF_USE_CURL 1 +#endif + +/* ENABLE macro defaults */ + +#endif /* WTF_Platform_h */ --- kdelibs-3.5.4/khtml/html/AlwaysInline.h.CVE-2009-1690 2009-06-17 14:18:52.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/AlwaysInline.h 2009-06-17 13:56:36.000000000 +0200 @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#include "html/Platform.h" + + +#ifndef ALWAYS_INLINE +#if COMPILER(GCC) && defined(NDEBUG) && __GNUC__ > 3 +#define ALWAYS_INLINE inline __attribute__ ((__always_inline__)) +#elif COMPILER(MSVC) && defined(NDEBUG) +#define ALWAYS_INLINE __forceinline +#else +#define ALWAYS_INLINE inline +#endif +#endif + +#ifndef ALWAYS_INLINE_INTO +#if COMPILER(GCC) && defined(NDEBUG) && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || __GNUC__ > 4) +#define ALWAYS_INLINE_INTO __attribute__ ((__flatten__)) +#else +#define ALWAYS_INLINE_INTO +#endif +#endif + + +#ifndef NEVER_INLINE +#if COMPILER(GCC) && __GNUC__ > 3 +#define NEVER_INLINE __attribute__ ((__noinline__)) +#else +#define NEVER_INLINE +#endif +#endif --- kdelibs-3.5.4/khtml/html/htmlparser.h.CVE-2009-1690 2005-10-10 17:06:04.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.h 2009-06-17 14:42:27.000000000 +0200 @@ -38,10 +38,10 @@ #include #endif - #include "dom/dom_string.h" #include "xml/dom_nodeimpl.h" #include "html/html_documentimpl.h" +#include "html/RefPtr.h" class KHTMLView; class HTMLStackElem; @@ -148,7 +148,7 @@ /* * the head element. Needed for crappy html which defines after */ - DOM::HTMLHeadElementImpl *head; + RefPtr head; /* * a possible element in the head. Compatibility hack for Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/F-11/kdelibs3.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- kdelibs3.spec 19 Apr 2009 21:37:03 -0000 1.61 +++ kdelibs3.spec 26 Jul 2009 05:34:08 -0000 1.62 @@ -36,7 +36,7 @@ Summary: K Desktop Environment 3 - Libraries Version: 3.5.10 -Release: 11%{?dist} +Release: 13%{?dist} %if 0%{?fedora} > 8 Name: kdelibs3 @@ -97,7 +97,17 @@ Patch101: kde-3.5-libtool-shlibext.patch Patch103: kdelibs-3.5.0-101956.patch Patch104: kdelibs-3.5.10-gcc44.patch -## upstream patches +## security fixes +# fix CVE-2009-2537 - select length DoS +Patch200: kdelibs-3.5.10-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch201: kdelibs-3.5.10-cve-2009-1725.patch +# fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +Patch202: kdelibs-3.5.4-CVE-2009-1687.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +Patch203: kdelibs-3.5.4-CVE-2009-1690.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch204: kdelibs-3.5.10-cve-2009-1698.patch #{?arts:Requires: arts >= %{arts_ev}} #Requires: %{qt3} >= %{qt3_ev} @@ -208,7 +218,7 @@ Provides: kdelibs3-devel = %{version}-% Obsoletes: kdelibs-devel < 6:%{version}-%{release} Provides: kdelibs-devel = 6:%{version}-%{release} %endif -Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} Requires: %{qt3}-devel Requires: openssl-devel %{?arts:Requires: arts-devel} @@ -273,12 +283,19 @@ format for easy browsing %patch101 -p1 -b .libtool-shlibext %patch104 -p1 -b .gcc44 -# upstream patches +# security fixes +%patch200 -p1 -b .cve-2009-2537 +%patch201 -p0 -b .cve-2009-1725 +%patch202 -p1 -b .cve-2009-1687 +%patch203 -p1 -b .cve-2009-1690 +%patch204 -p1 -b .cve-2009-1698 sed -i -e "s,^#define KDE_VERSION_STRING .*,#define KDE_VERSION_STRING \"%{version}-%{release} %{distname}\"," kdecore/kdeversion.h %if %{make_cvs} - make -f admin/Makefile.common cvs +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh + make -f admin/Makefile.common cvs %endif @@ -623,6 +640,20 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 +- fix CVE-2009-2537 - select length DoS +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling + +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat Jul 18 2009 Rex Dieter - 3.5.10-12 +- FTBFS kdelibs3-3.5.10-11.fc11 (#511571) +- -devel: Requires: %%{name}%%_isa ... + * Sun Apr 19 2009 Rex Dieter - 3.5.10-11 - update openssl patch (for 0.9.8k) From jkeating at fedoraproject.org Sun Jul 26 05:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:34:22 +0000 (UTC) Subject: rpms/perl-DateTime-Event-ICal/devel perl-DateTime-Event-ICal.spec, 1.6, 1.7 Message-ID: <20090726053422.5E0D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Event-ICal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23654 Modified Files: perl-DateTime-Event-ICal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Event-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Event-ICal/devel/perl-DateTime-Event-ICal.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Event-ICal.spec 26 Feb 2009 14:44:42 -0000 1.6 +++ perl-DateTime-Event-ICal.spec 26 Jul 2009 05:34:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DateTime-Event-ICal Version: 0.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl DateTime extension for computing rfc2445 recurrences License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:34:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:34:39 +0000 (UTC) Subject: rpms/perl-DateTime-Event-Recurrence/devel perl-DateTime-Event-Recurrence.spec, 1.6, 1.7 Message-ID: <20090726053439.A82B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Event-Recurrence/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23896 Modified Files: perl-DateTime-Event-Recurrence.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Event-Recurrence.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Event-Recurrence/devel/perl-DateTime-Event-Recurrence.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Event-Recurrence.spec 26 Feb 2009 14:45:40 -0000 1.6 +++ perl-DateTime-Event-Recurrence.spec 26 Jul 2009 05:34:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DateTime-Event-Recurrence Version: 0.16 -Release: 7%{?dist} +Release: 8%{?dist} Summary: DateTime::Set extension for create basic recurrence sets License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:34:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:34:54 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Builder/devel perl-DateTime-Format-Builder.spec, 1.6, 1.7 Message-ID: <20090726053454.5F28111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Builder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24028 Modified Files: perl-DateTime-Format-Builder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Builder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Builder/devel/perl-DateTime-Format-Builder.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Format-Builder.spec 26 Feb 2009 14:46:37 -0000 1.6 +++ perl-DateTime-Format-Builder.spec 26 Jul 2009 05:34:54 -0000 1.7 @@ -12,7 +12,7 @@ Name: perl-DateTime-Format-Builder Version: 0.7901 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Create DateTime parser classes and objects Group: Development/Libraries @@ -114,6 +114,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7901-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7901-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:35:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:35:17 +0000 (UTC) Subject: rpms/perl-DateTime-Format-DB2/devel perl-DateTime-Format-DB2.spec, 1.3, 1.4 Message-ID: <20090726053517.5AEC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-DB2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24234 Modified Files: perl-DateTime-Format-DB2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-DB2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-DB2/devel/perl-DateTime-Format-DB2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DateTime-Format-DB2.spec 26 Feb 2009 14:47:32 -0000 1.3 +++ perl-DateTime-Format-DB2.spec 26 Jul 2009 05:35:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-DB2 Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Parse and format DB2 dates and times License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:35:33 +0000 (UTC) Subject: rpms/perl-DateTime-Format-DBI/devel perl-DateTime-Format-DBI.spec, 1.5, 1.6 Message-ID: <20090726053533.5D98A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24383 Modified Files: perl-DateTime-Format-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-DBI/devel/perl-DateTime-Format-DBI.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-DateTime-Format-DBI.spec 26 Feb 2009 14:48:27 -0000 1.5 +++ perl-DateTime-Format-DBI.spec 26 Jul 2009 05:35:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-DBI Version: 0.032 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Find a parser class for a database connection License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.032-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.032-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:35:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:35:48 +0000 (UTC) Subject: rpms/perl-DateTime-Format-DateManip/devel perl-DateTime-Format-DateManip.spec, 1.3, 1.4 Message-ID: <20090726053548.30FE911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-DateManip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24543 Modified Files: perl-DateTime-Format-DateManip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-DateManip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-DateManip/devel/perl-DateTime-Format-DateManip.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DateTime-Format-DateManip.spec 26 Feb 2009 14:49:25 -0000 1.3 +++ perl-DateTime-Format-DateManip.spec 26 Jul 2009 05:35:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-DateManip Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convert Date::Manip to DateTime and vice versa License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:36:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:36:03 +0000 (UTC) Subject: rpms/perl-DateTime-Format-DateParse/devel perl-DateTime-Format-DateParse.spec, 1.2, 1.3 Message-ID: <20090726053603.B15DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-DateParse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24715 Modified Files: perl-DateTime-Format-DateParse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-DateParse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-DateParse/devel/perl-DateTime-Format-DateParse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DateTime-Format-DateParse.spec 26 Feb 2009 14:50:23 -0000 1.2 +++ perl-DateTime-Format-DateParse.spec 26 Jul 2009 05:36:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-DateParse Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse Date::Parse compatible formats License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:36:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:36:19 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Flexible/devel perl-DateTime-Format-Flexible.spec, 1.4, 1.5 Message-ID: <20090726053619.720A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Flexible/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24880 Modified Files: perl-DateTime-Format-Flexible.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Flexible.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Flexible/devel/perl-DateTime-Format-Flexible.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-DateTime-Format-Flexible.spec 8 Jun 2009 05:54:58 -0000 1.4 +++ perl-DateTime-Format-Flexible.spec 26 Jul 2009 05:36:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Flexible Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} # see LICENSE License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.09-1 - auto-update to 0.09 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 05:36:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:36:49 +0000 (UTC) Subject: rpms/perl-DateTime-Format-IBeat/devel perl-DateTime-Format-IBeat.spec, 1.6, 1.7 Message-ID: <20090726053649.68E0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-IBeat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25217 Modified Files: perl-DateTime-Format-IBeat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-IBeat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-IBeat/devel/perl-DateTime-Format-IBeat.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Format-IBeat.spec 26 Feb 2009 14:53:59 -0000 1.6 +++ perl-DateTime-Format-IBeat.spec 26 Jul 2009 05:36:49 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-IBeat Version: 0.161 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Format times in .beat notation Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.161-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.161-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:36:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:36:35 +0000 (UTC) Subject: rpms/perl-DateTime-Format-HTTP/devel perl-DateTime-Format-HTTP.spec, 1.8, 1.9 Message-ID: <20090726053635.262BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25037 Modified Files: perl-DateTime-Format-HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-HTTP/devel/perl-DateTime-Format-HTTP.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-DateTime-Format-HTTP.spec 17 May 2009 05:57:56 -0000 1.8 +++ perl-DateTime-Format-HTTP.spec 26 Jul 2009 05:36:34 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-HTTP Version: 0.38 -Release: 2%{?dist} +Release: 3%{?dist} Summary: HTTP protocol date conversion routines Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 0.38-2 - rearrange the files in doc as the tarball has changed contents From jkeating at fedoraproject.org Sun Jul 26 05:37:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:37:04 +0000 (UTC) Subject: rpms/perl-DateTime-Format-ICal/devel perl-DateTime-Format-ICal.spec, 1.7, 1.8 Message-ID: <20090726053704.6E3A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-ICal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25420 Modified Files: perl-DateTime-Format-ICal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-ICal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-ICal/devel/perl-DateTime-Format-ICal.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-DateTime-Format-ICal.spec 26 Feb 2009 14:54:53 -0000 1.7 +++ perl-DateTime-Format-ICal.spec 26 Jul 2009 05:37:04 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-ICal Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse and format iCal datetime and duration strings License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:37:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:37:19 +0000 (UTC) Subject: rpms/perl-DateTime-Format-ISO8601/devel perl-DateTime-Format-ISO8601.spec, 1.1, 1.2 Message-ID: <20090726053719.7650C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-ISO8601/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25618 Modified Files: perl-DateTime-Format-ISO8601.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-ISO8601.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-ISO8601/devel/perl-DateTime-Format-ISO8601.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-DateTime-Format-ISO8601.spec 1 Mar 2009 08:18:38 -0000 1.1 +++ perl-DateTime-Format-ISO8601.spec 26 Jul 2009 05:37:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-ISO8601 Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} # LICENSE, lib/DateTime/Format/ISO8601.pod -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 05 2009 Chris Weyl 0.06-1 - update for submission From kkofler at fedoraproject.org Sun Jul 26 05:37:15 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 05:37:15 +0000 (UTC) Subject: rpms/kdelibs3/F-10 kdelibs-3.5.10-cve-2009-1698.patch, NONE, 1.1 kdelibs-3.5.10-cve-2009-1725.patch, NONE, 1.1 kdelibs-3.5.10-cve-2009-2537-select-length.patch, NONE, 1.1 kdelibs-3.5.10-gcc44.patch, NONE, 1.1 kdelibs-3.5.10-openssl.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1687.patch, NONE, 1.1 kdelibs-3.5.4-CVE-2009-1690.patch, NONE, 1.1 kde.sh, 1.2, 1.3 kdelibs3.spec, 1.43, 1.44 kdelibs-3.5.7-openssl.patch, 1.2, NONE Message-ID: <20090726053715.9FDB711C00CE@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs3/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25551/F-10 Modified Files: kde.sh kdelibs3.spec Added Files: kdelibs-3.5.10-cve-2009-1698.patch kdelibs-3.5.10-cve-2009-1725.patch kdelibs-3.5.10-cve-2009-2537-select-length.patch kdelibs-3.5.10-gcc44.patch kdelibs-3.5.10-openssl.patch kdelibs-3.5.4-CVE-2009-1687.patch kdelibs-3.5.4-CVE-2009-1690.patch Removed Files: kdelibs-3.5.7-openssl.patch Log Message: Sync from devel: * Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 - fix CVE-2009-2537 - select length DoS - fix CVE-2009-1725 - crash, possible ACE in numeric character references - fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) - fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) - fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling * Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat Jul 18 2009 Rex Dieter - 3.5.10-12 - FTBFS kdelibs3-3.5.10-11.fc11 (#511571) - -devel: Requires: %%{name}%%_isa ... * Sun Apr 19 2009 Rex Dieter - 3.5.10-11 - update openssl patch (for 0.9.8k) * Thu Apr 16 2009 Rex Dieter - 3.5.10-10 - move designer plugins to runtime (#487622) - make -apidocs noarch * Mon Mar 02 2009 Than Ngo - 3.5.10-9 - enable -apidocs * Fri Feb 27 2009 Rex Dieter - 3.5.10-8 - disable -apidocs (f11+, #487719) - cleanup unused kdeui_symlink hack baggage * Wed Feb 25 2009 Than Ngo - 3.5.10-7 - fix files conflicts with 4.2.x - fix build issue with gcc-4.4 * Wed Feb 25 2009 Fedora Release Engineering - 3.5.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sat Jan 31 2009 Rex Dieter - 6:3.5.10-5 - unowned dirs (#483318) * Sat Jan 10 2009 Ville Skytt? - 6:3.5.10-4 - Slight speedup to profile.d/kde.sh (#465370). kdelibs-3.5.10-cve-2009-1698.patch: css_valueimpl.cpp | 4 +++- cssparser.cpp | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1698.patch --- diff -ur kdelibs-3.5.10/khtml/css/cssparser.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp --- kdelibs-3.5.10/khtml/css/cssparser.cpp 2007-01-15 12:34:04.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/cssparser.cpp 2009-07-26 05:46:39.000000000 +0200 @@ -1344,6 +1344,14 @@ if ( args->size() != 1) return false; Value *a = args->current(); + if (a->unit != CSSPrimitiveValue::CSS_IDENT) { + isValid=false; + break; + } + if (qString(a->string)[0] == '-') { + isValid=false; + break; + } parsedValue = new CSSPrimitiveValueImpl(domString(a->string), CSSPrimitiveValue::CSS_ATTR); } else @@ -1396,7 +1404,8 @@ CounterImpl *counter = new CounterImpl; Value *i = args->current(); -// if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (i->unit != CSSPrimitiveValue::CSS_IDENT) goto invalid; + if (qString(i->string)[0] == '-') goto invalid; counter->m_identifier = domString(i->string); if (counters) { i = args->next(); diff -ur kdelibs-3.5.10/khtml/css/css_valueimpl.cpp kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp --- kdelibs-3.5.10/khtml/css/css_valueimpl.cpp 2006-07-22 10:16:49.000000000 +0200 +++ kdelibs-3.5.10-cve-2009-1698/khtml/css/css_valueimpl.cpp 2009-07-26 05:45:36.000000000 +0200 @@ -736,7 +736,9 @@ text = getValueName(m_value.ident); break; case CSSPrimitiveValue::CSS_ATTR: - // ### + text = "attr("; + text += DOMString( m_value.string ); + text += ")"; break; case CSSPrimitiveValue::CSS_COUNTER: text = "counter("; kdelibs-3.5.10-cve-2009-1725.patch: htmltokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kdelibs-3.5.10-cve-2009-1725.patch --- Index: khtml/html/htmltokenizer.cpp =================================================================== --- khtml/html/htmltokenizer.cpp (revision 1002163) +++ khtml/html/htmltokenizer.cpp (revision 1002164) @@ -736,7 +736,7 @@ #ifdef TOKEN_DEBUG kdDebug( 6036 ) << "unknown entity!" << endl; #endif - checkBuffer(10); + checkBuffer(11); // ignore the sequence, add it to the buffer as plaintext *dest++ = '&'; for(unsigned int i = 0; i < cBufferPos; i++) kdelibs-3.5.10-cve-2009-2537-select-length.patch: kjs_html.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-cve-2009-2537-select-length.patch --- diff -ur kdelibs-3.5.10/khtml/ecma/kjs_html.cpp kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp --- kdelibs-3.5.10/khtml/ecma/kjs_html.cpp 2008-02-13 10:41:09.000000000 +0100 +++ kdelibs-3.5.10-cve-2009-2537-select-length/khtml/ecma/kjs_html.cpp 2009-07-26 04:54:52.000000000 +0200 @@ -62,6 +62,9 @@ #include +// CVE-2009-2537 (vendors agreed on max 10000 elements) +#define MAX_SELECT_LENGTH 10000 + namespace KJS { KJS_DEFINE_PROTOTYPE_WITH_PROTOTYPE(HTMLDocumentProto, DOMDocumentProto) @@ -2550,8 +2553,14 @@ case SelectValue: { select.setValue(str); return; } case SelectLength: { // read-only according to the NS spec, but webpages need it writeable Object coll = Object::dynamicCast( getSelectHTMLCollection(exec, select.options(), select) ); - if ( coll.isValid() ) - coll.put(exec,"length",value); + + if ( coll.isValid() ) { + if (value.toInteger(exec) >= MAX_SELECT_LENGTH) { + Object err = Error::create(exec, RangeError); + exec->setException(err); + } else + coll.put(exec, "length", value); + } return; } // read-only: form kdelibs-3.5.10-gcc44.patch: ftp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE kdelibs-3.5.10-gcc44.patch --- diff -up kdelibs-3.5.10/kioslave/ftp/ftp.cc.orig kdelibs-3.5.10/kioslave/ftp/ftp.cc --- kdelibs-3.5.10/kioslave/ftp/ftp.cc.orig 2009-02-25 13:18:13.000000000 +0100 +++ kdelibs-3.5.10/kioslave/ftp/ftp.cc 2009-02-25 13:34:13.000000000 +0100 @@ -876,7 +876,7 @@ int Ftp::ftpOpenPASVDataConnection() // The usual answer is '227 Entering Passive Mode. (160,39,200,55,6,245)' // but anonftpd gives '227 =160,39,200,55,6,245' int i[6]; - char *start = strchr(ftpResponse(3), '('); + const char *start = strchr(ftpResponse(3), '('); if ( !start ) start = strchr(ftpResponse(3), '='); if ( !start || @@ -931,7 +931,7 @@ int Ftp::ftpOpenEPSVDataConnection() return ERR_INTERNAL; } - char *start = strchr(ftpResponse(3), '|'); + const char *start = strchr(ftpResponse(3), '|'); if ( !start || sscanf(start, "|||%d|", &portnum) != 1) return ERR_INTERNAL; kdelibs-3.5.10-openssl.patch: kopenssl.cc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) --- NEW FILE kdelibs-3.5.10-openssl.patch --- diff -up kdelibs-3.5.10/kio/kssl/kopenssl.cc.openssl kdelibs-3.5.10/kio/kssl/kopenssl.cc --- kdelibs-3.5.10/kio/kssl/kopenssl.cc.openssl 2006-07-22 03:16:39.000000000 -0500 +++ kdelibs-3.5.10/kio/kssl/kopenssl.cc 2009-04-19 16:34:14.000000000 -0500 @@ -329,6 +329,19 @@ KConfig *cfg; #ifdef SHLIB_VERSION_NUMBER << "libssl.so." SHLIB_VERSION_NUMBER #endif + << "libssl.so.0.9.8k" + << "libssl.so.8" + << "libssl.so.0.9.8g" + << "libssl.so.7" + << "libssl.so.0.9.8b" + << "libssl.so.0.9.8a" + << "libssl.so.6" + << "libssl.so.0.9.7e" + << "libssl.so.5" + << "libssl.so.0.9.7a" + << "libssl.so.4" + << "libssl.so.0.9.6b" + << "libssl.so.2" << "libssl.so" << "libssl.so.0" #endif @@ -346,6 +359,19 @@ KConfig *cfg; #ifdef SHLIB_VERSION_NUMBER << "libcrypto.so." SHLIB_VERSION_NUMBER #endif + << "libcrypto.so.0.9.8k" + << "libcrypto.so.8" + << "libcrypto.so.0.9.8g" + << "libcrypto.so.7" + << "libcrypto.so.0.9.8b" + << "libcrypto.so.0.9.8a" + << "libcrypto.so.6" + << "libcrypto.so.0.9.7e" + << "libcrypto.so.5" + << "libcrypto.so.0.9.7a" + << "libcrypto.so.4" + << "libcrypto.so.0.9.6b" + << "libcrypto.so.2" << "libcrypto.so" << "libcrypto.so.0" #endif kdelibs-3.5.4-CVE-2009-1687.patch: collector.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE kdelibs-3.5.4-CVE-2009-1687.patch --- --- kdelibs-3.5.4/kjs/collector.cpp.CVE-2009-1687 2009-06-17 15:07:33.000000000 +0200 +++ kdelibs-3.5.4/kjs/collector.cpp 2009-06-20 00:42:48.000000000 +0200 @@ -23,6 +23,7 @@ #include "value.h" #include "internal.h" +#include #ifndef MAX #define MAX(a,b) ((a) > (b) ? (a) : (b)) @@ -119,6 +120,9 @@ // didn't find one, need to allocate a new block if (heap.usedBlocks == heap.numBlocks) { + static const size_t maxNumBlocks = ULONG_MAX / sizeof(CollectorBlock*) / GROWTH_FACTOR; + if (heap.numBlocks > maxNumBlocks) + return 0L; heap.numBlocks = MAX(MIN_ARRAY_SIZE, heap.numBlocks * GROWTH_FACTOR); heap.blocks = (CollectorBlock **)realloc(heap.blocks, heap.numBlocks * sizeof(CollectorBlock *)); } kdelibs-3.5.4-CVE-2009-1690.patch: AlwaysInline.h | 49 ++++++++++++ Platform.h | 218 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RefPtr.h | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++ htmlparser.cpp | 10 +- htmlparser.h | 4 - 5 files changed, 475 insertions(+), 8 deletions(-) --- NEW FILE kdelibs-3.5.4-CVE-2009-1690.patch --- --- kdelibs-3.5.4/khtml/html/RefPtr.h.CVE-2009-1690 2009-06-17 14:19:00.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/RefPtr.h 2009-06-17 14:19:00.000000000 +0200 @@ -0,0 +1,202 @@ +// -*- mode: c++; c-basic-offset: 4 -*- +/* + * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef WTF_RefPtr_h +#define WTF_RefPtr_h + +#include +#include "AlwaysInline.h" + +namespace WTF { + + enum PlacementNewAdoptType { PlacementNewAdopt }; + + template class PassRefPtr; + + enum HashTableDeletedValueType { HashTableDeletedValue }; + + template class RefPtr { + public: + RefPtr() : m_ptr(0) { } + RefPtr(T* ptr) : m_ptr(ptr) { if (ptr) ptr->ref(); } + RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { if (T* ptr = m_ptr) ptr->ref(); } + // see comment in PassRefPtr.h for why this takes const reference + template RefPtr(const PassRefPtr&); + + // Special constructor for cases where we overwrite an object in place. + RefPtr(PlacementNewAdoptType) { } + + // Hash table deleted values, which are only constructed and never copied or destroyed. + RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } + bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } + + ~RefPtr() { if (T* ptr = m_ptr) ptr->deref(); } + + template RefPtr(const RefPtr& o) : m_ptr(o.get()) { if (T* ptr = m_ptr) ptr->ref(); } + + T* get() const { return m_ptr; } + + void clear() { if (T* ptr = m_ptr) ptr->deref(); m_ptr = 0; } + PassRefPtr release() { PassRefPtr tmp = adoptRef(m_ptr); m_ptr = 0; return tmp; } + + T& operator*() const { return *m_ptr; } + ALWAYS_INLINE T* operator->() const { return m_ptr; } + + bool operator!() const { return !m_ptr; } + + // This conversion operator allows implicit conversion to bool but not to other integer types. + typedef T* RefPtr::*UnspecifiedBoolType; + operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; } + + RefPtr& operator=(const RefPtr&); + RefPtr& operator=(T*); + RefPtr& operator=(const PassRefPtr&); + template RefPtr& operator=(const RefPtr&); + template RefPtr& operator=(const PassRefPtr&); + + void swap(RefPtr&); + + private: + static T* hashTableDeletedValue() { return reinterpret_cast(-1); } + + T* m_ptr; + }; + + template template inline RefPtr::RefPtr(const PassRefPtr& o) + : m_ptr(o.releaseRef()) + { + } + + template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const RefPtr& o) + { + T* optr = o.get(); + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(T* optr) + { + if (optr) + optr->ref(); + T* ptr = m_ptr; + m_ptr = optr; + if (ptr) + ptr->deref(); + return *this; + } + + template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template template inline RefPtr& RefPtr::operator=(const PassRefPtr& o) + { + T* ptr = m_ptr; + m_ptr = o.releaseRef(); + if (ptr) + ptr->deref(); + return *this; + } + + template inline void RefPtr::swap(RefPtr& o) + { + std::swap(m_ptr, o.m_ptr); + } + + template inline void swap(RefPtr& a, RefPtr& b) + { + a.swap(b); + } + + template inline bool operator==(const RefPtr& a, const RefPtr& b) + { + return a.get() == b.get(); + } + + template inline bool operator==(const RefPtr& a, U* b) + { + return a.get() == b; + } + + template inline bool operator==(T* a, const RefPtr& b) + { + return a == b.get(); + } + + template inline bool operator!=(const RefPtr& a, const RefPtr& b) + { + return a.get() != b.get(); + } + + template inline bool operator!=(const RefPtr& a, U* b) + { + return a.get() != b; + } + + template inline bool operator!=(T* a, const RefPtr& b) + { + return a != b.get(); + } + + template inline RefPtr static_pointer_cast(const RefPtr& p) + { + return RefPtr(static_cast(p.get())); + } + + template inline RefPtr const_pointer_cast(const RefPtr& p) + { + return RefPtr(const_cast(p.get())); + } + + template inline T* getPtr(const RefPtr& p) + { + return p.get(); + } + +} // namespace WTF + +using WTF::RefPtr; +using WTF::static_pointer_cast; +using WTF::const_pointer_cast; + +#endif // WTF_RefPtr_h --- kdelibs-3.5.4/khtml/html/htmlparser.cpp.CVE-2009-1690 2006-07-22 10:16:43.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.cpp 2009-06-17 11:51:15.000000000 +0200 @@ -199,7 +199,6 @@ form = 0; map = 0; - head = 0; end = false; isindex = 0; @@ -616,8 +615,7 @@ case ID_BASE: if(!head) { head = new HTMLHeadElementImpl(document); - e = head; - insertNode(e); + insertNode(head.get()); handled = true; } break; @@ -839,7 +837,7 @@ case ID_HEAD: if(!head && current->id() == ID_HTML) { head = new HTMLHeadElementImpl(document); - n = head; + n = head.get(); } break; case ID_BODY: @@ -1679,12 +1677,12 @@ head = new HTMLHeadElementImpl(document); HTMLElementImpl *body = doc()->body(); int exceptioncode = 0; - doc()->firstChild()->insertBefore(head, body, exceptioncode); + doc()->firstChild()->insertBefore(head.get(), body, exceptioncode); if ( exceptioncode ) { #ifdef PARSER_DEBUG kdDebug( 6035 ) << "creation of head failed!!!!" << endl; #endif - delete head; + delete head.get(); head = 0; } } --- kdelibs-3.5.4/khtml/html/Platform.h.CVE-2009-1690 2009-06-17 14:19:07.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/Platform.h 2009-06-17 14:19:07.000000000 +0200 @@ -0,0 +1,218 @@ +/* -*- mode: c++; c-basic-offset: 4 -*- */ +/* + * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef WTF_Platform_h +#define WTF_Platform_h + +/* Force KDE build here in our tree... */ +#ifndef BUILDING_KDE__ +#define BUILDING_KDE__ 1 +#endif + +/* PLATFORM handles OS, operating environment, graphics API, and CPU */ +#define PLATFORM(WTF_FEATURE) (defined( WTF_PLATFORM_##WTF_FEATURE ) && WTF_PLATFORM_##WTF_FEATURE) +#define COMPILER(WTF_FEATURE) (defined( WTF_COMPILER_##WTF_FEATURE ) && WTF_COMPILER_##WTF_FEATURE) +#define HAVE(WTF_FEATURE) (defined( HAVE_##WTF_FEATURE ) && HAVE_##WTF_FEATURE) +#define USE(WTF_FEATURE) (defined( WTF_USE_##WTF_FEATURE ) && WTF_USE_##WTF_FEATURE) +#define ENABLE(WTF_FEATURE) (defined( ENABLE_##WTF_FEATURE ) && ENABLE_##WTF_FEATURE) + +/* Operating systems - low-level dependencies */ + +/* PLATFORM(DARWIN) */ +/* Operating system level dependencies for Mac OS X / Darwin that should */ +/* be used regardless of operating environment */ +#ifdef __APPLE__ +#define WTF_PLATFORM_DARWIN 1 +#endif + +/* PLATFORM(WIN_OS) */ +/* Operating system level dependencies for Windows that should be used */ +/* regardless of operating environment */ +#if defined(WIN32) || defined(_WIN32) +#define WTF_PLATFORM_WIN_OS 1 +#endif + +/* PLATFORM(UNIX) */ +/* Operating system level dependencies for Unix-like systems that */ +/* should be used regardless of operating environment */ +/* (includes PLATFORM(DARWIN)) */ +#if defined(__APPLE__) \ + || defined(unix) \ + || defined(__unix) \ + || defined(__unix__) \ + || defined (__NetBSD__) \ + || defined(_AIX) +#define WTF_PLATFORM_UNIX 1 +#endif + +/* PLATFORM(SOLARIS_OS) */ +/* Operating system level dependencies for Sun (Open)Solaris 10. */ +/* Studio 12 on Solaris defines __SunOS; gcc defines __sun__; */ +/* Both compilers define __sun and sun. */ +#if defined(__sun) || defined(sun) +#define WTF_PLATFORM_SOLARIS_OS 1 +#endif + +/* Operating environments */ + +/* I made the BUILDING_KDE__ macro up for the KDE build system to define */ + +/* PLATFORM(KDE) */ +/* PLATFORM(MAC) */ +/* PLATFORM(WIN) */ +#if BUILDING_KDE__ +#define WTF_PLATFORM_KDE 1 +#elif PLATFORM(DARWIN) +#define WTF_PLATFORM_MAC 1 +#elif PLATFORM(WIN_OS) +#define WTF_PLATFORM_WIN 1 +#endif +#if defined(BUILDING_GDK__) +#define WTF_PLATFORM_GDK 1 +#endif + + +/* CPU */ + +/* PLATFORM(PPC) */ +#if defined(__ppc__) \ + || defined(__PPC__) \ + || defined(__powerpc__) \ + || defined(__powerpc) \ + || defined(__POWERPC__) \ + || defined(_M_PPC) \ + || defined(__PPC) +#define WTF_PLATFORM_PPC 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +/* PLATFORM(PPC64) */ +#if defined(__ppc64__) \ + || defined(__PPC64__) +#define WTF_PLATFORM_PPC64 1 +#define WTF_PLATFORM_BIG_ENDIAN 1 +#endif + +#if defined(arm) +#define WTF_PLATFORM_ARM 1 +#if defined(__ARMEB__) +#define WTF_PLATFORM_BIG_ENDIAN 1 +#elif !defined(__ARM_EABI__) && !defined(__ARMEB__) +#define WTF_PLATFORM_MIDDLE_ENDIAN 1 +#endif +#if !defined(__ARM_EABI__) +#define WTF_PLATFORM_FORCE_PACK 1 +#endif +#endif + +/* PLATFORM(X86) */ +#if defined(__i386__) \ + || defined(i386) \ + || defined(_M_IX86) \ + || defined(_X86_) \ + || defined(__THW_INTEL) +#define WTF_PLATFORM_X86 1 +#endif + +/* PLATFORM(X86_64) */ +#if defined(__x86_64__) \ + || defined(__ia64__) +#define WTF_PLATFORM_X86_64 1 +#endif + +/* PLATFORM(SPARC) */ +#if defined(sparc) +#define WTF_PLATFORM_SPARC 1 +#endif + +/* Compiler */ + +/* COMPILER(CWP) */ +#if defined(__MWERKS__) +#define WTF_COMPILER_CWP 1 +#endif + +/* COMPILER(MSVC) */ +#if defined(_MSC_VER) +#define WTF_COMPILER_MSVC 1 +#endif + +/* COMPILER(GCC) */ +#if defined(__GNUC__) +#define WTF_COMPILER_GCC 1 +#endif + +/* COMPILER(SUNPRO) */ +#if defined(__SUNPRO_CC) +#define WTF_COMPILER_SUNPRO 1 +#endif + +/* COMPILER(BORLAND) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__BORLANDC__) +#define WTF_COMPILER_BORLAND 1 +#endif + +/* COMPILER(CYGWIN) */ +/* not really fully supported - is this relevant any more? */ +#if defined(__CYGWIN__) +#define WTF_COMPILER_CYGWIN 1 +#endif + +/* multiple threads only supported on Mac for now */ +#if PLATFORM(MAC) +#ifndef WTF_USE_MULTIPLE_THREADS +#define WTF_USE_MULTIPLE_THREADS 1 +#endif +#ifndef WTF_USE_BINDINGS +#define WTF_USE_BINDINGS 1 +#endif +#endif + +/* for Unicode, KDE uses Qt, everything else uses ICU */ +#if PLATFORM(KDE) || PLATFORM(QT) +#define WTF_USE_QT4_UNICODE 1 +#elif PLATFORM(SYMBIAN) +#define WTF_USE_SYMBIAN_UNICODE 1 +#else +#define WTF_USE_ICU_UNICODE 1 +#endif + +#if PLATFORM(MAC) +#define WTF_PLATFORM_CF 1 +#endif + +#if PLATFORM(WIN) +#define WTF_USE_WININET 1 +#endif + +#if PLATFORM(GDK) +#define WTF_USE_CURL 1 +#endif + +/* ENABLE macro defaults */ + +#endif /* WTF_Platform_h */ --- kdelibs-3.5.4/khtml/html/AlwaysInline.h.CVE-2009-1690 2009-06-17 14:18:52.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/AlwaysInline.h 2009-06-17 13:56:36.000000000 +0200 @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + */ + +#include "html/Platform.h" + + +#ifndef ALWAYS_INLINE +#if COMPILER(GCC) && defined(NDEBUG) && __GNUC__ > 3 +#define ALWAYS_INLINE inline __attribute__ ((__always_inline__)) +#elif COMPILER(MSVC) && defined(NDEBUG) +#define ALWAYS_INLINE __forceinline +#else +#define ALWAYS_INLINE inline +#endif +#endif + +#ifndef ALWAYS_INLINE_INTO +#if COMPILER(GCC) && defined(NDEBUG) && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || __GNUC__ > 4) +#define ALWAYS_INLINE_INTO __attribute__ ((__flatten__)) +#else +#define ALWAYS_INLINE_INTO +#endif +#endif + + +#ifndef NEVER_INLINE +#if COMPILER(GCC) && __GNUC__ > 3 +#define NEVER_INLINE __attribute__ ((__noinline__)) +#else +#define NEVER_INLINE +#endif +#endif --- kdelibs-3.5.4/khtml/html/htmlparser.h.CVE-2009-1690 2005-10-10 17:06:04.000000000 +0200 +++ kdelibs-3.5.4/khtml/html/htmlparser.h 2009-06-17 14:42:27.000000000 +0200 @@ -38,10 +38,10 @@ #include #endif - #include "dom/dom_string.h" #include "xml/dom_nodeimpl.h" #include "html/html_documentimpl.h" +#include "html/RefPtr.h" class KHTMLView; class HTMLStackElem; @@ -148,7 +148,7 @@ /* * the head element. Needed for crappy html which defines after */ - DOM::HTMLHeadElementImpl *head; + RefPtr head; /* * a possible element in the head. Compatibility hack for Index: kde.sh =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/F-10/kde.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- kde.sh 1 Dec 2007 19:11:02 -0000 1.2 +++ kde.sh 26 Jul 2009 05:37:15 -0000 1.3 @@ -5,8 +5,7 @@ [ -z "$KDEDIRS" ] && KDEDIRS="/usr" && export KDEDIRS ## When/if using prelinking, avoids (some) use of kdeinit -if [ -f /etc/sysconfig/prelink ]; then - if [ `grep '^PRELINKING=yes' /etc/sysconfig/prelink` ] ; then - [ -z "$KDE_IS_PRELINKED" ] && KDE_IS_PRELINKED=1 && export KDE_IS_PRELINKED - fi +if [ -z "$KDE_IS_PRELINKED" ] ; then + grep -qs '^PRELINKING=yes' /etc/sysconfig/prelink && \ + KDE_IS_PRELINKED=1 && export KDE_IS_PRELINKED fi Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/F-10/kdelibs3.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- kdelibs3.spec 15 Dec 2008 07:17:12 -0000 1.43 +++ kdelibs3.spec 26 Jul 2009 05:37:15 -0000 1.44 @@ -36,14 +36,12 @@ Summary: K Desktop Environment 3 - Libraries Version: 3.5.10 -Release: 3%{?dist} +Release: 13%{?dist} %if 0%{?fedora} > 8 Name: kdelibs3 Obsoletes: kdelibs < 6:%{version}-%{release} Provides: kdelibs = 6:%{version}-%{release} -# define to enable kdeui symlink hack -- Rex -#define kdeui_symlink 1 %else Name: kdelibs Epoch: 6 @@ -64,7 +62,7 @@ Source3: devices.protocol Patch1: kdelibs-3.5.1-xdg-menu.patch Patch2: kdelibs-3.0.0-ndebug.patch Patch4: kdelibs-3.0.4-ksyscoca.patch -Patch5: kdelibs-3.5.7-openssl.patch +Patch5: kdelibs-3.5.10-openssl.patch Patch15: kdelibs-3.4.91-buildroot.patch Patch32: kdelibs-3.2.3-cups.patch Patch33: kdelibs-3.3.2-ppc.patch @@ -97,8 +95,19 @@ Patch100: kdelibs-3.5.5-kstandarddirs.pa Patch101: kde-3.5-libtool-shlibext.patch # kget ignores simultaneous download limit (kde #101956) Patch103: kdelibs-3.5.0-101956.patch +Patch104: kdelibs-3.5.10-gcc44.patch -## upstream patches +## security fixes +# fix CVE-2009-2537 - select length DoS +Patch200: kdelibs-3.5.10-cve-2009-2537-select-length.patch +# fix CVE-2009-1725 - crash, possible ACE in numeric character references +Patch201: kdelibs-3.5.10-cve-2009-1725.patch +# fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +Patch202: kdelibs-3.5.4-CVE-2009-1687.patch +# fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +Patch203: kdelibs-3.5.4-CVE-2009-1690.patch +# fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling +Patch204: kdelibs-3.5.10-cve-2009-1698.patch #{?arts:Requires: arts >= %{arts_ev}} #Requires: %{qt3} >= %{qt3_ev} @@ -128,11 +137,6 @@ Requires(pre): coreutils Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -%if 0%{?kdeui_symlink} -# for %_kde4_* macros -BuildRequires: kde4-macros(api) -%{?_kde4_macros_api:Requires: kde4-macros(api) = %{_kde4_macros_api} } -%endif BuildRequires: gettext BuildRequires: pcre-devel BuildRequires: cups-devel cups @@ -214,7 +218,7 @@ Provides: kdelibs3-devel = %{version}-% Obsoletes: kdelibs-devel < 6:%{version}-%{release} Provides: kdelibs-devel = 6:%{version}-%{release} %endif -Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} Requires: %{qt3}-devel Requires: openssl-devel %{?arts:Requires: arts-devel} @@ -233,6 +237,9 @@ Provides: kdelibs3-apidocs = %{version}- Obsoletes: kdelibs-apidocs < 6:%{version}-%{release} Provides: kdelibs-apidocs = 6:%{version}-%{release} %endif +%if 0%{?fedora} > 9 +BuildArch: noarch +%endif %description apidocs This package includes the KDE 3 API documentation in HTML @@ -274,13 +281,21 @@ format for easy browsing %patch100 -p1 -b .kstandarddirs %patch101 -p1 -b .libtool-shlibext +%patch104 -p1 -b .gcc44 -# upstream patches +# security fixes +%patch200 -p1 -b .cve-2009-2537 +%patch201 -p0 -b .cve-2009-1725 +%patch202 -p1 -b .cve-2009-1687 +%patch203 -p1 -b .cve-2009-1690 +%patch204 -p1 -b .cve-2009-1698 sed -i -e "s,^#define KDE_VERSION_STRING .*,#define KDE_VERSION_STRING \"%{version}-%{release} %{distname}\"," kdecore/kdeversion.h %if %{make_cvs} - make -f admin/Makefile.common cvs +# hack/fix for newer automake + sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh + make -f admin/Makefile.common cvs %endif @@ -332,18 +347,21 @@ export DO_NOT_COMPILE="libkscreensaver" --with-openexr \ --with-xinerama -make %{?_smp_mflags} - %if 0%{?apidocs} + doxygen -s -u admin/Doxyfile.global make %{?_smp_mflags} apidox %endif +make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} install +# create/own, see http://bugzilla.redhat.com/483318 +mkdir -p %{buildroot}%{_libdir}/kconf_update_bin + chmod a+x %{buildroot}%{_libdir}/* install -p -m 644 %{SOURCE3} %{buildroot}%{_datadir}/services/devices.protocol @@ -456,15 +474,16 @@ rm -f %{buildroot}%{_docdir}/HTML/en/com rm -rf %{buildroot}%{_datadir}/locale/all_languages rm -rf %{buildroot}%{_sysconfdir}/xdg/menus/ rm -rf %{buildroot}%{_datadir}/autostart/ +rm -r %{buildroot}%{_datadir}/config/colors/40.colors +rm -f %{buildroot}%{_datadir}/config/colors/Rainbow.colors +rm -f %{buildroot}%{_datadir}/config/colors/Royal.colors +rm -f %{buildroot}%{_datadir}/config/colors/Web.colors +rm -f %{buildroot}%{_datadir}/config/ksslcalist +rm -f %{buildroot}%{_bindir}/preparetips + # don't show kresources sed -i -e "s,^OnlyShowIn=KDE;,OnlyShowIn=KDE3;," %{buildroot}%{_datadir}/applications/kde/kresources.desktop -%if 0%{?kdeui_symlink} -# kdeui for kde3, kinda workaround http://bugs.kde.org/157850 -# and save space by sharing -rm -rf %{buildroot}%{_datadir}/apps/kdeui/ -ln -s %{_kde4_appsdir}/kdeui %{buildroot}%{_datadir}/apps/kdeui -%endif %endif %if 0%{?include_crystalsvg} == 0 @@ -495,13 +514,6 @@ touch --no-create %{_datadir}/icons/crys %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/crystalsvg 2> /dev/null || : %endif %{_bindir}/update-desktop-database > /dev/null 2>&1 || : -%if 0%{?kdeui_symlink} -rm -rf %{_datadir}/apps/kdeui.rpm_remove ||: - -%pre -test -d %{_datadir}/apps/kdeui -a ! -L %{_datadir}/apps/kdeui && \ - mv %{_datadir}/apps/kdeui %{_datadir}/apps/kdeui.rpm_remove ||: -%endif %postun /sbin/ldconfig @@ -568,19 +580,17 @@ touch --no-create %{_datadir}/icons/crys %{_bindir}/make_driver_db_cups %{_bindir}/make_driver_db_lpr %{_bindir}/meinproc -%{_bindir}/preparetips %{_bindir}/start_kdeinit %{_bindir}/start_kdeinit_wrapper %attr(4755,root,root) %{_bindir}/kgrantpty %{_libdir}/lib*.so.* %{_libdir}/libkdeinit_*.so %{_libdir}/lib*.la +%{_libdir}/kconf_update_bin/ %{_libdir}/kde3/ %{_datadir}/applications/kde/*.desktop %{_datadir}/apps/* %exclude %{_datadir}/apps/ksgmltools2/ -%exclude %{_datadir}/apps/kdewidgets/ -%exclude %{_libdir}/kde3/plugins/designer/kdewidgets.* %config(noreplace) %{_datadir}/config/* %{_datadir}/emoticons/* %{_datadir}/icons/default.kde @@ -610,13 +620,11 @@ touch --no-create %{_datadir}/icons/crys %{_bindir}/checkXML %{_bindir}/ksvgtopng %{_bindir}/kunittestmodrunner +%{_bindir}/preparetips %endif %{_bindir}/dcopidl* %{_bindir}/kconfig_compiler %{_bindir}/makekdewidgets -%{_datadir}/apps/kdewidgets/ -%dir %{_libdir}/kde3/plugins/designer -%{_libdir}/kde3/plugins/designer/kdewidgets.* %{_datadir}/apps/ksgmltools2/ %{_includedir}/kde/ %{_libdir}/lib*.so @@ -632,6 +640,47 @@ touch --no-create %{_datadir}/icons/crys %changelog +* Sun Jul 26 2009 Kevin Kofler - 3.5.10-13 +- fix CVE-2009-2537 - select length DoS +- fix CVE-2009-1725 - crash, possible ACE in numeric character references +- fix CVE-2009-1690 - crash, possible ACE in KHTML ( use-after-free) +- fix CVE-2009-1687 - possible ACE in KJS (FIXME: still crashes?) +- fix CVE-2009-1698 - crash, possible ACE in CSS style attribute handling + +* Fri Jul 24 2009 Fedora Release Engineering - 3.5.10-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat Jul 18 2009 Rex Dieter - 3.5.10-12 +- FTBFS kdelibs3-3.5.10-11.fc11 (#511571) +- -devel: Requires: %%{name}%%_isa ... + +* Sun Apr 19 2009 Rex Dieter - 3.5.10-11 +- update openssl patch (for 0.9.8k) + +* Thu Apr 16 2009 Rex Dieter - 3.5.10-10 +- move designer plugins to runtime (#487622) +- make -apidocs noarch + +* Mon Mar 02 2009 Than Ngo - 3.5.10-9 +- enable -apidocs + +* Fri Feb 27 2009 Rex Dieter - 3.5.10-8 +- disable -apidocs (f11+, #487719) +- cleanup unused kdeui_symlink hack baggage + +* Wed Feb 25 2009 Than Ngo - 3.5.10-7 +- fix files conflicts with 4.2.x +- fix build issue with gcc-4.4 + +* Wed Feb 25 2009 Fedora Release Engineering - 3.5.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jan 31 2009 Rex Dieter - 6:3.5.10-5 +- unowned dirs (#483318) + +* Sat Jan 10 2009 Ville Skytt? - 6:3.5.10-4 +- Slight speedup to profile.d/kde.sh (#465370). + * Mon Dec 15 2008 Kevin Kofler 3.5.10-3 - update the KatePart latex.xml syntax definition to the version from Kile 2.0.3 --- kdelibs-3.5.7-openssl.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 05:37:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:37:35 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Mail/devel perl-DateTime-Format-Mail.spec, 1.8, 1.9 Message-ID: <20090726053735.728C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25795 Modified Files: perl-DateTime-Format-Mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Mail/devel/perl-DateTime-Format-Mail.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-DateTime-Format-Mail.spec 26 Feb 2009 14:55:52 -0000 1.8 +++ perl-DateTime-Format-Mail.spec 26 Jul 2009 05:37:35 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Mail Version: 0.3001 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert between DateTime and RFC2822/822 formats Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.3001-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3001-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:37:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:37:48 +0000 (UTC) Subject: rpms/perl-DateTime-Format-MySQL/devel perl-DateTime-Format-MySQL.spec, 1.7, 1.8 Message-ID: <20090726053748.1424811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-MySQL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25950 Modified Files: perl-DateTime-Format-MySQL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-MySQL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-MySQL/devel/perl-DateTime-Format-MySQL.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-DateTime-Format-MySQL.spec 26 Feb 2009 14:56:46 -0000 1.7 +++ perl-DateTime-Format-MySQL.spec 26 Jul 2009 05:37:47 -0000 1.8 @@ -12,7 +12,7 @@ Name: perl-DateTime-Format-MySQL Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Parse and format MySQL dates and times Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:38:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:38:02 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Natural/devel perl-DateTime-Format-Natural.spec, 1.6, 1.7 Message-ID: <20090726053802.6AC3511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Natural/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26092 Modified Files: perl-DateTime-Format-Natural.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Natural.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Natural/devel/perl-DateTime-Format-Natural.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Format-Natural.spec 21 Jun 2009 07:36:21 -0000 1.6 +++ perl-DateTime-Format-Natural.spec 26 Jul 2009 05:38:02 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Natural Version: 0.77 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create machine readable date/time with natural parsing logic License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.77-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Iain Arnell 0.77-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 05:38:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:38:16 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Oracle/devel perl-DateTime-Format-Oracle.spec, 1.5, 1.6 Message-ID: <20090726053816.1C43E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Oracle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26322 Modified Files: perl-DateTime-Format-Oracle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Oracle.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Oracle/devel/perl-DateTime-Format-Oracle.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-DateTime-Format-Oracle.spec 26 Feb 2009 14:58:38 -0000 1.5 +++ perl-DateTime-Format-Oracle.spec 26 Jul 2009 05:38:15 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Oracle Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse and format Oracle dates and timestamps License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:38:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:38:29 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Pg/devel perl-DateTime-Format-Pg.spec, 1.4, 1.5 Message-ID: <20090726053829.A1AB711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Pg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26456 Modified Files: perl-DateTime-Format-Pg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Pg.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Pg/devel/perl-DateTime-Format-Pg.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-DateTime-Format-Pg.spec 2 Apr 2009 07:24:38 -0000 1.4 +++ perl-DateTime-Format-Pg.spec 26 Jul 2009 05:38:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Pg Version: 0.16003 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse and format PostgreSQL dates and times License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16003-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.16003-1 - update to 0.16003 From jkeating at fedoraproject.org Sun Jul 26 05:38:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:38:43 +0000 (UTC) Subject: rpms/perl-DateTime-Format-SQLite/devel perl-DateTime-Format-SQLite.spec, 1.2, 1.3 Message-ID: <20090726053843.5730D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-SQLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26624 Modified Files: perl-DateTime-Format-SQLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-SQLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-SQLite/devel/perl-DateTime-Format-SQLite.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-DateTime-Format-SQLite.spec 30 Jun 2009 05:29:59 -0000 1.2 +++ perl-DateTime-Format-SQLite.spec 26 Jul 2009 05:38:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-SQLite Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} # lib/DateTime/Format/SQLite.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Chris Weyl 0.10-2 - add br on Test::More From jkeating at fedoraproject.org Sun Jul 26 05:38:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:38:57 +0000 (UTC) Subject: rpms/perl-DateTime-Format-Strptime/devel perl-DateTime-Format-Strptime.spec, 1.8, 1.9 Message-ID: <20090726053857.4009411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-Strptime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26741 Modified Files: perl-DateTime-Format-Strptime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-Strptime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-Strptime/devel/perl-DateTime-Format-Strptime.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-DateTime-Format-Strptime.spec 26 Feb 2009 15:00:36 -0000 1.8 +++ perl-DateTime-Format-Strptime.spec 26 Jul 2009 05:38:56 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-Strptime Version: 1.0800 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse and format strp and strf time patterns License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0800-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0800-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:39:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:39:11 +0000 (UTC) Subject: rpms/perl-DateTime-Format-W3CDTF/devel perl-DateTime-Format-W3CDTF.spec, 1.6, 1.7 Message-ID: <20090726053911.B29F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Format-W3CDTF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26906 Modified Files: perl-DateTime-Format-W3CDTF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Format-W3CDTF.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Format-W3CDTF/devel/perl-DateTime-Format-W3CDTF.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-DateTime-Format-W3CDTF.spec 26 Feb 2009 15:01:35 -0000 1.6 +++ perl-DateTime-Format-W3CDTF.spec 26 Jul 2009 05:39:11 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-DateTime-Format-W3CDTF Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Parse and format W3CDTF datetime strings License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:39:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:39:24 +0000 (UTC) Subject: rpms/perl-DateTime-Precise/devel perl-DateTime-Precise.spec, 1.3, 1.4 Message-ID: <20090726053924.656FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Precise/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27044 Modified Files: perl-DateTime-Precise.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Precise.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Precise/devel/perl-DateTime-Precise.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DateTime-Precise.spec 26 Feb 2009 15:02:31 -0000 1.3 +++ perl-DateTime-Precise.spec 26 Jul 2009 05:39:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DateTime-Precise Version: 1.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perform common time and date operations with additional GPS operations @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:39:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:39:38 +0000 (UTC) Subject: rpms/perl-DateTime-Set/devel perl-DateTime-Set.spec,1.8,1.9 Message-ID: <20090726053938.1243D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTime-Set/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27204 Modified Files: perl-DateTime-Set.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTime-Set.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTime-Set/devel/perl-DateTime-Set.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-DateTime-Set.spec 26 Feb 2009 15:03:27 -0000 1.8 +++ perl-DateTime-Set.spec 26 Jul 2009 05:39:37 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-DateTime-Set Version: 0.26 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Datetime sets and set math License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:39:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:39:51 +0000 (UTC) Subject: rpms/perl-DateTimeX-Easy/devel perl-DateTimeX-Easy.spec,1.3,1.4 Message-ID: <20090726053951.8999C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-DateTimeX-Easy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27358 Modified Files: perl-DateTimeX-Easy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-DateTimeX-Easy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-DateTimeX-Easy/devel/perl-DateTimeX-Easy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-DateTimeX-Easy.spec 19 May 2009 02:45:44 -0000 1.3 +++ perl-DateTimeX-Easy.spec 26 Jul 2009 05:39:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-DateTimeX-Easy Version: 0.087 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/DateTimeX/Easy.pm License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.087-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Chris Weyl 0.087-1 - auto-update to 0.087 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 05:40:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:40:07 +0000 (UTC) Subject: rpms/perl-Declare-Constraints-Simple/devel perl-Declare-Constraints-Simple.spec, 1.4, 1.5 Message-ID: <20090726054007.7F5E311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Declare-Constraints-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27529 Modified Files: perl-Declare-Constraints-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Declare-Constraints-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Declare-Constraints-Simple/devel/perl-Declare-Constraints-Simple.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Declare-Constraints-Simple.spec 26 Feb 2009 15:05:22 -0000 1.4 +++ perl-Declare-Constraints-Simple.spec 26 Jul 2009 05:40:07 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Declare-Constraints-Simple Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Declarative Validation of Data Structures License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:40:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:40:21 +0000 (UTC) Subject: rpms/perl-Devel-Caller/devel perl-Devel-Caller.spec,1.6,1.7 Message-ID: <20090726054021.8136B11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Caller/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27716 Modified Files: perl-Devel-Caller.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Caller.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Caller/devel/perl-Devel-Caller.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Devel-Caller.spec 26 Feb 2009 15:06:20 -0000 1.6 +++ perl-Devel-Caller.spec 26 Jul 2009 05:40:21 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Devel-Caller Version: 2.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Meatier versions of caller License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kkofler at fedoraproject.org Sun Jul 26 05:40:33 2009 From: kkofler at fedoraproject.org (Kevin Kofler) Date: Sun, 26 Jul 2009 05:40:33 +0000 (UTC) Subject: rpms/kdelibs3/devel kdelibs3.spec,1.65,1.66 Message-ID: <20090726054033.5E80411C0416@cvs1.fedora.phx.redhat.com> Author: kkofler Update of /cvs/pkgs/rpms/kdelibs3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27819/devel Modified Files: kdelibs3.spec Log Message: Fix apparently harmless typo. Index: kdelibs3.spec =================================================================== RCS file: /cvs/pkgs/rpms/kdelibs3/devel/kdelibs3.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- kdelibs3.spec 26 Jul 2009 03:49:33 -0000 1.65 +++ kdelibs3.spec 26 Jul 2009 05:40:32 -0000 1.66 @@ -474,7 +474,7 @@ rm -f %{buildroot}%{_docdir}/HTML/en/com rm -rf %{buildroot}%{_datadir}/locale/all_languages rm -rf %{buildroot}%{_sysconfdir}/xdg/menus/ rm -rf %{buildroot}%{_datadir}/autostart/ -rm -r %{buildroot}%{_datadir}/config/colors/40.colors +rm -f %{buildroot}%{_datadir}/config/colors/40.colors rm -f %{buildroot}%{_datadir}/config/colors/Rainbow.colors rm -f %{buildroot}%{_datadir}/config/colors/Royal.colors rm -f %{buildroot}%{_datadir}/config/colors/Web.colors From jkeating at fedoraproject.org Sun Jul 26 05:40:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:40:38 +0000 (UTC) Subject: rpms/perl-Devel-CheckOS/devel perl-Devel-CheckOS.spec,1.2,1.3 Message-ID: <20090726054038.BD1BB11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-CheckOS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27906 Modified Files: perl-Devel-CheckOS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-CheckOS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-CheckOS/devel/perl-Devel-CheckOS.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Devel-CheckOS.spec 26 Feb 2009 15:07:13 -0000 1.2 +++ perl-Devel-CheckOS.spec 26 Jul 2009 05:40:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Devel-CheckOS Version: 1.50 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Check what OS we're running on License: GPLv2 or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.50-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.50-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:40:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:40:54 +0000 (UTC) Subject: rpms/perl-Devel-Cover/devel perl-Devel-Cover.spec,1.14,1.15 Message-ID: <20090726054054.4479A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Cover/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28042 Modified Files: perl-Devel-Cover.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Cover.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Cover/devel/perl-Devel-Cover.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Devel-Cover.spec 26 Feb 2009 15:08:08 -0000 1.14 +++ perl-Devel-Cover.spec 26 Jul 2009 05:40:54 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Devel-Cover Version: 0.64 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Code coverage metrics for Perl Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.64-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.64-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:41:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:41:09 +0000 (UTC) Subject: rpms/perl-Devel-Cycle/devel perl-Devel-Cycle.spec,1.15,1.16 Message-ID: <20090726054109.47B2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Cycle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28226 Modified Files: perl-Devel-Cycle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Cycle.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Cycle/devel/perl-Devel-Cycle.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Devel-Cycle.spec 26 Feb 2009 15:09:08 -0000 1.15 +++ perl-Devel-Cycle.spec 26 Jul 2009 05:41:09 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Devel-Cycle Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Find memory cycles in objects License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:41:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:41:22 +0000 (UTC) Subject: rpms/perl-Devel-Dumpvar/devel perl-Devel-Dumpvar.spec,1.2,1.3 Message-ID: <20090726054122.E5BB011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Dumpvar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28367 Modified Files: perl-Devel-Dumpvar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Dumpvar.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Dumpvar/devel/perl-Devel-Dumpvar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Devel-Dumpvar.spec 26 Feb 2009 15:10:06 -0000 1.2 +++ perl-Devel-Dumpvar.spec 26 Jul 2009 05:41:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Devel-Dumpvar Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Pure-OO reimplementation of dumpvar.pl License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:41:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:41:36 +0000 (UTC) Subject: rpms/perl-Devel-FastProf/devel perl-Devel-FastProf.spec,1.1,1.2 Message-ID: <20090726054136.A646211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-FastProf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28530 Modified Files: perl-Devel-FastProf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-FastProf.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FastProf/devel/perl-Devel-FastProf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Devel-FastProf.spec 14 Apr 2009 03:39:19 -0000 1.1 +++ perl-Devel-FastProf.spec 26 Jul 2009 05:41:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Devel-FastProf Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast perl per-line profiler License: GPL+ or Artistic Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Iain Arnell 0.08-1 - Specfile autogenerated by cpanspec 1.77. - add fprofpp and man page to files From jkeating at fedoraproject.org Sun Jul 26 05:41:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:41:49 +0000 (UTC) Subject: rpms/perl-Devel-GlobalDestruction/devel perl-Devel-GlobalDestruction.spec, 1.4, 1.5 Message-ID: <20090726054149.19CA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-GlobalDestruction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28694 Modified Files: perl-Devel-GlobalDestruction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-GlobalDestruction.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-GlobalDestruction/devel/perl-Devel-GlobalDestruction.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Devel-GlobalDestruction.spec 24 May 2009 01:04:19 -0000 1.4 +++ perl-Devel-GlobalDestruction.spec 26 Jul 2009 05:41:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Devel-GlobalDestruction Version: 0.02 -Release: 5%{?dist} +Release: 6%{?dist} # see lib/Devel/GlobalDestruction.pm License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Chris Weyl - 0.02-5 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 05:42:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:42:03 +0000 (UTC) Subject: rpms/perl-Devel-Hide/devel perl-Devel-Hide.spec,1.1,1.2 Message-ID: <20090726054203.C58DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Hide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28849 Modified Files: perl-Devel-Hide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Hide.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Hide/devel/perl-Devel-Hide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Devel-Hide.spec 7 Apr 2009 03:53:21 -0000 1.1 +++ perl-Devel-Hide.spec 26 Jul 2009 05:42:03 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Devel-Hide Version: 0.0008 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Forces the unavailability of specified Perl modules (for testing) License: GPL+ or Artistic Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.0008-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 0.0008-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 05:42:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:42:17 +0000 (UTC) Subject: rpms/perl-Devel-Leak/devel perl-Devel-Leak.spec,1.8,1.9 Message-ID: <20090726054217.23E0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Leak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28994 Modified Files: perl-Devel-Leak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Leak.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Leak/devel/perl-Devel-Leak.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Devel-Leak.spec 26 Feb 2009 15:12:01 -0000 1.8 +++ perl-Devel-Leak.spec 26 Jul 2009 05:42:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Devel-Leak Version: 0.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Utility for looking for perl objects that are not reclaimed License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:42:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:42:31 +0000 (UTC) Subject: rpms/perl-Devel-LexAlias/devel perl-Devel-LexAlias.spec,1.4,1.5 Message-ID: <20090726054231.7041611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-LexAlias/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29128 Modified Files: perl-Devel-LexAlias.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-LexAlias.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-LexAlias/devel/perl-Devel-LexAlias.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Devel-LexAlias.spec 27 Mar 2009 04:54:12 -0000 1.4 +++ perl-Devel-LexAlias.spec 26 Jul 2009 05:42:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Devel-LexAlias Version: 0.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Alias lexical variables License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Chris Weyl - 0.04-4 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 05:42:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:42:45 +0000 (UTC) Subject: rpms/perl-Devel-NYTProf/devel perl-Devel-NYTProf.spec,1.2,1.3 Message-ID: <20090726054245.0D58B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-NYTProf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29284 Modified Files: perl-Devel-NYTProf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-NYTProf.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-NYTProf/devel/perl-Devel-NYTProf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Devel-NYTProf.spec 25 Jun 2009 03:21:41 -0000 1.2 +++ perl-Devel-NYTProf.spec 26 Jul 2009 05:42:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Devel-NYTProf Version: 2.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Powerful feature-rich perl source code profiler License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Iain Arnell 2.10-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 05:42:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:42:59 +0000 (UTC) Subject: rpms/perl-Devel-Profiler/devel perl-Devel-Profiler.spec,1.4,1.5 Message-ID: <20090726054259.26E4011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Profiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29418 Modified Files: perl-Devel-Profiler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Profiler.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Profiler/devel/perl-Devel-Profiler.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Devel-Profiler.spec 26 Feb 2009 15:13:56 -0000 1.4 +++ perl-Devel-Profiler.spec 26 Jul 2009 05:42:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Devel-Profiler Version: 0.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl profiler compatible with dprofpp License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:43:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:43:13 +0000 (UTC) Subject: rpms/perl-Devel-REPL/devel perl-Devel-REPL.spec,1.3,1.4 Message-ID: <20090726054313.36F6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-REPL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29564 Modified Files: perl-Devel-REPL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-REPL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-REPL/devel/perl-Devel-REPL.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Devel-REPL.spec 7 Jul 2009 07:25:11 -0000 1.3 +++ perl-Devel-REPL.spec 26 Jul 2009 05:43:13 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Devel-REPL Version: 1.003007 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Modern perl interactive shell License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.003007-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Iain Arnell 1.003007-2 - BR perl(CPAN) From jkeating at fedoraproject.org Sun Jul 26 05:43:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:43:27 +0000 (UTC) Subject: rpms/perl-Devel-Size/devel perl-Devel-Size.spec,1.10,1.11 Message-ID: <20090726054327.BFC5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Size/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29693 Modified Files: perl-Devel-Size.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Size.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Size/devel/perl-Devel-Size.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Devel-Size.spec 2 Apr 2009 07:27:55 -0000 1.10 +++ perl-Devel-Size.spec 26 Jul 2009 05:43:27 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Devel-Size Version: 0.71 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for finding the memory usage of Perl variables License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.71-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.71-1 - update to 0.71 From jkeating at fedoraproject.org Sun Jul 26 05:43:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:43:41 +0000 (UTC) Subject: rpms/perl-Devel-SmallProf/devel perl-Devel-SmallProf.spec,1.2,1.3 Message-ID: <20090726054341.BFC7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-SmallProf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29854 Modified Files: perl-Devel-SmallProf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-SmallProf.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-SmallProf/devel/perl-Devel-SmallProf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Devel-SmallProf.spec 26 Feb 2009 15:15:54 -0000 1.2 +++ perl-Devel-SmallProf.spec 26 Jul 2009 05:43:41 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Devel-SmallProf Version: 2.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Per-line Perl profiler License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:43:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:43:54 +0000 (UTC) Subject: rpms/perl-Devel-StackTrace/devel perl-Devel-StackTrace.spec, 1.20, 1.21 Message-ID: <20090726054354.22BA511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-StackTrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29981 Modified Files: perl-Devel-StackTrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-StackTrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-StackTrace/devel/perl-Devel-StackTrace.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Devel-StackTrace.spec 20 Jul 2009 11:16:03 -0000 1.20 +++ perl-Devel-StackTrace.spec 26 Jul 2009 05:43:53 -0000 1.21 @@ -2,7 +2,7 @@ Name: perl-Devel-StackTrace Summary: Perl module implementing stack trace and stack trace frame objects Version: 1.22 Epoch: 1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-StackTrace @@ -57,6 +57,9 @@ make test IS_MAINTAINER=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius - 1:1.22-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 05:44:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:44:08 +0000 (UTC) Subject: rpms/perl-Devel-Symdump/devel perl-Devel-Symdump.spec,1.22,1.23 Message-ID: <20090726054408.0CF0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Devel-Symdump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30144 Modified Files: perl-Devel-Symdump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Devel-Symdump.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-Symdump/devel/perl-Devel-Symdump.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Devel-Symdump.spec 26 Feb 2009 15:17:49 -0000 1.22 +++ perl-Devel-Symdump.spec 26 Jul 2009 05:44:07 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-Devel-Symdump Version: 2.07 -Release: 6%{?dist} +Release: 7%{?dist} Epoch: 1 Summary: A Perl module for inspecting Perl's symbol table @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:2.07-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:2.07-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:44:21 +0000 (UTC) Subject: rpms/perl-Device-SerialPort/devel perl-Device-SerialPort.spec, 1.7, 1.8 Message-ID: <20090726054421.EE0B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Device-SerialPort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30310 Modified Files: perl-Device-SerialPort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Device-SerialPort.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Device-SerialPort/devel/perl-Device-SerialPort.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Device-SerialPort.spec 26 Feb 2009 15:18:51 -0000 1.7 +++ perl-Device-SerialPort.spec 26 Jul 2009 05:44:21 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Device-SerialPort Version: 1.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Linux/POSIX emulation of Win32::SerialPort functions License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:44:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:44:40 +0000 (UTC) Subject: rpms/perl-Digest-BubbleBabble/devel perl-Digest-BubbleBabble.spec, 1.10, 1.11 Message-ID: <20090726054440.4E40411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-BubbleBabble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30509 Modified Files: perl-Digest-BubbleBabble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-BubbleBabble.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-BubbleBabble/devel/perl-Digest-BubbleBabble.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Digest-BubbleBabble.spec 26 Feb 2009 15:19:47 -0000 1.10 +++ perl-Digest-BubbleBabble.spec 26 Jul 2009 05:44:40 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Create bubble-babble fingerprints Name: perl-Digest-BubbleBabble Version: 0.01 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Digest-BubbleBabble/ @@ -52,6 +52,9 @@ fingerprint. %{_mandir}/man3/Digest::BubbleBabble.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:44:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:44:54 +0000 (UTC) Subject: rpms/perl-Digest-CRC/devel perl-Digest-CRC.spec,1.5,1.6 Message-ID: <20090726054454.5900D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-CRC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30661 Modified Files: perl-Digest-CRC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-CRC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-CRC/devel/perl-Digest-CRC.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Digest-CRC.spec 26 Feb 2009 15:20:44 -0000 1.5 +++ perl-Digest-CRC.spec 26 Jul 2009 05:44:54 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Digest-CRC Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generic CRC functions Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:45:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:45:11 +0000 (UTC) Subject: rpms/perl-Digest-HMAC/devel perl-Digest-HMAC.spec,1.16,1.17 Message-ID: <20090726054511.80B0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-HMAC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30850 Modified Files: perl-Digest-HMAC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-HMAC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-HMAC/devel/perl-Digest-HMAC.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Digest-HMAC.spec 26 Feb 2009 15:21:42 -0000 1.16 +++ perl-Digest-HMAC.spec 26 Jul 2009 05:45:11 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Digest-HMAC Version: 1.01 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Digest-HMAC Perl module Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:45:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:45:28 +0000 (UTC) Subject: rpms/perl-Digest-MD2/devel perl-Digest-MD2.spec,1.10,1.11 Message-ID: <20090726054528.DE38911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-MD2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31022 Modified Files: perl-Digest-MD2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-MD2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-MD2/devel/perl-Digest-MD2.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Digest-MD2.spec 7 Mar 2009 09:38:22 -0000 1.10 +++ perl-Digest-MD2.spec 26 Jul 2009 05:45:28 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Perl interface to the MD2 Algorithm Name: perl-Digest-MD2 Version: 2.03 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Digest-MD2/ @@ -58,6 +58,9 @@ Digest::MD5. %{_mandir}/man3/Digest::MD2.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.03-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Paul Howarth - 2.03-9 - Filter out unwanted provides for perl shared objects - Recode docs as UTF-8 From jkeating at fedoraproject.org Sun Jul 26 05:45:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:45:44 +0000 (UTC) Subject: rpms/perl-Digest-MD4/devel perl-Digest-MD4.spec,1.9,1.10 Message-ID: <20090726054544.B72BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-MD4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31206 Modified Files: perl-Digest-MD4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-MD4.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-MD4/devel/perl-Digest-MD4.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Digest-MD4.spec 7 Mar 2009 20:31:11 -0000 1.9 +++ perl-Digest-MD4.spec 26 Jul 2009 05:45:44 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Digest-MD4 Version: 1.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl interface to the MD4 Algorithm Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ message of arbitrary length and produces %{_mandir}/man3/*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Paul Howarth - 1.5-8 - Filter out unwanted provides for perl shared objects From jkeating at fedoraproject.org Sun Jul 26 05:46:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:46:00 +0000 (UTC) Subject: rpms/perl-Digest-Nilsimsa/devel perl-Digest-Nilsimsa.spec, 1.14, 1.15 Message-ID: <20090726054600.53F2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-Nilsimsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31336 Modified Files: perl-Digest-Nilsimsa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-Nilsimsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-Nilsimsa/devel/perl-Digest-Nilsimsa.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Digest-Nilsimsa.spec 26 Feb 2009 15:24:33 -0000 1.14 +++ perl-Digest-Nilsimsa.spec 26 Jul 2009 05:45:59 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Digest-Nilsimsa Version: 0.06 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Perl interface to the Nilsima Algorithm @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:46:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:46:15 +0000 (UTC) Subject: rpms/perl-Digest-SHA1/devel perl-Digest-SHA1.spec,1.21,1.22 Message-ID: <20090726054615.D72AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Digest-SHA1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31495 Modified Files: perl-Digest-SHA1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Digest-SHA1.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Digest-SHA1/devel/perl-Digest-SHA1.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-Digest-SHA1.spec 26 Feb 2009 15:25:32 -0000 1.21 +++ perl-Digest-SHA1.spec 26 Jul 2009 05:46:15 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-Digest-SHA1 Version: 2.11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Digest-SHA1 Perl module Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:46:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:46:31 +0000 (UTC) Subject: rpms/perl-Directory-Scratch/devel perl-Directory-Scratch.spec, 1.2, 1.3 Message-ID: <20090726054631.5D57E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Directory-Scratch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31641 Modified Files: perl-Directory-Scratch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Directory-Scratch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Directory-Scratch/devel/perl-Directory-Scratch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Directory-Scratch.spec 26 Feb 2009 15:26:29 -0000 1.2 +++ perl-Directory-Scratch.spec 26 Jul 2009 05:46:30 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Directory-Scratch Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/Directory/Scratch.pm (perl) License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:46:46 +0000 (UTC) Subject: rpms/perl-Directory-Scratch-Structured/devel perl-Directory-Scratch-Structured.spec, 1.2, 1.3 Message-ID: <20090726054646.8C76911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Directory-Scratch-Structured/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31812 Modified Files: perl-Directory-Scratch-Structured.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Directory-Scratch-Structured.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Directory-Scratch-Structured/devel/perl-Directory-Scratch-Structured.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Directory-Scratch-Structured.spec 26 Feb 2009 15:27:30 -0000 1.2 +++ perl-Directory-Scratch-Structured.spec 26 Jul 2009 05:46:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Directory-Scratch-Structured Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Directory/Scratch/Structured.pm License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:47:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:47:03 +0000 (UTC) Subject: rpms/perl-Email-Abstract/devel perl-Email-Abstract.spec,1.7,1.8 Message-ID: <20090726054703.75CD111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Abstract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31976 Modified Files: perl-Email-Abstract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Abstract.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Abstract/devel/perl-Email-Abstract.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Email-Abstract.spec 13 Mar 2009 19:03:13 -0000 1.7 +++ perl-Email-Abstract.spec 26 Jul 2009 05:47:02 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Email-Abstract Version: 3.001 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unified interface to mail representations Group: Development/Libraries License: GPL+ or Artistic @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 3.001-1 - update to 3.001 From jkeating at fedoraproject.org Sun Jul 26 05:47:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:47:19 +0000 (UTC) Subject: rpms/perl-Email-Address/devel perl-Email-Address.spec,1.17,1.18 Message-ID: <20090726054719.AC49011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Address/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32146 Modified Files: perl-Email-Address.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Address.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Address/devel/perl-Email-Address.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Email-Address.spec 26 Feb 2009 15:29:28 -0000 1.17 +++ perl-Email-Address.spec 26 Jul 2009 05:47:19 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-Email-Address Version: 1.889 -Release: 2%{?dist} +Release: 3%{?dist} Summary: RFC 2822 Address Parsing and Creation Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.889-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.889-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:47:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:47:36 +0000 (UTC) Subject: rpms/perl-Email-Date/devel perl-Email-Date.spec,1.7,1.8 Message-ID: <20090726054736.8514411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32386 Modified Files: perl-Email-Date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Date.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Date/devel/perl-Email-Date.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Email-Date.spec 26 Feb 2009 15:30:32 -0000 1.7 +++ perl-Email-Date.spec 26 Jul 2009 05:47:36 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Email-Date Version: 1.103 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Find and format date headers Group: Development/Libraries License: GPL+ or Artistic @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.103-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.103-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:47:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:47:52 +0000 (UTC) Subject: rpms/perl-Email-Date-Format/devel perl-Email-Date-Format.spec, 1.3, 1.4 Message-ID: <20090726054752.AB60911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Date-Format/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32544 Modified Files: perl-Email-Date-Format.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Date-Format.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Date-Format/devel/perl-Email-Date-Format.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Email-Date-Format.spec 26 Feb 2009 15:31:31 -0000 1.3 +++ perl-Email-Date-Format.spec 26 Jul 2009 05:47:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Email-Date-Format Version: 1.002 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Produce RFC 2822 date strings Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.002-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.002-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:48:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:48:08 +0000 (UTC) Subject: rpms/perl-Email-Find/devel perl-Email-Find.spec,1.2,1.3 Message-ID: <20090726054808.D4DD011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv465 Modified Files: perl-Email-Find.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Find/devel/perl-Email-Find.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Email-Find.spec 26 Feb 2009 15:32:25 -0000 1.2 +++ perl-Email-Find.spec 26 Jul 2009 05:48:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Email-Find Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Find RFC 822 email addresses in plain text Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:48:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:48:24 +0000 (UTC) Subject: rpms/perl-Email-MIME/devel perl-Email-MIME.spec,1.15,1.16 Message-ID: <20090726054824.9F10E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv986 Modified Files: perl-Email-MIME.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME/devel/perl-Email-MIME.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Email-MIME.spec 13 Mar 2009 19:09:51 -0000 1.15 +++ perl-Email-MIME.spec 26 Jul 2009 05:48:24 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Email-MIME Version: 1.863 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Easy MIME message parsing Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.863-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.863-1 - update to 1.863 From jkeating at fedoraproject.org Sun Jul 26 05:48:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:48:39 +0000 (UTC) Subject: rpms/perl-Email-MIME-Attachment-Stripper/devel perl-Email-MIME-Attachment-Stripper.spec, 1.7, 1.8 Message-ID: <20090726054839.C847311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME-Attachment-Stripper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1179 Modified Files: perl-Email-MIME-Attachment-Stripper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME-Attachment-Stripper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME-Attachment-Stripper/devel/perl-Email-MIME-Attachment-Stripper.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Email-MIME-Attachment-Stripper.spec 13 Mar 2009 19:13:44 -0000 1.7 +++ perl-Email-MIME-Attachment-Stripper.spec 26 Jul 2009 05:48:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Email-MIME-Attachment-Stripper Version: 1.316 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Strip the attachments from a mail message Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.316-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.316-1 - update to 1.316 From jkeating at fedoraproject.org Sun Jul 26 05:48:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:48:54 +0000 (UTC) Subject: rpms/perl-Email-MIME-ContentType/devel perl-Email-MIME-ContentType.spec, 1.9, 1.10 Message-ID: <20090726054854.E44F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME-ContentType/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1353 Modified Files: perl-Email-MIME-ContentType.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME-ContentType.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME-ContentType/devel/perl-Email-MIME-ContentType.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Email-MIME-ContentType.spec 13 Mar 2009 19:16:50 -0000 1.9 +++ perl-Email-MIME-ContentType.spec 26 Jul 2009 05:48:54 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Email-MIME-ContentType Version: 1.015 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse a MIME Content-Type Header Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.015-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.015-1 - update to 1.015 From jkeating at fedoraproject.org Sun Jul 26 05:49:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:49:09 +0000 (UTC) Subject: rpms/perl-Email-MIME-Creator/devel perl-Email-MIME-Creator.spec, 1.7, 1.8 Message-ID: <20090726054909.B214511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME-Creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1540 Modified Files: perl-Email-MIME-Creator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME-Creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME-Creator/devel/perl-Email-MIME-Creator.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Email-MIME-Creator.spec 13 Mar 2009 19:22:31 -0000 1.7 +++ perl-Email-MIME-Creator.spec 26 Jul 2009 05:49:09 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Email-MIME-Creator Version: 1.455 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Email::MIME constructor for starting anew Group: Development/Libraries License: GPL+ or Artistic @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.455-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.455-1 - update to 1.455 From jkeating at fedoraproject.org Sun Jul 26 05:49:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:49:23 +0000 (UTC) Subject: rpms/perl-Email-MIME-Encodings/devel perl-Email-MIME-Encodings.spec, 1.10, 1.11 Message-ID: <20090726054923.6371811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME-Encodings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1698 Modified Files: perl-Email-MIME-Encodings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME-Encodings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME-Encodings/devel/perl-Email-MIME-Encodings.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Email-MIME-Encodings.spec 5 May 2009 14:42:55 -0000 1.10 +++ perl-Email-MIME-Encodings.spec 26 Jul 2009 05:49:23 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Email-MIME-Encodings Version: 1.313 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unified interface to MIME encoding and decoding Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.313-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Tom "spot" Callaway - 1.313-1 - update to 1.313 From jkeating at fedoraproject.org Sun Jul 26 05:49:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:49:37 +0000 (UTC) Subject: rpms/perl-Email-MIME-Modifier/devel perl-Email-MIME-Modifier.spec, 1.10, 1.11 Message-ID: <20090726054937.CD83B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MIME-Modifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1869 Modified Files: perl-Email-MIME-Modifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MIME-Modifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MIME-Modifier/devel/perl-Email-MIME-Modifier.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Email-MIME-Modifier.spec 26 Feb 2009 15:37:58 -0000 1.10 +++ perl-Email-MIME-Modifier.spec 26 Jul 2009 05:49:37 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Email-MIME-Modifier Version: 1.443 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Modify Email::MIME Objects Easily Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.443-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.443-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:49:51 +0000 (UTC) Subject: rpms/perl-Email-MessageID/devel perl-Email-MessageID.spec,1.9,1.10 Message-ID: <20090726054951.9C52A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-MessageID/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2002 Modified Files: perl-Email-MessageID.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-MessageID.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-MessageID/devel/perl-Email-MessageID.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Email-MessageID.spec 26 Feb 2009 15:38:51 -0000 1.9 +++ perl-Email-MessageID.spec 26 Jul 2009 05:49:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Email-MessageID Version: 1.401 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generate world unique message-ids Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.401-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.401-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:50:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:50:05 +0000 (UTC) Subject: rpms/perl-Email-Reply/devel perl-Email-Reply.spec,1.4,1.5 Message-ID: <20090726055005.E3D0611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Reply/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2150 Modified Files: perl-Email-Reply.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Reply.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Reply/devel/perl-Email-Reply.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Email-Reply.spec 26 Feb 2009 15:39:48 -0000 1.4 +++ perl-Email-Reply.spec 26 Jul 2009 05:50:05 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Email-Reply Version: 1.202 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Reply to an email message Group: Development/Libraries License: GPL+ or Artistic @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.202-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.202-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:50:20 +0000 (UTC) Subject: rpms/perl-Email-Send/devel perl-Email-Send.spec,1.6,1.7 Message-ID: <20090726055020.2893911C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Send/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2300 Modified Files: perl-Email-Send.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Send.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Send/devel/perl-Email-Send.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Email-Send.spec 13 Mar 2009 19:29:03 -0000 1.6 +++ perl-Email-Send.spec 26 Jul 2009 05:50:19 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Email-Send Version: 2.194 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Module for sending email Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.194-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 2.194-1 - update to 2.194 From jkeating at fedoraproject.org Sun Jul 26 05:50:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:50:36 +0000 (UTC) Subject: rpms/perl-Email-Simple/devel perl-Email-Simple.spec,1.17,1.18 Message-ID: <20090726055036.B7F2A11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2455 Modified Files: perl-Email-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Simple/devel/perl-Email-Simple.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Email-Simple.spec 26 Feb 2009 15:41:40 -0000 1.17 +++ perl-Email-Simple.spec 26 Jul 2009 05:50:36 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-Email-Simple Version: 2.005 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple parsing of RFC2822 message format and headers Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.005-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.005-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:50:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:50:53 +0000 (UTC) Subject: rpms/perl-Email-Simple-Creator/devel perl-Email-Simple-Creator.spec, 1.8, 1.9 Message-ID: <20090726055053.054DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Simple-Creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2613 Modified Files: perl-Email-Simple-Creator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Simple-Creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Simple-Creator/devel/perl-Email-Simple-Creator.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Email-Simple-Creator.spec 27 May 2009 17:41:45 -0000 1.8 +++ perl-Email-Simple-Creator.spec 26 Jul 2009 05:50:52 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Email-Simple-Creator Version: 1.424 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Email::Simple constructor for starting anew Group: Development/Libraries License: GPL+ or Artistic @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.424-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Tom "spot" Callaway - 1.424-4 - add missing Requires: perl(Email::Date::Format) From jkeating at fedoraproject.org Sun Jul 26 05:51:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:51:07 +0000 (UTC) Subject: rpms/perl-Email-Valid/devel perl-Email-Valid.spec,1.7,1.8 Message-ID: <20090726055107.1243D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Email-Valid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2778 Modified Files: perl-Email-Valid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Email-Valid.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Email-Valid/devel/perl-Email-Valid.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Email-Valid.spec 13 Mar 2009 19:35:32 -0000 1.7 +++ perl-Email-Valid.spec 26 Jul 2009 05:51:06 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Email-Valid Version: 0.180 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Check validity of internet email address Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.180-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.180-1 - update to 0.180 From jkeating at fedoraproject.org Sun Jul 26 05:51:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:51:21 +0000 (UTC) Subject: rpms/perl-Encode-Detect/devel perl-Encode-Detect.spec,1.2,1.3 Message-ID: <20090726055121.6186311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Encode-Detect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2920 Modified Files: perl-Encode-Detect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Encode-Detect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Encode-Detect/devel/perl-Encode-Detect.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Encode-Detect.spec 26 Feb 2009 15:44:29 -0000 1.2 +++ perl-Encode-Detect.spec 26 Jul 2009 05:51:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Encode-Detect Version: 1.00 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Encode::Encoding subclass that detects the encoding of data Group: Development/Libraries @@ -57,6 +57,9 @@ find "${RPM_BUILD_ROOT}" -depth -type d %{_mandir}/man3/Encode::Detect::Detector.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:51:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:51:37 +0000 (UTC) Subject: rpms/perl-Error/devel perl-Error.spec,1.24,1.25 Message-ID: <20090726055137.44EB811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Error/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3092 Modified Files: perl-Error.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Error.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Error/devel/perl-Error.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- perl-Error.spec 26 Feb 2009 15:45:27 -0000 1.24 +++ perl-Error.spec 26 Jul 2009 05:51:36 -0000 1.25 @@ -1,6 +1,6 @@ Name: perl-Error Version: 0.17015 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Error/exception handling in an OO-ish way License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:0.17015-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.17015-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:51:52 +0000 (UTC) Subject: rpms/perl-Eval-Context/devel perl-Eval-Context.spec,1.2,1.3 Message-ID: <20090726055152.13C8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Eval-Context/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3223 Modified Files: perl-Eval-Context.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Eval-Context.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Eval-Context/devel/perl-Eval-Context.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Eval-Context.spec 26 Feb 2009 15:46:21 -0000 1.2 +++ perl-Eval-Context.spec 26 Jul 2009 05:51:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Eval-Context Version: 0.07 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/Eval/Context.pm License: GPL+ or Artistic Group: Development/Libraries @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:52:07 +0000 (UTC) Subject: rpms/perl-Event/devel perl-Event.spec,1.12,1.13 Message-ID: <20090726055207.05F3011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Event/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3372 Modified Files: perl-Event.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Event.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Event/devel/perl-Event.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Event.spec 26 Feb 2009 15:47:20 -0000 1.12 +++ perl-Event.spec 26 Jul 2009 05:52:06 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Event Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Event loop processing Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:52:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:52:20 +0000 (UTC) Subject: rpms/perl-Event-ExecFlow/devel perl-Event-ExecFlow.spec,1.3,1.4 Message-ID: <20090726055220.C66AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Event-ExecFlow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3503 Modified Files: perl-Event-ExecFlow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Event-ExecFlow.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Event-ExecFlow/devel/perl-Event-ExecFlow.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Event-ExecFlow.spec 26 Feb 2009 15:48:28 -0000 1.3 +++ perl-Event-ExecFlow.spec 26 Jul 2009 05:52:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Event-ExecFlow Version: 0.63 -Release: 5%{?dist} +Release: 6%{?dist} Summary: High level API for event-based execution flow control Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.63-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.63-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:52:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:52:35 +0000 (UTC) Subject: rpms/perl-Event-Lib/devel perl-Event-Lib.spec,1.5,1.6 Message-ID: <20090726055235.011F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Event-Lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3646 Modified Files: perl-Event-Lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Event-Lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Event-Lib/devel/perl-Event-Lib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Event-Lib.spec 26 Feb 2009 15:49:30 -0000 1.5 +++ perl-Event-Lib.spec 26 Jul 2009 05:52:34 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Event-Lib Version: 1.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl wrapper around libevent Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:52:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:52:48 +0000 (UTC) Subject: rpms/perl-Event-RPC/devel perl-Event-RPC.spec,1.4,1.5 Message-ID: <20090726055248.A8BDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Event-RPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3779 Modified Files: perl-Event-RPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Event-RPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Event-RPC/devel/perl-Event-RPC.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Event-RPC.spec 26 Feb 2009 15:50:35 -0000 1.4 +++ perl-Event-RPC.spec 26 Jul 2009 05:52:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Event-RPC Version: 1.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Event based transparent Client/Server RPC framework Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:53:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:53:05 +0000 (UTC) Subject: rpms/perl-Exception-Base/devel perl-Exception-Base.spec,1.2,1.3 Message-ID: <20090726055305.CE0C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Exception-Base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3951 Modified Files: perl-Exception-Base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Exception-Base.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Base/devel/perl-Exception-Base.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Exception-Base.spec 26 Feb 2009 15:51:39 -0000 1.2 +++ perl-Exception-Base.spec 26 Jul 2009 05:53:05 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Exception-Base Version: 0.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightweight exceptions License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:53:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:53:20 +0000 (UTC) Subject: rpms/perl-Exception-Class/devel perl-Exception-Class.spec, 1.14, 1.15 Message-ID: <20090726055320.3811511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Exception-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4072 Modified Files: perl-Exception-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Exception-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Class/devel/perl-Exception-Class.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Exception-Class.spec 26 Feb 2009 15:52:36 -0000 1.14 +++ perl-Exception-Class.spec 26 Jul 2009 05:53:19 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Exception-Class Version: 1.26 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Module that allows you to declare real exception classes in Perl License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:53:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:53:34 +0000 (UTC) Subject: rpms/perl-Exception-Class-TryCatch/devel perl-Exception-Class-TryCatch.spec, 1.1, 1.2 Message-ID: <20090726055334.6FF8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Exception-Class-TryCatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4207 Modified Files: perl-Exception-Class-TryCatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Exception-Class-TryCatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exception-Class-TryCatch/devel/perl-Exception-Class-TryCatch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Exception-Class-TryCatch.spec 12 Jun 2009 07:29:43 -0000 1.1 +++ perl-Exception-Class-TryCatch.spec 26 Jul 2009 05:53:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Exception-Class-TryCatch Version: 1.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Syntactic try/catch sugar for use with Exception::Class License: ASL 2.0 Group: Development/Libraries @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.12-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 05:53:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:53:48 +0000 (UTC) Subject: rpms/perl-Expect/devel perl-Expect.spec,1.9,1.10 Message-ID: <20090726055348.78C4F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Expect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4373 Modified Files: perl-Expect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Expect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Expect/devel/perl-Expect.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Expect.spec 26 Feb 2009 15:53:32 -0000 1.9 +++ perl-Expect.spec 26 Jul 2009 05:53:48 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Expect Version: 1.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Expect for Perl Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:54:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:54:02 +0000 (UTC) Subject: rpms/perl-Expect-Simple/devel perl-Expect-Simple.spec,1.5,1.6 Message-ID: <20090726055402.D704311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Expect-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4521 Modified Files: perl-Expect-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Expect-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Expect-Simple/devel/perl-Expect-Simple.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Expect-Simple.spec 26 Feb 2009 15:54:31 -0000 1.5 +++ perl-Expect-Simple.spec 26 Jul 2009 05:54:02 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Expect-Simple Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Wrapper around the Expect module Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:54:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:54:16 +0000 (UTC) Subject: rpms/perl-Exporter-Lite/devel perl-Exporter-Lite.spec,1.6,1.7 Message-ID: <20090726055416.2428F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Exporter-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4684 Modified Files: perl-Exporter-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Exporter-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Exporter-Lite/devel/perl-Exporter-Lite.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Exporter-Lite.spec 26 Feb 2009 15:55:25 -0000 1.6 +++ perl-Exporter-Lite.spec 26 Jul 2009 05:54:15 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Exporter-Lite Version: 0.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lightweight exporting of variables Group: Development/Libraries License: GPL+ or Artistic @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:54:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:54:31 +0000 (UTC) Subject: rpms/perl-ExtUtils-AutoInstall/devel perl-ExtUtils-AutoInstall.spec, 1.9, 1.10 Message-ID: <20090726055431.C49A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-AutoInstall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4871 Modified Files: perl-ExtUtils-AutoInstall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-AutoInstall.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-AutoInstall/devel/perl-ExtUtils-AutoInstall.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-ExtUtils-AutoInstall.spec 26 Feb 2009 15:56:19 -0000 1.9 +++ perl-ExtUtils-AutoInstall.spec 26 Jul 2009 05:54:31 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-AutoInstall Version: 0.63 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Automatic install of dependencies via CPAN License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.63-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.63-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:54:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:54:48 +0000 (UTC) Subject: rpms/perl-ExtUtils-Depends/devel perl-ExtUtils-Depends.spec, 1.15, 1.16 Message-ID: <20090726055448.B46D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-Depends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5022 Modified Files: perl-ExtUtils-Depends.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-Depends.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-Depends/devel/perl-ExtUtils-Depends.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-ExtUtils-Depends.spec 26 Feb 2009 15:57:12 -0000 1.15 +++ perl-ExtUtils-Depends.spec 26 Jul 2009 05:54:48 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-Depends Version: 0.301 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easily build XS extensions that depend on XS extensions License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.301-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.301-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:55:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:55:06 +0000 (UTC) Subject: rpms/perl-ExtUtils-F77/devel perl-ExtUtils-F77.spec,1.3,1.4 Message-ID: <20090726055506.3056B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-F77/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5175 Modified Files: perl-ExtUtils-F77.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-F77.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-F77/devel/perl-ExtUtils-F77.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-ExtUtils-F77.spec 26 Feb 2009 15:58:09 -0000 1.3 +++ perl-ExtUtils-F77.spec 26 Jul 2009 05:55:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-F77 Version: 1.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple interface to F77 libs License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.16-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:55:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:55:23 +0000 (UTC) Subject: rpms/perl-ExtUtils-InferConfig/devel perl-ExtUtils-InferConfig.spec, 1.1, 1.2 Message-ID: <20090726055523.706A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-InferConfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5314 Modified Files: perl-ExtUtils-InferConfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-InferConfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-InferConfig/devel/perl-ExtUtils-InferConfig.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-ExtUtils-InferConfig.spec 4 May 2009 08:09:02 -0000 1.1 +++ perl-ExtUtils-InferConfig.spec 26 Jul 2009 05:55:23 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-InferConfig Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Infer Perl Configuration for non-running interpreters License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Marcela Ma?l??ov? 1.03-2 - add BR From jkeating at fedoraproject.org Sun Jul 26 05:55:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:55:37 +0000 (UTC) Subject: rpms/perl-ExtUtils-InstallPAR/devel perl-ExtUtils-InstallPAR.spec, 1.1, 1.2 Message-ID: <20090726055537.6ABA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-InstallPAR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5468 Modified Files: perl-ExtUtils-InstallPAR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-InstallPAR.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-InstallPAR/devel/perl-ExtUtils-InstallPAR.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-ExtUtils-InstallPAR.spec 4 May 2009 07:53:28 -0000 1.1 +++ perl-ExtUtils-InstallPAR.spec 26 Jul 2009 05:55:37 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-InstallPAR Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Install .par's into any installed perl License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Marcela Ma?l??ov? 0.03-2 - add BR From jkeating at fedoraproject.org Sun Jul 26 05:55:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:55:54 +0000 (UTC) Subject: rpms/perl-ExtUtils-MakeMaker-Coverage/devel perl-ExtUtils-MakeMaker-Coverage.spec, 1.5, 1.6 Message-ID: <20090726055554.7B03F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-MakeMaker-Coverage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5601 Modified Files: perl-ExtUtils-MakeMaker-Coverage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-MakeMaker-Coverage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-MakeMaker-Coverage/devel/perl-ExtUtils-MakeMaker-Coverage.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-ExtUtils-MakeMaker-Coverage.spec 18 Mar 2009 07:26:29 -0000 1.5 +++ perl-ExtUtils-MakeMaker-Coverage.spec 26 Jul 2009 05:55:54 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-MakeMaker-Coverage Version: 0.05 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Allows perl modules to check test coverage with Devel::Cover Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/testcover %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Ralf Cors?pius - 0.05-6 - Add R: perl(Object::Accessor), perl(Devel::Cover) (BZ 490743). From jkeating at fedoraproject.org Sun Jul 26 05:56:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:56:10 +0000 (UTC) Subject: rpms/perl-ExtUtils-PkgConfig/devel perl-ExtUtils-PkgConfig.spec, 1.17, 1.18 Message-ID: <20090726055610.8DEB211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-PkgConfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5765 Modified Files: perl-ExtUtils-PkgConfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-PkgConfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-PkgConfig/devel/perl-ExtUtils-PkgConfig.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-ExtUtils-PkgConfig.spec 26 Feb 2009 16:00:05 -0000 1.17 +++ perl-ExtUtils-PkgConfig.spec 26 Jul 2009 05:56:10 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-PkgConfig Version: 1.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simplistic interface to pkg-config Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:56:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:56:27 +0000 (UTC) Subject: rpms/perl-ExtUtils-XSBuilder/devel perl-ExtUtils-XSBuilder.spec, 1.8, 1.9 Message-ID: <20090726055627.0B78811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ExtUtils-XSBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5926 Modified Files: perl-ExtUtils-XSBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ExtUtils-XSBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ExtUtils-XSBuilder/devel/perl-ExtUtils-XSBuilder.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-ExtUtils-XSBuilder.spec 26 Feb 2009 16:01:09 -0000 1.8 +++ perl-ExtUtils-XSBuilder.spec 26 Jul 2009 05:56:26 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-ExtUtils-XSBuilder Version: 0.28 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Modules that parse C header files and create XS glue code Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.28-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.28-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:56:45 +0000 (UTC) Subject: rpms/perl-FCGI-ProcManager/devel perl-FCGI-ProcManager.spec, 1.2, 1.3 Message-ID: <20090726055645.2D04F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-FCGI-ProcManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6094 Modified Files: perl-FCGI-ProcManager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-FCGI-ProcManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-FCGI-ProcManager/devel/perl-FCGI-ProcManager.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-FCGI-ProcManager.spec 26 Feb 2009 16:02:03 -0000 1.2 +++ perl-FCGI-ProcManager.spec 26 Jul 2009 05:56:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-FCGI-ProcManager Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} # ProcManager.pm -> LGPLv2, LGPLv3 License: LGPLv2+ Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:57:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:57:02 +0000 (UTC) Subject: rpms/perl-Fedora-Bugzilla/devel perl-Fedora-Bugzilla.spec,1.4,1.5 Message-ID: <20090726055702.4DE2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Fedora-Bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6243 Modified Files: perl-Fedora-Bugzilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Fedora-Bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Fedora-Bugzilla/devel/perl-Fedora-Bugzilla.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Fedora-Bugzilla.spec 26 Apr 2009 05:42:57 -0000 1.4 +++ perl-Fedora-Bugzilla.spec 26 Jul 2009 05:57:01 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Fedora-Bugzilla Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Access Fedora's Bugzilla Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Chris Weyl 0.10-1 - update to 0.10 - alter source0 to point to the CPAN From jkeating at fedoraproject.org Sun Jul 26 05:57:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:57:18 +0000 (UTC) Subject: rpms/perl-Feed-Find/devel perl-Feed-Find.spec,1.4,1.5 Message-ID: <20090726055718.C62FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Feed-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6419 Modified Files: perl-Feed-Find.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Feed-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Feed-Find/devel/perl-Feed-Find.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Feed-Find.spec 26 Feb 2009 16:03:03 -0000 1.4 +++ perl-Feed-Find.spec 26 Jul 2009 05:57:18 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Feed-Find Version: 0.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Syndication feed auto-discovery Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:57:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:57:33 +0000 (UTC) Subject: rpms/perl-File-BOM/devel perl-File-BOM.spec,1.7,1.8 Message-ID: <20090726055733.A94FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-BOM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6576 Modified Files: perl-File-BOM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-BOM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-BOM/devel/perl-File-BOM.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-File-BOM.spec 26 Feb 2009 16:03:57 -0000 1.7 +++ perl-File-BOM.spec 26 Jul 2009 05:57:33 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-File-BOM Version: 0.14 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Utilities for handling Byte Order Marks License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:57:49 +0000 (UTC) Subject: rpms/perl-File-BaseDir/devel perl-File-BaseDir.spec,1.6,1.7 Message-ID: <20090726055749.90A8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-BaseDir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6723 Modified Files: perl-File-BaseDir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-BaseDir.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-BaseDir/devel/perl-File-BaseDir.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-BaseDir.spec 26 Feb 2009 16:04:56 -0000 1.6 +++ perl-File-BaseDir.spec 26 Jul 2009 05:57:49 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-BaseDir Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Use the freedesktop basedir spec License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:58:04 +0000 (UTC) Subject: rpms/perl-File-ChangeNotify/devel perl-File-ChangeNotify.spec, 1.1, 1.2 Message-ID: <20090726055804.BEEBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-ChangeNotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6868 Modified Files: perl-File-ChangeNotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-ChangeNotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-ChangeNotify/devel/perl-File-ChangeNotify.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-File-ChangeNotify.spec 10 Jun 2009 04:53:44 -0000 1.1 +++ perl-File-ChangeNotify.spec 26 Jul 2009 05:58:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-File-ChangeNotify Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} # lib/File/ChangeNotify.pm -> GPL+ or Artistic # lib/File/ChangeNotify/Event.pm -> GPL+ or Artistic # lib/File/ChangeNotify/Watcher.pm -> GPL+ or Artistic @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.06-1 - submission From jkeating at fedoraproject.org Sun Jul 26 05:58:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:58:20 +0000 (UTC) Subject: rpms/perl-File-Comments/devel perl-File-Comments.spec,1.2,1.3 Message-ID: <20090726055820.01BC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Comments/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7006 Modified Files: perl-File-Comments.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Comments.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Comments/devel/perl-File-Comments.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-File-Comments.spec 26 Feb 2009 16:05:49 -0000 1.2 +++ perl-File-Comments.spec 26 Jul 2009 05:58:19 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Recognizes file formats and extracts format-specific comments Name: perl-File-Comments Version: 0.07 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/File-Comments/ @@ -75,6 +75,9 @@ JavaScript, Python and PHP. %{_mandir}/man3/File::Comments::Plugin::Shell.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:58:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:58:35 +0000 (UTC) Subject: rpms/perl-File-Copy-Recursive/devel perl-File-Copy-Recursive.spec, 1.14, 1.15 Message-ID: <20090726055835.E9E6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Copy-Recursive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7177 Modified Files: perl-File-Copy-Recursive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Copy-Recursive.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Copy-Recursive/devel/perl-File-Copy-Recursive.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-File-Copy-Recursive.spec 26 Feb 2009 16:06:43 -0000 1.14 +++ perl-File-Copy-Recursive.spec 26 Jul 2009 05:58:35 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-File-Copy-Recursive Version: 0.38 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extension for recursively copying files and directories License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.38-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:58:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:58:51 +0000 (UTC) Subject: rpms/perl-File-DesktopEntry/devel perl-File-DesktopEntry.spec, 1.10, 1.11 Message-ID: <20090726055851.2CFAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-DesktopEntry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7311 Modified Files: perl-File-DesktopEntry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-DesktopEntry.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-DesktopEntry/devel/perl-File-DesktopEntry.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-File-DesktopEntry.spec 26 Feb 2009 16:07:43 -0000 1.10 +++ perl-File-DesktopEntry.spec 26 Jul 2009 05:58:50 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-File-DesktopEntry Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Object to handle .desktop files License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:59:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:59:07 +0000 (UTC) Subject: rpms/perl-File-ExtAttr/devel perl-File-ExtAttr.spec,1.9,1.10 Message-ID: <20090726055907.215FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-ExtAttr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7458 Modified Files: perl-File-ExtAttr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-ExtAttr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-ExtAttr/devel/perl-File-ExtAttr.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-File-ExtAttr.spec 2 Apr 2009 07:31:05 -0000 1.9 +++ perl-File-ExtAttr.spec 26 Jul 2009 05:59:06 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-File-ExtAttr Version: 1.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for accessing extended attributes of files License: GPL+ or Artistic Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 1.09-1 - update to 1.09 From jkeating at fedoraproject.org Sun Jul 26 05:59:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:59:20 +0000 (UTC) Subject: rpms/perl-File-Find-Rule/devel perl-File-Find-Rule.spec,1.11,1.12 Message-ID: <20090726055920.8E8DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Find-Rule/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7592 Modified Files: perl-File-Find-Rule.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Find-Rule.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule/devel/perl-File-Find-Rule.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-File-Find-Rule.spec 26 Feb 2009 16:09:42 -0000 1.11 +++ perl-File-Find-Rule.spec 26 Jul 2009 05:59:20 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-File-Find-Rule Version: 0.30 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl module implementing an alternative interface to File::Find License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.30-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:59:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:59:34 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-PPI/devel perl-File-Find-Rule-PPI.spec, 1.6, 1.7 Message-ID: <20090726055934.E60BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Find-Rule-PPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7747 Modified Files: perl-File-Find-Rule-PPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Find-Rule-PPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-PPI/devel/perl-File-Find-Rule-PPI.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-Find-Rule-PPI.spec 26 Feb 2009 16:10:40 -0000 1.6 +++ perl-File-Find-Rule-PPI.spec 26 Jul 2009 05:59:34 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-Find-Rule-PPI Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Add support for PPI queries to File::Find::Rule Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 05:59:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 05:59:48 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-Perl/devel perl-File-Find-Rule-Perl.spec, 1.9, 1.10 Message-ID: <20090726055948.B680111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7894 Modified Files: perl-File-Find-Rule-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Find-Rule-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-Perl/devel/perl-File-Find-Rule-Perl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-File-Find-Rule-Perl.spec 20 Jul 2009 16:43:19 -0000 1.9 +++ perl-File-Find-Rule-Perl.spec 26 Jul 2009 05:59:48 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-File-Find-Rule-Perl Version: 1.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common rules for searching for Perl things License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ cd .. %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius - 1.08-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 06:00:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:00:01 +0000 (UTC) Subject: rpms/perl-File-Find-Rule-VCS/devel perl-File-Find-Rule-VCS.spec, 1.3, 1.4 Message-ID: <20090726060001.DF18611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Find-Rule-VCS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8037 Modified Files: perl-File-Find-Rule-VCS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Find-Rule-VCS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Find-Rule-VCS/devel/perl-File-Find-Rule-VCS.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-File-Find-Rule-VCS.spec 26 Feb 2009 16:12:36 -0000 1.3 +++ perl-File-Find-Rule-VCS.spec 26 Jul 2009 06:00:01 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-File-Find-Rule-VCS Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Exclude files/directories for Version Control Systems License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:00:22 +0000 (UTC) Subject: rpms/perl-File-Flat/devel perl-File-Flat.spec,1.13,1.14 Message-ID: <20090726060022.A3FAA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Flat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8263 Modified Files: perl-File-Flat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Flat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Flat/devel/perl-File-Flat.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-File-Flat.spec 26 Feb 2009 16:13:29 -0000 1.13 +++ perl-File-Flat.spec 26 Jul 2009 06:00:22 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-File-Flat Version: 1.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Implements a flat filesystem License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:00:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:00:36 +0000 (UTC) Subject: rpms/perl-File-Flock/devel perl-File-Flock.spec,1.1,1.2 Message-ID: <20090726060036.B812A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Flock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8456 Modified Files: perl-File-Flock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Flock.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Flock/devel/perl-File-Flock.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-File-Flock.spec 7 May 2009 05:36:28 -0000 1.1 +++ perl-File-Flock.spec 26 Jul 2009 06:00:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-File-Flock Version: 2008.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File locking with flock License: GPL+ or Artistic Group: Development/Libraries @@ -46,5 +46,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2008.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 29 2008 Emmanuel Seyman 2008.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:00:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:00:50 +0000 (UTC) Subject: rpms/perl-File-HomeDir/devel perl-File-HomeDir.spec,1.15,1.16 Message-ID: <20090726060050.CF54611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-HomeDir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8605 Modified Files: perl-File-HomeDir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-HomeDir.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-HomeDir/devel/perl-File-HomeDir.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-File-HomeDir.spec 1 Jun 2009 14:05:55 -0000 1.15 +++ perl-File-HomeDir.spec 26 Jul 2009 06:00:50 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-File-HomeDir Version: 0.86 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Get the home directory for yourself or other users Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.86-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Marcela Ma?l??ov? - 0.86-1 - update for Padre From jkeating at fedoraproject.org Sun Jul 26 06:01:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:01:04 +0000 (UTC) Subject: rpms/perl-File-LibMagic/devel perl-File-LibMagic.spec,1.4,1.5 Message-ID: <20090726060104.D6B1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-LibMagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8797 Modified Files: perl-File-LibMagic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-LibMagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-LibMagic/devel/perl-File-LibMagic.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-File-LibMagic.spec 22 Mar 2009 18:15:22 -0000 1.4 +++ perl-File-LibMagic.spec 26 Jul 2009 06:01:04 -0000 1.5 @@ -2,7 +2,7 @@ Name: perl-%{module} Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perlwrapper for libmagic License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Robert Scheck 0.91-1 - Upgrade to 0.91 and some spec file cleanup From jkeating at fedoraproject.org Sun Jul 26 06:01:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:01:19 +0000 (UTC) Subject: rpms/perl-File-MMagic/devel perl-File-MMagic.spec,1.20,1.21 Message-ID: <20090726060119.722FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-MMagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8931 Modified Files: perl-File-MMagic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-MMagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-MMagic/devel/perl-File-MMagic.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-File-MMagic.spec 26 Feb 2009 16:16:10 -0000 1.20 +++ perl-File-MMagic.spec 26 Jul 2009 06:01:19 -0000 1.21 @@ -1,6 +1,6 @@ Name: perl-File-MMagic Version: 1.27 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Perl module emulating the file(1) command Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.27-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.27-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:01:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:01:33 +0000 (UTC) Subject: rpms/perl-File-MMagic-XS/devel perl-File-MMagic-XS.spec,1.9,1.10 Message-ID: <20090726060133.AF75911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-MMagic-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9086 Modified Files: perl-File-MMagic-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-MMagic-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-MMagic-XS/devel/perl-File-MMagic-XS.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-File-MMagic-XS.spec 26 Feb 2009 16:17:03 -0000 1.9 +++ perl-File-MMagic-XS.spec 26 Jul 2009 06:01:33 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-File-MMagic-XS Version: 0.09003 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Guess file type with XS Group: Development/Libraries License: ASL 2.0 and (GPL+ or Artistic) @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09003-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09003-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:01:47 +0000 (UTC) Subject: rpms/perl-File-MimeInfo/devel perl-File-MimeInfo.spec,1.7,1.8 Message-ID: <20090726060147.B12C111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-MimeInfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9220 Modified Files: perl-File-MimeInfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-MimeInfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-MimeInfo/devel/perl-File-MimeInfo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-File-MimeInfo.spec 26 Feb 2009 16:17:58 -0000 1.7 +++ perl-File-MimeInfo.spec 26 Jul 2009 06:01:47 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-File-MimeInfo Version: 0.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Determine file type and open application License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:02:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:02:01 +0000 (UTC) Subject: rpms/perl-File-Modified/devel perl-File-Modified.spec,1.4,1.5 Message-ID: <20090726060201.53CDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Modified/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9364 Modified Files: perl-File-Modified.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Modified.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Modified/devel/perl-File-Modified.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-File-Modified.spec 26 Feb 2009 16:18:52 -0000 1.4 +++ perl-File-Modified.spec 26 Jul 2009 06:02:01 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-File-Modified Version: 0.07 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Checks intelligently if files have changed License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:02:15 +0000 (UTC) Subject: rpms/perl-File-NCopy/devel perl-File-NCopy.spec,1.12,1.13 Message-ID: <20090726060215.53A0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-NCopy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9520 Modified Files: perl-File-NCopy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-NCopy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-NCopy/devel/perl-File-NCopy.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-File-NCopy.spec 26 Feb 2009 16:19:49 -0000 1.12 +++ perl-File-NCopy.spec 26 Jul 2009 06:02:15 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-File-NCopy Version: 0.36 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Copy files to directories, or a single file to another file License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.36-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.36-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:02:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:02:29 +0000 (UTC) Subject: rpms/perl-File-NFSLock/devel perl-File-NFSLock.spec,1.5,1.6 Message-ID: <20090726060229.72E1A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-NFSLock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9661 Modified Files: perl-File-NFSLock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-NFSLock.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-NFSLock/devel/perl-File-NFSLock.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-File-NFSLock.spec 26 Feb 2009 16:20:47 -0000 1.5 +++ perl-File-NFSLock.spec 26 Jul 2009 06:02:29 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-File-NFSLock Version: 1.20 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module to do NFS (or not) locking Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:02:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:02:43 +0000 (UTC) Subject: rpms/perl-File-Next/devel perl-File-Next.spec,1.6,1.7 Message-ID: <20090726060243.317AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Next/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9815 Modified Files: perl-File-Next.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Next.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Next/devel/perl-File-Next.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-Next.spec 26 Feb 2009 16:21:42 -0000 1.6 +++ perl-File-Next.spec 26 Jul 2009 06:02:43 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-Next Version: 1.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: File::Next Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:02:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:02:56 +0000 (UTC) Subject: rpms/perl-File-Pid/devel perl-File-Pid.spec,1.1,1.2 Message-ID: <20090726060256.8585B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Pid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9935 Modified Files: perl-File-Pid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Pid.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Pid/devel/perl-File-Pid.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-File-Pid.spec 14 Apr 2009 14:25:26 -0000 1.1 +++ perl-File-Pid.spec 26 Jul 2009 06:02:56 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-File-Pid Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pid File Manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Iain Arnell 1.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:03:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:03:10 +0000 (UTC) Subject: rpms/perl-File-ReadBackwards/devel perl-File-ReadBackwards.spec, 1.6, 1.7 Message-ID: <20090726060310.50AD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-ReadBackwards/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10112 Modified Files: perl-File-ReadBackwards.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-ReadBackwards.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-ReadBackwards/devel/perl-File-ReadBackwards.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-ReadBackwards.spec 26 Feb 2009 16:22:42 -0000 1.6 +++ perl-File-ReadBackwards.spec 26 Jul 2009 06:03:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-ReadBackwards Version: 1.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: File::ReadBackwards Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:03:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:03:24 +0000 (UTC) Subject: rpms/perl-File-Remove/devel perl-File-Remove.spec,1.26,1.27 Message-ID: <20090726060324.9ED9111C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Remove/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10280 Modified Files: perl-File-Remove.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Remove.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Remove/devel/perl-File-Remove.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- perl-File-Remove.spec 26 Feb 2009 16:23:40 -0000 1.26 +++ perl-File-Remove.spec 26 Jul 2009 06:03:24 -0000 1.27 @@ -1,6 +1,6 @@ Name: perl-File-Remove Version: 1.42 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convenience module for removing files and directories License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.42-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:03:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:03:38 +0000 (UTC) Subject: rpms/perl-File-RsyncP/devel perl-File-RsyncP.spec,1.8,1.9 Message-ID: <20090726060338.CD32E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-RsyncP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10446 Modified Files: perl-File-RsyncP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-RsyncP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-RsyncP/devel/perl-File-RsyncP.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-File-RsyncP.spec 26 Feb 2009 16:24:33 -0000 1.8 +++ perl-File-RsyncP.spec 26 Jul 2009 06:03:38 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-File-RsyncP Version: 0.68 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A perl implementation of an Rsync client License: GPLv2 Group: Development/Libraries @@ -51,6 +51,9 @@ make test %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.68-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.68-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:03:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:03:53 +0000 (UTC) Subject: rpms/perl-File-ShareDir/devel perl-File-ShareDir.spec,1.2,1.3 Message-ID: <20090726060353.D3FA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-ShareDir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10582 Modified Files: perl-File-ShareDir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-ShareDir.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-ShareDir/devel/perl-File-ShareDir.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-File-ShareDir.spec 26 Feb 2009 16:25:26 -0000 1.2 +++ perl-File-ShareDir.spec 26 Jul 2009 06:03:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-File-ShareDir Version: 1.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Locate per-dist and per-module shared files License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:04:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:04:08 +0000 (UTC) Subject: rpms/perl-File-ShareDir-PAR/devel perl-File-ShareDir-PAR.spec, 1.4, 1.5 Message-ID: <20090726060408.A14F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-ShareDir-PAR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10771 Modified Files: perl-File-ShareDir-PAR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-ShareDir-PAR.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-ShareDir-PAR/devel/perl-File-ShareDir-PAR.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-File-ShareDir-PAR.spec 3 Jun 2009 12:13:59 -0000 1.4 +++ perl-File-ShareDir-PAR.spec 26 Jul 2009 06:04:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-File-ShareDir-PAR Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: File::ShareDir with PAR support License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Marcela Ma?l??ov? - 0.05-1 - update to the latest upstream From jkeating at fedoraproject.org Sun Jul 26 06:04:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:04:24 +0000 (UTC) Subject: rpms/perl-File-Slurp/devel perl-File-Slurp.spec,1.13,1.14 Message-ID: <20090726060424.B341111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Slurp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10932 Modified Files: perl-File-Slurp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Slurp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Slurp/devel/perl-File-Slurp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-File-Slurp.spec 26 Feb 2009 16:27:22 -0000 1.13 +++ perl-File-Slurp.spec 26 Jul 2009 06:04:24 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-File-Slurp Version: 9999.13 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Efficient Reading/Writing of Complete Files License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 9999.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 9999.13-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:04:39 +0000 (UTC) Subject: rpms/perl-File-Sync/devel perl-File-Sync.spec,1.6,1.7 Message-ID: <20090726060439.8905411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Sync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11127 Modified Files: perl-File-Sync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Sync.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Sync/devel/perl-File-Sync.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-Sync.spec 26 Feb 2009 16:28:19 -0000 1.6 +++ perl-File-Sync.spec 26 Jul 2009 06:04:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-Sync Version: 0.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl access to fsync() and sync() function calls License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:04:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:04:55 +0000 (UTC) Subject: rpms/perl-File-Tail/devel perl-File-Tail.spec,1.14,1.15 Message-ID: <20090726060455.A2D3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Tail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11278 Modified Files: perl-File-Tail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Tail.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Tail/devel/perl-File-Tail.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-File-Tail.spec 26 Feb 2009 16:29:20 -0000 1.14 +++ perl-File-Tail.spec 26 Jul 2009 06:04:55 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-File-Tail Version: 0.99.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl extension for reading from continously updated files Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.99.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:05:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:05:10 +0000 (UTC) Subject: rpms/perl-File-Type/devel perl-File-Type.spec,1.6,1.7 Message-ID: <20090726060510.470AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Type/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11448 Modified Files: perl-File-Type.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Type.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Type/devel/perl-File-Type.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-File-Type.spec 26 Feb 2009 16:30:13 -0000 1.6 +++ perl-File-Type.spec 26 Jul 2009 06:05:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-File-Type Version: 0.22 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Determine file type using magic License: GPL+ or Artistic Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mtasaka at fedoraproject.org Sun Jul 26 06:05:14 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 26 Jul 2009 06:05:14 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.378, 1.379 jd.spec, 1.441, 1.442 sources, 1.379, 1.380 jd-2.1.0-issue-jd6-868.patch, 1.1, NONE jd-rev2982-windres.patch, 1.1, NONE Message-ID: <20090726060514.D9ED411C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11484 Modified Files: .cvsignore jd.spec sources Removed Files: jd-2.1.0-issue-jd6-868.patch jd-rev2982-windres.patch Log Message: Remove patches Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.378 retrieving revision 1.379 diff -u -p -r1.378 -r1.379 --- .cvsignore 25 Jul 2009 17:35:04 -0000 1.378 +++ .cvsignore 26 Jul 2009 06:05:14 -0000 1.379 @@ -1 +1 @@ -jd-2.4.2-svn2981_trunk.tgz +jd-2.4.2-svn2985_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.441 retrieving revision 1.442 diff -u -p -r1.441 -r1.442 --- jd.spec 25 Jul 2009 19:01:26 -0000 1.441 +++ jd.spec 26 Jul 2009 06:05:14 -0000 1.442 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2981_trunk +%define strtag svn2985_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -51,7 +51,6 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz -Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -78,7 +77,6 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf -%patch0 -p0 sh autogen.sh @@ -138,7 +136,7 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog * Sun Jul 26 2009 Mamoru Tasaka -- rev 2981 +- rev 2985 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.379 retrieving revision 1.380 diff -u -p -r1.379 -r1.380 --- sources 25 Jul 2009 17:35:04 -0000 1.379 +++ sources 26 Jul 2009 06:05:14 -0000 1.380 @@ -1 +1 @@ -5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz +3a4109b85f32f825314c926822898a26 jd-2.4.2-svn2985_trunk.tgz --- jd-2.1.0-issue-jd6-868.patch DELETED --- --- jd-rev2982-windres.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 06:05:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:05:25 +0000 (UTC) Subject: rpms/perl-File-Which/devel perl-File-Which.spec,1.7,1.8 Message-ID: <20090726060525.C57E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-Which/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11661 Modified Files: perl-File-Which.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-Which.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-Which/devel/perl-File-Which.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-File-Which.spec 26 Feb 2009 16:31:10 -0000 1.7 +++ perl-File-Which.spec 26 Jul 2009 06:05:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-File-Which Version: 0.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Portable implementation of the 'which' utility Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:05:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:05:40 +0000 (UTC) Subject: rpms/perl-File-chdir/devel perl-File-chdir.spec,1.5,1.6 Message-ID: <20090726060540.79ACB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-chdir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11823 Modified Files: perl-File-chdir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-chdir.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-chdir/devel/perl-File-chdir.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-File-chdir.spec 26 Feb 2009 16:32:03 -0000 1.5 +++ perl-File-chdir.spec 26 Jul 2009 06:05:40 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-File-chdir Version: 0.09 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A more sensible way to change directories License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:05:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:05:54 +0000 (UTC) Subject: rpms/perl-File-chmod/devel perl-File-chmod.spec,1.4,1.5 Message-ID: <20090726060554.C560111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-chmod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11970 Modified Files: perl-File-chmod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-chmod.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-chmod/devel/perl-File-chmod.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-File-chmod.spec 26 Feb 2009 16:32:26 -0000 1.4 +++ perl-File-chmod.spec 26 Jul 2009 06:05:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-File-chmod Version: 0.32 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Implements symbolic and ls chmod modes Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.32-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.32-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:06:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:06:08 +0000 (UTC) Subject: rpms/perl-File-pushd/devel perl-File-pushd.spec,1.2,1.3 Message-ID: <20090726060608.779C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-File-pushd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12135 Modified Files: perl-File-pushd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-File-pushd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-File-pushd/devel/perl-File-pushd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-File-pushd.spec 26 Feb 2009 16:33:23 -0000 1.2 +++ perl-File-pushd.spec 26 Jul 2009 06:06:08 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-File-pushd Version: 1.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Change directory temporarily for a limited scope License: ASL 2.0 Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:06:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:06:22 +0000 (UTC) Subject: rpms/perl-FileHandle-Fmode/devel perl-FileHandle-Fmode.spec, 1.4, 1.5 Message-ID: <20090726060622.81EF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-FileHandle-Fmode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12284 Modified Files: perl-FileHandle-Fmode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-FileHandle-Fmode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-FileHandle-Fmode/devel/perl-FileHandle-Fmode.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-FileHandle-Fmode.spec 26 Feb 2009 16:34:19 -0000 1.4 +++ perl-FileHandle-Fmode.spec 26 Jul 2009 06:06:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-FileHandle-Fmode Version: 0.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: FileHandle::Fmode Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:06:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:06:36 +0000 (UTC) Subject: rpms/perl-FileHandle-Unget/devel perl-FileHandle-Unget.spec, 1.9, 1.10 Message-ID: <20090726060636.BA09311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-FileHandle-Unget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12458 Modified Files: perl-FileHandle-Unget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-FileHandle-Unget.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-FileHandle-Unget/devel/perl-FileHandle-Unget.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-FileHandle-Unget.spec 26 Feb 2009 16:35:13 -0000 1.9 +++ perl-FileHandle-Unget.spec 26 Jul 2009 06:06:36 -0000 1.10 @@ -7,7 +7,7 @@ Summary: A FileHandle that supports ungetting of multiple bytes Name: perl-FileHandle-Unget Version: 0.1622 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ Group: Development/Libraries Url: http://search.cpan.org/dist/FileHandle-Unget/ @@ -51,6 +51,9 @@ string of bytes back on the input. %{_mandir}/man3/FileHandle::Unget.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1622-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1622-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:06:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:06:51 +0000 (UTC) Subject: rpms/perl-Filesys-Df/devel perl-Filesys-Df.spec,1.3,1.4 Message-ID: <20090726060651.C7B2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Filesys-Df/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12614 Modified Files: perl-Filesys-Df.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Filesys-Df.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Filesys-Df/devel/perl-Filesys-Df.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Filesys-Df.spec 26 Feb 2009 16:36:05 -0000 1.3 +++ perl-Filesys-Df.spec 26 Jul 2009 06:06:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Filesys-Df Version: 0.92 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl extension for filesystem disk space information License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.92-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.92-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:07:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:07:07 +0000 (UTC) Subject: rpms/perl-Finance-Quote/devel perl-Finance-Quote.spec,1.8,1.9 Message-ID: <20090726060707.72A4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Finance-Quote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12788 Modified Files: perl-Finance-Quote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Finance-Quote.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Finance-Quote/devel/perl-Finance-Quote.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Finance-Quote.spec 26 Feb 2009 16:37:05 -0000 1.8 +++ perl-Finance-Quote.spec 26 Jul 2009 06:07:07 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Finance-Quote Version: 1.13 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Perl module that retrieves stock and mutual fund quotes Group: Development/Libraries License: GPLv2+ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:07:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:07:22 +0000 (UTC) Subject: rpms/perl-Finance-YahooQuote/devel perl-Finance-YahooQuote.spec, 1.5, 1.6 Message-ID: <20090726060722.C64BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Finance-YahooQuote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12934 Modified Files: perl-Finance-YahooQuote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Finance-YahooQuote.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Finance-YahooQuote/devel/perl-Finance-YahooQuote.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Finance-YahooQuote.spec 13 Apr 2009 16:11:37 -0000 1.5 +++ perl-Finance-YahooQuote.spec 26 Jul 2009 06:07:22 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Finance-YahooQuote Version: 0.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl interface to get stock quotes from Yahoo! Finance Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Warren Togami - 0.22-1 - 0.22 From jkeating at fedoraproject.org Sun Jul 26 06:07:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:07:39 +0000 (UTC) Subject: rpms/perl-Font-AFM/devel perl-Font-AFM.spec,1.10,1.11 Message-ID: <20090726060739.433B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Font-AFM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13125 Modified Files: perl-Font-AFM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Font-AFM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Font-AFM/devel/perl-Font-AFM.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Font-AFM.spec 26 Feb 2009 16:38:59 -0000 1.10 +++ perl-Font-AFM.spec 26 Jul 2009 06:07:39 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Font-AFM Version: 1.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to Adobe Font Metrics files Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Font* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:07:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:07:56 +0000 (UTC) Subject: rpms/perl-Font-TTF/devel perl-Font-TTF.spec,1.15,1.16 Message-ID: <20090726060756.DB02911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Font-TTF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13279 Modified Files: perl-Font-TTF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Font-TTF.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Font-TTF/devel/perl-Font-TTF.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Font-TTF.spec 26 Feb 2009 16:39:52 -0000 1.15 +++ perl-Font-TTF.spec 26 Jul 2009 06:07:56 -0000 1.16 @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.45 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl library for modifying TTF font files Group: Development/Libraries @@ -83,6 +83,9 @@ rm -fr %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.45-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.45-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:08:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:08:11 +0000 (UTC) Subject: rpms/perl-FreezeThaw/devel perl-FreezeThaw.spec,1.11,1.12 Message-ID: <20090726060811.ACB5E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-FreezeThaw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13435 Modified Files: perl-FreezeThaw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-FreezeThaw.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-FreezeThaw/devel/perl-FreezeThaw.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-FreezeThaw.spec 26 Feb 2009 16:40:51 -0000 1.11 +++ perl-FreezeThaw.spec 26 Jul 2009 06:08:11 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-FreezeThaw Version: 0.45 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert Perl structures to strings and back Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.45-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.45-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:08:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:08:25 +0000 (UTC) Subject: rpms/perl-Frontier-RPC/devel perl-Frontier-RPC.spec,1.16,1.17 Message-ID: <20090726060825.8943211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Frontier-RPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13590 Modified Files: perl-Frontier-RPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Frontier-RPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Frontier-RPC/devel/perl-Frontier-RPC.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Frontier-RPC.spec 26 Feb 2009 16:41:47 -0000 1.16 +++ perl-Frontier-RPC.spec 26 Jul 2009 06:08:25 -0000 1.17 @@ -1,7 +1,7 @@ Summary: A Perl interface for making and serving XML-RPC calls Name: perl-Frontier-RPC Version: 0.07b4p1 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Frontier-RPC/ @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Frontier::RPC2.3pm.gz %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07b4p1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07b4p1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:08:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:08:39 +0000 (UTC) Subject: rpms/perl-GD/devel perl-GD.spec,1.27,1.28 Message-ID: <20090726060839.9A54B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13751 Modified Files: perl-GD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GD.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GD/devel/perl-GD.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- perl-GD.spec 16 Mar 2009 13:05:51 -0000 1.27 +++ perl-GD.spec 26 Jul 2009 06:08:39 -0000 1.28 @@ -7,7 +7,7 @@ Name: perl-GD Version: 2.41 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the GD graphics library Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.41-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Tom "spot" Callaway - 2.41-2 - fix Makefile.PL to install GD/Group.pm (bz 490429) From jkeating at fedoraproject.org Sun Jul 26 06:08:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:08:54 +0000 (UTC) Subject: rpms/perl-GD-Barcode/devel perl-GD-Barcode.spec,1.4,1.5 Message-ID: <20090726060854.B7F1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GD-Barcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13879 Modified Files: perl-GD-Barcode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GD-Barcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GD-Barcode/devel/perl-GD-Barcode.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-GD-Barcode.spec 26 Feb 2009 16:43:35 -0000 1.4 +++ perl-GD-Barcode.spec 26 Jul 2009 06:08:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-GD-Barcode Version: 1.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Create barcode image with GD # see Barcode.pm License: GPL+ or Artistic @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:09:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:09:24 +0000 (UTC) Subject: rpms/perl-GDGraph/devel perl-GDGraph.spec,1.16,1.17 Message-ID: <20090726060924.21C5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GDGraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14170 Modified Files: perl-GDGraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GDGraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GDGraph/devel/perl-GDGraph.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-GDGraph.spec 26 Feb 2009 16:45:27 -0000 1.16 +++ perl-GDGraph.spec 26 Jul 2009 06:09:23 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-GDGraph Version: 1.44 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 Summary: Graph generation package for Perl @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.44-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.44-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:09:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:09:08 +0000 (UTC) Subject: rpms/perl-GD-SVG/devel perl-GD-SVG.spec,1.10,1.11 Message-ID: <20090726060908.8ACB711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GD-SVG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14031 Modified Files: perl-GD-SVG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GD-SVG.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GD-SVG/devel/perl-GD-SVG.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-GD-SVG.spec 26 Feb 2009 16:44:33 -0000 1.10 +++ perl-GD-SVG.spec 26 Jul 2009 06:09:08 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-GD-SVG Version: 0.32 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GD::SVG enables SVG output from scripts written using GD Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.32-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:09:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:09:38 +0000 (UTC) Subject: rpms/perl-GDGraph3d/devel perl-GDGraph3d.spec,1.14,1.15 Message-ID: <20090726060938.EBD3E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GDGraph3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14349 Modified Files: perl-GDGraph3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GDGraph3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GDGraph3d/devel/perl-GDGraph3d.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-GDGraph3d.spec 26 Feb 2009 16:46:21 -0000 1.14 +++ perl-GDGraph3d.spec 26 Jul 2009 06:09:38 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-GDGraph3d Version: 0.63 -Release: 10%{?dist} +Release: 11%{?dist} Summary: 3D graph generation package for Perl Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.63-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.63-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:09:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:09:53 +0000 (UTC) Subject: rpms/perl-GDTextUtil/devel perl-GDTextUtil.spec,1.14,1.15 Message-ID: <20090726060953.DFF3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GDTextUtil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14479 Modified Files: perl-GDTextUtil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GDTextUtil.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GDTextUtil/devel/perl-GDTextUtil.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-GDTextUtil.spec 26 Feb 2009 16:47:19 -0000 1.14 +++ perl-GDTextUtil.spec 26 Jul 2009 06:09:53 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-GDTextUtil Version: 0.86 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Text utilities for use with GD Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.86-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.86-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:10:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:10:15 +0000 (UTC) Subject: rpms/perl-GO-TermFinder/devel perl-GO-TermFinder.spec,1.2,1.3 Message-ID: <20090726061015.1F3F311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GO-TermFinder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14681 Modified Files: perl-GO-TermFinder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GO-TermFinder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GO-TermFinder/devel/perl-GO-TermFinder.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-GO-TermFinder.spec 26 Feb 2009 16:48:15 -0000 1.2 +++ perl-GO-TermFinder.spec 26 Jul 2009 06:10:14 -0000 1.3 @@ -1,7 +1,7 @@ Name: perl-GO-TermFinder Version: 0.82 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Identify GO nodes that annotate a group of genes with a significant p-value License: MIT Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.82-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.82-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:10:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:10:32 +0000 (UTC) Subject: rpms/perl-GPS/devel perl-GPS.spec,1.5,1.6 Message-ID: <20090726061032.E753411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GPS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14830 Modified Files: perl-GPS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GPS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GPS/devel/perl-GPS.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-GPS.spec 13 Mar 2009 20:07:02 -0000 1.5 +++ perl-GPS.spec 26 Jul 2009 06:10:32 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-GPS Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl interface to a GPS receiver that implements the Garmin protocol Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.16-1 - update to 0.16 From jkeating at fedoraproject.org Sun Jul 26 06:10:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:10:50 +0000 (UTC) Subject: rpms/perl-GPS-PRN/devel perl-GPS-PRN.spec,1.7,1.8 Message-ID: <20090726061050.230A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GPS-PRN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15002 Modified Files: perl-GPS-PRN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GPS-PRN.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GPS-PRN/devel/perl-GPS-PRN.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-GPS-PRN.spec 26 Feb 2009 16:50:07 -0000 1.7 +++ perl-GPS-PRN.spec 26 Jul 2009 06:10:49 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-GPS-PRN Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Package for PRN - Object ID conversions Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:11:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:11:05 +0000 (UTC) Subject: rpms/perl-GSSAPI/devel perl-GSSAPI.spec,1.12,1.13 Message-ID: <20090726061105.C000E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GSSAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15179 Modified Files: perl-GSSAPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GSSAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GSSAPI/devel/perl-GSSAPI.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-GSSAPI.spec 26 Feb 2009 16:51:05 -0000 1.12 +++ perl-GSSAPI.spec 26 Jul 2009 06:11:05 -0000 1.13 @@ -6,7 +6,7 @@ Name: perl-GSSAPI Version: 0.26 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension providing access to the GSSAPIv2 library License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lucilanga at fedoraproject.org Sun Jul 26 06:11:01 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Sun, 26 Jul 2009 06:11:01 +0000 (UTC) Subject: rpms/memtester/devel .cvsignore, 1.2, 1.3 memtester.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090726061101.9BF6011C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/memtester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15119 Modified Files: .cvsignore memtester.spec sources Log Message: * Sun Jul 26 2009 Lucian Langa - 4.1.1-1 - misc cleanups - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/memtester/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Sep 2008 05:06:57 -0000 1.2 +++ .cvsignore 26 Jul 2009 06:11:01 -0000 1.3 @@ -1 +1 @@ -memtester-4.0.8.tar.gz +memtester-4.1.1.tar.gz Index: memtester.spec =================================================================== RCS file: /cvs/pkgs/rpms/memtester/devel/memtester.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- memtester.spec 25 Jul 2009 12:02:54 -0000 1.3 +++ memtester.spec 26 Jul 2009 06:11:01 -0000 1.4 @@ -1,12 +1,12 @@ Name: memtester -Version: 4.0.8 -Release: 4%{?dist} +Version: 4.1.1 +Release: 1%{?dist} Summary: Utility to test for faulty memory subsystem Group: System Environment/Base License: GPLv2 URL: http://pyropus.ca/software/memtester/ -Source0: http://pyropus.ca/software/memtester/old-versions/memtester-4.0.8.tar.gz +Source0: http://pyropus.ca/software/memtester/old-versions/%{name}-%{version}.tar.gz Patch0: memtester-4.0.8-debuginfo.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -54,6 +54,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Lucian Langa - 4.1.1-1 +- misc cleanups +- new upstream release + * Sat Jul 25 2009 Fedora Release Engineering - 4.0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memtester/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Sep 2008 05:06:57 -0000 1.2 +++ sources 26 Jul 2009 06:11:01 -0000 1.3 @@ -1 +1 @@ -a4971ed1ccaf5b2e2148fd66b0eb7363 memtester-4.0.8.tar.gz +e78f5c9b4ad11af020ca0b0fd713cdef memtester-4.1.1.tar.gz From jkeating at fedoraproject.org Sun Jul 26 06:11:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:11:19 +0000 (UTC) Subject: rpms/perl-GStreamer/devel perl-GStreamer.spec,1.8,1.9 Message-ID: <20090726061119.A159E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GStreamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15312 Modified Files: perl-GStreamer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GStreamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GStreamer/devel/perl-GStreamer.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-GStreamer.spec 3 Mar 2009 04:39:00 -0000 1.8 +++ perl-GStreamer.spec 26 Jul 2009 06:11:19 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-GStreamer Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl bindings to the GStreamer framework License: LGPLv2+ Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Chris Weyl 0.15-1 - update to 1.15 - trim doc From jkeating at fedoraproject.org Sun Jul 26 06:11:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:11:33 +0000 (UTC) Subject: rpms/perl-GTop/devel perl-GTop.spec,1.9,1.10 Message-ID: <20090726061133.E243611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GTop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15482 Modified Files: perl-GTop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GTop.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GTop/devel/perl-GTop.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-GTop.spec 27 Mar 2009 04:52:44 -0000 1.9 +++ perl-GTop.spec 26 Jul 2009 06:11:33 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-GTop Version: 0.16 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl interface to libgtop License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Chris Weyl - 0.16-8 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 06:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:11:49 +0000 (UTC) Subject: rpms/perl-Gearman/devel perl-Gearman.spec,1.3,1.4 Message-ID: <20090726061149.1364A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gearman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15628 Modified Files: perl-Gearman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gearman.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gearman/devel/perl-Gearman.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gearman.spec 26 Feb 2009 16:54:09 -0000 1.3 +++ perl-Gearman.spec 26 Jul 2009 06:11:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gearman Version: 1.09 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Distributed job system License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:12:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:12:03 +0000 (UTC) Subject: rpms/perl-Gearman-Client-Async/devel perl-Gearman-Client-Async.spec, 1.3, 1.4 Message-ID: <20090726061203.A14D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gearman-Client-Async/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15792 Modified Files: perl-Gearman-Client-Async.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gearman-Client-Async.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gearman-Client-Async/devel/perl-Gearman-Client-Async.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gearman-Client-Async.spec 26 Feb 2009 16:55:12 -0000 1.3 +++ perl-Gearman-Client-Async.spec 26 Jul 2009 06:12:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gearman-Client-Async Version: 0.94 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Asynchronous Client for the Gearman distributed job system License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.94-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.94-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:12:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:12:22 +0000 (UTC) Subject: rpms/perl-Gearman-Server/devel perl-Gearman-Server.spec,1.3,1.4 Message-ID: <20090726061222.66F6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gearman-Server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15958 Modified Files: perl-Gearman-Server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gearman-Server.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gearman-Server/devel/perl-Gearman-Server.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Gearman-Server.spec 26 Feb 2009 16:56:15 -0000 1.3 +++ perl-Gearman-Server.spec 26 Jul 2009 06:12:22 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Gearman-Server Version: 1.09 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Function call "router" and load balancer License: GPL+ or Artistic Group: System Environment/Daemons @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.09-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:12:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:12:37 +0000 (UTC) Subject: rpms/perl-Geo-Constants/devel perl-Geo-Constants.spec,1.5,1.6 Message-ID: <20090726061237.454E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-Constants/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16156 Modified Files: perl-Geo-Constants.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-Constants.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-Constants/devel/perl-Geo-Constants.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Geo-Constants.spec 26 Feb 2009 16:57:14 -0000 1.5 +++ perl-Geo-Constants.spec 26 Jul 2009 06:12:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Geo-Constants Version: 0.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Standard Geo:: constants Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:12:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:12:51 +0000 (UTC) Subject: rpms/perl-Geo-Ellipsoids/devel perl-Geo-Ellipsoids.spec,1.9,1.10 Message-ID: <20090726061251.8E9F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-Ellipsoids/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16314 Modified Files: perl-Geo-Ellipsoids.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-Ellipsoids.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-Ellipsoids/devel/perl-Geo-Ellipsoids.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Geo-Ellipsoids.spec 13 Mar 2009 19:58:03 -0000 1.9 +++ perl-Geo-Ellipsoids.spec 26 Jul 2009 06:12:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Geo-Ellipsoids Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Standard Geo:: ellipsoids Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.16-1 - update to 0.16 From jkeating at fedoraproject.org Sun Jul 26 06:13:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:13:06 +0000 (UTC) Subject: rpms/perl-Geo-Forward/devel perl-Geo-Forward.spec,1.4,1.5 Message-ID: <20090726061306.E68F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-Forward/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16462 Modified Files: perl-Geo-Forward.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-Forward.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-Forward/devel/perl-Geo-Forward.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Geo-Forward.spec 26 Feb 2009 16:59:14 -0000 1.4 +++ perl-Geo-Forward.spec 26 Jul 2009 06:13:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Geo-Forward Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Calculate geographic location from lat, lon, distance, and heading Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:13:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:13:23 +0000 (UTC) Subject: rpms/perl-Geo-Functions/devel perl-Geo-Functions.spec,1.7,1.8 Message-ID: <20090726061323.56EE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-Functions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16595 Modified Files: perl-Geo-Functions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-Functions.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-Functions/devel/perl-Geo-Functions.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Geo-Functions.spec 26 Feb 2009 17:00:16 -0000 1.7 +++ perl-Geo-Functions.spec 26 Jul 2009 06:13:23 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Geo-Functions Version: 0.07 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Standard Geo:: functions Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:13:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:13:43 +0000 (UTC) Subject: rpms/perl-Geo-IP/devel perl-Geo-IP.spec,1.9,1.10 Message-ID: <20090726061343.E859011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-IP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16775 Modified Files: perl-Geo-IP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-IP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-IP/devel/perl-Geo-IP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Geo-IP.spec 15 Jun 2009 11:48:46 -0000 1.9 +++ perl-Geo-IP.spec 26 Jul 2009 06:13:43 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Geo-IP Version: 1.38 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Efficient Perl bindings for the GeoIP location database Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Geo::Mirror.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.38-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Michael Fleming 1.38-1 - New upstream update (fixes some segfaults and .au timezone breakage) From jkeating at fedoraproject.org Sun Jul 26 06:13:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:13:59 +0000 (UTC) Subject: rpms/perl-Geo-IPfree/devel perl-Geo-IPfree.spec,1.2,1.3 Message-ID: <20090726061359.2DED211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-IPfree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16915 Modified Files: perl-Geo-IPfree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-IPfree.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-IPfree/devel/perl-Geo-IPfree.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Geo-IPfree.spec 26 Feb 2009 17:02:24 -0000 1.2 +++ perl-Geo-IPfree.spec 26 Jul 2009 06:13:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Geo-IPfree Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Look up country of IP Address License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:14:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:14:14 +0000 (UTC) Subject: rpms/perl-Geo-Inverse/devel perl-Geo-Inverse.spec,1.5,1.6 Message-ID: <20090726061414.DBF0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-Inverse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17088 Modified Files: perl-Geo-Inverse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-Inverse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-Inverse/devel/perl-Geo-Inverse.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Geo-Inverse.spec 26 Feb 2009 17:03:26 -0000 1.5 +++ perl-Geo-Inverse.spec 26 Jul 2009 06:14:14 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Geo-Inverse Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Calculate geographic distance from a lat & lon pair Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:14:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:14:31 +0000 (UTC) Subject: rpms/perl-Geo-METAR/devel perl-Geo-METAR.spec,1.5,1.6 Message-ID: <20090726061431.73E6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geo-METAR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17244 Modified Files: perl-Geo-METAR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geo-METAR.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geo-METAR/devel/perl-Geo-METAR.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Geo-METAR.spec 26 Feb 2009 17:04:27 -0000 1.5 +++ perl-Geo-METAR.spec 26 Jul 2009 06:14:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Geo-METAR Version: 1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for accessing aviation weather information Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:14:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:14:48 +0000 (UTC) Subject: rpms/perl-Geography-Countries/devel perl-Geography-Countries.spec, 1.4, 1.5 Message-ID: <20090726061448.1CCC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Geography-Countries/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17394 Modified Files: perl-Geography-Countries.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Geography-Countries.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Geography-Countries/devel/perl-Geography-Countries.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Geography-Countries.spec 26 Feb 2009 17:05:30 -0000 1.4 +++ perl-Geography-Countries.spec 26 Jul 2009 06:14:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Geography-Countries Version: 1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: 2-letter, 3-letter, and numerical codes for countries Group: Development/Libraries License: MIT @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:15:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:15:04 +0000 (UTC) Subject: rpms/perl-Getopt-ArgvFile/devel perl-Getopt-ArgvFile.spec,1.2,1.3 Message-ID: <20090726061504.B09A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Getopt-ArgvFile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17565 Modified Files: perl-Getopt-ArgvFile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Getopt-ArgvFile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Getopt-ArgvFile/devel/perl-Getopt-ArgvFile.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Getopt-ArgvFile.spec 18 Apr 2009 05:58:55 -0000 1.2 +++ perl-Getopt-ArgvFile.spec 26 Jul 2009 06:15:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Getopt-ArgvFile Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Interpolates script options from files into @ARGV or another array License: Artistic 2.0 Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Iain Arnell 1.11-2 - BR Test::Pod and Test::Pod::Coverage From jkeating at fedoraproject.org Sun Jul 26 06:15:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:15:19 +0000 (UTC) Subject: rpms/perl-Getopt-Euclid/devel perl-Getopt-Euclid.spec,1.4,1.5 Message-ID: <20090726061519.A67B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Getopt-Euclid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17750 Modified Files: perl-Getopt-Euclid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Getopt-Euclid.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Getopt-Euclid/devel/perl-Getopt-Euclid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Getopt-Euclid.spec 15 Jun 2009 12:50:28 -0000 1.4 +++ perl-Getopt-Euclid.spec 26 Jul 2009 06:15:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Getopt-Euclid Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Executable Uniform Command-Line Interface Descriptions License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Rasmus Ory Nielsen - 0.2.1-1 - Updated to 0.2.1 From jkeating at fedoraproject.org Sun Jul 26 06:15:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:15:37 +0000 (UTC) Subject: rpms/perl-Getopt-GUI-Long/devel perl-Getopt-GUI-Long.spec,1.4,1.5 Message-ID: <20090726061537.4839411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Getopt-GUI-Long/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17912 Modified Files: perl-Getopt-GUI-Long.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Getopt-GUI-Long.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Getopt-GUI-Long/devel/perl-Getopt-GUI-Long.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Getopt-GUI-Long.spec 5 Mar 2009 20:35:32 -0000 1.4 +++ perl-Getopt-GUI-Long.spec 26 Jul 2009 06:15:36 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Getopt-GUI-Long Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A wrapper around Getopt::Long to provide a GUI to applications License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Wes Hardaker - 0.91-1 - Update to 0.91 From jkeating at fedoraproject.org Sun Jul 26 06:15:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:15:58 +0000 (UTC) Subject: rpms/perl-Getopt-Long-Descriptive/devel perl-Getopt-Long-Descriptive.spec, 1.3, 1.4 Message-ID: <20090726061558.0601611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Getopt-Long-Descriptive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18074 Modified Files: perl-Getopt-Long-Descriptive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Getopt-Long-Descriptive.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Getopt-Long-Descriptive/devel/perl-Getopt-Long-Descriptive.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Getopt-Long-Descriptive.spec 26 Feb 2009 17:08:36 -0000 1.3 +++ perl-Getopt-Long-Descriptive.spec 26 Jul 2009 06:15:57 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Getopt-Long-Descriptive Version: 0.074 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Getopt::Long with usage text License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.074-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.074-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:16:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:16:12 +0000 (UTC) Subject: rpms/perl-Git-CPAN-Patch/devel perl-Git-CPAN-Patch.spec,1.4,1.5 Message-ID: <20090726061612.D940011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Git-CPAN-Patch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18242 Modified Files: perl-Git-CPAN-Patch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Git-CPAN-Patch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Git-CPAN-Patch/devel/perl-Git-CPAN-Patch.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Git-CPAN-Patch.spec 22 Jun 2009 05:37:12 -0000 1.4 +++ perl-Git-CPAN-Patch.spec 26 Jul 2009 06:16:12 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Git-CPAN-Patch Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Patch CPAN modules using Git License: GPL+ or Artistic Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 0.1.7-1 - auto-update to 0.1.7 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 06:16:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:16:29 +0000 (UTC) Subject: rpms/perl-Glib/devel perl-Glib.spec,1.33,1.34 Message-ID: <20090726061629.3B83C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18408 Modified Files: perl-Glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Glib/devel/perl-Glib.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- perl-Glib.spec 17 Jul 2009 14:23:16 -0000 1.33 +++ perl-Glib.spec 26 Jul 2009 06:16:28 -0000 1.34 @@ -1,6 +1,6 @@ Name: perl-Glib Version: 1.201 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to GLib Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.201-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Stepan Kasal - 1.201-3 - create devel subpackage, so that the main one does not require the whole perl-devel (#509419) From lucilanga at fedoraproject.org Sun Jul 26 06:16:39 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Sun, 26 Jul 2009 06:16:39 +0000 (UTC) Subject: rpms/memtester/F-11 .cvsignore, 1.2, 1.3 memtester.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090726061639.4C85C11C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/memtester/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18520 Modified Files: .cvsignore memtester.spec sources Log Message: * Sun Jul 26 2009 Lucian Langa - 4.1.1-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Sep 2008 05:06:57 -0000 1.2 +++ .cvsignore 26 Jul 2009 06:16:38 -0000 1.3 @@ -1 +1 @@ -memtester-4.0.8.tar.gz +memtester-4.1.1.tar.gz Index: memtester.spec =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-11/memtester.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- memtester.spec 26 Feb 2009 00:20:16 -0000 1.2 +++ memtester.spec 26 Jul 2009 06:16:39 -0000 1.3 @@ -1,12 +1,12 @@ Name: memtester -Version: 4.0.8 -Release: 3%{?dist} +Version: 4.1.1 +Release: 1%{?dist} Summary: Utility to test for faulty memory subsystem Group: System Environment/Base License: GPLv2 URL: http://pyropus.ca/software/memtester/ -Source0: http://pyropus.ca/software/memtester/old-versions/memtester-4.0.8.tar.gz +Source0: http://pyropus.ca/software/memtester/old-versions/%{name}-%{version}.tar.gz Patch0: memtester-4.0.8-debuginfo.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Lucian Langa - 4.1.1-1 +- new upstream release + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Sep 2008 05:06:57 -0000 1.2 +++ sources 26 Jul 2009 06:16:39 -0000 1.3 @@ -1 +1 @@ -a4971ed1ccaf5b2e2148fd66b0eb7363 memtester-4.0.8.tar.gz +e78f5c9b4ad11af020ca0b0fd713cdef memtester-4.1.1.tar.gz From jkeating at fedoraproject.org Sun Jul 26 06:16:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:16:44 +0000 (UTC) Subject: rpms/perl-Gnome2/devel perl-Gnome2.spec,1.2,1.3 Message-ID: <20090726061644.DE2C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18580 Modified Files: perl-Gnome2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2/devel/perl-Gnome2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Gnome2.spec 26 Feb 2009 17:10:44 -0000 1.2 +++ perl-Gnome2.spec 26 Jul 2009 06:16:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Gnome2 Version: 1.042 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the 2.x series of the GNOME libraries License: LGPLv2 Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.042-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.042-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:17:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:17:00 +0000 (UTC) Subject: rpms/perl-Gnome2-Canvas/devel perl-Gnome2-Canvas.spec,1.7,1.8 Message-ID: <20090726061700.A765711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18762 Modified Files: perl-Gnome2-Canvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Canvas/devel/perl-Gnome2-Canvas.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Gnome2-Canvas.spec 26 Feb 2009 17:11:45 -0000 1.7 +++ perl-Gnome2-Canvas.spec 26 Jul 2009 06:17:00 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Canvas Version: 1.002 -Release: 10%{?dist} +Release: 11%{?dist} Summary: An engine for structured graphics in Gnome2 Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.002-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.002-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:17:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:17:15 +0000 (UTC) Subject: rpms/perl-Gnome2-GConf/devel perl-Gnome2-GConf.spec,1.11,1.12 Message-ID: <20090726061715.A0C6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2-GConf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18941 Modified Files: perl-Gnome2-GConf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2-GConf.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-GConf/devel/perl-Gnome2-GConf.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Gnome2-GConf.spec 26 Feb 2009 17:12:48 -0000 1.11 +++ perl-Gnome2-GConf.spec 26 Jul 2009 06:17:15 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Gnome2-GConf Version: 1.044 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl wrappers for the GConf configuration engine License: LGPLv2+ Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.044-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.044-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:17:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:17:31 +0000 (UTC) Subject: rpms/perl-Gnome2-Print/devel perl-Gnome2-Print.spec,1.7,1.8 Message-ID: <20090726061731.A1C1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2-Print/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19087 Modified Files: perl-Gnome2-Print.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2-Print.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Print/devel/perl-Gnome2-Print.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Gnome2-Print.spec 26 Feb 2009 17:13:46 -0000 1.7 +++ perl-Gnome2-Print.spec 26 Jul 2009 06:17:31 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Print Version: 1.000 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl wrappers for the Gnome Print utilities License: LGPLv2+ Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.000-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.000-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:17:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:17:47 +0000 (UTC) Subject: rpms/perl-Gnome2-VFS/devel perl-Gnome2-VFS.spec,1.8,1.9 Message-ID: <20090726061747.926FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2-VFS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19216 Modified Files: perl-Gnome2-VFS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2-VFS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-VFS/devel/perl-Gnome2-VFS.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Gnome2-VFS.spec 26 Feb 2009 17:14:46 -0000 1.8 +++ perl-Gnome2-VFS.spec 26 Jul 2009 06:17:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Gnome2-VFS Version: 1.081 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the 2.x series of the GNOME VFS library License: LGPLv2+ Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.081-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.081-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:18:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:18:02 +0000 (UTC) Subject: rpms/perl-Gnome2-Wnck/devel perl-Gnome2-Wnck.spec,1.1,1.2 Message-ID: <20090726061802.9EB2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19358 Modified Files: perl-Gnome2-Wnck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gnome2-Wnck.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gnome2-Wnck/devel/perl-Gnome2-Wnck.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Gnome2-Wnck.spec 7 Jun 2009 06:11:44 -0000 1.1 +++ perl-Gnome2-Wnck.spec 26 Jul 2009 06:18:02 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Gnome2-Wnck Version: 0.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl interface to the Window Navigator Construction Kit License: LGPLv2+ Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Liang Suilong 0.16-4 - Modify BuildRequires and correct the %%files. From jkeating at fedoraproject.org Sun Jul 26 06:18:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:18:19 +0000 (UTC) Subject: rpms/perl-GnuPG-Interface/devel perl-GnuPG-Interface.spec, 1.10, 1.11 Message-ID: <20090726061819.0B50211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GnuPG-Interface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19497 Modified Files: perl-GnuPG-Interface.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GnuPG-Interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GnuPG-Interface/devel/perl-GnuPG-Interface.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-GnuPG-Interface.spec 26 Feb 2009 17:15:48 -0000 1.10 +++ perl-GnuPG-Interface.spec 26 Jul 2009 06:18:18 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-GnuPG-Interface Version: 0.36 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to GnuPG Group: Development/Libraries License: GPLv2+ or Artistic @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.36-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.36-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:18:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:18:35 +0000 (UTC) Subject: rpms/perl-Goo-Canvas/devel perl-Goo-Canvas.spec,1.1,1.2 Message-ID: <20090726061835.2E9D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Goo-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19751 Modified Files: perl-Goo-Canvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Goo-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Goo-Canvas/devel/perl-Goo-Canvas.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Goo-Canvas.spec 21 Jun 2009 09:37:13 -0000 1.1 +++ perl-Goo-Canvas.spec 26 Jul 2009 06:18:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Goo-Canvas Version: 0.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the GooCanvas License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Liang Suilong 0.06-2 - Correct directory ownership - Correct the typo in %description From jkeating at fedoraproject.org Sun Jul 26 06:18:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:18:51 +0000 (UTC) Subject: rpms/perl-Graph/devel perl-Graph.spec,1.12,1.13 Message-ID: <20090726061851.2A05111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Graph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19921 Modified Files: perl-Graph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Graph.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Graph/devel/perl-Graph.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Graph.spec 26 Feb 2009 17:16:49 -0000 1.12 +++ perl-Graph.spec 26 Jul 2009 06:18:50 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Graph Version: 0.91 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module for dealing with graphs, the abstract data structures Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.91-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.91-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lucilanga at fedoraproject.org Sun Jul 26 06:18:51 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Sun, 26 Jul 2009 06:18:51 +0000 (UTC) Subject: rpms/memtester/F-10 .cvsignore, 1.2, 1.3 memtester.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090726061851.7CEF611C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/memtester/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19908 Modified Files: .cvsignore memtester.spec sources Log Message: * Sun Jul 26 2009 Lucian Langa - 4.1.1-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Sep 2008 05:06:57 -0000 1.2 +++ .cvsignore 26 Jul 2009 06:18:51 -0000 1.3 @@ -1 +1 @@ -memtester-4.0.8.tar.gz +memtester-4.1.1.tar.gz Index: memtester.spec =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-10/memtester.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- memtester.spec 30 Sep 2008 05:06:57 -0000 1.1 +++ memtester.spec 26 Jul 2009 06:18:51 -0000 1.2 @@ -1,12 +1,12 @@ Name: memtester -Version: 4.0.8 -Release: 2%{?dist} +Version: 4.1.1 +Release: 1%{?dist} Summary: Utility to test for faulty memory subsystem Group: System Environment/Base License: GPLv2 URL: http://pyropus.ca/software/memtester/ -Source0: http://pyropus.ca/software/memtester/old-versions/memtester-4.0.8.tar.gz +Source0: http://pyropus.ca/software/memtester/old-versions/%{name}-%{version}.tar.gz Patch0: memtester-4.0.8-debuginfo.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Lucian Langa - 4.1.1-1 +- new upstream release + * Mon Sep 29 2008 Lucian Langa - 4.0.8-2 - preserve timestamps - fix patch Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/memtester/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Sep 2008 05:06:57 -0000 1.2 +++ sources 26 Jul 2009 06:18:51 -0000 1.3 @@ -1 +1 @@ -a4971ed1ccaf5b2e2148fd66b0eb7363 memtester-4.0.8.tar.gz +e78f5c9b4ad11af020ca0b0fd713cdef memtester-4.1.1.tar.gz From jkeating at fedoraproject.org Sun Jul 26 06:19:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:19:07 +0000 (UTC) Subject: rpms/perl-GraphViz/devel perl-GraphViz.spec,1.8,1.9 Message-ID: <20090726061907.6F28611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-GraphViz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20263 Modified Files: perl-GraphViz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-GraphViz.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-GraphViz/devel/perl-GraphViz.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-GraphViz.spec 30 Mar 2009 10:50:39 -0000 1.8 +++ perl-GraphViz.spec 26 Jul 2009 06:19:06 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-GraphViz Version: 2.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Interface to the GraphViz graphing tool License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Stepan Kasal - 2.04-1 - update to 2.04 From jkeating at fedoraproject.org Sun Jul 26 06:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:19:23 +0000 (UTC) Subject: rpms/perl-Graphics-ColorNames/devel perl-Graphics-ColorNames.spec, 1.9, 1.10 Message-ID: <20090726061923.1E64511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Graphics-ColorNames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20758 Modified Files: perl-Graphics-ColorNames.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Graphics-ColorNames.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Graphics-ColorNames/devel/perl-Graphics-ColorNames.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Graphics-ColorNames.spec 26 Feb 2009 17:18:49 -0000 1.9 +++ perl-Graphics-ColorNames.spec 26 Jul 2009 06:19:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Graphics-ColorNames Version: 2.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Defines RGB values for common color names License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:19:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:19:39 +0000 (UTC) Subject: rpms/perl-Gtk2/devel perl-Gtk2.spec,1.30,1.31 Message-ID: <20090726061939.39C2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21055 Modified Files: perl-Gtk2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2/devel/perl-Gtk2.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- perl-Gtk2.spec 13 Mar 2009 20:12:43 -0000 1.30 +++ perl-Gtk2.spec 26 Jul 2009 06:19:38 -0000 1.31 @@ -6,7 +6,7 @@ Name: perl-Gtk2 Version: 1.203 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl interface to the 2.x series of the Gimp Toolkit library Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.203-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.203-1 - update to 1.203 From jkeating at fedoraproject.org Sun Jul 26 06:19:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:19:52 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-CalendarButton/devel perl-Gtk2-Ex-CalendarButton.spec, 1.4, 1.5 Message-ID: <20090726061952.BB4FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-CalendarButton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21179 Modified Files: perl-Gtk2-Ex-CalendarButton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-CalendarButton.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-CalendarButton/devel/perl-Gtk2-Ex-CalendarButton.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-Ex-CalendarButton.spec 26 Feb 2009 17:20:53 -0000 1.4 +++ perl-Gtk2-Ex-CalendarButton.spec 26 Jul 2009 06:19:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-CalendarButton Version: 0.01 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Gtk2::Ex::CalendarButton Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:20:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:20:06 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-Carp/devel perl-Gtk2-Ex-Carp.spec,1.4,1.5 Message-ID: <20090726062006.7BBAB11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-Carp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21348 Modified Files: perl-Gtk2-Ex-Carp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-Carp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-Carp/devel/perl-Gtk2-Ex-Carp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-Ex-Carp.spec 26 Feb 2009 17:21:54 -0000 1.4 +++ perl-Gtk2-Ex-Carp.spec 26 Jul 2009 06:20:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-Carp Version: 0.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GTK+ friendly die() and warn() functions License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:20:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:20:21 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-Dialogs/devel perl-Gtk2-Ex-Dialogs.spec,1.4,1.5 Message-ID: <20090726062021.3D3A511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-Dialogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21478 Modified Files: perl-Gtk2-Ex-Dialogs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-Dialogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-Dialogs/devel/perl-Gtk2-Ex-Dialogs.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-Ex-Dialogs.spec 26 Feb 2009 17:22:57 -0000 1.4 +++ perl-Gtk2-Ex-Dialogs.spec 26 Jul 2009 06:20:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-Dialogs Version: 0.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Useful tools for Gnome2/Gtk2 Perl GUI design License: LGPLv2+ Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:20:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:20:36 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-FormFactory/devel perl-Gtk2-Ex-FormFactory.spec, 1.2, 1.3 Message-ID: <20090726062036.1D91B11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-FormFactory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21638 Modified Files: perl-Gtk2-Ex-FormFactory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-FormFactory.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-FormFactory/devel/perl-Gtk2-Ex-FormFactory.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Gtk2-Ex-FormFactory.spec 26 Feb 2009 17:23:56 -0000 1.2 +++ perl-Gtk2-Ex-FormFactory.spec 26 Jul 2009 06:20:35 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-FormFactory Version: 0.65 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Framework for Gtk2 perl applications Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.65-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.65-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:20:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:20:51 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-PodViewer/devel perl-Gtk2-Ex-PodViewer.spec, 1.6, 1.7 Message-ID: <20090726062051.0614411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-PodViewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21782 Modified Files: perl-Gtk2-Ex-PodViewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-PodViewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-PodViewer/devel/perl-Gtk2-Ex-PodViewer.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Gtk2-Ex-PodViewer.spec 26 Feb 2009 17:24:58 -0000 1.6 +++ perl-Gtk2-Ex-PodViewer.spec 26 Jul 2009 06:20:50 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-PodViewer Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Gtk2 widget for displaying Plain old Documentation (POD) Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:21:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:21:05 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-Simple-List/devel perl-Gtk2-Ex-Simple-List.spec, 1.4, 1.5 Message-ID: <20090726062105.93BD511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-Simple-List/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21954 Modified Files: perl-Gtk2-Ex-Simple-List.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-Simple-List.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-Simple-List/devel/perl-Gtk2-Ex-Simple-List.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-Ex-Simple-List.spec 26 Feb 2009 17:25:55 -0000 1.4 +++ perl-Gtk2-Ex-Simple-List.spec 26 Jul 2009 06:21:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-Simple-List Version: 0.50 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple interface to Gtk2's complex MVC list widget License: LGPLv2+ Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.50-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.50-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:21:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:21:22 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-Utils/devel perl-Gtk2-Ex-Utils.spec,1.4,1.5 Message-ID: <20090726062122.3481011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-Utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22123 Modified Files: perl-Gtk2-Ex-Utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Ex-Utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-Utils/devel/perl-Gtk2-Ex-Utils.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Gtk2-Ex-Utils.spec 26 Feb 2009 17:26:48 -0000 1.4 +++ perl-Gtk2-Ex-Utils.spec 26 Jul 2009 06:21:21 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-Utils Version: 0.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Extra Gtk2 Utilities for working with Gnome2/Gtk2 in Perl License: LGPLv2+ Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:21:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:21:38 +0000 (UTC) Subject: rpms/perl-Gtk2-GladeXML/devel perl-Gtk2-GladeXML.spec,1.8,1.9 Message-ID: <20090726062138.35C0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-GladeXML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22302 Modified Files: perl-Gtk2-GladeXML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-GladeXML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-GladeXML/devel/perl-Gtk2-GladeXML.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Gtk2-GladeXML.spec 26 Feb 2009 17:27:40 -0000 1.8 +++ perl-Gtk2-GladeXML.spec 26 Jul 2009 06:21:37 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Gtk2-GladeXML Version: 1.007 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create user interfaces directly from Glade XML files Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.007-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.007-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:21:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:21:55 +0000 (UTC) Subject: rpms/perl-Gtk2-ImageView/devel perl-Gtk2-ImageView.spec,1.2,1.3 Message-ID: <20090726062155.A0DE211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-ImageView/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22456 Modified Files: perl-Gtk2-ImageView.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-ImageView.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-ImageView/devel/perl-Gtk2-ImageView.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Gtk2-ImageView.spec 26 Feb 2009 17:28:32 -0000 1.2 +++ perl-Gtk2-ImageView.spec 26 Jul 2009 06:21:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Gtk2-ImageView Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl bindings to the GtkImageView image viewer widget Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/Gtk2/ImageView/Install/*.h %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:22:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:22:11 +0000 (UTC) Subject: rpms/perl-Gtk2-MozEmbed/devel perl-Gtk2-MozEmbed.spec,1.5,1.6 Message-ID: <20090726062211.4324111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22632 Modified Files: perl-Gtk2-MozEmbed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-MozEmbed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-MozEmbed/devel/perl-Gtk2-MozEmbed.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Gtk2-MozEmbed.spec 20 Jul 2009 15:59:39 -0000 1.5 +++ perl-Gtk2-MozEmbed.spec 26 Jul 2009 06:22:10 -0000 1.6 @@ -13,7 +13,7 @@ Summary: Interface to the Mozilla embedding widget Name: perl-Gtk2-MozEmbed Version: 0.08 -Release: %{specfilever}%{?dist}.3 +Release: %{specfilever}%{?dist}.4 Group: Development/Libraries License: LGPLv2+ @@ -89,6 +89,9 @@ find $RPM_BUILD_ROOT -type d -depth -exe %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-6.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Remi Collet - 0.08-6.3 - fix BR From jkeating at fedoraproject.org Sun Jul 26 06:22:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:22:31 +0000 (UTC) Subject: rpms/perl-Gtk2-Notify/devel perl-Gtk2-Notify.spec,1.11,1.12 Message-ID: <20090726062231.0DC5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Notify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22799 Modified Files: perl-Gtk2-Notify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Notify.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Notify/devel/perl-Gtk2-Notify.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Gtk2-Notify.spec 28 Feb 2009 23:18:49 -0000 1.11 +++ perl-Gtk2-Notify.spec 26 Jul 2009 06:22:30 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Notify Version: 0.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl interface to libnotify License: LGPLv2+ Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Chris Weyl - 0.05-4 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 06:22:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:22:44 +0000 (UTC) Subject: rpms/perl-Gtk2-Sexy/devel perl-Gtk2-Sexy.spec,1.11,1.12 Message-ID: <20090726062244.E45AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Sexy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22941 Modified Files: perl-Gtk2-Sexy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Sexy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Sexy/devel/perl-Gtk2-Sexy.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Gtk2-Sexy.spec 27 Mar 2009 04:29:16 -0000 1.11 +++ perl-Gtk2-Sexy.spec 26 Jul 2009 06:22:44 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Sexy Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to the sexy widget collection Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Chris Weyl - 0.05-3 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 06:22:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:22:59 +0000 (UTC) Subject: rpms/perl-Gtk2-Spell/devel perl-Gtk2-Spell.spec,1.6,1.7 Message-ID: <20090726062259.CA4B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-Spell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23079 Modified Files: perl-Gtk2-Spell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-Spell.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Spell/devel/perl-Gtk2-Spell.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Gtk2-Spell.spec 26 Feb 2009 17:31:37 -0000 1.6 +++ perl-Gtk2-Spell.spec 26 Jul 2009 06:22:58 -0000 1.7 @@ -1,7 +1,7 @@ Name: perl-Gtk2-Spell Version: 1.03 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Gtk2::Spell perl module Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.03-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:23:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:23:14 +0000 (UTC) Subject: rpms/perl-Gtk2-TrayIcon/devel perl-Gtk2-TrayIcon.spec,1.8,1.9 Message-ID: <20090726062314.1D26111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Gtk2-TrayIcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23235 Modified Files: perl-Gtk2-TrayIcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Gtk2-TrayIcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-TrayIcon/devel/perl-Gtk2-TrayIcon.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Gtk2-TrayIcon.spec 26 Feb 2009 17:32:38 -0000 1.8 +++ perl-Gtk2-TrayIcon.spec 26 Jul 2009 06:23:13 -0000 1.9 @@ -12,7 +12,7 @@ Name: perl-Gtk2-TrayIcon Version: 0.06 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl interface to the EggTrayIcon library Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.06-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:23:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:23:27 +0000 (UTC) Subject: rpms/perl-HTML-CalendarMonthSimple/devel perl-HTML-CalendarMonthSimple.spec, 1.4, 1.5 Message-ID: <20090726062327.E853111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-CalendarMonthSimple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23371 Modified Files: perl-HTML-CalendarMonthSimple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-CalendarMonthSimple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-CalendarMonthSimple/devel/perl-HTML-CalendarMonthSimple.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-HTML-CalendarMonthSimple.spec 26 Feb 2009 19:51:14 -0000 1.4 +++ perl-HTML-CalendarMonthSimple.spec 26 Jul 2009 06:23:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-HTML-CalendarMonthSimple Version: 1.25 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl Module for Generating HTML Calendars License: Public Domain Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.25-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.25-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:23:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:23:42 +0000 (UTC) Subject: rpms/perl-HTML-DOMbo/devel perl-HTML-DOMbo.spec,1.2,1.3 Message-ID: <20090726062342.053CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-DOMbo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23544 Modified Files: perl-HTML-DOMbo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-DOMbo.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-DOMbo/devel/perl-HTML-DOMbo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-HTML-DOMbo.spec 26 Feb 2009 17:34:32 -0000 1.2 +++ perl-HTML-DOMbo.spec 26 Jul 2009 06:23:41 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-HTML-DOMbo Version: 3.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert between XML::DOM and {XML/HTML}::Element trees License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:23:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:23:56 +0000 (UTC) Subject: rpms/perl-HTML-Defang/devel perl-HTML-Defang.spec,1.1,1.2 Message-ID: <20090726062356.4B07C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Defang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23690 Modified Files: perl-HTML-Defang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Defang.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Defang/devel/perl-HTML-Defang.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-Defang.spec 11 May 2009 03:05:26 -0000 1.1 +++ perl-HTML-Defang.spec 26 Jul 2009 06:23:55 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-Defang Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cleans HTML and CSS of executable contents License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 1.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:24:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:24:10 +0000 (UTC) Subject: rpms/perl-HTML-Encoding/devel perl-HTML-Encoding.spec,1.12,1.13 Message-ID: <20090726062410.28BF011C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Encoding/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23835 Modified Files: perl-HTML-Encoding.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Encoding.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Encoding/devel/perl-HTML-Encoding.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-HTML-Encoding.spec 26 Feb 2009 19:52:05 -0000 1.12 +++ perl-HTML-Encoding.spec 26 Jul 2009 06:24:09 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-HTML-Encoding Version: 0.60 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Determine the encoding of HTML/XML/XHTML documents Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.60-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.60-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:24:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:24:25 +0000 (UTC) Subject: rpms/perl-HTML-FillInForm/devel perl-HTML-FillInForm.spec,1.1,1.2 Message-ID: <20090726062425.E380B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-FillInForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23995 Modified Files: perl-HTML-FillInForm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-FillInForm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-FillInForm/devel/perl-HTML-FillInForm.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-FillInForm.spec 14 Jun 2009 21:33:47 -0000 1.1 +++ perl-HTML-FillInForm.spec 26 Jul 2009 06:24:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-FillInForm Version: 2.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Populates HTML Forms with data License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 2.00-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:24:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:24:42 +0000 (UTC) Subject: rpms/perl-HTML-FormFu/devel perl-HTML-FormFu.spec,1.9,1.10 Message-ID: <20090726062442.779DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-FormFu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24144 Modified Files: perl-HTML-FormFu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-FormFu.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-FormFu/devel/perl-HTML-FormFu.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-HTML-FormFu.spec 7 Jul 2009 07:13:36 -0000 1.9 +++ perl-HTML-FormFu.spec 26 Jul 2009 06:24:42 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-HTML-FormFu Version: 0.05001 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTML Form Creation, Rendering and Validation Framework License: GPL+ or Artistic Group: Development/Libraries @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Iain Arnell 0.05001-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 06:24:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:24:58 +0000 (UTC) Subject: rpms/perl-HTML-FormFu-Model-DBIC/devel perl-HTML-FormFu-Model-DBIC.spec, 1.1, 1.2 Message-ID: <20090726062458.5382511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-FormFu-Model-DBIC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24275 Modified Files: perl-HTML-FormFu-Model-DBIC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-FormFu-Model-DBIC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-FormFu-Model-DBIC/devel/perl-HTML-FormFu-Model-DBIC.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-FormFu-Model-DBIC.spec 1 Mar 2009 02:09:15 -0000 1.1 +++ perl-HTML-FormFu-Model-DBIC.spec 26 Jul 2009 06:24:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-FormFu-Model-DBIC Version: 0.03007 -Release: 1%{?dist} +Release: 2%{?dist} # lib/HTML/FormFu/Model/DBIC.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03007-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Chris Weyl 0.03007-1 - touch up for submission From jkeating at fedoraproject.org Sun Jul 26 06:25:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:25:16 +0000 (UTC) Subject: rpms/perl-HTML-Format/devel perl-HTML-Format.spec,1.10,1.11 Message-ID: <20090726062516.4CFF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Format/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24447 Modified Files: perl-HTML-Format.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Format.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Format/devel/perl-HTML-Format.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-HTML-Format.spec 26 Feb 2009 19:53:41 -0000 1.10 +++ perl-HTML-Format.spec 26 Jul 2009 06:25:16 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-HTML-Format Version: 2.04 -Release: 10%{?dist} +Release: 11%{?dist} Summary: HTML formatter modules Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/HTML* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.04-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.04-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:25:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:25:35 +0000 (UTC) Subject: rpms/perl-HTML-FormatText-WithLinks/devel perl-HTML-FormatText-WithLinks.spec, 1.10, 1.11 Message-ID: <20090726062535.5EE0011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-FormatText-WithLinks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24624 Modified Files: perl-HTML-FormatText-WithLinks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-FormatText-WithLinks.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-FormatText-WithLinks/devel/perl-HTML-FormatText-WithLinks.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-HTML-FormatText-WithLinks.spec 26 Feb 2009 19:54:29 -0000 1.10 +++ perl-HTML-FormatText-WithLinks.spec 26 Jul 2009 06:25:34 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-HTML-FormatText-WithLinks Version: 0.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: HTML to text conversion with links as footnotes Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:25:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:25:52 +0000 (UTC) Subject: rpms/perl-HTML-FromText/devel perl-HTML-FromText.spec,1.3,1.4 Message-ID: <20090726062552.D466911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-FromText/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24774 Modified Files: perl-HTML-FromText.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-FromText.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-FromText/devel/perl-HTML-FromText.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTML-FromText.spec 26 Feb 2009 19:55:17 -0000 1.3 +++ perl-HTML-FromText.spec 26 Jul 2009 06:25:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTML-FromText Version: 2.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert plain text to HTML Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:26:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:26:08 +0000 (UTC) Subject: rpms/perl-HTML-GenToc/devel perl-HTML-GenToc.spec,1.1,1.2 Message-ID: <20090726062608.8D2D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-GenToc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24935 Modified Files: perl-HTML-GenToc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-GenToc.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-GenToc/devel/perl-HTML-GenToc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-GenToc.spec 29 Apr 2009 04:42:15 -0000 1.1 +++ perl-HTML-GenToc.spec 26 Jul 2009 06:26:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-GenToc Version: 3.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate a Table of Contents for HTML documents License: GPLv2+ Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Iain Arnell 3.10-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:26:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:26:25 +0000 (UTC) Subject: rpms/perl-HTML-LinkList/devel perl-HTML-LinkList.spec,1.1,1.2 Message-ID: <20090726062625.0C88D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-LinkList/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25055 Modified Files: perl-HTML-LinkList.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-LinkList.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-LinkList/devel/perl-HTML-LinkList.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-LinkList.spec 1 Mar 2009 02:13:06 -0000 1.1 +++ perl-HTML-LinkList.spec 26 Jul 2009 06:26:24 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-LinkList Version: 0.1503 -Release: 1%{?dist} +Release: 2%{?dist} # lib/HTML/LinkList.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.1503-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Chris Weyl 0.1503-1 - submission From jkeating at fedoraproject.org Sun Jul 26 06:26:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:26:40 +0000 (UTC) Subject: rpms/perl-HTML-Lint/devel perl-HTML-Lint.spec,1.3,1.4 Message-ID: <20090726062640.231FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Lint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25225 Modified Files: perl-HTML-Lint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Lint.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Lint/devel/perl-HTML-Lint.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTML-Lint.spec 26 Feb 2009 19:56:11 -0000 1.3 +++ perl-HTML-Lint.spec 26 Jul 2009 06:26:39 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTML-Lint Version: 2.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: HTML::Lint Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:26:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:26:55 +0000 (UTC) Subject: rpms/perl-HTML-Mason/devel perl-HTML-Mason.spec,1.19,1.20 Message-ID: <20090726062655.0FD5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Mason/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25347 Modified Files: perl-HTML-Mason.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Mason/devel/perl-HTML-Mason.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-HTML-Mason.spec 10 May 2009 05:53:42 -0000 1.19 +++ perl-HTML-Mason.spec 26 Jul 2009 06:26:54 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-HTML-Mason Version: 1.42 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Powerful Perl-based web site development and delivery engine License: GPL+ or Artistic @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %dir %{_localstatedir}/www/mason %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:1.42-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Steven Pritchard 1:1.42-1 - Update to 1.42. From jkeating at fedoraproject.org Sun Jul 26 06:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:27:10 +0000 (UTC) Subject: rpms/perl-HTML-Parser/devel perl-HTML-Parser.spec,1.35,1.36 Message-ID: <20090726062710.4749411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25485 Modified Files: perl-HTML-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Parser/devel/perl-HTML-Parser.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- perl-HTML-Parser.spec 9 Jun 2009 05:48:15 -0000 1.35 +++ perl-HTML-Parser.spec 26 Jul 2009 06:27:10 -0000 1.36 @@ -2,7 +2,7 @@ Name: perl-%{real_name} Version: 3.60 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module for parsing HTML Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.60-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl - 3.60-1 - update to latest for mojomojo - filter bad provides (Parser.so) From jkeating at fedoraproject.org Sun Jul 26 06:27:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:27:24 +0000 (UTC) Subject: rpms/perl-HTML-PrettyPrinter/devel perl-HTML-PrettyPrinter.spec, 1.4, 1.5 Message-ID: <20090726062724.EC30511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-PrettyPrinter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25606 Modified Files: perl-HTML-PrettyPrinter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-PrettyPrinter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-PrettyPrinter/devel/perl-HTML-PrettyPrinter.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-HTML-PrettyPrinter.spec 26 Feb 2009 17:42:52 -0000 1.4 +++ perl-HTML-PrettyPrinter.spec 26 Jul 2009 06:27:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-HTML-PrettyPrinter Version: 0.03 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Generate nice HTML files from HTML syntax trees @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:27:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:27:38 +0000 (UTC) Subject: rpms/perl-HTML-Prototype/devel perl-HTML-Prototype.spec,1.2,1.3 Message-ID: <20090726062738.B62AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Prototype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25760 Modified Files: perl-HTML-Prototype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Prototype.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Prototype/devel/perl-HTML-Prototype.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-HTML-Prototype.spec 18 Apr 2009 03:12:54 -0000 1.2 +++ perl-HTML-Prototype.spec 26 Jul 2009 06:27:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-HTML-Prototype Version: 1.48 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate HTML and Javascript for the Prototype library Group: Development/Libraries @@ -52,5 +52,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.48-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Tom "spot" Callaway - 1.48-1 - do a build here From jkeating at fedoraproject.org Sun Jul 26 06:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:27:52 +0000 (UTC) Subject: rpms/perl-HTML-RewriteAttributes/devel perl-HTML-RewriteAttributes.spec, 1.2, 1.3 Message-ID: <20090726062752.A11EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-RewriteAttributes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25887 Modified Files: perl-HTML-RewriteAttributes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-RewriteAttributes.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-RewriteAttributes/devel/perl-HTML-RewriteAttributes.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-HTML-RewriteAttributes.spec 26 Feb 2009 17:43:54 -0000 1.2 +++ perl-HTML-RewriteAttributes.spec 26 Jul 2009 06:27:52 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-HTML-RewriteAttributes Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Concise attribute rewriting License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:28:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:28:07 +0000 (UTC) Subject: rpms/perl-HTML-Scrubber/devel perl-HTML-Scrubber.spec,1.7,1.8 Message-ID: <20090726062807.F170111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Scrubber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26043 Modified Files: perl-HTML-Scrubber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Scrubber.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Scrubber/devel/perl-HTML-Scrubber.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-HTML-Scrubber.spec 26 Feb 2009 17:44:51 -0000 1.7 +++ perl-HTML-Scrubber.spec 26 Jul 2009 06:28:07 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-HTML-Scrubber Version: 0.08 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library for scrubbing/sanitizing html Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.08-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:28:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:28:21 +0000 (UTC) Subject: rpms/perl-HTML-SimpleParse/devel perl-HTML-SimpleParse.spec, 1.1, 1.2 Message-ID: <20090726062821.E772C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-SimpleParse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26192 Modified Files: perl-HTML-SimpleParse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-SimpleParse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-SimpleParse/devel/perl-HTML-SimpleParse.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-SimpleParse.spec 1 Mar 2009 05:00:32 -0000 1.1 +++ perl-HTML-SimpleParse.spec 26 Jul 2009 06:28:21 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-SimpleParse Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bare-bones HTML parser License: GPL+ or Artistic Group: Development/Libraries @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Iain Arnell 0.12-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:28:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:28:37 +0000 (UTC) Subject: rpms/perl-HTML-Strip/devel perl-HTML-Strip.spec,1.1,1.2 Message-ID: <20090726062837.5CBD311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Strip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26360 Modified Files: perl-HTML-Strip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Strip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Strip/devel/perl-HTML-Strip.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-Strip.spec 17 Mar 2009 14:43:23 -0000 1.1 +++ perl-HTML-Strip.spec 26 Jul 2009 06:28:37 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-Strip Version: 1.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for stripping HTML markup from text License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Iain Arnell 1.06-1 - Specfile autogenerated by cpanspec 1.77. - don't "provide" private Perl libs From jkeating at fedoraproject.org Sun Jul 26 06:28:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:28:52 +0000 (UTC) Subject: rpms/perl-HTML-StripScripts/devel perl-HTML-StripScripts.spec, 1.1, 1.2 Message-ID: <20090726062852.2622311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-StripScripts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26507 Modified Files: perl-HTML-StripScripts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-StripScripts.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-StripScripts/devel/perl-HTML-StripScripts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-StripScripts.spec 29 Apr 2009 17:36:40 -0000 1.1 +++ perl-HTML-StripScripts.spec 26 Jul 2009 06:28:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Strip scripting constructs out of HTML License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Xavier Bachelot 1.04-1 - Specfile autogenerated by cpanspec 1.77. - Fix BR:s. From jkeating at fedoraproject.org Sun Jul 26 06:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:29:07 +0000 (UTC) Subject: rpms/perl-HTML-StripScripts-Parser/devel perl-HTML-StripScripts-Parser.spec, 1.1, 1.2 Message-ID: <20090726062907.B48FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-StripScripts-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26672 Modified Files: perl-HTML-StripScripts-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-StripScripts-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-StripScripts-Parser/devel/perl-HTML-StripScripts-Parser.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-StripScripts-Parser.spec 3 May 2009 21:25:48 -0000 1.1 +++ perl-HTML-StripScripts-Parser.spec 26 Jul 2009 06:29:07 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-StripScripts-Parser Version: 1.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XSS filter using HTML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Xavier Bachelot 1.02-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:29:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:29:23 +0000 (UTC) Subject: rpms/perl-HTML-Table/devel perl-HTML-Table.spec,1.8,1.9 Message-ID: <20090726062923.E18E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26824 Modified Files: perl-HTML-Table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Table.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Table/devel/perl-HTML-Table.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-HTML-Table.spec 26 Feb 2009 17:45:45 -0000 1.8 +++ perl-HTML-Table.spec 26 Jul 2009 06:29:23 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-HTML-Table Version: 2.08a -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create HTML tables using simple interface License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.08a-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.08a-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:29:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:29:39 +0000 (UTC) Subject: rpms/perl-HTML-TableExtract/devel perl-HTML-TableExtract.spec, 1.8, 1.9 Message-ID: <20090726062939.5BA4D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-TableExtract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27042 Modified Files: perl-HTML-TableExtract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-TableExtract.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-TableExtract/devel/perl-HTML-TableExtract.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-HTML-TableExtract.spec 26 Feb 2009 17:46:40 -0000 1.8 +++ perl-HTML-TableExtract.spec 26 Jul 2009 06:29:39 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-HTML-TableExtract Version: 2.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Perl module for extracting content in HTML tables Group: Development/Libraries License: GPL+ or Artistic @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:29:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:29:55 +0000 (UTC) Subject: rpms/perl-HTML-TagCloud/devel perl-HTML-TagCloud.spec,1.1,1.2 Message-ID: <20090726062955.CF5A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-TagCloud/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27170 Modified Files: perl-HTML-TagCloud.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-TagCloud.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-TagCloud/devel/perl-HTML-TagCloud.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-TagCloud.spec 6 Mar 2009 05:34:34 -0000 1.1 +++ perl-HTML-TagCloud.spec 26 Jul 2009 06:29:55 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-TagCloud Version: 0.34 -Release: 1%{?dist} +Release: 2%{?dist} # lib/HTML/TagCloud.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Chris Weyl 0.34-1 - submission From jkeating at fedoraproject.org Sun Jul 26 06:30:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:30:13 +0000 (UTC) Subject: rpms/perl-HTML-Tagset/devel perl-HTML-Tagset.spec,1.22,1.23 Message-ID: <20090726063013.7185411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Tagset/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27359 Modified Files: perl-HTML-Tagset.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Tagset.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Tagset/devel/perl-HTML-Tagset.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-HTML-Tagset.spec 26 Feb 2009 17:47:37 -0000 1.22 +++ perl-HTML-Tagset.spec 26 Jul 2009 06:30:13 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-HTML-Tagset Version: 3.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: HTML::Tagset - data tables useful in parsing HTML Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:30:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:30:33 +0000 (UTC) Subject: rpms/perl-HTML-Template/devel perl-HTML-Template.spec,1.16,1.17 Message-ID: <20090726063033.EDDFF11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Template/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27548 Modified Files: perl-HTML-Template.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Template/devel/perl-HTML-Template.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-HTML-Template.spec 26 Feb 2009 19:57:59 -0000 1.16 +++ perl-HTML-Template.spec 26 Jul 2009 06:30:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-HTML-Template Version: 2.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module to use HTML Templates Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:30:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:30:47 +0000 (UTC) Subject: rpms/perl-HTML-Template-Expr/devel perl-HTML-Template-Expr.spec, 1.11, 1.12 Message-ID: <20090726063047.E28CB11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Template-Expr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27729 Modified Files: perl-HTML-Template-Expr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Template-Expr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Template-Expr/devel/perl-HTML-Template-Expr.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-HTML-Template-Expr.spec 26 Feb 2009 17:49:26 -0000 1.11 +++ perl-HTML-Template-Expr.spec 26 Jul 2009 06:30:47 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-HTML-Template-Expr Version: 0.07 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Expression support extension for HTML::Template License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/HTML::Template::Expr.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:31:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:31:02 +0000 (UTC) Subject: rpms/perl-HTML-Template-Pro/devel perl-HTML-Template-Pro.spec, 1.6, 1.7 Message-ID: <20090726063102.9328E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Template-Pro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27890 Modified Files: perl-HTML-Template-Pro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Template-Pro.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Template-Pro/devel/perl-HTML-Template-Pro.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-HTML-Template-Pro.spec 8 May 2009 06:32:20 -0000 1.6 +++ perl-HTML-Template-Pro.spec 26 Jul 2009 06:31:02 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-HTML-Template-Pro Version: 0.74 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl/XS module to use HTML Templates from CGI scripts License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.74-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Lubomir Rintel (Good Data) - 0.74-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 06:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:31:16 +0000 (UTC) Subject: rpms/perl-HTML-Tidy/devel perl-HTML-Tidy.spec,1.3,1.4 Message-ID: <20090726063116.B431911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Tidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28055 Modified Files: perl-HTML-Tidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Tidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Tidy/devel/perl-HTML-Tidy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTML-Tidy.spec 26 Feb 2009 17:51:17 -0000 1.3 +++ perl-HTML-Tidy.spec 26 Jul 2009 06:31:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTML-Tidy Version: 1.08 -Release: 4%{?dist} +Release: 5%{?dist} Summary: (X)HTML cleanup in a Perl object License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:31:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:31:31 +0000 (UTC) Subject: rpms/perl-HTML-Tiny/devel perl-HTML-Tiny.spec,1.5,1.6 Message-ID: <20090726063131.D8AFB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28208 Modified Files: perl-HTML-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Tiny/devel/perl-HTML-Tiny.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-HTML-Tiny.spec 11 Mar 2009 04:23:14 -0000 1.5 +++ perl-HTML-Tiny.spec 26 Jul 2009 06:31:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-HTML-Tiny Version: 1.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Lightweight, dependency free HTML/XML generation License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Iain Arnell 1.05-3 - no more explicit BR perl-Test-Simple From jkeating at fedoraproject.org Sun Jul 26 06:31:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:31:45 +0000 (UTC) Subject: rpms/perl-HTML-Toc/devel perl-HTML-Toc.spec,1.1,1.2 Message-ID: <20090726063145.A4FAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Toc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28352 Modified Files: perl-HTML-Toc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Toc.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Toc/devel/perl-HTML-Toc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-Toc.spec 4 May 2009 23:23:50 -0000 1.1 +++ perl-HTML-Toc.spec 26 Jul 2009 06:31:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-Toc Version: 1.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate, insert and update HTML Table of Contents License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 1.11-1 - Specfile autogenerated by cpanspec 1.77. - Ensure that man pages are generated From jkeating at fedoraproject.org Sun Jul 26 06:32:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:32:00 +0000 (UTC) Subject: rpms/perl-HTML-TokeParser-Simple/devel perl-HTML-TokeParser-Simple.spec, 1.2, 1.3 Message-ID: <20090726063200.8A3C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-TokeParser-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28496 Modified Files: perl-HTML-TokeParser-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-TokeParser-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-TokeParser-Simple/devel/perl-HTML-TokeParser-Simple.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-HTML-TokeParser-Simple.spec 26 Feb 2009 17:53:14 -0000 1.2 +++ perl-HTML-TokeParser-Simple.spec 26 Jul 2009 06:32:00 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-HTML-TokeParser-Simple Version: 3.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easy to use HTML::TokeParser interface License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:32:18 +0000 (UTC) Subject: rpms/perl-HTML-Tree/devel perl-HTML-Tree.spec,1.15,1.16 Message-ID: <20090726063218.CCF0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-Tree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28682 Modified Files: perl-HTML-Tree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-Tree.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-Tree/devel/perl-HTML-Tree.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-HTML-Tree.spec 26 Feb 2009 19:59:42 -0000 1.15 +++ perl-HTML-Tree.spec 26 Jul 2009 06:32:18 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-HTML-Tree Version: 3.23 -Release: 7%{?dist} +Release: 8%{?dist} Summary: HTML tree handling modules for Perl Group: Development/Libraries License: GPL+ or Artistic @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/HTML::*3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.23-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:3.23-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:32:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:32:32 +0000 (UTC) Subject: rpms/perl-HTML-TreeBuilder-XPath/devel perl-HTML-TreeBuilder-XPath.spec, 1.2, 1.3 Message-ID: <20090726063232.A0CF911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-TreeBuilder-XPath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28849 Modified Files: perl-HTML-TreeBuilder-XPath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-TreeBuilder-XPath.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-TreeBuilder-XPath/devel/perl-HTML-TreeBuilder-XPath.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-HTML-TreeBuilder-XPath.spec 23 May 2009 07:06:27 -0000 1.2 +++ perl-HTML-TreeBuilder-XPath.spec 26 Jul 2009 06:32:32 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-HTML-TreeBuilder-XPath Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add XPath support to HTML::TreeBuilder License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Iain Arnell 0.11-1 - update to latest upstream From jkeating at fedoraproject.org Sun Jul 26 06:32:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:32:49 +0000 (UTC) Subject: rpms/perl-HTML-WikiConverter/devel perl-HTML-WikiConverter.spec, 1.1, 1.2 Message-ID: <20090726063249.9B85E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-WikiConverter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29008 Modified Files: perl-HTML-WikiConverter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-WikiConverter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-WikiConverter/devel/perl-HTML-WikiConverter.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-WikiConverter.spec 7 May 2009 03:26:48 -0000 1.1 +++ perl-HTML-WikiConverter.spec 26 Jul 2009 06:32:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-WikiConverter Version: 0.68 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module to convert HTML to wiki markup License: GPL+ or Artistic Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.68-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Iain Arnell 0.68-1 - Specfile autogenerated by cpanspec 1.77. - Create sub-package for html2wiki From jkeating at fedoraproject.org Sun Jul 26 06:33:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:33:05 +0000 (UTC) Subject: rpms/perl-HTML-WikiConverter-Markdown/devel perl-HTML-WikiConverter-Markdown.spec, 1.1, 1.2 Message-ID: <20090726063305.5EF8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTML-WikiConverter-Markdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29187 Modified Files: perl-HTML-WikiConverter-Markdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTML-WikiConverter-Markdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTML-WikiConverter-Markdown/devel/perl-HTML-WikiConverter-Markdown.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTML-WikiConverter-Markdown.spec 11 May 2009 03:03:58 -0000 1.1 +++ perl-HTML-WikiConverter-Markdown.spec 26 Jul 2009 06:33:05 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTML-WikiConverter-Markdown Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert HTML to Markdown markup License: GPL+ or Artistic Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 09 2009 Iain Arnell 0.05-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 06:33:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:33:22 +0000 (UTC) Subject: rpms/perl-HTTP-Body/devel perl-HTTP-Body.spec,1.9,1.10 Message-ID: <20090726063322.4084611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Body/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29329 Modified Files: perl-HTTP-Body.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Body.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Body/devel/perl-HTTP-Body.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-HTTP-Body.spec 26 Feb 2009 20:00:39 -0000 1.9 +++ perl-HTTP-Body.spec 26 Jul 2009 06:33:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-HTTP-Body Version: 1.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: HTTP Body Parser Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:33:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:33:37 +0000 (UTC) Subject: rpms/perl-HTTP-BrowserDetect/devel perl-HTTP-BrowserDetect.spec, 1.7, 1.8 Message-ID: <20090726063337.4611111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-BrowserDetect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29496 Modified Files: perl-HTTP-BrowserDetect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-BrowserDetect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-BrowserDetect/devel/perl-HTTP-BrowserDetect.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-HTTP-BrowserDetect.spec 26 Feb 2009 17:56:02 -0000 1.7 +++ perl-HTTP-BrowserDetect.spec 26 Jul 2009 06:33:36 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-HTTP-BrowserDetect Version: 0.99 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Determine the Web browser, version, and platform from an HTTP user agent string License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.99-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:33:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:33:51 +0000 (UTC) Subject: rpms/perl-HTTP-Cache-Transparent/devel perl-HTTP-Cache-Transparent.spec, 1.3, 1.4 Message-ID: <20090726063351.BC44011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Cache-Transparent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29636 Modified Files: perl-HTTP-Cache-Transparent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Cache-Transparent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Cache-Transparent/devel/perl-HTTP-Cache-Transparent.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTTP-Cache-Transparent.spec 26 Feb 2009 20:01:28 -0000 1.3 +++ perl-HTTP-Cache-Transparent.spec 26 Jul 2009 06:33:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTTP-Cache-Transparent Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cache the result of http get-requests persistently Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:34:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:34:06 +0000 (UTC) Subject: rpms/perl-HTTP-DAV/devel perl-HTTP-DAV.spec,1.5,1.6 Message-ID: <20090726063406.BDE2C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-DAV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29801 Modified Files: perl-HTTP-DAV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-DAV.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-DAV/devel/perl-HTTP-DAV.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-HTTP-DAV.spec 26 Feb 2009 20:02:20 -0000 1.5 +++ perl-HTTP-DAV.spec 26 Jul 2009 06:34:06 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-HTTP-DAV Version: 0.35 -Release: 3%{?dist} +Release: 4%{?dist} Summary: WebDAV client library for Perl5 License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.35-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.35-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From lucilanga at fedoraproject.org Sun Jul 26 06:34:12 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Sun, 26 Jul 2009 06:34:12 +0000 (UTC) Subject: rpms/fuse-emulator/F-10 .cvsignore, 1.7, 1.8 fuse-emulator.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090726063412.048D911C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/fuse-emulator/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29854 Modified Files: .cvsignore fuse-emulator.spec sources Log Message: * Sun Jul 26 2009 Lucian Langa - 0.10.0.2-1 - new upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 13 Dec 2008 16:49:40 -0000 1.7 +++ .cvsignore 26 Jul 2009 06:34:11 -0000 1.8 @@ -1 +1 @@ -fuse-0.10.0.1-noroms.tar.gz +fuse-0.10.0.2-noroms.tar.gz Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-10/fuse-emulator.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- fuse-emulator.spec 13 Dec 2008 16:49:40 -0000 1.12 +++ fuse-emulator.spec 26 Jul 2009 06:34:11 -0000 1.13 @@ -1,5 +1,5 @@ Name: fuse-emulator -Version: 0.10.0.1 +Version: 0.10.0.2 Release: 1%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Lucian Langa - 0.10.0.2-1 +- new upstream release + * Sat Dec 13 2008 Lucian Langa - 0.10.0.1-1 - new critical fix upstream release Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 13 Dec 2008 16:49:40 -0000 1.8 +++ sources 26 Jul 2009 06:34:11 -0000 1.9 @@ -1 +1 @@ -fcc37e6ef6278ed526b3517dc1777374 fuse-0.10.0.1-noroms.tar.gz +633cd78c19a615f523831e976487c744 fuse-0.10.0.2-noroms.tar.gz From jkeating at fedoraproject.org Sun Jul 26 06:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:34:22 +0000 (UTC) Subject: rpms/perl-HTTP-Proxy/devel perl-HTTP-Proxy.spec,1.10,1.11 Message-ID: <20090726063422.122F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Proxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30007 Modified Files: perl-HTTP-Proxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Proxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Proxy/devel/perl-HTTP-Proxy.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-HTTP-Proxy.spec 26 Feb 2009 20:03:09 -0000 1.10 +++ perl-HTTP-Proxy.spec 26 Jul 2009 06:34:21 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-HTTP-Proxy Version: 0.23 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A pure Perl HTTP proxy Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:34:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:34:36 +0000 (UTC) Subject: rpms/perl-HTTP-Recorder/devel perl-HTTP-Recorder.spec,1.3,1.4 Message-ID: <20090726063436.C676A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Recorder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30250 Modified Files: perl-HTTP-Recorder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Recorder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Recorder/devel/perl-HTTP-Recorder.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTTP-Recorder.spec 26 Feb 2009 17:59:42 -0000 1.3 +++ perl-HTTP-Recorder.spec 26 Jul 2009 06:34:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTTP-Recorder Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Record interaction with web sites Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:34:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:34:51 +0000 (UTC) Subject: rpms/perl-HTTP-Request-AsCGI/devel perl-HTTP-Request-AsCGI.spec, 1.6, 1.7 Message-ID: <20090726063451.EBA5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Request-AsCGI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30388 Modified Files: perl-HTTP-Request-AsCGI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Request-AsCGI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Request-AsCGI/devel/perl-HTTP-Request-AsCGI.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-HTTP-Request-AsCGI.spec 19 May 2009 05:49:13 -0000 1.6 +++ perl-HTTP-Request-AsCGI.spec 26 Jul 2009 06:34:51 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-HTTP-Request-AsCGI Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Setup a CGI enviroment from a HTTP::Request License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Chris Weyl 0.9-1 - auto-update to 0.9 (by cpan-spec-update 0.01) - added a new br on perl(IO::File) (version 0) From jkeating at fedoraproject.org Sun Jul 26 06:35:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:35:21 +0000 (UTC) Subject: rpms/perl-HTTP-Response-Encoding/devel perl-HTTP-Response-Encoding.spec, 1.3, 1.4 Message-ID: <20090726063521.E52AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Response-Encoding/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30658 Modified Files: perl-HTTP-Response-Encoding.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Response-Encoding.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Response-Encoding/devel/perl-HTTP-Response-Encoding.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-HTTP-Response-Encoding.spec 26 Feb 2009 20:04:50 -0000 1.3 +++ perl-HTTP-Response-Encoding.spec 26 Jul 2009 06:35:21 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-HTTP-Response-Encoding Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: HTTP::Response::Encoding Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:35:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:35:36 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple/devel perl-HTTP-Server-Simple.spec, 1.17, 1.18 Message-ID: <20090726063536.B193D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30839 Modified Files: perl-HTTP-Server-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Server-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple/devel/perl-HTTP-Server-Simple.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-HTTP-Server-Simple.spec 28 Feb 2009 02:16:29 -0000 1.17 +++ perl-HTTP-Server-Simple.spec 26 Jul 2009 06:35:36 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-HTTP-Server-Simple Version: 0.38 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Very simple standalone HTTP daemon Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.38-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Ralf Cors?pius - 0.38-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 06:35:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:35:50 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple-Mason/devel perl-HTTP-Server-Simple-Mason.spec, 1.9, 1.10 Message-ID: <20090726063550.966BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30963 Modified Files: perl-HTTP-Server-Simple-Mason.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Server-Simple-Mason.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Mason/devel/perl-HTTP-Server-Simple-Mason.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-HTTP-Server-Simple-Mason.spec 20 Jul 2009 16:34:29 -0000 1.9 +++ perl-HTTP-Server-Simple-Mason.spec 26 Jul 2009 06:35:50 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-HTTP-Server-Simple-Mason Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTTP::Server::Simple::Mason Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ make test %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius - 0.12-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 06:36:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:36:34 +0000 (UTC) Subject: rpms/perl-Hardware-Vhdl-Lexer/devel perl-Hardware-Vhdl-Lexer.spec, 1.2, 1.3 Message-ID: <20090726063634.693FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hardware-Vhdl-Lexer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31413 Modified Files: perl-Hardware-Vhdl-Lexer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hardware-Vhdl-Lexer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hardware-Vhdl-Lexer/devel/perl-Hardware-Vhdl-Lexer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Hardware-Vhdl-Lexer.spec 26 Feb 2009 18:06:23 -0000 1.2 +++ perl-Hardware-Vhdl-Lexer.spec 26 Jul 2009 06:36:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Hardware-Vhdl-Lexer Version: 1.00 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Split VHDL code into lexical tokens License: GPL+ or Artistic @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.00-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:36:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:36:17 +0000 (UTC) Subject: rpms/perl-Hardware-Verilog-Parser/devel perl-Hardware-Verilog-Parser.spec, 1.2, 1.3 Message-ID: <20090726063617.D6E1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hardware-Verilog-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31250 Modified Files: perl-Hardware-Verilog-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hardware-Verilog-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hardware-Verilog-Parser/devel/perl-Hardware-Verilog-Parser.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Hardware-Verilog-Parser.spec 26 Feb 2009 18:05:26 -0000 1.2 +++ perl-Hardware-Verilog-Parser.spec 26 Jul 2009 06:36:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Hardware-Verilog-Parser Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Complete grammar for parsing Verilog code using perl License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:36:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:36:03 +0000 (UTC) Subject: rpms/perl-HTTP-Server-Simple-Static/devel perl-HTTP-Server-Simple-Static.spec, 1.1, 1.2 Message-ID: <20090726063603.9258D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Static/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31103 Modified Files: perl-HTTP-Server-Simple-Static.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Server-Simple-Static.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Server-Simple-Static/devel/perl-HTTP-Server-Simple-Static.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-HTTP-Server-Simple-Static.spec 30 Mar 2009 22:11:01 -0000 1.1 +++ perl-HTTP-Server-Simple-Static.spec 26 Jul 2009 06:36:03 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-HTTP-Server-Simple-Static Version: 0.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Serve static files with HTTP::Server::Simple Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Tom "spot" Callaway - 0.07-2 - package example.pl as %%doc From jkeating at fedoraproject.org Sun Jul 26 06:36:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:36:48 +0000 (UTC) Subject: rpms/perl-Hardware-Vhdl-Parser/devel perl-Hardware-Vhdl-Parser.spec, 1.2, 1.3 Message-ID: <20090726063648.0D38C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hardware-Vhdl-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31552 Modified Files: perl-Hardware-Vhdl-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hardware-Vhdl-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hardware-Vhdl-Parser/devel/perl-Hardware-Vhdl-Parser.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Hardware-Vhdl-Parser.spec 26 Feb 2009 18:07:19 -0000 1.2 +++ perl-Hardware-Vhdl-Parser.spec 26 Jul 2009 06:36:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Hardware-Vhdl-Parser Version: 0.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Complete grammar for parsing VHDL code using perl License: GPL+ or Artistic @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:37:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:37:49 +0000 (UTC) Subject: rpms/perl-Hash-Merge/devel perl-Hash-Merge.spec,1.1,1.2 Message-ID: <20090726063749.31E8F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-Merge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32147 Modified Files: perl-Hash-Merge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-Merge.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge/devel/perl-Hash-Merge.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Hash-Merge.spec 1 Jul 2009 13:59:28 -0000 1.1 +++ perl-Hash-Merge.spec 26 Jul 2009 06:37:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Hash-Merge Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Merges arbitrary deep hashes into a single hash Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway - 0.11-2 - fix permissions (silence rpmlint too) - own Hash/ directory From jkeating at fedoraproject.org Sun Jul 26 06:38:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:38:04 +0000 (UTC) Subject: rpms/perl-Hash-Merge-Simple/devel perl-Hash-Merge-Simple.spec, 1.1, 1.2 Message-ID: <20090726063804.2272611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-Merge-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32290 Modified Files: perl-Hash-Merge-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-Merge-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Merge-Simple/devel/perl-Hash-Merge-Simple.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Hash-Merge-Simple.spec 7 Mar 2009 20:54:44 -0000 1.1 +++ perl-Hash-Merge-Simple.spec 26 Jul 2009 06:38:03 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Hash-Merge-Simple Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Hash/Merge/Simple.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Chris Weyl 0.04-1 - submission From jkeating at fedoraproject.org Sun Jul 26 06:38:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:38:19 +0000 (UTC) Subject: rpms/perl-Hash-Util-FieldHash-Compat/devel perl-Hash-Util-FieldHash-Compat.spec, 1.2, 1.3 Message-ID: <20090726063819.1868911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-Util-FieldHash-Compat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32444 Modified Files: perl-Hash-Util-FieldHash-Compat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-Util-FieldHash-Compat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Util-FieldHash-Compat/devel/perl-Hash-Util-FieldHash-Compat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Hash-Util-FieldHash-Compat.spec 26 Feb 2009 18:09:59 -0000 1.2 +++ perl-Hash-Util-FieldHash-Compat.spec 26 Jul 2009 06:38:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Hash-Util-FieldHash-Compat Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Use Hash::Util::FieldHash or ties, depending on availability License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:38:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:38:34 +0000 (UTC) Subject: rpms/perl-Hash-WithDefaults/devel perl-Hash-WithDefaults.spec, 1.5, 1.6 Message-ID: <20090726063834.1785611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-WithDefaults/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32588 Modified Files: perl-Hash-WithDefaults.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-WithDefaults.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-WithDefaults/devel/perl-Hash-WithDefaults.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Hash-WithDefaults.spec 26 Feb 2009 20:05:49 -0000 1.5 +++ perl-Hash-WithDefaults.spec 26 Jul 2009 06:38:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Hash-WithDefaults Version: 0.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Class for hashes with key-casing requirements supporting defaults License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:38:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:38:49 +0000 (UTC) Subject: rpms/perl-Heap/devel perl-Heap.spec,1.8,1.9 Message-ID: <20090726063849.0670B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Heap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32728 Modified Files: perl-Heap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Heap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Heap/devel/perl-Heap.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Heap.spec 26 Feb 2009 18:11:50 -0000 1.8 +++ perl-Heap.spec 26 Jul 2009 06:38:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Heap Version: 0.80 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for keeping data partially sorted Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.80-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.80-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:39:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:39:03 +0000 (UTC) Subject: rpms/perl-Hook-LexWrap/devel perl-Hook-LexWrap.spec,1.11,1.12 Message-ID: <20090726063903.ED15C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hook-LexWrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv419 Modified Files: perl-Hook-LexWrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hook-LexWrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hook-LexWrap/devel/perl-Hook-LexWrap.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Hook-LexWrap.spec 26 Feb 2009 18:12:46 -0000 1.11 +++ perl-Hook-LexWrap.spec 26 Jul 2009 06:39:03 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Hook-LexWrap Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lexically scoped subroutine wrappers Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:39:19 +0000 (UTC) Subject: rpms/perl-IO-AIO/devel perl-IO-AIO.spec,1.7,1.8 Message-ID: <20090726063919.1465711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-AIO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv567 Modified Files: perl-IO-AIO.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-AIO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-AIO/devel/perl-IO-AIO.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-IO-AIO.spec 26 Feb 2009 18:13:44 -0000 1.7 +++ perl-IO-AIO.spec 26 Jul 2009 06:39:18 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-IO-AIO Version: 3.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Asynchronous Input/Output License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 3.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:39:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:39:34 +0000 (UTC) Subject: rpms/perl-IO-All/devel perl-IO-All.spec,1.13,1.14 Message-ID: <20090726063934.2D02211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-All/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv725 Modified Files: perl-IO-All.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-All.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-All/devel/perl-IO-All.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-IO-All.spec 26 Feb 2009 20:06:40 -0000 1.13 +++ perl-IO-All.spec 26 Jul 2009 06:39:34 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-IO-All Version: 0.39 -Release: 3%{?dist} +Release: 4%{?dist} Summary: IO::All Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.39-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.39-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:39:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:39:50 +0000 (UTC) Subject: rpms/perl-IO-Capture/devel perl-IO-Capture.spec,1.6,1.7 Message-ID: <20090726063950.206DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Capture/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv868 Modified Files: perl-IO-Capture.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Capture.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Capture/devel/perl-IO-Capture.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-IO-Capture.spec 26 Feb 2009 18:15:37 -0000 1.6 +++ perl-IO-Capture.spec 26 Jul 2009 06:39:49 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-IO-Capture Version: 0.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Abstract Base Class to build modules to capture output Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:40:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:40:05 +0000 (UTC) Subject: rpms/perl-IO-CaptureOutput/devel perl-IO-CaptureOutput.spec, 1.10, 1.11 Message-ID: <20090726064005.744C111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-CaptureOutput/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1007 Modified Files: perl-IO-CaptureOutput.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-CaptureOutput.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-CaptureOutput/devel/perl-IO-CaptureOutput.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-IO-CaptureOutput.spec 13 Mar 2009 20:31:53 -0000 1.10 +++ perl-IO-CaptureOutput.spec 26 Jul 2009 06:40:05 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-IO-CaptureOutput Version: 1.1101 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Capture STDOUT/STDERR from subprocesses and XS/C modules Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.1101-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.1101-1 - update to 1.1101 From jkeating at fedoraproject.org Sun Jul 26 06:40:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:40:20 +0000 (UTC) Subject: rpms/perl-IO-Compress-Bzip2/devel perl-IO-Compress-Bzip2.spec, 1.6, 1.7 Message-ID: <20090726064020.6F60611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Compress-Bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1140 Modified Files: perl-IO-Compress-Bzip2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Compress-Bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Compress-Bzip2/devel/perl-IO-Compress-Bzip2.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-IO-Compress-Bzip2.spec 26 Feb 2009 20:08:20 -0000 1.6 +++ perl-IO-Compress-Bzip2.spec 26 Jul 2009 06:40:20 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-IO-Compress-Bzip2 Version: 2.005 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl interface to allow reading and writing of bzip2 data Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.005-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.005-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:40:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:40:35 +0000 (UTC) Subject: rpms/perl-IO-Digest/devel perl-IO-Digest.spec,1.5,1.6 Message-ID: <20090726064035.7F62A11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Digest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1314 Modified Files: perl-IO-Digest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Digest.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Digest/devel/perl-IO-Digest.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-IO-Digest.spec 26 Feb 2009 20:09:08 -0000 1.5 +++ perl-IO-Digest.spec 26 Jul 2009 06:40:35 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-IO-Digest Version: 0.10 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Calculate digests while reading or writing License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.10-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:40:49 +0000 (UTC) Subject: rpms/perl-IO-Interface/devel perl-IO-Interface.spec,1.11,1.12 Message-ID: <20090726064049.C1D5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Interface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1483 Modified Files: perl-IO-Interface.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Interface/devel/perl-IO-Interface.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-IO-Interface.spec 13 Mar 2009 20:34:18 -0000 1.11 +++ perl-IO-Interface.spec 26 Jul 2009 06:40:49 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-IO-Interface Version: 1.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for accessing network card configuration information Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.05-1 - update to 1.05 From jkeating at fedoraproject.org Sun Jul 26 06:41:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:41:03 +0000 (UTC) Subject: rpms/perl-IO-LockedFile/devel perl-IO-LockedFile.spec,1.4,1.5 Message-ID: <20090726064103.C863111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-LockedFile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1660 Modified Files: perl-IO-LockedFile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-LockedFile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-LockedFile/devel/perl-IO-LockedFile.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-IO-LockedFile.spec 26 Feb 2009 20:10:59 -0000 1.4 +++ perl-IO-LockedFile.spec 26 Jul 2009 06:41:03 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-IO-LockedFile Version: 0.23 -Release: 5 +Release: 6 Summary: Something License: GPL+ or Artistic Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.23-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.23-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:41:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:41:17 +0000 (UTC) Subject: rpms/perl-IO-Multiplex/devel perl-IO-Multiplex.spec,1.8,1.9 Message-ID: <20090726064117.96C7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Multiplex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1802 Modified Files: perl-IO-Multiplex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Multiplex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Multiplex/devel/perl-IO-Multiplex.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-IO-Multiplex.spec 11 May 2009 20:16:08 -0000 1.8 +++ perl-IO-Multiplex.spec 26 Jul 2009 06:41:17 -0000 1.9 @@ -1,7 +1,7 @@ Summary: IO-Multiplex module for perl Name: perl-IO-Multiplex Version: 1.10 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/IO-Multiplex/ @@ -45,6 +45,9 @@ one or more listen sockets. %{_mandir}/man3/IO::Multiplex.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Paul Howarth - 1.10-4 - Fix argument order for find with -depth - Include TODO From jkeating at fedoraproject.org Sun Jul 26 06:41:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:41:31 +0000 (UTC) Subject: rpms/perl-IO-Null/devel perl-IO-Null.spec,1.5,1.6 Message-ID: <20090726064131.E775C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Null/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1927 Modified Files: perl-IO-Null.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Null.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Null/devel/perl-IO-Null.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-IO-Null.spec 26 Feb 2009 18:22:04 -0000 1.5 +++ perl-IO-Null.spec 26 Jul 2009 06:41:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-IO-Null Version: 1.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Class for null filehandles License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:41:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:41:45 +0000 (UTC) Subject: rpms/perl-IO-Prompt/devel perl-IO-Prompt.spec,1.5,1.6 Message-ID: <20090726064145.C32CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Prompt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2063 Modified Files: perl-IO-Prompt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Prompt.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Prompt/devel/perl-IO-Prompt.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-IO-Prompt.spec 26 Feb 2009 18:23:00 -0000 1.5 +++ perl-IO-Prompt.spec 26 Jul 2009 06:41:45 -0000 1.6 @@ -2,7 +2,7 @@ Name: perl-IO-Prompt Version: 0.99.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Interactively prompt for user input Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.99.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.99.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:42:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:42:00 +0000 (UTC) Subject: rpms/perl-IO-Socket-INET6/devel perl-IO-Socket-INET6.spec,1.8,1.9 Message-ID: <20090726064200.5C6D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Socket-INET6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2198 Modified Files: perl-IO-Socket-INET6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Socket-INET6.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-INET6/devel/perl-IO-Socket-INET6.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-IO-Socket-INET6.spec 13 Apr 2009 16:15:04 -0000 1.8 +++ perl-IO-Socket-INET6.spec 26 Jul 2009 06:41:59 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-IO-Socket-INET6 Version: 2.56 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl Object interface for AF_INET|AF_INET6 domain sockets Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.56-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Warren Togami - 2.56-1 - 2.56 From jkeating at fedoraproject.org Sun Jul 26 06:42:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:42:15 +0000 (UTC) Subject: rpms/perl-IO-Socket-SSL/devel perl-IO-Socket-SSL.spec,1.22,1.23 Message-ID: <20090726064215.1324311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2397 Modified Files: perl-IO-Socket-SSL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Socket-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/devel/perl-IO-Socket-SSL.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-IO-Socket-SSL.spec 4 Jul 2009 21:19:59 -0000 1.22 +++ perl-IO-Socket-SSL.spec 26 Jul 2009 06:42:14 -0000 1.23 @@ -5,7 +5,7 @@ Name: perl-IO-Socket-SSL Version: 1.26 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl library for transparent SSL Group: Development/Libraries License: GPL+ or Artistic @@ -60,6 +60,9 @@ done %{_mandir}/man3/IO::Socket::SSL.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 4 2009 Paul Howarth - 1.26-1 - Update to 1.26 (verify_hostname_of_cert matched only the prefix for the hostname when no wildcard was given, e.g. www.example.org matched against a From jkeating at fedoraproject.org Sun Jul 26 06:42:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:42:29 +0000 (UTC) Subject: rpms/perl-IO-String/devel perl-IO-String.spec,1.12,1.13 Message-ID: <20090726064229.DC1F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-String/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2560 Modified Files: perl-IO-String.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-String.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-String/devel/perl-IO-String.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-IO-String.spec 26 Feb 2009 20:12:46 -0000 1.12 +++ perl-IO-String.spec 26 Jul 2009 06:42:29 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-IO-String Version: 1.08 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Emulate file interface for in-core strings Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:42:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:42:43 +0000 (UTC) Subject: rpms/perl-IO-TieCombine/devel perl-IO-TieCombine.spec,1.3,1.4 Message-ID: <20090726064243.D4B9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-TieCombine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2695 Modified Files: perl-IO-TieCombine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-TieCombine.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-TieCombine/devel/perl-IO-TieCombine.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-IO-TieCombine.spec 26 Feb 2009 20:13:37 -0000 1.3 +++ perl-IO-TieCombine.spec 26 Jul 2009 06:42:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-IO-TieCombine Version: 1.000 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/IO/TieCombine.pm License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.000-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.000-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:42:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:42:58 +0000 (UTC) Subject: rpms/perl-IO-Tty/devel perl-IO-Tty.spec,1.21,1.22 Message-ID: <20090726064258.5270211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-Tty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2817 Modified Files: perl-IO-Tty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-Tty.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-Tty/devel/perl-IO-Tty.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-IO-Tty.spec 17 May 2009 06:28:32 -0000 1.21 +++ perl-IO-Tty.spec 26 Jul 2009 06:42:57 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-IO-Tty Version: 1.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to pseudo tty's License: GPL+ or Artistic @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Chris Weyl - 1.08-2 - filter out private Perl .so provides From jkeating at fedoraproject.org Sun Jul 26 06:43:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:43:17 +0000 (UTC) Subject: rpms/perl-IO-stringy/devel perl-IO-stringy.spec,1.19,1.20 Message-ID: <20090726064317.0ADBC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IO-stringy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2993 Modified Files: perl-IO-stringy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IO-stringy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IO-stringy/devel/perl-IO-stringy.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-IO-stringy.spec 26 Feb 2009 18:26:38 -0000 1.19 +++ perl-IO-stringy.spec 26 Jul 2009 06:43:16 -0000 1.20 @@ -1,7 +1,7 @@ Summary: I/O on in-core objects like strings and arrays for Perl Name: perl-IO-stringy Version: 2.110 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/IO-stringy/ @@ -42,6 +42,9 @@ filehandles; in particular, IO::Scalar, %{_mandir}/man3/IO::*.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 2.110-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.110-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:43:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:43:30 +0000 (UTC) Subject: rpms/perl-IPC-Run/devel perl-IPC-Run.spec,1.18,1.19 Message-ID: <20090726064330.D427C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-Run/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3126 Modified Files: perl-IPC-Run.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-Run.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-Run/devel/perl-IPC-Run.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-IPC-Run.spec 26 Feb 2009 18:27:35 -0000 1.18 +++ perl-IPC-Run.spec 26 Jul 2009 06:43:30 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-IPC-Run Version: 0.82 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module for interacting with child processes License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.82-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.82-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bruno at fedoraproject.org Sun Jul 26 06:45:12 2009 From: bruno at fedoraproject.org (Bruno Wolff III) Date: Sun, 26 Jul 2009 06:45:12 +0000 (UTC) Subject: rpms/colossus/devel .cvsignore, 1.2, 1.3 colossus.spec, 1.2, 1.3 import.log, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090726064512.5C25111C00CE@cvs1.fedora.phx.redhat.com> Author: bruno Update of /cvs/pkgs/rpms/colossus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3717/devel Modified Files: .cvsignore colossus.spec import.log sources Log Message: Rebasing to 4454 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 03:00:33 -0000 1.2 +++ .cvsignore 26 Jul 2009 06:45:11 -0000 1.3 @@ -1 +1 @@ -colossus-20090710-4432.tar.gz +colossus-20090725-4454.tar.gz Index: colossus.spec =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/colossus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- colossus.spec 24 Jul 2009 19:15:14 -0000 1.2 +++ colossus.spec 26 Jul 2009 06:45:11 -0000 1.3 @@ -1,8 +1,8 @@ Name: colossus -%define rev 4432 -%define revdate 20090710 +%define rev 4454 +%define revdate 20090725 Version: 0 -Release: 0.3.%{revdate}svn%{rev}%{?dist} +Release: 0.4.%{revdate}svn%{rev}%{?dist} Summary: Allows people to play Titan against each other or AIs Group: Amusements/Games @@ -177,6 +177,11 @@ touch --no-create %{_datadir}/pixmaps || %{_javadocdir}/%{name} %changelog + +* Sun Jul 25 2009 Bruno Wolff III - 0-0.4.20090710svn4454 +- Fix for off by one roll, movement roll in master board header +- Rebase to 4454 + * Fri Jul 24 2009 Fedora Release Engineering - 0-0.3.20090710svn4432 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 13 Jul 2009 03:00:34 -0000 1.1 +++ import.log 26 Jul 2009 06:45:11 -0000 1.2 @@ -1 +1,2 @@ colossus-0-0_2_20090710svn4432_fc11:HEAD:colossus-0-0.2.20090710svn4432.fc11.src.rpm:1247453817 +colossus-0-0_4_20090725svn4454_fc11:HEAD:colossus-0-0.4.20090725svn4454.fc11.src.rpm:1248590656 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 13 Jul 2009 03:00:34 -0000 1.2 +++ sources 26 Jul 2009 06:45:11 -0000 1.3 @@ -1 +1 @@ -4bc5d55868e775581d3ef8f281886059 colossus-20090710-4432.tar.gz +db7f0f10b8c1b96b966bc55d9963366d colossus-20090725-4454.tar.gz From jkeating at fedoraproject.org Sun Jul 26 06:37:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:37:34 +0000 (UTC) Subject: rpms/perl-Hash-Flatten/devel perl-Hash-Flatten.spec,1.1,1.2 Message-ID: <20090726063734.0929E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-Flatten/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32020 Modified Files: perl-Hash-Flatten.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-Flatten.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Flatten/devel/perl-Hash-Flatten.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Hash-Flatten.spec 8 Apr 2009 03:18:02 -0000 1.1 +++ perl-Hash-Flatten.spec 26 Jul 2009 06:37:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Hash-Flatten Version: 1.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Flatten/unflatten complex data hashes License: GPLv2 Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 1.16-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 06:37:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:37:18 +0000 (UTC) Subject: rpms/perl-Hash-Case/devel perl-Hash-Case.spec,1.5,1.6 Message-ID: <20090726063718.DC6EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hash-Case/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31862 Modified Files: perl-Hash-Case.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hash-Case.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hash-Case/devel/perl-Hash-Case.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Hash-Case.spec 26 Feb 2009 18:09:05 -0000 1.5 +++ perl-Hash-Case.spec 26 Jul 2009 06:37:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Hash-Case Version: 1.006 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Base class for hashes with key-casing requirements License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.006-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.006-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:37:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:37:03 +0000 (UTC) Subject: rpms/perl-Hardware-Vhdl-Tidy/devel perl-Hardware-Vhdl-Tidy.spec, 1.3, 1.4 Message-ID: <20090726063703.D63F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Hardware-Vhdl-Tidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31714 Modified Files: perl-Hardware-Vhdl-Tidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Hardware-Vhdl-Tidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Hardware-Vhdl-Tidy/devel/perl-Hardware-Vhdl-Tidy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Hardware-Vhdl-Tidy.spec 26 Feb 2009 18:08:12 -0000 1.3 +++ perl-Hardware-Vhdl-Tidy.spec 26 Jul 2009 06:37:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Hardware-Vhdl-Tidy Version: 0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: VHDL code prettifier License: GPL+ or Artistic @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 06:35:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 06:35:07 +0000 (UTC) Subject: rpms/perl-HTTP-Request-Params/devel perl-HTTP-Request-Params.spec, 1.5, 1.6 Message-ID: <20090726063507.1D0DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-HTTP-Request-Params/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30538 Modified Files: perl-HTTP-Request-Params.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-HTTP-Request-Params.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-HTTP-Request-Params/devel/perl-HTTP-Request-Params.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-HTTP-Request-Params.spec 26 Feb 2009 18:01:38 -0000 1.5 +++ perl-HTTP-Request-Params.spec 26 Jul 2009 06:35:06 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-HTTP-Request-Params Version: 1.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Retrieve GET/POST Parameters from HTTP Requests Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From harald at fedoraproject.org Sun Jul 26 07:56:11 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sun, 26 Jul 2009 07:56:11 +0000 (UTC) Subject: rpms/dracut/devel dracut.spec,1.6,1.7 Message-ID: <20090726075611.83E6411C00CE@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26443 Modified Files: dracut.spec Log Message: * Sun Jul 26 2009 Harald Hoyer 0.7-1 - build without /sbin/switch_root Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- dracut.spec 25 Jul 2009 09:11:39 -0000 1.6 +++ dracut.spec 26 Jul 2009 07:56:10 -0000 1.7 @@ -1,7 +1,7 @@ %if 0%{?fedora} < 12 %define with_switch_root 1 %else -%define with_switch_root 1 +%define with_switch_root 0 %endif %if %{defined gittag} @@ -45,7 +45,7 @@ Requires: kbd %endif %if ! 0%{?with_switch_root} -Requires: /sbin/switch_root +Requires: util-linux-ng >= 2.16 BuildArch: noarch %endif @@ -142,6 +142,9 @@ rm -rf $RPM_BUILD_ROOT %dir /var/lib/dracut/overlay %changelog +* Sun Jul 26 2009 Harald Hoyer 0.7-1 +- build without /sbin/switch_root + * Fri Jul 24 2009 Harald Hoyer 0.7-1 - version 0.7 From harald at fedoraproject.org Sun Jul 26 07:57:21 2009 From: harald at fedoraproject.org (Harald Hoyer) Date: Sun, 26 Jul 2009 07:57:21 +0000 (UTC) Subject: rpms/dracut/devel dracut.spec,1.7,1.8 Message-ID: <20090726075721.82A1611C00CE@cvs1.fedora.phx.redhat.com> Author: harald Update of /cvs/pkgs/rpms/dracut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26889 Modified Files: dracut.spec Log Message: * Sun Jul 26 2009 Harald Hoyer 0.7-1 - build without /sbin/switch_root Index: dracut.spec =================================================================== RCS file: /cvs/pkgs/rpms/dracut/devel/dracut.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dracut.spec 26 Jul 2009 07:56:10 -0000 1.7 +++ dracut.spec 26 Jul 2009 07:57:21 -0000 1.8 @@ -13,7 +13,7 @@ Name: dracut Version: 0.7 -Release: 1%{?rdist} +Release: 2%{?rdist} Summary: Initramfs generator using udev Group: System Environment/Base License: GPLv2+ From jkeating at fedoraproject.org Sun Jul 26 08:45:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:45:31 +0000 (UTC) Subject: rpms/perl-IPC-Run3/devel perl-IPC-Run3.spec,1.17,1.18 Message-ID: <20090726084532.119FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-Run3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10972 Modified Files: perl-IPC-Run3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-Run3.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-Run3/devel/perl-IPC-Run3.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-IPC-Run3.spec 17 Jun 2009 12:08:11 -0000 1.17 +++ perl-IPC-Run3.spec 26 Jul 2009 08:45:30 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-IPC-Run3 Version: 0.043 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Run a subprocess in batch mode License: (GPL+ or Artistic) or BSD Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.043-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ralf Cors?pius 0.043-1 - Upstream update. - Reflect upstream URL having changed. From jkeating at fedoraproject.org Sun Jul 26 08:45:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:45:45 +0000 (UTC) Subject: rpms/perl-IPC-ShareLite/devel perl-IPC-ShareLite.spec,1.19,1.20 Message-ID: <20090726084545.E6B9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-ShareLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11143 Modified Files: perl-IPC-ShareLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-ShareLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-ShareLite/devel/perl-IPC-ShareLite.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-IPC-ShareLite.spec 26 Feb 2009 18:30:13 -0000 1.19 +++ perl-IPC-ShareLite.spec 26 Jul 2009 08:45:45 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-IPC-ShareLite Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightweight interface to shared memory License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:45:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:45:59 +0000 (UTC) Subject: rpms/perl-IPC-Shareable/devel perl-IPC-Shareable.spec,1.9,1.10 Message-ID: <20090726084559.0964811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-Shareable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11285 Modified Files: perl-IPC-Shareable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-Shareable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-Shareable/devel/perl-IPC-Shareable.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-IPC-Shareable.spec 26 Feb 2009 20:15:28 -0000 1.9 +++ perl-IPC-Shareable.spec 26 Jul 2009 08:45:58 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-IPC-Shareable Version: 0.60 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Share Perl variables between processes Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.60-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.60-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:46:13 +0000 (UTC) Subject: rpms/perl-IPC-SharedCache/devel perl-IPC-SharedCache.spec, 1.12, 1.13 Message-ID: <20090726084613.1408711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-SharedCache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11448 Modified Files: perl-IPC-SharedCache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-SharedCache.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-SharedCache/devel/perl-IPC-SharedCache.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-IPC-SharedCache.spec 26 Feb 2009 20:16:18 -0000 1.12 +++ perl-IPC-SharedCache.spec 26 Jul 2009 08:46:12 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-IPC-SharedCache Version: 1.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Perl module to manage a cache in SysV IPC shared memory Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:46:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:46:26 +0000 (UTC) Subject: rpms/perl-IPC-System-Simple/devel perl-IPC-System-Simple.spec, 1.1, 1.2 Message-ID: <20090726084626.02DA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPC-System-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11568 Modified Files: perl-IPC-System-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPC-System-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPC-System-Simple/devel/perl-IPC-System-Simple.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-IPC-System-Simple.spec 7 Mar 2009 20:39:01 -0000 1.1 +++ perl-IPC-System-Simple.spec 26 Jul 2009 08:46:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-IPC-System-Simple Version: 1.18 -Release: 1%{?dist} +Release: 2%{?dist} # lib/IPC/System/Simple.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Chris Weyl 1.18-1 - submission From jkeating at fedoraproject.org Sun Jul 26 08:46:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:46:40 +0000 (UTC) Subject: rpms/perl-IPTables-ChainMgr/devel perl-IPTables-ChainMgr.spec, 1.5, 1.6 Message-ID: <20090726084640.6769511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPTables-ChainMgr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11730 Modified Files: perl-IPTables-ChainMgr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPTables-ChainMgr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPTables-ChainMgr/devel/perl-IPTables-ChainMgr.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-IPTables-ChainMgr.spec 26 Feb 2009 20:17:08 -0000 1.5 +++ perl-IPTables-ChainMgr.spec 26 Jul 2009 08:46:40 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-IPTables-ChainMgr Version: 0.9 -Release: 3 +Release: 4 Summary: Perl extension for manipulating iptables policies License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:46:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:46:56 +0000 (UTC) Subject: rpms/perl-IPTables-Parse/devel perl-IPTables-Parse.spec,1.4,1.5 Message-ID: <20090726084656.1515811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-IPTables-Parse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11875 Modified Files: perl-IPTables-Parse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-IPTables-Parse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-IPTables-Parse/devel/perl-IPTables-Parse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-IPTables-Parse.spec 26 Feb 2009 20:17:58 -0000 1.4 +++ perl-IPTables-Parse.spec 26 Jul 2009 08:46:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-IPTables-Parse Version: 0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for parsing iptables firewall rulesets License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:47:11 +0000 (UTC) Subject: rpms/perl-Ima-DBI/devel perl-Ima-DBI.spec,1.10,1.11 Message-ID: <20090726084711.52D8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Ima-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12070 Modified Files: perl-Ima-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Ima-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Ima-DBI/devel/perl-Ima-DBI.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Ima-DBI.spec 26 Feb 2009 20:18:46 -0000 1.10 +++ perl-Ima-DBI.spec 26 Jul 2009 08:47:11 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Ima-DBI Version: 0.35 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Database connection caching and organization Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.35-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:47:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:47:25 +0000 (UTC) Subject: rpms/perl-Image-Base/devel perl-Image-Base.spec,1.14,1.15 Message-ID: <20090726084725.DD7BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12205 Modified Files: perl-Image-Base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Base.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Base/devel/perl-Image-Base.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Image-Base.spec 26 Feb 2009 20:19:36 -0000 1.14 +++ perl-Image-Base.spec 26 Jul 2009 08:47:25 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Image-Base Version: 1.07 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Base class for loading, manipulating and saving images in Perl Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:47:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:47:41 +0000 (UTC) Subject: rpms/perl-Image-ExifTool/devel perl-Image-ExifTool.spec,1.22,1.23 Message-ID: <20090726084741.2D1BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-ExifTool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12379 Modified Files: perl-Image-ExifTool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-ExifTool.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-ExifTool/devel/perl-Image-ExifTool.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Image-ExifTool.spec 26 Feb 2009 20:20:38 -0000 1.22 +++ perl-Image-ExifTool.spec 26 Jul 2009 08:47:41 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-Image-ExifTool Version: 7.67 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Applications/Multimedia Summary: Utility for reading and writing image meta info @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.67-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 7.67-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:47:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:47:56 +0000 (UTC) Subject: rpms/perl-Image-Info/devel perl-Image-Info.spec,1.24,1.25 Message-ID: <20090726084756.31FF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12523 Modified Files: perl-Image-Info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Info.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Info/devel/perl-Image-Info.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- perl-Image-Info.spec 26 Feb 2009 20:21:34 -0000 1.24 +++ perl-Image-Info.spec 26 Jul 2009 08:47:56 -0000 1.25 @@ -2,7 +2,7 @@ Name: perl-Image-Info Version: 1.28 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Image meta information extraction module for Perl Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.28-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.28-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:48:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:48:11 +0000 (UTC) Subject: rpms/perl-Image-Math-Constrain/devel perl-Image-Math-Constrain.spec, 1.5, 1.6 Message-ID: <20090726084811.0E07C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Math-Constrain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12716 Modified Files: perl-Image-Math-Constrain.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Math-Constrain.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Math-Constrain/devel/perl-Image-Math-Constrain.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Image-Math-Constrain.spec 26 Feb 2009 20:22:26 -0000 1.5 +++ perl-Image-Math-Constrain.spec 26 Jul 2009 08:48:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Image-Math-Constrain Version: 1.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Scaling math used in image size constraining (such as thumbnails) License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:48:26 +0000 (UTC) Subject: rpms/perl-Image-Size/devel perl-Image-Size.spec,1.16,1.17 Message-ID: <20090726084826.7BBC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Size/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12863 Modified Files: perl-Image-Size.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Size.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Size/devel/perl-Image-Size.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Image-Size.spec 13 Mar 2009 20:25:27 -0000 1.16 +++ perl-Image-Size.spec 26 Jul 2009 08:48:26 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Image-Size Version: 3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Determine the size of images in several common formats in Perl Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 3.2-1 - update to 3.2 From jkeating at fedoraproject.org Sun Jul 26 08:48:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:48:42 +0000 (UTC) Subject: rpms/perl-Image-Xbm/devel perl-Image-Xbm.spec,1.14,1.15 Message-ID: <20090726084842.8026811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Xbm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13067 Modified Files: perl-Image-Xbm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Xbm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Xbm/devel/perl-Image-Xbm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Image-Xbm.spec 26 Feb 2009 20:24:25 -0000 1.14 +++ perl-Image-Xbm.spec 26 Jul 2009 08:48:42 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Image-Xbm Version: 1.08 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Load, create, manipulate and save xbm image files in Perl Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:48:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:48:58 +0000 (UTC) Subject: rpms/perl-Image-Xpm/devel perl-Image-Xpm.spec,1.14,1.15 Message-ID: <20090726084858.7652811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Image-Xpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13210 Modified Files: perl-Image-Xpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Image-Xpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Image-Xpm/devel/perl-Image-Xpm.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Image-Xpm.spec 26 Feb 2009 20:25:20 -0000 1.14 +++ perl-Image-Xpm.spec 26 Jul 2009 08:48:58 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Image-Xpm Version: 1.09 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Load, create, manipulate and save xpm image files in Perl Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.09-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:49:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:49:14 +0000 (UTC) Subject: rpms/perl-Imager/devel perl-Imager.spec,1.22,1.23 Message-ID: <20090726084914.A6C7311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Imager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13380 Modified Files: perl-Imager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Imager.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Imager/devel/perl-Imager.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Imager.spec 26 Feb 2009 20:26:18 -0000 1.22 +++ perl-Imager.spec 26 Jul 2009 08:49:14 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-Imager Version: 0.67 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for Generating 24 bit Images License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.67-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.67-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:49:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:49:30 +0000 (UTC) Subject: rpms/perl-Inline/devel perl-Inline.spec,1.19,1.20 Message-ID: <20090726084930.2826111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Inline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13519 Modified Files: perl-Inline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Inline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Inline/devel/perl-Inline.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Inline.spec 26 Feb 2009 20:27:16 -0000 1.19 +++ perl-Inline.spec 26 Jul 2009 08:49:30 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-Inline Version: 0.44 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Inline Perl module Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.44-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.44-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:49:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:49:45 +0000 (UTC) Subject: rpms/perl-Inline-Files/devel perl-Inline-Files.spec,1.4,1.5 Message-ID: <20090726084945.5ABB211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Inline-Files/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13668 Modified Files: perl-Inline-Files.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Inline-Files.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Inline-Files/devel/perl-Inline-Files.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Inline-Files.spec 26 Feb 2009 20:28:15 -0000 1.4 +++ perl-Inline-Files.spec 26 Jul 2009 08:49:45 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Inline-Files Version: 0.62 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Allows for multiple inline files in a single perl file Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.62-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.62-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:50:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:50:00 +0000 (UTC) Subject: rpms/perl-JSON/devel perl-JSON.spec,1.14,1.15 Message-ID: <20090726085000.2B29711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JSON/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13810 Modified Files: perl-JSON.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JSON.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JSON/devel/perl-JSON.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-JSON.spec 22 Jun 2009 15:06:42 -0000 1.14 +++ perl-JSON.spec 26 Jul 2009 08:49:59 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-JSON Version: 2.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse and convert to JSON (JavaScript Object Notation) License: GPL+ or Artistic Group: Development/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 2.15-1 - auto-update to 2.15 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 08:50:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:50:16 +0000 (UTC) Subject: rpms/perl-JSON-Any/devel perl-JSON-Any.spec,1.7,1.8 Message-ID: <20090726085016.23D2211C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JSON-Any/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13994 Modified Files: perl-JSON-Any.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JSON-Any.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JSON-Any/devel/perl-JSON-Any.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-JSON-Any.spec 26 Feb 2009 20:30:13 -0000 1.7 +++ perl-JSON-Any.spec 26 Jul 2009 08:50:15 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-JSON-Any Version: 1.19 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A meta-module to make working with JSON easier License: GPL+ or Artistic Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.19-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:50:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:50:31 +0000 (UTC) Subject: rpms/perl-JSON-RPC/devel perl-JSON-RPC.spec,1.1,1.2 Message-ID: <20090726085031.9E0A311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JSON-RPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14139 Modified Files: perl-JSON-RPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JSON-RPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JSON-RPC/devel/perl-JSON-RPC.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-JSON-RPC.spec 2 May 2009 12:09:36 -0000 1.1 +++ perl-JSON-RPC.spec 26 Jul 2009 08:50:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-JSON-RPC Version: 0.96 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl implementation of JSON-RPC 1.1 protocol License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.96-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Emmanuel Seyman 0.96-2 - Remove unneeded Requires From jkeating at fedoraproject.org Sun Jul 26 08:50:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:50:45 +0000 (UTC) Subject: rpms/perl-JSON-RPC-Common/devel perl-JSON-RPC-Common.spec,1.1,1.2 Message-ID: <20090726085045.20AC311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JSON-RPC-Common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14303 Modified Files: perl-JSON-RPC-Common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JSON-RPC-Common.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JSON-RPC-Common/devel/perl-JSON-RPC-Common.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-JSON-RPC-Common.spec 2 May 2009 17:02:13 -0000 1.1 +++ perl-JSON-RPC-Common.spec 26 Jul 2009 08:50:44 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-JSON-RPC-Common Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for handling JSON-RPC objects Group: Development/Libraries License: GPL+ or Artistic @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Christian Krause - 0.03-3 - fixed rpmlint warnings From jkeating at fedoraproject.org Sun Jul 26 08:50:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:50:59 +0000 (UTC) Subject: rpms/perl-JSON-XS/devel perl-JSON-XS.spec,1.16,1.17 Message-ID: <20090726085059.0CA4B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JSON-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14444 Modified Files: perl-JSON-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JSON-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JSON-XS/devel/perl-JSON-XS.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-JSON-XS.spec 2 Jun 2009 07:02:01 -0000 1.16 +++ perl-JSON-XS.spec 26 Jul 2009 08:50:58 -0000 1.17 @@ -1,7 +1,7 @@ Name: perl-JSON-XS Epoch: 1 Version: 2.24 -Release: 1%{?dist} +Release: 2%{?dist} Summary: JSON serialising/deserialising, done correctly and fast License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:2.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 2.24-1 - auto-update to 2.24 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 08:51:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:51:13 +0000 (UTC) Subject: rpms/perl-JavaScript-Beautifier/devel perl-JavaScript-Beautifier.spec, 1.1, 1.2 Message-ID: <20090726085113.0D6F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JavaScript-Beautifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14624 Modified Files: perl-JavaScript-Beautifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JavaScript-Beautifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JavaScript-Beautifier/devel/perl-JavaScript-Beautifier.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-JavaScript-Beautifier.spec 4 May 2009 07:19:32 -0000 1.1 +++ perl-JavaScript-Beautifier.spec 26 Jul 2009 08:51:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-JavaScript-Beautifier Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Beautify Javascript (beautifier for javascript) License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Marcela Ma?l??ov? 0.04-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 08:51:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:51:27 +0000 (UTC) Subject: rpms/perl-JavaScript-Minifier/devel perl-JavaScript-Minifier.spec, 1.1, 1.2 Message-ID: <20090726085127.3D15F11C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JavaScript-Minifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14764 Modified Files: perl-JavaScript-Minifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JavaScript-Minifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JavaScript-Minifier/devel/perl-JavaScript-Minifier.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-JavaScript-Minifier.spec 4 May 2009 07:24:59 -0000 1.1 +++ perl-JavaScript-Minifier.spec 26 Jul 2009 08:51:27 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-JavaScript-Minifier Version: 1.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for minifying JavaScript code License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Marcela Ma?l??ov? 1.05-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 08:51:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:51:41 +0000 (UTC) Subject: rpms/perl-JavaScript-Minifier-XS/devel perl-JavaScript-Minifier-XS.spec, 1.1, 1.2 Message-ID: <20090726085141.21C3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-JavaScript-Minifier-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14931 Modified Files: perl-JavaScript-Minifier-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-JavaScript-Minifier-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-JavaScript-Minifier-XS/devel/perl-JavaScript-Minifier-XS.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-JavaScript-Minifier-XS.spec 3 Jun 2009 17:03:26 -0000 1.1 +++ perl-JavaScript-Minifier-XS.spec 26 Jul 2009 08:51:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-JavaScript-Minifier-XS Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XS based JavaScript minifier License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Marcela Ma?l??ov? 0.05-2 - add BR, remove useless provides From jkeating at fedoraproject.org Sun Jul 26 08:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:51:53 +0000 (UTC) Subject: rpms/perl-Jcode/devel perl-Jcode.spec,1.18,1.19 Message-ID: <20090726085153.C429211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Jcode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15057 Modified Files: perl-Jcode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Jcode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Jcode/devel/perl-Jcode.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Jcode.spec 26 Feb 2009 20:32:10 -0000 1.18 +++ perl-Jcode.spec 26 Jul 2009 08:51:53 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-Jcode Version: 2.06 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl extension interface for converting Japanese text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.06-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.06-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:52:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:52:06 +0000 (UTC) Subject: rpms/perl-Jemplate/devel perl-Jemplate.spec,1.1,1.2 Message-ID: <20090726085206.D61A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Jemplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15210 Modified Files: perl-Jemplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Jemplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Jemplate/devel/perl-Jemplate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Jemplate.spec 29 Mar 2009 01:06:44 -0000 1.1 +++ perl-Jemplate.spec 26 Jul 2009 08:52:06 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Jemplate Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} # lib/Jemplate.pm -> GPL+ or Artistic # lib/Jemplate/Directive.pm -> GPL+ or Artistic # lib/Jemplate/Parser.pm -> GPL+ or Artistic @@ -78,6 +78,9 @@ rm -rf %{buildroot} %{_mandir}/man1/jemplate.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Chris Weyl 0.23-2 - apply a partial patch to Jemplate.pm from 0.23_01, to resolve issues with this release and Catalyst::View::Jemplate From jkeating at fedoraproject.org Sun Jul 26 08:52:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:52:26 +0000 (UTC) Subject: rpms/perl-KinoSearch/devel perl-KinoSearch.spec,1.6,1.7 Message-ID: <20090726085226.4925211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-KinoSearch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15379 Modified Files: perl-KinoSearch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-KinoSearch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-KinoSearch/devel/perl-KinoSearch.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-KinoSearch.spec 13 Apr 2009 16:17:04 -0000 1.6 +++ perl-KinoSearch.spec 26 Jul 2009 08:52:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-KinoSearch Version: 0.165 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Search engine library # ApacheLicense2.0.txt included is included just becuase the upstream # author decided to include it and is only for informative purposes. @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.165-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Lubomir Rintel - 0.165-1 - Upstream applied our PowerPC patch From jkeating at fedoraproject.org Sun Jul 26 08:52:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:52:40 +0000 (UTC) Subject: rpms/perl-Kwiki/devel perl-Kwiki.spec,1.8,1.9 Message-ID: <20090726085240.ABD2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15531 Modified Files: perl-Kwiki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki/devel/perl-Kwiki.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki.spec 26 Feb 2009 20:34:10 -0000 1.8 +++ perl-Kwiki.spec 26 Jul 2009 08:52:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki Version: 0.39 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Kwiki Wiki Building Framework License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.39-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.39-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:52:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:52:54 +0000 (UTC) Subject: rpms/perl-Kwiki-Archive-Rcs/devel perl-Kwiki-Archive-Rcs.spec, 1.8, 1.9 Message-ID: <20090726085254.EC14811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Archive-Rcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15671 Modified Files: perl-Kwiki-Archive-Rcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Archive-Rcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Archive-Rcs/devel/perl-Kwiki-Archive-Rcs.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki-Archive-Rcs.spec 26 Feb 2009 20:35:05 -0000 1.8 +++ perl-Kwiki-Archive-Rcs.spec 26 Jul 2009 08:52:54 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Archive-Rcs Version: 0.15 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Kwiki Page Archival Using RCS License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:53:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:53:09 +0000 (UTC) Subject: rpms/perl-Kwiki-Attachments/devel perl-Kwiki-Attachments.spec, 1.7, 1.8 Message-ID: <20090726085309.695FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Attachments/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15827 Modified Files: perl-Kwiki-Attachments.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Attachments.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Attachments/devel/perl-Kwiki-Attachments.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-Attachments.spec 26 Feb 2009 20:36:07 -0000 1.7 +++ perl-Kwiki-Attachments.spec 26 Jul 2009 08:53:09 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Attachments Version: 0.18 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Kwiki Page Attachments Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:53:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:53:22 +0000 (UTC) Subject: rpms/perl-Kwiki-Diff/devel perl-Kwiki-Diff.spec,1.7,1.8 Message-ID: <20090726085322.F2DFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15965 Modified Files: perl-Kwiki-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Diff/devel/perl-Kwiki-Diff.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-Diff.spec 26 Feb 2009 20:37:06 -0000 1.7 +++ perl-Kwiki-Diff.spec 26 Jul 2009 08:53:22 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Diff Version: 0.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Display differences between the current wiki page and older revisions License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:53:39 +0000 (UTC) Subject: rpms/perl-Kwiki-ModPerl/devel perl-Kwiki-ModPerl.spec,1.7,1.8 Message-ID: <20090726085339.22DF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-ModPerl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16130 Modified Files: perl-Kwiki-ModPerl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-ModPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-ModPerl/devel/perl-Kwiki-ModPerl.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-ModPerl.spec 26 Feb 2009 20:38:18 -0000 1.7 +++ perl-Kwiki-ModPerl.spec 26 Jul 2009 08:53:38 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-ModPerl Version: 0.09 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Enable Kwiki to work under mod_perl License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:53:55 +0000 (UTC) Subject: rpms/perl-Kwiki-NewPage/devel perl-Kwiki-NewPage.spec,1.8,1.9 Message-ID: <20090726085355.6A09111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-NewPage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16282 Modified Files: perl-Kwiki-NewPage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-NewPage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-NewPage/devel/perl-Kwiki-NewPage.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki-NewPage.spec 26 Feb 2009 20:39:22 -0000 1.8 +++ perl-Kwiki-NewPage.spec 26 Jul 2009 08:53:55 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki-NewPage Version: 0.12 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Kwiki New Page Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:54:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:54:11 +0000 (UTC) Subject: rpms/perl-Kwiki-Raw/devel perl-Kwiki-Raw.spec,1.7,1.8 Message-ID: <20090726085411.5EF6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Raw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16458 Modified Files: perl-Kwiki-Raw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Raw.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Raw/devel/perl-Kwiki-Raw.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-Raw.spec 26 Feb 2009 20:40:43 -0000 1.7 +++ perl-Kwiki-Raw.spec 26 Jul 2009 08:54:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Raw Version: 0.02 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Provide an action to retrieve the raw wikitext of a page License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:54:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:54:31 +0000 (UTC) Subject: rpms/perl-Kwiki-RecentChanges/devel perl-Kwiki-RecentChanges.spec, 1.9, 1.10 Message-ID: <20090726085431.6AA6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-RecentChanges/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16737 Modified Files: perl-Kwiki-RecentChanges.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-RecentChanges.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-RecentChanges/devel/perl-Kwiki-RecentChanges.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Kwiki-RecentChanges.spec 26 Feb 2009 20:41:48 -0000 1.9 +++ perl-Kwiki-RecentChanges.spec 26 Jul 2009 08:54:31 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Kwiki-RecentChanges Version: 0.14 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Kwiki Recent Changes Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:54:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:54:46 +0000 (UTC) Subject: rpms/perl-Kwiki-Revisions/devel perl-Kwiki-Revisions.spec,1.8,1.9 Message-ID: <20090726085446.68D6A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Revisions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16914 Modified Files: perl-Kwiki-Revisions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Revisions.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Revisions/devel/perl-Kwiki-Revisions.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki-Revisions.spec 26 Feb 2009 20:42:55 -0000 1.8 +++ perl-Kwiki-Revisions.spec 26 Jul 2009 08:54:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Revisions Version: 0.15 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Kwiki Revisions Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:55:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:55:02 +0000 (UTC) Subject: rpms/perl-Kwiki-Search/devel perl-Kwiki-Search.spec,1.8,1.9 Message-ID: <20090726085502.8C98A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Search/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17284 Modified Files: perl-Kwiki-Search.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Search.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Search/devel/perl-Kwiki-Search.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki-Search.spec 26 Feb 2009 20:43:53 -0000 1.8 +++ perl-Kwiki-Search.spec 26 Jul 2009 08:55:02 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Search Version: 0.12 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Kwiki Search Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:55:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:55:18 +0000 (UTC) Subject: rpms/perl-Kwiki-UserName/devel perl-Kwiki-UserName.spec,1.8,1.9 Message-ID: <20090726085518.A6E2211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-UserName/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17800 Modified Files: perl-Kwiki-UserName.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-UserName.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-UserName/devel/perl-Kwiki-UserName.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Kwiki-UserName.spec 26 Feb 2009 20:44:57 -0000 1.8 +++ perl-Kwiki-UserName.spec 26 Jul 2009 08:55:18 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Kwiki-UserName Version: 0.14 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Kwiki User Name Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:55:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:55:33 +0000 (UTC) Subject: rpms/perl-Kwiki-UserPreferences/devel perl-Kwiki-UserPreferences.spec, 1.7, 1.8 Message-ID: <20090726085533.6E7E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-UserPreferences/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18011 Modified Files: perl-Kwiki-UserPreferences.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-UserPreferences.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-UserPreferences/devel/perl-Kwiki-UserPreferences.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-UserPreferences.spec 26 Feb 2009 19:00:00 -0000 1.7 +++ perl-Kwiki-UserPreferences.spec 26 Jul 2009 08:55:33 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-UserPreferences Version: 0.13 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Kwiki User Preferences Plugin License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:55:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:55:47 +0000 (UTC) Subject: rpms/perl-Kwiki-Users-Remote/devel perl-Kwiki-Users-Remote.spec, 1.7, 1.8 Message-ID: <20090726085547.40BF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Kwiki-Users-Remote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18163 Modified Files: perl-Kwiki-Users-Remote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Kwiki-Users-Remote.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Kwiki-Users-Remote/devel/perl-Kwiki-Users-Remote.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Kwiki-Users-Remote.spec 26 Feb 2009 19:00:54 -0000 1.7 +++ perl-Kwiki-Users-Remote.spec 26 Jul 2009 08:55:47 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Kwiki-Users-Remote Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Automatically set Kwiki user name from HTTP authentication License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:56:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:56:01 +0000 (UTC) Subject: rpms/perl-LDAP/devel perl-LDAP.spec,1.17,1.18 Message-ID: <20090726085601.9794011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-LDAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18309 Modified Files: perl-LDAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-LDAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-LDAP/devel/perl-LDAP.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-LDAP.spec 26 Feb 2009 19:01:51 -0000 1.17 +++ perl-LDAP.spec 26 Jul 2009 08:56:01 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-LDAP Version: 0.34 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 Summary: LDAP Perl module @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.34-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.34-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:56:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:56:15 +0000 (UTC) Subject: rpms/perl-LWP-Authen-Wsse/devel perl-LWP-Authen-Wsse.spec,1.5,1.6 Message-ID: <20090726085615.3AA8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-LWP-Authen-Wsse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18463 Modified Files: perl-LWP-Authen-Wsse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-LWP-Authen-Wsse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-LWP-Authen-Wsse/devel/perl-LWP-Authen-Wsse.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-LWP-Authen-Wsse.spec 26 Feb 2009 19:02:51 -0000 1.5 +++ perl-LWP-Authen-Wsse.spec 26 Jul 2009 08:56:15 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-LWP-Authen-Wsse Version: 0.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library for enabling X-WSSE authentication in LWP Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:56:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:56:28 +0000 (UTC) Subject: rpms/perl-LWP-UserAgent-Determined/devel perl-LWP-UserAgent-Determined.spec, 1.6, 1.7 Message-ID: <20090726085628.3A0A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-LWP-UserAgent-Determined/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18593 Modified Files: perl-LWP-UserAgent-Determined.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-LWP-UserAgent-Determined.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-LWP-UserAgent-Determined/devel/perl-LWP-UserAgent-Determined.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-LWP-UserAgent-Determined.spec 26 Feb 2009 20:54:20 -0000 1.6 +++ perl-LWP-UserAgent-Determined.spec 26 Jul 2009 08:56:28 -0000 1.7 @@ -1,7 +1,7 @@ Summary: A virtual browser that retries errors Name: perl-LWP-UserAgent-Determined Version: 1.03 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/%{pkg_name}/ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:56:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:56:42 +0000 (UTC) Subject: rpms/perl-Lexical-Persistence/devel perl-Lexical-Persistence.spec, 1.1, 1.2 Message-ID: <20090726085642.4FB3C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lexical-Persistence/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18763 Modified Files: perl-Lexical-Persistence.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lexical-Persistence.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lexical-Persistence/devel/perl-Lexical-Persistence.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Lexical-Persistence.spec 23 Apr 2009 19:29:41 -0000 1.1 +++ perl-Lexical-Persistence.spec 26 Jul 2009 08:56:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Lexical-Persistence Version: 0.98 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Persistent lexical variable values for arbitrary calls License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Iain Arnell 0.98-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 08:56:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:56:55 +0000 (UTC) Subject: rpms/perl-Lingua-EN-Inflect/devel perl-Lingua-EN-Inflect.spec, 1.7, 1.8 Message-ID: <20090726085655.6644911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-EN-Inflect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18890 Modified Files: perl-Lingua-EN-Inflect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-EN-Inflect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-EN-Inflect/devel/perl-Lingua-EN-Inflect.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Lingua-EN-Inflect.spec 26 Feb 2009 20:55:14 -0000 1.7 +++ perl-Lingua-EN-Inflect.spec 26 Jul 2009 08:56:55 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Lingua-EN-Inflect Version: 1.89 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Convert singular to plural, select "a" or "an" Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.89-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.89-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:57:17 +0000 (UTC) Subject: rpms/perl-Lingua-EN-Inflect-Number/devel perl-Lingua-EN-Inflect-Number.spec, 1.8, 1.9 Message-ID: <20090726085717.3DD5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-EN-Inflect-Number/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19087 Modified Files: perl-Lingua-EN-Inflect-Number.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-EN-Inflect-Number.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-EN-Inflect-Number/devel/perl-Lingua-EN-Inflect-Number.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Lingua-EN-Inflect-Number.spec 26 Feb 2009 20:56:09 -0000 1.8 +++ perl-Lingua-EN-Inflect-Number.spec 26 Jul 2009 08:57:17 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Lingua-EN-Inflect-Number Version: 1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Force number of words to singular or plural Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:57:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:57:32 +0000 (UTC) Subject: rpms/perl-Lingua-EN-Numbers-Ordinate/devel perl-Lingua-EN-Numbers-Ordinate.spec, 1.3, 1.4 Message-ID: <20090726085732.64A4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-EN-Numbers-Ordinate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19222 Modified Files: perl-Lingua-EN-Numbers-Ordinate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-EN-Numbers-Ordinate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-EN-Numbers-Ordinate/devel/perl-Lingua-EN-Numbers-Ordinate.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Lingua-EN-Numbers-Ordinate.spec 26 Feb 2009 20:56:59 -0000 1.3 +++ perl-Lingua-EN-Numbers-Ordinate.spec 26 Jul 2009 08:57:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Lingua-EN-Numbers-Ordinate Version: 1.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl functions for giving the ordinal form of a number given its cardinal value Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:57:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:57:47 +0000 (UTC) Subject: rpms/perl-Lingua-Flags/devel perl-Lingua-Flags.spec,1.1,1.2 Message-ID: <20090726085747.4B17411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-Flags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19385 Modified Files: perl-Lingua-Flags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-Flags.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-Flags/devel/perl-Lingua-Flags.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Lingua-Flags.spec 27 May 2009 03:09:50 -0000 1.1 +++ perl-Lingua-Flags.spec 26 Jul 2009 08:57:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Lingua-Flags Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provide small flag icons License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Iain Arnell 0.05-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 08:58:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:58:18 +0000 (UTC) Subject: rpms/perl-Lingua-Stem-Snowball/devel perl-Lingua-Stem-Snowball.spec, 1.3, 1.4 Message-ID: <20090726085818.4042611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-Stem-Snowball/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19695 Modified Files: perl-Lingua-Stem-Snowball.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-Stem-Snowball.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-Stem-Snowball/devel/perl-Lingua-Stem-Snowball.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Lingua-Stem-Snowball.spec 26 Feb 2009 20:58:39 -0000 1.3 +++ perl-Lingua-Stem-Snowball.spec 26 Jul 2009 08:58:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Lingua-Stem-Snowball Version: 0.952 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to Snowball stemmers License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.952-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.952-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:58:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:58:03 +0000 (UTC) Subject: rpms/perl-Lingua-Preferred/devel perl-Lingua-Preferred.spec, 1.3, 1.4 Message-ID: <20090726085803.9254311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-Preferred/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19547 Modified Files: perl-Lingua-Preferred.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-Preferred.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-Preferred/devel/perl-Lingua-Preferred.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Lingua-Preferred.spec 26 Feb 2009 20:57:48 -0000 1.3 +++ perl-Lingua-Preferred.spec 26 Jul 2009 08:58:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Lingua-Preferred Version: 0.2.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl extension to choose a language Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:58:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:58:33 +0000 (UTC) Subject: rpms/perl-Lingua-StopWords/devel perl-Lingua-StopWords.spec, 1.3, 1.4 Message-ID: <20090726085833.5164D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Lingua-StopWords/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19860 Modified Files: perl-Lingua-StopWords.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Lingua-StopWords.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Lingua-StopWords/devel/perl-Lingua-StopWords.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Lingua-StopWords.spec 26 Feb 2009 20:59:30 -0000 1.3 +++ perl-Lingua-StopWords.spec 26 Jul 2009 08:58:33 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Lingua-StopWords Version: 0.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Stop words for several languages License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:58:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:58:47 +0000 (UTC) Subject: rpms/perl-Linux-Inotify2/devel perl-Linux-Inotify2.spec,1.1,1.2 Message-ID: <20090726085847.3326511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Linux-Inotify2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20005 Modified Files: perl-Linux-Inotify2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Linux-Inotify2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Linux-Inotify2/devel/perl-Linux-Inotify2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Linux-Inotify2.spec 9 Jun 2009 00:28:28 -0000 1.1 +++ perl-Linux-Inotify2.spec 26 Jul 2009 08:58:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Linux-Inotify2 Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} # COPYING -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 1.2-1 - submission From jkeating at fedoraproject.org Sun Jul 26 08:59:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:59:01 +0000 (UTC) Subject: rpms/perl-Linux-Pid/devel perl-Linux-Pid.spec,1.5,1.6 Message-ID: <20090726085901.3C78111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Linux-Pid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20143 Modified Files: perl-Linux-Pid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Linux-Pid.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Linux-Pid/devel/perl-Linux-Pid.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Linux-Pid.spec 26 Feb 2009 21:00:23 -0000 1.5 +++ perl-Linux-Pid.spec 26 Jul 2009 08:59:01 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Linux-Pid Version: 0.04 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Get the native PID and the PPID on Linux Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:59:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:59:15 +0000 (UTC) Subject: rpms/perl-List-Compare/devel perl-List-Compare.spec,1.9,1.10 Message-ID: <20090726085915.2218711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-List-Compare/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20308 Modified Files: perl-List-Compare.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-List-Compare.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-List-Compare/devel/perl-List-Compare.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-List-Compare.spec 26 Feb 2009 21:01:20 -0000 1.9 +++ perl-List-Compare.spec 26 Jul 2009 08:59:14 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-List-Compare Version: 0.37 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Compare elements of two or more lists Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.37-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.37-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:59:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:59:30 +0000 (UTC) Subject: rpms/perl-List-MoreUtils/devel perl-List-MoreUtils.spec,1.12,1.13 Message-ID: <20090726085930.8FC1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-List-MoreUtils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20462 Modified Files: perl-List-MoreUtils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-List-MoreUtils.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-List-MoreUtils/devel/perl-List-MoreUtils.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-List-MoreUtils.spec 26 Feb 2009 21:02:13 -0000 1.12 +++ perl-List-MoreUtils.spec 26 Jul 2009 08:59:30 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-List-MoreUtils Version: 0.22 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Provide the stuff missing in List::Util Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 08:59:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 08:59:45 +0000 (UTC) Subject: rpms/perl-Locale-Maketext-Fuzzy/devel perl-Locale-Maketext-Fuzzy.spec, 1.10, 1.11 Message-ID: <20090726085945.3495C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Locale-Maketext-Fuzzy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20621 Modified Files: perl-Locale-Maketext-Fuzzy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Locale-Maketext-Fuzzy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Locale-Maketext-Fuzzy/devel/perl-Locale-Maketext-Fuzzy.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Locale-Maketext-Fuzzy.spec 26 Feb 2009 21:03:09 -0000 1.10 +++ perl-Locale-Maketext-Fuzzy.spec 26 Jul 2009 08:59:45 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Locale-Maketext-Fuzzy Version: 0.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Maketext from already interpolated strings Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:00:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:00:13 +0000 (UTC) Subject: rpms/perl-Locale-Maketext-Lexicon/devel perl-Locale-Maketext-Lexicon.spec, 1.24, 1.25 Message-ID: <20090726090013.713F211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Locale-Maketext-Lexicon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20836 Modified Files: perl-Locale-Maketext-Lexicon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Locale-Maketext-Lexicon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Locale-Maketext-Lexicon/devel/perl-Locale-Maketext-Lexicon.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- perl-Locale-Maketext-Lexicon.spec 26 Feb 2009 21:04:07 -0000 1.24 +++ perl-Locale-Maketext-Lexicon.spec 26 Jul 2009 09:00:13 -0000 1.25 @@ -1,6 +1,6 @@ Name: perl-Locale-Maketext-Lexicon Version: 0.77 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extract translatable strings from source License: MIT Group: Development/Libraries @@ -82,6 +82,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.77-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.77-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:00:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:00:29 +0000 (UTC) Subject: rpms/perl-Locale-PO/devel perl-Locale-PO.spec,1.1,1.2 Message-ID: <20090726090029.C363411C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Locale-PO/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21003 Modified Files: perl-Locale-PO.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Locale-PO.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Locale-PO/devel/perl-Locale-PO.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Locale-PO.spec 7 May 2009 03:24:23 -0000 1.1 +++ perl-Locale-PO.spec 26 Jul 2009 09:00:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Locale-PO Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module for manipulating .po entries from GNU gettext License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Iain Arnell 0.21-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 09:00:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:00:50 +0000 (UTC) Subject: rpms/perl-Locale-SubCountry/devel perl-Locale-SubCountry.spec, 1.8, 1.9 Message-ID: <20090726090050.5FB0211C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Locale-SubCountry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21181 Modified Files: perl-Locale-SubCountry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Locale-SubCountry.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Locale-SubCountry/devel/perl-Locale-SubCountry.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Locale-SubCountry.spec 26 Feb 2009 21:05:21 -0000 1.8 +++ perl-Locale-SubCountry.spec 26 Jul 2009 09:00:50 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Locale-SubCountry Version: 1.41 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ISO 3166-2 two letter subcountry codes Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.41-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.41-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:01:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:01:05 +0000 (UTC) Subject: rpms/perl-LockFile-Simple/devel perl-LockFile-Simple.spec,1.6,1.7 Message-ID: <20090726090105.375C611C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-LockFile-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21332 Modified Files: perl-LockFile-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-LockFile-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-LockFile-Simple/devel/perl-LockFile-Simple.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-LockFile-Simple.spec 9 Mar 2009 08:49:18 -0000 1.6 +++ perl-LockFile-Simple.spec 26 Jul 2009 09:01:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-LockFile-Simple Version: 0.207 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple file locking scheme License: GPLv2+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.207-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Ralf Cors?pius - 0.207-1 - Upstream update. - Remove license_of_LockFile_Simple.txt (cf. README). From jkeating at fedoraproject.org Sun Jul 26 09:01:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:01:20 +0000 (UTC) Subject: rpms/perl-Log-Dispatch/devel perl-Log-Dispatch.spec,1.19,1.20 Message-ID: <20090726090120.288F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Dispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21488 Modified Files: perl-Log-Dispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Dispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Dispatch/devel/perl-Log-Dispatch.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Log-Dispatch.spec 26 Feb 2009 19:16:57 -0000 1.19 +++ perl-Log-Dispatch.spec 26 Jul 2009 09:01:19 -0000 1.20 @@ -8,7 +8,7 @@ Name: perl-Log-Dispatch Version: 2.22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Dispatches messages to one or more outputs Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:01:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:01:34 +0000 (UTC) Subject: rpms/perl-Log-Dispatch-Config/devel perl-Log-Dispatch-Config.spec, 1.10, 1.11 Message-ID: <20090726090134.48F2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Dispatch-Config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21639 Modified Files: perl-Log-Dispatch-Config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Dispatch-Config.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Dispatch-Config/devel/perl-Log-Dispatch-Config.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Log-Dispatch-Config.spec 26 Feb 2009 21:06:56 -0000 1.10 +++ perl-Log-Dispatch-Config.spec 26 Jul 2009 09:01:34 -0000 1.11 @@ -2,7 +2,7 @@ Name: perl-Log-Dispatch-Config Version: 1.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Log4j for Perl Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:01:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:01:48 +0000 (UTC) Subject: rpms/perl-Log-Dispatch-FileRotate/devel perl-Log-Dispatch-FileRotate.spec, 1.10, 1.11 Message-ID: <20090726090148.30FCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Dispatch-FileRotate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21796 Modified Files: perl-Log-Dispatch-FileRotate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Dispatch-FileRotate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Dispatch-FileRotate/devel/perl-Log-Dispatch-FileRotate.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Log-Dispatch-FileRotate.spec 26 Feb 2009 21:08:01 -0000 1.10 +++ perl-Log-Dispatch-FileRotate.spec 26 Jul 2009 09:01:48 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Log-Dispatch-FileRotate Version: 1.19 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Log to files that archive/rotate themselves Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.19-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:02:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:02:03 +0000 (UTC) Subject: rpms/perl-Log-Dispatch-Perl/devel perl-Log-Dispatch-Perl.spec, 1.3, 1.4 Message-ID: <20090726090203.2803211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Dispatch-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21951 Modified Files: perl-Log-Dispatch-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Dispatch-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Dispatch-Perl/devel/perl-Log-Dispatch-Perl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Log-Dispatch-Perl.spec 26 Feb 2009 21:09:00 -0000 1.3 +++ perl-Log-Dispatch-Perl.spec 26 Jul 2009 09:02:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Log-Dispatch-Perl Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Use core Perl functions for logging License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:02:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:02:18 +0000 (UTC) Subject: rpms/perl-Log-Log4perl/devel perl-Log-Log4perl.spec,1.21,1.22 Message-ID: <20090726090218.0154D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Log4perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22104 Modified Files: perl-Log-Log4perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Log4perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Log4perl/devel/perl-Log-Log4perl.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-Log-Log4perl.spec 26 Feb 2009 21:10:02 -0000 1.21 +++ perl-Log-Log4perl.spec 26 Jul 2009 09:02:17 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-Log-Log4perl Version: 1.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Log4j implementation for Perl Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:02:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:02:32 +0000 (UTC) Subject: rpms/perl-Log-LogLite/devel perl-Log-LogLite.spec,1.1,1.2 Message-ID: <20090726090232.4D8F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-LogLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22256 Modified Files: perl-Log-LogLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-LogLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-LogLite/devel/perl-Log-LogLite.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Log-LogLite.spec 23 Apr 2009 19:30:39 -0000 1.1 +++ perl-Log-LogLite.spec 26 Jul 2009 09:02:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Log-LogLite Version: 0.82 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create simple logs License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.82-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Xavier Bachelot 0.82-1 - Specfile autogenerated by cpanspec 1.77. - Clean up spec. From jkeating at fedoraproject.org Sun Jul 26 09:02:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:02:46 +0000 (UTC) Subject: rpms/perl-Log-Trace/devel perl-Log-Trace.spec,1.1,1.2 Message-ID: <20090726090246.219A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Trace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22406 Modified Files: perl-Log-Trace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Trace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Trace/devel/perl-Log-Trace.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Log-Trace.spec 5 Apr 2009 05:18:21 -0000 1.1 +++ perl-Log-Trace.spec 26 Jul 2009 09:02:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Log-Trace Version: 1.070 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Log/Trace.pm -> GPLv2+ License: GPLv2+ Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.070-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Chris Weyl 1.070-1 - submission From jkeating at fedoraproject.org Sun Jul 26 09:03:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:03:01 +0000 (UTC) Subject: rpms/perl-Log-TraceMessages/devel perl-Log-TraceMessages.spec, 1.3, 1.4 Message-ID: <20090726090301.5EF8011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-TraceMessages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22542 Modified Files: perl-Log-TraceMessages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-TraceMessages.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-TraceMessages/devel/perl-Log-TraceMessages.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Log-TraceMessages.spec 26 Feb 2009 21:11:01 -0000 1.3 +++ perl-Log-TraceMessages.spec 26 Jul 2009 09:03:01 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Log-TraceMessages Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for trace messages used in debugging Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:03:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:03:17 +0000 (UTC) Subject: rpms/perl-Log-Trivial/devel perl-Log-Trivial.spec,1.3,1.4 Message-ID: <20090726090317.451CA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Log-Trivial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22730 Modified Files: perl-Log-Trivial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Log-Trivial.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Log-Trivial/devel/perl-Log-Trivial.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Log-Trivial.spec 26 Feb 2009 19:22:34 -0000 1.3 +++ perl-Log-Trivial.spec 26 Jul 2009 09:03:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Log-Trivial Version: 0.31 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Very simple tool for writing very simple log files License: GPLv3+ Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.31-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:03:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:03:31 +0000 (UTC) Subject: rpms/perl-MARC-Record/devel perl-MARC-Record.spec,1.6,1.7 Message-ID: <20090726090331.547FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MARC-Record/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22866 Modified Files: perl-MARC-Record.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MARC-Record.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MARC-Record/devel/perl-MARC-Record.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-MARC-Record.spec 26 Feb 2009 19:23:31 -0000 1.6 +++ perl-MARC-Record.spec 26 Jul 2009 09:03:31 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-MARC-Record Version: 2.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Object-oriented abstraction of MARC record handling Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:03:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:03:45 +0000 (UTC) Subject: rpms/perl-MD5/devel perl-MD5.spec,1.4,1.5 Message-ID: <20090726090345.1883011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MD5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23017 Modified Files: perl-MD5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MD5.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MD5/devel/perl-MD5.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MD5.spec 26 Feb 2009 19:24:30 -0000 1.4 +++ perl-MD5.spec 26 Jul 2009 09:03:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MD5 Version: 2.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl interface to the MD5 Message-Digest Algorithm License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:04:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:04:00 +0000 (UTC) Subject: rpms/perl-MIME-Charset/devel perl-MIME-Charset.spec,1.1,1.2 Message-ID: <20090726090400.E3C3011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MIME-Charset/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23160 Modified Files: perl-MIME-Charset.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MIME-Charset.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-Charset/devel/perl-MIME-Charset.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-MIME-Charset.spec 30 Apr 2009 17:22:06 -0000 1.1 +++ perl-MIME-Charset.spec 26 Jul 2009 09:04:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-MIME-Charset Version: 1.006.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Charset Informations for MIME License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.006.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Xavier Bachelot 1.006.2-2 - Filter duplicate Provides:. From jkeating at fedoraproject.org Sun Jul 26 09:04:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:04:16 +0000 (UTC) Subject: rpms/perl-MIME-EncWords/devel perl-MIME-EncWords.spec,1.1,1.2 Message-ID: <20090726090416.24C9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MIME-EncWords/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23335 Modified Files: perl-MIME-EncWords.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MIME-EncWords.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-EncWords/devel/perl-MIME-EncWords.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-MIME-EncWords.spec 4 May 2009 20:58:49 -0000 1.1 +++ perl-MIME-EncWords.spec 26 Jul 2009 09:04:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-MIME-EncWords Version: 1.010.101 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Deal with RFC 2047 encoded words (improved) License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.010.101-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Xavier Bachelot 1.010.101-2 - Better Description; tag. - Filter duplicate Provides:. From jkeating at fedoraproject.org Sun Jul 26 09:04:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:04:33 +0000 (UTC) Subject: rpms/perl-MIME-Lite/devel perl-MIME-Lite.spec,1.9,1.10 Message-ID: <20090726090433.2026311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MIME-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23488 Modified Files: perl-MIME-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MIME-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-Lite/devel/perl-MIME-Lite.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-MIME-Lite.spec 26 Feb 2009 21:12:00 -0000 1.9 +++ perl-MIME-Lite.spec 26 Jul 2009 09:04:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-MIME-Lite Version: 3.01 -Release: 9%{?dist} +Release: 10%{?dist} Summary: MIME::Lite - low-calorie MIME generator Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.01-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.01-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:04:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:04:50 +0000 (UTC) Subject: rpms/perl-MIME-Types/devel perl-MIME-Types.spec,1.21,1.22 Message-ID: <20090726090450.9087011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MIME-Types/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23642 Modified Files: perl-MIME-Types.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MIME-Types.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-Types/devel/perl-MIME-Types.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-MIME-Types.spec 13 Mar 2009 21:51:35 -0000 1.21 +++ perl-MIME-Types.spec 26 Jul 2009 09:04:50 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-MIME-Types Version: 1.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MIME types module for Perl License: GPL+ or Artistic @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.27-1 - update to 1.27 From jkeating at fedoraproject.org Sun Jul 26 09:05:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:05:06 +0000 (UTC) Subject: rpms/perl-MIME-tools/devel perl-MIME-tools.spec,1.23,1.24 Message-ID: <20090726090506.6FE3C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MIME-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23803 Modified Files: perl-MIME-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MIME-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-tools/devel/perl-MIME-tools.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-MIME-tools.spec 26 Feb 2009 21:13:56 -0000 1.23 +++ perl-MIME-tools.spec 26 Jul 2009 09:05:06 -0000 1.24 @@ -3,7 +3,7 @@ Name: perl-MIME-tools Version: 5.427 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Modules for parsing and creating MIME entities in Perl Group: Development/Libraries License: GPL+ or Artistic @@ -80,6 +80,9 @@ TEST_POD_COVERAGE=0 %{__make} test %{_mandir}/man3/MIME::*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.427-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.427-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:05:23 +0000 (UTC) Subject: rpms/perl-MLDBM/devel perl-MLDBM.spec,1.10,1.11 Message-ID: <20090726090523.B300711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MLDBM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23964 Modified Files: perl-MLDBM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MLDBM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MLDBM/devel/perl-MLDBM.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-MLDBM.spec 26 Feb 2009 21:15:42 -0000 1.10 +++ perl-MLDBM.spec 26 Jul 2009 09:05:23 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-MLDBM Version: 2.01 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Store multi-level hash structure in single level tied hash Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.01-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.01-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:05:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:05:41 +0000 (UTC) Subject: rpms/perl-MP3-Info/devel perl-MP3-Info.spec,1.12,1.13 Message-ID: <20090726090541.03A1111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MP3-Info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24131 Modified Files: perl-MP3-Info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MP3-Info.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MP3-Info/devel/perl-MP3-Info.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-MP3-Info.spec 26 Feb 2009 21:16:48 -0000 1.12 +++ perl-MP3-Info.spec 26 Jul 2009 09:05:40 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-MP3-Info Version: 1.23 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Manipulate / fetch info from MP3 audio files Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:05:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:05:57 +0000 (UTC) Subject: rpms/perl-MRO-Compat/devel perl-MRO-Compat.spec,1.8,1.9 Message-ID: <20090726090557.E8D1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MRO-Compat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24261 Modified Files: perl-MRO-Compat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MRO-Compat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MRO-Compat/devel/perl-MRO-Compat.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-MRO-Compat.spec 2 Jun 2009 07:18:24 -0000 1.8 +++ perl-MRO-Compat.spec 26 Jul 2009 09:05:57 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-MRO-Compat Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mro::* interface compatibility for Perls < 5.9.5 License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 0.11-1 - auto-update to 0.11 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 09:06:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:06:15 +0000 (UTC) Subject: rpms/perl-Mail-Alias/devel perl-Mail-Alias.spec,1.14,1.15 Message-ID: <20090726090615.F409511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Alias/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24473 Modified Files: perl-Mail-Alias.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Alias.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Alias/devel/perl-Mail-Alias.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Mail-Alias.spec 26 Feb 2009 21:18:41 -0000 1.14 +++ perl-Mail-Alias.spec 26 Jul 2009 09:06:15 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Mail-Alias Version: 1.12 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Module for manipulating e-mail alias files License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:06:33 +0000 (UTC) Subject: rpms/perl-Mail-Box/devel perl-Mail-Box.spec,1.10,1.11 Message-ID: <20090726090633.49B3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Box/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24624 Modified Files: perl-Mail-Box.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Box.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Box/devel/perl-Mail-Box.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Mail-Box.spec 13 Mar 2009 20:42:39 -0000 1.10 +++ perl-Mail-Box.spec 26 Jul 2009 09:06:33 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Mail-Box Version: 2.087 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Manage a mailbox, a folder with messages Group: Development/Libraries License: GPL+ or Artistic @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.087-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 2.087-1 - update to 2.087 From jkeating at fedoraproject.org Sun Jul 26 09:06:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:06:49 +0000 (UTC) Subject: rpms/perl-Mail-Box-Parser-C/devel perl-Mail-Box-Parser-C.spec, 1.5, 1.6 Message-ID: <20090726090649.D767411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Box-Parser-C/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24802 Modified Files: perl-Mail-Box-Parser-C.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Box-Parser-C.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Box-Parser-C/devel/perl-Mail-Box-Parser-C.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Mail-Box-Parser-C.spec 26 Feb 2009 21:20:29 -0000 1.5 +++ perl-Mail-Box-Parser-C.spec 26 Jul 2009 09:06:49 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Mail-Box-Parser-C Version: 3.006 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Parsing folders for MailBox with C routines Group: Development/Libraries License: GPL+ or Artistic @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.006-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.006-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:07:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:07:06 +0000 (UTC) Subject: rpms/perl-Mail-DKIM/devel perl-Mail-DKIM.spec,1.5,1.6 Message-ID: <20090726090706.D93B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-DKIM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25014 Modified Files: perl-Mail-DKIM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-DKIM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-DKIM/devel/perl-Mail-DKIM.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Mail-DKIM.spec 10 Jun 2009 22:11:05 -0000 1.5 +++ perl-Mail-DKIM.spec 26 Jul 2009 09:07:06 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Mail-DKIM Version: 0.33 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sign and verify Internet mail with DKIM/DomainKey signatures Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.33-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Kyle VanderBeek - 0.33-2 - Revise network-driven testing exclusions. From jkeating at fedoraproject.org Sun Jul 26 09:07:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:07:23 +0000 (UTC) Subject: rpms/perl-Mail-GnuPG/devel perl-Mail-GnuPG.spec,1.11,1.12 Message-ID: <20090726090723.5342511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-GnuPG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25194 Modified Files: perl-Mail-GnuPG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-GnuPG.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-GnuPG/devel/perl-Mail-GnuPG.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Mail-GnuPG.spec 26 Feb 2009 21:22:13 -0000 1.11 +++ perl-Mail-GnuPG.spec 26 Jul 2009 09:07:23 -0000 1.12 @@ -1,7 +1,7 @@ Name: perl-Mail-GnuPG Summary: Process email with GPG Version: 0.15 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Mail-GnuPG/ @@ -52,6 +52,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:07:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:07:40 +0000 (UTC) Subject: rpms/perl-Mail-IMAPClient/devel perl-Mail-IMAPClient.spec,1.8,1.9 Message-ID: <20090726090740.4EDD611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-IMAPClient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25368 Modified Files: perl-Mail-IMAPClient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-IMAPClient.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-IMAPClient/devel/perl-Mail-IMAPClient.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Mail-IMAPClient.spec 13 Mar 2009 20:44:53 -0000 1.8 +++ perl-Mail-IMAPClient.spec 26 Jul 2009 09:07:40 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Mail-IMAPClient Version: 3.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An IMAP Client API Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 3.14-1 - update to 3.14 From jkeating at fedoraproject.org Sun Jul 26 09:07:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:07:56 +0000 (UTC) Subject: rpms/perl-Mail-Mbox-MessageParser/devel perl-Mail-Mbox-MessageParser.spec, 1.14, 1.15 Message-ID: <20090726090756.48D0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25522 Modified Files: perl-Mail-Mbox-MessageParser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Mbox-MessageParser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel/perl-Mail-Mbox-MessageParser.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Mail-Mbox-MessageParser.spec 26 Feb 2009 21:23:56 -0000 1.14 +++ perl-Mail-Mbox-MessageParser.spec 26 Jul 2009 09:07:56 -0000 1.15 @@ -1,7 +1,7 @@ Summary: A fast and simple mbox folder reader Name: perl-Mail-Mbox-MessageParser Version: 1.5000 -Release: 7%{?dist} +Release: 8%{?dist} License: GPL+ Group: Development/Libraries Url: http://search.cpan.org/dist/Mail-Mbox-MessageParser/ @@ -54,6 +54,9 @@ information, GNU grep, or highly optimiz %{_mandir}/man3/Mail::Mbox::MessageParser* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5000-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5000-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:08:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:08:13 +0000 (UTC) Subject: rpms/perl-Mail-POP3Client/devel perl-Mail-POP3Client.spec,1.2,1.3 Message-ID: <20090726090813.8711511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-POP3Client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25683 Modified Files: perl-Mail-POP3Client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-POP3Client.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-POP3Client/devel/perl-Mail-POP3Client.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Mail-POP3Client.spec 26 Feb 2009 21:24:48 -0000 1.2 +++ perl-Mail-POP3Client.spec 26 Jul 2009 09:08:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Mail-POP3Client Version: 2.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl 5 module to talk to a POP3 (RFC1939) server License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:08:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:08:29 +0000 (UTC) Subject: rpms/perl-Mail-RFC822-Address/devel perl-Mail-RFC822-Address.spec, 1.3, 1.4 Message-ID: <20090726090829.68E8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-RFC822-Address/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25838 Modified Files: perl-Mail-RFC822-Address.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-RFC822-Address.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-RFC822-Address/devel/perl-Mail-RFC822-Address.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Mail-RFC822-Address.spec 26 Feb 2009 21:25:43 -0000 1.3 +++ perl-Mail-RFC822-Address.spec 26 Jul 2009 09:08:29 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Mail-RFC822-Address Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for validating email addresses according to RFC822 License: MIT Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:08:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:08:45 +0000 (UTC) Subject: rpms/perl-Mail-SPF/devel perl-Mail-SPF.spec,1.4,1.5 Message-ID: <20090726090845.607A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-SPF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26018 Modified Files: perl-Mail-SPF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-SPF.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-SPF/devel/perl-Mail-SPF.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Mail-SPF.spec 26 Feb 2009 21:26:36 -0000 1.4 +++ perl-Mail-SPF.spec 26 Jul 2009 09:08:45 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Mail-SPF Version: 2.006 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Object-oriented implementation of Sender Policy Framework License: BSD Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.006-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.006-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:09:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:09:02 +0000 (UTC) Subject: rpms/perl-Mail-SPF-Query/devel perl-Mail-SPF-Query.spec,1.7,1.8 Message-ID: <20090726090902.2DBDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-SPF-Query/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26177 Modified Files: perl-Mail-SPF-Query.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-SPF-Query.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-SPF-Query/devel/perl-Mail-SPF-Query.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Mail-SPF-Query.spec 26 Feb 2009 21:27:31 -0000 1.7 +++ perl-Mail-SPF-Query.spec 26 Jul 2009 09:09:01 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Mail-SPF-Query Version: 1.999.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Query Sender Policy Framework License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.999.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.999.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:09:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:09:21 +0000 (UTC) Subject: rpms/perl-Mail-Sender/devel perl-Mail-Sender.spec,1.9,1.10 Message-ID: <20090726090921.22FCD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Sender/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26368 Modified Files: perl-Mail-Sender.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Sender.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Sender/devel/perl-Mail-Sender.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Mail-Sender.spec 13 Mar 2009 21:30:31 -0000 1.9 +++ perl-Mail-Sender.spec 26 Jul 2009 09:09:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Mail-Sender Version: 0.8.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Module for sending mails with attachments through an SMTP server Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.8.16-2 - missing BR on Test::More From jkeating at fedoraproject.org Sun Jul 26 09:09:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:09:38 +0000 (UTC) Subject: rpms/perl-Mail-Sendmail/devel perl-Mail-Sendmail.spec,1.12,1.13 Message-ID: <20090726090938.C60A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Sendmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26561 Modified Files: perl-Mail-Sendmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Sendmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Sendmail/devel/perl-Mail-Sendmail.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Mail-Sendmail.spec 26 Feb 2009 21:29:42 -0000 1.12 +++ perl-Mail-Sendmail.spec 26 Jul 2009 09:09:38 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Mail-Sendmail Version: 0.79 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Simple platform independent mailer for Perl License: Copyright only @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.79-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.79-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:09:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:09:55 +0000 (UTC) Subject: rpms/perl-Mail-Transport-Dbx/devel perl-Mail-Transport-Dbx.spec, 1.6, 1.7 Message-ID: <20090726090955.5512911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mail-Transport-Dbx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26717 Modified Files: perl-Mail-Transport-Dbx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mail-Transport-Dbx.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mail-Transport-Dbx/devel/perl-Mail-Transport-Dbx.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Mail-Transport-Dbx.spec 26 Feb 2009 21:30:50 -0000 1.6 +++ perl-Mail-Transport-Dbx.spec 26 Jul 2009 09:09:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Mail-Transport-Dbx Version: 0.07 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Parse Outlook Express mailboxes Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:10:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:10:13 +0000 (UTC) Subject: rpms/perl-MailTools/devel perl-MailTools.spec,1.30,1.31 Message-ID: <20090726091013.2911611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MailTools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26900 Modified Files: perl-MailTools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MailTools.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MailTools/devel/perl-MailTools.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- perl-MailTools.spec 26 Feb 2009 21:31:45 -0000 1.30 +++ perl-MailTools.spec 26 Jul 2009 09:10:12 -0000 1.31 @@ -1,7 +1,7 @@ Summary: Various mail-related perl modules Name: perl-MailTools Version: 2.04 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/MailTools/ @@ -64,6 +64,9 @@ cd - %{_mandir}/man3/Mail::*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:10:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:10:28 +0000 (UTC) Subject: rpms/perl-MasonX-Interp-WithCallbacks/devel perl-MasonX-Interp-WithCallbacks.spec, 1.6, 1.7 Message-ID: <20090726091028.1C00411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MasonX-Interp-WithCallbacks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27056 Modified Files: perl-MasonX-Interp-WithCallbacks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MasonX-Interp-WithCallbacks.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MasonX-Interp-WithCallbacks/devel/perl-MasonX-Interp-WithCallbacks.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-MasonX-Interp-WithCallbacks.spec 26 Feb 2009 21:32:48 -0000 1.6 +++ perl-MasonX-Interp-WithCallbacks.spec 26 Jul 2009 09:10:27 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-MasonX-Interp-WithCallbacks Version: 1.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mason callback support via Params::CallbackRequest License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:10:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:10:45 +0000 (UTC) Subject: rpms/perl-MasonX-Request-WithApacheSession/devel perl-MasonX-Request-WithApacheSession.spec, 1.3, 1.4 Message-ID: <20090726091045.5079A11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MasonX-Request-WithApacheSession/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27227 Modified Files: perl-MasonX-Request-WithApacheSession.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MasonX-Request-WithApacheSession.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MasonX-Request-WithApacheSession/devel/perl-MasonX-Request-WithApacheSession.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MasonX-Request-WithApacheSession.spec 26 Feb 2009 21:33:44 -0000 1.3 +++ perl-MasonX-Request-WithApacheSession.spec 26 Jul 2009 09:10:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MasonX-Request-WithApacheSession Version: 0.30 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Add a session to the Mason Request object License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:11:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:11:02 +0000 (UTC) Subject: rpms/perl-Math-Base85/devel perl-Math-Base85.spec,1.4,1.5 Message-ID: <20090726091102.94DC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Base85/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27416 Modified Files: perl-Math-Base85.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Base85.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Base85/devel/perl-Math-Base85.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Math-Base85.spec 26 Feb 2009 21:34:45 -0000 1.4 +++ perl-Math-Base85.spec 26 Jul 2009 09:11:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Math-Base85 Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl extension for base 85 numbers, as referenced by RFC 1924 Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:11:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:11:17 +0000 (UTC) Subject: rpms/perl-Math-BaseCnv/devel perl-Math-BaseCnv.spec,1.3,1.4 Message-ID: <20090726091117.B435011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-BaseCnv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27588 Modified Files: perl-Math-BaseCnv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-BaseCnv.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-BaseCnv/devel/perl-Math-BaseCnv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Math-BaseCnv.spec 26 Feb 2009 21:35:42 -0000 1.3 +++ perl-Math-BaseCnv.spec 26 Jul 2009 09:11:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Math-BaseCnv Version: 1.4.75O6Pbr -Release: 4%{?dist} +Release: 5%{?dist} Summary: Fast functions to CoNVert between number Bases Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.75O6Pbr-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.75O6Pbr-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:11:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:11:31 +0000 (UTC) Subject: rpms/perl-Math-BigInt-GMP/devel perl-Math-BigInt-GMP.spec,1.2,1.3 Message-ID: <20090726091131.8980411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-BigInt-GMP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27730 Modified Files: perl-Math-BigInt-GMP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-BigInt-GMP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-BigInt-GMP/devel/perl-Math-BigInt-GMP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Math-BigInt-GMP.spec 26 Feb 2009 21:36:38 -0000 1.2 +++ perl-Math-BigInt-GMP.spec 26 Jul 2009 09:11:31 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Math-BigInt-GMP Version: 1.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Math::BigInt::GMP Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:11:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:11:46 +0000 (UTC) Subject: rpms/perl-Math-Curve-Hilbert/devel perl-Math-Curve-Hilbert.spec, 1.1, 1.2 Message-ID: <20090726091146.CD23F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27906 Modified Files: perl-Math-Curve-Hilbert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Curve-Hilbert.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Curve-Hilbert/devel/perl-Math-Curve-Hilbert.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Math-Curve-Hilbert.spec 10 Jul 2009 20:43:43 -0000 1.1 +++ perl-Math-Curve-Hilbert.spec 26 Jul 2009 09:11:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Math-Curve-Hilbert Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl Implementation of Hilberts space-filling Curve License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Rasmus Ory Nielsen - 0.04-2 - Improved description. From jkeating at fedoraproject.org Sun Jul 26 09:12:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:12:07 +0000 (UTC) Subject: rpms/perl-Math-Derivative/devel perl-Math-Derivative.spec,1.4,1.5 Message-ID: <20090726091207.9543511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Derivative/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28113 Modified Files: perl-Math-Derivative.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Derivative.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Derivative/devel/perl-Math-Derivative.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Math-Derivative.spec 26 Feb 2009 21:37:35 -0000 1.4 +++ perl-Math-Derivative.spec 26 Jul 2009 09:12:07 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Math-Derivative Version: 0.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Numeric 1st and 2nd order differentiation License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:12:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:12:25 +0000 (UTC) Subject: rpms/perl-Math-FFT/devel perl-Math-FFT.spec,1.2,1.3 Message-ID: <20090726091225.270E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-FFT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28269 Modified Files: perl-Math-FFT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-FFT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-FFT/devel/perl-Math-FFT.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Math-FFT.spec 26 Feb 2009 21:38:36 -0000 1.2 +++ perl-Math-FFT.spec 26 Jul 2009 09:12:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Math-FFT Version: 1.28 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl module to calculate Fast Fourier Transforms # Perl module code is GPL+ or same as Perl itself # arrays.c has same licence as Perl itself @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.28-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.28-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 09:12:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 09:12:41 +0000 (UTC) Subject: rpms/perl-Math-GMP/devel perl-Math-GMP.spec,1.16,1.17 Message-ID: <20090726091241.B1A3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-GMP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28455 Modified Files: perl-Math-GMP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-GMP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-GMP/devel/perl-Math-GMP.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Math-GMP.spec 7 Mar 2009 21:45:28 -0000 1.16 +++ perl-Math-GMP.spec 26 Jul 2009 09:12:41 -0000 1.17 @@ -1,7 +1,7 @@ Summary: High speed arbitrary size integer math Name: perl-Math-GMP Version: 2.05 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: Development/Libraries Url: http://search.cpan.org/dist/Math-GMP/ @@ -73,6 +73,9 @@ cd - %{_mandir}/man3/Math::GMP.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Paul Howarth 2.05-4 - Filter out unwanted provides for perl shared objects - Do the build in a subdirectory so that the debug files list doesn't interfere From elcody02 at fedoraproject.org Sun Jul 26 09:22:40 2009 From: elcody02 at fedoraproject.org (Marc Grimme) Date: Sun, 26 Jul 2009 09:22:40 +0000 (UTC) Subject: rpms/comoonics-cluster-py/devel comoonics-cluster-py.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726092240.3FB8C11C00CE@cvs1.fedora.phx.redhat.com> Author: elcody02 Update of /cvs/pkgs/rpms/comoonics-cluster-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31555/devel Modified Files: .cvsignore sources Added Files: comoonics-cluster-py.spec import.log Log Message: * Sun Jul 26 2009 MG , 0.1-22 initial import --- NEW FILE comoonics-cluster-py.spec --- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %define modulename comoonics Summary: Comoonics cluster configuration utilities written in Python Name: comoonics-cluster-py Version: 0.1 Release: 22 Source0: http://www.open-sharedroot.org/development/comoonics-cluster-py/comoonics-cluster-py-%{version}.tar.gz License: GPLv2+ Group: Development/Libraries BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch Requires: python PyXML comoonics-base-py Url: http://www.open-sharedroot.org/development/comoonics-cluster-py BuildRequires: python-devel %description Comoonics cluster configuration utilities written in Python %prep %setup -q %build python setup.py %{name} build %install rm -rf $RPM_BUILD_ROOT python setup.py %{name} install --root=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{python_sitelib}/*.egg-info %dir %{python_sitelib}/comoonics/cluster %{python_sitelib}/comoonics/cluster/*.py %{python_sitelib}/comoonics/cluster/*.pyc %{python_sitelib}/comoonics/cluster/*.pyo %dir %{python_sitelib}/comoonics/cluster/helper %{python_sitelib}/comoonics/cluster/helper/*.py %{python_sitelib}/comoonics/cluster/helper/*.pyc %{python_sitelib}/comoonics/cluster/helper/*.pyo /usr/share/man/man1/com-queryclusterconf.1.gz %attr(0755, root, root) /usr/bin/com-queryclusterconf %doc README.txt LICENSE.txt %changelog * Wed Jul 22 2009 MG , 0.1-22 - fixed bugs in querymap - moved com-queryclusterconf to getopts * Tue Jul 21 2009 MG , 0.1-21 - made fedora compliant * Tue Jul 14 2009 MG , 0.1-20 - Made dependent on comoonics-base-py * Mon Jul 06 2009 MG , 0.1-19 - Made python 2.6 compatible - Code review/write * Tue Feb 24 2009 MG , 0.1-17 - added a helper method for parsing the clusterconfiguration * Mon Aug 04 2008 MG , 0.1-16 - added non static clusteroptions and redhat helper class - fixed some unittesting * Fri Jun 20 2008 MH , 0.1-15 - removed default mountopts * Wed Jun 18 2008 MH , 0.1-14 - added query for nodenamebyid * Tue Jun 10 2008 MG , 0.1-13 - added cluster.conf conversion * Wed Jun 04 2008 MG , 0.1-12 - added createOCFS2ClusterConf * Tue May 20 2008 MG , 0.1-11 - Changed the text of an errormessage to be better readable. * Fri May 09 2008 MG , 0.1-10 - Implemented BUG#218 for creating hosts with dhcp * Tue Apr 08 2008 AO , 0.1-9 - added new methods - added posibility to hand over a hash to ClusterRepository (instead of an xml-object) - changed binaries to fix use of log parameters * Fri Feb 29 2008 MH , 0.1-7 - added new methods * Thu Jan 24 2008 MG , 0.1-6 - rebuild for rpmspecfile updates * Wed Sep 19 2007 AO , 0.1-5 - bug fixed BZ #79 - added unittests - adapted code in dependence on Python Style Guide * Tue Sep 04 2007 MH , 0.1-4 - bug fixes - added man pages * Fri Aug 03 2007 AO , 0.1-1 initial revision --- NEW FILE import.log --- comoonics-cluster-py-0_1-22:HEAD:comoonics-cluster-py-0.1-22.src.rpm:1248600046 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-cluster-py/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:18:59 -0000 1.1 +++ .cvsignore 26 Jul 2009 09:22:38 -0000 1.2 @@ -0,0 +1 @@ +comoonics-cluster-py-0.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/comoonics-cluster-py/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:18:59 -0000 1.1 +++ sources 26 Jul 2009 09:22:39 -0000 1.2 @@ -0,0 +1 @@ +90967a8680ed568f8e6b4421a9a802db comoonics-cluster-py-0.1.tar.gz From elcody02 at fedoraproject.org Sun Jul 26 09:22:48 2009 From: elcody02 at fedoraproject.org (Marc Grimme) Date: Sun, 26 Jul 2009 09:22:48 +0000 (UTC) Subject: rpms/osr-dracut-module/devel import.log, NONE, 1.1 osr-dracut-module.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726092248.A5DF711C00CE@cvs1.fedora.phx.redhat.com> Author: elcody02 Update of /cvs/pkgs/rpms/osr-dracut-module/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31621/devel Modified Files: .cvsignore sources Added Files: import.log osr-dracut-module.spec Log Message: * Sun Jul 26 2009 MG , 0.7-2 initial import --- NEW FILE import.log --- osr-dracut-module-0_7-2:HEAD:osr-dracut-module-0.7-2.src.rpm:1248600070 --- NEW FILE osr-dracut-module.spec --- Name: osr-dracut-module Version: 0.7 Release: 2 Summary: Dracut modules for open sharedroot Group: System Environment/Base License: GPLv2+ URL: http://www.open-sharedroot.org/development/osr-dracut-module/ Source0: http://www.open-sharedroot.org/development/osr-dracut-module/osr-dracut-module-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Requires: dracut >= 0.7 BuildArch: noarch %description This is the open-sharedroot module for dracut. %package cluster Summary: Additional base cluster modules for shared booting with open-sharedroot Release: 2 Requires: dracut >= 0.7 Requires: osr-dracut-module Requires: comoonics-cluster-py %description cluster Additional base cluster modules for shared booting with open-sharedroot %prep %setup -q %build make %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT sbindir=/sbin sysconfdir=/etc mandir=%{_mandir} %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,0755) %doc README.txt COPYING AUTHORS %{_datadir}/dracut/modules.d/96osr %files cluster %defattr(-,root,root,0755) %{_datadir}/dracut/modules.d/95osr-cluster %doc README.osr-cluster.txt COPYING AUTHORS %changelog * Tue Jul 23 2009 Marc Grimme 0.7-2 - added COPYING, AUTHORS to osr-dracut-module-cluster * Wed Jul 22 2009 Marc Grimme 0.7-1 - dependent on dracut >= 0.7 * Wed Jul 22 2009 Marc Grimme 0.6-1 - Initial build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/osr-dracut-module/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:18:25 -0000 1.1 +++ .cvsignore 26 Jul 2009 09:22:48 -0000 1.2 @@ -0,0 +1 @@ +osr-dracut-module-0.7.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/osr-dracut-module/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:18:25 -0000 1.1 +++ sources 26 Jul 2009 09:22:48 -0000 1.2 @@ -0,0 +1 @@ +868150a5d4cc6346e90bc10cc2d971be osr-dracut-module-0.7.tar.bz2 From caolanm at fedoraproject.org Sun Jul 26 09:59:57 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Sun, 26 Jul 2009 09:59:57 +0000 (UTC) Subject: rpms/hunspell-ko/devel .cvsignore, 1.5, 1.6 hunspell-ko.spec, 1.5, 1.6 sources, 1.5, 1.6 Message-ID: <20090726095957.ED2AD11C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13254 Modified Files: .cvsignore hunspell-ko.spec sources Log Message: latest version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 6 Jul 2009 08:02:24 -0000 1.5 +++ .cvsignore 26 Jul 2009 09:59:57 -0000 1.6 @@ -1 +1 @@ -hunspell-dict-ko-0.3.1.tar.gz +hunspell-dict-ko-0.3.2.tar.gz Index: hunspell-ko.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/hunspell-ko.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- hunspell-ko.spec 25 Jul 2009 02:31:52 -0000 1.5 +++ hunspell-ko.spec 26 Jul 2009 09:59:57 -0000 1.6 @@ -1,7 +1,7 @@ Name: hunspell-ko Summary: Korean hunspell dictionaries -Version: 0.3.1 -Release: 2%{?dist} +Version: 0.3.2 +Release: 1%{?dist} Source: http://spellcheck-ko.googlecode.com/files/hunspell-dict-ko-%{version}.tar.gz Group: Applications/Text URL: http://code.google.com/p/spellcheck-ko/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/myspell/* %changelog +* Sun Jul 26 2009 Caolan McNamara - 0.3.2-1 +- latest version + * Fri Jul 24 2009 Fedora Release Engineering - 0.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 6 Jul 2009 08:02:24 -0000 1.5 +++ sources 26 Jul 2009 09:59:57 -0000 1.6 @@ -1 +1 @@ -3c76f806ca53baaad730bd77f671b2bf hunspell-dict-ko-0.3.1.tar.gz +d931dfac68f34f2d3cd4fad0c12bfd41 hunspell-dict-ko-0.3.2.tar.gz From kanarip at fedoraproject.org Sun Jul 26 10:15:00 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:15:00 +0000 (UTC) Subject: rpms/rubygem-activeresource/devel .cvsignore, 1.7, 1.8 import.log, 1.1, 1.2 rubygem-activeresource.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090726101500.1A1B411C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activeresource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18432/devel Modified Files: .cvsignore import.log rubygem-activeresource.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Mar 2009 11:19:02 -0000 1.7 +++ .cvsignore 26 Jul 2009 10:14:59 -0000 1.8 @@ -1 +1 @@ -activeresource-2.3.2.gem +activeresource-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Mar 2009 11:19:02 -0000 1.1 +++ import.log 26 Jul 2009 10:14:59 -0000 1.2 @@ -1 +1,2 @@ rubygem-activeresource-2_3_2-1_fc10:HEAD:rubygem-activeresource-2.3.2-1.fc10.src.rpm:1237202327 +rubygem-activeresource-2_3_3-1_fc11:HEAD:rubygem-activeresource-2.3.3-1.fc11.src.rpm:1248603192 Index: rubygem-activeresource.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/devel/rubygem-activeresource.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-activeresource.spec 16 Mar 2009 11:19:02 -0000 1.8 +++ rubygem-activeresource.spec 26 Jul 2009 10:14:59 -0000 1.9 @@ -6,7 +6,7 @@ Summary: Active Record for web resources Name: rubygem-%{gemname} -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Mar 2009 11:19:02 -0000 1.7 +++ sources 26 Jul 2009 10:14:59 -0000 1.8 @@ -1 +1 @@ -530068f593488db9b456b201108e9d6f activeresource-2.3.2.gem +c9c5530089534d8f4ffcec20c465af3b activeresource-2.3.3.gem From kanarip at fedoraproject.org Sun Jul 26 10:20:11 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:20:11 +0000 (UTC) Subject: rpms/rubygem-activeresource/F-11 .cvsignore, 1.7, 1.8 import.log, 1.1, 1.2 rubygem-activeresource.spec, 1.8, 1.9 sources, 1.7, 1.8 Message-ID: <20090726102011.70A0111C0416@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activeresource/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20285/F-11 Modified Files: .cvsignore import.log rubygem-activeresource.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 16 Mar 2009 11:19:02 -0000 1.7 +++ .cvsignore 26 Jul 2009 10:20:11 -0000 1.8 @@ -1 +1 @@ -activeresource-2.3.2.gem +activeresource-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Mar 2009 11:19:02 -0000 1.1 +++ import.log 26 Jul 2009 10:20:11 -0000 1.2 @@ -1 +1,2 @@ rubygem-activeresource-2_3_2-1_fc10:HEAD:rubygem-activeresource-2.3.2-1.fc10.src.rpm:1237202327 +rubygem-activeresource-2_3_3-1_fc11:F-11:rubygem-activeresource-2.3.3-1.fc11.src.rpm:1248603483 Index: rubygem-activeresource.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/F-11/rubygem-activeresource.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-activeresource.spec 16 Mar 2009 11:19:02 -0000 1.8 +++ rubygem-activeresource.spec 26 Jul 2009 10:20:11 -0000 1.9 @@ -6,7 +6,7 @@ Summary: Active Record for web resources Name: rubygem-%{gemname} -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: GPLv2+ or Ruby @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeresource/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 16 Mar 2009 11:19:02 -0000 1.7 +++ sources 26 Jul 2009 10:20:11 -0000 1.8 @@ -1 +1 @@ -530068f593488db9b456b201108e9d6f activeresource-2.3.2.gem +c9c5530089534d8f4ffcec20c465af3b activeresource-2.3.3.gem From bojan at fedoraproject.org Sun Jul 26 10:32:23 2009 From: bojan at fedoraproject.org (bojan) Date: Sun, 26 Jul 2009 10:32:23 +0000 (UTC) Subject: rpms/apr/devel apr-1.3.7.tar.bz2.asc, NONE, 1.1 .cvsignore, 1.16, 1.17 apr.spec, 1.87, 1.88 sources, 1.16, 1.17 apr-1.3.6.tar.bz2.asc, 1.1, NONE Message-ID: <20090726103223.C4EBB11C00CE@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25179 Modified Files: .cvsignore apr.spec sources Added Files: apr-1.3.7.tar.bz2.asc Removed Files: apr-1.3.6.tar.bz2.asc Log Message: Bump up to 1.3.7. --- NEW FILE apr-1.3.7.tar.bz2.asc --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Darwin) iD8DBQBKZM2QizpgHwjJdeURAmknAJ9PLh15rpO66j/gyktJrLwOS9OYTACfYpjW BTz/S/WhcOABHHTczdwgydU= =Y8Lw -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 15 Jul 2009 07:54:36 -0000 1.16 +++ .cvsignore 26 Jul 2009 10:32:23 -0000 1.17 @@ -1 +1 @@ -apr-1.3.6.tar.bz2 +apr-1.3.7.tar.bz2 Index: apr.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/apr.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- apr.spec 24 Jul 2009 16:59:19 -0000 1.87 +++ apr.spec 26 Jul 2009 10:32:23 -0000 1.88 @@ -5,8 +5,8 @@ Summary: Apache Portable Runtime library Name: apr -Version: 1.3.6 -Release: 2%{?dist} +Version: 1.3.7 +Release: 1%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Sun Jul 26 2009 Bojan Smojver - 1.3.7-1 +- bump up to 1.3.7 + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 15 Jul 2009 07:54:36 -0000 1.16 +++ sources 26 Jul 2009 10:32:23 -0000 1.17 @@ -1 +1 @@ -1893d54f8ef3981c33ad2ad5fdee1f8a apr-1.3.6.tar.bz2 +1414f695a236a2bf8e470ca624d6a2e8 apr-1.3.7.tar.bz2 --- apr-1.3.6.tar.bz2.asc DELETED --- From kanarip at fedoraproject.org Sun Jul 26 10:42:17 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:42:17 +0000 (UTC) Subject: rpms/rubygem-rails/devel .cvsignore, 1.8, 1.9 import.log, 1.1, 1.2 rubygem-rails.spec, 1.13, 1.14 sources, 1.8, 1.9 Message-ID: <20090726104217.F27C911C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28785/devel Modified Files: .cvsignore import.log rubygem-rails.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 12:38:55 -0000 1.8 +++ .cvsignore 26 Jul 2009 10:42:17 -0000 1.9 @@ -1 +1 @@ -rails-2.3.2.gem +rails-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Mar 2009 12:38:55 -0000 1.1 +++ import.log 26 Jul 2009 10:42:17 -0000 1.2 @@ -1 +1,2 @@ rubygem-rails-2_3_2-1_fc10:HEAD:rubygem-rails-2.3.2-1.fc10.src.rpm:1237207120 +rubygem-rails-2_3_3-1_fc11:HEAD:rubygem-rails-2.3.3-1.fc11.src.rpm:1248604918 Index: rubygem-rails.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/rubygem-rails.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- rubygem-rails.spec 24 Jul 2009 15:46:43 -0000 1.13 +++ rubygem-rails.spec 26 Jul 2009 10:42:17 -0000 1.14 @@ -6,8 +6,8 @@ Summary: Web-application framework Name: rubygem-%{gemname} -Version: 2.3.2 -Release: 3%{?dist} +Version: 2.3.3 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -15,12 +15,16 @@ Source0: http://gems.rubyforge.org/gems/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems) >= 1.1.1 Requires: rubygem(rake) >= 0.7.2 +Requires: rubygem(rack) >= 1.0.0 Requires: rubygem(activesupport) = %{version} Requires: rubygem(activerecord) = %{version} Requires: rubygem(actionpack) = %{version} Requires: rubygem(actionmailer) = %{version} Requires: rubygem(activeresource) = %{version} + BuildRequires: rubygems +BuildRequires: rubygem(rack) >= 1.0.0 + BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} @@ -48,13 +52,16 @@ find %{buildroot}%{geminstdir}/bin -type sed -i '1i#!/usr/bin/ruby\n' %{buildroot}%{geminstdir}/bin/rails for file in `find %{buildroot}/%{geminstdir}/ -type f -perm /a+x`; do - sed -i -re '1s@^#!.*$@#! /usr/bin/ruby@' $file + sed -i -e '1c#!/usr/bin/ruby' $file chmod 755 $file done # Remove backup files find %{buildroot}/%{geminstdir} -type f -name "*~" -delete +# Delete zero-length files +find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; + # Fix anything executable that does not have a shebang for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file @@ -85,6 +92,7 @@ rm -rf %{buildroot} %{geminstdir}/doc %{geminstdir}/environments %{geminstdir}/fresh_rakefile +%{geminstdir}/guides %{geminstdir}/helpers %{geminstdir}/html %{geminstdir}/lib @@ -97,11 +105,8 @@ rm -rf %{buildroot} %changelog -* Wed Jul 24 2009 Scott Seago - 2.3.2-3 -- Remove the 'delete zero length files' bit, as some of these are needed. - -* Wed May 6 2009 David Lutterkort - 2.3.2-2 -- Fix replacement of shebang lines; broke scripts/generate (bz 496480) +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 12:38:55 -0000 1.8 +++ sources 26 Jul 2009 10:42:17 -0000 1.9 @@ -1 +1 @@ -b52822c4c0aa50726e3943181bcaf883 rails-2.3.2.gem +776547f3b8e4f205b389fa2f677b20dc rails-2.3.3.gem From bojan at fedoraproject.org Sun Jul 26 10:49:39 2009 From: bojan at fedoraproject.org (bojan) Date: Sun, 26 Jul 2009 10:49:39 +0000 (UTC) Subject: rpms/apr/devel apr.spec,1.88,1.89 Message-ID: <20090726104939.DA5BB11C00CE@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31587 Modified Files: apr.spec Log Message: Force use of new functions. Index: apr.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/apr.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- apr.spec 26 Jul 2009 10:32:23 -0000 1.88 +++ apr.spec 26 Jul 2009 10:49:39 -0000 1.89 @@ -52,6 +52,11 @@ C data structures and routines. # does not use -lrt). export ac_cv_search_shm_open=no +# We know we have these on new Fedoras (kernel >= 2.6.28) +export apr_cv_epoll_create1=yes +export apr_cv_dup3=yes +export apr_cv_accept4=yes + %configure \ --includedir=%{_includedir}/apr-%{aprver} \ --with-installbuilddir=%{_libdir}/apr-%{aprver}/build \ From kanarip at fedoraproject.org Sun Jul 26 10:50:43 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:50:43 +0000 (UTC) Subject: rpms/rubygem-activerecord/F-11 .cvsignore, 1.8, 1.9 import.log, 1.2, 1.3 rubygem-activerecord.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090726105043.529D811C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activerecord/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31945/F-11 Modified Files: .cvsignore import.log rubygem-activerecord.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 11:14:55 -0000 1.8 +++ .cvsignore 26 Jul 2009 10:50:43 -0000 1.9 @@ -1 +1 @@ -activerecord-2.3.2.gem +activerecord-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 16 Mar 2009 11:14:55 -0000 1.2 +++ import.log 26 Jul 2009 10:50:43 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-activerecord-2_2_2-1_fc10:HEAD:rubygem-activerecord-2.2.2-1.fc10.src.rpm:1227532664 rubygem-activerecord-2_3_2-1_fc10:HEAD:rubygem-activerecord-2.3.2-1.fc10.src.rpm:1237202080 +rubygem-activerecord-2_3_3-1_fc11:F-11:rubygem-activerecord-2.3.3-1.fc11.src.rpm:1248605341 Index: rubygem-activerecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/F-11/rubygem-activerecord.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- rubygem-activerecord.spec 16 Mar 2009 11:14:55 -0000 1.10 +++ rubygem-activerecord.spec 26 Jul 2009 10:50:43 -0000 1.11 @@ -6,7 +6,7 @@ Summary: Implements the ActiveRecord pattern for ORM Name: rubygem-%{gemname} -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 11:14:55 -0000 1.8 +++ sources 26 Jul 2009 10:50:43 -0000 1.9 @@ -1 +1 @@ -c4cb9b6655909594ca43ee939c2fb7f2 activerecord-2.3.2.gem +1516ff58e4e43987aed43a09d7b342d2 activerecord-2.3.3.gem From kanarip at fedoraproject.org Sun Jul 26 10:53:01 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:53:01 +0000 (UTC) Subject: rpms/rubygem-activesupport/devel .cvsignore, 1.8, 1.9 import.log, 1.2, 1.3 rubygem-activesupport.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090726105301.4C2B911C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activesupport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv484/devel Modified Files: .cvsignore import.log rubygem-activesupport.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 10:50:26 -0000 1.8 +++ .cvsignore 26 Jul 2009 10:53:00 -0000 1.9 @@ -1 +1 @@ -activesupport-2.3.2.gem +activesupport-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 16 Mar 2009 10:50:26 -0000 1.2 +++ import.log 26 Jul 2009 10:53:01 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-activesupport-2_2_2-1_fc10:HEAD:rubygem-activesupport-2.2.2-1.fc10.src.rpm:1227537912 rubygem-activesupport-2_3_2-1_fc10:HEAD:rubygem-activesupport-2.3.2-1.fc10.src.rpm:1237200610 +rubygem-activesupport-2_3_3-1_fc11:HEAD:rubygem-activesupport-2.3.3-1.fc11.src.rpm:1248605474 Index: rubygem-activesupport.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/devel/rubygem-activesupport.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-activesupport.spec 16 Mar 2009 10:50:26 -0000 1.9 +++ rubygem-activesupport.spec 26 Jul 2009 10:53:01 -0000 1.10 @@ -6,8 +6,7 @@ Summary: Support and utility classes used by the Rails framework Name: rubygem-%{gemname} - -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -65,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 10:50:26 -0000 1.8 +++ sources 26 Jul 2009 10:53:01 -0000 1.9 @@ -1 +1 @@ -d2a80181483530cc68683b1b36310ba2 activesupport-2.3.2.gem +7ca84c881594a6a999c9ac7e5e37011c activesupport-2.3.3.gem From kanarip at fedoraproject.org Sun Jul 26 10:53:04 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:53:04 +0000 (UTC) Subject: rpms/revisor/F-11 .cvsignore, 1.25, 1.26 import.log, 1.8, 1.9 revisor.spec, 1.50, 1.51 sources, 1.50, 1.51 Message-ID: <20090726105304.0A30911C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/revisor/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv418/F-11 Modified Files: .cvsignore import.log revisor.spec sources Log Message: 2.1.7-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 19 Jun 2009 14:57:49 -0000 1.25 +++ .cvsignore 26 Jul 2009 10:53:03 -0000 1.26 @@ -1 +1 @@ -revisor-2.1.6.tar.gz +revisor-2.1.7.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 19 Jun 2009 14:57:49 -0000 1.8 +++ import.log 26 Jul 2009 10:53:03 -0000 1.9 @@ -6,3 +6,4 @@ revisor-2_1_2-2_fc9:HEAD:revisor-2.1.2-2 revisor-2_1_3-1_fc10:HEAD:revisor-2.1.3-1.fc10.src.rpm:1228176091 revisor-2_1_4-1_fc11:HEAD:revisor-2.1.4-1.fc11.src.rpm:1238987564 revisor-2_1_6-1_fc11:F-11:revisor-2.1.6-1.fc11.src.rpm:1245423448 +revisor-2_1_7-1_fc11:F-11:revisor-2.1.7-1.fc11.src.rpm:1248605440 Index: revisor.spec =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/revisor.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- revisor.spec 19 Jun 2009 14:57:49 -0000 1.50 +++ revisor.spec 26 Jul 2009 10:53:03 -0000 1.51 @@ -17,7 +17,7 @@ Summary: Fedora "Spin" Graphical User Interface Name: revisor -Version: 2.1.6 +Version: 2.1.7 Release: 1%{?dist} License: GPLv2 Group: Applications/System @@ -59,6 +59,13 @@ Requires: usermode Requires: pam Requires: python(abi) >= 2.4 Conflicts: fedora-release < 7 + +# Some conditional requirements +#%ifarch x86_64 +#Requires: glibc.i586 +#Requires: glib.i586 +#%endif + # Can't conflict with this one! #Conflicts: centos-release < 5 # Can't conflict with this one! @@ -133,9 +140,10 @@ which builds the live image. ## %if %{pkg_comps} %package comps -Summary: Revisor Comps Files -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Comps Files +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description comps A number of comps files, as up-to-date as possible @@ -146,10 +154,11 @@ A number of comps files, as up-to-date a ## %if %{pkg_cobbler} %package cobbler -Summary: Revisor Cobbler Integration -Group: Applications/System -ExcludeArch: ppc ppc64 -Requires: cobbler, koan, revisor-cli = %{version}-%{release} +Summary: Revisor Cobbler Integration +Group: Applications/System +BuildArch: noarch +ExcludeArch: ppc ppc64 +Requires: cobbler, koan, revisor-cli = %{version}-%{release} %description cobbler Revisor Integration with Cobbler for having Revisor do DHCP, PXE, @@ -161,9 +170,10 @@ Xen and KVM stuff. ## %if %{pkg_composer} %package composer -Summary: Revisor Composer, for use with the Hub -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Composer, for use with the Hub +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description composer Revisor build farms need Composers. This is it. @@ -174,9 +184,10 @@ Revisor build farms need Composers. This ## %if %{pkg_delta} %package delta -Summary: Revisor Deltarpm Integration -Group: Applications/System -Requires: deltarpm, revisor-cli = %{version}-%{release} +Summary: Revisor Deltarpm Integration +Group: Applications/System +BuildArch: noarch +Requires: deltarpm, revisor-cli = %{version}-%{release} %description delta Revisor Integration with deltarpm for generating delta ISO images. @@ -186,9 +197,10 @@ Revisor Integration with deltarpm for ge ## Revisor GUI ## %package gui -Summary: Revisor GUI -Group: Applications/System -Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf +Summary: Revisor GUI +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf Requires: system-config-kickstart %description gui @@ -199,9 +211,10 @@ This is the Revisor GUI package ## %if %{pkg_hub} %package hub -Summary: Revisor Hub for build farms -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Hub for build farms +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description hub Revisor build farms need a Hub. This is it. @@ -212,9 +225,10 @@ Revisor build farms need a Hub. This is ## %if %{pkg_isolinux} %package isolinux -Summary: Revisor plugin for supplying a custom isolinux.cfg -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor plugin for supplying a custom isolinux.cfg +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description isolinux Supply a custom isolinux.cfg to Revisor to incorporate in the installation media @@ -225,9 +239,10 @@ Supply a custom isolinux.cfg to Revisor ## %if %{pkg_jigdo} %package jigdo -Summary: Revisor Integration with Jigdo -Group: Applications/System -Requires: jigdo, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Jigdo +Group: Applications/System +BuildArch: noarch +Requires: jigdo, revisor-cli = %{version}-%{release} %description jigdo Pre-Alpha of Revisor Integration with Jigdo for distributing your compose @@ -238,9 +253,10 @@ Pre-Alpha of Revisor Integration with Ji ## %if %{pkg_mock} %package mock -Summary: Revisor Integration with Mock -Group: Applications/System -Requires: mock, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Mock +Group: Applications/System +BuildArch: noarch +Requires: mock, revisor-cli = %{version}-%{release} %description mock Revisor Integration with Mock for building the installer images @@ -251,9 +267,10 @@ Revisor Integration with Mock for buildi ## %if %{pkg_rebrand} %package rebrand -Summary: Revisor Rebranding Fedora Utilies -Group: Applications/System -Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} +Summary: Revisor Rebranding Fedora Utilies +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} %description rebrand Utilities for Revisor to support rebranding Fedora @@ -264,9 +281,10 @@ Utilities for Revisor to support rebrand ## %if %{pkg_reuseinstaller} %package reuseinstaller -Summary: Revisor Plugin to enable Reusing existing installer images -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Plugin to enable Reusing existing installer images +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description reuseinstaller Revisor Plugin to enable Reusing existing installer images @@ -277,9 +295,10 @@ Revisor Plugin to enable Reusing existin ## %if %{pkg_server} %package server -Summary: Revisor Server -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Server +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description server Utilities for Revisor to support rebranding Fedora @@ -290,9 +309,10 @@ Utilities for Revisor to support rebrand ## %if %{pkg_unity} %package unity -Summary: Fedora Unity Configuration and Scripts for Revisor -Group: Applications/System -Requires: revisor-cli +Summary: Fedora Unity Configuration and Scripts for Revisor +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli %description unity The configuration files and scripts Fedora Unity uses with @@ -304,9 +324,10 @@ Revisor to create Re-Spins and do testin ## %if %{pkg_virt} %package virt -Summary: Revisor Virtualization Media Features -Group: Applications/System -Requires: python-virtinst, revisor-cli = %{version}-%{release} +Summary: Revisor Virtualization Media Features +Group: Applications/System +BuildArch: noarch +Requires: python-virtinst, revisor-cli = %{version}-%{release} %description virt Revisor Virtualization Media Features for provisioning virtual guests @@ -317,9 +338,10 @@ Revisor Virtualization Media Features fo ## %if %{pkg_wui} %package wui -Summary: Revisor WUI -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor WUI +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description wui This is the Revisor Web User Interface package @@ -383,6 +405,7 @@ make install DESTDIR=$RPM_BUILD_ROOT %if ! %{pkg_unity} rm -rf %{buildroot}/%{_sysconfdir}/revisor-unity/ + rm -rf %{buildroot}/%{_datadir}/revisor/unity/ %endif %if ! %{pkg_virt} @@ -546,6 +569,7 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/revisor-unity/conf.d %config(noreplace) %{_sysconfdir}/revisor-unity/*.conf %config(noreplace) %{_sysconfdir}/revisor-unity/conf.d/* +%{_datadir}/revisor/unity/ %endif %if %{pkg_virt} @@ -567,7 +591,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Fri Jun 19 2009 Jeroen van Meeuwen 2.1.6-1 +* Sun Jul 26 2009 Jeroen van Meeuwen 2.1.7-1 - Fix configuration file issues - Better estimation for the size of a tree that is to become an iso - Huge improvements to package ordering Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/revisor/F-11/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 19 Jun 2009 14:57:49 -0000 1.50 +++ sources 26 Jul 2009 10:53:03 -0000 1.51 @@ -1 +1 @@ -b55f7d03f287c7e8697d4766d84c2f39 revisor-2.1.6.tar.gz +90f0c51d23c5b52a272f87536d3c039d revisor-2.1.7.tar.gz From kanarip at fedoraproject.org Sun Jul 26 10:55:14 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:55:14 +0000 (UTC) Subject: rpms/rubygem-activerecord/devel .cvsignore, 1.8, 1.9 import.log, 1.2, 1.3 rubygem-activerecord.spec, 1.10, 1.11 sources, 1.8, 1.9 Message-ID: <20090726105514.B659E11C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activerecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1529/devel Modified Files: .cvsignore import.log rubygem-activerecord.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 11:14:55 -0000 1.8 +++ .cvsignore 26 Jul 2009 10:55:14 -0000 1.9 @@ -1 +1 @@ -activerecord-2.3.2.gem +activerecord-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 16 Mar 2009 11:14:55 -0000 1.2 +++ import.log 26 Jul 2009 10:55:14 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-activerecord-2_2_2-1_fc10:HEAD:rubygem-activerecord-2.2.2-1.fc10.src.rpm:1227532664 rubygem-activerecord-2_3_2-1_fc10:HEAD:rubygem-activerecord-2.3.2-1.fc10.src.rpm:1237202080 +rubygem-activerecord-2_3_3-1_fc11:HEAD:rubygem-activerecord-2.3.3-1.fc11.src.rpm:1248605589 Index: rubygem-activerecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/devel/rubygem-activerecord.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- rubygem-activerecord.spec 16 Mar 2009 11:14:55 -0000 1.10 +++ rubygem-activerecord.spec 26 Jul 2009 10:55:14 -0000 1.11 @@ -6,7 +6,7 @@ Summary: Implements the ActiveRecord pattern for ORM Name: rubygem-%{gemname} -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 11:14:55 -0000 1.8 +++ sources 26 Jul 2009 10:55:14 -0000 1.9 @@ -1 +1 @@ -c4cb9b6655909594ca43ee939c2fb7f2 activerecord-2.3.2.gem +1516ff58e4e43987aed43a09d7b342d2 activerecord-2.3.3.gem From kanarip at fedoraproject.org Sun Jul 26 10:57:45 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:57:45 +0000 (UTC) Subject: rpms/revisor/devel .cvsignore, 1.25, 1.26 import.log, 1.8, 1.9 revisor.spec, 1.50, 1.51 sources, 1.50, 1.51 Message-ID: <20090726105745.F058B11C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/revisor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2544/devel Modified Files: .cvsignore import.log revisor.spec sources Log Message: 2.1.7-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 19 Jun 2009 14:56:33 -0000 1.25 +++ .cvsignore 26 Jul 2009 10:57:45 -0000 1.26 @@ -1 +1 @@ -revisor-2.1.6.tar.gz +revisor-2.1.7.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/import.log,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- import.log 19 Jun 2009 14:56:33 -0000 1.8 +++ import.log 26 Jul 2009 10:57:45 -0000 1.9 @@ -6,3 +6,4 @@ revisor-2_1_2-2_fc9:HEAD:revisor-2.1.2-2 revisor-2_1_3-1_fc10:HEAD:revisor-2.1.3-1.fc10.src.rpm:1228176091 revisor-2_1_4-1_fc11:HEAD:revisor-2.1.4-1.fc11.src.rpm:1238987564 revisor-2_1_6-1_fc11:HEAD:revisor-2.1.6-1.fc11.src.rpm:1245423366 +revisor-2_1_7-1_fc11:HEAD:revisor-2.1.7-1.fc11.src.rpm:1248605756 Index: revisor.spec =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/revisor.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- revisor.spec 19 Jun 2009 14:56:34 -0000 1.50 +++ revisor.spec 26 Jul 2009 10:57:45 -0000 1.51 @@ -17,7 +17,7 @@ Summary: Fedora "Spin" Graphical User Interface Name: revisor -Version: 2.1.6 +Version: 2.1.7 Release: 1%{?dist} License: GPLv2 Group: Applications/System @@ -59,6 +59,13 @@ Requires: usermode Requires: pam Requires: python(abi) >= 2.4 Conflicts: fedora-release < 7 + +# Some conditional requirements +#%ifarch x86_64 +#Requires: glibc.i586 +#Requires: glib.i586 +#%endif + # Can't conflict with this one! #Conflicts: centos-release < 5 # Can't conflict with this one! @@ -133,9 +140,10 @@ which builds the live image. ## %if %{pkg_comps} %package comps -Summary: Revisor Comps Files -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Comps Files +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description comps A number of comps files, as up-to-date as possible @@ -146,10 +154,11 @@ A number of comps files, as up-to-date a ## %if %{pkg_cobbler} %package cobbler -Summary: Revisor Cobbler Integration -Group: Applications/System -ExcludeArch: ppc ppc64 -Requires: cobbler, koan, revisor-cli = %{version}-%{release} +Summary: Revisor Cobbler Integration +Group: Applications/System +BuildArch: noarch +ExcludeArch: ppc ppc64 +Requires: cobbler, koan, revisor-cli = %{version}-%{release} %description cobbler Revisor Integration with Cobbler for having Revisor do DHCP, PXE, @@ -161,9 +170,10 @@ Xen and KVM stuff. ## %if %{pkg_composer} %package composer -Summary: Revisor Composer, for use with the Hub -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Composer, for use with the Hub +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description composer Revisor build farms need Composers. This is it. @@ -174,9 +184,10 @@ Revisor build farms need Composers. This ## %if %{pkg_delta} %package delta -Summary: Revisor Deltarpm Integration -Group: Applications/System -Requires: deltarpm, revisor-cli = %{version}-%{release} +Summary: Revisor Deltarpm Integration +Group: Applications/System +BuildArch: noarch +Requires: deltarpm, revisor-cli = %{version}-%{release} %description delta Revisor Integration with deltarpm for generating delta ISO images. @@ -186,9 +197,10 @@ Revisor Integration with deltarpm for ge ## Revisor GUI ## %package gui -Summary: Revisor GUI -Group: Applications/System -Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf +Summary: Revisor GUI +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release}, pygtk2 >= 2.9.2, pygtk2-libglade, gnome-python2-gconf Requires: system-config-kickstart %description gui @@ -199,9 +211,10 @@ This is the Revisor GUI package ## %if %{pkg_hub} %package hub -Summary: Revisor Hub for build farms -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Hub for build farms +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description hub Revisor build farms need a Hub. This is it. @@ -212,9 +225,10 @@ Revisor build farms need a Hub. This is ## %if %{pkg_isolinux} %package isolinux -Summary: Revisor plugin for supplying a custom isolinux.cfg -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor plugin for supplying a custom isolinux.cfg +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description isolinux Supply a custom isolinux.cfg to Revisor to incorporate in the installation media @@ -225,9 +239,10 @@ Supply a custom isolinux.cfg to Revisor ## %if %{pkg_jigdo} %package jigdo -Summary: Revisor Integration with Jigdo -Group: Applications/System -Requires: jigdo, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Jigdo +Group: Applications/System +BuildArch: noarch +Requires: jigdo, revisor-cli = %{version}-%{release} %description jigdo Pre-Alpha of Revisor Integration with Jigdo for distributing your compose @@ -238,9 +253,10 @@ Pre-Alpha of Revisor Integration with Ji ## %if %{pkg_mock} %package mock -Summary: Revisor Integration with Mock -Group: Applications/System -Requires: mock, revisor-cli = %{version}-%{release} +Summary: Revisor Integration with Mock +Group: Applications/System +BuildArch: noarch +Requires: mock, revisor-cli = %{version}-%{release} %description mock Revisor Integration with Mock for building the installer images @@ -251,9 +267,10 @@ Revisor Integration with Mock for buildi ## %if %{pkg_rebrand} %package rebrand -Summary: Revisor Rebranding Fedora Utilies -Group: Applications/System -Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} +Summary: Revisor Rebranding Fedora Utilies +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release}, revisor-gui = %{version}-%{release} %description rebrand Utilities for Revisor to support rebranding Fedora @@ -264,9 +281,10 @@ Utilities for Revisor to support rebrand ## %if %{pkg_reuseinstaller} %package reuseinstaller -Summary: Revisor Plugin to enable Reusing existing installer images -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Plugin to enable Reusing existing installer images +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description reuseinstaller Revisor Plugin to enable Reusing existing installer images @@ -277,9 +295,10 @@ Revisor Plugin to enable Reusing existin ## %if %{pkg_server} %package server -Summary: Revisor Server -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor Server +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description server Utilities for Revisor to support rebranding Fedora @@ -290,9 +309,10 @@ Utilities for Revisor to support rebrand ## %if %{pkg_unity} %package unity -Summary: Fedora Unity Configuration and Scripts for Revisor -Group: Applications/System -Requires: revisor-cli +Summary: Fedora Unity Configuration and Scripts for Revisor +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli %description unity The configuration files and scripts Fedora Unity uses with @@ -304,9 +324,10 @@ Revisor to create Re-Spins and do testin ## %if %{pkg_virt} %package virt -Summary: Revisor Virtualization Media Features -Group: Applications/System -Requires: python-virtinst, revisor-cli = %{version}-%{release} +Summary: Revisor Virtualization Media Features +Group: Applications/System +BuildArch: noarch +Requires: python-virtinst, revisor-cli = %{version}-%{release} %description virt Revisor Virtualization Media Features for provisioning virtual guests @@ -317,9 +338,10 @@ Revisor Virtualization Media Features fo ## %if %{pkg_wui} %package wui -Summary: Revisor WUI -Group: Applications/System -Requires: revisor-cli = %{version}-%{release} +Summary: Revisor WUI +Group: Applications/System +BuildArch: noarch +Requires: revisor-cli = %{version}-%{release} %description wui This is the Revisor Web User Interface package @@ -383,6 +405,7 @@ make install DESTDIR=$RPM_BUILD_ROOT %if ! %{pkg_unity} rm -rf %{buildroot}/%{_sysconfdir}/revisor-unity/ + rm -rf %{buildroot}/%{_datadir}/revisor/unity/ %endif %if ! %{pkg_virt} @@ -546,6 +569,7 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/revisor-unity/conf.d %config(noreplace) %{_sysconfdir}/revisor-unity/*.conf %config(noreplace) %{_sysconfdir}/revisor-unity/conf.d/* +%{_datadir}/revisor/unity/ %endif %if %{pkg_virt} @@ -567,7 +591,7 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog -* Fri Jun 19 2009 Jeroen van Meeuwen 2.1.6-1 +* Sun Jul 26 2009 Jeroen van Meeuwen 2.1.7-1 - Fix configuration file issues - Better estimation for the size of a tree that is to become an iso - Huge improvements to package ordering Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/revisor/devel/sources,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- sources 19 Jun 2009 14:56:34 -0000 1.50 +++ sources 26 Jul 2009 10:57:45 -0000 1.51 @@ -1 +1 @@ -b55f7d03f287c7e8697d4766d84c2f39 revisor-2.1.6.tar.gz +90f0c51d23c5b52a272f87536d3c039d revisor-2.1.7.tar.gz From kanarip at fedoraproject.org Sun Jul 26 10:58:09 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 10:58:09 +0000 (UTC) Subject: rpms/rubygem-activesupport/F-11 .cvsignore, 1.8, 1.9 import.log, 1.2, 1.3 rubygem-activesupport.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090726105809.D0D0411C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activesupport/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2732/F-11 Modified Files: .cvsignore import.log rubygem-activesupport.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 10:50:26 -0000 1.8 +++ .cvsignore 26 Jul 2009 10:58:09 -0000 1.9 @@ -1 +1 @@ -activesupport-2.3.2.gem +activesupport-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/F-11/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 16 Mar 2009 10:50:26 -0000 1.2 +++ import.log 26 Jul 2009 10:58:09 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-activesupport-2_2_2-1_fc10:HEAD:rubygem-activesupport-2.2.2-1.fc10.src.rpm:1227537912 rubygem-activesupport-2_3_2-1_fc10:HEAD:rubygem-activesupport-2.3.2-1.fc10.src.rpm:1237200610 +rubygem-activesupport-2_3_3-1_fc11:F-11:rubygem-activesupport-2.3.3-1.fc11.src.rpm:1248605759 Index: rubygem-activesupport.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/F-11/rubygem-activesupport.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-activesupport.spec 16 Mar 2009 10:50:26 -0000 1.9 +++ rubygem-activesupport.spec 26 Jul 2009 10:58:09 -0000 1.10 @@ -6,8 +6,7 @@ Summary: Support and utility classes used by the Rails framework Name: rubygem-%{gemname} - -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Group: Development/Languages License: MIT @@ -65,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activesupport/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 10:50:26 -0000 1.8 +++ sources 26 Jul 2009 10:58:09 -0000 1.9 @@ -1 +1 @@ -d2a80181483530cc68683b1b36310ba2 activesupport-2.3.2.gem +7ca84c881594a6a999c9ac7e5e37011c activesupport-2.3.3.gem From bojan at fedoraproject.org Sun Jul 26 11:07:32 2009 From: bojan at fedoraproject.org (bojan) Date: Sun, 26 Jul 2009 11:07:32 +0000 (UTC) Subject: rpms/apr/devel apr.spec,1.89,1.90 Message-ID: <20090726110732.6367611C00CE@cvs1.fedora.phx.redhat.com> Author: bojan Update of /cvs/pkgs/rpms/apr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6705 Modified Files: apr.spec Log Message: Include apr_cv_sock_cloexec too. Index: apr.spec =================================================================== RCS file: /cvs/pkgs/rpms/apr/devel/apr.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- apr.spec 26 Jul 2009 10:49:39 -0000 1.89 +++ apr.spec 26 Jul 2009 11:07:31 -0000 1.90 @@ -6,7 +6,7 @@ Summary: Apache Portable Runtime library Name: apr Version: 1.3.7 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://apr.apache.org/ @@ -56,6 +56,7 @@ export ac_cv_search_shm_open=no export apr_cv_epoll_create1=yes export apr_cv_dup3=yes export apr_cv_accept4=yes +export apr_cv_sock_cloexec=yes %configure \ --includedir=%{_includedir}/apr-%{aprver} \ @@ -126,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/*.m4 %changelog +* Sun Jul 26 2009 Bojan Smojver - 1.3.7-2 +- include apr_cv_sock_cloexec too + * Sun Jul 26 2009 Bojan Smojver - 1.3.7-1 - bump up to 1.3.7 From jkeating at fedoraproject.org Sun Jul 26 11:14:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:14:24 +0000 (UTC) Subject: rpms/perl-Math-MatrixReal/devel perl-Math-MatrixReal.spec,1.4,1.5 Message-ID: <20090726111424.544A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-MatrixReal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9262 Modified Files: perl-Math-MatrixReal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-MatrixReal.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-MatrixReal/devel/perl-Math-MatrixReal.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Math-MatrixReal.spec 26 Feb 2009 21:40:32 -0000 1.4 +++ perl-Math-MatrixReal.spec 26 Jul 2009 11:14:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Math-MatrixReal Version: 2.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manipulate matrix of reals License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:14:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:14:43 +0000 (UTC) Subject: rpms/perl-Math-Pari/devel perl-Math-Pari.spec,1.16,1.17 Message-ID: <20090726111443.30E7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Pari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9436 Modified Files: perl-Math-Pari.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Pari.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Pari/devel/perl-Math-Pari.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Math-Pari.spec 8 Mar 2009 11:57:16 -0000 1.16 +++ perl-Math-Pari.spec 26 Jul 2009 11:14:43 -0000 1.17 @@ -17,7 +17,7 @@ Summary: Perl interface to PARI Name: perl-Math-Pari Version: %{module_version} -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Math-Pari/ @@ -82,6 +82,9 @@ export DLCFLAGS=-fPIC %exclude %{_mandir}/man3/Math::libPARI.dumb.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.010801-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Paul Howarth - 2.010801-3 - Filter out unwanted provides for perl shared objects From jkeating at fedoraproject.org Sun Jul 26 11:14:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:14:58 +0000 (UTC) Subject: rpms/perl-Math-Random-MT-Auto/devel perl-Math-Random-MT-Auto.spec, 1.8, 1.9 Message-ID: <20090726111458.512CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Random-MT-Auto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9588 Modified Files: perl-Math-Random-MT-Auto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Random-MT-Auto.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Random-MT-Auto/devel/perl-Math-Random-MT-Auto.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Math-Random-MT-Auto.spec 26 Feb 2009 21:42:43 -0000 1.8 +++ perl-Math-Random-MT-Auto.spec 26 Jul 2009 11:14:58 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Math-Random-MT-Auto Version: 6.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Auto-seeded Mersenne Twister PRNGs License: BSD Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 6.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:15:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:15:12 +0000 (UTC) Subject: rpms/perl-Math-Round/devel perl-Math-Round.spec,1.7,1.8 Message-ID: <20090726111512.A3CEE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Round/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9747 Modified Files: perl-Math-Round.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Round.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Round/devel/perl-Math-Round.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Math-Round.spec 26 Feb 2009 21:43:56 -0000 1.7 +++ perl-Math-Round.spec 26 Jul 2009 11:15:12 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Math-Round Version: 0.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for rounding numbers Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:15:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:15:27 +0000 (UTC) Subject: rpms/perl-Math-Spline/devel perl-Math-Spline.spec,1.4,1.5 Message-ID: <20090726111528.003DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Spline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9909 Modified Files: perl-Math-Spline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Spline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Spline/devel/perl-Math-Spline.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Math-Spline.spec 26 Feb 2009 21:45:02 -0000 1.4 +++ perl-Math-Spline.spec 26 Jul 2009 11:15:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Math-Spline Version: 0.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cubic Spline Interpolation of data License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:15:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:15:42 +0000 (UTC) Subject: rpms/perl-Math-Symbolic/devel perl-Math-Symbolic.spec,1.3,1.4 Message-ID: <20090726111542.E326A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Symbolic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10071 Modified Files: perl-Math-Symbolic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Symbolic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Symbolic/devel/perl-Math-Symbolic.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Math-Symbolic.spec 26 Feb 2009 21:46:01 -0000 1.3 +++ perl-Math-Symbolic.spec 26 Jul 2009 11:15:42 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Math-Symbolic Version: 0.510 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Symbolic calculations License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.510-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.510-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:15:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:15:56 +0000 (UTC) Subject: rpms/perl-Math-Vec/devel perl-Math-Vec.spec,1.4,1.5 Message-ID: <20090726111556.4756B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Math-Vec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10229 Modified Files: perl-Math-Vec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Math-Vec.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Math-Vec/devel/perl-Math-Vec.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Math-Vec.spec 26 Feb 2009 21:46:59 -0000 1.4 +++ perl-Math-Vec.spec 26 Jul 2009 11:15:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Math-Vec Version: 1.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl Math::Vec module Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:16:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:16:11 +0000 (UTC) Subject: rpms/perl-Maypole/devel perl-Maypole.spec,1.7,1.8 Message-ID: <20090726111611.50D8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Maypole/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10421 Modified Files: perl-Maypole.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Maypole.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Maypole/devel/perl-Maypole.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Maypole.spec 13 Mar 2009 21:44:47 -0000 1.7 +++ perl-Maypole.spec 26 Jul 2009 11:16:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Maypole Version: 2.13 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: MVC web application framework Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:2.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway 2.13-1 - update to 2.13 (pick up an epoch, thanks perl versioning) - add BR: File::MMagic::XS From jkeating at fedoraproject.org Sun Jul 26 11:16:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:16:28 +0000 (UTC) Subject: rpms/perl-Mixin-Linewise/devel perl-Mixin-Linewise.spec,1.1,1.2 Message-ID: <20090726111628.860D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mixin-Linewise/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10580 Modified Files: perl-Mixin-Linewise.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mixin-Linewise.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mixin-Linewise/devel/perl-Mixin-Linewise.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Mixin-Linewise.spec 23 Apr 2009 19:25:41 -0000 1.1 +++ perl-Mixin-Linewise.spec 26 Jul 2009 11:16:28 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Mixin-Linewise Version: 0.002 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Write your linewise code for handles; this does the rest License: GPL+ or Artistic Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.002-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Iain Arnell 0.002-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 11:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:16:42 +0000 (UTC) Subject: rpms/perl-ModelSim-List/devel perl-ModelSim-List.spec,1.2,1.3 Message-ID: <20090726111642.527DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ModelSim-List/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10744 Modified Files: perl-ModelSim-List.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ModelSim-List.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ModelSim-List/devel/perl-ModelSim-List.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-ModelSim-List.spec 26 Feb 2009 21:49:33 -0000 1.2 +++ perl-ModelSim-List.spec 26 Jul 2009 11:16:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-ModelSim-List Version: 0.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Analyse the 'list' output of the ModelSim simulator License: GPL+ or Artistic @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:16:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:16:56 +0000 (UTC) Subject: rpms/perl-Module-CPANTS-Analyse/devel perl-Module-CPANTS-Analyse.spec, 1.7, 1.8 Message-ID: <20090726111656.60B1111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-CPANTS-Analyse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10888 Modified Files: perl-Module-CPANTS-Analyse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-CPANTS-Analyse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-CPANTS-Analyse/devel/perl-Module-CPANTS-Analyse.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Module-CPANTS-Analyse.spec 22 Jul 2009 19:13:47 -0000 1.7 +++ perl-Module-CPANTS-Analyse.spec 26 Jul 2009 11:16:56 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Module-CPANTS-Analyse Version: 0.85 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate Kwalitee ratings for a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/cpants_lint.pl %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 0.85-1 - Update to 0.85 release From jkeating at fedoraproject.org Sun Jul 26 11:17:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:17:11 +0000 (UTC) Subject: rpms/perl-Module-Compile/devel perl-Module-Compile.spec,1.4,1.5 Message-ID: <20090726111711.5462D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Compile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11056 Modified Files: perl-Module-Compile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Compile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Compile/devel/perl-Module-Compile.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Module-Compile.spec 26 Feb 2009 21:51:29 -0000 1.4 +++ perl-Module-Compile.spec 26 Jul 2009 11:17:11 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Module-Compile Version: 0.20 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl Module Compilation License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:17:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:17:26 +0000 (UTC) Subject: rpms/perl-Module-Depends/devel perl-Module-Depends.spec,1.6,1.7 Message-ID: <20090726111726.35DAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Depends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11191 Modified Files: perl-Module-Depends.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Depends.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Depends/devel/perl-Module-Depends.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Module-Depends.spec 26 Feb 2009 21:52:33 -0000 1.6 +++ perl-Module-Depends.spec 26 Jul 2009 11:17:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Module-Depends Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Identify the dependencies of a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:17:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:17:40 +0000 (UTC) Subject: rpms/perl-Module-Extract/devel perl-Module-Extract.spec,1.2,1.3 Message-ID: <20090726111740.76BA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Extract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11342 Modified Files: perl-Module-Extract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Extract.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Extract/devel/perl-Module-Extract.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Module-Extract.spec 26 Feb 2009 21:53:35 -0000 1.2 +++ perl-Module-Extract.spec 26 Jul 2009 11:17:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Module-Extract Version: 0.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Base class for working with Perl distributions License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:17:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:17:54 +0000 (UTC) Subject: rpms/perl-Module-ExtractUse/devel perl-Module-ExtractUse.spec, 1.4, 1.5 Message-ID: <20090726111754.66D6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-ExtractUse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11473 Modified Files: perl-Module-ExtractUse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-ExtractUse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-ExtractUse/devel/perl-Module-ExtractUse.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Module-ExtractUse.spec 26 Feb 2009 21:54:35 -0000 1.4 +++ perl-Module-ExtractUse.spec 26 Jul 2009 11:17:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Module-ExtractUse Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Find out what modules are used License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:18:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:18:08 +0000 (UTC) Subject: rpms/perl-Module-Find/devel perl-Module-Find.spec,1.4,1.5 Message-ID: <20090726111808.4AF2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11644 Modified Files: perl-Module-Find.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Find/devel/perl-Module-Find.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Module-Find.spec 26 Feb 2009 21:55:32 -0000 1.4 +++ perl-Module-Find.spec 26 Jul 2009 11:18:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Module-Find Version: 0.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Find and use installed modules in a (sub)category Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:18:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:18:23 +0000 (UTC) Subject: rpms/perl-Module-Info/devel perl-Module-Info.spec,1.9,1.10 Message-ID: <20090726111823.3EF7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11797 Modified Files: perl-Module-Info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Info.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Info/devel/perl-Module-Info.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Module-Info.spec 26 Feb 2009 21:56:23 -0000 1.9 +++ perl-Module-Info.spec 26 Jul 2009 11:18:23 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Module-Info Version: 0.31 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Information about Perl modules License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.31-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:18:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:18:37 +0000 (UTC) Subject: rpms/perl-Module-Inspector/devel perl-Module-Inspector.spec, 1.3, 1.4 Message-ID: <20090726111837.6D7EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Inspector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11982 Modified Files: perl-Module-Inspector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Inspector.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Inspector/devel/perl-Module-Inspector.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Module-Inspector.spec 26 Feb 2009 21:57:17 -0000 1.3 +++ perl-Module-Inspector.spec 26 Jul 2009 11:18:37 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Module-Inspector Version: 1.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Integrated API for inspecting Perl distributions License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:18:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:18:51 +0000 (UTC) Subject: rpms/perl-Module-Install/devel perl-Module-Install.spec,1.22,1.23 Message-ID: <20090726111851.6198D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Install/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12131 Modified Files: perl-Module-Install.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Install.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Install/devel/perl-Module-Install.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Module-Install.spec 14 Jun 2009 20:16:21 -0000 1.22 +++ perl-Module-Install.spec 26 Jul 2009 11:18:51 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-Module-Install Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Standalone, extensible Perl module installer License: GPL+ or Artistic Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Chris Weyl 0.91-1 - update to 0.91 - add br on Parse::CPAN::Meta: 1.39 From jkeating at fedoraproject.org Sun Jul 26 11:19:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:19:05 +0000 (UTC) Subject: rpms/perl-Module-Install-ExtraTests/devel perl-Module-Install-ExtraTests.spec, 1.5, 1.6 Message-ID: <20090726111905.662F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Install-ExtraTests/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12299 Modified Files: perl-Module-Install-ExtraTests.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Install-ExtraTests.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Install-ExtraTests/devel/perl-Module-Install-ExtraTests.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Module-Install-ExtraTests.spec 26 Feb 2009 21:59:21 -0000 1.5 +++ perl-Module-Install-ExtraTests.spec 26 Jul 2009 11:19:05 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Module-Install-ExtraTests Version: 0.006 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Ignorable, contextual test support for Module::Install @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.006-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.006-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:19:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:19:19 +0000 (UTC) Subject: rpms/perl-Module-Locate/devel perl-Module-Locate.spec,1.5,1.6 Message-ID: <20090726111919.20E6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Locate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12455 Modified Files: perl-Module-Locate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Locate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Locate/devel/perl-Module-Locate.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Module-Locate.spec 26 Feb 2009 22:00:18 -0000 1.5 +++ perl-Module-Locate.spec 26 Jul 2009 11:19:19 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Module-Locate Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Locate modules in the same fashion as "require" and "use" Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:19:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:19:33 +0000 (UTC) Subject: rpms/perl-Module-Manifest/devel perl-Module-Manifest.spec,1.2,1.3 Message-ID: <20090726111933.51D6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Manifest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12597 Modified Files: perl-Module-Manifest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Manifest.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Manifest/devel/perl-Module-Manifest.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Module-Manifest.spec 26 Feb 2009 22:01:59 -0000 1.2 +++ perl-Module-Manifest.spec 26 Jul 2009 11:19:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Module-Manifest Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse and examine a Perl distribution MANIFEST file License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:19:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:19:47 +0000 (UTC) Subject: rpms/perl-Module-Math-Depends/devel perl-Module-Math-Depends.spec, 1.2, 1.3 Message-ID: <20090726111947.66DC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Math-Depends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12778 Modified Files: perl-Module-Math-Depends.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Math-Depends.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Math-Depends/devel/perl-Module-Math-Depends.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Module-Math-Depends.spec 26 Feb 2009 22:03:09 -0000 1.2 +++ perl-Module-Math-Depends.spec 26 Jul 2009 11:19:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Module-Math-Depends Version: 0.02 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convenience object for manipulating module dependencies License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:20:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:20:01 +0000 (UTC) Subject: rpms/perl-Module-Pluggable-Ordered/devel perl-Module-Pluggable-Ordered.spec, 1.1, 1.2 Message-ID: <20090726112001.84ED011C04EC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Pluggable-Ordered/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12909 Modified Files: perl-Module-Pluggable-Ordered.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Pluggable-Ordered.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Pluggable-Ordered/devel/perl-Module-Pluggable-Ordered.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Module-Pluggable-Ordered.spec 4 May 2009 23:18:58 -0000 1.1 +++ perl-Module-Pluggable-Ordered.spec 26 Jul 2009 11:20:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Module-Pluggable-Ordered Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Call module plugins in a specified order License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 1.5-1 - Specfile autogenerated by cpanspec 1.77. - remove explicit requires From jkeating at fedoraproject.org Sun Jul 26 11:20:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:20:15 +0000 (UTC) Subject: rpms/perl-Module-Refresh/devel perl-Module-Refresh.spec,1.11,1.12 Message-ID: <20090726112015.2531711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Refresh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13079 Modified Files: perl-Module-Refresh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Refresh.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Refresh/devel/perl-Module-Refresh.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Module-Refresh.spec 26 Feb 2009 22:04:05 -0000 1.11 +++ perl-Module-Refresh.spec 26 Jul 2009 11:20:15 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Module-Refresh Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Refresh %INC files when updated on disk License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:20:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:20:29 +0000 (UTC) Subject: rpms/perl-Module-ScanDeps/devel perl-Module-ScanDeps.spec, 1.23, 1.24 Message-ID: <20090726112029.ACCE511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-ScanDeps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13224 Modified Files: perl-Module-ScanDeps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-ScanDeps.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-ScanDeps/devel/perl-Module-ScanDeps.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-Module-ScanDeps.spec 26 Feb 2009 22:05:02 -0000 1.23 +++ perl-Module-ScanDeps.spec 26 Jul 2009 11:20:29 -0000 1.24 @@ -1,6 +1,6 @@ Name: perl-Module-ScanDeps Version: 0.89 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Recursively scan Perl code for dependencies License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.89-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.89-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:20:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:20:45 +0000 (UTC) Subject: rpms/perl-Module-Signature/devel perl-Module-Signature.spec, 1.12, 1.13 Message-ID: <20090726112045.50BB511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Signature/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13410 Modified Files: perl-Module-Signature.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Signature.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Signature/devel/perl-Module-Signature.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Module-Signature.spec 26 Feb 2009 22:06:05 -0000 1.12 +++ perl-Module-Signature.spec 26 Jul 2009 11:20:45 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Module-Signature Version: 0.55 -Release: 4%{?dist} +Release: 5%{?dist} Summary: CPAN signature management utilities and modules Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.55-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.55-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From hadess at fedoraproject.org Sun Jul 26 11:20:48 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Sun, 26 Jul 2009 11:20:48 +0000 (UTC) Subject: rpms/clutter-gst/devel clutter-gst.spec,1.10,1.11 Message-ID: <20090726112048.8785F11C0416@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/clutter-gst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13433 Modified Files: clutter-gst.spec Log Message: Fix version in filelist Index: clutter-gst.spec =================================================================== RCS file: /cvs/pkgs/rpms/clutter-gst/devel/clutter-gst.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- clutter-gst.spec 25 Jul 2009 21:53:20 -0000 1.10 +++ clutter-gst.spec 26 Jul 2009 11:20:48 -0000 1.11 @@ -45,17 +45,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%exclude %{_libdir}/libclutter-gst-0.8.la -%{_libdir}/libclutter-gst-0.8.so.0 -%{_libdir}/libclutter-gst-0.8.so.0.* +%exclude %{_libdir}/libclutter-gst-0.9.la +%{_libdir}/libclutter-gst-0.9.so.0 +%{_libdir}/libclutter-gst-0.9.so.0.* %{_datadir}/gtk-doc/html/clutter-gst %files devel %defattr(-,root,root,-) %doc %{_includedir}/* -%{_libdir}/pkgconfig/clutter-gst-0.8.pc -%{_libdir}/libclutter-gst-0.8.so +%{_libdir}/pkgconfig/clutter-gst-0.9.pc +%{_libdir}/libclutter-gst-0.9.so %changelog * Sat Jul 25 2009 Bastien Nocera 0.9.0-1 From jkeating at fedoraproject.org Sun Jul 26 11:21:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:21:00 +0000 (UTC) Subject: rpms/perl-Module-Starter/devel perl-Module-Starter.spec,1.8,1.9 Message-ID: <20090726112100.AD4DB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Starter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13623 Modified Files: perl-Module-Starter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Starter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Starter/devel/perl-Module-Starter.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Module-Starter.spec 26 Feb 2009 22:07:03 -0000 1.8 +++ perl-Module-Starter.spec 26 Jul 2009 11:21:00 -0000 1.9 @@ -1,7 +1,7 @@ Name: perl-Module-Starter Epoch: 1 Version: 1.50 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A simple starter kit for any module Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.50-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.50-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:21:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:21:14 +0000 (UTC) Subject: rpms/perl-Module-Starter-PBP/devel perl-Module-Starter-PBP.spec, 1.5, 1.6 Message-ID: <20090726112114.6932011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Starter-PBP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13824 Modified Files: perl-Module-Starter-PBP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Starter-PBP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Starter-PBP/devel/perl-Module-Starter-PBP.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Module-Starter-PBP.spec 26 Feb 2009 22:08:07 -0000 1.5 +++ perl-Module-Starter-PBP.spec 26 Jul 2009 11:21:14 -0000 1.6 @@ -8,7 +8,7 @@ Name: perl-Module-Starter-PBP Version: 0.000003 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Create a module as recommended in "Perl Best Practices" Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.000003-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.000003-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:21:28 +0000 (UTC) Subject: rpms/perl-Module-Starter-Plugin-CGIApp/devel perl-Module-Starter-Plugin-CGIApp.spec, 1.1, 1.2 Message-ID: <20090726112128.3BA4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Starter-Plugin-CGIApp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13973 Modified Files: perl-Module-Starter-Plugin-CGIApp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Starter-Plugin-CGIApp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Starter-Plugin-CGIApp/devel/perl-Module-Starter-Plugin-CGIApp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Module-Starter-Plugin-CGIApp.spec 15 Jun 2009 20:36:41 -0000 1.1 +++ perl-Module-Starter-Plugin-CGIApp.spec 26 Jul 2009 11:21:28 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Module-Starter-Plugin-CGIApp Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Template based module starter for CGI apps License: GPL+ or Artistic Group: Development/Libraries @@ -61,5 +61,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Emmanuel Seyman 0.10-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 11:21:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:21:42 +0000 (UTC) Subject: rpms/perl-Module-Used/devel perl-Module-Used.spec,1.1,1.2 Message-ID: <20090726112142.C539111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Used/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14120 Modified Files: perl-Module-Used.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Used.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Used/devel/perl-Module-Used.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Module-Used.spec 30 Apr 2009 07:22:26 -0000 1.1 +++ perl-Module-Used.spec 26 Jul 2009 11:21:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Module-Used Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Find modules loaded by Perl code without running it License: GPL+ or Artistic Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Iain Arnell 1.2.0-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 11:21:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:21:57 +0000 (UTC) Subject: rpms/perl-Module-Util/devel perl-Module-Util.spec,1.4,1.5 Message-ID: <20090726112157.8494211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14263 Modified Files: perl-Module-Util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Util.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Util/devel/perl-Module-Util.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Module-Util.spec 17 May 2009 07:14:09 -0000 1.4 +++ perl-Module-Util.spec 26 Jul 2009 11:21:57 -0000 1.5 @@ -1,7 +1,7 @@ Name: perl-Module-Util Version: 1.07 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/Module/Util.pm License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/*.[13]* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 1.07-1 - auto-update to 1.07 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:22:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:22:14 +0000 (UTC) Subject: rpms/perl-Module-Versions-Report/devel perl-Module-Versions-Report.spec, 1.9, 1.10 Message-ID: <20090726112214.B509D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Module-Versions-Report/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14449 Modified Files: perl-Module-Versions-Report.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Module-Versions-Report.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Module-Versions-Report/devel/perl-Module-Versions-Report.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Module-Versions-Report.spec 26 Feb 2009 22:10:02 -0000 1.9 +++ perl-Module-Versions-Report.spec 26 Jul 2009 11:22:14 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Module-Versions-Report Version: 1.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Report versions of all modules in memory Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:22:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:22:31 +0000 (UTC) Subject: rpms/perl-MogileFS-Client/devel perl-MogileFS-Client.spec,1.4,1.5 Message-ID: <20090726112231.D178011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MogileFS-Client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14603 Modified Files: perl-MogileFS-Client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MogileFS-Client.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MogileFS-Client/devel/perl-MogileFS-Client.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MogileFS-Client.spec 26 Feb 2009 22:11:05 -0000 1.4 +++ perl-MogileFS-Client.spec 26 Jul 2009 11:22:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MogileFS-Client Version: 1.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Client library for the MogileFS distributed file system License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:22:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:22:52 +0000 (UTC) Subject: rpms/perl-MogileFS-Utils/devel perl-MogileFS-Utils.spec,1.4,1.5 Message-ID: <20090726112252.5DF3D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MogileFS-Utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14811 Modified Files: perl-MogileFS-Utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MogileFS-Utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MogileFS-Utils/devel/perl-MogileFS-Utils.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MogileFS-Utils.spec 26 Feb 2009 22:12:10 -0000 1.4 +++ perl-MogileFS-Utils.spec 26 Jul 2009 11:22:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MogileFS-Utils Version: 2.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utilities for MogileFS License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:23:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:23:11 +0000 (UTC) Subject: rpms/perl-Mon/devel perl-Mon.spec,1.2,1.3 Message-ID: <20090726112311.2EF0611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14980 Modified Files: perl-Mon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mon/devel/perl-Mon.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Mon.spec 26 Feb 2009 22:13:10 -0000 1.2 +++ perl-Mon.spec 26 Jul 2009 11:23:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Mon Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mon Perl module License: GPLv2+ Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:23:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:23:31 +0000 (UTC) Subject: rpms/perl-Moose/devel perl-Moose.spec,1.42,1.43 Message-ID: <20090726112331.A35D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Moose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15152 Modified Files: perl-Moose.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Moose.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Moose/devel/perl-Moose.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- perl-Moose.spec 23 Jun 2009 05:46:24 -0000 1.42 +++ perl-Moose.spec 26 Jul 2009 11:23:31 -0000 1.43 @@ -1,6 +1,6 @@ Name: perl-Moose Version: 0.81 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Complete modern object system for Perl 5 License: GPL+ or Artistic Group: Development/Libraries @@ -126,6 +126,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Test::Moose* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.81-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 0.81-2 - split off Test::Moose From jkeating at fedoraproject.org Sun Jul 26 11:23:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:23:49 +0000 (UTC) Subject: rpms/perl-Moose-Policy/devel perl-Moose-Policy.spec,1.5,1.6 Message-ID: <20090726112349.D71B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Moose-Policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15329 Modified Files: perl-Moose-Policy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Moose-Policy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Moose-Policy/devel/perl-Moose-Policy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Moose-Policy.spec 26 Feb 2009 22:15:15 -0000 1.5 +++ perl-Moose-Policy.spec 26 Jul 2009 11:23:49 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Moose-Policy Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Police your project/company-wide Moose policies License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:24:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:24:07 +0000 (UTC) Subject: rpms/perl-MooseX-App-Cmd/devel perl-MooseX-App-Cmd.spec,1.2,1.3 Message-ID: <20090726112407.8FC2E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-App-Cmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15498 Modified Files: perl-MooseX-App-Cmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-App-Cmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-App-Cmd/devel/perl-MooseX-App-Cmd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-App-Cmd.spec 26 Feb 2009 22:16:13 -0000 1.2 +++ perl-MooseX-App-Cmd.spec 26 Jul 2009 11:24:07 -0000 1.3 @@ -1,7 +1,7 @@ Name: perl-MooseX-App-Cmd Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/MooseX/App/Cmd.pm License: GPL+ or Artistic Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:24:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:24:27 +0000 (UTC) Subject: rpms/perl-MooseX-Async/devel perl-MooseX-Async.spec,1.2,1.3 Message-ID: <20090726112427.C295111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Async/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15708 Modified Files: perl-MooseX-Async.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Async.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Async/devel/perl-MooseX-Async.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Async.spec 26 Feb 2009 22:17:12 -0000 1.2 +++ perl-MooseX-Async.spec 26 Jul 2009 11:24:27 -0000 1.3 @@ -1,7 +1,7 @@ %define tarname MooseX-Async Name: perl-MooseX-Async Version: 0.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Set of Metaclasses for MooseX::POE and it's siblings Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:24:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:24:44 +0000 (UTC) Subject: rpms/perl-MooseX-AttributeHelpers/devel perl-MooseX-AttributeHelpers.spec, 1.14, 1.15 Message-ID: <20090726112444.9738D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-AttributeHelpers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15892 Modified Files: perl-MooseX-AttributeHelpers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-AttributeHelpers.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-AttributeHelpers/devel/perl-MooseX-AttributeHelpers.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-MooseX-AttributeHelpers.spec 16 Jun 2009 04:49:02 -0000 1.14 +++ perl-MooseX-AttributeHelpers.spec 26 Jul 2009 11:24:44 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-MooseX-AttributeHelpers Version: 0.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extended Moose attribute interfaces License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Chris Weyl 0.19-1 - drop br on CPAN - auto-update to 0.19 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:25:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:25:02 +0000 (UTC) Subject: rpms/perl-MooseX-ClassAttribute/devel perl-MooseX-ClassAttribute.spec, 1.3, 1.4 Message-ID: <20090726112502.D8D4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-ClassAttribute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16047 Modified Files: perl-MooseX-ClassAttribute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-ClassAttribute.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-ClassAttribute/devel/perl-MooseX-ClassAttribute.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-ClassAttribute.spec 27 May 2009 02:59:54 -0000 1.3 +++ perl-MooseX-ClassAttribute.spec 26 Jul 2009 11:25:02 -0000 1.4 @@ -1,7 +1,7 @@ %define tarname MooseX-ClassAttribute Name: perl-MooseX-ClassAttribute Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Declare class attributes Moose-style Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Chris Weyl 0.08-1 - auto-update to 0.08 (by cpan-spec-update 0.01) - added a new br on perl(Scalar::Util) (version 0) From pkgdb at fedoraproject.org Sun Jul 26 11:25:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:12 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchbugzilla Message-ID: <20090726112513.053F910F890@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on rubygem-hoe (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:13 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested commit Message-ID: <20090726112513.7ACBD10F89A@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on rubygem-hoe (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From jkeating at fedoraproject.org Sun Jul 26 11:25:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:25:21 +0000 (UTC) Subject: rpms/perl-MooseX-ConfigFromFile/devel perl-MooseX-ConfigFromFile.spec, 1.2, 1.3 Message-ID: <20090726112521.A313F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-ConfigFromFile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16228 Modified Files: perl-MooseX-ConfigFromFile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-ConfigFromFile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-ConfigFromFile/devel/perl-MooseX-ConfigFromFile.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-ConfigFromFile.spec 26 Feb 2009 22:20:13 -0000 1.2 +++ perl-MooseX-ConfigFromFile.spec 26 Jul 2009 11:25:21 -0000 1.3 @@ -1,7 +1,7 @@ Name: perl-MooseX-ConfigFromFile Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/MooseX/ConfigFromFile.pm License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 11:25:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:18 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchcommits Message-ID: <20090726112518.EE05710F89D@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on rubygem-hoe (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:26 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchbugzilla Message-ID: <20090726112526.C101C10F8A1@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on rubygem-hoe (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:30 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchcommits Message-ID: <20090726112530.50B6E10F8B6@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on rubygem-hoe (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:31 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested commit Message-ID: <20090726112531.0D0D710F89C@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on rubygem-hoe (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:35 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchbugzilla Message-ID: <20090726112535.F39F710F8B9@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on rubygem-hoe (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:36 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchcommits Message-ID: <20090726112536.7F83910F8BC@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on rubygem-hoe (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:38 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested commit Message-ID: <20090726112538.5A9D210F8BF@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on rubygem-hoe (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From jkeating at fedoraproject.org Sun Jul 26 11:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:25:39 +0000 (UTC) Subject: rpms/perl-MooseX-Daemonize/devel perl-MooseX-Daemonize.spec, 1.2, 1.3 Message-ID: <20090726112539.7D5A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Daemonize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16416 Modified Files: perl-MooseX-Daemonize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Daemonize.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Daemonize/devel/perl-MooseX-Daemonize.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Daemonize.spec 26 Feb 2009 22:21:19 -0000 1.2 +++ perl-MooseX-Daemonize.spec 26 Jul 2009 11:25:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Daemonize Version: 0.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Role for daemonizing your Moose based application License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 11:25:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:41 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchbugzilla Message-ID: <20090726112541.47ACD10F8C1@bastion2.fedora.phx.redhat.com> kanarip has requested the watchbugzilla acl on rubygem-hoe (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:41 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested watchcommits Message-ID: <20090726112541.B5E0A10F8C5@bastion2.fedora.phx.redhat.com> kanarip has requested the watchcommits acl on rubygem-hoe (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From pkgdb at fedoraproject.org Sun Jul 26 11:25:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 11:25:43 +0000 Subject: [pkgdb] rubygem-hoe: kanarip has requested commit Message-ID: <20090726112543.8B49D10F8C6@bastion2.fedora.phx.redhat.com> kanarip has requested the commit acl on rubygem-hoe (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygem-hoe From jkeating at fedoraproject.org Sun Jul 26 11:26:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:26:04 +0000 (UTC) Subject: rpms/perl-MooseX-Emulate-Class-Accessor-Fast/devel perl-MooseX-Emulate-Class-Accessor-Fast.spec, 1.6, 1.7 Message-ID: <20090726112604.369D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Emulate-Class-Accessor-Fast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16628 Modified Files: perl-MooseX-Emulate-Class-Accessor-Fast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Emulate-Class-Accessor-Fast.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Emulate-Class-Accessor-Fast/devel/perl-MooseX-Emulate-Class-Accessor-Fast.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-MooseX-Emulate-Class-Accessor-Fast.spec 31 May 2009 07:14:34 -0000 1.6 +++ perl-MooseX-Emulate-Class-Accessor-Fast.spec 26 Jul 2009 11:26:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-MooseX-Emulate-Class-Accessor-Fast Version: 0.00900 -Release: 1%{?dist} +Release: 2%{?dist} # lib/MooseX/Adopt/Class/Accessor/Fast.pm -> GPL+ or Artistic # lib/MooseX/Emulate/Class/Accessor/Fast.pm -> GPL+ or Artistic License: GPL+ or Artistic @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.00900-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Chris Weyl 0.00900-1 - auto-update to 0.00900 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:26:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:26:28 +0000 (UTC) Subject: rpms/perl-MooseX-Getopt/devel perl-MooseX-Getopt.spec,1.9,1.10 Message-ID: <20090726112628.6F1D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Getopt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16829 Modified Files: perl-MooseX-Getopt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Getopt.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Getopt/devel/perl-MooseX-Getopt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-MooseX-Getopt.spec 26 Apr 2009 03:47:29 -0000 1.9 +++ perl-MooseX-Getopt.spec 26 Jul 2009 11:26:28 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-MooseX-Getopt Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Moose role for processing command line options License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Chris Weyl 0.18-1 - update to 0.18 From jkeating at fedoraproject.org Sun Jul 26 11:26:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:26:44 +0000 (UTC) Subject: rpms/perl-MooseX-GlobRef-Object/devel perl-MooseX-GlobRef-Object.spec, 1.3, 1.4 Message-ID: <20090726112644.E1FF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-GlobRef-Object/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16995 Modified Files: perl-MooseX-GlobRef-Object.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-GlobRef-Object.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-GlobRef-Object/devel/perl-MooseX-GlobRef-Object.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-GlobRef-Object.spec 8 Jun 2009 04:58:22 -0000 1.3 +++ perl-MooseX-GlobRef-Object.spec 26 Jul 2009 11:26:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-GlobRef-Object Version: 0.07 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Store a Moose object in glob reference License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.07-1 - auto-update to 0.07 (by cpan-spec-update 0.01) - altered br on perl(Test::Unit::Lite) (0.11 => 0.12) From jkeating at fedoraproject.org Sun Jul 26 11:27:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:27:02 +0000 (UTC) Subject: rpms/perl-MooseX-Iterator/devel perl-MooseX-Iterator.spec,1.3,1.4 Message-ID: <20090726112702.9BF4111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Iterator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17163 Modified Files: perl-MooseX-Iterator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Iterator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Iterator/devel/perl-MooseX-Iterator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-Iterator.spec 8 Jun 2009 04:57:13 -0000 1.3 +++ perl-MooseX-Iterator.spec 26 Jul 2009 11:27:02 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-Iterator Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Iterate over collections License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.10-1 - auto-update to 0.10 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:27:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:27:18 +0000 (UTC) Subject: rpms/perl-MooseX-LazyLogDispatch/devel perl-MooseX-LazyLogDispatch.spec, 1.2, 1.3 Message-ID: <20090726112718.E496B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-LazyLogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17353 Modified Files: perl-MooseX-LazyLogDispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-LazyLogDispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-LazyLogDispatch/devel/perl-MooseX-LazyLogDispatch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-LazyLogDispatch.spec 26 Feb 2009 22:26:23 -0000 1.2 +++ perl-MooseX-LazyLogDispatch.spec 26 Jul 2009 11:27:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-LazyLogDispatch Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Logging Role for Moose License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:27:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:27:37 +0000 (UTC) Subject: rpms/perl-MooseX-Log-Log4perl/devel perl-MooseX-Log-Log4perl.spec, 1.4, 1.5 Message-ID: <20090726112737.BFE3B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Log-Log4perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17523 Modified Files: perl-MooseX-Log-Log4perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Log-Log4perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Log-Log4perl/devel/perl-MooseX-Log-Log4perl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MooseX-Log-Log4perl.spec 27 May 2009 02:50:24 -0000 1.4 +++ perl-MooseX-Log-Log4perl.spec 26 Jul 2009 11:27:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MooseX-Log-Log4perl Version: 0.40 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/MooseX/Log/Log4perl.pm License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.40-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Chris Weyl 0.40-2 - add br on CPAN From jkeating at fedoraproject.org Sun Jul 26 11:27:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:27:53 +0000 (UTC) Subject: rpms/perl-MooseX-LogDispatch/devel perl-MooseX-LogDispatch.spec, 1.3, 1.4 Message-ID: <20090726112753.913A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-LogDispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17685 Modified Files: perl-MooseX-LogDispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-LogDispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-LogDispatch/devel/perl-MooseX-LogDispatch.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-LogDispatch.spec 26 Feb 2009 22:29:13 -0000 1.3 +++ perl-MooseX-LogDispatch.spec 26 Jul 2009 11:27:53 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-LogDispatch Version: 1.2000 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Logging Role for Moose License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2000-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2000-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:28:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:28:11 +0000 (UTC) Subject: rpms/perl-MooseX-MethodAttributes/devel perl-MooseX-MethodAttributes.spec, 1.5, 1.6 Message-ID: <20090726112811.7A22911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-MethodAttributes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17869 Modified Files: perl-MooseX-MethodAttributes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-MethodAttributes.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-MethodAttributes/devel/perl-MooseX-MethodAttributes.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-MooseX-MethodAttributes.spec 9 Jun 2009 08:30:55 -0000 1.5 +++ perl-MooseX-MethodAttributes.spec 26 Jul 2009 11:28:11 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-MooseX-MethodAttributes Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} # lib/MooseX/MethodAttributes.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Chris Weyl 0.14-1 - auto-update to 0.14 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:28:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:28:25 +0000 (UTC) Subject: rpms/perl-MooseX-MultiInitArg/devel perl-MooseX-MultiInitArg.spec, 1.2, 1.3 Message-ID: <20090726112825.34A4011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-MultiInitArg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18007 Modified Files: perl-MooseX-MultiInitArg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-MultiInitArg.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-MultiInitArg/devel/perl-MooseX-MultiInitArg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-MultiInitArg.spec 26 Feb 2009 22:30:36 -0000 1.2 +++ perl-MooseX-MultiInitArg.spec 26 Jul 2009 11:28:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-MultiInitArg Version: 0.01 -Release: 3%{?dist} +Release: 4%{?dist} # lib/MooseX/MultiInitArg.pm -> GPL+ or Artistic # lib/MooseX/MultiInitArg/Attribute.pm -> GPL+ or Artistic # lib/MooseX/MultiInitArg/Trait.pm -> GPL+ or Artistic @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:28:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:28:39 +0000 (UTC) Subject: rpms/perl-MooseX-Object-Pluggable/devel perl-MooseX-Object-Pluggable.spec, 1.10, 1.11 Message-ID: <20090726112839.AC86111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Object-Pluggable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18186 Modified Files: perl-MooseX-Object-Pluggable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Object-Pluggable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Object-Pluggable/devel/perl-MooseX-Object-Pluggable.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-MooseX-Object-Pluggable.spec 20 May 2009 01:56:36 -0000 1.10 +++ perl-MooseX-Object-Pluggable.spec 26 Jul 2009 11:28:39 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-MooseX-Object-Pluggable Version: 0.0011 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Make your Moose classes pluggable License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0011-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Chris Weyl 0.0011-1 - auto-update to 0.0011 (by cpan-spec-update 0.01) - altered br on perl(Moose) (0.17 => 0.35) From jkeating at fedoraproject.org Sun Jul 26 11:28:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:28:55 +0000 (UTC) Subject: rpms/perl-MooseX-POE/devel perl-MooseX-POE.spec,1.6,1.7 Message-ID: <20090726112855.9EC0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-POE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18428 Modified Files: perl-MooseX-POE.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-POE.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-POE/devel/perl-MooseX-POE.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-MooseX-POE.spec 16 Jun 2009 14:28:36 -0000 1.6 +++ perl-MooseX-POE.spec 26 Jul 2009 11:28:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-MooseX-POE Version: 0.204 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Illicit Love Child of Moose and POE License: GPL+ or Artistic Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.204-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Chris Weyl 0.204-1 - auto-update to 0.204 (by cpan-spec-update 0.01) - added a new req on perl(Moose) (version 0.73) From jkeating at fedoraproject.org Sun Jul 26 11:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:29:11 +0000 (UTC) Subject: rpms/perl-MooseX-Param/devel perl-MooseX-Param.spec,1.2,1.3 Message-ID: <20090726112911.B413911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Param/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18721 Modified Files: perl-MooseX-Param.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Param.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Param/devel/perl-MooseX-Param.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Param.spec 26 Feb 2009 22:33:35 -0000 1.2 +++ perl-MooseX-Param.spec 26 Jul 2009 11:29:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Param Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple role to provide a standard param method License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:29:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:29:27 +0000 (UTC) Subject: rpms/perl-MooseX-Params-Validate/devel perl-MooseX-Params-Validate.spec, 1.10, 1.11 Message-ID: <20090726112927.9682511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Params-Validate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19204 Modified Files: perl-MooseX-Params-Validate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Params-Validate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Params-Validate/devel/perl-MooseX-Params-Validate.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-MooseX-Params-Validate.spec 19 Apr 2009 20:28:29 -0000 1.10 +++ perl-MooseX-Params-Validate.spec 26 Jul 2009 11:29:27 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-MooseX-Params-Validate Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extension of Params::Validate using Moose's types License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Chris Weyl 0.09-1 - update to 0.09 From jkeating at fedoraproject.org Sun Jul 26 11:29:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:29:42 +0000 (UTC) Subject: rpms/perl-MooseX-Policy-SemiAffordanceAccessor/devel perl-MooseX-Policy-SemiAffordanceAccessor.spec, 1.2, 1.3 Message-ID: <20090726112942.B867611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Policy-SemiAffordanceAccessor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19528 Modified Files: perl-MooseX-Policy-SemiAffordanceAccessor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Policy-SemiAffordanceAccessor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Policy-SemiAffordanceAccessor/devel/perl-MooseX-Policy-SemiAffordanceAccessor.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Policy-SemiAffordanceAccessor.spec 26 Feb 2009 22:35:28 -0000 1.2 +++ perl-MooseX-Policy-SemiAffordanceAccessor.spec 26 Jul 2009 11:29:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Policy-SemiAffordanceAccessor Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Policy to name accessors foo() and set_foo() License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:29:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:29:57 +0000 (UTC) Subject: rpms/perl-MooseX-Role-Cmd/devel perl-MooseX-Role-Cmd.spec,1.4,1.5 Message-ID: <20090726112957.C2FEB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Role-Cmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19695 Modified Files: perl-MooseX-Role-Cmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Role-Cmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Role-Cmd/devel/perl-MooseX-Role-Cmd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MooseX-Role-Cmd.spec 8 Jun 2009 05:38:40 -0000 1.4 +++ perl-MooseX-Role-Cmd.spec 26 Jul 2009 11:29:57 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MooseX-Role-Cmd Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wrap system command binaries the Moose way License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.05-1 - auto-update to 0.05 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:30:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:30:14 +0000 (UTC) Subject: rpms/perl-MooseX-Role-Parameterized/devel perl-MooseX-Role-Parameterized.spec, 1.7, 1.8 Message-ID: <20090726113014.80B6F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Role-Parameterized/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19869 Modified Files: perl-MooseX-Role-Parameterized.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Role-Parameterized.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Role-Parameterized/devel/perl-MooseX-Role-Parameterized.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-MooseX-Role-Parameterized.spec 16 Jun 2009 05:43:03 -0000 1.7 +++ perl-MooseX-Role-Parameterized.spec 26 Jul 2009 11:30:14 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-MooseX-Role-Parameterized Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} # see LICENSE License: GPL+ or Artistic Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Chris Weyl 0.09-2 - drop README, LICENSE from doc From jkeating at fedoraproject.org Sun Jul 26 11:30:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:30:29 +0000 (UTC) Subject: rpms/perl-MooseX-Role-XMLRPC-Client/devel perl-MooseX-Role-XMLRPC-Client.spec, 1.1, 1.2 Message-ID: <20090726113029.BD24C11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Role-XMLRPC-Client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20037 Modified Files: perl-MooseX-Role-XMLRPC-Client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Role-XMLRPC-Client.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Role-XMLRPC-Client/devel/perl-MooseX-Role-XMLRPC-Client.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-MooseX-Role-XMLRPC-Client.spec 2 May 2009 04:00:23 -0000 1.1 +++ perl-MooseX-Role-XMLRPC-Client.spec 26 Jul 2009 11:30:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-MooseX-Role-XMLRPC-Client Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} # lib/MooseX/Role/XMLRPC/Client.pm -> LGPLv2+ License: LGPLv2+ Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Chris Weyl 0.04-1 - update to 0.04 From jkeating at fedoraproject.org Sun Jul 26 11:30:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:30:46 +0000 (UTC) Subject: rpms/perl-MooseX-SemiAffordanceAccessor/devel perl-MooseX-SemiAffordanceAccessor.spec, 1.1, 1.2 Message-ID: <20090726113046.102E111C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-SemiAffordanceAccessor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20227 Modified Files: perl-MooseX-SemiAffordanceAccessor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-SemiAffordanceAccessor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-SemiAffordanceAccessor/devel/perl-MooseX-SemiAffordanceAccessor.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-MooseX-SemiAffordanceAccessor.spec 9 Jun 2009 00:29:28 -0000 1.1 +++ perl-MooseX-SemiAffordanceAccessor.spec 26 Jul 2009 11:30:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-MooseX-SemiAffordanceAccessor Version: 0.03 -Release: 1%{?dist} +Release: 2%{?dist} # lib/MooseX/SemiAffordanceAccessor.pm -> GPL+ or Artistic # lib/MooseX/SemiAffordanceAccessor/Role/Attribute.pm -> GPL+ or Artistic License: GPL+ or Artistic @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 0.03-1 - submission From jkeating at fedoraproject.org Sun Jul 26 11:31:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:31:02 +0000 (UTC) Subject: rpms/perl-MooseX-SimpleConfig/devel perl-MooseX-SimpleConfig.spec, 1.2, 1.3 Message-ID: <20090726113102.40D1E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-SimpleConfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20438 Modified Files: perl-MooseX-SimpleConfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-SimpleConfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-SimpleConfig/devel/perl-MooseX-SimpleConfig.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-SimpleConfig.spec 26 Feb 2009 22:38:35 -0000 1.2 +++ perl-MooseX-SimpleConfig.spec 26 Jul 2009 11:31:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-SimpleConfig Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Moose role for setting attributes from a simple configfile License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:31:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:31:19 +0000 (UTC) Subject: rpms/perl-MooseX-Singleton/devel perl-MooseX-Singleton.spec, 1.2, 1.3 Message-ID: <20090726113119.5507111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Singleton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20626 Modified Files: perl-MooseX-Singleton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Singleton.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Singleton/devel/perl-MooseX-Singleton.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Singleton.spec 2 Jun 2009 15:45:32 -0000 1.2 +++ perl-MooseX-Singleton.spec 26 Jul 2009 11:31:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Singleton Version: 0.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turn your Moose class into a singleton License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 0.17-1 - auto-update to 0.17 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 11:31:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:31:35 +0000 (UTC) Subject: rpms/perl-MooseX-Storage/devel perl-MooseX-Storage.spec,1.3,1.4 Message-ID: <20090726113135.3274711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Storage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20785 Modified Files: perl-MooseX-Storage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Storage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Storage/devel/perl-MooseX-Storage.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-Storage.spec 8 Jun 2009 05:30:22 -0000 1.3 +++ perl-MooseX-Storage.spec 26 Jul 2009 11:31:34 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-Storage Version: 0.18 -Release: 2%{?dist} +Release: 3%{?dist} # lib/MooseX/Storage.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Chris Weyl 0.18-2 - add br on CPAN until bundled M::I is updated From jkeating at fedoraproject.org Sun Jul 26 11:31:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:31:49 +0000 (UTC) Subject: rpms/perl-MooseX-StrictConstructor/devel perl-MooseX-StrictConstructor.spec, 1.5, 1.6 Message-ID: <20090726113149.5FF0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-StrictConstructor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20946 Modified Files: perl-MooseX-StrictConstructor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-StrictConstructor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-StrictConstructor/devel/perl-MooseX-StrictConstructor.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-MooseX-StrictConstructor.spec 19 Apr 2009 20:31:47 -0000 1.5 +++ perl-MooseX-StrictConstructor.spec 26 Jul 2009 11:31:49 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-MooseX-StrictConstructor Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/MooseX/StrictConstructor.pm License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Chris Weyl 0.08-1 - update to 0.08 From jkeating at fedoraproject.org Sun Jul 26 11:32:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:32:03 +0000 (UTC) Subject: rpms/perl-MooseX-Traits-Attribute-CascadeClear/devel perl-MooseX-Traits-Attribute-CascadeClear.spec, 1.3, 1.4 Message-ID: <20090726113203.5F54811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Traits-Attribute-CascadeClear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21078 Modified Files: perl-MooseX-Traits-Attribute-CascadeClear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Traits-Attribute-CascadeClear.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Traits-Attribute-CascadeClear/devel/perl-MooseX-Traits-Attribute-CascadeClear.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-Traits-Attribute-CascadeClear.spec 26 Feb 2009 22:40:29 -0000 1.3 +++ perl-MooseX-Traits-Attribute-CascadeClear.spec 26 Jul 2009 11:32:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-Traits-Attribute-CascadeClear Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} # lib/Moose/Meta/Attribute/Custom/Trait/CascadeClear.pm -> LGPLv2, LGPLv3 # lib/Moose/Meta/Attribute/Custom/Trait/CascadeClearMaster.pm -> LGPLv2, LGPLv3 # lib/MooseX/Traits/Attribute/CascadeClear.pm -> LGPLv2, LGPLv3 @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:32:18 +0000 (UTC) Subject: rpms/perl-MooseX-Types/devel perl-MooseX-Types.spec,1.12,1.13 Message-ID: <20090726113218.7969911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Types/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21237 Modified Files: perl-MooseX-Types.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Types.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Types/devel/perl-MooseX-Types.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-MooseX-Types.spec 26 Jun 2009 02:01:16 -0000 1.12 +++ perl-MooseX-Types.spec 26 Jul 2009 11:32:18 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-MooseX-Types Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} # see Makefile.PL, lib/MooseX/Types.pm License: GPL+ or Artistic Group: Development/Libraries @@ -97,6 +97,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Chris Weyl 0.13-1 - auto-update to 0.13 (by cpan-spec-update 0.01) - added a new br on perl(Test::Moose) (version 0) From jkeating at fedoraproject.org Sun Jul 26 11:32:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:32:47 +0000 (UTC) Subject: rpms/perl-MooseX-Types-Path-Class/devel perl-MooseX-Types-Path-Class.spec, 1.3, 1.4 Message-ID: <20090726113247.5A7F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Types-Path-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21578 Modified Files: perl-MooseX-Types-Path-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Types-Path-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Types-Path-Class/devel/perl-MooseX-Types-Path-Class.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-Types-Path-Class.spec 26 Feb 2009 22:43:32 -0000 1.3 +++ perl-MooseX-Types-Path-Class.spec 26 Jul 2009 11:32:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-MooseX-Types-Path-Class Version: 0.05 -Release: 4%{?dist} +Release: 5%{?dist} # see Makefile.PL, README, lib/MooseX/Types/Path/Class.pm License: GPL+ or Artistic Group: Development/Libraries @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:33:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:33:01 +0000 (UTC) Subject: rpms/perl-MooseX-Types-Set-Object/devel perl-MooseX-Types-Set-Object.spec, 1.2, 1.3 Message-ID: <20090726113301.72AE811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Types-Set-Object/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21752 Modified Files: perl-MooseX-Types-Set-Object.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Types-Set-Object.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Types-Set-Object/devel/perl-MooseX-Types-Set-Object.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Types-Set-Object.spec 26 Feb 2009 22:44:31 -0000 1.2 +++ perl-MooseX-Types-Set-Object.spec 26 Jul 2009 11:33:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Types-Set-Object Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Set::Object type with coercions and stuff License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:33:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:33:18 +0000 (UTC) Subject: rpms/perl-MooseX-Types-URI/devel perl-MooseX-Types-URI.spec, 1.3, 1.4 Message-ID: <20090726113318.9A41B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Types-URI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21909 Modified Files: perl-MooseX-Types-URI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Types-URI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Types-URI/devel/perl-MooseX-Types-URI.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-MooseX-Types-URI.spec 29 May 2009 05:22:05 -0000 1.3 +++ perl-MooseX-Types-URI.spec 26 Jul 2009 11:33:18 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-MooseX-Types-URI Version: 0.02 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/MooseX/Types/URI.pm License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Chris Weyl 0.02-1 - auto-update to 0.02 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 11:33:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:33:35 +0000 (UTC) Subject: rpms/perl-MooseX-Workers/devel perl-MooseX-Workers.spec,1.4,1.5 Message-ID: <20090726113335.B0FF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Workers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22070 Modified Files: perl-MooseX-Workers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Workers.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Workers/devel/perl-MooseX-Workers.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-MooseX-Workers.spec 8 Jun 2009 05:28:26 -0000 1.4 +++ perl-MooseX-Workers.spec 26 Jul 2009 11:33:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-MooseX-Workers Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides a simple sub-process management for asynchronous tasks License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.05-2 - drop disco'ed file README; add ex/ From jkeating at fedoraproject.org Sun Jul 26 11:33:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:33:51 +0000 (UTC) Subject: rpms/perl-Mouse/devel perl-Mouse.spec,1.11,1.12 Message-ID: <20090726113351.6D3E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22248 Modified Files: perl-Mouse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mouse/devel/perl-Mouse.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Mouse.spec 22 Jun 2009 07:20:30 -0000 1.11 +++ perl-Mouse.spec 26 Jul 2009 11:33:51 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Mouse Version: 0.25 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Moose minus the antlers @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 0.25-1 - auto-update to 0.25 (by cpan-spec-update 0.01) - altered req on perl(Scalar::Util) (1.19 => 1.14) From jkeating at fedoraproject.org Sun Jul 26 11:34:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:34:13 +0000 (UTC) Subject: rpms/perl-MouseX-Types/devel perl-MouseX-Types.spec,1.2,1.3 Message-ID: <20090726113413.8524C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MouseX-Types/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22452 Modified Files: perl-MouseX-Types.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MouseX-Types.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MouseX-Types/devel/perl-MouseX-Types.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MouseX-Types.spec 26 Feb 2009 22:48:35 -0000 1.2 +++ perl-MouseX-Types.spec 26 Jul 2009 11:34:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MouseX-Types Version: 0.01 -Release: 2%{?dist} +Release: 3%{?dist} # lib/MouseX/Types.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:34:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:34:40 +0000 (UTC) Subject: rpms/perl-Mozilla-LDAP/devel perl-Mozilla-LDAP.spec,1.9,1.10 Message-ID: <20090726113440.D767211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Mozilla-LDAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22671 Modified Files: perl-Mozilla-LDAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Mozilla-LDAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Mozilla-LDAP/devel/perl-Mozilla-LDAP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Mozilla-LDAP.spec 26 Feb 2009 22:49:49 -0000 1.9 +++ perl-Mozilla-LDAP.spec 26 Jul 2009 11:34:40 -0000 1.10 @@ -5,7 +5,7 @@ Summary: LDAP Perl module that wraps the Mozilla C SDK Name: perl-Mozilla-LDAP Version: 1.5.2 -Release: 5%{?dist}.1 +Release: 6%{?dist}.1 License: GPLv2+ and LGPLv2+ and MPLv1.1 Group: Development/Libraries URL: http://www.mozilla.org/directory/perldap.html @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %doc CREDITS ChangeLog README MPL-1.1.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.2-5.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:34:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:34:58 +0000 (UTC) Subject: rpms/perl-NOCpulse-CLAC/devel perl-NOCpulse-CLAC.spec,1.2,1.3 Message-ID: <20090726113458.0ED8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-CLAC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22820 Modified Files: perl-NOCpulse-CLAC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-CLAC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-CLAC/devel/perl-NOCpulse-CLAC.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-NOCpulse-CLAC.spec 26 Feb 2009 22:51:03 -0000 1.2 +++ perl-NOCpulse-CLAC.spec 26 Jul 2009 11:34:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-CLAC Version: 1.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NOCpulse Command Line Application framework for Perl URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.9.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:35:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:35:15 +0000 (UTC) Subject: rpms/perl-NOCpulse-Debug/devel perl-NOCpulse-Debug.spec,1.2,1.3 Message-ID: <20090726113515.39DAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-Debug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22998 Modified Files: perl-NOCpulse-Debug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-Debug.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-Debug/devel/perl-NOCpulse-Debug.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-NOCpulse-Debug.spec 26 Feb 2009 22:52:14 -0000 1.2 +++ perl-NOCpulse-Debug.spec 26 Jul 2009 11:35:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-Debug Version: 1.23.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl debug output package URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.23.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.23.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:35:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:35:30 +0000 (UTC) Subject: rpms/perl-NOCpulse-Gritch/devel perl-NOCpulse-Gritch.spec,1.1,1.2 Message-ID: <20090726113530.B3C6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-Gritch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23173 Modified Files: perl-NOCpulse-Gritch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-Gritch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-Gritch/devel/perl-NOCpulse-Gritch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-NOCpulse-Gritch.spec 27 Feb 2009 08:57:39 -0000 1.1 +++ perl-NOCpulse-Gritch.spec 26 Jul 2009 11:35:30 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-Gritch Version: 1.27.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl throttled email notification for Spacewalk URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Miroslav Such? 1.27.4-1 - add LICENSE From jkeating at fedoraproject.org Sun Jul 26 11:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:35:46 +0000 (UTC) Subject: rpms/perl-NOCpulse-Object/devel perl-NOCpulse-Object.spec,1.2,1.3 Message-ID: <20090726113546.907FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-Object/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23341 Modified Files: perl-NOCpulse-Object.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-Object.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-Object/devel/perl-NOCpulse-Object.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-NOCpulse-Object.spec 26 Feb 2009 22:53:14 -0000 1.2 +++ perl-NOCpulse-Object.spec 26 Jul 2009 11:35:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-Object Version: 1.26.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NOCpulse Object abstraction for Perl URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.26.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.26.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:36:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:36:03 +0000 (UTC) Subject: rpms/perl-NOCpulse-SetID/devel perl-NOCpulse-SetID.spec,1.2,1.3 Message-ID: <20090726113603.0622311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-SetID/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23498 Modified Files: perl-NOCpulse-SetID.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-SetID.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-SetID/devel/perl-NOCpulse-SetID.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-NOCpulse-SetID.spec 26 Feb 2009 22:54:16 -0000 1.2 +++ perl-NOCpulse-SetID.spec 26 Jul 2009 11:36:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-SetID Version: 1.6.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides api for correctly changing user identity URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 11:36:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:36:16 +0000 (UTC) Subject: rpms/perl-NOCpulse-Utils/devel perl-NOCpulse-Utils.spec,1.2,1.3 Message-ID: <20090726113616.516FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NOCpulse-Utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23681 Modified Files: perl-NOCpulse-Utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NOCpulse-Utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NOCpulse-Utils/devel/perl-NOCpulse-Utils.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-NOCpulse-Utils.spec 26 Feb 2009 22:55:22 -0000 1.2 +++ perl-NOCpulse-Utils.spec 26 Jul 2009 11:36:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-NOCpulse-Utils Version: 1.14.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NOCpulse utility packages URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz @@ -45,6 +45,9 @@ mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3/ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.14.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kanarip at fedoraproject.org Sun Jul 26 11:45:29 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 11:45:29 +0000 (UTC) Subject: rpms/rubygem-rails/devel import.log,1.2,1.3 Message-ID: <20090726114529.582EF11C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26960/devel Modified Files: import.log Log Message: 2.3.3-1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 26 Jul 2009 10:42:17 -0000 1.2 +++ import.log 26 Jul 2009 11:45:28 -0000 1.3 @@ -1,2 +1,3 @@ rubygem-rails-2_3_2-1_fc10:HEAD:rubygem-rails-2.3.2-1.fc10.src.rpm:1237207120 rubygem-rails-2_3_3-1_fc11:HEAD:rubygem-rails-2.3.3-1.fc11.src.rpm:1248604918 +rubygem-rails-2_3_3-1_fc11:HEAD:rubygem-rails-2.3.3-1.fc11.src.rpm:1248608704 From kanarip at fedoraproject.org Sun Jul 26 11:45:50 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 11:45:50 +0000 (UTC) Subject: rpms/rubygem-activerecord/devel import.log,1.3,1.4 Message-ID: <20090726114550.3C13D11C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-activerecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27210/devel Modified Files: import.log Log Message: 2.3.3-1 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activerecord/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 26 Jul 2009 10:55:14 -0000 1.3 +++ import.log 26 Jul 2009 11:45:50 -0000 1.4 @@ -1,3 +1,4 @@ rubygem-activerecord-2_2_2-1_fc10:HEAD:rubygem-activerecord-2.2.2-1.fc10.src.rpm:1227532664 rubygem-activerecord-2_3_2-1_fc10:HEAD:rubygem-activerecord-2.3.2-1.fc10.src.rpm:1237202080 rubygem-activerecord-2_3_3-1_fc11:HEAD:rubygem-activerecord-2.3.3-1.fc11.src.rpm:1248605589 +rubygem-activerecord-2_3_3-1_fc11:HEAD:rubygem-activerecord-2.3.3-1.fc11.src.rpm:1248608731 From kanarip at fedoraproject.org Sun Jul 26 11:46:22 2009 From: kanarip at fedoraproject.org (Jeroen van Meeuwen) Date: Sun, 26 Jul 2009 11:46:22 +0000 (UTC) Subject: rpms/rubygem-rails/F-11 .cvsignore, 1.8, 1.9 import.log, 1.1, 1.2 rubygem-rails.spec, 1.12, 1.13 sources, 1.8, 1.9 Message-ID: <20090726114622.E3AC411C00CE@cvs1.fedora.phx.redhat.com> Author: kanarip Update of /cvs/pkgs/rpms/rubygem-rails/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27504/F-11 Modified Files: .cvsignore import.log rubygem-rails.spec sources Log Message: 2.3.3-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 16 Mar 2009 12:38:55 -0000 1.8 +++ .cvsignore 26 Jul 2009 11:46:22 -0000 1.9 @@ -1 +1 @@ -rails-2.3.2.gem +rails-2.3.3.gem Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 16 Mar 2009 12:38:55 -0000 1.1 +++ import.log 26 Jul 2009 11:46:22 -0000 1.2 @@ -1 +1,2 @@ rubygem-rails-2_3_2-1_fc10:HEAD:rubygem-rails-2.3.2-1.fc10.src.rpm:1237207120 +rubygem-rails-2_3_3-1_fc11:F-11:rubygem-rails-2.3.3-1.fc11.src.rpm:1248608760 Index: rubygem-rails.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/F-11/rubygem-rails.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- rubygem-rails.spec 24 Jul 2009 16:31:21 -0000 1.12 +++ rubygem-rails.spec 26 Jul 2009 11:46:22 -0000 1.13 @@ -6,8 +6,8 @@ Summary: Web-application framework Name: rubygem-%{gemname} -Version: 2.3.2 -Release: 3%{?dist} +Version: 2.3.3 +Release: 1%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -15,12 +15,16 @@ Source0: http://gems.rubyforge.org/gems/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems) >= 1.1.1 Requires: rubygem(rake) >= 0.7.2 +Requires: rubygem(rack) >= 1.0.0 Requires: rubygem(activesupport) = %{version} Requires: rubygem(activerecord) = %{version} Requires: rubygem(actionpack) = %{version} Requires: rubygem(actionmailer) = %{version} Requires: rubygem(activeresource) = %{version} + BuildRequires: rubygems +BuildRequires: rubygem(rack) >= 1.0.0 + BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} @@ -48,13 +52,16 @@ find %{buildroot}%{geminstdir}/bin -type sed -i '1i#!/usr/bin/ruby\n' %{buildroot}%{geminstdir}/bin/rails for file in `find %{buildroot}/%{geminstdir}/ -type f -perm /a+x`; do - sed -i -re '1s@^#!.*$@#! /usr/bin/ruby@' $file + sed -i -e '1c#!/usr/bin/ruby' $file chmod 755 $file done # Remove backup files find %{buildroot}/%{geminstdir} -type f -name "*~" -delete +# Delete zero-length files +find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; + # Fix anything executable that does not have a shebang for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file @@ -85,6 +92,7 @@ rm -rf %{buildroot} %{geminstdir}/doc %{geminstdir}/environments %{geminstdir}/fresh_rakefile +%{geminstdir}/guides %{geminstdir}/helpers %{geminstdir}/html %{geminstdir}/lib @@ -97,11 +105,8 @@ rm -rf %{buildroot} %changelog -* Wed Jul 24 2009 Scott Seago - 2.3.2-3 -- Remove the 'delete zero length files' bit, as some of these are needed. - -* Wed May 6 2009 David Lutterkort - 2.3.2-2 -- Fix replacement of shebang lines; broke scripts/generate (bz 496480) +* Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 +- New upstream version * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rails/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 16 Mar 2009 12:38:55 -0000 1.8 +++ sources 26 Jul 2009 11:46:22 -0000 1.9 @@ -1 +1 @@ -b52822c4c0aa50726e3943181bcaf883 rails-2.3.2.gem +776547f3b8e4f205b389fa2f677b20dc rails-2.3.3.gem From jkeating at fedoraproject.org Sun Jul 26 11:32:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 11:32:33 +0000 (UTC) Subject: rpms/perl-MooseX-Types-DateTime/devel perl-MooseX-Types-DateTime.spec, 1.2, 1.3 Message-ID: <20090726113233.5218011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-MooseX-Types-DateTime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21402 Modified Files: perl-MooseX-Types-DateTime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-MooseX-Types-DateTime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MooseX-Types-DateTime/devel/perl-MooseX-Types-DateTime.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-MooseX-Types-DateTime.spec 26 Feb 2009 22:42:35 -0000 1.2 +++ perl-MooseX-Types-DateTime.spec 26 Jul 2009 11:32:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-MooseX-Types-DateTime Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} # see, e.g., lib/MooseX/Types/DateTime.pm License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sgrubb at fedoraproject.org Sun Jul 26 13:27:13 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Sun, 26 Jul 2009 13:27:13 +0000 (UTC) Subject: rpms/amtu/devel amtu-1.0.8-init.patch, NONE, 1.1 .cvsignore, 1.10, 1.11 amtu.spec, 1.26, 1.27 sources, 1.11, 1.12 amtu-1.0.7-makefile.patch, 1.1, NONE Message-ID: <20090726132713.6D44811C00CE@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1685 Modified Files: .cvsignore amtu.spec sources Added Files: amtu-1.0.8-init.patch Removed Files: amtu-1.0.7-makefile.patch Log Message: * Sun Jul 26 2009 Steve Grubb 1.0.8-1 - new upstream version - Add init script for bootup system check amtu-1.0.8-init.patch: Makefile.am | 2 configure.in | 2 doc/AMTUHowTo.txt | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++ doc/Makefile.am | 2 init/Makefile.am | 16 +++++++ init/amtu.init | 90 ++++++++++++++++++++++++++++++++++++++++++++ init/amtu.sysconfig | 11 +++++ 7 files changed, 225 insertions(+), 3 deletions(-) --- NEW FILE amtu-1.0.8-init.patch --- diff -urN amtu-1.0.8.orig/configure.in amtu-1.0.8/configure.in --- amtu-1.0.8.orig/configure.in 2009-07-06 09:39:44.000000000 -0400 +++ amtu-1.0.8/configure.in 2009-07-06 10:11:15.000000000 -0400 @@ -19,7 +19,7 @@ esac AC_CHECK_LIB(laus, laus_open) AC_CHECK_LIB(audit, audit_open) -AC_OUTPUT(Makefile src/Makefile doc/Makefile) +AC_OUTPUT(Makefile src/Makefile init/Makefile doc/Makefile) echo . echo " diff -urN amtu-1.0.8.orig/doc/AMTUHowTo.txt amtu-1.0.8/doc/AMTUHowTo.txt --- amtu-1.0.8.orig/doc/AMTUHowTo.txt 1969-12-31 19:00:00.000000000 -0500 +++ amtu-1.0.8/doc/AMTUHowTo.txt 2009-07-06 10:20:42.000000000 -0400 @@ -0,0 +1,105 @@ +ABSTRACT MACHINE TEST UTILITY HOWTO + + +OVERVIEW + +Abstract Machine Test Utility (AMTU) is an administrative utility to check +whether the underlying protection mechanism of the hardware are still being +enforced. This is a requirement of the Controlled Access Protection Profile +(CAPP) FTP_AMT.1, see http://www.radium.ncsc.mil/tpep/library/protection_profiles/CAPP-1.d.pdf. +AMTU executes the following tests: + +* Memory + +Randomly writes to areas of memory and then reading the memory back to +ensure the values written remain unchanged. + +* Memory Separation + +Ensures that user space programs cannot read and write to areas of memory +utilized by the likes of Video RAM, kernel code, etc. + +* I/O Controller - Network + +Verifies random data transmitted is also the data received for each configured +network device. Only ethernet and token ring devices that are configured and +up are checked. Async devices are not checked. + +* I/O Controller - Disk + +Verifies that information written to disks remains unchanged. Only SCSI and IDE +controllers associated with mounted filesystems are checked. + +* Supervisor Mode Instructions + +Ensures that the enforcement of the property that privileged instructions +should only be in supervisor mode is still in effect. The set privileged +instructions tested to confirm this is architecture dependant. + + + +TESTED VERSIONS + +AMTU has been tested on the following: + +* RHEL4 and 5 +* SuSE SLES 8 +* pSeries (32-bit and 64-bit) +* iSeries (64-bit) +* zSeries (31-bit) +* xSeries (32-bit) + + + +INSTALLING AMTU + +VERIFYING SYSTEM REQUIREMENTS AND PREREQUISITES + +Before installing AMTU, verify that your system meets the following +requirements and prerequisites: + +* The system is running in the Common Criteria evaluated configuration. + + +COMPILING AND INSTALLING AMTU + +Untar the AMTU source tarball. Then issue the following commands: + ./bootstrap + ./configure + make + make install + +Only the last step must be run as root. During the ./configure stage +you may opt to change various options including default install directory. + +When compiling AMTU as a 64-bit application on a PPC64 architecture (with the +exception of Squadron pSeries), specify + + ./configure CC=/opt/cross/bin/powerpc64-linux-gcc + +where /opt/cross/bin/powerpc64-linux-gcc is the 64-bit gcc compiler. + +To compile as a 64-bit application on X86_64 architecture or Squadron pSeries, + + ./configure CC="gcc -m64" + + + +RUNNING AMTU + +AMTU installs to /usr/bin/amtu by default. You can add optional command line +arguments (see the AMTU man page (amtu.8) for more details). + + + +INTERPRETING RESULTS + +AMTU issues the following return codes when executed: + + * -1 - Program abort error + * 0 - Successful program completion + +If the error is repeatable, you can re-run amtu with the -d option to get +more information about the failure. The success or failure of AMTU is logged +in the audit log files (see auditd.8). + diff -urN amtu-1.0.8.orig/doc/Makefile.am amtu-1.0.8/doc/Makefile.am --- amtu-1.0.8.orig/doc/Makefile.am 2009-07-06 09:39:44.000000000 -0400 +++ amtu-1.0.8/doc/Makefile.am 2009-07-06 09:40:49.000000000 -0400 @@ -1,3 +1,3 @@ CONFIG_CLEAN_FILES = *.rej *.orig -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = $(man_MANS) AbstractMachineTestingDesign.doc AMTUHowTo.txt man_MANS = amtu.8 diff -urN amtu-1.0.8.orig/init/amtu.init amtu-1.0.8/init/amtu.init --- amtu-1.0.8.orig/init/amtu.init 1969-12-31 19:00:00.000000000 -0500 +++ amtu-1.0.8/init/amtu.init 2009-07-06 10:17:43.000000000 -0400 @@ -0,0 +1,90 @@ +#!/bin/sh +# +# amtu: Abstract Machine Tests +# +# chkconfig: - 96 99 +# description: This service runs the abstract machine tests to check the \ +# underlying security assumptions. It can be configured to +# halt the machine in the event of failure. The program does +# not stay resident, but rather runs once. +# +# processname: /sbin/amtu +# config: /etc/sysconfig/amtu +# +# Return values according to LSB for all commands but status: +# 0 - success +# 1 - generic or unspecified error +# 2 - invalid or excess argument(s) +# 3 - unimplemented feature (e.g. "reload") +# 4 - insufficient privilege +# 5 - program is not installed +# 6 - program is not configured +# 7 - program is not running + +PATH=/sbin:/bin:/usr/bin:/usr/sbin +prog="amtu" + +# Source function library. +. /etc/rc.d/init.d/functions + +# Allow anyone to run status +if [ "$1" = "status" ] ; then + exit 0 +fi + +# Check that we are root ... so non-root users stop here +test $EUID = 0 || exit 4 + +# Check config +test -f /etc/sysconfig/amtu && . /etc/sysconfig/amtu + +RETVAL=0 + +start() { + test -x /usr/bin/amtu || exit 5 + # Now check that the syconfig is found and has important things + # configured + test -f /etc/sysconfig/amtu || exit 6 + test x"$AMTU_HALT_ON_FAILURE" = "x" || exit 6 + test x"$HALT_COMMAND" = "x" || exit 6 + echo -n $"Starting $prog: " + daemon $prog "$EXTRAOPTIONS" + RETVAL=$? + if [ $RETVAL -ne 0 ] ; then + if [ "$AMTU_HALT_ON_FAILURE" = "yes" ] ; then + # Give audit daemon chance to write to disk + sleep 3 + logger "Amtu failed and halt on failure requested" + $HALT_COMMAND + fi + fi + return $RETVAL +} + +stop() { + /bin/true +} + +# See how we were called. +case "$1" in + start) + start + ;; + stop) + stop + ;; + status) + ;; + restart) + stop + start + ;; + condrestart) + ;; + reload) + ;; + *) + echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}" + ;; +esac +exit $RETVAL diff -urN amtu-1.0.8.orig/init/amtu.sysconfig amtu-1.0.8/init/amtu.sysconfig --- amtu-1.0.8.orig/init/amtu.sysconfig 1969-12-31 19:00:00.000000000 -0500 +++ amtu-1.0.8/init/amtu.sysconfig 2009-07-06 10:06:07.000000000 -0400 @@ -0,0 +1,11 @@ +# Add extra options here: +EXTRAOPTIONS="" +# +# This option is used to determine if failing any amtu test should result in +# the machine being unusable. The default is no, but it can be changed to +# yes in case this is desired. +AMTU_HALT_ON_FAILURE="no" +# +# Should halt on failure trigger and its set to yes, the following command +# will be issued to stop the system: +HALT_COMMAND="poweroff" diff -urN amtu-1.0.8.orig/init/Makefile.am amtu-1.0.8/init/Makefile.am --- amtu-1.0.8.orig/init/Makefile.am 1969-12-31 19:00:00.000000000 -0500 +++ amtu-1.0.8/init/Makefile.am 2009-07-06 10:14:22.000000000 -0400 @@ -0,0 +1,16 @@ + +CONFIG_CLEAN_FILES = *.rej *.orig +EXTRA_DIST = amtu.init amtu.sysconfig +initdir=$(sysconfdir)/rc.d/init.d +sysconfigdir=$(sysconfdir)/sysconfig + +install-data-hook: + $(INSTALL_DATA) -D -m 640 ${srcdir}/amtu.sysconfig ${DESTDIR}${sysconfigdir}/amtu + +install-exec-hook: + $(INSTALL_SCRIPT) -D -m 755 ${srcdir}/amtu.init ${DESTDIR}${initdir}/amtu + +uninstall-hook: + rm ${DESTDIR}${sysconfigdir}/amtu + rm ${DESTDIR}${initdir}/amtu + diff -urN amtu-1.0.8.orig/Makefile.am amtu-1.0.8/Makefile.am --- amtu-1.0.8.orig/Makefile.am 2009-07-06 09:39:44.000000000 -0400 +++ amtu-1.0.8/Makefile.am 2009-07-06 10:10:55.000000000 -0400 @@ -1,4 +1,4 @@ -SUBDIRS = src doc +SUBDIRS = src init doc EXTRA_DIST = bootstrap LICENSE CPLv1.0.htm README CONFIG_CLEAN_FILES = debug*.list config/* Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 1 Jul 2009 15:50:00 -0000 1.10 +++ .cvsignore 26 Jul 2009 13:27:12 -0000 1.11 @@ -7,3 +7,4 @@ amtu-1.0.4.tar.gz amtu-1.0.5-1.tar.gz amtu-1.0.6.tar.gz amtu-1.0.7.tar.gz +amtu-1.0.8.tar.gz Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/amtu.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- amtu.spec 24 Jul 2009 16:51:34 -0000 1.26 +++ amtu.spec 26 Jul 2009 13:27:12 -0000 1.27 @@ -1,18 +1,16 @@ Summary: Abstract Machine Test Utility (AMTU) Name: amtu -Version: 1.0.7 -Release: 2%{?dist} +Version: 1.0.8 +Release: 1%{?dist} License: CPL Group: System Environment/Base URL: http://sourceforge.net/projects/amtueal/ Source0: %{name}-%{version}.tar.gz -Patch1: amtu-1.0.7-makefile.patch +Patch1: amtu-1.0.8-init.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: audit-libs-devel >= 1.1.2 BuildRequires: automake -Requires: audit >= 1.1.2 - -# Red Hat AMTU SPEC file +Requires: chkconfig %description Abstract Machine Test Utility (AMTU) is an administrative utility to check @@ -26,11 +24,7 @@ http://www.radium.ncsc.mil/tpep/library/ %patch1 -p1 %build -# next 3 items is to quieten autoreconf -touch ChangeLog -touch NEWS -touch AUTHORS -autoreconf -fv --install +./bootstrap %configure make %{?_smp_mflags} @@ -41,13 +35,28 @@ make "DESTDIR=${RPM_BUILD_ROOT}" install %clean rm -rf $RPM_BUILD_ROOT +%post +/sbin/chkconfig --add amtu + +%preun +if [ $1 -eq 0 ]; then + /sbin/service amtu stop > /dev/null 2>&1 + /sbin/chkconfig --del amtu +fi + %files %defattr(-,root,root, -) -%doc doc/AMTUHowTo.txt COPYING +%doc doc/AMTUHowTo.txt LICENSE +%attr(755,root,root) /etc/rc.d/init.d/amtu +%config(noreplace) %attr(640,root,root) /etc/sysconfig/amtu %attr(0750,root,root) %{_bindir}/amtu %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Steve Grubb 1.0.8-1 +- new upstream version +- Add init script for bootup system check + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 1 Jul 2009 15:50:01 -0000 1.11 +++ sources 26 Jul 2009 13:27:12 -0000 1.12 @@ -1 +1 @@ -8858a47c667ffc4af840d72d8ced6605 amtu-1.0.7.tar.gz +755b517a3a1cc4092435c349d9b99312 amtu-1.0.8.tar.gz --- amtu-1.0.7-makefile.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 13:38:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:38:12 +0000 (UTC) Subject: rpms/perl-Net-Amazon-EC2/devel perl-Net-Amazon-EC2.spec,1.4,1.5 Message-ID: <20090726133812.71E7911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Amazon-EC2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6777 Modified Files: perl-Net-Amazon-EC2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Amazon-EC2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Amazon-EC2/devel/perl-Net-Amazon-EC2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-Amazon-EC2.spec 26 Feb 2009 22:56:35 -0000 1.4 +++ perl-Net-Amazon-EC2.spec 26 Jul 2009 13:38:12 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Perl interface to the Amazon Elastic Compute Cloud (EC2) Name: perl-Net-Amazon-EC2 Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/~jkim/Net-Amazon-EC2/ @@ -124,6 +124,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Net::Amazon::EC2::Volume.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:38:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:38:29 +0000 (UTC) Subject: rpms/perl-Net-Amazon-S3/devel perl-Net-Amazon-S3.spec,1.4,1.5 Message-ID: <20090726133829.9A63511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Amazon-S3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6986 Modified Files: perl-Net-Amazon-S3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Amazon-S3.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Amazon-S3/devel/perl-Net-Amazon-S3.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-Amazon-S3.spec 26 Feb 2009 22:57:36 -0000 1.4 +++ perl-Net-Amazon-S3.spec 26 Jul 2009 13:38:29 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Use the Amazon Simple Storage Service (S3) Name: perl-Net-Amazon-S3 Version: 0.43 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Net-Amazon-S3/ @@ -77,6 +77,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.43-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.43-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:39:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:39:13 +0000 (UTC) Subject: rpms/perl-Net-DBus/devel perl-Net-DBus.spec,1.8,1.9 Message-ID: <20090726133913.91CEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-DBus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7603 Modified Files: perl-Net-DBus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-DBus.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-DBus/devel/perl-Net-DBus.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Net-DBus.spec 26 Feb 2009 23:00:53 -0000 1.8 +++ perl-Net-DBus.spec 26 Jul 2009 13:39:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Net-DBus Version: 0.33.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Use and provide DBus services License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.33.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.33.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:39:27 +0000 (UTC) Subject: rpms/perl-Net-DBus-GLib/devel perl-Net-DBus-GLib.spec,1.2,1.3 Message-ID: <20090726133927.668CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-DBus-GLib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7792 Modified Files: perl-Net-DBus-GLib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-DBus-GLib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-DBus-GLib/devel/perl-Net-DBus-GLib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-DBus-GLib.spec 26 Feb 2009 23:01:56 -0000 1.2 +++ perl-Net-DBus-GLib.spec 26 Jul 2009 13:39:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-DBus-GLib Version: 0.33.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension for the DBus GLib bindings License: GPLv2+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.33.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.33.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:39:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:39:41 +0000 (UTC) Subject: rpms/perl-Net-DNS/devel perl-Net-DNS.spec,1.44,1.45 Message-ID: <20090726133941.E139011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-DNS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7977 Modified Files: perl-Net-DNS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-DNS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-DNS/devel/perl-Net-DNS.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- perl-Net-DNS.spec 26 Feb 2009 23:03:05 -0000 1.44 +++ perl-Net-DNS.spec 26 Jul 2009 13:39:41 -0000 1.45 @@ -1,6 +1,6 @@ Name: perl-Net-DNS Version: 0.63 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DNS resolver modules for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.63-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.63-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:39:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:39:55 +0000 (UTC) Subject: rpms/perl-Net-DNS-Resolver-Programmable/devel perl-Net-DNS-Resolver-Programmable.spec, 1.4, 1.5 Message-ID: <20090726133955.8C9C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-DNS-Resolver-Programmable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8150 Modified Files: perl-Net-DNS-Resolver-Programmable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-DNS-Resolver-Programmable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-DNS-Resolver-Programmable/devel/perl-Net-DNS-Resolver-Programmable.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-DNS-Resolver-Programmable.spec 26 Feb 2009 23:04:12 -0000 1.4 +++ perl-Net-DNS-Resolver-Programmable.spec 26 Jul 2009 13:39:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Net-DNS-Resolver-Programmable Version: 0.003 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Programmable DNS resolver class for offline emulation of DNS License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.003-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.003-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:40:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:40:12 +0000 (UTC) Subject: rpms/perl-Net-DNS-SEC/devel perl-Net-DNS-SEC.spec,1.3,1.4 Message-ID: <20090726134012.0AC8F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-DNS-SEC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8351 Modified Files: perl-Net-DNS-SEC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-DNS-SEC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-DNS-SEC/devel/perl-Net-DNS-SEC.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-DNS-SEC.spec 26 Feb 2009 23:05:13 -0000 1.3 +++ perl-Net-DNS-SEC.spec 26 Jul 2009 13:40:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-DNS-SEC Version: 0.14 -Release: 4%{?dist} +Release: 5%{?dist} Summary: DNSSEC modules for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:40:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:40:28 +0000 (UTC) Subject: rpms/perl-Net-Daemon/devel perl-Net-Daemon.spec,1.2,1.3 Message-ID: <20090726134028.406E711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8553 Modified Files: perl-Net-Daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Daemon/devel/perl-Net-Daemon.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-Daemon.spec 26 Feb 2009 23:05:44 -0000 1.2 +++ perl-Net-Daemon.spec 26 Jul 2009 13:40:28 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-Daemon Version: 0.44 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl extension for portable daemons Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.44-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.44-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:40:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:40:44 +0000 (UTC) Subject: rpms/perl-Net-Domain-TLD/devel perl-Net-Domain-TLD.spec,1.7,1.8 Message-ID: <20090726134044.202C611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Domain-TLD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8720 Modified Files: perl-Net-Domain-TLD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Domain-TLD.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Domain-TLD/devel/perl-Net-Domain-TLD.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Net-Domain-TLD.spec 13 Mar 2009 22:00:57 -0000 1.7 +++ perl-Net-Domain-TLD.spec 26 Jul 2009 13:40:43 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Net-Domain-TLD Version: 1.68 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Work with TLD names Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.68-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 1.68-1 - update to 1.68 From jkeating at fedoraproject.org Sun Jul 26 13:40:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:40:57 +0000 (UTC) Subject: rpms/perl-Net-FTPServer/devel perl-Net-FTPServer.spec,1.2,1.3 Message-ID: <20090726134057.8529711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-FTPServer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8900 Modified Files: perl-Net-FTPServer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-FTPServer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-FTPServer/devel/perl-Net-FTPServer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-FTPServer.spec 26 Feb 2009 23:07:34 -0000 1.2 +++ perl-Net-FTPServer.spec 26 Jul 2009 13:40:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-FTPServer Version: 1.122 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Secure, extensible and configurable Perl FTP server License: GPLv2+ Group: Development/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.122-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.122-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:41:11 +0000 (UTC) Subject: rpms/perl-Net-GPSD/devel perl-Net-GPSD.spec,1.10,1.11 Message-ID: <20090726134111.85B3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-GPSD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9068 Modified Files: perl-Net-GPSD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-GPSD.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-GPSD/devel/perl-Net-GPSD.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Net-GPSD.spec 13 Mar 2009 22:22:50 -0000 1.10 +++ perl-Net-GPSD.spec 26 Jul 2009 13:41:11 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Net-GPSD Version: 0.37 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides an object client interface to the gpsd server daemon Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.37-1 - update to 0.37 From jkeating at fedoraproject.org Sun Jul 26 13:41:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:41:25 +0000 (UTC) Subject: rpms/perl-Net-IP/devel perl-Net-IP.spec,1.13,1.14 Message-ID: <20090726134125.2140711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-IP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9212 Modified Files: perl-Net-IP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-IP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-IP/devel/perl-Net-IP.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Net-IP.spec 26 Feb 2009 23:09:19 -0000 1.13 +++ perl-Net-IP.spec 26 Jul 2009 13:41:24 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Net-IP Version: 1.25 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Perl module for manipulation of IPv4 and IPv6 addresses Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.25-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.25-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:41:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:41:37 +0000 (UTC) Subject: rpms/perl-Net-IP-CMatch/devel perl-Net-IP-CMatch.spec,1.9,1.10 Message-ID: <20090726134137.BE2C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-IP-CMatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9353 Modified Files: perl-Net-IP-CMatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-IP-CMatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-IP-CMatch/devel/perl-Net-IP-CMatch.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Net-IP-CMatch.spec 26 Feb 2009 23:10:08 -0000 1.9 +++ perl-Net-IP-CMatch.spec 26 Jul 2009 13:41:37 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Net-IP-CMatch Version: 0.02 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Efficiently match IP addresses against IP ranges with C Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:41:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:41:51 +0000 (UTC) Subject: rpms/perl-Net-IPv4Addr/devel perl-Net-IPv4Addr.spec,1.3,1.4 Message-ID: <20090726134151.A4A0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-IPv4Addr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9495 Modified Files: perl-Net-IPv4Addr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-IPv4Addr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-IPv4Addr/devel/perl-Net-IPv4Addr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-IPv4Addr.spec 26 Feb 2009 23:10:59 -0000 1.3 +++ perl-Net-IPv4Addr.spec 26 Jul 2009 13:41:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-IPv4Addr Version: 0.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl extension for manipulating IPv4 addresses Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:42:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:42:06 +0000 (UTC) Subject: rpms/perl-Net-IPv6Addr/devel perl-Net-IPv6Addr.spec,1.3,1.4 Message-ID: <20090726134206.35A4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-IPv6Addr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9672 Modified Files: perl-Net-IPv6Addr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-IPv6Addr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-IPv6Addr/devel/perl-Net-IPv6Addr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-IPv6Addr.spec 26 Feb 2009 23:11:53 -0000 1.3 +++ perl-Net-IPv6Addr.spec 26 Jul 2009 13:42:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-IPv6Addr Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl module to check validity of IPv6 addresses Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:42:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:42:20 +0000 (UTC) Subject: rpms/perl-Net-IRC/devel perl-Net-IRC.spec,1.3,1.4 Message-ID: <20090726134220.9497511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-IRC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9841 Modified Files: perl-Net-IRC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-IRC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-IRC/devel/perl-Net-IRC.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-IRC.spec 26 Feb 2009 23:12:44 -0000 1.3 +++ perl-Net-IRC.spec 26 Jul 2009 13:42:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-IRC Version: 0.75 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl interface to the Internet Relay Chat protocol Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.75-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.75-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:42:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:42:35 +0000 (UTC) Subject: rpms/perl-Net-Jabber/devel perl-Net-Jabber.spec,1.7,1.8 Message-ID: <20090726134235.AEF8611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Jabber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9998 Modified Files: perl-Net-Jabber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Jabber.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Jabber/devel/perl-Net-Jabber.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Net-Jabber.spec 26 Feb 2009 23:13:35 -0000 1.7 +++ perl-Net-Jabber.spec 26 Jul 2009 13:42:35 -0000 1.8 @@ -2,7 +2,7 @@ Name: perl-Net-Jabber Version: 2.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Net::Jabber - Jabber Perl Library Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:42:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:42:49 +0000 (UTC) Subject: rpms/perl-Net-LibIDN/devel perl-Net-LibIDN.spec,1.11,1.12 Message-ID: <20090726134249.9CEC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-LibIDN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10148 Modified Files: perl-Net-LibIDN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-LibIDN.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-LibIDN/devel/perl-Net-LibIDN.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Net-LibIDN.spec 3 May 2009 11:41:22 -0000 1.11 +++ perl-Net-LibIDN.spec 26 Jul 2009 13:42:49 -0000 1.12 @@ -3,7 +3,7 @@ Summary: Perl bindings for GNU LibIDN Name: perl-Net-LibIDN Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/%{pkgname}/ @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/Net %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Robert Scheck 0.12-1 - Upgrade to 0.12 From jkeating at fedoraproject.org Sun Jul 26 13:43:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:43:03 +0000 (UTC) Subject: rpms/perl-Net-Libdnet/devel perl-Net-Libdnet.spec,1.6,1.7 Message-ID: <20090726134303.C149011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Libdnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10291 Modified Files: perl-Net-Libdnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Libdnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Libdnet/devel/perl-Net-Libdnet.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Net-Libdnet.spec 26 Feb 2009 23:14:29 -0000 1.6 +++ perl-Net-Libdnet.spec 26 Jul 2009 13:43:03 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Net-Libdnet Version: 0.01 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl interface to libdnet Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:43:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:43:18 +0000 (UTC) Subject: rpms/perl-Net-NBName/devel perl-Net-NBName.spec,1.3,1.4 Message-ID: <20090726134318.758D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-NBName/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10466 Modified Files: perl-Net-NBName.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-NBName.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-NBName/devel/perl-Net-NBName.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-NBName.spec 26 Feb 2009 23:15:27 -0000 1.3 +++ perl-Net-NBName.spec 26 Jul 2009 13:43:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-NBName Version: 0.26 -Release: 4%{?dist} +Release: 5%{?dist} Summary: NetBIOS Name Service Requests License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:43:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:43:32 +0000 (UTC) Subject: rpms/perl-Net-Netmask/devel perl-Net-Netmask.spec,1.15,1.16 Message-ID: <20090726134332.8E49E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Netmask/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10651 Modified Files: perl-Net-Netmask.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Netmask.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Netmask/devel/perl-Net-Netmask.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Net-Netmask.spec 26 Feb 2009 23:16:18 -0000 1.15 +++ perl-Net-Netmask.spec 26 Jul 2009 13:43:32 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Net-Netmask Version: 1.9015 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for manipulation and lookup of IP network blocks Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9015-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.9015-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:43:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:43:53 +0000 (UTC) Subject: rpms/perl-Net-OAuth/devel perl-Net-OAuth.spec,1.2,1.3 Message-ID: <20090726134353.5839411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-OAuth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10854 Modified Files: perl-Net-OAuth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-OAuth.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-OAuth/devel/perl-Net-OAuth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-OAuth.spec 28 Apr 2009 07:45:50 -0000 1.2 +++ perl-Net-OAuth.spec 26 Jul 2009 13:43:52 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-OAuth Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OAuth protocol support library for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 28 2009 Lubomir Rintel (Good Data) 0.14-2 - Fix Requires From jkeating at fedoraproject.org Sun Jul 26 13:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:44:06 +0000 (UTC) Subject: rpms/perl-Net-Patricia/devel perl-Net-Patricia.spec,1.10,1.11 Message-ID: <20090726134406.AC28A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Patricia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11027 Modified Files: perl-Net-Patricia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Patricia.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Patricia/devel/perl-Net-Patricia.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Net-Patricia.spec 6 May 2009 16:32:02 -0000 1.10 +++ perl-Net-Patricia.spec 26 Jul 2009 13:44:06 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Net-Patricia Version: 1.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Patricia Trie perl module for fast IP address lookups License: GPLv2+ Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Orion Poplawski 1.15-1 - Update to 1.15 From jkeating at fedoraproject.org Sun Jul 26 13:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:44:21 +0000 (UTC) Subject: rpms/perl-Net-Pcap/devel perl-Net-Pcap.spec,1.5,1.6 Message-ID: <20090726134421.67C4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Pcap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11220 Modified Files: perl-Net-Pcap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Pcap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Pcap/devel/perl-Net-Pcap.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Net-Pcap.spec 1 Apr 2009 02:06:34 -0000 1.5 +++ perl-Net-Pcap.spec 26 Jul 2009 13:44:21 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Net-Pcap Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Interface to pcap(3) LBL packet capture library Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 0.16-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 13:44:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:44:35 +0000 (UTC) Subject: rpms/perl-Net-Ping-External/devel perl-Net-Ping-External.spec, 1.2, 1.3 Message-ID: <20090726134435.18F0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Ping-External/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11369 Modified Files: perl-Net-Ping-External.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Ping-External.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Ping-External/devel/perl-Net-Ping-External.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-Ping-External.spec 26 Feb 2009 23:18:55 -0000 1.2 +++ perl-Net-Ping-External.spec 26 Jul 2009 13:44:34 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-Ping-External Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform interface to ICMP "ping" utilities License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:44:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:44:48 +0000 (UTC) Subject: rpms/perl-Net-RawIP/devel perl-Net-RawIP.spec,1.4,1.5 Message-ID: <20090726134448.9B4A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-RawIP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11561 Modified Files: perl-Net-RawIP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-RawIP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-RawIP/devel/perl-Net-RawIP.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-RawIP.spec 26 Feb 2009 23:19:44 -0000 1.4 +++ perl-Net-RawIP.spec 26 Jul 2009 13:44:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Net-RawIP Version: 0.25 -Release: 2 +Release: 3 Summary: Perl extension for manipulating raw ip packets using libpcap License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:45:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:45:03 +0000 (UTC) Subject: rpms/perl-Net-SCP/devel perl-Net-SCP.spec,1.15,1.16 Message-ID: <20090726134503.0081511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SCP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11743 Modified Files: perl-Net-SCP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SCP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SCP/devel/perl-Net-SCP.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Net-SCP.spec 26 Feb 2009 23:20:40 -0000 1.15 +++ perl-Net-SCP.spec 26 Jul 2009 13:45:02 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Net-SCP Version: 0.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for secure copy protocol License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:45:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:45:19 +0000 (UTC) Subject: rpms/perl-Net-SFTP/devel perl-Net-SFTP.spec,1.3,1.4 Message-ID: <20090726134519.6542D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SFTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11921 Modified Files: perl-Net-SFTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SFTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SFTP/devel/perl-Net-SFTP.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Net-SFTP.spec 26 Feb 2009 23:21:42 -0000 1.3 +++ perl-Net-SFTP.spec 26 Jul 2009 13:45:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Net-SFTP Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Secure File Transfer Protocol client License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:45:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:45:36 +0000 (UTC) Subject: rpms/perl-Net-SMTP-SSL/devel perl-Net-SMTP-SSL.spec,1.2,1.3 Message-ID: <20090726134536.F161011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SMTP-SSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12156 Modified Files: perl-Net-SMTP-SSL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SMTP-SSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SMTP-SSL/devel/perl-Net-SMTP-SSL.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-SMTP-SSL.spec 26 Feb 2009 23:22:32 -0000 1.2 +++ perl-Net-SMTP-SSL.spec 26 Jul 2009 13:45:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-SMTP-SSL Version: 1.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SSL support for Net::SMTP Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Net::SMTP::SSL.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:45:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:45:52 +0000 (UTC) Subject: rpms/perl-Net-SNMP/devel perl-Net-SNMP.spec,1.4,1.5 Message-ID: <20090726134552.C2AA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SNMP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12373 Modified Files: perl-Net-SNMP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SNMP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SNMP/devel/perl-Net-SNMP.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-SNMP.spec 26 Feb 2009 23:23:21 -0000 1.4 +++ perl-Net-SNMP.spec 26 Jul 2009 13:45:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Net-SNMP Version: 5.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Object oriented interface to SNMP Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:46:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:46:07 +0000 (UTC) Subject: rpms/perl-Net-SNPP/devel perl-Net-SNPP.spec,1.6,1.7 Message-ID: <20090726134607.2187411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SNPP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12514 Modified Files: perl-Net-SNPP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SNPP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SNPP/devel/perl-Net-SNPP.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Net-SNPP.spec 26 Feb 2009 23:24:20 -0000 1.6 +++ perl-Net-SNPP.spec 26 Jul 2009 13:46:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Net-SNPP Version: 1.17 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl modules for the Simple Network Pager Protocol Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.17-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.17-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:46:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:46:21 +0000 (UTC) Subject: rpms/perl-Net-SSH/devel perl-Net-SSH.spec,1.16,1.17 Message-ID: <20090726134621.DAC5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SSH/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12711 Modified Files: perl-Net-SSH.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SSH.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SSH/devel/perl-Net-SSH.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Net-SSH.spec 26 Feb 2009 23:25:18 -0000 1.16 +++ perl-Net-SSH.spec 26 Jul 2009 13:46:21 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Net-SSH Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension for secure shell License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:46:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:46:37 +0000 (UTC) Subject: rpms/perl-Net-SSH-Perl/devel perl-Net-SSH-Perl.spec,1.13,1.14 Message-ID: <20090726134637.4674E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SSH-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12903 Modified Files: perl-Net-SSH-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SSH-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SSH-Perl/devel/perl-Net-SSH-Perl.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Net-SSH-Perl.spec 26 Feb 2009 23:26:12 -0000 1.13 +++ perl-Net-SSH-Perl.spec 26 Jul 2009 13:46:37 -0000 1.14 @@ -8,7 +8,7 @@ Summary: SSH (Secure Shell) client Name: perl-Net-SSH-Perl Version: 1.34 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Net-SSH-Perl/ @@ -97,6 +97,9 @@ LC_ALL=en_US %{__make} test TEST_AUTHOR= %{_mandir}/man3/Net::SSH::Perl*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.34-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.34-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:46:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:46:51 +0000 (UTC) Subject: rpms/perl-Net-SSH2/devel perl-Net-SSH2.spec,1.8,1.9 Message-ID: <20090726134651.EFB9811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SSH2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13061 Modified Files: perl-Net-SSH2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SSH2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SSH2/devel/perl-Net-SSH2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Net-SSH2.spec 8 Jun 2009 05:43:45 -0000 1.8 +++ perl-Net-SSH2.spec 26 Jul 2009 13:46:51 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Net-SSH2 Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Support for the SSH 2 protocol via libSSH2 License: GPL+ or Artistic Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.21-1 - auto-update to 0.21 (by cpan-spec-update 0.01) - altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) From jkeating at fedoraproject.org Sun Jul 26 13:47:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:47:08 +0000 (UTC) Subject: rpms/perl-Net-SSLeay/devel perl-Net-SSLeay.spec,1.14,1.15 Message-ID: <20090726134708.4219411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-SSLeay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13242 Modified Files: perl-Net-SSLeay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-SSLeay.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-SSLeay/devel/perl-Net-SSLeay.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Net-SSLeay.spec 8 Mar 2009 20:43:45 -0000 1.14 +++ perl-Net-SSLeay.spec 26 Jul 2009 13:47:08 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Net-SSLeay Version: 1.35 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl extension for using OpenSSL Group: Development/Libraries License: OpenSSL @@ -66,6 +66,9 @@ PERL_MM_USE_DEFAULT=1 %{__perl} Makefile %{_mandir}/man3/Net::SSLeay*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.35-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Paul Howarth - 1.35-4 - filter out unwanted provides for perl shared objects - run tests in verbose mode From jkeating at fedoraproject.org Sun Jul 26 13:47:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:47:22 +0000 (UTC) Subject: rpms/perl-Net-Server/devel perl-Net-Server.spec,1.23,1.24 Message-ID: <20090726134722.A105211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13407 Modified Files: perl-Net-Server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Server.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Server/devel/perl-Net-Server.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-Net-Server.spec 26 Feb 2009 23:28:59 -0000 1.23 +++ perl-Net-Server.spec 26 Jul 2009 13:47:22 -0000 1.24 @@ -2,7 +2,7 @@ Name: perl-%{cpanname} Version: 0.97 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extensible, general Perl server engine Group: Development/Libraries @@ -69,6 +69,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.97-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.97-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:47:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:47:38 +0000 (UTC) Subject: rpms/perl-Net-Stomp/devel perl-Net-Stomp.spec,1.2,1.3 Message-ID: <20090726134738.DDD5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Stomp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13597 Modified Files: perl-Net-Stomp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Stomp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Stomp/devel/perl-Net-Stomp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Net-Stomp.spec 26 Feb 2009 23:29:57 -0000 1.2 +++ perl-Net-Stomp.spec 26 Jul 2009 13:47:38 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Net-Stomp Version: 0.34 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Stomp client module for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.34-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.34-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:47:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:47:52 +0000 (UTC) Subject: rpms/perl-Net-Telnet/devel perl-Net-Telnet.spec,1.12,1.13 Message-ID: <20090726134752.63A0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Telnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13750 Modified Files: perl-Net-Telnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-Telnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Telnet/devel/perl-Net-Telnet.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Net-Telnet.spec 26 Feb 2009 23:30:53 -0000 1.12 +++ perl-Net-Telnet.spec 26 Jul 2009 13:47:52 -0000 1.13 @@ -1,7 +1,7 @@ Name: perl-Net-Telnet Summary: Net-Telnet Perl module Version: 3.03 -Release: 8%{?alphatag:.%{alphatag}}%{?dist} +Release: 9%{?alphatag:.%{alphatag}}%{?dist} Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Net-Telnet/ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:48:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:48:05 +0000 (UTC) Subject: rpms/perl-Net-UPnP/devel perl-Net-UPnP.spec,1.1,1.2 Message-ID: <20090726134805.C0AAE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-UPnP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13930 Modified Files: perl-Net-UPnP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-UPnP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-UPnP/devel/perl-Net-UPnP.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Net-UPnP.spec 18 Apr 2009 07:25:31 -0000 1.1 +++ perl-Net-UPnP.spec 26 Jul 2009 13:48:05 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Net-UPnP Version: 1.41 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for UPnP License: BSD Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.41-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Jussi Lehtola - 1.41-3 - Review fixes. From sgrubb at fedoraproject.org Sun Jul 26 13:48:10 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Sun, 26 Jul 2009 13:48:10 +0000 (UTC) Subject: rpms/libcap-ng/devel .cvsignore, 1.6, 1.7 libcap-ng.spec, 1.10, 1.11 sources, 1.6, 1.7 Message-ID: <20090726134810.320E811C00CE@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/libcap-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13985 Modified Files: .cvsignore libcap-ng.spec sources Log Message: * Sun Jul 26 2009 Steve Grubb 0.6.1-1 - New upstream release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libcap-ng/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 29 Jun 2009 17:43:40 -0000 1.6 +++ .cvsignore 26 Jul 2009 13:48:10 -0000 1.7 @@ -3,3 +3,4 @@ libcap-ng-0.4.2.tar.gz libcap-ng-0.5.tar.gz libcap-ng-0.5.1.tar.gz libcap-ng-0.6.tar.gz +libcap-ng-0.6.1.tar.gz Index: libcap-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcap-ng/devel/libcap-ng.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libcap-ng.spec 25 Jul 2009 05:24:15 -0000 1.10 +++ libcap-ng.spec 26 Jul 2009 13:48:10 -0000 1.11 @@ -2,8 +2,8 @@ Summary: An alternate posix capabilities library Name: libcap-ng -Version: 0.6 -Release: 2%{?dist} +Version: 0.6.1 +Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://people.redhat.com/sgrubb/libcap-ng @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Steve Grubb 0.6.1-1 +- New upstream release + * Fri Jul 24 2009 Fedora Release Engineering - 0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libcap-ng/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 29 Jun 2009 17:43:40 -0000 1.6 +++ sources 26 Jul 2009 13:48:10 -0000 1.7 @@ -1 +1 @@ -09adb3049eb6c2a1f621a67fc079318e libcap-ng-0.6.tar.gz +5b96878df29d123d461c3296f46aa49e libcap-ng-0.6.1.tar.gz From jkeating at fedoraproject.org Sun Jul 26 13:48:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:48:19 +0000 (UTC) Subject: rpms/perl-Net-XMPP/devel perl-Net-XMPP.spec,1.9,1.10 Message-ID: <20090726134819.A182611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-XMPP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14162 Modified Files: perl-Net-XMPP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-XMPP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-XMPP/devel/perl-Net-XMPP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Net-XMPP.spec 26 Feb 2009 23:31:44 -0000 1.9 +++ perl-Net-XMPP.spec 26 Jul 2009 13:48:19 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Net-XMPP Version: 1.02 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Net::XMPP - perl XMPP library Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:48:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:48:35 +0000 (UTC) Subject: rpms/perl-Net-eBay/devel perl-Net-eBay.spec,1.7,1.8 Message-ID: <20090726134835.8C4FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-eBay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14354 Modified Files: perl-Net-eBay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-eBay.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-eBay/devel/perl-Net-eBay.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Net-eBay.spec 22 Feb 2009 23:33:40 -0000 1.7 +++ perl-Net-eBay.spec 26 Jul 2009 13:48:35 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Net-eBay Version: 0.52 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl Interface to XML based eBay API @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.52-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 22 2009 Xavier Bachelot - 0.52-1 - Update to 0.52. From jkeating at fedoraproject.org Sun Jul 26 13:48:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:48:54 +0000 (UTC) Subject: rpms/perl-NetAddr-IP/devel perl-NetAddr-IP.spec,1.7,1.8 Message-ID: <20090726134854.4214E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-NetAddr-IP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14570 Modified Files: perl-NetAddr-IP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-NetAddr-IP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-NetAddr-IP/devel/perl-NetAddr-IP.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-NetAddr-IP.spec 26 Feb 2009 23:32:36 -0000 1.7 +++ perl-NetAddr-IP.spec 26 Jul 2009 13:48:53 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-NetAddr-IP Version: 4.007 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Manages IPv4 and IPv6 addresses and subnets # Upstream explicitly gave permission for us to distribute under Artistic 2.0 # Will be reflected in next release. @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.007-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.007-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:49:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:49:11 +0000 (UTC) Subject: rpms/perl-Network-IPv4Addr/devel perl-Network-IPv4Addr.spec, 1.3, 1.4 Message-ID: <20090726134911.12F1F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Network-IPv4Addr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14785 Modified Files: perl-Network-IPv4Addr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Network-IPv4Addr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Network-IPv4Addr/devel/perl-Network-IPv4Addr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Network-IPv4Addr.spec 26 Feb 2009 23:33:26 -0000 1.3 +++ perl-Network-IPv4Addr.spec 26 Jul 2009 13:49:10 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Network-IPv4Addr Perl module Name: perl-Network-IPv4Addr Version: 0.05 -Release: 14%{?dist} +Release: 15%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Network-IPv4Addr/ @@ -49,6 +49,9 @@ make test %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:49:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:49:26 +0000 (UTC) Subject: rpms/perl-Newt/devel perl-Newt.spec,1.9,1.10 Message-ID: <20090726134926.E2A9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Newt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14982 Modified Files: perl-Newt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Newt.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Newt/devel/perl-Newt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Newt.spec 28 May 2009 15:30:17 -0000 1.9 +++ perl-Newt.spec 26 Jul 2009 13:49:26 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Perl bindings for the Newt library Name: perl-Newt Version: 1.08 -Release: 23%{?dist} +Release: 24%{?dist} Group: System Environment/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot URL: http://search.cpan.org/~amedina/Newt-1.08/ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Newt* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Joe Orton 1.08-23 - add fixes from Joe Ogulin (#489825) From jkeating at fedoraproject.org Sun Jul 26 13:49:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:49:44 +0000 (UTC) Subject: rpms/perl-Nmap-Parser/devel perl-Nmap-Parser.spec,1.8,1.9 Message-ID: <20090726134944.EFD7B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Nmap-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15160 Modified Files: perl-Nmap-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Nmap-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Nmap-Parser/devel/perl-Nmap-Parser.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Nmap-Parser.spec 3 Mar 2009 15:48:05 -0000 1.8 +++ perl-Nmap-Parser.spec 26 Jul 2009 13:49:44 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Nmap-Parser Version: 1.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse nmap scan data with perl Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 04 2009 Sindre Pedersen Bj?rdal - New upstream release - Fix typo in manual install From jkeating at fedoraproject.org Sun Jul 26 13:50:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:50:01 +0000 (UTC) Subject: rpms/perl-Number-Compare/devel perl-Number-Compare.spec,1.11,1.12 Message-ID: <20090726135001.30DD511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Number-Compare/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15336 Modified Files: perl-Number-Compare.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Number-Compare.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Number-Compare/devel/perl-Number-Compare.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Number-Compare.spec 26 Feb 2009 23:36:06 -0000 1.11 +++ perl-Number-Compare.spec 26 Jul 2009 13:50:00 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Number-Compare Version: 0.01 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Perl module for numeric comparisons License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:50:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:50:16 +0000 (UTC) Subject: rpms/perl-Number-Format/devel perl-Number-Format.spec,1.2,1.3 Message-ID: <20090726135016.1E92811C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Number-Format/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15540 Modified Files: perl-Number-Format.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Number-Format.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Number-Format/devel/perl-Number-Format.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Number-Format.spec 14 May 2009 03:42:29 -0000 1.2 +++ perl-Number-Format.spec 26 Jul 2009 13:50:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Number-Format Version: 1.72a -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for formatting numbers License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.72a-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Iain Arnell 1.72a-1 - update to latest upstream version From jkeating at fedoraproject.org Sun Jul 26 13:50:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:50:32 +0000 (UTC) Subject: rpms/perl-OLE-Storage_Lite/devel perl-OLE-Storage_Lite.spec, 1.13, 1.14 Message-ID: <20090726135032.E2FE211C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-OLE-Storage_Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15727 Modified Files: perl-OLE-Storage_Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-OLE-Storage_Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-OLE-Storage_Lite/devel/perl-OLE-Storage_Lite.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-OLE-Storage_Lite.spec 13 Mar 2009 22:40:19 -0000 1.13 +++ perl-OLE-Storage_Lite.spec 26 Jul 2009 13:50:32 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-OLE-Storage_Lite Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple Class for OLE document interface Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.18-1 - update to 0.18 From jkeating at fedoraproject.org Sun Jul 26 13:50:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:50:49 +0000 (UTC) Subject: rpms/perl-ORLite/devel perl-ORLite.spec,1.5,1.6 Message-ID: <20090726135049.143A711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ORLite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15929 Modified Files: perl-ORLite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ORLite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ORLite/devel/perl-ORLite.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-ORLite.spec 3 Jun 2009 12:23:18 -0000 1.5 +++ perl-ORLite.spec 26 Jul 2009 13:50:48 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-ORLite Version: 1.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extremely light weight SQLite-specific ORM License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Marcela Ma?l??ov? 1.22-1 - update to 0.22 From jkeating at fedoraproject.org Sun Jul 26 13:51:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:51:02 +0000 (UTC) Subject: rpms/perl-ORLite-Migrate/devel perl-ORLite-Migrate.spec,1.7,1.8 Message-ID: <20090726135102.B8EBB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ORLite-Migrate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16094 Modified Files: perl-ORLite-Migrate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ORLite-Migrate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ORLite-Migrate/devel/perl-ORLite-Migrate.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-ORLite-Migrate.spec 17 Jun 2009 11:17:46 -0000 1.7 +++ perl-ORLite-Migrate.spec 26 Jul 2009 13:51:02 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-ORLite-Migrate Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Light weight SQLite-specific schema migration License: GPL+ or Artistic Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Stepan Kasal 0.03-3 - clean up the requires a bit From jkeating at fedoraproject.org Sun Jul 26 13:51:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:51:21 +0000 (UTC) Subject: rpms/perl-Object-Deadly/devel perl-Object-Deadly.spec,1.3,1.4 Message-ID: <20090726135121.0144F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-Deadly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16279 Modified Files: perl-Object-Deadly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-Deadly.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-Deadly/devel/perl-Object-Deadly.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Object-Deadly.spec 26 Feb 2009 23:38:47 -0000 1.3 +++ perl-Object-Deadly.spec 26 Jul 2009 13:51:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Object-Deadly Version: 0.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module providing an object that dies whenever examined Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:51:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:51:33 +0000 (UTC) Subject: rpms/perl-Object-Event/devel perl-Object-Event.spec,1.2,1.3 Message-ID: <20090726135133.885AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-Event/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16472 Modified Files: perl-Object-Event.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-Event.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-Event/devel/perl-Object-Event.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Object-Event.spec 26 Feb 2009 23:39:40 -0000 1.2 +++ perl-Object-Event.spec 26 Jul 2009 13:51:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Object-Event Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class that provides an event callback interface License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:51:53 +0000 (UTC) Subject: rpms/perl-Object-InsideOut/devel perl-Object-InsideOut.spec, 1.12, 1.13 Message-ID: <20090726135153.6E99811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-InsideOut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16678 Modified Files: perl-Object-InsideOut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-InsideOut.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-InsideOut/devel/perl-Object-InsideOut.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Object-InsideOut.spec 19 May 2009 06:20:03 -0000 1.12 +++ perl-Object-InsideOut.spec 26 Jul 2009 13:51:52 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Object-InsideOut Version: 3.55 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Comprehensive inside-out object support module Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.55-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Chris Weyl 3.55-1 - auto-update to 3.55 (by cpan-spec-update 0.01) - added a new br on perl(ExtUtils::MakeMaker) (version 0) From jkeating at fedoraproject.org Sun Jul 26 13:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:52:07 +0000 (UTC) Subject: rpms/perl-Object-MultiType/devel perl-Object-MultiType.spec, 1.2, 1.3 Message-ID: <20090726135207.DED3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-MultiType/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16870 Modified Files: perl-Object-MultiType.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-MultiType.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-MultiType/devel/perl-Object-MultiType.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Object-MultiType.spec 26 Feb 2009 23:41:31 -0000 1.2 +++ perl-Object-MultiType.spec 26 Jul 2009 13:52:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Object-MultiType Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl Objects as Hash, Array, Scalar, Code and Glob at the same time License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:52:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:52:24 +0000 (UTC) Subject: rpms/perl-Object-Realize-Later/devel perl-Object-Realize-Later.spec, 1.6, 1.7 Message-ID: <20090726135224.BEE9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-Realize-Later/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17040 Modified Files: perl-Object-Realize-Later.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-Realize-Later.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-Realize-Later/devel/perl-Object-Realize-Later.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Object-Realize-Later.spec 26 Feb 2009 23:42:28 -0000 1.6 +++ perl-Object-Realize-Later.spec 26 Jul 2009 13:52:24 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Object-Realize-Later Version: 0.18 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Delayed creation of objects Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:52:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:52:40 +0000 (UTC) Subject: rpms/perl-Object-Signature/devel perl-Object-Signature.spec, 1.3, 1.4 Message-ID: <20090726135240.D74EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Object-Signature/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17221 Modified Files: perl-Object-Signature.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Object-Signature.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Object-Signature/devel/perl-Object-Signature.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Object-Signature.spec 26 Feb 2009 23:43:21 -0000 1.3 +++ perl-Object-Signature.spec 26 Jul 2009 13:52:40 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Object-Signature Version: 1.05 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cryptographically strong objects License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:52:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:52:56 +0000 (UTC) Subject: rpms/perl-OpenFrame/devel perl-OpenFrame.spec,1.6,1.7 Message-ID: <20090726135256.C68D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-OpenFrame/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17411 Modified Files: perl-OpenFrame.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-OpenFrame.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-OpenFrame/devel/perl-OpenFrame.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-OpenFrame.spec 26 Feb 2009 23:44:11 -0000 1.6 +++ perl-OpenFrame.spec 26 Jul 2009 13:52:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-OpenFrame Version: 3.05 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Framework for network enabled applications License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.05-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.05-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:53:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:53:13 +0000 (UTC) Subject: rpms/perl-PAR/devel perl-PAR.spec,1.4,1.5 Message-ID: <20090726135313.3AC1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PAR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17590 Modified Files: perl-PAR.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PAR.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PAR/devel/perl-PAR.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-PAR.spec 28 Apr 2009 10:43:09 -0000 1.4 +++ perl-PAR.spec 26 Jul 2009 13:53:13 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-PAR Version: 0.992 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl Archive Toolkit License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.992-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Marcela Ma?l??ov? 0.992-1 - update to the latest release From jkeating at fedoraproject.org Sun Jul 26 13:53:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:53:28 +0000 (UTC) Subject: rpms/perl-PAR-Dist/devel perl-PAR-Dist.spec,1.33,1.34 Message-ID: <20090726135328.0CC5A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PAR-Dist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17743 Modified Files: perl-PAR-Dist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PAR-Dist.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PAR-Dist/devel/perl-PAR-Dist.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- perl-PAR-Dist.spec 26 Feb 2009 23:46:01 -0000 1.33 +++ perl-PAR-Dist.spec 26 Jul 2009 13:53:27 -0000 1.34 @@ -1,6 +1,6 @@ Name: perl-PAR-Dist Version: 0.43 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Toolkit for creating and manipulating Perl PAR distributions License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.43-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.43-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:53:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:53:42 +0000 (UTC) Subject: rpms/perl-PAR-Packer/devel perl-PAR-Packer.spec,1.1,1.2 Message-ID: <20090726135342.CE74811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PAR-Packer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17923 Modified Files: perl-PAR-Packer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PAR-Packer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PAR-Packer/devel/perl-PAR-Packer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-PAR-Packer.spec 18 May 2009 06:03:16 -0000 1.1 +++ perl-PAR-Packer.spec 26 Jul 2009 13:53:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-PAR-Packer Version: 0.991 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PAR Packager License: GPL+ or Artistic Group: Development/Libraries @@ -58,5 +58,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.991-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Marcela Ma?l??ov? 0.991-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 13:53:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:53:58 +0000 (UTC) Subject: rpms/perl-PBS/devel perl-PBS.spec,1.7,1.8 Message-ID: <20090726135358.038E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PBS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18101 Modified Files: perl-PBS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PBS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PBS/devel/perl-PBS.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-PBS.spec 26 Feb 2009 23:46:53 -0000 1.7 +++ perl-PBS.spec 26 Jul 2009 13:53:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-PBS Version: 0.33 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl binding for the Portable Batch System client library Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.33-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.33-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:54:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:54:17 +0000 (UTC) Subject: rpms/perl-PDF-API2/devel perl-PDF-API2.spec,1.21,1.22 Message-ID: <20090726135417.516E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PDF-API2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18301 Modified Files: perl-PDF-API2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PDF-API2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDF-API2/devel/perl-PDF-API2.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-PDF-API2.spec 5 Jun 2009 15:17:17 -0000 1.21 +++ perl-PDF-API2.spec 26 Jul 2009 13:54:17 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-PDF-API2 Version: 0.73 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module for creation and modification of PDF files Group: System Environment/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.73-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Bernard Johnson - 0.73-1 - v 0.73-1 From jkeating at fedoraproject.org Sun Jul 26 13:54:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:54:34 +0000 (UTC) Subject: rpms/perl-PDF-Reuse/devel perl-PDF-Reuse.spec,1.1,1.2 Message-ID: <20090726135434.7E8A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PDF-Reuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18524 Modified Files: perl-PDF-Reuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PDF-Reuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDF-Reuse/devel/perl-PDF-Reuse.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-PDF-Reuse.spec 11 Jun 2009 17:12:50 -0000 1.1 +++ perl-PDF-Reuse.spec 26 Jul 2009 13:54:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-PDF-Reuse Version: 0.35 -Release: 1%{?dist} +Release: 2%{?dist} # Reuse.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.35-1 - touch-up for submission - note we use the filtering to remove an errant extra perl(PDF::Reuse) From jkeating at fedoraproject.org Sun Jul 26 13:54:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:54:59 +0000 (UTC) Subject: rpms/perl-PDL/devel perl-PDL.spec,1.51,1.52 Message-ID: <20090726135459.9FDDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18778 Modified Files: perl-PDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PDL/devel/perl-PDL.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- perl-PDL.spec 20 Jul 2009 23:25:05 -0000 1.51 +++ perl-PDL.spec 26 Jul 2009 13:54:59 -0000 1.52 @@ -2,7 +2,7 @@ Name: perl-PDL Version: 2.4.4_05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Perl Data Language Group: Development/Libraries @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.4_05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Orion Poplawski - 2.4.4_05-1 - Update to 2.4.4_05 and PDL-Graphics-PLplot-0.50 - Drop test patch, no longer needed From jkeating at fedoraproject.org Sun Jul 26 13:55:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:55:19 +0000 (UTC) Subject: rpms/perl-PHP-Serialization/devel perl-PHP-Serialization.spec, 1.2, 1.3 Message-ID: <20090726135519.A836611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PHP-Serialization/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18999 Modified Files: perl-PHP-Serialization.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PHP-Serialization.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PHP-Serialization/devel/perl-PHP-Serialization.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-PHP-Serialization.spec 26 Feb 2009 23:47:52 -0000 1.2 +++ perl-PHP-Serialization.spec 26 Jul 2009 13:55:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-PHP-Serialization Version: 0.27 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Converts between PHP's serialize() output and the equivalent Perl structure License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.27-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:55:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:55:34 +0000 (UTC) Subject: rpms/perl-POE/devel perl-POE.spec,1.16,1.17 Message-ID: <20090726135534.9B0DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19201 Modified Files: perl-POE.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE/devel/perl-POE.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-POE.spec 2 Jun 2009 07:22:53 -0000 1.16 +++ perl-POE.spec 26 Jul 2009 13:55:34 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-POE Version: 1.006 -Release: 1%{?dist} +Release: 2%{?dist} Summary: POE - portable multitasking and networking framework for Perl Group: Development/Libraries @@ -142,6 +142,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.006-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 1.006-1 - auto-update to 1.006 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 13:55:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:55:50 +0000 (UTC) Subject: rpms/perl-POE-API-Peek/devel perl-POE-API-Peek.spec,1.7,1.8 Message-ID: <20090726135550.2B46F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-API-Peek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19418 Modified Files: perl-POE-API-Peek.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-API-Peek.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-API-Peek/devel/perl-POE-API-Peek.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-POE-API-Peek.spec 26 Feb 2009 23:49:41 -0000 1.7 +++ perl-POE-API-Peek.spec 26 Jul 2009 13:55:50 -0000 1.8 @@ -11,7 +11,7 @@ Name: perl-POE-API-Peek Version: 1.0802 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Peek into the internals of a running POE environment License: BSD Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0802-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0802-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:56:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:56:05 +0000 (UTC) Subject: rpms/perl-POE-Component-Child/devel perl-POE-Component-Child.spec, 1.6, 1.7 Message-ID: <20090726135605.8A7B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Child/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19584 Modified Files: perl-POE-Component-Child.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Child.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Child/devel/perl-POE-Component-Child.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-POE-Component-Child.spec 26 Feb 2009 23:50:36 -0000 1.6 +++ perl-POE-Component-Child.spec 26 Jul 2009 13:56:05 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Child Version: 1.39 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Child management component for POE Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.39-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.39-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:56:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:56:21 +0000 (UTC) Subject: rpms/perl-POE-Component-Client-DNS/devel perl-POE-Component-Client-DNS.spec, 1.7, 1.8 Message-ID: <20090726135621.BB5DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Client-DNS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19767 Modified Files: perl-POE-Component-Client-DNS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Client-DNS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Client-DNS/devel/perl-POE-Component-Client-DNS.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-POE-Component-Client-DNS.spec 21 May 2009 05:16:24 -0000 1.7 +++ perl-POE-Component-Client-DNS.spec 26 Jul 2009 13:56:21 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Client-DNS Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Non-blocking/concurrent DNS queries using Net::DNS and POE Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 1.03-1 - auto-update to 1.03 (by cpan-spec-update 0.01) - added a new br on perl(Test::More) (version 0) From jkeating at fedoraproject.org Sun Jul 26 13:56:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:56:37 +0000 (UTC) Subject: rpms/perl-POE-Component-Client-HTTP/devel perl-POE-Component-Client-HTTP.spec, 1.14, 1.15 Message-ID: <20090726135637.8081711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Client-HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19967 Modified Files: perl-POE-Component-Client-HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Client-HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Client-HTTP/devel/perl-POE-Component-Client-HTTP.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-POE-Component-Client-HTTP.spec 21 May 2009 05:21:22 -0000 1.14 +++ perl-POE-Component-Client-HTTP.spec 26 Jul 2009 13:56:37 -0000 1.15 @@ -11,7 +11,7 @@ Name: perl-POE-Component-Client-HTTP Version: 0.88 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A non-blocking/parallel web requests engine for POE Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.88-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.88-1 - auto-update to 0.88 (by cpan-spec-update 0.01) - altered br on perl(POE::Component::Client::Keepalive) (0.0901 => 0.25) From jkeating at fedoraproject.org Sun Jul 26 13:56:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:56:52 +0000 (UTC) Subject: rpms/perl-POE-Component-Client-Keepalive/devel perl-POE-Component-Client-Keepalive.spec, 1.10, 1.11 Message-ID: <20090726135652.1232111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Client-Keepalive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20154 Modified Files: perl-POE-Component-Client-Keepalive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Client-Keepalive.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Client-Keepalive/devel/perl-POE-Component-Client-Keepalive.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-POE-Component-Client-Keepalive.spec 15 Jun 2009 14:40:42 -0000 1.10 +++ perl-POE-Component-Client-Keepalive.spec 26 Jul 2009 13:56:51 -0000 1.11 @@ -3,7 +3,7 @@ Name: perl-POE-Component-Clien # Keep four digits to stay above the unfortunate 0.0901, # so that epoch need not be changed. Version: %{real_ver}00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manages and keeps alive client connections Group: Development/Libraries @@ -82,6 +82,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2500-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Stepan Kasal 0.2500-2 - add an explicite perl(POE::Component::Client::Keepalive) = 0.25, sigh From jkeating at fedoraproject.org Sun Jul 26 13:57:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:57:05 +0000 (UTC) Subject: rpms/perl-POE-Component-Client-LDAP/devel perl-POE-Component-Client-LDAP.spec, 1.6, 1.7 Message-ID: <20090726135705.C87D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Client-LDAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20296 Modified Files: perl-POE-Component-Client-LDAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Client-LDAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Client-LDAP/devel/perl-POE-Component-Client-LDAP.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-POE-Component-Client-LDAP.spec 26 Feb 2009 23:54:06 -0000 1.6 +++ perl-POE-Component-Client-LDAP.spec 26 Jul 2009 13:57:05 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Client-LDAP Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Async LDAP access for POE Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:57:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:57:19 +0000 (UTC) Subject: rpms/perl-POE-Component-Client-SMTP/devel perl-POE-Component-Client-SMTP.spec, 1.2, 1.3 Message-ID: <20090726135719.E5F7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Client-SMTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20473 Modified Files: perl-POE-Component-Client-SMTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Client-SMTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Client-SMTP/devel/perl-POE-Component-Client-SMTP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-POE-Component-Client-SMTP.spec 26 Jun 2009 20:48:36 -0000 1.2 +++ perl-POE-Component-Client-SMTP.spec 26 Jul 2009 13:57:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Client-SMTP Version: 0.21 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Asynchronous mail sending with POE Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Yanko Kaneti - 0.21-5 - Must own everyting under %%{perl_vendorlib} From jkeating at fedoraproject.org Sun Jul 26 13:57:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:57:35 +0000 (UTC) Subject: rpms/perl-POE-Component-DBIAgent/devel perl-POE-Component-DBIAgent.spec, 1.5, 1.6 Message-ID: <20090726135735.39C7A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-DBIAgent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20659 Modified Files: perl-POE-Component-DBIAgent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-DBIAgent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-DBIAgent/devel/perl-POE-Component-DBIAgent.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-POE-Component-DBIAgent.spec 26 Feb 2009 23:54:59 -0000 1.5 +++ perl-POE-Component-DBIAgent.spec 26 Jul 2009 13:57:35 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-POE-Component-DBIAgent Version: 0.26 -Release: 4%{?dist} +Release: 5%{?dist} Summary: POE Component for running asynchronous DBI calls # see tail of DBIAgent.pm License: GPL+ or Artistic @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:57:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:57:48 +0000 (UTC) Subject: rpms/perl-POE-Component-IRC/devel perl-POE-Component-IRC.spec, 1.22, 1.23 Message-ID: <20090726135748.8C35D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-IRC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20820 Modified Files: perl-POE-Component-IRC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-IRC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-IRC/devel/perl-POE-Component-IRC.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-POE-Component-IRC.spec 21 May 2009 05:25:51 -0000 1.22 +++ perl-POE-Component-IRC.spec 26 Jul 2009 13:57:48 -0000 1.23 @@ -11,7 +11,7 @@ Name: perl-POE-Component-IRC Version: 6.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A POE component for building IRC clients Group: Development/Libraries @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 6.06-1 - auto-update to 6.06 (by cpan-spec-update 0.01) - added a new br on perl(Encode) (version 0) From jkeating at fedoraproject.org Sun Jul 26 13:58:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:58:02 +0000 (UTC) Subject: rpms/perl-POE-Component-JobQueue/devel perl-POE-Component-JobQueue.spec, 1.6, 1.7 Message-ID: <20090726135802.A0EC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-JobQueue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21006 Modified Files: perl-POE-Component-JobQueue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-JobQueue.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-JobQueue/devel/perl-POE-Component-JobQueue.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-POE-Component-JobQueue.spec 26 Feb 2009 23:56:46 -0000 1.6 +++ perl-POE-Component-JobQueue.spec 26 Jul 2009 13:58:02 -0000 1.7 @@ -4,7 +4,7 @@ Name: perl-POE-Component-JobQueue Version: %{rpmver} -Release: 4%{?dist} +Release: 5%{?dist} Summary: Process a large number of tasks with a finite number of workers @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5500-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5500-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:58:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:58:19 +0000 (UTC) Subject: rpms/perl-POE-Component-Log4perl/devel perl-POE-Component-Log4perl.spec, 1.2, 1.3 Message-ID: <20090726135819.D9F2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Log4perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21202 Modified Files: perl-POE-Component-Log4perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Log4perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Log4perl/devel/perl-POE-Component-Log4perl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-POE-Component-Log4perl.spec 26 Jun 2009 20:57:32 -0000 1.2 +++ perl-POE-Component-Log4perl.spec 26 Jul 2009 13:58:19 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Log4perl Version: 0.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Logging extension for the POE environment Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Yanko Kaneti - 0.02-4 - Must own everything under %%{perl_vendorlib} From jkeating at fedoraproject.org Sun Jul 26 13:58:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:58:36 +0000 (UTC) Subject: rpms/perl-POE-Component-Logger/devel perl-POE-Component-Logger.spec, 1.5, 1.6 Message-ID: <20090726135836.CADF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Logger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21362 Modified Files: perl-POE-Component-Logger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Logger.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Logger/devel/perl-POE-Component-Logger.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-POE-Component-Logger.spec 26 Feb 2009 23:57:37 -0000 1.5 +++ perl-POE-Component-Logger.spec 26 Jul 2009 13:58:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Logger Version: 1.00 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A POE logging class Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.00-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:58:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:58:55 +0000 (UTC) Subject: rpms/perl-POE-Component-SNMP/devel perl-POE-Component-SNMP.spec, 1.9, 1.10 Message-ID: <20090726135855.6977611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-SNMP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21607 Modified Files: perl-POE-Component-SNMP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-SNMP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-SNMP/devel/perl-POE-Component-SNMP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-POE-Component-SNMP.spec 22 Mar 2009 18:45:33 -0000 1.9 +++ perl-POE-Component-SNMP.spec 26 Jul 2009 13:58:54 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-POE-Component-SNMP Version: 1.1001 -Release: 1%{?dist} +Release: 2%{?dist} Summary: POE interface to Net::SNMP Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Robert Scheck 1.1001-1 - Upgrade to 1.1001 From jkeating at fedoraproject.org Sun Jul 26 13:59:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:59:12 +0000 (UTC) Subject: rpms/perl-POE-Component-SSLify/devel perl-POE-Component-SSLify.spec, 1.11, 1.12 Message-ID: <20090726135912.EB64911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-SSLify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21830 Modified Files: perl-POE-Component-SSLify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-SSLify.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-SSLify/devel/perl-POE-Component-SSLify.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-POE-Component-SSLify.spec 21 May 2009 05:51:51 -0000 1.11 +++ perl-POE-Component-SSLify.spec 26 Jul 2009 13:59:12 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-POE-Component-SSLify Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Makes using SSL in the world of POE easy! License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.15-1 - auto-update to 0.15 (by cpan-spec-update 0.01) - altered br on perl(Net::SSLeay) (1.17 => 1.30) From jkeating at fedoraproject.org Sun Jul 26 13:59:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:59:34 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-Bayeux/devel perl-POE-Component-Server-Bayeux.spec, 1.1, 1.2 Message-ID: <20090726135934.26E3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22054 Modified Files: perl-POE-Component-Server-Bayeux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Server-Bayeux.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-Bayeux/devel/perl-POE-Component-Server-Bayeux.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-POE-Component-Server-Bayeux.spec 1 Jul 2009 05:12:41 -0000 1.1 +++ perl-POE-Component-Server-Bayeux.spec 26 Jul 2009 13:59:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Server-Bayeux Version: 0.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bayeux/cometd server implementation in POE License: GPL+ or Artistic Group: Development/Libraries @@ -63,5 +63,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Yanko Kaneti 0.02-1 - Specfile autogenerated by cpanspec 1.78. Requires tuning. From jkeating at fedoraproject.org Sun Jul 26 13:59:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:59:49 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-HTTP/devel perl-POE-Component-Server-HTTP.spec, 1.6, 1.7 Message-ID: <20090726135949.05FA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Server-HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22246 Modified Files: perl-POE-Component-Server-HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Server-HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-HTTP/devel/perl-POE-Component-Server-HTTP.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-POE-Component-Server-HTTP.spec 27 Feb 2009 00:00:11 -0000 1.6 +++ perl-POE-Component-Server-HTTP.spec 26 Jul 2009 13:59:48 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Server-HTTP Version: 0.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Foundation of a POE HTTP Daemon License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:00:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:00:04 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-SOAP/devel perl-POE-Component-Server-SOAP.spec, 1.10, 1.11 Message-ID: <20090726140004.B4ADB11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Server-SOAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22426 Modified Files: perl-POE-Component-Server-SOAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Server-SOAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-SOAP/devel/perl-POE-Component-Server-SOAP.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-POE-Component-Server-SOAP.spec 21 May 2009 05:54:21 -0000 1.10 +++ perl-POE-Component-Server-SOAP.spec 26 Jul 2009 14:00:04 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Server-SOAP Version: 1.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Publish POE event handlers via SOAP over HTTP License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 1.14-1 - auto-update to 1.14 (by cpan-spec-update 0.01) - added a new br on perl(POE::Session) (version 0) From jkeating at fedoraproject.org Sun Jul 26 14:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:00:22 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-SimpleHTTP/devel perl-POE-Component-Server-SimpleHTTP.spec, 1.10, 1.11 Message-ID: <20090726140022.9A33411C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Server-SimpleHTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22658 Modified Files: perl-POE-Component-Server-SimpleHTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Server-SimpleHTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-SimpleHTTP/devel/perl-POE-Component-Server-SimpleHTTP.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-POE-Component-Server-SimpleHTTP.spec 2 Jun 2009 07:25:42 -0000 1.10 +++ perl-POE-Component-Server-SimpleHTTP.spec 26 Jul 2009 14:00:22 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Server-SimpleHTTP Version: 1.58 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Serve HTTP requests in POE License: GPL+ or Artistic Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.58-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 1.58-1 - auto-update to 1.58 (by cpan-spec-update 0.01) - added a new br on perl(Storable) (version 0) From jkeating at fedoraproject.org Sun Jul 26 13:38:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:38:58 +0000 (UTC) Subject: rpms/perl-Net-CUPS/devel perl-Net-CUPS.spec,1.12,1.13 Message-ID: <20090726133858.6887611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-CUPS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7392 Modified Files: perl-Net-CUPS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-CUPS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-CUPS/devel/perl-Net-CUPS.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Net-CUPS.spec 26 Feb 2009 22:59:42 -0000 1.12 +++ perl-Net-CUPS.spec 26 Jul 2009 13:38:58 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Net-CUPS Version: 0.59 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl bindings to the CUPS C API Interface License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.59-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.59-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 13:38:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 13:38:44 +0000 (UTC) Subject: rpms/perl-Net-CIDR-Lite/devel perl-Net-CIDR-Lite.spec,1.8,1.9 Message-ID: <20090726133844.D669A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-CIDR-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7175 Modified Files: perl-Net-CIDR-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Net-CIDR-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-CIDR-Lite/devel/perl-Net-CIDR-Lite.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Net-CIDR-Lite.spec 26 Feb 2009 22:58:39 -0000 1.8 +++ perl-Net-CIDR-Lite.spec 26 Jul 2009 13:38:44 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Net-CIDR-Lite Version: 0.20 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Net::CIDR::Lite Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:00:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:00:38 +0000 (UTC) Subject: rpms/perl-POE-Component-Server-XMLRPC/devel perl-POE-Component-Server-XMLRPC.spec, 1.5, 1.6 Message-ID: <20090726140038.DCFBD11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-Server-XMLRPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22827 Modified Files: perl-POE-Component-Server-XMLRPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-Server-XMLRPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-Server-XMLRPC/devel/perl-POE-Component-Server-XMLRPC.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-POE-Component-Server-XMLRPC.spec 27 Feb 2009 00:02:47 -0000 1.5 +++ perl-POE-Component-Server-XMLRPC.spec 26 Jul 2009 14:00:38 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-POE-Component-Server-XMLRPC Version: 0.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Publish POE event handlers via XMLRPC over HTTP License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:00:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:00:55 +0000 (UTC) Subject: rpms/perl-POE-Component-SimpleDBI/devel perl-POE-Component-SimpleDBI.spec, 1.9, 1.10 Message-ID: <20090726140055.6EAF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-SimpleDBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23028 Modified Files: perl-POE-Component-SimpleDBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-SimpleDBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-SimpleDBI/devel/perl-POE-Component-SimpleDBI.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-POE-Component-SimpleDBI.spec 21 May 2009 05:47:42 -0000 1.9 +++ perl-POE-Component-SimpleDBI.spec 26 Jul 2009 14:00:55 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-POE-Component-SimpleDBI Version: 1.27 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Asynchronous non-blocking DBI calls in POE made simple License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 1.27-1 - auto-update to 1.27 (by cpan-spec-update 0.01) - added a new br on perl(POE::Filter::Reference) (version 0) From jkeating at fedoraproject.org Sun Jul 26 14:01:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:01:15 +0000 (UTC) Subject: rpms/perl-POE-Component-SimpleLog/devel perl-POE-Component-SimpleLog.spec, 1.8, 1.9 Message-ID: <20090726140115.1C15A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Component-SimpleLog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23223 Modified Files: perl-POE-Component-SimpleLog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Component-SimpleLog.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Component-SimpleLog/devel/perl-POE-Component-SimpleLog.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-POE-Component-SimpleLog.spec 27 Feb 2009 00:04:38 -0000 1.8 +++ perl-POE-Component-SimpleLog.spec 26 Jul 2009 14:01:14 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-POE-Component-SimpleLog Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple logging system for POE Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:01:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:01:31 +0000 (UTC) Subject: rpms/perl-POE-Filter-IRCD/devel perl-POE-Filter-IRCD.spec, 1.11, 1.12 Message-ID: <20090726140131.0529F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Filter-IRCD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23434 Modified Files: perl-POE-Filter-IRCD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Filter-IRCD.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Filter-IRCD/devel/perl-POE-Filter-IRCD.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-POE-Filter-IRCD.spec 21 May 2009 05:49:59 -0000 1.11 +++ perl-POE-Filter-IRCD.spec 26 Jul 2009 14:01:30 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-POE-Filter-IRCD Version: 2.40 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A POE-based parser for the IRC protocol Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 2.40-1 - auto-update to 2.40 (by cpan-spec-update 0.01) - added a new br on perl(ExtUtils::MakeMaker) (version 6.42) From jkeating at fedoraproject.org Sun Jul 26 14:01:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:01:46 +0000 (UTC) Subject: rpms/perl-POE-Filter-Transparent-SMTP/devel perl-POE-Filter-Transparent-SMTP.spec, 1.2, 1.3 Message-ID: <20090726140146.4C98A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Filter-Transparent-SMTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23589 Modified Files: perl-POE-Filter-Transparent-SMTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Filter-Transparent-SMTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Filter-Transparent-SMTP/devel/perl-POE-Filter-Transparent-SMTP.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-POE-Filter-Transparent-SMTP.spec 26 Jun 2009 21:00:57 -0000 1.2 +++ perl-POE-Filter-Transparent-SMTP.spec 26 Jul 2009 14:01:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-POE-Filter-Transparent-SMTP Version: 0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A POE filter for SMTP # note license definition in Makefile.PL @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Yanko Kaneti - 0.2-4 - Must own everything under %%{perl_vendorlib} From jkeating at fedoraproject.org Sun Jul 26 14:02:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:02:01 +0000 (UTC) Subject: rpms/perl-POE-Filter-Zlib/devel perl-POE-Filter-Zlib.spec, 1.10, 1.11 Message-ID: <20090726140201.3328011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Filter-Zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23750 Modified Files: perl-POE-Filter-Zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Filter-Zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Filter-Zlib/devel/perl-POE-Filter-Zlib.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-POE-Filter-Zlib.spec 7 Jun 2009 22:44:38 -0000 1.10 +++ perl-POE-Filter-Zlib.spec 26 Jul 2009 14:02:01 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-POE-Filter-Zlib Version: 2.02 -Release: 1%{?dist} +Release: 2%{?dist} Summary: POE filter wrapped around Compress::Zlib # note license definition in Makefile.PL @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.02-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Chris Weyl 2.02-1 - auto-update to 2.02 (by cpan-spec-update 0.01) - added a new br on perl(ExtUtils::MakeMaker) (version 6.42) From jkeating at fedoraproject.org Sun Jul 26 14:02:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:02:21 +0000 (UTC) Subject: rpms/perl-POE-Test-Loops/devel perl-POE-Test-Loops.spec,1.1,1.2 Message-ID: <20090726140221.6874A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Test-Loops/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23939 Modified Files: perl-POE-Test-Loops.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Test-Loops.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Test-Loops/devel/perl-POE-Test-Loops.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-POE-Test-Loops.spec 12 Apr 2009 18:52:54 -0000 1.1 +++ perl-POE-Test-Loops.spec 26 Jul 2009 14:02:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-POE-Test-Loops Version: 1.005 -Release: 1%{?dist} +Release: 2%{?dist} # META.yml, bin/poe-gen-tests -> perl License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man1/poe-gen-tests.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.005-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Chris Weyl 1.005-1 - update for submission From jkeating at fedoraproject.org Sun Jul 26 14:02:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:02:38 +0000 (UTC) Subject: rpms/perl-POE-Wheel-Null/devel perl-POE-Wheel-Null.spec,1.6,1.7 Message-ID: <20090726140238.417BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-POE-Wheel-Null/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24141 Modified Files: perl-POE-Wheel-Null.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-POE-Wheel-Null.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-POE-Wheel-Null/devel/perl-POE-Wheel-Null.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-POE-Wheel-Null.spec 27 Feb 2009 00:07:16 -0000 1.6 +++ perl-POE-Wheel-Null.spec 26 Jul 2009 14:02:38 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-POE-Wheel-Null Version: 0.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: POE Wheel that does puts data nowhere, and sends nothing Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:02:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:02:53 +0000 (UTC) Subject: rpms/perl-PPI/devel perl-PPI.spec,1.13,1.14 Message-ID: <20090726140253.E967211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24307 Modified Files: perl-PPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PPI/devel/perl-PPI.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-PPI.spec 27 Feb 2009 00:08:06 -0000 1.13 +++ perl-PPI.spec 26 Jul 2009 14:02:53 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-PPI Version: 1.203 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse, Analyze and Manipulate Perl Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.203-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.203-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:03:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:03:10 +0000 (UTC) Subject: rpms/perl-PPI-HTML/devel perl-PPI-HTML.spec,1.5,1.6 Message-ID: <20090726140310.2698211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PPI-HTML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24702 Modified Files: perl-PPI-HTML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PPI-HTML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PPI-HTML/devel/perl-PPI-HTML.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-PPI-HTML.spec 27 Feb 2009 00:08:55 -0000 1.5 +++ perl-PPI-HTML.spec 26 Jul 2009 14:03:09 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-PPI-HTML Version: 1.07 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Generate syntax-hightlighted HTML for Perl using PPI Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.07-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:03:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:03:26 +0000 (UTC) Subject: rpms/perl-PPI-Tester/devel perl-PPI-Tester.spec,1.5,1.6 Message-ID: <20090726140326.B968E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PPI-Tester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25170 Modified Files: perl-PPI-Tester.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PPI-Tester.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PPI-Tester/devel/perl-PPI-Tester.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-PPI-Tester.spec 27 Feb 2009 00:09:44 -0000 1.5 +++ perl-PPI-Tester.spec 26 Jul 2009 14:03:26 -0000 1.6 @@ -6,7 +6,7 @@ Name: perl-PPI-Tester Version: 0.06 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A wxPerl-based interactive PPI debugger/tester Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:03:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:03:42 +0000 (UTC) Subject: rpms/perl-Package-Generator/devel perl-Package-Generator.spec, 1.5, 1.6 Message-ID: <20090726140342.8C7F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Package-Generator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25544 Modified Files: perl-Package-Generator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Package-Generator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Package-Generator/devel/perl-Package-Generator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Package-Generator.spec 27 Feb 2009 00:10:38 -0000 1.5 +++ perl-Package-Generator.spec 26 Jul 2009 14:03:42 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Package-Generator Version: 0.102 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generate new packages quickly and easily License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.102-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.102-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:03:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:03:58 +0000 (UTC) Subject: rpms/perl-PadWalker/devel perl-PadWalker.spec,1.13,1.14 Message-ID: <20090726140358.2464711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PadWalker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25708 Modified Files: perl-PadWalker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PadWalker.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PadWalker/devel/perl-PadWalker.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-PadWalker.spec 27 Feb 2009 00:11:30 -0000 1.13 +++ perl-PadWalker.spec 26 Jul 2009 14:03:57 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-PadWalker Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Play with other peoples' lexical variables License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:04:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:04:13 +0000 (UTC) Subject: rpms/perl-Padre/devel perl-Padre.spec,1.8,1.9 Message-ID: <20090726140413.65A7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Padre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25866 Modified Files: perl-Padre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Padre.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Padre/devel/perl-Padre.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Padre.spec 31 Mar 2009 09:37:23 -0000 1.8 +++ perl-Padre.spec 26 Jul 2009 14:04:13 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Padre Version: 0.32 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl Application Development and Refactoring Environment License: GPL+ or Artistic Group: Development/Libraries @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Marcela Ma?l??ov? 0.32-1 - 492937 perl-Wx-Perl-Dialog became part of Padre - update to the latest version From jkeating at fedoraproject.org Sun Jul 26 14:04:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:04:32 +0000 (UTC) Subject: rpms/perl-Panotools-Script/devel perl-Panotools-Script.spec, 1.4, 1.5 Message-ID: <20090726140432.1C0EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Panotools-Script/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26089 Modified Files: perl-Panotools-Script.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Panotools-Script.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Panotools-Script/devel/perl-Panotools-Script.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Panotools-Script.spec 24 May 2009 23:03:20 -0000 1.4 +++ perl-Panotools-Script.spec 26 Jul 2009 14:04:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Panotools-Script Version: 0.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library for manipulating hugin .pto files License: GPLv2+ Group: Development/Libraries @@ -69,6 +69,9 @@ update-desktop-database &> /dev/null ||: %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Bruno Postle 0.22-1 - New upstream version From jkeating at fedoraproject.org Sun Jul 26 14:04:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:04:53 +0000 (UTC) Subject: rpms/perl-Parallel-ForkManager/devel perl-Parallel-ForkManager.spec, 1.3, 1.4 Message-ID: <20090726140453.BDA1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parallel-ForkManager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26296 Modified Files: perl-Parallel-ForkManager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parallel-ForkManager.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parallel-ForkManager/devel/perl-Parallel-ForkManager.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Parallel-ForkManager.spec 27 Feb 2009 00:14:00 -0000 1.3 +++ perl-Parallel-ForkManager.spec 26 Jul 2009 14:04:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Parallel-ForkManager Version: 0.7.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple parallel processing fork manager License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:05:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:05:12 +0000 (UTC) Subject: rpms/perl-Params-CallbackRequest/devel perl-Params-CallbackRequest.spec, 1.5, 1.6 Message-ID: <20090726140512.4B6AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Params-CallbackRequest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26520 Modified Files: perl-Params-CallbackRequest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Params-CallbackRequest.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Params-CallbackRequest/devel/perl-Params-CallbackRequest.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Params-CallbackRequest.spec 27 Feb 2009 00:14:49 -0000 1.5 +++ perl-Params-CallbackRequest.spec 26 Jul 2009 14:05:12 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Params-CallbackRequest Version: 1.19 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Functional and object-oriented callback architecture License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:05:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:05:31 +0000 (UTC) Subject: rpms/perl-Params-Coerce/devel perl-Params-Coerce.spec,1.5,1.6 Message-ID: <20090726140531.8FE6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Params-Coerce/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26732 Modified Files: perl-Params-Coerce.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Params-Coerce.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Params-Coerce/devel/perl-Params-Coerce.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Params-Coerce.spec 27 Feb 2009 00:15:41 -0000 1.5 +++ perl-Params-Coerce.spec 26 Jul 2009 14:05:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Params-Coerce Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Allows your classes to do coercion of parameters License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:06:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:06:04 +0000 (UTC) Subject: rpms/perl-Params-Util/devel perl-Params-Util.spec,1.38,1.39 Message-ID: <20090726140604.57B9B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Params-Util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26994 Modified Files: perl-Params-Util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Params-Util.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Params-Util/devel/perl-Params-Util.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- perl-Params-Util.spec 17 Jun 2009 12:23:56 -0000 1.38 +++ perl-Params-Util.spec 26 Jul 2009 14:06:04 -0000 1.39 @@ -1,6 +1,6 @@ Name: perl-Params-Util Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple standalone param-checking functions License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Ralf Cors?pius - 1.00-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 14:06:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:06:29 +0000 (UTC) Subject: rpms/perl-Params-Validate/devel perl-Params-Validate.spec, 1.22, 1.23 Message-ID: <20090726140629.BC32E11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Params-Validate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27208 Modified Files: perl-Params-Validate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Params-Validate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Params-Validate/devel/perl-Params-Validate.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-Params-Validate.spec 27 Feb 2009 00:17:32 -0000 1.22 +++ perl-Params-Validate.spec 26 Jul 2009 14:06:29 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Params-Validate Perl module Name: perl-Params-Validate Version: 0.91 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Params-Validate/ @@ -67,6 +67,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.91-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 14:06:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 14:06:52 +0000 (UTC) Subject: rpms/perl-Parse-BACKPAN-Packages/devel perl-Parse-BACKPAN-Packages.spec, 1.1, 1.2 Message-ID: <20090726140652.9502D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-BACKPAN-Packages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27435 Modified Files: perl-Parse-BACKPAN-Packages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parse-BACKPAN-Packages.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-BACKPAN-Packages/devel/perl-Parse-BACKPAN-Packages.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Parse-BACKPAN-Packages.spec 9 Mar 2009 17:01:57 -0000 1.1 +++ perl-Parse-BACKPAN-Packages.spec 26 Jul 2009 14:06:52 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Parse-BACKPAN-Packages Version: 0.34 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Parse/BACKPAN/Packages.pm -> GPL+ or Artistic # lib/Parse/BACKPAN/Packages/Distribution.pm -> GPL+ or Artistic # lib/Parse/BACKPAN/Packages/File.pm -> GPL+ or Artistic @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Chris Weyl 0.34-1 - submission - conditionalize tests; they require network access From scop at fedoraproject.org Sun Jul 26 14:49:41 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Sun, 26 Jul 2009 14:49:41 +0000 (UTC) Subject: rpms/vdr/devel vdr-1.6.0-epgsearch-exttimeredit-0.0.2.diff, NONE, 1.1 vdr-1.6.0-kernel-2.6.29.diff, NONE, 1.1 vdr.spec, 1.47, 1.48 vdr-1.6.0-remove-dvb-abi-check.patch, 1.1, NONE Message-ID: <20090726144941.5488511C00CE@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/vdr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14690 Modified Files: vdr.spec Added Files: vdr-1.6.0-epgsearch-exttimeredit-0.0.2.diff vdr-1.6.0-kernel-2.6.29.diff Removed Files: vdr-1.6.0-remove-dvb-abi-check.patch Log Message: * Sun Jul 26 2009 Ville Skytt? - 1.6.0-26 - Provide ISA qualified vdr(abi). Plugins should depend on (versioned) vdr(abi)%{?_isa} instead of just vdr(abi). - Borrow build patch for recent (broken? #483644) DVB headers from openSUSE. - Apply epgsearch timer integration patch. - Use %global instead of %define. vdr-1.6.0-epgsearch-exttimeredit-0.0.2.diff: menu.c | 56 ++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 42 insertions(+), 14 deletions(-) --- NEW FILE vdr-1.6.0-epgsearch-exttimeredit-0.0.2.diff --- diff -up vdr-1.6.0/menu.c~ vdr-1.6.0/menu.c --- vdr-1.6.0/menu.c~ 2009-07-25 23:38:59.000000000 +0300 +++ vdr-1.6.0/menu.c 2009-07-25 23:43:54.000000000 +0300 @@ -811,6 +811,7 @@ class cMenuTimerItem : public cOsdItem { private: cTimer *timer; char diskStatus; + void DoSet(void); public: cMenuTimerItem(cTimer *Timer); void SetDiskStatus(char DiskStatus); @@ -823,7 +824,7 @@ cMenuTimerItem::cMenuTimerItem(cTimer *T { timer = Timer; diskStatus = ' '; - Set(); + DoSet(); } int cMenuTimerItem::Compare(const cListObject &ListObject) const @@ -833,6 +834,18 @@ int cMenuTimerItem::Compare(const cListO void cMenuTimerItem::Set(void) { + // check for deleted timer + for (cTimer *t = Timers.First(); ; t = Timers.Next(t)) { + if (t == timer) + break; // timer still there + if (t == NULL) + return; // no matching timer found + } + DoSet(); +} + +void cMenuTimerItem::DoSet(void) +{ cString day, name(""); if (timer->WeekDays()) day = timer->PrintDay(0, timer->WeekDays(), false); @@ -920,8 +933,7 @@ void cTimerEntry::SetDiskStatus(char Dis class cMenuTimers : public cOsdMenu { private: int helpKeys; - eOSState Edit(void); - eOSState New(void); + eOSState Edit(bool New = false); eOSState Delete(void); eOSState OnOff(void); eOSState Info(void); @@ -998,19 +1010,30 @@ eOSState cMenuTimers::OnOff(void) return osContinue; } -eOSState cMenuTimers::Edit(void) +eOSState cMenuTimers::Edit(bool New) { - if (HasSubMenu() || Count() == 0) + if (HasSubMenu() || (Count() == 0 && !New)) return osContinue; - isyslog("editing timer %s", *CurrentTimer()->ToDescr()); - return AddSubMenu(new cMenuEditTimer(CurrentTimer())); -} + if (!New) + isyslog("editing timer %s", *CurrentTimer()->ToDescr()); -eOSState cMenuTimers::New(void) -{ - if (HasSubMenu()) - return osContinue; - return AddSubMenu(new cMenuEditTimer(new cTimer, true)); + // Data structure for service "Epgsearch-exttimeredit-v1.0" + struct Epgsearch_exttimeredit_v1_0 + { + // in + cTimer* timer; // pointer to the timer to edit + bool bNew; // flag that indicates, if this is a new timer or an existing one + const cEvent* event; // pointer to the event corresponding to this timer (may be NULL) + // out + cOsdMenu* pTimerMenu; // pointer to the menu of results + } exttimeredit; + exttimeredit.timer = New ? (new cTimer) : CurrentTimer(); + exttimeredit.bNew = New; + exttimeredit.event = exttimeredit.timer->Event(); + if (cPluginManager::CallFirstService("Epgsearch-exttimeredit-v1.0", &exttimeredit)) + return AddSubMenu(exttimeredit.pTimerMenu); + + return AddSubMenu(new cMenuEditTimer(exttimeredit.timer, New)); } eOSState cMenuTimers::Delete(void) @@ -1165,7 +1188,7 @@ eOSState cMenuTimers::ProcessKey(eKeys K case kOk: return Edit(); case kRed: actualiseDiskStatus = true; state = OnOff(); break; // must go through SetHelpKeys()! - case kGreen: return New(); + case kGreen: return Edit(true); case kYellow: actualiseDiskStatus = true; state = Delete(); break; case kInfo: @@ -1183,6 +1206,11 @@ eOSState cMenuTimers::ProcessKey(eKeys K actualiseDiskStatus = true; Display(); } + if (!HasSubMenu() && Timers.Count() #include #include #include "device.h" #include "dvbspu.h" -#if DVB_API_VERSION != 3 +#if DVB_API_VERSION != 3 && DVB_API_VERSION != 5 #error VDR requires Linux DVB driver API version 3! #endif Index: vdr-1.6.0/dvbdevice.c =================================================================== --- vdr-1.6.0.orig/dvbdevice.c +++ vdr-1.6.0/dvbdevice.c @@ -7,9 +7,10 @@ * $Id: dvbdevice.c 1.170 2008/02/09 16:11:44 kls Exp $ */ -#include "dvbdevice.h" #include #include +#include +#include "dvbdevice.h" #include #include #include Index: vdr-1.6.0/vdr.c =================================================================== --- vdr-1.6.0.orig/vdr.c +++ vdr-1.6.0/vdr.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include Index: vdr.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr/devel/vdr.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- vdr.spec 22 Jun 2009 15:44:04 -0000 1.47 +++ vdr.spec 26 Jul 2009 14:49:40 -0000 1.48 @@ -12,22 +12,22 @@ %bcond_with docs %bcond_with plugins -%define varbase %{_var}/lib/vdr -%define videodir %{varbase}/video -%define vardir %{varbase}/data -%define plugindir %{_libdir}/vdr -%define configdir %{_sysconfdir}/vdr -%define datadir %{_datadir}/vdr -%define cachedir %{_var}/cache/vdr -%define rundir %{_var}/run/vdr -%define vdr_user vdr -%define vdr_group video +%global varbase %{_var}/lib/vdr +%global videodir %{varbase}/video +%global vardir %{varbase}/data +%global plugindir %{_libdir}/vdr +%global configdir %{_sysconfdir}/vdr +%global datadir %{_datadir}/vdr +%global cachedir %{_var}/cache/vdr +%global rundir %{_var}/run/vdr +%global vdr_user vdr +%global vdr_group video # From APIVERSION in config.h -%define apiver 1.6.0 +%global apiver 1.6.0 Name: vdr Version: 1.6.0 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Video Disk Recorder Group: Applications/Multimedia @@ -80,15 +80,19 @@ Patch16: %{name}-1.6.0-dxr3-subti Patch17: http://toms-cafe.de/vdr/download/vdr-timer-info-0.5-1.5.15.diff Patch18: ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.6.0-1.diff Patch19: ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.6.0-2.diff -Patch20: %{name}-1.6.0-remove-dvb-abi-check.patch +# From openSUSE's vdr-1.6.0-62.3, fixes build with (broken? #483644) dvb headers +Patch20: %{name}-1.6.0-kernel-2.6.29.diff Patch21: http://www.saunalahti.fi/~rahrenbe/vdr/patches/vdr-1.6.0-subtitles-button.patch.gz Patch22: http://www.saunalahti.fi/~rahrenbe/vdr/patches/vdr-1.6.0-cap_sys_nice.patch.gz Patch23: http://www.saunalahti.fi/~rahrenbe/vdr/patches/vdr-1.6.0-ionice.patch.gz -# From openSUSE's 1.6.0-60.1, to fix build with gcc 4.4: +# From openSUSE's vdr-1.6.0-62.3, to fix build with gcc 4.4: # http://download.opensuse.org/repositories/vdr/ Patch24: %{name}-1.6.0-const.diff Patch25: http://toms-cafe.de/vdr/download/vdr-jumpplay-1.0-1.6.0.diff Patch26: %{name}-jumpplay-1.0-1.6.0-finnish.patch +# http://projects.vdr-developer.org/git/?p=vdr-plugin-epgsearch.git;a=blob;f=patches/vdr.epgsearch-exttimeredit-0.0.2.diff +# Modified so that it applies on top of our other patches +Patch27: %{name}-1.6.0-epgsearch-exttimeredit-0.0.2.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libjpeg-devel @@ -108,7 +112,11 @@ Requires: udev >= 136-1 Requires(pre): shadow-utils >= 2:4.1.1 Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig +Provides: vdr(abi)%{?_isa} = %{apiver} +%if "%{?_isa}" != "" +# Deprecated backwards compatibility, plugins should depend on vdr(abi)%{?_isa} Provides: vdr(abi) = %{apiver} +%endif Obsoletes: vdr-subtitles <= 0.5.0 %description @@ -142,7 +150,7 @@ Group: Applications/Multimedia %if %{with plugins} BuildRequires: ncurses-devel %endif # plugins -Requires: vdr(abi) = %{apiver} +Requires: vdr(abi)%{?_isa} = %{apiver} %description skincurses The skincurses plugin implements a VDR skin that works in a shell @@ -151,7 +159,7 @@ window, using only plain text output. %package sky Summary: Sky Digibox plugin for VDR Group: Applications/Multimedia -Requires: vdr(abi) = %{apiver} +Requires: vdr(abi)%{?_isa} = %{apiver} Requires: wget Requires: /usr/bin/logger @@ -205,13 +213,14 @@ sed \ %patch16 -p0 %patch18 -p1 %patch19 -p1 -%patch20 -p0 +%patch20 -p1 %patch21 -p1 %patch22 -p1 %patch23 -p1 %patch24 -p1 %patch25 -p1 -F 2 %patch26 -p1 +%patch27 -p1 for f in CONTRIBUTORS HISTORY* UPDATE-1.4.0 README.{jumpplay,timer-info} ; do iconv -f iso-8859-1 -t utf-8 -o $f.utf8 $f && mv $f.utf8 $f @@ -534,6 +543,13 @@ fi %endif # plugins %changelog +* Sun Jul 26 2009 Ville Skytt? - 1.6.0-26 +- Provide ISA qualified vdr(abi). Plugins should depend on (versioned) + vdr(abi)%%{?_isa} instead of just vdr(abi). +- Borrow build patch for recent (broken? #483644) DVB headers from openSUSE. +- Apply epgsearch timer integration patch. +- Use %%global instead of %%define. + * Mon Jun 22 2009 Ville Skytt? - 1.6.0-25 - Make -docs noarch when built on Fedora > 9. --- vdr-1.6.0-remove-dvb-abi-check.patch DELETED --- From pkgdb at fedoraproject.org Sun Jul 26 15:55:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:05 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155505.C9B0010F880@bastion2.fedora.phx.redhat.com> Package barrage in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:09 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155509.746D510F890@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 8 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:14 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155514.B095D10F899@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 9 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:17 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155517.40C3910F89C@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:20 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155520.21B6C10F880@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:26 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155526.8A2CB10F889@bastion2.fedora.phx.redhat.com> Package barrage in Fedora devel is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:33 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155533.621F410F897@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 10 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:42 +0000 Subject: [pkgdb] barrage ownership updated Message-ID: <20090726155542.ACE2D10F8A1@bastion2.fedora.phx.redhat.com> Package barrage in Fedora 11 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/barrage From pkgdb at fedoraproject.org Sun Jul 26 15:55:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:56 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155556.073B510F885@bastion2.fedora.phx.redhat.com> Package bastet in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:55:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:55:58 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155558.158F210F897@bastion2.fedora.phx.redhat.com> Package bastet in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:56:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:00 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155600.6C09710F8B4@bastion2.fedora.phx.redhat.com> Package bastet in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:56:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:15 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155615.88E1310F885@bastion2.fedora.phx.redhat.com> Package biniax in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:16 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155616.25A0E10F890@bastion2.fedora.phx.redhat.com> Package bastet in Fedora devel is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:56:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:16 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155616.E20B710F89F@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 8 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:18 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155618.A71C610F89A@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 9 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:20 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155620.0CF0F10F8A1@bastion2.fedora.phx.redhat.com> Package bastet in Fedora 10 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:56:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:21 +0000 Subject: [pkgdb] bastet ownership updated Message-ID: <20090726155621.ED94310F8B8@bastion2.fedora.phx.redhat.com> Package bastet in Fedora 11 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bastet From pkgdb at fedoraproject.org Sun Jul 26 15:56:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:21 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155621.8418A10F8B7@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:24 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155624.1939F10F8B4@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:36 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155636.7DA3310F889@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:56:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:37 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155637.DE52310F89F@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 9 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:56:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:39 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155639.E1D8E10F8BB@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 8 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:56:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:43 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155643.B4EEE10F8BE@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:56:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:41 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155641.EC45C10F8BD@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:56:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:49 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155649.8D9DD10F8B5@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 11 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:57:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:11 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155711.2394510F885@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora devel is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:57:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:11 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155711.CFDFC10F89D@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 9 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:57:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:16 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155716.324CB10F8B8@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 10 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:57:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:15 +0000 Subject: [pkgdb] fbpanel ownership updated Message-ID: <20090726155715.606B010F8B6@bastion2.fedora.phx.redhat.com> Package fbpanel in Fedora 11 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/fbpanel From pkgdb at fedoraproject.org Sun Jul 26 15:57:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:19 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155719.2F1BA10F897@bastion2.fedora.phx.redhat.com> Package xpad in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:57:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:24 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155724.1C8FE10F8BA@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 9 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:57:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:26 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155726.17E7810F8C1@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 8 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:57:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:27 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155728.003AE10F899@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:57:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:29 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155729.D70F810F8BE@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:57:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:41 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155741.E85D410F89C@bastion2.fedora.phx.redhat.com> Package xqf in Fedora devel was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:57:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:45 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155745.4160010F8C0@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 8 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:57:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:43 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155743.2CA0410F8B5@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 9 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:57:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:46 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155746.9B62B10F8C3@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 10 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:57:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:48 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155748.8C28C10F8C5@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 11 was orphaned by cheekyboinc To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:57:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:57:56 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155756.1E2B710F8C7@bastion2.fedora.phx.redhat.com> Package xpad in Fedora devel is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:58:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:00 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155800.5F90D10F8CA@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 10 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:58:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:04 +0000 Subject: [pkgdb] xpad ownership updated Message-ID: <20090726155804.8780510F8B4@bastion2.fedora.phx.redhat.com> Package xpad in Fedora 11 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xpad From pkgdb at fedoraproject.org Sun Jul 26 15:58:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:34 +0000 Subject: [pkgdb] xqf (un)retirement Message-ID: <20090726155834.5A2D610F8D2@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 11 has been retired by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 16:00:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:00:53 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchcommits Message-ID: <20090726160053.D5B8110F890@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchcommits acl on maxr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:00:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:00:54 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchbugzilla Message-ID: <20090726160054.7B84410F8B6@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchbugzilla acl on maxr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:00:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:00:54 +0000 Subject: [pkgdb] maxr: cassmodiah has requested commit Message-ID: <20090726160054.C1ED210F8B9@bastion2.fedora.phx.redhat.com> cassmodiah has requested the commit acl on maxr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:00:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:00:56 +0000 Subject: [pkgdb] maxr: cassmodiah has requested approveacls Message-ID: <20090726160056.4524210F89C@bastion2.fedora.phx.redhat.com> cassmodiah has requested the approveacls acl on maxr (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:00 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchcommits Message-ID: <20090726160100.290BC10F8BB@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchcommits acl on maxr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:00 +0000 Subject: [pkgdb] maxr: cassmodiah has requested commit Message-ID: <20090726160100.476CB10F8BE@bastion2.fedora.phx.redhat.com> cassmodiah has requested the commit acl on maxr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:06 +0000 Subject: [pkgdb] maxr: cassmodiah has requested approveacls Message-ID: <20090726160106.3BD3210F8C0@bastion2.fedora.phx.redhat.com> cassmodiah has requested the approveacls acl on maxr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:09 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchbugzilla Message-ID: <20090726160109.8EB1F10F8C2@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchbugzilla acl on maxr (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 15:56:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:44 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155644.D843810F8C0@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 9 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:56:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:56:48 +0000 Subject: [pkgdb] biniax ownership updated Message-ID: <20090726155648.A1C1210F89C@bastion2.fedora.phx.redhat.com> Package biniax in Fedora 10 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/biniax From pkgdb at fedoraproject.org Sun Jul 26 15:58:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:30 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155830.CE66510F8BA@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 9 is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:58:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:32 +0000 Subject: [pkgdb] xqf ownership updated Message-ID: <20090726155832.2949710F8BC@bastion2.fedora.phx.redhat.com> Package xqf in Fedora devel is now owned by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 15:58:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 15:58:33 +0000 Subject: [pkgdb] xqf (un)retirement Message-ID: <20090726155833.D178710F8BE@bastion2.fedora.phx.redhat.com> Package xqf in Fedora 10 has been retired by cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xqf From pkgdb at fedoraproject.org Sun Jul 26 16:01:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:15 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchbugzilla Message-ID: <20090726160115.99A3B10F8C3@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchbugzilla acl on maxr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:15 +0000 Subject: [pkgdb] maxr: cassmodiah has requested watchcommits Message-ID: <20090726160115.CEAF810F8C6@bastion2.fedora.phx.redhat.com> cassmodiah has requested the watchcommits acl on maxr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:17 +0000 Subject: [pkgdb] maxr: cassmodiah has requested commit Message-ID: <20090726160117.5E13110F897@bastion2.fedora.phx.redhat.com> cassmodiah has requested the commit acl on maxr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:01:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:01:18 +0000 Subject: [pkgdb] maxr: cassmodiah has requested approveacls Message-ID: <20090726160118.9708110F8C9@bastion2.fedora.phx.redhat.com> cassmodiah has requested the approveacls acl on maxr (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:05:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:05:11 +0000 Subject: [pkgdb] xfce4-xmms-plugin (un)retirement Message-ID: <20090726160511.C2A2A10F885@bastion2.fedora.phx.redhat.com> Package xfce4-xmms-plugin in Fedora devel has been retired by cwickert To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/xfce4-xmms-plugin From pkgdb at fedoraproject.org Sun Jul 26 16:05:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:05:42 +0000 Subject: [pkgdb] lxsession-lite (un)retirement Message-ID: <20090726160542.E11DF10F880@bastion2.fedora.phx.redhat.com> Package lxsession-lite in Fedora devel has been retired by cwickert To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxsession-lite From pkgdb at fedoraproject.org Sun Jul 26 16:08:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:00 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160800.8F6B610F889@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchbugzilla acl on maxr (Fedora devel) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:04 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160804.B4E0110F897@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchcommits acl on maxr (Fedora devel) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:06 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160806.4F39C10F89C@bastion2.fedora.phx.redhat.com> cheekyboinc has set the commit acl on maxr (Fedora devel) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:06 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160807.0CA3810F8A1@bastion2.fedora.phx.redhat.com> cheekyboinc has set the approveacls acl on maxr (Fedora devel) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:10 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160810.2E15E10F8B6@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchbugzilla acl on maxr (Fedora 10) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:11 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160811.A6D6B10F8B9@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchcommits acl on maxr (Fedora 10) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:12 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160812.D8CEB10F8BC@bastion2.fedora.phx.redhat.com> cheekyboinc has set the commit acl on maxr (Fedora 10) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:14 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160814.5971610F8C0@bastion2.fedora.phx.redhat.com> cheekyboinc has set the approveacls acl on maxr (Fedora 10) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:16 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160816.76F7310F889@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchbugzilla acl on maxr (Fedora 11) to Obsolete for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:18 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160818.B387410F8C4@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchbugzilla acl on maxr (Fedora 11) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:20 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160820.3925110F8C7@bastion2.fedora.phx.redhat.com> cheekyboinc has set the watchcommits acl on maxr (Fedora 11) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:21 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160821.74E1710F8CB@bastion2.fedora.phx.redhat.com> cheekyboinc has set the commit acl on maxr (Fedora 11) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From pkgdb at fedoraproject.org Sun Jul 26 16:08:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 16:08:22 +0000 Subject: [pkgdb] maxr had acl change status Message-ID: <20090726160822.D3D0810F8CE@bastion2.fedora.phx.redhat.com> cheekyboinc has set the approveacls acl on maxr (Fedora 11) to Denied for cassmodiah To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/maxr From jkeating at fedoraproject.org Sun Jul 26 16:08:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:08:45 +0000 (UTC) Subject: rpms/perl-Parse-CPAN-Packages/devel perl-Parse-CPAN-Packages.spec, 1.13, 1.14 Message-ID: <20090726160845.79FDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-CPAN-Packages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20314 Modified Files: perl-Parse-CPAN-Packages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parse-CPAN-Packages.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-CPAN-Packages/devel/perl-Parse-CPAN-Packages.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Parse-CPAN-Packages.spec 13 May 2009 19:15:38 -0000 1.13 +++ perl-Parse-CPAN-Packages.spec 26 Jul 2009 16:08:45 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Parse-CPAN-Packages Version: 2.31 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse 02packages.details.txt.gz License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.31-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Steven Pritchard 2.31-1 - Update to 2.31. From jkeating at fedoraproject.org Sun Jul 26 16:09:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:09:00 +0000 (UTC) Subject: rpms/perl-Parse-ErrorString-Perl/devel perl-Parse-ErrorString-Perl.spec, 1.3, 1.4 Message-ID: <20090726160900.AE94211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-ErrorString-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20524 Modified Files: perl-Parse-ErrorString-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parse-ErrorString-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-ErrorString-Perl/devel/perl-Parse-ErrorString-Perl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Parse-ErrorString-Perl.spec 27 Feb 2009 00:20:10 -0000 1.3 +++ perl-Parse-ErrorString-Perl.spec 26 Jul 2009 16:09:00 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Parse-ErrorString-Perl Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Module for parsing error messages License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/check_perldiag.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:09:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:09:17 +0000 (UTC) Subject: rpms/perl-Parse-RecDescent/devel perl-Parse-RecDescent.spec, 1.19, 1.20 Message-ID: <20090726160917.67D2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-RecDescent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20700 Modified Files: perl-Parse-RecDescent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parse-RecDescent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-RecDescent/devel/perl-Parse-RecDescent.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Parse-RecDescent.spec 27 Feb 2009 00:21:09 -0000 1.19 +++ perl-Parse-RecDescent.spec 26 Jul 2009 16:09:17 -0000 1.20 @@ -1,7 +1,7 @@ Name: perl-Parse-RecDescent Version: 1.96 %define tarname Parse-RecDescent-%{version}.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parse-RecDescent Perl module Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.96-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.96-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:09:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:09:34 +0000 (UTC) Subject: rpms/perl-Parse-Yapp/devel perl-Parse-Yapp.spec,1.7,1.8 Message-ID: <20090726160934.D8C7011C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-Yapp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20878 Modified Files: perl-Parse-Yapp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Parse-Yapp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-Yapp/devel/perl-Parse-Yapp.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Parse-Yapp.spec 27 Feb 2009 00:21:36 -0000 1.7 +++ perl-Parse-Yapp.spec 26 Jul 2009 16:09:34 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Parse-Yapp Version: 1.05 -Release: 39%{?dist} +Release: 40%{?dist} Summary: Perl extension for generating and using LALR parsers Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-39 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:10:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:10:06 +0000 (UTC) Subject: rpms/perl-ParseLex/devel perl-ParseLex.spec,1.6,1.7 Message-ID: <20090726161006.345E411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ParseLex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21099 Modified Files: perl-ParseLex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ParseLex.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ParseLex/devel/perl-ParseLex.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-ParseLex.spec 27 Feb 2009 00:22:28 -0000 1.6 +++ perl-ParseLex.spec 26 Jul 2009 16:10:05 -0000 1.7 @@ -1,7 +1,7 @@ Name: perl-ParseLex Summary: Generator of lexical analyzers Version: 2.15 -Release: 13%{?dist} +Release: 14%{?dist} License: GPL+ or Artistic Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root%(%{__id_u} -n) @@ -67,6 +67,9 @@ find $RPM_BUILD_ROOT -name .packlist -ex %{_mandir}/man3/*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.15-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.15-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:10:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:10:29 +0000 (UTC) Subject: rpms/perl-PatchReader/devel perl-PatchReader.spec,1.7,1.8 Message-ID: <20090726161029.4BD2411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PatchReader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21420 Modified Files: perl-PatchReader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PatchReader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PatchReader/devel/perl-PatchReader.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-PatchReader.spec 27 Feb 2009 00:23:39 -0000 1.7 +++ perl-PatchReader.spec 26 Jul 2009 16:10:29 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-PatchReader Version: 0.9.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Utilities to read and manipulate patches and CVS Group: Development/Libraries @@ -63,6 +63,9 @@ make test %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:10:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:10:47 +0000 (UTC) Subject: rpms/perl-Path-Class/devel perl-Path-Class.spec,1.4,1.5 Message-ID: <20090726161047.D745111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Path-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21666 Modified Files: perl-Path-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Path-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Path-Class/devel/perl-Path-Class.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Path-Class.spec 27 Feb 2009 00:24:32 -0000 1.4 +++ perl-Path-Class.spec 26 Jul 2009 16:10:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Path-Class Version: 0.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Cross-platform path specification manipulation License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:11:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:11:05 +0000 (UTC) Subject: rpms/perl-Perl-Critic/devel perl-Perl-Critic.spec,1.20,1.21 Message-ID: <20090726161105.43C0711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perl-Critic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21866 Modified Files: perl-Perl-Critic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perl-Critic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perl-Critic/devel/perl-Perl-Critic.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Perl-Critic.spec 9 Jun 2009 08:35:31 -0000 1.20 +++ perl-Perl-Critic.spec 26 Jul 2009 16:11:04 -0000 1.21 @@ -1,6 +1,6 @@ Name: perl-Perl-Critic Version: 1.098 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Critique Perl source code for best-practices Group: Development/Libraries @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.098-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 1.098-1 - "neaten" filtering - auto-update to 1.098 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 16:11:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:11:23 +0000 (UTC) Subject: rpms/perl-Perl-MinimumVersion/devel perl-Perl-MinimumVersion.spec, 1.11, 1.12 Message-ID: <20090726161123.A3BC811C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perl-MinimumVersion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22118 Modified Files: perl-Perl-MinimumVersion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perl-MinimumVersion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perl-MinimumVersion/devel/perl-Perl-MinimumVersion.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Perl-MinimumVersion.spec 26 Apr 2009 06:08:29 -0000 1.11 +++ perl-Perl-MinimumVersion.spec 26 Jul 2009 16:11:22 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Perl-MinimumVersion Version: 1.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Find a minimum required version of perl for Perl code License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Ralf Cors?pius - 1.20-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:11:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:11:36 +0000 (UTC) Subject: rpms/perl-Perl-Tags/devel perl-Perl-Tags.spec,1.1,1.2 Message-ID: <20090726161136.4670511C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perl-Tags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22290 Modified Files: perl-Perl-Tags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perl-Tags.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perl-Tags/devel/perl-Perl-Tags.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Perl-Tags.spec 30 Apr 2009 07:14:15 -0000 1.1 +++ perl-Perl-Tags.spec 26 Jul 2009 16:11:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Perl-Tags Version: 0.26 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate Ctags style tags for Perl sourcecode License: (GPL+ or Artistic) or Vim Group: Development/Libraries @@ -56,5 +56,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Iain Arnell 0.26-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:11:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:11:53 +0000 (UTC) Subject: rpms/perl-Perl6-Bible/devel perl-Perl6-Bible.spec,1.5,1.6 Message-ID: <20090726161153.2E4A211C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perl6-Bible/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22504 Modified Files: perl-Perl6-Bible.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perl6-Bible.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perl6-Bible/devel/perl-Perl6-Bible.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Perl6-Bible.spec 27 Feb 2009 00:27:33 -0000 1.5 +++ perl-Perl6-Bible.spec 26 Jul 2009 16:11:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Perl6-Bible Version: 0.30 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl 6 Design Documentations License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:12:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:12:09 +0000 (UTC) Subject: rpms/perl-Perl6-Junction/devel perl-Perl6-Junction.spec,1.2,1.3 Message-ID: <20090726161209.8423B11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perl6-Junction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22721 Modified Files: perl-Perl6-Junction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perl6-Junction.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perl6-Junction/devel/perl-Perl6-Junction.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Perl6-Junction.spec 27 Feb 2009 00:28:34 -0000 1.2 +++ perl-Perl6-Junction.spec 26 Jul 2009 16:12:09 -0000 1.3 @@ -1,7 +1,7 @@ %define tarname Perl6-Junction Name: perl-Perl6-Junction Version: 1.40000 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl6 style Junction operators in Perl5 Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.40000-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.40000-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:12:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:12:26 +0000 (UTC) Subject: rpms/perl-PerlIO-eol/devel perl-PerlIO-eol.spec,1.7,1.8 Message-ID: <20090726161226.B104C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PerlIO-eol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22958 Modified Files: perl-PerlIO-eol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PerlIO-eol.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PerlIO-eol/devel/perl-PerlIO-eol.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-PerlIO-eol.spec 27 Feb 2009 00:29:34 -0000 1.7 +++ perl-PerlIO-eol.spec 26 Jul 2009 16:12:26 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-PerlIO-eol Version: 0.14 -Release: 5%{?dist} +Release: 6%{?dist} Summary: PerlIO layer for normalizing line endings License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:12:44 +0000 (UTC) Subject: rpms/perl-PerlIO-gzip/devel perl-PerlIO-gzip.spec,1.3,1.4 Message-ID: <20090726161244.9970911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PerlIO-gzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23142 Modified Files: perl-PerlIO-gzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PerlIO-gzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PerlIO-gzip/devel/perl-PerlIO-gzip.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-PerlIO-gzip.spec 28 Feb 2009 19:56:45 -0000 1.3 +++ perl-PerlIO-gzip.spec 26 Jul 2009 16:12:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-PerlIO-gzip Version: 0.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension to provide a PerlIO layer to gzip/gunzip # See Makefile.PL, gzip.xs, etc. License: GPL+ or Artistic @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Chris Weyl 0.18-3 - strip private Perl libs from autoprov output From jkeating at fedoraproject.org Sun Jul 26 16:13:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:13:00 +0000 (UTC) Subject: rpms/perl-PerlIO-via-dynamic/devel perl-PerlIO-via-dynamic.spec, 1.4, 1.5 Message-ID: <20090726161300.3C65411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PerlIO-via-dynamic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23361 Modified Files: perl-PerlIO-via-dynamic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PerlIO-via-dynamic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PerlIO-via-dynamic/devel/perl-PerlIO-via-dynamic.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-PerlIO-via-dynamic.spec 27 Feb 2009 00:34:01 -0000 1.4 +++ perl-PerlIO-via-dynamic.spec 26 Jul 2009 16:13:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-PerlIO-via-dynamic Version: 0.12 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Dynamic PerlIO layers License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:13:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:13:16 +0000 (UTC) Subject: rpms/perl-PerlIO-via-symlink/devel perl-PerlIO-via-symlink.spec, 1.4, 1.5 Message-ID: <20090726161316.0D6D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PerlIO-via-symlink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23515 Modified Files: perl-PerlIO-via-symlink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PerlIO-via-symlink.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PerlIO-via-symlink/devel/perl-PerlIO-via-symlink.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-PerlIO-via-symlink.spec 27 Feb 2009 00:35:02 -0000 1.4 +++ perl-PerlIO-via-symlink.spec 26 Jul 2009 16:13:15 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-PerlIO-via-symlink Version: 0.05 -Release: 6%{?dist} +Release: 7%{?dist} Summary: PerlIO layers for create symlinks License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:13:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:13:31 +0000 (UTC) Subject: rpms/perl-Perlbal-XS-HTTPHeaders/devel perl-Perlbal-XS-HTTPHeaders.spec, 1.5, 1.6 Message-ID: <20090726161331.6089211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perlbal-XS-HTTPHeaders/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23714 Modified Files: perl-Perlbal-XS-HTTPHeaders.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perlbal-XS-HTTPHeaders.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perlbal-XS-HTTPHeaders/devel/perl-Perlbal-XS-HTTPHeaders.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Perlbal-XS-HTTPHeaders.spec 27 Feb 2009 00:36:04 -0000 1.5 +++ perl-Perlbal-XS-HTTPHeaders.spec 26 Jul 2009 16:13:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Perlbal-XS-HTTPHeaders Version: 0.19 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perlbal extension for processing HTTP headers License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.19-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.19-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:13:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:13:46 +0000 (UTC) Subject: rpms/perl-Perlilog/devel perl-Perlilog.spec,1.2,1.3 Message-ID: <20090726161346.A5F6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Perlilog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23937 Modified Files: perl-Perlilog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Perlilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Perlilog/devel/perl-Perlilog.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Perlilog.spec 27 Feb 2009 00:37:05 -0000 1.2 +++ perl-Perlilog.spec 26 Jul 2009 16:13:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Perlilog Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Verilog environment and IP core handling in Perl License: GPLv2 Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:14:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:14:01 +0000 (UTC) Subject: rpms/perl-Pipeline/devel perl-Pipeline.spec,1.7,1.8 Message-ID: <20090726161401.ACB5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pipeline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24101 Modified Files: perl-Pipeline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pipeline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pipeline/devel/perl-Pipeline.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Pipeline.spec 27 Feb 2009 00:38:03 -0000 1.7 +++ perl-Pipeline.spec 26 Jul 2009 16:14:01 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Pipeline Version: 3.12 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Generic pipeline interface License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.12-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.12-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:14:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:14:18 +0000 (UTC) Subject: rpms/perl-PlRPC/devel perl-PlRPC.spec,1.1,1.2 Message-ID: <20090726161418.11B9611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PlRPC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24355 Modified Files: perl-PlRPC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PlRPC.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PlRPC/devel/perl-PlRPC.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-PlRPC.spec 5 Apr 2009 05:39:39 -0000 1.1 +++ perl-PlRPC.spec 26 Jul 2009 16:14:17 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-PlRPC Version: 0.2020 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Interface for building pServer Clients @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2020-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Chris Weyl 0.2020-1 - submission From scop at fedoraproject.org Sun Jul 26 16:14:20 2009 From: scop at fedoraproject.org (=?utf-8?q?Ville_Skytt=C3=A4?=) Date: Sun, 26 Jul 2009 16:14:20 +0000 (UTC) Subject: rpms/perl-Config-General/devel .cvsignore, 1.12, 1.13 perl-Config-General.spec, 1.21, 1.22 sources, 1.12, 1.13 Message-ID: <20090726161420.04B3511C00CE@cvs1.fedora.phx.redhat.com> Author: scop Update of /cvs/pkgs/rpms/perl-Config-General/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24379 Modified Files: .cvsignore perl-Config-General.spec sources Log Message: * Sun Jul 26 2009 Ville Skytt? - 2.43-1 - Update to 2.43 (#513796). Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-General/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 4 Jan 2009 16:32:39 -0000 1.12 +++ .cvsignore 26 Jul 2009 16:14:19 -0000 1.13 @@ -1 +1 @@ -Config-General-2.42.tar.gz +Config-General-2.43.tar.gz Index: perl-Config-General.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-General/devel/perl-Config-General.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-Config-General.spec 26 Jul 2009 04:36:27 -0000 1.21 +++ perl-Config-General.spec 26 Jul 2009 16:14:19 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-Config-General -Version: 2.42 -Release: 3%{?dist} +Version: 2.43 +Release: 1%{?dist} Summary: Generic configuration module for Perl Group: Development/Libraries @@ -37,6 +37,7 @@ support for object oriented access to th %setup -q -n Config-General-%{version} %patch0 -p1 rm -r t/Tie +rm General/i # http://rt.cpan.org/Public/Bug/Display.html?id=48211 f=Changelog ; iconv -f iso-8859-1 -t utf-8 -o $f.utf8 $f ; mv $f.utf8 $f @@ -69,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Ville Skytt? - 2.43-1 +- Update to 2.43 (#513796). + * Sat Jul 25 2009 Fedora Release Engineering - 2.42-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Config-General/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 4 Jan 2009 16:32:40 -0000 1.12 +++ sources 26 Jul 2009 16:14:19 -0000 1.13 @@ -1 +1 @@ -2b4d586151de7de521dd415be08b4cd5 Config-General-2.42.tar.gz +20d142d3e784da11d25c6cf307cae851 Config-General-2.43.tar.gz From jkeating at fedoraproject.org Sun Jul 26 16:14:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:14:34 +0000 (UTC) Subject: rpms/perl-Pod-Abstract/devel perl-Pod-Abstract.spec,1.1,1.2 Message-ID: <20090726161434.2BCF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Abstract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24632 Modified Files: perl-Pod-Abstract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Abstract.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Abstract/devel/perl-Pod-Abstract.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Pod-Abstract.spec 22 Jun 2009 11:46:00 -0000 1.1 +++ perl-Pod-Abstract.spec 26 Jul 2009 16:14:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Pod-Abstract Version: 0.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Abstract document tree for Perl POD documents License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/paf.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Marcela Ma?l??ov? 0.17-2 - fix rpmlint warnings From jkeating at fedoraproject.org Sun Jul 26 16:14:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:14:50 +0000 (UTC) Subject: rpms/perl-Pod-Coverage/devel perl-Pod-Coverage.spec,1.18,1.19 Message-ID: <20090726161450.2523511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Coverage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24860 Modified Files: perl-Pod-Coverage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Coverage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Coverage/devel/perl-Pod-Coverage.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Pod-Coverage.spec 27 Feb 2009 00:39:01 -0000 1.18 +++ perl-Pod-Coverage.spec 26 Jul 2009 16:14:49 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-Pod-Coverage Version: 0.20 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Checks if the documentation of a module is comprehensive License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Pod::Coverage::Overloader.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:15:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:15:07 +0000 (UTC) Subject: rpms/perl-Pod-POM/devel perl-Pod-POM.spec,1.10,1.11 Message-ID: <20090726161507.0B71D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-POM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25101 Modified Files: perl-Pod-POM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-POM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-POM/devel/perl-Pod-POM.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Pod-POM.spec 13 Mar 2009 22:47:48 -0000 1.10 +++ perl-Pod-POM.spec 26 Jul 2009 16:15:06 -0000 1.11 @@ -2,7 +2,7 @@ Name: perl-Pod-POM Version: 0.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Object-oriented interface to Perl POD documents @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway 0.18-1 - update to 0.18 From jkeating at fedoraproject.org Sun Jul 26 16:15:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:15:25 +0000 (UTC) Subject: rpms/perl-Pod-Readme/devel perl-Pod-Readme.spec,1.7,1.8 Message-ID: <20090726161525.6E62911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Readme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25328 Modified Files: perl-Pod-Readme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Readme.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Readme/devel/perl-Pod-Readme.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Pod-Readme.spec 27 Feb 2009 00:40:57 -0000 1.7 +++ perl-Pod-Readme.spec 26 Jul 2009 16:15:25 -0000 1.8 @@ -2,7 +2,7 @@ Name: perl-Pod-Readme Version: 0.090 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert POD to README file License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.090-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.090-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:15:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:15:44 +0000 (UTC) Subject: rpms/perl-Pod-Simple-Wiki/devel perl-Pod-Simple-Wiki.spec,1.4,1.5 Message-ID: <20090726161544.646EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Simple-Wiki/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25576 Modified Files: perl-Pod-Simple-Wiki.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Simple-Wiki.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Simple-Wiki/devel/perl-Pod-Simple-Wiki.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Pod-Simple-Wiki.spec 27 Feb 2009 00:41:50 -0000 1.4 +++ perl-Pod-Simple-Wiki.spec 26 Jul 2009 16:15:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Pod-Simple-Wiki Version: 0.09 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Utility and perl classes for converting POD to Wiki text License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:16:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:16:00 +0000 (UTC) Subject: rpms/perl-Pod-Spell/devel perl-Pod-Spell.spec,1.6,1.7 Message-ID: <20090726161600.D1F0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Spell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25811 Modified Files: perl-Pod-Spell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Spell.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Spell/devel/perl-Pod-Spell.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Pod-Spell.spec 27 Feb 2009 00:42:49 -0000 1.6 +++ perl-Pod-Spell.spec 26 Jul 2009 16:16:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Pod-Spell Version: 1.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A formatter for spellchecking Pod Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:16:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:16:16 +0000 (UTC) Subject: rpms/perl-Pod-Strip/devel perl-Pod-Strip.spec,1.4,1.5 Message-ID: <20090726161616.BB1F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Strip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26028 Modified Files: perl-Pod-Strip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Strip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Strip/devel/perl-Pod-Strip.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Pod-Strip.spec 27 Feb 2009 00:43:45 -0000 1.4 +++ perl-Pod-Strip.spec 26 Jul 2009 16:16:16 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Pod-Strip Version: 1.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Remove POD from Perl code Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:16:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:16:33 +0000 (UTC) Subject: rpms/perl-Pod-Tests/devel perl-Pod-Tests.spec,1.9,1.10 Message-ID: <20090726161633.13CEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Tests/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26219 Modified Files: perl-Pod-Tests.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Tests.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Tests/devel/perl-Pod-Tests.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Pod-Tests.spec 27 Feb 2009 00:44:42 -0000 1.9 +++ perl-Pod-Tests.spec 26 Jul 2009 16:16:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Pod-Tests Version: 1.19 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extract embedded tests and code examples from POD License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:16:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:16:50 +0000 (UTC) Subject: rpms/perl-Pod-Xhtml/devel perl-Pod-Xhtml.spec,1.1,1.2 Message-ID: <20090726161650.C54C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pod-Xhtml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26451 Modified Files: perl-Pod-Xhtml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pod-Xhtml.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pod-Xhtml/devel/perl-Pod-Xhtml.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Pod-Xhtml.spec 14 Jun 2009 22:26:57 -0000 1.1 +++ perl-Pod-Xhtml.spec 26 Jul 2009 16:16:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Pod-Xhtml Version: 1.59 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate well-formed XHTML documents from POD format documentation License: GPLv2+ Group: Development/Libraries @@ -51,5 +51,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.59-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.59-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:17:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:17:07 +0000 (UTC) Subject: rpms/perl-PostScript/devel perl-PostScript.spec,1.4,1.5 Message-ID: <20090726161707.A105811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-PostScript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26670 Modified Files: perl-PostScript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-PostScript.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-PostScript/devel/perl-PostScript.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-PostScript.spec 27 Feb 2009 00:45:38 -0000 1.4 +++ perl-PostScript.spec 26 Jul 2009 16:17:07 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-PostScript Version: 0.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PostScript Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:17:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:17:24 +0000 (UTC) Subject: rpms/perl-Probe-Perl/devel perl-Probe-Perl.spec,1.2,1.3 Message-ID: <20090726161724.691A811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Probe-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26861 Modified Files: perl-Probe-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Probe-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Probe-Perl/devel/perl-Probe-Perl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Probe-Perl.spec 27 Feb 2009 00:46:36 -0000 1.2 +++ perl-Probe-Perl.spec 26 Jul 2009 16:17:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Probe-Perl Version: 0.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Information about the currently running perl License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:17:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:17:42 +0000 (UTC) Subject: rpms/perl-Proc-Daemon/devel perl-Proc-Daemon.spec,1.5,1.6 Message-ID: <20090726161742.8727511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Proc-Daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27100 Modified Files: perl-Proc-Daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Proc-Daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Daemon/devel/perl-Proc-Daemon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Proc-Daemon.spec 27 Feb 2009 00:47:45 -0000 1.5 +++ perl-Proc-Daemon.spec 26 Jul 2009 16:17:42 -0000 1.6 @@ -2,7 +2,7 @@ Name: perl-Proc-Daemon Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Run Perl program as a daemon process Group: Development/Libraries @@ -52,6 +52,9 @@ make test %{perl_vendorlib}/Proc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:17:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:17:56 +0000 (UTC) Subject: rpms/perl-Proc-ProcessTable/devel perl-Proc-ProcessTable.spec, 1.8, 1.9 Message-ID: <20090726161756.6EA2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Proc-ProcessTable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27288 Modified Files: perl-Proc-ProcessTable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Proc-ProcessTable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-ProcessTable/devel/perl-Proc-ProcessTable.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Proc-ProcessTable.spec 5 Mar 2009 12:15:41 -0000 1.8 +++ perl-Proc-ProcessTable.spec 26 Jul 2009 16:17:56 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Proc-ProcessTable Version: 0.44 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension to access the unix process table License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.44-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Caol?n McNamara - 0.44-3 - defuzz patches to build From jkeating at fedoraproject.org Sun Jul 26 16:18:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:18:13 +0000 (UTC) Subject: rpms/perl-Proc-Simple/devel perl-Proc-Simple.spec,1.1,1.2 Message-ID: <20090726161813.35CB311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Proc-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27509 Modified Files: perl-Proc-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Proc-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Proc-Simple/devel/perl-Proc-Simple.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Proc-Simple.spec 16 Jul 2009 12:43:51 -0000 1.1 +++ perl-Proc-Simple.spec 26 Jul 2009 16:18:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Proc-Simple Version: 1.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Launch and control background processes License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Jan Klepek - 1.25-1 - upgraded version From jkeating at fedoraproject.org Sun Jul 26 16:18:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:18:29 +0000 (UTC) Subject: rpms/perl-Pugs-Compiler-Rule/devel perl-Pugs-Compiler-Rule.spec, 1.10, 1.11 Message-ID: <20090726161829.C0D5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Pugs-Compiler-Rule/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27709 Modified Files: perl-Pugs-Compiler-Rule.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Pugs-Compiler-Rule.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Pugs-Compiler-Rule/devel/perl-Pugs-Compiler-Rule.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Pugs-Compiler-Rule.spec 27 Feb 2009 00:49:42 -0000 1.10 +++ perl-Pugs-Compiler-Rule.spec 26 Jul 2009 16:18:29 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Pugs-Compiler-Rule Version: 0.37 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Compiler for Perl 6 regexes License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.37-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.37-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:18:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:18:45 +0000 (UTC) Subject: rpms/perl-QWizard/devel perl-QWizard.spec,1.7,1.8 Message-ID: <20090726161845.120C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-QWizard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27898 Modified Files: perl-QWizard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-QWizard.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-QWizard/devel/perl-QWizard.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-QWizard.spec 27 Feb 2009 00:50:44 -0000 1.7 +++ perl-QWizard.spec 26 Jul 2009 16:18:44 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-QWizard Version: 3.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A very portable graphical question and answer wizard system License: GPL+ or Artistic Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:19:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:19:00 +0000 (UTC) Subject: rpms/perl-RPC-XML/devel perl-RPC-XML.spec,1.4,1.5 Message-ID: <20090726161900.5263D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-RPC-XML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28106 Modified Files: perl-RPC-XML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-RPC-XML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-RPC-XML/devel/perl-RPC-XML.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-RPC-XML.spec 27 Feb 2009 00:52:06 -0000 1.4 +++ perl-RPC-XML.spec 26 Jul 2009 16:19:00 -0000 1.5 @@ -2,7 +2,7 @@ Name: perl-RPC-XML Version: 0.64 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Set of classes for core data, message and XML handling Group: Development/Libraries @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{perl_vendorlib}/Apache %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.64-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.64-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:19:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:19:16 +0000 (UTC) Subject: rpms/perl-RPM-Specfile/devel perl-RPM-Specfile.spec,1.20,1.21 Message-ID: <20090726161916.798AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-RPM-Specfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28314 Modified Files: perl-RPM-Specfile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-RPM-Specfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-RPM-Specfile/devel/perl-RPM-Specfile.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-RPM-Specfile.spec 27 Feb 2009 00:52:59 -0000 1.20 +++ perl-RPM-Specfile.spec 26 Jul 2009 16:19:16 -0000 1.21 @@ -1,6 +1,6 @@ Name: perl-RPM-Specfile Version: 1.51 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl extension for creating RPM specfiles Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.51-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.51-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:19:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:19:33 +0000 (UTC) Subject: rpms/perl-RPM2/devel perl-RPM2.spec,1.11,1.12 Message-ID: <20090726161933.3732811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-RPM2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28508 Modified Files: perl-RPM2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-RPM2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-RPM2/devel/perl-RPM2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-RPM2.spec 6 Mar 2009 22:57:14 -0000 1.11 +++ perl-RPM2.spec 26 Jul 2009 16:19:32 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-RPM2 Version: 0.68 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl bindings for the RPM Package Manager API License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.68-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Jesse Keating - 0.68-3 - Rebuild for new rpm From jkeating at fedoraproject.org Sun Jul 26 16:19:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:19:47 +0000 (UTC) Subject: rpms/perl-RRD-Simple/devel perl-RRD-Simple.spec,1.10,1.11 Message-ID: <20090726161947.4B20611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-RRD-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28682 Modified Files: perl-RRD-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-RRD-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-RRD-Simple/devel/perl-RRD-Simple.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-RRD-Simple.spec 27 Feb 2009 00:54:59 -0000 1.10 +++ perl-RRD-Simple.spec 26 Jul 2009 16:19:47 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-RRD-Simple Version: 1.44 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple interface to create and store data in RRD files Group: Development/Libraries @@ -84,6 +84,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.44-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.44-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:20:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:20:01 +0000 (UTC) Subject: rpms/perl-RT-Client-REST/devel perl-RT-Client-REST.spec,1.1,1.2 Message-ID: <20090726162001.6DD2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-RT-Client-REST/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28865 Modified Files: perl-RT-Client-REST.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-RT-Client-REST.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-RT-Client-REST/devel/perl-RT-Client-REST.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-RT-Client-REST.spec 24 Apr 2009 06:26:39 -0000 1.1 +++ perl-RT-Client-REST.spec 26 Jul 2009 16:20:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-RT-Client-REST Version: 0.37 -Release: 1%{?dist} +Release: 2%{?dist} # lib/RT/Client/REST.pm -> GPLv2 # see also /usr/bin/rt from the rt3 package License: GPLv2 @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.37-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Chris Weyl 0.37-1 - submission From jkeating at fedoraproject.org Sun Jul 26 16:20:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:20:15 +0000 (UTC) Subject: rpms/perl-Razor-Agent/devel perl-Razor-Agent.spec,1.20,1.21 Message-ID: <20090726162015.994F611C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Razor-Agent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29033 Modified Files: perl-Razor-Agent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Razor-Agent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Razor-Agent/devel/perl-Razor-Agent.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Razor-Agent.spec 23 Feb 2009 20:56:25 -0000 1.20 +++ perl-Razor-Agent.spec 26 Jul 2009 16:20:15 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Use a Razor catalogue server to filter spam messages Name: perl-Razor-Agent Version: 2.85 -Release: 2%{?dist} +Release: 3%{?dist} License: Artistic 2.0 Group: Applications/Internet URL: http://razor.sourceforge.net/ @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.85-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.85-2 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 16:20:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:20:30 +0000 (UTC) Subject: rpms/perl-Readonly/devel perl-Readonly.spec,1.8,1.9 Message-ID: <20090726162030.EB79F11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Readonly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29218 Modified Files: perl-Readonly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Readonly.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Readonly/devel/perl-Readonly.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Readonly.spec 27 Feb 2009 00:55:58 -0000 1.8 +++ perl-Readonly.spec 26 Jul 2009 16:20:30 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Readonly Version: 1.03 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Facility for creating read-only scalars, arrays, hashes Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:20:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:20:46 +0000 (UTC) Subject: rpms/perl-Readonly-XS/devel perl-Readonly-XS.spec,1.17,1.18 Message-ID: <20090726162046.1C74611C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Readonly-XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29400 Modified Files: perl-Readonly-XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Readonly-XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Readonly-XS/devel/perl-Readonly-XS.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Readonly-XS.spec 28 Feb 2009 02:16:14 -0000 1.17 +++ perl-Readonly-XS.spec 26 Jul 2009 16:20:45 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-Readonly-XS Version: 1.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Companion module for Readonly Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Chris Weyl 1.05-1 - update to 1.05 - filter our provides to prevent private lib from showing up From jkeating at fedoraproject.org Sun Jul 26 16:21:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:21:01 +0000 (UTC) Subject: rpms/perl-Regexp-Assemble/devel perl-Regexp-Assemble.spec,1.2,1.3 Message-ID: <20090726162101.509F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Regexp-Assemble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29574 Modified Files: perl-Regexp-Assemble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Regexp-Assemble.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Regexp-Assemble/devel/perl-Regexp-Assemble.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Regexp-Assemble.spec 27 Feb 2009 00:57:50 -0000 1.2 +++ perl-Regexp-Assemble.spec 26 Jul 2009 16:21:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Regexp-Assemble Version: 0.34 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assemble multiple Regular Expressions into a single RE License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.34-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.34-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:21:17 +0000 (UTC) Subject: rpms/perl-Regexp-Common/devel perl-Regexp-Common.spec,1.9,1.10 Message-ID: <20090726162117.D737711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Regexp-Common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29795 Modified Files: perl-Regexp-Common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Regexp-Common.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Regexp-Common/devel/perl-Regexp-Common.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Regexp-Common.spec 27 Feb 2009 00:58:47 -0000 1.9 +++ perl-Regexp-Common.spec 26 Jul 2009 16:21:17 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Regexp-Common Version: 2.122 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Regexp::Common Perl module # Old Artistic 1.0 is also valid, but we won't list it here since it is non-free. # Also, it would throw off the automated license check and flag this package. @@ -44,6 +44,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.122-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.122-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:21:32 +0000 (UTC) Subject: rpms/perl-Regexp-Copy/devel perl-Regexp-Copy.spec,1.2,1.3 Message-ID: <20090726162132.5C90E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Regexp-Copy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29992 Modified Files: perl-Regexp-Copy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Regexp-Copy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Regexp-Copy/devel/perl-Regexp-Copy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Regexp-Copy.spec 27 Feb 2009 00:59:44 -0000 1.2 +++ perl-Regexp-Copy.spec 26 Jul 2009 16:21:32 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Regexp-Copy Version: 0.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Copy Regexp objects License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:21:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:21:48 +0000 (UTC) Subject: rpms/perl-Regexp-Shellish/devel perl-Regexp-Shellish.spec,1.4,1.5 Message-ID: <20090726162148.98C4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Regexp-Shellish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30163 Modified Files: perl-Regexp-Shellish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Regexp-Shellish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Regexp-Shellish/devel/perl-Regexp-Shellish.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Regexp-Shellish.spec 27 Feb 2009 01:00:45 -0000 1.4 +++ perl-Regexp-Shellish.spec 26 Jul 2009 16:21:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Regexp-Shellish Version: 0.93 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Shell-like regular expressions License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.93-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.93-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:22:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:22:06 +0000 (UTC) Subject: rpms/perl-Return-Value/devel perl-Return-Value.spec,1.4,1.5 Message-ID: <20090726162206.C828711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Return-Value/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30379 Modified Files: perl-Return-Value.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Return-Value.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Return-Value/devel/perl-Return-Value.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Return-Value.spec 27 Feb 2009 01:01:44 -0000 1.4 +++ perl-Return-Value.spec 26 Jul 2009 16:22:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Return-Value Version: 1.302 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Polymorphic Return Values Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.302-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.302-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:22:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:22:22 +0000 (UTC) Subject: rpms/perl-SDL/devel perl-SDL.spec,1.9,1.10 Message-ID: <20090726162222.DB98911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SDL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30597 Modified Files: perl-SDL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SDL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SDL/devel/perl-SDL.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-SDL.spec 27 Feb 2009 01:02:42 -0000 1.9 +++ perl-SDL.spec 26 Jul 2009 16:22:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-SDL Version: 2.1.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: SDL bindings for the Perl language Group: Development/Libraries License: LGPLv2+ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:22:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:22:38 +0000 (UTC) Subject: rpms/perl-SGML-Parser-OpenSP/devel perl-SGML-Parser-OpenSP.spec, 1.8, 1.9 Message-ID: <20090726162238.E0F3E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SGML-Parser-OpenSP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30769 Modified Files: perl-SGML-Parser-OpenSP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SGML-Parser-OpenSP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SGML-Parser-OpenSP/devel/perl-SGML-Parser-OpenSP.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-SGML-Parser-OpenSP.spec 27 Feb 2009 01:03:36 -0000 1.8 +++ perl-SGML-Parser-OpenSP.spec 26 Jul 2009 16:22:38 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-SGML-Parser-OpenSP Version: 0.994 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the OpenSP SGML and XML parser Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.994-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.994-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:22:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:22:52 +0000 (UTC) Subject: rpms/perl-SGMLSpm/devel perl-SGMLSpm.spec,1.18,1.19 Message-ID: <20090726162252.CD7F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SGMLSpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30934 Modified Files: perl-SGMLSpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SGMLSpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SGMLSpm/devel/perl-SGMLSpm.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-SGMLSpm.spec 27 Feb 2009 01:04:31 -0000 1.18 +++ perl-SGMLSpm.spec 26 Jul 2009 16:22:52 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-SGMLSpm Version: 1.03ii -Release: 19%{?dist} +Release: 20%{?dist} Summary: Perl library for parsing the output of nsgmls Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03ii-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03ii-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:23:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:23:06 +0000 (UTC) Subject: rpms/perl-SNMP-Info/devel perl-SNMP-Info.spec,1.4,1.5 Message-ID: <20090726162306.CEBCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SNMP-Info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31098 Modified Files: perl-SNMP-Info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SNMP-Info.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SNMP-Info/devel/perl-SNMP-Info.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-SNMP-Info.spec 19 Jun 2009 18:19:50 -0000 1.4 +++ perl-SNMP-Info.spec 26 Jul 2009 16:23:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-SNMP-Info Version: 2.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Object Oriented Perl5 Interface to Network devices and MIBs through SNMP License: BSD Group: Development/Libraries @@ -49,5 +49,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 2.01-1 - upgrade to 2.01 From jkeating at fedoraproject.org Sun Jul 26 16:23:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:23:20 +0000 (UTC) Subject: rpms/perl-SNMP_Session/devel perl-SNMP_Session.spec,1.9,1.10 Message-ID: <20090726162320.9D5CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SNMP_Session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31278 Modified Files: perl-SNMP_Session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SNMP_Session.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SNMP_Session/devel/perl-SNMP_Session.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-SNMP_Session.spec 27 Feb 2009 01:07:14 -0000 1.9 +++ perl-SNMP_Session.spec 26 Jul 2009 16:23:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-SNMP_Session Version: 1.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SNMP support for Perl 5 Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:23:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:23:34 +0000 (UTC) Subject: rpms/perl-SOAP-Lite/devel perl-SOAP-Lite.spec,1.15,1.16 Message-ID: <20090726162334.4107111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SOAP-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31471 Modified Files: perl-SOAP-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SOAP-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SOAP-Lite/devel/perl-SOAP-Lite.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-SOAP-Lite.spec 8 May 2009 12:38:21 -0000 1.15 +++ perl-SOAP-Lite.spec 26 Jul 2009 16:23:34 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-SOAP-Lite Version: 0.710.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Client and server side SOAP implementation License: GPL+ or Artistic Group: Development/Libraries @@ -77,6 +77,9 @@ make test %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.710.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Michael Schwendt - 0.710.08-3 - Filter out perl(LWP::Protocol) Provides, which comes from a file not stored in Perl's search path for modules (#472359). From jkeating at fedoraproject.org Sun Jul 26 16:23:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:23:49 +0000 (UTC) Subject: rpms/perl-SQL-Abstract/devel perl-SQL-Abstract.spec,1.14,1.15 Message-ID: <20090726162349.CF2E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Abstract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31661 Modified Files: perl-SQL-Abstract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Abstract.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Abstract/devel/perl-SQL-Abstract.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-SQL-Abstract.spec 13 Jun 2009 19:33:10 -0000 1.14 +++ perl-SQL-Abstract.spec 26 Jul 2009 16:23:49 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-SQL-Abstract Version: 1.56 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generate SQL from Perl data structures Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.56-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Chris Weyl 1.56-1 - auto-update to 1.56 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 16:24:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:24:03 +0000 (UTC) Subject: rpms/perl-SQL-Abstract-Limit/devel perl-SQL-Abstract-Limit.spec, 1.7, 1.8 Message-ID: <20090726162403.7A2E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Abstract-Limit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31830 Modified Files: perl-SQL-Abstract-Limit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Abstract-Limit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Abstract-Limit/devel/perl-SQL-Abstract-Limit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-SQL-Abstract-Limit.spec 27 Feb 2009 01:10:18 -0000 1.7 +++ perl-SQL-Abstract-Limit.spec 26 Jul 2009 16:24:03 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-SQL-Abstract-Limit Version: 0.141 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable LIMIT Emulation Group: Development/Libraries License: GPL+ or Artistic @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.141-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.141-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:24:18 +0000 (UTC) Subject: rpms/perl-SQL-Library/devel perl-SQL-Library.spec,1.6,1.7 Message-ID: <20090726162418.6743C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Library/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32044 Modified Files: perl-SQL-Library.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Library.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Library/devel/perl-SQL-Library.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-SQL-Library.spec 27 Feb 2009 01:11:14 -0000 1.6 +++ perl-SQL-Library.spec 26 Jul 2009 16:24:18 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-SQL-Library Version: 0.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Manage libraries of SQL easily License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:24:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:24:33 +0000 (UTC) Subject: rpms/perl-SQL-Shell/devel perl-SQL-Shell.spec,1.1,1.2 Message-ID: <20090726162433.7F03A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Shell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32223 Modified Files: perl-SQL-Shell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Shell.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Shell/devel/perl-SQL-Shell.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-SQL-Shell.spec 9 Jun 2009 00:27:22 -0000 1.1 +++ perl-SQL-Shell.spec 26 Jul 2009 16:24:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-SQL-Shell Version: 1.14 -Release: 2%{?dist} +Release: 3%{?dist} # lib/SQL/Shell.pm -> GPLv2 (refers to "the GPL", bundled COPYING is GPLv2) License: GPLv2 Group: Development/Libraries @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man1/sqlsh.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 1.14-2 - add defattr to sqlsh, as suggested in review From jkeating at fedoraproject.org Sun Jul 26 16:24:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:24:49 +0000 (UTC) Subject: rpms/perl-SQL-Statement/devel perl-SQL-Statement.spec,1.9,1.10 Message-ID: <20090726162449.9B05511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Statement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32407 Modified Files: perl-SQL-Statement.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Statement.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Statement/devel/perl-SQL-Statement.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-SQL-Statement.spec 27 Feb 2009 01:12:08 -0000 1.9 +++ perl-SQL-Statement.spec 26 Jul 2009 16:24:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-SQL-Statement Version: 1.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SQL parsing and processing engine Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:25:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:25:05 +0000 (UTC) Subject: rpms/perl-SQL-Translator/devel perl-SQL-Translator.spec,1.9,1.10 Message-ID: <20090726162505.513E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SQL-Translator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32600 Modified Files: perl-SQL-Translator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SQL-Translator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SQL-Translator/devel/perl-SQL-Translator.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-SQL-Translator.spec 27 May 2009 03:29:43 -0000 1.9 +++ perl-SQL-Translator.spec 26 Jul 2009 16:25:05 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-SQL-Translator Version: 0.09004 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manipulate structured data definitions (SQL and more) # see, e.g., lib/SQL/Translator.pm License: GPLv2 @@ -113,6 +113,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09004-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Iain Arnell 0.09004-2 - add missing requires Class::Accessor::Fast and Class::Data::Inheritable From jkeating at fedoraproject.org Sun Jul 26 16:25:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:25:24 +0000 (UTC) Subject: rpms/perl-SUPER/devel perl-SUPER.spec,1.7,1.8 Message-ID: <20090726162524.2E13711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SUPER/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv364 Modified Files: perl-SUPER.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SUPER.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SUPER/devel/perl-SUPER.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-SUPER.spec 27 Feb 2009 01:14:01 -0000 1.7 +++ perl-SUPER.spec 26 Jul 2009 16:25:23 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-SUPER Version: 1.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Sane superclass method dispatcher License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.16-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:25:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:25:45 +0000 (UTC) Subject: rpms/perl-SVG/devel perl-SVG.spec,1.12,1.13 Message-ID: <20090726162545.45E0511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVG/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv666 Modified Files: perl-SVG.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVG.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVG/devel/perl-SVG.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-SVG.spec 27 Feb 2009 01:15:00 -0000 1.12 +++ perl-SVG.spec 26 Jul 2009 16:25:44 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-SVG Version: 2.49 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An extension to generate stand-alone or inline SGV Group: Development/Libraries License: GPL+ or Artistic @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.49-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.49-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:26:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:26:02 +0000 (UTC) Subject: rpms/perl-SVG-Graph/devel perl-SVG-Graph.spec,1.4,1.5 Message-ID: <20090726162602.6A6FC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVG-Graph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv920 Modified Files: perl-SVG-Graph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVG-Graph.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVG-Graph/devel/perl-SVG-Graph.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-SVG-Graph.spec 27 Feb 2009 01:15:57 -0000 1.4 +++ perl-SVG-Graph.spec 26 Jul 2009 16:26:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-SVG-Graph Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Visualize your data in Scalable Vector Graphics (SVG) format License: Artistic 2.0 Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:26:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:26:21 +0000 (UTC) Subject: rpms/perl-SVG-Parser/devel perl-SVG-Parser.spec,1.2,1.3 Message-ID: <20090726162621.0D27311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVG-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1170 Modified Files: perl-SVG-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVG-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVG-Parser/devel/perl-SVG-Parser.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-SVG-Parser.spec 27 Feb 2009 01:16:55 -0000 1.2 +++ perl-SVG-Parser.spec 26 Jul 2009 16:26:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-SVG-Parser Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML Parser for SVG documents License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:26:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:26:36 +0000 (UTC) Subject: rpms/perl-SVK/devel perl-SVK.spec,1.14,1.15 Message-ID: <20090726162636.B28E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1417 Modified Files: perl-SVK.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVK.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVK/devel/perl-SVK.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-SVK.spec 27 Feb 2009 01:17:53 -0000 1.14 +++ perl-SVK.spec 26 Jul 2009 16:26:36 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-SVK Version: 2.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Distributed Version Control System License: GPL+ or Artistic Group: Development/Libraries @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_bindir}/svk %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:26:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:26:51 +0000 (UTC) Subject: rpms/perl-SVN-Mirror/devel perl-SVN-Mirror.spec,1.10,1.11 Message-ID: <20090726162651.840A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVN-Mirror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1624 Modified Files: perl-SVN-Mirror.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVN-Mirror.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVN-Mirror/devel/perl-SVN-Mirror.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-SVN-Mirror.spec 27 Feb 2009 01:18:48 -0000 1.10 +++ perl-SVN-Mirror.spec 26 Jul 2009 16:26:51 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-SVN-Mirror Version: 0.75 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mirror remote repository to local Subversion repository License: GPL+ or Artistic Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_requires %{_bindir}/svm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.75-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.75-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:27:10 +0000 (UTC) Subject: rpms/perl-SVN-Simple/devel perl-SVN-Simple.spec,1.5,1.6 Message-ID: <20090726162710.5884911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SVN-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1810 Modified Files: perl-SVN-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SVN-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SVN-Simple/devel/perl-SVN-Simple.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-SVN-Simple.spec 27 Feb 2009 01:19:43 -0000 1.5 +++ perl-SVN-Simple.spec 26 Jul 2009 16:27:09 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-SVN-Simple Version: 0.27 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A simple interface for writing a delta editor License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.27-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.27-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:27:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:27:27 +0000 (UTC) Subject: rpms/perl-Sane/devel perl-Sane.spec,1.3,1.4 Message-ID: <20090726162727.1011611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2047 Modified Files: perl-Sane.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sane.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sane/devel/perl-Sane.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Sane.spec 5 Jun 2009 05:33:10 -0000 1.3 +++ perl-Sane.spec 26 Jul 2009 16:27:26 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Sane Version: 0.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for the SANE (Scanner Access Now Easy) Project Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Bernard Johnson - 0.03-1 - v 0.03 From jkeating at fedoraproject.org Sun Jul 26 16:27:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:27:41 +0000 (UTC) Subject: rpms/perl-Satcon/devel perl-Satcon.spec,1.3,1.4 Message-ID: <20090726162741.A34D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Satcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2216 Modified Files: perl-Satcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Satcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Satcon/devel/perl-Satcon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Satcon.spec 27 Feb 2009 01:21:32 -0000 1.3 +++ perl-Satcon.spec 26 Jul 2009 16:27:41 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-Satcon Summary: Framework for configuration files Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: https://fedorahosted.org/spacewalk @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:27:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:27:54 +0000 (UTC) Subject: rpms/perl-Scalar-Properties/devel perl-Scalar-Properties.spec, 1.7, 1.8 Message-ID: <20090726162754.4DFFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Scalar-Properties/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2397 Modified Files: perl-Scalar-Properties.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Scalar-Properties.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Scalar-Properties/devel/perl-Scalar-Properties.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Scalar-Properties.spec 27 Feb 2009 01:22:26 -0000 1.7 +++ perl-Scalar-Properties.spec 26 Jul 2009 16:27:54 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Scalar-Properties Version: 0.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Run-time properties on scalar variables Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:28:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:28:08 +0000 (UTC) Subject: rpms/perl-Schedule-Cron-Events/devel perl-Schedule-Cron-Events.spec, 1.4, 1.5 Message-ID: <20090726162808.1CD4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Schedule-Cron-Events/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2573 Modified Files: perl-Schedule-Cron-Events.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Schedule-Cron-Events.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Schedule-Cron-Events/devel/perl-Schedule-Cron-Events.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Schedule-Cron-Events.spec 27 Feb 2009 01:23:23 -0000 1.4 +++ perl-Schedule-Cron-Events.spec 26 Jul 2009 16:28:07 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Schedule-Cron-Events Version: 1.8 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Take a line from a crontab and find out when events will occur License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:28:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:28:23 +0000 (UTC) Subject: rpms/perl-Scope-Guard/devel perl-Scope-Guard.spec,1.4,1.5 Message-ID: <20090726162823.6BAA011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Scope-Guard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2816 Modified Files: perl-Scope-Guard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Scope-Guard.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Scope-Guard/devel/perl-Scope-Guard.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Scope-Guard.spec 27 Feb 2009 01:24:25 -0000 1.4 +++ perl-Scope-Guard.spec 26 Jul 2009 16:28:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Scope-Guard Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lexically scoped resource management License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:28:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:28:37 +0000 (UTC) Subject: rpms/perl-Scope-Upper/devel perl-Scope-Upper.spec,1.5,1.6 Message-ID: <20090726162837.1DA2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Scope-Upper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3006 Modified Files: perl-Scope-Upper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Scope-Upper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Scope-Upper/devel/perl-Scope-Upper.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Scope-Upper.spec 9 Jun 2009 08:39:36 -0000 1.5 +++ perl-Scope-Upper.spec 26 Jul 2009 16:28:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Scope-Upper Version: 0.09 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Scope/Upper.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Chris Weyl 0.09-1 - auto-update to 0.09 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 16:28:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:28:51 +0000 (UTC) Subject: rpms/perl-Sendmail-PMilter/devel perl-Sendmail-PMilter.spec, 1.1, 1.2 Message-ID: <20090726162851.208AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sendmail-PMilter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3208 Modified Files: perl-Sendmail-PMilter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sendmail-PMilter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sendmail-PMilter/devel/perl-Sendmail-PMilter.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Sendmail-PMilter.spec 19 May 2009 08:01:19 -0000 1.1 +++ perl-Sendmail-PMilter.spec 26 Jul 2009 16:28:50 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Sendmail-PMilter Version: 0.97 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl binding of Sendmail Milter protocol License: BSD Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.97-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 John Guthrie 0.97-1 - Re-released with version 0.97. - Added BuildRequirement for perl(Test::More) From jkeating at fedoraproject.org Sun Jul 26 16:29:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:29:05 +0000 (UTC) Subject: rpms/perl-Set-Crontab/devel perl-Set-Crontab.spec,1.2,1.3 Message-ID: <20090726162905.15C5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Set-Crontab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3376 Modified Files: perl-Set-Crontab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Set-Crontab.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Set-Crontab/devel/perl-Set-Crontab.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Set-Crontab.spec 27 Feb 2009 01:26:34 -0000 1.2 +++ perl-Set-Crontab.spec 26 Jul 2009 16:29:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Set-Crontab Version: 1.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Expand crontab(5)-style integer lists License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:29:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:29:19 +0000 (UTC) Subject: rpms/perl-Set-Infinite/devel perl-Set-Infinite.spec,1.7,1.8 Message-ID: <20090726162919.F30AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Set-Infinite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3569 Modified Files: perl-Set-Infinite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Set-Infinite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Set-Infinite/devel/perl-Set-Infinite.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Set-Infinite.spec 27 Feb 2009 01:27:31 -0000 1.7 +++ perl-Set-Infinite.spec 26 Jul 2009 16:29:19 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Set-Infinite Version: 0.63 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sets of intervals License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.63-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.63-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:29:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:29:33 +0000 (UTC) Subject: rpms/perl-Set-IntSpan/devel perl-Set-IntSpan.spec,1.16,1.17 Message-ID: <20090726162933.ECB1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Set-IntSpan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3752 Modified Files: perl-Set-IntSpan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Set-IntSpan.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Set-IntSpan/devel/perl-Set-IntSpan.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Set-IntSpan.spec 27 Feb 2009 01:28:29 -0000 1.16 +++ perl-Set-IntSpan.spec 26 Jul 2009 16:29:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Set-IntSpan Version: 1.13 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for managing sets of integers Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.13-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:29:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:29:48 +0000 (UTC) Subject: rpms/perl-Set-Object/devel perl-Set-Object.spec,1.2,1.3 Message-ID: <20090726162948.222B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Set-Object/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3923 Modified Files: perl-Set-Object.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Set-Object.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Set-Object/devel/perl-Set-Object.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Set-Object.spec 27 Feb 2009 01:29:45 -0000 1.2 +++ perl-Set-Object.spec 26 Jul 2009 16:29:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Set-Object Version: 1.26 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ or Artistic Summary: Set of objects and strings Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:30:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:30:01 +0000 (UTC) Subject: rpms/perl-Set-Scalar/devel perl-Set-Scalar.spec,1.6,1.7 Message-ID: <20090726163001.443ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Set-Scalar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4096 Modified Files: perl-Set-Scalar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Set-Scalar.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Set-Scalar/devel/perl-Set-Scalar.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Set-Scalar.spec 27 Feb 2009 01:30:47 -0000 1.6 +++ perl-Set-Scalar.spec 26 Jul 2009 16:30:01 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Set-Scalar Version: 1.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Basic set operations Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:30:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:30:15 +0000 (UTC) Subject: rpms/perl-Smart-Comments/devel perl-Smart-Comments.spec,1.7,1.8 Message-ID: <20090726163015.1FDBE11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Smart-Comments/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4301 Modified Files: perl-Smart-Comments.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Smart-Comments.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Smart-Comments/devel/perl-Smart-Comments.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Smart-Comments.spec 27 Feb 2009 01:31:43 -0000 1.7 +++ perl-Smart-Comments.spec 26 Jul 2009 16:30:14 -0000 1.8 @@ -1,7 +1,7 @@ Name: perl-Smart-Comments Epoch: 1 Version: v1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Comments that do more than just sit there Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:v1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:v1.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sgrubb at fedoraproject.org Sun Jul 26 16:30:10 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Sun, 26 Jul 2009 16:30:10 +0000 (UTC) Subject: rpms/amtu/devel amtu.spec,1.27,1.28 Message-ID: <20090726163010.D4F5811C048A@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4237 Modified Files: amtu.spec Log Message: * Sun Jul 26 2009 Steve Grubb 1.0.8-1 - new upstream version - Add init script for bootup system check Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/amtu.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- amtu.spec 26 Jul 2009 13:27:12 -0000 1.27 +++ amtu.spec 26 Jul 2009 16:30:10 -0000 1.28 @@ -24,7 +24,7 @@ http://www.radium.ncsc.mil/tpep/library/ %patch1 -p1 %build -./bootstrap +autoreconf -fv --install %configure make %{?_smp_mflags} From jkeating at fedoraproject.org Sun Jul 26 16:30:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:30:29 +0000 (UTC) Subject: rpms/perl-Socket6/devel perl-Socket6.spec,1.10,1.11 Message-ID: <20090726163029.A18A011C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Socket6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4483 Modified Files: perl-Socket6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Socket6.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket6/devel/perl-Socket6.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Socket6.spec 13 Apr 2009 16:20:14 -0000 1.10 +++ perl-Socket6.spec 26 Jul 2009 16:30:29 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Socket6 Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: IPv6 related part of the C socket.h defines and structure manipulators Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Warren Togami - 0.23-1 - 0.23 From jkeating at fedoraproject.org Sun Jul 26 16:30:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:30:45 +0000 (UTC) Subject: rpms/perl-Software-License/devel perl-Software-License.spec, 1.3, 1.4 Message-ID: <20090726163045.5F58311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Software-License/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4694 Modified Files: perl-Software-License.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Software-License.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Software-License/devel/perl-Software-License.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Software-License.spec 22 Jul 2009 19:16:56 -0000 1.3 +++ perl-Software-License.spec 26 Jul 2009 16:30:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Software-License Version: 0.012 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Package that provides templated software licenses License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.012-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 0.012-1 - Update to 0.012 release From jkeating at fedoraproject.org Sun Jul 26 16:30:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:30:59 +0000 (UTC) Subject: rpms/perl-Sort-Key/devel perl-Sort-Key.spec,1.1,1.2 Message-ID: <20090726163059.6500611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sort-Key/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4904 Modified Files: perl-Sort-Key.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sort-Key.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sort-Key/devel/perl-Sort-Key.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Sort-Key.spec 13 Apr 2009 05:27:40 -0000 1.1 +++ perl-Sort-Key.spec 26 Jul 2009 16:30:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Sort-Key Version: 1.28 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fastest way to sort anything in Perl License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Iain Arnell 1.28-1 - Specfile autogenerated by cpanspec 1.77. - don't provide private Perl libs From jkeating at fedoraproject.org Sun Jul 26 16:31:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:31:15 +0000 (UTC) Subject: rpms/perl-Sort-Naturally/devel perl-Sort-Naturally.spec,1.2,1.3 Message-ID: <20090726163115.72AA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sort-Naturally/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5045 Modified Files: perl-Sort-Naturally.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sort-Naturally.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sort-Naturally/devel/perl-Sort-Naturally.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Sort-Naturally.spec 27 Feb 2009 01:34:27 -0000 1.2 +++ perl-Sort-Naturally.spec 26 Jul 2009 16:31:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Sort-Naturally Version: 1.02 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Sort/Naturally.pm License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:31:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:31:31 +0000 (UTC) Subject: rpms/perl-Sort-Versions/devel perl-Sort-Versions.spec,1.10,1.11 Message-ID: <20090726163131.D4C0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sort-Versions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5272 Modified Files: perl-Sort-Versions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sort-Versions.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sort-Versions/devel/perl-Sort-Versions.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Sort-Versions.spec 19 Mar 2009 13:12:31 -0000 1.10 +++ perl-Sort-Versions.spec 26 Jul 2009 16:31:31 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Sort-Versions Version: 1.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Perl module for sorting of revision-like numbers License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Stepan Kasal - 1.5-11 - fix timestamps of the recoded text files From jkeating at fedoraproject.org Sun Jul 26 16:31:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:31:45 +0000 (UTC) Subject: rpms/perl-Spiffy/devel perl-Spiffy.spec,1.7,1.8 Message-ID: <20090726163145.DD0E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spiffy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5448 Modified Files: perl-Spiffy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spiffy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spiffy/devel/perl-Spiffy.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Spiffy.spec 27 Feb 2009 01:36:20 -0000 1.7 +++ perl-Spiffy.spec 26 Jul 2009 16:31:45 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Spiffy Version: 0.30 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Framework for doing object oriented (OO) programming in Perl License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:32:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:32:00 +0000 (UTC) Subject: rpms/perl-Spoon/devel perl-Spoon.spec,1.8,1.9 Message-ID: <20090726163200.1EFDA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spoon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5627 Modified Files: perl-Spoon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spoon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spoon/devel/perl-Spoon.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Spoon.spec 27 Feb 2009 01:37:21 -0000 1.8 +++ perl-Spoon.spec 26 Jul 2009 16:31:59 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Spoon Version: 0.24 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Spiffy Application Building Framework License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.24-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.24-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:32:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:32:14 +0000 (UTC) Subject: rpms/perl-Spreadsheet-ParseExcel/devel perl-Spreadsheet-ParseExcel.spec, 1.18, 1.19 Message-ID: <20090726163214.2379211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spreadsheet-ParseExcel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5798 Modified Files: perl-Spreadsheet-ParseExcel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spreadsheet-ParseExcel.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spreadsheet-ParseExcel/devel/perl-Spreadsheet-ParseExcel.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Spreadsheet-ParseExcel.spec 27 Feb 2009 01:38:19 -0000 1.18 +++ perl-Spreadsheet-ParseExcel.spec 26 Jul 2009 16:32:13 -0000 1.19 @@ -6,7 +6,7 @@ Name: perl-Spreadsheet-ParseExcel Version: 0.4900 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extract information from an Excel file License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4900-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4900-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:32:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:32:30 +0000 (UTC) Subject: rpms/perl-Spreadsheet-ParseExcel-Simple/devel perl-Spreadsheet-ParseExcel-Simple.spec, 1.4, 1.5 Message-ID: <20090726163230.5047A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spreadsheet-ParseExcel-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6010 Modified Files: perl-Spreadsheet-ParseExcel-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spreadsheet-ParseExcel-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spreadsheet-ParseExcel-Simple/devel/perl-Spreadsheet-ParseExcel-Simple.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Spreadsheet-ParseExcel-Simple.spec 27 Feb 2009 01:39:15 -0000 1.4 +++ perl-Spreadsheet-ParseExcel-Simple.spec 26 Jul 2009 16:32:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Spreadsheet-ParseExcel-Simple Version: 1.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple interface to Excel data License: GPLv2+ Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:32:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:32:46 +0000 (UTC) Subject: rpms/perl-Spreadsheet-WriteExcel/devel perl-Spreadsheet-WriteExcel.spec, 1.18, 1.19 Message-ID: <20090726163246.2444011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spreadsheet-WriteExcel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6207 Modified Files: perl-Spreadsheet-WriteExcel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spreadsheet-WriteExcel.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spreadsheet-WriteExcel/devel/perl-Spreadsheet-WriteExcel.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Spreadsheet-WriteExcel.spec 13 Mar 2009 22:57:09 -0000 1.18 +++ perl-Spreadsheet-WriteExcel.spec 26 Jul 2009 16:32:45 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-Spreadsheet-WriteExcel Version: 2.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Write formatted text and numbers to a cross-platform Excel binary file Group: Development/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway 2.25-1 - update to 2.25 From jkeating at fedoraproject.org Sun Jul 26 16:33:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:33:02 +0000 (UTC) Subject: rpms/perl-Spreadsheet-WriteExcel-Simple/devel perl-Spreadsheet-WriteExcel-Simple.spec, 1.4, 1.5 Message-ID: <20090726163302.2DC6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Spreadsheet-WriteExcel-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6423 Modified Files: perl-Spreadsheet-WriteExcel-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Spreadsheet-WriteExcel-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Spreadsheet-WriteExcel-Simple/devel/perl-Spreadsheet-WriteExcel-Simple.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Spreadsheet-WriteExcel-Simple.spec 27 Feb 2009 01:41:06 -0000 1.4 +++ perl-Spreadsheet-WriteExcel-Simple.spec 26 Jul 2009 16:33:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Spreadsheet-WriteExcel-Simple Version: 1.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple single-sheet Excel document creator License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:33:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:33:17 +0000 (UTC) Subject: rpms/perl-Statistics-Descriptive/devel perl-Statistics-Descriptive.spec, 1.6, 1.7 Message-ID: <20090726163317.D1BB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Statistics-Descriptive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6624 Modified Files: perl-Statistics-Descriptive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Statistics-Descriptive.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Statistics-Descriptive/devel/perl-Statistics-Descriptive.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Statistics-Descriptive.spec 27 Feb 2009 01:41:57 -0000 1.6 +++ perl-Statistics-Descriptive.spec 26 Jul 2009 16:33:17 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Statistics-Descriptive Version: 2.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module of basic descriptive statistical functions Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:33:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:33:32 +0000 (UTC) Subject: rpms/perl-String-Approx/devel perl-String-Approx.spec,1.6,1.7 Message-ID: <20090726163332.6AC6911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-Approx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6830 Modified Files: perl-String-Approx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-Approx.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-Approx/devel/perl-String-Approx.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-String-Approx.spec 27 Feb 2009 01:42:52 -0000 1.6 +++ perl-String-Approx.spec 26 Jul 2009 16:33:32 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-String-Approx Version: 3.26 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl extension for approximate matching (fuzzy matching) License: LGPLv2+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.26-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.26-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:33:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:33:49 +0000 (UTC) Subject: rpms/perl-String-CRC32/devel perl-String-CRC32.spec,1.14,1.15 Message-ID: <20090726163349.6CC5111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-CRC32/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7012 Modified Files: perl-String-CRC32.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-CRC32.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-CRC32/devel/perl-String-CRC32.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-String-CRC32.spec 27 Feb 2009 01:43:48 -0000 1.14 +++ perl-String-CRC32.spec 26 Jul 2009 16:33:49 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-String-CRC32 Version: 1.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl interface for cyclic redundancy check generation Group: Development/Libraries License: Public Domain @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:34:03 +0000 (UTC) Subject: rpms/perl-String-Diff/devel perl-String-Diff.spec,1.1,1.2 Message-ID: <20090726163403.743DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7210 Modified Files: perl-String-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-Diff/devel/perl-String-Diff.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-String-Diff.spec 29 Apr 2009 04:47:16 -0000 1.1 +++ perl-String-Diff.spec 26 Jul 2009 16:34:03 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-String-Diff Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple diff to String License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Iain Arnell 0.04-2 - explain explicit requires From jkeating at fedoraproject.org Sun Jul 26 16:34:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:34:17 +0000 (UTC) Subject: rpms/perl-String-Format/devel perl-String-Format.spec,1.7,1.8 Message-ID: <20090726163417.B803711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-Format/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7423 Modified Files: perl-String-Format.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-Format.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-Format/devel/perl-String-Format.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-String-Format.spec 27 Mar 2009 10:22:27 -0000 1.7 +++ perl-String-Format.spec 26 Jul 2009 16:34:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-String-Format Version: 1.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Sprintf-like string formatting capabilities with arbitrary format definitions Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Ralf Cors?pius - 1.15-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:34:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:34:32 +0000 (UTC) Subject: rpms/perl-String-Random/devel perl-String-Random.spec,1.2,1.3 Message-ID: <20090726163432.5BFCA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-Random/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7620 Modified Files: perl-String-Random.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-Random.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-Random/devel/perl-String-Random.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-String-Random.spec 27 Feb 2009 01:45:41 -0000 1.2 +++ perl-String-Random.spec 26 Jul 2009 16:34:32 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-String-Random Version: 0.22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module to generate random strings based on a pattern License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:34:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:34:47 +0000 (UTC) Subject: rpms/perl-String-RewritePrefix/devel perl-String-RewritePrefix.spec, 1.1, 1.2 Message-ID: <20090726163447.9237511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-RewritePrefix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7823 Modified Files: perl-String-RewritePrefix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-RewritePrefix.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-RewritePrefix/devel/perl-String-RewritePrefix.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-String-RewritePrefix.spec 2 Jul 2009 06:06:13 -0000 1.1 +++ perl-String-RewritePrefix.spec 26 Jul 2009 16:34:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-String-RewritePrefix Version: 0.004 -Release: 1%{?dist} +Release: 2%{?dist} # lib/String/RewritePrefix.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.004-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Chris Weyl 0.004-1 - submission From jkeating at fedoraproject.org Sun Jul 26 16:35:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:35:01 +0000 (UTC) Subject: rpms/perl-String-ShellQuote/devel perl-String-ShellQuote.spec, 1.14, 1.15 Message-ID: <20090726163501.473D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-String-ShellQuote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8028 Modified Files: perl-String-ShellQuote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-String-ShellQuote.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-String-ShellQuote/devel/perl-String-ShellQuote.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-String-ShellQuote.spec 27 Feb 2009 01:46:35 -0000 1.14 +++ perl-String-ShellQuote.spec 26 Jul 2009 16:35:01 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-String-ShellQuote Version: 1.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Perl module for quoting strings for passing through the shell License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/String::ShellQuote.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:35:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:35:15 +0000 (UTC) Subject: rpms/perl-Sub-Exporter/devel perl-Sub-Exporter.spec,1.12,1.13 Message-ID: <20090726163515.2BDA111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Exporter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8226 Modified Files: perl-Sub-Exporter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Exporter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Exporter/devel/perl-Sub-Exporter.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Sub-Exporter.spec 27 Feb 2009 01:47:34 -0000 1.12 +++ perl-Sub-Exporter.spec 26 Jul 2009 16:35:15 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Sub-Exporter Version: 0.982 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sophisticated exporter for custom-built routines License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.982-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.982-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:35:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:35:29 +0000 (UTC) Subject: rpms/perl-Sub-Identify/devel perl-Sub-Identify.spec,1.9,1.10 Message-ID: <20090726163529.40C2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Identify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8381 Modified Files: perl-Sub-Identify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Identify.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Identify/devel/perl-Sub-Identify.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Sub-Identify.spec 27 Feb 2009 01:48:27 -0000 1.9 +++ perl-Sub-Identify.spec 26 Jul 2009 16:35:29 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Sub-Identify Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Retrieve names of code references License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:35:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:35:44 +0000 (UTC) Subject: rpms/perl-Sub-Install/devel perl-Sub-Install.spec,1.7,1.8 Message-ID: <20090726163544.B458811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Install/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8583 Modified Files: perl-Sub-Install.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Install.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Install/devel/perl-Sub-Install.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Sub-Install.spec 27 Feb 2009 01:49:23 -0000 1.7 +++ perl-Sub-Install.spec 26 Jul 2009 16:35:44 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Sub-Install Version: 0.925 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Install subroutines into packages easily License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.925-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.925-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:35:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:35:58 +0000 (UTC) Subject: rpms/perl-Sub-Name/devel perl-Sub-Name.spec,1.9,1.10 Message-ID: <20090726163558.5613B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Name/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8779 Modified Files: perl-Sub-Name.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Name.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Name/devel/perl-Sub-Name.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Sub-Name.spec 27 Feb 2009 01:50:16 -0000 1.9 +++ perl-Sub-Name.spec 26 Jul 2009 16:35:58 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Sub-Name Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Name -- or rename -- a sub License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:36:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:36:15 +0000 (UTC) Subject: rpms/perl-Sub-Override/devel perl-Sub-Override.spec,1.2,1.3 Message-ID: <20090726163615.950B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Override/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8972 Modified Files: perl-Sub-Override.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Override.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Override/devel/perl-Sub-Override.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Sub-Override.spec 27 Feb 2009 01:51:11 -0000 1.2 +++ perl-Sub-Override.spec 26 Jul 2009 16:36:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Sub-Override Version: 0.08 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for easily overriding subroutines License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:36:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:36:29 +0000 (UTC) Subject: rpms/perl-Sub-Uplevel/devel perl-Sub-Uplevel.spec,1.18,1.19 Message-ID: <20090726163629.59E1A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-Uplevel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9186 Modified Files: perl-Sub-Uplevel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-Uplevel.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-Uplevel/devel/perl-Sub-Uplevel.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Sub-Uplevel.spec 27 Feb 2009 01:52:06 -0000 1.18 +++ perl-Sub-Uplevel.spec 26 Jul 2009 16:36:29 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-Sub-Uplevel Version: 0.2002 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Apparently run a function in a higher stack frame License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2002-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2002-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:36:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:36:45 +0000 (UTC) Subject: rpms/perl-Sub-WrapPackages/devel perl-Sub-WrapPackages.spec, 1.1, 1.2 Message-ID: <20090726163645.96EFD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sub-WrapPackages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9369 Modified Files: perl-Sub-WrapPackages.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sub-WrapPackages.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sub-WrapPackages/devel/perl-Sub-WrapPackages.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Sub-WrapPackages.spec 17 Jun 2009 20:28:51 -0000 1.1 +++ perl-Sub-WrapPackages.spec 26 Jul 2009 16:36:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Sub-WrapPackages Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Add wrappers around all the subroutines in packages License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.2-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:36:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:36:59 +0000 (UTC) Subject: rpms/perl-Syntax-Highlight-Engine-Kate/devel perl-Syntax-Highlight-Engine-Kate.spec, 1.1, 1.2 Message-ID: <20090726163659.3932C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Syntax-Highlight-Engine-Kate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9572 Modified Files: perl-Syntax-Highlight-Engine-Kate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Syntax-Highlight-Engine-Kate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Syntax-Highlight-Engine-Kate/devel/perl-Syntax-Highlight-Engine-Kate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Syntax-Highlight-Engine-Kate.spec 18 May 2009 05:39:50 -0000 1.1 +++ perl-Syntax-Highlight-Engine-Kate.spec 26 Jul 2009 16:36:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Syntax-Highlight-Engine-Kate Version: 0.04 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Port to Perl of the syntax highlight engine of the Kate texteditor License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Marcela Ma?l??ov? 0.04-4 - add BR From jkeating at fedoraproject.org Sun Jul 26 16:37:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:37:14 +0000 (UTC) Subject: rpms/perl-Syntax-Highlight-Perl-Improved/devel perl-Syntax-Highlight-Perl-Improved.spec, 1.1, 1.2 Message-ID: <20090726163714.3D78811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Syntax-Highlight-Perl-Improved/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9752 Modified Files: perl-Syntax-Highlight-Perl-Improved.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Syntax-Highlight-Perl-Improved.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Syntax-Highlight-Perl-Improved/devel/perl-Syntax-Highlight-Perl-Improved.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Syntax-Highlight-Perl-Improved.spec 15 Jun 2009 18:37:55 -0000 1.1 +++ perl-Syntax-Highlight-Perl-Improved.spec 26 Jul 2009 16:37:14 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Syntax-Highlight-Perl-Improved Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Highlighting of Perl Syntactical Structures License: GPL+ or Artistic Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 1.01-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:37:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:37:29 +0000 (UTC) Subject: rpms/perl-Sys-SigAction/devel perl-Sys-SigAction.spec,1.6,1.7 Message-ID: <20090726163729.48BED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sys-SigAction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9959 Modified Files: perl-Sys-SigAction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sys-SigAction.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-SigAction/devel/perl-Sys-SigAction.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Sys-SigAction.spec 23 Jun 2009 07:37:29 -0000 1.6 +++ perl-Sys-SigAction.spec 26 Jul 2009 16:37:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Sys-SigAction Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for Consistent Signal Handling License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 23 2009 Andreas Thienemann - 0.11-1 - Update to 0.11 From jkeating at fedoraproject.org Sun Jul 26 16:37:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:37:46 +0000 (UTC) Subject: rpms/perl-Sys-Syscall/devel perl-Sys-Syscall.spec,1.3,1.4 Message-ID: <20090726163746.E446111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sys-Syscall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10140 Modified Files: perl-Sys-Syscall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sys-Syscall.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Syscall/devel/perl-Sys-Syscall.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Sys-Syscall.spec 27 Feb 2009 01:53:58 -0000 1.3 +++ perl-Sys-Syscall.spec 26 Jul 2009 16:37:46 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Sys-Syscall Version: 0.22 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Access system calls that Perl doesn't normally provide access to License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:38:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:38:01 +0000 (UTC) Subject: rpms/perl-Sys-Virt/devel perl-Sys-Virt.spec,1.16,1.17 Message-ID: <20090726163801.611F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sys-Virt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10318 Modified Files: perl-Sys-Virt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sys-Virt.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt/devel/perl-Sys-Virt.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Sys-Virt.spec 30 Mar 2009 15:58:31 -0000 1.16 +++ perl-Sys-Virt.spec 26 Jul 2009 16:38:01 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Sys-Virt Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Represent and manage a libvirt hypervisor connection License: GPLv2+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Stepan Kasal - 0.2.0-2 - BR: libvirt >= 0.6.1 From jkeating at fedoraproject.org Sun Jul 26 16:38:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:38:49 +0000 (UTC) Subject: rpms/perl-SystemC-Vregs/devel perl-SystemC-Vregs.spec,1.3,1.4 Message-ID: <20090726163849.A4B4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SystemC-Vregs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11161 Modified Files: perl-SystemC-Vregs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SystemC-Vregs.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemC-Vregs/devel/perl-SystemC-Vregs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-SystemC-Vregs.spec 21 May 2009 16:22:17 -0000 1.3 +++ perl-SystemC-Vregs.spec 26 Jul 2009 16:38:49 -0000 1.4 @@ -12,7 +12,7 @@ Name: perl-SystemC-Vregs Version: 1.463 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Utility routines used by vregs License: LGPLv3+ or Artistic 2.0 @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.463-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chitlesh GOORAH 1.463-1 - new upstream release From jkeating at fedoraproject.org Sun Jul 26 16:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:38:33 +0000 (UTC) Subject: rpms/perl-Sysadm-Install/devel perl-Sysadm-Install.spec,1.4,1.5 Message-ID: <20090726163833.F35C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sysadm-Install/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10774 Modified Files: perl-Sysadm-Install.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sysadm-Install.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sysadm-Install/devel/perl-Sysadm-Install.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Sysadm-Install.spec 3 Jul 2009 09:07:56 -0000 1.4 +++ perl-Sysadm-Install.spec 26 Jul 2009 16:38:33 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Typical installation tasks for system administrators Name: perl-Sysadm-Install Version: 0.29 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Sysadm-Install/ @@ -72,6 +72,9 @@ everything, but suppresses any write act %{_mandir}/man3/Sysadm::Install.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Paul Howarth 0.29-1 - Update to 0.29 - Add proper error handling to print and pipe statements From jkeating at fedoraproject.org Sun Jul 26 16:38:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:38:15 +0000 (UTC) Subject: rpms/perl-Sys-Virt-TCK/devel perl-Sys-Virt-TCK.spec,1.1,1.2 Message-ID: <20090726163815.74FD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10488 Modified Files: perl-Sys-Virt-TCK.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Sys-Virt-TCK.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Sys-Virt-TCK/devel/perl-Sys-Virt-TCK.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Sys-Virt-TCK.spec 23 Jul 2009 16:53:17 -0000 1.1 +++ perl-Sys-Virt-TCK.spec 26 Jul 2009 16:38:15 -0000 1.2 @@ -10,7 +10,7 @@ Summary: Sys::Virt::TCK - libvirt Technology Compatibility Kit Name: perl-%{appname} Version: 0.1.0 -Release: 3%{dist} +Release: 4%{dist} License: GPLv2 or Artistic Group: Development/Tools Source: http://libvirt.org/sources/tck/%{appname}-%{version}.tar.gz @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_localstatedir}/cache/libvirt-tck %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Daniel P. Berrange - 0.1.0-3 - Add disttag, remove extrarelease, add Perl module compat, add missing BRs From jkeating at fedoraproject.org Sun Jul 26 16:39:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:39:17 +0000 (UTC) Subject: rpms/perl-TAP-Formatter-HTML/devel perl-TAP-Formatter-HTML.spec, 1.1, 1.2 Message-ID: <20090726163917.E7F1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TAP-Formatter-HTML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11944 Modified Files: perl-TAP-Formatter-HTML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TAP-Formatter-HTML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Formatter-HTML/devel/perl-TAP-Formatter-HTML.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-TAP-Formatter-HTML.spec 15 Jul 2009 09:28:39 -0000 1.1 +++ perl-TAP-Formatter-HTML.spec 26 Jul 2009 16:39:17 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-TAP-Formatter-HTML Version: 0.07 -Release: 1%{?dist} +Release: 2%{?dist} Summary: TAP Test Harness output delegate for html output License: GPL+ or Artistic Group: Development/Libraries @@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Daniel P. Berrange 0.07-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 16:39:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:39:32 +0000 (UTC) Subject: rpms/perl-TAP-Harness-Archive/devel perl-TAP-Harness-Archive.spec, 1.4, 1.5 Message-ID: <20090726163932.306BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TAP-Harness-Archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12151 Modified Files: perl-TAP-Harness-Archive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TAP-Harness-Archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-Archive/devel/perl-TAP-Harness-Archive.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-TAP-Harness-Archive.spec 27 Feb 2009 01:56:44 -0000 1.4 +++ perl-TAP-Harness-Archive.spec 26 Jul 2009 16:39:32 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-TAP-Harness-Archive Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create an archive of TAP test results License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:39:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:39:48 +0000 (UTC) Subject: rpms/perl-TAP-Harness-JUnit/devel perl-TAP-Harness-JUnit.spec, 1.10, 1.11 Message-ID: <20090726163948.CD1C111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12309 Modified Files: perl-TAP-Harness-JUnit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TAP-Harness-JUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TAP-Harness-JUnit/devel/perl-TAP-Harness-JUnit.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-TAP-Harness-JUnit.spec 20 Jul 2009 12:02:19 -0000 1.10 +++ perl-TAP-Harness-JUnit.spec 26 Jul 2009 16:39:48 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-TAP-Harness-JUnit Version: 0.32 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generate JUnit compatible output from TAP results License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Lubomir Rintel (Good Data) 0.32-2 - Apply the ASCII patch, disable test From sgrubb at fedoraproject.org Sun Jul 26 16:39:49 2009 From: sgrubb at fedoraproject.org (Steve Grubb) Date: Sun, 26 Jul 2009 16:39:49 +0000 (UTC) Subject: rpms/amtu/devel amtu.spec,1.28,1.29 Message-ID: <20090726163949.B5DCA11C00CE@cvs1.fedora.phx.redhat.com> Author: sgrubb Update of /cvs/pkgs/rpms/amtu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12337 Modified Files: amtu.spec Log Message: * Sun Jul 26 2009 Steve Grubb 1.0.8-1 - new upstream version - Add init script for bootup system check Index: amtu.spec =================================================================== RCS file: /cvs/pkgs/rpms/amtu/devel/amtu.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- amtu.spec 26 Jul 2009 16:30:10 -0000 1.28 +++ amtu.spec 26 Jul 2009 16:39:49 -0000 1.29 @@ -24,6 +24,9 @@ http://www.radium.ncsc.mil/tpep/library/ %patch1 -p1 %build +touch ChangeLog +touch NEWS +touch AUTHORS autoreconf -fv --install %configure make %{?_smp_mflags} From jkeating at fedoraproject.org Sun Jul 26 16:40:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:40:02 +0000 (UTC) Subject: rpms/perl-Taint-Runtime/devel perl-Taint-Runtime.spec,1.9,1.10 Message-ID: <20090726164002.144DB11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Taint-Runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12565 Modified Files: perl-Taint-Runtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Taint-Runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Taint-Runtime/devel/perl-Taint-Runtime.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Taint-Runtime.spec 27 Feb 2009 01:58:32 -0000 1.9 +++ perl-Taint-Runtime.spec 26 Jul 2009 16:40:01 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Taint-Runtime Version: 0.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Runtime enable taint checking Group: Development/Libraries License: GPL+ or Artistic @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:40:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:40:18 +0000 (UTC) Subject: rpms/perl-Task-Catalyst/devel perl-Task-Catalyst.spec,1.2,1.3 Message-ID: <20090726164018.2F3E811C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Task-Catalyst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12759 Modified Files: perl-Task-Catalyst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Task-Catalyst.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Task-Catalyst/devel/perl-Task-Catalyst.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Task-Catalyst.spec 28 Mar 2009 06:48:34 -0000 1.2 +++ perl-Task-Catalyst.spec 26 Jul 2009 16:40:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Task-Catalyst Version: 3.0000 -Release: 2%{?dist} +Release: 3%{?dist} # lib/Task/Catalyst.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -113,6 +113,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0000-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Chris Weyl 3.0000-2 - make sure we get catalyst.pl installed, too From jkeating at fedoraproject.org Sun Jul 26 16:40:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:40:33 +0000 (UTC) Subject: rpms/perl-Task-Weaken/devel perl-Task-Weaken.spec,1.3,1.4 Message-ID: <20090726164033.1B22D11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Task-Weaken/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12917 Modified Files: perl-Task-Weaken.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Task-Weaken.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Task-Weaken/devel/perl-Task-Weaken.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Task-Weaken.spec 27 Feb 2009 01:59:27 -0000 1.3 +++ perl-Task-Weaken.spec 26 Jul 2009 16:40:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Task-Weaken Version: 1.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Ensure that a platform has weaken support License: GPLv2+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:40:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:40:47 +0000 (UTC) Subject: rpms/perl-TeX-Hyphen/devel perl-TeX-Hyphen.spec,1.13,1.14 Message-ID: <20090726164047.C74BD11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TeX-Hyphen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13088 Modified Files: perl-TeX-Hyphen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TeX-Hyphen.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TeX-Hyphen/devel/perl-TeX-Hyphen.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-TeX-Hyphen.spec 27 Feb 2009 02:00:23 -0000 1.13 +++ perl-TeX-Hyphen.spec 26 Jul 2009 16:40:47 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-TeX-Hyphen Version: 0.140 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Hyphenate words using TeX's patterns Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.140-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.140-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:41:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:41:01 +0000 (UTC) Subject: rpms/perl-Template-Alloy/devel perl-Template-Alloy.spec,1.7,1.8 Message-ID: <20090726164101.AA03911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-Alloy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13239 Modified Files: perl-Template-Alloy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-Alloy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Alloy/devel/perl-Template-Alloy.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Template-Alloy.spec 27 Feb 2009 02:01:17 -0000 1.7 +++ perl-Template-Alloy.spec 26 Jul 2009 16:41:01 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Template-Alloy Version: 1.013 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Templating tool supporting multiple markup formats # see lib/Template/Alloy.pod License: GPL+ or Artistic @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.013-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.013-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:41:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:41:18 +0000 (UTC) Subject: rpms/perl-Template-GD/devel perl-Template-GD.spec,1.4,1.5 Message-ID: <20090726164118.2496311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-GD/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13395 Modified Files: perl-Template-GD.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-GD.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-GD/devel/perl-Template-GD.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Template-GD.spec 27 Feb 2009 02:02:12 -0000 1.4 +++ perl-Template-GD.spec 26 Jul 2009 16:41:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Template-GD Version: 2.66 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GD plugin(s) for the Template Toolkit Group: Development/Libraries License: GPL+ or Artistic @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.66-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.66-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:41:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:41:33 +0000 (UTC) Subject: rpms/perl-Template-Plugin-Class/devel perl-Template-Plugin-Class.spec, 1.10, 1.11 Message-ID: <20090726164133.715AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13596 Modified Files: perl-Template-Plugin-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-Plugin-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Plugin-Class/devel/perl-Template-Plugin-Class.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Template-Plugin-Class.spec 15 Jul 2009 08:41:29 -0000 1.10 +++ perl-Template-Plugin-Class.spec 26 Jul 2009 16:41:33 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Template-Plugin-Class Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allow calling of class methods on arbitrary classes Group: Development/Libraries License: GPL+ or Artistic @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Paul Howarth - 0.14-1 - Update to 0.14 (fixes FTBFS #511438) - No README in upstream distribution this time From jkeating at fedoraproject.org Sun Jul 26 16:41:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:41:50 +0000 (UTC) Subject: rpms/perl-Template-Plugin-JavaScript/devel perl-Template-Plugin-JavaScript.spec, 1.2, 1.3 Message-ID: <20090726164150.A317511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-Plugin-JavaScript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13805 Modified Files: perl-Template-Plugin-JavaScript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-Plugin-JavaScript.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Plugin-JavaScript/devel/perl-Template-Plugin-JavaScript.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Template-Plugin-JavaScript.spec 27 Feb 2009 02:04:07 -0000 1.2 +++ perl-Template-Plugin-JavaScript.spec 26 Jul 2009 16:41:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Template-Plugin-JavaScript Version: 0.01 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Template/Plugin/JavaScript.pm License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:42:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:42:05 +0000 (UTC) Subject: rpms/perl-Template-Provider-Encoding/devel perl-Template-Provider-Encoding.spec, 1.3, 1.4 Message-ID: <20090726164205.CF33A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-Provider-Encoding/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14044 Modified Files: perl-Template-Provider-Encoding.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-Provider-Encoding.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Provider-Encoding/devel/perl-Template-Provider-Encoding.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Template-Provider-Encoding.spec 27 Feb 2009 02:05:03 -0000 1.3 +++ perl-Template-Provider-Encoding.spec 26 Jul 2009 16:42:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Template-Provider-Encoding Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Explicitly declare encodings of your templates License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:42:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:42:24 +0000 (UTC) Subject: rpms/perl-Template-Timer/devel perl-Template-Timer.spec,1.4,1.5 Message-ID: <20090726164224.4D50C11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Template-Timer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14272 Modified Files: perl-Template-Timer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Template-Timer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Template-Timer/devel/perl-Template-Timer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Template-Timer.spec 10 Apr 2009 15:53:11 -0000 1.4 +++ perl-Template-Timer.spec 26 Jul 2009 16:42:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Template-Timer Version: 1.00 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Template::Timer Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.00-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Chris Weyl 1.00-1 - update to 1.00 From jkeating at fedoraproject.org Sun Jul 26 16:42:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:42:41 +0000 (UTC) Subject: rpms/perl-Term-Completion/devel perl-Term-Completion.spec,1.1,1.2 Message-ID: <20090726164241.681F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-Completion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14495 Modified Files: perl-Term-Completion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-Completion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-Completion/devel/perl-Term-Completion.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Term-Completion.spec 4 May 2009 22:42:01 -0000 1.1 +++ perl-Term-Completion.spec 26 Jul 2009 16:42:41 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Term-Completion Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Term/Completion.pm -> GPL+ or Artistic # lib/Term/Completion/_POSIX.pm -> GPL+ or Artistic # lib/Term/Completion/_readkey.pm -> GPL+ or Artistic @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Chris Weyl 0.91-1 - submission From jkeating at fedoraproject.org Sun Jul 26 16:43:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:43:00 +0000 (UTC) Subject: rpms/perl-Term-ProgressBar/devel perl-Term-ProgressBar.spec, 1.5, 1.6 Message-ID: <20090726164300.420CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-ProgressBar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14756 Modified Files: perl-Term-ProgressBar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-ProgressBar.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-ProgressBar/devel/perl-Term-ProgressBar.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Term-ProgressBar.spec 27 Feb 2009 02:07:51 -0000 1.5 +++ perl-Term-ProgressBar.spec 26 Jul 2009 16:43:00 -0000 1.6 @@ -11,7 +11,7 @@ Name: perl-Term-ProgressBar Version: 2.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Provide a progress meter on a standard terminal License: GPL+ or Artistic Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.09-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:43:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:43:16 +0000 (UTC) Subject: rpms/perl-Term-Prompt/devel perl-Term-Prompt.spec,1.1,1.2 Message-ID: <20090726164316.C7A6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-Prompt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14990 Modified Files: perl-Term-Prompt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-Prompt.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-Prompt/devel/perl-Term-Prompt.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Term-Prompt.spec 4 May 2009 05:38:06 -0000 1.1 +++ perl-Term-Prompt.spec 26 Jul 2009 16:43:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Term-Prompt Version: 1.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for prompting a user for information License: GPL+ or Artistic Group: Development/Libraries @@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Iain Arnell 1.04-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:43:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:43:33 +0000 (UTC) Subject: rpms/perl-Term-ReadLine-Gnu/devel perl-Term-ReadLine-Gnu.spec, 1.4, 1.5 Message-ID: <20090726164333.3BEF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-ReadLine-Gnu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15244 Modified Files: perl-Term-ReadLine-Gnu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-ReadLine-Gnu.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-ReadLine-Gnu/devel/perl-Term-ReadLine-Gnu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Term-ReadLine-Gnu.spec 8 May 2009 09:33:15 -0000 1.4 +++ perl-Term-ReadLine-Gnu.spec 26 Jul 2009 16:43:33 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Term-ReadLine-Gnu Version: 1.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension for the GNU Readline/History Library License: GPL+ or Artistic Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Lubomir Rintel (Good Data) 1.19-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 16:43:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:43:49 +0000 (UTC) Subject: rpms/perl-Term-ReadPassword/devel perl-Term-ReadPassword.spec, 1.4, 1.5 Message-ID: <20090726164349.D13C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-ReadPassword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15460 Modified Files: perl-Term-ReadPassword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-ReadPassword.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-ReadPassword/devel/perl-Term-ReadPassword.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Term-ReadPassword.spec 27 Feb 2009 02:09:45 -0000 1.4 +++ perl-Term-ReadPassword.spec 26 Jul 2009 16:43:49 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Term-ReadPassword Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Asking the user for a password License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:44:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:44:07 +0000 (UTC) Subject: rpms/perl-Term-Size/devel perl-Term-Size.spec,1.3,1.4 Message-ID: <20090726164408.0137411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-Size/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15671 Modified Files: perl-Term-Size.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-Size.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-Size/devel/perl-Term-Size.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Term-Size.spec 27 Mar 2009 04:32:38 -0000 1.3 +++ perl-Term-Size.spec 26 Jul 2009 16:44:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Term-Size Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} # see Copyright License: GPL+ or Artistic Group: Development/Libraries @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Chris Weyl - 0.2-3 - Stripping bad provides of private Perl extension libs From jkeating at fedoraproject.org Sun Jul 26 16:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:44:21 +0000 (UTC) Subject: rpms/perl-Term-Size-Any/devel perl-Term-Size-Any.spec,1.1,1.2 Message-ID: <20090726164421.7D8C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-Size-Any/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15874 Modified Files: perl-Term-Size-Any.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-Size-Any.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-Size-Any/devel/perl-Term-Size-Any.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Term-Size-Any.spec 8 Apr 2009 03:15:54 -0000 1.1 +++ perl-Term-Size-Any.spec 26 Jul 2009 16:44:21 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Term-Size-Any Version: 0.001 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Retrieve terminal size License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 0.001-1 - Specfile autogenerated by cpanspec 1.78. - tweak requires From jkeating at fedoraproject.org Sun Jul 26 16:44:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:44:37 +0000 (UTC) Subject: rpms/perl-Term-Size-Perl/devel perl-Term-Size-Perl.spec,1.1,1.2 Message-ID: <20090726164437.0349111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Term-Size-Perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16071 Modified Files: perl-Term-Size-Perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Term-Size-Perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Term-Size-Perl/devel/perl-Term-Size-Perl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Term-Size-Perl.spec 7 Apr 2009 03:45:37 -0000 1.1 +++ perl-Term-Size-Perl.spec 26 Jul 2009 16:44:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Term-Size-Perl Version: 0.029 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension for retrieving terminal size (Perl version) License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.029-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Iain Arnell 0.029-2 - BR Test::Pod Test::Pod::Coverage From jkeating at fedoraproject.org Sun Jul 26 16:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:44:52 +0000 (UTC) Subject: rpms/perl-TermReadKey/devel perl-TermReadKey.spec,1.22,1.23 Message-ID: <20090726164452.0B43B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TermReadKey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16235 Modified Files: perl-TermReadKey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TermReadKey.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TermReadKey/devel/perl-TermReadKey.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-TermReadKey.spec 27 Feb 2009 02:11:43 -0000 1.22 +++ perl-TermReadKey.spec 26 Jul 2009 16:44:51 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-TermReadKey Version: 2.30 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A perl module for simple terminal control Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.30-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.30-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:45:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:45:06 +0000 (UTC) Subject: rpms/perl-Test-Aggregate/devel perl-Test-Aggregate.spec,1.1,1.2 Message-ID: <20090726164506.B3B9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Aggregate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16437 Modified Files: perl-Test-Aggregate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Aggregate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Aggregate/devel/perl-Test-Aggregate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-Aggregate.spec 21 Apr 2009 21:04:31 -0000 1.1 +++ perl-Test-Aggregate.spec 26 Jul 2009 16:45:06 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-Aggregate Version: 0.35 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Test/Aggregate.pm -> GPL+ or Artistic # lib/Test/Aggregate/Builder.pm -> GPL+ or Artistic License: GPL+ or Artistic @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Chris Weyl 0.35-1 - submission From jkeating at fedoraproject.org Sun Jul 26 16:45:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:45:21 +0000 (UTC) Subject: rpms/perl-Test-Assert/devel perl-Test-Assert.spec,1.2,1.3 Message-ID: <20090726164521.3951E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Assert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16639 Modified Files: perl-Test-Assert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Assert.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Assert/devel/perl-Test-Assert.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Assert.spec 27 Feb 2009 02:12:40 -0000 1.2 +++ perl-Test-Assert.spec 26 Jul 2009 16:45:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Assert Version: 0.0501 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Assertion methods for those who like JUnit License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0501-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0501-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:45:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:45:35 +0000 (UTC) Subject: rpms/perl-Test-Assertions/devel perl-Test-Assertions.spec,1.1,1.2 Message-ID: <20090726164535.A4B0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Assertions/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16828 Modified Files: perl-Test-Assertions.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Assertions.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Assertions/devel/perl-Test-Assertions.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-Assertions.spec 7 Apr 2009 04:02:56 -0000 1.1 +++ perl-Test-Assertions.spec 26 Jul 2009 16:45:35 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-Assertions Version: 1.054 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple set of building blocks for both unit and runtime testing License: GPLv2 Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.054-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Iain Arnell 1.054-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 16:45:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:45:51 +0000 (UTC) Subject: rpms/perl-Test-AutoBuild/devel perl-Test-AutoBuild.spec,1.14,1.15 Message-ID: <20090726164551.068CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-AutoBuild/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17045 Modified Files: perl-Test-AutoBuild.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-AutoBuild.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-AutoBuild/devel/perl-Test-AutoBuild.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Test-AutoBuild.spec 22 Jul 2009 19:42:20 -0000 1.14 +++ perl-Test-AutoBuild.spec 26 Jul 2009 16:45:50 -0000 1.15 @@ -15,7 +15,7 @@ Summary: Framework for performing continuous, unattended, automated software builds Name: perl-%{appname} Version: 1.2.2 -Release: 8%{_extra_release} +Release: 9%{_extra_release} License: GPLv2+ Group: Development/Tools Url: http://autobuild.org/ @@ -455,6 +455,9 @@ fi %config(noreplace) %attr(-,builder,builder) %{_localstatedir}/lib/builder/.cvspass %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 1.2.2-8 - Fix BZR repository tests (rhbz #511594) - Add missing perl(Class::MethodMaker) dep (rhbz #432714) From jkeating at fedoraproject.org Sun Jul 26 16:46:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:46:08 +0000 (UTC) Subject: rpms/perl-Test-Base/devel perl-Test-Base.spec,1.12,1.13 Message-ID: <20090726164608.DD0DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17257 Modified Files: perl-Test-Base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Base.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Base/devel/perl-Test-Base.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Test-Base.spec 17 May 2009 21:49:53 -0000 1.12 +++ perl-Test-Base.spec 26 Jul 2009 16:46:08 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Test-Base Version: 0.58 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Data Driven Testing Framework License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.58-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Steven Pritchard 0.58-1 - Update to 0.58. - BR Test::Deep and Test::Tester. From jkeating at fedoraproject.org Sun Jul 26 16:46:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:46:23 +0000 (UTC) Subject: rpms/perl-Test-Block/devel perl-Test-Block.spec,1.3,1.4 Message-ID: <20090726164623.9E7D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Block/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17430 Modified Files: perl-Test-Block.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Block.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Block/devel/perl-Test-Block.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-Block.spec 27 Feb 2009 02:15:31 -0000 1.3 +++ perl-Test-Block.spec 26 Jul 2009 16:46:23 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-Test-Block Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/Test/Block.pm License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:46:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:46:39 +0000 (UTC) Subject: rpms/perl-Test-CPAN-Meta/devel perl-Test-CPAN-Meta.spec,1.4,1.5 Message-ID: <20090726164639.5146311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-CPAN-Meta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17633 Modified Files: perl-Test-CPAN-Meta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-CPAN-Meta.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-CPAN-Meta/devel/perl-Test-CPAN-Meta.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-CPAN-Meta.spec 27 Feb 2009 02:16:27 -0000 1.4 +++ perl-Test-CPAN-Meta.spec 26 Jul 2009 16:46:39 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-CPAN-Meta Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Validation of the META.yml file in a CPAN distribution License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:46:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:46:54 +0000 (UTC) Subject: rpms/perl-Test-Class/devel perl-Test-Class.spec,1.6,1.7 Message-ID: <20090726164654.AEC2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17823 Modified Files: perl-Test-Class.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Class.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Class/devel/perl-Test-Class.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Test-Class.spec 27 Feb 2009 02:17:20 -0000 1.6 +++ perl-Test-Class.spec 26 Jul 2009 16:46:54 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Test-Class Version: 0.31 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easily create test classes in an xUnit/JUnit style License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:47:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:47:09 +0000 (UTC) Subject: rpms/perl-Test-ClassAPI/devel perl-Test-ClassAPI.spec,1.14,1.15 Message-ID: <20090726164709.E735511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-ClassAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18013 Modified Files: perl-Test-ClassAPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-ClassAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-ClassAPI/devel/perl-Test-ClassAPI.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Test-ClassAPI.spec 20 Jul 2009 13:16:08 -0000 1.14 +++ perl-Test-ClassAPI.spec 26 Jul 2009 16:47:09 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Test-ClassAPI Version: 1.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides basic first-pass API testing for large class trees License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius - 1.06-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:47:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:47:26 +0000 (UTC) Subject: rpms/perl-Test-Cmd/devel perl-Test-Cmd.spec,1.4,1.5 Message-ID: <20090726164726.2C74D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Cmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18203 Modified Files: perl-Test-Cmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Cmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Cmd/devel/perl-Test-Cmd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-Cmd.spec 27 Feb 2009 02:19:17 -0000 1.4 +++ perl-Test-Cmd.spec 26 Jul 2009 16:47:25 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-Cmd Version: 1.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for portable testing of commands and scripts Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:47:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:47:42 +0000 (UTC) Subject: rpms/perl-Test-Compile/devel perl-Test-Compile.spec,1.2,1.3 Message-ID: <20090726164742.B50F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Compile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18435 Modified Files: perl-Test-Compile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Compile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Compile/devel/perl-Test-Compile.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Compile.spec 27 Feb 2009 02:20:12 -0000 1.2 +++ perl-Test-Compile.spec 26 Jul 2009 16:47:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Compile Version: 0.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Check whether Perl module files compile correctly License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:47:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:47:58 +0000 (UTC) Subject: rpms/perl-Test-Deep/devel perl-Test-Deep.spec,1.15,1.16 Message-ID: <20090726164758.C21F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Deep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18627 Modified Files: perl-Test-Deep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Deep.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Deep/devel/perl-Test-Deep.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Test-Deep.spec 27 Feb 2009 02:21:12 -0000 1.15 +++ perl-Test-Deep.spec 26 Jul 2009 16:47:58 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Test-Deep Version: 0.103 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extremely flexible deep comparison License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.103-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.103-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:48:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:48:16 +0000 (UTC) Subject: rpms/perl-Test-Dependencies/devel perl-Test-Dependencies.spec, 1.2, 1.3 Message-ID: <20090726164816.44DD011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Dependencies/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18839 Modified Files: perl-Test-Dependencies.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Dependencies.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Dependencies/devel/perl-Test-Dependencies.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Dependencies.spec 27 Feb 2009 02:22:12 -0000 1.2 +++ perl-Test-Dependencies.spec 26 Jul 2009 16:48:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Dependencies Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Test/Dependencies.pm License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:48:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:48:33 +0000 (UTC) Subject: rpms/perl-Test-Differences/devel perl-Test-Differences.spec, 1.8, 1.9 Message-ID: <20090726164833.702FE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Differences/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19082 Modified Files: perl-Test-Differences.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Differences.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Differences/devel/perl-Test-Differences.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-Differences.spec 13 Mar 2009 23:28:06 -0000 1.8 +++ perl-Test-Differences.spec 26 Jul 2009 16:48:33 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Test-Differences Version: 0.4801 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test strings and data structures and show differences if not ok Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4801-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.4801-1 - update to 0.4801 From jkeating at fedoraproject.org Sun Jul 26 16:48:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:48:47 +0000 (UTC) Subject: rpms/perl-Test-Distribution/devel perl-Test-Distribution.spec, 1.8, 1.9 Message-ID: <20090726164847.9BBBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Distribution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19273 Modified Files: perl-Test-Distribution.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Distribution.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Distribution/devel/perl-Test-Distribution.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-Distribution.spec 27 Feb 2009 02:24:05 -0000 1.8 +++ perl-Test-Distribution.spec 26 Jul 2009 16:48:47 -0000 1.9 @@ -3,7 +3,7 @@ Name: perl-Test-Distribution Version: 2.00 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perform tests on all modules of a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.00-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.00-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:49:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:49:01 +0000 (UTC) Subject: rpms/perl-Test-Email/devel perl-Test-Email.spec,1.2,1.3 Message-ID: <20090726164901.683A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Email/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19467 Modified Files: perl-Test-Email.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Email.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Email/devel/perl-Test-Email.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Email.spec 27 Feb 2009 02:25:00 -0000 1.2 +++ perl-Test-Email.spec 26 Jul 2009 16:49:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Email Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Test Email Contents License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:49:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:49:29 +0000 (UTC) Subject: rpms/perl-Test-Expect/devel perl-Test-Expect.spec,1.5,1.6 Message-ID: <20090726164929.234F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Expect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19828 Modified Files: perl-Test-Expect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Expect.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Expect/devel/perl-Test-Expect.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Test-Expect.spec 27 Feb 2009 02:26:47 -0000 1.5 +++ perl-Test-Expect.spec 26 Jul 2009 16:49:28 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Test-Expect Version: 0.31 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automated driving and testing of terminal-based programs Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:49:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:49:15 +0000 (UTC) Subject: rpms/perl-Test-Exception/devel perl-Test-Exception.spec,1.13,1.14 Message-ID: <20090726164915.8BEBC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Exception/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19640 Modified Files: perl-Test-Exception.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Exception.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Exception/devel/perl-Test-Exception.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Test-Exception.spec 27 Feb 2009 02:25:52 -0000 1.13 +++ perl-Test-Exception.spec 26 Jul 2009 16:49:15 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Test-Exception Version: 0.27 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library of test functions for exception based Perl code License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.27-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.27-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:49:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:49:42 +0000 (UTC) Subject: rpms/perl-Test-File/devel perl-Test-File.spec,1.7,1.8 Message-ID: <20090726164942.4753311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-File/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19985 Modified Files: perl-Test-File.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-File.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-File/devel/perl-Test-File.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Test-File.spec 27 Feb 2009 02:27:43 -0000 1.7 +++ perl-Test-File.spec 26 Jul 2009 16:49:42 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Test-File Version: 1.25 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Test file attributes Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:49:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:49:55 +0000 (UTC) Subject: rpms/perl-Test-File-Contents/devel perl-Test-File-Contents.spec, 1.3, 1.4 Message-ID: <20090726164955.2102C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-File-Contents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20141 Modified Files: perl-Test-File-Contents.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-File-Contents.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-File-Contents/devel/perl-Test-File-Contents.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-File-Contents.spec 27 Feb 2009 02:28:35 -0000 1.3 +++ perl-Test-File-Contents.spec 26 Jul 2009 16:49:55 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Test-File-Contents Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Test routines for examining the contents of files License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:50:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:50:08 +0000 (UTC) Subject: rpms/perl-Test-HTTP-Server-Simple/devel perl-Test-HTTP-Server-Simple.spec, 1.3, 1.4 Message-ID: <20090726165008.9030911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20353 Modified Files: perl-Test-HTTP-Server-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-HTTP-Server-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple/devel/perl-Test-HTTP-Server-Simple.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-HTTP-Server-Simple.spec 28 Feb 2009 03:55:13 -0000 1.3 +++ perl-Test-HTTP-Server-Simple.spec 26 Jul 2009 16:50:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Test-HTTP-Server-Simple Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test::More functions for HTTP::Server::Simple License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Ralf Cors?pius - 0.10-1 - Upstream update. - Reflect upstream maintainer having changed. From jkeating at fedoraproject.org Sun Jul 26 16:50:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:50:27 +0000 (UTC) Subject: rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel perl-Test-HTTP-Server-Simple-StashWarnings.spec, 1.4, 1.5 Message-ID: <20090726165027.5F42611C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20595 Modified Files: perl-Test-HTTP-Server-Simple-StashWarnings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-HTTP-Server-Simple-StashWarnings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-HTTP-Server-Simple-StashWarnings/devel/perl-Test-HTTP-Server-Simple-StashWarnings.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-HTTP-Server-Simple-StashWarnings.spec 20 Jul 2009 11:30:36 -0000 1.4 +++ perl-Test-HTTP-Server-Simple-StashWarnings.spec 26 Jul 2009 16:50:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-HTTP-Server-Simple-StashWarnings Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Catch your forked server's warnings License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius corsepiu at fedoraproject.org> - 0.04-1 - Upstream update. - Change Source0-URL to reflect upstream maintainer change. From jkeating at fedoraproject.org Sun Jul 26 16:50:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:50:40 +0000 (UTC) Subject: rpms/perl-Test-Harness-Straps/devel perl-Test-Harness-Straps.spec, 1.2, 1.3 Message-ID: <20090726165040.2843A11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Harness-Straps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20800 Modified Files: perl-Test-Harness-Straps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Harness-Straps.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Harness-Straps/devel/perl-Test-Harness-Straps.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Harness-Straps.spec 27 Feb 2009 02:31:32 -0000 1.2 +++ perl-Test-Harness-Straps.spec 26 Jul 2009 16:50:40 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Harness-Straps Version: 0.30 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Detailed analysis of test results License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.30-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:50:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:50:54 +0000 (UTC) Subject: rpms/perl-Test-Inline/devel perl-Test-Inline.spec,1.16,1.17 Message-ID: <20090726165054.7B43611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Inline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20990 Modified Files: perl-Test-Inline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Inline.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Inline/devel/perl-Test-Inline.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Test-Inline.spec 20 Jul 2009 10:44:50 -0000 1.16 +++ perl-Test-Inline.spec 26 Jul 2009 16:50:54 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Test-Inline Version: 2.211 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test::Inline Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -79,6 +79,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.211-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ralf Cors?pius - 2.211-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:51:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:51:08 +0000 (UTC) Subject: rpms/perl-Test-JSON/devel perl-Test-JSON.spec,1.1,1.2 Message-ID: <20090726165108.461AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-JSON/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21187 Modified Files: perl-Test-JSON.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-JSON.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-JSON/devel/perl-Test-JSON.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-JSON.spec 27 Feb 2009 00:27:42 -0000 1.1 +++ perl-Test-JSON.spec 26 Jul 2009 16:51:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-JSON Version: 0.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test JSON data License: GPL+ or Artistic Group: Development/Libraries @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 05 2009 Allisson Azevedo 0.06-1 - Initial rpm release. From sergiopr at fedoraproject.org Sun Jul 26 16:51:02 2009 From: sergiopr at fedoraproject.org (Sergio Pascual) Date: Sun, 26 Jul 2009 16:51:02 +0000 (UTC) Subject: rpms/blitz/devel blitz.spec,1.9,1.10 Message-ID: <20090726165102.C3E6C11C00CE@cvs1.fedora.phx.redhat.com> Author: sergiopr Update of /cvs/pkgs/rpms/blitz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21101 Modified Files: blitz.spec Log Message: * Sun Jul 26 2009 Sergio Pascual - 0.9-12 - Noarch doc subpackage Index: blitz.spec =================================================================== RCS file: /cvs/pkgs/rpms/blitz/devel/blitz.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- blitz.spec 24 Jul 2009 18:10:29 -0000 1.9 +++ blitz.spec 26 Jul 2009 16:51:02 -0000 1.10 @@ -1,6 +1,6 @@ Name: blitz Version: 0.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: C++ class library for matrix scientific computing Group: Development/Libraries @@ -33,6 +33,8 @@ application %package doc Summary: The Blitz html docs Group: Documentation +BuildArch: noarch + %description doc HTML documentation files for the Blitz Library @@ -43,31 +45,31 @@ HTML documentation files for the Blitz L %build %configure --enable-shared --disable-static --disable-fortran \ --disable-dependency-tracking --disable-cxx-flags-preset -%{__make} %{?_smp_mflags} +make %{?_smp_mflags} # blitz.pc is created directly by configure # I use sed to add %%libdir/blitz to the include directories of the library # so that different bzconfig.h can be installed for different archs %{__sed} -i -e "s/Cflags: -I\${includedir}/Cflags: -I\${includedir} -I\${libdir}\/blitz\/include/" blitz.pc %install -%{__rm} -fr %{buildroot} -%{__make} DESTDIR=%{buildroot} install -%{__mkdir_p} %{buildroot}%{_libdir}/blitz/include/blitz -%{__mv} %{buildroot}%{_includedir}/blitz/gnu %{buildroot}%{_libdir}/blitz/include/blitz -%{__rm} -rf doc/doxygen/html/installdox +rm -rf %{buildroot} +make DESTDIR=%{buildroot} install +mkdir -p %{buildroot}%{_libdir}/blitz/include/blitz +mv %{buildroot}%{_includedir}/blitz/gnu %{buildroot}%{_libdir}/blitz/include/blitz +rm -rf doc/doxygen/html/installdox # There are some empty files in doc, remove before copying in doc (find -empty | xargs rm) # Put in doc only the source code -%{__rm} -rf examples/.deps -%{__rm} -rf examples/Makefile* +rm -rf examples/.deps +rm -rf examples/Makefile* # Check fails with gcc 4.3 and ppc # Removed for the moment #%check -#%{__make} %{?_smp_mflags} check-testsuite +#make %{?_smp_mflags} check-testsuite %clean -%{__rm} -fr %{buildroot} +rm -rf %{buildroot} %post -p /sbin/ldconfig @@ -106,6 +108,9 @@ fi %changelog +* Sun Jul 26 2009 Sergio Pascual - 0.9-12 +- Noarch doc subpackage + * Fri Jul 24 2009 Fedora Release Engineering - 0.9-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:51:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:51:22 +0000 (UTC) Subject: rpms/perl-Test-Kwalitee/devel perl-Test-Kwalitee.spec,1.2,1.3 Message-ID: <20090726165122.5FB4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Kwalitee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21359 Modified Files: perl-Test-Kwalitee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Kwalitee.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Kwalitee/devel/perl-Test-Kwalitee.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Kwalitee.spec 27 Feb 2009 02:33:23 -0000 1.2 +++ perl-Test-Kwalitee.spec 26 Jul 2009 16:51:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Kwalitee Version: 1.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Test the Kwalitee of a distribution before you release it License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:51:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:51:35 +0000 (UTC) Subject: rpms/perl-Test-LongString/devel perl-Test-LongString.spec, 1.11, 1.12 Message-ID: <20090726165135.6869811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-LongString/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21553 Modified Files: perl-Test-LongString.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-LongString.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-LongString/devel/perl-Test-LongString.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Test-LongString.spec 27 Feb 2009 02:34:15 -0000 1.11 +++ perl-Test-LongString.spec 26 Jul 2009 16:51:35 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Test-LongString Version: 0.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module to test long strings License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:51:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:51:51 +0000 (UTC) Subject: rpms/perl-Test-Manifest/devel perl-Test-Manifest.spec,1.18,1.19 Message-ID: <20090726165151.0C99411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Manifest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21788 Modified Files: perl-Test-Manifest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Manifest.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Manifest/devel/perl-Test-Manifest.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Test-Manifest.spec 27 Feb 2009 02:35:10 -0000 1.18 +++ perl-Test-Manifest.spec 26 Jul 2009 16:51:50 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-Test-Manifest Version: 1.22 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Test case module for Perl Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.22-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.22-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:52:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:52:05 +0000 (UTC) Subject: rpms/perl-Test-Memory-Cycle/devel perl-Test-Memory-Cycle.spec, 1.11, 1.12 Message-ID: <20090726165205.BD48711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Memory-Cycle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21973 Modified Files: perl-Test-Memory-Cycle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Memory-Cycle.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Memory-Cycle/devel/perl-Test-Memory-Cycle.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Test-Memory-Cycle.spec 27 Feb 2009 02:36:03 -0000 1.11 +++ perl-Test-Memory-Cycle.spec 26 Jul 2009 16:52:05 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Test-Memory-Cycle Version: 1.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Check for memory leaks and circular memory references Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:52:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:52:20 +0000 (UTC) Subject: rpms/perl-Test-MinimumVersion/devel perl-Test-MinimumVersion.spec, 1.10, 1.11 Message-ID: <20090726165220.A176011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22162 Modified Files: perl-Test-MinimumVersion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-MinimumVersion.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MinimumVersion/devel/perl-Test-MinimumVersion.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Test-MinimumVersion.spec 20 Jul 2009 11:02:44 -0000 1.10 +++ perl-Test-MinimumVersion.spec 26 Jul 2009 16:52:20 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Test-MinimumVersion Version: 0.011 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Check whether your code requires a newer perl License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.011-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 20 2009 Ralf Cors?pius - 0.011-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:52:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:52:36 +0000 (UTC) Subject: rpms/perl-Test-Mock-LWP/devel perl-Test-Mock-LWP.spec,1.3,1.4 Message-ID: <20090726165236.AF0E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Mock-LWP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22371 Modified Files: perl-Test-Mock-LWP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Mock-LWP.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Mock-LWP/devel/perl-Test-Mock-LWP.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-Mock-LWP.spec 22 May 2009 13:33:01 -0000 1.3 +++ perl-Test-Mock-LWP.spec 26 Jul 2009 16:52:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Test-Mock-LWP Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easy mocking of LWP packages License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Michael Schwendt - 0.05-3 - Filter out perl(..) Provides for HTTP::Request, HTTP::Response and LWP::UserAgent, which come from files not stored in Perl's search From jkeating at fedoraproject.org Sun Jul 26 16:52:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:52:52 +0000 (UTC) Subject: rpms/perl-Test-MockModule/devel perl-Test-MockModule.spec,1.6,1.7 Message-ID: <20090726165252.01BB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-MockModule/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22548 Modified Files: perl-Test-MockModule.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-MockModule.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MockModule/devel/perl-Test-MockModule.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Test-MockModule.spec 27 Feb 2009 02:38:59 -0000 1.6 +++ perl-Test-MockModule.spec 26 Jul 2009 16:52:51 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Test-MockModule Version: 0.05 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Override subroutines in a module for unit testing Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:53:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:53:06 +0000 (UTC) Subject: rpms/perl-Test-MockObject/devel perl-Test-MockObject.spec, 1.19, 1.20 Message-ID: <20090726165306.B873511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-MockObject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22754 Modified Files: perl-Test-MockObject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-MockObject.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MockObject/devel/perl-Test-MockObject.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Test-MockObject.spec 27 Feb 2009 02:39:52 -0000 1.19 +++ perl-Test-MockObject.spec 26 Jul 2009 16:53:06 -0000 1.20 @@ -1,6 +1,6 @@ Name: perl-Test-MockObject Version: 1.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension for emulating troublesome interfaces Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:53:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:53:20 +0000 (UTC) Subject: rpms/perl-Test-MockTime/devel perl-Test-MockTime.spec,1.3,1.4 Message-ID: <20090726165320.5C34111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-MockTime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22940 Modified Files: perl-Test-MockTime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-MockTime.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-MockTime/devel/perl-Test-MockTime.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-MockTime.spec 27 Apr 2009 02:30:50 -0000 1.3 +++ perl-Test-MockTime.spec 26 Jul 2009 16:53:20 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Test-MockTime Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Replaces actual time with simulated time License: GPL+ or Artistic Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ralf Cors?pius 0.12-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 16:53:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:53:34 +0000 (UTC) Subject: rpms/perl-Test-Most/devel perl-Test-Most.spec,1.1,1.2 Message-ID: <20090726165334.59F8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Most/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23098 Modified Files: perl-Test-Most.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Most.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Most/devel/perl-Test-Most.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-Most.spec 22 Apr 2009 06:44:17 -0000 1.1 +++ perl-Test-Most.spec 26 Jul 2009 16:53:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-Most Version: 0.21 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module with test functions and features License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 6 2009 Marcela Ma?l??ov? 0.21-3 - remove unnecesarry requirements From jkeating at fedoraproject.org Sun Jul 26 16:53:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:53:48 +0000 (UTC) Subject: rpms/perl-Test-NeedsDisplay/devel perl-Test-NeedsDisplay.spec, 1.2, 1.3 Message-ID: <20090726165348.A41B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-NeedsDisplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23275 Modified Files: perl-Test-NeedsDisplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-NeedsDisplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-NeedsDisplay/devel/perl-Test-NeedsDisplay.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-NeedsDisplay.spec 27 Feb 2009 02:41:44 -0000 1.2 +++ perl-Test-NeedsDisplay.spec 26 Jul 2009 16:53:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-NeedsDisplay Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ensure that tests needing a display have one License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:54:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:54:03 +0000 (UTC) Subject: rpms/perl-Test-NoWarnings/devel perl-Test-NoWarnings.spec,1.9,1.10 Message-ID: <20090726165403.D736F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-NoWarnings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23491 Modified Files: perl-Test-NoWarnings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-NoWarnings.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-NoWarnings/devel/perl-Test-NoWarnings.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-NoWarnings.spec 27 Feb 2009 02:42:45 -0000 1.9 +++ perl-Test-NoWarnings.spec 26 Jul 2009 16:54:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Test-NoWarnings Version: 0.084 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Make sure you didn't emit any warnings while testing License: LGPLv2+ Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.084-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.084-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:54:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:54:20 +0000 (UTC) Subject: rpms/perl-Test-Number-Delta/devel perl-Test-Number-Delta.spec, 1.4, 1.5 Message-ID: <20090726165420.D9B6B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Number-Delta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23724 Modified Files: perl-Test-Number-Delta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Number-Delta.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Number-Delta/devel/perl-Test-Number-Delta.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-Number-Delta.spec 27 Feb 2009 02:43:42 -0000 1.4 +++ perl-Test-Number-Delta.spec 26 Jul 2009 16:54:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-Number-Delta Version: 1.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Compare the difference between numbers against a given tolerance Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:54:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:54:36 +0000 (UTC) Subject: rpms/perl-Test-Object/devel perl-Test-Object.spec,1.6,1.7 Message-ID: <20090726165436.A588911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Object/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23957 Modified Files: perl-Test-Object.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Object.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Object/devel/perl-Test-Object.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Test-Object.spec 27 Feb 2009 02:44:41 -0000 1.6 +++ perl-Test-Object.spec 26 Jul 2009 16:54:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Test-Object Version: 0.07 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Thoroughly testing objects via registered handlers Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:54:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:54:53 +0000 (UTC) Subject: rpms/perl-Test-Output/devel perl-Test-Output.spec,1.6,1.7 Message-ID: <20090726165453.9B75011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Output/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24184 Modified Files: perl-Test-Output.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Output.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Output/devel/perl-Test-Output.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Test-Output.spec 27 Feb 2009 02:45:40 -0000 1.6 +++ perl-Test-Output.spec 26 Jul 2009 16:54:53 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Test-Output Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utilities to test STDOUT and STDERR messages License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:55:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:55:12 +0000 (UTC) Subject: rpms/perl-Test-Perl-Critic/devel perl-Test-Perl-Critic.spec, 1.8, 1.9 Message-ID: <20090726165512.5087411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Perl-Critic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24456 Modified Files: perl-Test-Perl-Critic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Perl-Critic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Perl-Critic/devel/perl-Test-Perl-Critic.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-Perl-Critic.spec 27 Feb 2009 02:46:40 -0000 1.8 +++ perl-Test-Perl-Critic.spec 26 Jul 2009 16:55:12 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Test-Perl-Critic Version: 1.01 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Use Perl::Critic in test programs Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:55:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:55:27 +0000 (UTC) Subject: rpms/perl-Test-Pod/devel perl-Test-Pod.spec,1.14,1.15 Message-ID: <20090726165527.A3B7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Pod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24665 Modified Files: perl-Test-Pod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Pod.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Pod/devel/perl-Test-Pod.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Test-Pod.spec 27 Feb 2009 02:47:37 -0000 1.14 +++ perl-Test-Pod.spec 26 Jul 2009 16:55:27 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Test-Pod Version: 1.26 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl module for checking for POD errors in files Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.26-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.26-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:55:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:55:44 +0000 (UTC) Subject: rpms/perl-Test-Pod-Coverage/devel perl-Test-Pod-Coverage.spec, 1.11, 1.12 Message-ID: <20090726165544.BB86211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Pod-Coverage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24840 Modified Files: perl-Test-Pod-Coverage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Pod-Coverage.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Pod-Coverage/devel/perl-Test-Pod-Coverage.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Test-Pod-Coverage.spec 27 Feb 2009 02:48:35 -0000 1.11 +++ perl-Test-Pod-Coverage.spec 26 Jul 2009 16:55:44 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Test-Pod-Coverage Version: 1.08 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Check for pod coverage in your distribution Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:55:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:55:59 +0000 (UTC) Subject: rpms/perl-Test-Portability-Files/devel perl-Test-Portability-Files.spec, 1.7, 1.8 Message-ID: <20090726165559.D327911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Portability-Files/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25020 Modified Files: perl-Test-Portability-Files.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Portability-Files.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Portability-Files/devel/perl-Test-Portability-Files.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Test-Portability-Files.spec 27 Feb 2009 02:49:37 -0000 1.7 +++ perl-Test-Portability-Files.spec 26 Jul 2009 16:55:59 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-Test-Portability-Files Version: 0.05 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Check file names portability License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:56:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:56:16 +0000 (UTC) Subject: rpms/perl-Test-Prereq/devel perl-Test-Prereq.spec,1.9,1.10 Message-ID: <20090726165616.616A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Prereq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25189 Modified Files: perl-Test-Prereq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Prereq.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Prereq/devel/perl-Test-Prereq.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-Prereq.spec 27 Feb 2009 02:50:42 -0000 1.9 +++ perl-Test-Prereq.spec 26 Jul 2009 16:56:16 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Test-Prereq Version: 1.036 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Check if Makefile.PL has the right pre-requisites License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.036-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.036-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:56:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:56:30 +0000 (UTC) Subject: rpms/perl-Test-Script/devel perl-Test-Script.spec,1.5,1.6 Message-ID: <20090726165630.A248A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Script/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25373 Modified Files: perl-Test-Script.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Script.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Script/devel/perl-Test-Script.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Test-Script.spec 27 Feb 2009 02:51:43 -0000 1.5 +++ perl-Test-Script.spec 26 Jul 2009 16:56:30 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Test-Script Version: 1.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cross-platform basic tests for scripts License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:56:45 +0000 (UTC) Subject: rpms/perl-Test-Signature/devel perl-Test-Signature.spec,1.2,1.3 Message-ID: <20090726165645.4F7FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Signature/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25583 Modified Files: perl-Test-Signature.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Signature.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Signature/devel/perl-Test-Signature.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-Signature.spec 27 Feb 2009 02:52:43 -0000 1.2 +++ perl-Test-Signature.spec 26 Jul 2009 16:56:45 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-Signature Version: 1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Automated SIGNATURE testing License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:57:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:57:00 +0000 (UTC) Subject: rpms/perl-Test-Spelling/devel perl-Test-Spelling.spec,1.5,1.6 Message-ID: <20090726165700.9566D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Spelling/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25786 Modified Files: perl-Test-Spelling.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Spelling.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Spelling/devel/perl-Test-Spelling.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Test-Spelling.spec 27 Feb 2009 02:53:41 -0000 1.5 +++ perl-Test-Spelling.spec 26 Jul 2009 16:57:00 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Test-Spelling Version: 0.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Check for spelling errors in POD files Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:57:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:57:18 +0000 (UTC) Subject: rpms/perl-Test-Strict/devel perl-Test-Strict.spec,1.4,1.5 Message-ID: <20090726165718.1DEC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Strict/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25986 Modified Files: perl-Test-Strict.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Strict.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Strict/devel/perl-Test-Strict.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-Strict.spec 27 Feb 2009 02:54:40 -0000 1.4 +++ perl-Test-Strict.spec 26 Jul 2009 16:57:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-Strict Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Test/Strict.pm License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:57:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:57:31 +0000 (UTC) Subject: rpms/perl-Test-SubCalls/devel perl-Test-SubCalls.spec,1.8,1.9 Message-ID: <20090726165731.DE1FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-SubCalls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26163 Modified Files: perl-Test-SubCalls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-SubCalls.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-SubCalls/devel/perl-Test-SubCalls.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-SubCalls.spec 27 Feb 2009 02:55:35 -0000 1.8 +++ perl-Test-SubCalls.spec 26 Jul 2009 16:57:31 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Test-SubCalls Version: 1.08 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Track the number of times subs are called Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:57:45 +0000 (UTC) Subject: rpms/perl-Test-Taint/devel perl-Test-Taint.spec,1.9,1.10 Message-ID: <20090726165745.CE0F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Taint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26340 Modified Files: perl-Test-Taint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Taint.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Taint/devel/perl-Test-Taint.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-Taint.spec 27 Feb 2009 02:56:32 -0000 1.9 +++ perl-Test-Taint.spec 26 Jul 2009 16:57:45 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Tools to test taintedness Name: perl-Test-Taint Version: 1.04 -Release: 8%{?dist} +Release: 9%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Test-Taint/ @@ -55,6 +55,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.04-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.04-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:57:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:57:59 +0000 (UTC) Subject: rpms/perl-Test-TempDir/devel perl-Test-TempDir.spec,1.2,1.3 Message-ID: <20090726165759.583C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-TempDir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26523 Modified Files: perl-Test-TempDir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-TempDir.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-TempDir/devel/perl-Test-TempDir.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Test-TempDir.spec 27 Feb 2009 02:57:32 -0000 1.2 +++ perl-Test-TempDir.spec 26 Jul 2009 16:57:59 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Test-TempDir Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Temporary files support for testing License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:58:13 +0000 (UTC) Subject: rpms/perl-Test-Tester/devel perl-Test-Tester.spec,1.9,1.10 Message-ID: <20090726165813.F1BCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Tester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26727 Modified Files: perl-Test-Tester.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Tester.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Tester/devel/perl-Test-Tester.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Test-Tester.spec 27 Feb 2009 02:58:32 -0000 1.9 +++ perl-Test-Tester.spec 26 Jul 2009 16:58:13 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Test-Tester Version: 0.107 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ease testing test modules built with Test::Builder License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.107-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.107-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:58:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:58:27 +0000 (UTC) Subject: rpms/perl-Test-Unit/devel perl-Test-Unit.spec,1.3,1.4 Message-ID: <20090726165827.ACB0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Unit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26877 Modified Files: perl-Test-Unit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Unit.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit/devel/perl-Test-Unit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Test-Unit.spec 27 Feb 2009 02:59:29 -0000 1.3 +++ perl-Test-Unit.spec 26 Jul 2009 16:58:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Test-Unit Version: 0.25 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The PerlUnit testing framework Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.25-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.25-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:58:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:58:41 +0000 (UTC) Subject: rpms/perl-Test-Unit-Lite/devel perl-Test-Unit-Lite.spec,1.4,1.5 Message-ID: <20090726165841.DA5B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Unit-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27059 Modified Files: perl-Test-Unit-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Unit-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Lite/devel/perl-Test-Unit-Lite.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-Unit-Lite.spec 8 Jun 2009 05:23:44 -0000 1.4 +++ perl-Test-Unit-Lite.spec 26 Jul 2009 16:58:41 -0000 1.5 @@ -1,7 +1,7 @@ Name: perl-Test-Unit-Lite Epoch: 1 Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unit testing without external dependencies License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.12-1 - auto-update to 0.12 (by cpan-spec-update 0.01) - Add epoch of 1 (0.1101 => 0.12) From jkeating at fedoraproject.org Sun Jul 26 16:58:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:58:55 +0000 (UTC) Subject: rpms/perl-Test-Unit-Runner-Xml/devel perl-Test-Unit-Runner-Xml.spec, 1.1, 1.2 Message-ID: <20090726165855.9846911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27227 Modified Files: perl-Test-Unit-Runner-Xml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Unit-Runner-Xml.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Unit-Runner-Xml/devel/perl-Test-Unit-Runner-Xml.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-Unit-Runner-Xml.spec 8 Jul 2009 00:14:55 -0000 1.1 +++ perl-Test-Unit-Runner-Xml.spec 26 Jul 2009 16:58:55 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-Unit-Runner-Xml Version: 0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Generate XML reports from unit test results License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Xavier Bachelot 0.1-2 - Fix Summary: and Description:. From jkeating at fedoraproject.org Sun Jul 26 16:59:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:59:13 +0000 (UTC) Subject: rpms/perl-Test-WWW-Mechanize/devel perl-Test-WWW-Mechanize.spec, 1.11, 1.12 Message-ID: <20090726165913.94F1E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-WWW-Mechanize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27410 Modified Files: perl-Test-WWW-Mechanize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-WWW-Mechanize.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-WWW-Mechanize/devel/perl-Test-WWW-Mechanize.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Test-WWW-Mechanize.spec 27 Feb 2009 03:01:27 -0000 1.11 +++ perl-Test-WWW-Mechanize.spec 26 Jul 2009 16:59:13 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-Test-WWW-Mechanize Version: 1.24 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Testing-specific WWW::Mechanize subclass Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.24-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.24-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:59:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:59:26 +0000 (UTC) Subject: rpms/perl-Test-WWW-Mechanize-CGIApp/devel perl-Test-WWW-Mechanize-CGIApp.spec, 1.1, 1.2 Message-ID: <20090726165926.8B5FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-WWW-Mechanize-CGIApp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27580 Modified Files: perl-Test-WWW-Mechanize-CGIApp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-WWW-Mechanize-CGIApp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-WWW-Mechanize-CGIApp/devel/perl-Test-WWW-Mechanize-CGIApp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Test-WWW-Mechanize-CGIApp.spec 17 Jun 2009 20:29:15 -0000 1.1 +++ perl-Test-WWW-Mechanize-CGIApp.spec 26 Jul 2009 16:59:26 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Test-WWW-Mechanize-CGIApp Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test::WWW::Mechanize for CGI::Application License: GPL+ or Artistic Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Dec 22 2008 Emmanuel Seyman 0.05-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 16:59:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:59:42 +0000 (UTC) Subject: rpms/perl-Test-WWW-Mechanize-Catalyst/devel perl-Test-WWW-Mechanize-Catalyst.spec, 1.8, 1.9 Message-ID: <20090726165942.0433011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-WWW-Mechanize-Catalyst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27771 Modified Files: perl-Test-WWW-Mechanize-Catalyst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-WWW-Mechanize-Catalyst.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-WWW-Mechanize-Catalyst/devel/perl-Test-WWW-Mechanize-Catalyst.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Test-WWW-Mechanize-Catalyst.spec 10 Apr 2009 04:55:47 -0000 1.8 +++ perl-Test-WWW-Mechanize-Catalyst.spec 26 Jul 2009 16:59:41 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Test-WWW-Mechanize-Catalyst Version: 0.51 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Test::WWW::Mechanize for Catalyst License: GPL+ or Artistic Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.51-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Chris Weyl 0.51-1 - update to 0.51 From jkeating at fedoraproject.org Sun Jul 26 16:59:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:59:54 +0000 (UTC) Subject: rpms/perl-Test-WWW-Selenium/devel perl-Test-WWW-Selenium.spec, 1.4, 1.5 Message-ID: <20090726165954.9CC0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-WWW-Selenium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27939 Modified Files: perl-Test-WWW-Selenium.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-WWW-Selenium.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-WWW-Selenium/devel/perl-Test-WWW-Selenium.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-WWW-Selenium.spec 27 Feb 2009 03:03:25 -0000 1.4 +++ perl-Test-WWW-Selenium.spec 26 Jul 2009 16:59:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-WWW-Selenium Version: 1.15 -Release: 4.20081021svn%{?dist} +Release: 5.20081021svn%{?dist} Summary: Perl Client for the Selenium Remote Control test tool License: (GPL+ or Artistic) and ASL 2.0 Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-5.20081021svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.15-4.20081021svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:00:22 +0000 (UTC) Subject: rpms/perl-Test-Warn/devel perl-Test-Warn.spec,1.10,1.11 Message-ID: <20090726170022.6CB3411C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-Warn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28175 Modified Files: perl-Test-Warn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-Warn.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-Warn/devel/perl-Test-Warn.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Test-Warn.spec 27 Feb 2009 03:04:19 -0000 1.10 +++ perl-Test-Warn.spec 26 Jul 2009 17:00:21 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Test-Warn Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension to test methods for warnings Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 16:39:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 16:39:03 +0000 (UTC) Subject: rpms/perl-SystemPerl/devel perl-SystemPerl.spec,1.2,1.3 Message-ID: <20090726163903.5D2EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-SystemPerl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11612 Modified Files: perl-SystemPerl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-SystemPerl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-SystemPerl/devel/perl-SystemPerl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-SystemPerl.spec 15 Jul 2009 12:25:31 -0000 1.2 +++ perl-SystemPerl.spec 26 Jul 2009 16:39:03 -0000 1.3 @@ -12,7 +12,7 @@ Name: perl-SystemPerl Version: 1.330 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SystemPerl Perl module License: LGPLv3+ or Artistic 2.0 @@ -165,6 +165,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.330-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Chitlesh GOORAH < chitlesh [AT] fedoraproject DOT org > 1.330-1 - uint_t bug file #RHBZ 511400 - Header Include Bug - New upsteam release From jkeating at fedoraproject.org Sun Jul 26 17:00:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:00:59 +0000 (UTC) Subject: rpms/perl-Test-YAML-Meta/devel perl-Test-YAML-Meta.spec,1.5,1.6 Message-ID: <20090726170059.0869611C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28533 Modified Files: perl-Test-YAML-Meta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-YAML-Meta.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-YAML-Meta/devel/perl-Test-YAML-Meta.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Test-YAML-Meta.spec 22 Jul 2009 19:21:02 -0000 1.5 +++ perl-Test-YAML-Meta.spec 26 Jul 2009 17:00:58 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Test-YAML-Meta Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Validation of the META.yml file in a distribution License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Daniel P. Berrange - 0.12-1 - Update to 0.12 release From jkeating at fedoraproject.org Sun Jul 26 17:01:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:01:20 +0000 (UTC) Subject: rpms/perl-Test-YAML-Valid/devel perl-Test-YAML-Valid.spec,1.4,1.5 Message-ID: <20090726170120.807CE11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-YAML-Valid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28752 Modified Files: perl-Test-YAML-Valid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-YAML-Valid.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-YAML-Valid/devel/perl-Test-YAML-Valid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-YAML-Valid.spec 14 Apr 2009 10:35:22 -0000 1.4 +++ perl-Test-YAML-Valid.spec 26 Jul 2009 17:01:18 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-YAML-Valid Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lets you test the validity of YAML files in unit tests License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Daniel P. Berrange - 0.03-4.fc11 - Add perl(YAML) and perl(YAML::Syck) requirements (rhbz #495401) From jkeating at fedoraproject.org Sun Jul 26 17:01:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:01:38 +0000 (UTC) Subject: rpms/perl-Test-use-ok/devel perl-Test-use-ok.spec,1.4,1.5 Message-ID: <20090726170138.9788111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Test-use-ok/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28986 Modified Files: perl-Test-use-ok.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Test-use-ok.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Test-use-ok/devel/perl-Test-use-ok.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Test-use-ok.spec 27 Feb 2009 03:07:00 -0000 1.4 +++ perl-Test-use-ok.spec 26 Jul 2009 17:01:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Test-use-ok Version: 0.02 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Alternative to Test::More::use_ok License: MIT Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:01:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:01:56 +0000 (UTC) Subject: rpms/perl-Text-ASCIITable/devel perl-Text-ASCIITable.spec,1.4,1.5 Message-ID: <20090726170156.CA6AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-ASCIITable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29170 Modified Files: perl-Text-ASCIITable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-ASCIITable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-ASCIITable/devel/perl-Text-ASCIITable.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Text-ASCIITable.spec 27 Feb 2009 03:07:51 -0000 1.4 +++ perl-Text-ASCIITable.spec 26 Jul 2009 17:01:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Text-ASCIITable Version: 0.18 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Create a nice formatted table using ASCII characters License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:02:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:02:13 +0000 (UTC) Subject: rpms/perl-Text-Aligner/devel perl-Text-Aligner.spec,1.2,1.3 Message-ID: <20090726170213.CA9AC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Aligner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29412 Modified Files: perl-Text-Aligner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Aligner.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Aligner/devel/perl-Text-Aligner.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Text-Aligner.spec 27 Feb 2009 03:08:41 -0000 1.2 +++ perl-Text-Aligner.spec 26 Jul 2009 17:02:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Text-Aligner Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Text::Aligner Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:02:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:02:37 +0000 (UTC) Subject: rpms/perl-Text-Aspell/devel perl-Text-Aspell.spec,1.8,1.9 Message-ID: <20090726170237.91A3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Aspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29677 Modified Files: perl-Text-Aspell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Aspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Aspell/devel/perl-Text-Aspell.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Text-Aspell.spec 27 Feb 2009 03:09:39 -0000 1.8 +++ perl-Text-Aspell.spec 26 Jul 2009 17:02:36 -0000 1.9 @@ -2,7 +2,7 @@ Name: perl-%{base} Version: 0.09 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl interface to the GNU Aspell library Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:02:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:02:52 +0000 (UTC) Subject: rpms/perl-Text-Autoformat/devel perl-Text-Autoformat.spec, 1.12, 1.13 Message-ID: <20090726170252.6014711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Autoformat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29914 Modified Files: perl-Text-Autoformat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Autoformat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Autoformat/devel/perl-Text-Autoformat.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Text-Autoformat.spec 27 Feb 2009 03:10:36 -0000 1.12 +++ perl-Text-Autoformat.spec 26 Jul 2009 17:02:52 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Text-Autoformat Version: 1.14.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Automatic text wrapping and reformatting License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.14.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:03:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:03:15 +0000 (UTC) Subject: rpms/perl-Text-CHM/devel perl-Text-CHM.spec,1.6,1.7 Message-ID: <20090726170315.B944D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-CHM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30106 Modified Files: perl-Text-CHM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-CHM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-CHM/devel/perl-Text-CHM.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-CHM.spec 27 Feb 2009 03:11:33 -0000 1.6 +++ perl-Text-CHM.spec 26 Jul 2009 17:03:15 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Text-CHM Version: 0.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl extension for handling MS Compiled HtmlHelp Files Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:03:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:03:30 +0000 (UTC) Subject: rpms/perl-Text-CSV/devel perl-Text-CSV.spec,1.1,1.2 Message-ID: <20090726170330.D286A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-CSV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30356 Modified Files: perl-Text-CSV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-CSV.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-CSV/devel/perl-Text-CSV.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-CSV.spec 27 Apr 2009 09:02:53 -0000 1.1 +++ perl-Text-CSV.spec 26 Jul 2009 17:03:30 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-CSV Version: 1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Comma-separated values manipulator Group: Development/Libraries @@ -56,5 +56,8 @@ find %{buildroot} -depth -type d -exec r %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jan 31 2009 Johan Vromans 1.10-1 - Initial Fedora RPM version From jkeating at fedoraproject.org Sun Jul 26 17:03:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:03:43 +0000 (UTC) Subject: rpms/perl-Text-CSV-Separator/devel perl-Text-CSV-Separator.spec, 1.3, 1.4 Message-ID: <20090726170343.57FDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-CSV-Separator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30543 Modified Files: perl-Text-CSV-Separator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-CSV-Separator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-CSV-Separator/devel/perl-Text-CSV-Separator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Text-CSV-Separator.spec 27 Feb 2009 03:12:26 -0000 1.3 +++ perl-Text-CSV-Separator.spec 26 Jul 2009 17:03:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Text-CSV-Separator Version: 0.19 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Determine the field separator of a CSV file License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.19-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.19-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:03:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:03:57 +0000 (UTC) Subject: rpms/perl-Text-CSV_XS/devel perl-Text-CSV_XS.spec,1.16,1.17 Message-ID: <20090726170357.F17DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-CSV_XS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30718 Modified Files: perl-Text-CSV_XS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-CSV_XS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-CSV_XS/devel/perl-Text-CSV_XS.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Text-CSV_XS.spec 27 Feb 2009 03:13:23 -0000 1.16 +++ perl-Text-CSV_XS.spec 26 Jul 2009 17:03:57 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Text-CSV_XS Version: 0.58 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Comma-separated values manipulation routines Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.58-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.58-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:04:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:04:14 +0000 (UTC) Subject: rpms/perl-Text-CharWidth/devel perl-Text-CharWidth.spec,1.7,1.8 Message-ID: <20090726170414.8B81A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-CharWidth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30918 Modified Files: perl-Text-CharWidth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-CharWidth.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-CharWidth/devel/perl-Text-CharWidth.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Text-CharWidth.spec 27 Feb 2009 03:14:20 -0000 1.7 +++ perl-Text-CharWidth.spec 26 Jul 2009 17:04:14 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Get number of occupied columns of a string on terminal Name: perl-Text-CharWidth Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Text-CharWidth/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Text::CharWidth.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:04:38 +0000 (UTC) Subject: rpms/perl-Text-Context/devel perl-Text-Context.spec,1.1,1.2 Message-ID: <20090726170438.7A99611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Context/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31154 Modified Files: perl-Text-Context.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Context.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Context/devel/perl-Text-Context.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Context.spec 7 May 2009 03:19:34 -0000 1.1 +++ perl-Text-Context.spec 26 Jul 2009 17:04:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Context Version: 3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Handle highlighting search result context snippets License: GPLv2+ Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 3.6-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:04:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:04:57 +0000 (UTC) Subject: rpms/perl-Text-Context-EitherSide/devel perl-Text-Context-EitherSide.spec, 1.1, 1.2 Message-ID: <20090726170457.013C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Context-EitherSide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31406 Modified Files: perl-Text-Context-EitherSide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Context-EitherSide.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Context-EitherSide/devel/perl-Text-Context-EitherSide.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Context-EitherSide.spec 4 May 2009 23:20:33 -0000 1.1 +++ perl-Text-Context-EitherSide.spec 26 Jul 2009 17:04:56 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Context-EitherSide Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Get n words either side of search keywords License: Artistic 2.0 Group: Development/Libraries @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 1.4-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:05:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:05:16 +0000 (UTC) Subject: rpms/perl-Text-Diff/devel perl-Text-Diff.spec,1.6,1.7 Message-ID: <20090726170516.23BE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31638 Modified Files: perl-Text-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Diff/devel/perl-Text-Diff.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-Diff.spec 27 Feb 2009 03:15:18 -0000 1.6 +++ perl-Text-Diff.spec 26 Jul 2009 17:05:16 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Text-Diff Version: 0.35 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perform diffs on files and record sets License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.35-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:05:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:05:34 +0000 (UTC) Subject: rpms/perl-Text-Diff-HTML/devel perl-Text-Diff-HTML.spec,1.5,1.6 Message-ID: <20090726170534.18AB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Diff-HTML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31877 Modified Files: perl-Text-Diff-HTML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Diff-HTML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Diff-HTML/devel/perl-Text-Diff-HTML.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Text-Diff-HTML.spec 27 Feb 2009 03:16:15 -0000 1.5 +++ perl-Text-Diff-HTML.spec 26 Jul 2009 17:05:33 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Text-Diff-HTML Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XHTML format for Text::Diff::Unified License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:05:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:05:49 +0000 (UTC) Subject: rpms/perl-Text-Emoticon/devel perl-Text-Emoticon.spec,1.1,1.2 Message-ID: <20090726170549.6564A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Emoticon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32109 Modified Files: perl-Text-Emoticon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Emoticon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Emoticon/devel/perl-Text-Emoticon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Emoticon.spec 11 May 2009 03:11:48 -0000 1.1 +++ perl-Text-Emoticon.spec 26 Jul 2009 17:05:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Emoticon Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Factory class for Yahoo! and MSN emoticons License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 0.04-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:06:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:06:05 +0000 (UTC) Subject: rpms/perl-Text-Emoticon-MSN/devel perl-Text-Emoticon-MSN.spec, 1.1, 1.2 Message-ID: <20090726170605.19DEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Emoticon-MSN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32315 Modified Files: perl-Text-Emoticon-MSN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Emoticon-MSN.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Emoticon-MSN/devel/perl-Text-Emoticon-MSN.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Emoticon-MSN.spec 13 May 2009 15:00:42 -0000 1.1 +++ perl-Text-Emoticon-MSN.spec 26 Jul 2009 17:06:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Emoticon-MSN Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Emoticon filter of MSN Messenger License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Iain Arnell 0.04-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:06:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:06:20 +0000 (UTC) Subject: rpms/perl-Text-FindIndent/devel perl-Text-FindIndent.spec,1.2,1.3 Message-ID: <20090726170620.E52F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-FindIndent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32512 Modified Files: perl-Text-FindIndent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-FindIndent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-FindIndent/devel/perl-Text-FindIndent.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Text-FindIndent.spec 27 Feb 2009 03:17:12 -0000 1.2 +++ perl-Text-FindIndent.spec 26 Jul 2009 17:06:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Text-FindIndent Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Heuristically determine the indent style License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:06:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:06:38 +0000 (UTC) Subject: rpms/perl-Text-Format/devel perl-Text-Format.spec,1.3,1.4 Message-ID: <20090726170638.30B0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Format/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32709 Modified Files: perl-Text-Format.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Format.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Format/devel/perl-Text-Format.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Text-Format.spec 27 Feb 2009 03:18:08 -0000 1.3 +++ perl-Text-Format.spec 26 Jul 2009 17:06:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Text-Format Version: 0.52 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Various subroutines to format text Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.52-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.52-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:06:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:06:53 +0000 (UTC) Subject: rpms/perl-Text-Glob/devel perl-Text-Glob.spec,1.10,1.11 Message-ID: <20090726170653.D54F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Glob/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv430 Modified Files: perl-Text-Glob.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Glob.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Glob/devel/perl-Text-Glob.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Text-Glob.spec 27 Feb 2009 03:19:05 -0000 1.10 +++ perl-Text-Glob.spec 26 Jul 2009 17:06:53 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Text-Glob Version: 0.08 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl module to match globbing patterns against text License: GPL+ or Artistic Group: Development/Libraries @@ -45,6 +45,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:07:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:07:10 +0000 (UTC) Subject: rpms/perl-Text-Iconv/devel perl-Text-Iconv.spec,1.15,1.16 Message-ID: <20090726170710.C39AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Iconv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv633 Modified Files: perl-Text-Iconv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Iconv.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Iconv/devel/perl-Text-Iconv.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Text-Iconv.spec 27 Feb 2009 03:20:04 -0000 1.15 +++ perl-Text-Iconv.spec 26 Jul 2009 17:07:10 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Text-Iconv Version: 1.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl interface to iconv() codeset conversion function Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:07:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:07:26 +0000 (UTC) Subject: rpms/perl-Text-Kakasi/devel perl-Text-Kakasi.spec,1.12,1.13 Message-ID: <20090726170726.DC91611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Kakasi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv800 Modified Files: perl-Text-Kakasi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Kakasi.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Kakasi/devel/perl-Text-Kakasi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Text-Kakasi.spec 27 Feb 2009 03:21:01 -0000 1.12 +++ perl-Text-Kakasi.spec 26 Jul 2009 17:07:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Text-Kakasi Version: 2.04 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Kakasi library module for perl Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.04-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.04-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:07:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:07:43 +0000 (UTC) Subject: rpms/perl-Text-Levenshtein/devel perl-Text-Levenshtein.spec, 1.6, 1.7 Message-ID: <20090726170743.9E77F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Levenshtein/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv987 Modified Files: perl-Text-Levenshtein.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Levenshtein.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Levenshtein/devel/perl-Text-Levenshtein.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-Levenshtein.spec 27 Feb 2009 03:21:58 -0000 1.6 +++ perl-Text-Levenshtein.spec 26 Jul 2009 17:07:43 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Text-Levenshtein Version: 0.05 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Implementation of the Levenshtein edit distance License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:08:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:08:01 +0000 (UTC) Subject: rpms/perl-Text-LevenshteinXS/devel perl-Text-LevenshteinXS.spec, 1.6, 1.7 Message-ID: <20090726170801.0E0F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-LevenshteinXS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1194 Modified Files: perl-Text-LevenshteinXS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-LevenshteinXS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-LevenshteinXS/devel/perl-Text-LevenshteinXS.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-LevenshteinXS.spec 27 Feb 2009 03:22:59 -0000 1.6 +++ perl-Text-LevenshteinXS.spec 26 Jul 2009 17:08:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Text-LevenshteinXS Version: 0.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: XS implementation of the Levenshtein edit distance License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:08:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:08:17 +0000 (UTC) Subject: rpms/perl-Text-Markdown/devel perl-Text-Markdown.spec,1.4,1.5 Message-ID: <20090726170817.5F84511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Markdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1443 Modified Files: perl-Text-Markdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Markdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Markdown/devel/perl-Text-Markdown.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Text-Markdown.spec 27 Feb 2009 03:23:58 -0000 1.4 +++ perl-Text-Markdown.spec 26 Jul 2009 17:08:17 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Text-Markdown Version: 1.0.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A text-to-HTML filter Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:08:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:08:33 +0000 (UTC) Subject: rpms/perl-Text-PDF/devel perl-Text-PDF.spec,1.1,1.2 Message-ID: <20090726170833.1971E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-PDF/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1665 Modified Files: perl-Text-PDF.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-PDF.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-PDF/devel/perl-Text-PDF.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-PDF.spec 10 Jun 2009 04:54:03 -0000 1.1 +++ perl-Text-PDF.spec 26 Jul 2009 17:08:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-PDF Version: 0.29a -Release: 1%{?dist} +Release: 2%{?dist} # lib/Text/PDF.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.29a-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Chris Weyl 0.29a-1 - submission - add pdf-tools subpackage From jkeating at fedoraproject.org Sun Jul 26 17:08:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:08:48 +0000 (UTC) Subject: rpms/perl-Text-Password-Pronounceable/devel perl-Text-Password-Pronounceable.spec, 1.1, 1.2 Message-ID: <20090726170848.CE20F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Password-Pronounceable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1847 Modified Files: perl-Text-Password-Pronounceable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Password-Pronounceable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Password-Pronounceable/devel/perl-Text-Password-Pronounceable.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Password-Pronounceable.spec 6 Mar 2009 05:36:59 -0000 1.1 +++ perl-Text-Password-Pronounceable.spec 26 Jul 2009 17:08:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Password-Pronounceable Version: 0.28 -Release: 1%{?dist} +Release: 2%{?dist} # lib/Text/Password/Pronounceable.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Chris Weyl 0.28-1 - submission From jkeating at fedoraproject.org Sun Jul 26 17:09:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:09:03 +0000 (UTC) Subject: rpms/perl-Text-Quoted/devel perl-Text-Quoted.spec,1.15,1.16 Message-ID: <20090726170903.BC2E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Quoted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2013 Modified Files: perl-Text-Quoted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Quoted.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Quoted/devel/perl-Text-Quoted.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Text-Quoted.spec 27 Feb 2009 03:24:55 -0000 1.15 +++ perl-Text-Quoted.spec 26 Jul 2009 17:09:03 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Text-Quoted Version: 2.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extract the structure of a quoted mail message License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:09:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:09:19 +0000 (UTC) Subject: rpms/perl-Text-RecordParser/devel perl-Text-RecordParser.spec, 1.5, 1.6 Message-ID: <20090726170919.414C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-RecordParser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2251 Modified Files: perl-Text-RecordParser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-RecordParser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-RecordParser/devel/perl-Text-RecordParser.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Text-RecordParser.spec 17 May 2009 06:10:48 -0000 1.5 +++ perl-Text-RecordParser.spec 26 Jul 2009 17:09:18 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Text-RecordParser Version: 1.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Read record-oriented files License: GPLv2 Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_mandir}/man[13]/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Chris Weyl 1.3.0-1 - auto-update to 1.3.0 (by cpan-spec-update 0.01) - added a new br on perl(List::Util) (version 0) From jkeating at fedoraproject.org Sun Jul 26 17:09:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:09:35 +0000 (UTC) Subject: rpms/perl-Text-Reform/devel perl-Text-Reform.spec,1.15,1.16 Message-ID: <20090726170935.9F90211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Reform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2636 Modified Files: perl-Text-Reform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Reform.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Reform/devel/perl-Text-Reform.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Text-Reform.spec 27 Feb 2009 03:26:50 -0000 1.15 +++ perl-Text-Reform.spec 26 Jul 2009 17:09:35 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Text-Reform Version: 1.12.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Manual text wrapping and reformatting License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:09:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:09:53 +0000 (UTC) Subject: rpms/perl-Text-Shellwords/devel perl-Text-Shellwords.spec,1.8,1.9 Message-ID: <20090726170953.45B3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Shellwords/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3146 Modified Files: perl-Text-Shellwords.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Shellwords.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Shellwords/devel/perl-Text-Shellwords.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Text-Shellwords.spec 27 Feb 2009 03:27:52 -0000 1.8 +++ perl-Text-Shellwords.spec 26 Jul 2009 17:09:52 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Text-Shellwords Version: 1.08 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A thin wrapper around the shellwords.pl package Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:10:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:10:13 +0000 (UTC) Subject: rpms/perl-Text-SimpleTable/devel perl-Text-SimpleTable.spec, 1.7, 1.8 Message-ID: <20090726171013.1D96A11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-SimpleTable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3495 Modified Files: perl-Text-SimpleTable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-SimpleTable.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-SimpleTable/devel/perl-Text-SimpleTable.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-Text-SimpleTable.spec 27 Feb 2009 03:28:52 -0000 1.7 +++ perl-Text-SimpleTable.spec 26 Jul 2009 17:10:12 -0000 1.8 @@ -2,7 +2,7 @@ Name: perl-Text-SimpleTable Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple Eyecandy ASCII Tables License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:10:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:10:33 +0000 (UTC) Subject: rpms/perl-Text-Smart/devel perl-Text-Smart.spec,1.2,1.3 Message-ID: <20090726171033.DCE0311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3705 Modified Files: perl-Text-Smart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Smart.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Smart/devel/perl-Text-Smart.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Text-Smart.spec 27 Feb 2009 03:29:44 -0000 1.2 +++ perl-Text-Smart.spec 26 Jul 2009 17:10:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Text-Smart Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Processor for 'smart text' markup License: GPLv2 Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:11:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:11:11 +0000 (UTC) Subject: rpms/perl-Text-Smart-Plugin/devel perl-Text-Smart-Plugin.spec, 1.3, 1.4 Message-ID: <20090726171111.1C66B11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Smart-Plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4022 Modified Files: perl-Text-Smart-Plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Smart-Plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Smart-Plugin/devel/perl-Text-Smart-Plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Text-Smart-Plugin.spec 27 Feb 2009 03:30:40 -0000 1.3 +++ perl-Text-Smart-Plugin.spec 26 Jul 2009 17:11:10 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Text-Smart-Plugin Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Template Toolkit plugin for Text::Smart License: GPLv2 Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:11:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:11:31 +0000 (UTC) Subject: rpms/perl-Text-SpellChecker/devel perl-Text-SpellChecker.spec, 1.4, 1.5 Message-ID: <20090726171131.9EE7811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-SpellChecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4314 Modified Files: perl-Text-SpellChecker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-SpellChecker.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-SpellChecker/devel/perl-Text-SpellChecker.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Text-SpellChecker.spec 27 Feb 2009 03:31:33 -0000 1.4 +++ perl-Text-SpellChecker.spec 26 Jul 2009 17:11:31 -0000 1.5 @@ -1,7 +1,7 @@ Summary: OO interface for spell-checking a block of text Name: perl-Text-SpellChecker Version: 0.05 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Text-SpellChecker/ @@ -45,6 +45,9 @@ left off), and highlighting the current %{_mandir}/man3/Text::SpellChecker.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:11:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:11:47 +0000 (UTC) Subject: rpms/perl-Text-Table/devel perl-Text-Table.spec,1.2,1.3 Message-ID: <20090726171147.4DEEA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4548 Modified Files: perl-Text-Table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Table.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Table/devel/perl-Text-Table.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Text-Table.spec 27 Feb 2009 03:32:26 -0000 1.2 +++ perl-Text-Table.spec 26 Jul 2009 17:11:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Text-Table Version: 1.114 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Organize Data in Tables License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.114-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.114-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:12:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:12:04 +0000 (UTC) Subject: rpms/perl-Text-TabularDisplay/devel perl-Text-TabularDisplay.spec, 1.4, 1.5 Message-ID: <20090726171204.833B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-TabularDisplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4764 Modified Files: perl-Text-TabularDisplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-TabularDisplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-TabularDisplay/devel/perl-Text-TabularDisplay.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Text-TabularDisplay.spec 27 Feb 2009 03:33:24 -0000 1.4 +++ perl-Text-TabularDisplay.spec 26 Jul 2009 17:12:04 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Text-TabularDisplay Version: 1.22 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Display text in formatted table output # see TabularDisplay.pm's header License: GPLv2 @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.22-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:12:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:12:24 +0000 (UTC) Subject: rpms/perl-Text-Template/devel perl-Text-Template.spec,1.9,1.10 Message-ID: <20090726171224.8DF8F11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Template/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5015 Modified Files: perl-Text-Template.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Template/devel/perl-Text-Template.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Text-Template.spec 27 Feb 2009 03:34:19 -0000 1.9 +++ perl-Text-Template.spec 26 Jul 2009 17:12:24 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Text-Template Version: 1.45 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Expand template text with embedded Perl Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.45-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.45-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From sergiopr at fedoraproject.org Sun Jul 26 17:12:28 2009 From: sergiopr at fedoraproject.org (Sergio Pascual) Date: Sun, 26 Jul 2009 17:12:28 +0000 (UTC) Subject: rpms/trac-xmlrpc-plugin/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 trac-xmlrpc-plugin.spec, 1.5, 1.6 Message-ID: <20090726171228.0522111C00CE@cvs1.fedora.phx.redhat.com> Author: sergiopr Update of /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5058 Modified Files: .cvsignore sources trac-xmlrpc-plugin.spec Log Message: * Sun Jul 26 2009 Sergio Pascual - 1.0.6-0.1.r6141 - Source code from vcs, rebased to trunk to support json-rpc (bz #509291) Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 15 Jan 2009 09:09:56 -0000 1.3 +++ .cvsignore 26 Jul 2009 17:12:27 -0000 1.4 @@ -1 +1 @@ -xmlrpcplugin-r3074.tar.bz2 +xmlrpcplugin-r6141.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 15 Jan 2009 09:09:56 -0000 1.3 +++ sources 26 Jul 2009 17:12:27 -0000 1.4 @@ -1 +1 @@ -0987b7a1153a32cacbc88d2a2bf89245 xmlrpcplugin-r3074.tar.bz2 +b924a1edc013514aaca5138638751848 xmlrpcplugin-r6141.tar.bz2 Index: trac-xmlrpc-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel/trac-xmlrpc-plugin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- trac-xmlrpc-plugin.spec 25 Feb 2009 21:40:48 -0000 1.5 +++ trac-xmlrpc-plugin.spec 26 Jul 2009 17:12:27 -0000 1.6 @@ -1,12 +1,12 @@ # sitelib for noarch packages, sitearch for others (remove the unneeded one) %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define svnrev 3074 +%define svnrev 6141 %define upname xmlrpcplugin Name: trac-xmlrpc-plugin -Version: 1.0.0 -Release: 0.3.r%{svnrev}%{?dist} +Version: 1.0.6 +Release: 0.1.r%{svnrev}%{?dist} Summary: Allows Trac plugins to export their interface via XML-RPC Group: Applications/Internet @@ -21,8 +21,7 @@ Source0: %{upname}-r%{svnrev}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -BuildRequires: python-devel -BuildRequires: python-setuptools +BuildRequires: python-devel python-setuptools Requires: trac >= 0.11, python-setuptools %description @@ -38,17 +37,20 @@ of Trac's API. %{__python} setup.py build %install -%{__rm} -fr %{buildroot} +%{__rm} -rf %{buildroot} %{__python} setup.py install --skip-build --root %{buildroot} %clean -%{__rm} -fr %{buildroot} +%{__rm} -rf %{buildroot} %files %defattr(-,root,root,-) %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Sergio Pascual - 1.0.6-0.1.r6141 +- Source code from vcs, rebased to trunk to support json-rpc (bz #509291) + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-0.3.r3074 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:12:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:12:40 +0000 (UTC) Subject: rpms/perl-Text-Textile/devel perl-Text-Textile.spec,1.1,1.2 Message-ID: <20090726171240.33AB111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Textile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5253 Modified Files: perl-Text-Textile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Textile.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Textile/devel/perl-Text-Textile.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-Textile.spec 4 May 2009 05:39:46 -0000 1.1 +++ perl-Text-Textile.spec 26 Jul 2009 17:12:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-Textile Version: 2.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A humane web text generator License: GPL+ or Artistic Group: Development/Libraries @@ -53,5 +53,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Iain Arnell 2.03-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:12:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:12:55 +0000 (UTC) Subject: rpms/perl-Text-Tree/devel perl-Text-Tree.spec,1.6,1.7 Message-ID: <20090726171255.4A0F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Tree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5473 Modified Files: perl-Text-Tree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Tree.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Tree/devel/perl-Text-Tree.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-Tree.spec 27 Feb 2009 03:35:13 -0000 1.6 +++ perl-Text-Tree.spec 26 Jul 2009 17:12:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Text-Tree Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Format a simple tree of strings into a textual tree graph License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:13:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:13:11 +0000 (UTC) Subject: rpms/perl-Text-Unidecode/devel perl-Text-Unidecode.spec,1.8,1.9 Message-ID: <20090726171311.3B61F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Unidecode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5671 Modified Files: perl-Text-Unidecode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Unidecode.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Unidecode/devel/perl-Text-Unidecode.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Text-Unidecode.spec 27 Feb 2009 03:36:09 -0000 1.8 +++ perl-Text-Unidecode.spec 26 Jul 2009 17:13:11 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Text-Unidecode Version: 0.04 -Release: 6%{?dist} +Release: 7%{?dist} Summary: US-ASCII transliterations of Unicode text Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:13:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:13:26 +0000 (UTC) Subject: rpms/perl-Text-VimColor/devel perl-Text-VimColor.spec,1.1,1.2 Message-ID: <20090726171326.DD16111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-VimColor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5850 Modified Files: perl-Text-VimColor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-VimColor.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-VimColor/devel/perl-Text-VimColor.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Text-VimColor.spec 24 Apr 2009 06:11:33 -0000 1.1 +++ perl-Text-VimColor.spec 26 Jul 2009 17:13:26 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Text-VimColor Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Syntax color text in HTML or XML using Vim License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/text-vimcolor.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Marcela Ma?l??ov? 0.11-2 - add require and BR From jkeating at fedoraproject.org Sun Jul 26 17:13:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:13:42 +0000 (UTC) Subject: rpms/perl-Text-WikiFormat/devel perl-Text-WikiFormat.spec,1.8,1.9 Message-ID: <20090726171342.2971F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-WikiFormat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6020 Modified Files: perl-Text-WikiFormat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-WikiFormat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-WikiFormat/devel/perl-Text-WikiFormat.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Text-WikiFormat.spec 27 Feb 2009 03:37:06 -0000 1.8 +++ perl-Text-WikiFormat.spec 26 Jul 2009 17:13:41 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Text-WikiFormat Version: 0.79 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Translate Wiki formatted text into other formats Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.79-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.79-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:13:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:13:55 +0000 (UTC) Subject: rpms/perl-Text-WordDiff/devel perl-Text-WordDiff.spec,1.4,1.5 Message-ID: <20090726171355.D0D4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-WordDiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6188 Modified Files: perl-Text-WordDiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-WordDiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-WordDiff/devel/perl-Text-WordDiff.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Text-WordDiff.spec 27 Feb 2009 03:38:06 -0000 1.4 +++ perl-Text-WordDiff.spec 26 Jul 2009 17:13:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Text-WordDiff Version: 0.04 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Track changes between documents License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:14:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:14:10 +0000 (UTC) Subject: rpms/perl-Text-WrapI18N/devel perl-Text-WrapI18N.spec,1.6,1.7 Message-ID: <20090726171410.2A45C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-WrapI18N/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6358 Modified Files: perl-Text-WrapI18N.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-WrapI18N.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-WrapI18N/devel/perl-Text-WrapI18N.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Text-WrapI18N.spec 27 Feb 2009 03:39:05 -0000 1.6 +++ perl-Text-WrapI18N.spec 26 Jul 2009 17:14:09 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Line wrapping with support for several locale setups Name: perl-Text-WrapI18N Version: 0.06 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Text-WrapI18N/ @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Text::WrapI18N.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:14:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:14:27 +0000 (UTC) Subject: rpms/perl-Text-Wrapper/devel perl-Text-Wrapper.spec,1.10,1.11 Message-ID: <20090726171427.5A0C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-Wrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6578 Modified Files: perl-Text-Wrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-Wrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-Wrapper/devel/perl-Text-Wrapper.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Text-Wrapper.spec 27 Feb 2009 03:40:03 -0000 1.10 +++ perl-Text-Wrapper.spec 26 Jul 2009 17:14:27 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Text-Wrapper Version: 1.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple word wrapping perl module License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:14:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:14:42 +0000 (UTC) Subject: rpms/perl-Text-vFile-asData/devel perl-Text-vFile-asData.spec, 1.2, 1.3 Message-ID: <20090726171442.C8E1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Text-vFile-asData/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6765 Modified Files: perl-Text-vFile-asData.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Text-vFile-asData.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Text-vFile-asData/devel/perl-Text-vFile-asData.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Text-vFile-asData.spec 27 Feb 2009 03:41:07 -0000 1.2 +++ perl-Text-vFile-asData.spec 26 Jul 2009 17:14:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Text-vFile-asData Version: 0.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Parse vFile formatted files into data structures License: GPL+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:14:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:14:58 +0000 (UTC) Subject: rpms/perl-TheSchwartz/devel perl-TheSchwartz.spec,1.1,1.2 Message-ID: <20090726171458.86A3011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TheSchwartz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6967 Modified Files: perl-TheSchwartz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TheSchwartz.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TheSchwartz/devel/perl-TheSchwartz.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-TheSchwartz.spec 17 Jun 2009 20:29:02 -0000 1.1 +++ perl-TheSchwartz.spec 26 Jul 2009 17:14:58 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-TheSchwartz Version: 1.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Reliable job queue License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/schwartzmon %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Emmanuel Seyman 1.07-2 - Patch to make the tests pass From jkeating at fedoraproject.org Sun Jul 26 17:15:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:15:18 +0000 (UTC) Subject: rpms/perl-Tie-DBI/devel perl-Tie-DBI.spec,1.6,1.7 Message-ID: <20090726171518.B477511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tie-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7198 Modified Files: perl-Tie-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tie-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tie-DBI/devel/perl-Tie-DBI.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Tie-DBI.spec 27 Feb 2009 03:42:04 -0000 1.6 +++ perl-Tie-DBI.spec 26 Jul 2009 17:15:18 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Tie-DBI Version: 1.02 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tie hashes to DBI relational databases Group: Development/Libraries License: GPL+ or Artistic @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:15:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:15:37 +0000 (UTC) Subject: rpms/perl-Tie-EncryptedHash/devel perl-Tie-EncryptedHash.spec, 1.8, 1.9 Message-ID: <20090726171537.6F95411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tie-EncryptedHash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7409 Modified Files: perl-Tie-EncryptedHash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tie-EncryptedHash.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tie-EncryptedHash/devel/perl-Tie-EncryptedHash.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Tie-EncryptedHash.spec 27 Feb 2009 03:42:56 -0000 1.8 +++ perl-Tie-EncryptedHash.spec 26 Jul 2009 17:15:37 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Hashes (and objects based on hashes) with encrypting fields Name: perl-Tie-EncryptedHash Version: 1.24 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Tie-EncryptedHash/ @@ -60,6 +60,9 @@ default, but can be instructed to employ %{_mandir}/man3/Tie::EncryptedHash.3pm* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:15:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:15:55 +0000 (UTC) Subject: rpms/perl-Tie-IxHash/devel perl-Tie-IxHash.spec,1.13,1.14 Message-ID: <20090726171555.80AB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tie-IxHash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7634 Modified Files: perl-Tie-IxHash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tie-IxHash.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tie-IxHash/devel/perl-Tie-IxHash.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Tie-IxHash.spec 27 Feb 2009 03:43:47 -0000 1.13 +++ perl-Tie-IxHash.spec 26 Jul 2009 17:15:55 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Tie-IxHash Version: 1.21 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Ordered associative arrays for Perl Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.21-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.21-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:16:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:16:14 +0000 (UTC) Subject: rpms/perl-Tie-RefHash-Weak/devel perl-Tie-RefHash-Weak.spec, 1.2, 1.3 Message-ID: <20090726171614.1FDED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tie-RefHash-Weak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7880 Modified Files: perl-Tie-RefHash-Weak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tie-RefHash-Weak.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tie-RefHash-Weak/devel/perl-Tie-RefHash-Weak.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Tie-RefHash-Weak.spec 27 Feb 2009 03:44:44 -0000 1.2 +++ perl-Tie-RefHash-Weak.spec 26 Jul 2009 17:16:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Tie-RefHash-Weak Version: 0.09 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tie::RefHash subclass with weakened references in the keys License: GPL+ or Artistic) Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.09-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:16:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:16:30 +0000 (UTC) Subject: rpms/perl-Tie-ToObject/devel perl-Tie-ToObject.spec,1.3,1.4 Message-ID: <20090726171630.121AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tie-ToObject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8090 Modified Files: perl-Tie-ToObject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tie-ToObject.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tie-ToObject/devel/perl-Tie-ToObject.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Tie-ToObject.spec 27 Feb 2009 03:45:37 -0000 1.3 +++ perl-Tie-ToObject.spec 26 Jul 2009 17:16:29 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-Tie-ToObject Version: 0.03 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Tie to an existing object @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:16:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:16:47 +0000 (UTC) Subject: rpms/perl-Time-Duration/devel perl-Time-Duration.spec,1.4,1.5 Message-ID: <20090726171647.3D21411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Duration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8293 Modified Files: perl-Time-Duration.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Duration.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Duration/devel/perl-Time-Duration.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Time-Duration.spec 27 Feb 2009 03:46:30 -0000 1.4 +++ perl-Time-Duration.spec 26 Jul 2009 17:16:47 -0000 1.5 @@ -1,7 +1,7 @@ Name: perl-Time-Duration Summary: Time-Duration - rounded or exact English expression of durations Version: 1.06 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ or Artistic 2.0 Group: Development/Libraries Url: http://search.cpan.org/dist/Time-Duration/ @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:17:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:17:05 +0000 (UTC) Subject: rpms/perl-Time-Duration-Parse/devel perl-Time-Duration-Parse.spec, 1.2, 1.3 Message-ID: <20090726171705.00E4A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Duration-Parse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8478 Modified Files: perl-Time-Duration-Parse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Duration-Parse.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Duration-Parse/devel/perl-Time-Duration-Parse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Time-Duration-Parse.spec 27 Feb 2009 03:47:27 -0000 1.2 +++ perl-Time-Duration-Parse.spec 26 Jul 2009 17:17:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Time-Duration-Parse Version: 0.06 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/Time/Duration/Parse.pm License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.06-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:17:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:17:25 +0000 (UTC) Subject: rpms/perl-Time-Period/devel perl-Time-Period.spec,1.4,1.5 Message-ID: <20090726171725.0784811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Period/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8686 Modified Files: perl-Time-Period.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Period.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Period/devel/perl-Time-Period.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Time-Period.spec 27 Feb 2009 03:48:22 -0000 1.4 +++ perl-Time-Period.spec 26 Jul 2009 17:17:24 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Time-Period Version: 1.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Perl module to deal with time periods Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:17:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:17:45 +0000 (UTC) Subject: rpms/perl-Time-Piece-MySQL/devel perl-Time-Piece-MySQL.spec, 1.6, 1.7 Message-ID: <20090726171745.B7CDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Piece-MySQL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8930 Modified Files: perl-Time-Piece-MySQL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Piece-MySQL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Piece-MySQL/devel/perl-Time-Piece-MySQL.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Time-Piece-MySQL.spec 27 Feb 2009 03:49:17 -0000 1.6 +++ perl-Time-Piece-MySQL.spec 26 Jul 2009 17:17:45 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-Time-Piece-MySQL Version: 0.05 -Release: 7%{?dist} +Release: 8%{?dist} Summary: MySQL-specific methods for Time::Piece Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:18:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:18:04 +0000 (UTC) Subject: rpms/perl-Time-Progress/devel perl-Time-Progress.spec,1.2,1.3 Message-ID: <20090726171804.35A9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Progress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9166 Modified Files: perl-Time-Progress.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Progress.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Progress/devel/perl-Time-Progress.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Time-Progress.spec 27 Feb 2009 03:50:08 -0000 1.2 +++ perl-Time-Progress.spec 26 Jul 2009 17:18:03 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Time-Progress Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Elapsed and estimated finish time reporting License: GPL+ or Artistic Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:18:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:18:19 +0000 (UTC) Subject: rpms/perl-Time-Warp/devel perl-Time-Warp.spec,1.1,1.2 Message-ID: <20090726171819.C251B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-Warp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9376 Modified Files: perl-Time-Warp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-Warp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-Warp/devel/perl-Time-Warp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Time-Warp.spec 4 Jun 2009 04:13:47 -0000 1.1 +++ perl-Time-Warp.spec 26 Jul 2009 17:18:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Time-Warp Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} # Warp.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Chris Weyl 0.5-1 - submission From jkeating at fedoraproject.org Sun Jul 26 17:18:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:18:40 +0000 (UTC) Subject: rpms/perl-Time-modules/devel perl-Time-modules.spec,1.13,1.14 Message-ID: <20090726171840.19B0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Time-modules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9574 Modified Files: perl-Time-modules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Time-modules.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Time-modules/devel/perl-Time-modules.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-Time-modules.spec 27 Feb 2009 03:51:03 -0000 1.13 +++ perl-Time-modules.spec 26 Jul 2009 17:18:39 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-Time-modules Version: 2006.0814 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl modules for parsing dates and times Group: Development/Libraries License: Copyright only and Public Domain @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2006.0814-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2006.0814-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:18:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:18:56 +0000 (UTC) Subject: rpms/perl-TimeDate/devel perl-TimeDate.spec,1.16,1.17 Message-ID: <20090726171856.7E01311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-TimeDate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9808 Modified Files: perl-TimeDate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-TimeDate.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-TimeDate/devel/perl-TimeDate.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-TimeDate.spec 27 Feb 2009 03:51:56 -0000 1.16 +++ perl-TimeDate.spec 26 Jul 2009 17:18:56 -0000 1.17 @@ -1,7 +1,7 @@ Name: perl-TimeDate Version: 1.16 Epoch: 1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A Perl module for time and date manipulation Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.16-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.16-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:19:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:19:11 +0000 (UTC) Subject: rpms/perl-Tk/devel perl-Tk.spec,1.19,1.20 Message-ID: <20090726171911.A0A6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10043 Modified Files: perl-Tk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tk.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tk/devel/perl-Tk.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-Tk.spec 22 Jun 2009 17:26:19 -0000 1.19 +++ perl-Tk.spec 26 Jul 2009 17:19:11 -0000 1.20 @@ -3,7 +3,7 @@ Name: perl-Tk Version: 804.028 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Perl Graphical User Interface ToolKit Group: Development/Libraries @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{perl_vendorarch}/Tk/reindex.pl %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 804.028-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Andreas Bierfert - 804.028-9 - fix getOpenFile (#487122) From jkeating at fedoraproject.org Sun Jul 26 17:19:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:19:25 +0000 (UTC) Subject: rpms/perl-Tk-Stderr/devel perl-Tk-Stderr.spec,1.1,1.2 Message-ID: <20090726171925.6F5C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tk-Stderr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10203 Modified Files: perl-Tk-Stderr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tk-Stderr.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tk-Stderr/devel/perl-Tk-Stderr.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Tk-Stderr.spec 24 Jun 2009 11:58:52 -0000 1.1 +++ perl-Tk-Stderr.spec 26 Jul 2009 17:19:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Tk-Stderr Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Capture standard error output, display in separate window for Perl::Tk Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 30 2009 David Hannequin 1.2-5 - delete _xvfb - modify man page From jkeating at fedoraproject.org Sun Jul 26 17:19:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:19:43 +0000 (UTC) Subject: rpms/perl-Tk-TableMatrix/devel perl-Tk-TableMatrix.spec,1.2,1.3 Message-ID: <20090726171943.40FB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tk-TableMatrix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10439 Modified Files: perl-Tk-TableMatrix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tk-TableMatrix.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tk-TableMatrix/devel/perl-Tk-TableMatrix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Tk-TableMatrix.spec 27 Feb 2009 03:53:45 -0000 1.2 +++ perl-Tk-TableMatrix.spec 26 Jul 2009 17:19:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Tk-TableMatrix Version: 1.23 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl module for creating and manipulating tables Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.23-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.23-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:19:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:19:58 +0000 (UTC) Subject: rpms/perl-Tree-DAG_Node/devel perl-Tree-DAG_Node.spec,1.9,1.10 Message-ID: <20090726171958.EB3A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tree-DAG_Node/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10633 Modified Files: perl-Tree-DAG_Node.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tree-DAG_Node.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tree-DAG_Node/devel/perl-Tree-DAG_Node.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Tree-DAG_Node.spec 27 Feb 2009 03:54:42 -0000 1.9 +++ perl-Tree-DAG_Node.spec 26 Jul 2009 17:19:58 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Tree-DAG_Node Version: 1.06 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Class for representing nodes in a tree Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:20:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:20:15 +0000 (UTC) Subject: rpms/perl-Tree-Simple/devel perl-Tree-Simple.spec,1.10,1.11 Message-ID: <20090726172015.C5B2C11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tree-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10871 Modified Files: perl-Tree-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tree-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tree-Simple/devel/perl-Tree-Simple.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Tree-Simple.spec 27 Feb 2009 03:55:37 -0000 1.10 +++ perl-Tree-Simple.spec 26 Jul 2009 17:20:15 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Tree-Simple Version: 1.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tree::Simple Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.18-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:20:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:20:32 +0000 (UTC) Subject: rpms/perl-Tree-Simple-VisitorFactory/devel perl-Tree-Simple-VisitorFactory.spec, 1.4, 1.5 Message-ID: <20090726172032.148B411C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Tree-Simple-VisitorFactory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11083 Modified Files: perl-Tree-Simple-VisitorFactory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Tree-Simple-VisitorFactory.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Tree-Simple-VisitorFactory/devel/perl-Tree-Simple-VisitorFactory.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Tree-Simple-VisitorFactory.spec 27 Feb 2009 03:56:32 -0000 1.4 +++ perl-Tree-Simple-VisitorFactory.spec 26 Jul 2009 17:20:31 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Tree-Simple-VisitorFactory Version: 0.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Factory object for dispensing Visitor objects License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:20:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:20:47 +0000 (UTC) Subject: rpms/perl-UNIVERSAL-can/devel perl-UNIVERSAL-can.spec,1.5,1.6 Message-ID: <20090726172047.BAF6311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-UNIVERSAL-can/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11300 Modified Files: perl-UNIVERSAL-can.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-UNIVERSAL-can.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-UNIVERSAL-can/devel/perl-UNIVERSAL-can.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-UNIVERSAL-can.spec 27 Feb 2009 03:57:28 -0000 1.5 +++ perl-UNIVERSAL-can.spec 26 Jul 2009 17:20:47 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-UNIVERSAL-can Version: 1.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Hack around people calling UNIVERSAL::can() as a function Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:21:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:21:01 +0000 (UTC) Subject: rpms/perl-UNIVERSAL-exports/devel perl-UNIVERSAL-exports.spec, 1.7, 1.8 Message-ID: <20090726172101.AE65411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-UNIVERSAL-exports/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11487 Modified Files: perl-UNIVERSAL-exports.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-UNIVERSAL-exports.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-UNIVERSAL-exports/devel/perl-UNIVERSAL-exports.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-UNIVERSAL-exports.spec 27 Feb 2009 03:58:27 -0000 1.7 +++ perl-UNIVERSAL-exports.spec 26 Jul 2009 17:21:01 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-UNIVERSAL-exports Version: 0.05 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Lightweight, universal exporting of variables Group: Development/Libraries License: GPL+ or Artistic @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.05-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:21:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:21:20 +0000 (UTC) Subject: rpms/perl-UNIVERSAL-isa/devel perl-UNIVERSAL-isa.spec,1.9,1.10 Message-ID: <20090726172120.6D68611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-UNIVERSAL-isa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11694 Modified Files: perl-UNIVERSAL-isa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-UNIVERSAL-isa.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-UNIVERSAL-isa/devel/perl-UNIVERSAL-isa.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-UNIVERSAL-isa.spec 27 Feb 2009 03:59:17 -0000 1.9 +++ perl-UNIVERSAL-isa.spec 26 Jul 2009 17:21:20 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-UNIVERSAL-isa Version: 1.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hack around module authors using UNIVERSAL::isa as a function Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:21:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:21:36 +0000 (UTC) Subject: rpms/perl-UNIVERSAL-moniker/devel perl-UNIVERSAL-moniker.spec, 1.6, 1.7 Message-ID: <20090726172136.615DF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-UNIVERSAL-moniker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11914 Modified Files: perl-UNIVERSAL-moniker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-UNIVERSAL-moniker.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-UNIVERSAL-moniker/devel/perl-UNIVERSAL-moniker.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-UNIVERSAL-moniker.spec 27 Feb 2009 04:00:14 -0000 1.6 +++ perl-UNIVERSAL-moniker.spec 26 Jul 2009 17:21:36 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-UNIVERSAL-moniker Version: 0.08 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Real world naming for classes Group: Development/Libraries License: GPL+ or Artistic @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:21:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:21:50 +0000 (UTC) Subject: rpms/perl-UNIVERSAL-require/devel perl-UNIVERSAL-require.spec, 1.7, 1.8 Message-ID: <20090726172150.D500C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-UNIVERSAL-require/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12072 Modified Files: perl-UNIVERSAL-require.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-UNIVERSAL-require.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-UNIVERSAL-require/devel/perl-UNIVERSAL-require.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-UNIVERSAL-require.spec 27 Feb 2009 04:01:07 -0000 1.7 +++ perl-UNIVERSAL-require.spec 26 Jul 2009 17:21:50 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-UNIVERSAL-require Version: 0.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Require() modules from a variable Group: Development/Libraries License: GPL+ or Artistic @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:22:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:22:08 +0000 (UTC) Subject: rpms/perl-URI/devel perl-URI.spec,1.23,1.24 Message-ID: <20090726172208.35C4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-URI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12236 Modified Files: perl-URI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-URI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-URI/devel/perl-URI.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- perl-URI.spec 27 Feb 2009 04:01:58 -0000 1.23 +++ perl-URI.spec 26 Jul 2009 17:22:08 -0000 1.24 @@ -1,6 +1,6 @@ Name: perl-URI Version: 1.37 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Perl module implementing URI parsing and manipulation Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.37-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.37-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:22:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:22:23 +0000 (UTC) Subject: rpms/perl-URI-Fetch/devel perl-URI-Fetch.spec,1.4,1.5 Message-ID: <20090726172223.BD78311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-URI-Fetch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12340 Modified Files: perl-URI-Fetch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-URI-Fetch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-URI-Fetch/devel/perl-URI-Fetch.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-URI-Fetch.spec 27 Feb 2009 04:02:50 -0000 1.4 +++ perl-URI-Fetch.spec 26 Jul 2009 17:22:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-URI-Fetch Version: 0.08 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Smart URI fetching/caching License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:22:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:22:37 +0000 (UTC) Subject: rpms/perl-URI-Find/devel perl-URI-Find.spec,1.4,1.5 Message-ID: <20090726172237.D60CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-URI-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12466 Modified Files: perl-URI-Find.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-URI-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-URI-Find/devel/perl-URI-Find.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-URI-Find.spec 19 May 2009 06:07:01 -0000 1.4 +++ perl-URI-Find.spec 26 Jul 2009 17:22:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-URI-Find Version: 20090319 -Release: 1%{?dist} +Release: 2%{?dist} # see lib/URI/Find.pm License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090319-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Chris Weyl 20090319-1 - auto-update to 20090319 (by cpan-spec-update 0.01) - added a new br on perl(Test::More) (version 0.82) From jkeating at fedoraproject.org Sun Jul 26 17:22:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:22:51 +0000 (UTC) Subject: rpms/perl-URI-FromHash/devel perl-URI-FromHash.spec,1.3,1.4 Message-ID: <20090726172251.CD03411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-URI-FromHash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12573 Modified Files: perl-URI-FromHash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-URI-FromHash.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-URI-FromHash/devel/perl-URI-FromHash.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-URI-FromHash.spec 27 Feb 2009 04:04:42 -0000 1.3 +++ perl-URI-FromHash.spec 26 Jul 2009 17:22:51 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-URI-FromHash Version: 0.03 -Release: 4%{?dist} +Release: 5%{?dist} # see lib/URI/FromHash.pm License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:23:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:23:09 +0000 (UTC) Subject: rpms/perl-Unicode-Map/devel perl-Unicode-Map.spec,1.18,1.19 Message-ID: <20090726172309.B67B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unicode-Map/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12700 Modified Files: perl-Unicode-Map.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unicode-Map.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unicode-Map/devel/perl-Unicode-Map.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-Unicode-Map.spec 27 Feb 2009 04:05:40 -0000 1.18 +++ perl-Unicode-Map.spec 26 Jul 2009 17:23:09 -0000 1.19 @@ -2,7 +2,7 @@ Name: perl-Unicode-Map Version: 0.112 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Perl module for mapping charsets from and to utf16 unicode @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.112-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.112-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:23:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:23:26 +0000 (UTC) Subject: rpms/perl-Unicode-Map8/devel perl-Unicode-Map8.spec,1.20,1.21 Message-ID: <20090726172326.0811211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unicode-Map8/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12824 Modified Files: perl-Unicode-Map8.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unicode-Map8.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unicode-Map8/devel/perl-Unicode-Map8.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- perl-Unicode-Map8.spec 27 Feb 2009 04:06:38 -0000 1.20 +++ perl-Unicode-Map8.spec 26 Jul 2009 17:23:25 -0000 1.21 @@ -2,7 +2,7 @@ Name: perl-Unicode-Map8 Version: 0.12 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Mapping table between 8-bit chars and Unicode for Perl @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:23:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:23:44 +0000 (UTC) Subject: rpms/perl-Unicode-MapUTF8/devel perl-Unicode-MapUTF8.spec, 1.15, 1.16 Message-ID: <20090726172344.0FB4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unicode-MapUTF8/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12968 Modified Files: perl-Unicode-MapUTF8.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unicode-MapUTF8.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unicode-MapUTF8/devel/perl-Unicode-MapUTF8.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-Unicode-MapUTF8.spec 27 Feb 2009 04:07:34 -0000 1.15 +++ perl-Unicode-MapUTF8.spec 26 Jul 2009 17:23:43 -0000 1.16 @@ -1,6 +1,6 @@ Name: perl-Unicode-MapUTF8 Version: 1.11 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Conversions to and from arbitrary character sets and UTF8 @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.11-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:23:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:23:58 +0000 (UTC) Subject: rpms/perl-Unicode-String/devel perl-Unicode-String.spec,1.17,1.18 Message-ID: <20090726172358.F000E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unicode-String/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13131 Modified Files: perl-Unicode-String.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unicode-String.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unicode-String/devel/perl-Unicode-String.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Unicode-String.spec 27 Feb 2009 04:08:27 -0000 1.17 +++ perl-Unicode-String.spec 26 Jul 2009 17:23:58 -0000 1.18 @@ -2,7 +2,7 @@ Name: perl-Unicode-String Version: 2.09 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Perl modules to handle various Unicode issues @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.09-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.09-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:24:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:24:14 +0000 (UTC) Subject: rpms/perl-Unix-Statgrab/devel perl-Unix-Statgrab.spec,1.10,1.11 Message-ID: <20090726172414.E613711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unix-Statgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13285 Modified Files: perl-Unix-Statgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unix-Statgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unix-Statgrab/devel/perl-Unix-Statgrab.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Unix-Statgrab.spec 27 Feb 2009 04:09:20 -0000 1.10 +++ perl-Unix-Statgrab.spec 26 Jul 2009 17:24:14 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-Unix-Statgrab Version: 0.04 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl extension for collecting information about the machine License: LGPLv2+ Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.04-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:24:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:24:29 +0000 (UTC) Subject: rpms/perl-Unix-Syslog/devel perl-Unix-Syslog.spec,1.17,1.18 Message-ID: <20090726172429.D3D7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Unix-Syslog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13444 Modified Files: perl-Unix-Syslog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Unix-Syslog.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Unix-Syslog/devel/perl-Unix-Syslog.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-Unix-Syslog.spec 27 Feb 2009 04:10:14 -0000 1.17 +++ perl-Unix-Syslog.spec 26 Jul 2009 17:24:29 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-Unix-Syslog Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl interface to the UNIX syslog(3) calls License: Artistic 2.0 Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:24:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:24:45 +0000 (UTC) Subject: rpms/perl-User/devel perl-User.spec,1.3,1.4 Message-ID: <20090726172445.4DB3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-User/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13611 Modified Files: perl-User.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-User.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-User/devel/perl-User.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-User.spec 27 Feb 2009 04:11:13 -0000 1.3 +++ perl-User.spec 26 Jul 2009 17:24:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-User Version: 1.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: API for locating user information regardless of OS @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:25:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:25:00 +0000 (UTC) Subject: rpms/perl-User-Identity/devel perl-User-Identity.spec,1.5,1.6 Message-ID: <20090726172500.0339811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-User-Identity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13782 Modified Files: perl-User-Identity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-User-Identity.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-User-Identity/devel/perl-User-Identity.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-User-Identity.spec 27 Feb 2009 04:12:09 -0000 1.5 +++ perl-User-Identity.spec 26 Jul 2009 17:24:59 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-User-Identity Version: 0.92 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Maintains info about a physical person Group: Development/Libraries License: GPL+ or Artistic @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.92-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.92-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:25:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:25:14 +0000 (UTC) Subject: rpms/perl-VCS-LibCVS/devel perl-VCS-LibCVS.spec,1.3,1.4 Message-ID: <20090726172514.D9D0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-VCS-LibCVS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13982 Modified Files: perl-VCS-LibCVS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-VCS-LibCVS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-VCS-LibCVS/devel/perl-VCS-LibCVS.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-VCS-LibCVS.spec 27 Feb 2009 04:13:02 -0000 1.3 +++ perl-VCS-LibCVS.spec 26 Jul 2009 17:25:14 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-VCS-LibCVS Version: 1.0002 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Access CVS working directories and repositories License: GPLv2+ or Artistic Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0002-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0002-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:25:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:25:30 +0000 (UTC) Subject: rpms/perl-Variable-Magic/devel perl-Variable-Magic.spec,1.4,1.5 Message-ID: <20090726172530.0217A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Variable-Magic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14165 Modified Files: perl-Variable-Magic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Variable-Magic.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Variable-Magic/devel/perl-Variable-Magic.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Variable-Magic.spec 17 May 2009 06:59:04 -0000 1.4 +++ perl-Variable-Magic.spec 26 Jul 2009 17:25:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Variable-Magic Version: 0.34 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Associate user-defined magic to variables from Perl License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.34-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Chris Weyl 0.34-1 - update to 0.34 (for B::Hooks::EndOfScope 0.08) - filter private Perl .so's From jkeating at fedoraproject.org Sun Jul 26 17:25:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:25:49 +0000 (UTC) Subject: rpms/perl-Verilog/devel perl-Verilog.spec,1.9,1.10 Message-ID: <20090726172549.8AF0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Verilog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14391 Modified Files: perl-Verilog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Verilog.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Verilog/devel/perl-Verilog.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-Verilog.spec 17 Jun 2009 23:43:46 -0000 1.9 +++ perl-Verilog.spec 26 Jul 2009 17:25:49 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-Verilog Version: 3.211 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Verilog parsing routines License: LGPL+ or Artistic @@ -65,6 +65,9 @@ find %{buildroot} -depth -type d -exec r %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.211-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Chitlesh Goorah 3.211-1 - upstream v3.211 From jkeating at fedoraproject.org Sun Jul 26 17:26:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:26:08 +0000 (UTC) Subject: rpms/perl-Verilog-CodeGen/devel perl-Verilog-CodeGen.spec,1.1,1.2 Message-ID: <20090726172608.B4DB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Verilog-CodeGen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14604 Modified Files: perl-Verilog-CodeGen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Verilog-CodeGen.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Verilog-CodeGen/devel/perl-Verilog-CodeGen.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Verilog-CodeGen.spec 24 Mar 2009 22:59:02 -0000 1.1 +++ perl-Verilog-CodeGen.spec 26 Jul 2009 17:26:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Verilog-CodeGen Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Verilog code generator License: GPL+ or Artistic Group: Development/Libraries @@ -72,5 +72,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Dec 14 2008 Chitlesh GOORAH 0.9.4-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:26:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:26:25 +0000 (UTC) Subject: rpms/perl-Verilog-Readmem/devel perl-Verilog-Readmem.spec,1.1,1.2 Message-ID: <20090726172625.5B2E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Verilog-Readmem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14842 Modified Files: perl-Verilog-Readmem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Verilog-Readmem.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Verilog-Readmem/devel/perl-Verilog-Readmem.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Verilog-Readmem.spec 4 Mar 2009 20:20:57 -0000 1.1 +++ perl-Verilog-Readmem.spec 26 Jul 2009 17:26:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Verilog-Readmem Version: 0.04 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse Verilog $readmemh or $readmemb text file License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Chitlesh GOORAH - 0.04-1 - new upstream release From jkeating at fedoraproject.org Sun Jul 26 17:26:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:26:40 +0000 (UTC) Subject: rpms/perl-WWW-Babelfish/devel perl-WWW-Babelfish.spec,1.6,1.7 Message-ID: <20090726172640.1379D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Babelfish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15019 Modified Files: perl-WWW-Babelfish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Babelfish.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Babelfish/devel/perl-WWW-Babelfish.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-WWW-Babelfish.spec 27 Feb 2009 04:15:25 -0000 1.6 +++ perl-WWW-Babelfish.spec 26 Jul 2009 17:26:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-WWW-Babelfish Version: 0.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl extension for translation via Babelfish or Google License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:26:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:26:55 +0000 (UTC) Subject: rpms/perl-WWW-Bugzilla/devel perl-WWW-Bugzilla.spec,1.5,1.6 Message-ID: <20090726172655.5F8D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15188 Modified Files: perl-WWW-Bugzilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Bugzilla/devel/perl-WWW-Bugzilla.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-WWW-Bugzilla.spec 27 Feb 2009 04:16:23 -0000 1.5 +++ perl-WWW-Bugzilla.spec 26 Jul 2009 17:26:55 -0000 1.6 @@ -6,7 +6,7 @@ Name: perl-WWW-Bugzilla Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Handles submission/update of bugzilla bugs via WWW::Mechanize Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:27:10 +0000 (UTC) Subject: rpms/perl-WWW-Curl/devel perl-WWW-Curl.spec,1.5,1.6 Message-ID: <20090726172710.3DE9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15365 Modified Files: perl-WWW-Curl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Curl/devel/perl-WWW-Curl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-WWW-Curl.spec 11 Jul 2009 22:58:33 -0000 1.5 +++ perl-WWW-Curl.spec 26 Jul 2009 17:27:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-WWW-Curl Version: 4.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl extension interface for libcurl License: MPLv1.1 or MIT Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Nicoleau Fabien - 4.09-1 - Rebuild for 4.09 * Mon Jun 1 2009 Nicoleau Fabien - 4.07-1 From jkeating at fedoraproject.org Sun Jul 26 17:27:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:27:27 +0000 (UTC) Subject: rpms/perl-WWW-Mechanize/devel perl-WWW-Mechanize.spec,1.18,1.19 Message-ID: <20090726172727.064AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Mechanize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15539 Modified Files: perl-WWW-Mechanize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Mechanize.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Mechanize/devel/perl-WWW-Mechanize.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-WWW-Mechanize.spec 27 Feb 2009 04:18:10 -0000 1.18 +++ perl-WWW-Mechanize.spec 26 Jul 2009 17:27:26 -0000 1.19 @@ -7,7 +7,7 @@ Name: perl-WWW-Mechanize Version: 1.54 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automates web page form & link interaction Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.54-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.54-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:27:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:27:44 +0000 (UTC) Subject: rpms/perl-WWW-Mechanize-TreeBuilder/devel perl-WWW-Mechanize-TreeBuilder.spec, 1.1, 1.2 Message-ID: <20090726172744.32DDA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Mechanize-TreeBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15727 Modified Files: perl-WWW-Mechanize-TreeBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Mechanize-TreeBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Mechanize-TreeBuilder/devel/perl-WWW-Mechanize-TreeBuilder.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-WWW-Mechanize-TreeBuilder.spec 10 May 2009 07:06:49 -0000 1.1 +++ perl-WWW-Mechanize-TreeBuilder.spec 26 Jul 2009 17:27:44 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-WWW-Mechanize-TreeBuilder Version: 1.10000 -Release: 1%{?dist} +Release: 2%{?dist} Summary: WWW::Mechanize::TreeBuilder Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10000-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 1.10000-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:27:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:27:59 +0000 (UTC) Subject: rpms/perl-WWW-Myspace/devel perl-WWW-Myspace.spec,1.16,1.17 Message-ID: <20090726172759.6235711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Myspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15872 Modified Files: perl-WWW-Myspace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Myspace.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Myspace/devel/perl-WWW-Myspace.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-WWW-Myspace.spec 27 Feb 2009 04:19:07 -0000 1.16 +++ perl-WWW-Myspace.spec 26 Jul 2009 17:27:59 -0000 1.17 @@ -12,7 +12,7 @@ Name: perl-WWW-Myspace Version: 0.60 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Access your myspace.com profile in Perl! Group: Development/Libraries @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.60-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.60-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:28:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:28:16 +0000 (UTC) Subject: rpms/perl-WWW-Pastebin-PastebinCom-Create/devel perl-WWW-Pastebin-PastebinCom-Create.spec, 1.1, 1.2 Message-ID: <20090726172816.6162011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Pastebin-PastebinCom-Create/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16055 Modified Files: perl-WWW-Pastebin-PastebinCom-Create.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Pastebin-PastebinCom-Create.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Pastebin-PastebinCom-Create/devel/perl-WWW-Pastebin-PastebinCom-Create.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-WWW-Pastebin-PastebinCom-Create.spec 23 Apr 2009 20:23:36 -0000 1.1 +++ perl-WWW-Pastebin-PastebinCom-Create.spec 26 Jul 2009 17:28:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-WWW-Pastebin-PastebinCom-Create Version: 0.002 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Paste to http://pastebin.com from Perl License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.002-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Iain Arnell 0.002-2 - add examples as documentation From jkeating at fedoraproject.org Sun Jul 26 17:28:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:28:31 +0000 (UTC) Subject: rpms/perl-WWW-Pastebin-RafbNet-Create/devel perl-WWW-Pastebin-RafbNet-Create.spec, 1.1, 1.2 Message-ID: <20090726172831.E059C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Pastebin-RafbNet-Create/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16256 Modified Files: perl-WWW-Pastebin-RafbNet-Create.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Pastebin-RafbNet-Create.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Pastebin-RafbNet-Create/devel/perl-WWW-Pastebin-RafbNet-Create.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-WWW-Pastebin-RafbNet-Create.spec 23 Apr 2009 20:27:40 -0000 1.1 +++ perl-WWW-Pastebin-RafbNet-Create.spec 26 Jul 2009 17:28:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-WWW-Pastebin-RafbNet-Create Version: 0.001 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create new pastes on http://rafb.net/ License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.001-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Iain Arnell 0.001-2 - add missing requires: perl(Class::Data::Accessor) From jkeating at fedoraproject.org Sun Jul 26 17:28:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:28:46 +0000 (UTC) Subject: rpms/perl-WWW-Search/devel perl-WWW-Search.spec,1.10,1.11 Message-ID: <20090726172846.E1FED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WWW-Search/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16438 Modified Files: perl-WWW-Search.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WWW-Search.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WWW-Search/devel/perl-WWW-Search.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-WWW-Search.spec 27 Feb 2009 15:44:56 -0000 1.10 +++ perl-WWW-Search.spec 26 Jul 2009 17:28:46 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-WWW-Search Version: 2.507 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Virtual base class for WWW searches @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.507-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Xavier Bachelot - 2.507-3 - More BR: (Bit::Vector, File::Slurp, Test::Pod::Coverage). From jkeating at fedoraproject.org Sun Jul 26 17:29:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:29:01 +0000 (UTC) Subject: rpms/perl-Want/devel perl-Want.spec,1.14,1.15 Message-ID: <20090726172901.9A49B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Want/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16664 Modified Files: perl-Want.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Want.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Want/devel/perl-Want.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Want.spec 27 Feb 2009 04:21:02 -0000 1.14 +++ perl-Want.spec 26 Jul 2009 17:29:01 -0000 1.15 @@ -1,6 +1,6 @@ Name: perl-Want Version: 0.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module implementing a generalisation of wantarray License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ make test %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:29:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:29:17 +0000 (UTC) Subject: rpms/perl-WebService-Validator-CSS-W3C/devel perl-WebService-Validator-CSS-W3C.spec, 1.1, 1.2 Message-ID: <20090726172917.B712011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WebService-Validator-CSS-W3C/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16845 Modified Files: perl-WebService-Validator-CSS-W3C.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WebService-Validator-CSS-W3C.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WebService-Validator-CSS-W3C/devel/perl-WebService-Validator-CSS-W3C.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-WebService-Validator-CSS-W3C.spec 30 Apr 2009 05:47:24 -0000 1.1 +++ perl-WebService-Validator-CSS-W3C.spec 26 Jul 2009 17:29:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-WebService-Validator-CSS-W3C Version: 0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Interface to the W3C CSS Validator License: GPL+ or Artistic Group: Development/Libraries @@ -55,5 +55,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Marcela Ma?l??ov? 0.2-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 17:29:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:29:32 +0000 (UTC) Subject: rpms/perl-WebService-Validator-HTML-W3C/devel perl-WebService-Validator-HTML-W3C.spec, 1.1, 1.2 Message-ID: <20090726172932.8099511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-WebService-Validator-HTML-W3C/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17062 Modified Files: perl-WebService-Validator-HTML-W3C.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-WebService-Validator-HTML-W3C.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-WebService-Validator-HTML-W3C/devel/perl-WebService-Validator-HTML-W3C.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-WebService-Validator-HTML-W3C.spec 30 Apr 2009 05:41:34 -0000 1.1 +++ perl-WebService-Validator-HTML-W3C.spec 26 Jul 2009 17:29:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-WebService-Validator-HTML-W3C Version: 0.24 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Access the W3Cs online HTML validator License: GPL+ or Artistic Group: Development/Libraries @@ -48,5 +48,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Marcela Ma?l??ov? 0.24-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 17:29:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:29:50 +0000 (UTC) Subject: rpms/perl-Workflow/devel perl-Workflow.spec,1.5,1.6 Message-ID: <20090726172950.4A17611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Workflow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17286 Modified Files: perl-Workflow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Workflow.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Workflow/devel/perl-Workflow.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Workflow.spec 3 Mar 2009 04:15:03 -0000 1.5 +++ perl-Workflow.spec 26 Jul 2009 17:29:50 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Workflow Version: 1.32 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple, flexible system to implement workflows License: GPL+ or Artistic Group: Development/Libraries @@ -98,6 +98,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Chris Weyl 1.32-1 - update to 1.32 - update br's to latest required From jkeating at fedoraproject.org Sun Jul 26 17:30:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:30:15 +0000 (UTC) Subject: rpms/perl-Wx/devel perl-Wx.spec,1.30,1.31 Message-ID: <20090726173015.DD2AD11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Wx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17518 Modified Files: perl-Wx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Wx.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Wx/devel/perl-Wx.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- perl-Wx.spec 7 Jul 2009 12:47:07 -0000 1.30 +++ perl-Wx.spec 26 Jul 2009 17:30:14 -0000 1.31 @@ -6,7 +6,7 @@ Name: perl-Wx Version: 0.91 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Interface to the wxWidgets cross-platform GUI toolkit Group: Development/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Stepan Kasal - 0.91-5 - return back RPM_OPT_FLAGS From jkeating at fedoraproject.org Sun Jul 26 17:30:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:30:33 +0000 (UTC) Subject: rpms/perl-Wx-Perl-DataWalker/devel perl-Wx-Perl-DataWalker.spec, 1.2, 1.3 Message-ID: <20090726173033.EE96611C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Wx-Perl-DataWalker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17811 Modified Files: perl-Wx-Perl-DataWalker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Wx-Perl-DataWalker.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Wx-Perl-DataWalker/devel/perl-Wx-Perl-DataWalker.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Wx-Perl-DataWalker.spec 19 Jun 2009 21:43:54 -0000 1.2 +++ perl-Wx-Perl-DataWalker.spec 26 Jul 2009 17:30:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Wx-Perl-DataWalker Version: 0.02 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Implement subclass that shows relatively simple structure License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Stepan Kasal 0.02-4 - rebuild From jkeating at fedoraproject.org Sun Jul 26 17:30:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:30:57 +0000 (UTC) Subject: rpms/perl-Wx-Perl-ProcessStream/devel perl-Wx-Perl-ProcessStream.spec, 1.2, 1.3 Message-ID: <20090726173057.625BE11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Wx-Perl-ProcessStream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18025 Modified Files: perl-Wx-Perl-ProcessStream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Wx-Perl-ProcessStream.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Wx-Perl-ProcessStream/devel/perl-Wx-Perl-ProcessStream.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Wx-Perl-ProcessStream.spec 27 Feb 2009 04:24:46 -0000 1.2 +++ perl-Wx-Perl-ProcessStream.spec 26 Jul 2009 17:30:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Wx-Perl-ProcessStream Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Access IO of external processes via events License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:31:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:31:15 +0000 (UTC) Subject: rpms/perl-X11-Protocol/devel perl-X11-Protocol.spec,1.8,1.9 Message-ID: <20090726173115.A0C1111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-X11-Protocol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18250 Modified Files: perl-X11-Protocol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-X11-Protocol.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-X11-Protocol/devel/perl-X11-Protocol.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-X11-Protocol.spec 27 Feb 2009 04:25:41 -0000 1.8 +++ perl-X11-Protocol.spec 26 Jul 2009 17:31:15 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-X11-Protocol Version: 0.56 -Release: 3%{?dist} +Release: 4%{?dist} Summary: X11-Protocol - Raw interface to X Window System servers Group: Development/Libraries @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.56-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.56-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:31:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:31:31 +0000 (UTC) Subject: rpms/perl-XML-Atom/devel perl-XML-Atom.spec,1.1,1.2 Message-ID: <20090726173131.79A0011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Atom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18437 Modified Files: perl-XML-Atom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Atom.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Atom/devel/perl-XML-Atom.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XML-Atom.spec 11 May 2009 03:07:32 -0000 1.1 +++ perl-XML-Atom.spec 26 Jul 2009 17:31:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XML-Atom Version: 0.35 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Atom feed and API implementation License: GPL+ or Artistic Group: Development/Libraries @@ -60,5 +60,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 0.35-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:31:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:31:52 +0000 (UTC) Subject: rpms/perl-XML-Atom-SimpleFeed/devel perl-XML-Atom-SimpleFeed.spec, 1.4, 1.5 Message-ID: <20090726173152.A5BEB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Atom-SimpleFeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18651 Modified Files: perl-XML-Atom-SimpleFeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Atom-SimpleFeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Atom-SimpleFeed/devel/perl-XML-Atom-SimpleFeed.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-XML-Atom-SimpleFeed.spec 27 Feb 2009 04:26:38 -0000 1.4 +++ perl-XML-Atom-SimpleFeed.spec 26 Jul 2009 17:31:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-XML-Atom-SimpleFeed Version: 0.82 -Release: 2%{?dist} +Release: 3%{?dist} Summary: No-fuss generation of Atom syndication feeds License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.82-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.82-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:32:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:32:17 +0000 (UTC) Subject: rpms/perl-XML-DOM/devel perl-XML-DOM.spec,1.7,1.8 Message-ID: <20090726173217.65E5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-DOM/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18909 Modified Files: perl-XML-DOM.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-DOM.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-DOM/devel/perl-XML-DOM.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-XML-DOM.spec 27 Feb 2009 04:27:37 -0000 1.7 +++ perl-XML-DOM.spec 26 Jul 2009 17:32:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-XML-DOM Version: 1.44 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DOM extension to XML::Parser Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.44-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.44-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:32:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:32:32 +0000 (UTC) Subject: rpms/perl-XML-DOM-XPath/devel perl-XML-DOM-XPath.spec,1.5,1.6 Message-ID: <20090726173232.12C5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-DOM-XPath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19093 Modified Files: perl-XML-DOM-XPath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-DOM-XPath.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-DOM-XPath/devel/perl-XML-DOM-XPath.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-XML-DOM-XPath.spec 27 Feb 2009 04:28:31 -0000 1.5 +++ perl-XML-DOM-XPath.spec 26 Jul 2009 17:32:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-XML-DOM-XPath Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension to add XPath support to XML::DOM, using XML::XPath engine License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:32:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:32:47 +0000 (UTC) Subject: rpms/perl-XML-Dumper/devel perl-XML-Dumper.spec,1.18,1.19 Message-ID: <20090726173247.DA0BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Dumper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19267 Modified Files: perl-XML-Dumper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Dumper.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Dumper/devel/perl-XML-Dumper.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- perl-XML-Dumper.spec 27 Feb 2009 04:29:25 -0000 1.18 +++ perl-XML-Dumper.spec 26 Jul 2009 17:32:47 -0000 1.19 @@ -1,6 +1,6 @@ Name: perl-XML-Dumper Version: 0.81 -Release: 5%{dist} +Release: 6%{dist} Summary: Perl module for dumping Perl objects from/to XML Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.81-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.81-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:33:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:33:04 +0000 (UTC) Subject: rpms/perl-XML-Entities/devel perl-XML-Entities.spec,1.3,1.4 Message-ID: <20090726173304.0D45D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Entities/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19418 Modified Files: perl-XML-Entities.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Entities.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Entities/devel/perl-XML-Entities.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-XML-Entities.spec 27 Feb 2009 04:30:22 -0000 1.3 +++ perl-XML-Entities.spec 26 Jul 2009 17:33:03 -0000 1.4 @@ -2,7 +2,7 @@ Name: perl-XML-Entities Version: 0.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Decode strings with XML entities Group: Development/Libraries @@ -69,6 +69,9 @@ make test %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:33:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:33:21 +0000 (UTC) Subject: rpms/perl-XML-Feed/devel perl-XML-Feed.spec,1.1,1.2 Message-ID: <20090726173321.016D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Feed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19613 Modified Files: perl-XML-Feed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Feed.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Feed/devel/perl-XML-Feed.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XML-Feed.spec 19 May 2009 04:15:00 -0000 1.1 +++ perl-XML-Feed.spec 26 Jul 2009 17:33:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XML-Feed Version: 0.43 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Syndication feed parser and auto-discovery License: GPL+ or Artistic Group: Development/Libraries @@ -64,5 +64,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.43-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Iain Arnell 0.43-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:33:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:33:36 +0000 (UTC) Subject: rpms/perl-XML-Filter-BufferText/devel perl-XML-Filter-BufferText.spec, 1.5, 1.6 Message-ID: <20090726173336.CAB8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Filter-BufferText/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19781 Modified Files: perl-XML-Filter-BufferText.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Filter-BufferText.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Filter-BufferText/devel/perl-XML-Filter-BufferText.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-XML-Filter-BufferText.spec 27 Feb 2009 04:31:19 -0000 1.5 +++ perl-XML-Filter-BufferText.spec 26 Jul 2009 17:33:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-XML-Filter-BufferText Version: 1.01 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Filter to put all characters() in one event License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:33:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:33:52 +0000 (UTC) Subject: rpms/perl-XML-Filter-XInclude/devel perl-XML-Filter-XInclude.spec, 1.3, 1.4 Message-ID: <20090726173352.7984611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Filter-XInclude/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19954 Modified Files: perl-XML-Filter-XInclude.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Filter-XInclude.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Filter-XInclude/devel/perl-XML-Filter-XInclude.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-XML-Filter-XInclude.spec 27 Feb 2009 04:32:13 -0000 1.3 +++ perl-XML-Filter-XInclude.spec 26 Jul 2009 17:33:52 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-XML-Filter-XInclude Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XInclude as a SAX Filter License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:34:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:34:09 +0000 (UTC) Subject: rpms/perl-XML-Generator/devel perl-XML-Generator.spec,1.2,1.3 Message-ID: <20090726173409.1742A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Generator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20144 Modified Files: perl-XML-Generator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Generator.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Generator/devel/perl-XML-Generator.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-XML-Generator.spec 27 Feb 2009 04:33:09 -0000 1.2 +++ perl-XML-Generator.spec 26 Jul 2009 17:34:08 -0000 1.3 @@ -1,7 +1,7 @@ Summary: XML-Generator Perl module Name: perl-XML-Generator Version: 1.01 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/XML-Generator/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:34:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:34:23 +0000 (UTC) Subject: rpms/perl-XML-Generator-DBI/devel perl-XML-Generator-DBI.spec, 1.4, 1.5 Message-ID: <20090726173423.E1EE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Generator-DBI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20332 Modified Files: perl-XML-Generator-DBI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Generator-DBI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Generator-DBI/devel/perl-XML-Generator-DBI.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-XML-Generator-DBI.spec 27 Feb 2009 04:34:06 -0000 1.4 +++ perl-XML-Generator-DBI.spec 26 Jul 2009 17:34:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-XML-Generator-DBI Version: 1.00 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Generate SAX events from SQL queries Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.00-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.00-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:34:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:34:39 +0000 (UTC) Subject: rpms/perl-XML-Grove/devel perl-XML-Grove.spec,1.26,1.27 Message-ID: <20090726173439.C093211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Grove/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20514 Modified Files: perl-XML-Grove.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Grove.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Grove/devel/perl-XML-Grove.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- perl-XML-Grove.spec 27 Feb 2009 04:35:10 -0000 1.26 +++ perl-XML-Grove.spec 26 Jul 2009 17:34:39 -0000 1.27 @@ -6,7 +6,7 @@ Name: perl-XML-Grove # better not to use an epoch. If 0.46 is ever released, the epoch way # would have to be used, but we are better avoiding that if possible. Version: 0.46alpha -Release: 38%{?dist} +Release: 39%{?dist} Summary: Simple access to infoset of parsed XML, HTML, or SGML instances Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.46alpha-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.46alpha-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:34:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:34:56 +0000 (UTC) Subject: rpms/perl-XML-Handler-YAWriter/devel perl-XML-Handler-YAWriter.spec, 1.4, 1.5 Message-ID: <20090726173456.BF43811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Handler-YAWriter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20699 Modified Files: perl-XML-Handler-YAWriter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Handler-YAWriter.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Handler-YAWriter/devel/perl-XML-Handler-YAWriter.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-XML-Handler-YAWriter.spec 27 Feb 2009 04:36:09 -0000 1.4 +++ perl-XML-Handler-YAWriter.spec 26 Jul 2009 17:34:56 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-XML-Handler-YAWriter Version: 0.23 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Yet another Perl SAX XML Writer @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.23-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.23-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:35:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:35:14 +0000 (UTC) Subject: rpms/perl-XML-LibXML/devel perl-XML-LibXML.spec,1.31,1.32 Message-ID: <20090726173514.A300B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-LibXML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20900 Modified Files: perl-XML-LibXML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-LibXML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-LibXML/devel/perl-XML-LibXML.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- perl-XML-LibXML.spec 27 Feb 2009 04:37:08 -0000 1.31 +++ perl-XML-LibXML.spec 26 Jul 2009 17:35:14 -0000 1.32 @@ -2,7 +2,7 @@ Name: perl-XML-LibXML # NOTE: also update perl-XML-LibXSLT to the same version, see # https://bugzilla.redhat.com/show_bug.cgi?id=469480 Version: 1.69 -Release: 2%{?dist} +Release: 3%{?dist} # Epoch set when version went from 1.62001 to 1.65 Epoch: 1 Summary: Perl interface to the libxml2 library @@ -77,6 +77,9 @@ fi %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.69-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.69-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:35:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:35:30 +0000 (UTC) Subject: rpms/perl-XML-LibXML-Common/devel perl-XML-LibXML-Common.spec, 1.17, 1.18 Message-ID: <20090726173530.DDCF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-LibXML-Common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21092 Modified Files: perl-XML-LibXML-Common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-LibXML-Common.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-LibXML-Common/devel/perl-XML-LibXML-Common.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-XML-LibXML-Common.spec 27 Feb 2009 04:38:02 -0000 1.17 +++ perl-XML-LibXML-Common.spec 26 Jul 2009 17:35:30 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-XML-LibXML-Common Version: 0.13 -Release: 14%{?dist} +Release: 15%{?dist} Summary: XML-LibXML-Common Perl module Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:35:46 +0000 (UTC) Subject: rpms/perl-XML-LibXSLT/devel perl-XML-LibXSLT.spec,1.19,1.20 Message-ID: <20090726173546.0BD2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-LibXSLT/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21275 Modified Files: perl-XML-LibXSLT.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-LibXSLT.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-LibXSLT/devel/perl-XML-LibXSLT.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- perl-XML-LibXSLT.spec 18 Mar 2009 13:44:17 -0000 1.19 +++ perl-XML-LibXSLT.spec 26 Jul 2009 17:35:45 -0000 1.20 @@ -4,7 +4,7 @@ Name: perl-XML-LibXSLT # NOTE: also update perl-XML-LibXML to a compatible version. See below why. Version: 1.68 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Perl module for interfacing to GNOME's libxslt @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.68-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Stepan Kasal - 1.68-3 - patch to fix a refcounting bug leading to segfaults (#490781) From jkeating at fedoraproject.org Sun Jul 26 17:36:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:36:00 +0000 (UTC) Subject: rpms/perl-XML-Merge/devel perl-XML-Merge.spec,1.3,1.4 Message-ID: <20090726173600.9034611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Merge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21452 Modified Files: perl-XML-Merge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Merge.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Merge/devel/perl-XML-Merge.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-XML-Merge.spec 27 Feb 2009 04:39:48 -0000 1.3 +++ perl-XML-Merge.spec 26 Jul 2009 17:36:00 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-XML-Merge Version: 1.2.565EgGd -Release: 4%{?dist} +Release: 5%{?dist} Summary: Flexibly merge XML documents Group: Development/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.565EgGd-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.565EgGd-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:36:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:36:16 +0000 (UTC) Subject: rpms/perl-XML-NamespaceSupport/devel perl-XML-NamespaceSupport.spec, 1.13, 1.14 Message-ID: <20090726173616.94BD511C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-NamespaceSupport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21647 Modified Files: perl-XML-NamespaceSupport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-NamespaceSupport.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-NamespaceSupport/devel/perl-XML-NamespaceSupport.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- perl-XML-NamespaceSupport.spec 27 Feb 2009 04:40:45 -0000 1.13 +++ perl-XML-NamespaceSupport.spec 26 Jul 2009 17:36:16 -0000 1.14 @@ -1,6 +1,6 @@ Name: perl-XML-NamespaceSupport Version: 1.09 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A simple generic namespace support class Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.09-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.09-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:36:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:36:32 +0000 (UTC) Subject: rpms/perl-XML-Parser/devel perl-XML-Parser.spec,1.28,1.29 Message-ID: <20090726173632.4671611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21815 Modified Files: perl-XML-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Parser/devel/perl-XML-Parser.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- perl-XML-Parser.spec 27 Feb 2009 04:41:40 -0000 1.28 +++ perl-XML-Parser.spec 26 Jul 2009 17:36:32 -0000 1.29 @@ -1,6 +1,6 @@ Name: perl-XML-Parser Version: 2.36 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Perl module for parsing XML files Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.36-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:36:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:36:47 +0000 (UTC) Subject: rpms/perl-XML-RSS/devel perl-XML-RSS.spec,1.12,1.13 Message-ID: <20090726173647.2E8B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-RSS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21994 Modified Files: perl-XML-RSS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-RSS.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-RSS/devel/perl-XML-RSS.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-XML-RSS.spec 15 May 2009 14:26:23 -0000 1.12 +++ perl-XML-RSS.spec 26 Jul 2009 17:36:47 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-XML-RSS Version: 1.44 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl module for managing RDF Site Summary (RSS) files Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.44-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Tom "spot" Callaway - 1.44-1 - update to 1.44 From jkeating at fedoraproject.org Sun Jul 26 17:37:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:37:01 +0000 (UTC) Subject: rpms/perl-XML-RSS-LibXML/devel perl-XML-RSS-LibXML.spec,1.1,1.2 Message-ID: <20090726173701.C6F8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-RSS-LibXML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22161 Modified Files: perl-XML-RSS-LibXML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-RSS-LibXML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-RSS-LibXML/devel/perl-XML-RSS-LibXML.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XML-RSS-LibXML.spec 19 May 2009 04:03:24 -0000 1.1 +++ perl-XML-RSS-LibXML.spec 26 Jul 2009 17:37:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XML-RSS-LibXML Version: 0.3004 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML::RSS with XML::LibXML License: GPL+ or Artistic Group: Development/Libraries @@ -62,5 +62,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3004-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Iain Arnell 0.3004-1 - Specfile autogenerated by cpanspec 1.77. From jkeating at fedoraproject.org Sun Jul 26 17:37:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:37:19 +0000 (UTC) Subject: rpms/perl-XML-RegExp/devel perl-XML-RegExp.spec,1.7,1.8 Message-ID: <20090726173719.4FBB411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-RegExp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22352 Modified Files: perl-XML-RegExp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-RegExp.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-RegExp/devel/perl-XML-RegExp.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-XML-RegExp.spec 27 Feb 2009 04:43:34 -0000 1.7 +++ perl-XML-RegExp.spec 26 Jul 2009 17:37:19 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-XML-RegExp Version: 0.03 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Regular expressions for XML tokens Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:37:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:37:34 +0000 (UTC) Subject: rpms/perl-XML-SAX/devel perl-XML-SAX.spec,1.22,1.23 Message-ID: <20090726173734.F0C2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-SAX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22551 Modified Files: perl-XML-SAX.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-SAX.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-SAX/devel/perl-XML-SAX.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-XML-SAX.spec 28 Apr 2009 13:14:47 -0000 1.22 +++ perl-XML-SAX.spec 26 Jul 2009 17:37:34 -0000 1.23 @@ -1,7 +1,7 @@ Summary: XML-SAX Perl module Name: perl-XML-SAX Version: 0.96 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Libraries License: GPL+ or Artistic @@ -105,6 +105,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.96-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Marcela Ma?l??ov? - 0.96-3 - 478905 fix scriptlets From jkeating at fedoraproject.org Sun Jul 26 17:37:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:37:51 +0000 (UTC) Subject: rpms/perl-XML-SAX-Writer/devel perl-XML-SAX-Writer.spec,1.5,1.6 Message-ID: <20090726173751.952F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-SAX-Writer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22747 Modified Files: perl-XML-SAX-Writer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-SAX-Writer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-SAX-Writer/devel/perl-XML-SAX-Writer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-XML-SAX-Writer.spec 27 Feb 2009 04:45:23 -0000 1.5 +++ perl-XML-SAX-Writer.spec 26 Jul 2009 17:37:51 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-XML-SAX-Writer Version: 0.50 -Release: 6%{?dist} +Release: 7%{?dist} Summary: SAX2 Writer License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.50-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.50-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:38:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:38:07 +0000 (UTC) Subject: rpms/perl-XML-Simple/devel perl-XML-Simple.spec,1.16,1.17 Message-ID: <20090726173807.EA13411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Simple/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22943 Modified Files: perl-XML-Simple.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Simple.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Simple/devel/perl-XML-Simple.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-XML-Simple.spec 27 Feb 2009 04:46:17 -0000 1.16 +++ perl-XML-Simple.spec 26 Jul 2009 17:38:07 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-XML-Simple Version: 2.18 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Easy API to maintain XML in Perl Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:38:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:38:20 +0000 (UTC) Subject: rpms/perl-XML-Simple-DTDReader/devel perl-XML-Simple-DTDReader.spec, 1.1, 1.2 Message-ID: <20090726173820.C34E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Simple-DTDReader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23098 Modified Files: perl-XML-Simple-DTDReader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Simple-DTDReader.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Simple-DTDReader/devel/perl-XML-Simple-DTDReader.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XML-Simple-DTDReader.spec 18 Mar 2009 09:10:13 -0000 1.1 +++ perl-XML-Simple-DTDReader.spec 26 Jul 2009 17:38:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XML-Simple-DTDReader Version: 0.04 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple XML file reading based on their DTDs License: GPL+ or Artistic Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.04-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Xavier Bachelot 0.04-3 - Drop R: perl(XML::Parser), already found by autoreq. From jkeating at fedoraproject.org Sun Jul 26 17:38:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:38:35 +0000 (UTC) Subject: rpms/perl-XML-Smart/devel perl-XML-Smart.spec,1.3,1.4 Message-ID: <20090726173835.E109F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23259 Modified Files: perl-XML-Smart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Smart.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Smart/devel/perl-XML-Smart.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-XML-Smart.spec 27 Feb 2009 04:47:11 -0000 1.3 +++ perl-XML-Smart.spec 26 Jul 2009 17:38:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-XML-Smart Version: 1.6.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Implementation of XML parser and writer for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:38:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:38:50 +0000 (UTC) Subject: rpms/perl-XML-Stream/devel perl-XML-Stream.spec,1.8,1.9 Message-ID: <20090726173850.0224B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Stream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23447 Modified Files: perl-XML-Stream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Stream.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Stream/devel/perl-XML-Stream.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-XML-Stream.spec 27 Feb 2009 04:48:03 -0000 1.8 +++ perl-XML-Stream.spec 26 Jul 2009 17:38:49 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-XML-Stream Version: 1.22 -Release: 10%{?dist} +Release: 11%{?dist} Summary: XML::Stream - streaming XML library Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.22-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.22-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:39:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:39:05 +0000 (UTC) Subject: rpms/perl-XML-Tidy/devel perl-XML-Tidy.spec,1.3,1.4 Message-ID: <20090726173905.30DDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Tidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23639 Modified Files: perl-XML-Tidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Tidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Tidy/devel/perl-XML-Tidy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-XML-Tidy.spec 27 Feb 2009 04:48:55 -0000 1.3 +++ perl-XML-Tidy.spec 26 Jul 2009 17:39:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-XML-Tidy Version: 1.2.54HJnFa -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tidy indenting of XML documents Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.54HJnFa-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.54HJnFa-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:39:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:39:21 +0000 (UTC) Subject: rpms/perl-XML-TokeParser/devel perl-XML-TokeParser.spec,1.1,1.2 Message-ID: <20090726173921.0497611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-TokeParser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23871 Modified Files: perl-XML-TokeParser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-TokeParser.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-TokeParser/devel/perl-XML-TokeParser.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XML-TokeParser.spec 4 May 2009 23:25:16 -0000 1.1 +++ perl-XML-TokeParser.spec 26 Jul 2009 17:39:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XML-TokeParser Version: 0.05 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simplified interface to XML::Parser License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.05-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 04 2009 Iain Arnell 0.05-1 - Specfile autogenerated by cpanspec 1.77. - Fix line-endings and permissions From jkeating at fedoraproject.org Sun Jul 26 17:39:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:39:38 +0000 (UTC) Subject: rpms/perl-XML-TreeBuilder/devel perl-XML-TreeBuilder.spec,1.5,1.6 Message-ID: <20090726173938.120F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-TreeBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24087 Modified Files: perl-XML-TreeBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-TreeBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-TreeBuilder/devel/perl-XML-TreeBuilder.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-XML-TreeBuilder.spec 16 Mar 2009 05:10:10 -0000 1.5 +++ perl-XML-TreeBuilder.spec 26 Jul 2009 17:39:37 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Parser that builds a tree of XML::Element objects Name: perl-XML-TreeBuilder Version: 3.09 -Release: 13%{?dist} +Release: 14%{?dist} License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/XML-TreeBuilder/ @@ -50,6 +50,9 @@ find $RPM_BUILD_ROOT -name .packlist -ex %{perl_vendorlib}/XML/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.09-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeff Fearn - 3.09-13 - Remove NoExpand and ErrorContext from output if they aren't set. From jkeating at fedoraproject.org Sun Jul 26 17:39:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:39:52 +0000 (UTC) Subject: rpms/perl-XML-Twig/devel perl-XML-Twig.spec,1.24,1.25 Message-ID: <20090726173952.CF14A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Twig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24289 Modified Files: perl-XML-Twig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Twig.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Twig/devel/perl-XML-Twig.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- perl-XML-Twig.spec 27 Feb 2009 04:50:54 -0000 1.24 +++ perl-XML-Twig.spec 26 Jul 2009 17:39:52 -0000 1.25 @@ -1,6 +1,6 @@ Name: perl-XML-Twig Version: 3.32 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A perl module for processing huge XML documents in tree mode Group: Development/Libraries @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.32-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:40:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:40:10 +0000 (UTC) Subject: rpms/perl-XML-Validator-Schema/devel perl-XML-Validator-Schema.spec, 1.5, 1.6 Message-ID: <20090726174010.A5FB511C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Validator-Schema/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24571 Modified Files: perl-XML-Validator-Schema.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Validator-Schema.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Validator-Schema/devel/perl-XML-Validator-Schema.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-XML-Validator-Schema.spec 27 Feb 2009 04:51:53 -0000 1.5 +++ perl-XML-Validator-Schema.spec 26 Jul 2009 17:40:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-XML-Validator-Schema Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Validate XML against a subset of W3C XML Schema License: GPL+ or Artistic Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:40:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:40:31 +0000 (UTC) Subject: rpms/perl-XML-Writer/devel perl-XML-Writer.spec,1.10,1.11 Message-ID: <20090726174031.939E311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Writer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24873 Modified Files: perl-XML-Writer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Writer.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Writer/devel/perl-XML-Writer.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-XML-Writer.spec 27 Feb 2009 04:52:47 -0000 1.10 +++ perl-XML-Writer.spec 26 Jul 2009 17:40:31 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-XML-Writer Version: 0.606 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple Perl module for writing XML documents Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.606-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.606-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:40:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:40:52 +0000 (UTC) Subject: rpms/perl-XML-XPath/devel perl-XML-XPath.spec,1.9,1.10 Message-ID: <20090726174052.7FEA811C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-XPath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25283 Modified Files: perl-XML-XPath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-XPath.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-XPath/devel/perl-XML-XPath.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-XML-XPath.spec 27 Feb 2009 04:53:50 -0000 1.9 +++ perl-XML-XPath.spec 26 Jul 2009 17:40:52 -0000 1.10 @@ -2,7 +2,7 @@ Name: perl-XML-XPath Version: 1.13 -Release: 8%{?dist} +Release: 9%{?dist} Summary: XPath parser and evaluator for Perl @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.13-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:41:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:41:12 +0000 (UTC) Subject: rpms/perl-XML-XPathEngine/devel perl-XML-XPathEngine.spec,1.7,1.8 Message-ID: <20090726174112.2981C11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-XPathEngine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25644 Modified Files: perl-XML-XPathEngine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-XPathEngine.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-XPathEngine/devel/perl-XML-XPathEngine.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-XML-XPathEngine.spec 5 May 2009 06:19:12 -0000 1.7 +++ perl-XML-XPathEngine.spec 26 Jul 2009 17:41:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-XML-XPathEngine Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Re-usable XPath engine for DOM-like trees License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 4 2009 Alex Lancaster - 0.12-1 - Update to latest upstream (#499068) From jkeating at fedoraproject.org Sun Jul 26 17:41:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:41:28 +0000 (UTC) Subject: rpms/perl-XML-XQL/devel perl-XML-XQL.spec,1.8,1.9 Message-ID: <20090726174128.A24BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-XQL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25997 Modified Files: perl-XML-XQL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-XQL.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-XQL/devel/perl-XML-XQL.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-XML-XQL.spec 27 Feb 2009 04:55:35 -0000 1.8 +++ perl-XML-XQL.spec 26 Jul 2009 17:41:28 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-XML-XQL Version: 0.68 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Perl module for querying XML tree structures with XQL License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{__perl_provides %{_mandir}/man3/XML::XQL*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.68-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.68-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:41:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:41:45 +0000 (UTC) Subject: rpms/perl-XML-Xerces/devel perl-XML-Xerces.spec,1.9,1.10 Message-ID: <20090726174145.687E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XML-Xerces/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26271 Modified Files: perl-XML-Xerces.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XML-Xerces.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XML-Xerces/devel/perl-XML-Xerces.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-XML-Xerces.spec 27 Feb 2009 04:56:27 -0000 1.9 +++ perl-XML-Xerces.spec 26 Jul 2009 17:41:45 -0000 1.10 @@ -3,7 +3,7 @@ Name: perl-XML-Xerces Version: %{ver}_%{PatchLevel} -Release: 12%{?dist} +Release: 13%{?dist} Summary: Perl API to Xerces XML parser Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7.0_0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.7.0_0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:42:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:42:01 +0000 (UTC) Subject: rpms/perl-XXX/devel perl-XXX.spec,1.1,1.2 Message-ID: <20090726174201.34CC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-XXX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26432 Modified Files: perl-XXX.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-XXX.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-XXX/devel/perl-XXX.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-XXX.spec 24 Apr 2009 06:08:42 -0000 1.1 +++ perl-XXX.spec 26 Jul 2009 17:42:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-XXX Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: See Your Data in the Nude License: GPL+ or Artistic Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Marcela Ma?l??ov? 0.12-2 - add BR Test::More and ExtUtils::MakeMaker From jkeating at fedoraproject.org Sun Jul 26 17:42:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:42:18 +0000 (UTC) Subject: rpms/perl-YAML/devel perl-YAML.spec,1.22,1.23 Message-ID: <20090726174218.156D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-YAML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26644 Modified Files: perl-YAML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-YAML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-YAML/devel/perl-YAML.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perl-YAML.spec 27 Feb 2009 04:57:23 -0000 1.22 +++ perl-YAML.spec 26 Jul 2009 17:42:17 -0000 1.23 @@ -1,6 +1,6 @@ Name: perl-YAML Version: 0.68 -Release: 2%{?dist} +Release: 3%{?dist} Summary: YAML Ain't Markup Language (tm) License: GPL+ or Artistic Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/YAML*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.68-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.68-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:42:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:42:34 +0000 (UTC) Subject: rpms/perl-YAML-LibYAML/devel perl-YAML-LibYAML.spec,1.1,1.2 Message-ID: <20090726174234.A854511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-YAML-LibYAML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26809 Modified Files: perl-YAML-LibYAML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-YAML-LibYAML.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-YAML-LibYAML/devel/perl-YAML-LibYAML.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-YAML-LibYAML.spec 4 May 2009 08:13:10 -0000 1.1 +++ perl-YAML-LibYAML.spec 26 Jul 2009 17:42:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-YAML-LibYAML Version: 0.32 -Release: 2%{?dist} +Release: 3%{?dist} Summary: YAML::LibYAML Perl module License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Marcela Ma?l??ov? 0.32-2 - add BR From jkeating at fedoraproject.org Sun Jul 26 17:42:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:42:50 +0000 (UTC) Subject: rpms/perl-YAML-Parser-Syck/devel perl-YAML-Parser-Syck.spec, 1.9, 1.10 Message-ID: <20090726174250.1F93E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-YAML-Parser-Syck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27002 Modified Files: perl-YAML-Parser-Syck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-YAML-Parser-Syck.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-YAML-Parser-Syck/devel/perl-YAML-Parser-Syck.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-YAML-Parser-Syck.spec 27 Feb 2009 04:58:18 -0000 1.9 +++ perl-YAML-Parser-Syck.spec 26 Jul 2009 17:42:50 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-YAML-Parser-Syck Version: 0.01 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Perl Wrapper for the YAML Parser Extension: libsyck License: GPL+ or Artistic Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:43:09 +0000 (UTC) Subject: rpms/perl-YAML-Syck/devel perl-YAML-Syck.spec,1.16,1.17 Message-ID: <20090726174309.E4D2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-YAML-Syck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27223 Modified Files: perl-YAML-Syck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-YAML-Syck.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-YAML-Syck/devel/perl-YAML-Syck.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-YAML-Syck.spec 27 Feb 2009 04:59:15 -0000 1.16 +++ perl-YAML-Syck.spec 26 Jul 2009 17:43:09 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-YAML-Syck Version: 1.05 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast, lightweight YAML loader and dumper License: MIT Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:43:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:43:24 +0000 (UTC) Subject: rpms/perl-YAML-Tiny/devel perl-YAML-Tiny.spec,1.12,1.13 Message-ID: <20090726174324.E7A3E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-YAML-Tiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27451 Modified Files: perl-YAML-Tiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-YAML-Tiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-YAML-Tiny/devel/perl-YAML-Tiny.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-YAML-Tiny.spec 23 May 2009 19:54:51 -0000 1.12 +++ perl-YAML-Tiny.spec 26 Jul 2009 17:43:24 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-YAML-Tiny Version: 1.39 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Read/Write YAML files with as little code as possible License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.39-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Chris Weyl 1.39-1 - auto-update to 1.39 (by cpan-spec-update 0.01) - added a new br on perl(File::Spec) (version 0.80) From jkeating at fedoraproject.org Sun Jul 26 17:43:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:43:40 +0000 (UTC) Subject: rpms/perl-accessors/devel perl-accessors.spec,1.1,1.2 Message-ID: <20090726174340.2CF1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-accessors/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27603 Modified Files: perl-accessors.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-accessors.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-accessors/devel/perl-accessors.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-accessors.spec 14 Jul 2009 09:35:57 -0000 1.1 +++ perl-accessors.spec 26 Jul 2009 17:43:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-accessors Version: 1.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create accessor methods in caller's package License: GPL+ or Artistic Group: Development/Libraries @@ -47,5 +47,8 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Daniel P. Berrange 1.01-1 - Specfile autogenerated by cpanspec 1.78. From jkeating at fedoraproject.org Sun Jul 26 17:43:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:43:55 +0000 (UTC) Subject: rpms/perl-aliased/devel perl-aliased.spec,1.6,1.7 Message-ID: <20090726174355.DC2A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-aliased/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27772 Modified Files: perl-aliased.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-aliased.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-aliased/devel/perl-aliased.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-aliased.spec 27 Feb 2009 05:01:01 -0000 1.6 +++ perl-aliased.spec 26 Jul 2009 17:43:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-aliased Version: 0.22 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Use shorter versions of class names License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.22-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:44:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:44:11 +0000 (UTC) Subject: rpms/perl-asa/devel perl-asa.spec,1.3,1.4 Message-ID: <20090726174411.9368911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-asa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27939 Modified Files: perl-asa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-asa.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-asa/devel/perl-asa.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-asa.spec 27 Feb 2009 05:02:01 -0000 1.3 +++ perl-asa.spec 26 Jul 2009 17:44:11 -0000 1.4 @@ -1,7 +1,7 @@ Name: perl-asa Version: 0.02 -Release: 3%{?dist} +Release: 4%{?dist} # see lib/asa.pm License: GPL+ or Artistic Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.02-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:44:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:44:27 +0000 (UTC) Subject: rpms/perl-autobox/devel perl-autobox.spec,1.2,1.3 Message-ID: <20090726174427.19AC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-autobox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28143 Modified Files: perl-autobox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-autobox.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-autobox/devel/perl-autobox.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-autobox.spec 27 Feb 2009 05:02:58 -0000 1.2 +++ perl-autobox.spec 26 Jul 2009 17:44:26 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-autobox Version: 2.55 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Call methods on native types License: GPL+ or Artistic Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.55-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.55-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From richardfearn at fedoraproject.org Sun Jul 26 17:44:28 2009 From: richardfearn at fedoraproject.org (richardfearn) Date: Sun, 26 Jul 2009 17:44:28 +0000 (UTC) Subject: rpms/ncdu/devel .cvsignore, 1.3, 1.4 ncdu.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090726174428.74E5211C00CE@cvs1.fedora.phx.redhat.com> Author: richardfearn Update of /cvs/pkgs/rpms/ncdu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27277 Modified Files: .cvsignore ncdu.spec sources Log Message: update to new upstream version 1.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Oct 2008 14:09:01 -0000 1.3 +++ .cvsignore 26 Jul 2009 17:44:28 -0000 1.4 @@ -1 +1 @@ -ncdu-1.4.tar.gz +ncdu-1.5.tar.gz Index: ncdu.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/devel/ncdu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ncdu.spec 25 Jul 2009 15:50:44 -0000 1.4 +++ ncdu.spec 26 Jul 2009 17:44:28 -0000 1.5 @@ -1,12 +1,12 @@ Name: ncdu -Version: 1.4 -Release: 3%{?dist} +Version: 1.5 +Release: 1%{?dist} Summary: Text-based disk usage viewer Group: Applications/File License: MIT URL: http://dev.yorhel.nl/ncdu/ -Source0: http://dev.yorhel.nl/download/ncdu-1.4.tar.gz +Source0: http://dev.yorhel.nl/download/ncdu-1.5.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{_bindir}/ncdu %changelog +* Sun Jul 26 2009 Richard Fearn - 1.5-1 +- update to new upstream version 1.5 + * Sat Jul 25 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Oct 2008 14:09:02 -0000 1.3 +++ sources 26 Jul 2009 17:44:28 -0000 1.4 @@ -1 +1 @@ -07f01579f7c9852033139ae9fa2414c9 ncdu-1.4.tar.gz +90a69cc3b2e9f0324eb14e6ce1df0f22 ncdu-1.5.tar.gz From jkeating at fedoraproject.org Sun Jul 26 17:44:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:44:46 +0000 (UTC) Subject: rpms/perl-bioperl/devel perl-bioperl.spec,1.21,1.22 Message-ID: <20090726174446.7FAC011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-bioperl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28382 Modified Files: perl-bioperl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-bioperl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-bioperl/devel/perl-bioperl.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- perl-bioperl.spec 27 Feb 2009 05:03:51 -0000 1.21 +++ perl-bioperl.spec 26 Jul 2009 17:44:46 -0000 1.22 @@ -1,6 +1,6 @@ Name: perl-bioperl Version: 1.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl tools for computational molecular biology Group: Development/Libraries @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:45:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:45:00 +0000 (UTC) Subject: rpms/perl-bioperl-run/devel perl-bioperl-run.spec,1.6,1.7 Message-ID: <20090726174500.D4B9A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-bioperl-run/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28632 Modified Files: perl-bioperl-run.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-bioperl-run.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-bioperl-run/devel/perl-bioperl-run.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-bioperl-run.spec 28 Feb 2009 13:35:37 -0000 1.6 +++ perl-bioperl-run.spec 26 Jul 2009 17:45:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-bioperl-run Version: 1.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Modules to provide a Perl interface to various bioinformatics applications Group: Development/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Alex Lancaster - 1.6.1-1 - Update to final 1.6.1 release From jkeating at fedoraproject.org Sun Jul 26 17:45:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:45:16 +0000 (UTC) Subject: rpms/perl-boolean/devel perl-boolean.spec,1.2,1.3 Message-ID: <20090726174516.8DB2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-boolean/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28845 Modified Files: perl-boolean.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-boolean.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-boolean/devel/perl-boolean.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-boolean.spec 27 Feb 2009 05:05:37 -0000 1.2 +++ perl-boolean.spec 26 Jul 2009 17:45:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-boolean Version: 0.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Boolean support for Perl License: GPL+ or Artistic Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:45:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:45:30 +0000 (UTC) Subject: rpms/perl-capitalization/devel perl-capitalization.spec,1.8,1.9 Message-ID: <20090726174530.CA81E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-capitalization/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29010 Modified Files: perl-capitalization.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-capitalization.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-capitalization/devel/perl-capitalization.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-capitalization.spec 27 Feb 2009 05:06:35 -0000 1.8 +++ perl-capitalization.spec 26 Jul 2009 17:45:30 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-capitalization Version: 0.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: No capitalization on method names Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.03-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:45:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:45:44 +0000 (UTC) Subject: rpms/perl-ccom/devel perl-ccom.spec,1.5,1.6 Message-ID: <20090726174545.0179E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-ccom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29165 Modified Files: perl-ccom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-ccom.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-ccom/devel/perl-ccom.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-ccom.spec 23 Feb 2009 21:04:37 -0000 1.5 +++ perl-ccom.spec 26 Jul 2009 17:45:44 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Perl module for context-sensitive phonetic string replacement Name: perl-ccom Version: 1.4.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://www.heise.de/ct/ftp/99/25/252/ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/*.pm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.4.1-3 - Rebuild against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 17:45:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:45:58 +0000 (UTC) Subject: rpms/perl-constant-boolean/devel perl-constant-boolean.spec, 1.3, 1.4 Message-ID: <20090726174558.ED40811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-constant-boolean/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29387 Modified Files: perl-constant-boolean.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-constant-boolean.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-constant-boolean/devel/perl-constant-boolean.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-constant-boolean.spec 27 Feb 2009 05:07:32 -0000 1.3 +++ perl-constant-boolean.spec 26 Jul 2009 17:45:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-constant-boolean Version: 0.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Define TRUE and FALSE constants License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.01-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:46:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:46:14 +0000 (UTC) Subject: rpms/perl-eperl/devel perl-eperl.spec,1.9,1.10 Message-ID: <20090726174614.A1FD911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-eperl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29571 Modified Files: perl-eperl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-eperl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-eperl/devel/perl-eperl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- perl-eperl.spec 27 Feb 2009 05:08:25 -0000 1.9 +++ perl-eperl.spec 26 Jul 2009 17:46:14 -0000 1.10 @@ -1,6 +1,6 @@ Name: perl-eperl Version: 2.2.14 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Embedded Perl Language License: GPL+ or Artistic Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.14-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.14-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:46:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:46:28 +0000 (UTC) Subject: rpms/perl-gettext/devel perl-gettext.spec,1.12,1.13 Message-ID: <20090726174628.1AAE311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-gettext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29722 Modified Files: perl-gettext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-gettext.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-gettext/devel/perl-gettext.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-gettext.spec 27 Feb 2009 05:09:18 -0000 1.12 +++ perl-gettext.spec 26 Jul 2009 17:46:27 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-gettext Version: 1.05 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Interface to gettext family of functions Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.05-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:46:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:46:43 +0000 (UTC) Subject: rpms/perl-libintl/devel perl-libintl.spec,1.11,1.12 Message-ID: <20090726174643.654D511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-libintl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29896 Modified Files: perl-libintl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-libintl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-libintl/devel/perl-libintl.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-libintl.spec 27 Feb 2009 05:10:12 -0000 1.11 +++ perl-libintl.spec 26 Jul 2009 17:46:43 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Internationalization library for Perl, compatible with gettext Name: perl-libintl Version: 1.16 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://search.cpan.org/dist/libintl-perl/ @@ -55,6 +55,9 @@ chmod -R u+w %{buildroot}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.16-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.16-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:46:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:46:58 +0000 (UTC) Subject: rpms/perl-libwhisker2/devel perl-libwhisker2.spec,1.4,1.5 Message-ID: <20090726174658.5066111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-libwhisker2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30041 Modified Files: perl-libwhisker2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-libwhisker2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-libwhisker2/devel/perl-libwhisker2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-libwhisker2.spec 27 Feb 2009 05:11:05 -0000 1.4 +++ perl-libwhisker2.spec 26 Jul 2009 17:46:58 -0000 1.5 @@ -2,7 +2,7 @@ Name: perl-libwhisker2 Obsoletes: perl-libwhisker <= 1.8 Provides: perl-libwhisker = %{version}-%{release} Version: 2.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Perl module geared specificly for HTTP testing Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:47:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:47:14 +0000 (UTC) Subject: rpms/perl-libwww-perl/devel perl-libwww-perl.spec,1.32,1.33 Message-ID: <20090726174714.0E18E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-libwww-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30202 Modified Files: perl-libwww-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-libwww-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-libwww-perl/devel/perl-libwww-perl.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- perl-libwww-perl.spec 27 Feb 2009 05:11:58 -0000 1.32 +++ perl-libwww-perl.spec 26 Jul 2009 17:47:13 -0000 1.33 @@ -1,6 +1,6 @@ Name: perl-libwww-perl Version: 5.825 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Perl interface to the World-Wide Web Group: Development/Libraries @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.825-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.825-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:47:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:47:30 +0000 (UTC) Subject: rpms/perl-libxml-perl/devel perl-libxml-perl.spec,1.17,1.18 Message-ID: <20090726174730.0489811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-libxml-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30404 Modified Files: perl-libxml-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-libxml-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-libxml-perl/devel/perl-libxml-perl.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- perl-libxml-perl.spec 27 Feb 2009 05:12:51 -0000 1.17 +++ perl-libxml-perl.spec 26 Jul 2009 17:47:29 -0000 1.18 @@ -1,6 +1,6 @@ Name: perl-libxml-perl Version: 0.08 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A collection of Perl modules for working with XML Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.08-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:47:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:47:45 +0000 (UTC) Subject: rpms/perl-local-lib/devel perl-local-lib.spec,1.3,1.4 Message-ID: <20090726174745.6D7A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-local-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30558 Modified Files: perl-local-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-local-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-local-lib/devel/perl-local-lib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-local-lib.spec 3 Jun 2009 05:17:55 -0000 1.3 +++ perl-local-lib.spec 26 Jul 2009 17:47:45 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-local-lib Version: 1.004001 -Release: 1%{?dist} +Release: 2%{?dist} # lib/local/lib.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.004001-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Chris Weyl 1.004001-1 - auto-update to 1.004001 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Sun Jul 26 17:48:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:48:03 +0000 (UTC) Subject: rpms/perl-mogilefs-server/devel perl-mogilefs-server.spec, 1.11, 1.12 Message-ID: <20090726174803.1A52611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-mogilefs-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30736 Modified Files: perl-mogilefs-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-mogilefs-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-mogilefs-server/devel/perl-mogilefs-server.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-mogilefs-server.spec 27 Feb 2009 05:13:48 -0000 1.11 +++ perl-mogilefs-server.spec 26 Jul 2009 17:48:02 -0000 1.12 @@ -1,6 +1,6 @@ Name: perl-mogilefs-server Version: 2.30 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Server part of the MogileFS distributed filesystem License: GPL+ or Artistic Group: System Environment/Daemons @@ -255,6 +255,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:48:26 +0000 (UTC) Subject: rpms/perl-namespace-autoclean/devel perl-namespace-autoclean.spec, 1.1, 1.2 Message-ID: <20090726174826.236B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-namespace-autoclean/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30936 Modified Files: perl-namespace-autoclean.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-namespace-autoclean.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-namespace-autoclean/devel/perl-namespace-autoclean.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-namespace-autoclean.spec 2 Jul 2009 06:05:40 -0000 1.1 +++ perl-namespace-autoclean.spec 26 Jul 2009 17:48:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-namespace-autoclean Version: 0.08 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Keep imports out of your namespace @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.08-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Chris Weyl 0.08-1 - submission From jkeating at fedoraproject.org Sun Jul 26 17:48:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:48:43 +0000 (UTC) Subject: rpms/perl-namespace-clean/devel perl-namespace-clean.spec,1.5,1.6 Message-ID: <20090726174843.0976911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-namespace-clean/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31180 Modified Files: perl-namespace-clean.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-namespace-clean.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-namespace-clean/devel/perl-namespace-clean.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-namespace-clean.spec 2 Apr 2009 07:42:59 -0000 1.5 +++ perl-namespace-clean.spec 26 Jul 2009 17:48:42 -0000 1.6 @@ -1,7 +1,7 @@ Name: perl-namespace-clean Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Keep your namespace tidy @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Chris Weyl 0.11-1 - update to 0.11 From jkeating at fedoraproject.org Sun Jul 26 17:48:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:48:58 +0000 (UTC) Subject: rpms/perl-p5-Palm/devel perl-p5-Palm.spec,1.2,1.3 Message-ID: <20090726174858.3974A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-p5-Palm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31362 Modified Files: perl-p5-Palm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-p5-Palm.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-p5-Palm/devel/perl-p5-Palm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-p5-Palm.spec 17 Jun 2009 20:57:07 -0000 1.2 +++ perl-p5-Palm.spec 26 Jul 2009 17:48:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-p5-Palm Version: 1.009 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Palm OS utility functions License: GPL+ or Artistic Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/pdbdump.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.009-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2007 Emmanuel Seyman 1.009-3 - Add Test::More to the BuildRequires so that the tests can actually run From jkeating at fedoraproject.org Sun Jul 26 17:49:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:49:16 +0000 (UTC) Subject: rpms/perl-parent/devel perl-parent.spec,1.3,1.4 Message-ID: <20090726174916.524AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-parent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31560 Modified Files: perl-parent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-parent.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-parent/devel/perl-parent.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-parent.spec 27 Feb 2009 05:15:40 -0000 1.3 +++ perl-parent.spec 26 Jul 2009 17:49:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-parent Version: 0.221 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Establish an ISA relationship with base classes at compile time License: GPL+ or Artistic Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.221-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.221-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:49:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:49:33 +0000 (UTC) Subject: rpms/perl-perlmenu/devel perl-perlmenu.spec,1.6,1.7 Message-ID: <20090726174933.7975611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-perlmenu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31764 Modified Files: perl-perlmenu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-perlmenu.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-perlmenu/devel/perl-perlmenu.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-perlmenu.spec 27 Feb 2009 05:16:34 -0000 1.6 +++ perl-perlmenu.spec 26 Jul 2009 17:49:33 -0000 1.7 @@ -1,6 +1,6 @@ Name: perl-perlmenu Version: 4.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Perl library module for curses-based menus & data-entry templates Group: Development/Libraries @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorlib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:49:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:49:48 +0000 (UTC) Subject: rpms/perl-pgsql_perl5/devel perl-pgsql_perl5.spec,1.2,1.3 Message-ID: <20090726174948.DD6C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-pgsql_perl5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31938 Modified Files: perl-pgsql_perl5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-pgsql_perl5.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-pgsql_perl5/devel/perl-pgsql_perl5.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-pgsql_perl5.spec 27 Feb 2009 05:17:27 -0000 1.2 +++ perl-pgsql_perl5.spec 26 Jul 2009 17:49:48 -0000 1.3 @@ -1,7 +1,7 @@ %define realname pgsql_perl5 Name: perl-pgsql_perl5 Version: 1.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Pg - Perl5 extension for PostgreSQL Group: Development/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.9.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:50:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:50:07 +0000 (UTC) Subject: rpms/perl-pmtools/devel perl-pmtools.spec,1.10,1.11 Message-ID: <20090726175007.21DC911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-pmtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32128 Modified Files: perl-pmtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-pmtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-pmtools/devel/perl-pmtools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-pmtools.spec 27 Feb 2009 05:18:21 -0000 1.10 +++ perl-pmtools.spec 26 Jul 2009 17:50:04 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-pmtools Version: 1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A suite of small programs to help manage Perl modules Group: Development/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:50:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:50:21 +0000 (UTC) Subject: rpms/perl-prefork/devel perl-prefork.spec,1.10,1.11 Message-ID: <20090726175021.9AB3011C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-prefork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32362 Modified Files: perl-prefork.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-prefork.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-prefork/devel/perl-prefork.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-prefork.spec 18 Jun 2009 03:33:08 -0000 1.10 +++ perl-prefork.spec 26 Jul 2009 17:50:21 -0000 1.11 @@ -1,6 +1,6 @@ Name: perl-prefork Version: 1.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Optimized module loading for forking or non-forking processes License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ make test AUTOMATED_TESTING=1 %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Ralf Cors?pius - 1.03-1 - Upstream update. From jkeating at fedoraproject.org Sun Jul 26 17:50:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:50:37 +0000 (UTC) Subject: rpms/perl-qooxdoo-compat/devel perl-qooxdoo-compat.spec,1.2,1.3 Message-ID: <20090726175037.3E95E11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-qooxdoo-compat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32551 Modified Files: perl-qooxdoo-compat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-qooxdoo-compat.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-qooxdoo-compat/devel/perl-qooxdoo-compat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-qooxdoo-compat.spec 27 Feb 2009 05:20:09 -0000 1.2 +++ perl-qooxdoo-compat.spec 26 Jul 2009 17:50:37 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Perl backend for Qooxdoo Name: perl-qooxdoo-compat Version: 0.7.3 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 or EPL Group: Development/Languages URL: http://qooxdoo.org/ @@ -41,6 +41,9 @@ dos2unix -k AUTHORS LICENSE README RELEA %{perl_vendorlib}/Qooxdoo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:50:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:50:53 +0000 (UTC) Subject: rpms/perl-rpm-build-perl/devel perl-rpm-build-perl.spec,1.2,1.3 Message-ID: <20090726175053.32CA311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-rpm-build-perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32744 Modified Files: perl-rpm-build-perl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-rpm-build-perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-rpm-build-perl/devel/perl-rpm-build-perl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-rpm-build-perl.spec 27 Feb 2009 05:21:04 -0000 1.2 +++ perl-rpm-build-perl.spec 26 Jul 2009 17:50:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-rpm-build-perl Version: 0.6.8 -Release: 2%{?dist} +Release: 3%{?dist} # see lib/B/PerlReq.pm, among others License: GPLv2+ Group: Development/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_mandir}/man1/*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:51:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:51:11 +0000 (UTC) Subject: rpms/perltidy/devel perltidy.spec,1.22,1.23 Message-ID: <20090726175111.C82B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perltidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv509 Modified Files: perltidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perltidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/perltidy/devel/perltidy.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- perltidy.spec 18 Jun 2009 17:08:49 -0000 1.22 +++ perltidy.spec 26 Jul 2009 17:51:11 -0000 1.23 @@ -1,6 +1,6 @@ Name: perltidy Version: 20090616 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for indenting and reformatting Perl scripts Group: Development/Tools @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090616-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Ville Skytt? - 20090616-1 - Update to 20090616. From jkeating at fedoraproject.org Sun Jul 26 17:51:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:51:25 +0000 (UTC) Subject: rpms/pessulus/devel pessulus.spec,1.19,1.20 Message-ID: <20090726175125.609B211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pessulus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv702 Modified Files: pessulus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pessulus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pessulus/devel/pessulus.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pessulus.spec 27 Feb 2009 05:22:57 -0000 1.19 +++ pessulus.spec 26 Jul 2009 17:51:25 -0000 1.20 @@ -3,7 +3,7 @@ Name: pessulus Version: %{basever}.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A lockdown editor for GNOME Group: Applications/System @@ -73,6 +73,9 @@ fi %{_datadir}/icons/hicolor/*/apps/pessulus.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.23.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.23.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:51:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:51:39 +0000 (UTC) Subject: rpms/petitboot/devel petitboot.spec,1.15,1.16 Message-ID: <20090726175139.11EC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/petitboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv889 Modified Files: petitboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: petitboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/petitboot/devel/petitboot.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- petitboot.spec 27 Feb 2009 05:23:48 -0000 1.15 +++ petitboot.spec 26 Jul 2009 17:51:38 -0000 1.16 @@ -2,7 +2,7 @@ Name: petitboot Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Graphical kexec-based bootloader, originally for PlayStation 3 Group: System Environment/Base @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:51:52 +0000 (UTC) Subject: rpms/pexpect/devel pexpect.spec,1.23,1.24 Message-ID: <20090726175152.D220C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pexpect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1074 Modified Files: pexpect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pexpect.spec =================================================================== RCS file: /cvs/pkgs/rpms/pexpect/devel/pexpect.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- pexpect.spec 23 Feb 2009 20:36:33 -0000 1.23 +++ pexpect.spec 26 Jul 2009 17:51:52 -0000 1.24 @@ -3,7 +3,7 @@ Summary: Pure Python Expect-like module Name: pexpect Version: 2.3 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: Development/Languages URL: http://pexpect.sourceforge.net/ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 2.3-3 - Rebuild for gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 17:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:52:07 +0000 (UTC) Subject: rpms/pfmon/devel pfmon.spec,1.35,1.36 Message-ID: <20090726175207.A650011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pfmon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1235 Modified Files: pfmon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pfmon.spec =================================================================== RCS file: /cvs/pkgs/rpms/pfmon/devel/pfmon.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- pfmon.spec 26 Feb 2009 19:41:35 -0000 1.35 +++ pfmon.spec 26 Jul 2009 17:52:07 -0000 1.36 @@ -1,7 +1,7 @@ Summary: A performance monitoring tool for Linux/ia64 Name: pfmon Version: 3.5 -Release: 4%{?dist} +Release: 5%{?dist} # Some of the files are GPLv2+, but since some are GPLv2, the whole is GPLv2. License: GPLv2 Group: Development/Tools @@ -51,6 +51,9 @@ rm -rf %{buildroot} %attr(755,root,root) %{_bindir}/pfmon_gen %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:52:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:52:20 +0000 (UTC) Subject: rpms/pfqueue/devel pfqueue.spec,1.6,1.7 Message-ID: <20090726175220.D373B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pfqueue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1389 Modified Files: pfqueue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pfqueue.spec =================================================================== RCS file: /cvs/pkgs/rpms/pfqueue/devel/pfqueue.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pfqueue.spec 26 Feb 2009 19:42:34 -0000 1.6 +++ pfqueue.spec 26 Jul 2009 17:52:20 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Queue manager for the Postfix/Exim Mail Transport Agents Name: pfqueue Version: 0.5.6 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://pfqueue.sourceforge.net/ @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{_mandir}/man5/pfqueue.conf.5* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:52:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:52:35 +0000 (UTC) Subject: rpms/pfscalibration/devel pfscalibration.spec,1.3,1.4 Message-ID: <20090726175235.3622611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pfscalibration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1573 Modified Files: pfscalibration.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pfscalibration.spec =================================================================== RCS file: /cvs/pkgs/rpms/pfscalibration/devel/pfscalibration.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pfscalibration.spec 26 Feb 2009 19:43:43 -0000 1.3 +++ pfscalibration.spec 26 Jul 2009 17:52:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: pfscalibration Version: 1.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Scripts and programs for photometric calibration Group: Applications/Multimedia @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:52:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:52:49 +0000 (UTC) Subject: rpms/pfstmo/devel pfstmo.spec,1.5,1.6 Message-ID: <20090726175249.D464D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pfstmo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1767 Modified Files: pfstmo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pfstmo.spec =================================================================== RCS file: /cvs/pkgs/rpms/pfstmo/devel/pfstmo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pfstmo.spec 26 Feb 2009 19:44:45 -0000 1.5 +++ pfstmo.spec 26 Jul 2009 17:52:49 -0000 1.6 @@ -1,6 +1,6 @@ Name: pfstmo Version: 1.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: PFS tone mapping operators Group: Applications/Multimedia @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:53:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:53:05 +0000 (UTC) Subject: rpms/pfstools/devel pfstools.spec,1.6,1.7 Message-ID: <20090726175305.031CE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pfstools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1937 Modified Files: pfstools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pfstools.spec =================================================================== RCS file: /cvs/pkgs/rpms/pfstools/devel/pfstools.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pfstools.spec 9 Jun 2009 18:52:20 -0000 1.6 +++ pfstools.spec 26 Jul 2009 17:53:04 -0000 1.7 @@ -1,6 +1,6 @@ Name: pfstools Version: 1.7.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Programs for handling high-dynamic range images Group: Applications/Multimedia @@ -268,6 +268,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/pfs-1.2 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Ville Skytt? - 1.7.0-7 - Patch to generate useful debuginfo subpackage (#499912). - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Sun Jul 26 17:53:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:53:20 +0000 (UTC) Subject: rpms/pg_top/devel pg_top.spec,1.3,1.4 Message-ID: <20090726175320.0FF4411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pg_top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2125 Modified Files: pg_top.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pg_top.spec =================================================================== RCS file: /cvs/pkgs/rpms/pg_top/devel/pg_top.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pg_top.spec 15 Jul 2009 03:33:03 -0000 1.3 +++ pg_top.spec 26 Jul 2009 17:53:19 -0000 1.4 @@ -1,7 +1,7 @@ Summary: 'top' for PostgreSQL process Name: pg_top Version: 3.6.2 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1780/%{name}-%{version}.tar.bz2 @@ -41,6 +41,9 @@ rm -rf %{buildroot} %doc FAQ HISTORY INSTALL LICENSE README TODO Y2K %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Itamar Reis Peixoto - 3.6.2-5 - fix buildrequires, systemtap-sdt-devel is required for From jkeating at fedoraproject.org Sun Jul 26 17:53:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:53:37 +0000 (UTC) Subject: rpms/pgadmin3/devel pgadmin3.spec,1.23,1.24 Message-ID: <20090726175337.5BE6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pgadmin3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2291 Modified Files: pgadmin3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pgadmin3.spec =================================================================== RCS file: /cvs/pkgs/rpms/pgadmin3/devel/pgadmin3.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- pgadmin3.spec 29 Jun 2009 15:02:11 -0000 1.23 +++ pgadmin3.spec 26 Jul 2009 17:53:36 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Graphical client for PostgreSQL Name: pgadmin3 Version: 1.10.0 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/Databases Source: ftp://ftp.postgresql.org/pub/pgadmin3/release/v%{version}/src/%{name}-%{version}.tar.gz @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Devrim GUNDUZ 1.10.0-1 - Update to 1.10.0 - Update licence From jkeating at fedoraproject.org Sun Jul 26 17:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:53:55 +0000 (UTC) Subject: rpms/pgbouncer/devel pgbouncer.spec,1.2,1.3 Message-ID: <20090726175355.0F17E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pgbouncer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2510 Modified Files: pgbouncer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pgbouncer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pgbouncer/devel/pgbouncer.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pgbouncer.spec 26 Feb 2009 19:46:56 -0000 1.2 +++ pgbouncer.spec 26 Jul 2009 17:53:54 -0000 1.3 @@ -2,7 +2,7 @@ Name: pgbouncer Version: 1.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Lightweight connection pooler for PostgreSQL Group: Applications/Databases License: MIT and BSD @@ -82,6 +82,9 @@ rm -rf %{buildroot} %{_mandir}/man5/%{name}.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:54:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:54:14 +0000 (UTC) Subject: rpms/pgfouine/devel pgfouine.spec,1.9,1.10 Message-ID: <20090726175414.3D3C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pgfouine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2716 Modified Files: pgfouine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pgfouine.spec =================================================================== RCS file: /cvs/pkgs/rpms/pgfouine/devel/pgfouine.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pgfouine.spec 26 Apr 2009 18:48:05 -0000 1.9 +++ pgfouine.spec 26 Jul 2009 17:54:14 -0000 1.10 @@ -1,7 +1,7 @@ Summary: PgFouine PostgreSQL log analyzer Name: pgfouine Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} BuildArch: noarch License: GPLv2+ Group: Development/Tools @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Devrim Gunduz - 1.1-1 - Update to 1.1 From jkeating at fedoraproject.org Sun Jul 26 17:54:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:54:30 +0000 (UTC) Subject: rpms/pgp-tools/devel pgp-tools.spec,1.12,1.13 Message-ID: <20090726175430.9F1FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pgp-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2922 Modified Files: pgp-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pgp-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/pgp-tools/devel/pgp-tools.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pgp-tools.spec 18 Apr 2009 13:31:46 -0000 1.12 +++ pgp-tools.spec 26 Jul 2009 17:54:30 -0000 1.13 @@ -2,7 +2,7 @@ %define debian_version 1.1 Name: pgp-tools Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of several utilities related to OpenPGP Group: Applications/System License: BSD and GPLv2+ @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %doc __fedora_docs/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Matt Domsch - 1.1-2 - add BRs so %%check succeeds - drop upstream's outdated copy of pgpring. mutt provides a newer From jkeating at fedoraproject.org Sun Jul 26 17:54:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:54:48 +0000 (UTC) Subject: rpms/pharosc/devel pharosc.spec,1.2,1.3 Message-ID: <20090726175448.1E76B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pharosc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3129 Modified Files: pharosc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pharosc.spec =================================================================== RCS file: /cvs/pkgs/rpms/pharosc/devel/pharosc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pharosc.spec 26 Feb 2009 19:49:53 -0000 1.2 +++ pharosc.spec 26 Jul 2009 17:54:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: pharosc Version: 8.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: VLSI and ASIC Technology Standard Cell Libraries Group: Applications/Engineering @@ -426,6 +426,9 @@ sed -i "s|../../../|%{_datadir}/%{name}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:55:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:55:18 +0000 (UTC) Subject: rpms/phasex/devel phasex.spec,1.5,1.6 Message-ID: <20090726175518.4452111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phasex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3388 Modified Files: phasex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phasex.spec =================================================================== RCS file: /cvs/pkgs/rpms/phasex/devel/phasex.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- phasex.spec 9 Jun 2009 18:33:06 -0000 1.5 +++ phasex.spec 26 Jul 2009 17:55:18 -0000 1.6 @@ -2,7 +2,7 @@ Name: phasex Version: 0.11.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: PHASEX -- Phase Harmonic Advanced Synthesis EXperiment Group: Applications/Multimedia License: GPLv2 @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/phasex-icon.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Ville Skytt? - 0.11.1-7 - Build with $RPM_OPT_FLAGS (#499914). - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Sun Jul 26 17:55:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:55:32 +0000 (UTC) Subject: rpms/phatch/devel phatch.spec,1.2,1.3 Message-ID: <20090726175532.6A70D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3561 Modified Files: phatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/phatch/devel/phatch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- phatch.spec 26 Feb 2009 20:21:34 -0000 1.2 +++ phatch.spec 26 Jul 2009 17:55:32 -0000 1.3 @@ -2,7 +2,7 @@ %define debug_package %{nil} Name: phatch Version: 0.1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Photo batch processor Group: Applications/Multimedia @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/nautilus/extensions-2.0/python/%{name}_* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:55:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:55:47 +0000 (UTC) Subject: rpms/phonon/devel phonon.spec,1.43,1.44 Message-ID: <20090726175547.2634411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phonon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3734 Modified Files: phonon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phonon.spec =================================================================== RCS file: /cvs/pkgs/rpms/phonon/devel/phonon.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- phonon.spec 3 Jul 2009 10:48:20 -0000 1.43 +++ phonon.spec 26 Jul 2009 17:55:47 -0000 1.44 @@ -4,7 +4,7 @@ Summary: Multimedia framework api Name: phonon Version: 4.3.1 -Release: 11%{?dist} +Release: 12%{?dist} Group: Applications/Multimedia License: LGPLv2+ URL: http://phonon.kde.org/ @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.3.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Rex Dieter - 4.3.1-11 - fix for '#' in filenames From jkeating at fedoraproject.org Sun Jul 26 17:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:56:04 +0000 (UTC) Subject: rpms/phoronix-test-suite/devel phoronix-test-suite.spec,1.2,1.3 Message-ID: <20090726175604.C440511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phoronix-test-suite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3948 Modified Files: phoronix-test-suite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phoronix-test-suite.spec =================================================================== RCS file: /cvs/pkgs/rpms/phoronix-test-suite/devel/phoronix-test-suite.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- phoronix-test-suite.spec 17 Apr 2009 03:00:26 -0000 1.2 +++ phoronix-test-suite.spec 26 Jul 2009 17:56:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: phoronix-test-suite Version: 1.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Comprehensive Linux Benchmarking System Group: Applications/Publishing @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 16 2009 Joseph Smidt 1.8.1-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 17:56:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:56:18 +0000 (UTC) Subject: rpms/photoml/devel photoml.spec,1.6,1.7 Message-ID: <20090726175618.F25E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/photoml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4127 Modified Files: photoml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: photoml.spec =================================================================== RCS file: /cvs/pkgs/rpms/photoml/devel/photoml.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- photoml.spec 26 Feb 2009 20:23:26 -0000 1.6 +++ photoml.spec 26 Jul 2009 17:56:18 -0000 1.7 @@ -1,6 +1,6 @@ Name: photoml Version: 0.26 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An XML DTD and tools for describing photographic metadata Group: Applications/Multimedia @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:56:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:56:32 +0000 (UTC) Subject: rpms/photoprint/devel photoprint.spec,1.1,1.2 Message-ID: <20090726175632.306D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/photoprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4280 Modified Files: photoprint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: photoprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/photoprint/devel/photoprint.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- photoprint.spec 22 Apr 2009 06:47:33 -0000 1.1 +++ photoprint.spec 26 Jul 2009 17:56:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: photoprint Version: 0.4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Utility for printing digital photographs Group: Applications/Multimedia @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Zarko - 0.4.0-6 - resolving summary, license - added g++4.4 patch From jkeating at fedoraproject.org Sun Jul 26 17:56:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:56:45 +0000 (UTC) Subject: rpms/photoprint-borders/devel photoprint-borders.spec,1.1,1.2 Message-ID: <20090726175645.806BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/photoprint-borders/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4438 Modified Files: photoprint-borders.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: photoprint-borders.spec =================================================================== RCS file: /cvs/pkgs/rpms/photoprint-borders/devel/photoprint-borders.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- photoprint-borders.spec 27 Apr 2009 12:14:41 -0000 1.1 +++ photoprint-borders.spec 26 Jul 2009 17:56:45 -0000 1.2 @@ -1,6 +1,6 @@ Name: photoprint-borders Version: 0.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PhotoPrint Borders are the printing frames for use with PhotoPrint Group: Applications/Multimedia @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Zarko - 0.0.2-4 - Resolved timestamps and owning issues From jkeating at fedoraproject.org Sun Jul 26 17:57:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:57:03 +0000 (UTC) Subject: rpms/php/devel php.spec,1.180,1.181 Message-ID: <20090726175703.5738B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4617 Modified Files: php.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php.spec =================================================================== RCS file: /cvs/pkgs/rpms/php/devel/php.spec,v retrieving revision 1.180 retrieving revision 1.181 diff -u -p -r1.180 -r1.181 --- php.spec 16 Jul 2009 22:32:30 -0000 1.180 +++ php.spec 26 Jul 2009 17:57:02 -0000 1.181 @@ -13,7 +13,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.3.0 -Release: 4%{?dist} +Release: 5%{?dist} License: PHP Group: Development/Languages URL: http://www.php.net/ @@ -843,6 +843,9 @@ rm files.* macros.php %files enchant -f files.enchant %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Joe Orton 5.3.0-4 - rediff systzdata patch From jkeating at fedoraproject.org Sun Jul 26 17:57:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:57:20 +0000 (UTC) Subject: rpms/php-IDNA_Convert/devel php-IDNA_Convert.spec,1.1,1.2 Message-ID: <20090726175720.D6EE411C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-IDNA_Convert/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4800 Modified Files: php-IDNA_Convert.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-IDNA_Convert.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-IDNA_Convert/devel/php-IDNA_Convert.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-IDNA_Convert.spec 10 May 2009 06:14:13 -0000 1.1 +++ php-IDNA_Convert.spec 26 Jul 2009 17:57:20 -0000 1.2 @@ -1,6 +1,6 @@ Name: php-IDNA_Convert Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides conversion of internationalized strings to UTF8 Group: Development/Libraries @@ -43,6 +43,9 @@ rm -rf ${buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 David Nalley 0.6.3-2 - Corrected license to LGPLv2+ from LGPLv2 * Wed Apr 22 2009 David Nalley 0.6.3-1 From jkeating at fedoraproject.org Sun Jul 26 17:57:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:57:35 +0000 (UTC) Subject: rpms/php-LightweightPicasaAPI/devel php-LightweightPicasaAPI.spec, 1.1, 1.2 Message-ID: <20090726175735.5885911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-LightweightPicasaAPI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4971 Modified Files: php-LightweightPicasaAPI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-LightweightPicasaAPI.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-LightweightPicasaAPI/devel/php-LightweightPicasaAPI.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-LightweightPicasaAPI.spec 13 Jul 2009 03:00:09 -0000 1.1 +++ php-LightweightPicasaAPI.spec 26 Jul 2009 17:57:35 -0000 1.2 @@ -1,6 +1,6 @@ Name: php-LightweightPicasaAPI Version: 3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight API for Picasa in PHP Group: Development/Libraries @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/php/LightweightPicasaAPI %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Paul W. Frields - 3.3-1 - Initial RPM release From jkeating at fedoraproject.org Sun Jul 26 17:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:57:49 +0000 (UTC) Subject: rpms/php-Smarty/devel php-Smarty.spec,1.11,1.12 Message-ID: <20090726175749.0A48611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-Smarty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5138 Modified Files: php-Smarty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-Smarty.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-Smarty/devel/php-Smarty.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- php-Smarty.spec 25 May 2009 20:09:29 -0000 1.11 +++ php-Smarty.spec 26 Jul 2009 17:57:48 -0000 1.12 @@ -1,7 +1,7 @@ Name: php-Smarty Summary: Template/Presentation Framework for PHP Version: 2.6.25 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://smarty.php.net/distributions/Smarty-%{version}.tar.gz License: LGPLv2+ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Christopher Stone 2.6.25-1 - Upstream sync From jkeating at fedoraproject.org Sun Jul 26 17:58:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:58:05 +0000 (UTC) Subject: rpms/php-ZendFramework/devel php-ZendFramework.spec,1.16,1.17 Message-ID: <20090726175805.C5EF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ZendFramework/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5304 Modified Files: php-ZendFramework.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ZendFramework.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ZendFramework/devel/php-ZendFramework.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- php-ZendFramework.spec 20 Jul 2009 10:13:50 -0000 1.16 +++ php-ZendFramework.spec 26 Jul 2009 17:58:05 -0000 1.17 @@ -4,7 +4,7 @@ Summary: Leading open-source PHP framework Name: php-ZendFramework Version: 1.8.4 -Release: 2.%{posttag}%{?dist} +Release: 3.%{posttag}%{?dist} License: BSD Group: Development/Libraries @@ -634,6 +634,9 @@ symlinks -c . > /dev/null %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.4-3.PL1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Alexander Kahl - 1.8.4-2.PL1 - removed Fileinfo dependency - don't make zf.sh symlink absolute (breaks the script) From jkeating at fedoraproject.org Sun Jul 26 17:58:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:58:22 +0000 (UTC) Subject: rpms/php-adodb/devel php-adodb.spec,1.13,1.14 Message-ID: <20090726175822.4183011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-adodb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5472 Modified Files: php-adodb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-adodb.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-adodb/devel/php-adodb.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- php-adodb.spec 26 Feb 2009 20:27:17 -0000 1.13 +++ php-adodb.spec 26 Jul 2009 17:58:21 -0000 1.14 @@ -1,7 +1,7 @@ Name: php-adodb Summary: Active Data Objects Data Base Version: 4.95 -Release: 2.a%{?dist} +Release: 3.a%{?dist} Source0: http://dl.sf.net/adodb/adodb495a.tgz License: BSD or LGPLv2+ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_var}/www/icons/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.95-3.a +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.95-2.a - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:58:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:58:38 +0000 (UTC) Subject: rpms/php-channel-ezc/devel php-channel-ezc.spec,1.1,1.2 Message-ID: <20090726175838.1C15511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-channel-ezc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5676 Modified Files: php-channel-ezc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-channel-ezc.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-channel-ezc/devel/php-channel-ezc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-channel-ezc.spec 22 Feb 2009 20:04:04 -0000 1.1 +++ php-channel-ezc.spec 26 Jul 2009 17:58:37 -0000 1.2 @@ -3,7 +3,7 @@ Name: php-channel-ezc Version: 1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Adds eZ Components channel to PEAR Group: Development/Libraries @@ -65,5 +65,8 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jan 25 2009 Guillaume Kulakowski - 1-1 - Initial packaging From jkeating at fedoraproject.org Sun Jul 26 17:58:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:58:54 +0000 (UTC) Subject: rpms/php-channel-phing/devel php-channel-phing.spec,1.3,1.4 Message-ID: <20090726175854.C6FA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-channel-phing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5862 Modified Files: php-channel-phing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-channel-phing.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-channel-phing/devel/php-channel-phing.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-channel-phing.spec 26 Feb 2009 20:28:15 -0000 1.3 +++ php-channel-phing.spec 26 Jul 2009 17:58:54 -0000 1.4 @@ -2,7 +2,7 @@ Name: php-channel-phing Version: 1.0.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Adds phing channel to PEAR Group: Development/Languages @@ -63,6 +63,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:59:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:59:12 +0000 (UTC) Subject: rpms/php-channel-phpdb/devel php-channel-phpdb.spec,1.2,1.3 Message-ID: <20090726175912.2503611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-channel-phpdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6095 Modified Files: php-channel-phpdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-channel-phpdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-channel-phpdb/devel/php-channel-phpdb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-channel-phpdb.spec 26 Feb 2009 20:29:10 -0000 1.2 +++ php-channel-phpdb.spec 26 Jul 2009 17:59:12 -0000 1.3 @@ -2,7 +2,7 @@ Name: php-channel-phpdb Version: 1.0.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Adds phpdb channel to PEAR Group: Development/Languages @@ -63,6 +63,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:59:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:59:26 +0000 (UTC) Subject: rpms/php-channel-phpunit/devel php-channel-phpunit.spec,1.3,1.4 Message-ID: <20090726175926.DD3F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-channel-phpunit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6338 Modified Files: php-channel-phpunit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-channel-phpunit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-channel-phpunit/devel/php-channel-phpunit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-channel-phpunit.spec 26 Feb 2009 20:30:11 -0000 1.3 +++ php-channel-phpunit.spec 26 Jul 2009 17:59:26 -0000 1.4 @@ -2,7 +2,7 @@ Name: php-channel-phpunit Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Adds phpunit channel to PEAR Group: Development/Languages @@ -59,6 +59,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:59:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:59:41 +0000 (UTC) Subject: rpms/php-channel-symfony/devel php-channel-symfony.spec,1.2,1.3 Message-ID: <20090726175941.DCA4D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-channel-symfony/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6552 Modified Files: php-channel-symfony.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-channel-symfony.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-channel-symfony/devel/php-channel-symfony.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-channel-symfony.spec 26 Feb 2009 20:31:13 -0000 1.2 +++ php-channel-symfony.spec 26 Jul 2009 17:59:41 -0000 1.3 @@ -2,7 +2,7 @@ Name: php-channel-symfony Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Adds symfony project channel to PEAR Group: Development/Languages @@ -63,6 +63,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 17:59:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 17:59:55 +0000 (UTC) Subject: rpms/php-eaccelerator/devel php-eaccelerator.spec,1.43,1.44 Message-ID: <20090726175955.58A4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-eaccelerator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6729 Modified Files: php-eaccelerator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-eaccelerator.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-eaccelerator/devel/php-eaccelerator.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- php-eaccelerator.spec 14 Jul 2009 17:45:02 -0000 1.43 +++ php-eaccelerator.spec 26 Jul 2009 17:59:55 -0000 1.44 @@ -9,7 +9,7 @@ Summary: PHP accelerator, optimizer, encoder and dynamic content cacher Name: php-eaccelerator Version: 0.9.6 -Release: 0.1%{?svn:.svn%{svn}}%{?dist} +Release: 0.2%{?svn:.svn%{svn}}%{?dist} Epoch: 1 # The eaccelerator module itself is GPLv2+ # The PHP control panel is under the Zend license (control.php and dasm.php) @@ -123,6 +123,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.9.6-0.2.svn358 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Remi Collet - 1:0.9.6-0.1.svn358 - rebuild for new PHP 5.3.0 ABI (20090626) - update to latest SVN snapshot From jkeating at fedoraproject.org Sun Jul 26 18:00:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:00:10 +0000 (UTC) Subject: rpms/php-ezc-Archive/devel php-ezc-Archive.spec,1.1,1.2 Message-ID: <20090726180010.F3FF811C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Archive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6913 Modified Files: php-ezc-Archive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Archive.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Archive/devel/php-ezc-Archive.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-Archive.spec 2 May 2009 10:40:35 -0000 1.1 +++ php-ezc-Archive.spec 26 Jul 2009 18:00:10 -0000 1.2 @@ -4,7 +4,7 @@ Name: php-ezc-Archive Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Create, modify, and extract archive files of various formats Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Guillaume Kulakowski - 1.3.3-1 - Update to 1.3.3 From jkeating at fedoraproject.org Sun Jul 26 18:00:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:00:25 +0000 (UTC) Subject: rpms/php-ezc-Authentication/devel php-ezc-Authentication.spec, 1.2, 1.3 Message-ID: <20090726180025.A2FFF11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Authentication/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7110 Modified Files: php-ezc-Authentication.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Authentication.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Authentication/devel/php-ezc-Authentication.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Authentication.spec 30 Jun 2009 19:37:45 -0000 1.2 +++ php-ezc-Authentication.spec 26 Jul 2009 18:00:25 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Authentication Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Support for different means of identification and authentication Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Guillaume Kulakowski - 1.3-1 - Update to 1.3 From jkeating at fedoraproject.org Sun Jul 26 18:00:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:00:39 +0000 (UTC) Subject: rpms/php-ezc-Base/devel php-ezc-Base.spec,1.2,1.3 Message-ID: <20090726180039.2324511C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7257 Modified Files: php-ezc-Base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Base.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Base/devel/php-ezc-Base.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Base.spec 29 Jun 2009 17:52:17 -0000 1.2 +++ php-ezc-Base.spec 26 Jul 2009 18:00:39 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Base Version: 1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides the basic infrastructure that all packages rely on Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Guillaume Kulakowski - 1.7-1 - Update to 1.7 From jkeating at fedoraproject.org Sun Jul 26 18:01:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:01:20 +0000 (UTC) Subject: rpms/php-ezc-Cache/devel php-ezc-Cache.spec,1.2,1.3 Message-ID: <20090726180120.0AF7011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7576 Modified Files: php-ezc-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Cache/devel/php-ezc-Cache.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Cache.spec 12 May 2009 06:03:02 -0000 1.2 +++ php-ezc-Cache.spec 26 Jul 2009 18:01:19 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Cache Version: 1.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides a collection of lightweight classes to cache different kinds of data Group: Development/Libraries @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Guillaume Kulakowski - 1.4.1-1 - Update to 1.4.1 From jkeating at fedoraproject.org Sun Jul 26 18:01:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:01:36 +0000 (UTC) Subject: rpms/php-ezc-Configuration/devel php-ezc-Configuration.spec, 1.2, 1.3 Message-ID: <20090726180136.A1C2411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Configuration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7762 Modified Files: php-ezc-Configuration.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Configuration.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Configuration/devel/php-ezc-Configuration.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Configuration.spec 12 May 2009 06:22:31 -0000 1.2 +++ php-ezc-Configuration.spec 26 Jul 2009 18:01:36 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Configuration Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A component that allows you to use configuration files in different formats Group: Development/Libraries @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Guillaume Kulakowski - 1.3.3-1 - Update to 1.3.3 From jkeating at fedoraproject.org Sun Jul 26 18:01:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:01:56 +0000 (UTC) Subject: rpms/php-ezc-ConsoleTools/devel php-ezc-ConsoleTools.spec,1.3,1.4 Message-ID: <20090726180156.AF86011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-ConsoleTools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7992 Modified Files: php-ezc-ConsoleTools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-ConsoleTools.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-ConsoleTools/devel/php-ezc-ConsoleTools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-ezc-ConsoleTools.spec 29 Jun 2009 18:26:25 -0000 1.3 +++ php-ezc-ConsoleTools.spec 26 Jul 2009 18:01:56 -0000 1.4 @@ -4,7 +4,7 @@ Name: php-ezc-ConsoleTools Version: 1.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A set of classes to do different actions with the console Group: Development/Libraries @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Guillaume Kulakowski - 1.5.2-1 - Update to 1.5.2 From jkeating at fedoraproject.org Sun Jul 26 18:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:02:15 +0000 (UTC) Subject: rpms/php-ezc-Database/devel php-ezc-Database.spec,1.2,1.3 Message-ID: <20090726180215.4D7D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Database/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8187 Modified Files: php-ezc-Database.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Database.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Database/devel/php-ezc-Database.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Database.spec 12 May 2009 18:34:08 -0000 1.2 +++ php-ezc-Database.spec 26 Jul 2009 18:02:15 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Database Version: 1.4.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight database layer on top of PHP's PDO Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Guillaume Kulakowski - 1.4.5-1 - Update to 1.4.5 From jkeating at fedoraproject.org Sun Jul 26 18:02:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:02:32 +0000 (UTC) Subject: rpms/php-ezc-EventLog/devel php-ezc-EventLog.spec,1.2,1.3 Message-ID: <20090726180232.25F2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-EventLog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8385 Modified Files: php-ezc-EventLog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-EventLog.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-EventLog/devel/php-ezc-EventLog.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-EventLog.spec 29 Jun 2009 18:44:00 -0000 1.2 +++ php-ezc-EventLog.spec 26 Jul 2009 18:02:32 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-EventLog Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allows you to log events or audit trails Group: Development/Libraries @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Guillaume Kulakowski - 1.4-1 - Update to 1.4 From richardfearn at fedoraproject.org Sun Jul 26 18:02:32 2009 From: richardfearn at fedoraproject.org (richardfearn) Date: Sun, 26 Jul 2009 18:02:32 +0000 (UTC) Subject: rpms/ncdu/F-11 .cvsignore, 1.3, 1.4 ncdu.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090726180232.401F011C00CE@cvs1.fedora.phx.redhat.com> Author: richardfearn Update of /cvs/pkgs/rpms/ncdu/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8248 Modified Files: .cvsignore ncdu.spec sources Log Message: update to new upstream version 1.5 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 25 Oct 2008 14:09:01 -0000 1.3 +++ .cvsignore 26 Jul 2009 18:02:31 -0000 1.4 @@ -1 +1 @@ -ncdu-1.4.tar.gz +ncdu-1.5.tar.gz Index: ncdu.spec =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/F-11/ncdu.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ncdu.spec 26 Feb 2009 04:33:43 -0000 1.3 +++ ncdu.spec 26 Jul 2009 18:02:32 -0000 1.4 @@ -1,12 +1,12 @@ Name: ncdu -Version: 1.4 -Release: 2%{?dist} +Version: 1.5 +Release: 1%{?dist} Summary: Text-based disk usage viewer Group: Applications/File License: MIT URL: http://dev.yorhel.nl/ncdu/ -Source0: http://dev.yorhel.nl/download/ncdu-1.4.tar.gz +Source0: http://dev.yorhel.nl/download/ncdu-1.5.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ncurses-devel @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{_bindir}/ncdu %changelog +* Sun Jul 26 2009 Richard Fearn - 1.5-1 +- update to new upstream version 1.5 + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ncdu/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 25 Oct 2008 14:09:02 -0000 1.3 +++ sources 26 Jul 2009 18:02:32 -0000 1.4 @@ -1 +1 @@ -07f01579f7c9852033139ae9fa2414c9 ncdu-1.4.tar.gz +90a69cc3b2e9f0324eb14e6ce1df0f22 ncdu-1.5.tar.gz From jkeating at fedoraproject.org Sun Jul 26 18:02:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:02:47 +0000 (UTC) Subject: rpms/php-ezc-File/devel php-ezc-File.spec,1.1,1.2 Message-ID: <20090726180247.9C09F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-File/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8554 Modified Files: php-ezc-File.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-File.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-File/devel/php-ezc-File.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-File.spec 27 Apr 2009 05:57:24 -0000 1.1 +++ php-ezc-File.spec 26 Jul 2009 18:02:47 -0000 1.2 @@ -4,7 +4,7 @@ Name: php-ezc-File Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides support for file operations which are not covered by PHP Group: Development/Libraries @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Guillaume Kulakowski - 1.2-2 - Fix requires From jkeating at fedoraproject.org Sun Jul 26 18:03:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:03:04 +0000 (UTC) Subject: rpms/php-ezc-Mail/devel php-ezc-Mail.spec,1.3,1.4 Message-ID: <20090726180304.5380811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8722 Modified Files: php-ezc-Mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Mail/devel/php-ezc-Mail.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-ezc-Mail.spec 30 Jun 2009 20:32:18 -0000 1.3 +++ php-ezc-Mail.spec 26 Jul 2009 18:03:03 -0000 1.4 @@ -4,7 +4,7 @@ Name: php-ezc-Mail Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Construct and/or parse Mail messages conforming to the mail standard Group: Development/Libraries @@ -91,6 +91,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Guillaume Kulakowski - 1.6.3-1 - Update to 1.6.3 From jkeating at fedoraproject.org Sun Jul 26 18:03:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:03:20 +0000 (UTC) Subject: rpms/php-ezc-PersistentObject/devel php-ezc-PersistentObject.spec, 1.3, 1.4 Message-ID: <20090726180320.AA9B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-PersistentObject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8926 Modified Files: php-ezc-PersistentObject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-PersistentObject.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-PersistentObject/devel/php-ezc-PersistentObject.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-ezc-PersistentObject.spec 30 Jun 2009 20:46:37 -0000 1.3 +++ php-ezc-PersistentObject.spec 26 Jul 2009 18:03:20 -0000 1.4 @@ -4,7 +4,7 @@ Name: php-ezc-PersistentObject Version: 1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Allows you to store an arbitrary data structures to a fixed database table Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Guillaume Kulakowski - 1.6-1 - Update to 1.6 From jkeating at fedoraproject.org Sun Jul 26 18:03:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:03:38 +0000 (UTC) Subject: rpms/php-ezc-SystemInformation/devel php-ezc-SystemInformation.spec, 1.1, 1.2 Message-ID: <20090726180338.C08B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-SystemInformation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9123 Modified Files: php-ezc-SystemInformation.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-SystemInformation.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-SystemInformation/devel/php-ezc-SystemInformation.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-ezc-SystemInformation.spec 29 Apr 2009 17:16:17 -0000 1.1 +++ php-ezc-SystemInformation.spec 26 Jul 2009 18:03:38 -0000 1.2 @@ -4,7 +4,7 @@ Name: php-ezc-SystemInformation Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides access to common system variables Group: Development/Libraries @@ -84,5 +84,8 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 08 2009 Guillaume Kulakowski - 1.0.7-1 - Initial packaging From jkeating at fedoraproject.org Sun Jul 26 18:03:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:03:54 +0000 (UTC) Subject: rpms/php-ezc-Template/devel php-ezc-Template.spec,1.2,1.3 Message-ID: <20090726180354.E131C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Template/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9317 Modified Files: php-ezc-Template.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Template.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Template/devel/php-ezc-Template.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Template.spec 1 Jul 2009 18:26:12 -0000 1.2 +++ php-ezc-Template.spec 26 Jul 2009 18:03:54 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Template Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A fully functional Templating system Group: Development/Libraries @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Guillaume Kulakowski - 1.4-1 - Update to 1.4 From jkeating at fedoraproject.org Sun Jul 26 18:04:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:04:10 +0000 (UTC) Subject: rpms/php-ezc-Webdav/devel php-ezc-Webdav.spec,1.2,1.3 Message-ID: <20090726180410.D292A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-ezc-Webdav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9566 Modified Files: php-ezc-Webdav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-ezc-Webdav.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-ezc-Webdav/devel/php-ezc-Webdav.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-ezc-Webdav.spec 1 Jul 2009 18:42:05 -0000 1.2 +++ php-ezc-Webdav.spec 26 Jul 2009 18:04:10 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-ezc-Webdav Version: 1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Set up and run your own WebDAV server Group: Development/Libraries @@ -87,6 +87,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Guillaume Kulakowski - 1.1.1-1 - Update to 1.1.1 From jkeating at fedoraproject.org Sun Jul 26 18:04:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:04:24 +0000 (UTC) Subject: rpms/php-feedcreator/devel php-feedcreator.spec,1.1,1.2 Message-ID: <20090726180424.D547811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-feedcreator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9776 Modified Files: php-feedcreator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-feedcreator.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-feedcreator/devel/php-feedcreator.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-feedcreator.spec 19 Apr 2009 08:17:25 -0000 1.1 +++ php-feedcreator.spec 26 Jul 2009 18:04:24 -0000 1.2 @@ -1,6 +1,6 @@ Name: php-feedcreator Version: 1.7.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Create RSS feeds Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Xavier Bachelot 1.7.2-3 - Remove implicit Requires:. From jkeating at fedoraproject.org Sun Jul 26 18:04:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:04:38 +0000 (UTC) Subject: rpms/php-geshi/devel php-geshi.spec,1.1,1.2 Message-ID: <20090726180438.6F63A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-geshi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9935 Modified Files: php-geshi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-geshi.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-geshi/devel/php-geshi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-geshi.spec 23 Apr 2009 19:47:47 -0000 1.1 +++ php-geshi.spec 26 Jul 2009 18:04:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: php-geshi Version: 1.0.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Generic syntax highlighter Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Xavier Bachelot 1.0.8.3-1 - Update to 1.0.8.3. From jkeating at fedoraproject.org Sun Jul 26 18:04:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:04:54 +0000 (UTC) Subject: rpms/php-hkit/devel php-hkit.spec,1.3,1.4 Message-ID: <20090726180454.E026611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-hkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10111 Modified Files: php-hkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-hkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-hkit/devel/php-hkit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-hkit.spec 2 Jul 2009 16:36:48 -0000 1.3 +++ php-hkit.spec 26 Jul 2009 18:04:54 -0000 1.4 @@ -1,7 +1,7 @@ Name: php-hkit Summary: Simple PHP5 API for extracting common microformats from a page Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://hkit.googlecode.com/files/hkit-v%{version}.tgz @@ -70,6 +70,9 @@ rm -rf "${RPM_BUILD_ROOT}" #------------------------------------------------------------------------------- %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + #------------------------------------------------------------------------------- * Thu Jul 2 2009 Patrick Monnerat 0.5-3. From jkeating at fedoraproject.org Sun Jul 26 18:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:05:09 +0000 (UTC) Subject: rpms/php-idn/devel php-idn.spec,1.7,1.8 Message-ID: <20090726180509.520EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-idn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10290 Modified Files: php-idn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-idn.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-idn/devel/php-idn.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-idn.spec 23 Feb 2009 19:52:09 -0000 1.7 +++ php-idn.spec 26 Jul 2009 18:05:09 -0000 1.8 @@ -3,7 +3,7 @@ Summary: PHP API for GNU LibIDN Name: php-idn Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Development/Languages Source0: http://php-idn.bayour.com/idn_%{version}b.tar.gz @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/php.d/idn.ini %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.2-5 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 18:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:05:23 +0000 (UTC) Subject: rpms/php-laconica/devel php-laconica.spec,1.2,1.3 Message-ID: <20090726180523.7A6B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-laconica/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10469 Modified Files: php-laconica.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-laconica.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-laconica/devel/php-laconica.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-laconica.spec 26 Feb 2009 20:33:12 -0000 1.2 +++ php-laconica.spec 26 Jul 2009 18:05:23 -0000 1.3 @@ -4,7 +4,7 @@ Name: php-laconica Version: 0.5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PHP tool for microblogging Group: Applications/Internet @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{cfgdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:05:38 +0000 (UTC) Subject: rpms/php-magickwand/devel php-magickwand.spec,1.13,1.14 Message-ID: <20090726180538.4CA1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-magickwand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10660 Modified Files: php-magickwand.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-magickwand.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-magickwand/devel/php-magickwand.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- php-magickwand.spec 13 Jul 2009 08:27:34 -0000 1.13 +++ php-magickwand.spec 26 Jul 2009 18:05:38 -0000 1.14 @@ -4,7 +4,7 @@ Summary: PHP API for ImageMagick Name: php-magickwand Version: 1.0.8 -Release: 3%{?dist} +Release: 4%{?dist} License: ImageMagick Group: Development/Languages # Only latest version is always kept on: http://www.magickwand.org/download/php/ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/php.d/magickwand.ini %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet 1.0.8-3 - rebuild for new PHP 5.3.0 ABI (20090626) - better PHP ABI check From jkeating at fedoraproject.org Sun Jul 26 18:05:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:05:52 +0000 (UTC) Subject: rpms/php-magpierss/devel php-magpierss.spec,1.3,1.4 Message-ID: <20090726180552.0359B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-magpierss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10822 Modified Files: php-magpierss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-magpierss.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-magpierss/devel/php-magpierss.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-magpierss.spec 26 Feb 2009 20:34:53 -0000 1.3 +++ php-magpierss.spec 26 Jul 2009 18:05:51 -0000 1.4 @@ -1,6 +1,6 @@ Name: php-magpierss Version: 0.72 -Release: 5%{?dist} +Release: 6%{?dist} Summary: MagpieRSS is an RSS parser written in PHP Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.72-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.72-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:06:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:06:06 +0000 (UTC) Subject: rpms/php-manual-en/devel php-manual-en.spec,1.12,1.13 Message-ID: <20090726180606.7FC0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-manual-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10989 Modified Files: php-manual-en.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-manual-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-manual-en/devel/php-manual-en.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- php-manual-en.spec 21 Jun 2009 18:04:21 -0000 1.12 +++ php-manual-en.spec 26 Jul 2009 18:06:06 -0000 1.13 @@ -1,6 +1,6 @@ Name: php-manual-en Version: 20090619 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Documentation for the PHP programming language Group: Documentation @@ -38,6 +38,9 @@ rm -rf %{buildroot} %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090619-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Tim Jackson 20090619-1 - Update to 2009-06-19 version From jkeating at fedoraproject.org Sun Jul 26 18:06:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:06:43 +0000 (UTC) Subject: rpms/php-markdown/devel php-markdown.spec,1.1,1.2 Message-ID: <20090726180643.41AB111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-markdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11290 Modified Files: php-markdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-markdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-markdown/devel/php-markdown.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-markdown.spec 8 Jun 2009 03:56:25 -0000 1.1 +++ php-markdown.spec 26 Jul 2009 18:06:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: php-markdown Version: 1.0.1m -Release: 2%{?dist} +Release: 3%{?dist} Summary: Markdown implementation in PHP Group: Development/Languages @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1m-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Rakesh Pandit 1.0.1m-2 - Fixed mixed use of space and tabs, using install in place of cp From jkeating at fedoraproject.org Sun Jul 26 18:06:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:06:59 +0000 (UTC) Subject: rpms/php-oauth/devel php-oauth.spec,1.2,1.3 Message-ID: <20090726180659.591E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-oauth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11508 Modified Files: php-oauth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-oauth.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-oauth/devel/php-oauth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-oauth.spec 26 Feb 2009 20:37:15 -0000 1.2 +++ php-oauth.spec 26 Jul 2009 18:06:59 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-oauth Version: 1.0 -Release: 0.6.%{svnrevision}%{?dist} +Release: 0.7.%{svnrevision}%{?dist} Summary: PHP Authentication library for desktop to web applications Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.7.svn592 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-0.6.svn592 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:07:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:07:17 +0000 (UTC) Subject: rpms/php-pdb/devel php-pdb.spec,1.3,1.4 Message-ID: <20090726180717.E654511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11738 Modified Files: php-pdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pdb/devel/php-pdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pdb.spec 26 Feb 2009 20:38:16 -0000 1.3 +++ php-pdb.spec 26 Jul 2009 18:07:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: php-pdb Version: 1.3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PHP classes for manipulating Palm OS databases Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/%{name}-%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:07:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:07:33 +0000 (UTC) Subject: rpms/php-pear/devel php-pear.spec,1.36,1.37 Message-ID: <20090726180733.E60F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11964 Modified Files: php-pear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear/devel/php-pear.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- php-pear.spec 30 May 2009 08:19:19 -0000 1.36 +++ php-pear.spec 26 Jul 2009 18:07:33 -0000 1.37 @@ -10,7 +10,7 @@ Summary: PHP Extension and Application Repository framework Name: php-pear Version: 1.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: PHP Group: Development/Languages @@ -159,6 +159,9 @@ rm new-pear.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Remi Collet 1:1.8.1-1 - update to 1.8.1 - Update install-pear.php script (1.39) From jkeating at fedoraproject.org Sun Jul 26 18:07:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:07:49 +0000 (UTC) Subject: rpms/php-pear-Auth/devel php-pear-Auth.spec,1.2,1.3 Message-ID: <20090726180749.A3B0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Auth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12154 Modified Files: php-pear-Auth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Auth.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth/devel/php-pear-Auth.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Auth.spec 26 Feb 2009 20:40:42 -0000 1.2 +++ php-pear-Auth.spec 26 Jul 2009 18:07:49 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Auth Version: 1.6.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Authentication provider for PHP Group: Development/Libraries License: PHP @@ -118,6 +118,9 @@ fi %{pear_phpdir}/%{pear_name}/Container/RADIUS.php %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:08:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:08:04 +0000 (UTC) Subject: rpms/php-pear-Auth-OpenID/devel php-pear-Auth-OpenID.spec,1.2,1.3 Message-ID: <20090726180804.EF33111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Auth-OpenID/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12309 Modified Files: php-pear-Auth-OpenID.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Auth-OpenID.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth-OpenID/devel/php-pear-Auth-OpenID.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Auth-OpenID.spec 26 Feb 2009 20:41:49 -0000 1.2 +++ php-pear-Auth-OpenID.spec 26 Jul 2009 18:08:04 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Auth-OpenID Version: 2.1.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: PHP OpenID Group: Development/System License: ASL 2.0 @@ -88,6 +88,9 @@ fi %{pear_phpdir}/%{pear_name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:08:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:08:20 +0000 (UTC) Subject: rpms/php-pear-Auth-RADIUS/devel php-pear-Auth-RADIUS.spec,1.3,1.4 Message-ID: <20090726180820.B106B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Auth-RADIUS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12514 Modified Files: php-pear-Auth-RADIUS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Auth-RADIUS.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth-RADIUS/devel/php-pear-Auth-RADIUS.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Auth-RADIUS.spec 13 Jul 2009 21:05:11 -0000 1.3 +++ php-pear-Auth-RADIUS.spec 26 Jul 2009 18:08:20 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Auth-RADIUS Version: 1.0.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Wrapper Classes for the RADIUS PECL Group: Development/Libraries @@ -78,6 +78,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 1.0.6-3 - remove mhash dependency (optional, and not provided by php 5.3.0) - rename Auth_RADIUS.xml to php-pear-Auth-RADIUS.xml From jkeating at fedoraproject.org Sun Jul 26 18:08:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:08:35 +0000 (UTC) Subject: rpms/php-pear-Auth-SASL/devel php-pear-Auth-SASL.spec,1.4,1.5 Message-ID: <20090726180835.68C2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Auth-SASL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12703 Modified Files: php-pear-Auth-SASL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Auth-SASL.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth-SASL/devel/php-pear-Auth-SASL.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Auth-SASL.spec 25 Apr 2009 05:53:19 -0000 1.4 +++ php-pear-Auth-SASL.spec 26 Jul 2009 18:08:35 -0000 1.5 @@ -5,7 +5,7 @@ Summary: Abstraction of various SASL Summary(fr): Abstraction de diff?rents m?canismes de r?ponse SASL Name: php-pear-Auth-SASL Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: Development/Libraries Source: http://pear.php.net/get/Auth_SASL-%{version}.tgz @@ -85,6 +85,9 @@ fi %{pear_xmldir}/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Remi Collet 1.0.2-6 - remove PEAR from sumnary - remove php (httpd) dependency From jkeating at fedoraproject.org Sun Jul 26 18:08:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:08:50 +0000 (UTC) Subject: rpms/php-pear-Auth_HTTP/devel php-pear-Auth_HTTP.spec,1.1,1.2 Message-ID: <20090726180850.A531311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12911 Modified Files: php-pear-Auth_HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Auth_HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Auth_HTTP/devel/php-pear-Auth_HTTP.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Auth_HTTP.spec 1 Jul 2009 06:00:43 -0000 1.1 +++ php-pear-Auth_HTTP.spec 26 Jul 2009 18:08:50 -0000 1.2 @@ -3,7 +3,7 @@ Name: php-pear-Auth_HTTP Version: 2.1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class providing HTTP authentication methods Group: Development/Libraries License: PHP @@ -68,6 +68,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Andrew Colin Kissa - 2.1.6-2 - Renamed to match upstream From jkeating at fedoraproject.org Sun Jul 26 18:09:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:09:13 +0000 (UTC) Subject: rpms/php-pear-Benchmark/devel php-pear-Benchmark.spec,1.3,1.4 Message-ID: <20090726180913.7571C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Benchmark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13103 Modified Files: php-pear-Benchmark.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Benchmark.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Benchmark/devel/php-pear-Benchmark.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Benchmark.spec 26 Feb 2009 20:44:57 -0000 1.3 +++ php-pear-Benchmark.spec 26 Jul 2009 18:09:13 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Benchmark Version: 1.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Framework to benchmark PHP scripts or function calls Group: Development/Libraries @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:09:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:09:34 +0000 (UTC) Subject: rpms/php-pear-Cache/devel php-pear-Cache.spec,1.4,1.5 Message-ID: <20090726180934.062AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Cache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13393 Modified Files: php-pear-Cache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Cache.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Cache/devel/php-pear-Cache.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Cache.spec 26 Feb 2009 20:45:50 -0000 1.4 +++ php-pear-Cache.spec 26 Jul 2009 18:09:33 -0000 1.5 @@ -7,7 +7,7 @@ Name: php-pear-Cache Version: 1.5.5 %if %{?beta:0}%{!?beta:1} -Release: 2%{?dist} +Release: 3%{?dist} %else Release: 0.2.%{beta}%{?dist} %endif @@ -88,6 +88,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:09:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:09:51 +0000 (UTC) Subject: rpms/php-pear-Cache-Lite/devel php-pear-Cache-Lite.spec,1.7,1.8 Message-ID: <20090726180951.E211511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Cache-Lite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13632 Modified Files: php-pear-Cache-Lite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Cache-Lite.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Cache-Lite/devel/php-pear-Cache-Lite.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Cache-Lite.spec 11 Jul 2009 18:24:37 -0000 1.7 +++ php-pear-Cache-Lite.spec 26 Jul 2009 18:09:51 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Fast and Safe little cac Summary(fr): M?thode de cache rapide et s?curis?e pour PHP Name: php-pear-Cache-Lite Version: 1.7.8 -Release: 1%{?dist} +Release: 2%{?dist} License: PHP Group: Development/Libraries Source: http://pear.php.net/get/%{pear_name}-%{version}.tgz @@ -97,6 +97,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 08 2009 Remi Collet 1.7.8-1 - update to 1.7.8 (bugfix) From jkeating at fedoraproject.org Sun Jul 26 18:10:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:10:07 +0000 (UTC) Subject: rpms/php-pear-Config/devel php-pear-Config.spec,1.3,1.4 Message-ID: <20090726181007.4A5CF11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13817 Modified Files: php-pear-Config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Config.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Config/devel/php-pear-Config.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Config.spec 7 Mar 2009 16:47:50 -0000 1.3 +++ php-pear-Config.spec 26 Jul 2009 18:10:06 -0000 1.4 @@ -9,7 +9,7 @@ Name: php-pear-Config Version: 1.10.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Configuration file manipulation for PHP Group: Development/Libraries @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Bernard Johnson - 1.10.11-3 - reference to test suite bug - remove req: php-pear(PEAR) since it's required by other required pkgs From jkeating at fedoraproject.org Sun Jul 26 18:10:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:10:27 +0000 (UTC) Subject: rpms/php-pear-Console-Color/devel php-pear-Console-Color.spec, 1.4, 1.5 Message-ID: <20090726181027.1C93D11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Console-Color/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14021 Modified Files: php-pear-Console-Color.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Console-Color.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Console-Color/devel/php-pear-Console-Color.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Console-Color.spec 26 Feb 2009 20:47:40 -0000 1.4 +++ php-pear-Console-Color.spec 26 Jul 2009 18:10:26 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Console-Color Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easily use ANSI console colors from PHP applications Summary(en_GB): Easily use ANSI console colours from PHP applications @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:10:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:10:42 +0000 (UTC) Subject: rpms/php-pear-Console-Getargs/devel php-pear-Console-Getargs.spec, 1.6, 1.7 Message-ID: <20090726181042.970F411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Console-Getargs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14224 Modified Files: php-pear-Console-Getargs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Console-Getargs.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Console-Getargs/devel/php-pear-Console-Getargs.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Console-Getargs.spec 26 Feb 2009 20:48:35 -0000 1.6 +++ php-pear-Console-Getargs.spec 26 Jul 2009 18:10:42 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-Console-Getargs Version: 1.3.4 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 Summary: Command-line arguments and parameters parser Summary(fr): Analyseur des arguments et param?tres en ligne de commande @@ -80,6 +80,9 @@ fi %{pear_testdir}/%{pear_name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.4-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.4-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:10:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:10:57 +0000 (UTC) Subject: rpms/php-pear-Console-ProgressBar/devel php-pear-Console-ProgressBar.spec, 1.3, 1.4 Message-ID: <20090726181057.4675811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Console-ProgressBar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14388 Modified Files: php-pear-Console-ProgressBar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Console-ProgressBar.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Console-ProgressBar/devel/php-pear-Console-ProgressBar.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Console-ProgressBar.spec 26 Jun 2009 08:59:51 -0000 1.3 +++ php-pear-Console-ProgressBar.spec 26 Jul 2009 18:10:57 -0000 1.4 @@ -4,7 +4,7 @@ %define beta beta Name: php-pear-Console-ProgressBar Version: 0.5.2 -Release: 0.4.beta%{?dist} +Release: 0.5.beta%{?dist} Summary: This class provides you with an easy-to-use interface to progress bars Group: Development/Libraries @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.2-0.5.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Tom "spot" Callaway - 0.5.2-0.4.beta - fix duplicate directory ownership (php-pear owns /usr/share/pear/Console) From jkeating at fedoraproject.org Sun Jul 26 18:11:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:11:13 +0000 (UTC) Subject: rpms/php-pear-Console-Table/devel php-pear-Console-Table.spec, 1.10, 1.11 Message-ID: <20090726181113.9E61A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Console-Table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14591 Modified Files: php-pear-Console-Table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Console-Table.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Console-Table/devel/php-pear-Console-Table.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- php-pear-Console-Table.spec 26 Feb 2009 20:50:13 -0000 1.10 +++ php-pear-Console-Table.spec 26 Jul 2009 18:11:13 -0000 1.11 @@ -3,7 +3,7 @@ Name: php-pear-Console-Table Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class that makes it easy to build console style tables Summary(fr): Classe pour fabriquer facilement des tableaux en mode console @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:11:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:11:33 +0000 (UTC) Subject: rpms/php-pear-Crypt-Blowfish/devel php-pear-Crypt-Blowfish.spec, 1.1, 1.2 Message-ID: <20090726181133.7EC9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Crypt-Blowfish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14743 Modified Files: php-pear-Crypt-Blowfish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Crypt-Blowfish.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Crypt-Blowfish/devel/php-pear-Crypt-Blowfish.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Crypt-Blowfish.spec 24 Feb 2009 22:20:32 -0000 1.1 +++ php-pear-Crypt-Blowfish.spec 26 Jul 2009 18:11:33 -0000 1.2 @@ -4,7 +4,7 @@ Name: php-pear-Crypt-Blowfish Version: 1.1.0 -Release: 0.3.rc2%{?dist} +Release: 0.4.rc2%{?dist} Summary: Quick two-way blowfish encryption Group: Development/Libraries @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-0.4.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Xavier Bachelot 1.1.0-0.3.rc2 - Remove cut and paste leftover. From jkeating at fedoraproject.org Sun Jul 26 18:11:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:11:50 +0000 (UTC) Subject: rpms/php-pear-Crypt-CHAP/devel php-pear-Crypt-CHAP.spec,1.4,1.5 Message-ID: <20090726181150.BAAE811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Crypt-CHAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15046 Modified Files: php-pear-Crypt-CHAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Crypt-CHAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Crypt-CHAP/devel/php-pear-Crypt-CHAP.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Crypt-CHAP.spec 13 Jul 2009 21:00:14 -0000 1.4 +++ php-pear-Crypt-CHAP.spec 26 Jul 2009 18:11:50 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Crypt-CHAP Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Class to generate CHAP packets Group: Development/Languages @@ -74,6 +74,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 1.0.1-3 - remove mhash dependency (optional, and not provided by php 5.3.0) - rename Crypt_CHAP.xml to php-pear-Crypt-CHAP.xml From jkeating at fedoraproject.org Sun Jul 26 18:12:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:12:10 +0000 (UTC) Subject: rpms/php-pear-DB/devel php-pear-DB.spec,1.11,1.12 Message-ID: <20090726181210.2249A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-DB/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15635 Modified Files: php-pear-DB.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-DB.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-DB/devel/php-pear-DB.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- php-pear-DB.spec 26 Feb 2009 20:52:03 -0000 1.11 +++ php-pear-DB.spec 26 Jul 2009 18:12:09 -0000 1.12 @@ -3,7 +3,7 @@ Name: php-pear-DB Version: 1.7.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PEAR: Database Abstraction Layer Group: Development/Libraries @@ -131,6 +131,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:12:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:12:31 +0000 (UTC) Subject: rpms/php-pear-DB-DataObject/devel php-pear-DB-DataObject.spec, 1.7, 1.8 Message-ID: <20090726181231.5E35A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-DB-DataObject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16067 Modified Files: php-pear-DB-DataObject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-DB-DataObject.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-DB-DataObject/devel/php-pear-DB-DataObject.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-DB-DataObject.spec 26 Feb 2009 20:53:02 -0000 1.7 +++ php-pear-DB-DataObject.spec 26 Jul 2009 18:12:30 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-DB-DataObject Version: 1.8.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An SQL Builder, Object Interface to Database Tables Group: Development/Libraries @@ -92,6 +92,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:12:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:12:47 +0000 (UTC) Subject: rpms/php-pear-DB-DataObject-FormBuilder/devel php-pear-DB-DataObject-FormBuilder.spec, 1.8, 1.9 Message-ID: <20090726181247.EC3AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-DB-DataObject-FormBuilder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16356 Modified Files: php-pear-DB-DataObject-FormBuilder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-DB-DataObject-FormBuilder.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-DB-DataObject-FormBuilder/devel/php-pear-DB-DataObject-FormBuilder.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-pear-DB-DataObject-FormBuilder.spec 26 Feb 2009 20:54:20 -0000 1.8 +++ php-pear-DB-DataObject-FormBuilder.spec 26 Jul 2009 18:12:47 -0000 1.9 @@ -4,7 +4,7 @@ Name: php-pear-DB-DataObject-FormBuilder Version: 1.0.0 -Release: 0.7.%{beta}%{?dist} +Release: 0.8.%{beta}%{?dist} Summary: Automatically build HTML_QuickForm objects Group: Development/Libraries @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-0.8.RC7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-0.7.RC7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:13:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:13:00 +0000 (UTC) Subject: rpms/php-pear-DB-QueryTool/devel php-pear-DB-QueryTool.spec, 1.4, 1.5 Message-ID: <20090726181300.E647111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-DB-QueryTool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16528 Modified Files: php-pear-DB-QueryTool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-DB-QueryTool.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-DB-QueryTool/devel/php-pear-DB-QueryTool.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-DB-QueryTool.spec 26 Feb 2009 21:01:21 -0000 1.4 +++ php-pear-DB-QueryTool.spec 26 Jul 2009 18:13:00 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-DB-QueryTool Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An OO-interface for easily retrieving and modifying data in a DB Group: Development/Libraries @@ -78,6 +78,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:13:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:13:16 +0000 (UTC) Subject: rpms/php-pear-Date/devel php-pear-Date.spec,1.5,1.6 Message-ID: <20090726181316.8295711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16708 Modified Files: php-pear-Date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Date.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Date/devel/php-pear-Date.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Date.spec 26 Feb 2009 21:03:07 -0000 1.5 +++ php-pear-Date.spec 26 Jul 2009 18:13:16 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Date Version: 1.4.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Date and Time Zone Classes Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:13:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:13:30 +0000 (UTC) Subject: rpms/php-pear-Date-Holidays/devel php-pear-Date-Holidays.spec, 1.10, 1.11 Message-ID: <20090726181330.3E3AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Date-Holidays/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16900 Modified Files: php-pear-Date-Holidays.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Date-Holidays.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Date-Holidays/devel/php-pear-Date-Holidays.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- php-pear-Date-Holidays.spec 26 Feb 2009 21:04:11 -0000 1.10 +++ php-pear-Date-Holidays.spec 26 Jul 2009 18:13:30 -0000 1.11 @@ -3,7 +3,7 @@ Name: php-pear-Date-Holidays Version: 0.20.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Driver based class to calculate holidays Group: Development/Libraries @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.20.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:13:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:13:48 +0000 (UTC) Subject: rpms/php-pear-Date-Holidays-USA/devel php-pear-Date-Holidays-USA.spec, 1.2, 1.3 Message-ID: <20090726181348.62C3211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Date-Holidays-USA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17071 Modified Files: php-pear-Date-Holidays-USA.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Date-Holidays-USA.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Date-Holidays-USA/devel/php-pear-Date-Holidays-USA.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Date-Holidays-USA.spec 26 Feb 2009 21:06:51 -0000 1.2 +++ php-pear-Date-Holidays-USA.spec 26 Jul 2009 18:13:48 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Date-Holidays-USA Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Driver based class to calculate holidays in USA Group: Development/Languages @@ -73,6 +73,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:14:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:14:02 +0000 (UTC) Subject: rpms/php-pear-Event-Dispatcher/devel php-pear-Event-Dispatcher.spec, 1.2, 1.3 Message-ID: <20090726181402.076BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Event-Dispatcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17262 Modified Files: php-pear-Event-Dispatcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Event-Dispatcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Event-Dispatcher/devel/php-pear-Event-Dispatcher.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Event-Dispatcher.spec 26 Feb 2009 21:08:02 -0000 1.2 +++ php-pear-Event-Dispatcher.spec 26 Jul 2009 18:14:01 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Event-Dispatcher Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Dispatch notifications using PHP callbacks Group: Development/Libraries @@ -98,6 +98,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:14:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:14:18 +0000 (UTC) Subject: rpms/php-pear-File/devel php-pear-File.spec,1.3,1.4 Message-ID: <20090726181418.D809611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-File/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17470 Modified Files: php-pear-File.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-File.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File/devel/php-pear-File.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-File.spec 26 Feb 2009 21:09:00 -0000 1.3 +++ php-pear-File.spec 26 Jul 2009 18:14:18 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-File Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common file and directory routines Group: Development/Languages @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:14:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:14:46 +0000 (UTC) Subject: rpms/php-pear-File-Passwd/devel php-pear-File-Passwd.spec,1.3,1.4 Message-ID: <20090726181446.BF15111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-File-Passwd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17829 Modified Files: php-pear-File-Passwd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-File-Passwd.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Passwd/devel/php-pear-File-Passwd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-File-Passwd.spec 26 Feb 2009 21:11:00 -0000 1.3 +++ php-pear-File-Passwd.spec 26 Jul 2009 18:14:45 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-File-Passwd Version: 1.1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Manipulate many kinds of password files Group: Development/Languages @@ -88,6 +88,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:14:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:14:32 +0000 (UTC) Subject: rpms/php-pear-File-Find/devel php-pear-File-Find.spec,1.2,1.3 Message-ID: <20090726181432.5EC0411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-File-Find/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17660 Modified Files: php-pear-File-Find.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-File-Find.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-Find/devel/php-pear-File-Find.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-File-Find.spec 26 Feb 2009 21:10:01 -0000 1.2 +++ php-pear-File-Find.spec 26 Jul 2009 18:14:32 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Class which facilitates Summary(fr): Classe facilitant la recherche dans le syst?me de fichiers Name: php-pear-File-Find Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Libraries Source: http://pear.php.net/get/%{pear_name}-%{version}.tgz @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:15:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:15:15 +0000 (UTC) Subject: rpms/php-pear-HTML-Common/devel php-pear-HTML-Common.spec,1.6,1.7 Message-ID: <20090726181515.2CB5911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML-Common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18201 Modified Files: php-pear-HTML-Common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML-Common.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML-Common/devel/php-pear-HTML-Common.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-HTML-Common.spec 7 Apr 2009 15:35:09 -0000 1.6 +++ php-pear-HTML-Common.spec 26 Jul 2009 18:15:15 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-HTML-Common Version: 1.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Base class for other HTML classes Group: Development/Libraries @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Remi Collet 1.2.5-1 - update to 1.2.5 (bugfix) From jkeating at fedoraproject.org Sun Jul 26 18:15:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:15:00 +0000 (UTC) Subject: rpms/php-pear-File-SMBPasswd/devel php-pear-File-SMBPasswd.spec, 1.3, 1.4 Message-ID: <20090726181500.0BCCD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-File-SMBPasswd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18026 Modified Files: php-pear-File-SMBPasswd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-File-SMBPasswd.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-File-SMBPasswd/devel/php-pear-File-SMBPasswd.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-File-SMBPasswd.spec 26 Feb 2009 21:11:59 -0000 1.3 +++ php-pear-File-SMBPasswd.spec 26 Jul 2009 18:14:59 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-File-SMBPasswd Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Class for managing SAMBA style password files Group: Development/Languages @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:15:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:15:30 +0000 (UTC) Subject: rpms/php-pear-HTML-QuickForm/devel php-pear-HTML-QuickForm.spec, 1.5, 1.6 Message-ID: <20090726181530.8961B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML-QuickForm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18388 Modified Files: php-pear-HTML-QuickForm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML-QuickForm.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML-QuickForm/devel/php-pear-HTML-QuickForm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-HTML-QuickForm.spec 26 Feb 2009 21:13:57 -0000 1.5 +++ php-pear-HTML-QuickForm.spec 26 Jul 2009 18:15:30 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-HTML-QuickForm Version: 3.2.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class for creating, validating, processing HTML forms Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:15:47 +0000 (UTC) Subject: rpms/php-pear-HTML-QuickForm-ElementGrid/devel php-pear-HTML-QuickForm-ElementGrid.spec, 1.4, 1.5 Message-ID: <20090726181547.9DAA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML-QuickForm-ElementGrid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18558 Modified Files: php-pear-HTML-QuickForm-ElementGrid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML-QuickForm-ElementGrid.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML-QuickForm-ElementGrid/devel/php-pear-HTML-QuickForm-ElementGrid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-HTML-QuickForm-ElementGrid.spec 26 Feb 2009 21:14:54 -0000 1.4 +++ php-pear-HTML-QuickForm-ElementGrid.spec 26 Jul 2009 18:15:47 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-HTML-QuickForm-ElementGrid Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Meta-element which holds any other element in a grid Group: Development/Languages @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:16:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:16:02 +0000 (UTC) Subject: rpms/php-pear-HTML-QuickForm-advmultiselect/devel php-pear-HTML-QuickForm-advmultiselect.spec, 1.5, 1.6 Message-ID: <20090726181602.359AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML-QuickForm-advmultiselect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18760 Modified Files: php-pear-HTML-QuickForm-advmultiselect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML-QuickForm-advmultiselect.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML-QuickForm-advmultiselect/devel/php-pear-HTML-QuickForm-advmultiselect.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-HTML-QuickForm-advmultiselect.spec 7 Apr 2009 15:55:56 -0000 1.5 +++ php-pear-HTML-QuickForm-advmultiselect.spec 26 Jul 2009 18:16:02 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-HTML-QuickForm-advmultiselect Version: 1.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Element for HTML_QuickForm that emulate a multi-select Group: Development/Libraries @@ -87,6 +87,9 @@ fi %{pear_testdir}/%{pear_name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Remi Collet 1.5.1-1 - update to 1.5.1 (bugfix) - raise requirement for php-pear(HTML_Common) >= 1.2.5 From jkeating at fedoraproject.org Sun Jul 26 18:16:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:16:31 +0000 (UTC) Subject: rpms/php-pear-HTML_Javascript/devel php-pear-HTML_Javascript.spec, 1.1, 1.2 Message-ID: <20090726181631.117BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19115 Modified Files: php-pear-HTML_Javascript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML_Javascript.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML_Javascript/devel/php-pear-HTML_Javascript.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-HTML_Javascript.spec 2 Jul 2009 06:13:50 -0000 1.1 +++ php-pear-HTML_Javascript.spec 26 Jul 2009 18:16:30 -0000 1.2 @@ -3,7 +3,7 @@ Name: php-pear-HTML_Javascript Version: 1.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Class for creating simple JS scripts Group: Development/Libraries License: PHP @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Andrew Colin Kissa - 1.1.1-3 - Add HTML_Common dependency From jkeating at fedoraproject.org Sun Jul 26 18:16:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:16:17 +0000 (UTC) Subject: rpms/php-pear-HTML-Table/devel php-pear-HTML-Table.spec,1.4,1.5 Message-ID: <20090726181617.6958311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTML-Table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18942 Modified Files: php-pear-HTML-Table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTML-Table.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTML-Table/devel/php-pear-HTML-Table.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-HTML-Table.spec 26 Feb 2009 21:16:45 -0000 1.4 +++ php-pear-HTML-Table.spec 26 Jul 2009 18:16:17 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-HTML-Table Version: 1.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class to easily design HTML tables Group: Development/Libraries @@ -83,6 +83,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:16:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:16:45 +0000 (UTC) Subject: rpms/php-pear-HTTP/devel php-pear-HTTP.spec,1.9,1.10 Message-ID: <20090726181645.97BAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19294 Modified Files: php-pear-HTTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTTP/devel/php-pear-HTTP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- php-pear-HTTP.spec 26 Feb 2009 21:17:46 -0000 1.9 +++ php-pear-HTTP.spec 26 Jul 2009 18:16:45 -0000 1.10 @@ -5,7 +5,7 @@ Summary: Miscellaneous HTTP utilitie Summary(fr): Divers utilitaires HTTP Name: php-pear-HTTP Version: 1.4.1 -Release: 3%{?dist} +Release: 4%{?dist} License: PHP Group: Development/Libraries URL: http://pear.php.net/package/HTTP @@ -91,6 +91,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:16:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:16:58 +0000 (UTC) Subject: rpms/php-pear-HTTP-Client/devel php-pear-HTTP-Client.spec,1.3,1.4 Message-ID: <20090726181658.7952E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTTP-Client/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19454 Modified Files: php-pear-HTTP-Client.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTTP-Client.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTTP-Client/devel/php-pear-HTTP-Client.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-HTTP-Client.spec 26 Feb 2009 21:18:41 -0000 1.3 +++ php-pear-HTTP-Client.spec 26 Jul 2009 18:16:58 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-HTTP-Client Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easy way to perform multiple HTTP requests and process their results Group: Development/Languages @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:17:16 +0000 (UTC) Subject: rpms/php-pear-HTTP-Request/devel php-pear-HTTP-Request.spec, 1.6, 1.7 Message-ID: <20090726181716.8E8BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTTP-Request/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19645 Modified Files: php-pear-HTTP-Request.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTTP-Request.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTTP-Request/devel/php-pear-HTTP-Request.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-HTTP-Request.spec 26 Feb 2009 21:19:38 -0000 1.6 +++ php-pear-HTTP-Request.spec 26 Jul 2009 18:17:16 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-HTTP-Request Version: 1.4.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides an easy way to perform HTTP requests Group: Development/Libraries @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:17:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:17:32 +0000 (UTC) Subject: rpms/php-pear-HTTP-Upload/devel php-pear-HTTP-Upload.spec,1.3,1.4 Message-ID: <20090726181732.58CB111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-HTTP-Upload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19856 Modified Files: php-pear-HTTP-Upload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-HTTP-Upload.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-HTTP-Upload/devel/php-pear-HTTP-Upload.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-HTTP-Upload.spec 26 Feb 2009 21:28:40 -0000 1.3 +++ php-pear-HTTP-Upload.spec 26 Jul 2009 18:17:32 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-HTTP-Upload Version: 0.9.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Secure managment of files submitted via HTML Forms Group: Development/Libraries @@ -93,6 +93,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:17:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:17:48 +0000 (UTC) Subject: rpms/php-pear-Image-Canvas/devel php-pear-Image-Canvas.spec, 1.4, 1.5 Message-ID: <20090726181748.2B26D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Image-Canvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20048 Modified Files: php-pear-Image-Canvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Image-Canvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Image-Canvas/devel/php-pear-Image-Canvas.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Image-Canvas.spec 26 Feb 2009 21:29:42 -0000 1.4 +++ php-pear-Image-Canvas.spec 26 Jul 2009 18:17:47 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Image-Canvas Version: 0.3.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common interface to image drawing Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:18:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:18:09 +0000 (UTC) Subject: rpms/php-pear-Image-Color/devel php-pear-Image-Color.spec,1.6,1.7 Message-ID: <20090726181809.5569411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Image-Color/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20238 Modified Files: php-pear-Image-Color.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Image-Color.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Image-Color/devel/php-pear-Image-Color.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Image-Color.spec 26 Feb 2009 21:30:55 -0000 1.6 +++ php-pear-Image-Color.spec 26 Jul 2009 18:18:08 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-Image-Color Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Manage and handles color data and conversions Group: Development/Libraries @@ -74,6 +74,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:18:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:18:24 +0000 (UTC) Subject: rpms/php-pear-Image-Graph/devel php-pear-Image-Graph.spec,1.5,1.6 Message-ID: <20090726181824.CCA0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Image-Graph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20456 Modified Files: php-pear-Image-Graph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Image-Graph.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Image-Graph/devel/php-pear-Image-Graph.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Image-Graph.spec 26 Feb 2009 21:31:50 -0000 1.5 +++ php-pear-Image-Graph.spec 26 Jul 2009 18:18:24 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Image-Graph Version: 0.7.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Displays numerical data as a graph/chart/plot Group: Development/Languages @@ -102,6 +102,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:18:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:18:43 +0000 (UTC) Subject: rpms/php-pear-Image-GraphViz/devel php-pear-Image-GraphViz.spec, 1.5, 1.6 Message-ID: <20090726181843.9F91511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Image-GraphViz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20657 Modified Files: php-pear-Image-GraphViz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Image-GraphViz.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Image-GraphViz/devel/php-pear-Image-GraphViz.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Image-GraphViz.spec 26 Feb 2009 21:32:48 -0000 1.5 +++ php-pear-Image-GraphViz.spec 26 Jul 2009 18:18:43 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Image-GraphViz Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Interface to AT&T's GraphViz tools Group: Development/Libraries @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:18:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:18:57 +0000 (UTC) Subject: rpms/php-pear-Log/devel php-pear-Log.spec,1.18,1.19 Message-ID: <20090726181857.611F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Log/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20871 Modified Files: php-pear-Log.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Log.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Log/devel/php-pear-Log.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- php-pear-Log.spec 30 Mar 2009 16:32:36 -0000 1.18 +++ php-pear-Log.spec 26 Jul 2009 18:18:57 -0000 1.19 @@ -5,7 +5,7 @@ Summary: Abstracted logging facil Summary(fr): Abstraction des outils d'enregistrement de traces pour PHP Name: php-pear-Log Version: 1.11.4 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Libraries Source: http://pear.php.net/get/Log-%{version}.tgz @@ -110,6 +110,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Remi Collet 1.11.4-1 - update to 1.11.4 From jkeating at fedoraproject.org Sun Jul 26 18:19:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:19:13 +0000 (UTC) Subject: rpms/php-pear-MDB2/devel php-pear-MDB2.spec,1.7,1.8 Message-ID: <20090726181913.7973811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-MDB2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21062 Modified Files: php-pear-MDB2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-MDB2.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-MDB2/devel/php-pear-MDB2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-MDB2.spec 26 Feb 2009 21:34:44 -0000 1.7 +++ php-pear-MDB2.spec 26 Jul 2009 18:19:13 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-MDB2 Version: 2.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Database Abstraction Layer Group: Development/Libraries @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:19:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:19:30 +0000 (UTC) Subject: rpms/php-pear-MDB2-Driver-mysql/devel php-pear-MDB2-Driver-mysql.spec, 1.6, 1.7 Message-ID: <20090726181930.2B24A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-MDB2-Driver-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21312 Modified Files: php-pear-MDB2-Driver-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-MDB2-Driver-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-MDB2-Driver-mysql/devel/php-pear-MDB2-Driver-mysql.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-MDB2-Driver-mysql.spec 26 Feb 2009 21:36:25 -0000 1.6 +++ php-pear-MDB2-Driver-mysql.spec 26 Jul 2009 18:19:29 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-MDB2-Driver-mysql Version: 1.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MySQL MDB2 driver Group: Development/Libraries @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:19:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:19:48 +0000 (UTC) Subject: rpms/php-pear-MDB2-Driver-mysqli/devel php-pear-MDB2-Driver-mysqli.spec, 1.3, 1.4 Message-ID: <20090726181948.F132D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-MDB2-Driver-mysqli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21536 Modified Files: php-pear-MDB2-Driver-mysqli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-MDB2-Driver-mysqli.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-MDB2-Driver-mysqli/devel/php-pear-MDB2-Driver-mysqli.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-MDB2-Driver-mysqli.spec 26 Feb 2009 21:37:35 -0000 1.3 +++ php-pear-MDB2-Driver-mysqli.spec 26 Jul 2009 18:19:48 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-MDB2-Driver-mysqli Version: 1.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MySQL Improved MDB2 driver Group: Development/Libraries @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:20:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:20:02 +0000 (UTC) Subject: rpms/php-pear-MDB2-Driver-pgsql/devel php-pear-MDB2-Driver-pgsql.spec, 1.2, 1.3 Message-ID: <20090726182002.68D5011C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-MDB2-Driver-pgsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21699 Modified Files: php-pear-MDB2-Driver-pgsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-MDB2-Driver-pgsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-MDB2-Driver-pgsql/devel/php-pear-MDB2-Driver-pgsql.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-MDB2-Driver-pgsql.spec 26 Feb 2009 21:38:35 -0000 1.2 +++ php-pear-MDB2-Driver-pgsql.spec 26 Jul 2009 18:20:02 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-MDB2-Driver-pgsql Version: 1.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PostgreSQL MDB2 driver Group: Development/Libraries @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:20:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:20:18 +0000 (UTC) Subject: rpms/php-pear-Mail/devel php-pear-Mail.spec,1.9,1.10 Message-ID: <20090726182018.290F711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21925 Modified Files: php-pear-Mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Mail/devel/php-pear-Mail.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- php-pear-Mail.spec 26 Feb 2009 21:39:32 -0000 1.9 +++ php-pear-Mail.spec 26 Jul 2009 18:20:17 -0000 1.10 @@ -3,7 +3,7 @@ Name: php-pear-Mail Version: 1.1.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Class that provides multiple interfaces for sending emails Summary(fr): Une Classe fournissant des interfaces pour envoyer des emails @@ -80,6 +80,9 @@ fi %{pear_xmldir}/%{pear_name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:20:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:20:34 +0000 (UTC) Subject: rpms/php-pear-Mail-Mime/devel php-pear-Mail-Mime.spec,1.7,1.8 Message-ID: <20090726182034.35B5B11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Mail-Mime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22108 Modified Files: php-pear-Mail-Mime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Mail-Mime.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Mail-Mime/devel/php-pear-Mail-Mime.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Mail-Mime.spec 26 Feb 2009 21:40:32 -0000 1.7 +++ php-pear-Mail-Mime.spec 26 Jul 2009 18:20:33 -0000 1.8 @@ -2,7 +2,7 @@ Name: php-pear-Mail-Mime Version: 1.5.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Classes to create and decode mime messages Group: Development/Libraries @@ -78,6 +78,9 @@ fi %{pear_phpdir}/Mail %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:20:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:20:53 +0000 (UTC) Subject: rpms/php-pear-Mail-mimeDecode/devel php-pear-Mail-mimeDecode.spec, 1.2, 1.3 Message-ID: <20090726182053.92CAC11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Mail-mimeDecode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22282 Modified Files: php-pear-Mail-mimeDecode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Mail-mimeDecode.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Mail-mimeDecode/devel/php-pear-Mail-mimeDecode.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Mail-mimeDecode.spec 26 Feb 2009 21:41:36 -0000 1.2 +++ php-pear-Mail-mimeDecode.spec 26 Jul 2009 18:20:53 -0000 1.3 @@ -2,7 +2,7 @@ Name: php-pear-Mail-mimeDecode Version: 1.5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Class to decode mime messages Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:21:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:21:13 +0000 (UTC) Subject: rpms/php-pear-Math-Stats/devel php-pear-Math-Stats.spec,1.3,1.4 Message-ID: <20090726182113.D4C4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Math-Stats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22508 Modified Files: php-pear-Math-Stats.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Math-Stats.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Math-Stats/devel/php-pear-Math-Stats.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Math-Stats.spec 26 Feb 2009 21:42:43 -0000 1.3 +++ php-pear-Math-Stats.spec 26 Jul 2009 18:21:13 -0000 1.4 @@ -4,7 +4,7 @@ Name: php-pear-Math-Stats Version: 0.9.0 -Release: 0.3.%{beta}%{?dist} +Release: 0.4.%{beta}%{?dist} Summary: Classes to calculate statistical parameters Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-0.4.beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.0-0.3.beta3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:21:28 +0000 (UTC) Subject: rpms/php-pear-Net-Curl/devel php-pear-Net-Curl.spec,1.3,1.4 Message-ID: <20090726182128.827A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-Curl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22727 Modified Files: php-pear-Net-Curl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-Curl.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-Curl/devel/php-pear-Net-Curl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-Curl.spec 26 Feb 2009 21:43:55 -0000 1.3 +++ php-pear-Net-Curl.spec 26 Jul 2009 18:21:28 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Net-Curl Version: 1.2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: OO interface to PHP's cURL extension Group: Development/Libraries @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:21:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:21:43 +0000 (UTC) Subject: rpms/php-pear-Net-DIME/devel php-pear-Net-DIME.spec,1.7,1.8 Message-ID: <20090726182143.B41AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-DIME/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22904 Modified Files: php-pear-Net-DIME.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-DIME.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-DIME/devel/php-pear-Net-DIME.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Net-DIME.spec 26 Feb 2009 21:45:02 -0000 1.7 +++ php-pear-Net-DIME.spec 26 Jul 2009 18:21:43 -0000 1.8 @@ -5,7 +5,7 @@ Name: php-pear-Net-DIME Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Implements Direct Internet Message Encapsulation (DIME) Group: Development/Libraries @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:21:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:21:58 +0000 (UTC) Subject: rpms/php-pear-Net-DNS/devel php-pear-Net-DNS.spec,1.3,1.4 Message-ID: <20090726182158.77E2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-DNS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23078 Modified Files: php-pear-Net-DNS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-DNS.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-DNS/devel/php-pear-Net-DNS.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-DNS.spec 13 Jul 2009 20:26:25 -0000 1.3 +++ php-pear-Net-DNS.spec 26 Jul 2009 18:21:58 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Net-DNS Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Resolver library used to communicate with a DNS server Group: Development/Libraries @@ -76,6 +76,9 @@ fi %exclude %{pear_phpdir}/Net/generate_package_xml.php %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 1.0.1-1 - update to 1.0.1 - remove mhash dependency (now optional, and not provided by php 5.3.0) From jkeating at fedoraproject.org Sun Jul 26 18:22:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:22:15 +0000 (UTC) Subject: rpms/php-pear-Net-FTP/devel php-pear-Net-FTP.spec,1.7,1.8 Message-ID: <20090726182215.907F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-FTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23250 Modified Files: php-pear-Net-FTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-FTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-FTP/devel/php-pear-Net-FTP.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Net-FTP.spec 26 Feb 2009 21:47:00 -0000 1.7 +++ php-pear-Net-FTP.spec 26 Jul 2009 18:22:15 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-Net-FTP Version: 1.3.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides an OO interface to the PHP FTP functions plus some additions Group: Development/Libraries @@ -107,6 +107,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:22:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:22:35 +0000 (UTC) Subject: rpms/php-pear-Net-IPv4/devel php-pear-Net-IPv4.spec,1.2,1.3 Message-ID: <20090726182235.89DA811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-IPv4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23497 Modified Files: php-pear-Net-IPv4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-IPv4.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-IPv4/devel/php-pear-Net-IPv4.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Net-IPv4.spec 26 Feb 2009 21:48:11 -0000 1.2 +++ php-pear-Net-IPv4.spec 26 Jul 2009 18:22:35 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Net-IPv4 Version: 1.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: IPv4 network calculations and validation Group: Development/Libraries @@ -73,6 +73,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:22:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:22:50 +0000 (UTC) Subject: rpms/php-pear-Net-POP3/devel php-pear-Net-POP3.spec,1.2,1.3 Message-ID: <20090726182250.B7C9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-POP3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23711 Modified Files: php-pear-Net-POP3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-POP3.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-POP3/devel/php-pear-Net-POP3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Net-POP3.spec 26 Feb 2009 21:48:37 -0000 1.2 +++ php-pear-Net-POP3.spec 26 Jul 2009 18:22:50 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Net-POP3 Version: 1.3.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Provides a POP3 class to access POP3 server Group: Development/Languages @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:23:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:23:05 +0000 (UTC) Subject: rpms/php-pear-Net-Ping/devel php-pear-Net-Ping.spec,1.5,1.6 Message-ID: <20090726182305.83F5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-Ping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23942 Modified Files: php-pear-Net-Ping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-Ping.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-Ping/devel/php-pear-Net-Ping.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Net-Ping.spec 26 Feb 2009 21:49:33 -0000 1.5 +++ php-pear-Net-Ping.spec 26 Jul 2009 18:23:05 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Net-Ping Version: 2.4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Execute ping Group: Development/Libraries @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:23:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:23:21 +0000 (UTC) Subject: rpms/php-pear-Net-SMTP/devel php-pear-Net-SMTP.spec,1.9,1.10 Message-ID: <20090726182321.5C83E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-SMTP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24122 Modified Files: php-pear-Net-SMTP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-SMTP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-SMTP/devel/php-pear-Net-SMTP.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- php-pear-Net-SMTP.spec 14 Jul 2009 08:17:13 -0000 1.9 +++ php-pear-Net-SMTP.spec 26 Jul 2009 18:23:21 -0000 1.10 @@ -3,7 +3,7 @@ Name: php-pear-Net-SMTP Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Provides an implementation of the SMTP protocol Summary(fr): Fournit une mise en oeuvre du protocol SMTP @@ -109,6 +109,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Remi Collet 1.3.3-1 - update to 1.3.3 - rename Net_SMTP.xml to php-pear-Net-SMTP.xml From jkeating at fedoraproject.org Sun Jul 26 18:23:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:23:35 +0000 (UTC) Subject: rpms/php-pear-Net-Sieve/devel php-pear-Net-Sieve.spec,1.3,1.4 Message-ID: <20090726182335.73A5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-Sieve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24292 Modified Files: php-pear-Net-Sieve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-Sieve.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-Sieve/devel/php-pear-Net-Sieve.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-Sieve.spec 26 Feb 2009 21:51:29 -0000 1.3 +++ php-pear-Net-Sieve.spec 26 Jul 2009 18:23:35 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Net-Sieve Version: 1.1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Communication with timsieved Group: Development/Libraries @@ -78,6 +78,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pfrields at fedoraproject.org Sun Jul 26 18:23:42 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sun, 26 Jul 2009 18:23:42 +0000 (UTC) Subject: rpms/blogtk/F-11 blogtk-1.1-configname.patch, NONE, 1.1 blogtk.spec, 1.8, 1.9 Message-ID: <20090726182342.5CC4511C00CE@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/blogtk/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24357 Modified Files: blogtk.spec Added Files: blogtk-1.1-configname.patch Log Message: Patch erroneous config parsing for Python 2.6 (#501183) blogtk-1.1-configname.patch: BloGTK.py | 27 ++++++++++++++------------- config.py | 41 +++++++++++++++++++++-------------------- 2 files changed, 35 insertions(+), 33 deletions(-) --- NEW FILE blogtk-1.1-configname.patch --- diff -uNr BloGTK-1.1/src/BloGTK.py BloGTK-1.1-new/src/BloGTK.py --- BloGTK-1.1/src/BloGTK.py 2005-01-09 22:51:05.000000000 -0500 +++ BloGTK-1.1-new/src/BloGTK.py 2009-07-26 14:20:47.523561652 -0400 @@ -317,7 +317,7 @@ self.blogNameLabel = self.mainGlade.get_widget('blogNameLabel') if self.blogNameLabel.get_text() == "": - self.blogNameLabel.set_text("Default") + self.blogNameLabel.set_text("DefaultBlog") else: pass @@ -333,7 +333,8 @@ for item in self.sections: if item == "server": - self.conf.add_section("Default") + #if not self.conf.has_section("DefaultBlog"): + # self.conf.add_section("DefaultBlog") self.url = self.conf.get("server", "server") self.user = self.conf.get("server", "user") self.passwd = self.conf.get("server", "pass") @@ -345,11 +346,11 @@ except ConfigParser.NoOptionError, error: self.font = "Sans 12" - self.conf.set("Default", "server", self.url) - self.conf.set("Default", "user", self.user) - self.conf.set("Default", "pass", self.passwd) - self.conf.set("Default", "system", self.system) - self.conf.set("Default", "font", self.font) + self.conf.set("DefaultBlog", "server", self.url) + self.conf.set("DefaultBlog", "user", self.user) + self.conf.set("DefaultBlog", "pass", self.passwd) + self.conf.set("DefaultBlog", "system", self.system) + self.conf.set("DefaultBlog", "font", self.font) self.conf.remove_option("server", "server") self.conf.remove_option("server", "user") @@ -399,9 +400,9 @@ # set yet. Therefore we'll now have to set them to their default values. try: - self.useUTF = self.conf.get("Default", "useUTF") - self.defaultPublish = self.conf.get("Default", "defaultPublish") - self.retrievalNumber = self.conf.get("Default", "retrievalNumber") + self.useUTF = self.conf.get("default", "useUTF") + self.defaultPublish = self.conf.get("default", "defaultPublish") + self.retrievalNumber = self.conf.get("default", "retrievalNumber") if self.defaultPublish == "1": self.publishCheck.set_active(gtk.TRUE) @@ -412,9 +413,9 @@ print "Creating general settings configuration..." - self.conf.set("Default", "useUTF", "0") - self.conf.set("Default", "defaultPublish", "0") - self.conf.set("Default", "retrievalNumber", "10") + self.conf.set("DefaultBlog", "useUTF", "0") + self.conf.set("DefaultBlog", "defaultPublish", "0") + self.conf.set("DefaultBlog", "retrievalNumber", "10") conf_file = open(self.configDir + "/BloGTK.conf", 'w+') self.conf.write(conf_file) conf_file.close() diff -uNr BloGTK-1.1/src/config.py BloGTK-1.1-new/src/config.py --- BloGTK-1.1/src/config.py 2004-04-16 12:04:42.000000000 -0400 +++ BloGTK-1.1-new/src/config.py 2009-07-26 14:17:31.479437084 -0400 @@ -87,18 +87,19 @@ self.parser = ConfigParser.ConfigParser() self.file = open(self.configFile, "w") - self.parser.add_section("Default") - self.parser.write(self.file) - - self.parser.set("Default", "server", "http://www.yoursite.com/blog/blog.cgi") - self.parser.set("Default", "user", "username") - self.parser.set("Default", "pass", "password") - self.parser.set("Default", "system", "blogger") - self.parser.set("Default", "font", "Sans 12") + if not self.parser.has_section("DefaultBlog"): + self.parser.add_section("DefaultBlog") + #self.parser.write(self.file) + + self.parser.set("DefaultBlog", "server", "http://www.yoursite.com/blog/blog.cgi") + self.parser.set("DefaultBlog", "user", "username") + self.parser.set("DefaultBlog", "pass", "password") + self.parser.set("DefaultBlog", "system", "blogger") + self.parser.set("DefaultBlog", "font", "Sans 12") - self.parser.set("Default", "Publish", "FALSE") - self.parser.set("Default", "useUTF", "0") - self.parser.set("Default", "retrievalNumber", "10") + self.parser.set("DefaultBlog", "Publish", "FALSE") + self.parser.set("DefaultBlog", "useUTF", "0") + self.parser.set("DefaultBlog", "retrievalNumber", "10") self.parser.write(self.file) self.blogs = self.parser.sections() @@ -171,9 +172,9 @@ self.system = self.parser.get(self.section, "system") # 0.9 - We need to pull our General Settings from the config as well... - self.defaultPublish = self.parser.get("Default", "defaultPublish") - self.useUTF = self.parser.get("Default", "useutf") - self.retrievalNumber = self.parser.get("Default", "retrievalNumber") + self.defaultPublish = self.parser.get("blogtk", "defaultPublish") + self.useUTF = self.parser.get("blogtk", "useutf") + self.retrievalNumber = self.parser.get("blogtk", "retrievalNumber") except ConfigParser.NoSectionError: pass @@ -291,22 +292,22 @@ # 0.9 - Each time we save the form, we want to also save our general settings as well... if self.defaultPublishCheck.get_active() == gtk.TRUE: - self.parser.set("Default", "defaultPublish", "1") + self.parser.set("blogtk", "defaultPublish", "1") self.defaultMainCheck.set_active(gtk.TRUE) else: - self.parser.set("Default", "defaultPublish", "0") + self.parser.set("blogtk", "defaultPublish", "0") self.defaultMainCheck.set_active(gtk.FALSE) if self.useUTF8Check.get_active() == gtk.TRUE: - self.parser.set("Default", "useUTF", "1") + self.parser.set("blogtk", "useUTF", "1") else: - self.parser.set("Default", "useUTF", "0") + self.parser.set("blogtk", "useUTF", "0") number = self.retrievalSpin.get_value() num_string = str(number) - self.parser.set("Default", "retrievalNumber", num_string) + self.parser.set("blogtk", "retrievalNumber", num_string) self.writeFile = open(self.configFile, "w") self.parser.write(self.writeFile) @@ -324,7 +325,7 @@ self.section = self.accountsCombo.entry.get_text() - if self.section == "Default": + if self.section == "DefaultBlog": errDialog = gtk.Dialog(title="Error", parent=self.accountsWindow, flags=0) button2 = gtk.Button(stock=gtk.STOCK_OK) button2.connect_object("clicked", gtk.Widget.destroy, errDialog) Index: blogtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/blogtk/F-11/blogtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- blogtk.spec 24 Feb 2009 05:06:32 -0000 1.8 +++ blogtk.spec 26 Jul 2009 18:23:41 -0000 1.9 @@ -3,7 +3,7 @@ Name: blogtk Version: 1.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: GNOME application for editing/maintaining blogs Group: Applications/Internet @@ -11,6 +11,7 @@ License: BSD URL: http://blogtk.sourceforge.net Source0: http://dl.sf.net/blogtk/blogtk_%{version}.tar.bz2 Source1: BSD +Patch0: blogtk-1.1-configname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -33,6 +34,7 @@ weblog with XML-RPC and create new posts %prep %setup -q -n BloGTK-%{version} cp %{SOURCE1} $RPM_BUILD_DIR/BloGTK-%{version} +%patch0 -p1 -b .configname %build @@ -87,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Paul W. Frields - 1.1-12 +- Fix config file naming (#501183) + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:23:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:23:51 +0000 (UTC) Subject: rpms/php-pear-Net-Socket/devel php-pear-Net-Socket.spec,1.7,1.8 Message-ID: <20090726182351.0C03511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-Socket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24481 Modified Files: php-pear-Net-Socket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-Socket.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-Socket/devel/php-pear-Net-Socket.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Net-Socket.spec 26 Feb 2009 21:52:33 -0000 1.7 +++ php-pear-Net-Socket.spec 26 Jul 2009 18:23:50 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-Net-Socket Version: 1.0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Network Socket Interface Summary(fr): Gestion des "sockets" r?seaux @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:24:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:24:05 +0000 (UTC) Subject: rpms/php-pear-Net-Traceroute/devel php-pear-Net-Traceroute.spec, 1.3, 1.4 Message-ID: <20090726182405.571ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-Traceroute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24673 Modified Files: php-pear-Net-Traceroute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-Traceroute.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-Traceroute/devel/php-pear-Net-Traceroute.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-Traceroute.spec 26 Feb 2009 21:53:36 -0000 1.3 +++ php-pear-Net-Traceroute.spec 26 Jul 2009 18:24:05 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Net-Traceroute Version: 0.21.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Execute traceroute Group: Development/Libraries @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.21.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:24:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:24:21 +0000 (UTC) Subject: rpms/php-pear-Net-URL/devel php-pear-Net-URL.spec,1.3,1.4 Message-ID: <20090726182421.8CE9811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-URL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24916 Modified Files: php-pear-Net-URL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-URL.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-URL/devel/php-pear-Net-URL.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Net-URL.spec 26 Feb 2009 21:54:35 -0000 1.3 +++ php-pear-Net-URL.spec 26 Jul 2009 18:24:21 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Net-URL Version: 1.0.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Easy parsing of URLs Group: Development/Libraries @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pfrields at fedoraproject.org Sun Jul 26 18:24:32 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sun, 26 Jul 2009 18:24:32 +0000 (UTC) Subject: rpms/blogtk/devel blogtk-1.1-configname.patch, NONE, 1.1 blogtk.spec, 1.9, 1.10 Message-ID: <20090726182432.912BD11C00CE@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/blogtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25076 Modified Files: blogtk.spec Added Files: blogtk-1.1-configname.patch Log Message: Patch erroneous config parsing for Python 2.6 (#501183) blogtk-1.1-configname.patch: BloGTK.py | 27 ++++++++++++++------------- config.py | 41 +++++++++++++++++++++-------------------- 2 files changed, 35 insertions(+), 33 deletions(-) --- NEW FILE blogtk-1.1-configname.patch --- diff -uNr BloGTK-1.1/src/BloGTK.py BloGTK-1.1-new/src/BloGTK.py --- BloGTK-1.1/src/BloGTK.py 2005-01-09 22:51:05.000000000 -0500 +++ BloGTK-1.1-new/src/BloGTK.py 2009-07-26 14:20:47.523561652 -0400 @@ -317,7 +317,7 @@ self.blogNameLabel = self.mainGlade.get_widget('blogNameLabel') if self.blogNameLabel.get_text() == "": - self.blogNameLabel.set_text("Default") + self.blogNameLabel.set_text("DefaultBlog") else: pass @@ -333,7 +333,8 @@ for item in self.sections: if item == "server": - self.conf.add_section("Default") + #if not self.conf.has_section("DefaultBlog"): + # self.conf.add_section("DefaultBlog") self.url = self.conf.get("server", "server") self.user = self.conf.get("server", "user") self.passwd = self.conf.get("server", "pass") @@ -345,11 +346,11 @@ except ConfigParser.NoOptionError, error: self.font = "Sans 12" - self.conf.set("Default", "server", self.url) - self.conf.set("Default", "user", self.user) - self.conf.set("Default", "pass", self.passwd) - self.conf.set("Default", "system", self.system) - self.conf.set("Default", "font", self.font) + self.conf.set("DefaultBlog", "server", self.url) + self.conf.set("DefaultBlog", "user", self.user) + self.conf.set("DefaultBlog", "pass", self.passwd) + self.conf.set("DefaultBlog", "system", self.system) + self.conf.set("DefaultBlog", "font", self.font) self.conf.remove_option("server", "server") self.conf.remove_option("server", "user") @@ -399,9 +400,9 @@ # set yet. Therefore we'll now have to set them to their default values. try: - self.useUTF = self.conf.get("Default", "useUTF") - self.defaultPublish = self.conf.get("Default", "defaultPublish") - self.retrievalNumber = self.conf.get("Default", "retrievalNumber") + self.useUTF = self.conf.get("default", "useUTF") + self.defaultPublish = self.conf.get("default", "defaultPublish") + self.retrievalNumber = self.conf.get("default", "retrievalNumber") if self.defaultPublish == "1": self.publishCheck.set_active(gtk.TRUE) @@ -412,9 +413,9 @@ print "Creating general settings configuration..." - self.conf.set("Default", "useUTF", "0") - self.conf.set("Default", "defaultPublish", "0") - self.conf.set("Default", "retrievalNumber", "10") + self.conf.set("DefaultBlog", "useUTF", "0") + self.conf.set("DefaultBlog", "defaultPublish", "0") + self.conf.set("DefaultBlog", "retrievalNumber", "10") conf_file = open(self.configDir + "/BloGTK.conf", 'w+') self.conf.write(conf_file) conf_file.close() diff -uNr BloGTK-1.1/src/config.py BloGTK-1.1-new/src/config.py --- BloGTK-1.1/src/config.py 2004-04-16 12:04:42.000000000 -0400 +++ BloGTK-1.1-new/src/config.py 2009-07-26 14:17:31.479437084 -0400 @@ -87,18 +87,19 @@ self.parser = ConfigParser.ConfigParser() self.file = open(self.configFile, "w") - self.parser.add_section("Default") - self.parser.write(self.file) - - self.parser.set("Default", "server", "http://www.yoursite.com/blog/blog.cgi") - self.parser.set("Default", "user", "username") - self.parser.set("Default", "pass", "password") - self.parser.set("Default", "system", "blogger") - self.parser.set("Default", "font", "Sans 12") + if not self.parser.has_section("DefaultBlog"): + self.parser.add_section("DefaultBlog") + #self.parser.write(self.file) + + self.parser.set("DefaultBlog", "server", "http://www.yoursite.com/blog/blog.cgi") + self.parser.set("DefaultBlog", "user", "username") + self.parser.set("DefaultBlog", "pass", "password") + self.parser.set("DefaultBlog", "system", "blogger") + self.parser.set("DefaultBlog", "font", "Sans 12") - self.parser.set("Default", "Publish", "FALSE") - self.parser.set("Default", "useUTF", "0") - self.parser.set("Default", "retrievalNumber", "10") + self.parser.set("DefaultBlog", "Publish", "FALSE") + self.parser.set("DefaultBlog", "useUTF", "0") + self.parser.set("DefaultBlog", "retrievalNumber", "10") self.parser.write(self.file) self.blogs = self.parser.sections() @@ -171,9 +172,9 @@ self.system = self.parser.get(self.section, "system") # 0.9 - We need to pull our General Settings from the config as well... - self.defaultPublish = self.parser.get("Default", "defaultPublish") - self.useUTF = self.parser.get("Default", "useutf") - self.retrievalNumber = self.parser.get("Default", "retrievalNumber") + self.defaultPublish = self.parser.get("blogtk", "defaultPublish") + self.useUTF = self.parser.get("blogtk", "useutf") + self.retrievalNumber = self.parser.get("blogtk", "retrievalNumber") except ConfigParser.NoSectionError: pass @@ -291,22 +292,22 @@ # 0.9 - Each time we save the form, we want to also save our general settings as well... if self.defaultPublishCheck.get_active() == gtk.TRUE: - self.parser.set("Default", "defaultPublish", "1") + self.parser.set("blogtk", "defaultPublish", "1") self.defaultMainCheck.set_active(gtk.TRUE) else: - self.parser.set("Default", "defaultPublish", "0") + self.parser.set("blogtk", "defaultPublish", "0") self.defaultMainCheck.set_active(gtk.FALSE) if self.useUTF8Check.get_active() == gtk.TRUE: - self.parser.set("Default", "useUTF", "1") + self.parser.set("blogtk", "useUTF", "1") else: - self.parser.set("Default", "useUTF", "0") + self.parser.set("blogtk", "useUTF", "0") number = self.retrievalSpin.get_value() num_string = str(number) - self.parser.set("Default", "retrievalNumber", num_string) + self.parser.set("blogtk", "retrievalNumber", num_string) self.writeFile = open(self.configFile, "w") self.parser.write(self.writeFile) @@ -324,7 +325,7 @@ self.section = self.accountsCombo.entry.get_text() - if self.section == "Default": + if self.section == "DefaultBlog": errDialog = gtk.Dialog(title="Error", parent=self.accountsWindow, flags=0) button2 = gtk.Button(stock=gtk.STOCK_OK) button2.connect_object("clicked", gtk.Widget.destroy, errDialog) Index: blogtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/blogtk/devel/blogtk.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- blogtk.spec 24 Jul 2009 18:12:00 -0000 1.9 +++ blogtk.spec 26 Jul 2009 18:24:32 -0000 1.10 @@ -11,6 +11,7 @@ License: BSD URL: http://blogtk.sourceforge.net Source0: http://dl.sf.net/blogtk/blogtk_%{version}.tar.bz2 Source1: BSD +Patch0: blogtk-1.1-configname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -33,6 +34,7 @@ weblog with XML-RPC and create new posts %prep %setup -q -n BloGTK-%{version} cp %{SOURCE1} $RPM_BUILD_DIR/BloGTK-%{version} +%patch0 -p1 -b .configname %build @@ -87,8 +89,8 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1.1-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Sun Jul 26 2009 Paul W. Frields - 1.1-12 +- Fix config file naming (#501183) * Mon Feb 23 2009 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:24:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:24:39 +0000 (UTC) Subject: rpms/php-pear-Net-URL-Mapper/devel php-pear-Net-URL-Mapper.spec, 1.2, 1.3 Message-ID: <20090726182439.2FD4B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-URL-Mapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25165 Modified Files: php-pear-Net-URL-Mapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-URL-Mapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-URL-Mapper/devel/php-pear-Net-URL-Mapper.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Net-URL-Mapper.spec 26 Feb 2009 21:56:16 -0000 1.2 +++ php-pear-Net-URL-Mapper.spec 26 Jul 2009 18:24:39 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Net-URL-Mapper Version: 0.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple and flexible way to build nice URLs for web applications Group: Development/Languages @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:24:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:24:52 +0000 (UTC) Subject: rpms/php-pear-Net-UserAgent-Detect/devel php-pear-Net-UserAgent-Detect.spec, 1.5, 1.6 Message-ID: <20090726182452.EFE2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Net-UserAgent-Detect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25391 Modified Files: php-pear-Net-UserAgent-Detect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Net-UserAgent-Detect.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Net-UserAgent-Detect/devel/php-pear-Net-UserAgent-Detect.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Net-UserAgent-Detect.spec 26 Feb 2009 21:57:19 -0000 1.5 +++ php-pear-Net-UserAgent-Detect.spec 26 Jul 2009 18:24:52 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Net-UserAgent-Detect Version: 2.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extract information from an HTTP user agent Group: Development/Languages @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:25:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:25:09 +0000 (UTC) Subject: rpms/php-pear-Numbers-Roman/devel php-pear-Numbers-Roman.spec, 1.4, 1.5 Message-ID: <20090726182509.A906D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Numbers-Roman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25572 Modified Files: php-pear-Numbers-Roman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Numbers-Roman.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Numbers-Roman/devel/php-pear-Numbers-Roman.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Numbers-Roman.spec 26 Feb 2009 21:58:22 -0000 1.4 +++ php-pear-Numbers-Roman.spec 26 Jul 2009 18:25:09 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Numbers-Roman Version: 1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Provides methods for converting to and from Roman Numerals Group: Development/Languages @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:25:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:25:25 +0000 (UTC) Subject: rpms/php-pear-Numbers-Words/devel php-pear-Numbers-Words.spec, 1.5, 1.6 Message-ID: <20090726182525.9A29511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Numbers-Words/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25796 Modified Files: php-pear-Numbers-Words.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Numbers-Words.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Numbers-Words/devel/php-pear-Numbers-Words.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Numbers-Words.spec 26 Feb 2009 21:59:21 -0000 1.5 +++ php-pear-Numbers-Words.spec 26 Jul 2009 18:25:25 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Numbers-Words Version: 0.15.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Methods for spelling numerals in words Group: Development/Languages @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:25:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:25:41 +0000 (UTC) Subject: rpms/php-pear-PEAR-Command-Packaging/devel php-pear-PEAR-Command-Packaging.spec, 1.5, 1.6 Message-ID: <20090726182541.3DA7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PEAR-Command-Packaging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25997 Modified Files: php-pear-PEAR-Command-Packaging.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PEAR-Command-Packaging.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PEAR-Command-Packaging/devel/php-pear-PEAR-Command-Packaging.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-PEAR-Command-Packaging.spec 19 Jul 2009 12:36:45 -0000 1.5 +++ php-pear-PEAR-Command-Packaging.spec 26 Jul 2009 18:25:41 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-PEAR-Command-Packaging Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create RPM spec files from PEAR modules Group: Development/System @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Remi Collet 0.2.0-2 - change %%{pear-name}.xml to %%{name}.xml From jkeating at fedoraproject.org Sun Jul 26 18:25:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:25:58 +0000 (UTC) Subject: rpms/php-pear-PHP-CodeSniffer/devel php-pear-PHP-CodeSniffer.spec, 1.10, 1.11 Message-ID: <20090726182558.0249811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PHP-CodeSniffer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26210 Modified Files: php-pear-PHP-CodeSniffer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PHP-CodeSniffer.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PHP-CodeSniffer/devel/php-pear-PHP-CodeSniffer.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- php-pear-PHP-CodeSniffer.spec 6 Mar 2009 04:16:48 -0000 1.10 +++ php-pear-PHP-CodeSniffer.spec 26 Jul 2009 18:25:57 -0000 1.11 @@ -3,7 +3,7 @@ Name: php-pear-PHP-CodeSniffer Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PHP coding standards enforcement tool Group: Development/Tools @@ -102,6 +102,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Konstantin Ryabitsev - 1.1.0-1 - Belatedly update to 1.1.0 final. From jkeating at fedoraproject.org Sun Jul 26 18:26:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:26:13 +0000 (UTC) Subject: rpms/php-pear-PHP-Compat/devel php-pear-PHP-Compat.spec,1.3,1.4 Message-ID: <20090726182613.2098911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PHP-Compat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26392 Modified Files: php-pear-PHP-Compat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PHP-Compat.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PHP-Compat/devel/php-pear-PHP-Compat.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-PHP-Compat.spec 26 Feb 2009 22:02:09 -0000 1.3 +++ php-pear-PHP-Compat.spec 26 Jul 2009 18:26:12 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-PHP-Compat Version: 1.5.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Provides missing functionality for older versions of PHP Summary(fr): Fournit les fonctionnalit?s manquantes aux anciennes versions de PHP @@ -81,6 +81,9 @@ fi %{pear_testdir}/%{pear_name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:26:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:26:29 +0000 (UTC) Subject: rpms/php-pear-PHP-CompatInfo/devel php-pear-PHP-CompatInfo.spec, 1.12, 1.13 Message-ID: <20090726182629.190C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PHP-CompatInfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26630 Modified Files: php-pear-PHP-CompatInfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PHP-CompatInfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PHP-CompatInfo/devel/php-pear-PHP-CompatInfo.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- php-pear-PHP-CompatInfo.spec 26 Feb 2009 22:03:58 -0000 1.12 +++ php-pear-PHP-CompatInfo.spec 26 Jul 2009 18:26:28 -0000 1.13 @@ -5,7 +5,7 @@ Name: php-pear-PHP-CompatInfo Version: 1.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Find out version and extensions required for a piece of code to run Summary(fr): Trouver version et extensions n?cessaires ? l'ex?cution d'un code @@ -112,6 +112,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:26:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:26:44 +0000 (UTC) Subject: rpms/php-pear-PHPUnit/devel php-pear-PHPUnit.spec,1.16,1.17 Message-ID: <20090726182644.E953E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PHPUnit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26852 Modified Files: php-pear-PHPUnit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PHPUnit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PHPUnit/devel/php-pear-PHPUnit.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- php-pear-PHPUnit.spec 2 May 2009 07:31:59 -0000 1.16 +++ php-pear-PHPUnit.spec 26 Jul 2009 18:26:44 -0000 1.17 @@ -4,7 +4,7 @@ Name: php-pear-PHPUnit Version: 3.3.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Regression testing framework for unit tests Group: Development/Libraries @@ -101,6 +101,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 02 2009 Remi Collet - 3.3.16-1 - Upstream sync - Fix requires (remove hint) and raise PEAR version to 1.7.1 From jkeating at fedoraproject.org Sun Jul 26 18:26:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:26:59 +0000 (UTC) Subject: rpms/php-pear-Pager/devel php-pear-Pager.spec,1.6,1.7 Message-ID: <20090726182659.E5AA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Pager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27052 Modified Files: php-pear-Pager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Pager.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Pager/devel/php-pear-Pager.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- php-pear-Pager.spec 26 Feb 2009 22:06:04 -0000 1.6 +++ php-pear-Pager.spec 26 Jul 2009 18:26:59 -0000 1.7 @@ -3,7 +3,7 @@ Name: php-pear-Pager Version: 2.4.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Data paging class Group: Development/Libraries @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:27:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:27:16 +0000 (UTC) Subject: rpms/php-pear-Payment-Process/devel php-pear-Payment-Process.spec, 1.3, 1.4 Message-ID: <20090726182716.3C4C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Payment-Process/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27275 Modified Files: php-pear-Payment-Process.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Payment-Process.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Payment-Process/devel/php-pear-Payment-Process.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Payment-Process.spec 26 Feb 2009 22:07:03 -0000 1.3 +++ php-pear-Payment-Process.spec 26 Jul 2009 18:27:16 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Payment-Process Version: 0.6.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Unified payment processor Group: Development/Libraries @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:27:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:27:33 +0000 (UTC) Subject: rpms/php-pear-Phlickr/devel php-pear-Phlickr.spec,1.4,1.5 Message-ID: <20090726182733.B23DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Phlickr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27468 Modified Files: php-pear-Phlickr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Phlickr.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Phlickr/devel/php-pear-Phlickr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Phlickr.spec 26 Feb 2009 22:08:05 -0000 1.4 +++ php-pear-Phlickr.spec 26 Jul 2009 18:27:32 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Phlickr Version: 0.2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Phlickr is a PHP5 based api kit used with the Flickr API Group: Development/Tools @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:27:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:27:48 +0000 (UTC) Subject: rpms/php-pear-PhpDocumentor/devel php-pear-PhpDocumentor.spec, 1.7, 1.8 Message-ID: <20090726182748.E9DDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-PhpDocumentor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27683 Modified Files: php-pear-PhpDocumentor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-PhpDocumentor.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-PhpDocumentor/devel/php-pear-PhpDocumentor.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-PhpDocumentor.spec 26 Feb 2009 22:09:02 -0000 1.7 +++ php-pear-PhpDocumentor.spec 26 Jul 2009 18:27:48 -0000 1.8 @@ -4,7 +4,7 @@ Summary: The complete documentation solution for PHP Name: php-pear-PhpDocumentor Version: 1.4.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://www.phpdoc.org/ @@ -121,6 +121,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:28:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:28:01 +0000 (UTC) Subject: rpms/php-pear-SOAP/devel php-pear-SOAP.spec,1.5,1.6 Message-ID: <20090726182801.DA25D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-SOAP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27872 Modified Files: php-pear-SOAP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-SOAP.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-SOAP/devel/php-pear-SOAP.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-SOAP.spec 26 Feb 2009 22:09:58 -0000 1.5 +++ php-pear-SOAP.spec 26 Jul 2009 18:28:01 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-SOAP Version: 0.12.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple Object Access Protocol (SOAP) Client/Server for PHP Group: Development/Libraries @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:28:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:28:16 +0000 (UTC) Subject: rpms/php-pear-Services-Weather/devel php-pear-Services-Weather.spec, 1.5, 1.6 Message-ID: <20090726182816.903CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Services-Weather/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28079 Modified Files: php-pear-Services-Weather.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Services-Weather.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Services-Weather/devel/php-pear-Services-Weather.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Services-Weather.spec 13 Mar 2009 13:32:38 -0000 1.5 +++ php-pear-Services-Weather.spec 26 Jul 2009 18:28:16 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Services-Weather Version: 1.4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: This class acts as an interface to various online weather-services Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Remi Collet 1.4.4-1 - update to 1.4.4 (bugfix) From pfrields at fedoraproject.org Sun Jul 26 18:28:16 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sun, 26 Jul 2009 18:28:16 +0000 (UTC) Subject: rpms/blogtk/devel blogtk.spec,1.10,1.11 Message-ID: <20090726182816.C377411C00CE@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/blogtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28066 Modified Files: blogtk.spec Log Message: Fix spec file and bump release properly Index: blogtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/blogtk/devel/blogtk.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- blogtk.spec 26 Jul 2009 18:24:32 -0000 1.10 +++ blogtk.spec 26 Jul 2009 18:28:16 -0000 1.11 @@ -3,7 +3,7 @@ Name: blogtk Version: 1.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: GNOME application for editing/maintaining blogs Group: Applications/Internet @@ -11,7 +11,6 @@ License: BSD URL: http://blogtk.sourceforge.net Source0: http://dl.sf.net/blogtk/blogtk_%{version}.tar.bz2 Source1: BSD -Patch0: blogtk-1.1-configname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -34,7 +33,6 @@ weblog with XML-RPC and create new posts %prep %setup -q -n BloGTK-%{version} cp %{SOURCE1} $RPM_BUILD_DIR/BloGTK-%{version} -%patch0 -p1 -b .configname %build @@ -89,9 +87,12 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Jul 26 2009 Paul W. Frields - 1.1-12 +* Sun Jul 26 2009 Paul W. Frields - 1.1-13 - Fix config file naming (#501183) +* Fri Jul 24 2009 Fedora Release Engineering - 1.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:28:32 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid/devel php-pear-Structures-DataGrid.spec, 1.13, 1.14 Message-ID: <20090726182832.10F9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28337 Modified Files: php-pear-Structures-DataGrid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid/devel/php-pear-Structures-DataGrid.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- php-pear-Structures-DataGrid.spec 26 Feb 2009 22:12:10 -0000 1.13 +++ php-pear-Structures-DataGrid.spec 26 Jul 2009 18:28:31 -0000 1.14 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid Version: 0.9.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tabular structure for converting data Group: Development/Libraries @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:28:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:28:52 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-DataSource-Array/devel php-pear-Structures-DataGrid-DataSource-Array.spec, 1.7, 1.8 Message-ID: <20090726182852.1918811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-Array/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28577 Modified Files: php-pear-Structures-DataGrid-DataSource-Array.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-DataSource-Array.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-Array/devel/php-pear-Structures-DataGrid-DataSource-Array.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Structures-DataGrid-DataSource-Array.spec 26 Feb 2009 22:13:10 -0000 1.7 +++ php-pear-Structures-DataGrid-DataSource-Array.spec 26 Jul 2009 18:28:51 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-DataSource-Array Version: 0.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DataSource driver using arrays Group: Development/Libraries @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:29:07 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-DataSource-DataObject/devel php-pear-Structures-DataGrid-DataSource-DataObject.spec, 1.7, 1.8 Message-ID: <20090726182907.8DCAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-DataObject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28769 Modified Files: php-pear-Structures-DataGrid-DataSource-DataObject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-DataSource-DataObject.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-DataObject/devel/php-pear-Structures-DataGrid-DataSource-DataObject.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- php-pear-Structures-DataGrid-DataSource-DataObject.spec 26 Feb 2009 22:14:11 -0000 1.7 +++ php-pear-Structures-DataGrid-DataSource-DataObject.spec 26 Jul 2009 18:29:07 -0000 1.8 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-DataSource-DataObject Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DataSource driver using PEAR::DB_DataObject Group: Development/Libraries @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pfrields at fedoraproject.org Sun Jul 26 18:29:29 2009 From: pfrields at fedoraproject.org (Paul W. Frields) Date: Sun, 26 Jul 2009 18:29:29 +0000 (UTC) Subject: rpms/blogtk/devel blogtk.spec,1.11,1.12 Message-ID: <20090726182929.A143311C00CE@cvs1.fedora.phx.redhat.com> Author: pfrields Update of /cvs/pkgs/rpms/blogtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29020 Modified Files: blogtk.spec Log Message: Add req patch file Index: blogtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/blogtk/devel/blogtk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- blogtk.spec 26 Jul 2009 18:28:16 -0000 1.11 +++ blogtk.spec 26 Jul 2009 18:29:29 -0000 1.12 @@ -11,6 +11,7 @@ License: BSD URL: http://blogtk.sourceforge.net Source0: http://dl.sf.net/blogtk/blogtk_%{version}.tar.bz2 Source1: BSD +Patch0: blogtk-1.1-configname.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -33,6 +34,7 @@ weblog with XML-RPC and create new posts %prep %setup -q -n BloGTK-%{version} cp %{SOURCE1} $RPM_BUILD_DIR/BloGTK-%{version} +%patch0 -p1 -b .configname %build From jkeating at fedoraproject.org Sun Jul 26 18:29:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:29:24 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-DataSource-MDB2/devel php-pear-Structures-DataGrid-DataSource-MDB2.spec, 1.11, 1.12 Message-ID: <20090726182924.AD58B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-MDB2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28958 Modified Files: php-pear-Structures-DataGrid-DataSource-MDB2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-DataSource-MDB2.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-MDB2/devel/php-pear-Structures-DataGrid-DataSource-MDB2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- php-pear-Structures-DataGrid-DataSource-MDB2.spec 26 Feb 2009 22:15:14 -0000 1.11 +++ php-pear-Structures-DataGrid-DataSource-MDB2.spec 26 Jul 2009 18:29:24 -0000 1.12 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-DataSource-MDB2 Version: 0.1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DataSource driver using PEAR::MDB2 and an SQL query Group: Development/Libraries @@ -73,6 +73,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:29:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:29:39 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-DataSource-RSS/devel php-pear-Structures-DataGrid-DataSource-RSS.spec, 1.5, 1.6 Message-ID: <20090726182939.02D0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-RSS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29147 Modified Files: php-pear-Structures-DataGrid-DataSource-RSS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-DataSource-RSS.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-DataSource-RSS/devel/php-pear-Structures-DataGrid-DataSource-RSS.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Structures-DataGrid-DataSource-RSS.spec 26 Feb 2009 22:16:13 -0000 1.5 +++ php-pear-Structures-DataGrid-DataSource-RSS.spec 26 Jul 2009 18:29:38 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-DataSource-RSS Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DataSource driver using RSS files Group: Development/Libraries @@ -73,6 +73,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:29:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:29:55 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-Renderer-Pager/devel php-pear-Structures-DataGrid-Renderer-Pager.spec, 1.5, 1.6 Message-ID: <20090726182955.2D2C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-Renderer-Pager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29337 Modified Files: php-pear-Structures-DataGrid-Renderer-Pager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-Renderer-Pager.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-Renderer-Pager/devel/php-pear-Structures-DataGrid-Renderer-Pager.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Structures-DataGrid-Renderer-Pager.spec 26 Feb 2009 22:17:12 -0000 1.5 +++ php-pear-Structures-DataGrid-Renderer-Pager.spec 26 Jul 2009 18:29:54 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-Renderer-Pager Version: 0.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Renderer driver using PEAR::Pager Group: Development/Libraries @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:30:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:30:11 +0000 (UTC) Subject: rpms/php-pear-Structures-DataGrid-Renderer-Smarty/devel php-pear-Structures-DataGrid-Renderer-Smarty.spec, 1.5, 1.6 Message-ID: <20090726183011.8CE2311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Structures-DataGrid-Renderer-Smarty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29528 Modified Files: php-pear-Structures-DataGrid-Renderer-Smarty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Structures-DataGrid-Renderer-Smarty.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Structures-DataGrid-Renderer-Smarty/devel/php-pear-Structures-DataGrid-Renderer-Smarty.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-Structures-DataGrid-Renderer-Smarty.spec 26 Feb 2009 22:18:10 -0000 1.5 +++ php-pear-Structures-DataGrid-Renderer-Smarty.spec 26 Jul 2009 18:30:11 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-Structures-DataGrid-Renderer-Smarty Version: 0.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Renderer driver using Smarty Group: Development/Libraries @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:30:26 +0000 (UTC) Subject: rpms/php-pear-Text-Diff/devel php-pear-Text-Diff.spec,1.1,1.2 Message-ID: <20090726183026.AF6E611C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Text-Diff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29720 Modified Files: php-pear-Text-Diff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Text-Diff.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Text-Diff/devel/php-pear-Text-Diff.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pear-Text-Diff.spec 9 May 2009 21:12:04 -0000 1.1 +++ php-pear-Text-Diff.spec 26 Jul 2009 18:30:26 -0000 1.2 @@ -3,7 +3,7 @@ Name: php-pear-Text-Diff Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Engine for performing and rendering text diffs Group: Development/Libraries @@ -78,5 +78,8 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Xavier Bachelot 1.1.0-1 - Initial build. From jkeating at fedoraproject.org Sun Jul 26 18:30:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:30:43 +0000 (UTC) Subject: rpms/php-pear-Validate/devel php-pear-Validate.spec,1.4,1.5 Message-ID: <20090726183043.95B1D11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Validate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29888 Modified Files: php-pear-Validate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Validate.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Validate/devel/php-pear-Validate.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pear-Validate.spec 26 Feb 2009 22:19:16 -0000 1.4 +++ php-pear-Validate.spec 26 Jul 2009 18:30:43 -0000 1.5 @@ -3,7 +3,7 @@ Name: php-pear-Validate Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Validation Class for Various Data Types Group: Development/Libraries @@ -83,6 +83,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:31:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:31:00 +0000 (UTC) Subject: rpms/php-pear-Validate-Finance-CreditCard/devel php-pear-Validate-Finance-CreditCard.spec, 1.3, 1.4 Message-ID: <20090726183100.812B111C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Validate-Finance-CreditCard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30086 Modified Files: php-pear-Validate-Finance-CreditCard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Validate-Finance-CreditCard.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Validate-Finance-CreditCard/devel/php-pear-Validate-Finance-CreditCard.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pear-Validate-Finance-CreditCard.spec 26 Feb 2009 22:20:13 -0000 1.3 +++ php-pear-Validate-Finance-CreditCard.spec 26 Jul 2009 18:31:00 -0000 1.4 @@ -3,7 +3,7 @@ Name: php-pear-Validate-Finance-CreditCard Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Validation class for Credit Cards Group: Development/Libraries @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:31:14 +0000 (UTC) Subject: rpms/php-pear-Var-Dump/devel php-pear-Var-Dump.spec,1.2,1.3 Message-ID: <20090726183114.D475911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-Var-Dump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30264 Modified Files: php-pear-Var-Dump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-Var-Dump.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-Var-Dump/devel/php-pear-Var-Dump.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-Var-Dump.spec 26 Feb 2009 22:21:20 -0000 1.2 +++ php-pear-Var-Dump.spec 26 Jul 2009 18:31:14 -0000 1.3 @@ -3,7 +3,7 @@ Name: php-pear-Var-Dump Version: 1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Provides methods for dumping structured information about a variable Group: Development/Libraries @@ -103,6 +103,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:31:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:31:28 +0000 (UTC) Subject: rpms/php-pear-XML-Beautifier/devel php-pear-XML-Beautifier.spec, 1.5, 1.6 Message-ID: <20090726183128.13E4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-XML-Beautifier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30448 Modified Files: php-pear-XML-Beautifier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-XML-Beautifier.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-XML-Beautifier/devel/php-pear-XML-Beautifier.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-XML-Beautifier.spec 26 Feb 2009 22:22:16 -0000 1.5 +++ php-pear-XML-Beautifier.spec 26 Jul 2009 18:31:27 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-XML-Beautifier Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Class to format XML documents Group: Development/Libraries @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:31:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:31:42 +0000 (UTC) Subject: rpms/php-pear-XML-Parser/devel php-pear-XML-Parser.spec,1.8,1.9 Message-ID: <20090726183142.71A3111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-XML-Parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30628 Modified Files: php-pear-XML-Parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-XML-Parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-XML-Parser/devel/php-pear-XML-Parser.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-pear-XML-Parser.spec 26 Feb 2009 22:23:17 -0000 1.8 +++ php-pear-XML-Parser.spec 26 Jul 2009 18:31:42 -0000 1.9 @@ -5,7 +5,7 @@ Summary: XML parsing class based on Summary(fr): Une classe d'analyse XML utilisant l'extension expat de PHP Name: php-pear-XML-Parser Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Libraries URL: http://pear.php.net/package/XML_Parser @@ -111,6 +111,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:31:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:31:55 +0000 (UTC) Subject: rpms/php-pear-XML-RSS/devel php-pear-XML-RSS.spec,1.5,1.6 Message-ID: <20090726183155.4ECCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-XML-RSS/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30759 Modified Files: php-pear-XML-RSS.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-XML-RSS.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-XML-RSS/devel/php-pear-XML-RSS.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-XML-RSS.spec 26 Feb 2009 22:24:17 -0000 1.5 +++ php-pear-XML-RSS.spec 26 Jul 2009 18:31:55 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-XML-RSS Version: 0.9.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: RSS parser Group: Development/Libraries @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:32:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:32:11 +0000 (UTC) Subject: rpms/php-pear-XML-Serializer/devel php-pear-XML-Serializer.spec, 1.5, 1.6 Message-ID: <20090726183211.5082811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-XML-Serializer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30926 Modified Files: php-pear-XML-Serializer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-XML-Serializer.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-XML-Serializer/devel/php-pear-XML-Serializer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-XML-Serializer.spec 26 Feb 2009 22:25:21 -0000 1.5 +++ php-pear-XML-Serializer.spec 26 Jul 2009 18:32:11 -0000 1.6 @@ -3,7 +3,7 @@ Name: php-pear-XML-Serializer Version: 0.18.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Swiss-army knife for reading and writing XML files Group: Development/Libraries @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.18.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:32:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:32:27 +0000 (UTC) Subject: rpms/php-pear-creole/devel php-pear-creole.spec,1.2,1.3 Message-ID: <20090726183227.AC76111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-creole/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31119 Modified Files: php-pear-creole.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-creole.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-creole/devel/php-pear-creole.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-creole.spec 26 Feb 2009 22:27:31 -0000 1.2 +++ php-pear-creole.spec 26 Jul 2009 18:32:27 -0000 1.3 @@ -5,7 +5,7 @@ Summary: A database abstraction layer for PHP5 Name: php-pear-creole Version: 1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2 Group: Development/Tools @@ -75,6 +75,9 @@ fi %{pear_xmldir}/%{pear_name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:32:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:32:44 +0000 (UTC) Subject: rpms/php-pear-pake/devel php-pear-pake.spec,1.2,1.3 Message-ID: <20090726183244.4829C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-pake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31279 Modified Files: php-pear-pake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-pake.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-pake/devel/php-pear-pake.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-pake.spec 26 Feb 2009 22:28:29 -0000 1.2 +++ php-pear-pake.spec 26 Jul 2009 18:32:44 -0000 1.3 @@ -5,7 +5,7 @@ Summary: PHP5 project builder system Name: php-pear-pake Version: 1.1.4 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: Development/Tools @@ -87,6 +87,9 @@ fi %{pear_xmldir}/%{pear_name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:33:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:33:00 +0000 (UTC) Subject: rpms/php-pear-phing/devel php-pear-phing.spec,1.2,1.3 Message-ID: <20090726183300.B6D2111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-phing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31516 Modified Files: php-pear-phing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-phing.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-phing/devel/php-pear-phing.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pear-phing.spec 26 Feb 2009 22:29:28 -0000 1.2 +++ php-pear-phing.spec 26 Jul 2009 18:33:00 -0000 1.3 @@ -5,7 +5,7 @@ Summary: A project build system based on Apache Ant Name: php-pear-phing Version: 2.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 Group: Development/Tools @@ -94,6 +94,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:33:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:33:17 +0000 (UTC) Subject: rpms/php-pear-propel_generator/devel php-pear-propel_generator.spec, 1.5, 1.6 Message-ID: <20090726183317.8E19111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-propel_generator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31715 Modified Files: php-pear-propel_generator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-propel_generator.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-propel_generator/devel/php-pear-propel_generator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-propel_generator.spec 26 Feb 2009 22:30:30 -0000 1.5 +++ php-pear-propel_generator.spec 26 Jul 2009 18:33:17 -0000 1.6 @@ -5,7 +5,7 @@ Summary: An ORM framework for PHP5 - generator component Name: php-pear-%{pear_name} Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv3+ Group: Development/Tools @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:33:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:33:36 +0000 (UTC) Subject: rpms/php-pear-propel_runtime/devel php-pear-propel_runtime.spec, 1.5, 1.6 Message-ID: <20090726183336.7416811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pear-propel_runtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31951 Modified Files: php-pear-propel_runtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pear-propel_runtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pear-propel_runtime/devel/php-pear-propel_runtime.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pear-propel_runtime.spec 26 Feb 2009 22:31:29 -0000 1.5 +++ php-pear-propel_runtime.spec 26 Jul 2009 18:33:36 -0000 1.6 @@ -5,7 +5,7 @@ Summary: An ORM framework for PHP5 - runtime component Name: php-pear-%{pear_name} Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv3+ Group: Development/Libraries @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:33:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:33:51 +0000 (UTC) Subject: rpms/php-pecl-apc/devel php-pecl-apc.spec,1.11,1.12 Message-ID: <20090726183351.8DA9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-apc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32154 Modified Files: php-pecl-apc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-apc.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-apc/devel/php-pecl-apc.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- php-pecl-apc.spec 13 Jul 2009 06:56:00 -0000 1.11 +++ php-pecl-apc.spec 26 Jul 2009 18:33:51 -0000 1.12 @@ -7,7 +7,7 @@ Summary: APC caches and optimizes PHP intermediate code Name: php-pecl-apc Version: 3.1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/APC @@ -162,6 +162,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 3.1.2-1 - update to 3.1.2 (beta) - PHP 5.3 support - use setup -q -c From jkeating at fedoraproject.org Sun Jul 26 18:34:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:34:06 +0000 (UTC) Subject: rpms/php-pecl-geoip/devel php-pecl-geoip.spec,1.4,1.5 Message-ID: <20090726183406.2275211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-geoip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32333 Modified Files: php-pecl-geoip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-geoip.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-geoip/devel/php-pecl-geoip.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pecl-geoip.spec 15 Jul 2009 10:13:47 -0000 1.4 +++ php-pecl-geoip.spec 26 Jul 2009 18:34:05 -0000 1.5 @@ -6,7 +6,7 @@ Name: php-pecl-geoip Version: 1.0.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extension to map IP addresses to geographic places Group: Development/Languages License: PHP @@ -83,6 +83,9 @@ fi %{pecl_xmldir}/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet 1.0.7-3 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:34:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:34:21 +0000 (UTC) Subject: rpms/php-pecl-imagick/devel php-pecl-imagick.spec,1.5,1.6 Message-ID: <20090726183421.B49BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-imagick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32567 Modified Files: php-pecl-imagick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-imagick.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-imagick/devel/php-pecl-imagick.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-pecl-imagick.spec 13 Jul 2009 07:48:38 -0000 1.5 +++ php-pecl-imagick.spec 26 Jul 2009 18:34:21 -0000 1.6 @@ -7,7 +7,7 @@ Summary: Provides a wrapper to the ImageMagick library Name: php-pecl-%peclName Version: 2.2.2 -Release: 3%{?dist} +Release: 4%{?dist} License: PHP Group: Development/Libraries Source0: http://pecl.php.net/get/%peclName-%{version}.tgz @@ -79,6 +79,9 @@ fi %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 2.2.2-3 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:34:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:34:38 +0000 (UTC) Subject: rpms/php-pecl-lzf/devel php-pecl-lzf.spec,1.2,1.3 Message-ID: <20090726183438.E0EC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-lzf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv318 Modified Files: php-pecl-lzf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-lzf.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-lzf/devel/php-pecl-lzf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-lzf.spec 12 Jul 2009 19:29:30 -0000 1.2 +++ php-pecl-lzf.spec 26 Jul 2009 18:34:38 -0000 1.3 @@ -6,7 +6,7 @@ Name: php-pecl-lzf Version: 1.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Extension to handle LZF de/compression Group: Development/Languages License: PHP @@ -83,6 +83,9 @@ fi %{pecl_xmldir}/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 1.5.2-4 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:34:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:34:53 +0000 (UTC) Subject: rpms/php-pecl-mailparse/devel php-pecl-mailparse.spec,1.21,1.22 Message-ID: <20090726183453.6575A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-mailparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv513 Modified Files: php-pecl-mailparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-mailparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-mailparse/devel/php-pecl-mailparse.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- php-pecl-mailparse.spec 12 Jul 2009 18:28:30 -0000 1.21 +++ php-pecl-mailparse.spec 26 Jul 2009 18:34:53 -0000 1.22 @@ -6,7 +6,7 @@ Summary: PHP PECL package for parsing and working with email messages Name: php-pecl-mailparse Version: 2.1.5 -Release: 1%{?dist} +Release: 2%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/mailparse @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet 2.1.5-1 - update to 2.1.5 (bugfix + php 5.3.0 compatibility) From jkeating at fedoraproject.org Sun Jul 26 18:35:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:35:09 +0000 (UTC) Subject: rpms/php-pecl-memcache/devel php-pecl-memcache.spec,1.11,1.12 Message-ID: <20090726183509.1D11A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-memcache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv709 Modified Files: php-pecl-memcache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-memcache.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-memcache/devel/php-pecl-memcache.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- php-pecl-memcache.spec 12 Jul 2009 18:26:57 -0000 1.11 +++ php-pecl-memcache.spec 26 Jul 2009 18:35:08 -0000 1.12 @@ -7,7 +7,7 @@ Summary: Extension to work with the Memcached caching daemon Name: php-pecl-memcache Version: 3.0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/%{pecl_name} @@ -132,6 +132,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet 3.0.4-2 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:35:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:35:22 +0000 (UTC) Subject: rpms/php-pecl-memcached/devel php-pecl-memcached.spec,1.3,1.4 Message-ID: <20090726183522.6023111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-memcached/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv919 Modified Files: php-pecl-memcached.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-memcached/devel/php-pecl-memcached.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pecl-memcached.spec 12 Jul 2009 17:20:43 -0000 1.3 +++ php-pecl-memcached.spec 26 Jul 2009 18:35:22 -0000 1.4 @@ -5,7 +5,7 @@ Summary: Extension to work with the Memcached caching daemon Name: php-pecl-memcached Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/%{pecl_name} @@ -99,6 +99,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 1.0.0-1 - Update to 1.0.0 (First stable release) From jkeating at fedoraproject.org Sun Jul 26 18:35:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:35:39 +0000 (UTC) Subject: rpms/php-pecl-ncurses/devel php-pecl-ncurses.spec,1.1,1.2 Message-ID: <20090726183539.4967E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-ncurses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1103 Modified Files: php-pecl-ncurses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-ncurses.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-ncurses/devel/php-pecl-ncurses.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-ncurses.spec 12 Jul 2009 21:00:50 -0000 1.1 +++ php-pecl-ncurses.spec 26 Jul 2009 18:35:36 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Terminal screen handling and optimization package Name: php-pecl-ncurses Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/ncurses @@ -105,6 +105,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet 1.0.0-2 - add %%check for minimal test. From jkeating at fedoraproject.org Sun Jul 26 18:35:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:35:56 +0000 (UTC) Subject: rpms/php-pecl-parsekit/devel php-pecl-parsekit.spec,1.2,1.3 Message-ID: <20090726183556.A3E2B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-parsekit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1364 Modified Files: php-pecl-parsekit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-parsekit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-parsekit/devel/php-pecl-parsekit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-parsekit.spec 13 Jul 2009 07:16:27 -0000 1.2 +++ php-pecl-parsekit.spec 26 Jul 2009 18:35:56 -0000 1.3 @@ -8,7 +8,7 @@ Summary: PHP Opcode Analyser Name: php-pecl-%peclName Version: 1.2 -Release: 4%{?CVS:.CVS%{CVS}}%{?dist} +Release: 5%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -88,6 +88,9 @@ rm -rf %{buildroot} %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.d/%peclName.ini %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-5.CVS20090309 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 1.2-4.CVS20090309 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:36:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:36:11 +0000 (UTC) Subject: rpms/php-pecl-radius/devel php-pecl-radius.spec,1.8,1.9 Message-ID: <20090726183611.B6BF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-radius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1611 Modified Files: php-pecl-radius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-radius.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-radius/devel/php-pecl-radius.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-pecl-radius.spec 12 Jul 2009 20:37:53 -0000 1.8 +++ php-pecl-radius.spec 26 Jul 2009 18:36:11 -0000 1.9 @@ -6,7 +6,7 @@ Name: php-pecl-radius Version: 1.2.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Radius client library License: BSD @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 1.2.5-7 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:36:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:36:26 +0000 (UTC) Subject: rpms/php-pecl-runkit/devel php-pecl-runkit.spec,1.2,1.3 Message-ID: <20090726183626.11EB211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-runkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1796 Modified Files: php-pecl-runkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-runkit/devel/php-pecl-runkit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-runkit.spec 13 Jul 2009 07:05:10 -0000 1.2 +++ php-pecl-runkit.spec 26 Jul 2009 18:36:25 -0000 1.3 @@ -12,7 +12,7 @@ Summary(pl): Obr?bka zdefiniowanych prz Name: php-pecl-%{peclName} Version: 0.9 %if 0%{?CVS:1} -Release: 11.CVS%{CVS}%{?dist} +Release: 12.CVS%{CVS}%{?dist} %else Release: 10%{?dist} %endif @@ -114,6 +114,9 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-12.CVS20090215 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.9-11.CVS20090215 - rebuild for new PHP 5.3.0 ABI (20090626) @@ -217,8 +220,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.2 2009/07/13 07:05:10 remi -#PHP 5.3.0 build +#Revision 1.3 2009/07/26 18:36:25 jkeating +#- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From jkeating at fedoraproject.org Sun Jul 26 18:36:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:36:39 +0000 (UTC) Subject: rpms/php-pecl-selinux/devel php-pecl-selinux.spec,1.4,1.5 Message-ID: <20090726183639.CFAE111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-selinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1963 Modified Files: php-pecl-selinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-selinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-selinux/devel/php-pecl-selinux.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pecl-selinux.spec 13 Jul 2009 07:24:26 -0000 1.4 +++ php-pecl-selinux.spec 26 Jul 2009 18:36:39 -0000 1.5 @@ -5,7 +5,7 @@ Summary: SELinux binding for PHP scripting language Name: php-pecl-selinux Version: 0.3.1 -Release: 3%{?dist} +Release: 4%{?dist} License: PHP Group: Development/Languages URL: http://pecl.php.net/package/%{pecl_name} @@ -77,6 +77,9 @@ fi %{pecl_xmldir}/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.3.1-2 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:36:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:36:52 +0000 (UTC) Subject: rpms/php-pecl-ssh2/devel php-pecl-ssh2.spec,1.4,1.5 Message-ID: <20090726183652.E34B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-ssh2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2119 Modified Files: php-pecl-ssh2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-ssh2.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-ssh2/devel/php-pecl-ssh2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-pecl-ssh2.spec 12 Jul 2009 20:08:40 -0000 1.4 +++ php-pecl-ssh2.spec 26 Jul 2009 18:36:52 -0000 1.5 @@ -7,7 +7,7 @@ Name: php-pecl-ssh2 Version: 0.11.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Bindings for the libssh2 library License: PHP @@ -103,6 +103,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 0.11.0-3 - add ssh2-php53.patch - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:37:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:37:08 +0000 (UTC) Subject: rpms/php-pecl-xdebug/devel php-pecl-xdebug.spec,1.19,1.20 Message-ID: <20090726183708.04E3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-pecl-xdebug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2325 Modified Files: php-pecl-xdebug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-pecl-xdebug.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-xdebug/devel/php-pecl-xdebug.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- php-pecl-xdebug.spec 12 Jul 2009 20:30:01 -0000 1.19 +++ php-pecl-xdebug.spec 26 Jul 2009 18:37:07 -0000 1.20 @@ -6,7 +6,7 @@ Name: php-pecl-xdebug Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PECL package for debugging PHP scripts License: BSD @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Remi Collet - 2.0.4-1 - update to 2.0.4 (bugfix + Basic PHP 5.3 support) From jkeating at fedoraproject.org Sun Jul 26 18:37:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:37:21 +0000 (UTC) Subject: rpms/php-shout/devel php-shout.spec,1.9,1.10 Message-ID: <20090726183721.BC01511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-shout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2497 Modified Files: php-shout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-shout.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-shout/devel/php-shout.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- php-shout.spec 13 Jul 2009 07:57:23 -0000 1.9 +++ php-shout.spec 26 Jul 2009 18:37:21 -0000 1.10 @@ -3,7 +3,7 @@ Name: php-shout Version: 0.9.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PHP module for communicating with Icecast servers Source0: http://dl.sf.net/phpshout/phpShout-%{version}.tar.gz @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{php_extdir}/shout.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.9.2-4 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:37:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:37:36 +0000 (UTC) Subject: rpms/php-simplepie/devel php-simplepie.spec,1.2,1.3 Message-ID: <20090726183736.2802211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-simplepie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2660 Modified Files: php-simplepie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-simplepie.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-simplepie/devel/php-simplepie.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-simplepie.spec 10 May 2009 14:34:04 -0000 1.2 +++ php-simplepie.spec 26 Jul 2009 18:37:35 -0000 1.3 @@ -1,6 +1,6 @@ Name: php-simplepie Version: 1.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple RSS Library in PHP Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 David Nalley 1.1.3-3 - used version macro in source url - stopped using two different macros for buildroot From jkeating at fedoraproject.org Sun Jul 26 18:37:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:37:53 +0000 (UTC) Subject: rpms/php-spyc/devel php-spyc.spec,1.3,1.4 Message-ID: <20090726183753.4980411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-spyc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2834 Modified Files: php-spyc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-spyc.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-spyc/devel/php-spyc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-spyc.spec 26 Feb 2009 22:43:33 -0000 1.3 +++ php-spyc.spec 26 Jul 2009 18:37:52 -0000 1.4 @@ -2,7 +2,7 @@ Name: php-spyc Version: 0.2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple php yaml class Group: Development/Libraries License: MIT @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/php/%{realname} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:38:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:38:22 +0000 (UTC) Subject: rpms/php-xmpphp/devel php-xmpphp.spec,1.4,1.5 Message-ID: <20090726183822.5567311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-xmpphp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3233 Modified Files: php-xmpphp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-xmpphp.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-xmpphp/devel/php-xmpphp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- php-xmpphp.spec 26 Feb 2009 22:45:33 -0000 1.4 +++ php-xmpphp.spec 26 Jul 2009 18:38:22 -0000 1.5 @@ -5,7 +5,7 @@ Name: php-%{realname} Version: 0.1 -Release: 0.5.%{relcand}_%{prerelease}%{?dist} +Release: 0.6.%{relcand}_%{prerelease}%{?dist} Summary: XMPPHP is the successor to Class.Jabber.PHP Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/php/%{realname}/tests/%{REALNAME}/*.php %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-0.6.rc1_r70 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-0.5.rc1_r70 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:38:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:38:08 +0000 (UTC) Subject: rpms/php-suhosin/devel php-suhosin.spec,1.5,1.6 Message-ID: <20090726183808.4822D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/php-suhosin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3026 Modified Files: php-suhosin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: php-suhosin.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-suhosin/devel/php-suhosin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- php-suhosin.spec 13 Jul 2009 17:39:34 -0000 1.5 +++ php-suhosin.spec 26 Jul 2009 18:38:08 -0000 1.6 @@ -4,7 +4,7 @@ Name: php-suhosin Version: 0.9.27 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Suhosin is an advanced protection system for PHP installations Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{php_extdir}/suhosin.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.27-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.9.27-3 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Sun Jul 26 18:38:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:38:38 +0000 (UTC) Subject: rpms/phpFlickr/devel phpFlickr.spec,1.1,1.2 Message-ID: <20090726183838.D503711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpFlickr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3411 Modified Files: phpFlickr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpFlickr.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpFlickr/devel/phpFlickr.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- phpFlickr.spec 11 Jul 2009 03:20:09 -0000 1.1 +++ phpFlickr.spec 26 Jul 2009 18:38:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: phpFlickr Version: 2.3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PHP client for the Flickr web service Group: Development/Libraries @@ -44,5 +44,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 David Nalley 2.3.0.1-1 - Initial RPM packaging From jkeating at fedoraproject.org Sun Jul 26 18:38:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:38:54 +0000 (UTC) Subject: rpms/phpMyAdmin/devel phpMyAdmin.spec,1.45,1.46 Message-ID: <20090726183854.9ED4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpMyAdmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3611 Modified Files: phpMyAdmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpMyAdmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpMyAdmin/devel/phpMyAdmin.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- phpMyAdmin.spec 30 Jun 2009 11:53:00 -0000 1.45 +++ phpMyAdmin.spec 26 Jul 2009 18:38:54 -0000 1.46 @@ -1,6 +1,6 @@ Name: phpMyAdmin Version: 3.2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Web based MySQL browser written in php Group: Applications/Internet @@ -54,6 +54,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Robert Scheck 3.2.0.1-1 - Upstream released 3.2.0.1 (#508879) From jkeating at fedoraproject.org Sun Jul 26 18:39:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:39:12 +0000 (UTC) Subject: rpms/phpPgAdmin/devel phpPgAdmin.spec,1.12,1.13 Message-ID: <20090726183912.0CD3311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpPgAdmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3850 Modified Files: phpPgAdmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpPgAdmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpPgAdmin/devel/phpPgAdmin.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- phpPgAdmin.spec 26 Feb 2009 22:46:32 -0000 1.12 +++ phpPgAdmin.spec 26 Jul 2009 18:39:11 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Web-based PostgreSQL administration Name: phpPgAdmin Version: 4.2.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and (LGPLv2+ or BSD) and ASL 2.0 and MIT Group: Applications/Databases URL: http://phppgadmin.sourceforge.net/ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_phppgadmindir}/conf/config.inc.php* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:39:27 +0000 (UTC) Subject: rpms/phpTodo/devel phpTodo.spec,1.2,1.3 Message-ID: <20090726183927.C686911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpTodo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4022 Modified Files: phpTodo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpTodo.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpTodo/devel/phpTodo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- phpTodo.spec 26 Feb 2009 22:47:32 -0000 1.2 +++ phpTodo.spec 26 Jul 2009 18:39:27 -0000 1.3 @@ -1,7 +1,7 @@ Summary: PHP todo list manager Name: phpTodo Version: 0.8.1 -Release: 0.9.beta%{?dist} +Release: 0.10.beta%{?dist} License: GPLv2+ URL: http://phptodo.godshell.com/ Group: Applications/Internet @@ -109,6 +109,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-0.10.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.1-0.9.beta - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:39:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:39:45 +0000 (UTC) Subject: rpms/phpldapadmin/devel phpldapadmin.spec,1.18,1.19 Message-ID: <20090726183945.8C1D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpldapadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4241 Modified Files: phpldapadmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpldapadmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpldapadmin/devel/phpldapadmin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- phpldapadmin.spec 9 Apr 2009 14:39:56 -0000 1.18 +++ phpldapadmin.spec 26 Jul 2009 18:39:45 -0000 1.19 @@ -1,7 +1,7 @@ Name: phpldapadmin Summary: Web-based tool for managing LDAP servers Version: 1.1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Internet License: GPLv2+ URL: http://phpldapadmin.sourceforge.net @@ -115,6 +115,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Dmitry Butskoy - 1.1.0.7-1 - update to 1.1.0.7 From jkeating at fedoraproject.org Sun Jul 26 18:40:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:40:00 +0000 (UTC) Subject: rpms/phplogcon/devel phplogcon.spec,1.2,1.3 Message-ID: <20090726184000.B236211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phplogcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4434 Modified Files: phplogcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phplogcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/phplogcon/devel/phplogcon.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- phplogcon.spec 26 Feb 2009 22:49:50 -0000 1.2 +++ phplogcon.spec 26 Jul 2009 18:40:00 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A syslog data viewer for the web Name: phplogcon Version: 2.1.6 -Release: 4.beta%{?dist} +Release: 5.beta%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://www.phplogcon.com/ @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.6-5.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.6-4.beta - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:40:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:40:16 +0000 (UTC) Subject: rpms/phpwapmail/devel phpwapmail.spec,1.2,1.3 Message-ID: <20090726184016.DFE9911C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/phpwapmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4618 Modified Files: phpwapmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: phpwapmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/phpwapmail/devel/phpwapmail.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- phpwapmail.spec 26 Feb 2009 22:51:02 -0000 1.2 +++ phpwapmail.spec 26 Jul 2009 18:40:16 -0000 1.3 @@ -1,7 +1,7 @@ Name: phpwapmail Summary: WAP-based e-mail client Version: 0.9.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Internet License: GPLv2+ URL: http://phpwapmail.sourceforge.net @@ -93,6 +93,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:41:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:41:11 +0000 (UTC) Subject: rpms/pic2aa/devel pic2aa.spec,1.3,1.4 Message-ID: <20090726184111.7B1E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pic2aa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5238 Modified Files: pic2aa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pic2aa.spec =================================================================== RCS file: /cvs/pkgs/rpms/pic2aa/devel/pic2aa.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pic2aa.spec 26 Feb 2009 22:53:15 -0000 1.3 +++ pic2aa.spec 26 Jul 2009 18:41:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: pic2aa Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Pic2AA is tool for converting jpeg/png to AA (Ascii Art) images Summary(pl): Pic2AA to narz?dzie do konwertowanie jpeg/png do AA (Ascii Art) obrazk?w Group: Applications/Multimedia @@ -77,6 +77,9 @@ fi %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:40:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:40:56 +0000 (UTC) Subject: rpms/pianobooster/devel pianobooster.spec,1.2,1.3 Message-ID: <20090726184056.B085B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pianobooster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5031 Modified Files: pianobooster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pianobooster.spec =================================================================== RCS file: /cvs/pkgs/rpms/pianobooster/devel/pianobooster.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pianobooster.spec 17 Apr 2009 18:37:08 -0000 1.2 +++ pianobooster.spec 26 Jul 2009 18:40:56 -0000 1.3 @@ -1,7 +1,7 @@ Name: pianobooster Summary: A MIDI file player that teaches you how to play the piano Version: 0.6.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Multimedia URL: http://pianobooster.sourceforge.net/ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Christian Krause - 0.6.2-4 - preserve timestamps of README.txt and license.txt From jkeating at fedoraproject.org Sun Jul 26 18:40:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:40:40 +0000 (UTC) Subject: rpms/physfs/devel physfs.spec,1.9,1.10 Message-ID: <20090726184040.1C3C611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/physfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4805 Modified Files: physfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: physfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/physfs/devel/physfs.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- physfs.spec 26 Feb 2009 22:52:14 -0000 1.9 +++ physfs.spec 26 Jul 2009 18:40:39 -0000 1.10 @@ -1,6 +1,6 @@ Name: physfs Version: 1.0.1 -Release: 10%{?dist} +Release: 11%{?dist} License: zlib Group: System Environment/Libraries Summary: Library to provide abstract access to various archives @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:41:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:41:25 +0000 (UTC) Subject: rpms/picard/devel picard.spec,1.16,1.17 Message-ID: <20090726184125.8B3A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/picard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5409 Modified Files: picard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: picard.spec =================================================================== RCS file: /cvs/pkgs/rpms/picard/devel/picard.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- picard.spec 26 Feb 2009 22:54:22 -0000 1.16 +++ picard.spec 26 Jul 2009 18:41:25 -0000 1.17 @@ -3,7 +3,7 @@ Name: picard Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MusicBrainz-based audio tagger Group: Applications/Multimedia @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/picard/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:41:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:41:40 +0000 (UTC) Subject: rpms/piccolo/devel piccolo.spec,1.5,1.6 Message-ID: <20090726184140.0B85711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/piccolo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5568 Modified Files: piccolo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: piccolo.spec =================================================================== RCS file: /cvs/pkgs/rpms/piccolo/devel/piccolo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- piccolo.spec 26 Feb 2009 22:55:27 -0000 1.5 +++ piccolo.spec 26 Jul 2009 18:41:39 -0000 1.6 @@ -36,7 +36,7 @@ Summary: Small fast XML parser Name: piccolo Version: 1.04 -Release: 4.3%{?dist} +Release: 5.3%{?dist} Epoch: 0 License: ASL 2.0 URL: http://piccolo.sourceforge.net/ @@ -143,6 +143,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.04-5.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.04-4.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:41:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:41:56 +0000 (UTC) Subject: rpms/picocom/devel picocom.spec,1.6,1.7 Message-ID: <20090726184156.09E1411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/picocom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5732 Modified Files: picocom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: picocom.spec =================================================================== RCS file: /cvs/pkgs/rpms/picocom/devel/picocom.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- picocom.spec 26 Feb 2009 22:56:31 -0000 1.6 +++ picocom.spec 26 Jul 2009 18:41:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: picocom Version: 1.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Minimal serial communications program Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:42:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:42:12 +0000 (UTC) Subject: rpms/picviz/devel picviz.spec,1.7,1.8 Message-ID: <20090726184212.7E85B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/picviz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5923 Modified Files: picviz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: picviz.spec =================================================================== RCS file: /cvs/pkgs/rpms/picviz/devel/picviz.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- picviz.spec 23 Jul 2009 13:47:13 -0000 1.7 +++ picviz.spec 26 Jul 2009 18:42:12 -0000 1.8 @@ -2,7 +2,7 @@ Name: picviz Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parallel coordinates plotter License: GPLv3+ @@ -185,6 +185,9 @@ rm -rf %{buildroot} %{_libdir}/libpicviz/libpicvizoutpngcairo.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Tomas Heinrich 0.6-1 - upgrade to 0.6 - upstream package has split into libpicviz, picviz-cli, picviz-gui, From jkeating at fedoraproject.org Sun Jul 26 18:42:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:42:31 +0000 (UTC) Subject: rpms/pida/devel pida.spec,1.6,1.7 Message-ID: <20090726184231.5842711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pida/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6120 Modified Files: pida.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pida.spec =================================================================== RCS file: /cvs/pkgs/rpms/pida/devel/pida.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pida.spec 26 Feb 2009 22:58:33 -0000 1.6 +++ pida.spec 26 Jul 2009 18:42:31 -0000 1.7 @@ -8,7 +8,7 @@ Summary: A Python IDE written in Python and GTK Name: pida Version: 0.5.1 -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: Development/Tools URL: http://pida.co.uk/ @@ -121,6 +121,9 @@ fi %{python_sitelib}/%{name}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:42:52 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.84,1.85 Message-ID: <20090726184252.41DCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6436 Modified Files: pidgin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- pidgin.spec 23 Jul 2009 02:33:50 -0000 1.84 +++ pidgin.spec 26 Jul 2009 18:42:52 -0000 1.85 @@ -77,7 +77,7 @@ Name: pidgin Version: 2.6.0 %define snapshot 20090721 -Release: 0.4.%{snapshot}%{?dist} +Release: 0.5.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -600,6 +600,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.0-0.5.20090721 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Warren Togami 2.6.0-0.4.20090721 - rebuild From jkeating at fedoraproject.org Sun Jul 26 18:43:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:43:08 +0000 (UTC) Subject: rpms/pidgin-gfire/devel pidgin-gfire.spec,1.2,1.3 Message-ID: <20090726184308.5A75211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-gfire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6639 Modified Files: pidgin-gfire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-gfire.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-gfire/devel/pidgin-gfire.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pidgin-gfire.spec 12 Jun 2009 21:10:06 -0000 1.2 +++ pidgin-gfire.spec 26 Jul 2009 18:43:08 -0000 1.3 @@ -2,7 +2,7 @@ Name: pidgin-gfire Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Xfire plugin for Pidgin Group: Applications/Communications @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_datadir}/purple/%{srcname}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Andreas Osowski - 0.8.2-1 - Updated to version 0.8.2 From jkeating at fedoraproject.org Sun Jul 26 18:43:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:43:22 +0000 (UTC) Subject: rpms/pidgin-guifications/devel pidgin-guifications.spec,1.8,1.9 Message-ID: <20090726184322.86C3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-guifications/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7152 Modified Files: pidgin-guifications.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-guifications.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-guifications/devel/pidgin-guifications.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pidgin-guifications.spec 26 Feb 2009 23:00:54 -0000 1.8 +++ pidgin-guifications.spec 26 Jul 2009 18:43:22 -0000 1.9 @@ -13,7 +13,7 @@ Summary: Guifications Plugin for Pidgin Name: pidgin-guifications Version: 2.16 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Internet Url: http://plugins.guifications.org/trac/wiki/Guifications @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/guifications %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From twaugh at fedoraproject.org Sun Jul 26 18:43:25 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Sun, 26 Jul 2009 18:43:25 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-525e996.patch, NONE, 1.1 system-config-printer.spec, 1.271, 1.272 system-config-printer-a05bd9c.patch, 1.1, NONE Message-ID: <20090726184325.2D07011C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7096 Modified Files: system-config-printer.spec Added Files: system-config-printer-525e996.patch Removed Files: system-config-printer-a05bd9c.patch Log Message: * Sun Jul 26 2009 Tim Waugh 1.1.10-4 - Split out D-Bus service for udev helper. system-config-printer-525e996.patch: Makefile.am | 73 + aclocal.m4 | 156 +++ configure.in | 3 cupshelpers/ppds.py | 25 system-config-printer.py | 2 udev/70-printers.rules | 6 udev/com.redhat.PrinterConfig.conf | 16 udev/com.redhat.PrinterConfig.service.in | 4 udev/com.redhat.PrinterConfig.xml | 71 + udev/printer-config-daemon.c | 1248 +++++++++++++++++++++++++++++++ udev/printer-config-main.c | 159 +++ udev/printer-config.h | 76 + udev/udev-add-printer | 87 +- udev/udev-usb-printer.c | 454 +++++++++++ 14 files changed, 2325 insertions(+), 55 deletions(-) --- NEW FILE system-config-printer-525e996.patch --- diff -up system-config-printer-1.1.10/aclocal.m4.525e996 system-config-printer-1.1.10/aclocal.m4 --- system-config-printer-1.1.10/aclocal.m4.525e996 2009-07-22 13:54:02.000000000 +0100 +++ system-config-printer-1.1.10/aclocal.m4 2009-07-26 19:01:45.683356020 +0100 @@ -1867,6 +1867,162 @@ AC_DEFUN([AM_NLS], AC_SUBST(USE_NLS) ]) +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# +# Copyright ? 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi + +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# +# Similar to PKG_CHECK_MODULES, make sure that the first instance of +# this or PKG_CHECK_MODULES is called, or make sure to call +# PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_ifval([$2], [$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + ifelse([$4], , [AC_MSG_ERROR(dnl +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT +])], + [AC_MSG_RESULT([no]) + $4]) +elif test $pkg_failed = untried; then + ifelse([$4], , [AC_MSG_FAILURE(dnl +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .])], + [$4]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + ifelse([$3], , :, [$3]) +fi[]dnl +])# PKG_CHECK_MODULES + # po.m4 serial 15 (gettext-0.17) dnl Copyright (C) 1995-2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation diff -up system-config-printer-1.1.10/configure.in.525e996 system-config-printer-1.1.10/configure.in --- system-config-printer-1.1.10/configure.in.525e996 2009-07-22 13:53:25.000000000 +0100 +++ system-config-printer-1.1.10/configure.in 2009-07-26 19:01:45.685355364 +0100 @@ -40,6 +40,9 @@ AC_ARG_WITH(udev-rules, AM_CONDITIONAL([UDEV_RULES], [test x$with_udev_rules != xno]) if test x$with_udev_rules != xno; then + PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.76]) + AC_SUBST(DBUS_GLIB_CFLAGS) + AC_SUBST(DBUS_GLIB_LIBS) AM_PROG_CC_C_O fi diff -up system-config-printer-1.1.10/cupshelpers/ppds.py.525e996 system-config-printer-1.1.10/cupshelpers/ppds.py --- system-config-printer-1.1.10/cupshelpers/ppds.py.525e996 2009-07-22 13:22:49.000000000 +0100 +++ system-config-printer-1.1.10/cupshelpers/ppds.py 2009-07-26 19:01:45.686355890 +0100 @@ -159,29 +159,32 @@ def ppdMakeModelSplit (ppd_make_and_mode # HP PPDs give NickNames like: # *NickName: "HP LaserJet 4 Plus v2013.111 Postscript (recommended)" # Find the version number. - v = model.find (" v") + modell = model.lower () + v = modell.find (" v") if v != -1 and (model[v + 2].isdigit () or (model[v + 2] == '.' and model[v + 3].isdigit ())): # Truncate at that point. model = model[:v] + modell = modell[:v] for suffix in [" hpijs", - " Foomatic/", + " foomatic/", [...2169 lines suppressed...] + + syslog (LOG_DEBUG, "Device vendor/product is %04zX:%04zX", + idVendor, idProduct); + + usb_init (); + usb_find_busses (); + usb_find_devices (); + for (bus = usb_get_busses (); bus && !got; bus = bus->next) + { + struct usb_device *device; + for (device = bus->devices; device && !got; device = device->next) + { + struct usb_config_descriptor *confptr; + if (device->descriptor.idVendor != idVendor || + device->descriptor.idProduct != idProduct || + !device->config) + continue; + + conf = 0; + for (confptr = device->config; + conf < device->descriptor.bNumConfigurations && !got; + conf++, confptr++) + { + struct usb_interface *ifaceptr; + iface = 0; + for (ifaceptr = confptr->interface; + iface < confptr->bNumInterfaces && !got; + iface++, ifaceptr++) + { + struct usb_interface_descriptor *altptr; + int altset = 0; + for (altptr = ifaceptr->altsetting; + altset < ifaceptr->num_altsetting && !got; + altset++, altptr++) + { + if (altptr->bInterfaceClass == USB_CLASS_PRINTER && + altptr->bInterfaceSubClass == 1) + { + int n; + handle = usb_open (device); + if (!handle) + { + syslog (LOG_DEBUG, "failed to open device"); + continue; + } + + n = altptr->bInterfaceNumber; + if (usb_claim_interface (handle, n) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed to claim interface"); + continue; + } + + if (n != 0 && usb_claim_interface (handle, 0) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed to claim interface 0"); + continue; + } + + n = altptr->bAlternateSetting; + if (usb_set_altinterface (handle, n) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed set altinterface"); + continue; + } + + memset (ieee1284_id, '\0', sizeof (ieee1284_id)); + if (usb_control_msg (handle, + USB_TYPE_CLASS | + USB_ENDPOINT_IN | + USB_RECIP_INTERFACE, + 0, conf, iface, + ieee1284_id, + sizeof (ieee1284_id), + 5000) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_ERR, "Failed to fetch Device ID"); + continue; + } + + got = 1; + usb_close (handle); + break; + } + } + } + } + } + } + + got_deviceid: + if (got) + { + if (!device_id) + device_id = ieee1284_id + 2; + parse_device_id (device_id, id); + } + + udev_device_unref (dev); + udev_unref (udev); + return usb_device_devpath; +} + +static int +do_add (DBusGProxy *proxy, const char *devpath) +{ + GError *error = NULL; + struct device_id id; + char *usb_device_devpath; + char usbserial[256]; + + syslog (LOG_DEBUG, "add %s", devpath); + + usb_device_devpath = device_id_from_devpath (devpath, &id, + usbserial, sizeof (usbserial)); + + if (!id.mfg || !id.mdl) + { + syslog (LOG_ERR, "invalid or missing IEEE 1284 Device ID%s%s", + id.full_device_id ? " " : "", + id.full_device_id ? id.full_device_id : ""); + exit (1); + } + + syslog (LOG_DEBUG, "MFG:%s MDL:%s SERN:%s serial:%s", id.mfg, id.mdl, + id.sern ? id.sern : "-", usbserial); + + com_redhat_PrinterConfig_usb_printer_add (proxy, + usb_device_devpath, + id.full_device_id, + &error); + free (usb_device_devpath); + free_device_id (&id); + return 0; +} + +static int +do_remove (DBusGProxy *proxy, const char *devpath) +{ + GError *error = NULL; + syslog (LOG_DEBUG, "remove %s", devpath); + + com_redhat_PrinterConfig_usb_printer_remove (proxy, + devpath, + &error); + return 0; +} + +int +main (int argc, char **argv) +{ + DBusGConnection *connection; + DBusGProxy *proxy; + GError *error = NULL; + int add; + + g_type_init (); + + if (argc != 3 || + !((add = !strcmp (argv[1], "add")) || + !strcmp (argv[1], "remove"))) + { + fprintf (stderr, + "Syntax: %s add {USB device path}\n" + " %s remove {USB device path}\n", + argv[0], argv[0]); + return 1; + } + + openlog ("udev-usb-printer", 0, LOG_LPR); + + connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error); + if (connection == NULL) + { + syslog (LOG_ERR, "unable to connect to D-Bus: %s", error->message); + g_error_free (error); + exit (1); + } + + proxy = dbus_g_proxy_new_for_name (connection, + "com.redhat.PrinterConfig", + "/com/redhat/PrinterConfig", + "com.redhat.PrinterConfig"); + + if (add) + do_add (proxy, argv[2]); + else + do_remove (proxy, argv[2]); + + g_object_unref (proxy); + return 0; +} Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.271 retrieving revision 1.272 diff -u -p -r1.271 -r1.272 --- system-config-printer.spec 24 Jul 2009 09:03:38 -0000 1.271 +++ system-config-printer.spec 26 Jul 2009 18:43:24 -0000 1.272 @@ -7,14 +7,14 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 -Patch1: system-config-printer-a05bd9c.patch +Patch1: system-config-printer-525e996.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -25,6 +25,9 @@ BuildRequires: intltool BuildRequires: libusb-devel, libudev-devel BuildRequires: xmlto BuildRequires: epydoc + +BuildRequires: automake, autoconf + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: pygtk2 >= 2.4.0, pygtk2-libglade @@ -76,7 +79,9 @@ printers. %prep %setup -q -a 1 -a 2 -%patch1 -p1 -b .a05bd9c +%patch1 -p1 -b .525e996 +automake --copy --add-missing +autoconf %build %configure --with-udev-rules @@ -127,7 +132,12 @@ rm -rf %buildroot %files udev %defattr(-,root,root,-) %{_sysconfdir}/udev/rules.d/*.rules -/lib/udev/* +%{_sysconfdir}/dbus-1/system.d/*.conf +%{_libexecdir}/printer-config-daemon +%{_libexecdir}/udev-add-printer +%{_datadir}/dbus-1/interfaces/*.xml +%{_datadir}/dbus-1/system-services/*.service +/lib/udev/udev-usb-printer %files %defattr(-,root,root,-) @@ -184,6 +194,9 @@ rm -rf %buildroot exit 0 %changelog +* Sun Jul 26 2009 Tim Waugh 1.1.10-4 +- Split out D-Bus service for udev helper. + * Fri Jul 24 2009 Tim Waugh 1.1.10-3 - Removed gnome-packagekit dependency. The presence of gpk-install-package-name is detected at run-time, and the program --- system-config-printer-a05bd9c.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 18:43:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:43:39 +0000 (UTC) Subject: rpms/pidgin-knotify/devel pidgin-knotify.spec,1.3,1.4 Message-ID: <20090726184339.2BEE411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-knotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7559 Modified Files: pidgin-knotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-knotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-knotify/devel/pidgin-knotify.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pidgin-knotify.spec 26 Feb 2009 23:01:57 -0000 1.3 +++ pidgin-knotify.spec 26 Jul 2009 18:43:38 -0000 1.4 @@ -2,7 +2,7 @@ Name: pidgin-knotify Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: KNotify plugin for Pidgin Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:43:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:43:54 +0000 (UTC) Subject: rpms/pidgin-latex/devel pidgin-latex.spec,1.3,1.4 Message-ID: <20090726184354.7C4D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-latex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7828 Modified Files: pidgin-latex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-latex.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-latex/devel/pidgin-latex.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pidgin-latex.spec 16 Jul 2009 14:51:20 -0000 1.3 +++ pidgin-latex.spec 26 Jul 2009 18:43:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: pidgin-latex Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Use LaTeX formulas in your pidgin conversations Group: Applications/Internet License: GPLv2+ @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_libdir}/pidgin/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 1.3.2-1 - Update to 1.3.2. From jkeating at fedoraproject.org Sun Jul 26 18:44:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:44:10 +0000 (UTC) Subject: rpms/pidgin-libnotify/devel pidgin-libnotify.spec,1.8,1.9 Message-ID: <20090726184410.AD5ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-libnotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8025 Modified Files: pidgin-libnotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-libnotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-libnotify/devel/pidgin-libnotify.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pidgin-libnotify.spec 26 Feb 2009 23:03:05 -0000 1.8 +++ pidgin-libnotify.spec 26 Jul 2009 18:44:10 -0000 1.9 @@ -2,7 +2,7 @@ Name: pidgin-libnotify Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libnotify Pidgin plugin Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:44:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:44:24 +0000 (UTC) Subject: rpms/pidgin-musictracker/devel pidgin-musictracker.spec,1.1,1.2 Message-ID: <20090726184424.C1FCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-musictracker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8236 Modified Files: pidgin-musictracker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-musictracker.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-musictracker/devel/pidgin-musictracker.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pidgin-musictracker.spec 10 Apr 2009 06:52:40 -0000 1.1 +++ pidgin-musictracker.spec 26 Jul 2009 18:44:24 -0000 1.2 @@ -2,7 +2,7 @@ Name: pidgin-musictracker Version: 0.4.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Musictracker plugin for Pidgin Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pidgin/musictracker.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 9 2009 Jan Klepek 0.4.16-1 - combined spec file from all below people and builded package for 0.4.16 version From jkeating at fedoraproject.org Sun Jul 26 18:44:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:44:40 +0000 (UTC) Subject: rpms/pidgin-otr/devel pidgin-otr.spec,1.4,1.5 Message-ID: <20090726184440.E5C9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-otr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8428 Modified Files: pidgin-otr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-otr.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-otr/devel/pidgin-otr.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pidgin-otr.spec 26 Feb 2009 23:04:11 -0000 1.4 +++ pidgin-otr.spec 26 Jul 2009 18:44:40 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Off-The-Record Messaging plugin for Pidgin Name: pidgin-otr Version: 3.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://otr.cypherpunks.ca/%{name}-%{version}.tar.gz Url: http://otr.cypherpunks.ca/ License: GPLv2 @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pidgin/pidgin-otr.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:44:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:44:56 +0000 (UTC) Subject: rpms/pidgin-privacy-please/devel pidgin-privacy-please.spec, 1.6, 1.7 Message-ID: <20090726184456.754C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-privacy-please/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8606 Modified Files: pidgin-privacy-please.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-privacy-please.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-privacy-please/devel/pidgin-privacy-please.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pidgin-privacy-please.spec 24 Jul 2009 05:46:34 -0000 1.6 +++ pidgin-privacy-please.spec 26 Jul 2009 18:44:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: pidgin-privacy-please Version: 0.5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Security and Privacy plugin for Pidgin Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 24 2009 Guillaume Kulakowski - 0.5.4-1 - Update to 0.5.4 From jkeating at fedoraproject.org Sun Jul 26 18:45:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:45:14 +0000 (UTC) Subject: rpms/pidgin-rhythmbox/devel pidgin-rhythmbox.spec,1.4,1.5 Message-ID: <20090726184514.34F0211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pidgin-rhythmbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8819 Modified Files: pidgin-rhythmbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pidgin-rhythmbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/pidgin-rhythmbox/devel/pidgin-rhythmbox.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pidgin-rhythmbox.spec 26 Feb 2009 23:24:20 -0000 1.4 +++ pidgin-rhythmbox.spec 26 Jul 2009 18:45:13 -0000 1.5 @@ -1,6 +1,6 @@ Name: pidgin-rhythmbox Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Rhythmbox plugin for Pidgin Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:45:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:45:30 +0000 (UTC) Subject: rpms/piggyback/devel piggyback.spec,1.2,1.3 Message-ID: <20090726184530.CFB9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/piggyback/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9031 Modified Files: piggyback.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: piggyback.spec =================================================================== RCS file: /cvs/pkgs/rpms/piggyback/devel/piggyback.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- piggyback.spec 26 Feb 2009 23:38:47 -0000 1.2 +++ piggyback.spec 26 Jul 2009 18:45:30 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Utility for making net-bootable sparc kernel image files Name: piggyback Version: 2.6.26 -Release: 3%{?dist} +Release: 4%{?dist} ExclusiveArch: sparcv9 License: GPLv2+ Group: System Environment/Kernel @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/piggyback* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.6.26-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:45:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:45:47 +0000 (UTC) Subject: rpms/pigment/devel pigment.spec,1.24,1.25 Message-ID: <20090726184547.00EC411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pigment/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9224 Modified Files: pigment.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pigment.spec =================================================================== RCS file: /cvs/pkgs/rpms/pigment/devel/pigment.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- pigment.spec 31 May 2009 11:08:04 -0000 1.24 +++ pigment.spec 26 Jul 2009 18:45:46 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Media Center Toolkit Name: pigment Version: 0.3.17 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://code.fluendo.com/pigment/trac/ @@ -103,6 +103,9 @@ find %{buildroot} -name '*.la' -exec rm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Matthias Saou 0.3.17-2 - Update to 0.3.17. - Include install patch to avoid install stopping on duplicate source. From jkeating at fedoraproject.org Sun Jul 26 18:46:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:46:04 +0000 (UTC) Subject: rpms/pigment-python/devel pigment-python.spec,1.15,1.16 Message-ID: <20090726184604.3B88811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pigment-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9416 Modified Files: pigment-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pigment-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/pigment-python/devel/pigment-python.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pigment-python.spec 15 Jun 2009 08:51:10 -0000 1.15 +++ pigment-python.spec 26 Jul 2009 18:46:03 -0000 1.16 @@ -4,7 +4,7 @@ Summary: Python bindings to the Pigment Media Center Toolkit Name: pigment-python Version: 0.3.12 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: https://code.fluendo.com/pigment/trac/ @@ -66,6 +66,9 @@ find %{buildroot} -name '*.la' -exec rm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Matthias Saou 0.3.12-1 - Update to 0.3.12. From jkeating at fedoraproject.org Sun Jul 26 18:46:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:46:22 +0000 (UTC) Subject: rpms/pikdev/devel pikdev.spec,1.13,1.14 Message-ID: <20090726184622.125D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pikdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9622 Modified Files: pikdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pikdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/pikdev/devel/pikdev.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pikdev.spec 27 Feb 2009 00:25:32 -0000 1.13 +++ pikdev.spec 26 Jul 2009 18:46:21 -0000 1.14 @@ -1,6 +1,6 @@ Name: pikdev Version: 0.9.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: IDE for development of PICmicro based application (under Linux/KDE) Summary(fr): EDI pour le d?veloppement d'applications ? base de microcontr?leurs PIC @@ -104,6 +104,9 @@ desktop-file-install --vendor fedora \ %{_datadir}/icons/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:46:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:46:38 +0000 (UTC) Subject: rpms/piklab/devel piklab.spec,1.24,1.25 Message-ID: <20090726184638.76B1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/piklab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9848 Modified Files: piklab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: piklab.spec =================================================================== RCS file: /cvs/pkgs/rpms/piklab/devel/piklab.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- piklab.spec 27 Feb 2009 00:26:36 -0000 1.24 +++ piklab.spec 26 Jul 2009 18:46:38 -0000 1.25 @@ -2,7 +2,7 @@ Name: piklab Version: 0.15.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Development environment for applications based on PIC & dsPIC microcontrollers Summary(fr):IDE pour applications ? base de microcontr?leurs PIC et de dsPIC @@ -135,6 +135,9 @@ update-desktop-database %{_datadir}/appl %config(noreplace) %{_sysconfdir}/security/console.perms.d/*.perms %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:47:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:47:32 +0000 (UTC) Subject: rpms/pikloops/devel pikloops.spec,1.11,1.12 Message-ID: <20090726184732.C1BF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pikloops/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10297 Modified Files: pikloops.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pikloops.spec =================================================================== RCS file: /cvs/pkgs/rpms/pikloops/devel/pikloops.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pikloops.spec 27 Feb 2009 00:27:35 -0000 1.11 +++ pikloops.spec 26 Jul 2009 18:47:32 -0000 1.12 @@ -1,6 +1,6 @@ Name: pikloops Version: 0.2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Code generator for PIC delays Summary(fr): G?n?rateur de code de temporisation pour PIC @@ -81,6 +81,9 @@ fi %{_datadir}/icons/crystalsvg/*/apps/%{name}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:47:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:47:50 +0000 (UTC) Subject: rpms/pilot-link/devel pilot-link.spec,1.86,1.87 Message-ID: <20090726184750.450BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pilot-link/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10492 Modified Files: pilot-link.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pilot-link.spec =================================================================== RCS file: /cvs/pkgs/rpms/pilot-link/devel/pilot-link.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- pilot-link.spec 28 May 2009 13:09:51 -0000 1.86 +++ pilot-link.spec 26 Jul 2009 18:47:50 -0000 1.87 @@ -2,7 +2,7 @@ Name: pilot-link Version: 0.12.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 2 License: GPLv2 and GPLv2+ and LGPLv2+ and TCL Group: Applications/Communications @@ -179,6 +179,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:0.12.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Ivana Varekova - 2:0.12.4-1 - update to 0.12.4 - remove obsolete patches From jkeating at fedoraproject.org Sun Jul 26 18:48:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:48:06 +0000 (UTC) Subject: rpms/pinball/devel pinball.spec,1.10,1.11 Message-ID: <20090726184807.0816A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pinball/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10711 Modified Files: pinball.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pinball.spec =================================================================== RCS file: /cvs/pkgs/rpms/pinball/devel/pinball.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pinball.spec 2 Mar 2009 17:51:57 -0000 1.10 +++ pinball.spec 26 Jul 2009 18:48:06 -0000 1.11 @@ -1,6 +1,6 @@ Name: pinball Version: 0.3.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Emilia arcade game Group: Amusements/Games License: GPL+ @@ -95,6 +95,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Jon Ciesla - 0.3.1-14 - Patch for strict prototypes. From jkeating at fedoraproject.org Sun Jul 26 18:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:48:20 +0000 (UTC) Subject: rpms/pinentry/devel pinentry.spec,1.24,1.25 Message-ID: <20090726184820.67EC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pinentry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10898 Modified Files: pinentry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pinentry.spec =================================================================== RCS file: /cvs/pkgs/rpms/pinentry/devel/pinentry.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- pinentry.spec 23 Jun 2009 15:28:41 -0000 1.24 +++ pinentry.spec 26 Jul 2009 18:48:20 -0000 1.25 @@ -7,7 +7,7 @@ Name: pinentry Version: 0.7.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of simple PIN or passphrase entry dialogs Group: Applications/System @@ -172,6 +172,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Rex Dieter - 0.7.6-1 - pinentry-0.7.6 - -qt switched qt4 version, where applicable (f9+, rhel6+) From jkeating at fedoraproject.org Sun Jul 26 18:48:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:48:34 +0000 (UTC) Subject: rpms/pinfo/devel pinfo.spec,1.36,1.37 Message-ID: <20090726184834.A5C9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11059 Modified Files: pinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/pinfo/devel/pinfo.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- pinfo.spec 27 Feb 2009 00:31:46 -0000 1.36 +++ pinfo.spec 26 Jul 2009 18:48:34 -0000 1.37 @@ -1,7 +1,7 @@ Summary: An info file viewer Name: pinfo Version: 0.6.9 -Release: 9%{?dist} +Release: 10%{?dist} Group: System Environment/Base License: GPLv2 URL: http://pinfo.alioth.debian.org @@ -74,6 +74,9 @@ fi rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.9-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.9-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:48:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:48:50 +0000 (UTC) Subject: rpms/pingus/devel pingus.spec,1.15,1.16 Message-ID: <20090726184850.DFBA411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pingus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11230 Modified Files: pingus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pingus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pingus/devel/pingus.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pingus.spec 18 May 2009 08:40:55 -0000 1.15 +++ pingus.spec 26 Jul 2009 18:48:50 -0000 1.16 @@ -1,6 +1,6 @@ Name: pingus Version: 0.7.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Guide the penguins safely home before they drop of the cliff Group: Amusements/Games License: GPLv2+ @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 0.7.2-7 - Update description for new trademark guidelines From jkeating at fedoraproject.org Sun Jul 26 18:49:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:49:04 +0000 (UTC) Subject: rpms/pinot/devel pinot.spec,1.43,1.44 Message-ID: <20090726184904.AC73211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pinot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11384 Modified Files: pinot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pinot.spec =================================================================== RCS file: /cvs/pkgs/rpms/pinot/devel/pinot.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- pinot.spec 28 Jun 2009 11:16:33 -0000 1.43 +++ pinot.spec 26 Jul 2009 18:49:03 -0000 1.44 @@ -1,6 +1,6 @@ Name: pinot Version: 0.94 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Personal search and metasearch for the Desktop Group: User Interface/Desktops @@ -128,6 +128,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.94-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Adel Gadllah 0.94-1 - Update to 0.94 - Drop gmime patch From jkeating at fedoraproject.org Sun Jul 26 18:49:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:49:18 +0000 (UTC) Subject: rpms/pioneers/devel pioneers.spec,1.7,1.8 Message-ID: <20090726184918.7B0AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pioneers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11582 Modified Files: pioneers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pioneers.spec =================================================================== RCS file: /cvs/pkgs/rpms/pioneers/devel/pioneers.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pioneers.spec 27 Feb 2009 00:35:02 -0000 1.7 +++ pioneers.spec 26 Jul 2009 18:49:18 -0000 1.8 @@ -1,6 +1,6 @@ Name: pioneers Version: 0.12.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Turnbased board strategy game (colonize an island) Group: Amusements/Games License: GPLv2+ @@ -109,6 +109,9 @@ scrollkeeper-update -q || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:49:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:49:32 +0000 (UTC) Subject: rpms/pipenightdreams/devel pipenightdreams.spec,1.9,1.10 Message-ID: <20090726184932.BEAF411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pipenightdreams/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11766 Modified Files: pipenightdreams.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pipenightdreams.spec =================================================================== RCS file: /cvs/pkgs/rpms/pipenightdreams/devel/pipenightdreams.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pipenightdreams.spec 27 Feb 2009 00:36:05 -0000 1.9 +++ pipenightdreams.spec 26 Jul 2009 18:49:32 -0000 1.10 @@ -1,6 +1,6 @@ Name: pipenightdreams Version: 0.10.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Connect the waterpipes to create a proper pipeline Group: Amusements/Games License: GPLv2+ @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:49:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:49:48 +0000 (UTC) Subject: rpms/pipepanic/devel pipepanic.spec,1.5,1.6 Message-ID: <20090726184948.6B79D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pipepanic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11947 Modified Files: pipepanic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pipepanic.spec =================================================================== RCS file: /cvs/pkgs/rpms/pipepanic/devel/pipepanic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pipepanic.spec 27 Feb 2009 00:37:02 -0000 1.5 +++ pipepanic.spec 26 Jul 2009 18:49:48 -0000 1.6 @@ -1,6 +1,6 @@ Name: pipepanic Version: 0.1.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A pipe connecting game Group: Amusements/Games @@ -103,6 +103,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:50:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:50:03 +0000 (UTC) Subject: rpms/pipviewer/devel pipviewer.spec,1.5,1.6 Message-ID: <20090726185003.2237911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pipviewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12114 Modified Files: pipviewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pipviewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pipviewer/devel/pipviewer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pipviewer.spec 27 Feb 2009 23:14:13 -0000 1.5 +++ pipviewer.spec 26 Jul 2009 18:50:02 -0000 1.6 @@ -2,7 +2,7 @@ Name: pipviewer Version: 0.3.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Visualizer for multiple alignments of genomic sequences Group: Applications/Engineering @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Fabian Affolter - 0.3.9-5 - Merge Release 4 and #481508 From jkeating at fedoraproject.org Sun Jul 26 18:50:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:50:19 +0000 (UTC) Subject: rpms/pisg/devel pisg.spec,1.2,1.3 Message-ID: <20090726185019.09E3311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pisg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12312 Modified Files: pisg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pisg.spec =================================================================== RCS file: /cvs/pkgs/rpms/pisg/devel/pisg.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pisg.spec 27 Feb 2009 00:39:01 -0000 1.2 +++ pisg.spec 26 Jul 2009 18:50:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: pisg Version: 0.72 -Release: 4%{?dist} +Release: 5%{?dist} Summary: IRC Statistics generator Group: Applications/Internet @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace)%{_sysconfdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.72-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.72-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:50:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:50:37 +0000 (UTC) Subject: rpms/pitivi/devel pitivi.spec,1.35,1.36 Message-ID: <20090726185037.B573711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pitivi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12486 Modified Files: pitivi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pitivi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pitivi/devel/pitivi.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- pitivi.spec 28 May 2009 14:18:18 -0000 1.35 +++ pitivi.spec 26 Jul 2009 18:50:37 -0000 1.36 @@ -2,7 +2,7 @@ %define minor 1 Name: pitivi Version: %{major}.%{minor} -Release: 1.1%{?dist} +Release: 2.1%{?dist} Summary: Non-linear video editor Group: Applications/Multimedia @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_datadir}/mime/packages/pitivi.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Jeffrey C. Ollie - 0.13.1-1 - 0.13.1 Release "L'Aquila Immota Manet : The eagle remains unmoved" - ------------------------------------------------------------------ From jkeating at fedoraproject.org Sun Jul 26 18:50:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:50:54 +0000 (UTC) Subject: rpms/pixman/devel pixman.spec,1.39,1.40 Message-ID: <20090726185054.98D4F11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pixman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12665 Modified Files: pixman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pixman.spec =================================================================== RCS file: /cvs/pkgs/rpms/pixman/devel/pixman.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- pixman.spec 21 Jul 2009 11:36:10 -0000 1.39 +++ pixman.spec 26 Jul 2009 18:50:54 -0000 1.40 @@ -3,7 +3,7 @@ Name: pixman Version: 0.15.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pixel manipulation library Group: System Environment/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pixman-1.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 21 2009 Soren Sandmann 0.15.18-1 - pixman 0.15.18 From jkeating at fedoraproject.org Sun Jul 26 18:51:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:51:08 +0000 (UTC) Subject: rpms/pkcs11-helper/devel pkcs11-helper.spec,1.1,1.2 Message-ID: <20090726185108.A802C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pkcs11-helper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12866 Modified Files: pkcs11-helper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pkcs11-helper.spec =================================================================== RCS file: /cvs/pkgs/rpms/pkcs11-helper/devel/pkcs11-helper.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pkcs11-helper.spec 12 Jul 2009 21:00:38 -0000 1.1 +++ pkcs11-helper.spec 26 Jul 2009 18:51:08 -0000 1.2 @@ -1,6 +1,6 @@ Name: pkcs11-helper Version: 1.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library for using PKCS#11 providers Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Kalev Lember - 1.07-2 - Make devel package depend on automake for /usr/share/aclocal From pkgdb at fedoraproject.org Sun Jul 26 18:51:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:51:15 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090726185116.2286A10F890@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From jkeating at fedoraproject.org Sun Jul 26 18:51:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:51:21 +0000 (UTC) Subject: rpms/pkgconfig/devel pkgconfig.spec,1.53,1.54 Message-ID: <20090726185121.60B1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pkgconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13014 Modified Files: pkgconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pkgconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/pkgconfig/devel/pkgconfig.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- pkgconfig.spec 27 Feb 2009 00:41:47 -0000 1.53 +++ pkgconfig.spec 26 Jul 2009 18:51:21 -0000 1.54 @@ -1,7 +1,7 @@ Summary: A tool for determining compilation options Name: pkgconfig Version: 0.23 -Release: 8%{?dist} +Release: 9%{?dist} Epoch: 1 License: GPLv2+ URL: http://pkgconfig.freedesktop.org @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.23-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.23-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:51:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:51:22 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090726185122.B074010F899@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From jkeating at fedoraproject.org Sun Jul 26 18:51:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:51:38 +0000 (UTC) Subject: rpms/pl/devel pl.spec,1.61,1.62 Message-ID: <20090726185138.4C24411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13167 Modified Files: pl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pl/devel/pl.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- pl.spec 7 Jul 2009 15:16:56 -0000 1.61 +++ pl.spec 26 Jul 2009 18:51:37 -0000 1.62 @@ -3,7 +3,7 @@ Name: pl Version: 5.7.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SWI-Prolog - Edinburgh compatible Prolog compiler @@ -244,6 +244,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.7.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Mary Ellen Foster - 5.7.11-2 - Really fix issue with compiling "maildrop" packages From jkeating at fedoraproject.org Sun Jul 26 18:51:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:51:53 +0000 (UTC) Subject: rpms/plague/devel plague.spec,1.47,1.48 Message-ID: <20090726185153.D6D6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plague/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13359 Modified Files: plague.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plague.spec =================================================================== RCS file: /cvs/pkgs/rpms/plague/devel/plague.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- plague.spec 17 Jul 2009 13:43:11 -0000 1.47 +++ plague.spec 26 Jul 2009 18:51:53 -0000 1.48 @@ -3,7 +3,7 @@ BuildArch: noarch Summary: Distributed build system for RPMs Name: plague Version: 0.4.5.7 -Release: 5.20090612cvs%{?dist} +Release: 6.20090612cvs%{?dist} License: GPLv2+ Group: Development/Tools #Source: http://fedoraproject.org/projects/plague/releases/%{name}-%{version}.tar.bz2 @@ -169,6 +169,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.5.7-6.20090612cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Michael Schwendt - 0.4.5.7-5.20090612cvs - patch with fix from cvs (SSLConnection.py shutdown) From pkgdb at fedoraproject.org Sun Jul 26 18:52:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:52:13 +0000 Subject: [pkgdb] e_dbus ownership updated Message-ID: <20090726185213.F18B110F889@bastion2.fedora.phx.redhat.com> Package e_dbus in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/e_dbus From jkeating at fedoraproject.org Sun Jul 26 18:52:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:52:16 +0000 (UTC) Subject: rpms/planet/devel planet.spec,1.12,1.13 Message-ID: <20090726185216.B0F5311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/planet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13606 Modified Files: planet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: planet.spec =================================================================== RCS file: /cvs/pkgs/rpms/planet/devel/planet.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- planet.spec 27 Feb 2009 00:43:46 -0000 1.12 +++ planet.spec 26 Jul 2009 18:52:16 -0000 1.13 @@ -2,7 +2,7 @@ Name: planet Version: 2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Flexible RDF/RSS/Atom feed aggregator Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:52:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:52:34 +0000 (UTC) Subject: rpms/planets/devel planets.spec,1.4,1.5 Message-ID: <20090726185234.17C1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/planets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13854 Modified Files: planets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: planets.spec =================================================================== RCS file: /cvs/pkgs/rpms/planets/devel/planets.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- planets.spec 20 May 2009 20:24:54 -0000 1.4 +++ planets.spec 26 Jul 2009 18:52:33 -0000 1.5 @@ -1,7 +1,7 @@ %define debug_package %{nil} Name: planets Version: 0.1.13 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A celestial simulator Group: Amusements/Games @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/planets.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Jon Ciesla - 0.1.13-4 - Disabled debuginfo. From pkgdb at fedoraproject.org Sun Jul 26 18:52:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:52:43 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090726185243.922BA10F889@bastion2.fedora.phx.redhat.com> Package ecore in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From jkeating at fedoraproject.org Sun Jul 26 18:52:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:52:50 +0000 (UTC) Subject: rpms/planner/devel planner.spec,1.63,1.64 Message-ID: <20090726185250.28BCB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/planner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14051 Modified Files: planner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: planner.spec =================================================================== RCS file: /cvs/pkgs/rpms/planner/devel/planner.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- planner.spec 17 Apr 2009 14:31:46 -0000 1.63 +++ planner.spec 26 Jul 2009 18:52:50 -0000 1.64 @@ -1,7 +1,7 @@ Summary: A graphical project management tool Name: planner Version: 0.14.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Productivity URL: http://live.gnome.org/Planner @@ -142,6 +142,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Caol?n McNamara - 0.14.4-1 - next release, drop patches From pkgdb at fedoraproject.org Sun Jul 26 18:52:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:52:51 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090726185251.CA43F10F897@bastion2.fedora.phx.redhat.com> Package ecore in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From pkgdb at fedoraproject.org Sun Jul 26 18:52:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:52:54 +0000 Subject: [pkgdb] ecore ownership updated Message-ID: <20090726185254.E360C10F89A@bastion2.fedora.phx.redhat.com> Package ecore in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ecore From jkeating at fedoraproject.org Sun Jul 26 18:53:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:53:13 +0000 (UTC) Subject: rpms/player/devel player.spec,1.8,1.9 Message-ID: <20090726185313.E165C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/player/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14287 Modified Files: player.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: player.spec =================================================================== RCS file: /cvs/pkgs/rpms/player/devel/player.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- player.spec 26 May 2009 14:29:35 -0000 1.8 +++ player.spec 26 Jul 2009 18:53:13 -0000 1.9 @@ -2,7 +2,7 @@ Name: player Version: 2.1.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Cross-platform robot device interface and server Group: Applications/System @@ -200,6 +200,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Michael Schwendt - 2.1.1-11 - Exclude -examples subpackage files in main package (#489184). From jkeating at fedoraproject.org Sun Jul 26 18:53:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:53:29 +0000 (UTC) Subject: rpms/plexus-ant-factory/devel plexus-ant-factory.spec,1.13,1.14 Message-ID: <20090726185329.0E70311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-ant-factory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14474 Modified Files: plexus-ant-factory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-ant-factory.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-ant-factory/devel/plexus-ant-factory.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- plexus-ant-factory.spec 28 Feb 2009 19:34:33 -0000 1.13 +++ plexus-ant-factory.spec 26 Jul 2009 18:53:28 -0000 1.14 @@ -41,7 +41,7 @@ Name: %{parent}-%{subname} Version: 1.0 -Release: 0.3.a1.1.11%{?dist} +Release: 0.4.a1.1.11%{?dist} Epoch: 0 Summary: Plexus Ant component factory # Email from copyright holder confirms license. @@ -214,6 +214,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a1.1.11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Deepak Bhole 1.0-0.3.a1.1.11 - Build with maven From pkgdb at fedoraproject.org Sun Jul 26 18:53:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:53:46 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090726185346.965C810F899@bastion2.fedora.phx.redhat.com> Package edje in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From jkeating at fedoraproject.org Sun Jul 26 18:54:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:54:01 +0000 (UTC) Subject: rpms/plexus-archiver/devel plexus-archiver.spec,1.5,1.6 Message-ID: <20090726185401.0BACC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-archiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14898 Modified Files: plexus-archiver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-archiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-archiver/devel/plexus-archiver.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- plexus-archiver.spec 27 Feb 2009 00:49:43 -0000 1.5 +++ plexus-archiver.spec 26 Jul 2009 18:54:00 -0000 1.6 @@ -36,7 +36,7 @@ Name: plexus-archiver Version: 1.0 -Release: 0.3.a7.1.2%{?dist} +Release: 0.4.a7.1.2%{?dist} Epoch: 0 Summary: Plexus Archiver Component License: MIT and ASL 2.0 @@ -152,6 +152,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a7.1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.0-0.3.a7.1.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:54:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:54:17 +0000 (UTC) Subject: rpms/plexus-bsh-factory/devel plexus-bsh-factory.spec,1.12,1.13 Message-ID: <20090726185417.DEBD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-bsh-factory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15135 Modified Files: plexus-bsh-factory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-bsh-factory.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-bsh-factory/devel/plexus-bsh-factory.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- plexus-bsh-factory.spec 23 Mar 2009 17:47:04 -0000 1.12 +++ plexus-bsh-factory.spec 26 Jul 2009 18:54:17 -0000 1.13 @@ -39,7 +39,7 @@ Name: %{parent}-%{subname} Version: 1.0 -Release: 0.3.a7s.1.10%{?dist} +Release: 0.4.a7s.1.10%{?dist} Epoch: 0 Summary: Plexus Bsh component factory License: MIT @@ -211,6 +211,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a7s.1.10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Deepak Bhole - 1.0-0.3.a7s.1.10 - Rebuild with maven From jkeating at fedoraproject.org Sun Jul 26 18:54:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:54:33 +0000 (UTC) Subject: rpms/plexus-cdc/devel plexus-cdc.spec,1.10,1.11 Message-ID: <20090726185433.EB8EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-cdc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15329 Modified Files: plexus-cdc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-cdc.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-cdc/devel/plexus-cdc.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- plexus-cdc.spec 23 Mar 2009 18:49:27 -0000 1.10 +++ plexus-cdc.spec 26 Jul 2009 18:54:33 -0000 1.11 @@ -42,7 +42,7 @@ Name: %{parent}-%{subname} Version: 1.0 -Release: 0.3.a4.1.7%{?dist} +Release: 0.4.a4.1.7%{?dist} Epoch: 0 Summary: Plexus Component Descriptor Creator License: MIT @@ -190,6 +190,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a4.1.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Deepak Bhole - 0:1.0-0.3.a4.1.7 - Build on ppc64 From jkeating at fedoraproject.org Sun Jul 26 18:54:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:54:52 +0000 (UTC) Subject: rpms/plexus-compiler/devel plexus-compiler.spec,1.4,1.5 Message-ID: <20090726185452.F303C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-compiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15539 Modified Files: plexus-compiler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-compiler.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-compiler/devel/plexus-compiler.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- plexus-compiler.spec 27 Feb 2009 00:52:07 -0000 1.4 +++ plexus-compiler.spec 26 Jul 2009 18:54:52 -0000 1.5 @@ -32,7 +32,7 @@ Name: plexus-compiler Version: 1.5.2 -Release: 3.3%{?dist} +Release: 4.3%{?dist} Epoch: 0 Summary: Compiler call initiators for Plexus License: MIT @@ -276,6 +276,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.5.2-4.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.5.2-3.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:55:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:55:07 +0000 (UTC) Subject: rpms/plexus-container-default/devel plexus-container-default.spec, 1.3, 1.4 Message-ID: <20090726185507.E4B6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-container-default/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15713 Modified Files: plexus-container-default.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-container-default.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-container-default/devel/plexus-container-default.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- plexus-container-default.spec 27 Feb 2009 00:52:59 -0000 1.3 +++ plexus-container-default.spec 26 Jul 2009 18:55:07 -0000 1.4 @@ -39,7 +39,7 @@ Name: plexus-container-default Version: 1.0 -Release: 0.2.a8.1.2%{?dist} +Release: 0.3.a8.1.2%{?dist} Epoch: 0 Summary: Default Plexus Container License: ASL 2.0 and MIT @@ -148,6 +148,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.3.a8.1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.0-0.2.a8.1.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:55:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:55:27 +0000 (UTC) Subject: rpms/plexus-graph/devel plexus-graph.spec,1.3,1.4 Message-ID: <20090726185527.1D08C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-graph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15964 Modified Files: plexus-graph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-graph.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-graph/devel/plexus-graph.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- plexus-graph.spec 27 Feb 2009 00:54:01 -0000 1.3 +++ plexus-graph.spec 26 Jul 2009 18:55:26 -0000 1.4 @@ -4,7 +4,7 @@ Name: plexus-graph Version: 0.13.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Graph data structures manipulation library Group: Development/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:55:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:55:41 +0000 (UTC) Subject: rpms/plexus-i18n/devel plexus-i18n.spec,1.6,1.7 Message-ID: <20090726185541.C9D2111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-i18n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16140 Modified Files: plexus-i18n.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-i18n.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-i18n/devel/plexus-i18n.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- plexus-i18n.spec 18 Jun 2009 17:33:01 -0000 1.6 +++ plexus-i18n.spec 26 Jul 2009 18:55:41 -0000 1.7 @@ -35,7 +35,7 @@ Name: plexus-i18n Version: 1.0 -Release: 0.b6.5.3%{?dist}.2 +Release: 0.b6.5.3%{?dist}.3 Epoch: 0 Summary: Plexus I18N Component License: ASL 2.0 @@ -222,6 +222,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.b6.5.3.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Deepak Bhole - 0:1.0-0.b6.5.3.2 - Added pom.xml and components.xml to META-INF From pkgdb at fedoraproject.org Sun Jul 26 18:53:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:53:32 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090726185332.9C7CB10F889@bastion2.fedora.phx.redhat.com> Package edje in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From pkgdb at fedoraproject.org Sun Jul 26 18:53:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:53:43 +0000 Subject: [pkgdb] edje ownership updated Message-ID: <20090726185343.DD04710F890@bastion2.fedora.phx.redhat.com> Package edje in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/edje From jkeating at fedoraproject.org Sun Jul 26 18:53:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:53:44 +0000 (UTC) Subject: rpms/plexus-appserver/devel plexus-appserver.spec,1.12,1.13 Message-ID: <20090726185344.67BD911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-appserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14679 Modified Files: plexus-appserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-appserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-appserver/devel/plexus-appserver.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- plexus-appserver.spec 24 Mar 2009 19:21:13 -0000 1.12 +++ plexus-appserver.spec 26 Jul 2009 18:53:44 -0000 1.13 @@ -42,7 +42,7 @@ Name: plexus-appserver Version: 1.0 -Release: 0.3.a5.2.9%{?dist} +Release: 0.4.a5.2.9%{?dist} Epoch: 0 Summary: Plexus Application Server License: ASL 2.0 and MIT @@ -200,6 +200,9 @@ fi %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a5.2.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Deepak Bhole 1.0-0.3.a5.2.9 - Build with maven - Add tomcat BRs From pkgdb at fedoraproject.org Sun Jul 26 18:55:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:55:55 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090726185556.04AA210F880@bastion2.fedora.phx.redhat.com> Package eet in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From jkeating at fedoraproject.org Sun Jul 26 18:55:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:55:57 +0000 (UTC) Subject: rpms/plexus-interactivity/devel plexus-interactivity.spec,1.4,1.5 Message-ID: <20090726185557.1FCCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-interactivity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16309 Modified Files: plexus-interactivity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-interactivity.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-interactivity/devel/plexus-interactivity.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- plexus-interactivity.spec 27 Feb 2009 00:55:57 -0000 1.4 +++ plexus-interactivity.spec 26 Jul 2009 18:55:57 -0000 1.5 @@ -39,7 +39,7 @@ Name: plexus-interactivity Version: 1.0 -Release: 0.2.a5.2.3%{?dist} +Release: 0.3.a5.2.3%{?dist} Epoch: 0 Summary: Plexus Interactivity Handler Component License: MIT @@ -184,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.3.a5.2.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.0-0.2.a5.2.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:56:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:07 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090726185607.C969110F890@bastion2.fedora.phx.redhat.com> Package eet in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From pkgdb at fedoraproject.org Sun Jul 26 18:56:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:09 +0000 Subject: [pkgdb] eet ownership updated Message-ID: <20090726185609.EAD3010F897@bastion2.fedora.phx.redhat.com> Package eet in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/eet From jkeating at fedoraproject.org Sun Jul 26 18:56:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:56:11 +0000 (UTC) Subject: rpms/plexus-maven-plugin/devel plexus-maven-plugin.spec,1.11,1.12 Message-ID: <20090726185611.EE93411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-maven-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16457 Modified Files: plexus-maven-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-maven-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-maven-plugin/devel/plexus-maven-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- plexus-maven-plugin.spec 24 Mar 2009 19:46:43 -0000 1.11 +++ plexus-maven-plugin.spec 26 Jul 2009 18:56:11 -0000 1.12 @@ -38,7 +38,7 @@ Name: %{parent}-%{subname} Version: 1.2 -Release: 3.7%{?dist} +Release: 4.7%{?dist} Epoch: 0 Summary: Plexus Maven plugin License: MIT @@ -185,6 +185,9 @@ fi %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.2-4.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Deepak Bhole 1.2-3.7 - Adjust tomcat requirements From pkgdb at fedoraproject.org Sun Jul 26 18:56:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:22 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090726185622.B211B10F885@bastion2.fedora.phx.redhat.com> Package efreet in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From pkgdb at fedoraproject.org Sun Jul 26 18:56:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:26 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090726185627.00D6C10F897@bastion2.fedora.phx.redhat.com> Package efreet in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From jkeating at fedoraproject.org Sun Jul 26 18:56:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:56:27 +0000 (UTC) Subject: rpms/plexus-runtime-builder/devel plexus-runtime-builder.spec, 1.11, 1.12 Message-ID: <20090726185627.132E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-runtime-builder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16609 Modified Files: plexus-runtime-builder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-runtime-builder.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-runtime-builder/devel/plexus-runtime-builder.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- plexus-runtime-builder.spec 23 Mar 2009 22:43:46 -0000 1.11 +++ plexus-runtime-builder.spec 26 Jul 2009 18:56:26 -0000 1.12 @@ -38,7 +38,7 @@ Name: %{parent}-%{subname} Version: 1.0 -Release: 0.3.a9.1.9%{?dist} +Release: 0.4.a9.1.9%{?dist} Epoch: 0 Summary: Plexus Component Descriptor Creator License: MIT @@ -203,6 +203,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.a9.1.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Deepak Bhole 1.0-0.3.a9.1.9 - Build on ppc64 From jkeating at fedoraproject.org Sun Jul 26 18:56:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:56:42 +0000 (UTC) Subject: rpms/plexus-utils/devel plexus-utils.spec,1.3,1.4 Message-ID: <20090726185642.D31DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16836 Modified Files: plexus-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-utils/devel/plexus-utils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- plexus-utils.spec 27 Feb 2009 00:58:47 -0000 1.3 +++ plexus-utils.spec 26 Jul 2009 18:56:42 -0000 1.4 @@ -36,7 +36,7 @@ Name: plexus-utils Version: 1.2 -Release: 3.2%{?dist} +Release: 4.2%{?dist} Epoch: 0 Summary: Plexus Common Utilities License: ASL 1.1 and ASL 2.0 and MIT @@ -129,6 +129,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.2-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.2-3.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:56:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:28 +0000 Subject: [pkgdb] efreet ownership updated Message-ID: <20090726185629.031F410F899@bastion2.fedora.phx.redhat.com> Package efreet in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/efreet From pkgdb at fedoraproject.org Sun Jul 26 18:56:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:51 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090726185651.67EA410F880@bastion2.fedora.phx.redhat.com> Package embryo in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From jkeating at fedoraproject.org Sun Jul 26 18:56:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:56:57 +0000 (UTC) Subject: rpms/plexus-velocity/devel plexus-velocity.spec,1.4,1.5 Message-ID: <20090726185657.E6BE611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-velocity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17018 Modified Files: plexus-velocity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-velocity.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-velocity/devel/plexus-velocity.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- plexus-velocity.spec 27 Feb 2009 00:59:44 -0000 1.4 +++ plexus-velocity.spec 26 Jul 2009 18:56:57 -0000 1.5 @@ -41,7 +41,7 @@ Name: plexus-velocity Version: 1.1.2 -Release: 4.2%{?dist} +Release: 5.2%{?dist} Epoch: 0 Summary: Plexus Velocity Component License: MIT @@ -194,6 +194,9 @@ fi %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.1.2-5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.1.2-4.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:56:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:56:57 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090726185657.5532F10F890@bastion2.fedora.phx.redhat.com> Package embryo in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From pkgdb at fedoraproject.org Sun Jul 26 18:57:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:00 +0000 Subject: [pkgdb] embryo ownership updated Message-ID: <20090726185700.9C20610F899@bastion2.fedora.phx.redhat.com> Package embryo in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/embryo From jkeating at fedoraproject.org Sun Jul 26 18:57:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:57:14 +0000 (UTC) Subject: rpms/plexus-xmlrpc/devel plexus-xmlrpc.spec,1.18,1.19 Message-ID: <20090726185714.7DF7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plexus-xmlrpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17223 Modified Files: plexus-xmlrpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plexus-xmlrpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/plexus-xmlrpc/devel/plexus-xmlrpc.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- plexus-xmlrpc.spec 24 Mar 2009 17:49:03 -0000 1.18 +++ plexus-xmlrpc.spec 26 Jul 2009 18:57:14 -0000 1.19 @@ -42,7 +42,7 @@ Name: plexus-xmlrpc Version: 1.0 -Release: 0.3.b4.2.14%{?dist} +Release: 0.4.b4.2.14%{?dist} Epoch: 0 Summary: Plexus XML RPC Component License: ASL 1.1 and MIT @@ -210,6 +210,9 @@ fi %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0-0.4.b4.2.14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Deepak Bhole 1.0-0.3.b4.2.14 - Build with maven - Add tomcat deps From pkgdb at fedoraproject.org Sun Jul 26 18:57:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:14 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090726185714.639CF10F889@bastion2.fedora.phx.redhat.com> Package emotion in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From pkgdb at fedoraproject.org Sun Jul 26 18:57:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:20 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090726185720.99B4710F897@bastion2.fedora.phx.redhat.com> Package emotion in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From pkgdb at fedoraproject.org Sun Jul 26 18:57:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:23 +0000 Subject: [pkgdb] emotion ownership updated Message-ID: <20090726185723.A430310F880@bastion2.fedora.phx.redhat.com> Package emotion in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emotion From jkeating at fedoraproject.org Sun Jul 26 18:57:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:57:30 +0000 (UTC) Subject: rpms/plib/devel plib.spec,1.20,1.21 Message-ID: <20090726185730.4031211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17411 Modified Files: plib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plib.spec =================================================================== RCS file: /cvs/pkgs/rpms/plib/devel/plib.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- plib.spec 27 Feb 2009 01:01:45 -0000 1.20 +++ plib.spec 26 Jul 2009 18:57:30 -0000 1.21 @@ -1,6 +1,6 @@ Name: plib Version: 1.8.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Set of portable libraries especially useful for games Group: System Environment/Libraries License: LGPLv2+ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:57:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:57:44 +0000 (UTC) Subject: rpms/plotmm/devel plotmm.spec,1.7,1.8 Message-ID: <20090726185744.BF61611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plotmm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17594 Modified Files: plotmm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plotmm.spec =================================================================== RCS file: /cvs/pkgs/rpms/plotmm/devel/plotmm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- plotmm.spec 27 Feb 2009 01:02:42 -0000 1.7 +++ plotmm.spec 26 Jul 2009 18:57:44 -0000 1.8 @@ -1,6 +1,6 @@ Name: plotmm Version: 0.1.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: GTKmm plot widget for scientific applications Group: System Environment/Libraries License: LGPLv2 @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/plotmm-simple %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:57:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:48 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090726185748.8544B10F890@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From pkgdb at fedoraproject.org Sun Jul 26 18:57:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:53 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090726185753.6280910F899@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From pkgdb at fedoraproject.org Sun Jul 26 18:57:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:57:55 +0000 Subject: [pkgdb] enlightenment ownership updated Message-ID: <20090726185755.670D310F8A1@bastion2.fedora.phx.redhat.com> Package enlightenment in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/enlightenment From jkeating at fedoraproject.org Sun Jul 26 18:58:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:58:00 +0000 (UTC) Subject: rpms/plotutils/devel plotutils.spec,1.5,1.6 Message-ID: <20090726185800.8310611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plotutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17774 Modified Files: plotutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plotutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/plotutils/devel/plotutils.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- plotutils.spec 27 Feb 2009 01:03:36 -0000 1.5 +++ plotutils.spec 26 Jul 2009 18:58:00 -0000 1.6 @@ -1,7 +1,7 @@ Name: plotutils Version: 2.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: GNU vector and raster graphics utilities and libraries Group: Applications/Productivity @@ -113,6 +113,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 18:58:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:58:18 +0000 (UTC) Subject: rpms/plplot/devel plplot.spec,1.78,1.79 Message-ID: <20090726185818.0095211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plplot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17984 Modified Files: plplot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plplot.spec =================================================================== RCS file: /cvs/pkgs/rpms/plplot/devel/plplot.spec,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -r1.78 -r1.79 --- plplot.spec 26 May 2009 15:07:45 -0000 1.78 +++ plplot.spec 26 Jul 2009 18:58:17 -0000 1.79 @@ -10,7 +10,7 @@ Name: plplot Version: 5.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library of functions for making scientific plots Group: Applications/Engineering @@ -597,6 +597,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.9.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 - Orion Poplawski - 5.9.4-1 - Update to 5.9.4 - Drop soversion patch applied upstream From jkeating at fedoraproject.org Sun Jul 26 18:58:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:58:31 +0000 (UTC) Subject: rpms/plt-scheme/devel plt-scheme.spec,1.41,1.42 Message-ID: <20090726185831.D5C9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plt-scheme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18157 Modified Files: plt-scheme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plt-scheme.spec =================================================================== RCS file: /cvs/pkgs/rpms/plt-scheme/devel/plt-scheme.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- plt-scheme.spec 27 Feb 2009 01:07:29 -0000 1.41 +++ plt-scheme.spec 26 Jul 2009 18:58:31 -0000 1.42 @@ -1,6 +1,6 @@ Name: plt-scheme Version: 4.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Graphical environment for developing programs using Scheme @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:4.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:4.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:58:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:58:43 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090726185843.2315710F885@bastion2.fedora.phx.redhat.com> Package epeg in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From jkeating at fedoraproject.org Sun Jul 26 18:58:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:58:47 +0000 (UTC) Subject: rpms/plymouth/devel plymouth.spec,1.134,1.135 Message-ID: <20090726185847.605B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/plymouth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18382 Modified Files: plymouth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: plymouth.spec =================================================================== RCS file: /cvs/pkgs/rpms/plymouth/devel/plymouth.spec,v retrieving revision 1.134 retrieving revision 1.135 diff -u -p -r1.134 -r1.135 --- plymouth.spec 15 May 2009 17:28:12 -0000 1.134 +++ plymouth.spec 26 Jul 2009 18:58:47 -0000 1.135 @@ -5,7 +5,7 @@ Summary: Graphical Boot Animation and Logger Name: plymouth Version: 0.7.0 -Release: 0.2009.05.15.1%{?dist} +Release: 0.2010.05.15.1%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2 @@ -410,6 +410,9 @@ fi %defattr(-, root, root) %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-0.2010.05.15.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Ray Strode 0.7.0-0.2009.05.15.1 - Fix spinfinity theme to point to the right image directory (bug 500994) From pkgdb at fedoraproject.org Sun Jul 26 18:58:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:58:51 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090726185851.4621710F89C@bastion2.fedora.phx.redhat.com> Package epeg in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From pkgdb at fedoraproject.org Sun Jul 26 18:58:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:58:48 +0000 Subject: [pkgdb] epeg ownership updated Message-ID: <20090726185849.03B9310F899@bastion2.fedora.phx.redhat.com> Package epeg in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epeg From jkeating at fedoraproject.org Sun Jul 26 18:59:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:59:02 +0000 (UTC) Subject: rpms/pm-utils/devel pm-utils.spec,1.120,1.121 Message-ID: <20090726185902.C840911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pm-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18576 Modified Files: pm-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pm-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/pm-utils/devel/pm-utils.spec,v retrieving revision 1.120 retrieving revision 1.121 diff -u -p -r1.120 -r1.121 --- pm-utils.spec 18 Jul 2009 21:49:31 -0000 1.120 +++ pm-utils.spec 26 Jul 2009 18:59:02 -0000 1.121 @@ -2,7 +2,7 @@ Name: pm-utils Summary: Power management utilities and scripts for Fedora License: GPLv2 Version: 1.2.5 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Base URL: http://pm-utils.freedesktop.org # for chvt @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Till Maas - 1.2.5-4 - Remove atd script - create filesystem subpackage for hooks From pkgdb at fedoraproject.org Sun Jul 26 18:59:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:02 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090726185903.1759510F889@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From pkgdb at fedoraproject.org Sun Jul 26 18:59:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:09 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090726185909.8799810F897@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From pkgdb at fedoraproject.org Sun Jul 26 18:59:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:12 +0000 Subject: [pkgdb] epsilon ownership updated Message-ID: <20090726185912.C71E910F89A@bastion2.fedora.phx.redhat.com> Package epsilon in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/epsilon From jkeating at fedoraproject.org Sun Jul 26 18:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:59:17 +0000 (UTC) Subject: rpms/pmd/devel pmd.spec,1.7,1.8 Message-ID: <20090726185917.A7EB311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18765 Modified Files: pmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/pmd/devel/pmd.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pmd.spec 27 Feb 2009 01:09:23 -0000 1.7 +++ pmd.spec 26 Jul 2009 18:59:17 -0000 1.8 @@ -29,7 +29,7 @@ # Name: pmd Version: 4.2.5 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 0 Summary: Scans Java source code and looks for potential problems License: BSD @@ -138,6 +138,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:4.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:4.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:59:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:27 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090726185927.D228E10F897@bastion2.fedora.phx.redhat.com> Package evas in Fedora devel is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From jkeating at fedoraproject.org Sun Jul 26 18:59:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:59:31 +0000 (UTC) Subject: rpms/pmount/devel pmount.spec,1.6,1.7 Message-ID: <20090726185931.EFF5511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pmount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18917 Modified Files: pmount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pmount.spec =================================================================== RCS file: /cvs/pkgs/rpms/pmount/devel/pmount.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pmount.spec 27 Feb 2009 01:10:18 -0000 1.6 +++ pmount.spec 26 Jul 2009 18:59:31 -0000 1.7 @@ -1,6 +1,6 @@ Name: pmount Version: 0.9.17 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Enable normal user mount Group: System Environment/Base @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/p*mount*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.17-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.17-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 18:59:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:32 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090726185932.8D86310F89C@bastion2.fedora.phx.redhat.com> Package evas in Fedora 10 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From pkgdb at fedoraproject.org Sun Jul 26 18:59:34 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 18:59:34 +0000 Subject: [pkgdb] evas ownership updated Message-ID: <20090726185934.62ECD10F89F@bastion2.fedora.phx.redhat.com> Package evas in Fedora 11 is now owned by guthrie To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/evas From jkeating at fedoraproject.org Sun Jul 26 18:59:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 18:59:45 +0000 (UTC) Subject: rpms/pmpu/devel pmpu.spec,1.4,1.5 Message-ID: <20090726185945.A60F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pmpu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19062 Modified Files: pmpu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pmpu.spec =================================================================== RCS file: /cvs/pkgs/rpms/pmpu/devel/pmpu.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pmpu.spec 27 Feb 2009 01:11:13 -0000 1.4 +++ pmpu.spec 26 Jul 2009 18:59:45 -0000 1.5 @@ -2,7 +2,7 @@ Name: pmpu Version: 0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GUI for a distributed version control systems Group: Development/Tools @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:00:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:00:00 +0000 (UTC) Subject: rpms/pmtools/devel pmtools.spec,1.2,1.3 Message-ID: <20090726190000.E5A1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pmtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19212 Modified Files: pmtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pmtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/pmtools/devel/pmtools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pmtools.spec 27 Feb 2009 01:12:08 -0000 1.2 +++ pmtools.spec 26 Jul 2009 19:00:00 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Collection of tools for processing ACPI tables. Name: pmtools Version: 20071116 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Base License: GPLv2+ Source0: http://www.lesswatts.org/patches/linux_acpi/%{name}-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf %{buildroot} %doc README COPYING %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20071116-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20071116-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:00:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:00:20 +0000 (UTC) Subject: rpms/pngcrush/devel pngcrush.spec,1.2,1.3 Message-ID: <20090726190020.6FFD111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pngcrush/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19450 Modified Files: pngcrush.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pngcrush.spec =================================================================== RCS file: /cvs/pkgs/rpms/pngcrush/devel/pngcrush.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pngcrush.spec 27 Feb 2009 01:13:02 -0000 1.2 +++ pngcrush.spec 26 Jul 2009 19:00:20 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Optimizer for PNG (Portable Network Graphics) files Name: pngcrush Version: 1.6.10 -Release: 4%{?dist} +Release: 5%{?dist} License: zlib Group: Applications/File URL: http://pmt.sourceforge.net/pngcrush/ @@ -44,6 +44,9 @@ gcc %{optflags} $pngflags -o pngcrush pn %{_bindir}/pngcrush %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:00:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:00:42 +0000 (UTC) Subject: rpms/pnglite/devel pnglite.spec,1.2,1.3 Message-ID: <20090726190042.7635211C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pnglite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19632 Modified Files: pnglite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pnglite.spec =================================================================== RCS file: /cvs/pkgs/rpms/pnglite/devel/pnglite.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pnglite.spec 27 Feb 2009 01:13:59 -0000 1.2 +++ pnglite.spec 26 Jul 2009 19:00:41 -0000 1.3 @@ -6,7 +6,7 @@ Name: pnglite Version: 0.1.17 -Release: %{abi_minor}%{?dist}.1 +Release: %{abi_minor}%{?dist}.2 Summary: A lightweight C library for loading PNG images Group: Development/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.17-1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.17-1.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:00:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:00:57 +0000 (UTC) Subject: rpms/pngnq/devel pngnq.spec,1.2,1.3 Message-ID: <20090726190057.8551811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pngnq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19836 Modified Files: pngnq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pngnq.spec =================================================================== RCS file: /cvs/pkgs/rpms/pngnq/devel/pngnq.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pngnq.spec 27 Feb 2009 01:14:59 -0000 1.2 +++ pngnq.spec 26 Jul 2009 19:00:57 -0000 1.3 @@ -1,7 +1,7 @@ Name: pngnq Summary: Pngnq is a tool for quantizing PNG images in RGBA format Version: 0.5 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD with advertising and MIT and BSD Group: Applications/Multimedia URL: http://pngnq.sourceforge.net/ @@ -46,6 +46,9 @@ export CFLAGS="%{optflags}" %{_mandir}/man1/*1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:01:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:01:13 +0000 (UTC) Subject: rpms/pnm2ppa/devel pnm2ppa.spec,1.14,1.15 Message-ID: <20090726190113.6FF3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pnm2ppa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20013 Modified Files: pnm2ppa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pnm2ppa.spec =================================================================== RCS file: /cvs/pkgs/rpms/pnm2ppa/devel/pnm2ppa.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- pnm2ppa.spec 27 Feb 2009 01:15:57 -0000 1.14 +++ pnm2ppa.spec 26 Jul 2009 19:01:13 -0000 1.15 @@ -3,7 +3,7 @@ Summary: Drivers for printing to HP PPA Epoch: 1 Obsoletes: ppa Version: 1.04 -Release: 17%{?dist} +Release: 18%{?dist} URL: http://sourceforge.net/projects/pnm2ppa Source: http://download.sourceforge.net/pnm2ppa/pnm2ppa-%{version}.tar.gz Source1: http://www.httptech.com/ppa/files/ppa-0.8.6.tar.gz @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %config /etc/pbm2ppa.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.04-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.04-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:01:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:01:26 +0000 (UTC) Subject: rpms/pnp4nagios/devel pnp4nagios.spec,1.6,1.7 Message-ID: <20090726190126.91F1011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pnp4nagios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20203 Modified Files: pnp4nagios.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pnp4nagios.spec =================================================================== RCS file: /cvs/pkgs/rpms/pnp4nagios/devel/pnp4nagios.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pnp4nagios.spec 27 Feb 2009 01:16:54 -0000 1.6 +++ pnp4nagios.spec 26 Jul 2009 19:01:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: pnp4nagios Version: 0.4.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Nagios performance data analysis tool Group: Applications/System @@ -103,6 +103,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:01:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:01:44 +0000 (UTC) Subject: rpms/po4a/devel po4a.spec,1.10,1.11 Message-ID: <20090726190144.AE08A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/po4a/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20453 Modified Files: po4a.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: po4a.spec =================================================================== RCS file: /cvs/pkgs/rpms/po4a/devel/po4a.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- po4a.spec 27 Feb 2009 01:17:52 -0000 1.10 +++ po4a.spec 26 Jul 2009 19:01:44 -0000 1.11 @@ -1,6 +1,6 @@ Name: po4a Version: 0.35 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A tool maintaining translations anywhere Group: Applications/System # Nothing in the source tree specifies a version of the GPL. @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.35-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.35-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:02:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:02:00 +0000 (UTC) Subject: rpms/podcatcher/devel podcatcher.spec,1.2,1.3 Message-ID: <20090726190200.9A9EE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/podcatcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20624 Modified Files: podcatcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: podcatcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/podcatcher/devel/podcatcher.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- podcatcher.spec 27 Feb 2009 01:18:47 -0000 1.2 +++ podcatcher.spec 26 Jul 2009 19:02:00 -0000 1.3 @@ -2,7 +2,7 @@ Name: podcatcher Version: 3.1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Armangil's podcatcher Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/podcatcher %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:02:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:02:17 +0000 (UTC) Subject: rpms/podofo/devel podofo.spec,1.1,1.2 Message-ID: <20090726190217.E942311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/podofo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20851 Modified Files: podofo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: podofo.spec =================================================================== RCS file: /cvs/pkgs/rpms/podofo/devel/podofo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- podofo.spec 2 May 2009 06:42:46 -0000 1.1 +++ podofo.spec 26 Jul 2009 19:02:17 -0000 1.2 @@ -1,6 +1,6 @@ Name: podofo Version: 0.7.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tools and libraries to work with the PDF file format Group: Applications/Publishing @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Dan Hor?k 0.7.0-2 - remove BR: openssl-devel, it could be required in the future (but then an exception clause will be added to the licenses) From jkeating at fedoraproject.org Sun Jul 26 19:02:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:02:33 +0000 (UTC) Subject: rpms/podsleuth/devel podsleuth.spec,1.8,1.9 Message-ID: <20090726190233.70CBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/podsleuth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21038 Modified Files: podsleuth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: podsleuth.spec =================================================================== RCS file: /cvs/pkgs/rpms/podsleuth/devel/podsleuth.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- podsleuth.spec 27 Feb 2009 01:19:43 -0000 1.8 +++ podsleuth.spec 26 Jul 2009 19:02:33 -0000 1.9 @@ -2,7 +2,7 @@ Name: podsleuth Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Probes, identifies, and exposes properties and metadata bound to iPods Group: Applications/Multimedia License: MIT @@ -82,6 +82,9 @@ make install DESTDIR=%{buildroot} %{_libdir}/pkgconfig/podsleuth.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:02:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:02:52 +0000 (UTC) Subject: rpms/poedit/devel poedit.spec,1.13,1.14 Message-ID: <20090726190252.D003211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21243 Modified Files: poedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/poedit/devel/poedit.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- poedit.spec 26 Mar 2009 14:09:03 -0000 1.13 +++ poedit.spec 26 Jul 2009 19:02:52 -0000 1.14 @@ -1,6 +1,6 @@ Name: poedit Version: 1.4.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GUI editor for GNU gettext .po files Group: Development/Languages @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Bill Nottingham - 1.4.2-4 - rebuild per bug #492193, releng ticket 1432 From jkeating at fedoraproject.org Sun Jul 26 19:03:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:03:16 +0000 (UTC) Subject: rpms/poker-engine/devel poker-engine.spec,1.27,1.28 Message-ID: <20090726190316.8B34D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21526 Modified Files: poker-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker-engine/devel/poker-engine.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- poker-engine.spec 27 Feb 2009 01:21:33 -0000 1.27 +++ poker-engine.spec 26 Jul 2009 19:03:16 -0000 1.28 @@ -2,7 +2,7 @@ Name: poker-engine Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python library that implements poker rules Group: Development/Libraries @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:03:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:03:35 +0000 (UTC) Subject: rpms/poker-eval/devel poker-eval.spec,1.22,1.23 Message-ID: <20090726190335.CF38911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker-eval/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21794 Modified Files: poker-eval.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker-eval.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker-eval/devel/poker-eval.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- poker-eval.spec 27 Feb 2009 01:22:27 -0000 1.22 +++ poker-eval.spec 26 Jul 2009 19:03:35 -0000 1.23 @@ -1,6 +1,6 @@ Name: poker-eval Version: 135.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Poker hand evaluator library Group: Development/Libraries @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 135.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 135.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:03:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:03:54 +0000 (UTC) Subject: rpms/poker-network/devel poker-network.spec,1.18,1.19 Message-ID: <20090726190354.35E3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker-network/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21999 Modified Files: poker-network.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker-network.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker-network/devel/poker-network.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- poker-network.spec 27 Feb 2009 01:23:26 -0000 1.18 +++ poker-network.spec 26 Jul 2009 19:03:54 -0000 1.19 @@ -9,7 +9,7 @@ Name: poker-network Version: 1.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Base package for poker client and server Group: Applications/Internet @@ -378,6 +378,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:04:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:04:14 +0000 (UTC) Subject: rpms/poker2d/devel poker2d.spec,1.17,1.18 Message-ID: <20090726190414.538BB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker2d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22268 Modified Files: poker2d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker2d.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker2d/devel/poker2d.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- poker2d.spec 27 Feb 2009 01:24:26 -0000 1.17 +++ poker2d.spec 26 Jul 2009 19:04:14 -0000 1.18 @@ -3,7 +3,7 @@ Name: poker2d Version: 1.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK poker client to play on a poker-network server Group: Amusements/Games @@ -222,6 +222,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:04:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:04:33 +0000 (UTC) Subject: rpms/poker3d/devel poker3d.spec,1.10,1.11 Message-ID: <20090726190433.AFD3E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22459 Modified Files: poker3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker3d/devel/poker3d.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- poker3d.spec 27 Feb 2009 01:25:35 -0000 1.10 +++ poker3d.spec 26 Jul 2009 19:04:33 -0000 1.11 @@ -3,7 +3,7 @@ Name: poker3d Version: 1.1.36 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Three dimensional multi-user online poker game Group: Amusements/Games @@ -163,6 +163,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.36-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.36-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:04:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:04:49 +0000 (UTC) Subject: rpms/poker3d-data/devel poker3d-data.spec,1.2,1.3 Message-ID: <20090726190449.2B2B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poker3d-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22661 Modified Files: poker3d-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poker3d-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/poker3d-data/devel/poker3d-data.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- poker3d-data.spec 27 Feb 2009 01:26:34 -0000 1.2 +++ poker3d-data.spec 26 Jul 2009 19:04:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: poker3d-data Version: 1.1.36 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Data files for the poker3d package Group: Amusements/Games @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.36-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:05:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:05:08 +0000 (UTC) Subject: rpms/pokerth/devel pokerth.spec,1.4,1.5 Message-ID: <20090726190508.5F8F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pokerth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22823 Modified Files: pokerth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pokerth.spec =================================================================== RCS file: /cvs/pkgs/rpms/pokerth/devel/pokerth.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pokerth.spec 1 Jul 2009 07:53:45 -0000 1.4 +++ pokerth.spec 26 Jul 2009 19:05:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: pokerth Version: 0.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Texas-Holdem poker game Group: Amusements/Games License: GPLv2+ @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Jussi Lehtola - 0.7.1-1 - Update to upstream 0.7.1. From jkeating at fedoraproject.org Sun Jul 26 19:07:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:07:45 +0000 (UTC) Subject: rpms/policycoreutils/devel policycoreutils.spec,1.613,1.614 Message-ID: <20090726190745.4FE9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/policycoreutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24028 Modified Files: policycoreutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: policycoreutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/policycoreutils/devel/policycoreutils.spec,v retrieving revision 1.613 retrieving revision 1.614 diff -u -p -r1.613 -r1.614 --- policycoreutils.spec 7 Jul 2009 15:40:49 -0000 1.613 +++ policycoreutils.spec 26 Jul 2009 19:07:44 -0000 1.614 @@ -6,7 +6,7 @@ Summary: SELinux policy core utilities Name: policycoreutils Version: 2.0.64 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz @@ -229,6 +229,9 @@ else fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.64-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Tom "spot" Callaway 2.0.64-2 - fix multiple directory ownership of mandirs From jkeating at fedoraproject.org Sun Jul 26 19:08:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:08:08 +0000 (UTC) Subject: rpms/polkit/devel polkit.spec,1.5,1.6 Message-ID: <20090726190808.ED4BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24259 Modified Files: polkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit/devel/polkit.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- polkit.spec 21 Jul 2009 00:47:47 -0000 1.5 +++ polkit.spec 26 Jul 2009 19:08:08 -0000 1.6 @@ -1,7 +1,7 @@ Summary: PolicyKit Authorization Framework Name: polkit Version: 0.93 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Source0: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.93-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 David Zeuthen - 0.93-2 - Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:08:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:08:23 +0000 (UTC) Subject: rpms/polkit-gnome/devel polkit-gnome.spec,1.5,1.6 Message-ID: <20090726190823.F0F1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polkit-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24426 Modified Files: polkit-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polkit-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit-gnome/devel/polkit-gnome.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- polkit-gnome.spec 21 Jul 2009 00:49:12 -0000 1.5 +++ polkit-gnome.spec 26 Jul 2009 19:08:23 -0000 1.6 @@ -1,7 +1,7 @@ Summary: PolicyKit integration for the GNOME desktop Name: polkit-gnome Version: 0.93 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ URL: http://www.freedesktop.org/wiki/Software/PolicyKit Group: Applications/System @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.93-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 David Zeuthen - 0.93-2 - Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:08:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:08:39 +0000 (UTC) Subject: rpms/polkit-qt/devel polkit-qt.spec,1.1,1.2 Message-ID: <20090726190839.B03F511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polkit-qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24626 Modified Files: polkit-qt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polkit-qt.spec =================================================================== RCS file: /cvs/pkgs/rpms/polkit-qt/devel/polkit-qt.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- polkit-qt.spec 2 May 2009 21:26:07 -0000 1.1 +++ polkit-qt.spec 26 Jul 2009 19:08:39 -0000 1.2 @@ -1,6 +1,6 @@ Name: polkit-qt Version: 0.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Qt bindings for PolicyKit Group: System Environment/Libraries @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Rex Dieter 0.9.2-1 - polkit-0.9.2 From jkeating at fedoraproject.org Sun Jul 26 19:08:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:08:56 +0000 (UTC) Subject: rpms/polyester/devel polyester.spec,1.10,1.11 Message-ID: <20090726190856.C4A7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polyester/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24798 Modified Files: polyester.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polyester.spec =================================================================== RCS file: /cvs/pkgs/rpms/polyester/devel/polyester.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- polyester.spec 27 Feb 2009 01:29:47 -0000 1.10 +++ polyester.spec 26 Jul 2009 19:08:56 -0000 1.11 @@ -4,7 +4,7 @@ Name: polyester Version: 2.0 -Release: 0.4.beta1%{?dist} +Release: 0.5.beta1%{?dist} Summary: A style for KDE 4 Group: User Interface/Desktops @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_kde4_appsdir}/kstyle/themes/polyester.themerc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-0.5.beta1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-0.4.beta1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:09:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:09:18 +0000 (UTC) Subject: rpms/polyester3/devel polyester3.spec,1.3,1.4 Message-ID: <20090726190918.529D311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polyester3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25015 Modified Files: polyester3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polyester3.spec =================================================================== RCS file: /cvs/pkgs/rpms/polyester3/devel/polyester3.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- polyester3.spec 27 Feb 2009 01:30:46 -0000 1.3 +++ polyester3.spec 26 Jul 2009 19:09:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: polyester3 Version: 1.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A style for KDE3 Group: User Interface/Desktops @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/apps/kstyle/themes/polyester.themerc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:09:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:09:33 +0000 (UTC) Subject: rpms/polyml/devel polyml.spec,1.8,1.9 Message-ID: <20090726190933.DA5B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polyml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25207 Modified Files: polyml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polyml.spec =================================================================== RCS file: /cvs/pkgs/rpms/polyml/devel/polyml.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- polyml.spec 15 Jun 2009 19:27:48 -0000 1.8 +++ polyml.spec 26 Jul 2009 19:09:33 -0000 1.9 @@ -1,6 +1,6 @@ Name: polyml Version: 5.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Poly/ML compiler and runtime system Group: Development/Languages @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Gerard Milmeister - 5.2.1-1 - new release 5.2.1 From jkeating at fedoraproject.org Sun Jul 26 19:09:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:09:50 +0000 (UTC) Subject: rpms/polyxmass-bin/devel polyxmass-bin.spec,1.11,1.12 Message-ID: <20090726190950.8434D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/polyxmass-bin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25390 Modified Files: polyxmass-bin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: polyxmass-bin.spec =================================================================== RCS file: /cvs/pkgs/rpms/polyxmass-bin/devel/polyxmass-bin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- polyxmass-bin.spec 17 May 2009 20:12:23 -0000 1.11 +++ polyxmass-bin.spec 26 Jul 2009 19:09:50 -0000 1.12 @@ -1,6 +1,6 @@ Name: polyxmass-bin Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The GNU polyxmass software suite Group: Applications/Engineering @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_datadir}/doc/polyxmass-bin %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 17 2009 Milos Jakubicek - 0.9.8-1 - Fix FTBFS: updated to 0.9.8, added polyxmass-compile.patch (resolves BZ#464997). - Project and source URL set to Debian, see related comments. From jkeating at fedoraproject.org Sun Jul 26 19:10:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:10:10 +0000 (UTC) Subject: rpms/pondus/devel pondus.spec,1.2,1.3 Message-ID: <20090726191010.6E5D011C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pondus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25623 Modified Files: pondus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pondus.spec =================================================================== RCS file: /cvs/pkgs/rpms/pondus/devel/pondus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pondus.spec 11 Jul 2009 19:00:46 -0000 1.2 +++ pondus.spec 26 Jul 2009 19:10:10 -0000 1.3 @@ -2,7 +2,7 @@ Name: pondus Version: 0.5.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A personal weight management program Group: Applications/Productivity License: GPLv3+ @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{python_sitelib}/pondus-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Jussi Lehtola - 0.5.3-2 - Fix EPEL build. From mtasaka at fedoraproject.org Sun Jul 26 19:10:23 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 26 Jul 2009 19:10:23 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.379, 1.380 jd.spec, 1.442, 1.443 sources, 1.380, 1.381 Message-ID: <20090726191023.9E05211C0417@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25675 Modified Files: .cvsignore jd.spec sources Log Message: rev 2989 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.379 retrieving revision 1.380 diff -u -p -r1.379 -r1.380 --- .cvsignore 26 Jul 2009 06:05:14 -0000 1.379 +++ .cvsignore 26 Jul 2009 19:10:22 -0000 1.380 @@ -1 +1 @@ -jd-2.4.2-svn2985_trunk.tgz +jd-2.4.2-svn2989_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.442 retrieving revision 1.443 diff -u -p -r1.442 -r1.443 --- jd.spec 26 Jul 2009 06:05:14 -0000 1.442 +++ jd.spec 26 Jul 2009 19:10:22 -0000 1.443 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2985_trunk +%define strtag svn2989_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 26 2009 Mamoru Tasaka -- rev 2985 +* Mon Jul 27 2009 Mamoru Tasaka +- rev 2989 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.380 retrieving revision 1.381 diff -u -p -r1.380 -r1.381 --- sources 26 Jul 2009 06:05:14 -0000 1.380 +++ sources 26 Jul 2009 19:10:22 -0000 1.381 @@ -1 +1 @@ -3a4109b85f32f825314c926822898a26 jd-2.4.2-svn2985_trunk.tgz +18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz From jkeating at fedoraproject.org Sun Jul 26 19:10:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:10:29 +0000 (UTC) Subject: rpms/pony/devel pony.spec,1.2,1.3 Message-ID: <20090726191029.E5C5911C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pony/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25877 Modified Files: pony.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pony.spec =================================================================== RCS file: /cvs/pkgs/rpms/pony/devel/pony.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pony.spec 3 Jun 2009 10:25:41 -0000 1.2 +++ pony.spec 26 Jul 2009 19:10:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: pony Version: 0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An image manager Group: Applications/Multimedia @@ -97,6 +97,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Kushal Das 0.2-1 - New release of pony From jkeating at fedoraproject.org Sun Jul 26 19:10:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:10:53 +0000 (UTC) Subject: rpms/pop-before-smtp/devel pop-before-smtp.spec,1.6,1.7 Message-ID: <20090726191053.A102F11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pop-before-smtp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26163 Modified Files: pop-before-smtp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pop-before-smtp.spec =================================================================== RCS file: /cvs/pkgs/rpms/pop-before-smtp/devel/pop-before-smtp.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pop-before-smtp.spec 27 Feb 2009 01:33:30 -0000 1.6 +++ pop-before-smtp.spec 26 Jul 2009 19:10:53 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Watch log for POP/IMAP auth, notify MTA to allow relay Name: pop-before-smtp Version: 1.42 -Release: 2%{?dist} +Release: 3%{?dist} Source: http://download.sourceforge.net/sourceforge/popbsmtp/pop-before-smtp-%{version}.tar.gz URL: http://popbsmtp.sourceforge.net/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/chkconfig --del pop-before-smtp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.42-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:11:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:11:10 +0000 (UTC) Subject: rpms/poppler/devel poppler.spec,1.96,1.97 Message-ID: <20090726191110.CBBAE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poppler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26333 Modified Files: poppler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poppler.spec =================================================================== RCS file: /cvs/pkgs/rpms/poppler/devel/poppler.spec,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -r1.96 -r1.97 --- poppler.spec 24 Jun 2009 01:56:05 -0000 1.96 +++ poppler.spec 26 Jul 2009 19:11:10 -0000 1.97 @@ -2,7 +2,7 @@ Summary: PDF rendering library Name: poppler Version: 0.11.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Development/Libraries URL: http://poppler.freedesktop.org/ @@ -206,6 +206,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Rex Dieter - 0.11.1-2 - omit poppler-data (#507675) From jkeating at fedoraproject.org Sun Jul 26 19:11:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:11:25 +0000 (UTC) Subject: rpms/popt/devel popt.spec,1.7,1.8 Message-ID: <20090726191125.23C1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/popt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26480 Modified Files: popt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: popt.spec =================================================================== RCS file: /cvs/pkgs/rpms/popt/devel/popt.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- popt.spec 23 Feb 2009 19:55:12 -0000 1.7 +++ popt.spec 26 Jul 2009 19:11:24 -0000 1.8 @@ -1,7 +1,7 @@ Summary: C library for parsing command line parameters Name: popt Version: 1.13 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.rpm5.org/ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libpopt.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.13-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 1.13-5 - Rebuilt against gcc 4.4 and rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 19:11:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:11:40 +0000 (UTC) Subject: rpms/pork/devel pork.spec,1.9,1.10 Message-ID: <20090726191140.232C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26675 Modified Files: pork.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pork.spec =================================================================== RCS file: /cvs/pkgs/rpms/pork/devel/pork.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pork.spec 27 Feb 2009 01:35:25 -0000 1.9 +++ pork.spec 26 Jul 2009 19:11:39 -0000 1.10 @@ -1,6 +1,6 @@ Name: pork Version: 0.99.8.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Console based AIM client that looks like ircII Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.8.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.99.8.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:11:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:11:54 +0000 (UTC) Subject: rpms/portaudio/devel portaudio.spec,1.17,1.18 Message-ID: <20090726191154.89C5111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/portaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26871 Modified Files: portaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: portaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/portaudio/devel/portaudio.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- portaudio.spec 27 Feb 2009 01:36:21 -0000 1.17 +++ portaudio.spec 26 Jul 2009 19:11:54 -0000 1.18 @@ -3,7 +3,7 @@ Summary: Free, cross platform, open-source, audio I/O library Name: portaudio Version: 19 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.portaudio.com/ @@ -80,6 +80,9 @@ doxygen %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 19-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 19-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:12:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:12:18 +0000 (UTC) Subject: rpms/portecle/devel portecle.spec,1.6,1.7 Message-ID: <20090726191218.A447511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/portecle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27095 Modified Files: portecle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: portecle.spec =================================================================== RCS file: /cvs/pkgs/rpms/portecle/devel/portecle.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- portecle.spec 20 Jul 2009 18:02:17 -0000 1.6 +++ portecle.spec 26 Jul 2009 19:12:17 -0000 1.7 @@ -2,7 +2,7 @@ Name: portecle Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Multipurpose keystore and certificate tool Group: Applications/System @@ -81,6 +81,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ville Skytt? - 1.4-3 - Drop excess arguments to %%jpackage_script. From jkeating at fedoraproject.org Sun Jul 26 19:12:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:12:37 +0000 (UTC) Subject: rpms/portmidi/devel portmidi.spec,1.2,1.3 Message-ID: <20090726191237.6AA4F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/portmidi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27363 Modified Files: portmidi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: portmidi.spec =================================================================== RCS file: /cvs/pkgs/rpms/portmidi/devel/portmidi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- portmidi.spec 24 Feb 2009 20:29:24 -0000 1.2 +++ portmidi.spec 26 Jul 2009 19:12:37 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Real-time Midi I/O Library Name: portmidi Version: 131 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: System Environment/Libraries URL: http://portmedia.sourceforge.net/ @@ -94,6 +94,9 @@ rm -rf %{buildroot} %{_libdir}/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 131-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Orcan Ogetbil 131-3 - Include pmutil.h in the devel package From jkeating at fedoraproject.org Sun Jul 26 19:12:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:12:54 +0000 (UTC) Subject: rpms/portreserve/devel portreserve.spec,1.7,1.8 Message-ID: <20090726191254.5FBED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/portreserve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27604 Modified Files: portreserve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: portreserve.spec =================================================================== RCS file: /cvs/pkgs/rpms/portreserve/devel/portreserve.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- portreserve.spec 27 Feb 2009 10:12:59 -0000 1.7 +++ portreserve.spec 26 Jul 2009 19:12:54 -0000 1.8 @@ -1,7 +1,7 @@ Summary: TCP port reservation utility Name: portreserve Version: 0.0.4 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://cyberelk.net/tim/portreserve/ @@ -61,6 +61,9 @@ fi %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Tim Waugh 0.0.4-1 - 0.0.4: - Fixed initscript so that it will not be reordered to start after From jkeating at fedoraproject.org Sun Jul 26 19:13:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:13:13 +0000 (UTC) Subject: rpms/postal/devel postal.spec,1.1,1.2 Message-ID: <20090726191313.7500E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27782 Modified Files: postal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postal.spec =================================================================== RCS file: /cvs/pkgs/rpms/postal/devel/postal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- postal.spec 14 May 2009 05:36:26 -0000 1.1 +++ postal.spec 26 Jul 2009 19:13:12 -0000 1.2 @@ -1,6 +1,6 @@ Name: postal Version: 0.70 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tools for benchmarking mail servers Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %doc credits.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.70-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 David Nalley - 0.70-4 - added argument to make to preserve timestamps - added a few docs that were missing From jkeating at fedoraproject.org Sun Jul 26 19:13:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:13:31 +0000 (UTC) Subject: rpms/poster/devel poster.spec,1.6,1.7 Message-ID: <20090726191331.C58CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28043 Modified Files: poster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poster.spec =================================================================== RCS file: /cvs/pkgs/rpms/poster/devel/poster.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- poster.spec 27 Feb 2009 01:39:14 -0000 1.6 +++ poster.spec 26 Jul 2009 19:13:31 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Scales PostScript images to span multiple pages Name: poster Version: 20060221 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/Publishing Source: ftp://ftp.kde.org/pub/kde/printing/%{name}.tar.bz2 @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING ChangeLog README manual.ps %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20060221-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20060221-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:13:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:13:47 +0000 (UTC) Subject: rpms/posterazor/devel posterazor.spec,1.3,1.4 Message-ID: <20090726191347.64A6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/posterazor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28282 Modified Files: posterazor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: posterazor.spec =================================================================== RCS file: /cvs/pkgs/rpms/posterazor/devel/posterazor.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- posterazor.spec 28 Feb 2009 18:27:53 -0000 1.3 +++ posterazor.spec 26 Jul 2009 19:13:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: posterazor Version: 1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Make your own poster Group: Applications/Publishing @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Nicoleau Fabien - 1.5-4 - Fix desktop file * Thu Feb 26 2009 Fedora Release Engineering - 1.5-3 From jkeating at fedoraproject.org Sun Jul 26 19:14:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:14:05 +0000 (UTC) Subject: rpms/postfix/devel postfix.spec,1.74,1.75 Message-ID: <20090726191405.1A01911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postfix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28634 Modified Files: postfix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postfix.spec =================================================================== RCS file: /cvs/pkgs/rpms/postfix/devel/postfix.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- postfix.spec 18 Jun 2009 15:39:37 -0000 1.74 +++ postfix.spec 26 Jul 2009 19:14:04 -0000 1.75 @@ -40,7 +40,7 @@ Name: postfix Summary: Postfix Mail Transport Agent Version: 2.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 2 Group: System Environment/Daemons URL: http://www.postfix.org @@ -495,6 +495,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:2.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Miroslav Lichvar 2:2.6.2-1 - update to 2.6.2 From jkeating at fedoraproject.org Sun Jul 26 19:14:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:14:21 +0000 (UTC) Subject: rpms/postgis/devel postgis.spec,1.22,1.23 Message-ID: <20090726191421.F064311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29174 Modified Files: postgis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgis.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgis/devel/postgis.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- postgis.spec 6 Jul 2009 04:22:12 -0000 1.22 +++ postgis.spec 26 Jul 2009 19:14:21 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Geographic Information Systems Extensions to PostgreSQL Name: postgis Version: 1.4.0rc1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Databases Source0: http://postgis.refractions.net/download/%{name}-%{version}.tar.gz @@ -164,6 +164,9 @@ rm -rf %{buildroot} %doc postgis*.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.0rc1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Devrim GUNDUZ - 1.4.0rc1-1 - Update to 1.4.0rc1 - Fix spec for 1.4 From jkeating at fedoraproject.org Sun Jul 26 19:14:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:14:39 +0000 (UTC) Subject: rpms/postgresql/devel postgresql.spec,1.111,1.112 Message-ID: <20090726191439.AA09F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29511 Modified Files: postgresql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql/devel/postgresql.spec,v retrieving revision 1.111 retrieving revision 1.112 diff -u -p -r1.111 -r1.112 --- postgresql.spec 2 Jul 2009 00:34:17 -0000 1.111 +++ postgresql.spec 26 Jul 2009 19:14:39 -0000 1.112 @@ -84,7 +84,7 @@ Summary: PostgreSQL client programs and libraries Name: postgresql Version: 8.3.7 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/Databases Url: http://www.postgresql.org/ @@ -870,6 +870,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Tom Lane 8.3.7-1 - Update to PostgreSQL 8.3.7, for various fixes described at http://www.postgresql.org/docs/8.3/static/release-8-3-7.html From jkeating at fedoraproject.org Sun Jul 26 19:14:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:14:56 +0000 (UTC) Subject: rpms/postgresql-dbi-link/devel postgresql-dbi-link.spec,1.5,1.6 Message-ID: <20090726191456.C177511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-dbi-link/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29705 Modified Files: postgresql-dbi-link.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-dbi-link.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-dbi-link/devel/postgresql-dbi-link.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- postgresql-dbi-link.spec 27 Feb 2009 01:44:48 -0000 1.5 +++ postgresql-dbi-link.spec 26 Jul 2009 19:14:56 -0000 1.6 @@ -2,7 +2,7 @@ Name: postgresql-%{sname} Version: 2.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Partial implementation of the SQL/MED portion of the SQL:2003 specification Group: Applications/Databases License: BSD @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/*.sql %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:15:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:15:12 +0000 (UTC) Subject: rpms/postgresql-ip4r/devel postgresql-ip4r.spec,1.5,1.6 Message-ID: <20090726191512.3A13511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-ip4r/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29881 Modified Files: postgresql-ip4r.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-ip4r.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-ip4r/devel/postgresql-ip4r.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- postgresql-ip4r.spec 27 Feb 2009 01:45:41 -0000 1.5 +++ postgresql-ip4r.spec 26 Jul 2009 19:15:11 -0000 1.6 @@ -3,7 +3,7 @@ Summary: IPv4 and IPv4 range index types for PostgreSQL Name: postgresql-%{sname} Version: 1.03 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1581/%{sname}-%{version}.tar.gz @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_libdir}/pgsql/%{sname}.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:15:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:15:31 +0000 (UTC) Subject: rpms/postgresql-jdbc/devel postgresql-jdbc.spec,1.17,1.18 Message-ID: <20090726191531.05E7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-jdbc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30141 Modified Files: postgresql-jdbc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-jdbc.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-jdbc/devel/postgresql-jdbc.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- postgresql-jdbc.spec 21 Apr 2009 18:20:39 -0000 1.17 +++ postgresql-jdbc.spec 26 Jul 2009 19:15:30 -0000 1.18 @@ -38,7 +38,7 @@ Summary: JDBC driver for PostgreSQL Name: postgresql-jdbc Version: 8.3.603 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 0 License: BSD Group: Applications/Databases @@ -139,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:8.3.603-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Tom Lane 8.3.603-3 - Avoid multilib conflict caused by overeager attempt to rebuild translations From jkeating at fedoraproject.org Sun Jul 26 19:15:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:15:48 +0000 (UTC) Subject: rpms/postgresql-odbc/devel postgresql-odbc.spec,1.26,1.27 Message-ID: <20090726191548.8E15F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-odbc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30305 Modified Files: postgresql-odbc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-odbc.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-odbc/devel/postgresql-odbc.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- postgresql-odbc.spec 27 Feb 2009 01:47:33 -0000 1.26 +++ postgresql-odbc.spec 26 Jul 2009 19:15:48 -0000 1.27 @@ -1,7 +1,7 @@ Name: postgresql-odbc Summary: PostgreSQL ODBC driver Version: 08.03.0200 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Applications/Databases URL: http://psqlodbc.projects.postgresql.org/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %doc license.txt readme.txt docs/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 08.03.0200-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 08.03.0200-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:16:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:16:04 +0000 (UTC) Subject: rpms/postgresql-odbcng/devel postgresql-odbcng.spec,1.6,1.7 Message-ID: <20090726191604.B4CC111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-odbcng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30491 Modified Files: postgresql-odbcng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-odbcng.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-odbcng/devel/postgresql-odbcng.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- postgresql-odbcng.spec 9 Jun 2009 17:59:45 -0000 1.6 +++ postgresql-odbcng.spec 26 Jul 2009 19:16:04 -0000 1.7 @@ -3,7 +3,7 @@ Name: postgresql-%{sname} Summary: PostgreSQL ODBCng driver Version: 0.99.101 -Release: 0.2.test1%{?dist} +Release: 0.3.test1%{?dist} License: LGPLv2 Group: Applications/Databases Url: http://projects.commandprompt.com/public/%{sname} @@ -57,6 +57,9 @@ rm -rf %{buildroot} %doc COPYING COPYRIGHT LICENSE.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.101-0.3.test1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Ville Skytt? - 0.99.101-0.2.test1 - Patch to generate useful debuginfo subpackage (#499893). From jkeating at fedoraproject.org Sun Jul 26 19:16:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:16:23 +0000 (UTC) Subject: rpms/postgresql-pgpool-II/devel postgresql-pgpool-II.spec, 1.33, 1.34 Message-ID: <20090726191623.0F91211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-pgpool-II/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30704 Modified Files: postgresql-pgpool-II.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-pgpool-II.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-pgpool-II/devel/postgresql-pgpool-II.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- postgresql-pgpool-II.spec 7 May 2009 10:42:03 -0000 1.33 +++ postgresql-pgpool-II.spec 26 Jul 2009 19:16:22 -0000 1.34 @@ -3,7 +3,7 @@ Summary: Pgpool is a connection pooling/replication server for PostgreSQL Name: postgresql-%{short_name} Version: 2.2.2 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/Databases URL: http://pgpool.projects.PostgreSQL.org @@ -106,6 +106,9 @@ chkconfig --add pgpool %{_libdir}/libpcp.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Devrim Gunduz 2.2.2-1 - Update to 2.2.2 From jkeating at fedoraproject.org Sun Jul 26 19:16:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:16:43 +0000 (UTC) Subject: rpms/postgresql-pgpool-ha/devel postgresql-pgpool-ha.spec,1.4,1.5 Message-ID: <20090726191643.167A111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-pgpool-ha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30862 Modified Files: postgresql-pgpool-ha.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-pgpool-ha.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-pgpool-ha/devel/postgresql-pgpool-ha.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- postgresql-pgpool-ha.spec 24 Apr 2009 10:18:04 -0000 1.4 +++ postgresql-pgpool-ha.spec 26 Jul 2009 19:16:42 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Pgpool-HA uses heartbeat to keep pgpool from being a single point of failure Name: postgresql-%{short_name} Version: 1.1.0 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD Group: Applications/Databases URL: http://pgpool.projects.PostgreSQL.org @@ -51,6 +51,9 @@ rm -rf %{buildroot} %doc AUTHORS COPYING INSTALL README.ja ChangeLog doc README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Milos Jakubicek - 1.1.0-7 - Fix FTBFS: proper heartbeat location From jkeating at fedoraproject.org Sun Jul 26 19:16:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:16:59 +0000 (UTC) Subject: rpms/postgresql-pgpoolAdmin/devel postgresql-pgpoolAdmin.spec, 1.7, 1.8 Message-ID: <20090726191659.57E8E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-pgpoolAdmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31056 Modified Files: postgresql-pgpoolAdmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-pgpoolAdmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-pgpoolAdmin/devel/postgresql-pgpoolAdmin.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- postgresql-pgpoolAdmin.spec 23 Mar 2009 18:06:27 -0000 1.7 +++ postgresql-pgpoolAdmin.spec 26 Jul 2009 19:16:58 -0000 1.8 @@ -3,7 +3,7 @@ Summary: PgpoolAdmin - web-based pgpool administration Name: postgresql-pgpoolAdmin Version: 2.2 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/Databases URL: http://pgpool.projects.postgresql.org @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_pgpoolAdmindir}/screen.css %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Devrim Gunduz 2.2-1 - Update to 2.2 - Update spec and patches so that pgpoolAdmin works against pgpool 2.2 From jkeating at fedoraproject.org Sun Jul 26 19:17:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:17:20 +0000 (UTC) Subject: rpms/postgresql-plruby/devel postgresql-plruby.spec,1.5,1.6 Message-ID: <20090726191721.19D2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-plruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31230 Modified Files: postgresql-plruby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-plruby.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-plruby/devel/postgresql-plruby.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- postgresql-plruby.spec 27 Feb 2009 01:53:03 -0000 1.5 +++ postgresql-plruby.spec 26 Jul 2009 19:17:20 -0000 1.6 @@ -4,7 +4,7 @@ Summary: PostgreSQL Ruby Procedural Language Name: postgresql-%{sname} Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Source0: ftp://moulon.inra.fr/pub/ruby/%{sname}-%{version}.tar.gz License: Ruby or GPL+ Group: Applications/Databases @@ -64,6 +64,9 @@ rm -rf %{buildroot} %doc docs/plruby.rb %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:17:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:17:34 +0000 (UTC) Subject: rpms/postgresql-table_log/devel postgresql-table_log.spec,1.6,1.7 Message-ID: <20090726191734.4AD8511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql-table_log/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31430 Modified Files: postgresql-table_log.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql-table_log.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql-table_log/devel/postgresql-table_log.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- postgresql-table_log.spec 27 Feb 2009 01:53:57 -0000 1.6 +++ postgresql-table_log.spec 26 Jul 2009 19:17:34 -0000 1.7 @@ -3,7 +3,7 @@ Summary: Log data changes in a PostgreSQL table Name: postgresql-%{sname} Version: 0.4.4 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: Applications/Databases Source0: http://pgfoundry.org/frs/download.php/1387/%{sname}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{_libdir}/pgsql/%{sname}.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:17:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:17:47 +0000 (UTC) Subject: rpms/postgresql_autodoc/devel postgresql_autodoc.spec,1.3,1.4 Message-ID: <20090726191747.D3F7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgresql_autodoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31629 Modified Files: postgresql_autodoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgresql_autodoc/devel/postgresql_autodoc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- postgresql_autodoc.spec 27 Feb 2009 01:54:51 -0000 1.3 +++ postgresql_autodoc.spec 26 Jul 2009 19:17:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: postgresql_autodoc Version: 1.31 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases License: BSD @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.31-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:18:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:18:02 +0000 (UTC) Subject: rpms/postgrey/devel postgrey.spec,1.6,1.7 Message-ID: <20090726191802.033B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postgrey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31787 Modified Files: postgrey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postgrey.spec =================================================================== RCS file: /cvs/pkgs/rpms/postgrey/devel/postgrey.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- postgrey.spec 12 Apr 2009 15:18:17 -0000 1.6 +++ postgrey.spec 26 Jul 2009 19:18:01 -0000 1.7 @@ -3,7 +3,7 @@ Summary: Postfix Greylisting Policy Server Name: postgrey Version: 1.32 -Release: 1%{?dist} +Release: 2%{?dist} # File headers only state "GNU GPL", but the LICENSE sections state v2 and "any # later version" License: GPLv2+ @@ -112,6 +112,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 1.32-1 - Update to 1.32. - Update init script to the new style. From jkeating at fedoraproject.org Sun Jul 26 19:18:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:18:14 +0000 (UTC) Subject: rpms/postr/devel postr.spec,1.15,1.16 Message-ID: <20090726191814.B1A5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/postr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31916 Modified Files: postr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: postr.spec =================================================================== RCS file: /cvs/pkgs/rpms/postr/devel/postr.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- postr.spec 27 Feb 2009 01:56:43 -0000 1.15 +++ postr.spec 26 Jul 2009 19:18:14 -0000 1.16 @@ -2,7 +2,7 @@ Name: postr Version: 0.12.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Flickr uploader Group: Applications/Multimedia @@ -71,6 +71,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:18:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:18:28 +0000 (UTC) Subject: rpms/pothana2000-fonts/devel pothana2000-fonts.spec,1.1,1.2 Message-ID: <20090726191828.D42A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pothana2000-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32064 Modified Files: pothana2000-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pothana2000-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/pothana2000-fonts/devel/pothana2000-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pothana2000-fonts.spec 16 Jul 2009 09:01:53 -0000 1.1 +++ pothana2000-fonts.spec 26 Jul 2009 19:18:28 -0000 1.2 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Unicode compliant OpenType font for Telugu Group: User Interface/X @@ -47,6 +47,9 @@ rm -fr %{buildroot} %doc gpl.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 - 1.3.1-2 - Fixed download URL From jkeating at fedoraproject.org Sun Jul 26 19:18:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:18:44 +0000 (UTC) Subject: rpms/poweradmin/devel poweradmin.spec,1.3,1.4 Message-ID: <20090726191844.BA79A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/poweradmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32278 Modified Files: poweradmin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: poweradmin.spec =================================================================== RCS file: /cvs/pkgs/rpms/poweradmin/devel/poweradmin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- poweradmin.spec 5 Jun 2009 12:04:46 -0000 1.3 +++ poweradmin.spec 26 Jul 2009 19:18:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: poweradmin Version: 2.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A friendly web-based DNS administration tool for Bert Hubert's PowerDNS server Group: Applications/Internet @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Ruben Kerkhof 2.1.3-1 - Upstream released new version From jkeating at fedoraproject.org Sun Jul 26 19:18:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:18:58 +0000 (UTC) Subject: rpms/powerman/devel powerman.spec,1.21,1.22 Message-ID: <20090726191858.F14D211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powerman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32474 Modified Files: powerman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powerman.spec =================================================================== RCS file: /cvs/pkgs/rpms/powerman/devel/powerman.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- powerman.spec 27 Feb 2009 01:58:31 -0000 1.21 +++ powerman.spec 26 Jul 2009 19:18:58 -0000 1.22 @@ -1,6 +1,6 @@ Name: powerman Version: 2.3.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: PowerMan - Power to the Cluster Group: Applications/System @@ -104,6 +104,9 @@ fi %{_libdir}/libpowerman.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:19:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:19:15 +0000 (UTC) Subject: rpms/powermanga/devel powermanga.spec,1.23,1.24 Message-ID: <20090726191915.9F8EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powermanga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32669 Modified Files: powermanga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powermanga.spec =================================================================== RCS file: /cvs/pkgs/rpms/powermanga/devel/powermanga.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- powermanga.spec 27 Feb 2009 01:59:24 -0000 1.23 +++ powermanga.spec 26 Jul 2009 19:19:14 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Arcade 2D shoot-them-up game Name: powermanga Version: 0.90 -Release: 5 +Release: 6 License: GPLv3+ Group: Amusements/Games URL: http://linux.tlk.fr/games/Powermanga/ @@ -92,6 +92,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.90-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.90-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:19:31 +0000 (UTC) Subject: rpms/powerpc-utils/devel powerpc-utils.spec,1.7,1.8 Message-ID: <20090726191931.169CF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powerpc-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv425 Modified Files: powerpc-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powerpc-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/powerpc-utils/devel/powerpc-utils.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- powerpc-utils.spec 6 Apr 2009 08:37:43 -0000 1.7 +++ powerpc-utils.spec 26 Jul 2009 19:19:30 -0000 1.8 @@ -1,6 +1,6 @@ Name: powerpc-utils Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utilities for PowerPC platforms Group: System Environment/Base @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Roman Rakus - 1.1.3-1 - new upstream version 1.1.3 From jkeating at fedoraproject.org Sun Jul 26 19:19:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:19:47 +0000 (UTC) Subject: rpms/powerpc-utils-papr/devel powerpc-utils-papr.spec,1.5,1.6 Message-ID: <20090726191947.AE7BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powerpc-utils-papr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv598 Modified Files: powerpc-utils-papr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powerpc-utils-papr.spec =================================================================== RCS file: /cvs/pkgs/rpms/powerpc-utils-papr/devel/powerpc-utils-papr.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- powerpc-utils-papr.spec 21 Apr 2009 12:17:03 -0000 1.5 +++ powerpc-utils-papr.spec 26 Jul 2009 19:19:47 -0000 1.6 @@ -1,6 +1,6 @@ Name: powerpc-utils-papr Version: 1.1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Utilities for IBM PowerPC PAPR platforms Group: System Environment/Base @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %doc README COPYRIGHT Changelog scripts/ibmvscsis.sh %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Roman Rakus - 1.1.6-1 - New upstream version 1.1.6 From jkeating at fedoraproject.org Sun Jul 26 19:20:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:20:02 +0000 (UTC) Subject: rpms/powertop/devel powertop.spec,1.20,1.21 Message-ID: <20090726192002.20BC111C0383@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powertop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv764 Modified Files: powertop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powertop.spec =================================================================== RCS file: /cvs/pkgs/rpms/powertop/devel/powertop.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- powertop.spec 27 Feb 2009 02:02:12 -0000 1.20 +++ powertop.spec 26 Jul 2009 19:20:01 -0000 1.21 @@ -1,6 +1,6 @@ Name: powertop Version: 1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Power consumption monitor Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/powertop.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:20:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:20:16 +0000 (UTC) Subject: rpms/powwow/devel powwow.spec,1.2,1.3 Message-ID: <20090726192016.3A42011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/powwow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv946 Modified Files: powwow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: powwow.spec =================================================================== RCS file: /cvs/pkgs/rpms/powwow/devel/powwow.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- powwow.spec 1 May 2009 22:34:32 -0000 1.2 +++ powwow.spec 26 Jul 2009 19:20:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: powwow Version: 1.2.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A console MUD client Group: Applications/Internet @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 02 2009 Kalev Lember - 1.2.15-1 - Update to powwow 1.2.15. From jkeating at fedoraproject.org Sun Jul 26 19:20:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:20:29 +0000 (UTC) Subject: rpms/pp3/devel pp3.spec,1.2,1.3 Message-ID: <20090726192029.D713411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pp3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1090 Modified Files: pp3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pp3.spec =================================================================== RCS file: /cvs/pkgs/rpms/pp3/devel/pp3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pp3.spec 27 Feb 2009 02:03:11 -0000 1.2 +++ pp3.spec 26 Jul 2009 19:20:29 -0000 1.3 @@ -1,6 +1,6 @@ Name: pp3 Version: 1.3.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Creation of sky charts in Postscript or PDF format Group: Applications/Engineering @@ -71,6 +71,9 @@ fi %exclude %{_infodir}/dir %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:20:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:20:46 +0000 (UTC) Subject: rpms/ppc64-utils/devel ppc64-utils.spec,1.35,1.36 Message-ID: <20090726192046.E257911C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ppc64-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1265 Modified Files: ppc64-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ppc64-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/ppc64-utils/devel/ppc64-utils.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- ppc64-utils.spec 25 Feb 2009 17:04:33 -0000 1.35 +++ ppc64-utils.spec 26 Jul 2009 19:20:46 -0000 1.36 @@ -2,7 +2,7 @@ Summary: Linux/PPC64 specific utilities Name: ppc64-utils Version: 0.14 -Release: 4%{?dist} +Release: 5%{?dist} # La la la. There is nothing here any more. License: GPLv2 @@ -34,6 +34,9 @@ mkdir -p $RPM_BUILD_ROOT %files %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Josh Boyer - 0.14-4 - Change Requires to ps3-utils as the package was renamed From jkeating at fedoraproject.org Sun Jul 26 19:21:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:21:01 +0000 (UTC) Subject: rpms/ppl/devel ppl.spec,1.32,1.33 Message-ID: <20090726192101.2F1E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ppl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1465 Modified Files: ppl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ppl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ppl/devel/ppl.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- ppl.spec 12 Jul 2009 14:42:15 -0000 1.32 +++ ppl.spec 26 Jul 2009 19:21:00 -0000 1.33 @@ -2,7 +2,7 @@ Name: ppl Version: 0.10.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Parma Polyhedra Library: a library of numerical abstractions Group: Development/Libraries @@ -416,6 +416,9 @@ mv \ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Roberto Bagnara 0.10.2-4 - Force rebuild. From jkeating at fedoraproject.org Sun Jul 26 19:21:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:21:16 +0000 (UTC) Subject: rpms/ppp/devel ppp.spec,1.49,1.50 Message-ID: <20090726192116.C058611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ppp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1690 Modified Files: ppp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ppp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ppp/devel/ppp.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- ppp.spec 6 Mar 2009 07:42:10 -0000 1.49 +++ ppp.spec 26 Jul 2009 19:21:16 -0000 1.50 @@ -1,7 +1,7 @@ Summary: The PPP (Point-to-Point Protocol) daemon. Name: ppp Version: 2.4.4 -Release: 11%{?dist} +Release: 12%{?dist} License: BSD and LGPLv2+ and GPLv2+ and Public Domain Group: System Environment/Daemons Source0: ftp://ftp.samba.org/pub/ppp/ppp-%{version}.tar.gz @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %doc PLUGINS %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 - Jiri Skala 2.4.4-11 - fixed #488764 - package upgrade should not replace configuration files From jkeating at fedoraproject.org Sun Jul 26 19:21:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:21:32 +0000 (UTC) Subject: rpms/pptp/devel pptp.spec,1.16,1.17 Message-ID: <20090726192132.49F8311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pptp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1839 Modified Files: pptp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pptp.spec =================================================================== RCS file: /cvs/pkgs/rpms/pptp/devel/pptp.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pptp.spec 1 Jun 2009 14:32:11 -0000 1.16 +++ pptp.spec 26 Jul 2009 19:21:32 -0000 1.17 @@ -1,6 +1,6 @@ Name: pptp Version: 1.7.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Point-to-Point Tunneling Protocol (PPTP) Client Group: Applications/Internet License: GPLv2+ @@ -71,6 +71,9 @@ by employers and some cable and ADSL ser %config(noreplace) /etc/ppp/options.pptp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Paul Howarth 1.7.2-6 - Don't check for MPPE capability in kernel and pppd unless we're creating a tunnel that requires encryption From jkeating at fedoraproject.org Sun Jul 26 19:21:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:21:47 +0000 (UTC) Subject: rpms/prboom/devel prboom.spec,1.17,1.18 Message-ID: <20090726192147.7A8F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prboom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2004 Modified Files: prboom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prboom.spec =================================================================== RCS file: /cvs/pkgs/rpms/prboom/devel/prboom.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- prboom.spec 27 Feb 2009 02:07:51 -0000 1.17 +++ prboom.spec 26 Jul 2009 19:21:47 -0000 1.18 @@ -2,7 +2,7 @@ Name: prboom Version: 2.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Open source port of the DOOM game engine Group: Amusements/Games @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/README.compat doc/README.demos doc/MBF.txt doc/MBFFAQ.txt doc/boom.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:22:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:22:00 +0000 (UTC) Subject: rpms/prcsys/devel prcsys.spec,1.4,1.5 Message-ID: <20090726192200.A2DF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prcsys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2114 Modified Files: prcsys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prcsys.spec =================================================================== RCS file: /cvs/pkgs/rpms/prcsys/devel/prcsys.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- prcsys.spec 27 Feb 2009 02:08:48 -0000 1.4 +++ prcsys.spec 26 Jul 2009 19:22:00 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Parallel rc with LSB dependency resolver Name: prcsys Version: 0 -Release: 0.8.20070622svn%{?dist} +Release: 0.9.20070622svn%{?dist} # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: # svn export -r 165 http://zarb.org/users/svn/trem/prcsys/trunk/ prcsys @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.9.20070622svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0-0.8.20070622svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:22:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:22:16 +0000 (UTC) Subject: rpms/prctl/devel prctl.spec,1.20,1.21 Message-ID: <20090726192216.CADE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2269 Modified Files: prctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/prctl/devel/prctl.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- prctl.spec 27 Feb 2009 02:09:45 -0000 1.20 +++ prctl.spec 26 Jul 2009 19:22:16 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Utility to perform process operations Name: prctl Version: 1.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/System URL: http://sourceforge.net/projects/prctl @@ -41,6 +41,9 @@ make install DESTDIR=$RPM_BUILD_ROOT %{_mandir}/man1/%{name}.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:22:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:22:29 +0000 (UTC) Subject: rpms/preferences-menus/devel preferences-menus.spec,1.1,1.2 Message-ID: <20090726192229.C262511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/preferences-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2444 Modified Files: preferences-menus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: preferences-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/preferences-menus/devel/preferences-menus.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- preferences-menus.spec 27 Feb 2009 03:07:30 -0000 1.1 +++ preferences-menus.spec 26 Jul 2009 19:22:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: preferences-menus Version: 1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Categorized submenus for the Preferences menu Group: User Interface/Desktops @@ -33,5 +33,8 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/xdg/menus/preferences-merged/preferences-categories.menu %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Matthias Clasen 1-1 - Created out of nothing From jkeating at fedoraproject.org Sun Jul 26 19:22:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:22:46 +0000 (UTC) Subject: rpms/prelink/devel prelink.spec,1.56,1.57 Message-ID: <20090726192246.C54B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prelink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2605 Modified Files: prelink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prelink.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelink/devel/prelink.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- prelink.spec 9 Jul 2009 09:03:41 -0000 1.56 +++ prelink.spec 26 Jul 2009 19:22:46 -0000 1.57 @@ -1,7 +1,7 @@ Summary: An ELF prelinking utility Name: prelink Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base %define date 20090709 @@ -85,6 +85,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/log/prelink/prelink.log %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Jakub Jelinek 0.4.2-1 - don't look for *_IRELATIVE relocations in .gnu.conflict section in binaries From jkeating at fedoraproject.org Sun Jul 26 19:23:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:23:02 +0000 (UTC) Subject: rpms/preload/devel preload.spec,1.9,1.10 Message-ID: <20090726192302.2BA9211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/preload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2786 Modified Files: preload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: preload.spec =================================================================== RCS file: /cvs/pkgs/rpms/preload/devel/preload.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- preload.spec 15 Apr 2009 22:31:48 -0000 1.9 +++ preload.spec 26 Jul 2009 19:23:02 -0000 1.10 @@ -1,6 +1,6 @@ Name: preload Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Preload is an adaptive readahead daemon Group: Applications/System @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 15 2009 Behdad Esfahbod - 0.6.4-1 - Update to 0.6.4 From jkeating at fedoraproject.org Sun Jul 26 19:23:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:23:19 +0000 (UTC) Subject: rpms/prelude-correlator/devel prelude-correlator.spec,1.11,1.12 Message-ID: <20090726192319.CB5C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prelude-correlator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2976 Modified Files: prelude-correlator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prelude-correlator.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-correlator/devel/prelude-correlator.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- prelude-correlator.spec 13 Jul 2009 15:02:09 -0000 1.11 +++ prelude-correlator.spec 26 Jul 2009 19:23:19 -0000 1.12 @@ -5,7 +5,7 @@ Name: prelude-correlator Version: 0.9.0 -Release: 0.8.%{prelude_rel}%{?dist} +Release: 0.9.%{prelude_rel}%{?dist} Summary: Real time correlator of events received by Prelude Manager Group: Applications/Internet @@ -84,6 +84,9 @@ fi %{python_sitelib}/prelude_correlator*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-0.9.beta6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Steve Grubb 0.9.0-0.8.beta6 - New beta release From jkeating at fedoraproject.org Sun Jul 26 19:23:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:23:34 +0000 (UTC) Subject: rpms/prelude-lml/devel prelude-lml.spec,1.20,1.21 Message-ID: <20090726192334.EA4B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prelude-lml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3143 Modified Files: prelude-lml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prelude-lml.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-lml/devel/prelude-lml.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- prelude-lml.spec 21 Jul 2009 17:09:58 -0000 1.20 +++ prelude-lml.spec 26 Jul 2009 19:23:34 -0000 1.21 @@ -1,6 +1,6 @@ Name: prelude-lml Version: 0.9.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The prelude log analyzer Group: System Environment/Libraries @@ -105,6 +105,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Steve Grubb 0.9.15-1 - new upstream release From jkeating at fedoraproject.org Sun Jul 26 19:23:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:23:49 +0000 (UTC) Subject: rpms/prelude-manager/devel prelude-manager.spec,1.15,1.16 Message-ID: <20090726192349.A458111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prelude-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3298 Modified Files: prelude-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prelude-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-manager/devel/prelude-manager.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- prelude-manager.spec 10 Jul 2009 15:20:35 -0000 1.15 +++ prelude-manager.spec 26 Jul 2009 19:23:49 -0000 1.16 @@ -1,6 +1,6 @@ Name: prelude-manager Version: 0.9.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Prelude-Manager Group: Applications/Internet @@ -157,6 +157,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Steve Grubb 0.9.15-1 - new upstream version From jkeating at fedoraproject.org Sun Jul 26 19:24:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:24:17 +0000 (UTC) Subject: rpms/presto/devel presto.spec,1.3,1.4 Message-ID: <20090726192417.A14CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/presto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3626 Modified Files: presto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: presto.spec =================================================================== RCS file: /cvs/pkgs/rpms/presto/devel/presto.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- presto.spec 27 Feb 2009 02:16:27 -0000 1.3 +++ presto.spec 26 Jul 2009 19:24:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: presto Version: 0.1.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A tilemap engine using the Allegro game programming library Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:24:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:24:04 +0000 (UTC) Subject: rpms/prelude-notify/devel prelude-notify.spec,1.6,1.7 Message-ID: <20090726192404.401F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prelude-notify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3441 Modified Files: prelude-notify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prelude-notify.spec =================================================================== RCS file: /cvs/pkgs/rpms/prelude-notify/devel/prelude-notify.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- prelude-notify.spec 27 Feb 2009 02:15:31 -0000 1.6 +++ prelude-notify.spec 26 Jul 2009 19:24:03 -0000 1.7 @@ -5,7 +5,7 @@ Name: prelude-notify Version: 0.9 -Release: 0.3.%{alphatag}%{snapshot}%{?dist} +Release: 0.4.%{alphatag}%{snapshot}%{?dist} Summary: Prelude Notification Applet License: GPLv2+ @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-0.4.20080814svn10860 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9-0.3.20080814svn10860 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:24:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:24:31 +0000 (UTC) Subject: rpms/presto-utils/devel presto-utils.spec,1.11,1.12 Message-ID: <20090726192431.E7D4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/presto-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3803 Modified Files: presto-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: presto-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/presto-utils/devel/presto-utils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- presto-utils.spec 27 Feb 2009 02:17:21 -0000 1.11 +++ presto-utils.spec 26 Jul 2009 19:24:31 -0000 1.12 @@ -3,7 +3,7 @@ Summary: Tools for creating presto repositories Name: presto-utils Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Tools Source: http://www.lesbg.com/jdieter/presto/%{name}-%{version}.tar.bz2 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:24:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:24:46 +0000 (UTC) Subject: rpms/preupgrade/devel preupgrade.spec,1.16,1.17 Message-ID: <20090726192446.5595411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/preupgrade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3991 Modified Files: preupgrade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: preupgrade.spec =================================================================== RCS file: /cvs/pkgs/rpms/preupgrade/devel/preupgrade.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- preupgrade.spec 9 Jun 2009 21:43:03 -0000 1.16 +++ preupgrade.spec 26 Jul 2009 19:24:46 -0000 1.17 @@ -2,7 +2,7 @@ Summary: Prepares a system for an upgrade Name: preupgrade Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source: https://fedorahosted.org/releases/p/r/preupgrade/%{name}-%{version}.tar.bz2 @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Will Woods - 1.1.0-1 - Bump version for 1.1.0 release From jkeating at fedoraproject.org Sun Jul 26 19:25:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:25:02 +0000 (UTC) Subject: rpms/prewikka/devel prewikka.spec,1.11,1.12 Message-ID: <20090726192502.6654D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prewikka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4146 Modified Files: prewikka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prewikka.spec =================================================================== RCS file: /cvs/pkgs/rpms/prewikka/devel/prewikka.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- prewikka.spec 9 Jul 2009 19:48:23 -0000 1.11 +++ prewikka.spec 26 Jul 2009 19:25:02 -0000 1.12 @@ -3,7 +3,7 @@ Name: prewikka Version: 0.9.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical front-end analysis console for the Prelude Hybrid IDS Framework Group: Applications/Internet License: GPLv2+ @@ -57,6 +57,9 @@ rm -rf %{buildroot} %doc AUTHORS README NEWS HACKING.README README.fedora %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Steve Grubb 0.9.17-1 - new upstream release From jkeating at fedoraproject.org Sun Jul 26 19:25:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:25:16 +0000 (UTC) Subject: rpms/primer3/devel primer3.spec,1.2,1.3 Message-ID: <20090726192516.BAEC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/primer3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4329 Modified Files: primer3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: primer3.spec =================================================================== RCS file: /cvs/pkgs/rpms/primer3/devel/primer3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- primer3.spec 27 Feb 2009 02:20:13 -0000 1.2 +++ primer3.spec 26 Jul 2009 19:25:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: primer3 Version: 1.1.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: PCR primer design tool Group: Applications/Productivity @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ntdpal %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:25:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:25:30 +0000 (UTC) Subject: rpms/printer-filters/devel printer-filters.spec,1.4,1.5 Message-ID: <20090726192530.D0DFD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/printer-filters/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4525 Modified Files: printer-filters.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: printer-filters.spec =================================================================== RCS file: /cvs/pkgs/rpms/printer-filters/devel/printer-filters.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- printer-filters.spec 22 Jul 2009 21:19:25 -0000 1.4 +++ printer-filters.spec 26 Jul 2009 19:25:30 -0000 1.5 @@ -1,6 +1,6 @@ Name: printer-filters Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Collection of filters for various printer drivers Group: System Environment/Libraries @@ -30,6 +30,9 @@ ensures that all printer drivers availab require external filters will work. %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Adam Jackson 1.1-3 - Un-Requires: netpbm-progs, none of the foomatic ppds require it. From jkeating at fedoraproject.org Sun Jul 26 19:25:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:25:46 +0000 (UTC) Subject: rpms/printoxx/devel printoxx.spec,1.6,1.7 Message-ID: <20090726192546.3443611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/printoxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4700 Modified Files: printoxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: printoxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/printoxx/devel/printoxx.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- printoxx.spec 25 Feb 2009 13:53:51 -0000 1.6 +++ printoxx.spec 26 Jul 2009 19:25:46 -0000 1.7 @@ -1,6 +1,6 @@ Name: printoxx Version: 1.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Print image files Group: Applications/Multimedia @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Pavel Alexeev - 1.8.1-2 - Step to version 1.8.1 - Adjust Source0 url. From jkeating at fedoraproject.org Sun Jul 26 19:26:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:26:02 +0000 (UTC) Subject: rpms/privoxy/devel privoxy.spec,1.28,1.29 Message-ID: <20090726192602.9099811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/privoxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4843 Modified Files: privoxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: privoxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/privoxy/devel/privoxy.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- privoxy.spec 15 Jun 2009 14:43:13 -0000 1.28 +++ privoxy.spec 26 Jul 2009 19:26:02 -0000 1.29 @@ -6,7 +6,7 @@ Name: privoxy Version: 3.0.13 -Release: beta.1%{?dist} +Release: beta.1%{?dist}.1 Summary: Privacy enhancing proxy License: GPLv2+ Source0: http://downloads.sourceforge.net/ijbswa/%{name}-%{version}-%{beta_or_stable}-src.tar.gz @@ -114,6 +114,9 @@ fi #doc/source/developer-manual doc/source/faq doc/source/user-manual %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.13-beta.1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Karsten Hopp 3.0.13-beta.1 - update to 3.0.13-beta - drop obsolete patches From jkeating at fedoraproject.org Sun Jul 26 19:26:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:26:18 +0000 (UTC) Subject: rpms/procbench/devel procbench.spec,1.3,1.4 Message-ID: <20090726192618.3017E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/procbench/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5039 Modified Files: procbench.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: procbench.spec =================================================================== RCS file: /cvs/pkgs/rpms/procbench/devel/procbench.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- procbench.spec 4 Mar 2009 23:29:56 -0000 1.3 +++ procbench.spec 26 Jul 2009 19:26:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: procbench Version: 0.8.2a -Release: 4%{?dist} +Release: 5%{?dist} Summary: Multiplatform information tool and CPU benchmark for x86 procs Group: Applications/Text @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2a-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Caol?n McNamara - 0.8.2a-4 - include stdio.h for printf From jkeating at fedoraproject.org Sun Jul 26 19:26:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:26:33 +0000 (UTC) Subject: rpms/procinfo/devel procinfo.spec,1.27,1.28 Message-ID: <20090726192633.85F6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/procinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5192 Modified Files: procinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: procinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/procinfo/devel/procinfo.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- procinfo.spec 27 Feb 2009 02:24:05 -0000 1.27 +++ procinfo.spec 26 Jul 2009 19:26:33 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A tool for gathering and displaying system information. Name: procinfo Version: 18 -Release: 24%{dist} +Release: 25%{dist} License: GPL+ Group: Applications/System Source: ftp://ftp.cistron.nl/pub/people/00-OLD/svm/%{name}-%{version}.tar.gz @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/socklist.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 18-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 18-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:26:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:26:48 +0000 (UTC) Subject: rpms/procinfo-ng/devel procinfo-ng.spec,1.2,1.3 Message-ID: <20090726192648.D2F2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/procinfo-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5372 Modified Files: procinfo-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: procinfo-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/procinfo-ng/devel/procinfo-ng.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- procinfo-ng.spec 27 Feb 2009 02:24:58 -0000 1.2 +++ procinfo-ng.spec 26 Jul 2009 19:26:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: procinfo-ng Version: 2.0.217 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Console-based system monitoring utility Group: Applications/System @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.217-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.217-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:27:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:27:08 +0000 (UTC) Subject: rpms/procmail/devel procmail.spec,1.27,1.28 Message-ID: <20090726192708.14D9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/procmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5538 Modified Files: procmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: procmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/procmail/devel/procmail.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- procmail.spec 30 Jun 2009 14:36:16 -0000 1.27 +++ procmail.spec 26 Jul 2009 19:27:07 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Mail processing program Name: procmail Version: 3.22 -Release: 24%{?dist} +Release: 25%{?dist} License: GPLv2+ or Artistic Group: Applications/Internet Source: ftp://ftp.procmail.org/pub/procmail/procmail-%{version}.tar.gz @@ -66,6 +66,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man[15]/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.22-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Miroslav Lichvar 3.22-24 - rename getline to avoid conflict with glibc (#505977) - add -Wno-comments to CFLAGS From mtasaka at fedoraproject.org Sun Jul 26 19:27:22 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 26 Jul 2009 19:27:22 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.380, 1.381 jd.spec, 1.442, 1.443 sources, 1.381, 1.382 jd-2.1.0-issue-jd6-868.patch, 1.1, NONE jd-rev2982-windres.patch, 1.1, NONE Message-ID: <20090726192722.5AAEA11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5666/F-11 Modified Files: .cvsignore jd.spec sources Removed Files: jd-2.1.0-issue-jd6-868.patch jd-rev2982-windres.patch Log Message: rev 2989 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.380 retrieving revision 1.381 diff -u -p -r1.380 -r1.381 --- .cvsignore 25 Jul 2009 19:23:02 -0000 1.380 +++ .cvsignore 26 Jul 2009 19:27:22 -0000 1.381 @@ -1 +1 @@ -jd-2.4.2-svn2981_trunk.tgz +jd-2.4.2-svn2989_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.442 retrieving revision 1.443 diff -u -p -r1.442 -r1.443 --- jd.spec 25 Jul 2009 19:23:02 -0000 1.442 +++ jd.spec 26 Jul 2009 19:27:22 -0000 1.443 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2981_trunk +%define strtag svn2989_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -51,7 +51,6 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz -Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -78,7 +77,6 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf -%patch0 -p0 sh autogen.sh @@ -137,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 26 2009 Mamoru Tasaka -- rev 2981 +* Mon Jul 27 2009 Mamoru Tasaka +- rev 2989 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.381 retrieving revision 1.382 diff -u -p -r1.381 -r1.382 --- sources 25 Jul 2009 19:23:03 -0000 1.381 +++ sources 26 Jul 2009 19:27:22 -0000 1.382 @@ -1 +1 @@ -5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz +18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz --- jd-2.1.0-issue-jd6-868.patch DELETED --- --- jd-rev2982-windres.patch DELETED --- From mtasaka at fedoraproject.org Sun Jul 26 19:27:22 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Sun, 26 Jul 2009 19:27:22 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.386, 1.387 jd.spec, 1.446, 1.447 sources, 1.387, 1.388 jd-2.1.0-issue-jd6-868.patch, 1.1, NONE jd-rev2738-compile.patch, 1.1, NONE jd-rev2982-windres.patch, 1.1, NONE Message-ID: <20090726192722.141ED11C00CE@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5666/F-10 Modified Files: .cvsignore jd.spec sources Removed Files: jd-2.1.0-issue-jd6-868.patch jd-rev2738-compile.patch jd-rev2982-windres.patch Log Message: rev 2989 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.386 retrieving revision 1.387 diff -u -p -r1.386 -r1.387 --- .cvsignore 25 Jul 2009 19:23:01 -0000 1.386 +++ .cvsignore 26 Jul 2009 19:27:21 -0000 1.387 @@ -1 +1 @@ -jd-2.4.2-svn2981_trunk.tgz +jd-2.4.2-svn2989_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.446 retrieving revision 1.447 diff -u -p -r1.446 -r1.447 --- jd.spec 25 Jul 2009 19:23:01 -0000 1.446 +++ jd.spec 26 Jul 2009 19:27:21 -0000 1.447 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2981_trunk +%define strtag svn2989_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -51,7 +51,6 @@ License: GPLv2 URL: http://jd4linux.sourceforge.jp/ Source0: http://downloads.sourceforge.jp/jd4linux/%{repoid}/%{name}-%{main_ver}-%{strtag}.tgz #Source0: %{name}-%{main_ver}-%{strtag}.tgz -Patch0: jd-rev2982-windres.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{gtkmmdevel} @@ -78,7 +77,6 @@ JD is a 2ch browser based on gtkmm2. %prep %setup -q -n %{name}-%{main_ver}-%{strtag} #find . -name .svn | sort -r | xargs %{__rm} -rf -%patch0 -p0 sh autogen.sh @@ -137,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Sun Jul 26 2009 Mamoru Tasaka -- rev 2981 +* Mon Jul 27 2009 Mamoru Tasaka +- rev 2989 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.387 retrieving revision 1.388 diff -u -p -r1.387 -r1.388 --- sources 25 Jul 2009 19:23:01 -0000 1.387 +++ sources 26 Jul 2009 19:27:21 -0000 1.388 @@ -1 +1 @@ -5cc23e985051245bd2aa3faf3e3209fa jd-2.4.2-svn2981_trunk.tgz +18559885cc753c4623a76068dbe06be1 jd-2.4.2-svn2989_trunk.tgz --- jd-2.1.0-issue-jd6-868.patch DELETED --- --- jd-rev2738-compile.patch DELETED --- --- jd-rev2982-windres.patch DELETED --- From jkeating at fedoraproject.org Sun Jul 26 19:27:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:27:26 +0000 (UTC) Subject: rpms/procps/devel procps.spec,1.81,1.82 Message-ID: <20090726192726.84D6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/procps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5728 Modified Files: procps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: procps.spec =================================================================== RCS file: /cvs/pkgs/rpms/procps/devel/procps.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- procps.spec 11 May 2009 10:41:10 -0000 1.81 +++ procps.spec 26 Jul 2009 19:27:24 -0000 1.82 @@ -1,7 +1,7 @@ Summary: System and process monitoring utilities Name: procps Version: 3.2.8 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and LGPLv2+ Group: Applications/System URL: http://procps.sourceforge.net @@ -184,6 +184,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/man5/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Daniel Novotny 3.2.8-1 - new upstream version; rebase patches and drop upstreamed patches From jkeating at fedoraproject.org Sun Jul 26 19:27:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:27:49 +0000 (UTC) Subject: rpms/professor-is-missing/devel professor-is-missing.spec,1.2,1.3 Message-ID: <20090726192749.819B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/professor-is-missing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6032 Modified Files: professor-is-missing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: professor-is-missing.spec =================================================================== RCS file: /cvs/pkgs/rpms/professor-is-missing/devel/professor-is-missing.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- professor-is-missing.spec 27 Feb 2009 02:26:47 -0000 1.2 +++ professor-is-missing.spec 26 Jul 2009 19:27:49 -0000 1.3 @@ -1,6 +1,6 @@ Name: professor-is-missing Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The Professor is Missing, an AGI adventure game Group: Amusements/Games @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/professor-is-missing-wrapper.sh %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:28:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:28:04 +0000 (UTC) Subject: rpms/proftpd/devel proftpd.spec,1.47,1.48 Message-ID: <20090726192804.1D3C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/proftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6224 Modified Files: proftpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: proftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- proftpd.spec 14 Apr 2009 16:24:11 -0000 1.47 +++ proftpd.spec 26 Jul 2009 19:28:03 -0000 1.48 @@ -3,7 +3,7 @@ Summary: Flexible, stable and highly-configurable FTP server Name: proftpd Version: 1.3.2 -Release: 2.1%{?prever:.%{prever}}%{?dist} +Release: 3.1%{?prever:.%{prever}}%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.proftpd.org/ @@ -204,6 +204,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 9 2009 Matthias Saou 1.3.2-2.1 - Update the tcp_wrappers BR to be just /usr/include/tcpd.h instead. From jkeating at fedoraproject.org Sun Jul 26 19:28:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:28:17 +0000 (UTC) Subject: rpms/proguard/devel proguard.spec,1.2,1.3 Message-ID: <20090726192817.E88CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/proguard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6424 Modified Files: proguard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: proguard.spec =================================================================== RCS file: /cvs/pkgs/rpms/proguard/devel/proguard.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- proguard.spec 21 Jul 2009 18:24:02 -0000 1.2 +++ proguard.spec 26 Jul 2009 19:28:17 -0000 1.3 @@ -2,7 +2,7 @@ Name: proguard Version: 4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java class file shrinker, optimizer, obfuscator and preverifier Group: Development/Tools @@ -154,6 +154,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc README examples/ docs/ README.dist %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Fran?ois Kooman - 4.4-1 - update to ProGuard 4.4 From jkeating at fedoraproject.org Sun Jul 26 19:28:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:28:33 +0000 (UTC) Subject: rpms/proj/devel proj.spec,1.17,1.18 Message-ID: <20090726192833.CDF1D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/proj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6580 Modified Files: proj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: proj.spec =================================================================== RCS file: /cvs/pkgs/rpms/proj/devel/proj.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- proj.spec 27 Feb 2009 02:29:33 -0000 1.17 +++ proj.spec 26 Jul 2009 19:28:33 -0000 1.18 @@ -1,6 +1,6 @@ Name: proj Version: 4.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Cartographic projection software (PROJ.4) Group: Applications/Engineering @@ -122,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_datadir}/%{name}/epsg %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:28:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:28:49 +0000 (UTC) Subject: rpms/projectM-jack/devel projectM-jack.spec,1.2,1.3 Message-ID: <20090726192849.1F35E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/projectM-jack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6739 Modified Files: projectM-jack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: projectM-jack.spec =================================================================== RCS file: /cvs/pkgs/rpms/projectM-jack/devel/projectM-jack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- projectM-jack.spec 27 Feb 2009 02:30:32 -0000 1.2 +++ projectM-jack.spec 26 Jul 2009 19:28:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: projectM-jack Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The projectM visualization plugin for jack Group: Applications/Multimedia License: GPLv2+ and MIT @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:29:07 +0000 (UTC) Subject: rpms/projectM-libvisual/devel projectM-libvisual.spec,1.2,1.3 Message-ID: <20090726192907.9588B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/projectM-libvisual/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6890 Modified Files: projectM-libvisual.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: projectM-libvisual.spec =================================================================== RCS file: /cvs/pkgs/rpms/projectM-libvisual/devel/projectM-libvisual.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- projectM-libvisual.spec 27 Feb 2009 02:31:31 -0000 1.2 +++ projectM-libvisual.spec 26 Jul 2009 19:29:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: projectM-libvisual Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The projectM visualization plugin for libvisual Group: Applications/Multimedia License: GPLv2+ and LGPLv2+ and MIT @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libvisual-0.4/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:29:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:29:24 +0000 (UTC) Subject: rpms/projectM-pulseaudio/devel projectM-pulseaudio.spec,1.2,1.3 Message-ID: <20090726192924.5533711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/projectM-pulseaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7116 Modified Files: projectM-pulseaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: projectM-pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/projectM-pulseaudio/devel/projectM-pulseaudio.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- projectM-pulseaudio.spec 27 Feb 2009 02:32:29 -0000 1.2 +++ projectM-pulseaudio.spec 26 Jul 2009 19:29:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: projectM-pulseaudio Version: 1.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The projectM visualization plugin for pulseaudio Group: Applications/Multimedia License: GPLv2+ and MIT @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:29:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:29:54 +0000 (UTC) Subject: rpms/protobuf/devel protobuf.spec,1.5,1.6 Message-ID: <20090726192954.6036011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/protobuf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7351 Modified Files: protobuf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: protobuf.spec =================================================================== RCS file: /cvs/pkgs/rpms/protobuf/devel/protobuf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- protobuf.spec 1 Mar 2009 10:36:00 -0000 1.5 +++ protobuf.spec 26 Jul 2009 19:29:54 -0000 1.6 @@ -13,7 +13,7 @@ Summary: Protocol Buffers - Google's data interchange format Name: protobuf Version: 2.0.2 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD Group: Development/Libraries Source: http://protobuf.googlecode.com/files/%{name}-%{version}.tar.bz2 @@ -268,6 +268,9 @@ rm -rf %{buildroot} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Caol?n McNamra - 2.0.2-8 - add stdio.h for sprintf, perror, etc. From jkeating at fedoraproject.org Sun Jul 26 19:30:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:30:22 +0000 (UTC) Subject: rpms/prover9/devel prover9.spec,1.2,1.3 Message-ID: <20090726193022.6DC0111C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prover9/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7591 Modified Files: prover9.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prover9.spec =================================================================== RCS file: /cvs/pkgs/rpms/prover9/devel/prover9.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- prover9.spec 27 Feb 2009 02:34:17 -0000 1.2 +++ prover9.spec 26 Jul 2009 19:30:21 -0000 1.3 @@ -3,7 +3,7 @@ Name: prover9 Version: 200805a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Thereom Prover and Countermodel Generator Group: Applications/Productivity @@ -209,6 +209,9 @@ make test1 test2 test3 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 200805a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 200805a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:30:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:30:42 +0000 (UTC) Subject: rpms/proxychains/devel proxychains.spec,1.5,1.6 Message-ID: <20090726193042.0896F11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/proxychains/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7860 Modified Files: proxychains.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: proxychains.spec =================================================================== RCS file: /cvs/pkgs/rpms/proxychains/devel/proxychains.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- proxychains.spec 27 Feb 2009 02:35:10 -0000 1.5 +++ proxychains.spec 26 Jul 2009 19:30:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: proxychains Version: 3.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Provides proxy support to any application Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:31:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:31:00 +0000 (UTC) Subject: rpms/proxyknife/devel proxyknife.spec,1.5,1.6 Message-ID: <20090726193100.69D1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/proxyknife/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8052 Modified Files: proxyknife.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: proxyknife.spec =================================================================== RCS file: /cvs/pkgs/rpms/proxyknife/devel/proxyknife.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- proxyknife.spec 27 Feb 2009 02:36:04 -0000 1.5 +++ proxyknife.spec 26 Jul 2009 19:31:00 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Customizable multithreaded proxy hunter Name: proxyknife Version: 1.7 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Internet URL: http://www.gnu.org/software/proxyknife/ @@ -84,6 +84,9 @@ fi %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:31:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:31:24 +0000 (UTC) Subject: rpms/prozilla/devel prozilla.spec,1.21,1.22 Message-ID: <20090726193124.77DC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prozilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8264 Modified Files: prozilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prozilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/prozilla/devel/prozilla.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- prozilla.spec 27 Feb 2009 02:37:02 -0000 1.21 +++ prozilla.spec 26 Jul 2009 19:31:24 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Advanced Linux download manager Name: prozilla Version: 2.0.4 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Internet @@ -99,6 +99,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:31:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:31:39 +0000 (UTC) Subject: rpms/prtconf/devel prtconf.spec,1.3,1.4 Message-ID: <20090726193139.B09A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/prtconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8458 Modified Files: prtconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: prtconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/prtconf/devel/prtconf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- prtconf.spec 27 Feb 2009 02:37:58 -0000 1.3 +++ prtconf.spec 26 Jul 2009 19:31:39 -0000 1.4 @@ -1,7 +1,7 @@ Summary: SPARC OpenPROM dump utility Name: prtconf Version: 1.3 -Release: 10%{?dist} +Release: 11%{?dist} ExclusiveArch: sparcv9 sparc64 License: GPLv2+ Group: Applications/System @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/prtconf.8.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:31:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:31:55 +0000 (UTC) Subject: rpms/ps2eps/devel ps2eps.spec,1.4,1.5 Message-ID: <20090726193155.2EEB011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ps2eps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8609 Modified Files: ps2eps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ps2eps.spec =================================================================== RCS file: /cvs/pkgs/rpms/ps2eps/devel/ps2eps.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ps2eps.spec 27 Feb 2009 02:38:58 -0000 1.4 +++ ps2eps.spec 26 Jul 2009 19:31:54 -0000 1.5 @@ -1,7 +1,7 @@ Summary: PS-to-EPS converter Name: ps2eps Version: 1.64 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://www.tm.uka.de/~bless/%{name}-%{version}.tar.gz Patch0: ps2eps-1.64-tmpfile.patch License: GPLv2+ @@ -43,6 +43,9 @@ command sequences that can produce error %doc *.txt doc/html/*.html doc/pdf/*.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.64-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.64-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:32:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:32:10 +0000 (UTC) Subject: rpms/ps3-utils/devel ps3-utils.spec,1.3,1.4 Message-ID: <20090726193210.05DFD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ps3-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8763 Modified Files: ps3-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ps3-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/ps3-utils/devel/ps3-utils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ps3-utils.spec 26 Feb 2009 15:14:01 -0000 1.3 +++ ps3-utils.spec 26 Jul 2009 19:32:09 -0000 1.4 @@ -1,6 +1,6 @@ Name: ps3-utils Version: 2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Utilities for Sony PlayStation 3 Group: System Environment/Base @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Josh Boyer 2.3-3 - Fix Obsoletes line to account for disttag in older pacakges From jkeating at fedoraproject.org Sun Jul 26 19:32:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:32:25 +0000 (UTC) Subject: rpms/psacct/devel psacct.spec,1.37,1.38 Message-ID: <20090726193225.4D6E411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psacct/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8889 Modified Files: psacct.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psacct.spec =================================================================== RCS file: /cvs/pkgs/rpms/psacct/devel/psacct.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- psacct.spec 27 Feb 2009 02:39:51 -0000 1.37 +++ psacct.spec 26 Jul 2009 19:32:25 -0000 1.38 @@ -12,7 +12,7 @@ Summary: Utilities for monitoring process activities Name: psacct Version: 6.3.2 -Release: 53%{?dist} +Release: 54%{?dist} License: GPLv2+ Group: Applications/System Source: ftp://ftp.gnu.org/pub/gnu/acct-6.3.2.tar.gz @@ -174,6 +174,9 @@ fi %{_infodir}/accounting.info.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.3.2-54 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 6.3.2-53 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:33:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:33:26 +0000 (UTC) Subject: rpms/psad/devel psad.spec,1.2,1.3 Message-ID: <20090726193326.E113011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9315 Modified Files: psad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psad.spec =================================================================== RCS file: /cvs/pkgs/rpms/psad/devel/psad.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- psad.spec 27 Feb 2009 02:40:49 -0000 1.2 +++ psad.spec 26 Jul 2009 19:33:26 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Port Scan Attack Detector (psad) watches for suspect traffic Name: psad Version: 2.1.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Daemons Url: http://www.cipherdyne.org/psad/ @@ -140,6 +140,9 @@ fi %dir %psadrundir %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:33:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:33:29 +0000 Subject: [pkgdb] lxc was added for silas Message-ID: <20090726193329.4A22510F890@bastion2.fedora.phx.redhat.com> kevin has added Package lxc with summary Linux Resource Containers kevin has approved Package lxc kevin has added a Fedora devel branch for lxc with an owner of silas kevin has approved lxc in Fedora devel kevin has approved Package lxc kevin has set commit to Approved for 107427 on lxc (Fedora devel) kevin has set checkout to Approved for 107427 on lxc (Fedora devel) kevin has set build to Approved for 107427 on lxc (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxc From pkgdb at fedoraproject.org Sun Jul 26 19:33:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:33:30 +0000 Subject: [pkgdb] lxc summary updated by kevin Message-ID: <20090726193330.ED9EB10F89A@bastion2.fedora.phx.redhat.com> kevin set package lxc summary to Linux Resource Containers To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxc From pkgdb at fedoraproject.org Sun Jul 26 19:33:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:33:30 +0000 Subject: [pkgdb] lxc (Fedora, 11) updated by kevin Message-ID: <20090726193331.0B1FE10F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for lxc kevin has set commit to Approved for 107427 on lxc (Fedora 11) kevin has set checkout to Approved for 107427 on lxc (Fedora 11) kevin has set build to Approved for 107427 on lxc (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lxc From kevin at fedoraproject.org Sun Jul 26 19:33:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:33:50 +0000 (UTC) Subject: rpms/lxc - New directory Message-ID: <20090726193350.1D61511C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxc In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsQX9509/rpms/lxc Log Message: Directory /cvs/pkgs/rpms/lxc added to the repository From jkeating at fedoraproject.org Sun Jul 26 19:33:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:33:47 +0000 (UTC) Subject: rpms/pscan/devel pscan.spec,1.8,1.9 Message-ID: <20090726193347.1369311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pscan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9489 Modified Files: pscan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pscan.spec =================================================================== RCS file: /cvs/pkgs/rpms/pscan/devel/pscan.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pscan.spec 18 Apr 2009 12:52:36 -0000 1.8 +++ pscan.spec 26 Jul 2009 19:33:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: pscan Version: 1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Limited problem scanner for C source files Group: Development/Tools @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Ville Skytt? - 1.3-3 - Update Debian patchkit to 1.2-9 for support for larger source files (Debian bug 436794). From kevin at fedoraproject.org Sun Jul 26 19:33:50 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:33:50 +0000 (UTC) Subject: rpms/lxc/devel - New directory Message-ID: <20090726193350.41CE511C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsQX9509/rpms/lxc/devel Log Message: Directory /cvs/pkgs/rpms/lxc/devel added to the repository From kevin at fedoraproject.org Sun Jul 26 19:33:56 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:33:56 +0000 (UTC) Subject: rpms/lxc Makefile,NONE,1.1 Message-ID: <20090726193356.B443211C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxc In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsQX9509/rpms/lxc Added Files: Makefile Log Message: Setup of module lxc --- NEW FILE Makefile --- # Top level Makefile for module lxc all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 26 19:33:57 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:33:57 +0000 (UTC) Subject: rpms/lxc/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090726193357.2BFFE11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/lxc/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsQX9509/rpms/lxc/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module lxc --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: lxc # $Id: Makefile,v 1.1 2009/07/26 19:33:56 kevin Exp $ NAME := lxc SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Sun Jul 26 19:34:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:34:07 +0000 (UTC) Subject: rpms/psgml/devel psgml.spec,1.22,1.23 Message-ID: <20090726193407.0C13311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psgml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9727 Modified Files: psgml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psgml.spec =================================================================== RCS file: /cvs/pkgs/rpms/psgml/devel/psgml.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- psgml.spec 27 Feb 2009 02:42:45 -0000 1.22 +++ psgml.spec 26 Jul 2009 19:34:06 -0000 1.23 @@ -1,7 +1,7 @@ Summary: A GNU Emacs major mode for editing SGML documents. name: psgml Version: 1.2.5 -Release: 9%{?dist} +Release: 10%{?dist} Prereq: sgml-common License: GPLv2+ Source: ftp://ftp.lysator.liu.se/pub/sgml/psgml-%{version}.tar.gz @@ -100,6 +100,9 @@ exit 0 %{prefix}/share/sgml/cdtd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:34:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:34:23 +0000 (UTC) Subject: rpms/psi/devel psi.spec,1.34,1.35 Message-ID: <20090726193423.4ACC511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10000 Modified Files: psi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psi.spec =================================================================== RCS file: /cvs/pkgs/rpms/psi/devel/psi.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- psi.spec 17 Jul 2009 20:47:09 -0000 1.34 +++ psi.spec 26 Jul 2009 19:34:23 -0000 1.35 @@ -1,6 +1,6 @@ Name: psi Version: 0.13 -Release: 0.2.rc4%{?dist} +Release: 0.3.rc4%{?dist} Summary: Jabber client based on Qt License: GPLv2+ Group: Applications/Internet @@ -145,6 +145,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-0.3.rc4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Sven Lankes 0.13-0.2.rc4 - 0.13 rc4 From jkeating at fedoraproject.org Sun Jul 26 19:34:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:34:40 +0000 (UTC) Subject: rpms/psiconv/devel psiconv.spec,1.4,1.5 Message-ID: <20090726193440.2580711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psiconv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10178 Modified Files: psiconv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psiconv.spec =================================================================== RCS file: /cvs/pkgs/rpms/psiconv/devel/psiconv.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- psiconv.spec 14 Mar 2009 09:55:07 -0000 1.4 +++ psiconv.spec 26 Jul 2009 19:34:39 -0000 1.5 @@ -1,6 +1,6 @@ Name: psiconv Version: 0.9.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A conversion utility for Psion files Group: Applications/System @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Alex Lancaster - 0.9.8-4 - Rebuild for new ImageMagick soname From jkeating at fedoraproject.org Sun Jul 26 19:34:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:34:55 +0000 (UTC) Subject: rpms/psimedia/devel psimedia.spec,1.1,1.2 Message-ID: <20090726193455.0202711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psimedia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10331 Modified Files: psimedia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psimedia.spec =================================================================== RCS file: /cvs/pkgs/rpms/psimedia/devel/psimedia.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- psimedia.spec 17 Jul 2009 16:02:56 -0000 1.1 +++ psimedia.spec 26 Jul 2009 19:34:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: psimedia Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Audio and video RTP services for Psi-like IM clients Group: Applications/Multimedia @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/psi/plugins/libgstprovider.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Alexey Kurov - 1.0.3-2 - Fixed patch for using libdir in plugins path - Group changed to Applications/Multimedia From jkeating at fedoraproject.org Sun Jul 26 19:35:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:35:10 +0000 (UTC) Subject: rpms/psmisc/devel psmisc.spec,1.54,1.55 Message-ID: <20090726193510.D2C2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psmisc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10490 Modified Files: psmisc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psmisc.spec =================================================================== RCS file: /cvs/pkgs/rpms/psmisc/devel/psmisc.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- psmisc.spec 11 May 2009 08:36:27 -0000 1.54 +++ psmisc.spec 26 Jul 2009 19:35:10 -0000 1.55 @@ -1,7 +1,7 @@ Summary: Utilities for managing processes on your system Name: psmisc Version: 22.6 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ Group: Applications/System Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 22.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Daniel Novotny 22.6-11 - merge review (#226322): a few .spec changes From jkeating at fedoraproject.org Sun Jul 26 19:35:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:35:27 +0000 (UTC) Subject: rpms/pspp/devel pspp.spec,1.9,1.10 Message-ID: <20090726193527.C7B9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pspp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10649 Modified Files: pspp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pspp.spec =================================================================== RCS file: /cvs/pkgs/rpms/pspp/devel/pspp.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pspp.spec 22 Mar 2009 22:14:30 -0000 1.9 +++ pspp.spec 26 Jul 2009 19:35:27 -0000 1.10 @@ -1,6 +1,6 @@ Name: pspp Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A program for statistical analysis of sampled data Group: Applications/Engineering @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-psppire.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Mat?j Cepl - 0.6.1-3 - Make .so symlink to versioned libraries -- shouldn't be needed but helps to fix bug 471180 From jkeating at fedoraproject.org Sun Jul 26 19:35:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:35:45 +0000 (UTC) Subject: rpms/pssh/devel pssh.spec,1.4,1.5 Message-ID: <20090726193545.6CDC911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10819 Modified Files: pssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/pssh/devel/pssh.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pssh.spec 27 Feb 2009 02:47:38 -0000 1.4 +++ pssh.spec 26 Jul 2009 19:35:45 -0000 1.5 @@ -4,7 +4,7 @@ Summary: Parallel SSH tools Name: pssh Version: 1.4.3 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Url: http://www.theether.org/pssh/ Group: Applications/Productivity @@ -48,6 +48,9 @@ Parallell version includes: %{python_sitelib}/%{name}lib %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:36:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:36:02 +0000 (UTC) Subject: rpms/pstoedit/devel pstoedit.spec,1.16,1.17 Message-ID: <20090726193602.808E911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pstoedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10991 Modified Files: pstoedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pstoedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/pstoedit/devel/pstoedit.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pstoedit.spec 9 Jul 2009 08:36:28 -0000 1.16 +++ pstoedit.spec 26 Jul 2009 19:36:02 -0000 1.17 @@ -1,6 +1,6 @@ Name: pstoedit Version: 3.45 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Translates PostScript and PDF graphics into other vector formats Group: Applications/Productivity @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.45-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Denis Leroy - 3.45-8 - Fix parallel build (#510281) - Remove ImageMagick support, to work around bug 507035 From jkeating at fedoraproject.org Sun Jul 26 19:36:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:36:20 +0000 (UTC) Subject: rpms/pstreams-devel/devel pstreams-devel.spec,1.2,1.3 Message-ID: <20090726193620.99BED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pstreams-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11158 Modified Files: pstreams-devel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pstreams-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/pstreams-devel/devel/pstreams-devel.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pstreams-devel.spec 27 Feb 2009 02:49:38 -0000 1.2 +++ pstreams-devel.spec 26 Jul 2009 19:36:20 -0000 1.3 @@ -2,7 +2,7 @@ Name: pstreams-devel Version: 0.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: POSIX Process Control in C++ Group: Development/Libraries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/pstreams %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:36:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:36:38 +0000 (UTC) Subject: rpms/psutils/devel psutils.spec,1.21,1.22 Message-ID: <20090726193638.5618211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/psutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11322 Modified Files: psutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: psutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/psutils/devel/psutils.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- psutils.spec 22 Jul 2009 19:11:59 -0000 1.21 +++ psutils.spec 26 Jul 2009 19:36:38 -0000 1.22 @@ -1,7 +1,7 @@ Summary: PostScript Utilities Name: psutils Version: 1.17 -Release: 31%{dist} +Release: 32%{dist} License: psutils Group: Applications/Publishing Source: psutils-p17.tar.gz @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.17-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Adam Jackson 1.17-31 - Split perl scripts to a subpackage. From jkeating at fedoraproject.org Sun Jul 26 19:36:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:36:56 +0000 (UTC) Subject: rpms/pth/devel pth.spec,1.24,1.25 Message-ID: <20090726193656.8785F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11505 Modified Files: pth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pth.spec =================================================================== RCS file: /cvs/pkgs/rpms/pth/devel/pth.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- pth.spec 27 Feb 2009 02:51:45 -0000 1.24 +++ pth.spec 26 Jul 2009 19:36:56 -0000 1.25 @@ -1,7 +1,7 @@ Summary: The GNU Portable Threads library Name: pth Version: 2.0.7 -Release: 8 +Release: 9 License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gnu.org/software/pth/ @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.7-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:37:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:37:11 +0000 (UTC) Subject: rpms/pthsem/devel pthsem.spec,1.2,1.3 Message-ID: <20090726193711.9096D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pthsem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11648 Modified Files: pthsem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pthsem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pthsem/devel/pthsem.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pthsem.spec 27 Feb 2009 02:52:42 -0000 1.2 +++ pthsem.spec 26 Jul 2009 19:37:11 -0000 1.3 @@ -1,7 +1,7 @@ Summary: The GNU Portable Threads library extended with semaphore support Name: pthsem Version: 2.0.7 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.auto.tuwien.ac.at/~mkoegler/index.php/pth @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:37:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:37:27 +0000 (UTC) Subject: rpms/ptlib/devel ptlib.spec,1.16,1.17 Message-ID: <20090726193727.7DC6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ptlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11795 Modified Files: ptlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ptlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptlib/devel/ptlib.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ptlib.spec 6 Jul 2009 20:03:19 -0000 1.16 +++ ptlib.spec 26 Jul 2009 19:37:27 -0000 1.17 @@ -1,7 +1,7 @@ Name: ptlib Summary: Portable Tools Library Version: 2.6.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.opalvoip.org/ Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/2.6/%{name}-%{version}.tar.bz2 License: MPLv1.0 @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Peter Robinson - 2.6.4-1 - New 2.6.4 stable release From jkeating at fedoraproject.org Sun Jul 26 19:37:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:37:43 +0000 (UTC) Subject: rpms/ptouch-driver/devel ptouch-driver.spec,1.11,1.12 Message-ID: <20090726193743.6E60511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ptouch-driver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11946 Modified Files: ptouch-driver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ptouch-driver.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptouch-driver/devel/ptouch-driver.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ptouch-driver.spec 8 May 2009 09:01:43 -0000 1.11 +++ ptouch-driver.spec 26 Jul 2009 19:37:43 -0000 1.12 @@ -1,6 +1,6 @@ Name: ptouch-driver Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: CUPS driver for Brother P-touch label printers Group: System Environment/Libraries @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING NEWS README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Lubomir Rintel 1.3-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 19:37:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:37:58 +0000 (UTC) Subject: rpms/ptrash/devel ptrash.spec,1.2,1.3 Message-ID: <20090726193758.E392111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ptrash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12078 Modified Files: ptrash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ptrash.spec =================================================================== RCS file: /cvs/pkgs/rpms/ptrash/devel/ptrash.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ptrash.spec 27 Feb 2009 02:55:34 -0000 1.2 +++ ptrash.spec 26 Jul 2009 19:37:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: ptrash Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Move file(s) to ~/.trash directory Group: Applications/System @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:38:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:38:15 +0000 (UTC) Subject: rpms/publican/devel publican.spec,1.25,1.26 Message-ID: <20090726193815.A760811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/publican/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12246 Modified Files: publican.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: publican.spec =================================================================== RCS file: /cvs/pkgs/rpms/publican/devel/publican.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- publican.spec 12 Mar 2009 06:42:31 -0000 1.25 +++ publican.spec 26 Jul 2009 19:38:15 -0000 1.26 @@ -8,7 +8,7 @@ Name: publican Summary: Common files and scripts for publishing with DocBook XML Version: 0.44 -Release: 0%{?dist} +Release: 1%{?dist} License: GPLv2+ and GFDL # The following directories are licensed under the GFDL: # content, Book_Template, Set_Template, Article_Template @@ -158,6 +158,9 @@ rm -rf $RPM_BUILD_ROOT %doc fdl.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.44-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Jeff Fearn 0.44 - Add 0-9 and '.' to DOCNAME regex. BZ #489626 From jkeating at fedoraproject.org Sun Jul 26 19:38:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:38:30 +0000 (UTC) Subject: rpms/publican-fedora/devel publican-fedora.spec,1.10,1.11 Message-ID: <20090726193830.664BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/publican-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12396 Modified Files: publican-fedora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: publican-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/publican-fedora/devel/publican-fedora.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- publican-fedora.spec 12 Mar 2009 06:44:53 -0000 1.10 +++ publican-fedora.spec 26 Jul 2009 19:38:30 -0000 1.11 @@ -3,7 +3,7 @@ Name: publican-%{brand} Summary: Publican documentation template files for %{brand} Version: 0.18 -Release: 0%{?dist} +Release: 1%{?dist} License: Open Publication Group: Development/Libraries Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/publican/xsl/%{brand} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Jeff Fearn 0.18 - Add symlinks for langauges without country codes. BZ #487256 - Fri Mar 6 2009 Piotr Dr?g From jkeating at fedoraproject.org Sun Jul 26 19:38:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:38:46 +0000 (UTC) Subject: rpms/publican-genome/devel publican-genome.spec,1.3,1.4 Message-ID: <20090726193846.3175311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/publican-genome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12603 Modified Files: publican-genome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: publican-genome.spec =================================================================== RCS file: /cvs/pkgs/rpms/publican-genome/devel/publican-genome.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- publican-genome.spec 27 Feb 2009 02:58:32 -0000 1.3 +++ publican-genome.spec 26 Jul 2009 19:38:46 -0000 1.4 @@ -3,7 +3,7 @@ Name: publican-genome Summary: Common documentation files for %{brand} Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} License: Open Publication Group: Applications/Text Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/publican/xsl/%{brand} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:39:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:39:00 +0000 Subject: [pkgdb] audtty was added for fab Message-ID: <20090726193900.A70D510F889@bastion2.fedora.phx.redhat.com> kevin has added Package audtty with summary A ncurses based terminal client for the Audacious kevin has approved Package audtty kevin has added a Fedora devel branch for audtty with an owner of fab kevin has approved audtty in Fedora devel kevin has approved Package audtty kevin has set commit to Approved for 107427 on audtty (Fedora devel) kevin has set checkout to Approved for 107427 on audtty (Fedora devel) kevin has set build to Approved for 107427 on audtty (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audtty From jkeating at fedoraproject.org Sun Jul 26 19:39:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:39:02 +0000 (UTC) Subject: rpms/publican-ovirt/devel publican-ovirt.spec,1.2,1.3 Message-ID: <20090726193902.2C6C811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/publican-ovirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12760 Modified Files: publican-ovirt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: publican-ovirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/publican-ovirt/devel/publican-ovirt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- publican-ovirt.spec 27 Feb 2009 02:59:28 -0000 1.2 +++ publican-ovirt.spec 26 Jul 2009 19:39:02 -0000 1.3 @@ -3,7 +3,7 @@ Name: publican-ovirt Summary: Common documentation files for %{brand} Version: 0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: Open Publication Group: Applications/Text Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/publican/xsl/%{brand} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:39:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:39:02 +0000 Subject: [pkgdb] audtty summary updated by kevin Message-ID: <20090726193902.3E84310F89C@bastion2.fedora.phx.redhat.com> kevin set package audtty summary to A ncurses based terminal client for the Audacious To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audtty From pkgdb at fedoraproject.org Sun Jul 26 19:39:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:39:02 +0000 Subject: [pkgdb] audtty (Fedora, 10) updated by kevin Message-ID: <20090726193902.4E1B310F8A1@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for audtty kevin has set commit to Approved for 107427 on audtty (Fedora 10) kevin has set checkout to Approved for 107427 on audtty (Fedora 10) kevin has set build to Approved for 107427 on audtty (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audtty From kevin at fedoraproject.org Sun Jul 26 19:39:08 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:39:08 +0000 (UTC) Subject: rpms/audtty - New directory Message-ID: <20090726193908.185C011C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/audtty In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsM12811/rpms/audtty Log Message: Directory /cvs/pkgs/rpms/audtty added to the repository From pkgdb at fedoraproject.org Sun Jul 26 19:39:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:39:02 +0000 Subject: [pkgdb] audtty (Fedora, 10) updated by kevin Message-ID: <20090726193902.56E5310F8B6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for audtty kevin has set commit to Approved for 107427 on audtty (Fedora 11) kevin has set checkout to Approved for 107427 on audtty (Fedora 11) kevin has set build to Approved for 107427 on audtty (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/audtty From kevin at fedoraproject.org Sun Jul 26 19:39:08 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:39:08 +0000 (UTC) Subject: rpms/audtty/devel - New directory Message-ID: <20090726193908.35A0111C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/audtty/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsM12811/rpms/audtty/devel Log Message: Directory /cvs/pkgs/rpms/audtty/devel added to the repository From kevin at fedoraproject.org Sun Jul 26 19:39:14 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:39:14 +0000 (UTC) Subject: rpms/audtty Makefile,NONE,1.1 Message-ID: <20090726193914.1D26611C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/audtty In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsM12811/rpms/audtty Added Files: Makefile Log Message: Setup of module audtty --- NEW FILE Makefile --- # Top level Makefile for module audtty all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From jkeating at fedoraproject.org Sun Jul 26 19:39:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:39:19 +0000 (UTC) Subject: rpms/pulseaudio/devel pulseaudio.spec,1.85,1.86 Message-ID: <20090726193919.812E311C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pulseaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13012 Modified Files: pulseaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pulseaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/pulseaudio/devel/pulseaudio.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- pulseaudio.spec 2 Jul 2009 00:26:40 -0000 1.85 +++ pulseaudio.spec 26 Jul 2009 19:39:19 -0000 1.86 @@ -1,7 +1,7 @@ Name: pulseaudio Summary: Improved Linux Sound Server Version: 0.9.16 -Release: 2.test2%{?dist} +Release: 3.test2%{?dist} License: LGPLv2+ Group: System Environment/Daemons Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}-test2.tar.gz @@ -410,6 +410,9 @@ exit 0 %{_mandir}/man1/pax11publish.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.16-3.test2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Lennart Poettering 0.9.16-2.test2 - New test release From jkeating at fedoraproject.org Sun Jul 26 19:39:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:39:35 +0000 (UTC) Subject: rpms/pungi/devel pungi.spec,1.73,1.74 Message-ID: <20090726193935.B1F0511C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pungi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13237 Modified Files: pungi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pungi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pungi/devel/pungi.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- pungi.spec 21 May 2009 17:42:08 -0000 1.73 +++ pungi.spec 26 Jul 2009 19:39:35 -0000 1.74 @@ -2,7 +2,7 @@ Name: pungi Version: 2.0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Distribution compose tool Group: Development/Tools @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Jesse Keating - 2.0.16-1 - Fix boot.iso being on DVD images From kevin at fedoraproject.org Sun Jul 26 19:39:14 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:39:14 +0000 (UTC) Subject: rpms/audtty/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090726193914.56BD811C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/audtty/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsM12811/rpms/audtty/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module audtty --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: audtty # $Id: Makefile,v 1.1 2009/07/26 19:39:14 kevin Exp $ NAME := audtty SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Sun Jul 26 19:39:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:39:51 +0000 (UTC) Subject: rpms/puppet/devel puppet.spec,1.33,1.34 Message-ID: <20090726193951.5BDB311C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/puppet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13401 Modified Files: puppet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: puppet.spec =================================================================== RCS file: /cvs/pkgs/rpms/puppet/devel/puppet.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- puppet.spec 24 Jun 2009 11:45:39 -0000 1.33 +++ puppet.spec 26 Jul 2009 19:39:51 -0000 1.34 @@ -6,7 +6,7 @@ Name: puppet Version: 0.24.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A network tool for managing many disparate systems License: GPLv2+ URL: http://puppet.reductivelabs.com/ @@ -202,6 +202,9 @@ fi rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.24.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Todd Zullinger - 0.24.8-2 - Make Augeas and SELinux requirements build time options - Install emacs mode and vim syntax files (#491437) From jkeating at fedoraproject.org Sun Jul 26 19:40:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:40:09 +0000 (UTC) Subject: rpms/pure-ftpd/devel pure-ftpd.spec,1.25,1.26 Message-ID: <20090726194009.2EB8211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pure-ftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13583 Modified Files: pure-ftpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pure-ftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/pure-ftpd/devel/pure-ftpd.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- pure-ftpd.spec 27 Apr 2009 10:35:45 -0000 1.25 +++ pure-ftpd.spec 26 Jul 2009 19:40:08 -0000 1.26 @@ -1,6 +1,6 @@ Name: pure-ftpd Version: 1.0.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight, fast and secure FTP server Group: System Environment/Daemons @@ -254,6 +254,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Aurelien Bompard 1.0.22-1 - version 1.0.22 From jkeating at fedoraproject.org Sun Jul 26 19:40:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:40:24 +0000 (UTC) Subject: rpms/puretls/devel puretls.spec,1.18,1.19 Message-ID: <20090726194024.E6AFB11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/puretls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13731 Modified Files: puretls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: puretls.spec =================================================================== RCS file: /cvs/pkgs/rpms/puretls/devel/puretls.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- puretls.spec 27 Feb 2009 03:02:25 -0000 1.18 +++ puretls.spec 26 Jul 2009 19:40:24 -0000 1.19 @@ -36,7 +36,7 @@ Name: puretls Version: 0.9 -Release: 0.3.%{beta}.5.2%{?dist} +Release: 0.4.%{beta}.5.2%{?dist} Summary: Java implementation of SSLv3 and TLSv1 License: BSD Group: Development/Libraries/Java @@ -210,6 +210,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-0.4.b5.5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9-0.3.b5.5.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:40:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:40:47 +0000 (UTC) Subject: rpms/puritan/devel puritan.spec,1.3,1.4 Message-ID: <20090726194047.A071211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/puritan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13955 Modified Files: puritan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: puritan.spec =================================================================== RCS file: /cvs/pkgs/rpms/puritan/devel/puritan.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- puritan.spec 27 Feb 2009 03:03:24 -0000 1.3 +++ puritan.spec 26 Jul 2009 19:40:47 -0000 1.4 @@ -3,7 +3,7 @@ Name: puritan Version: 0.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OLPC disk image compiler Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:41:04 +0000 (UTC) Subject: rpms/purple-facebookchat/devel purple-facebookchat.spec,1.16,1.17 Message-ID: <20090726194104.C14FB11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/purple-facebookchat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14120 Modified Files: purple-facebookchat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: purple-facebookchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-facebookchat/devel/purple-facebookchat.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- purple-facebookchat.spec 24 Jul 2009 00:36:46 -0000 1.16 +++ purple-facebookchat.spec 26 Jul 2009 19:41:04 -0000 1.17 @@ -1,6 +1,6 @@ Name: purple-facebookchat Version: 1.60 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libpurple plug-in supporting facebook IM Group: Applications/Internet License: GPLv3+ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/protocols/*/facebook.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.60-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 23 2009 Ismael Olea 1.60-1 - updating to 1.60 - adding new sourcecode files to makefile From jkeating at fedoraproject.org Sun Jul 26 19:41:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:41:19 +0000 (UTC) Subject: rpms/purple-microblog/devel purple-microblog.spec,1.10,1.11 Message-ID: <20090726194119.D4B3E11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/purple-microblog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14376 Modified Files: purple-microblog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: purple-microblog.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-microblog/devel/purple-microblog.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- purple-microblog.spec 14 Jun 2009 21:35:59 -0000 1.10 +++ purple-microblog.spec 26 Jul 2009 19:41:19 -0000 1.11 @@ -2,7 +2,7 @@ Name: purple-microblog Version: 0.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libpurple plug-in supporting microblog services like Twitter Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/pidgin/protocols/*/laconica.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Ismael Olea - 0.2.2-1 - New upstream release fixing #505707 twitpocalypse bug From jkeating at fedoraproject.org Sun Jul 26 19:41:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:41:35 +0000 (UTC) Subject: rpms/purple-msn-pecan/devel purple-msn-pecan.spec,1.4,1.5 Message-ID: <20090726194135.A1CC011C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/purple-msn-pecan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14552 Modified Files: purple-msn-pecan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: purple-msn-pecan.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-msn-pecan/devel/purple-msn-pecan.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- purple-msn-pecan.spec 8 Mar 2009 18:22:48 -0000 1.4 +++ purple-msn-pecan.spec 26 Jul 2009 19:41:35 -0000 1.5 @@ -1,7 +1,7 @@ %define realname msn-pecan Name: purple-%{realname} Version: 0.0.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Alternative MSN protocol plugin for libpurple Group: Applications/Internet @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Edouard Bourguignon - 0.0.18-2 - Up-to-date description From jgu at fedoraproject.org Sun Jul 26 19:41:48 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Sun, 26 Jul 2009 19:41:48 +0000 (UTC) Subject: rpms/emacs-common-ebib/devel .cvsignore, 1.3, 1.4 emacs-common-ebib.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090726194148.7B40E11C00DB@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/emacs-common-ebib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14720 Modified Files: .cvsignore emacs-common-ebib.spec sources Log Message: * Sun Jul 26 2009 Jonathan G. Underwood - 1.8.0-1 - Update to version 1.8.0 - Correct typo in spec file changelog Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/emacs-common-ebib/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 6 Nov 2008 22:35:24 -0000 1.3 +++ .cvsignore 26 Jul 2009 19:41:48 -0000 1.4 @@ -1 +1 @@ -ebib-1.7.2.tar.gz +ebib-1.8.0.tar.gz Index: emacs-common-ebib.spec =================================================================== RCS file: /cvs/extras/rpms/emacs-common-ebib/devel/emacs-common-ebib.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- emacs-common-ebib.spec 24 Jul 2009 22:03:23 -0000 1.7 +++ emacs-common-ebib.spec 26 Jul 2009 19:41:48 -0000 1.8 @@ -27,8 +27,8 @@ %endif Name: emacs-common-%{pkg} -Version: 1.7.2 -Release: 3%{?dist} +Version: 1.8.0 +Release: 1%{?dist} Summary: A BibTeX database manager that runs in Emacs and XEmacs Group: Applications/Editors @@ -181,13 +181,17 @@ fi %{xemacs_lispdir}/%{pkg}/*.el %changelog +* Sun Jul 26 2009 Jonathan G. Underwood - 1.8.0-1 +- Update to version 1.8.0 +- Correct typo in spec file changelog + * Fri Jul 24 2009 Fedora Release Engineering - 1.7.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Feb 24 2009 Fedora Release Engineering - 1.7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Nov 6 2008 RPM building account - 1.7.2-1 +* Thu Nov 6 2008 Jonathan G. Underwood - 1.7.2-1 - Update to version 1.7.2 - Fix Source0 URL - Correct email adresses in spec file changelog Index: sources =================================================================== RCS file: /cvs/extras/rpms/emacs-common-ebib/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Nov 2008 22:35:24 -0000 1.3 +++ sources 26 Jul 2009 19:41:48 -0000 1.4 @@ -1 +1 @@ -9168e7191c4bf3f48ef73d50972f8024 ebib-1.7.2.tar.gz +ebadd7bd3c7ff7f933808115be83eba7 ebib-1.8.0.tar.gz From jkeating at fedoraproject.org Sun Jul 26 19:41:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:41:52 +0000 (UTC) Subject: rpms/purple-plugin_pack/devel purple-plugin_pack.spec,1.9,1.10 Message-ID: <20090726194152.1F9E111C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/purple-plugin_pack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14776 Modified Files: purple-plugin_pack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: purple-plugin_pack.spec =================================================================== RCS file: /cvs/pkgs/rpms/purple-plugin_pack/devel/purple-plugin_pack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- purple-plugin_pack.spec 27 Feb 2009 03:07:01 -0000 1.9 +++ purple-plugin_pack.spec 26 Jul 2009 19:41:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: purple-plugin_pack Version: 2.4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A set of plugins for libpurple, pidgin, and finch Group: Applications/Internet @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pidgin/xmmsremote.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:42:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:42:09 +0000 (UTC) Subject: rpms/putty/devel putty.spec,1.18,1.19 Message-ID: <20090726194209.53B8711C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/putty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15003 Modified Files: putty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: putty.spec =================================================================== RCS file: /cvs/pkgs/rpms/putty/devel/putty.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- putty.spec 27 Feb 2009 03:08:34 -0000 1.18 +++ putty.spec 26 Jul 2009 19:42:09 -0000 1.19 @@ -1,6 +1,6 @@ Name: putty Version: 0.60 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SSH, Telnet and Rlogin client License: MIT Group: Applications/Internet @@ -62,6 +62,9 @@ install -m644 -D -p %{SOURCE3} $RPM_BUIL rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.60-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.60-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:42:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:42:23 +0000 Subject: [pkgdb] sap was added for julian Message-ID: <20090726194223.C5DFA10F8B8@bastion2.fedora.phx.redhat.com> kevin has added Package sap with summary A small CLI audio player kevin has approved Package sap kevin has added a Fedora devel branch for sap with an owner of julian kevin has approved sap in Fedora devel kevin has approved Package sap kevin has set commit to Approved for 107427 on sap (Fedora devel) kevin has set checkout to Approved for 107427 on sap (Fedora devel) kevin has set build to Approved for 107427 on sap (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sap From pkgdb at fedoraproject.org Sun Jul 26 19:42:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:42:24 +0000 Subject: [pkgdb] sap summary updated by kevin Message-ID: <20090726194225.0E07910F8BB@bastion2.fedora.phx.redhat.com> kevin set package sap summary to A small CLI audio player To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sap From kevin at fedoraproject.org Sun Jul 26 19:42:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:42:31 +0000 (UTC) Subject: rpms/sap - New directory Message-ID: <20090726194231.20EFA11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/sap In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB15218/rpms/sap Log Message: Directory /cvs/pkgs/rpms/sap added to the repository From pkgdb at fedoraproject.org Sun Jul 26 19:42:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:42:24 +0000 Subject: [pkgdb] sap (Fedora, 11) updated by kevin Message-ID: <20090726194225.17E6F10F8BE@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for sap kevin has set commit to Approved for 107427 on sap (Fedora 11) kevin has set checkout to Approved for 107427 on sap (Fedora 11) kevin has set build to Approved for 107427 on sap (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sap From kevin at fedoraproject.org Sun Jul 26 19:42:31 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:42:31 +0000 (UTC) Subject: rpms/sap/devel - New directory Message-ID: <20090726194231.4A55211C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/sap/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB15218/rpms/sap/devel Log Message: Directory /cvs/pkgs/rpms/sap/devel added to the repository From jkeating at fedoraproject.org Sun Jul 26 19:42:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:42:25 +0000 (UTC) Subject: rpms/puzzles/devel puzzles.spec,1.3,1.4 Message-ID: <20090726194225.57ACC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/puzzles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15177 Modified Files: puzzles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: puzzles.spec =================================================================== RCS file: /cvs/pkgs/rpms/puzzles/devel/puzzles.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- puzzles.spec 23 Jun 2009 01:50:08 -0000 1.3 +++ puzzles.spec 26 Jul 2009 19:42:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: puzzles Version: 8596 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of one-player puzzle games Group: Amusements/Games @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8596-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + *Mon Jun 22 2009 Victor Bogado 8596-1 - updating to a new upstream version From kevin at fedoraproject.org Sun Jul 26 19:42:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:42:37 +0000 (UTC) Subject: rpms/sap Makefile,NONE,1.1 Message-ID: <20090726194237.243A611C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/sap In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB15218/rpms/sap Added Files: Makefile Log Message: Setup of module sap --- NEW FILE Makefile --- # Top level Makefile for module sap all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 26 19:42:37 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:42:37 +0000 (UTC) Subject: rpms/sap/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090726194237.585B411C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/sap/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB15218/rpms/sap/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module sap --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: sap # $Id: Makefile,v 1.1 2009/07/26 19:42:37 kevin Exp $ NAME := sap SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jgu at fedoraproject.org Sun Jul 26 19:42:40 2009 From: jgu at fedoraproject.org (Jonathan G. Underwood) Date: Sun, 26 Jul 2009 19:42:40 +0000 (UTC) Subject: rpms/emacs-common-ebib/F-11 emacs-common-ebib.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090726194240.D31DE11C00DB@cvs1.fedora.phx.redhat.com> Author: jgu Update of /cvs/extras/rpms/emacs-common-ebib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15375 Modified Files: emacs-common-ebib.spec sources Log Message: * Sun Jul 26 2009 Jonathan G. Underwood - 1.8.0-1 - Update to version 1.8.0 - Correct typo in spec file changelog Index: emacs-common-ebib.spec =================================================================== RCS file: /cvs/extras/rpms/emacs-common-ebib/F-11/emacs-common-ebib.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- emacs-common-ebib.spec 24 Feb 2009 14:39:01 -0000 1.6 +++ emacs-common-ebib.spec 26 Jul 2009 19:42:40 -0000 1.7 @@ -27,8 +27,8 @@ %endif Name: emacs-common-%{pkg} -Version: 1.7.2 -Release: 2%{?dist} +Version: 1.8.0 +Release: 1%{?dist} Summary: A BibTeX database manager that runs in Emacs and XEmacs Group: Applications/Editors @@ -181,10 +181,17 @@ fi %{xemacs_lispdir}/%{pkg}/*.el %changelog +* Sun Jul 26 2009 Jonathan G. Underwood - 1.8.0-1 +- Update to version 1.8.0 +- Correct typo in spec file changelog + +* Fri Jul 24 2009 Fedora Release Engineering - 1.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 1.7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Thu Nov 6 2008 RPM building account - 1.7.2-1 +* Thu Nov 6 2008 Jonathan G. Underwood - 1.7.2-1 - Update to version 1.7.2 - Fix Source0 URL - Correct email adresses in spec file changelog Index: sources =================================================================== RCS file: /cvs/extras/rpms/emacs-common-ebib/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 6 Nov 2008 22:35:24 -0000 1.3 +++ sources 26 Jul 2009 19:42:40 -0000 1.4 @@ -1 +1 @@ -9168e7191c4bf3f48ef73d50972f8024 ebib-1.7.2.tar.gz +ebadd7bd3c7ff7f933808115be83eba7 ebib-1.8.0.tar.gz From jkeating at fedoraproject.org Sun Jul 26 19:42:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:42:40 +0000 (UTC) Subject: rpms/pv/devel pv.spec,1.8,1.9 Message-ID: <20090726194240.CE3F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15390 Modified Files: pv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pv.spec =================================================================== RCS file: /cvs/pkgs/rpms/pv/devel/pv.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pv.spec 27 Feb 2009 03:10:37 -0000 1.8 +++ pv.spec 26 Jul 2009 19:42:40 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A tool for monitoring the progress of data through a pipeline Name: pv Version: 1.1.4 -Release: 2%{?dist} +Release: 3%{?dist} License: Artistic 2.0 Group: Development/Tools Source: http://pipeviewer.googlecode.com/files/%{name}-%{version}.tar.gz @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:42:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:42:56 +0000 (UTC) Subject: rpms/pvm/devel pvm.spec,1.43,1.44 Message-ID: <20090726194256.6BE1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15656 Modified Files: pvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/pvm/devel/pvm.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- pvm.spec 27 Feb 2009 03:11:36 -0000 1.43 +++ pvm.spec 26 Jul 2009 19:42:56 -0000 1.44 @@ -1,7 +1,7 @@ Summary: Libraries for distributed computing. Name: pvm Version: 3.4.5 -Release: 12%{?dist} +Release: 13%{?dist} # Includes regex code which is under GPLv2+ License: MIT and GPLv2+ Group: Development/Libraries @@ -201,6 +201,9 @@ fi /usr/share/pvm3/xpvm/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.4.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.4.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:43:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:43:14 +0000 (UTC) Subject: rpms/pwgen/devel pwgen.spec,1.7,1.8 Message-ID: <20090726194314.1C97C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pwgen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15856 Modified Files: pwgen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pwgen.spec =================================================================== RCS file: /cvs/pkgs/rpms/pwgen/devel/pwgen.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pwgen.spec 27 Feb 2009 03:12:29 -0000 1.7 +++ pwgen.spec 26 Jul 2009 19:43:13 -0000 1.8 @@ -1,6 +1,6 @@ Name: pwgen Version: 2.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Automatic password generation Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.06-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:43:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:43:30 +0000 (UTC) Subject: rpms/pwsafe/devel pwsafe.spec,1.7,1.8 Message-ID: <20090726194330.9D9A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pwsafe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16024 Modified Files: pwsafe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pwsafe.spec =================================================================== RCS file: /cvs/pkgs/rpms/pwsafe/devel/pwsafe.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pwsafe.spec 27 Feb 2009 03:13:24 -0000 1.7 +++ pwsafe.spec 26 Jul 2009 19:43:30 -0000 1.8 @@ -1,6 +1,6 @@ Name: pwsafe Version: 0.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A unix commandline program that manages encrypted password databases Group: Applications/Databases @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:43:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:43:46 +0000 (UTC) Subject: rpms/pyOpenSSL/devel pyOpenSSL.spec,1.32,1.33 Message-ID: <20090726194346.4489511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyOpenSSL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16156 Modified Files: pyOpenSSL.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyOpenSSL.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyOpenSSL/devel/pyOpenSSL.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- pyOpenSSL.spec 26 Feb 2009 19:40:26 -0000 1.32 +++ pyOpenSSL.spec 26 Jul 2009 19:43:46 -0000 1.33 @@ -3,7 +3,7 @@ Summary: Python wrapper module around the OpenSSL library Name: pyOpenSSL Version: 0.7 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://pyopenssl.sf.net/%{name}-%{version}.tar.gz Patch0: pyOpenSSL-0.7-openssl.patch Patch2: pyOpenSSL-elinks.patch @@ -53,6 +53,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/%{name}*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:44:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:44:02 +0000 (UTC) Subject: rpms/pyPdf/devel pyPdf.spec,1.5,1.6 Message-ID: <20090726194402.77B5B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyPdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16291 Modified Files: pyPdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyPdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyPdf/devel/pyPdf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pyPdf.spec 26 Feb 2009 19:41:25 -0000 1.5 +++ pyPdf.spec 26 Jul 2009 19:44:02 -0000 1.6 @@ -2,7 +2,7 @@ Name: pyPdf Version: 1.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: PDF toolkit Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:44:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:44:17 +0000 (UTC) Subject: rpms/pyabiword/devel pyabiword.spec,1.6,1.7 Message-ID: <20090726194417.6E15C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyabiword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16465 Modified Files: pyabiword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyabiword.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyabiword/devel/pyabiword.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pyabiword.spec 5 Jul 2009 01:28:21 -0000 1.6 +++ pyabiword.spec 26 Jul 2009 19:44:17 -0000 1.7 @@ -8,7 +8,7 @@ Summary: Python bindings for libabiword Name: pyabiword Version: 0.7.6 -Release: 1%{?dist} +Release: 2%{?dist} Source0: pyabiword-%{version}.tar.gz URL: http://abisource.com/downloads/pyabiword/%{version}/pyabiword-%{version}.tar.gz License: GPL+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/pyabiword.defs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Peter Robinson - 0.7.6-1 - Upgrade to pyabiword 0.7.6 From jkeating at fedoraproject.org Sun Jul 26 19:44:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:44:37 +0000 (UTC) Subject: rpms/pybackpack/devel pybackpack.spec,1.8,1.9 Message-ID: <20090726194437.204FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pybackpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16618 Modified Files: pybackpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pybackpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/pybackpack/devel/pybackpack.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pybackpack.spec 26 Feb 2009 19:43:31 -0000 1.8 +++ pybackpack.spec 26 Jul 2009 19:44:36 -0000 1.9 @@ -4,7 +4,7 @@ Summary: User oriented backup and restore application Name: pybackpack Version: 0.5.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Archiving URL: http://andrewprice.me.uk/projects/pybackpack/ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:44:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:44:55 +0000 (UTC) Subject: rpms/pybliographer/devel pybliographer.spec,1.24,1.25 Message-ID: <20090726194455.B597611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pybliographer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16942 Modified Files: pybliographer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pybliographer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pybliographer/devel/pybliographer.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- pybliographer.spec 26 Feb 2009 19:44:46 -0000 1.24 +++ pybliographer.spec 26 Jul 2009 19:44:55 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Framework for working with bibliographic databases Name: pybliographer Version: 1.2.12 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ and GFDL Group: Applications/Publishing Source: http://downloads.sourceforge.net/pybliographer/pybliographer-1.2.12.tar.gz @@ -110,6 +110,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:45:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:45:14 +0000 (UTC) Subject: rpms/pybluez/devel pybluez.spec,1.6,1.7 Message-ID: <20090726194514.52E6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pybluez/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17321 Modified Files: pybluez.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pybluez.spec =================================================================== RCS file: /cvs/pkgs/rpms/pybluez/devel/pybluez.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pybluez.spec 26 Feb 2009 19:45:52 -0000 1.6 +++ pybluez.spec 26 Jul 2009 19:45:14 -0000 1.7 @@ -2,7 +2,7 @@ Name: pybluez Version: 0.15 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python API for the BlueZ bluetooth stack Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:45:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:45:24 +0000 Subject: [pkgdb] clutter-imcontext was added for pbrobinson Message-ID: <20090726194524.A48D510F890@bastion2.fedora.phx.redhat.com> kevin has added Package clutter-imcontext with summary IMContext Framework Library for Clutter kevin has approved Package clutter-imcontext kevin has added a Fedora devel branch for clutter-imcontext with an owner of pbrobinson kevin has approved clutter-imcontext in Fedora devel kevin has approved Package clutter-imcontext kevin has set commit to Approved for 107427 on clutter-imcontext (Fedora devel) kevin has set checkout to Approved for 107427 on clutter-imcontext (Fedora devel) kevin has set build to Approved for 107427 on clutter-imcontext (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-imcontext From pkgdb at fedoraproject.org Sun Jul 26 19:45:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:45:25 +0000 Subject: [pkgdb] clutter-imcontext summary updated by kevin Message-ID: <20090726194526.1934A10F89A@bastion2.fedora.phx.redhat.com> kevin set package clutter-imcontext summary to IMContext Framework Library for Clutter To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-imcontext From jkeating at fedoraproject.org Sun Jul 26 19:45:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:45:28 +0000 (UTC) Subject: rpms/pycairo/devel pycairo.spec,1.26,1.27 Message-ID: <20090726194528.1E7D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pycairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17796 Modified Files: pycairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pycairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/pycairo/devel/pycairo.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- pycairo.spec 29 Jun 2009 05:24:05 -0000 1.26 +++ pycairo.spec 26 Jul 2009 19:45:27 -0000 1.27 @@ -6,7 +6,7 @@ Name: pycairo Version: 1.8.6 -Release: 1%{?dist} +Release: 2%{?dist} License: MPLv1.1 or LGPLv2 Group: Development/Languages Summary: Python bindings for the cairo library @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pycairo.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Matthew Barnes - 1.8.6-1 - Update to 1.8.6 From pkgdb at fedoraproject.org Sun Jul 26 19:45:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:45:25 +0000 Subject: [pkgdb] clutter-imcontext (Fedora, 11) updated by kevin Message-ID: <20090726194526.2F48E10F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for clutter-imcontext kevin has set commit to Approved for 107427 on clutter-imcontext (Fedora 11) kevin has set checkout to Approved for 107427 on clutter-imcontext (Fedora 11) kevin has set build to Approved for 107427 on clutter-imcontext (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/clutter-imcontext From kevin at fedoraproject.org Sun Jul 26 19:45:38 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:45:38 +0000 (UTC) Subject: rpms/clutter-imcontext - New directory Message-ID: <20090726194538.1B62E11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/clutter-imcontext In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB17924/rpms/clutter-imcontext Log Message: Directory /cvs/pkgs/rpms/clutter-imcontext added to the repository From kevin at fedoraproject.org Sun Jul 26 19:45:38 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:45:38 +0000 (UTC) Subject: rpms/clutter-imcontext/devel - New directory Message-ID: <20090726194538.3C3AF11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/clutter-imcontext/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB17924/rpms/clutter-imcontext/devel Log Message: Directory /cvs/pkgs/rpms/clutter-imcontext/devel added to the repository From kevin at fedoraproject.org Sun Jul 26 19:45:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:45:44 +0000 (UTC) Subject: rpms/clutter-imcontext Makefile,NONE,1.1 Message-ID: <20090726194544.1E54511C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/clutter-imcontext In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB17924/rpms/clutter-imcontext Added Files: Makefile Log Message: Setup of module clutter-imcontext --- NEW FILE Makefile --- # Top level Makefile for module clutter-imcontext all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 26 19:45:44 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 19:45:44 +0000 (UTC) Subject: rpms/clutter-imcontext/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090726194544.59BEB11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/clutter-imcontext/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsB17924/rpms/clutter-imcontext/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module clutter-imcontext --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: clutter-imcontext # $Id: Makefile,v 1.1 2009/07/26 19:45:44 kevin Exp $ NAME := clutter-imcontext SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Sun Jul 26 19:45:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:45:43 +0000 (UTC) Subject: rpms/pychart/devel pychart.spec,1.10,1.11 Message-ID: <20090726194543.80A0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pychart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17999 Modified Files: pychart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pychart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pychart/devel/pychart.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pychart.spec 26 Feb 2009 19:47:54 -0000 1.10 +++ pychart.spec 26 Jul 2009 19:45:43 -0000 1.11 @@ -2,7 +2,7 @@ Name: pychart Version: 1.39 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: System Environment/Libraries Summary: Python library for generating chart images @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/examples doc/pychart %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.39-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.39-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:45:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:45:57 +0000 (UTC) Subject: rpms/pychecker/devel pychecker.spec,1.28,1.29 Message-ID: <20090726194557.75A4E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pychecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18215 Modified Files: pychecker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pychecker.spec =================================================================== RCS file: /cvs/pkgs/rpms/pychecker/devel/pychecker.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- pychecker.spec 15 Jun 2009 14:21:25 -0000 1.28 +++ pychecker.spec 26 Jul 2009 19:45:57 -0000 1.29 @@ -3,7 +3,7 @@ Summary: A python source code checking tool Name: pychecker Version: 0.8.17 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://pychecker.sourceforge.net Source0: http://dl.sourceforge.net/pychecker/pychecker-%{version}.tar.gz Patch0: pychecker-0.8.17-root.patch @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{python_sitelib}/pychecker/VERSION %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.17-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Vitezslav Crhonek - 0.8.17-9 - Merge Review Resolves: #226330 From jkeating at fedoraproject.org Sun Jul 26 19:46:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:46:13 +0000 (UTC) Subject: rpms/pychess/devel pychess.spec,1.13,1.14 Message-ID: <20090726194613.AD5BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pychess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18390 Modified Files: pychess.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pychess.spec =================================================================== RCS file: /cvs/pkgs/rpms/pychess/devel/pychess.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pychess.spec 26 Feb 2009 19:49:53 -0000 1.13 +++ pychess.spec 26 Jul 2009 19:46:13 -0000 1.14 @@ -2,7 +2,7 @@ Name: pychess Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Chess game for GNOME Group: Amusements/Games @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:46:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:46:27 +0000 (UTC) Subject: rpms/pyclutter/devel pyclutter.spec,1.17,1.18 Message-ID: <20090726194627.428AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyclutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18578 Modified Files: pyclutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyclutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyclutter/devel/pyclutter.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pyclutter.spec 26 Feb 2009 19:50:49 -0000 1.17 +++ pyclutter.spec 26 Jul 2009 19:46:27 -0000 1.18 @@ -3,7 +3,7 @@ Name: pyclutter Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python modules that allow you to use the Clutter toolkit Group: Development/Languages @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:46:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:46:41 +0000 (UTC) Subject: rpms/pycolumnize/devel pycolumnize.spec,1.1,1.2 Message-ID: <20090726194641.7750811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pycolumnize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18706 Modified Files: pycolumnize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pycolumnize.spec =================================================================== RCS file: /cvs/pkgs/rpms/pycolumnize/devel/pycolumnize.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pycolumnize.spec 24 Jun 2009 05:15:10 -0000 1.1 +++ pycolumnize.spec 26 Jul 2009 19:46:41 -0000 1.2 @@ -2,7 +2,7 @@ Name: pycolumnize Version: 0.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python module to align in columns a simple list Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Kushal Das 0.3.2-2 - Removing comments From jkeating at fedoraproject.org Sun Jul 26 19:46:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:46:54 +0000 (UTC) Subject: rpms/pydb/devel pydb.spec,1.1,1.2 Message-ID: <20090726194654.40E2611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pydb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18841 Modified Files: pydb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pydb.spec =================================================================== RCS file: /cvs/pkgs/rpms/pydb/devel/pydb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pydb.spec 1 Mar 2009 02:10:30 -0000 1.1 +++ pydb.spec 26 Jul 2009 19:46:53 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Extended Python Debugger Name: pydb Version: 1.25 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Development/Debuggers Url: http://bashdb.sourceforge.net/pydb @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.25-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 25 2009 Paulo Roma 1.25-4 - Included missing doc files. From pkgdb at fedoraproject.org Sun Jul 26 19:47:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:47:06 +0000 Subject: [pkgdb] lshw (Fedora EPEL, 4) updated by kevin Message-ID: <20090726194706.6284710F890@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for lshw kevin has set commit to Approved for 107427 on lshw (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on lshw (Fedora EPEL 4) kevin has set build to Approved for 107427 on lshw (Fedora EPEL 4) kevin changed owner of lshw in Fedora EPEL 4 to terjeros kevin approved watchbugzilla on lshw (Fedora EPEL 4) for tuju kevin approved watchcommits on lshw (Fedora EPEL 4) for tuju kevin approved commit on lshw (Fedora EPEL 4) for tuju kevin approved build on lshw (Fedora EPEL 4) for tuju kevin approved approveacls on lshw (Fedora EPEL 4) for tuju To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/lshw From jkeating at fedoraproject.org Sun Jul 26 19:47:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:47:08 +0000 (UTC) Subject: rpms/pydict/devel pydict.spec,1.17,1.18 Message-ID: <20090726194708.4C9D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pydict/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18981 Modified Files: pydict.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pydict.spec =================================================================== RCS file: /cvs/pkgs/rpms/pydict/devel/pydict.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pydict.spec 26 Feb 2009 19:51:41 -0000 1.17 +++ pydict.spec 26 Jul 2009 19:47:08 -0000 1.18 @@ -1,7 +1,7 @@ Summary: English/Chinese Dictionary written with python/gtk Name: pydict Version: 0.3.0 -Release: 13%{?dist} +Release: 14%{?dist} Source0: pydict-%{version}.tar.gz Patch0: pydict-trans.patch Patch1: pydict-0.3.0-python.patch @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/dict.xpm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:47:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:47:24 +0000 (UTC) Subject: rpms/pydot/devel pydot.spec,1.8,1.9 Message-ID: <20090726194724.241DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pydot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19170 Modified Files: pydot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pydot.spec =================================================================== RCS file: /cvs/pkgs/rpms/pydot/devel/pydot.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pydot.spec 6 Jul 2009 13:14:50 -0000 1.8 +++ pydot.spec 26 Jul 2009 19:47:23 -0000 1.9 @@ -2,7 +2,7 @@ Name: pydot Version: 1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Libraries Summary: Python interface to Graphviz's Dot language @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Tom "spot" Callaway - 1.0.2-4 - fix pydot crash with accented character (bugzilla 481540) From jkeating at fedoraproject.org Sun Jul 26 19:47:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:47:38 +0000 (UTC) Subject: rpms/pyephem/devel pyephem.spec,1.4,1.5 Message-ID: <20090726194738.895CB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyephem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19339 Modified Files: pyephem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyephem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyephem/devel/pyephem.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pyephem.spec 26 Feb 2009 19:53:20 -0000 1.4 +++ pyephem.spec 26 Jul 2009 19:47:38 -0000 1.5 @@ -2,7 +2,7 @@ Name: pyephem Version: 3.7.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The astronomy library for Python Group: Development/Libraries @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{python_sitearch}/ephem/tests %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.7.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.7.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:47:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:47:41 +0000 Subject: [pkgdb] rubygems (Fedora EPEL, 4) updated by kevin Message-ID: <20090726194741.4977C10F89F@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 4 branch for rubygems kevin has set commit to Approved for 107427 on rubygems (Fedora EPEL 4) kevin has set checkout to Approved for 107427 on rubygems (Fedora EPEL 4) kevin has set build to Approved for 107427 on rubygems (Fedora EPEL 4) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rubygems From jkeating at fedoraproject.org Sun Jul 26 19:47:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:47:51 +0000 (UTC) Subject: rpms/pyevent/devel pyevent.spec,1.3,1.4 Message-ID: <20090726194751.E8E4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyevent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19553 Modified Files: pyevent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyevent.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyevent/devel/pyevent.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pyevent.spec 26 Feb 2009 19:54:09 -0000 1.3 +++ pyevent.spec 26 Jul 2009 19:47:51 -0000 1.4 @@ -3,7 +3,7 @@ Name: pyevent Version: 0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python bindings for libevent Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:48:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:48:06 +0000 (UTC) Subject: rpms/pyexiv2/devel pyexiv2.spec,1.11,1.12 Message-ID: <20090726194806.1CA4F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyexiv2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19690 Modified Files: pyexiv2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyexiv2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyexiv2/devel/pyexiv2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pyexiv2.spec 8 Jun 2009 14:03:14 -0000 1.11 +++ pyexiv2.spec 26 Jul 2009 19:48:05 -0000 1.12 @@ -3,7 +3,7 @@ Name: pyexiv2 Version: 0.1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python binding to exiv2 Group: Development/Languages @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Mat?j Cepl - 0.1.3-4 -rebuild for new boot library From jkeating at fedoraproject.org Sun Jul 26 19:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:48:20 +0000 (UTC) Subject: rpms/pyfacebook/devel pyfacebook.spec,1.1,1.2 Message-ID: <20090726194820.2909511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyfacebook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19830 Modified Files: pyfacebook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyfacebook.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyfacebook/devel/pyfacebook.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pyfacebook.spec 21 Mar 2009 00:43:18 -0000 1.1 +++ pyfacebook.spec 26 Jul 2009 19:48:19 -0000 1.2 @@ -5,7 +5,7 @@ Name: pyfacebook Version: 0.1 -Release: 0.1.%{date}svn%{rev}%{?dist} +Release: 0.2.%{date}svn%{rev}%{?dist} Summary: Python wrapper for Facebook's API Group: Development/Languages @@ -53,5 +53,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-0.2.20090208svn173 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 8 2009 Ian Weller 0.1-0.1.20090208svn173 - Initial package build. From pkgdb at fedoraproject.org Sun Jul 26 19:48:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:48:20 +0000 Subject: [pkgdb] miredo (Fedora EPEL, 5) updated by kevin Message-ID: <20090726194820.0BDC210F889@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for miredo kevin has set commit to Approved for 107427 on miredo (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on miredo (Fedora EPEL 5) kevin has set build to Approved for 107427 on miredo (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/miredo From jkeating at fedoraproject.org Sun Jul 26 19:48:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:48:36 +0000 (UTC) Subject: rpms/pyfits/devel pyfits.spec,1.6,1.7 Message-ID: <20090726194836.6211611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyfits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20046 Modified Files: pyfits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyfits.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyfits/devel/pyfits.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pyfits.spec 22 May 2009 09:41:50 -0000 1.6 +++ pyfits.spec 26 Jul 2009 19:48:35 -0000 1.7 @@ -3,7 +3,7 @@ Name: pyfits Version: 2.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python interface to FITS Group: Development/Languages @@ -42,6 +42,9 @@ rm -fr %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Sergio Pascual - 2.1.1-2 - Fixed strange permision of the .so file From jkeating at fedoraproject.org Sun Jul 26 19:48:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:48:50 +0000 (UTC) Subject: rpms/pyflakes/devel pyflakes.spec,1.3,1.4 Message-ID: <20090726194850.0735611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyflakes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20235 Modified Files: pyflakes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyflakes.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyflakes/devel/pyflakes.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pyflakes.spec 26 Feb 2009 19:56:45 -0000 1.3 +++ pyflakes.spec 26 Jul 2009 19:48:49 -0000 1.4 @@ -2,7 +2,7 @@ Name: pyflakes Version: 0.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A Lint-like tool for Python Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:48:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:48:48 +0000 Subject: [pkgdb] ncdu (Fedora EPEL, 5) updated by kevin Message-ID: <20090726194849.1ADD510F890@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for ncdu kevin has set commit to Approved for 107427 on ncdu (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on ncdu (Fedora EPEL 5) kevin has set build to Approved for 107427 on ncdu (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ncdu From jkeating at fedoraproject.org Sun Jul 26 19:49:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:49:04 +0000 (UTC) Subject: rpms/pyflowtools/devel pyflowtools.spec,1.16,1.17 Message-ID: <20090726194904.40DBE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyflowtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20417 Modified Files: pyflowtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyflowtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyflowtools/devel/pyflowtools.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- pyflowtools.spec 26 Feb 2009 19:57:36 -0000 1.16 +++ pyflowtools.spec 26 Jul 2009 19:49:04 -0000 1.17 @@ -3,7 +3,7 @@ Summary: An interface to OSU FlowTools Name: pyflowtools Version: 0.3.4 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://pyflowtools.googlecode.com/files/%{name}-%{version}.tar.gz # No version specified. License: GPL+ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Sun Jul 26 19:49:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 19:49:13 +0000 Subject: [pkgdb] disktype (Fedora EPEL, 5) updated by kevin Message-ID: <20090726194913.5284910F89A@bastion2.fedora.phx.redhat.com> kevin added a Fedora EPEL 5 branch for disktype kevin has set commit to Approved for 107427 on disktype (Fedora EPEL 5) kevin has set checkout to Approved for 107427 on disktype (Fedora EPEL 5) kevin has set build to Approved for 107427 on disktype (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/disktype From jkeating at fedoraproject.org Sun Jul 26 19:49:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:49:18 +0000 (UTC) Subject: rpms/pyfribidi/devel pyfribidi.spec,1.6,1.7 Message-ID: <20090726194918.1374C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyfribidi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20544 Modified Files: pyfribidi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyfribidi.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyfribidi/devel/pyfribidi.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pyfribidi.spec 26 Feb 2009 19:58:24 -0000 1.6 +++ pyfribidi.spec 26 Jul 2009 19:49:17 -0000 1.7 @@ -2,7 +2,7 @@ Name: pyfribidi Version: 0.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A Python binding for GNU FriBidi Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:49:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:49:32 +0000 (UTC) Subject: rpms/pyftpdlib/devel pyftpdlib.spec,1.1,1.2 Message-ID: <20090726194932.51FA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyftpdlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20739 Modified Files: pyftpdlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyftpdlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyftpdlib/devel/pyftpdlib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pyftpdlib.spec 31 Mar 2009 07:06:12 -0000 1.1 +++ pyftpdlib.spec 26 Jul 2009 19:49:32 -0000 1.2 @@ -2,7 +2,7 @@ Name: pyftpdlib Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python FTP server library Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc CREDITS HISTORY LICENSE README demo/ doc/ test/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Silas Sewell - 0.5.1-4 - Fix various issues reported by rpmlint - Remove INSTALL file From jkeating at fedoraproject.org Sun Jul 26 19:49:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:49:46 +0000 (UTC) Subject: rpms/pygame/devel pygame.spec,1.30,1.31 Message-ID: <20090726194946.2CF9711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygame/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20891 Modified Files: pygame.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygame.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygame/devel/pygame.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- pygame.spec 17 Apr 2009 17:45:54 -0000 1.30 +++ pygame.spec 26 Jul 2009 19:49:46 -0000 1.31 @@ -2,7 +2,7 @@ Name: pygame Version: 1.8.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Python modules for writing games Group: Development/Languages @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Jon Ciesla - 1.8.1-6 - Dropped f2py deps, unneeded now that numpy is fixed: BZ 496277. From jkeating at fedoraproject.org Sun Jul 26 19:50:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:50:00 +0000 (UTC) Subject: rpms/pygobject2/devel pygobject2.spec,1.53,1.54 Message-ID: <20090726195000.3631411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygobject2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21050 Modified Files: pygobject2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygobject2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygobject2/devel/pygobject2.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- pygobject2.spec 26 May 2009 01:42:24 -0000 1.53 +++ pygobject2.spec 26 Jul 2009 19:50:00 -0000 1.54 @@ -14,7 +14,7 @@ Name: pygobject2 Version: 2.18.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Languages Summary: Python bindings for GObject @@ -119,6 +119,9 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/pygobject/xsl %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Matthew Barnes - 2.18.0-1.fc12 - Update to 2.18.0 From jkeating at fedoraproject.org Sun Jul 26 19:50:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:50:16 +0000 (UTC) Subject: rpms/pygoocanvas/devel pygoocanvas.spec,1.13,1.14 Message-ID: <20090726195016.7B6BB11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygoocanvas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21261 Modified Files: pygoocanvas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygoocanvas.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygoocanvas/devel/pygoocanvas.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pygoocanvas.spec 20 Jul 2009 13:43:26 -0000 1.13 +++ pygoocanvas.spec 26 Jul 2009 19:50:16 -0000 1.14 @@ -4,7 +4,7 @@ Name: pygoocanvas Version: 0.14.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GooCanvas python bindings Group: Development/Languages @@ -65,6 +65,9 @@ GooCanvas python bindings development fi %{_datadir}/gtk-doc/html/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Bernard Johnson - 0.14.0-2 - add patch to fix upstream API breakage (bz #511658) From jkeating at fedoraproject.org Sun Jul 26 19:50:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:50:39 +0000 (UTC) Subject: rpms/pygpgme/devel pygpgme.spec,1.12,1.13 Message-ID: <20090726195039.57E0911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygpgme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21455 Modified Files: pygpgme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygpgme.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygpgme/devel/pygpgme.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pygpgme.spec 26 Feb 2009 20:01:57 -0000 1.12 +++ pygpgme.spec 26 Jul 2009 19:50:39 -0000 1.13 @@ -2,7 +2,7 @@ Name: pygpgme Version: 0.1 -Release: 12.20090121bzr54%{?dist} +Release: 13.20090121bzr54%{?dist} Summary: Python module for working with OpenPGP messages Group: Development/Languages @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-13.20090121bzr54 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-12.20090121bzr54 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:50:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:50:56 +0000 (UTC) Subject: rpms/pygrace/devel pygrace.spec,1.7,1.8 Message-ID: <20090726195056.E2F7C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21712 Modified Files: pygrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygrace/devel/pygrace.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- pygrace.spec 21 Jul 2009 14:31:34 -0000 1.7 +++ pygrace.spec 26 Jul 2009 19:50:56 -0000 1.8 @@ -2,7 +2,7 @@ Name: pygrace Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python bindings for grace Group: Applications/Engineering License: GPLv2+ and MIT @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/%{name}-*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Jussi Lehtola - 0.4-2 - Change Requires: python-numeric to numpy. From jkeating at fedoraproject.org Sun Jul 26 19:51:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:51:15 +0000 (UTC) Subject: rpms/pygsl/devel pygsl.spec,1.20,1.21 Message-ID: <20090726195115.C7C0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21961 Modified Files: pygsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygsl/devel/pygsl.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- pygsl.spec 26 Feb 2009 20:03:38 -0000 1.20 +++ pygsl.spec 26 Jul 2009 19:51:15 -0000 1.21 @@ -7,7 +7,7 @@ Summary: GNU Scientific Library Interface for python Name: pygsl Version: 0.9.3 -Release: 4%{?dist} +Release: 5%{?dist} # The package is mostly GPL+ but there are two scripts # GLPv2+: pygsl/odeiv.py and examples/siman_tsp.py License: GPLv2+ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:51:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:51:34 +0000 (UTC) Subject: rpms/pygtk2/devel pygtk2.spec,1.29,1.30 Message-ID: <20090726195134.0799811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygtk2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22129 Modified Files: pygtk2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygtk2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygtk2/devel/pygtk2.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- pygtk2.spec 13 Jul 2009 17:14:41 -0000 1.29 +++ pygtk2.spec 26 Jul 2009 19:51:32 -0000 1.30 @@ -15,7 +15,7 @@ Name: pygtk2 Version: 2.15.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Languages Summary: Python bindings for GTK+ @@ -167,6 +167,9 @@ rm -fr $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/pygtk %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.15.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthew Barnes - 2.15.2-2.fc12 - Add patch for RH bug #511082 (missing gtk-2.16-types.defs). From jkeating at fedoraproject.org Sun Jul 26 19:51:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:51:48 +0000 (UTC) Subject: rpms/pygtkglext/devel pygtkglext.spec,1.5,1.6 Message-ID: <20090726195148.D2F4311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygtkglext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22272 Modified Files: pygtkglext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygtkglext.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygtkglext/devel/pygtkglext.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pygtkglext.spec 26 Feb 2009 20:04:28 -0000 1.5 +++ pygtkglext.spec 26 Jul 2009 19:51:48 -0000 1.6 @@ -3,7 +3,7 @@ Name: pygtkglext Version: 1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Python bindings for GtkGLExt License: LGPLv2+ Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:52:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:52:03 +0000 (UTC) Subject: rpms/pygtksourceview/devel pygtksourceview.spec,1.23,1.24 Message-ID: <20090726195203.2736311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pygtksourceview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22447 Modified Files: pygtksourceview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pygtksourceview.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygtksourceview/devel/pygtksourceview.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- pygtksourceview.spec 1 Jun 2009 02:32:55 -0000 1.23 +++ pygtksourceview.spec 26 Jul 2009 19:52:02 -0000 1.24 @@ -6,7 +6,7 @@ Name: pygtksourceview Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for gtksourceview Group: Development/Languages @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/pygtksourceview2 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Matthias Clasen - 2.6.0-1 - Update to 2.6.0 From jkeating at fedoraproject.org Sun Jul 26 19:52:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:52:18 +0000 (UTC) Subject: rpms/pyicq-t/devel pyicq-t.spec,1.14,1.15 Message-ID: <20090726195218.398F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyicq-t/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22611 Modified Files: pyicq-t.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyicq-t.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyicq-t/devel/pyicq-t.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- pyicq-t.spec 15 Jun 2009 07:43:37 -0000 1.14 +++ pyicq-t.spec 26 Jul 2009 19:52:18 -0000 1.15 @@ -2,7 +2,7 @@ Name: pyicq-t Version: 0.8.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ICQ Transport for Jabber Servers Group: Applications/Internet @@ -108,6 +108,9 @@ fi %{_datadir}/pyicq-t/src/xdb/mysql.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Michael Fleming - 0.8.1.3-1 - New upstream release From jkeating at fedoraproject.org Sun Jul 26 19:52:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:52:33 +0000 (UTC) Subject: rpms/pyifp/devel pyifp.spec,1.1,1.2 Message-ID: <20090726195233.262B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyifp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22747 Modified Files: pyifp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyifp.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyifp/devel/pyifp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pyifp.spec 18 Mar 2009 00:57:31 -0000 1.1 +++ pyifp.spec 26 Jul 2009 19:52:32 -0000 1.2 @@ -2,7 +2,7 @@ Name: pyifp Version: 0.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python Bindings for libifp Group: Development/Languages License: GPLv2 @@ -52,5 +52,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Dec 12 2008 Conrad Meyer - 0.2.2-1 - Initial package. From jkeating at fedoraproject.org Sun Jul 26 19:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:52:47 +0000 (UTC) Subject: rpms/pyjigdo/devel pyjigdo.spec,1.6,1.7 Message-ID: <20090726195247.6531711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyjigdo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22895 Modified Files: pyjigdo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyjigdo.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyjigdo/devel/pyjigdo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pyjigdo.spec 19 May 2009 04:51:10 -0000 1.6 +++ pyjigdo.spec 26 Jul 2009 19:52:47 -0000 1.7 @@ -3,7 +3,7 @@ Summary: Python version of Jigdo, slightly modified Name: pyjigdo Version: 0.4.0.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: http://fedorahosted.org/pyjigdo @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/pyjigdo/pyjigdo.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Jonathan Steffan - 0.4.0.1-1 - Fix missing file in package From jkeating at fedoraproject.org Sun Jul 26 19:53:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:53:01 +0000 (UTC) Subject: rpms/pyke/devel pyke.spec,1.10,1.11 Message-ID: <20090726195301.4DC9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyke/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23062 Modified Files: pyke.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyke.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyke/devel/pyke.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pyke.spec 22 Apr 2009 19:39:04 -0000 1.10 +++ pyke.spec 26 Jul 2009 19:53:01 -0000 1.11 @@ -3,7 +3,7 @@ Name: pyke Summary: Knowledge-based inference engine Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://pyke.sourceforge.net/ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/%{name}-%{version}*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Tom "spot" Callaway 1.0.2-1 - update to 1.0.2 From jkeating at fedoraproject.org Sun Jul 26 19:53:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:53:18 +0000 (UTC) Subject: rpms/pykickstart/devel pykickstart.spec,1.121,1.122 Message-ID: <20090726195318.8EDD511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pykickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23227 Modified Files: pykickstart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pykickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/pykickstart/devel/pykickstart.spec,v retrieving revision 1.121 retrieving revision 1.122 diff -u -p -r1.121 -r1.122 --- pykickstart.spec 17 Jul 2009 04:07:13 -0000 1.121 +++ pykickstart.spec 26 Jul 2009 19:53:18 -0000 1.122 @@ -4,7 +4,7 @@ Summary: A python library for manipulat Name: pykickstart Url: http://fedoraproject.org/wiki/pykickstart Version: 1.58 -Release: 1%{?dist} +Release: 2%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_bindir}/ksverdiff %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.58-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Chris Lumens - 1.58-1 - Adjust writePriority to fix lvm-on-raid0 test cases (jlaska). - Add F12 to the version number tests. (clumens) From jkeating at fedoraproject.org Sun Jul 26 19:53:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:53:35 +0000 (UTC) Subject: rpms/pylibacl/devel pylibacl.spec,1.8,1.9 Message-ID: <20090726195335.EBE9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pylibacl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23422 Modified Files: pylibacl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pylibacl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pylibacl/devel/pylibacl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pylibacl.spec 26 Feb 2009 20:10:28 -0000 1.8 +++ pylibacl.spec 26 Jul 2009 19:53:35 -0000 1.9 @@ -1,7 +1,7 @@ Name: pylibacl Summary: POSIX.1e ACLs library wrapper for python Version: 0.2.2 -Release: 6%{?dist} +Release: 7%{?dist} #license version is precised on a website License: GPLv2+ Group: Development/Libraries @@ -41,6 +41,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %doc BENCHMARK IMPLEMENTATION MANIFEST PLATFORMS README *.html *.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:53:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:53:51 +0000 (UTC) Subject: rpms/pylint/devel pylint.spec,1.17,1.18 Message-ID: <20090726195351.9573011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pylint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23586 Modified Files: pylint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pylint.spec =================================================================== RCS file: /cvs/pkgs/rpms/pylint/devel/pylint.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pylint.spec 18 Jun 2009 03:31:52 -0000 1.17 +++ pylint.spec 26 Jul 2009 19:53:51 -0000 1.18 @@ -2,7 +2,7 @@ Name: pylint Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Analyzes Python code looking for bugs and signs of poor quality Group: Development/Debuggers @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Konstantin Ryabitsev - 0.18.0-1 - Upstream 0.18.0 (bugfixes and minor feature updates) From jkeating at fedoraproject.org Sun Jul 26 19:54:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:54:08 +0000 (UTC) Subject: rpms/pymetar/devel pymetar.spec,1.4,1.5 Message-ID: <20090726195408.2558E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pymetar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23758 Modified Files: pymetar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pymetar.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymetar/devel/pymetar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pymetar.spec 26 Feb 2009 20:12:20 -0000 1.4 +++ pymetar.spec 26 Jul 2009 19:54:07 -0000 1.5 @@ -3,7 +3,7 @@ Summary: METAR weather reports parser for Python Name: pymetar Version: 0.14 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://www.schwarzvogel.de/software-pymetar.shtml @@ -54,6 +54,9 @@ done %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:54:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:54:24 +0000 (UTC) Subject: rpms/pymol/devel pymol.spec,1.12,1.13 Message-ID: <20090726195424.2A58211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pymol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23918 Modified Files: pymol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pymol.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymol/devel/pymol.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- pymol.spec 21 Jul 2009 22:21:39 -0000 1.12 +++ pymol.spec 26 Jul 2009 19:54:23 -0000 1.13 @@ -3,7 +3,7 @@ Summary: PyMOL Molecular Graphics System Name: pymol Version: 1.2 -Release: 6.20090709svn3827%{?dist} +Release: 7.20090709svn3827%{?dist} License: MIT and BSD and ZPLv2.0 and Bitstream Vera and OFL Group: Applications/Engineering URL: http://www.pymol.org @@ -107,6 +107,9 @@ rm -rf ${RPM_BUILD_ROOT} %{python_sitearch}/pmg_wx/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-7.20090709svn3827 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Tim Fenn - 1.2-6.20090709svn3827 - include chempy, pmg_tk and tut subdirectories in data folder From jkeating at fedoraproject.org Sun Jul 26 19:54:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:54:42 +0000 (UTC) Subject: rpms/pympdtouchgui/devel pympdtouchgui.spec,1.4,1.5 Message-ID: <20090726195442.8572711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pympdtouchgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24103 Modified Files: pympdtouchgui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pympdtouchgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/pympdtouchgui/devel/pympdtouchgui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pympdtouchgui.spec 26 Feb 2009 20:13:15 -0000 1.4 +++ pympdtouchgui.spec 26 Jul 2009 19:54:42 -0000 1.5 @@ -2,7 +2,7 @@ Name: pympdtouchgui Version: 0.309 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PyMPDTouchGUI is a client for MPD that is usable via touchscreen Group: Applications/Multimedia @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.309-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.309-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:54:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:54:59 +0000 (UTC) Subject: rpms/pymsn/devel pymsn.spec,1.10,1.11 Message-ID: <20090726195459.17B6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pymsn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24257 Modified Files: pymsn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pymsn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymsn/devel/pymsn.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pymsn.spec 26 Feb 2009 20:14:06 -0000 1.10 +++ pymsn.spec 26 Jul 2009 19:54:58 -0000 1.11 @@ -2,7 +2,7 @@ Name: pymsn Version: 0.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python libraries for MSN Messenger network Group: Development/Languages @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:55:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:55:16 +0000 (UTC) Subject: rpms/pymssql/devel pymssql.spec,1.5,1.6 Message-ID: <20090726195516.1E16A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pymssql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24434 Modified Files: pymssql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pymssql.spec =================================================================== RCS file: /cvs/pkgs/rpms/pymssql/devel/pymssql.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pymssql.spec 9 Apr 2009 21:50:49 -0000 1.5 +++ pymssql.spec 26 Jul 2009 19:55:15 -0000 1.6 @@ -2,7 +2,7 @@ Name: pymssql Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple database interface to MS-SQL for Python Group: Development/Languages License: LGPLv2+ @@ -39,6 +39,9 @@ DB-API 2.0 Specification. %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Ray Van Dolson - 1.0.1-2 - De-versioned Build Requirements to work around https://fedorahosted.org/fedora-infrastructure/ticket/1202 From jkeating at fedoraproject.org Sun Jul 26 19:55:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:55:32 +0000 (UTC) Subject: rpms/pyodbc/devel pyodbc.spec,1.9,1.10 Message-ID: <20090726195532.3687411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyodbc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24604 Modified Files: pyodbc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyodbc.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyodbc/devel/pyodbc.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pyodbc.spec 22 Apr 2009 19:57:42 -0000 1.9 +++ pyodbc.spec 26 Jul 2009 19:55:32 -0000 1.10 @@ -2,7 +2,7 @@ Name: pyodbc Version: 2.1.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python DB API 2.0 Module for ODBC Group: Development/Languages License: MIT @@ -37,6 +37,9 @@ decimal. %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Ray Van Dolson - 2.1.5-2 - EVR bump From jkeating at fedoraproject.org Sun Jul 26 19:55:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:55:47 +0000 (UTC) Subject: rpms/pyorbit/devel pyorbit.spec,1.29,1.30 Message-ID: <20090726195547.98DA211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyorbit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24779 Modified Files: pyorbit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyorbit.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyorbit/devel/pyorbit.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- pyorbit.spec 26 Feb 2009 20:16:44 -0000 1.29 +++ pyorbit.spec 26 Jul 2009 19:55:47 -0000 1.30 @@ -4,7 +4,7 @@ Name: pyorbit Version: 2.24.0 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ Group: Development/Languages Summary: Python bindings for ORBit2. @@ -75,6 +75,9 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.24.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.24.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:56:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:56:03 +0000 (UTC) Subject: rpms/pypar/devel pypar.spec,1.2,1.3 Message-ID: <20090726195603.BB53211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pypar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24954 Modified Files: pypar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pypar.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypar/devel/pypar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pypar.spec 22 Jul 2009 21:30:45 -0000 1.2 +++ pypar.spec 26 Jul 2009 19:56:03 -0000 1.3 @@ -2,7 +2,7 @@ Name: pypar Version: 2.1.0_66 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Parallel programming with Python Group: Development/Libraries License: GPLv2+ @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{python_sitearch}/Pypar*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0_66-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jussi Lehtola - 2.1.0_66-4 - Openmpi seems to have been fixed, fix build in rawhide. From jkeating at fedoraproject.org Sun Jul 26 19:56:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:56:20 +0000 (UTC) Subject: rpms/pypar2/devel pypar2.spec,1.4,1.5 Message-ID: <20090726195620.4C2D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pypar2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25127 Modified Files: pypar2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pypar2.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypar2/devel/pypar2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pypar2.spec 26 Feb 2009 20:17:40 -0000 1.4 +++ pypar2.spec 26 Jul 2009 19:56:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: pypar2 Version: 1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PyPar2 is a graphical frontend for the Linux par2 command line Group: Applications/File @@ -72,6 +72,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:56:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:56:35 +0000 (UTC) Subject: rpms/pyparsing/devel pyparsing.spec,1.11,1.12 Message-ID: <20090726195635.6E64F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyparsing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25276 Modified Files: pyparsing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyparsing.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyparsing/devel/pyparsing.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pyparsing.spec 26 Feb 2009 20:18:32 -0000 1.11 +++ pyparsing.spec 26 Jul 2009 19:56:35 -0000 1.12 @@ -2,7 +2,7 @@ Name: pyparsing Version: 1.5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An object-oriented approach to text processing Group: Development/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:56:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:56:50 +0000 (UTC) Subject: rpms/pyparted/devel pyparted.spec,1.63,1.64 Message-ID: <20090726195650.7F6EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25469 Modified Files: pyparted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyparted/devel/pyparted.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- pyparted.spec 17 Jul 2009 00:55:14 -0000 1.63 +++ pyparted.spec 26 Jul 2009 19:56:50 -0000 1.64 @@ -3,7 +3,7 @@ Summary: Python module for GNU parted Name: pyparted Version: 2.1.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://fedorahosted.org/pyparted @@ -44,6 +44,9 @@ partition tables. %{python_sitearch}/parted %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 David Cantrell - 2.1.0-1 - Upgrade to pyparted-2.1.0, requires parted-1.9.0-1 or higher From jkeating at fedoraproject.org Sun Jul 26 19:57:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:57:05 +0000 (UTC) Subject: rpms/pypoker-eval/devel pypoker-eval.spec,1.17,1.18 Message-ID: <20090726195705.B39FF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pypoker-eval/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25628 Modified Files: pypoker-eval.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pypoker-eval.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypoker-eval/devel/pypoker-eval.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- pypoker-eval.spec 26 Feb 2009 20:19:28 -0000 1.17 +++ pypoker-eval.spec 26 Jul 2009 19:57:05 -0000 1.18 @@ -2,7 +2,7 @@ Name: pypoker-eval Version: 136.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python interface to poker-eval Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 136.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 136.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:57:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:57:20 +0000 (UTC) Subject: rpms/pypop/devel pypop.spec,1.3,1.4 Message-ID: <20090726195720.6D3B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pypop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25791 Modified Files: pypop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pypop.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypop/devel/pypop.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pypop.spec 26 Feb 2009 20:20:28 -0000 1.3 +++ pypop.spec 26 Jul 2009 19:57:20 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Python for Population Genomics Name: pypop Version: 0.7.0 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://www.pypop.org/%{name}-%{version}.tar.gz License: GPLv2+ Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:57:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:57:36 +0000 (UTC) Subject: rpms/pypoppler/devel pypoppler.spec,1.1,1.2 Message-ID: <20090726195736.48A7711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pypoppler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25967 Modified Files: pypoppler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pypoppler.spec =================================================================== RCS file: /cvs/pkgs/rpms/pypoppler/devel/pypoppler.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pypoppler.spec 14 Jul 2009 21:25:20 -0000 1.1 +++ pypoppler.spec 26 Jul 2009 19:57:35 -0000 1.2 @@ -2,7 +2,7 @@ Name: pypoppler Version: 0.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for the Poppler PDF rendering library Group: Applications/Publishing @@ -49,5 +49,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Fabian Affolter - 0.10.0-1 - Initial package for Fedora From jkeating at fedoraproject.org Sun Jul 26 19:57:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:57:51 +0000 (UTC) Subject: rpms/pyrenamer/devel pyrenamer.spec,1.6,1.7 Message-ID: <20090726195751.29EDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyrenamer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26135 Modified Files: pyrenamer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyrenamer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyrenamer/devel/pyrenamer.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- pyrenamer.spec 4 Mar 2009 15:24:25 -0000 1.6 +++ pyrenamer.spec 26 Jul 2009 19:57:51 -0000 1.7 @@ -2,7 +2,7 @@ Name: pyrenamer Version: 0.6.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A mass file renamer written in PyGTK Group: Applications/File @@ -92,6 +92,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Caol?n McNamara - 0.6.0.1-3 - unpacks into pyrenamer-0.6.0 not pyrenamer-%{version} From jkeating at fedoraproject.org Sun Jul 26 19:58:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:58:07 +0000 (UTC) Subject: rpms/pyroom/devel pyroom.spec,1.9,1.10 Message-ID: <20090726195807.C5F6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyroom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26293 Modified Files: pyroom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyroom.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyroom/devel/pyroom.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pyroom.spec 4 Apr 2009 18:36:54 -0000 1.9 +++ pyroom.spec 26 Jul 2009 19:58:07 -0000 1.10 @@ -2,7 +2,7 @@ Name: pyroom Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PyRoom is a full screen text editor and a clone of Writeroom Group: Applications/Editors @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Sven Lankes - 0.4.1-1 - new upstream release - remove desktop-file-patch From jkeating at fedoraproject.org Sun Jul 26 19:58:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:58:21 +0000 (UTC) Subject: rpms/pyrrd/devel pyrrd.spec,1.1,1.2 Message-ID: <20090726195821.5B59511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyrrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26457 Modified Files: pyrrd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyrrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyrrd/devel/pyrrd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pyrrd.spec 7 Apr 2009 19:11:22 -0000 1.1 +++ pyrrd.spec 26 Jul 2009 19:58:21 -0000 1.2 @@ -2,7 +2,7 @@ Name: pyrrd Version: 0.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Pure Python Wrapper for RRDTool Group: Applications/System @@ -50,5 +50,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Fabian Affolter - 0.0.7-1 - Initial spec for Fedora From jkeating at fedoraproject.org Sun Jul 26 19:58:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:58:35 +0000 (UTC) Subject: rpms/pyscript/devel pyscript.spec,1.5,1.6 Message-ID: <20090726195835.6EAE811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyscript/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26619 Modified Files: pyscript.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyscript.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyscript/devel/pyscript.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pyscript.spec 26 Feb 2009 20:23:26 -0000 1.5 +++ pyscript.spec 26 Jul 2009 19:58:35 -0000 1.6 @@ -3,7 +3,7 @@ Name: pyscript Version: 0.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PyScript - Postscript graphics with Python Group: Applications/Publishing @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:58:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:58:50 +0000 (UTC) Subject: rpms/pyserial/devel pyserial.spec,1.5,1.6 Message-ID: <20090726195850.E0B9011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26797 Modified Files: pyserial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyserial.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyserial/devel/pyserial.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- pyserial.spec 26 Feb 2009 20:24:18 -0000 1.5 +++ pyserial.spec 26 Jul 2009 19:58:50 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Python serial port access library Name: pyserial Version: 2.2 -Release: 8%{?dist} +Release: 9%{?dist} Source0: http://easynews.dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.zip License: Python Group: Development/Libraries @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:59:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:59:04 +0000 (UTC) Subject: rpms/pysnmp/devel pysnmp.spec,1.2,1.3 Message-ID: <20090726195904.3E62511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pysnmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26950 Modified Files: pysnmp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pysnmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysnmp/devel/pysnmp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- pysnmp.spec 26 Feb 2009 20:25:13 -0000 1.2 +++ pysnmp.spec 26 Jul 2009 19:59:04 -0000 1.3 @@ -2,7 +2,7 @@ Name: pysnmp Version: 2.0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SNMP engine written in Python Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:59:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:59:18 +0000 (UTC) Subject: rpms/pystatgrab/devel pystatgrab.spec,1.4,1.5 Message-ID: <20090726195918.0494811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pystatgrab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27082 Modified Files: pystatgrab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pystatgrab.spec =================================================================== RCS file: /cvs/pkgs/rpms/pystatgrab/devel/pystatgrab.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pystatgrab.spec 26 Feb 2009 20:26:17 -0000 1.4 +++ pystatgrab.spec 26 Jul 2009 19:59:17 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Python bindings for libstatgrab Name: pystatgrab Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://www.i-scream.org/pystatgrab/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/_statgrab.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 19:59:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:59:33 +0000 (UTC) Subject: rpms/pysvn/devel pysvn.spec,1.11,1.12 Message-ID: <20090726195933.2003611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pysvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27236 Modified Files: pysvn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pysvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/pysvn/devel/pysvn.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pysvn.spec 19 Jul 2009 03:33:01 -0000 1.11 +++ pysvn.spec 26 Jul 2009 19:59:32 -0000 1.12 @@ -2,7 +2,7 @@ Name: pysvn Version: 1.7.0 -Release: 1%{dist} +Release: 2%{dist} Summary: Pythonic style bindings for Subversion Group: Development/Languages License: ASL 1.1 @@ -51,6 +51,9 @@ pushd Tests %{python_sitearch}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Caitlyn O'Hanna - 1.7.0-1 - Update to new version From jkeating at fedoraproject.org Sun Jul 26 19:59:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 19:59:47 +0000 (UTC) Subject: rpms/pytagger/devel pytagger.spec,1.3,1.4 Message-ID: <20090726195947.30DCC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pytagger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27406 Modified Files: pytagger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pytagger.spec =================================================================== RCS file: /cvs/pkgs/rpms/pytagger/devel/pytagger.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pytagger.spec 11 Jun 2009 05:34:17 -0000 1.3 +++ pytagger.spec 26 Jul 2009 19:59:47 -0000 1.4 @@ -2,7 +2,7 @@ Name: pytagger Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: ID3 Tag Reader and Writer Library for Python Group: Development/Libraries License: BSD @@ -48,6 +48,9 @@ CFLAGS="%{optflags}" %{__python} -c 'imp %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Orcan Ogetbil - 0.5-3 - Explicitly exclude %%{bindir}/*py? on Fedora < 11 only From jkeating at fedoraproject.org Sun Jul 26 20:00:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:00:01 +0000 (UTC) Subject: rpms/pytc/devel pytc.spec,1.3,1.4 Message-ID: <20090726200001.782DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pytc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27561 Modified Files: pytc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pytc.spec =================================================================== RCS file: /cvs/pkgs/rpms/pytc/devel/pytc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pytc.spec 8 Jun 2009 01:52:05 -0000 1.3 +++ pytc.spec 26 Jul 2009 20:00:01 -0000 1.4 @@ -2,7 +2,7 @@ Name: pytc Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tokyo Cabinet Python bindings Group: Development/Languages @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}-%{version}-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Silas Sewell - 0.8-2 - Release bump for libtokyocabinet soname change - According to changelog functions were added but not changed From jkeating at fedoraproject.org Sun Jul 26 20:00:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:00:19 +0000 (UTC) Subject: rpms/python/devel python.spec,1.149,1.150 Message-ID: <20090726200019.49CDD11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27769 Modified Files: python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python.spec =================================================================== RCS file: /cvs/pkgs/rpms/python/devel/python.spec,v retrieving revision 1.149 retrieving revision 1.150 diff -u -p -r1.149 -r1.150 --- python.spec 4 Jul 2009 21:27:56 -0000 1.149 +++ python.spec 26 Jul 2009 20:00:18 -0000 1.150 @@ -22,7 +22,7 @@ Summary: An interpreted, interactive, object-oriented programming language Name: %{python} Version: 2.6 -Release: 10%{?dist} +Release: 11%{?dist} License: Python Group: Development/Languages Provides: python-abi = %{pybasever} @@ -540,6 +540,9 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/python%{pybasever}/lib-dynload/_testcapimodule.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 4 2009 Jonathan Steffan - 2.6-10 - Move python-config to devel subpackage (#506153) - Update BuildRoot for new standard From jkeating at fedoraproject.org Sun Jul 26 20:00:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:00:36 +0000 (UTC) Subject: rpms/python-4Suite-XML/devel python-4Suite-XML.spec,1.13,1.14 Message-ID: <20090726200036.B5C8A11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-4Suite-XML/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27958 Modified Files: python-4Suite-XML.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-4Suite-XML.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-4Suite-XML/devel/python-4Suite-XML.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-4Suite-XML.spec 26 Feb 2009 20:30:14 -0000 1.13 +++ python-4Suite-XML.spec 26 Jul 2009 20:00:36 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-4Suite-XML Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A collection of XML-related technologies for Python Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/4Suite %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:00:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:00:56 +0000 (UTC) Subject: rpms/python-AppTools/devel python-AppTools.spec,1.2,1.3 Message-ID: <20090726200056.74C1511C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-AppTools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28144 Modified Files: python-AppTools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-AppTools.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-AppTools/devel/python-AppTools.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-AppTools.spec 11 Jun 2009 22:21:08 -0000 1.2 +++ python-AppTools.spec 26 Jul 2009 20:00:56 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-AppTools Version: 3.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Enthough Tool Suite Application Tools Group: Development/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.2.0-1 - Updated From jkeating at fedoraproject.org Sun Jul 26 20:01:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:01:14 +0000 (UTC) Subject: rpms/python-BeautifulSoup/devel python-BeautifulSoup.spec, 1.15, 1.16 Message-ID: <20090726200114.8F05811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-BeautifulSoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28353 Modified Files: python-BeautifulSoup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-BeautifulSoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-BeautifulSoup/devel/python-BeautifulSoup.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-BeautifulSoup.spec 10 Jun 2009 16:13:28 -0000 1.15 +++ python-BeautifulSoup.spec 26 Jul 2009 20:01:14 -0000 1.16 @@ -6,7 +6,7 @@ Name: python-BeautifulSoup Epoch: 1 Version: 3.0.7a -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTML/XML parser for quick-turnaround applications like screen-scraping Group: Development/Languages @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:3.0.7a-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 kwizart < kwizart at gmail.com > - 1:3.0.7a-1 - Revert to 3.0.7a and bump Epoch - Fix #505043 http://www.crummy.com/software/BeautifulSoup/3.1-problems.html From jkeating at fedoraproject.org Sun Jul 26 20:01:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:01:39 +0000 (UTC) Subject: rpms/python-CDDB/devel python-CDDB.spec,1.5,1.6 Message-ID: <20090726200139.653F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-CDDB/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28524 Modified Files: python-CDDB.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-CDDB.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-CDDB/devel/python-CDDB.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-CDDB.spec 26 Feb 2009 20:32:09 -0000 1.5 +++ python-CDDB.spec 26 Jul 2009 20:01:38 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-CDDB Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: CDDB and FreeDB audio CD track info access in Python Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:02:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:02:05 +0000 (UTC) Subject: rpms/python-Coherence/devel python-Coherence.spec,1.11,1.12 Message-ID: <20090726200205.EC58A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-Coherence/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28717 Modified Files: python-Coherence.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-Coherence.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Coherence/devel/python-Coherence.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-Coherence.spec 4 Apr 2009 23:15:44 -0000 1.11 +++ python-Coherence.spec 26 Jul 2009 20:02:05 -0000 1.12 @@ -3,7 +3,7 @@ Summary: Python framework to participate in digital living networks Name: python-Coherence Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Development/Languages URL: https://coherence.beebits.net/ @@ -72,6 +72,9 @@ find coherence -type f -exec \ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Matthias Saou 0.6.2-2 - Re-add re-needed re-python-twisted re-quirements (#485093). - Require dbus for proper parent directory ownership. From jkeating at fedoraproject.org Sun Jul 26 20:02:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:02:22 +0000 (UTC) Subject: rpms/python-EnthoughtBase/devel python-EnthoughtBase.spec,1.2,1.3 Message-ID: <20090726200222.DF86B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-EnthoughtBase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28922 Modified Files: python-EnthoughtBase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-EnthoughtBase.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-EnthoughtBase/devel/python-EnthoughtBase.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-EnthoughtBase.spec 11 Jun 2009 22:25:15 -0000 1.2 +++ python-EnthoughtBase.spec 26 Jul 2009 20:02:22 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-EnthoughtBase Version: 3.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Core packages for the Enthought Tool Suite Group: Development/Libraries @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.0.2-1 - Updated From jkeating at fedoraproject.org Sun Jul 26 20:02:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:02:40 +0000 (UTC) Subject: rpms/python-EnvisageCore/devel python-EnvisageCore.spec,1.2,1.3 Message-ID: <20090726200240.7F20711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-EnvisageCore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29078 Modified Files: python-EnvisageCore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-EnvisageCore.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-EnvisageCore/devel/python-EnvisageCore.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-EnvisageCore.spec 11 Jun 2009 22:30:41 -0000 1.2 +++ python-EnvisageCore.spec 26 Jul 2009 20:02:40 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-EnvisageCore Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Extensible Application Framework Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.1.0-1 - Updated From jkeating at fedoraproject.org Sun Jul 26 20:02:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:02:59 +0000 (UTC) Subject: rpms/python-EnvisagePlugins/devel python-EnvisagePlugins.spec, 1.2, 1.3 Message-ID: <20090726200259.AC9D111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-EnvisagePlugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29295 Modified Files: python-EnvisagePlugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-EnvisagePlugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-EnvisagePlugins/devel/python-EnvisagePlugins.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-EnvisagePlugins.spec 11 Jun 2009 22:36:29 -0000 1.2 +++ python-EnvisagePlugins.spec 26 Jul 2009 20:02:59 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-EnvisagePlugins Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plug-ins for the Envisage framework Group: Development/Libraries @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.1.0-1 - Updated From jkeating at fedoraproject.org Sun Jul 26 20:03:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:03:20 +0000 (UTC) Subject: rpms/python-GeoIP/devel python-GeoIP.spec,1.14,1.15 Message-ID: <20090726200320.785FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-GeoIP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29507 Modified Files: python-GeoIP.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-GeoIP.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-GeoIP/devel/python-GeoIP.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-GeoIP.spec 26 Feb 2009 20:33:09 -0000 1.14 +++ python-GeoIP.spec 26 Jul 2009 20:03:20 -0000 1.15 @@ -2,7 +2,7 @@ Name: python-GeoIP Version: 1.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python bindings for the GeoIP geographical lookup libraries Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:03:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:03:36 +0000 (UTC) Subject: rpms/python-GnuPGInterface/devel python-GnuPGInterface.spec, 1.4, 1.5 Message-ID: <20090726200336.2EFDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-GnuPGInterface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29646 Modified Files: python-GnuPGInterface.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-GnuPGInterface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-GnuPGInterface/devel/python-GnuPGInterface.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-GnuPGInterface.spec 23 Feb 2009 20:38:08 -0000 1.4 +++ python-GnuPGInterface.spec 26 Jul 2009 20:03:36 -0000 1.5 @@ -4,7 +4,7 @@ Summary: A Python module to interface with GnuPG Name: python-GnuPGInterface Version: 0.3.2 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Development/Languages URL: http://py-gnupg.sourceforge.net/ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/%{pkgname}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0.3.2-5 - Rebuild against rpm 4.6 From jkeating at fedoraproject.org Sun Jul 26 20:03:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:03:52 +0000 (UTC) Subject: rpms/python-HTMLgen/devel python-HTMLgen.spec,1.15,1.16 Message-ID: <20090726200352.8024411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-HTMLgen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29784 Modified Files: python-HTMLgen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-HTMLgen.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-HTMLgen/devel/python-HTMLgen.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-HTMLgen.spec 26 Feb 2009 20:34:09 -0000 1.15 +++ python-HTMLgen.spec 26 Jul 2009 20:03:52 -0000 1.16 @@ -3,7 +3,7 @@ Name: python-HTMLgen Version: 2.2.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A class library for the generation of HTML documents Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.py[co] %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:04:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:04:09 +0000 (UTC) Subject: rpms/python-IPy/devel python-IPy.spec,1.6,1.7 Message-ID: <20090726200409.774AE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-IPy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29934 Modified Files: python-IPy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-IPy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-IPy/devel/python-IPy.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-IPy.spec 26 Feb 2009 20:35:06 -0000 1.6 +++ python-IPy.spec 26 Jul 2009 20:04:09 -0000 1.7 @@ -6,7 +6,7 @@ Summary: Python module for handling IPv4 and IPv6 Addresses and Networks Name: python-%{oname} Version: 0.62 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://software.inl.fr/trac/trac.cgi/wiki/IPy Source0: http://pypi.python.org/packages/source/I/IPy/IPy-%{version}.tar.gz License: BSD @@ -45,6 +45,9 @@ make test %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.62-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.62-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:04:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:04:26 +0000 (UTC) Subject: rpms/python-Levenshtein/devel python-Levenshtein.spec,1.4,1.5 Message-ID: <20090726200426.6EACF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-Levenshtein/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30065 Modified Files: python-Levenshtein.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-Levenshtein.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Levenshtein/devel/python-Levenshtein.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-Levenshtein.spec 26 Feb 2009 20:36:13 -0000 1.4 +++ python-Levenshtein.spec 26 Jul 2009 20:04:26 -0000 1.5 @@ -3,7 +3,7 @@ Name: python-Levenshtein Summary: Python extension computing string distances and similarities Version: 0.10.1 -Release: 8%{?dist} +Release: 9%{?dist} Group: Development/Libraries License: GPLv2+ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/Levenshtein.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:04:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:04:44 +0000 (UTC) Subject: rpms/python-Scriptaculous/devel python-Scriptaculous.spec,1.1,1.2 Message-ID: <20090726200444.ABE8711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-Scriptaculous/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30239 Modified Files: python-Scriptaculous.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-Scriptaculous.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Scriptaculous/devel/python-Scriptaculous.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-Scriptaculous.spec 10 Jul 2009 03:51:10 -0000 1.1 +++ python-Scriptaculous.spec 26 Jul 2009 20:04:44 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-Scriptaculous Version: 1.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: TurboGears, Scriptaculous and Prototype Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{python_sitelib}/scriptaculous/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Itamar Reis Peixoto - 1.8.2-2 - changes from BZ #508510 comment #1 from panemade at gmail.com From jkeating at fedoraproject.org Sun Jul 26 20:04:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:04:59 +0000 (UTC) Subject: rpms/python-TestGears/devel python-TestGears.spec,1.12,1.13 Message-ID: <20090726200459.4E62D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-TestGears/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30414 Modified Files: python-TestGears.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-TestGears.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-TestGears/devel/python-TestGears.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-TestGears.spec 26 Feb 2009 20:37:17 -0000 1.12 +++ python-TestGears.spec 26 Jul 2009 20:04:59 -0000 1.13 @@ -4,7 +4,7 @@ Name: python-TestGears Version: 0.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Unit testing for Python Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:05:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:05:15 +0000 (UTC) Subject: rpms/python-Traits/devel python-Traits.spec,1.3,1.4 Message-ID: <20090726200515.DB08A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-Traits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30574 Modified Files: python-Traits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-Traits.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-Traits/devel/python-Traits.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-Traits.spec 12 Jun 2009 00:59:54 -0000 1.3 +++ python-Traits.spec 26 Jul 2009 20:05:15 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-Traits Version: 3.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Explicitly typed attributes for Python Group: Development/Languages @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.1.0-2 - Fixed missing setupdocs BR From jkeating at fedoraproject.org Sun Jul 26 20:05:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:05:31 +0000 (UTC) Subject: rpms/python-TraitsBackendQt/devel python-TraitsBackendQt.spec, 1.2, 1.3 Message-ID: <20090726200531.48C1F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-TraitsBackendQt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30756 Modified Files: python-TraitsBackendQt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-TraitsBackendQt.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-TraitsBackendQt/devel/python-TraitsBackendQt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-TraitsBackendQt.spec 12 Jun 2009 00:40:12 -0000 1.2 +++ python-TraitsBackendQt.spec 26 Jul 2009 20:05:31 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-TraitsBackendQt Version: 3.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PyQt backend for Traits and TraitsGUI Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Rakesh Pandit 3.1.0-1 - Updated From jkeating at fedoraproject.org Sun Jul 26 20:05:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:05:48 +0000 (UTC) Subject: rpms/python-TraitsGUI/devel python-TraitsGUI.spec,1.2,1.3 Message-ID: <20090726200548.0DB6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-TraitsGUI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30886 Modified Files: python-TraitsGUI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-TraitsGUI.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-TraitsGUI/devel/python-TraitsGUI.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-TraitsGUI.spec 9 Jun 2009 04:33:30 -0000 1.2 +++ python-TraitsGUI.spec 26 Jul 2009 20:05:47 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-TraitsGUI Version: 3.0.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Traits-capable windowing framework Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Rakesh Pandit 3.0.4-4 - Fixed BR: python-setupdocs From rdieter at fedoraproject.org Sun Jul 26 20:05:53 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 26 Jul 2009 20:05:53 +0000 (UTC) Subject: rpms/hosts3d/devel hosts3d-1.00-libGLU.patch, NONE, 1.1 hosts3d.spec, 1.9, 1.10 Message-ID: <20090726200553.6329411C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/hosts3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30930 Modified Files: hosts3d.spec Added Files: hosts3d-1.00-libGLU.patch Log Message: * Sun Jul 26 2009 Rex Dieter - 1.00-3 - FTBFS hosts3d-0.98-1.fc11 (#511623) hosts3d-1.00-libGLU.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE hosts3d-1.00-libGLU.patch --- diff -up hosts3d-1.00/src/Makefile.am.glu hosts3d-1.00/src/Makefile.am --- hosts3d-1.00/src/Makefile.am.glu 2009-01-05 00:25:44.000000000 -0600 +++ hosts3d-1.00/src/Makefile.am 2009-07-26 15:00:09.249116298 -0500 @@ -4,4 +4,4 @@ hsen_SOURCES=llist.cpp misc.cpp proto.cp hsen_LDADD=-lpcap bin_PROGRAMS=hosts3d hosts3d_SOURCES=llist.cpp misc.cpp glwin.cpp objects.cpp hosts3d.cpp -hosts3d_LDADD=-lpthread -lglut +hosts3d_LDADD=-lpthread -lglut -lGLU diff -up hosts3d-1.00/src/Makefile.in.glu hosts3d-1.00/src/Makefile.in --- hosts3d-1.00/src/Makefile.in.glu 2009-06-20 00:56:50.000000000 -0500 +++ hosts3d-1.00/src/Makefile.in 2009-07-26 15:00:16.418365692 -0500 @@ -160,7 +160,7 @@ AUTOMAKE_OPTIONS = no-dependencies hsen_SOURCES = llist.cpp misc.cpp proto.cpp hsen.cpp hsen_LDADD = -lpcap hosts3d_SOURCES = llist.cpp misc.cpp glwin.cpp objects.cpp hosts3d.cpp -hosts3d_LDADD = -lpthread -lglut +hosts3d_LDADD = -lpthread -lglut -lGLU all: all-am .SUFFIXES: Index: hosts3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/hosts3d/devel/hosts3d.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- hosts3d.spec 25 Jul 2009 02:11:47 -0000 1.9 +++ hosts3d.spec 26 Jul 2009 20:05:53 -0000 1.10 @@ -1,6 +1,6 @@ Name: hosts3d Version: 1.00 -Release: 2%{?dist} +Release: 3%{?dist} Summary: 3D real-time network visualiser Group: Applications/Internet @@ -11,7 +11,10 @@ Source1: %{name}.desktop Source2: %{name}.png BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch1: hosts3d-1.00-libGLU.patch + BuildRequires: freeglut-devel +BuildRequires: libGLU-devel BuildRequires: libpcap-devel BuildRequires: desktop-file-utils @@ -55,6 +58,8 @@ standard query response). %prep %setup -q +%patch1 -p1 -b .libGLU + %build %configure @@ -67,9 +72,7 @@ make install INSTALL="install -p" DESTDI desktop-file-install \ %{SOURCE1} \ - %if 0%{?rhel} - --vendor="" \ - %endif + %{?rhel:--vendor=""} \ --dir=%{buildroot}%{_datadir}/applications install -Dpm 0644 %{SOURCE2} \ @@ -96,6 +99,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Rex Dieter - 1.00-3 +- FTBFS hosts3d-0.98-1.fc11 (#511623) + * Fri Jul 24 2009 Fedora Release Engineering - 1.00-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:06:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:06:04 +0000 (UTC) Subject: rpms/python-TurboMail/devel python-TurboMail.spec,1.10,1.11 Message-ID: <20090726200604.7BD4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-TurboMail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31115 Modified Files: python-TurboMail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-TurboMail.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-TurboMail/devel/python-TurboMail.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-TurboMail.spec 26 Feb 2009 20:38:19 -0000 1.10 +++ python-TurboMail.spec 26 Jul 2009 20:06:04 -0000 1.11 @@ -3,7 +3,7 @@ Name: python-TurboMail Version: 2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Multi-threaded mail queue manager for TurboGears applications Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{python_sitelib}/turbomail/*.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:06:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:06:18 +0000 (UTC) Subject: rpms/python-ZConfig/devel python-ZConfig.spec,1.3,1.4 Message-ID: <20090726200618.2A90B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ZConfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31255 Modified Files: python-ZConfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ZConfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ZConfig/devel/python-ZConfig.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-ZConfig.spec 18 Jun 2009 15:25:31 -0000 1.3 +++ python-ZConfig.spec 26 Jul 2009 20:06:17 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-ZConfig Version: 2.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Structured Configuration Library Group: Development/Languages License: ZPLv2.1 @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Conrad Meyer - 2.7.1-1 - New version. From jkeating at fedoraproject.org Sun Jul 26 20:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:06:33 +0000 (UTC) Subject: rpms/python-ZSI/devel python-ZSI.spec,1.4,1.5 Message-ID: <20090726200633.3BC8211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ZSI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31422 Modified Files: python-ZSI.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ZSI.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ZSI/devel/python-ZSI.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-ZSI.spec 26 Feb 2009 20:39:24 -0000 1.4 +++ python-ZSI.spec 26 Jul 2009 20:06:33 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-ZSI Version: 2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Zolera SOAP Infrastructure Group: Development/Languages # to obtain some license information have a look at ZSI/__init__.py file @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:06:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:06:50 +0000 (UTC) Subject: rpms/python-achoo/devel python-achoo.spec,1.1,1.2 Message-ID: <20090726200650.3BF9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-achoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31610 Modified Files: python-achoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-achoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-achoo/devel/python-achoo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-achoo.spec 23 Apr 2009 09:31:34 -0000 1.1 +++ python-achoo.spec 26 Jul 2009 20:06:50 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-achoo Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A fluent interface for testing Python objects Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Ramakrishna Reddy Yekulla 1.0-2 - Adding correct upstream source, matching md5sums From pkgdb at fedoraproject.org Sun Jul 26 20:06:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 20:06:54 +0000 Subject: [pkgdb] virtuoso-opensource was added for rdieter Message-ID: <20090726200654.4B1BE10F897@bastion2.fedora.phx.redhat.com> kevin has added Package virtuoso-opensource with summary A high-performance object-relational SQL database kevin has approved Package virtuoso-opensource kevin has added a Fedora devel branch for virtuoso-opensource with an owner of rdieter kevin has approved virtuoso-opensource in Fedora devel kevin has approved Package virtuoso-opensource kevin has set commit to Approved for 107427 on virtuoso-opensource (Fedora devel) kevin has set checkout to Approved for 107427 on virtuoso-opensource (Fedora devel) kevin has set build to Approved for 107427 on virtuoso-opensource (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virtuoso-opensource From pkgdb at fedoraproject.org Sun Jul 26 20:06:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 20:06:56 +0000 Subject: [pkgdb] virtuoso-opensource summary updated by kevin Message-ID: <20090726200656.AA0F410F89C@bastion2.fedora.phx.redhat.com> kevin set package virtuoso-opensource summary to A high-performance object-relational SQL database To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virtuoso-opensource From pkgdb at fedoraproject.org Sun Jul 26 20:06:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 20:06:56 +0000 Subject: [pkgdb] virtuoso-opensource (Fedora, 10) updated by kevin Message-ID: <20090726200656.B3AC910F8A1@bastion2.fedora.phx.redhat.com> kevin added a Fedora 10 branch for virtuoso-opensource kevin has set commit to Approved for 107427 on virtuoso-opensource (Fedora 10) kevin has set checkout to Approved for 107427 on virtuoso-opensource (Fedora 10) kevin has set build to Approved for 107427 on virtuoso-opensource (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virtuoso-opensource From pkgdb at fedoraproject.org Sun Jul 26 20:06:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Sun, 26 Jul 2009 20:06:56 +0000 Subject: [pkgdb] virtuoso-opensource (Fedora, 10) updated by kevin Message-ID: <20090726200656.BA46810F8B6@bastion2.fedora.phx.redhat.com> kevin added a Fedora 11 branch for virtuoso-opensource kevin has set commit to Approved for 107427 on virtuoso-opensource (Fedora 11) kevin has set checkout to Approved for 107427 on virtuoso-opensource (Fedora 11) kevin has set build to Approved for 107427 on virtuoso-opensource (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virtuoso-opensource From kevin at fedoraproject.org Sun Jul 26 20:07:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 20:07:05 +0000 (UTC) Subject: rpms/virtuoso-opensource/devel - New directory Message-ID: <20090726200705.C460811C00DB@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/virtuoso-opensource/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31758/rpms/virtuoso-opensource/devel Log Message: Directory /cvs/pkgs/rpms/virtuoso-opensource/devel added to the repository From kevin at fedoraproject.org Sun Jul 26 20:07:05 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 20:07:05 +0000 (UTC) Subject: rpms/virtuoso-opensource - New directory Message-ID: <20090726200705.B1F5B11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/virtuoso-opensource In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31758/rpms/virtuoso-opensource Log Message: Directory /cvs/pkgs/rpms/virtuoso-opensource added to the repository From jkeating at fedoraproject.org Sun Jul 26 20:07:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:07:06 +0000 (UTC) Subject: rpms/python-adns/devel python-adns.spec,1.16,1.17 Message-ID: <20090726200706.843B111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-adns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31789 Modified Files: python-adns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-adns.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-adns/devel/python-adns.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- python-adns.spec 26 Feb 2009 20:40:44 -0000 1.16 +++ python-adns.spec 26 Jul 2009 20:07:06 -0000 1.17 @@ -3,7 +3,7 @@ Name: python-adns Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python interface for the GNU adns library Group: Development/Languages @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kevin at fedoraproject.org Sun Jul 26 20:07:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 20:07:12 +0000 (UTC) Subject: rpms/virtuoso-opensource Makefile,NONE,1.1 Message-ID: <20090726200712.50A5011C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/virtuoso-opensource In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31758/rpms/virtuoso-opensource Added Files: Makefile Log Message: Setup of module virtuoso-opensource --- NEW FILE Makefile --- # Top level Makefile for module virtuoso-opensource all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From kevin at fedoraproject.org Sun Jul 26 20:07:12 2009 From: kevin at fedoraproject.org (Kevin Fenzi) Date: Sun, 26 Jul 2009 20:07:12 +0000 (UTC) Subject: rpms/virtuoso-opensource/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090726200712.C13BB11C00CE@cvs1.fedora.phx.redhat.com> Author: kevin Update of /cvs/pkgs/rpms/virtuoso-opensource/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsv31758/rpms/virtuoso-opensource/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module virtuoso-opensource --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: virtuoso-opensource # $Id: Makefile,v 1.1 2009/07/26 20:07:12 kevin Exp $ NAME := virtuoso-opensource SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Sun Jul 26 20:07:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:07:21 +0000 (UTC) Subject: rpms/python-alsa/devel python-alsa.spec,1.10,1.11 Message-ID: <20090726200721.568D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-alsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32123 Modified Files: python-alsa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-alsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-alsa/devel/python-alsa.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-alsa.spec 11 May 2009 19:40:14 -0000 1.10 +++ python-alsa.spec 26 Jul 2009 20:07:21 -0000 1.11 @@ -6,7 +6,7 @@ Summary: Python binding for the ALSA library Name: python-alsa Version: 1.0.20 -Release: 1%{?rcver_dot}%{?dist} +Release: 1%{?rcver_dot}%{?dist}.1 License: LGPLv2+ Group: Development/Languages Source0: ftp://ftp.alsa-project.org/pub/pyalsa/pyalsa-%{version}%{?rcver}.tar.bz2 @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.20-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Andy Shevchenko - 1.0.20-1 - update to release 1.0.20 From jkeating at fedoraproject.org Sun Jul 26 20:07:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:07:36 +0000 (UTC) Subject: rpms/python-alsaaudio/devel python-alsaaudio.spec,1.9,1.10 Message-ID: <20090726200736.4ED0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-alsaaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32320 Modified Files: python-alsaaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-alsaaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-alsaaudio/devel/python-alsaaudio.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-alsaaudio.spec 6 May 2009 15:11:21 -0000 1.9 +++ python-alsaaudio.spec 26 Jul 2009 20:07:36 -0000 1.10 @@ -2,7 +2,7 @@ Name: python-alsaaudio Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python Alsa Bindings Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 kwizart < kwizart at gmail.com > - 0.5-1 - Update to 0.5 From jkeating at fedoraproject.org Sun Jul 26 20:07:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:07:52 +0000 (UTC) Subject: rpms/python-altgraph/devel python-altgraph.spec,1.2,1.3 Message-ID: <20090726200752.77C1211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-altgraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32482 Modified Files: python-altgraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-altgraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-altgraph/devel/python-altgraph.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-altgraph.spec 29 Apr 2009 18:44:51 -0000 1.2 +++ python-altgraph.spec 26 Jul 2009 20:07:52 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-altgraph Version: 0.6.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python graph (network) package Group: Applications/Engineering @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Fabian Affolter - 0.6.7-3 - Changed define to global From jkeating at fedoraproject.org Sun Jul 26 20:08:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:08:10 +0000 (UTC) Subject: rpms/python-amara/devel python-amara.spec,1.23,1.24 Message-ID: <20090726200810.04AEE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-amara/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32647 Modified Files: python-amara.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-amara.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-amara/devel/python-amara.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- python-amara.spec 26 Feb 2009 20:44:38 -0000 1.23 +++ python-amara.spec 26 Jul 2009 20:08:09 -0000 1.24 @@ -2,7 +2,7 @@ Name: python-amara Version: 1.2.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of Pythonic tools for XML data binding Group: Development/Libraries @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %doc CHANGES COPYING demo docs README TODO %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:08:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:08:26 +0000 (UTC) Subject: rpms/python-application/devel python-application.spec,1.2,1.3 Message-ID: <20090726200826.87A1B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-application/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv339 Modified Files: python-application.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-application.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-application/devel/python-application.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-application.spec 10 Jul 2009 11:51:40 -0000 1.2 +++ python-application.spec 26 Jul 2009 20:08:26 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-application Version: 1.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Basic building blocks for python applications Group: Development/Languages License: LGPLv2+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Peter Lemenkov 1.1.2-1 - Ver. 1.1.2 From jkeating at fedoraproject.org Sun Jul 26 20:08:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:08:44 +0000 (UTC) Subject: rpms/python-argparse/devel python-argparse.spec,1.2,1.3 Message-ID: <20090726200844.2F30D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-argparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv539 Modified Files: python-argparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-argparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-argparse/devel/python-argparse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-argparse.spec 26 Feb 2009 20:45:33 -0000 1.2 +++ python-argparse.spec 26 Jul 2009 20:08:43 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Optparse inspired command line parser for Python Name: python-argparse Version: 0.8.0 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Development/Languages URL: http://argparse.python-hosting.com/ @@ -52,6 +52,9 @@ dos2unix -k README.txt %{python_sitelib}/%{oname}-%{version}-py%{pyver}.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:08:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:08:59 +0000 (UTC) Subject: rpms/python-arm4/devel python-arm4.spec,1.5,1.6 Message-ID: <20090726200859.85F0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-arm4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv699 Modified Files: python-arm4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-arm4.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-arm4/devel/python-arm4.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-arm4.spec 29 Apr 2009 16:59:07 -0000 1.5 +++ python-arm4.spec 26 Jul 2009 20:08:59 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-arm4 Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} License: EPL Group: Development/Languages Summary: Application Reponse Measurement (ARM) V4 Python language bindings @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 David Carter 1.2-1 - Updated for new upstream release - Adds support for Python 2.6 and Python 3 From jkeating at fedoraproject.org Sun Jul 26 20:09:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:09:15 +0000 (UTC) Subject: rpms/python-augeas/devel python-augeas.spec,1.6,1.7 Message-ID: <20090726200915.CE65111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv897 Modified Files: python-augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-augeas/devel/python-augeas.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-augeas.spec 26 Feb 2009 20:46:32 -0000 1.6 +++ python-augeas.spec 26 Jul 2009 20:09:15 -0000 1.7 @@ -3,7 +3,7 @@ Name: python-augeas Version: 0.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python bindings to augeas Group: Development/Languages License: LGPLv2+ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*augeas*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:09:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:09:31 +0000 (UTC) Subject: rpms/python-basemap/devel python-basemap.spec,1.28,1.29 Message-ID: <20090726200931.937F811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-basemap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1075 Modified Files: python-basemap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-basemap.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-basemap/devel/python-basemap.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- python-basemap.spec 20 Jul 2009 11:31:00 -0000 1.28 +++ python-basemap.spec 26 Jul 2009 20:09:31 -0000 1.29 @@ -2,7 +2,7 @@ Name: python-basemap Version: 0.99.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Plots data on map projections (with continental and political boundaries) Group: Development/Libraries License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/_geoslib.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Caol?n McNamara - 0.99.2-4 - Resolves: rhbz#511576 FTBFS showimg numpy -> numpy-f2py From jkeating at fedoraproject.org Sun Jul 26 20:09:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:09:51 +0000 (UTC) Subject: rpms/python-basemap-data/devel python-basemap-data.spec,1.13,1.14 Message-ID: <20090726200951.6B19411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-basemap-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1280 Modified Files: python-basemap-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-basemap-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-basemap-data/devel/python-basemap-data.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-basemap-data.spec 26 Feb 2009 20:48:21 -0000 1.13 +++ python-basemap-data.spec 26 Jul 2009 20:09:51 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-basemap-data Version: 0.99.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Data for python-basemap Group: Development/Libraries License: GPLv2 and Public Domain @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.99.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:10:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:10:09 +0000 (UTC) Subject: rpms/python-beaker/devel python-beaker.spec,1.14,1.15 Message-ID: <20090726201009.AA39111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-beaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1505 Modified Files: python-beaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-beaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-beaker/devel/python-beaker.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-beaker.spec 22 Jul 2009 02:05:06 -0000 1.14 +++ python-beaker.spec 26 Jul 2009 20:10:09 -0000 1.15 @@ -2,7 +2,7 @@ Name: python-beaker Version: 1.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: WSGI middleware layer to provide sessions Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Kyle VanderBeek - 1.3.1-5 - Add patch based on upstream hg 403ef7c82d32 for config overwriting that breaks Pylons unit tests From twaugh at fedoraproject.org Sun Jul 26 20:10:11 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Sun, 26 Jul 2009 20:10:11 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer.spec, 1.272, 1.273 Message-ID: <20090726201011.AFFE711C048A@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1523 Modified Files: system-config-printer.spec Log Message: * Sun Jul 26 2009 Tim Waugh 1.1.10-5 - Split out D-Bus service for udev helper. Build requires dbus-glib-devel. Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.272 retrieving revision 1.273 diff -u -p -r1.272 -r1.273 --- system-config-printer.spec 26 Jul 2009 18:43:24 -0000 1.272 +++ system-config-printer.spec 26 Jul 2009 20:10:11 -0000 1.273 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -23,6 +23,7 @@ BuildRequires: desktop-file-utils >= 0.2 BuildRequires: gettext-devel BuildRequires: intltool BuildRequires: libusb-devel, libudev-devel +BuildRequires: dbus-glib-devel BuildRequires: xmlto BuildRequires: epydoc @@ -194,8 +195,9 @@ rm -rf %buildroot exit 0 %changelog -* Sun Jul 26 2009 Tim Waugh 1.1.10-4 -- Split out D-Bus service for udev helper. +* Sun Jul 26 2009 Tim Waugh 1.1.10-5 +- Split out D-Bus service for udev helper. Build requires + dbus-glib-devel. * Fri Jul 24 2009 Tim Waugh 1.1.10-3 - Removed gnome-packagekit dependency. The presence of From jkeating at fedoraproject.org Sun Jul 26 20:10:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:10:28 +0000 (UTC) Subject: rpms/python-bibtex/devel python-bibtex.spec,1.22,1.23 Message-ID: <20090726201028.05E6711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-bibtex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1819 Modified Files: python-bibtex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-bibtex.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-bibtex/devel/python-bibtex.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-bibtex.spec 26 Feb 2009 20:50:01 -0000 1.22 +++ python-bibtex.spec 26 Jul 2009 20:10:27 -0000 1.23 @@ -3,7 +3,7 @@ Summary: Python extension to parse BibTeX files Name: python-bibtex Version: 1.2.4 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Development/Libraries Source: http://downloads.sourceforge.net/pybliographer/python-bibtex-1.2.4.tar.gz @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:10:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:10:46 +0000 (UTC) Subject: rpms/python-biopython/devel python-biopython.spec,1.15,1.16 Message-ID: <20090726201046.BA3B411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-biopython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1998 Modified Files: python-biopython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-biopython.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-biopython/devel/python-biopython.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-biopython.spec 26 Feb 2009 20:50:53 -0000 1.15 +++ python-biopython.spec 26 Jul 2009 20:10:46 -0000 1.16 @@ -3,7 +3,7 @@ Name: python-biopython Version: 1.49 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python tools for computational molecular biology Source0: http://biopython.org/DIST/biopython-%{version}.tar.gz License: MIT @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/BioSQL/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.49-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.49-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:11:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:11:04 +0000 (UTC) Subject: rpms/python-bitarray/devel python-bitarray.spec,1.1,1.2 Message-ID: <20090726201104.8A77911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-bitarray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2180 Modified Files: python-bitarray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-bitarray.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-bitarray/devel/python-bitarray.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-bitarray.spec 23 Apr 2009 09:36:40 -0000 1.1 +++ python-bitarray.spec 26 Jul 2009 20:11:04 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-bitarray Version: 0.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Efficient Array of Booleans --C Extensions Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Ramakrishna Reddy Yekulla 0.3.5-1 - Initial RPM release From jkeating at fedoraproject.org Sun Jul 26 20:11:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:11:22 +0000 (UTC) Subject: rpms/python-bugzilla/devel python-bugzilla.spec,1.13,1.14 Message-ID: <20090726201122.8340C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2458 Modified Files: python-bugzilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-bugzilla/devel/python-bugzilla.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-bugzilla.spec 14 Apr 2009 15:32:16 -0000 1.13 +++ python-bugzilla.spec 26 Jul 2009 20:11:22 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-bugzilla Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A python library for interacting with Bugzilla Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Will Woods - 0.5.1-2 - Fix missing util.py From jkeating at fedoraproject.org Sun Jul 26 20:11:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:11:40 +0000 (UTC) Subject: rpms/python-cclib/devel python-cclib.spec,1.1,1.2 Message-ID: <20090726201140.0A85511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cclib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2619 Modified Files: python-cclib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cclib/devel/python-cclib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-cclib.spec 4 May 2009 06:21:54 -0000 1.1 +++ python-cclib.spec 26 Jul 2009 20:11:39 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-cclib Version: 0.91 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A library for processing results of computational chemistry packages Group: Development/Languages License: LGPLv2+ @@ -68,6 +68,9 @@ PYTHONPATH=../build/lib python testall.p %{_bindir}/cda %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 02 2009 Jussi Lehtola - 0.91-4 - Put everything in main package instead. From jkeating at fedoraproject.org Sun Jul 26 20:11:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:11:56 +0000 (UTC) Subject: rpms/python-cerealizer/devel python-cerealizer.spec,1.4,1.5 Message-ID: <20090726201156.60F6311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cerealizer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2784 Modified Files: python-cerealizer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cerealizer.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cerealizer/devel/python-cerealizer.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-cerealizer.spec 26 Feb 2009 20:52:45 -0000 1.4 +++ python-cerealizer.spec 26 Jul 2009 20:11:56 -0000 1.5 @@ -3,7 +3,7 @@ Name: python-cerealizer Summary: Secure pickle-like module Version: 0.6 -Release: 5%{?dist} +Release: 6%{?dist} License: Python Group: Development/Tools Source0: http://download.gna.org/soya/Cerealizer-%{version}.tar.bz2 @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/Cerealizer-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:12:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:12:11 +0000 (UTC) Subject: rpms/python-chardet/devel python-chardet.spec,1.1,1.2 Message-ID: <20090726201211.D5FEF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-chardet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2970 Modified Files: python-chardet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-chardet.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-chardet/devel/python-chardet.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-chardet.spec 12 Apr 2009 08:50:14 -0000 1.1 +++ python-chardet.spec 26 Jul 2009 20:12:11 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-chardet Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Character encoding auto-detection in Python Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Aug 04 2008 Kushal Das 1.0.1-1 - Initial release From jkeating at fedoraproject.org Sun Jul 26 20:12:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:12:27 +0000 (UTC) Subject: rpms/python-cheetah/devel python-cheetah.spec,1.21,1.22 Message-ID: <20090726201227.B282911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cheetah/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3166 Modified Files: python-cheetah.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cheetah.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cheetah/devel/python-cheetah.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- python-cheetah.spec 5 Jun 2009 14:40:23 -0000 1.21 +++ python-cheetah.spec 26 Jul 2009 20:12:27 -0000 1.22 @@ -2,7 +2,7 @@ Name: python-cheetah Version: 2.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Template engine and code-generator Group: Development/Libraries @@ -82,6 +82,9 @@ rm -rf %{buildroot} %{python_sitearch}/Cheetah-%{version}-*.egg-info/*.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Mike Bonnet - 2.2.1-1 - update to the 2.2.1 release From jkeating at fedoraproject.org Sun Jul 26 20:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:12:44 +0000 (UTC) Subject: rpms/python-cherrypy/devel python-cherrypy.spec,1.23,1.24 Message-ID: <20090726201244.BDB3311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cherrypy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3400 Modified Files: python-cherrypy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cherrypy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cherrypy/devel/python-cherrypy.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- python-cherrypy.spec 17 Jun 2009 04:29:25 -0000 1.23 +++ python-cherrypy.spec 26 Jul 2009 20:12:44 -0000 1.24 @@ -2,7 +2,7 @@ Name: python-cherrypy Version: 3.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A pythonic, object-oriented web development framework Group: Development/Libraries License: BSD @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Toshio Kuratomi - 3.1.2-1 - New upstream with python-2.6 fixes. - BR tidy for tests. From jkeating at fedoraproject.org Sun Jul 26 20:13:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:13:01 +0000 (UTC) Subject: rpms/python-cherrypy2/devel python-cherrypy2.spec,1.7,1.8 Message-ID: <20090726201301.075AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cherrypy2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3592 Modified Files: python-cherrypy2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cherrypy2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cherrypy2/devel/python-cherrypy2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-cherrypy2.spec 26 Feb 2009 20:55:45 -0000 1.7 +++ python-cherrypy2.spec 26 Jul 2009 20:13:00 -0000 1.8 @@ -2,7 +2,7 @@ Name: python-cherrypy2 Version: 2.3.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A pythonic, object-oriented web development framework Group: Development/Libraries License: BSD @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:13:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:13:19 +0000 (UTC) Subject: rpms/python-cherrytemplate/devel python-cherrytemplate.spec, 1.9, 1.10 Message-ID: <20090726201319.B2FDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cherrytemplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3807 Modified Files: python-cherrytemplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cherrytemplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cherrytemplate/devel/python-cherrytemplate.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-cherrytemplate.spec 26 Feb 2009 20:56:38 -0000 1.9 +++ python-cherrytemplate.spec 26 Jul 2009 20:13:19 -0000 1.10 @@ -3,7 +3,7 @@ Name: python-cherrytemplate Version: 1.0.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: An easy and powerful templating module for Python Group: Development/Libraries License: BSD @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/CherryTemplate-%{version}-py%{pyver}.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:13:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:13:36 +0000 (UTC) Subject: rpms/python-chm/devel python-chm.spec,1.12,1.13 Message-ID: <20090726201336.A8D4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-chm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3946 Modified Files: python-chm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-chm.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-chm/devel/python-chm.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-chm.spec 11 Jun 2009 11:02:26 -0000 1.12 +++ python-chm.spec 26 Jul 2009 20:13:36 -0000 1.13 @@ -2,7 +2,7 @@ Name: python-chm Version: 0.8.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python package for CHM files handling Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Rangeen Basu Roy Chowdhury - 0.8.4-7 - Building for F-12 From jkeating at fedoraproject.org Sun Jul 26 20:14:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:14:09 +0000 (UTC) Subject: rpms/python-clientform/devel python-clientform.spec,1.18,1.19 Message-ID: <20090726201409.2911C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-clientform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4294 Modified Files: python-clientform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-clientform.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-clientform/devel/python-clientform.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- python-clientform.spec 20 Jul 2009 19:41:28 -0000 1.18 +++ python-clientform.spec 26 Jul 2009 20:14:08 -0000 1.19 @@ -3,7 +3,7 @@ Name: python-clientform Version: 0.2.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python module for client-side HTML forms Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/ClientForm-%{version}-py%{pyver}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Luke Macken - 0.2.7-5 - Remove duplicate README html file (#480678) * Thu Feb 26 2009 Fedora Release Engineering - 0.2.7-4 From jkeating at fedoraproject.org Sun Jul 26 20:13:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:13:53 +0000 (UTC) Subject: rpms/python-cjson/devel python-cjson.spec,1.3,1.4 Message-ID: <20090726201353.8A13D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cjson/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4145 Modified Files: python-cjson.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cjson.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cjson/devel/python-cjson.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-cjson.spec 26 Feb 2009 20:58:24 -0000 1.3 +++ python-cjson.spec 26 Jul 2009 20:13:53 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-cjson Version: 1.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast JSON encoder/decoder for Python Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:14:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:14:23 +0000 (UTC) Subject: rpms/python-cly/devel python-cly.spec,1.1,1.2 Message-ID: <20090726201423.0108611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4434 Modified Files: python-cly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cly.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cly/devel/python-cly.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-cly.spec 12 Apr 2009 19:02:53 -0000 1.1 +++ python-cly.spec 26 Jul 2009 20:14:22 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-cly Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A module for adding powerful text-based consoles to your Python application Group: Development/Languages @@ -45,5 +45,8 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/cly-%{version}-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Silas Sewell - 0.9-1 - Initial package From jkeating at fedoraproject.org Sun Jul 26 20:14:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:14:37 +0000 (UTC) Subject: rpms/python-configobj/devel python-configobj.spec,1.15,1.16 Message-ID: <20090726201437.702B711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-configobj/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4601 Modified Files: python-configobj.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-configobj.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-configobj/devel/python-configobj.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-configobj.spec 7 May 2009 18:42:19 -0000 1.15 +++ python-configobj.spec 26 Jul 2009 20:14:37 -0000 1.16 @@ -3,7 +3,7 @@ Name: python-configobj Version: 4.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Config file reading, writing, and validation Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Yaakov M. Nemoy - 4.6.0-1 - updated to latest upstream From jkeating at fedoraproject.org Sun Jul 26 20:14:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:14:51 +0000 (UTC) Subject: rpms/python-coverage/devel python-coverage.spec,1.2,1.3 Message-ID: <20090726201451.2928C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-coverage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4736 Modified Files: python-coverage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-coverage.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-coverage/devel/python-coverage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-coverage.spec 15 May 2009 17:44:23 -0000 1.2 +++ python-coverage.spec 26 Jul 2009 20:14:50 -0000 1.3 @@ -3,7 +3,7 @@ Name: python-coverage Summary: Code coverage testing module for Python Version: 2.85 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Libraries URL: http://nedbatchelder.com/code/modules/coverage.html @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{python_sitelib}/coverage*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.85-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Tom "spot" Callaway - 2.85-2 - fix install invocation From jkeating at fedoraproject.org Sun Jul 26 20:15:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:15:07 +0000 (UTC) Subject: rpms/python-cpio/devel python-cpio.spec,1.8,1.9 Message-ID: <20090726201507.2FB0511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cpio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4901 Modified Files: python-cpio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cpio.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cpio/devel/python-cpio.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-cpio.spec 26 Feb 2009 21:01:17 -0000 1.8 +++ python-cpio.spec 26 Jul 2009 20:15:06 -0000 1.9 @@ -3,7 +3,7 @@ Name: python-cpio Version: 0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A Python module for accessing cpio archives Group: Development/Languages @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pbrobinson at fedoraproject.org Sun Jul 26 20:15:13 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sun, 26 Jul 2009 20:15:13 +0000 (UTC) Subject: rpms/clutter-imcontext/devel clutter-imcontext.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726201513.A790611C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/clutter-imcontext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4540/devel Modified Files: .cvsignore sources Added Files: clutter-imcontext.spec import.log Log Message: - Initial import --- NEW FILE clutter-imcontext.spec --- Name: clutter-imcontext Version: 0.1.2 Release: 4%{?dist} Summary: IMContext Framework Library for Clutter Group: System Environment/Libraries # Upstream license clarification for clutter-imtext.{c,h} are LGPLv2. # Its updated upstream and will be in the next release # http://lists.moblin.org/pipermail/dev/2009-July/005522.html License: LGPLv2 URL: http://www.moblin.org/ Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel BuildRequires: clutter-devel >= 0.9.3 BuildRequires: pkgconfig BuildRequires: gtk-doc # Require these because the git tarball doesn't have the configure built BuildRequires: libtool BuildRequires: automake BuildRequires: autoconf %description IMContext Framework Library for Clutter %package devel Summary: Development package for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: clutter-devel Requires: pkgconfig Requires: gtk-doc %description devel Files for development with %{name}. %prep %setup -q sed -i '/configure/d' autogen.sh %build ./autogen.sh %configure --disable-static --enable-gtk-doc make %{?_smp_mflags} V=1 %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} #Remove libtool archives. rm -rf %{buildroot}/%{_libdir}/*.la %clean rm -rf %{buildroot} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING AUTHORS ChangeLog %{_bindir}/clutter-scan-immodules %{_libdir}/lib%{name}-0.1.so.0 %{_libdir}/lib%{name}-0.1.so.0.0.0 %files devel %defattr(-,root,root,-) %{_includedir}/%{name}-0.1 %{_libdir}/pkgconfig/%{name}-0.1.pc %{_libdir}/*.so %{_datadir}/gtk-doc/html/%{name} %changelog * Sun Jul 26 2009 Peter Robinson 0.1.2-4 - A small fix up * Mon Jul 20 2009 Peter Robinson 0.1.2-3 - More review request updates, license clarification * Sun Jul 19 2009 Peter Robinson 0.1.2-2 - Updates from the review request * Wed Jul 15 2009 Peter Robinson 0.1.2-1 - Initial packaging --- NEW FILE import.log --- clutter-imcontext-0_1_2-4_fc11:HEAD:clutter-imcontext-0.1.2-4.fc11.src.rpm:1248639143 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/clutter-imcontext/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 19:45:44 -0000 1.1 +++ .cvsignore 26 Jul 2009 20:15:13 -0000 1.2 @@ -0,0 +1 @@ +clutter-imcontext-0.1.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/clutter-imcontext/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 19:45:44 -0000 1.1 +++ sources 26 Jul 2009 20:15:13 -0000 1.2 @@ -0,0 +1 @@ +6b6fb6690c74f496470166640e8cd0f2 clutter-imcontext-0.1.2.tar.bz2 From jkeating at fedoraproject.org Sun Jul 26 20:15:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:15:22 +0000 (UTC) Subject: rpms/python-crypto/devel python-crypto.spec,1.31,1.32 Message-ID: <20090726201522.D15A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-crypto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5085 Modified Files: python-crypto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-crypto.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-crypto/devel/python-crypto.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- python-crypto.spec 26 Feb 2009 21:02:20 -0000 1.31 +++ python-crypto.spec 26 Jul 2009 20:15:22 -0000 1.32 @@ -5,7 +5,7 @@ distutils.sysconfig import get_python_li Summary: Cryptography library for Python Name: python-crypto Version: 2.0.1 -Release: 18 +Release: 19 License: Public Domain Group: Development/Libraries # FIXME: In the near future, new releases will be at http://www.dlitz.net/software/pycrypto/ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.1-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:15:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:15:37 +0000 (UTC) Subject: rpms/python-cryptsetup/devel python-cryptsetup.spec,1.12,1.13 Message-ID: <20090726201537.CB2F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cryptsetup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5398 Modified Files: python-cryptsetup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cryptsetup.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cryptsetup/devel/python-cryptsetup.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-cryptsetup.spec 13 Mar 2009 13:51:27 -0000 1.12 +++ python-cryptsetup.spec 26 Jul 2009 20:15:37 -0000 1.13 @@ -2,7 +2,7 @@ Name: python-cryptsetup Version: 0.0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for cryptsetup Group: Development/Libraries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc selftest.py %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Martin Sivak - 0.0.9-1 - luksFormat accepts None values and then uses defaults From jkeating at fedoraproject.org Sun Jul 26 20:15:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:15:52 +0000 (UTC) Subject: rpms/python-cssutils/devel python-cssutils.spec,1.3,1.4 Message-ID: <20090726201552.5FB9E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cssutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5776 Modified Files: python-cssutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cssutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cssutils/devel/python-cssutils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-cssutils.spec 26 Feb 2009 21:03:17 -0000 1.3 +++ python-cssutils.spec 26 Jul 2009 20:15:52 -0000 1.4 @@ -3,7 +3,7 @@ Summary: CSS Cascading Style Sheets library for Python Name: python-cssutils Version: 0.9.5.1 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv3+ Group: Development/Libraries URL: http://cthedot.de/cssutils/ @@ -76,6 +76,9 @@ done %doc doc/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:16:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:16:07 +0000 (UTC) Subject: rpms/python-ctags/devel python-ctags.spec,1.1,1.2 Message-ID: <20090726201607.D6CEF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ctags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6297 Modified Files: python-ctags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ctags.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ctags/devel/python-ctags.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-ctags.spec 29 Jun 2009 04:58:29 -0000 1.1 +++ python-ctags.spec 26 Jul 2009 20:16:07 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-ctags Version: 1.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A wrapper to read tags library Group: Development/Languages @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 24 2009 Kushal Das 1.0.5-1 - Initial release in Fedora From jkeating at fedoraproject.org Sun Jul 26 20:16:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:16:23 +0000 (UTC) Subject: rpms/python-cvxopt/devel python-cvxopt.spec,1.3,1.4 Message-ID: <20090726201623.DB02611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-cvxopt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6522 Modified Files: python-cvxopt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-cvxopt.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cvxopt/devel/python-cvxopt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-cvxopt.spec 27 Feb 2009 00:38:20 -0000 1.3 +++ python-cvxopt.spec 26 Jul 2009 20:16:23 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-cvxopt Version: 1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Python Package for Convex Optimization Group: Development/Languages License: GPLv3+ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Conrad Meyer - 1.1-6 - Make examples subpackage noarch. From jkeating at fedoraproject.org Sun Jul 26 20:16:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:16:41 +0000 (UTC) Subject: rpms/python-daap/devel python-daap.spec,1.7,1.8 Message-ID: <20090726201641.3572511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-daap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6702 Modified Files: python-daap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-daap.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-daap/devel/python-daap.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-daap.spec 26 Feb 2009 21:05:23 -0000 1.7 +++ python-daap.spec 26 Jul 2009 20:16:40 -0000 1.8 @@ -2,7 +2,7 @@ Name: python-daap Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DAAP client implemented in Python Group: Development/Languages @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:16:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:16:56 +0000 (UTC) Subject: rpms/python-daemon/devel python-daemon.spec,1.1,1.2 Message-ID: <20090726201656.B3AF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-daemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6866 Modified Files: python-daemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-daemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-daemon/devel/python-daemon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-daemon.spec 29 Jun 2009 05:36:49 -0000 1.1 +++ python-daemon.spec 26 Jul 2009 20:16:56 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-daemon Version: 1.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Library to implement a well-behaved Unix daemon process Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Kushal Das 1.4.6-1 - Initial release From jkeating at fedoraproject.org Sun Jul 26 20:17:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:17:11 +0000 (UTC) Subject: rpms/python-dateutil/devel python-dateutil.spec,1.15,1.16 Message-ID: <20090726201711.EB09211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dateutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7024 Modified Files: python-dateutil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dateutil.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dateutil/devel/python-dateutil.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-dateutil.spec 26 Feb 2009 21:06:30 -0000 1.15 +++ python-dateutil.spec 26 Jul 2009 20:17:11 -0000 1.16 @@ -2,7 +2,7 @@ Name: python-dateutil Version: 1.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Powerful extensions to the standard datetime module Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:17:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:17:31 +0000 (UTC) Subject: rpms/python-decorator/devel python-decorator.spec,1.7,1.8 Message-ID: <20090726201731.5B09B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-decorator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7251 Modified Files: python-decorator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-decorator.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-decorator/devel/python-decorator.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-decorator.spec 15 Jun 2009 16:47:51 -0000 1.7 +++ python-decorator.spec 26 Jul 2009 20:17:31 -0000 1.8 @@ -3,7 +3,7 @@ Name: python-decorator Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Module to simplify usage of decorators Group: Development/Languages @@ -52,6 +52,9 @@ nosetests --with-doctest %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Luke Macken - 3.0.1-2 - Only run the test suite on Fedora 11, which has Py2.6 and the multiprocessing module. We can disable this once the compat module is packaged for F10 and From jkeating at fedoraproject.org Sun Jul 26 20:17:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:17:46 +0000 (UTC) Subject: rpms/python-decoratortools/devel python-decoratortools.spec, 1.7, 1.8 Message-ID: <20090726201746.5092A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-decoratortools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7418 Modified Files: python-decoratortools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-decoratortools.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-decoratortools/devel/python-decoratortools.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-decoratortools.spec 26 Feb 2009 21:09:00 -0000 1.7 +++ python-decoratortools.spec 26 Jul 2009 20:17:46 -0000 1.8 @@ -5,7 +5,7 @@ Name: python-decoratortools Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Use class and function decorators -- even in Python 2.3 Group: Development/Languages License: Python or ZPLv2.1 @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:18:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:18:00 +0000 (UTC) Subject: rpms/python-demjson/devel python-demjson.spec,1.3,1.4 Message-ID: <20090726201800.D85C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-demjson/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7569 Modified Files: python-demjson.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-demjson.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-demjson/devel/python-demjson.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-demjson.spec 26 Feb 2009 21:10:02 -0000 1.3 +++ python-demjson.spec 26 Jul 2009 20:18:00 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-demjson Version: 1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python JSON module and lint checker Group: Development/Languages @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:18:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:18:16 +0000 (UTC) Subject: rpms/python-dialog/devel python-dialog.spec,1.14,1.15 Message-ID: <20090726201816.89BC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dialog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7776 Modified Files: python-dialog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dialog.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dialog/devel/python-dialog.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-dialog.spec 26 Feb 2009 21:11:01 -0000 1.14 +++ python-dialog.spec 26 Jul 2009 20:18:16 -0000 1.15 @@ -2,7 +2,7 @@ Name: python-dialog Version: 2.7 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Python interface to the Unix dialog utility Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.7-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:18:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:18:30 +0000 (UTC) Subject: rpms/python-dictclient/devel python-dictclient.spec,1.6,1.7 Message-ID: <20090726201830.F224611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dictclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7933 Modified Files: python-dictclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dictclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dictclient/devel/python-dictclient.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-dictclient.spec 14 Apr 2009 17:16:05 -0000 1.6 +++ python-dictclient.spec 26 Jul 2009 20:18:30 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-dictclient Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python client for DICT protocol Group: Development/Languages @@ -42,6 +42,9 @@ CFLAGS="%{optflags}" %{__python} -c 'imp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Ricky Zhou - 1.0.1-4 - Change define to global. - Remove old >= 8 conditional. From jkeating at fedoraproject.org Sun Jul 26 20:18:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:18:45 +0000 (UTC) Subject: rpms/python-distutils-extra/devel python-distutils-extra.spec, 1.2, 1.3 Message-ID: <20090726201845.41FDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-distutils-extra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8111 Modified Files: python-distutils-extra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-distutils-extra.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-distutils-extra/devel/python-distutils-extra.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-distutils-extra.spec 26 Feb 2009 21:12:52 -0000 1.2 +++ python-distutils-extra.spec 26 Jul 2009 20:18:44 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-distutils-extra Version: 1.91.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Integrate more support into Python's distutils Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.91.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.91.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:18:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:18:59 +0000 (UTC) Subject: rpms/python-dns/devel python-dns.spec,1.11,1.12 Message-ID: <20090726201859.A99CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8310 Modified Files: python-dns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dns.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dns/devel/python-dns.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-dns.spec 19 Jun 2009 15:37:07 -0000 1.11 +++ python-dns.spec 26 Jul 2009 20:18:59 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-dns Version: 1.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DNS toolkit for Python Group: Development/Languages @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{python_sitelib}/dns %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Jeffrey C. Ollie - 1.7.1-1 - New since 1.7.0: - From jkeating at fedoraproject.org Sun Jul 26 20:19:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:19:16 +0000 (UTC) Subject: rpms/python-docs/devel python-docs.spec,1.21,1.22 Message-ID: <20090726201916.D394111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8492 Modified Files: python-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-docs/devel/python-docs.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- python-docs.spec 22 Jul 2009 16:01:10 -0000 1.21 +++ python-docs.spec 26 Jul 2009 20:19:16 -0000 1.22 @@ -13,7 +13,7 @@ Summary: Documentation for the Python programming language Name: %{python}-docs Version: %{pybasever} -Release: 4%{?dist} +Release: 5%{?dist} License: Python Group: Documentation Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2 @@ -71,6 +71,9 @@ rm -fr $RPM_BUILD_ROOT %doc Misc/HISTORY Doc/build/html %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Roman Rakus - 2.6-4 - Fix import error (#511647) From jkeating at fedoraproject.org Sun Jul 26 20:19:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:19:33 +0000 (UTC) Subject: rpms/python-docutils/devel python-docutils.spec,1.15,1.16 Message-ID: <20090726201933.D555611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-docutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8691 Modified Files: python-docutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-docutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-docutils/devel/python-docutils.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-docutils.spec 26 Feb 2009 21:15:54 -0000 1.15 +++ python-docutils.spec 26 Jul 2009 20:19:33 -0000 1.16 @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A system for processing plaintext documentation Group: Development/Languages @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{python_sitelib}/*egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:19:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:19:48 +0000 (UTC) Subject: rpms/python-dotconf/devel python-dotconf.spec,1.3,1.4 Message-ID: <20090726201948.7F52411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dotconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8807 Modified Files: python-dotconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dotconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dotconf/devel/python-dotconf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-dotconf.spec 26 Feb 2009 21:16:50 -0000 1.3 +++ python-dotconf.spec 26 Jul 2009 20:19:48 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-dotconf Version: 0.2.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Parser for the dot.conf configuration file Group: Development/Libraries @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:20:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:20:04 +0000 (UTC) Subject: rpms/python-dtopt/devel python-dtopt.spec,1.4,1.5 Message-ID: <20090726202004.A8E0911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-dtopt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8952 Modified Files: python-dtopt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-dtopt.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-dtopt/devel/python-dtopt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-dtopt.spec 14 Apr 2009 17:19:34 -0000 1.4 +++ python-dtopt.spec 26 Jul 2009 20:20:04 -0000 1.5 @@ -3,7 +3,7 @@ Name: python-dtopt Summary: Add options to doctest examples while they are running Version: 0.1 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries URL: http://pypi.python.org/pypi/dtopt/ @@ -41,6 +41,9 @@ this option globally from within a docte %{python_sitelib}/dtopt*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Ricky Zhou - 0.1-5 - Change define to global. - Remove unnecessary BuildRequires on python-devel. From jkeating at fedoraproject.org Sun Jul 26 20:20:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:20:28 +0000 (UTC) Subject: rpms/python-durus/devel python-durus.spec,1.22,1.23 Message-ID: <20090726202028.7A5E411C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-durus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9151 Modified Files: python-durus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-durus.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-durus/devel/python-durus.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-durus.spec 26 Feb 2009 21:19:24 -0000 1.22 +++ python-durus.spec 26 Jul 2009 20:20:28 -0000 1.23 @@ -4,7 +4,7 @@ Name: python-durus Version: 3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Python Object Database Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/durus %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:20:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:20:47 +0000 (UTC) Subject: rpms/python-elixir/devel python-elixir.spec,1.9,1.10 Message-ID: <20090726202047.95BCC11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-elixir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9366 Modified Files: python-elixir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-elixir.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-elixir/devel/python-elixir.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-elixir.spec 26 Feb 2009 21:20:14 -0000 1.9 +++ python-elixir.spec 26 Jul 2009 20:20:47 -0000 1.10 @@ -2,7 +2,7 @@ Name: python-elixir Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A declarative mapper for SQLAlchemy Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:21:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:21:01 +0000 (UTC) Subject: rpms/python-enchant/devel python-enchant.spec,1.15,1.16 Message-ID: <20090726202101.5182011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-enchant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9532 Modified Files: python-enchant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-enchant.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-enchant/devel/python-enchant.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-enchant.spec 26 Feb 2009 21:21:07 -0000 1.15 +++ python-enchant.spec 26 Jul 2009 20:21:01 -0000 1.16 @@ -2,7 +2,7 @@ Name: python-enchant Version: 1.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python bindings for Enchant spellchecking library Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:21:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:21:21 +0000 (UTC) Subject: rpms/python-enum/devel python-enum.spec,1.3,1.4 Message-ID: <20090726202121.5E65611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-enum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9721 Modified Files: python-enum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-enum.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-enum/devel/python-enum.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-enum.spec 26 Feb 2009 21:21:57 -0000 1.3 +++ python-enum.spec 26 Jul 2009 20:21:21 -0000 1.4 @@ -3,7 +3,7 @@ Name: python-enum Version: 0.4.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Robust enumerated type support in Python Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:21:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:21:36 +0000 (UTC) Subject: rpms/python-epdb/devel python-epdb.spec,1.2,1.3 Message-ID: <20090726202136.473C411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-epdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9910 Modified Files: python-epdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-epdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-epdb/devel/python-epdb.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-epdb.spec 26 Feb 2009 21:22:51 -0000 1.2 +++ python-epdb.spec 26 Jul 2009 20:21:35 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-epdb Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extended Python debugger Group: Development/Debuggers @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:21:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:21:50 +0000 (UTC) Subject: rpms/python-ethtool/devel python-ethtool.spec,1.3,1.4 Message-ID: <20090726202150.3AFC811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ethtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10078 Modified Files: python-ethtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ethtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ethtool/devel/python-ethtool.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-ethtool.spec 26 Feb 2009 21:23:40 -0000 1.3 +++ python-ethtool.spec 26 Jul 2009 20:21:50 -0000 1.4 @@ -4,7 +4,7 @@ Summary: Ethernet settings python bindings Name: python-ethtool Version: 0.3 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://git.kernel.org/?p=linux/kernel/git/acme/python-ethtool.git Source: http://userweb.kernel.org/~acme/python-ethtool/%{name}-%{version}.tar.bz2 License: GPLv2 @@ -44,6 +44,9 @@ rm -rf %{buildroot} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:22:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:22:04 +0000 (UTC) Subject: rpms/python-exif/devel python-exif.spec,1.10,1.11 Message-ID: <20090726202204.1D12A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-exif/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10241 Modified Files: python-exif.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-exif.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-exif/devel/python-exif.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-exif.spec 26 Feb 2009 21:24:31 -0000 1.10 +++ python-exif.spec 26 Jul 2009 20:22:03 -0000 1.11 @@ -7,7 +7,7 @@ Summary: Python module to extract EXIF i Name: python-exif # Remember to update setup.py Version: 1.0.8 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Development/Libraries URL: http://sourceforge.net/projects/%{oname}/ @@ -47,6 +47,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitelib}/EXIF* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:22:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:22:18 +0000 (UTC) Subject: rpms/python-eyed3/devel python-eyed3.spec,1.11,1.12 Message-ID: <20090726202218.4844211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-eyed3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10396 Modified Files: python-eyed3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-eyed3.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-eyed3/devel/python-eyed3.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-eyed3.spec 26 Feb 2009 21:25:27 -0000 1.11 +++ python-eyed3.spec 26 Jul 2009 20:22:18 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-eyed3 Version: 0.6.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python module for processing ID3 tags Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:22:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:22:31 +0000 (UTC) Subject: rpms/python-fedora/devel python-fedora.spec,1.42,1.43 Message-ID: <20090726202231.6BC9811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10523 Modified Files: python-fedora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fedora/devel/python-fedora.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- python-fedora.spec 14 Jun 2009 13:02:13 -0000 1.42 +++ python-fedora.spec 26 Jul 2009 20:22:31 -0000 1.43 @@ -2,7 +2,7 @@ Name: python-fedora Version: 0.3.13.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python modules for talking to Fedora Infrastructure Services Group: Development/Languages @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Toshio Kuratomi - 0.3.13.1-1 - Merge 0.3.12.1 and 0.3.13 releases together. From jkeating at fedoraproject.org Sun Jul 26 20:22:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:22:46 +0000 (UTC) Subject: rpms/python-feedcache/devel python-feedcache.spec,1.3,1.4 Message-ID: <20090726202246.328FD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-feedcache/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10674 Modified Files: python-feedcache.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-feedcache.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-feedcache/devel/python-feedcache.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-feedcache.spec 26 Feb 2009 21:27:19 -0000 1.3 +++ python-feedcache.spec 26 Jul 2009 20:22:46 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-feedcache Version: 1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Wrapper for Mark Pilgrim's FeedParser module which caches feed content Group: Development/Languages @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:23:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:23:00 +0000 (UTC) Subject: rpms/python-feedparser/devel python-feedparser.spec,1.10,1.11 Message-ID: <20090726202300.427DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-feedparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10824 Modified Files: python-feedparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-feedparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-feedparser/devel/python-feedparser.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-feedparser.spec 4 Mar 2009 18:27:40 -0000 1.10 +++ python-feedparser.spec 26 Jul 2009 20:23:00 -0000 1.11 @@ -2,7 +2,7 @@ Name: python-feedparser Version: 4.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Parse RSS and Atom feeds in Python Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Konstantin Ryabitsev - 4.1-8 - Fix source URL (moved to googlecode). From jkeating at fedoraproject.org Sun Jul 26 20:23:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:23:14 +0000 (UTC) Subject: rpms/python-ferari/devel python-ferari.spec,1.2,1.3 Message-ID: <20090726202314.AA28311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ferari/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10988 Modified Files: python-ferari.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ferari.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ferari/devel/python-ferari.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-ferari.spec 26 Feb 2009 21:29:45 -0000 1.2 +++ python-ferari.spec 26 Jul 2009 20:23:14 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-ferari Version: 0.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Optimizer for finite element code Group: Applications/Engineering @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:23:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:23:28 +0000 (UTC) Subject: rpms/python-fiat/devel python-fiat.spec,1.2,1.3 Message-ID: <20090726202328.2BFCC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-fiat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11142 Modified Files: python-fiat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-fiat.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fiat/devel/python-fiat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-fiat.spec 26 Feb 2009 21:30:55 -0000 1.2 +++ python-fiat.spec 26 Jul 2009 20:23:28 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-fiat Version: 0.3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generation of arbitrary order instances of the Lagrange elements Group: Applications/Engineering @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:23:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:23:42 +0000 (UTC) Subject: rpms/python-flickrapi/devel python-flickrapi.spec,1.4,1.5 Message-ID: <20090726202342.9250511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-flickrapi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11288 Modified Files: python-flickrapi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-flickrapi.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-flickrapi/devel/python-flickrapi.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-flickrapi.spec 26 Feb 2009 21:31:51 -0000 1.4 +++ python-flickrapi.spec 26 Jul 2009 20:23:42 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-flickrapi Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python module for interfacing with the Flickr API Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:23:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:23:56 +0000 (UTC) Subject: rpms/python-flup/devel python-flup.spec,1.3,1.4 Message-ID: <20090726202356.A364411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-flup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11426 Modified Files: python-flup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-flup.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-flup/devel/python-flup.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-flup.spec 26 Feb 2009 21:32:48 -0000 1.3 +++ python-flup.spec 26 Jul 2009 20:23:56 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-flup Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Random assortment of WSGI servers for python Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:24:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:24:10 +0000 (UTC) Subject: rpms/python-foolscap/devel python-foolscap.spec,1.1,1.2 Message-ID: <20090726202410.6712211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-foolscap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11591 Modified Files: python-foolscap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-foolscap.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-foolscap/devel/python-foolscap.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-foolscap.spec 29 Apr 2009 13:34:58 -0000 1.1 +++ python-foolscap.spec 26 Jul 2009 20:24:10 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-%{modulename} Version: 0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Next-generation RPC protocol, intended to replace Perspective Broker Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{_bindir}/flogtool %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 20 2009 Ruben Kerkhof 0.3.2-1 - New version from upstream From jkeating at fedoraproject.org Sun Jul 26 20:24:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:24:25 +0000 (UTC) Subject: rpms/python-formencode/devel python-formencode.spec,1.26,1.27 Message-ID: <20090726202425.E7A4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-formencode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11743 Modified Files: python-formencode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-formencode.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-formencode/devel/python-formencode.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- python-formencode.spec 5 Jun 2009 14:14:01 -0000 1.26 +++ python-formencode.spec 26 Jul 2009 20:24:25 -0000 1.27 @@ -5,7 +5,7 @@ Name: python-formencode Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTML form validation, generation, and convertion package Group: Development/Libraries @@ -80,6 +80,9 @@ PYTHONPATH=$(pwd) nosetests %{python_sitelib}/%{srcname}-%{version}-py%{pyver}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Luke Macken -1.2.2-1 - Update to 1.2.2 - Conditionalize python-elementtree requirement From jkeating at fedoraproject.org Sun Jul 26 20:25:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:25:08 +0000 (UTC) Subject: rpms/python-gdata/devel python-gdata.spec,1.20,1.21 Message-ID: <20090726202508.A551011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-gdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12208 Modified Files: python-gdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-gdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-gdata/devel/python-gdata.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- python-gdata.spec 24 Jul 2009 07:18:25 -0000 1.20 +++ python-gdata.spec 26 Jul 2009 20:25:08 -0000 1.21 @@ -2,7 +2,7 @@ Name: python-gdata Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Python module for accessing online Google services Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Bastien Nocera 2.0.1-1 - Update to 2.0.1 From jkeating at fedoraproject.org Sun Jul 26 20:24:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:24:39 +0000 (UTC) Subject: rpms/python-fpconst/devel python-fpconst.spec,1.10,1.11 Message-ID: <20090726202439.A226111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-fpconst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11898 Modified Files: python-fpconst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-fpconst.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-fpconst/devel/python-fpconst.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-fpconst.spec 26 Feb 2009 21:34:45 -0000 1.10 +++ python-fpconst.spec 26 Jul 2009 20:24:39 -0000 1.11 @@ -2,7 +2,7 @@ Name: python-fpconst Version: 0.7.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python module for handling IEEE 754 floating point special values Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:24:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:24:53 +0000 (UTC) Subject: rpms/python-gasp/devel python-gasp.spec,1.4,1.5 Message-ID: <20090726202453.86F7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-gasp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12034 Modified Files: python-gasp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-gasp.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-gasp/devel/python-gasp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-gasp.spec 26 Feb 2009 21:35:40 -0000 1.4 +++ python-gasp.spec 26 Jul 2009 20:24:53 -0000 1.5 @@ -4,7 +4,7 @@ Name: python-gasp Version: 0.2.0beta1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: API wrapper on top of pygame Group: Development/Libraries License: GPLv3+ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/gasp-%{version}-py%{python_version}.egg-info/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0beta1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.0beta1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:25:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:25:22 +0000 (UTC) Subject: rpms/python-genshi/devel python-genshi.spec,1.12,1.13 Message-ID: <20090726202522.28A3A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-genshi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12333 Modified Files: python-genshi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-genshi.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-genshi/devel/python-genshi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-genshi.spec 5 Jun 2009 14:14:56 -0000 1.12 +++ python-genshi.spec 26 Jul 2009 20:25:22 -0000 1.13 @@ -2,7 +2,7 @@ Name: python-genshi Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Toolkit for stream-based generation of output for the web Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 0.5.1-5 - Add python-babel as a requirement From jkeating at fedoraproject.org Sun Jul 26 20:25:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:25:44 +0000 (UTC) Subject: rpms/python-gnutls/devel python-gnutls.spec,1.3,1.4 Message-ID: <20090726202544.7076A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-gnutls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12506 Modified Files: python-gnutls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-gnutls.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-gnutls/devel/python-gnutls.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-gnutls.spec 3 Jun 2009 13:49:54 -0000 1.3 +++ python-gnutls.spec 26 Jul 2009 20:25:44 -0000 1.4 @@ -3,7 +3,7 @@ Name: python-gnutls Version: 1.1.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python wrapper for the GNUTLS library Group: Development/Languages License: LGPLv2+ @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Peter Lemenkov 1.1.8-3 - Added patch for SRP removal From jkeating at fedoraproject.org Sun Jul 26 20:25:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:25:58 +0000 (UTC) Subject: rpms/python-goopy/devel python-goopy.spec,1.9,1.10 Message-ID: <20090726202558.60CB711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-goopy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12702 Modified Files: python-goopy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-goopy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-goopy/devel/python-goopy.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-goopy.spec 26 Feb 2009 21:38:35 -0000 1.9 +++ python-goopy.spec 26 Jul 2009 20:25:58 -0000 1.10 @@ -5,7 +5,7 @@ Summary: Google Python Utilities Name: python-goopy Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} Source0: %{realname}-%{version}.tar.gz License: BSD Group: Development/Libraries @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %doc README PKG-INFO %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:26:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:26:13 +0000 (UTC) Subject: rpms/python-gtkextra/devel python-gtkextra.spec,1.7,1.8 Message-ID: <20090726202613.1E92911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-gtkextra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12841 Modified Files: python-gtkextra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-gtkextra.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-gtkextra/devel/python-gtkextra.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-gtkextra.spec 11 Jun 2009 20:46:14 -0000 1.7 +++ python-gtkextra.spec 26 Jul 2009 20:26:12 -0000 1.8 @@ -3,7 +3,7 @@ Summary: Python bindings for gtkextra Name: python-gtkextra Version: 1.1.0 -Release: 8 +Release: 9 # FIXME: the license is not quite clear, using the most restrictive license # for this field. See # http://sourceforge.net/tracker/index.php?func=detail&aid=1941652&group_id=35371&atid=414148 @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pygtk/2.0/defs/gtkextra*.defs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Miloslav Trma? - 1.1.0-8 - Fix build on rawhide From jkeating at fedoraproject.org Sun Jul 26 20:26:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:26:26 +0000 (UTC) Subject: rpms/python-hash_ring/devel python-hash_ring.spec,1.1,1.2 Message-ID: <20090726202626.5494111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-hash_ring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12978 Modified Files: python-hash_ring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-hash_ring.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-hash_ring/devel/python-hash_ring.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-hash_ring.spec 22 Apr 2009 06:42:46 -0000 1.1 +++ python-hash_ring.spec 26 Jul 2009 20:26:26 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-hash_ring Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python implementation of consistent hashing Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/hash_ring-%{version}-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Silas Sewell - 1.2-2 - Fix license - Make files section more explicit From jkeating at fedoraproject.org Sun Jul 26 20:26:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:26:42 +0000 (UTC) Subject: rpms/python-html2text/devel python-html2text.spec,1.16,1.17 Message-ID: <20090726202642.C36F911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-html2text/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13155 Modified Files: python-html2text.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-html2text.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-html2text/devel/python-html2text.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- python-html2text.spec 26 Feb 2009 21:40:34 -0000 1.16 +++ python-html2text.spec 26 Jul 2009 20:26:42 -0000 1.17 @@ -3,7 +3,7 @@ Name: python-html2text Version: 2.35 -Release: 2.1 +Release: 3.1 Summary: Converts a page of HTML into clean, easy-to-read plain ASCII text Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.35-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.35-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:26:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:26:57 +0000 (UTC) Subject: rpms/python-httplib2/devel python-httplib2.spec,1.3,1.4 Message-ID: <20090726202657.9131611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-httplib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13333 Modified Files: python-httplib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-httplib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-httplib2/devel/python-httplib2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-httplib2.spec 26 Feb 2009 21:41:36 -0000 1.3 +++ python-httplib2.spec 26 Jul 2009 20:26:57 -0000 1.4 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-httplib2 Version: 0.4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A comprehensive HTTP client library Group: System Environment/Libraries @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:27:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:27:15 +0000 (UTC) Subject: rpms/python-id3/devel python-id3.spec,1.9,1.10 Message-ID: <20090726202715.2467911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-id3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13525 Modified Files: python-id3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-id3.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-id3/devel/python-id3.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-id3.spec 26 Feb 2009 21:42:44 -0000 1.9 +++ python-id3.spec 26 Jul 2009 20:27:14 -0000 1.10 @@ -2,7 +2,7 @@ Name: python-id3 Version: 1.2 -Release: 14%{?dist} +Release: 15%{?dist} Summary: ID3 tag library for Python Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:27:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:27:47 +0000 (UTC) Subject: rpms/python-imaging/devel python-imaging.spec,1.28,1.29 Message-ID: <20090726202747.2647C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-imaging/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13853 Modified Files: python-imaging.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-imaging.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-imaging/devel/python-imaging.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- python-imaging.spec 15 Apr 2009 12:42:21 -0000 1.28 +++ python-imaging.spec 26 Jul 2009 20:27:47 -0000 1.29 @@ -5,7 +5,7 @@ Summary: Python's own image processing library Name: python-imaging Version: 1.1.6 -Release: 15%{?dist} +Release: 16%{?dist} License: BSD Group: System Environment/Libraries @@ -167,6 +167,9 @@ rm -rf $RPM_BUILD_ROOT %files tk -f files.tk %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 15 2009 Karsten Hopp 1.1.6-15 - disable sane subpackage and sane requirements for mainframes, we don't have sane on s390 and s390x From jkeating at fedoraproject.org Sun Jul 26 20:27:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:27:31 +0000 (UTC) Subject: rpms/python-igraph/devel python-igraph.spec,1.14,1.15 Message-ID: <20090726202731.1A76911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-igraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13690 Modified Files: python-igraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-igraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-igraph/devel/python-igraph.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-igraph.spec 2 May 2009 15:45:00 -0000 1.14 +++ python-igraph.spec 26 Jul 2009 20:27:30 -0000 1.15 @@ -2,7 +2,7 @@ Name: python-igraph Version: 0.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python bindings for igraph Group: Development/Languages @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT PYTHONPATH=$RPM_BUILD_ROOT%{python_archlib} %{__python} -c 'import igraph.test; igraph.test.test();' %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Neal Becker - 0.5.2-3 - Try removing Requires From jkeating at fedoraproject.org Sun Jul 26 20:28:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:28:02 +0000 (UTC) Subject: rpms/python-imdb/devel python-imdb.spec,1.8,1.9 Message-ID: <20090726202802.0DBB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-imdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13991 Modified Files: python-imdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-imdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-imdb/devel/python-imdb.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-imdb.spec 1 Apr 2009 14:51:56 -0000 1.8 +++ python-imdb.spec 26 Jul 2009 20:28:01 -0000 1.9 @@ -6,7 +6,7 @@ Name: python-imdb Provides: IMDbPY = %{version}-%{release} Version: 4.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Retrieve and manage the data of the IMDb movie database Group: Development/Languages @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 4.0-5 - Fix typo in Provides: From jkeating at fedoraproject.org Sun Jul 26 20:28:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:28:15 +0000 (UTC) Subject: rpms/python-iniparse/devel python-iniparse.spec,1.17,1.18 Message-ID: <20090726202815.6F8E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-iniparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14183 Modified Files: python-iniparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-iniparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-iniparse/devel/python-iniparse.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- python-iniparse.spec 2 Mar 2009 12:15:26 -0000 1.17 +++ python-iniparse.spec 26 Jul 2009 20:28:15 -0000 1.18 @@ -2,7 +2,7 @@ Name: python-iniparse Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python Module for Accessing and Modifying Configuration Data in INI files Group: Development/Libraries License: MIT @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 Tim Lauridsen - 0.3.0-2 - added patch from upstream to fix regrestion : From julian at fedoraproject.org Sun Jul 26 20:28:18 2009 From: julian at fedoraproject.org (julian) Date: Sun, 26 Jul 2009 20:28:18 +0000 (UTC) Subject: rpms/sap/devel import.log, NONE, 1.1 sap.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726202818.04D0111C00CE@cvs1.fedora.phx.redhat.com> Author: julian Update of /cvs/pkgs/rpms/sap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13677/devel Modified Files: .cvsignore sources Added Files: import.log sap.spec Log Message: --- NEW FILE import.log --- sap-0_4_4-7_fc11:HEAD:sap-0.4.4-7.fc11.src.rpm:1248640006 --- NEW FILE sap.spec --- Name: sap Version: 0.4.4 #Note on version numbers: The upstream author tracks version numbers only #on his launchpad page https://launchpad.net/sap+ #I already asked him to create a CHANGELOG file with the latest version number. Release: 7%{?dist} Summary: A small CLI audio player Group: Applications/Multimedia License: GPLv3+ URL: http://www.jezra.net/projects/sap Source0: http://www.jezra.net/downloads/sap.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: ncurses-devel, gstreamer-devel, vala %description SAP is a small CLI audio player featuring a volume control and supports many file formats through the gstreamer framework. %prep %setup -q -n sap %build valac --thread --pkg curses --pkg gstreamer-0.10 curses_ui.vala audioplayer.vala main_controller.vala -C gcc %{optflags} `pkg-config glib-2.0 --cflags --libs` `pkg-config gstreamer-0.10 --cflags --libs` -lncurses audioplayer.c curses_ui.c main_controller.c -o sap %install rm -rf %{buildroot} install -D -p -m 755 sap %{buildroot}%{_bindir}/sap install -D -p -m 644 sap.1 %{buildroot}%{_mandir}/man1/sap.1 %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README gpl.txt %{_mandir}/man1/sap.1.* %{_bindir}/sap %changelog * Sat Jul 18 2009 Julian Aloofi 0.4.4-7 - We just need vala, no vala-devel * Mon Jul 13 2009 Julian Aloofi 0.4.4-6 - Converted Vala source to C source before building for using the optimization flags - Left some space between the changelog entries - Placed the doc section right after the defattr tag * Sat Jul 11 2009 Julian Aloofi 0.4.4-5 - Dropped sh ./build in the install section * Sat Jul 11 2009 Julian Aloofi 0.4.4-4 - Replaced some space from the spec file and adjusted the Release tag * Mon Jul 06 2009 Julian Aloofi 0.4.4-3 - replaced mkdir -p with install -D and left some space in the spec file * Sat Jul 04 2009 Julian Aloofi 0.4.4-2 - All uses of buildroot standardized - Just included README and gpl.txt in the doc section instead of copying them - Did not compress the man page and replaced .gz with .* in the files section - Changed License from GPLv3 to GPLv3+ * Fri Jul 03 2009 Julian Aloofi 0.4.4-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sap/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 19:42:37 -0000 1.1 +++ .cvsignore 26 Jul 2009 20:28:17 -0000 1.2 @@ -0,0 +1 @@ +sap.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sap/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 19:42:37 -0000 1.1 +++ sources 26 Jul 2009 20:28:17 -0000 1.2 @@ -0,0 +1 @@ +91b3e9e2e34211c0715b739eab48743d sap.tar.gz From jkeating at fedoraproject.org Sun Jul 26 20:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:28:32 +0000 (UTC) Subject: rpms/python-inotify/devel python-inotify.spec,1.12,1.13 Message-ID: <20090726202832.4A79D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-inotify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14384 Modified Files: python-inotify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-inotify.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-inotify/devel/python-inotify.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-inotify.spec 18 May 2009 09:11:23 -0000 1.12 +++ python-inotify.spec 26 Jul 2009 20:28:32 -0000 1.13 @@ -7,7 +7,7 @@ Summary: Monitor filesystem events with Python under Linux Name: python-inotify Version: 0.8.6 -Release: 1.git%{date}%{?dist} +Release: 2.git%{date}%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://trac.dbzteam.org/pyinotify @@ -73,6 +73,9 @@ done %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.6-2.git20090518 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Terje Rosten - 0.8.6-1.git20090518 - Update to latest git, fixing bz #500934. From jkeating at fedoraproject.org Sun Jul 26 20:28:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:28:46 +0000 (UTC) Subject: rpms/python-instant/devel python-instant.spec,1.3,1.4 Message-ID: <20090726202846.3603911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-instant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14610 Modified Files: python-instant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-instant.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-instant/devel/python-instant.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-instant.spec 24 Mar 2009 22:56:59 -0000 1.3 +++ python-instant.spec 26 Jul 2009 20:28:46 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-instant Version: 0.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python module for instant inlining of C and C++ code Group: Applications/Engineering @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 24 2009 Fabian Affolter - 0.9.6-1 - Updated to new upstream version 0.9.6 From jkeating at fedoraproject.org Sun Jul 26 20:29:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:29:00 +0000 (UTC) Subject: rpms/python-irclib/devel python-irclib.spec,1.10,1.11 Message-ID: <20090726202900.65E0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-irclib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14746 Modified Files: python-irclib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-irclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-irclib/devel/python-irclib.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-irclib.spec 26 Feb 2009 21:50:34 -0000 1.10 +++ python-irclib.spec 26 Jul 2009 20:29:00 -0000 1.11 @@ -3,7 +3,7 @@ Name: python-irclib Version: 0.4.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A set of Python modules for IRC support Group: Development/Libraries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/python_irclib-%{version}-py%{pyver}.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:29:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:29:14 +0000 (UTC) Subject: rpms/python-isprelink/devel python-isprelink.spec,1.6,1.7 Message-ID: <20090726202914.5223B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-isprelink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14920 Modified Files: python-isprelink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-isprelink.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-isprelink/devel/python-isprelink.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-isprelink.spec 26 Feb 2009 21:51:30 -0000 1.6 +++ python-isprelink.spec 26 Jul 2009 20:29:14 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-isprelink Version: 0.1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python module to determine if a file has been prelinked Group: Development/Languages @@ -36,6 +36,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:29:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:29:28 +0000 (UTC) Subject: rpms/python-jinja/devel python-jinja.spec,1.3,1.4 Message-ID: <20090726202928.9002011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-jinja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15087 Modified Files: python-jinja.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-jinja.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-jinja/devel/python-jinja.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-jinja.spec 26 Feb 2009 21:52:34 -0000 1.3 +++ python-jinja.spec 26 Jul 2009 20:29:28 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-jinja Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Sandboxed template engine Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:29:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:29:42 +0000 (UTC) Subject: rpms/python-jinja2/devel python-jinja2.spec,1.5,1.6 Message-ID: <20090726202942.6F0D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-jinja2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15268 Modified Files: python-jinja2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-jinja2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-jinja2/devel/python-jinja2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-jinja2.spec 26 Feb 2009 21:53:35 -0000 1.5 +++ python-jinja2.spec 26 Jul 2009 20:29:42 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-jinja2 Version: 2.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: General purpose template engine Group: Development/Languages @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From julian at fedoraproject.org Sun Jul 26 20:29:47 2009 From: julian at fedoraproject.org (julian) Date: Sun, 26 Jul 2009 20:29:47 +0000 (UTC) Subject: rpms/sap/F-11 import.log, NONE, 1.1 sap.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726202947.5A12011C00CE@cvs1.fedora.phx.redhat.com> Author: julian Update of /cvs/pkgs/rpms/sap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15279/F-11 Modified Files: .cvsignore sources Added Files: import.log sap.spec Log Message: --- NEW FILE import.log --- sap-0_4_4-7_fc11:F-11:sap-0.4.4-7.fc11.src.rpm:1248640148 --- NEW FILE sap.spec --- Name: sap Version: 0.4.4 #Note on version numbers: The upstream author tracks version numbers only #on his launchpad page https://launchpad.net/sap+ #I already asked him to create a CHANGELOG file with the latest version number. Release: 7%{?dist} Summary: A small CLI audio player Group: Applications/Multimedia License: GPLv3+ URL: http://www.jezra.net/projects/sap Source0: http://www.jezra.net/downloads/sap.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: ncurses-devel, gstreamer-devel, vala %description SAP is a small CLI audio player featuring a volume control and supports many file formats through the gstreamer framework. %prep %setup -q -n sap %build valac --thread --pkg curses --pkg gstreamer-0.10 curses_ui.vala audioplayer.vala main_controller.vala -C gcc %{optflags} `pkg-config glib-2.0 --cflags --libs` `pkg-config gstreamer-0.10 --cflags --libs` -lncurses audioplayer.c curses_ui.c main_controller.c -o sap %install rm -rf %{buildroot} install -D -p -m 755 sap %{buildroot}%{_bindir}/sap install -D -p -m 644 sap.1 %{buildroot}%{_mandir}/man1/sap.1 %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc README gpl.txt %{_mandir}/man1/sap.1.* %{_bindir}/sap %changelog * Sat Jul 18 2009 Julian Aloofi 0.4.4-7 - We just need vala, no vala-devel * Mon Jul 13 2009 Julian Aloofi 0.4.4-6 - Converted Vala source to C source before building for using the optimization flags - Left some space between the changelog entries - Placed the doc section right after the defattr tag * Sat Jul 11 2009 Julian Aloofi 0.4.4-5 - Dropped sh ./build in the install section * Sat Jul 11 2009 Julian Aloofi 0.4.4-4 - Replaced some space from the spec file and adjusted the Release tag * Mon Jul 06 2009 Julian Aloofi 0.4.4-3 - replaced mkdir -p with install -D and left some space in the spec file * Sat Jul 04 2009 Julian Aloofi 0.4.4-2 - All uses of buildroot standardized - Just included README and gpl.txt in the doc section instead of copying them - Did not compress the man page and replaced .gz with .* in the files section - Changed License from GPLv3 to GPLv3+ * Fri Jul 03 2009 Julian Aloofi 0.4.4-1 - Initial version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sap/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 19:42:37 -0000 1.1 +++ .cvsignore 26 Jul 2009 20:29:47 -0000 1.2 @@ -0,0 +1 @@ +sap.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sap/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 19:42:37 -0000 1.1 +++ sources 26 Jul 2009 20:29:47 -0000 1.2 @@ -0,0 +1 @@ +91b3e9e2e34211c0715b739eab48743d sap.tar.gz From jkeating at fedoraproject.org Sun Jul 26 20:29:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:29:56 +0000 (UTC) Subject: rpms/python-json/devel python-json.spec,1.7,1.8 Message-ID: <20090726202956.B602511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-json/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15446 Modified Files: python-json.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-json.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-json/devel/python-json.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-json.spec 26 Feb 2009 21:54:37 -0000 1.7 +++ python-json.spec 26 Jul 2009 20:29:56 -0000 1.8 @@ -5,7 +5,7 @@ Name: python-json Version: 3.4 %define version_munge %(sed 's/\\./_/g' <<< %{version}) -Release: 6%{?dist} +Release: 7%{?dist} Summary: A JSON reader and writer for Python Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.py[co] %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:30:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:30:13 +0000 (UTC) Subject: rpms/python-kaa-base/devel python-kaa-base.spec,1.13,1.14 Message-ID: <20090726203013.7E6B311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kaa-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15606 Modified Files: python-kaa-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kaa-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-base/devel/python-kaa-base.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-kaa-base.spec 1 Jul 2009 11:37:21 -0000 1.13 +++ python-kaa-base.spec 26 Jul 2009 20:30:13 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-kaa-base Version: 0.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Kaa Media - base package for python Group: Development/Languages @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.6.0-2 - Update to 0.6.0 - Remove Requires python-lirc (optional) From jkeating at fedoraproject.org Sun Jul 26 20:30:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:30:27 +0000 (UTC) Subject: rpms/python-kaa-display/devel python-kaa-display.spec,1.1,1.2 Message-ID: <20090726203027.3951111C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kaa-display/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15766 Modified Files: python-kaa-display.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kaa-display.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-display/devel/python-kaa-display.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-kaa-display.spec 15 Jul 2009 10:07:18 -0000 1.1 +++ python-kaa-display.spec 26 Jul 2009 20:30:27 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-kaa-display Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python API providing Low level support for various displays Group: Development/Languages @@ -60,5 +60,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 30 2009 kwizart < kwizart at gmail.com > - 0.1.0-1 - Initial spec file From jkeating at fedoraproject.org Sun Jul 26 20:30:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:30:41 +0000 (UTC) Subject: rpms/python-kaa-imlib2/devel python-kaa-imlib2.spec,1.11,1.12 Message-ID: <20090726203041.63EA911C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kaa-imlib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15915 Modified Files: python-kaa-imlib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kaa-imlib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-imlib2/devel/python-kaa-imlib2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-kaa-imlib2.spec 1 Jul 2009 12:14:28 -0000 1.11 +++ python-kaa-imlib2.spec 26 Jul 2009 20:30:41 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-kaa-imlib2 Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The Kaa Media - imlib2 binding for python Group: Development/Languages @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 kwizart < kwizart at gmail.com > - 0.2.3-5 - Clean BR - remove unused import md5 From jkeating at fedoraproject.org Sun Jul 26 20:30:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:30:55 +0000 (UTC) Subject: rpms/python-kaa-metadata/devel python-kaa-metadata.spec,1.15,1.16 Message-ID: <20090726203055.5A05911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kaa-metadata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16035 Modified Files: python-kaa-metadata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kaa-metadata.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kaa-metadata/devel/python-kaa-metadata.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-kaa-metadata.spec 1 Jul 2009 12:37:15 -0000 1.15 +++ python-kaa-metadata.spec 26 Jul 2009 20:30:55 -0000 1.16 @@ -2,7 +2,7 @@ Name: python-kaa-metadata Version: 0.7.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Kaa Media - metadata binding for python Group: Development/Languages @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 kwizart < kwizart at gmail.com > - 0.7.7-1 - Update to 0.7.7 From jkeating at fedoraproject.org Sun Jul 26 20:31:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:31:10 +0000 (UTC) Subject: rpms/python-kerberos/devel python-kerberos.spec,1.11,1.12 Message-ID: <20090726203110.77C2711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kerberos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16188 Modified Files: python-kerberos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kerberos.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kerberos/devel/python-kerberos.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-kerberos.spec 26 Feb 2009 21:58:21 -0000 1.11 +++ python-kerberos.spec 26 Jul 2009 20:31:10 -0000 1.12 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-kerberos Version: 1.1 -Release: 4.1%{?dist} +Release: 5.1%{?dist} Summary: A high-level wrapper for Kerberos (GSSAPI) operations Group: System Environment/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:31:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:31:28 +0000 (UTC) Subject: rpms/python-kid/devel python-kid.spec,1.24,1.25 Message-ID: <20090726203128.4E5E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16355 Modified Files: python-kid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kid/devel/python-kid.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- python-kid.spec 26 Feb 2009 21:59:21 -0000 1.24 +++ python-kid.spec 26 Jul 2009 20:31:27 -0000 1.25 @@ -2,7 +2,7 @@ Name: python-kid Version: 0.9.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Kid - A simple and pythonic XML template language Group: Applications/Publishing @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:31:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:31:44 +0000 (UTC) Subject: rpms/python-kinterbasdb/devel python-kinterbasdb.spec,1.1,1.2 Message-ID: <20090726203144.D2CA011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kinterbasdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16519 Modified Files: python-kinterbasdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kinterbasdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kinterbasdb/devel/python-kinterbasdb.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-kinterbasdb.spec 13 May 2009 10:20:26 -0000 1.1 +++ python-kinterbasdb.spec 26 Jul 2009 20:31:44 -0000 1.2 @@ -5,7 +5,7 @@ Summary: A Python DB-API 2.0 compliant interface to Firebird Name: python-kinterbasdb Version: 3.3.0 -Release: 0%{?dist} +Release: 1%{?dist} License: BSD Group: Applications/Databases Source0: http://downloads.sourceforge.net/firebird/%{origname}-%{version}.tar.bz2 @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3.0-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 09 2009 Philippe Makowski 3.3.0-0 - First Fedora build - New upstream: 3.3.0 From jkeating at fedoraproject.org Sun Jul 26 20:32:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:32:01 +0000 (UTC) Subject: rpms/python-kiwi/devel python-kiwi.spec,1.20,1.21 Message-ID: <20090726203201.1658211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-kiwi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16691 Modified Files: python-kiwi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-kiwi.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-kiwi/devel/python-kiwi.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- python-kiwi.spec 8 May 2009 04:34:49 -0000 1.20 +++ python-kiwi.spec 26 Jul 2009 20:32:00 -0000 1.21 @@ -3,7 +3,7 @@ Name: python-kiwi Version: 1.9.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Framework for Python GUI applications Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Konstantin Ryabitsev - 1.9.25-1 - Upstream 1.9.25 - Added Advanced Search in search dialogs From jkeating at fedoraproject.org Sun Jul 26 20:32:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:32:16 +0000 (UTC) Subject: rpms/python-krbV/devel python-krbV.spec,1.11,1.12 Message-ID: <20090726203216.BBB7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-krbV/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16855 Modified Files: python-krbV.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-krbV.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-krbV/devel/python-krbV.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-krbV.spec 26 Feb 2009 22:01:16 -0000 1.11 +++ python-krbV.spec 26 Jul 2009 20:32:16 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-krbV Version: 1.0.13 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Python extension module for Kerberos 5 Group: Development/Languages @@ -43,6 +43,9 @@ export CFLAGS="%{optflags} -Wextra" %{python_sitelib}/krbVmodule.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.13-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.13-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:32:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:32:35 +0000 (UTC) Subject: rpms/python-ldap/devel python-ldap.spec,1.29,1.30 Message-ID: <20090726203235.9CEE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16990 Modified Files: python-ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ldap/devel/python-ldap.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- python-ldap.spec 1 Apr 2009 16:22:18 -0000 1.29 +++ python-ldap.spec 26 Jul 2009 20:32:35 -0000 1.30 @@ -6,7 +6,7 @@ Name: python-ldap Version: 2.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 0 License: Python Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/python_ldap-%{version}-*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:2.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Matthew Barnes - 0:2.3.6-1 - Update to 2.3.6 From jkeating at fedoraproject.org Sun Jul 26 20:32:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:32:52 +0000 (UTC) Subject: rpms/python-ldaphelper/devel python-ldaphelper.spec,1.2,1.3 Message-ID: <20090726203252.D52AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ldaphelper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17168 Modified Files: python-ldaphelper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ldaphelper.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ldaphelper/devel/python-ldaphelper.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-ldaphelper.spec 26 Feb 2009 22:03:12 -0000 1.2 +++ python-ldaphelper.spec 26 Jul 2009 20:32:52 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-ldaphelper Version: 1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A python wrapper for LDAP search results Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:33:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:33:10 +0000 (UTC) Subject: rpms/python-libasyncns/devel python-libasyncns.spec,1.3,1.4 Message-ID: <20090726203310.8392211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-libasyncns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17325 Modified Files: python-libasyncns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-libasyncns.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-libasyncns/devel/python-libasyncns.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-libasyncns.spec 26 Feb 2009 22:04:08 -0000 1.3 +++ python-libasyncns.spec 26 Jul 2009 20:33:10 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-libasyncns Version: 0.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python binding for libasyncns Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:33:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:33:28 +0000 (UTC) Subject: rpms/python-libgmail/devel python-libgmail.spec,1.8,1.9 Message-ID: <20090726203328.A402411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-libgmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17517 Modified Files: python-libgmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-libgmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-libgmail/devel/python-libgmail.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-libgmail.spec 26 Feb 2009 22:05:06 -0000 1.8 +++ python-libgmail.spec 26 Jul 2009 20:33:28 -0000 1.9 @@ -3,7 +3,7 @@ %define realname libgmail Name: python-%{realname} Version: 0.1.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to provide access to Gmail via Python Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:33:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:33:45 +0000 (UTC) Subject: rpms/python-libgmail-docs/devel python-libgmail-docs.spec,1.5,1.6 Message-ID: <20090726203345.5BA0F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-libgmail-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17687 Modified Files: python-libgmail-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-libgmail-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-libgmail-docs/devel/python-libgmail-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-libgmail-docs.spec 26 Feb 2009 22:06:04 -0000 1.5 +++ python-libgmail-docs.spec 26 Jul 2009 20:33:44 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-libgmail-docs Version: 0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Documents and examples for python-libgmail Group: Documentation @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_docdir}/%{name}-%{version}/examples/*.py[co] %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:34:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:34:01 +0000 (UTC) Subject: rpms/python-line_profiler/devel python-line_profiler.spec,1.1,1.2 Message-ID: <20090726203401.7BEBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-line_profiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17843 Modified Files: python-line_profiler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-line_profiler.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-line_profiler/devel/python-line_profiler.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-line_profiler.spec 7 Jun 2009 20:21:05 -0000 1.1 +++ python-line_profiler.spec 26 Jul 2009 20:34:00 -0000 1.2 @@ -5,7 +5,7 @@ Name: python-%{real_name} Version: 1.0 -Release: 0.3.%{pre_release}%{?dist} +Release: 0.4.%{pre_release}%{?dist} Summary: A Python line-by-line profiler Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{python_sitearch}/%{real_name}.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.4.b2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Silas Sewell - 1.0-0.3.b2 - Rename kernprof.py to kernprof From jkeating at fedoraproject.org Sun Jul 26 20:34:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:34:32 +0000 (UTC) Subject: rpms/python-linux-procfs/devel python-linux-procfs.spec,1.2,1.3 Message-ID: <20090726203432.902ED11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-linux-procfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18086 Modified Files: python-linux-procfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-linux-procfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-linux-procfs/devel/python-linux-procfs.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-linux-procfs.spec 26 Feb 2009 22:07:03 -0000 1.2 +++ python-linux-procfs.spec 26 Jul 2009 20:34:32 -0000 1.3 @@ -3,7 +3,7 @@ Name: python-linux-procfs Version: 0.4.4 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Summary: Linux /proc abstraction classes Group: System Environment/Libraries @@ -39,6 +39,9 @@ rm -rf %{buildroot} %doc COPYING %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:34:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:34:48 +0000 (UTC) Subject: rpms/python-lirc/devel python-lirc.spec,1.8,1.9 Message-ID: <20090726203448.DA8A511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-lirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18248 Modified Files: python-lirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-lirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-lirc/devel/python-lirc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-lirc.spec 26 Feb 2009 22:08:09 -0000 1.8 +++ python-lirc.spec 26 Jul 2009 20:34:48 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Linux Infrared Remote Control python module Name: python-lirc Version: 0.0.5 -Release: 9 +Release: 10 License: GPLv2+ Group: Development/Languages URL: http://pylirc.mccabe.nu/ @@ -51,6 +51,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:35:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:35:04 +0000 (UTC) Subject: rpms/python-logilab-astng/devel python-logilab-astng.spec, 1.10, 1.11 Message-ID: <20090726203504.34EF211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-logilab-astng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18419 Modified Files: python-logilab-astng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-logilab-astng.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-logilab-astng/devel/python-logilab-astng.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-logilab-astng.spec 18 Jun 2009 03:25:10 -0000 1.10 +++ python-logilab-astng.spec 26 Jul 2009 20:35:03 -0000 1.11 @@ -2,7 +2,7 @@ Name: python-logilab-astng Version: 0.19.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python Abstract Syntax Tree New Generation Group: Development/Languages @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.19.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Konstantin Ryabitsev - 0.19.0-1 - Upstream 0.19.0 - Fixes for better support of python 2.5 and 2.6 From jkeating at fedoraproject.org Sun Jul 26 20:35:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:35:21 +0000 (UTC) Subject: rpms/python-logilab-common/devel python-logilab-common.spec, 1.23, 1.24 Message-ID: <20090726203521.ACC9D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-logilab-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18587 Modified Files: python-logilab-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-logilab-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-logilab-common/devel/python-logilab-common.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- python-logilab-common.spec 18 Jun 2009 02:55:40 -0000 1.23 +++ python-logilab-common.spec 26 Jul 2009 20:35:21 -0000 1.24 @@ -2,7 +2,7 @@ Name: python-logilab-common Version: 0.41.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common libraries for Logilab projects Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.41.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Konstantin Ryabitsev - 0.41.0-2 - Upstream 0.41.0 - Bugfixes and a few minor new features From jkeating at fedoraproject.org Sun Jul 26 20:36:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:36:09 +0000 (UTC) Subject: rpms/python-louie/devel python-louie.spec,1.5,1.6 Message-ID: <20090726203609.7238011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-louie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18930 Modified Files: python-louie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-louie.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-louie/devel/python-louie.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-louie.spec 26 Feb 2009 22:11:06 -0000 1.5 +++ python-louie.spec 26 Jul 2009 20:36:09 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Dispatches signals between Python objects in a wide variety of contexts Name: python-louie Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Development/Languages URL: http://pylouie.org/ @@ -54,6 +54,9 @@ Python Cookbook. %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:36:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:36:27 +0000 (UTC) Subject: rpms/python-lxml/devel python-lxml.spec,1.36,1.37 Message-ID: <20090726203627.09BD611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-lxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19092 Modified Files: python-lxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-lxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-lxml/devel/python-lxml.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- python-lxml.spec 21 Jun 2009 13:18:38 -0000 1.36 +++ python-lxml.spec 26 Jul 2009 20:36:26 -0000 1.37 @@ -2,7 +2,7 @@ Name: python-lxml Version: 2.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: ElementTree-like Python bindings for libxml2 and libxslt Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Jeffrey C. Ollie - 2.2.2-1 - 2.2.2 (2009-06-21) - Features added From jkeating at fedoraproject.org Sun Jul 26 20:36:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:36:42 +0000 (UTC) Subject: rpms/python-lzo/devel python-lzo.spec,1.3,1.4 Message-ID: <20090726203642.B34B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-lzo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19248 Modified Files: python-lzo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-lzo.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-lzo/devel/python-lzo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-lzo.spec 26 Feb 2009 22:13:10 -0000 1.3 +++ python-lzo.spec 26 Jul 2009 20:36:42 -0000 1.4 @@ -3,7 +3,7 @@ Summary: LZO bindings for Python Name: python-lzo Version: 1.08 -Release: 4%{?dist} +Release: 5%{?dist} Source0: http://www.oberhumer.com/opensource/lzo/download/LZO-v1/%{name}-%{version}.tar.gz URL: http://www.oberhumer.com/opensource/lzo/ Patch0: python-lzo-1.08-build-against-lzo2.patch @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.08-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.08-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:36:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:36:59 +0000 (UTC) Subject: rpms/python-mako/devel python-mako.spec,1.4,1.5 Message-ID: <20090726203659.C9F8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mako/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19422 Modified Files: python-mako.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mako.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mako/devel/python-mako.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-mako.spec 26 Feb 2009 22:14:10 -0000 1.4 +++ python-mako.spec 26 Jul 2009 20:36:59 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-mako Version: 0.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mako template library for Python Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:37:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:37:17 +0000 (UTC) Subject: rpms/python-markdown/devel python-markdown.spec,1.5,1.6 Message-ID: <20090726203717.0055111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-markdown/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19571 Modified Files: python-markdown.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-markdown.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown/devel/python-markdown.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-markdown.spec 11 Jul 2009 12:32:07 -0000 1.5 +++ python-markdown.spec 26 Jul 2009 20:37:16 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-markdown Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Markdown implementation in Python Group: Development/Languages License: BSD @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Thomas Moschny - 2.0.1-1 - Update to 2.0.1. - Upstream stripped .py of the cmdline script. From jkeating at fedoraproject.org Sun Jul 26 20:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:38:33 +0000 (UTC) Subject: rpms/python-markdown2/devel python-markdown2.spec,1.7,1.8 Message-ID: <20090726203833.3B99811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-markdown2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20104 Modified Files: python-markdown2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-markdown2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-markdown2/devel/python-markdown2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-markdown2.spec 11 Jul 2009 15:48:54 -0000 1.7 +++ python-markdown2.spec 26 Jul 2009 20:38:32 -0000 1.8 @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 1.0.1.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A fast and complete Python implementation of Markdown Group: Development/Languages License: MIT @@ -63,6 +63,9 @@ cd test %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Thomas Moschny - 1.0.1.13-1 - Update to 1.0.1.13. From jkeating at fedoraproject.org Sun Jul 26 20:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:38:59 +0000 (UTC) Subject: rpms/python-matplotlib/devel python-matplotlib.spec,1.43,1.44 Message-ID: <20090726203859.9412C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-matplotlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20392 Modified Files: python-matplotlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-matplotlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-matplotlib/devel/python-matplotlib.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- python-matplotlib.spec 6 Mar 2009 19:57:23 -0000 1.43 +++ python-matplotlib.spec 26 Jul 2009 20:38:59 -0000 1.44 @@ -2,7 +2,7 @@ Name: python-matplotlib Version: 0.98.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python plotting library Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.98.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Jef Spaleta - 0.98.5-4 - Fixed font dep after font guideline change From jkeating at fedoraproject.org Sun Jul 26 20:39:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:39:26 +0000 (UTC) Subject: rpms/python-mechanize/devel python-mechanize.spec,1.10,1.11 Message-ID: <20090726203926.013AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mechanize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20658 Modified Files: python-mechanize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mechanize.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mechanize/devel/python-mechanize.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-mechanize.spec 26 Feb 2009 22:18:13 -0000 1.10 +++ python-mechanize.spec 26 Jul 2009 20:39:25 -0000 1.11 @@ -4,7 +4,7 @@ Name: python-mechanize Version: 0.1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Stateful programmatic web browsing Group: System Environment/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:39:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:39:45 +0000 (UTC) Subject: rpms/python-mechanoid/devel python-mechanoid.spec,1.2,1.3 Message-ID: <20090726203945.E145311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mechanoid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20887 Modified Files: python-mechanoid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mechanoid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mechanoid/devel/python-mechanoid.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-mechanoid.spec 26 Feb 2009 22:19:17 -0000 1.2 +++ python-mechanoid.spec 26 Jul 2009 20:39:45 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-mechanoid Version: 0.6.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Python Programmatic Web Browser Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/mechanoid-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.9-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:40:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:40:02 +0000 (UTC) Subject: rpms/python-meld3/devel python-meld3.spec,1.9,1.10 Message-ID: <20090726204002.301BF11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-meld3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21108 Modified Files: python-meld3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-meld3.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-meld3/devel/python-meld3.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-meld3.spec 26 Feb 2009 22:20:16 -0000 1.9 +++ python-meld3.spec 26 Jul 2009 20:40:01 -0000 1.10 @@ -2,7 +2,7 @@ Summary: An HTML/XML templating system for Python Name: python-meld3 Version: 0.6.4 -Release: 3%{?dist} +Release: 4%{?dist} License: ZPLv2.0 Group: Development/Languages @@ -52,6 +52,9 @@ chmod 0755 %{buildroot}/%{python_sitearc %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From rdieter at fedoraproject.org Sun Jul 26 20:40:58 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Sun, 26 Jul 2009 20:40:58 +0000 (UTC) Subject: rpms/virtuoso-opensource/devel import.log, NONE, 1.1 virtuoso-opensource.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726204058.9350F11C00CE@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/virtuoso-opensource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21611/devel Modified Files: .cvsignore sources Added Files: import.log virtuoso-opensource.spec Log Message: import --- NEW FILE import.log --- virtuoso-opensource-5_0_11-3_fc11:HEAD:virtuoso-opensource-5.0.11-3.fc11.src.rpm:1248640731 --- NEW FILE virtuoso-opensource.spec --- Name: virtuoso-opensource Version: 5.0.11 Release: 3%{?dist} Summary: A high-performance object-relational SQL database Group: Applications/Databases # see LICENSE for exception details License: GPLv2 with exceptions URL: http://virtuoso.sourceforge.net/ Source0: http://download.sourceforge.net/virtuoso/virtuoso-opensource-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: automake libtool BuildRequires: bison BuildRequires: flex BuildRequires: gperf BuildRequires: htmldoc ## when/if we ever decide to ship .jar's #BuildRequires: java-devel BuildRequires: openldap-devel BuildRequires: openssl-devel BuildRequires: libxml2-devel Provides: virtuoso = %{version}-%{release} %description Virtuoso is a scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality. %package apps Summary: Applications Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description apps %{summary}. %package conductor Summary: Server pages Group: Applications/Databases Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description conductor %{summary}. %package doc Summary: Documentation Group: Documentation Requires: %{name} = %{version}-%{release} %if 0%{?fedora} > 9 BuildArch: noarch %endif %description doc %{summary}. %package utils Summary: Utilities Group: Applications/Databases Requires: %{name} = %{version}-%{release} %description utils %{summary}. %prep %setup -q -n virtuoso-opensource-%{version} %build # --with-debug avoids useless -debuginfo %configure \ --with-layout=redhat \ --enable-shared --disable-static \ --with-debug # smp busted make %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/virtuoso mv %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini %{buildroot}%{_sysconfdir}/virtuoso/ ln -s ../../../..%{_sysconfdir}/virtuoso/virtuoso.ini %{buildroot}%{_var}/lib/virtuoso/db/virtuoso.ini # generic'ish binaries, hide them away safely mkdir -p %{buildroot}%{_libexecdir}/virtuoso/ mv %{buildroot}%{_bindir}/{inifile,isql,isqlw} \ %{buildroot}%{_libexecdir}/virtuoso/ ## unpackaged files rm -vf %{buildroot}%{_libdir}/*.{la,a} rm -vf %{buildroot}%{_libdir}/virtuoso/hosting/*.la rm -vf %{buildroot}%{_libdir}/{jdbc-?.?,jena,sesame}/*.jar %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc AUTHORS COPYING LICENSE %dir %{_sysconfdir}/virtuoso/ %config(noreplace) %{_sysconfdir}/virtuoso/virtuoso.ini %{_bindir}/virtuoso-t %{_libdir}/virt*.so %dir %{_datadir}/virtuoso/ %dir %{_datadir}/virtuoso/vad/ %dir %{_libdir}/virtuoso/ %dir %{_libexecdir}/virtuoso/ %dir %{_var}/lib/virtuoso %{_var}/lib/virtuoso/db/ %files apps %defattr(-,root,root,-) %{_libdir}/virtuoso/hosting/ %{_datadir}/virtuoso/vad/*.vad %exclude %{_datadir}/virtuoso/vad/conductor_dav.vad %files conductor %defattr(-,root,root,-) %{_datadir}/virtuoso/vad/conductor_dav.vad %{_var}/lib/virtuoso/vsp/ %files doc %defattr(-,root,root,-) %{_docdir}/virtuoso/ %files utils %defattr(-,root,root,-) %{_bindir}/virt_mail %{_libexecdir}/virtuoso/* %changelog * Fri Jul 24 2009 Rex Dieter 5.0.11-3 - BR: htmldoc - -doc subpkg * Sun Jun 07 2009 Rex Dieter 5.0.11-2 - omit remaining .la files - fix %%changelog - fix virtuoso.ini dangling symlink * Fri May 22 2009 Rex Dieter 5.0.11-1 - virtuoso-opensource-5.0.11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 26 Jul 2009 20:07:12 -0000 1.1 +++ .cvsignore 26 Jul 2009 20:40:58 -0000 1.2 @@ -0,0 +1 @@ +virtuoso-opensource-5.0.11.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/virtuoso-opensource/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 26 Jul 2009 20:07:12 -0000 1.1 +++ sources 26 Jul 2009 20:40:58 -0000 1.2 @@ -0,0 +1 @@ +9d5507b2a8d244c62f32f1203f10b9d1 virtuoso-opensource-5.0.11.tar.gz From jkeating at fedoraproject.org Sun Jul 26 20:40:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:40:56 +0000 (UTC) Subject: rpms/python-memcached/devel python-memcached.spec,1.7,1.8 Message-ID: <20090726204056.89FD611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-memcached/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21644 Modified Files: python-memcached.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-memcached.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-memcached/devel/python-memcached.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-memcached.spec 26 Feb 2009 22:21:22 -0000 1.7 +++ python-memcached.spec 26 Jul 2009 20:40:56 -0000 1.8 @@ -2,7 +2,7 @@ Name: python-memcached Version: 1.43 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Python memcached client library Group: Development/Languages @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/python_memcached-%{version}-py*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.43-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.43-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:41:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:41:10 +0000 (UTC) Subject: rpms/python-metar/devel python-metar.spec,1.4,1.5 Message-ID: <20090726204110.787F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-metar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21832 Modified Files: python-metar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-metar.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-metar/devel/python-metar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-metar.spec 26 Feb 2009 22:22:20 -0000 1.4 +++ python-metar.spec 26 Jul 2009 20:41:10 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Coded METAR weather reports parser for Python Name: python-metar Version: 1.3.0 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: Development/Languages URL: http://homepage.mac.com/wtpollard/Software/FileSharing4.html @@ -44,6 +44,9 @@ Python package that parses coded METAR w %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:41:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:41:24 +0000 (UTC) Subject: rpms/python-migrate/devel python-migrate.spec,1.12,1.13 Message-ID: <20090726204124.A17F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-migrate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21951 Modified Files: python-migrate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-migrate.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-migrate/devel/python-migrate.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-migrate.spec 5 Jun 2009 14:24:57 -0000 1.12 +++ python-migrate.spec 26 Jul 2009 20:41:24 -0000 1.13 @@ -4,7 +4,7 @@ Name: python-migrate Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Schema migration tools for SQLAlchemy Group: Development/Languages @@ -65,6 +65,9 @@ echo 'sqlite:///__tmp__' > test_db.cfg %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken 0.5.3-2 - Add python-migrate-py2.4-import.patch, which makes the use of __import__ work on Python 2.4 From jkeating at fedoraproject.org Sun Jul 26 20:41:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:41:39 +0000 (UTC) Subject: rpms/python-minihallib/devel python-minihallib.spec,1.4,1.5 Message-ID: <20090726204139.F182C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-minihallib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22120 Modified Files: python-minihallib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-minihallib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-minihallib/devel/python-minihallib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-minihallib.spec 26 Feb 2009 22:24:16 -0000 1.4 +++ python-minihallib.spec 26 Jul 2009 20:41:39 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-minihallib Version: 0.1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to handle HAL devices and events Group: Development/Languages @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:41:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:41:56 +0000 (UTC) Subject: rpms/python-morbid/devel python-morbid.spec,1.1,1.2 Message-ID: <20090726204156.EE17B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-morbid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22271 Modified Files: python-morbid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-morbid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-morbid/devel/python-morbid.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-morbid.spec 15 May 2009 17:39:28 -0000 1.1 +++ python-morbid.spec 26 Jul 2009 20:41:56 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-morbid Summary: A lightweight message queue for bundled deployment Version: 0.8.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Daemons URL: http://www.morbidq.com @@ -41,5 +41,8 @@ rm -rf %{buildroot} %{python_sitelib}/morbid*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 6 2009 Tom "spot" Callaway - 0.8.6.1-1 - Initial package for Fedora From jkeating at fedoraproject.org Sun Jul 26 20:42:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:42:12 +0000 (UTC) Subject: rpms/python-mpd/devel python-mpd.spec,1.4,1.5 Message-ID: <20090726204212.D7CC211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22460 Modified Files: python-mpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mpd/devel/python-mpd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-mpd.spec 26 Feb 2009 22:25:20 -0000 1.4 +++ python-mpd.spec 26 Jul 2009 20:42:12 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-mpd Version: 0.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python MPD client library Group: Development/Languages License: GPLv3+ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:42:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:42:28 +0000 (UTC) Subject: rpms/python-musicbrainz2/devel python-musicbrainz2.spec,1.11,1.12 Message-ID: <20090726204228.1E50311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-musicbrainz2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22671 Modified Files: python-musicbrainz2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-musicbrainz2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-musicbrainz2/devel/python-musicbrainz2.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-musicbrainz2.spec 26 Feb 2009 22:26:23 -0000 1.11 +++ python-musicbrainz2.spec 26 Jul 2009 20:42:27 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-musicbrainz2 Version: 0.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library which provides access to the MusicBrainz Database Group: Development/Languages @@ -55,6 +55,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:42:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:42:44 +0000 (UTC) Subject: rpms/python-mutagen/devel python-mutagen.spec,1.16,1.17 Message-ID: <20090726204244.2FB2F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mutagen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22815 Modified Files: python-mutagen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mutagen.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mutagen/devel/python-mutagen.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- python-mutagen.spec 3 Jul 2009 05:02:09 -0000 1.16 +++ python-mutagen.spec 26 Jul 2009 20:42:43 -0000 1.17 @@ -2,7 +2,7 @@ Name: python-mutagen Version: 1.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mutagen is a Python module to handle audio metadata Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{python_sitelib}/mutagen-%{version}-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Silas Sewell - 1.16-1 - Update to 1.16 - New project URLs From jkeating at fedoraproject.org Sun Jul 26 20:43:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:43:00 +0000 (UTC) Subject: rpms/python-mwlib/devel python-mwlib.spec,1.12,1.13 Message-ID: <20090726204300.136E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-mwlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22972 Modified Files: python-mwlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-mwlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-mwlib/devel/python-mwlib.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-mwlib.spec 22 May 2009 15:42:29 -0000 1.12 +++ python-mwlib.spec 26 Jul 2009 20:42:59 -0000 1.13 @@ -2,7 +2,7 @@ Name: python-mwlib Version: 0.11.2 -Release: 2.20090522hg2956%{?dist} +Release: 3.20090522hg2956%{?dist} Summary: MediaWiki conversion library for Python Group: Development/Languages @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.2-3.20090522hg2956 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Ian Weller - 0.11.2-2.20090522hg2956 - odfpy07 does not exist From jkeating at fedoraproject.org Sun Jul 26 20:43:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:43:14 +0000 (UTC) Subject: rpms/python-myghty/devel python-myghty.spec,1.16,1.17 Message-ID: <20090726204314.A705F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-myghty/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23150 Modified Files: python-myghty.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-myghty.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-myghty/devel/python-myghty.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- python-myghty.spec 14 Apr 2009 02:52:29 -0000 1.16 +++ python-myghty.spec 26 Jul 2009 20:43:14 -0000 1.17 @@ -2,7 +2,7 @@ Name: python-myghty Version: 1.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A Python-based templating system derived from HTML::Mason Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Toshio Kuratomi - 1.1-9 - Fix for building with python2.6 From jkeating at fedoraproject.org Sun Jul 26 20:43:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:43:28 +0000 (UTC) Subject: rpms/python-netaddr/devel python-netaddr.spec,1.13,1.14 Message-ID: <20090726204328.722F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-netaddr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23311 Modified Files: python-netaddr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-netaddr.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-netaddr/devel/python-netaddr.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-netaddr.spec 22 Jul 2009 19:32:38 -0000 1.13 +++ python-netaddr.spec 26 Jul 2009 20:43:28 -0000 1.14 @@ -4,7 +4,7 @@ Name: python-netaddr Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Network address manipulation, done Pythonically Group: Development/Libraries @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 John Eckersberg - 0.6.3-2 - Minor tweaks to spec file aligning with latest Fedora packaging guidelines - Enforce python 2.4 dependency as needed by netaddr >= 0.6.2 From jkeating at fedoraproject.org Sun Jul 26 20:43:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:43:43 +0000 (UTC) Subject: rpms/python-networkx/devel python-networkx.spec,1.1,1.2 Message-ID: <20090726204343.BE03A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-networkx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23475 Modified Files: python-networkx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-networkx.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-networkx/devel/python-networkx.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-networkx.spec 27 Mar 2009 22:17:14 -0000 1.1 +++ python-networkx.spec 26 Jul 2009 20:43:43 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-networkx Version: 0.99 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Creates and Manipulates Graphs and Networks Group: Development/Languages License: LGPLv2+ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Conrad Meyer - 0.99-3 - Replace __python macros with direct python invocations. - Disable checks for now. From jkeating at fedoraproject.org Sun Jul 26 20:43:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:43:57 +0000 (UTC) Subject: rpms/python-nevow/devel python-nevow.spec,1.8,1.9 Message-ID: <20090726204357.84FA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-nevow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23632 Modified Files: python-nevow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-nevow.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nevow/devel/python-nevow.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-nevow.spec 26 Feb 2009 22:31:37 -0000 1.8 +++ python-nevow.spec 26 Jul 2009 20:43:57 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Web application construction kit written in Python Name: python-nevow Version: 0.9.32 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: Development/Languages URL: http://divmod.org/trac/wiki/DivmodNevow @@ -65,6 +65,9 @@ find examples \( -name '*.html' -o -name %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.32-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:44:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:44:11 +0000 (UTC) Subject: rpms/python-nltk/devel python-nltk.spec,1.11,1.12 Message-ID: <20090726204411.667C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-nltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23768 Modified Files: python-nltk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-nltk.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nltk/devel/python-nltk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-nltk.spec 26 Feb 2009 22:32:37 -0000 1.11 +++ python-nltk.spec 26 Jul 2009 20:44:11 -0000 1.12 @@ -4,7 +4,7 @@ Name: python-nltk Epoch: 1 Version: 0.9.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Natural Language Toolkit Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.9.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.9.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:44:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:44:27 +0000 (UTC) Subject: rpms/python-nose/devel python-nose.spec,1.16,1.17 Message-ID: <20090726204427.3E6A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-nose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23919 Modified Files: python-nose.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-nose.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nose/devel/python-nose.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- python-nose.spec 26 Feb 2009 22:33:36 -0000 1.16 +++ python-nose.spec 26 Jul 2009 20:44:26 -0000 1.17 @@ -3,7 +3,7 @@ Name: python-nose Version: 0.10.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A discovery-based unittest extension for Python Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/nose %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:44:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:44:41 +0000 (UTC) Subject: rpms/python-nss/devel python-nss.spec,1.11,1.12 Message-ID: <20090726204441.E0EF611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-nss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24074 Modified Files: python-nss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-nss.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-nss/devel/python-nss.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-nss.spec 9 Jul 2009 12:11:26 -0000 1.11 +++ python-nss.spec 26 Jul 2009 20:44:41 -0000 1.12 @@ -4,7 +4,7 @@ Name: python-nss Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python bindings for Network Security Services (NSS) Group: Development/Languages @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 John Dennis - 0.6-2 - restore nss.nssinit(), make deprecated From jkeating at fedoraproject.org Sun Jul 26 20:44:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:44:59 +0000 (UTC) Subject: rpms/python-numarray/devel python-numarray.spec,1.15,1.16 Message-ID: <20090726204459.84C7C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-numarray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24263 Modified Files: python-numarray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-numarray.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-numarray/devel/python-numarray.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-numarray.spec 26 Feb 2009 22:35:33 -0000 1.15 +++ python-numarray.spec 26 Jul 2009 20:44:59 -0000 1.16 @@ -3,7 +3,7 @@ Name: python-numarray Version: 1.5.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Python array manipulation and computational library Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:45:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:45:21 +0000 (UTC) Subject: rpms/python-numdisplay/devel python-numdisplay.spec,1.7,1.8 Message-ID: <20090726204521.079B211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-numdisplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24486 Modified Files: python-numdisplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-numdisplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-numdisplay/devel/python-numdisplay.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- python-numdisplay.spec 22 May 2009 21:40:31 -0000 1.7 +++ python-numdisplay.spec 26 Jul 2009 20:45:20 -0000 1.8 @@ -5,7 +5,7 @@ Name: python-numdisplay Version: 1.5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Visualize numpy array objects in ds9 Group: Development/Languages @@ -47,6 +47,9 @@ on any platform which supports Python an %exclude %{python_sitelib}/%{upname}/LICENSE.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Sergio Pascual - 1.5.4-1 - New upstream source. From jkeating at fedoraproject.org Sun Jul 26 20:45:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:45:36 +0000 (UTC) Subject: rpms/python-numeric/devel python-numeric.spec,1.22,1.23 Message-ID: <20090726204536.A129311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-numeric/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24632 Modified Files: python-numeric.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-numeric.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-numeric/devel/python-numeric.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-numeric.spec 26 Feb 2009 22:37:35 -0000 1.22 +++ python-numeric.spec 26 Jul 2009 20:45:36 -0000 1.23 @@ -4,7 +4,7 @@ Name: python-numeric Version: 24.2 -Release: 13%{?dist} +Release: 14%{?dist} License: Python Group: Development/Languages Summary: Numerical Extension to Python @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/python*/Numeric/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 24.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 24.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:45:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:45:52 +0000 (UTC) Subject: rpms/python-oasa/devel python-oasa.spec,1.6,1.7 Message-ID: <20090726204552.C050911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-oasa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24763 Modified Files: python-oasa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-oasa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-oasa/devel/python-oasa.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-oasa.spec 6 Apr 2009 23:17:33 -0000 1.6 +++ python-oasa.spec 26 Jul 2009 20:45:52 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-oasa Version: 0.13.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python library for manipulation of chemical formats Group: Development/Libraries License: GPLv2+ @@ -43,6 +43,9 @@ Free python library for manipulating and %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Henrique (LonelySpooky) Junior - 0.13.1-1 - This release of OASA includes several fixes, most notably of lockup during generation of images of complex systems of fused rings. Also image generation now works much faster From jkeating at fedoraproject.org Sun Jul 26 20:46:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:46:11 +0000 (UTC) Subject: rpms/python-ogg/devel python-ogg.spec,1.12,1.13 Message-ID: <20090726204611.743BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ogg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24924 Modified Files: python-ogg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ogg.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ogg/devel/python-ogg.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-ogg.spec 1 Apr 2009 08:03:06 -0000 1.12 +++ python-ogg.spec 26 Jul 2009 20:46:10 -0000 1.13 @@ -4,7 +4,7 @@ Summary: Python wrapper for the Ogg libraries Name: python-ogg Version: 1.3 -Release: 12 +Release: 13 License: LGPLv2 Group: Development/Languages URL: http://ekyo.nerim.net/software/pyogg/ @@ -61,6 +61,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Michael Schwendt - 1.3-12 - Fix unowned headers directory (#483470). From jkeating at fedoraproject.org Sun Jul 26 20:46:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:46:28 +0000 (UTC) Subject: rpms/python-openhpi/devel python-openhpi.spec,1.3,1.4 Message-ID: <20090726204628.7EC2A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-openhpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25189 Modified Files: python-openhpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-openhpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-openhpi/devel/python-openhpi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-openhpi.spec 26 Feb 2009 22:40:35 -0000 1.3 +++ python-openhpi.spec 26 Jul 2009 20:46:28 -0000 1.4 @@ -3,7 +3,7 @@ %define srcname py-openhpi Name: python-openhpi Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python interface for OpenHPI Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:46:46 +0000 (UTC) Subject: rpms/python-openid/devel python-openid.spec,1.8,1.9 Message-ID: <20090726204646.0601C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-openid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25610 Modified Files: python-openid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-openid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-openid/devel/python-openid.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-openid.spec 26 Feb 2009 22:41:35 -0000 1.8 +++ python-openid.spec 26 Jul 2009 20:46:45 -0000 1.9 @@ -2,7 +2,7 @@ Name: python-openid Version: 2.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python OpenID libraries Group: Development/Languages @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:47:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:47:28 +0000 (UTC) Subject: rpms/python-openoffice/devel python-openoffice.spec,1.3,1.4 Message-ID: <20090726204728.4A66E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-openoffice/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26242 Modified Files: python-openoffice.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-openoffice.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-openoffice/devel/python-openoffice.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-openoffice.spec 6 Mar 2009 11:11:05 -0000 1.3 +++ python-openoffice.spec 26 Jul 2009 20:47:27 -0000 1.4 @@ -6,7 +6,7 @@ Name: python-%{module} Version: 0.1 -Release: 0.3.%{svndate}svn%{svnrev}%{?dist} +Release: 0.4.%{svndate}svn%{svnrev}%{?dist} Summary: Python libraries for interacting with OpenOffice.org Group: Development/Languages License: GPLv3 @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-0.4.20090228svn34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Dan Hor?k 0.1-0.3.20090228svn34 - check %%rhel for the ExcludeArch tag - update to new upstream snapshot From jkeating at fedoraproject.org Sun Jul 26 20:47:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:47:45 +0000 (UTC) Subject: rpms/python-paida/devel python-paida.spec,1.1,1.2 Message-ID: <20090726204745.13D9C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-paida/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26422 Modified Files: python-paida.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-paida.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paida/devel/python-paida.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-paida.spec 29 Apr 2009 06:21:03 -0000 1.1 +++ python-paida.spec 26 Jul 2009 20:47:44 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-paida Version: 3.2.1_2.10.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Pure Python scientific analysis package Group: Development/Languages License: Python @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.1_2.10.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Jussi Lehtola - 3.2.1_2.10.1-2 - Review fix. From jkeating at fedoraproject.org Sun Jul 26 20:48:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:48:39 +0000 (UTC) Subject: rpms/python-paste/devel python-paste.spec,1.15,1.16 Message-ID: <20090726204839.97AC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-paste/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26818 Modified Files: python-paste.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-paste.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paste/devel/python-paste.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-paste.spec 23 Jun 2009 02:35:22 -0000 1.15 +++ python-paste.spec 26 Jul 2009 20:48:39 -0000 1.16 @@ -2,7 +2,7 @@ Name: python-paste Version: 1.7.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools for using a Web Server Gateway Interface stack Group: System Environment/Libraries License: MIT @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Kyle VanderBeek - 1.7.2-3 - Package formerly ghost'ed .pyo files - Update to current python package methods From jkeating at fedoraproject.org Sun Jul 26 20:48:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:48:56 +0000 (UTC) Subject: rpms/python-paste-deploy/devel python-paste-deploy.spec,1.12,1.13 Message-ID: <20090726204856.58D3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-paste-deploy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26977 Modified Files: python-paste-deploy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-paste-deploy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paste-deploy/devel/python-paste-deploy.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-paste-deploy.spec 5 Jun 2009 14:33:11 -0000 1.12 +++ python-paste-deploy.spec 26 Jul 2009 20:48:56 -0000 1.13 @@ -3,7 +3,7 @@ Name: python-paste-deploy Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Load, configure, and compose WSGI applications and servers Group: System Environment/Libraries License: MIT @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Luke Macken - 1.3.3-1 - Update to 1.3.3 From jkeating at fedoraproject.org Sun Jul 26 20:49:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:49:12 +0000 (UTC) Subject: rpms/python-paste-script/devel python-paste-script.spec,1.20,1.21 Message-ID: <20090726204912.3265311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-paste-script/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27187 Modified Files: python-paste-script.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-paste-script.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paste-script/devel/python-paste-script.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- python-paste-script.spec 26 Feb 2009 22:46:31 -0000 1.20 +++ python-paste-script.spec 26 Jul 2009 20:49:11 -0000 1.21 @@ -3,7 +3,7 @@ Name: python-paste-script Version: 1.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A pluggable command-line frontend Group: System Environment/Libraries License: MIT @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:49:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:49:25 +0000 (UTC) Subject: rpms/python-paver/devel python-paver.spec,1.8,1.9 Message-ID: <20090726204925.853F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-paver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27361 Modified Files: python-paver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-paver.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-paver/devel/python-paver.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-paver.spec 13 Apr 2009 21:10:09 -0000 1.8 +++ python-paver.spec 26 Jul 2009 20:49:25 -0000 1.9 @@ -3,7 +3,7 @@ %define srcname Paver Name: python-paver Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python-based build/distribution/deployment scripting tool Group: Development/Languages @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Toshio Kuratomi - 1.0-2 - Patch for python-2.4 compatibility From jkeating at fedoraproject.org Sun Jul 26 20:49:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:49:39 +0000 (UTC) Subject: rpms/python-peak-rules/devel python-peak-rules.spec,1.11,1.12 Message-ID: <20090726204939.9313511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-peak-rules/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27551 Modified Files: python-peak-rules.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-peak-rules.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-rules/devel/python-peak-rules.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-peak-rules.spec 15 Jul 2009 04:58:54 -0000 1.11 +++ python-peak-rules.spec 26 Jul 2009 20:49:39 -0000 1.12 @@ -13,7 +13,7 @@ Version: 0.5a1.dev # Release:0.3.a1.dev%{devrev}%{?dist} # But we can't do that yet because it breaks the upgrade path. # When version hits 0.5.1 or 0.6 we can correct this. -Release: 8.%{devrev}%{?dist} +Release: 9.%{devrev}%{?dist} Summary: Generic functions and business rules support systems Group: Development/Languages @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5a1.dev-9.2582 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Kyle VanderBeek - 0.5a1.dev-8.2582 - SVN r2600 to fix python 2.6 deprecation warnings from BitmapIndex From jkeating at fedoraproject.org Sun Jul 26 20:49:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:49:53 +0000 (UTC) Subject: rpms/python-peak-util-addons/devel python-peak-util-addons.spec, 1.3, 1.4 Message-ID: <20090726204953.DEAA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-peak-util-addons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27665 Modified Files: python-peak-util-addons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-peak-util-addons.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-util-addons/devel/python-peak-util-addons.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-peak-util-addons.spec 26 Feb 2009 22:49:51 -0000 1.3 +++ python-peak-util-addons.spec 26 Jul 2009 20:49:53 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-peak-util-addons Version: 0.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Dynamically extend other objects with AddOns Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:50:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:50:08 +0000 (UTC) Subject: rpms/python-peak-util-assembler/devel python-peak-util-assembler.spec, 1.3, 1.4 Message-ID: <20090726205008.C13D511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-peak-util-assembler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27811 Modified Files: python-peak-util-assembler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-peak-util-assembler.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-util-assembler/devel/python-peak-util-assembler.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-peak-util-assembler.spec 26 Feb 2009 22:51:01 -0000 1.3 +++ python-peak-util-assembler.spec 26 Jul 2009 20:50:08 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-peak-util-assembler Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generate Python code objects by "assembling" bytecode Group: Development/Languages @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:50:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:50:23 +0000 (UTC) Subject: rpms/python-peak-util-extremes/devel python-peak-util-extremes.spec, 1.3, 1.4 Message-ID: <20090726205023.DDE3811C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-peak-util-extremes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28007 Modified Files: python-peak-util-extremes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-peak-util-extremes.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-util-extremes/devel/python-peak-util-extremes.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-peak-util-extremes.spec 26 Feb 2009 22:52:13 -0000 1.3 +++ python-peak-util-extremes.spec 26 Jul 2009 20:50:23 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-peak-util-extremes Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Production-quality 'Min' and 'Max' objects Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:50:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:50:38 +0000 (UTC) Subject: rpms/python-peak-util-symbols/devel python-peak-util-symbols.spec, 1.3, 1.4 Message-ID: <20090726205038.D818811C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-peak-util-symbols/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28184 Modified Files: python-peak-util-symbols.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-peak-util-symbols.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-peak-util-symbols/devel/python-peak-util-symbols.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-peak-util-symbols.spec 26 Feb 2009 22:53:15 -0000 1.3 +++ python-peak-util-symbols.spec 26 Jul 2009 20:50:38 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-peak-util-symbols Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple "symbol" type, useful for enumerations or sentinels Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:50:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:50:55 +0000 (UTC) Subject: rpms/python-pefile/devel python-pefile.spec,1.1,1.2 Message-ID: <20090726205055.969A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pefile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28350 Modified Files: python-pefile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pefile.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pefile/devel/python-pefile.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-pefile.spec 11 May 2009 15:11:16 -0000 1.1 +++ python-pefile.spec 26 Jul 2009 20:50:55 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-pefile # upstream version embeds a dash, we replace this with an underscore: Version: 1.2.10_63 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python module for working with Portable Executable files Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.10_63-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 David Malcolm - 1.2.10_63-1 - initial packaging From jkeating at fedoraproject.org Sun Jul 26 20:51:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:51:12 +0000 (UTC) Subject: rpms/python-pgsql/devel python-pgsql.spec,1.6,1.7 Message-ID: <20090726205112.20A9B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pgsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28565 Modified Files: python-pgsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pgsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pgsql/devel/python-pgsql.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-pgsql.spec 26 Feb 2009 22:54:23 -0000 1.6 +++ python-pgsql.spec 26 Jul 2009 20:51:11 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-pgsql Version: 0.9.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Enhanced python interface to PostgreSQL Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:51:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:51:28 +0000 (UTC) Subject: rpms/python-ply/devel python-ply.spec,1.5,1.6 Message-ID: <20090726205128.033E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ply/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28750 Modified Files: python-ply.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ply.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ply/devel/python-ply.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-ply.spec 22 Apr 2009 19:31:21 -0000 1.5 +++ python-ply.spec 26 Jul 2009 20:51:27 -0000 1.6 @@ -3,7 +3,7 @@ Name: python-ply Summary: Python Lex-Yacc Version: 3.2 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.dabeaz.com/ply/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/ply*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Tom "spot" Callaway 3.2-1 - update to 3.2, license change to BSD From jkeating at fedoraproject.org Sun Jul 26 20:51:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:51:44 +0000 (UTC) Subject: rpms/python-pmw/devel python-pmw.spec,1.4,1.5 Message-ID: <20090726205144.1B5FA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pmw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28910 Modified Files: python-pmw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pmw.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pmw/devel/python-pmw.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-pmw.spec 13 May 2009 22:48:09 -0000 1.4 +++ python-pmw.spec 26 Jul 2009 20:51:43 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Python powerwidgets Name: python-pmw Version: 1.3.2 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT and GPLv2+ Group: Development/Libraries URL: http://pmw.sourceforge.net/ @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{python_sitelib}/Pmw %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Tim Fenn - 1.3.2-8 - patch for unicode menus (Mamoru Tasaka), bug ID 500459 From jkeating at fedoraproject.org Sun Jul 26 20:52:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:52:00 +0000 (UTC) Subject: rpms/python-polib/devel python-polib.spec,1.1,1.2 Message-ID: <20090726205200.2CFB911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-polib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29070 Modified Files: python-polib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-polib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-polib/devel/python-polib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-polib.spec 4 Mar 2009 13:28:53 -0000 1.1 +++ python-polib.spec 26 Jul 2009 20:52:00 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-polib Version: 0.4.0 -Release: 1%{?dist}.20080217svn%{alphatag} +Release: 2%{?dist}.20080217svn%{alphatag} Summary: A library to parse and manage gettext catalogs Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-2.20080217svnr60 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 18 2009 Ignacio Vazquez-Abrams 0.4.0-1.20080217svnr60 - Initial RPM release From jkeating at fedoraproject.org Sun Jul 26 20:52:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:52:14 +0000 (UTC) Subject: rpms/python-polybori/devel python-polybori.spec,1.1,1.2 Message-ID: <20090726205214.B116C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-polybori/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29227 Modified Files: python-polybori.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-polybori.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-polybori/devel/python-polybori.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-polybori.spec 4 Apr 2009 00:41:43 -0000 1.1 +++ python-polybori.spec 26 Jul 2009 20:52:14 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-polybori Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Framework for Boolean Rings Group: Development/Libraries License: GPLv2+ @@ -175,6 +175,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Conrad Meyer - 0.5-5 - Add cudd-devel Requires to -devel subpackage. - Link against cudd at build time. From jkeating at fedoraproject.org Sun Jul 26 20:52:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:52:28 +0000 (UTC) Subject: rpms/python-posix_ipc/devel python-posix_ipc.spec,1.1,1.2 Message-ID: <20090726205228.CF19211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-posix_ipc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29340 Modified Files: python-posix_ipc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-posix_ipc.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-posix_ipc/devel/python-posix_ipc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-posix_ipc.spec 23 Apr 2009 09:50:26 -0000 1.1 +++ python-posix_ipc.spec 26 Jul 2009 20:52:28 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-posix_ipc Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: POSIX IPC primitives (semaphores and shared memory) for Python Group: Development/Languages License: GPLv3+ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 16 2009 Ramakrishna Reddy Yekulla 0.5.3-1 - Initial RPM release From jkeating at fedoraproject.org Sun Jul 26 20:52:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:52:43 +0000 (UTC) Subject: rpms/python-pp/devel python-pp.spec,1.13,1.14 Message-ID: <20090726205243.D71E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29499 Modified Files: python-pp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pp.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pp/devel/python-pp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-pp.spec 1 May 2009 01:36:39 -0000 1.13 +++ python-pp.spec 26 Jul 2009 20:52:43 -0000 1.14 @@ -2,7 +2,7 @@ Name: python-pp Version: 1.5.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parallel execution of python on smp Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Steve 'Ashcrow' Milner - 1.5.7-2 - Including new dependency and docs From jkeating at fedoraproject.org Sun Jul 26 20:52:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:52:57 +0000 (UTC) Subject: rpms/python-prioritized-methods/devel python-prioritized-methods.spec, 1.5, 1.6 Message-ID: <20090726205257.AD17011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-prioritized-methods/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29666 Modified Files: python-prioritized-methods.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-prioritized-methods.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-prioritized-methods/devel/python-prioritized-methods.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-prioritized-methods.spec 26 Feb 2009 22:58:40 -0000 1.5 +++ python-prioritized-methods.spec 26 Jul 2009 20:52:57 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-prioritized-methods Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An extension to PEAK-Rules to prioritize methods in order Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:53:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:53:11 +0000 (UTC) Subject: rpms/python-progressbar/devel python-progressbar.spec,1.2,1.3 Message-ID: <20090726205311.16BF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-progressbar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29802 Modified Files: python-progressbar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-progressbar.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-progressbar/devel/python-progressbar.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-progressbar.spec 26 Feb 2009 22:59:45 -0000 1.2 +++ python-progressbar.spec 26 Jul 2009 20:53:10 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-%{realname} Version: 2.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Text progressbar library for python Group: Development/Libraries @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:53:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:53:24 +0000 (UTC) Subject: rpms/python-protocols/devel python-protocols.spec,1.18,1.19 Message-ID: <20090726205324.E420311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-protocols/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29959 Modified Files: python-protocols.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-protocols.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-protocols/devel/python-protocols.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- python-protocols.spec 26 Feb 2009 23:00:55 -0000 1.18 +++ python-protocols.spec 26 Jul 2009 20:53:24 -0000 1.19 @@ -9,7 +9,7 @@ Name: python-protocols Version: 1.0 -Release: 0.11.%{alphatag}_%{revision}%{?dist} +Release: 0.12.%{alphatag}_%{revision}%{?dist} Summary: Open Protocols and Component Adaptation for Python @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/%{srcname}-%{eggver}%{alphatag}_%{revision}-py%{python_abi}.egg-info/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.12.a0dev_r2302 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-0.11.a0dev_r2302 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:53:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:53:40 +0000 (UTC) Subject: rpms/python-psyco/devel python-psyco.spec,1.25,1.26 Message-ID: <20090726205340.4BCA911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-psyco/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30084 Modified Files: python-psyco.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-psyco.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-psyco/devel/python-psyco.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- python-psyco.spec 28 Feb 2009 00:44:47 -0000 1.25 +++ python-psyco.spec 26 Jul 2009 20:53:40 -0000 1.26 @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Python Specialing Compiler @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:53:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:53:57 +0000 (UTC) Subject: rpms/python-psycopg/devel python-psycopg.spec,1.18,1.19 Message-ID: <20090726205357.5B5B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-psycopg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30251 Modified Files: python-psycopg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-psycopg.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-psycopg/devel/python-psycopg.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- python-psycopg.spec 26 Feb 2009 23:03:05 -0000 1.18 +++ python-psycopg.spec 26 Jul 2009 20:53:57 -0000 1.19 @@ -4,7 +4,7 @@ Name: python-psycopg Version: 1.1.21 -Release: 12%{?dist} +Release: 13%{?dist} Summary: PostgreSQL database adapter for Python @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.21-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.21-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:54:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:54:16 +0000 (UTC) Subject: rpms/python-psycopg2/devel python-psycopg2.spec,1.24,1.25 Message-ID: <20090726205416.49BD511C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-psycopg2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30414 Modified Files: python-psycopg2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-psycopg2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-psycopg2/devel/python-psycopg2.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- python-psycopg2.spec 19 May 2009 19:35:50 -0000 1.24 +++ python-psycopg2.spec 26 Jul 2009 20:54:16 -0000 1.25 @@ -8,7 +8,7 @@ Summary: A PostgreSQL database adapter for Python Name: python-psycopg2 Version: 2.0.11 -Release: 1%{?dist} +Release: 2%{?dist} Source0: http://initd.org/pub/software/psycopg/psycopg2-%{version}.tar.gz # The exceptions allow linking to OpenSSL and PostgreSQL's libpq License: GPLv2+ with exceptions @@ -90,6 +90,9 @@ rm -rf %{buildroot} #%{ZPsycopgDAdir}/icons/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Devrim GUNDUZ - 2.0.11-1 - Update to 2.0.11 From jkeating at fedoraproject.org Sun Jul 26 20:54:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:54:33 +0000 (UTC) Subject: rpms/python-ptrace/devel python-ptrace.spec,1.3,1.4 Message-ID: <20090726205433.64D6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ptrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30597 Modified Files: python-ptrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ptrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ptrace/devel/python-ptrace.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-ptrace.spec 8 Mar 2009 22:32:58 -0000 1.3 +++ python-ptrace.spec 26 Jul 2009 20:54:33 -0000 1.4 @@ -6,7 +6,7 @@ Summary: Debugger using ptrace written in Python Name: python-ptrace Version: 0.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Development/Tools URL : http://python-ptrace.hachoir.org/ @@ -64,6 +64,9 @@ Fearures: %{python_sitelib_arch}/ptrace-*-py%{pyver}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Terje Rosten - 0.6-4 - Build with all rpm versions From jkeating at fedoraproject.org Sun Jul 26 20:54:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:54:51 +0000 (UTC) Subject: rpms/python-py/devel python-py.spec,1.3,1.4 Message-ID: <20090726205451.4DFC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30793 Modified Files: python-py.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-py.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-py/devel/python-py.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-py.spec 22 Jul 2009 22:54:57 -0000 1.3 +++ python-py.spec 26 Jul 2009 20:54:51 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-py Version: 1.0.0 -Release: 0%{?prerelease:.%{prerelease}}%{?dist} +Release: 1%{?prerelease:.%{prerelease}}%{?dist} Summary: Innovative python library containing py.test, greenlets and other niceties Group: Development/Languages License: MIT and LGPLv2+ and Public Domain and BSD and Python @@ -102,6 +102,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-1.b8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Thomas Moschny - 1.0.0-0.b8 - Update to 1.0.0b8. - Remove patches applied upstream. From jkeating at fedoraproject.org Sun Jul 26 20:55:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:55:08 +0000 (UTC) Subject: rpms/python-pyasn1/devel python-pyasn1.spec,1.4,1.5 Message-ID: <20090726205508.AFF0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pyasn1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30973 Modified Files: python-pyasn1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pyasn1.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pyasn1/devel/python-pyasn1.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-pyasn1.spec 26 Feb 2009 23:06:10 -0000 1.4 +++ python-pyasn1.spec 26 Jul 2009 20:55:08 -0000 1.5 @@ -4,7 +4,7 @@ Name: python-pyasn1 Version: 0.0.8a -Release: 3%{?dist} +Release: 4%{?dist} Summary: ASN.1 tools for Python License: BSD Group: System Environment/Libraries @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.8a-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.8a-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:55:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:55:22 +0000 (UTC) Subject: rpms/python-pyblock/devel python-pyblock.spec,1.66,1.67 Message-ID: <20090726205522.EBE5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pyblock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31155 Modified Files: python-pyblock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pyblock.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pyblock/devel/python-pyblock.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- python-pyblock.spec 2 Apr 2009 20:07:02 -0000 1.66 +++ python-pyblock.spec 26 Jul 2009 20:55:22 -0000 1.67 @@ -6,7 +6,7 @@ Summary: Python modules for dealing with block devices Name: python-%{realname} Version: 0.42 -Release: 1%{?dist} +Release: 2%{?dist} Source0: %{realname}-%{version}.tar.bz2 License: GPLv2 or GPLv3 Group: System Environment/Libraries @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/pyblock-%{version}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.42-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 2 2009 Hans de Goede - 0.42-1 - Create assertion function to return PyErrors (jgranados) - Do a thorough search for the Raid Sets (jgranados) From jkeating at fedoraproject.org Sun Jul 26 20:55:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:55:39 +0000 (UTC) Subject: rpms/python-pycurl/devel python-pycurl.spec,1.15,1.16 Message-ID: <20090726205539.D83D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pycurl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31347 Modified Files: python-pycurl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pycurl.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pycurl/devel/python-pycurl.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-pycurl.spec 17 Apr 2009 18:51:09 -0000 1.15 +++ python-pycurl.spec 26 Jul 2009 20:55:39 -0000 1.16 @@ -2,7 +2,7 @@ Name: python-pycurl Version: 7.19.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Python interface to libcurl Group: Development/Languages @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.19.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Stepan Kasal - 7.19.0-3 - fix typo in the previous change From jkeating at fedoraproject.org Sun Jul 26 20:55:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:55:56 +0000 (UTC) Subject: rpms/python-pydns/devel python-pydns.spec,1.5,1.6 Message-ID: <20090726205556.87B8A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pydns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31526 Modified Files: python-pydns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pydns.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pydns/devel/python-pydns.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-pydns.spec 26 Feb 2009 23:08:56 -0000 1.5 +++ python-pydns.spec 26 Jul 2009 20:55:56 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-pydns Version: 2.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python module for DNS (Domain Name Service) Group: Development/Languages @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/pydns-%{version}-py*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:56:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:56:11 +0000 (UTC) Subject: rpms/python-pygments/devel python-pygments.spec,1.11,1.12 Message-ID: <20090726205611.09F8711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pygments/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31692 Modified Files: python-pygments.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pygments.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pygments/devel/python-pygments.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-pygments.spec 26 Feb 2009 23:09:48 -0000 1.11 +++ python-pygments.spec 26 Jul 2009 20:56:10 -0000 1.12 @@ -2,7 +2,7 @@ Name: python-pygments Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A syntax highlighting engine written in Python Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:56:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:56:24 +0000 (UTC) Subject: rpms/python-pygooglechart/devel python-pygooglechart.spec,1.2,1.3 Message-ID: <20090726205624.A9A2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pygooglechart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31824 Modified Files: python-pygooglechart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pygooglechart.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pygooglechart/devel/python-pygooglechart.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-pygooglechart.spec 26 Feb 2009 23:10:42 -0000 1.2 +++ python-pygooglechart.spec 26 Jul 2009 20:56:24 -0000 1.3 @@ -5,7 +5,7 @@ Name: python-pygooglechart Version: 0.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A complete Python wrapper for the Google Chart API Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:56:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:56:39 +0000 (UTC) Subject: rpms/python-pylons/devel python-pylons.spec,1.5,1.6 Message-ID: <20090726205639.9AA6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pylons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31980 Modified Files: python-pylons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pylons.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/devel/python-pylons.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-pylons.spec 22 Jul 2009 23:53:27 -0000 1.5 +++ python-pylons.spec 26 Jul 2009 20:56:39 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-pylons Version: 0.9.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pylons web framework Group: Development/Languages @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Kyle VanderBeek - 0.9.7-1 - Update to 0.9.7 final - Remove some cleanups that have been fixed upstream From jkeating at fedoraproject.org Sun Jul 26 20:56:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:56:54 +0000 (UTC) Subject: rpms/python-pyrad/devel python-pyrad.spec,1.1,1.2 Message-ID: <20090726205654.D1DCD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pyrad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32114 Modified Files: python-pyrad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pyrad.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pyrad/devel/python-pyrad.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-pyrad.spec 13 Apr 2009 04:53:04 -0000 1.1 +++ python-pyrad.spec 26 Jul 2009 20:56:54 -0000 1.2 @@ -6,7 +6,7 @@ Name: python-%{realname} Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python RADIUS client Group: Development/Languages License: BSD @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Peter Lemenkov 1.1-2 - Fixed rpmling warning - Changed 'files' section From jkeating at fedoraproject.org Sun Jul 26 20:57:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:57:08 +0000 (UTC) Subject: rpms/python-pysctp/devel python-pysctp.spec,1.3,1.4 Message-ID: <20090726205708.7DBF911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pysctp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32296 Modified Files: python-pysctp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pysctp.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pysctp/devel/python-pysctp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-pysctp.spec 26 Feb 2009 23:12:29 -0000 1.3 +++ python-pysctp.spec 26 Jul 2009 20:57:08 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-pysctp Version: 0.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python sctp socket api extensions bindings Group: System Environment/Libraries License: LGPLv2 @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %doc README Changelog doc/draft-ietf-tsvwg-sctpsocket-10.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:57:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:57:22 +0000 (UTC) Subject: rpms/python-pyspf/devel python-pyspf.spec,1.6,1.7 Message-ID: <20090726205722.B62BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pyspf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32419 Modified Files: python-pyspf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pyspf.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pyspf/devel/python-pyspf.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-pyspf.spec 26 Feb 2009 23:13:19 -0000 1.6 +++ python-pyspf.spec 26 Jul 2009 20:57:22 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-pyspf Version: 2.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python module and programs for SPF (Sender Policy Framework) Group: Development/Languages @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/pyspf-%{version}-py*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:57:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:57:38 +0000 (UTC) Subject: rpms/python-pytools/devel python-pytools.spec,1.1,1.2 Message-ID: <20090726205738.87AAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-pytools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32610 Modified Files: python-pytools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-pytools.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pytools/devel/python-pytools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-pytools.spec 23 Apr 2009 09:39:08 -0000 1.1 +++ python-pytools.spec 26 Jul 2009 20:57:38 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-pytools Version: 8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of tools for python Group: Development/Languages @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Ramakrishna Reddy Yekulla 8-2 - Spec file cleanup From jkeating at fedoraproject.org Sun Jul 26 20:57:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:57:52 +0000 (UTC) Subject: rpms/python-qpid/devel python-qpid.spec,1.25,1.26 Message-ID: <20090726205752.D850C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32760 Modified Files: python-qpid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-qpid/devel/python-qpid.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- python-qpid.spec 2 Jul 2009 17:30:12 -0000 1.25 +++ python-qpid.spec 26 Jul 2009 20:57:52 -0000 1.26 @@ -1,6 +1,6 @@ Name: python-qpid Version: 0.5.790661 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python language client for AMQP Group: Development/Python @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.790661-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 - Rebased to svn rev 790661 From jkeating at fedoraproject.org Sun Jul 26 20:58:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:58:08 +0000 (UTC) Subject: rpms/python-quixote/devel python-quixote.spec,1.18,1.19 Message-ID: <20090726205808.D049411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-quixote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv439 Modified Files: python-quixote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-quixote.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-quixote/devel/python-quixote.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- python-quixote.spec 26 Feb 2009 23:15:03 -0000 1.18 +++ python-quixote.spec 26 Jul 2009 20:58:08 -0000 1.19 @@ -4,7 +4,7 @@ Name: python-quixote Version: 2.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A highly Pythonic Web application framework Group: Development/Libraries @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:58:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:58:24 +0000 (UTC) Subject: rpms/python-rabbyt/devel python-rabbyt.spec,1.6,1.7 Message-ID: <20090726205824.923E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-rabbyt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv627 Modified Files: python-rabbyt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-rabbyt.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-rabbyt/devel/python-rabbyt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-rabbyt.spec 26 Feb 2009 23:15:53 -0000 1.6 +++ python-rabbyt.spec 26 Jul 2009 20:58:24 -0000 1.7 @@ -5,7 +5,7 @@ Name: python-rabbyt Version: 0.8.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Sprite library for Python Group: System Environment/Libraries @@ -68,6 +68,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:58:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:58:41 +0000 (UTC) Subject: rpms/python-rdflib/devel python-rdflib.spec,1.3,1.4 Message-ID: <20090726205841.42AFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-rdflib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv797 Modified Files: python-rdflib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-rdflib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-rdflib/devel/python-rdflib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-rdflib.spec 26 Feb 2009 23:16:47 -0000 1.3 +++ python-rdflib.spec 26 Jul 2009 20:58:41 -0000 1.4 @@ -7,7 +7,7 @@ Name: python-rdflib Version: 2.4.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Python library for working with RDF Group: Development/Languages @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/rdfpipe %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:59:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:59:02 +0000 (UTC) Subject: rpms/python-relatorio/devel python-relatorio.spec,1.2,1.3 Message-ID: <20090726205902.46E6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-relatorio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv979 Modified Files: python-relatorio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-relatorio.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-relatorio/devel/python-relatorio.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-relatorio.spec 26 Feb 2009 23:17:44 -0000 1.2 +++ python-relatorio.spec 26 Jul 2009 20:59:01 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-%{module_name} Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A templating library able to output odt and pdf files Group: Development/Languages @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:59:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:59:18 +0000 (UTC) Subject: rpms/python-reportlab/devel python-reportlab.spec,1.18,1.19 Message-ID: <20090726205918.5AF4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-reportlab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1140 Modified Files: python-reportlab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-reportlab.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-reportlab/devel/python-reportlab.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- python-reportlab.spec 26 Feb 2009 23:18:35 -0000 1.18 +++ python-reportlab.spec 26 Jul 2009 20:59:18 -0000 1.19 @@ -2,7 +2,7 @@ Name: python-reportlab Version: 2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python PDF generation library Group: Development/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 20:59:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:59:35 +0000 (UTC) Subject: rpms/python-repoze-tm2/devel python-repoze-tm2.spec,1.4,1.5 Message-ID: <20090726205935.2150811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-tm2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1329 Modified Files: python-repoze-tm2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-tm2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-tm2/devel/python-repoze-tm2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-repoze-tm2.spec 5 Jun 2009 14:53:41 -0000 1.4 +++ python-repoze-tm2.spec 26 Jul 2009 20:59:34 -0000 1.5 @@ -4,7 +4,7 @@ Name: python-repoze-tm2 Version: 1.0 -Release: 0.4.%{alphaver}%{?dist} +Release: 0.5.%{alphaver}%{?dist} Summary: Zope-like transaction manager via WSGI middleware Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.5.a4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 1.0-0.4.a4 - Update to 1.0a4 From jkeating at fedoraproject.org Sun Jul 26 20:59:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 20:59:48 +0000 (UTC) Subject: rpms/python-repoze-what/devel python-repoze-what.spec,1.2,1.3 Message-ID: <20090726205948.9D47911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-what/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1512 Modified Files: python-repoze-what.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-what.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what/devel/python-repoze-what.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-repoze-what.spec 5 Jun 2009 14:56:51 -0000 1.2 +++ python-repoze-what.spec 26 Jul 2009 20:59:48 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-repoze-what Version: 1.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Authorization for WSGI applications Group: Development/Languages @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 1.0.8-2 - Fix the dependency in the docs subpackage From jkeating at fedoraproject.org Sun Jul 26 21:00:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:00:02 +0000 (UTC) Subject: rpms/python-repoze-what-plugins-sql/devel python-repoze-what-plugins-sql.spec, 1.2, 1.3 Message-ID: <20090726210002.E02FC11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1675 Modified Files: python-repoze-what-plugins-sql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-what-plugins-sql.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-plugins-sql/devel/python-repoze-what-plugins-sql.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-repoze-what-plugins-sql.spec 10 Jul 2009 15:33:23 -0000 1.2 +++ python-repoze-what-plugins-sql.spec 26 Jul 2009 21:00:02 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-repoze-what-plugins-sql Version: 1.0 -Release: 0.5.%{rcver}%{?dist} +Release: 0.6.%{rcver}%{?dist} Summary: The repoze.what SQL plugin Group: Development/Languages @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.6.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Luke Macken - 1.0-0.5.rc1 - Remove the sqlalchemy0.5 requirement for rawhide From jkeating at fedoraproject.org Sun Jul 26 21:00:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:00:30 +0000 (UTC) Subject: rpms/python-repoze-what-pylons/devel python-repoze-what-pylons.spec, 1.1, 1.2 Message-ID: <20090726210030.2D8ED11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-what-pylons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1907 Modified Files: python-repoze-what-pylons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-what-pylons.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-what-pylons/devel/python-repoze-what-pylons.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-what-pylons.spec 23 Jul 2009 14:04:05 -0000 1.1 +++ python-repoze-what-pylons.spec 26 Jul 2009 21:00:29 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-repoze-what-pylons Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A plugin providing utilities for Pylons applications using repoze.what Group: Development/Languages License: BSD @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Tom "spot" Callaway - 1.0-3 - fix rpmlint issues From jkeating at fedoraproject.org Sun Jul 26 21:00:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:00:51 +0000 (UTC) Subject: rpms/python-repoze-who/devel python-repoze-who.spec,1.1,1.2 Message-ID: <20090726210051.BE69811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-who/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2134 Modified Files: python-repoze-who.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-who.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who/devel/python-repoze-who.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-repoze-who.spec 27 May 2009 04:14:41 -0000 1.1 +++ python-repoze-who.spec 26 Jul 2009 21:00:51 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-repoze-who Version: 1.0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An identification and authentication framework for WSGI Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Luke Macken - 1.0.13-1 - Update to the latest upstream release. From jkeating at fedoraproject.org Sun Jul 26 21:01:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:01:28 +0000 (UTC) Subject: rpms/python-repoze-who-friendlyform/devel python-repoze-who-friendlyform.spec, 1.2, 1.3 Message-ID: <20090726210128.13B5811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-who-friendlyform/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2439 Modified Files: python-repoze-who-friendlyform.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-who-friendlyform.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-friendlyform/devel/python-repoze-who-friendlyform.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-repoze-who-friendlyform.spec 5 Jun 2009 21:12:21 -0000 1.2 +++ python-repoze-who-friendlyform.spec 26 Jul 2009 21:01:27 -0000 1.3 @@ -3,7 +3,7 @@ Name: python-repoze-who-friendlyform Version: 1.0 -Release: 0.2.%{betaver}%{?dist} +Release: 0.3.%{betaver}%{?dist} Summary: Collection of repoze.who friendly form plugins Group: Development/Languages License: BSD @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.3.b3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Luke Macken - 1.0-0.2.b3 - Patch the setup.py to use our own setuptools package From jkeating at fedoraproject.org Sun Jul 26 21:01:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:01:44 +0000 (UTC) Subject: rpms/python-repoze-who-plugins-sa/devel python-repoze-who-plugins-sa.spec, 1.2, 1.3 Message-ID: <20090726210144.73A5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2645 Modified Files: python-repoze-who-plugins-sa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-who-plugins-sa.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-plugins-sa/devel/python-repoze-who-plugins-sa.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-repoze-who-plugins-sa.spec 20 Jul 2009 20:08:29 -0000 1.2 +++ python-repoze-who-plugins-sa.spec 26 Jul 2009 21:01:44 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-repoze-who-plugins-sa Version: 1.0 -Release: 0.3.%{_rcver}%{?dist} +Release: 0.4.%{_rcver}%{?dist} Summary: The repoze.who SQLAlchemy plugin Group: Development/Languages @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.4.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Luke Macken - 1.0-0.3.rc1 - Remove the test suite, since it conflicts with other packages (#512759) From jkeating at fedoraproject.org Sun Jul 26 21:02:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:02:01 +0000 (UTC) Subject: rpms/python-repoze-who-testutil/devel python-repoze-who-testutil.spec, 1.2, 1.3 Message-ID: <20090726210201.E854B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-repoze-who-testutil/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2829 Modified Files: python-repoze-who-testutil.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-repoze-who-testutil.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-repoze-who-testutil/devel/python-repoze-who-testutil.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-repoze-who-testutil.spec 5 Jun 2009 21:17:16 -0000 1.2 +++ python-repoze-who-testutil.spec 26 Jul 2009 21:02:01 -0000 1.3 @@ -3,7 +3,7 @@ Name: python-repoze-who-testutil Version: 1.0 -Release: 0.3.%{rcver}%{?dist} +Release: 0.4.%{rcver}%{?dist} Summary: Test utilities for repoze.who-powered applications Group: Development/Languages License: BSD @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.4.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Luke Macken - 1.0-0.3.rc1 - Patch the setup.py to use our own setuptools package From jkeating at fedoraproject.org Sun Jul 26 21:02:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:02:17 +0000 (UTC) Subject: rpms/python-rope/devel python-rope.spec,1.4,1.5 Message-ID: <20090726210217.51B2811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-rope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2979 Modified Files: python-rope.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-rope.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-rope/devel/python-rope.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-rope.spec 27 May 2009 19:52:56 -0000 1.4 +++ python-rope.spec 26 Jul 2009 21:02:17 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-rope Version: 0.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python Code Refactoring Library Group: Development/Languages @@ -51,6 +51,9 @@ nosetests -e '^xxx_.*' %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Toshio Kuratomi 0.9.2-1 - Update to upstream 0.9.2. From jkeating at fedoraproject.org Sun Jul 26 21:02:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:02:31 +0000 (UTC) Subject: rpms/python-routes/devel python-routes.spec,1.5,1.6 Message-ID: <20090726210231.DE9EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-routes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3114 Modified Files: python-routes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-routes.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-routes/devel/python-routes.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-routes.spec 5 Jun 2009 15:04:31 -0000 1.5 +++ python-routes.spec 26 Jul 2009 21:02:31 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-routes Version: 1.10.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Rails-like routes for Python Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Luke Macken - 1.10.3-1 - Update to 1.10.3 From jkeating at fedoraproject.org Sun Jul 26 21:02:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:02:48 +0000 (UTC) Subject: rpms/python-ruledispatch/devel python-ruledispatch.spec,1.15,1.16 Message-ID: <20090726210248.7C6CD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-ruledispatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3301 Modified Files: python-ruledispatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-ruledispatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-ruledispatch/devel/python-ruledispatch.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-ruledispatch.spec 26 Feb 2009 23:22:21 -0000 1.15 +++ python-ruledispatch.spec 26 Jul 2009 21:02:48 -0000 1.16 @@ -5,7 +5,7 @@ Name: python-ruledispatch Version: 0.5a0 -Release: 0.14.svn%{svnrev}%{?dist} +Release: 0.15.svn%{svnrev}%{?dist} Summary: A generic function package for Python Group: Development/Languages @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/dispatch/tests/*.pyo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5a0-0.15.svnr2306 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5a0-0.14.svnr2306 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 21:03:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:03:05 +0000 (UTC) Subject: rpms/python-schedutils/devel python-schedutils.spec,1.3,1.4 Message-ID: <20090726210305.E23A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-schedutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3478 Modified Files: python-schedutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-schedutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-schedutils/devel/python-schedutils.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-schedutils.spec 26 Feb 2009 23:23:12 -0000 1.3 +++ python-schedutils.spec 26 Jul 2009 21:03:05 -0000 1.4 @@ -4,7 +4,7 @@ Summary: Linux scheduler python bindings Name: python-schedutils Version: 0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 URL: http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git Source: http://userweb.kernel.org/~acme/python-schedutils/%{name}-%{version}.tar.bz2 @@ -43,6 +43,9 @@ rm -rf %{buildroot} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 21:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:03:21 +0000 (UTC) Subject: rpms/python-setupdocs/devel python-setupdocs.spec,1.2,1.3 Message-ID: <20090726210321.E0AC611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-setupdocs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3636 Modified Files: python-setupdocs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-setupdocs.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-setupdocs/devel/python-setupdocs.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-setupdocs.spec 26 Feb 2009 23:24:07 -0000 1.2 +++ python-setupdocs.spec 26 Jul 2009 21:03:21 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-setupdocs Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Setuptools plugin Group: Development/Languages @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 21:03:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:03:39 +0000 (UTC) Subject: rpms/python-setuptools/devel python-setuptools.spec,1.20,1.21 Message-ID: <20090726210339.48A7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-setuptools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3832 Modified Files: python-setuptools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-setuptools.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-setuptools/devel/python-setuptools.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- python-setuptools.spec 14 Jul 2009 14:20:53 -0000 1.20 +++ python-setuptools.spec 26 Jul 2009 21:03:38 -0000 1.21 @@ -2,7 +2,7 @@ Name: python-setuptools Version: 0.6c9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Easily build and distribute Python packages Group: Applications/System @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6c9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Konstantin Ryabitsev - 0.6c9-4 - Apply SVN-1.6 versioning patch (rhbz #511021) From jkeating at fedoraproject.org Sun Jul 26 21:03:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:03:56 +0000 (UTC) Subject: rpms/python-sexy/devel python-sexy.spec,1.12,1.13 Message-ID: <20090726210356.18B7811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sexy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3995 Modified Files: python-sexy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sexy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sexy/devel/python-sexy.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-sexy.spec 26 Feb 2009 23:25:50 -0000 1.12 +++ python-sexy.spec 26 Jul 2009 21:03:55 -0000 1.13 @@ -2,7 +2,7 @@ %define real_name sexy-python Name: python-sexy Version: 0.1.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Python bindings to libsexy @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 21:04:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:04:11 +0000 (UTC) Subject: rpms/python-shout/devel python-shout.spec,1.3,1.4 Message-ID: <20090726210411.D3AD011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-shout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4167 Modified Files: python-shout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-shout.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-shout/devel/python-shout.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-shout.spec 28 Apr 2009 22:52:26 -0000 1.3 +++ python-shout.spec 26 Jul 2009 21:04:11 -0000 1.4 @@ -3,7 +3,7 @@ Name: python-shout Version: 0.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python bindings for libshout 2 Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Milos Jakubicek - 0.2.1-3 - Fix FTBFS: egginfo filename changed because of move to Python 2.6 From jkeating at fedoraproject.org Sun Jul 26 21:04:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:04:34 +0000 (UTC) Subject: rpms/python-shove/devel python-shove.spec,1.3,1.4 Message-ID: <20090726210434.4FECF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-shove/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4367 Modified Files: python-shove.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-shove.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-shove/devel/python-shove.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-shove.spec 5 Jun 2009 15:33:27 -0000 1.3 +++ python-shove.spec 26 Jul 2009 21:04:32 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-shove Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common object storage frontend Group: Development/Languages @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Luke Macken 0.2.1-2 - Add python-setuptools-devel to our BuildRequires, so we generate the egg-info From jkeating at fedoraproject.org Sun Jul 26 21:04:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:04:52 +0000 (UTC) Subject: rpms/python-simplejson/devel python-simplejson.spec,1.28,1.29 Message-ID: <20090726210452.595EA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-simplejson/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4570 Modified Files: python-simplejson.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-simplejson.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-simplejson/devel/python-simplejson.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- python-simplejson.spec 5 Jun 2009 20:25:16 -0000 1.28 +++ python-simplejson.spec 26 Jul 2009 21:04:52 -0000 1.29 @@ -3,7 +3,7 @@ Name: python-simplejson Version: 2.0.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple, fast, extensible JSON encoder/decoder for Python Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Kyle VanderBeek - 2.0.9-2 - Remove ill-advised gcc BuildRequires From jkeating at fedoraproject.org Sun Jul 26 21:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:05:09 +0000 (UTC) Subject: rpms/python-simpletal/devel python-simpletal.spec,1.15,1.16 Message-ID: <20090726210509.8C8F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-simpletal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4759 Modified Files: python-simpletal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-simpletal.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-simpletal/devel/python-simpletal.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-simpletal.spec 26 Feb 2009 23:29:32 -0000 1.15 +++ python-simpletal.spec 26 Jul 2009 21:05:09 -0000 1.16 @@ -4,7 +4,7 @@ Name: python-simpletal Version: 4.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: An XML based template processor for TAL, TALES and METAL specifications. @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/SimpleTAL-%{version}-py*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 21:05:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 21:05:29 +0000 (UTC) Subject: rpms/python-simpy/devel python-simpy.spec,1.24,1.25 Message-ID: <20090726210529.2602411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-simpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4947 Modified Files: python-simpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-simpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-simpy/devel/python-simpy.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- python-simpy.spec 23 Apr 2009 11:22:44 -0000 1.24 +++ python-simpy.spec 26 Jul 2009 21:05:28 -0000 1.25 @@ -3,7 +3,7 @@ Name: python-simpy Version: 2.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python simulation framework Group: Development/Languages License: LGPLv2+ @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Sarantis Paskalis - 2.0.1-1 - Upgrade to 2.0.1 From bruno at fedoraproject.org Sun Jul 26 21:21:38 2009 From: bruno at fedoraproject.org (Bruno Wolff III) Date: Sun, 26 Jul 2009 21:21:38 +0000 (UTC) Subject: rpms/colossus/devel .cvsignore, 1.3, 1.4 colossus.spec, 1.3, 1.4 import.log, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090726212138.4A4DD11C00E5@cvs1.fedora.phx.redhat.com> Author: bruno Update of /cvs/pkgs/rpms/colossus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11060/devel Modified Files: .cvsignore colossus.spec import.log sources Log Message: New public test build Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 26 Jul 2009 06:45:11 -0000 1.3 +++ .cvsignore 26 Jul 2009 21:21:36 -0000 1.4 @@ -1 +1 @@ -colossus-20090725-4454.tar.gz +colossus-20090726-4462.tar.gz Index: colossus.spec =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/colossus.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- colossus.spec 26 Jul 2009 06:45:11 -0000 1.3 +++ colossus.spec 26 Jul 2009 21:21:36 -0000 1.4 @@ -1,8 +1,8 @@ Name: colossus -%define rev 4454 -%define revdate 20090725 +%define rev 4462 +%define revdate 20090726 Version: 0 -Release: 0.4.%{revdate}svn%{rev}%{?dist} +Release: 0.5.%{revdate}svn%{rev}%{?dist} Summary: Allows people to play Titan against each other or AIs Group: Amusements/Games @@ -178,7 +178,12 @@ touch --no-create %{_datadir}/pixmaps || %changelog -* Sun Jul 25 2009 Bruno Wolff III - 0-0.4.20090710svn4454 +* Sun Jul 26 2009 Bruno Wolff III - 0-0.5.20090726svn4462 +- Just when I thought it would be safe to rebase, a new public test build was released +- Details at http://colossus.sourceforge.net/public-testing/docs/RecentChangesDetails.html +- Rebase to 4462 + +* Sat Jul 25 2009 Bruno Wolff III - 0-0.4.20090725svn4454 - Fix for off by one roll, movement roll in master board header - Rebase to 4454 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/import.log,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- import.log 26 Jul 2009 06:45:11 -0000 1.2 +++ import.log 26 Jul 2009 21:21:36 -0000 1.3 @@ -1,2 +1,3 @@ colossus-0-0_2_20090710svn4432_fc11:HEAD:colossus-0-0.2.20090710svn4432.fc11.src.rpm:1247453817 colossus-0-0_4_20090725svn4454_fc11:HEAD:colossus-0-0.4.20090725svn4454.fc11.src.rpm:1248590656 +colossus-0-0_5_20090726svn4462_fc11:HEAD:colossus-0-0.5.20090726svn4462.fc11.src.rpm:1248643266 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/colossus/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 26 Jul 2009 06:45:11 -0000 1.3 +++ sources 26 Jul 2009 21:21:36 -0000 1.4 @@ -1 +1 @@ -db7f0f10b8c1b96b966bc55d9963366d colossus-20090725-4454.tar.gz +a382f017f1d9ec76d401ad40ff2d92f3 colossus-20090726-4462.tar.gz From dirjud at fedoraproject.org Sun Jul 26 21:35:03 2009 From: dirjud at fedoraproject.org (dirjud) Date: Sun, 26 Jul 2009 21:35:03 +0000 (UTC) Subject: rpms/verilator/devel import.log, NONE, 1.1 verilator-driver.patch, NONE, 1.1 verilator.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726213503.3AC9111C00CE@cvs1.fedora.phx.redhat.com> Author: dirjud Update of /cvs/pkgs/rpms/verilator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16796/devel Modified Files: .cvsignore sources Added Files: import.log verilator-driver.patch verilator.spec Log Message: initial import --- NEW FILE import.log --- verilator-3_712-1_fc10:HEAD:verilator-3.712-1.fc10.src.rpm:1248644054 verilator-driver.patch: V3Tristate.cpp | 61 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 48 insertions(+), 13 deletions(-) --- NEW FILE verilator-driver.patch --- diff --git a/src/V3Tristate.cpp b/src/V3Tristate.cpp index eab63c2..b5dca8b 100644 --- a/src/V3Tristate.cpp +++ b/src/V3Tristate.cpp @@ -344,14 +344,15 @@ private: } } if (!complete) { - if (found_one) { - UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); - UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); - // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. - // The other scenerio, and probably more likely, is that they are using a high-Z construct that - // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. - v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); - } else { +// if (found_one) { +// UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); +// UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); +// // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. +// // The other scenerio, and probably more likely, is that they are using a high-Z construct that +// // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. +// v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); +// } else { + if(found_one==0) { UINFO(9, " No tristates found on " << lhsp <erase(lhsp); @@ -377,6 +378,19 @@ private: // create a new var for this assignment. AstVar* enp = (AstVar*)refp->user1p(); + if(!enp) { + enp = new AstVar(lhsp->fileline(), + AstVarType::MODULETEMP, + lhsp->name()+"__en"+cvtToStr(m_unique), + (w>1) ? new AstRange(nodep->fileline(), w-1, 0) : (AstRange *) NULL); + V3Number ones(lhsp->fileline(), wfill, 0); + ones.setAllBits1(); + nodep->addStmtp(enp); + nodep->addStmtp(new AstAssignW(lhsp->fileline(), + new AstVarRef(lhsp->fileline(), enp, true), + new AstConst(lhsp->fileline(), ones))); + + } AstVar* newlhsp = new AstVar(lhsp->fileline(), AstVarType::MODULETEMP, lhsp->name()+"__lhs"+cvtToStr(m_unique++), @@ -649,17 +663,38 @@ private: if (m_state == CONVERT_PINS) { if (nodep->modVarp()->user1p()) { // create the input pin - AstVarRef* refp = nodep->exprp()->castVarRef(); + AstPin *pinp; + AstVarRef *refp; + AstSel *selp = nodep->exprp()->castSel(); + if(selp) { + refp = selp->fromp()->castVarRef(); + } else { + refp = nodep->exprp()->castVarRef(); + } + if(!refp) { + v3error("Unsupported inout type"); + return; + } AstVar* inp; if (refp->varp()->user1p()) { // this is a tristate inp = (AstVar*) refp->varp()->user1p(); } else { inp = refp->varp(); } - AstPin* pinp = new AstPin(nodep->fileline(), - nodep->pinNum(), - nodep->name() + "__in", - new AstVarRef(nodep->fileline(), inp, false)); + AstNode* newnodep; + if(selp) { + newnodep = new AstSel(selp->fileline(), + new AstVarRef(nodep->fileline(), inp, false), + selp->lsbp()->cloneTree(false), + selp->widthp()->cloneTree(false)); + } else { + newnodep = new AstVarRef(nodep->fileline(), inp, false); + } + + pinp = new AstPin(nodep->fileline(), + nodep->pinNum(), + nodep->name() + "__in", + newnodep); m_cellp->addPinsp(pinp); // now link it --- NEW FILE verilator.spec --- Name: verilator Version: 3.712 Release: 1%{?dist} Summary: A fast simulator for synthesizable Verilog License: GPLv2 Group: Applications/Engineering URL: http://www.veripool.com/verilator.html Source0: http://www.veripool.org/verilator/ftp/%{name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl, flex, bison, perl-SystemPerl-devel Requires: perl-SystemPerl-devel >= 1.320 Patch0: verilator-driver.patch %description Verilator is the fastest free Verilog HDL simulator. It compiles synthesizable Verilog, plus some PSL, SystemVerilog and Synthesis assertions into C++ or SystemC code. It is designed for large projects where fast simulation performance is of primary concern, and is especially well suited to create executable models of CPUs for embedded software design teams. Authors: -------- Wilson Snyder Paul Wasson Duane Galbi %prep %setup -q %patch0 -p1 find . -name .gitignore -exec rm {} \; export VERILATOR_ROOT=%{_datadir} %{configure} --enable-envdef --prefix=%{_prefix} --mandir=%{_mandir} %{__sed} -i "s|CPPFLAGSNOWALL +=|CPPFLAGSNOWALL +=%{optflags}|" \ {src,test_c,test_regress,test_sc,test_sp,test_verilated}/Makefile_obj %build SYSTEMPERL_INCLUDE=%{_includedir}/perl-SystemPerl %{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} DESTDIR=$RPM_BUILD_ROOT install # move the examples out of the datadir so that we can later include # them in the doc dir %{__mv} %{buildroot}%{_datadir}/verilator/examples examples # remove not needed build directory and bin directory %{__rm} -rf %{buildroot}%{_datadir}/verilator/src %{__rm} -rf %{buildroot}%{_bindir}/verilator_includer %clean %{__rm} -rf %{buildroot} %files %defattr(-, root, root, -) %doc README %doc COPYING Changes TODO Artistic %doc verilator.pdf verilator.html %doc examples/ %attr(644,-,-) %{_mandir}/man1/verilator.1.gz %{_datadir}/verilator %{_bindir}/verilator %{_bindir}/verilator_bin %{_bindir}/verilator_bin_dbg %{_bindir}/verilator_profcfunc %changelog * Fri Jul 24 2009 Lane Brooks - 3.712-1 - Updated to verilator 3.712 * Fri Jun 26 2009 Lane Brooks - 3.711-1 - Updated to verilator 3.711 - Added Artistic file - Fixed permissions on man file * Tue Jun 9 2009 Lane Brooks - 3.710-1 - Updated to verilator 3.710 - Removed GCC 4.3 patch (no longer necessary) - Added SYSTEMPERL_INCLUDE to point to perl-SystemPerl rpm install location * Fri Jan 9 2009 Lane Brooks - 3.700-1 - Updated dependancy to newly packaged perl-SystemPerl and removed patch - Updated to verilator 3.700 - Added GCC 4.3 patch * Fri Jan 2 2009 Lane Brooks - 3.681-2 - Moved examples from data dir to doc dir * Thu Jan 1 2009 Lane Brooks - 3.681-1 - Updated verilator 3.681 - Removed gcc 4.3 patch as verilator 3.681 incorporates this fix - Removed shared object patch as it is possible to do this from Makefile using environment variables - Further updates to the spec file per Chitlesh's feedback * Sun Oct 26 2008 Lane Brooks - 3.680-3 - Improved spec file for Fedora integration based on initial feedback * Thu Oct 23 2008 Lane Brooks - 3.680-2 - Added shared object generation patch * Thu Oct 16 2008 Lane Brooks - 3.680-1 - Initial package based on SUSE packages from Guenter Dannoritzer Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/verilator/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:36:21 -0000 1.1 +++ .cvsignore 26 Jul 2009 21:35:02 -0000 1.2 @@ -0,0 +1 @@ +verilator-3.712.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/verilator/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:36:21 -0000 1.1 +++ sources 26 Jul 2009 21:35:02 -0000 1.2 @@ -0,0 +1 @@ +85839104f7f245879e7db41fc632fee0 verilator-3.712.tgz From dirjud at fedoraproject.org Sun Jul 26 21:39:18 2009 From: dirjud at fedoraproject.org (dirjud) Date: Sun, 26 Jul 2009 21:39:18 +0000 (UTC) Subject: rpms/verilator/EL-5 import.log, NONE, 1.1 verilator-driver.patch, NONE, 1.1 verilator.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726213918.3A77B11C0416@cvs1.fedora.phx.redhat.com> Author: dirjud Update of /cvs/pkgs/rpms/verilator/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18449/EL-5 Modified Files: .cvsignore sources Added Files: import.log verilator-driver.patch verilator.spec Log Message: initial import --- NEW FILE import.log --- verilator-3_712-1_fc10:EL-5:verilator-3.712-1.fc10.src.rpm:1248644296 verilator-driver.patch: V3Tristate.cpp | 61 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 48 insertions(+), 13 deletions(-) --- NEW FILE verilator-driver.patch --- diff --git a/src/V3Tristate.cpp b/src/V3Tristate.cpp index eab63c2..b5dca8b 100644 --- a/src/V3Tristate.cpp +++ b/src/V3Tristate.cpp @@ -344,14 +344,15 @@ private: } } if (!complete) { - if (found_one) { - UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); - UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); - // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. - // The other scenerio, and probably more likely, is that they are using a high-Z construct that - // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. - v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); - } else { +// if (found_one) { +// UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); +// UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); +// // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. +// // The other scenerio, and probably more likely, is that they are using a high-Z construct that +// // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. +// v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); +// } else { + if(found_one==0) { UINFO(9, " No tristates found on " << lhsp <erase(lhsp); @@ -377,6 +378,19 @@ private: // create a new var for this assignment. AstVar* enp = (AstVar*)refp->user1p(); + if(!enp) { + enp = new AstVar(lhsp->fileline(), + AstVarType::MODULETEMP, + lhsp->name()+"__en"+cvtToStr(m_unique), + (w>1) ? new AstRange(nodep->fileline(), w-1, 0) : (AstRange *) NULL); + V3Number ones(lhsp->fileline(), wfill, 0); + ones.setAllBits1(); + nodep->addStmtp(enp); + nodep->addStmtp(new AstAssignW(lhsp->fileline(), + new AstVarRef(lhsp->fileline(), enp, true), + new AstConst(lhsp->fileline(), ones))); + + } AstVar* newlhsp = new AstVar(lhsp->fileline(), AstVarType::MODULETEMP, lhsp->name()+"__lhs"+cvtToStr(m_unique++), @@ -649,17 +663,38 @@ private: if (m_state == CONVERT_PINS) { if (nodep->modVarp()->user1p()) { // create the input pin - AstVarRef* refp = nodep->exprp()->castVarRef(); + AstPin *pinp; + AstVarRef *refp; + AstSel *selp = nodep->exprp()->castSel(); + if(selp) { + refp = selp->fromp()->castVarRef(); + } else { + refp = nodep->exprp()->castVarRef(); + } + if(!refp) { + v3error("Unsupported inout type"); + return; + } AstVar* inp; if (refp->varp()->user1p()) { // this is a tristate inp = (AstVar*) refp->varp()->user1p(); } else { inp = refp->varp(); } - AstPin* pinp = new AstPin(nodep->fileline(), - nodep->pinNum(), - nodep->name() + "__in", - new AstVarRef(nodep->fileline(), inp, false)); + AstNode* newnodep; + if(selp) { + newnodep = new AstSel(selp->fileline(), + new AstVarRef(nodep->fileline(), inp, false), + selp->lsbp()->cloneTree(false), + selp->widthp()->cloneTree(false)); + } else { + newnodep = new AstVarRef(nodep->fileline(), inp, false); + } + + pinp = new AstPin(nodep->fileline(), + nodep->pinNum(), + nodep->name() + "__in", + newnodep); m_cellp->addPinsp(pinp); // now link it --- NEW FILE verilator.spec --- Name: verilator Version: 3.712 Release: 1%{?dist} Summary: A fast simulator for synthesizable Verilog License: GPLv2 Group: Applications/Engineering URL: http://www.veripool.com/verilator.html Source0: http://www.veripool.org/verilator/ftp/%{name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl, flex, bison, perl-SystemPerl-devel Requires: perl-SystemPerl-devel >= 1.320 Patch0: verilator-driver.patch %description Verilator is the fastest free Verilog HDL simulator. It compiles synthesizable Verilog, plus some PSL, SystemVerilog and Synthesis assertions into C++ or SystemC code. It is designed for large projects where fast simulation performance is of primary concern, and is especially well suited to create executable models of CPUs for embedded software design teams. Authors: -------- Wilson Snyder Paul Wasson Duane Galbi %prep %setup -q %patch0 -p1 find . -name .gitignore -exec rm {} \; export VERILATOR_ROOT=%{_datadir} %{configure} --enable-envdef --prefix=%{_prefix} --mandir=%{_mandir} %{__sed} -i "s|CPPFLAGSNOWALL +=|CPPFLAGSNOWALL +=%{optflags}|" \ {src,test_c,test_regress,test_sc,test_sp,test_verilated}/Makefile_obj %build SYSTEMPERL_INCLUDE=%{_includedir}/perl-SystemPerl %{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} DESTDIR=$RPM_BUILD_ROOT install # move the examples out of the datadir so that we can later include # them in the doc dir %{__mv} %{buildroot}%{_datadir}/verilator/examples examples # remove not needed build directory and bin directory %{__rm} -rf %{buildroot}%{_datadir}/verilator/src %{__rm} -rf %{buildroot}%{_bindir}/verilator_includer %clean %{__rm} -rf %{buildroot} %files %defattr(-, root, root, -) %doc README %doc COPYING Changes TODO Artistic %doc verilator.pdf verilator.html %doc examples/ %attr(644,-,-) %{_mandir}/man1/verilator.1.gz %{_datadir}/verilator %{_bindir}/verilator %{_bindir}/verilator_bin %{_bindir}/verilator_bin_dbg %{_bindir}/verilator_profcfunc %changelog * Fri Jul 24 2009 Lane Brooks - 3.712-1 - Updated to verilator 3.712 * Fri Jun 26 2009 Lane Brooks - 3.711-1 - Updated to verilator 3.711 - Added Artistic file - Fixed permissions on man file * Tue Jun 9 2009 Lane Brooks - 3.710-1 - Updated to verilator 3.710 - Removed GCC 4.3 patch (no longer necessary) - Added SYSTEMPERL_INCLUDE to point to perl-SystemPerl rpm install location * Fri Jan 9 2009 Lane Brooks - 3.700-1 - Updated dependancy to newly packaged perl-SystemPerl and removed patch - Updated to verilator 3.700 - Added GCC 4.3 patch * Fri Jan 2 2009 Lane Brooks - 3.681-2 - Moved examples from data dir to doc dir * Thu Jan 1 2009 Lane Brooks - 3.681-1 - Updated verilator 3.681 - Removed gcc 4.3 patch as verilator 3.681 incorporates this fix - Removed shared object patch as it is possible to do this from Makefile using environment variables - Further updates to the spec file per Chitlesh's feedback * Sun Oct 26 2008 Lane Brooks - 3.680-3 - Improved spec file for Fedora integration based on initial feedback * Thu Oct 23 2008 Lane Brooks - 3.680-2 - Added shared object generation patch * Thu Oct 16 2008 Lane Brooks - 3.680-1 - Initial package based on SUSE packages from Guenter Dannoritzer Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/verilator/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:36:21 -0000 1.1 +++ .cvsignore 26 Jul 2009 21:39:17 -0000 1.2 @@ -0,0 +1 @@ +verilator-3.712.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/verilator/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:36:21 -0000 1.1 +++ sources 26 Jul 2009 21:39:17 -0000 1.2 @@ -0,0 +1 @@ +85839104f7f245879e7db41fc632fee0 verilator-3.712.tgz From dirjud at fedoraproject.org Sun Jul 26 22:03:30 2009 From: dirjud at fedoraproject.org (dirjud) Date: Sun, 26 Jul 2009 22:03:30 +0000 (UTC) Subject: rpms/verilator/F-10 import.log, NONE, 1.1 verilator-driver.patch, NONE, 1.1 verilator.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726220330.6E55511C00CE@cvs1.fedora.phx.redhat.com> Author: dirjud Update of /cvs/pkgs/rpms/verilator/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26298/F-10 Modified Files: .cvsignore sources Added Files: import.log verilator-driver.patch verilator.spec Log Message: initial import --- NEW FILE import.log --- verilator-3_712-1_fc10:F-10:verilator-3.712-1.fc10.src.rpm:1248645715 verilator-driver.patch: V3Tristate.cpp | 61 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 48 insertions(+), 13 deletions(-) --- NEW FILE verilator-driver.patch --- diff --git a/src/V3Tristate.cpp b/src/V3Tristate.cpp index eab63c2..b5dca8b 100644 --- a/src/V3Tristate.cpp +++ b/src/V3Tristate.cpp @@ -344,14 +344,15 @@ private: } } if (!complete) { - if (found_one) { - UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); - UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); - // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. - // The other scenerio, and probably more likely, is that they are using a high-Z construct that - // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. - v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); - } else { +// if (found_one) { +// UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); +// UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); +// // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. +// // The other scenerio, and probably more likely, is that they are using a high-Z construct that +// // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. +// v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); +// } else { + if(found_one==0) { UINFO(9, " No tristates found on " << lhsp <erase(lhsp); @@ -377,6 +378,19 @@ private: // create a new var for this assignment. AstVar* enp = (AstVar*)refp->user1p(); + if(!enp) { + enp = new AstVar(lhsp->fileline(), + AstVarType::MODULETEMP, + lhsp->name()+"__en"+cvtToStr(m_unique), + (w>1) ? new AstRange(nodep->fileline(), w-1, 0) : (AstRange *) NULL); + V3Number ones(lhsp->fileline(), wfill, 0); + ones.setAllBits1(); + nodep->addStmtp(enp); + nodep->addStmtp(new AstAssignW(lhsp->fileline(), + new AstVarRef(lhsp->fileline(), enp, true), + new AstConst(lhsp->fileline(), ones))); + + } AstVar* newlhsp = new AstVar(lhsp->fileline(), AstVarType::MODULETEMP, lhsp->name()+"__lhs"+cvtToStr(m_unique++), @@ -649,17 +663,38 @@ private: if (m_state == CONVERT_PINS) { if (nodep->modVarp()->user1p()) { // create the input pin - AstVarRef* refp = nodep->exprp()->castVarRef(); + AstPin *pinp; + AstVarRef *refp; + AstSel *selp = nodep->exprp()->castSel(); + if(selp) { + refp = selp->fromp()->castVarRef(); + } else { + refp = nodep->exprp()->castVarRef(); + } + if(!refp) { + v3error("Unsupported inout type"); + return; + } AstVar* inp; if (refp->varp()->user1p()) { // this is a tristate inp = (AstVar*) refp->varp()->user1p(); } else { inp = refp->varp(); } - AstPin* pinp = new AstPin(nodep->fileline(), - nodep->pinNum(), - nodep->name() + "__in", - new AstVarRef(nodep->fileline(), inp, false)); + AstNode* newnodep; + if(selp) { + newnodep = new AstSel(selp->fileline(), + new AstVarRef(nodep->fileline(), inp, false), + selp->lsbp()->cloneTree(false), + selp->widthp()->cloneTree(false)); + } else { + newnodep = new AstVarRef(nodep->fileline(), inp, false); + } + + pinp = new AstPin(nodep->fileline(), + nodep->pinNum(), + nodep->name() + "__in", + newnodep); m_cellp->addPinsp(pinp); // now link it --- NEW FILE verilator.spec --- Name: verilator Version: 3.712 Release: 1%{?dist} Summary: A fast simulator for synthesizable Verilog License: GPLv2 Group: Applications/Engineering URL: http://www.veripool.com/verilator.html Source0: http://www.veripool.org/verilator/ftp/%{name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl, flex, bison, perl-SystemPerl-devel Requires: perl-SystemPerl-devel >= 1.320 Patch0: verilator-driver.patch %description Verilator is the fastest free Verilog HDL simulator. It compiles synthesizable Verilog, plus some PSL, SystemVerilog and Synthesis assertions into C++ or SystemC code. It is designed for large projects where fast simulation performance is of primary concern, and is especially well suited to create executable models of CPUs for embedded software design teams. Authors: -------- Wilson Snyder Paul Wasson Duane Galbi %prep %setup -q %patch0 -p1 find . -name .gitignore -exec rm {} \; export VERILATOR_ROOT=%{_datadir} %{configure} --enable-envdef --prefix=%{_prefix} --mandir=%{_mandir} %{__sed} -i "s|CPPFLAGSNOWALL +=|CPPFLAGSNOWALL +=%{optflags}|" \ {src,test_c,test_regress,test_sc,test_sp,test_verilated}/Makefile_obj %build SYSTEMPERL_INCLUDE=%{_includedir}/perl-SystemPerl %{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} DESTDIR=$RPM_BUILD_ROOT install # move the examples out of the datadir so that we can later include # them in the doc dir %{__mv} %{buildroot}%{_datadir}/verilator/examples examples # remove not needed build directory and bin directory %{__rm} -rf %{buildroot}%{_datadir}/verilator/src %{__rm} -rf %{buildroot}%{_bindir}/verilator_includer %clean %{__rm} -rf %{buildroot} %files %defattr(-, root, root, -) %doc README %doc COPYING Changes TODO Artistic %doc verilator.pdf verilator.html %doc examples/ %attr(644,-,-) %{_mandir}/man1/verilator.1.gz %{_datadir}/verilator %{_bindir}/verilator %{_bindir}/verilator_bin %{_bindir}/verilator_bin_dbg %{_bindir}/verilator_profcfunc %changelog * Fri Jul 24 2009 Lane Brooks - 3.712-1 - Updated to verilator 3.712 * Fri Jun 26 2009 Lane Brooks - 3.711-1 - Updated to verilator 3.711 - Added Artistic file - Fixed permissions on man file * Tue Jun 9 2009 Lane Brooks - 3.710-1 - Updated to verilator 3.710 - Removed GCC 4.3 patch (no longer necessary) - Added SYSTEMPERL_INCLUDE to point to perl-SystemPerl rpm install location * Fri Jan 9 2009 Lane Brooks - 3.700-1 - Updated dependancy to newly packaged perl-SystemPerl and removed patch - Updated to verilator 3.700 - Added GCC 4.3 patch * Fri Jan 2 2009 Lane Brooks - 3.681-2 - Moved examples from data dir to doc dir * Thu Jan 1 2009 Lane Brooks - 3.681-1 - Updated verilator 3.681 - Removed gcc 4.3 patch as verilator 3.681 incorporates this fix - Removed shared object patch as it is possible to do this from Makefile using environment variables - Further updates to the spec file per Chitlesh's feedback * Sun Oct 26 2008 Lane Brooks - 3.680-3 - Improved spec file for Fedora integration based on initial feedback * Thu Oct 23 2008 Lane Brooks - 3.680-2 - Added shared object generation patch * Thu Oct 16 2008 Lane Brooks - 3.680-1 - Initial package based on SUSE packages from Guenter Dannoritzer Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/verilator/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:36:21 -0000 1.1 +++ .cvsignore 26 Jul 2009 22:03:30 -0000 1.2 @@ -0,0 +1 @@ +verilator-3.712.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/verilator/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:36:21 -0000 1.1 +++ sources 26 Jul 2009 22:03:30 -0000 1.2 @@ -0,0 +1 @@ +85839104f7f245879e7db41fc632fee0 verilator-3.712.tgz From dirjud at fedoraproject.org Sun Jul 26 22:04:32 2009 From: dirjud at fedoraproject.org (dirjud) Date: Sun, 26 Jul 2009 22:04:32 +0000 (UTC) Subject: rpms/verilator/F-11 import.log, NONE, 1.1 verilator-driver.patch, NONE, 1.1 verilator.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090726220432.1F0E311C00CE@cvs1.fedora.phx.redhat.com> Author: dirjud Update of /cvs/pkgs/rpms/verilator/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27072/F-11 Modified Files: .cvsignore sources Added Files: import.log verilator-driver.patch verilator.spec Log Message: initial import --- NEW FILE import.log --- verilator-3_712-1_fc10:F-11:verilator-3.712-1.fc10.src.rpm:1248645845 verilator-driver.patch: V3Tristate.cpp | 61 ++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 48 insertions(+), 13 deletions(-) --- NEW FILE verilator-driver.patch --- diff --git a/src/V3Tristate.cpp b/src/V3Tristate.cpp index eab63c2..b5dca8b 100644 --- a/src/V3Tristate.cpp +++ b/src/V3Tristate.cpp @@ -344,14 +344,15 @@ private: } } if (!complete) { - if (found_one) { - UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); - UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); - // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. - // The other scenerio, and probably more likely, is that they are using a high-Z construct that - // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. - v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); - } else { +// if (found_one) { +// UINFO(9, " Problem mixing tristate and low-Z on " << lhsp << endl); +// UINFO(9, " Found " << found_one << " __en signals from of " << refs->size() << " possible drivers" << endl); +// // not sure what I should do here other than error that they are mixing low-Z and tristate drivers. +// // The other scenerio, and probably more likely, is that they are using a high-Z construct that +// // is not supported. Improving the high-Z detection logic will reduce the occurance of this failure. +// v3error("Mixing tristate and low-Z drivers. Perhaps you are using a high-Z construct not supported"); +// } else { + if(found_one==0) { UINFO(9, " No tristates found on " << lhsp <erase(lhsp); @@ -377,6 +378,19 @@ private: // create a new var for this assignment. AstVar* enp = (AstVar*)refp->user1p(); + if(!enp) { + enp = new AstVar(lhsp->fileline(), + AstVarType::MODULETEMP, + lhsp->name()+"__en"+cvtToStr(m_unique), + (w>1) ? new AstRange(nodep->fileline(), w-1, 0) : (AstRange *) NULL); + V3Number ones(lhsp->fileline(), wfill, 0); + ones.setAllBits1(); + nodep->addStmtp(enp); + nodep->addStmtp(new AstAssignW(lhsp->fileline(), + new AstVarRef(lhsp->fileline(), enp, true), + new AstConst(lhsp->fileline(), ones))); + + } AstVar* newlhsp = new AstVar(lhsp->fileline(), AstVarType::MODULETEMP, lhsp->name()+"__lhs"+cvtToStr(m_unique++), @@ -649,17 +663,38 @@ private: if (m_state == CONVERT_PINS) { if (nodep->modVarp()->user1p()) { // create the input pin - AstVarRef* refp = nodep->exprp()->castVarRef(); + AstPin *pinp; + AstVarRef *refp; + AstSel *selp = nodep->exprp()->castSel(); + if(selp) { + refp = selp->fromp()->castVarRef(); + } else { + refp = nodep->exprp()->castVarRef(); + } + if(!refp) { + v3error("Unsupported inout type"); + return; + } AstVar* inp; if (refp->varp()->user1p()) { // this is a tristate inp = (AstVar*) refp->varp()->user1p(); } else { inp = refp->varp(); } - AstPin* pinp = new AstPin(nodep->fileline(), - nodep->pinNum(), - nodep->name() + "__in", - new AstVarRef(nodep->fileline(), inp, false)); + AstNode* newnodep; + if(selp) { + newnodep = new AstSel(selp->fileline(), + new AstVarRef(nodep->fileline(), inp, false), + selp->lsbp()->cloneTree(false), + selp->widthp()->cloneTree(false)); + } else { + newnodep = new AstVarRef(nodep->fileline(), inp, false); + } + + pinp = new AstPin(nodep->fileline(), + nodep->pinNum(), + nodep->name() + "__in", + newnodep); m_cellp->addPinsp(pinp); // now link it --- NEW FILE verilator.spec --- Name: verilator Version: 3.712 Release: 1%{?dist} Summary: A fast simulator for synthesizable Verilog License: GPLv2 Group: Applications/Engineering URL: http://www.veripool.com/verilator.html Source0: http://www.veripool.org/verilator/ftp/%{name}-%{version}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl, flex, bison, perl-SystemPerl-devel Requires: perl-SystemPerl-devel >= 1.320 Patch0: verilator-driver.patch %description Verilator is the fastest free Verilog HDL simulator. It compiles synthesizable Verilog, plus some PSL, SystemVerilog and Synthesis assertions into C++ or SystemC code. It is designed for large projects where fast simulation performance is of primary concern, and is especially well suited to create executable models of CPUs for embedded software design teams. Authors: -------- Wilson Snyder Paul Wasson Duane Galbi %prep %setup -q %patch0 -p1 find . -name .gitignore -exec rm {} \; export VERILATOR_ROOT=%{_datadir} %{configure} --enable-envdef --prefix=%{_prefix} --mandir=%{_mandir} %{__sed} -i "s|CPPFLAGSNOWALL +=|CPPFLAGSNOWALL +=%{optflags}|" \ {src,test_c,test_regress,test_sc,test_sp,test_verilated}/Makefile_obj %build SYSTEMPERL_INCLUDE=%{_includedir}/perl-SystemPerl %{__make} %{?_smp_mflags} %install %{__rm} -rf %{buildroot} %{__make} DESTDIR=$RPM_BUILD_ROOT install # move the examples out of the datadir so that we can later include # them in the doc dir %{__mv} %{buildroot}%{_datadir}/verilator/examples examples # remove not needed build directory and bin directory %{__rm} -rf %{buildroot}%{_datadir}/verilator/src %{__rm} -rf %{buildroot}%{_bindir}/verilator_includer %clean %{__rm} -rf %{buildroot} %files %defattr(-, root, root, -) %doc README %doc COPYING Changes TODO Artistic %doc verilator.pdf verilator.html %doc examples/ %attr(644,-,-) %{_mandir}/man1/verilator.1.gz %{_datadir}/verilator %{_bindir}/verilator %{_bindir}/verilator_bin %{_bindir}/verilator_bin_dbg %{_bindir}/verilator_profcfunc %changelog * Fri Jul 24 2009 Lane Brooks - 3.712-1 - Updated to verilator 3.712 * Fri Jun 26 2009 Lane Brooks - 3.711-1 - Updated to verilator 3.711 - Added Artistic file - Fixed permissions on man file * Tue Jun 9 2009 Lane Brooks - 3.710-1 - Updated to verilator 3.710 - Removed GCC 4.3 patch (no longer necessary) - Added SYSTEMPERL_INCLUDE to point to perl-SystemPerl rpm install location * Fri Jan 9 2009 Lane Brooks - 3.700-1 - Updated dependancy to newly packaged perl-SystemPerl and removed patch - Updated to verilator 3.700 - Added GCC 4.3 patch * Fri Jan 2 2009 Lane Brooks - 3.681-2 - Moved examples from data dir to doc dir * Thu Jan 1 2009 Lane Brooks - 3.681-1 - Updated verilator 3.681 - Removed gcc 4.3 patch as verilator 3.681 incorporates this fix - Removed shared object patch as it is possible to do this from Makefile using environment variables - Further updates to the spec file per Chitlesh's feedback * Sun Oct 26 2008 Lane Brooks - 3.680-3 - Improved spec file for Fedora integration based on initial feedback * Thu Oct 23 2008 Lane Brooks - 3.680-2 - Added shared object generation patch * Thu Oct 16 2008 Lane Brooks - 3.680-1 - Initial package based on SUSE packages from Guenter Dannoritzer Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/verilator/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:36:21 -0000 1.1 +++ .cvsignore 26 Jul 2009 22:04:31 -0000 1.2 @@ -0,0 +1 @@ +verilator-3.712.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/verilator/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:36:21 -0000 1.1 +++ sources 26 Jul 2009 22:04:31 -0000 1.2 @@ -0,0 +1 @@ +85839104f7f245879e7db41fc632fee0 verilator-3.712.tgz From krh at fedoraproject.org Sun Jul 26 22:11:12 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Sun, 26 Jul 2009 22:11:12 +0000 (UTC) Subject: rpms/kernel/devel drm-page-flip.patch, 1.1, 1.2 kernel.spec, 1.1656, 1.1657 Message-ID: <20090726221112.31D9211C048A@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29596 Modified Files: drm-page-flip.patch kernel.spec Log Message: * Fri Jul 24 2009 Kristian H?gsberg - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. - Really add patch. - Fix patch to not break nouveau. drm-page-flip.patch: b/drivers/gpu/drm/drm_crtc.c | 169 +++++++++++++++++- b/drivers/gpu/drm/drm_crtc_helper.c | 12 + b/drivers/gpu/drm/drm_drv.c | 1 b/drivers/gpu/drm/drm_fops.c | 68 +++++++ b/drivers/gpu/drm/drm_irq.c | 43 ++++ b/drivers/gpu/drm/i915/i915_drv.c | 1 b/drivers/gpu/drm/i915/intel_display.c | 24 +- b/drivers/gpu/drm/radeon/atombios_crtc.c | 1 b/drivers/gpu/drm/radeon/radeon_display.c | 3 b/include/drm/drm.h | 25 ++ b/include/drm/drmP.h | 32 +++ b/include/drm/drm_crtc.h | 27 ++ b/include/drm/drm_crtc_helper.h | 4 b/include/drm/drm_mode.h | 17 + linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv04_crtc.c | 2 linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv50_crtc.c | 2 16 files changed, 415 insertions(+), 16 deletions(-) Index: drm-page-flip.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-page-flip.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- drm-page-flip.patch 24 Jul 2009 23:43:14 -0000 1.1 +++ drm-page-flip.patch 26 Jul 2009 22:11:09 -0000 1.2 @@ -877,3 +877,27 @@ index ae304cc..464b779 100644 -- 1.6.3.3 +diff -up linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv04_crtc.c~ linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv04_crtc.c +--- linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv04_crtc.c~ 2009-07-24 19:38:36.000000000 -0400 ++++ linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv04_crtc.c 2009-07-26 18:06:06.000000000 -0400 +@@ -1014,7 +1014,7 @@ nv04_crtc_create(struct drm_device *dev, + nv_crtc->mode_set.connectors = (struct drm_connector **)(nv_crtc + 1); + nv_crtc->mode_set.num_connectors = 0; + +- drm_crtc_init(dev, &nv_crtc->base, &nv04_crtc_funcs); ++ drm_crtc_init(dev, &nv_crtc->base, crtc_num, &nv04_crtc_funcs); + drm_crtc_helper_add(&nv_crtc->base, &nv04_crtc_helper_funcs); + drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256); + +diff -up linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv50_crtc.c~ linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv50_crtc.c +--- linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv50_crtc.c~ 2009-07-24 19:38:36.000000000 -0400 ++++ linux-2.6.30.i686/drivers/gpu/drm/nouveau/nv50_crtc.c 2009-07-26 18:06:23.000000000 -0400 +@@ -796,7 +796,7 @@ nv50_crtc_create(struct drm_device *dev, + crtc->mode_set.connectors = (struct drm_connector **)(crtc + 1); + crtc->mode_set.num_connectors = 0; + +- drm_crtc_init(dev, &crtc->base, &nv50_crtc_funcs); ++ drm_crtc_init(dev, &crtc->base, index, &nv50_crtc_funcs); + drm_crtc_helper_add(&crtc->base, &nv50_crtc_helper_funcs); + drm_mode_crtc_set_gamma_size(&crtc->base, 256); + Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1656 retrieving revision 1.1657 diff -u -p -r1.1656 -r1.1657 --- kernel.spec 24 Jul 2009 23:49:46 -0000 1.1656 +++ kernel.spec 26 Jul 2009 22:11:10 -0000 1.1657 @@ -1896,6 +1896,7 @@ fi - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. - Really add patch. +- Fix patch to not break nouveau. * Fri Jul 24 2009 Chuck Ebbert - Enable CONFIG_DEBUG_KOBJECT in debug kernels. (#513606) From pbrobinson at fedoraproject.org Sun Jul 26 22:52:38 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Sun, 26 Jul 2009 22:52:38 +0000 (UTC) Subject: rpms/nbtk/devel .cvsignore, 1.3, 1.4 nbtk.spec, 1.11, 1.12 sources, 1.3, 1.4 Message-ID: <20090726225238.D428911C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16600 Modified Files: .cvsignore nbtk.spec sources Log Message: - Add the new source file Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 9 Jul 2009 16:50:37 -0000 1.3 +++ .cvsignore 26 Jul 2009 22:52:37 -0000 1.4 @@ -1 +1 @@ -nbtk-0.14.5.tar.bz2 +nbtk-0.16.3.tar.bz2 Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- nbtk.spec 25 Jul 2009 15:49:36 -0000 1.11 +++ nbtk.spec 26 Jul 2009 22:52:37 -0000 1.12 @@ -1,6 +1,6 @@ Name: nbtk Version: 0.16.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog +* Sun Jul 26 2009 Peter Robinson 0.16.3-3 +- Add the new source file + * Sat Jul 25 2009 Fedora Release Engineering - 0.16.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 9 Jul 2009 16:50:37 -0000 1.3 +++ sources 26 Jul 2009 22:52:37 -0000 1.4 @@ -1 +1 @@ -37c6d862f418f34b6627ec315f43b95f nbtk-0.14.5.tar.bz2 +8d9c48381f99f80b488fab5dcdc30b9a nbtk-0.16.3.tar.bz2 From jkeating at fedoraproject.org Sun Jul 26 23:07:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:07:26 +0000 (UTC) Subject: rpms/python-slip/devel python-slip.spec,1.15,1.16 Message-ID: <20090726230726.8758211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-slip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22224 Modified Files: python-slip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-slip.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-slip/devel/python-slip.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-slip.spec 26 Feb 2009 23:31:24 -0000 1.15 +++ python-slip.spec 26 Jul 2009 23:07:25 -0000 1.16 @@ -4,7 +4,7 @@ Name: python-slip Version: 0.1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Miscellaneous convenience, extension and workaround code for Python Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf %buildroot %{python_sitelib}/slip.gtk-%{version}-py%{python_version}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:07:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:07:45 +0000 (UTC) Subject: rpms/python-smbpasswd/devel python-smbpasswd.spec,1.9,1.10 Message-ID: <20090726230745.B147711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-smbpasswd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22456 Modified Files: python-smbpasswd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-smbpasswd.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-smbpasswd/devel/python-smbpasswd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-smbpasswd.spec 26 Feb 2009 23:32:15 -0000 1.9 +++ python-smbpasswd.spec 26 Jul 2009 23:07:45 -0000 1.10 @@ -4,7 +4,7 @@ Name: python-smbpasswd Version: 1.0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Python SMB Password Hash Generator Module Group: Development/Languages @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:08:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:08:03 +0000 (UTC) Subject: rpms/python-sphinx/devel python-sphinx.spec,1.12,1.13 Message-ID: <20090726230803.2922B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sphinx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22687 Modified Files: python-sphinx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sphinx.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sphinx/devel/python-sphinx.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-sphinx.spec 5 Jun 2009 15:56:25 -0000 1.12 +++ python-sphinx.spec 26 Jul 2009 23:08:02 -0000 1.13 @@ -5,7 +5,7 @@ Name: python-sphinx Version: 0.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python documentation generator Group: Development/Tools @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Luke Macken - 0.6.1-2 - Add a patch to use our own setuptools package From jkeating at fedoraproject.org Sun Jul 26 23:08:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:08:25 +0000 (UTC) Subject: rpms/python-sqlalchemy/devel python-sqlalchemy.spec,1.43,1.44 Message-ID: <20090726230825.84FE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sqlalchemy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22927 Modified Files: python-sqlalchemy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sqlalchemy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sqlalchemy/devel/python-sqlalchemy.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- python-sqlalchemy.spec 12 Jun 2009 13:59:50 -0000 1.43 +++ python-sqlalchemy.spec 26 Jul 2009 23:08:25 -0000 1.44 @@ -6,7 +6,7 @@ Name: python-sqlalchemy Version: 0.5.4 -Release: 1.%{?patchtag}%{?dist} +Release: 2.%{?patchtag}%{?dist} Summary: Modular and flexible ORM library for python Group: Development/Libraries @@ -56,6 +56,9 @@ python test/alltests.py %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.4-2.p2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Toshio Kuratomi - 0.5.4-1.p2 - Upstream bugfix release 0.5.4p2. From jkeating at fedoraproject.org Sun Jul 26 23:08:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:08:42 +0000 (UTC) Subject: rpms/python-sqlite2/devel python-sqlite2.spec,1.22,1.23 Message-ID: <20090726230842.BDBCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sqlite2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23127 Modified Files: python-sqlite2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sqlite2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sqlite2/devel/python-sqlite2.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-sqlite2.spec 27 Apr 2009 19:20:42 -0000 1.22 +++ python-sqlite2.spec 26 Jul 2009 23:08:42 -0000 1.23 @@ -2,7 +2,7 @@ Name: python-sqlite2 Version: 2.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: DB-API 2.0 interface for SQLite 3.x @@ -96,6 +96,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:2.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Xavier Lamien - 1:2.3.5-1 - Update release. From jkeating at fedoraproject.org Sun Jul 26 23:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:09:01 +0000 (UTC) Subject: rpms/python-sqlobject/devel python-sqlobject.spec,1.22,1.23 Message-ID: <20090726230901.40CA311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sqlobject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23310 Modified Files: python-sqlobject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sqlobject.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sqlobject/devel/python-sqlobject.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-sqlobject.spec 26 Feb 2009 23:35:51 -0000 1.22 +++ python-sqlobject.spec 26 Jul 2009 23:09:01 -0000 1.23 @@ -2,7 +2,7 @@ Name: python-sqlobject Version: 0.10.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SQLObject -Object-Relational Manager, aka database wrapper Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:09:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:09:21 +0000 (UTC) Subject: rpms/python-sqlparse/devel python-sqlparse.spec,1.2,1.3 Message-ID: <20090726230921.AB1EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sqlparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23529 Modified Files: python-sqlparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sqlparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sqlparse/devel/python-sqlparse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-sqlparse.spec 10 Jun 2009 21:44:47 -0000 1.2 +++ python-sqlparse.spec 26 Jul 2009 23:09:21 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-sqlparse Version: 0.1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Non-validating SQL parser for Python Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 David Malcolm - 0.1.1-4 - bump release to enable build From jkeating at fedoraproject.org Sun Jul 26 23:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:09:36 +0000 (UTC) Subject: rpms/python-stomper/devel python-stomper.spec,1.1,1.2 Message-ID: <20090726230936.BEEFF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-stomper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23711 Modified Files: python-stomper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-stomper.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-stomper/devel/python-stomper.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-stomper.spec 11 Apr 2009 18:44:37 -0000 1.1 +++ python-stomper.spec 26 Jul 2009 23:09:36 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-stomper Version: 0.2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A python client implementation of the STOMP protocol Group: Development/Languages @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Silas Sewell - 0.2.2-7 - Remove Python version dependency From jkeating at fedoraproject.org Sun Jul 26 23:09:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:09:57 +0000 (UTC) Subject: rpms/python-storm/devel python-storm.spec,1.6,1.7 Message-ID: <20090726230957.396D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-storm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23880 Modified Files: python-storm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-storm.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-storm/devel/python-storm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-storm.spec 26 Feb 2009 23:36:40 -0000 1.6 +++ python-storm.spec 26 Jul 2009 23:09:56 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-storm Version: 0.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An object-relational mapper (ORM) for Python Group: Development/Languages @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/storm/databases/postgres.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:10:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:10:44 +0000 (UTC) Subject: rpms/python-suds/devel python-suds.spec,1.11,1.12 Message-ID: <20090726231044.2C5BA11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-suds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24200 Modified Files: python-suds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-suds.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-suds/devel/python-suds.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-suds.spec 24 Jun 2009 17:49:56 -0000 1.11 +++ python-suds.spec 26 Jul 2009 23:10:43 -0000 1.12 @@ -3,7 +3,7 @@ Summary: A python SOAP client Name: python-suds Version: 0.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Source0: https://fedorahosted.org/releases/s/u/%{name}/%{name}-%{version}.tar.gz License: LGPLv3+ Group: Development/Libraries @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %doc README LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 1 2009 jortel - 0.3.6-1 - Change hard coded /tmp/suds to tempfile.gettempdir() and create suds/ on demand. - Fix return type for Any.get_attribute(). From jkeating at fedoraproject.org Sun Jul 26 23:11:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:11:39 +0000 (UTC) Subject: rpms/python-sybase/devel python-sybase.spec,1.1,1.2 Message-ID: <20090726231139.254A611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sybase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24640 Modified Files: python-sybase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-sybase.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sybase/devel/python-sybase.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-sybase.spec 8 Jul 2009 19:25:04 -0000 1.1 +++ python-sybase.spec 26 Jul 2009 23:11:38 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-sybase Version: 0.39 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python interface to Sybase Group: Development/Languages @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.39-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Yanko Kaneti - 0.39-3 - Build with -DWANT_THREADS From jkeating at fedoraproject.org Sun Jul 26 23:11:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:11:54 +0000 (UTC) Subject: rpms/python-tag/devel python-tag.spec,1.11,1.12 Message-ID: <20090726231154.F267A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24827 Modified Files: python-tag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tag.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tag/devel/python-tag.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-tag.spec 26 Feb 2009 23:37:33 -0000 1.11 +++ python-tag.spec 26 Jul 2009 23:11:54 -0000 1.12 @@ -3,7 +3,7 @@ Summary: Python bindings for TagLib to read and write music files tags Name: python-tag Version: 0.94.5 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Languages URL: http://news.tiker.net/software/tagpy @@ -48,6 +48,9 @@ CFLAGS="%{optflags} `pkg-config --cflags %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.94.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.94.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:12:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:12:11 +0000 (UTC) Subject: rpms/python-telepathy/devel python-telepathy.spec,1.30,1.31 Message-ID: <20090726231211.5090311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-telepathy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24991 Modified Files: python-telepathy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-telepathy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-telepathy/devel/python-telepathy.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- python-telepathy.spec 15 Jun 2009 22:17:43 -0000 1.30 +++ python-telepathy.spec 26 Jul 2009 23:12:11 -0000 1.31 @@ -2,7 +2,7 @@ Name: python-telepathy Version: 0.15.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python libraries for Telepathy Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Brian Pepple - 0.15.8-1 - Update to 0.15.8. - Add NEWS file to docs. From jkeating at fedoraproject.org Sun Jul 26 23:12:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:12:29 +0000 (UTC) Subject: rpms/python-tempita/devel python-tempita.spec,1.8,1.9 Message-ID: <20090726231229.5F80011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tempita/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25185 Modified Files: python-tempita.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tempita.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tempita/devel/python-tempita.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- python-tempita.spec 20 Apr 2009 11:22:12 -0000 1.8 +++ python-tempita.spec 26 Jul 2009 23:12:29 -0000 1.9 @@ -2,7 +2,7 @@ Name: python-tempita Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A very small text templating language Group: Development/Languages @@ -47,6 +47,9 @@ nosetests %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Ricky Zhou - 0.4-1 - Upstream released a new version. From jkeating at fedoraproject.org Sun Jul 26 23:12:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:12:45 +0000 (UTC) Subject: rpms/python-testosterone/devel python-testosterone.spec,1.1,1.2 Message-ID: <20090726231245.4854411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-testosterone/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25340 Modified Files: python-testosterone.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-testosterone.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-testosterone/devel/python-testosterone.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-testosterone.spec 26 May 2009 23:09:19 -0000 1.1 +++ python-testosterone.spec 26 Jul 2009 23:12:45 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-testosterone Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Text-based UI for running Python unit tests Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/testosterone.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 David Malcolm - 0.4.1-1 - initial package From jkeating at fedoraproject.org Sun Jul 26 23:13:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:13:03 +0000 (UTC) Subject: rpms/python-text_table/devel python-text_table.spec,1.1,1.2 Message-ID: <20090726231303.A082711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-text_table/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25507 Modified Files: python-text_table.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-text_table.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-text_table/devel/python-text_table.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-text_table.spec 17 Mar 2009 15:35:25 -0000 1.1 +++ python-text_table.spec 26 Jul 2009 23:13:03 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-%{pkgname} Version: 0.02 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple Eyecandy ASCII Tables Group: Development/Languages License: GPL+ or Artistic @@ -38,6 +38,9 @@ the perl module Text::SimpleTable. %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 05 2009 Ray Van Dolson - 0.02-2 - Use python-devel in BuildRequires - Updated license and including license email from upstream per From jkeating at fedoraproject.org Sun Jul 26 23:13:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:13:22 +0000 (UTC) Subject: rpms/python-textile/devel python-textile.spec,1.5,1.6 Message-ID: <20090726231322.8606311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-textile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25699 Modified Files: python-textile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-textile.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-textile/devel/python-textile.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-textile.spec 11 Mar 2009 09:11:24 -0000 1.5 +++ python-textile.spec 26 Jul 2009 23:13:22 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 2.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Humane Web Text Generator Group: Development/Languages License: BSD @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 11 2009 Thomas Moschny - 2.1.3-1 - Upstream and upstream URLs changed. - Update to 2.1.3. From jkeating at fedoraproject.org Sun Jul 26 23:13:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:13:38 +0000 (UTC) Subject: rpms/python-tftpy/devel python-tftpy.spec,1.5,1.6 Message-ID: <20090726231338.78A6411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tftpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25862 Modified Files: python-tftpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tftpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tftpy/devel/python-tftpy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-tftpy.spec 15 Jul 2009 15:43:20 -0000 1.5 +++ python-tftpy.spec 26 Jul 2009 23:13:38 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-tftpy Version: 0.4.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Pure-Python library for TFTP Group: Development/Languages @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 John A. Khvatov - 0.4.6-4 - Delete unnecessary excludes *.pyc, *.pyo files in bindir From jkeating at fedoraproject.org Sun Jul 26 23:13:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:13:54 +0000 (UTC) Subject: rpms/python-tgcaptcha/devel python-tgcaptcha.spec,1.5,1.6 Message-ID: <20090726231354.D350111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tgcaptcha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26023 Modified Files: python-tgcaptcha.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tgcaptcha.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tgcaptcha/devel/python-tgcaptcha.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-tgcaptcha.spec 8 Apr 2009 15:20:43 -0000 1.5 +++ python-tgcaptcha.spec 26 Jul 2009 23:13:54 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-tgcaptcha Version: 0.11 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A TurboGears CAPTCHA widget for forms Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Felix Schwarz - 0.11-6 - Use system installed tuffy (patch by Toshio Kuratomi) From jkeating at fedoraproject.org Sun Jul 26 23:14:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:14:17 +0000 (UTC) Subject: rpms/python-tgexpandingformwidget/devel python-tgexpandingformwidget.spec, 1.3, 1.4 Message-ID: <20090726231417.0201D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tgexpandingformwidget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26259 Modified Files: python-tgexpandingformwidget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tgexpandingformwidget.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tgexpandingformwidget/devel/python-tgexpandingformwidget.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-tgexpandingformwidget.spec 26 Feb 2009 23:42:58 -0000 1.3 +++ python-tgexpandingformwidget.spec 26 Jul 2009 23:14:16 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-tgexpandingformwidget Version: 0.1.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A repeating form widget for TurboGears Group: Development/Languages @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:14:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:14:38 +0000 (UTC) Subject: rpms/python-tgext-crud/devel python-tgext-crud.spec,1.1,1.2 Message-ID: <20090726231438.8D6A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tgext-crud/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26469 Modified Files: python-tgext-crud.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tgext-crud.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tgext-crud/devel/python-tgext-crud.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-tgext-crud.spec 21 Jul 2009 21:26:05 -0000 1.1 +++ python-tgext-crud.spec 26 Jul 2009 23:14:38 -0000 1.2 @@ -3,7 +3,7 @@ Name: python-tgext-crud Version: 0.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Crud Controller Extension for TG2 Group: Development/Languages @@ -46,5 +46,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 0.2.4-1 - Initial package From jkeating at fedoraproject.org Sun Jul 26 23:14:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:14:56 +0000 (UTC) Subject: rpms/python-tgfastdata/devel python-tgfastdata.spec,1.6,1.7 Message-ID: <20090726231456.92CDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tgfastdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26640 Modified Files: python-tgfastdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tgfastdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tgfastdata/devel/python-tgfastdata.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-tgfastdata.spec 26 Feb 2009 23:43:50 -0000 1.6 +++ python-tgfastdata.spec 26 Jul 2009 23:14:56 -0000 1.7 @@ -5,7 +5,7 @@ Name: python-tgfastdata Version: 0.9a6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Automatic user interface generation for TurboGears Group: Development/Languages @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{python_sitelib}/TGFastData-%{version}-py%{pyver}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9a6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9a6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:15:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:15:16 +0000 (UTC) Subject: rpms/python-tidy/devel python-tidy.spec,1.5,1.6 Message-ID: <20090726231516.B489F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26848 Modified Files: python-tidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tidy/devel/python-tidy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-tidy.spec 26 Feb 2009 23:44:47 -0000 1.5 +++ python-tidy.spec 26 Jul 2009 23:15:16 -0000 1.6 @@ -5,7 +5,7 @@ Summary: Python wrapper for tidy, from the HTML tidy project Name: python-tidy Version: 0.2 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: Development/Languages URL: http://utidylib.berlios.de/ @@ -42,6 +42,9 @@ files through a Pythonic interface. %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:15:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:15:35 +0000 (UTC) Subject: rpms/python-toscawidgets/devel python-toscawidgets.spec,1.12,1.13 Message-ID: <20090726231535.4D7AF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-toscawidgets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27015 Modified Files: python-toscawidgets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-toscawidgets.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-toscawidgets/devel/python-toscawidgets.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-toscawidgets.spec 27 Jun 2009 22:25:42 -0000 1.12 +++ python-toscawidgets.spec 26 Jul 2009 23:15:35 -0000 1.13 @@ -5,7 +5,7 @@ Name: python-toscawidgets Version: 0.9.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Toolkit to help create widgets for WSGI web apps Group: Development/Languages License: MIT @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Luke Macken - 0.9.7.1-1 - 0.9.7.1 - s/define/global/ From jkeating at fedoraproject.org Sun Jul 26 23:15:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:15:52 +0000 (UTC) Subject: rpms/python-tpg/devel python-tpg.spec,1.14,1.15 Message-ID: <20090726231552.B703F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tpg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27209 Modified Files: python-tpg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tpg.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tpg/devel/python-tpg.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-tpg.spec 26 Feb 2009 23:46:33 -0000 1.14 +++ python-tpg.spec 26 Jul 2009 23:15:52 -0000 1.15 @@ -4,7 +4,7 @@ Name: python-tpg Version: 3.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Python "toy parser generator" Group: Development/Libraries @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/TPG-%{version}-py*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:16:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:16:10 +0000 (UTC) Subject: rpms/python-transaction/devel python-transaction.spec,1.4,1.5 Message-ID: <20090726231610.B0C9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-transaction/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27383 Modified Files: python-transaction.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-transaction.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-transaction/devel/python-transaction.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-transaction.spec 26 Feb 2009 23:47:30 -0000 1.4 +++ python-transaction.spec 26 Jul 2009 23:16:10 -0000 1.5 @@ -4,7 +4,7 @@ Name: python-transaction Version: 1.0 -Release: 0.4.%{alphaver}%{?dist} +Release: 0.5.%{alphaver}%{?dist} Summary: Transaction management for Python Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.5.a1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-0.4.a1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:16:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:16:29 +0000 (UTC) Subject: rpms/python-transitfeed/devel python-transitfeed.spec,1.2,1.3 Message-ID: <20090726231629.07B5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-transitfeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27549 Modified Files: python-transitfeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-transitfeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-transitfeed/devel/python-transitfeed.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-transitfeed.spec 26 Feb 2009 23:48:25 -0000 1.2 +++ python-transitfeed.spec 26 Jul 2009 23:16:28 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-transitfeed Version: 1.1.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Google Transit Feed Specification library and tools Group: Development/Languages @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Sun Jul 26 23:16:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Sun, 26 Jul 2009 23:16:45 +0000 (UTC) Subject: rpms/python-turbocheetah/devel python-turbocheetah.spec,1.10,1.11 Message-ID: <20090726231645.DC7E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-turbocheetah/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27758 Modified Files: python-turbocheetah.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-turbocheetah.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-turbocheetah/devel/python-turbocheetah.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-turbocheetah.spec 26 Feb 2009 23:49:18 -0000 1.10 +++ python-turbocheetah.spec 26 Jul 2009 23:16:45 -0000 1.11 @@ -5,7 +5,7 @@ Name: python-turbocheetah Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: TurboGears plugin to support use of Cheetah templates Group: Development/Languages @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pbrobinson at fedoraproject.org Mon Jul 27 00:51:53 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 27 Jul 2009 00:51:53 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.12,1.13 Message-ID: <20090727005153.C2D6811C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1921 Modified Files: nbtk.spec Log Message: - Spec file updates Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- nbtk.spec 26 Jul 2009 22:52:37 -0000 1.12 +++ nbtk.spec 27 Jul 2009 00:51:52 -0000 1.13 @@ -1,6 +1,6 @@ Name: nbtk Version: 0.16.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -45,7 +45,7 @@ Files for development with %{name}. %setup -q %build -./autoconf.sh +./autogen.sh %configure --enable-gtk-doc --disable-static make %{?_smp_mflags} @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/nbtk %changelog +* Mon Jul 27 2009 Peter Robinson 0.16.3-4 +- Spec file updates + * Sun Jul 26 2009 Peter Robinson 0.16.3-3 - Add the new source file From pbrobinson at fedoraproject.org Mon Jul 27 01:03:00 2009 From: pbrobinson at fedoraproject.org (Peter Robinson) Date: Mon, 27 Jul 2009 01:03:00 +0000 (UTC) Subject: rpms/nbtk/devel nbtk.spec,1.13,1.14 Message-ID: <20090727010300.5302111C00CE@cvs1.fedora.phx.redhat.com> Author: pbrobinson Update of /cvs/pkgs/rpms/nbtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7585 Modified Files: nbtk.spec Log Message: - Add missing files Index: nbtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/nbtk/devel/nbtk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- nbtk.spec 27 Jul 2009 00:51:52 -0000 1.13 +++ nbtk.spec 27 Jul 2009 01:02:59 -0000 1.14 @@ -1,6 +1,6 @@ Name: nbtk Version: 0.16.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A toolkit for moblin NetBooks Group: System Environment/Libraries @@ -66,6 +66,7 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) %doc COPYING.LIB +%{_bindir}/nbtk-create-image-cache %{_libdir}/libnbtk-*.so.* %{_datadir}/nbtk @@ -78,6 +79,9 @@ rm -rf %{buildroot} %changelog * Mon Jul 27 2009 Peter Robinson 0.16.3-4 +- Add new files + +* Mon Jul 27 2009 Peter Robinson 0.16.3-4 - Spec file updates * Sun Jul 26 2009 Peter Robinson 0.16.3-3 From jkeating at fedoraproject.org Mon Jul 27 01:18:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:18:33 +0000 (UTC) Subject: rpms/python-turboflot/devel python-turboflot.spec,1.9,1.10 Message-ID: <20090727011833.CD1BD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-turboflot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13534 Modified Files: python-turboflot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-turboflot.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-turboflot/devel/python-turboflot.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-turboflot.spec 26 Feb 2009 23:50:11 -0000 1.9 +++ python-turboflot.spec 27 Jul 2009 01:18:33 -0000 1.10 @@ -2,7 +2,7 @@ Name: python-turboflot Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A TurboGears widget for Flot, a jQuery plotting library Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:19:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:19:02 +0000 (UTC) Subject: rpms/python-turbojson/devel python-turbojson.spec,1.15,1.16 Message-ID: <20090727011902.E6B3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-turbojson/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13770 Modified Files: python-turbojson.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-turbojson.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-turbojson/devel/python-turbojson.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- python-turbojson.spec 4 Mar 2009 02:32:58 -0000 1.15 +++ python-turbojson.spec 27 Jul 2009 01:19:01 -0000 1.16 @@ -5,7 +5,7 @@ Name: python-turbojson Version: 1.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python template plugin that supports json Group: Development/Languages @@ -57,6 +57,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Toshio Kuratomi - 1.2.1-7 - And nose From jkeating at fedoraproject.org Mon Jul 27 01:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:19:31 +0000 (UTC) Subject: rpms/python-turbokid/devel python-turbokid.spec,1.12,1.13 Message-ID: <20090727011931.439C111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-turbokid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14065 Modified Files: python-turbokid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-turbokid.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-turbokid/devel/python-turbokid.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-turbokid.spec 26 Feb 2009 23:51:54 -0000 1.12 +++ python-turbokid.spec 27 Jul 2009 01:19:30 -0000 1.13 @@ -5,7 +5,7 @@ Name: python-turbokid Version: 1.0.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python template plugin that supports Kid templates Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:19:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:19:55 +0000 (UTC) Subject: rpms/python-tw-forms/devel python-tw-forms.spec,1.5,1.6 Message-ID: <20090727011955.2FCB811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-tw-forms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14319 Modified Files: python-tw-forms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-tw-forms.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-tw-forms/devel/python-tw-forms.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-tw-forms.spec 5 Jun 2009 17:05:33 -0000 1.5 +++ python-tw-forms.spec 27 Jul 2009 01:19:54 -0000 1.6 @@ -4,7 +4,7 @@ Name: python-tw-forms Version: 0.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Web Widgets for building and validating forms in ToscaWidgets Group: Development/Languages # The javascript for the calendar widget is licensed under LGPLv2.1+ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Luke Macken - 0.9.6-1 - Update to 0.9.6 From jkeating at fedoraproject.org Mon Jul 27 01:20:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:20:11 +0000 (UTC) Subject: rpms/python-twill/devel python-twill.spec,1.1,1.2 Message-ID: <20090727012011.82EFC11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twill/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14544 Modified Files: python-twill.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twill.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twill/devel/python-twill.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-twill.spec 14 Apr 2009 16:28:55 -0000 1.1 +++ python-twill.spec 27 Jul 2009 01:20:11 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Simple scripting language for Web browsing Name: python-twill Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Internet License: MIT URL: http://twill.idyll.org/ @@ -57,6 +57,9 @@ use forms, cookies, and most standard We %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Matthias Saou 0.9-2 - Add -b .noforks to the patch0 line. - Remove no longer needed --single-version-externally-managed option. From jkeating at fedoraproject.org Mon Jul 27 01:20:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:20:28 +0000 (UTC) Subject: rpms/python-twisted/devel python-twisted.spec,1.13,1.14 Message-ID: <20090727012028.B8D6511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14702 Modified Files: python-twisted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted/devel/python-twisted.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-twisted.spec 26 Feb 2009 23:53:38 -0000 1.13 +++ python-twisted.spec 27 Jul 2009 01:20:28 -0000 1.14 @@ -2,7 +2,7 @@ Name: %{python}-twisted Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Event-based framework for internet applications Group: Development/Libraries License: MIT @@ -43,6 +43,9 @@ install -p -m 0644 %{SOURCE0} README %doc README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:20:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:20:48 +0000 (UTC) Subject: rpms/python-twisted-conch/devel python-twisted-conch.spec, 1.10, 1.11 Message-ID: <20090727012048.9519311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-conch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14924 Modified Files: python-twisted-conch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-conch.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-conch/devel/python-twisted-conch.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-twisted-conch.spec 26 Feb 2009 23:54:30 -0000 1.10 +++ python-twisted-conch.spec 27 Jul 2009 01:20:48 -0000 1.11 @@ -3,7 +3,7 @@ Name: %{python}-twisted-conch Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SSH and SFTP protocol implementation together with clients and servers Group: Development/Libraries License: MIT @@ -88,6 +88,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_conch.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:21:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:21:21 +0000 (UTC) Subject: rpms/python-twisted-core/devel python-twisted-core.spec,1.13,1.14 Message-ID: <20090727012121.041D011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15115 Modified Files: python-twisted-core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-core/devel/python-twisted-core.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- python-twisted-core.spec 26 Feb 2009 23:55:26 -0000 1.13 +++ python-twisted-core.spec 27 Jul 2009 01:21:20 -0000 1.14 @@ -3,7 +3,7 @@ Name: %{python}-twisted-core Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Asynchronous networking framework written in Python Group: Development/Libraries License: MIT @@ -192,6 +192,9 @@ fi %{_datadir}/zsh/site-functions/_twisted_zsh_stub %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:21:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:21:52 +0000 (UTC) Subject: rpms/python-twisted-lore/devel python-twisted-lore.spec,1.9,1.10 Message-ID: <20090727012152.7C34711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-lore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15439 Modified Files: python-twisted-lore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-lore.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-lore/devel/python-twisted-lore.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-lore.spec 26 Feb 2009 23:56:18 -0000 1.9 +++ python-twisted-lore.spec 27 Jul 2009 01:21:51 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-lore Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Documentation generator with HTML and LaTeX support Group: Development/Libraries License: MIT @@ -74,6 +74,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_lore.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:22:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:22:16 +0000 (UTC) Subject: rpms/python-twisted-mail/devel python-twisted-mail.spec,1.10,1.11 Message-ID: <20090727012216.C8D6B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15671 Modified Files: python-twisted-mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-mail/devel/python-twisted-mail.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- python-twisted-mail.spec 26 Feb 2009 23:57:09 -0000 1.10 +++ python-twisted-mail.spec 27 Jul 2009 01:22:16 -0000 1.11 @@ -3,7 +3,7 @@ Name: %{python}-twisted-mail Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SMTP, IMAP and POP protocol implementation together with clients and servers Group: Development/Libraries License: MIT @@ -76,6 +76,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_mail.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:22:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:22:37 +0000 (UTC) Subject: rpms/python-twisted-names/devel python-twisted-names.spec,1.9,1.10 Message-ID: <20090727012237.1BDFB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-names/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15910 Modified Files: python-twisted-names.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-names.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-names/devel/python-twisted-names.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-names.spec 26 Feb 2009 23:58:01 -0000 1.9 +++ python-twisted-names.spec 27 Jul 2009 01:22:36 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-names Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Twisted DNS implementation Group: Development/Libraries License: MIT @@ -73,6 +73,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_names.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:23:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:23:00 +0000 (UTC) Subject: rpms/python-twisted-news/devel python-twisted-news.spec,1.9,1.10 Message-ID: <20090727012300.BEFDE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-news/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16157 Modified Files: python-twisted-news.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-news.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-news/devel/python-twisted-news.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-news.spec 26 Feb 2009 23:58:55 -0000 1.9 +++ python-twisted-news.spec 27 Jul 2009 01:23:00 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-news Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: NNTP protocol implementation with client and server Group: Development/Libraries License: MIT @@ -68,6 +68,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_news.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:23:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:23:19 +0000 (UTC) Subject: rpms/python-twisted-runner/devel python-twisted-runner.spec, 1.9, 1.10 Message-ID: <20090727012319.012EC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-runner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16355 Modified Files: python-twisted-runner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-runner.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-runner/devel/python-twisted-runner.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-runner.spec 26 Feb 2009 23:59:47 -0000 1.9 +++ python-twisted-runner.spec 27 Jul 2009 01:23:18 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-runner Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Twisted Runner process management library and inetd replacement Group: Development/Libraries License: MIT @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/twisted/runner/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:23:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:23:41 +0000 (UTC) Subject: rpms/python-twisted-web/devel python-twisted-web.spec,1.9,1.10 Message-ID: <20090727012342.014AD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-web/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16578 Modified Files: python-twisted-web.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-web.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-web/devel/python-twisted-web.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-web.spec 27 Feb 2009 00:00:38 -0000 1.9 +++ python-twisted-web.spec 27 Jul 2009 01:23:41 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-web Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Twisted web client and server, programmable in Python Group: Development/Libraries License: MIT @@ -68,6 +68,9 @@ fi %{python_sitearch}/twisted/web/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:23:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:23:58 +0000 (UTC) Subject: rpms/python-twisted-web2/devel python-twisted-web2.spec,1.2,1.3 Message-ID: <20090727012358.9BA5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-web2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16802 Modified Files: python-twisted-web2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-web2.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-web2/devel/python-twisted-web2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-twisted-web2.spec 27 Feb 2009 00:01:29 -0000 1.2 +++ python-twisted-web2.spec 27 Jul 2009 01:23:58 -0000 1.3 @@ -4,7 +4,7 @@ Summary: Experimental Twisted Web Server Framework Name: %{python}-twisted-web2 Version: 8.1.0 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT Group: Development/Libraries URL: http://twistedmatrix.com/trac/wiki/TwistedWeb2 @@ -68,6 +68,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:24:18 +0000 (UTC) Subject: rpms/python-twisted-words/devel python-twisted-words.spec,1.9,1.10 Message-ID: <20090727012418.C579C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twisted-words/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16982 Modified Files: python-twisted-words.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twisted-words.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twisted-words/devel/python-twisted-words.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twisted-words.spec 27 Feb 2009 00:02:20 -0000 1.9 +++ python-twisted-words.spec 27 Jul 2009 01:24:18 -0000 1.10 @@ -3,7 +3,7 @@ Name: %{python}-twisted-words Version: 8.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Twisted Instant Messaging implementations Group: Development/Libraries License: MIT @@ -80,6 +80,9 @@ fi %{python_sitearch}/twisted/plugins/twisted_words.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 8.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:24:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:24:35 +0000 (UTC) Subject: rpms/python-twitter/devel python-twitter.spec,1.5,1.6 Message-ID: <20090727012435.6F56E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twitter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17212 Modified Files: python-twitter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twitter.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twitter/devel/python-twitter.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-twitter.spec 6 Jul 2009 19:55:06 -0000 1.5 +++ python-twitter.spec 27 Jul 2009 01:24:35 -0000 1.6 @@ -3,7 +3,7 @@ Name: python-twitter Summary: A python wrapper around the Twitter API Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} License: ASL 2.0 Group: System Environment/Libraries Source0: http://python-twitter.googlecode.com/files/%{name}-%{version}.tar.gz @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/python_twitter-%{version}-py*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Tom "spot" Callaway - 0.6-2 - fix files so they do not have hardcoded !#/usr/bin/python2.4 From jkeating at fedoraproject.org Mon Jul 27 01:24:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:24:51 +0000 (UTC) Subject: rpms/python-twyt/devel python-twyt.spec,1.9,1.10 Message-ID: <20090727012451.5283911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-twyt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17363 Modified Files: python-twyt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-twyt.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-twyt/devel/python-twyt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-twyt.spec 16 Apr 2009 20:02:47 -0000 1.9 +++ python-twyt.spec 27 Jul 2009 01:24:51 -0000 1.10 @@ -3,7 +3,7 @@ Summary: An interface to Twitter API functions for Python Name: python-twyt Version: 0.9.2 -Release: 2%{?dist} +Release: 3%{?dist} Group: System Environment/Libraries License: BSD @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Adam Miller - 0.9.2-2 - Upstream released a patch to fix set default account bug From jkeating at fedoraproject.org Mon Jul 27 01:25:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:25:11 +0000 (UTC) Subject: rpms/python-unipath/devel python-unipath.spec,1.1,1.2 Message-ID: <20090727012511.7740711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-unipath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17536 Modified Files: python-unipath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-unipath.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-unipath/devel/python-unipath.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-unipath.spec 14 Apr 2009 19:45:13 -0000 1.1 +++ python-unipath.spec 27 Jul 2009 01:25:10 -0000 1.2 @@ -7,7 +7,7 @@ Summary: Alternative to Python modules os, os.path and shutil Name: python-unipath Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} License: Python Group: Development/Tools URL : http://pypi.python.org/pypi/Unipath/ @@ -72,6 +72,9 @@ done %{python_sitelib}/%{oname}-%{version}-py%{pyver}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Terje Rosten - 0.2.1-2 - Minor changes taken from review From jkeating at fedoraproject.org Mon Jul 27 01:25:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:25:27 +0000 (UTC) Subject: rpms/python-upoints/devel python-upoints.spec,1.2,1.3 Message-ID: <20090727012527.B140811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-upoints/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17743 Modified Files: python-upoints.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-upoints.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-upoints/devel/python-upoints.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-upoints.spec 29 Apr 2009 07:10:12 -0000 1.2 +++ python-upoints.spec 27 Jul 2009 01:25:27 -0000 1.3 @@ -2,7 +2,7 @@ Name: python-upoints Version: 0.11.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python modules for working with points on Earth Group: Applications/Engineering @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 28 2009 Fabian Affolter - 0.11.0-3 - Changed define to global From jkeating at fedoraproject.org Mon Jul 27 01:25:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:25:45 +0000 (UTC) Subject: rpms/python-urlgrabber/devel python-urlgrabber.spec,1.35,1.36 Message-ID: <20090727012545.D40B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-urlgrabber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17920 Modified Files: python-urlgrabber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-urlgrabber.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-urlgrabber/devel/python-urlgrabber.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- python-urlgrabber.spec 8 Apr 2009 14:37:30 -0000 1.35 +++ python-urlgrabber.spec 27 Jul 2009 01:25:45 -0000 1.36 @@ -3,7 +3,7 @@ Summary: A high-level cross-protocol url-grabber Name: python-urlgrabber Version: 3.0.0 -Release: 15%{?dist} +Release: 16%{?dist} Source0: urlgrabber-%{version}.tar.gz Patch0: urlgrabber-keepalive.patch Patch1: urlgrabber-string-type.patch @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/urlgrabber %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 James Antill 3.0.0-15 - Fix progress bars for serial consoles. - Make C-c behaviour a little nicer. From jkeating at fedoraproject.org Mon Jul 27 01:26:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:26:03 +0000 (UTC) Subject: rpms/python-urllib2_kerberos/devel python-urllib2_kerberos.spec, 1.1, 1.2 Message-ID: <20090727012603.0BDC711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-urllib2_kerberos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18115 Modified Files: python-urllib2_kerberos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-urllib2_kerberos.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-urllib2_kerberos/devel/python-urllib2_kerberos.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-urllib2_kerberos.spec 19 Jun 2009 07:16:08 -0000 1.1 +++ python-urllib2_kerberos.spec 27 Jul 2009 01:26:02 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-%{srcname} Version: 0.1.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Kerberos over HTTP Negotiate/SPNEGO support for urllib2 Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Mat?j Cepl - 0.1.6-3 - don't preserve attributes of the file you modified. From jkeating at fedoraproject.org Mon Jul 27 01:26:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:26:24 +0000 (UTC) Subject: rpms/python-virtinst/devel python-virtinst.spec,1.68,1.69 Message-ID: <20090727012624.AEBD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-virtinst/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18262 Modified Files: python-virtinst.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-virtinst.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-virtinst/devel/python-virtinst.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- python-virtinst.spec 6 May 2009 16:12:02 -0000 1.68 +++ python-virtinst.spec 27 Jul 2009 01:26:24 -0000 1.69 @@ -17,7 +17,7 @@ Summary: Python modules and utilities for installing virtual machines Name: python-%{appname} Version: 0.400.3 -Release: 8%{_extra_release} +Release: 9%{_extra_release} Source0: http://virt-manager.org/download/sources/%{appname}/%{appname}-%{version}.tar.gz Patch1: %{appname}-%{version}-fix-virtimage-scratch.patch Patch2: %{appname}-%{version}-hostdev-libvirt-calls.patch @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/virt-convert %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.400.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 06 2009 Cole Robinson - 0.400.3-8.fc12 - Fix PCI assignment (bz 499267) From jkeating at fedoraproject.org Mon Jul 27 01:26:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:26:47 +0000 (UTC) Subject: rpms/python-virtkey/devel python-virtkey.spec,1.3,1.4 Message-ID: <20090727012647.5A40011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-virtkey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18517 Modified Files: python-virtkey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-virtkey.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-virtkey/devel/python-virtkey.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-virtkey.spec 27 Feb 2009 00:06:53 -0000 1.3 +++ python-virtkey.spec 27 Jul 2009 01:26:46 -0000 1.4 @@ -3,7 +3,7 @@ Name: python-virtkey Version: 0.50 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python extension for emulating keypresses and getting current keyboard layout Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.50-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.50-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:27:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:27:28 +0000 (UTC) Subject: rpms/python-virtualenv/devel python-virtualenv.spec,1.9,1.10 Message-ID: <20090727012728.D97FB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-virtualenv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18906 Modified Files: python-virtualenv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-virtualenv.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-virtualenv/devel/python-virtualenv.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-virtualenv.spec 29 Apr 2009 01:04:54 -0000 1.9 +++ python-virtualenv.spec 27 Jul 2009 01:27:25 -0000 1.10 @@ -3,7 +3,7 @@ Name: python-virtualenv Version: 1.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to create isolated Python environments Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Steve 'Ashcrow' Milner - 1.3.3-1 - Updated for upstream release. From jkeating at fedoraproject.org Mon Jul 27 01:27:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:27:54 +0000 (UTC) Subject: rpms/python-vobject/devel python-vobject.spec,1.22,1.23 Message-ID: <20090727012754.2552711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-vobject/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19607 Modified Files: python-vobject.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-vobject.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-vobject/devel/python-vobject.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-vobject.spec 3 Apr 2009 12:25:19 -0000 1.22 +++ python-vobject.spec 27 Jul 2009 01:27:52 -0000 1.23 @@ -2,7 +2,7 @@ Name: python-vobject Version: 0.8.1c -Release: 1%{?dist} +Release: 2%{?dist} Summary: A python library for manipulating vCard and vCalendar files Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1c-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 James Bowes - 0.8.1c-1 - Update to 0.8.1c From jkeating at fedoraproject.org Mon Jul 27 01:28:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:28:18 +0000 (UTC) Subject: rpms/python-vorbis/devel python-vorbis.spec,1.11,1.12 Message-ID: <20090727012818.E2F5F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-vorbis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20098 Modified Files: python-vorbis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-vorbis.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-vorbis/devel/python-vorbis.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-vorbis.spec 27 Feb 2009 00:09:20 -0000 1.11 +++ python-vorbis.spec 27 Jul 2009 01:28:18 -0000 1.12 @@ -3,7 +3,7 @@ Summary: Python wrapper for the Ogg Vorbis audio libraries Name: python-vorbis Version: 1.5 -Release: 0.6.a +Release: 0.7.a License: LGPLv2 Group: Development/Languages URL: http://ekyo.nerim.net/software/pyogg/ @@ -50,6 +50,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-0.7.a +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5-0.6.a - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:28:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:28:46 +0000 (UTC) Subject: rpms/python-weberror/devel python-weberror.spec,1.3,1.4 Message-ID: <20090727012846.2873711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-weberror/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20399 Modified Files: python-weberror.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-weberror.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-weberror/devel/python-weberror.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-weberror.spec 14 Apr 2009 17:28:21 -0000 1.3 +++ python-weberror.spec 27 Jul 2009 01:28:46 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-weberror Version: 0.10.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Web Error handling and exception catching middleware Group: Development/Languages @@ -61,6 +61,9 @@ nosetests %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Ricky Zhou - 0.10.1-3 - Change define to global. - Remove unnecessary BuildRequires on python-devel. From jkeating at fedoraproject.org Mon Jul 27 01:29:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:29:03 +0000 (UTC) Subject: rpms/python-webflash/devel python-webflash.spec,1.1,1.2 Message-ID: <20090727012903.44DD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-webflash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20612 Modified Files: python-webflash.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-webflash.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-webflash/devel/python-webflash.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-webflash.spec 2 Jun 2009 02:19:13 -0000 1.1 +++ python-webflash.spec 27 Jul 2009 01:29:02 -0000 1.2 @@ -5,7 +5,7 @@ Name: python-webflash Version: 0.1 -Release: 0.1.%{alphaver}%{?dist} +Release: 0.2.%{alphaver}%{?dist} Summary: Portable flash messages for WSGI apps Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-0.2.a9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Luke Macken 0.1-0.1.a9 - Update to 0.1a9 - Add python-coverage to the BuildRequires From jkeating at fedoraproject.org Mon Jul 27 01:29:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:29:20 +0000 (UTC) Subject: rpms/python-webhelpers/devel python-webhelpers.spec,1.6,1.7 Message-ID: <20090727012920.725D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-webhelpers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20800 Modified Files: python-webhelpers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-webhelpers.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-webhelpers/devel/python-webhelpers.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-webhelpers.spec 27 Feb 2009 00:11:05 -0000 1.6 +++ python-webhelpers.spec 27 Jul 2009 01:29:20 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-webhelpers Version: 0.6.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Helper library for aiding the writing of web templates in Python Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:29:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:29:44 +0000 (UTC) Subject: rpms/python-webob/devel python-webob.spec,1.11,1.12 Message-ID: <20090727012944.3A21F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-webob/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20991 Modified Files: python-webob.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-webob.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-webob/devel/python-webob.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- python-webob.spec 14 Apr 2009 17:32:26 -0000 1.11 +++ python-webob.spec 27 Jul 2009 01:29:44 -0000 1.12 @@ -3,7 +3,7 @@ Name: python-webob Summary: WSGI request and response object Version: 0.9.6.1 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://pythonpaste.org/webob/ @@ -58,6 +58,9 @@ environment. %{python_sitelib}/WebOb*.egg-info/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Ricky Zhou - 0.9.6.1-2 - Change define to global. - Remove unnecessary BuildRequires on python-devel. From jkeating at fedoraproject.org Mon Jul 27 01:30:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:30:03 +0000 (UTC) Subject: rpms/python-webpy/devel python-webpy.spec,1.1,1.2 Message-ID: <20090727013003.EDBF111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-webpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21233 Modified Files: python-webpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-webpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-webpy/devel/python-webpy.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-webpy.spec 8 Jul 2009 16:48:56 -0000 1.1 +++ python-webpy.spec 27 Jul 2009 01:30:03 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-%{pkgname} Version: 0.32 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A simple web framework for Python Group: Development/Libraries @@ -62,6 +62,9 @@ purpose with absolutely no restrictions. %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.32-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Ray Van Dolson - 0.32-3 - Strip shebang from non-scripts - Update license information From jkeating at fedoraproject.org Mon Jul 27 01:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:30:26 +0000 (UTC) Subject: rpms/python-webtest/devel python-webtest.spec,1.6,1.7 Message-ID: <20090727013026.05A8811C04FC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-webtest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21499 Modified Files: python-webtest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-webtest.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-webtest/devel/python-webtest.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- python-webtest.spec 5 Jun 2009 17:12:48 -0000 1.6 +++ python-webtest.spec 27 Jul 2009 01:30:25 -0000 1.7 @@ -2,7 +2,7 @@ Name: python-webtest Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Helper to test WSGI applications Group: Development/Languages @@ -53,6 +53,9 @@ with any WSGI-compatible framework. %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Luke Macken - 1.2-1 - Update to 1.2 From jkeating at fedoraproject.org Mon Jul 27 01:30:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:30:51 +0000 (UTC) Subject: rpms/python-which/devel python-which.spec,1.5,1.6 Message-ID: <20090727013051.7CF5811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-which/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21727 Modified Files: python-which.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-which.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-which/devel/python-which.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-which.spec 27 Feb 2009 00:13:38 -0000 1.5 +++ python-which.spec 27 Jul 2009 01:30:51 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-which Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Small which replacement that can be used as a Python module Group: Development/Languages @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:31:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:31:08 +0000 (UTC) Subject: rpms/python-wifi/devel python-wifi.spec,1.1,1.2 Message-ID: <20090727013108.4087311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-wifi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21934 Modified Files: python-wifi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-wifi.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wifi/devel/python-wifi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-wifi.spec 23 Feb 2009 21:49:45 -0000 1.1 +++ python-wifi.spec 27 Jul 2009 01:31:07 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-wifi Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python binding for the wireless extensions Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 18 2009 Fabian Affolter - 0.3.1-2 - Changes acc. to bug #478300 From jkeating at fedoraproject.org Mon Jul 27 01:31:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:31:25 +0000 (UTC) Subject: rpms/python-wikimarkup/devel python-wikimarkup.spec,1.3,1.4 Message-ID: <20090727013125.E425E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-wikimarkup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22118 Modified Files: python-wikimarkup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-wikimarkup.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wikimarkup/devel/python-wikimarkup.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-wikimarkup.spec 27 Feb 2009 00:14:31 -0000 1.3 +++ python-wikimarkup.spec 27 Jul 2009 01:31:25 -0000 1.4 @@ -4,7 +4,7 @@ Name: python-wikimarkup Version: 1.01 -Release: 5.005svn%{?dist} +Release: 6.005svn%{?dist} Summary: Formats text to Mediawiki syntax Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.01-6.005svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.01-5.005svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:31:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:31:43 +0000 (UTC) Subject: rpms/python-wokkel/devel python-wokkel.spec,1.4,1.5 Message-ID: <20090727013143.175A311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-wokkel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22280 Modified Files: python-wokkel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-wokkel.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wokkel/devel/python-wokkel.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-wokkel.spec 10 Jul 2009 14:35:07 -0000 1.4 +++ python-wokkel.spec 27 Jul 2009 01:31:42 -0000 1.5 @@ -4,7 +4,7 @@ %define libname wokkel Name: python-%{libname} Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Enhancements to the Twisted XMPP protocol implementation Group: Development/Languages @@ -67,6 +67,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Ruben Kerkhof - 0.6.2-1 - Upstream released new version From jkeating at fedoraproject.org Mon Jul 27 01:31:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:31:59 +0000 (UTC) Subject: rpms/python-wsgiproxy/devel python-wsgiproxy.spec,1.4,1.5 Message-ID: <20090727013159.B309611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-wsgiproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22460 Modified Files: python-wsgiproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-wsgiproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wsgiproxy/devel/python-wsgiproxy.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-wsgiproxy.spec 14 Apr 2009 17:38:54 -0000 1.4 +++ python-wsgiproxy.spec 27 Jul 2009 01:31:59 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-wsgiproxy Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: HTTP proxying tools for WSGI apps Group: Development/Languages @@ -46,6 +46,9 @@ processes over HTTP. %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Ricky Zhou - 0.1-4 - Change define to global. - Remove old >= 8 conditional. From jkeating at fedoraproject.org Mon Jul 27 01:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:32:18 +0000 (UTC) Subject: rpms/python-wsgiref/devel python-wsgiref.spec,1.1,1.2 Message-ID: <20090727013218.A0FDC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-wsgiref/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22647 Modified Files: python-wsgiref.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-wsgiref.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-wsgiref/devel/python-wsgiref.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-wsgiref.spec 2 Jun 2009 02:12:21 -0000 1.1 +++ python-wsgiref.spec 27 Jul 2009 01:32:18 -0000 1.2 @@ -2,7 +2,7 @@ Name: python-wsgiref Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: WSGI (PEP 333) Reference Library Group: Development/Languages @@ -44,6 +44,9 @@ This is a standalone release of the wsgi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Luke Macken - 0.1.2-3 - Update the license tag to 'Python or ZPLv2.1' From jkeating at fedoraproject.org Mon Jul 27 01:32:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:32:34 +0000 (UTC) Subject: rpms/python-xkit/devel python-xkit.spec,1.1,1.2 Message-ID: <20090727013234.81C7611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-xkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22846 Modified Files: python-xkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-xkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-xkit/devel/python-xkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-xkit.spec 13 Apr 2009 06:48:08 -0000 1.1 +++ python-xkit.spec 27 Jul 2009 01:32:34 -0000 1.2 @@ -4,7 +4,7 @@ Summary: A simple, transparent and easy to extend xorg parser Name: python-xkit Version: 0.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Source0: http://code.launchpad.net/xorgparser/trunk/0.4.2/+download/%{upstreamname}-%{version}.tar.gz License: LGPLv2 Group: Development/Libraries @@ -37,6 +37,9 @@ rm -rf %{buildroot} %{python_sitelib}/xkit-0.0.0-py2.5.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Rahul Sundaram - 0.4.2-2 - Fix review issues From jkeating at fedoraproject.org Mon Jul 27 01:32:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:32:52 +0000 (UTC) Subject: rpms/python-xlib/devel python-xlib.spec,1.5,1.6 Message-ID: <20090727013252.C8A0B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-xlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23057 Modified Files: python-xlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-xlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-xlib/devel/python-xlib.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-xlib.spec 27 Feb 2009 00:17:14 -0000 1.5 +++ python-xlib.spec 27 Jul 2009 01:32:52 -0000 1.6 @@ -3,7 +3,7 @@ Name: python-xlib Version: 0.14 -Release: 4%{?dist} +Release: 5%{?dist} Summary: X client library for Python Group: Development/Languages @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:33:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:33:11 +0000 (UTC) Subject: rpms/python-xlrd/devel python-xlrd.spec,1.5,1.6 Message-ID: <20090727013311.B79A111C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-xlrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23238 Modified Files: python-xlrd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-xlrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-xlrd/devel/python-xlrd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- python-xlrd.spec 27 Feb 2009 00:18:09 -0000 1.5 +++ python-xlrd.spec 27 Jul 2009 01:33:11 -0000 1.6 @@ -2,7 +2,7 @@ Name: python-xlrd Version: 0.6.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Library to extract data from Microsoft Excel (tm) spreadsheet files Group: Development/Languages @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:33:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:33:33 +0000 (UTC) Subject: rpms/python-xmltramp/devel python-xmltramp.spec,1.3,1.4 Message-ID: <20090727013333.C47D311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-xmltramp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23455 Modified Files: python-xmltramp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-xmltramp.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-xmltramp/devel/python-xmltramp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-xmltramp.spec 27 Feb 2009 00:19:03 -0000 1.3 +++ python-xmltramp.spec 27 Jul 2009 01:33:33 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-xmltramp Version: 2.17 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Pythonic API for XML Group: Development/Languages @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.17-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.17-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:33:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:33:49 +0000 (UTC) Subject: rpms/python-xmpp/devel python-xmpp.spec,1.12,1.13 Message-ID: <20090727013349.8F70E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-xmpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23616 Modified Files: python-xmpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-xmpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-xmpp/devel/python-xmpp.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- python-xmpp.spec 21 Apr 2009 09:25:27 -0000 1.12 +++ python-xmpp.spec 27 Jul 2009 01:33:49 -0000 1.13 @@ -2,7 +2,7 @@ Name: python-xmpp Version: 0.5.0 -Release: 0.1.rc1%{?dist} +Release: 0.2.rc1%{?dist} Summary: Python library for easy scripting with Jabber Group: Development/Languages @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-0.2.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Peter Lemenkov - 0.5.0-0.1.rc1 - Ver. 0.5.0rc1 - Dropped patches From jkeating at fedoraproject.org Mon Jul 27 01:34:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:34:03 +0000 (UTC) Subject: rpms/python-yenc/devel python-yenc.spec,1.3,1.4 Message-ID: <20090727013403.F1B0811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-yenc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23803 Modified Files: python-yenc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-yenc.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-yenc/devel/python-yenc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-yenc.spec 27 Feb 2009 00:20:52 -0000 1.3 +++ python-yenc.spec 27 Jul 2009 01:34:03 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-yenc Version: 0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: yEnc Module for Python Group: Development/Languages License: GPLv2+ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:34:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:34:29 +0000 (UTC) Subject: rpms/python-zope-filesystem/devel python-zope-filesystem.spec, 1.2, 1.3 Message-ID: <20090727013429.2462211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-zope-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24137 Modified Files: python-zope-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-zope-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-filesystem/devel/python-zope-filesystem.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-zope-filesystem.spec 27 Feb 2009 00:21:45 -0000 1.2 +++ python-zope-filesystem.spec 27 Jul 2009 01:34:28 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-zope-filesystem Version: 1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python-Zope Libraries Base Filesystem Group: Development/Languages License: ZPLv2.1 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:34:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:34:51 +0000 (UTC) Subject: rpms/python-zope-interface/devel python-zope-interface.spec, 1.14, 1.15 Message-ID: <20090727013451.5386411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-zope-interface/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24346 Modified Files: python-zope-interface.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-zope-interface.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-interface/devel/python-zope-interface.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- python-zope-interface.spec 5 Jul 2009 11:26:00 -0000 1.14 +++ python-zope-interface.spec 27 Jul 2009 01:34:50 -0000 1.15 @@ -2,7 +2,7 @@ Name: python-zope-interface Version: 3.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Zope 3 Interface Infrastructure Group: Development/Libraries License: ZPLv2.1 @@ -58,6 +58,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %{python_sitearch}/zope.interface* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Felix Schwarz 3.5.2-1 - update to 3.5.2 From jkeating at fedoraproject.org Mon Jul 27 01:35:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:35:13 +0000 (UTC) Subject: rpms/python-zope-sqlalchemy/devel python-zope-sqlalchemy.spec, 1.4, 1.5 Message-ID: <20090727013513.20BBB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-zope-sqlalchemy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24567 Modified Files: python-zope-sqlalchemy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-zope-sqlalchemy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-sqlalchemy/devel/python-zope-sqlalchemy.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-zope-sqlalchemy.spec 5 Jun 2009 17:19:39 -0000 1.4 +++ python-zope-sqlalchemy.spec 27 Jul 2009 01:35:12 -0000 1.5 @@ -2,7 +2,7 @@ Name: python-zope-sqlalchemy Version: 0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Minimal Zope/SQLAlchemy transaction integration Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 01 2009 Luke Macken - 0.4-1 - Update to 0.4 From jkeating at fedoraproject.org Mon Jul 27 01:35:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:35:37 +0000 (UTC) Subject: rpms/python-zope-testing/devel python-zope-testing.spec,1.3,1.4 Message-ID: <20090727013537.8A8F011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-zope-testing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24782 Modified Files: python-zope-testing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: python-zope-testing.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-zope-testing/devel/python-zope-testing.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- python-zope-testing.spec 15 Jun 2009 18:21:35 -0000 1.3 +++ python-zope-testing.spec 27 Jul 2009 01:35:36 -0000 1.4 @@ -2,7 +2,7 @@ Name: python-zope-testing Version: 3.7.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Zope Testing Framework Group: Development/Languages License: ZPLv2.1 @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.7.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Conrad Meyer - 3.7.3-3 - Actually fix file conflict with python-zope-filesystem. From jkeating at fedoraproject.org Mon Jul 27 01:35:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:35:56 +0000 (UTC) Subject: rpms/pytrainer/devel pytrainer.spec,1.13,1.14 Message-ID: <20090727013556.C1CFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pytrainer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25035 Modified Files: pytrainer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pytrainer.spec =================================================================== RCS file: /cvs/pkgs/rpms/pytrainer/devel/pytrainer.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- pytrainer.spec 31 Mar 2009 15:05:56 -0000 1.13 +++ pytrainer.spec 27 Jul 2009 01:35:56 -0000 1.14 @@ -4,7 +4,7 @@ Name: pytrainer Version: 1.6.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool to log all your sport excursions Group: Development/Languages @@ -73,6 +73,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Douglas E. Warner 1.6.0.7-1 - updating to 1.6.0.7 - includes patch to use sqlite3 From jkeating at fedoraproject.org Mon Jul 27 01:36:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:36:18 +0000 (UTC) Subject: rpms/pytyrant/devel pytyrant.spec,1.1,1.2 Message-ID: <20090727013618.44CAA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pytyrant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25286 Modified Files: pytyrant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pytyrant.spec =================================================================== RCS file: /cvs/pkgs/rpms/pytyrant/devel/pytyrant.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pytyrant.spec 31 Mar 2009 06:51:55 -0000 1.1 +++ pytyrant.spec 27 Jul 2009 01:36:17 -0000 1.2 @@ -2,7 +2,7 @@ Name: pytyrant Version: 1.1.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A pure python client impelementation of Tokyo Tyrant Group: Development/Languages @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Silas Sewell - 1.1.17-1 - Update to 1.1.17 - Update package name to conform to Fedora naming standards From jkeating at fedoraproject.org Mon Jul 27 01:36:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:36:35 +0000 (UTC) Subject: rpms/pytz/devel pytz.spec,1.15,1.16 Message-ID: <20090727013635.F02E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pytz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25552 Modified Files: pytz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pytz.spec =================================================================== RCS file: /cvs/pkgs/rpms/pytz/devel/pytz.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- pytz.spec 27 Feb 2009 00:25:33 -0000 1.15 +++ pytz.spec 27 Jul 2009 01:36:35 -0000 1.16 @@ -2,7 +2,7 @@ Name: pytz Version: 2008i -Release: 5%{?dist} +Release: 6%{?dist} Summary: World Timezone Definitions for Python Group: Development/Languages @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2008i-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2008i-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:36:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:36:50 +0000 (UTC) Subject: rpms/pyusb/devel pyusb.spec,1.3,1.4 Message-ID: <20090727013650.1FFCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyusb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25746 Modified Files: pyusb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyusb.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyusb/devel/pyusb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pyusb.spec 27 Feb 2009 00:26:35 -0000 1.3 +++ pyusb.spec 27 Jul 2009 01:36:50 -0000 1.4 @@ -2,7 +2,7 @@ Name: pyusb Version: 0.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Python bindings for libusb Group: Development/Languages License: BSD @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:37:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:37:05 +0000 (UTC) Subject: rpms/pyvnc2swf/devel pyvnc2swf.spec,1.4,1.5 Message-ID: <20090727013705.81D7B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyvnc2swf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25928 Modified Files: pyvnc2swf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyvnc2swf.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyvnc2swf/devel/pyvnc2swf.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- pyvnc2swf.spec 27 Feb 2009 00:28:25 -0000 1.4 +++ pyvnc2swf.spec 27 Jul 2009 01:37:04 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Vnc screen recorder Name: pyvnc2swf Version: 0.9.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://www.unixuser.org/~euske/vnc2swf/pyvnc2swf.html @@ -97,6 +97,9 @@ fi %exclude %{_bindir}/recordwin.sh %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:37:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:37:21 +0000 (UTC) Subject: rpms/pywbem/devel pywbem.spec,1.1,1.2 Message-ID: <20090727013721.9BF7111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pywbem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26136 Modified Files: pywbem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pywbem.spec =================================================================== RCS file: /cvs/pkgs/rpms/pywbem/devel/pywbem.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- pywbem.spec 28 Jun 2009 18:44:22 -0000 1.1 +++ pywbem.spec 27 Jul 2009 01:37:21 -0000 1.2 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pywbem Version: 0.7.0 -Release: 2%{dist} +Release: 3%{dist} Summary: Python WBEM Client and Provider Interface Group: Development/Libraries License: LGPLv2 @@ -49,6 +49,9 @@ rm -rf %{buildroot} %doc README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 David Nalley 0.7.0-2 - Added some verbiage regarding what WBEM is and expanding WBEM and CIM acronyms - Added python-twisted as a dependency From jkeating at fedoraproject.org Mon Jul 27 01:37:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:37:42 +0000 (UTC) Subject: rpms/pywebdav/devel pywebdav.spec,1.3,1.4 Message-ID: <20090727013742.58AD211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pywebdav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26336 Modified Files: pywebdav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pywebdav.spec =================================================================== RCS file: /cvs/pkgs/rpms/pywebdav/devel/pywebdav.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pywebdav.spec 15 May 2009 10:43:01 -0000 1.3 +++ pywebdav.spec 27 Jul 2009 01:37:41 -0000 1.4 @@ -4,7 +4,7 @@ Name: pywebdav Version: 0.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: WebDAV library Group: Development/Languages @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Dan Hor?k 0.9.2-1 - update to 0.9.2 From jkeating at fedoraproject.org Mon Jul 27 01:38:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:38:10 +0000 (UTC) Subject: rpms/pywebkitgtk/devel pywebkitgtk.spec,1.8,1.9 Message-ID: <20090727013810.58B6711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pywebkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26513 Modified Files: pywebkitgtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pywebkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/pywebkitgtk/devel/pywebkitgtk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- pywebkitgtk.spec 8 Mar 2009 20:28:02 -0000 1.8 +++ pywebkitgtk.spec 27 Jul 2009 01:38:06 -0000 1.9 @@ -2,7 +2,7 @@ Name: pywebkitgtk Version: 1.0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Python Bindings for WebKit-gtk Group: Development/Languages @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Steven M. Parrish - Rebuilt for soname bump for webkitgtk+ From jkeating at fedoraproject.org Mon Jul 27 01:38:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:38:30 +0000 (UTC) Subject: rpms/pyxattr/devel pyxattr.spec,1.10,1.11 Message-ID: <20090727013830.B0C6111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyxattr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26808 Modified Files: pyxattr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyxattr.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyxattr/devel/pyxattr.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pyxattr.spec 27 Feb 2009 00:31:36 -0000 1.10 +++ pyxattr.spec 27 Jul 2009 01:38:30 -0000 1.11 @@ -1,7 +1,7 @@ Name: pyxattr Summary: Extended attributes library wrapper for Python Version: 0.4.0 -Release: 3%{?dist} +Release: 4%{?dist} #license version is precised on a website License: LGPLv2+ Group: Development/Libraries @@ -42,6 +42,9 @@ CFLAGS="%{optflags}" %{__python} setup.p %doc COPYING NEWS README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:38:59 +0000 (UTC) Subject: rpms/pyxdg/devel pyxdg.spec,1.11,1.12 Message-ID: <20090727013859.B02D911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyxdg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26988 Modified Files: pyxdg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyxdg.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyxdg/devel/pyxdg.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- pyxdg.spec 27 Feb 2009 00:32:51 -0000 1.11 +++ pyxdg.spec 27 Jul 2009 01:38:59 -0000 1.12 @@ -2,7 +2,7 @@ Name: pyxdg Version: 0.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python library to access freedesktop.org standards Group: Development/Libraries License: LGPLv2 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/pyxdg-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:39:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:39:30 +0000 (UTC) Subject: rpms/pyxf86config/devel pyxf86config.spec,1.52,1.53 Message-ID: <20090727013930.A586F11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyxf86config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27257 Modified Files: pyxf86config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyxf86config.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyxf86config/devel/pyxf86config.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- pyxf86config.spec 27 Feb 2009 00:34:00 -0000 1.52 +++ pyxf86config.spec 27 Jul 2009 01:39:29 -0000 1.53 @@ -1,7 +1,7 @@ Summary: Python wrappers for libxf86config Name: pyxf86config Version: 0.3.37 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://fedoraproject.org/wiki/pyxf86config Source0: http://ajax.fedorapeople.org/%{name}/%{name}-%{version}.tar.bz2 License: GPLv2 @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.37-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.37-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:39:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:39:52 +0000 (UTC) Subject: rpms/pyxmlsec/devel pyxmlsec.spec,1.3,1.4 Message-ID: <20090727013952.9980A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyxmlsec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27532 Modified Files: pyxmlsec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyxmlsec.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyxmlsec/devel/pyxmlsec.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- pyxmlsec.spec 19 Apr 2009 10:42:01 -0000 1.3 +++ pyxmlsec.spec 27 Jul 2009 01:39:52 -0000 1.4 @@ -10,7 +10,7 @@ Name: pyxmlsec Version: 0.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python bindings for the XML Security Library Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Lubomir Rintel (Good Data) - 0.3.0-3 - bcond the cryptography backend, default to OpenSSL From jkeating at fedoraproject.org Mon Jul 27 01:40:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:40:15 +0000 (UTC) Subject: rpms/pyxmms/devel pyxmms.spec,1.10,1.11 Message-ID: <20090727014015.1FD5211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyxmms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27756 Modified Files: pyxmms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyxmms.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyxmms/devel/pyxmms.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- pyxmms.spec 27 Feb 2009 00:35:01 -0000 1.10 +++ pyxmms.spec 27 Jul 2009 01:40:11 -0000 1.11 @@ -4,7 +4,7 @@ Name: pyxmms Summary: Python Interface to XMMS Version: 2.06 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2 Group: Development/Libraries URL: http://www.via.ecp.fr/~flo/ @@ -45,6 +45,9 @@ export CFLAGS="%{optflags}" %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.06-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.06-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:40:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:40:51 +0000 (UTC) Subject: rpms/pyzor/devel pyzor.spec,1.19,1.20 Message-ID: <20090727014051.AD4D011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/pyzor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28032 Modified Files: pyzor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: pyzor.spec =================================================================== RCS file: /cvs/pkgs/rpms/pyzor/devel/pyzor.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- pyzor.spec 14 May 2009 18:13:24 -0000 1.19 +++ pyzor.spec 27 Jul 2009 01:40:51 -0000 1.20 @@ -3,7 +3,7 @@ Name: pyzor Version: 0.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pyzor collaborative spam filtering system Group: Applications/Internet # COPYING is GPLv2; usage.html indicates v2+. No statements in the code itself. @@ -59,6 +59,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Andreas Thienemann - 0.5.0-1 - Update to new upstream release 0.5.0 - Dropped unnecessary patches From jkeating at fedoraproject.org Mon Jul 27 01:41:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:41:20 +0000 (UTC) Subject: rpms/q/devel q.spec,1.17,1.18 Message-ID: <20090727014120.92F7311C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/q/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28284 Modified Files: q.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: q.spec =================================================================== RCS file: /cvs/pkgs/rpms/q/devel/q.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- q.spec 18 Mar 2009 12:37:59 -0000 1.17 +++ q.spec 27 Jul 2009 01:41:19 -0000 1.18 @@ -1,6 +1,6 @@ Name: q Version: 7.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Equational programming language Group: Development/Languages @@ -195,6 +195,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Alex Lancaster - 7.11-5 - Comment-out the AcquireOnePixel patch, appears to be no longer necessary for new ImageMagick-6.4.9 (#490874) From jkeating at fedoraproject.org Mon Jul 27 01:41:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:41:36 +0000 (UTC) Subject: rpms/qalculate-gtk/devel qalculate-gtk.spec,1.25,1.26 Message-ID: <20090727014136.D941B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qalculate-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28509 Modified Files: qalculate-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qalculate-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/qalculate-gtk/devel/qalculate-gtk.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- qalculate-gtk.spec 5 Jul 2009 23:29:14 -0000 1.25 +++ qalculate-gtk.spec 27 Jul 2009 01:41:36 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A multi-purpose desktop calculator for GNU/Linux Name: qalculate-gtk Version: 0.9.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://qalculate.sourceforge.net/ @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/qalculate-gtk/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Deji Akingunola - 0.9.6-6 - Rebuild for cln-1.3.0 From jkeating at fedoraproject.org Mon Jul 27 01:41:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:41:51 +0000 (UTC) Subject: rpms/qalculate-kde/devel qalculate-kde.spec,1.25,1.26 Message-ID: <20090727014151.8011111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qalculate-kde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28669 Modified Files: qalculate-kde.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qalculate-kde.spec =================================================================== RCS file: /cvs/pkgs/rpms/qalculate-kde/devel/qalculate-kde.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- qalculate-kde.spec 5 Jul 2009 23:30:42 -0000 1.25 +++ qalculate-kde.spec 27 Jul 2009 01:41:51 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A multi-purpose desktop calculator for GNU/Linux Name: qalculate-kde Version: 0.9.6 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://qalculate.sourceforge.net/ @@ -74,6 +74,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/*/actions/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 05 2009 Deji Akingunola - 0.9.6-8 - Rebuild for cln-1.3.0 From jkeating at fedoraproject.org Mon Jul 27 01:42:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:42:09 +0000 (UTC) Subject: rpms/qascade/devel qascade.spec,1.15,1.16 Message-ID: <20090727014209.37AF711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qascade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28835 Modified Files: qascade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qascade.spec =================================================================== RCS file: /cvs/pkgs/rpms/qascade/devel/qascade.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- qascade.spec 25 Feb 2009 17:13:46 -0000 1.15 +++ qascade.spec 27 Jul 2009 01:42:08 -0000 1.16 @@ -1,6 +1,6 @@ Name: qascade Version: 0.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Classic puzzle game Group: Amusements/Games @@ -67,6 +67,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:42:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:42:29 +0000 (UTC) Subject: rpms/qca/devel qca.spec,1.13,1.14 Message-ID: <20090727014229.823F211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29028 Modified Files: qca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qca.spec =================================================================== RCS file: /cvs/pkgs/rpms/qca/devel/qca.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- qca.spec 25 Feb 2009 17:15:35 -0000 1.13 +++ qca.spec 27 Jul 2009 01:42:28 -0000 1.14 @@ -1,6 +1,6 @@ Name: qca Version: 1.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Qt Cryptographic Architecture @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:42:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:42:54 +0000 (UTC) Subject: rpms/qca-gnupg/devel qca-gnupg.spec,1.4,1.5 Message-ID: <20090727014254.792E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qca-gnupg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29205 Modified Files: qca-gnupg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qca-gnupg.spec =================================================================== RCS file: /cvs/pkgs/rpms/qca-gnupg/devel/qca-gnupg.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qca-gnupg.spec 5 Jun 2009 19:00:18 -0000 1.4 +++ qca-gnupg.spec 27 Jul 2009 01:42:53 -0000 1.5 @@ -2,7 +2,7 @@ Name: qca-gnupg Version: 2.0.0 -Release: 0.3.beta%{beta}%{?dist} +Release: 0.4.beta%{beta}%{?dist} Summary: GnuPG plugin for the Qt Cryptographic Architecture v2 License: LGPLv2+ @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-0.4.beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Sven Lankes - 2.0.0-0.3.beta3 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 01:43:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:43:11 +0000 (UTC) Subject: rpms/qca-ossl/devel qca-ossl.spec,1.8,1.9 Message-ID: <20090727014311.F1A1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qca-ossl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29421 Modified Files: qca-ossl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qca-ossl.spec =================================================================== RCS file: /cvs/pkgs/rpms/qca-ossl/devel/qca-ossl.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qca-ossl.spec 25 Feb 2009 17:17:18 -0000 1.8 +++ qca-ossl.spec 27 Jul 2009 01:43:11 -0000 1.9 @@ -2,7 +2,7 @@ Name: qca-ossl Version: 2.0.0 -Release: 0.6.beta%{beta}%{?dist} +Release: 0.7.beta%{beta}%{?dist} Summary: OpenSSL plugin for the Qt Cryptographic Architecture v2 License: LGPLv2+ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-0.7.beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.0-0.6.beta3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:43:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:43:32 +0000 (UTC) Subject: rpms/qca-tls/devel qca-tls.spec,1.22,1.23 Message-ID: <20090727014332.61F8711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qca-tls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29607 Modified Files: qca-tls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qca-tls.spec =================================================================== RCS file: /cvs/pkgs/rpms/qca-tls/devel/qca-tls.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- qca-tls.spec 25 Feb 2009 17:18:43 -0000 1.22 +++ qca-tls.spec 27 Jul 2009 01:43:32 -0000 1.23 @@ -1,6 +1,6 @@ Name: qca-tls Version: 1.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: TLS plugin for the Qt Cryptographic Architecture License: LGPLv2+ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:43:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:43:48 +0000 (UTC) Subject: rpms/qca2/devel qca2.spec,1.12,1.13 Message-ID: <20090727014348.72A7211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qca2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29763 Modified Files: qca2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qca2.spec =================================================================== RCS file: /cvs/pkgs/rpms/qca2/devel/qca2.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- qca2.spec 5 May 2009 21:42:25 -0000 1.12 +++ qca2.spec 27 Jul 2009 01:43:48 -0000 1.13 @@ -1,6 +1,6 @@ Name: qca2 Version: 2.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Qt Cryptographic Architecture @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Sven Lankes - 2.0.2-1 - new upstream release - qt 4.5-compat-fixes From jkeating at fedoraproject.org Mon Jul 27 01:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:44:06 +0000 (UTC) Subject: rpms/qcad/devel qcad.spec,1.19,1.20 Message-ID: <20090727014406.1EB0111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qcad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29962 Modified Files: qcad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qcad.spec =================================================================== RCS file: /cvs/pkgs/rpms/qcad/devel/qcad.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- qcad.spec 25 Feb 2009 17:20:39 -0000 1.19 +++ qcad.spec 27 Jul 2009 01:44:05 -0000 1.20 @@ -1,6 +1,6 @@ Name: qcad Version: 2.0.5.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Simple 2D CAD program Group: Applications/Engineering @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.5.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.5.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:44:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:44:27 +0000 (UTC) Subject: rpms/qcomicbook/devel qcomicbook.spec,1.15,1.16 Message-ID: <20090727014427.CEC9D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qcomicbook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30164 Modified Files: qcomicbook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qcomicbook.spec =================================================================== RCS file: /cvs/pkgs/rpms/qcomicbook/devel/qcomicbook.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- qcomicbook.spec 25 Feb 2009 17:21:34 -0000 1.15 +++ qcomicbook.spec 27 Jul 2009 01:44:27 -0000 1.16 @@ -1,7 +1,7 @@ Summary: A viewer for comic book archives Name: qcomicbook Version: 0.4.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 Group: Amusements/Graphics URL: http://linux.bydg.org/~yogin @@ -61,6 +61,9 @@ desktop-file-install --vendor fedora %{_datadir}/pixmaps/%{name}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 01:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:44:52 +0000 (UTC) Subject: rpms/qct/devel qct.spec,1.7,1.8 Message-ID: <20090727014452.0FE1411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qct/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30437 Modified Files: qct.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qct.spec =================================================================== RCS file: /cvs/pkgs/rpms/qct/devel/qct.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- qct.spec 2 Apr 2009 00:00:49 -0000 1.7 +++ qct.spec 27 Jul 2009 01:44:51 -0000 1.8 @@ -3,7 +3,7 @@ Name: qct Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Multi-vcs GUI commit tool Group: Development/Tools @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{python_archlib}/hgext/qct.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 Neal Becker - 1.7-3 - Add Req qt to qt-mercurial br 439675 - Own directories qctlib... br 474615 From jkeating at fedoraproject.org Mon Jul 27 01:45:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 01:45:29 +0000 (UTC) Subject: rpms/qd/devel qd.spec,1.1,1.2 Message-ID: <20090727014529.8C13811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30749 Modified Files: qd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qd.spec =================================================================== RCS file: /cvs/pkgs/rpms/qd/devel/qd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qd.spec 9 Mar 2009 17:55:40 -0000 1.1 +++ qd.spec 27 Jul 2009 01:45:29 -0000 1.2 @@ -3,7 +3,7 @@ Name: qd Version: 2.3.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Double-Double and Quad-Double Arithmetic Group: Applications/Engineering License: BSD @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Jussi Lehtola - 2.3.7-5 - Fix license. From lkundrak at fedoraproject.org Mon Jul 27 01:48:08 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 27 Jul 2009 01:48:08 +0000 (UTC) Subject: rpms/system-config-keyboard/devel .cvsignore, 1.16, 1.17 sources, 1.20, 1.21 system-config-keyboard.spec, 1.48, 1.49 system-config-keyboard-1.2.15-beenset.patch, 1.1, NONE system-config-keyboard-1.2.15-ext.patch, 1.1, NONE system-config-keyboard-1.2.15-fixcomments.patch, 1.1, NONE system-config-keyboard-1.2.15-icon.patch, 1.1, NONE system-config-keyboard-1.2.15-nolayout.patch, 1.1, NONE system-config-keyboard-1.2.15-reconfig.patch, 1.1, NONE Message-ID: <20090727014808.1574611C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/system-config-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31933 Modified Files: .cvsignore sources system-config-keyboard.spec Removed Files: system-config-keyboard-1.2.15-beenset.patch system-config-keyboard-1.2.15-ext.patch system-config-keyboard-1.2.15-fixcomments.patch system-config-keyboard-1.2.15-icon.patch system-config-keyboard-1.2.15-nolayout.patch system-config-keyboard-1.2.15-reconfig.patch Log Message: * Mon Jul 27 2009 Lubomir Rintel 1.3.0-1 - New upstream release - Drop upstreamed patches - Make arch-dependent - Drop rphl dependency Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/system-config-keyboard/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 12 Apr 2008 13:39:58 -0000 1.16 +++ .cvsignore 27 Jul 2009 01:48:05 -0000 1.17 @@ -1 +1 @@ -system-config-keyboard-1.2.15.tar.gz +system-config-keyboard-1.3.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/system-config-keyboard/devel/sources,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sources 12 Apr 2008 13:39:58 -0000 1.20 +++ sources 27 Jul 2009 01:48:05 -0000 1.21 @@ -1 +1 @@ -13a0e4444f7fcbb6a3e9c88f42285faf system-config-keyboard-1.2.15.tar.gz +8cb9171cb71beedd8359c959fb518628 system-config-keyboard-1.3.0.tar.gz Index: system-config-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-keyboard/devel/system-config-keyboard.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- system-config-keyboard.spec 22 Jun 2009 17:18:13 -0000 1.48 +++ system-config-keyboard.spec 27 Jul 2009 01:48:07 -0000 1.49 @@ -1,30 +1,26 @@ +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + Name: system-config-keyboard -Version: 1.2.15 -Release: 8%{?dist}.2 +Version: 1.3.0 +Release: 1%{?dist} Summary: A graphical interface for modifying the keyboard Group: System Environment/Base License: GPLv2+ URL: https://fedorahosted.org/system-config-keyboard/ Source0: %{name}-%{version}.tar.gz -Patch0: system-config-keyboard-1.2.15-fixcomments.patch -Patch1: system-config-keyboard-1.2.15-beenset.patch -Patch2: system-config-keyboard-1.2.15-reconfig.patch -Patch3: system-config-keyboard-1.2.15-icon.patch -Patch4: system-config-keyboard-1.2.15-ext.patch -Patch5: system-config-keyboard-1.2.15-nolayout.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch BuildRequires: desktop-file-utils BuildRequires: gettext BuildRequires: intltool -Requires: python2 +Requires: python Requires: usermode >= 1.36 -Requires: rhpl >= 0.53 -Requires: pyxf86config Requires: firstboot +%ifnarch s390 s390x +Requires: pyxf86config +%endif Obsoletes: kbdconfig Obsoletes: redhat-config-keyboard @@ -36,12 +32,6 @@ the user to change the default keyboard %prep %setup -q -%patch0 -p0 -b .fixcomments -%patch1 -p1 -b .beenset -%patch2 -p1 -b .reconfig -%patch3 -p1 -b .icon -%patch4 -p1 -b .ext -%patch5 -p1 -b .nolayout %build @@ -87,9 +77,16 @@ fi %attr(0644,root,root) %config %{_sysconfdir}/security/console.apps/system-config-keyboard %attr(0644,root,root) %config %{_sysconfdir}/pam.d/system-config-keyboard %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-keyboard.png +%{python_sitelib}/system_config_keyboard %changelog +* Mon Jul 27 2009 Lubomir Rintel 1.3.0-1 +- New upstream release +- Drop upstreamed patches +- Make arch-dependent +- Drop rphl dependency + * Mon Jun 22 2009 Karsten Hopp 1.2.15-8.2 - ifnarch doesn't work in noarch packages, undo last change --- system-config-keyboard-1.2.15-beenset.patch DELETED --- --- system-config-keyboard-1.2.15-ext.patch DELETED --- --- system-config-keyboard-1.2.15-fixcomments.patch DELETED --- --- system-config-keyboard-1.2.15-icon.patch DELETED --- --- system-config-keyboard-1.2.15-nolayout.patch DELETED --- --- system-config-keyboard-1.2.15-reconfig.patch DELETED --- From lkundrak at fedoraproject.org Mon Jul 27 01:48:37 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Mon, 27 Jul 2009 01:48:37 +0000 (UTC) Subject: rpms/system-config-keyboard/devel system-config-keyboard.spec, 1.49, 1.50 Message-ID: <20090727014837.EF24511C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/system-config-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32252 Modified Files: system-config-keyboard.spec Log Message: Fix source url Index: system-config-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-keyboard/devel/system-config-keyboard.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- system-config-keyboard.spec 27 Jul 2009 01:48:07 -0000 1.49 +++ system-config-keyboard.spec 27 Jul 2009 01:48:36 -0000 1.50 @@ -8,7 +8,7 @@ Summary: A graphical interface fo Group: System Environment/Base License: GPLv2+ URL: https://fedorahosted.org/system-config-keyboard/ -Source0: %{name}-%{version}.tar.gz +Source0: https://fedorahosted.org/releases/s/y/system-config-keyboard/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: desktop-file-utils From pkgdb at fedoraproject.org Mon Jul 27 01:52:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:09 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchbugzilla Message-ID: <20090727015209.2C02810F885@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-cangjie (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:09 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchcommits Message-ID: <20090727015209.81DA110F890@bastion2.fedora.phx.redhat.com> cchance has requested the watchcommits acl on ibus-table-cangjie (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:10 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested commit Message-ID: <20090727015210.CBD2910F899@bastion2.fedora.phx.redhat.com> cchance has requested the commit acl on ibus-table-cangjie (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:12 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested approveacls Message-ID: <20090727015212.713F010F8A1@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-cangjie (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:18 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchbugzilla Message-ID: <20090727015218.B66B410F8B4@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-cangjie (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:20 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchcommits Message-ID: <20090727015220.3286F10F8B6@bastion2.fedora.phx.redhat.com> cchance has requested the watchcommits acl on ibus-table-cangjie (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:28 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchbugzilla Message-ID: <20090727015228.DF4C510F889@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-cangjie (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:22 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested approveacls Message-ID: <20090727015222.3929B10F8B7@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-cangjie (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:20 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested commit Message-ID: <20090727015220.92D3810F8B9@bastion2.fedora.phx.redhat.com> cchance has requested the commit acl on ibus-table-cangjie (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:29 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested watchcommits Message-ID: <20090727015229.57EB110F897@bastion2.fedora.phx.redhat.com> cchance has requested the watchcommits acl on ibus-table-cangjie (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:32 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested commit Message-ID: <20090727015232.8CCCD10F8BA@bastion2.fedora.phx.redhat.com> cchance has requested the commit acl on ibus-table-cangjie (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:33 +0000 Subject: [pkgdb] ibus-table-cangjie: cchance has requested approveacls Message-ID: <20090727015233.DC9B810F8BC@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-cangjie (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:51 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015251.2A20110F8B8@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:49 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015249.327E210F8A1@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:52 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015252.9B03E10F8BE@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:54 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015254.59ACE10F8C0@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:56 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015256.B9ED810F8C2@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:57 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015257.E220B10F8C4@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:53:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:53:02 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015302.C75DF10F8C5@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:52:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:52:59 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015259.F1F7B10F889@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:53:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:53:09 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015309.AE93610F8C6@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora 10) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:53:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:53:11 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015311.532E910F897@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora 10) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:53:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:53:12 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015312.CEACD10F8BA@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora 10) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:53:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:53:14 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090727015314.E363810F8CA@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora 10) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Mon Jul 27 01:58:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:58:55 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested commit Message-ID: <20090727015855.D56BC10F890@bastion2.fedora.phx.redhat.com> cchance has requested the commit acl on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 01:58:55 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:58:55 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested watchbugzilla Message-ID: <20090727015855.B866410F885@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 01:58:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:58:59 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested commit Message-ID: <20090727015859.B574710F899@bastion2.fedora.phx.redhat.com> cchance has requested the commit acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 01:59:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:59:00 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested watchbugzilla Message-ID: <20090727015901.0A08910F89C@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 01:59:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 01:59:01 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested watchcommits Message-ID: <20090727015901.78E4F10F89F@bastion2.fedora.phx.redhat.com> cchance has requested the watchcommits acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:01:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:01:46 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested watchcommits Message-ID: <20090727020146.90FA810F897@bastion2.fedora.phx.redhat.com> cchance has requested the watchcommits acl on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:01:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:01:51 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020151.218C010F885@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:01:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:01:52 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020152.210F210F89A@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:01:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:01:54 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020154.6210310F89D@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:01:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:01:58 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020157.F0E6010F8A1@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora devel) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:00 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020200.4CF6E10F890@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:01 +0000 Subject: [pkgdb] ibus-table-translit: cchance has given up approveacls Message-ID: <20090727020201.C6DAA10F8B4@bastion2.fedora.phx.redhat.com> cchance has given up the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:03 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020203.8F1FE10F8B5@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:05 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020205.5473710F8B7@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:08 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020208.72A1710F8B8@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:21 +0000 Subject: [pkgdb] ibus-table-translit: lxfancy has requested watchbugzilla Message-ID: <20090727020221.4541710F89C@bastion2.fedora.phx.redhat.com> lxfancy has requested the watchbugzilla acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:02:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:02:22 +0000 Subject: [pkgdb] ibus-table-translit: lxfancy has requested watchcommits Message-ID: <20090727020222.1E11C10F89F@bastion2.fedora.phx.redhat.com> lxfancy has requested the watchcommits acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:03:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:03:07 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020307.17F0110F889@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora 11) to Approved for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:03:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:03:08 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020308.0A7E110F89C@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora 11) to Approved for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:05:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:05:51 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020552.1BACB10F889@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora 11) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:06:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:06:03 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727020603.3AC7D10F899@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora 11) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:07:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:07:10 +0000 Subject: [pkgdb] ibus-table-translit: lxfancy has requested watchcommits Message-ID: <20090727020710.72EE410F890@bastion2.fedora.phx.redhat.com> lxfancy has requested the watchcommits acl on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 02:07:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 02:07:10 +0000 Subject: [pkgdb] ibus-table-translit: lxfancy has requested watchbugzilla Message-ID: <20090727020710.A56FE10F89A@bastion2.fedora.phx.redhat.com> lxfancy has requested the watchbugzilla acl on ibus-table-translit (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 02:16:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:16:50 +0000 (UTC) Subject: rpms/qdox/devel qdox.spec,1.6,1.7 Message-ID: <20090727021650.0405F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qdox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12475 Modified Files: qdox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qdox.spec =================================================================== RCS file: /cvs/pkgs/rpms/qdox/devel/qdox.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- qdox.spec 25 Feb 2009 17:24:26 -0000 1.6 +++ qdox.spec 27 Jul 2009 02:16:49 -0000 1.7 @@ -42,7 +42,7 @@ Name: qdox Version: 1.6.1 -Release: 6.2%{?dist} +Release: 7.2%{?dist} Epoch: 0 Summary: Extract class/interface/method definitions from sources License: ASL 2.0 @@ -215,6 +215,9 @@ fi %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.6.1-7.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.6.1-6.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:17:16 +0000 (UTC) Subject: rpms/qedje/devel qedje.spec,1.5,1.6 Message-ID: <20090727021716.79F9911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qedje/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12740 Modified Files: qedje.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qedje.spec =================================================================== RCS file: /cvs/pkgs/rpms/qedje/devel/qedje.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qedje.spec 6 Mar 2009 20:41:48 -0000 1.5 +++ qedje.spec 27 Jul 2009 02:17:15 -0000 1.6 @@ -4,7 +4,7 @@ Name: qedje Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library combining the benefits of Edje and Qt Group: System Environment/Libraries @@ -118,6 +118,9 @@ rm -rf %{buildroot} %{_datadir}/sip/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 John5342 0.4.0-1 - Updated to new upstream release (0.4.0) From jkeating at fedoraproject.org Mon Jul 27 02:17:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:17:43 +0000 (UTC) Subject: rpms/qelectrotech/devel qelectrotech.spec,1.2,1.3 Message-ID: <20090727021743.EE89211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qelectrotech/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13172 Modified Files: qelectrotech.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qelectrotech.spec =================================================================== RCS file: /cvs/pkgs/rpms/qelectrotech/devel/qelectrotech.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qelectrotech.spec 27 Jun 2009 18:01:55 -0000 1.2 +++ qelectrotech.spec 27 Jul 2009 02:17:43 -0000 1.3 @@ -9,7 +9,7 @@ Summary(ru): ???????? ????? # Upstream version is a float so 0.11 < 0.2 < 0.21 < 0.3 # So use %.2f with upstream acknowledgment Version: 0.20 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Engineering @@ -148,6 +148,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Remi Collet - 0.20-1 - update to 0.2 finale From jkeating at fedoraproject.org Mon Jul 27 02:18:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:18:01 +0000 (UTC) Subject: rpms/qemu/devel qemu.spec,1.113,1.114 Message-ID: <20090727021801.2EF2011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13428 Modified Files: qemu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- qemu.spec 23 Jul 2009 14:52:23 -0000 1.113 +++ qemu.spec 27 Jul 2009 02:18:00 -0000 1.114 @@ -5,7 +5,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.50 -Release: 13.%{kvmvertag}%{?dist} +Release: 14.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -481,6 +481,9 @@ getent passwd qemu >/dev/null || \ %{_mandir}/man1/qemu-img.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:0.10.50-14.kvm88 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Glauber Costa - 2:0.10.50-13.kvm88 - Fix bug 513249, -net channel option is broken From jkeating at fedoraproject.org Mon Jul 27 02:18:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:18:23 +0000 (UTC) Subject: rpms/qemu-launcher/devel qemu-launcher.spec,1.4,1.5 Message-ID: <20090727021823.0C17011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qemu-launcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13709 Modified Files: qemu-launcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qemu-launcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu-launcher/devel/qemu-launcher.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qemu-launcher.spec 25 Feb 2009 17:27:16 -0000 1.4 +++ qemu-launcher.spec 27 Jul 2009 02:18:22 -0000 1.5 @@ -1,6 +1,6 @@ Name: qemu-launcher Version: 1.7.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A graphical front-end to Qemu virtual machines Group: Applications/Emulators @@ -79,6 +79,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:18:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:18:40 +0000 (UTC) Subject: rpms/qfaxreader/devel qfaxreader.spec,1.8,1.9 Message-ID: <20090727021840.5382111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qfaxreader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13931 Modified Files: qfaxreader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qfaxreader.spec =================================================================== RCS file: /cvs/pkgs/rpms/qfaxreader/devel/qfaxreader.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qfaxreader.spec 25 Feb 2009 17:28:15 -0000 1.8 +++ qfaxreader.spec 27 Jul 2009 02:18:40 -0000 1.9 @@ -2,7 +2,7 @@ Name: qfaxreader License: GPLv2+ Group: Applications/Communications Version: 0.3.1 -Release: 10%{dist}.3 +Release: 11%{dist}.3 Summary: A multipage monochrome/color TIFF/FAX viewer Source: http://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2 Patch0: qfaxreader-parallel_build.patch @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-11.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-10.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mjg59 at fedoraproject.org Mon Jul 27 02:22:56 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Mon, 27 Jul 2009 02:22:56 +0000 (UTC) Subject: rpms/kernel/devel drm-intel-pm.patch, NONE, 1.1 kernel.spec, 1.1657, 1.1658 Message-ID: <20090727022256.E36BE11C00CE@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16250 Modified Files: kernel.spec Added Files: drm-intel-pm.patch Log Message: * Mon Jul 27 2009 Matthew Garrett - drm-intel-pm.patch - Add runtime PM for Intel graphics drm-intel-pm.patch: i915_drv.c | 3 i915_drv.h | 10 + i915_gem.c | 8 i915_reg.h | 22 ++ intel_display.c | 468 +++++++++++++++++++++++++++++++++++++++++++++++---- intel_display.c.orig |only intel_display.c.rej |only intel_display.c~ |only intel_drv.h | 4 9 files changed, 480 insertions(+), 35 deletions(-) --- NEW FILE drm-intel-pm.patch --- diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.c linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.c 2009-07-27 03:06:09.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c 2009-07-27 03:11:18.000000000 +0100 @@ -43,6 +43,9 @@ unsigned int i915_fbpercrtc = 0; module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400); +unsigned int i915_powersave = 1; +module_param_named(powersave, i915_powersave, int, 0400); + static struct drm_driver driver; static struct pci_device_id pciidlist[] = { diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h 2009-07-27 02:59:58.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h 2009-07-27 03:11:18.000000000 +0100 @@ -436,6 +436,12 @@ struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT]; } mm; struct sdvo_device_mapping sdvo_mappings[2]; + + /* Reclocking support */ + struct work_struct idle_work; + struct timer_list idle_timer; + bool busy; + u16 orig_clock; } drm_i915_private_t; /** driver private structure attached to each drm_gem_object */ @@ -565,6 +571,7 @@ extern struct drm_ioctl_desc i915_ioctls[]; extern int i915_max_ioctl; extern unsigned int i915_fbpercrtc; +extern unsigned int i915_powersave; extern int i915_master_create(struct drm_device *dev, struct drm_master *master); extern void i915_master_destroy(struct drm_device *dev, struct drm_master *master); @@ -892,6 +899,9 @@ /* dsparb controlled by hw only */ #define DSPARB_HWCONTROL(dev) (IS_G4X(dev) || IS_IGDNG(dev)) +#define HAS_FW_BLC(dev) (IS_I9XX(dev) || IS_G4X(dev) || IS_IGDNG(dev)) +#define HAS_PIPE_CXSR(dev) (IS_G4X(dev) || IS_IGDNG(dev)) + #define PRIMARY_RINGBUFFER_SIZE (128*1024) #endif diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c 2009-07-27 03:06:09.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c 2009-07-27 03:11:18.000000000 +0100 @@ -29,6 +29,7 @@ #include "drm.h" #include "i915_drm.h" #include "i915_drv.h" +#include "intel_drv.h" #include #include @@ -980,6 +981,7 @@ { struct drm_i915_gem_set_domain *args = data; struct drm_gem_object *obj; + struct drm_i915_gem_object *obj_priv; uint32_t read_domains = args->read_domains; uint32_t write_domain = args->write_domain; int ret; @@ -1003,8 +1005,12 @@ obj = drm_gem_object_lookup(dev, file_priv, args->handle); if (obj == NULL) return -EBADF; + obj_priv = obj->driver_private; mutex_lock(&dev->struct_mutex); + + intel_mark_busy(dev, obj); + #if WATCH_BUF DRM_INFO("set_domain_ioctl %p(%zd), %08x %08x\n", obj, obj->size, read_domains, write_domain); @@ -2761,6 +2767,8 @@ BUG_ON(obj->pending_read_domains & I915_GEM_DOMAIN_CPU); BUG_ON(obj->pending_write_domain == I915_GEM_DOMAIN_CPU); + intel_mark_busy(dev, obj); + #if WATCH_BUF DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n", __func__, obj, diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h 2009-07-27 02:59:58.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h 2009-07-27 03:11:18.000000000 +0100 @@ -55,7 +55,7 @@ /* PCI config space */ #define HPLLCC 0xc0 /* 855 only */ -#define GC_CLOCK_CONTROL_MASK (3 << 0) +#define GC_CLOCK_CONTROL_MASK (0xf << 0) #define GC_CLOCK_133_200 (0 << 0) #define GC_CLOCK_100_200 (1 << 0) #define GC_CLOCK_100_133 (2 << 0) @@ -65,6 +65,25 @@ #define GC_DISPLAY_CLOCK_190_200_MHZ (0 << 4) #define GC_DISPLAY_CLOCK_333_MHZ (4 << 4) #define GC_DISPLAY_CLOCK_MASK (7 << 4) +#define GM45_GC_RENDER_CLOCK_MASK (0xf << 0) +#define GM45_GC_RENDER_CLOCK_266_MHZ (8 << 0) +#define GM45_GC_RENDER_CLOCK_320_MHZ (9 << 0) +#define GM45_GC_RENDER_CLOCK_400_MHZ (0xb << 0) +#define GM45_GC_RENDER_CLOCK_533_MHZ (0xc << 0) +#define I965_GC_RENDER_CLOCK_MASK (0xf << 0) +#define I965_GC_RENDER_CLOCK_267_MHZ (2 << 0) +#define I965_GC_RENDER_CLOCK_333_MHZ (3 << 0) +#define I965_GC_RENDER_CLOCK_444_MHZ (4 << 0) +#define I965_GC_RENDER_CLOCK_533_MHZ (5 << 0) +#define I945_GC_RENDER_CLOCK_MASK (7 << 0) +#define I945_GC_RENDER_CLOCK_166_MHZ (0 << 0) +#define I945_GC_RENDER_CLOCK_200_MHZ (1 << 0) +#define I945_GC_RENDER_CLOCK_250_MHZ (3 << 0) +#define I945_GC_RENDER_CLOCK_400_MHZ (5 << 0) +#define I915_GC_RENDER_CLOCK_MASK (7 << 0) +#define I915_GC_RENDER_CLOCK_166_MHZ (0 << 0) +#define I915_GC_RENDER_CLOCK_200_MHZ (1 << 0) +#define I915_GC_RENDER_CLOCK_333_MHZ (4 << 0) #define LBB 0xf4 /* VGA stuff */ @@ -1569,6 +1588,7 @@ #define PIPECONF_PROGRESSIVE (0 << 21) #define PIPECONF_INTERLACE_W_FIELD_INDICATION (6 << 21) #define PIPECONF_INTERLACE_FIELD_0_ONLY (7 << 21) +#define PIPECONF_CXSR_DOWNCLOCK (1<<16) #define PIPEASTAT 0x70024 #define PIPE_FIFO_UNDERRUN_STATUS (1UL<<31) #define PIPE_CRC_ERROR_ENABLE (1UL<<29) diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c 2009-07-27 03:06:09.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c 2009-07-27 03:12:17.000000000 +0100 @@ -36,6 +36,7 @@ bool intel_pipe_has_type (struct drm_crtc *crtc, int type); static void intel_update_watermarks(struct drm_device *dev); +static void intel_increase_pllclock(struct drm_crtc *crtc, int schedule); typedef struct { /* given values */ @@ -65,6 +66,8 @@ intel_p2_t p2; bool (* find_pll)(const intel_limit_t *, struct drm_crtc *, int, int, intel_clock_t *); + bool (* find_reduced_pll)(const intel_limit_t *, struct drm_crtc *, + int, int, intel_clock_t *); }; #define I8XX_DOT_MIN 25000 @@ -190,7 +193,7 @@ #define G4X_P2_SINGLE_CHANNEL_LVDS_LIMIT 0 /*The parameter is for DUAL_CHANNEL_LVDS on G4x platform*/ -#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 80000 +#define G4X_DOT_DUAL_CHANNEL_LVDS_MIN 10000 #define G4X_DOT_DUAL_CHANNEL_LVDS_MAX 224000 #define G4X_N_DUAL_CHANNEL_LVDS_MIN 1 #define G4X_N_DUAL_CHANNEL_LVDS_MAX 3 @@ -259,6 +262,9 @@ intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, int target, int refclk, intel_clock_t *best_clock); static bool +intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, + int target, int refclk, intel_clock_t *best_clock); +static bool intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, int target, int refclk, intel_clock_t *best_clock); static bool @@ -281,6 +287,7 @@ .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, .p2_slow = I8XX_P2_SLOW, .p2_fast = I8XX_P2_FAST }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; static const intel_limit_t intel_limits_i8xx_lvds = { @@ -295,6 +302,7 @@ .p2 = { .dot_limit = I8XX_P2_SLOW_LIMIT, .p2_slow = I8XX_P2_LVDS_SLOW, .p2_fast = I8XX_P2_LVDS_FAST }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; static const intel_limit_t intel_limits_i9xx_sdvo = { @@ -309,6 +317,7 @@ .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; static const intel_limit_t intel_limits_i9xx_lvds = { @@ -326,6 +335,7 @@ .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_FAST }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; /* below parameter and function is for G4X Chipset Family*/ @@ -343,6 +353,7 @@ .p2_fast = G4X_P2_SDVO_FAST }, .find_pll = intel_g4x_find_best_PLL, + .find_reduced_pll = intel_g4x_find_best_PLL, }; static const intel_limit_t intel_limits_g4x_hdmi = { @@ -359,6 +370,7 @@ .p2_fast = G4X_P2_HDMI_DAC_FAST }, .find_pll = intel_g4x_find_best_PLL, + .find_reduced_pll = intel_g4x_find_best_PLL, }; static const intel_limit_t intel_limits_g4x_single_channel_lvds = { @@ -383,6 +395,7 @@ .p2_fast = G4X_P2_SINGLE_CHANNEL_LVDS_FAST }, .find_pll = intel_g4x_find_best_PLL, + .find_reduced_pll = intel_g4x_find_best_PLL, }; static const intel_limit_t intel_limits_g4x_dual_channel_lvds = { @@ -407,6 +420,7 @@ .p2_fast = G4X_P2_DUAL_CHANNEL_LVDS_FAST }, .find_pll = intel_g4x_find_best_PLL, + .find_reduced_pll = intel_g4x_find_best_PLL, }; static const intel_limit_t intel_limits_g4x_display_port = { @@ -444,6 +458,7 @@ .p2 = { .dot_limit = I9XX_P2_SDVO_DAC_SLOW_LIMIT, .p2_slow = I9XX_P2_SDVO_DAC_SLOW, .p2_fast = I9XX_P2_SDVO_DAC_FAST }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; static const intel_limit_t intel_limits_igd_lvds = { @@ -459,6 +474,7 @@ .p2 = { .dot_limit = I9XX_P2_LVDS_SLOW_LIMIT, .p2_slow = I9XX_P2_LVDS_SLOW, .p2_fast = I9XX_P2_LVDS_SLOW }, .find_pll = intel_find_best_PLL, + .find_reduced_pll = intel_find_best_reduced_PLL, }; static const intel_limit_t intel_limits_igdng_sdvo = { @@ -666,15 +682,16 @@ memset (best_clock, 0, sizeof (*best_clock)); - for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) { - for (clock.m2 = limit->m2.min; clock.m2 <= limit->m2.max; clock.m2++) { - /* m1 is always 0 in IGD */ - if (clock.m2 >= clock.m1 && !IS_IGD(dev)) - break; - for (clock.n = limit->n.min; clock.n <= limit->n.max; - clock.n++) { - for (clock.p1 = limit->p1.min; - clock.p1 <= limit->p1.max; clock.p1++) { + for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { + for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; + clock.m1++) { + for (clock.m2 = limit->m2.min; + clock.m2 <= limit->m2.max; clock.m2++) { + /* m1 is always 0 in IGD */ + if (clock.m2 >= clock.m1 && !IS_IGD(dev)) + break; + for (clock.n = limit->n.min; + clock.n <= limit->n.max; clock.n++) { int this_err; intel_clock(dev, refclk, &clock); @@ -695,6 +712,46 @@ return (err != target); } + +static bool +intel_find_best_reduced_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, + int target, int refclk, intel_clock_t *best_clock) + +{ + struct drm_device *dev = crtc->dev; + intel_clock_t clock; + int err = target; + bool found = false; + + memcpy(&clock, best_clock, sizeof(intel_clock_t)); + + for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) { + for (clock.m2 = limit->m2.min; clock.m2 <= limit->m2.max; clock.m2++) { + /* m1 is always 0 in IGD */ + if (clock.m2 >= clock.m1 && !IS_IGD(dev)) + break; + for (clock.n = limit->n.min; clock.n <= limit->n.max; + clock.n++) { + int this_err; + + intel_clock(dev, refclk, &clock); + +// if (!intel_PLL_is_valid(crtc, &clock)) +// continue; + + this_err = abs(clock.dot - target); + if (this_err < err) { + *best_clock = clock; + err = this_err; + found = true; + } + } + } + } + + return found; +} + static bool intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, int target, int refclk, intel_clock_t *best_clock) @@ -725,7 +782,7 @@ max_n = limit->n.max; /* based on hardware requriment prefer smaller n to precision */ for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { - /* based on hardware requirment prefere larger m1,m2, p1 */ + /* based on hardware requirment prefere larger m1,m2, */ for (clock.m1 = limit->m1.max; clock.m1 >= limit->m1.min; clock.m1--) { for (clock.m2 = limit->m2.max; @@ -735,8 +792,8 @@ int this_err; intel_clock(dev, refclk, &clock); - if (!intel_PLL_is_valid(crtc, &clock)) - continue; +// if (!intel_PLL_is_valid(crtc, &clock)) +// continue; this_err = abs(clock.dot - target) ; if (this_err < err_most) { *best_clock = clock; @@ -778,15 +835,14 @@ memset(best_clock, 0, sizeof(*best_clock)); max_n = limit->n.max; - /* based on hardware requriment prefer smaller n to precision */ - for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { - /* based on hardware requirment prefere larger m1,m2, p1 */ - for (clock.m1 = limit->m1.max; - clock.m1 >= limit->m1.min; clock.m1--) { - for (clock.m2 = limit->m2.max; - clock.m2 >= limit->m2.min; clock.m2--) { - for (clock.p1 = limit->p1.max; - clock.p1 >= limit->p1.min; clock.p1--) { + for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { + /* based on hardware requriment prefer smaller n to precision */ + for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { + /* based on hardware requirment prefere larger m1,m2 */ + for (clock.m1 = limit->m1.max; + clock.m1 >= limit->m1.min; clock.m1--) { + for (clock.m2 = limit->m2.max; + clock.m2 >= limit->m2.min; clock.m2--) { int this_err; intel_clock(dev, refclk, &clock); @@ -975,6 +1031,7 @@ intel_wait_for_vblank(dev); i915_gem_object_unpin(intel_fb->obj); } + intel_increase_pllclock(crtc, true); if (!dev->primary->master) return 0; @@ -1798,6 +1855,18 @@ const static int latency_ns = 5000; /* default for non-igd platforms */ +static void g4x_update_wm(struct drm_device *dev) +{ + struct drm_i915_private *dev_priv = dev->dev_private; + u32 fw_blc_self = I915_READ(FW_BLC_SELF); + + if (i915_powersave) + fw_blc_self |= FW_BLC_SELF_EN; + else + fw_blc_self &= ~FW_BLC_SELF_EN; + I915_WRITE(FW_BLC_SELF, fw_blc_self); +} + static void i965_update_wm(struct drm_device *dev) { struct drm_i915_private *dev_priv = dev->dev_private; @@ -1869,7 +1938,7 @@ cwm = 2; /* Calc sr entries for one pipe configs */ - if (!planea_clock || !planeb_clock) { + if (HAS_FW_BLC(dev) && (!planea_clock || !planeb_clock)) { sr_clock = planea_clock ? planea_clock : planeb_clock; line_time_us = (sr_hdisplay * 1000) / sr_clock; sr_entries = (((latency_ns / line_time_us) + 1) * pixel_size * @@ -1887,8 +1956,7 @@ I915_WRITE(FW_BLC, fwater_lo); I915_WRITE(FW_BLC2, fwater_hi); - if (IS_I9XX(dev)) - I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN | (srwm & 0x3f)); + I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN | (srwm & 0x3f)); } static void i830_update_wm(struct drm_device *dev, int planea_clock, @@ -1951,9 +2019,6 @@ unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0; int enabled = 0, pixel_size = 0; - if (DSPARB_HWCONTROL(dev)) - return; - /* Get the clock config from both planes */ list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { intel_crtc = to_intel_crtc(crtc); @@ -1986,7 +2051,9 @@ else if (IS_IGD(dev)) igd_disable_cxsr(dev); - if (IS_I965G(dev)) + if (IS_G4X(dev)) + g4x_update_wm(dev); + else if (IS_I965G(dev)) i965_update_wm(dev); else if (IS_I9XX(dev) || IS_MOBILE(dev)) i9xx_update_wm(dev, planea_clock, planeb_clock, sr_hdisplay, @@ -2020,9 +2087,9 @@ int dsppos_reg = (pipe == 0) ? DSPAPOS : DSPBPOS; int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC; int refclk, num_outputs = 0; - intel_clock_t clock; - u32 dpll = 0, fp = 0, dspcntr, pipeconf; - bool ok, is_sdvo = false, is_dvo = false; + intel_clock_t clock, reduced_clock; + u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf; + bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false; bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false; struct drm_mode_config *mode_config = &dev->mode_config; struct drm_connector *connector; @@ -2100,6 +2167,14 @@ return -EINVAL; } + if (limit->find_reduced_pll) { + memcpy(&reduced_clock, &clock, sizeof(intel_clock_t)); + has_reduced_clock = limit->find_reduced_pll(limit, crtc, + (adjusted_mode->clock*3/4), + refclk, + &reduced_clock); + } + /* SDVO TV has fixed PLL values depend on its clock range, this mirrors vbios setting. */ if (is_sdvo && is_tv) { @@ -2127,10 +2202,17 @@ 270000, /* lane clock */ &m_n); - if (IS_IGD(dev)) + if (IS_IGD(dev)) { fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2; - else + if (has_reduced_clock) + fp2 = (1 << reduced_clock.n) << 16 | + reduced_clock.m1 << 8 | reduced_clock.m2; + } else { fp = clock.n << 16 | clock.m1 << 8 | clock.m2; + if (has_reduced_clock) + fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 | + reduced_clock.m2; + } if (!IS_IGDNG(dev)) dpll = DPLL_VGA_MODE_DIS; @@ -2159,6 +2241,8 @@ /* also FPA1 */ if (IS_IGDNG(dev)) dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; + if (IS_G4X(dev) && has_reduced_clock) + dpll |= (1 << (reduced_clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT; } switch (clock.p2) { case 5: @@ -2301,6 +2385,21 @@ intel_dp_set_m_n(crtc, mode, adjusted_mode); I915_WRITE(fp_reg, fp); + if (has_reduced_clock && i915_powersave) { + I915_WRITE(fp_reg + 4, fp2); + intel_crtc->lowfreq_avail = true; + if (HAS_PIPE_CXSR(dev)) { + DRM_DEBUG("enabling CxSR downclocking\n"); + pipeconf |= PIPECONF_CXSR_DOWNCLOCK; + } + } else { + I915_WRITE(fp_reg + 4, fp); + intel_crtc->lowfreq_avail = false; + if (HAS_PIPE_CXSR(dev)) { + DRM_DEBUG("disabling CxSR downclocking\n"); + pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK; + } + } I915_WRITE(dpll_reg, dpll); I915_READ(dpll_reg); /* Wait for the clocks to stabilize. */ @@ -2507,6 +2606,8 @@ return ret; } +#define CRTC_IDLE_TIMEOUT 1000 /* ms */ + static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) { struct drm_device *dev = crtc->dev; @@ -2516,6 +2617,12 @@ uint32_t temp = 0; uint32_t adder; + if (!intel_crtc->busy) + intel_increase_pllclock(crtc, true); + intel_crtc->busy = true; + mod_timer(&intel_crtc->idle_timer, jiffies + + msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); + if (x < 0) { temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; x = -x; @@ -2813,6 +2920,271 @@ return mode; } +#define GPU_IDLE_TIMEOUT 500 /* ms */ + +/* When this timer fires, we've been idle for awhile */ +static void intel_gpu_idle_timer(unsigned long arg) +{ + struct drm_device *dev = (struct drm_device *)arg; + drm_i915_private_t *dev_priv = dev->dev_private; + + DRM_DEBUG("idle timer fired, downclocking\n"); + + dev_priv->busy = false; + + schedule_work(&dev_priv->idle_work); +} + +void intel_increase_renderclock(struct drm_device *dev, int schedule) +{ + drm_i915_private_t *dev_priv = dev->dev_private; + + if (IS_G4X(dev) || IS_I9XX(dev)) { + /* Up to maximum... */ + pci_write_config_word(dev->pdev, GCFGC, dev_priv->orig_clock); + } else if (IS_I85X(dev)) { + pci_write_config_word(dev->pdev, HPLLCC, dev_priv->orig_clock); + } + DRM_DEBUG("increasing render clock frequency\n"); + + if (!schedule) + return; + + /* Schedule downclock */ + mod_timer(&dev_priv->idle_timer, jiffies + + msecs_to_jiffies(GPU_IDLE_TIMEOUT)); +} + +void intel_decrease_renderclock(struct drm_device *dev) +{ + if (IS_G4X(dev)) { + u16 gcfgc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, GCFGC, &gcfgc); + + /* Down to minimum... */ + gcfgc &= ~GM45_GC_RENDER_CLOCK_MASK; + gcfgc |= GM45_GC_RENDER_CLOCK_266_MHZ; + + pci_write_config_word(dev->pdev, GCFGC, gcfgc); + } else if (IS_I965G(dev)) { + u16 gcfgc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, GCFGC, &gcfgc); + + /* Down to minimum... */ + gcfgc &= ~I965_GC_RENDER_CLOCK_MASK; + gcfgc |= I965_GC_RENDER_CLOCK_267_MHZ; + + pci_write_config_word(dev->pdev, GCFGC, gcfgc); + } else if (IS_I945G(dev) || IS_I945GM(dev)) { + u16 gcfgc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, GCFGC, &gcfgc); + + /* Down to minimum... */ + gcfgc &= ~I945_GC_RENDER_CLOCK_MASK; + gcfgc |= I945_GC_RENDER_CLOCK_166_MHZ; + + pci_write_config_word(dev->pdev, GCFGC, gcfgc); + } else if (IS_I915G(dev) || IS_I915GM(dev)) { + u16 gcfgc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, GCFGC, &gcfgc); + + /* Down to minimum... */ + gcfgc &= ~I915_GC_RENDER_CLOCK_MASK; + gcfgc |= I915_GC_RENDER_CLOCK_166_MHZ; + + pci_write_config_word(dev->pdev, GCFGC, gcfgc); + } else if (IS_I85X(dev)) { + u16 hpllcc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, HPLLCC, &hpllcc); + + /* Up to maximum... */ + hpllcc &= ~GC_CLOCK_CONTROL_MASK; + hpllcc |= GC_CLOCK_133_200; + + pci_write_config_word(dev->pdev, HPLLCC, hpllcc); + } + DRM_DEBUG("decreasing render clock frequency\n"); +} + +/* Note that no increase function is needed for this - increase_renderclock() + * will also rewrite these bits + */ +void intel_decrease_displayclock(struct drm_device *dev) +{ + if (IS_I945G(dev) || IS_I945GM(dev) || IS_I915G(dev) || + IS_I915GM(dev)) { + u16 gcfgc; + + /* Adjust render clock... */ + pci_read_config_word(dev->pdev, GCFGC, &gcfgc); + + /* Down to minimum... */ + gcfgc &= ~0xf0; + gcfgc |= 0x80; + + pci_write_config_word(dev->pdev, GCFGC, gcfgc); + } +} + +static void intel_crtc_idle_timer(unsigned long arg) +{ + struct intel_crtc *intel_crtc = (struct intel_crtc *)arg; + struct drm_crtc *crtc = &intel_crtc->base; + drm_i915_private_t *dev_priv = crtc->dev->dev_private; + + DRM_DEBUG("idle timer fired, downclocking\n"); + + intel_crtc->busy = false; + + schedule_work(&dev_priv->idle_work); +} + +static void intel_increase_pllclock(struct drm_crtc *crtc, int schedule) +{ + struct drm_device *dev = crtc->dev; + drm_i915_private_t *dev_priv = dev->dev_private; + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + int pipe = intel_crtc->pipe; + int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; + int dpll = I915_READ(dpll_reg); + + if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { + DRM_DEBUG("upclocking LVDS\n"); + + I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16)); + I915_WRITE(dpll_reg, dpll & ~DISPLAY_RATE_SELECT_FPA1); + dpll = I915_READ(dpll_reg); + intel_wait_for_vblank(dev); + dpll = I915_READ(dpll_reg); + if (dpll & DISPLAY_RATE_SELECT_FPA1) + DRM_DEBUG("failed to upclock LVDS!\n"); + I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3); + } + + if (!schedule) + return; + + /* Schedule downclock */ + mod_timer(&intel_crtc->idle_timer, jiffies + + msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); +} + +static void intel_decrease_pllclock(struct drm_crtc *crtc) +{ + struct drm_device *dev = crtc->dev; + drm_i915_private_t *dev_priv = dev->dev_private; + struct intel_crtc *intel_crtc = to_intel_crtc(crtc); + int pipe = intel_crtc->pipe; + int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; + int dpll = I915_READ(dpll_reg); + + /* + * Since this is called by a timer, we should never get here in + * the manual case. + */ + if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) { + DRM_DEBUG("downclocking LVDS\n"); + I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | (0xabcd << 16)); + + dpll |= DISPLAY_RATE_SELECT_FPA1; + I915_WRITE(dpll_reg, dpll); + dpll = I915_READ(dpll_reg); + intel_wait_for_vblank(dev); + dpll = I915_READ(dpll_reg); + if (!(dpll & DISPLAY_RATE_SELECT_FPA1)) + DRM_DEBUG("failed to downclock LVDS!\n"); + I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & 0x3); + } + +} + +/** + * intel_idle_update - adjust clocks for idleness + * @work: work struct + * + * Either the GPU or display (or both) went idle. Check the busy status + * here and adjust the CRTC and GPU clocks as necessary. + */ +static void intel_idle_update(struct work_struct *work) +{ + drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t, + idle_work); + struct drm_device *dev = dev_priv->dev; + struct drm_crtc *crtc; + struct intel_crtc *intel_crtc; + + if (!i915_powersave) + return; + + mutex_lock(&dev->struct_mutex); + + /* GPU isn't processing, downclock it. */ + if (!dev_priv->busy) { + intel_decrease_renderclock(dev); + intel_decrease_displayclock(dev); + } + + list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { + /* Skip inactive CRTCs */ + if (!crtc->fb) + continue; + + intel_crtc = to_intel_crtc(crtc); + if (!intel_crtc->busy) + intel_decrease_pllclock(crtc); + } + + mutex_unlock(&dev->struct_mutex); +} + +/** + * intel_mark_busy - mark the GPU and possibly the display busy + * @dev: drm device + * @obj: object we're operating on + * + * Callers can use this function to indicate that the GPU is busy processing + * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout + * buffer), we'll also mark the display as busy, so we know to increase its + * clock frequency. + */ +void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj) +{ + drm_i915_private_t *dev_priv = dev->dev_private; + struct drm_crtc *crtc = NULL; + struct intel_framebuffer *intel_fb; + struct intel_crtc *intel_crtc; + + dev_priv->busy = true; + intel_increase_renderclock(dev, true); + + list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { + if (!crtc->fb) + continue; + + intel_crtc = to_intel_crtc(crtc); + intel_fb = to_intel_framebuffer(crtc->fb); + if (intel_fb->obj == obj) { + if (!intel_crtc->busy) + intel_increase_pllclock(crtc, true); + intel_crtc->busy = true; + mod_timer(&intel_crtc->idle_timer, jiffies + + msecs_to_jiffies(CRTC_IDLE_TIMEOUT)); + } + } + + +} + static void intel_crtc_destroy(struct drm_crtc *crtc) { struct intel_crtc *intel_crtc = to_intel_crtc(crtc); @@ -2869,6 +3241,10 @@ intel_crtc->mode_set.crtc = &intel_crtc->base; intel_crtc->mode_set.connectors = (struct drm_connector **)(intel_crtc + 1); intel_crtc->mode_set.num_connectors = 0; + intel_crtc->busy = false; + + setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer, + (unsigned long)intel_crtc); if (i915_fbpercrtc) { @@ -3143,6 +3519,7 @@ void intel_modeset_init(struct drm_device *dev) { + struct drm_i915_private *dev_priv = dev->dev_private; int num_pipe; int i; @@ -3174,15 +3551,38 @@ DRM_DEBUG("%d display pipe%s available.\n", num_pipe, num_pipe > 1 ? "s" : ""); + if (IS_I85X(dev)) + pci_read_config_word(dev->pdev, HPLLCC, &dev_priv->orig_clock); + else if (IS_I9XX(dev) || IS_G4X(dev)) + pci_read_config_word(dev->pdev, GCFGC, &dev_priv->orig_clock); + for (i = 0; i < num_pipe; i++) { intel_crtc_init(dev, i); } intel_setup_outputs(dev); + + INIT_WORK(&dev_priv->idle_work, intel_idle_update); + setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer, + (unsigned long)dev); } void intel_modeset_cleanup(struct drm_device *dev) { + struct drm_i915_private *dev_priv = dev->dev_private; + + /* Clean up up/down clocking */ + if (!HAS_PIPE_CXSR(dev)) { + u32 dpll_b = I915_READ(DPLL_B); + + del_timer_sync(&dev_priv->idle_timer); + dpll_b &= ~DISPLAY_RATE_SELECT_FPA1; + I915_WRITE(DPLL_B, dpll_b); + POSTING_READ(DPLL_B); + intel_wait_for_vblank(dev); + } + + intel_increase_renderclock(dev, false); drm_mode_config_cleanup(dev); } Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c~ Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c.orig Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c.rej diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h 2009-07-27 02:59:58.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h 2009-07-27 03:11:18.000000000 +0100 @@ -98,6 +98,9 @@ struct intel_framebuffer *fbdev_fb; /* a mode_set for fbdev users on this crtc */ struct drm_mode_set mode_set; + bool busy; /* is scanout buffer being updated frequently? */ + struct timer_list idle_timer; + bool lowfreq_avail; }; #define to_intel_crtc(x) container_of(x, struct intel_crtc, base) @@ -116,6 +119,7 @@ extern bool intel_sdvo_init(struct drm_device *dev, int output_device); extern void intel_dvo_init(struct drm_device *dev); extern void intel_tv_init(struct drm_device *dev); +extern void intel_mark_busy(struct drm_device *dev, struct drm_gem_object *obj); extern void intel_lvds_init(struct drm_device *dev); extern void intel_dp_init(struct drm_device *dev, int dp_reg); void Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1657 retrieving revision 1.1658 diff -u -p -r1.1657 -r1.1658 --- kernel.spec 26 Jul 2009 22:11:10 -0000 1.1657 +++ kernel.spec 27 Jul 2009 02:22:56 -0000 1.1658 @@ -662,6 +662,7 @@ Patch1818: drm-i915-resume-force-mode.pa Patch1819: drm-intel-big-hammer.patch Patch1820: drm-intel-gen3-fb-hack.patch Patch1821: drm-page-flip.patch +Patch1822: drm-intel-pm.patch # vga arb Patch1900: linux-2.6-vga-arb.patch @@ -1256,6 +1257,7 @@ ApplyPatch drm-i915-resume-force-mode.pa ApplyPatch drm-intel-big-hammer.patch ApplyPatch drm-intel-gen3-fb-hack.patch ApplyPatch drm-page-flip.patch +ApplyPatch drm-intel-pm.patch # VGA arb + drm #ApplyPatch linux-2.6-vga-arb.patch @@ -1892,6 +1894,9 @@ fi # and build. %changelog +* Mon Jul 27 2009 Matthew Garrett +- drm-intel-pm.patch - Add runtime PM for Intel graphics + * Fri Jul 24 2009 Kristian H?gsberg - Add drm-page-flip.patch to support vsynced page flipping on intel chipsets. From jkeating at fedoraproject.org Mon Jul 27 02:25:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:25:17 +0000 (UTC) Subject: rpms/qgit/devel qgit.spec,1.28,1.29 Message-ID: <20090727022517.74D5C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qgit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17667 Modified Files: qgit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qgit.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgit/devel/qgit.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- qgit.spec 11 May 2009 08:55:05 -0000 1.28 +++ qgit.spec 27 Jul 2009 02:25:17 -0000 1.29 @@ -1,6 +1,6 @@ Name: qgit Version: 2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GUI browser for git repositories Group: Development/Tools @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Dan Horak 2.3-1 - update to upstream version 2.3 From jkeating at fedoraproject.org Mon Jul 27 02:25:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:25:42 +0000 (UTC) Subject: rpms/qgo/devel qgo.spec,1.14,1.15 Message-ID: <20090727022542.5C63D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qgo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17987 Modified Files: qgo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qgo.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgo/devel/qgo.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qgo.spec 25 Feb 2009 17:31:13 -0000 1.14 +++ qgo.spec 27 Jul 2009 02:25:41 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Graphical Go client and SGF editor Name: qgo Version: 1.5.4r2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Amusements/Games URL: http://qgo.sourceforge.net/ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mimelnk/text/sgf.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.4r2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.4r2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:25:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:25:56 +0000 (UTC) Subject: rpms/qhull/devel qhull.spec,1.14,1.15 Message-ID: <20090727022556.2F79111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qhull/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18224 Modified Files: qhull.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qhull.spec =================================================================== RCS file: /cvs/pkgs/rpms/qhull/devel/qhull.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qhull.spec 25 Feb 2009 17:33:09 -0000 1.14 +++ qhull.spec 27 Jul 2009 02:25:56 -0000 1.15 @@ -1,7 +1,7 @@ Summary: General dimension convex hull programs Name: qhull Version: 2003.1 -Release: 12%{?dist} +Release: 13%{?dist} License: Qhull Group: System Environment/Libraries Source0: http://www.qhull.org/download/qhull-%{version}.tar.gz @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %_includedir/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2003.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2003.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:26:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:26:14 +0000 (UTC) Subject: rpms/qimageblitz/devel qimageblitz.spec,1.5,1.6 Message-ID: <20090727022614.2A6E011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qimageblitz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18451 Modified Files: qimageblitz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qimageblitz.spec =================================================================== RCS file: /cvs/pkgs/rpms/qimageblitz/devel/qimageblitz.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qimageblitz.spec 25 Feb 2009 17:34:06 -0000 1.5 +++ qimageblitz.spec 27 Jul 2009 02:26:13 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Interim image effect library for KDE 4.0 Name: qimageblitz Version: 0.0.4 -Release: 0.5.svn%{revision}%{?dist} +Release: 0.6.svn%{revision}%{?dist} Group: System Environment/Libraries License: BSD and ImageMagick @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/blitztest %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.4-0.6.svn706674 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.4-0.5.svn706674 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:26:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:26:27 +0000 (UTC) Subject: rpms/qiv/devel qiv.spec,1.16,1.17 Message-ID: <20090727022627.A2E5411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qiv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18694 Modified Files: qiv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qiv.spec =================================================================== RCS file: /cvs/pkgs/rpms/qiv/devel/qiv.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- qiv.spec 25 Feb 2009 17:35:09 -0000 1.16 +++ qiv.spec 27 Jul 2009 02:26:27 -0000 1.17 @@ -1,6 +1,6 @@ Name: qiv Version: 2.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Quick Image Viewer @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:26:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:26:44 +0000 (UTC) Subject: rpms/qjackctl/devel qjackctl.spec,1.14,1.15 Message-ID: <20090727022644.5935811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qjackctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18892 Modified Files: qjackctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qjackctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/qjackctl/devel/qjackctl.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qjackctl.spec 18 Apr 2009 02:32:04 -0000 1.14 +++ qjackctl.spec 27 Jul 2009 02:26:43 -0000 1.15 @@ -3,7 +3,7 @@ Summary: Qt based JACK control application Name: qjackctl Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://qjackctl.sourceforge.net Source0: http://dl.sf.net/sourceforge/qjackctl/qjackctl-%{version}.tar.gz Source1: qjackctl.desktop @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/applications/%{desktop_vendor}-qjackctl.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Orcan Ogetbil 0.3.4-1 - Update to 0.3.4 - Update scriptlets according to the new guidelines From jkeating at fedoraproject.org Mon Jul 27 02:26:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:26:59 +0000 (UTC) Subject: rpms/ql2100-firmware/devel ql2100-firmware.spec,1.2,1.3 Message-ID: <20090727022659.1261711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ql2100-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19138 Modified Files: ql2100-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ql2100-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ql2100-firmware/devel/ql2100-firmware.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ql2100-firmware.spec 25 Feb 2009 17:37:16 -0000 1.2 +++ ql2100-firmware.spec 27 Jul 2009 02:26:58 -0000 1.3 @@ -1,7 +1,7 @@ Name: ql2100-firmware Summary: Firmware for qlogic 2100 devices Version: 1.19.38 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: System Environment/Kernel Source0: ftp://ftp.qlogic.com/outgoing/linux/firmware/ql2100_fw.bin @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/ql2100_fw.bin %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.19.38-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:27:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:27:18 +0000 (UTC) Subject: rpms/ql2200-firmware/devel ql2200-firmware.spec,1.2,1.3 Message-ID: <20090727022718.7491F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ql2200-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19352 Modified Files: ql2200-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ql2200-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ql2200-firmware/devel/ql2200-firmware.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ql2200-firmware.spec 25 Feb 2009 17:38:13 -0000 1.2 +++ ql2200-firmware.spec 27 Jul 2009 02:27:17 -0000 1.3 @@ -1,7 +1,7 @@ Name: ql2200-firmware Summary: Firmware for qlogic 2200 devices Version: 2.02.08 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: System Environment/Kernel Source0: ftp://ftp.qlogic.com/outgoing/linux/firmware/ql2200_fw.bin @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/ql2200_fw.bin %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.02.08-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.02.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:27:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:27:34 +0000 (UTC) Subject: rpms/ql23xx-firmware/devel ql23xx-firmware.spec,1.3,1.4 Message-ID: <20090727022734.6766511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ql23xx-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19594 Modified Files: ql23xx-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ql23xx-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ql23xx-firmware/devel/ql23xx-firmware.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ql23xx-firmware.spec 25 Feb 2009 17:39:14 -0000 1.3 +++ ql23xx-firmware.spec 27 Jul 2009 02:27:34 -0000 1.4 @@ -1,7 +1,7 @@ Name: ql23xx-firmware Summary: Firmware for qlogic 23xx devices Version: 3.03.27 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: System Environment/Kernel Source0: ftp://ftp.qlogic.com/outgoing/linux/firmware/ql2300_fw.bin @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/ql2322_fw.bin %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.03.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.03.27-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:27:52 +0000 (UTC) Subject: rpms/ql2400-firmware/devel ql2400-firmware.spec,1.4,1.5 Message-ID: <20090727022752.8048A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ql2400-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19834 Modified Files: ql2400-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ql2400-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ql2400-firmware/devel/ql2400-firmware.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ql2400-firmware.spec 25 Feb 2009 17:40:14 -0000 1.4 +++ ql2400-firmware.spec 27 Jul 2009 02:27:52 -0000 1.5 @@ -1,7 +1,7 @@ Name: ql2400-firmware Summary: Firmware for qlogic 2400 devices Version: 4.04.05 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: System Environment/Kernel Source0: ftp://ftp.qlogic.com/outgoing/linux/firmware/ql2400_fw.bin @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/ql2400_fw.bin_mid %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.04.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.04.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:28:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:28:12 +0000 (UTC) Subject: rpms/ql2500-firmware/devel ql2500-firmware.spec,1.3,1.4 Message-ID: <20090727022812.04C9E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ql2500-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20007 Modified Files: ql2500-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ql2500-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/ql2500-firmware/devel/ql2500-firmware.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ql2500-firmware.spec 25 Feb 2009 17:41:57 -0000 1.3 +++ ql2500-firmware.spec 27 Jul 2009 02:28:10 -0000 1.4 @@ -1,7 +1,7 @@ Name: ql2500-firmware Summary: Firmware for qlogic 2500 devices Version: 4.04.05 -Release: 2%{?dist} +Release: 3%{?dist} License: Redistributable, no modification permitted Group: System Environment/Kernel Source0: ftp://ftp.qlogic.com/outgoing/linux/firmware/ql2500_fw.bin @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT /lib/firmware/ql2500_fw.bin_mid %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.04.05-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.04.05-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:28:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:28:27 +0000 (UTC) Subject: rpms/qlandkarte/devel qlandkarte.spec,1.9,1.10 Message-ID: <20090727022827.CAC3611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qlandkarte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20176 Modified Files: qlandkarte.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qlandkarte.spec =================================================================== RCS file: /cvs/pkgs/rpms/qlandkarte/devel/qlandkarte.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- qlandkarte.spec 25 Feb 2009 17:43:07 -0000 1.9 +++ qlandkarte.spec 27 Jul 2009 02:28:27 -0000 1.10 @@ -3,7 +3,7 @@ Name: qlandkarte Version: 0.7.4 %define cap_name_version %{cap_name}_final -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool to visualize maps and other GPS information for Garmin devices Group: Applications/Communications @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:28:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:28:45 +0000 (UTC) Subject: rpms/qlandkartegt/devel qlandkartegt.spec,1.9,1.10 Message-ID: <20090727022845.50C0E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qlandkartegt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20339 Modified Files: qlandkartegt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qlandkartegt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qlandkartegt/devel/qlandkartegt.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- qlandkartegt.spec 20 Jul 2009 12:06:24 -0000 1.9 +++ qlandkartegt.spec 27 Jul 2009 02:28:45 -0000 1.10 @@ -1,6 +1,6 @@ Name: qlandkartegt Version: 0.14.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GPS device mapping tool Group: Applications/Communications @@ -72,6 +72,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Dan Horak 0.14.1-1 - update to 0.14.1 - add workaround for #498111 From jkeating at fedoraproject.org Mon Jul 27 02:29:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:29:08 +0000 (UTC) Subject: rpms/qle/devel qle.spec,1.3,1.4 Message-ID: <20090727022908.28FE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20595 Modified Files: qle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qle.spec =================================================================== RCS file: /cvs/pkgs/rpms/qle/devel/qle.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qle.spec 25 Feb 2009 17:44:56 -0000 1.3 +++ qle.spec 27 Jul 2009 02:29:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: qle Version: 0.0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A QSO Logger and log Editor Group: Applications/Communications @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:29:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:29:29 +0000 (UTC) Subject: rpms/qmforge/devel qmforge.spec,1.1,1.2 Message-ID: <20090727022929.F16F311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qmforge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20835 Modified Files: qmforge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qmforge.spec =================================================================== RCS file: /cvs/pkgs/rpms/qmforge/devel/qmforge.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qmforge.spec 4 May 2009 06:24:09 -0000 1.1 +++ qmforge.spec 27 Jul 2009 02:29:29 -0000 1.2 @@ -5,7 +5,7 @@ Name: qmforge Version: 2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Analysis tools for quantum mechanical calculations Group: Development/Languages @@ -59,6 +59,9 @@ rm -rf %{buildroot} %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Jussi Lehtola - 2.1-4 - Removed duplicate Requires: python-openbabel. - Added Requires: PyOpenGL. From jkeating at fedoraproject.org Mon Jul 27 02:29:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:29:48 +0000 (UTC) Subject: rpms/qmmp/devel qmmp.spec,1.11,1.12 Message-ID: <20090727022948.0F94E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qmmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21245 Modified Files: qmmp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qmmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/qmmp/devel/qmmp.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- qmmp.spec 25 Feb 2009 17:45:56 -0000 1.11 +++ qmmp.spec 27 Jul 2009 02:29:47 -0000 1.12 @@ -1,6 +1,6 @@ Name: qmmp Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Qt-based multimedia player Group: Applications/Multimedia @@ -105,6 +105,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:30:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:30:05 +0000 (UTC) Subject: rpms/qmtest/devel qmtest.spec,1.2,1.3 Message-ID: <20090727023005.2EB7411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qmtest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21710 Modified Files: qmtest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qmtest.spec =================================================================== RCS file: /cvs/pkgs/rpms/qmtest/devel/qmtest.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qmtest.spec 25 Feb 2009 17:46:53 -0000 1.2 +++ qmtest.spec 27 Jul 2009 02:30:04 -0000 1.3 @@ -1,6 +1,6 @@ %define name qmtest %define version 2.4.1 -%define release 2 +%define release 3 %define py_sitedir %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()") %define py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") %define url http://www.codesourcery.com/qmtest @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:30:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:30:21 +0000 (UTC) Subject: rpms/qof/devel qof.spec,1.25,1.26 Message-ID: <20090727023021.58F5C11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qof/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22090 Modified Files: qof.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qof.spec =================================================================== RCS file: /cvs/pkgs/rpms/qof/devel/qof.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- qof.spec 27 Feb 2009 21:48:41 -0000 1.25 +++ qof.spec 27 Jul 2009 02:30:21 -0000 1.26 @@ -1,6 +1,6 @@ Name: qof Version: 0.7.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Query engine library for C objects Group: System Environment/Libraries @@ -117,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT %doc html %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Denis - 0.7.5-6 - Disabled error on warnings From jkeating at fedoraproject.org Mon Jul 27 02:30:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:30:43 +0000 (UTC) Subject: rpms/qosmic/devel qosmic.spec,1.12,1.13 Message-ID: <20090727023043.4635011C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qosmic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22264 Modified Files: qosmic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qosmic.spec =================================================================== RCS file: /cvs/pkgs/rpms/qosmic/devel/qosmic.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- qosmic.spec 25 Feb 2009 17:48:52 -0000 1.12 +++ qosmic.spec 27 Jul 2009 02:30:42 -0000 1.13 @@ -1,6 +1,6 @@ Name: qosmic Version: 1.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A cosmic recursive fractal flame editor written in Qt4 Group: Applications/Multimedia @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:31:14 +0000 (UTC) Subject: rpms/qpidc/devel qpidc.spec,1.91,1.92 Message-ID: <20090727023114.3841F11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qpidc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22522 Modified Files: qpidc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qpidc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qpidc/devel/qpidc.spec,v retrieving revision 1.91 retrieving revision 1.92 diff -u -p -r1.91 -r1.92 --- qpidc.spec 2 Jul 2009 20:50:47 -0000 1.91 +++ qpidc.spec 27 Jul 2009 02:31:13 -0000 1.92 @@ -9,7 +9,7 @@ Name: qpidc Version: 0.5.790661 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries License: ASL 2.0 @@ -441,6 +441,9 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.790661-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 - Rebased to svn rev 790661; .so lib numbers bumped From jkeating at fedoraproject.org Mon Jul 27 02:33:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:33:53 +0000 (UTC) Subject: rpms/qps/devel qps.spec,1.20,1.21 Message-ID: <20090727023353.798B611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23938 Modified Files: qps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qps.spec =================================================================== RCS file: /cvs/pkgs/rpms/qps/devel/qps.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- qps.spec 9 Jun 2009 17:43:16 -0000 1.20 +++ qps.spec 27 Jul 2009 02:33:52 -0000 1.21 @@ -1,6 +1,6 @@ Name: qps Version: 1.10.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Visual process manager Group: Applications/System @@ -83,6 +83,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Ville Skytt? - 1.10.2-4 - Don't strip binaries before -debuginfo is created (#499744). From jkeating at fedoraproject.org Mon Jul 27 02:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:34:08 +0000 (UTC) Subject: rpms/qpxtool/devel qpxtool.spec,1.6,1.7 Message-ID: <20090727023408.144D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qpxtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24139 Modified Files: qpxtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qpxtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/qpxtool/devel/qpxtool.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- qpxtool.spec 25 Feb 2009 17:52:00 -0000 1.6 +++ qpxtool.spec 27 Jul 2009 02:34:07 -0000 1.7 @@ -1,6 +1,6 @@ Name: qpxtool Version: 0.6.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: CD/DVD Quality check tool Group: Applications/System @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libqpxtransport.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:34:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:34:21 +0000 (UTC) Subject: rpms/qrq/devel qrq.spec,1.2,1.3 Message-ID: <20090727023421.8A1C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qrq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24313 Modified Files: qrq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qrq.spec =================================================================== RCS file: /cvs/pkgs/rpms/qrq/devel/qrq.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- qrq.spec 25 Feb 2009 17:55:55 -0000 1.2 +++ qrq.spec 27 Jul 2009 02:34:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: qrq Version: 0.1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Morse telegraphy trainer Group: Applications/Communications @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_datadir}/qrq %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:34:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:34:34 +0000 (UTC) Subject: rpms/qrupdate/devel qrupdate.spec,1.1,1.2 Message-ID: <20090727023434.50DAE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qrupdate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24448 Modified Files: qrupdate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qrupdate.spec =================================================================== RCS file: /cvs/pkgs/rpms/qrupdate/devel/qrupdate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- qrupdate.spec 11 Jul 2009 15:55:06 -0000 1.1 +++ qrupdate.spec 27 Jul 2009 02:34:34 -0000 1.2 @@ -1,6 +1,6 @@ Name: qrupdate Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions Group: Development/Libraries License: GPLv3+ @@ -58,5 +58,8 @@ make test FC=gfortran FFLAGS="%{optflags %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 11 2009 Jussi Lehtola - 1.0.1-1 - First release. From jkeating at fedoraproject.org Mon Jul 27 02:34:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:34:46 +0000 (UTC) Subject: rpms/qscintilla/devel qscintilla.spec,1.26,1.27 Message-ID: <20090727023446.C0E8111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qscintilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24619 Modified Files: qscintilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qscintilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/qscintilla/devel/qscintilla.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- qscintilla.spec 17 Jul 2009 12:37:15 -0000 1.26 +++ qscintilla.spec 27 Jul 2009 02:34:46 -0000 1.27 @@ -6,7 +6,7 @@ Name: qscintilla Version: 2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Scintilla port to Qt # matches up (pretty much) with qt4 License: GPLv3 or GPLv2 with exceptions @@ -156,6 +156,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Rex Dieter - 2.4-1 - QScintilla-gpl-2.4 From jkeating at fedoraproject.org Mon Jul 27 02:34:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:34:59 +0000 (UTC) Subject: rpms/qsf/devel qsf.spec,1.5,1.6 Message-ID: <20090727023459.C1F3711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24742 Modified Files: qsf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qsf.spec =================================================================== RCS file: /cvs/pkgs/rpms/qsf/devel/qsf.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- qsf.spec 25 Feb 2009 18:02:06 -0000 1.5 +++ qsf.spec 27 Jul 2009 02:34:59 -0000 1.6 @@ -4,7 +4,7 @@ Name: qsf Version: 1.2.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Quick Spam Filter Group: Applications/Internet @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/qsf.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:35:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:35:11 +0000 (UTC) Subject: rpms/qsstv/devel qsstv.spec,1.3,1.4 Message-ID: <20090727023511.F2CAC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qsstv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24911 Modified Files: qsstv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qsstv.spec =================================================================== RCS file: /cvs/pkgs/rpms/qsstv/devel/qsstv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qsstv.spec 25 Feb 2009 18:02:53 -0000 1.3 +++ qsstv.spec 27 Jul 2009 02:35:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: qsstv Version: 5.3c -Release: 4%{?dist} +Release: 5%{?dist} Summary: Qt-based slow-scan TV and fax Group: Applications/Communications @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.3c-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.3c-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:35:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:35:34 +0000 (UTC) Subject: rpms/qstat/devel qstat.spec,1.10,1.11 Message-ID: <20090727023534.34A5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25098 Modified Files: qstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/qstat/devel/qstat.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- qstat.spec 25 Feb 2009 18:04:47 -0000 1.10 +++ qstat.spec 27 Jul 2009 02:35:34 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Real-time Game Server Status for FPS game servers Name: qstat Version: 2.11 -Release: 7.20080912svn311%{?dist} +Release: 8.20080912svn311%{?dist} License: Artistic 2.0 Group: Amusements/Games URL: http://sourceforge.net/projects/qstat/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_bindir}/qstat %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.11-8.20080912svn311 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.11-7.20080912svn311 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:35:46 +0000 (UTC) Subject: rpms/qsynth/devel qsynth.spec,1.14,1.15 Message-ID: <20090727023546.7C59A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qsynth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25234 Modified Files: qsynth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qsynth.spec =================================================================== RCS file: /cvs/pkgs/rpms/qsynth/devel/qsynth.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qsynth.spec 12 May 2009 06:08:33 -0000 1.14 +++ qsynth.spec 27 Jul 2009 02:35:46 -0000 1.15 @@ -3,7 +3,7 @@ Summary: Qt based Fluidsynth GUI front end Name: qsynth Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://qsynth.sourceforge.net Source0: http://dl.sourceforge.net/qsynth/qsynth-%{version}.tar.gz # We don't want .qm files in the default locale dir @@ -91,6 +91,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 12 2009 Orcan Ogetbil 0.3.4-1 - Update to 0.3.4 - Update specfile for macro consistency From jkeating at fedoraproject.org Mon Jul 27 02:35:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:35:58 +0000 (UTC) Subject: rpms/qt/devel qt.spec,1.301,1.302 Message-ID: <20090727023558.7367A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25380 Modified Files: qt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt/devel/qt.spec,v retrieving revision 1.301 retrieving revision 1.302 diff -u -p -r1.301 -r1.302 --- qt.spec 2 Jul 2009 10:43:13 -0000 1.301 +++ qt.spec 27 Jul 2009 02:35:58 -0000 1.302 @@ -12,7 +12,7 @@ Epoch: 1 Name: qt4 %endif Version: 4.5.2 -Release: 3%{?dist} +Release: 4%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -914,6 +914,9 @@ fi %{_datadir}/icons/hicolor/*/apps/qt4-logo.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:4.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Than Ngo - 4.5.2-3 - pregenerate PNG, drop BR on GraphicsMagick (bz#509244) From jkeating at fedoraproject.org Mon Jul 27 02:36:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:36:11 +0000 (UTC) Subject: rpms/qt-creator/devel qt-creator.spec,1.6,1.7 Message-ID: <20090727023611.122BA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt-creator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25541 Modified Files: qt-creator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt-creator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-creator/devel/qt-creator.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- qt-creator.spec 14 Jul 2009 14:26:43 -0000 1.6 +++ qt-creator.spec 27 Jul 2009 02:36:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: qt-creator Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Lightweight and cross-platform IDE for Qt Group: Development/Tools @@ -96,6 +96,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/doc/qtcreator/qtcreator.qch %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Itamar Reis Peixoto - 1.2.1-1 - new version 1.2.1 From jkeating at fedoraproject.org Mon Jul 27 02:36:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:36:22 +0000 (UTC) Subject: rpms/qt-qsa/devel qt-qsa.spec,1.7,1.8 Message-ID: <20090727023622.90FD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt-qsa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25687 Modified Files: qt-qsa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt-qsa.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-qsa/devel/qt-qsa.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- qt-qsa.spec 25 Feb 2009 18:07:21 -0000 1.7 +++ qt-qsa.spec 27 Jul 2009 02:36:22 -0000 1.8 @@ -4,7 +4,7 @@ Name: qt-qsa Version: 1.1.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: QT Script for Applications Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:36:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:36:33 +0000 (UTC) Subject: rpms/qt-recordmydesktop/devel qt-recordmydesktop.spec,1.8,1.9 Message-ID: <20090727023633.C595011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt-recordmydesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25839 Modified Files: qt-recordmydesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt-recordmydesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt-recordmydesktop/devel/qt-recordmydesktop.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qt-recordmydesktop.spec 1 Apr 2009 03:39:34 -0000 1.8 +++ qt-recordmydesktop.spec 27 Jul 2009 02:36:33 -0000 1.9 @@ -2,7 +2,7 @@ Name: qt-recordmydesktop Version: 0.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Desktop session recorder with audio and video Group: Applications/Multimedia @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 0.3.8-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 02:36:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:36:49 +0000 (UTC) Subject: rpms/qt3/devel qt3.spec,1.18,1.19 Message-ID: <20090727023649.2193211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26010 Modified Files: qt3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt3.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt3/devel/qt3.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- qt3.spec 15 May 2009 16:53:28 -0000 1.18 +++ qt3.spec 27 Jul 2009 02:36:48 -0000 1.19 @@ -2,7 +2,7 @@ Summary: The shared library for the Qt 3 GUI toolkit Version: 3.3.8b -Release: 26%{?dist} +Release: 27%{?dist} %if 0%{?fedora} > 8 Name: qt3 Obsoletes: qt < 1:%{version}-%{release} @@ -648,6 +648,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3.8b-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Rex Dieter - 3.3.8b-26 - arm patch From jkeating at fedoraproject.org Mon Jul 27 02:37:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:37:01 +0000 (UTC) Subject: rpms/qt4-theme-quarticurve/devel qt4-theme-quarticurve.spec, 1.13, 1.14 Message-ID: <20090727023701.011A711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qt4-theme-quarticurve/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26159 Modified Files: qt4-theme-quarticurve.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qt4-theme-quarticurve.spec =================================================================== RCS file: /cvs/pkgs/rpms/qt4-theme-quarticurve/devel/qt4-theme-quarticurve.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- qt4-theme-quarticurve.spec 25 Feb 2009 18:10:13 -0000 1.13 +++ qt4-theme-quarticurve.spec 27 Jul 2009 02:37:00 -0000 1.14 @@ -1,6 +1,6 @@ Name: qt4-theme-quarticurve Version: 0.0 -Release: 0.14.beta8%{?dist} +Release: 0.15.beta8%{?dist} URL: http://www.kde-look.org/content/show.php/Quarticurve?content=59884 # downloadable from URL above Source: quarticurve-beta8.tar.bz2 @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING ChangeLog readme.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0-0.15.beta8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0-0.14.beta8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:37:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:37:20 +0000 (UTC) Subject: rpms/qtgpsc/devel qtgpsc.spec,1.4,1.5 Message-ID: <20090727023720.14F1C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtgpsc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26348 Modified Files: qtgpsc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtgpsc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtgpsc/devel/qtgpsc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qtgpsc.spec 2 Apr 2009 03:32:57 -0000 1.4 +++ qtgpsc.spec 27 Jul 2009 02:37:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: qtgpsc Version: 0.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A client for the gpsd GPS server Group: Applications/Engineering @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Kevin Kofler - 0.2.3-5 - Include "gpsdclient.h" so it actually builds with the new gpsd From jkeating at fedoraproject.org Mon Jul 27 02:37:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:37:33 +0000 (UTC) Subject: rpms/qtiplot/devel qtiplot.spec,1.14,1.15 Message-ID: <20090727023733.1FE2511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtiplot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26497 Modified Files: qtiplot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtiplot.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtiplot/devel/qtiplot.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- qtiplot.spec 25 Feb 2009 18:12:34 -0000 1.14 +++ qtiplot.spec 27 Jul 2009 02:37:32 -0000 1.15 @@ -1,7 +1,7 @@ Name: qtiplot Summary: Data Analysis and Scientific Plotting Version: 0.9.7.4 -Release: 9%{?dist} +Release: 10%{?dist} #>4.2 is needed for qtiplot BuildRequires: qt4-devel >= 4.2 BuildRequires: qwt-devel @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.7.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:37:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:37:44 +0000 (UTC) Subject: rpms/qtoctave/devel qtoctave.spec,1.4,1.5 Message-ID: <20090727023744.E054211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtoctave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26639 Modified Files: qtoctave.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtoctave.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtoctave/devel/qtoctave.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qtoctave.spec 6 Mar 2009 11:56:34 -0000 1.4 +++ qtoctave.spec 27 Jul 2009 02:37:44 -0000 1.5 @@ -1,6 +1,6 @@ Name: qtoctave Version: 0.8.1 -Release: 0.20080825.svn165%{?dist} +Release: 0.20080826.svn165%{?dist} Summary: Frontend for Octave Group: Applications/Engineering @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-0.20080826.svn165 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Caol?n McNamara - 0.8.1-0.20080825.svn165 - add stdio.h for printf From jkeating at fedoraproject.org Mon Jul 27 02:37:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:37:58 +0000 (UTC) Subject: rpms/qtparted/devel qtparted.spec,1.31,1.32 Message-ID: <20090727023758.BA01411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtparted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26807 Modified Files: qtparted.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtparted.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtparted/devel/qtparted.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- qtparted.spec 25 Feb 2009 18:15:01 -0000 1.31 +++ qtparted.spec 27 Jul 2009 02:37:58 -0000 1.32 @@ -2,7 +2,7 @@ Name: qtparted Version: 0.4.5 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Partition Magic clone written in C++ using the Qt toolkit Group: Applications/System License: GPLv2 @@ -119,6 +119,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/qtparted.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.5-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.5-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:38:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:38:13 +0000 (UTC) Subject: rpms/qtpfsgui/devel qtpfsgui.spec,1.17,1.18 Message-ID: <20090727023813.567E311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtpfsgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26950 Modified Files: qtpfsgui.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/devel/qtpfsgui.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- qtpfsgui.spec 27 Apr 2009 14:22:46 -0000 1.17 +++ qtpfsgui.spec 27 Jul 2009 02:38:13 -0000 1.18 @@ -1,6 +1,6 @@ Name: qtpfsgui Version: 1.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A graphical tool for creating and tone-mapping HDR images Group: Applications/Productivity @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Douglas E. Warner 1.9.3-1 - update to 1.9.3 - Performance improvements on MultiCore Machines From jkeating at fedoraproject.org Mon Jul 27 02:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:38:27 +0000 (UTC) Subject: rpms/qtscriptgenerator/devel qtscriptgenerator.spec,1.3,1.4 Message-ID: <20090727023827.B27C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qtscriptgenerator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27092 Modified Files: qtscriptgenerator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qtscriptgenerator.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtscriptgenerator/devel/qtscriptgenerator.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- qtscriptgenerator.spec 9 Jun 2009 13:04:31 -0000 1.3 +++ qtscriptgenerator.spec 27 Jul 2009 02:38:27 -0000 1.4 @@ -1,7 +1,7 @@ Name: qtscriptgenerator Version: 0.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A tool to generate Qt bindings for Qt Script Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Rex Dieter 0.1.0-7 - upstream sun_issue27 patch From jkeating at fedoraproject.org Mon Jul 27 02:38:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:38:42 +0000 (UTC) Subject: rpms/quadkonsole/devel quadkonsole.spec,1.8,1.9 Message-ID: <20090727023842.8575B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quadkonsole/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27267 Modified Files: quadkonsole.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quadkonsole.spec =================================================================== RCS file: /cvs/pkgs/rpms/quadkonsole/devel/quadkonsole.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- quadkonsole.spec 25 Feb 2009 18:17:06 -0000 1.8 +++ quadkonsole.spec 27 Jul 2009 02:38:41 -0000 1.9 @@ -1,6 +1,6 @@ Name: quadkonsole Version: 2.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Embeds Konsole kparts in a grid layout Group: Applications/System @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:38:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:38:58 +0000 (UTC) Subject: rpms/quagga/devel quagga.spec,1.52,1.53 Message-ID: <20090727023858.7B0A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quagga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27405 Modified Files: quagga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quagga.spec =================================================================== RCS file: /cvs/pkgs/rpms/quagga/devel/quagga.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- quagga.spec 14 Jul 2009 12:12:32 -0000 1.52 +++ quagga.spec 27 Jul 2009 02:38:58 -0000 1.53 @@ -32,7 +32,7 @@ Summary: Routing daemon Name: quagga Version: 0.99.12 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 0 License: GPLv2+ Group: System Environment/Daemons @@ -345,6 +345,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:0.99.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Jiri Skala - 0.99.12-2 - replaced Obsoletes by Conflicts From jkeating at fedoraproject.org Mon Jul 27 02:39:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:39:12 +0000 (UTC) Subject: rpms/quake3/devel quake3.spec,1.10,1.11 Message-ID: <20090727023912.5C06211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quake3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27577 Modified Files: quake3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quake3.spec =================================================================== RCS file: /cvs/pkgs/rpms/quake3/devel/quake3.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- quake3.spec 27 Apr 2009 13:04:07 -0000 1.10 +++ quake3.spec 27 Jul 2009 02:39:12 -0000 1.11 @@ -1,6 +1,6 @@ Name: quake3 Version: 1.36 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Quake 3 Arena engine (ioquake3 version) Group: Amusements/Games License: GPLv2+ @@ -267,6 +267,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.36-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Hans de Goede 1.36-1 - New upstream release 1.36 From jkeating at fedoraproject.org Mon Jul 27 02:39:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:39:39 +0000 (UTC) Subject: rpms/quarticurve-kwin-theme/devel quarticurve-kwin-theme.spec, 1.5, 1.6 Message-ID: <20090727023939.E957111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quarticurve-kwin-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27894 Modified Files: quarticurve-kwin-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quarticurve-kwin-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/quarticurve-kwin-theme/devel/quarticurve-kwin-theme.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- quarticurve-kwin-theme.spec 25 Feb 2009 18:21:29 -0000 1.5 +++ quarticurve-kwin-theme.spec 27 Jul 2009 02:39:39 -0000 1.6 @@ -1,6 +1,6 @@ Name: quarticurve-kwin-theme Version: 0.0 -Release: 0.6.beta4%{?dist} +Release: 0.7.beta4%{?dist} URL: http://www.kde-look.org/content/show.php/Quarticurve-KWin+(for+KDE+4)?content=59972 # downloadable from URL above Source: quarticurve-kwin-beta4.tar.bz2 @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING ChangeLog readme.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0-0.7.beta4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0-0.6.beta4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:39:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:39:53 +0000 (UTC) Subject: rpms/quassel/devel quassel.spec,1.11,1.12 Message-ID: <20090727023953.8C91711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quassel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28057 Modified Files: quassel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quassel.spec =================================================================== RCS file: /cvs/pkgs/rpms/quassel/devel/quassel.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- quassel.spec 25 Jun 2009 19:02:22 -0000 1.11 +++ quassel.spec 27 Jul 2009 02:39:53 -0000 1.12 @@ -1,7 +1,7 @@ Name: quassel Summary: QT4 Based distrubuted IRC system Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 or GPLv3 Group: Applications/Internet @@ -108,6 +108,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_kde4_datadir}/applications/kde4/quasselclient.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Rex Dieter - 0.4.1-2 - cleanup dir ownership - optimize scriptlets From jkeating at fedoraproject.org Mon Jul 27 02:39:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:39:26 +0000 (UTC) Subject: rpms/quarry/devel quarry.spec,1.10,1.11 Message-ID: <20090727023926.8DE6011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quarry/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27727 Modified Files: quarry.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quarry.spec =================================================================== RCS file: /cvs/pkgs/rpms/quarry/devel/quarry.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- quarry.spec 25 Feb 2009 18:20:27 -0000 1.10 +++ quarry.spec 27 Jul 2009 02:39:26 -0000 1.11 @@ -1,6 +1,6 @@ Name: quarry Version: 0.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A multi-purpose board game GUI Group: Amusements/Games @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:40:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:40:07 +0000 (UTC) Subject: rpms/qucs/devel qucs.spec,1.27,1.28 Message-ID: <20090727024007.BE31711C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qucs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28216 Modified Files: qucs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qucs.spec =================================================================== RCS file: /cvs/pkgs/rpms/qucs/devel/qucs.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- qucs.spec 7 May 2009 06:53:38 -0000 1.27 +++ qucs.spec 27 Jul 2009 02:40:07 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Circuit simulator Name: qucs Version: 0.0.15 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://ovh.dl.sourceforge.net/sourceforge/qucs/%{name}-%{version}.tar.gz Source1: %{name}.desktop URL: http://qucs.sourceforge.net/ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Eric Tanguy - 0.0.15-3 - Patch no longer needed with freehdl-0.0.7 From jkeating at fedoraproject.org Mon Jul 27 02:40:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:40:25 +0000 (UTC) Subject: rpms/quesa/devel quesa.spec,1.3,1.4 Message-ID: <20090727024025.26CB911C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28353 Modified Files: quesa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/quesa/devel/quesa.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- quesa.spec 24 Feb 2009 14:53:10 -0000 1.3 +++ quesa.spec 27 Jul 2009 02:40:24 -0000 1.4 @@ -1,6 +1,6 @@ Name: quesa Version: 1.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Quesa QuickDraw 3D implementation Group: System Environment/Libraries @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libquesa.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Adam Jackson 1.8-2 - quesa-1.8-cxx.patch: Fix FTBFS with new autotools. From jkeating at fedoraproject.org Mon Jul 27 02:40:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:40:38 +0000 (UTC) Subject: rpms/quesoglc/devel quesoglc.spec,1.5,1.6 Message-ID: <20090727024038.D864411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quesoglc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28530 Modified Files: quesoglc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quesoglc.spec =================================================================== RCS file: /cvs/pkgs/rpms/quesoglc/devel/quesoglc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- quesoglc.spec 25 Feb 2009 18:24:25 -0000 1.5 +++ quesoglc.spec 27 Jul 2009 02:40:38 -0000 1.6 @@ -1,6 +1,6 @@ Name: quesoglc Version: 0.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The OpenGL Character Renderer Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libGLC.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:40:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:40:53 +0000 (UTC) Subject: rpms/queuegraph/devel queuegraph.spec,1.5,1.6 Message-ID: <20090727024053.0BACF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/queuegraph/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28700 Modified Files: queuegraph.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: queuegraph.spec =================================================================== RCS file: /cvs/pkgs/rpms/queuegraph/devel/queuegraph.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- queuegraph.spec 25 Feb 2009 18:25:25 -0000 1.5 +++ queuegraph.spec 27 Jul 2009 02:40:52 -0000 1.6 @@ -7,7 +7,7 @@ Name: queuegraph Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A RRDtool frontend for Mail statistics Group: System Environment/Daemons @@ -154,6 +154,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:41:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:41:19 +0000 (UTC) Subject: rpms/quicksynergy/devel quicksynergy.spec,1.3,1.4 Message-ID: <20090727024119.2244411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quicksynergy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29015 Modified Files: quicksynergy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quicksynergy.spec =================================================================== RCS file: /cvs/pkgs/rpms/quicksynergy/devel/quicksynergy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- quicksynergy.spec 25 Feb 2009 18:27:18 -0000 1.3 +++ quicksynergy.spec 27 Jul 2009 02:41:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: quicksynergy Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Share keyboard and mouse between computers Group: Applications/System @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-quicksynergy.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:41:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:41:34 +0000 (UTC) Subject: rpms/quilt/devel quilt.spec,1.21,1.22 Message-ID: <20090727024134.30B1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quilt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29217 Modified Files: quilt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quilt.spec =================================================================== RCS file: /cvs/pkgs/rpms/quilt/devel/quilt.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- quilt.spec 16 Mar 2009 16:49:12 -0000 1.21 +++ quilt.spec 27 Jul 2009 02:41:34 -0000 1.22 @@ -7,7 +7,7 @@ Summary: Scripts for working with series License: GPLv2 Group: Development/Tools Version: 0.47 -Release: 4%{?dist} +Release: 5%{?dist} Source: http://savannah.nongnu.org/download/quilt/quilt-%{version}.tar.gz URL: http://savannah.nongnu.org/projects/quilt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.47-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Josh Boyer - 0.47-4 - Fix sendmail configure (bug 474136) From nosnilmot at fedoraproject.org Mon Jul 27 02:41:40 2009 From: nosnilmot at fedoraproject.org (Stu Tomlinson) Date: Mon, 27 Jul 2009 02:41:40 +0000 (UTC) Subject: rpms/pidgin/devel pidgin.spec,1.85,1.86 Message-ID: <20090727024140.25B9311C00CE@cvs1.fedora.phx.redhat.com> Author: nosnilmot Update of /cvs/extras/rpms/pidgin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29249 Modified Files: pidgin.spec Log Message: Prevent main libpurple & pidgin packages depending on perl (#513902) Index: pidgin.spec =================================================================== RCS file: /cvs/extras/rpms/pidgin/devel/pidgin.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- pidgin.spec 26 Jul 2009 18:42:52 -0000 1.85 +++ pidgin.spec 27 Jul 2009 02:41:39 -0000 1.86 @@ -77,7 +77,7 @@ Name: pidgin Version: 2.6.0 %define snapshot 20090721 -Release: 0.5.%{snapshot}%{?dist} +Release: 0.6.%{snapshot}%{?dist} License: GPLv2+ and GPLv2 and MIT # GPLv2+ - libpurple, gnt, finch, pidgin, most prpls # GPLv2 - silc & novell prpls @@ -519,6 +519,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/pidgin %{_bindir}/gaim %{_libdir}/pidgin/ +%exclude %{_libdir}/pidgin/perl %{_mandir}/man1/pidgin.* %{_datadir}/applications/pidgin.desktop %{_datadir}/pixmaps/pidgin/ @@ -538,6 +539,7 @@ rm -rf $RPM_BUILD_ROOT %files -f pidgin.lang -n libpurple %defattr(-,root,root,-) %{_libdir}/purple-2/ +%exclude %{_libdir}/purple-2/perl %{_libdir}/libpurple.so.* %{_datadir}/sounds/purple/ %{_datadir}/purple @@ -600,6 +602,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Stu Tomlinson 2.6.0-0.6.20090721 +- Prevent main libpurple & pidgin packages depending on perl (#513902) + * Sun Jul 26 2009 Fedora Release Engineering - 2.6.0-0.5.20090721 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:41:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:41:47 +0000 (UTC) Subject: rpms/quitcount/devel quitcount.spec,1.1,1.2 Message-ID: <20090727024147.2AA1611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quitcount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29407 Modified Files: quitcount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quitcount.spec =================================================================== RCS file: /cvs/pkgs/rpms/quitcount/devel/quitcount.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- quitcount.spec 20 Jul 2009 19:38:03 -0000 1.1 +++ quitcount.spec 27 Jul 2009 02:41:46 -0000 1.2 @@ -1,6 +1,6 @@ Name: quitcount Version: 1.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool for people who quit smoking Group: Applications/Internet @@ -71,6 +71,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 14 2009 Fabian Affolter - 1.4.1-2 - Fixed license tag (BZ 512270) - Added icon-cache (BZ 512270) From jkeating at fedoraproject.org Mon Jul 27 02:42:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:42:04 +0000 (UTC) Subject: rpms/quodlibet/devel quodlibet.spec,1.15,1.16 Message-ID: <20090727024204.7A67811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quodlibet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29623 Modified Files: quodlibet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quodlibet.spec =================================================================== RCS file: /cvs/pkgs/rpms/quodlibet/devel/quodlibet.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- quodlibet.spec 6 Jul 2009 18:47:35 -0000 1.15 +++ quodlibet.spec 27 Jul 2009 02:42:02 -0000 1.16 @@ -2,7 +2,7 @@ Name: quodlibet Version: 2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A music management program Group: Applications/Multimedia @@ -124,6 +124,9 @@ rm -rf %{buildroot} %{python_sitelib}/quodlibet-%{version}-py2.6.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Jeffrey C. Ollie - 2.1-1 - Update to 2.1 based on patches to spec by Andrew Nayenko From jkeating at fedoraproject.org Mon Jul 27 02:42:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:42:27 +0000 (UTC) Subject: rpms/quota/devel quota.spec,1.53,1.54 Message-ID: <20090727024227.451C711C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quota/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29823 Modified Files: quota.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quota.spec =================================================================== RCS file: /cvs/pkgs/rpms/quota/devel/quota.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- quota.spec 13 Mar 2009 13:29:34 -0000 1.53 +++ quota.spec 27 Jul 2009 02:42:26 -0000 1.54 @@ -5,7 +5,7 @@ Name: quota Summary: System administration tools for monitoring users' disk usage Epoch: 1 Version: 3.17 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD and GPLv2+ URL: http://sourceforge.net/projects/linuxquota/ Group: System Environment/Base @@ -110,6 +110,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:3.17-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Ondrej Vasik 1:3.17-4 - clarify statements about LDAP in warnquota conf (related to #490106) From jkeating at fedoraproject.org Mon Jul 27 02:41:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:41:06 +0000 (UTC) Subject: rpms/quickfix/devel quickfix.spec,1.3,1.4 Message-ID: <20090727024106.16A3211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/quickfix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28848 Modified Files: quickfix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: quickfix.spec =================================================================== RCS file: /cvs/pkgs/rpms/quickfix/devel/quickfix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- quickfix.spec 5 Mar 2009 13:59:33 -0000 1.3 +++ quickfix.spec 27 Jul 2009 02:41:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: quickfix Version: 1.12.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: QuickFIX is a full-featured open source FIX engine Group: Development/Libraries @@ -66,6 +66,9 @@ you will need to install %{name}-devel %{_libdir}/pkgconfig/quickfix.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Caol?n McNamara - 1.12.4-8 - include cstdio for std::sprintf, etc. From jkeating at fedoraproject.org Mon Jul 27 02:42:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:42:43 +0000 (UTC) Subject: rpms/qwt/devel qwt.spec,1.6,1.7 Message-ID: <20090727024243.7EC4011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qwt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30046 Modified Files: qwt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qwt.spec =================================================================== RCS file: /cvs/pkgs/rpms/qwt/devel/qwt.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- qwt.spec 25 Feb 2009 18:31:16 -0000 1.6 +++ qwt.spec 27 Jul 2009 02:42:43 -0000 1.7 @@ -1,7 +1,7 @@ Name: qwt Summary: Qt Widgets for Technical Applications Version: 5.1.1 -Release: 3%{?dist} +Release: 4%{?dist} BuildRequires: qt4-devel URL: http://qwt.sourceforge.net License: LGPLv2 with exceptions @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/qt4/plugins/designer/libqwt_designer_plugin.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:42:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:42:58 +0000 (UTC) Subject: rpms/qwt-doc/devel qwt-doc.spec,1.4,1.5 Message-ID: <20090727024258.7895311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qwt-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30200 Modified Files: qwt-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qwt-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qwt-doc/devel/qwt-doc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qwt-doc.spec 25 Feb 2009 18:32:14 -0000 1.4 +++ qwt-doc.spec 27 Jul 2009 02:42:58 -0000 1.5 @@ -1,7 +1,7 @@ Name: qwt-doc Summary: Documentation of qwt Version: 5.1.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://qwt.sourceforge.net License: LGPLv2 with exceptions Group: Documentation @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:43:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:43:11 +0000 (UTC) Subject: rpms/qwtplot3d/devel qwtplot3d.spec,1.8,1.9 Message-ID: <20090727024311.6E5BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qwtplot3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30385 Modified Files: qwtplot3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qwtplot3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/qwtplot3d/devel/qwtplot3d.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qwtplot3d.spec 5 Mar 2009 20:43:35 -0000 1.8 +++ qwtplot3d.spec 27 Jul 2009 02:43:11 -0000 1.9 @@ -3,7 +3,7 @@ Name: qwtplot3d Version: 0.2.7 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Qt/OpenGL-based C++ library providing a bunch of 3D-widgets Group: System Environment/Libraries @@ -160,6 +160,9 @@ ln -s libqwtplot3d-qt4.so.%{version} %{b %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Chitlesh Goorah - 0.2.7-8 - fixed failed build on gcc 4.4 From jkeating at fedoraproject.org Mon Jul 27 02:43:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:43:23 +0000 (UTC) Subject: rpms/qzion/devel qzion.spec,1.4,1.5 Message-ID: <20090727024323.0FE6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qzion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30522 Modified Files: qzion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: qzion.spec =================================================================== RCS file: /cvs/pkgs/rpms/qzion/devel/qzion.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- qzion.spec 16 Jul 2009 09:11:48 -0000 1.4 +++ qzion.spec 27 Jul 2009 02:43:22 -0000 1.5 @@ -4,7 +4,7 @@ Name: qzion Version: 0.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A canvas abstraction Group: System Environment/Libraries @@ -110,6 +110,9 @@ rm -rf %{buildroot} %{_datadir}/sip/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 John5342 0.4.0-2 - Fix char* conversion (#511583) From jkeating at fedoraproject.org Mon Jul 27 02:43:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:43:36 +0000 (UTC) Subject: rpms/rabbitmq-server/devel rabbitmq-server.spec,1.3,1.4 Message-ID: <20090727024336.9C17211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rabbitmq-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30678 Modified Files: rabbitmq-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rabbitmq-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/rabbitmq-server/devel/rabbitmq-server.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rabbitmq-server.spec 1 Jul 2009 19:58:08 -0000 1.3 +++ rabbitmq-server.spec 27 Jul 2009 02:43:36 -0000 1.4 @@ -2,7 +2,7 @@ Name: rabbitmq-server Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MPLv1.1 Group: Development/Libraries Source: http://www.rabbitmq.com/releases/rabbitmq-server/v%{version}/%{name}-%{version}.tar.gz @@ -117,6 +117,9 @@ fi rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Matthias Radestock 1.6.0-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 02:43:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:43:48 +0000 (UTC) Subject: rpms/raddump/devel raddump.spec,1.2,1.3 Message-ID: <20090727024348.D10A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/raddump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30817 Modified Files: raddump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: raddump.spec =================================================================== RCS file: /cvs/pkgs/rpms/raddump/devel/raddump.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- raddump.spec 25 Feb 2009 18:35:00 -0000 1.2 +++ raddump.spec 27 Jul 2009 02:43:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: raddump Version: 0.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: RADIUS packets interpreter Group: Applications/Internet @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:44:06 +0000 (UTC) Subject: rpms/radeontool/devel radeontool.spec,1.4,1.5 Message-ID: <20090727024406.4911111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/radeontool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30987 Modified Files: radeontool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: radeontool.spec =================================================================== RCS file: /cvs/pkgs/rpms/radeontool/devel/radeontool.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- radeontool.spec 23 Mar 2009 14:25:31 -0000 1.4 +++ radeontool.spec 27 Jul 2009 02:44:03 -0000 1.5 @@ -1,6 +1,6 @@ Name: radeontool Version: 1.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Backlight and video output configuration tool for radeon cards Group: System Environment/Base @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Adam Jackson 1.5-5 - Fix %%description to sound less alarming. From jkeating at fedoraproject.org Mon Jul 27 02:44:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:44:19 +0000 (UTC) Subject: rpms/radial/devel radial.spec,1.4,1.5 Message-ID: <20090727024419.772EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/radial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31196 Modified Files: radial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: radial.spec =================================================================== RCS file: /cvs/pkgs/rpms/radial/devel/radial.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- radial.spec 25 Feb 2009 18:36:50 -0000 1.4 +++ radial.spec 27 Jul 2009 02:44:19 -0000 1.5 @@ -1,7 +1,7 @@ Summary: A simple program for calculating radial velocities of stars in a binary system Name: radial Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} License: Freely redistributable without restriction Group: Applications/Engineering Url: http://www.nhn.ou.edu/~hegarty/radial/ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/radial %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:44:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:44:39 +0000 (UTC) Subject: rpms/radiusclient-ng/devel radiusclient-ng.spec,1.7,1.8 Message-ID: <20090727024439.1A32911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/radiusclient-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31378 Modified Files: radiusclient-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: radiusclient-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/radiusclient-ng/devel/radiusclient-ng.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- radiusclient-ng.spec 25 Feb 2009 18:37:50 -0000 1.7 +++ radiusclient-ng.spec 27 Jul 2009 02:44:38 -0000 1.8 @@ -1,7 +1,7 @@ Summary: RADIUS protocol client library Name: radiusclient-ng Version: 0.5.6 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Internet URL: http://developer.berlios.de/projects/radiusclient-ng/ @@ -100,6 +100,9 @@ rm -rf %{buildroot} %{_sbindir}/radstatus %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:44:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:44:51 +0000 (UTC) Subject: rpms/radvd/devel radvd.spec,1.53,1.54 Message-ID: <20090727024451.1F0DD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/radvd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31526 Modified Files: radvd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: radvd.spec =================================================================== RCS file: /cvs/pkgs/rpms/radvd/devel/radvd.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- radvd.spec 10 Jul 2009 09:43:49 -0000 1.53 +++ radvd.spec 27 Jul 2009 02:44:51 -0000 1.54 @@ -5,7 +5,7 @@ Summary: A Router Advertisement daemon Name: radvd Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} # The code includes the advertising clause, so it's GPL-incompatible License: BSD with advertising Group: System Environment/Daemons @@ -92,6 +92,9 @@ fi %{_sbindir}/radvdump %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Jiri Skala - 1.3-1 - updated to latest upstream version From jkeating at fedoraproject.org Mon Jul 27 02:45:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:45:05 +0000 (UTC) Subject: rpms/rafkill/devel rafkill.spec,1.13,1.14 Message-ID: <20090727024505.B8BD411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rafkill/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31685 Modified Files: rafkill.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rafkill.spec =================================================================== RCS file: /cvs/pkgs/rpms/rafkill/devel/rafkill.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- rafkill.spec 25 Feb 2009 18:39:46 -0000 1.13 +++ rafkill.spec 27 Jul 2009 02:45:05 -0000 1.14 @@ -1,6 +1,6 @@ Name: rafkill Version: 1.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Top-down shooter with powerups Group: Amusements/Games License: GPLv2 @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:45:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:45:18 +0000 (UTC) Subject: rpms/ragel/devel ragel.spec,1.17,1.18 Message-ID: <20090727024518.3AC6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ragel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31854 Modified Files: ragel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ragel.spec =================================================================== RCS file: /cvs/pkgs/rpms/ragel/devel/ragel.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ragel.spec 14 Apr 2009 06:01:31 -0000 1.17 +++ ragel.spec 27 Jul 2009 02:45:17 -0000 1.18 @@ -1,6 +1,6 @@ Name: ragel Version: 6.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Finite state machine compiler Group: Development/Tools @@ -58,6 +58,9 @@ rm -rf %{buildroot} %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Jeremy Hinegardner 6.4-3 - remove main.cpp patch for testing From jkeating at fedoraproject.org Mon Jul 27 02:45:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:45:42 +0000 (UTC) Subject: rpms/raidem-music/devel raidem-music.spec,1.4,1.5 Message-ID: <20090727024542.7FEDF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/raidem-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32163 Modified Files: raidem-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: raidem-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/raidem-music/devel/raidem-music.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- raidem-music.spec 25 Feb 2009 18:42:32 -0000 1.4 +++ raidem-music.spec 27 Jul 2009 02:45:42 -0000 1.5 @@ -1,6 +1,6 @@ Name: raidem-music Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Background music for the game raidem Group: Amusements/Games License: CC-BY @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:45:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:45:54 +0000 (UTC) Subject: rpms/raidutils/devel raidutils.spec,1.1,1.2 Message-ID: <20090727024554.1E30611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/raidutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32278 Modified Files: raidutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: raidutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/raidutils/devel/raidutils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- raidutils.spec 5 Apr 2009 21:40:10 -0000 1.1 +++ raidutils.spec 27 Jul 2009 02:45:53 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Utilities to manage Adaptec I2O compliant RAID controllers Name: raidutils Version: 0.0.6 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Applications/System URL: http://i2o.shadowconnect.com/ @@ -55,6 +55,9 @@ modprobe i2o_config >/dev/null 2>&1 || : %{_libdir}/libraidutil.so.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Dec 31 2008 Dominik Mierzejewski 0.0.6-2 - added i2o_config module autoloading - drop redundant BR: gcc-c++ From jkeating at fedoraproject.org Mon Jul 27 02:46:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:46:05 +0000 (UTC) Subject: rpms/rainbow/devel rainbow.spec,1.4,1.5 Message-ID: <20090727024605.D059A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rainbow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32438 Modified Files: rainbow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rainbow.spec =================================================================== RCS file: /cvs/pkgs/rpms/rainbow/devel/rainbow.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rainbow.spec 25 Feb 2009 18:43:26 -0000 1.4 +++ rainbow.spec 27 Jul 2009 02:46:05 -0000 1.5 @@ -4,7 +4,7 @@ Name: rainbow Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A one-person isolation shell Group: System Environment/Daemons @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT /%{_lib}/libnss_rainbow.so.2 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:46:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:46:18 +0000 (UTC) Subject: rpms/rakarrack/devel rakarrack.spec,1.3,1.4 Message-ID: <20090727024618.4630311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rakarrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32573 Modified Files: rakarrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rakarrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/rakarrack/devel/rakarrack.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rakarrack.spec 25 Feb 2009 18:44:26 -0000 1.3 +++ rakarrack.spec 27 Jul 2009 02:46:17 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Audio effects processing rack for guitar Name: rakarrack Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://%{name}.sourceforge.net/ @@ -103,6 +103,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:46:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:46:31 +0000 (UTC) Subject: rpms/ranpwd/devel ranpwd.spec,1.2,1.3 Message-ID: <20090727024631.909C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ranpwd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32712 Modified Files: ranpwd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ranpwd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ranpwd/devel/ranpwd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ranpwd.spec 25 Feb 2009 18:45:27 -0000 1.2 +++ ranpwd.spec 27 Jul 2009 02:46:31 -0000 1.3 @@ -1,6 +1,6 @@ Name: ranpwd Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A program to generate random passwords Summary(pl): Program generuj?cy losowe has?a @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:45:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:45:30 +0000 (UTC) Subject: rpms/raidem/devel raidem.spec,1.15,1.16 Message-ID: <20090727024530.EA3BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/raidem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32010 Modified Files: raidem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: raidem.spec =================================================================== RCS file: /cvs/pkgs/rpms/raidem/devel/raidem.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- raidem.spec 25 Feb 2009 18:41:36 -0000 1.15 +++ raidem.spec 27 Jul 2009 02:45:30 -0000 1.16 @@ -1,6 +1,6 @@ Name: raidem Version: 0.3.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: 2d top-down shoot'em up Group: Amusements/Games License: zlib @@ -89,6 +89,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:46:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:46:53 +0000 (UTC) Subject: rpms/rapid-photo-downloader/devel rapid-photo-downloader.spec, 1.3, 1.4 Message-ID: <20090727024653.DF3E611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rapid-photo-downloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv420 Modified Files: rapid-photo-downloader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rapid-photo-downloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/rapid-photo-downloader/devel/rapid-photo-downloader.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rapid-photo-downloader.spec 13 Jun 2009 22:55:37 -0000 1.3 +++ rapid-photo-downloader.spec 27 Jul 2009 02:46:51 -0000 1.4 @@ -2,7 +2,7 @@ Name: rapid-photo-downloader Version: 0.0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Images downloader for external devices Group: Applications/Archiving @@ -91,6 +91,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Fabian Affolter - 0.0.10-1 - Added translations - Changed source url From jkeating at fedoraproject.org Mon Jul 27 02:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:47:11 +0000 (UTC) Subject: rpms/rapidsvn/devel rapidsvn.spec,1.20,1.21 Message-ID: <20090727024711.7ADF111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rapidsvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv646 Modified Files: rapidsvn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rapidsvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/rapidsvn/devel/rapidsvn.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- rapidsvn.spec 18 Jul 2009 21:05:19 -0000 1.20 +++ rapidsvn.spec 27 Jul 2009 02:47:11 -0000 1.21 @@ -1,6 +1,6 @@ Name: rapidsvn Version: 0.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical interface for the Subversion revision control system Group: Development/Tools @@ -141,6 +141,9 @@ rm -rf %{buildroot} %{_libdir}/libsvncpp.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tim Jackson 0.10.0-1 - Update to v0.10.0 - Set default attrs for subpackages From mclasen at fedoraproject.org Mon Jul 27 02:47:21 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 02:47:21 +0000 (UTC) Subject: rpms/brasero/devel brasero.spec,1.52,1.53 Message-ID: <20090727024721.7CF0711C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv683 Modified Files: brasero.spec Log Message: Save some space Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- brasero.spec 24 Jul 2009 18:24:34 -0000 1.52 +++ brasero.spec 27 Jul 2009 02:47:20 -0000 1.53 @@ -168,7 +168,7 @@ fi %files -f %{name}.lang %defattr(-,root,root,-) -%doc AUTHORS COPYING ChangeLog NEWS README +%doc AUTHORS COPYING NEWS README %{_mandir}/man1/%{name}.* %{_bindir}/* %{_libdir}/%{name} @@ -195,13 +195,16 @@ fi %files devel %defattr(-,root,root,-) -%doc %{_datadir}/gtk-doc/html/brasero +%doc %{_datadir}/gtk-doc/html/brasero ChangeLog %{_includedir}/brasero %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Matthias Clasne - 2.27.4-3 +- Move ChangeLog to -devel to save some space + * Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:47:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:47:27 +0000 (UTC) Subject: rpms/raptor/devel raptor.spec,1.16,1.17 Message-ID: <20090727024727.D994D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/raptor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv820 Modified Files: raptor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: raptor.spec =================================================================== RCS file: /cvs/pkgs/rpms/raptor/devel/raptor.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- raptor.spec 1 May 2009 15:36:01 -0000 1.16 +++ raptor.spec 27 Jul 2009 02:47:27 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Raptor RDF Parser Toolkit for Redland Name: raptor Version: 1.4.18 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2+ or ASL 2.0 Group: System Environment/Libraries Source: http://download.librdf.org/source/raptor-%{version}.tar.gz @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/raptor-config %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Rex Dieter 1.4.18-3 - nuke rpaths - touchup %%files From jkeating at fedoraproject.org Mon Jul 27 02:47:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:47:48 +0000 (UTC) Subject: rpms/rarian/devel rarian.spec,1.20,1.21 Message-ID: <20090727024748.88AB611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rarian/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1082 Modified Files: rarian.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rarian.spec =================================================================== RCS file: /cvs/pkgs/rpms/rarian/devel/rarian.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- rarian.spec 25 Feb 2009 18:48:22 -0000 1.20 +++ rarian.spec 27 Jul 2009 02:47:48 -0000 1.21 @@ -2,7 +2,7 @@ Name: rarian Version: 0.8.1 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Base Summary: Documentation meta-data library @@ -128,6 +128,9 @@ fi %{_libdir}/pkgconfig/rarian.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:48:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:48:02 +0000 (UTC) Subject: rpms/rarpd/devel rarpd.spec,1.26,1.27 Message-ID: <20090727024802.5DF2911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rarpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1226 Modified Files: rarpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rarpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/rarpd/devel/rarpd.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- rarpd.spec 25 Feb 2009 18:49:18 -0000 1.26 +++ rarpd.spec 27 Jul 2009 02:48:01 -0000 1.27 @@ -1,7 +1,7 @@ Summary: The RARP daemon. Name: rarpd Version: ss981107 -Release: 28%{?dist} +Release: 29%{?dist} License: GPLv2+ Group: System Environment/Daemons Source: ftp://ftp.inr.ac.ru/ip-routing/dhcp.bootp.rarp/rarpd-%{version}.tar.gz @@ -80,6 +80,9 @@ fi %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - ss981107-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - ss981107-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:48:26 +0000 (UTC) Subject: rpms/rasqal/devel rasqal.spec,1.9,1.10 Message-ID: <20090727024826.72E3D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rasqal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1478 Modified Files: rasqal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rasqal.spec =================================================================== RCS file: /cvs/pkgs/rpms/rasqal/devel/rasqal.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rasqal.spec 1 May 2009 15:46:06 -0000 1.9 +++ rasqal.spec 27 Jul 2009 02:48:26 -0000 1.10 @@ -1,6 +1,6 @@ Name: rasqal Version: 0.9.15 -Release: 5%{?dist} +Release: 6%{?dist} Summary: RDF Query Library Group: System Environment/Libraries @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/rasqal/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Rex Dieter - 0.9.15-5 - slightly less ugly rpath hacks - cleanup %%files From mclasen at fedoraproject.org Mon Jul 27 02:48:47 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 02:48:47 +0000 (UTC) Subject: rpms/brasero/devel brasero.spec,1.53,1.54 Message-ID: <20090727024847.A826F11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1430 Modified Files: brasero.spec Log Message: Bump rev Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- brasero.spec 27 Jul 2009 02:47:20 -0000 1.53 +++ brasero.spec 27 Jul 2009 02:48:47 -0000 1.54 @@ -1,7 +1,7 @@ Name: brasero Version: 2.27.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Gnome CD/DVD burning application Group: Applications/Multimedia License: GPLv2+ From jkeating at fedoraproject.org Mon Jul 27 02:48:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:48:47 +0000 (UTC) Subject: rpms/ratbox-services/devel ratbox-services.spec,1.2,1.3 Message-ID: <20090727024847.4590D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ratbox-services/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1727 Modified Files: ratbox-services.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ratbox-services.spec =================================================================== RCS file: /cvs/pkgs/rpms/ratbox-services/devel/ratbox-services.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ratbox-services.spec 25 Feb 2009 18:51:26 -0000 1.2 +++ ratbox-services.spec 27 Jul 2009 02:48:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: ratbox-services Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Service package for ircd-ratbox Group: System Environment/Daemons @@ -111,6 +111,9 @@ fi %{_includedir}/*.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:49:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:49:02 +0000 (UTC) Subject: rpms/ratpoison/devel ratpoison.spec,1.15,1.16 Message-ID: <20090727024902.9F9D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ratpoison/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1935 Modified Files: ratpoison.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ratpoison.spec =================================================================== RCS file: /cvs/pkgs/rpms/ratpoison/devel/ratpoison.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ratpoison.spec 23 Jul 2009 01:55:05 -0000 1.15 +++ ratpoison.spec 27 Jul 2009 02:49:00 -0000 1.16 @@ -2,7 +2,7 @@ Name: ratpoison Version: 1.4.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Minimalistic window manager Group: Applications/Productivity License: GPLv2+ @@ -63,6 +63,9 @@ fi %{_datadir}/xsessions/ratpoison.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Kevin Fenzi - 1.4.5-1 - Update to 1.4.5 From jkeating at fedoraproject.org Mon Jul 27 02:49:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:49:18 +0000 (UTC) Subject: rpms/ratproxy/devel ratproxy.spec,1.3,1.4 Message-ID: <20090727024918.4A7F711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ratproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2182 Modified Files: ratproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ratproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/ratproxy/devel/ratproxy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ratproxy.spec 12 Apr 2009 19:32:21 -0000 1.3 +++ ratproxy.spec 27 Jul 2009 02:49:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: ratproxy Version: 1.56 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A passive web application security assessment tool Group: Applications/Internet License: ASL 2.0 @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.56-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Rakesh Pandit - 1.56-1 - Updated to 1.56 From jkeating at fedoraproject.org Mon Jul 27 02:49:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:49:36 +0000 (UTC) Subject: rpms/rats/devel rats.spec,1.2,1.3 Message-ID: <20090727024936.431F111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2368 Modified Files: rats.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rats.spec =================================================================== RCS file: /cvs/pkgs/rpms/rats/devel/rats.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rats.spec 25 Feb 2009 18:54:18 -0000 1.2 +++ rats.spec 27 Jul 2009 02:49:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: rats Version: 2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Rough Auditing Tool for Security Group: Development/Tools @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:49:51 +0000 (UTC) Subject: rpms/rawstudio/devel rawstudio.spec,1.18,1.19 Message-ID: <20090727024951.032EF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rawstudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2567 Modified Files: rawstudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rawstudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/rawstudio/devel/rawstudio.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- rawstudio.spec 10 Apr 2009 13:14:59 -0000 1.18 +++ rawstudio.spec 27 Jul 2009 02:49:50 -0000 1.19 @@ -1,6 +1,6 @@ Name: rawstudio Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Read, manipulate and convert digital camera raw images Group: Applications/Multimedia @@ -74,6 +74,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Gianluca Sforna - 1.2-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 02:50:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:50:04 +0000 (UTC) Subject: rpms/razertool/devel razertool.spec,1.1,1.2 Message-ID: <20090727025004.B3F5211C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/razertool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2740 Modified Files: razertool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: razertool.spec =================================================================== RCS file: /cvs/pkgs/rpms/razertool/devel/razertool.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- razertool.spec 30 Apr 2009 06:53:35 -0000 1.1 +++ razertool.spec 27 Jul 2009 02:50:04 -0000 1.2 @@ -1,6 +1,6 @@ Name: razertool Version: 0.0.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool for controlling Razer Copperhead(TM) mice Group: User Interface/X Hardware Support @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_datadir}/hal/fdi/policy/10osvendor/15-%{name}.fdi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Andreas Osowski - 0.0.7-5 - Added Requires: hal From jkeating at fedoraproject.org Mon Jul 27 02:50:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:50:17 +0000 (UTC) Subject: rpms/rb_libtorrent/devel rb_libtorrent.spec,1.25,1.26 Message-ID: <20090727025017.3C28711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rb_libtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2930 Modified Files: rb_libtorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rb_libtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/rb_libtorrent/devel/rb_libtorrent.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- rb_libtorrent.spec 3 Jun 2009 05:22:28 -0000 1.25 +++ rb_libtorrent.spec 27 Jul 2009 02:50:17 -0000 1.26 @@ -3,7 +3,7 @@ Name: rb_libtorrent Version: 0.14.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C++ BitTorrent library aiming to be the best alternative Group: System Environment/Libraries @@ -181,6 +181,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Peter Gordon - 0.14.4-1 - Update to new upstream release (0.14.4). - Drop outdated Boost patch. From jkeating at fedoraproject.org Mon Jul 27 02:50:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:50:28 +0000 (UTC) Subject: rpms/rblcheck/devel rblcheck.spec,1.9,1.10 Message-ID: <20090727025028.8E8D411C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rblcheck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3072 Modified Files: rblcheck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rblcheck.spec =================================================================== RCS file: /cvs/pkgs/rpms/rblcheck/devel/rblcheck.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rblcheck.spec 25 Feb 2009 18:57:15 -0000 1.9 +++ rblcheck.spec 27 Jul 2009 02:50:28 -0000 1.10 @@ -4,7 +4,7 @@ Name: rblcheck Summary: Command-line interface to RBL-style listings Version: 1.5 -Release: 16%{?dist} +Release: 17%{?dist} Source0: http://dl.sf.net/rblcheck/rblcheck-%{version}.tar.gz Source1: rblcheckrc @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/rblcheckrc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:50:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:50:44 +0000 (UTC) Subject: rpms/rbldnsd/devel rbldnsd.spec,1.11,1.12 Message-ID: <20090727025044.7B40A11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rbldnsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3218 Modified Files: rbldnsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rbldnsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/rbldnsd/devel/rbldnsd.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- rbldnsd.spec 25 Feb 2009 18:58:21 -0000 1.11 +++ rbldnsd.spec 27 Jul 2009 02:50:44 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Small, fast daemon to serve DNSBLs Name: rbldnsd Version: 0.996b -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.corpit.ru/mjt/rbldnsd.html @@ -70,6 +70,9 @@ fi %{_initrddir}/rbldnsd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.996b-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.996b-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:51:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:51:07 +0000 (UTC) Subject: rpms/rcsslogplayer/devel rcsslogplayer.spec,1.9,1.10 Message-ID: <20090727025107.87C5D11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rcsslogplayer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3547 Modified Files: rcsslogplayer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rcsslogplayer.spec =================================================================== RCS file: /cvs/pkgs/rpms/rcsslogplayer/devel/rcsslogplayer.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rcsslogplayer.spec 22 May 2009 21:12:49 -0000 1.9 +++ rcsslogplayer.spec 27 Jul 2009 02:51:07 -0000 1.10 @@ -1,6 +1,6 @@ Name: rcsslogplayer Version: 13.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: RoboCup Soccer Simulator LogPlayer Group: Applications/System @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_libdir}/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 13.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Hedayat Vatankhah 13.1.0-5 - Rebuilt for the new boost version From jkeating at fedoraproject.org Mon Jul 27 02:51:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:51:18 +0000 (UTC) Subject: rpms/rcssmonitor/devel rcssmonitor.spec,1.7,1.8 Message-ID: <20090727025118.3ADCE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rcssmonitor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3692 Modified Files: rcssmonitor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rcssmonitor.spec =================================================================== RCS file: /cvs/pkgs/rpms/rcssmonitor/devel/rcssmonitor.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rcssmonitor.spec 7 Apr 2009 14:54:47 -0000 1.7 +++ rcssmonitor.spec 27 Jul 2009 02:51:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: rcssmonitor Version: 13.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: RoboCup 2D Soccer Simulator Monitor Group: Applications/System @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 13.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Hedayat Vatankhah 13.1.0-2 - Added a patch for gcc4.4 compilation fixing. From jkeating at fedoraproject.org Mon Jul 27 02:51:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:51:27 +0000 (UTC) Subject: rpms/rcssserver/devel rcssserver.spec,1.11,1.12 Message-ID: <20090727025127.EF91411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rcssserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3802 Modified Files: rcssserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rcssserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/rcssserver/devel/rcssserver.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- rcssserver.spec 22 May 2009 19:09:32 -0000 1.11 +++ rcssserver.spec 27 Jul 2009 02:51:27 -0000 1.12 @@ -1,6 +1,6 @@ Name: rcssserver Version: 13.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Robocup 2D Soccer Simulation Server Group: Applications/System @@ -98,6 +98,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 13.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Hedayat Vatankhah 13.2.0-2 - Rebuild for the new boost libraries From jkeating at fedoraproject.org Mon Jul 27 02:51:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:51:40 +0000 (UTC) Subject: rpms/rcssserver3d/devel rcssserver3d.spec,1.15,1.16 Message-ID: <20090727025140.0820411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rcssserver3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3951 Modified Files: rcssserver3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rcssserver3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/rcssserver3d/devel/rcssserver3d.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- rcssserver3d.spec 8 May 2009 14:22:17 -0000 1.15 +++ rcssserver3d.spec 27 Jul 2009 02:51:39 -0000 1.16 @@ -1,6 +1,6 @@ Name: rcssserver3d Version: 0.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Robocup 3D Soccer Simulation Server Group: Applications/System @@ -104,6 +104,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Hedayat Vatankhah 0.6.1-4 - Rebuild for boost-1.39 From jkeating at fedoraproject.org Mon Jul 27 02:51:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:51:51 +0000 (UTC) Subject: rpms/rdate/devel rdate.spec,1.27,1.28 Message-ID: <20090727025151.4566F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rdate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4110 Modified Files: rdate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rdate.spec =================================================================== RCS file: /cvs/pkgs/rpms/rdate/devel/rdate.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- rdate.spec 25 Feb 2009 19:14:33 -0000 1.27 +++ rdate.spec 27 Jul 2009 02:51:51 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Tool for getting the date/time from a remote machine Name: rdate Version: 1.4 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/System Source: ftp://people.redhat.com/sopwith/rdate-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/rdate.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:52:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:52:02 +0000 (UTC) Subject: rpms/rdesktop/devel rdesktop.spec,1.34,1.35 Message-ID: <20090727025202.43CF811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rdesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4270 Modified Files: rdesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rdesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/rdesktop/devel/rdesktop.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- rdesktop.spec 1 May 2009 20:13:01 -0000 1.34 +++ rdesktop.spec 27 Jul 2009 02:52:02 -0000 1.35 @@ -1,6 +1,6 @@ Name: rdesktop Version: 1.6.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: X client for remote desktop into Windows Terminal Server Group: User Interface/Desktops @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Soren Sandmann - 1.6.0-5 - Enable SmartCard support From jkeating at fedoraproject.org Mon Jul 27 02:52:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:52:14 +0000 (UTC) Subject: rpms/rdiff-backup/devel rdiff-backup.spec,1.32,1.33 Message-ID: <20090727025214.9279D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rdiff-backup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4440 Modified Files: rdiff-backup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rdiff-backup.spec =================================================================== RCS file: /cvs/pkgs/rpms/rdiff-backup/devel/rdiff-backup.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- rdiff-backup.spec 13 Apr 2009 05:14:49 -0000 1.32 +++ rdiff-backup.spec 27 Jul 2009 02:52:14 -0000 1.33 @@ -3,7 +3,7 @@ Version: 1.2.8 Summary: Convenient and transparent local/remote incremental mirror/backup Name: rdiff-backup -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.nongnu.org/rdiff-backup/ Source: http://savannah.nongnu.org/download/%{name}/%{name}-%{version}.tar.gz @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Kevin Fenzi - 1.2.8-2 - Add conditional for egg info file (bug 490341) From jkeating at fedoraproject.org Mon Jul 27 02:52:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:52:26 +0000 (UTC) Subject: rpms/rdist/devel rdist.spec,1.24,1.25 Message-ID: <20090727025226.8D91111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rdist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4567 Modified Files: rdist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rdist.spec =================================================================== RCS file: /cvs/pkgs/rpms/rdist/devel/rdist.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- rdist.spec 25 Feb 2009 19:17:20 -0000 1.24 +++ rdist.spec 27 Jul 2009 02:52:26 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Maintains identical copies of files on multiple machines. Name: rdist Version: 6.1.5 -Release: 46 +Release: 47 Epoch: 1 License: BSD Group: Applications/System @@ -89,6 +89,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/rdist.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:6.1.5-47 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:6.1.5-46 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:53:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:53:08 +0000 (UTC) Subject: rpms/readahead/devel readahead.spec,1.56,1.57 Message-ID: <20090727025308.95B9A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/readahead/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5079 Modified Files: readahead.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: readahead.spec =================================================================== RCS file: /cvs/pkgs/rpms/readahead/devel/readahead.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- readahead.spec 15 Jul 2009 06:51:35 -0000 1.56 +++ readahead.spec 27 Jul 2009 02:53:08 -0000 1.57 @@ -1,7 +1,7 @@ Summary: Read a preset list of files into memory Name: readahead Version: 1.4.9 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -68,6 +68,9 @@ fi /sbin/readahead-collector %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Harald Hoyer 1.4.9-2 - add libblkid-devel BuildRequirement From jkeating at fedoraproject.org Mon Jul 27 02:53:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:53:21 +0000 (UTC) Subject: rpms/readline/devel readline.spec,1.43,1.44 Message-ID: <20090727025321.D3C4811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/readline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5237 Modified Files: readline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: readline.spec =================================================================== RCS file: /cvs/pkgs/rpms/readline/devel/readline.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- readline.spec 14 Jul 2009 16:46:14 -0000 1.43 +++ readline.spec 27 Jul 2009 02:53:21 -0000 1.44 @@ -1,7 +1,7 @@ Summary: A library for editing typed command lines Name: readline Version: 6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: System Environment/Libraries URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html @@ -130,6 +130,9 @@ fi %{_libdir}/lib*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Miroslav Lichvar 6.0-1 - update to 6.0 - include patches 001, 002, 003 From jkeating at fedoraproject.org Mon Jul 27 02:53:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:53:41 +0000 (UTC) Subject: rpms/rear/devel rear.spec,1.1,1.2 Message-ID: <20090727025341.1BCB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5420 Modified Files: rear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rear.spec =================================================================== RCS file: /cvs/pkgs/rpms/rear/devel/rear.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rear.spec 10 Apr 2009 13:49:42 -0000 1.1 +++ rear.spec 27 Jul 2009 02:53:40 -0000 1.2 @@ -1,6 +1,6 @@ Name: rear Version: 1.7.20 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Relax and Recover (ReaR) is a Linux Disaster Recovery framework Group: Applications/Archiving @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Gratien D'haese - 1.7.20-1 - update %%_localstatedir/rear to %%_localstatedir/lib/rear From jkeating at fedoraproject.org Mon Jul 27 02:53:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:53:55 +0000 (UTC) Subject: rpms/reciteword/devel reciteword.spec,1.11,1.12 Message-ID: <20090727025355.92E9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/reciteword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5656 Modified Files: reciteword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: reciteword.spec =================================================================== RCS file: /cvs/pkgs/rpms/reciteword/devel/reciteword.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- reciteword.spec 24 Apr 2009 10:55:27 -0000 1.11 +++ reciteword.spec 27 Jul 2009 02:53:55 -0000 1.12 @@ -1,7 +1,7 @@ Name: reciteword Summary: Recite Word Easily Version: 0.8.4 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Productivity License: GPLv3 URL: http://reciteword.sourceforge.net @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Milos Jakubicek - 0.8.4-5 - Fix FTBFS: added reciteword-gcc44.patch From jkeating at fedoraproject.org Mon Jul 27 02:54:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:54:07 +0000 (UTC) Subject: rpms/recode/devel recode.spec,1.14,1.15 Message-ID: <20090727025407.178CC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/recode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5810 Modified Files: recode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: recode.spec =================================================================== RCS file: /cvs/pkgs/rpms/recode/devel/recode.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- recode.spec 25 Feb 2009 19:26:00 -0000 1.14 +++ recode.spec 27 Jul 2009 02:54:06 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Conversion between character sets and surfaces Name: recode Version: 3.6 -Release: 27%{?dist} +Release: 28%{?dist} License: GPLv2+ Group: Applications/File Source: http://recode.progiciels-bpi.ca/archives/recode-%{version}.tar.gz @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.6-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:54:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:54:19 +0000 (UTC) Subject: rpms/recordmydesktop/devel recordmydesktop.spec,1.12,1.13 Message-ID: <20090727025419.2FF8711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/recordmydesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5965 Modified Files: recordmydesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: recordmydesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/recordmydesktop/devel/recordmydesktop.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- recordmydesktop.spec 1 Apr 2009 03:32:42 -0000 1.12 +++ recordmydesktop.spec 27 Jul 2009 02:54:18 -0000 1.13 @@ -1,6 +1,6 @@ Name: recordmydesktop Version: 0.3.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Desktop session recorder with audio and video Group: Applications/Multimedia @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Sindre Pedersen Bj?rdal - 0.3.8.1-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 02:54:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:54:34 +0000 (UTC) Subject: rpms/redet/devel redet.spec,1.5,1.6 Message-ID: <20090727025434.9926611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6127 Modified Files: redet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redet.spec =================================================================== RCS file: /cvs/pkgs/rpms/redet/devel/redet.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- redet.spec 25 Feb 2009 19:27:53 -0000 1.5 +++ redet.spec 27 Jul 2009 02:54:34 -0000 1.6 @@ -6,7 +6,7 @@ Summary: Regular expression development and execution tool Name: redet Version: 8.26 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3 Group: Development/Tools URL: http://www.billposer.org/Software/redet.html @@ -94,6 +94,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/%{name}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.26-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:54:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:54:46 +0000 (UTC) Subject: rpms/redet-doc/devel redet-doc.spec,1.5,1.6 Message-ID: <20090727025446.5FCA611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redet-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6290 Modified Files: redet-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redet-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/redet-doc/devel/redet-doc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- redet-doc.spec 25 Feb 2009 19:28:53 -0000 1.5 +++ redet-doc.spec 27 Jul 2009 02:54:46 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Documentation for the Redet tool Name: redet-doc Version: 8.25 -Release: 2 +Release: 3 License: GPLv3 Group: Documentation URL: http://www.billposer.org/Software/redet.html @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/Redet/Manual %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:54:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:54:57 +0000 (UTC) Subject: rpms/redhat-lsb/devel redhat-lsb.spec,1.45,1.46 Message-ID: <20090727025457.37EF311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redhat-lsb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6426 Modified Files: redhat-lsb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redhat-lsb.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-lsb/devel/redhat-lsb.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- redhat-lsb.spec 24 Apr 2009 06:34:08 -0000 1.45 +++ redhat-lsb.spec 27 Jul 2009 02:54:57 -0000 1.46 @@ -49,7 +49,7 @@ Summary: LSB support for Red Hat Linux Name: redhat-lsb Version: 3.2 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.linuxfoundation.org/collaborate/workgroups/lsb Source0: %{name}-%{version}-%{srcrelease}.tar.bz2 Patch0: lsb-release-3.1-update-init-functions.patch @@ -645,6 +645,9 @@ fi #/usr/X11R6/lib/X11/rgb.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Jens Petersen - improve url to LSB WG From jkeating at fedoraproject.org Mon Jul 27 02:55:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:55:08 +0000 (UTC) Subject: rpms/redhat-menus/devel redhat-menus.spec,1.103,1.104 Message-ID: <20090727025508.7A5C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redhat-menus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6574 Modified Files: redhat-menus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redhat-menus.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-menus/devel/redhat-menus.spec,v retrieving revision 1.103 retrieving revision 1.104 diff -u -p -r1.103 -r1.104 --- redhat-menus.spec 25 Feb 2009 05:29:33 -0000 1.103 +++ redhat-menus.spec 27 Jul 2009 02:55:08 -0000 1.104 @@ -4,7 +4,7 @@ Summary: Configuration and data files for the desktop menus Name: redhat-menus Version: 10.0.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.redhat.com Source0: %{name}-%{version}.tar.gz License: GPL+ @@ -91,6 +91,9 @@ update-desktop-database %{_datadir}/appl %{_datadir}/desktop-directories/*.directory %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 10.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Matthias Clasen - 10.0.1-3 - Make adding submenus to Preferences work From jkeating at fedoraproject.org Mon Jul 27 02:55:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:55:19 +0000 (UTC) Subject: rpms/redhat-rpm-config/devel redhat-rpm-config.spec,1.68,1.69 Message-ID: <20090727025519.30AF911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redhat-rpm-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6725 Modified Files: redhat-rpm-config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redhat-rpm-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/redhat-rpm-config/devel/redhat-rpm-config.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- redhat-rpm-config.spec 22 Jul 2009 20:27:08 -0000 1.68 +++ redhat-rpm-config.spec 27 Jul 2009 02:55:19 -0000 1.69 @@ -1,7 +1,7 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config Version: 9.0.3 -Release: 12%{?dist} +Release: 13%{?dist} # No version specified. License: GPL+ Group: Development/System @@ -41,6 +41,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 9.0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Bill Nottingham 9.0.3-12 - use XZ payload compression for binary packages From jkeating at fedoraproject.org Mon Jul 27 02:55:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:55:30 +0000 (UTC) Subject: rpms/redir/devel redir.spec,1.1,1.2 Message-ID: <20090727025530.156D711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6878 Modified Files: redir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redir.spec =================================================================== RCS file: /cvs/pkgs/rpms/redir/devel/redir.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- redir.spec 7 Apr 2009 10:17:03 -0000 1.1 +++ redir.spec 27 Jul 2009 02:55:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: redir Version: 2.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Redirect TCP connections Group: Applications/Internet @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Itamar Reis Peixoto - 2.2.1-3 - fix compile warning with gcc 4.4 - include README and COPYING into %%doc section From jkeating at fedoraproject.org Mon Jul 27 02:55:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:55:40 +0000 (UTC) Subject: rpms/redland/devel redland.spec,1.16,1.17 Message-ID: <20090727025540.EB91B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redland/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7003 Modified Files: redland.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redland.spec =================================================================== RCS file: /cvs/pkgs/rpms/redland/devel/redland.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- redland.spec 1 May 2009 15:55:14 -0000 1.16 +++ redland.spec 27 Jul 2009 02:55:40 -0000 1.17 @@ -1,6 +1,6 @@ Name: redland Version: 1.0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: RDF Application Framework Group: System Environment/Libraries @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 01 2009 Rex Dieter - 1.0.7-7 - slighgly less ugly rpath hack - cleanup %%files From jkeating at fedoraproject.org Mon Jul 27 02:52:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:52:57 +0000 (UTC) Subject: rpms/re2c/devel re2c.spec,1.5,1.6 Message-ID: <20090727025257.AC17E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/re2c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4912 Modified Files: re2c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: re2c.spec =================================================================== RCS file: /cvs/pkgs/rpms/re2c/devel/re2c.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- re2c.spec 25 Feb 2009 19:19:07 -0000 1.5 +++ re2c.spec 27 Jul 2009 02:52:57 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Tool for generating C-based recognizers from regular expressions Name: re2c Version: 0.12.3 -Release: 3%{?dist} +Release: 4%{?dist} License: Public Domain Group: Development/Tools URL: http://re2c.sourceforge.net/ @@ -51,6 +51,9 @@ find . -type f -exec chmod -x {} \; %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:55:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:55:50 +0000 (UTC) Subject: rpms/redmode/devel redmode.spec,1.3,1.4 Message-ID: <20090727025550.D4B6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/redmode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7137 Modified Files: redmode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: redmode.spec =================================================================== RCS file: /cvs/pkgs/rpms/redmode/devel/redmode.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- redmode.spec 24 Mar 2009 15:06:30 -0000 1.3 +++ redmode.spec 27 Jul 2009 02:55:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: redmode Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Switch to and from night red mode Group: Applications/Multimedia @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-redmode.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 1.1-1 - New (though comparably ugly) icon - Fix menu categories From jkeating at fedoraproject.org Mon Jul 27 02:56:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:56:02 +0000 (UTC) Subject: rpms/referencer/devel referencer.spec,1.21,1.22 Message-ID: <20090727025602.7B9A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/referencer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7269 Modified Files: referencer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: referencer.spec =================================================================== RCS file: /cvs/pkgs/rpms/referencer/devel/referencer.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- referencer.spec 29 Jun 2009 01:43:08 -0000 1.21 +++ referencer.spec 27 Jul 2009 02:56:02 -0000 1.22 @@ -3,7 +3,7 @@ Name: referencer Summary: A document organiser and bibliography manager for Gnome Version: 1.1.5 -Release: 7%{?dist} +Release: 8%{?dist} Group: Applications/System License: GPLv2 URL: http://icculus.org/referencer @@ -81,6 +81,9 @@ update-mime-database %{_datadir}/mime &> %{python_sitelib}/referencer/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Deji Akingunola - 1.1.5-7 - Fix gconf key lookup if GConf disabledplugin key is not set (Denis Leroy, Fedora bug #508011) From jkeating at fedoraproject.org Mon Jul 27 02:56:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:56:13 +0000 (UTC) Subject: rpms/refmac-dictionary/devel refmac-dictionary.spec,1.3,1.4 Message-ID: <20090727025613.2CDBF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/refmac-dictionary/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7406 Modified Files: refmac-dictionary.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: refmac-dictionary.spec =================================================================== RCS file: /cvs/pkgs/rpms/refmac-dictionary/devel/refmac-dictionary.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- refmac-dictionary.spec 20 May 2009 23:58:44 -0000 1.3 +++ refmac-dictionary.spec 27 Jul 2009 02:56:12 -0000 1.4 @@ -1,7 +1,7 @@ Name: refmac-dictionary Summary: Refmac ligand dictionaries Version: 5.12 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.ysbl.york.ac.uk/~garib/refmac/latest_refmac.html @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}-%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Tim Fenn - 5.12-1 - update to 5.12 From jkeating at fedoraproject.org Mon Jul 27 02:56:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:56:25 +0000 (UTC) Subject: rpms/regexp/devel regexp.spec,1.41,1.42 Message-ID: <20090727025625.6F79811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/regexp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7531 Modified Files: regexp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: regexp.spec =================================================================== RCS file: /cvs/pkgs/rpms/regexp/devel/regexp.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- regexp.spec 25 Feb 2009 19:35:55 -0000 1.41 +++ regexp.spec 27 Jul 2009 02:56:25 -0000 1.42 @@ -36,7 +36,7 @@ Name: regexp Version: 1.5 -Release: 3.2%{dist} +Release: 4.2%{dist} Epoch: 0 Summary: Simple regular expressions API License: ASL 2.0 @@ -148,6 +148,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.5-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:1.5-3.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:56:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:56:38 +0000 (UTC) Subject: rpms/regexxer/devel regexxer.spec,1.13,1.14 Message-ID: <20090727025638.3839311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/regexxer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7695 Modified Files: regexxer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: regexxer.spec =================================================================== RCS file: /cvs/pkgs/rpms/regexxer/devel/regexxer.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- regexxer.spec 25 Feb 2009 19:36:58 -0000 1.13 +++ regexxer.spec 27 Jul 2009 02:56:38 -0000 1.14 @@ -1,6 +1,6 @@ Name: regexxer Version: 0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A nifty GUI search/replace tool Group: Applications/Text @@ -91,6 +91,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/48x48/apps/%{name}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:56:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:56:50 +0000 (UTC) Subject: rpms/regionset/devel regionset.spec,1.4,1.5 Message-ID: <20090727025650.26AE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/regionset/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7851 Modified Files: regionset.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: regionset.spec =================================================================== RCS file: /cvs/pkgs/rpms/regionset/devel/regionset.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- regionset.spec 25 Feb 2009 19:37:57 -0000 1.4 +++ regionset.spec 27 Jul 2009 02:56:49 -0000 1.5 @@ -1,6 +1,6 @@ Name: regionset Version: 0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Reads/sets the region code of DVD drives URL: http://linvdr.org/projects/regionset/ Group: Applications/System @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %attr(755,root,root) %{_sbindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:57:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:57:02 +0000 (UTC) Subject: rpms/reinteract/devel reinteract.spec,1.2,1.3 Message-ID: <20090727025702.762C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/reinteract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7983 Modified Files: reinteract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: reinteract.spec =================================================================== RCS file: /cvs/pkgs/rpms/reinteract/devel/reinteract.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- reinteract.spec 26 Mar 2009 17:18:31 -0000 1.2 +++ reinteract.spec 27 Jul 2009 02:57:02 -0000 1.3 @@ -2,7 +2,7 @@ Name: reinteract Version: 0.5.0 -Release: 4 +Release: 5 Summary: Interactive Python shell Group: Applications/Science @@ -82,6 +82,9 @@ fi /usr/bin/update-desktop-database &> /dev/null ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Owen Taylor - 0.5.0-4 - Bump release to get proper F-9 => F-10 => devel ordering From jkeating at fedoraproject.org Mon Jul 27 02:57:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:57:15 +0000 (UTC) Subject: rpms/reiserfs-utils/devel reiserfs-utils.spec,1.20,1.21 Message-ID: <20090727025715.55EDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/reiserfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8174 Modified Files: reiserfs-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: reiserfs-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/reiserfs-utils/devel/reiserfs-utils.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- reiserfs-utils.spec 1 Apr 2009 17:18:00 -0000 1.20 +++ reiserfs-utils.spec 27 Jul 2009 02:57:15 -0000 1.21 @@ -1,6 +1,6 @@ Name: reiserfs-utils Version: 3.6.21 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for creating, repairing, and debugging ReiserFS filesystems #URL: http://www.namesys.com/ URL: http://ftp.kernel.org/pub/linux/utils/fs/reiserfs/ @@ -63,6 +63,9 @@ install -m644 mkreiserfs/mkreiserfs.8 $R rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:3.6.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Itamar Reis Peixoto - 2:3.6.21-1 - 3.6.21 From jkeating at fedoraproject.org Mon Jul 27 02:57:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:57:27 +0000 (UTC) Subject: rpms/rekall/devel rekall.spec,1.41,1.42 Message-ID: <20090727025727.6BE9311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rekall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8308 Modified Files: rekall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rekall.spec =================================================================== RCS file: /cvs/pkgs/rpms/rekall/devel/rekall.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- rekall.spec 1 Jun 2009 18:54:34 -0000 1.41 +++ rekall.spec 27 Jul 2009 02:57:27 -0000 1.42 @@ -3,7 +3,7 @@ Name: rekall Summary: A KDE database front-end application Version: 2.4.6 -Release: 11%{?dist} +Release: 12%{?dist} Group: Development/Tools License: GPLv2 URL: http://www.rekallrevealed.org/ @@ -340,6 +340,9 @@ fi %{_libdir}/librekallqt_driver_sqlite3.so* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Dan Horak - 2.4.6-11 - mark s390x arch as 64-bit From jkeating at fedoraproject.org Mon Jul 27 02:57:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:57:39 +0000 (UTC) Subject: rpms/relaxngDatatype/devel relaxngDatatype.spec,1.3,1.4 Message-ID: <20090727025739.64B9511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/relaxngDatatype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8466 Modified Files: relaxngDatatype.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: relaxngDatatype.spec =================================================================== RCS file: /cvs/pkgs/rpms/relaxngDatatype/devel/relaxngDatatype.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- relaxngDatatype.spec 25 Feb 2009 19:40:45 -0000 1.3 +++ relaxngDatatype.spec 27 Jul 2009 02:57:38 -0000 1.4 @@ -30,7 +30,7 @@ Name: relaxngDatatype Version: 1.0 -Release: 4.2%{?dist} +Release: 5.2%{?dist} Summary: RELAX NG Datatype API Group: Development/Libraries/Java @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-4.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:50:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:50:56 +0000 (UTC) Subject: rpms/rcs/devel rcs.spec,1.22,1.23 Message-ID: <20090727025056.8BD6511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3374 Modified Files: rcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/rcs/devel/rcs.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- rcs.spec 25 Feb 2009 18:59:25 -0000 1.22 +++ rcs.spec 27 Jul 2009 02:50:56 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Revision Control System (RCS) file version management tools Name: rcs Version: 5.7 -Release: 34%{?dist} +Release: 35%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.gnu.org/software/rcs/ @@ -54,6 +54,9 @@ make DESTDIR=${RPM_BUILD_ROOT} man1dir=% rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.7-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.7-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:52:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:52:41 +0000 (UTC) Subject: rpms/rdma/devel rdma.spec,1.3,1.4 Message-ID: <20090727025241.3C5EB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rdma/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4728 Modified Files: rdma.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rdma.spec =================================================================== RCS file: /cvs/pkgs/rpms/rdma/devel/rdma.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rdma.spec 25 Feb 2009 19:18:14 -0000 1.3 +++ rdma.spec 27 Jul 2009 02:52:40 -0000 1.4 @@ -6,7 +6,7 @@ Summary: Infiniband/iWARP Kernel Module Initializer Name: rdma Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Base Source0: rdma.conf @@ -62,6 +62,9 @@ fi %{_sysconfdir}/sysconfig/network-scripts/ifup-ib %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:57:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:57:50 +0000 (UTC) Subject: rpms/remctl/devel remctl.spec,1.5,1.6 Message-ID: <20090727025750.9A1B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/remctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8620 Modified Files: remctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: remctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/remctl/devel/remctl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- remctl.spec 25 Feb 2009 19:41:38 -0000 1.5 +++ remctl.spec 27 Jul 2009 02:57:50 -0000 1.6 @@ -1,6 +1,6 @@ Name: remctl Version: 2.11 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Client/server for Kerberos-authenticated command execution Group: Applications/Internet @@ -98,6 +98,9 @@ rm -rf %{buildroot} %{_mandir}/man3/Net::Remctl* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:58:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:58:02 +0000 (UTC) Subject: rpms/remind/devel remind.spec,1.12,1.13 Message-ID: <20090727025802.E9B7A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/remind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8765 Modified Files: remind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: remind.spec =================================================================== RCS file: /cvs/pkgs/rpms/remind/devel/remind.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- remind.spec 31 May 2009 18:43:45 -0000 1.12 +++ remind.spec 27 Jul 2009 02:58:02 -0000 1.13 @@ -1,6 +1,6 @@ Name: remind Version: 03.01.07 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A sophisticated calendar and alarm program Group: Applications/Productivity @@ -98,6 +98,9 @@ desktop-file-install --vendor "fedora" %{_mandir}/man1/tkremind.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 03.01.07-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Ray Van Dolson - 03.01.07-1 - Upstream released 03.01.07 From jkeating at fedoraproject.org Mon Jul 27 02:58:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:58:15 +0000 (UTC) Subject: rpms/remoot/devel remoot.spec,1.3,1.4 Message-ID: <20090727025815.A346211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/remoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8925 Modified Files: remoot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: remoot.spec =================================================================== RCS file: /cvs/pkgs/rpms/remoot/devel/remoot.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- remoot.spec 25 Feb 2009 19:43:23 -0000 1.3 +++ remoot.spec 27 Jul 2009 02:58:15 -0000 1.4 @@ -1,6 +1,6 @@ Name: remoot Version: 0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Pseudo-universal remote control wrapper License: Artistic 2.0 @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:58:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:58:27 +0000 (UTC) Subject: rpms/ren/devel ren.spec,1.6,1.7 Message-ID: <20090727025827.6FB5011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ren/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9078 Modified Files: ren.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ren.spec =================================================================== RCS file: /cvs/pkgs/rpms/ren/devel/ren.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ren.spec 25 Feb 2009 19:44:19 -0000 1.6 +++ ren.spec 27 Jul 2009 02:58:27 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Rename multiple files Name: ren Version: 1.0 -Release: 13%{?dist}.2.1 +Release: 14%{?dist}.2.1 License: Public Domain Group: Applications/File Source: ftp://sunsite.unc.edu/pub/Linux/utils/file/ren-1.0.tar.gz @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_bindir}/ren %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-14.2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-13.2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:58:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:58:39 +0000 (UTC) Subject: rpms/renameutils/devel renameutils.spec,1.1,1.2 Message-ID: <20090727025839.088AB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/renameutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9236 Modified Files: renameutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: renameutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/renameutils/devel/renameutils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- renameutils.spec 22 Mar 2009 19:12:52 -0000 1.1 +++ renameutils.spec 27 Jul 2009 02:58:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: renameutils Version: 0.10.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A set of programs to make renaming and copying of files easier Group: Applications/File @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Michael Ploujnikov 0.10.0-3 - Made the summary more exact From jkeating at fedoraproject.org Mon Jul 27 02:58:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:58:51 +0000 (UTC) Subject: rpms/renrot/devel renrot.spec,1.16,1.17 Message-ID: <20090727025851.78D5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/renrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9372 Modified Files: renrot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: renrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/renrot/devel/renrot.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- renrot.spec 25 Feb 2009 19:45:27 -0000 1.16 +++ renrot.spec 27 Jul 2009 02:58:51 -0000 1.17 @@ -3,7 +3,7 @@ Name: renrot Version: 1.1 -Release: 1%{?dotrc}%{?dist}.1 +Release: 1%{?dotrc}%{?dist}.2 License: Artistic 2.0 Group: Applications/Multimedia Summary: A program to rename and rotate files according to EXIF tags @@ -77,6 +77,9 @@ fi %config(noreplace) %{_sysconfdir}/%{name}/tags.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-1.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:59:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:59:02 +0000 (UTC) Subject: rpms/repoview/devel repoview.spec,1.14,1.15 Message-ID: <20090727025902.5FF8F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/repoview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9512 Modified Files: repoview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: repoview.spec =================================================================== RCS file: /cvs/pkgs/rpms/repoview/devel/repoview.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- repoview.spec 27 Mar 2009 03:54:50 -0000 1.14 +++ repoview.spec 27 Jul 2009 02:59:02 -0000 1.15 @@ -1,6 +1,6 @@ Name: repoview Version: 0.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Creates a set of static HTML pages in a yum repository Group: Applications/System @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Konstantin Ryabitsev - 0.6.3-1 - Upstream 0.6.3 - Upstream fix for mixed-case packages and md5 warnings (obsoletes patch) From mclasen at fedoraproject.org Mon Jul 27 02:59:18 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 02:59:18 +0000 (UTC) Subject: rpms/brasero/devel brasero.spec,1.54,1.55 Message-ID: <20090727025918.8816A11C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/brasero/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9497 Modified Files: brasero.spec Log Message: Fix spec Index: brasero.spec =================================================================== RCS file: /cvs/pkgs/rpms/brasero/devel/brasero.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- brasero.spec 27 Jul 2009 02:48:47 -0000 1.54 +++ brasero.spec 27 Jul 2009 02:59:18 -0000 1.55 @@ -195,7 +195,8 @@ fi %files devel %defattr(-,root,root,-) -%doc %{_datadir}/gtk-doc/html/brasero ChangeLog +%doc %{_datadir}/gtk-doc/html/brasero +%doc ChangeLog %{_includedir}/brasero %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc From jkeating at fedoraproject.org Mon Jul 27 02:59:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:59:15 +0000 (UTC) Subject: rpms/resapplet/devel resapplet.spec,1.8,1.9 Message-ID: <20090727025915.B978D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/resapplet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9682 Modified Files: resapplet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: resapplet.spec =================================================================== RCS file: /cvs/pkgs/rpms/resapplet/devel/resapplet.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- resapplet.spec 25 Feb 2009 19:48:23 -0000 1.8 +++ resapplet.spec 27 Jul 2009 02:59:15 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Resolution Switching Applet Name: resapplet Version: 0.1.1 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ and GPLv2 # This is the best we have to silence rpmlint: URL: http://svn.gnome.org/viewcvs/resapplet/ @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/gnome/48x48/apps/resapplet.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 02:59:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:59:27 +0000 (UTC) Subject: rpms/resource-agents/devel resource-agents.spec,1.10,1.11 Message-ID: <20090727025927.76A3811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/resource-agents/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9847 Modified Files: resource-agents.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/devel/resource-agents.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- resource-agents.spec 8 Jul 2009 20:40:51 -0000 1.10 +++ resource-agents.spec 27 Jul 2009 02:59:27 -0000 1.11 @@ -19,7 +19,7 @@ Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 12%{?alphatag:.%{alphatag}}%{?dist} +Release: 13%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -72,6 +72,9 @@ services to operate in a High Availabili %{_datadir}/cluster %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Fabio M. Di Nitto - 3.0.0-12 - - spec file updates: * Update copyright header From jkeating at fedoraproject.org Mon Jul 27 02:59:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:59:41 +0000 (UTC) Subject: rpms/rest/devel rest.spec,1.3,1.4 Message-ID: <20090727025941.BA77F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9991 Modified Files: rest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rest.spec =================================================================== RCS file: /cvs/pkgs/rpms/rest/devel/rest.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rest.spec 14 Jul 2009 10:51:47 -0000 1.3 +++ rest.spec 27 Jul 2009 02:59:41 -0000 1.4 @@ -1,6 +1,6 @@ Name: rest Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library for access to RESTful web services Group: System Environment/Libraries @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/rest %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Peter Robinson 0.5-1 - Update to 0.5 From jkeating at fedoraproject.org Mon Jul 27 02:59:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 02:59:53 +0000 (UTC) Subject: rpms/revelation/devel revelation.spec,1.36,1.37 Message-ID: <20090727025953.37E4611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/revelation/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10198 Modified Files: revelation.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: revelation.spec =================================================================== RCS file: /cvs/pkgs/rpms/revelation/devel/revelation.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- revelation.spec 25 Feb 2009 19:49:19 -0000 1.36 +++ revelation.spec 27 Jul 2009 02:59:53 -0000 1.37 @@ -4,7 +4,7 @@ Summary: Password manager for GNOME 2 Name: revelation Version: 0.4.11 -Release: 8 +Release: 9 License: GPLv2+ Group: Applications/Productivity Source0: ftp://oss.codepoet.no/revelation/revelation-0.4.11.tar.bz2 @@ -108,6 +108,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %{_libexecdir}/revelation-applet %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.11-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.11-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:00:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:00:13 +0000 (UTC) Subject: rpms/rfdump/devel rfdump.spec,1.3,1.4 Message-ID: <20090727030013.AC70611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rfdump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10375 Modified Files: rfdump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rfdump.spec =================================================================== RCS file: /cvs/pkgs/rpms/rfdump/devel/rfdump.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rfdump.spec 2 May 2009 21:27:57 -0000 1.3 +++ rfdump.spec 27 Jul 2009 03:00:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: rfdump Version: 1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: RFID tags detector Group: Applications/Productivity @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ville Skytt? - 1.6-4 - Patch to honor $RPM_OPT_FLAGS during build. - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Mon Jul 27 03:00:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:00:30 +0000 (UTC) Subject: rpms/rhdb-utils/devel rhdb-utils.spec,1.17,1.18 Message-ID: <20090727030030.E243C11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhdb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10589 Modified Files: rhdb-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhdb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhdb-utils/devel/rhdb-utils.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- rhdb-utils.spec 25 Feb 2009 19:52:08 -0000 1.17 +++ rhdb-utils.spec 27 Jul 2009 03:00:30 -0000 1.18 @@ -6,7 +6,7 @@ Summary: Miscellaneous utilities for PostgreSQL - Red Hat Edition Name: rhdb-utils Version: 8.3.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://sources.redhat.com/rhdb/ License: GPLv2+ Group: Applications/Databases @@ -50,6 +50,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc ChangeLog README.pg_filedump %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:00:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:00:48 +0000 (UTC) Subject: rpms/rhino/devel rhino.spec,1.8,1.9 Message-ID: <20090727030048.21E8A11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10811 Modified Files: rhino.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhino.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhino/devel/rhino.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rhino.spec 1 Jun 2009 17:34:28 -0000 1.8 +++ rhino.spec 27 Jul 2009 03:00:47 -0000 1.9 @@ -32,7 +32,7 @@ Name: rhino Version: 1.7 -Release: 0.6.r2%{?dist} +Release: 0.7.r2%{?dist} Epoch: 0 Summary: JavaScript for Java License: MPLv1.1 or GPLv2+ @@ -162,6 +162,9 @@ popd %doc %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.7-0.7.r2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 31 2009 Toshio Kuratomi - 0:1.7-0.6.r2 - Update to rhino1_7R2 - Add patch from Steven Elliott to fix exception in the interpreter shell. From jkeating at fedoraproject.org Mon Jul 27 03:01:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:01:04 +0000 (UTC) Subject: rpms/rhm/devel rhm.spec,1.47,1.48 Message-ID: <20090727030104.D4B5911C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11003 Modified Files: rhm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhm/devel/rhm.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- rhm.spec 7 Jul 2009 16:02:12 -0000 1.47 +++ rhm.spec 27 Jul 2009 03:01:04 -0000 1.48 @@ -8,7 +8,7 @@ Name: rhm Version: 0.5.%{svnrev} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Red Hat persistence extension to the Qpid messaging system Group: System Environment/Libraries License: LGPLv2+ @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3465-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Nuno Santos - 0.5.3465-1 - Rebased to svn rev 3465/788782 From jkeating at fedoraproject.org Mon Jul 27 03:01:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:01:23 +0000 (UTC) Subject: rpms/rhnlib/devel rhnlib.spec,1.1,1.2 Message-ID: <20090727030123.7062311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhnlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11277 Modified Files: rhnlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhnlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhnlib/devel/rhnlib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rhnlib.spec 16 Mar 2009 08:44:52 -0000 1.1 +++ rhnlib.spec 27 Jul 2009 03:01:23 -0000 1.2 @@ -5,7 +5,7 @@ Name: rhnlib URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 2.5.10 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Libraries License: GPLv2 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Miroslav Suchy 2.5.10-1 - point Source0 to Fedorahosted.org From jkeating at fedoraproject.org Mon Jul 27 03:01:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:01:39 +0000 (UTC) Subject: rpms/rhnpush/devel rhnpush.spec,1.1,1.2 Message-ID: <20090727030139.B39F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhnpush/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11616 Modified Files: rhnpush.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhnpush.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhnpush/devel/rhnpush.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rhnpush.spec 27 Feb 2009 09:08:22 -0000 1.1 +++ rhnpush.spec 27 Jul 2009 03:01:39 -0000 1.2 @@ -6,7 +6,7 @@ Group: Applications/System License: GPLv2 URL: http://fedorahosted.org/spacewalk Version: 0.4.5 -Release: 1%{?dist} +Release: 2%{?dist} Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/solaris2mpm.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 jesus m. rodriguez 0.4.5-1 - rebuild From jkeating at fedoraproject.org Mon Jul 27 03:01:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:01:57 +0000 (UTC) Subject: rpms/rhpl/devel rhpl.spec,1.122,1.123 Message-ID: <20090727030157.6499911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11924 Modified Files: rhpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhpl/devel/rhpl.spec,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- rhpl.spec 14 Apr 2009 19:37:14 -0000 1.122 +++ rhpl.spec 27 Jul 2009 03:01:57 -0000 1.123 @@ -3,7 +3,7 @@ Summary: Library of Python code used by installation and configuration tools Name: rhpl Version: 0.220 -Release: 1 +Release: 2 Source0: %{name}-%{version}.tar.bz2 License: GPLv2+ Group: System Environment/Libraries @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/rhpl %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.220-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Chris Lumens 0.220-1 - Attempt to fix an error when catching OSError (#493271). From jkeating at fedoraproject.org Mon Jul 27 03:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:02:15 +0000 (UTC) Subject: rpms/rhpxl/devel rhpxl.spec,1.85,1.86 Message-ID: <20090727030215.6F5E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhpxl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12204 Modified Files: rhpxl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhpxl.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhpxl/devel/rhpxl.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- rhpxl.spec 25 Feb 2009 19:56:03 -0000 1.85 +++ rhpxl.spec 27 Jul 2009 03:02:15 -0000 1.86 @@ -4,7 +4,7 @@ Summary: Python library for configuring Name: rhpxl URL: http://fedoraproject.org/wiki/rhpxl Version: 1.12 -Release: 2%{?dist} +Release: 3%{?dist} Source0: https://fedorahosted.org/releases/r/h/%{name}/%{name}-%{version}.tar.gz License: GPLv2 Group: System Environment/Libraries @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{python_sitearch}/*egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:02:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:02:37 +0000 (UTC) Subject: rpms/rhythmbox/devel rhythmbox.spec,1.254,1.255 Message-ID: <20090727030237.4A38F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rhythmbox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12502 Modified Files: rhythmbox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rhythmbox.spec =================================================================== RCS file: /cvs/pkgs/rpms/rhythmbox/devel/rhythmbox.spec,v retrieving revision 1.254 retrieving revision 1.255 diff -u -p -r1.254 -r1.255 --- rhythmbox.spec 9 Jul 2009 18:47:40 -0000 1.254 +++ rhythmbox.spec 27 Jul 2009 03:02:35 -0000 1.255 @@ -3,7 +3,7 @@ Name: rhythmbox Summary: Music Management Application Version: 0.12.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ with exceptions and GFDL Group: Applications/Multimedia URL: http://projects.gnome.org/rhythmbox/ @@ -215,6 +215,9 @@ fi %{_libdir}/rhythmbox/plugins/upnp_coherence %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Bastien Nocera 0.12.3-1 - Udpate to 0.12.3 From jkeating at fedoraproject.org Mon Jul 27 03:02:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:02:53 +0000 (UTC) Subject: rpms/ricci/devel ricci.spec,1.17,1.18 Message-ID: <20090727030253.A38F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ricci/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12749 Modified Files: ricci.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ricci.spec =================================================================== RCS file: /cvs/pkgs/rpms/ricci/devel/ricci.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- ricci.spec 1 Jul 2009 04:50:21 -0000 1.17 +++ ricci.spec 27 Jul 2009 03:02:53 -0000 1.18 @@ -10,7 +10,7 @@ Name: ricci Version: 0.16.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://sources.redhat.com/cluster/conga/ Group: System Environment/Base @@ -121,6 +121,9 @@ fi exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Ryan McCabe 0.16.1-1 - More updates for cluster3. From jkeating at fedoraproject.org Mon Jul 27 03:03:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:03:09 +0000 (UTC) Subject: rpms/rinetd/devel rinetd.spec,1.6,1.7 Message-ID: <20090727030309.82F9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rinetd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12924 Modified Files: rinetd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rinetd.spec =================================================================== RCS file: /cvs/pkgs/rpms/rinetd/devel/rinetd.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- rinetd.spec 25 Feb 2009 19:59:05 -0000 1.6 +++ rinetd.spec 27 Jul 2009 03:03:09 -0000 1.7 @@ -1,7 +1,7 @@ Summary: TCP redirection server Name: rinetd Version: 0.62 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.boutell.com/rinetd @@ -66,6 +66,9 @@ fi %config(noreplace) %{_sysconfdir}/logrotate.d/rinetd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.62-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.62-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:03:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:03:28 +0000 (UTC) Subject: rpms/ris-linux/devel ris-linux.spec,1.2,1.3 Message-ID: <20090727030328.C51DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ris-linux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13107 Modified Files: ris-linux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ris-linux.spec =================================================================== RCS file: /cvs/pkgs/rpms/ris-linux/devel/ris-linux.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ris-linux.spec 25 Feb 2009 20:00:04 -0000 1.2 +++ ris-linux.spec 27 Jul 2009 03:03:27 -0000 1.3 @@ -3,7 +3,7 @@ Name: ris-linux Version: 0.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: RIS for Linux - Boot winpe from the net / Ris Windows Installation Group: Applications/System License: GPLv2+ @@ -92,6 +92,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/%{name}d %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:03:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:03:43 +0000 (UTC) Subject: rpms/ristretto/devel ristretto.spec,1.6,1.7 Message-ID: <20090727030343.A5C1711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ristretto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13330 Modified Files: ristretto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ristretto.spec =================================================================== RCS file: /cvs/pkgs/rpms/ristretto/devel/ristretto.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ristretto.spec 15 May 2009 19:33:51 -0000 1.6 +++ ristretto.spec 27 Jul 2009 03:03:43 -0000 1.7 @@ -1,6 +1,6 @@ Name: ristretto Version: 0.0.22 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Image-viewer for the Xfce desktop environment Summary(de): Bildbetrachter f?r die Xfce Desktop-Umgebung @@ -78,6 +78,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Christoph Wickert - 0.0.22-1 - Update to 0.0.22 From jkeating at fedoraproject.org Mon Jul 27 03:03:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:03:56 +0000 (UTC) Subject: rpms/rkhunter/devel rkhunter.spec,1.25,1.26 Message-ID: <20090727030356.88CCF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rkhunter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13500 Modified Files: rkhunter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rkhunter.spec =================================================================== RCS file: /cvs/pkgs/rpms/rkhunter/devel/rkhunter.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- rkhunter.spec 3 Jul 2009 23:22:07 -0000 1.25 +++ rkhunter.spec 27 Jul 2009 03:03:56 -0000 1.26 @@ -1,6 +1,6 @@ Name: rkhunter Version: 1.3.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A host-based tool to scan for rootkits, backdoors and local exploits Group: Applications/System @@ -104,6 +104,9 @@ EOF %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Kevin Fenzi - 1.3.4-7 - Add exception for software raid udev file - bug #509253 From airlied at fedoraproject.org Mon Jul 27 03:04:08 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Mon, 27 Jul 2009 03:04:08 +0000 (UTC) Subject: rpms/kernel/devel drm-vga-arb.patch, 1.1, 1.2 kernel.spec, 1.1658, 1.1659 linux-2.6-vga-arb.patch, 1.1, 1.2 Message-ID: <20090727030408.CEFCA11C00CE@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13546 Modified Files: drm-vga-arb.patch kernel.spec linux-2.6-vga-arb.patch Log Message: * Mon Jul 27 2009 Dave Airlie - update vga arb code drm-vga-arb.patch: drivers/gpu/drm/drm_irq.c | 27 +++++++++++++++++++++++++++ drivers/gpu/drm/i915/i915_dma.c | 25 +++++++++++++++++++++++++ drivers/gpu/drm/i915/i915_drv.h | 1 + drivers/gpu/drm/i915/i915_reg.h | 1 + drivers/gpu/drm/i915/intel_display.c | 23 +++++++++++++++++++++++ drivers/gpu/drm/i915/intel_drv.h | 1 + drivers/gpu/drm/radeon/r100.c | 14 ++++++++++++++ drivers/gpu/drm/radeon/radeon.h | 2 ++ drivers/gpu/drm/radeon/radeon_asic.h | 9 +++++++++ drivers/gpu/drm/radeon/radeon_device.c | 24 +++++++++++++++++++++++- include/drm/drmP.h | 4 +++- 11 files changed, 129 insertions(+), 2 deletions(-) Index: drm-vga-arb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-vga-arb.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- drm-vga-arb.patch 16 Jul 2009 05:32:39 -0000 1.1 +++ drm-vga-arb.patch 27 Jul 2009 03:04:07 -0000 1.2 @@ -1,4 +1,4 @@ -From fb6efadf2336b3f194f5fc1733116d8965b0d88c Mon Sep 17 00:00:00 2001 +From c45aab9228c3a2e349bf6d1f3fa2575102fc8240 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 16 Jul 2009 14:33:58 +1000 Subject: [PATCH] drm: add support to drm for VGA arbitration. @@ -13,20 +13,21 @@ intel/kms: add support to disable VGA de Signed-off-by: Dave Airlie --- - drivers/gpu/drm/drm_irq.c | 24 ++++++++++++++++++++++++ - drivers/gpu/drm/i915/i915_dma.c | 6 ++++++ + drivers/gpu/drm/drm_irq.c | 27 +++++++++++++++++++++++++++ + drivers/gpu/drm/i915/i915_dma.c | 25 +++++++++++++++++++++++++ + drivers/gpu/drm/i915/i915_drv.h | 1 + drivers/gpu/drm/i915/i915_reg.h | 1 + - drivers/gpu/drm/i915/intel_display.c | 17 +++++++++++++++++ + drivers/gpu/drm/i915/intel_display.c | 23 +++++++++++++++++++++++ drivers/gpu/drm/i915/intel_drv.h | 1 + - drivers/gpu/drm/radeon/r100.c | 9 +++++++++ + drivers/gpu/drm/radeon/r100.c | 14 ++++++++++++++ drivers/gpu/drm/radeon/radeon.h | 2 ++ drivers/gpu/drm/radeon/radeon_asic.h | 9 +++++++++ - drivers/gpu/drm/radeon/radeon_device.c | 5 ++++- + drivers/gpu/drm/radeon/radeon_device.c | 24 +++++++++++++++++++++++- include/drm/drmP.h | 3 +++ - 10 files changed, 76 insertions(+), 1 deletions(-) + 11 files changed, 129 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c -index b4a3dbc..436889e 100644 +index b4a3dbc..dffc73d 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c @@ -37,6 +37,7 @@ @@ -37,7 +38,7 @@ index b4a3dbc..436889e 100644 /** * Get interrupt from bus id. * -@@ -171,6 +172,23 @@ err: +@@ -171,6 +172,26 @@ err: } EXPORT_SYMBOL(drm_vblank_init); @@ -50,6 +51,9 @@ index b4a3dbc..436889e 100644 + return; + } + ++ if (!dev->irq_enabled) ++ return; ++ + if (state) + dev->driver->irq_uninstall(dev); + else { @@ -61,28 +65,28 @@ index b4a3dbc..436889e 100644 /** * Install IRQ handler. * -@@ -231,6 +249,9 @@ int drm_irq_install(struct drm_device *dev) +@@ -231,6 +252,9 @@ int drm_irq_install(struct drm_device *dev) return ret; } + if (!drm_core_check_feature(dev, DRIVER_MODESET)) -+ vga_set_irq_callback(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms); ++ vga_client_register(dev->pdev, (void *)dev, drm_irq_vgaarb_nokms, NULL); + /* After installing handler */ ret = dev->driver->irq_postinstall(dev); if (ret < 0) { -@@ -279,6 +300,9 @@ int drm_irq_uninstall(struct drm_device * dev) +@@ -279,6 +303,9 @@ int drm_irq_uninstall(struct drm_device * dev) DRM_DEBUG("irq=%d\n", dev->pdev->irq); + if (!drm_core_check_feature(dev, DRIVER_MODESET)) -+ vga_set_irq_callback(dev->pdev, NULL, NULL); ++ vga_client_register(dev->pdev, NULL, NULL, NULL); + dev->driver->irq_uninstall(dev); free_irq(dev->pdev->irq, dev); diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c -index 8c47831..391e496 100644 +index 8c47831..2530fb0 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -33,6 +33,7 @@ @@ -93,18 +97,63 @@ index 8c47831..391e496 100644 #define I915_DRV "i915_drv" /* Really want an OS-independent resettable timer. Would like to have -@@ -1029,6 +1030,11 @@ static int i915_load_modeset_init(struct drm_device *dev, +@@ -984,6 +985,21 @@ static int i915_probe_agp(struct drm_device *dev, uint32_t *aperture_size, + return 0; + } + ++/* if we get transitioned to only one device, tak VGA back */ ++static unsigned int i915_vga_count_notify(void *cookie, int new_count) ++{ ++ struct drm_device *dev = cookie; ++ ++ if (new_count == 1) { ++ intel_modeset_vga_set_state(dev, true); ++ return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | ++ VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; ++ } else { ++ intel_modeset_vga_set_state(dev, false); ++ return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; ++ } ++} ++ + static int i915_load_modeset_init(struct drm_device *dev, + unsigned long prealloc_size, + unsigned long agp_size) +@@ -1029,6 +1045,14 @@ static int i915_load_modeset_init(struct drm_device *dev, if (ret) DRM_INFO("failed to find VBIOS tables\n"); -+ /* tell the VGA arbiter to set off */ -+ ret = intel_modeset_vga_disable(dev); -+ if (ret == 0) -+ vga_set_legacy_decoding(dev->pdev, VGA_RSRC_NONE); ++ /* if we have > 1 VGA cards, then disable the radeon VGA resources */ ++ ret = vga_client_register(dev->pdev, dev, NULL, i915_vga_count_notify); ++ if (ret > 1) { ++ /* false is turn off VGA decode */ ++ intel_modeset_vga_set_state(dev, false); ++ vga_set_legacy_decoding(dev->pdev, VGA_RSRC_NORMAL_IO|VGA_RSRC_NORMAL_MEM); ++ } + ret = drm_irq_install(dev); if (ret) goto destroy_ringbuffer; +@@ -1278,6 +1302,7 @@ int i915_driver_unload(struct drm_device *dev) + + if (drm_core_check_feature(dev, DRIVER_MODESET)) { + drm_irq_uninstall(dev); ++ vga_client_register(dev->pdev, NULL, NULL, NULL); + } + + if (dev->pdev->msi_enabled) +diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h +index d087528..61a54a1 100644 +--- a/drivers/gpu/drm/i915/i915_drv.h ++++ b/drivers/gpu/drm/i915/i915_drv.h +@@ -747,6 +747,7 @@ static inline void opregion_enable_asle(struct drm_device *dev) { return; } + /* modesetting */ + extern void intel_modeset_init(struct drm_device *dev); + extern void intel_modeset_cleanup(struct drm_device *dev); ++extern int intel_modeset_vga_set_state(struct drm_device *dev, bool state); + + /** + * Lock test for when it's just for synchronization of ring access. diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index 6c08584..3e3145e 100644 --- a/drivers/gpu/drm/i915/i915_reg.h @@ -118,15 +167,18 @@ index 6c08584..3e3145e 100644 #define INTEL_GMCH_MEM_MASK 0x1 #define INTEL_GMCH_MEM_64M 0x1 diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c -index 508838e..ad7ef01 100644 +index 508838e..5440f3c 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c -@@ -3188,3 +3188,20 @@ struct drm_encoder *intel_best_encoder(struct drm_connector *connector) +@@ -3188,3 +3188,26 @@ struct drm_encoder *intel_best_encoder(struct drm_connector *connector) return &intel_output->enc; } + -+int intel_modeset_vga_disable(struct drm_device *dev) ++/* ++ * set vga decode state - true == enable VGA decode ++ */ ++int intel_modeset_vga_set_state(struct drm_device *dev, bool state) +{ + struct pci_dev *bridge_dev; + u16 gmch_ctrl; @@ -138,34 +190,42 @@ index 508838e..ad7ef01 100644 + } + + pci_read_config_word(bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl); -+ gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; ++ if (state) ++ gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE; ++ else ++ gmch_ctrl |= INTEL_GMCH_VGA_DISABLE; + pci_write_config_word(bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl); + return 0; +} diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h -index 004541c..ab5be5b 100644 +index 004541c..a715f80 100644 --- a/drivers/gpu/drm/i915/intel_drv.h +++ b/drivers/gpu/drm/i915/intel_drv.h @@ -154,4 +154,5 @@ extern int intel_framebuffer_create(struct drm_device *dev, struct drm_mode_fb_cmd *mode_cmd, struct drm_framebuffer **fb, struct drm_gem_object *obj); -+extern int intel_modeset_vga_disable(struct drm_device *dev); ++ #endif /* __INTEL_DRV_H__ */ diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c -index c550932..1fa6723 100644 +index c550932..b091ba7 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c -@@ -1256,6 +1256,15 @@ static void r100_vram_get_type(struct radeon_device *rdev) +@@ -1256,6 +1256,20 @@ static void r100_vram_get_type(struct radeon_device *rdev) } } -+void r100_vga_disable(struct radeon_device *rdev) ++void r100_vga_set_state(struct radeon_device *rdev, bool state) +{ + uint32_t temp; ++ + temp = RREG32(RADEON_CONFIG_CNTL); -+ temp &= ~(1<<8); -+ temp |= (1<<9); ++ if (state == false) { ++ temp &= ~(1<<8); ++ temp |= (1<<9); ++ } else { ++ temp &= ~(1<<9); ++ } + WREG32(RADEON_CONFIG_CNTL, temp); +} + @@ -173,14 +233,14 @@ index c550932..1fa6723 100644 { r100_vram_get_type(rdev); diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h -index d61f2fc..583bfb2 100644 +index d61f2fc..655f6af 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h @@ -499,6 +499,7 @@ struct radeon_asic { int (*init)(struct radeon_device *rdev); void (*errata)(struct radeon_device *rdev); void (*vram_info)(struct radeon_device *rdev); -+ void (*vga_disable)(struct radeon_device *rdev); ++ void (*vga_set_state)(struct radeon_device *rdev, bool state); int (*gpu_reset)(struct radeon_device *rdev); int (*mc_init)(struct radeon_device *rdev); void (*mc_fini)(struct radeon_device *rdev); @@ -188,19 +248,19 @@ index d61f2fc..583bfb2 100644 #define radeon_cs_parse(p) rdev->asic->cs_parse((p)) #define radeon_errata(rdev) (rdev)->asic->errata((rdev)) #define radeon_vram_info(rdev) (rdev)->asic->vram_info((rdev)) -+#define radeon_vga_disable(rdev) (rdev)->asic->vga_disable((rdev)) ++#define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state)) #define radeon_gpu_reset(rdev) (rdev)->asic->gpu_reset((rdev)) #define radeon_mc_init(rdev) (rdev)->asic->mc_init((rdev)) #define radeon_mc_fini(rdev) (rdev)->asic->mc_fini((rdev)) diff --git a/drivers/gpu/drm/radeon/radeon_asic.h b/drivers/gpu/drm/radeon/radeon_asic.h -index e2e5673..4586819 100644 +index e2e5673..59c505c 100644 --- a/drivers/gpu/drm/radeon/radeon_asic.h +++ b/drivers/gpu/drm/radeon/radeon_asic.h @@ -46,6 +46,7 @@ uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg); void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v); void r100_errata(struct radeon_device *rdev); void r100_vram_info(struct radeon_device *rdev); -+void r100_vga_disable(struct radeon_device *rdev); ++void r100_vga_set_state(struct radeon_device *rdev, bool state); int r100_gpu_reset(struct radeon_device *rdev); int r100_mc_init(struct radeon_device *rdev); void r100_mc_fini(struct radeon_device *rdev); @@ -208,7 +268,7 @@ index e2e5673..4586819 100644 .init = &r100_init, .errata = &r100_errata, .vram_info = &r100_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r100_gpu_reset, .mc_init = &r100_mc_init, .mc_fini = &r100_mc_fini, @@ -216,7 +276,7 @@ index e2e5673..4586819 100644 .init = &r300_init, .errata = &r300_errata, .vram_info = &r300_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r300_gpu_reset, .mc_init = &r300_mc_init, .mc_fini = &r300_mc_fini, @@ -224,7 +284,7 @@ index e2e5673..4586819 100644 .init = &r300_init, .errata = &r420_errata, .vram_info = &r420_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r300_gpu_reset, .mc_init = &r420_mc_init, .mc_fini = &r420_mc_fini, @@ -232,7 +292,7 @@ index e2e5673..4586819 100644 .init = &r300_init, .errata = &rs400_errata, .vram_info = &rs400_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r300_gpu_reset, .mc_init = &rs400_mc_init, .mc_fini = &rs400_mc_fini, @@ -240,7 +300,7 @@ index e2e5673..4586819 100644 .init = &r300_init, .errata = &rs600_errata, .vram_info = &rs600_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r300_gpu_reset, .mc_init = &rs600_mc_init, .mc_fini = &rs600_mc_fini, @@ -248,7 +308,7 @@ index e2e5673..4586819 100644 .init = &r300_init, .errata = &rs690_errata, .vram_info = &rs690_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &r300_gpu_reset, .mc_init = &rs690_mc_init, .mc_fini = &rs690_mc_fini, @@ -256,7 +316,7 @@ index e2e5673..4586819 100644 .init = &rv515_init, .errata = &rv515_errata, .vram_info = &rv515_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &rv515_gpu_reset, .mc_init = &rv515_mc_init, .mc_fini = &rv515_mc_fini, @@ -264,12 +324,12 @@ index e2e5673..4586819 100644 .init = &rv515_init, .errata = &r520_errata, .vram_info = &r520_vram_info, -+ .vga_disable = &r100_vga_disable, ++ .vga_set_state = &r100_vga_set_state, .gpu_reset = &rv515_gpu_reset, .mc_init = &r520_mc_init, .mc_fini = &r520_mc_fini, diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c -index f97563d..c02f655 100644 +index f97563d..b391d12 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c @@ -29,6 +29,7 @@ @@ -280,17 +340,51 @@ index f97563d..c02f655 100644 #include "radeon_reg.h" #include "radeon.h" #include "radeon_asic.h" -@@ -516,7 +517,9 @@ int radeon_device_init(struct radeon_device *rdev, +@@ -440,7 +441,20 @@ void radeon_combios_fini(struct radeon_device *rdev) + int radeon_modeset_init(struct radeon_device *rdev); + void radeon_modeset_fini(struct radeon_device *rdev); + ++/* if we get transitioned to only one device, tak VGA back */ ++static unsigned int radeon_vga_count_notify(void *cookie, int new_count) ++{ ++ struct radeon_device *rdev = cookie; + ++ if (new_count == 1) { ++ radeon_vga_set_state(rdev, true); ++ return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | ++ VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; ++ } else { ++ radeon_vga_set_state(rdev, false); ++ return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; ++ } ++} + /* + * Radeon device. + */ +@@ -516,7 +530,14 @@ int radeon_device_init(struct radeon_device *rdev, /* Initialize surface registers */ radeon_surface_init(rdev); - /* TODO: disable VGA need to use VGA request */ -+ radeon_vga_disable(rdev); -+ vga_set_legacy_decoding(rdev->pdev, VGA_RSRC_NONE); ++ /* if we have > 1 VGA cards, then disable the radeon VGA resources */ ++ ret = vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_count_notify); ++ if (ret > 1) { ++ /* false is turn off VGA decode */ ++ radeon_vga_set_state(rdev, false); ++ vga_set_legacy_decoding(rdev->pdev, VGA_RSRC_NORMAL_IO|VGA_RSRC_NORMAL_MEM); ++ } + /* BIOS*/ if (!radeon_get_bios(rdev)) { if (ASIC_IS_AVIVO(rdev)) +@@ -652,6 +673,7 @@ void radeon_device_fini(struct radeon_device *rdev) + radeon_agp_fini(rdev); + #endif + radeon_irq_kms_fini(rdev); ++ vga_client_register(rdev->pdev, NULL, NULL, NULL); + radeon_fence_driver_fini(rdev); + radeon_clocks_fini(rdev); + if (rdev->is_atom_bios) { diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 45b67d9..95106c7 100644 --- a/include/drm/drmP.h Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1658 retrieving revision 1.1659 diff -u -p -r1.1658 -r1.1659 --- kernel.spec 27 Jul 2009 02:22:56 -0000 1.1658 +++ kernel.spec 27 Jul 2009 03:04:07 -0000 1.1659 @@ -1260,8 +1260,8 @@ ApplyPatch drm-page-flip.patch ApplyPatch drm-intel-pm.patch # VGA arb + drm -#ApplyPatch linux-2.6-vga-arb.patch -#ApplyPatch drm-vga-arb.patch +ApplyPatch linux-2.6-vga-arb.patch +ApplyPatch drm-vga-arb.patch # linux1394 git patches #ApplyPatch linux-2.6-firewire-git-update.patch @@ -1894,6 +1894,9 @@ fi # and build. %changelog +* Mon Jul 27 2009 Dave Airlie +- update vga arb code + * Mon Jul 27 2009 Matthew Garrett - drm-intel-pm.patch - Add runtime PM for Intel graphics linux-2.6-vga-arb.patch: drivers/gpu/Makefile | 2 drivers/gpu/vga/Kconfig | 10 drivers/gpu/vga/Makefile | 1 drivers/gpu/vga/vgaarb.c | 1125 +++++++++++++++++++++++++++++++++++++++++++++++ drivers/pci/pci.c | 44 + drivers/video/Kconfig | 2 include/linux/pci.h | 2 include/linux/vgaarb.h | 199 ++++++++ 8 files changed, 1383 insertions(+), 2 deletions(-) Index: linux-2.6-vga-arb.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-vga-arb.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- linux-2.6-vga-arb.patch 16 Jul 2009 05:32:39 -0000 1.1 +++ linux-2.6-vga-arb.patch 27 Jul 2009 03:04:07 -0000 1.2 @@ -1,23 +1,23 @@ -From 5141835bff8148617b702d9390a594b90dbd6933 Mon Sep 17 00:00:00 2001 +From eba2469d77b9f7d42f08bbd094312678cedae237 Mon Sep 17 00:00:00 2001 From: Tiago Vignatti Date: Tue, 14 Jul 2009 15:57:29 +0300 Subject: [PATCH] vga: implements VGA arbitration on Linux -airlied changes since v1: -moved to using pr_* instead of debug printks, -add IRQ hook for GPU drivers to be called back for irq disable around mem/io disable -remove module load/unload, vga arb is a subsystem really and shouldn't be -removable from the kernel, allow it for CONFIG_EMBEDDED +changes since last patch: +fixup unlock userspace api so it can't go < 0 +add exports for vga put/get/tryget Signed-off-by: Tiago Vignatti --- drivers/gpu/Makefile | 2 +- drivers/gpu/vga/Kconfig | 10 + drivers/gpu/vga/Makefile | 1 + - drivers/gpu/vga/vgaarb.c | 1116 ++++++++++++++++++++++++++++++++++++++++++++++ + drivers/gpu/vga/vgaarb.c | 1125 ++++++++++++++++++++++++++++++++++++++++++++++ + drivers/pci/pci.c | 44 ++ drivers/video/Kconfig | 2 + - include/linux/vgaarb.h | 170 +++++++ - 6 files changed, 1300 insertions(+), 1 deletions(-) + include/linux/pci.h | 2 + + include/linux/vgaarb.h | 198 ++++++++ + 8 files changed, 1383 insertions(+), 1 deletions(-) create mode 100644 drivers/gpu/vga/Kconfig create mode 100644 drivers/gpu/vga/Makefile create mode 100644 drivers/gpu/vga/vgaarb.c @@ -55,10 +55,10 @@ index 0000000..7cc8c1e +obj-$(CONFIG_VGA_ARB) += vgaarb.o diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c new file mode 100644 -index 0000000..09cf259 +index 0000000..ab77d4b --- /dev/null +++ b/drivers/gpu/vga/vgaarb.c -@@ -0,0 +1,1116 @@ +@@ -0,0 +1,1125 @@ +/* + * vgaarb.c + * @@ -102,14 +102,54 @@ index 0000000..09cf259 + unsigned int mem_norm_cnt; /* normal MEM count */ + + /* allow IRQ enable/disable hook */ -+ void *irq_cookie; ++ void *cookie; + void (*irq_set_state)(void *cookie, bool enable); ++ unsigned int (*count_notify)(void *cookie, int new_count); +}; + +static LIST_HEAD(vga_list); ++static int vga_count; +static DEFINE_SPINLOCK(vga_lock); +static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue); + ++ ++static const char *vga_iostate_to_str(unsigned int iostate) ++{ ++ /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */ ++ iostate &= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; ++ switch (iostate) { ++ case VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM: ++ return "io+mem"; ++ case VGA_RSRC_LEGACY_IO: ++ return "io"; ++ case VGA_RSRC_LEGACY_MEM: ++ return "mem"; ++ } ++ return "none"; ++} ++ ++static int vga_str_to_iostate(char *buf, int str_size, int *io_state) ++{ ++ /* we could in theory hand out locks on IO and mem ++ * separately to userspace but it can cause deadlocks */ ++ if (strncmp(buf, "none", 4) == 0) { ++ *io_state = VGA_RSRC_NONE; ++ return 1; ++ } ++ ++ /* XXX We're not chekcing the str_size! */ ++ if (strncmp(buf, "io+mem", 6) == 0) ++ goto both; ++ else if (strncmp(buf, "io", 2) == 0) ++ goto both; ++ else if (strncmp(buf, "mem", 3) == 0) ++ goto both; ++ return 0; ++both: ++ *io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; ++ return 1; ++} ++ +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE +/* this is only used a cookie - it should not be dereferenced */ +static struct pci_dev *vga_default; @@ -123,8 +163,8 @@ index 0000000..09cf259 + struct vga_device *vgadev; + + list_for_each_entry(vgadev, &vga_list, list) -+ if (pdev == vgadev->pdev) -+ return vgadev; ++ if (pdev == vgadev->pdev) ++ return vgadev; + return NULL; +} + @@ -139,98 +179,15 @@ index 0000000..09cf259 +static inline void vga_irq_set_state(struct vga_device *vgadev, bool state) +{ + if (vgadev->irq_set_state) -+ vgadev->irq_set_state(vgadev->irq_cookie, state); ++ vgadev->irq_set_state(vgadev->cookie, state); +} -+/* Architecture can override enabling/disabling of a given -+ * device resources here -+ * -+ * TODO: you can try to be "smart" and if for example you have 2 cards -+ * that are behind separate bridges, you need only swapping the bridge controls -+ * and you can keep the card master IO and memory enable. -+ */ -+#ifndef __ARCH_HAS_VGA_DISABLE_RESOURCES -+static inline void vga_disable_resources(struct pci_dev *pdev, -+ unsigned int rsrc, -+ unsigned int change_bridge) -+{ -+ struct pci_bus *bus; -+ struct pci_dev *bridge; -+ u16 cmd; -+ -+ pr_devel("%s\n", __func__); -+ -+ pci_read_config_word(pdev, PCI_COMMAND, &cmd); -+ if (rsrc & (VGA_RSRC_LEGACY_IO | VGA_RSRC_NORMAL_IO)) -+ cmd &= ~PCI_COMMAND_IO; -+ if (rsrc & (VGA_RSRC_LEGACY_MEM | VGA_RSRC_NORMAL_MEM)) -+ cmd &= ~PCI_COMMAND_MEMORY; -+ pci_write_config_word(pdev, PCI_COMMAND, cmd); -+ -+ if (!change_bridge) -+ return; -+ -+ bus = pdev->bus; -+ while (bus) { -+ bridge = bus->self; -+ if (bridge) { -+ pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, -+ &cmd); -+ if (cmd & PCI_BRIDGE_CTL_VGA) { -+ cmd &= ~PCI_BRIDGE_CTL_VGA; -+ pci_write_config_word(bridge, -+ PCI_BRIDGE_CONTROL, -+ cmd); -+ } -+ } -+ bus = bus->parent; -+ } -+} -+#endif -+ -+#ifndef __ARCH_HAS_VGA_ENABLE_RESOURCES -+static inline void vga_enable_resources(struct pci_dev *pdev, -+ unsigned int rsrc) -+{ -+ struct pci_bus *bus; -+ struct pci_dev *bridge; -+ u16 cmd; -+ -+ pr_devel("%s\n", __func__); -+ -+ pci_read_config_word(pdev, PCI_COMMAND, &cmd); -+ if (rsrc & (VGA_RSRC_LEGACY_IO | VGA_RSRC_NORMAL_IO)) -+ cmd |= PCI_COMMAND_IO; -+ if (rsrc & (VGA_RSRC_LEGACY_MEM | VGA_RSRC_NORMAL_MEM)) -+ cmd |= PCI_COMMAND_MEMORY; -+ pci_write_config_word(pdev, PCI_COMMAND, cmd); -+ -+ if (!(rsrc & VGA_RSRC_LEGACY_MASK)) -+ return; -+ -+ bus = pdev->bus; -+ while (bus) { -+ bridge = bus->self; -+ if (bridge) { -+ pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, -+ &cmd); -+ if (!(cmd & PCI_BRIDGE_CTL_VGA)) { -+ cmd |= PCI_BRIDGE_CTL_VGA; -+ pci_write_config_word(bridge, -+ PCI_BRIDGE_CONTROL, -+ cmd); -+ } -+ } -+ bus = bus->parent; -+ } -+} -+#endif + +static struct vga_device *__vga_tryget(struct vga_device *vgadev, + unsigned int rsrc) +{ + unsigned int wants, legacy_wants, match; + struct vga_device *conflict; -+ ++ unsigned int pci_bits; + /* Account for "normal" resources to lock. If we decode the legacy, + * counterpart, we need to request it as well + */ @@ -304,8 +261,15 @@ index 0000000..09cf259 + * them from him + */ + vga_irq_set_state(conflict, false); -+ vga_disable_resources(conflict->pdev, lwants, -+ change_bridge); ++ ++ pci_bits = 0; ++ if (lwants & (VGA_RSRC_LEGACY_MEM|VGA_RSRC_NORMAL_MEM)) ++ pci_bits |= PCI_COMMAND_MEMORY; ++ if (lwants & (VGA_RSRC_LEGACY_IO|VGA_RSRC_NORMAL_IO)) ++ pci_bits |= PCI_COMMAND_IO; ++ ++ pci_set_vga_state(conflict->pdev, false, pci_bits, ++ change_bridge); + conflict->owns &= ~lwants; + /* If he also owned non-legacy, that is no longer the case */ + if (lwants & VGA_RSRC_LEGACY_MEM) @@ -320,7 +284,13 @@ index 0000000..09cf259 + * also have in "decodes". We can lock resources we don't decode but + * not own them. + */ -+ vga_enable_resources(vgadev->pdev, wants); ++ pci_bits = 0; ++ if (wants & (VGA_RSRC_LEGACY_MEM|VGA_RSRC_NORMAL_MEM)) ++ pci_bits |= PCI_COMMAND_MEMORY; ++ if (wants & (VGA_RSRC_LEGACY_IO|VGA_RSRC_NORMAL_IO)) ++ pci_bits |= PCI_COMMAND_IO; ++ pci_set_vga_state(vgadev->pdev, true, pci_bits, !!(wants & VGA_RSRC_LEGACY_MASK)); ++ + vga_irq_set_state(vgadev, true); + vgadev->owns |= (wants & vgadev->decodes); +lock_them: @@ -424,6 +394,7 @@ index 0000000..09cf259 + } + return rc; +} ++EXPORT_SYMBOL(vga_get); + +int vga_tryget(struct pci_dev *pdev, unsigned int rsrc) +{ @@ -448,6 +419,7 @@ index 0000000..09cf259 + spin_unlock_irqrestore(&vga_lock, flags); + return rc; +} ++EXPORT_SYMBOL(vga_tryget); + +void vga_put(struct pci_dev *pdev, unsigned int rsrc) +{ @@ -467,6 +439,7 @@ index 0000000..09cf259 +bail: + spin_unlock_irqrestore(&vga_lock, flags); +} ++EXPORT_SYMBOL(vga_put); + +/* + * Currently, we assume that the "initial" setup of the system is @@ -509,7 +482,7 @@ index 0000000..09cf259 + + /* By default, assume we decode everything */ + vgadev->decodes = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | -+ VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; ++ VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; + + /* Mark that we "own" resources based on our enables, we will + * clear that below if the bridge isn't forwarding @@ -540,16 +513,21 @@ index 0000000..09cf259 + * by default if arch doesn't have it's own hook + */ +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE -+ if (vga_default == NULL && (vgadev->owns & VGA_RSRC_LEGACY_MEM) && -+ (vgadev->owns & VGA_RSRC_LEGACY_IO)) -+ vga_default = pdev; ++ if (vga_default == NULL && ++ ((vgadev->owns & VGA_RSRC_LEGACY_MASK) == VGA_RSRC_LEGACY_MASK)) ++ vga_default = pci_dev_get(pdev); + +#endif + + /* Add to the list */ + list_add(&vgadev->list, &vga_list); -+ pr_info("VGA Arbiter: device added: %d %d %d\n", -+ pdev->device, pdev->vendor, pdev->devfn); ++ vga_count++; ++ pr_info("vgaarb: device added: PCI:%s,decodes=%s,owns=%s,locks=%s\n", ++ pci_name(pdev), ++ vga_iostate_to_str(vgadev->decodes), ++ vga_iostate_to_str(vgadev->owns), ++ vga_iostate_to_str(vgadev->locks)); ++ + spin_unlock_irqrestore(&vga_lock, flags); + return; +fail: @@ -567,12 +545,14 @@ index 0000000..09cf259 + if (vgadev == NULL) + goto bail; + -+ if (vga_default == pdev) ++ if (vga_default == pdev) { ++ pci_dev_put(vga_default); + vga_default = NULL; ++ } + + /* Remove entry from list */ + list_del(&vgadev->list); -+ ++ vga_count--; + /* Notify userland driver that the device is gone so it discards + * it's copies of the pci_dev pointer + */ @@ -585,10 +565,11 @@ index 0000000..09cf259 + kfree(vgadev); +} + -+void vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes) ++void __vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes, bool userspace) +{ + struct vga_device *vgadev; + unsigned long flags; ++ int old_decodes; + + decodes &= VGA_RSRC_LEGACY_MASK; + @@ -597,9 +578,19 @@ index 0000000..09cf259 + if (vgadev == NULL) + goto bail; + ++ /* don't let userspace futz with kernel driver decodes */ ++ if (userspace && vgadev->count_notify) ++ goto bail; ++ ++ old_decodes = vgadev->decodes; + vgadev->decodes = decodes; + vgadev->owns &= decodes; + ++ pr_info("vgaarb: device changed decodes: PCI:%s,olddecodes=%s,decodes=%s\n", ++ pci_name(pdev), ++ vga_iostate_to_str(old_decodes), ++ vga_iostate_to_str(vgadev->decodes)); ++ + /* XXX if somebody is going from "doesn't decode" to "decodes" state + * here, additional care must be taken as we may have pending owner + * ship of non-legacy region ... @@ -607,10 +598,20 @@ index 0000000..09cf259 +bail: + spin_unlock_irqrestore(&vga_lock, flags); +} ++ ++void vga_set_legacy_decoding(struct pci_dev *pdev, unsigned int decodes) ++{ ++ __vga_set_legacy_decoding(pdev, decodes, false); ++} +EXPORT_SYMBOL(vga_set_legacy_decoding); + -+void vga_set_irq_callback(struct pci_dev *pdev, void *cookie, void (*irq_func)(void *cookie, bool enable)) ++/* return number of active VGA devices */ ++/* call with NULL to unregister */ ++int vga_client_register(struct pci_dev *pdev, void *cookie, ++ void (*irq_set_state)(void *cookie, bool state), ++ unsigned int (*count_notify)(void *cookie, int vga_count)) +{ ++ int ret = -1; + struct vga_device *vgadev; + unsigned long flags; + @@ -619,13 +620,17 @@ index 0000000..09cf259 + if (!vgadev) + goto bail; + -+ vgadev->irq_cookie = cookie; -+ vgadev->irq_set_state = irq_func; ++ vgadev->irq_set_state = irq_set_state; ++ vgadev->count_notify = count_notify; ++ vgadev->cookie = cookie; ++ ret = vga_count; ++ +bail: + spin_unlock_irqrestore(&vga_lock, flags); ++ return ret; + +} -+EXPORT_SYMBOL(vga_set_irq_callback); ++EXPORT_SYMBOL(vga_client_register); + +/* + * Char driver implementation @@ -702,36 +707,6 @@ index 0000000..09cf259 +static LIST_HEAD(vga_user_list); +static DEFINE_SPINLOCK(vga_user_lock); + -+static const char *vga_iostate_to_str(unsigned int iostate) -+{ -+ /* Ignore VGA_RSRC_IO and VGA_RSRC_MEM */ -+ iostate &= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; -+ switch (iostate) { -+ case VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM: -+ return "io+mem"; -+ case VGA_RSRC_LEGACY_IO: -+ return "io"; -+ case VGA_RSRC_LEGACY_MEM: -+ return "mem"; -+ } -+ return "none"; -+} -+ -+static int vga_str_to_iostate(char *buf, int str_size, int *io_state) -+{ -+ /* XXX We're not chekcing the str_size! */ -+ if (strncmp(buf, "io+mem", 6) == 0) -+ *io_state = VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; -+ else if (strncmp(buf, "io", 2) == 0) -+ *io_state = VGA_RSRC_LEGACY_IO; -+ else if (strncmp(buf, "mem", 3) == 0) -+ *io_state = VGA_RSRC_LEGACY_MEM; -+ else if (strncmp(buf, "none", 4) == 0) -+ *io_state = VGA_RSRC_NONE; -+ else -+ return 0; -+ return 1; -+} + +/* + * This function gets a string in the format: "PCI:domain:bus:dev.fn" and @@ -796,8 +771,8 @@ index 0000000..09cf259 + + /* Fill the buffer with infos */ + len = snprintf(lbuf, 1024, -+ "PCI:%s,decodes=%s,owns=%s,locks=%s (%d,%d)\n", -+ pci_name(pdev), ++ "count:%d PCI:%s,decodes=%s,owns=%s,locks=%s (%d,%d)\n", ++ vga_count, pci_name(pdev), + vga_iostate_to_str(vgadev->decodes), + vga_iostate_to_str(vgadev->owns), + vga_iostate_to_str(vgadev->locks), @@ -824,6 +799,7 @@ index 0000000..09cf259 + size_t count, loff_t *ppos) +{ + struct vga_arb_private *priv = file->private_data; ++ struct vga_arb_user_card *uc = NULL; + struct pci_dev *pdev; + + unsigned int io_state; @@ -861,9 +837,11 @@ index 0000000..09cf259 + goto done; + } + ++ ++ + pdev = priv->target; + if (priv->target == NULL) { -+ ret_val = -ENODEV; ++ ret_val = -ENODEV; + goto done; + } + @@ -909,18 +887,27 @@ index 0000000..09cf259 + ret_val = -ENODEV; + goto done; + } -+ -+ vga_put(pdev, io_state); + for (i = 0; i < MAX_USER_CARDS; i++) { -+ if (priv->cards[i].pdev == pdev) { -+ if (io_state & VGA_RSRC_LEGACY_IO) -+ priv->cards[i].io_cnt--; -+ if (io_state & VGA_RSRC_LEGACY_MEM) -+ priv->cards[i].mem_cnt--; -+ break; -+ } ++ if (priv->cards[i].pdev == pdev) ++ uc = &priv->cards[i]; + } + ++ if (!uc) ++ return -EINVAL; ++ ++ if (io_state & VGA_RSRC_LEGACY_IO && uc->io_cnt == 0) ++ return -EINVAL; ++ ++ if (io_state & VGA_RSRC_LEGACY_MEM && uc->mem_cnt == 0) ++ return -EINVAL; ++ ++ vga_put(pdev, io_state); ++ ++ if (io_state & VGA_RSRC_LEGACY_IO) ++ uc->io_cnt--; ++ if (io_state & VGA_RSRC_LEGACY_MEM) ++ uc->mem_cnt--; ++ + ret_val = count; + goto done; + } else if (strncmp(curr_pos, "trylock ", 8) == 0) { @@ -979,14 +966,14 @@ index 0000000..09cf259 + + pdev = pci_get_bus_and_slot(bus, devfn); + if (!pdev) { -+ pr_info("Invalid pci address!\n"); ++ pr_info("vgaarb: invalid PCI address!\n"); + ret_val = -ENODEV; + goto done; + } + + vgadev = vgadev_find(pdev); + if (vgadev == NULL) { -+ pr_info("This PCI is not a vga device\n"); ++ pr_info("vgaarb: this pci device is not a vga device\n"); + ret_val = -ENODEV; + goto done; + } @@ -1003,7 +990,7 @@ index 0000000..09cf259 + } + } + if (i == MAX_USER_CARDS) { -+ pr_err("Maximum user cards number reached!\n"); ++ pr_err("vgaarb: maximum user cards number reached!\n"); + /* XXX: which value to return? */ + ret_val = -ENOMEM; + goto done; @@ -1016,7 +1003,7 @@ index 0000000..09cf259 + } else if (strncmp(curr_pos, "decodes ", 8) == 0) { + curr_pos += 8; + remaining -= 8; -+ pr_devel("client 0x%X called 'decodes'\n", (int)priv); ++ pr_devel("vgaarb: client 0x%X called 'decodes'\n", (int)priv); + + if (!vga_str_to_iostate(curr_pos, remaining, &io_state)) { + ret_val = -EPROTO; @@ -1024,11 +1011,11 @@ index 0000000..09cf259 + } + pdev = priv->target; + if (priv->target == NULL) { -+ ret_val = -ENODEV; ++ ret_val = -ENODEV; + goto done; + } + -+ vga_set_legacy_decoding(pdev, io_state); ++ __vga_set_legacy_decoding(pdev, io_state, true); + ret_val = count; + goto done; + } @@ -1045,7 +1032,7 @@ index 0000000..09cf259 +{ + struct vga_arb_private *priv = file->private_data; + -+ pr_devel("vga_arb_fpoll()\n"); ++ pr_devel("%s\n", __func__); + + if (priv == NULL) + return -ENODEV; @@ -1058,7 +1045,7 @@ index 0000000..09cf259 + struct vga_arb_private *priv; + unsigned long flags; + -+ pr_devel("vga_arb_open()\n"); ++ pr_devel("%s\n", __func__); + + priv = kmalloc(sizeof(struct vga_arb_private), GFP_KERNEL); + if (priv == NULL) @@ -1088,7 +1075,7 @@ index 0000000..09cf259 + unsigned long flags; + int i; + -+ pr_devel("vga_arb_release()\n"); ++ pr_devel("%s\n", __func__); + + if (priv == NULL) + return -ENODEV; @@ -1117,13 +1104,34 @@ index 0000000..09cf259 +{ +} + ++/* ++ * callback any registered clients to let them know we have a ++ * change in VGA cards ++ */ ++static void vga_arbiter_notify_clients(void) ++{ ++ struct vga_device *vgadev; ++ unsigned long flags; ++ uint32_t new_decodes; ++ ++ spin_lock_irqsave(&vga_lock, flags); ++ list_for_each_entry(vgadev, &vga_list, list) { ++ if (vgadev->count_notify) { ++ new_decodes = vgadev->count_notify(vgadev->cookie, vga_count); ++ vgadev->decodes = new_decodes; ++ vgadev->owns &= new_decodes; ++ } ++ } ++ spin_unlock_irqrestore(&vga_lock, flags); ++} ++ +static int pci_notify(struct notifier_block *nb, unsigned long action, + void *data) +{ + struct device *dev = data; + struct pci_dev *pdev = to_pci_dev(dev); + -+ pr_devel("pci_notify()\n"); ++ pr_devel("%s\n", __func__); + + /* For now we're only intereted in devices added and removed. I didn't + * test this thing here, so someone needs to double check for the @@ -1133,6 +1141,7 @@ index 0000000..09cf259 + else if (action == BUS_NOTIFY_DEL_DEVICE) + vga_arbiter_del_pci_device(pdev); + ++ vga_arbiter_notify_clients(); + return 0; +} + @@ -1159,7 +1168,7 @@ index 0000000..09cf259 + + rc = misc_register(&vga_arb_device); + if (rc < 0) -+ pr_err("VGA Arbiter: error %d registering device\n", rc); ++ pr_err("vgaarb: error %d registering device\n", rc); + + bus_register_notifier(&pci_bus_type, &pci_notifier); + @@ -1171,10 +1180,65 @@ index 0000000..09cf259 + PCI_ANY_ID, pdev)) != NULL) + vga_arbiter_add_pci_device(pdev); + -+ pr_info("VGA Arbiter: loaded\n"); ++ pr_info("vgaarb: loaded\n"); + return rc; +} +subsys_initcall(vga_arb_device_init); +diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c +index dbd0f94..d837606 100644 +--- a/drivers/pci/pci.c ++++ b/drivers/pci/pci.c +@@ -2502,6 +2502,50 @@ int pci_resource_bar(struct pci_dev *dev, int resno, enum pci_bar_type *type) + return 0; + } + ++/** ++ * pci_set_vga_state - set VGA decode state on device and parents if requested ++ * @dev the PCI device ++ * @decode - true = enable decoding, false = disable decoding ++ * @command_bits PCI_COMMAND_IO and/or PCI_COMMAND_MEMORY ++ * @change_bridge - traverse ancestors and change bridges ++ */ ++int pci_set_vga_state(struct pci_dev *dev, bool decode, ++ unsigned int command_bits, bool change_bridge) ++{ ++ struct pci_bus *bus; ++ struct pci_dev *bridge; ++ u16 cmd; ++ ++ WARN_ON(command_bits & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY)); ++ ++ pci_read_config_word(dev, PCI_COMMAND, &cmd); ++ if (decode == true) ++ cmd |= command_bits; ++ else ++ cmd &= ~command_bits; ++ pci_write_config_word(dev, PCI_COMMAND, cmd); ++ ++ if (change_bridge == false) ++ return 0; ++ ++ bus = dev->bus; ++ while (bus) { ++ bridge = bus->self; ++ if (bridge) { ++ pci_read_config_word(bridge, PCI_BRIDGE_CONTROL, ++ &cmd); ++ if (decode == true) ++ cmd |= PCI_BRIDGE_CTL_VGA; ++ else ++ cmd &= ~PCI_BRIDGE_CTL_VGA; ++ pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, ++ cmd); ++ } ++ bus = bus->parent; ++ } ++ return 0; ++} ++ + #define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE + static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0}; + spinlock_t resource_alignment_lock = SPIN_LOCK_UNLOCKED; diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 8afcf08..f4ed145 100644 --- a/drivers/video/Kconfig @@ -1188,12 +1252,25 @@ index 8afcf08..f4ed145 100644 source "drivers/gpu/drm/Kconfig" config VGASTATE +diff --git a/include/linux/pci.h b/include/linux/pci.h +index 115fb7b..7ba6eba 100644 +--- a/include/linux/pci.h ++++ b/include/linux/pci.h +@@ -805,6 +805,8 @@ int pci_cfg_space_size_ext(struct pci_dev *dev); + int pci_cfg_space_size(struct pci_dev *dev); + unsigned char pci_bus_max_busnr(struct pci_bus *bus); + ++int pci_set_vga_state(struct pci_dev *pdev, bool decode, ++ unsigned int command_bits, bool change_bridge); + /* kmem_cache style wrapper around pci_alloc_consistent() */ + + #include diff --git a/include/linux/vgaarb.h b/include/linux/vgaarb.h new file mode 100644 -index 0000000..cdc4ebb +index 0000000..229561d --- /dev/null +++ b/include/linux/vgaarb.h -@@ -0,0 +1,170 @@ +@@ -0,0 +1,198 @@ +/* + * vgaarb.c + * @@ -1361,7 +1438,35 @@ index 0000000..cdc4ebb +} +#endif + -+void vga_set_irq_callback(struct pci_dev *pdev, void *cookie, void (*irq_func)(void *cookie, bool enable)); ++/* ++ * Register a client with the VGA arbitration logic ++ * return value: number of VGA devices in system. ++ * ++ * Clients have two callback mechanisms they can use. ++ * irq enable/disable callback - ++ * If a client can't disable its GPUs VGA resources, then we ++ * need to be able to ask it to turn off its irqs when we ++ * turn off its mem and io decoding. ++ * count_notify - ++ * If a client can disable its GPU VGA resource, it will ++ * get a count_notify callback everytime a new VGA device shows ++ * up in the system via hotplug. The client is expected to ++ * disable VGA legacy decoding if the VGA device goes above 1. ++ * It can re-enable VGA decoding if the number of devices goes to 0 ++ * ++ * Clients with disable abilities should check the return value ++ * of this function and if the VGA device count is > 1, should ++ * disable VGA decoding resources. ++ * ++ * Rationale: we cannot disable VGA decode resources unconditionally ++ * some single GPU laptops seem to require ACPI or BIOS access to the ++ * VGA registers to control things like backlights etc. ++ * Hopefully newer multi-GPU laptops do something saner, and desktops ++ * won't have any special ACPI for this. ++ */ ++int vga_client_register(struct pci_dev *pdev, void *cookie, ++ void (*irq_set_state)(void *cookie, bool state), ++ unsigned int (*count_notify)(void *cookie, int vga_count)); + +#endif /* LINUX_VGA_H */ -- From jkeating at fedoraproject.org Mon Jul 27 03:04:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:04:12 +0000 (UTC) Subject: rpms/rkward/devel rkward.spec,1.34,1.35 Message-ID: <20090727030412.626B511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rkward/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13669 Modified Files: rkward.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rkward.spec =================================================================== RCS file: /cvs/pkgs/rpms/rkward/devel/rkward.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- rkward.spec 20 May 2009 06:55:12 -0000 1.34 +++ rkward.spec 27 Jul 2009 03:04:12 -0000 1.35 @@ -2,7 +2,7 @@ Name: rkward Version: 0.5.0d -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical frontend for R language Summary(fr): Interface graphique pour le langage R @@ -117,6 +117,9 @@ touch --no-create %{_datadir}/icons/crys %{_datadir}/kde4/apps/katepart/syntax/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0d-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 pingou - 0.5.0d-1 - Update to release 0.5.0d From jkeating at fedoraproject.org Mon Jul 27 03:04:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:04:25 +0000 (UTC) Subject: rpms/rlog/devel rlog.spec,1.12,1.13 Message-ID: <20090727030425.CBA6611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rlog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13876 Modified Files: rlog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/rlog/devel/rlog.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- rlog.spec 29 Apr 2009 00:37:32 -0000 1.12 +++ rlog.spec 27 Jul 2009 03:04:25 -0000 1.13 @@ -1,7 +1,7 @@ Name: rlog Summary: Runtime Logging for C++ Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Development/Libraries Url: http://arg0.net/rlog @@ -64,6 +64,9 @@ Files needed for developing apps using r %doc docs/html docs/latex/refman.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Milos Jakubicek - 1.4-5 - Fix FTBFS: do not rebuild docs as it fails on latex From jkeating at fedoraproject.org Mon Jul 27 03:04:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:04:40 +0000 (UTC) Subject: rpms/rlwrap/devel rlwrap.spec,1.6,1.7 Message-ID: <20090727030440.2F48711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rlwrap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14035 Modified Files: rlwrap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rlwrap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rlwrap/devel/rlwrap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- rlwrap.spec 25 Feb 2009 20:06:36 -0000 1.6 +++ rlwrap.spec 27 Jul 2009 03:04:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: rlwrap Version: 0.30 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Wrapper for GNU readline Group: Applications/Text @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.30-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:04:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:04:52 +0000 (UTC) Subject: rpms/rmanage/devel rmanage.spec,1.4,1.5 Message-ID: <20090727030452.698E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rmanage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14191 Modified Files: rmanage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rmanage.spec =================================================================== RCS file: /cvs/pkgs/rpms/rmanage/devel/rmanage.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rmanage.spec 27 May 2009 09:35:21 -0000 1.4 +++ rmanage.spec 27 Jul 2009 03:04:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: rmanage Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Remotely monitoring machines on network Group: Development/Tools License: GPLv2 @@ -43,6 +43,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Parag Nemade - 0.1.7-1 - Update to next update version 0.1.7 From jkeating at fedoraproject.org Mon Jul 27 03:05:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:05:07 +0000 (UTC) Subject: rpms/rmap/devel rmap.spec,1.5,1.6 Message-ID: <20090727030507.1883111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rmap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14351 Modified Files: rmap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rmap/devel/rmap.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rmap.spec 8 Apr 2009 14:54:19 -0000 1.5 +++ rmap.spec 27 Jul 2009 03:05:06 -0000 1.6 @@ -1,6 +1,6 @@ Name: rmap Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Rmap is a package that is able to generate images of the earth from a distance License: GPLv2+ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/rmap/earth.rez %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Marek Mahut - 1.2-6 - Data subpackage for vector rendering data From jkeating at fedoraproject.org Mon Jul 27 03:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:05:23 +0000 (UTC) Subject: rpms/rmol/devel rmol.spec,1.6,1.7 Message-ID: <20090727030523.5930411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rmol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14507 Modified Files: rmol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rmol.spec =================================================================== RCS file: /cvs/pkgs/rpms/rmol/devel/rmol.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- rmol.spec 6 Jun 2009 16:53:50 -0000 1.6 +++ rmol.spec 27 Jul 2009 03:05:22 -0000 1.7 @@ -3,7 +3,7 @@ # Name: rmol Version: 0.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ library of Revenue Management and Optimisation classes and functions @@ -130,6 +130,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Denis Arnaud 0.22.0-1 - Upstream integration From jkeating at fedoraproject.org Mon Jul 27 03:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:05:38 +0000 (UTC) Subject: rpms/rng-utils/devel rng-utils.spec,1.17,1.18 Message-ID: <20090727030538.5750F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rng-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14690 Modified Files: rng-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rng-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/rng-utils/devel/rng-utils.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- rng-utils.spec 25 Feb 2009 20:10:25 -0000 1.17 +++ rng-utils.spec 27 Jul 2009 03:05:35 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Random number generator related utilities Name: rng-utils Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_mandir}/man8/rngd.8.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:05:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:05:52 +0000 (UTC) Subject: rpms/roadstencil-fonts/devel roadstencil-fonts.spec,1.6,1.7 Message-ID: <20090727030552.2BFE911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/roadstencil-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14882 Modified Files: roadstencil-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: roadstencil-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/roadstencil-fonts/devel/roadstencil-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- roadstencil-fonts.spec 9 Mar 2009 05:06:18 -0000 1.6 +++ roadstencil-fonts.spec 27 Jul 2009 03:05:52 -0000 1.7 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Roadstencil Fonts Group: User Interface/X @@ -52,6 +52,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Jon Stanley - 1.0-7 - Update for new guidelines From jkeating at fedoraproject.org Mon Jul 27 03:06:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:06:04 +0000 (UTC) Subject: rpms/robodoc/devel robodoc.spec,1.2,1.3 Message-ID: <20090727030604.5659011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/robodoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15052 Modified Files: robodoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: robodoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/robodoc/devel/robodoc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- robodoc.spec 25 Feb 2009 20:12:19 -0000 1.2 +++ robodoc.spec 27 Jul 2009 03:06:04 -0000 1.3 @@ -6,7 +6,7 @@ Name: robodoc Version: 4.99.36 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extract documentation from source code License: GPLv3+ Group: Development/Tools @@ -88,6 +88,9 @@ rm -rf "${RPM_BUILD_ROOT}" #------------------------------------------------------------------------------- %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.99.36-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.99.36-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:06:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:06:21 +0000 (UTC) Subject: rpms/robotfindskitten/devel robotfindskitten.spec,1.1,1.2 Message-ID: <20090727030621.C9EEC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/robotfindskitten/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15219 Modified Files: robotfindskitten.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: robotfindskitten.spec =================================================================== RCS file: /cvs/pkgs/rpms/robotfindskitten/devel/robotfindskitten.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- robotfindskitten.spec 17 Jul 2009 19:20:20 -0000 1.1 +++ robotfindskitten.spec 27 Jul 2009 03:06:21 -0000 1.2 @@ -1,6 +1,6 @@ Name: robotfindskitten Version: 1.7320508.406 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A game/zen simulation. You are robot. Your job is to find kitten. Group: Amusements/Games @@ -65,6 +65,9 @@ fi %{_datadir}/man/man6/robotfindskitten.6* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7320508.406-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Will Woods 1.7320508.406-2 - Update spec based on packaging review (bug #463808) From jkeating at fedoraproject.org Mon Jul 27 03:06:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:06:33 +0000 (UTC) Subject: rpms/rocksndiamonds/devel rocksndiamonds.spec,1.16,1.17 Message-ID: <20090727030633.9AE8911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rocksndiamonds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15393 Modified Files: rocksndiamonds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rocksndiamonds.spec =================================================================== RCS file: /cvs/pkgs/rpms/rocksndiamonds/devel/rocksndiamonds.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- rocksndiamonds.spec 25 Feb 2009 20:13:18 -0000 1.16 +++ rocksndiamonds.spec 27 Jul 2009 03:06:33 -0000 1.17 @@ -1,6 +1,6 @@ Name: rocksndiamonds Version: 3.2.6.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ Group: Amusements/Games Summary: Underground digging game @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:06:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:06:47 +0000 (UTC) Subject: rpms/rogue/devel rogue.spec,1.16,1.17 Message-ID: <20090727030647.8ACDD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rogue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15521 Modified Files: rogue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rogue.spec =================================================================== RCS file: /cvs/pkgs/rpms/rogue/devel/rogue.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- rogue.spec 25 Feb 2009 20:14:14 -0000 1.16 +++ rogue.spec 27 Jul 2009 03:06:47 -0000 1.17 @@ -1,6 +1,6 @@ Name: rogue Version: 5.4.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The original graphical adventure game Group: Amusements/Games @@ -67,6 +67,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.4.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:06:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:06:59 +0000 (UTC) Subject: rpms/rome/devel rome.spec,1.3,1.4 Message-ID: <20090727030659.6F46011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15668 Modified Files: rome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rome.spec =================================================================== RCS file: /cvs/pkgs/rpms/rome/devel/rome.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rome.spec 30 Mar 2009 13:07:40 -0000 1.3 +++ rome.spec 27 Jul 2009 03:06:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: rome Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: RSS and Atom Utilities Group: Development/Libraries @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Andrew Overholt 0.9-3 - Fix javadoc Group (rhbz#492761). From jkeating at fedoraproject.org Mon Jul 27 03:07:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:07:39 +0000 (UTC) Subject: rpms/rootsh/devel rootsh.spec,1.7,1.8 Message-ID: <20090727030739.D30F611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rootsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16125 Modified Files: rootsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rootsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/rootsh/devel/rootsh.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rootsh.spec 25 Feb 2009 20:18:03 -0000 1.7 +++ rootsh.spec 27 Jul 2009 03:07:39 -0000 1.8 @@ -1,7 +1,7 @@ Name: rootsh Summary: Shell wrapper for auditing Version: 1.5.3 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/System Source0: http://download.sourceforge.net/rootsh/%{name}-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/rootsh.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:07:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:07:52 +0000 (UTC) Subject: rpms/rosegarden4/devel rosegarden4.spec,1.13,1.14 Message-ID: <20090727030752.90BAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rosegarden4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16290 Modified Files: rosegarden4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rosegarden4.spec =================================================================== RCS file: /cvs/pkgs/rpms/rosegarden4/devel/rosegarden4.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- rosegarden4.spec 7 Mar 2009 23:13:23 -0000 1.13 +++ rosegarden4.spec 27 Jul 2009 03:07:52 -0000 1.14 @@ -1,6 +1,6 @@ Name: rosegarden4 Version: 1.7.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: MIDI, audio and notation editor Group: Applications/Multimedia License: GPLv2+ @@ -162,6 +162,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %doc data/fonts/README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 07 2009 Orcan Ogetbil - 1.7.3-3 - The software makes use of kdialog. Thus we re-add Requires: kdebase. From jkeating at fedoraproject.org Mon Jul 27 03:08:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:08:26 +0000 (UTC) Subject: rpms/rott/devel rott.spec,1.7,1.8 Message-ID: <20090727030826.3F0C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rott/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16506 Modified Files: rott.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rott.spec =================================================================== RCS file: /cvs/pkgs/rpms/rott/devel/rott.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rott.spec 25 Feb 2009 20:20:07 -0000 1.7 +++ rott.spec 27 Jul 2009 03:08:25 -0000 1.8 @@ -1,6 +1,6 @@ Name: rott Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Rise of the Triad Group: Amusements/Games License: GPLv2+ @@ -162,6 +162,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:08:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:08:52 +0000 (UTC) Subject: rpms/roundcubemail/devel roundcubemail.spec,1.24,1.25 Message-ID: <20090727030852.1567811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/roundcubemail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16742 Modified Files: roundcubemail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: roundcubemail.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundcubemail/devel/roundcubemail.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- roundcubemail.spec 15 Jul 2009 13:36:04 -0000 1.24 +++ roundcubemail.spec 27 Jul 2009 03:08:51 -0000 1.25 @@ -1,7 +1,7 @@ %define roundcubedir %{_datadir}/roundcubemail Name: roundcubemail Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Round Cube Webmail is a browser-based multilingual IMAP client Group: Applications/System @@ -143,6 +143,9 @@ exit 0 %config(noreplace) %{_sysconfdir}/logrotate.d/roundcubemail %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Jon Ciesla = 0.2.2-2 - Incorporated Chris Eveleigh's config changes to fix mimetype bug, BZ 511857. From jkeating at fedoraproject.org Mon Jul 27 03:09:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:09:10 +0000 (UTC) Subject: rpms/roundup/devel roundup.spec,1.18,1.19 Message-ID: <20090727030910.F1BB211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/roundup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16943 Modified Files: roundup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: roundup.spec =================================================================== RCS file: /cvs/pkgs/rpms/roundup/devel/roundup.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- roundup.spec 31 Mar 2009 20:16:07 -0000 1.18 +++ roundup.spec 27 Jul 2009 03:09:10 -0000 1.19 @@ -3,7 +3,7 @@ Summary: Simple and flexible issue-tracking system Name: roundup Version: 1.4.6 -Release: 5%{dist} +Release: 6%{dist} License: MIT Group: Applications/Engineering Source: http://pypi.python.org/packages/source/r/%{name}/%{name}-%{version}.tar.gz @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %doc README.Fedora COPYING.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michael Schwendt - 1.4.6-5 - fix unowned directory (#473661) From jkeating at fedoraproject.org Mon Jul 27 03:09:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:09:24 +0000 (UTC) Subject: rpms/roxterm/devel roxterm.spec,1.16,1.17 Message-ID: <20090727030924.27C6511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/roxterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17127 Modified Files: roxterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: roxterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/roxterm/devel/roxterm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- roxterm.spec 9 Jun 2009 21:29:45 -0000 1.16 +++ roxterm.spec 27 Jul 2009 03:09:23 -0000 1.17 @@ -1,6 +1,6 @@ Name: roxterm Version: 1.14.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A fast terminal emulator Group: User Interface/X @@ -72,6 +72,9 @@ fi %{_datadir}/icons/hicolor/scalable/apps/roxterm.svg %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Christoph Wickert - 1.14.2-2 - Rebuilt for libvte SONAME bump From jkeating at fedoraproject.org Mon Jul 27 03:09:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:09:50 +0000 (UTC) Subject: rpms/rp-pppoe/devel rp-pppoe.spec,1.45,1.46 Message-ID: <20090727030950.4AFF511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rp-pppoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17316 Modified Files: rp-pppoe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rp-pppoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/rp-pppoe/devel/rp-pppoe.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- rp-pppoe.spec 25 Feb 2009 20:23:56 -0000 1.45 +++ rp-pppoe.spec 27 Jul 2009 03:09:49 -0000 1.46 @@ -1,7 +1,7 @@ Summary: A PPP over Ethernet client (for xDSL support). Name: rp-pppoe Version: 3.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Daemons Url: http://www.roaringpenguin.com/pppoe/ @@ -145,6 +145,9 @@ exit 0 %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:10:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:10:12 +0000 (UTC) Subject: rpms/rpc2/devel rpc2.spec,1.4,1.5 Message-ID: <20090727031012.6F4B111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpc2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17503 Modified Files: rpc2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpc2.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpc2/devel/rpc2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rpc2.spec 27 Feb 2009 16:54:48 -0000 1.4 +++ rpc2.spec 27 Jul 2009 03:10:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: rpc2 Version: 2.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C library for remote procedure calls over UDP Group: System Environment/Libraries License: LGPLv2 @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Adam Goode - 2.8-1 - New upstream release + Bugfixes From jkeating at fedoraproject.org Mon Jul 27 03:10:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:10:49 +0000 (UTC) Subject: rpms/rpcbind/devel rpcbind.spec,1.42,1.43 Message-ID: <20090727031049.0B64411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpcbind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17725 Modified Files: rpcbind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpcbind.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpcbind/devel/rpcbind.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- rpcbind.spec 6 Jul 2009 18:31:32 -0000 1.42 +++ rpcbind.spec 27 Jul 2009 03:10:47 -0000 1.43 @@ -2,7 +2,7 @@ Name: rpcbind Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Addresses to RPC Program Number Mapper Group: System Environment/Daemons License: GPL @@ -120,6 +120,9 @@ fi %dir %attr(700,rpc,rpc) /var/lib/rpcbind %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Adam Jackson 0.2.0-3 - Requires(pre): coreutils for cut(1). From jkeating at fedoraproject.org Mon Jul 27 03:12:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:12:24 +0000 (UTC) Subject: rpms/rpm/devel rpm.spec,1.356,1.357 Message-ID: <20090727031224.8575E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18715 Modified Files: rpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpm/devel/rpm.spec,v retrieving revision 1.356 retrieving revision 1.357 diff -u -p -r1.356 -r1.357 --- rpm.spec 21 Jul 2009 10:15:33 -0000 1.356 +++ rpm.spec 27 Jul 2009 03:12:23 -0000 1.357 @@ -21,7 +21,7 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ Source0: http://rpm.org/releases/rpm-4.7.x/%{name}-%{srcver}.tar.bz2 @@ -404,6 +404,9 @@ exit 0 %doc doc/librpm/html/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Panu Matilainen - 4.7.1-1 - update to 4.7.1 ((http://rpm.org/wiki/Releases/4.7.1) - fix source url From jkeating at fedoraproject.org Mon Jul 27 03:12:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:12:40 +0000 (UTC) Subject: rpms/rpmconf/devel rpmconf.spec,1.1,1.2 Message-ID: <20090727031240.EE10811C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18964 Modified Files: rpmconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmconf/devel/rpmconf.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rpmconf.spec 20 Jul 2009 07:11:10 -0000 1.1 +++ rpmconf.spec 27 Jul 2009 03:12:40 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Tool to handle rpmnew and rpmsa Group: Applications/System License: GPLv3 Version: 0.1.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://wiki.github.com/xsuchy/rpmconf Source0: http://cloud.github.com/downloads/xsuchy/rpmconf/%{name}-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Miroslav Suchy 0.1.6-1 - addressed fedora package review notes (#7) From jkeating at fedoraproject.org Mon Jul 27 03:12:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:12:56 +0000 (UTC) Subject: rpms/rpmdepsize/devel rpmdepsize.spec,1.2,1.3 Message-ID: <20090727031256.261F811C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmdepsize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19189 Modified Files: rpmdepsize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmdepsize.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmdepsize/devel/rpmdepsize.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rpmdepsize.spec 12 Jun 2009 12:24:39 -0000 1.2 +++ rpmdepsize.spec 27 Jul 2009 03:12:55 -0000 1.3 @@ -1,6 +1,6 @@ Name: rpmdepsize Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A tool for visualizing RPM dependencies Group: Development/Libraries @@ -79,6 +79,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 1.0-4 - Rebuild against newest ocaml-sexplib. From jkeating at fedoraproject.org Mon Jul 27 03:13:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:13:19 +0000 (UTC) Subject: rpms/rpmdevtools/devel rpmdevtools.spec,1.19,1.20 Message-ID: <20090727031319.CE93811C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmdevtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19450 Modified Files: rpmdevtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmdevtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmdevtools/devel/rpmdevtools.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- rpmdevtools.spec 24 May 2009 21:34:15 -0000 1.19 +++ rpmdevtools.spec 27 Jul 2009 03:13:18 -0000 1.20 @@ -4,7 +4,7 @@ Name: rpmdevtools Version: 7.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: RPM Development Tools Group: Development/Tools @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Ville Skytt? - 7.3-1 - Release 7.3. From jkeating at fedoraproject.org Mon Jul 27 03:13:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:13:44 +0000 (UTC) Subject: rpms/rpmlint/devel rpmlint.spec,1.67,1.68 Message-ID: <20090727031344.6597311C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmlint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19685 Modified Files: rpmlint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmlint.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmlint/devel/rpmlint.spec,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- rpmlint.spec 29 Jun 2009 15:36:38 -0000 1.67 +++ rpmlint.spec 27 Jul 2009 03:13:44 -0000 1.68 @@ -1,6 +1,6 @@ Name: rpmlint Version: 0.90 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for checking common errors in RPM packages Group: Development/Tools @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Ville Skytt? - 0.90-1 - 0.90; fixes #508683. From mclasen at fedoraproject.org Mon Jul 27 03:13:46 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 03:13:46 +0000 (UTC) Subject: rpms/libgnomeui/devel libgnomeui.spec,1.114,1.115 Message-ID: <20090727031346.9312011C00DB@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnomeui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19640 Modified Files: libgnomeui.spec Log Message: Bump rev Index: libgnomeui.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeui/devel/libgnomeui.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- libgnomeui.spec 27 Jul 2009 03:11:08 -0000 1.114 +++ libgnomeui.spec 27 Jul 2009 03:13:46 -0000 1.115 @@ -18,7 +18,7 @@ Summary: GNOME base GUI library Name: libgnomeui Version: 2.24.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/libgnomeui/2.24/%{name}-%{version}.tar.bz2 Patch0: libgnomeui-2.23.4-disable-event-sounds.patch From jkeating at fedoraproject.org Mon Jul 27 03:14:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:14:00 +0000 (UTC) Subject: rpms/rpmorphan/devel rpmorphan.spec,1.1,1.2 Message-ID: <20090727031400.1A5AB11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmorphan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19923 Modified Files: rpmorphan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmorphan.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmorphan/devel/rpmorphan.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rpmorphan.spec 31 Mar 2009 12:23:25 -0000 1.1 +++ rpmorphan.spec 27 Jul 2009 03:13:59 -0000 1.2 @@ -1,7 +1,7 @@ Summary: List packages that have no dependencies (like deborphan) Name: rpmorphan Version: 1.4 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPLv2+ @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Richard W.M. Jones - 1.4-5 - Clarify the documentation, usage of 'orphan' and other terminology. From jkeating at fedoraproject.org Mon Jul 27 03:14:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:14:15 +0000 (UTC) Subject: rpms/rpmreaper/devel rpmreaper.spec,1.7,1.8 Message-ID: <20090727031415.DF7C011C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmreaper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20141 Modified Files: rpmreaper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmreaper.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmreaper/devel/rpmreaper.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rpmreaper.spec 2 Apr 2009 12:08:56 -0000 1.7 +++ rpmreaper.spec 27 Jul 2009 03:14:15 -0000 1.8 @@ -1,6 +1,6 @@ Name: rpmreaper Version: 0.1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for removing packages from system Group: Applications/System @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 02 2009 Miroslav Lichvar 0.1.6-1 - update to 0.1.6 From jkeating at fedoraproject.org Mon Jul 27 03:14:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:14:29 +0000 (UTC) Subject: rpms/rpmrebuild/devel rpmrebuild.spec,1.7,1.8 Message-ID: <20090727031429.972DB11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpmrebuild/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20337 Modified Files: rpmrebuild.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpmrebuild.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpmrebuild/devel/rpmrebuild.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rpmrebuild.spec 19 May 2009 14:55:46 -0000 1.7 +++ rpmrebuild.spec 27 Jul 2009 03:14:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: rpmrebuild Version: 2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool to build rpm file from rpm database Group: Development/Tools @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/set_tag.plug.1rrp.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Anderson Silva 2.3-3 - on F11 rpmrebuild requires rpm-build to be downloaded (live image at least) * Wed Feb 25 2009 Fedora Release Engineering - 2.3-2 From jkeating at fedoraproject.org Mon Jul 27 03:14:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:14:48 +0000 (UTC) Subject: rpms/rpy/devel rpy.spec,1.43,1.44 Message-ID: <20090727031448.BDE5411C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20479 Modified Files: rpy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpy.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpy/devel/rpy.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- rpy.spec 10 Jul 2009 15:46:18 -0000 1.43 +++ rpy.spec 27 Jul 2009 03:14:48 -0000 1.44 @@ -4,7 +4,7 @@ Name: rpy Summary: Python interface to the R language Version: 2.0.6 -Release: 3%{?dist} +Release: 4%{?dist} Url: http://rpy.sourceforge.net Source: http://downloads.sf.net/%{name}/%{name}2-%{version}.tar.gz License: MPLv1.1 or GPLv2+ or LGPLv2+ @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/rpy2-%{version}*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Tom "spot" Callaway - 2.0.6-3 - images are only installed incorrectly on 64bit platforms that aren't ia64 From jkeating at fedoraproject.org Mon Jul 27 03:15:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:15:04 +0000 (UTC) Subject: rpms/rrdtool/devel rrdtool.spec,1.82,1.83 Message-ID: <20090727031504.752E611C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rrdtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20698 Modified Files: rrdtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rrdtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/rrdtool/devel/rrdtool.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- rrdtool.spec 13 Jul 2009 09:12:51 -0000 1.82 +++ rrdtool.spec 27 Jul 2009 03:15:04 -0000 1.83 @@ -9,7 +9,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool Version: 1.3.8 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ with exceptions Group: Applications/Databases URL: http://oss.oetiker.ch/rrdtool/ @@ -323,6 +323,9 @@ find examples/ -type f -exec chmod 0644 %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet 1.3.8-3 - rebuild for new PHP 5.3.0 ABI (20090626) From jkeating at fedoraproject.org Mon Jul 27 03:07:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:07:25 +0000 (UTC) Subject: rpms/rootfiles/devel rootfiles.spec,1.15,1.16 Message-ID: <20090727030725.5DDE111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rootfiles/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15956 Modified Files: rootfiles.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rootfiles.spec =================================================================== RCS file: /cvs/pkgs/rpms/rootfiles/devel/rootfiles.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- rootfiles.spec 30 Mar 2009 11:51:09 -0000 1.15 +++ rootfiles.spec 27 Jul 2009 03:07:25 -0000 1.16 @@ -1,7 +1,7 @@ Summary: The basic required files for the root user's directory Name: rootfiles Version: 8.1 -Release: 5%{?dist} +Release: 6%{?dist} License: Public Domain Group: System Environment/Base @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) /root/.[A-Za-z]* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Ondrej Vasik - 8.1-5 - removed clear from dot-bash_logout (synchronized with bash, related to #429406) From mclasen at fedoraproject.org Mon Jul 27 03:11:09 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 03:11:09 +0000 (UTC) Subject: rpms/libgnomeui/devel libgnomeui.spec,1.113,1.114 Message-ID: <20090727031109.1058911C048A@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/libgnomeui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17854 Modified Files: libgnomeui.spec Log Message: Save some space Index: libgnomeui.spec =================================================================== RCS file: /cvs/pkgs/rpms/libgnomeui/devel/libgnomeui.spec,v retrieving revision 1.113 retrieving revision 1.114 diff -u -p -r1.113 -r1.114 --- libgnomeui.spec 25 Jul 2009 05:48:19 -0000 1.113 +++ libgnomeui.spec 27 Jul 2009 03:11:08 -0000 1.114 @@ -134,7 +134,7 @@ rm -rf $RPM_BUILD_ROOT %files -f %{po_package}.lang %defattr(-,root,root) -%doc COPYING.LIB ChangeLog NEWS +%doc COPYING.LIB NEWS %{_libdir}/lib*.so.* ## FIXME questionable that libgnomeui still contains these @@ -143,12 +143,16 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root) +%doc %{_datadir}/gtk-doc/html/libgnomeui +%doc ChangeLog %{_libdir}/lib*.so %{_libdir}/pkgconfig/* %{_includedir}/* -%{_datadir}/gtk-doc/html/libgnomeui %changelog +* Sun Jul 26 2009 Matthias Clasen - 2.24.1-3 +- Save some space + * Fri Jul 24 2009 Fedora Release Engineering - 2.24.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:11:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:11:18 +0000 (UTC) Subject: rpms/rpl/devel rpl.spec,1.5,1.6 Message-ID: <20090727031118.AB5A011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18087 Modified Files: rpl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpl.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpl/devel/rpl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rpl.spec 25 Feb 2009 20:26:46 -0000 1.5 +++ rpl.spec 27 Jul 2009 03:11:17 -0000 1.6 @@ -1,6 +1,6 @@ Name: rpl Version: 1.5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Intelligent recursive search/replace utility Group: Applications/Text @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:11:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:11:57 +0000 (UTC) Subject: rpms/rpld/devel rpld.spec,1.5,1.6 Message-ID: <20090727031157.6B87B11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rpld/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18325 Modified Files: rpld.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rpld.spec =================================================================== RCS file: /cvs/pkgs/rpms/rpld/devel/rpld.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rpld.spec 25 Feb 2009 20:27:47 -0000 1.5 +++ rpld.spec 27 Jul 2009 03:11:55 -0000 1.6 @@ -1,6 +1,6 @@ Name: rpld Version: 1.8 -Release: 0.5.beta1%{?dist} +Release: 0.6.beta1%{?dist} Summary: RPL/RIPL remote boot daemon Group: System Environment/Daemons # No version specified. @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man[^3]/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-0.6.beta1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8-0.5.beta1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:15:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:15:23 +0000 (UTC) Subject: rpms/rsh/devel rsh.spec,1.50,1.51 Message-ID: <20090727031523.D575A11C00DB@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20907 Modified Files: rsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsh/devel/rsh.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- rsh.spec 30 Mar 2009 12:40:05 -0000 1.50 +++ rsh.spec 27 Jul 2009 03:15:23 -0000 1.51 @@ -1,7 +1,7 @@ Summary: Clients for remote access commands (rsh, rlogin, rcp). Name: rsh Version: 0.17 -Release: 54%{?dist} +Release: 55%{?dist} License: BSD Group: Applications/Internet @@ -194,6 +194,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/*.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-55 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Adam Tkac 0.17-54 - improve pam_env patch From jkeating at fedoraproject.org Mon Jul 27 03:15:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:15:49 +0000 (UTC) Subject: rpms/rsibreak/devel rsibreak.spec,1.16,1.17 Message-ID: <20090727031549.3BC5711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsibreak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21182 Modified Files: rsibreak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsibreak.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsibreak/devel/rsibreak.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- rsibreak.spec 26 Feb 2009 20:42:03 -0000 1.16 +++ rsibreak.spec 27 Jul 2009 03:15:49 -0000 1.17 @@ -1,7 +1,7 @@ Name: rsibreak Version: 0.9.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A small utility which bothers you at certain intervals Group: Amusements/Graphics License: GPLv2+ @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/kde4/plasma_applet_rsibreak.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Artem S. Tashkinov 0.9.0-10 - trunk fix for memory leak From jkeating at fedoraproject.org Mon Jul 27 03:16:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:16:00 +0000 (UTC) Subject: rpms/rsnapshot/devel rsnapshot.spec,1.14,1.15 Message-ID: <20090727031600.9F6C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsnapshot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21379 Modified Files: rsnapshot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsnapshot.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsnapshot/devel/rsnapshot.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- rsnapshot.spec 25 Feb 2009 20:37:12 -0000 1.14 +++ rsnapshot.spec 27 Jul 2009 03:16:00 -0000 1.15 @@ -6,7 +6,7 @@ Name: rsnapshot Version: 1.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Local and remote filesystem snapshot utility Group: Applications/System License: GPLv2+ @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:16:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:08 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031608.7B8E310F89C@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora 11) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:05 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031605.B3FA210F897@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora 11) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:16:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:16:13 +0000 (UTC) Subject: rpms/rss-glx/devel rss-glx.spec,1.30,1.31 Message-ID: <20090727031613.6CB9D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rss-glx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21529 Modified Files: rss-glx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rss-glx.spec =================================================================== RCS file: /cvs/pkgs/rpms/rss-glx/devel/rss-glx.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- rss-glx.spec 25 Feb 2009 20:38:06 -0000 1.30 +++ rss-glx.spec 27 Jul 2009 03:16:13 -0000 1.31 @@ -44,7 +44,7 @@ Summary: Really Slick Screensavers Name: rss-glx Version: 0.8.2%{patchext} -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Amusements/Graphics URL: http://rss-glx.sourceforge.net/ @@ -328,6 +328,9 @@ fi %{kdessconfigdir}/*.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2.p-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.2.p-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:16:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:13 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031613.061CF10F889@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora devel) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:16 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031616.01DEF10F8B4@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora devel) to Obsolete for lxfancy To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:28 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031628.8D94510F8B5@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:16:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:16:24 +0000 (UTC) Subject: rpms/rss2email/devel rss2email.spec,1.8,1.9 Message-ID: <20090727031624.5252B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rss2email/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21686 Modified Files: rss2email.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rss2email.spec =================================================================== RCS file: /cvs/pkgs/rpms/rss2email/devel/rss2email.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rss2email.spec 25 Feb 2009 20:39:00 -0000 1.8 +++ rss2email.spec 27 Jul 2009 03:16:24 -0000 1.9 @@ -1,6 +1,6 @@ Name: rss2email Version: 2.65 -Release: 2.1 +Release: 3.1 Summary: Deliver news from RSS feeds to your smtp server as text or html mail Group: Applications/Internet @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.65-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.65-2.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:16:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:30 +0000 Subject: [pkgdb] ibus-table-translit: cchance has given up approveacls Message-ID: <20090727031630.4B11110F8B6@bastion2.fedora.phx.redhat.com> cchance has given up the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:33 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested approveacls Message-ID: <20090727031633.9483D10F8B7@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:35 +0000 Subject: [pkgdb] ibus-table-translit: cchance has given up approveacls Message-ID: <20090727031635.EB60410F889@bastion2.fedora.phx.redhat.com> cchance has given up the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:16:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:16:36 +0000 (UTC) Subject: rpms/rssh/devel rssh.spec,1.3,1.4 Message-ID: <20090727031636.0340111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21814 Modified Files: rssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/rssh/devel/rssh.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rssh.spec 25 Feb 2009 20:40:01 -0000 1.3 +++ rssh.spec 27 Jul 2009 03:16:35 -0000 1.4 @@ -1,6 +1,6 @@ Name: rssh Version: 2.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Restricted shell for use with OpenSSH, allowing only scp and/or sftp Group: Applications/Internet License: BSD @@ -59,6 +59,9 @@ exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:16:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:39 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031639.9113410F8B9@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:41 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested approveacls Message-ID: <20090727031641.9BB6F10F8BA@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:47 +0000 Subject: [pkgdb] ibus-table-translit: cchance has given up approveacls Message-ID: <20090727031647.91DEB10F899@bastion2.fedora.phx.redhat.com> cchance has given up the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Mon Jul 27 03:16:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:51 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090727031651.2F2DD10F8BB@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora 11) to Approved for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:16:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:16:48 +0000 (UTC) Subject: rpms/rsstool/devel rsstool.spec,1.2,1.3 Message-ID: <20090727031648.8079011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsstool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21955 Modified Files: rsstool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsstool.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsstool/devel/rsstool.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rsstool.spec 25 Feb 2009 21:06:19 -0000 1.2 +++ rsstool.spec 27 Jul 2009 03:16:48 -0000 1.3 @@ -1,6 +1,6 @@ Name: rsstool Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command-line RSS/Atom parser and generator Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:16:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:16:56 +0000 Subject: [pkgdb] ibus-table-translit: cchance has given up approveacls Message-ID: <20090727031656.3CAAB10F89A@bastion2.fedora.phx.redhat.com> cchance has given up the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:18:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:18:39 +0000 (UTC) Subject: rpms/rtkit/devel rtkit.spec,1.2,1.3 Message-ID: <20090727031839.9B98D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rtkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23115 Modified Files: rtkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rtkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtkit/devel/rtkit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rtkit.spec 2 Jul 2009 00:51:14 -0000 1.2 +++ rtkit.spec 27 Jul 2009 03:18:39 -0000 1.3 @@ -1,6 +1,6 @@ Name: rtkit Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Realtime Policy and Watchdog Daemon Group: System Environment/Base # The daemon itself is GPLv3+, the reference implementation for the client BSD @@ -57,6 +57,9 @@ dbus-send --system --type=method_call -- %{_sysconfdir}/dbus-1/system.d/org.freedesktop.RealtimeKit1.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Lennart Poettering - 0.3-1 - New release From jkeating at fedoraproject.org Mon Jul 27 03:18:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:18:51 +0000 (UTC) Subject: rpms/rtorrent/devel rtorrent.spec,1.31,1.32 Message-ID: <20090727031851.62A6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rtorrent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23264 Modified Files: rtorrent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rtorrent.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtorrent/devel/rtorrent.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- rtorrent.spec 3 Jul 2009 21:38:08 -0000 1.31 +++ rtorrent.spec 27 Jul 2009 03:18:51 -0000 1.32 @@ -3,7 +3,7 @@ Name: rtorrent License: GPLv2+ with exceptions Group: Applications/Internet Version: 0.8.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: BitTorrent client based on libtorrent URL: http://rtorrent.rakshasa.no/ Source0: http://libtorrent.rakshasa.no/downloads/rtorrent-%{version}.tar.gz @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/rtorrent* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 3 2009 Conrad Meyer - 0.8.5-1 - Bump version. From jkeating at fedoraproject.org Mon Jul 27 03:19:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:19:07 +0000 (UTC) Subject: rpms/rtpproxy/devel rtpproxy.spec,1.11,1.12 Message-ID: <20090727031907.4161B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rtpproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23415 Modified Files: rtpproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rtpproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtpproxy/devel/rtpproxy.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- rtpproxy.spec 27 Mar 2009 14:39:52 -0000 1.11 +++ rtpproxy.spec 27 Jul 2009 03:19:06 -0000 1.12 @@ -1,6 +1,6 @@ Name: rtpproxy Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A symmetric RTP proxy Group: Applications/Internet License: BSD @@ -72,6 +72,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Peter Lemenkov - 1.2.0-1 - Ver. 1.2.0 From jkeating at fedoraproject.org Mon Jul 27 03:19:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:19:24 +0000 (UTC) Subject: rpms/rubber/devel rubber.spec,1.4,1.5 Message-ID: <20090727031924.CC6BE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubber/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23611 Modified Files: rubber.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubber.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubber/devel/rubber.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubber.spec 15 Jun 2009 14:12:08 -0000 1.4 +++ rubber.spec 27 Jul 2009 03:19:22 -0000 1.5 @@ -3,7 +3,7 @@ Name: rubber Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An automated system for building LaTeX documents Group: Applications/Publishing @@ -66,6 +66,9 @@ fi %{_mandir}/fr/man1/*.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Sergio Pascual - 1.1-5 - Patch to remove a Deprecation Warning in Python 2.6 (bz #506053) From jkeating at fedoraproject.org Mon Jul 27 03:19:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:19:45 +0000 (UTC) Subject: rpms/rubberband/devel rubberband.spec,1.5,1.6 Message-ID: <20090727031945.1288011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubberband/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23839 Modified Files: rubberband.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubberband.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubberband/devel/rubberband.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubberband.spec 25 Feb 2009 21:14:54 -0000 1.5 +++ rubberband.spec 27 Jul 2009 03:19:44 -0000 1.6 @@ -1,6 +1,6 @@ Name: rubberband Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Audio time-stretching and pitch-shifting library Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:20:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:20:11 +0000 (UTC) Subject: rpms/ruby-activerecord/devel ruby-activerecord.spec,1.5,1.6 Message-ID: <20090727032011.8D2CC11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-activerecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24172 Modified Files: ruby-activerecord.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-activerecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-activerecord/devel/ruby-activerecord.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ruby-activerecord.spec 25 Feb 2009 21:17:35 -0000 1.5 +++ ruby-activerecord.spec 27 Jul 2009 03:20:11 -0000 1.6 @@ -5,7 +5,7 @@ Name: ruby-%{rname} Version: 2.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Implements the ActiveRecord pattern for ORM Group: Development/Languages @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %doc README CHANGELOG examples/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:20:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:20:27 +0000 (UTC) Subject: rpms/ruby-activesupport/devel ruby-activesupport.spec,1.6,1.7 Message-ID: <20090727032027.068A611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-activesupport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24332 Modified Files: ruby-activesupport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-activesupport.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-activesupport/devel/ruby-activesupport.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ruby-activesupport.spec 25 Feb 2009 21:18:29 -0000 1.6 +++ ruby-activesupport.spec 27 Jul 2009 03:20:26 -0000 1.7 @@ -4,7 +4,7 @@ Name: ruby-%{rname} Version: 2.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility classes and extension to Ruby's standard library Group: Development/Languages @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:20:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:20:45 +0000 (UTC) Subject: rpms/ruby-augeas/devel ruby-augeas.spec,1.4,1.5 Message-ID: <20090727032045.AA56011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-augeas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24505 Modified Files: ruby-augeas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-augeas.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-augeas/devel/ruby-augeas.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ruby-augeas.spec 25 Feb 2009 21:19:22 -0000 1.4 +++ ruby-augeas.spec 27 Jul 2009 03:20:44 -0000 1.5 @@ -3,7 +3,7 @@ Name: ruby-augeas Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Ruby bindings for Augeas Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:21:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:21:02 +0000 (UTC) Subject: rpms/ruby-bdb/devel ruby-bdb.spec,1.6,1.7 Message-ID: <20090727032102.6100111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-bdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24673 Modified Files: ruby-bdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-bdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-bdb/devel/ruby-bdb.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ruby-bdb.spec 25 Feb 2009 21:20:15 -0000 1.6 +++ ruby-bdb.spec 27 Jul 2009 03:21:01 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Sleepycat Berkeley DB and DB XML Name: ruby-bdb Version: 0.6.5 -Release: 2%{?dist} +Release: 3%{?dist} License: Ruby Group: Development/Libraries Source: ftp://moulon.inra.fr/pub/ruby/%{tarname}-%{version}.tar.gz @@ -44,6 +44,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{ruby_sitearch}/bdb.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:21:17 +0000 (UTC) Subject: rpms/ruby-cairo/devel ruby-cairo.spec,1.9,1.10 Message-ID: <20090727032117.EDBFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-cairo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24861 Modified Files: ruby-cairo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-cairo.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-cairo/devel/ruby-cairo.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ruby-cairo.spec 25 Feb 2009 21:21:08 -0000 1.9 +++ ruby-cairo.spec 27 Jul 2009 03:21:17 -0000 1.10 @@ -3,7 +3,7 @@ Name: ruby-cairo Version: 1.8.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Ruby bindings for cairo Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:21:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:21:30 +0000 (UTC) Subject: rpms/ruby-fam/devel ruby-fam.spec,1.4,1.5 Message-ID: <20090727032130.89CE711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-fam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25013 Modified Files: ruby-fam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-fam.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-fam/devel/ruby-fam.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ruby-fam.spec 25 Feb 2009 21:22:00 -0000 1.4 +++ ruby-fam.spec 27 Jul 2009 03:21:30 -0000 1.5 @@ -4,7 +4,7 @@ Name: ruby-fam Version: 0.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Gamin/FAM bindings for Ruby Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %doc api event_codes.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:21:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:21:41 +0000 (UTC) Subject: rpms/ruby-flexmock/devel ruby-flexmock.spec,1.2,1.3 Message-ID: <20090727032141.7278311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-flexmock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25149 Modified Files: ruby-flexmock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-flexmock.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-flexmock/devel/ruby-flexmock.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ruby-flexmock.spec 25 Feb 2009 21:22:53 -0000 1.2 +++ ruby-flexmock.spec 27 Jul 2009 03:21:41 -0000 1.3 @@ -3,7 +3,7 @@ Name: ruby-flexmock Version: 0.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Mock object library for ruby Group: Development/Languages @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:21:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:21:52 +0000 (UTC) Subject: rpms/ruby-icon-artist/devel ruby-icon-artist.spec,1.2,1.3 Message-ID: <20090727032152.5F45D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-icon-artist/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25275 Modified Files: ruby-icon-artist.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-icon-artist.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-icon-artist/devel/ruby-icon-artist.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ruby-icon-artist.spec 13 Jul 2009 11:33:14 -0000 1.2 +++ ruby-icon-artist.spec 27 Jul 2009 03:21:52 -0000 1.3 @@ -2,7 +2,7 @@ Name: ruby-icon-artist Version: 0.1.90 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Supporting libraries for icon artists Group: Development/Languages @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.90-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Martin Sourada - 0.1.90-2 - Backport fix for correct checking of icon name from git From jkeating at fedoraproject.org Mon Jul 27 03:22:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:22:04 +0000 (UTC) Subject: rpms/ruby-ldap/devel ruby-ldap.spec,1.6,1.7 Message-ID: <20090727032204.E683711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-ldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25402 Modified Files: ruby-ldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-ldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-ldap/devel/ruby-ldap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ruby-ldap.spec 19 Apr 2009 22:35:16 -0000 1.6 +++ ruby-ldap.spec 27 Jul 2009 03:22:04 -0000 1.7 @@ -3,7 +3,7 @@ Name: ruby-ldap Version: 0.9.7 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Ruby LDAP libraries Group: Development/Languages License: BSD @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Milos Jakubicek - 0.9.7-8 - Fix FTBFS: Added ruby-ldap-0.9.7-openldap.patch From jkeating at fedoraproject.org Mon Jul 27 03:22:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:22:17 +0000 (UTC) Subject: rpms/ruby-libvirt/devel ruby-libvirt.spec,1.12,1.13 Message-ID: <20090727032217.D300A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25569 Modified Files: ruby-libvirt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-libvirt/devel/ruby-libvirt.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ruby-libvirt.spec 10 Mar 2009 00:49:09 -0000 1.12 +++ ruby-libvirt.spec 27 Jul 2009 03:22:17 -0000 1.13 @@ -3,7 +3,7 @@ Name: ruby-libvirt Version: 0.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Ruby bindings for libvirt Group: Development/Languages @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 David Lutterkort - 0.1.0-4 - Disable tests since they cause spurious failures From jkeating at fedoraproject.org Mon Jul 27 03:22:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:22:40 +0000 (UTC) Subject: rpms/ruby-mysql/devel ruby-mysql.spec,1.12,1.13 Message-ID: <20090727032240.AB29A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-mysql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25747 Modified Files: ruby-mysql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-mysql.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-mysql/devel/ruby-mysql.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ruby-mysql.spec 25 Feb 2009 21:26:16 -0000 1.12 +++ ruby-mysql.spec 27 Jul 2009 03:22:40 -0000 1.13 @@ -3,7 +3,7 @@ Name: ruby-mysql Version: 2.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Ruby interface to MySQL Group: Development/Languages @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{ruby_sitearchdir}/mysql.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Mon Jul 27 03:22:42 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 03:22:42 +0000 (UTC) Subject: rpms/sound-juicer/devel sound-juicer.spec,1.115,1.116 Message-ID: <20090727032242.6A78611C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/sound-juicer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25688 Modified Files: sound-juicer.spec Log Message: Rebuild Index: sound-juicer.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-juicer/devel/sound-juicer.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- sound-juicer.spec 7 May 2009 22:08:23 -0000 1.115 +++ sound-juicer.spec 27 Jul 2009 03:22:41 -0000 1.116 @@ -8,7 +8,7 @@ Name: sound-juicer Summary: Clean and lean CD ripper Version: 2.26.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://download.gnome.org/sources/sound-juicer/2.26/%{name}-%{version}.tar.bz2 @@ -115,6 +115,9 @@ fi %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Matthias Clasen - 2.26.1-4 +- Rebuild to shrink GConf schemas + * Thu May 07 2009 Bastien Nocera 2.26.1-3 - Update patch for #498764 From jkeating at fedoraproject.org Mon Jul 27 03:22:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:22:54 +0000 (UTC) Subject: rpms/ruby-ncurses/devel ruby-ncurses.spec,1.4,1.5 Message-ID: <20090727032254.3F7C611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-ncurses/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25953 Modified Files: ruby-ncurses.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-ncurses.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-ncurses/devel/ruby-ncurses.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ruby-ncurses.spec 25 Feb 2009 21:27:07 -0000 1.4 +++ ruby-ncurses.spec 27 Jul 2009 03:22:54 -0000 1.5 @@ -7,7 +7,7 @@ Name: %distname Version: 1.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A module for ruby applications for using ncurses interfaces Group: System Environment/Libraries License: LGPLv2+ @@ -52,6 +52,9 @@ ruby extconf.rb %{ruby_sitelib}/ncurses.rb %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:23:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:23:10 +0000 (UTC) Subject: rpms/ruby-openid/devel ruby-openid.spec,1.6,1.7 Message-ID: <20090727032310.7F9A911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-openid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26172 Modified Files: ruby-openid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-openid.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-openid/devel/ruby-openid.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ruby-openid.spec 7 Jul 2009 12:48:45 -0000 1.6 +++ ruby-openid.spec 27 Jul 2009 03:23:10 -0000 1.7 @@ -3,7 +3,7 @@ Name: ruby-openid Version: 2.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Ruby library for verifying and serving OpenID identities Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Allisson Azevedo 2.1.7-1 - Update to 2.1.7 From jkeating at fedoraproject.org Mon Jul 27 03:23:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:23:28 +0000 (UTC) Subject: rpms/ruby-postgres/devel ruby-postgres.spec,1.9,1.10 Message-ID: <20090727032328.D5F1511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-postgres/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26353 Modified Files: ruby-postgres.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-postgres.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-postgres/devel/ruby-postgres.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ruby-postgres.spec 25 Feb 2009 21:28:52 -0000 1.9 +++ ruby-postgres.spec 27 Jul 2009 03:23:28 -0000 1.10 @@ -2,7 +2,7 @@ Name: ruby-postgres Version: 0.7.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A Ruby interface for the PostgreSQL database engine Group: Development/Languages # Source says that ruby-gems-postgres is distributable under the same @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{ruby_sitearch}/postgres.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:23:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:23:48 +0000 (UTC) Subject: rpms/ruby-qpid/devel ruby-qpid.spec,1.15,1.16 Message-ID: <20090727032348.0335B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-qpid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26562 Modified Files: ruby-qpid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-qpid.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-qpid/devel/ruby-qpid.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- ruby-qpid.spec 6 Jul 2009 20:28:30 -0000 1.15 +++ ruby-qpid.spec 27 Jul 2009 03:23:47 -0000 1.16 @@ -1,6 +1,6 @@ Name: ruby-qpid Version: 0.5.791584 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Ruby language client for AMQP Group: Development/Ruby @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc LICENSE.txt NOTICE.txt RELEASE_NOTES %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.791584-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Nuno Santos - 0.5.791584-1 - Rebased to svn rev 791584 From jkeating at fedoraproject.org Mon Jul 27 03:24:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:24:03 +0000 (UTC) Subject: rpms/ruby-racc/devel ruby-racc.spec,1.3,1.4 Message-ID: <20090727032403.20D6011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-racc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26735 Modified Files: ruby-racc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-racc.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-racc/devel/ruby-racc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ruby-racc.spec 25 Feb 2009 21:30:35 -0000 1.3 +++ ruby-racc.spec 27 Jul 2009 03:24:02 -0000 1.4 @@ -5,7 +5,7 @@ Summary: LALR(1) Parser Generator Name: ruby-%{rname} Version: 1.4.5 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://i.loveruby.net/en/racc.html Source0: http://i.loveruby.net/archive/racc/%{rname}-%{version}-all.tar.gz License: LGPLv2 @@ -48,6 +48,9 @@ rm -rf %buildroot %doc packages/racc/COPYING README.* packages/racc/NEWS.* packages/racc/doc.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:07:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:07:12 +0000 (UTC) Subject: rpms/root-tail/devel root-tail.spec,1.4,1.5 Message-ID: <20090727030712.7403711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/root-tail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15821 Modified Files: root-tail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: root-tail.spec =================================================================== RCS file: /cvs/pkgs/rpms/root-tail/devel/root-tail.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- root-tail.spec 25 Feb 2009 20:16:03 -0000 1.4 +++ root-tail.spec 27 Jul 2009 03:07:12 -0000 1.5 @@ -1,6 +1,6 @@ Name: root-tail Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Displays a given file anywhere on your X11 root window Group: User Interface/X @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:17:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:17:01 +0000 (UTC) Subject: rpms/rsync/devel rsync.spec,1.66,1.67 Message-ID: <20090727031701.1C7DA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsync/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22128 Modified Files: rsync.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsync.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsync/devel/rsync.spec,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -r1.66 -r1.67 --- rsync.spec 1 Jun 2009 16:43:02 -0000 1.66 +++ rsync.spec 27 Jul 2009 03:17:00 -0000 1.67 @@ -7,7 +7,7 @@ Summary: A program for synchronizing files over a network Name: rsync Version: 3.0.6 -Release: 2%{?prerelease}%{?dist} +Release: 3%{?prerelease}%{?dist} Group: Applications/Internet URL: http://rsync.samba.org/ @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man5/rsyncd.conf.5* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Simo Sorce 3.0.6-2 - Final 3.0.6 release From jkeating at fedoraproject.org Mon Jul 27 03:17:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:17:21 +0000 (UTC) Subject: rpms/rsyslog/devel rsyslog.spec,1.60,1.61 Message-ID: <20090727031721.A54DE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rsyslog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22282 Modified Files: rsyslog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rsyslog.spec =================================================================== RCS file: /cvs/pkgs/rpms/rsyslog/devel/rsyslog.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- rsyslog.spec 14 Jul 2009 13:52:38 -0000 1.60 +++ rsyslog.spec 27 Jul 2009 03:17:19 -0000 1.61 @@ -3,7 +3,7 @@ Summary: Enhanced system logging and kernel message trapping daemons Name: rsyslog Version: 4.2.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: System Environment/Daemons URL: http://www.rsyslog.com/ @@ -192,6 +192,9 @@ fi %{_libdir}/rsyslog/lmnsd_gtls.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Tomas Heinrich 4.2.0-1 - upgrade From pkgdb at fedoraproject.org Mon Jul 27 03:17:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:17:04 +0000 Subject: [pkgdb] ibus-table-translit: cchance has requested approveacls Message-ID: <20090727031704.7F66B10F8B7@bastion2.fedora.phx.redhat.com> cchance has requested the approveacls acl on ibus-table-translit (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From jkeating at fedoraproject.org Mon Jul 27 03:17:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:17:43 +0000 (UTC) Subject: rpms/rt3/devel rt3.spec,1.41,1.42 Message-ID: <20090727031743.8F29611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rt3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22495 Modified Files: rt3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rt3.spec =================================================================== RCS file: /cvs/pkgs/rpms/rt3/devel/rt3.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- rt3.spec 24 Jun 2009 22:01:15 -0000 1.41 +++ rt3.spec 27 Jul 2009 03:17:42 -0000 1.42 @@ -40,7 +40,7 @@ Name: rt3 Version: 3.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Request tracker 3 Group: Applications/Internet @@ -431,6 +431,9 @@ fi %{RT3_LIBDIR}/RT/Test* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Ralf Cors?pius - 3.8.4-2 - Add R: perl(Data::ICal), R: perl(Data::ICal::Entry::Event) (BZ #507965). From jkeating at fedoraproject.org Mon Jul 27 03:17:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:17:57 +0000 (UTC) Subject: rpms/rt61pci-firmware/devel rt61pci-firmware.spec,1.2,1.3 Message-ID: <20090727031757.E05A011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rt61pci-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22678 Modified Files: rt61pci-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rt61pci-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/rt61pci-firmware/devel/rt61pci-firmware.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rt61pci-firmware.spec 25 Feb 2009 21:10:03 -0000 1.2 +++ rt61pci-firmware.spec 27 Jul 2009 03:17:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: rt61pci-firmware Version: 1.2 -Release: 5 +Release: 6 Summary: Firmware for Ralink? RT2561/RT2661 A/B/G network adaptors Group: System Environment/Kernel License: Redistributable, no modification permitted @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:25:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:25:16 +0000 (UTC) Subject: rpms/rubygem-actionpack/devel rubygem-actionpack.spec,1.9,1.10 Message-ID: <20090727032516.C148D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-actionpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27536 Modified Files: rubygem-actionpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-actionpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionpack/devel/rubygem-actionpack.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-actionpack.spec 16 Mar 2009 11:07:24 -0000 1.9 +++ rubygem-actionpack.spec 27 Jul 2009 03:25:16 -0000 1.10 @@ -7,7 +7,7 @@ Summary: Web-flow and rendering framework putting the VC in MVC Name: rubygem-%{gemname} Version: 2.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:25:39 +0000 (UTC) Subject: rpms/rubygem-activeldap/devel rubygem-activeldap.spec,1.9,1.10 Message-ID: <20090727032539.E593711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-activeldap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27710 Modified Files: rubygem-activeldap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-activeldap.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-activeldap/devel/rubygem-activeldap.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-activeldap.spec 20 Jul 2009 14:39:13 -0000 1.9 +++ rubygem-activeldap.spec 27 Jul 2009 03:25:38 -0000 1.10 @@ -9,7 +9,7 @@ Summary: Ruby/ActiveLdap is a object-oriented API to LDAP Name: rubygem-%{gemname} Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ URL: http://rubyforge.org/projects/ruby-activeldap/ @@ -84,6 +84,9 @@ rm -rf %{buildroot} %lang(ja) %{geminstdir}/data/locale/ja/LC_MESSAGES/active-ldap.mo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Darryl Pierce - 1.1.0-1 - Release 1.1.0 of ActiveLdap. - Dependency on rubygem-hoe changed to 2.3.2. From jkeating at fedoraproject.org Mon Jul 27 03:25:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:25:59 +0000 (UTC) Subject: rpms/rubygem-arrayfields/devel rubygem-arrayfields.spec,1.4,1.5 Message-ID: <20090727032559.D5FFC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-arrayfields/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27954 Modified Files: rubygem-arrayfields.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-arrayfields.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-arrayfields/devel/rubygem-arrayfields.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-arrayfields.spec 6 Jun 2009 10:32:57 -0000 1.4 +++ rubygem-arrayfields.spec 27 Jul 2009 03:25:59 -0000 1.5 @@ -6,7 +6,7 @@ Name: rubygem-%{gemname} Summary: Arrayfields RubyGem Version: 4.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://codeforpeople.com/lib/ruby/%{gemname}/ @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.7.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 06 2009 Jeroen van Meeuwen - 4.7.4-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:26:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:26:16 +0000 (UTC) Subject: rpms/rubygem-attributes/devel rubygem-attributes.spec,1.2,1.3 Message-ID: <20090727032616.4ABDB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-attributes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28113 Modified Files: rubygem-attributes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-attributes.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-attributes/devel/rubygem-attributes.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-attributes.spec 25 Feb 2009 21:40:17 -0000 1.2 +++ rubygem-attributes.spec 27 Jul 2009 03:26:15 -0000 1.3 @@ -6,7 +6,7 @@ Name: rubygem-%{gemname} Summary: Attributes RubyGem Version: 5.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://codeforpeople.com/lib/ruby/%{gemname}/ @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:26:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:26:30 +0000 (UTC) Subject: rpms/rubygem-bacon/devel rubygem-bacon.spec,1.1,1.2 Message-ID: <20090727032630.6E62511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-bacon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28283 Modified Files: rubygem-bacon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-bacon.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-bacon/devel/rubygem-bacon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-bacon.spec 8 Jul 2009 17:15:24 -0000 1.1 +++ rubygem-bacon.spec 27 Jul 2009 03:26:30 -0000 1.2 @@ -5,7 +5,7 @@ Summary: A ruby-based testing framework Name: rubygem-%{gemname} Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://chneukirchen.org/repos/bacon @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Lubomir Rintel (Good Data) - 1.1.0-2 - Run tests - Drop useless macro From jkeating at fedoraproject.org Mon Jul 27 03:26:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:26:48 +0000 (UTC) Subject: rpms/rubygem-builder/devel rubygem-builder.spec,1.2,1.3 Message-ID: <20090727032648.24E0911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-builder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28469 Modified Files: rubygem-builder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-builder.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-builder/devel/rubygem-builder.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-builder.spec 25 Feb 2009 21:41:14 -0000 1.2 +++ rubygem-builder.spec 27 Jul 2009 03:26:47 -0000 1.3 @@ -6,7 +6,7 @@ Name: rubygem-%{gemname} Summary: Builders for MarkUp Version: 2.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://onestepback.org @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:27:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:27:02 +0000 (UTC) Subject: rpms/rubygem-cobbler/devel rubygem-cobbler.spec,1.8,1.9 Message-ID: <20090727032702.0A56411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-cobbler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28657 Modified Files: rubygem-cobbler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-cobbler.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-cobbler/devel/rubygem-cobbler.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-cobbler.spec 7 May 2009 15:33:27 -0000 1.8 +++ rubygem-cobbler.spec 27 Jul 2009 03:27:01 -0000 1.9 @@ -8,7 +8,7 @@ Summary: An interface for interacting with a Cobbler server Name: rubygem-%{gemname} Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://cobbler.et.redhat.com/ @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Darryl Pierce - 1.6.0-1 - Dropped support for pre-1.6 instances of Cobbler. From jkeating at fedoraproject.org Mon Jul 27 03:27:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:27:24 +0000 (UTC) Subject: rpms/rubygem-coderay/devel rubygem-coderay.spec,1.1,1.2 Message-ID: <20090727032724.7FC8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-coderay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28845 Modified Files: rubygem-coderay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-coderay.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-coderay/devel/rubygem-coderay.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-coderay.spec 16 Jul 2009 12:54:11 -0000 1.1 +++ rubygem-coderay.spec 27 Jul 2009 03:27:23 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Fast syntax highlighter engine for many programming languages Name: rubygem-%{gemname} Version: 0.8.312 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://coderay.rubychan.de @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.312-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Jan Klepek - 0.8.312-3 - correct directory ownership, fixed license From jkeating at fedoraproject.org Mon Jul 27 03:27:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:27:38 +0000 (UTC) Subject: rpms/rubygem-configuration/devel rubygem-configuration.spec, 1.1, 1.2 Message-ID: <20090727032738.CAC0011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-configuration/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29009 Modified Files: rubygem-configuration.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-configuration.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-configuration/devel/rubygem-configuration.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-configuration.spec 8 Jul 2009 17:15:16 -0000 1.1 +++ rubygem-configuration.spec 27 Jul 2009 03:27:38 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Pure Ruby scoped configuration files Name: rubygem-%{gemname} Version: 0.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/configuration/ @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 0.0.5-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) From jkeating at fedoraproject.org Mon Jul 27 03:18:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:18:10 +0000 (UTC) Subject: rpms/rt73usb-firmware/devel rt73usb-firmware.spec,1.2,1.3 Message-ID: <20090727031810.C45B011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rt73usb-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22820 Modified Files: rt73usb-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rt73usb-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/rt73usb-firmware/devel/rt73usb-firmware.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rt73usb-firmware.spec 25 Feb 2009 21:11:05 -0000 1.2 +++ rt73usb-firmware.spec 27 Jul 2009 03:18:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: rt73usb-firmware Version: 1.8 -Release: 5 +Release: 6 Summary: Firmware for Ralink? RT2571W/RT2671 A/B/G network adaptors Group: System Environment/Kernel License: Redistributable, no modification permitted @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:18:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:18:25 +0000 (UTC) Subject: rpms/rtaudio/devel rtaudio.spec,1.2,1.3 Message-ID: <20090727031825.546DC11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rtaudio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22958 Modified Files: rtaudio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rtaudio.spec =================================================================== RCS file: /cvs/pkgs/rpms/rtaudio/devel/rtaudio.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rtaudio.spec 6 Jun 2009 02:42:06 -0000 1.2 +++ rtaudio.spec 27 Jul 2009 03:18:25 -0000 1.3 @@ -4,7 +4,7 @@ Summary: Real-time Audio I/O Library Name: rtaudio Version: 4.0.6 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.music.mcgill.ca/~gary/rtaudio/ @@ -98,6 +98,9 @@ rm -rf %{buildroot} %{_libdir}/lib%{name}.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 05 2009 Orcan Ogetbil 4.0.6-1 - Update to 4.0.6 From jkeating at fedoraproject.org Mon Jul 27 03:19:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:19:57 +0000 (UTC) Subject: rpms/ruby-RRDtool/devel ruby-RRDtool.spec,1.2,1.3 Message-ID: <20090727031957.6E17111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-RRDtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23985 Modified Files: ruby-RRDtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-RRDtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-RRDtool/devel/ruby-RRDtool.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ruby-RRDtool.spec 25 Feb 2009 21:16:47 -0000 1.2 +++ ruby-RRDtool.spec 27 Jul 2009 03:19:57 -0000 1.3 @@ -2,7 +2,7 @@ Name: ruby-RRDtool Version: 0.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: RRDTool for Ruby Group: Development/Languages @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{ruby_sitearch}/RRDtool.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:24:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:24:23 +0000 (UTC) Subject: rpms/ruby-shadow/devel ruby-shadow.spec,1.8,1.9 Message-ID: <20090727032423.21D4811C0383@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ruby-shadow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26939 Modified Files: ruby-shadow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ruby-shadow.spec =================================================================== RCS file: /cvs/pkgs/rpms/ruby-shadow/devel/ruby-shadow.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- ruby-shadow.spec 25 Feb 2009 21:32:25 -0000 1.8 +++ ruby-shadow.spec 27 Jul 2009 03:24:22 -0000 1.9 @@ -4,7 +4,7 @@ Name: ruby-shadow Version: 1.4.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Ruby bindings for shadow password access Group: System Environment/Libraries License: Public Domain @@ -46,6 +46,9 @@ rm -rf %{buildroot} %{ruby_sitearch}/shadow.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:24:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:24:43 +0000 (UTC) Subject: rpms/rubygem-RedCloth/devel rubygem-RedCloth.spec,1.3,1.4 Message-ID: <20090727032443.0982511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-RedCloth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27132 Modified Files: rubygem-RedCloth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-RedCloth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-RedCloth/devel/rubygem-RedCloth.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-RedCloth.spec 14 Jul 2009 18:25:36 -0000 1.3 +++ rubygem-RedCloth.spec 27 Jul 2009 03:24:41 -0000 1.4 @@ -12,7 +12,7 @@ Summary: Textile parser for Ruby Name: rubygem-%{gemname} Version: 4.1.9 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages License: MIT URL: http://redcloth.org @@ -80,6 +80,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Darryl Pierce - 4.1.9-5 - Resolves: rhbz#505589 - rubygem-RedCloth-debuginfo created from stripped binaries From jkeating at fedoraproject.org Mon Jul 27 03:24:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:24:57 +0000 (UTC) Subject: rpms/rubygem-actionmailer/devel rubygem-actionmailer.spec,1.9,1.10 Message-ID: <20090727032457.F379E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-actionmailer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27321 Modified Files: rubygem-actionmailer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-actionmailer.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-actionmailer/devel/rubygem-actionmailer.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygem-actionmailer.spec 16 Mar 2009 10:58:22 -0000 1.9 +++ rubygem-actionmailer.spec 27 Jul 2009 03:24:57 -0000 1.10 @@ -7,7 +7,7 @@ Summary: Service layer for easy email delivery and testing Name: rubygem-%{gemname} Version: 2.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org @@ -65,6 +65,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:27:52 +0000 (UTC) Subject: rpms/rubygem-daemons/devel rubygem-daemons.spec,1.3,1.4 Message-ID: <20090727032752.3BE9611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-daemons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29159 Modified Files: rubygem-daemons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-daemons.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-daemons/devel/rubygem-daemons.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-daemons.spec 23 Jul 2009 19:16:31 -0000 1.3 +++ rubygem-daemons.spec 27 Jul 2009 03:27:52 -0000 1.4 @@ -7,7 +7,7 @@ Summary: A toolkit to create and control daemons in different ways Name: rubygem-%{gemname} Version: 1.0.10 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages # The entire source code is MIT except daemonize.rb (GPLv2+ or Ruby) License: MIT and (GPLv2+ or Ruby) @@ -59,6 +59,9 @@ chmod a+x %{buildroot}%{geminstdir}/exam %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Scott Seago - 1.0.10-1 - Upgraded to upstream 1.0.10 From jkeating at fedoraproject.org Mon Jul 27 03:28:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:28:14 +0000 (UTC) Subject: rpms/rubygem-diff-lcs/devel rubygem-diff-lcs.spec,1.1,1.2 Message-ID: <20090727032814.C44B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-diff-lcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29338 Modified Files: rubygem-diff-lcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-diff-lcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-diff-lcs/devel/rubygem-diff-lcs.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-diff-lcs.spec 8 Jul 2009 17:15:19 -0000 1.1 +++ rubygem-diff-lcs.spec 27 Jul 2009 03:28:12 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Provide a list of changes between two sequenced collections Name: rubygem-%{gemname} Version: 1.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: GPLv2+ or Ruby or Artistic URL: http://rubyforge.org/projects/ruwiki/ @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 1.1.2-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) From jkeating at fedoraproject.org Mon Jul 27 03:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:28:32 +0000 (UTC) Subject: rpms/rubygem-facets/devel rubygem-facets.spec,1.4,1.5 Message-ID: <20090727032832.3EA7311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-facets/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29560 Modified Files: rubygem-facets.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-facets.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-facets/devel/rubygem-facets.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-facets.spec 16 Mar 2009 12:40:46 -0000 1.4 +++ rubygem-facets.spec 27 Jul 2009 03:28:31 -0000 1.5 @@ -6,7 +6,7 @@ Name: rubygem-%{gemname} Summary: The single most extensive additions and extensions library available for Ruby Version: 2.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: Ruby URL: http://rubyforge.org/projects/facets/ @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.5.1-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:28:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:28:51 +0000 (UTC) Subject: rpms/rubygem-fastthread/devel rubygem-fastthread.spec,1.5,1.6 Message-ID: <20090727032851.1D34C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-fastthread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29741 Modified Files: rubygem-fastthread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-fastthread.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-fastthread/devel/rubygem-fastthread.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubygem-fastthread.spec 24 Jul 2009 04:30:22 -0000 1.5 +++ rubygem-fastthread.spec 27 Jul 2009 03:28:50 -0000 1.6 @@ -8,7 +8,7 @@ Summary: Optimized replacement for thread.rb primitives Name: rubygem-%{gemname} Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org @@ -49,6 +49,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Scott Seago - 1.0.7-1 - Upgraded to 1.0.7 From jkeating at fedoraproject.org Mon Jul 27 03:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:29:07 +0000 (UTC) Subject: rpms/rubygem-ferret/devel rubygem-ferret.spec,1.1,1.2 Message-ID: <20090727032907.D14C311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-ferret/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29878 Modified Files: rubygem-ferret.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-ferret.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-ferret/devel/rubygem-ferret.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-ferret.spec 22 Apr 2009 09:04:11 -0000 1.1 +++ rubygem-ferret.spec 27 Jul 2009 03:29:06 -0000 1.2 @@ -8,7 +8,7 @@ Summary: Full-featured text search engine library Name: rubygem-%{gemname} Version: 0.11.6 -Release: 9%{?dist} +Release: 10%{?dist} Group: Development/Languages # License from # - MIT-LICENSE: MIT @@ -109,6 +109,9 @@ rm -rf %{buildroot} %{geminstdir}/test/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Jeroen van Meeuwen - 0.11.6-9 - Update from comments in #468597 - Update to reflect new package guidelines From jkeating at fedoraproject.org Mon Jul 27 03:29:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:29:21 +0000 (UTC) Subject: rpms/rubygem-gem2rpm/devel rubygem-gem2rpm.spec,1.3,1.4 Message-ID: <20090727032921.6889711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-gem2rpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30071 Modified Files: rubygem-gem2rpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-gem2rpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-gem2rpm/devel/rubygem-gem2rpm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-gem2rpm.spec 25 Feb 2009 21:45:33 -0000 1.3 +++ rubygem-gem2rpm.spec 27 Jul 2009 03:29:21 -0000 1.4 @@ -7,7 +7,7 @@ Summary: Generate rpm specfiles from gems Name: rubygem-%{gemname} Version: 0.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://rubyforge.org/projects/gem2rpm/ @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:29:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:29:38 +0000 (UTC) Subject: rpms/rubygem-gem_plugin/devel rubygem-gem_plugin.spec,1.3,1.4 Message-ID: <20090727032938.48BD711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-gem_plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30222 Modified Files: rubygem-gem_plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-gem_plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-gem_plugin/devel/rubygem-gem_plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-gem_plugin.spec 25 Feb 2009 21:46:26 -0000 1.3 +++ rubygem-gem_plugin.spec 27 Jul 2009 03:29:37 -0000 1.4 @@ -6,7 +6,7 @@ Summary: A plugin system based only on rubygems that uses dependencies only Name: rubygem-%{gemname} Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries License: GPLv2+ or Ruby URL: http://mongrel.rubyforge.org @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:29:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:29:53 +0000 (UTC) Subject: rpms/rubygem-git/devel rubygem-git.spec,1.3,1.4 Message-ID: <20090727032953.7B6E111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-git/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30414 Modified Files: rubygem-git.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-git.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-git/devel/rubygem-git.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-git.spec 25 Feb 2009 21:47:20 -0000 1.3 +++ rubygem-git.spec 27 Jul 2009 03:29:53 -0000 1.4 @@ -6,7 +6,7 @@ Summary: A package for using Git in Ruby code Name: rubygem-%{gemname} Version: 1.0.7 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages License: MIT URL: http://rubyforge.org/projects/git/ @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:30:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:30:21 +0000 (UTC) Subject: rpms/rubygem-gruff/devel rubygem-gruff.spec,1.3,1.4 Message-ID: <20090727033021.9DC0211C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-gruff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30587 Modified Files: rubygem-gruff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-gruff.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-gruff/devel/rubygem-gruff.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-gruff.spec 25 Feb 2009 21:48:14 -0000 1.3 +++ rubygem-gruff.spec 27 Jul 2009 03:30:21 -0000 1.4 @@ -8,7 +8,7 @@ Summary: Beautiful graphs for one or multiple datasets Name: rubygem-%{gemname} Version: 0.3.4 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT URL: http://nubyonrails.com/pages/gruff @@ -63,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:30:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:30:36 +0000 (UTC) Subject: rpms/rubygem-highline/devel rubygem-highline.spec,1.3,1.4 Message-ID: <20090727033036.44F7211C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-highline/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30844 Modified Files: rubygem-highline.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-highline.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-highline/devel/rubygem-highline.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-highline.spec 16 Mar 2009 11:50:58 -0000 1.3 +++ rubygem-highline.spec 27 Jul 2009 03:30:36 -0000 1.4 @@ -7,7 +7,7 @@ Summary: HighLine is a high-level command-line IO library Name: rubygem-%{gemname} Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://highline.rubyforge.org @@ -78,6 +78,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeroen van Meeuwen - 1.5.0-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:31:14 +0000 (UTC) Subject: rpms/rubygem-hoe/devel rubygem-hoe.spec,1.23,1.24 Message-ID: <20090727033114.0EAF411C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-hoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31131 Modified Files: rubygem-hoe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-hoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-hoe/devel/rubygem-hoe.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- rubygem-hoe.spec 1 Jul 2009 12:35:35 -0000 1.23 +++ rubygem-hoe.spec 27 Jul 2009 03:31:11 -0000 1.24 @@ -6,7 +6,7 @@ Summary: Hoe is a simple rake/rubygems helper for project Rakefiles Name: rubygem-%{gemname} Version: 2.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://rubyforge.org/projects/seattlerb/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 1 2009 Darryl Pierce - 2.3.2-1 - Release 2.3.2 of Hoe. From jkeating at fedoraproject.org Mon Jul 27 03:31:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:31:43 +0000 (UTC) Subject: rpms/rubygem-krb5-auth/devel rubygem-krb5-auth.spec,1.3,1.4 Message-ID: <20090727033143.280A111C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-krb5-auth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31436 Modified Files: rubygem-krb5-auth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-krb5-auth.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-krb5-auth/devel/rubygem-krb5-auth.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-krb5-auth.spec 25 Feb 2009 21:50:53 -0000 1.3 +++ rubygem-krb5-auth.spec 27 Jul 2009 03:31:42 -0000 1.4 @@ -8,7 +8,7 @@ Summary: Kerberos binding for Ruby Name: rubygem-%{gemname} Version: 0.7 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://rubyforge.org/projects/krb5-auth @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:32:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:32:16 +0000 (UTC) Subject: rpms/rubygem-main/devel rubygem-main.spec,1.5,1.6 Message-ID: <20090727033216.84E1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-main/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31685 Modified Files: rubygem-main.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-main.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-main/devel/rubygem-main.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubygem-main.spec 30 Jun 2009 23:02:47 -0000 1.5 +++ rubygem-main.spec 27 Jul 2009 03:32:16 -0000 1.6 @@ -7,7 +7,7 @@ Summary: A class factory and dsl for generating command line programs real quick Name: rubygem-%{gemname} Version: 2.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/main/ @@ -72,6 +72,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Jeroen van Meeuwen - 2.8.4-2 - Add requirement for rubygem(fattr) (Brenton Leanhardt) From pkgdb at fedoraproject.org Mon Jul 27 03:32:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:32:18 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchbugzilla Message-ID: <20090727033218.48E7910F899@bastion2.fedora.phx.redhat.com> hnws has requested the watchbugzilla acl on ibus-table-wubi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Mon Jul 27 03:32:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:32:17 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchcommits Message-ID: <20090727033217.8D49310F889@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-wubi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From jkeating at fedoraproject.org Mon Jul 27 03:33:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:33:10 +0000 (UTC) Subject: rpms/rubygem-mongrel/devel rubygem-mongrel.spec,1.5,1.6 Message-ID: <20090727033310.CE97B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-mongrel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32393 Modified Files: rubygem-mongrel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-mongrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mongrel/devel/rubygem-mongrel.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubygem-mongrel.spec 25 Feb 2009 21:53:26 -0000 1.5 +++ rubygem-mongrel.spec 27 Jul 2009 03:33:10 -0000 1.6 @@ -11,7 +11,7 @@ Summary: A small fast HTTP library and s Name: rubygem-%{gemname} Version: 1.1.5 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries # The entire source code is (GPLv2+ or Ruby) except for the code in # cgi_multipart_eof_fix-2.5.0.gem which is AFL @@ -103,6 +103,9 @@ chmod a+x %{buildroot}%{gemdir}/gems/cgi %{gemdir}/specifications/cgi_multipart_eof_fix-%{cmef_version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:33:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:23 +0000 Subject: [pkgdb] ibus-table-erbi: hnws has requested watchbugzilla Message-ID: <20090727033324.0FF1910F889@bastion2.fedora.phx.redhat.com> hnws has requested the watchbugzilla acl on ibus-table-erbi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Mon Jul 27 03:33:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:24 +0000 Subject: [pkgdb] ibus-table-erbi: hnws has requested watchcommits Message-ID: <20090727033324.1E84610F899@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-erbi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Mon Jul 27 03:33:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:26 +0000 Subject: [pkgdb] ibus-table-erbi: hnws has requested watchcommits Message-ID: <20090727033327.203DA10F89D@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-erbi (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From jkeating at fedoraproject.org Mon Jul 27 03:33:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:33:29 +0000 (UTC) Subject: rpms/rubygem-mongrel_cluster/devel rubygem-mongrel_cluster.spec, 1.1, 1.2 Message-ID: <20090727033329.D307B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-mongrel_cluster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32756 Modified Files: rubygem-mongrel_cluster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-mongrel_cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mongrel_cluster/devel/rubygem-mongrel_cluster.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-mongrel_cluster.spec 29 May 2009 19:14:42 -0000 1.1 +++ rubygem-mongrel_cluster.spec 27 Jul 2009 03:33:29 -0000 1.2 @@ -7,7 +7,7 @@ Summary: GemPlugin wrapper for the mongrel HTTP server Name: rubygem-%{gemname} Version: 1.0.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 or Ruby Group: System Environment/Daemons URL: http://mongrel.rubyforge.org/wiki/MongrelCluster @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Robert Scheck 1.0.5-2 - Added missing requirement to ruby(abi) = version (#501134 #c1) - Rewrote initscript to support single clusters and reload/subsys From pkgdb at fedoraproject.org Mon Jul 27 03:33:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:37 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchbugzilla Message-ID: <20090727033337.1E6B910F89F@bastion2.fedora.phx.redhat.com> hnws has requested the watchbugzilla acl on ibus-table-wubi (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Mon Jul 27 03:33:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:37 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchcommits Message-ID: <20090727033337.AFAE610F8B5@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-wubi (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From jkeating at fedoraproject.org Mon Jul 27 03:33:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:33:43 +0000 (UTC) Subject: rpms/rubygem-pam/devel rubygem-pam.spec,1.5,1.6 Message-ID: <20090727033343.AC7A411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-pam/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv649 Modified Files: rubygem-pam.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-pam.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-pam/devel/rubygem-pam.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubygem-pam.spec 26 May 2009 16:19:40 -0000 1.5 +++ rubygem-pam.spec 27 Jul 2009 03:33:43 -0000 1.6 @@ -10,7 +10,7 @@ # Main package bundles it at a gem Name: rubygem-%{gemname} Version: 1.5.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Ruby bindings for pam Group: Development/Languages @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Michael Schwendt - 1.5.3-5 - Fix unowned versioned directory (#474607). From pkgdb at fedoraproject.org Mon Jul 27 03:33:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:41 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchcommits Message-ID: <20090727033341.D4ED410F8B6@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-wubi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Mon Jul 27 03:33:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:33:44 +0000 Subject: [pkgdb] ibus-table-wubi: hnws has requested watchbugzilla Message-ID: <20090727033344.7838F10F8B9@bastion2.fedora.phx.redhat.com> hnws has requested the watchbugzilla acl on ibus-table-wubi (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From jkeating at fedoraproject.org Mon Jul 27 03:34:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:34:02 +0000 (UTC) Subject: rpms/rubygem-pervasives/devel rubygem-pervasives.spec,1.2,1.3 Message-ID: <20090727033402.0190411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-pervasives/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv910 Modified Files: rubygem-pervasives.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-pervasives.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-pervasives/devel/rubygem-pervasives.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-pervasives.spec 25 Feb 2009 21:55:46 -0000 1.2 +++ rubygem-pervasives.spec 27 Jul 2009 03:34:01 -0000 1.3 @@ -6,7 +6,7 @@ Summary: Access to pristine object state Name: rubygem-%{gemname} Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: Ruby URL: http://codeforpeople.com/lib/ruby/pervasives/ @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:34:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:34:21 +0000 (UTC) Subject: rpms/rubygem-picnic/devel rubygem-picnic.spec,1.4,1.5 Message-ID: <20090727033421.33F0A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-picnic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1217 Modified Files: rubygem-picnic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-picnic.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-picnic/devel/rubygem-picnic.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-picnic.spec 3 May 2009 20:15:42 -0000 1.4 +++ rubygem-picnic.spec 27 Jul 2009 03:34:20 -0000 1.5 @@ -6,7 +6,7 @@ Summary: Easier distribution of Camping-based applications Name: rubygem-%{gemname} Version: 0.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: LGPLv3 URL: http://rubyforge.org/projects/picnic/ @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Jeroen van Meeuwen - 0.8.1-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:34:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:34:35 +0000 (UTC) Subject: rpms/rubygem-polyglot/devel rubygem-polyglot.spec,1.1,1.2 Message-ID: <20090727033435.6A7C511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-polyglot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1393 Modified Files: rubygem-polyglot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-polyglot.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-polyglot/devel/rubygem-polyglot.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-polyglot.spec 29 Jun 2009 22:53:52 -0000 1.1 +++ rubygem-polyglot.spec 27 Jul 2009 03:34:35 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Allow hooking of language loaders for specified extensions into require Name: rubygem-%{gemname} Version: 0.2.5 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: MIT URL: http://polyglot.rubyforge.org @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 0.2.5-3 - Get rid of duplicate files From jkeating at fedoraproject.org Mon Jul 27 03:34:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:34:49 +0000 (UTC) Subject: rpms/rubygem-rack/devel rubygem-rack.spec,1.4,1.5 Message-ID: <20090727033449.28E7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1540 Modified Files: rubygem-rack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rack.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rack/devel/rubygem-rack.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-rack.spec 26 Apr 2009 19:55:59 -0000 1.4 +++ rubygem-rack.spec 27 Jul 2009 03:34:48 -0000 1.5 @@ -5,7 +5,7 @@ Name: rubygem-%{gemname} Summary: Common API for connecting web frameworks, web servers and layers of software Version: 1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://rubyforge.org/projects/%{gemname}/ @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Jeroen van Meeuwen - 1.0.0-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:35:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:35:00 +0000 (UTC) Subject: rpms/rubygem-rack-test/devel rubygem-rack-test.spec,1.1,1.2 Message-ID: <20090727033500.8D79D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rack-test/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1699 Modified Files: rubygem-rack-test.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rack-test.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rack-test/devel/rubygem-rack-test.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-rack-test.spec 10 Jul 2009 08:51:30 -0000 1.1 +++ rubygem-rack-test.spec 27 Jul 2009 03:35:00 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Simple testing API built on Rack Name: rubygem-%{gemname} Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://gitrdoc.com/brynary/rack-test/tree/master @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Lubomir Rintel (Good Data) - 0.4.0-1 - Update to 0.4.0 - Drop useless sitelib macro From jkeating at fedoraproject.org Mon Jul 27 03:35:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:35:14 +0000 (UTC) Subject: rpms/rubygem-rake/devel rubygem-rake.spec,1.7,1.8 Message-ID: <20090727033514.6C3E811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1845 Modified Files: rubygem-rake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rake.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rake/devel/rubygem-rake.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rubygem-rake.spec 17 Jun 2009 19:34:49 -0000 1.7 +++ rubygem-rake.spec 27 Jul 2009 03:35:14 -0000 1.8 @@ -10,7 +10,7 @@ Summary: Ruby based make-like utility Name: rubygem-%{gemname} Version: 0.8.7 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://rake.rubyforge.org @@ -84,6 +84,9 @@ ruby ./bin/rake test || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Mamoru Tasaka - 0.8.7-1 - 0.8.7 - Enable %%check From jkeating at fedoraproject.org Mon Jul 27 03:35:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:35:30 +0000 (UTC) Subject: rpms/rubygem-restr/devel rubygem-restr.spec,1.3,1.4 Message-ID: <20090727033530.4735311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-restr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1990 Modified Files: rubygem-restr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-restr.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-restr/devel/rubygem-restr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-restr.spec 16 Mar 2009 11:35:55 -0000 1.3 +++ rubygem-restr.spec 27 Jul 2009 03:35:30 -0000 1.4 @@ -6,7 +6,7 @@ Summary: Simple client for RESTful web services Name: rubygem-%{gemname} Version: 0.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: LGPLv3 URL: http://rubyforge.org/projects/restr/ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Jeroen van Meeuwen - 0.5.0-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:35:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:35:42 +0000 (UTC) Subject: rpms/rubygem-reststop/devel rubygem-reststop.spec,1.3,1.4 Message-ID: <20090727033542.CFB4511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-reststop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2127 Modified Files: rubygem-reststop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-reststop.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-reststop/devel/rubygem-reststop.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-reststop.spec 3 May 2009 19:32:07 -0000 1.3 +++ rubygem-reststop.spec 27 Jul 2009 03:35:42 -0000 1.4 @@ -6,7 +6,7 @@ Summary: Convenient RESTfulness for all your Camping controller needs Name: rubygem-%{gemname} Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: LGPLv3 URL: http://rubyforge.org/projects/reststop/ @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 03 2009 Jeroen van Meeuwen - 0.4.0-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:35:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:35:58 +0000 (UTC) Subject: rpms/rubygem-rspec/devel rubygem-rspec.spec,1.4,1.5 Message-ID: <20090727033558.8CB7411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rspec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2285 Modified Files: rubygem-rspec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rspec.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rspec/devel/rubygem-rspec.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-rspec.spec 23 Jun 2009 04:10:33 -0000 1.4 +++ rubygem-rspec.spec 27 Jul 2009 03:35:58 -0000 1.5 @@ -7,7 +7,7 @@ Summary: Behaviour driven development (BDD) framework for Ruby Name: rubygem-%{gemname} Version: 1.2.7 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://rspec.rubyforge.org @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Michael Stahnke - 1.2.7-1 - New Version From jkeating at fedoraproject.org Mon Jul 27 03:36:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:36:17 +0000 (UTC) Subject: rpms/rubygem-rubigen/devel rubygem-rubigen.spec,1.1,1.2 Message-ID: <20090727033617.A2CFE11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rubigen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2492 Modified Files: rubygem-rubigen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rubigen.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rubigen/devel/rubygem-rubigen.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-rubigen.spec 10 Jul 2009 08:51:28 -0000 1.1 +++ rubygem-rubigen.spec 27 Jul 2009 03:36:17 -0000 1.2 @@ -6,7 +6,7 @@ Summary: A framework to allow Ruby applications to generate file/folder stubs Name: rubygem-%{gemname} Version: 1.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: MIT and LGPLv2+ URL: http://drnic.github.com/rubigen @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Lubomir Rintel (Good Data) - 1.5.2-4 - Remove hoe dependency - Fix up license tag From jkeating at fedoraproject.org Mon Jul 27 03:36:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:36:32 +0000 (UTC) Subject: rpms/rubygem-rubyforge/devel rubygem-rubyforge.spec,1.8,1.9 Message-ID: <20090727033632.1339411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rubyforge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2702 Modified Files: rubygem-rubyforge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rubyforge.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rubyforge/devel/rubygem-rubyforge.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- rubygem-rubyforge.spec 27 Feb 2009 19:25:55 -0000 1.8 +++ rubygem-rubyforge.spec 27 Jul 2009 03:36:31 -0000 1.9 @@ -7,7 +7,7 @@ Summary: A script which automates a limited set of rubyforge operations Name: rubygem-%{gemname} Version: 1.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://rubyforge.org/projects/codeforpeople @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Darryl Pierce - 1.0.3-1 - Release 1.0.3 of RubyForge. From jkeating at fedoraproject.org Mon Jul 27 03:36:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:36:45 +0000 (UTC) Subject: rpms/rubygem-rufus-scheduler/devel rubygem-rufus-scheduler.spec, 1.4, 1.5 Message-ID: <20090727033645.7D3A211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-rufus-scheduler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2870 Modified Files: rubygem-rufus-scheduler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-rufus-scheduler.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-rufus-scheduler/devel/rubygem-rufus-scheduler.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rubygem-rufus-scheduler.spec 10 May 2009 15:41:48 -0000 1.4 +++ rubygem-rufus-scheduler.spec 27 Jul 2009 03:36:45 -0000 1.5 @@ -6,7 +6,7 @@ Summary: Scheduler for Ruby (at, cron and every jobs) Name: rubygem-%{gemname} Version: 2.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://openwferu.rubyforge.org/scheduler.html @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Darryl Pierce - 2.0.1-2 - Second release due to errors in tagging. From jkeating at fedoraproject.org Mon Jul 27 03:36:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:36:58 +0000 (UTC) Subject: rpms/rubygem-simple-rss/devel rubygem-simple-rss.spec,1.2,1.3 Message-ID: <20090727033658.16DB511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-simple-rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3022 Modified Files: rubygem-simple-rss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-simple-rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-simple-rss/devel/rubygem-simple-rss.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-simple-rss.spec 25 Feb 2009 22:05:03 -0000 1.2 +++ rubygem-simple-rss.spec 27 Jul 2009 03:36:57 -0000 1.3 @@ -7,7 +7,7 @@ Summary: A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby Name: rubygem-%{gemname} Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Group: Development/Languages License: LGPLv2+ URL: http://rubyforge.org/projects/simple-rss @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:37:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:37:14 +0000 (UTC) Subject: rpms/rubygem-sqlite3-ruby/devel rubygem-sqlite3-ruby.spec,1.5,1.6 Message-ID: <20090727033714.70D8C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-sqlite3-ruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3187 Modified Files: rubygem-sqlite3-ruby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-sqlite3-ruby.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-sqlite3-ruby/devel/rubygem-sqlite3-ruby.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rubygem-sqlite3-ruby.spec 16 Jun 2009 17:51:22 -0000 1.5 +++ rubygem-sqlite3-ruby.spec 27 Jul 2009 03:37:14 -0000 1.6 @@ -7,7 +7,7 @@ Summary: Allows Ruby scripts to interface with a SQLite3 database Name: rubygem-%{gemname} Version: 1.2.4 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Languages License: BSD URL: http://sqlite-ruby.rubyforge.org/sqlite3 @@ -148,6 +148,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Mamoru Tasaka - 1.2.4-4 - F-12: Rebuild to create valid debuginfo rpm again (ref: #505774) From jkeating at fedoraproject.org Mon Jul 27 03:37:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:37:28 +0000 (UTC) Subject: rpms/rubygem-state_machine/devel rubygem-state_machine.spec, 1.1, 1.2 Message-ID: <20090727033728.8307E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-state_machine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3346 Modified Files: rubygem-state_machine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-state_machine.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-state_machine/devel/rubygem-state_machine.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-state_machine.spec 14 Jul 2009 13:16:18 -0000 1.1 +++ rubygem-state_machine.spec 27 Jul 2009 03:37:28 -0000 1.2 @@ -7,7 +7,7 @@ Summary: Adds support for creating state machines for attributes on any Ruby class Name: rubygem-%{gemname} Version: 0.7.6 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://www.pluginaweek.org @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Darryl Pierce - 0.7.6-1 - First official release for Fedora. From jkeating at fedoraproject.org Mon Jul 27 03:37:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:37:44 +0000 (UTC) Subject: rpms/rubygem-syntax/devel rubygem-syntax.spec,1.1,1.2 Message-ID: <20090727033744.7FFE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-syntax/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3518 Modified Files: rubygem-syntax.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-syntax.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-syntax/devel/rubygem-syntax.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-syntax.spec 13 Jul 2009 08:57:03 -0000 1.1 +++ rubygem-syntax.spec 27 Jul 2009 03:37:44 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Ruby library for performing simple syntax highlighting Name: rubygem-%{gemname} Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: Public Domain URL: http://syntax.rubyforge.org/ @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 08 2009 Lubomir Rintel (Good Data) - 1.0.0-2 - Bring tests back - Depend on ruby(abi) From jkeating at fedoraproject.org Mon Jul 27 03:37:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:37:56 +0000 (UTC) Subject: rpms/rubygem-term-ansicolor/devel rubygem-term-ansicolor.spec, 1.1, 1.2 Message-ID: <20090727033756.2520911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-term-ansicolor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3670 Modified Files: rubygem-term-ansicolor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-term-ansicolor.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-term-ansicolor/devel/rubygem-term-ansicolor.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-term-ansicolor.spec 27 Jun 2009 07:04:22 -0000 1.1 +++ rubygem-term-ansicolor.spec 27 Jul 2009 03:37:55 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Ruby library that colors strings using ANSI escape sequences Name: rubygem-%{gemname} Version: 1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: GPLv2 URL: http://term-ansicolor.rubyforge.org @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Lubomir Rintel (Good Data) - 1.0.3-3 - Get rid of duplicate files (thanks to Mamoru Tasaka) From jkeating at fedoraproject.org Mon Jul 27 03:38:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:38:13 +0000 (UTC) Subject: rpms/rubygem-tlsmail/devel rubygem-tlsmail.spec,1.3,1.4 Message-ID: <20090727033813.B608311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-tlsmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3837 Modified Files: rubygem-tlsmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-tlsmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-tlsmail/devel/rubygem-tlsmail.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rubygem-tlsmail.spec 25 Feb 2009 22:07:01 -0000 1.3 +++ rubygem-tlsmail.spec 27 Jul 2009 03:38:13 -0000 1.4 @@ -9,7 +9,7 @@ Summary: This library enables pop or smtp via ssl/tls Name: rubygem-%{gemname} Version: 0.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Group: Development/Languages License: Public Domain URL: http://tlsmail.rubyforge.org @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:38:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:38:27 +0000 (UTC) Subject: rpms/rubygems/devel rubygems.spec,1.9,1.10 Message-ID: <20090727033827.0CC0611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygems/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4005 Modified Files: rubygems.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygems.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygems/devel/rubygems.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rubygems.spec 25 Feb 2009 22:08:04 -0000 1.9 +++ rubygems.spec 27 Jul 2009 03:38:26 -0000 1.10 @@ -6,7 +6,7 @@ Summary: The Ruby standard for packaging ruby libraries Name: rubygems Version: 1.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries # No GPL version is specified. License: Ruby or GPL+ @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{ruby_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:38:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:38:43 +0000 (UTC) Subject: rpms/rubyripper/devel rubyripper.spec,1.15,1.16 Message-ID: <20090727033843.14A7011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubyripper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4164 Modified Files: rubyripper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubyripper.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubyripper/devel/rubyripper.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- rubyripper.spec 12 Jul 2009 11:46:06 -0000 1.15 +++ rubyripper.spec 27 Jul 2009 03:38:42 -0000 1.16 @@ -2,7 +2,7 @@ Name: rubyripper Version: 0.5.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open-source secure ripper for Linux Group: Applications/Multimedia @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Sindre Pedersen Bj?rdal - 0.5.7-1 - New upstream release, notable changes including: - a fix for discs that start with a data track From jkeating at fedoraproject.org Mon Jul 27 03:38:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:38:55 +0000 (UTC) Subject: rpms/rudecgi/devel rudecgi.spec,1.3,1.4 Message-ID: <20090727033855.131C711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rudecgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4313 Modified Files: rudecgi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rudecgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/rudecgi/devel/rudecgi.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rudecgi.spec 25 Feb 2009 22:09:52 -0000 1.3 +++ rudecgi.spec 27 Jul 2009 03:38:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: rudecgi Version: 5.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library (C++ API) for reading CGI form data Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:39:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:39:10 +0000 (UTC) Subject: rpms/rudeconfig/devel rudeconfig.spec,1.7,1.8 Message-ID: <20090727033910.BB55A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rudeconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4512 Modified Files: rudeconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rudeconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/rudeconfig/devel/rudeconfig.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- rudeconfig.spec 5 Mar 2009 13:24:26 -0000 1.7 +++ rudeconfig.spec 27 Jul 2009 03:39:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: rudeconfig Version: 5.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library (C++ API) for reading and writing configuration/.ini files Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Caol?n McNamara - 5.0.5-6 - include cstdio for EOF From jkeating at fedoraproject.org Mon Jul 27 03:39:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:39:28 +0000 (UTC) Subject: rpms/rudesocket/devel rudesocket.spec,1.5,1.6 Message-ID: <20090727033928.8E34C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rudesocket/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4665 Modified Files: rudesocket.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rudesocket.spec =================================================================== RCS file: /cvs/pkgs/rpms/rudesocket/devel/rudesocket.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- rudesocket.spec 25 Feb 2009 22:11:49 -0000 1.5 +++ rudesocket.spec 27 Jul 2009 03:39:27 -0000 1.6 @@ -1,6 +1,6 @@ Name: rudesocket Version: 1.3.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library (C++ API) for creating client sockets Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:39:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:39:43 +0000 (UTC) Subject: rpms/rumor/devel rumor.spec,1.1,1.2 Message-ID: <20090727033943.EF12811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rumor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4848 Modified Files: rumor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rumor.spec =================================================================== RCS file: /cvs/pkgs/rpms/rumor/devel/rumor.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rumor.spec 1 Apr 2009 16:51:37 -0000 1.1 +++ rumor.spec 27 Jul 2009 03:39:43 -0000 1.2 @@ -1,6 +1,6 @@ Name: rumor Version: 1.0.3b -Release: 2%{?dist} +Release: 3%{?dist} Summary: Really Unintelligent Music transcriptOR Group: Applications/Multimedia License: GPLv2 @@ -54,6 +54,9 @@ fi %{_infodir}/%{name}.info* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3b-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Orcan Ogetbil - 1.0.3b-2 - Remove -O0 flag altogether instead of replacing with -O2 - Fix mixed usage of tabs&spaces From jkeating at fedoraproject.org Mon Jul 27 03:39:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:39:57 +0000 (UTC) Subject: rpms/rusers/devel rusers.spec,1.31,1.32 Message-ID: <20090727033957.E256111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rusers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4994 Modified Files: rusers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rusers.spec =================================================================== RCS file: /cvs/pkgs/rpms/rusers/devel/rusers.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- rusers.spec 25 Feb 2009 22:12:51 -0000 1.31 +++ rusers.spec 27 Jul 2009 03:39:57 -0000 1.32 @@ -5,7 +5,7 @@ Summary: Displays the users logged into machines on the local network. Name: rusers Version: 0.17 -Release: 55%{?dist} +Release: 56%{?dist} License: BSD Group: System Environment/Daemons Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-rusers-%{version}.tar.gz @@ -146,6 +146,9 @@ fi %config /etc/rc.d/init.d/rstatd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-56 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.17-55 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:40:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:40:13 +0000 (UTC) Subject: rpms/rvm/devel rvm.spec,1.4,1.5 Message-ID: <20090727034013.DFE5211C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5169 Modified Files: rvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/rvm/devel/rvm.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- rvm.spec 27 Feb 2009 17:07:33 -0000 1.4 +++ rvm.spec 27 Jul 2009 03:40:13 -0000 1.5 @@ -1,6 +1,6 @@ Name: rvm Version: 1.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C library for unstructured recoverable virtual memory Group: System Environment/Libraries License: LGPLv2 @@ -83,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Adam Goode - 1.16-1 - New upstream release + Build fixes From jkeating at fedoraproject.org Mon Jul 27 03:40:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:40:29 +0000 (UTC) Subject: rpms/rwall/devel rwall.spec,1.23,1.24 Message-ID: <20090727034029.3D07F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rwall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5356 Modified Files: rwall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rwall.spec =================================================================== RCS file: /cvs/pkgs/rpms/rwall/devel/rwall.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- rwall.spec 25 Feb 2009 22:14:52 -0000 1.23 +++ rwall.spec 27 Jul 2009 03:40:28 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Client for sending messages to a host's logged in users. Name: rwall Version: 0.17 -Release: 29%{?dist} +Release: 30%{?dist} License: BSD Group: System Environment/Daemons Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-rwall-%{version}.tar.gz @@ -100,6 +100,9 @@ fi %config /etc/rc.d/init.d/rwalld %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.17-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:40:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:40:48 +0000 (UTC) Subject: rpms/rwho/devel rwho.spec,1.22,1.23 Message-ID: <20090727034048.7094611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rwho/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5528 Modified Files: rwho.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rwho.spec =================================================================== RCS file: /cvs/pkgs/rpms/rwho/devel/rwho.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- rwho.spec 25 Feb 2009 22:15:56 -0000 1.22 +++ rwho.spec 27 Jul 2009 03:40:48 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Displays who is logged in to local network machines. Name: rwho Version: 0.17 -Release: 30%{?dist} +Release: 31%{?dist} License: BSD Group: System Environment/Daemons Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-rwho-%{version}.tar.gz @@ -100,6 +100,9 @@ fi %config /etc/rc.d/init.d/rwhod %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.17-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:41:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:41:21 +0000 (UTC) Subject: rpms/rxtx/devel rxtx.spec,1.6,1.7 Message-ID: <20090727034121.7F41511C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rxtx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5786 Modified Files: rxtx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rxtx.spec =================================================================== RCS file: /cvs/pkgs/rpms/rxtx/devel/rxtx.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- rxtx.spec 2 Jun 2009 06:14:16 -0000 1.6 +++ rxtx.spec 27 Jul 2009 03:41:21 -0000 1.7 @@ -1,6 +1,6 @@ %define upver 2.1 %define uprel 7r2 -%define rel 0.6 +%define rel 0.7 #define jni %{_jnidir} %define jni %{_libdir}/%{name} @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{jni} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-0.7.7r2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Dan Horak - 2.1-0.6.7r2 - add s390/s390x to ExcludeArch From jkeating at fedoraproject.org Mon Jul 27 03:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:41:46 +0000 (UTC) Subject: rpms/rxvt/devel rxvt.spec,1.18,1.19 Message-ID: <20090727034146.BB84111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rxvt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6041 Modified Files: rxvt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rxvt.spec =================================================================== RCS file: /cvs/pkgs/rpms/rxvt/devel/rxvt.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- rxvt.spec 25 Feb 2009 22:18:02 -0000 1.18 +++ rxvt.spec 27 Jul 2009 03:41:45 -0000 1.19 @@ -1,6 +1,6 @@ Name: rxvt Version: 2.7.10 -Release: 16%{?dist} +Release: 17%{?dist} Summary: ouR XVT, a VT102 emulator for the X window system Group: User Interface/X @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7.10-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7.10-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:42:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:42:27 +0000 (UTC) Subject: rpms/rxvt-unicode/devel rxvt-unicode.spec,1.45,1.46 Message-ID: <20090727034227.48D1511C04FF@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rxvt-unicode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6257 Modified Files: rxvt-unicode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rxvt-unicode.spec =================================================================== RCS file: /cvs/pkgs/rpms/rxvt-unicode/devel/rxvt-unicode.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- rxvt-unicode.spec 24 Apr 2009 23:51:47 -0000 1.45 +++ rxvt-unicode.spec 27 Jul 2009 03:42:26 -0000 1.46 @@ -1,6 +1,6 @@ Name: rxvt-unicode Version: 9.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Rxvt-unicode is an unicode version of rxvt Group: User Interface/X @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/urxvt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 9.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Milos Jakubicek - 9.06-3 - Fix FTBFS: added rxvt-unicode-gcc44.patch From jkeating at fedoraproject.org Mon Jul 27 03:42:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:42:46 +0000 (UTC) Subject: rpms/rygel/devel rygel.spec,1.3,1.4 Message-ID: <20090727034246.21F5211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rygel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6548 Modified Files: rygel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rygel.spec =================================================================== RCS file: /cvs/pkgs/rpms/rygel/devel/rygel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- rygel.spec 1 Jul 2009 09:36:03 -0000 1.3 +++ rygel.spec 27 Jul 2009 03:42:44 -0000 1.4 @@ -1,6 +1,6 @@ Name: rygel Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A UPnP v2 Media Server Group: Applications/Multimedia @@ -86,6 +86,9 @@ rm -rf %{buildroot} %{_datadir}/vala/vapi/rygel-1.0.vapi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Peter Robinson 0.3-3 - Rebuild with new libuuid build req From jkeating at fedoraproject.org Mon Jul 27 03:32:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:32:37 +0000 (UTC) Subject: rpms/rubygem-markaby/devel rubygem-markaby.spec,1.2,1.3 Message-ID: <20090727033237.44BE511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-markaby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32009 Modified Files: rubygem-markaby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-markaby.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-markaby/devel/rubygem-markaby.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- rubygem-markaby.spec 25 Feb 2009 21:52:31 -0000 1.2 +++ rubygem-markaby.spec 27 Jul 2009 03:32:37 -0000 1.3 @@ -6,7 +6,7 @@ Summary: Markup as Ruby, write HTML in your native Ruby tongue Name: rubygem-%{gemname} Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Languages License: GPLv2+ or Ruby URL: http://code.whytheluckystiff.net/markaby/ @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Mon Jul 27 03:32:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:32:45 +0000 Subject: [pkgdb] ibus-table-erbi: hnws has requested watchbugzilla Message-ID: <20090727033245.746EF10F897@bastion2.fedora.phx.redhat.com> hnws has requested the watchbugzilla acl on ibus-table-erbi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Mon Jul 27 03:32:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 03:32:45 +0000 Subject: [pkgdb] ibus-table-erbi: hnws has requested watchcommits Message-ID: <20090727033246.0602110F89C@bastion2.fedora.phx.redhat.com> hnws has requested the watchcommits acl on ibus-table-erbi (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From jkeating at fedoraproject.org Mon Jul 27 03:32:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:32:56 +0000 (UTC) Subject: rpms/rubygem-mocha/devel rubygem-mocha.spec,1.1,1.2 Message-ID: <20090727033256.483D411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rubygem-mocha/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32176 Modified Files: rubygem-mocha.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rubygem-mocha.spec =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-mocha/devel/rubygem-mocha.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- rubygem-mocha.spec 23 Jul 2009 13:50:22 -0000 1.1 +++ rubygem-mocha.spec 27 Jul 2009 03:32:56 -0000 1.2 @@ -6,7 +6,7 @@ Summary: Mocking and stubbing library Name: rubygem-%{gemname} Version: 0.9.7 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT and Ruby URL: http://mocha.rubyforge.org @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jeroen van Meeuwen - 0.9.7-1 - New upstream version From jkeating at fedoraproject.org Mon Jul 27 03:43:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:43:02 +0000 (UTC) Subject: rpms/rzip/devel rzip.spec,1.9,1.10 Message-ID: <20090727034302.B50E211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/rzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6728 Modified Files: rzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: rzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/rzip/devel/rzip.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- rzip.spec 25 Feb 2009 22:20:14 -0000 1.9 +++ rzip.spec 27 Jul 2009 03:43:02 -0000 1.10 @@ -1,6 +1,6 @@ Name: rzip Version: 2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A large-file compression program Group: Applications/File License: GPLv2+ @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:43:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:43:19 +0000 (UTC) Subject: rpms/s3cmd/devel s3cmd.spec,1.10,1.11 Message-ID: <20090727034319.6A0C011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/s3cmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6880 Modified Files: s3cmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: s3cmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/s3cmd/devel/s3cmd.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- s3cmd.spec 24 Feb 2009 09:06:33 -0000 1.10 +++ s3cmd.spec 27 Jul 2009 03:43:19 -0000 1.11 @@ -2,7 +2,7 @@ Name: s3cmd Version: 0.9.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for accessing Amazon Simple Storage Service Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Lubomir Rintel (Good Data) - 0.9.9-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 03:43:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:43:34 +0000 (UTC) Subject: rpms/s3switch/devel s3switch.spec,1.15,1.16 Message-ID: <20090727034334.E71E511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/s3switch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7039 Modified Files: s3switch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: s3switch.spec =================================================================== RCS file: /cvs/pkgs/rpms/s3switch/devel/s3switch.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- s3switch.spec 25 Feb 2009 22:21:21 -0000 1.15 +++ s3switch.spec 27 Jul 2009 03:43:34 -0000 1.16 @@ -1,6 +1,6 @@ Name: s3switch Version: 0.0 -Release: 12.20020912%{?dist} +Release: 13.20020912%{?dist} Summary: Manage the output device on S3 Savage chips Group: Applications/System @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0-13.20020912 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0-12.20020912 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:43:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:43:52 +0000 (UTC) Subject: rpms/sK1/devel sK1.spec,1.1,1.2 Message-ID: <20090727034352.2C9F411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sK1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7196 Modified Files: sK1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sK1.spec =================================================================== RCS file: /cvs/pkgs/rpms/sK1/devel/sK1.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sK1.spec 1 Jul 2009 02:56:17 -0000 1.1 +++ sK1.spec 27 Jul 2009 03:43:51 -0000 1.2 @@ -5,7 +5,7 @@ Name: sK1 Version: 0.9.1 -Release: 0.1.pre_rev730%{?dist} +Release: 0.2.pre_rev730%{?dist} Summary: Advanced vector graphics editor Group: Applications/Publishing @@ -84,5 +84,8 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.1-0.2.pre_rev730 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Itamar Reis Peixoto - 0.9.1-0.1.pre_rev730 - Initial RPM From jkeating at fedoraproject.org Mon Jul 27 03:44:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:44:05 +0000 (UTC) Subject: rpms/saab-fonts/devel saab-fonts.spec,1.1,1.2 Message-ID: <20090727034405.D5FE111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/saab-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7361 Modified Files: saab-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: saab-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/saab-fonts/devel/saab-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- saab-fonts.spec 3 Jun 2009 01:26:46 -0000 1.1 +++ saab-fonts.spec 27 Jul 2009 03:44:05 -0000 1.2 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 0.91 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Free Punjabi Unicode OpenType Font Group: User Interface/X @@ -37,5 +37,8 @@ rm -rf $RPM_BUILD_ROOT %doc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 A S Alam - 0.91-1 - New Package Build for Punjabi Unicode Font From jkeating at fedoraproject.org Mon Jul 27 03:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:44:21 +0000 (UTC) Subject: rpms/sabayon/devel sabayon.spec,1.60,1.61 Message-ID: <20090727034421.828B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sabayon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7547 Modified Files: sabayon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sabayon.spec =================================================================== RCS file: /cvs/pkgs/rpms/sabayon/devel/sabayon.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sabayon.spec 20 Apr 2009 12:15:00 -0000 1.60 +++ sabayon.spec 27 Jul 2009 03:44:21 -0000 1.61 @@ -8,7 +8,7 @@ Name: sabayon Version: 2.25.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool to maintain user profiles in a GNOME desktop Group: Applications/System @@ -298,6 +298,9 @@ fi %ghost %{python_sitearch}/%{name}/lockdown/*.pyo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.25.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Tomas Bzatek - 2.25.0-3 - Another, more complete fix for panel gconf save issues (gnome #542604) From jkeating at fedoraproject.org Mon Jul 27 03:44:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:44:41 +0000 (UTC) Subject: rpms/safecopy/devel safecopy.spec,1.3,1.4 Message-ID: <20090727034441.B4D7011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/safecopy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7746 Modified Files: safecopy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: safecopy.spec =================================================================== RCS file: /cvs/pkgs/rpms/safecopy/devel/safecopy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- safecopy.spec 16 Jul 2009 22:43:27 -0000 1.3 +++ safecopy.spec 27 Jul 2009 03:44:41 -0000 1.4 @@ -1,6 +1,6 @@ Name: safecopy Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Safe copying of files and partitions Group: Applications/System @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Fabian Affolter - 1.4-1 - Updated to new upstream version 1.4 From jkeating at fedoraproject.org Mon Jul 27 03:44:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:44:54 +0000 (UTC) Subject: rpms/safekeep/devel safekeep.spec,1.4,1.5 Message-ID: <20090727034454.6E22D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/safekeep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7881 Modified Files: safekeep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: safekeep.spec =================================================================== RCS file: /cvs/pkgs/rpms/safekeep/devel/safekeep.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- safekeep.spec 25 Feb 2009 22:24:26 -0000 1.4 +++ safekeep.spec 27 Jul 2009 03:44:54 -0000 1.5 @@ -1,6 +1,6 @@ %define name safekeep %define version 1.0.5 -%define release 2 +%define release 3 %define homedir %{_localstatedir}/lib/%{name} Name: %{name} @@ -119,6 +119,9 @@ id %{name} >/dev/null 2>&1 || \ %doc sample.backup %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:45:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:45:09 +0000 (UTC) Subject: rpms/sagator/devel sagator.spec,1.9,1.10 Message-ID: <20090727034509.D856211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sagator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8048 Modified Files: sagator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sagator.spec =================================================================== RCS file: /cvs/pkgs/rpms/sagator/devel/sagator.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sagator.spec 21 Apr 2009 05:25:49 -0000 1.9 +++ sagator.spec 27 Jul 2009 03:45:09 -0000 1.10 @@ -8,7 +8,7 @@ Summary: Antivir/antispam gateway for smtp server Name: sagator Version: 1.2.0 -Release: 0.beta25%{?dist} +Release: 0.beta25%{?dist}.1 Source: http://www.salstar.sk/pub/antivir/snapshots/sagator-%{version}-0.beta25.tar.bz2 URL: http://www.salstar.sk/sagator/ License: GPLv2+ @@ -236,6 +236,9 @@ rm -rf %{buildroot} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-0.beta25.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Sep 17 2008 Jan ONDREJ (SAL) - 1.2.0-0.beta25 - core files moved to core packages, sagator package now requires clamav and spamassassin From jkeating at fedoraproject.org Mon Jul 27 03:45:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:45:26 +0000 (UTC) Subject: rpms/sage/devel sage.spec,1.8,1.9 Message-ID: <20090727034526.65B6811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8211 Modified Files: sage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sage.spec =================================================================== RCS file: /cvs/pkgs/rpms/sage/devel/sage.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sage.spec 25 Feb 2009 22:26:23 -0000 1.8 +++ sage.spec 27 Jul 2009 03:45:25 -0000 1.9 @@ -1,6 +1,6 @@ Name: sage Version: 0.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OpenGL extensions library using SDL Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:45:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:45:41 +0000 (UTC) Subject: rpms/sahana/devel sahana.spec,1.2,1.3 Message-ID: <20090727034541.F26C211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sahana/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8374 Modified Files: sahana.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sahana.spec =================================================================== RCS file: /cvs/pkgs/rpms/sahana/devel/sahana.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sahana.spec 1 Apr 2009 17:39:57 -0000 1.2 +++ sahana.spec 27 Jul 2009 03:45:41 -0000 1.3 @@ -3,7 +3,7 @@ Name: sahana Version: 0.6.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Sahana is a free open source disaster management application Group: Applications/Publishing License: LGPLv2+ @@ -108,6 +108,9 @@ symlinks -crs /usr/share/sahana >/dev/nu %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 David Nalley 0.6.2.2-4 - removed -executable predicate from find so it will build on EL-5 and F-9 * Tue Mar 31 2009 David Nalley 0.6.2.2-3 From jkeating at fedoraproject.org Mon Jul 27 03:45:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:45:56 +0000 (UTC) Subject: rpms/sakura/devel sakura.spec,1.3,1.4 Message-ID: <20090727034556.29C3711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sakura/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8525 Modified Files: sakura.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sakura.spec =================================================================== RCS file: /cvs/pkgs/rpms/sakura/devel/sakura.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sakura.spec 9 Jun 2009 21:03:19 -0000 1.3 +++ sakura.spec 27 Jul 2009 03:45:55 -0000 1.4 @@ -1,6 +1,6 @@ Name: sakura Version: 2.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Terminal emulator based on GTK and VTE Group: User Interface/X @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Christoph Wickert - 2.3.3-3 - Rebuilt for libvte SONAME bump From jkeating at fedoraproject.org Mon Jul 27 03:46:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:46:11 +0000 (UTC) Subject: rpms/salinfo/devel salinfo.spec,1.18,1.19 Message-ID: <20090727034611.6F98211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/salinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8708 Modified Files: salinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: salinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/salinfo/devel/salinfo.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- salinfo.spec 25 Feb 2009 22:27:36 -0000 1.18 +++ salinfo.spec 27 Jul 2009 03:46:11 -0000 1.19 @@ -1,7 +1,7 @@ Summary: SAL info tool Name: salinfo Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Utilities/System Source0: http://www.kernel.org/pub/linux/kernel/people/helgaas/salinfo-%{version}.tar.gz @@ -59,6 +59,9 @@ umask 022 chkconfig --add salinfo_decode %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:46:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:46:37 +0000 (UTC) Subject: rpms/samba/devel samba.spec,1.191,1.192 Message-ID: <20090727034637.EBCF311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8899 Modified Files: samba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba/devel/samba.spec,v retrieving revision 1.191 retrieving revision 1.192 diff -u -p -r1.191 -r1.192 --- samba.spec 17 Jul 2009 13:32:53 -0000 1.191 +++ samba.spec 27 Jul 2009 03:46:36 -0000 1.192 @@ -15,7 +15,7 @@ Summary: Server and Client software to i Name: samba Epoch: 0 Version: %{samba_version} -Release: %{samba_release} +Release: %{samba_release}.1 License: GPLv3+ and LGPLv3+ Group: System Environment/Daemons URL: http://www.samba.org/ @@ -888,6 +888,9 @@ exit 0 %{_datadir}/pixmaps/samba/logo-small.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:3.4.0-0.41.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Guenther Deschner - 3.4.0-0.41 - Fix Bug #6551 (vuid and tid not set in sessionsetupX and tconX) - Specify required talloc and tdb version for BuildRequires From jkeating at fedoraproject.org Mon Jul 27 03:46:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:46:55 +0000 (UTC) Subject: rpms/samba4/devel samba4.spec,1.15,1.16 Message-ID: <20090727034655.1A09511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samba4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9116 Modified Files: samba4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samba4.spec =================================================================== RCS file: /cvs/pkgs/rpms/samba4/devel/samba4.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- samba4.spec 22 May 2009 19:41:01 -0000 1.15 +++ samba4.spec 27 Jul 2009 03:46:54 -0000 1.16 @@ -42,7 +42,7 @@ Name: samba4 Version: %{samba4_version} -Release: %{samba4_release} +Release: %{samba4_release}.1 Group: System Environment/Daemons Summary: The Samba4 CIFS and AD client and server suite License: GPLv3+ and LGPLv3+ @@ -839,6 +839,9 @@ exit 0 %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.0-15.2alpha7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Simo Sorce - 4.0.0-15.2alpha7 - Fix dependency From jkeating at fedoraproject.org Mon Jul 27 03:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:47:11 +0000 (UTC) Subject: rpms/samcoupe-rom/devel samcoupe-rom.spec,1.2,1.3 Message-ID: <20090727034711.E8E6F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samcoupe-rom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9284 Modified Files: samcoupe-rom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samcoupe-rom.spec =================================================================== RCS file: /cvs/pkgs/rpms/samcoupe-rom/devel/samcoupe-rom.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- samcoupe-rom.spec 25 Feb 2009 22:28:41 -0000 1.2 +++ samcoupe-rom.spec 27 Jul 2009 03:47:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: samcoupe-rom Version: 3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SAM Coup? (Spectrum compatible homecomputer) ROM file Group: Applications/Emulators License: Freely redistributable without restriction @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:47:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:47:25 +0000 (UTC) Subject: rpms/samefile/devel samefile.spec,1.2,1.3 Message-ID: <20090727034725.A2F3F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samefile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9487 Modified Files: samefile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samefile.spec =================================================================== RCS file: /cvs/pkgs/rpms/samefile/devel/samefile.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- samefile.spec 25 Feb 2009 22:29:48 -0000 1.2 +++ samefile.spec 27 Jul 2009 03:47:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: samefile Version: 2.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An utility to find identical files on the file system Group: Applications/System @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:47:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:47:37 +0000 (UTC) Subject: rpms/samtools/devel samtools.spec,1.1,1.2 Message-ID: <20090727034737.572B911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samtools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9645 Modified Files: samtools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samtools.spec =================================================================== RCS file: /cvs/pkgs/rpms/samtools/devel/samtools.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- samtools.spec 12 Jul 2009 19:10:51 -0000 1.1 +++ samtools.spec 27 Jul 2009 03:47:37 -0000 1.2 @@ -1,6 +1,6 @@ Name: samtools Version: 0.1.5c -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tools for nucleotide sequence alignments in the SAM format Group: Applications/Engineering @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.5c-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Rasmus Ory Nielsen - 0.1.5c-3 - Specfile cleanup. From jkeating at fedoraproject.org Mon Jul 27 03:47:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:47:48 +0000 (UTC) Subject: rpms/samyak-fonts/devel samyak-fonts.spec,1.9,1.10 Message-ID: <20090727034748.B084E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/samyak-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9794 Modified Files: samyak-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: samyak-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/samyak-fonts/devel/samyak-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- samyak-fonts.spec 25 Feb 2009 22:31:06 -0000 1.9 +++ samyak-fonts.spec 27 Jul 2009 03:47:48 -0000 1.10 @@ -8,7 +8,7 @@ Scripts Devanagari, Gujarati, Malayalam, Name: %{fontname}-fonts Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Free Indian truetype/opentype fonts Group: User Interface/X License: GPLv3+ with exceptions @@ -121,6 +121,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:48:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:48:01 +0000 (UTC) Subject: rpms/sane-backends/devel sane-backends.spec,1.129,1.130 Message-ID: <20090727034801.3E76411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sane-backends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9933 Modified Files: sane-backends.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sane-backends.spec =================================================================== RCS file: /cvs/pkgs/rpms/sane-backends/devel/sane-backends.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- sane-backends.spec 23 Jun 2009 07:57:22 -0000 1.129 +++ sane-backends.spec 27 Jul 2009 03:48:00 -0000 1.130 @@ -1,7 +1,7 @@ Summary: Scanner access software Name: sane-backends Version: 1.0.20 -Release: 4%{?dist} +Release: 5%{?dist} # lib/ is LGPLv2+, backends are GPLv2+ with exceptions # Tools are GPLv2+, docs are public domain # see LICENSE for details @@ -158,6 +158,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/sane-backends.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Nils Philippsen - 1.0.20-4 - separate HAL information and policy files (#457645) From jkeating at fedoraproject.org Mon Jul 27 03:48:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:48:14 +0000 (UTC) Subject: rpms/sane-frontends/devel sane-frontends.spec,1.27,1.28 Message-ID: <20090727034814.5802511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sane-frontends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10119 Modified Files: sane-frontends.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sane-frontends.spec =================================================================== RCS file: /cvs/pkgs/rpms/sane-frontends/devel/sane-frontends.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sane-frontends.spec 2 Mar 2009 13:10:13 -0000 1.27 +++ sane-frontends.spec 27 Jul 2009 03:48:13 -0000 1.28 @@ -1,6 +1,6 @@ Name: sane-frontends Version: 1.0.14 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Graphical frontend to SANE URL: http://www.sane-project.org Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz @@ -44,6 +44,9 @@ rm -R $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.14-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Nils Philippsen 1.0.14-6 - don't require libieee2384-devel, libjpeg-devel but require fixed sane-backends-devel for building From jkeating at fedoraproject.org Mon Jul 27 03:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:48:26 +0000 (UTC) Subject: rpms/saoimage/devel saoimage.spec,1.6,1.7 Message-ID: <20090727034826.AA89C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/saoimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10277 Modified Files: saoimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: saoimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/saoimage/devel/saoimage.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- saoimage.spec 7 Apr 2009 20:09:19 -0000 1.6 +++ saoimage.spec 27 Jul 2009 03:48:26 -0000 1.7 @@ -1,6 +1,6 @@ Name: saoimage Version: 1.35.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Utility for displaying astronomical images Group: Amusements/Graphics @@ -107,6 +107,9 @@ update-desktop-database &> /dev/null || %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.35.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Lubomir Rintel (Fedora Astronomy) - 1.35.1-6 - Fix blink crash - Fix print crash caused by mkstemp patch From jkeating at fedoraproject.org Mon Jul 27 03:48:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:48:38 +0000 (UTC) Subject: rpms/sarai-fonts/devel sarai-fonts.spec,1.5,1.6 Message-ID: <20090727034838.7B33E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sarai-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10414 Modified Files: sarai-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sarai-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sarai-fonts/devel/sarai-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sarai-fonts.spec 25 Feb 2009 22:34:23 -0000 1.5 +++ sarai-fonts.spec 27 Jul 2009 03:48:38 -0000 1.6 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Free Sarai Hindi Truetype Font Group: User Interface/X @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:48:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:48:49 +0000 (UTC) Subject: rpms/sat4j/devel sat4j.spec,1.9,1.10 Message-ID: <20090727034849.9B19F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sat4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10580 Modified Files: sat4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sat4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/sat4j/devel/sat4j.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sat4j.spec 8 Apr 2009 09:50:36 -0000 1.9 +++ sat4j.spec 27 Jul 2009 03:48:49 -0000 1.10 @@ -4,7 +4,7 @@ Name: sat4j Version: 2.1.0 -Release: 0.1.rc2%{?dist} +Release: 0.2.rc2%{?dist} Summary: A library of SAT solvers written in Java Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/org.sat4j* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-0.2.rc2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Alexander Kurtakov 2.1.0-0.1.rc2 - Update to 2.1.0.RC2. From jkeating at fedoraproject.org Mon Jul 27 03:49:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:49:00 +0000 (UTC) Subject: rpms/saxon/devel saxon.spec,1.4,1.5 Message-ID: <20090727034900.AECAD11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/saxon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10718 Modified Files: saxon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: saxon.spec =================================================================== RCS file: /cvs/pkgs/rpms/saxon/devel/saxon.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- saxon.spec 25 Feb 2009 22:37:37 -0000 1.4 +++ saxon.spec 27 Jul 2009 03:49:00 -0000 1.5 @@ -33,7 +33,7 @@ Summary: Java XSLT processor Name: saxon Version: 6.5.5 -Release: 2.3%{?dist} +Release: 3.3%{?dist} Epoch: 0 License: MPLv1.0 Group: Text Processing/Markup/XML @@ -228,6 +228,9 @@ update-alternatives --install %{_javadir %attr(0644,root,root) %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:6.5.5-3.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:6.5.5-2.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:49:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:49:16 +0000 (UTC) Subject: rpms/sazanami-fonts/devel sazanami-fonts.spec,1.6,1.7 Message-ID: <20090727034916.D96B811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sazanami-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10896 Modified Files: sazanami-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sazanami-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sazanami-fonts/devel/sazanami-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sazanami-fonts.spec 25 Feb 2009 22:38:43 -0000 1.6 +++ sazanami-fonts.spec 27 Jul 2009 03:49:16 -0000 1.7 @@ -10,7 +10,7 @@ They also contains some embedded Japanes Name: %{fontname}-fonts Version: 0.20040629 -Release: 7.%{fontver}%{?dist} +Release: 8.%{fontver}%{?dist} BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: ttmkfdir >= 3.0.6 @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20040629-8.20061016 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20040629-7.20061016 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:49:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:49:29 +0000 (UTC) Subject: rpms/sbackup/devel sbackup.spec,1.3,1.4 Message-ID: <20090727034929.15B4211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sbackup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11073 Modified Files: sbackup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sbackup.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbackup/devel/sbackup.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sbackup.spec 5 Mar 2009 20:28:20 -0000 1.3 +++ sbackup.spec 27 Jul 2009 03:49:28 -0000 1.4 @@ -3,7 +3,7 @@ Name: sbackup Version: 0.10.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Simple Backup Suite for desktop use Group: Applications/Archiving @@ -142,6 +142,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Simon Wesp - 0.10.5-7 - Add patch2 to save on backup - Close RHBZ: #486079 - Add patch3 to deactivate dpkg queries From jkeating at fedoraproject.org Mon Jul 27 03:49:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:49:42 +0000 (UTC) Subject: rpms/sbcl/devel sbcl.spec,1.107,1.108 Message-ID: <20090727034942.D24B311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sbcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11227 Modified Files: sbcl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sbcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sbcl/devel/sbcl.spec,v retrieving revision 1.107 retrieving revision 1.108 diff -u -p -r1.107 -r1.108 --- sbcl.spec 28 Jun 2009 19:26:52 -0000 1.107 +++ sbcl.spec 27 Jul 2009 03:49:42 -0000 1.108 @@ -13,7 +13,7 @@ Name: sbcl Summary: Steel Bank Common Lisp Version: 1.0.29 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Languages @@ -252,6 +252,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Rex Dieter - 1.0.29-1 - sbcl-1.0.29 From jkeating at fedoraproject.org Mon Jul 27 03:49:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:49:53 +0000 (UTC) Subject: rpms/sblim-cmpi-base/devel sblim-cmpi-base.spec,1.12,1.13 Message-ID: <20090727034953.82F3C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sblim-cmpi-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11367 Modified Files: sblim-cmpi-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sblim-cmpi-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/sblim-cmpi-base/devel/sblim-cmpi-base.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sblim-cmpi-base.spec 25 Feb 2009 22:41:59 -0000 1.12 +++ sblim-cmpi-base.spec 27 Jul 2009 03:49:53 -0000 1.13 @@ -3,7 +3,7 @@ Name: sblim-cmpi-base Version: 1.5.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SBLIM CMPI Base Providers Group: Applications/System @@ -123,6 +123,9 @@ fi %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:50:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:50:07 +0000 (UTC) Subject: rpms/sblim-cmpi-devel/devel sblim-cmpi-devel.spec,1.10,1.11 Message-ID: <20090727035007.5E20111C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sblim-cmpi-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11513 Modified Files: sblim-cmpi-devel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sblim-cmpi-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/sblim-cmpi-devel/devel/sblim-cmpi-devel.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sblim-cmpi-devel.spec 25 Feb 2009 22:43:13 -0000 1.10 +++ sblim-cmpi-devel.spec 27 Jul 2009 03:50:07 -0000 1.11 @@ -2,7 +2,7 @@ Name: sblim-cmpi-devel Version: 1.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SBLIM CMPI Provider Development Support Group: Development/Libraries @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/cmpi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:50:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:50:17 +0000 (UTC) Subject: rpms/sblim-sfcc/devel sblim-sfcc.spec,1.2,1.3 Message-ID: <20090727035017.8389F11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sblim-sfcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11667 Modified Files: sblim-sfcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sblim-sfcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sblim-sfcc/devel/sblim-sfcc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sblim-sfcc.spec 25 Feb 2009 22:44:24 -0000 1.2 +++ sblim-sfcc.spec 27 Jul 2009 03:50:17 -0000 1.3 @@ -10,7 +10,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{na Summary: Small Footprint CIM Client Library Name: sblim-sfcc Version: 2.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/System License: EPL URL: http://www.sblim.org @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_docdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.0-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:50:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:50:29 +0000 (UTC) Subject: rpms/sblim-testsuite/devel sblim-testsuite.spec,1.7,1.8 Message-ID: <20090727035029.C140C11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sblim-testsuite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11794 Modified Files: sblim-testsuite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sblim-testsuite.spec =================================================================== RCS file: /cvs/pkgs/rpms/sblim-testsuite/devel/sblim-testsuite.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sblim-testsuite.spec 25 Feb 2009 22:45:37 -0000 1.7 +++ sblim-testsuite.spec 27 Jul 2009 03:50:29 -0000 1.8 @@ -2,7 +2,7 @@ Name: sblim-testsuite Version: 1.2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SBLIM testsuite Group: Applications/System @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_localstatedir}/lib/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:50:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:50:44 +0000 (UTC) Subject: rpms/sblim-wbemcli/devel sblim-wbemcli.spec,1.12,1.13 Message-ID: <20090727035044.5048C11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sblim-wbemcli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11953 Modified Files: sblim-wbemcli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sblim-wbemcli.spec =================================================================== RCS file: /cvs/pkgs/rpms/sblim-wbemcli/devel/sblim-wbemcli.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sblim-wbemcli.spec 28 Feb 2009 13:52:41 -0000 1.12 +++ sblim-wbemcli.spec 27 Jul 2009 03:50:44 -0000 1.13 @@ -1,6 +1,6 @@ Name: sblim-wbemcli Version: 1.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: SBLIM WBEM Command Line Interface Group: Applications/System @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Caol?n McNamara - 1.6.0-4 - constify rets of strchr(const char *); From jkeating at fedoraproject.org Mon Jul 27 03:51:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:51:01 +0000 (UTC) Subject: rpms/scala/devel scala.spec,1.13,1.14 Message-ID: <20090727035101.EF9A911C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12144 Modified Files: scala.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scala.spec =================================================================== RCS file: /cvs/pkgs/rpms/scala/devel/scala.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- scala.spec 19 May 2009 05:38:57 -0000 1.13 +++ scala.spec 27 Jul 2009 03:51:01 -0000 1.14 @@ -1,7 +1,7 @@ Name: scala Version: 2.7.4 %define fullversion %{version}.final -Release: 5%{?dist} +Release: 6%{?dist} Summary: A hybrid functional/object-oriented language for the JVM BuildArch: noarch Group: Development/Languages @@ -220,6 +220,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/scala/examples %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Geoff Reedy - 2.7.4-5 - fix problem in tooltemplate patch From jkeating at fedoraproject.org Mon Jul 27 03:51:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:51:19 +0000 (UTC) Subject: rpms/scalapack/devel scalapack.spec,1.24,1.25 Message-ID: <20090727035119.449C911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scalapack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12323 Modified Files: scalapack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scalapack.spec =================================================================== RCS file: /cvs/pkgs/rpms/scalapack/devel/scalapack.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- scalapack.spec 25 Feb 2009 22:49:05 -0000 1.24 +++ scalapack.spec 27 Jul 2009 03:51:18 -0000 1.25 @@ -1,7 +1,7 @@ Summary: A subset of LAPACK routines redesigned for heterogenous computing Name: scalapack Version: 1.7.5 -Release: 5%{?dist} +Release: 6%{?dist} # This is freely distributable without any restrictions. License: Public Domain Group: Development/Libraries @@ -93,6 +93,9 @@ rm -fr ${RPM_BUILD_ROOT} %{_libdir}/libscalapack.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:51:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:51:30 +0000 (UTC) Subject: rpms/scanbuttond/devel scanbuttond.spec,1.7,1.8 Message-ID: <20090727035130.6DAF411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scanbuttond/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12477 Modified Files: scanbuttond.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scanbuttond.spec =================================================================== RCS file: /cvs/pkgs/rpms/scanbuttond/devel/scanbuttond.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- scanbuttond.spec 25 Feb 2009 22:50:13 -0000 1.7 +++ scanbuttond.spec 27 Jul 2009 03:51:30 -0000 1.8 @@ -1,6 +1,6 @@ Name: scanbuttond Version: 0.2.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Scanner Button tools to SANE Group: System Environment/Libraries @@ -77,6 +77,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:54:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:54:32 +0000 (UTC) Subject: rpms/scim-bridge/devel scim-bridge.spec,1.70,1.71 Message-ID: <20090727035432.0BEE011C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-bridge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14626 Modified Files: scim-bridge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-bridge.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-bridge/devel/scim-bridge.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- scim-bridge.spec 1 May 2009 23:57:02 -0000 1.70 +++ scim-bridge.spec 27 Jul 2009 03:54:31 -0000 1.71 @@ -6,7 +6,7 @@ Name: scim-bridge Version: 0.4.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SCIM Bridge Gtk IM module Group: System Environment/Libraries @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Jens Petersen - 0.4.16-1 - update to 0.4.16 - recreate scim-bridge-0.4.15-hotkey-help.patch From jkeating at fedoraproject.org Mon Jul 27 03:54:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:54:51 +0000 (UTC) Subject: rpms/scim-chewing/devel scim-chewing.spec,1.45,1.46 Message-ID: <20090727035451.DD66811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-chewing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14810 Modified Files: scim-chewing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-chewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-chewing/devel/scim-chewing.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- scim-chewing.spec 25 Feb 2009 23:03:24 -0000 1.45 +++ scim-chewing.spec 27 Jul 2009 03:54:51 -0000 1.46 @@ -1,6 +1,6 @@ Name: scim-chewing Version: 0.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Chewing Chinese input method for SCIM License: GPLv2+ @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.3-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:55:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:55:05 +0000 (UTC) Subject: rpms/scim-fcitx/devel scim-fcitx.spec,1.10,1.11 Message-ID: <20090727035505.CA4E711C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-fcitx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14983 Modified Files: scim-fcitx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-fcitx.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-fcitx/devel/scim-fcitx.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- scim-fcitx.spec 25 Feb 2009 23:04:20 -0000 1.10 +++ scim-fcitx.spec 27 Jul 2009 03:55:05 -0000 1.11 @@ -1,6 +1,6 @@ Name: scim-fcitx Version: 3.1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: FCITX Input Method Engine for SCIM Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:55:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:55:16 +0000 (UTC) Subject: rpms/scim-hangul/devel scim-hangul.spec,1.34,1.35 Message-ID: <20090727035516.BDF1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-hangul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15151 Modified Files: scim-hangul.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-hangul.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-hangul/devel/scim-hangul.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- scim-hangul.spec 25 Feb 2009 23:05:22 -0000 1.34 +++ scim-hangul.spec 27 Jul 2009 03:55:16 -0000 1.35 @@ -1,6 +1,6 @@ Name: scim-hangul Version: 0.3.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv3 URL: http://www.scim-im.org/ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:55:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:55:28 +0000 (UTC) Subject: rpms/scim-input-pad/devel scim-input-pad.spec,1.14,1.15 Message-ID: <20090727035528.6633D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-input-pad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15299 Modified Files: scim-input-pad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-input-pad.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-input-pad/devel/scim-input-pad.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- scim-input-pad.spec 2 May 2009 00:25:48 -0000 1.14 +++ scim-input-pad.spec 27 Jul 2009 03:55:28 -0000 1.15 @@ -1,6 +1,6 @@ Name: scim-input-pad Version: 0.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: On-screen Input Pad for SCIM Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Jens Petersen - 0.1.2-1 - update to 0.1.2 - buildrequire libtool From jkeating at fedoraproject.org Mon Jul 27 03:55:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:55:42 +0000 (UTC) Subject: rpms/scim-m17n/devel scim-m17n.spec,1.20,1.21 Message-ID: <20090727035542.8C63811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-m17n/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15458 Modified Files: scim-m17n.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-m17n.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-m17n/devel/scim-m17n.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- scim-m17n.spec 2 May 2009 00:14:45 -0000 1.20 +++ scim-m17n.spec 27 Jul 2009 03:55:42 -0000 1.21 @@ -1,6 +1,6 @@ Name: scim-m17n Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SCIM IMEngine for m17n-lib Group: System Environment/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Jens Petersen - 0.2.3-1 - update to 0.2.3 - scim-m17n-0.2.2-gcc43.patch upstream From jkeating at fedoraproject.org Mon Jul 27 03:51:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:51:50 +0000 (UTC) Subject: rpms/scanmem/devel scanmem.spec,1.4,1.5 Message-ID: <20090727035150.CDF6C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scanmem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12664 Modified Files: scanmem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scanmem.spec =================================================================== RCS file: /cvs/pkgs/rpms/scanmem/devel/scanmem.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- scanmem.spec 25 Feb 2009 22:50:41 -0000 1.4 +++ scanmem.spec 27 Jul 2009 03:51:50 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Simple interactive debugging utility Name: scanmem Version: 0.07 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Development/Debuggers Source0: http://taviso.decsystem.org/files/scanmem/scanmem-%{version}.tar.gz @@ -37,6 +37,9 @@ engineering, or as a "pokefinder" to che %{_bindir}/scanmem %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.07-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.07-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:52:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:52:03 +0000 (UTC) Subject: rpms/scanssh/devel scanssh.spec,1.14,1.15 Message-ID: <20090727035203.398D611C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scanssh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12816 Modified Files: scanssh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scanssh.spec =================================================================== RCS file: /cvs/pkgs/rpms/scanssh/devel/scanssh.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- scanssh.spec 25 Feb 2009 22:51:37 -0000 1.14 +++ scanssh.spec 27 Jul 2009 03:52:02 -0000 1.15 @@ -2,7 +2,7 @@ Name: scanssh Summary: Fast SSH server and open proxy scanner Version: 2.1 -Release: 18%{?dist} +Release: 19%{?dist} Group: Applications/Internet License: BSD with advertising @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/scanssh* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:52:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:52:31 +0000 (UTC) Subject: rpms/schedtool/devel schedtool.spec,1.8,1.9 Message-ID: <20090727035231.078BF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/schedtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13156 Modified Files: schedtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: schedtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/schedtool/devel/schedtool.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- schedtool.spec 25 Feb 2009 22:53:29 -0000 1.8 +++ schedtool.spec 27 Jul 2009 03:52:30 -0000 1.9 @@ -1,6 +1,6 @@ Name: schedtool Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to query or alter process scheduling policy Group: System Environment/Base @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc README LICENSE CHANGES TUNING TODO %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:52:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:52:18 +0000 (UTC) Subject: rpms/scapy/devel scapy.spec,1.5,1.6 Message-ID: <20090727035218.5A67E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scapy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12993 Modified Files: scapy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scapy.spec =================================================================== RCS file: /cvs/pkgs/rpms/scapy/devel/scapy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- scapy.spec 25 Feb 2009 22:52:33 -0000 1.5 +++ scapy.spec 27 Jul 2009 03:52:18 -0000 1.6 @@ -2,7 +2,7 @@ Name: scapy Version: 2.0.0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Interactive packet manipulation tool and network scanner Group: Applications/Internet @@ -48,6 +48,9 @@ requests and replies, and much more. %{python_sitelib}/scapy-*.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:52:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:52:42 +0000 (UTC) Subject: rpms/scheme2js/devel scheme2js.spec,1.1,1.2 Message-ID: <20090727035242.B0A9111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scheme2js/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13283 Modified Files: scheme2js.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scheme2js.spec =================================================================== RCS file: /cvs/pkgs/rpms/scheme2js/devel/scheme2js.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- scheme2js.spec 9 Mar 2009 15:42:54 -0000 1.1 +++ scheme2js.spec 27 Jul 2009 03:52:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: scheme2js Version: 20081219 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scheme to JavaScript compiler Group: Development/Languages @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20081219-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Michel Salim - 20081219-2 - Not building on ppc64, as bigloo is not available From jkeating at fedoraproject.org Mon Jul 27 03:52:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:52:55 +0000 (UTC) Subject: rpms/schismtracker/devel schismtracker.spec,1.6,1.7 Message-ID: <20090727035255.DB6B411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/schismtracker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13446 Modified Files: schismtracker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: schismtracker.spec =================================================================== RCS file: /cvs/pkgs/rpms/schismtracker/devel/schismtracker.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- schismtracker.spec 25 Feb 2009 22:54:24 -0000 1.6 +++ schismtracker.spec 27 Jul 2009 03:52:55 -0000 1.7 @@ -1,6 +1,6 @@ Name: schismtracker Version: 0.5 -Release: 0.8.rc1%{?dist} +Release: 0.9.rc1%{?dist} Summary: Sound module composer/player Group: Applications/Multimedia License: GPLv2 @@ -68,6 +68,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/*/apps/%{name}.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-0.9.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-0.8.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:53:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:53:09 +0000 (UTC) Subject: rpms/schroedinger/devel schroedinger.spec,1.14,1.15 Message-ID: <20090727035309.9CD0C11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/schroedinger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13586 Modified Files: schroedinger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: schroedinger.spec =================================================================== RCS file: /cvs/pkgs/rpms/schroedinger/devel/schroedinger.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- schroedinger.spec 24 Apr 2009 14:40:00 -0000 1.14 +++ schroedinger.spec 27 Jul 2009 03:53:09 -0000 1.15 @@ -2,7 +2,7 @@ Name: schroedinger Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Portable libraries for the high quality Dirac video codec Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_libdir}/gstreamer-0.10/libgstschro.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Jeffrey C. Ollie - 1.0.7-1 - Update to 1.0.7 From jkeating at fedoraproject.org Mon Jul 27 03:53:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:53:21 +0000 (UTC) Subject: rpms/scidavis/devel scidavis.spec,1.22,1.23 Message-ID: <20090727035321.5E27911C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scidavis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13759 Modified Files: scidavis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scidavis.spec =================================================================== RCS file: /cvs/pkgs/rpms/scidavis/devel/scidavis.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- scidavis.spec 22 Jul 2009 18:26:40 -0000 1.22 +++ scidavis.spec 27 Jul 2009 03:53:21 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Scientific Data Analysis and Visualization Name: scidavis Version: 0.2.3 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://download.sourceforge.net/sourceforge/scidavis/%{name}-%{version}.tar.bz2 Source1: http://download.sourceforge.net/sourceforge/scidavis/scidavis-manual-0.1_2008-02-28.tar.bz2 Patch0: scidavis-0.2.3-manual.patch @@ -104,6 +104,9 @@ rm -rf %{buildroot} %doc manual/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Eric Tanguy - 0.2.3-7 - Requires scidavis for scidavis-manual - Change categories in scidavis.desktop From jkeating at fedoraproject.org Mon Jul 27 03:53:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:53:31 +0000 (UTC) Subject: rpms/scigraphica/devel scigraphica.spec,1.5,1.6 Message-ID: <20090727035331.CC68311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scigraphica/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13898 Modified Files: scigraphica.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scigraphica.spec =================================================================== RCS file: /cvs/pkgs/rpms/scigraphica/devel/scigraphica.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- scigraphica.spec 25 Feb 2009 22:57:18 -0000 1.5 +++ scigraphica.spec 27 Jul 2009 03:53:31 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Scientific application for data analysis and technical graphics Name: scigraphica Version: 2.1.0 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Productivity Url: http://scigraphica.sourceforge.net @@ -61,6 +61,9 @@ rm -rf %{buildroot} %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:53:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:53:48 +0000 (UTC) Subject: rpms/scim/devel scim.spec,1.143,1.144 Message-ID: <20090727035348.91D8811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14053 Modified Files: scim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim/devel/scim.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- scim.spec 1 May 2009 23:40:56 -0000 1.143 +++ scim.spec 27 Jul 2009 03:53:48 -0000 1.144 @@ -1,6 +1,6 @@ Name: scim Version: 1.4.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Smart Common Input Method platform License: LGPLv2+ @@ -299,6 +299,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Jens Petersen - 1.4.9-1 - update to 1.4.9 - ta.po is now upstream and scim-1.4.7-translation-update-431995.patch From jkeating at fedoraproject.org Mon Jul 27 03:54:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:54:06 +0000 (UTC) Subject: rpms/scim-anthy/devel scim-anthy.spec,1.53,1.54 Message-ID: <20090727035406.455AA11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-anthy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14274 Modified Files: scim-anthy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-anthy.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-anthy/devel/scim-anthy.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- scim-anthy.spec 25 Feb 2009 22:59:28 -0000 1.53 +++ scim-anthy.spec 27 Jul 2009 03:54:05 -0000 1.54 @@ -1,6 +1,6 @@ Name: scim-anthy Version: 1.2.7 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://scim-imengine.sourceforge.jp/ @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:54:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:54:18 +0000 (UTC) Subject: rpms/scim-array/devel scim-array.spec,1.11,1.12 Message-ID: <20090727035418.DF10B11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-array/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14463 Modified Files: scim-array.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-array.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-array/devel/scim-array.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- scim-array.spec 25 Feb 2009 23:00:29 -0000 1.11 +++ scim-array.spec 27 Jul 2009 03:54:18 -0000 1.12 @@ -1,6 +1,6 @@ Name: scim-array Version: 1.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SCIM Array 30 Input Method Engine Group: System Environment/Libraries @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:56:04 +0000 (UTC) Subject: rpms/scim-pinyin/devel scim-pinyin.spec,1.48,1.49 Message-ID: <20090727035604.2872E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-pinyin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15681 Modified Files: scim-pinyin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-pinyin.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-pinyin/devel/scim-pinyin.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- scim-pinyin.spec 25 Feb 2009 23:13:03 -0000 1.48 +++ scim-pinyin.spec 27 Jul 2009 03:56:03 -0000 1.49 @@ -1,6 +1,6 @@ Name: scim-pinyin Version: 0.5.91 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Smart Pinyin IMEngine for Smart Common Input Method platform License: GPLv2 @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.91-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.91-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:56:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:56:18 +0000 (UTC) Subject: rpms/scim-python/devel scim-python.spec,1.22,1.23 Message-ID: <20090727035618.1AB9411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15864 Modified Files: scim-python.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-python.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-python/devel/scim-python.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- scim-python.spec 25 Feb 2009 23:14:00 -0000 1.22 +++ scim-python.spec 27 Jul 2009 03:56:17 -0000 1.23 @@ -3,7 +3,7 @@ %define mod_path scim-0.1 Name: scim-python Version: 0.1.13rc1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python language binding for Smart Common Input Method platform License: LGPLv2+ @@ -211,6 +211,9 @@ XMCreateDB -i -n %{_datadir}/scim-python %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.13rc1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.13rc1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:56:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:56:33 +0000 (UTC) Subject: rpms/scim-qtimm/devel scim-qtimm.spec,1.20,1.21 Message-ID: <20090727035633.B758811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-qtimm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16046 Modified Files: scim-qtimm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-qtimm.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-qtimm/devel/scim-qtimm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- scim-qtimm.spec 22 Jul 2009 01:56:27 -0000 1.20 +++ scim-qtimm.spec 27 Jul 2009 03:56:33 -0000 1.21 @@ -1,6 +1,6 @@ Name: scim-qtimm Version: 0.9.4 -Release: 12%{?dist} +Release: 13%{?dist} Summary: SCIM input method module for Qt # No version specified. @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Jens Petersen - 0.9.4-12 - correct the Group name (reported by Edwin ten Brink, #512544) From jkeating at fedoraproject.org Mon Jul 27 03:56:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:56:46 +0000 (UTC) Subject: rpms/scim-sayura/devel scim-sayura.spec,1.2,1.3 Message-ID: <20090727035646.19C6211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-sayura/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16245 Modified Files: scim-sayura.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-sayura.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-sayura/devel/scim-sayura.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- scim-sayura.spec 25 Feb 2009 23:16:03 -0000 1.2 +++ scim-sayura.spec 27 Jul 2009 03:56:45 -0000 1.3 @@ -1,6 +1,6 @@ Name: scim-sayura Version: 0.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Sri Lankan input method for SCIM Group: System Environment/Libraries License: GPLv2 @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:56:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:56:57 +0000 (UTC) Subject: rpms/scim-skk/devel scim-skk.spec,1.20,1.21 Message-ID: <20090727035657.BABC311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-skk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16431 Modified Files: scim-skk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-skk.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-skk/devel/scim-skk.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- scim-skk.spec 25 Feb 2009 23:17:09 -0000 1.20 +++ scim-skk.spec 27 Jul 2009 03:56:57 -0000 1.21 @@ -1,6 +1,6 @@ Name: scim-skk Version: 0.5.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: SCIM IMEngine module for skk Group: System Environment/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:57:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:57:44 +0000 (UTC) Subject: rpms/scim-tables/devel scim-tables.spec,1.51,1.52 Message-ID: <20090727035744.F0E1311C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-tables/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16898 Modified Files: scim-tables.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-tables.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-tables/devel/scim-tables.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- scim-tables.spec 2 May 2009 02:45:03 -0000 1.51 +++ scim-tables.spec 27 Jul 2009 03:57:44 -0000 1.52 @@ -6,7 +6,7 @@ Name: scim-tables Version: 0.5.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SCIM Generic Table IMEngine License: GPLv2+ @@ -462,6 +462,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 2 2009 Jens Petersen - 0.5.9-1 - update to 0.5.9 - scim-tables-0.5.8-1.gcc.patch upstream From jkeating at fedoraproject.org Mon Jul 27 03:57:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:57:57 +0000 (UTC) Subject: rpms/scim-thai/devel scim-thai.spec,1.2,1.3 Message-ID: <20090727035757.1404A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-thai/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17045 Modified Files: scim-thai.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-thai.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-thai/devel/scim-thai.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- scim-thai.spec 25 Feb 2009 23:19:42 -0000 1.2 +++ scim-thai.spec 27 Jul 2009 03:57:56 -0000 1.3 @@ -1,6 +1,6 @@ Name: scim-thai Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Thai Input Method Engine for SCIM Group: System Environment/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:58:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:58:09 +0000 (UTC) Subject: rpms/scim-tomoe/devel scim-tomoe.spec,1.26,1.27 Message-ID: <20090727035809.F405A11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scim-tomoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17187 Modified Files: scim-tomoe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scim-tomoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/scim-tomoe/devel/scim-tomoe.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- scim-tomoe.spec 25 Feb 2009 23:20:33 -0000 1.26 +++ scim-tomoe.spec 27 Jul 2009 03:58:09 -0000 1.27 @@ -1,6 +1,6 @@ Name: scim-tomoe Version: 0.6.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tomoe module for SCIM for handwritten input Group: System Environment/Libraries @@ -52,6 +52,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:58:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:58:20 +0000 (UTC) Subject: rpms/scipy/devel scipy.spec,1.22,1.23 Message-ID: <20090727035820.E452D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scipy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17320 Modified Files: scipy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scipy.spec =================================================================== RCS file: /cvs/pkgs/rpms/scipy/devel/scipy.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- scipy.spec 14 Jun 2009 23:12:38 -0000 1.22 +++ scipy.spec 27 Jul 2009 03:58:20 -0000 1.23 @@ -2,7 +2,7 @@ Summary: Scipy: Scientific Tools for Python Name: scipy Version: 0.7.0 -Release: 4%{?dist} +Release: 5%{?dist} Group: Development/Libraries License: BSD and LGPLv2+ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Jef Spaleta - 0.7.0-4 - Fix for gcc34 weave blitz bug #505379 From jkeating at fedoraproject.org Mon Jul 27 03:58:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:58:32 +0000 (UTC) Subject: rpms/scite/devel scite.spec,1.8,1.9 Message-ID: <20090727035832.46A6E11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17463 Modified Files: scite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scite.spec =================================================================== RCS file: /cvs/pkgs/rpms/scite/devel/scite.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- scite.spec 4 Apr 2009 18:06:07 -0000 1.8 +++ scite.spec 27 Jul 2009 03:58:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: scite Version: 1.77 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SCIntilla based GTK2 text editor License: MIT Group: Applications/Editors @@ -60,6 +60,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.77-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 4 2009 Jorge Torres 1.77-1 - Upgrade to 1.77 From jkeating at fedoraproject.org Mon Jul 27 03:58:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:58:48 +0000 (UTC) Subject: rpms/scitools/devel scitools.spec,1.3,1.4 Message-ID: <20090727035848.2CF0D11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scitools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17637 Modified Files: scitools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scitools.spec =================================================================== RCS file: /cvs/pkgs/rpms/scitools/devel/scitools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- scitools.spec 24 Jun 2009 04:42:25 -0000 1.3 +++ scitools.spec 27 Jul 2009 03:58:47 -0000 1.4 @@ -1,6 +1,6 @@ Name: scitools Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Python library for scientific computing Group: Applications/Engineering @@ -85,6 +85,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Joseph Smidt 0.6-1 - New Upstream Release From jkeating at fedoraproject.org Mon Jul 27 03:59:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:59:09 +0000 (UTC) Subject: rpms/scmxx/devel scmxx.spec,1.8,1.9 Message-ID: <20090727035909.5B1D811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scmxx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17849 Modified Files: scmxx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scmxx.spec =================================================================== RCS file: /cvs/pkgs/rpms/scmxx/devel/scmxx.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- scmxx.spec 25 Feb 2009 23:23:58 -0000 1.8 +++ scmxx.spec 27 Jul 2009 03:59:08 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Exchange data with Siemens mobile phones Name: scmxx Version: 0.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Communications License: GPLv2+ URL: http://www.hendrik-sattler.de/scmxx @@ -46,6 +46,9 @@ rm -rf %{buildroot} %lang(ru) %{_mandir}/ru/man1/scmxx.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:59:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:59:20 +0000 (UTC) Subject: rpms/scons/devel scons.spec,1.24,1.25 Message-ID: <20090727035920.19F1411C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18075 Modified Files: scons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scons.spec =================================================================== RCS file: /cvs/pkgs/rpms/scons/devel/scons.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- scons.spec 25 Feb 2009 23:24:47 -0000 1.24 +++ scons.spec 27 Jul 2009 03:59:19 -0000 1.25 @@ -1,6 +1,6 @@ Name: scons Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An Open Source software construction tool @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 03:59:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:59:33 +0000 (UTC) Subject: rpms/scorched3d/devel scorched3d.spec,1.37,1.38 Message-ID: <20090727035933.C5D7811C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scorched3d/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18220 Modified Files: scorched3d.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scorched3d.spec =================================================================== RCS file: /cvs/pkgs/rpms/scorched3d/devel/scorched3d.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- scorched3d.spec 8 Mar 2009 10:31:48 -0000 1.37 +++ scorched3d.spec 27 Jul 2009 03:59:33 -0000 1.38 @@ -1,6 +1,6 @@ Name: scorched3d Version: 42.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Game based loosely on the classic DOS game Scorched Earth Group: Amusements/Games License: GPLv2+ @@ -106,6 +106,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 42.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Hans de Goede 42.1-1 - New upstream release 42.1 From jkeating at fedoraproject.org Mon Jul 27 03:59:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 03:59:47 +0000 (UTC) Subject: rpms/scorchwentbonkers/devel scorchwentbonkers.spec,1.5,1.6 Message-ID: <20090727035947.3468211C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scorchwentbonkers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18376 Modified Files: scorchwentbonkers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scorchwentbonkers.spec =================================================================== RCS file: /cvs/pkgs/rpms/scorchwentbonkers/devel/scorchwentbonkers.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- scorchwentbonkers.spec 25 Feb 2009 23:26:26 -0000 1.5 +++ scorchwentbonkers.spec 27 Jul 2009 03:59:46 -0000 1.6 @@ -1,6 +1,6 @@ Name: scorchwentbonkers Version: 1.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Realtime remake of Scorched Earth Group: Amusements/Games License: zlib @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:00:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:00:00 +0000 (UTC) Subject: rpms/scponly/devel scponly.spec,1.14,1.15 Message-ID: <20090727040000.5605F11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scponly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18535 Modified Files: scponly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scponly.spec =================================================================== RCS file: /cvs/pkgs/rpms/scponly/devel/scponly.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- scponly.spec 27 Feb 2009 19:52:32 -0000 1.14 +++ scponly.spec 27 Jul 2009 04:00:00 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Restricted shell for ssh based file services Name: scponly Version: 4.8 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/Internet URL: http://sublimation.org/scponly/ @@ -60,6 +60,9 @@ make install DESTDIR=%{buildroot} %config(noreplace) %{_sysconfdir}/scponly/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Warren Togami - 4.8-4 - Fix gcc-4.4 build due to broken #elif - copy config.guess from /usr/lib/rpm so it builds on ppc64 From jkeating at fedoraproject.org Mon Jul 27 04:00:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:00:23 +0000 (UTC) Subject: rpms/scratchpad/devel scratchpad.spec,1.4,1.5 Message-ID: <20090727040023.78ADC11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scratchpad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18789 Modified Files: scratchpad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scratchpad.spec =================================================================== RCS file: /cvs/pkgs/rpms/scratchpad/devel/scratchpad.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- scratchpad.spec 25 Feb 2009 23:28:09 -0000 1.4 +++ scratchpad.spec 27 Jul 2009 04:00:23 -0000 1.5 @@ -1,6 +1,6 @@ Name: scratchpad Version: 0.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Spatial text editor for the GNOME desktop Group: Applications/Editors @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:00:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:00:43 +0000 (UTC) Subject: rpms/screen/devel screen.spec,1.50,1.51 Message-ID: <20090727040043.1D60311C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/screen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18979 Modified Files: screen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: screen.spec =================================================================== RCS file: /cvs/pkgs/rpms/screen/devel/screen.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- screen.spec 25 Feb 2009 23:32:32 -0000 1.50 +++ screen.spec 27 Jul 2009 04:00:42 -0000 1.51 @@ -1,7 +1,7 @@ Summary: A screen manager that supports multiple logins on one terminal Name: screen Version: 4.0.3 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.gnu.org/software/screen @@ -115,6 +115,9 @@ fi %config(noreplace) %{_sysconfdir}/pam.d/screen %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:00:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:00:58 +0000 (UTC) Subject: rpms/screenie/devel screenie.spec,1.3,1.4 Message-ID: <20090727040058.05B7511C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/screenie/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19187 Modified Files: screenie.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: screenie.spec =================================================================== RCS file: /cvs/pkgs/rpms/screenie/devel/screenie.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- screenie.spec 25 Feb 2009 23:33:25 -0000 1.3 +++ screenie.spec 27 Jul 2009 04:00:57 -0000 1.4 @@ -1,6 +1,6 @@ Name: screenie Version: 1.30.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A small and lightweight screen wrapper Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.30.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.30.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:01:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:01:10 +0000 (UTC) Subject: rpms/screenruler/devel screenruler.spec,1.2,1.3 Message-ID: <20090727040110.DADCB11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/screenruler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19337 Modified Files: screenruler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: screenruler.spec =================================================================== RCS file: /cvs/pkgs/rpms/screenruler/devel/screenruler.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- screenruler.spec 25 Feb 2009 23:34:25 -0000 1.2 +++ screenruler.spec 27 Jul 2009 04:01:10 -0000 1.3 @@ -1,7 +1,7 @@ Summary: GNOME screen ruler Name: screenruler Version: 0.85 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://gnomecoder.wordpress.com/screenruler/ @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_datadir}/applications/*.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.85-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:01:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:01:23 +0000 (UTC) Subject: rpms/scribes/devel scribes.spec,1.41,1.42 Message-ID: <20090727040123.5D6F511C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scribes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19500 Modified Files: scribes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scribes.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribes/devel/scribes.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- scribes.spec 25 Feb 2009 23:35:24 -0000 1.41 +++ scribes.spec 27 Jul 2009 04:01:23 -0000 1.42 @@ -4,7 +4,7 @@ Name: scribes Version: 0.3.3.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A sleek, simple, and powerful text editor for the GNOME desktop Group: Applications/Editors License: GPLv2+ @@ -164,6 +164,9 @@ scrollkeeper-update -q ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.3.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.3.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:01:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:01:40 +0000 (UTC) Subject: rpms/scribes-templates/devel scribes-templates.spec,1.6,1.7 Message-ID: <20090727040140.C852111C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scribes-templates/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19687 Modified Files: scribes-templates.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scribes-templates.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribes-templates/devel/scribes-templates.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- scribes-templates.spec 25 Feb 2009 23:36:24 -0000 1.6 +++ scribes-templates.spec 27 Jul 2009 04:01:40 -0000 1.7 @@ -1,6 +1,6 @@ Name: scribes-templates Version: 20070602 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Templates ("Snippets") for the Scribes text editor Group: Applications/Editors @@ -60,6 +60,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20070602-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20070602-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:01:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:01:57 +0000 (UTC) Subject: rpms/scribus/devel scribus.spec,1.45,1.46 Message-ID: <20090727040157.5ECAF11C00CE@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scribus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19837 Modified Files: scribus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scribus.spec =================================================================== RCS file: /cvs/pkgs/rpms/scribus/devel/scribus.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- scribus.spec 21 Jul 2009 18:53:02 -0000 1.45 +++ scribus.spec 27 Jul 2009 04:01:57 -0000 1.46 @@ -1,6 +1,6 @@ Name: scribus Version: 1.3.5 -Release: 0.15.rc3%{?dist} +Release: 0.16.rc3%{?dist} Summary: DeskTop Publishing application written in Qt @@ -171,6 +171,9 @@ update-mime-database %{_datadir}/mime > %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.5-0.16.rc3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Dan Hor?k - 1.3.5-0.15.rc3 - update to 1.3.5-rc3 - use system hyphen library (#506074) From jkeating at fedoraproject.org Mon Jul 27 04:02:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:02:08 +0000 (UTC) Subject: rpms/scrip/devel scrip.spec,1.9,1.10 Message-ID: <20090727040208.C60AC11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scrip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20038 Modified Files: scrip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scrip.spec =================================================================== RCS file: /cvs/pkgs/rpms/scrip/devel/scrip.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- scrip.spec 22 May 2009 16:13:50 -0000 1.9 +++ scrip.spec 27 Jul 2009 04:02:08 -0000 1.10 @@ -1,6 +1,6 @@ Name: scrip Version: 1.4 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Spherical Coordinate Remapping and Interpolation Package (SCRIP) Group: Applications/Engineering @@ -46,6 +46,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Milos Jakubicek - 1.4-13 - Fix FTBFS: fixed netcdf include dir. From jkeating at fedoraproject.org Mon Jul 27 04:02:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:02:23 +0000 (UTC) Subject: rpms/scrot/devel scrot.spec,1.3,1.4 Message-ID: <20090727040223.631FB11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scrot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20474 Modified Files: scrot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scrot.spec =================================================================== RCS file: /cvs/pkgs/rpms/scrot/devel/scrot.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- scrot.spec 25 Feb 2009 23:39:36 -0000 1.3 +++ scrot.spec 27 Jul 2009 04:02:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: scrot Version: 0.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Screen-shot capture using Imlib 2 Group: User Interface/X @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:02:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:02:38 +0000 (UTC) Subject: rpms/scrub/devel scrub.spec,1.11,1.12 Message-ID: <20090727040238.1385F11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scrub/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20937 Modified Files: scrub.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scrub.spec =================================================================== RCS file: /cvs/pkgs/rpms/scrub/devel/scrub.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- scrub.spec 25 Feb 2009 23:40:38 -0000 1.11 +++ scrub.spec 27 Jul 2009 04:02:37 -0000 1.12 @@ -1,6 +1,6 @@ Name: scrub Version: 2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk scrubbing program License: GPLv2+ Group: System Environment/Base @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/scrub.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:03:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:03:00 +0000 (UTC) Subject: rpms/scsi-target-utils/devel scsi-target-utils.spec,1.11,1.12 Message-ID: <20090727040300.BAD2B11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scsi-target-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21263 Modified Files: scsi-target-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scsi-target-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/scsi-target-utils/devel/scsi-target-utils.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- scsi-target-utils.spec 17 Mar 2009 08:23:28 -0000 1.11 +++ scsi-target-utils.spec 27 Jul 2009 04:02:59 -0000 1.12 @@ -1,6 +1,6 @@ Name: scsi-target-utils Version: 0.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The SCSI target daemon and utility programs Group: System Environment/Daemons @@ -81,6 +81,9 @@ fi %{_initrddir}/tgtd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Terje Rosten - 0.9.5-1 - 0.9.5 - remove patch now upstream From jkeating at fedoraproject.org Mon Jul 27 04:03:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:03:41 +0000 (UTC) Subject: rpms/scummvm/devel scummvm.spec,1.17,1.18 Message-ID: <20090727040341.A4F1B11C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scummvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21521 Modified Files: scummvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scummvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/scummvm/devel/scummvm.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- scummvm.spec 28 Apr 2009 05:16:08 -0000 1.17 +++ scummvm.spec 27 Jul 2009 04:03:40 -0000 1.18 @@ -1,6 +1,6 @@ Name: scummvm Version: 0.13.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Interpreter for several adventure games Group: Applications/Emulators License: GPLv2+ @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Lucian Langa - 0.13.1-1 - new upstream release From jkeating at fedoraproject.org Mon Jul 27 04:04:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:04:00 +0000 (UTC) Subject: rpms/scummvm-tools/devel scummvm-tools.spec,1.3,1.4 Message-ID: <20090727040400.C091011C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scummvm-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21856 Modified Files: scummvm-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scummvm-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/scummvm-tools/devel/scummvm-tools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- scummvm-tools.spec 10 Mar 2009 10:49:25 -0000 1.3 +++ scummvm-tools.spec 27 Jul 2009 04:04:00 -0000 1.4 @@ -1,6 +1,6 @@ Name: scummvm-tools Version: 0.13.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tools for scummVM / S.C.U.M.M scripting language Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Lucian Langa - 0.13.0-1 - new upstream release - use SF generic downloads URL From jkeating at fedoraproject.org Mon Jul 27 04:04:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:04:17 +0000 (UTC) Subject: rpms/scythia/devel scythia.spec,1.2,1.3 Message-ID: <20090727040417.A64A411C00D4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/scythia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22029 Modified Files: scythia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: scythia.spec =================================================================== RCS file: /cvs/pkgs/rpms/scythia/devel/scythia.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- scythia.spec 26 Feb 2009 00:10:44 -0000 1.2 +++ scythia.spec 27 Jul 2009 04:04:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: scythia Version: 0.9.3 -Release: 3.2%{?dist} +Release: 4.2%{?dist} Summary: Just a small ftp client Summary(pl): Ma?y klient ftp Group: Applications/Internet @@ -66,6 +66,9 @@ fi %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.3-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.3-3.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:04:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:04:33 +0000 (UTC) Subject: rpms/sdcc/devel sdcc.spec,1.17,1.18 Message-ID: <20090727040433.BBD7711C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sdcc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23680 Modified Files: sdcc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sdcc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdcc/devel/sdcc.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sdcc.spec 21 Jul 2009 00:19:33 -0000 1.17 +++ sdcc.spec 27 Jul 2009 04:04:33 -0000 1.18 @@ -1,6 +1,6 @@ Name: sdcc Version: 2.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Small Device C Compiler Group: Applications/Engineering License: GPLv2+ @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Conrad Meyer - 2.9.0-3 - Fix double-free (rhbz# 509278) with patch from upstream. From jkeating at fedoraproject.org Mon Jul 27 04:04:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:04:50 +0000 (UTC) Subject: rpms/sdljava/devel sdljava.spec,1.12,1.13 Message-ID: <20090727040450.BF93E11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sdljava/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26030 Modified Files: sdljava.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sdljava.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdljava/devel/sdljava.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sdljava.spec 22 May 2009 12:54:50 -0000 1.12 +++ sdljava.spec 27 Jul 2009 04:04:50 -0000 1.13 @@ -7,7 +7,7 @@ Name: sdljava Version: 0.9.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Java binding to the SDL API Group: System Environment/Libraries License: LGPLv2+ @@ -214,6 +214,9 @@ ln -s %{name}-%{version} %{_javadocdir}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Hans de Goede 0.9.1-12 - Rebuild for new ftgl (#501323) From jkeating at fedoraproject.org Mon Jul 27 04:05:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:05:05 +0000 (UTC) Subject: rpms/sdparm/devel sdparm.spec,1.9,1.10 Message-ID: <20090727040505.AFE5E11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sdparm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29437 Modified Files: sdparm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sdparm.spec =================================================================== RCS file: /cvs/pkgs/rpms/sdparm/devel/sdparm.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sdparm.spec 26 Feb 2009 00:13:26 -0000 1.9 +++ sdparm.spec 27 Jul 2009 04:05:04 -0000 1.10 @@ -1,7 +1,7 @@ Summary: List or change SCSI/SATA disk parameters Name: sdparm Version: 1.03 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Applications/System URL: http://sg.danny.cz/sg/sdparm.html @@ -45,6 +45,9 @@ such that the disk stops operating or is %{_mandir}/man8/%{name}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:05:23 +0000 (UTC) Subject: rpms/seahorse/devel seahorse.spec,1.72,1.73 Message-ID: <20090727040523.B7FBB11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seahorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30693 Modified Files: seahorse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seahorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse/devel/seahorse.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- seahorse.spec 1 Jun 2009 16:16:05 -0000 1.72 +++ seahorse.spec 27 Jul 2009 04:05:23 -0000 1.73 @@ -1,6 +1,6 @@ Name: seahorse Version: 2.27.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A GNOME application for managing encryption keys Group: User Interface/Desktops # seahorse is GPLv2+ @@ -158,6 +158,9 @@ fi %{_datadir}/gtk-doc/html/libcryptui %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.27.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Tomas Bzatek 2.27.1-2 - Require pinentry-gtk (#474419) From jkeating at fedoraproject.org Mon Jul 27 04:05:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:05:38 +0000 (UTC) Subject: rpms/seahorse-adventures/devel seahorse-adventures.spec,1.5,1.6 Message-ID: <20090727040538.740E711C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seahorse-adventures/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31685 Modified Files: seahorse-adventures.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seahorse-adventures.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse-adventures/devel/seahorse-adventures.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- seahorse-adventures.spec 26 Feb 2009 00:15:23 -0000 1.5 +++ seahorse-adventures.spec 27 Jul 2009 04:05:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: seahorse-adventures Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Help barbie the seahorse float on bubbles to the moon Group: Amusements/Games License: GPL+ @@ -82,6 +82,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:05:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:05:56 +0000 (UTC) Subject: rpms/seahorse-plugins/devel seahorse-plugins.spec,1.27,1.28 Message-ID: <20090727040556.C3CA211C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seahorse-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1531 Modified Files: seahorse-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seahorse-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/seahorse-plugins/devel/seahorse-plugins.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- seahorse-plugins.spec 19 Jul 2009 02:33:38 -0000 1.27 +++ seahorse-plugins.spec 27 Jul 2009 04:05:56 -0000 1.28 @@ -1,6 +1,6 @@ Name: seahorse-plugins Version: 2.27.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Plugins and utilities for encryption in GNOME Group: User Interface/Desktops License: GPLv2+ and GFDL @@ -173,6 +173,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.27.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen 2.27.1-2 - Temporarily drop epiphany extension From jkeating at fedoraproject.org Mon Jul 27 04:06:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:06:14 +0000 (UTC) Subject: rpms/sear/devel sear.spec,1.12,1.13 Message-ID: <20090727040614.3ACB911C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sear/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3203 Modified Files: sear.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sear.spec =================================================================== RCS file: /cvs/pkgs/rpms/sear/devel/sear.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sear.spec 28 Feb 2009 17:12:51 -0000 1.12 +++ sear.spec 27 Jul 2009 04:06:13 -0000 1.13 @@ -1,6 +1,6 @@ Name: sear Version: 0.6.3 -Release: 13%{?dist} +Release: 14%{?dist} Summary: 3D WorldForge client Group: Amusements/Games @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Alexey Torkhov - 0.6.3-13 - Fix build with recent compilers From jkeating at fedoraproject.org Mon Jul 27 04:06:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:06:32 +0000 (UTC) Subject: rpms/sear-media/devel sear-media.spec,1.3,1.4 Message-ID: <20090727040632.5944A11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sear-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4813 Modified Files: sear-media.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sear-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/sear-media/devel/sear-media.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sear-media.spec 26 Feb 2009 00:19:23 -0000 1.3 +++ sear-media.spec 27 Jul 2009 04:06:31 -0000 1.4 @@ -1,7 +1,7 @@ Name: sear-media Version: 0.6 # No dist tag because this is large noarch game data. -Release: 5 +Release: 6 Summary: Media files for the sear worldforge client Group: Amusements/Games @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:06:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:06:48 +0000 (UTC) Subject: rpms/seaview/devel seaview.spec,1.8,1.9 Message-ID: <20090727040648.A067411C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seaview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6154 Modified Files: seaview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seaview.spec =================================================================== RCS file: /cvs/pkgs/rpms/seaview/devel/seaview.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- seaview.spec 26 Feb 2009 23:03:10 -0000 1.8 +++ seaview.spec 27 Jul 2009 04:06:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: seaview Version: 4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Graphical multiple sequence alignment editor Group: Applications/Engineering @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Christian Iseli - 4.0-1 - New upstream version - Fix GCC 4.4 compile issues From jkeating at fedoraproject.org Mon Jul 27 04:07:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:07:03 +0000 (UTC) Subject: rpms/sec/devel sec.spec,1.5,1.6 Message-ID: <20090727040703.F0CDA11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7200 Modified Files: sec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sec.spec =================================================================== RCS file: /cvs/pkgs/rpms/sec/devel/sec.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sec.spec 26 Feb 2009 00:21:13 -0000 1.5 +++ sec.spec 27 Jul 2009 04:07:02 -0000 1.6 @@ -6,7 +6,7 @@ Name: sec Version: 2.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: SEC (simple event correlator) Group: System Environment/Daemons @@ -193,6 +193,9 @@ rm -rf $RPM_BUILD_ROOT ################################################################################ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:07:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:07:19 +0000 (UTC) Subject: rpms/sectool/devel sectool.spec,1.30,1.31 Message-ID: <20090727040719.3930811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sectool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7403 Modified Files: sectool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sectool.spec =================================================================== RCS file: /cvs/pkgs/rpms/sectool/devel/sectool.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- sectool.spec 14 Jul 2009 13:26:02 -0000 1.30 +++ sectool.spec 27 Jul 2009 04:07:18 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A security audit system and intrusion detection system Name: sectool Version: 0.9.3 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://hosted.fedoraproject.org/sectool/wiki/WikiStart Source0: %{name}-%{version}.tar.bz2 Source1: sectool.log @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Peter Vrabec - 0.9.3-2 - handle ext4 fs in filesystem test (#510646) From jkeating at fedoraproject.org Mon Jul 27 04:07:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:07:37 +0000 (UTC) Subject: rpms/sed/devel sed.spec,1.48,1.49 Message-ID: <20090727040737.0C45111C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7622 Modified Files: sed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sed.spec =================================================================== RCS file: /cvs/pkgs/rpms/sed/devel/sed.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sed.spec 1 Jul 2009 10:42:17 -0000 1.48 +++ sed.spec 27 Jul 2009 04:07:36 -0000 1.49 @@ -6,7 +6,7 @@ Summary: A GNU stream text editor Name: sed Version: 4.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Text URL: http://sed.sourceforge.net/ @@ -66,6 +66,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Jiri Moskovcak - 4.2.1-1 - new version - obsoletes previous patches From jkeating at fedoraproject.org Mon Jul 27 04:07:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:07:51 +0000 (UTC) Subject: rpms/seedit/devel seedit.spec,1.20,1.21 Message-ID: <20090727040751.8435711C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seedit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8806 Modified Files: seedit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seedit.spec =================================================================== RCS file: /cvs/pkgs/rpms/seedit/devel/seedit.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- seedit.spec 15 Jun 2009 09:57:21 -0000 1.20 +++ seedit.spec 27 Jul 2009 04:07:51 -0000 1.21 @@ -16,7 +16,7 @@ Name: seedit Version: 2.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: SELinux Policy Editor:Core component Group: System Environment/Base License: GPLv2+ @@ -171,6 +171,9 @@ X based GUI for SELinux Policy Editor %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Michael Schwendt - 2.2.0-6 - Include unowned directory /etc/seedit in seedit-policy pkg (#474601). From jkeating at fedoraproject.org Mon Jul 27 04:08:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:08:05 +0000 (UTC) Subject: rpms/seekwatcher/devel seekwatcher.spec,1.6,1.7 Message-ID: <20090727040805.8576811C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seekwatcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10659 Modified Files: seekwatcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seekwatcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/seekwatcher/devel/seekwatcher.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- seekwatcher.spec 30 Jun 2009 15:48:57 -0000 1.6 +++ seekwatcher.spec 27 Jul 2009 04:08:05 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Utility for visualizing block layer IO patterns and performance Name: seekwatcher Version: 0.12 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 BuildArch: noarch Group: Development/System @@ -43,6 +43,9 @@ rm -rf %{buildroot} /usr/bin/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Eric Sandeen - 0.12-3 - Updates for new matplotlib From jkeating at fedoraproject.org Mon Jul 27 04:08:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:08:19 +0000 (UTC) Subject: rpms/selinux-doc/devel selinux-doc.spec,1.29,1.30 Message-ID: <20090727040819.AC97511C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/selinux-doc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12801 Modified Files: selinux-doc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: selinux-doc.spec =================================================================== RCS file: /cvs/pkgs/rpms/selinux-doc/devel/selinux-doc.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- selinux-doc.spec 26 Feb 2009 00:26:12 -0000 1.29 +++ selinux-doc.spec 27 Jul 2009 04:08:19 -0000 1.30 @@ -1,7 +1,7 @@ Summary: SELinux documentation Name: selinux-doc Version: 1.26 -Release: 4 +Release: 5 # Note that this isn't a vague statement of Public Use. # This is a specific license, called "Public Use". # See: http://fedoraproject.org/wiki/Licensing/PublicUseLicense @@ -66,6 +66,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc /usr/share/doc/%{name}-%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:08:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:08:37 +0000 (UTC) Subject: rpms/sems/devel sems.spec,1.6,1.7 Message-ID: <20090727040837.1F8DC11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sems/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15365 Modified Files: sems.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sems.spec =================================================================== RCS file: /cvs/pkgs/rpms/sems/devel/sems.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sems.spec 15 Jul 2009 12:27:14 -0000 1.6 +++ sems.spec 27 Jul 2009 04:08:36 -0000 1.7 @@ -1,7 +1,7 @@ Summary: SIP Express Media Server, an extensible SIP media server Name: sems Version: 1.1.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.iptel.org/sems # wget http://ftp.iptel.org/pub/sems/sems-1.1.1.tar.gz # tar zx --exclude iLBC_rfc3951 -f sems-1.1.1.tar.gz @@ -545,6 +545,9 @@ fi %{_libdir}/%{name}/plug-in/xmlrpc2di.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 J?n ONDREJ (SAL) - 1.1.1-2 - disabled py_sems (python) subpackage until upstream fixes sip-4.8 compatibility From jkeating at fedoraproject.org Mon Jul 27 04:10:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:10:14 +0000 (UTC) Subject: rpms/seq24/devel seq24.spec,1.11,1.12 Message-ID: <20090727041014.3CA0011C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/seq24/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3969 Modified Files: seq24.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: seq24.spec =================================================================== RCS file: /cvs/pkgs/rpms/seq24/devel/seq24.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- seq24.spec 26 Feb 2009 00:30:32 -0000 1.11 +++ seq24.spec 27 Jul 2009 04:10:13 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Real-time midi sequencer Name: seq24 Version: 0.8.7 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.filter24.org/seq24/ @@ -72,6 +72,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/64x64/apps/seq24.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.7-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.7-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:10:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:10:31 +0000 (UTC) Subject: rpms/ser/devel ser.spec,1.16,1.17 Message-ID: <20090727041031.CD17011C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7243 Modified Files: ser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ser.spec =================================================================== RCS file: /cvs/pkgs/rpms/ser/devel/ser.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- ser.spec 26 Feb 2009 00:31:35 -0000 1.16 +++ ser.spec 27 Jul 2009 04:10:31 -0000 1.17 @@ -8,7 +8,7 @@ Summary: SIP Express Router Name: ser Version: 0.9.6 -Release: 17%{?dist} +Release: 18%{?dist} License: GPLv2+ Group: System Environment/Daemons Source0: http://ftp.iptel.org/pub/ser/latest/src/ser-%{version}_src.tar.gz @@ -216,6 +216,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:10:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:10:56 +0000 (UTC) Subject: rpms/ser2net/devel ser2net.spec,1.7,1.8 Message-ID: <20090727041056.A50CC11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ser2net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8751 Modified Files: ser2net.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ser2net.spec =================================================================== RCS file: /cvs/pkgs/rpms/ser2net/devel/ser2net.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ser2net.spec 22 Jul 2009 22:40:27 -0000 1.7 +++ ser2net.spec 27 Jul 2009 04:10:56 -0000 1.8 @@ -1,7 +1,7 @@ Name: ser2net Summary: Proxy that allows tcp connections to serial ports Version: 2.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Source0: http://download.sourceforge.net/ser2net/%{name}-%{version}.tar.gz @@ -62,6 +62,9 @@ fi %{_mandir}/man8/ser2net* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 2.6-1 - update to 2.6 From jkeating at fedoraproject.org Mon Jul 27 04:11:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:11:15 +0000 (UTC) Subject: rpms/serafettin-cartoon-fonts/devel serafettin-cartoon-fonts.spec, 1.4, 1.5 Message-ID: <20090727041115.1BA9511C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/serafettin-cartoon-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10097 Modified Files: serafettin-cartoon-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: serafettin-cartoon-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/serafettin-cartoon-fonts/devel/serafettin-cartoon-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- serafettin-cartoon-fonts.spec 15 Mar 2009 20:17:23 -0000 1.4 +++ serafettin-cartoon-fonts.spec 27 Jul 2009 04:11:14 -0000 1.5 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sans-serif Cartoon Fonts Group: User Interface/X License: GPLv2+ @@ -56,6 +56,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 0.5.1-2 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Mon Jul 27 04:11:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:11:34 +0000 (UTC) Subject: rpms/sergueis-destiny/devel sergueis-destiny.spec,1.2,1.3 Message-ID: <20090727041134.4D7C411C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sergueis-destiny/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10803 Modified Files: sergueis-destiny.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sergueis-destiny.spec =================================================================== RCS file: /cvs/pkgs/rpms/sergueis-destiny/devel/sergueis-destiny.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sergueis-destiny.spec 26 Feb 2009 00:34:18 -0000 1.2 +++ sergueis-destiny.spec 27 Jul 2009 04:11:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: sergueis-destiny Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Serguei's Destiny, an AGI adventure game Group: Amusements/Games @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/sergueis-destiny-wrapper.sh %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:11:49 +0000 (UTC) Subject: rpms/serpentine/devel serpentine.spec,1.14,1.15 Message-ID: <20090727041149.0E3DD11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/serpentine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12273 Modified Files: serpentine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: serpentine.spec =================================================================== RCS file: /cvs/pkgs/rpms/serpentine/devel/serpentine.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- serpentine.spec 26 Feb 2009 00:35:08 -0000 1.14 +++ serpentine.spec 27 Jul 2009 04:11:48 -0000 1.15 @@ -2,7 +2,7 @@ Name: serpentine Version: 0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Audio CD Burner Group: Applications/Multimedia @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:12:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:12:01 +0000 (UTC) Subject: rpms/setools/devel setools.spec,1.89,1.90 Message-ID: <20090727041201.E260111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14201 Modified Files: setools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setools.spec =================================================================== RCS file: /cvs/pkgs/rpms/setools/devel/setools.spec,v retrieving revision 1.89 retrieving revision 1.90 diff -u -p -r1.89 -r1.90 --- setools.spec 22 Jul 2009 18:59:21 -0000 1.89 +++ setools.spec 27 Jul 2009 04:12:01 -0000 1.90 @@ -5,7 +5,7 @@ Name: setools Version: %{setools_maj_ver}.%{setools_min_ver} -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: http://oss.tresys.com/projects/setools BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -344,6 +344,9 @@ rm -rf ${RPM_BUILD_ROOT} %postun libs-tcl -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Chris PeBenito 3.3.6-1 - New upstream release. From jkeating at fedoraproject.org Mon Jul 27 04:12:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:12:21 +0000 (UTC) Subject: rpms/setroubleshoot/devel setroubleshoot.spec,1.148,1.149 Message-ID: <20090727041221.68D5811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14354 Modified Files: setroubleshoot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setroubleshoot.spec =================================================================== RCS file: /cvs/pkgs/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.148 retrieving revision 1.149 diff -u -p -r1.148 -r1.149 --- setroubleshoot.spec 21 Jul 2009 21:29:05 -0000 1.148 +++ setroubleshoot.spec 27 Jul 2009 04:12:20 -0000 1.149 @@ -1,7 +1,7 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot Version: 2.2.16 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot @@ -209,6 +209,9 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Dan Walsh - 2.2.16-1 - Fix sesearch handling From jkeating at fedoraproject.org Mon Jul 27 04:12:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:12:50 +0000 (UTC) Subject: rpms/setroubleshoot-plugins/devel setroubleshoot-plugins.spec, 1.32, 1.33 Message-ID: <20090727041250.2A35E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setroubleshoot-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14586 Modified Files: setroubleshoot-plugins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setroubleshoot-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/setroubleshoot-plugins/devel/setroubleshoot-plugins.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- setroubleshoot-plugins.spec 19 Jul 2009 11:07:33 -0000 1.32 +++ setroubleshoot-plugins.spec 27 Jul 2009 04:12:49 -0000 1.33 @@ -1,7 +1,7 @@ Summary: Analysis plugins for use with setroubleshoot Name: setroubleshoot-plugins Version: 2.1.11 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_datadir}/setroubleshoot/plugins %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 - 2.1.11-1 - Remove allow_default_t boolean - Fix global_ssp.py to report boolean name From jkeating at fedoraproject.org Mon Jul 27 04:13:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:13:04 +0000 (UTC) Subject: rpms/setserial/devel setserial.spec,1.22,1.23 Message-ID: <20090727041304.9A8B611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14807 Modified Files: setserial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setserial.spec =================================================================== RCS file: /cvs/pkgs/rpms/setserial/devel/setserial.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- setserial.spec 26 Feb 2009 00:38:59 -0000 1.22 +++ setserial.spec 27 Jul 2009 04:13:04 -0000 1.23 @@ -3,7 +3,7 @@ Summary: A utility for configuring serial ports Name: setserial Version: 2.17 -Release: 23%{?dist} +Release: 24%{?dist} Source: http://dl.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz Patch0: setserial-2.17-fhs.patch Patch1: setserial-2.17-rc.patch @@ -50,6 +50,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.17-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.17-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:13:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:13:20 +0000 (UTC) Subject: rpms/setup/devel setup.spec,1.82,1.83 Message-ID: <20090727041320.B814C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14978 Modified Files: setup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setup.spec =================================================================== RCS file: /cvs/pkgs/rpms/setup/devel/setup.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- setup.spec 21 Jul 2009 12:47:40 -0000 1.82 +++ setup.spec 27 Jul 2009 04:13:20 -0000 1.83 @@ -1,7 +1,7 @@ Summary: A set of system configuration and setup files Name: setup Version: 2.8.7 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain Group: System Environment/Base URL: https://fedorahosted.org/setup/ @@ -89,6 +89,9 @@ end %ghost %verify(not md5 size mtime) %config(noreplace,missingok) /etc/mtab %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Ondrej Vasik 2.8.7-1 - increase threshold for uidgid reservations to 200 - reserve uidgid pair 107:107 for qemu (libvirt,#511957) From jkeating at fedoraproject.org Mon Jul 27 04:13:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:13:35 +0000 (UTC) Subject: rpms/setuptool/devel setuptool.spec,1.35,1.36 Message-ID: <20090727041335.17BEE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/setuptool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15129 Modified Files: setuptool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: setuptool.spec =================================================================== RCS file: /cvs/pkgs/rpms/setuptool/devel/setuptool.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- setuptool.spec 9 Mar 2009 13:25:25 -0000 1.35 +++ setuptool.spec 27 Jul 2009 04:13:34 -0000 1.36 @@ -1,6 +1,6 @@ Name: setuptool Version: 1.19.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A text mode system configuration tool License: GPLv2+ Group: Applications/System @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/setuptool.d/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.19.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Michal Hlavinka - 1.19.5-2 - fix buildrequires From jkeating at fedoraproject.org Mon Jul 27 04:13:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:13:49 +0000 (UTC) Subject: rpms/sextractor/devel sextractor.spec,1.11,1.12 Message-ID: <20090727041349.9010C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sextractor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15272 Modified Files: sextractor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sextractor.spec =================================================================== RCS file: /cvs/pkgs/rpms/sextractor/devel/sextractor.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sextractor.spec 26 Feb 2009 00:42:23 -0000 1.11 +++ sextractor.spec 27 Jul 2009 04:13:48 -0000 1.12 @@ -1,6 +1,6 @@ Name: sextractor Version: 2.5.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Extract catalogs of sources from astronomical images Group: Applications/Engineering @@ -45,6 +45,9 @@ well on moderately crowded star fields. %{_datadir}/%{name}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:14:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:14:06 +0000 (UTC) Subject: rpms/sfxr/devel sfxr.spec,1.2,1.3 Message-ID: <20090727041406.939C911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sfxr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15442 Modified Files: sfxr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sfxr.spec =================================================================== RCS file: /cvs/pkgs/rpms/sfxr/devel/sfxr.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sfxr.spec 26 Feb 2009 00:43:19 -0000 1.2 +++ sfxr.spec 27 Jul 2009 04:14:06 -0000 1.3 @@ -1,6 +1,6 @@ Name: sfxr Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sound effect generator Group: Applications/Multimedia License: MIT @@ -59,6 +59,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:14:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:14:24 +0000 (UTC) Subject: rpms/sg3_utils/devel sg3_utils.spec,1.28,1.29 Message-ID: <20090727041424.9A5B511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sg3_utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15660 Modified Files: sg3_utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sg3_utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/sg3_utils/devel/sg3_utils.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sg3_utils.spec 28 Apr 2009 13:07:49 -0000 1.28 +++ sg3_utils.spec 27 Jul 2009 04:14:24 -0000 1.29 @@ -3,7 +3,7 @@ Summary: Utilities for devices that use SCSI command sets Name: sg3_utils Version: 1.27 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and BSD Group: Applications/System Source0: http://sg.danny.cz/sg/p/sg3_utils-%{version}.tgz @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Dan Hor?k - 1.27-1 - update to version 1.27 - changelog: http://sg.danny.cz/sg/p/sg3_utils.ChangeLog From jkeating at fedoraproject.org Mon Jul 27 04:14:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:14:37 +0000 (UTC) Subject: rpms/sgml-common/devel sgml-common.spec,1.27,1.28 Message-ID: <20090727041437.0D2BD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sgml-common/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15823 Modified Files: sgml-common.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sgml-common.spec =================================================================== RCS file: /cvs/pkgs/rpms/sgml-common/devel/sgml-common.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sgml-common.spec 28 May 2009 08:20:49 -0000 1.27 +++ sgml-common.spec 27 Jul 2009 04:14:36 -0000 1.28 @@ -1,6 +1,6 @@ Name: sgml-common Version: 0.6.3 -Release: 29%{?dist} +Release: 30%{?dist} Group: Applications/Text Summary: Common SGML catalog and DTD files @@ -143,6 +143,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Ondrej Vasik 0.6.3-29 - do own /etc/sgml/catalog From jkeating at fedoraproject.org Mon Jul 27 04:15:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:15:37 +0000 (UTC) Subject: rpms/shapelib/devel shapelib.spec,1.15,1.16 Message-ID: <20090727041537.1322011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shapelib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16328 Modified Files: shapelib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shapelib.spec =================================================================== RCS file: /cvs/pkgs/rpms/shapelib/devel/shapelib.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- shapelib.spec 26 Feb 2009 00:47:29 -0000 1.15 +++ shapelib.spec 27 Jul 2009 04:15:35 -0000 1.16 @@ -2,7 +2,7 @@ Summary: API in "C" for Shapefile handling Name: shapelib Version: 1.2.10 -Release: 19.20060304cvs +Release: 20.20060304cvs URL: http://shapelib.maptools.org/ Source: http://shapelib.maptools.org/dl/shapelib-%{version}.tar.gz Patch0: shapelib-1.2.10-Makefile.patch @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/libshp.la %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.10-20.20060304cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.10-19.20060304cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:15:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:15:52 +0000 (UTC) Subject: rpms/shared-mime-info/devel shared-mime-info.spec,1.79,1.80 Message-ID: <20090727041552.4C5FB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shared-mime-info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16567 Modified Files: shared-mime-info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shared-mime-info.spec =================================================================== RCS file: /cvs/pkgs/rpms/shared-mime-info/devel/shared-mime-info.spec,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- shared-mime-info.spec 4 Mar 2009 12:30:24 -0000 1.79 +++ shared-mime-info.spec 27 Jul 2009 04:15:51 -0000 1.80 @@ -1,7 +1,7 @@ Summary: Shared MIME information database Name: shared-mime-info Version: 0.60 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://freedesktop.org/Software/shared-mime-info @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.60-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 - Bastien Nocera - 0.60-3 - Remove Totem as handling Blu-ray and HD-DVD - Use brasero-ncb.desktop instead of nautilus-cd-burner for blank devices From jkeating at fedoraproject.org Mon Jul 27 04:16:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:16:06 +0000 (UTC) Subject: rpms/sharutils/devel sharutils.spec,1.33,1.34 Message-ID: <20090727041606.336AD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sharutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16737 Modified Files: sharutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sharutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/sharutils/devel/sharutils.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- sharutils.spec 26 Feb 2009 00:49:36 -0000 1.33 +++ sharutils.spec 27 Jul 2009 04:16:05 -0000 1.34 @@ -1,7 +1,7 @@ Summary: The GNU shar utilities for packaging and unpackaging shell archives Name: sharutils Version: 4.7 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3+ Group: Applications/Archiving Source: ftp://ftp.gnu.org/gnu/sharutils/REL-%{version}/sharutils-%{version}.tar.bz2 @@ -68,6 +68,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man5/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:16:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:16:18 +0000 (UTC) Subject: rpms/shcov/devel shcov.spec,1.3,1.4 Message-ID: <20090727041618.4904A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shcov/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16893 Modified Files: shcov.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shcov.spec =================================================================== RCS file: /cvs/pkgs/rpms/shcov/devel/shcov.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- shcov.spec 26 Feb 2009 00:50:45 -0000 1.3 +++ shcov.spec 27 Jul 2009 04:16:18 -0000 1.4 @@ -2,7 +2,7 @@ Name: shcov Version: 4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A gcov and lcov coverage test tool for bourne shell / bash scripts Group: Applications/System @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:16:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:16:29 +0000 (UTC) Subject: rpms/shed/devel shed.spec,1.6,1.7 Message-ID: <20090727041629.72EEE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17042 Modified Files: shed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shed.spec =================================================================== RCS file: /cvs/pkgs/rpms/shed/devel/shed.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- shed.spec 21 Apr 2009 16:32:10 -0000 1.6 +++ shed.spec 27 Jul 2009 04:16:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: shed Version: 1.15 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Easy to use hex editor Group: Applications/Editors @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Adam Miller - 1.15-3 - Patched the configure cflags From jkeating at fedoraproject.org Mon Jul 27 04:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:16:42 +0000 (UTC) Subject: rpms/shippy/devel shippy.spec,1.8,1.9 Message-ID: <20090727041642.7571A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shippy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17220 Modified Files: shippy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shippy.spec =================================================================== RCS file: /cvs/pkgs/rpms/shippy/devel/shippy.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- shippy.spec 26 Feb 2009 00:52:43 -0000 1.8 +++ shippy.spec 27 Jul 2009 04:16:42 -0000 1.9 @@ -1,6 +1,6 @@ Name: shippy Version: 1.3.3.7 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Space invaders / Galaxians like game with powerups Group: Amusements/Games License: GPL+ @@ -124,6 +124,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.3.7-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:16:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:16:54 +0000 (UTC) Subject: rpms/shntool/devel shntool.spec,1.1,1.2 Message-ID: <20090727041654.310E111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shntool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17361 Modified Files: shntool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shntool.spec =================================================================== RCS file: /cvs/pkgs/rpms/shntool/devel/shntool.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- shntool.spec 10 Apr 2009 16:46:53 -0000 1.1 +++ shntool.spec 27 Jul 2009 04:16:54 -0000 1.2 @@ -1,6 +1,6 @@ Name: shntool Version: 3.0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A multi-purpose WAVE data processing and reporting utility Group: Applications/Multimedia @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Felix Kaechele - 3.0.10-1 - 3.0.10 From jkeating at fedoraproject.org Mon Jul 27 04:17:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:17:16 +0000 (UTC) Subject: rpms/shortrpm/devel shortrpm.spec,1.2,1.3 Message-ID: <20090727041716.C88CE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shortrpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17646 Modified Files: shortrpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shortrpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/shortrpm/devel/shortrpm.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- shortrpm.spec 29 Apr 2009 07:07:46 -0000 1.2 +++ shortrpm.spec 27 Jul 2009 04:17:16 -0000 1.3 @@ -1,6 +1,6 @@ Name: shortrpm Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Short-circuit binary RPM package build Group: Development/Tools @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Lubomir Rintel - 1.1-1 - New upstream release - Fix mis-compilation with newer glibc From jkeating at fedoraproject.org Mon Jul 27 04:17:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:17:27 +0000 (UTC) Subject: rpms/showimg/devel showimg.spec,1.28,1.29 Message-ID: <20090727041727.D2FCD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/showimg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17782 Modified Files: showimg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: showimg.spec =================================================================== RCS file: /cvs/pkgs/rpms/showimg/devel/showimg.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- showimg.spec 18 Jul 2009 20:52:19 -0000 1.28 +++ showimg.spec 27 Jul 2009 04:17:27 -0000 1.29 @@ -1,6 +1,6 @@ Name: showimg Version: 0.9.5 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Feature-rich image viewer for KDE Group: Applications/Multimedia @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Aurelien Bompard 0.9.5-23 - rebuild From jkeating at fedoraproject.org Mon Jul 27 04:17:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:17:41 +0000 (UTC) Subject: rpms/shtool/devel shtool.spec,1.1,1.2 Message-ID: <20090727041741.593B711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17937 Modified Files: shtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/shtool/devel/shtool.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- shtool.spec 28 Mar 2009 21:12:17 -0000 1.1 +++ shtool.spec 27 Jul 2009 04:17:41 -0000 1.2 @@ -1,6 +1,6 @@ Name: shtool Version: 2.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable shell tool Group: Applications/System @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Fabian Affolter - 2.0.8-2 - Added test suite From jkeating at fedoraproject.org Mon Jul 27 04:17:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:17:57 +0000 (UTC) Subject: rpms/siege/devel siege.spec,1.9,1.10 Message-ID: <20090727041757.235FC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/siege/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18126 Modified Files: siege.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: siege.spec =================================================================== RCS file: /cvs/pkgs/rpms/siege/devel/siege.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- siege.spec 4 Jul 2009 14:28:06 -0000 1.9 +++ siege.spec 27 Jul 2009 04:17:56 -0000 1.10 @@ -1,6 +1,6 @@ Name: siege Version: 2.69 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTTP regression testing and benchmarking utility Group: Development/Tools @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/siege/siegerc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.69-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 4 2009 Allisson Azevedo 2.69-1 - Update to 2.69 - Update Makefile.in patch From jkeating at fedoraproject.org Mon Jul 27 04:18:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:18:11 +0000 (UTC) Subject: rpms/sigen/devel sigen.spec,1.9,1.10 Message-ID: <20090727041811.697F811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18284 Modified Files: sigen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sigen.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigen/devel/sigen.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sigen.spec 5 Mar 2009 22:59:21 -0000 1.9 +++ sigen.spec 27 Jul 2009 04:18:11 -0000 1.10 @@ -1,6 +1,6 @@ Name: sigen Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An RPG/strategy engine Group: Amusements/Games @@ -124,6 +124,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Ben Boeckel 0.1.1-1 - Update to release 0.1.1 - Fix Requires From jkeating at fedoraproject.org Mon Jul 27 04:18:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:18:23 +0000 (UTC) Subject: rpms/sigscheme/devel sigscheme.spec,1.3,1.4 Message-ID: <20090727041823.4A71E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sigscheme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18473 Modified Files: sigscheme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sigscheme.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigscheme/devel/sigscheme.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sigscheme.spec 26 Feb 2009 00:58:20 -0000 1.3 +++ sigscheme.spec 27 Jul 2009 04:18:23 -0000 1.4 @@ -1,6 +1,6 @@ Name: sigscheme Version: 0.8.3 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD URL: http://code.google.com/p/sigscheme/wiki/SigScheme BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/sigscheme.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:18:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:18:35 +0000 (UTC) Subject: rpms/sil-andika-fonts/devel sil-andika-fonts.spec,1.4,1.5 Message-ID: <20090727041835.E658211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-andika-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18616 Modified Files: sil-andika-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-andika-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-andika-fonts/devel/sil-andika-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sil-andika-fonts.spec 26 Feb 2009 00:59:09 -0000 1.4 +++ sil-andika-fonts.spec 27 Jul 2009 04:18:35 -0000 1.5 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A font for literacy and beginning readers Group: User Interface/X @@ -82,6 +82,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:18:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:18:46 +0000 (UTC) Subject: rpms/sil-charis-compact-fonts/devel sil-charis-compact-fonts.spec, 1.1, 1.2 Message-ID: <20090727041846.B669511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-charis-compact-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18765 Modified Files: sil-charis-compact-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-charis-compact-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-charis-compact-fonts/devel/sil-charis-compact-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sil-charis-compact-fonts.spec 27 May 2009 19:10:45 -0000 1.1 +++ sil-charis-compact-fonts.spec 27 Jul 2009 04:18:46 -0000 1.2 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 4.106 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A version of Charis SIL with tighter line spacing Group: User Interface/X @@ -74,6 +74,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.106-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 - 4.106-1 ? Initial release From jkeating at fedoraproject.org Mon Jul 27 04:18:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:18:57 +0000 (UTC) Subject: rpms/sil-charis-fonts/devel sil-charis-fonts.spec,1.6,1.7 Message-ID: <20090727041857.BED4A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-charis-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18920 Modified Files: sil-charis-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-charis-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-charis-fonts/devel/sil-charis-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sil-charis-fonts.spec 27 May 2009 19:06:00 -0000 1.6 +++ sil-charis-fonts.spec 27 Jul 2009 04:18:57 -0000 1.7 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 4.106 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A serif smart font similar to Bitstream Charter Group: User Interface/X @@ -70,6 +70,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.106-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 - 4.106-2 ? Propose Charis SIL as substitute to Charis SIL Compact when it's not available From jkeating at fedoraproject.org Mon Jul 27 04:19:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:19:08 +0000 (UTC) Subject: rpms/sil-doulos-fonts/devel sil-doulos-fonts.spec,1.2,1.3 Message-ID: <20090727041908.AC64311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-doulos-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19052 Modified Files: sil-doulos-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-doulos-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-doulos-fonts/devel/sil-doulos-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sil-doulos-fonts.spec 26 Feb 2009 01:00:52 -0000 1.2 +++ sil-doulos-fonts.spec 27 Jul 2009 04:19:08 -0000 1.3 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 4.104 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Doulos SIL fonts Group: User Interface/X @@ -56,6 +56,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.104-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.104-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:19:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:19:19 +0000 (UTC) Subject: rpms/sil-gentium-basic-fonts/devel sil-gentium-basic-fonts.spec, 1.2, 1.3 Message-ID: <20090727041919.C2CF011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-gentium-basic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19186 Modified Files: sil-gentium-basic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-gentium-basic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-gentium-basic-fonts/devel/sil-gentium-basic-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sil-gentium-basic-fonts.spec 26 Feb 2009 01:02:03 -0000 1.2 +++ sil-gentium-basic-fonts.spec 27 Jul 2009 04:19:19 -0000 1.3 @@ -12,7 +12,7 @@ characters, with miscellaneous diacritic Name: %{fontname}-fonts Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Gentium Basic Font Family from SIL Group: User Interface/X @@ -107,6 +107,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:19:31 +0000 (UTC) Subject: rpms/sil-gentium-fonts/devel sil-gentium-fonts.spec,1.2,1.3 Message-ID: <20090727041931.67F0B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sil-gentium-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19314 Modified Files: sil-gentium-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sil-gentium-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sil-gentium-fonts/devel/sil-gentium-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sil-gentium-fonts.spec 26 Feb 2009 01:03:00 -0000 1.2 +++ sil-gentium-fonts.spec 27 Jul 2009 04:19:31 -0000 1.3 @@ -9,7 +9,7 @@ a wide range of Latin-based alphabets. Name: %{fontname}-fonts Version: 1.02 -Release: 9%{?dist} +Release: 10%{?dist} Summary: SIL Gentium fonts Group: User Interface/X @@ -99,6 +99,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.02-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.02-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:19:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:19:44 +0000 (UTC) Subject: rpms/silkscreen-fonts/devel silkscreen-fonts.spec,1.3,1.4 Message-ID: <20090727041944.228F911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/silkscreen-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19458 Modified Files: silkscreen-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: silkscreen-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/silkscreen-fonts/devel/silkscreen-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- silkscreen-fonts.spec 26 Feb 2009 01:03:56 -0000 1.3 +++ silkscreen-fonts.spec 27 Jul 2009 04:19:43 -0000 1.4 @@ -12,7 +12,7 @@ multiples (8pt., 16pt., 24pt., etc.) wit Name: %{fontname}-fonts Summary: Silkscreen four member type family Version: 1.0 -Release: 3%{?dist} +Release: 4%{?dist} # License attribution confirmed by author and Open Font Library # http://openfontlibrary.org/media/files/jkottke/218 License: OFL @@ -80,6 +80,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:19:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:19:55 +0000 (UTC) Subject: rpms/silo/devel silo.spec,1.3,1.4 Message-ID: <20090727041955.016F411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/silo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19583 Modified Files: silo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: silo.spec =================================================================== RCS file: /cvs/pkgs/rpms/silo/devel/silo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- silo.spec 26 Feb 2009 01:05:00 -0000 1.3 +++ silo.spec 27 Jul 2009 04:19:54 -0000 1.4 @@ -1,7 +1,7 @@ Summary: The SILO boot loader for SPARCs Name: silo Version: 1.4.13 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ ExclusiveArch: sparcv9 Group: System Environment/Base @@ -67,6 +67,9 @@ echo "You probably want to run /sbin/sil %{_mandir}/man8/silo.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.13-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.13-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:20:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:20:06 +0000 (UTC) Subject: rpms/sim/devel sim.spec,1.13,1.14 Message-ID: <20090727042006.2452F11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19725 Modified Files: sim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sim.spec =================================================================== RCS file: /cvs/pkgs/rpms/sim/devel/sim.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sim.spec 18 Jun 2009 11:54:42 -0000 1.13 +++ sim.spec 27 Jul 2009 04:20:05 -0000 1.14 @@ -4,7 +4,7 @@ Name: sim Version: 0.9.5 -Release: 0.17.%{SVNdate}svn%{SVNrev}rev%{?dist} +Release: 0.18.%{SVNdate}svn%{SVNrev}rev%{?dist} #svn export -r %{SVNrev} svn://svn.berlios.de/sim-im/trunk; find -iname '*win32*' -exec rm -r {} \; ; tar -cjf '%{name}-%{version}-SVN%{SVNdate}rev%{SVNrev}.tar.bz2' trunk Source0: %{name}-%{version}-SVN%{SVNdate}rev%{SVNrev}.tar.bz2 Summary: Multiprotocol Instant Messenger @@ -140,6 +140,9 @@ fi %{_datadir}/services/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-0.18.20090616svn2730rev +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Pavel Alexeev - 0.9.5-0.17.20090616svn2730rev - Fix FBFS on mass-rebuild in Fedora 12 ( http://article.gmane.org/gmane.linux.redhat.fedora.devel/114737 ) - Update to fresh svn. From jkeating at fedoraproject.org Mon Jul 27 04:20:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:20:21 +0000 (UTC) Subject: rpms/simcoupe/devel simcoupe.spec,1.2,1.3 Message-ID: <20090727042021.29D4311C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/simcoupe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19889 Modified Files: simcoupe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: simcoupe.spec =================================================================== RCS file: /cvs/pkgs/rpms/simcoupe/devel/simcoupe.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- simcoupe.spec 26 Feb 2009 01:08:01 -0000 1.2 +++ simcoupe.spec 27 Jul 2009 04:20:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: simcoupe Version: 1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SAM Coupe emulator (spectrum compatible) Group: Applications/Emulators License: GPLv2+ @@ -96,6 +96,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:20:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:20:32 +0000 (UTC) Subject: rpms/simdock/devel simdock.spec,1.5,1.6 Message-ID: <20090727042032.42FC711C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/simdock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20055 Modified Files: simdock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: simdock.spec =================================================================== RCS file: /cvs/pkgs/rpms/simdock/devel/simdock.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- simdock.spec 5 May 2009 16:49:40 -0000 1.5 +++ simdock.spec 27 Jul 2009 04:20:32 -0000 1.6 @@ -1,7 +1,7 @@ Name: simdock Summary: Fast and customizable dockbar Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: User Interface/Desktops URL: http://simdock.sourceforge.net/ @@ -56,6 +56,9 @@ desktop-file-install --dir %{buildroot}% %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Terje Rosten - 1.2.6 - Convert spec to utf8 From jkeating at fedoraproject.org Mon Jul 27 04:20:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:20:46 +0000 (UTC) Subject: rpms/simplyhtml/devel simplyhtml.spec,1.5,1.6 Message-ID: <20090727042046.042CA11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/simplyhtml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20200 Modified Files: simplyhtml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: simplyhtml.spec =================================================================== RCS file: /cvs/pkgs/rpms/simplyhtml/devel/simplyhtml.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- simplyhtml.spec 5 Mar 2009 07:18:49 -0000 1.5 +++ simplyhtml.spec 27 Jul 2009 04:20:45 -0000 1.6 @@ -3,7 +3,7 @@ Name: simplyhtml Version: 0.12.5 -Release: 9%{?dist} +Release: 10%{?dist} Epoch: 0 Summary: Application and a java component for rich text processing # All files are GPL except for src/com/sun/demo/ElementTreePanel.java which has @@ -177,6 +177,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:0.12.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 5 2009 John Guthrie 0:0.12.5-9 - Adding a version specification to the java-devel BuildRequirement so that java-1.6.0-openjdk-devel-1.6.0.0 will get included in the build environment. From jkeating at fedoraproject.org Mon Jul 27 04:20:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:20:58 +0000 (UTC) Subject: rpms/simspark/devel simspark.spec,1.2,1.3 Message-ID: <20090727042058.8EE1411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/simspark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20375 Modified Files: simspark.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: simspark.spec =================================================================== RCS file: /cvs/pkgs/rpms/simspark/devel/simspark.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- simspark.spec 8 May 2009 13:55:55 -0000 1.2 +++ simspark.spec 27 Jul 2009 04:20:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: simspark Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Spark physical simulation system Group: Development/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %doc doc/devel/howtos doc/devel/manual.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 08 2009 Hedayat Vatanlhah 0.1-4 - Rebuild for boost 1.39 From jkeating at fedoraproject.org Mon Jul 27 04:21:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:21:12 +0000 (UTC) Subject: rpms/sing/devel sing.spec,1.2,1.3 Message-ID: <20090727042112.5889C11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20528 Modified Files: sing.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sing.spec =================================================================== RCS file: /cvs/pkgs/rpms/sing/devel/sing.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sing.spec 24 Apr 2009 20:48:08 -0000 1.2 +++ sing.spec 27 Jul 2009 04:21:11 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Sends fully customized ICMP packets from command line Name: sing Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.sourceforge.net/projects/%{name}/ @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 18 2009 Robert Scheck 1.1-1 - Upgrade to 1.1 - Initial spec file for Fedora and Red Hat Enterprise Linux From jkeating at fedoraproject.org Mon Jul 27 04:21:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:21:43 +0000 (UTC) Subject: rpms/sinjdoc/devel sinjdoc.spec,1.8,1.9 Message-ID: <20090727042143.94EF611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sinjdoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20814 Modified Files: sinjdoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sinjdoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sinjdoc/devel/sinjdoc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sinjdoc.spec 26 Feb 2009 01:10:30 -0000 1.8 +++ sinjdoc.spec 27 Jul 2009 04:21:43 -0000 1.9 @@ -1,6 +1,6 @@ Name: sinjdoc Version: 0.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Documentation generator for Java source code Group: Development/Tools @@ -78,6 +78,9 @@ fi %{_libdir}/gcj/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:21:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:21:55 +0000 (UTC) Subject: rpms/sip/devel sip.spec,1.61,1.62 Message-ID: <20090727042155.031A911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20933 Modified Files: sip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sip.spec =================================================================== RCS file: /cvs/pkgs/rpms/sip/devel/sip.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- sip.spec 16 Jun 2009 13:16:14 -0000 1.61 +++ sip.spec 27 Jul 2009 04:21:54 -0000 1.62 @@ -5,7 +5,7 @@ Summary: SIP - Python/C++ Bindings Generator Name: sip Version: 4.8.1 -Release: 1%{?dist} +Release: 2%{?dist} # http://www.riverbankcomputing.com/Docs/sip4/sipref.html#license License: Python Group: Development/Tools @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Rex Dieter - 4.8.1-1 - sip-4.8.1 From jkeating at fedoraproject.org Mon Jul 27 04:22:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:22:08 +0000 (UTC) Subject: rpms/sip-redirect/devel sip-redirect.spec,1.2,1.3 Message-ID: <20090727042208.1D84511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sip-redirect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21102 Modified Files: sip-redirect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sip-redirect.spec =================================================================== RCS file: /cvs/pkgs/rpms/sip-redirect/devel/sip-redirect.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sip-redirect.spec 23 Feb 2009 21:09:56 -0000 1.2 +++ sip-redirect.spec 27 Jul 2009 04:22:07 -0000 1.3 @@ -2,7 +2,7 @@ Summary: Tiny IPv4 and IPv6 SI Summary(de): Ein winziger, in Perl geschriebener, SIP Redirekt-Server Name: sip-redirect Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: System Environment/Daemons License: GPLv2+ URL: http://ftp.robert-scheck.de/linux/%{name}/ @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %attr(0644,sip,sip) %{_localstatedir}/log/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Robert Scheck 0.1.2-3 - Rebuild against rpm 4.6 From jkeating at fedoraproject.org Mon Jul 27 04:22:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:22:19 +0000 (UTC) Subject: rpms/sipcalc/devel sipcalc.spec,1.1,1.2 Message-ID: <20090727042219.1B2C711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sipcalc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21285 Modified Files: sipcalc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sipcalc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipcalc/devel/sipcalc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sipcalc.spec 15 Jul 2009 07:58:42 -0000 1.1 +++ sipcalc.spec 27 Jul 2009 04:22:18 -0000 1.2 @@ -1,6 +1,6 @@ Name: sipcalc Version: 1.1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An "advanced" console based ip subnet calculator Group: Applications/Internet @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{_mandir}/man1/sipcalc.1.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Gary T. Giesen 1.1.4-3 Convert ChangeLog to UTF-8 From jkeating at fedoraproject.org Mon Jul 27 04:22:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:22:30 +0000 (UTC) Subject: rpms/sipp/devel sipp.spec,1.13,1.14 Message-ID: <20090727042230.69F0D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sipp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21435 Modified Files: sipp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sipp.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipp/devel/sipp.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sipp.spec 18 Jun 2009 10:42:03 -0000 1.13 +++ sipp.spec 27 Jul 2009 04:22:30 -0000 1.14 @@ -1,7 +1,7 @@ Summary: SIP test tool / traffic generator Name: sipp Version: 3.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Communications URL: http://sipp.sourceforge.net/ @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Peter Lemenkov 3.1-5 - Fixed issue with 5-digit port numbers From jkeating at fedoraproject.org Mon Jul 27 04:22:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:22:42 +0000 (UTC) Subject: rpms/sipsak/devel sipsak.spec,1.6,1.7 Message-ID: <20090727042242.456AA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sipsak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21598 Modified Files: sipsak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sipsak.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipsak/devel/sipsak.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sipsak.spec 26 Feb 2009 01:13:41 -0000 1.6 +++ sipsak.spec 27 Jul 2009 04:22:42 -0000 1.7 @@ -1,7 +1,7 @@ Summary: SIP swiss army knife Name: sipsak Version: 0.9.6 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Communications URL: http://sipsak.org/ @@ -41,6 +41,9 @@ devices. %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:22:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:22:52 +0000 (UTC) Subject: rpms/sipwitch/devel sipwitch.spec,1.4,1.5 Message-ID: <20090727042252.C93E711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sipwitch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21730 Modified Files: sipwitch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sipwitch.spec =================================================================== RCS file: /cvs/pkgs/rpms/sipwitch/devel/sipwitch.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sipwitch.spec 13 Jul 2009 19:26:45 -0000 1.4 +++ sipwitch.spec 27 Jul 2009 04:22:52 -0000 1.5 @@ -16,7 +16,7 @@ Name: sipwitch Summary: SIP telephony server for secure phone systems Version: 0.5.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/sipwitch Group: Applications/Communications @@ -246,6 +246,9 @@ fi /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 0.5.6-1 - rebuild for new PHP 5.3.0 ABI (20090626) - add PHP ABI check From jkeating at fedoraproject.org Mon Jul 27 04:23:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:23:04 +0000 (UTC) Subject: rpms/siril/devel siril.spec,1.5,1.6 Message-ID: <20090727042304.3B41511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/siril/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21865 Modified Files: siril.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: siril.spec =================================================================== RCS file: /cvs/pkgs/rpms/siril/devel/siril.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- siril.spec 7 Apr 2009 13:58:49 -0000 1.5 +++ siril.spec 27 Jul 2009 04:23:03 -0000 1.6 @@ -1,6 +1,6 @@ Name: siril Version: 0.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Siril is an astronomical image processing software for Linux License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/siril/pixmaps/siril_1.xpm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 4 2009 Lubomir Rintel - 0.8-7 - Fix crash on incorrectly loaded pictures (#494536) From jkeating at fedoraproject.org Mon Jul 27 04:23:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:23:15 +0000 (UTC) Subject: rpms/sirius/devel sirius.spec,1.15,1.16 Message-ID: <20090727042315.3CEE311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sirius/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22007 Modified Files: sirius.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sirius.spec =================================================================== RCS file: /cvs/pkgs/rpms/sirius/devel/sirius.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sirius.spec 26 Feb 2009 01:15:40 -0000 1.15 +++ sirius.spec 27 Jul 2009 04:23:15 -0000 1.16 @@ -1,6 +1,6 @@ Name: sirius Version: 0.8.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Reversi game for Gnome Group: Amusements/Games @@ -67,6 +67,9 @@ desktop-file-install --vendor fedora --d %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:23:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:23:25 +0000 (UTC) Subject: rpms/sitecopy/devel sitecopy.spec,1.5,1.6 Message-ID: <20090727042325.D4B2B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sitecopy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22129 Modified Files: sitecopy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sitecopy.spec =================================================================== RCS file: /cvs/pkgs/rpms/sitecopy/devel/sitecopy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sitecopy.spec 26 Feb 2009 01:16:34 -0000 1.5 +++ sitecopy.spec 27 Jul 2009 04:23:25 -0000 1.6 @@ -1,6 +1,6 @@ Name: sitecopy Version: 0.16.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool for easily maintaining remote web sites Group: Applications/Internet License: GPLv2+ @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sitecopy %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.16.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:23:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:23:39 +0000 (UTC) Subject: rpms/six/devel six.spec,1.7,1.8 Message-ID: <20090727042339.76A2411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/six/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22301 Modified Files: six.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: six.spec =================================================================== RCS file: /cvs/pkgs/rpms/six/devel/six.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- six.spec 26 Feb 2009 01:17:29 -0000 1.7 +++ six.spec 27 Jul 2009 04:23:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: six Version: 0.5.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Hex playing program Group: Amusements/Games @@ -76,6 +76,9 @@ touch --no-create %{_datadir}/icons/loco update-desktop-database &> /dev/null ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:23:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:23:50 +0000 (UTC) Subject: rpms/sj-fonts/devel sj-fonts.spec,1.4,1.5 Message-ID: <20090727042350.2E23911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sj-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22448 Modified Files: sj-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sj-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sj-fonts/devel/sj-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sj-fonts.spec 15 Mar 2009 19:25:54 -0000 1.4 +++ sj-fonts.spec 27 Jul 2009 04:23:49 -0000 1.5 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 2.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Two fonts by Steve Jordi released under the GPL Group: User Interface/X @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 2.0.2-4 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Mon Jul 27 04:24:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:24:03 +0000 (UTC) Subject: rpms/sjasm/devel sjasm.spec,1.5,1.6 Message-ID: <20090727042403.21D5211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sjasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22598 Modified Files: sjasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sjasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/sjasm/devel/sjasm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sjasm.spec 26 Feb 2009 01:19:25 -0000 1.5 +++ sjasm.spec 27 Jul 2009 04:24:02 -0000 1.6 @@ -1,6 +1,6 @@ Name: sjasm Version: 0.39 -Release: 0.7.g1%{?dist} +Release: 0.8.g1%{?dist} Summary: A z80 cross assembler Group: Development/Languages License: BSD @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.39-0.8.g1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.39-0.7.g1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:24:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:24:14 +0000 (UTC) Subject: rpms/sk2py/devel sk2py.spec,1.6,1.7 Message-ID: <20090727042414.F02E211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sk2py/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22739 Modified Files: sk2py.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sk2py.spec =================================================================== RCS file: /cvs/pkgs/rpms/sk2py/devel/sk2py.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sk2py.spec 26 Feb 2009 01:20:26 -0000 1.6 +++ sk2py.spec 27 Jul 2009 04:24:14 -0000 1.7 @@ -1,6 +1,6 @@ Name: sk2py Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Migrates Cadence Skill based PCells to Python PyCells Group: Applications/Engineering @@ -85,6 +85,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:24:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:24:26 +0000 (UTC) Subject: rpms/skanlite/devel skanlite.spec,1.1,1.2 Message-ID: <20090727042426.AC43711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skanlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22871 Modified Files: skanlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skanlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/skanlite/devel/skanlite.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- skanlite.spec 1 Jul 2009 20:29:41 -0000 1.1 +++ skanlite.spec 27 Jul 2009 04:24:26 -0000 1.2 @@ -2,7 +2,7 @@ Name: skanlite Version: 0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightweight scanning program Group: Applications/Productivity # Actually: GPLv2 or GPLv3 or any later Version approved by KDE e.V. @@ -55,6 +55,9 @@ rm -rf %{buildroot} %{_kde4_datadir}/applications/kde4/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Sven Lankes - 0.3-2 - SPEC-Fixes from review From jkeating at fedoraproject.org Mon Jul 27 04:24:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:24:38 +0000 (UTC) Subject: rpms/ski/devel ski.spec,1.4,1.5 Message-ID: <20090727042438.CE2F011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ski/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23033 Modified Files: ski.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ski.spec =================================================================== RCS file: /cvs/pkgs/rpms/ski/devel/ski.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ski.spec 26 Feb 2009 01:21:22 -0000 1.4 +++ ski.spec 27 Jul 2009 04:24:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: ski Version: 1.3.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: IA-64 user and system mode simulator Group: Applications/Emulators @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:24:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:24:51 +0000 (UTC) Subject: rpms/skinlf/devel skinlf.spec,1.2,1.3 Message-ID: <20090727042451.4EE7E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skinlf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23184 Modified Files: skinlf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skinlf.spec =================================================================== RCS file: /cvs/pkgs/rpms/skinlf/devel/skinlf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- skinlf.spec 26 Feb 2009 01:22:30 -0000 1.2 +++ skinlf.spec 27 Jul 2009 04:24:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: skinlf Version: 6.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Skin look and feel Skinning library for java Group: Development/Libraries @@ -118,6 +118,9 @@ rm -rf %{buildroot} %{_javadir}/%{name}-%{version}.jar %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:25:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:25:04 +0000 (UTC) Subject: rpms/skkdic/devel skkdic.spec,1.5,1.6 Message-ID: <20090727042504.5C05E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skkdic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23319 Modified Files: skkdic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skkdic.spec =================================================================== RCS file: /cvs/pkgs/rpms/skkdic/devel/skkdic.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- skkdic.spec 26 Feb 2009 01:23:30 -0000 1.5 +++ skkdic.spec 27 Jul 2009 04:25:04 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Dictionaries for SKK (Simple Kana-Kanji conversion program) Name: skkdic Version: 20080904 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries # Here's how to make the source: @@ -46,6 +46,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20080904-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20080904-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:25:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:25:17 +0000 (UTC) Subject: rpms/skstream/devel skstream.spec,1.9,1.10 Message-ID: <20090727042517.12AD411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23524 Modified Files: skstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/skstream/devel/skstream.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- skstream.spec 1 Mar 2009 13:49:16 -0000 1.9 +++ skstream.spec 27 Jul 2009 04:25:16 -0000 1.10 @@ -1,6 +1,6 @@ Name: skstream Version: 0.3.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ I/O library for WorldForge clients/servers Group: Development/Libraries @@ -85,6 +85,9 @@ make %{?_smp_mflags} check || : %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Alexey Torkhov - 0.3.6-5 - Fixing build for recent compilers From jkeating at fedoraproject.org Mon Jul 27 04:25:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:25:29 +0000 (UTC) Subject: rpms/skychart/devel skychart.spec,1.16,1.17 Message-ID: <20090727042529.0CAF611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skychart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23644 Modified Files: skychart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skychart.spec =================================================================== RCS file: /cvs/pkgs/rpms/skychart/devel/skychart.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- skychart.spec 9 Apr 2009 05:31:04 -0000 1.16 +++ skychart.spec 27 Jul 2009 04:25:28 -0000 1.17 @@ -1,6 +1,6 @@ Name: skychart Version: 3.0.1.6 -Release: 1.20090408svn%{?dist} +Release: 2.20090408svn%{?dist} Summary: Planetarium software for the advanced amateur astronomer # svn export -r1050 https://skychart.svn.sourceforge.net/svnroot/skychart/trunk at 1050 skychart-3.0.1.5 @@ -146,6 +146,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1.6-2.20090408svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) - 3.0.1.6-1.20090408svn - Update to post latest beta - Drop the unzip patch From jkeating at fedoraproject.org Mon Jul 27 04:25:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:25:43 +0000 (UTC) Subject: rpms/skyviewer/devel skyviewer.spec,1.1,1.2 Message-ID: <20090727042543.378A211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/skyviewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23816 Modified Files: skyviewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: skyviewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/skyviewer/devel/skyviewer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- skyviewer.spec 10 Apr 2009 06:38:34 -0000 1.1 +++ skyviewer.spec 27 Jul 2009 04:25:43 -0000 1.2 @@ -1,6 +1,6 @@ Name: skyviewer Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Program to display HEALPix-based skymaps in FITS files Group: Amusements/Graphics @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Lubomir Rintel (Fedora Astronomy) - 1.0.0-2 - Update license - Fix RBs (Jussi Lehtola) From jkeating at fedoraproject.org Mon Jul 27 04:25:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:25:54 +0000 (UTC) Subject: rpms/sl/devel sl.spec,1.3,1.4 Message-ID: <20090727042554.F33D811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23972 Modified Files: sl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sl.spec =================================================================== RCS file: /cvs/pkgs/rpms/sl/devel/sl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sl.spec 26 Feb 2009 01:26:33 -0000 1.3 +++ sl.spec 27 Jul 2009 04:25:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: sl Version: 3.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Joke command for when you type 'sl' instead of 'ls' Group: Amusements/Graphics License: Copyright only @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:26:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:26:07 +0000 (UTC) Subject: rpms/slang/devel slang.spec,1.54,1.55 Message-ID: <20090727042607.0048411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24129 Modified Files: slang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slang.spec =================================================================== RCS file: /cvs/pkgs/rpms/slang/devel/slang.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- slang.spec 26 Feb 2009 01:27:37 -0000 1.54 +++ slang.spec 27 Jul 2009 04:26:06 -0000 1.55 @@ -1,7 +1,7 @@ Summary: The shared library for the S-Lang extension language Name: slang Version: 2.1.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries Source: ftp://space.mit.edu/pub/davis/slang/v2.1/%{name}-%{version}.tar.bz2 @@ -112,6 +112,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libslang*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:26:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:26:18 +0000 (UTC) Subject: rpms/slapi-nis/devel slapi-nis.spec,1.15,1.16 Message-ID: <20090727042618.D1CBF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slapi-nis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24302 Modified Files: slapi-nis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slapi-nis.spec =================================================================== RCS file: /cvs/pkgs/rpms/slapi-nis/devel/slapi-nis.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- slapi-nis.spec 15 Jul 2009 14:50:41 -0000 1.15 +++ slapi-nis.spec 27 Jul 2009 04:26:18 -0000 1.16 @@ -1,6 +1,6 @@ Name: slapi-nis Version: 0.17 -Release: 3%{?dist} +Release: 4%{?dist} Summary: NIS Server and Schema Compatibility plugins for Directory Server Group: System Environment/Daemons License: GPLv2 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/nisserver-plugin-defs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Nalin Dahyabhai - 0.17-3 - change buildreq from fedora-ds-base-devel to 389-ds-base-devel, which should avoid multilib conflicts from installing both arches of the new From jkeating at fedoraproject.org Mon Jul 27 04:26:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:26:30 +0000 (UTC) Subject: rpms/slashem/devel slashem.spec,1.2,1.3 Message-ID: <20090727042630.DCB0411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slashem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24431 Modified Files: slashem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slashem.spec =================================================================== RCS file: /cvs/pkgs/rpms/slashem/devel/slashem.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- slashem.spec 19 Jul 2009 12:51:44 -0000 1.2 +++ slashem.spec 27 Jul 2009 04:26:30 -0000 1.3 @@ -1,6 +1,6 @@ Name: slashem Version: 0.0.8 -Release: 0.4.E0F1%{?dist} +Release: 0.5.E0F1%{?dist} Summary: Super Lotsa Added Stuff Hack - Extended Magic Group: Amusements/Games @@ -150,6 +150,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.8-0.5.E0F1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Iain Arnell 0.0.8-0.4.E0F1 - require nethack-bitmap-fonts-core, not nethack anymore From jkeating at fedoraproject.org Mon Jul 27 04:26:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:26:42 +0000 (UTC) Subject: rpms/sleuthkit/devel sleuthkit.spec,1.7,1.8 Message-ID: <20090727042642.E283911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sleuthkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24546 Modified Files: sleuthkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sleuthkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/sleuthkit/devel/sleuthkit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sleuthkit.spec 26 Feb 2009 01:29:46 -0000 1.7 +++ sleuthkit.spec 27 Jul 2009 04:26:42 -0000 1.8 @@ -2,7 +2,7 @@ Name: sleuthkit Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Sleuth Kit (TSK) Group: Applications/System @@ -167,6 +167,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:26:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:26:53 +0000 (UTC) Subject: rpms/slib/devel slib.spec,1.17,1.18 Message-ID: <20090727042653.E327A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24686 Modified Files: slib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slib.spec =================================================================== RCS file: /cvs/pkgs/rpms/slib/devel/slib.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- slib.spec 26 Feb 2009 01:30:48 -0000 1.17 +++ slib.spec 27 Jul 2009 04:26:53 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Platform independent library for scheme Name: slib Version: 3b1 -Release: 2%{?dist} +Release: 3%{?dist} License: SLIB Group: Development/Languages BuildArch: noarch @@ -55,6 +55,9 @@ fi %{_infodir}/slib.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3b1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3b1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:27:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:06 +0000 (UTC) Subject: rpms/slim/devel slim.spec,1.16,1.17 Message-ID: <20090727042706.0B9C711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24853 Modified Files: slim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slim.spec =================================================================== RCS file: /cvs/pkgs/rpms/slim/devel/slim.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- slim.spec 22 Jun 2009 10:37:21 -0000 1.16 +++ slim.spec 27 Jul 2009 04:27:05 -0000 1.17 @@ -1,6 +1,6 @@ Name: slim Version: 1.3.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple Login Manager Group: User Interface/X @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Anders F Bjorklund 1.3.1-6 - exclude current directory from default_path in slim.conf (#505359) From jkeating at fedoraproject.org Mon Jul 27 04:27:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:16 +0000 (UTC) Subject: rpms/slimdata/devel slimdata.spec,1.3,1.4 Message-ID: <20090727042716.27F6211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slimdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24981 Modified Files: slimdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slimdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/slimdata/devel/slimdata.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- slimdata.spec 15 Jun 2009 18:35:15 -0000 1.3 +++ slimdata.spec 27 Jul 2009 04:27:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: slimdata Version: 2.6.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tools and library for reading and writing slim compressed data Group: Development/Libraries @@ -87,6 +87,9 @@ rm -rf %{buildroot} %{_libdir}/libslim.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Matthew Truch - 2.6.3-5 - Change name of man page to slimdata as well (BZ 506141). From jkeating at fedoraproject.org Mon Jul 27 04:27:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:26 +0000 (UTC) Subject: rpms/slingshot/devel slingshot.spec,1.3,1.4 Message-ID: <20090727042726.BC4E111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slingshot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25114 Modified Files: slingshot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slingshot.spec =================================================================== RCS file: /cvs/pkgs/rpms/slingshot/devel/slingshot.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- slingshot.spec 24 Mar 2009 18:57:38 -0000 1.3 +++ slingshot.spec 27 Jul 2009 04:27:26 -0000 1.4 @@ -1,6 +1,6 @@ Name: slingshot Version: 0.8.1p -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Newtonian strategy game Group: Amusements/Games @@ -77,6 +77,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/64x64/apps/slingshot.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1p-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Jon Ciesla - 0.8.1p-3 - Update for freefont->gnu-free-fonts rename/split. From jkeating at fedoraproject.org Mon Jul 27 04:27:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:37 +0000 (UTC) Subject: rpms/sloccount/devel sloccount.spec,1.8,1.9 Message-ID: <20090727042737.C548B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sloccount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25258 Modified Files: sloccount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sloccount.spec =================================================================== RCS file: /cvs/pkgs/rpms/sloccount/devel/sloccount.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sloccount.spec 26 Feb 2009 01:32:44 -0000 1.8 +++ sloccount.spec 27 Jul 2009 04:27:37 -0000 1.9 @@ -1,7 +1,7 @@ Name: sloccount Summary: Measures source lines of code (SLOC) in programs Version: 2.26 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Development/Tools Source: http://www.dwheeler.com/sloccount/sloccount-%{version}.tar.gz @@ -39,6 +39,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.26-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.26-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:27:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:48 +0000 (UTC) Subject: rpms/slock/devel slock.spec,1.1,1.2 Message-ID: <20090727042748.E622D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25400 Modified Files: slock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slock.spec =================================================================== RCS file: /cvs/pkgs/rpms/slock/devel/slock.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- slock.spec 27 Mar 2009 15:46:42 -0000 1.1 +++ slock.spec 27 Jul 2009 04:27:48 -0000 1.2 @@ -1,6 +1,6 @@ Name: slock Version: 0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple X display locker Group: User Interface/X @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Pavel "Stalwart" Shevchuk - 0.9-5 - Added comment about unneeded .desktop file From jkeating at fedoraproject.org Mon Jul 27 04:27:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:27:59 +0000 (UTC) Subject: rpms/slrn/devel slrn.spec,1.41,1.42 Message-ID: <20090727042759.D081811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slrn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25536 Modified Files: slrn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slrn.spec =================================================================== RCS file: /cvs/pkgs/rpms/slrn/devel/slrn.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- slrn.spec 26 Feb 2009 01:33:46 -0000 1.41 +++ slrn.spec 27 Jul 2009 04:27:59 -0000 1.42 @@ -1,7 +1,7 @@ Summary: A threaded Internet news reader Name: slrn Version: 0.9.9p1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/slrnpull.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.9p1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.9p1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:28:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:28:10 +0000 (UTC) Subject: rpms/slv2/devel slv2.spec,1.4,1.5 Message-ID: <20090727042810.60CA211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/slv2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25655 Modified Files: slv2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: slv2.spec =================================================================== RCS file: /cvs/pkgs/rpms/slv2/devel/slv2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- slv2.spec 26 May 2009 20:59:35 -0000 1.4 +++ slv2.spec 27 Jul 2009 04:28:10 -0000 1.5 @@ -1,7 +1,7 @@ Name: slv2 Summary: LV2 host library Version: 0.6.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Libraries Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 @@ -90,6 +90,9 @@ rm -rf %{buildroot} %{_mandir}/man3/%{name}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Orcan Ogetbil - 0.6.6-1 - Version update: 0.6.6 - Add Obsoletes/Provides to slv2-examples From jkeating at fedoraproject.org Mon Jul 27 04:28:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:28:23 +0000 (UTC) Subject: rpms/smart/devel smart.spec,1.43,1.44 Message-ID: <20090727042823.43D4C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25797 Modified Files: smart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smart.spec =================================================================== RCS file: /cvs/pkgs/rpms/smart/devel/smart.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- smart.spec 16 Apr 2009 10:38:10 -0000 1.43 +++ smart.spec 27 Jul 2009 04:28:23 -0000 1.44 @@ -7,7 +7,7 @@ Summary: Next generation package handling tool Name: smart Version: 1.2 -Release: 64%{?dist} +Release: 65%{?dist} License: GPLv2+ Group: Applications/System URL: http://labix.org/smart/ @@ -207,6 +207,9 @@ rm -rf %{buildroot} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-65 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Axel Thimm - 1.2-64 - Fix premature returns in sha256 patch. From jkeating at fedoraproject.org Mon Jul 27 04:28:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:28:34 +0000 (UTC) Subject: rpms/smarteiffel/devel smarteiffel.spec,1.8,1.9 Message-ID: <20090727042834.403E511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smarteiffel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25946 Modified Files: smarteiffel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smarteiffel.spec =================================================================== RCS file: /cvs/pkgs/rpms/smarteiffel/devel/smarteiffel.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- smarteiffel.spec 26 Feb 2009 01:36:40 -0000 1.8 +++ smarteiffel.spec 27 Jul 2009 04:28:34 -0000 1.9 @@ -1,6 +1,6 @@ Name: smarteiffel Version: 2.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: The GNU Eiffel Compiler and Libraries Group: Development/Languages @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:28:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:28:47 +0000 (UTC) Subject: rpms/smartmontools/devel smartmontools.spec,1.55,1.56 Message-ID: <20090727042847.E5C9A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smartmontools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26097 Modified Files: smartmontools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smartmontools.spec =================================================================== RCS file: /cvs/pkgs/rpms/smartmontools/devel/smartmontools.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- smartmontools.spec 11 Jun 2009 09:16:19 -0000 1.55 +++ smartmontools.spec 27 Jul 2009 04:28:47 -0000 1.56 @@ -1,7 +1,7 @@ Summary: Tools for monitoring SMART capable hard disks Name: smartmontools Version: 5.38 -Release: 12%{?dist} +Release: 13%{?dist} Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -75,6 +75,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/smartmontools %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:5.38-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Michal Hlavinka - 1:5.38-12 - drop autogen call From jkeating at fedoraproject.org Mon Jul 27 04:29:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:29:00 +0000 (UTC) Subject: rpms/smashteroid/devel smashteroid.spec,1.4,1.5 Message-ID: <20090727042900.C1A7211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smashteroid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26240 Modified Files: smashteroid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smashteroid.spec =================================================================== RCS file: /cvs/pkgs/rpms/smashteroid/devel/smashteroid.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- smashteroid.spec 26 Feb 2009 01:38:37 -0000 1.4 +++ smashteroid.spec 27 Jul 2009 04:29:00 -0000 1.5 @@ -1,6 +1,6 @@ Name: smashteroid Version: 1.11 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Astrosmash Remake Group: Amusements/Games License: Crystal Stacker @@ -75,6 +75,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:29:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:29:14 +0000 (UTC) Subject: rpms/smb4k/devel smb4k.spec,1.41,1.42 Message-ID: <20090727042914.460BC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smb4k/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26386 Modified Files: smb4k.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smb4k.spec =================================================================== RCS file: /cvs/pkgs/rpms/smb4k/devel/smb4k.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- smb4k.spec 15 Mar 2009 14:43:10 -0000 1.41 +++ smb4k.spec 27 Jul 2009 04:29:14 -0000 1.42 @@ -1,6 +1,6 @@ Name: smb4k Version: 0.10.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The SMB/CIFS Share Browser for KDE Group: Applications/Internet @@ -96,6 +96,9 @@ rm -rf %{buildroot} %{_libdir}/libsmb4kc*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Marcin Garski 0.10.2-1 - Update to 0.10.2 From jkeating at fedoraproject.org Mon Jul 27 04:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:29:26 +0000 (UTC) Subject: rpms/smbldap-tools/devel smbldap-tools.spec,1.10,1.11 Message-ID: <20090727042926.6781F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smbldap-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26534 Modified Files: smbldap-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smbldap-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/smbldap-tools/devel/smbldap-tools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- smbldap-tools.spec 6 Mar 2009 16:40:42 -0000 1.10 +++ smbldap-tools.spec 27 Jul 2009 04:29:26 -0000 1.11 @@ -1,7 +1,7 @@ Summary: User and group administration tools for Samba/OpenLDAP Name: smbldap-tools Version: 0.9.5 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: System Environment/Base URL: https://gna.org/projects/smbldap-tools/ @@ -108,6 +108,9 @@ done %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Paul Howarth 0.9.5-4 - change dependencies on samba and openldap-clients to samba-common and openldap-servers respectively From jkeating at fedoraproject.org Mon Jul 27 04:29:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:29:39 +0000 (UTC) Subject: rpms/smc-fonts/devel smc-fonts.spec,1.7,1.8 Message-ID: <20090727042939.ED7AC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smc-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26703 Modified Files: smc-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smc-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/smc-fonts/devel/smc-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- smc-fonts.spec 3 Apr 2009 09:27:32 -0000 1.7 +++ smc-fonts.spec 27 Jul 2009 04:29:39 -0000 1.8 @@ -8,7 +8,7 @@ traditional and new Malayalam Script. Name: %{fontname}-fonts Version: 04.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Open Type Fonts for Malayalam script Group: User Interface/X License: GPLv3+ with exceptions and GPLv2+ with exceptions and GPLv2+ and GPLv2 @@ -152,6 +152,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 04.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 03 2009 Pravin Satpute 04.1-6 - bugfix 493814 - added 'Provides' field for packages From jkeating at fedoraproject.org Mon Jul 27 04:29:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:29:51 +0000 (UTC) Subject: rpms/smem/devel smem.spec,1.1,1.2 Message-ID: <20090727042951.7492411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26844 Modified Files: smem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smem.spec =================================================================== RCS file: /cvs/pkgs/rpms/smem/devel/smem.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- smem.spec 21 May 2009 20:54:21 -0000 1.1 +++ smem.spec 27 Jul 2009 04:29:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: smem Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Report application memory usage in a meaningful way Group: Applications/System @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 7 2009 Matthew Miller - 0.1-4 - remove smem.pdf at request of upstream - patch0: 741bd2646ebf -- add GPLv2+ and copyright notice From jkeating at fedoraproject.org Mon Jul 27 04:30:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:30:02 +0000 (UTC) Subject: rpms/smokeping/devel smokeping.spec,1.2,1.3 Message-ID: <20090727043002.1D03611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smokeping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26982 Modified Files: smokeping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smokeping.spec =================================================================== RCS file: /cvs/pkgs/rpms/smokeping/devel/smokeping.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- smokeping.spec 26 Feb 2009 01:42:34 -0000 1.2 +++ smokeping.spec 27 Jul 2009 04:30:01 -0000 1.3 @@ -7,7 +7,7 @@ Summary: Latency Logging and Graphing System Name: smokeping Version: 2.4.2 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://oss.oetiker.ch/smokeping/ @@ -132,6 +132,9 @@ fi %attr(0755, apache, root) %{_localstatedir}/lib/%{name}/images %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:30:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:30:16 +0000 (UTC) Subject: rpms/smolt/devel smolt.spec,1.71,1.72 Message-ID: <20090727043016.4C41411C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smolt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27160 Modified Files: smolt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smolt.spec =================================================================== RCS file: /cvs/pkgs/rpms/smolt/devel/smolt.spec,v retrieving revision 1.71 retrieving revision 1.72 diff -u -p -r1.71 -r1.72 --- smolt.spec 23 Jul 2009 21:46:30 -0000 1.71 +++ smolt.spec 27 Jul 2009 04:30:16 -0000 1.72 @@ -2,7 +2,7 @@ Name: smolt Summary: Fedora hardware profiler Version: 1.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://fedorahosted.org/smolt @@ -203,6 +203,9 @@ touch --no-create %{_datadir}/icons/hico %{_bindir}/smoltGui %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Mike McGrath - 1.3-1 - Added touch for generated stats - Upstream released new version From jkeating at fedoraproject.org Mon Jul 27 04:30:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:30:27 +0000 (UTC) Subject: rpms/smp_utils/devel smp_utils.spec,1.1,1.2 Message-ID: <20090727043027.DF1EC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smp_utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27301 Modified Files: smp_utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smp_utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/smp_utils/devel/smp_utils.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- smp_utils.spec 9 Mar 2009 17:42:01 -0000 1.1 +++ smp_utils.spec 27 Jul 2009 04:30:27 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Utilities for SAS management protocol (SMP) Name: smp_utils Version: 0.94 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Applications/System URL: http://sg.danny.cz/sg/smp_utils.html @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.94-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Dan Hor?k 0.94-2 - update BuildRoot From jkeating at fedoraproject.org Mon Jul 27 04:30:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:30:39 +0000 (UTC) Subject: rpms/sms_ntsc/devel sms_ntsc.spec,1.2,1.3 Message-ID: <20090727043039.3D78E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sms_ntsc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27422 Modified Files: sms_ntsc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sms_ntsc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sms_ntsc/devel/sms_ntsc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sms_ntsc.spec 26 Feb 2009 01:44:27 -0000 1.2 +++ sms_ntsc.spec 27 Jul 2009 04:30:39 -0000 1.3 @@ -2,7 +2,7 @@ Name: sms_ntsc Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Provides an SMS NTSC video filtering library Group: System Environment/Libraries @@ -114,6 +114,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:30:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:30:49 +0000 (UTC) Subject: rpms/smstools/devel smstools.spec,1.8,1.9 Message-ID: <20090727043049.C771011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/smstools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27543 Modified Files: smstools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: smstools.spec =================================================================== RCS file: /cvs/pkgs/rpms/smstools/devel/smstools.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- smstools.spec 26 Feb 2009 01:45:25 -0000 1.8 +++ smstools.spec 27 Jul 2009 04:30:49 -0000 1.9 @@ -1,6 +1,6 @@ Name: smstools Version: 3.1.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools to send and receive short messages through GSM modems or mobile phones License: GPLv2+ @@ -90,6 +90,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:31:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:31:02 +0000 (UTC) Subject: rpms/snake/devel snake.spec,1.23,1.24 Message-ID: <20090727043102.00AA011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27670 Modified Files: snake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snake.spec =================================================================== RCS file: /cvs/pkgs/rpms/snake/devel/snake.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- snake.spec 19 Jun 2009 16:58:42 -0000 1.23 +++ snake.spec 27 Jul 2009 04:31:01 -0000 1.24 @@ -4,7 +4,7 @@ Name: snake Summary: Smart Network Automated Kickstart Environment Version: 0.11 -%define rel 0.16 +%define rel 0.17 Release: %{rel}%{?dist} Source0: http://hosted.fedoraproject.org/projects/snake/SnakeReleases/%{name}-%{version}-%{rel}.tar.bz2 License: GPLv2+ @@ -135,6 +135,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-0.17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 James Laska 0.11-0.16 - Correct missing import in examples/defaults.py From jkeating at fedoraproject.org Mon Jul 27 04:31:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:31:15 +0000 (UTC) Subject: rpms/snes_ntsc/devel snes_ntsc.spec,1.2,1.3 Message-ID: <20090727043115.AC9E311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snes_ntsc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27812 Modified Files: snes_ntsc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snes_ntsc.spec =================================================================== RCS file: /cvs/pkgs/rpms/snes_ntsc/devel/snes_ntsc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- snes_ntsc.spec 26 Feb 2009 01:47:21 -0000 1.2 +++ snes_ntsc.spec 27 Jul 2009 04:31:15 -0000 1.3 @@ -2,7 +2,7 @@ Name: snes_ntsc Version: 0.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Provides a SNES NTSC video filtering library Group: System Environment/Libraries @@ -114,6 +114,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:09:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:09:36 +0000 (UTC) Subject: rpms/sendxmpp/devel sendxmpp.spec,1.1,1.2 Message-ID: <20090727040936.96DEE11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sendxmpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26920 Modified Files: sendxmpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sendxmpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/sendxmpp/devel/sendxmpp.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sendxmpp.spec 14 Jul 2009 10:06:40 -0000 1.1 +++ sendxmpp.spec 27 Jul 2009 04:09:36 -0000 1.2 @@ -1,6 +1,6 @@ Name: sendxmpp Version: 0.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A perl script to send xmpp messages Group: Applications/Communications @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Ruben Kerkhof 0.0.8-2 - Review fixes (#504641) From jkeating at fedoraproject.org Mon Jul 27 04:14:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:14:50 +0000 (UTC) Subject: rpms/sgpio/devel sgpio.spec,1.1,1.2 Message-ID: <20090727041450.E07FC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sgpio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15984 Modified Files: sgpio.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sgpio.spec =================================================================== RCS file: /cvs/pkgs/rpms/sgpio/devel/sgpio.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sgpio.spec 1 Jun 2009 10:29:00 -0000 1.1 +++ sgpio.spec 27 Jul 2009 04:14:50 -0000 1.2 @@ -1,7 +1,7 @@ Summary: SGPIO captive backplane tool Name: sgpio Version: 1.2.0.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/lvm2/wiki/DMRAID_Eventing @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/sgpio.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Jiri Moskovcak 1.2.0.10-3 - rebuild for F12 From jkeating at fedoraproject.org Mon Jul 27 04:09:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:09:21 +0000 (UTC) Subject: rpms/sendmail/devel sendmail.spec,1.100,1.101 Message-ID: <20090727040921.5E0CB11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sendmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23514 Modified Files: sendmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sendmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/sendmail/devel/sendmail.spec,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- sendmail.spec 26 Feb 2009 00:28:47 -0000 1.100 +++ sendmail.spec 27 Jul 2009 04:09:21 -0000 1.101 @@ -15,7 +15,7 @@ Summary: A widely used Mail Transport Agent (MTA) Name: sendmail Version: 8.14.3 -Release: 5%{?dist} +Release: 6%{?dist} License: Sendmail Group: System Environment/Daemons URL: http://www.sendmail.org/ @@ -566,6 +566,9 @@ exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.14.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.14.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:17:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:17:06 +0000 (UTC) Subject: rpms/shorewall/devel shorewall.spec,1.86,1.87 Message-ID: <20090727041706.579C511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shorewall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17517 Modified Files: shorewall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shorewall.spec =================================================================== RCS file: /cvs/pkgs/rpms/shorewall/devel/shorewall.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- shorewall.spec 7 Jul 2009 22:40:35 -0000 1.86 +++ shorewall.spec 27 Jul 2009 04:17:06 -0000 1.87 @@ -8,7 +8,7 @@ Name: shorewall Version: 4.4.0 -Release: 0.1.Beta3%{?dist} +Release: 0.2.Beta3%{?dist} Summary: An iptables front end for firewall configuration Group: Applications/System License: GPLv2+ @@ -333,6 +333,9 @@ fi %attr(0755,root,root) %{_datadir}/shorewall6-lite/wait4ifup %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.4.0-0.2.Beta3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Jonathan G. Underwood - 4.4.0-0.1.Beta3 - Update to 4.4.0-Beta3 From jkeating at fedoraproject.org Mon Jul 27 04:09:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:09:00 +0000 (UTC) Subject: rpms/senamirmir-washra-fonts/devel senamirmir-washra-fonts.spec, 1.1, 1.2 Message-ID: <20090727040900.268B511C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/senamirmir-washra-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20112 Modified Files: senamirmir-washra-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: senamirmir-washra-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/senamirmir-washra-fonts/devel/senamirmir-washra-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- senamirmir-washra-fonts.spec 10 Jun 2009 21:48:28 -0000 1.1 +++ senamirmir-washra-fonts.spec 27 Jul 2009 04:08:59 -0000 1.2 @@ -11,7 +11,7 @@ Eritrean languages (Amharic, Blin, Ge?e Name: %{fontname}-fonts Version: 4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fonts for the Ge?ez (Ethiopic) script Group: User Interface/X @@ -202,6 +202,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Nicolas Mailhot - 4.1-1 From jkeating at fedoraproject.org Mon Jul 27 04:09:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:09:56 +0000 (UTC) Subject: rpms/sepostgresql/devel sepostgresql.spec,1.37,1.38 Message-ID: <20090727040956.5DF8D11C00E4@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sepostgresql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv535 Modified Files: sepostgresql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sepostgresql.spec =================================================================== RCS file: /cvs/pkgs/rpms/sepostgresql/devel/sepostgresql.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- sepostgresql.spec 9 Jun 2009 07:29:38 -0000 1.37 +++ sepostgresql.spec 27 Jul 2009 04:09:56 -0000 1.38 @@ -12,7 +12,7 @@ Summary: Security Enhanced PostgreSQL Name: sepostgresql Version: 8.3.7 -Release: 1990%{?dist} +Release: 1991%{?dist} License: BSD Group: Applications/Databases Url: http://code.google.com/p/sepgsql/ @@ -199,6 +199,9 @@ fi %attr(700,sepgsql,sepgsql) %dir %{_localstatedir}/lib/sepgsql/backups %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.3.7-1991 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 KaiGai Kohei - 8.3.7-1990 - backport features from v8.4devel, it also needs libselinux-2.0.80 From jkeating at fedoraproject.org Mon Jul 27 04:15:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:15:11 +0000 (UTC) Subject: rpms/shadow-utils/devel shadow-utils.spec,1.135,1.136 Message-ID: <20090727041511.CC1DE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/shadow-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16130 Modified Files: shadow-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: shadow-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/shadow-utils/devel/shadow-utils.spec,v retrieving revision 1.135 retrieving revision 1.136 diff -u -p -r1.135 -r1.136 --- shadow-utils.spec 16 Jul 2009 13:41:55 -0000 1.135 +++ shadow-utils.spec 27 Jul 2009 04:15:11 -0000 1.136 @@ -1,7 +1,7 @@ Summary: Utilities for managing accounts and shadow password files Name: shadow-utils Version: 4.1.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 2 URL: http://pkg-shadow.alioth.debian.org/ Source0: ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/shadow-%{version}.tar.bz2 @@ -182,6 +182,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/vigr.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:4.1.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Peter Vrabec 2:4.1.4.1-4 - fix a list of owned directories (#510366) From jkeating at fedoraproject.org Mon Jul 27 04:31:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:31:27 +0000 (UTC) Subject: rpms/snmp++/devel snmp++.spec,1.3,1.4 Message-ID: <20090727043127.3106A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snmp++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27942 Modified Files: snmp++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snmp++.spec =================================================================== RCS file: /cvs/pkgs/rpms/snmp++/devel/snmp++.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- snmp++.spec 26 Feb 2009 01:48:32 -0000 1.3 +++ snmp++.spec 27 Jul 2009 04:31:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: snmp++ Version: 3.2.23 -Release: 7%{?dist} +Release: 8%{?dist} Summary: SNMP++v3.x is based on SNMP++v2.8 from HP* and extends it by support for SNMPv3 Group: Development/Libraries @@ -74,6 +74,9 @@ install %{name}-devel %{_includedir}/snmp_pp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.23-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.23-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:31:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:31:38 +0000 (UTC) Subject: rpms/snobol/devel snobol.spec,1.4,1.5 Message-ID: <20090727043138.1665111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snobol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28077 Modified Files: snobol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snobol.spec =================================================================== RCS file: /cvs/pkgs/rpms/snobol/devel/snobol.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- snobol.spec 23 Apr 2009 18:20:37 -0000 1.4 +++ snobol.spec 27 Jul 2009 04:31:37 -0000 1.5 @@ -2,7 +2,7 @@ Name: snobol Version: 4.%{snobrel} -Release: 1%{?dist} +Release: 2%{?dist} Summary: The SNOBOL programming language Group: Development/Languages @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libsnobol.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 23 2009 Jochen Schmitt 4.1.2-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 04:31:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:31:49 +0000 (UTC) Subject: rpms/snort/devel snort.spec,1.40,1.41 Message-ID: <20090727043149.3168311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snort/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28206 Modified Files: snort.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snort.spec =================================================================== RCS file: /cvs/pkgs/rpms/snort/devel/snort.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- snort.spec 19 Apr 2009 17:17:05 -0000 1.40 +++ snort.spec 27 Jul 2009 04:31:49 -0000 1.41 @@ -1,7 +1,7 @@ Summary: Intrusion detection system Name: snort Version: 2.8.3.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Internet Source0: http://www.snort.org/dl/current/snort-%{version}.tar.gz @@ -495,6 +495,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Robert Scheck - 2.8.3.2-3 - Build require package libnet10-devel rather libnet10 From jkeating at fedoraproject.org Mon Jul 27 04:32:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:32:00 +0000 (UTC) Subject: rpms/snownews/devel snownews.spec,1.19,1.20 Message-ID: <20090727043200.13F0A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/snownews/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28354 Modified Files: snownews.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: snownews.spec =================================================================== RCS file: /cvs/pkgs/rpms/snownews/devel/snownews.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- snownews.spec 29 May 2009 03:24:46 -0000 1.19 +++ snownews.spec 27 Jul 2009 04:31:59 -0000 1.20 @@ -1,6 +1,6 @@ Name: snownews Version: 1.5.10 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A text mode RSS/RDF newsreader Group: Applications/Internet License: GPLv2 @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Zing - 1.5.10-5 - possible pie fix for sparc build From jkeating at fedoraproject.org Mon Jul 27 04:32:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:32:14 +0000 (UTC) Subject: rpms/sobby/devel sobby.spec,1.20,1.21 Message-ID: <20090727043214.29F4211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28513 Modified Files: sobby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/sobby/devel/sobby.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- sobby.spec 26 Feb 2009 01:53:23 -0000 1.20 +++ sobby.spec 27 Jul 2009 04:32:13 -0000 1.21 @@ -1,6 +1,6 @@ Name: sobby Version: 0.4.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Standalone obby server Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:32:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:32:25 +0000 (UTC) Subject: rpms/socat/devel socat.spec,1.15,1.16 Message-ID: <20090727043225.7AEA911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/socat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28670 Modified Files: socat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: socat.spec =================================================================== RCS file: /cvs/pkgs/rpms/socat/devel/socat.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- socat.spec 11 May 2009 17:38:05 -0000 1.15 +++ socat.spec 27 Jul 2009 04:32:25 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Bidirectional data relay between two data channels ('netcat++') Name: socat Version: 1.7.1.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Url: http://www.dest-unreach.org/%{name} Source: http://www.dest-unreach.org/socat/download/%{name}-%{version}.tar.bz2 @@ -60,6 +60,9 @@ rm -rf %{buildroot} %doc %{_mandir}/man1/socat.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Paul Wouters - 1.7.1.1-1 - Upgraded to 1.7.1.1. - Patch for configure.in with -Wall From jkeating at fedoraproject.org Mon Jul 27 04:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:32:59 +0000 (UTC) Subject: rpms/soci/devel soci.spec,1.7,1.8 Message-ID: <20090727043259.171FD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soci/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28972 Modified Files: soci.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soci.spec =================================================================== RCS file: /cvs/pkgs/rpms/soci/devel/soci.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- soci.spec 23 May 2009 12:12:26 -0000 1.7 +++ soci.spec 27 Jul 2009 04:32:58 -0000 1.8 @@ -18,7 +18,7 @@ # Name: soci Version: 3.0.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: The database access library for C++ programmers @@ -287,6 +287,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 09 2009 Denis Arnaud 3.0.0-13 - Introduced distinct dependencies for different distributions From jkeating at fedoraproject.org Mon Jul 27 04:33:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:33:12 +0000 (UTC) Subject: rpms/sofia-sip/devel sofia-sip.spec,1.13,1.14 Message-ID: <20090727043312.10B1411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sofia-sip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29137 Modified Files: sofia-sip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sofia-sip.spec =================================================================== RCS file: /cvs/pkgs/rpms/sofia-sip/devel/sofia-sip.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sofia-sip.spec 26 Feb 2009 01:55:32 -0000 1.13 +++ sofia-sip.spec 27 Jul 2009 04:33:11 -0000 1.14 @@ -1,6 +1,6 @@ Name: sofia-sip Version: 1.12.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Sofia SIP User-Agent library Group: System Environment/Libraries @@ -145,6 +145,9 @@ rm -rf %{buildroot} %{_mandir}/man1/*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:33:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:33:27 +0000 (UTC) Subject: rpms/sofsip-cli/devel sofsip-cli.spec,1.8,1.9 Message-ID: <20090727043327.3412111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sofsip-cli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29298 Modified Files: sofsip-cli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sofsip-cli.spec =================================================================== RCS file: /cvs/pkgs/rpms/sofsip-cli/devel/sofsip-cli.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sofsip-cli.spec 3 Mar 2009 20:36:30 -0000 1.8 +++ sofsip-cli.spec 27 Jul 2009 04:33:26 -0000 1.9 @@ -1,6 +1,6 @@ Name: sofsip-cli Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SIP VoIP/IM example client Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf %{buildroot} %{_mandir}/man1/sofsip_cli.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Jeffrey C. Ollie - 0.16-1 - Update to 0.16 From jkeating at fedoraproject.org Mon Jul 27 04:33:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:33:42 +0000 (UTC) Subject: rpms/solang/devel solang.spec,1.1,1.2 Message-ID: <20090727043342.DB41E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/solang/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29496 Modified Files: solang.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: solang.spec =================================================================== RCS file: /cvs/pkgs/rpms/solang/devel/solang.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- solang.spec 14 Jul 2009 14:04:08 -0000 1.1 +++ solang.spec 27 Jul 2009 04:33:42 -0000 1.2 @@ -1,6 +1,6 @@ Name: solang Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A photo manager for GNOME %define name_ Solang @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 11 2009 Hicham HAOUARI - 0.2-2 - Cleaned up the dependencies From jkeating at fedoraproject.org Mon Jul 27 04:33:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:33:56 +0000 (UTC) Subject: rpms/solar-backgrounds/devel solar-backgrounds.spec,1.15,1.16 Message-ID: <20090727043356.674FC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/solar-backgrounds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29663 Modified Files: solar-backgrounds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: solar-backgrounds.spec =================================================================== RCS file: /cvs/pkgs/rpms/solar-backgrounds/devel/solar-backgrounds.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- solar-backgrounds.spec 26 Feb 2009 01:57:30 -0000 1.15 +++ solar-backgrounds.spec 27 Jul 2009 04:33:56 -0000 1.16 @@ -1,6 +1,6 @@ Name: solar-backgrounds Version: 0.92.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Solar desktop backgrounds Group: Applications/Multimedia @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.92.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.92.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:34:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:34:11 +0000 (UTC) Subject: rpms/solar-kde-theme/devel solar-kde-theme.spec,1.24,1.25 Message-ID: <20090727043411.0751911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/solar-kde-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29843 Modified Files: solar-kde-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: solar-kde-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/solar-kde-theme/devel/solar-kde-theme.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- solar-kde-theme.spec 13 Jul 2009 15:10:04 -0000 1.24 +++ solar-kde-theme.spec 27 Jul 2009 04:34:10 -0000 1.25 @@ -1,6 +1,6 @@ Name: solar-kde-theme Version: 0.1.17 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Solar KDE Theme Group: User Interface/Desktops @@ -146,6 +146,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.17-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Jaroslav Reznik - 0.1.17-5 - Link to F11 system logo From jkeating at fedoraproject.org Mon Jul 27 04:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:34:22 +0000 (UTC) Subject: rpms/solarwolf/devel solarwolf.spec,1.2,1.3 Message-ID: <20090727043422.422BB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/solarwolf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30012 Modified Files: solarwolf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: solarwolf.spec =================================================================== RCS file: /cvs/pkgs/rpms/solarwolf/devel/solarwolf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- solarwolf.spec 26 Feb 2009 01:59:24 -0000 1.2 +++ solarwolf.spec 27 Jul 2009 04:34:22 -0000 1.3 @@ -1,6 +1,6 @@ Name: solarwolf Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Python port of SolarFox Group: Amusements/Games @@ -79,6 +79,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/64x64/apps/solarwolf.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:34:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:34:34 +0000 (UTC) Subject: rpms/solfege/devel solfege.spec,1.22,1.23 Message-ID: <20090727043434.4D7EF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/solfege/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30164 Modified Files: solfege.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: solfege.spec =================================================================== RCS file: /cvs/pkgs/rpms/solfege/devel/solfege.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- solfege.spec 13 Apr 2009 20:30:51 -0000 1.22 +++ solfege.spec 27 Jul 2009 04:34:34 -0000 1.23 @@ -1,6 +1,6 @@ Name: solfege Version: 3.14.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Music education software Group: Applications/Multimedia @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.14.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Sindre Pedersen Bj?rdal - 3.14.2-1 - New upstream release - No-X patch merged upstream, remove it. From jkeating at fedoraproject.org Mon Jul 27 04:34:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:34:45 +0000 (UTC) Subject: rpms/sonata/devel sonata.spec,1.21,1.22 Message-ID: <20090727043445.2416511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sonata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30295 Modified Files: sonata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sonata.spec =================================================================== RCS file: /cvs/pkgs/rpms/sonata/devel/sonata.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sonata.spec 26 Feb 2009 02:01:19 -0000 1.21 +++ sonata.spec 27 Jul 2009 04:34:45 -0000 1.22 @@ -2,7 +2,7 @@ Name: sonata Version: 1.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An elegant GTK+ client for the Music Player Daemon (MPD) Group: Applications/Multimedia License: GPLv3+ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:34:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:34:56 +0000 (UTC) Subject: rpms/sonic-visualiser/devel sonic-visualiser.spec,1.15,1.16 Message-ID: <20090727043456.E86AF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sonic-visualiser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30432 Modified Files: sonic-visualiser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sonic-visualiser.spec =================================================================== RCS file: /cvs/pkgs/rpms/sonic-visualiser/devel/sonic-visualiser.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sonic-visualiser.spec 26 Mar 2009 20:45:42 -0000 1.15 +++ sonic-visualiser.spec 27 Jul 2009 04:34:56 -0000 1.16 @@ -1,7 +1,7 @@ # rebuild with --with libmad to enable support for MP3 files Name: sonic-visualiser Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A program for viewing and exploring audio data Group: Applications/Multimedia @@ -96,6 +96,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 Michel Salim - 1.5-1 - Update to 1.5 From jkeating at fedoraproject.org Mon Jul 27 04:35:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:35:10 +0000 (UTC) Subject: rpms/sooperlooper/devel sooperlooper.spec,1.6,1.7 Message-ID: <20090727043510.586DB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sooperlooper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30581 Modified Files: sooperlooper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sooperlooper.spec =================================================================== RCS file: /cvs/pkgs/rpms/sooperlooper/devel/sooperlooper.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sooperlooper.spec 4 Mar 2009 09:50:18 -0000 1.6 +++ sooperlooper.spec 27 Jul 2009 04:35:09 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Realtime software looping sampler Name: sooperlooper Version: 1.6.13 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://essej.net/sooperlooper/ @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Caol?n McNamara - 1.6.13-3 - constify ret of strchr(const char*) From jkeating at fedoraproject.org Mon Jul 27 04:35:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:35:22 +0000 (UTC) Subject: rpms/soprano/devel soprano.spec,1.36,1.37 Message-ID: <20090727043522.E236C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soprano/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30758 Modified Files: soprano.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soprano.spec =================================================================== RCS file: /cvs/pkgs/rpms/soprano/devel/soprano.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- soprano.spec 16 Jul 2009 19:20:41 -0000 1.36 +++ soprano.spec 27 Jul 2009 04:35:22 -0000 1.37 @@ -7,7 +7,7 @@ Summary: Qt wrapper API to different RDF storage solutions Name: soprano Version: 2.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Libraries License: LGPLv2+ @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Rex Dieter - 2.3.0-1 - soprano-2.3.0 - upstream dropped virtuoso backend ): From jkeating at fedoraproject.org Mon Jul 27 04:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:35:33 +0000 (UTC) Subject: rpms/sopwith/devel sopwith.spec,1.12,1.13 Message-ID: <20090727043533.F33E611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sopwith/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30892 Modified Files: sopwith.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sopwith.spec =================================================================== RCS file: /cvs/pkgs/rpms/sopwith/devel/sopwith.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sopwith.spec 26 Feb 2009 02:05:08 -0000 1.12 +++ sopwith.spec 27 Jul 2009 04:35:33 -0000 1.13 @@ -1,6 +1,6 @@ Name: sopwith Version: 1.7.1 -Release: 8 +Release: 9 Summary: SDL port of the sopwith game Group: Amusements/Games @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:35:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:35:46 +0000 (UTC) Subject: rpms/sos/devel sos.spec,1.12,1.13 Message-ID: <20090727043546.3C92411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31129 Modified Files: sos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sos.spec =================================================================== RCS file: /cvs/pkgs/rpms/sos/devel/sos.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sos.spec 23 Jul 2009 16:00:59 -0000 1.12 +++ sos.spec 27 Jul 2009 04:35:46 -0000 1.13 @@ -3,7 +3,7 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos Version: 1.8 -Release: 14%{?dist} +Release: 15%{?dist} Group: Applications/System Source0: https://fedorahosted.org/releases/s/o/sos/%{name}-%{version}.tar.gz License: GPLv2+ @@ -53,6 +53,9 @@ rm -rf ${RPM_BUILD_ROOT} %config %{_sysconfdir}/sos.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Stokes = 1.8-14 - resolves: rhbz512536 wrong group in spec file - resolves: rhbz498398 A series of refactoring patches to sos From jkeating at fedoraproject.org Mon Jul 27 04:36:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:36:00 +0000 (UTC) Subject: rpms/sound-theme-freedesktop/devel sound-theme-freedesktop.spec, 1.7, 1.8 Message-ID: <20090727043600.2F5F311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sound-theme-freedesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31546 Modified Files: sound-theme-freedesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sound-theme-freedesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/sound-theme-freedesktop/devel/sound-theme-freedesktop.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sound-theme-freedesktop.spec 26 Feb 2009 02:07:51 -0000 1.7 +++ sound-theme-freedesktop.spec 27 Jul 2009 04:36:00 -0000 1.8 @@ -1,6 +1,6 @@ Name: sound-theme-freedesktop Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: freedesktop.org sound theme Group: User Interface/Desktops Source0: http://people.freedesktop.org/~mccann/dist/sound-theme-freedesktop-%{version}.tar.bz2 @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sounds/freedesktop/stereo/*.ogg %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:36:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:36:26 +0000 (UTC) Subject: rpms/soundmodem/devel soundmodem.spec,1.7,1.8 Message-ID: <20090727043626.4770011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soundmodem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32195 Modified Files: soundmodem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soundmodem.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundmodem/devel/soundmodem.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- soundmodem.spec 1 Jul 2009 09:27:43 -0000 1.7 +++ soundmodem.spec 27 Jul 2009 04:36:26 -0000 1.8 @@ -1,6 +1,6 @@ Name: soundmodem Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Soundcard Packet Radio Modem Group: Applications/Communications License: GPLv2+ @@ -85,6 +85,9 @@ fi %{_includedir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Lucian Langa - 0.14-1 - new upstream release From jkeating at fedoraproject.org Mon Jul 27 04:36:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:36:13 +0000 (UTC) Subject: rpms/soundconverter/devel soundconverter.spec,1.21,1.22 Message-ID: <20090727043613.18B2D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soundconverter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31902 Modified Files: soundconverter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soundconverter.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundconverter/devel/soundconverter.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- soundconverter.spec 26 Feb 2009 02:08:54 -0000 1.21 +++ soundconverter.spec 27 Jul 2009 04:36:12 -0000 1.22 @@ -1,6 +1,6 @@ Name: soundconverter Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple sound converter application for GNOME Group: Applications/Multimedia @@ -83,6 +83,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:36:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:36:40 +0000 (UTC) Subject: rpms/soundtouch/devel soundtouch.spec,1.12,1.13 Message-ID: <20090727043640.0FF2711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soundtouch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32357 Modified Files: soundtouch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soundtouch.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundtouch/devel/soundtouch.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- soundtouch.spec 26 Feb 2009 02:10:47 -0000 1.12 +++ soundtouch.spec 27 Jul 2009 04:36:39 -0000 1.13 @@ -1,6 +1,6 @@ Name: soundtouch Version: 1.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Audio Processing library for changing Tempo, Pitch and Playback Rates License: LGPLv2+ Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:36:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:36:52 +0000 (UTC) Subject: rpms/soundtracker/devel soundtracker.spec,1.16,1.17 Message-ID: <20090727043652.4BB5711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/soundtracker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32547 Modified Files: soundtracker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: soundtracker.spec =================================================================== RCS file: /cvs/pkgs/rpms/soundtracker/devel/soundtracker.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- soundtracker.spec 26 Feb 2009 02:11:49 -0000 1.16 +++ soundtracker.spec 27 Jul 2009 04:36:52 -0000 1.17 @@ -1,6 +1,6 @@ Name: soundtracker Version: 0.6.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Sound module composer/player @@ -56,6 +56,9 @@ rm -rf %{buildroot} %{_datadir}/soundtracker/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:37:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:37:07 +0000 (UTC) Subject: rpms/source-highlight/devel source-highlight.spec,1.23,1.24 Message-ID: <20090727043707.4064711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/source-highlight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32719 Modified Files: source-highlight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: source-highlight.spec =================================================================== RCS file: /cvs/pkgs/rpms/source-highlight/devel/source-highlight.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- source-highlight.spec 26 Feb 2009 02:12:47 -0000 1.23 +++ source-highlight.spec 27 Jul 2009 04:37:07 -0000 1.24 @@ -1,7 +1,7 @@ Summary: Produces a document with syntax highlighting Name: source-highlight Version: 2.10 -Release: 3%{?dist} +Release: 4%{?dist} Group: Development/Tools License: GPLv3+ Source0: ftp://ftp.gnu.org/gnu/src-highlite/source-highlight-2.10.tar.gz @@ -63,6 +63,9 @@ fi %{_infodir}/source-highlight.info* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:37:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:37:27 +0000 (UTC) Subject: rpms/sox/devel sox.spec,1.42,1.43 Message-ID: <20090727043727.8C47711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv485 Modified Files: sox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sox.spec =================================================================== RCS file: /cvs/pkgs/rpms/sox/devel/sox.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sox.spec 26 Feb 2009 02:14:23 -0000 1.42 +++ sox.spec 27 Jul 2009 04:37:27 -0000 1.43 @@ -1,7 +1,7 @@ Summary: A general purpose sound file conversion tool Name: sox Version: 14.2.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://prdownloads.sourceforge.net/sox/sox-%{version}.tar.gz @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 14.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 14.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:37:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:37:39 +0000 (UTC) Subject: rpms/spacechart/devel spacechart.spec,1.4,1.5 Message-ID: <20090727043739.ACABB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spacechart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv612 Modified Files: spacechart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spacechart.spec =================================================================== RCS file: /cvs/pkgs/rpms/spacechart/devel/spacechart.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- spacechart.spec 6 Apr 2009 20:07:18 -0000 1.4 +++ spacechart.spec 27 Jul 2009 04:37:39 -0000 1.5 @@ -1,6 +1,6 @@ Name: spacechart Version: 0.9.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A 3D star-mapping program Group: Applications/Engineering @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 6 2009 Lubomir Rintel (Fedora Astronomy) - 0.9.5-4 - Fix a couple of crashes - Accept a file to open as command line argument, default to shipped map From jkeating at fedoraproject.org Mon Jul 27 04:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:37:50 +0000 (UTC) Subject: rpms/spacewalk-proxy-docs/devel spacewalk-proxy-docs.spec,1.1,1.2 Message-ID: <20090727043750.B70D111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spacewalk-proxy-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv768 Modified Files: spacewalk-proxy-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spacewalk-proxy-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/spacewalk-proxy-docs/devel/spacewalk-proxy-docs.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- spacewalk-proxy-docs.spec 16 Jul 2009 07:39:46 -0000 1.1 +++ spacewalk-proxy-docs.spec 27 Jul 2009 04:37:50 -0000 1.2 @@ -5,7 +5,7 @@ License: Open Publication URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Obsoletes: rhns-proxy-docs < 5.3.0 @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT # $Id$ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Miroslav Suchy 0.6.2-1 - clarify the license. It is Open Publication instead of GPLv2 From jkeating at fedoraproject.org Mon Jul 27 04:38:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:01 +0000 (UTC) Subject: rpms/spamass-milter/devel spamass-milter.spec,1.20,1.21 Message-ID: <20090727043801.8C38211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spamass-milter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv912 Modified Files: spamass-milter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spamass-milter.spec =================================================================== RCS file: /cvs/pkgs/rpms/spamass-milter/devel/spamass-milter.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- spamass-milter.spec 24 Apr 2009 16:01:25 -0000 1.20 +++ spamass-milter.spec 27 Jul 2009 04:38:01 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Milter (mail filter) for spamassassin Name: spamass-milter Version: 0.3.1 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://savannah.nongnu.org/projects/spamass-milt/ @@ -123,6 +123,9 @@ fi %dir %attr(-,sa-milt,postfix) %{_localstatedir}/run/spamass-milter/postfix/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Paul Howarth 0.3.1-14 - Fix Received-header generation (#496763) - Add authentication info to dummy Received-header (#496769) From jkeating at fedoraproject.org Mon Jul 27 04:38:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:13 +0000 (UTC) Subject: rpms/spamassassin/devel spamassassin.spec,1.114,1.115 Message-ID: <20090727043813.A751911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spamassassin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1065 Modified Files: spamassassin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spamassassin.spec =================================================================== RCS file: /cvs/pkgs/rpms/spamassassin/devel/spamassassin.spec,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- spamassassin.spec 7 Jul 2009 21:15:37 -0000 1.114 +++ spamassassin.spec 27 Jul 2009 04:38:13 -0000 1.115 @@ -42,7 +42,7 @@ Summary: Spam filter for email which can Name: spamassassin Version: 3.3.0 %define prename alpha1 -Release: 0.2.alpha1%{?dist} +Release: 0.3.alpha1%{?dist} %define rules_ver 791756 License: ASL 2.0 Group: Applications/Internet @@ -234,6 +234,9 @@ fi exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.3.0-0.3.alpha1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Warren Togami - 3.3.0-0.2.alpha1 - Include default rules to prevent mass confusion and complaints. You should really use sa-update though. Really. From jkeating at fedoraproject.org Mon Jul 27 04:38:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:24 +0000 (UTC) Subject: rpms/spambayes/devel spambayes.spec,1.4,1.5 Message-ID: <20090727043824.38DB111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spambayes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1203 Modified Files: spambayes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spambayes.spec =================================================================== RCS file: /cvs/pkgs/rpms/spambayes/devel/spambayes.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- spambayes.spec 26 Feb 2009 02:18:20 -0000 1.4 +++ spambayes.spec 27 Jul 2009 04:38:23 -0000 1.5 @@ -2,7 +2,7 @@ Name: spambayes Version: 1.0.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Bayesian anti-spam filter Group: Development/Languages @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:38:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:35 +0000 (UTC) Subject: rpms/spampd/devel spampd.spec,1.5,1.6 Message-ID: <20090727043835.E9BB211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spampd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1367 Modified Files: spampd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spampd.spec =================================================================== RCS file: /cvs/pkgs/rpms/spampd/devel/spampd.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- spampd.spec 8 May 2009 16:23:38 -0000 1.5 +++ spampd.spec 27 Jul 2009 04:38:35 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Transparent SMTP/LMTP proxy filter using spamassassin Name: spampd Version: 2.30 -Release: 7 +Release: 8 License: GPLv2+ Group: System Environment/Daemons URL: http://www.worlddesign.com/index.cfm/rd/mta/spampd.htm @@ -85,6 +85,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.30-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Matthias Saou 2.30-7 - Require perl(Mail::SPF::Query) to have SPF checks available by default. From jkeating at fedoraproject.org Mon Jul 27 04:38:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:47 +0000 (UTC) Subject: rpms/spandsp/devel spandsp.spec,1.27,1.28 Message-ID: <20090727043847.3B3EF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spandsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1532 Modified Files: spandsp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spandsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/spandsp/devel/spandsp.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- spandsp.spec 26 Feb 2009 02:20:21 -0000 1.27 +++ spandsp.spec 27 Jul 2009 04:38:47 -0000 1.28 @@ -3,7 +3,7 @@ Summary: A DSP library for telephony Name: spandsp Version: 0.0.5 -Release: 0.2%{?pre:.pre%{pre}}%{?dist} +Release: 0.3%{?pre:.pre%{pre}}%{?dist} License: LGPLv2 and GPLv2 Group: System Environment/Libraries URL: http://www.soft-switch.org/ @@ -87,6 +87,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.5-0.3.pre4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.5-0.2.pre4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:38:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:38:58 +0000 (UTC) Subject: rpms/sparse/devel sparse.spec,1.11,1.12 Message-ID: <20090727043858.5C62611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1692 Modified Files: sparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/sparse/devel/sparse.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sparse.spec 26 Feb 2009 02:21:22 -0000 1.11 +++ sparse.spec 27 Jul 2009 04:38:58 -0000 1.12 @@ -1,6 +1,6 @@ Name: sparse Version: 0.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A semantic parser of source files Group: Development/Tools License: OSL 1.1 @@ -82,6 +82,9 @@ make clean %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:39:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:39:12 +0000 (UTC) Subject: rpms/spawn/devel spawn.spec,1.1,1.2 Message-ID: <20090727043912.58F1011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spawn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1826 Modified Files: spawn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spawn.spec =================================================================== RCS file: /cvs/pkgs/rpms/spawn/devel/spawn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- spawn.spec 27 Apr 2009 14:28:53 -0000 1.1 +++ spawn.spec 27 Jul 2009 04:39:11 -0000 1.2 @@ -1,6 +1,6 @@ Name: spawn Version: 0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple tool to run several Linux command-lines in parallel Group: Applications/System @@ -45,6 +45,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Fabian Affolter - 0.1-1 - Initial package for Fedora From jkeating at fedoraproject.org Mon Jul 27 04:39:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:39:27 +0000 (UTC) Subject: rpms/spe/devel spe.spec,1.2,1.3 Message-ID: <20090727043927.851DE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2016 Modified Files: spe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spe.spec =================================================================== RCS file: /cvs/pkgs/rpms/spe/devel/spe.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spe.spec 26 Feb 2009 02:22:21 -0000 1.2 +++ spe.spec 27 Jul 2009 04:39:27 -0000 1.3 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: spe Version: 0.8.4.h -Release: 5%{?dist} +Release: 6%{?dist} Summary: Python IDE with UML,PyChecker,Debugger,GUI design,Blender & more Group: Development/Tools License: GPLv2+ @@ -87,6 +87,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.4.h-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.4.h-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:39:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:39:38 +0000 (UTC) Subject: rpms/specspo/devel specspo.spec,1.43,1.44 Message-ID: <20090727043938.3CF4F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/specspo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2175 Modified Files: specspo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: specspo.spec =================================================================== RCS file: /cvs/pkgs/rpms/specspo/devel/specspo.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- specspo.spec 26 Feb 2009 02:23:19 -0000 1.43 +++ specspo.spec 27 Jul 2009 04:39:38 -0000 1.44 @@ -1,7 +1,7 @@ Summary: Fedora package descriptions, summaries, and groups. Name: specspo Version: 16 -Release: 2 +Release: 3 Group: Documentation Source: specspo-%{version}.tar.bz2 # No version given, only license attribution is spec file @@ -39,6 +39,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/rpm/macros.specspo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:39:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:39:52 +0000 (UTC) Subject: rpms/specto/devel specto.spec,1.10,1.11 Message-ID: <20090727043952.6A80611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/specto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2306 Modified Files: specto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: specto.spec =================================================================== RCS file: /cvs/pkgs/rpms/specto/devel/specto.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- specto.spec 26 Feb 2009 02:24:18 -0000 1.10 +++ specto.spec 27 Jul 2009 04:39:51 -0000 1.11 @@ -2,7 +2,7 @@ Name: specto Version: 0.3 -Release: 0.2.rc1%{?dist} +Release: 0.3.rc1%{?dist} Summary: An desktop application that will watch configurable events Group: Applications/System @@ -85,6 +85,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-0.3.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-0.2.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:40:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:40:04 +0000 (UTC) Subject: rpms/speech-dispatcher/devel speech-dispatcher.spec,1.12,1.13 Message-ID: <20090727044004.8A23F11C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/speech-dispatcher/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2482 Modified Files: speech-dispatcher.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: speech-dispatcher.spec =================================================================== RCS file: /cvs/pkgs/rpms/speech-dispatcher/devel/speech-dispatcher.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- speech-dispatcher.spec 20 May 2009 11:15:01 -0000 1.12 +++ speech-dispatcher.spec 27 Jul 2009 04:40:04 -0000 1.13 @@ -12,7 +12,7 @@ Name: speech-dispatcher Version: 0.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: To provide a high-level device independent layer for speech synthesis Group: System Environment/Libraries @@ -264,6 +264,9 @@ fi %{python_sitelib}/speechd* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Peter Robinson - 0.6.7-1 - New upstream release, some spec file cleanups. From jkeating at fedoraproject.org Mon Jul 27 04:40:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:40:18 +0000 (UTC) Subject: rpms/speedcrunch/devel speedcrunch.spec,1.14,1.15 Message-ID: <20090727044018.7875011C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/speedcrunch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2630 Modified Files: speedcrunch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: speedcrunch.spec =================================================================== RCS file: /cvs/pkgs/rpms/speedcrunch/devel/speedcrunch.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- speedcrunch.spec 26 Feb 2009 02:26:15 -0000 1.14 +++ speedcrunch.spec 27 Jul 2009 04:40:18 -0000 1.15 @@ -1,6 +1,6 @@ Name: speedcrunch Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A fast power user calculator for KDE Group: Applications/Engineering @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/speedcrunch.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:40:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:40:34 +0000 (UTC) Subject: rpms/speex/devel speex.spec,1.30,1.31 Message-ID: <20090727044034.3FB4111C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/speex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2800 Modified Files: speex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: speex.spec =================================================================== RCS file: /cvs/pkgs/rpms/speex/devel/speex.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- speex.spec 26 Feb 2009 02:27:09 -0000 1.30 +++ speex.spec 27 Jul 2009 04:40:34 -0000 1.31 @@ -2,7 +2,7 @@ Summary: A voice compression format (cod Name: speex Version: 1.2 %define rc_ver rc1 -Release: 0.11.%{rc_ver}%{?dist} +Release: 0.12.%{rc_ver}%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.speex.org/ @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/speexdec.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-0.12.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-0.11.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:40:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:40:49 +0000 (UTC) Subject: rpms/spicctrl/devel spicctrl.spec,1.10,1.11 Message-ID: <20090727044049.0656611C048A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spicctrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2990 Modified Files: spicctrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spicctrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/spicctrl/devel/spicctrl.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- spicctrl.spec 26 Feb 2009 02:28:08 -0000 1.10 +++ spicctrl.spec 27 Jul 2009 04:40:48 -0000 1.11 @@ -1,6 +1,6 @@ Name: spicctrl Version: 1.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Sony Vaio laptop SPIC control program Group: Applications/System @@ -61,6 +61,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:41:04 +0000 (UTC) Subject: rpms/spicebird/devel spicebird.spec,1.7,1.8 Message-ID: <20090727044104.5E39C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spicebird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3160 Modified Files: spicebird.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spicebird.spec =================================================================== RCS file: /cvs/pkgs/rpms/spicebird/devel/spicebird.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- spicebird.spec 30 Mar 2009 15:55:27 -0000 1.7 +++ spicebird.spec 27 Jul 2009 04:41:03 -0000 1.8 @@ -10,7 +10,7 @@ Summary: Synovel Spicebird PIM client Name: spicebird Version: 0.7.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.spicebird.org/ License: GPLv2+ Group: Applications/Internet @@ -265,6 +265,9 @@ fi #=============================================================================== %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Steven M. Parrish 0.7.1-1 - New Upstream release From jkeating at fedoraproject.org Mon Jul 27 04:41:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:41:16 +0000 (UTC) Subject: rpms/spin-kickstarts/devel spin-kickstarts.spec,1.6,1.7 Message-ID: <20090727044116.2556E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spin-kickstarts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3316 Modified Files: spin-kickstarts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spin-kickstarts.spec =================================================================== RCS file: /cvs/pkgs/rpms/spin-kickstarts/devel/spin-kickstarts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- spin-kickstarts.spec 16 May 2009 12:04:37 -0000 1.6 +++ spin-kickstarts.spec 27 Jul 2009 04:41:16 -0000 1.7 @@ -1,6 +1,6 @@ Name: spin-kickstarts Version: 0.11.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Summary: Kickstart files and templates for creating your own Fedora Spins Group: Applications/System @@ -33,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Jeroen van Meeuwen 0.11.3-1 - New release - Removed developer spin from the mix From jkeating at fedoraproject.org Mon Jul 27 04:41:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:41:28 +0000 (UTC) Subject: rpms/splat/devel splat.spec,1.7,1.8 Message-ID: <20090727044128.63FE011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/splat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3473 Modified Files: splat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: splat.spec =================================================================== RCS file: /cvs/pkgs/rpms/splat/devel/splat.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- splat.spec 8 May 2009 21:09:47 -0000 1.7 +++ splat.spec 27 Jul 2009 04:41:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: splat Version: 1.2.3 -Release: 6%{?dist} +Release: 7%{?dist} Provides: splat-utils = %{version}-%{release} Obsoletes: splat-utils < 1.2.3-2 @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 8 2009 Randall J. Berry - 1.2.3-6 - Update CVS - Build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Mon Jul 27 04:41:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:41:40 +0000 (UTC) Subject: rpms/splint/devel splint.spec,1.12,1.13 Message-ID: <20090727044140.CD60711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/splint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3631 Modified Files: splint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: splint.spec =================================================================== RCS file: /cvs/pkgs/rpms/splint/devel/splint.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- splint.spec 26 Feb 2009 02:32:11 -0000 1.12 +++ splint.spec 27 Jul 2009 04:41:40 -0000 1.13 @@ -1,6 +1,6 @@ Name: splint Version: 3.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An implementation of the lint program Group: Development/Tools @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:41:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:41:53 +0000 (UTC) Subject: rpms/sportrop-fonts/devel sportrop-fonts.spec,1.3,1.4 Message-ID: <20090727044153.35E3211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sportrop-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3783 Modified Files: sportrop-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sportrop-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/sportrop-fonts/devel/sportrop-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sportrop-fonts.spec 9 Mar 2009 17:49:08 -0000 1.3 +++ sportrop-fonts.spec 27 Jul 2009 04:41:53 -0000 1.4 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A multiline decorative font Group: User Interface/X @@ -65,6 +65,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Jon Stanley - 0.9-6 - Update to new packaging guidelines From jkeating at fedoraproject.org Mon Jul 27 04:42:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:42:12 +0000 (UTC) Subject: rpms/spr/devel spr.spec,1.11,1.12 Message-ID: <20090727044212.7C8AF11C02BC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3962 Modified Files: spr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spr.spec =================================================================== RCS file: /cvs/pkgs/rpms/spr/devel/spr.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- spr.spec 18 Jul 2009 16:12:31 -0000 1.11 +++ spr.spec 27 Jul 2009 04:42:11 -0000 1.12 @@ -1,6 +1,6 @@ Name: spr Version: 3.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Library for categorization of data @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:3.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Wart - 1:3.3.2-2 - Add Epoch: due to non-increasing version change upatream From jkeating at fedoraproject.org Mon Jul 27 04:42:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:42:27 +0000 (UTC) Subject: rpms/spring/devel spring.spec,1.4,1.5 Message-ID: <20090727044227.944CD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spring/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4117 Modified Files: spring.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spring.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring/devel/spring.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- spring.spec 19 Jul 2009 06:59:19 -0000 1.4 +++ spring.spec 27 Jul 2009 04:42:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: spring Version: 0.79.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Multiplayer, 3D realtime strategy combat game Group: Amusements/Games @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.79.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 19 2009 Aurelien Bompard 0.79.1.2-2 - use OpenJDK's version of Java From jkeating at fedoraproject.org Mon Jul 27 04:42:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:42:39 +0000 (UTC) Subject: rpms/spring-installer/devel spring-installer.spec,1.5,1.6 Message-ID: <20090727044239.B944E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spring-installer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4288 Modified Files: spring-installer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spring-installer.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring-installer/devel/spring-installer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- spring-installer.spec 16 Apr 2009 09:26:13 -0000 1.5 +++ spring-installer.spec 27 Jul 2009 04:42:39 -0000 1.6 @@ -1,6 +1,6 @@ Name: spring-installer Version: 20090316 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Installer for the Spring game's maps and mods Group: Amusements/Games @@ -130,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090316-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 04:42:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:42:53 +0000 (UTC) Subject: rpms/spring-maps-default/devel spring-maps-default.spec,1.2,1.3 Message-ID: <20090727044253.3CC0A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spring-maps-default/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4467 Modified Files: spring-maps-default.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spring-maps-default.spec =================================================================== RCS file: /cvs/pkgs/rpms/spring-maps-default/devel/spring-maps-default.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- spring-maps-default.spec 22 Mar 2009 14:38:52 -0000 1.2 +++ spring-maps-default.spec 27 Jul 2009 04:42:53 -0000 1.3 @@ -1,6 +1,6 @@ Name: spring-maps-default Version: 0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Default maps for Spring Group: Amusements/Games @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Aurelien Bompard 0.1-5 - rebuild From jkeating at fedoraproject.org Mon Jul 27 04:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:43:09 +0000 (UTC) Subject: rpms/springlobby/devel springlobby.spec,1.8,1.9 Message-ID: <20090727044309.9AC0A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/springlobby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4655 Modified Files: springlobby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: springlobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/springlobby/devel/springlobby.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- springlobby.spec 18 Jul 2009 21:03:51 -0000 1.8 +++ springlobby.spec 27 Jul 2009 04:43:09 -0000 1.9 @@ -1,6 +1,6 @@ Name: springlobby Version: 0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lobby client for the spring RTS game engine Group: Amusements/Games @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Aurelien Bompard 0.3 - version 0.3 From jkeating at fedoraproject.org Mon Jul 27 04:43:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:43:23 +0000 (UTC) Subject: rpms/spu-binutils/devel spu-binutils.spec,1.10,1.11 Message-ID: <20090727044323.498B111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/spu-binutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4847 Modified Files: spu-binutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: spu-binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/spu-binutils/devel/spu-binutils.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- spu-binutils.spec 26 Feb 2009 02:35:02 -0000 1.10 +++ spu-binutils.spec 27 Jul 2009 04:43:23 -0000 1.11 @@ -18,7 +18,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.19.50.0.1 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -352,6 +352,9 @@ fi %endif # !%{isnative} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.19.50.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.19.50.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:43:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:43:35 +0000 (UTC) Subject: rpms/sqlgrey/devel sqlgrey.spec,1.4,1.5 Message-ID: <20090727044335.EFC3311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sqlgrey/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5029 Modified Files: sqlgrey.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sqlgrey.spec =================================================================== RCS file: /cvs/pkgs/rpms/sqlgrey/devel/sqlgrey.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sqlgrey.spec 26 Feb 2009 02:36:04 -0000 1.4 +++ sqlgrey.spec 27 Jul 2009 04:43:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: sqlgrey Version: 1.7.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Postfix grey-listing policy service Group: System Environment/Daemons License: GPLv2+ @@ -82,6 +82,9 @@ if [ "$1" -eq 0 ]; then fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mclasen at fedoraproject.org Mon Jul 27 04:43:29 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 04:43:29 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer.spec, 1.273, 1.274 Message-ID: <20090727044329.9C6BC11C0094@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4809 Modified Files: system-config-printer.spec Log Message: Drop no longer used python-sexy dep Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.273 retrieving revision 1.274 diff -u -p -r1.273 -r1.274 --- system-config-printer.spec 26 Jul 2009 20:10:11 -0000 1.273 +++ system-config-printer.spec 27 Jul 2009 04:43:29 -0000 1.274 @@ -7,7 +7,7 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base @@ -42,7 +42,6 @@ Requires: gnome-icon-theme Requires: desktop-notification-daemon Requires: notify-python Requires: gnome-python2-gnomekeyring -Requires: python-sexy Requires: libxml2-python Obsoletes: system-config-printer-gui <= 0.6.152 @@ -195,6 +194,9 @@ rm -rf %buildroot exit 0 %changelog +* Mon Jul 27 2009 Matthias Clasen 1.1.10-6 +- Drop no-longer-used python-sexy dep + * Sun Jul 26 2009 Tim Waugh 1.1.10-5 - Split out D-Bus service for udev helper. Build requires dbus-glib-devel. From jkeating at fedoraproject.org Mon Jul 27 04:43:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:43:48 +0000 (UTC) Subject: rpms/sqlite/devel sqlite.spec,1.63,1.64 Message-ID: <20090727044348.5AFC311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sqlite/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5175 Modified Files: sqlite.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sqlite.spec =================================================================== RCS file: /cvs/pkgs/rpms/sqlite/devel/sqlite.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- sqlite.spec 12 Jun 2009 10:34:58 -0000 1.63 +++ sqlite.spec 27 Jul 2009 04:43:48 -0000 1.64 @@ -10,7 +10,7 @@ Summary: Library that implements an embeddable SQL database engine Name: sqlite Version: %{basever}.2 -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain Group: Applications/Databases URL: http://www.sqlite.org/ @@ -175,6 +175,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6.14.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Panu Matilainen - 3.6.14.2-1 - update to 3.6.14.2 (#505229) From jkeating at fedoraproject.org Mon Jul 27 04:43:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:43:59 +0000 (UTC) Subject: rpms/sqlite2/devel sqlite2.spec,1.4,1.5 Message-ID: <20090727044359.917DB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sqlite2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5324 Modified Files: sqlite2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sqlite2.spec =================================================================== RCS file: /cvs/pkgs/rpms/sqlite2/devel/sqlite2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sqlite2.spec 24 Mar 2009 04:14:46 -0000 1.4 +++ sqlite2.spec 27 Jul 2009 04:43:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: sqlite2 Version: 2.8.17 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Embeddable SQL engine in a C library Group: System Environment/Libraries @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/sqlite-%version %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8.17-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Alex Lancaster - 2.8.17-3 - Add patches to build with new TCL and fix tests (#491726) thanks to D. Marlin. From jkeating at fedoraproject.org Mon Jul 27 04:44:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:44:10 +0000 (UTC) Subject: rpms/sqliteman/devel sqliteman.spec,1.7,1.8 Message-ID: <20090727044410.B30A811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sqliteman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5492 Modified Files: sqliteman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sqliteman.spec =================================================================== RCS file: /cvs/pkgs/rpms/sqliteman/devel/sqliteman.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sqliteman.spec 29 Mar 2009 20:39:09 -0000 1.7 +++ sqliteman.spec 27 Jul 2009 04:44:10 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Manager for sqlite - Sqlite Databases Made Easy Name: sqliteman Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} # src is GPLv2+, icons are LGPLv2+ License: GPLv2+ and LGPLv2+ Group: Applications/Databases @@ -68,6 +68,9 @@ fi %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Terje Rosten - 1.2.1-1 - 1.2.1 From jkeating at fedoraproject.org Mon Jul 27 04:44:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:44:21 +0000 (UTC) Subject: rpms/squashfs-tools/devel squashfs-tools.spec,1.23,1.24 Message-ID: <20090727044421.4955511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squashfs-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5661 Modified Files: squashfs-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squashfs-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/squashfs-tools/devel/squashfs-tools.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- squashfs-tools.spec 5 Apr 2009 23:40:32 -0000 1.23 +++ squashfs-tools.spec 27 Jul 2009 04:44:21 -0000 1.24 @@ -2,7 +2,7 @@ Summary: Utility for the creation of squ Name: squashfs-tools Version: 4.0 # cvs snapshot from cvs -d:pserver:anonymous at squashfs.cvs.sourceforge.net:/cvsroot/squashfs co squashfs on 2009-01-25 -Release: 1 +Release: 2 License: GPLv2+ Group: System Environment/Base URL: http://squashfs.sf.net @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/unsquashfs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Kyle McMartin - 4.0-1 - Update to release 4.0 From jkeating at fedoraproject.org Mon Jul 27 04:44:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:44:33 +0000 (UTC) Subject: rpms/squeak-image/devel squeak-image.spec,1.2,1.3 Message-ID: <20090727044433.3BF8A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squeak-image/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5809 Modified Files: squeak-image.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squeak-image.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeak-image/devel/squeak-image.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- squeak-image.spec 26 Feb 2009 02:39:59 -0000 1.2 +++ squeak-image.spec 27 Jul 2009 04:44:32 -0000 1.3 @@ -4,7 +4,7 @@ Name: squeak-image Version: %{image_ver}.%{image_rel} -Release: 2%{?dist} +Release: 3%{?dist} Summary: The image files for Squeak Group: Development/Languages @@ -59,6 +59,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.10.2.7179-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.10.2.7179-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:44:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:44:46 +0000 (UTC) Subject: rpms/squeak-vm/devel squeak-vm.spec,1.3,1.4 Message-ID: <20090727044446.2FD9611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squeak-vm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5961 Modified Files: squeak-vm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squeak-vm.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeak-vm/devel/squeak-vm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- squeak-vm.spec 21 Jul 2009 04:12:24 -0000 1.3 +++ squeak-vm.spec 27 Jul 2009 04:44:46 -0000 1.4 @@ -5,7 +5,7 @@ Name: squeak-vm Version: %{major}.%{minor} -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Squeak virtual machine Group: Development/Languages @@ -218,6 +218,9 @@ update-desktop-database &> /dev/null || %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.10.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Gavin Romig-Koch - 3.10.5-1 - upgrade to new upstream - work around dprintf problem From jkeating at fedoraproject.org Mon Jul 27 04:44:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:44:57 +0000 (UTC) Subject: rpms/squeal/devel squeal.spec,1.1,1.2 Message-ID: <20090727044457.0FA8811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squeal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6110 Modified Files: squeal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squeal.spec =================================================================== RCS file: /cvs/pkgs/rpms/squeal/devel/squeal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- squeal.spec 7 Jul 2009 13:39:04 -0000 1.1 +++ squeal.spec 27 Jul 2009 04:44:56 -0000 1.2 @@ -2,7 +2,7 @@ Name: squeal Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Data manipulation tool for the command line Group: Development/Languages @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 David Malcolm - 0.4.1-1 - 0.4.1: add MANIFEST.in and COPYING files (LGPLv2.1); fix metadata; add debug option From jkeating at fedoraproject.org Mon Jul 27 04:45:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:45:17 +0000 (UTC) Subject: rpms/squid/devel squid.spec,1.128,1.129 Message-ID: <20090727044517.11CB911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6321 Modified Files: squid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squid.spec =================================================================== RCS file: /cvs/pkgs/rpms/squid/devel/squid.spec,v retrieving revision 1.128 retrieving revision 1.129 diff -u -p -r1.128 -r1.129 --- squid.spec 1 Jul 2009 08:42:14 -0000 1.128 +++ squid.spec 27 Jul 2009 04:45:16 -0000 1.129 @@ -4,7 +4,7 @@ Name: squid Version: 3.0.STABLE16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Squid proxy caching server Epoch: 7 License: GPLv2+ @@ -344,6 +344,9 @@ fi chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7:3.0.STABLE16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Jiri Skala 3.0.STABLE16-2 - fixed patch parameter of bXXX patches From jkeating at fedoraproject.org Mon Jul 27 04:45:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:45:39 +0000 (UTC) Subject: rpms/squidGuard/devel squidGuard.spec,1.18,1.19 Message-ID: <20090727044539.C80B211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squidGuard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6518 Modified Files: squidGuard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squidGuard.spec =================================================================== RCS file: /cvs/pkgs/rpms/squidGuard/devel/squidGuard.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- squidGuard.spec 5 Mar 2009 19:57:52 -0000 1.18 +++ squidGuard.spec 27 Jul 2009 04:45:39 -0000 1.19 @@ -7,7 +7,7 @@ Name: squidGuard Version: 1.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Filter, redirector and access controller plugin for squid Group: System Environment/Daemons @@ -186,6 +186,9 @@ fi %{_initrddir}/transparent-proxying %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Jon Ciesla - 1.4-4 - Initscript cleanup, BZ 247065. From jkeating at fedoraproject.org Mon Jul 27 04:45:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:45:52 +0000 (UTC) Subject: rpms/squirrel/devel squirrel.spec,1.4,1.5 Message-ID: <20090727044552.85DD311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squirrel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6669 Modified Files: squirrel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squirrel.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrel/devel/squirrel.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- squirrel.spec 1 Jul 2009 12:59:45 -0000 1.4 +++ squirrel.spec 27 Jul 2009 04:45:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: squirrel Version: 2.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: High level imperative/OO programming language Group: Development/Tools @@ -97,6 +97,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Dan Hor?k 2.2.3-1 - update to upstream version 2.2.3 From jkeating at fedoraproject.org Mon Jul 27 04:46:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:46:05 +0000 (UTC) Subject: rpms/squirrelmail/devel squirrelmail.spec,1.73,1.74 Message-ID: <20090727044605.91B6C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/squirrelmail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6821 Modified Files: squirrelmail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: squirrelmail.spec =================================================================== RCS file: /cvs/pkgs/rpms/squirrelmail/devel/squirrelmail.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- squirrelmail.spec 1 Jul 2009 08:48:13 -0000 1.73 +++ squirrelmail.spec 27 Jul 2009 04:46:05 -0000 1.74 @@ -6,7 +6,7 @@ Summary: SquirrelMail webmail client Name: squirrelmail Version: 1.4.19 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://www.squirrelmail.org/ Group: Applications/Internet @@ -269,6 +269,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/cron.daily/squirrelmail.cron %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.19-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Michal Hlavinka - 1.4.19-3 - change default configuration to use only ssl connections From jkeating at fedoraproject.org Mon Jul 27 04:46:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:46:17 +0000 (UTC) Subject: rpms/srecord/devel srecord.spec,1.25,1.26 Message-ID: <20090727044617.38B0A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/srecord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6980 Modified Files: srecord.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: srecord.spec =================================================================== RCS file: /cvs/pkgs/rpms/srecord/devel/srecord.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- srecord.spec 10 Jul 2009 20:58:18 -0000 1.25 +++ srecord.spec 27 Jul 2009 04:46:17 -0000 1.26 @@ -1,6 +1,6 @@ Name: srecord Version: 1.50 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manipulate EPROM load files Group: Development/Tools @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.50-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Tom "spot" Callaway - 1.50-2 - add BuildRequires: libgcrypt-devel From jkeating at fedoraproject.org Mon Jul 27 04:46:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:46:29 +0000 (UTC) Subject: rpms/srm/devel srm.spec,1.3,1.4 Message-ID: <20090727044629.E2F2811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/srm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7125 Modified Files: srm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: srm.spec =================================================================== RCS file: /cvs/pkgs/rpms/srm/devel/srm.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- srm.spec 14 Apr 2009 02:59:29 -0000 1.3 +++ srm.spec 27 Jul 2009 04:46:29 -0000 1.4 @@ -1,6 +1,6 @@ Name: srm Version: 1.2.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Secure file deletion Group: Applications/System @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 24 2009 Robert Scheck - 1.2.9-4 - Changed include order of ext3_fs.h and fs.h for gcc 4.4 builds From jkeating at fedoraproject.org Mon Jul 27 04:46:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:46:48 +0000 (UTC) Subject: rpms/ss5/devel ss5.spec,1.11,1.12 Message-ID: <20090727044648.609D311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ss5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7268 Modified Files: ss5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ss5.spec =================================================================== RCS file: /cvs/pkgs/rpms/ss5/devel/ss5.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ss5.spec 26 Feb 2009 02:47:26 -0000 1.11 +++ ss5.spec 27 Jul 2009 04:46:48 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Socks Server 5 Name: ss5 Version: 3.6.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://sourceforge.net/projects/ss5 @@ -80,6 +80,9 @@ fi %doc ChangeLog %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.6.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:47:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:47:01 +0000 (UTC) Subject: rpms/ssbd/devel ssbd.spec,1.2,1.3 Message-ID: <20090727044701.2CA4C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ssbd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7451 Modified Files: ssbd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ssbd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ssbd/devel/ssbd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ssbd.spec 26 Feb 2009 02:48:25 -0000 1.2 +++ ssbd.spec 27 Jul 2009 04:47:01 -0000 1.3 @@ -1,6 +1,6 @@ Name: ssbd Version: 0.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Voice keyer for use in hamradio Group: Applications/Communications @@ -78,6 +78,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:47:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:47:14 +0000 (UTC) Subject: rpms/sshfp/devel sshfp.spec,1.6,1.7 Message-ID: <20090727044714.2AF0E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sshfp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7591 Modified Files: sshfp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sshfp.spec =================================================================== RCS file: /cvs/pkgs/rpms/sshfp/devel/sshfp.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sshfp.spec 26 Feb 2009 02:49:24 -0000 1.6 +++ sshfp.spec 27 Jul 2009 04:47:14 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Generate SSHFP DNS records from knownhosts files or ssh-keyscan Name: sshfp Version: 1.1.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Url: http://www.xelerance.com/software/%{name} Source: ftp://ftp.xelerance.com/%{name}/%{name}-%{version}.tar.gz @@ -40,6 +40,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:47:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:47:25 +0000 (UTC) Subject: rpms/sshmenu/devel sshmenu.spec,1.3,1.4 Message-ID: <20090727044725.E8D3B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sshmenu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7730 Modified Files: sshmenu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sshmenu.spec =================================================================== RCS file: /cvs/pkgs/rpms/sshmenu/devel/sshmenu.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sshmenu.spec 9 May 2009 15:11:03 -0000 1.3 +++ sshmenu.spec 27 Jul 2009 04:47:25 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Application to organize SSH connection information in a menu Name: sshmenu Version: 3.16 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: User Interface/Desktops URL: http://sshmenu.sourceforge.net/ @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Matthias Saou 3.16-1 - Update to 3.16. From jkeating at fedoraproject.org Mon Jul 27 04:47:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:47:38 +0000 (UTC) Subject: rpms/ssm/devel ssm.spec,1.5,1.6 Message-ID: <20090727044738.8EE7911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ssm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7874 Modified Files: ssm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ssm.spec =================================================================== RCS file: /cvs/pkgs/rpms/ssm/devel/ssm.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- ssm.spec 25 May 2009 02:07:42 -0000 1.5 +++ ssm.spec 27 Jul 2009 04:47:38 -0000 1.6 @@ -3,7 +3,7 @@ Summary: Macromolecular coordinate superposition library Name: ssm Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.bioxray.au.dk/~mok/%{name} @@ -87,6 +87,9 @@ rm -rf %{buildroot} %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 19 2009 Tim Fenn - 1.0-1 - update to 1.0 From jkeating at fedoraproject.org Mon Jul 27 04:48:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:48:02 +0000 (UTC) Subject: rpms/sssd/devel sssd.spec,1.15,1.16 Message-ID: <20090727044802.26D9D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sssd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8124 Modified Files: sssd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sssd.spec =================================================================== RCS file: /cvs/pkgs/rpms/sssd/devel/sssd.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sssd.spec 22 Jun 2009 14:49:00 -0000 1.15 +++ sssd.spec 27 Jul 2009 04:48:02 -0000 1.16 @@ -1,6 +1,6 @@ Name: sssd Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/System Summary: System Security Services Daemon @@ -135,6 +135,9 @@ if [ $1 -ge 1 ] ; then fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Simo Sorce - 0.4.1-2 - Fix a couple of segfaults that may happen on reload From jkeating at fedoraproject.org Mon Jul 27 04:48:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:48:16 +0000 (UTC) Subject: rpms/ssss/devel ssss.spec,1.4,1.5 Message-ID: <20090727044816.1281F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ssss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8259 Modified Files: ssss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ssss.spec =================================================================== RCS file: /cvs/pkgs/rpms/ssss/devel/ssss.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- ssss.spec 26 Feb 2009 02:52:28 -0000 1.4 +++ ssss.spec 27 Jul 2009 04:48:15 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Shamir's secret sharing scheme Name: ssss Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Url: http://point-at-infinity.org/%{name} Source: http://point-at-infinity.org/%{name}/%{name}-%{version}.tar.gz @@ -43,6 +43,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:48:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:48:30 +0000 (UTC) Subject: rpms/staden-io_lib/devel staden-io_lib.spec,1.4,1.5 Message-ID: <20090727044830.26F0211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/staden-io_lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8415 Modified Files: staden-io_lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: staden-io_lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/staden-io_lib/devel/staden-io_lib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- staden-io_lib.spec 26 Feb 2009 02:53:26 -0000 1.4 +++ staden-io_lib.spec 27 Jul 2009 04:48:30 -0000 1.5 @@ -2,7 +2,7 @@ # staden-io_lib will be more recognizable for users Name: staden-io_lib Version: 1.11.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: General purpose library to handle gene sequencing machine trace files Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.11.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:48:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:48:42 +0000 (UTC) Subject: rpms/stalonetray/devel stalonetray.spec,1.3,1.4 Message-ID: <20090727044842.999F711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stalonetray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8550 Modified Files: stalonetray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stalonetray.spec =================================================================== RCS file: /cvs/pkgs/rpms/stalonetray/devel/stalonetray.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- stalonetray.spec 26 Feb 2009 02:54:28 -0000 1.3 +++ stalonetray.spec 27 Jul 2009 04:48:42 -0000 1.4 @@ -3,7 +3,7 @@ Name: stalonetray Version: 0.7.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A stand alone notification area Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:48:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:48:54 +0000 (UTC) Subject: rpms/stapitrace/devel stapitrace.spec,1.26,1.27 Message-ID: <20090727044854.2AA3311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stapitrace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8705 Modified Files: stapitrace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stapitrace.spec =================================================================== RCS file: /cvs/pkgs/rpms/stapitrace/devel/stapitrace.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- stapitrace.spec 8 Apr 2009 17:08:51 -0000 1.26 +++ stapitrace.spec 27 Jul 2009 04:48:54 -0000 1.27 @@ -6,7 +6,7 @@ Name: stapitrace Summary: Instruction Tracing Tool Version: 2.0.0 -Release: 0.%{alphatag}%{?dist} +Release: 0.%{alphatag}%{?dist}.1 License: GPLv2+ Group: Development/Tools URL: http://sourceforge.net/projects/perfinsp @@ -88,7 +88,10 @@ cd src/stap %{_bindir}/post %{_bindir}/itrace -%changelog -n itrace +%changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-0.20090304cvs_alpha.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 08 2009 Maynard Johnson - Fix build problems; rebase on earlier Performance Inspector CVS snapshot to align with RHEL upstream code deadline From jkeating at fedoraproject.org Mon Jul 27 04:49:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:49:09 +0000 (UTC) Subject: rpms/star/devel star.spec,1.48,1.49 Message-ID: <20090727044909.C6AAF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/star/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8867 Modified Files: star.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: star.spec =================================================================== RCS file: /cvs/pkgs/rpms/star/devel/star.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- star.spec 11 May 2009 10:20:54 -0000 1.48 +++ star.spec 27 Jul 2009 04:49:09 -0000 1.49 @@ -4,7 +4,7 @@ Summary: An archiving tool with ACL support Name: star Version: 1.5 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://cdrecord.berlios.de/old/private/star.html Source: ftp://ftp.berlios.de/pub/star/%{name}-%{version}.tar.bz2 Patch1: star-1.5-newMake.patch @@ -101,6 +101,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/spax.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 10 2009 Ville Skytt? - 1.5-5 - Build with $RPM_OPT_FLAGS. - Convert specfile to UTF-8. From jkeating at fedoraproject.org Mon Jul 27 04:49:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:49:25 +0000 (UTC) Subject: rpms/stardict/devel stardict.spec,1.65,1.66 Message-ID: <20090727044925.6F2BE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9100 Modified Files: stardict.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict/devel/stardict.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- stardict.spec 24 Apr 2009 23:31:32 -0000 1.65 +++ stardict.spec 27 Jul 2009 04:49:25 -0000 1.66 @@ -4,7 +4,7 @@ Name: %{name} Summary: A powerful dictionary platform written in GTK+2 Version: %{version} -Release: 17%{?dist} +Release: 18%{?dist} Group: Applications/System License: GPLv3 URL: http://stardict.sourceforge.net @@ -107,6 +107,9 @@ if which scrollkeeper-update>/dev/null 2 if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Milos Jakubicek - 3.0.1-17 - Fix FTBFS: added stardict-3.0.1.gcc44.patch From jkeating at fedoraproject.org Mon Jul 27 04:49:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:49:40 +0000 (UTC) Subject: rpms/stardict-dic-cs_CZ/devel stardict-dic-cs_CZ.spec,1.1,1.2 Message-ID: <20090727044940.28E2811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-cs_CZ/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9288 Modified Files: stardict-dic-cs_CZ.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-cs_CZ.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-cs_CZ/devel/stardict-dic-cs_CZ.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- stardict-dic-cs_CZ.spec 6 Mar 2009 13:25:49 -0000 1.1 +++ stardict-dic-cs_CZ.spec 27 Jul 2009 04:49:39 -0000 1.2 @@ -2,7 +2,7 @@ Name: stardict-dic-cs_CZ Summary: Czech dictionaries for StarDict Version: 20081201 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Text License: GFDL @@ -39,6 +39,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20081201-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 9 2009 Petr Sklenar - 20081201-2 - editing specfile - name and description From jkeating at fedoraproject.org Mon Jul 27 04:49:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:49:53 +0000 (UTC) Subject: rpms/stardict-dic-en/devel stardict-dic-en.spec,1.4,1.5 Message-ID: <20090727044953.487A911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-en/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9500 Modified Files: stardict-dic-en.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-en.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-en/devel/stardict-dic-en.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- stardict-dic-en.spec 26 Feb 2009 02:57:39 -0000 1.4 +++ stardict-dic-en.spec 27 Jul 2009 04:49:52 -0000 1.5 @@ -1,7 +1,7 @@ Name: stardict-dic-en Summary: English(en) dictionaries for StarDict Version: 2.4.2 -Release: 6%{?dist} +Release: 7%{?dist} Group: Applications/System License: MIT # The WordNet dictionary lives here: @@ -42,6 +42,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/stardict/dic/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:50:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:50:07 +0000 (UTC) Subject: rpms/stardict-dic-hi/devel stardict-dic-hi.spec,1.2,1.3 Message-ID: <20090727045007.56BBD11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-hi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9666 Modified Files: stardict-dic-hi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-hi.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-hi/devel/stardict-dic-hi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- stardict-dic-hi.spec 26 Feb 2009 02:58:37 -0000 1.2 +++ stardict-dic-hi.spec 27 Jul 2009 04:50:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: stardict-dic-hi Version: 3.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Hindi dictionary for stardict Group: Applications/System @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:50:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:50:19 +0000 (UTC) Subject: rpms/stardict-dic-ja/devel stardict-dic-ja.spec,1.3,1.4 Message-ID: <20090727045019.5014211C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-ja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9836 Modified Files: stardict-dic-ja.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-ja.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-ja/devel/stardict-dic-ja.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- stardict-dic-ja.spec 26 Feb 2009 02:59:35 -0000 1.3 +++ stardict-dic-ja.spec 27 Jul 2009 04:50:19 -0000 1.4 @@ -1,7 +1,7 @@ Name: stardict-dic-ja Summary: Japanese(ja) dictionaries for StarDict Version: 2.4.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System # Upstream calls this the "EDRDG" license # but it is just CC-BY-SA @@ -45,6 +45,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/stardict/dic/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:50:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:50:36 +0000 (UTC) Subject: rpms/stardict-dic-ru/devel stardict-dic-ru.spec,1.4,1.5 Message-ID: <20090727045036.9C01E11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-ru/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9991 Modified Files: stardict-dic-ru.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-ru.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-ru/devel/stardict-dic-ru.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- stardict-dic-ru.spec 26 Feb 2009 03:00:30 -0000 1.4 +++ stardict-dic-ru.spec 27 Jul 2009 04:50:36 -0000 1.5 @@ -1,7 +1,7 @@ Name: stardict-dic-ru Summary: Russian(ru) dictionaries for StarDict Version: 2.4.2 -Release: 6%{?dist} +Release: 7%{?dist} Group: Applications/System # Derived from: # http://www.geocities.com/mueller_dic/ @@ -43,6 +43,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/stardict/dic/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:50:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:50:48 +0000 (UTC) Subject: rpms/stardict-dic-zh_CN/devel stardict-dic-zh_CN.spec,1.3,1.4 Message-ID: <20090727045048.5947611C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-zh_CN/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10175 Modified Files: stardict-dic-zh_CN.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-zh_CN.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-zh_CN/devel/stardict-dic-zh_CN.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- stardict-dic-zh_CN.spec 26 Feb 2009 03:01:38 -0000 1.3 +++ stardict-dic-zh_CN.spec 27 Jul 2009 04:50:48 -0000 1.4 @@ -1,7 +1,7 @@ Name: stardict-dic-zh_CN Summary: Simplified Chinese(zh_CN) dictionaries for StarDict Version: 2.4.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPL+ URL: http://stardict.sourceforge.net @@ -63,6 +63,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/stardict/dic/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:50:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:50:59 +0000 (UTC) Subject: rpms/stardict-dic-zh_TW/devel stardict-dic-zh_TW.spec,1.3,1.4 Message-ID: <20090727045059.C44A911C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stardict-dic-zh_TW/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10346 Modified Files: stardict-dic-zh_TW.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stardict-dic-zh_TW.spec =================================================================== RCS file: /cvs/pkgs/rpms/stardict-dic-zh_TW/devel/stardict-dic-zh_TW.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- stardict-dic-zh_TW.spec 26 Feb 2009 03:02:33 -0000 1.3 +++ stardict-dic-zh_TW.spec 27 Jul 2009 04:50:59 -0000 1.4 @@ -1,7 +1,7 @@ Name: stardict-dic-zh_TW Summary: Traditional Chinese(zh_TW) dictionaries for StarDict Version: 2.4.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/System License: GPL+ URL: http://stardict.sourceforge.net @@ -60,6 +60,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/stardict/dic/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:51:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:51:12 +0000 (UTC) Subject: rpms/starlab/devel starlab.spec,1.6,1.7 Message-ID: <20090727045112.1DF8511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/starlab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10543 Modified Files: starlab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: starlab.spec =================================================================== RCS file: /cvs/pkgs/rpms/starlab/devel/starlab.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- starlab.spec 30 Apr 2009 20:23:06 -0000 1.6 +++ starlab.spec 27 Jul 2009 04:51:11 -0000 1.7 @@ -1,6 +1,6 @@ Name: starlab Version: 4.4.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Software Environment for Collisional Stellar Dynamics Group: Applications/Multimedia @@ -292,6 +292,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.4.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 30 2009 Lubomir Rintel (Fedora Astronomy) - 4.4.3-6 - Rename freeze to sl-freeze (#472616) From jkeating at fedoraproject.org Mon Jul 27 04:51:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:51:23 +0000 (UTC) Subject: rpms/starplot/devel starplot.spec,1.9,1.10 Message-ID: <20090727045123.4751811C0427@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/starplot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10671 Modified Files: starplot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: starplot.spec =================================================================== RCS file: /cvs/pkgs/rpms/starplot/devel/starplot.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- starplot.spec 26 Feb 2009 03:04:27 -0000 1.9 +++ starplot.spec 27 Jul 2009 04:51:23 -0000 1.10 @@ -1,7 +1,7 @@ Summary: 3-dimensional perspective star map viewer Name: starplot Version: 0.95.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Engineering URL: http://starplot.org/ @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/test.stars %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.95.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.95.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:51:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:51:41 +0000 (UTC) Subject: rpms/starplot-contrib/devel starplot-contrib.spec,1.2,1.3 Message-ID: <20090727045141.18EE511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/starplot-contrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10846 Modified Files: starplot-contrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: starplot-contrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/starplot-contrib/devel/starplot-contrib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- starplot-contrib.spec 26 Feb 2009 03:05:32 -0000 1.2 +++ starplot-contrib.spec 27 Jul 2009 04:51:40 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Stellar data set for use by the StarPlot tool Name: starplot-contrib Version: 3 -Release: 2%{?dist} +Release: 3%{?dist} License: Public Domain Group: Applications/Engineering URL: http://starplot.org/ @@ -34,6 +34,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/starplot/stars_with_planets3.stars %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:51:52 +0000 (UTC) Subject: rpms/starplot-gliese3/devel starplot-gliese3.spec,1.3,1.4 Message-ID: <20090727045152.65B2411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/starplot-gliese3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11041 Modified Files: starplot-gliese3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: starplot-gliese3.spec =================================================================== RCS file: /cvs/pkgs/rpms/starplot-gliese3/devel/starplot-gliese3.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- starplot-gliese3.spec 26 Feb 2009 03:06:33 -0000 1.3 +++ starplot-gliese3.spec 27 Jul 2009 04:51:52 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Stellar data set for use by the StarPlot tool Name: starplot-%{_dataset} Version: 0.95 -Release: 3%{?dist} +Release: 4%{?dist} License: Redistributable, no modification permitted Group: Applications/Engineering URL: http://starplot.org/ @@ -64,6 +64,9 @@ starpkg --dataset %{_datadir}/starplot/% %{_datadir}/starplot/%{_dataset}/orig-data %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.95-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.95-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:52:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:04 +0000 (UTC) Subject: rpms/starplot-yale5/devel starplot-yale5.spec,1.2,1.3 Message-ID: <20090727045204.4EF8111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/starplot-yale5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11208 Modified Files: starplot-yale5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: starplot-yale5.spec =================================================================== RCS file: /cvs/pkgs/rpms/starplot-yale5/devel/starplot-yale5.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- starplot-yale5.spec 26 Feb 2009 03:07:32 -0000 1.2 +++ starplot-yale5.spec 27 Jul 2009 04:52:04 -0000 1.3 @@ -3,7 +3,7 @@ Summary: Stellar data set for use by the StarPlot tool Name: starplot-%{_dataset} Version: 0.95 -Release: 3%{?dist} +Release: 4%{?dist} License: Redistributable, no modification permitted Group: Applications/Engineering URL: http://starplot.org/ @@ -60,6 +60,9 @@ starpkg --dataset %{_datadir}/starplot/% %{_datadir}/starplot/%{_dataset}/orig-data %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.95-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.95-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:52:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:16 +0000 (UTC) Subject: rpms/startup-notification/devel startup-notification.spec, 1.24, 1.25 Message-ID: <20090727045216.7C23C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/startup-notification/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11386 Modified Files: startup-notification.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: startup-notification.spec =================================================================== RCS file: /cvs/pkgs/rpms/startup-notification/devel/startup-notification.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- startup-notification.spec 13 Jul 2009 15:37:17 -0000 1.24 +++ startup-notification.spec 27 Jul 2009 04:52:16 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Library for tracking application startup Name: startup-notification Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.freedesktop.org/software/startup-notification/ Source0: http://www.freedesktop.org/software/startup-notification/releases/%{name}-%{version}.tar.gz License: LGPLv2 @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen 0.10-1 - Update to 0.10 From jkeating at fedoraproject.org Mon Jul 27 04:52:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:26 +0000 (UTC) Subject: rpms/statserial/devel statserial.spec,1.23,1.24 Message-ID: <20090727045226.3878C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/statserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11505 Modified Files: statserial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: statserial.spec =================================================================== RCS file: /cvs/pkgs/rpms/statserial/devel/statserial.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- statserial.spec 26 Feb 2009 03:09:33 -0000 1.23 +++ statserial.spec 27 Jul 2009 04:52:26 -0000 1.24 @@ -1,7 +1,7 @@ Summary: A tool which displays the status of serial port modem lines Name: statserial Version: 1.1 -Release: 42%{?dist} +Release: 43%{?dist} License: GPLv2+ Group: Applications/System URL: ftp://metalab.unc.edu/pub/Linux/system/serial/ @@ -47,6 +47,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-42 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:52:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:37 +0000 (UTC) Subject: rpms/steghide/devel steghide.spec,1.10,1.11 Message-ID: <20090727045237.BBC7211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/steghide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11641 Modified Files: steghide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: steghide.spec =================================================================== RCS file: /cvs/pkgs/rpms/steghide/devel/steghide.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- steghide.spec 26 Feb 2009 03:10:32 -0000 1.10 +++ steghide.spec 27 Jul 2009 04:52:37 -0000 1.11 @@ -1,7 +1,7 @@ Name: steghide Summary: A steganography program Version: 0.5.1 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2 Group: Applications/File From jkeating at fedoraproject.org Mon Jul 27 04:52:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:48 +0000 (UTC) Subject: rpms/stellarium/devel stellarium.spec,1.58,1.59 Message-ID: <20090727045248.2174111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stellarium/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11771 Modified Files: stellarium.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stellarium.spec =================================================================== RCS file: /cvs/pkgs/rpms/stellarium/devel/stellarium.spec,v retrieving revision 1.58 retrieving revision 1.59 diff -u -p -r1.58 -r1.59 --- stellarium.spec 2 Jul 2009 17:31:45 -0000 1.58 +++ stellarium.spec 27 Jul 2009 04:52:48 -0000 1.59 @@ -2,7 +2,7 @@ Name: stellarium Version: 0.10.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Photo-realistic nightsky renderer Group: Amusements/Graphics @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING stellarium_user_guide-%{guidever}.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Jochen Schmitt 0.10.2-3 - Rebuild for new boost release From jkeating at fedoraproject.org Mon Jul 27 04:52:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:52:59 +0000 (UTC) Subject: rpms/stgit/devel stgit.spec,1.12,1.13 Message-ID: <20090727045259.BC8FD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stgit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11902 Modified Files: stgit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stgit.spec =================================================================== RCS file: /cvs/pkgs/rpms/stgit/devel/stgit.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- stgit.spec 26 Feb 2009 03:12:32 -0000 1.12 +++ stgit.spec 27 Jul 2009 04:52:59 -0000 1.13 @@ -3,7 +3,7 @@ Name: stgit Version: 0.14.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Patch stack for Git repositories Group: Development/Tools @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.14.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:53:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:53:10 +0000 (UTC) Subject: rpms/stix-fonts/devel stix-fonts.spec,1.9,1.10 Message-ID: <20090727045310.EE34F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stix-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12052 Modified Files: stix-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stix-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/stix-fonts/devel/stix-fonts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- stix-fonts.spec 26 Feb 2009 03:13:33 -0000 1.9 +++ stix-fonts.spec 27 Jul 2009 04:53:10 -0000 1.10 @@ -11,7 +11,7 @@ creation through final publication, both Name: %{fontname}-fonts Version: 0.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: STIX scientific and engineering fonts Group: User Interface/X @@ -153,6 +153,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:53:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:53:26 +0000 (UTC) Subject: rpms/stk/devel stk.spec,1.4,1.5 Message-ID: <20090727045326.A7B5811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12271 Modified Files: stk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stk.spec =================================================================== RCS file: /cvs/pkgs/rpms/stk/devel/stk.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- stk.spec 26 Feb 2009 03:14:33 -0000 1.4 +++ stk.spec 27 Jul 2009 04:53:26 -0000 1.5 @@ -1,6 +1,6 @@ Name: stk Version: 4.3.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Synthesis ToolKit in C++ Group: System Environment/Libraries License: MIT @@ -185,6 +185,9 @@ symlinks -crv %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.3.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.3.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:53:39 +0000 (UTC) Subject: rpms/stormbaancoureur/devel stormbaancoureur.spec,1.13,1.14 Message-ID: <20090727045339.0DED611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stormbaancoureur/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12411 Modified Files: stormbaancoureur.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stormbaancoureur.spec =================================================================== RCS file: /cvs/pkgs/rpms/stormbaancoureur/devel/stormbaancoureur.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- stormbaancoureur.spec 26 Feb 2009 03:15:34 -0000 1.13 +++ stormbaancoureur.spec 27 Jul 2009 04:53:38 -0000 1.14 @@ -1,6 +1,6 @@ Name: stormbaancoureur Version: 2.1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simulated obstacle course for automobiles Group: Amusements/Games License: GPLv2+ @@ -93,6 +93,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:53:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:53:51 +0000 (UTC) Subject: rpms/stow/devel stow.spec,1.9,1.10 Message-ID: <20090727045351.4D92C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12570 Modified Files: stow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stow.spec =================================================================== RCS file: /cvs/pkgs/rpms/stow/devel/stow.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- stow.spec 26 Feb 2009 03:16:36 -0000 1.9 +++ stow.spec 27 Jul 2009 04:53:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: stow Version: 1.3.3 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Development/Tools @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:54:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:54:05 +0000 (UTC) Subject: rpms/stp/devel stp.spec,1.4,1.5 Message-ID: <20090727045405.2103211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12715 Modified Files: stp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stp.spec =================================================================== RCS file: /cvs/pkgs/rpms/stp/devel/stp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- stp.spec 6 Mar 2009 05:45:58 -0000 1.4 +++ stp.spec 27 Jul 2009 04:54:04 -0000 1.5 @@ -2,7 +2,7 @@ Name: stp Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Constraint solver/decision procedure Group: Applications/Engineering @@ -111,6 +111,9 @@ rm -rf %{buildroot} %{_includedir}/stp/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 6 2009 David A. Wheeler 0.1-4 - Re-sync with CVS From jkeating at fedoraproject.org Mon Jul 27 04:54:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:54:17 +0000 (UTC) Subject: rpms/strace/devel strace.spec,1.53,1.54 Message-ID: <20090727045417.CF9B811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/strace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12886 Modified Files: strace.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: strace.spec =================================================================== RCS file: /cvs/pkgs/rpms/strace/devel/strace.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- strace.spec 26 Feb 2009 03:17:32 -0000 1.53 +++ strace.spec 27 Jul 2009 04:54:17 -0000 1.54 @@ -1,7 +1,7 @@ Summary: Tracks and displays system calls associated with a running process Name: strace Version: 4.5.18 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Development/Debuggers URL: http://sourceforge.net/projects/strace/ @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.5.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.5.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:54:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:54:29 +0000 (UTC) Subject: rpms/stratagus/devel stratagus.spec,1.25,1.26 Message-ID: <20090727045429.D145A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stratagus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13076 Modified Files: stratagus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stratagus.spec =================================================================== RCS file: /cvs/pkgs/rpms/stratagus/devel/stratagus.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- stratagus.spec 3 Mar 2009 14:53:28 -0000 1.25 +++ stratagus.spec 27 Jul 2009 04:54:29 -0000 1.26 @@ -1,7 +1,7 @@ Name: stratagus Summary: Real-time strategy gaming engine Version: 2.2.4 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2 Group: Development/Libraries URL: http://stratagus.sourceforge.net/ @@ -70,6 +70,9 @@ install -D -p -m 755 %{name} $RPM_BUILD_ %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Caol?n McNamara - 2.2.4-7 - add stdio.h for stderr From jkeating at fedoraproject.org Mon Jul 27 04:54:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:54:45 +0000 (UTC) Subject: rpms/straw/devel straw.spec,1.19,1.20 Message-ID: <20090727045445.893F211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/straw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13260 Modified Files: straw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: straw.spec =================================================================== RCS file: /cvs/pkgs/rpms/straw/devel/straw.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- straw.spec 26 Feb 2009 03:19:23 -0000 1.19 +++ straw.spec 27 Jul 2009 04:54:45 -0000 1.20 @@ -5,7 +5,7 @@ Summary: Desktop news aggregator Name: straw Version: 0.27 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.gnome.org/projects/straw/ @@ -105,6 +105,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.27-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.27-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:54:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:54:58 +0000 (UTC) Subject: rpms/streamtuner/devel streamtuner.spec,1.17,1.18 Message-ID: <20090727045458.5195211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/streamtuner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13405 Modified Files: streamtuner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: streamtuner.spec =================================================================== RCS file: /cvs/pkgs/rpms/streamtuner/devel/streamtuner.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- streamtuner.spec 26 Feb 2009 03:20:19 -0000 1.17 +++ streamtuner.spec 27 Jul 2009 04:54:58 -0000 1.18 @@ -1,7 +1,7 @@ Summary: A stream directory browser Name: streamtuner Version: 0.99.99 -Release: 27%{?dist} +Release: 28%{?dist} URL: http://streamtuner.sourceforge.net Source0: http://download.savannah.nongnu.org/releases/streamtuner/streamtuner-0.99.99.tar.gz Source1: %{name}.png @@ -115,6 +115,9 @@ fi %{_libdir}/pkgconfig/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.99-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.99-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:55:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:55:10 +0000 (UTC) Subject: rpms/strigi/devel strigi.spec,1.42,1.43 Message-ID: <20090727045510.45AE511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/strigi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13546 Modified Files: strigi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: strigi.spec =================================================================== RCS file: /cvs/pkgs/rpms/strigi/devel/strigi.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- strigi.spec 23 Jul 2009 13:37:16 -0000 1.42 +++ strigi.spec 27 Jul 2009 04:55:10 -0000 1.43 @@ -3,7 +3,7 @@ Name: strigi Version: 0.7 -Release: 0.1.%{pre}%{?dist} +Release: 0.2.%{pre}%{?dist} Summary: A desktop search program Group: Applications/Productivity License: LGPLv2+ @@ -115,6 +115,9 @@ rm -rf %{buildroot} %{_libdir}/strigi/strigi*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7-0.2.RC1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Rex Dieter 0.7-0.1.RC1 - strigi-0.7-RC1 - use %%_isa where appropriate From jkeating at fedoraproject.org Mon Jul 27 04:55:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:55:22 +0000 (UTC) Subject: rpms/stringtemplate/devel stringtemplate.spec,1.3,1.4 Message-ID: <20090727045522.4F8A411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stringtemplate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13671 Modified Files: stringtemplate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stringtemplate.spec =================================================================== RCS file: /cvs/pkgs/rpms/stringtemplate/devel/stringtemplate.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- stringtemplate.spec 26 Feb 2009 03:22:24 -0000 1.3 +++ stringtemplate.spec 27 Jul 2009 04:55:22 -0000 1.4 @@ -1,7 +1,7 @@ Summary: A Java template engine Name: stringtemplate Version: 3.1 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.stringtemplate.org/ Source0: http://www.stringtemplate.org/download/stringtemplate-3.1.tar.gz # Both patches emailed to upstream 20080404 @@ -66,6 +66,9 @@ ant test %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:55:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:55:35 +0000 (UTC) Subject: rpms/stripesnoop/devel stripesnoop.spec,1.13,1.14 Message-ID: <20090727045535.8653511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stripesnoop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13813 Modified Files: stripesnoop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stripesnoop.spec =================================================================== RCS file: /cvs/pkgs/rpms/stripesnoop/devel/stripesnoop.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- stripesnoop.spec 26 Feb 2009 03:23:20 -0000 1.13 +++ stripesnoop.spec 27 Jul 2009 04:55:35 -0000 1.14 @@ -1,6 +1,6 @@ Name: stripesnoop Version: 1.5 -Release: 9%{?dist}.3 +Release: 10%{?dist}.3 License: GPL+ Group: Applications/System Summary: Magnetic Stripe Reader @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-10.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-9.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:55:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:55:48 +0000 (UTC) Subject: rpms/struts/devel struts.spec,1.55,1.56 Message-ID: <20090727045548.216A111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/struts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13938 Modified Files: struts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: struts.spec =================================================================== RCS file: /cvs/pkgs/rpms/struts/devel/struts.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- struts.spec 19 Jun 2009 21:17:45 -0000 1.55 +++ struts.spec 27 Jul 2009 04:55:47 -0000 1.56 @@ -54,7 +54,7 @@ Name: struts Version: 1.2.9 -Release: 6.12%{?dist} +Release: 7.12%{?dist} Epoch: 0 Summary: Web application framework License: ASL 2.0 @@ -1076,6 +1076,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.2.9-7.12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 David Walluck 0:1.2.9-6.12 - Resolves: CVE-2008-2025 From jkeating at fedoraproject.org Mon Jul 27 04:56:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:00 +0000 (UTC) Subject: rpms/stun/devel stun.spec,1.2,1.3 Message-ID: <20090727045600.681CE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14079 Modified Files: stun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stun.spec =================================================================== RCS file: /cvs/pkgs/rpms/stun/devel/stun.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- stun.spec 26 Feb 2009 03:25:21 -0000 1.2 +++ stun.spec 27 Jul 2009 04:56:00 -0000 1.3 @@ -3,7 +3,7 @@ Name: stun Version: 0.96 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Implements a simple Stun Client Group: Applications/Communications License: Vovida Software License 1.0 @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.96-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.96-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:56:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:14 +0000 (UTC) Subject: rpms/stunnel/devel stunnel.spec,1.59,1.60 Message-ID: <20090727045614.1865B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stunnel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14263 Modified Files: stunnel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stunnel.spec =================================================================== RCS file: /cvs/pkgs/rpms/stunnel/devel/stunnel.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- stunnel.spec 3 May 2009 03:39:29 -0000 1.59 +++ stunnel.spec 27 Jul 2009 04:56:13 -0000 1.60 @@ -1,7 +1,7 @@ Summary: An SSL-encrypting socket wrapper Name: stunnel Version: 4.27 -Release: 3 +Release: 4 License: GPLv2 Group: Applications/Internet URL: http://stunnel.mirt.net/ @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_sysconfdir}/stunnel/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.27-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 3 2009 Miloslav Trma? - 4.27-3 - Fix the previous patch. From jkeating at fedoraproject.org Mon Jul 27 04:56:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:25 +0000 (UTC) Subject: rpms/stxxl/devel stxxl.spec,1.1,1.2 Message-ID: <20090727045625.3B40611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/stxxl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14400 Modified Files: stxxl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: stxxl.spec =================================================================== RCS file: /cvs/pkgs/rpms/stxxl/devel/stxxl.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- stxxl.spec 4 Jun 2009 13:20:24 -0000 1.1 +++ stxxl.spec 27 Jul 2009 04:56:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: stxxl Version: 1.2.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C++ STL drop-in replacement for extremely large datasets Group: Development/Libraries @@ -123,6 +123,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 1.2.1-8 - Added a tab in the 'BuildArch:noarch' directive. From jkeating at fedoraproject.org Mon Jul 27 04:56:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:37 +0000 (UTC) Subject: rpms/sub2srt/devel sub2srt.spec,1.4,1.5 Message-ID: <20090727045637.3765311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sub2srt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14575 Modified Files: sub2srt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sub2srt.spec =================================================================== RCS file: /cvs/pkgs/rpms/sub2srt/devel/sub2srt.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sub2srt.spec 26 Feb 2009 03:27:18 -0000 1.4 +++ sub2srt.spec 27 Jul 2009 04:56:37 -0000 1.5 @@ -1,6 +1,6 @@ Name: sub2srt Version: 0.5.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert files in .sub format to .srt @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:56:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:48 +0000 (UTC) Subject: rpms/subcommander/devel subcommander.spec,1.25,1.26 Message-ID: <20090727045648.4CFDB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subcommander/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14747 Modified Files: subcommander.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subcommander.spec =================================================================== RCS file: /cvs/pkgs/rpms/subcommander/devel/subcommander.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- subcommander.spec 2 Jul 2009 17:41:39 -0000 1.25 +++ subcommander.spec 27 Jul 2009 04:56:48 -0000 1.26 @@ -2,7 +2,7 @@ Name: subcommander Version: 2.0 -Release: 0.4%{?dist}.1 +Release: 0.5%{?dist}.1 Summary: Graphical UI for subversion Group: Development/Tools @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %doc README CHANGES COPYING %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-0.5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 2 2009 Jochen Schmitt 2.0-0.4.1 - Change versioning for beta releases - Rebuild for new boost release From jkeating at fedoraproject.org Mon Jul 27 04:56:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:56:59 +0000 (UTC) Subject: rpms/subdownloader/devel subdownloader.spec,1.6,1.7 Message-ID: <20090727045659.A351711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subdownloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14874 Modified Files: subdownloader.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subdownloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/subdownloader/devel/subdownloader.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- subdownloader.spec 10 Apr 2009 10:40:39 -0000 1.6 +++ subdownloader.spec 27 Jul 2009 04:56:59 -0000 1.7 @@ -2,7 +2,7 @@ Name: subdownloader Version: 2.0.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Program for download/upload subtitles for videofiles and DVDs Group: Applications/Multimedia @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.xpm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Jan Klepek 2.0.9.3-2 - added desktop-file-utils into BuildRequires From jkeating at fedoraproject.org Mon Jul 27 04:57:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:57:06 +0000 (UTC) Subject: rpms/sublib/devel sublib.spec,1.3,1.4 Message-ID: <20090727045706.A8BC811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sublib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14992 Modified Files: sublib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sublib.spec =================================================================== RCS file: /cvs/pkgs/rpms/sublib/devel/sublib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sublib.spec 21 Apr 2009 06:49:38 -0000 1.3 +++ sublib.spec 27 Jul 2009 04:57:06 -0000 1.4 @@ -1,6 +1,6 @@ Name: sublib Version: 0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A subtitle library Group: System Environment/Libraries @@ -70,6 +70,9 @@ developing applications that use %{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 21 2009 Julian Sikorski - 0.9-4 - Disabled the ppc64 ExcludeArch now that mono is available (fixes RH #447362) From jkeating at fedoraproject.org Mon Jul 27 04:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:57:17 +0000 (UTC) Subject: rpms/subtitlecomposer/devel subtitlecomposer.spec,1.5,1.6 Message-ID: <20090727045717.5F07611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subtitlecomposer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15114 Modified Files: subtitlecomposer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subtitlecomposer.spec =================================================================== RCS file: /cvs/pkgs/rpms/subtitlecomposer/devel/subtitlecomposer.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- subtitlecomposer.spec 24 Jul 2009 19:20:00 -0000 1.5 +++ subtitlecomposer.spec 27 Jul 2009 04:57:17 -0000 1.6 @@ -1,6 +1,6 @@ Name: subtitlecomposer Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A text-based subtitles editor License: GPLv2+ @@ -86,6 +86,9 @@ gtk-update-icon-cache %{_kde4_iconsdir}/ %{_datadir}/mime/packages/subtitlecomposer.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Rex Dieter 0.5.3-2 - .desktop: Categories: -Video +AudioVideo - optimize scriptlets (drop xdg-utils, shared-mime-info deps) From jkeating at fedoraproject.org Mon Jul 27 04:57:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:57:28 +0000 (UTC) Subject: rpms/subtitleeditor/devel subtitleeditor.spec,1.9,1.10 Message-ID: <20090727045728.5383411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subtitleeditor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15235 Modified Files: subtitleeditor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subtitleeditor.spec =================================================================== RCS file: /cvs/pkgs/rpms/subtitleeditor/devel/subtitleeditor.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- subtitleeditor.spec 23 Feb 2009 19:23:40 -0000 1.9 +++ subtitleeditor.spec 27 Jul 2009 04:57:28 -0000 1.10 @@ -1,6 +1,6 @@ Name: subtitleeditor Version: 0.30.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GTK+2 tool to edit subtitles for GNU/Linux/*BSD Group: Applications/Multimedia @@ -102,6 +102,9 @@ fi %{_libdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Martin Sourada - 0.30.0-4 - Fix build on rawhide From jkeating at fedoraproject.org Mon Jul 27 04:57:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:57:44 +0000 (UTC) Subject: rpms/subversion/devel subversion.spec,1.146,1.147 Message-ID: <20090727045744.A72CD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subversion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15414 Modified Files: subversion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subversion.spec =================================================================== RCS file: /cvs/pkgs/rpms/subversion/devel/subversion.spec,v retrieving revision 1.146 retrieving revision 1.147 diff -u -p -r1.146 -r1.147 --- subversion.spec 23 Jul 2009 13:14:49 -0000 1.146 +++ subversion.spec 27 Jul 2009 04:57:44 -0000 1.147 @@ -15,7 +15,7 @@ Summary: A Modern Concurrent Version Control System Name: subversion Version: 1.6.3 -Release: 2%{?dist} +Release: 3%{?dist} License: ASL 1.1 Group: Development/Tools URL: http://subversion.tigris.org/ @@ -325,6 +325,9 @@ rm -rf ${RPM_BUILD_ROOT} %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Joe Orton 1.6.3-2 - remove -devel dependency on -gnome, -kde (#513313) From jkeating at fedoraproject.org Mon Jul 27 04:57:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:57:56 +0000 (UTC) Subject: rpms/subversion-api-docs/devel subversion-api-docs.spec,1.27,1.28 Message-ID: <20090727045756.2901D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subversion-api-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15539 Modified Files: subversion-api-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subversion-api-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/subversion-api-docs/devel/subversion-api-docs.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- subversion-api-docs.spec 24 Jun 2009 21:49:50 -0000 1.27 +++ subversion-api-docs.spec 27 Jul 2009 04:57:56 -0000 1.28 @@ -1,6 +1,6 @@ Name: subversion-api-docs Version: 1.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Subversion API documentation Group: Development/Tools @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/subversion-%{version}/api-docs/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Bojan Smojver 1.6.3-1 - bump up to 1.6.3 From jkeating at fedoraproject.org Mon Jul 27 04:58:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:58:07 +0000 (UTC) Subject: rpms/suck/devel suck.spec,1.21,1.22 Message-ID: <20090727045807.7A9DA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/suck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15669 Modified Files: suck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: suck.spec =================================================================== RCS file: /cvs/pkgs/rpms/suck/devel/suck.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- suck.spec 26 Feb 2009 03:32:06 -0000 1.21 +++ suck.spec 27 Jul 2009 04:58:07 -0000 1.22 @@ -1,7 +1,7 @@ Name: suck Summary: Download news from remote NNTP server Version: 4.3.2 -Release: 25%{?dist} +Release: 26%{?dist} Source: http://www.sucknews.org/%{name}-%{version}.tar.gz Source1: active-ignore Source2: suck-4.3.2.site @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %dir %{_sysconfdir}/news/suck.d/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.3.2-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.3.2-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:58:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:58:19 +0000 (UTC) Subject: rpms/sudo/devel sudo.spec,1.77,1.78 Message-ID: <20090727045819.3C1DB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sudo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15829 Modified Files: sudo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sudo.spec =================================================================== RCS file: /cvs/pkgs/rpms/sudo/devel/sudo.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- sudo.spec 9 Jul 2009 13:29:34 -0000 1.77 +++ sudo.spec 27 Jul 2009 04:58:19 -0000 1.78 @@ -1,7 +1,7 @@ Summary: Allows restricted root access for specified users Name: sudo Version: 1.7.1 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: Applications/System URL: http://www.courtesan.com/sudo/ @@ -139,6 +139,9 @@ rm -rf $RPM_BUILD_ROOT /bin/chmod 0440 /etc/sudoers || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Daniel Kopecek 1.7.1-4 - moved the closefrom() call before audit_help_open() (sudo-1.7.1-auditfix.patch) - epoch number sync From jkeating at fedoraproject.org Mon Jul 27 04:58:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:58:32 +0000 (UTC) Subject: rpms/sugar/devel sugar.spec,1.64,1.65 Message-ID: <20090727045832.4C89711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15955 Modified Files: sugar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar/devel/sugar.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- sugar.spec 18 Jul 2009 14:06:50 -0000 1.64 +++ sugar.spec 27 Jul 2009 04:58:32 -0000 1.65 @@ -6,7 +6,7 @@ Summary: Constructionist learning platform Name: sugar Version: 0.85.2 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 4.%{alphatag}%{?dist} URL: http://sugarlabs.org/ # git clone git://dev.laptop.org/sugar @@ -140,6 +140,9 @@ rm -rf %{buildroot} %{_bindir}/sugar-emulator %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 04:58:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:58:43 +0000 (UTC) Subject: rpms/sugar-analyze/devel sugar-analyze.spec,1.3,1.4 Message-ID: <20090727045843.2FC2711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-analyze/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16098 Modified Files: sugar-analyze.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-analyze.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-analyze/devel/sugar-analyze.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-analyze.spec 26 Feb 2009 03:33:56 -0000 1.3 +++ sugar-analyze.spec 27 Jul 2009 04:58:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: sugar-analyze Version: 8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Analysing tool for Sugar Group: Sugar/Activities @@ -43,6 +43,9 @@ rm -rf $%{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 04:58:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:58:54 +0000 (UTC) Subject: rpms/sugar-artwork/devel sugar-artwork.spec,1.25,1.26 Message-ID: <20090727045854.3D68911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-artwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16223 Modified Files: sugar-artwork.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-artwork.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sugar-artwork.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sugar-artwork.spec 18 Jul 2009 15:24:42 -0000 1.25 +++ sugar-artwork.spec 27 Jul 2009 04:58:54 -0000 1.26 @@ -4,7 +4,7 @@ Summary: Artwork for Sugar look-and-feel Name: sugar-artwork Version: 0.85.1 -Release: 2%{?dist} +Release: 3%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org # git clone git://dev.laptop.org/artwork @@ -63,6 +63,9 @@ touch --no-create %{_datadir}/icons/suga %{_libdir}/gtk-2.0/*/engines/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tomeu Vizoso - 0.85.1-2 - Remove matchbox theme dir From jkeating at fedoraproject.org Mon Jul 27 04:59:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:59:06 +0000 (UTC) Subject: rpms/sugar-base/devel sugar-base.spec,1.18,1.19 Message-ID: <20090727045906.53E7011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16395 Modified Files: sugar-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-base/devel/sugar-base.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sugar-base.spec 18 Jul 2009 13:59:07 -0000 1.18 +++ sugar-base.spec 27 Jul 2009 04:59:06 -0000 1.19 @@ -3,7 +3,7 @@ Summary: Base Sugar library Name: sugar-base Version: 0.85.2 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org/ Source0: http://download.sugarlabs.org/sources/sucrose/glucose/%{name}/%{name}-%{version}.tar.bz2 @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 04:59:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:59:28 +0000 (UTC) Subject: rpms/sugar-calculator/devel sugar-calculator.spec,1.5,1.6 Message-ID: <20090727045928.285B411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-calculator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16650 Modified Files: sugar-calculator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-calculator.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-calculator/devel/sugar-calculator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sugar-calculator.spec 18 May 2009 19:09:42 -0000 1.5 +++ sugar-calculator.spec 27 Jul 2009 04:59:28 -0000 1.6 @@ -1,6 +1,6 @@ Name: sugar-calculator Version: 30 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calculator for Sugar Group: Sugar/Activities License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Steven M. Parrish - 30-1 - Add support for matplotlib as plotting backend - Add support for complex plot ranges, e.g. -2*pi..2*pi From jkeating at fedoraproject.org Mon Jul 27 04:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:59:17 +0000 (UTC) Subject: rpms/sugar-browse/devel sugar-browse.spec,1.17,1.18 Message-ID: <20090727045917.1A12811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-browse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16529 Modified Files: sugar-browse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-browse.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-browse/devel/sugar-browse.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sugar-browse.spec 6 Apr 2009 17:44:40 -0000 1.17 +++ sugar-browse.spec 27 Jul 2009 04:59:16 -0000 1.18 @@ -1,6 +1,6 @@ Name: sugar-browse Version: 108 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Browse activity for Sugar Group: Sugar/Activities License: GPLv2+ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 108-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Simon Schampijer - 108-1 - Browse hangs when trying to open file:/// #456 From jkeating at fedoraproject.org Mon Jul 27 04:59:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:59:39 +0000 (UTC) Subject: rpms/sugar-chat/devel sugar-chat.spec,1.6,1.7 Message-ID: <20090727045939.CE3C811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-chat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16788 Modified Files: sugar-chat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-chat.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-chat/devel/sugar-chat.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sugar-chat.spec 1 Apr 2009 11:04:43 -0000 1.6 +++ sugar-chat.spec 27 Jul 2009 04:59:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: sugar-chat Version: 65 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Chat client for Sugar Group: Sugar/Activities License: GPLv2+ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Simon Schampijer - 65-1 - Support new activity.info exec parameter - 'share or invite' hint not when resuming shared instance #402 From jkeating at fedoraproject.org Mon Jul 27 04:59:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 04:59:52 +0000 (UTC) Subject: rpms/sugar-clock/devel sugar-clock.spec,1.4,1.5 Message-ID: <20090727045952.2441211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-clock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16916 Modified Files: sugar-clock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-clock.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-clock/devel/sugar-clock.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sugar-clock.spec 24 Jun 2009 15:15:59 -0000 1.4 +++ sugar-clock.spec 27 Jul 2009 04:59:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: sugar-clock Version: 5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Clock activity for Sugar Group: Sugar/Activities @@ -54,6 +54,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Fabian Affolter - 5-1 - Updated to new upstream version 5 - Removed all vcs checkout stuff From jkeating at fedoraproject.org Mon Jul 27 05:00:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:00:05 +0000 (UTC) Subject: rpms/sugar-connect/devel sugar-connect.spec,1.2,1.3 Message-ID: <20090727050005.1996911C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-connect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17054 Modified Files: sugar-connect.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-connect.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-connect/devel/sugar-connect.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-connect.spec 26 Feb 2009 03:40:45 -0000 1.2 +++ sugar-connect.spec 27 Jul 2009 05:00:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-connect Version: 22 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Connect for Sugar Group: Sugar/Activities @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 22-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:00:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:00:23 +0000 (UTC) Subject: rpms/sugar-datastore/devel sugar-datastore.spec,1.15,1.16 Message-ID: <20090727050023.B1E1F11C04F7@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-datastore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17243 Modified Files: sugar-datastore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-datastore.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-datastore/devel/sugar-datastore.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sugar-datastore.spec 3 Mar 2009 21:11:17 -0000 1.15 +++ sugar-datastore.spec 27 Jul 2009 05:00:22 -0000 1.16 @@ -5,7 +5,7 @@ Name: sugar-datastore Version: 0.84.0 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 2.%{alphatag}%{?dist} Summary: Sugar Datastore @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/*.service %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.84.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Simon Schampijer - 0.84.0-1 - Rebuild for 0.84 From jkeating at fedoraproject.org Mon Jul 27 05:00:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:00:52 +0000 (UTC) Subject: rpms/sugar-distance/devel sugar-distance.spec,1.2,1.3 Message-ID: <20090727050052.1123711C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-distance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17498 Modified Files: sugar-distance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-distance.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-distance/devel/sugar-distance.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-distance.spec 26 Feb 2009 03:42:39 -0000 1.2 +++ sugar-distance.spec 27 Jul 2009 05:00:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-distance Version: 13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Distance measurement for Sugar Group: Sugar/Activities @@ -48,6 +48,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:01:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:01:16 +0000 (UTC) Subject: rpms/sugar-finance/devel sugar-finance.spec,1.3,1.4 Message-ID: <20090727050116.90AB411C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-finance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17695 Modified Files: sugar-finance.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-finance.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-finance/devel/sugar-finance.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-finance.spec 20 Apr 2009 16:23:02 -0000 1.3 +++ sugar-finance.spec 27 Jul 2009 05:01:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: sugar-finance Version: 3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Financial planning for Sugar Group: Sugar/Activities @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Fabian Affolter - 3-1 - Updated to new upstream version 3 - Removed manual VCS checkout stuff From jkeating at fedoraproject.org Mon Jul 27 05:01:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:01:29 +0000 (UTC) Subject: rpms/sugar-flipsticks/devel sugar-flipsticks.spec,1.1,1.2 Message-ID: <20090727050129.93AE911C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-flipsticks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17906 Modified Files: sugar-flipsticks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-flipsticks.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-flipsticks/devel/sugar-flipsticks.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sugar-flipsticks.spec 27 Jun 2009 15:07:19 -0000 1.1 +++ sugar-flipsticks.spec 27 Jul 2009 05:01:29 -0000 1.2 @@ -1,6 +1,6 @@ Name: sugar-flipsticks Version: 2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A keyframe animation activity for Sugar Group: Sugar/Activities @@ -49,5 +49,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Fabian Affolter - 2-1 - Initial package for Fedora From jkeating at fedoraproject.org Mon Jul 27 05:01:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:01:42 +0000 (UTC) Subject: rpms/sugar-help/devel sugar-help.spec,1.2,1.3 Message-ID: <20090727050142.43CD211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-help/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18079 Modified Files: sugar-help.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-help.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-help/devel/sugar-help.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-help.spec 26 Feb 2009 03:44:44 -0000 1.2 +++ sugar-help.spec 27 Jul 2009 05:01:42 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-help Version: 7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Help and Dokumentation for Sugar Group: Sugar/Activities @@ -49,6 +49,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:01:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:01:57 +0000 (UTC) Subject: rpms/sugar-implode/devel sugar-implode.spec,1.3,1.4 Message-ID: <20090727050157.34F9011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-implode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18250 Modified Files: sugar-implode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-implode.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-implode/devel/sugar-implode.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-implode.spec 17 Jul 2009 14:30:38 -0000 1.3 +++ sugar-implode.spec 27 Jul 2009 05:01:56 -0000 1.4 @@ -2,7 +2,7 @@ Name: sugar-implode Version: 5 -Release: 3.%{date}%{?dist} +Release: 4.%{date}%{?dist} Summary: Implode for Sugar Group: Sugar/Activities @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5-4.20090717 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Fabian Affolter - 5-3.20090717 - Changed release because it's still a git checkout - Modified donwload script From jkeating at fedoraproject.org Mon Jul 27 05:02:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:02:10 +0000 (UTC) Subject: rpms/sugar-infoslicer/devel sugar-infoslicer.spec,1.1,1.2 Message-ID: <20090727050210.DC2BE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-infoslicer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18418 Modified Files: sugar-infoslicer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-infoslicer.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-infoslicer/devel/sugar-infoslicer.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sugar-infoslicer.spec 27 Jun 2009 15:12:27 -0000 1.1 +++ sugar-infoslicer.spec 27 Jul 2009 05:02:10 -0000 1.2 @@ -1,6 +1,6 @@ Name: sugar-infoslicer Version: 5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Downloader for articles from Wikipedia Group: Sugar/Activities @@ -48,5 +48,8 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 25 2009 Fabian Affolter - 5-1 - Initial package for Fedora From jkeating at fedoraproject.org Mon Jul 27 05:02:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:02:23 +0000 (UTC) Subject: rpms/sugar-journal/devel sugar-journal.spec,1.10,1.11 Message-ID: <20090727050223.EE69211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-journal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18536 Modified Files: sugar-journal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-journal.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-journal/devel/sugar-journal.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sugar-journal.spec 26 Feb 2009 03:47:36 -0000 1.10 +++ sugar-journal.spec 27 Jul 2009 05:02:23 -0000 1.11 @@ -3,7 +3,7 @@ Name: sugar-journal Version: 99 -Release: 5%{?dist} +Release: 6%{?dist} #Release: 4.%{alphatag}%{?dist} Summary: Journal for Sugar @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{sugaractivitydir}/Journal.activity/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 99-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 99-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:02:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:02:36 +0000 (UTC) Subject: rpms/sugar-jukebox/devel sugar-jukebox.spec,1.7,1.8 Message-ID: <20090727050236.EAFF611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-jukebox/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18680 Modified Files: sugar-jukebox.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-jukebox.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-jukebox/devel/sugar-jukebox.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sugar-jukebox.spec 16 Jun 2009 13:38:26 -0000 1.7 +++ sugar-jukebox.spec 27 Jul 2009 05:02:36 -0000 1.8 @@ -1,6 +1,6 @@ Name: sugar-jukebox Version: 11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Media player activity for Sugar Group: Sugar/Activities @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Sebastian Dziallas - 11-1 - update to version 11 From jkeating at fedoraproject.org Mon Jul 27 05:02:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:02:48 +0000 (UTC) Subject: rpms/sugar-log/devel sugar-log.spec,1.5,1.6 Message-ID: <20090727050248.EA0EB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-log/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18856 Modified Files: sugar-log.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-log.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-log/devel/sugar-log.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sugar-log.spec 6 Apr 2009 13:40:34 -0000 1.5 +++ sugar-log.spec 27 Jul 2009 05:02:48 -0000 1.6 @@ -1,6 +1,6 @@ Name: sugar-log Version: 18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Log activity for Sugar Group: Sugar/Activities License: GPLv2+ @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Steven M. Parrish 18-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 05:03:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:03:03 +0000 (UTC) Subject: rpms/sugar-memorize/devel sugar-memorize.spec,1.3,1.4 Message-ID: <20090727050303.92DFD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-memorize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19036 Modified Files: sugar-memorize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-memorize.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-memorize/devel/sugar-memorize.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-memorize.spec 26 Feb 2009 03:50:27 -0000 1.3 +++ sugar-memorize.spec 27 Jul 2009 05:03:03 -0000 1.4 @@ -1,6 +1,6 @@ Name: sugar-memorize Version: 29 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Memorize for Sugar Group: Sugar/Activities @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 29-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 29-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:03:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:03:17 +0000 (UTC) Subject: rpms/sugar-moon/devel sugar-moon.spec,1.5,1.6 Message-ID: <20090727050317.BD51411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-moon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19204 Modified Files: sugar-moon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-moon.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-moon/devel/sugar-moon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sugar-moon.spec 3 Jun 2009 15:52:25 -0000 1.5 +++ sugar-moon.spec 27 Jul 2009 05:03:17 -0000 1.6 @@ -2,7 +2,7 @@ Name: sugar-moon Version: 10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Moon phases activity for sugar Group: Sugar/Activities @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Bryan Kearney - 10-1 - Resolve BZ#503892 by upgrading to latest upstream - Merged alsroot's solution to future proof json module From jkeating at fedoraproject.org Mon Jul 27 05:03:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:03:33 +0000 (UTC) Subject: rpms/sugar-pippy/devel sugar-pippy.spec,1.3,1.4 Message-ID: <20090727050333.11C3011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-pippy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19337 Modified Files: sugar-pippy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-pippy.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-pippy/devel/sugar-pippy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sugar-pippy.spec 6 Mar 2009 17:23:15 -0000 1.3 +++ sugar-pippy.spec 27 Jul 2009 05:03:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: sugar-pippy Version: 30 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Pippy for Sugar Group: Sugar/Activities @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Fabian Affolter - 30-1 - Updated to new upstream version 30 From jkeating at fedoraproject.org Mon Jul 27 05:03:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:03:46 +0000 (UTC) Subject: rpms/sugar-playgo/devel sugar-playgo.spec,1.2,1.3 Message-ID: <20090727050346.2A94511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-playgo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19486 Modified Files: sugar-playgo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-playgo.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-playgo/devel/sugar-playgo.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-playgo.spec 26 Feb 2009 03:53:27 -0000 1.2 +++ sugar-playgo.spec 27 Jul 2009 05:03:46 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-playgo Version: 5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Go for Sugar Group: Sugar/Activities @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:04:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:04:04 +0000 (UTC) Subject: rpms/sugar-presence-service/devel sugar-presence-service.spec, 1.19, 1.20 Message-ID: <20090727050404.5CFBA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-presence-service/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19639 Modified Files: sugar-presence-service.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-presence-service.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-presence-service/devel/sugar-presence-service.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sugar-presence-service.spec 4 Mar 2009 08:20:04 -0000 1.19 +++ sugar-presence-service.spec 27 Jul 2009 05:04:03 -0000 1.20 @@ -1,6 +1,6 @@ Name: sugar-presence-service Version: 0.84.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Sugar presence service Group: System Environment/Libraries @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dbus-1/services/org.laptop.Sugar.Presence.service %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.84.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Morgan Collett - 0.84.0-1 - Update to final 0.84.0 release - no changes from 0.83.3 From jkeating at fedoraproject.org Mon Jul 27 05:04:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:04:18 +0000 (UTC) Subject: rpms/sugar-read/devel sugar-read.spec,1.2,1.3 Message-ID: <20090727050418.BBC7D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-read/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19851 Modified Files: sugar-read.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-read.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-read/devel/sugar-read.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-read.spec 6 Apr 2009 17:32:25 -0000 1.2 +++ sugar-read.spec 27 Jul 2009 05:04:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-read Version: 66 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A document reader for Sugar Group: Sugar/Activities License: GPLv2+ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 66-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 06 2009 Simon Schampijer - 66-1 - Support evince binding w/o document_links support #703 - Update translations From jkeating at fedoraproject.org Mon Jul 27 05:04:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:04:34 +0000 (UTC) Subject: rpms/sugar-speak/devel sugar-speak.spec,1.2,1.3 Message-ID: <20090727050434.7EDCD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-speak/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20046 Modified Files: sugar-speak.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-speak.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-speak/devel/sugar-speak.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-speak.spec 26 Feb 2009 03:55:19 -0000 1.2 +++ sugar-speak.spec 27 Jul 2009 05:04:33 -0000 1.3 @@ -1,6 +1,6 @@ Name: sugar-speak Version: 9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Speak for Sugar Group: Sugar/Activities @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:04:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:04:49 +0000 (UTC) Subject: rpms/sugar-stopwatch/devel sugar-stopwatch.spec,1.1,1.2 Message-ID: <20090727050449.633C511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-stopwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20222 Modified Files: sugar-stopwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-stopwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-stopwatch/devel/sugar-stopwatch.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sugar-stopwatch.spec 9 Jul 2009 21:48:40 -0000 1.1 +++ sugar-stopwatch.spec 27 Jul 2009 05:04:49 -0000 1.2 @@ -2,7 +2,7 @@ Name: sugar-stopwatch Version: 0 -Release: 0.2.%{date}%{?dist} +Release: 0.3.%{date}%{?dist} Summary: Simple stopwatch for Sugar Group: Sugar/Activities @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.3.20090126 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 07 2009 Fabian Affolter - 0-0.2.20090126 - Fixed version and release From jkeating at fedoraproject.org Mon Jul 27 05:05:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:05:11 +0000 (UTC) Subject: rpms/sugar-terminal/devel sugar-terminal.spec,1.7,1.8 Message-ID: <20090727050511.03EBA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-terminal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20367 Modified Files: sugar-terminal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-terminal.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-terminal/devel/sugar-terminal.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sugar-terminal.spec 29 Mar 2009 03:51:17 -0000 1.7 +++ sugar-terminal.spec 27 Jul 2009 05:05:10 -0000 1.8 @@ -1,6 +1,6 @@ Name: sugar-terminal Version: 25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Terminal for Sugar Group: Sugar/Activities License: GPLv2+ @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Steven M. Parrish - 25-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 05:05:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:05:28 +0000 (UTC) Subject: rpms/sugar-toolkit/devel sugar-toolkit.spec,1.48,1.49 Message-ID: <20090727050528.3F3AE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20564 Modified Files: sugar-toolkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-toolkit/devel/sugar-toolkit.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- sugar-toolkit.spec 18 Jul 2009 14:01:51 -0000 1.48 +++ sugar-toolkit.spec 27 Jul 2009 05:05:27 -0000 1.49 @@ -6,7 +6,7 @@ Summary: Sugar toolkit Name: sugar-toolkit Version: 0.85.2 -Release: 1%{?dist} +Release: 2%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://wiki.laptop.org/go/Sugar # git clone git://dev.laptop.org/sugar @@ -69,6 +69,9 @@ rm -rf %{buildroot} %{_sysconfdir}/rpm/macros.sugar %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.85.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Tomeu Vizoso - 0.85.2-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 05:05:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:05:42 +0000 (UTC) Subject: rpms/sugar-turtleart/devel sugar-turtleart.spec,1.10,1.11 Message-ID: <20090727050542.39AA511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-turtleart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20763 Modified Files: sugar-turtleart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-turtleart.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-turtleart/devel/sugar-turtleart.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sugar-turtleart.spec 3 Jun 2009 17:15:49 -0000 1.10 +++ sugar-turtleart.spec 27 Jul 2009 05:05:41 -0000 1.11 @@ -1,6 +1,6 @@ Name: sugar-turtleart Version: 51 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Turtle Art activity for sugar Group: Sugar/Activities @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 51-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Bryan Kearney - 51-1 - caught ISO_Level3_Shift problem on OLPC XO keyboard - fixed some problems with taexportlogo From jkeating at fedoraproject.org Mon Jul 27 05:05:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:05:56 +0000 (UTC) Subject: rpms/sugar-update-control/devel sugar-update-control.spec,1.4,1.5 Message-ID: <20090727050556.3188611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-update-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20913 Modified Files: sugar-update-control.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-update-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-update-control/devel/sugar-update-control.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sugar-update-control.spec 10 Jul 2009 18:54:46 -0000 1.4 +++ sugar-update-control.spec 27 Jul 2009 05:05:56 -0000 1.5 @@ -3,7 +3,7 @@ Summary: Activity update control panel for Sugar Name: sugar-update-control Version: 0.21 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://git.sugarlabs.org/projects/sugar-update-control @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sugar/extensions/cpsection/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Daniel Drake 0.21-1 - Update to v0.21 From jkeating at fedoraproject.org Mon Jul 27 05:06:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:06:14 +0000 (UTC) Subject: rpms/sugar-write/devel sugar-write.spec,1.6,1.7 Message-ID: <20090727050614.6C4B411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-write/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21079 Modified Files: sugar-write.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-write.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-write/devel/sugar-write.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sugar-write.spec 3 Mar 2009 21:32:29 -0000 1.6 +++ sugar-write.spec 27 Jul 2009 05:06:14 -0000 1.7 @@ -1,6 +1,6 @@ Name: sugar-write Version: 63 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Word processor for Sugar Group: Sugar/Activities License: GPLv2+ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 63-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Simon Schampijer - 63-1 - Update to API change, render_page_to_image starts now with 1 #152 - Override get_preview #152 From jkeating at fedoraproject.org Mon Jul 27 05:06:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:06:27 +0000 (UTC) Subject: rpms/sugar-xoirc/devel sugar-xoirc.spec,1.2,1.3 Message-ID: <20090727050627.5BC8811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-xoirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21290 Modified Files: sugar-xoirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-xoirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-xoirc/devel/sugar-xoirc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-xoirc.spec 26 Feb 2009 04:03:08 -0000 1.2 +++ sugar-xoirc.spec 27 Jul 2009 05:06:26 -0000 1.3 @@ -2,7 +2,7 @@ Name: sugar-xoirc Version: 0 -Release: 0.2.%{date}%{?dist} +Release: 0.3.%{date}%{?dist} Summary: IRC client for Sugar Group: Sugar/Activities @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.3.20090129 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20090129 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:06:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:06:41 +0000 (UTC) Subject: rpms/sugar-xomail/devel sugar-xomail.spec,1.2,1.3 Message-ID: <20090727050641.1A2AE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sugar-xomail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21568 Modified Files: sugar-xomail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sugar-xomail.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-xomail/devel/sugar-xomail.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sugar-xomail.spec 26 Feb 2009 04:04:08 -0000 1.2 +++ sugar-xomail.spec 27 Jul 2009 05:06:40 -0000 1.3 @@ -2,7 +2,7 @@ Name: sugar-xomail Version: 0 -Release: 0.2.%{date}%{?dist} +Release: 0.3.%{date}%{?dist} Summary: Xomail for Sugar Group: Sugar/Activities @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.3.20090128 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20090128 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:06:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:06:55 +0000 (UTC) Subject: rpms/suitesparse/devel suitesparse.spec,1.16,1.17 Message-ID: <20090727050655.303A411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/suitesparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22089 Modified Files: suitesparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: suitesparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/suitesparse/devel/suitesparse.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- suitesparse.spec 3 Jun 2009 19:32:48 -0000 1.16 +++ suitesparse.spec 27 Jul 2009 05:06:54 -0000 1.17 @@ -1,6 +1,6 @@ Name: suitesparse Version: 3.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of sparse matrix libraries Group: System Environment/Libraries @@ -364,6 +364,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc Doc/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 27 2009 Deji Akingunola - 3.4.0-1 - Update to version 3.4.0. From jkeating at fedoraproject.org Mon Jul 27 05:07:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:07:11 +0000 (UTC) Subject: rpms/sunbird/devel sunbird.spec,1.32,1.33 Message-ID: <20090727050711.7072711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sunbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22437 Modified Files: sunbird.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sunbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/sunbird/devel/sunbird.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- sunbird.spec 10 Jul 2009 09:22:41 -0000 1.32 +++ sunbird.spec 27 Jul 2009 05:07:11 -0000 1.33 @@ -13,7 +13,7 @@ Name: sunbird Version: 1.0 -Release: 0.6.20090513hg%{?dist} +Release: 0.7.20090513hg%{?dist} Summary: Calendar application built upon Mozilla toolkit Group: Applications/Productivity @@ -299,6 +299,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-0.7.20090513hg +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Lubomir Rintel - 1.0-0.6.20090513hg - Fix up lignthing's require of rawhide thunderbird From jkeating at fedoraproject.org Mon Jul 27 05:07:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:07:26 +0000 (UTC) Subject: rpms/sundials/devel sundials.spec,1.5,1.6 Message-ID: <20090727050726.C29DA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sundials/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22585 Modified Files: sundials.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sundials.spec =================================================================== RCS file: /cvs/pkgs/rpms/sundials/devel/sundials.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sundials.spec 26 Feb 2009 04:06:59 -0000 1.5 +++ sundials.spec 27 Jul 2009 05:07:26 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Suite of nonlinear solvers Name: sundials Version: 2.3.0 -Release: 8%{?dist} +Release: 9%{?dist} # SUNDIALS is licensed under BSD with some additional (but unrestrictive) clauses. # Check the file 'LICENSE' for details. @@ -118,6 +118,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:07:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:07:39 +0000 (UTC) Subject: rpms/sunifdef/devel sunifdef.spec,1.13,1.14 Message-ID: <20090727050739.4F47E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sunifdef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22718 Modified Files: sunifdef.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sunifdef.spec =================================================================== RCS file: /cvs/pkgs/rpms/sunifdef/devel/sunifdef.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sunifdef.spec 26 Feb 2009 04:07:55 -0000 1.13 +++ sunifdef.spec 27 Jul 2009 05:07:39 -0000 1.14 @@ -1,6 +1,6 @@ Name: sunifdef Version: 3.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A commandline tool for simplifying the preprocessor conditionals in source code Group: Development/Languages License: BSD @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/sunifdef.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:07:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:07:52 +0000 (UTC) Subject: rpms/superiotool/devel superiotool.spec,1.16,1.17 Message-ID: <20090727050752.3538611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/superiotool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22861 Modified Files: superiotool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: superiotool.spec =================================================================== RCS file: /cvs/pkgs/rpms/superiotool/devel/superiotool.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- superiotool.spec 28 Jun 2009 19:58:38 -0000 1.16 +++ superiotool.spec 27 Jul 2009 05:07:52 -0000 1.17 @@ -3,7 +3,7 @@ Summary: Simple program for detecting Super I/O on your mainboard Name: superiotool Version: 0 -Release: 0.18.20090619svn%{svnver}%{?dist} +Release: 0.19.20090619svn%{svnver}%{?dist} License: GPLv2+ Group: Applications/System # svn -r %{svnver} export svn://coreboot.org/repos/trunk/util/superiotool superiotool @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.19.20090619svn4356 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Peter Lemenkov 0-0.18.20090619svn4356 - Fixed URL From jkeating at fedoraproject.org Mon Jul 27 05:08:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:08:07 +0000 (UTC) Subject: rpms/supertux/devel supertux.spec,1.24,1.25 Message-ID: <20090727050807.4EE3311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supertux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23034 Modified Files: supertux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supertux.spec =================================================================== RCS file: /cvs/pkgs/rpms/supertux/devel/supertux.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- supertux.spec 1 Mar 2009 14:18:41 -0000 1.24 +++ supertux.spec 27 Jul 2009 05:08:06 -0000 1.25 @@ -6,7 +6,7 @@ Name: supertux Version: 0.3.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Jump'n run like game Group: Amusements/Games License: GPLv2+ @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Lubomir Rintel - 0.3.1-7 - Fix build with GCC 4.4 From jkeating at fedoraproject.org Mon Jul 27 05:08:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:08:20 +0000 (UTC) Subject: rpms/supertuxkart/devel supertuxkart.spec,1.14,1.15 Message-ID: <20090727050820.8863211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supertuxkart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23178 Modified Files: supertuxkart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supertuxkart.spec =================================================================== RCS file: /cvs/pkgs/rpms/supertuxkart/devel/supertuxkart.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- supertuxkart.spec 2 Jul 2009 19:00:22 -0000 1.14 +++ supertuxkart.spec 27 Jul 2009 05:08:20 -0000 1.15 @@ -1,6 +1,6 @@ Name: supertuxkart Version: 0.6.1a -Release: 1%{?dist} +Release: 2%{?dist} Summary: Kids 3D go-kart racing game featuring Tux Group: Amusements/Games License: GPLv2+ @@ -118,6 +118,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1a-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Jon Ciesla - 0.6.1a-1 - Patch release. - Fixed symlink/dir replacement, BZ 506245. From jkeating at fedoraproject.org Mon Jul 27 05:08:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:08:35 +0000 (UTC) Subject: rpms/supervisor/devel supervisor.spec,1.5,1.6 Message-ID: <20090727050835.986DF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supervisor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23352 Modified Files: supervisor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supervisor.spec =================================================================== RCS file: /cvs/pkgs/rpms/supervisor/devel/supervisor.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- supervisor.spec 26 Feb 2009 04:12:36 -0000 1.5 +++ supervisor.spec 27 Jul 2009 05:08:34 -0000 1.6 @@ -2,7 +2,7 @@ Summary: A System for Allowing the Control of Process State on UNIX Name: supervisor Version: 2.1 -Release: 7%{?dist} +Release: 8%{?dist} License: ZPLv2.1 and BSD and MIT Group: System Environment/Base @@ -69,6 +69,9 @@ fi %config(noreplace) %{_sysconfdir}/logrotate.d/supervisor %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:08:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:08:48 +0000 (UTC) Subject: rpms/supybot/devel supybot.spec,1.10,1.11 Message-ID: <20090727050848.6F26C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supybot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23504 Modified Files: supybot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supybot.spec =================================================================== RCS file: /cvs/pkgs/rpms/supybot/devel/supybot.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- supybot.spec 3 Jun 2009 08:44:20 -0000 1.10 +++ supybot.spec 27 Jul 2009 05:08:48 -0000 1.11 @@ -3,7 +3,7 @@ Name: supybot Version: 0.83.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cross-platform IRC bot written in Python Group: Applications/Internet @@ -95,6 +95,9 @@ CFLAGS="%{optflags}" %{__python} -c 'imp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.83.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Ricky Zhou - 0.83.4.1-1 - Upstream released new version. From jkeating at fedoraproject.org Mon Jul 27 05:09:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:09:08 +0000 (UTC) Subject: rpms/supybot-fedora/devel supybot-fedora.spec,1.8,1.9 Message-ID: <20090727050908.C316111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supybot-fedora/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23718 Modified Files: supybot-fedora.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supybot-fedora.spec =================================================================== RCS file: /cvs/pkgs/rpms/supybot-fedora/devel/supybot-fedora.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- supybot-fedora.spec 6 Apr 2009 02:17:39 -0000 1.8 +++ supybot-fedora.spec 27 Jul 2009 05:09:08 -0000 1.9 @@ -2,7 +2,7 @@ Name: supybot-fedora Version: 0.2.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugin for Supybot to interact with Fedora services Group: Applications/Internet @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 5 2009 Jon Stanley - 0.2.5.1-1 - New upstream 0.2.5.1 From jkeating at fedoraproject.org Mon Jul 27 05:09:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:09:26 +0000 (UTC) Subject: rpms/supybot-koji/devel supybot-koji.spec,1.2,1.3 Message-ID: <20090727050926.A79E111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supybot-koji/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23904 Modified Files: supybot-koji.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supybot-koji.spec =================================================================== RCS file: /cvs/pkgs/rpms/supybot-koji/devel/supybot-koji.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- supybot-koji.spec 26 Feb 2009 04:15:36 -0000 1.2 +++ supybot-koji.spec 27 Jul 2009 05:09:26 -0000 1.3 @@ -2,7 +2,7 @@ Name: supybot-koji Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Plugin for Supybot to interact with Koji instances Group: Applications/Internet @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:09:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:09:39 +0000 (UTC) Subject: rpms/supybot-meetbot/devel supybot-meetbot.spec,1.4,1.5 Message-ID: <20090727050939.E6DED11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/supybot-meetbot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24064 Modified Files: supybot-meetbot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: supybot-meetbot.spec =================================================================== RCS file: /cvs/pkgs/rpms/supybot-meetbot/devel/supybot-meetbot.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- supybot-meetbot.spec 15 Jul 2009 17:59:21 -0000 1.4 +++ supybot-meetbot.spec 27 Jul 2009 05:09:39 -0000 1.5 @@ -2,7 +2,7 @@ Name: supybot-meetbot Version: 0.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Plugin for Supybot for handling IRC meetings Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/supybot/plugins/MeetBot %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Kevin Fenzi - 0.1.2-1 - Update to 0.1.2 release. From jkeating at fedoraproject.org Mon Jul 27 05:09:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:09:51 +0000 (UTC) Subject: rpms/surfraw/devel surfraw.spec,1.2,1.3 Message-ID: <20090727050951.471EA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/surfraw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24232 Modified Files: surfraw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: surfraw.spec =================================================================== RCS file: /cvs/pkgs/rpms/surfraw/devel/surfraw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- surfraw.spec 26 Feb 2009 04:16:37 -0000 1.2 +++ surfraw.spec 27 Jul 2009 05:09:51 -0000 1.3 @@ -1,6 +1,6 @@ Name: surfraw Version: 1.0.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Shell Users Revolutionary Front Rage Against the Web Group: Applications/Internet @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:10:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:10:02 +0000 (UTC) Subject: rpms/surl/devel surl.spec,1.2,1.3 Message-ID: <20090727051002.EC46611C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/surl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24383 Modified Files: surl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: surl.spec =================================================================== RCS file: /cvs/pkgs/rpms/surl/devel/surl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- surl.spec 23 Jul 2009 21:00:29 -0000 1.2 +++ surl.spec 27 Jul 2009 05:10:02 -0000 1.3 @@ -2,7 +2,7 @@ Name: surl Version: 0.5.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A URL shortening command line tool Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Fabian Affolter - 0.5.3-1 - Updated to new upstream version From jkeating at fedoraproject.org Mon Jul 27 05:10:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:10:16 +0000 (UTC) Subject: rpms/svgalib/devel svgalib.spec,1.13,1.14 Message-ID: <20090727051016.7833311C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/svgalib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24546 Modified Files: svgalib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: svgalib.spec =================================================================== RCS file: /cvs/pkgs/rpms/svgalib/devel/svgalib.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- svgalib.spec 26 Feb 2009 04:17:37 -0000 1.13 +++ svgalib.spec 27 Jul 2009 05:10:16 -0000 1.14 @@ -1,6 +1,6 @@ Name: svgalib Version: 1.9.25 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Low-level fullscreen SVGA graphics library Group: System Environment/Libraries License: Public Domain @@ -132,6 +132,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.25-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.25-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:10:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:10:28 +0000 (UTC) Subject: rpms/svn2cl/devel svn2cl.spec,1.9,1.10 Message-ID: <20090727051028.BB1F911C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/svn2cl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24666 Modified Files: svn2cl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: svn2cl.spec =================================================================== RCS file: /cvs/pkgs/rpms/svn2cl/devel/svn2cl.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- svn2cl.spec 26 Feb 2009 04:19:17 -0000 1.9 +++ svn2cl.spec 27 Jul 2009 05:10:28 -0000 1.10 @@ -1,6 +1,6 @@ Name: svn2cl Version: 0.11 -Release: 2 +Release: 3 Summary: Create a ChangeLog from a Subversion log Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:10:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:10:44 +0000 (UTC) Subject: rpms/svnmailer/devel svnmailer.spec,1.8,1.9 Message-ID: <20090727051044.C3D7B11C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/svnmailer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24864 Modified Files: svnmailer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: svnmailer.spec =================================================================== RCS file: /cvs/pkgs/rpms/svnmailer/devel/svnmailer.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- svnmailer.spec 26 Feb 2009 04:20:21 -0000 1.8 +++ svnmailer.spec 27 Jul 2009 05:10:44 -0000 1.9 @@ -2,7 +2,7 @@ Name: svnmailer Version: 1.0.8 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Tool to post subversion repository commit information Group: Development/Tools @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:10:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:10:56 +0000 (UTC) Subject: rpms/svrcore/devel svrcore.spec,1.5,1.6 Message-ID: <20090727051056.D3A5B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/svrcore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25014 Modified Files: svrcore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: svrcore.spec =================================================================== RCS file: /cvs/pkgs/rpms/svrcore/devel/svrcore.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- svrcore.spec 26 Feb 2009 04:21:17 -0000 1.5 +++ svrcore.spec 27 Jul 2009 05:10:56 -0000 1.6 @@ -4,7 +4,7 @@ Summary: Secure PIN handling using NSS crypto Name: svrcore Version: 4.0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: MPLv1.1 or GPLv2+ or LGPLv2+ URL: http://www.mozilla.org/projects/security/pki/ Group: Development/Libraries @@ -74,6 +74,9 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/libsvrco %{_includedir}/svrcore.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:11:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:11:09 +0000 (UTC) Subject: rpms/svxlink/devel svxlink.spec,1.6,1.7 Message-ID: <20090727051109.78E2F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/svxlink/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25180 Modified Files: svxlink.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: svxlink.spec =================================================================== RCS file: /cvs/pkgs/rpms/svxlink/devel/svxlink.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- svxlink.spec 25 Jun 2009 20:46:38 -0000 1.6 +++ svxlink.spec 27 Jul 2009 05:11:09 -0000 1.7 @@ -1,7 +1,7 @@ %define main_version 090426 Name: svxlink Version: %{main_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Repeater controller and EchoLink (simplex or repeater) Group: Applications/Internet @@ -247,6 +247,9 @@ rm -rf %{buildroot} %ghost /var/log/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 090426-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Lucian Langa - 090426-2 - obsolete package svxlink-server-devel From jkeating at fedoraproject.org Mon Jul 27 05:11:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:11:22 +0000 (UTC) Subject: rpms/swaks/devel swaks.spec,1.6,1.7 Message-ID: <20090727051122.7B4B211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swaks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25303 Modified Files: swaks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swaks.spec =================================================================== RCS file: /cvs/pkgs/rpms/swaks/devel/swaks.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- swaks.spec 26 Feb 2009 04:23:04 -0000 1.6 +++ swaks.spec 27 Jul 2009 05:11:22 -0000 1.7 @@ -1,6 +1,6 @@ Name: swaks Version: 20061116.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command-line SMTP transaction tester Group: Applications/Internet @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20061116.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20061116.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:11:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:11:39 +0000 (UTC) Subject: rpms/swami/devel swami.spec,1.1,1.2 Message-ID: <20090727051139.1F32611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swami/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25485 Modified Files: swami.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swami.spec =================================================================== RCS file: /cvs/pkgs/rpms/swami/devel/swami.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- swami.spec 13 Apr 2009 17:53:52 -0000 1.1 +++ swami.spec 27 Jul 2009 05:11:38 -0000 1.2 @@ -1,6 +1,6 @@ Name: swami Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MIDI instrument and sound editor Group: Applications/Multimedia License: GPLv2+ @@ -103,6 +103,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/mime/packages/%{name}.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Orcan Ogetbil - 0.9.4-4 - Add Requires: hicolor-icon-theme From airlied at fedoraproject.org Mon Jul 27 05:11:39 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Mon, 27 Jul 2009 05:11:39 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess-boot-vga.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 libpciaccess.spec, 1.17, 1.18 make-libpciaccess-snapshot.sh, 1.5, 1.6 sources, 1.9, 1.10 Message-ID: <20090727051139.8B2F411C0094@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25463 Modified Files: .cvsignore libpciaccess.spec make-libpciaccess-snapshot.sh sources Added Files: libpciaccess-boot-vga.patch Log Message: * Mon Jul 27 2009 Dave Airlie 0.10.6-1 - rebase to latest release (will do release with VGA bits later) - libpciaccess-boot-vga.patch: add boot vga patch from upstream libpciaccess-boot-vga.patch: include/pciaccess.h | 2 ++ src/common_interface.c | 14 ++++++++++++++ src/linux_sysfs.c | 31 +++++++++++++++++++++++++++++++ src/pciaccess_private.h | 1 + 4 files changed, 48 insertions(+) --- NEW FILE libpciaccess-boot-vga.patch --- diff -up libpciaccess-0.10.6/include/pciaccess.h.da libpciaccess-0.10.6/include/pciaccess.h --- libpciaccess-0.10.6/include/pciaccess.h.da 2008-05-22 09:35:04.000000000 +1000 +++ libpciaccess-0.10.6/include/pciaccess.h 2009-07-27 15:10:14.000000000 +1000 @@ -50,6 +50,8 @@ struct pci_slot_match; extern "C" { #endif +int pci_device_is_boot_vga(struct pci_device *dev); + int pci_device_read_rom(struct pci_device *dev, void *buffer); int __deprecated pci_device_map_region(struct pci_device *dev, diff -up libpciaccess-0.10.6/src/common_interface.c.da libpciaccess-0.10.6/src/common_interface.c --- libpciaccess-0.10.6/src/common_interface.c.da 2008-11-19 14:11:59.000000000 +1000 +++ libpciaccess-0.10.6/src/common_interface.c 2009-07-27 15:10:14.000000000 +1000 @@ -108,6 +108,20 @@ pci_device_read_rom( struct pci_device * return (pci_sys->methods->read_rom)( dev, buffer ); } +/** + * Probe a PCI (VGA) device to determine if its the boot VGA device + * + * \param dev Device whose VGA status to query + * \return + * Zero if not the boot VGA, 1 if the boot VGA. + */ +int +pci_device_is_boot_vga( struct pci_device * dev ) +{ + if (!pci_sys->methods->boot_vga) + return 0; + return pci_sys->methods->boot_vga( dev ); +} /** * Probe a PCI device to learn information about the device. diff -up libpciaccess-0.10.6/src/linux_sysfs.c.da libpciaccess-0.10.6/src/linux_sysfs.c --- libpciaccess-0.10.6/src/linux_sysfs.c.da 2009-07-27 15:10:00.000000000 +1000 +++ libpciaccess-0.10.6/src/linux_sysfs.c 2009-07-27 15:10:14.000000000 +1000 @@ -77,6 +77,8 @@ static int pci_device_linux_sysfs_write( const void * data, pciaddr_t offset, pciaddr_t size, pciaddr_t * bytes_written ); +static int pci_device_linux_sysfs_boot_vga( struct pci_device * dev ); + static const struct pci_system_methods linux_sysfs_methods = { .destroy = pci_device_linux_sysfs_destroy, .destroy_device = NULL, @@ -90,6 +92,7 @@ static const struct pci_system_methods l .fill_capabilities = pci_fill_capabilities_generic, .enable = pci_device_linux_sysfs_enable, + .boot_vga = pci_device_linux_sysfs_boot_vga, }; #define SYS_BUS_PCI "/sys/bus/pci/devices" @@ -730,3 +733,31 @@ static void pci_device_linux_sysfs_enabl write( fd, "1", 1 ); close(fd); } + +static int pci_device_linux_sysfs_boot_vga(struct pci_device *dev) +{ + char name[256]; + char reply[3]; + int fd, bytes_read; + int ret = 0; + + snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/boot_vga", + SYS_BUS_PCI, + dev->domain, + dev->bus, + dev->dev, + dev->func ); + + fd = open( name, O_RDONLY ); + if (fd == -1) + return 0; + + bytes_read = read(fd, reply, 1); + if (bytes_read != 1) + goto out; + if (reply[0] == '1') + ret = 1; +out: + close(fd); + return ret; +} diff -up libpciaccess-0.10.6/src/pciaccess_private.h.da libpciaccess-0.10.6/src/pciaccess_private.h --- libpciaccess-0.10.6/src/pciaccess_private.h.da 2008-10-16 08:35:53.000000000 +1000 +++ libpciaccess-0.10.6/src/pciaccess_private.h 2009-07-27 15:10:14.000000000 +1000 @@ -60,6 +60,7 @@ struct pci_system_methods { int (*fill_capabilities)( struct pci_device * dev ); void (*enable)( struct pci_device *dev ); + int (*boot_vga)( struct pci_device *dev ); }; struct pci_device_mapping { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 6 Mar 2008 20:40:43 -0000 1.7 +++ .cvsignore 27 Jul 2009 05:11:39 -0000 1.8 @@ -1 +1 @@ -libpciaccess-0.10.tar.bz2 +libpciaccess-0.10.6.tar.bz2 Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- libpciaccess.spec 25 Jul 2009 06:25:02 -0000 1.17 +++ libpciaccess.spec 27 Jul 2009 05:11:39 -0000 1.18 @@ -2,8 +2,8 @@ %define gitrev e392082abb5696c8837224da86cc0af4f21d7010 Name: libpciaccess -Version: 0.10.5 -Release: 2%{?dist} +Version: 0.10.6 +Release: 1%{?dist} Summary: PCI access library Group: System Environment/Libraries @@ -19,6 +19,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: libpciaccess-fd-cache.patch Patch2: libpciaccess-rom-size.patch +Patch3: libpciaccess-boot-vga.patch BuildRequires: autoconf automake libtool pkgconfig Requires: hwdata @@ -40,6 +41,8 @@ Development package for libpciaccess. %setup -q -n %{name}-%{version} %patch0 -p1 -b .cache %patch2 -p1 -b .rom-size +exit +%patch3 -p1 -b .bootvga %build #autoreconf -v --install @@ -70,6 +73,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pciaccess.pc %changelog +* Mon Jul 27 2009 Dave Airlie 0.10.6-1 +- rebase to latest release (will do release with VGA bits later) +- libpciaccess-boot-vga.patch: add boot vga patch from upstream + + * Fri Jul 24 2009 Fedora Release Engineering - 0.10.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: make-libpciaccess-snapshot.sh =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/make-libpciaccess-snapshot.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- make-libpciaccess-snapshot.sh 31 Oct 2007 18:08:17 -0000 1.5 +++ make-libpciaccess-snapshot.sh 27 Jul 2009 05:11:39 -0000 1.6 @@ -1,5 +1,5 @@ #!/bin/sh -n + DATE=$( date +%Y%m%d ) DIRNAME=libpciaccess REV=${1:-master} @@ -32,4 +32,4 @@ sed -i -e "s/^%define gitdate.*/%define -e "/%changelog/ a $msg" \ libpciaccess.spec -make new-sources FILES=$DIRNAME-$DATE.tar.bz2 \ No newline at end of file +make new-sources FILES=$DIRNAME-$DATE.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 21 Apr 2009 14:40:06 -0000 1.9 +++ sources 27 Jul 2009 05:11:39 -0000 1.10 @@ -1 +1 @@ -617bebf31e5685c83f935009aeae5f38 libpciaccess-0.10.5.tar.bz2 +ba25eb7582f69428648e8c67564d68e5 libpciaccess-0.10.6.tar.bz2 From jkeating at fedoraproject.org Mon Jul 27 05:11:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:11:52 +0000 (UTC) Subject: rpms/swarp/devel swarp.spec,1.4,1.5 Message-ID: <20090727051152.7163D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swarp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25647 Modified Files: swarp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/swarp/devel/swarp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- swarp.spec 26 Feb 2009 04:24:02 -0000 1.4 +++ swarp.spec 27 Jul 2009 05:11:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: swarp Version: 2.17.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool that resamples and co-adds together FITS images Group: Applications/Engineering @@ -39,6 +39,9 @@ using any arbitrary astrometric projecti %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.17.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.17.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:12:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:12:09 +0000 (UTC) Subject: rpms/swatch/devel swatch.spec,1.14,1.15 Message-ID: <20090727051209.6E45211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25834 Modified Files: swatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/swatch/devel/swatch.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- swatch.spec 26 Feb 2009 04:25:03 -0000 1.14 +++ swatch.spec 27 Jul 2009 05:12:09 -0000 1.15 @@ -1,6 +1,6 @@ Name: swatch Version: 3.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool for actively monitoring log files Group: Applications/File @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:12:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:12:22 +0000 (UTC) Subject: rpms/sweep/devel sweep.spec,1.9,1.10 Message-ID: <20090727051222.9E4E811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sweep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26014 Modified Files: sweep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sweep.spec =================================================================== RCS file: /cvs/pkgs/rpms/sweep/devel/sweep.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sweep.spec 1 Mar 2009 14:40:34 -0000 1.9 +++ sweep.spec 27 Jul 2009 05:12:22 -0000 1.10 @@ -1,6 +1,6 @@ Name: sweep Version: 0.9.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An audio editor and live playback tool Group: Applications/Multimedia @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Gerard Milmeister - 0.9.3-4 - fix for crash while saving From jkeating at fedoraproject.org Mon Jul 27 05:12:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:12:35 +0000 (UTC) Subject: rpms/swfdec/devel swfdec.spec,1.18,1.19 Message-ID: <20090727051235.B2B1711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swfdec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26150 Modified Files: swfdec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swfdec.spec =================================================================== RCS file: /cvs/pkgs/rpms/swfdec/devel/swfdec.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- swfdec.spec 26 Feb 2009 04:26:56 -0000 1.18 +++ swfdec.spec 27 Jul 2009 05:12:35 -0000 1.19 @@ -5,7 +5,7 @@ Name: swfdec Version: %{major_version}.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Flash animation rendering library Group: System Environment/Libraries @@ -148,6 +148,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:12:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:12:46 +0000 (UTC) Subject: rpms/swfdec-gnome/devel swfdec-gnome.spec,1.19,1.20 Message-ID: <20090727051246.4486211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swfdec-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26264 Modified Files: swfdec-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swfdec-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/swfdec-gnome/devel/swfdec-gnome.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- swfdec-gnome.spec 17 Mar 2009 05:36:25 -0000 1.19 +++ swfdec-gnome.spec 27 Jul 2009 05:12:46 -0000 1.20 @@ -1,6 +1,6 @@ Name: swfdec-gnome Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Programs to integrate Flash into the GNOME desktop Group: Applications/Internet @@ -100,6 +100,9 @@ fi %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 17 2009 Matthias Clasen - 2.26.0-1 - Update to 2.26.0 From jkeating at fedoraproject.org Mon Jul 27 05:12:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:12:59 +0000 (UTC) Subject: rpms/swfdec-mozilla/devel swfdec-mozilla.spec,1.12,1.13 Message-ID: <20090727051259.2554911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swfdec-mozilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26398 Modified Files: swfdec-mozilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swfdec-mozilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/swfdec-mozilla/devel/swfdec-mozilla.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- swfdec-mozilla.spec 26 Feb 2009 04:28:50 -0000 1.12 +++ swfdec-mozilla.spec 27 Jul 2009 05:12:58 -0000 1.13 @@ -1,6 +1,6 @@ Name: swfdec-mozilla Version: 0.9.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mozilla/Gecko player Flash plugin using swfdec Group: Applications/Internet @@ -63,6 +63,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:13:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:13:10 +0000 (UTC) Subject: rpms/swig/devel swig.spec,1.47,1.48 Message-ID: <20090727051310.8BB9011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26556 Modified Files: swig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swig.spec =================================================================== RCS file: /cvs/pkgs/rpms/swig/devel/swig.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- swig.spec 30 Mar 2009 13:53:10 -0000 1.47 +++ swig.spec 27 Jul 2009 05:13:10 -0000 1.48 @@ -4,7 +4,7 @@ Summary: Connects C/C++/Objective C to some high-level programming languages. Name: swig Version: 1.3.39 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Development/Tools URL: http://swig.sourceforge.net/ @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %doc Doc Examples %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.39-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Adam Tkac 1.3.39-1 - update to 1.3.39 - swig-1.3.38-rh485540.patch was merged From jkeating at fedoraproject.org Mon Jul 27 05:13:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:13:21 +0000 (UTC) Subject: rpms/swing-layout/devel swing-layout.spec,1.3,1.4 Message-ID: <20090727051321.2731711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swing-layout/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26681 Modified Files: swing-layout.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swing-layout.spec =================================================================== RCS file: /cvs/pkgs/rpms/swing-layout/devel/swing-layout.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- swing-layout.spec 26 Feb 2009 04:30:46 -0000 1.3 +++ swing-layout.spec 27 Jul 2009 05:13:21 -0000 1.4 @@ -3,7 +3,7 @@ Name: swing-layout Version: 1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Natural layout for Swing panels Group: Development/Libraries @@ -99,6 +99,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:13:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:13:36 +0000 (UTC) Subject: rpms/swingx/devel swingx.spec,1.2,1.3 Message-ID: <20090727051336.C6E1B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/swingx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26864 Modified Files: swingx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: swingx.spec =================================================================== RCS file: /cvs/pkgs/rpms/swingx/devel/swingx.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- swingx.spec 26 Feb 2009 04:31:46 -0000 1.2 +++ swingx.spec 27 Jul 2009 05:13:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: swingx Version: 0.9.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A collection of Swing components License: LGPLv2 Group: Development/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}-%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:13:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:13:50 +0000 (UTC) Subject: rpms/switchdesk/devel switchdesk.spec,1.42,1.43 Message-ID: <20090727051350.8327611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/switchdesk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27028 Modified Files: switchdesk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: switchdesk.spec =================================================================== RCS file: /cvs/pkgs/rpms/switchdesk/devel/switchdesk.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- switchdesk.spec 26 Feb 2009 04:32:46 -0000 1.42 +++ switchdesk.spec 27 Jul 2009 05:13:50 -0000 1.43 @@ -2,7 +2,7 @@ Name: switchdesk Summary: A desktop environment switcher for GNOME, KDE and AnotherLevel. Version: 4.0.9 -Release: %{_release}%{?dist}.1 +Release: %{_release}%{?dist}.2 Source: %{name}-%{version}-%{_release}.tar.bz2 License: GPLv2+ Group: User Interface/Desktops @@ -74,6 +74,9 @@ rm -rf %{buildroot} %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.9-4.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0.9-4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:14:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:14:04 +0000 (UTC) Subject: rpms/sword/devel sword.spec,1.28,1.29 Message-ID: <20090727051404.DF8BD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27192 Modified Files: sword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sword.spec =================================================================== RCS file: /cvs/pkgs/rpms/sword/devel/sword.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sword.spec 9 Jun 2009 01:38:34 -0000 1.28 +++ sword.spec 27 Jul 2009 05:14:04 -0000 1.29 @@ -1,6 +1,6 @@ Name: sword Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Free Bible Software Project Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf %{buildroot} %{_libdir}/libsword.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Deji Akingunola - 1.6.0-1 - Update to version 1.6.0 From jkeating at fedoraproject.org Mon Jul 27 05:14:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:14:18 +0000 (UTC) Subject: rpms/syck/devel syck.spec,1.30,1.31 Message-ID: <20090727051418.4007F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/syck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27377 Modified Files: syck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: syck.spec =================================================================== RCS file: /cvs/pkgs/rpms/syck/devel/syck.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- syck.spec 14 Jul 2009 06:21:37 -0000 1.30 +++ syck.spec 27 Jul 2009 05:14:18 -0000 1.31 @@ -6,7 +6,7 @@ Name: syck Summary: YAML for C, Python, and PHP Version: 0.61 -Release: 8.3%{?dist} +Release: 9.3%{?dist} License: BSD Group: System Environment/Libraries @@ -194,6 +194,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/php.d/syck.ini %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.61-9.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Remi Collet - 0.61-8.3 - rebuild for new PHP 5.3.0 ABI (20090626) - add syck-nan.patch From jkeating at fedoraproject.org Mon Jul 27 05:14:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:14:31 +0000 (UTC) Subject: rpms/sylpheed/devel sylpheed.spec,1.98,1.99 Message-ID: <20090727051431.AF86711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sylpheed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27530 Modified Files: sylpheed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sylpheed.spec =================================================================== RCS file: /cvs/pkgs/rpms/sylpheed/devel/sylpheed.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- sylpheed.spec 24 Feb 2009 10:50:58 -0000 1.98 +++ sylpheed.spec 27 Jul 2009 05:14:31 -0000 1.99 @@ -7,7 +7,7 @@ Summary: GTK+ based, lightweight, and fast email client Name: sylpheed Version: 2.6.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://sylpheed.sraoss.jp/ Group: Applications/Internet @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Michael Schwendt - 2.6.0-4 - fix crash in import of csv address-books with empty Name fields From jkeating at fedoraproject.org Mon Jul 27 05:14:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:14:44 +0000 (UTC) Subject: rpms/symlinks/devel symlinks.spec,1.19,1.20 Message-ID: <20090727051444.E594711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/symlinks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27676 Modified Files: symlinks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: symlinks.spec =================================================================== RCS file: /cvs/pkgs/rpms/symlinks/devel/symlinks.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- symlinks.spec 26 Feb 2009 04:35:38 -0000 1.19 +++ symlinks.spec 27 Jul 2009 05:14:44 -0000 1.20 @@ -2,7 +2,7 @@ Summary: A utility which maintains a sys Name: symlinks URL: ftp://metalab.unc.edu/pub/Linux/utils/file/ Version: 1.2 -Release: 33%{?dist} +Release: 34%{?dist} Group: Applications/System License: Copyright only Source0: ftp://metalab.unc.edu/pub/Linux/utils/file/%{name}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/symlinks.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:14:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:14:57 +0000 (UTC) Subject: rpms/symmetrica/devel symmetrica.spec,1.2,1.3 Message-ID: <20090727051457.8EF7011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/symmetrica/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27814 Modified Files: symmetrica.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: symmetrica.spec =================================================================== RCS file: /cvs/pkgs/rpms/symmetrica/devel/symmetrica.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- symmetrica.spec 26 Feb 2009 04:36:35 -0000 1.2 +++ symmetrica.spec 27 Jul 2009 05:14:57 -0000 1.3 @@ -1,6 +1,6 @@ Name: symmetrica Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Collection of Routines for Solving Symmetric Groups Group: Applications/Engineering # Note: they claim it's 'public domain' but then provide this: @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:15:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:15:16 +0000 (UTC) Subject: rpms/sympow/devel sympow.spec,1.1,1.2 Message-ID: <20090727051516.87D9211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sympow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27985 Modified Files: sympow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sympow.spec =================================================================== RCS file: /cvs/pkgs/rpms/sympow/devel/sympow.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sympow.spec 18 Mar 2009 00:57:36 -0000 1.1 +++ sympow.spec 27 Jul 2009 05:15:16 -0000 1.2 @@ -1,6 +1,6 @@ Name: sympow Version: 1.019 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Special Values of Symmetric Power Elliptic Curve L-Functions Group: Applications/Engineering License: BSD @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.019-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Dec 14 2008 Conrad Meyer - 1.019-2 - Make launcher-script multilibs-safe. From jkeating at fedoraproject.org Mon Jul 27 05:15:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:15:34 +0000 (UTC) Subject: rpms/sympy/devel sympy.spec,1.6,1.7 Message-ID: <20090727051534.5526411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sympy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28168 Modified Files: sympy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sympy.spec =================================================================== RCS file: /cvs/pkgs/rpms/sympy/devel/sympy.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sympy.spec 26 Feb 2009 04:37:32 -0000 1.6 +++ sympy.spec 27 Jul 2009 05:15:33 -0000 1.7 @@ -2,7 +2,7 @@ Name: sympy Version: 0.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Python library for symbolic mathematics Group: Development/Languages License: BSD @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:15:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:15:47 +0000 (UTC) Subject: rpms/synaptic/devel synaptic.spec,1.38,1.39 Message-ID: <20090727051547.8A09C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synaptic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28333 Modified Files: synaptic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synaptic.spec =================================================================== RCS file: /cvs/pkgs/rpms/synaptic/devel/synaptic.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- synaptic.spec 6 Mar 2009 20:49:18 -0000 1.38 +++ synaptic.spec 27 Jul 2009 05:15:47 -0000 1.39 @@ -3,7 +3,7 @@ Summary: Graphical frontend for APT package manager. Name: synaptic Version: 0.57.2 -Release: 20%{?dist} +Release: 21%{?dist} License: GPLv2+ Group: Applications/System @@ -116,6 +116,9 @@ scrollkeeper-update -q ||: %{_mandir}/man8/%{name}.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.57.2-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Panu Matilainen - 0.57.2-20 - rebuild for rpm 4.7.0 From jkeating at fedoraproject.org Mon Jul 27 05:15:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:15:59 +0000 (UTC) Subject: rpms/synce-gnome/devel synce-gnome.spec,1.2,1.3 Message-ID: <20090727051559.8127911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28474 Modified Files: synce-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-gnome/devel/synce-gnome.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- synce-gnome.spec 26 Feb 2009 04:39:27 -0000 1.2 +++ synce-gnome.spec 27 Jul 2009 05:15:59 -0000 1.3 @@ -1,6 +1,6 @@ Name: synce-gnome Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Display libnotify messages for odccm Group: Applications/Communications @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/synce-gnome %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:16:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:16:13 +0000 (UTC) Subject: rpms/synce-gnomevfs/devel synce-gnomevfs.spec,1.12,1.13 Message-ID: <20090727051613.7002F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-gnomevfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28641 Modified Files: synce-gnomevfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-gnomevfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-gnomevfs/devel/synce-gnomevfs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- synce-gnomevfs.spec 27 Mar 2009 19:18:14 -0000 1.12 +++ synce-gnomevfs.spec 27 Jul 2009 05:16:13 -0000 1.13 @@ -1,6 +1,6 @@ Name: synce-gnomevfs Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Gnome-vfs module for synce Group: Applications/Communications @@ -62,6 +62,9 @@ update-mime-database %{_datadir}/mime > %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13-1 - version upgrade (#457949) From jkeating at fedoraproject.org Mon Jul 27 05:16:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:16:24 +0000 (UTC) Subject: rpms/synce-hal/devel synce-hal.spec,1.6,1.7 Message-ID: <20090727051624.5BED711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-hal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28781 Modified Files: synce-hal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-hal.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-hal/devel/synce-hal.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- synce-hal.spec 21 Jul 2009 19:22:48 -0000 1.6 +++ synce-hal.spec 27 Jul 2009 05:16:24 -0000 1.7 @@ -1,6 +1,6 @@ Name: synce-hal Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Connection framework and dccm-implementation Group: Applications/Communications @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/ppp/ip-up.d/synce-bt* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Mon Jul 27 05:16:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:16:38 +0000 (UTC) Subject: rpms/synce-kde/devel synce-kde.spec,1.5,1.6 Message-ID: <20090727051638.7560711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-kde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28914 Modified Files: synce-kde.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-kde.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-kde/devel/synce-kde.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- synce-kde.spec 26 Feb 2009 04:42:27 -0000 1.5 +++ synce-kde.spec 27 Jul 2009 05:16:38 -0000 1.6 @@ -1,7 +1,7 @@ Name: synce-kde Summary: Connection service application for Pocket PC handhelds Version: 0.9.1 -Release: 4%{?dist} +Release: 5%{?dist} Group: Applications/Communications License: MIT URL: http://www.synce.org/index.php/KDE @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:16:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:16:52 +0000 (UTC) Subject: rpms/synce-kpm/devel synce-kpm.spec,1.7,1.8 Message-ID: <20090727051652.8431511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-kpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29069 Modified Files: synce-kpm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-kpm.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-kpm/devel/synce-kpm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- synce-kpm.spec 21 Jul 2009 19:42:55 -0000 1.7 +++ synce-kpm.spec 27 Jul 2009 05:16:52 -0000 1.8 @@ -3,7 +3,7 @@ Name: synce-kpm Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: SynCE KDE PDA Manager Group: Applications/Communications @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-synce-kpm.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From airlied at fedoraproject.org Mon Jul 27 05:17:15 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Mon, 27 Jul 2009 05:17:15 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess.spec,1.18,1.19 Message-ID: <20090727051715.C5E5D11C0094@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29296 Modified Files: libpciaccess.spec Log Message: * Mon Jul 27 2009 Dave Airlie 0.10.6-1 - rebase to latest release (will do release with VGA bits later) - libpciaccess-boot-vga.patch: add boot vga patch from upstream Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libpciaccess.spec 27 Jul 2009 05:11:39 -0000 1.18 +++ libpciaccess.spec 27 Jul 2009 05:17:15 -0000 1.19 @@ -41,7 +41,6 @@ Development package for libpciaccess. %setup -q -n %{name}-%{version} %patch0 -p1 -b .cache %patch2 -p1 -b .rom-size -exit %patch3 -p1 -b .bootvga %build From jkeating at fedoraproject.org Mon Jul 27 05:17:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:17:09 +0000 (UTC) Subject: rpms/synce-serial/devel synce-serial.spec,1.6,1.7 Message-ID: <20090727051709.D509E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-serial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29267 Modified Files: synce-serial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-serial.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-serial/devel/synce-serial.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- synce-serial.spec 26 Feb 2009 04:43:51 -0000 1.6 +++ synce-serial.spec 27 Jul 2009 05:17:09 -0000 1.7 @@ -1,6 +1,6 @@ Name: synce-serial Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Serial connection support for Pocket PC devices Group: Applications/Communications @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/udev/rules.d/*.rules %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:17:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:17:24 +0000 (UTC) Subject: rpms/synce-software-manager/devel synce-software-manager.spec, 1.11, 1.12 Message-ID: <20090727051724.8324E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-software-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29434 Modified Files: synce-software-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-software-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-software-manager/devel/synce-software-manager.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- synce-software-manager.spec 21 Mar 2009 00:05:34 -0000 1.11 +++ synce-software-manager.spec 27 Jul 2009 05:17:24 -0000 1.12 @@ -1,6 +1,6 @@ Name: synce-software-manager Version: 0.9.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Software manager for use with synce Group: Applications/Communications @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 21 2009 Robert Scheck - 0.9.0-12 - Force usage of libtoolize and intltoolize to avoid build errors From jkeating at fedoraproject.org Mon Jul 27 05:17:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:17:35 +0000 (UTC) Subject: rpms/synce-sync-engine/devel synce-sync-engine.spec,1.13,1.14 Message-ID: <20090727051735.E1D2511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-sync-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29604 Modified Files: synce-sync-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-sync-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-sync-engine/devel/synce-sync-engine.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- synce-sync-engine.spec 21 Jul 2009 19:22:16 -0000 1.13 +++ synce-sync-engine.spec 27 Jul 2009 05:17:35 -0000 1.14 @@ -3,7 +3,7 @@ Name: synce-sync-engine Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Synce synchronization engine Group: Applications/Communications @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/opensync/defaults/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.14-1 - version upgrade From jkeating at fedoraproject.org Mon Jul 27 05:17:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:17:47 +0000 (UTC) Subject: rpms/synce-trayicon/devel synce-trayicon.spec,1.19,1.20 Message-ID: <20090727051747.7D45211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synce-trayicon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29724 Modified Files: synce-trayicon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synce-trayicon.spec =================================================================== RCS file: /cvs/pkgs/rpms/synce-trayicon/devel/synce-trayicon.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- synce-trayicon.spec 27 Mar 2009 19:21:56 -0000 1.19 +++ synce-trayicon.spec 27 Jul 2009 05:17:47 -0000 1.20 @@ -1,6 +1,6 @@ Name: synce-trayicon Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tray icon for use with gnome and synce Group: Applications/Communications @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome/autostart/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Feb 08 2009 Andreas Bierfert - 0.13-1 - version upgrade (#457949) From jkeating at fedoraproject.org Mon Jul 27 05:17:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:17:59 +0000 (UTC) Subject: rpms/syncevolution/devel syncevolution.spec,1.10,1.11 Message-ID: <20090727051759.3E69A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/syncevolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29850 Modified Files: syncevolution.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: syncevolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/syncevolution/devel/syncevolution.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- syncevolution.spec 26 Mar 2009 16:44:38 -0000 1.10 +++ syncevolution.spec 27 Jul 2009 05:17:58 -0000 1.11 @@ -1,7 +1,7 @@ Summary: SyncML client for evolution Name: syncevolution Version: 0.8.1a -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Productivity URL: http://www.estamos.de/projects/SyncML/ @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.1a-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 23 2009 Matej Cepl 0.8.1a-1 - New upstream release. - make a fix for one #elif which should be #else From jkeating at fedoraproject.org Mon Jul 27 05:18:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:18:19 +0000 (UTC) Subject: rpms/synergy/devel synergy.spec,1.27,1.28 Message-ID: <20090727051819.8FE7D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synergy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30056 Modified Files: synergy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synergy.spec =================================================================== RCS file: /cvs/pkgs/rpms/synergy/devel/synergy.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- synergy.spec 26 Feb 2009 15:44:19 -0000 1.27 +++ synergy.spec 27 Jul 2009 05:18:19 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Mouse and keyboard sharing utility Name: synergy Version: 1.3.1 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: System Environment/Daemons URL: http://synergy2.sourceforge.net/ @@ -67,6 +67,9 @@ install -p -m 644 %{SOURCE2} %{buildroot %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Matthias Saou 1.3.1-12 - Include patch to fix the fix for delay issues (#471259). From mclasen at fedoraproject.org Mon Jul 27 05:18:23 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 05:18:23 +0000 (UTC) Subject: rpms/gnome-disk-utility/devel drop-polkit.patch, NONE, 1.1 gnome-disk-utility.spec, 1.14, 1.15 Message-ID: <20090727051823.96A1C11C0094@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-disk-utility/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29965 Modified Files: gnome-disk-utility.spec Added Files: drop-polkit.patch Log Message: Drop PolicyKit from pc files, too drop-polkit.patch: gdu-gtk/gdu-gtk.pc.in | 2 +- gdu/gdu.pc.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE drop-polkit.patch --- diff -up gnome-disk-utility-0.4/src/gdu/gdu.pc.in.drop-polkit gnome-disk-utility-0.4/src/gdu/gdu.pc.in --- gnome-disk-utility-0.4/src/gdu/gdu.pc.in.drop-polkit 2009-07-27 01:13:07.886996591 -0400 +++ gnome-disk-utility-0.4/src/gdu/gdu.pc.in 2009-07-27 01:13:19.967999834 -0400 @@ -6,6 +6,6 @@ includedir=@includedir@ Name: gdu Description: GObject based Disk Utility Library Version: @VERSION@ -Requires: gobject-2.0 gio-2.0 polkit +Requires: gobject-2.0 gio-2.0 Libs: -L${libdir} -lgdu Cflags: -I${includedir}/gnome-disk-utility diff -up gnome-disk-utility-0.4/src/gdu-gtk/gdu-gtk.pc.in.drop-polkit gnome-disk-utility-0.4/src/gdu-gtk/gdu-gtk.pc.in --- gnome-disk-utility-0.4/src/gdu-gtk/gdu-gtk.pc.in.drop-polkit 2009-07-27 01:13:39.889005506 -0400 +++ gnome-disk-utility-0.4/src/gdu-gtk/gdu-gtk.pc.in 2009-07-27 01:13:48.500002504 -0400 @@ -6,6 +6,6 @@ includedir=@includedir@ Name: gdu-gtk Description: GTK+ library for libgdu Version: @VERSION@ -Requires: gdu polkit-gnome gtk+-2.0 +Requires: gdu gtk+-2.0 Libs: -L${libdir} -lgdu-gtk Cflags: -I${includedir}/gnome-disk-utility Index: gnome-disk-utility.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-disk-utility/devel/gnome-disk-utility.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- gnome-disk-utility.spec 25 Jul 2009 00:37:27 -0000 1.14 +++ gnome-disk-utility.spec 27 Jul 2009 05:18:23 -0000 1.15 @@ -12,7 +12,7 @@ Summary: Disk management application Name: gnome-disk-utility Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://git.gnome.org/cgit/gnome-disk-utility @@ -38,6 +38,8 @@ Requires: %{name}-libs = %{version}-%{re Obsoletes: gnome-disk-utility-format Obsoletes: nautilus-gdu +Patch0: drop-polkit.patch + %description This package contains the Palimpsest disk management application. Palimpsest supports partitioning, file system creation, encryption, @@ -92,6 +94,7 @@ develop applications with gnome-disk-uti %prep %setup -q +%patch0 -p1 -b .drop-polkit %build %configure @@ -208,6 +211,9 @@ fi %{_includedir}/gnome-disk-utility/gdu-gtk/* %changelog +* Mon Jul 27 2009 Matthias Clasen - 0.4-3%{?dist} +- Drop PolicyKit from .pc files, too + * Fri Jul 24 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:18:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:18:39 +0000 (UTC) Subject: rpms/synopsis/devel synopsis.spec,1.5,1.6 Message-ID: <20090727051839.B425111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/synopsis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30233 Modified Files: synopsis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: synopsis.spec =================================================================== RCS file: /cvs/pkgs/rpms/synopsis/devel/synopsis.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- synopsis.spec 17 Apr 2009 17:01:10 -0000 1.5 +++ synopsis.spec 27 Jul 2009 05:18:39 -0000 1.6 @@ -1,6 +1,6 @@ %define name synopsis %define version 0.12 -%define release 1 +%define release 2 %define py_sitedir %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()") %define py_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") %define url http://synopsis.fresco.org @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %{_docdir}/synopsis-%{version}/NEWS %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 17 2009 Stefan Seefeld 0.12-1 - Bump version number. From jkeating at fedoraproject.org Mon Jul 27 05:18:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:18:56 +0000 (UTC) Subject: rpms/sysbench/devel sysbench.spec,1.3,1.4 Message-ID: <20090727051856.0B17D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysbench/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30534 Modified Files: sysbench.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysbench.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysbench/devel/sysbench.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sysbench.spec 18 Mar 2009 08:32:42 -0000 1.3 +++ sysbench.spec 27 Jul 2009 05:18:55 -0000 1.4 @@ -1,7 +1,7 @@ Summary: System performance benchmark Name: sysbench Version: 0.4.10 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Xavier Bachelot 0.4.10-3 - License is GPLv2+, not GPLv2. From jkeating at fedoraproject.org Mon Jul 27 05:19:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:19:14 +0000 (UTC) Subject: rpms/sysconftool/devel sysconftool.spec,1.5,1.6 Message-ID: <20090727051914.7435B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysconftool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30756 Modified Files: sysconftool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysconftool.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysconftool/devel/sysconftool.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sysconftool.spec 26 Feb 2009 04:50:59 -0000 1.5 +++ sysconftool.spec 27 Jul 2009 05:19:14 -0000 1.6 @@ -2,7 +2,7 @@ Summary: Macros for aclocal to install c Summary(pl): Makra dla aclocal do instalacji plik?w konfiguracyjnych Name: sysconftool Version: 0.15 -Release: 5%{?dist} +Release: 6%{?dist} # No version specified. License: GPL+ Group: Development/Tools @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/sysconftool.m4 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.15-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:19:31 +0000 (UTC) Subject: rpms/sysfsutils/devel sysfsutils.spec,1.25,1.26 Message-ID: <20090727051931.4032811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysfsutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30915 Modified Files: sysfsutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysfsutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysfsutils/devel/sysfsutils.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sysfsutils.spec 26 Feb 2009 04:51:58 -0000 1.25 +++ sysfsutils.spec 27 Jul 2009 05:19:30 -0000 1.26 @@ -3,7 +3,7 @@ URL: http://sourceforge.net/p License: GPLv2 Group: Development/Tools Version: 2.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Utilities for interfacing with sysfs BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:19:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:19:47 +0000 (UTC) Subject: rpms/sysklogd/devel sysklogd.spec,1.68,1.69 Message-ID: <20090727051947.0BBBA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysklogd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31158 Modified Files: sysklogd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysklogd.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysklogd/devel/sysklogd.spec,v retrieving revision 1.68 retrieving revision 1.69 diff -u -p -r1.68 -r1.69 --- sysklogd.spec 26 Feb 2009 04:52:55 -0000 1.68 +++ sysklogd.spec 27 Jul 2009 05:19:45 -0000 1.69 @@ -1,7 +1,7 @@ Summary: System logging and kernel message trapping daemons Name: sysklogd Version: 1.5 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2 Group: System Environment/Daemons URL: http://www.infodrom.org/projects/sysklogd/ @@ -125,6 +125,9 @@ exit 0 #%{_includedir}/sysklogd/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:20:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:20:03 +0000 (UTC) Subject: rpms/syslinux/devel syslinux.spec,1.61,1.62 Message-ID: <20090727052003.9FB3311C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/syslinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31340 Modified Files: syslinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: syslinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/syslinux/devel/syslinux.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- syslinux.spec 28 Apr 2009 19:50:49 -0000 1.61 +++ syslinux.spec 27 Jul 2009 05:20:03 -0000 1.62 @@ -2,7 +2,7 @@ Summary: Simple kernel loader which boot Name: syslinux Version: 3.75 %define tarball_version 3.75 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/System URL: http://syslinux.zytor.com/ @@ -85,6 +85,9 @@ rm -rf %{buildroot} %{_datadir}/syslinux/com32 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.75-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Jeremy Katz - 3.75-3 - Stop suppressing requirements of the package (#465299) From jkeating at fedoraproject.org Mon Jul 27 05:20:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:20:17 +0000 (UTC) Subject: rpms/syslog-ng/devel syslog-ng.spec,1.41,1.42 Message-ID: <20090727052017.86E3711C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/syslog-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31531 Modified Files: syslog-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: syslog-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/syslog-ng/devel/syslog-ng.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- syslog-ng.spec 24 Mar 2009 13:52:29 -0000 1.41 +++ syslog-ng.spec 27 Jul 2009 05:20:17 -0000 1.42 @@ -6,7 +6,7 @@ Name: syslog-ng Version: 2.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Next-generation syslog server Group: System Environment/Daemons @@ -219,6 +219,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Douglas E. Warner - 2.1.4-1 - update to 2.1.4 - enabling mixed linking to compile only non-system libs statically From jkeating at fedoraproject.org Mon Jul 27 05:20:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:20:35 +0000 (UTC) Subject: rpms/sysreport/devel sysreport.spec,1.46,1.47 Message-ID: <20090727052035.5368A11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysreport/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31659 Modified Files: sysreport.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysreport.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysreport/devel/sysreport.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- sysreport.spec 28 Feb 2009 01:21:56 -0000 1.46 +++ sysreport.spec 27 Jul 2009 05:20:34 -0000 1.47 @@ -1,7 +1,7 @@ Summary: Gathers system hardware and configuration information. Name: sysreport Version: 1.4.4 -Release: 3 +Release: 4 URL: http://www.redhat.com/support Group: Development/Debuggers Source0: %{name}-%{version}-1.tar.bz2 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - Remove references to release in source paths From jkeating at fedoraproject.org Mon Jul 27 05:20:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:20:48 +0000 (UTC) Subject: rpms/sysstat/devel sysstat.spec,1.69,1.70 Message-ID: <20090727052048.4BC3511C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31865 Modified Files: sysstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysstat/devel/sysstat.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- sysstat.spec 20 Jul 2009 07:00:21 -0000 1.69 +++ sysstat.spec 27 Jul 2009 05:20:48 -0000 1.70 @@ -1,6 +1,6 @@ Name: sysstat Version: 9.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The sar and iostat system monitoring commands License: GPLv2+ Group: Applications/System @@ -72,6 +72,9 @@ rm -rf %{buildroot} %{_localstatedir}/log/sa %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 9.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Ivana Varekova - 9.0.4-1 - update to 9.0.4 From jkeating at fedoraproject.org Mon Jul 27 05:21:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:21:02 +0000 (UTC) Subject: rpms/system-autodeath/devel system-autodeath.spec,1.3,1.4 Message-ID: <20090727052102.75CEA11C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-autodeath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31983 Modified Files: system-autodeath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-autodeath.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-autodeath/devel/system-autodeath.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- system-autodeath.spec 26 Feb 2009 04:57:38 -0000 1.3 +++ system-autodeath.spec 27 Jul 2009 05:21:02 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Automatically disable system default route on a specific date Name: system-autodeath Version: 0.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://skvidal.fedorapeople.org/%{name}/%{name}-%{version}.tar.gz @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/system-autodeath.* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:21:17 +0000 (UTC) Subject: rpms/system-config-bind/devel system-config-bind.spec,1.84,1.85 Message-ID: <20090727052117.53F6311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-bind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32194 Modified Files: system-config-bind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-bind.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-bind/devel/system-config-bind.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- system-config-bind.spec 11 Jun 2009 12:17:56 -0000 1.84 +++ system-config-bind.spec 27 Jul 2009 05:21:16 -0000 1.85 @@ -1,7 +1,7 @@ Summary: BIND DNS Configuration Tool Name: system-config-bind Version: 4.0.13 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/system-config-bind License: GPLv2 Group: Applications/System @@ -82,6 +82,9 @@ if [ "$1" -eq 0 ]; then fi; %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Jaroslav Reznik - 4.0.13-1 - Fixes traceback while creating new zone (rhbz#505208) From jkeating at fedoraproject.org Mon Jul 27 05:21:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:21:28 +0000 (UTC) Subject: rpms/system-config-boot/devel system-config-boot.spec,1.32,1.33 Message-ID: <20090727052128.E3B3911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-boot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32354 Modified Files: system-config-boot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-boot.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-boot/devel/system-config-boot.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- system-config-boot.spec 26 Feb 2009 04:59:24 -0000 1.32 +++ system-config-boot.spec 27 Jul 2009 05:21:28 -0000 1.33 @@ -4,7 +4,7 @@ Summary: A graphical interface for configuring the boot loader Name: system-config-boot Version: 0.3.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/boot License: GPLv2 ExclusiveOS: Linux @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %config(noreplace) /etc/pam.d/system-config-boot %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:21:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:21:51 +0000 (UTC) Subject: rpms/system-config-date/devel system-config-date.spec,1.115,1.116 Message-ID: <20090727052151.BC4DB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-date/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32634 Modified Files: system-config-date.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-date.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-date/devel/system-config-date.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- system-config-date.spec 9 Jul 2009 09:07:01 -0000 1.115 +++ system-config-date.spec 27 Jul 2009 05:21:51 -0000 1.116 @@ -15,7 +15,7 @@ Summary: A graphical interface for modifying system date and time Name: system-config-date Version: 1.9.39 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/%{name} License: GPLv2+ Group: System Environment/Base @@ -121,6 +121,9 @@ fi %config(noreplace) %{_sysconfdir}/pam.d/dateconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9.39-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Nils Philippsen - 1.9.39-1 - use POOL_NTP_ORG_VENDOR in Makefile to set default NTP servers (#510309) From jkeating at fedoraproject.org Mon Jul 27 05:21:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:21:40 +0000 (UTC) Subject: rpms/system-config-cluster/devel system-config-cluster.spec, 1.19, 1.20 Message-ID: <20090727052140.D240111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-cluster/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32514 Modified Files: system-config-cluster.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-cluster/devel/system-config-cluster.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- system-config-cluster.spec 30 Jun 2009 17:32:47 -0000 1.19 +++ system-config-cluster.spec 27 Jul 2009 05:21:40 -0000 1.20 @@ -2,7 +2,7 @@ Summary: A utility for managing cluster configuration in a graphical setting Name: system-config-cluster Version: 1.0.53 -Release: 6 +Release: 7 URL: http://www.redhat.com/ Source0: %{name}-%{version}.tar.gz Patch0: %{name}-pam.patch @@ -53,6 +53,9 @@ rm -rf %{buildroot} %config %{_sysconfdir}/security/console.apps/system-config-cluster %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.53-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Jeremy Katz - 1.0.53-6 - Doesn't really depend on rhpl, remove the dependency From jkeating at fedoraproject.org Mon Jul 27 05:22:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:22:06 +0000 (UTC) Subject: rpms/system-config-date-docs/devel system-config-date-docs.spec, 1.5, 1.6 Message-ID: <20090727052206.1F92611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-date-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv300 Modified Files: system-config-date-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-date-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-date-docs/devel/system-config-date-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-config-date-docs.spec 14 Apr 2009 15:51:39 -0000 1.5 +++ system-config-date-docs.spec 27 Jul 2009 05:22:05 -0000 1.6 @@ -9,7 +9,7 @@ Summary: Documentation for setting the system date and time Name: system-config-date-docs Version: 1.0.7 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://fedorahosted.org/%{name} License: GPLv2+ Group: Documentation @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gnome/help/system-config-date %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.0.7-1 - add sr at latin structure (#495591) - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:22:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:22:27 +0000 (UTC) Subject: rpms/system-config-display/devel system-config-display.spec, 1.65, 1.66 Message-ID: <20090727052227.2DF7311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-display/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv541 Modified Files: system-config-display.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-display.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-display/devel/system-config-display.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- system-config-display.spec 26 Feb 2009 05:03:13 -0000 1.65 +++ system-config-display.spec 27 Jul 2009 05:22:26 -0000 1.66 @@ -1,7 +1,7 @@ Summary: A graphical interface for configuring the X Window System display Name: system-config-display Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/Tools License: GPLv2+ ExclusiveOS: Linux @@ -78,6 +78,9 @@ fi %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-display.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:22:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:22:40 +0000 (UTC) Subject: rpms/system-config-firewall/devel system-config-firewall.spec, 1.42, 1.43 Message-ID: <20090727052240.4EC3711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-firewall/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv757 Modified Files: system-config-firewall.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-firewall.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-firewall/devel/system-config-firewall.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- system-config-firewall.spec 15 Apr 2009 13:02:13 -0000 1.42 +++ system-config-firewall.spec 27 Jul 2009 05:22:40 -0000 1.43 @@ -1,7 +1,7 @@ Summary: A graphical interface for basic firewall setup Name: system-config-firewall Version: 1.2.16 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://fedorahosted.org/system-config-firewall License: GPLv2+ ExclusiveOS: Linux @@ -119,6 +119,9 @@ fi %ghost %config(missingok,noreplace) /etc/sysconfig/system-config-firewall %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.16-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Thomas Woerner 1.2.16-2 - release bump From jkeating at fedoraproject.org Mon Jul 27 05:22:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:22:53 +0000 (UTC) Subject: rpms/system-config-httpd/devel system-config-httpd.spec,1.22,1.23 Message-ID: <20090727052253.0F35911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-httpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv883 Modified Files: system-config-httpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-httpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-httpd/devel/system-config-httpd.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- system-config-httpd.spec 7 Jul 2009 15:46:31 -0000 1.22 +++ system-config-httpd.spec 27 Jul 2009 05:22:52 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Apache configuration tool Name: system-config-httpd Version: 1.4.4 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 5 URL: http://www.redhat.com/ Source0: system-config-httpd-%{version}.tar.gz @@ -74,6 +74,9 @@ fi %dir /var/cache/alchemist/apache %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5:1.4.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Tom "spot" Callaway - 5:1.4.4-5 - fix duplicate directory ownership (/usr/share/applications/) From jkeating at fedoraproject.org Mon Jul 27 05:23:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:23:08 +0000 (UTC) Subject: rpms/system-config-kdump/devel system-config-kdump.spec,1.10,1.11 Message-ID: <20090727052308.C2A8711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-kdump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1078 Modified Files: system-config-kdump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-kdump.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kdump/devel/system-config-kdump.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- system-config-kdump.spec 4 Jun 2009 14:32:31 -0000 1.10 +++ system-config-kdump.spec 27 Jul 2009 05:23:08 -0000 1.11 @@ -1,7 +1,7 @@ Summary: A graphical interface for configuring kernel crash dumping Name: system-config-kdump Version: 2.0.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://fedorahosted.org/system-config-kdump/ License: GPLv2+ Group: System Environment/Base @@ -84,6 +84,9 @@ fi %doc %{_datadir}/omf/system-config-kdump %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Roman Rakus - 2.0.0-2 - Added missing requires python-slip-dbus From jkeating at fedoraproject.org Mon Jul 27 05:23:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:23:23 +0000 (UTC) Subject: rpms/system-config-kickstart/devel system-config-kickstart.spec, 1.80, 1.81 Message-ID: <20090727052323.55C1D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-kickstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1253 Modified Files: system-config-kickstart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-kickstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-kickstart/devel/system-config-kickstart.spec,v retrieving revision 1.80 retrieving revision 1.81 diff -u -p -r1.80 -r1.81 --- system-config-kickstart.spec 1 Jul 2009 20:01:29 -0000 1.80 +++ system-config-kickstart.spec 27 Jul 2009 05:23:22 -0000 1.81 @@ -1,7 +1,7 @@ Summary: A graphical interface for making kickstart files Name: system-config-kickstart Version: 2.8.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/Tools License: GPLv2+ ExclusiveOS: Linux @@ -68,6 +68,9 @@ fi %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-kickstart.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 01 2009 Chris Lumens - 2.8.0-1 - Allow specifying anything for a network device name, not just ethX (#508089). - Don't traceback when opening files with null bytes (#508092). From jkeating at fedoraproject.org Mon Jul 27 05:23:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:23:42 +0000 (UTC) Subject: rpms/system-config-language/devel system-config-language.spec, 1.54, 1.55 Message-ID: <20090727052342.16B9211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-language/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1435 Modified Files: system-config-language.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-language.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-language/devel/system-config-language.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- system-config-language.spec 24 Jul 2009 07:06:56 -0000 1.54 +++ system-config-language.spec 27 Jul 2009 05:23:41 -0000 1.55 @@ -1,7 +1,7 @@ Summary: A graphical interface for modifying the system language Name: system-config-language Version: 1.3.2 -Release: 9%{?dist} +Release: 10%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/language License: GPLv2+ Group: System Environment/Base @@ -92,6 +92,9 @@ fi %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-language %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Pravin Satpute - 1.3.2-9 - fix bug 493888 From jkeating at fedoraproject.org Mon Jul 27 05:23:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:23:52 +0000 (UTC) Subject: rpms/system-config-lvm/devel system-config-lvm.spec,1.35,1.36 Message-ID: <20090727052352.8CBDC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-lvm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1633 Modified Files: system-config-lvm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-lvm.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-lvm/devel/system-config-lvm.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- system-config-lvm.spec 30 Jun 2009 17:38:10 -0000 1.35 +++ system-config-lvm.spec 27 Jul 2009 05:23:52 -0000 1.36 @@ -2,7 +2,7 @@ Summary: A utility for graphically configuring Logical Volumes Name: system-config-lvm Version: 1.1.4 -Release: 6%{?dist} +Release: 7%{?dist} URL: http://www.redhat.com/ Source0: %{name}-%{version}.tar.gz License: GPLv2 @@ -61,6 +61,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-lvm %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Jeremy Katz - 1.1.4-6 - Remove superfluous dependency on rhpl (#508951) From jkeating at fedoraproject.org Mon Jul 27 05:24:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:24:06 +0000 (UTC) Subject: rpms/system-config-netboot/devel system-config-netboot.spec, 1.65, 1.66 Message-ID: <20090727052406.D6B5711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-netboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1839 Modified Files: system-config-netboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-netboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-netboot/devel/system-config-netboot.spec,v retrieving revision 1.65 retrieving revision 1.66 diff -u -p -r1.65 -r1.66 --- system-config-netboot.spec 26 Feb 2009 05:11:07 -0000 1.65 +++ system-config-netboot.spec 27 Jul 2009 05:24:06 -0000 1.66 @@ -2,7 +2,7 @@ Summary: Network booting/install configuration utility (GUI) Name: system-config-netboot Version: 0.1.45.4 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://fedorahosted.org/system-config-netboot/ Source0: http://fedorahosted.org/releases/s/y/system-config-netboot/%{name}-%{version}.tar.gz Source1: pxelinux.0 @@ -107,6 +107,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/system-config-netboot %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.45.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.45.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:24:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:24:19 +0000 (UTC) Subject: rpms/system-config-network/devel system-config-network.spec, 1.49, 1.50 Message-ID: <20090727052419.CC0A811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-network/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1992 Modified Files: system-config-network.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-network.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-network/devel/system-config-network.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- system-config-network.spec 14 Apr 2009 14:17:57 -0000 1.49 +++ system-config-network.spec 27 Jul 2009 05:24:19 -0000 1.50 @@ -2,7 +2,7 @@ Summary: The GUI of the Network Adminstration Tool Name: system-config-network Version: 1.5.97 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedoraproject.org/wiki/SystemConfig/network Source0: %{name}-%{version}.tar.bz2 License: GPLv2+ @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/system-config-network-cmd %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.97-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Harald Hoyer 1.5.97-1 - translation update From jkeating at fedoraproject.org Mon Jul 27 05:24:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:24:31 +0000 (UTC) Subject: rpms/system-config-nfs/devel system-config-nfs.spec,1.64,1.65 Message-ID: <20090727052431.F1CFA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-nfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2128 Modified Files: system-config-nfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-nfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-nfs/devel/system-config-nfs.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- system-config-nfs.spec 14 Apr 2009 16:36:11 -0000 1.64 +++ system-config-nfs.spec 27 Jul 2009 05:24:31 -0000 1.65 @@ -9,7 +9,7 @@ Summary: NFS server configuration tool Name: system-config-nfs Version: 1.3.44 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/%{name} License: GPLv2+ Group: System Environment/Base @@ -83,6 +83,9 @@ fi %config(noreplace) %{_sysconfdir}/pam.d/system-config-nfs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.44-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.3.44-1 - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:24:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:24:44 +0000 (UTC) Subject: rpms/system-config-nfs-docs/devel system-config-nfs-docs.spec, 1.5, 1.6 Message-ID: <20090727052444.C33A311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-nfs-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2264 Modified Files: system-config-nfs-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-nfs-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-nfs-docs/devel/system-config-nfs-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-config-nfs-docs.spec 14 Apr 2009 16:13:02 -0000 1.5 +++ system-config-nfs-docs.spec 27 Jul 2009 05:24:44 -0000 1.6 @@ -9,7 +9,7 @@ Summary: Documentation for configuring an NFS server Name: system-config-nfs-docs Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://fedorahosted.org/%{name} License: GPLv2+ Group: Documentation @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gnome/help/system-config-nfs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.0.6-1 - add sr at latin structure (#495593) - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:24:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:24:57 +0000 (UTC) Subject: rpms/system-config-rootpassword/devel system-config-rootpassword.spec, 1.26, 1.27 Message-ID: <20090727052457.8648C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-rootpassword/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2399 Modified Files: system-config-rootpassword.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-rootpassword.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-rootpassword/devel/system-config-rootpassword.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- system-config-rootpassword.spec 26 Feb 2009 05:15:47 -0000 1.26 +++ system-config-rootpassword.spec 27 Jul 2009 05:24:57 -0000 1.27 @@ -1,6 +1,6 @@ Name: system-config-rootpassword Version: 1.99.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A graphical interface for modifying the rootpassword Group: System Environment/Base @@ -80,6 +80,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.99.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.99.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:25:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:25:10 +0000 (UTC) Subject: rpms/system-config-samba/devel system-config-samba.spec,1.76,1.77 Message-ID: <20090727052510.6913C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-samba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2515 Modified Files: system-config-samba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-samba.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-samba/devel/system-config-samba.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- system-config-samba.spec 28 May 2009 09:40:35 -0000 1.76 +++ system-config-samba.spec 27 Jul 2009 05:25:10 -0000 1.77 @@ -4,7 +4,7 @@ Summary: Samba server configuration tool Name: system-config-samba Version: 1.2.76 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/%{name} License: GPLv2+ Group: System Environment/Base @@ -87,6 +87,9 @@ fi %{python_sitelib}/scsamba.dbus-%{version}-py%{python_version}.egg-info %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.76-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Nils Philippsen - 1.2.76-1 - handle missing smb.conf (#477944) From jkeating at fedoraproject.org Mon Jul 27 05:25:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:25:22 +0000 (UTC) Subject: rpms/system-config-samba-docs/devel system-config-samba-docs.spec, 1.5, 1.6 Message-ID: <20090727052522.8230611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-samba-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2658 Modified Files: system-config-samba-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-samba-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-samba-docs/devel/system-config-samba-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-config-samba-docs.spec 14 Apr 2009 15:46:31 -0000 1.5 +++ system-config-samba-docs.spec 27 Jul 2009 05:25:22 -0000 1.6 @@ -9,7 +9,7 @@ Summary: Documentation for configuring a Samba server Name: system-config-samba-docs Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://fedorahosted.org/%{name} License: GPLv2+ Group: Documentation @@ -65,6 +65,9 @@ rm -rf %{buildroot} %doc %{_datadir}/gnome/help/system-config-samba %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.0.6-1 - add sr at latin structure (#495589, sr at latin.po by Milo? Komar?evi?) - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:25:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:25:36 +0000 (UTC) Subject: rpms/system-config-services/devel system-config-services.spec, 1.92, 1.93 Message-ID: <20090727052536.1928B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-services/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2817 Modified Files: system-config-services.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-services.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-services/devel/system-config-services.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- system-config-services.spec 14 Apr 2009 16:48:22 -0000 1.92 +++ system-config-services.spec 27 Jul 2009 05:25:35 -0000 1.93 @@ -4,7 +4,7 @@ Summary: Utility to start and stop system services Name: system-config-services Version: 0.99.33 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/%{name} Source0: http://fedorahosted.org/releases/%(echo %{name} | %{__sed} 's@\(\(.\)\(.\).*\)@\2/\3/\1@')/%{name}-%{version}.tar.bz2 License: GPLv2+ @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_mandir}/*/system-config-services.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.33-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 0.99.33-1 - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:25:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:25:47 +0000 (UTC) Subject: rpms/system-config-services-docs/devel system-config-services-docs.spec, 1.5, 1.6 Message-ID: <20090727052547.79D3211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-services-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2957 Modified Files: system-config-services-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-services-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-services-docs/devel/system-config-services-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-config-services-docs.spec 14 Apr 2009 13:18:27 -0000 1.5 +++ system-config-services-docs.spec 27 Jul 2009 05:25:47 -0000 1.6 @@ -9,7 +9,7 @@ Summary: Documentation for configuring system services Name: system-config-services-docs Version: 1.1.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://fedorahosted.org/%{name} Source0: http://fedorahosted.org/releases/%(echo %{name} | %{__sed} 's@\(\(.\)\(.\).*\)@\2/\3/\1@')/%{name}-%{version}.tar.bz2 License: GPLv2+ @@ -66,6 +66,9 @@ rm -rf %{buildroot} %doc %{_datadir}/gnome/help/system-config-services %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.1.6-1 - add sr at latin structure, move po file (#495460) - pull in updated translations From jkeating at fedoraproject.org Mon Jul 27 05:25:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:25:59 +0000 (UTC) Subject: rpms/system-config-users/devel system-config-users.spec,1.90,1.91 Message-ID: <20090727052559.E3FAF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-users/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3090 Modified Files: system-config-users.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-users.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-users/devel/system-config-users.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- system-config-users.spec 3 Jun 2009 14:03:38 -0000 1.90 +++ system-config-users.spec 27 Jul 2009 05:25:59 -0000 1.91 @@ -29,7 +29,7 @@ Summary: A graphical interface for administering users and groups Name: system-config-users Version: 1.2.87 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://fedorahosted.org/%{name} License: GPLv2+ Group: Applications/System @@ -125,6 +125,9 @@ fi %config(noreplace) %{_sysconfdir}/sysconfig/system-config-users %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.87-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Nils Philippsen - 1.2.87-1 - handle 64bit uids/gids (#503821) From jkeating at fedoraproject.org Mon Jul 27 05:26:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:26:11 +0000 (UTC) Subject: rpms/system-config-users-docs/devel system-config-users-docs.spec, 1.5, 1.6 Message-ID: <20090727052611.959B211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-users-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3227 Modified Files: system-config-users-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-users-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-users-docs/devel/system-config-users-docs.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-config-users-docs.spec 14 Apr 2009 11:10:21 -0000 1.5 +++ system-config-users-docs.spec 27 Jul 2009 05:26:11 -0000 1.6 @@ -9,7 +9,7 @@ Summary: Documentation for administering users and groups Name: system-config-users-docs Version: 1.0.6 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://fedorahosted.org/%{name} License: GPLv2+ Group: Documentation @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gnome/help/system-config-users %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Nils Philippsen - 1.0.6-1 - add sr at latin structure (#495293, sr at latin.po by Milo? Komar?evi?) - pick up updated translations From jkeating at fedoraproject.org Mon Jul 27 05:26:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:26:23 +0000 (UTC) Subject: rpms/system-config-vsftpd/devel system-config-vsftpd.spec,1.9,1.10 Message-ID: <20090727052623.5CC2E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-config-vsftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3341 Modified Files: system-config-vsftpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-config-vsftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-vsftpd/devel/system-config-vsftpd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- system-config-vsftpd.spec 27 Feb 2009 01:26:05 -0000 1.9 +++ system-config-vsftpd.spec 27 Jul 2009 05:26:23 -0000 1.10 @@ -1,6 +1,6 @@ Name: system-config-vsftpd Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A graphical interface for administering vsftpd server Group: Applications/System @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %config(noreplace) /etc/pam.d/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Milos Jakubicek - 0.5.1-4 - Added Requires: vsftpd (fix BZ#451369) From jkeating at fedoraproject.org Mon Jul 27 05:26:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:26:36 +0000 (UTC) Subject: rpms/system-switch-displaymanager/devel system-switch-displaymanager.spec, 1.5, 1.6 Message-ID: <20090727052636.6A9A511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-switch-displaymanager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3496 Modified Files: system-switch-displaymanager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-switch-displaymanager.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-switch-displaymanager/devel/system-switch-displaymanager.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- system-switch-displaymanager.spec 26 Feb 2009 05:23:44 -0000 1.5 +++ system-switch-displaymanager.spec 27 Jul 2009 05:26:36 -0000 1.6 @@ -1,7 +1,7 @@ Name: system-switch-displaymanager Summary: A display manager switcher for GDM, KDM, XDM and WDM Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://fedoraproject.org/wiki/switch-displaymanager Source: %{name}-%{version}.tar.bz2 License: GPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/*/*/*.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From airlied at fedoraproject.org Mon Jul 27 05:26:41 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Mon, 27 Jul 2009 05:26:41 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver-1.6.99-use-pci-access-boot.patch, NONE, 1.1 xorg-x11-server.spec, 1.452, 1.453 Message-ID: <20090727052641.172B811C0094@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3513 Modified Files: xorg-x11-server.spec Added Files: xserver-1.6.99-use-pci-access-boot.patch Log Message: * Mon Jul 27 2009 Dave Airlie 1.6.99-18.20090724 - xserver-1.6.99-use-pci-access-boot.patch: use pciaccess boot vga - not sure what is up with the Conflicts stuff xserver-1.6.99-use-pci-access-boot.patch: xf86pciBus.c | 5 +++++ 1 file changed, 5 insertions(+) --- NEW FILE xserver-1.6.99-use-pci-access-boot.patch --- diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c index 8ed3567..183b1ba 100644 --- a/hw/xfree86/common/xf86pciBus.c +++ b/hw/xfree86/common/xf86pciBus.c @@ -400,6 +400,11 @@ xf86PciProbe(void) xf86PciVideoInfo[num - 1] = info; pci_device_probe(info); + + if (pci_device_is_boot_vga(info)) { + primaryBus.type = BUS_PCI; + primaryBus.id.pci = info; + } info->user_data = 0; } } Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.452 retrieving revision 1.453 diff -u -p -r1.452 -r1.453 --- xorg-x11-server.spec 25 Jul 2009 04:50:28 -0000 1.452 +++ xorg-x11-server.spec 27 Jul 2009 05:26:40 -0000 1.453 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 17.%{gitdate}%{?dist} +Release: 18.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -71,6 +71,7 @@ Patch6011: xserver-1.6.0-less-acpi-broke Patch6016: xserver-1.6.1-nouveau.patch Patch6022: xserver-1.6.0-primary.patch +Patch6023: xserver-1.6.99-use-pci-access-boot.patch # ajax needs to upstream this Patch6027: xserver-1.6.0-displayfd.patch @@ -117,7 +118,7 @@ BuildRequires: libXi-devel libXpm-devel BuildRequires: libXv-devel # openssl? really? -BuildRequires: pixman-devel libpciaccess-devel openssl-devel byacc flex +BuildRequires: pixman-devel libpciaccess-devel >= 0.10.6-1 openssl-devel byacc flex BuildRequires: mesa-libGL-devel >= 7.1-0.37 # XXX silly... BuildRequires: libdrm-devel >= 2.4.0 kernel-headers @@ -176,7 +177,7 @@ Obsoletes: xorg-x11-drv-tek4957 <= 1.2.0 Obsoletes: xorg-x11-drv-ur98 <= 1.1.0-5.fc9 Obsoletes: xorg-x11-drv-wiimote <= 0.0.1-1.fc9 # Force sufficiently new libpciaccess -Conflicts: libpciaccess < 0.10.3-5 +Conflicts: libpciaccess < 0.10.6-1 %description Xorg X.org X11 is an open source implementation of the X Window System. It @@ -523,6 +524,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Dave Airlie 1.6.99-18.20090724 +- xserver-1.6.99-use-pci-access-boot.patch: use pciaccess boot vga +- not sure what is up with the Conflicts stuff + * Sat Jul 25 2009 Peter Hutterer 1.6.99-17.20090724 - Bump release number. From jkeating at fedoraproject.org Mon Jul 27 05:26:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:26:48 +0000 (UTC) Subject: rpms/system-switch-java/devel system-switch-java.spec,1.18,1.19 Message-ID: <20090727052648.6C65F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-switch-java/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3633 Modified Files: system-switch-java.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-switch-java.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-switch-java/devel/system-switch-java.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- system-switch-java.spec 26 Feb 2009 05:24:45 -0000 1.18 +++ system-switch-java.spec 27 Jul 2009 05:26:48 -0000 1.19 @@ -1,6 +1,6 @@ Name: system-switch-java Version: 1.1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for changing the default Java toolset %define url https://fedorahosted.org @@ -65,6 +65,9 @@ rm -rf %{buildroot} %config(noreplace) /etc/security/console.apps/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:27:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:27:01 +0000 (UTC) Subject: rpms/system-switch-mail/devel system-switch-mail.spec,1.22,1.23 Message-ID: <20090727052701.ABD1711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/system-switch-mail/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3778 Modified Files: system-switch-mail.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: system-switch-mail.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-switch-mail/devel/system-switch-mail.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- system-switch-mail.spec 26 Feb 2009 05:25:40 -0000 1.22 +++ system-switch-mail.spec 27 Jul 2009 05:27:01 -0000 1.23 @@ -1,7 +1,7 @@ Summary: The Mail Transport Agent Switcher Name: system-switch-mail Version: 0.5.26 -Release: 5 +Release: 6 Source0: %{name}-%{version}-2.tar.bz2 License: GPLv2+ Group: Applications/System @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_datadir}/%{name}/switchmail.glade %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.26-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.26-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:27:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:27:15 +0000 (UTC) Subject: rpms/systemtap/devel systemtap.spec,1.47,1.48 Message-ID: <20090727052715.037CE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/systemtap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3934 Modified Files: systemtap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: systemtap.spec =================================================================== RCS file: /cvs/pkgs/rpms/systemtap/devel/systemtap.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- systemtap.spec 12 Jun 2009 00:34:05 -0000 1.47 +++ systemtap.spec 27 Jul 2009 05:27:14 -0000 1.48 @@ -9,7 +9,7 @@ Name: systemtap Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} # for version, see also configure.ac Summary: Instrumentation System Group: Development/System @@ -356,6 +356,9 @@ exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Josh Stone - 0.9.8-1 - Upstream release. From jkeating at fedoraproject.org Mon Jul 27 05:27:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:27:26 +0000 (UTC) Subject: rpms/systemtapguiserver/devel systemtapguiserver.spec,1.2,1.3 Message-ID: <20090727052726.AD68811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/systemtapguiserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4054 Modified Files: systemtapguiserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: systemtapguiserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/systemtapguiserver/devel/systemtapguiserver.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- systemtapguiserver.spec 19 Apr 2009 16:00:48 -0000 1.2 +++ systemtapguiserver.spec 27 Jul 2009 05:27:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: systemtapguiserver Version: 1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Server for the eclipse-systemtapgui Client License: EPL Group: Development/Tools @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %doc docs/README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Anithra P Janakiraman 1.0-8 - Changed spec file to include %{?dist} * Wed Apr 15 2009 Anithra P Janakiraman 1.0-7 From jkeating at fedoraproject.org Mon Jul 27 05:27:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:27:38 +0000 (UTC) Subject: rpms/sysusage/devel sysusage.spec,1.5,1.6 Message-ID: <20090727052738.86B7411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysusage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4197 Modified Files: sysusage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysusage.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysusage/devel/sysusage.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sysusage.spec 2 Jun 2009 09:59:53 -0000 1.5 +++ sysusage.spec 27 Jul 2009 05:27:38 -0000 1.6 @@ -6,7 +6,7 @@ Name: %{wname} Epoch: 0 Version: 2.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: System monitoring based on perl, rrdtool, and sysstat Group: System Environment/Daemons @@ -120,6 +120,9 @@ _EOF3_ %dir %{webdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:2.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Rob Myers 0:2.10-1 - include many fixes from Jason Corley (Thanks!) - update to 2.10 From jkeating at fedoraproject.org Mon Jul 27 05:27:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:27:49 +0000 (UTC) Subject: rpms/sysvinit/devel sysvinit.spec,1.73,1.74 Message-ID: <20090727052749.882A411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/sysvinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4316 Modified Files: sysvinit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sysvinit.spec =================================================================== RCS file: /cvs/pkgs/rpms/sysvinit/devel/sysvinit.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- sysvinit.spec 26 Feb 2009 05:28:33 -0000 1.73 +++ sysvinit.spec 27 Jul 2009 05:27:49 -0000 1.74 @@ -1,7 +1,7 @@ Summary: Programs which control basic system processes Name: sysvinit Version: 2.86 -Release: 27 +Release: 28 License: GPLv2+ Group: System Environment/Base Source: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/sysvinit-%{version}.tar.gz @@ -176,6 +176,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/sulogin* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.86-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.86-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:28:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:28:04 +0000 (UTC) Subject: rpms/t1lib/devel t1lib.spec,1.25,1.26 Message-ID: <20090727052804.9D54211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/t1lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4459 Modified Files: t1lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: t1lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/t1lib/devel/t1lib.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- t1lib.spec 2 Jul 2009 20:55:13 -0000 1.25 +++ t1lib.spec 27 Jul 2009 05:28:04 -0000 1.26 @@ -1,6 +1,6 @@ Name: t1lib Version: 5.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: PostScript Type 1 font rasterizer @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Adam Jackson 5.1.2-4 - Split demo apps to a subpackage to isolate libXaw deps From jkeating at fedoraproject.org Mon Jul 27 05:28:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:28:15 +0000 (UTC) Subject: rpms/t1utils/devel t1utils.spec,1.17,1.18 Message-ID: <20090727052815.5358511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/t1utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4583 Modified Files: t1utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: t1utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/t1utils/devel/t1utils.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- t1utils.spec 25 Feb 2009 18:15:00 -0000 1.17 +++ t1utils.spec 27 Jul 2009 05:28:15 -0000 1.18 @@ -1,6 +1,6 @@ Name: t1utils Version: 1.33 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Collection of Type 1 and 2 font manipulation utilities @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.33-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.33-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:28:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:28:26 +0000 (UTC) Subject: rpms/taarich/devel taarich.spec,1.9,1.10 Message-ID: <20090727052826.7869D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taarich/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4693 Modified Files: taarich.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taarich.spec =================================================================== RCS file: /cvs/pkgs/rpms/taarich/devel/taarich.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- taarich.spec 25 Feb 2009 18:16:03 -0000 1.9 +++ taarich.spec 27 Jul 2009 05:28:26 -0000 1.10 @@ -2,7 +2,7 @@ Summary: Tells the Hebrew date, Torah re Summary(he): ?????? ?????? ?????? ?????, ????? ?????, ?????? ???. Name: taarich Version: 1.20051120 -Release: 11%{?dist} +Release: 12%{?dist} URL: ftp://ftp.math.technion.ac.il/calendar/gauss/ Source0: gauss-%{version}.tar.gz License: BSD @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.20051120-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.20051120-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:28:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:28:41 +0000 (UTC) Subject: rpms/tabled/devel tabled.spec,1.5,1.6 Message-ID: <20090727052841.B695511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tabled/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4879 Modified Files: tabled.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tabled.spec =================================================================== RCS file: /cvs/pkgs/rpms/tabled/devel/tabled.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tabled.spec 23 Jul 2009 19:27:03 -0000 1.5 +++ tabled.spec 27 Jul 2009 05:28:41 -0000 1.6 @@ -1,6 +1,6 @@ Name: tabled Version: 0.3 -Release: 0.6.gebb1144c%{?dist} +Release: 0.7.gebb1144c%{?dist} Summary: Distributed key/value table service Group: System Environment/Base @@ -102,6 +102,9 @@ fi %{_includedir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-0.7.gebb1144c +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jeff Garzik - 0.3-0.6.gebb1144c - update to git commit ebb1144ceefd7a936acafc79c6e274095bd0bb06 - BuildRequires: procps From jkeating at fedoraproject.org Mon Jul 27 05:28:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:28:52 +0000 (UTC) Subject: rpms/tachyon/devel tachyon.spec,1.12,1.13 Message-ID: <20090727052852.70B8D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tachyon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4996 Modified Files: tachyon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tachyon.spec =================================================================== RCS file: /cvs/pkgs/rpms/tachyon/devel/tachyon.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- tachyon.spec 28 Feb 2009 17:46:04 -0000 1.12 +++ tachyon.spec 27 Jul 2009 05:28:52 -0000 1.13 @@ -13,7 +13,7 @@ Summary: Parallel / Multiprocessor Ray Tracing System Name: tachyon Version: 0.98.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://jedi.ks.uiuc.edu/~johns/raytracer/ Group: Applications/Engineering Source: http://jedi.ks.uiuc.edu/~johns/raytracer/files/%{version}/%{name}-%{version}.tar.gz @@ -154,6 +154,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/tachyon %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.98.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Dominik 'Rathann' Mierzejewski 0.98.1-1 - update to 0.98.1 release - fix mixed-up summaries From jkeating at fedoraproject.org Mon Jul 27 05:29:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:29:05 +0000 (UTC) Subject: rpms/tack/devel tack.spec,1.3,1.4 Message-ID: <20090727052905.E14DD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5146 Modified Files: tack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tack/devel/tack.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tack.spec 25 Feb 2009 18:18:12 -0000 1.3 +++ tack.spec 27 Jul 2009 05:29:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: tack Version: 1.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Terminfo action checker Group: Development/Tools @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/tack.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:29:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:29:18 +0000 (UTC) Subject: rpms/taginfo/devel taginfo.spec,1.3,1.4 Message-ID: <20090727052918.BD4E311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taginfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5292 Modified Files: taginfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taginfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/taginfo/devel/taginfo.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- taginfo.spec 8 May 2009 22:38:31 -0000 1.3 +++ taginfo.spec 27 Jul 2009 05:29:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: taginfo Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Printer of Tag Information from Media Files Group: Applications/Multimedia License: GPLv2+ @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 9 2009 Ville Skytt? - 1.2-3 - Build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Mon Jul 27 05:29:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:29:32 +0000 (UTC) Subject: rpms/taglib/devel taglib.spec,1.32,1.33 Message-ID: <20090727052932.6751811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taglib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5445 Modified Files: taglib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taglib.spec =================================================================== RCS file: /cvs/pkgs/rpms/taglib/devel/taglib.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- taglib.spec 25 Feb 2009 18:20:14 -0000 1.32 +++ taglib.spec 27 Jul 2009 05:29:32 -0000 1.33 @@ -3,7 +3,7 @@ Name: taglib Version: 1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Audio Meta-Data Library Group: System Environment/Libraries @@ -95,6 +95,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:29:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:29:46 +0000 (UTC) Subject: rpms/taglib-sharp/devel taglib-sharp.spec,1.7,1.8 Message-ID: <20090727052946.924A011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taglib-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5604 Modified Files: taglib-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taglib-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/taglib-sharp/devel/taglib-sharp.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- taglib-sharp.spec 25 Feb 2009 16:57:40 -0000 1.7 +++ taglib-sharp.spec 27 Jul 2009 05:29:46 -0000 1.8 @@ -2,7 +2,7 @@ Name: taglib-sharp Version: 2.0.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Provides tag reading and writing for Banshee and other Mono apps Group: System Environment/Libraries @@ -67,6 +67,9 @@ sed -i 's|${exec_prefix}/lib|%{_libdir}| %{_libdir}/pkgconfig/taglib-sharp.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 David Nielsen - 2.0.3.2-2 - fix pkgconfig file From jkeating at fedoraproject.org Mon Jul 27 05:30:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:30:02 +0000 (UTC) Subject: rpms/tagsoup/devel tagsoup.spec,1.5,1.6 Message-ID: <20090727053002.4496C11C0417@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tagsoup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5741 Modified Files: tagsoup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tagsoup.spec =================================================================== RCS file: /cvs/pkgs/rpms/tagsoup/devel/tagsoup.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tagsoup.spec 24 May 2009 00:38:08 -0000 1.5 +++ tagsoup.spec 27 Jul 2009 05:30:01 -0000 1.6 @@ -36,7 +36,7 @@ Name: tagsoup Version: 1.0.1 -Release: 3.3%{?dist} +Release: 4.3%{?dist} Epoch: 0 Summary: A SAX-compliant HTML parser written in Java License: GPLv2+ or AFL @@ -136,6 +136,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.0.1-4.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Milos Jakubicek - 0:1.0.1-3.3 - Fix FTBFS: disabled ppc64 build From jkeating at fedoraproject.org Mon Jul 27 05:30:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:30:14 +0000 (UTC) Subject: rpms/tagtool/devel tagtool.spec,1.14,1.15 Message-ID: <20090727053014.7770811C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tagtool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5922 Modified Files: tagtool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tagtool.spec =================================================================== RCS file: /cvs/pkgs/rpms/tagtool/devel/tagtool.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- tagtool.spec 25 Feb 2009 18:22:14 -0000 1.14 +++ tagtool.spec 27 Jul 2009 05:30:14 -0000 1.15 @@ -1,6 +1,6 @@ Name: tagtool Version: 0.12.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Ogg Vorbis and MP3 tag manager Group: Applications/Multimedia @@ -88,6 +88,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.12.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:30:26 +0000 (UTC) Subject: rpms/tailor/devel tailor.spec,1.14,1.15 Message-ID: <20090727053026.BE66E11C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tailor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6051 Modified Files: tailor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tailor.spec =================================================================== RCS file: /cvs/pkgs/rpms/tailor/devel/tailor.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- tailor.spec 25 Feb 2009 18:23:10 -0000 1.14 +++ tailor.spec 27 Jul 2009 05:30:26 -0000 1.15 @@ -3,7 +3,7 @@ Summary: A tool to migrate changesets between several version control systems Name: tailor Version: 0.9.35 -Release: 5%{?dist} +Release: 6%{?dist} Source0: http://darcs.arstecnica.it/%{name}-%{version}.tar.gz License: GPLv3+ Group: Development/Tools @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.35-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.35-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:30:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:30:40 +0000 (UTC) Subject: rpms/taipeifonts/devel taipeifonts.spec,1.4,1.5 Message-ID: <20090727053040.CA99A11C00E5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taipeifonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6197 Modified Files: taipeifonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taipeifonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/taipeifonts/devel/taipeifonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- taipeifonts.spec 7 Apr 2009 06:35:56 -0000 1.4 +++ taipeifonts.spec 27 Jul 2009 05:30:40 -0000 1.5 @@ -3,7 +3,7 @@ Name: taipeifonts Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Chinese Bitmap Fonts Group: User Interface/X @@ -72,6 +72,9 @@ fi %{catalogue}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 07 2009 Caius 'kaio' Chance - 1.2-7.fc11 - Rebuilt for Fedora 11. From jkeating at fedoraproject.org Mon Jul 27 05:30:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:30:52 +0000 (UTC) Subject: rpms/talk/devel talk.spec,1.24,1.25 Message-ID: <20090727053052.31DBC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/talk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6335 Modified Files: talk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: talk.spec =================================================================== RCS file: /cvs/pkgs/rpms/talk/devel/talk.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- talk.spec 25 Feb 2009 18:25:02 -0000 1.24 +++ talk.spec 27 Jul 2009 05:30:52 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Talk client for one-on-one Internet chatting. Name: talk Version: 0.17 -Release: 31.2.4 +Release: 32.2.4 License: BSD Group: Applications/Internet Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-ntalk-%{version}.tar.gz @@ -88,6 +88,9 @@ rm -rf ${RPM_BUILD_ROOT} %config(noreplace) /etc/xinetd.d/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17-32.2.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.17-31.2.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:31:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:31:04 +0000 (UTC) Subject: rpms/tango-icon-theme/devel tango-icon-theme.spec,1.8,1.9 Message-ID: <20090727053104.128CC11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tango-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6502 Modified Files: tango-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tango-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/tango-icon-theme/devel/tango-icon-theme.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tango-icon-theme.spec 1 Mar 2009 05:55:55 -0000 1.8 +++ tango-icon-theme.spec 27 Jul 2009 05:31:03 -0000 1.9 @@ -1,6 +1,6 @@ Name: tango-icon-theme Version: 0.8.90 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Icons from Tango Project Summary(pl): Ikony Projektu Tango Summary(es): Iconos del Proyecto Tango @@ -65,6 +65,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Peter Gordon - 0.8.90-1 - Update to new upstream release (0.8.90) - License change: from CC-BY-SA to Public Domain From jkeating at fedoraproject.org Mon Jul 27 05:31:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:31:14 +0000 (UTC) Subject: rpms/tango-icon-theme-extras/devel tango-icon-theme-extras.spec, 1.3, 1.4 Message-ID: <20090727053114.999FD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tango-icon-theme-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6637 Modified Files: tango-icon-theme-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tango-icon-theme-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/tango-icon-theme-extras/devel/tango-icon-theme-extras.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tango-icon-theme-extras.spec 25 Feb 2009 18:26:52 -0000 1.3 +++ tango-icon-theme-extras.spec 27 Jul 2009 05:31:14 -0000 1.4 @@ -1,6 +1,6 @@ Name: tango-icon-theme-extras Version: 0.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Extra Icons from the Tango Project License: CC-BY-SA @@ -59,6 +59,9 @@ gtk-update-icon-cache -q %{_datadir}/ico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:31:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:31:25 +0000 (UTC) Subject: rpms/tangogps/devel tangogps.spec,1.5,1.6 Message-ID: <20090727053125.8C71111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tangogps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6759 Modified Files: tangogps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tangogps.spec =================================================================== RCS file: /cvs/pkgs/rpms/tangogps/devel/tangogps.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tangogps.spec 25 Feb 2009 18:27:46 -0000 1.5 +++ tangogps.spec 27 Jul 2009 05:31:25 -0000 1.6 @@ -1,6 +1,6 @@ Name: tangogps Version: 0.9.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK+ mapping and GPS application Group: Applications/Productivity @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/tangogps-*.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:31:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:31:43 +0000 (UTC) Subject: rpms/tanukiwrapper/devel tanukiwrapper.spec,1.30,1.31 Message-ID: <20090727053143.2298E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tanukiwrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6926 Modified Files: tanukiwrapper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tanukiwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/tanukiwrapper/devel/tanukiwrapper.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- tanukiwrapper.spec 25 Feb 2009 18:28:55 -0000 1.30 +++ tanukiwrapper.spec 27 Jul 2009 05:31:42 -0000 1.31 @@ -34,7 +34,7 @@ Name: tanukiwrapper Version: 3.2.3 -Release: 3.3%{?dist} +Release: 4.3%{?dist} Summary: Java Service Wrapper Epoch: 0 License: BSD @@ -202,6 +202,9 @@ fi %doc doc/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:3.2.3-4.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:3.2.3-3.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:31:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:31:57 +0000 (UTC) Subject: rpms/tar/devel tar.spec,1.84,1.85 Message-ID: <20090727053157.DD8B811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7097 Modified Files: tar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tar.spec =================================================================== RCS file: /cvs/pkgs/rpms/tar/devel/tar.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- tar.spec 16 Jul 2009 08:44:38 -0000 1.84 +++ tar.spec 27 Jul 2009 05:31:57 -0000 1.85 @@ -2,7 +2,7 @@ Summary: A GNU file archiving program Name: tar Epoch: 2 Version: 1.22 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv3+ Group: Applications/Archiving URL: http://www.gnu.org/software/tar/ @@ -96,6 +96,9 @@ fi %{_infodir}/tar.info* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:1.22-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Ondrej Vasik 2:1.22-5 - Fix restoring of directory default acls(#511145) - Do not patch generated autotools files From jkeating at fedoraproject.org Mon Jul 27 05:32:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:32:08 +0000 (UTC) Subject: rpms/task/devel task.spec,1.3,1.4 Message-ID: <20090727053208.DD62811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/task/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7235 Modified Files: task.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: task.spec =================================================================== RCS file: /cvs/pkgs/rpms/task/devel/task.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- task.spec 9 Jun 2009 16:38:36 -0000 1.3 +++ task.spec 27 Jul 2009 05:32:08 -0000 1.4 @@ -1,6 +1,6 @@ Name: task Version: 1.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A command-line to do list manager Group: Applications/Productivity @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 08 2009 Federico Hernandez - 1.7.1-2 - Fixed inclusion of manpages. * Tue Jun 08 2009 Federico Hernandez - 1.7.1-1 From jkeating at fedoraproject.org Mon Jul 27 05:32:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:32:19 +0000 (UTC) Subject: rpms/taskcoach/devel taskcoach.spec,1.9,1.10 Message-ID: <20090727053219.ABB9111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taskcoach/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7373 Modified Files: taskcoach.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taskcoach.spec =================================================================== RCS file: /cvs/pkgs/rpms/taskcoach/devel/taskcoach.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- taskcoach.spec 12 Apr 2009 20:04:00 -0000 1.9 +++ taskcoach.spec 27 Jul 2009 05:32:19 -0000 1.10 @@ -3,7 +3,7 @@ Name: taskcoach Version: 0.72.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Your friendly task manager Summary(pl): Tw?j przyjazny menad?er zada? Group: Applications/Productivity @@ -86,6 +86,9 @@ fi %exclude %{python_sitelib}/buildlib/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.72.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 12 2009 Rakesh Pandit - 0.72.5-1 - Updated to 0.72.5 From jkeating at fedoraproject.org Mon Jul 27 05:32:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:32:35 +0000 (UTC) Subject: rpms/taskjuggler/devel taskjuggler.spec,1.35,1.36 Message-ID: <20090727053235.4A05011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taskjuggler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7515 Modified Files: taskjuggler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taskjuggler.spec =================================================================== RCS file: /cvs/pkgs/rpms/taskjuggler/devel/taskjuggler.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- taskjuggler.spec 16 Jul 2009 11:21:50 -0000 1.35 +++ taskjuggler.spec 27 Jul 2009 05:32:33 -0000 1.36 @@ -1,6 +1,6 @@ Name: taskjuggler Version: 2.4.3 -Release: 1 +Release: 2 Summary: Project management tool Group: Applications/Productivity @@ -118,6 +118,9 @@ fi %{_libdir}/libtaskjuggler* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Ondrej Vasik - 2.4.3-1 - New upstream release 2.4.3 From jkeating at fedoraproject.org Mon Jul 27 05:32:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:32:48 +0000 (UTC) Subject: rpms/tasks/devel tasks.spec,1.18,1.19 Message-ID: <20090727053248.C865011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tasks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7683 Modified Files: tasks.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tasks.spec =================================================================== RCS file: /cvs/pkgs/rpms/tasks/devel/tasks.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- tasks.spec 15 Jul 2009 17:21:43 -0000 1.18 +++ tasks.spec 27 Jul 2009 05:32:48 -0000 1.19 @@ -1,6 +1,6 @@ Name: tasks Version: 0.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple to-do list application Group: Applications/Productivity @@ -63,6 +63,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Dan Young - 0.16-1 - New upstream release - Drop libsexy-devel BR, as SexyIconEntry is no longer used From jkeating at fedoraproject.org Mon Jul 27 05:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:32:59 +0000 (UTC) Subject: rpms/tasque/devel tasque.spec,1.4,1.5 Message-ID: <20090727053259.B65EF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tasque/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7821 Modified Files: tasque.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tasque.spec =================================================================== RCS file: /cvs/pkgs/rpms/tasque/devel/tasque.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tasque.spec 25 Feb 2009 18:33:50 -0000 1.4 +++ tasque.spec 27 Jul 2009 05:32:59 -0000 1.5 @@ -2,7 +2,7 @@ Name: tasque Version: 0.1.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple task management app (TODO list) for the Linux Desktop Group: Applications/Productivity @@ -80,6 +80,9 @@ fi %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:33:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:33:14 +0000 (UTC) Subject: rpms/taxipilot/devel taxipilot.spec,1.10,1.11 Message-ID: <20090727053314.BCE6111C0416@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/taxipilot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7968 Modified Files: taxipilot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: taxipilot.spec =================================================================== RCS file: /cvs/pkgs/rpms/taxipilot/devel/taxipilot.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- taxipilot.spec 9 Mar 2009 10:23:41 -0000 1.10 +++ taxipilot.spec 27 Jul 2009 05:33:14 -0000 1.11 @@ -1,6 +1,6 @@ Name: taxipilot Version: 0.9.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Game where you pilot a taxi in space Group: Amusements/Games License: GPLv2+ @@ -77,6 +77,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 9 2009 Hans de Goede 0.9.2-8 - Try rebuild again now that all the deps are fixed From jkeating at fedoraproject.org Mon Jul 27 05:33:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:33:26 +0000 (UTC) Subject: rpms/tbb/devel tbb.spec,1.3,1.4 Message-ID: <20090727053326.B2D4711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tbb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8084 Modified Files: tbb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tbb.spec =================================================================== RCS file: /cvs/pkgs/rpms/tbb/devel/tbb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tbb.spec 25 Feb 2009 18:35:42 -0000 1.3 +++ tbb.spec 27 Jul 2009 05:33:26 -0000 1.4 @@ -7,7 +7,7 @@ Summary: The Threading Building Blocks library abstracts low-level threading details Name: tbb Version: %{major}.%{minor} -Release: 2.%{releasedate}%{?dist} +Release: 3.%{releasedate}%{?dist} License: GPLv2 with exceptions Group: Development/Tools URL: http://threadingbuildingblocks.org/ @@ -110,6 +110,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc Tutorial.pdf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-3.20080605 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1-2.20080605 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:33:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:33:41 +0000 (UTC) Subject: rpms/tbcload/devel tbcload.spec,1.7,1.8 Message-ID: <20090727053341.44E1511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tbcload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8238 Modified Files: tbcload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tbcload.spec =================================================================== RCS file: /cvs/pkgs/rpms/tbcload/devel/tbcload.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tbcload.spec 25 Feb 2009 18:36:37 -0000 1.7 +++ tbcload.spec 27 Jul 2009 05:33:41 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Tcl bytecode loader Name: tbcload Version: 1.4 -Release: 9.%{cvsdate}cvs%{?dist} +Release: 10.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Libraries # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tbcload-20061030cvs tbcload @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/*.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-10.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-9.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:33:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:33:54 +0000 (UTC) Subject: rpms/tcl/devel tcl.spec,1.90,1.91 Message-ID: <20090727053354.9E48411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8382 Modified Files: tcl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl/devel/tcl.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- tcl.spec 17 Jul 2009 06:52:32 -0000 1.90 +++ tcl.spec 27 Jul 2009 05:33:54 -0000 1.91 @@ -5,7 +5,7 @@ Summary: Tool Command Language, pronounced tickle Name: tcl Version: %{vers} -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: TCL Group: Development/Languages @@ -137,6 +137,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}8.5/%{name}Config.sh %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:8.5.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Marcela Ma?l??ov? - 1:8.5.7-1 - 489017 update to 8.5.7 with systemtap support From jkeating at fedoraproject.org Mon Jul 27 05:34:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:34:08 +0000 (UTC) Subject: rpms/tcl-html/devel tcl-html.spec,1.8,1.9 Message-ID: <20090727053408.A468E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8544 Modified Files: tcl-html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-html.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-html/devel/tcl-html.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tcl-html.spec 18 May 2009 08:14:27 -0000 1.8 +++ tcl-html.spec 27 Jul 2009 05:34:08 -0000 1.9 @@ -3,7 +3,7 @@ Summary: Tcl/Tk manual in html format Name: tcl-html Version: %{vers} -Release: 1%{?dist} +Release: 2%{?dist} License: TCL Group: Documentation URL: http://tcl.sourceforge.net/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %doc html/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.5.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Marcela Ma?l??ov? - 8.5.7-1 - update to 8.5.7 From jkeating at fedoraproject.org Mon Jul 27 05:34:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:34:22 +0000 (UTC) Subject: rpms/tcl-snack/devel tcl-snack.spec,1.10,1.11 Message-ID: <20090727053422.1E12A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-snack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8712 Modified Files: tcl-snack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-snack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-snack/devel/tcl-snack.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- tcl-snack.spec 22 Jul 2009 21:33:58 -0000 1.10 +++ tcl-snack.spec 27 Jul 2009 05:34:21 -0000 1.11 @@ -9,7 +9,7 @@ Name: tcl-%{realname} Version: 2.2.10 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Sound toolkit Group: System Environment/Libraries License: GPLv2+ @@ -126,6 +126,9 @@ rm -rf %{buildroot} %{python_sitelib}/tkSnack* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.10-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Tom "spot" Callaway - 2.2.10-11 - turn alsa back on, /dev/dsp is dead From jkeating at fedoraproject.org Mon Jul 27 05:34:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:34:37 +0000 (UTC) Subject: rpms/tcl-tcludp/devel tcl-tcludp.spec,1.2,1.3 Message-ID: <20090727053437.C569211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tcludp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8852 Modified Files: tcl-tcludp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tcludp.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tcludp/devel/tcl-tcludp.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tcl-tcludp.spec 25 Feb 2009 18:40:23 -0000 1.2 +++ tcl-tcludp.spec 27 Jul 2009 05:34:37 -0000 1.3 @@ -4,7 +4,7 @@ Name: tcl-%{realname} Version: 1.0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tcl extension for UDP support Group: System Environment/Libraries License: MIT @@ -42,6 +42,9 @@ rm -rf %{buildroot} %{_mandir}/mann/udp* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:34:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:34:50 +0000 (UTC) Subject: rpms/tcl-tclvfs/devel tcl-tclvfs.spec,1.3,1.4 Message-ID: <20090727053450.214AF11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tclvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9043 Modified Files: tcl-tclvfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tclvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tclvfs/devel/tcl-tclvfs.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tcl-tclvfs.spec 18 Mar 2009 16:02:49 -0000 1.3 +++ tcl-tclvfs.spec 27 Jul 2009 05:34:50 -0000 1.4 @@ -4,7 +4,7 @@ Name: tcl-%{realname} Version: 20080503 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tcl extension for Virtual Filesystem support Group: System Environment/Libraries License: MIT @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/mann/vfs* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20080503-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Tom "spot" Callaway 20080503-3 - add Requires: tcl-trf From jkeating at fedoraproject.org Mon Jul 27 05:35:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:35:01 +0000 (UTC) Subject: rpms/tcl-tclxml/devel tcl-tclxml.spec,1.4,1.5 Message-ID: <20090727053501.AE8EB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tclxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9177 Modified Files: tcl-tclxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tclxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tclxml/devel/tcl-tclxml.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tcl-tclxml.spec 25 Feb 2009 18:42:12 -0000 1.4 +++ tcl-tclxml.spec 27 Jul 2009 05:35:01 -0000 1.5 @@ -6,7 +6,7 @@ Summary: XML parsing library for the Tcl scripting language Name: tcl-%{realname} Version: 3.2 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: Development/Libraries URL: http://tclxml.sourceforge.net/ @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %{tcl_sitelib}/%{realname}-gui%{version}/*.tcl %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:35:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:35:13 +0000 (UTC) Subject: rpms/tcl-thread/devel tcl-thread.spec,1.6,1.7 Message-ID: <20090727053513.CA59111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-thread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9303 Modified Files: tcl-thread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-thread.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-thread/devel/tcl-thread.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tcl-thread.spec 25 Feb 2009 18:43:09 -0000 1.6 +++ tcl-thread.spec 27 Jul 2009 05:35:13 -0000 1.7 @@ -6,7 +6,7 @@ Summary: Tcl Thread extension License: TCL Group: Development/Tools Version: 2.6.5 -Release: 7%{?dist} +Release: 8%{?dist} Source: http://prdownloads.sourceforge.net/tcl/thread2.6.5.tar.gz URL: http://tcl.sourceforge.net BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/mann/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.6.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.6.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:35:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:35:25 +0000 (UTC) Subject: rpms/tcl-tileqt/devel tcl-tileqt.spec,1.3,1.4 Message-ID: <20090727053525.A712411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tileqt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9438 Modified Files: tcl-tileqt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tileqt.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tileqt/devel/tcl-tileqt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tcl-tileqt.spec 25 Feb 2009 18:44:14 -0000 1.3 +++ tcl-tileqt.spec 27 Jul 2009 05:35:25 -0000 1.4 @@ -5,7 +5,7 @@ Name: tcl-%{realname} Version: 0.4 -Release: 0.4.%{betaver}%{?dist} +Release: 0.5.%{betaver}%{?dist} Summary: QT widget support for Tile Toolkit Group: System Environment/Libraries License: MIT @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{tcl_sitearch}/%{realname}%{version}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-0.5.b1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-0.4.b1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:35:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:35:39 +0000 (UTC) Subject: rpms/tcl-tkpng/devel tcl-tkpng.spec,1.1,1.2 Message-ID: <20090727053539.2806E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tkpng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9580 Modified Files: tcl-tkpng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tkpng.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tkpng/devel/tcl-tkpng.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tcl-tkpng.spec 12 Mar 2009 20:45:21 -0000 1.1 +++ tcl-tkpng.spec 27 Jul 2009 05:35:38 -0000 1.2 @@ -4,7 +4,7 @@ Name: tcl-%{realname} Version: 0.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tcl/Tk support for PNG Group: System Environment/Libraries License: TCL @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{tcl_sitearch}/%{realname}%{version}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Tom "spot" Callaway 0.9-3 - enable-64bit flag to configure on 64bit platforms From jkeating at fedoraproject.org Mon Jul 27 05:35:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:35:50 +0000 (UTC) Subject: rpms/tcl-tktreectrl/devel tcl-tktreectrl.spec,1.5,1.6 Message-ID: <20090727053550.A8CE511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-tktreectrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9727 Modified Files: tcl-tktreectrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-tktreectrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-tktreectrl/devel/tcl-tktreectrl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tcl-tktreectrl.spec 18 May 2009 18:41:31 -0000 1.5 +++ tcl-tktreectrl.spec 27 Jul 2009 05:35:50 -0000 1.6 @@ -4,7 +4,7 @@ Name: tcl-%{realname} Version: 2.2.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Multi-column hierarchical listbox widget for Tk Group: System Environment/Libraries License: TCL @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_mandir}/mann/treectrl* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 13 2009 Tom "spot" Callaway - 2.2.9-1 - update to 2.2.9 From jkeating at fedoraproject.org Mon Jul 27 05:36:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:36:03 +0000 (UTC) Subject: rpms/tcl-trf/devel tcl-trf.spec,1.2,1.3 Message-ID: <20090727053603.EAC0911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-trf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9878 Modified Files: tcl-trf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-trf.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-trf/devel/tcl-trf.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tcl-trf.spec 6 Jul 2009 18:59:34 -0000 1.2 +++ tcl-trf.spec 27 Jul 2009 05:36:03 -0000 1.3 @@ -4,7 +4,7 @@ Name: tcl-%{realname} Version: 2.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tcl extension providing "transformer" commands Group: System Environment/Libraries License: MIT and BSD and LGPLv2+ and GPLv2+ and Public Domain and OpenSSL @@ -83,6 +83,9 @@ rm -rf %{buildroot} %{_includedir}/trfDecls.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 6 2009 Tom "spot" Callaway 2.1.3-3 - fix noripemd patch to resolve undefined symbols (bz 506072) From jkeating at fedoraproject.org Mon Jul 27 05:36:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:36:18 +0000 (UTC) Subject: rpms/tcl-zlib/devel tcl-zlib.spec,1.4,1.5 Message-ID: <20090727053618.8F4B611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcl-zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10041 Modified Files: tcl-zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcl-zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcl-zlib/devel/tcl-zlib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tcl-zlib.spec 25 Feb 2009 18:46:11 -0000 1.4 +++ tcl-zlib.spec 27 Jul 2009 05:36:16 -0000 1.5 @@ -8,7 +8,7 @@ Name: tcl-%{realname} Version: 2.0.1 -Release: 0.3.svn40%{?dist} +Release: 0.4.svn40%{?dist} Summary: Tcl extension for zlib support Group: System Environment/Libraries License: MIT @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_includedir}/*.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.1-0.4.svn40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.1-0.3.svn40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:36:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:36:42 +0000 (UTC) Subject: rpms/tclabc/devel tclabc.spec,1.7,1.8 Message-ID: <20090727053642.E544F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclabc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10328 Modified Files: tclabc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclabc.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclabc/devel/tclabc.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tclabc.spec 25 Feb 2009 18:47:07 -0000 1.7 +++ tclabc.spec 27 Jul 2009 05:36:42 -0000 1.8 @@ -1,6 +1,6 @@ Name: tclabc Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Tcl interface and a Tk GUI to the ABC notation Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:36:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:36:55 +0000 (UTC) Subject: rpms/tclchecker/devel tclchecker.spec,1.7,1.8 Message-ID: <20090727053655.D283F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclchecker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10465 Modified Files: tclchecker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclchecker.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclchecker/devel/tclchecker.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tclchecker.spec 25 Feb 2009 18:48:07 -0000 1.7 +++ tclchecker.spec 27 Jul 2009 05:36:55 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Tcl syntax checker Name: tclchecker Version: 1.4 -Release: 7.%{cvsdate}cvs%{?dist} +Release: 8.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Libraries # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tclchecker-20061030cvs tclchecker @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{tcl_sitelib}/%{name}%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-8.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-7.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:37:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:37:11 +0000 (UTC) Subject: rpms/tclcompiler/devel tclcompiler.spec,1.7,1.8 Message-ID: <20090727053711.27C7411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclcompiler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10633 Modified Files: tclcompiler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclcompiler.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclcompiler/devel/tclcompiler.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tclcompiler.spec 25 Feb 2009 18:49:05 -0000 1.7 +++ tclcompiler.spec 27 Jul 2009 05:37:10 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Tcl bytecode compiler Name: tclcompiler Version: 1.5 -Release: 8.%{cvsdate}cvs%{?dist} +Release: 9.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Libraries # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tclcompiler-20061030cvs tclcompiler @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{tcl_sitearch}/%{name}1.4 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-9.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-8.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:37:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:37:29 +0000 (UTC) Subject: rpms/tcldebugger/devel tcldebugger.spec,1.9,1.10 Message-ID: <20090727053729.3834A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcldebugger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10906 Modified Files: tcldebugger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcldebugger.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcldebugger/devel/tcldebugger.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tcldebugger.spec 25 Feb 2009 18:50:06 -0000 1.9 +++ tcldebugger.spec 27 Jul 2009 05:37:28 -0000 1.10 @@ -5,7 +5,7 @@ Summary: Tcl debugging library Name: tcldebugger Version: 1.4 -Release: 9.%{cvsdate}cvs%{?dist} +Release: 10.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Libraries # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tcldebugger-20061030cvs tcldebugger @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/mann/*.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-10.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-9.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:37:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:37:42 +0000 (UTC) Subject: rpms/tclhttpd/devel tclhttpd.spec,1.15,1.16 Message-ID: <20090727053742.375BD11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclhttpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11395 Modified Files: tclhttpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclhttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclhttpd/devel/tclhttpd.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- tclhttpd.spec 25 Feb 2009 18:51:09 -0000 1.15 +++ tclhttpd.spec 27 Jul 2009 05:37:42 -0000 1.16 @@ -4,7 +4,7 @@ %define contentdir %_var/www/tclhttpd Name: tclhttpd Version: 3.5.1 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Extensible Web+Application server written in Tcl Group: System Environment/Daemons @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %{_var}/run/tclhttpd/tclhttpd.pid %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.5.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.5.1-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:37:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:37:54 +0000 (UTC) Subject: rpms/tcllib/devel tcllib.spec,1.17,1.18 Message-ID: <20090727053754.4FC4411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcllib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11636 Modified Files: tcllib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcllib.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcllib/devel/tcllib.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- tcllib.spec 25 Feb 2009 18:52:04 -0000 1.17 +++ tcllib.spec 27 Jul 2009 05:37:54 -0000 1.18 @@ -4,7 +4,7 @@ Summary: The standard Tcl library Name: tcllib Version: 1.11.1 -Release: 2%{?dist} +Release: 3%{?dist} License: TCL Group: Development/Libraries Source: http://downloads.sourceforge.net/tcllib/tcllib-1.11.1.tar.gz @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/tcldocstrip %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.11.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:38:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:38:07 +0000 (UTC) Subject: rpms/tclparser/devel tclparser.spec,1.7,1.8 Message-ID: <20090727053807.22FE711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11938 Modified Files: tclparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclparser/devel/tclparser.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tclparser.spec 25 Feb 2009 18:52:59 -0000 1.7 +++ tclparser.spec 27 Jul 2009 05:38:06 -0000 1.8 @@ -5,7 +5,7 @@ Summary: Tcl syntax parser Name: tclparser Version: 1.4 -Release: 6.%{cvsdate}cvs%{?dist} +Release: 7.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Libraries # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tclparser-20061030cvs tclparser @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{tcl_sitearch}/%{name}%{version} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-7.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-6.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:38:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:38:18 +0000 (UTC) Subject: rpms/tclpro/devel tclpro.spec,1.9,1.10 Message-ID: <20090727053818.9D5A211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclpro/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12068 Modified Files: tclpro.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclpro.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclpro/devel/tclpro.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- tclpro.spec 25 Feb 2009 18:53:58 -0000 1.9 +++ tclpro.spec 27 Jul 2009 05:38:18 -0000 1.10 @@ -5,7 +5,7 @@ Summary: Development and debugging tools for Tcl applications Name: tclpro Version: 1.5.0 -Release: 13.%{cvsdate}cvs%{?dist} +Release: 14.%{cvsdate}cvs%{?dist} License: TCL Group: Development/Tools # cvs -d:pserver:anonymous at tclpro.cvs.sourceforge.net:/cvsroot/tclpro export -D 2006-10-30 -d tclpro-20061030cvs tbcload @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/prodebug.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.0-14.20061030cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.0-13.20061030cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:38:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:38:33 +0000 (UTC) Subject: rpms/tclsoap/devel tclsoap.spec,1.6,1.7 Message-ID: <20090727053833.0F15811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclsoap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12215 Modified Files: tclsoap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclsoap.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclsoap/devel/tclsoap.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tclsoap.spec 25 Feb 2009 18:54:56 -0000 1.6 +++ tclsoap.spec 27 Jul 2009 05:38:32 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Tcl commands for SOAP remote procedure calls Name: tclsoap Version: 1.6.7 -Release: 6%{?dist} +Release: 7%{?dist} License: MIT URL: http://tclsoap.sourceforge.net/ Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:38:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:38:57 +0000 (UTC) Subject: rpms/tclx/devel tclx.spec,1.24,1.25 Message-ID: <20090727053857.30D3A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tclx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12501 Modified Files: tclx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tclx.spec =================================================================== RCS file: /cvs/pkgs/rpms/tclx/devel/tclx.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- tclx.spec 25 Feb 2009 18:56:59 -0000 1.24 +++ tclx.spec 27 Jul 2009 05:38:56 -0000 1.25 @@ -11,7 +11,7 @@ Summary: Extensions for Tcl and Tk Name: tclx Version: %{major_ver}.0 -Release: 13%{?dist} +Release: 14%{?dist} License: BSD Group: Development/Languages URL: http://tclx.sourceforge.net/ @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/Keylist.3* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.4.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.4.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:38:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:38:44 +0000 (UTC) Subject: rpms/tcltls/devel tcltls.spec,1.11,1.12 Message-ID: <20090727053844.CE14E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcltls/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12362 Modified Files: tcltls.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcltls.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcltls/devel/tcltls.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- tcltls.spec 25 Feb 2009 18:55:58 -0000 1.11 +++ tcltls.spec 27 Jul 2009 05:38:44 -0000 1.12 @@ -3,7 +3,7 @@ Name: tcltls Version: 1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: OpenSSL extension for Tcl Group: Development/Libraries @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/tls.h %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:39:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:39:24 +0000 (UTC) Subject: rpms/tcpdump/devel tcpdump.spec,1.74,1.75 Message-ID: <20090727053924.0912111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpdump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12809 Modified Files: tcpdump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpdump.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpdump/devel/tcpdump.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- tcpdump.spec 25 Feb 2009 18:59:13 -0000 1.74 +++ tcpdump.spec 27 Jul 2009 05:39:23 -0000 1.75 @@ -2,7 +2,7 @@ Summary: A network traffic monitoring to Name: tcpdump Epoch: 14 Version: 3.9.8 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD with advertising URL: http://www.tcpdump.org Group: Applications/Internet @@ -103,6 +103,9 @@ exit 0 %{_mandir}/man8/tcpdump.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 14:3.9.8-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 14:3.9.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:39:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:39:11 +0000 (UTC) Subject: rpms/tcp_wrappers/devel tcp_wrappers.spec,1.38,1.39 Message-ID: <20090727053911.DF22211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcp_wrappers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12673 Modified Files: tcp_wrappers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcp_wrappers.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcp_wrappers/devel/tcp_wrappers.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- tcp_wrappers.spec 14 Apr 2009 10:52:10 -0000 1.38 +++ tcp_wrappers.spec 27 Jul 2009 05:39:11 -0000 1.39 @@ -1,7 +1,7 @@ Summary: A security tool which acts as a wrapper for TCP daemons Name: tcp_wrappers Version: 7.6 -Release: 55%{?dist} +Release: 56%{?dist} %define LIB_MAJOR 0 %define LIB_MINOR 7 @@ -148,6 +148,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.6-56 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Jan F. Chadima - 7.6-55 - resolving addr when name == "" (repair of patch #220015) From jkeating at fedoraproject.org Mon Jul 27 05:39:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:39:38 +0000 (UTC) Subject: rpms/tcpflow/devel tcpflow.spec,1.5,1.6 Message-ID: <20090727053938.90D6C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpflow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12964 Modified Files: tcpflow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpflow.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpflow/devel/tcpflow.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tcpflow.spec 25 Feb 2009 19:00:13 -0000 1.5 +++ tcpflow.spec 27 Jul 2009 05:39:38 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Network traffic recorder Name: tcpflow Version: 0.21 -Release: 6%{?dist} +Release: 7%{?dist} License: GPL+ Group: Applications/Internet URL: http://www.circlemud.org/~jelson/software/tcpflow/ @@ -44,6 +44,9 @@ separate file for later analysis. %{_mandir}/man1/%{name}* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.21-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.21-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:39:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:39:51 +0000 (UTC) Subject: rpms/tcpick/devel tcpick.spec,1.10,1.11 Message-ID: <20090727053951.5E80C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpick/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13126 Modified Files: tcpick.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpick.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpick/devel/tcpick.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- tcpick.spec 29 Mar 2009 15:27:27 -0000 1.10 +++ tcpick.spec 27 Jul 2009 05:39:51 -0000 1.11 @@ -1,7 +1,7 @@ Summary: A tcp stream sniffer, tracker and capturer Name: tcpick Version: 0.2.1 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://tcpick.sourceforge.net/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/it/man8/%{name}.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Lubomir Rintel 0.2.1-16 - Fix -t abort on 64bit (#492109) From jkeating at fedoraproject.org Mon Jul 27 05:40:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:40:03 +0000 (UTC) Subject: rpms/tcping/devel tcping.spec,1.2,1.3 Message-ID: <20090727054003.3013411C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcping/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13285 Modified Files: tcping.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcping.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcping/devel/tcping.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tcping.spec 25 Feb 2009 19:01:19 -0000 1.2 +++ tcping.spec 27 Jul 2009 05:40:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: tcping Version: 1.3.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Check of TCP connection to a given IP/Port Group: Applications/Internet @@ -42,6 +42,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:40:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:40:14 +0000 (UTC) Subject: rpms/tcpjunk/devel tcpjunk.spec,1.6,1.7 Message-ID: <20090727054014.812AD11C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpjunk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13430 Modified Files: tcpjunk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpjunk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpjunk/devel/tcpjunk.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tcpjunk.spec 7 Jul 2009 20:53:45 -0000 1.6 +++ tcpjunk.spec 27 Jul 2009 05:40:14 -0000 1.7 @@ -1,6 +1,6 @@ Name: tcpjunk Version: 2.7.01 -Release: 1%{?dist} +Release: 2%{?dist} Summary: TCP protocols testing tool Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.7.01-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Fabian Affolter - 2.7.01-1 - Updated to new upsteram version 2.7.01 From jkeating at fedoraproject.org Mon Jul 27 05:40:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:40:26 +0000 (UTC) Subject: rpms/tcpreplay/devel tcpreplay.spec,1.24,1.25 Message-ID: <20090727054026.0986311C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpreplay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13539 Modified Files: tcpreplay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpreplay.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpreplay/devel/tcpreplay.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- tcpreplay.spec 25 Jun 2009 22:55:14 -0000 1.24 +++ tcpreplay.spec 27 Jul 2009 05:40:25 -0000 1.25 @@ -7,7 +7,7 @@ Name: tcpreplay Version: 3.4.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Replay captured network traffic Group: Applications/Internet @@ -65,6 +65,9 @@ capture files. %{_bindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Bojan Smojver - 3.4.3-1 - bump up to 3.4.3 From jkeating at fedoraproject.org Mon Jul 27 05:40:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:40:43 +0000 (UTC) Subject: rpms/tcptraceroute/devel tcptraceroute.spec,1.8,1.9 Message-ID: <20090727054043.815C611C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcptraceroute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13740 Modified Files: tcptraceroute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcptraceroute.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcptraceroute/devel/tcptraceroute.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tcptraceroute.spec 25 Feb 2009 19:03:50 -0000 1.8 +++ tcptraceroute.spec 27 Jul 2009 05:40:43 -0000 1.9 @@ -1,6 +1,6 @@ Name: tcptraceroute Version: 1.5 -Release: 0.7.beta7%{?dist} +Release: 0.8.beta7%{?dist} Summary: A traceroute implementation using TCP packets Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-0.8.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-0.7.beta7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:40:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:40:56 +0000 (UTC) Subject: rpms/tcptrack/devel tcptrack.spec,1.2,1.3 Message-ID: <20090727054056.6B20E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcptrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13911 Modified Files: tcptrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcptrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcptrack/devel/tcptrack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tcptrack.spec 25 Feb 2009 19:04:47 -0000 1.2 +++ tcptrack.spec 27 Jul 2009 05:40:55 -0000 1.3 @@ -1,6 +1,6 @@ Name: tcptrack Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Displays information about tcp connections on a network interface Group: Applications/System @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:41:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:41:08 +0000 (UTC) Subject: rpms/tcputils/devel tcputils.spec,1.4,1.5 Message-ID: <20090727054108.B4B8111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcputils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14063 Modified Files: tcputils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcputils.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcputils/devel/tcputils.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tcputils.spec 25 Feb 2009 19:05:41 -0000 1.4 +++ tcputils.spec 27 Jul 2009 05:41:08 -0000 1.5 @@ -1,6 +1,6 @@ Name: tcputils Version: 0.6.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Utilities for TCP programming in shell-scripts Group: Development/Tools @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:41:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:41:21 +0000 (UTC) Subject: rpms/tcpxtract/devel tcpxtract.spec,1.8,1.9 Message-ID: <20090727054121.827C211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcpxtract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14184 Modified Files: tcpxtract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcpxtract.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcpxtract/devel/tcpxtract.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tcpxtract.spec 25 Feb 2009 19:06:41 -0000 1.8 +++ tcpxtract.spec 27 Jul 2009 05:41:21 -0000 1.9 @@ -1,6 +1,6 @@ Name: tcpxtract Version: 1.0.1 -Release: 9%{?dist}.2 +Release: 10%{?dist}.2 Summary: Tool for extracting files from network traffic Group: Applications/Internet @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-10.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-9.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:41:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:41:34 +0000 (UTC) Subject: rpms/tcsh/devel tcsh.spec,1.63,1.64 Message-ID: <20090727054134.1966711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tcsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14324 Modified Files: tcsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tcsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/tcsh/devel/tcsh.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- tcsh.spec 20 Jul 2009 13:25:46 -0000 1.63 +++ tcsh.spec 27 Jul 2009 05:41:33 -0000 1.64 @@ -3,7 +3,7 @@ Summary: An enhanced version of csh, the C shell Name: tcsh Version: 6.17 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Shells Source: ftp://ftp.astron.com/pub/tcsh/%{name}-%{version}.00.tar.gz @@ -117,6 +117,9 @@ fi %{_mandir}/man1/*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Vitezslav Crhonek - 6.17-1 - Update to tcsh-6.17.00 From jkeating at fedoraproject.org Mon Jul 27 05:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:41:46 +0000 (UTC) Subject: rpms/tdom/devel tdom.spec,1.6,1.7 Message-ID: <20090727054146.E76BB11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tdom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14455 Modified Files: tdom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tdom.spec =================================================================== RCS file: /cvs/pkgs/rpms/tdom/devel/tdom.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tdom.spec 25 Feb 2009 19:08:39 -0000 1.6 +++ tdom.spec 27 Jul 2009 05:41:46 -0000 1.7 @@ -2,7 +2,7 @@ Name: tdom Version: 0.8.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: DOM parser for Tcl Group: Development/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:41:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:41:58 +0000 (UTC) Subject: rpms/teamgit/devel teamgit.spec,1.6,1.7 Message-ID: <20090727054158.99E3D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/teamgit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14572 Modified Files: teamgit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: teamgit.spec =================================================================== RCS file: /cvs/pkgs/rpms/teamgit/devel/teamgit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- teamgit.spec 1 Mar 2009 11:39:20 -0000 1.6 +++ teamgit.spec 27 Jul 2009 05:41:58 -0000 1.7 @@ -4,7 +4,7 @@ Summary: Visual tool for Git Name: teamgit Version: 0.0.9 -Release: 3.%{date}%{?dist} +Release: 4.%{date}%{?dist} Epoch: 1 License: GPLv2 Group: Development/Tools @@ -52,6 +52,9 @@ desktop-file-install --dir %{buildroot}% %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.0.9-4.20090205 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 1 2009 Terje Rosten - 0.0.9-3.20090205 - Fix desktop file (bz #487868) From jkeating at fedoraproject.org Mon Jul 27 05:42:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:42:11 +0000 (UTC) Subject: rpms/teckit/devel teckit.spec,1.7,1.8 Message-ID: <20090727054211.AF11711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/teckit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14731 Modified Files: teckit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: teckit.spec =================================================================== RCS file: /cvs/pkgs/rpms/teckit/devel/teckit.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- teckit.spec 5 Mar 2009 10:36:06 -0000 1.7 +++ teckit.spec 27 Jul 2009 05:42:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: teckit Version: 2.5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Conversion library and mapping compiler License: LGPLv2+ or CPL Group: Development/Libraries @@ -87,6 +87,9 @@ make check %{_libdir}/libTECkit_Compiler.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 05 2009 Caol?n McNamara - 2.5.1-3 - include stdio.h for sprintf From jkeating at fedoraproject.org Mon Jul 27 05:42:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:42:26 +0000 (UTC) Subject: rpms/tecnoballz/devel tecnoballz.spec,1.8,1.9 Message-ID: <20090727054226.256EA11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tecnoballz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14864 Modified Files: tecnoballz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tecnoballz.spec =================================================================== RCS file: /cvs/pkgs/rpms/tecnoballz/devel/tecnoballz.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tecnoballz.spec 25 Feb 2009 19:29:57 -0000 1.8 +++ tecnoballz.spec 27 Jul 2009 05:42:25 -0000 1.9 @@ -1,6 +1,6 @@ Name: tecnoballz Version: 0.92 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Brick Busting game Group: Amusements/Games @@ -99,6 +99,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.92-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.92-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:42:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:42:38 +0000 (UTC) Subject: rpms/teeworlds/devel teeworlds.spec,1.4,1.5 Message-ID: <20090727054238.C1E7711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/teeworlds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15013 Modified Files: teeworlds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: teeworlds.spec =================================================================== RCS file: /cvs/pkgs/rpms/teeworlds/devel/teeworlds.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- teeworlds.spec 9 Mar 2009 16:05:31 -0000 1.4 +++ teeworlds.spec 27 Jul 2009 05:42:38 -0000 1.5 @@ -1,6 +1,6 @@ Name: teeworlds Version: 0.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Online multi-player platform 2D shooter Group: Amusements/Games @@ -117,6 +117,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 09 2009 Simon Wesp 0.5.1-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 05:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:42:52 +0000 (UTC) Subject: rpms/teg/devel teg.spec,1.14,1.15 Message-ID: <20090727054252.4234211C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/teg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15147 Modified Files: teg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: teg.spec =================================================================== RCS file: /cvs/pkgs/rpms/teg/devel/teg.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- teg.spec 17 Jul 2009 18:01:12 -0000 1.14 +++ teg.spec 27 Jul 2009 05:42:52 -0000 1.15 @@ -1,6 +1,6 @@ Name: teg Version: 0.11.2 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Turn based strategy game Group: Amusements/Games License: GPLv2 @@ -98,6 +98,9 @@ if [ -x %{_bindir}/gtk-update-icon-cache fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.2-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 17 2009 josef radinger - 0.11.2-20 - fix and reenable help From jkeating at fedoraproject.org Mon Jul 27 05:43:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:43:08 +0000 (UTC) Subject: rpms/telepathy-butterfly/devel telepathy-butterfly.spec,1.14,1.15 Message-ID: <20090727054308.1107711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-butterfly/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15302 Modified Files: telepathy-butterfly.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-butterfly.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-butterfly/devel/telepathy-butterfly.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- telepathy-butterfly.spec 17 Jun 2009 03:42:18 -0000 1.14 +++ telepathy-butterfly.spec 27 Jul 2009 05:43:07 -0000 1.15 @@ -2,7 +2,7 @@ Name: telepathy-butterfly Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MSN connection manager for Telepathy Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Brian Pepple - 0.3.4-1 - Update to 0.3.4. - Update build patch. From jkeating at fedoraproject.org Mon Jul 27 05:43:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:43:22 +0000 (UTC) Subject: rpms/telepathy-farsight/devel telepathy-farsight.spec,1.5,1.6 Message-ID: <20090727054322.324B911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-farsight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15412 Modified Files: telepathy-farsight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-farsight.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-farsight/devel/telepathy-farsight.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- telepathy-farsight.spec 7 May 2009 13:08:42 -0000 1.5 +++ telepathy-farsight.spec 27 Jul 2009 05:43:22 -0000 1.6 @@ -6,7 +6,7 @@ Name: telepathy-farsight Version: 0.0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Telepathy client to handle media streaming channels Group: System Environment/Libraries @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Brian Pepple - 0.0.7-1 - Update to 0.0.7. From jkeating at fedoraproject.org Mon Jul 27 05:43:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:43:34 +0000 (UTC) Subject: rpms/telepathy-feed/devel telepathy-feed.spec,1.6,1.7 Message-ID: <20090727054334.E6A7F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-feed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15546 Modified Files: telepathy-feed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-feed.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-feed/devel/telepathy-feed.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- telepathy-feed.spec 25 Feb 2009 19:34:54 -0000 1.6 +++ telepathy-feed.spec 27 Jul 2009 05:43:34 -0000 1.7 @@ -1,6 +1,6 @@ Name: telepathy-feed Version: 0.13 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Galago feed for Telepathy Group: Applications/Communications @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.13-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:43:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:43:46 +0000 (UTC) Subject: rpms/telepathy-filesystem/devel telepathy-filesystem.spec,1.3,1.4 Message-ID: <20090727054346.79C8611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15691 Modified Files: telepathy-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-filesystem/devel/telepathy-filesystem.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- telepathy-filesystem.spec 25 Feb 2009 19:35:54 -0000 1.3 +++ telepathy-filesystem.spec 27 Jul 2009 05:43:46 -0000 1.4 @@ -1,6 +1,6 @@ Name: telepathy-filesystem Version: 0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Telepathy filesystem layout Group: System Environment/Base @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:43:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:43:57 +0000 (UTC) Subject: rpms/telepathy-gabble/devel telepathy-gabble.spec,1.59,1.60 Message-ID: <20090727054357.CF56C11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-gabble/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15822 Modified Files: telepathy-gabble.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-gabble.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-gabble/devel/telepathy-gabble.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- telepathy-gabble.spec 22 Jul 2009 17:57:42 -0000 1.59 +++ telepathy-gabble.spec 27 Jul 2009 05:43:57 -0000 1.60 @@ -1,6 +1,6 @@ Name: telepathy-gabble Version: 0.7.31 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Jabber/XMPP connection manager Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.31-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Brian Pepple - 0.7.31-1 - Update to 0.7.31. From jkeating at fedoraproject.org Mon Jul 27 05:44:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:44:10 +0000 (UTC) Subject: rpms/telepathy-glib/devel telepathy-glib.spec,1.41,1.42 Message-ID: <20090727054410.1FFD111C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15959 Modified Files: telepathy-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-glib/devel/telepathy-glib.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- telepathy-glib.spec 27 Jun 2009 14:02:58 -0000 1.41 +++ telepathy-glib.spec 27 Jul 2009 05:44:09 -0000 1.42 @@ -4,7 +4,7 @@ Name: telepathy-glib Version: 0.7.33 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GLib bindings for Telepathy Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.33-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Brian Pepple - 0.7.33-1 - Update to 0.7.33. From jkeating at fedoraproject.org Mon Jul 27 05:44:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:44:20 +0000 (UTC) Subject: rpms/telepathy-haze/devel telepathy-haze.spec,1.16,1.17 Message-ID: <20090727054420.DE23511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-haze/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16105 Modified Files: telepathy-haze.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-haze.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-haze/devel/telepathy-haze.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- telepathy-haze.spec 18 Jun 2009 12:53:53 -0000 1.16 +++ telepathy-haze.spec 27 Jul 2009 05:44:20 -0000 1.17 @@ -1,6 +1,6 @@ Name: telepathy-haze Version: 0.3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A multi-protocol Libpurple connection manager for Telepathy Group: Applications/Communications @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_mandir}/man8/telepathy-haze.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Brian Pepple - 0.3.1-1 - Update to 0.3.1. From jkeating at fedoraproject.org Mon Jul 27 05:44:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:44:31 +0000 (UTC) Subject: rpms/telepathy-idle/devel telepathy-idle.spec,1.11,1.12 Message-ID: <20090727054431.9796F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-idle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16256 Modified Files: telepathy-idle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-idle.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-idle/devel/telepathy-idle.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- telepathy-idle.spec 27 Jun 2009 23:17:56 -0000 1.11 +++ telepathy-idle.spec 27 Jul 2009 05:44:31 -0000 1.12 @@ -1,6 +1,6 @@ Name: telepathy-idle Version: 0.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: IRC connection manager for Telepathy Group: Applications/Communications @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Brian Pepple - 0.1.4-1 - Update to 0.1.4. - Add patch to fix glibc compilation bug. From jkeating at fedoraproject.org Mon Jul 27 05:44:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:44:42 +0000 (UTC) Subject: rpms/telepathy-mission-control/devel telepathy-mission-control.spec, 1.17, 1.18 Message-ID: <20090727054442.BDC6711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-mission-control/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16390 Modified Files: telepathy-mission-control.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-mission-control.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-mission-control/devel/telepathy-mission-control.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- telepathy-mission-control.spec 25 Feb 2009 19:45:27 -0000 1.17 +++ telepathy-mission-control.spec 27 Jul 2009 05:44:42 -0000 1.18 @@ -1,6 +1,6 @@ Name: telepathy-mission-control Version: 4.67 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Central control for Telepathy connection manager Group: System Environment/Libraries @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.67-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.67-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:44:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:44:53 +0000 (UTC) Subject: rpms/telepathy-salut/devel telepathy-salut.spec,1.27,1.28 Message-ID: <20090727054453.AE05D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-salut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16503 Modified Files: telepathy-salut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-salut.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-salut/devel/telepathy-salut.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- telepathy-salut.spec 2 Apr 2009 18:37:48 -0000 1.27 +++ telepathy-salut.spec 27 Jul 2009 05:44:53 -0000 1.28 @@ -1,6 +1,6 @@ Name: telepathy-salut Version: 0.3.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Link-local XMPP telepathy connection manager Group: Applications/Communications @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}.8.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 2 2009 Brian Pepple - 0.3.9-1 - Update to 0.3.9. From jkeating at fedoraproject.org Mon Jul 27 05:45:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:45:08 +0000 (UTC) Subject: rpms/telepathy-sofiasip/devel telepathy-sofiasip.spec,1.6,1.7 Message-ID: <20090727054508.D4F4711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-sofiasip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16647 Modified Files: telepathy-sofiasip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-sofiasip.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-sofiasip/devel/telepathy-sofiasip.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- telepathy-sofiasip.spec 25 Feb 2009 19:47:26 -0000 1.6 +++ telepathy-sofiasip.spec 27 Jul 2009 05:45:08 -0000 1.7 @@ -1,6 +1,6 @@ Name: telepathy-sofiasip Version: 0.5.15 -Release: 2%{?dist} +Release: 3%{?dist} Summary: SIP connection manager for Telepathy Group: Applications/Communications @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:45:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:45:22 +0000 (UTC) Subject: rpms/telepathy-stream-engine/devel telepathy-stream-engine.spec, 1.15, 1.16 Message-ID: <20090727054522.4A19911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telepathy-stream-engine/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16830 Modified Files: telepathy-stream-engine.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telepathy-stream-engine.spec =================================================================== RCS file: /cvs/pkgs/rpms/telepathy-stream-engine/devel/telepathy-stream-engine.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- telepathy-stream-engine.spec 12 Jun 2009 22:00:30 -0000 1.15 +++ telepathy-stream-engine.spec 27 Jul 2009 05:45:21 -0000 1.16 @@ -1,6 +1,6 @@ Name: telepathy-stream-engine Version: 0.5.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Telepathy client to handle media streaming Group: Applications/Communications @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Brian Pepple - 0.5.9-1 - Update to 0.5.9. From jkeating at fedoraproject.org Mon Jul 27 05:45:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:45:35 +0000 (UTC) Subject: rpms/telescope-server/devel telescope-server.spec,1.5,1.6 Message-ID: <20090727054535.2266E11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telescope-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16977 Modified Files: telescope-server.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telescope-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/telescope-server/devel/telescope-server.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- telescope-server.spec 25 Feb 2009 19:49:19 -0000 1.5 +++ telescope-server.spec 27 Jul 2009 05:45:34 -0000 1.6 @@ -1,7 +1,7 @@ %define svn_date 20070315 Name: telescope-server Version: 0 -Release: 0.5.%svn_date%{?dist} +Release: 0.6.%svn_date%{?dist} Summary: Opensource Telescope control servers to interface with stellarium Group: Amusements/Graphics @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.6.20070315 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.5.20070315 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:45:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:45:48 +0000 (UTC) Subject: rpms/tellico/devel tellico.spec,1.35,1.36 Message-ID: <20090727054548.5A2E511C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tellico/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17103 Modified Files: tellico.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tellico.spec =================================================================== RCS file: /cvs/pkgs/rpms/tellico/devel/tellico.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- tellico.spec 5 Mar 2009 11:08:38 -0000 1.35 +++ tellico.spec 27 Jul 2009 05:45:48 -0000 1.36 @@ -1,6 +1,6 @@ Name: tellico Version: 1.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection manager Group: Applications/Multimedia @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 5 2009 Alex Lancaster - 1.3.5-1 - Update to latest upstream (1.3.5) - Add a patch from upstream SVN r3410 which fixes build with GCC 4.4 From jkeating at fedoraproject.org Mon Jul 27 05:46:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:46:04 +0000 (UTC) Subject: rpms/telnet/devel telnet.spec,1.34,1.35 Message-ID: <20090727054604.CDDCE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/telnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17228 Modified Files: telnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: telnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/telnet/devel/telnet.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- telnet.spec 25 Feb 2009 19:52:09 -0000 1.34 +++ telnet.spec 27 Jul 2009 05:46:04 -0000 1.35 @@ -1,7 +1,7 @@ Summary: The client program for the telnet remote login protocol. Name: telnet Version: 0.17 -Release: 43%{?dist} +Release: 44%{?dist} Epoch: 1 License: BSD Group: Applications/Internet @@ -135,6 +135,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/telnetd.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.17-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.17-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:46:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:46:19 +0000 (UTC) Subject: rpms/tennix/devel tennix.spec,1.2,1.3 Message-ID: <20090727054619.18FC311C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tennix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17383 Modified Files: tennix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tennix.spec =================================================================== RCS file: /cvs/pkgs/rpms/tennix/devel/tennix.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tennix.spec 25 Feb 2009 19:53:05 -0000 1.2 +++ tennix.spec 27 Jul 2009 05:46:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: tennix Version: 0.6.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A simple tennis game Group: Amusements/Games @@ -73,6 +73,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:46:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:46:32 +0000 (UTC) Subject: rpms/tenr-de-styles-pkg/devel tenr-de-styles-pkg.spec,1.4,1.5 Message-ID: <20090727054632.9E76811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tenr-de-styles-pkg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17539 Modified Files: tenr-de-styles-pkg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tenr-de-styles-pkg.spec =================================================================== RCS file: /cvs/pkgs/rpms/tenr-de-styles-pkg/devel/tenr-de-styles-pkg.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tenr-de-styles-pkg.spec 25 Feb 2009 19:54:02 -0000 1.4 +++ tenr-de-styles-pkg.spec 27 Jul 2009 05:46:32 -0000 1.5 @@ -1,6 +1,6 @@ Name: tenr-de-styles-pkg Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of styles for fluxbox Group: Amusements/Graphics @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:46:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:46:45 +0000 (UTC) Subject: rpms/terminator/devel terminator.spec,1.5,1.6 Message-ID: <20090727054645.07D1411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/terminator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17690 Modified Files: terminator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: terminator.spec =================================================================== RCS file: /cvs/pkgs/rpms/terminator/devel/terminator.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- terminator.spec 7 Jul 2009 16:21:29 -0000 1.5 +++ terminator.spec 27 Jul 2009 05:46:44 -0000 1.6 @@ -2,7 +2,7 @@ Name: terminator Version: 0.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Store and run multiple GNOME terminals in one window Group: User Interface/Desktops @@ -67,6 +67,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Ian Weller - 0.13-2 - BuildRequires: intltool From jkeating at fedoraproject.org Mon Jul 27 05:46:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:46:58 +0000 (UTC) Subject: rpms/terminus-fonts/devel terminus-fonts.spec,1.3,1.4 Message-ID: <20090727054658.ACCC011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/terminus-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17820 Modified Files: terminus-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: terminus-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/terminus-fonts/devel/terminus-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- terminus-fonts.spec 24 Mar 2009 23:01:34 -0000 1.3 +++ terminus-fonts.spec 27 Jul 2009 05:46:58 -0000 1.4 @@ -30,7 +30,7 @@ The font is available for the Linux cons Name: %{fontname}-fonts Version: 4.28 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Clean fixed width font Group: User Interface/X @@ -330,6 +330,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.28-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Hans Ulrich Niedermann - 4.28-8 - Rebuild for Fedora 11 to pick up font autodeps (#491973) From jkeating at fedoraproject.org Mon Jul 27 05:47:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:47:11 +0000 (UTC) Subject: rpms/termit/devel termit.spec,1.2,1.3 Message-ID: <20090727054711.4EFF411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/termit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17971 Modified Files: termit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: termit.spec =================================================================== RCS file: /cvs/pkgs/rpms/termit/devel/termit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- termit.spec 9 Jun 2009 21:10:07 -0000 1.2 +++ termit.spec 27 Jul 2009 05:47:11 -0000 1.3 @@ -1,6 +1,6 @@ Name: termit Version: 2.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple terminal emulator based on vte library Group: User Interface/X @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Christoph Wickert - 2.2.0-2 - Rebuilt for libvte SONAME bump From jkeating at fedoraproject.org Mon Jul 27 05:47:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:47:24 +0000 (UTC) Subject: rpms/teseq/devel teseq.spec,1.2,1.3 Message-ID: <20090727054724.EF03D11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/teseq/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18115 Modified Files: teseq.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: teseq.spec =================================================================== RCS file: /cvs/pkgs/rpms/teseq/devel/teseq.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- teseq.spec 25 Feb 2009 19:56:56 -0000 1.2 +++ teseq.spec 27 Jul 2009 05:47:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: teseq Version: 1.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An utility for rendering terminal typescripts human-readable Group: Development/Tools @@ -60,6 +60,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:47:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:47:39 +0000 (UTC) Subject: rpms/tesseract/devel tesseract.spec,1.7,1.8 Message-ID: <20090727054739.BA84911C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tesseract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18255 Modified Files: tesseract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tesseract.spec =================================================================== RCS file: /cvs/pkgs/rpms/tesseract/devel/tesseract.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tesseract.spec 4 Mar 2009 17:13:30 -0000 1.7 +++ tesseract.spec 27 Jul 2009 05:47:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: tesseract Version: 2.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Raw OCR Engine Group: Applications/File @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 04 2009 Caol?n McNamara - 2.03-3 - include stdio.h for snprintf From jkeating at fedoraproject.org Mon Jul 27 05:47:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:47:53 +0000 (UTC) Subject: rpms/tesseract-langpack/devel tesseract-langpack.spec,1.2,1.3 Message-ID: <20090727054753.6AF6A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tesseract-langpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18396 Modified Files: tesseract-langpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tesseract-langpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/tesseract-langpack/devel/tesseract-langpack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tesseract-langpack.spec 25 Feb 2009 19:59:05 -0000 1.2 +++ tesseract-langpack.spec 27 Jul 2009 05:47:53 -0000 1.3 @@ -1,7 +1,7 @@ %define upstreamname tesseract Name: %{upstreamname}-langpack Version: 2.00 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Langpacks for tesseract Group: Applications/File @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{upstreamname}/tessdata/deu* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.00-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.00-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:48:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:48:07 +0000 (UTC) Subject: rpms/testdisk/devel testdisk.spec,1.28,1.29 Message-ID: <20090727054807.5633A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/testdisk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18547 Modified Files: testdisk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: testdisk.spec =================================================================== RCS file: /cvs/pkgs/rpms/testdisk/devel/testdisk.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- testdisk.spec 15 Jul 2009 11:26:55 -0000 1.28 +++ testdisk.spec 27 Jul 2009 05:48:07 -0000 1.29 @@ -4,7 +4,7 @@ Summary(fr.UTF8): Outil pour v?rifier e Summary(ru_RU.UTF8): ????????? ??? ???????? ? ?????????????? ???????? ????? Name: testdisk Version: 6.11 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/System Source0: http://www.cgsecurity.org/testdisk-%{version}.tar.bz2 @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Christophe Grenier 6.11-4 - Add "BuildRequires: libuuid-devel" From jkeating at fedoraproject.org Mon Jul 27 05:48:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:48:21 +0000 (UTC) Subject: rpms/testoob/devel testoob.spec,1.5,1.6 Message-ID: <20090727054821.C4EEE11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/testoob/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18658 Modified Files: testoob.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: testoob.spec =================================================================== RCS file: /cvs/pkgs/rpms/testoob/devel/testoob.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- testoob.spec 25 Feb 2009 20:01:04 -0000 1.5 +++ testoob.spec 27 Jul 2009 05:48:21 -0000 1.6 @@ -2,7 +2,7 @@ Name: testoob Version: 1.13 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Advanced unit testing framework for Python Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.13-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.13-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:48:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:48:37 +0000 (UTC) Subject: rpms/tetex-IEEEtran/devel tetex-IEEEtran.spec,1.7,1.8 Message-ID: <20090727054837.5B37611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-IEEEtran/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18810 Modified Files: tetex-IEEEtran.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-IEEEtran.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-IEEEtran/devel/tetex-IEEEtran.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tetex-IEEEtran.spec 25 Feb 2009 20:02:00 -0000 1.7 +++ tetex-IEEEtran.spec 27 Jul 2009 05:48:37 -0000 1.8 @@ -9,7 +9,7 @@ Name: tetex-%{texpkg} Version: 1.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Official LaTeX class for IEEE transactions journals and conferences Group: Applications/Publishing @@ -86,6 +86,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:48:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:48:49 +0000 (UTC) Subject: rpms/tetex-bytefield/devel tetex-bytefield.spec,1.8,1.9 Message-ID: <20090727054849.E78C011C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-bytefield/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18957 Modified Files: tetex-bytefield.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-bytefield.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-bytefield/devel/tetex-bytefield.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tetex-bytefield.spec 25 Feb 2009 20:02:57 -0000 1.8 +++ tetex-bytefield.spec 27 Jul 2009 05:48:49 -0000 1.9 @@ -6,7 +6,7 @@ Name: tetex-%{texpkg} Version: 1.2a -Release: 5%{?dist} +Release: 6%{?dist} Summary: Create illustrations for network protocol specifications Group: Applications/Publishing @@ -62,6 +62,9 @@ texhash >/dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:49:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:49:08 +0000 (UTC) Subject: rpms/tetex-dvipost/devel tetex-dvipost.spec,1.7,1.8 Message-ID: <20090727054908.2874811C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-dvipost/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19106 Modified Files: tetex-dvipost.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-dvipost.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-dvipost/devel/tetex-dvipost.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tetex-dvipost.spec 25 Feb 2009 20:03:52 -0000 1.7 +++ tetex-dvipost.spec 27 Jul 2009 05:49:07 -0000 1.8 @@ -3,7 +3,7 @@ Name: tetex-%{real_name} Version: 1.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: LaTeX post filter command to support change bars and overstrike mode Group: Applications/Publishing @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:49:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:49:32 +0000 (UTC) Subject: rpms/tetex-elsevier/devel tetex-elsevier.spec,1.7,1.8 Message-ID: <20090727054932.C53F411C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-elsevier/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19338 Modified Files: tetex-elsevier.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-elsevier.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-elsevier/devel/tetex-elsevier.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tetex-elsevier.spec 22 Jun 2009 09:55:53 -0000 1.7 +++ tetex-elsevier.spec 27 Jul 2009 05:49:32 -0000 1.8 @@ -4,7 +4,7 @@ Name: tetex-elsevier # upstream is unversionned, the version is constructed with the latest # file timestamp, in the format YYYYMMDD Version: 0.1.20081007 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Elsevier LaTeX style files and documentation Group: Applications/Publishing @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.20081007-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Mary Ellen Foster - 0.1.20081024-2 - Better location for the elsarticle files From jkeating at fedoraproject.org Mon Jul 27 05:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:49:51 +0000 (UTC) Subject: rpms/tetex-perltex/devel tetex-perltex.spec,1.6,1.7 Message-ID: <20090727054951.0DD1F11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-perltex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19575 Modified Files: tetex-perltex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-perltex.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-perltex/devel/tetex-perltex.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tetex-perltex.spec 25 Feb 2009 20:06:37 -0000 1.6 +++ tetex-perltex.spec 27 Jul 2009 05:49:50 -0000 1.7 @@ -6,7 +6,7 @@ Name: tetex-%{texpkg} Version: 1.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Define LaTeX macros in terms of Perl code Group: Applications/Publishing @@ -66,6 +66,9 @@ texhash >/dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:50:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:50:02 +0000 (UTC) Subject: rpms/tetex-prosper/devel tetex-prosper.spec,1.5,1.6 Message-ID: <20090727055002.D7F0411C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-prosper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19696 Modified Files: tetex-prosper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-prosper.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-prosper/devel/tetex-prosper.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tetex-prosper.spec 25 Feb 2009 20:07:36 -0000 1.5 +++ tetex-prosper.spec 27 Jul 2009 05:50:02 -0000 1.6 @@ -10,7 +10,7 @@ Name: tetex-%{texpkg} Version: 1.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: LaTeX class for writing transparencies Group: Applications/Publishing @@ -81,6 +81,9 @@ texhash > /dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:50:20 +0000 (UTC) Subject: rpms/tetex-tex4ht/devel tetex-tex4ht.spec,1.22,1.23 Message-ID: <20090727055020.3A4E411C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetex-tex4ht/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19887 Modified Files: tetex-tex4ht.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetex-tex4ht.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetex-tex4ht/devel/tetex-tex4ht.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- tetex-tex4ht.spec 25 Feb 2009 20:08:36 -0000 1.22 +++ tetex-tex4ht.spec 27 Jul 2009 05:50:19 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Translates TeX and LaTeX into HTML or XML+MathML Name: tetex-tex4ht Version: 1.0.2008_09_16_1413 -Release: 2%{?dist} +Release: 3%{?dist} License: LPPL Group: Applications/Publishing URL: http://www.cse.ohio-state.edu/~gurari/TeX4ht/ @@ -193,6 +193,9 @@ texhash > /dev/null 2>&1 || : texhash > /dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2008_09_16_1413-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2008_09_16_1413-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:50:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:50:37 +0000 (UTC) Subject: rpms/tetrinetx/devel tetrinetx.spec,1.5,1.6 Message-ID: <20090727055037.2103811C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tetrinetx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20051 Modified Files: tetrinetx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tetrinetx.spec =================================================================== RCS file: /cvs/pkgs/rpms/tetrinetx/devel/tetrinetx.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tetrinetx.spec 25 Feb 2009 20:09:31 -0000 1.5 +++ tetrinetx.spec 27 Jul 2009 05:50:36 -0000 1.6 @@ -1,6 +1,6 @@ Name: tetrinetx Version: 1.13.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: The GNU TetriNET server Group: Amusements/Games @@ -123,6 +123,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.13.16-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.13.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:50:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:50:50 +0000 (UTC) Subject: rpms/tex-fonts-hebrew/devel tex-fonts-hebrew.spec,1.6,1.7 Message-ID: <20090727055050.3EF4D11C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tex-fonts-hebrew/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20212 Modified Files: tex-fonts-hebrew.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tex-fonts-hebrew.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-fonts-hebrew/devel/tex-fonts-hebrew.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tex-fonts-hebrew.spec 24 Jul 2009 22:28:11 -0000 1.6 +++ tex-fonts-hebrew.spec 27 Jul 2009 05:50:50 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Culmus Hebrew fonts support for LaTeX Name: tex-fonts-hebrew Version: 0.1 -Release: 13%{?dist} +Release: 14%{?dist} URL: http://culmus.sf.net # There is no real upstream for this package. It was based on Yotam Medini's # http://www.medini.org/hebrew/culmus2ltx-2003-02-28.tar.gz but is now @@ -88,6 +88,9 @@ fi /usr/bin/texhash %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Dan Kenigsberg - 0.1-13 - should obsolete tetex-fonts-hebrew-0.1-11. Bug #485639 From jkeating at fedoraproject.org Mon Jul 27 05:51:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:51:12 +0000 (UTC) Subject: rpms/tex-musixtex/devel tex-musixtex.spec,1.5,1.6 Message-ID: <20090727055112.3F0E511C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tex-musixtex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20428 Modified Files: tex-musixtex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tex-musixtex.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-musixtex/devel/tex-musixtex.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tex-musixtex.spec 25 Feb 2009 20:11:23 -0000 1.5 +++ tex-musixtex.spec 27 Jul 2009 05:51:12 -0000 1.6 @@ -4,7 +4,7 @@ Name: tex-%{texname} Summary: Sophisticated music typesetting Group: Applications/Publishing Version: 0.114 -Release: 6.rev4%{?dist} +Release: 7.rev4%{?dist} URL: http://www.mab.jpn.org/musictex/index_en.html License: GPLv2+ Source0: http://tug.ctan.org/get/macros/musixtex/taupin/%{texname}-t113.zip @@ -120,6 +120,9 @@ fi %MUSIXDOCDIR %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.114-7.rev4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.114-6.rev4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:51:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:51:25 +0000 (UTC) Subject: rpms/tex-simplecv/devel tex-simplecv.spec,1.3,1.4 Message-ID: <20090727055125.27A0B11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tex-simplecv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20573 Modified Files: tex-simplecv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tex-simplecv.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-simplecv/devel/tex-simplecv.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tex-simplecv.spec 25 Feb 2009 20:12:20 -0000 1.3 +++ tex-simplecv.spec 27 Jul 2009 05:51:24 -0000 1.4 @@ -3,7 +3,7 @@ Name: tex-%{real_name} Version: 1.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A simple latex class for writing curricula vitae Group: Applications/Publishing @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_texmf}/doc/tex/latex/%{real_name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:51:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:51:39 +0000 (UTC) Subject: rpms/tex-zfuzz/devel tex-zfuzz.spec,1.3,1.4 Message-ID: <20090727055139.C8C4711C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tex-zfuzz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20726 Modified Files: tex-zfuzz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tex-zfuzz.spec =================================================================== RCS file: /cvs/pkgs/rpms/tex-zfuzz/devel/tex-zfuzz.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tex-zfuzz.spec 25 Feb 2009 20:13:17 -0000 1.3 +++ tex-zfuzz.spec 27 Jul 2009 05:51:39 -0000 1.4 @@ -2,7 +2,7 @@ Name: tex-zfuzz Version: 0 -Release: 0.20070912.3%{?dist} +Release: 0.20070913.3%{?dist} Summary: Type-checker and LaTeX style for Z spec language Group: Applications/Engineering License: BSD @@ -160,6 +160,9 @@ mktexlsr >/dev/null 2>&1 || : mktexlsr >/dev/null 2>&1 || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.20070913.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.20070912.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:51:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:51:51 +0000 (UTC) Subject: rpms/texi2html/devel texi2html.spec,1.20,1.21 Message-ID: <20090727055151.E2A2A11C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texi2html/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20865 Modified Files: texi2html.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texi2html.spec =================================================================== RCS file: /cvs/pkgs/rpms/texi2html/devel/texi2html.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- texi2html.spec 25 Feb 2009 20:14:09 -0000 1.20 +++ texi2html.spec 27 Jul 2009 05:51:51 -0000 1.21 @@ -1,6 +1,6 @@ Name: texi2html Version: 1.82 -Release: 3%{?dist} +Release: 4%{?dist} # GPLv2+ is for the code # OFSFDL (Old FSF Documentation License) for the documentation # CC-BY-SA or GPLv2 for the images @@ -74,6 +74,9 @@ fi %dir %{_sysconfdir}/texinfo %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.82-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.82-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:52:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:52:03 +0000 (UTC) Subject: rpms/texinfo/devel texinfo.spec,1.59,1.60 Message-ID: <20090727055203.DE01611C0094@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20998 Modified Files: texinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/texinfo/devel/texinfo.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- texinfo.spec 25 Feb 2009 20:15:04 -0000 1.59 +++ texinfo.spec 27 Jul 2009 05:52:03 -0000 1.60 @@ -3,7 +3,7 @@ Summary: Tools needed to create Texinfo format documentation files Name: texinfo Version: 4.13a -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv3+ Group: Applications/Publishing Url: http://www.gnu.org/software/texinfo/ @@ -144,6 +144,9 @@ fi %{_mandir}/man1/pdftexi2dvi.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.13a-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.13a-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:52:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:52:18 +0000 (UTC) Subject: rpms/texlive/devel texlive.spec,1.53,1.54 Message-ID: <20090727055218.A63BB11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texlive/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21158 Modified Files: texlive.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texlive.spec =================================================================== RCS file: /cvs/pkgs/rpms/texlive/devel/texlive.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- texlive.spec 20 May 2009 16:59:46 -0000 1.53 +++ texlive.spec 27 Jul 2009 05:52:18 -0000 1.54 @@ -21,7 +21,7 @@ Name: texlive Version: %{texlive_ver} -Release: 43%{?dist} +Release: 44%{?dist} Summary: Binaries for the TeX formatting system Group: Applications/Publishing @@ -1236,6 +1236,9 @@ fi %{_mandir}/man1/texutil.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2007-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Jindrich Novy - 2007-43 - fix pdftoepdf and rebuild because of poppler soname bump (#501651) From jkeating at fedoraproject.org Mon Jul 27 05:52:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:52:35 +0000 (UTC) Subject: rpms/texlive-texmf/devel texlive-texmf.spec,1.32,1.33 Message-ID: <20090727055235.99BDA11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texlive-texmf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21320 Modified Files: texlive-texmf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texlive-texmf.spec =================================================================== RCS file: /cvs/pkgs/rpms/texlive-texmf/devel/texlive-texmf.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- texlive-texmf.spec 25 Feb 2009 20:17:07 -0000 1.32 +++ texlive-texmf.spec 27 Jul 2009 05:52:35 -0000 1.33 @@ -11,7 +11,7 @@ Name: texlive-texmf Version: 2007 -Release: 28%{?dist} +Release: 29%{?dist} Summary: Architecture independent parts of the TeX formatting system Group: Applications/Publishing @@ -823,6 +823,9 @@ fi %doc %{_texmf_main}/doc/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2007-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2007-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:52:47 +0000 (UTC) Subject: rpms/texlive-texmf-errata/devel texlive-texmf-errata.spec,1.8,1.9 Message-ID: <20090727055247.EB3E411C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texlive-texmf-errata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21465 Modified Files: texlive-texmf-errata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texlive-texmf-errata.spec =================================================================== RCS file: /cvs/pkgs/rpms/texlive-texmf-errata/devel/texlive-texmf-errata.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- texlive-texmf-errata.spec 25 Feb 2009 20:18:04 -0000 1.8 +++ texlive-texmf-errata.spec 27 Jul 2009 05:52:47 -0000 1.9 @@ -3,7 +3,7 @@ Name: texlive-texmf-errata Version: 2007 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Errata for texlive-texmf Group: Applications/Publishing License: Artistic 2.0 and GPLv2 and GPLv2+ and LGPLv2+ and LPPL and MIT and Public Domain and UCD and Utopia @@ -194,6 +194,9 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2007-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2007-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:53:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:53:00 +0000 (UTC) Subject: rpms/texmaker/devel texmaker.spec,1.22,1.23 Message-ID: <20090727055300.27BAF11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/texmaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21582 Modified Files: texmaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: texmaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/texmaker/devel/texmaker.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- texmaker.spec 17 Jul 2009 05:19:17 -0000 1.22 +++ texmaker.spec 27 Jul 2009 05:53:00 -0000 1.23 @@ -1,7 +1,7 @@ Summary: LaTeX editor Name: texmaker Version: 1.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPLv2+ Group: Applications/Publishing @@ -84,6 +84,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %exclude %{_datadir}/texmaker/*.aff %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Deji Akingunola - 1.9.2-1 - New Release From jkeating at fedoraproject.org Mon Jul 27 05:53:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:53:11 +0000 (UTC) Subject: rpms/textflow/devel textflow.spec,1.7,1.8 Message-ID: <20090727055311.D886A11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/textflow/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21738 Modified Files: textflow.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: textflow.spec =================================================================== RCS file: /cvs/pkgs/rpms/textflow/devel/textflow.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- textflow.spec 25 Feb 2009 20:19:51 -0000 1.7 +++ textflow.spec 27 Jul 2009 05:53:11 -0000 1.8 @@ -2,7 +2,7 @@ Name: textflow Version: 0.2.3.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Text editor directed toward programmers Group: Applications/Editors @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.3.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:53:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:53:23 +0000 (UTC) Subject: rpms/tftp/devel tftp.spec,1.49,1.50 Message-ID: <20090727055323.6A57E11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tftp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21846 Modified Files: tftp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tftp.spec =================================================================== RCS file: /cvs/pkgs/rpms/tftp/devel/tftp.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- tftp.spec 25 Feb 2009 20:21:02 -0000 1.49 +++ tftp.spec 27 Jul 2009 05:53:22 -0000 1.50 @@ -1,7 +1,7 @@ Summary: The client for the Trivial File Transfer Protocol (TFTP) Name: tftp Version: 0.49 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Applications/Internet Source0: http://www.kernel.org/pub/software/network/tftp/tftp-hpa-%{version}.tar.bz2 @@ -88,6 +88,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.49-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.49-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:53:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:53:48 +0000 (UTC) Subject: rpms/thebridge/devel thebridge.spec,1.2,1.3 Message-ID: <20090727055348.07A3011C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thebridge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22121 Modified Files: thebridge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thebridge.spec =================================================================== RCS file: /cvs/pkgs/rpms/thebridge/devel/thebridge.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- thebridge.spec 25 Feb 2009 20:22:56 -0000 1.2 +++ thebridge.spec 27 Jul 2009 05:53:47 -0000 1.3 @@ -1,6 +1,6 @@ Name: thebridge Version: 1.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: ILink/EchoLink compatible conference bridge Group: Applications/Internet @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.06-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:53:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:53:37 +0000 (UTC) Subject: rpms/thai-scalable-fonts/devel thai-scalable-fonts.spec,1.4,1.5 Message-ID: <20090727055337.341F411C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thai-scalable-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21991 Modified Files: thai-scalable-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thai-scalable-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/thai-scalable-fonts/devel/thai-scalable-fonts.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- thai-scalable-fonts.spec 22 Jun 2009 05:11:44 -0000 1.4 +++ thai-scalable-fonts.spec 27 Jul 2009 05:53:36 -0000 1.5 @@ -8,7 +8,7 @@ Name: %{fontname}-fonts Version: 0.4.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Thai TrueType fonts Group: User Interface/X License: GPLv2+ @@ -275,6 +275,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Jens Petersen - 0.4.12-1 - update to 0.4.12 (reported by Manatsawin Hanmongkolchai in #507172) From jkeating at fedoraproject.org Mon Jul 27 05:54:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:54:00 +0000 (UTC) Subject: rpms/themes-backgrounds-gnome/devel themes-backgrounds-gnome.spec, 1.17, 1.18 Message-ID: <20090727055400.5927911C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/themes-backgrounds-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22261 Modified Files: themes-backgrounds-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: themes-backgrounds-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/themes-backgrounds-gnome/devel/themes-backgrounds-gnome.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- themes-backgrounds-gnome.spec 25 Feb 2009 20:23:55 -0000 1.17 +++ themes-backgrounds-gnome.spec 27 Jul 2009 05:54:00 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Assorted Backgrounds from art.gnome.org Name: themes-backgrounds-gnome Version: 0.5.1 -Release: 2%{?dist} +Release: 3%{?dist} # See LICENSING.txt for details and attribution License: GPL+ and LGPL+ and CC-BY and CC-BY-SA and CC-BY-ND and Public Domain Group: User Interface/Desktops @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gnome-background-properties/themes-backgrounds-gnome.xml %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:54:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:54:12 +0000 (UTC) Subject: rpms/themonospot/devel themonospot.spec,1.6,1.7 Message-ID: <20090727055412.193FE11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/themonospot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22441 Modified Files: themonospot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: themonospot.spec =================================================================== RCS file: /cvs/pkgs/rpms/themonospot/devel/themonospot.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- themonospot.spec 25 Jun 2009 22:56:03 -0000 1.6 +++ themonospot.spec 27 Jul 2009 05:54:11 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Avi and Mkv parser/editor and content descriptor Name: themonospot Version: 0.7.3.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Group: Applications/Multimedia Source: http://www.integrazioneweb.com/themonospot/packages/%{name}-%{version}.tar.gz @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 26 2009 Armando Basile 0.7.3.1-1 - bug fixed: issue n. 13 - wrong language setting - bug fixed: issue n. 10 - added auto-report From jkeating at fedoraproject.org Mon Jul 27 05:54:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:54:23 +0000 (UTC) Subject: rpms/thewidgetfactory/devel thewidgetfactory.spec,1.10,1.11 Message-ID: <20090727055423.E870311C0427@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thewidgetfactory/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22574 Modified Files: thewidgetfactory.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thewidgetfactory.spec =================================================================== RCS file: /cvs/pkgs/rpms/thewidgetfactory/devel/thewidgetfactory.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- thewidgetfactory.spec 25 Feb 2009 20:25:46 -0000 1.10 +++ thewidgetfactory.spec 27 Jul 2009 05:54:23 -0000 1.11 @@ -1,6 +1,6 @@ Name: thewidgetfactory Version: 0.2.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A tool for previewing GTK widgets Group: Development/Tools @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:54:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:54:36 +0000 (UTC) Subject: rpms/thibault-fonts/devel thibault-fonts.spec,1.10,1.11 Message-ID: <20090727055436.5336C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thibault-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22724 Modified Files: thibault-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thibault-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/thibault-fonts/devel/thibault-fonts.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- thibault-fonts.spec 15 Mar 2009 20:24:31 -0000 1.10 +++ thibault-fonts.spec 27 Jul 2009 05:54:35 -0000 1.11 @@ -11,7 +11,7 @@ and Rockets. Name: %{fontname}-fonts Version: 0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Thibault.org font collection Group: User Interface/X @@ -183,6 +183,9 @@ rm -fr %{buildroot} %doc staypuft/COPYING.LIB staypuft/README.txt %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Nicolas Mailhot - 0.1-10 ? Make sure F11 font packages have been built with F11 fontforge From jkeating at fedoraproject.org Mon Jul 27 05:54:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:54:47 +0000 (UTC) Subject: rpms/thinkfinger/devel thinkfinger.spec,1.11,1.12 Message-ID: <20090727055447.E1B4A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thinkfinger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22868 Modified Files: thinkfinger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thinkfinger.spec =================================================================== RCS file: /cvs/pkgs/rpms/thinkfinger/devel/thinkfinger.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- thinkfinger.spec 25 Feb 2009 20:27:47 -0000 1.11 +++ thinkfinger.spec 27 Jul 2009 05:54:47 -0000 1.12 @@ -1,6 +1,6 @@ Name: thinkfinger Version: 0.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A driver for the UPEK/SGS Thomson Microelectronics fingerprint reader Group: System Environment/Base License: GPLv2+ @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:55:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:55:01 +0000 (UTC) Subject: rpms/thttpd/devel thttpd.spec,1.23,1.24 Message-ID: <20090727055501.AA7EA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thttpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22994 Modified Files: thttpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thttpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/thttpd/devel/thttpd.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- thttpd.spec 12 Apr 2009 14:49:47 -0000 1.23 +++ thttpd.spec 27 Jul 2009 05:55:01 -0000 1.24 @@ -4,7 +4,7 @@ Summary: Tiny, turbo, throttleable lightweight http server Name: thttpd Version: 2.25b -Release: 22%{?dist} +Release: 23%{?dist} License: BSD Group: System Environment/Daemons URL: http://www.acme.com/software/thttpd/ @@ -166,6 +166,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.25b-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 2.25b-22 - Update init script all the way. From jkeating at fedoraproject.org Mon Jul 27 05:55:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:55:14 +0000 (UTC) Subject: rpms/thunar-archive-plugin/devel thunar-archive-plugin.spec, 1.9, 1.10 Message-ID: <20090727055514.0657C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thunar-archive-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23139 Modified Files: thunar-archive-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thunar-archive-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunar-archive-plugin/devel/thunar-archive-plugin.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- thunar-archive-plugin.spec 25 Feb 2009 20:29:47 -0000 1.9 +++ thunar-archive-plugin.spec 27 Jul 2009 05:55:13 -0000 1.10 @@ -2,7 +2,7 @@ Name: thunar-archive-plugin Version: 0.2.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Archive plugin for the Thunar file manager Group: User Interface/Desktops @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:55:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:55:25 +0000 (UTC) Subject: rpms/thunar-media-tags-plugin/devel thunar-media-tags-plugin.spec, 1.8, 1.9 Message-ID: <20090727055525.E35EE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thunar-media-tags-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23265 Modified Files: thunar-media-tags-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thunar-media-tags-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunar-media-tags-plugin/devel/thunar-media-tags-plugin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- thunar-media-tags-plugin.spec 25 Feb 2009 20:30:48 -0000 1.8 +++ thunar-media-tags-plugin.spec 27 Jul 2009 05:55:25 -0000 1.9 @@ -2,7 +2,7 @@ Name: thunar-media-tags-plugin Version: 0.1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Media Tags plugin for the Thunar file manager Group: User Interface/Desktops @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:55:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:55:38 +0000 (UTC) Subject: rpms/thunar-volman/devel thunar-volman.spec,1.7,1.8 Message-ID: <20090727055538.C466A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thunar-volman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23436 Modified Files: thunar-volman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thunar-volman.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunar-volman/devel/thunar-volman.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- thunar-volman.spec 1 Mar 2009 01:40:02 -0000 1.7 +++ thunar-volman.spec 27 Jul 2009 05:55:38 -0000 1.8 @@ -2,7 +2,7 @@ Name: thunar-volman Version: 0.3.80 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatic management of removable drives and media for the Thunar file manager Group: User Interface/Desktops @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.80-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Christoph Wickert - 0.3.80-1 - Update to 0.3.80 - Add Category X-XfceSettingsDialog From jkeating at fedoraproject.org Mon Jul 27 05:56:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:56:25 +0000 (UTC) Subject: rpms/tidy/devel tidy.spec,1.25,1.26 Message-ID: <20090727055625.6537A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tidy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23891 Modified Files: tidy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tidy.spec =================================================================== RCS file: /cvs/pkgs/rpms/tidy/devel/tidy.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- tidy.spec 25 Feb 2009 20:40:01 -0000 1.25 +++ tidy.spec 27 Jul 2009 05:56:24 -0000 1.26 @@ -6,7 +6,7 @@ Name: tidy Summary: Utility to clean up and pretty print HTML/XHTML/XML Version: 0.99.0 -Release: 18.%{snap}%{?dist} +Release: 19.%{snap}%{?dist} Group: Applications/Text License: W3C @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99.0-19.20070615 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.0-18.20070615 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:55:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:55:54 +0000 (UTC) Subject: rpms/thunderbird/devel thunderbird.spec,1.137,1.138 Message-ID: <20090727055554.2B22F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23570 Modified Files: thunderbird.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.137 retrieving revision 1.138 diff -u -p -r1.137 -r1.138 --- thunderbird.spec 24 Jul 2009 10:33:46 -0000 1.137 +++ thunderbird.spec 27 Jul 2009 05:55:53 -0000 1.138 @@ -11,7 +11,7 @@ Summary: Mozilla Thunderbird mail/newsgroup client Name: thunderbird Version: 3.0 -Release: 2.5.b3%{?dist} +Release: 3.5.b3%{?dist} URL: http://www.mozilla.org/projects/thunderbird/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -294,6 +294,9 @@ fi #=============================================================================== %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0-3.5.b3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Jan Horak - 3.0-2.5.beta3 - Use system hunspell From jkeating at fedoraproject.org Mon Jul 27 05:56:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:56:10 +0000 (UTC) Subject: rpms/tibetan-machine-uni-fonts/devel tibetan-machine-uni-fonts.spec, 1.6, 1.7 Message-ID: <20090727055610.7ABED11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tibetan-machine-uni-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23719 Modified Files: tibetan-machine-uni-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tibetan-machine-uni-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/tibetan-machine-uni-fonts/devel/tibetan-machine-uni-fonts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tibetan-machine-uni-fonts.spec 15 Mar 2009 13:34:43 -0000 1.6 +++ tibetan-machine-uni-fonts.spec 27 Jul 2009 05:56:10 -0000 1.7 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 1.901 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tibetan Machine Uni font for Tibetan, Dzongkha and Ladakhi Group: User Interface/X @@ -43,6 +43,9 @@ rm -fr %{buildroot} %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.901-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 15 2009 Marcin Garski 1.901-3 - Update to 1.901b - Update URL From jkeating at fedoraproject.org Mon Jul 27 05:56:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:56:37 +0000 (UTC) Subject: rpms/tig/devel tig.spec,1.17,1.18 Message-ID: <20090727055637.C7D7511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24048 Modified Files: tig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tig.spec =================================================================== RCS file: /cvs/pkgs/rpms/tig/devel/tig.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- tig.spec 15 Jul 2009 14:01:45 -0000 1.17 +++ tig.spec 27 Jul 2009 05:56:37 -0000 1.18 @@ -1,6 +1,6 @@ Name: tig Version: 0.14.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Text-mode interface for the git revision control system Group: Development/Tools @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Todd Zullinger - 0.14.1-2 - Temporarily disable asciidoc's safe mode until bug 506953 is fixed From jkeating at fedoraproject.org Mon Jul 27 05:57:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:57:11 +0000 (UTC) Subject: rpms/tiger/devel tiger.spec,1.7,1.8 Message-ID: <20090727055711.82C0F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tiger/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24314 Modified Files: tiger.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tiger.spec =================================================================== RCS file: /cvs/pkgs/rpms/tiger/devel/tiger.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tiger.spec 8 Mar 2009 15:23:30 -0000 1.7 +++ tiger.spec 27 Jul 2009 05:57:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: tiger Version: 3.2.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Security auditing on UNIX systems Group: Applications/System @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.2.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Caol?n McNamara 3.2.1-10 - defuzz patches to rebuild From jkeating at fedoraproject.org Mon Jul 27 05:57:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:57:25 +0000 (UTC) Subject: rpms/tigervnc/devel tigervnc.spec,1.14,1.15 Message-ID: <20090727055725.694F311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tigervnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24446 Modified Files: tigervnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tigervnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/tigervnc/devel/tigervnc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- tigervnc.spec 13 Jul 2009 10:44:35 -0000 1.14 +++ tigervnc.spec 27 Jul 2009 05:57:24 -0000 1.15 @@ -1,6 +1,6 @@ Name: tigervnc Version: 0.0.91 -Release: 0.13%{?dist}.1 +Release: 0.14%{?dist}.1 Summary: A TigerVNC remote display system Group: User Interface/Desktops @@ -244,6 +244,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.91-0.14.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Adam Tkac 0.0.91-0.13.1 - don't write warning when initscript is called with condrestart param (#508367) From jkeating at fedoraproject.org Mon Jul 27 05:57:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:57:40 +0000 (UTC) Subject: rpms/tilda/devel tilda.spec,1.5,1.6 Message-ID: <20090727055740.16C6511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tilda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24613 Modified Files: tilda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tilda.spec =================================================================== RCS file: /cvs/pkgs/rpms/tilda/devel/tilda.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tilda.spec 25 Feb 2009 20:43:44 -0000 1.5 +++ tilda.spec 27 Jul 2009 05:57:39 -0000 1.6 @@ -1,6 +1,6 @@ Name: tilda Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A quake like terminal for GNOME Group: Applications/System @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:57:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:57:51 +0000 (UTC) Subject: rpms/time/devel time.spec,1.25,1.26 Message-ID: <20090727055751.723A711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/time/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24742 Modified Files: time.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: time.spec =================================================================== RCS file: /cvs/pkgs/rpms/time/devel/time.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- time.spec 25 Feb 2009 20:44:35 -0000 1.25 +++ time.spec 27 Jul 2009 05:57:50 -0000 1.26 @@ -1,7 +1,7 @@ Summary: A GNU utility for monitoring a program's use of system resources Name: time Version: 1.7 -Release: 35%{?dist} +Release: 36%{?dist} License: GPLv2+ Group: Applications/System Url: http://www.gnu.org/software/time/ @@ -51,6 +51,9 @@ fi %{_infodir}/time.info* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:58:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:58:02 +0000 (UTC) Subject: rpms/timespan/devel timespan.spec,1.4,1.5 Message-ID: <20090727055802.3EEB111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/timespan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24862 Modified Files: timespan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: timespan.spec =================================================================== RCS file: /cvs/pkgs/rpms/timespan/devel/timespan.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- timespan.spec 2 May 2009 16:37:50 -0000 1.4 +++ timespan.spec 27 Jul 2009 05:58:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: timespan Version: 2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool that performs date-based time calculations Group: Applications/Productivity @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ville Skytt? - 2.1-3 - Patch to avoid overriding $CXXFLAGS set by user during build. - Disable autotools dependency tracking during build for cleaner build logs From jkeating at fedoraproject.org Mon Jul 27 05:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:58:13 +0000 (UTC) Subject: rpms/timidity++/devel timidity++.spec,1.33,1.34 Message-ID: <20090727055813.F150811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/timidity++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24990 Modified Files: timidity++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: timidity++.spec =================================================================== RCS file: /cvs/pkgs/rpms/timidity++/devel/timidity++.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- timidity++.spec 3 Jun 2009 12:51:14 -0000 1.33 +++ timidity++.spec 27 Jul 2009 05:58:13 -0000 1.34 @@ -1,7 +1,7 @@ Summary: A software wavetable MIDI synthesizer Name: timidity++ Version: 2.13.2 -Release: 19%{?dist} +Release: 20%{?dist} Group: Applications/Multimedia Source: http://downloads.sourceforge.net/timidity/TiMidity++-%{version}.tar.bz2 Source1: fedora-timidity.desktop @@ -121,6 +121,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.13.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 3 2009 Hans de Goede 2.13.2-19 - Don't crash when started in daemon mode (with -iAD) (#501051) From jkeating at fedoraproject.org Mon Jul 27 05:58:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:58:26 +0000 (UTC) Subject: rpms/tin/devel tin.spec,1.17,1.18 Message-ID: <20090727055826.2763211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25104 Modified Files: tin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tin.spec =================================================================== RCS file: /cvs/pkgs/rpms/tin/devel/tin.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- tin.spec 25 Feb 2009 20:47:10 -0000 1.17 +++ tin.spec 27 Jul 2009 05:58:25 -0000 1.18 @@ -1,6 +1,6 @@ Name: tin Version: 1.8.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Basic Internet news reader Group: Applications/Internet License: BSD @@ -62,6 +62,9 @@ Install tin if you need a basic news rea /usr/share/locale/*/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.8.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:58:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:58:37 +0000 (UTC) Subject: rpms/tinyca2/devel tinyca2.spec,1.4,1.5 Message-ID: <20090727055837.CE68111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyca2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25270 Modified Files: tinyca2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyca2.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyca2/devel/tinyca2.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tinyca2.spec 25 Feb 2009 20:48:01 -0000 1.4 +++ tinyca2.spec 27 Jul 2009 05:58:37 -0000 1.5 @@ -4,7 +4,7 @@ Name: tinyca2 Version: 0.7.5 -Release: %release_func 5 +Release: %release_func 6 Summary: Simple graphical userinterface to manage a small CA Group: Applications/Productivity @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:58:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:58:51 +0000 (UTC) Subject: rpms/tinyerp/devel tinyerp.spec,1.42,1.43 Message-ID: <20090727055851.41F6A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyerp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25436 Modified Files: tinyerp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyerp.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyerp/devel/tinyerp.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- tinyerp.spec 25 Feb 2009 20:48:55 -0000 1.42 +++ tinyerp.spec 27 Jul 2009 05:58:50 -0000 1.43 @@ -4,7 +4,7 @@ Name: tinyerp Version: 4.2.3.4 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Productivity Summary: Open Source ERP Client @@ -189,6 +189,9 @@ test "$1" != 0 || /usr/sbin/fedora-group %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.2.3.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.2.3.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:59:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:59:06 +0000 (UTC) Subject: rpms/tinyfugue/devel tinyfugue.spec,1.11,1.12 Message-ID: <20090727055906.EFEA611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyfugue/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25572 Modified Files: tinyfugue.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyfugue.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyfugue/devel/tinyfugue.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- tinyfugue.spec 25 Feb 2009 20:49:46 -0000 1.11 +++ tinyfugue.spec 27 Jul 2009 05:59:06 -0000 1.12 @@ -2,7 +2,7 @@ Name: tinyfugue Version: 5.0 -Release: 0.11.b8%{?dist} +Release: 0.12.b8%{?dist} Summary: A MU* client Group: Applications/Internet @@ -47,6 +47,9 @@ rm -rf %{buildroot} %{_mandir}/man1/tf.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.0-0.12.b8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.0-0.11.b8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:59:17 +0000 (UTC) Subject: rpms/tinyows/devel tinyows.spec,1.2,1.3 Message-ID: <20090727055917.B2C8111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyows/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25703 Modified Files: tinyows.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyows.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyows/devel/tinyows.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tinyows.spec 25 Feb 2009 20:50:35 -0000 1.2 +++ tinyows.spec 27 Jul 2009 05:59:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: tinyows Version: 0.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: WFS-T and FE implementation server Group: Applications/Publishing @@ -70,6 +70,9 @@ make %{?_smp_mflags} valgrind || true %{_datadir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:59:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:59:32 +0000 (UTC) Subject: rpms/tinyproxy/devel tinyproxy.spec,1.5,1.6 Message-ID: <20090727055932.7FA3011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25859 Modified Files: tinyproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyproxy/devel/tinyproxy.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tinyproxy.spec 25 Feb 2009 20:51:31 -0000 1.5 +++ tinyproxy.spec 27 Jul 2009 05:59:32 -0000 1.6 @@ -3,7 +3,7 @@ Name: tinyproxy Version: 1.6.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A small, efficient HTTP/SSL proxy daemon Group: System Environment/Daemons @@ -87,6 +87,9 @@ fi %config(noreplace) %{tinyproxy_confdir}/%{name}.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:59:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:59:45 +0000 (UTC) Subject: rpms/tinyxml/devel tinyxml.spec,1.3,1.4 Message-ID: <20090727055945.5F6C811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tinyxml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25996 Modified Files: tinyxml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tinyxml.spec =================================================================== RCS file: /cvs/pkgs/rpms/tinyxml/devel/tinyxml.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tinyxml.spec 25 Feb 2009 20:52:23 -0000 1.3 +++ tinyxml.spec 27 Jul 2009 05:59:45 -0000 1.4 @@ -2,7 +2,7 @@ Name: tinyxml Version: 2.5.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple, small, C++ XML parser Group: System Environment/Libraries License: zlib @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 05:59:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 05:59:57 +0000 (UTC) Subject: rpms/tiobench/devel tiobench.spec,1.7,1.8 Message-ID: <20090727055957.E31C611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tiobench/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26119 Modified Files: tiobench.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tiobench.spec =================================================================== RCS file: /cvs/pkgs/rpms/tiobench/devel/tiobench.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tiobench.spec 25 Feb 2009 20:53:12 -0000 1.7 +++ tiobench.spec 27 Jul 2009 05:59:57 -0000 1.8 @@ -1,6 +1,6 @@ Name: tiobench Version: 0.3.3 -Release: 8.1 +Release: 9.1 Summary: Threaded I/O benchmark Group: Applications/System @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.3-9.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.3-8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:00:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:00:11 +0000 (UTC) Subject: rpms/tiquit/devel tiquit.spec,1.6,1.7 Message-ID: <20090727060011.1B09711C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tiquit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26278 Modified Files: tiquit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tiquit.spec =================================================================== RCS file: /cvs/pkgs/rpms/tiquit/devel/tiquit.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tiquit.spec 25 Feb 2009 20:54:01 -0000 1.6 +++ tiquit.spec 27 Jul 2009 06:00:10 -0000 1.7 @@ -1,7 +1,7 @@ %define tiquitdir %{_datadir}/tiquit Name: tiquit Version: 2.5.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A PHP5-compatible help desk incident tracking/knowledgebase system Group: Applications/System @@ -49,6 +49,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/httpd/conf.d/tiquit.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:00:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:00:22 +0000 (UTC) Subject: rpms/tiresias-fonts/devel tiresias-fonts.spec,1.5,1.6 Message-ID: <20090727060022.75F7011C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tiresias-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26402 Modified Files: tiresias-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tiresias-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/tiresias-fonts/devel/tiresias-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tiresias-fonts.spec 25 Mar 2009 14:46:02 -0000 1.5 +++ tiresias-fonts.spec 27 Jul 2009 06:00:21 -0000 1.6 @@ -11,7 +11,7 @@ signs. Name: %{fontname}-fonts Summary: Low vision fonts Version: 1.0 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv3+ Group: User Interface/X Source0: http://www.tiresias.org/fonts/infofont.zip @@ -205,6 +205,9 @@ rm -rf %{buildroot} %dir %{_fontdir} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Tom "spot" Callaway - 1.0-6 - rebuild for font autoprovides From jkeating at fedoraproject.org Mon Jul 27 06:00:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:00:36 +0000 (UTC) Subject: rpms/tix/devel tix.spec,1.30,1.31 Message-ID: <20090727060036.143C811C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26546 Modified Files: tix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tix.spec =================================================================== RCS file: /cvs/pkgs/rpms/tix/devel/tix.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- tix.spec 25 Feb 2009 20:55:43 -0000 1.30 +++ tix.spec 27 Jul 2009 06:00:35 -0000 1.31 @@ -8,7 +8,7 @@ Summary: A set of extension widgets for Name: tix Epoch: 1 Version: %{tixmajor}.3 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Development/Languages URL: http://tix.sourceforge.net/ @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{tcl_sitelib}/Tix%{tixmajor} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:8.4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:8.4.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:00:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:00:53 +0000 (UTC) Subject: rpms/tkcon/devel tkcon.spec,1.8,1.9 Message-ID: <20090727060053.2648E11C0423@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tkcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26702 Modified Files: tkcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tkcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/tkcon/devel/tkcon.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tkcon.spec 25 Feb 2009 20:57:30 -0000 1.8 +++ tkcon.spec 27 Jul 2009 06:00:52 -0000 1.9 @@ -4,7 +4,7 @@ Name: tkcon Version: 2.5 -Release: 2.%{cvsdate}cvs%{?dist} +Release: 3.%{cvsdate}cvs%{?dist} Summary: Tcl GUI console # cvs -z3 -d:pserver:anonymous at tkcon.cvs.sourceforge.net:/cvsroot/tkcon export -D 2008-06-10 -d tkcon-20080610cvs tkcon @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %doc license.terms README.txt index.html docs %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5-3.20080610cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-2.20080610cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:01:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:01:08 +0000 (UTC) Subject: rpms/tkcvs/devel tkcvs.spec,1.25,1.26 Message-ID: <20090727060108.9213B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tkcvs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26869 Modified Files: tkcvs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tkcvs.spec =================================================================== RCS file: /cvs/pkgs/rpms/tkcvs/devel/tkcvs.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- tkcvs.spec 25 Feb 2009 20:58:25 -0000 1.25 +++ tkcvs.spec 27 Jul 2009 06:01:08 -0000 1.26 @@ -1,6 +1,6 @@ Name: tkcvs Version: 8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: TkCVS and TkDiff @@ -71,6 +71,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:01:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:01:21 +0000 (UTC) Subject: rpms/tkdnd/devel tkdnd.spec,1.8,1.9 Message-ID: <20090727060121.DEF3911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tkdnd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26998 Modified Files: tkdnd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tkdnd.spec =================================================================== RCS file: /cvs/pkgs/rpms/tkdnd/devel/tkdnd.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tkdnd.spec 25 Feb 2009 20:59:14 -0000 1.8 +++ tkdnd.spec 27 Jul 2009 06:01:21 -0000 1.9 @@ -3,7 +3,7 @@ Name: tkdnd Version: 1.0a2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Tk extension that adds native drag & drop capabilities Group: Development/Libraries @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0a2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0a2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:01:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:01:33 +0000 (UTC) Subject: rpms/tkgate/devel tkgate.spec,1.1,1.2 Message-ID: <20090727060133.C9F4511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tkgate/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27146 Modified Files: tkgate.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tkgate.spec =================================================================== RCS file: /cvs/pkgs/rpms/tkgate/devel/tkgate.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tkgate.spec 7 Mar 2009 17:18:42 -0000 1.1 +++ tkgate.spec 27 Jul 2009 06:01:33 -0000 1.2 @@ -1,6 +1,6 @@ Name: tkgate Version: 2.0 -Release: 5.beta7%{?dist} +Release: 6.beta7%{?dist} Summary: An event driven digital circuit simulator Group: Applications/Engineering @@ -217,6 +217,9 @@ cp -p site-preferences %{buildroot}%{_da %exclude %{_datadir}/%{name}/locale/ja %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-6.beta7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Thibault North - 2.0-5.beta7 - Minor fixes required for the package From jkeating at fedoraproject.org Mon Jul 27 06:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:01:47 +0000 (UTC) Subject: rpms/tkimg/devel tkimg.spec,1.13,1.14 Message-ID: <20090727060147.DC93711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tkimg/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27299 Modified Files: tkimg.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tkimg.spec =================================================================== RCS file: /cvs/pkgs/rpms/tkimg/devel/tkimg.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- tkimg.spec 25 Feb 2009 21:00:05 -0000 1.13 +++ tkimg.spec 27 Jul 2009 06:01:47 -0000 1.14 @@ -5,7 +5,7 @@ Name: tkimg Version: 1.4 -Release: 0.4.%{svnversion}svn%{?dist} +Release: 0.5.%{svnversion}svn%{?dist} Summary: More Image Formats for Tk Group: Development/Libraries @@ -89,6 +89,9 @@ done %{tcl_sitearch}/Img1.4/*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-0.5.20081115svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-0.4.20081115svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:02:04 +0000 (UTC) Subject: rpms/tklib/devel tklib.spec,1.8,1.9 Message-ID: <20090727060204.0A95A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tklib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27453 Modified Files: tklib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tklib.spec =================================================================== RCS file: /cvs/pkgs/rpms/tklib/devel/tklib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tklib.spec 1 Mar 2009 05:50:05 -0000 1.8 +++ tklib.spec 27 Jul 2009 06:02:03 -0000 1.9 @@ -4,7 +4,7 @@ Summary: Collection of widgets and other packages for Tk Name: tklib Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} License: TCL Group: Development/Libraries Source: http://downloads.sourceforge.net/tcllib/tklib-0.5.tar.gz @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Wart 0.5-3 - Remove patch that was accepted upstream From jkeating at fedoraproject.org Mon Jul 27 06:02:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:02:18 +0000 (UTC) Subject: rpms/tktable/devel tktable.spec,1.21,1.22 Message-ID: <20090727060218.6AB5411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tktable/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27655 Modified Files: tktable.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tktable.spec =================================================================== RCS file: /cvs/pkgs/rpms/tktable/devel/tktable.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- tktable.spec 25 Feb 2009 21:01:47 -0000 1.21 +++ tktable.spec 27 Jul 2009 06:02:17 -0000 1.22 @@ -4,7 +4,7 @@ Summary: Table/matrix widget extension to Tcl/Tk Name: tktable Version: 2.9 -Release: 12%{?dist} +Release: 13%{?dist} License: TCL Group: Development/Libraries Source: http://download.sourceforge.net/tktable/Tktable2.9.tar.gz @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:02:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:02:32 +0000 (UTC) Subject: rpms/tktray/devel tktray.spec,1.2,1.3 Message-ID: <20090727060232.4492D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tktray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27778 Modified Files: tktray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tktray.spec =================================================================== RCS file: /cvs/pkgs/rpms/tktray/devel/tktray.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tktray.spec 25 Feb 2009 21:02:36 -0000 1.2 +++ tktray.spec 27 Jul 2009 06:02:31 -0000 1.3 @@ -4,7 +4,7 @@ Summary: System Tray Icon Support for Tk on X11 Name: tktray Version: 1.1 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.sw4me.com/wiki/Tktray Source0: http://www.sw4me.com/%{name}%{version}.tar.gz License: MIT @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:02:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:02:46 +0000 (UTC) Subject: rpms/tla/devel tla.spec,1.39,1.40 Message-ID: <20090727060246.8ACEB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27919 Modified Files: tla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tla.spec =================================================================== RCS file: /cvs/pkgs/rpms/tla/devel/tla.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- tla.spec 25 Feb 2009 21:03:29 -0000 1.39 +++ tla.spec 27 Jul 2009 06:02:46 -0000 1.40 @@ -1,7 +1,7 @@ Summary: A version control system Name: tla Version: 1.3.5 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.gnu.org/software/gnu-arch/ @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}-gpg-check.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:03:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:03:00 +0000 (UTC) Subject: rpms/tlock/devel tlock.spec,1.4,1.5 Message-ID: <20090727060300.138BA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tlock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28043 Modified Files: tlock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tlock.spec =================================================================== RCS file: /cvs/pkgs/rpms/tlock/devel/tlock.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tlock.spec 25 Feb 2009 21:04:24 -0000 1.4 +++ tlock.spec 27 Jul 2009 06:02:59 -0000 1.5 @@ -1,6 +1,6 @@ Name: tlock Version: 1.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Terminal lock Group: Applications/System @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %_mandir/man3/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:03:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:03:13 +0000 (UTC) Subject: rpms/tmda/devel tmda.spec,1.12,1.13 Message-ID: <20090727060313.A83D511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tmda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28192 Modified Files: tmda.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tmda.spec =================================================================== RCS file: /cvs/pkgs/rpms/tmda/devel/tmda.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- tmda.spec 25 Feb 2009 21:05:29 -0000 1.12 +++ tmda.spec 27 Jul 2009 06:03:13 -0000 1.13 @@ -6,7 +6,7 @@ Name: tmda Version: 1.1.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tagged Message Delivery Agent Group: Applications/System @@ -182,6 +182,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:03:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:03:28 +0000 (UTC) Subject: rpms/tmispell-voikko/devel tmispell-voikko.spec,1.4,1.5 Message-ID: <20090727060328.2CDAC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tmispell-voikko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28342 Modified Files: tmispell-voikko.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tmispell-voikko.spec =================================================================== RCS file: /cvs/pkgs/rpms/tmispell-voikko/devel/tmispell-voikko.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tmispell-voikko.spec 25 Feb 2009 21:06:17 -0000 1.4 +++ tmispell-voikko.spec 27 Jul 2009 06:03:27 -0000 1.5 @@ -5,7 +5,7 @@ Name: tmispell-voikko Version: 0.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An Ispell compatible front-end for spell-checking modules Group: Applications/Text @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:03:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:03:42 +0000 (UTC) Subject: rpms/tmpwatch/devel tmpwatch.spec,1.40,1.41 Message-ID: <20090727060342.2395611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tmpwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28495 Modified Files: tmpwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tmpwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/tmpwatch/devel/tmpwatch.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- tmpwatch.spec 22 May 2009 11:39:25 -0000 1.40 +++ tmpwatch.spec 27 Jul 2009 06:03:41 -0000 1.41 @@ -1,7 +1,7 @@ Summary: A utility for removing files based on when they were last accessed Name: tmpwatch Version: 2.9.15 -Release: 1 +Release: 2 URL: https://fedorahosted.org/tmpwatch/ Source0: https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-%{version}.tar.bz2 Source1: tmpwatch.daily @@ -49,6 +49,9 @@ rm -rf %{buildroot} %config(noreplace) /etc/cron.daily/tmpwatch %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.9.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Miloslav Trma? - 2.9.15-1 - Update to tmpwatch-2.9.15. - Add a symlink to %%{_bindir}. From jkeating at fedoraproject.org Mon Jul 27 06:03:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:03:54 +0000 (UTC) Subject: rpms/tn5250/devel tn5250.spec,1.37,1.38 Message-ID: <20090727060354.1153D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tn5250/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28638 Modified Files: tn5250.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tn5250.spec =================================================================== RCS file: /cvs/pkgs/rpms/tn5250/devel/tn5250.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- tn5250.spec 23 Jun 2009 15:43:22 -0000 1.37 +++ tn5250.spec 27 Jul 2009 06:03:53 -0000 1.38 @@ -1,7 +1,7 @@ Summary: 5250 Telnet protocol and Terminal Name: tn5250 Version: 0.17.4 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Applications/Internet Source: http://prdownloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -100,6 +100,9 @@ fi %{_libdir}/*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.17.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Karsten Hopp 0.17.4-1 - update icon-cache scriptlets - update to 0.17.4 From jkeating at fedoraproject.org Mon Jul 27 06:04:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:04:09 +0000 (UTC) Subject: rpms/tog-pegasus/devel tog-pegasus.spec,1.72,1.73 Message-ID: <20090727060409.BAE4C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tog-pegasus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28791 Modified Files: tog-pegasus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tog-pegasus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tog-pegasus/devel/tog-pegasus.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- tog-pegasus.spec 21 Jul 2009 11:06:35 -0000 1.72 +++ tog-pegasus.spec 27 Jul 2009 06:04:09 -0000 1.73 @@ -41,7 +41,7 @@ %endif Version: 2.9.0 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 2 # Summary: OpenPegasus WBEM Services for Linux @@ -461,6 +461,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:2.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Vitezslav Crhonek - 2:2.9.0-2 - Fix Group From jkeating at fedoraproject.org Mon Jul 27 06:04:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:04:24 +0000 (UTC) Subject: rpms/tokyocabinet/devel tokyocabinet.spec,1.12,1.13 Message-ID: <20090727060424.996C011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tokyocabinet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28958 Modified Files: tokyocabinet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tokyocabinet.spec =================================================================== RCS file: /cvs/pkgs/rpms/tokyocabinet/devel/tokyocabinet.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- tokyocabinet.spec 3 Jun 2009 20:07:24 -0000 1.12 +++ tokyocabinet.spec 27 Jul 2009 06:04:24 -0000 1.13 @@ -1,7 +1,7 @@ Summary: A modern implementation of a DBM Name: tokyocabinet Version: 1.4.23 -Release: 1%{?dist} +Release: 2%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://tokyocabinet.sourceforge.net/ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %doc doc/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 03 2009 Deji Akingunola - 1.4.23-1 - Update to version 1.4.23 From jkeating at fedoraproject.org Mon Jul 27 06:04:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:04:39 +0000 (UTC) Subject: rpms/tolua++/devel tolua++.spec,1.7,1.8 Message-ID: <20090727060439.896C711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tolua++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29118 Modified Files: tolua++.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tolua++.spec =================================================================== RCS file: /cvs/pkgs/rpms/tolua++/devel/tolua++.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tolua++.spec 25 Feb 2009 21:12:39 -0000 1.7 +++ tolua++.spec 27 Jul 2009 06:04:39 -0000 1.8 @@ -2,7 +2,7 @@ Name: tolua++ Version: 1.0.92 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A tool to integrate C/C++ code with Lua Group: Development/Tools License: Freely redistributable without restriction @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.92-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.92-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:04:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:04:53 +0000 (UTC) Subject: rpms/tomboy/devel tomboy.spec,1.118,1.119 Message-ID: <20090727060453.34F8E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomboy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29273 Modified Files: tomboy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomboy.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomboy/devel/tomboy.spec,v retrieving revision 1.118 retrieving revision 1.119 diff -u -p -r1.118 -r1.119 --- tomboy.spec 16 Jun 2009 06:05:20 -0000 1.118 +++ tomboy.spec 27 Jul 2009 06:04:52 -0000 1.119 @@ -1,6 +1,6 @@ Name: tomboy Version: 0.15.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Note-taking application Group: User Interface/Desktops @@ -141,6 +141,9 @@ fi %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Matthias Clasen - 0.15.2-1 - Update to 0.15.2 From jkeating at fedoraproject.org Mon Jul 27 06:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:05:09 +0000 (UTC) Subject: rpms/tomcat-native/devel tomcat-native.spec,1.14,1.15 Message-ID: <20090727060509.2932B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomcat-native/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29426 Modified Files: tomcat-native.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomcat-native.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomcat-native/devel/tomcat-native.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- tomcat-native.spec 25 Feb 2009 21:14:54 -0000 1.14 +++ tomcat-native.spec 27 Jul 2009 06:05:08 -0000 1.15 @@ -1,6 +1,6 @@ Name: tomcat-native Version: 1.1.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tomcat native library Group: System Environment/Libraries @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.16-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:05:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:05:23 +0000 (UTC) Subject: rpms/tomcat5/devel tomcat5.spec,1.129,1.130 Message-ID: <20090727060523.DC72A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomcat5/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29555 Modified Files: tomcat5.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomcat5.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomcat5/devel/tomcat5.spec,v retrieving revision 1.129 retrieving revision 1.130 diff -u -p -r1.129 -r1.130 --- tomcat5.spec 5 May 2009 16:20:40 -0000 1.129 +++ tomcat5.spec 27 Jul 2009 06:05:23 -0000 1.130 @@ -71,7 +71,7 @@ Name: tomcat5 Epoch: 0 Version: %{majversion}.%{minversion} -Release: 6.4%{dist} +Release: 7.4%{dist} Summary: Apache Servlet/JSP Engine, RI for Servlet 2.4/JSP 2.0 API Group: Networking/Daemons @@ -1380,6 +1380,9 @@ fi %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:5.5.27-7.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Devrim GUNDUZ 0:5.5.27-6.4 - Fix build problems with --with apisonly. Patch from Karsten Hopp. From jkeating at fedoraproject.org Mon Jul 27 06:05:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:05:37 +0000 (UTC) Subject: rpms/tomcat6/devel tomcat6.spec,1.8,1.9 Message-ID: <20090727060537.2F06D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomcat6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29723 Modified Files: tomcat6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomcat6.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomcat6/devel/tomcat6.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- tomcat6.spec 1 Apr 2009 20:29:13 -0000 1.8 +++ tomcat6.spec 27 Jul 2009 06:05:36 -0000 1.9 @@ -54,7 +54,7 @@ Name: tomcat6 Epoch: 0 Version: %{major_version}.%{minor_version}.%{micro_version} -Release: 9.2%{?dist} +Release: 10.2%{?dist} Summary: Apache Servlet/JSP Engine, RI for Servlet %{servletspec}/JSP %{jspspec} API Group: Networking/Daemons @@ -447,6 +447,9 @@ fi %{appdir}/sample %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:6.0.18-10.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 1 2009 akurtakov 0:6.0.18-9.2 - Add OSGi manifest for servlet-api. From jkeating at fedoraproject.org Mon Jul 27 06:05:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:05:49 +0000 (UTC) Subject: rpms/tomoe/devel tomoe.spec,1.31,1.32 Message-ID: <20090727060549.0648811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomoe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29862 Modified Files: tomoe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomoe.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe/devel/tomoe.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- tomoe.spec 2 Jun 2009 05:08:18 -0000 1.31 +++ tomoe.spec 27 Jul 2009 06:05:47 -0000 1.32 @@ -3,7 +3,7 @@ Name: tomoe Version: 0.6.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Handwritten input system for Japanese and Chinese Group: System Environment/Libraries @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 2 2009 Ding-Yi Chen - 0.6.0-14 - [Bug 502662] SCIM-tomoe doesn't load - no error msgs From jkeating at fedoraproject.org Mon Jul 27 06:06:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:06:00 +0000 (UTC) Subject: rpms/tomoe-gtk/devel tomoe-gtk.spec,1.7,1.8 Message-ID: <20090727060600.11B2611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tomoe-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29991 Modified Files: tomoe-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tomoe-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/tomoe-gtk/devel/tomoe-gtk.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tomoe-gtk.spec 16 Jul 2009 01:27:02 -0000 1.7 +++ tomoe-gtk.spec 27 Jul 2009 06:05:59 -0000 1.8 @@ -2,7 +2,7 @@ Name: tomoe-gtk Version: %{tomoe_ver} -Release: 9%{?dist} +Release: 10%{?dist} Summary: Gtk library for tomoe for Japanese and Chinese handwritten input Group: System Environment/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/gtk-2.0/tomoegtk.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Ding-Yi Chen - 0.6.0-9 - Add back autoconf, automake to fix RH Bug 499880: tomoe-gtk not built with $RPM_OPT_FLAGS From jkeating at fedoraproject.org Mon Jul 27 06:06:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:06:12 +0000 (UTC) Subject: rpms/tong/devel tong.spec,1.7,1.8 Message-ID: <20090727060612.4A4E311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tong/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30134 Modified Files: tong.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tong.spec =================================================================== RCS file: /cvs/pkgs/rpms/tong/devel/tong.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tong.spec 5 May 2009 03:39:32 -0000 1.7 +++ tong.spec 27 Jul 2009 06:06:11 -0000 1.8 @@ -1,6 +1,6 @@ Name: tong Version: 1.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A mixture of two classic games Group: Amusements/Games @@ -84,6 +84,9 @@ fi %{_datadir}/tong %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 4 2009 Fedora Release Engineering - 1.0-12 - Mark -data subpackage as noarch From jkeating at fedoraproject.org Mon Jul 27 06:06:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:06:49 +0000 (UTC) Subject: rpms/toped/devel toped.spec,1.15,1.16 Message-ID: <20090727060649.30DAE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/toped/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30528 Modified Files: toped.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: toped.spec =================================================================== RCS file: /cvs/pkgs/rpms/toped/devel/toped.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- toped.spec 29 Mar 2009 17:03:53 -0000 1.15 +++ toped.spec 27 Jul 2009 06:06:48 -0000 1.16 @@ -1,6 +1,6 @@ Name: toped Version: 0.9.2 -Release: 4%{?dist} +Release: 5%{?dist} #RELEASE_0.92_CAND Summary: VLSI IC Layout Editor From jkeating at fedoraproject.org Mon Jul 27 06:07:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:07:05 +0000 (UTC) Subject: rpms/tor/devel tor.spec,1.33,1.34 Message-ID: <20090727060705.BDD4311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30680 Modified Files: tor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tor.spec =================================================================== RCS file: /cvs/pkgs/rpms/tor/devel/tor.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- tor.spec 26 Jun 2009 19:15:24 -0000 1.33 +++ tor.spec 27 Jul 2009 06:07:05 -0000 1.34 @@ -13,7 +13,7 @@ Name: tor Version: 0.2.0.35 -Release: %release_func 1 +Release: %release_func 2 Group: System Environment/Daemons License: BSD Summary: Anonymizing overlay network for TCP (The onion router) @@ -235,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.0.35-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Enrico Scholz - 0.2.0.35-1 - updated to 0.2.0.35 - added '--quiet' to startup options (bug #495987) From jkeating at fedoraproject.org Mon Jul 27 06:07:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:07:17 +0000 (UTC) Subject: rpms/torch/devel torch.spec,1.2,1.3 Message-ID: <20090727060717.EF9F411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/torch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30825 Modified Files: torch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: torch.spec =================================================================== RCS file: /cvs/pkgs/rpms/torch/devel/torch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- torch.spec 25 Feb 2009 21:22:35 -0000 1.2 +++ torch.spec 27 Jul 2009 06:07:17 -0000 1.3 @@ -1,6 +1,6 @@ Name: torch Version: 3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Torch is a simple machine-learning library Group: Applications/Engineering @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:07:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:07:48 +0000 (UTC) Subject: rpms/torcs-data/devel torcs-data.spec,1.11,1.12 Message-ID: <20090727060748.EE2A211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/torcs-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31101 Modified Files: torcs-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: torcs-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/torcs-data/devel/torcs-data.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- torcs-data.spec 10 Apr 2009 21:18:47 -0000 1.11 +++ torcs-data.spec 27 Jul 2009 06:07:48 -0000 1.12 @@ -1,7 +1,7 @@ Summary: The Open Racing Car Simulator data files Name: torcs-data Version: 1.3.1 -Release: 1 +Release: 2 License: GPLv2+ and Free Art Group: Amusements/Games URL: http://torcs.org/ @@ -143,6 +143,9 @@ done %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Matthias Saou 1.3.1-1 - Update to 1.3.1. - Remove no longer existing upstream cars-nascar sub-package (merged in). From jkeating at fedoraproject.org Mon Jul 27 06:08:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:08:05 +0000 (UTC) Subject: rpms/torque/devel torque.spec,1.33,1.34 Message-ID: <20090727060805.0DDBE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/torque/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31272 Modified Files: torque.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: torque.spec =================================================================== RCS file: /cvs/pkgs/rpms/torque/devel/torque.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- torque.spec 25 Feb 2009 21:25:07 -0000 1.33 +++ torque.spec 27 Jul 2009 06:08:04 -0000 1.34 @@ -3,7 +3,7 @@ %define name torque %define version 2.1.10 #%%define snap 200604251602 -%define release 7 +%define release 8 # The following options are supported: # --with server_name=hostname @@ -462,6 +462,9 @@ A simple PAM module to authorize users o %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:08:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:08:19 +0000 (UTC) Subject: rpms/torsmo/devel torsmo.spec,1.6,1.7 Message-ID: <20090727060819.3FD6011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/torsmo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31505 Modified Files: torsmo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: torsmo.spec =================================================================== RCS file: /cvs/pkgs/rpms/torsmo/devel/torsmo.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- torsmo.spec 25 Feb 2009 21:25:58 -0000 1.6 +++ torsmo.spec 27 Jul 2009 06:08:18 -0000 1.7 @@ -1,6 +1,6 @@ Name: torsmo Version: 0.18 -Release: 9%{?dist} +Release: 10%{?dist} Summary: TyopoytaORvelo System MOnitor Group: Applications/System @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.18-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.18-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:08:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:08:35 +0000 (UTC) Subject: rpms/totem/devel totem.spec,1.246,1.247 Message-ID: <20090727060835.1E68511C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/totem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31685 Modified Files: totem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/devel/totem.spec,v retrieving revision 1.246 retrieving revision 1.247 diff -u -p -r1.246 -r1.247 --- totem.spec 23 Jul 2009 22:42:02 -0000 1.246 +++ totem.spec 27 Jul 2009 06:08:34 -0000 1.247 @@ -6,7 +6,7 @@ Summary: Movie player for GNOME Name: totem Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ with exceptions Group: Applications/Multimedia URL: http://projects.gnome.org/totem/ @@ -376,6 +376,9 @@ fi %{_libdir}/totem/plugins/publish %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.27.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Bastien Nocera 2.27.2-1 - Update to 2.27.2 From jkeating at fedoraproject.org Mon Jul 27 06:08:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:08:48 +0000 (UTC) Subject: rpms/totem-pl-parser/devel totem-pl-parser.spec,1.40,1.41 Message-ID: <20090727060848.43E5C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/totem-pl-parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31912 Modified Files: totem-pl-parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: totem-pl-parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem-pl-parser/devel/totem-pl-parser.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- totem-pl-parser.spec 23 Jul 2009 19:43:41 -0000 1.40 +++ totem-pl-parser.spec 27 Jul 2009 06:08:47 -0000 1.41 @@ -1,6 +1,6 @@ Name: totem-pl-parser Version: 2.27.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Totem Playlist Parser library Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/totem-pl-parser %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.27.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Bastien Nocera 2.27.2-1 - Update to 2.27.2 From jkeating at fedoraproject.org Mon Jul 27 06:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:09:01 +0000 (UTC) Subject: rpms/touchcal/devel touchcal.spec,1.1,1.2 Message-ID: <20090727060901.3235711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/touchcal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32297 Modified Files: touchcal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: touchcal.spec =================================================================== RCS file: /cvs/pkgs/rpms/touchcal/devel/touchcal.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- touchcal.spec 9 Mar 2009 17:43:56 -0000 1.1 +++ touchcal.spec 27 Jul 2009 06:09:00 -0000 1.2 @@ -1,6 +1,6 @@ Name: touchcal Version: 0.31 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Calibration utility for touch screens Group: User Interface/X Hardware Support @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 3 2009 Dan Hor?k 0.31-1 - update to upstream version 0.31 From jkeating at fedoraproject.org Mon Jul 27 06:09:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:09:14 +0000 (UTC) Subject: rpms/towhee/devel towhee.spec,1.6,1.7 Message-ID: <20090727060914.6C9F411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/towhee/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32646 Modified Files: towhee.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: towhee.spec =================================================================== RCS file: /cvs/pkgs/rpms/towhee/devel/towhee.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- towhee.spec 16 Jul 2009 17:11:30 -0000 1.6 +++ towhee.spec 27 Jul 2009 06:09:14 -0000 1.7 @@ -1,6 +1,6 @@ Name: towhee Version: 6.2.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Monte Carlo molecular simulation code Group: Applications/Engineering License: GPLv2+ @@ -212,6 +212,9 @@ rm -rf %{buildroot} %doc Examples/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.2.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 6.2.6-1 - Restore ExcludeArch: ppc64. From jkeating at fedoraproject.org Mon Jul 27 06:09:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:09:30 +0000 (UTC) Subject: rpms/tpb/devel tpb.spec,1.20,1.21 Message-ID: <20090727060930.8448B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tpb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv523 Modified Files: tpb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tpb.spec =================================================================== RCS file: /cvs/pkgs/rpms/tpb/devel/tpb.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- tpb.spec 25 Feb 2009 21:28:37 -0000 1.20 +++ tpb.spec 27 Jul 2009 06:09:30 -0000 1.21 @@ -1,6 +1,6 @@ Name: tpb Version: 0.6.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: ThinkPad button support utility Group: System Environment/Base @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:09:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:09:43 +0000 (UTC) Subject: rpms/tpm-tools/devel tpm-tools.spec,1.4,1.5 Message-ID: <20090727060943.609AB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tpm-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv723 Modified Files: tpm-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tpm-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/tpm-tools/devel/tpm-tools.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tpm-tools.spec 25 Feb 2009 21:29:28 -0000 1.4 +++ tpm-tools.spec 27 Jul 2009 06:09:43 -0000 1.5 @@ -1,7 +1,7 @@ %define name tpm-tools %define version 1.3.1 -%define release 7 +%define release 8 Name: %{name} Summary: Management tools for the TPM hardware @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/tpmUnseal* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:09:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:09:55 +0000 (UTC) Subject: rpms/tqsllib/devel tqsllib.spec,1.4,1.5 Message-ID: <20090727060955.1E4E011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tqsllib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv907 Modified Files: tqsllib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tqsllib.spec =================================================================== RCS file: /cvs/pkgs/rpms/tqsllib/devel/tqsllib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tqsllib.spec 25 Feb 2009 21:30:18 -0000 1.4 +++ tqsllib.spec 27 Jul 2009 06:09:54 -0000 1.5 @@ -1,6 +1,6 @@ Name: tqsllib Version: 2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: The TrustedQSL library Group: Development/Libraries License: BSD @@ -79,6 +79,9 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:10:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:10:09 +0000 (UTC) Subject: rpms/trac/devel trac.spec,1.29,1.30 Message-ID: <20090727061009.AA1FE11C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1142 Modified Files: trac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac/devel/trac.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- trac.spec 5 May 2009 23:31:24 -0000 1.29 +++ trac.spec 27 Jul 2009 06:10:09 -0000 1.30 @@ -2,7 +2,7 @@ Name: trac Version: 0.11.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Enhanced wiki and issue tracking system Group: Applications/Internet License: BSD @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %{_var}/www/cgi-bin/trac.fcgi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Jesse Keating - 0.11.4-1 - New upstream release to fix bugs and minor enhancements. From jkeating at fedoraproject.org Mon Jul 27 06:10:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:10:25 +0000 (UTC) Subject: rpms/trac-bazaar-plugin/devel trac-bazaar-plugin.spec,1.8,1.9 Message-ID: <20090727061025.7E1AE11C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-bazaar-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1305 Modified Files: trac-bazaar-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-bazaar-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-bazaar-plugin/devel/trac-bazaar-plugin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- trac-bazaar-plugin.spec 25 Feb 2009 21:32:06 -0000 1.8 +++ trac-bazaar-plugin.spec 27 Jul 2009 06:10:24 -0000 1.9 @@ -4,7 +4,7 @@ Name: trac-bazaar-plugin Version: 0.2 -Release: 9.20080925bzr%{bzrrev}%{?dist} +Release: 10.20080925bzr%{bzrrev}%{?dist} Summary: Bazaar plugin for Trac Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-10.20080925bzr49 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-9.20080925bzr49 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:10:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:10:44 +0000 (UTC) Subject: rpms/trac-doxygen-plugin/devel trac-doxygen-plugin.spec,1.3,1.4 Message-ID: <20090727061044.CD54311C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-doxygen-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1548 Modified Files: trac-doxygen-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-doxygen-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-doxygen-plugin/devel/trac-doxygen-plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trac-doxygen-plugin.spec 25 Feb 2009 21:33:00 -0000 1.3 +++ trac-doxygen-plugin.spec 27 Jul 2009 06:10:44 -0000 1.4 @@ -6,7 +6,7 @@ Name: trac-doxygen-plugin Version: 0.4 -Release: 0.5.r%{svnrev}%{?dist} +Release: 0.6.r%{svnrev}%{?dist} Summary: Integrates doxygen documentation into Trac License: BSD @@ -51,6 +51,9 @@ chmod -x doxygentrac/templates/doxygen.c %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4-0.6.r2892 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4-0.5.r2892 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:11:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:11:00 +0000 (UTC) Subject: rpms/trac-git-plugin/devel trac-git-plugin.spec,1.10,1.11 Message-ID: <20090727061100.7487811C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-git-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1710 Modified Files: trac-git-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-git-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-git-plugin/devel/trac-git-plugin.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- trac-git-plugin.spec 12 May 2009 20:51:15 -0000 1.10 +++ trac-git-plugin.spec 27 Jul 2009 06:11:00 -0000 1.11 @@ -5,7 +5,7 @@ Name: trac-git-plugin Version: 0.11.0.2 -Release: 4.20090511svn%{svnrev}%{?dist} +Release: 5.20090511svn%{svnrev}%{?dist} Summary: GIT version control plugin for Trac Group: Applications/Internet @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.0.2-5.20090511svn5396 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 11 2009 Jesse Keating - 0.11.0.2-2.20090511svn5396 - Drop COPYING, it doesn't make it into the tarball. From jkeating at fedoraproject.org Mon Jul 27 06:11:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:11:12 +0000 (UTC) Subject: rpms/trac-iniadmin-plugin/devel trac-iniadmin-plugin.spec,1.3,1.4 Message-ID: <20090727061112.0AFCA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-iniadmin-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1854 Modified Files: trac-iniadmin-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-iniadmin-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-iniadmin-plugin/devel/trac-iniadmin-plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trac-iniadmin-plugin.spec 25 Feb 2009 21:34:43 -0000 1.3 +++ trac-iniadmin-plugin.spec 27 Jul 2009 06:11:11 -0000 1.4 @@ -5,7 +5,7 @@ Name: trac-iniadmin-plugin Version: 0.1 -Release: 4.20071126svn%{svnrev}%{?dist} +Release: 5.20071126svn%{svnrev}%{?dist} Summary: Expose all TracIni options using the Trac 0.10 config option API Group: Applications/Internet @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5.20071126svn2824 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-4.20071126svn2824 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:12:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:12:02 +0000 (UTC) Subject: rpms/trac-privateticketsplugin/devel trac-privateticketsplugin.spec, 1.3, 1.4 Message-ID: <20090727061202.EA29111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-privateticketsplugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2401 Modified Files: trac-privateticketsplugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-privateticketsplugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-privateticketsplugin/devel/trac-privateticketsplugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trac-privateticketsplugin.spec 25 Feb 2009 21:37:18 -0000 1.3 +++ trac-privateticketsplugin.spec 27 Jul 2009 06:12:02 -0000 1.4 @@ -2,7 +2,7 @@ Name: trac-privateticketsplugin Version: 2.0.2 -Release: 0.2.svn5073%{?dist} +Release: 0.3.svn5073%{?dist} Summary: Trac extension to allow users to view only related tickets Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-0.3.svn5073 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.2-0.2.svn5073 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:12:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:12:15 +0000 (UTC) Subject: rpms/trac-spamfilter-plugin/devel trac-spamfilter-plugin.spec, 1.5, 1.6 Message-ID: <20090727061215.849A511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-spamfilter-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2546 Modified Files: trac-spamfilter-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-spamfilter-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-spamfilter-plugin/devel/trac-spamfilter-plugin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- trac-spamfilter-plugin.spec 14 Jul 2009 20:33:14 -0000 1.5 +++ trac-spamfilter-plugin.spec 27 Jul 2009 06:12:15 -0000 1.6 @@ -5,7 +5,7 @@ Name: trac-spamfilter-plugin Version: 0.2.1 -Release: 0.5.20090714svn%{svnrev}%{?dist} +Release: 0.6.20090714svn%{svnrev}%{?dist} Summary: Spam-Filter plugin for Trac Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2.1-0.6.20090714svn8330 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Paul Howarth - 0.2.1-0.5.20090714svn8330 - Update to rev8330, addresses upstream tickets #6130, #7627, #8032, #8121, #8257 From jkeating at fedoraproject.org Mon Jul 27 06:12:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:12:30 +0000 (UTC) Subject: rpms/trac-ticketdelete-plugin/devel trac-ticketdelete-plugin.spec, 1.3, 1.4 Message-ID: <20090727061230.02E8A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-ticketdelete-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2705 Modified Files: trac-ticketdelete-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-ticketdelete-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-ticketdelete-plugin/devel/trac-ticketdelete-plugin.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trac-ticketdelete-plugin.spec 25 Feb 2009 21:39:02 -0000 1.3 +++ trac-ticketdelete-plugin.spec 27 Jul 2009 06:12:29 -0000 1.4 @@ -4,7 +4,7 @@ Name: trac-ticketdelete-plugin Version: 1.1.4 -Release: 3.20071126svn%{svnrev}%{?dist} +Release: 4.20071126svn%{svnrev}%{?dist} Summary: Remove tickets and ticket changes from Trac Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-4.20071126svn2825 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.4-3.20071126svn2825 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:12:44 +0000 (UTC) Subject: rpms/trac-xmlrpc-plugin/devel trac-xmlrpc-plugin.spec,1.6,1.7 Message-ID: <20090727061244.1E62611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2887 Modified Files: trac-xmlrpc-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-xmlrpc-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-xmlrpc-plugin/devel/trac-xmlrpc-plugin.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trac-xmlrpc-plugin.spec 26 Jul 2009 17:12:27 -0000 1.6 +++ trac-xmlrpc-plugin.spec 27 Jul 2009 06:12:42 -0000 1.7 @@ -6,7 +6,7 @@ Name: trac-xmlrpc-plugin Version: 1.0.6 -Release: 0.1.r%{svnrev}%{?dist} +Release: 0.2.r%{svnrev}%{?dist} Summary: Allows Trac plugins to export their interface via XML-RPC Group: Applications/Internet @@ -48,6 +48,9 @@ of Trac's API. %{python_sitelib}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.6-0.2.r6141 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 26 2009 Sergio Pascual - 1.0.6-0.1.r6141 - Source code from vcs, rebased to trunk to support json-rpc (bz #509291) From jkeating at fedoraproject.org Mon Jul 27 06:12:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:12:57 +0000 (UTC) Subject: rpms/traceroute/devel traceroute.spec,1.40,1.41 Message-ID: <20090727061257.9259711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/traceroute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3007 Modified Files: traceroute.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: traceroute.spec =================================================================== RCS file: /cvs/pkgs/rpms/traceroute/devel/traceroute.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- traceroute.spec 25 Feb 2009 21:41:39 -0000 1.40 +++ traceroute.spec 27 Jul 2009 06:12:57 -0000 1.41 @@ -2,7 +2,7 @@ Summary: Traces the route taken by packe Name: traceroute Epoch: 3 Version: 2.0.12 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Internet License: GPLv2+ URL: http://traceroute.sourceforge.net @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3:2.0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3:2.0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:13:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:13:23 +0000 (UTC) Subject: rpms/trackballs-music/devel trackballs-music.spec,1.5,1.6 Message-ID: <20090727061323.08F1611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trackballs-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3318 Modified Files: trackballs-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trackballs-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/trackballs-music/devel/trackballs-music.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- trackballs-music.spec 18 May 2009 09:30:49 -0000 1.5 +++ trackballs-music.spec 27 Jul 2009 06:13:22 -0000 1.6 @@ -1,6 +1,6 @@ Name: trackballs-music Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: In-game music for Trackballs Group: Amusements/Games License: GPLv2+ and EFML @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 1.4-1 - New upstream release 1.4 From jkeating at fedoraproject.org Mon Jul 27 06:13:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:13:49 +0000 (UTC) Subject: rpms/transbot/devel transbot.spec,1.4,1.5 Message-ID: <20090727061349.EEC3A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/transbot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3616 Modified Files: transbot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: transbot.spec =================================================================== RCS file: /cvs/pkgs/rpms/transbot/devel/transbot.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- transbot.spec 25 Feb 2009 21:45:09 -0000 1.4 +++ transbot.spec 27 Jul 2009 06:13:49 -0000 1.5 @@ -3,7 +3,7 @@ Name: transbot Version: 0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Small irc bot designed to translate between languages in irc channels Group: Development/Libraries License: GPL+ @@ -44,6 +44,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/transbot.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:13:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:13:37 +0000 (UTC) Subject: rpms/tracker/devel tracker.spec,1.54,1.55 Message-ID: <20090727061337.C9D6811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tracker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3485 Modified Files: tracker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tracker.spec =================================================================== RCS file: /cvs/pkgs/rpms/tracker/devel/tracker.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- tracker.spec 4 Jun 2009 10:45:39 -0000 1.54 +++ tracker.spec 27 Jul 2009 06:13:37 -0000 1.55 @@ -1,7 +1,7 @@ Summary: An object database, tag/metadata database, search tool and indexer Name: tracker Version: 0.6.95 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://projects.gnome.org/tracker/ @@ -159,6 +159,9 @@ fi %{_mandir}/man1/tracker-search-tool.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.95-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Deji Akingunola - 0.6.95-2 - Ship the manpages in the appropriate sub-packages (Fedora bug #479278) From jkeating at fedoraproject.org Mon Jul 27 06:14:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:14:42 +0000 (UTC) Subject: rpms/translation-filter/devel translation-filter.spec,1.3,1.4 Message-ID: <20090727061442.A389E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/translation-filter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4321 Modified Files: translation-filter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: translation-filter.spec =================================================================== RCS file: /cvs/pkgs/rpms/translation-filter/devel/translation-filter.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- translation-filter.spec 25 Feb 2009 21:47:47 -0000 1.3 +++ translation-filter.spec 27 Jul 2009 06:14:42 -0000 1.4 @@ -3,7 +3,7 @@ Name: translation-filter Version: 0.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A l10n file filter Group: Development/Languages @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:14:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:14:55 +0000 (UTC) Subject: rpms/transmission/devel transmission.spec,1.40,1.41 Message-ID: <20090727061455.5E3FD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/transmission/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4465 Modified Files: transmission.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: transmission.spec =================================================================== RCS file: /cvs/pkgs/rpms/transmission/devel/transmission.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- transmission.spec 23 Jul 2009 19:40:25 -0000 1.40 +++ transmission.spec 27 Jul 2009 06:14:55 -0000 1.41 @@ -1,7 +1,7 @@ Name: transmission Version: 1.73 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight GTK+ BitTorrent client Group: Applications/Internet @@ -73,6 +73,9 @@ update-desktop-database > /dev/null 2>&1 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.73-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Rahul Sundaram - 1.73-1 - new upstream - switch to using LZMA source From jkeating at fedoraproject.org Mon Jul 27 06:15:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:15:22 +0000 (UTC) Subject: rpms/tre/devel tre.spec,1.12,1.13 Message-ID: <20090727061522.39BAB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4713 Modified Files: tre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tre.spec =================================================================== RCS file: /cvs/pkgs/rpms/tre/devel/tre.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- tre.spec 25 Feb 2009 21:49:32 -0000 1.12 +++ tre.spec 27 Jul 2009 06:15:21 -0000 1.13 @@ -2,7 +2,7 @@ Name: tre Version: 0.7.5 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ Group: System Environment/Libraries Source0: http://laurikari.net/tre/%{name}-%{version}.tar.bz2 @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/agrep.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From giesen at fedoraproject.org Mon Jul 27 06:15:28 2009 From: giesen at fedoraproject.org (giesen) Date: Mon, 27 Jul 2009 06:15:28 +0000 (UTC) Subject: rpms/rancid/devel import.log, NONE, 1.1 rancid-2.3.2-Makefile.patch, NONE, 1.1 rancid-2.3.2-conf.patch, NONE, 1.1 rancid.cron, NONE, 1.1 rancid.logrotate, NONE, 1.1 rancid.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727061528.A3CB611C00E8@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/rancid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4694/devel Modified Files: .cvsignore sources Added Files: import.log rancid-2.3.2-Makefile.patch rancid-2.3.2-conf.patch rancid.cron rancid.logrotate rancid.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- rancid-2_3_2-3_fc11:HEAD:rancid-2.3.2-3.fc11.src.rpm:1248675280 rancid-2.3.2-Makefile.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-Makefile.patch --- --- bin/Makefile.am.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.am 2009-07-16 02:13:39.733312866 -0400 @@ -71,7 +71,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 YFLAGS = -d #LFLAGS = -i --- bin/Makefile.in.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.in 2009-07-16 02:13:39.734487978 -0400 @@ -110,7 +110,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 COMM = @COMM@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ rancid-2.3.2-conf.patch: rancid.conf.sample.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-conf.patch --- --- etc/rancid.conf.sample.in.orig 2007-12-20 13:09:24.000000000 -0500 +++ etc/rancid.conf.sample.in 2009-07-16 02:35:41.962728099 -0400 @@ -18,12 +18,12 @@ # TMPDIR=/tmp; export TMPDIR # Be careful changing this, it affects CVSROOT below. -BASEDIR=@localstatedir@; export BASEDIR +BASEDIR=/var/rancid; export BASEDIR PATH=@bindir@:@ENV_PATH@; export PATH # Location of the CVS/SVN repository. Be careful changing this. CVSROOT=$BASEDIR/CVS; export CVSROOT # Location of log files produced by rancid-run(1). -LOGDIR=$BASEDIR/logs; export LOGDIR +LOGDIR=/var/log/rancid; export LOGDIR # # Select which RCS system to use, "cvs" (default) or "svn". Do not change # this after CVSROOT has been created with rancid-cvs. Changing between these --- NEW FILE rancid.cron --- SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/var/rancid # Run config differ hourly 1 * * * * rancid RANCIDBINDIR/rancid-run --- NEW FILE rancid.logrotate --- /var/log/rancid/* { weekly rotate 1 notifempty missingok compress olddir old } --- NEW FILE rancid.spec --- Name: rancid Version: 2.3.2 Release: 3%{?dist} Summary: Really Awesome New Cisco confIg Differ Group: Applications/Internet License: BSD with advertising URL: http://www.shrubbery.net/rancid/ Source0: ftp://ftp.shrubbery.net/pub/{name}/%{name}-%{version}.tar.gz Source1: %{name}.cron Source2: %{name}.logrotate Patch0: rancid-2.3.2-Makefile.patch Patch1: rancid-2.3.2-conf.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: telnet BuildRequires: rsh BuildRequires: openssh-clients BuildRequires: expect BuildRequires: cvs BuildRequires: subversion BuildRequires: perl BuildRequires: iputils Requires(pre): shadow-utils Requires: findutils Requires: expect Requires: perl Requires: iputils Requires: logrotate %description RANCID monitors a router's (or more generally a device's) configuration, including software and hardware (cards, serial numbers, etc) and uses CVS (Concurrent Version System) or Subversion to maintain history of changes. %prep %setup -q -n %{name}-%{version} %patch0 -p0 %patch1 -p0 %build %configure --sysconfdir=%{_sysconfdir}/%{name} --bindir=%{_libexecdir}/%{name} --enable-conf-install make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" install -d -m 0755 %{buildroot}/%{_localstatedir}/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name}/old install -d -m 0755 %{buildroot}/%{_sysconfdir}/cron.d install -d -m 0755 %{buildroot}/%{_bindir}/ #symlink some bins from %%{_libexecdir}/%%{name} to %%{_bindir} for base in \ %{name} %{name}-cvs %{name}-fe %{name}-run do ln -sf %{_libexecdir}/%{name}/${base} \ %{buildroot}/%{_bindir}/${base} done install -D -p -m 0755 %{SOURCE1} %{buildroot}/%{_sysconfdir}/cron.d/%{name} #Patch cron file to point to correct installation directory sed -i 's|RANCIDBINDIR|%{_libexecdir}/%{name}|g' %{buildroot}/%{_sysconfdir}/cron.d/%{name} install -D -p -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name} %clean rm -rf %{buildroot} %pre getent group %{name} >/dev/null || groupadd -r %{name} getent passwd %{name} >/dev/null || \ useradd -r -g %{name} -d %{_localstatedir}/%{name}/ -s /bin/bash \ -k /etc/skel -m -c "RANCID" %{name} exit 0 %files %defattr(-,root,root,-) %doc CHANGES cloginrc.sample COPYING FAQ README README.lg Todo #%%{_sysconfdir}-files %attr(750,%{name},%{name}) %dir %{_sysconfdir}/%{name} %attr(640,%{name},%{name}) %config(noreplace) %{_sysconfdir}/%{name}/* %attr(644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/%{name} %attr(644,root,root) %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} #%%{_libexecdir}/%%{name}-files %dir %{_libexecdir}/%{name}/ %{_libexecdir}/%{name}/* #%%{_bindir}-files %{_bindir}/* #%%{_mandir}-files %{_mandir}/*/* #%%{_datadir}/%%{name}-files %dir %{_datadir}/%{name}/ %{_datadir}/%{name}/* #%%{_localstatedir}-directories %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name} %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name}/old %attr(750,%{name},%{name}) %dir %{_localstatedir}/%{name}/ %changelog * Wed Jul 22 2009 Gary T. Giesen 2.3.2-3 - Changed GECOS name for rancid user * Wed Jul 22 2009 Gary T. Giesen 2.3.2-2 - Added logrotate (and updated crontab to let logrotate handle log file cleanup - Removed Requires: for rsh, telnet, and openssh-clients - Removed Requires: for cvs - Cleaned up file permissions - Added shell for rancid user for CVS tree creation and troubleshooting - Patch cron file for installation path - Removed installation of CVS root to permit SVN use - Moved from libdir to libexecdir * Thu Jul 16 2009 Gary T. Giesen 2.3.2-1 - Updated to 2.3.2 stable - Removed versioned expect requirement so all supported Fedora/EPEL releases now meet the minimum - Spec file cleanup/style changes * Wed Oct 08 2008 Aage Olai Johnsen 2.3.2-0.6a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.5a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.4a8 - More fixes (#451189) - Patched Makefiles - Supplied by Mamoru Tasaka (mtasaka at ioa.s.u-tokyo.ac.jp) * Tue Sep 23 2008 Aage Olai Johnsen 2.3.2-0.3a8 - More fixes (#451189) * Wed Jul 09 2008 Aage Olai Johnsen 2.3.2a8-0.2a8 - Plenty of fixes (#451189) - Patched rancid.conf-file - Added cronjob * Sat May 31 2008 Aage Olai Johnsen 2.3.2a8-0.1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rancid/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:37:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 06:15:27 -0000 1.2 @@ -0,0 +1 @@ +rancid-2.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rancid/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:37:24 -0000 1.1 +++ sources 27 Jul 2009 06:15:28 -0000 1.2 @@ -0,0 +1 @@ +4e2de3ff6850b311c0e2a442f7ae5d82 rancid-2.3.2.tar.gz From jkeating at fedoraproject.org Mon Jul 27 06:15:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:15:36 +0000 (UTC) Subject: rpms/tree/devel tree.spec,1.36,1.37 Message-ID: <20090727061536.95DC411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4969 Modified Files: tree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tree.spec =================================================================== RCS file: /cvs/pkgs/rpms/tree/devel/tree.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- tree.spec 10 Jun 2009 15:50:31 -0000 1.36 +++ tree.spec 27 Jul 2009 06:15:36 -0000 1.37 @@ -1,7 +1,7 @@ Summary: File system tree viewer Name: tree Version: 1.5.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/File License: GPLv2+ Url: http://mama.indstate.edu/users/ice/tree/ @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %doc README LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Tim Waugh 1.5.2.2-3 - Reinstate no-color-by-default patch (bug #504245). From jkeating at fedoraproject.org Mon Jul 27 06:15:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:15:49 +0000 (UTC) Subject: rpms/treecc/devel treecc.spec,1.15,1.16 Message-ID: <20090727061549.2F41B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/treecc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5148 Modified Files: treecc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: treecc.spec =================================================================== RCS file: /cvs/pkgs/rpms/treecc/devel/treecc.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- treecc.spec 25 Feb 2009 21:51:12 -0000 1.15 +++ treecc.spec 27 Jul 2009 06:15:48 -0000 1.16 @@ -1,6 +1,6 @@ Name: treecc Version: 0.3.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tree Compiler Compiler @@ -62,6 +62,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:16:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:16:12 +0000 (UTC) Subject: rpms/tremfusion/devel tremfusion.spec,1.1,1.2 Message-ID: <20090727061612.5412411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tremfusion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5458 Modified Files: tremfusion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tremfusion.spec =================================================================== RCS file: /cvs/pkgs/rpms/tremfusion/devel/tremfusion.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tremfusion.spec 6 Jul 2009 05:26:58 -0000 1.1 +++ tremfusion.spec 27 Jul 2009 06:16:12 -0000 1.2 @@ -12,7 +12,7 @@ Name: tremfusion Version: 0.99 -Release: 4.r3%{?dist} +Release: 5.r3%{?dist} Summary: Enhanced modification of the free software first person shooter Tremulous Group: Amusements/Games @@ -165,6 +165,9 @@ update-desktop-database &> /dev/null || %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.99-5.r3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 5 2009 Ian Weller 0.99-4.r3 - Add OpenGL wrapper - Upstream changed 0.99r3 tag again (hg:1421) From jkeating at fedoraproject.org Mon Jul 27 06:16:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:16:27 +0000 (UTC) Subject: rpms/tremulous/devel tremulous.spec,1.7,1.8 Message-ID: <20090727061627.B60B311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tremulous/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5640 Modified Files: tremulous.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tremulous.spec =================================================================== RCS file: /cvs/pkgs/rpms/tremulous/devel/tremulous.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tremulous.spec 25 Feb 2009 21:51:59 -0000 1.7 +++ tremulous.spec 27 Jul 2009 06:16:27 -0000 1.8 @@ -1,6 +1,6 @@ Name: tremulous Version: 1.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: First Person Shooter game based on the Quake 3 engine Group: Amusements/Games License: GPLv2+ @@ -106,6 +106,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From giesen at fedoraproject.org Mon Jul 27 06:16:43 2009 From: giesen at fedoraproject.org (giesen) Date: Mon, 27 Jul 2009 06:16:43 +0000 (UTC) Subject: rpms/rancid/F-11 import.log, NONE, 1.1 rancid-2.3.2-Makefile.patch, NONE, 1.1 rancid-2.3.2-conf.patch, NONE, 1.1 rancid.cron, NONE, 1.1 rancid.logrotate, NONE, 1.1 rancid.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727061643.A650311C00E8@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/rancid/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5742/F-11 Modified Files: .cvsignore sources Added Files: import.log rancid-2.3.2-Makefile.patch rancid-2.3.2-conf.patch rancid.cron rancid.logrotate rancid.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- rancid-2_3_2-3_fc11:F-11:rancid-2.3.2-3.fc11.src.rpm:1248675374 rancid-2.3.2-Makefile.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-Makefile.patch --- --- bin/Makefile.am.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.am 2009-07-16 02:13:39.733312866 -0400 @@ -71,7 +71,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 YFLAGS = -d #LFLAGS = -i --- bin/Makefile.in.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.in 2009-07-16 02:13:39.734487978 -0400 @@ -110,7 +110,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 COMM = @COMM@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ rancid-2.3.2-conf.patch: rancid.conf.sample.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-conf.patch --- --- etc/rancid.conf.sample.in.orig 2007-12-20 13:09:24.000000000 -0500 +++ etc/rancid.conf.sample.in 2009-07-16 02:35:41.962728099 -0400 @@ -18,12 +18,12 @@ # TMPDIR=/tmp; export TMPDIR # Be careful changing this, it affects CVSROOT below. -BASEDIR=@localstatedir@; export BASEDIR +BASEDIR=/var/rancid; export BASEDIR PATH=@bindir@:@ENV_PATH@; export PATH # Location of the CVS/SVN repository. Be careful changing this. CVSROOT=$BASEDIR/CVS; export CVSROOT # Location of log files produced by rancid-run(1). -LOGDIR=$BASEDIR/logs; export LOGDIR +LOGDIR=/var/log/rancid; export LOGDIR # # Select which RCS system to use, "cvs" (default) or "svn". Do not change # this after CVSROOT has been created with rancid-cvs. Changing between these --- NEW FILE rancid.cron --- SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/var/rancid # Run config differ hourly 1 * * * * rancid RANCIDBINDIR/rancid-run --- NEW FILE rancid.logrotate --- /var/log/rancid/* { weekly rotate 1 notifempty missingok compress olddir old } --- NEW FILE rancid.spec --- Name: rancid Version: 2.3.2 Release: 3%{?dist} Summary: Really Awesome New Cisco confIg Differ Group: Applications/Internet License: BSD with advertising URL: http://www.shrubbery.net/rancid/ Source0: ftp://ftp.shrubbery.net/pub/{name}/%{name}-%{version}.tar.gz Source1: %{name}.cron Source2: %{name}.logrotate Patch0: rancid-2.3.2-Makefile.patch Patch1: rancid-2.3.2-conf.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: telnet BuildRequires: rsh BuildRequires: openssh-clients BuildRequires: expect BuildRequires: cvs BuildRequires: subversion BuildRequires: perl BuildRequires: iputils Requires(pre): shadow-utils Requires: findutils Requires: expect Requires: perl Requires: iputils Requires: logrotate %description RANCID monitors a router's (or more generally a device's) configuration, including software and hardware (cards, serial numbers, etc) and uses CVS (Concurrent Version System) or Subversion to maintain history of changes. %prep %setup -q -n %{name}-%{version} %patch0 -p0 %patch1 -p0 %build %configure --sysconfdir=%{_sysconfdir}/%{name} --bindir=%{_libexecdir}/%{name} --enable-conf-install make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" install -d -m 0755 %{buildroot}/%{_localstatedir}/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name}/old install -d -m 0755 %{buildroot}/%{_sysconfdir}/cron.d install -d -m 0755 %{buildroot}/%{_bindir}/ #symlink some bins from %%{_libexecdir}/%%{name} to %%{_bindir} for base in \ %{name} %{name}-cvs %{name}-fe %{name}-run do ln -sf %{_libexecdir}/%{name}/${base} \ %{buildroot}/%{_bindir}/${base} done install -D -p -m 0755 %{SOURCE1} %{buildroot}/%{_sysconfdir}/cron.d/%{name} #Patch cron file to point to correct installation directory sed -i 's|RANCIDBINDIR|%{_libexecdir}/%{name}|g' %{buildroot}/%{_sysconfdir}/cron.d/%{name} install -D -p -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name} %clean rm -rf %{buildroot} %pre getent group %{name} >/dev/null || groupadd -r %{name} getent passwd %{name} >/dev/null || \ useradd -r -g %{name} -d %{_localstatedir}/%{name}/ -s /bin/bash \ -k /etc/skel -m -c "RANCID" %{name} exit 0 %files %defattr(-,root,root,-) %doc CHANGES cloginrc.sample COPYING FAQ README README.lg Todo #%%{_sysconfdir}-files %attr(750,%{name},%{name}) %dir %{_sysconfdir}/%{name} %attr(640,%{name},%{name}) %config(noreplace) %{_sysconfdir}/%{name}/* %attr(644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/%{name} %attr(644,root,root) %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} #%%{_libexecdir}/%%{name}-files %dir %{_libexecdir}/%{name}/ %{_libexecdir}/%{name}/* #%%{_bindir}-files %{_bindir}/* #%%{_mandir}-files %{_mandir}/*/* #%%{_datadir}/%%{name}-files %dir %{_datadir}/%{name}/ %{_datadir}/%{name}/* #%%{_localstatedir}-directories %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name} %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name}/old %attr(750,%{name},%{name}) %dir %{_localstatedir}/%{name}/ %changelog * Wed Jul 22 2009 Gary T. Giesen 2.3.2-3 - Changed GECOS name for rancid user * Wed Jul 22 2009 Gary T. Giesen 2.3.2-2 - Added logrotate (and updated crontab to let logrotate handle log file cleanup - Removed Requires: for rsh, telnet, and openssh-clients - Removed Requires: for cvs - Cleaned up file permissions - Added shell for rancid user for CVS tree creation and troubleshooting - Patch cron file for installation path - Removed installation of CVS root to permit SVN use - Moved from libdir to libexecdir * Thu Jul 16 2009 Gary T. Giesen 2.3.2-1 - Updated to 2.3.2 stable - Removed versioned expect requirement so all supported Fedora/EPEL releases now meet the minimum - Spec file cleanup/style changes * Wed Oct 08 2008 Aage Olai Johnsen 2.3.2-0.6a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.5a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.4a8 - More fixes (#451189) - Patched Makefiles - Supplied by Mamoru Tasaka (mtasaka at ioa.s.u-tokyo.ac.jp) * Tue Sep 23 2008 Aage Olai Johnsen 2.3.2-0.3a8 - More fixes (#451189) * Wed Jul 09 2008 Aage Olai Johnsen 2.3.2a8-0.2a8 - Plenty of fixes (#451189) - Patched rancid.conf-file - Added cronjob * Sat May 31 2008 Aage Olai Johnsen 2.3.2a8-0.1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rancid/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:37:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 06:16:42 -0000 1.2 @@ -0,0 +1 @@ +rancid-2.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rancid/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:37:24 -0000 1.1 +++ sources 27 Jul 2009 06:16:43 -0000 1.2 @@ -0,0 +1 @@ +4e2de3ff6850b311c0e2a442f7ae5d82 rancid-2.3.2.tar.gz From jkeating at fedoraproject.org Mon Jul 27 06:16:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:16:42 +0000 (UTC) Subject: rpms/tremulous-data/devel tremulous-data.spec,1.4,1.5 Message-ID: <20090727061642.A4A7F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tremulous-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5863 Modified Files: tremulous-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tremulous-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/tremulous-data/devel/tremulous-data.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tremulous-data.spec 25 Feb 2009 21:52:49 -0000 1.4 +++ tremulous-data.spec 27 Jul 2009 06:16:42 -0000 1.5 @@ -1,6 +1,6 @@ Name: tremulous-data Version: 1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Data files for tremulous the FPS game Group: Amusements/Games License: CC-BY-SA @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:16:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:16:56 +0000 (UTC) Subject: rpms/trickle/devel trickle.spec,1.6,1.7 Message-ID: <20090727061656.4476B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trickle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6035 Modified Files: trickle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trickle.spec =================================================================== RCS file: /cvs/pkgs/rpms/trickle/devel/trickle.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trickle.spec 25 Feb 2009 21:53:40 -0000 1.6 +++ trickle.spec 27 Jul 2009 06:16:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: trickle Version: 1.07 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Portable lightweight userspace bandwidth shaper Group: Applications/System @@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.07-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:17:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:17:10 +0000 (UTC) Subject: rpms/trilead-ssh2/devel trilead-ssh2.spec,1.3,1.4 Message-ID: <20090727061710.5DB7D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trilead-ssh2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6221 Modified Files: trilead-ssh2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trilead-ssh2.spec =================================================================== RCS file: /cvs/pkgs/rpms/trilead-ssh2/devel/trilead-ssh2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trilead-ssh2.spec 30 Mar 2009 14:07:53 -0000 1.3 +++ trilead-ssh2.spec 27 Jul 2009 06:17:10 -0000 1.4 @@ -3,7 +3,7 @@ Name: trilead-ssh2 Version: 213 -Release: 5%{?dist} +Release: 6%{?dist} Summary: SSH-2 protocol implementation in pure Java Group: Development/Tools @@ -125,6 +125,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 213-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 30 2009 Robert Marcano - 213-5 - Fix Bug 492759, bad javadoc package group From jkeating at fedoraproject.org Mon Jul 27 06:17:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:17:26 +0000 (UTC) Subject: rpms/tripwire/devel tripwire.spec,1.19,1.20 Message-ID: <20090727061726.5EC0911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tripwire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6358 Modified Files: tripwire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tripwire.spec =================================================================== RCS file: /cvs/pkgs/rpms/tripwire/devel/tripwire.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- tripwire.spec 7 Apr 2009 18:56:05 -0000 1.19 +++ tripwire.spec 27 Jul 2009 06:17:26 -0000 1.20 @@ -3,7 +3,7 @@ Name: tripwire Version: 2.4.1.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: IDS (Intrusion Detection System) License: GPLv2+ @@ -146,6 +146,9 @@ done %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4.1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Steven M. Parrish - 2.4.1.2-9 - Added support for /usr/lib64 & /usr/local/lib64 From jkeating at fedoraproject.org Mon Jul 27 06:17:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:17:41 +0000 (UTC) Subject: rpms/tritonus/devel tritonus.spec,1.4,1.5 Message-ID: <20090727061741.6D72111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tritonus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6524 Modified Files: tritonus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tritonus.spec =================================================================== RCS file: /cvs/pkgs/rpms/tritonus/devel/tritonus.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tritonus.spec 8 Jul 2009 08:22:13 -0000 1.4 +++ tritonus.spec 27 Jul 2009 06:17:40 -0000 1.5 @@ -5,7 +5,7 @@ Summary: Java Sound API Implementation URL: http://www.tritonus.org/ Group: System Environment/Libraries Version: 0.3.7 -Release: 0.4.%{cvs_version}%{?dist} +Release: 0.5.%{cvs_version}%{?dist} License: LGPLv2+ Source0: %{name}-%{version}-%{cvs_version}.tar.bz2 Source9: %{name}-snapshot.sh @@ -395,6 +395,9 @@ rm -rf %{buildroot} %{_libdir}/%{name}/lib%{name}vorbis.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.7-0.5.20090419cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Orcan Ogetbil - 0.3.7-0.4.20090419cvs - Fix alsa midi crash RHBZ #510063 - No more rebuilding in %%install From jkeating at fedoraproject.org Mon Jul 27 06:17:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:17:54 +0000 (UTC) Subject: rpms/trophy/devel trophy.spec,1.3,1.4 Message-ID: <20090727061754.7960E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trophy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6658 Modified Files: trophy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trophy.spec =================================================================== RCS file: /cvs/pkgs/rpms/trophy/devel/trophy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trophy.spec 18 May 2009 14:03:54 -0000 1.3 +++ trophy.spec 27 Jul 2009 06:17:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: trophy Version: 1.1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Car racing game with special features Group: Amusements/Games License: GPL+ @@ -70,6 +70,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 1.1.5-4 - Rebuild for new ClanLib From jkeating at fedoraproject.org Mon Jul 27 06:18:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:18:10 +0000 (UTC) Subject: rpms/trousers/devel trousers.spec,1.16,1.17 Message-ID: <20090727061810.2AB7D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trousers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6835 Modified Files: trousers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trousers.spec =================================================================== RCS file: /cvs/pkgs/rpms/trousers/devel/trousers.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- trousers.spec 14 May 2009 13:53:25 -0000 1.16 +++ trousers.spec 27 Jul 2009 06:18:09 -0000 1.17 @@ -1,7 +1,7 @@ Name: trousers Summary: TCG's Software Stack v1.2 Version: 0.3.1 -Release: 17%{?dist} +Release: 18%{?dist} License: CPL Group: System Environment/Libraries Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -126,6 +126,9 @@ fi %{_libdir}/libtddl.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Milos Jakubicek - 0.3.1-17 - Do not overuse macros. - Removed unnecessary file requirements on chkconfig, ldconfig and service, From jkeating at fedoraproject.org Mon Jul 27 06:18:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:18:25 +0000 (UTC) Subject: rpms/trustedqsl/devel trustedqsl.spec,1.3,1.4 Message-ID: <20090727061825.9D12611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trustedqsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6987 Modified Files: trustedqsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trustedqsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/trustedqsl/devel/trustedqsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- trustedqsl.spec 25 Feb 2009 21:57:41 -0000 1.3 +++ trustedqsl.spec 27 Jul 2009 06:18:25 -0000 1.4 @@ -1,6 +1,6 @@ Name: trustedqsl Version: 1.11 -Release: 4%{?dist} +Release: 5%{?dist} Summary: TrustedQSL ham-radio applications Group: Applications/Communications License: BSD @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_datadir}/pixmaps/TrustedQSL.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.11-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:18:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:18:40 +0000 (UTC) Subject: rpms/trustyrc/devel trustyrc.spec,1.4,1.5 Message-ID: <20090727061840.7356F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trustyrc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7176 Modified Files: trustyrc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trustyrc.spec =================================================================== RCS file: /cvs/pkgs/rpms/trustyrc/devel/trustyrc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- trustyrc.spec 19 Apr 2009 01:08:47 -0000 1.4 +++ trustyrc.spec 27 Jul 2009 06:18:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: trustyrc Version: 0.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fully modular IRC robot Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Nicoleau Fabien 0.1.3-1 - Rebuild for 0.1.3 - No more sub packages From jkeating at fedoraproject.org Mon Jul 27 06:18:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:18:54 +0000 (UTC) Subject: rpms/tryton/devel tryton.spec,1.6,1.7 Message-ID: <20090727061854.ADC3611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tryton/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7378 Modified Files: tryton.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tryton.spec =================================================================== RCS file: /cvs/pkgs/rpms/tryton/devel/tryton.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- tryton.spec 10 Jul 2009 13:43:05 -0000 1.6 +++ tryton.spec 27 Jul 2009 06:18:54 -0000 1.7 @@ -2,7 +2,7 @@ Name: tryton Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Client for the Tryton application framework Group: Applications/Productivity @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Dan Hor?k 1.2.1-1 - update to upstream version 1.2.1 From jkeating at fedoraproject.org Mon Jul 27 06:19:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:19:08 +0000 (UTC) Subject: rpms/trytond/devel trytond.spec,1.7,1.8 Message-ID: <20090727061908.E2A3511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trytond/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7535 Modified Files: trytond.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trytond.spec =================================================================== RCS file: /cvs/pkgs/rpms/trytond/devel/trytond.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- trytond.spec 10 Jul 2009 13:45:04 -0000 1.7 +++ trytond.spec 27 Jul 2009 06:19:08 -0000 1.8 @@ -4,7 +4,7 @@ Name: trytond Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Server for the Tryton application framework Group: System Environment/Daemons @@ -137,6 +137,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Dan Hor?k 1.2.1-1 - update to upstream version 1.2.1 From jkeating at fedoraproject.org Mon Jul 27 06:19:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:19:23 +0000 (UTC) Subject: rpms/tsclient/devel tsclient.spec,1.44,1.45 Message-ID: <20090727061923.AC8B411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tsclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7705 Modified Files: tsclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tsclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/tsclient/devel/tsclient.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- tsclient.spec 13 Jun 2009 03:50:00 -0000 1.44 +++ tsclient.spec 27 Jul 2009 06:19:22 -0000 1.45 @@ -8,7 +8,7 @@ Summary: Client for VNC and Windows Terminal Server Name: tsclient Version: 2.0.2 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://sourceforge.net/projects/tsclient Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 @@ -139,6 +139,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Matthias Clasen - 2.0.2-3 - Fix some wrong ids in the glade file to make the ui work (#485976) - Drop unneeded direct deps From jkeating at fedoraproject.org Mon Jul 27 06:19:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:19:38 +0000 (UTC) Subject: rpms/tse3/devel tse3.spec,1.3,1.4 Message-ID: <20090727061938.7082511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tse3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7874 Modified Files: tse3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tse3.spec =================================================================== RCS file: /cvs/pkgs/rpms/tse3/devel/tse3.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- tse3.spec 25 Feb 2009 22:03:11 -0000 1.3 +++ tse3.spec 27 Jul 2009 06:19:38 -0000 1.4 @@ -1,6 +1,6 @@ Name: tse3 Version: 0.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MIDI Sequencer Engine Group: System Environment/Libraries License: GPL+ @@ -115,6 +115,9 @@ rm -rf %{buildroot} %{_libdir}/libtse3.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:19:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:19:49 +0000 (UTC) Subject: rpms/tslib/devel tslib.spec,1.1,1.2 Message-ID: <20090727061949.8C31711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tslib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8003 Modified Files: tslib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tslib.spec =================================================================== RCS file: /cvs/pkgs/rpms/tslib/devel/tslib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tslib.spec 11 Jun 2009 13:26:12 -0000 1.1 +++ tslib.spec 27 Jul 2009 06:19:49 -0000 1.2 @@ -1,6 +1,6 @@ Name: tslib Version: 1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Touchscreen Access Library Group: System Environment/Libraries @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 kwizart < kwizart at gmail.com > - 1.0-1 - Initial package From jkeating at fedoraproject.org Mon Jul 27 06:20:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:20:07 +0000 (UTC) Subject: rpms/ttcp/devel ttcp.spec,1.21,1.22 Message-ID: <20090727062007.C8AEA11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ttcp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8143 Modified Files: ttcp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ttcp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ttcp/devel/ttcp.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- ttcp.spec 25 Feb 2009 22:04:55 -0000 1.21 +++ ttcp.spec 27 Jul 2009 06:20:07 -0000 1.22 @@ -1,7 +1,7 @@ Summary: A tool for testing TCP connections Name: ttcp Version: 1.12 -Release: 19%{?dist} +Release: 20%{?dist} URL: ftp://ftp.sgi.com/sgi/src/ttcp/ Source0: ftp://ftp.sgi.com/sgi/src/ttcp/ttcp.c Source1: ftp://ftp.sgi.com/sgi/src/ttcp/ttcp.1 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:20:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:20:21 +0000 (UTC) Subject: rpms/ttf2pt1/devel ttf2pt1.spec,1.11,1.12 Message-ID: <20090727062021.1F0D911C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ttf2pt1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8305 Modified Files: ttf2pt1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ttf2pt1.spec =================================================================== RCS file: /cvs/pkgs/rpms/ttf2pt1/devel/ttf2pt1.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ttf2pt1.spec 25 Feb 2009 22:06:00 -0000 1.11 +++ ttf2pt1.spec 27 Jul 2009 06:20:20 -0000 1.12 @@ -1,6 +1,6 @@ Name: ttf2pt1 Version: 3.4.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: TrueType to Adobe Type 1 font converter Group: Applications/Publishing @@ -71,6 +71,9 @@ rm -rf %buildroot %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.4.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.4.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:20:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:20:38 +0000 (UTC) Subject: rpms/ttmkfdir/devel ttmkfdir.spec,1.34,1.35 Message-ID: <20090727062038.A2AFB11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ttmkfdir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8462 Modified Files: ttmkfdir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ttmkfdir.spec =================================================================== RCS file: /cvs/pkgs/rpms/ttmkfdir/devel/ttmkfdir.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- ttmkfdir.spec 24 Jun 2009 07:09:21 -0000 1.34 +++ ttmkfdir.spec 27 Jul 2009 06:20:38 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Utility to create fonts.scale files for truetype fonts Name: ttmkfdir Version: 3.0.9 -Release: 31%{?dist} +Release: 32%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ttmkfdir %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.9-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 24 2009 Jens Petersen - 3.0.9-31 - simplify ttmkfdir-3.0.9-encoding-dir.patch to drop X11R6/ check (#173705) From jkeating at fedoraproject.org Mon Jul 27 06:20:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:20:52 +0000 (UTC) Subject: rpms/ttywatch/devel ttywatch.spec,1.9,1.10 Message-ID: <20090727062052.CF49911C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ttywatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8587 Modified Files: ttywatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ttywatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/ttywatch/devel/ttywatch.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ttywatch.spec 25 Feb 2009 22:08:04 -0000 1.9 +++ ttywatch.spec 27 Jul 2009 06:20:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: ttywatch Version: 0.14 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Log output of arbitrarily many devices License: GPLv2+ Group: System Environment/Daemons @@ -83,6 +83,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.14-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.14-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:21:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:21:08 +0000 (UTC) Subject: rpms/tucan/devel tucan.spec,1.2,1.3 Message-ID: <20090727062108.6129F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tucan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8731 Modified Files: tucan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tucan.spec =================================================================== RCS file: /cvs/pkgs/rpms/tucan/devel/tucan.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- tucan.spec 17 Jul 2009 20:38:39 -0000 1.2 +++ tucan.spec 27 Jul 2009 06:21:08 -0000 1.3 @@ -1,7 +1,7 @@ %global langs de en es it pl pt sk Name: tucan Version: 0.3.8 -Release: 0.1.alpha%{?dist} +Release: 0.2.alpha%{?dist} Summary: Manager for downloads and uploads at hosting sites Group: Applications/Internet @@ -95,6 +95,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.8-0.2.alpha +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Simon Wesp - 0.3.8-0.1.alpha - New upstream release - Close to tray as default RHBZ #502416 (feature request) From jkeating at fedoraproject.org Mon Jul 27 06:21:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:21:20 +0000 (UTC) Subject: rpms/tucnak2/devel tucnak2.spec,1.1,1.2 Message-ID: <20090727062120.3776511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tucnak2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8879 Modified Files: tucnak2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tucnak2.spec =================================================================== RCS file: /cvs/pkgs/rpms/tucnak2/devel/tucnak2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tucnak2.spec 19 Mar 2009 05:53:54 -0000 1.1 +++ tucnak2.spec 27 Jul 2009 06:21:19 -0000 1.2 @@ -1,6 +1,6 @@ Name: tucnak2 Version: 2.25 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VHF contest logging program Group: Applications/Communications @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 12 2009 Lucian Langa - 2.25-1 - new upstream release - update patch0 From jkeating at fedoraproject.org Mon Jul 27 06:21:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:21:33 +0000 (UTC) Subject: rpms/tulrich-tuffy-fonts/devel tulrich-tuffy-fonts.spec,1.1,1.2 Message-ID: <20090727062133.D6C7611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tulrich-tuffy-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9067 Modified Files: tulrich-tuffy-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tulrich-tuffy-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/tulrich-tuffy-fonts/devel/tulrich-tuffy-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tulrich-tuffy-fonts.spec 6 Apr 2009 15:40:13 -0000 1.1 +++ tulrich-tuffy-fonts.spec 27 Jul 2009 06:21:33 -0000 1.2 @@ -3,7 +3,7 @@ Name: %{fontname}-fonts Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generic sans font Group: User Interface/X @@ -67,6 +67,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Toshio Kuratomi - 1.1-3 - Change fontconfig file to use "sans-serif" generic. From jkeating at fedoraproject.org Mon Jul 27 06:21:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:21:47 +0000 (UTC) Subject: rpms/tunctl/devel tunctl.spec,1.5,1.6 Message-ID: <20090727062147.1A66711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tunctl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9211 Modified Files: tunctl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tunctl.spec =================================================================== RCS file: /cvs/pkgs/rpms/tunctl/devel/tunctl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tunctl.spec 25 Feb 2009 22:09:46 -0000 1.5 +++ tunctl.spec 27 Jul 2009 06:21:46 -0000 1.6 @@ -1,6 +1,6 @@ Name: tunctl Version: 1.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Create and remove virtual network interfaces Group: Applications/System @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %doc ChangeLog %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:21:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:21:59 +0000 (UTC) Subject: rpms/tuned/devel tuned.spec,1.4,1.5 Message-ID: <20090727062159.53C0F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuned/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9327 Modified Files: tuned.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuned.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuned/devel/tuned.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tuned.spec 13 Jul 2009 15:27:50 -0000 1.4 +++ tuned.spec 27 Jul 2009 06:21:59 -0000 1.5 @@ -1,7 +1,7 @@ Summary: A dynamic adaptive system tuning daemon Name: tuned Version: 0.1.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Daemons # The source for this package was pulled from upstream git. Use the @@ -83,6 +83,9 @@ fi %{_sbindir}/varnetload %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Marcela Ma?l??ov? - 0.1.6-1 - on popular demand update to the latest release with brand new scomes and varnetload From jkeating at fedoraproject.org Mon Jul 27 06:22:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:22:10 +0000 (UTC) Subject: rpms/tunneler/devel tunneler.spec,1.4,1.5 Message-ID: <20090727062210.F252811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tunneler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9455 Modified Files: tunneler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tunneler.spec =================================================================== RCS file: /cvs/pkgs/rpms/tunneler/devel/tunneler.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tunneler.spec 25 Feb 2009 22:10:52 -0000 1.4 +++ tunneler.spec 27 Jul 2009 06:22:10 -0000 1.5 @@ -1,6 +1,6 @@ Name: tunneler Version: 1.1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Clone of legendary Tunneler game Group: Amusements/Games @@ -65,6 +65,9 @@ touch --no-create %{_datadir}/icons/hico %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:22:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:22:23 +0000 (UTC) Subject: rpms/turba/devel turba.spec,1.9,1.10 Message-ID: <20090727062223.4DA8A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/turba/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9558 Modified Files: turba.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: turba.spec =================================================================== RCS file: /cvs/pkgs/rpms/turba/devel/turba.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- turba.spec 25 Feb 2009 22:11:49 -0000 1.9 +++ turba.spec 27 Jul 2009 06:22:23 -0000 1.10 @@ -1,6 +1,6 @@ Name: turba Version: 2.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Horde contact management application Source0: ftp://ftp.horde.org/pub/%{name}/tarballs/%{name}-h3-%{version}.tar.gz @@ -80,6 +80,9 @@ rm -rf %{buildroot} %{_datadir}/horde/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:22:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:22:38 +0000 (UTC) Subject: rpms/tuxcmd/devel tuxcmd.spec,1.15,1.16 Message-ID: <20090727062238.48E9D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxcmd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9727 Modified Files: tuxcmd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxcmd.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxcmd/devel/tuxcmd.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- tuxcmd.spec 10 Apr 2009 12:06:37 -0000 1.15 +++ tuxcmd.spec 27 Jul 2009 06:22:37 -0000 1.16 @@ -1,6 +1,6 @@ Name: tuxcmd Version: 0.6.62 -Release: git20090409.2%{?dist} +Release: git20090409.2%{?dist}.1 Summary: Tux Commander: file manager with 2 panels side by side using GTK2 Group: Applications/File @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.62-git20090409.2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Tomas Bzatek 0.6.62-git20090409.2 - Fix vfs modules detection on 64bit archs - Remove unnecessary Requires (#473992) From jkeating at fedoraproject.org Mon Jul 27 06:22:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:22:49 +0000 (UTC) Subject: rpms/tuxguitar/devel tuxguitar.spec,1.4,1.5 Message-ID: <20090727062249.452FD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxguitar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9868 Modified Files: tuxguitar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxguitar.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxguitar/devel/tuxguitar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- tuxguitar.spec 4 Apr 2009 23:46:51 -0000 1.4 +++ tuxguitar.spec 27 Jul 2009 06:22:49 -0000 1.5 @@ -3,7 +3,7 @@ Summary: A multitrack tablature editor and player written in Java-SWT Name: tuxguitar Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.tuxguitar.com.ar Source0: http://downloads.sourceforge.net/%{name}/%{name}-src-%{version}.tar.gz Source9: %{name}.desktop @@ -176,6 +176,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 04 2009 Orcan Ogetbil > - 1.1-1 - New upstream version - Clean-up the SPEC file From jkeating at fedoraproject.org Mon Jul 27 06:23:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:23:00 +0000 (UTC) Subject: rpms/tuxmath/devel tuxmath.spec,1.1,1.2 Message-ID: <20090727062300.5F33F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxmath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10001 Modified Files: tuxmath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxmath.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxmath/devel/tuxmath.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tuxmath.spec 12 Jun 2009 05:48:04 -0000 1.1 +++ tuxmath.spec 27 Jul 2009 06:22:59 -0000 1.2 @@ -1,6 +1,6 @@ Name: tuxmath Version: 1.7.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Educational math tutor for children Group: Amusements/Games @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Johan Cwiklinski - 1.7.2-4 - remove fonts licence as shipped fonts has been removed From jkeating at fedoraproject.org Mon Jul 27 06:23:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:23:16 +0000 (UTC) Subject: rpms/tuxpaint/devel tuxpaint.spec,1.23,1.24 Message-ID: <20090727062316.9F00B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxpaint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10153 Modified Files: tuxpaint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxpaint.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxpaint/devel/tuxpaint.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- tuxpaint.spec 25 Feb 2009 22:14:52 -0000 1.23 +++ tuxpaint.spec 27 Jul 2009 06:23:16 -0000 1.24 @@ -1,6 +1,6 @@ Name: tuxpaint Version: 0.9.20 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Drawing program designed for young children @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/tuxpaint/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:0.9.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.9.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:23:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:23:28 +0000 (UTC) Subject: rpms/tuxpaint-stamps/devel tuxpaint-stamps.spec,1.5,1.6 Message-ID: <20090727062328.6B64B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxpaint-stamps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10287 Modified Files: tuxpaint-stamps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxpaint-stamps.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxpaint-stamps/devel/tuxpaint-stamps.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- tuxpaint-stamps.spec 25 Feb 2009 22:15:55 -0000 1.5 +++ tuxpaint-stamps.spec 27 Jul 2009 06:23:28 -0000 1.6 @@ -1,6 +1,6 @@ Name: tuxpaint-stamps Version: 2008.06.30 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Extra stamp files for tuxpaint Group: Applications/Multimedia License: GPL+ and GFDL and CC-BY-SA and Public Domain @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/tuxpaint/stamps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2008.06.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2008.06.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:23:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:23:40 +0000 (UTC) Subject: rpms/tuxpuck/devel tuxpuck.spec,1.7,1.8 Message-ID: <20090727062340.4315011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxpuck/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10434 Modified Files: tuxpuck.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxpuck.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxpuck/devel/tuxpuck.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- tuxpuck.spec 25 Feb 2009 22:16:59 -0000 1.7 +++ tuxpuck.spec 27 Jul 2009 06:23:40 -0000 1.8 @@ -1,6 +1,6 @@ Name: tuxpuck Version: 0.8.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: 3D Shufflepuck Pong Game Group: Amusements/Games @@ -65,6 +65,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/32x32/apps/tuxpuck.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:23:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:23:52 +0000 (UTC) Subject: rpms/tuxtype2/devel tuxtype2.spec,1.13,1.14 Message-ID: <20090727062352.3CAE911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tuxtype2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10549 Modified Files: tuxtype2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tuxtype2.spec =================================================================== RCS file: /cvs/pkgs/rpms/tuxtype2/devel/tuxtype2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- tuxtype2.spec 25 Feb 2009 22:18:03 -0000 1.13 +++ tuxtype2.spec 27 Jul 2009 06:23:52 -0000 1.14 @@ -1,6 +1,6 @@ Name: tuxtype2 Version: 1.5.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tux Typing, an educational typing tutor for children Group: Amusements/Games @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/tuxtype %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:24:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:24:04 +0000 (UTC) Subject: rpms/tvtime/devel tvtime.spec,1.44,1.45 Message-ID: <20090727062404.88CA911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tvtime/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10688 Modified Files: tvtime.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tvtime.spec =================================================================== RCS file: /cvs/pkgs/rpms/tvtime/devel/tvtime.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- tvtime.spec 9 Jul 2009 07:09:44 -0000 1.44 +++ tvtime.spec 27 Jul 2009 06:24:04 -0000 1.45 @@ -1,7 +1,7 @@ Summary: A high quality TV viewer Name: tvtime Version: 1.0.2 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ and LGPLv2+ Group: Applications/Multimedia URL: http://tvtime.sourceforge.net @@ -127,6 +127,9 @@ rm -rf %{buildroot} %{_bindir}/tvtime %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Tomas Smetana 1.0.2-11 - fix a typo in the default config file From jkeating at fedoraproject.org Mon Jul 27 06:24:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:24:18 +0000 (UTC) Subject: rpms/twinkle/devel twinkle.spec,1.22,1.23 Message-ID: <20090727062418.8061E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/twinkle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10856 Modified Files: twinkle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: twinkle.spec =================================================================== RCS file: /cvs/pkgs/rpms/twinkle/devel/twinkle.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- twinkle.spec 2 Apr 2009 06:56:51 -0000 1.22 +++ twinkle.spec 27 Jul 2009 06:24:18 -0000 1.23 @@ -1,6 +1,6 @@ Name: twinkle Version: 1.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A SIP Soft Phone Group: Applications/Internet @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Manuel "lonely wolf" Wolfshant 1.4.2-2 - adapt for EL-5 From jkeating at fedoraproject.org Mon Jul 27 06:24:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:24:30 +0000 (UTC) Subject: rpms/twitter-glib/devel twitter-glib.spec,1.1,1.2 Message-ID: <20090727062430.A995E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/twitter-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10994 Modified Files: twitter-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: twitter-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/twitter-glib/devel/twitter-glib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- twitter-glib.spec 18 Jun 2009 21:23:48 -0000 1.1 +++ twitter-glib.spec 27 Jul 2009 06:24:30 -0000 1.2 @@ -1,6 +1,6 @@ Name: twitter-glib Version: 0.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library wrapping the Twitter RESTful API Group: System Environment/Libraries @@ -65,5 +65,8 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/twitter-glib %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Peter Robinson 0.9.8-1 - Initial packaging From jkeating at fedoraproject.org Mon Jul 27 06:24:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:24:42 +0000 (UTC) Subject: rpms/twitux/devel twitux.spec,1.12,1.13 Message-ID: <20090727062442.9F01B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/twitux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11151 Modified Files: twitux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: twitux.spec =================================================================== RCS file: /cvs/pkgs/rpms/twitux/devel/twitux.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- twitux.spec 25 Feb 2009 22:21:18 -0000 1.12 +++ twitux.spec 27 Jul 2009 06:24:42 -0000 1.13 @@ -1,6 +1,6 @@ Name: twitux Version: 0.69 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Twitux is a Twitter client for the Gnome desktop Group: Applications/Internet @@ -114,6 +114,9 @@ scrollkeeper-update -q || : %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.69-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.69-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:24:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:24:52 +0000 (UTC) Subject: rpms/txt2man/devel txt2man.spec,1.1,1.2 Message-ID: <20090727062452.F202011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/txt2man/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11268 Modified Files: txt2man.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: txt2man.spec =================================================================== RCS file: /cvs/pkgs/rpms/txt2man/devel/txt2man.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- txt2man.spec 5 Mar 2009 21:09:21 -0000 1.1 +++ txt2man.spec 27 Jul 2009 06:24:52 -0000 1.2 @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 04 2009 Sindre Pedersen Bjordal - 1.5.5-1 - Initial build - Include debian patch to fix bashisms From jkeating at fedoraproject.org Mon Jul 27 06:25:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:25:05 +0000 (UTC) Subject: rpms/txt2rss/devel txt2rss.spec,1.2,1.3 Message-ID: <20090727062505.235A411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/txt2rss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11423 Modified Files: txt2rss.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: txt2rss.spec =================================================================== RCS file: /cvs/pkgs/rpms/txt2rss/devel/txt2rss.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- txt2rss.spec 25 Feb 2009 22:22:13 -0000 1.2 +++ txt2rss.spec 27 Jul 2009 06:25:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: txt2rss Version: 0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert from txt to rss Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:25:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:25:17 +0000 (UTC) Subject: rpms/txt2tags/devel txt2tags.spec,1.5,1.6 Message-ID: <20090727062517.528C711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/txt2tags/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11567 Modified Files: txt2tags.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: txt2tags.spec =================================================================== RCS file: /cvs/pkgs/rpms/txt2tags/devel/txt2tags.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- txt2tags.spec 25 Feb 2009 22:23:15 -0000 1.5 +++ txt2tags.spec 27 Jul 2009 06:25:16 -0000 1.6 @@ -1,7 +1,7 @@ Name: txt2tags Summary: Summary: Converts text files to HTML, XHTML, LaTeX, and other formats Version: 2.5 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/Text URL: http://txt2tags.sourceforge.net/ @@ -118,6 +118,9 @@ done %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:25:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:25:36 +0000 (UTC) Subject: rpms/typespeed/devel typespeed.spec,1.3,1.4 Message-ID: <20090727062536.CE93611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/typespeed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11696 Modified Files: typespeed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: typespeed.spec =================================================================== RCS file: /cvs/pkgs/rpms/typespeed/devel/typespeed.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- typespeed.spec 25 Feb 2009 22:24:29 -0000 1.3 +++ typespeed.spec 27 Jul 2009 06:25:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: typespeed Version: 0.6.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Test your typing speed and get your fingers' CPS Group: Applications/Productivity @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:25:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:25:49 +0000 (UTC) Subject: rpms/tzdata/devel tzdata.spec,1.84,1.85 Message-ID: <20090727062549.55C7011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tzdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11892 Modified Files: tzdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tzdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/tzdata/devel/tzdata.spec,v retrieving revision 1.84 retrieving revision 1.85 diff -u -p -r1.84 -r1.85 --- tzdata.spec 20 Jul 2009 15:38:27 -0000 1.84 +++ tzdata.spec 27 Jul 2009 06:25:49 -0000 1.85 @@ -3,7 +3,7 @@ Name: tzdata Version: 2009k %define tzdata_version %{version} %define tzcode_version %{version} -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain Group: System Environment/Base URL: ftp://elsie.nci.nih.gov/pub/ @@ -107,6 +107,9 @@ rm -rf %{buildroot} %{_datadir}/javazi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2009k-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Petr Machata - 2009k-1 - Upstream 2009k - Mauritius will not continue to observe DST the coming summer From jkeating at fedoraproject.org Mon Jul 27 06:26:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:26:07 +0000 (UTC) Subject: rpms/ucarp/devel ucarp.spec,1.19,1.20 Message-ID: <20090727062607.25AC211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ucarp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12109 Modified Files: ucarp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ucarp.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucarp/devel/ucarp.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ucarp.spec 8 Jul 2009 18:39:20 -0000 1.19 +++ ucarp.spec 27 Jul 2009 06:26:06 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Common Address Redundancy Protocol (CARP) for Unix Name: ucarp Version: 1.5.1 -Release: 1%{?dist} +Release: 2%{?dist} # See the COPYING file which details everything License: MIT and BSD Group: System Environment/Daemons @@ -98,6 +98,9 @@ fi %{_sbindir}/ucarp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Jon Ciesla - 1.5.1-1 - New upstream. - New option (--nomcast / -M) to use broadcast From jkeating at fedoraproject.org Mon Jul 27 06:26:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:26:21 +0000 (UTC) Subject: rpms/ucblogo/devel ucblogo.spec,1.14,1.15 Message-ID: <20090727062621.2402211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ucblogo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12263 Modified Files: ucblogo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ucblogo.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucblogo/devel/ucblogo.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- ucblogo.spec 25 Feb 2009 22:27:36 -0000 1.14 +++ ucblogo.spec 27 Jul 2009 06:26:21 -0000 1.15 @@ -1,6 +1,6 @@ Name: ucblogo Version: 6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An interpreter for the Logo programming language Group: Development/Languages @@ -143,6 +143,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:26:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:26:36 +0000 (UTC) Subject: rpms/ucl/devel ucl.spec,1.12,1.13 Message-ID: <20090727062636.D45E811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ucl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12438 Modified Files: ucl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ucl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucl/devel/ucl.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ucl.spec 25 Feb 2009 22:28:38 -0000 1.12 +++ ucl.spec 27 Jul 2009 06:26:36 -0000 1.13 @@ -1,6 +1,6 @@ Name: ucl Version: 1.03 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Portable lossless data compression library Group: System Environment/Libraries @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.03-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.03-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:26:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:26:49 +0000 (UTC) Subject: rpms/ucommon/devel ucommon.spec,1.1,1.2 Message-ID: <20090727062649.14B0511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ucommon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12595 Modified Files: ucommon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ucommon.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucommon/devel/ucommon.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ucommon.spec 13 May 2009 12:19:07 -0000 1.1 +++ ucommon.spec 27 Jul 2009 06:26:48 -0000 1.2 @@ -11,7 +11,7 @@ Name: ucommon Summary: Portable C++ runtime for threads and sockets Version: 2.0.5 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv3+ URL: http://www.gnu.org/software/commoncpp Source0: http://www.gnutelephony.org/dist/tarballs/ucommon-%{version}.tar.gz @@ -86,6 +86,9 @@ html browsable. %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 - David Sugar - 1.0.5-4 - removed static libraries, fixed other build issues (#498736) From jkeating at fedoraproject.org Mon Jul 27 06:27:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:27:04 +0000 (UTC) Subject: rpms/ucview/devel ucview.spec,1.9,1.10 Message-ID: <20090727062705.0032111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ucview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12766 Modified Files: ucview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ucview.spec =================================================================== RCS file: /cvs/pkgs/rpms/ucview/devel/ucview.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- ucview.spec 24 May 2009 02:18:47 -0000 1.9 +++ ucview.spec 27 Jul 2009 06:27:04 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Image and video capture application using unicap toolkit Name: ucview Version: 0.23 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.unicap-imaging.org/ @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/%{name}.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 24 2009 Robert Scheck 0.23-2 - Readded wrongly removed build requirement to dbus-glib-devel From jkeating at fedoraproject.org Mon Jul 27 06:27:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:27:18 +0000 (UTC) Subject: rpms/udev-extras/devel udev-extras.spec,1.14,1.15 Message-ID: <20090727062718.59C3411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/udev-extras/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12903 Modified Files: udev-extras.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: udev-extras.spec =================================================================== RCS file: /cvs/pkgs/rpms/udev-extras/devel/udev-extras.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- udev-extras.spec 8 Jun 2009 21:25:58 -0000 1.14 +++ udev-extras.spec 27 Jul 2009 06:27:18 -0000 1.15 @@ -4,7 +4,7 @@ Summary: Extra rules and tools for udev Name: udev-extras Version: 20090516 -Release: 0.5.20090601git%{?dist} +Release: 0.6.20090601git%{?dist} # Source from http://git.kernel.org/?p=linux/hotplug/udev-extras.git Source: udev-extras-20090516-git20090601.tar.bz2 License: GPLv2 and GPLv2+ @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090516-0.6.20090601git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 1 2009 Dan Williams 20090516-0.5.20090601git - Update to snapshot from git for gudev From jkeating at fedoraproject.org Mon Jul 27 06:27:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:27:32 +0000 (UTC) Subject: rpms/udftools/devel udftools.spec,1.13,1.14 Message-ID: <20090727062732.0BF4911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/udftools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13044 Modified Files: udftools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: udftools.spec =================================================================== RCS file: /cvs/pkgs/rpms/udftools/devel/udftools.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- udftools.spec 25 Feb 2009 22:33:17 -0000 1.13 +++ udftools.spec 27 Jul 2009 06:27:31 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Linux UDF Filesystem userspace utilities Name: udftools Version: 1.0.0b3 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Archiving URL: http://sourceforge.net/projects/linux-udf/ @@ -53,6 +53,9 @@ Linux UDF Filesystem userspace utilities %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.0b3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0b3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:27:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:27:45 +0000 (UTC) Subject: rpms/udns/devel udns.spec,1.3,1.4 Message-ID: <20090727062745.7283311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/udns/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13178 Modified Files: udns.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: udns.spec =================================================================== RCS file: /cvs/pkgs/rpms/udns/devel/udns.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- udns.spec 25 Feb 2009 22:35:10 -0000 1.3 +++ udns.spec 27 Jul 2009 06:27:45 -0000 1.4 @@ -1,7 +1,7 @@ Summary: DNS resolver library for both synchronous and asynchronous DNS queries Name: udns Version: 0.0.9 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.corpit.ru/mjt/udns.html @@ -59,6 +59,9 @@ CFLAGS="%{optflags}" ./configure --enabl %{_libdir}/libudns.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:27:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:27:56 +0000 (UTC) Subject: rpms/udpcast/devel udpcast.spec,1.2,1.3 Message-ID: <20090727062756.77B0511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/udpcast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13281 Modified Files: udpcast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: udpcast.spec =================================================================== RCS file: /cvs/pkgs/rpms/udpcast/devel/udpcast.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- udpcast.spec 25 Feb 2009 22:36:15 -0000 1.2 +++ udpcast.spec 27 Jul 2009 06:27:56 -0000 1.3 @@ -1,7 +1,7 @@ Name: udpcast Summary: UDP broadcast file distribution and installation Version: 20071228 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ and BSD Group: Applications/System URL: http://udpcast.linux.lu/ @@ -49,6 +49,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20071228-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20071228-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:28:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:28:08 +0000 (UTC) Subject: rpms/udunits/devel udunits.spec,1.20,1.21 Message-ID: <20090727062808.2A2EE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/udunits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13412 Modified Files: udunits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: udunits.spec =================================================================== RCS file: /cvs/pkgs/rpms/udunits/devel/udunits.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- udunits.spec 28 May 2009 09:36:48 -0000 1.20 +++ udunits.spec 27 Jul 2009 06:28:08 -0000 1.21 @@ -1,6 +1,6 @@ Name: udunits Version: 1.12.9 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 Summary: A library for manipulating units of physical quantities License: MIT Group: System Environment/Libraries @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/udunitsperl.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12.9-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Karsten Hopp 1.12.9-3.1 - apply multilib patch on s390x, too From jkeating at fedoraproject.org Mon Jul 27 06:28:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:28:18 +0000 (UTC) Subject: rpms/ufiformat/devel ufiformat.spec,1.2,1.3 Message-ID: <20090727062818.E803311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ufiformat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13525 Modified Files: ufiformat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ufiformat.spec =================================================================== RCS file: /cvs/pkgs/rpms/ufiformat/devel/ufiformat.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ufiformat.spec 25 Feb 2009 22:38:40 -0000 1.2 +++ ufiformat.spec 27 Jul 2009 06:28:18 -0000 1.3 @@ -1,6 +1,6 @@ Name: ufiformat Version: 0.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Disk formatting utility for USB floppy devices Group: Applications/System @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:28:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:28:32 +0000 (UTC) Subject: rpms/ufraw/devel ufraw.spec,1.42,1.43 Message-ID: <20090727062832.599AC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ufraw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13645 Modified Files: ufraw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ufraw.spec =================================================================== RCS file: /cvs/pkgs/rpms/ufraw/devel/ufraw.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- ufraw.spec 2 Mar 2009 16:04:43 -0000 1.42 +++ ufraw.spec 27 Jul 2009 06:28:32 -0000 1.43 @@ -36,7 +36,7 @@ Summary: Raw image data retrieval tool for digital cameras Name: ufraw Version: 0.15 -Release: 2%{?dist} +Release: 3%{?dist} Group: Applications/Multimedia License: GPLv2+ URL: http://ufraw.sourceforge.net @@ -229,6 +229,9 @@ update-desktop-database >& /dev/null || %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Nils Philippsen - 0.15-2 - fix building with gcc-4.4 From jkeating at fedoraproject.org Mon Jul 27 06:28:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:28:44 +0000 (UTC) Subject: rpms/ugene/devel ugene.spec,1.7,1.8 Message-ID: <20090727062844.E26D311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ugene/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13794 Modified Files: ugene.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ugene.spec =================================================================== RCS file: /cvs/pkgs/rpms/ugene/devel/ugene.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ugene.spec 17 Jul 2009 13:18:59 -0000 1.7 +++ ugene.spec 27 Jul 2009 06:28:44 -0000 1.8 @@ -1,7 +1,7 @@ Name: ugene Summary: Integrated bioinformatics toolkit Version: 1.5.1 -Release: 1%{?dist} +Release: 2%{?dist} #The entire source code is GPLv2+ except: #file src/libs_3rdparty/qtbindings_core/src/qtscriptconcurrent.h which is GPLv2 #files in src/plugins_3rdparty/script_debuger/src/qtscriptdebug/ which are GPLv2 @@ -53,6 +53,9 @@ rm -rf %{buildroot} %doc COPYRIGHT LICENSE %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Ivan Efremov - 1.5.1-1 - Upstream version change - Fix for lrelease removed due to upstream package changes From jkeating at fedoraproject.org Mon Jul 27 06:28:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:28:59 +0000 (UTC) Subject: rpms/uim/devel uim.spec,1.72,1.73 Message-ID: <20090727062859.84F2E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13918 Modified Files: uim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uim.spec =================================================================== RCS file: /cvs/pkgs/rpms/uim/devel/uim.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- uim.spec 27 Feb 2009 09:02:14 -0000 1.72 +++ uim.spec 27 Jul 2009 06:28:58 -0000 1.73 @@ -3,7 +3,7 @@ Name: uim Version: 1.5.5 -Release: 1%{?dist} +Release: 2%{?dist} # uim itself is licensed under BSD # scm/py.scm, helper/eggtrayicon.[ch], qt/pref-kseparator.{cpp,h} # and qt/chardict/chardict-kseparator.{cpp,h} is licensed under LGPLv2+ @@ -518,6 +518,9 @@ fi %dir %{_datadir}/uim %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Akira TAGOH - 1.5.5-1 - New upstream release. From jkeating at fedoraproject.org Mon Jul 27 06:29:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:29:11 +0000 (UTC) Subject: rpms/uisp/devel uisp.spec,1.5,1.6 Message-ID: <20090727062911.F071111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uisp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14079 Modified Files: uisp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uisp.spec =================================================================== RCS file: /cvs/pkgs/rpms/uisp/devel/uisp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- uisp.spec 25 Feb 2009 22:43:16 -0000 1.5 +++ uisp.spec 27 Jul 2009 06:29:11 -0000 1.6 @@ -1,6 +1,6 @@ Name: uisp Version: 20050207 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal In-System Programmer for Atmel AVR and 8051 @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20050207-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20050207-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:29:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:29:26 +0000 (UTC) Subject: rpms/ularn/devel ularn.spec,1.12,1.13 Message-ID: <20090727062926.A3A0211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ularn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14219 Modified Files: ularn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ularn.spec =================================================================== RCS file: /cvs/pkgs/rpms/ularn/devel/ularn.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- ularn.spec 1 Mar 2009 10:48:36 -0000 1.12 +++ ularn.spec 27 Jul 2009 06:29:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: ularn Version: 1.5p4 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Simple roguelike game Group: Amusements/Games @@ -93,6 +93,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5p4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Caol?n McNamara - 1.5p4-14 - . config.h.SH -> . ./config.h.SH for new bash From jkeating at fedoraproject.org Mon Jul 27 06:29:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:29:41 +0000 (UTC) Subject: rpms/ulogd/devel ulogd.spec,1.24,1.25 Message-ID: <20090727062941.71A0B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ulogd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14379 Modified Files: ulogd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ulogd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ulogd/devel/ulogd.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- ulogd.spec 25 Feb 2009 22:45:35 -0000 1.24 +++ ulogd.spec 27 Jul 2009 06:29:41 -0000 1.25 @@ -1,6 +1,6 @@ Name: ulogd Version: 1.24 -Release: 11%{?dist} +Release: 12%{?dist} Summary: The userspace logging daemon for netfilter License: GPLv2 Group: System Environment/Daemons @@ -141,6 +141,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/ulogd/ulogd_PCAP.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.24-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.24-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:29:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:29:54 +0000 (UTC) Subject: rpms/ultimatestunts/devel ultimatestunts.spec,1.6,1.7 Message-ID: <20090727062954.8840711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ultimatestunts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14531 Modified Files: ultimatestunts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ultimatestunts.spec =================================================================== RCS file: /cvs/pkgs/rpms/ultimatestunts/devel/ultimatestunts.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- ultimatestunts.spec 25 Feb 2009 22:46:42 -0000 1.6 +++ ultimatestunts.spec 27 Jul 2009 06:29:54 -0000 1.7 @@ -2,7 +2,7 @@ Name: ultimatestunts Version: 0.7.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Remake of the famous DOS-game Stunts Group: Amusements/Games @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:30:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:30:10 +0000 (UTC) Subject: rpms/uml_utilities/devel uml_utilities.spec,1.2,1.3 Message-ID: <20090727063010.0FE3D11C043B@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uml_utilities/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14743 Modified Files: uml_utilities.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uml_utilities.spec =================================================================== RCS file: /cvs/pkgs/rpms/uml_utilities/devel/uml_utilities.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- uml_utilities.spec 3 Mar 2009 20:23:40 -0000 1.2 +++ uml_utilities.spec 27 Jul 2009 06:30:09 -0000 1.3 @@ -1,6 +1,6 @@ Name: uml_utilities Version: 20070815 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ URL: http://user-mode-linux.sourceforge.net/index.html Source0: http://user-mode-linux.sourceforge.net/%{name}_%{version}.tar.bz2 @@ -63,6 +63,9 @@ getent group uml-net >/dev/null || group exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20070815-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Paul Wouters - 20070815-5 - Limited setuid binary to only members of the uml-net group From jkeating at fedoraproject.org Mon Jul 27 06:30:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:30:26 +0000 (UTC) Subject: rpms/un-core-fonts/devel un-core-fonts.spec,1.5,1.6 Message-ID: <20090727063026.D83A211C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/un-core-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14904 Modified Files: un-core-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: un-core-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/un-core-fonts/devel/un-core-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- un-core-fonts.spec 26 Jun 2009 06:45:39 -0000 1.5 +++ un-core-fonts.spec 27 Jul 2009 06:30:26 -0000 1.6 @@ -32,7 +32,7 @@ Core ??: \ Name: %{fontname}-fonts Version: 1.0.2 -Release: 0.9.%{alphatag}%{?dist} +Release: 0.10.%{alphatag}%{?dist} Summary: Un Core family of Korean TrueType fonts Summary(ko): ?? ??? Core ?? @@ -224,6 +224,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-0.10.080608 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Jens Petersen - 1.0.2-0.9.080608 - update to new fonts packaging and naming (#477474) - moved bold (and light) weights into main subpackages (#468618) From jkeating at fedoraproject.org Mon Jul 27 06:14:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:14:15 +0000 (UTC) Subject: rpms/transifex/devel transifex.spec,1.9,1.10 Message-ID: <20090727061415.0FE2E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/transifex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3930 Modified Files: transifex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: transifex.spec =================================================================== RCS file: /cvs/pkgs/rpms/transifex/devel/transifex.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- transifex.spec 27 Jun 2009 02:54:27 -0000 1.9 +++ transifex.spec 27 Jul 2009 06:14:14 -0000 1.10 @@ -2,7 +2,7 @@ Name: transifex Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A system for distributed translation submissions Group: Applications/Internet @@ -186,6 +186,9 @@ fi %dir %{_localstatedir}/lib/%{name}/scratchdir/sources/git %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Ignacio Vazquez-Abrams 0.6-2 - Disabled docs for now From jkeating at fedoraproject.org Mon Jul 27 06:14:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:14:03 +0000 (UTC) Subject: rpms/transfig/devel transfig.spec,1.33,1.34 Message-ID: <20090727061403.334D211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/transfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3751 Modified Files: transfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: transfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/transfig/devel/transfig.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- transfig.spec 6 May 2009 21:03:43 -0000 1.33 +++ transfig.spec 27 Jul 2009 06:14:02 -0000 1.34 @@ -1,7 +1,7 @@ Summary: Utility for converting FIG files (made by xfig) to other formats Name: transfig Version: 3.2.5 -Release: 7%{?dist} +Release: 8%{?dist} Epoch: 1 License: MIT URL: http://www.xfig.org/ @@ -71,6 +71,9 @@ rm -rf %{buildroot} %{_datadir}/fig2dev %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:3.2.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 5 2009 Ville Skytt? - 1:3.2.5-7 - Get rid of csh dependency, add missing one on bc (#435993). - Build with $RPM_OPT_FLAGS (#329831). From jkeating at fedoraproject.org Mon Jul 27 06:14:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:14:28 +0000 (UTC) Subject: rpms/translate-toolkit/devel translate-toolkit.spec,1.30,1.31 Message-ID: <20090727061428.AAE6011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/translate-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4121 Modified Files: translate-toolkit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/translate-toolkit.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- translate-toolkit.spec 24 Jul 2009 06:22:46 -0000 1.30 +++ translate-toolkit.spec 27 Jul 2009 06:14:28 -0000 1.31 @@ -2,7 +2,7 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.2.rc1%{?dist} +Release: 0.3.rc1%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4.0-0.3.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.2.rc1 - Update to 1.4.0 rc1 From jkeating at fedoraproject.org Mon Jul 27 06:30:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:30:42 +0000 (UTC) Subject: rpms/un-extra-fonts/devel un-extra-fonts.spec,1.2,1.3 Message-ID: <20090727063042.75F6E11C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/un-extra-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15072 Modified Files: un-extra-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: un-extra-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/un-extra-fonts/devel/un-extra-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- un-extra-fonts.spec 25 Feb 2009 22:49:05 -0000 1.2 +++ un-extra-fonts.spec 27 Jul 2009 06:30:42 -0000 1.3 @@ -37,7 +37,7 @@ Extra ?? \ Name: %{fontname}-fonts Version: 1.0.2 -Release: 0.8.%{alphatag}%{?dist} +Release: 0.9.%{alphatag}%{?dist} Summary: Un Extra family of Korean TrueType fonts Summary(ko): ?? ??? Extra ?? @@ -275,6 +275,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-0.9.080608 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.2-0.8.080608 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:30:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:30:56 +0000 (UTC) Subject: rpms/unalz/devel unalz.spec,1.3,1.4 Message-ID: <20090727063056.CAF5D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unalz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15216 Modified Files: unalz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unalz.spec =================================================================== RCS file: /cvs/pkgs/rpms/unalz/devel/unalz.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- unalz.spec 1 Apr 2009 15:26:30 -0000 1.3 +++ unalz.spec 27 Jul 2009 06:30:56 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Decompression utility Name: unalz Version: 0.65 -Release: 1%{?dist} +Release: 2%{?dist} License: zlib and BSD Group: Applications/File URL: http://www.kipple.pe.kr/win/unalz/ @@ -52,6 +52,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Orcan Ogetbil 0.65-1 - Update to 0.65 From jkeating at fedoraproject.org Mon Jul 27 06:31:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:31:11 +0000 (UTC) Subject: rpms/unbound/devel unbound.spec,1.30,1.31 Message-ID: <20090727063111.1146A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unbound/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15402 Modified Files: unbound.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unbound.spec =================================================================== RCS file: /cvs/pkgs/rpms/unbound/devel/unbound.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- unbound.spec 21 Jun 2009 04:23:10 -0000 1.30 +++ unbound.spec 27 Jul 2009 06:31:10 -0000 1.31 @@ -9,7 +9,7 @@ Summary: Validating, recursive, and caching DNS(SEC) resolver Name: unbound Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Url: http://www.nlnetlabs.nl/unbound/ Source: http://www.unbound.net/downloads/%{name}-%{version}.tar.gz @@ -193,6 +193,9 @@ fi %postun libs -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 20 2009 Paul Wouters - 1.3.0-2 - Added missing glob patch to cvs - Place python macros within the %%with_python check From jkeating at fedoraproject.org Mon Jul 27 06:31:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:31:24 +0000 (UTC) Subject: rpms/unclutter/devel unclutter.spec,1.1,1.2 Message-ID: <20090727063124.9942B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unclutter/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15555 Modified Files: unclutter.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unclutter.spec =================================================================== RCS file: /cvs/pkgs/rpms/unclutter/devel/unclutter.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unclutter.spec 12 Apr 2009 20:24:22 -0000 1.1 +++ unclutter.spec 27 Jul 2009 06:31:24 -0000 1.2 @@ -1,6 +1,6 @@ Name: unclutter Version: 8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hide mouse cursor when idle Group: User Interface/X @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Till Maas - 8-2 - Update description to the one provided by Lucian Langa From jkeating at fedoraproject.org Mon Jul 27 06:31:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:31:37 +0000 (UTC) Subject: rpms/uncrustify/devel uncrustify.spec,1.16,1.17 Message-ID: <20090727063137.9676E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uncrustify/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15717 Modified Files: uncrustify.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uncrustify.spec =================================================================== RCS file: /cvs/pkgs/rpms/uncrustify/devel/uncrustify.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- uncrustify.spec 8 Mar 2009 10:59:45 -0000 1.16 +++ uncrustify.spec 27 Jul 2009 06:31:37 -0000 1.17 @@ -1,6 +1,6 @@ Name: uncrustify Version: 0.52 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Reformat Source Group: Development/Tools @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.52-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 8 2009 Neal Becker - 0.52-1 - Update to 0.52 From jkeating at fedoraproject.org Mon Jul 27 06:31:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:31:50 +0000 (UTC) Subject: rpms/unetbootin/devel unetbootin.spec,1.6,1.7 Message-ID: <20090727063150.63F7011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unetbootin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15879 Modified Files: unetbootin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unetbootin.spec =================================================================== RCS file: /cvs/pkgs/rpms/unetbootin/devel/unetbootin.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- unetbootin.spec 16 Jul 2009 13:09:55 -0000 1.6 +++ unetbootin.spec 27 Jul 2009 06:31:49 -0000 1.7 @@ -1,4 +1,4 @@ -%global rel 356 +%global rel 357 Name: unetbootin Version: 0 @@ -73,6 +73,9 @@ rm -rf %{buildroot} %{_datadir}/applications/unetbootin.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-6.357bzr +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Jussi Lehtola - 0-6.356bzr - Add ExclusiveArch to prevent build on architectures lacking syslinux. From jkeating at fedoraproject.org Mon Jul 27 06:32:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:32:03 +0000 (UTC) Subject: rpms/unhide/devel unhide.spec,1.2,1.3 Message-ID: <20090727063203.3392211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unhide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16024 Modified Files: unhide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unhide.spec =================================================================== RCS file: /cvs/pkgs/rpms/unhide/devel/unhide.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unhide.spec 25 Feb 2009 22:59:26 -0000 1.2 +++ unhide.spec 27 Jul 2009 06:32:02 -0000 1.3 @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 3%{?dist}.20080519 +Release: 4%{?dist}.20080519 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4.20080519 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3.20080519 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:32:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:32:18 +0000 (UTC) Subject: rpms/unicap/devel unicap.spec,1.13,1.14 Message-ID: <20090727063218.9736511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unicap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16196 Modified Files: unicap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unicap.spec =================================================================== RCS file: /cvs/pkgs/rpms/unicap/devel/unicap.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- unicap.spec 18 Jun 2009 10:02:20 -0000 1.13 +++ unicap.spec 27 Jul 2009 06:32:18 -0000 1.14 @@ -7,7 +7,7 @@ Summary: Library to access different kinds of (video) capture devices Name: unicap Version: 0.9.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.unicap-imaging.org/ @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/gtk-doc/html/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 18 2009 Dan Horak 0.9.5-2 - don't require libraw1394 on s390/s390x From jkeating at fedoraproject.org Mon Jul 27 06:32:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:32:33 +0000 (UTC) Subject: rpms/uniconvertor/devel uniconvertor.spec,1.18,1.19 Message-ID: <20090727063233.1733111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uniconvertor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16359 Modified Files: uniconvertor.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uniconvertor.spec =================================================================== RCS file: /cvs/pkgs/rpms/uniconvertor/devel/uniconvertor.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- uniconvertor.spec 25 Jun 2009 19:10:50 -0000 1.18 +++ uniconvertor.spec 27 Jul 2009 06:32:32 -0000 1.19 @@ -2,7 +2,7 @@ Name: uniconvertor Version: 1.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal vector graphics translator Group: Applications/Multimedia @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Andy Shevchenko - 1.1.4-1 - update to 1.1.4 - remove upstreamed patches From jkeating at fedoraproject.org Mon Jul 27 06:32:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:32:46 +0000 (UTC) Subject: rpms/unifdef/devel unifdef.spec,1.6,1.7 Message-ID: <20090727063246.6BA5A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unifdef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16517 Modified Files: unifdef.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unifdef.spec =================================================================== RCS file: /cvs/pkgs/rpms/unifdef/devel/unifdef.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- unifdef.spec 25 Feb 2009 23:01:25 -0000 1.6 +++ unifdef.spec 27 Jul 2009 06:32:46 -0000 1.7 @@ -1,7 +1,7 @@ Summary: Unifdef tool for removing ifdef'd lines Name: unifdef Version: 1.171 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD Group: Development/Languages URL: http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/unifdef/ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.171-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.171-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:32:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:32:57 +0000 (UTC) Subject: rpms/unique/devel unique.spec,1.8,1.9 Message-ID: <20090727063257.BE66E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unique/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16627 Modified Files: unique.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unique.spec =================================================================== RCS file: /cvs/pkgs/rpms/unique/devel/unique.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- unique.spec 20 Apr 2009 07:37:00 -0000 1.8 +++ unique.spec 27 Jul 2009 06:32:57 -0000 1.9 @@ -1,6 +1,6 @@ Name: unique Version: 1.0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Single instance support for applications Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 20 2009 Richard Hughes - 1.0.8-1 - Update to latest upstream version * Unbreak subclassing of UniqueApp From jkeating at fedoraproject.org Mon Jul 27 06:33:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:33:10 +0000 (UTC) Subject: rpms/unison213/devel unison213.spec,1.7,1.8 Message-ID: <20090727063310.645EB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unison213/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16770 Modified Files: unison213.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unison213.spec =================================================================== RCS file: /cvs/pkgs/rpms/unison213/devel/unison213.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- unison213.spec 16 Apr 2009 09:26:13 -0000 1.7 +++ unison213.spec 27 Jul 2009 06:33:09 -0000 1.8 @@ -23,7 +23,7 @@ Name: unison%{ver_compat_name} Version: %{ver_compat}%{ver_noncompat} -Release: 14%{?dist} +Release: 15%{?dist} Summary: Multi-master File synchronization tool @@ -128,6 +128,9 @@ exit 0 %{_datadir}/pixmaps/unison-%{ver_compat}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.13.16-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 06:33:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:33:21 +0000 (UTC) Subject: rpms/unison227/devel unison227.spec,1.7,1.8 Message-ID: <20090727063321.4D5AA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unison227/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16879 Modified Files: unison227.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unison227.spec =================================================================== RCS file: /cvs/pkgs/rpms/unison227/devel/unison227.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- unison227.spec 16 Apr 2009 09:26:13 -0000 1.7 +++ unison227.spec 27 Jul 2009 06:33:21 -0000 1.8 @@ -23,7 +23,7 @@ Name: unison%{ver_compat_name} Version: %{ver_compat}%{ver_noncompat} -Release: 12%{?dist} +Release: 13%{?dist} Summary: Multi-master File synchronization tool @@ -128,6 +128,9 @@ exit 0 %{_datadir}/pixmaps/unison-%{ver_compat}.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.27.57-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 06:33:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:33:34 +0000 (UTC) Subject: rpms/units/devel units.spec,1.27,1.28 Message-ID: <20090727063334.28A8611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/units/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17015 Modified Files: units.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: units.spec =================================================================== RCS file: /cvs/pkgs/rpms/units/devel/units.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- units.spec 25 Feb 2009 23:07:22 -0000 1.27 +++ units.spec 27 Jul 2009 06:33:33 -0000 1.28 @@ -1,7 +1,7 @@ Summary: A utility for converting amounts from one unit to another Name: units Version: 1.87 -Release: 3%{?dist} +Release: 4%{?dist} Source: ftp://ftp.gnu.org/gnu/units/%{name}-%{version}.tar.gz URL: http://www.gnu.org/software/units/units.html License: GPLv2+ @@ -53,6 +53,9 @@ exit 0 %{_mandir}/man1/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.87-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.87-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:33:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:33:46 +0000 (UTC) Subject: rpms/unix2dos/devel unix2dos.spec,1.32,1.33 Message-ID: <20090727063346.414B211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unix2dos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17141 Modified Files: unix2dos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unix2dos.spec =================================================================== RCS file: /cvs/pkgs/rpms/unix2dos/devel/unix2dos.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- unix2dos.spec 25 Feb 2009 23:08:15 -0000 1.32 +++ unix2dos.spec 27 Jul 2009 06:33:45 -0000 1.33 @@ -1,7 +1,7 @@ Summary: UNIX to DOS text file format converter Name: unix2dos Version: 2.2 -Release: 33%{?dist} +Release: 34%{?dist} License: BSD Group: Applications/Text Source: unix2dos-2.2.src.tar.gz @@ -46,6 +46,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:34:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:34:00 +0000 (UTC) Subject: rpms/unixODBC/devel unixODBC.spec,1.49,1.50 Message-ID: <20090727063400.0A4E311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unixODBC/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17279 Modified Files: unixODBC.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unixODBC.spec =================================================================== RCS file: /cvs/pkgs/rpms/unixODBC/devel/unixODBC.spec,v retrieving revision 1.49 retrieving revision 1.50 diff -u -p -r1.49 -r1.50 --- unixODBC.spec 9 Jun 2009 11:23:39 -0000 1.49 +++ unixODBC.spec 27 Jul 2009 06:33:59 -0000 1.50 @@ -1,7 +1,7 @@ Summary: A complete ODBC driver manager for Linux Name: unixODBC Version: 2.2.14 -Release: 4%{?dist} +Release: 5%{?dist} Group: System Environment/Libraries URL: http://www.unixODBC.org/ # Programs are GPL, libraries are LGPL, except News Server library is GPL. @@ -194,6 +194,9 @@ rm -rf $RPM_BUILD_ROOT %postun -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.2.14-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Peter Lemenkov - 2.2.14-4 - Properly install *.desktop files - No need to ship INSTALL in docs From jkeating at fedoraproject.org Mon Jul 27 06:34:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:34:13 +0000 (UTC) Subject: rpms/unixcw/devel unixcw.spec,1.2,1.3 Message-ID: <20090727063413.28DFC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unixcw/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17436 Modified Files: unixcw.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unixcw.spec =================================================================== RCS file: /cvs/pkgs/rpms/unixcw/devel/unixcw.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- unixcw.spec 25 Feb 2009 23:10:06 -0000 1.2 +++ unixcw.spec 27 Jul 2009 06:34:12 -0000 1.3 @@ -1,6 +1,6 @@ Name: unixcw Version: 2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Shared library for Morse programs Group: Applications/Communications @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:34:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:34:26 +0000 (UTC) Subject: rpms/unoconv/devel unoconv.spec,1.1,1.2 Message-ID: <20090727063426.48DC811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unoconv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17571 Modified Files: unoconv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unoconv.spec =================================================================== RCS file: /cvs/pkgs/rpms/unoconv/devel/unoconv.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unoconv.spec 9 May 2009 23:41:28 -0000 1.1 +++ unoconv.spec 27 Jul 2009 06:34:26 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Tool to convert between any document format supported by OpenOffice.org Name: unoconv Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: System Environment/Base URL: http://dag.wieers.com/home-made/unoconv/ @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_bindir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Orcan Ogetbil - 0.3-3 - Fix rpmlints - Prepare package for Fedora review From jkeating at fedoraproject.org Mon Jul 27 06:34:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:34:43 +0000 (UTC) Subject: rpms/unpaper/devel unpaper.spec,1.4,1.5 Message-ID: <20090727063443.A65D511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unpaper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17728 Modified Files: unpaper.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unpaper.spec =================================================================== RCS file: /cvs/pkgs/rpms/unpaper/devel/unpaper.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- unpaper.spec 25 Feb 2009 23:11:10 -0000 1.4 +++ unpaper.spec 27 Jul 2009 06:34:43 -0000 1.5 @@ -1,6 +1,6 @@ Name: unpaper Version: 0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Post-processing of scanned and photocopied book pages Group: Applications/Publishing @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %doc doc CHANGELOG LICENSE README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:34:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:34:56 +0000 (UTC) Subject: rpms/unrtf/devel unrtf.spec,1.13,1.14 Message-ID: <20090727063456.39EAB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unrtf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17841 Modified Files: unrtf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unrtf.spec =================================================================== RCS file: /cvs/pkgs/rpms/unrtf/devel/unrtf.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- unrtf.spec 25 Feb 2009 23:12:56 -0000 1.13 +++ unrtf.spec 27 Jul 2009 06:34:56 -0000 1.14 @@ -1,7 +1,7 @@ Name: unrtf Summary: RTF to other formats converter Version: 0.20.2 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Text License: GPLv2+ @@ -41,6 +41,9 @@ make install DESTDIR=$RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.20.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:35:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:35:10 +0000 (UTC) Subject: rpms/unshield/devel unshield.spec,1.12,1.13 Message-ID: <20090727063510.AE3C911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unshield/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18004 Modified Files: unshield.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unshield.spec =================================================================== RCS file: /cvs/pkgs/rpms/unshield/devel/unshield.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- unshield.spec 21 Jul 2009 04:41:53 -0000 1.12 +++ unshield.spec 27 Jul 2009 06:35:10 -0000 1.13 @@ -1,6 +1,6 @@ Name: unshield Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Install InstallShield applications on a Pocket PC Group: Applications/Communications @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libunshield.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Andreas Bierfert - 0.6 - version upgrade From jkeating at fedoraproject.org Mon Jul 27 06:35:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:35:24 +0000 (UTC) Subject: rpms/unuran/devel unuran.spec,1.13,1.14 Message-ID: <20090727063524.563AC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unuran/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18136 Modified Files: unuran.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unuran.spec =================================================================== RCS file: /cvs/pkgs/rpms/unuran/devel/unuran.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- unuran.spec 25 Feb 2009 23:14:52 -0000 1.13 +++ unuran.spec 27 Jul 2009 06:35:24 -0000 1.14 @@ -1,6 +1,6 @@ Name: unuran Version: 1.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Non-Uniform Random number generator Group: System Environment/Libraries @@ -96,6 +96,9 @@ fi SEED=2742664 make check %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:35:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:35:39 +0000 (UTC) Subject: rpms/unzip/devel unzip.spec,1.40,1.41 Message-ID: <20090727063539.1962A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unzip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18300 Modified Files: unzip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unzip.spec =================================================================== RCS file: /cvs/pkgs/rpms/unzip/devel/unzip.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- unzip.spec 25 Feb 2009 23:16:05 -0000 1.40 +++ unzip.spec 27 Jul 2009 06:35:38 -0000 1.41 @@ -1,7 +1,7 @@ Summary: A utility for unpacking zip files Name: unzip Version: 5.52 -Release: 10%{?dist} +Release: 11%{?dist} License: BSD Group: Applications/Archiving Source: ftp://ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.52-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.52-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:35:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:35:52 +0000 (UTC) Subject: rpms/unzoo/devel unzoo.spec,1.1,1.2 Message-ID: <20090727063552.20BE011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/unzoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18445 Modified Files: unzoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: unzoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/unzoo/devel/unzoo.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- unzoo.spec 1 Apr 2009 17:18:01 -0000 1.1 +++ unzoo.spec 27 Jul 2009 06:35:51 -0000 1.2 @@ -1,6 +1,6 @@ Name: unzoo Version: 4.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: ZOO archive extractor Group: Applications/Archiving @@ -46,6 +46,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 26 2009 John W. Linville - 4.4-4 - Copy source to build directory so it is included in debuginfo From jkeating at fedoraproject.org Mon Jul 27 06:36:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:36:09 +0000 (UTC) Subject: rpms/up-imapproxy/devel up-imapproxy.spec,1.16,1.17 Message-ID: <20090727063609.0A40011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/up-imapproxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18609 Modified Files: up-imapproxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: up-imapproxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/up-imapproxy/devel/up-imapproxy.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- up-imapproxy.spec 25 Feb 2009 23:17:09 -0000 1.16 +++ up-imapproxy.spec 27 Jul 2009 06:36:08 -0000 1.17 @@ -1,7 +1,7 @@ Name: up-imapproxy Summary: University of Pittsburgh IMAP Proxy Version: 1.2.7 -Release: 0.4.rc1%{?dist} +Release: 0.5.rc1%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://www.imapproxy.org @@ -76,6 +76,9 @@ fi %{_sbindir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.7-0.5.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.7-0.4.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:36:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:36:21 +0000 (UTC) Subject: rpms/upslug2/devel upslug2.spec,1.3,1.4 Message-ID: <20090727063621.A4D0411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/upslug2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18740 Modified Files: upslug2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: upslug2.spec =================================================================== RCS file: /cvs/pkgs/rpms/upslug2/devel/upslug2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- upslug2.spec 25 Feb 2009 23:18:11 -0000 1.3 +++ upslug2.spec 27 Jul 2009 06:36:21 -0000 1.4 @@ -3,7 +3,7 @@ Name: upslug2 Version: 0.0 -Release: 0.4.%{snapshot_date}.svn%{svn_revision}%{?dist} +Release: 0.5.%{snapshot_date}.svn%{svn_revision}%{?dist} Summary: Firmware update utility for the nslu2 Group: Development/Tools License: MIT @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0-0.5.20071107.svn39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0-0.4.20071107.svn39 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:36:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:36:37 +0000 (UTC) Subject: rpms/upstart/devel upstart.spec,1.31,1.32 Message-ID: <20090727063637.2B7AA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/upstart/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18902 Modified Files: upstart.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: upstart.spec =================================================================== RCS file: /cvs/pkgs/rpms/upstart/devel/upstart.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- upstart.spec 23 Jun 2009 15:45:05 -0000 1.31 +++ upstart.spec 27 Jul 2009 06:36:36 -0000 1.32 @@ -1,6 +1,6 @@ Name: upstart Version: 0.3.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An event-driven init system Group: System Environment/Base @@ -99,6 +99,9 @@ rm -rf %{buildroot} %{_mandir}/man8/telinit.8.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Petr Lautrbach - 0.3.11-1 - Update to 0.3.11 From jkeating at fedoraproject.org Mon Jul 27 06:38:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:38:19 +0000 (UTC) Subject: rpms/urlview/devel urlview.spec,1.4,1.5 Message-ID: <20090727063819.7F5B011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/urlview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19950 Modified Files: urlview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: urlview.spec =================================================================== RCS file: /cvs/pkgs/rpms/urlview/devel/urlview.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- urlview.spec 25 Feb 2009 23:23:25 -0000 1.4 +++ urlview.spec 27 Jul 2009 06:38:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: urlview Version: 0.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: URL extractor/launcher Group: Applications/Internet @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/urlview.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:38:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:38:32 +0000 (UTC) Subject: rpms/urlwatch/devel urlwatch.spec,1.2,1.3 Message-ID: <20090727063832.E139311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/urlwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20081 Modified Files: urlwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: urlwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/urlwatch/devel/urlwatch.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- urlwatch.spec 25 Feb 2009 23:24:14 -0000 1.2 +++ urlwatch.spec 27 Jul 2009 06:38:32 -0000 1.3 @@ -2,7 +2,7 @@ Name: urlwatch Version: 1.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for monitoring webpages for updates Group: Applications/Internet @@ -64,6 +64,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:38:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:38:46 +0000 (UTC) Subject: rpms/urw-fonts/devel urw-fonts.spec,1.33,1.34 Message-ID: <20090727063846.540A511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/urw-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20224 Modified Files: urw-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: urw-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/urw-fonts/devel/urw-fonts.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- urw-fonts.spec 25 Feb 2009 23:25:04 -0000 1.33 +++ urw-fonts.spec 27 Jul 2009 06:38:46 -0000 1.34 @@ -5,7 +5,7 @@ Summary: Free versions of the 35 standard PostScript fonts. Name: urw-fonts Version: 2.4 -Release: 7%{?dist} +Release: 8%{?dist} Source: ftp://ftp.gnome.ru/fonts/urw/release/urw-fonts-%{filippov_version}.tar.bz2 URL: ftp://ftp.gnome.ru/fonts/urw/release/ # URW holds copyright @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{fontdir}/*.pfb %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:38:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:38:59 +0000 (UTC) Subject: rpms/usb_modeswitch/devel usb_modeswitch.spec,1.3,1.4 Message-ID: <20090727063859.7256811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/usb_modeswitch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20351 Modified Files: usb_modeswitch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: usb_modeswitch.spec =================================================================== RCS file: /cvs/pkgs/rpms/usb_modeswitch/devel/usb_modeswitch.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- usb_modeswitch.spec 25 Feb 2009 23:25:52 -0000 1.3 +++ usb_modeswitch.spec 27 Jul 2009 06:38:59 -0000 1.4 @@ -1,6 +1,6 @@ Name: usb_modeswitch Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: USB Modeswitch gets 4G cards in operational mode Summary(de): USB Modeswitch aktiviert UMTS-Karten Group: Applications/System @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING README* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:39:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:39:13 +0000 (UTC) Subject: rpms/usbmon/devel usbmon.spec,1.5,1.6 Message-ID: <20090727063913.B7D3811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/usbmon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20499 Modified Files: usbmon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: usbmon.spec =================================================================== RCS file: /cvs/pkgs/rpms/usbmon/devel/usbmon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- usbmon.spec 25 Feb 2009 23:26:40 -0000 1.5 +++ usbmon.spec 27 Jul 2009 06:39:13 -0000 1.6 @@ -1,6 +1,6 @@ Name: usbmon Version: 5.4 -Release: 3%{dist} +Release: 4%{dist} Summary: A basic front-end to usbmon Group: System Environment/Base @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/usbmon.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:40:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:40:16 +0000 (UTC) Subject: rpms/ustr/devel ustr.spec,1.22,1.23 Message-ID: <20090727064016.5878111C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ustr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21210 Modified Files: ustr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ustr.spec =================================================================== RCS file: /cvs/pkgs/rpms/ustr/devel/ustr.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ustr.spec 25 Feb 2009 23:33:28 -0000 1.22 +++ ustr.spec 27 Jul 2009 06:40:16 -0000 1.23 @@ -27,7 +27,7 @@ Name: ustr Version: 1.0.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: String library, very low memory overhead, simple to import Group: System Environment/Libraries License: MIT or LGPLv2+ or BSD @@ -151,6 +151,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:40:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:40:34 +0000 (UTC) Subject: rpms/util-vserver/devel util-vserver.spec,1.47,1.48 Message-ID: <20090727064034.347F011C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/util-vserver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21670 Modified Files: util-vserver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: util-vserver.spec =================================================================== RCS file: /cvs/pkgs/rpms/util-vserver/devel/util-vserver.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- util-vserver.spec 25 Feb 2009 23:35:23 -0000 1.47 +++ util-vserver.spec 27 Jul 2009 06:40:33 -0000 1.48 @@ -28,7 +28,7 @@ Summary: Linux virtual server utilities Name: util-vserver Version: 0.30.215 -Release: %release_func 7 +Release: %release_func 8 License: GPLv2 Group: System Environment/Base URL: http://savannah.nongnu.org/projects/util-vserver/ @@ -366,6 +366,9 @@ test "$1" = 0 || %_initrddir/rebootmgr %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.30.215-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.30.215-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:40:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:40:50 +0000 (UTC) Subject: rpms/utrac/devel utrac.spec,1.8,1.9 Message-ID: <20090727064050.6C90311C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/utrac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21966 Modified Files: utrac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: utrac.spec =================================================================== RCS file: /cvs/pkgs/rpms/utrac/devel/utrac.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- utrac.spec 25 Feb 2009 23:36:24 -0000 1.8 +++ utrac.spec 27 Jul 2009 06:40:50 -0000 1.9 @@ -1,6 +1,6 @@ Name: utrac Version: 0.3.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Universal Text Recognizer and Converter Summary(fr): Reconnaisseur et convertisseur universel de texte @@ -93,6 +93,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:41:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:41:38 +0000 (UTC) Subject: rpms/uudeview/devel uudeview.spec,1.21,1.22 Message-ID: <20090727064138.2459C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uudeview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22521 Modified Files: uudeview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uudeview.spec =================================================================== RCS file: /cvs/pkgs/rpms/uudeview/devel/uudeview.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- uudeview.spec 25 Feb 2009 23:39:24 -0000 1.21 +++ uudeview.spec 27 Jul 2009 06:41:37 -0000 1.22 @@ -1,6 +1,6 @@ Name: uudeview Version: 0.5.20 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2+ Group: Applications/File @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.20-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.20-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:41:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:41:52 +0000 (UTC) Subject: rpms/uuid/devel uuid.spec,1.16,1.17 Message-ID: <20090727064152.7F1A911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uuid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22678 Modified Files: uuid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uuid.spec =================================================================== RCS file: /cvs/pkgs/rpms/uuid/devel/uuid.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- uuid.spec 13 Jul 2009 18:35:02 -0000 1.16 +++ uuid.spec 27 Jul 2009 06:41:51 -0000 1.17 @@ -3,7 +3,7 @@ Name: uuid Version: 1.6.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Universally Unique Identifier library License: MIT Group: System Environment/Libraries @@ -253,6 +253,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libossp-uuid_dce.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Remi Collet - 1.6.1-7 - rebuild for new PHP 5.3.0 ABI (20090626) - add PHP ABI check From jkeating at fedoraproject.org Mon Jul 27 06:42:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:42:10 +0000 (UTC) Subject: rpms/uw-imap/devel uw-imap.spec,1.62,1.63 Message-ID: <20090727064210.B7D6B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uw-imap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22879 Modified Files: uw-imap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uw-imap.spec =================================================================== RCS file: /cvs/pkgs/rpms/uw-imap/devel/uw-imap.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- uw-imap.spec 9 Jul 2009 03:19:43 -0000 1.62 +++ uw-imap.spec 27 Jul 2009 06:42:10 -0000 1.63 @@ -9,7 +9,7 @@ Summary: UW Server daemons for IMAP and POP network mail protocols Name: uw-imap Version: 2007e -Release: 7%{?dist} +Release: 8%{?dist} # See LICENSE.txt, http://www.apache.org/licenses/LICENSE-2.0 License: ASL 2.0 @@ -307,6 +307,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2007e-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Rex Dieter - 2007e-7 - fix shared.patch to use CFLAGS for osdep.c too From jkeating at fedoraproject.org Mon Jul 27 06:42:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:42:24 +0000 (UTC) Subject: rpms/v4l2-tool/devel v4l2-tool.spec,1.5,1.6 Message-ID: <20090727064224.5354C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/v4l2-tool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23015 Modified Files: v4l2-tool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: v4l2-tool.spec =================================================================== RCS file: /cvs/pkgs/rpms/v4l2-tool/devel/v4l2-tool.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- v4l2-tool.spec 25 Feb 2009 23:42:38 -0000 1.5 +++ v4l2-tool.spec 27 Jul 2009 06:42:24 -0000 1.6 @@ -1,6 +1,6 @@ Name: v4l2-tool Version: 1.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: This package gives v4l2 device information of webcam Group: Applications/Multimedia @@ -68,6 +68,9 @@ rm -rf %{buildroot} %{_datadir}/applications/fedora-v4l2-tool.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:42:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:42:37 +0000 (UTC) Subject: rpms/v4l2ucp/devel v4l2ucp.spec,1.5,1.6 Message-ID: <20090727064237.BEDCB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/v4l2ucp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23177 Modified Files: v4l2ucp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: v4l2ucp.spec =================================================================== RCS file: /cvs/pkgs/rpms/v4l2ucp/devel/v4l2ucp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- v4l2ucp.spec 25 May 2009 21:39:44 -0000 1.5 +++ v4l2ucp.spec 27 Jul 2009 06:42:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: v4l2ucp Version: 1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Video4linux universal control panel Group: Applications/Multimedia License: GPLv2+ @@ -79,6 +79,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Hans de Goede 1.3-2 - Add libv4l support From jkeating at fedoraproject.org Mon Jul 27 06:42:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:42:51 +0000 (UTC) Subject: rpms/vala/devel vala.spec,1.40,1.41 Message-ID: <20090727064251.D8DEE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vala/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23316 Modified Files: vala.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vala.spec =================================================================== RCS file: /cvs/pkgs/rpms/vala/devel/vala.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- vala.spec 14 Jul 2009 08:22:25 -0000 1.40 +++ vala.spec 27 Jul 2009 06:42:51 -0000 1.41 @@ -15,7 +15,7 @@ Name: vala Version: 0.7.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A modern programming language for GNOME Group: Development/Languages @@ -187,6 +187,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Michel Salim - 0.7.4-2 - Patch broken ModuleInit attribute (upstream bug 587444) From jkeating at fedoraproject.org Mon Jul 27 06:43:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:43:06 +0000 (UTC) Subject: rpms/valgrind/devel valgrind.spec,1.64,1.65 Message-ID: <20090727064306.C45B411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/valgrind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23474 Modified Files: valgrind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: valgrind.spec =================================================================== RCS file: /cvs/pkgs/rpms/valgrind/devel/valgrind.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- valgrind.spec 13 Jul 2009 14:17:46 -0000 1.64 +++ valgrind.spec 27 Jul 2009 06:43:06 -0000 1.65 @@ -1,7 +1,7 @@ Summary: Tool for finding memory management bugs in programs Name: valgrind Version: 3.4.1 -Release: 5 +Release: 6 Epoch: 1 Source0: http://www.valgrind.org/downloads/valgrind-%{version}.tar.bz2 Patch1: valgrind-3.4.1-cachegrind-improvements.patch @@ -161,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:3.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Jakub Jelinek 3.4.1-5 - add support for DW_CFA_{remember,restore}_state From jkeating at fedoraproject.org Mon Jul 27 06:43:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:43:20 +0000 (UTC) Subject: rpms/valide/devel valide.spec,1.4,1.5 Message-ID: <20090727064320.AE25511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23601 Modified Files: valide.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- valide.spec 20 Jul 2009 17:14:13 -0000 1.4 +++ valide.spec 27 Jul 2009 06:43:20 -0000 1.5 @@ -10,7 +10,7 @@ Name: valide Version: 0.5.1 -Release: 0.14.%{alphatag}%{svn_revision}%{?dist} +Release: 0.15.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -106,6 +106,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.1-0.15.20090720svn291 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Jonathan MERCIER 0.5.1-0.14.20090720svn291 - Update valide to revision 291 From jkeating at fedoraproject.org Mon Jul 27 06:43:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:43:34 +0000 (UTC) Subject: rpms/valknut/devel valknut.spec,1.21,1.22 Message-ID: <20090727064334.5136611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/valknut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23744 Modified Files: valknut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: valknut.spec =================================================================== RCS file: /cvs/pkgs/rpms/valknut/devel/valknut.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- valknut.spec 25 Feb 2009 23:45:16 -0000 1.21 +++ valknut.spec 27 Jul 2009 06:43:34 -0000 1.22 @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:43:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:43:47 +0000 (UTC) Subject: rpms/vamp-plugin-sdk/devel vamp-plugin-sdk.spec,1.8,1.9 Message-ID: <20090727064347.6B80C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vamp-plugin-sdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23872 Modified Files: vamp-plugin-sdk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vamp-plugin-sdk.spec =================================================================== RCS file: /cvs/pkgs/rpms/vamp-plugin-sdk/devel/vamp-plugin-sdk.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- vamp-plugin-sdk.spec 31 Mar 2009 19:39:30 -0000 1.8 +++ vamp-plugin-sdk.spec 27 Jul 2009 06:43:47 -0000 1.9 @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michael Schwendt - 2.0-5 - Add another sed libdir fix for PluginLoader.cpp (#469777) plus a check section to scan for libdir issues From jkeating at fedoraproject.org Mon Jul 27 06:44:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:44:00 +0000 (UTC) Subject: rpms/varconf/devel varconf.spec,1.6,1.7 Message-ID: <20090727064400.AAC2411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/varconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23996 Modified Files: varconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: varconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/varconf/devel/varconf.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- varconf.spec 25 Feb 2009 23:46:59 -0000 1.6 +++ varconf.spec 27 Jul 2009 06:44:00 -0000 1.7 @@ -1,6 +1,6 @@ Name: varconf Version: 0.6.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Configuration library used by WorldForge clients Group: Development/Libraries @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:44:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:44:13 +0000 (UTC) Subject: rpms/varnish/devel varnish.spec,1.20,1.21 Message-ID: <20090727064413.9E48E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/varnish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24141 Modified Files: varnish.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: varnish.spec =================================================================== RCS file: /cvs/pkgs/rpms/varnish/devel/varnish.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- varnish.spec 5 Jun 2009 12:10:37 -0000 1.20 +++ varnish.spec 27 Jul 2009 06:44:13 -0000 1.21 @@ -1,7 +1,7 @@ Summary: High-performance HTTP accelerator Name: varnish Version: 2.0.4 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Daemons URL: http://www.varnish-cache.org/ @@ -237,6 +237,9 @@ fi %postun libs -p /sbin/ldconfig %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 04 2009 Ingvar Hagelund - 2.0.4-2 - Added a s390 specific patch to libjemalloc. From jkeating at fedoraproject.org Mon Jul 27 06:44:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:44:25 +0000 (UTC) Subject: rpms/vaspview/devel vaspview.spec,1.2,1.3 Message-ID: <20090727064425.4112211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vaspview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24281 Modified Files: vaspview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vaspview.spec =================================================================== RCS file: /cvs/pkgs/rpms/vaspview/devel/vaspview.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vaspview.spec 25 Feb 2009 23:48:41 -0000 1.2 +++ vaspview.spec 27 Jul 2009 06:44:25 -0000 1.3 @@ -1,7 +1,7 @@ Name: vaspview Summary: VASP Data Viewer Version: 1.05 -Release: 3%{?dist} +Release: 4%{?dist} # http://vaspview.sourceforge.net/%{name}-%{version}-source.tar.gz # Source below is the same as the original sans the two Win32 binaries in Win32/Release/ Source0: %{name}-%{version}.tar.gz @@ -73,6 +73,9 @@ fi %{_datadir}/icons/hicolor/*/apps/*.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:44:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:44:41 +0000 (UTC) Subject: rpms/vavoom/devel vavoom.spec,1.16,1.17 Message-ID: <20090727064441.36FE311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vavoom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24451 Modified Files: vavoom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vavoom.spec =================================================================== RCS file: /cvs/pkgs/rpms/vavoom/devel/vavoom.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- vavoom.spec 20 Mar 2009 08:49:54 -0000 1.16 +++ vavoom.spec 27 Jul 2009 06:44:40 -0000 1.17 @@ -1,6 +1,6 @@ Name: vavoom Version: 1.30 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Enhanced Doom, Heretic, Hexen and Strife source port Source0: http://downloads.sourceforge.net/vavoom/%{name}-%{version}.tar.bz2 Source1: doom.autodlrc @@ -123,6 +123,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 20 2009 Hans de Goede 1.30-1 - New upstream release 1.30 - Fix vavoom not working at all when compiled with gcc-4.4 From jkeating at fedoraproject.org Mon Jul 27 06:44:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:44:54 +0000 (UTC) Subject: rpms/vbetool/devel vbetool.spec,1.10,1.11 Message-ID: <20090727064454.633B811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vbetool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24567 Modified Files: vbetool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vbetool.spec =================================================================== RCS file: /cvs/pkgs/rpms/vbetool/devel/vbetool.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- vbetool.spec 7 May 2009 13:11:06 -0000 1.10 +++ vbetool.spec 27 Jul 2009 06:44:54 -0000 1.11 @@ -1,6 +1,6 @@ Name: vbetool Version: 1.1 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 Summary: Run real-mode video BIOS code to alter hardware state Group: System Environment/Base @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Karsten Hopp 1.1-3.1 - ExcludeArch s390, s390x From jkeating at fedoraproject.org Mon Jul 27 06:45:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:45:06 +0000 (UTC) Subject: rpms/vbindiff/devel vbindiff.spec,1.2,1.3 Message-ID: <20090727064506.6CE3511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vbindiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24702 Modified Files: vbindiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vbindiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/vbindiff/devel/vbindiff.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vbindiff.spec 25 Feb 2009 23:51:10 -0000 1.2 +++ vbindiff.spec 27 Jul 2009 06:45:05 -0000 1.3 @@ -1,7 +1,7 @@ %define beta_version 4 Name: vbindiff Version: 3.0 -Release: 0.3.beta%{beta_version}%{?dist} +Release: 0.4.beta%{beta_version}%{?dist} Summary: Visual binary diff Group: Applications/Editors @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0-0.4.beta4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0-0.3.beta4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:45:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:45:19 +0000 (UTC) Subject: rpms/vblade/devel vblade.spec,1.4,1.5 Message-ID: <20090727064519.65B0011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vblade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24822 Modified Files: vblade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vblade.spec =================================================================== RCS file: /cvs/pkgs/rpms/vblade/devel/vblade.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- vblade.spec 25 Feb 2009 23:52:03 -0000 1.4 +++ vblade.spec 27 Jul 2009 06:45:19 -0000 1.5 @@ -1,6 +1,6 @@ Name: vblade Version: 14 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Virtual EtherDrive (R) blade daemon Group: System Environment/Base @@ -76,6 +76,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 14-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:45:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:45:31 +0000 (UTC) Subject: rpms/vconfig/devel vconfig.spec,1.19,1.20 Message-ID: <20090727064531.4382611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24951 Modified Files: vconfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/vconfig/devel/vconfig.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- vconfig.spec 25 Feb 2009 23:52:56 -0000 1.19 +++ vconfig.spec 27 Jul 2009 06:45:31 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Linux 802.1q VLAN configuration utility Name: vconfig Version: 1.9 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://www.candelatech.com/~greear/vlan/vlan.%{version}.tar.gz @@ -36,6 +36,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man8/vconfig.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:45:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:45:44 +0000 (UTC) Subject: rpms/vdccm/devel vdccm.spec,1.7,1.8 Message-ID: <20090727064544.5182811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdccm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25088 Modified Files: vdccm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdccm.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdccm/devel/vdccm.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vdccm.spec 6 Mar 2009 13:20:29 -0000 1.7 +++ vdccm.spec 27 Jul 2009 06:45:44 -0000 1.8 @@ -1,6 +1,6 @@ Name: vdccm Version: 0.10.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Serial connection daemon for Pocket PC devices Group: Applications/Communications @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 05 2009 Caol?n McNamara - 0.10.1-5 - fix build From jkeating at fedoraproject.org Mon Jul 27 06:45:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:45:59 +0000 (UTC) Subject: rpms/vdr-femon/devel vdr-femon.spec,1.20,1.21 Message-ID: <20090727064600.0EFD911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-femon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25200 Modified Files: vdr-femon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-femon.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-femon/devel/vdr-femon.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- vdr-femon.spec 20 Jun 2009 21:21:23 -0000 1.20 +++ vdr-femon.spec 27 Jul 2009 06:45:59 -0000 1.21 @@ -4,7 +4,7 @@ Name: vdr-%{pname} Version: 1.6.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: DVB frontend status monitor plugin for VDR Group: Applications/Multimedia @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Ville Skytt? - 1.6.7-1 - Update to 1.6.7. - Trim pre-1.6.0 %%changelog entries. From jkeating at fedoraproject.org Mon Jul 27 06:46:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:46:14 +0000 (UTC) Subject: rpms/vdr-osdteletext/devel vdr-osdteletext.spec,1.15,1.16 Message-ID: <20090727064614.54A4811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-osdteletext/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25396 Modified Files: vdr-osdteletext.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-osdteletext.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-osdteletext/devel/vdr-osdteletext.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- vdr-osdteletext.spec 3 Jun 2009 22:00:35 -0000 1.15 +++ vdr-osdteletext.spec 27 Jul 2009 06:46:14 -0000 1.16 @@ -6,7 +6,7 @@ Name: vdr-%{pname} Version: 0.8.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OSD teletext plugin for VDR Group: Applications/Multimedia @@ -71,6 +71,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Ville Skytt? - 0.8.3-1 - Update to 0.8.3. From jkeating at fedoraproject.org Mon Jul 27 06:46:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:46:29 +0000 (UTC) Subject: rpms/vdr-remote/devel vdr-remote.spec,1.3,1.4 Message-ID: <20090727064629.1568F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-remote/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25565 Modified Files: vdr-remote.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-remote.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-remote/devel/vdr-remote.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vdr-remote.spec 25 Feb 2009 23:57:14 -0000 1.3 +++ vdr-remote.spec 27 Jul 2009 06:46:28 -0000 1.4 @@ -5,7 +5,7 @@ Name: vdr-%{pname} Version: 0.4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extended remote control plugin for VDR Group: Applications/Multimedia @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:46:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:46:42 +0000 (UTC) Subject: rpms/vdr-skins/devel vdr-skins.spec,1.12,1.13 Message-ID: <20090727064642.16A8E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-skins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25820 Modified Files: vdr-skins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-skins.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-skins/devel/vdr-skins.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- vdr-skins.spec 26 Feb 2009 22:41:12 -0000 1.12 +++ vdr-skins.spec 27 Jul 2009 06:46:41 -0000 1.13 @@ -14,7 +14,7 @@ Name: vdr-skins Version: 20081124 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Collection of OSD skins for VDR Group: Applications/Multimedia @@ -211,6 +211,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20081124-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Ville Skytt? - 20081124-5 - More deja vu with dejavu-fonts changes (#480477). - Use %%global instead of %%define. From jkeating at fedoraproject.org Mon Jul 27 06:46:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:46:54 +0000 (UTC) Subject: rpms/vdr-skinsoppalusikka/devel vdr-skinsoppalusikka.spec, 1.12, 1.13 Message-ID: <20090727064654.0BEE011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-skinsoppalusikka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25978 Modified Files: vdr-skinsoppalusikka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-skinsoppalusikka.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-skinsoppalusikka/devel/vdr-skinsoppalusikka.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- vdr-skinsoppalusikka.spec 14 Apr 2009 20:00:29 -0000 1.12 +++ vdr-skinsoppalusikka.spec 27 Jul 2009 06:46:53 -0000 1.13 @@ -6,7 +6,7 @@ Name: vdr-%{pname} Version: 1.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The "Soppalusikka" skin for VDR Group: Applications/Multimedia @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 - Ville-Pekka Vainio 1.6.4-1 - 1.6.4 From jkeating at fedoraproject.org Mon Jul 27 06:47:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:47:13 +0000 (UTC) Subject: rpms/vdr-streamdev/devel vdr-streamdev.spec,1.2,1.3 Message-ID: <20090727064713.6BD7411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-streamdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26208 Modified Files: vdr-streamdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-streamdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-streamdev/devel/vdr-streamdev.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vdr-streamdev.spec 25 Feb 2009 23:59:47 -0000 1.2 +++ vdr-streamdev.spec 27 Jul 2009 06:47:13 -0000 1.3 @@ -5,7 +5,7 @@ Name: vdr-%{pname} Version: 0.3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Streaming plugin for VDR Group: Applications/Multimedia @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %doc CONTRIBUTORS COPYING HISTORY PROTOCOL README %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:47:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:47:32 +0000 (UTC) Subject: rpms/vdr-sudoku/devel vdr-sudoku.spec,1.16,1.17 Message-ID: <20090727064732.D778A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-sudoku/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26407 Modified Files: vdr-sudoku.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-sudoku.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-sudoku/devel/vdr-sudoku.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- vdr-sudoku.spec 26 Feb 2009 00:00:38 -0000 1.16 +++ vdr-sudoku.spec 27 Jul 2009 06:47:32 -0000 1.17 @@ -6,7 +6,7 @@ Name: vdr-%{pname} Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Sudoku plugin for VDR Group: Amusements/Games @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:47:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:47:45 +0000 (UTC) Subject: rpms/vdr-text2skin/devel vdr-text2skin.spec,1.8,1.9 Message-ID: <20090727064745.42A7211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-text2skin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26583 Modified Files: vdr-text2skin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-text2skin.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-text2skin/devel/vdr-text2skin.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- vdr-text2skin.spec 8 Jul 2009 21:42:56 -0000 1.8 +++ vdr-text2skin.spec 27 Jul 2009 06:47:45 -0000 1.9 @@ -5,7 +5,7 @@ Name: vdr-%{pname} Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: OSD skin plugin for VDR Group: Applications/Multimedia @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Ville Skytt? - 1.2-1 - Update to 1.2. - Specfile cleanups. From jkeating at fedoraproject.org Mon Jul 27 06:47:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:47:58 +0000 (UTC) Subject: rpms/vdr-ttxtsubs/devel vdr-ttxtsubs.spec,1.11,1.12 Message-ID: <20090727064758.F0ECF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-ttxtsubs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26710 Modified Files: vdr-ttxtsubs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-ttxtsubs.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-ttxtsubs/devel/vdr-ttxtsubs.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- vdr-ttxtsubs.spec 7 Apr 2009 15:59:03 -0000 1.11 +++ vdr-ttxtsubs.spec 27 Jul 2009 06:47:58 -0000 1.12 @@ -6,7 +6,7 @@ Name: vdr-%{pname} Version: 0.0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Teletext subtitles plugin for VDR Group: Applications/Multimedia @@ -69,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 7 2009 Ville Skytt? - 0.0.9-1 - 0.0.9. From jkeating at fedoraproject.org Mon Jul 27 06:48:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:48:23 +0000 (UTC) Subject: rpms/vdr-wapd/devel vdr-wapd.spec,1.9,1.10 Message-ID: <20090727064823.3D72511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-wapd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26990 Modified Files: vdr-wapd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-wapd.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-wapd/devel/vdr-wapd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- vdr-wapd.spec 26 Feb 2009 00:03:50 -0000 1.9 +++ vdr-wapd.spec 27 Jul 2009 06:48:23 -0000 1.10 @@ -8,7 +8,7 @@ Name: vdr-%{pname} Version: 0.9 -Release: 6.patch1%{?dist} +Release: 7.patch1%{?dist} Summary: WAP remote control interface for VDR Group: Applications/Multimedia @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9-7.patch1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9-6.patch1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:48:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:48:35 +0000 (UTC) Subject: rpms/vdradmin-am/devel vdradmin-am.spec,1.16,1.17 Message-ID: <20090727064835.B269811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdradmin-am/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27145 Modified Files: vdradmin-am.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdradmin-am.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdradmin-am/devel/vdradmin-am.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- vdradmin-am.spec 15 Jul 2009 20:15:41 -0000 1.16 +++ vdradmin-am.spec 27 Jul 2009 06:48:35 -0000 1.17 @@ -4,7 +4,7 @@ Name: vdradmin-am Version: 3.6.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Web interface for VDR Group: Applications/Internet @@ -125,6 +125,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.6.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Ville Skytt? - 3.6.4-3 - Add dependency on TT JavaScript plugin, some templates use it. From jkeating at fedoraproject.org Mon Jul 27 06:48:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:48:47 +0000 (UTC) Subject: rpms/vdrift/devel vdrift.spec,1.16,1.17 Message-ID: <20090727064847.224F711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdrift/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27261 Modified Files: vdrift.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdrift.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdrift/devel/vdrift.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- vdrift.spec 1 Jul 2009 17:43:08 -0000 1.16 +++ vdrift.spec 27 Jul 2009 06:48:47 -0000 1.17 @@ -1,6 +1,6 @@ Name: vdrift Version: 20090615 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Driving/drift racing simulation Group: Amusements/Games @@ -143,6 +143,9 @@ rm -rf %{buildroot} %{_datadir}/vdrift %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090615-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Jon Ciesla - 20090615-1 - Update to 2009-06-15. - Split data into noarch subpackage, BZ 508079. From jkeating at fedoraproject.org Mon Jul 27 06:48:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:48:59 +0000 (UTC) Subject: rpms/vecmath1.2/devel vecmath1.2.spec,1.3,1.4 Message-ID: <20090727064859.41EBF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vecmath1.2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27372 Modified Files: vecmath1.2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vecmath1.2.spec =================================================================== RCS file: /cvs/pkgs/rpms/vecmath1.2/devel/vecmath1.2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vecmath1.2.spec 26 Feb 2009 00:05:31 -0000 1.3 +++ vecmath1.2.spec 27 Jul 2009 06:48:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: vecmath1.2 Version: 1.14 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Free version of vecmath from the Java3D 1.2 specification Group: System Environment/Libraries License: MIT @@ -89,6 +89,9 @@ ln -s %{name}-%{version} %{_javadocdir}/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:49:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:49:13 +0000 (UTC) Subject: rpms/vegastrike/devel vegastrike.spec,1.19,1.20 Message-ID: <20090727064913.73B9511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vegastrike/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27548 Modified Files: vegastrike.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vegastrike.spec =================================================================== RCS file: /cvs/pkgs/rpms/vegastrike/devel/vegastrike.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- vegastrike.spec 23 May 2009 17:28:30 -0000 1.19 +++ vegastrike.spec 27 Jul 2009 06:49:13 -0000 1.20 @@ -1,6 +1,6 @@ Name: vegastrike Version: 0.5.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: 3D OpenGL spaceflight simulator Group: Amusements/Games License: GPLv2+ @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 23 2009 Hans de Goede 0.5.0-10 - Rebuild for new boost and new ogre From jkeating at fedoraproject.org Mon Jul 27 06:49:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:49:24 +0000 (UTC) Subject: rpms/vegastrike-data/devel vegastrike-data.spec,1.9,1.10 Message-ID: <20090727064924.7D9D111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vegastrike-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27664 Modified Files: vegastrike-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vegastrike-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/vegastrike-data/devel/vegastrike-data.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- vegastrike-data.spec 26 Feb 2009 00:07:12 -0000 1.9 +++ vegastrike-data.spec 27 Jul 2009 06:49:24 -0000 1.10 @@ -1,6 +1,6 @@ Name: vegastrike-data Version: 0.5.0 -Release: 4 +Release: 5 Summary: Data files for Vega Strike Group: Amusements/Games License: GPLv2+ @@ -78,6 +78,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:49:38 +0000 (UTC) Subject: rpms/vegastrike-music/devel vegastrike-music.spec,1.3,1.4 Message-ID: <20090727064938.114A211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vegastrike-music/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27830 Modified Files: vegastrike-music.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vegastrike-music.spec =================================================================== RCS file: /cvs/pkgs/rpms/vegastrike-music/devel/vegastrike-music.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vegastrike-music.spec 26 Feb 2009 00:08:12 -0000 1.3 +++ vegastrike-music.spec 27 Jul 2009 06:49:37 -0000 1.4 @@ -1,6 +1,6 @@ Name: vegastrike-music Version: 0.5.0 -Release: 3 +Release: 4 Summary: Music for Vega Strike Group: Amusements/Games License: GPL+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:49:51 +0000 (UTC) Subject: rpms/velocity/devel velocity.spec,1.26,1.27 Message-ID: <20090727064951.27CA311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/velocity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27952 Modified Files: velocity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: velocity.spec =================================================================== RCS file: /cvs/pkgs/rpms/velocity/devel/velocity.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- velocity.spec 24 Apr 2009 19:18:41 -0000 1.26 +++ velocity.spec 27 Jul 2009 06:49:50 -0000 1.27 @@ -37,7 +37,7 @@ Name: velocity Version: 1.4 -Release: 8.4%{?dist} +Release: 9.4%{?dist} Epoch: 0 Summary: Java-based template engine License: ASL 2.0 @@ -287,6 +287,9 @@ fi #%endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0:1.4-9.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 24 2009 Milos Jakubicek - 0:1.4-8.4 - Fix FTBFS: added velocity-enum.patch (enum is a reserved keyword in java >= 1.5) From jkeating at fedoraproject.org Mon Jul 27 06:50:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:50:06 +0000 (UTC) Subject: rpms/verbiste/devel verbiste.spec,1.25,1.26 Message-ID: <20090727065006.2D35C11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/verbiste/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28084 Modified Files: verbiste.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: verbiste.spec =================================================================== RCS file: /cvs/pkgs/rpms/verbiste/devel/verbiste.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- verbiste.spec 6 Jul 2009 17:10:34 -0000 1.25 +++ verbiste.spec 27 Jul 2009 06:50:05 -0000 1.26 @@ -1,6 +1,6 @@ Name: verbiste Version: 0.1.26 -Release: 1%{?dist} +Release: 2%{?dist} Summary: French conjugation system Group: Applications/Text @@ -117,6 +117,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Konstantin Ryabitsev - 0.1.26-1 - New version 0.1.26 - possible to save a conjugation in a LaTeX file From jkeating at fedoraproject.org Mon Jul 27 06:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:50:20 +0000 (UTC) Subject: rpms/veusz/devel veusz.spec,1.25,1.26 Message-ID: <20090727065020.CD7E411C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/veusz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28258 Modified Files: veusz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: veusz.spec =================================================================== RCS file: /cvs/pkgs/rpms/veusz/devel/veusz.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- veusz.spec 5 Jun 2009 19:05:51 -0000 1.25 +++ veusz.spec 27 Jul 2009 06:50:20 -0000 1.26 @@ -4,7 +4,7 @@ Name: veusz Version: 1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GUI scientific plotting package Group: Applications/Productivity @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/veusz.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Jeremy Sanders - 1.4-1 - Update to Veusz 1.4 From jkeating at fedoraproject.org Mon Jul 27 06:50:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:50:32 +0000 (UTC) Subject: rpms/vfrnav/devel vfrnav.spec,1.1,1.2 Message-ID: <20090727065032.A3DEC11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vfrnav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28393 Modified Files: vfrnav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vfrnav.spec =================================================================== RCS file: /cvs/pkgs/rpms/vfrnav/devel/vfrnav.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vfrnav.spec 17 Jun 2009 17:19:38 -0000 1.1 +++ vfrnav.spec 27 Jul 2009 06:50:32 -0000 1.2 @@ -1,6 +1,6 @@ Name: vfrnav Version: 0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: VFR Navigation Group: Applications/Productivity @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/vfrdbxplaneexport %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Thomas Sailer - 0.3-8 - convert icons to a standard size - vfrnav-utils now requires vfrnav From jkeating at fedoraproject.org Mon Jul 27 06:50:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:50:43 +0000 (UTC) Subject: rpms/vgabios/devel vgabios.spec,1.3,1.4 Message-ID: <20090727065043.CC5E611C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vgabios/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28513 Modified Files: vgabios.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vgabios.spec =================================================================== RCS file: /cvs/pkgs/rpms/vgabios/devel/vgabios.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vgabios.spec 19 Jun 2009 17:25:14 -0000 1.3 +++ vgabios.spec 27 Jul 2009 06:50:43 -0000 1.4 @@ -1,6 +1,6 @@ Name: vgabios Version: 0.6b -Release: 2%{?dist} +Release: 3%{?dist} Summary: LGPL implementation of a vga video bios Group: Applications/Emulators @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6b-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Glauber Costa - 0.6b-2 - properly add the patch From jkeating at fedoraproject.org Mon Jul 27 06:50:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:50:54 +0000 (UTC) Subject: rpms/vhd2vl/devel vhd2vl.spec,1.2,1.3 Message-ID: <20090727065054.6547311C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vhd2vl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28616 Modified Files: vhd2vl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vhd2vl.spec =================================================================== RCS file: /cvs/pkgs/rpms/vhd2vl/devel/vhd2vl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vhd2vl.spec 26 Feb 2009 00:15:24 -0000 1.2 +++ vhd2vl.spec 27 Jul 2009 06:50:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: vhd2vl Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: VHDL to Verilog translator License: GPLv2+ @@ -57,6 +57,9 @@ subset of VHDL, sufficient for complex d %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:51:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:51:05 +0000 (UTC) Subject: rpms/vhybridize/devel vhybridize.spec,1.2,1.3 Message-ID: <20090727065105.F288E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vhybridize/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28749 Modified Files: vhybridize.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vhybridize.spec =================================================================== RCS file: /cvs/pkgs/rpms/vhybridize/devel/vhybridize.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vhybridize.spec 26 Feb 2009 00:16:28 -0000 1.2 +++ vhybridize.spec 27 Jul 2009 06:51:05 -0000 1.3 @@ -2,7 +2,7 @@ Name: vhybridize Version: 0.5.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Virtual Hybridization command line tools Group: Applications/Engineering @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:51:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:51:29 +0000 (UTC) Subject: rpms/viaideinfo/devel viaideinfo.spec,1.7,1.8 Message-ID: <20090727065129.4042D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/viaideinfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28945 Modified Files: viaideinfo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: viaideinfo.spec =================================================================== RCS file: /cvs/pkgs/rpms/viaideinfo/devel/viaideinfo.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- viaideinfo.spec 26 Feb 2009 00:17:25 -0000 1.7 +++ viaideinfo.spec 27 Jul 2009 06:51:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: viaideinfo Version: 0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Displays the information of installed VIA IDE controllers Group: Applications/System License: GPLv2+ @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:51:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:51:40 +0000 (UTC) Subject: rpms/vidalia/devel vidalia.spec,1.4,1.5 Message-ID: <20090727065140.8BFE511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vidalia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29129 Modified Files: vidalia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vidalia.spec =================================================================== RCS file: /cvs/pkgs/rpms/vidalia/devel/vidalia.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- vidalia.spec 7 Jul 2009 20:40:15 -0000 1.4 +++ vidalia.spec 27 Jul 2009 06:51:40 -0000 1.5 @@ -1,6 +1,6 @@ Name: vidalia Version: 0.1.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GUI controller for the Tor Onion Routing Network Group: Applications/Internet @@ -115,6 +115,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Simon Wesp - 0.1.14-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 06:52:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:52:00 +0000 (UTC) Subject: rpms/videodog/devel videodog.spec,1.6,1.7 Message-ID: <20090727065200.3305B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/videodog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29278 Modified Files: videodog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: videodog.spec =================================================================== RCS file: /cvs/pkgs/rpms/videodog/devel/videodog.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- videodog.spec 26 Feb 2009 00:18:20 -0000 1.6 +++ videodog.spec 27 Jul 2009 06:51:59 -0000 1.7 @@ -1,6 +1,6 @@ Name: videodog Version: 0.31 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Command-line video4linux frame-grabber Group: Applications/Multimedia @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.31-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.31-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:52:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:52:12 +0000 (UTC) Subject: rpms/viewmtn/devel viewmtn.spec,1.3,1.4 Message-ID: <20090727065212.8FBFE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/viewmtn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29410 Modified Files: viewmtn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: viewmtn.spec =================================================================== RCS file: /cvs/pkgs/rpms/viewmtn/devel/viewmtn.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- viewmtn.spec 26 Feb 2009 00:19:25 -0000 1.3 +++ viewmtn.spec 27 Jul 2009 06:52:12 -0000 1.4 @@ -2,7 +2,7 @@ Name: viewmtn Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Web interface for Monotone version control system Group: Development/Tools @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:52:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:52:23 +0000 (UTC) Subject: rpms/viewvc/devel viewvc.spec,1.17,1.18 Message-ID: <20090727065223.CD9CF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/viewvc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29520 Modified Files: viewvc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: viewvc.spec =================================================================== RCS file: /cvs/pkgs/rpms/viewvc/devel/viewvc.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- viewvc.spec 3 Jun 2009 21:28:50 -0000 1.17 +++ viewvc.spec 27 Jul 2009 06:52:23 -0000 1.18 @@ -2,7 +2,7 @@ Name: viewvc Version: 1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Browser interface for CVS and SVN version control repositories Group: Development/Tools @@ -113,6 +113,9 @@ with decent performance when run under A %config(noreplace) %{_sysconfdir}/httpd/conf.d/viewvc.conf %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 4 2009 Bojan Smojver - 1.1.1-1 - Bump up to 1.1.1 From jkeating at fedoraproject.org Mon Jul 27 06:52:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:52:36 +0000 (UTC) Subject: rpms/vigra/devel vigra.spec,1.7,1.8 Message-ID: <20090727065236.7E13811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vigra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29683 Modified Files: vigra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vigra.spec =================================================================== RCS file: /cvs/pkgs/rpms/vigra/devel/vigra.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vigra.spec 8 Jun 2009 22:11:28 -0000 1.7 +++ vigra.spec 27 Jul 2009 06:52:36 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Generic Programming for Computer Vision Name: vigra Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/Libraries Source: http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/%{name}%{version}.tar.gz @@ -70,6 +70,9 @@ rm -rf %{buildroot} %doc doc/vigra/*.html doc/vigra/*.css doc/vigra/*.png doc/vigra/*.gif doc/vigra/*.ps doc/vigra/documents/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 08 2009 Bruno Postle - 1.6.0-1 - Update to latest release From jkeating at fedoraproject.org Mon Jul 27 06:52:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:52:47 +0000 (UTC) Subject: rpms/viking/devel viking.spec,1.4,1.5 Message-ID: <20090727065247.3267411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/viking/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29806 Modified Files: viking.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: viking.spec =================================================================== RCS file: /cvs/pkgs/rpms/viking/devel/viking.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- viking.spec 31 Mar 2009 15:47:32 -0000 1.4 +++ viking.spec 27 Jul 2009 06:52:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: viking Version: 0.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GPS data editor and analyzer Group: Applications/Productivity @@ -84,6 +84,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Tom "spot" Callaway - 0.9.8-2 - use new gpsd header (gpsdclient.h) From jkeating at fedoraproject.org Mon Jul 27 06:53:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:53:18 +0000 (UTC) Subject: rpms/vim/devel vim.spec,1.236,1.237 Message-ID: <20090727065318.AC61E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30047 Modified Files: vim.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vim.spec =================================================================== RCS file: /cvs/pkgs/rpms/vim/devel/vim.spec,v retrieving revision 1.236 retrieving revision 1.237 diff -u -p -r1.236 -r1.237 --- vim.spec 27 Mar 2009 11:39:00 -0000 1.236 +++ vim.spec 27 Jul 2009 06:53:18 -0000 1.237 @@ -24,7 +24,7 @@ Summary: The VIM editor URL: http://www.vim.org/ Name: vim Version: %{baseversion}.%{beta}%{patchlevel} -Release: 1%{?dist} +Release: 2%{?dist} License: Vim Group: Applications/Editors Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}%{?beta}%{?CVSDATE}.tar.bz2 @@ -954,6 +954,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2:7.2.148-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 27 2009 Karsten Hopp 7.2.148-1 - patchlevel 148, fixes #461417 From jkeating at fedoraproject.org Mon Jul 27 06:53:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:53:34 +0000 (UTC) Subject: rpms/vim-perl-support/devel vim-perl-support.spec,1.10,1.11 Message-ID: <20090727065334.8731411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vim-perl-support/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30225 Modified Files: vim-perl-support.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vim-perl-support.spec =================================================================== RCS file: /cvs/pkgs/rpms/vim-perl-support/devel/vim-perl-support.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- vim-perl-support.spec 3 Jul 2009 09:20:59 -0000 1.10 +++ vim-perl-support.spec 27 Jul 2009 06:53:34 -0000 1.11 @@ -1,6 +1,6 @@ Name: vim-perl-support Version: 4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Perl-IDE for VIM Group: Applications/Editors @@ -132,6 +132,9 @@ exit 0 %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Iain Arnell 4.4-1 - update to 4.4 From jkeating at fedoraproject.org Mon Jul 27 06:53:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:53:46 +0000 (UTC) Subject: rpms/vim-vimoutliner/devel vim-vimoutliner.spec,1.4,1.5 Message-ID: <20090727065346.2F69E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vim-vimoutliner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30367 Modified Files: vim-vimoutliner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vim-vimoutliner.spec =================================================================== RCS file: /cvs/pkgs/rpms/vim-vimoutliner/devel/vim-vimoutliner.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- vim-vimoutliner.spec 26 Feb 2009 00:24:11 -0000 1.4 +++ vim-vimoutliner.spec 27 Jul 2009 06:53:46 -0000 1.5 @@ -2,7 +2,7 @@ Name: vim-vimoutliner Version: 0.3.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Script for building an outline editor on top of Vim Group: Applications/Editors # LICENSE says v2, but the code all says v2+ @@ -92,6 +92,9 @@ fi %{_mandir}/man1/*.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From tagoh at fedoraproject.org Mon Jul 27 06:53:55 2009 From: tagoh at fedoraproject.org (Akira TAGOH) Date: Mon, 27 Jul 2009 06:53:55 +0000 (UTC) Subject: rpms/man-pages-ja/devel .cvsignore, 1.61, 1.62 man-pages-ja.spec, 1.73, 1.74 sources, 1.60, 1.61 Message-ID: <20090727065355.A458F11C00E8@cvs1.fedora.phx.redhat.com> Author: tagoh Update of /cvs/pkgs/rpms/man-pages-ja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30452 Modified Files: .cvsignore man-pages-ja.spec sources Log Message: * Mon Jul 27 2009 Akira TAGOH - 20090715-1 - updates to 20090715. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ja/devel/.cvsignore,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- .cvsignore 16 Jun 2009 03:18:25 -0000 1.61 +++ .cvsignore 27 Jul 2009 06:53:55 -0000 1.62 @@ -48,3 +48,4 @@ man-pages-ja-20080915.tar.gz man-pages-ja-20081015.tar.gz man-pages-ja-20090215.tar.gz man-pages-ja-20090615.tar.gz +man-pages-ja-20090715.tar.gz Index: man-pages-ja.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ja/devel/man-pages-ja.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- man-pages-ja.spec 25 Jul 2009 11:44:06 -0000 1.73 +++ man-pages-ja.spec 27 Jul 2009 06:53:55 -0000 1.74 @@ -1,8 +1,8 @@ %define use_utf8 1 Name: man-pages-ja -Version: 20090615 -Release: 2%{?dist} +Version: 20090715 +Release: 1%{?dist} # Actual license for each Japanese manpages is the same to the original English manpages' license. License: Freely redistributable without restriction BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -135,6 +135,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Akira TAGOH - 20090715-1 +- updates to 20090715. + * Sat Jul 25 2009 Fedora Release Engineering - 20090615-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/man-pages-ja/devel/sources,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- sources 16 Jun 2009 03:18:25 -0000 1.60 +++ sources 27 Jul 2009 06:53:55 -0000 1.61 @@ -1 +1 @@ -ea2678da27524716ccfa7138dd1b90df man-pages-ja-20090615.tar.gz +28d16b04df7dbb76a55dbc66a4526cc0 man-pages-ja-20090715.tar.gz From jkeating at fedoraproject.org Mon Jul 27 06:53:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:53:58 +0000 (UTC) Subject: rpms/vinagre/devel vinagre.spec,1.44,1.45 Message-ID: <20090727065358.40D1C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vinagre/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30496 Modified Files: vinagre.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vinagre.spec =================================================================== RCS file: /cvs/pkgs/rpms/vinagre/devel/vinagre.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- vinagre.spec 13 Apr 2009 17:30:06 -0000 1.44 +++ vinagre.spec 27 Jul 2009 06:53:58 -0000 1.45 @@ -1,6 +1,6 @@ Name: vinagre Version: 2.26.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: VNC client for GNOME Group: Applications/System @@ -122,6 +122,9 @@ fi %doc README NEWS COPYING AUTHORS %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.26.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Matthias Clasen - 2.26.1-1 - Update to 2.26.1 - See http://download.gnome.org/sources/vinagre/2.26/vinagre-2.26.1.news From jkeating at fedoraproject.org Mon Jul 27 06:54:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:54:23 +0000 (UTC) Subject: rpms/vips/devel vips.spec,1.26,1.27 Message-ID: <20090727065423.DA31911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vips/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30838 Modified Files: vips.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vips.spec =================================================================== RCS file: /cvs/pkgs/rpms/vips/devel/vips.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- vips.spec 11 Mar 2009 01:39:53 -0000 1.26 +++ vips.spec 27 Jul 2009 06:54:23 -0000 1.27 @@ -2,7 +2,7 @@ Name: vips Version: 7.16.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C/C++ library for processing large images Group: System Environment/Libraries @@ -144,6 +144,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 7.16.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 10 2009 Adam Goode - 7.16.4-3 - Rebuild for ImageMagick soname change From jkeating at fedoraproject.org Mon Jul 27 06:54:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:54:11 +0000 (UTC) Subject: rpms/vino/devel vino.spec,1.98,1.99 Message-ID: <20090727065411.2AA0A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vino/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30652 Modified Files: vino.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vino.spec =================================================================== RCS file: /cvs/pkgs/rpms/vino/devel/vino.spec,v retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- vino.spec 10 Jul 2009 02:05:16 -0000 1.98 +++ vino.spec 27 Jul 2009 06:54:10 -0000 1.99 @@ -9,7 +9,7 @@ Summary: A remote desktop system for GNOME Name: vino Version: 2.26.1 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.gnome.org Source0: http://download.gnome.org/sources/vino/2.26/%{name}-%{version}.tar.bz2 License: GPLv2+ @@ -113,6 +113,9 @@ fi %{_sysconfdir}/xdg/autostart/vino-server.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.26.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Matthias Clasen - 2.26.1-5 - Rebuild to shrink GConf schemas From jkeating at fedoraproject.org Mon Jul 27 06:54:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:54:34 +0000 (UTC) Subject: rpms/virt-ctrl/devel virt-ctrl.spec,1.4,1.5 Message-ID: <20090727065434.6DEF511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-ctrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30985 Modified Files: virt-ctrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-ctrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-ctrl/devel/virt-ctrl.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- virt-ctrl.spec 16 Apr 2009 09:26:13 -0000 1.4 +++ virt-ctrl.spec 27 Jul 2009 06:54:34 -0000 1.5 @@ -3,7 +3,7 @@ Name: virt-ctrl Version: 1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Graphical management app for virtual machines Group: Development/Libraries @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 06:55:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:55:11 +0000 (UTC) Subject: rpms/virt-manager/devel virt-manager.spec,1.52,1.53 Message-ID: <20090727065511.D57DC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31231 Modified Files: virt-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-manager/devel/virt-manager.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- virt-manager.spec 21 May 2009 14:56:09 -0000 1.52 +++ virt-manager.spec 27 Jul 2009 06:55:11 -0000 1.53 @@ -8,7 +8,7 @@ Name: virt-manager Version: 0.7.0 -Release: 5%{_extra_release} +Release: 6%{_extra_release} Summary: Virtual Machine Manager Group: Applications/Emulators @@ -188,6 +188,9 @@ fi %{_datadir}/dbus-1/services/%{name}.service %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Mark McLoughlin - 0.7.0-5.fc12 - Fix 'opertaing' typo in 'New VM' dialog (#495128) - Allow details window to resize again (#491683) From jkeating at fedoraproject.org Mon Jul 27 06:55:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:55:23 +0000 (UTC) Subject: rpms/virt-mem/devel virt-mem.spec,1.11,1.12 Message-ID: <20090727065523.83F7511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-mem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31351 Modified Files: virt-mem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-mem.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-mem/devel/virt-mem.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- virt-mem.spec 12 Jun 2009 12:26:50 -0000 1.11 +++ virt-mem.spec 27 Jul 2009 06:55:23 -0000 1.12 @@ -3,7 +3,7 @@ Name: virt-mem Version: 0.3.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Management tools for virtual machines Group: Development/Libraries @@ -115,6 +115,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Richard W.M. Jones - 0.3.1-8 - Fix for libvirt 0.6: Libvirt.D.memory_peek now requires write permission to the hypervisor connection. From jkeating at fedoraproject.org Mon Jul 27 06:55:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:55:36 +0000 (UTC) Subject: rpms/virt-top/devel virt-top.spec,1.6,1.7 Message-ID: <20090727065536.581FF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-top/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31478 Modified Files: virt-top.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-top.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-top/devel/virt-top.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- virt-top.spec 16 Apr 2009 09:26:14 -0000 1.6 +++ virt-top.spec 27 Jul 2009 06:55:36 -0000 1.7 @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Utility like top(1) for displaying virtualization stats Group: Development/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 06:55:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:55:48 +0000 (UTC) Subject: rpms/virt-viewer/devel virt-viewer.spec,1.13,1.14 Message-ID: <20090727065548.D1EDB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/virt-viewer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31584 Modified Files: virt-viewer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: virt-viewer.spec =================================================================== RCS file: /cvs/pkgs/rpms/virt-viewer/devel/virt-viewer.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- virt-viewer.spec 7 May 2009 11:55:21 -0000 1.13 +++ virt-viewer.spec 27 Jul 2009 06:55:48 -0000 1.14 @@ -6,7 +6,7 @@ Name: virt-viewer Version: 0.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Virtual Machine Viewer Group: Applications/System License: GPLv2+ @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Daniel P. Berrange - 0.0.3-5.fc12 - Fix auth against libvirt (rhbz #499594) - Fix confusion of VNC credentials (rhbz #499595) From jkeating at fedoraproject.org Mon Jul 27 06:56:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:56:02 +0000 (UTC) Subject: rpms/vkeybd/devel vkeybd.spec,1.9,1.10 Message-ID: <20090727065602.DD38E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vkeybd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31727 Modified Files: vkeybd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vkeybd.spec =================================================================== RCS file: /cvs/pkgs/rpms/vkeybd/devel/vkeybd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- vkeybd.spec 26 Feb 2009 00:38:07 -0000 1.9 +++ vkeybd.spec 27 Jul 2009 06:56:02 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Virtual MIDI keyboard Name: vkeybd Version: 0.1.17a -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.alsa-project.org/~iwai/alsa.html @@ -79,6 +79,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/64x64/apps/vkeybd.png %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.1.17a-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.17a-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:56:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:56:15 +0000 (UTC) Subject: rpms/vldocking/devel vldocking.spec,1.2,1.3 Message-ID: <20090727065615.765E511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vldocking/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31863 Modified Files: vldocking.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vldocking.spec =================================================================== RCS file: /cvs/pkgs/rpms/vldocking/devel/vldocking.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vldocking.spec 26 Feb 2009 00:38:29 -0000 1.2 +++ vldocking.spec 27 Jul 2009 06:56:15 -0000 1.3 @@ -1,6 +1,6 @@ Name: vldocking Version: 2.0.6e -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Java ? docking system for JFC Swing applications Group: Development/Tools License: CeCILL @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.6e-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.6e-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:56:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:56:34 +0000 (UTC) Subject: rpms/vlgothic-fonts/devel vlgothic-fonts.spec,1.5,1.6 Message-ID: <20090727065634.EE19F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vlgothic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32016 Modified Files: vlgothic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vlgothic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fonts.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- vlgothic-fonts.spec 15 Jun 2009 11:21:08 -0000 1.5 +++ vlgothic-fonts.spec 27 Jul 2009 06:56:34 -0000 1.6 @@ -9,7 +9,7 @@ but some have also been improved by the Name: %{fontname}-fonts Version: 20090612 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Japanese TrueType font License: mplus and BSD @@ -93,6 +93,9 @@ rm -rf ${RPM_BUILD_ROOT} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20090612-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Akira TAGOH - 20090612-1 - New upstream release. From jkeating at fedoraproject.org Mon Jul 27 06:06:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:06:26 +0000 (UTC) Subject: rpms/toot2/devel toot2.spec,1.1,1.2 Message-ID: <20090727060626.1500611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/toot2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30244 Modified Files: toot2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: toot2.spec =================================================================== RCS file: /cvs/pkgs/rpms/toot2/devel/toot2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- toot2.spec 6 Jun 2009 03:00:16 -0000 1.1 +++ toot2.spec 27 Jul 2009 06:06:24 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Java models and framew URL: http://toot.org.uk/index.html Group: Development/Libraries Version: 3 -Release: 0.4%{?prerel}%{?dist} +Release: 0.5%{?prerel}%{?dist} # License is GPLv2+ with some exceptions (a.k.a. Toot License) License: GPLv2+ with exceptions BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root @@ -89,6 +89,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3-0.5.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Orcan Ogetbil - 3-0.4.beta2 - Update to 3beta2 From jkeating at fedoraproject.org Mon Jul 27 06:06:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:06:36 +0000 (UTC) Subject: rpms/tootaudioservers/devel tootaudioservers.spec,1.1,1.2 Message-ID: <20090727060636.A6B3311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/tootaudioservers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30401 Modified Files: tootaudioservers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: tootaudioservers.spec =================================================================== RCS file: /cvs/pkgs/rpms/tootaudioservers/devel/tootaudioservers.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tootaudioservers.spec 26 Jun 2009 04:36:33 -0000 1.1 +++ tootaudioservers.spec 27 Jul 2009 06:06:36 -0000 1.2 @@ -5,7 +5,7 @@ Summary: Toot2 Audio Server URL: http://code.google.com/p/tootaudioservers/ Group: Development/Libraries Version: 3 -Release: 0.1%{?prerel}%{?dist} +Release: 0.2%{?prerel}%{?dist} License: GPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root # Upstream doesn't provide a tarball. @@ -92,6 +92,9 @@ rm -rf %{buildroot} %{_javadocdir}/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3-0.2.beta2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 26 2009 Orcan Ogetbil - 3-0.1.beta2 - Update to 3beta2 From jkeating at fedoraproject.org Mon Jul 27 06:07:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:07:35 +0000 (UTC) Subject: rpms/torcs/devel torcs.spec,1.24,1.25 Message-ID: <20090727060735.6258611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/torcs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30954 Modified Files: torcs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: torcs.spec =================================================================== RCS file: /cvs/pkgs/rpms/torcs/devel/torcs.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- torcs.spec 10 Apr 2009 21:18:00 -0000 1.24 +++ torcs.spec 27 Jul 2009 06:07:34 -0000 1.25 @@ -1,7 +1,7 @@ Summary: The Open Racing Car Simulator Name: torcs Version: 1.3.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://torcs.org/ @@ -126,6 +126,9 @@ find %{buildroot}%{_libdir}/%{name}/ -na %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Matthias Saou 1.3.1-1 - Update to 1.3.1. - Remove the drivers sub-package since only one is provided upstream now and From jkeating at fedoraproject.org Mon Jul 27 06:11:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:11:24 +0000 (UTC) Subject: rpms/trac-mercurial-plugin/devel trac-mercurial-plugin.spec, 1.11, 1.12 Message-ID: <20090727061124.3C84811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-mercurial-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1972 Modified Files: trac-mercurial-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-mercurial-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-mercurial-plugin/devel/trac-mercurial-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- trac-mercurial-plugin.spec 23 Jul 2009 21:30:13 -0000 1.11 +++ trac-mercurial-plugin.spec 27 Jul 2009 06:11:23 -0000 1.12 @@ -5,7 +5,7 @@ Name: trac-mercurial-plugin Version: 0.11.0.7 -Release: 6.20090715svn%{svnrev}%{?dist} +Release: 7.20090715svn%{svnrev}%{?dist} Summary: Mercurial plugin for Trac Group: Applications/Internet @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11.0.7-7.20090715svn8365 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Jesse Keating - 0.11.0.7-6.20090715svn8365 - Pull new upstream snapshot with the patch integrated. From jkeating at fedoraproject.org Mon Jul 27 06:11:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:11:37 +0000 (UTC) Subject: rpms/trac-monotone-plugin/devel trac-monotone-plugin.spec,1.6,1.7 Message-ID: <20090727061137.6A59B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-monotone-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2139 Modified Files: trac-monotone-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-monotone-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-monotone-plugin/devel/trac-monotone-plugin.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- trac-monotone-plugin.spec 25 Feb 2009 21:36:26 -0000 1.6 +++ trac-monotone-plugin.spec 27 Jul 2009 06:11:37 -0000 1.7 @@ -8,7 +8,7 @@ Name: trac-monotone-plugin Version: 0.0.14 -Release: 3%{tarsfx}%{?dist} +Release: 4%{tarsfx}%{?dist} Summary: Monotone version control plugin for Trac Group: Applications/Internet @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.0.14-4.20080208mtnb4dd178b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.14-3.20080208mtnb4dd178b - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:11:49 +0000 (UTC) Subject: rpms/trac-peerreview-plugin/devel trac-peerreview-plugin.spec, 1.1, 1.2 Message-ID: <20090727061149.126C811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trac-peerreview-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2267 Modified Files: trac-peerreview-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trac-peerreview-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/trac-peerreview-plugin/devel/trac-peerreview-plugin.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- trac-peerreview-plugin.spec 11 Jun 2009 17:35:28 -0000 1.1 +++ trac-peerreview-plugin.spec 27 Jul 2009 06:11:48 -0000 1.2 @@ -5,7 +5,7 @@ Name: trac-peerreview-plugin Version: 0.11 -Release: 1.svn%{svnrev}%{?dist} +Release: 2.svn%{svnrev}%{?dist} Summary: Framework for realtime code review within Trac Group: Applications/Internet @@ -71,5 +71,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.11-2.svn5357 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 Chitlesh Goorah - 0.11-1.svn5357 - Initial build From jkeating at fedoraproject.org Mon Jul 27 06:13:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:13:10 +0000 (UTC) Subject: rpms/trackballs/devel trackballs.spec,1.12,1.13 Message-ID: <20090727061310.5563D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/trackballs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3183 Modified Files: trackballs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: trackballs.spec =================================================================== RCS file: /cvs/pkgs/rpms/trackballs/devel/trackballs.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- trackballs.spec 25 Feb 2009 21:42:31 -0000 1.12 +++ trackballs.spec 27 Jul 2009 06:13:10 -0000 1.13 @@ -1,6 +1,6 @@ Name: trackballs Version: 1.1.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Steer a marble ball through a labyrinth Group: Amusements/Games License: GPLv2+ @@ -81,6 +81,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:37:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:37:02 +0000 (UTC) Subject: rpms/upx/devel upx.spec,1.20,1.21 Message-ID: <20090727063702.AEED011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/upx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19151 Modified Files: upx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: upx.spec =================================================================== RCS file: /cvs/pkgs/rpms/upx/devel/upx.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- upx.spec 27 Feb 2009 16:30:53 -0000 1.20 +++ upx.spec 27 Jul 2009 06:37:02 -0000 1.21 @@ -1,6 +1,6 @@ Name: upx Version: 3.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Ultimate Packer for eXecutables Group: Applications/Archiving @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Jon Ciesla - 3.03-3 - Patch for stricter glibc. From jkeating at fedoraproject.org Mon Jul 27 06:37:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:37:19 +0000 (UTC) Subject: rpms/uqm/devel uqm.spec,1.20,1.21 Message-ID: <20090727063719.4ED6F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uqm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19330 Modified Files: uqm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uqm.spec =================================================================== RCS file: /cvs/pkgs/rpms/uqm/devel/uqm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- uqm.spec 27 Jun 2009 12:33:18 -0000 1.20 +++ uqm.spec 27 Jul 2009 06:37:18 -0000 1.21 @@ -1,6 +1,6 @@ Name: uqm Version: 0.6.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The Ur-Quan Masters, a port of the classic game Star Control II Group: Amusements/Games @@ -100,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Konstantin Ryabitsev - 0.6.2-9 - Fix for content location (#505489) From jkeating at fedoraproject.org Mon Jul 27 06:37:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:37:37 +0000 (UTC) Subject: rpms/uread/devel uread.spec,1.6,1.7 Message-ID: <20090727063737.6E3F411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19500 Modified Files: uread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uread.spec =================================================================== RCS file: /cvs/pkgs/rpms/uread/devel/uread.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- uread.spec 27 May 2009 15:23:33 -0000 1.6 +++ uread.spec 27 Jul 2009 06:37:36 -0000 1.7 @@ -2,7 +2,7 @@ Name: uread Version: 0 -Release: 0.4.%{stamp}%{?dist} +Release: 0.5.%{stamp}%{?dist} Summary: Utilities for unformatted fortran files Group: Development/Tools @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/u*.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0-0.5.20081006 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 27 2009 Jon Ciesla - 0-0.4.20081006 - Updated to new release. - Dropped patch. From jkeating at fedoraproject.org Mon Jul 27 06:37:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:37:50 +0000 (UTC) Subject: rpms/uriparser/devel uriparser.spec,1.3,1.4 Message-ID: <20090727063750.A954611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uriparser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19647 Modified Files: uriparser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uriparser.spec =================================================================== RCS file: /cvs/pkgs/rpms/uriparser/devel/uriparser.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- uriparser.spec 14 Apr 2009 15:53:02 -0000 1.3 +++ uriparser.spec 27 Jul 2009 06:37:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: uriparser Version: 0.7.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: URI parsing library - RFC 3986 Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.7.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 06 2009 Rakesh Pandit 0.7.5-1 - Upgrade to 0.7.5: - Improved docs From jkeating at fedoraproject.org Mon Jul 27 06:38:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:38:05 +0000 (UTC) Subject: rpms/urlgfe/devel urlgfe.spec,1.10,1.11 Message-ID: <20090727063805.C94B811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/urlgfe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19806 Modified Files: urlgfe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: urlgfe.spec =================================================================== RCS file: /cvs/pkgs/rpms/urlgfe/devel/urlgfe.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- urlgfe.spec 24 Feb 2009 05:19:23 -0000 1.10 +++ urlgfe.spec 27 Jul 2009 06:38:05 -0000 1.11 @@ -1,6 +1,6 @@ Name: urlgfe Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Urlgfe download manager Group: Applications/Internet @@ -71,6 +71,9 @@ desktop-file-install \ %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Mamoru Tasaka - 1.0.3-2 - F-11: Mass rebuild From jkeating at fedoraproject.org Mon Jul 27 06:48:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:48:11 +0000 (UTC) Subject: rpms/vdr-tvonscreen/devel vdr-tvonscreen.spec,1.5,1.6 Message-ID: <20090727064811.667F211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vdr-tvonscreen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26881 Modified Files: vdr-tvonscreen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vdr-tvonscreen.spec =================================================================== RCS file: /cvs/pkgs/rpms/vdr-tvonscreen/devel/vdr-tvonscreen.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- vdr-tvonscreen.spec 26 Feb 2009 00:03:03 -0000 1.5 +++ vdr-tvonscreen.spec 27 Jul 2009 06:48:11 -0000 1.6 @@ -5,7 +5,7 @@ Name: vdr-%{pname} Version: 1.0.141 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Enhanced EPG data viewer for VDR Group: Applications/Multimedia @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.141-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.141-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:56:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:56:47 +0000 (UTC) Subject: rpms/vlock/devel vlock.spec,1.26,1.27 Message-ID: <20090727065647.9835511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vlock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32181 Modified Files: vlock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vlock.spec =================================================================== RCS file: /cvs/pkgs/rpms/vlock/devel/vlock.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- vlock.spec 26 Feb 2009 00:40:53 -0000 1.26 +++ vlock.spec 27 Jul 2009 06:56:47 -0000 1.27 @@ -1,7 +1,7 @@ Summary: A program which locks one or more virtual consoles Name: vlock Version: 1.3 -Release: 28%{?dist} +Release: 29%{?dist} # No version specified. License: GPL+ Group: Applications/System @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/vlock.1* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:57:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:57:03 +0000 (UTC) Subject: rpms/vnc-ltsp-config/devel vnc-ltsp-config.spec,1.7,1.8 Message-ID: <20090727065703.2CB8111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vnc-ltsp-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32345 Modified Files: vnc-ltsp-config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vnc-ltsp-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/vnc-ltsp-config/devel/vnc-ltsp-config.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vnc-ltsp-config.spec 26 Feb 2009 00:43:30 -0000 1.7 +++ vnc-ltsp-config.spec 27 Jul 2009 06:57:03 -0000 1.8 @@ -2,7 +2,7 @@ Summary: Easy Enabler of VNC remote LTSP desktops Name: vnc-ltsp-config Version: 4.0 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: User Interface/X @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:57:17 +0000 (UTC) Subject: rpms/vnc-reflector/devel vnc-reflector.spec,1.7,1.8 Message-ID: <20090727065717.8B9A611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vnc-reflector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32479 Modified Files: vnc-reflector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vnc-reflector.spec =================================================================== RCS file: /cvs/pkgs/rpms/vnc-reflector/devel/vnc-reflector.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vnc-reflector.spec 26 Feb 2009 00:44:31 -0000 1.7 +++ vnc-reflector.spec 27 Jul 2009 06:57:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: vnc-reflector Version: 1.2.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A specialized, multiplexing vnc proxy server Group: Applications/Internet @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.2.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:57:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:57:30 +0000 (UTC) Subject: rpms/vnstat/devel vnstat.spec,1.11,1.12 Message-ID: <20090727065730.B00B011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vnstat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32618 Modified Files: vnstat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vnstat.spec =================================================================== RCS file: /cvs/pkgs/rpms/vnstat/devel/vnstat.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- vnstat.spec 26 Feb 2009 00:45:27 -0000 1.11 +++ vnstat.spec 27 Jul 2009 06:57:30 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Console-based network traffic monitor Name: vnstat Version: 1.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: System Environment/Daemons @@ -91,6 +91,9 @@ END %attr(-,vnstat,vnstat)%{_localstatedir}/lib/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:57:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:57:45 +0000 (UTC) Subject: rpms/vodovod/devel vodovod.spec,1.6,1.7 Message-ID: <20090727065745.5225111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vodovod/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv344 Modified Files: vodovod.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vodovod.spec =================================================================== RCS file: /cvs/pkgs/rpms/vodovod/devel/vodovod.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- vodovod.spec 12 May 2009 07:50:05 -0000 1.6 +++ vodovod.spec 27 Jul 2009 06:57:45 -0000 1.7 @@ -1,6 +1,6 @@ Name: vodovod Version: 1.10r19 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A pipe connecting game Group: Amusements/Games @@ -100,6 +100,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.10r19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 Ville Skytt? - 1.10r19-5 - Build with $RPM_OPT_FLAGS. From jkeating at fedoraproject.org Mon Jul 27 06:58:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:58:00 +0000 (UTC) Subject: rpms/vollkorn-fonts/devel vollkorn-fonts.spec,1.3,1.4 Message-ID: <20090727065800.1D55E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vollkorn-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv529 Modified Files: vollkorn-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vollkorn-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/vollkorn-fonts/devel/vollkorn-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vollkorn-fonts.spec 26 Feb 2009 00:47:29 -0000 1.3 +++ vollkorn-fonts.spec 27 Jul 2009 06:57:58 -0000 1.4 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 1.008 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A serif latin font with good readability Group: User Interface/X @@ -61,6 +61,9 @@ rm -fr %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.008-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.008-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:58:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:58:12 +0000 (UTC) Subject: rpms/volume_key/devel volume_key.spec,1.1,1.2 Message-ID: <20090727065812.97A9411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/volume_key/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv700 Modified Files: volume_key.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: volume_key.spec =================================================================== RCS file: /cvs/pkgs/rpms/volume_key/devel/volume_key.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- volume_key.spec 23 Jul 2009 23:16:05 -0000 1.1 +++ volume_key.spec 27 Jul 2009 06:58:12 -0000 1.2 @@ -3,7 +3,7 @@ Summary: An utility for manipulating storage encryption keys and passphrases Name: volume_key Version: 0.2 -Release: 1 +Release: 2 License: GPLv2 Group: Applications/System URL: https://fedorahosted.org/volume_key/ @@ -135,5 +135,8 @@ rm -rf $RPM_BUILD_ROOT %{python_sitearch}/volume_key.py* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Miloslav Trma? - 0.2-1 - Initial build. From jkeating at fedoraproject.org Mon Jul 27 06:58:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:58:25 +0000 (UTC) Subject: rpms/vorbis-tools/devel vorbis-tools.spec,1.36,1.37 Message-ID: <20090727065825.DB8D211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vorbis-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv829 Modified Files: vorbis-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vorbis-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/vorbis-tools/devel/vorbis-tools.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- vorbis-tools.spec 26 Feb 2009 00:48:31 -0000 1.36 +++ vorbis-tools.spec 27 Jul 2009 06:58:25 -0000 1.37 @@ -1,7 +1,7 @@ Summary: The Vorbis General Audio Compression Codec tools Name: vorbis-tools Version: 1.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 1 Group: Applications/Multimedia License: GPLv2 @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:1.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:58:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:58:39 +0000 (UTC) Subject: rpms/vorbisgain/devel vorbisgain.spec,1.7,1.8 Message-ID: <20090727065839.40D7911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vorbisgain/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv980 Modified Files: vorbisgain.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vorbisgain.spec =================================================================== RCS file: /cvs/pkgs/rpms/vorbisgain/devel/vorbisgain.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vorbisgain.spec 26 Feb 2009 00:49:34 -0000 1.7 +++ vorbisgain.spec 27 Jul 2009 06:58:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: vorbisgain Version: 0.36 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Adds tags to Ogg Vorbis files to adjust the volume Group: Applications/Multimedia @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.36-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.36-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:58:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:58:55 +0000 (UTC) Subject: rpms/vpnc/devel vpnc.spec,1.34,1.35 Message-ID: <20090727065855.29F5511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vpnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1118 Modified Files: vpnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vpnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/vpnc/devel/vpnc.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- vpnc.spec 26 Feb 2009 00:50:43 -0000 1.34 +++ vpnc.spec 27 Jul 2009 06:58:54 -0000 1.35 @@ -1,6 +1,6 @@ Name: vpnc Version: 0.5.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: IPSec VPN client compatible with Cisco equipment @@ -104,6 +104,9 @@ rm -rf $RPM_BUILD_ROOT %{_sbindir}/vpnc-helper %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.5.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:59:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:59:10 +0000 (UTC) Subject: rpms/vsftpd/devel vsftpd.spec,1.92,1.93 Message-ID: <20090727065910.9522A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vsftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1288 Modified Files: vsftpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vsftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/vsftpd/devel/vsftpd.spec,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- vsftpd.spec 2 Jun 2009 09:06:56 -0000 1.92 +++ vsftpd.spec 27 Jul 2009 06:59:10 -0000 1.93 @@ -2,7 +2,7 @@ Name: vsftpd Version: 2.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Very Secure Ftp Daemon Group: System Environment/Daemons @@ -135,6 +135,9 @@ fi %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 02 2009 Jiri Skala - 2.1.2-1 - updated to latest upstream version From jkeating at fedoraproject.org Mon Jul 27 06:59:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:59:22 +0000 (UTC) Subject: rpms/vte/devel vte.spec,1.152,1.153 Message-ID: <20090727065922.EF2FB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vte/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1420 Modified Files: vte.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vte.spec =================================================================== RCS file: /cvs/pkgs/rpms/vte/devel/vte.spec,v retrieving revision 1.152 retrieving revision 1.153 diff -u -p -r1.152 -r1.153 --- vte.spec 18 Jun 2009 00:19:50 -0000 1.152 +++ vte.spec 27 Jul 2009 06:59:22 -0000 1.153 @@ -4,7 +4,7 @@ Name: vte Version: 0.20.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A terminal emulator License: LGPLv2+ Group: User Interface/X @@ -108,6 +108,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/python* %doc %{_datadir}/gtk-doc/html/%{name} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.20.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Matthias Clasen 0.20.5-2 - Rebuild against new gcc to get rid of crashes From jkeating at fedoraproject.org Mon Jul 27 06:59:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:59:35 +0000 (UTC) Subject: rpms/vtk/devel vtk.spec,1.22,1.23 Message-ID: <20090727065935.B5EB411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1593 Modified Files: vtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/vtk/devel/vtk.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- vtk.spec 23 Jul 2009 05:28:21 -0000 1.22 +++ vtk.spec 27 Jul 2009 06:59:35 -0000 1.23 @@ -7,7 +7,7 @@ Summary: The Visualization Toolkit - A high level 3D visualization library Name: vtk Version: 5.4.2 -Release: 33%{?dist} +Release: 34%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -402,6 +402,9 @@ rm -rf %{buildroot} %doc vtk-examples-5.4/Examples %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.2-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 6 2009 Axel Thimm - 5.4.2-30 - Update to 5.4.2. From jkeating at fedoraproject.org Mon Jul 27 06:59:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:59:46 +0000 (UTC) Subject: rpms/vtkdata/devel vtkdata.spec,1.10,1.11 Message-ID: <20090727065946.5D5B011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vtkdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1711 Modified Files: vtkdata.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vtkdata.spec =================================================================== RCS file: /cvs/pkgs/rpms/vtkdata/devel/vtkdata.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- vtkdata.spec 7 Jun 2009 11:13:29 -0000 1.10 +++ vtkdata.spec 27 Jul 2009 06:59:46 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata Version: 5.4.2 -Release: 11 +Release: 12 # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 6 2009 Axel Thimm - 5.4.2-11 - Update to 5.4.2. From jkeating at fedoraproject.org Mon Jul 27 06:59:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:59:59 +0000 (UTC) Subject: rpms/vttest/devel vttest.spec,1.2,1.3 Message-ID: <20090727065959.171CA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vttest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1850 Modified Files: vttest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vttest.spec =================================================================== RCS file: /cvs/pkgs/rpms/vttest/devel/vttest.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- vttest.spec 26 Feb 2009 00:57:54 -0000 1.2 +++ vttest.spec 27 Jul 2009 06:59:58 -0000 1.3 @@ -1,6 +1,6 @@ Name: vttest Version: 20071216 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Test the compatibility of so-called "VT100-compatible" terminals Group: Applications/System @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man?/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 20071216-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20071216-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:00:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:00:12 +0000 (UTC) Subject: rpms/vtun/devel vtun.spec,1.3,1.4 Message-ID: <20090727070012.4C82411C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vtun/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2025 Modified Files: vtun.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vtun.spec =================================================================== RCS file: /cvs/pkgs/rpms/vtun/devel/vtun.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- vtun.spec 26 Feb 2009 00:58:43 -0000 1.3 +++ vtun.spec 27 Jul 2009 07:00:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: vtun Version: 3.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Virtual tunnel over TCP/IP networks License: GPLv2+ Group: System Environment/Daemons @@ -71,6 +71,9 @@ fi %{_mandir}/man8/vtund.8* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 3.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:00:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:00:27 +0000 (UTC) Subject: rpms/vym/devel vym.spec,1.12,1.13 Message-ID: <20090727070027.5A29511C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/vym/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2138 Modified Files: vym.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: vym.spec =================================================================== RCS file: /cvs/pkgs/rpms/vym/devel/vym.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- vym.spec 26 Feb 2009 00:59:34 -0000 1.12 +++ vym.spec 27 Jul 2009 07:00:26 -0000 1.13 @@ -1,6 +1,6 @@ Name: vym Version: 1.12.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: View your mind Group: Applications/Productivity @@ -87,6 +87,9 @@ update-desktop-database &> /dev/null || %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.12.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.12.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:00:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:00:40 +0000 (UTC) Subject: rpms/w3c-libwww/devel w3c-libwww.spec,1.14,1.15 Message-ID: <20090727070040.5FEBA11C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3c-libwww/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2283 Modified Files: w3c-libwww.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w3c-libwww.spec =================================================================== RCS file: /cvs/pkgs/rpms/w3c-libwww/devel/w3c-libwww.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- w3c-libwww.spec 25 Feb 2009 17:59:57 -0000 1.14 +++ w3c-libwww.spec 27 Jul 2009 07:00:40 -0000 1.15 @@ -1,6 +1,6 @@ Name: w3c-libwww Version: 5.4.1 -Release: 0.15.20060206cvs%{?dist} +Release: 0.16.20060206cvs%{?dist} Summary: HTTP library of common code Group: System Environment/Libraries @@ -132,6 +132,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/w3c-libwww %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.1-0.16.20060206cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 5.4.1-0.15.20060206cvs - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:39:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:39:28 +0000 (UTC) Subject: rpms/usbutils/devel usbutils.spec,1.28,1.29 Message-ID: <20090727063928.4B84711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/usbutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20638 Modified Files: usbutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: usbutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/usbutils/devel/usbutils.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- usbutils.spec 1 Jul 2009 13:05:01 -0000 1.28 +++ usbutils.spec 27 Jul 2009 06:39:27 -0000 1.29 @@ -1,6 +1,6 @@ Name: usbutils Version: 0.82 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://downloads.sourceforge.net/linux-usb/%{name}-%{version}.tar.gz URL: http://www.linux-usb.org/ License: GPLv2+ @@ -45,6 +45,9 @@ sed -i 's|usbids=/usr/share/usb.ids|usbi rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.82-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Jiri Moskovcak 0.82-3 - added autoconf to fix build in koji From jkeating at fedoraproject.org Mon Jul 27 06:39:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:39:43 +0000 (UTC) Subject: rpms/usermode/devel usermode.spec,1.90,1.91 Message-ID: <20090727063943.A370011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/usermode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20852 Modified Files: usermode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: usermode.spec =================================================================== RCS file: /cvs/pkgs/rpms/usermode/devel/usermode.spec,v retrieving revision 1.90 retrieving revision 1.91 diff -u -p -r1.90 -r1.91 --- usermode.spec 29 Jun 2009 16:11:14 -0000 1.90 +++ usermode.spec 27 Jul 2009 06:39:43 -0000 1.91 @@ -1,7 +1,7 @@ Summary: Tools for certain user account management tasks Name: usermode Version: 1.100 -Release: 3 +Release: 4 License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/usermode/ @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.100-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Miloslav Trma? - 1.100-3 - Require libblkid-devel instead of e2fsprogs-devel From jkeating at fedoraproject.org Mon Jul 27 07:00:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:00:53 +0000 (UTC) Subject: rpms/w3c-markup-validator/devel w3c-markup-validator.spec, 1.24, 1.25 Message-ID: <20090727070053.CA64411C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3c-markup-validator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2399 Modified Files: w3c-markup-validator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w3c-markup-validator.spec =================================================================== RCS file: /cvs/pkgs/rpms/w3c-markup-validator/devel/w3c-markup-validator.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- w3c-markup-validator.spec 29 Mar 2009 20:03:54 -0000 1.24 +++ w3c-markup-validator.spec 27 Jul 2009 07:00:53 -0000 1.25 @@ -1,6 +1,6 @@ Name: w3c-markup-validator Version: 0.8.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: W3C Markup Validator Group: Applications/Internet @@ -146,6 +146,9 @@ done %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 29 2009 Ville Skytt? - 0.8.5-1 - 0.8.5, override patch applied upstream. - Drop content not acceptable in Fedora (some icons, ISO-HTML DTD). From jkeating at fedoraproject.org Mon Jul 27 07:01:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:01:12 +0000 (UTC) Subject: rpms/w3lib/devel w3lib.spec,1.3,1.4 Message-ID: <20090727070112.58DB011C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2547 Modified Files: w3lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w3lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/w3lib/devel/w3lib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- w3lib.spec 25 Feb 2009 18:01:40 -0000 1.3 +++ w3lib.spec 27 Jul 2009 07:01:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: w3lib Version: 1.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: GRIB1 (GRIdded Binary) encoder/decoder and search/indexing routines Group: System Environment/Libraries @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:01:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:01:24 +0000 (UTC) Subject: rpms/w3m/devel w3m.spec,1.55,1.56 Message-ID: <20090727070124.04EF511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3m/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2708 Modified Files: w3m.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w3m.spec =================================================================== RCS file: /cvs/pkgs/rpms/w3m/devel/w3m.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- w3m.spec 25 Feb 2009 18:02:28 -0000 1.55 +++ w3m.spec 27 Jul 2009 07:01:23 -0000 1.56 @@ -5,7 +5,7 @@ Name: w3m Version: 0.5.2 -Release: 13%{?dist} +Release: 14%{?dist} License: MIT URL: http://w3m.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -140,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/w3m/w3mimgdisplay %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:01:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:01:36 +0000 (UTC) Subject: rpms/w3m-el/devel w3m-el.spec,1.10,1.11 Message-ID: <20090727070136.AD05B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w3m-el/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2848 Modified Files: w3m-el.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w3m-el.spec =================================================================== RCS file: /cvs/pkgs/rpms/w3m-el/devel/w3m-el.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- w3m-el.spec 25 Feb 2009 18:03:16 -0000 1.10 +++ w3m-el.spec 27 Jul 2009 07:01:36 -0000 1.11 @@ -2,7 +2,7 @@ Name: w3m-el Version: 1.4.4 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD URL: http://emacs-w3m.namazu.org/ BuildArch: noarch @@ -134,6 +134,9 @@ fi %{_infodir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:40:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:40:00 +0000 (UTC) Subject: rpms/ushare/devel ushare.spec,1.22,1.23 Message-ID: <20090727064000.E38A111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ushare/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21043 Modified Files: ushare.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ushare.spec =================================================================== RCS file: /cvs/pkgs/rpms/ushare/devel/ushare.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- ushare.spec 25 Feb 2009 23:32:32 -0000 1.22 +++ ushare.spec 27 Jul 2009 06:40:00 -0000 1.23 @@ -1,7 +1,7 @@ Summary: UPnP (TM) A/V Media Server Name: ushare Version: 1.1a -Release: 5%{?dist} +Release: 6%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://ushare.geexbox.org/ @@ -78,6 +78,9 @@ fi %attr(770,ushare,ushare) %dir %{_var}/lib/ushare/ %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.1a-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1a-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 06:41:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 06:41:16 +0000 (UTC) Subject: rpms/uucp/devel uucp.spec,1.38,1.39 Message-ID: <20090727064116.B855711C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/uucp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22243 Modified Files: uucp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: uucp.spec =================================================================== RCS file: /cvs/pkgs/rpms/uucp/devel/uucp.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- uucp.spec 25 Feb 2009 23:37:32 -0000 1.38 +++ uucp.spec 27 Jul 2009 06:41:15 -0000 1.39 @@ -7,7 +7,7 @@ Summary: A set of utilities for operations between systems Name: uucp Version: 1.07 -Release: 19%{?dist} +Release: 20%{?dist} License: GPLv2+ Group: Applications/Communications Url: http://www.airs.com/ian/uucp.html @@ -157,6 +157,9 @@ fi %config(noreplace) %{_newconfigdir}/sys %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.07-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.07-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:01:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:01:47 +0000 (UTC) Subject: rpms/w_scan/devel w_scan.spec,1.4,1.5 Message-ID: <20090727070147.717A911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/w_scan/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2996 Modified Files: w_scan.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: w_scan.spec =================================================================== RCS file: /cvs/pkgs/rpms/w_scan/devel/w_scan.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- w_scan.spec 29 Jun 2009 16:24:39 -0000 1.4 +++ w_scan.spec 27 Jul 2009 07:01:47 -0000 1.5 @@ -1,6 +1,6 @@ Name: w_scan Version: 20090528 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool for scanning DVB transponders Group: Applications/Multimedia @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20090528-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Felix Kaechele - 20090528-2 - added dos2unix BuildReq From jkeating at fedoraproject.org Mon Jul 27 07:02:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:02:00 +0000 (UTC) Subject: rpms/wacomexpresskeys/devel wacomexpresskeys.spec,1.3,1.4 Message-ID: <20090727070200.F086011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wacomexpresskeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3150 Modified Files: wacomexpresskeys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wacomexpresskeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/wacomexpresskeys/devel/wacomexpresskeys.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wacomexpresskeys.spec 15 Jul 2009 13:40:34 -0000 1.3 +++ wacomexpresskeys.spec 27 Jul 2009 07:02:00 -0000 1.4 @@ -2,7 +2,7 @@ Name: wacomexpresskeys Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Wacom ExpressKeys and Touch Strips configuration utility Group: System Environment/Base @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/expresskeys %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Jarod Wilson 0.4.2-1 - Update to 0.4.2 - Submit for Fedora package review From jkeating at fedoraproject.org Mon Jul 27 07:02:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:02:13 +0000 (UTC) Subject: rpms/waf/devel waf.spec,1.17,1.18 Message-ID: <20090727070213.A90CC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/waf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3327 Modified Files: waf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: waf.spec =================================================================== RCS file: /cvs/pkgs/rpms/waf/devel/waf.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- waf.spec 11 Jun 2009 21:53:39 -0000 1.17 +++ waf.spec 27 Jul 2009 07:02:13 -0000 1.18 @@ -1,6 +1,6 @@ Name: waf Version: 1.5.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Python-based build system Group: Development/Tools # The entire source code is BSD apart from pproc.py (taken from Python 2.5) @@ -83,6 +83,9 @@ find demos utils -type f -exec %{__chmod %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Thomas Moschny - 1.5.8-1 - Update to 1.5.8. From jkeating at fedoraproject.org Mon Jul 27 07:02:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:02:25 +0000 (UTC) Subject: rpms/wammu/devel wammu.spec,1.13,1.14 Message-ID: <20090727070225.DCEFE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wammu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3494 Modified Files: wammu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wammu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wammu/devel/wammu.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- wammu.spec 29 Apr 2009 21:37:29 -0000 1.13 +++ wammu.spec 27 Jul 2009 07:02:25 -0000 1.14 @@ -2,7 +2,7 @@ Name: wammu Version: 0.30.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mobile Phone Manager - Gammu GUI Group: Applications/Communications @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.30.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Xavier Lamien - 0.30.1-1 - Update release. From jkeating at fedoraproject.org Mon Jul 27 07:02:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:02:38 +0000 (UTC) Subject: rpms/wannier90/devel wannier90.spec,1.3,1.4 Message-ID: <20090727070238.95E4B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wannier90/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3648 Modified Files: wannier90.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wannier90.spec =================================================================== RCS file: /cvs/pkgs/rpms/wannier90/devel/wannier90.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wannier90.spec 16 May 2009 08:10:58 -0000 1.3 +++ wannier90.spec 27 Jul 2009 07:02:37 -0000 1.4 @@ -1,6 +1,6 @@ Name: wannier90 Version: 1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Maximally-localised Wannier functions Group: Applications/Engineering License: GPLv2+ @@ -96,6 +96,9 @@ make test %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Jussi Lehtola - 1.1-4 - Fix EPEL build by adding explicit BR: blas-devel. From jkeating at fedoraproject.org Mon Jul 27 07:02:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:02:50 +0000 (UTC) Subject: rpms/warzone2100/devel warzone2100.spec,1.25,1.26 Message-ID: <20090727070250.BCC3611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/warzone2100/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3796 Modified Files: warzone2100.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: warzone2100.spec =================================================================== RCS file: /cvs/pkgs/rpms/warzone2100/devel/warzone2100.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- warzone2100.spec 19 Mar 2009 20:30:21 -0000 1.25 +++ warzone2100.spec 27 Jul 2009 07:02:50 -0000 1.26 @@ -1,6 +1,6 @@ Name: warzone2100 Version: 2.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Innovative 3D real-time strategy Group: Amusements/Games @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING COPYING.NONGPL COPYING.README %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 19 2009 Karol Trzcionka - 2.1.2-1 - Update to v2.1.2 From akurtakov at fedoraproject.org Mon Jul 27 07:02:54 2009 From: akurtakov at fedoraproject.org (Alexander Kurtakov) Date: Mon, 27 Jul 2009 07:02:54 +0000 (UTC) Subject: rpms/eclipse-subclipse/devel .cvsignore, 1.8, 1.9 subclipse-fetch.sh, 1.1, 1.2 sources, 1.8, 1.9 eclipse-subclipse.spec, 1.32, 1.33 Message-ID: <20090727070254.605CE11C00E8@cvs1.fedora.phx.redhat.com> Author: akurtakov Update of /cvs/pkgs/rpms/eclipse-subclipse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3820/devel Modified Files: .cvsignore subclipse-fetch.sh sources eclipse-subclipse.spec Log Message: Update to upstream 1.6.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-subclipse/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 6 Apr 2009 15:09:47 -0000 1.8 +++ .cvsignore 27 Jul 2009 07:02:53 -0000 1.9 @@ -1 +1,2 @@ subclipse-1.6.0.tgz +subclipse-1.6.2.tgz Index: subclipse-fetch.sh =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-subclipse/devel/subclipse-fetch.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- subclipse-fetch.sh 6 Apr 2009 15:09:47 -0000 1.1 +++ subclipse-fetch.sh 27 Jul 2009 07:02:54 -0000 1.2 @@ -1,5 +1,5 @@ #!/bin/sh -VERSION=1.6.0 +VERSION=1.6.2 svn export --username guest --password "" http://subclipse.tigris.org/svn/subclipse/tags/subclipse/$VERSION/subclipse subclipse-$VERSION rm -rf ./subclipse-$VERSION/org.tigris.subversion.clientadapter.javahl.win32 tar -czf subclipse-$VERSION.tgz subclipse-$VERSION Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-subclipse/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 6 Apr 2009 15:09:47 -0000 1.8 +++ sources 27 Jul 2009 07:02:54 -0000 1.9 @@ -1 +1 @@ -847948fa1ec5888219d259fd94d85198 subclipse-1.6.0.tgz +38c7ed1bc28266b06a55674617227234 subclipse-1.6.2.tgz Index: eclipse-subclipse.spec =================================================================== RCS file: /cvs/pkgs/rpms/eclipse-subclipse/devel/eclipse-subclipse.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- eclipse-subclipse.spec 24 Jul 2009 20:59:01 -0000 1.32 +++ eclipse-subclipse.spec 27 Jul 2009 07:02:54 -0000 1.33 @@ -1,12 +1,12 @@ %define eclipse_name eclipse %define eclipse_base %{_libdir}/%{eclipse_name} %define install_loc %{_datadir}/eclipse/dropins -%define javahl_plugin_name org.tigris.subversion.clientadapter.javahl_%{version} +%define javahl_plugin_name org.tigris.subversion.clientadapter.javahl_1.6.0.1 Name: eclipse-subclipse -Version: 1.6.0 -Release: 2%{?dist} +Version: 1.6.2 +Release: 1%{?dist} Summary: Subversion Eclipse plugin Group: Development/Tools @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Alexander Kurtakov 1.6.2-1 +- Update to upstream 1.6.2. + * Fri Jul 24 2009 Fedora Release Engineering - 1.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:03:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:03:09 +0000 (UTC) Subject: rpms/wastesedge/devel wastesedge.spec,1.6,1.7 Message-ID: <20090727070309.0EE3D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wastesedge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3994 Modified Files: wastesedge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wastesedge.spec =================================================================== RCS file: /cvs/pkgs/rpms/wastesedge/devel/wastesedge.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- wastesedge.spec 1 Mar 2009 13:39:05 -0000 1.6 +++ wastesedge.spec 27 Jul 2009 07:03:08 -0000 1.7 @@ -1,6 +1,6 @@ Name: wastesedge Version: 0.3.4 -Release: 0.13%{?dist} +Release: 0.14%{?dist} Summary: Official game package for Adonthell Group: Amusements/Games @@ -94,6 +94,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.4-0.14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Mathieu Bridon - 0.3.4-0.13 - deleted the unproperly licensed font in SRPM too - RHBZ#477481 From jkeating at fedoraproject.org Mon Jul 27 07:03:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:03:21 +0000 (UTC) Subject: rpms/watchdog/devel watchdog.spec,1.4,1.5 Message-ID: <20090727070321.C543D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/watchdog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4171 Modified Files: watchdog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: watchdog.spec =================================================================== RCS file: /cvs/pkgs/rpms/watchdog/devel/watchdog.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- watchdog.spec 13 Mar 2009 10:46:14 -0000 1.4 +++ watchdog.spec 27 Jul 2009 07:03:21 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Software and/or Hardware watchdog daemon Name: watchdog Version: 5.5 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: System Environment/Daemons @@ -99,6 +99,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 5.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Richard W.M. Jones - 5.5-5 - Updated the cleanup patch and sent upstream. From jkeating at fedoraproject.org Mon Jul 27 07:03:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:03:41 +0000 (UTC) Subject: rpms/wavbreaker/devel wavbreaker.spec,1.13,1.14 Message-ID: <20090727070341.D84B611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wavbreaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4351 Modified Files: wavbreaker.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wavbreaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/wavbreaker/devel/wavbreaker.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- wavbreaker.spec 25 Feb 2009 18:08:22 -0000 1.13 +++ wavbreaker.spec 27 Jul 2009 07:03:41 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Tool for splitting .wav files Name: wavbreaker Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://wavbreaker.sourceforge.net @@ -57,6 +57,9 @@ update-desktop-database %{_datadir}/appl %doc ChangeLog CONTRIBUTORS NEWS AUTHORS COPYING README TODO %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:03:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:03:55 +0000 (UTC) Subject: rpms/wavemon/devel wavemon.spec,1.3,1.4 Message-ID: <20090727070355.6F80A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wavemon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4488 Modified Files: wavemon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wavemon.spec =================================================================== RCS file: /cvs/pkgs/rpms/wavemon/devel/wavemon.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wavemon.spec 27 Jun 2009 15:31:14 -0000 1.3 +++ wavemon.spec 27 Jul 2009 07:03:54 -0000 1.4 @@ -1,6 +1,6 @@ Name: wavemon Version: 0.6.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Ncurses-based monitoring application for wireless network devices Group: Applications/Internet @@ -52,6 +52,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Fabian Affolter - 0.6.6-1 - Updated to new upstream 0.6.6 From jkeating at fedoraproject.org Mon Jul 27 07:04:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:04:14 +0000 (UTC) Subject: rpms/wavextract/devel wavextract.spec,1.2,1.3 Message-ID: <20090727070414.5B07E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wavextract/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4658 Modified Files: wavextract.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wavextract.spec =================================================================== RCS file: /cvs/pkgs/rpms/wavextract/devel/wavextract.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wavextract.spec 25 Feb 2009 18:09:25 -0000 1.2 +++ wavextract.spec 27 Jul 2009 07:04:13 -0000 1.3 @@ -1,6 +1,6 @@ Name: wavextract Version: 1.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Program for extracting embedded audio data from JPEG images Summary(pl): Program do wyci?gania zagnie?d?onych danych audio z plik?w JPEG Group: Applications/Multimedia @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:04:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:04:32 +0000 (UTC) Subject: rpms/wavpack/devel wavpack.spec,1.13,1.14 Message-ID: <20090727070432.83D6F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wavpack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4820 Modified Files: wavpack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wavpack.spec =================================================================== RCS file: /cvs/pkgs/rpms/wavpack/devel/wavpack.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- wavpack.spec 25 Feb 2009 18:10:26 -0000 1.13 +++ wavpack.spec 27 Jul 2009 07:04:32 -0000 1.14 @@ -1,7 +1,7 @@ Name: wavpack Summary: A completely open audiocodec Version: 4.50.1 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Applications/Multimedia Url: http://www.wavpack.com/ @@ -59,6 +59,9 @@ Files needed for developing apps using w %doc ChangeLog README doc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.50.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 4.50.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:06:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:06:10 +0000 (UTC) Subject: rpms/wbxml2/devel wbxml2.spec,1.20,1.21 Message-ID: <20090727070610.247EB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wbxml2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5384 Modified Files: wbxml2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wbxml2.spec =================================================================== RCS file: /cvs/pkgs/rpms/wbxml2/devel/wbxml2.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- wbxml2.spec 25 Feb 2009 18:13:51 -0000 1.20 +++ wbxml2.spec 27 Jul 2009 07:06:09 -0000 1.21 @@ -1,6 +1,6 @@ Name: wbxml2 Version: 0.9.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Library and tools to parse, encode and handle WBXML documents Group: System Environment/Libraries @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libwbxml2.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.2-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.9.2-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:06:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:06:32 +0000 (UTC) Subject: rpms/wcslib/devel wcslib.spec,1.1,1.2 Message-ID: <20090727070632.2A13B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wcslib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5533 Modified Files: wcslib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wcslib.spec =================================================================== RCS file: /cvs/pkgs/rpms/wcslib/devel/wcslib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wcslib.spec 18 Mar 2009 10:49:51 -0000 1.1 +++ wcslib.spec 27 Jul 2009 07:06:31 -0000 1.2 @@ -1,6 +1,6 @@ Name: wcslib Version: 4.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Sergio Pascual 4.3.1-2 - Added patch to link explicitly with libmath. - Removed duplicate licenses. From jkeating at fedoraproject.org Mon Jul 27 07:06:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:06:49 +0000 (UTC) Subject: rpms/wcstools/devel wcstools.spec,1.16,1.17 Message-ID: <20090727070649.E5BB511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wcstools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5723 Modified Files: wcstools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wcstools.spec =================================================================== RCS file: /cvs/pkgs/rpms/wcstools/devel/wcstools.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- wcstools.spec 25 Feb 2009 18:14:57 -0000 1.16 +++ wcstools.spec 27 Jul 2009 07:06:49 -0000 1.17 @@ -1,6 +1,6 @@ Name: wcstools Version: 3.7.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Software utilities to display and manipulate the WCS of a FITS image Group: Applications/Engineering @@ -86,6 +86,9 @@ This are the files needed to develop an %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.7.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.7.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:07:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:07:06 +0000 (UTC) Subject: rpms/wdfs/devel wdfs.spec,1.7,1.8 Message-ID: <20090727070706.E588D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wdfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5873 Modified Files: wdfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wdfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/wdfs/devel/wdfs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wdfs.spec 25 Feb 2009 18:17:52 -0000 1.7 +++ wdfs.spec 27 Jul 2009 07:07:05 -0000 1.8 @@ -1,6 +1,6 @@ Name: wdfs Version: 1.4.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: WebDAV File System Group: System Environment/Base @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/wdfs %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:07:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:07:30 +0000 (UTC) Subject: rpms/wdm/devel wdm.spec,1.6,1.7 Message-ID: <20090727070730.27B3811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6036 Modified Files: wdm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/wdm/devel/wdm.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- wdm.spec 25 Feb 2009 18:19:00 -0000 1.6 +++ wdm.spec 27 Jul 2009 07:07:29 -0000 1.7 @@ -1,6 +1,6 @@ Name: wdm Version: 1.28 -Release: 11%{?dist} +Release: 12%{?dist} Summary: WINGs Display Manager Group: User Interface/X @@ -171,6 +171,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.28-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.28-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:07:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:07:54 +0000 (UTC) Subject: rpms/webalizer/devel webalizer.spec,1.38,1.39 Message-ID: <20090727070754.D7D2711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/webalizer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6231 Modified Files: webalizer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: webalizer.spec =================================================================== RCS file: /cvs/pkgs/rpms/webalizer/devel/webalizer.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- webalizer.spec 14 Apr 2009 14:08:03 -0000 1.38 +++ webalizer.spec 27 Jul 2009 07:07:54 -0000 1.39 @@ -7,7 +7,7 @@ Name: webalizer Summary: A flexible Web server log file analysis program Group: Applications/Internet Version: 2.21_02 -Release: 2 +Release: 3 URL: http://www.mrunix.net/webalizer/ License: GPLv2+ Source0: ftp://ftp.mrunix.net/pub/webalizer/%{name}-%{ver}-%{patchlevel}-src.tar.bz2 @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %attr(-, webalizer, root) %{_localstatedir}/www/usage/*.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.21_02-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Joe Orton 2.21_02-2 - update to 2.21-02 (thanks to Robert Scheck) From jkeating at fedoraproject.org Mon Jul 27 07:08:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:08:16 +0000 (UTC) Subject: rpms/webcpp/devel webcpp.spec,1.3,1.4 Message-ID: <20090727070816.1C55B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/webcpp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6393 Modified Files: webcpp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: webcpp.spec =================================================================== RCS file: /cvs/pkgs/rpms/webcpp/devel/webcpp.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- webcpp.spec 25 Feb 2009 18:20:58 -0000 1.3 +++ webcpp.spec 27 Jul 2009 07:08:15 -0000 1.4 @@ -1,6 +1,6 @@ Name: webcpp Version: 0.8.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convert C++ code to HTML License: GPLv2 Group: Development/Tools @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:08:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:08:46 +0000 (UTC) Subject: rpms/webkitgtk/devel webkitgtk.spec,1.12,1.13 Message-ID: <20090727070846.C6FBD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/webkitgtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6705 Modified Files: webkitgtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: webkitgtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkitgtk/devel/webkitgtk.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- webkitgtk.spec 14 Jul 2009 18:23:45 -0000 1.12 +++ webkitgtk.spec 27 Jul 2009 07:08:46 -0000 1.13 @@ -35,7 +35,7 @@ Name: webkitgtk Version: 1.1.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: GTK+ Web content engine library Provides: WebKit-gtk = %{version}-%{release} @@ -185,6 +185,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Matthias Clasen - 1.1.11-1 - Update to 1.1.11 From jkeating at fedoraproject.org Mon Jul 27 07:08:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:08:31 +0000 (UTC) Subject: rpms/webkit-sharp/devel webkit-sharp.spec,1.4,1.5 Message-ID: <20090727070831.3DC5011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/webkit-sharp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6541 Modified Files: webkit-sharp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: webkit-sharp.spec =================================================================== RCS file: /cvs/pkgs/rpms/webkit-sharp/devel/webkit-sharp.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- webkit-sharp.spec 22 Jun 2009 00:55:30 -0000 1.4 +++ webkit-sharp.spec 27 Jul 2009 07:08:30 -0000 1.5 @@ -2,7 +2,7 @@ Name: webkit-sharp Version: 0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: .NET bindings for WebKit Group: Development/Languages License: MIT @@ -63,6 +63,9 @@ make DESTDIR=%{buildroot} install %{_libdir}/monodoc/sources/webkit-sharp* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Paul Lange - 0.2-4 - Fix supported archs From jkeating at fedoraproject.org Mon Jul 27 07:09:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:09:04 +0000 (UTC) Subject: rpms/websec/devel websec.spec,1.4,1.5 Message-ID: <20090727070904.E5EBB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/websec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6833 Modified Files: websec.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: websec.spec =================================================================== RCS file: /cvs/pkgs/rpms/websec/devel/websec.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- websec.spec 25 Feb 2009 18:21:53 -0000 1.4 +++ websec.spec 27 Jul 2009 07:09:03 -0000 1.5 @@ -1,6 +1,6 @@ Name: websec Version: 1.9.0 -Release: 6.1 +Release: 7.1 Summary: Web Secretary - Web page monitoring software with highlighting Group: Applications/Internet @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.0-7.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.0-6.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:09:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:09:23 +0000 (UTC) Subject: rpms/websvn/devel websvn.spec,1.1,1.2 Message-ID: <20090727070923.CD06E11C0439@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/websvn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7010 Modified Files: websvn.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: websvn.spec =================================================================== RCS file: /cvs/pkgs/rpms/websvn/devel/websvn.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- websvn.spec 3 Jun 2009 18:48:57 -0000 1.1 +++ websvn.spec 27 Jul 2009 07:09:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: websvn Version: 2.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Online subversion repository browser Group: Applications/System @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 22 2009 Xavier Bachelot 2.2.1-1 - Update to 2.2.1. - Preserve time stamp when fixing encoding. From jkeating at fedoraproject.org Mon Jul 27 07:09:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:09:43 +0000 (UTC) Subject: rpms/weechat/devel weechat.spec,1.12,1.13 Message-ID: <20090727070943.1138E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/weechat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7203 Modified Files: weechat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: weechat.spec =================================================================== RCS file: /cvs/pkgs/rpms/weechat/devel/weechat.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- weechat.spec 25 Jun 2009 17:28:23 -0000 1.12 +++ weechat.spec 27 Jul 2009 07:09:41 -0000 1.13 @@ -1,7 +1,7 @@ Name: weechat Summary: Portable, fast, light and extensible IRC client Version: 0.2.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Source: http://weechat.flashtux.org/download/%{name}-%{version}.tar.bz2 Patch0: %{name}-%{version}-pie-rollup.patch.bz2 URL: http://weechat.flashtux.org @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}/plugins/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Paul P. Komkoff Jr - 0.2.6.3-1 - gnutls detection bugfix From jkeating at fedoraproject.org Mon Jul 27 07:10:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:10:00 +0000 (UTC) Subject: rpms/weka/devel weka.spec,1.1,1.2 Message-ID: <20090727071000.5D41911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/weka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7341 Modified Files: weka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: weka.spec =================================================================== RCS file: /cvs/pkgs/rpms/weka/devel/weka.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- weka.spec 1 Mar 2009 12:18:30 -0000 1.1 +++ weka.spec 27 Jul 2009 07:09:58 -0000 1.2 @@ -7,7 +7,7 @@ Name: weka Version: 3.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Waikato Environment for Knowledge Analysis Group: Applications/Engineering @@ -127,6 +127,9 @@ fi %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Milos Jakubicek - 3.6.0-3 - Fixed desktop file name - Added optional running junit tests into %%check, added BR:junit From jkeating at fedoraproject.org Mon Jul 27 07:10:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:10:18 +0000 (UTC) Subject: rpms/weplab/devel weplab.spec,1.3,1.4 Message-ID: <20090727071018.8F08F11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/weplab/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7521 Modified Files: weplab.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: weplab.spec =================================================================== RCS file: /cvs/pkgs/rpms/weplab/devel/weplab.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- weplab.spec 25 Feb 2009 18:23:47 -0000 1.3 +++ weplab.spec 27 Jul 2009 07:10:17 -0000 1.4 @@ -1,6 +1,6 @@ Name: weplab Version: 0.1.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Analyzing WEP encryption security on wireless networks Group: Applications/System @@ -47,6 +47,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:10:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:10:40 +0000 (UTC) Subject: rpms/werken-xpath/devel werken-xpath.spec,1.9,1.10 Message-ID: <20090727071040.5209011C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/werken-xpath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7681 Modified Files: werken-xpath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: werken-xpath.spec =================================================================== RCS file: /cvs/pkgs/rpms/werken-xpath/devel/werken-xpath.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- werken-xpath.spec 25 Feb 2009 18:24:43 -0000 1.9 +++ werken-xpath.spec 27 Jul 2009 07:10:39 -0000 1.10 @@ -38,7 +38,7 @@ Name: werken-xpath Version: 0.9.4 -Release: 2.beta.12.3 +Release: 3.beta.12.3 Epoch: 0 Summary: XPath implementation using JDOM # Worth noting that this ASL 1.1 has slightly different wording. @@ -201,6 +201,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:0.9.4-3.beta.12.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:0.9.4-2.beta.12.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:11:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:11:10 +0000 (UTC) Subject: rpms/wesnoth/devel wesnoth.spec,1.81,1.82 Message-ID: <20090727071110.C28C511C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wesnoth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7836 Modified Files: wesnoth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wesnoth.spec =================================================================== RCS file: /cvs/pkgs/rpms/wesnoth/devel/wesnoth.spec,v retrieving revision 1.81 retrieving revision 1.82 diff -u -p -r1.81 -r1.82 --- wesnoth.spec 10 Jul 2009 18:15:48 -0000 1.81 +++ wesnoth.spec 27 Jul 2009 07:11:09 -0000 1.82 @@ -1,6 +1,6 @@ Name: wesnoth Version: 1.6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Turn-based strategy game with a fantasy theme Group: Amusements/Games @@ -253,6 +253,9 @@ fi #%endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Jon Ciesla - 1.6.4-2 - Fribidi patch, BZ 504526. From jkeating at fedoraproject.org Mon Jul 27 07:11:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:11:35 +0000 (UTC) Subject: rpms/wf/devel wf.spec,1.3,1.4 Message-ID: <20090727071135.0BD6E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8098 Modified Files: wf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wf.spec =================================================================== RCS file: /cvs/pkgs/rpms/wf/devel/wf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wf.spec 25 Feb 2009 18:25:38 -0000 1.3 +++ wf.spec 27 Jul 2009 07:11:34 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Simple word frequency counter Name: wf Version: 0.41 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2 Group: Applications/Text URL: http://www.async.com.br/~marcelo/%{name}/ @@ -33,6 +33,9 @@ whole text. %{_mandir}/man1/%{name}.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.41-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.41-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mmaslano at fedoraproject.org Mon Jul 27 07:11:48 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 07:11:48 +0000 (UTC) Subject: rpms/perl/devel perl-5.10.0-much-better-swap-logic.patch, NONE, 1.1 perl.spec, 1.225, 1.226 Message-ID: <20090727071148.C812411C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8264 Modified Files: perl.spec Added Files: perl-5.10.0-much-better-swap-logic.patch Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 4:5.10.0-76 - 494773 much better swap logic to support reentrancy and fix assert failure (rt #60508) perl-5.10.0-much-better-swap-logic.patch: embed.fnc | 1 embed.h | 2 - ext/Devel/PPPort/parts/embed.fnc | 1 proto.h | 3 -- regcomp.c | 2 - regexec.c | 44 +++++++++++++++------------------------ regexp.h | 2 - t/op/pat.t | 19 +++++++++++++++- 8 files changed, 36 insertions(+), 38 deletions(-) --- NEW FILE perl-5.10.0-much-better-swap-logic.patch --- diff -up perl-5.10.0/embed.fnc.much perl-5.10.0/embed.fnc --- perl-5.10.0/embed.fnc.much 2009-07-27 08:31:33.839374246 +0200 +++ perl-5.10.0/embed.fnc 2009-07-27 08:32:05.322374620 +0200 @@ -1441,7 +1441,6 @@ ERsn |U8* |reghop4 |NN U8 *pos|I32 off|N #endif ERsn |U8* |reghopmaybe3 |NN U8 *pos|I32 off|NN const U8 *lim ERs |char* |find_byclass |NN regexp * prog|NN const regnode *c|NN char *s|NN const char *strend|NULLOK regmatch_info *reginfo -Es |void |swap_match_buff|NN regexp * prog Es |void |to_utf8_substr |NN regexp * prog Es |void |to_byte_substr |NN regexp * prog ERs |I32 |reg_check_named_buff_matched |NN const regexp *rex|NN const regnode *prog diff -up perl-5.10.0/embed.h.much perl-5.10.0/embed.h --- perl-5.10.0/embed.h.much 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/embed.h 2009-07-27 08:31:34.016378805 +0200 @@ -1426,7 +1426,6 @@ #if defined(PERL_CORE) || defined(PERL_EXT) #define reghopmaybe3 S_reghopmaybe3 #define find_byclass S_find_byclass -#define swap_match_buff S_swap_match_buff #define to_utf8_substr S_to_utf8_substr #define to_byte_substr S_to_byte_substr #define reg_check_named_buff_matched S_reg_check_named_buff_matched @@ -3714,7 +3713,6 @@ #if defined(PERL_CORE) || defined(PERL_EXT) #define reghopmaybe3 S_reghopmaybe3 #define find_byclass(a,b,c,d,e) S_find_byclass(aTHX_ a,b,c,d,e) -#define swap_match_buff(a) S_swap_match_buff(aTHX_ a) #define to_utf8_substr(a) S_to_utf8_substr(aTHX_ a) #define to_byte_substr(a) S_to_byte_substr(aTHX_ a) #define reg_check_named_buff_matched(a,b) S_reg_check_named_buff_matched(aTHX_ a,b) diff -up perl-5.10.0/ext/Devel/PPPort/parts/embed.fnc.much perl-5.10.0/ext/Devel/PPPort/parts/embed.fnc --- perl-5.10.0/ext/Devel/PPPort/parts/embed.fnc.much 2007-12-18 11:47:07.000000000 +0100 +++ perl-5.10.0/ext/Devel/PPPort/parts/embed.fnc 2009-07-27 08:32:58.859374528 +0200 @@ -1436,7 +1436,6 @@ ERsn |U8* |reghop4 |NN U8 *pos|I32 off|N #endif ERsn |U8* |reghopmaybe3 |NN U8 *pos|I32 off|NN const U8 *lim ERs |char* |find_byclass |NN regexp * prog|NN const regnode *c|NN char *s|NN const char *strend|NULLOK regmatch_info *reginfo -Es |void |swap_match_buff|NN regexp * prog Es |void |to_utf8_substr |NN regexp * prog Es |void |to_byte_substr |NN regexp * prog ERs |I32 |reg_check_named_buff_matched |NN const regexp *rex|NN const regnode *prog diff -up perl-5.10.0/pod/perlapi.pod.much perl-5.10.0/pod/perlapi.pod diff -up perl-5.10.0/pod/perlguts.pod.much perl-5.10.0/pod/perlguts.pod diff -up perl-5.10.0/proto.h.much perl-5.10.0/proto.h --- perl-5.10.0/proto.h.much 2009-07-27 08:31:33.000000000 +0200 +++ perl-5.10.0/proto.h 2009-07-27 08:35:52.103374484 +0200 @@ -3851,9 +3851,6 @@ STATIC char* S_find_byclass(pTHX_ regexp __attribute__nonnull__(pTHX_3) __attribute__nonnull__(pTHX_4); -STATIC void S_swap_match_buff(pTHX_ regexp * prog) - __attribute__nonnull__(pTHX_1); - STATIC void S_to_utf8_substr(pTHX_ regexp * prog) __attribute__nonnull__(pTHX_1); diff -up perl-5.10.0/regcomp.c.much perl-5.10.0/regcomp.c --- perl-5.10.0/regcomp.c.much 2009-07-27 08:31:33.000000000 +0200 +++ perl-5.10.0/regcomp.c 2009-07-27 08:37:09.598625044 +0200 @@ -9167,7 +9167,6 @@ Perl_pregfree(pTHX_ struct regexp *r) if (r->saved_copy) SvREFCNT_dec(r->saved_copy); #endif - Safefree(r->swap); Safefree(r->offs); Safefree(r); } @@ -9216,7 +9215,6 @@ Perl_reg_temp_copy (pTHX_ struct regexp ret->saved_copy = NULL; #endif ret->mother_re = r; - ret->swap = NULL; return ret; } diff -up perl-5.10.0/regexec.c.much perl-5.10.0/regexec.c --- perl-5.10.0/regexec.c.much 2007-12-18 11:47:08.000000000 +0100 +++ perl-5.10.0/regexec.c 2009-07-27 08:40:15.966404877 +0200 @@ -1718,26 +1718,6 @@ S_find_byclass(pTHX_ regexp * prog, cons return s; } -static void -S_swap_match_buff (pTHX_ regexp *prog) { - regexp_paren_pair *t; - - if (!prog->swap) { - /* We have to be careful. If the previous successful match - was from this regex we don't want a subsequent paritally - successful match to clobber the old results. - So when we detect this possibility we add a swap buffer - to the re, and switch the buffer each match. If we fail - we switch it back, otherwise we leave it swapped. - */ - Newxz(prog->swap, (prog->nparens + 1), regexp_paren_pair); - } - t = prog->swap; - prog->swap = prog->offs; - prog->offs = t; -} - - /* - regexec_flags - match a regexp against a string */ @@ -1765,7 +1745,7 @@ Perl_regexec_flags(pTHX_ REGEXP * const I32 multiline; RXi_GET_DECL(prog,progi); regmatch_info reginfo; /* create some info to pass to regtry etc */ - bool swap_on_fail = 0; + regexp_paren_pair *swap = NULL; GET_RE_DEBUG_FLAGS_DECL; @@ -1843,9 +1823,16 @@ Perl_regexec_flags(pTHX_ REGEXP * const reginfo.ganch = strbeg; } if (PL_curpm && (PM_GETRE(PL_curpm) == prog)) { - swap_on_fail = 1; - swap_match_buff(prog); /* do we need a save destructor here for - eval dies? */ + /* We have to be careful. If the previous successful match + was from this regex we don't want a subsequent partially + successful match to clobber the old results. + So when we detect this possibility we add a swap buffer + to the re, and switch the buffer each match. If we fail + we switch it back, otherwise we leave it swapped. + */ + swap = prog->offs; + /* do we need a save destructor here for eval dies? */ + Newxz(prog->offs, (prog->nparens + 1), regexp_paren_pair); } if (!(flags & REXEC_CHECKED) && (prog->check_substr != NULL || prog->check_utf8 != NULL)) { re_scream_pos_data d; @@ -2144,6 +2131,7 @@ Perl_regexec_flags(pTHX_ REGEXP * const goto phooey; got_it: + Safefree(swap); RX_MATCH_TAINTED_set(prog, PL_reg_flags & RF_tainted); if (PL_reg_eval_set) @@ -2189,10 +2177,12 @@ phooey: PL_colors[4], PL_colors[5])); if (PL_reg_eval_set) restore_pos(aTHX_ prog); - if (swap_on_fail) + if (swap) { /* we failed :-( roll it back */ - swap_match_buff(prog); - + Safefree(prog->offs); + prog->offs = swap; + } + return 0; } diff -up perl-5.10.0/regexp.h.much perl-5.10.0/regexp.h --- perl-5.10.0/regexp.h.much 2007-12-18 11:47:08.000000000 +0100 +++ perl-5.10.0/regexp.h 2009-07-27 08:41:06.882374786 +0200 @@ -88,7 +88,7 @@ typedef struct regexp { /* Data about the last/current match. These are modified during matching*/ U32 lastparen; /* last open paren matched */ U32 lastcloseparen; /* last close paren matched */ - regexp_paren_pair *swap; /* Swap copy of *offs */ + regexp_paren_pair *swap; /* Unused: 5.10.1 and later */ regexp_paren_pair *offs; /* Array of offsets for (@-) and (@+) */ char *subbeg; /* saved or original string diff -up perl-5.10.0/t/op/pat.t.much perl-5.10.0/t/op/pat.t --- perl-5.10.0/t/op/pat.t.much 2007-12-18 11:47:08.000000000 +0100 +++ perl-5.10.0/t/op/pat.t 2009-07-27 08:44:50.343375513 +0200 @@ -4558,10 +4558,27 @@ ok($@=~/\QSequence \k... not terminated ok("aaa" =~ /$s/, "#45337"); } +# This only works under -DEBUGGING because it relies on an assert(). +{ + local $BugId = '60508'; + local $Message = "Check capture offset re-entrancy of utf8 code."; + + sub fswash { $_[0] =~ s/([>X])//g; } + my $k1 = "." x 4 . ">>"; + fswash($k1); + + my $k2 = "\x{f1}\x{2022}"; + $k2 =~ s/([\360-\362])/>/g; + fswash($k2); + + iseq($k2, "\x{2022}", "utf8::SWASHNEW doesn't cause capture leaks"); +} + # Put new tests above the dotted line about a page above this comment iseq(0+$::test,$::TestCount,"Got the right number of tests!"); # Don't forget to update this! BEGIN { - $::TestCount = 4013; + $::TestCount = 4014; print "1..$::TestCount\n"; } + Index: perl.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl/devel/perl.spec,v retrieving revision 1.225 retrieving revision 1.226 diff -u -p -r1.225 -r1.226 --- perl.spec 25 Jul 2009 23:30:12 -0000 1.225 +++ perl.spec 27 Jul 2009 07:11:48 -0000 1.226 @@ -7,7 +7,7 @@ Name: perl Version: %{perl_version} -Release: 75%{?dist} +Release: 76%{?dist} Epoch: %{perl_epoch} Summary: Practical Extraction and Report Language Group: Development/Languages @@ -191,6 +191,11 @@ Patch59: perl-bz509676.patch # be skipped in Makefile.PL files. Patch60: perl-skip-prereq.patch +# much better swap logic to support reentrancy and fix assert failure +# http://perl5.git.perl.org/perl.git/commitdiff/e9105d30edfbaa7f444bc7984c9bafc8e991ad12 +# RT #60508 +Patch61: perl-5.10.0-much-better-swap-logic.patch + # Update some of the bundled modules # see http://fedoraproject.org/wiki/Perl/perl.spec for instructions Patch100: perl-update-constant.patch @@ -998,6 +1003,7 @@ upstream tarball from perl.org. %patch58 -p1 %patch59 -p1 %patch60 -p1 +%patch61 -p1 %patch100 -p1 %patch101 -p1 @@ -1270,6 +1276,7 @@ perl -x patchlevel.h \ 'fix RT 39060, errno incorrectly set in perlio' \ 'Fedora Patch59: h2ph: generated *.ph files no longer produce warnings when processed' \ 'Fedora Patch60: remove PREREQ_FATAL from Makefile.PLs processed by miniperl' \ + 'Fedora Patch61: much better swap logic to support reentrancy and fix assert failure' \ 'Fedora Patch100: Update module constant to %{constant_version}' \ 'Fedora Patch101: Update Archive::Extract to %{Archive_Extract_version}' \ 'Fedora Patch102: Update Archive::Tar to %{Archive_Tar_version}' \ @@ -1917,6 +1924,9 @@ TMPDIR="$PWD/tmp" make test # Old changelog entries are preserved in CVS. %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? - 4:5.10.0-76 +- 494773 much better swap logic to support reentrancy and fix assert failure (rt #60508) + * Sat Jul 25 2009 Fedora Release Engineering - 4:5.10.0-75 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:11:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:11:53 +0000 (UTC) Subject: rpms/wfmath/devel wfmath.spec,1.14,1.15 Message-ID: <20090727071153.0EA3411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wfmath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8351 Modified Files: wfmath.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wfmath.spec =================================================================== RCS file: /cvs/pkgs/rpms/wfmath/devel/wfmath.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- wfmath.spec 27 Feb 2009 19:33:10 -0000 1.14 +++ wfmath.spec 27 Jul 2009 07:11:52 -0000 1.15 @@ -1,6 +1,6 @@ Name: wfmath Version: 0.3.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: WorldForge client math libraries Group: Development/Libraries @@ -91,6 +91,9 @@ make %{?_smp_mflags} check %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Alexey Torkhov 0.3.9-1 - Update to 0.3.9 From jkeating at fedoraproject.org Mon Jul 27 07:12:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:12:14 +0000 (UTC) Subject: rpms/wfut/devel wfut.spec,1.8,1.9 Message-ID: <20090727071214.D731F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wfut/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8580 Modified Files: wfut.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wfut.spec =================================================================== RCS file: /cvs/pkgs/rpms/wfut/devel/wfut.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- wfut.spec 25 Feb 2009 18:27:31 -0000 1.8 +++ wfut.spec 27 Jul 2009 07:12:14 -0000 1.9 @@ -1,6 +1,6 @@ Name: wfut Version: 1.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Software updater tool for WorldForge applications Group: Development/Libraries @@ -73,6 +73,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:12:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:12:38 +0000 (UTC) Subject: rpms/wget/devel wget.spec,1.69,1.70 Message-ID: <20090727071238.9B9E011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wget/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8787 Modified Files: wget.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wget.spec =================================================================== RCS file: /cvs/pkgs/rpms/wget/devel/wget.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- wget.spec 25 Feb 2009 18:28:41 -0000 1.69 +++ wget.spec 27 Jul 2009 07:12:38 -0000 1.70 @@ -1,7 +1,7 @@ Summary: A utility for retrieving files using the HTTP or FTP protocols Name: wget Version: 1.11.4 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv3+ Group: Applications/Internet Url: http://wget.sunsite.dk/ @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_infodir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.11.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.11.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:13:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:13:04 +0000 (UTC) Subject: rpms/wgrib/devel wgrib.spec,1.8,1.9 Message-ID: <20090727071304.3069A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wgrib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9186 Modified Files: wgrib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wgrib.spec =================================================================== RCS file: /cvs/pkgs/rpms/wgrib/devel/wgrib.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- wgrib.spec 25 Feb 2009 18:29:48 -0000 1.8 +++ wgrib.spec 27 Jul 2009 07:13:03 -0000 1.9 @@ -1,6 +1,6 @@ Name: wgrib Version: 1.8.0.12u -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manipulate, inventory and decode GRIB files Group: Applications/Engineering @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.8.0.12u-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.8.0.12u-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:13:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:13:21 +0000 (UTC) Subject: rpms/wgrib2/devel wgrib2.spec,1.7,1.8 Message-ID: <20090727071321.249B911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wgrib2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9478 Modified Files: wgrib2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wgrib2.spec =================================================================== RCS file: /cvs/pkgs/rpms/wgrib2/devel/wgrib2.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wgrib2.spec 16 Jul 2009 22:04:13 -0000 1.7 +++ wgrib2.spec 27 Jul 2009 07:13:20 -0000 1.8 @@ -1,6 +1,6 @@ Name: wgrib2 Version: 1.7.8j -Release: 1%{?dist} +Release: 2%{?dist} Summary: Manipulate, inventory and decode GRIB2 files Group: Applications/Engineering @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.8j-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Orion Poplawski - 1.7.8j-1 - Update to 1.7.8j - Drop flags patch, can now pass flags to make From jkeating at fedoraproject.org Mon Jul 27 07:13:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:13:39 +0000 (UTC) Subject: rpms/whatmask/devel whatmask.spec,1.5,1.6 Message-ID: <20090727071339.14A0711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/whatmask/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9797 Modified Files: whatmask.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: whatmask.spec =================================================================== RCS file: /cvs/pkgs/rpms/whatmask/devel/whatmask.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- whatmask.spec 25 Feb 2009 18:31:43 -0000 1.5 +++ whatmask.spec 27 Jul 2009 07:13:38 -0000 1.6 @@ -1,6 +1,6 @@ Name: whatmask Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Convert between different netmask types and show information Group: Applications/Internet @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:13:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:13:54 +0000 (UTC) Subject: rpms/whatsup/devel whatsup.spec,1.3,1.4 Message-ID: <20090727071354.ACF3611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/whatsup/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10024 Modified Files: whatsup.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: whatsup.spec =================================================================== RCS file: /cvs/pkgs/rpms/whatsup/devel/whatsup.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- whatsup.spec 7 Jun 2009 17:25:32 -0000 1.3 +++ whatsup.spec 27 Jul 2009 07:13:53 -0000 1.4 @@ -3,7 +3,7 @@ Summary: Node up/down detection utility Name: whatsup Version: 1.9 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Communications License: GPLv2+ URL: https://computing.llnl.gov/linux/whatsup.html @@ -199,6 +199,9 @@ fi %config(noreplace) %{_sysconfdir}/hostsfile %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Ruben Kerkhof 1.9-1 - Upstream released new version - Add openib backend From jkeating at fedoraproject.org Mon Jul 27 07:14:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:14:14 +0000 (UTC) Subject: rpms/which/devel which.spec,1.27,1.28 Message-ID: <20090727071414.30B2211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/which/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10198 Modified Files: which.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: which.spec =================================================================== RCS file: /cvs/pkgs/rpms/which/devel/which.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- which.spec 25 Feb 2009 18:33:32 -0000 1.27 +++ which.spec 27 Jul 2009 07:14:13 -0000 1.28 @@ -1,7 +1,7 @@ Summary: Displays where a particular program in your path is located Name: which Version: 2.19 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv3 Group: Applications/System Source0: http://www.xs4all.nl/~carlo17/which/%{name}-%{version}.tar.gz @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.19-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.19-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:14:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:14:31 +0000 (UTC) Subject: rpms/whohas/devel whohas.spec,1.3,1.4 Message-ID: <20090727071431.836D711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/whohas/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10336 Modified Files: whohas.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: whohas.spec =================================================================== RCS file: /cvs/pkgs/rpms/whohas/devel/whohas.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- whohas.spec 5 Apr 2009 18:55:59 -0000 1.3 +++ whohas.spec 27 Jul 2009 07:14:30 -0000 1.4 @@ -1,6 +1,6 @@ Name: whohas Version: 0.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Command line tool for query package lists @@ -55,6 +55,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Fabian Affolter - 0.23-1 - Updated to new upstream version 0.23 From jkeating at fedoraproject.org Mon Jul 27 07:14:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:14:53 +0000 (UTC) Subject: rpms/whowatch/devel whowatch.spec,1.13,1.14 Message-ID: <20090727071453.B1D7311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/whowatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10542 Modified Files: whowatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: whowatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/whowatch/devel/whowatch.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- whowatch.spec 25 Feb 2009 18:35:23 -0000 1.13 +++ whowatch.spec 27 Jul 2009 07:14:53 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Display information about users currently logged on Name: whowatch Version: 1.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: Applications/System URL: http://wizard.ae.krakow.pl/~mike/ @@ -45,6 +45,9 @@ INT or KILL signal to selected process. %{_bindir}/whowatch %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:15:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:15:46 +0000 (UTC) Subject: rpms/widelands/devel widelands.spec,1.13,1.14 Message-ID: <20090727071546.49D7211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/widelands/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11077 Modified Files: widelands.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: widelands.spec =================================================================== RCS file: /cvs/pkgs/rpms/widelands/devel/widelands.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- widelands.spec 25 Feb 2009 18:38:21 -0000 1.13 +++ widelands.spec 27 Jul 2009 07:15:45 -0000 1.14 @@ -1,7 +1,7 @@ %define build_id Build13 Name: widelands Version: 0 -Release: 0.14.%{build_id}%{?dist} +Release: 0.15.%{build_id}%{?dist} Summary: Open source realtime-strategy game Group: Amusements/Games @@ -106,6 +106,9 @@ fi %dir %{_datadir}/%{name}/locale %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0-0.15.Build13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.14.Build13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:16:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:16:00 +0000 (UTC) Subject: rpms/wifi-radar/devel wifi-radar.spec,1.5,1.6 Message-ID: <20090727071600.445CB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wifi-radar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11216 Modified Files: wifi-radar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wifi-radar.spec =================================================================== RCS file: /cvs/pkgs/rpms/wifi-radar/devel/wifi-radar.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- wifi-radar.spec 25 Feb 2009 18:39:18 -0000 1.5 +++ wifi-radar.spec 27 Jul 2009 07:16:00 -0000 1.6 @@ -1,7 +1,7 @@ Name: wifi-radar Summary: A utility for managing WiFi profiles Version: 1.9.9 -Release: 2%{?dist} +Release: 3%{?dist} # No version given. License: GPL+ Group: Applications/Internet @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING DEVELOPER_GUIDELINES README TODO %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:16:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:16:15 +0000 (UTC) Subject: rpms/wifiroamd/devel wifiroamd.spec,1.9,1.10 Message-ID: <20090727071615.E404D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wifiroamd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11374 Modified Files: wifiroamd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wifiroamd.spec =================================================================== RCS file: /cvs/pkgs/rpms/wifiroamd/devel/wifiroamd.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- wifiroamd.spec 25 Feb 2009 18:40:13 -0000 1.9 +++ wifiroamd.spec 27 Jul 2009 07:16:15 -0000 1.10 @@ -1,6 +1,6 @@ Name: wifiroamd Version: 1.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatic WiFi connection (re)establishment daemon Group: System Environment/Base @@ -108,6 +108,9 @@ fi %doc debian/copyright %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:16:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:16:28 +0000 (UTC) Subject: rpms/wiggle/devel wiggle.spec,1.3,1.4 Message-ID: <20090727071629.0461C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wiggle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11502 Modified Files: wiggle.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wiggle.spec =================================================================== RCS file: /cvs/pkgs/rpms/wiggle/devel/wiggle.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wiggle.spec 25 Feb 2009 18:41:11 -0000 1.3 +++ wiggle.spec 27 Jul 2009 07:16:28 -0000 1.4 @@ -1,6 +1,6 @@ Name: wiggle Version: 0.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool for applying patches with conflicts Group: Development/Tools @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:16:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:16:46 +0000 (UTC) Subject: rpms/wildmidi/devel wildmidi.spec,1.8,1.9 Message-ID: <20090727071646.F16B511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wildmidi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11705 Modified Files: wildmidi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wildmidi.spec =================================================================== RCS file: /cvs/pkgs/rpms/wildmidi/devel/wildmidi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- wildmidi.spec 25 Feb 2009 18:42:06 -0000 1.8 +++ wildmidi.spec 27 Jul 2009 07:16:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: wildmidi Version: 0.2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Softsynth midi player Group: Applications/Multimedia License: GPLv2+ @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:17:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:17:13 +0000 (UTC) Subject: rpms/wine-docs/devel wine-docs.spec,1.50,1.51 Message-ID: <20090727071713.8FF7311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wine-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11960 Modified Files: wine-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wine-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/wine-docs/devel/wine-docs.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- wine-docs.spec 25 Feb 2009 18:43:07 -0000 1.50 +++ wine-docs.spec 27 Jul 2009 07:17:13 -0000 1.51 @@ -1,7 +1,7 @@ %define debug_package %{nil} Name: wine-docs Version: 1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Documentation for wine Group: Documentation @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %doc en/*pdf en/*ps en/*txt en/*html COPYING.LIB %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:17:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:17:28 +0000 (UTC) Subject: rpms/wings/devel wings.spec,1.12,1.13 Message-ID: <20090727071728.A9FDA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12074 Modified Files: wings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wings.spec =================================================================== RCS file: /cvs/pkgs/rpms/wings/devel/wings.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- wings.spec 25 Feb 2009 18:44:12 -0000 1.12 +++ wings.spec 27 Jul 2009 07:17:28 -0000 1.13 @@ -1,6 +1,6 @@ Name: wings Version: 0.99.05 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 3D Subdivision Modeler Group: Applications/Multimedia @@ -140,6 +140,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.99.05-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.99.05-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:17:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:17:43 +0000 (UTC) Subject: rpms/winpdb/devel winpdb.spec,1.17,1.18 Message-ID: <20090727071743.3679911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/winpdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12212 Modified Files: winpdb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: winpdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/winpdb/devel/winpdb.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- winpdb.spec 8 Apr 2009 20:52:43 -0000 1.17 +++ winpdb.spec 27 Jul 2009 07:17:42 -0000 1.18 @@ -2,7 +2,7 @@ Name: winpdb Version: 1.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An advanced python debugger Group: Development/Debuggers License: GPLv2+ @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Tom "spot" Callaway - 1.4.6-1 - update to 1.4.6 From jkeating at fedoraproject.org Mon Jul 27 07:17:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:17:55 +0000 (UTC) Subject: rpms/wipe/devel wipe.spec,1.4,1.5 Message-ID: <20090727071755.D8FCA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wipe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12338 Modified Files: wipe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wipe.spec =================================================================== RCS file: /cvs/pkgs/rpms/wipe/devel/wipe.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wipe.spec 25 Feb 2009 18:46:14 -0000 1.4 +++ wipe.spec 27 Jul 2009 07:17:55 -0000 1.5 @@ -1,6 +1,6 @@ Name: wipe Version: 0.21 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Secure file erasing tool Group: Development/Tools @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/tr/man1/wipe.1.gz %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.21-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:18:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:18:18 +0000 (UTC) Subject: rpms/wireless-tools/devel wireless-tools.spec,1.43,1.44 Message-ID: <20090727071818.960FF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wireless-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12511 Modified Files: wireless-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wireless-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/wireless-tools/devel/wireless-tools.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- wireless-tools.spec 25 Feb 2009 18:47:11 -0000 1.43 +++ wireless-tools.spec 27 Jul 2009 07:18:18 -0000 1.44 @@ -8,7 +8,7 @@ Group: System Environment/Base License: GPL+ Name: wireless-tools Version: 29 -Release: 4%{?pre_version}%{?dist} +Release: 5%{?pre_version}%{?dist} Epoch: 1 URL: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Source: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.%{version}%{?pre_version}.tar.gz @@ -85,6 +85,9 @@ ln -sf ../../%{_lib}/libiw.so.%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:29-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:29-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:18:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:18:34 +0000 (UTC) Subject: rpms/wireshark/devel wireshark.spec,1.54,1.55 Message-ID: <20090727071834.E865911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wireshark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12675 Modified Files: wireshark.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wireshark.spec =================================================================== RCS file: /cvs/pkgs/rpms/wireshark/devel/wireshark.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- wireshark.spec 22 Jul 2009 11:29:57 -0000 1.54 +++ wireshark.spec 27 Jul 2009 07:18:33 -0000 1.55 @@ -7,7 +7,7 @@ Summary: Network traffic analyzer Name: wireshark Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ Group: Applications/Internet %if %{svn_version} @@ -210,6 +210,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Radek Vokal - 1.2.1 - upgrade to 1.2.1 - http://www.wireshark.org/docs/relnotes/wireshark-1.2.1.html From jkeating at fedoraproject.org Mon Jul 27 07:18:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:18:48 +0000 (UTC) Subject: rpms/wise2/devel wise2.spec,1.5,1.6 Message-ID: <20090727071848.7169311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wise2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12835 Modified Files: wise2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wise2.spec =================================================================== RCS file: /cvs/pkgs/rpms/wise2/devel/wise2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- wise2.spec 16 Jul 2009 06:17:22 -0000 1.5 +++ wise2.spec 27 Jul 2009 07:18:48 -0000 1.6 @@ -1,6 +1,6 @@ Name: wise2 Version: 2.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tools for comparison of biopolymers Group: Applications/Engineering @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/profile.d/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Alex Lancaster - 2.2.0-6 - Add -D_POSIX_C_SOURCE=200112L to CFLAGS as a workaround to fix FTBFS (#511627) From jkeating at fedoraproject.org Mon Jul 27 07:19:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:19:02 +0000 (UTC) Subject: rpms/wklej/devel wklej.spec,1.7,1.8 Message-ID: <20090727071902.B264511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wklej/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12973 Modified Files: wklej.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wklej.spec =================================================================== RCS file: /cvs/pkgs/rpms/wklej/devel/wklej.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wklej.spec 16 Jun 2009 14:52:44 -0000 1.7 +++ wklej.spec 27 Jul 2009 07:19:02 -0000 1.8 @@ -1,6 +1,6 @@ Name: wklej Version: 0.1.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A wklej.org submitter Summary(pl): Skrypt umieszczaj?cy tekst w serwisie wklej.org @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/vim/vimfiles/plugin/wklej.vim %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Rafa? Psota - 0.1.7-1 - update to 0.1.7 From jkeating at fedoraproject.org Mon Jul 27 07:19:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:19:17 +0000 (UTC) Subject: rpms/wlassistant/devel wlassistant.spec,1.18,1.19 Message-ID: <20090727071917.7A47111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wlassistant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13110 Modified Files: wlassistant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wlassistant.spec =================================================================== RCS file: /cvs/pkgs/rpms/wlassistant/devel/wlassistant.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- wlassistant.spec 13 Mar 2009 18:23:21 -0000 1.18 +++ wlassistant.spec 27 Jul 2009 07:19:16 -0000 1.19 @@ -1,6 +1,6 @@ Name: wlassistant Version: 0.5.7 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/System Summary: Wireless network management tool @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/32x32/apps/wlassistant.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 13 2009 Tom "spot" Callaway - 0.5.7-10 - prevent iwlib from monkeying around with inline define From jkeating at fedoraproject.org Mon Jul 27 07:19:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:19:31 +0000 (UTC) Subject: rpms/wmCalClock/devel wmCalClock.spec,1.12,1.13 Message-ID: <20090727071931.BC2A311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmCalClock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13258 Modified Files: wmCalClock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmCalClock.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmCalClock/devel/wmCalClock.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- wmCalClock.spec 25 Feb 2009 18:52:09 -0000 1.12 +++ wmCalClock.spec 27 Jul 2009 07:19:31 -0000 1.13 @@ -1,6 +1,6 @@ Name: wmCalClock Version: 1.25 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A Calendar clock with antialiased text Group: User Interface/X @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/wmCalClock.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.25-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.25-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:19:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:19:44 +0000 (UTC) Subject: rpms/wmacpi/devel wmacpi.spec,1.9,1.10 Message-ID: <20090727071944.47E4611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmacpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13392 Modified Files: wmacpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmacpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmacpi/devel/wmacpi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- wmacpi.spec 25 Feb 2009 18:53:06 -0000 1.9 +++ wmacpi.spec 27 Jul 2009 07:19:43 -0000 1.10 @@ -1,6 +1,6 @@ Name: wmacpi Version: 2.2 -Release: 0.5.rc1%{?dist} +Release: 0.6.rc1%{?dist} Summary: Dockapp for laptop acpi/apm information Group: User Interface/X @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/wmacpi.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2-0.6.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-0.5.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:19:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:19:57 +0000 (UTC) Subject: rpms/wmapmload/devel wmapmload.spec,1.9,1.10 Message-ID: <20090727071957.E984911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmapmload/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13515 Modified Files: wmapmload.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmapmload.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmapmload/devel/wmapmload.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- wmapmload.spec 25 Feb 2009 18:54:01 -0000 1.9 +++ wmapmload.spec 27 Jul 2009 07:19:57 -0000 1.10 @@ -1,6 +1,6 @@ Name: wmapmload Version: 0.3.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Wmapmload monitors your apm status in an lcd display fashion Group: User Interface/X @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.3.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:20:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:20:10 +0000 (UTC) Subject: rpms/wmctrl/devel wmctrl.spec,1.5,1.6 Message-ID: <20090727072010.E204811C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmctrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13668 Modified Files: wmctrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmctrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmctrl/devel/wmctrl.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- wmctrl.spec 25 Feb 2009 18:54:58 -0000 1.5 +++ wmctrl.spec 27 Jul 2009 07:20:10 -0000 1.6 @@ -1,6 +1,6 @@ Name: wmctrl Version: 1.07 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A command line tool to interact with an X Window Manager Group: User Interface/X @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.07-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.07-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:20:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:20:48 +0000 (UTC) Subject: rpms/wmfire/devel wmfire.spec,1.1,1.2 Message-ID: <20090727072048.27D8811C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmfire/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13955 Modified Files: wmfire.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmfire.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmfire/devel/wmfire.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wmfire.spec 7 Jul 2009 06:44:12 -0000 1.1 +++ wmfire.spec 27 Jul 2009 07:20:47 -0000 1.2 @@ -1,6 +1,6 @@ Name: wmfire Version: 1.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A WindowMaker dock app that displays cpu, memory or network load as flames Group: User Interface/X License: GPLv2+ @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/wmfire.1.gz %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Steven Fernandez - 1.2.3-2 - Second build for Fedora with changes to confirm with packaging guidelines From jkeating at fedoraproject.org Mon Jul 27 07:21:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:21:02 +0000 (UTC) Subject: rpms/wmix/devel wmix.spec,1.4,1.5 Message-ID: <20090727072102.3F6BE11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14076 Modified Files: wmix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmix.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmix/devel/wmix.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wmix.spec 25 Feb 2009 18:55:59 -0000 1.4 +++ wmix.spec 27 Jul 2009 07:21:01 -0000 1.5 @@ -1,6 +1,6 @@ Name: wmix Version: 3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Dockapp mixer Group: User Interface/X @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:21:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:21:16 +0000 (UTC) Subject: rpms/wmweather+/devel wmweather+.spec,1.10,1.11 Message-ID: <20090727072116.BDF1411C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmweather+/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14222 Modified Files: wmweather+.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmweather+.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmweather+/devel/wmweather+.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- wmweather+.spec 25 Feb 2009 18:57:01 -0000 1.10 +++ wmweather+.spec 27 Jul 2009 07:21:16 -0000 1.11 @@ -1,6 +1,6 @@ Name: wmweather+ Version: 2.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Weather status dockapp Group: User Interface/X @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:21:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:21:31 +0000 (UTC) Subject: rpms/wmx/devel wmx.spec,1.19,1.20 Message-ID: <20090727072131.BDA4E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wmx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14368 Modified Files: wmx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wmx.spec =================================================================== RCS file: /cvs/pkgs/rpms/wmx/devel/wmx.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- wmx.spec 25 Feb 2009 18:58:10 -0000 1.19 +++ wmx.spec 27 Jul 2009 07:21:31 -0000 1.20 @@ -1,6 +1,6 @@ Name: wmx Version: 7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A really simple window manager for X License: BSD Group: User Interface/X @@ -53,6 +53,9 @@ configurable options. %{_sysconfdir}/X11/xinit/Xclients.d/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:21:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:21:44 +0000 (UTC) Subject: rpms/wol/devel wol.spec,1.2,1.3 Message-ID: <20090727072144.2526E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wol/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14532 Modified Files: wol.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wol.spec =================================================================== RCS file: /cvs/pkgs/rpms/wol/devel/wol.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wol.spec 25 Feb 2009 18:59:15 -0000 1.2 +++ wol.spec 27 Jul 2009 07:21:43 -0000 1.3 @@ -1,6 +1,6 @@ Name: wol Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Wake On Lan client Group: Applications/Internet @@ -59,6 +59,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:21:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:21:57 +0000 (UTC) Subject: rpms/woodardworks-laconic-fonts/devel woodardworks-laconic-fonts.spec, 1.1, 1.2 Message-ID: <20090727072157.BAE7E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/woodardworks-laconic-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14639 Modified Files: woodardworks-laconic-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: woodardworks-laconic-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/woodardworks-laconic-fonts/devel/woodardworks-laconic-fonts.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- woodardworks-laconic-fonts.spec 27 May 2009 15:36:42 -0000 1.1 +++ woodardworks-laconic-fonts.spec 27 Jul 2009 07:21:57 -0000 1.2 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Summary: An artistic and minimal sans-serif font family Version: 001.001 -Release: 3%{?dist} +Release: 4%{?dist} License: OFL Group: User Interface/X Source0: http://www.woodardworks.com/laconic.zip @@ -66,6 +66,9 @@ rm -rf %{buildroot} %doc laconic_eula.pdf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 001.001-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 26 2009 Tom "spot" Callaway 001.001-3 - fix shadow fontconfig file From jkeating at fedoraproject.org Mon Jul 27 07:22:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:22:13 +0000 (UTC) Subject: rpms/wordnet/devel wordnet.spec,1.2,1.3 Message-ID: <20090727072213.4A9AA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordnet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14796 Modified Files: wordnet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordnet.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordnet/devel/wordnet.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wordnet.spec 10 Jun 2009 13:30:47 -0000 1.2 +++ wordnet.spec 27 Jul 2009 07:22:12 -0000 1.3 @@ -1,6 +1,6 @@ Name: wordnet Version: 3.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A lexical database for the english language Group: Applications/Text @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Caolan McNamara - 3.0-9 - Fixed fedora BZ 504957 - references to non-existing dirs in wnb From jkeating at fedoraproject.org Mon Jul 27 07:22:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:22:28 +0000 (UTC) Subject: rpms/wordpress/devel wordpress.spec,1.30,1.31 Message-ID: <20090727072228.532AB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordpress/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14925 Modified Files: wordpress.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordpress.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress/devel/wordpress.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- wordpress.spec 10 Jul 2009 19:28:57 -0000 1.30 +++ wordpress.spec 27 Jul 2009 07:22:27 -0000 1.31 @@ -3,7 +3,7 @@ URL: http://www.wordpress.org Name: wordpress Version: 2.8.1 Group: Applications/Publishing -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf @@ -75,6 +75,9 @@ rm -rf ${RPM_BUILD_ROOT} %dir %{_sysconfdir}/wordpress %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 10 2009 Adrian Reber - 2.8.1-1 - updated to 2.8.1 for security fixes - BZ 510745 From jkeating at fedoraproject.org Mon Jul 27 07:22:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:22:43 +0000 (UTC) Subject: rpms/wordpress-mu/devel wordpress-mu.spec,1.7,1.8 Message-ID: <20090727072243.DB9ED11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordpress-mu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15072 Modified Files: wordpress-mu.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordpress-mu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/devel/wordpress-mu.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wordpress-mu.spec 25 Feb 2009 19:01:23 -0000 1.7 +++ wordpress-mu.spec 27 Jul 2009 07:22:43 -0000 1.8 @@ -2,7 +2,7 @@ Summary: WordPress-MU multi-user bloggin URL: http://mu.wordpress.org/latest.tar.gz Name: wordpress-mu Version: 2.7 -Release: 5%{?dist} +Release: 6%{?dist} Group: Applications/Publishing License: GPLv2 Source0: %{name}-%{version}.tar.gz @@ -98,6 +98,9 @@ rm -rf %{buildroot} %dir %{_sysconfdir}/wordpress-mu %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.7-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:23:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:23:38 +0000 (UTC) Subject: rpms/wordpress-mu-plugin-defaults/devel wordpress-mu-plugin-defaults.spec, 1.1, 1.2 Message-ID: <20090727072338.5725211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15416 Modified Files: wordpress-mu-plugin-defaults.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordpress-mu-plugin-defaults.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu-plugin-defaults/devel/wordpress-mu-plugin-defaults.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wordpress-mu-plugin-defaults.spec 2 Jul 2009 05:11:32 -0000 1.1 +++ wordpress-mu-plugin-defaults.spec 27 Jul 2009 07:23:38 -0000 1.2 @@ -5,7 +5,7 @@ Name: wordpress-mu-plugin-%{plugin_name # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing @@ -46,6 +46,9 @@ rm -rf %{buildroot} %doc readme.txt %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 From jkeating at fedoraproject.org Mon Jul 27 07:23:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:23:55 +0000 (UTC) Subject: rpms/wordpress-plugin-add-to-any/devel wordpress-plugin-add-to-any.spec, 1.1, 1.2 Message-ID: <20090727072355.B06CF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordpress-plugin-add-to-any/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15566 Modified Files: wordpress-plugin-add-to-any.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordpress-plugin-add-to-any.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-plugin-add-to-any/devel/wordpress-plugin-add-to-any.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wordpress-plugin-add-to-any.spec 10 May 2009 19:34:03 -0000 1.1 +++ wordpress-plugin-add-to-any.spec 27 Jul 2009 07:23:55 -0000 1.2 @@ -11,7 +11,7 @@ Name: wordpress-plugin-%{plugin_name} Version: 0.9.9.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{plugin_human_name} plugin for WordPress Group: Applications/Publishing @@ -165,5 +165,8 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.9.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ian Weller - 0.9.9.2.3-1 - Initial package build From jkeating at fedoraproject.org Mon Jul 27 07:24:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:24:12 +0000 (UTC) Subject: rpms/wordpress-plugin-add-to-any-subscribe/devel wordpress-plugin-add-to-any-subscribe.spec, 1.1, 1.2 Message-ID: <20090727072412.A05ED11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordpress-plugin-add-to-any-subscribe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15750 Modified Files: wordpress-plugin-add-to-any-subscribe.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordpress-plugin-add-to-any-subscribe.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-plugin-add-to-any-subscribe/devel/wordpress-plugin-add-to-any-subscribe.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- wordpress-plugin-add-to-any-subscribe.spec 10 May 2009 19:45:42 -0000 1.1 +++ wordpress-plugin-add-to-any-subscribe.spec 27 Jul 2009 07:24:11 -0000 1.2 @@ -11,7 +11,7 @@ Name: wordpress-plugin-%{plugin_name} Version: 0.9.6.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{plugin_human_name} plugin for WordPress Group: Applications/Publishing @@ -147,5 +147,8 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.6.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 27 2009 Ian Weller - 0.9.6.4.1-1 - Initial package build From jkeating at fedoraproject.org Mon Jul 27 07:24:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:24:29 +0000 (UTC) Subject: rpms/words/devel words.spec,1.19,1.20 Message-ID: <20090727072429.A2ED711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/words/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15928 Modified Files: words.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: words.spec =================================================================== RCS file: /cvs/pkgs/rpms/words/devel/words.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- words.spec 25 Feb 2009 19:02:31 -0000 1.19 +++ words.spec 27 Jul 2009 07:24:28 -0000 1.20 @@ -1,7 +1,7 @@ Summary: A dictionary of English words for the /usr/share/dict directory Name: words Version: 3.0 -Release: 15%{?dist} +Release: 16%{?dist} License: Public Domain Group: System Environment/Libraries # Note that Moby Project officially does not exist any more. The most complete @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/dict/words %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:24:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:24:56 +0000 (UTC) Subject: rpms/wordtrans/devel wordtrans.spec,1.37,1.38 Message-ID: <20090727072456.30F8F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordtrans/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16137 Modified Files: wordtrans.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordtrans.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordtrans/devel/wordtrans.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- wordtrans.spec 24 Mar 2009 13:56:09 -0000 1.37 +++ wordtrans.spec 27 Jul 2009 07:24:55 -0000 1.38 @@ -10,7 +10,7 @@ Group: Applications/Productivity URL: http://wordtrans.sourceforge.net Summary: Multi Language Word Translator for Linux Version: 1.1 -Release: 0.8.pre13%{?dist} +Release: 0.9.pre13%{?dist} Epoch: 1 License: GPLv2+ Source: http://wordtrans.sourceforge.net/%{name}_%{iversion}.tar.gz @@ -285,6 +285,9 @@ rm -rf $RPM_BUILD_ROOT /var/www/wordtrans %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.1-0.9.pre13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Than Ngo - 1.1-0.8.pre13 - get rid of the manual page (#463013) From jkeating at fedoraproject.org Mon Jul 27 07:25:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:25:24 +0000 (UTC) Subject: rpms/wordxtr/devel wordxtr.spec,1.3,1.4 Message-ID: <20090727072524.46B9F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordxtr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16424 Modified Files: wordxtr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordxtr.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordxtr/devel/wordxtr.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wordxtr.spec 25 Feb 2009 19:05:55 -0000 1.3 +++ wordxtr.spec 27 Jul 2009 07:25:24 -0000 1.4 @@ -2,7 +2,7 @@ Name: wordxtr Version: 0.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Create hunspell dictionary from given plain text input data files Group: Development/Languages @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:25:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:25:12 +0000 (UTC) Subject: rpms/wordwarvi/devel wordwarvi.spec,1.17,1.18 Message-ID: <20090727072512.1A12011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wordwarvi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16309 Modified Files: wordwarvi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wordwarvi.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordwarvi/devel/wordwarvi.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- wordwarvi.spec 25 Feb 2009 19:05:00 -0000 1.17 +++ wordwarvi.spec 27 Jul 2009 07:25:11 -0000 1.18 @@ -1,6 +1,6 @@ Name: wordwarvi Version: 0.25 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Side-scrolling shoot 'em up '80s style arcade game Group: Amusements/Games License: GPLv2+ and CC-BY and CC-BY-SA @@ -74,6 +74,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:25:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:25:39 +0000 (UTC) Subject: rpms/workrave/devel workrave.spec,1.21,1.22 Message-ID: <20090727072539.3C08011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/workrave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16594 Modified Files: workrave.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: workrave.spec =================================================================== RCS file: /cvs/pkgs/rpms/workrave/devel/workrave.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- workrave.spec 27 Feb 2009 09:38:00 -0000 1.21 +++ workrave.spec 27 Jul 2009 07:25:38 -0000 1.22 @@ -1,6 +1,6 @@ Name: workrave Version: 1.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Program that assists in the recovery and prevention of RSI # Based on older packages by Dag Wieers and Steve Ratcliffe License: GPLv2+ @@ -76,6 +76,9 @@ desktop-file-install --vendor fedora %{_datadir}/dbus-1/services/org.workrave.Workrave.service %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Tomas Mraz - 1.9.0-3 - fix build with new gcc 4.4 and glibc From jkeating at fedoraproject.org Mon Jul 27 07:25:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:25:59 +0000 (UTC) Subject: rpms/worminator/devel worminator.spec,1.10,1.11 Message-ID: <20090727072559.0B21211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/worminator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16735 Modified Files: worminator.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: worminator.spec =================================================================== RCS file: /cvs/pkgs/rpms/worminator/devel/worminator.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- worminator.spec 25 Feb 2009 19:07:54 -0000 1.10 +++ worminator.spec 27 Jul 2009 07:25:58 -0000 1.11 @@ -1,6 +1,6 @@ Name: worminator Version: 3.0R2.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Sidescrolling platform and shoot'em up action-game Group: Amusements/Games License: GPLv2+ @@ -71,6 +71,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0R2.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0R2.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:26:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:26:15 +0000 (UTC) Subject: rpms/worminator-data/devel worminator-data.spec,1.6,1.7 Message-ID: <20090727072615.9AD6711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/worminator-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16869 Modified Files: worminator-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: worminator-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/worminator-data/devel/worminator-data.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- worminator-data.spec 25 Feb 2009 19:08:50 -0000 1.6 +++ worminator-data.spec 27 Jul 2009 07:26:15 -0000 1.7 @@ -1,6 +1,6 @@ Name: worminator-data Version: 3.0R2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Data for worminator the game Group: Amusements/Games License: GPLv2+ @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0R2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0R2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:26:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:26:31 +0000 (UTC) Subject: rpms/wormux/devel wormux.spec,1.21,1.22 Message-ID: <20090727072631.E33AE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wormux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17006 Modified Files: wormux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wormux.spec =================================================================== RCS file: /cvs/pkgs/rpms/wormux/devel/wormux.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- wormux.spec 19 Jul 2009 02:26:53 -0000 1.21 +++ wormux.spec 27 Jul 2009 07:26:31 -0000 1.22 @@ -1,6 +1,6 @@ Name: wormux Version: 0.8.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: 2D convivial mass murder game Group: Amusements/Games @@ -97,6 +97,9 @@ fi %{_datadir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 18 2009 Wart 0.8.4-1 - Update to 0.8.4 From jkeating at fedoraproject.org Mon Jul 27 07:26:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:26:46 +0000 (UTC) Subject: rpms/wp_tray/devel wp_tray.spec,1.16,1.17 Message-ID: <20090727072646.EDFE111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wp_tray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17174 Modified Files: wp_tray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wp_tray.spec =================================================================== RCS file: /cvs/pkgs/rpms/wp_tray/devel/wp_tray.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- wp_tray.spec 26 Feb 2009 07:11:16 -0000 1.16 +++ wp_tray.spec 27 Jul 2009 07:26:46 -0000 1.17 @@ -1,6 +1,6 @@ Name: wp_tray Version: 0.5.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A wallpaper-changing applet for GNOME Group: Amusements/Graphics @@ -71,6 +71,9 @@ fi %{_sysconfdir}/gconf/schemas/*.schemas %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.5.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:27:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:27:03 +0000 (UTC) Subject: rpms/wpa_supplicant/devel wpa_supplicant.spec,1.59,1.60 Message-ID: <20090727072703.A134311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wpa_supplicant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17338 Modified Files: wpa_supplicant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wpa_supplicant.spec =================================================================== RCS file: /cvs/pkgs/rpms/wpa_supplicant/devel/wpa_supplicant.spec,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- wpa_supplicant.spec 13 May 2009 14:53:07 -0000 1.59 +++ wpa_supplicant.spec 27 Jul 2009 07:27:03 -0000 1.60 @@ -2,7 +2,7 @@ Summary: WPA/WPA2/IEEE 802.1X Supplicant Name: wpa_supplicant Epoch: 1 Version: 0.6.8 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: System Environment/Base Source0: http://hostap.epitest.fi/releases/%{name}-%{version}.tar.gz @@ -149,6 +149,9 @@ fi %{_bindir}/wpa_gui %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.6.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 13 2009 Dan Williams - 1:0.6.8-4 - Let D-Bus clients know when the supplicant is scanning From jkeating at fedoraproject.org Mon Jul 27 07:27:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:27:19 +0000 (UTC) Subject: rpms/wput/devel wput.spec,1.2,1.3 Message-ID: <20090727072719.4D94A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wput/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17473 Modified Files: wput.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wput.spec =================================================================== RCS file: /cvs/pkgs/rpms/wput/devel/wput.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wput.spec 26 Feb 2009 07:12:12 -0000 1.2 +++ wput.spec 27 Jul 2009 07:27:19 -0000 1.3 @@ -1,7 +1,7 @@ Summary: A utility for uploading files or whole directories to remote ftp-servers Name: wput Version: 0.6.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://wput.sourceforge.net/ @@ -39,6 +39,9 @@ downloading, uploads files or whole dire %{_bindir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:27:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:27:36 +0000 (UTC) Subject: rpms/wqy-bitmap-fonts/devel wqy-bitmap-fonts.spec,1.23,1.24 Message-ID: <20090727072736.838A111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wqy-bitmap-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17634 Modified Files: wqy-bitmap-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wqy-bitmap-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/wqy-bitmap-fonts/devel/wqy-bitmap-fonts.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- wqy-bitmap-fonts.spec 23 Apr 2009 18:31:54 -0000 1.23 +++ wqy-bitmap-fonts.spec 27 Jul 2009 07:27:36 -0000 1.24 @@ -4,7 +4,7 @@ Name: %{fontname}-fonts Version: 0.9.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: WenQuanYi Bitmap Chinese Fonts Group: User Interface/X @@ -69,6 +69,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + *Thu Apr 23 2009 Qianqian Fang 0.9.9-10 - correct outdated uming font names for F11 (#492510) From jkeating at fedoraproject.org Mon Jul 27 07:27:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:27:52 +0000 (UTC) Subject: rpms/wqy-unibit-fonts/devel wqy-unibit-fonts.spec,1.3,1.4 Message-ID: <20090727072752.0DBC411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wqy-unibit-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17784 Modified Files: wqy-unibit-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wqy-unibit-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/wqy-unibit-fonts/devel/wqy-unibit-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wqy-unibit-fonts.spec 26 Feb 2009 07:14:12 -0000 1.3 +++ wqy-unibit-fonts.spec 27 Jul 2009 07:27:51 -0000 1.4 @@ -2,7 +2,7 @@ Name: %{fontname}-fonts Version: 1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: WenQuanYi Unibit Bitmap Font Group: User Interface/X @@ -61,6 +61,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:28:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:28:10 +0000 (UTC) Subject: rpms/wqy-zenhei-fonts/devel wqy-zenhei-fonts.spec,1.11,1.12 Message-ID: <20090727072810.386C811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wqy-zenhei-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17950 Modified Files: wqy-zenhei-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wqy-zenhei-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/wqy-zenhei-fonts/devel/wqy-zenhei-fonts.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- wqy-zenhei-fonts.spec 30 Mar 2009 22:35:26 -0000 1.11 +++ wqy-zenhei-fonts.spec 27 Jul 2009 07:28:09 -0000 1.12 @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 0.8.38 -Release: 2%{?dist} +Release: 3%{?dist} Summary: WenQuanYi Zen Hei CJK Font Group: User Interface/X @@ -87,6 +87,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + *Mon Mar 30 2009 Qianqian Fang 0.8.38-2 - rebuild to pickup font autodeps (# 491974) From jkeating at fedoraproject.org Mon Jul 27 07:28:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:28:22 +0000 (UTC) Subject: rpms/wraplinux/devel wraplinux.spec,1.2,1.3 Message-ID: <20090727072822.7F46911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wraplinux/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18066 Modified Files: wraplinux.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wraplinux.spec =================================================================== RCS file: /cvs/pkgs/rpms/wraplinux/devel/wraplinux.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wraplinux.spec 2 Mar 2009 01:42:53 -0000 1.2 +++ wraplinux.spec 27 Jul 2009 07:28:21 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Utility to wrap a Linux kernel and initrd into an ELF or NBI file Name: wraplinux Version: 1.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: Applications/System URL: http://www.kernel.org/pub/linux/utils/boot/wraplinux/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/wraplinux.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Warren Togami - 1.6-2 - build on 32bit From jkeating at fedoraproject.org Mon Jul 27 07:28:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:28:39 +0000 (UTC) Subject: rpms/ws-commons-util/devel ws-commons-util.spec,1.11,1.12 Message-ID: <20090727072839.50DD711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ws-commons-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18223 Modified Files: ws-commons-util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ws-commons-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/ws-commons-util/devel/ws-commons-util.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- ws-commons-util.spec 26 Feb 2009 07:17:08 -0000 1.11 +++ ws-commons-util.spec 27 Jul 2009 07:28:38 -0000 1.12 @@ -1,6 +1,6 @@ Name: ws-commons-util Version: 1.0.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Common utilities from the Apache Web Services Project Group: System Environment/Libraries @@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:28:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:28:52 +0000 (UTC) Subject: rpms/ws-jaxme/devel ws-jaxme.spec,1.7,1.8 Message-ID: <20090727072852.CF94B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ws-jaxme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18367 Modified Files: ws-jaxme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ws-jaxme.spec =================================================================== RCS file: /cvs/pkgs/rpms/ws-jaxme/devel/ws-jaxme.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ws-jaxme.spec 26 Feb 2009 07:18:09 -0000 1.7 +++ ws-jaxme.spec 27 Jul 2009 07:28:52 -0000 1.8 @@ -32,7 +32,7 @@ Name: ws-jaxme Version: 0.5.1 -Release: 3.4%{?dist} +Release: 4.4%{?dist} Epoch: 0 Summary: Open source implementation of JAXB @@ -191,6 +191,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_docdir}/%{name}-%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:0.5.1-4.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:0.5.1-3.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:29:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:29:09 +0000 (UTC) Subject: rpms/wsdl4j/devel wsdl4j.spec,1.21,1.22 Message-ID: <20090727072909.8424611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wsdl4j/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18531 Modified Files: wsdl4j.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wsdl4j.spec =================================================================== RCS file: /cvs/pkgs/rpms/wsdl4j/devel/wsdl4j.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- wsdl4j.spec 22 Apr 2009 20:40:50 -0000 1.21 +++ wsdl4j.spec 27 Jul 2009 07:29:09 -0000 1.22 @@ -39,7 +39,7 @@ Summary: Web Services Description Language Toolkit for Java Name: wsdl4j Version: 1.5.2 -Release: 6.6%{?dist} +Release: 7.6%{?dist} Epoch: 0 Group: Text Processing/Markup/XML License: CPL @@ -160,6 +160,9 @@ fi %ghost %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.5.2-7.6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 22 2009 Deepak Bhole - 0:1.5.2-6.6 - Update OSGi manifest From jkeating at fedoraproject.org Mon Jul 27 07:29:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:29:21 +0000 (UTC) Subject: rpms/wsmancli/devel wsmancli.spec,1.2,1.3 Message-ID: <20090727072921.D028711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wsmancli/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18673 Modified Files: wsmancli.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wsmancli.spec =================================================================== RCS file: /cvs/pkgs/rpms/wsmancli/devel/wsmancli.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- wsmancli.spec 26 Feb 2009 07:20:21 -0000 1.2 +++ wsmancli.spec 27 Jul 2009 07:29:21 -0000 1.3 @@ -1,6 +1,6 @@ Name: wsmancli Version: 2.1.0 -Release: 2%{dist} +Release: 3%{dist} License: BSD Url: http://www.openwsman.org/ Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 @@ -35,6 +35,9 @@ rm -rf %{buildroot} %doc COPYING README %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:29:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:29:33 +0000 (UTC) Subject: rpms/wuja/devel wuja.spec,1.7,1.8 Message-ID: <20090727072933.1BBCE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wuja/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18808 Modified Files: wuja.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wuja.spec =================================================================== RCS file: /cvs/pkgs/rpms/wuja/devel/wuja.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- wuja.spec 26 Feb 2009 07:21:25 -0000 1.7 +++ wuja.spec 27 Jul 2009 07:29:32 -0000 1.8 @@ -2,7 +2,7 @@ Name: wuja Version: 0.0.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Gnome desktop applet for integration with Google Calendar Group: Applications/Internet @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:29:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:29:45 +0000 (UTC) Subject: rpms/wv/devel wv.spec,1.26,1.27 Message-ID: <20090727072945.4077E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18930 Modified Files: wv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wv.spec =================================================================== RCS file: /cvs/pkgs/rpms/wv/devel/wv.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- wv.spec 26 Feb 2009 07:22:26 -0000 1.26 +++ wv.spec 27 Jul 2009 07:29:44 -0000 1.27 @@ -1,7 +1,7 @@ Name: wv Summary: MSWord 6/7/8/9 binary file format to HTML converter Version: 1.2.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Applications/Text URL: http://wvware.sourceforge.net @@ -87,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:29:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:29:59 +0000 (UTC) Subject: rpms/wv2/devel wv2.spec,1.15,1.16 Message-ID: <20090727072959.9CBF211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wv2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19053 Modified Files: wv2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wv2.spec =================================================================== RCS file: /cvs/pkgs/rpms/wv2/devel/wv2.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- wv2.spec 26 Feb 2009 07:23:32 -0000 1.15 +++ wv2.spec 27 Jul 2009 07:29:59 -0000 1.16 @@ -1,6 +1,6 @@ Name: wv2 Version: 0.2.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A library which allows access to Microsoft? Word files Group: System Environment/Libraries @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/wv2 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:30:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:30:14 +0000 (UTC) Subject: rpms/wvdial/devel wvdial.spec,1.36,1.37 Message-ID: <20090727073014.59CBB11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wvdial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19228 Modified Files: wvdial.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wvdial.spec =================================================================== RCS file: /cvs/pkgs/rpms/wvdial/devel/wvdial.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- wvdial.spec 11 Jun 2009 11:25:17 -0000 1.36 +++ wvdial.spec 27 Jul 2009 07:30:14 -0000 1.37 @@ -1,7 +1,7 @@ Summary: A heuristic autodialer for PPP connections Name: wvdial Version: 1.60 -Release: 9%{?dist} +Release: 10%{?dist} License: LGPLv2 URL: http://alumnit.ca/wiki/?WvDial Group: System Environment/Daemons @@ -65,6 +65,9 @@ touch $RPM_BUILD_ROOT/%{_sysconfdir}/wvd %verify(not md5 size mtime) %config(noreplace) %{_sysconfdir}/wvdial.conf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.60-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 11 2009 Ondrej Vasik - 1.60-9 - make wvdial compilable in rawhide (scandir api change), reduce compiler warnings From jkeating at fedoraproject.org Mon Jul 27 07:30:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:30:37 +0000 (UTC) Subject: rpms/wxGTK/devel wxGTK.spec,1.47,1.48 Message-ID: <20090727073037.8569311C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxGTK/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19409a Modified Files: wxGTK.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxGTK.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGTK/devel/wxGTK.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- wxGTK.spec 15 Jul 2009 17:47:31 -0000 1.47 +++ wxGTK.spec 27 Jul 2009 07:30:36 -0000 1.48 @@ -4,7 +4,7 @@ Name: wxGTK Version: 2.8.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK2 port of the wxWidgets GUI library # The wxWindows licence is the LGPL with a specific exemption allowing # distribution of derived binaries under any terms. (This will eventually @@ -257,6 +257,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Dan Hor?k - 2.8.10-3 - add fix for CVE-2009-2369 (#511279) From jkeating at fedoraproject.org Mon Jul 27 07:15:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:15:16 +0000 (UTC) Subject: rpms/why/devel why.spec,1.3,1.4 Message-ID: <20090727071516.926AD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/why/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10710 Modified Files: why.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: why.spec =================================================================== RCS file: /cvs/pkgs/rpms/why/devel/why.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- why.spec 25 Feb 2009 18:36:27 -0000 1.3 +++ why.spec 27 Jul 2009 07:15:16 -0000 1.4 @@ -1,6 +1,6 @@ Name: why Version: 2.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Why software verification platform Group: Applications/Engineering @@ -225,6 +225,9 @@ rm -rf %{buildroot} %doc README.why-coq.Fedora %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:30:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:30:50 +0000 (UTC) Subject: rpms/wxGlade/devel wxGlade.spec,1.8,1.9 Message-ID: <20090727073050.44E8311C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxGlade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19561 Modified Files: wxGlade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxGlade.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxGlade/devel/wxGlade.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- wxGlade.spec 26 Feb 2009 07:25:35 -0000 1.8 +++ wxGlade.spec 27 Jul 2009 07:30:49 -0000 1.9 @@ -1,7 +1,7 @@ Summary: A wxWidgets/wxPython/wxPerl GUI designer Name: wxGlade Version: 0.6.3 -Release: 3%{?dist} +Release: 4%{?dist} Source0: http://downloads.sourceforge.net/wxglade/%{name}-%{version}.tar.gz Source1: wxglade.desktop Source2: wxglade.png @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.6.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:31:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:31:03 +0000 (UTC) Subject: rpms/wxMaxima/devel wxMaxima.spec,1.30,1.31 Message-ID: <20090727073103.5E96911C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxMaxima/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19688 Modified Files: wxMaxima.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxMaxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxMaxima/devel/wxMaxima.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- wxMaxima.spec 18 Jul 2009 21:26:34 -0000 1.30 +++ wxMaxima.spec 27 Jul 2009 07:31:02 -0000 1.31 @@ -4,7 +4,7 @@ Summary: Graphical user interface for Maxima Name: wxMaxima Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Engineering @@ -105,6 +105,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Rex Dieter - 0.8.2-3 - Requires: maxima >= 5.18 From jkeating at fedoraproject.org Mon Jul 27 07:31:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:31:16 +0000 (UTC) Subject: rpms/wxPython/devel wxPython.spec,1.34,1.35 Message-ID: <20090727073116.CAED011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxPython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19824 Modified Files: wxPython.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxPython.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxPython/devel/wxPython.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- wxPython.spec 10 Apr 2009 21:20:14 -0000 1.34 +++ wxPython.spec 27 Jul 2009 07:31:16 -0000 1.35 @@ -5,7 +5,7 @@ Name: wxPython Version: 2.8.9.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GUI toolkit for the Python programming language @@ -121,6 +121,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Dan Hor?k - 2.8.9.2-2 - add patch to fix compile failure for contrib/gizmos/_treelist.i From jkeating at fedoraproject.org Mon Jul 27 07:31:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:31:32 +0000 (UTC) Subject: rpms/wxapt/devel wxapt.spec,1.3,1.4 Message-ID: <20090727073132.D898511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxapt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19966 Modified Files: wxapt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxapt.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxapt/devel/wxapt.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- wxapt.spec 26 Feb 2009 07:28:24 -0000 1.3 +++ wxapt.spec 27 Jul 2009 07:31:32 -0000 1.4 @@ -1,6 +1,6 @@ Name: wxapt Version: 1.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Console application for decoding and saving weather images Group: Applications/Communications @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:31:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:31:48 +0000 (UTC) Subject: rpms/wxdfast/devel wxdfast.spec,1.4,1.5 Message-ID: <20090727073148.E88F911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wxdfast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20116 Modified Files: wxdfast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wxdfast.spec =================================================================== RCS file: /cvs/pkgs/rpms/wxdfast/devel/wxdfast.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- wxdfast.spec 5 Apr 2009 11:27:17 -0000 1.4 +++ wxdfast.spec 27 Jul 2009 07:31:48 -0000 1.5 @@ -1,6 +1,6 @@ Name: wxdfast Version: 0.6.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Multi-threaded download manager Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 05 2009 Adel Gadllah 0.6.0-6 - Rebuild to fix broken symbols (RH #490470) From jkeating at fedoraproject.org Mon Jul 27 07:32:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:32:04 +0000 (UTC) Subject: rpms/wyrd/devel wyrd.spec,1.12,1.13 Message-ID: <20090727073204.8E49B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/wyrd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20251 Modified Files: wyrd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: wyrd.spec =================================================================== RCS file: /cvs/pkgs/rpms/wyrd/devel/wyrd.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- wyrd.spec 16 Apr 2009 09:26:15 -0000 1.12 +++ wyrd.spec 27 Jul 2009 07:32:04 -0000 1.13 @@ -1,6 +1,6 @@ Name: wyrd Version: 1.4.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A ncurses frontend for the calendar application remind Group: Applications/Productivity @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 S390x secondary arch maintainer - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs (added sparc64 per request from the sparc maintainer) From jkeating at fedoraproject.org Mon Jul 27 07:32:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:32:19 +0000 (UTC) Subject: rpms/x11-ssh-askpass/devel x11-ssh-askpass.spec,1.7,1.8 Message-ID: <20090727073219.280DA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/x11-ssh-askpass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20398 Modified Files: x11-ssh-askpass.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: x11-ssh-askpass.spec =================================================================== RCS file: /cvs/pkgs/rpms/x11-ssh-askpass/devel/x11-ssh-askpass.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- x11-ssh-askpass.spec 30 May 2009 15:59:00 -0000 1.7 +++ x11-ssh-askpass.spec 27 Jul 2009 07:32:19 -0000 1.8 @@ -5,7 +5,7 @@ Name: x11-ssh-askpass Version: 1.2.4.1 -Release: %release_func 6 +Release: %release_func 7 Summary: A passphrase dialog for X and not only for OpenSSH Group: Applications/System @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.4.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 30 2009 Enrico Scholz - 1.2.4.1-6 - use lower-cased name for profile files and simplified them From jkeating at fedoraproject.org Mon Jul 27 07:32:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:32:32 +0000 (UTC) Subject: rpms/x2vnc/devel x2vnc.spec,1.8,1.9 Message-ID: <20090727073232.B4C6D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/x2vnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20540 Modified Files: x2vnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: x2vnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/x2vnc/devel/x2vnc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- x2vnc.spec 26 Feb 2009 07:32:14 -0000 1.8 +++ x2vnc.spec 27 Jul 2009 07:32:32 -0000 1.9 @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:32:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:32:44 +0000 (UTC) Subject: rpms/x3270/devel x3270.spec,1.33,1.34 Message-ID: <20090727073244.C213A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/x3270/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20663 Modified Files: x3270.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: x3270.spec =================================================================== RCS file: /cvs/pkgs/rpms/x3270/devel/x3270.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- x3270.spec 26 Feb 2009 07:33:15 -0000 1.33 +++ x3270.spec 27 Jul 2009 07:32:44 -0000 1.34 @@ -8,7 +8,7 @@ Summary: An X Window System based IBM 3278/3279 terminal emulator Name: x3270 Version: 3.3.6 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: Applications/Internet URL: http://www.geocities.com/SiliconValley/Peaks/7814 @@ -195,6 +195,9 @@ fi %{_mandir}/man1/c3270* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.3.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.3.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:32:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:32:59 +0000 (UTC) Subject: rpms/x86info/devel x86info.spec,1.42,1.43 Message-ID: <20090727073259.CB21811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/x86info/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20782 Modified Files: x86info.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: x86info.spec =================================================================== RCS file: /cvs/pkgs/rpms/x86info/devel/x86info.spec,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- x86info.spec 14 Jul 2009 13:47:08 -0000 1.42 +++ x86info.spec 27 Jul 2009 07:32:59 -0000 1.43 @@ -1,7 +1,7 @@ Summary: x86 processor information tool. Name: x86info Version: 1.24 -Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist} +Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})%{?dist}.1 Epoch: 1 Group: System Environment/Base License: GPLv2+ @@ -47,6 +47,9 @@ rm -rf %{buildroot} %attr(0644,root,root) %{_mandir}/*/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.24-1.42.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Adam Jackson - Fix parallel build. From jkeating at fedoraproject.org Mon Jul 27 07:33:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:33:15 +0000 (UTC) Subject: rpms/xa/devel xa.spec,1.1,1.2 Message-ID: <20090727073315.E070D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20969 Modified Files: xa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xa.spec =================================================================== RCS file: /cvs/pkgs/rpms/xa/devel/xa.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xa.spec 14 Apr 2009 16:26:38 -0000 1.1 +++ xa.spec 27 Jul 2009 07:33:15 -0000 1.2 @@ -1,6 +1,6 @@ Name: xa Version: 2.3.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: 6502/65816 cross-assembler Group: Development/Tools @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Dan Hor?k - 2.3.5-3 - move the INSTALL override to "make install" - comment the patches From jkeating at fedoraproject.org Mon Jul 27 07:33:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:33:30 +0000 (UTC) Subject: rpms/xalan-c/devel xalan-c.spec,1.4,1.5 Message-ID: <20090727073330.D800711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xalan-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21141 Modified Files: xalan-c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xalan-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xalan-c/devel/xalan-c.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xalan-c.spec 26 Feb 2009 07:35:13 -0000 1.4 +++ xalan-c.spec 27 Jul 2009 07:33:30 -0000 1.5 @@ -1,6 +1,6 @@ Name: xalan-c Version: 1.10.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Xalan XSLT processor for C Group: System Environment/Libraries @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.10.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.10.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:33:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:33:42 +0000 (UTC) Subject: rpms/xalan-j2/devel xalan-j2.spec,1.60,1.61 Message-ID: <20090727073342.61E8F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xalan-j2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21302 Modified Files: xalan-j2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xalan-j2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xalan-j2/devel/xalan-j2.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- xalan-j2.spec 26 Feb 2009 07:36:11 -0000 1.60 +++ xalan-j2.spec 27 Jul 2009 07:33:42 -0000 1.61 @@ -37,7 +37,7 @@ Name: xalan-j2 Version: 2.7.0 -Release: 8.5%{?dist} +Release: 9.5%{?dist} Epoch: 0 Summary: Java XSLT processor # samples/servlet/ApplyXSLTException.java is ASL 1.1 @@ -351,6 +351,9 @@ fi %endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:2.7.0-9.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0:2.7.0-8.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:33:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:33:59 +0000 (UTC) Subject: rpms/xapian-bindings/devel xapian-bindings.spec,1.21,1.22 Message-ID: <20090727073359.81FD811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xapian-bindings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21458 Modified Files: xapian-bindings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xapian-bindings.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-bindings/devel/xapian-bindings.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xapian-bindings.spec 5 Jun 2009 17:36:41 -0000 1.21 +++ xapian-bindings.spec 27 Jul 2009 07:33:59 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Bindings for the Xapian Probabilistic Information Retrieval Library Name: xapian-bindings Version: 1.0.13 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Libraries URL: http://www.xapian.org/ @@ -77,6 +77,9 @@ rm -rf %{buildroot}%{buildroot}/usr/shar %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Peter Robinson 1.0.13.1 - Update to 1.0.13 From jkeating at fedoraproject.org Mon Jul 27 07:34:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:34:15 +0000 (UTC) Subject: rpms/xapian-core/devel xapian-core.spec,1.23,1.24 Message-ID: <20090727073415.85FAA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xapian-core/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21665 Modified Files: xapian-core.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xapian-core.spec =================================================================== RCS file: /cvs/pkgs/rpms/xapian-core/devel/xapian-core.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xapian-core.spec 5 Jun 2009 17:35:30 -0000 1.23 +++ xapian-core.spec 27 Jul 2009 07:34:15 -0000 1.24 @@ -1,7 +1,7 @@ Summary: The Xapian Probabilistic Information Retrieval Library Name: xapian-core Version: 1.0.13 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Databases URL: http://www.xapian.org/ @@ -122,6 +122,9 @@ rm -rf %{buildroot} %{_mandir}/man1/xapian-config.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 5 2009 Peter Robinson - 1.0.13-1 - Update to 1.0.13 From jkeating at fedoraproject.org Mon Jul 27 07:34:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:34:27 +0000 (UTC) Subject: rpms/xar/devel xar.spec,1.10,1.11 Message-ID: <20090727073427.7D44D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21792 Modified Files: xar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xar.spec =================================================================== RCS file: /cvs/pkgs/rpms/xar/devel/xar.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xar.spec 26 Feb 2009 07:40:02 -0000 1.10 +++ xar.spec 27 Jul 2009 07:34:27 -0000 1.11 @@ -1,7 +1,7 @@ Summary: The eXtensible ARchiver Name: xar Version: 1.5.2 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: Applications/Archiving URL: http://code.google.com/p/xar/ @@ -73,6 +73,9 @@ Development files for the eXtensible ARc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:34:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:34:40 +0000 (UTC) Subject: rpms/xarchiver/devel xarchiver.spec,1.16,1.17 Message-ID: <20090727073440.1164011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xarchiver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21965 Modified Files: xarchiver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xarchiver.spec =================================================================== RCS file: /cvs/pkgs/rpms/xarchiver/devel/xarchiver.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xarchiver.spec 17 Apr 2009 19:05:19 -0000 1.16 +++ xarchiver.spec 27 Jul 2009 07:34:39 -0000 1.17 @@ -1,6 +1,6 @@ Name: xarchiver Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Archive manager for Xfce Group: Applications/Archiving @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 22 2009 Christoph Wickert - 0.5.2-4 - Gui fixes (#491115) From jkeating at fedoraproject.org Mon Jul 27 07:34:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:34:50 +0000 (UTC) Subject: rpms/xarchon/devel xarchon.spec,1.8,1.9 Message-ID: <20090727073450.C815A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xarchon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22082 Modified Files: xarchon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xarchon.spec =================================================================== RCS file: /cvs/pkgs/rpms/xarchon/devel/xarchon.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xarchon.spec 18 May 2009 08:55:56 -0000 1.8 +++ xarchon.spec 27 Jul 2009 07:34:50 -0000 1.9 @@ -1,6 +1,6 @@ Name: xarchon Version: 0.50 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Arcade board game Group: Amusements/Games License: GPL+ @@ -76,6 +76,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.50-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede 0.50-9 - Update description for new trademark guidelines From jkeating at fedoraproject.org Mon Jul 27 07:35:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:35:07 +0000 (UTC) Subject: rpms/xastir/devel xastir.spec,1.19,1.20 Message-ID: <20090727073507.A3BC611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xastir/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22206 Modified Files: xastir.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xastir.spec =================================================================== RCS file: /cvs/pkgs/rpms/xastir/devel/xastir.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xastir.spec 16 Jun 2009 18:48:54 -0000 1.19 +++ xastir.spec 27 Jul 2009 07:35:06 -0000 1.20 @@ -2,7 +2,7 @@ Summary: Amateur Station Tracking and Re Name: xastir Epoch: 1 Version: 1.9.4 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ Group: Applications/Internet Source0: http://downloads.sourceforge.net/xastir/xastir-%{version}.tar.gz @@ -84,6 +84,9 @@ rm -rf %{buildroot} %doc README.MAPS README.win32 UPGRADE %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.9.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Lucian Langa - 1:1.9.4-8 - rebuilt against newer IM From jkeating at fedoraproject.org Mon Jul 27 07:35:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:35:20 +0000 (UTC) Subject: rpms/xautolock/devel xautolock.spec,1.4,1.5 Message-ID: <20090727073520.B940111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xautolock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22362 Modified Files: xautolock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xautolock.spec =================================================================== RCS file: /cvs/pkgs/rpms/xautolock/devel/xautolock.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xautolock.spec 26 Feb 2009 07:44:00 -0000 1.4 +++ xautolock.spec 27 Jul 2009 07:35:20 -0000 1.5 @@ -1,6 +1,6 @@ Name: xautolock Version: 2.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Launches a program when your X session has been idle Group: User Interface/X @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:35:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:35:33 +0000 (UTC) Subject: rpms/xawtv/devel xawtv.spec,1.17,1.18 Message-ID: <20090727073533.AFCBC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xawtv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22502 Modified Files: xawtv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xawtv.spec =================================================================== RCS file: /cvs/pkgs/rpms/xawtv/devel/xawtv.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xawtv.spec 7 May 2009 12:12:20 -0000 1.17 +++ xawtv.spec 27 Jul 2009 07:35:33 -0000 1.18 @@ -3,7 +3,7 @@ Summary: TV applications for video4linux compliant devices Name: xawtv Version: 3.95 -Release: 11%{?dist}.1 +Release: 12%{?dist}.1 Group: Applications/Multimedia License: GPLv2+ URL: http://bytesex.org/xawtv/ @@ -164,6 +164,9 @@ rm -fr $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.95-12.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 07 2009 Karsten Hopp 3.95-11.1 - we have no libdv on mainframe, don't require that on s390(x) From jkeating at fedoraproject.org Mon Jul 27 07:35:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:35:49 +0000 (UTC) Subject: rpms/xbacklight/devel xbacklight.spec,1.3,1.4 Message-ID: <20090727073549.2DF0211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbacklight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22655 Modified Files: xbacklight.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbacklight.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbacklight/devel/xbacklight.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xbacklight.spec 26 Feb 2009 07:46:14 -0000 1.3 +++ xbacklight.spec 27 Jul 2009 07:35:48 -0000 1.4 @@ -1,6 +1,6 @@ Name: xbacklight Version: 1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Adjust backlight brightness using RandR Group: User Interface/X Hardware Support @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:36:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:36:07 +0000 (UTC) Subject: rpms/xbae/devel xbae.spec,1.12,1.13 Message-ID: <20090727073607.1822B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbae/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22804 Modified Files: xbae.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbae.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbae/devel/xbae.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xbae.spec 26 Feb 2009 07:47:13 -0000 1.12 +++ xbae.spec 27 Jul 2009 07:36:06 -0000 1.13 @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.60.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.60.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:36:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:36:21 +0000 (UTC) Subject: rpms/xbase/devel xbase.spec,1.13,1.14 Message-ID: <20090727073621.1495B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbase/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22966 Modified Files: xbase.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbase.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbase/devel/xbase.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xbase.spec 26 Feb 2009 07:48:09 -0000 1.13 +++ xbase.spec 27 Jul 2009 07:36:20 -0000 1.14 @@ -1,7 +1,7 @@ Name: xbase Summary: XBase compatible database library Version: 2.0.0 -Release: 14%{?dist} +Release: 15%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://linux.techass.com/projects/xdb/ @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/dbfutil1 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:15:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:15:32 +0000 (UTC) Subject: rpms/whysynth-dssi/devel whysynth-dssi.spec,1.8,1.9 Message-ID: <20090727071532.A886711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/whysynth-dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10906 Modified Files: whysynth-dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: whysynth-dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/whysynth-dssi/devel/whysynth-dssi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- whysynth-dssi.spec 30 May 2009 05:36:10 -0000 1.8 +++ whysynth-dssi.spec 27 Jul 2009 07:15:32 -0000 1.9 @@ -1,7 +1,7 @@ Summary: DSSI software synthesizer plugin Name: whysynth-dssi Version: 20090403 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.smbolton.com/whysynth.html Source0: http://www.smbolton.com/whysynth/whysynth-%{version}.tar.bz2 Source1: whysynth-48.png @@ -76,6 +76,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/48x48/apps/whysynth.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20090403-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Orcan Ogetbil - 20090403-1 - Update to 20090403 From jkeating at fedoraproject.org Mon Jul 27 07:36:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:36:39 +0000 (UTC) Subject: rpms/xbindkeys/devel xbindkeys.spec,1.17,1.18 Message-ID: <20090727073639.2942611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbindkeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23109 Modified Files: xbindkeys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbindkeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbindkeys/devel/xbindkeys.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xbindkeys.spec 26 Feb 2009 07:49:04 -0000 1.17 +++ xbindkeys.spec 27 Jul 2009 07:36:38 -0000 1.18 @@ -1,6 +1,6 @@ Name: xbindkeys Version: 1.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Binds keys or mouse buttons to shell commands under X. License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644, root, root) %{_mandir}/man?/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:36:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:36:52 +0000 (UTC) Subject: rpms/xbiso/devel xbiso.spec,1.5,1.6 Message-ID: <20090727073652.DE20911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbiso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23257 Modified Files: xbiso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbiso.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbiso/devel/xbiso.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xbiso.spec 26 Feb 2009 07:50:04 -0000 1.5 +++ xbiso.spec 27 Jul 2009 07:36:52 -0000 1.6 @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: ISO extraction utility for xdvdfs images Group: Applications/Archiving License: GPLv2+ @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xbiso %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:37:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:37:07 +0000 (UTC) Subject: rpms/xblast/devel xblast.spec,1.6,1.7 Message-ID: <20090727073707.1524011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xblast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23407 Modified Files: xblast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xblast.spec =================================================================== RCS file: /cvs/pkgs/rpms/xblast/devel/xblast.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xblast.spec 26 Feb 2009 07:51:09 -0000 1.6 +++ xblast.spec 27 Jul 2009 07:37:06 -0000 1.7 @@ -1,6 +1,6 @@ Name: xblast Version: 2.10.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Lay bombs and Blast the other players of the field (SDL version) Group: Amusements/Games License: GPLv2+ @@ -130,6 +130,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.10.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.10.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:37:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:37:28 +0000 (UTC) Subject: rpms/xblast-data/devel xblast-data.spec,1.4,1.5 Message-ID: <20090727073728.6297111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xblast-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23595 Modified Files: xblast-data.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xblast-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/xblast-data/devel/xblast-data.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xblast-data.spec 26 Feb 2009 07:52:11 -0000 1.4 +++ xblast-data.spec 27 Jul 2009 07:37:28 -0000 1.5 @@ -1,6 +1,6 @@ Name: xblast-data Version: 2.10.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Data files for the game xblast Group: Amusements/Games License: GPLv2+ @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.10.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.10.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:37:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:37:48 +0000 (UTC) Subject: rpms/xboard/devel xboard.spec,1.12,1.13 Message-ID: <20090727073748.DB26911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23740 Modified Files: xboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/xboard/devel/xboard.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xboard.spec 1 Mar 2009 15:03:46 -0000 1.12 +++ xboard.spec 27 Jul 2009 07:37:48 -0000 1.13 @@ -1,7 +1,7 @@ Summary: An X Window System graphical chessboard Name: xboard Version: 4.2.7 -Release: 19%{?dist} +Release: 20%{?dist} Group: Amusements/Games URL: http://www.tim-mann.org/xboard.html Source: ftp://ftp.gnu.org/pub/gnu/xboard/xboard-%{version}.tar.gz @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.2.7-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck 4.2.7-19 - Solve the ppc64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Mon Jul 27 07:38:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:38:06 +0000 (UTC) Subject: rpms/xbsql/devel xbsql.spec,1.9,1.10 Message-ID: <20090727073806.5AF2811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xbsql/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23950 Modified Files: xbsql.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xbsql.spec =================================================================== RCS file: /cvs/pkgs/rpms/xbsql/devel/xbsql.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xbsql.spec 26 Feb 2009 07:54:52 -0000 1.9 +++ xbsql.spec 27 Jul 2009 07:38:06 -0000 1.10 @@ -1,7 +1,7 @@ Name: xbsql Summary: A SQL wrapper for xbase Version: 0.11 -Release: 12%{?dist} +Release: 13%{?dist} Group: Development/Libraries License: LGPLv2+ URL: http://www.quaking.demon.co.uk/xbsql/ @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.a %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.11-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.11-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:38:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:38:20 +0000 (UTC) Subject: rpms/xca/devel xca.spec,1.27,1.28 Message-ID: <20090727073820.4F5C411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xca/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24115 Modified Files: xca.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xca.spec =================================================================== RCS file: /cvs/pkgs/rpms/xca/devel/xca.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xca.spec 5 Mar 2009 19:51:29 -0000 1.27 +++ xca.spec 27 Jul 2009 07:38:20 -0000 1.28 @@ -3,7 +3,7 @@ Summary: Graphical X.509 certificate management tool Name: xca Version: 0.6.4 -Release: %release_func 7 +Release: %release_func 8 License: BSD Group: Applications/Productivity @@ -130,6 +130,9 @@ gtk-update-icon-cache %_datadir/icons/hi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Caol?n McNamara - 0.6.4-7 - include stdint.h for uint32_t From jkeating at fedoraproject.org Mon Jul 27 07:39:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:39:25 +0000 (UTC) Subject: rpms/xcdroast/devel xcdroast.spec,1.35,1.36 Message-ID: <20090727073925.56A6E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcdroast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24710 Modified Files: xcdroast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcdroast.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcdroast/devel/xcdroast.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- xcdroast.spec 26 Feb 2009 07:59:38 -0000 1.35 +++ xcdroast.spec 27 Jul 2009 07:39:24 -0000 1.36 @@ -2,7 +2,7 @@ Summary: An X Window System based tool for creating CDs Name: xcdroast Version: 0.98 -Release: 0.2.%{?alphatag}%{?dist} +Release: 0.3.%{?alphatag}%{?dist} Epoch: 1 License: LGPLv2+ Group: Applications/Multimedia @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.98-0.3.alpha16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.98-0.2.alpha16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:39:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:39:11 +0000 (UTC) Subject: rpms/xcb-util/devel xcb-util.spec,1.9,1.10 Message-ID: <20090727073911.1CFBC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcb-util/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24517 Modified Files: xcb-util.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcb-util.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-util/devel/xcb-util.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xcb-util.spec 13 Jul 2009 19:23:00 -0000 1.9 +++ xcb-util.spec 27 Jul 2009 07:39:10 -0000 1.10 @@ -1,6 +1,6 @@ Name: xcb-util Version: 0.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convenience libraries sitting on top of libxcb Group: System Environment/Libraries @@ -86,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Adam Jackson 0.3.5-1 - xcb-util 0.3.5 From jkeating at fedoraproject.org Mon Jul 27 07:39:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:39:41 +0000 (UTC) Subject: rpms/xchat/devel xchat.spec,1.104,1.105 Message-ID: <20090727073941.05AC611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xchat/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24877 Modified Files: xchat.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xchat.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchat/devel/xchat.spec,v retrieving revision 1.104 retrieving revision 1.105 diff -u -p -r1.104 -r1.105 --- xchat.spec 18 Jul 2009 20:11:57 -0000 1.104 +++ xchat.spec 27 Jul 2009 07:39:40 -0000 1.105 @@ -4,7 +4,7 @@ Summary: A popular and easy to use graphical IRC (chat) client Name: xchat Version: 2.8.6 -Release: 10%{?dist} +Release: 11%{?dist} Epoch: 1 Group: Applications/Internet License: GPLv2+ @@ -167,6 +167,9 @@ fi %{_libdir}/xchat/plugins/tcl.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:2.8.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Kevin Kofler - 1:2.8.6-10 - Fixed patch for the "C_onnect" issue (#512034, Edward Sheldrake) From jkeating at fedoraproject.org Mon Jul 27 07:39:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:39:55 +0000 (UTC) Subject: rpms/xchat-gnome/devel xchat-gnome.spec,1.63,1.64 Message-ID: <20090727073955.5DCE411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xchat-gnome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25006 Modified Files: xchat-gnome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xchat-gnome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchat-gnome/devel/xchat-gnome.spec,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- xchat-gnome.spec 20 Jun 2009 00:04:00 -0000 1.63 +++ xchat-gnome.spec 27 Jul 2009 07:39:55 -0000 1.64 @@ -1,6 +1,6 @@ Name: xchat-gnome Version: 0.26.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GNOME front-end to xchat Group: Applications/Internet @@ -140,6 +140,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.26.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 Brian Pepple - 0.26.1-3 - Fix topic patch. From jkeating at fedoraproject.org Mon Jul 27 07:40:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:40:09 +0000 (UTC) Subject: rpms/xchat-ruby/devel xchat-ruby.spec,1.3,1.4 Message-ID: <20090727074009.71C8E11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xchat-ruby/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25176 Modified Files: xchat-ruby.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xchat-ruby.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchat-ruby/devel/xchat-ruby.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xchat-ruby.spec 26 Feb 2009 08:05:26 -0000 1.3 +++ xchat-ruby.spec 27 Jul 2009 07:40:09 -0000 1.4 @@ -1,6 +1,6 @@ Name: xchat-ruby Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An X-Chat plugin providing scripting functionality with Ruby Group: Applications/Internet @@ -69,6 +69,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:40:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:40:27 +0000 (UTC) Subject: rpms/xchm/devel xchm.spec,1.17,1.18 Message-ID: <20090727074027.E50F411C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xchm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25307 Modified Files: xchm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xchm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xchm/devel/xchm.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xchm.spec 17 Jul 2009 00:16:15 -0000 1.17 +++ xchm.spec 27 Jul 2009 07:40:27 -0000 1.18 @@ -1,7 +1,7 @@ Summary: A GUI front-end to CHMlib Name: xchm Version: 1.17 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/Publishing Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -66,6 +66,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/applications/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 Manuel "lonely wolf" Wolfshant - 1.17-1 - Version update. From jkeating at fedoraproject.org Mon Jul 27 07:41:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:41:30 +0000 (UTC) Subject: rpms/xcompmgr/devel xcompmgr.spec,1.8,1.9 Message-ID: <20090727074130.3779311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcompmgr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25895 Modified Files: xcompmgr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcompmgr.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcompmgr/devel/xcompmgr.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xcompmgr.spec 26 Feb 2009 08:09:13 -0000 1.8 +++ xcompmgr.spec 27 Jul 2009 07:41:29 -0000 1.9 @@ -1,7 +1,7 @@ Summary: X11 composite manager Name: xcompmgr Version: 1.1.4 -Release: 2%{?dist} +Release: 3%{?dist} License: Copyright only Group: User Interface/X URL: http://xapps.freedesktop.org @@ -40,6 +40,9 @@ rm -rf %{buildroot} %{_mandir}/man1/xcompmgr.1.gz %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:41:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:41:44 +0000 (UTC) Subject: rpms/xconvers/devel xconvers.spec,1.2,1.3 Message-ID: <20090727074144.7670211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xconvers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26041 Modified Files: xconvers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xconvers.spec =================================================================== RCS file: /cvs/pkgs/rpms/xconvers/devel/xconvers.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xconvers.spec 26 Feb 2009 08:10:16 -0000 1.2 +++ xconvers.spec 27 Jul 2009 07:41:44 -0000 1.3 @@ -1,6 +1,6 @@ Name: xconvers Version: 0.8.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Ham radio convers client similar to IRC for X/GTK License: GPLv2+ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:41:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:41:58 +0000 (UTC) Subject: rpms/xcowsay/devel xcowsay.spec,1.1,1.2 Message-ID: <20090727074158.3CF9D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcowsay/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26185 Modified Files: xcowsay.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcowsay.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcowsay/devel/xcowsay.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xcowsay.spec 4 May 2009 17:07:25 -0000 1.1 +++ xcowsay.spec 27 Jul 2009 07:41:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: xcowsay Version: 1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Displays a cute cow and message on your desktop Group: Amusements/Games @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 28 2009 Fabien Georget 1.1-1 - change license to GPLv3+ - add /usr/share/xcowsay/ in files From jkeating at fedoraproject.org Mon Jul 27 07:42:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:42:12 +0000 (UTC) Subject: rpms/xdaliclock/devel xdaliclock.spec,1.7,1.8 Message-ID: <20090727074212.7F3BA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdaliclock/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26351 Modified Files: xdaliclock.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdaliclock.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdaliclock/devel/xdaliclock.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xdaliclock.spec 26 Feb 2009 08:11:15 -0000 1.7 +++ xdaliclock.spec 27 Jul 2009 07:42:12 -0000 1.8 @@ -1,7 +1,7 @@ Summary: A clock for the X Window System Name: xdaliclock Version: 2.25 -Release: 2%{?dist} +Release: 3%{?dist} Group: Amusements/Graphics License: BSD URL: http://www.jwz.org/xdaliclock/ @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:42:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:42:24 +0000 (UTC) Subject: rpms/xdelta/devel xdelta.spec,1.29,1.30 Message-ID: <20090727074224.D63C811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdelta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26473 Modified Files: xdelta.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdelta.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdelta/devel/xdelta.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xdelta.spec 26 Feb 2009 08:12:16 -0000 1.29 +++ xdelta.spec 27 Jul 2009 07:42:24 -0000 1.30 @@ -1,7 +1,7 @@ Summary: A binary file delta generator and an RCS replacement library. Name: xdelta Version: 1.1.4 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Development/Tools Source: http://prdownloads.sourceforge.net/xdelta/xdelta-%{version}.tar.gz @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:42:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:42:39 +0000 (UTC) Subject: rpms/xdemorse/devel xdemorse.spec,1.6,1.7 Message-ID: <20090727074239.BDFB911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdemorse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26649 Modified Files: xdemorse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdemorse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdemorse/devel/xdemorse.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xdemorse.spec 26 Feb 2009 20:15:11 -0000 1.6 +++ xdemorse.spec 27 Jul 2009 07:42:39 -0000 1.7 @@ -1,6 +1,6 @@ Name: xdemorse Version: 1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK based application for decoding and displaying Morse code signals Group: Applications/Communications @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Lucian Langa - 1.3-3 - upstream modified current release source From jkeating at fedoraproject.org Mon Jul 27 07:42:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:42:53 +0000 (UTC) Subject: rpms/xdesktopwaves/devel xdesktopwaves.spec,1.9,1.10 Message-ID: <20090727074253.8D18E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdesktopwaves/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26817 Modified Files: xdesktopwaves.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdesktopwaves.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdesktopwaves/devel/xdesktopwaves.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xdesktopwaves.spec 26 Feb 2009 08:14:14 -0000 1.9 +++ xdesktopwaves.spec 27 Jul 2009 07:42:53 -0000 1.10 @@ -1,6 +1,6 @@ Name: xdesktopwaves Version: 1.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Simulation of water waves on the X Window System desktop License: GPLv2+ @@ -61,6 +61,9 @@ desktop-file-install --vendor fedora --d %{_datadir}/pixmaps/%{name}.xpm %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:43:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:43:09 +0000 (UTC) Subject: rpms/xdg-user-dirs/devel xdg-user-dirs.spec,1.11,1.12 Message-ID: <20090727074309.0CA1711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdg-user-dirs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26981 Modified Files: xdg-user-dirs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdg-user-dirs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdg-user-dirs/devel/xdg-user-dirs.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xdg-user-dirs.spec 26 Feb 2009 08:15:13 -0000 1.11 +++ xdg-user-dirs.spec 27 Jul 2009 07:43:08 -0000 1.12 @@ -1,6 +1,6 @@ Name: xdg-user-dirs Version: 0.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Handles user special directories Group: User Interface/Desktops @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_sysconfdir}/X11/xinit/xinitrc.d/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:43:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:43:23 +0000 (UTC) Subject: rpms/xdg-user-dirs-gtk/devel xdg-user-dirs-gtk.spec,1.13,1.14 Message-ID: <20090727074323.434AC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdg-user-dirs-gtk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27176 Modified Files: xdg-user-dirs-gtk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdg-user-dirs-gtk.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdg-user-dirs-gtk/devel/xdg-user-dirs-gtk.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xdg-user-dirs-gtk.spec 26 Feb 2009 08:16:18 -0000 1.13 +++ xdg-user-dirs-gtk.spec 27 Jul 2009 07:43:23 -0000 1.14 @@ -1,6 +1,6 @@ Name: xdg-user-dirs-gtk Version: 0.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Gnome integration of special directories Group: User Interface/Desktops @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/xdg/autostart/user-dirs-update-gtk.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:43:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:43:40 +0000 (UTC) Subject: rpms/xdg-utils/devel xdg-utils.spec,1.20,1.21 Message-ID: <20090727074340.48B2611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdg-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27416 Modified Files: xdg-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdg-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdg-utils/devel/xdg-utils.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xdg-utils.spec 9 Apr 2009 18:18:59 -0000 1.20 +++ xdg-utils.spec 27 Jul 2009 07:43:40 -0000 1.21 @@ -4,7 +4,7 @@ Summary: Basic desktop integration functions Name: xdg-utils Version: 1.0.2 -Release: 8.%{cvs}%{?dist} +Release: 9.%{cvs}%{?dist} URL: http://portland.freedesktop.org/ %if 0%{?cvs:1} @@ -106,6 +106,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.2-9.20081121cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 09 2009 Rex Dieter - 1.0.2-8.20081121cvs - revert. kfmclient openURL is largely useless From jkeating at fedoraproject.org Mon Jul 27 07:43:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:43:53 +0000 (UTC) Subject: rpms/xdialog/devel xdialog.spec,1.2,1.3 Message-ID: <20090727074353.1E15A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdialog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27540 Modified Files: xdialog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdialog.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdialog/devel/xdialog.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xdialog.spec 26 Feb 2009 08:18:12 -0000 1.2 +++ xdialog.spec 27 Jul 2009 07:43:52 -0000 1.3 @@ -3,7 +3,7 @@ Name: xdialog Summary: X11 drop in replacement for cdialog Version: 2.3.1 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: Applications/System URL: http://xdialog.free.fr @@ -75,6 +75,9 @@ rm -rf %{buildroot} %exclude %{_docdir}/%{real_name}-%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.3.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:44:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:44:06 +0000 (UTC) Subject: rpms/xdms/devel xdms.spec,1.4,1.5 Message-ID: <20090727074406.8098E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27772 Modified Files: xdms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdms.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdms/devel/xdms.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xdms.spec 26 Feb 2009 08:19:14 -0000 1.4 +++ xdms.spec 27 Jul 2009 07:44:06 -0000 1.5 @@ -1,6 +1,6 @@ Name: xdms Version: 1.3.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Extracts Amiga DMS archives Group: Applications/Archiving License: Public Domain @@ -43,6 +43,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:44:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:44:24 +0000 (UTC) Subject: rpms/xdoclet/devel xdoclet.spec,1.34,1.35 Message-ID: <20090727074424.34DE411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdoclet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27983 Modified Files: xdoclet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdoclet.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdoclet/devel/xdoclet.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xdoclet.spec 26 Feb 2009 08:20:12 -0000 1.34 +++ xdoclet.spec 27 Jul 2009 07:44:23 -0000 1.35 @@ -47,7 +47,7 @@ Name: xdoclet Version: 1.2.3 -Release: 10.4%{?dist} +Release: 11.4%{?dist} Epoch: 0 Summary: XDoclet Attribute Orientated Programming Framework License: BSD @@ -322,6 +322,9 @@ fi %doc %{_docdir}/%{name}-%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.2.3-11.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.2.3-10.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:44:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:44:39 +0000 (UTC) Subject: rpms/xdotool/devel xdotool.spec,1.7,1.8 Message-ID: <20090727074439.E4DA211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdotool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28279 Modified Files: xdotool.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdotool.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdotool/devel/xdotool.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xdotool.spec 29 May 2009 14:15:00 -0000 1.7 +++ xdotool.spec 27 Jul 2009 07:44:39 -0000 1.8 @@ -1,6 +1,6 @@ Name: xdotool Version: 20090330 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fake keyboard/mouse input Group: User Interface/X @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20090330-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 28 2009 Sindre Pedersen Bj?rdal - 20090330-2 - New upstream release From mtasaka at fedoraproject.org Mon Jul 27 07:45:01 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Mon, 27 Jul 2009 07:45:01 +0000 (UTC) Subject: rpms/urlgfe/devel dead.package, NONE, 1.1 .cvsignore, 1.4, NONE Makefile, 1.1, NONE sources, 1.4, NONE urlgfe.spec, 1.11, NONE Message-ID: <20090727074501.3AA6811C00E8@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/urlgfe/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28773 Added Files: dead.package Removed Files: .cvsignore Makefile sources urlgfe.spec Log Message: Forgot to take orphan package process... --- NEW FILE dead.package --- 2009-07-27 Mamoru Tasaka Renamed to uget, which has been in Fedora since 2009-05-04 --- .cvsignore DELETED --- --- Makefile DELETED --- --- sources DELETED --- --- urlgfe.spec DELETED --- From jkeating at fedoraproject.org Mon Jul 27 07:44:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:44:52 +0000 (UTC) Subject: rpms/xdrawchem/devel xdrawchem.spec,1.14,1.15 Message-ID: <20090727074452.238D311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdrawchem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28574 Modified Files: xdrawchem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdrawchem.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdrawchem/devel/xdrawchem.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xdrawchem.spec 26 Feb 2009 08:22:07 -0000 1.14 +++ xdrawchem.spec 27 Jul 2009 07:44:51 -0000 1.15 @@ -1,6 +1,6 @@ Name: xdrawchem Version: 1.9.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: 2D chemical structures drawing tool Source: http://dl.sourceforge.net/sourceforge/xdrawchem/%{name}-%{version}.tar.gz Source1: %{name}.desktop @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/xdrawchem.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.9.9-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:45:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:45:05 +0000 (UTC) Subject: rpms/xdrfile/devel xdrfile.spec,1.1,1.2 Message-ID: <20090727074505.EA01C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdrfile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28933 Modified Files: xdrfile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdrfile.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdrfile/devel/xdrfile.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xdrfile.spec 15 Jun 2009 07:08:34 -0000 1.1 +++ xdrfile.spec 27 Jul 2009 07:45:05 -0000 1.2 @@ -1,6 +1,6 @@ Name: xdrfile Version: 1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A small C-library for reading and writing GROMACS trr and xtc files Group: Applications/Engineering License: LGPLv3+ @@ -62,6 +62,9 @@ rm -rf %{buildroot} %{_includedir}/%{name}/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Jussi Lehtola - 1.1-2 - Conserve timestamps during install, fix URL & Source0. From jkeating at fedoraproject.org Mon Jul 27 07:45:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:45:21 +0000 (UTC) Subject: rpms/xdvik/devel xdvik.spec,1.30,1.31 Message-ID: <20090727074521.346AC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdvik/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29229 Modified Files: xdvik.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdvik.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdvik/devel/xdvik.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xdvik.spec 12 Jul 2009 15:47:39 -0000 1.30 +++ xdvik.spec 27 Jul 2009 07:45:20 -0000 1.31 @@ -7,7 +7,7 @@ Summary: An X viewer for DVI files Name: xdvik Version: 22.84.14 -Release: 6%{?dist} +Release: 7%{?dist} Url: http://xdvi.sourceforge.net/ # encodings.c is GPLv2+ and LGPL and MIT # read-mapfile.c tfmload.c are from dvips @@ -245,6 +245,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 22.84.14-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jul 12 2009 Jonathan G. Underwood - 22.84.14-6 - Correct paths in xdvi-ptex.map to fix BZ 508429 (Yuki Watanabe) From jkeating at fedoraproject.org Mon Jul 27 07:45:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:45:37 +0000 (UTC) Subject: rpms/xdvipdfmx/devel xdvipdfmx.spec,1.2,1.3 Message-ID: <20090727074537.63C8911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdvipdfmx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29400 Modified Files: xdvipdfmx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdvipdfmx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdvipdfmx/devel/xdvipdfmx.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xdvipdfmx.spec 26 Feb 2009 08:24:07 -0000 1.2 +++ xdvipdfmx.spec 27 Jul 2009 07:45:37 -0000 1.3 @@ -1,7 +1,7 @@ Summary: An extended version of DVIPDFMx with support for XeTeX output Name: xdvipdfmx Version: 0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Applications/Publishing Source: http://scripts.sil.org/svn-view/xdvipdfmx/TAGS/xdvipdfmx-%{version}.tar.gz @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %doc README AUTHORS BUGS COPYING TODO doc/tug2003.pdf index.html *.css %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:45:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:45:50 +0000 (UTC) Subject: rpms/xdx/devel xdx.spec,1.3,1.4 Message-ID: <20090727074550.E5AE011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xdx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29570 Modified Files: xdx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xdx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xdx/devel/xdx.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xdx.spec 26 Feb 2009 08:25:05 -0000 1.3 +++ xdx.spec 27 Jul 2009 07:45:50 -0000 1.4 @@ -1,6 +1,6 @@ Name: xdx Version: 2.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: DX-cluster tcp/ip client for amateur radio Group: Applications/Communications @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:46:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:46:08 +0000 (UTC) Subject: rpms/xemacs/devel xemacs.spec,1.48,1.49 Message-ID: <20090727074608.3A84E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xemacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29735 Modified Files: xemacs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xemacs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xemacs/devel/xemacs.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- xemacs.spec 20 May 2009 21:10:39 -0000 1.48 +++ xemacs.spec 27 Jul 2009 07:46:08 -0000 1.49 @@ -20,7 +20,7 @@ Name: xemacs Version: 21.5.29 -Release: 1%{?snap:.%{snap}}%{?dist} +Release: 2%{?snap:.%{snap}}%{?dist} Summary: Different version of Emacs Group: Applications/Editors @@ -551,6 +551,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 21.5.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed May 20 2009 Ville Skytt? - 21.5.29-1 - Update to 21.5.29; gtk-gcc4, finder-lisp-dir, 3d-athena, autoconf262, doc-encodings, revert-modified, and xemacs-base-autoloads patches applied From jkeating at fedoraproject.org Mon Jul 27 07:46:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:46:21 +0000 (UTC) Subject: rpms/xemacs-packages-base/devel xemacs-packages-base.spec,1.6,1.7 Message-ID: <20090727074621.E3CFA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xemacs-packages-base/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29909 Modified Files: xemacs-packages-base.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xemacs-packages-base.spec =================================================================== RCS file: /cvs/pkgs/rpms/xemacs-packages-base/devel/xemacs-packages-base.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xemacs-packages-base.spec 6 Mar 2009 22:51:21 -0000 1.6 +++ xemacs-packages-base.spec 27 Jul 2009 07:46:21 -0000 1.7 @@ -3,7 +3,7 @@ Name: xemacs-packages-base Version: 20090217 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Base lisp packages for XEmacs Group: Applications/Editors @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20090217-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Ville Skytt? - 20090217-1 - Update to 2009-02-17. - Compress source tarball with lzma. From jkeating at fedoraproject.org Mon Jul 27 07:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:46:46 +0000 (UTC) Subject: rpms/xemacs-packages-extra/devel xemacs-packages-extra.spec, 1.9, 1.10 Message-ID: <20090727074646.83F0111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xemacs-packages-extra/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30132 Modified Files: xemacs-packages-extra.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xemacs-packages-extra.spec =================================================================== RCS file: /cvs/pkgs/rpms/xemacs-packages-extra/devel/xemacs-packages-extra.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xemacs-packages-extra.spec 6 Mar 2009 23:08:10 -0000 1.9 +++ xemacs-packages-extra.spec 27 Jul 2009 07:46:46 -0000 1.10 @@ -3,7 +3,7 @@ Name: xemacs-packages-extra Version: 20090217 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Collection of XEmacs lisp packages Group: Applications/Editors @@ -229,6 +229,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20090217-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 7 2009 Ville Skytt? - 20090217-1 - Update to 2009-02-17, several patches applied/superseded upstream. - Apply upstream patch to fix errors and obsolete code in VC menu. From jkeating at fedoraproject.org Mon Jul 27 07:47:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:47:01 +0000 (UTC) Subject: rpms/xen/devel xen.spec,1.238,1.239 Message-ID: <20090727074701.84A2C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30314 Modified Files: xen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xen.spec =================================================================== RCS file: /cvs/pkgs/rpms/xen/devel/xen.spec,v retrieving revision 1.238 retrieving revision 1.239 diff -u -p -r1.238 -r1.239 --- xen.spec 28 May 2009 08:03:37 -0000 1.238 +++ xen.spec 27 Jul 2009 07:47:01 -0000 1.239 @@ -6,7 +6,7 @@ Summary: Xen is a virtual machine monitor Name: xen Version: 3.4.0 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Libraries License: GPLv2+ and LGPLv2+ and BSD URL: http://xen.org/ @@ -461,6 +461,9 @@ rm -rf %{buildroot} %{_libdir}/*.a %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Gerd Hoffmann - 3.4.0-2 - rename info files to fix conflict with binutils. - add install-info calls for the doc subpackage. From jkeating at fedoraproject.org Mon Jul 27 07:47:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:47:14 +0000 (UTC) Subject: rpms/xenner/devel xenner.spec,1.41,1.42 Message-ID: <20090727074714.E3EA411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xenner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30430 Modified Files: xenner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xenner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xenner/devel/xenner.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- xenner.spec 29 May 2009 15:05:00 -0000 1.41 +++ xenner.spec 27 Jul 2009 07:47:14 -0000 1.42 @@ -1,7 +1,7 @@ Name: xenner License: GPLv2+ Version: 0.47 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Xen emulator for kvm Group: Applications/Emulators Source0: http://dl.bytesex.org/releases/%{name}/%{name}-%{version}.tar.gz @@ -56,6 +56,9 @@ fi rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.47-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Gerd Hoffmann - 0.47-1 - update to version 0.47 From jkeating at fedoraproject.org Mon Jul 27 07:47:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:47:26 +0000 (UTC) Subject: rpms/xenwatch/devel xenwatch.spec,1.6,1.7 Message-ID: <20090727074726.9770B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xenwatch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30538 Modified Files: xenwatch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xenwatch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xenwatch/devel/xenwatch.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xenwatch.spec 26 Feb 2009 08:31:37 -0000 1.6 +++ xenwatch.spec 27 Jul 2009 07:47:26 -0000 1.7 @@ -1,7 +1,7 @@ Name: xenwatch License: GPLv2+ Version: 0.5.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Virtualization utilities, mostly for Xen Group: Applications/Emulators Source: %{name}-%{version}.tar.gz @@ -61,6 +61,9 @@ done rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:47:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:47:40 +0000 (UTC) Subject: rpms/xerces-c/devel xerces-c.spec,1.5,1.6 Message-ID: <20090727074740.306F811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xerces-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30686 Modified Files: xerces-c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xerces-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xerces-c/devel/xerces-c.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xerces-c.spec 26 Feb 2009 08:32:42 -0000 1.5 +++ xerces-c.spec 27 Jul 2009 07:47:39 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Validating XML Parser Name: xerces-c Version: 2.8.0 -Release: 3%{?dist} +Release: 4%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://xml.apache.org/xerces-c/ @@ -124,6 +124,9 @@ export XERCESCROOT="$PWD" #%{_datadir}/%{name}/samples %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:47:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:47:50 +0000 (UTC) Subject: rpms/xerces-c27/devel xerces-c27.spec,1.3,1.4 Message-ID: <20090727074750.C7DF611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xerces-c27/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30822 Modified Files: xerces-c27.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xerces-c27.spec =================================================================== RCS file: /cvs/pkgs/rpms/xerces-c27/devel/xerces-c27.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xerces-c27.spec 26 Feb 2009 08:33:43 -0000 1.3 +++ xerces-c27.spec 27 Jul 2009 07:47:50 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Validating XML Parser Name: xerces-c27 Version: 2.7.0 -Release: 6%{?dist} +Release: 7%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://xml.apache.org/xerces-c/ @@ -125,6 +125,9 @@ mv $RPM_BUILD_ROOT%{_includedir}/xercesc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.7.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.7.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:48:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:48:08 +0000 (UTC) Subject: rpms/xerces-j2/devel xerces-j2.spec,1.52,1.53 Message-ID: <20090727074808.8681D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xerces-j2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30970 Modified Files: xerces-j2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xerces-j2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xerces-j2/devel/xerces-j2.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- xerces-j2.spec 26 Feb 2009 08:34:41 -0000 1.52 +++ xerces-j2.spec 27 Jul 2009 07:48:07 -0000 1.53 @@ -37,7 +37,7 @@ Name: xerces-j2 Version: 2.7.1 -Release: 11.3%{?dist} +Release: 12.3%{?dist} Epoch: 0 Summary: Java XML parser License: ASL 2.0 @@ -374,6 +374,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:2.7.1-12.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:2.7.1-11.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:48:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:48:20 +0000 (UTC) Subject: rpms/xesam-glib/devel xesam-glib.spec,1.3,1.4 Message-ID: <20090727074820.D02C311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xesam-glib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31138 Modified Files: xesam-glib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xesam-glib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xesam-glib/devel/xesam-glib.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xesam-glib.spec 26 Feb 2009 08:35:35 -0000 1.3 +++ xesam-glib.spec 27 Jul 2009 07:48:20 -0000 1.4 @@ -1,7 +1,7 @@ Summary: A GObject library for dealing with Xesam services Name: xesam-glib Version: 0.5.0 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Applications/System URL: http://xesam.org/people/kamstrup/xesam-glib/ @@ -67,6 +67,9 @@ rm -rf %{buildroot} %{_datadir}/gtk-doc/html/xesam-glib/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:48:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:48:33 +0000 (UTC) Subject: rpms/xesam-tools/devel xesam-tools.spec,1.3,1.4 Message-ID: <20090727074833.AB4C011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xesam-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31303 Modified Files: xesam-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xesam-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/xesam-tools/devel/xesam-tools.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xesam-tools.spec 26 Feb 2009 08:36:28 -0000 1.3 +++ xesam-tools.spec 27 Jul 2009 07:48:33 -0000 1.4 @@ -3,7 +3,7 @@ Summary: A toolkit for Xesam compliant services Name: xesam-tools Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPLv2 Group: Applications/System URL: http://xesam.org/main @@ -50,6 +50,9 @@ rm -rf %{buildroot} %{python_sitelib}/xesam*.egg-info %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:48:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:48:47 +0000 (UTC) Subject: rpms/xfbib/devel xfbib.spec,1.4,1.5 Message-ID: <20090727074847.303E411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfbib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31447 Modified Files: xfbib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfbib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfbib/devel/xfbib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xfbib.spec 26 Feb 2009 08:37:26 -0000 1.4 +++ xfbib.spec 27 Jul 2009 07:48:46 -0000 1.5 @@ -1,6 +1,6 @@ Name: xfbib Version: 0.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Lightweight BibTeX editor for the Xfce desktop environment Summary(de): Schlanker BibTeX Editor f?r die Xfce Desktop-Umgebung @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:49:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:49:01 +0000 (UTC) Subject: rpms/xfce-utils/devel xfce-utils.spec,1.30,1.31 Message-ID: <20090727074901.CF34A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31599 Modified Files: xfce-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce-utils/devel/xfce-utils.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xfce-utils.spec 20 Apr 2009 02:24:57 -0000 1.30 +++ xfce-utils.spec 27 Jul 2009 07:49:01 -0000 1.31 @@ -3,7 +3,7 @@ Summary: Utilities for the Xfce Desktop Environment Name: xfce-utils Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce-utils-%{version}.tar.bz2 @@ -128,6 +128,9 @@ fi %doc %{_datadir}/xfce4/doc/xfce-chunk.css %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Mon Jul 27 07:49:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:49:13 +0000 (UTC) Subject: rpms/xfce4-appfinder/devel xfce4-appfinder.spec,1.24,1.25 Message-ID: <20090727074913.C7FB611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-appfinder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31737 Modified Files: xfce4-appfinder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-appfinder.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-appfinder/devel/xfce4-appfinder.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xfce4-appfinder.spec 20 Apr 2009 02:20:16 -0000 1.24 +++ xfce4-appfinder.spec 27 Jul 2009 07:49:13 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Appfinder for the Xfce4 Desktop Environment Name: xfce4-appfinder Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-appfinder-%{version}.tar.bz2 @@ -55,6 +55,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/xfce4-appfinder.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From pkgdb at fedoraproject.org Mon Jul 27 07:49:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 07:49:10 +0000 Subject: [pkgdb] urlgfe ownership updated Message-ID: <20090727074910.EF98D10F890@bastion2.fedora.phx.redhat.com> Package urlgfe in Fedora devel was orphaned by mtasaka To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/urlgfe From jkeating at fedoraproject.org Mon Jul 27 07:49:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:49:26 +0000 (UTC) Subject: rpms/xfce4-battery-plugin/devel xfce4-battery-plugin.spec, 1.20, 1.21 Message-ID: <20090727074926.2521211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-battery-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31849 Modified Files: xfce4-battery-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-battery-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-battery-plugin/devel/xfce4-battery-plugin.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xfce4-battery-plugin.spec 19 Apr 2009 01:37:38 -0000 1.20 +++ xfce4-battery-plugin.spec 27 Jul 2009 07:49:25 -0000 1.21 @@ -1,6 +1,6 @@ Name: xfce4-battery-plugin Version: 0.5.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Battery monitor for the Xfce panel Group: User Interface/Desktops @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/scalable/devices/battery.svg %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:49:38 +0000 (UTC) Subject: rpms/xfce4-cddrive-plugin/devel xfce4-cddrive-plugin.spec,1.2,1.3 Message-ID: <20090727074938.0FBBD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-cddrive-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32013 Modified Files: xfce4-cddrive-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-cddrive-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-cddrive-plugin/devel/xfce4-cddrive-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xfce4-cddrive-plugin.spec 6 May 2009 23:16:50 -0000 1.2 +++ xfce4-cddrive-plugin.spec 27 Jul 2009 07:49:37 -0000 1.3 @@ -2,7 +2,7 @@ Name: xfce4-cddrive-plugin Version: 0.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Xfce panel plugin to open or close a CD-ROM drive tray Group: User Interface/Desktops @@ -50,5 +50,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 11 2008 Christoph Wickert - 0.0.1-1 - Initial Fedora package From jkeating at fedoraproject.org Mon Jul 27 07:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:49:51 +0000 (UTC) Subject: rpms/xfce4-cellmodem-plugin/devel xfce4-cellmodem-plugin.spec, 1.2, 1.3 Message-ID: <20090727074951.9BEE611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-cellmodem-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32147 Modified Files: xfce4-cellmodem-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-cellmodem-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-cellmodem-plugin/devel/xfce4-cellmodem-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xfce4-cellmodem-plugin.spec 6 May 2009 22:47:01 -0000 1.2 +++ xfce4-cellmodem-plugin.spec 27 Jul 2009 07:49:51 -0000 1.3 @@ -2,7 +2,7 @@ Name: xfce4-cellmodem-plugin Version: 0.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Cell Modem monitor plugin for the Xfce panel Group: User Interface/Desktops @@ -56,5 +56,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 05 2009 Christoph Wickert - 0.0.5-1 - Initial Fedora package From jkeating at fedoraproject.org Mon Jul 27 07:50:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:50:08 +0000 (UTC) Subject: rpms/xfce4-clipman-plugin/devel xfce4-clipman-plugin.spec, 1.22, 1.23 Message-ID: <20090727075008.75E6E11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-clipman-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32303 Modified Files: xfce4-clipman-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-clipman-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-clipman-plugin/devel/xfce4-clipman-plugin.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xfce4-clipman-plugin.spec 3 Jul 2009 16:23:13 -0000 1.22 +++ xfce4-clipman-plugin.spec 27 Jul 2009 07:50:08 -0000 1.23 @@ -1,6 +1,6 @@ Name: xfce4-clipman-plugin Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Clipboard manager plugin for the Xfce panel Group: User Interface/Desktops @@ -85,6 +85,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 1.0.2-1 - Update to 1.0.2 From jkeating at fedoraproject.org Mon Jul 27 07:50:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:50:21 +0000 (UTC) Subject: rpms/xfce4-cpugraph-plugin/devel xfce4-cpugraph-plugin.spec, 1.16, 1.17 Message-ID: <20090727075021.4854611C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-cpugraph-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32424 Modified Files: xfce4-cpugraph-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-cpugraph-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-cpugraph-plugin/devel/xfce4-cpugraph-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-cpugraph-plugin.spec 26 Feb 2009 08:43:19 -0000 1.16 +++ xfce4-cpugraph-plugin.spec 27 Jul 2009 07:50:21 -0000 1.17 @@ -1,6 +1,6 @@ Name: xfce4-cpugraph-plugin Version: 0.4.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: CPU monitor for the Xfce panel Group: User Interface/Desktops @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:50:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:50:34 +0000 (UTC) Subject: rpms/xfce4-datetime-plugin/devel xfce4-datetime-plugin.spec, 1.24, 1.25 Message-ID: <20090727075034.7607A11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-datetime-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32562 Modified Files: xfce4-datetime-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-datetime-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-datetime-plugin/devel/xfce4-datetime-plugin.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xfce4-datetime-plugin.spec 26 Feb 2009 08:44:28 -0000 1.24 +++ xfce4-datetime-plugin.spec 27 Jul 2009 07:50:34 -0000 1.25 @@ -1,6 +1,6 @@ Name: xfce4-datetime-plugin Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Date/time plugin for the Xfce panel Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:50:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:50:48 +0000 (UTC) Subject: rpms/xfce4-dev-tools/devel xfce4-dev-tools.spec,1.10,1.11 Message-ID: <20090727075048.C370711C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-dev-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32687 Modified Files: xfce4-dev-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-dev-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-dev-tools/devel/xfce4-dev-tools.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xfce4-dev-tools.spec 27 Feb 2009 20:51:38 -0000 1.10 +++ xfce4-dev-tools.spec 27 Jul 2009 07:50:48 -0000 1.11 @@ -1,6 +1,6 @@ Name: xfce4-dev-tools Version: 4.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Xfce developer tools Group: Development/Tools @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kevin Fenzi - 4.6.0-1 - Update to 4.6.0 From jkeating at fedoraproject.org Mon Jul 27 07:51:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:51:03 +0000 (UTC) Subject: rpms/xfce4-dict/devel xfce4-dict.spec,1.9,1.10 Message-ID: <20090727075103.876DE11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-dict/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv360 Modified Files: xfce4-dict.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-dict.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-dict/devel/xfce4-dict.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xfce4-dict.spec 30 Jun 2009 16:28:15 -0000 1.9 +++ xfce4-dict.spec 27 Jul 2009 07:51:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: xfce4-dict Version: 0.5.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Dictionary Client for the Xfce desktop environment Summary(de): Ein W?rterbuch-Client f?r die Xfce Desktop-Umgebung Group: User Interface/Desktops @@ -88,6 +88,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Caol?n McNamara - 0.5.3-2 - Resolves: rhbz#508633 Require enchant rather than aspell, xfce4-dict already prefers it at run-time From jkeating at fedoraproject.org Mon Jul 27 07:51:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:51:24 +0000 (UTC) Subject: rpms/xfce4-diskperf-plugin/devel xfce4-diskperf-plugin.spec, 1.18, 1.19 Message-ID: <20090727075124.1BADB11C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-diskperf-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv554 Modified Files: xfce4-diskperf-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-diskperf-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-diskperf-plugin/devel/xfce4-diskperf-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-diskperf-plugin.spec 26 Feb 2009 08:47:36 -0000 1.18 +++ xfce4-diskperf-plugin.spec 27 Jul 2009 07:51:23 -0000 1.19 @@ -1,6 +1,6 @@ Name: xfce4-diskperf-plugin Version: 2.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:51:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:51:39 +0000 (UTC) Subject: rpms/xfce4-eyes-plugin/devel xfce4-eyes-plugin.spec,1.10,1.11 Message-ID: <20090727075139.8271311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-eyes-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv728 Modified Files: xfce4-eyes-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-eyes-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-eyes-plugin/devel/xfce4-eyes-plugin.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xfce4-eyes-plugin.spec 26 Feb 2009 08:48:33 -0000 1.10 +++ xfce4-eyes-plugin.spec 27 Jul 2009 07:51:39 -0000 1.11 @@ -1,6 +1,6 @@ Name: xfce4-eyes-plugin Version: 4.4.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Eyes for the Xfce panel Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/eyes/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.4.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:51:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:51:52 +0000 (UTC) Subject: rpms/xfce4-fsguard-plugin/devel xfce4-fsguard-plugin.spec, 1.16, 1.17 Message-ID: <20090727075152.325BB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-fsguard-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv849 Modified Files: xfce4-fsguard-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-fsguard-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-fsguard-plugin/devel/xfce4-fsguard-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-fsguard-plugin.spec 26 Feb 2009 08:49:34 -0000 1.16 +++ xfce4-fsguard-plugin.spec 27 Jul 2009 07:51:52 -0000 1.17 @@ -1,6 +1,6 @@ Name: xfce4-fsguard-plugin Version: 0.4.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Filesystem-Guard plugin for the Xfce panel Group: User Interface/Desktops @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:52:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:52:07 +0000 (UTC) Subject: rpms/xfce4-genmon-plugin/devel xfce4-genmon-plugin.spec,1.17,1.18 Message-ID: <20090727075207.8672811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-genmon-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1004 Modified Files: xfce4-genmon-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-genmon-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-genmon-plugin/devel/xfce4-genmon-plugin.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xfce4-genmon-plugin.spec 26 Feb 2009 08:50:28 -0000 1.17 +++ xfce4-genmon-plugin.spec 27 Jul 2009 07:52:07 -0000 1.18 @@ -1,6 +1,6 @@ Name: xfce4-genmon-plugin Version: 3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Generic monitor plugin for the Xfce panel Group: User Interface/Desktops @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:52:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:52:21 +0000 (UTC) Subject: rpms/xfce4-icon-theme/devel xfce4-icon-theme.spec,1.21,1.22 Message-ID: <20090727075221.8963011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-icon-theme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1135 Modified Files: xfce4-icon-theme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-icon-theme.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-icon-theme/devel/xfce4-icon-theme.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xfce4-icon-theme.spec 17 Apr 2009 18:49:47 -0000 1.21 +++ xfce4-icon-theme.spec 27 Jul 2009 07:52:21 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Icons for Xfce Name: xfce4-icon-theme Version: 4.4.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-icon-theme-%{version}.tar.bz2 @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{_libdir}/pkgconfig/xfce4-icon-theme-1.0.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 17 2009 Christoph Wickert - 4.4.3-3 - Inherit default distribution icon theme (#489402) From jkeating at fedoraproject.org Mon Jul 27 07:52:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:52:37 +0000 (UTC) Subject: rpms/xfce4-mailwatch-plugin/devel xfce4-mailwatch-plugin.spec, 1.13, 1.14 Message-ID: <20090727075237.080CE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-mailwatch-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1315 Modified Files: xfce4-mailwatch-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-mailwatch-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-mailwatch-plugin/devel/xfce4-mailwatch-plugin.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-mailwatch-plugin.spec 26 Feb 2009 08:53:04 -0000 1.13 +++ xfce4-mailwatch-plugin.spec 27 Jul 2009 07:52:36 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-mailwatch-plugin Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Mail Watcher plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/doc/C/images/mailwatch-*.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:52:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:52:50 +0000 (UTC) Subject: rpms/xfce4-mixer/devel xfce4-mixer.spec,1.26,1.27 Message-ID: <20090727075250.7201A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-mixer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1467 Modified Files: xfce4-mixer.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-mixer.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-mixer/devel/xfce4-mixer.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xfce4-mixer.spec 20 Apr 2009 02:29:55 -0000 1.26 +++ xfce4-mixer.spec 27 Jul 2009 07:52:50 -0000 1.27 @@ -1,7 +1,7 @@ Summary: Volume control plugin for the Xfce 4 panel Name: xfce4-mixer Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-mixer-%{version}.tar.bz2 @@ -67,6 +67,9 @@ fi %{_datadir}/xfce4/panel-plugins/xfce4-mixer-plugin.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Mon Jul 27 07:53:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:53:08 +0000 (UTC) Subject: rpms/xfce4-modemlights-plugin/devel xfce4-modemlights-plugin.spec, 1.13, 1.14 Message-ID: <20090727075308.0510411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-modemlights-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1634 Modified Files: xfce4-modemlights-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-modemlights-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-modemlights-plugin/devel/xfce4-modemlights-plugin.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-modemlights-plugin.spec 26 Feb 2009 08:55:47 -0000 1.13 +++ xfce4-modemlights-plugin.spec 27 Jul 2009 07:53:07 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-modemlights-plugin Version: 0.1.3.99 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Modemlights for the Xfce panel Group: User Interface/Desktops @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/modem-*.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.3.99-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.3.99-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:53:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:53:24 +0000 (UTC) Subject: rpms/xfce4-mount-plugin/devel xfce4-mount-plugin.spec,1.17,1.18 Message-ID: <20090727075324.39FB011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-mount-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1811 Modified Files: xfce4-mount-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-mount-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-mount-plugin/devel/xfce4-mount-plugin.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xfce4-mount-plugin.spec 26 Feb 2009 08:56:51 -0000 1.17 +++ xfce4-mount-plugin.spec 27 Jul 2009 07:53:24 -0000 1.18 @@ -1,6 +1,6 @@ Name: xfce4-mount-plugin Version: 0.5.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Mount/unmount utility for the Xfce panel Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/scalable/apps/xfce-mount.svg %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:53:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:53:37 +0000 (UTC) Subject: rpms/xfce4-mpc-plugin/devel xfce4-mpc-plugin.spec,1.5,1.6 Message-ID: <20090727075337.EF45C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-mpc-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1986 Modified Files: xfce4-mpc-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-mpc-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-mpc-plugin/devel/xfce4-mpc-plugin.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xfce4-mpc-plugin.spec 16 Jun 2009 22:49:56 -0000 1.5 +++ xfce4-mpc-plugin.spec 27 Jul 2009 07:53:37 -0000 1.6 @@ -1,6 +1,6 @@ Name: xfce4-mpc-plugin Version: 0.3.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MPD client for the Xfce panel Group: User Interface/Desktops @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Christoph Wickert - 0.3.3-4 - Rebuild for libmpd 0.18.0 From jkeating at fedoraproject.org Mon Jul 27 07:53:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:53:52 +0000 (UTC) Subject: rpms/xfce4-netload-plugin/devel xfce4-netload-plugin.spec, 1.15, 1.16 Message-ID: <20090727075352.0156511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-netload-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2109 Modified Files: xfce4-netload-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-netload-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-netload-plugin/devel/xfce4-netload-plugin.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xfce4-netload-plugin.spec 29 Jun 2009 17:36:53 -0000 1.15 +++ xfce4-netload-plugin.spec 27 Jul 2009 07:53:51 -0000 1.16 @@ -1,6 +1,6 @@ Name: xfce4-netload-plugin Version: 0.4.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Network-load monitor for the Xfce panel Group: User Interface/Desktops @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Christoph Wickert - 0.4.0-10 - Bring back tooltips in GTK 2.16 with Dimitar Zhekov's patch (#508637) From jkeating at fedoraproject.org Mon Jul 27 07:54:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:54:19 +0000 (UTC) Subject: rpms/xfce4-notifyd/devel xfce4-notifyd.spec,1.4,1.5 Message-ID: <20090727075419.8533211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-notifyd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2400 Modified Files: xfce4-notifyd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-notifyd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notifyd/devel/xfce4-notifyd.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xfce4-notifyd.spec 14 May 2009 00:03:41 -0000 1.4 +++ xfce4-notifyd.spec 27 Jul 2009 07:54:19 -0000 1.5 @@ -2,7 +2,7 @@ Name: xfce4-notifyd Version: 0.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 - Patch to rename dbus-service file to avoid conflict with notification-daemon - Add Debian's patch support the reason arg in libnotify 0.4.5 From jkeating at fedoraproject.org Mon Jul 27 07:54:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:54:06 +0000 (UTC) Subject: rpms/xfce4-notes-plugin/devel xfce4-notes-plugin.spec,1.19,1.20 Message-ID: <20090727075406.DFA0311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-notes-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2245 Modified Files: xfce4-notes-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-notes-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-notes-plugin/devel/xfce4-notes-plugin.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xfce4-notes-plugin.spec 4 Jul 2009 00:58:38 -0000 1.19 +++ xfce4-notes-plugin.spec 27 Jul 2009 07:54:06 -0000 1.20 @@ -1,6 +1,6 @@ Name: xfce4-notes-plugin Version: 1.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Notes plugin for the Xfce panel Group: User Interface/Desktops @@ -67,6 +67,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 1.7.0-1 - Update to 1.7.0 - Update gtk-update-icon-cache scriptlets From jkeating at fedoraproject.org Mon Jul 27 07:54:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:54:34 +0000 (UTC) Subject: rpms/xfce4-panel/devel xfce4-panel.spec,1.39,1.40 Message-ID: <20090727075434.C617A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-panel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2557 Modified Files: xfce4-panel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-panel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-panel/devel/xfce4-panel.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- xfce4-panel.spec 12 Jun 2009 21:53:22 -0000 1.39 +++ xfce4-panel.spec 27 Jul 2009 07:54:34 -0000 1.40 @@ -1,7 +1,7 @@ Summary: Next generation panel for Xfce Name: xfce4-panel Version: 4.6.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and LGPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-panel-%{version}.tar.bz2 @@ -127,6 +127,9 @@ fi %{_includedir}/xfce4/libxfce4panel %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 12 2009 Christoph Wickert - 4.6.1-2 - Bring back the multilib patch to fix #505165 From jkeating at fedoraproject.org Mon Jul 27 07:54:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:54:47 +0000 (UTC) Subject: rpms/xfce4-places-plugin/devel xfce4-places-plugin.spec,1.14,1.15 Message-ID: <20090727075447.3CA3D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-places-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2690 Modified Files: xfce4-places-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-places-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/devel/xfce4-places-plugin.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-places-plugin.spec 26 Feb 2009 09:01:52 -0000 1.14 +++ xfce4-places-plugin.spec 27 Jul 2009 07:54:47 -0000 1.15 @@ -1,6 +1,6 @@ Name: xfce4-places-plugin Version: 1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Places menu for the Xfce panel Group: User Interface/Desktops @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:54:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:54:59 +0000 (UTC) Subject: rpms/xfce4-power-manager/devel xfce4-power-manager.spec,1.13,1.14 Message-ID: <20090727075459.B637211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-power-manager/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2811 Modified Files: xfce4-power-manager.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-power-manager.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-power-manager/devel/xfce4-power-manager.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-power-manager.spec 9 Jul 2009 16:29:56 -0000 1.13 +++ xfce4-power-manager.spec 27 Jul 2009 07:54:59 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-power-manager Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Power management for the Xfce desktop environment Group: User Interface/Desktops @@ -78,6 +78,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Christoph Wickert - 0.8.2-1 - Update to 0.8.2 From jkeating at fedoraproject.org Mon Jul 27 07:55:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:55:12 +0000 (UTC) Subject: rpms/xfce4-quicklauncher-plugin/devel xfce4-quicklauncher-plugin.spec, 1.15, 1.16 Message-ID: <20090727075512.521D511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2964 Modified Files: xfce4-quicklauncher-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-quicklauncher-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-quicklauncher-plugin/devel/xfce4-quicklauncher-plugin.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xfce4-quicklauncher-plugin.spec 3 Jul 2009 23:01:30 -0000 1.15 +++ xfce4-quicklauncher-plugin.spec 27 Jul 2009 07:55:11 -0000 1.16 @@ -1,6 +1,6 @@ Name: xfce4-quicklauncher-plugin Version: 1.9.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Quicklauncher plugin for the Xfce panel Group: User Interface/Desktops @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 1.9.4-5 - Fix path in desktop file (#509294) From jkeating at fedoraproject.org Mon Jul 27 07:55:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:55:22 +0000 (UTC) Subject: rpms/xfce4-radio-plugin/devel xfce4-radio-plugin.spec,1.2,1.3 Message-ID: <20090727075522.C4CE811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-radio-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3090 Modified Files: xfce4-radio-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-radio-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-radio-plugin/devel/xfce4-radio-plugin.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xfce4-radio-plugin.spec 6 May 2009 23:05:03 -0000 1.2 +++ xfce4-radio-plugin.spec 27 Jul 2009 07:55:22 -0000 1.3 @@ -2,7 +2,7 @@ Name: xfce4-radio-plugin Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Video4linux radio device control plugin for the Xfce panel Group: User Interface/Desktops @@ -71,6 +71,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 19 2009 Christoph Wickert - 0.4.1-1 - Update to 0.4.1 From pkgdb at fedoraproject.org Mon Jul 27 07:55:36 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 07:55:36 +0000 Subject: [pkgdb] macchanger ownership updated Message-ID: <20090727075536.B7AE710F899@bastion2.fedora.phx.redhat.com> Package macchanger in Fedora devel is now owned by thoger To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/macchanger From jkeating at fedoraproject.org Mon Jul 27 07:55:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:55:38 +0000 (UTC) Subject: rpms/xfce4-sensors-plugin/devel xfce4-sensors-plugin.spec, 1.20, 1.21 Message-ID: <20090727075538.D5B4811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-sensors-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3279 Modified Files: xfce4-sensors-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-sensors-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-sensors-plugin/devel/xfce4-sensors-plugin.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xfce4-sensors-plugin.spec 1 Apr 2009 17:22:12 -0000 1.20 +++ xfce4-sensors-plugin.spec 27 Jul 2009 07:55:38 -0000 1.21 @@ -1,6 +1,6 @@ Name: xfce4-sensors-plugin Version: 0.10.99.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Sensors plugin for the Xfce panel Group: User Interface/Desktops @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10.99.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 01 2009 Christoph Wickert - 0.10.99.6-4 - Own %%{_libdir}/xfce4/modules/ to fix unowned directory (#474587) From jkeating at fedoraproject.org Mon Jul 27 07:55:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:55:52 +0000 (UTC) Subject: rpms/xfce4-session/devel xfce4-session.spec,1.28,1.29 Message-ID: <20090727075552.7501011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-session/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3443 Modified Files: xfce4-session.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-session.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-session/devel/xfce4-session.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xfce4-session.spec 20 Apr 2009 02:22:17 -0000 1.28 +++ xfce4-session.spec 27 Jul 2009 07:55:52 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Xfce session manager Name: xfce4-session Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfce4-session-%{version}.tar.bz2 @@ -124,6 +124,9 @@ touch --no-create %{_datadir}/icons/hico %{_libexecdir}/balou-* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From pkgdb at fedoraproject.org Mon Jul 27 07:55:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 07:55:59 +0000 Subject: [pkgdb] macchanger ownership updated Message-ID: <20090727075559.ACAE010F87E@bastion2.fedora.phx.redhat.com> Package macchanger in Fedora 11 is now owned by thoger To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/macchanger From jkeating at fedoraproject.org Mon Jul 27 07:56:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:56:04 +0000 (UTC) Subject: rpms/xfce4-settings/devel xfce4-settings.spec,1.14,1.15 Message-ID: <20090727075604.F20EE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-settings/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3601 Modified Files: xfce4-settings.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-settings.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-settings/devel/xfce4-settings.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-settings.spec 3 Jul 2009 19:54:23 -0000 1.14 +++ xfce4-settings.spec 27 Jul 2009 07:56:04 -0000 1.15 @@ -1,6 +1,6 @@ Name: xfce4-settings Version: 4.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Settings Manager for Xfce Group: User Interface/Desktops @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/xfce*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Kevin Fenzi - 4.6.1-2 - Update for new libxklavier From pkgdb at fedoraproject.org Mon Jul 27 07:56:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 07:56:02 +0000 Subject: [pkgdb] macchanger ownership updated Message-ID: <20090727075603.0A8F910F897@bastion2.fedora.phx.redhat.com> Package macchanger in Fedora 10 is now owned by thoger To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/macchanger From jkeating at fedoraproject.org Mon Jul 27 07:56:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:56:18 +0000 (UTC) Subject: rpms/xfce4-smartbookmark-plugin/devel xfce4-smartbookmark-plugin.spec, 1.12, 1.13 Message-ID: <20090727075618.EF06111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3770 Modified Files: xfce4-smartbookmark-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-smartbookmark-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-smartbookmark-plugin/devel/xfce4-smartbookmark-plugin.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xfce4-smartbookmark-plugin.spec 3 Jul 2009 22:46:04 -0000 1.12 +++ xfce4-smartbookmark-plugin.spec 27 Jul 2009 07:56:18 -0000 1.13 @@ -1,6 +1,6 @@ Name: xfce4-smartbookmark-plugin Version: 0.4.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Smart bookmarks for the Xfce panel Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 0.4.2-9 - Fix path in desktop file (#509294) From jkeating at fedoraproject.org Mon Jul 27 07:56:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:56:34 +0000 (UTC) Subject: rpms/xfce4-systemload-plugin/devel xfce4-systemload-plugin.spec, 1.14, 1.15 Message-ID: <20090727075634.5FA9011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-systemload-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3924 Modified Files: xfce4-systemload-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-systemload-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-systemload-plugin/devel/xfce4-systemload-plugin.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-systemload-plugin.spec 26 Feb 2009 09:08:35 -0000 1.14 +++ xfce4-systemload-plugin.spec 27 Jul 2009 07:56:34 -0000 1.15 @@ -1,6 +1,6 @@ Name: xfce4-systemload-plugin Version: 0.4.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Systemload monitor for the Xfce panel Group: User Interface/Desktops @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:56:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:56:50 +0000 (UTC) Subject: rpms/xfce4-time-out-plugin/devel xfce4-time-out-plugin.spec, 1.4, 1.5 Message-ID: <20090727075650.5777A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-time-out-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4091 Modified Files: xfce4-time-out-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-time-out-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-time-out-plugin/devel/xfce4-time-out-plugin.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xfce4-time-out-plugin.spec 26 Feb 2009 09:09:29 -0000 1.4 +++ xfce4-time-out-plugin.spec 27 Jul 2009 07:56:50 -0000 1.5 @@ -2,7 +2,7 @@ Name: xfce4-time-out-plugin Version: 0.1.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Xfce panel plugin for taking breaks from the computer Group: User Interface/Desktops @@ -63,6 +63,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:57:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:57:03 +0000 (UTC) Subject: rpms/xfce4-timer-plugin/devel xfce4-timer-plugin.spec,1.13,1.14 Message-ID: <20090727075703.CFE9011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-timer-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4230 Modified Files: xfce4-timer-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-timer-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-timer-plugin/devel/xfce4-timer-plugin.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-timer-plugin.spec 26 Feb 2009 09:10:25 -0000 1.13 +++ xfce4-timer-plugin.spec 27 Jul 2009 07:57:03 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-timer-plugin Version: 0.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Timer for the Xfce panel Group: User Interface/Desktops @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:57:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:57:17 +0000 (UTC) Subject: rpms/xfce4-verve-plugin/devel xfce4-verve-plugin.spec,1.11,1.12 Message-ID: <20090727075717.F29DD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-verve-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4366 Modified Files: xfce4-verve-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-verve-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-verve-plugin/devel/xfce4-verve-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xfce4-verve-plugin.spec 26 Feb 2009 09:11:30 -0000 1.11 +++ xfce4-verve-plugin.spec 27 Jul 2009 07:57:17 -0000 1.12 @@ -1,6 +1,6 @@ Name: xfce4-verve-plugin Version: 0.3.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Comfortable command line plugin for the Xfce panel Group: User Interface/Desktops @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/verve-focus %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:57:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:57:31 +0000 (UTC) Subject: rpms/xfce4-volstatus-icon/devel xfce4-volstatus-icon.spec,1.5,1.6 Message-ID: <20090727075731.532C911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-volstatus-icon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4488 Modified Files: xfce4-volstatus-icon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-volstatus-icon.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-volstatus-icon/devel/xfce4-volstatus-icon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xfce4-volstatus-icon.spec 26 Feb 2009 09:12:25 -0000 1.5 +++ xfce4-volstatus-icon.spec 27 Jul 2009 07:57:31 -0000 1.6 @@ -1,6 +1,6 @@ Name: xfce4-volstatus-icon Version: 0.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: System tray icon to easily eject removable devices Group: User Interface/Desktops @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:57:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:57:44 +0000 (UTC) Subject: rpms/xfce4-wavelan-plugin/devel xfce4-wavelan-plugin.spec, 1.13, 1.14 Message-ID: <20090727075744.D7C8911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-wavelan-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4630 Modified Files: xfce4-wavelan-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-wavelan-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-wavelan-plugin/devel/xfce4-wavelan-plugin.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xfce4-wavelan-plugin.spec 10 Apr 2009 19:49:35 -0000 1.13 +++ xfce4-wavelan-plugin.spec 27 Jul 2009 07:57:44 -0000 1.14 @@ -1,6 +1,6 @@ Name: xfce4-wavelan-plugin Version: 0.5.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: WaveLAN plugin for the Xfce panel Group: User Interface/Desktops @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Apr 10 2009 Christoph Wickert - 0.5.5-1 - Update to 0.5.5 From jkeating at fedoraproject.org Mon Jul 27 07:58:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:58:00 +0000 (UTC) Subject: rpms/xfce4-weather-plugin/devel xfce4-weather-plugin.spec, 1.19, 1.20 Message-ID: <20090727075800.8B16C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-weather-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4772 Modified Files: xfce4-weather-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-weather-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-weather-plugin/devel/xfce4-weather-plugin.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xfce4-weather-plugin.spec 3 Jul 2009 16:57:46 -0000 1.19 +++ xfce4-weather-plugin.spec 27 Jul 2009 07:58:00 -0000 1.20 @@ -1,6 +1,6 @@ Name: xfce4-weather-plugin Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Weather plugin for the Xfce panel Group: User Interface/Desktops @@ -61,6 +61,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 0.7.0-1 - Update to 0.7.0 From jkeating at fedoraproject.org Mon Jul 27 07:58:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:58:13 +0000 (UTC) Subject: rpms/xfce4-websearch-plugin/devel xfce4-websearch-plugin.spec, 1.18, 1.19 Message-ID: <20090727075813.E003911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-websearch-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4932 Modified Files: xfce4-websearch-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-websearch-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-websearch-plugin/devel/xfce4-websearch-plugin.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xfce4-websearch-plugin.spec 3 Jul 2009 23:43:44 -0000 1.18 +++ xfce4-websearch-plugin.spec 27 Jul 2009 07:58:13 -0000 1.19 @@ -1,6 +1,6 @@ Name: xfce4-websearch-plugin Version: 0.1.1 -Release: 0.11.20070428svn2704%{?dist} +Release: 0.12.20070428svn2704%{?dist} Summary: Websearch plugin from the XFCE panel Group: User Interface/Desktops @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.1-0.12.20070428svn2704 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 03 2009 Christoph Wickert - 0.1.1-0.11.20070428svn2704 - Fix path in desktop file (#509294) From jkeating at fedoraproject.org Mon Jul 27 07:58:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:58:27 +0000 (UTC) Subject: rpms/xfce4-xfapplet-plugin/devel xfce4-xfapplet-plugin.spec, 1.10, 1.11 Message-ID: <20090727075827.E3A8711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-xfapplet-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5065 Modified Files: xfce4-xfapplet-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-xfapplet-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-xfapplet-plugin/devel/xfce4-xfapplet-plugin.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xfce4-xfapplet-plugin.spec 26 Feb 2009 09:16:12 -0000 1.10 +++ xfce4-xfapplet-plugin.spec 27 Jul 2009 07:58:27 -0000 1.11 @@ -1,6 +1,6 @@ Name: xfce4-xfapplet-plugin Version: 0.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A plugin to use gnome-panel based applets inside the Xfce4 panel Group: User Interface/Desktops @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:58:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:58:43 +0000 (UTC) Subject: rpms/xfce4-xkb-plugin/devel xfce4-xkb-plugin.spec,1.20,1.21 Message-ID: <20090727075843.8CAD511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfce4-xkb-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5268 Modified Files: xfce4-xkb-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfce4-xkb-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-xkb-plugin/devel/xfce4-xkb-plugin.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xfce4-xkb-plugin.spec 7 Jul 2009 19:43:56 -0000 1.20 +++ xfce4-xkb-plugin.spec 27 Jul 2009 07:58:43 -0000 1.21 @@ -1,6 +1,6 @@ Name: xfce4-xkb-plugin Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XKB layout switcher for the Xfce panel Group: User Interface/Desktops @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/xkb/flags/*.svg %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Adam Jackson 0.5.2-4 - xxp-0.5.2-xklavier-api.patch: Fix for new libxklavier API. From jkeating at fedoraproject.org Mon Jul 27 07:58:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:58:56 +0000 (UTC) Subject: rpms/xfconf/devel xfconf.spec,1.12,1.13 Message-ID: <20090727075856.B078711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfconf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5414 Modified Files: xfconf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfconf.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfconf/devel/xfconf.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xfconf.spec 14 Jun 2009 12:34:32 -0000 1.12 +++ xfconf.spec 27 Jul 2009 07:58:56 -0000 1.13 @@ -1,6 +1,6 @@ Name: xfconf Version: 4.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Hierarchical configuration system for Xfce Group: System Environment/Base @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 14 2009 Christoph Wickert - 4.6.1-2 - Require dbus-x11 (#505499) From jkeating at fedoraproject.org Mon Jul 27 07:59:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:59:12 +0000 (UTC) Subject: rpms/xfdesktop/devel xfdesktop.spec,1.34,1.35 Message-ID: <20090727075912.5CA7511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfdesktop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5589 Modified Files: xfdesktop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfdesktop.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfdesktop/devel/xfdesktop.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xfdesktop.spec 20 Apr 2009 02:32:19 -0000 1.34 +++ xfdesktop.spec 27 Jul 2009 07:59:12 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Desktop manager for the XFce Desktop Environment Name: xfdesktop Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfdesktop-%{version}.tar.bz2 @@ -90,6 +90,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/xfce4/panel-plugins/xfce4-menu.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Mon Jul 27 07:59:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:59:26 +0000 (UTC) Subject: rpms/xferstats/devel xferstats.spec,1.19,1.20 Message-ID: <20090727075926.32ED211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xferstats/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5737 Modified Files: xferstats.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xferstats.spec =================================================================== RCS file: /cvs/pkgs/rpms/xferstats/devel/xferstats.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xferstats.spec 26 Feb 2009 09:20:50 -0000 1.19 +++ xferstats.spec 27 Jul 2009 07:59:25 -0000 1.20 @@ -1,7 +1,7 @@ Summary: Compiles information about file transfers from logfiles Name: xferstats Version: 2.16 -Release: 19%{?dist} +Release: 20%{?dist} URL: http://xferstats.off.net/ Source0: ftp://xferstats.off.net/%{name}-%{version}.tar.gz Patch0: xferstats.patch @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xferstats %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.16-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.16-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:59:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:59:41 +0000 (UTC) Subject: rpms/xfhell/devel xfhell.spec,1.3,1.4 Message-ID: <20090727075941.2209D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfhell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5939 Modified Files: xfhell.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfhell.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfhell/devel/xfhell.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xfhell.spec 26 Feb 2009 09:21:44 -0000 1.3 +++ xfhell.spec 27 Jul 2009 07:59:40 -0000 1.4 @@ -1,6 +1,6 @@ Name: xfhell Version: 1.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK based Ham Radio application for the Hellschreiber communications mode Group: Applications/Communications @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:59:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:59:57 +0000 (UTC) Subject: rpms/xfig/devel xfig.spec,1.64,1.65 Message-ID: <20090727075957.14A7511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6066 Modified Files: xfig.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfig/devel/xfig.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- xfig.spec 28 Jun 2009 09:08:29 -0000 1.64 +++ xfig.spec 27 Jul 2009 07:59:56 -0000 1.65 @@ -3,7 +3,7 @@ Summary: An X Window System tool for drawing basic vector graphics Name: xfig Version: 3.2.5 -Release: 21.a%{?dist} +Release: 22.a%{?dist} License: MIT Group: Applications/Multimedia URL: http://www.xfig.org/ @@ -199,6 +199,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.2.5-22.a +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Caol?n McNamara 3.2.5-21.a - Resolves: rhbz#506791 make xfig spellchecking work From jkeating at fedoraproject.org Mon Jul 27 07:38:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:38:48 +0000 (UTC) Subject: rpms/xcb-proto/devel xcb-proto.spec,1.9,1.10 Message-ID: <20090727073848.3E77511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcb-proto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24388 Modified Files: xcb-proto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcb-proto.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcb-proto/devel/xcb-proto.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xcb-proto.spec 25 Jun 2009 20:04:54 -0000 1.9 +++ xcb-proto.spec 27 Jul 2009 07:38:47 -0000 1.10 @@ -3,7 +3,7 @@ Name: xcb-proto Version: 1.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XCB protocol descriptions Group: Development/Libraries @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/xcbgen %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 25 2009 Adam Jackson 1.5-1 - xcb-proto 1.5 From jkeating at fedoraproject.org Mon Jul 27 07:38:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:38:35 +0000 (UTC) Subject: rpms/xcalib/devel xcalib.spec,1.4,1.5 Message-ID: <20090727073835.E054311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcalib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24259 Modified Files: xcalib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcalib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcalib/devel/xcalib.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xcalib.spec 26 Feb 2009 07:56:52 -0000 1.4 +++ xcalib.spec 27 Jul 2009 07:38:35 -0000 1.5 @@ -1,6 +1,6 @@ Name: xcalib Version: 0.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tiny monitor calibration loader for X.org Group: System Environment/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:40:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:40:54 +0000 (UTC) Subject: rpms/xcircuit/devel xcircuit.spec,1.15,1.16 Message-ID: <20090727074054.5E9FD11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xcircuit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25548 Modified Files: xcircuit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xcircuit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xcircuit/devel/xcircuit.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xcircuit.spec 26 Feb 2009 08:07:15 -0000 1.15 +++ xcircuit.spec 27 Jul 2009 07:40:54 -0000 1.16 @@ -1,6 +1,6 @@ Name: xcircuit Version: 3.4.30 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Electronic circuit schematic drawing program License: GPLv2 @@ -117,6 +117,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.4.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.4.30-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:00:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:00:18 +0000 (UTC) Subject: rpms/xfmpc/devel xfmpc.spec,1.7,1.8 Message-ID: <20090727080018.3D7F411C04FC@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfmpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6250 Modified Files: xfmpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfmpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfmpc/devel/xfmpc.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xfmpc.spec 16 Jun 2009 22:44:22 -0000 1.7 +++ xfmpc.spec 27 Jul 2009 08:00:17 -0000 1.8 @@ -1,6 +1,6 @@ Name: xfmpc Version: 0.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A MPD client for the Xfce desktop environment Group: Applications/Multimedia @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 16 2009 Christoph Wickert - 0.1.0-2 - Rebuild for libmpd 0.18.0 From jkeating at fedoraproject.org Mon Jul 27 08:00:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:00:40 +0000 (UTC) Subject: rpms/xforms/devel xforms.spec,1.23,1.24 Message-ID: <20090727080040.E37C111C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xforms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6478 Modified Files: xforms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xforms.spec =================================================================== RCS file: /cvs/pkgs/rpms/xforms/devel/xforms.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xforms.spec 26 Feb 2009 09:24:27 -0000 1.23 +++ xforms.spec 27 Jul 2009 08:00:40 -0000 1.24 @@ -2,7 +2,7 @@ Name: xforms Summary: XForms toolkit library Version: 1.0.90 -Release: 12%{?dist} +Release: 13%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.90-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.90-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:00:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:00:53 +0000 (UTC) Subject: rpms/xfprint/devel xfprint.spec,1.28,1.29 Message-ID: <20090727080053.96A1211C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6646 Modified Files: xfprint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfprint/devel/xfprint.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xfprint.spec 2 Mar 2009 22:46:11 -0000 1.28 +++ xfprint.spec 27 Jul 2009 08:00:53 -0000 1.29 @@ -1,7 +1,7 @@ Summary: Print dialog and printer manager for Xfce 4 Name: xfprint Version: 4.6.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ URL: http://www.xfce.org Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfprint-%{version}.tar.bz2 @@ -87,6 +87,9 @@ fi %doc %{_datadir}/gtk-doc/html/libxfprint %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Christoph Wickert - 4.6.0-2 - Fix directory ownership problems - Move gtk-doc into devel package and mark it %%doc From jkeating at fedoraproject.org Mon Jul 27 08:01:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:01:10 +0000 (UTC) Subject: rpms/xfsdump/devel xfsdump.spec,1.12,1.13 Message-ID: <20090727080110.D7F4411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfsdump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6805 Modified Files: xfsdump.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfsdump.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfsdump/devel/xfsdump.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xfsdump.spec 30 Jun 2009 16:29:18 -0000 1.12 +++ xfsdump.spec 27 Jul 2009 08:01:10 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Administrative utilities for the XFS filesystem Name: xfsdump Version: 3.0.1 -Release: 2%{?dist} +Release: 3%{?dist} # Licensing based on generic "GNU GENERAL PUBLIC LICENSE" # in source, with no mention of version. License: GPL+ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Eric Sandeen 3.0.1-2 - Fix up build-requires after e2fsprogs splitup From jkeating at fedoraproject.org Mon Jul 27 08:01:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:01:28 +0000 (UTC) Subject: rpms/xfsprogs/devel xfsprogs.spec,1.64,1.65 Message-ID: <20090727080128.36F2D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfsprogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6975 Modified Files: xfsprogs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfsprogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfsprogs/devel/xfsprogs.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- xfsprogs.spec 9 Jul 2009 16:22:40 -0000 1.64 +++ xfsprogs.spec 27 Jul 2009 08:01:28 -0000 1.65 @@ -1,7 +1,7 @@ Summary: Utilities for managing the XFS filesystem Name: xfsprogs Version: 3.0.1 -Release: 9%{?dist} +Release: 10%{?dist} # Licensing based on generic "GNU GENERAL PUBLIC LICENSE" # in source, with no mention of version. # doc/COPYING file specifies what is GPL and what is LGPL @@ -197,6 +197,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/xfs/xfs_types.h %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Eric Sandeen 3.0.1-9 - Fix block overflows in xfs_repair and xfs_metadump From jkeating at fedoraproject.org Mon Jul 27 08:03:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:03:30 +0000 (UTC) Subject: rpms/xgrep/devel xgrep.spec,1.4,1.5 Message-ID: <20090727080330.6E96311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xgrep/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8252 Modified Files: xgrep.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xgrep.spec =================================================================== RCS file: /cvs/pkgs/rpms/xgrep/devel/xgrep.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xgrep.spec 26 Feb 2009 09:33:33 -0000 1.4 +++ xgrep.spec 27 Jul 2009 08:03:29 -0000 1.5 @@ -1,6 +1,6 @@ Name: xgrep Version: 0.07 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A grep-like utility for XML files Group: Applications/Publishing @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.07-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:03:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:03:47 +0000 (UTC) Subject: rpms/xgridfit/devel xgridfit.spec,1.13,1.14 Message-ID: <20090727080347.314A911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xgridfit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8496 Modified Files: xgridfit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xgridfit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xgridfit/devel/xgridfit.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xgridfit.spec 14 Jul 2009 12:01:29 -0000 1.13 +++ xgridfit.spec 27 Jul 2009 08:03:46 -0000 1.14 @@ -2,7 +2,7 @@ Name: xgridfit Version: 1.19 -Release: 1.b%{?dist} +Release: 2.b%{?dist} Summary: Font hinting tool # This is where we drop fontforge @@ -72,6 +72,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.19-2.b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 14 2009 Nicolas Mailhot - 1.19-1.b ? Rework to use upstream makefile now there is one From jkeating at fedoraproject.org Mon Jul 27 08:04:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:04:02 +0000 (UTC) Subject: rpms/xgridloc/devel xgridloc.spec,1.1,1.2 Message-ID: <20090727080402.0862111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xgridloc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8624 Modified Files: xgridloc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xgridloc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xgridloc/devel/xgridloc.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xgridloc.spec 10 Jul 2009 07:53:50 -0000 1.1 +++ xgridloc.spec 27 Jul 2009 08:04:01 -0000 1.2 @@ -1,6 +1,6 @@ Name: xgridloc Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A GTK+ application for the calculation of Maidenhead QRA Locators Group: Applications/Communications @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 9 2009 Randall J. Berry 'Dp67' - 0.9-6 - Upstream source added COPYING file - Fix .desktop file removed ext from icon From jkeating at fedoraproject.org Mon Jul 27 08:04:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:04:18 +0000 (UTC) Subject: rpms/xguest/devel xguest.spec,1.13,1.14 Message-ID: <20090727080418.696F611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xguest/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8811 Modified Files: xguest.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xguest.spec =================================================================== RCS file: /cvs/pkgs/rpms/xguest/devel/xguest.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xguest.spec 23 Jun 2009 21:09:34 -0000 1.13 +++ xguest.spec 27 Jul 2009 08:04:18 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Creates xguest user as a locked down user Name: xguest Version: 1.0.7 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ Group: System Environment/Base BuildArch: noarch @@ -93,6 +93,9 @@ __eof fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Dan Walsh - 1.0.7-5 - Changed to require policycoreutils-python From jkeating at fedoraproject.org Mon Jul 27 08:04:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:04:36 +0000 (UTC) Subject: rpms/xhotkeys/devel xhotkeys.spec,1.2,1.3 Message-ID: <20090727080436.D42A111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xhotkeys/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9003 Modified Files: xhotkeys.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xhotkeys.spec =================================================================== RCS file: /cvs/pkgs/rpms/xhotkeys/devel/xhotkeys.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xhotkeys.spec 26 Feb 2009 09:36:31 -0000 1.2 +++ xhotkeys.spec 27 Jul 2009 08:04:36 -0000 1.3 @@ -1,6 +1,6 @@ Name: xhotkeys Version: 0.9.8.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Hotkeys for the X-Window Summary(pl): Skr?ty klawiszowe dla X-okien Group: User Interface/X @@ -75,6 +75,9 @@ fi %{_datadir}/pixmaps/%{name}.xpm %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.8.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.8.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:04:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:04:53 +0000 (UTC) Subject: rpms/xhtml1-dtds/devel xhtml1-dtds.spec,1.9,1.10 Message-ID: <20090727080453.B74B711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xhtml1-dtds/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9163 Modified Files: xhtml1-dtds.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xhtml1-dtds.spec =================================================================== RCS file: /cvs/pkgs/rpms/xhtml1-dtds/devel/xhtml1-dtds.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xhtml1-dtds.spec 26 Feb 2009 09:37:25 -0000 1.9 +++ xhtml1-dtds.spec 27 Jul 2009 08:04:53 -0000 1.10 @@ -2,7 +2,7 @@ Name: xhtml1-dtds Version: 1.0 -Release: %{date}.4 +Release: %{date}.5 Summary: XHTML 1.0 document type definitions Group: Applications/Text @@ -118,6 +118,9 @@ cd - >/dev/null %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0-20020801.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-20020801.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:05:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:05:12 +0000 (UTC) Subject: rpms/xhtml2fo-style-xsl/devel xhtml2fo-style-xsl.spec,1.3,1.4 Message-ID: <20090727080512.143B111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xhtml2fo-style-xsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9343 Modified Files: xhtml2fo-style-xsl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xhtml2fo-style-xsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/xhtml2fo-style-xsl/devel/xhtml2fo-style-xsl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xhtml2fo-style-xsl.spec 26 Feb 2009 09:38:18 -0000 1.3 +++ xhtml2fo-style-xsl.spec 27 Jul 2009 08:05:11 -0000 1.4 @@ -1,6 +1,6 @@ Name: xhtml2fo-style-xsl Version: 20051222 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Text Summary: Antenna House, Inc. XHTML to XSL:FO stylesheets @@ -65,6 +65,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20051222-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 20051222-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:05:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:05:29 +0000 (UTC) Subject: rpms/xine-lib/devel xine-lib.spec,1.76,1.77 Message-ID: <20090727080529.CE49E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xine-lib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9496 Modified Files: xine-lib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xine-lib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-lib/devel/xine-lib.spec,v retrieving revision 1.76 retrieving revision 1.77 diff -u -p -r1.76 -r1.77 --- xine-lib.spec 2 Jul 2009 17:24:14 -0000 1.76 +++ xine-lib.spec 27 Jul 2009 08:05:29 -0000 1.77 @@ -30,7 +30,7 @@ Summary: A multimedia engine Name: xine-lib Version: 1.1.16.3 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://xinehq.de/ @@ -425,6 +425,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.16.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Rex Dieter - 1.1.16.3-3 - rebuild (DirectFB) From jkeating at fedoraproject.org Mon Jul 27 08:05:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:05:48 +0000 (UTC) Subject: rpms/xine-plugin/devel xine-plugin.spec,1.11,1.12 Message-ID: <20090727080548.2D36811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xine-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9705 Modified Files: xine-plugin.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xine-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xine-plugin/devel/xine-plugin.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xine-plugin.spec 26 Feb 2009 09:41:31 -0000 1.11 +++ xine-plugin.spec 27 Jul 2009 08:05:47 -0000 1.12 @@ -1,6 +1,6 @@ Name: xine-plugin Version: 1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Mozilla/Netscape compatible media plugin Group: Applications/Multimedia @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:06:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:06:05 +0000 (UTC) Subject: rpms/xinetd/devel xinetd.spec,1.60,1.61 Message-ID: <20090727080605.E3CB011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xinetd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9876 Modified Files: xinetd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xinetd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xinetd/devel/xinetd.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- xinetd.spec 26 Feb 2009 09:42:30 -0000 1.60 +++ xinetd.spec 27 Jul 2009 08:06:05 -0000 1.61 @@ -1,7 +1,7 @@ Summary: A secure replacement for inetd Name: xinetd Version: 2.3.14 -Release: 22%{?dist} +Release: 23%{?dist} License: xinetd Group: System Environment/Daemons Epoch: 2 @@ -115,6 +115,9 @@ fi %{_mandir}/*/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2:2.3.14-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2:2.3.14-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:06:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:06:25 +0000 (UTC) Subject: rpms/xiphos/devel xiphos.spec,1.1,1.2 Message-ID: <20090727080625.E5F8911C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xiphos/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10076 Modified Files: xiphos.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xiphos.spec =================================================================== RCS file: /cvs/pkgs/rpms/xiphos/devel/xiphos.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xiphos.spec 9 Jun 2009 01:25:51 -0000 1.1 +++ xiphos.spec 27 Jul 2009 08:06:25 -0000 1.2 @@ -1,6 +1,6 @@ Name: xiphos Version: 3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bible study and research tool Group: Applications/Text @@ -77,6 +77,9 @@ scrollkeeper-update -q || : %_datadir/gnome/help/xiphos %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun May 18 2009 Deji Akingunola - 3.1-1 - Update to the 3.1 release From jkeating at fedoraproject.org Mon Jul 27 08:06:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:06:40 +0000 (UTC) Subject: rpms/xjavadoc/devel xjavadoc.spec,1.21,1.22 Message-ID: <20090727080640.D4AEE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xjavadoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10327 Modified Files: xjavadoc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xjavadoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xjavadoc/devel/xjavadoc.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xjavadoc.spec 26 Feb 2009 09:43:34 -0000 1.21 +++ xjavadoc.spec 27 Jul 2009 08:06:40 -0000 1.22 @@ -36,7 +36,7 @@ Name: xjavadoc Version: 1.1 -Release: 6.5%{?dist} +Release: 7.5%{?dist} Epoch: 0 Summary: The XJavaDoc engine License: BSD @@ -189,6 +189,9 @@ fi %ghost %doc %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.1-7.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.1-6.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:06:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:06:54 +0000 (UTC) Subject: rpms/xjparse/devel xjparse.spec,1.2,1.3 Message-ID: <20090727080654.9ACD311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xjparse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10490 Modified Files: xjparse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xjparse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xjparse/devel/xjparse.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xjparse.spec 26 Feb 2009 09:44:40 -0000 1.2 +++ xjparse.spec 27 Jul 2009 08:06:54 -0000 1.3 @@ -1,6 +1,6 @@ Name: xjparse Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Wrapper for the Xerces XML Schema validator Group: Applications/Text License: ASL 2.0 @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xjparse %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:07:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:07:14 +0000 (UTC) Subject: rpms/xkeyboard-config/devel xkeyboard-config.spec,1.38,1.39 Message-ID: <20090727080714.4557E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xkeyboard-config/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10699 Modified Files: xkeyboard-config.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xkeyboard-config.spec =================================================================== RCS file: /cvs/pkgs/rpms/xkeyboard-config/devel/xkeyboard-config.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- xkeyboard-config.spec 29 May 2009 04:59:12 -0000 1.38 +++ xkeyboard-config.spec 27 Jul 2009 08:07:13 -0000 1.39 @@ -4,7 +4,7 @@ Summary: X Keyboard Extension configuration data Name: xkeyboard-config Version: 1.6 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: User Interface/X URL: http://www.freedesktop.org/wiki/Software/XKeyboardConfig @@ -92,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/X11/xkb/rules/xorg.xml %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 29 2009 Peter Hutterer - 1.6-1 - xkeyboard-config 1.6 - Dropping all patches, merged upstream. From jkeating at fedoraproject.org Mon Jul 27 08:07:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:07:28 +0000 (UTC) Subject: rpms/xkeycaps/devel xkeycaps.spec,1.10,1.11 Message-ID: <20090727080728.4E4D811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xkeycaps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10845 Modified Files: xkeycaps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xkeycaps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xkeycaps/devel/xkeycaps.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xkeycaps.spec 26 Feb 2009 09:46:41 -0000 1.10 +++ xkeycaps.spec 27 Jul 2009 08:07:28 -0000 1.11 @@ -3,7 +3,7 @@ Name: xkeycaps Summary: Graphical front end to xmodmap Version: 2.46 -Release: 8%{?dist}.3 +Release: 9%{?dist}.3 License: MIT Group: Applications/System Source0: http://www.jwz.org/xkeycaps/%{name}-%{version}.tar.Z @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.46-9.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.46-8.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:07:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:07:42 +0000 (UTC) Subject: rpms/xl2tpd/devel xl2tpd.spec,1.20,1.21 Message-ID: <20090727080742.831FD11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xl2tpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10993 Modified Files: xl2tpd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xl2tpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xl2tpd/devel/xl2tpd.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xl2tpd.spec 9 Mar 2009 00:28:09 -0000 1.20 +++ xl2tpd.spec 27 Jul 2009 08:07:42 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Layer 2 Tunnelling Protocol Daemon (RFC 2661) Name: xl2tpd Version: 1.2.4 -Release: 3%{?dist} +Release: 4%{?dist} # No version specified. License: GPL+ Url: http://www.xelerance.com/software/xl2tpd/ @@ -92,6 +92,9 @@ fi %dir %{_localstatedir}/run/xl2tpd %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Paul Wouters - 1.2.4-3 - Bump version for tagging mistake From jkeating at fedoraproject.org Mon Jul 27 08:07:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:07:57 +0000 (UTC) Subject: rpms/xlcrack/devel xlcrack.spec,1.2,1.3 Message-ID: <20090727080757.6A9F211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xlcrack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11134 Modified Files: xlcrack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xlcrack.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlcrack/devel/xlcrack.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xlcrack.spec 26 Feb 2009 09:48:34 -0000 1.2 +++ xlcrack.spec 27 Jul 2009 08:07:56 -0000 1.3 @@ -1,6 +1,6 @@ Name: xlcrack Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Recover lost and forgotten passwords from XLS files Group: Applications/File @@ -44,6 +44,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:08:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:08:12 +0000 (UTC) Subject: rpms/xlhtml/devel xlhtml.spec,1.14,1.15 Message-ID: <20090727080812.9987D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xlhtml/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11319 Modified Files: xlhtml.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xlhtml.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlhtml/devel/xlhtml.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xlhtml.spec 1 Mar 2009 16:29:51 -0000 1.14 +++ xlhtml.spec 27 Jul 2009 08:08:12 -0000 1.15 @@ -1,7 +1,7 @@ Name: xlhtml Summary: Excel 95/97 and PowerPoint to HTML converter Version: 0.5 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Applications/Text @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 01 2009 Robert Scheck 0.5-10 - Solve the x86_64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Mon Jul 27 08:08:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:08:30 +0000 (UTC) Subject: rpms/xloadimage/devel xloadimage.spec,1.2,1.3 Message-ID: <20090727080830.7016711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xloadimage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11478 Modified Files: xloadimage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xloadimage.spec =================================================================== RCS file: /cvs/pkgs/rpms/xloadimage/devel/xloadimage.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xloadimage.spec 26 Feb 2009 09:51:08 -0000 1.2 +++ xloadimage.spec 27 Jul 2009 08:08:29 -0000 1.3 @@ -1,7 +1,7 @@ Name: xloadimage Summary: Image viewer and processor Version: 4.1 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: User Interface/X Source0: ftp://ftp.x.org/R5contrib/%{name}.%{version}.tar.gz @@ -109,6 +109,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:08:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:08:46 +0000 (UTC) Subject: rpms/xlockmore/devel xlockmore.spec,1.17,1.18 Message-ID: <20090727080846.0402A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xlockmore/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11643 Modified Files: xlockmore.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xlockmore.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlockmore/devel/xlockmore.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xlockmore.spec 26 Feb 2009 09:51:58 -0000 1.17 +++ xlockmore.spec 27 Jul 2009 08:08:45 -0000 1.18 @@ -1,7 +1,7 @@ Summary: Screen lock and screen saver Name: xlockmore Version: 5.26.1 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: Amusements/Graphics URL: http://www.tux.org/~bagleyd/xlockmore.html @@ -107,6 +107,9 @@ desktop-file-install \ %{_bindir}/xglock %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 5.26.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 5.26.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:09:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:09:16 +0000 (UTC) Subject: rpms/xmbdfed/devel xmbdfed.spec,1.2,1.3 Message-ID: <20090727080916.AB7B311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmbdfed/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11983 Modified Files: xmbdfed.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmbdfed.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmbdfed/devel/xmbdfed.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xmbdfed.spec 26 Feb 2009 09:53:46 -0000 1.2 +++ xmbdfed.spec 27 Jul 2009 08:09:16 -0000 1.3 @@ -1,7 +1,7 @@ Name: xmbdfed Summary: Bitmap Font Editor Version: 4.7 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: Applications/System Source0: http://crl.nmsu.edu/~mleisher/%{name}-%{version}.tar.bz2 @@ -57,6 +57,9 @@ rm -rf %{buildroot} %{_mandir}/man1/xmbdfed* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:09:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:09:32 +0000 (UTC) Subject: rpms/xml-commons-apis/devel xml-commons-apis.spec,1.9,1.10 Message-ID: <20090727080932.6692511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-commons-apis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12142 Modified Files: xml-commons-apis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml-commons-apis.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-commons-apis/devel/xml-commons-apis.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xml-commons-apis.spec 26 Feb 2009 09:54:46 -0000 1.9 +++ xml-commons-apis.spec 27 Jul 2009 08:09:31 -0000 1.10 @@ -35,7 +35,7 @@ Name: xml-commons-apis Summary: APIs for DOM, SAX, and JAXP Version: 1.3.04 -Release: 2.5%{?dist} +Release: 3.5%{?dist} Epoch: 0 License: ASL 2.0 and W3C and Public Domain URL: http://xml.apache.org/commons/ @@ -193,6 +193,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.3.04-3.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.3.04-2.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:09:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:09:46 +0000 (UTC) Subject: rpms/xml-commons-apis12/devel xml-commons-apis12.spec,1.7,1.8 Message-ID: <20090727080946.6A8E311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-commons-apis12/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12303 Modified Files: xml-commons-apis12.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml-commons-apis12.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-commons-apis12/devel/xml-commons-apis12.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xml-commons-apis12.spec 26 Feb 2009 09:55:50 -0000 1.7 +++ xml-commons-apis12.spec 27 Jul 2009 08:09:46 -0000 1.8 @@ -35,7 +35,7 @@ Name: xml-commons-apis12 Epoch: 0 Version: 1.2.04 -Release: 2.5%{?dist} +Release: 3.5%{?dist} Summary: JAXP 1.2, DOM 2, SAX 2.0.1, SAX2-ext 1.0 apis Group: System Environment/Libraries URL: http://xml.apache.org/commons/ @@ -177,6 +177,9 @@ fi # ----------------------------------------------------------------------------- %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.2.04-3.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.2.04-2.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:10:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:10:00 +0000 (UTC) Subject: rpms/xml-commons-resolver/devel xml-commons-resolver.spec, 1.20, 1.21 Message-ID: <20090727081000.D965511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-commons-resolver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12435 Modified Files: xml-commons-resolver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml-commons-resolver.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-commons-resolver/devel/xml-commons-resolver.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xml-commons-resolver.spec 26 Feb 2009 09:56:46 -0000 1.20 +++ xml-commons-resolver.spec 27 Jul 2009 08:10:00 -0000 1.21 @@ -7,7 +7,7 @@ Name: xml-commons-resolver Version: 1.1 -Release: 3.15%{?dist} +Release: 4.15%{?dist} Epoch: 0 Summary: Resolver subproject of xml-commons. License: ASL 1.1 @@ -149,6 +149,9 @@ fi %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.1-4.15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.1-3.15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:10:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:10:14 +0000 (UTC) Subject: rpms/xml-commons-which/devel xml-commons-which.spec,1.5,1.6 Message-ID: <20090727081014.A62C311C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-commons-which/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12617 Modified Files: xml-commons-which.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml-commons-which.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-commons-which/devel/xml-commons-which.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xml-commons-which.spec 26 Feb 2009 09:57:44 -0000 1.5 +++ xml-commons-which.spec 27 Jul 2009 08:10:14 -0000 1.6 @@ -34,7 +34,7 @@ Summary: Which subproject of xml-commons Name: xml-commons-which Version: 1.0 -Release: 2.b2.0.3%{?dist} +Release: 3.b2.0.3%{?dist} Epoch: 1 License: ASL 1.1 and W3C URL: http://xml.apache.org/commons/ @@ -168,6 +168,9 @@ fi %endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.0-3.b2.0.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.0-2.b2.0.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:10:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:10:26 +0000 (UTC) Subject: rpms/xml-security-c/devel xml-security-c.spec,1.2,1.3 Message-ID: <20090727081026.13AC611C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml-security-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12748 Modified Files: xml-security-c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml-security-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml-security-c/devel/xml-security-c.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xml-security-c.spec 6 Jul 2009 17:27:38 -0000 1.2 +++ xml-security-c.spec 27 Jul 2009 08:10:25 -0000 1.3 @@ -1,6 +1,6 @@ Name: xml-security-c Version: 1.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Implementation of W3C security standards for XML Group: System Environment/Libraries @@ -81,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT # %doc CHANGELOG.txt %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 06 2009 Antti Andreimann - 1.5.0-1 - New upstream release From jkeating at fedoraproject.org Mon Jul 27 08:10:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:10:44 +0000 (UTC) Subject: rpms/xml2/devel xml2.spec,1.1,1.2 Message-ID: <20090727081044.CE92F11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xml2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12919 Modified Files: xml2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xml2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xml2/devel/xml2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xml2.spec 30 Mar 2009 21:52:27 -0000 1.1 +++ xml2.spec 27 Jul 2009 08:10:44 -0000 1.2 @@ -1,6 +1,6 @@ Name: xml2 Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML/Unix Processing Tools Group: Applications/Text License: GPLv2+ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 28 2009 Thomas Moschny - 0.4-2 - Use macros in Source0 tag. From jkeating at fedoraproject.org Mon Jul 27 08:11:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:11:02 +0000 (UTC) Subject: rpms/xmldb-api/devel xmldb-api.spec,1.5,1.6 Message-ID: <20090727081102.2B2AE11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmldb-api/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13092 Modified Files: xmldb-api.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmldb-api.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmldb-api/devel/xmldb-api.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmldb-api.spec 26 Feb 2009 09:58:43 -0000 1.5 +++ xmldb-api.spec 27 Jul 2009 08:11:01 -0000 1.6 @@ -36,7 +36,7 @@ Name: xmldb-api Version: 0.1 -Release: 0.3.%{cvs_version}.1.3%{?dist} +Release: 0.4.%{cvs_version}.1.3%{?dist} Epoch: 1 Summary: XML:DB API for Java License: BSD @@ -181,6 +181,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.1-0.4.20011111cvs.1.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:0.1-0.3.20011111cvs.1.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:11:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:11:15 +0000 (UTC) Subject: rpms/xmlenc/devel xmlenc.spec,1.2,1.3 Message-ID: <20090727081115.25C1D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlenc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13270 Modified Files: xmlenc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlenc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlenc/devel/xmlenc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xmlenc.spec 26 Feb 2009 09:59:42 -0000 1.2 +++ xmlenc.spec 27 Jul 2009 08:11:14 -0000 1.3 @@ -1,6 +1,6 @@ Name: xmlenc Version: 0.52 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Light-weight XML output library for Java Group: Development/Libraries @@ -71,6 +71,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.52-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.52-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:11:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:11:26 +0000 (UTC) Subject: rpms/xmlfy/devel xmlfy.spec,1.1,1.2 Message-ID: <20090727081126.0744911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlfy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13389 Modified Files: xmlfy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlfy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlfy/devel/xmlfy.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xmlfy.spec 24 May 2009 07:14:46 -0000 1.1 +++ xmlfy.spec 27 Jul 2009 08:11:25 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Convert text/UTF-8 based output into XML format Name: xmlfy Version: 1.4.3 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: Applications/Text Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-src.tar.gz @@ -50,6 +50,9 @@ make DESTDIR=%{buildroot} bindir=%{_bind rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 29 2009 Arthur Gouros 1.4.3-1 - point release, consult RELEASE_NOTES file for details From jkeating at fedoraproject.org Mon Jul 27 08:11:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:11:38 +0000 (UTC) Subject: rpms/xmlgraphics-commons/devel xmlgraphics-commons.spec,1.16,1.17 Message-ID: <20090727081138.48B6711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlgraphics-commons/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13530 Modified Files: xmlgraphics-commons.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlgraphics-commons.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlgraphics-commons/devel/xmlgraphics-commons.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xmlgraphics-commons.spec 26 Feb 2009 10:00:38 -0000 1.16 +++ xmlgraphics-commons.spec 27 Jul 2009 08:11:38 -0000 1.17 @@ -1,6 +1,6 @@ Name: xmlgraphics-commons Version: 1.3 -Release: 2 +Release: 3 Epoch: 0 Summary: XML Graphics Commons @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:11:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:11:49 +0000 (UTC) Subject: rpms/xmlindent/devel xmlindent.spec,1.10,1.11 Message-ID: <20090727081149.C285D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlindent/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13652 Modified Files: xmlindent.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlindent.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlindent/devel/xmlindent.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xmlindent.spec 26 Feb 2009 10:01:44 -0000 1.10 +++ xmlindent.spec 27 Jul 2009 08:11:49 -0000 1.11 @@ -1,6 +1,6 @@ Name: xmlindent Version: 0.2.17 -Release: 10%{?dist} +Release: 11%{?dist} Summary: XML stream reformatter Group: Applications/Text License: GPLv2+ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xmlindent.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.17-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.2.17-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:12:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:12:02 +0000 (UTC) Subject: rpms/xmlrpc/devel xmlrpc.spec,1.24,1.25 Message-ID: <20090727081202.CC4F711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlrpc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13790 Modified Files: xmlrpc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlrpc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlrpc/devel/xmlrpc.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xmlrpc.spec 26 Feb 2009 10:02:37 -0000 1.24 +++ xmlrpc.spec 27 Jul 2009 08:12:02 -0000 1.25 @@ -34,7 +34,7 @@ Name: xmlrpc Version: 2.0.1 -Release: 5.5%{?dist} +Release: 6.5%{?dist} Epoch: 0 Summary: Java XML-RPC implementation License: ASL 2.0 @@ -146,6 +146,9 @@ fi %{_javadocdir}/%{name}-%{version} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:2.0.1-6.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:2.0.1-5.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:12:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:12:19 +0000 (UTC) Subject: rpms/xmlrpc-c/devel xmlrpc-c.spec,1.35,1.36 Message-ID: <20090727081219.57C0211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlrpc-c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13965 Modified Files: xmlrpc-c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlrpc-c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlrpc-c/devel/xmlrpc-c.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- xmlrpc-c.spec 26 Feb 2009 10:03:31 -0000 1.35 +++ xmlrpc-c.spec 27 Jul 2009 08:12:19 -0000 1.36 @@ -6,7 +6,7 @@ Summary: A lightweight RPC library based on XML and HTTP Name: xmlrpc-c Version: 1.16.6 -Release: %release_func 2.%svnrev +Release: %release_func 3.%svnrev # See COPYING for details. # The Python 1.5.2 license used by a few files is just BSD. License: BSD and MIT @@ -208,6 +208,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.16.6-3.1582 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.16.6-2.1582 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:12:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:12:44 +0000 (UTC) Subject: rpms/xmlsec1/devel xmlsec1.spec,1.34,1.35 Message-ID: <20090727081244.1847911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlsec1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14242 Modified Files: xmlsec1.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlsec1.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlsec1/devel/xmlsec1.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xmlsec1.spec 26 Feb 2009 10:05:24 -0000 1.34 +++ xmlsec1.spec 27 Jul 2009 08:12:43 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Library providing support for "XML Signature" and "XML Encryption" standards Name: xmlsec1 Version: 1.2.11 -Release: 3 +Release: 4 License: MIT Group: Development/Libraries Source: ftp://ftp.aleksey.com/pub/xmlsec/releases/xmlsec1-%{version}.tar.gz @@ -238,6 +238,9 @@ rm -fr %{buildroot} %{prefix}/lib*/pkgconfig/xmlsec1-nss.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:12:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:12:32 +0000 (UTC) Subject: rpms/xmlrpc3/devel xmlrpc3.spec,1.13,1.14 Message-ID: <20090727081232.7F94311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlrpc3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14119 Modified Files: xmlrpc3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlrpc3.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlrpc3/devel/xmlrpc3.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xmlrpc3.spec 26 Feb 2009 10:04:28 -0000 1.13 +++ xmlrpc3.spec 27 Jul 2009 08:12:32 -0000 1.14 @@ -32,7 +32,7 @@ Name: xmlrpc3 Version: 3.0 -Release: 3.9%{?dist} +Release: 4.9%{?dist} Summary: Java XML-RPC implementation License: ASL 2.0 Group: Development/Libraries @@ -228,6 +228,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadir}/%{name}-server-%{version}-sources.jar %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0-4.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.0-3.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:12:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:12:57 +0000 (UTC) Subject: rpms/xmlstarlet/devel xmlstarlet.spec,1.6,1.7 Message-ID: <20090727081257.349AB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlstarlet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14349 Modified Files: xmlstarlet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlstarlet.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlstarlet/devel/xmlstarlet.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xmlstarlet.spec 26 Feb 2009 10:06:23 -0000 1.6 +++ xmlstarlet.spec 27 Jul 2009 08:12:56 -0000 1.7 @@ -1,6 +1,6 @@ Name: xmlstarlet Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Command Line XML Toolkit Group: Applications/Text License: MIT @@ -54,6 +54,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:13:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:13:10 +0000 (UTC) Subject: rpms/xmltex/devel xmltex.spec,1.22,1.23 Message-ID: <20090727081310.C146411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmltex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14514 Modified Files: xmltex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmltex.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmltex/devel/xmltex.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xmltex.spec 29 Jun 2009 10:17:30 -0000 1.22 +++ xmltex.spec 27 Jul 2009 08:13:10 -0000 1.23 @@ -1,7 +1,7 @@ Summary: Namespace-aware XML parser written in TeX Name: xmltex Version: 20020625 -Release: 13%{?dist} +Release: 14%{?dist} License: LPPL Group: Applications/Publishing URL: http://www.dcarlisle.demon.co.uk/xmltex/manual.html @@ -59,6 +59,9 @@ exit 0 %{_datadir}/texmf/tex/xmltex %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20020625-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 29 2009 Ondrej Vasik - 20020625-13 - fix trigger to use texlive instead of virtual provide @@ -156,8 +159,8 @@ exit 0 All persons listed below can be reached at @pld.org.pl $Log$ -Revision 1.22 2009/06/29 10:17:30 ovasik -fix trigger to use texlive instead of virtual provide +Revision 1.23 2009/07/27 08:13:10 jkeating +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Revision 1.6 2001/03/27 16:50:29 wiget add xmltex.cfg file and one missing dir in %%files; release 3 From jkeating at fedoraproject.org Mon Jul 27 08:14:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:14:03 +0000 (UTC) Subject: rpms/xmms/devel xmms.spec,1.40,1.41 Message-ID: <20090727081403.D1C2511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15095 Modified Files: xmms.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms/devel/xmms.spec,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- xmms.spec 12 Apr 2009 15:58:08 -0000 1.40 +++ xmms.spec 27 Jul 2009 08:14:03 -0000 1.41 @@ -1,6 +1,6 @@ Name: xmms Version: 1.2.11 -Release: 5.20071117cvs%{?dist} +Release: 6.20071117cvs%{?dist} Epoch: 1 Summary: The X MultiMedia System, a media player @@ -218,6 +218,9 @@ update-desktop-database -q || : %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.2.11-6.20071117cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 1:1.2.11-5.20071117cvs - Add "xmms-gui" provides, to be required from xmms-skins package (#470135). From jkeating at fedoraproject.org Mon Jul 27 08:14:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:14:17 +0000 (UTC) Subject: rpms/xmms-acme/devel xmms-acme.spec,1.10,1.11 Message-ID: <20090727081417.60DFF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-acme/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15253 Modified Files: xmms-acme.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-acme.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-acme/devel/xmms-acme.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xmms-acme.spec 26 Feb 2009 10:12:10 -0000 1.10 +++ xmms-acme.spec 27 Jul 2009 08:14:17 -0000 1.11 @@ -3,7 +3,7 @@ Summary: XMMS plugin to use special multimedia keys in GNOME or through acme Name: xmms-acme Version: 0.4.3 -Release: 10 +Release: 11 License: GPLv2+ Group: Applications/Multimedia URL: http://www.devin.com/xmms-xf86audio/ @@ -46,6 +46,9 @@ mapping and expects those media players %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:14:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:14:31 +0000 (UTC) Subject: rpms/xmms-adplug/devel xmms-adplug.spec,1.8,1.9 Message-ID: <20090727081431.3BAA011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-adplug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15371 Modified Files: xmms-adplug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-adplug.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-adplug/devel/xmms-adplug.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xmms-adplug.spec 26 Feb 2009 10:13:07 -0000 1.8 +++ xmms-adplug.spec 27 Jul 2009 08:14:30 -0000 1.9 @@ -4,7 +4,7 @@ Name: xmms-adplug Version: 1.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An XMMS plugin for AdLib (OPL2) music built on AdPlug URL: http://adplug.sourceforge.net/ Group: Applications/Multimedia @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING NEWS README TODO %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:14:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:14:47 +0000 (UTC) Subject: rpms/xmms-alarm/devel xmms-alarm.spec,1.16,1.17 Message-ID: <20090727081447.C570111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-alarm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15541 Modified Files: xmms-alarm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-alarm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-alarm/devel/xmms-alarm.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xmms-alarm.spec 26 Feb 2009 10:14:06 -0000 1.16 +++ xmms-alarm.spec 27 Jul 2009 08:14:47 -0000 1.17 @@ -2,7 +2,7 @@ Name: xmms-alarm Version: 0.3.7 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Plugin for using XMMS as an alarm clock License: GPLv2+ @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.7-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.7-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:15:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:15:05 +0000 (UTC) Subject: rpms/xmms-arts/devel xmms-arts.spec,1.9,1.10 Message-ID: <20090727081505.3381E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-arts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15718 Modified Files: xmms-arts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-arts.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-arts/devel/xmms-arts.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xmms-arts.spec 26 Feb 2009 10:15:05 -0000 1.9 +++ xmms-arts.spec 27 Jul 2009 08:15:04 -0000 1.10 @@ -1,7 +1,7 @@ Summary: X MultiMedia System output plugin for the aRts sound system Name: xmms-arts Version: 0.7.1 -Release: 8 +Release: 9 License: GPLv2 Group: Applications/Multimedia URL: http://www.xmms.org/ @@ -47,6 +47,9 @@ the KDE sound system. %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:15:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:15:54 +0000 (UTC) Subject: rpms/xmms-cdread/devel xmms-cdread.spec,1.17,1.18 Message-ID: <20090727081554.C931611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-cdread/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16176 Modified Files: xmms-cdread.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-cdread.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-cdread/devel/xmms-cdread.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xmms-cdread.spec 3 Mar 2009 22:50:15 -0000 1.17 +++ xmms-cdread.spec 27 Jul 2009 08:15:54 -0000 1.18 @@ -3,7 +3,7 @@ Summary: Digital audio CD input plugin for XMMS Name: xmms-cdread Version: 0.14 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.xmms.org/ @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %exclude %{xmmsinputdir}/libcdread.la %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.14-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 03 2009 Robert Scheck - 0.14-16 - Solve the x86_64-redhat-linux-gnu configure target error From jkeating at fedoraproject.org Mon Jul 27 08:16:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:16:15 +0000 (UTC) Subject: rpms/xmms-crossfade/devel xmms-crossfade.spec,1.17,1.18 Message-ID: <20090727081615.9BB8D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-crossfade/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16525 Modified Files: xmms-crossfade.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-crossfade.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-crossfade/devel/xmms-crossfade.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xmms-crossfade.spec 26 Feb 2009 10:17:20 -0000 1.17 +++ xmms-crossfade.spec 27 Jul 2009 08:16:15 -0000 1.18 @@ -3,7 +3,7 @@ Summary: Audio crossfade plugin for XMMS Name: xmms-crossfade Version: 0.3.12 -Release: 4 +Release: 5 License: GPLv2+ Group: Applications/Multimedia URL: http://www.eisenlohr.org/xmms-crossfade/ @@ -43,6 +43,9 @@ a gap-killer. %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:16:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:16:35 +0000 (UTC) Subject: rpms/xmms-flac/devel xmms-flac.spec,1.10,1.11 Message-ID: <20090727081635.3C20211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-flac/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16892 Modified Files: xmms-flac.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-flac.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-flac/devel/xmms-flac.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xmms-flac.spec 26 Feb 2009 10:18:18 -0000 1.10 +++ xmms-flac.spec 27 Jul 2009 08:16:34 -0000 1.11 @@ -3,7 +3,7 @@ Summary: XMMS plugin needed to play FLAC (Free Lossless Audio Codec) files Name: xmms-flac Version: 1.1.4 -Release: 5%{?dist} +Release: 6%{?dist} # The entire FLAC sources are covered by multiple licenses, but the xmms plugin # is only GPLv2+ License: GPLv2+ @@ -48,6 +48,9 @@ This is the input plugin for XMMS to be %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:16:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:16:50 +0000 (UTC) Subject: rpms/xmms-lirc/devel xmms-lirc.spec,1.14,1.15 Message-ID: <20090727081650.BEAAA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-lirc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17233 Modified Files: xmms-lirc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-lirc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-lirc/devel/xmms-lirc.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xmms-lirc.spec 26 Feb 2009 10:19:15 -0000 1.14 +++ xmms-lirc.spec 27 Jul 2009 08:16:50 -0000 1.15 @@ -3,7 +3,7 @@ Summary: X MultiMedia System control plugin to use infrared devices Name: xmms-lirc Version: 1.4 -Release: 13 +Release: 14 License: GPLv2+ Group: Applications/Multimedia URL: http://www.lirc.org/ @@ -43,6 +43,9 @@ LIRC (Linux Infrared Remote Control) plu %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:17:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:17:07 +0000 (UTC) Subject: rpms/xmms-modplug/devel xmms-modplug.spec,1.19,1.20 Message-ID: <20090727081707.3CEC411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-modplug/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17501 Modified Files: xmms-modplug.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-modplug.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-modplug/devel/xmms-modplug.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xmms-modplug.spec 6 Mar 2009 21:52:14 -0000 1.19 +++ xmms-modplug.spec 27 Jul 2009 08:17:06 -0000 1.20 @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.05-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Ville Skytt? - 2.05-15 - Add %%{?_isa} to xmms-libs dependency. From jkeating at fedoraproject.org Mon Jul 27 08:17:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:17:22 +0000 (UTC) Subject: rpms/xmms-musepack/devel xmms-musepack.spec,1.5,1.6 Message-ID: <20090727081722.BB63511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-musepack/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17670 Modified Files: xmms-musepack.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-musepack.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-musepack/devel/xmms-musepack.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmms-musepack.spec 26 Feb 2009 10:21:08 -0000 1.5 +++ xmms-musepack.spec 27 Jul 2009 08:17:22 -0000 1.6 @@ -3,7 +3,7 @@ Summary: X MultiMedia System input plugin to play musepack (mpc) files Name: xmms-musepack Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD Group: Applications/Multimedia URL: http://www.musepack.net/ @@ -41,6 +41,9 @@ X MultiMedia System input plugin to play %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:17:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:17:36 +0000 (UTC) Subject: rpms/xmms-pulse/devel xmms-pulse.spec,1.3,1.4 Message-ID: <20090727081736.0754011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-pulse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17805 Modified Files: xmms-pulse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-pulse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-pulse/devel/xmms-pulse.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xmms-pulse.spec 26 Feb 2009 10:22:05 -0000 1.3 +++ xmms-pulse.spec 27 Jul 2009 08:17:35 -0000 1.4 @@ -2,7 +2,7 @@ Name: xmms-pulse Version: 0.9.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: XMMS output plugin for the PulseAudio sound server Group: Applications/Multimedia @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:17:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:17:48 +0000 (UTC) Subject: rpms/xmms-scrobbler/devel xmms-scrobbler.spec,1.13,1.14 Message-ID: <20090727081748.ED9C111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-scrobbler/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17932 Modified Files: xmms-scrobbler.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-scrobbler.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-scrobbler/devel/xmms-scrobbler.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xmms-scrobbler.spec 17 Mar 2009 23:47:56 -0000 1.13 +++ xmms-scrobbler.spec 27 Jul 2009 08:17:48 -0000 1.14 @@ -3,7 +3,7 @@ Summary: Audioscrobbler plugin for XMMS Name: xmms-scrobbler Version: 0.4.0 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ Group: Applications/Multimedia URL: http://xmms-scrobbler.sommitrealweird.co.uk/ @@ -46,6 +46,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Robert Scheck - 0.4.0-7 - Rebuilt against libmusicbrainz < 3.0.0 From jkeating at fedoraproject.org Mon Jul 27 08:18:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:18:14 +0000 (UTC) Subject: rpms/xmms-sid/devel xmms-sid.spec,1.19,1.20 Message-ID: <20090727081814.AADA611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-sid/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18136 Modified Files: xmms-sid.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-sid.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-sid/devel/xmms-sid.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xmms-sid.spec 26 Feb 2009 10:23:58 -0000 1.19 +++ xmms-sid.spec 27 Jul 2009 08:18:14 -0000 1.20 @@ -5,7 +5,7 @@ Summary: SID music input plugin for X MultiMedia System (XMMS) Name: xmms-sid Version: 0.8.0 -Release: 0.7.beta19%{?dist} +Release: 0.8.beta19%{?dist} URL: http://www.tnsp.org/xmms-sid.php License: GPLv2+ Group: Applications/Multimedia @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.0-0.8.beta19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.8.0-0.7.beta19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 07:41:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 07:41:15 +0000 (UTC) Subject: rpms/xclip/devel xclip.spec,1.8,1.9 Message-ID: <20090727074115.4836311C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xclip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25727 Modified Files: xclip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xclip.spec =================================================================== RCS file: /cvs/pkgs/rpms/xclip/devel/xclip.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xclip.spec 16 Mar 2009 19:12:58 -0000 1.8 +++ xclip.spec 27 Jul 2009 07:41:14 -0000 1.9 @@ -1,6 +1,6 @@ Name: xclip Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System Summary: Command line clipboard grabber @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xclip.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Tom "spot" Callaway - 0.11-1 - update to 0.11 From jkeating at fedoraproject.org Mon Jul 27 08:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:09:01 +0000 (UTC) Subject: rpms/xlog/devel xlog.spec,1.12,1.13 Message-ID: <20090727080901.1115111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xlog/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11800 Modified Files: xlog.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xlog.spec =================================================================== RCS file: /cvs/pkgs/rpms/xlog/devel/xlog.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xlog.spec 20 Jul 2009 05:04:18 -0000 1.12 +++ xlog.spec 27 Jul 2009 08:09:00 -0000 1.13 @@ -1,6 +1,6 @@ Name: xlog Version: 2.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Logging program for Hamradio Operators Group: Applications/Communications @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Lucian Langa - 2.0.3-1 - new upstream release From jkeating at fedoraproject.org Mon Jul 27 08:13:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:13:24 +0000 (UTC) Subject: rpms/xmlto/devel xmlto.spec,1.48,1.49 Message-ID: <20090727081324.5F08711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14660 Modified Files: xmlto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlto.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlto/devel/xmlto.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- xmlto.spec 25 Mar 2009 15:08:17 -0000 1.48 +++ xmlto.spec 27 Jul 2009 08:13:24 -0000 1.49 @@ -1,7 +1,7 @@ Summary: A tool for converting XML files to various formats Name: xmlto Version: 0.0.22 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Applications/System #Older versions up to xmlto-0.0.20 @@ -96,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Ondrej Vasik - New version 0.0.22 - autodetection for tools/program paths, consolidated From jkeating at fedoraproject.org Mon Jul 27 08:13:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:13:37 +0000 (UTC) Subject: rpms/xmltoman/devel xmltoman.spec,1.3,1.4 Message-ID: <20090727081337.0AB2E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmltoman/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14810 Modified Files: xmltoman.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmltoman.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmltoman/devel/xmltoman.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xmltoman.spec 26 Feb 2009 10:09:07 -0000 1.3 +++ xmltoman.spec 27 Jul 2009 08:13:36 -0000 1.4 @@ -1,6 +1,6 @@ Name: xmltoman Version: 0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Scripts for converting XML to roff or HTML Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:13:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:13:49 +0000 (UTC) Subject: rpms/xmlunit/devel xmlunit.spec,1.5,1.6 Message-ID: <20090727081349.4CAFE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmlunit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14940 Modified Files: xmlunit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmlunit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmlunit/devel/xmlunit.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmlunit.spec 26 Feb 2009 10:10:03 -0000 1.5 +++ xmlunit.spec 27 Jul 2009 08:13:49 -0000 1.6 @@ -32,7 +32,7 @@ Name: xmlunit Version: 1.0 -Release: 7.2%{?dist} +Release: 8.2%{?dist} Epoch: 0 Summary: Provides classes to do asserts on xml License: BSD @@ -163,6 +163,9 @@ fi %doc %{_javadocdir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.0-8.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.0-7.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:18:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:18:30 +0000 (UTC) Subject: rpms/xmms-skins/devel xmms-skins.spec,1.7,1.8 Message-ID: <20090727081830.A00FD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-skins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18337 Modified Files: xmms-skins.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-skins.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-skins/devel/xmms-skins.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xmms-skins.spec 12 Apr 2009 15:54:59 -0000 1.7 +++ xmms-skins.spec 27 Jul 2009 08:18:30 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Skins for the X MultiMedia System Name: xmms-skins Version: 1.2.10 -Release: 21 +Release: 22 Epoch: 1 License: MIT and GPL+ and Copyright only and CC-BY Group: Applications/Multimedia @@ -101,6 +101,9 @@ skins were obtained from http://www.xmms %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.2.10-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Matthias Saou 1:1.2.10-21 - Replace "xmms" requirement with "xmms-gui" which other players can provide, audacious for instance (#470135). From jkeating at fedoraproject.org Mon Jul 27 08:18:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:18:49 +0000 (UTC) Subject: rpms/xmms-speex/devel xmms-speex.spec,1.14,1.15 Message-ID: <20090727081849.4AC8F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms-speex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18558 Modified Files: xmms-speex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms-speex.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms-speex/devel/xmms-speex.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xmms-speex.spec 26 Feb 2009 10:26:41 -0000 1.14 +++ xmms-speex.spec 27 Jul 2009 08:18:49 -0000 1.15 @@ -3,7 +3,7 @@ Summary: X MultiMedia System input plugin to play speex files Name: xmms-speex Version: 0.9.1 -Release: 14 +Release: 15 # Some files taken from other projects are GPLv2+, but the core is GPLv2 only License: GPLv2 Group: Applications/Multimedia @@ -49,6 +49,9 @@ X MultiMedia System input plugin to play %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:19:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:19:03 +0000 (UTC) Subject: rpms/xmms2/devel xmms2.spec,1.5,1.6 Message-ID: <20090727081903.D669511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmms2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18702 Modified Files: xmms2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmms2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmms2/devel/xmms2.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmms2.spec 26 Feb 2009 10:27:37 -0000 1.5 +++ xmms2.spec 27 Jul 2009 08:19:03 -0000 1.6 @@ -6,7 +6,7 @@ Name: xmms2 Summary: A modular audio framework and plugin architecture Version: 0.5 -Release: 6%{?dist} +Release: 7%{?dist} License: LGPLv2+ and GPLv2+ and BSD Group: Applications/Multimedia # We can't use the upstream source tarball as-is, because it includes an mp4 decoder. @@ -180,6 +180,9 @@ rm -rf %{buildroot} %{ruby_sitearch}/xmmsclient* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:19:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:19:18 +0000 (UTC) Subject: rpms/xmmsctrl/devel xmmsctrl.spec,1.2,1.3 Message-ID: <20090727081918.5B8DC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmmsctrl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18863 Modified Files: xmmsctrl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmmsctrl.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmmsctrl/devel/xmmsctrl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xmmsctrl.spec 26 Feb 2009 10:28:37 -0000 1.2 +++ xmmsctrl.spec 27 Jul 2009 08:19:18 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Command line control utility for xmms Name: xmmsctrl Version: 1.8 -Release: 5%{?dist} +Release: 6%{?dist} URL: http://www.docs.uu.se/~adavid Source0: http://user.it.uu.se/~adavid/utils/%{name}-%{version}.tar.gz Patch0: xmmsctrl-no-strip.patch @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xmmsctrl %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:19:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:19:33 +0000 (UTC) Subject: rpms/xmonad/devel xmonad.spec,1.5,1.6 Message-ID: <20090727081933.1367011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmonad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19002 Modified Files: xmonad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmonad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmonad/devel/xmonad.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmonad.spec 2 Jun 2009 14:01:30 -0000 1.5 +++ xmonad.spec 27 Jul 2009 08:19:32 -0000 1.6 @@ -8,7 +8,7 @@ Name: xmonad Version: 0.8.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A tiling window manager Group: User Interface/X @@ -172,6 +172,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Jens Petersen - 0.8.1-13 - buildrequires ghc-rpm-macros (cabal2spec-0.16) - rebuild for ghc-6.10.3 From jkeating at fedoraproject.org Mon Jul 27 08:19:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:19:42 +0000 (UTC) Subject: rpms/xmoto/devel xmoto.spec,1.52,1.53 Message-ID: <20090727081942.4FB4A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmoto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19120 Modified Files: xmoto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmoto.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmoto/devel/xmoto.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- xmoto.spec 15 Apr 2009 15:04:48 -0000 1.52 +++ xmoto.spec 27 Jul 2009 08:19:41 -0000 1.53 @@ -1,6 +1,6 @@ Name: xmoto Version: 0.5.1 -Release: 0%{?dist} +Release: 1%{?dist} Summary: Challenging 2D Motocross Platform Game Group: Amusements/Games @@ -123,6 +123,9 @@ fi %{_mandir}/man6/xmoto.6.gz %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.1-1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Jon Ciesla 0.5.1-0 - New upstream. - Dropped opengldepth patch, applied upstream. From jkeating at fedoraproject.org Mon Jul 27 08:19:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:19:56 +0000 (UTC) Subject: rpms/xmountains/devel xmountains.spec,1.2,1.3 Message-ID: <20090727081956.4078F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmountains/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19257 Modified Files: xmountains.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmountains.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmountains/devel/xmountains.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xmountains.spec 26 Feb 2009 10:29:34 -0000 1.2 +++ xmountains.spec 27 Jul 2009 08:19:56 -0000 1.3 @@ -1,6 +1,6 @@ Name: xmountains Version: 2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A fractal terrain generator Group: Amusements/Graphics @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:20:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:20:10 +0000 (UTC) Subject: rpms/xmp/devel xmp.spec,1.5,1.6 Message-ID: <20090727082010.E748E11C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xmp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19433 Modified Files: xmp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xmp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xmp/devel/xmp.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xmp.spec 20 Jul 2009 10:01:44 -0000 1.5 +++ xmp.spec 27 Jul 2009 08:20:10 -0000 1.6 @@ -3,7 +3,7 @@ Name: xmp Version: 2.5.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A multi-format module player Group: Applications/Multimedia #Source: http://dl.sourceforge.net/sourceforge/xmp/%{name}-%{version}.tar.gz @@ -94,6 +94,9 @@ rm -rf %{buildroot} %{xmms_input_plugin_dir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.5.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Michael Schwendt - 2.5.1-7 - patch further for Audacious 2, because the bmp_cfg_* symbols are gone since Audacious 1.5 already From jkeating at fedoraproject.org Mon Jul 27 08:20:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:20:26 +0000 (UTC) Subject: rpms/xnec2c/devel xnec2c.spec,1.3,1.4 Message-ID: <20090727082026.46FB711C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xnec2c/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19557 Modified Files: xnec2c.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xnec2c.spec =================================================================== RCS file: /cvs/pkgs/rpms/xnec2c/devel/xnec2c.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xnec2c.spec 26 Feb 2009 10:31:32 -0000 1.3 +++ xnec2c.spec 27 Jul 2009 08:20:26 -0000 1.4 @@ -1,6 +1,6 @@ Name: xnec2c Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK based graphical wrapper for nec2c Group: Applications/Communications @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_datadir}/pixmaps/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:20:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:20:47 +0000 (UTC) Subject: rpms/xom/devel xom.spec,1.7,1.8 Message-ID: <20090727082047.1F49111C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xom/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19753 Modified Files: xom.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xom.spec =================================================================== RCS file: /cvs/pkgs/rpms/xom/devel/xom.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xom.spec 26 Feb 2009 10:32:27 -0000 1.7 +++ xom.spec 27 Jul 2009 08:20:46 -0000 1.8 @@ -36,7 +36,7 @@ Summary: XML Pull Parser Name: xom Version: 1.0 -Release: 4.5%{?dist} +Release: 5.5%{?dist} Epoch: 0 License: LGPLv2 URL: http://www.xom.nu @@ -178,6 +178,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}-%{version}/xom-samples.jar %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.0-5.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.0-4.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:21:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:21:09 +0000 (UTC) Subject: rpms/xoo/devel xoo.spec,1.8,1.9 Message-ID: <20090727082109.13B2811C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19979 Modified Files: xoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/xoo/devel/xoo.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xoo.spec 26 Feb 2009 10:33:21 -0000 1.8 +++ xoo.spec 27 Jul 2009 08:21:08 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Xoo is a graphical wrapper around xnest Name: xoo Version: 0.7 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Url: http://projects.o-hand.com/%{name} Source0: http://projects.o-hand.com/sources/%{name}/%{name}-%{version}.tar.gz @@ -49,6 +49,9 @@ rm -rf %{buildroot} #%{_mandir}/*/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.7-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:21:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:21:25 +0000 (UTC) Subject: rpms/xorg-sgml-doctools/devel xorg-sgml-doctools.spec,1.4,1.5 Message-ID: <20090727082125.BA2AE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-sgml-doctools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20167 Modified Files: xorg-sgml-doctools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-sgml-doctools.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-sgml-doctools/devel/xorg-sgml-doctools.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xorg-sgml-doctools.spec 26 Feb 2009 10:34:21 -0000 1.4 +++ xorg-sgml-doctools.spec 27 Jul 2009 08:21:25 -0000 1.5 @@ -1,7 +1,7 @@ Summary: X.Org SGML documentation generation tools Name: xorg-sgml-doctools Version: 1.1.1 -Release: 3%{?dist} +Release: 4%{?dist} License: MIT Group: Development/Tools URL: http://www.x.org @@ -38,6 +38,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/sgml/X11/defs.ent %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:21:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:21:41 +0000 (UTC) Subject: rpms/xorg-x11-apps/devel xorg-x11-apps.spec,1.38,1.39 Message-ID: <20090727082141.A809711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-apps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20339 Modified Files: xorg-x11-apps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-apps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-apps/devel/xorg-x11-apps.spec,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- xorg-x11-apps.spec 23 Jul 2009 13:56:23 -0000 1.38 +++ xorg-x11-apps.spec 27 Jul 2009 08:21:41 -0000 1.39 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # NOTE: The package version should be set to the X11 major release from which # the OS release is based upon. Version: 7.4 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -190,6 +190,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xwud.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 7.4-2 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Mon Jul 27 08:22:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:22:05 +0000 (UTC) Subject: rpms/xorg-x11-docs/devel xorg-x11-docs.spec,1.9,1.10 Message-ID: <20090727082205.2595D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20584 Modified Files: xorg-x11-docs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-docs/devel/xorg-x11-docs.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xorg-x11-docs.spec 26 Feb 2009 10:36:14 -0000 1.9 +++ xorg-x11-docs.spec 27 Jul 2009 08:22:04 -0000 1.10 @@ -3,7 +3,7 @@ Summary: X.Org X11 documentation Name: xorg-x11-docs Version: 1.3 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: Documentation URL: http://www.x.org @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man7/security.7* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:22:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:22:20 +0000 (UTC) Subject: rpms/xorg-x11-drivers/devel xorg-x11-drivers.spec,1.39,1.40 Message-ID: <20090727082220.CA50A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drivers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20741 Modified Files: xorg-x11-drivers.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drivers.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drivers/devel/xorg-x11-drivers.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- xorg-x11-drivers.spec 26 Feb 2009 15:13:43 -0000 1.39 +++ xorg-x11-drivers.spec 27 Jul 2009 08:22:20 -0000 1.40 @@ -1,7 +1,7 @@ Summary: X.Org X11 driver installation package Name: xorg-x11-drivers Version: 7.3 -Release: 12%{?dist} +Release: 13%{?dist} License: MIT Group: User Interface/X Hardware Support BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kristian H?gsberg - 7.3-12 - Rename i810 to intel. From jkeating at fedoraproject.org Mon Jul 27 08:22:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:22:35 +0000 (UTC) Subject: rpms/xorg-x11-drv-acecad/devel xorg-x11-drv-acecad.spec,1.20,1.21 Message-ID: <20090727082235.DB42711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20901 Modified Files: xorg-x11-drv-acecad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-acecad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-acecad/devel/xorg-x11-drv-acecad.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-acecad.spec 16 Jul 2009 07:12:22 -0000 1.20 +++ xorg-x11-drv-acecad.spec 27 Jul 2009 08:22:35 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 acecad input driver Name: xorg-x11-drv-acecad Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/acecad.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Peter Hutterer 1.3.0-2 - acecad-1.3.0-abi.patch: cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:22:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:22:49 +0000 (UTC) Subject: rpms/xorg-x11-drv-aiptek/devel xorg-x11-drv-aiptek.spec,1.20,1.21 Message-ID: <20090727082249.F2A0711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21032 Modified Files: xorg-x11-drv-aiptek.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-aiptek.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-aiptek/devel/xorg-x11-drv-aiptek.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-aiptek.spec 16 Jul 2009 07:07:25 -0000 1.20 +++ xorg-x11-drv-aiptek.spec 27 Jul 2009 08:22:49 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 aiptek input driver Name: xorg-x11-drv-aiptek Version: 1.2.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/aiptek.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Peter Hutterer 1.2.0-2 - aiptek-1.2.0-abi.patch: cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:23:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:23:04 +0000 (UTC) Subject: rpms/xorg-x11-drv-apm/devel xorg-x11-drv-apm.spec,1.26,1.27 Message-ID: <20090727082305.015AD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-apm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21183 Modified Files: xorg-x11-drv-apm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-apm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-apm/devel/xorg-x11-drv-apm.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-apm.spec 15 Jul 2009 15:45:31 -0000 1.26 +++ xorg-x11-drv-apm.spec 27 Jul 2009 08:23:04 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 apm video driver Name: xorg-x11-drv-apm Version: 1.2.1 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/apm.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.1-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.2.1-3.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:23:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:23:19 +0000 (UTC) Subject: rpms/xorg-x11-drv-ark/devel xorg-x11-drv-ark.spec,1.22,1.23 Message-ID: <20090727082319.CC43D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-ark/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21322 Modified Files: xorg-x11-drv-ark.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-ark.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ark/devel/xorg-x11-drv-ark.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-ark.spec 22 Jun 2009 21:43:50 -0000 1.22 +++ xorg-x11-drv-ark.spec 27 Jul 2009 08:23:19 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 ark video driver Name: xorg-x11-drv-ark Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hwdata/videoaliases/ark.xinf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Adam Jackson 0.7.1-3 - Fix ABI for new server From jkeating at fedoraproject.org Mon Jul 27 08:23:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:23:33 +0000 (UTC) Subject: rpms/xorg-x11-drv-ast/devel xorg-x11-drv-ast.spec,1.16,1.17 Message-ID: <20090727082333.842C811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-ast/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21509 Modified Files: xorg-x11-drv-ast.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-ast.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ast/devel/xorg-x11-drv-ast.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xorg-x11-drv-ast.spec 15 Jul 2009 15:45:45 -0000 1.16 +++ xorg-x11-drv-ast.spec 27 Jul 2009 08:23:33 -0000 1.17 @@ -5,7 +5,7 @@ Summary: Xorg X11 ast video driver Name: xorg-x11-drv-ast Version: 0.87.0 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hwdata/videoaliases/ast.xinf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.87.0-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.87.0-3.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:23:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:23:53 +0000 (UTC) Subject: rpms/xorg-x11-drv-ati/devel xorg-x11-drv-ati.spec,1.179,1.180 Message-ID: <20090727082353.7EDBA11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-ati/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21712 Modified Files: xorg-x11-drv-ati.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-ati.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ati/devel/xorg-x11-drv-ati.spec,v retrieving revision 1.179 retrieving revision 1.180 diff -u -p -r1.179 -r1.180 --- xorg-x11-drv-ati.spec 15 Jul 2009 15:46:30 -0000 1.179 +++ xorg-x11-drv-ati.spec 27 Jul 2009 08:23:53 -0000 1.180 @@ -5,7 +5,7 @@ Summary: Xorg X11 ati video driver Name: xorg-x11-drv-ati Version: 6.12.2 -Release: 19%{?dist}.1 +Release: 20%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -95,6 +95,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/radeon.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 6.12.2-20.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 6.12.2-19.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:24:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:24:08 +0000 (UTC) Subject: rpms/xorg-x11-drv-chips/devel xorg-x11-drv-chips.spec,1.21,1.22 Message-ID: <20090727082408.7C3BE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-chips/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21855 Modified Files: xorg-x11-drv-chips.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-chips.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-chips/devel/xorg-x11-drv-chips.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-chips.spec 22 Jun 2009 21:49:31 -0000 1.21 +++ xorg-x11-drv-chips.spec 27 Jul 2009 08:24:08 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Xorg X11 chips video driver Name: xorg-x11-drv-chips Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/chips.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Adam Jackson 1.2.1-3 - Fix ABI for new server From jkeating at fedoraproject.org Mon Jul 27 08:24:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:24:21 +0000 (UTC) Subject: rpms/xorg-x11-drv-cirrus/devel xorg-x11-drv-cirrus.spec,1.31,1.32 Message-ID: <20090727082421.D0EED11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22005 Modified Files: xorg-x11-drv-cirrus.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-cirrus.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-cirrus/devel/xorg-x11-drv-cirrus.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-cirrus.spec 15 Jul 2009 15:47:14 -0000 1.31 +++ xorg-x11-drv-cirrus.spec 27 Jul 2009 08:24:20 -0000 1.32 @@ -5,7 +5,7 @@ Summary: Xorg X11 cirrus video driver Name: xorg-x11-drv-cirrus Version: 1.3.1 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/cirrus.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:24:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:24:35 +0000 (UTC) Subject: rpms/xorg-x11-drv-dummy/devel xorg-x11-drv-dummy.spec,1.24,1.25 Message-ID: <20090727082435.7022911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22170 Modified Files: xorg-x11-drv-dummy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-dummy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-dummy/devel/xorg-x11-drv-dummy.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-dummy.spec 15 Jul 2009 15:47:57 -0000 1.24 +++ xorg-x11-drv-dummy.spec 27 Jul 2009 08:24:35 -0000 1.25 @@ -5,7 +5,7 @@ Summary: Xorg X11 dummy video driver Name: xorg-x11-drv-dummy Version: 0.3.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/dummy_drv.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.3.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:24:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:24:47 +0000 (UTC) Subject: rpms/xorg-x11-drv-elographics/devel xorg-x11-drv-elographics.spec, 1.20, 1.21 Message-ID: <20090727082447.1488811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22291 Modified Files: xorg-x11-drv-elographics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-elographics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-elographics/devel/xorg-x11-drv-elographics.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-elographics.spec 17 Jul 2009 04:51:00 -0000 1.20 +++ xorg-x11-drv-elographics.spec 27 Jul 2009 08:24:46 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 elographics input driver Name: xorg-x11-drv-elographics Version: 1.2.3 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/elographics.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer - 1.2.3-3 - elographics-1.2.3-abi.patch: Cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:25:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:25:01 +0000 (UTC) Subject: rpms/xorg-x11-drv-evdev/devel xorg-x11-drv-evdev.spec,1.56,1.57 Message-ID: <20090727082501.24F4211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22432 Modified Files: xorg-x11-drv-evdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-evdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-evdev/devel/xorg-x11-drv-evdev.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- xorg-x11-drv-evdev.spec 15 Jul 2009 15:49:24 -0000 1.56 +++ xorg-x11-drv-evdev.spec 27 Jul 2009 08:25:00 -0000 1.57 @@ -7,7 +7,7 @@ Summary: Xorg X11 evdev input driver Name: xorg-x11-drv-evdev Version: 2.2.99 -Release: 3.%{gitdate}%{?dist}.1 +Release: 4.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -71,6 +71,9 @@ X.Org X11 evdev input driver development %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.99-4.20090629.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 2.2.99-3.20090629.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:25:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:25:16 +0000 (UTC) Subject: rpms/xorg-x11-drv-fbdev/devel xorg-x11-drv-fbdev.spec,1.27,1.28 Message-ID: <20090727082516.D885211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-fbdev/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22603 Modified Files: xorg-x11-drv-fbdev.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-fbdev.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-fbdev/devel/xorg-x11-drv-fbdev.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-drv-fbdev.spec 15 Jul 2009 15:49:37 -0000 1.27 +++ xorg-x11-drv-fbdev.spec 27 Jul 2009 08:25:16 -0000 1.28 @@ -5,7 +5,7 @@ Summary: Xorg X11 fbdev video driver Name: xorg-x11-drv-fbdev Version: 0.4.0 -Release: 5%{?dist}.1 +Release: 6%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/fbdev.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.0-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.4.0-5.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:25:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:25:31 +0000 (UTC) Subject: rpms/xorg-x11-drv-fpit/devel xorg-x11-drv-fpit.spec,1.21,1.22 Message-ID: <20090727082531.BB0F111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22749 Modified Files: xorg-x11-drv-fpit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-fpit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-fpit/devel/xorg-x11-drv-fpit.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-fpit.spec 17 Jul 2009 04:46:06 -0000 1.21 +++ xorg-x11-drv-fpit.spec 27 Jul 2009 08:25:30 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Xorg X11 fpit input driver Name: xorg-x11-drv-fpit Version: 1.3.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/policy/20thirdparty/10-fpit.fdi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer - 1.3.0-3 - fpit-1.3.0-abi.patch: Cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:25:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:25:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-geode/devel xorg-x11-drv-geode.spec,1.11,1.12 Message-ID: <20090727082544.6896011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-geode/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22908 Modified Files: xorg-x11-drv-geode.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-geode.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-geode/devel/xorg-x11-drv-geode.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xorg-x11-drv-geode.spec 15 Jul 2009 15:51:03 -0000 1.11 +++ xorg-x11-drv-geode.spec 27 Jul 2009 08:25:44 -0000 1.12 @@ -5,7 +5,7 @@ Summary: Xorg X11 AMD Geode video driver Name: xorg-x11-drv-geode Version: 2.11.2 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 URL: http://www.x.org/wiki/AMDGeodeDriver Source0: http://xorg.freedesktop.org/releases/individual/driver/xf86-video-geode-%{version}.tar.bz2 License: MIT @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/ztv_drv.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.11.2-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 2.11.2-2.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:25:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:25:58 +0000 (UTC) Subject: rpms/xorg-x11-drv-glint/devel xorg-x11-drv-glint.spec,1.24,1.25 Message-ID: <20090727082558.9018411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-glint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23049 Modified Files: xorg-x11-drv-glint.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-glint.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-glint/devel/xorg-x11-drv-glint.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-glint.spec 15 Jul 2009 15:51:47 -0000 1.24 +++ xorg-x11-drv-glint.spec 27 Jul 2009 08:25:58 -0000 1.25 @@ -9,7 +9,7 @@ Summary: Xorg X11 glint video driver Name: xorg-x11-drv-glint Version: 1.2.3 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/glint.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:26:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:26:11 +0000 (UTC) Subject: rpms/xorg-x11-drv-hyperpen/devel xorg-x11-drv-hyperpen.spec, 1.21, 1.22 Message-ID: <20090727082611.33A8F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23195 Modified Files: xorg-x11-drv-hyperpen.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-hyperpen.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-hyperpen/devel/xorg-x11-drv-hyperpen.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-hyperpen.spec 17 Jul 2009 04:36:15 -0000 1.21 +++ xorg-x11-drv-hyperpen.spec 27 Jul 2009 08:26:11 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Xorg X11 hyperpen input driver Name: xorg-x11-drv-hyperpen Version: 1.3.0 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{driverdir}/hyperpen_drv.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer - 1.3.0-2 - hyperpen-1.3.0-abi.patch: Cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:26:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:26:25 +0000 (UTC) Subject: rpms/xorg-x11-drv-i128/devel xorg-x11-drv-i128.spec,1.23,1.24 Message-ID: <20090727082625.E546511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-i128/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23320 Modified Files: xorg-x11-drv-i128.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-i128.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i128/devel/xorg-x11-drv-i128.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-i128.spec 15 Jul 2009 15:52:48 -0000 1.23 +++ xorg-x11-drv-i128.spec 27 Jul 2009 08:26:25 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 i128 video driver Name: xorg-x11-drv-i128 Version: 1.3.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i128.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:26:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:26:41 +0000 (UTC) Subject: rpms/xorg-x11-drv-i740/devel xorg-x11-drv-i740.spec,1.23,1.24 Message-ID: <20090727082641.501BE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-i740/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23509 Modified Files: xorg-x11-drv-i740.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-i740.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-i740/devel/xorg-x11-drv-i740.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-i740.spec 15 Jul 2009 15:53:31 -0000 1.23 +++ xorg-x11-drv-i740.spec 27 Jul 2009 08:26:41 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 i740 video driver Name: xorg-x11-drv-i740 Version: 1.3.1 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/i740.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.3.1-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:26:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:26:56 +0000 (UTC) Subject: rpms/xorg-x11-drv-intel/devel xorg-x11-drv-intel.spec,1.17,1.18 Message-ID: <20090727082656.14FA211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-intel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23654 Modified Files: xorg-x11-drv-intel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-intel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-intel/devel/xorg-x11-drv-intel.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xorg-x11-drv-intel.spec 21 Jul 2009 17:33:44 -0000 1.17 +++ xorg-x11-drv-intel.spec 27 Jul 2009 08:26:55 -0000 1.18 @@ -8,7 +8,7 @@ Summary: Xorg X11 Intel video driver Name: xorg-x11-drv-intel Version: 2.8.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -135,6 +135,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/intel_*.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Adam Jackson 2.8.0-1 - intel 2.8.0 - Fix chip names to match pci.ids where no official product name is known. From jkeating at fedoraproject.org Mon Jul 27 08:27:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:27:10 +0000 (UTC) Subject: rpms/xorg-x11-drv-ivtv/devel xorg-x11-drv-ivtv.spec,1.9,1.10 Message-ID: <20090727082710.F247011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-ivtv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23833 Modified Files: xorg-x11-drv-ivtv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-ivtv.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-ivtv/devel/xorg-x11-drv-ivtv.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xorg-x11-drv-ivtv.spec 7 May 2009 11:44:19 -0000 1.9 +++ xorg-x11-drv-ivtv.spec 27 Jul 2009 08:27:10 -0000 1.10 @@ -1,6 +1,6 @@ Name: xorg-x11-drv-ivtv Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Xorg X11 ivtv video driver Group: User Interface/X Hardware Support @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 7 2009 kwizart < kwizart at gmail.com > - 1.1.0-1 - Update to 1.1.0 (development) From jkeating at fedoraproject.org Mon Jul 27 08:27:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:27:27 +0000 (UTC) Subject: rpms/xorg-x11-drv-keyboard/devel xorg-x11-drv-keyboard.spec, 1.32, 1.33 Message-ID: <20090727082727.E2DBE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23989 Modified Files: xorg-x11-drv-keyboard.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-keyboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-keyboard/devel/xorg-x11-drv-keyboard.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-keyboard.spec 15 Jul 2009 15:54:31 -0000 1.32 +++ xorg-x11-drv-keyboard.spec 27 Jul 2009 08:27:27 -0000 1.33 @@ -7,7 +7,7 @@ Summary: Xorg X11 keyboard input driver Name: xorg-x11-drv-keyboard Version: 1.3.99 -Release: 2.%{gitdate}%{?dist}.1 +Release: 3.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/keyboard.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.99-3.20090715.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.3.99-2.20090715.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:27:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:27:40 +0000 (UTC) Subject: rpms/xorg-x11-drv-mach64/devel xorg-x11-drv-mach64.spec,1.5,1.6 Message-ID: <20090727082740.0D14411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24153 Modified Files: xorg-x11-drv-mach64.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-mach64.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mach64/devel/xorg-x11-drv-mach64.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xorg-x11-drv-mach64.spec 15 Jul 2009 19:37:23 -0000 1.5 +++ xorg-x11-drv-mach64.spec 27 Jul 2009 08:27:39 -0000 1.6 @@ -5,7 +5,7 @@ Summary: Xorg X11 mach64 video driver Name: xorg-x11-drv-mach64 Version: 6.8.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT #{_mandir}/man4/mach64.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 6.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson 6.8.1-1 - mach64 6.8.1 - mach64-6.8.1-defaultdepth.patch: Default to depth 16 (#472687) From jkeating at fedoraproject.org Mon Jul 27 08:27:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:27:54 +0000 (UTC) Subject: rpms/xorg-x11-drv-mga/devel xorg-x11-drv-mga.spec,1.32,1.33 Message-ID: <20090727082754.072AD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-mga/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24301 Modified Files: xorg-x11-drv-mga.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-mga.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mga/devel/xorg-x11-drv-mga.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-mga.spec 15 Jul 2009 15:55:58 -0000 1.32 +++ xorg-x11-drv-mga.spec 27 Jul 2009 08:27:53 -0000 1.33 @@ -7,7 +7,7 @@ Summary: Xorg X11 mga video driver Name: xorg-x11-drv-mga Version: 1.4.10 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mga.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.10-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.4.10-2.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:28:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:28:09 +0000 (UTC) Subject: rpms/xorg-x11-drv-mouse/devel xorg-x11-drv-mouse.spec,1.32,1.33 Message-ID: <20090727082809.0EF0E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-mouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24462 Modified Files: xorg-x11-drv-mouse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-mouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mouse/devel/xorg-x11-drv-mouse.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-mouse.spec 15 Jul 2009 15:56:39 -0000 1.32 +++ xorg-x11-drv-mouse.spec 27 Jul 2009 08:28:08 -0000 1.33 @@ -7,7 +7,7 @@ Summary: Xorg X11 mouse input driver Name: xorg-x11-drv-mouse Version: 1.4.99 -Release: 2.%{gitdate}%{?dist}.1 +Release: 3.%{gitdate}%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mousedrv.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.99-3.20090619.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.4.99-2.20090619.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:28:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:28:21 +0000 (UTC) Subject: rpms/xorg-x11-drv-mutouch/devel xorg-x11-drv-mutouch.spec, 1.22, 1.23 Message-ID: <20090727082821.62DD011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24617 Modified Files: xorg-x11-drv-mutouch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-mutouch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-mutouch/devel/xorg-x11-drv-mutouch.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-mutouch.spec 17 Jul 2009 04:25:36 -0000 1.22 +++ xorg-x11-drv-mutouch.spec 27 Jul 2009 08:28:21 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 mutouch input driver Name: xorg-x11-drv-mutouch Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/mutouch.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer - 1.2.1-3.1 - mutouch-1.2.1-abi.patch: Cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:28:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:28:38 +0000 (UTC) Subject: rpms/xorg-x11-drv-neomagic/devel xorg-x11-drv-neomagic.spec, 1.21, 1.22 Message-ID: <20090727082838.3B54111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24796 Modified Files: xorg-x11-drv-neomagic.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-neomagic.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-neomagic/devel/xorg-x11-drv-neomagic.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-drv-neomagic.spec 15 Jul 2009 15:57:36 -0000 1.21 +++ xorg-x11-drv-neomagic.spec 27 Jul 2009 08:28:37 -0000 1.22 @@ -5,7 +5,7 @@ Summary: Xorg X11 neomagic video driver Name: xorg-x11-drv-neomagic Version: 1.2.3 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/neomagic.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.2.3-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:28:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:28:51 +0000 (UTC) Subject: rpms/xorg-x11-drv-nouveau/devel xorg-x11-drv-nouveau.spec, 1.45, 1.46 Message-ID: <20090727082851.B127411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24966 Modified Files: xorg-x11-drv-nouveau.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-nouveau.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nouveau/devel/xorg-x11-drv-nouveau.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- xorg-x11-drv-nouveau.spec 16 Jul 2009 22:58:08 -0000 1.45 +++ xorg-x11-drv-nouveau.spec 27 Jul 2009 08:28:51 -0000 1.46 @@ -19,7 +19,7 @@ Name: xorg-x11-drv-nouveau # need to set an epoch to get version number in sync with upstream Epoch: 1 Version: %{nouveau_version} -Release: 3.%{snapshot}%{?dist} +Release: 4.%{snapshot}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nouveau.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.0.14-4.20090717gitb1b2330 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Ben Skeggs 0.0.14-3.20090717gitb1b2330 - somehow missed updated patches to go on top From jkeating at fedoraproject.org Mon Jul 27 08:29:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:29:07 +0000 (UTC) Subject: rpms/xorg-x11-drv-nv/devel xorg-x11-drv-nv.spec,1.88,1.89 Message-ID: <20090727082907.A5E8E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-nv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25140 Modified Files: xorg-x11-drv-nv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-nv.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-nv/devel/xorg-x11-drv-nv.spec,v retrieving revision 1.88 retrieving revision 1.89 diff -u -p -r1.88 -r1.89 --- xorg-x11-drv-nv.spec 15 Jul 2009 15:59:00 -0000 1.88 +++ xorg-x11-drv-nv.spec 27 Jul 2009 08:29:07 -0000 1.89 @@ -5,7 +5,7 @@ Summary: Xorg X11 nv video driver Name: xorg-x11-drv-nv Version: 2.1.14 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/nv.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.14-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 2.1.14-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:29:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:29:23 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/devel xorg-x11-drv-openchrome.spec, 1.46, 1.47 Message-ID: <20090727082923.252EE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25282 Modified Files: xorg-x11-drv-openchrome.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/xorg-x11-drv-openchrome.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- xorg-x11-drv-openchrome.spec 18 Jul 2009 12:28:45 -0000 1.46 +++ xorg-x11-drv-openchrome.spec 27 Jul 2009 08:29:22 -0000 1.47 @@ -10,7 +10,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 12%{?dist} +Release: 13%{?dist} URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -135,6 +135,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.903-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 18 2009 Xavier Bachelot - 0.2.903-12 - Update to latest snapshot (svn 758) : - Basic VX855 support. From jkeating at fedoraproject.org Mon Jul 27 08:29:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:29:36 +0000 (UTC) Subject: rpms/xorg-x11-drv-penmount/devel xorg-x11-drv-penmount.spec, 1.25, 1.26 Message-ID: <20090727082936.9618A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25448 Modified Files: xorg-x11-drv-penmount.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-penmount.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-penmount/devel/xorg-x11-drv-penmount.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-penmount.spec 17 Jul 2009 04:14:44 -0000 1.25 +++ xorg-x11-drv-penmount.spec 27 Jul 2009 08:29:36 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Xorg X11 penmount input driver Name: xorg-x11-drv-penmount Version: 1.4.0 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/penmount.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer - 1.4.0-3 - penmount-1.4.0-abi.patch: Cope with XINPUT ABI 7. From jkeating at fedoraproject.org Mon Jul 27 08:29:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:29:49 +0000 (UTC) Subject: rpms/xorg-x11-drv-r128/devel xorg-x11-drv-r128.spec,1.4,1.5 Message-ID: <20090727082949.078EC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-r128/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25576 Modified Files: xorg-x11-drv-r128.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-r128.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-r128/devel/xorg-x11-drv-r128.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xorg-x11-drv-r128.spec 15 Jul 2009 16:00:44 -0000 1.4 +++ xorg-x11-drv-r128.spec 27 Jul 2009 08:29:48 -0000 1.5 @@ -5,7 +5,7 @@ Summary: Xorg X11 r128 video driver Name: xorg-x11-drv-r128 Version: 6.8.0 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/r128.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 6.8.0-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 6.8.0-3.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:30:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:30:06 +0000 (UTC) Subject: rpms/xorg-x11-drv-radeonhd/devel xorg-x11-drv-radeonhd.spec, 1.62, 1.63 Message-ID: <20090727083006.E269511C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25717 Modified Files: xorg-x11-drv-radeonhd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-radeonhd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-radeonhd/devel/xorg-x11-drv-radeonhd.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- xorg-x11-drv-radeonhd.spec 15 Jul 2009 18:06:27 -0000 1.62 +++ xorg-x11-drv-radeonhd.spec 27 Jul 2009 08:30:06 -0000 1.63 @@ -33,7 +33,7 @@ Summary: Xorg X11 radeonhd driver for AMD GPG r5xx/r6xx Chipsets Name: xorg-x11-drv-radeonhd Version: 1.2.5 -Release: 2.10%{?alphatag}%{?dist} +Release: 3.10%{?alphatag}%{?dist} License: MIT Group: User Interface/X Hardware Support @@ -165,6 +165,9 @@ sed -i 's|\(built from %%s\)\\n\\n"|\1\\ %endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.5-3.10.20090714git +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Hans Ulrich Niedermann - 1.2.5-2.10.20090714git - compile with DRI support again (add mesa-libGL-devel build requirement) From jkeating at fedoraproject.org Mon Jul 27 08:30:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:30:20 +0000 (UTC) Subject: rpms/xorg-x11-drv-rendition/devel xorg-x11-drv-rendition.spec, 1.26, 1.27 Message-ID: <20090727083020.C3BCF11C04F8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25887 Modified Files: xorg-x11-drv-rendition.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-rendition.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-rendition/devel/xorg-x11-drv-rendition.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-rendition.spec 15 Jul 2009 16:00:58 -0000 1.26 +++ xorg-x11-drv-rendition.spec 27 Jul 2009 08:30:20 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 rendition video driver Name: xorg-x11-drv-rendition Version: 4.2.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/rendition.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.2.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 4.2.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:30:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:30:38 +0000 (UTC) Subject: rpms/xorg-x11-drv-s3/devel xorg-x11-drv-s3.spec,1.27,1.28 Message-ID: <20090727083038.8A81011C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-s3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26032 Modified Files: xorg-x11-drv-s3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-s3.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3/devel/xorg-x11-drv-s3.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-drv-s3.spec 2 Jul 2009 15:36:04 -0000 1.27 +++ xorg-x11-drv-s3.spec 27 Jul 2009 08:30:37 -0000 1.28 @@ -5,7 +5,7 @@ Summary: Xorg X11 s3 video driver Name: xorg-x11-drv-s3 Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/s3.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Adam Jackson 0.6.2-1 - s3 0.6.2 From jkeating at fedoraproject.org Mon Jul 27 08:30:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:30:51 +0000 (UTC) Subject: rpms/xorg-x11-drv-s3virge/devel xorg-x11-drv-s3virge.spec, 1.23, 1.24 Message-ID: <20090727083051.D7B7311C0424@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26185 Modified Files: xorg-x11-drv-s3virge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-s3virge.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-s3virge/devel/xorg-x11-drv-s3virge.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-s3virge.spec 15 Jul 2009 16:01:40 -0000 1.23 +++ xorg-x11-drv-s3virge.spec 27 Jul 2009 08:30:51 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 s3virge video driver Name: xorg-x11-drv-s3virge Version: 1.10.3 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/s3virge.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.10.3-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.10.3-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:01:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:01:57 +0000 (UTC) Subject: rpms/xfwm4/devel xfwm4.spec,1.34,1.35 Message-ID: <20090727080158.183E311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfwm4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7202 Modified Files: xfwm4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfwm4.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfwm4/devel/xfwm4.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- xfwm4.spec 20 Apr 2009 02:26:34 -0000 1.34 +++ xfwm4.spec 27 Jul 2009 08:01:57 -0000 1.35 @@ -1,7 +1,7 @@ Summary: Next generation window manager for Xfce Name: xfwm4 Version: 4.6.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfwm4-%{version}.tar.bz2 @@ -72,6 +72,9 @@ fi %{_libexecdir}/xfce4/xfwm4 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 19 2009 Kevin Fenzi - 4.6.1-1 - Update to 4.6.1 From jkeating at fedoraproject.org Mon Jul 27 08:31:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:31:12 +0000 (UTC) Subject: rpms/xorg-x11-drv-savage/devel xorg-x11-drv-savage.spec,1.30,1.31 Message-ID: <20090727083112.47DC611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-savage/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26405 Modified Files: xorg-x11-drv-savage.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-savage.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-savage/devel/xorg-x11-drv-savage.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- xorg-x11-drv-savage.spec 15 Jul 2009 16:01:52 -0000 1.30 +++ xorg-x11-drv-savage.spec 27 Jul 2009 08:31:12 -0000 1.31 @@ -5,7 +5,7 @@ Summary: Xorg X11 savage video driver Name: xorg-x11-drv-savage Version: 2.3.0 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/savage.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3.0-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 2.3.0-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:03:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:03:11 +0000 (UTC) Subject: rpms/xgrav/devel xgrav.spec,1.5,1.6 Message-ID: <20090727080311.5C6EF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xgrav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8059 Modified Files: xgrav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xgrav.spec =================================================================== RCS file: /cvs/pkgs/rpms/xgrav/devel/xgrav.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xgrav.spec 26 Feb 2009 09:32:39 -0000 1.5 +++ xgrav.spec 27 Jul 2009 08:03:11 -0000 1.6 @@ -1,6 +1,6 @@ Name: xgrav Version: 1.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A simple physics simulation for a large number of particles Group: Amusements/Games @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/32x32/apps/xgrav.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:02:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:02:53 +0000 (UTC) Subject: rpms/xgalaxy/devel xgalaxy.spec,1.11,1.12 Message-ID: <20090727080253.36BB311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xgalaxy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7875 Modified Files: xgalaxy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xgalaxy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xgalaxy/devel/xgalaxy.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xgalaxy.spec 26 Feb 2009 09:31:42 -0000 1.11 +++ xgalaxy.spec 27 Jul 2009 08:02:52 -0000 1.12 @@ -1,6 +1,6 @@ Name: xgalaxy Version: 2.0.34 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Arcade game: shoot down the space ships attacking the planet Group: Amusements/Games License: GPL+ @@ -110,6 +110,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.34-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.34-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:31:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:31:23 +0000 (UTC) Subject: rpms/xorg-x11-drv-siliconmotion/devel xorg-x11-drv-siliconmotion.spec, 1.22, 1.23 Message-ID: <20090727083123.B1BBD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26539 Modified Files: xorg-x11-drv-siliconmotion.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-siliconmotion.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-siliconmotion/devel/xorg-x11-drv-siliconmotion.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-siliconmotion.spec 15 Jul 2009 16:02:34 -0000 1.22 +++ xorg-x11-drv-siliconmotion.spec 27 Jul 2009 08:31:23 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 siliconmotion video driver Name: xorg-x11-drv-siliconmotion Version: 1.7.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/siliconmotion.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.7.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:02:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:02:38 +0000 (UTC) Subject: rpms/xfwm4-themes/devel xfwm4-themes.spec,1.21,1.22 Message-ID: <20090727080238.D6D6311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfwm4-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7730 Modified Files: xfwm4-themes.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfwm4-themes.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfwm4-themes/devel/xfwm4-themes.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xfwm4-themes.spec 27 Feb 2009 20:48:43 -0000 1.21 +++ xfwm4-themes.spec 27 Jul 2009 08:02:38 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Additional themes for xfwm4 Name: xfwm4-themes Version: 4.6.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL+ and BSD URL: http://www.xfce.org/ Source0: http://www.xfce.org/archive/xfce-%{version}/src/xfwm4-themes-%{version}.tar.bz2 @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/themes/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Kevin Fenzi - 4.6.0-1 - Update to 4.6.0 From jkeating at fedoraproject.org Mon Jul 27 08:31:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:31:36 +0000 (UTC) Subject: rpms/xorg-x11-drv-sis/devel xorg-x11-drv-sis.spec,1.32,1.33 Message-ID: <20090727083136.05BCC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-sis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26684 Modified Files: xorg-x11-drv-sis.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-sis.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sis/devel/xorg-x11-drv-sis.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-drv-sis.spec 15 Jul 2009 16:02:54 -0000 1.32 +++ xorg-x11-drv-sis.spec 27 Jul 2009 08:31:35 -0000 1.33 @@ -5,7 +5,7 @@ Summary: Xorg X11 sis video driver Name: xorg-x11-drv-sis Version: 0.10.1 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/sis.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10.1-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.10.1-3.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:02:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:02:15 +0000 (UTC) Subject: rpms/xfwm4-theme-nodoka/devel xfwm4-theme-nodoka.spec,1.4,1.5 Message-ID: <20090727080215.10FA811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xfwm4-theme-nodoka/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7479 Modified Files: xfwm4-theme-nodoka.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xfwm4-theme-nodoka.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfwm4-theme-nodoka/devel/xfwm4-theme-nodoka.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xfwm4-theme-nodoka.spec 26 Feb 2009 09:29:49 -0000 1.4 +++ xfwm4-theme-nodoka.spec 27 Jul 2009 08:02:14 -0000 1.5 @@ -1,6 +1,6 @@ Name: xfwm4-theme-nodoka Version: 0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Nodoka theme for xfwm4 Group: User Interface/Desktops @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:31:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:31:47 +0000 (UTC) Subject: rpms/xorg-x11-drv-sisusb/devel xorg-x11-drv-sisusb.spec,1.26,1.27 Message-ID: <20090727083147.3718011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26835 Modified Files: xorg-x11-drv-sisusb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-sisusb.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sisusb/devel/xorg-x11-drv-sisusb.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-drv-sisusb.spec 15 Jul 2009 16:03:37 -0000 1.26 +++ xorg-x11-drv-sisusb.spec 27 Jul 2009 08:31:47 -0000 1.27 @@ -5,7 +5,7 @@ Summary: Xorg X11 sisusb video driver Name: xorg-x11-drv-sisusb Version: 0.9.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.9.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:31:59 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:31:59 +0000 (UTC) Subject: rpms/xorg-x11-drv-sunbw2/devel xorg-x11-drv-sunbw2.spec,1.2,1.3 Message-ID: <20090727083159.94BE111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-sunbw2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26984 Modified Files: xorg-x11-drv-sunbw2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-sunbw2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sunbw2/devel/xorg-x11-drv-sunbw2.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xorg-x11-drv-sunbw2.spec 26 Feb 2009 11:12:02 -0000 1.2 +++ xorg-x11-drv-sunbw2.spec 27 Jul 2009 08:31:59 -0000 1.3 @@ -6,7 +6,7 @@ Summary: Xorg X11 sunbw2 video driver Name: xorg-x11-drv-sunbw2 Version: 1.1.0 -Release: 5%{?dist}.git%{gitdate} +Release: 6%{?dist}.git%{gitdate} URL: http://www.x.org #Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 Source0: %{tarball}-%{gitdate}.tar.bz2 @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-6.git20080527 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-5.git20080527 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:32:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:32:10 +0000 (UTC) Subject: rpms/xorg-x11-drv-suncg14/devel xorg-x11-drv-suncg14.spec,1.2,1.3 Message-ID: <20090727083210.77CB411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-suncg14/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27124 Modified Files: xorg-x11-drv-suncg14.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-suncg14.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-suncg14/devel/xorg-x11-drv-suncg14.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xorg-x11-drv-suncg14.spec 26 Feb 2009 11:12:57 -0000 1.2 +++ xorg-x11-drv-suncg14.spec 27 Jul 2009 08:32:10 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Xorg X11 suncg14 video driver Name: xorg-x11-drv-suncg14 Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.x.org Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:32:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:32:21 +0000 (UTC) Subject: rpms/xorg-x11-drv-suncg3/devel xorg-x11-drv-suncg3.spec,1.2,1.3 Message-ID: <20090727083221.8293D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-suncg3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27255 Modified Files: xorg-x11-drv-suncg3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-suncg3.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-suncg3/devel/xorg-x11-drv-suncg3.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xorg-x11-drv-suncg3.spec 26 Feb 2009 11:13:51 -0000 1.2 +++ xorg-x11-drv-suncg3.spec 27 Jul 2009 08:32:21 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Xorg X11 suncg3 video driver Name: xorg-x11-drv-suncg3 Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.x.org Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:32:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:32:32 +0000 (UTC) Subject: rpms/xorg-x11-drv-suncg6/devel xorg-x11-drv-suncg6.spec,1.2,1.3 Message-ID: <20090727083232.DC1EB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-suncg6/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27378 Modified Files: xorg-x11-drv-suncg6.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-suncg6.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-suncg6/devel/xorg-x11-drv-suncg6.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xorg-x11-drv-suncg6.spec 26 Feb 2009 11:14:52 -0000 1.2 +++ xorg-x11-drv-suncg6.spec 27 Jul 2009 08:32:32 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Xorg X11 suncg6 video driver Name: xorg-x11-drv-suncg6 Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.x.org Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -42,6 +42,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:32:45 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:32:45 +0000 (UTC) Subject: rpms/xorg-x11-drv-sunffb/devel xorg-x11-drv-sunffb.spec,1.4,1.5 Message-ID: <20090727083245.1D1E011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-sunffb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27513 Modified Files: xorg-x11-drv-sunffb.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-sunffb.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sunffb/devel/xorg-x11-drv-sunffb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xorg-x11-drv-sunffb.spec 11 Apr 2009 17:45:14 -0000 1.4 +++ xorg-x11-drv-sunffb.spec 27 Jul 2009 08:32:44 -0000 1.5 @@ -5,7 +5,7 @@ Summary: Xorg X11 sunffb video driver Name: xorg-x11-drv-sunffb Version: 1.2.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 Patch0: sunffb-sparc64.patch @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Apr 11 2009 Dennis Gilmore - 1.2.0-1 - update to 1.2.0 - enable sparc64 with asm patch From jkeating at fedoraproject.org Mon Jul 27 08:33:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:33:00 +0000 (UTC) Subject: rpms/xorg-x11-drv-sunleo/devel xorg-x11-drv-sunleo.spec,1.5,1.6 Message-ID: <20090727083300.124CF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-sunleo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27650 Modified Files: xorg-x11-drv-sunleo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-sunleo.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-sunleo/devel/xorg-x11-drv-sunleo.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xorg-x11-drv-sunleo.spec 13 Apr 2009 17:19:26 -0000 1.5 +++ xorg-x11-drv-sunleo.spec 27 Jul 2009 08:32:59 -0000 1.6 @@ -6,7 +6,7 @@ Summary: Xorg X11 sunleo video driver Name: xorg-x11-drv-sunleo Version: 1.1.0 -Release: 7%{?dist}.git%{gitdate} +Release: 8%{?dist}.git%{gitdate} URL: http://www.x.org #Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 Source0: %{tarball}-%{gitdate}.tar.bz2 @@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-8.git20090413 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Dennis Gilmore - 1.1.0-7.git20090413 - remove no longer needed patch From jkeating at fedoraproject.org Mon Jul 27 08:33:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:33:13 +0000 (UTC) Subject: rpms/xorg-x11-drv-suntcx/devel xorg-x11-drv-suntcx.spec,1.2,1.3 Message-ID: <20090727083313.A9C8311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-suntcx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27805 Modified Files: xorg-x11-drv-suntcx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-suntcx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-suntcx/devel/xorg-x11-drv-suntcx.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xorg-x11-drv-suntcx.spec 26 Feb 2009 11:17:40 -0000 1.2 +++ xorg-x11-drv-suntcx.spec 27 Jul 2009 08:33:13 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Xorg X11 suntcx video driver Name: xorg-x11-drv-suntcx Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} URL: http://www.x.org Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -43,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/*.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:33:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:33:30 +0000 (UTC) Subject: rpms/xorg-x11-drv-synaptics/devel xorg-x11-drv-synaptics.spec, 1.31, 1.32 Message-ID: <20090727083331.0125611C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27920 Modified Files: xorg-x11-drv-synaptics.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-synaptics.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-synaptics/devel/xorg-x11-drv-synaptics.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-drv-synaptics.spec 17 Jul 2009 03:53:45 -0000 1.31 +++ xorg-x11-drv-synaptics.spec 27 Jul 2009 08:33:30 -0000 1.32 @@ -7,7 +7,7 @@ Name: xorg-x11-drv-synaptics Summary: Xorg X11 Synaptics touchpad input driver Version: 1.1.99 -Release: 3.%{gitdate}%{?dist} +Release: 4.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -121,6 +121,9 @@ Development files for the Synaptics Touc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.99-4.20090717 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Peter Hutterer 1.1.99-3-20090717 - Update to today's git master. From jkeating at fedoraproject.org Mon Jul 27 08:33:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:33:44 +0000 (UTC) Subject: rpms/xorg-x11-drv-tdfx/devel xorg-x11-drv-tdfx.spec,1.28,1.29 Message-ID: <20090727083344.ED1C211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28106 Modified Files: xorg-x11-drv-tdfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-tdfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tdfx/devel/xorg-x11-drv-tdfx.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- xorg-x11-drv-tdfx.spec 15 Jul 2009 16:05:05 -0000 1.28 +++ xorg-x11-drv-tdfx.spec 27 Jul 2009 08:33:44 -0000 1.29 @@ -5,7 +5,7 @@ Summary: Xorg X11 tdfx video driver Name: xorg-x11-drv-tdfx Version: 1.4.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/tdfx.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.4.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:33:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:33:57 +0000 (UTC) Subject: rpms/xorg-x11-drv-trident/devel xorg-x11-drv-trident.spec, 1.27, 1.28 Message-ID: <20090727083357.55B0811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-trident/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28242 Modified Files: xorg-x11-drv-trident.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-trident.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-trident/devel/xorg-x11-drv-trident.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-drv-trident.spec 15 Jul 2009 16:05:49 -0000 1.27 +++ xorg-x11-drv-trident.spec 27 Jul 2009 08:33:57 -0000 1.28 @@ -5,7 +5,7 @@ Summary: Xorg X11 trident video driver Name: xorg-x11-drv-trident Version: 1.3.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/trident.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.3.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:34:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:34:10 +0000 (UTC) Subject: rpms/xorg-x11-drv-tseng/devel xorg-x11-drv-tseng.spec,1.22,1.23 Message-ID: <20090727083410.ED84E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28408 Modified Files: xorg-x11-drv-tseng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-tseng.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-tseng/devel/xorg-x11-drv-tseng.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-drv-tseng.spec 2 Jul 2009 15:54:28 -0000 1.22 +++ xorg-x11-drv-tseng.spec 27 Jul 2009 08:34:10 -0000 1.23 @@ -5,7 +5,7 @@ Summary: Xorg X11 tseng video driver Name: xorg-x11-drv-tseng Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/tseng.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Adam Jackson 1.2.2-1 - tseng 1.2.2 From jkeating at fedoraproject.org Mon Jul 27 08:34:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:34:24 +0000 (UTC) Subject: rpms/xorg-x11-drv-v4l/devel xorg-x11-drv-v4l.spec,1.20,1.21 Message-ID: <20090727083424.D214E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-v4l/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28579 Modified Files: xorg-x11-drv-v4l.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-v4l.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-v4l/devel/xorg-x11-drv-v4l.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-drv-v4l.spec 15 Jul 2009 16:06:33 -0000 1.20 +++ xorg-x11-drv-v4l.spec 27 Jul 2009 08:34:24 -0000 1.21 @@ -5,7 +5,7 @@ Summary: Xorg X11 v4l video driver Name: xorg-x11-drv-v4l Version: 0.2.0 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/v4l.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.0-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 0.2.0-2.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:34:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:34:43 +0000 (UTC) Subject: rpms/xorg-x11-drv-vesa/devel xorg-x11-drv-vesa.spec,1.39,1.40 Message-ID: <20090727083443.3E2FB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-vesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28766 Modified Files: xorg-x11-drv-vesa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-vesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vesa/devel/xorg-x11-drv-vesa.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- xorg-x11-drv-vesa.spec 15 Jul 2009 16:07:17 -0000 1.39 +++ xorg-x11-drv-vesa.spec 27 Jul 2009 08:34:43 -0000 1.40 @@ -5,7 +5,7 @@ Summary: Xorg X11 vesa video driver Name: xorg-x11-drv-vesa Version: 2.2.0 -Release: 3%{?dist}.1 +Release: 4%{?dist}.1 URL: http://www.x.org Source0: http://xorg.freedesktop.org/releases/individual/driver/%{tarball}-%{version}.tar.bz2 License: MIT @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/vesa.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 2.2.0-3.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:34:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:34:58 +0000 (UTC) Subject: rpms/xorg-x11-drv-vmmouse/devel xorg-x11-drv-vmmouse.spec, 1.27, 1.28 Message-ID: <20090727083458.4EB9F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-vmmouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28965 Modified Files: xorg-x11-drv-vmmouse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-vmmouse.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vmmouse/devel/xorg-x11-drv-vmmouse.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- xorg-x11-drv-vmmouse.spec 15 Jul 2009 16:07:59 -0000 1.27 +++ xorg-x11-drv-vmmouse.spec 27 Jul 2009 08:34:58 -0000 1.28 @@ -5,7 +5,7 @@ Summary: Xorg X11 vmmouse input driver Name: xorg-x11-drv-vmmouse Version: 12.6.4 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hal/fdi/policy/20thirdparty/11-x11-vmmouse.fdi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 12.6.4-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 12.6.4-2.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:35:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:35:11 +0000 (UTC) Subject: rpms/xorg-x11-drv-vmware/devel xorg-x11-drv-vmware.spec,1.23,1.24 Message-ID: <20090727083511.DCF7511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-vmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29127 Modified Files: xorg-x11-drv-vmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-vmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-vmware/devel/xorg-x11-drv-vmware.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- xorg-x11-drv-vmware.spec 15 Jul 2009 16:08:41 -0000 1.23 +++ xorg-x11-drv-vmware.spec 27 Jul 2009 08:35:11 -0000 1.24 @@ -5,7 +5,7 @@ Summary: Xorg X11 vmware video driver Name: xorg-x11-drv-vmware Version: 10.16.0 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/vmware.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 10.16.0-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 10.16.0-4.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:35:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:35:25 +0000 (UTC) Subject: rpms/xorg-x11-drv-void/devel xorg-x11-drv-void.spec,1.24,1.25 Message-ID: <20090727083525.4DEE911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-void/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29265 Modified Files: xorg-x11-drv-void.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-void.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-void/devel/xorg-x11-drv-void.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- xorg-x11-drv-void.spec 15 Jul 2009 16:08:53 -0000 1.24 +++ xorg-x11-drv-void.spec 27 Jul 2009 08:35:25 -0000 1.25 @@ -5,7 +5,7 @@ Summary: Xorg X11 void input driver Name: xorg-x11-drv-void Version: 1.2.0 -Release: 2%{?dist}.1 +Release: 3%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/void.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.2.0-2.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:35:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:35:41 +0000 (UTC) Subject: rpms/xorg-x11-drv-voodoo/devel xorg-x11-drv-voodoo.spec,1.25,1.26 Message-ID: <20090727083541.4304411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29446 Modified Files: xorg-x11-drv-voodoo.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-drv-voodoo.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-voodoo/devel/xorg-x11-drv-voodoo.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xorg-x11-drv-voodoo.spec 15 Jul 2009 16:09:38 -0000 1.25 +++ xorg-x11-drv-voodoo.spec 27 Jul 2009 08:35:41 -0000 1.26 @@ -5,7 +5,7 @@ Summary: Xorg X11 voodoo video driver Name: xorg-x11-drv-voodoo Version: 1.2.2 -Release: 1%{?dist}.1 +Release: 2%{?dist}.1 URL: http://www.x.org License: MIT Group: User Interface/X Hardware Support @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man4/voodoo.4* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Adam Jackson - 1.2.2-1.1 - ABI bump From jkeating at fedoraproject.org Mon Jul 27 08:36:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:36:04 +0000 (UTC) Subject: rpms/xorg-x11-filesystem/devel xorg-x11-filesystem.spec,1.12,1.13 Message-ID: <20090727083604.2930211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-filesystem/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29668 Modified Files: xorg-x11-filesystem.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-filesystem.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-filesystem/devel/xorg-x11-filesystem.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- xorg-x11-filesystem.spec 26 Feb 2009 11:27:46 -0000 1.12 +++ xorg-x11-filesystem.spec 27 Jul 2009 08:36:04 -0000 1.13 @@ -1,7 +1,7 @@ Summary: X.Org X11 filesystem layout Name: xorg-x11-filesystem Version: 7.3 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: System Environment/Base URL: http://www.redhat.com @@ -88,6 +88,9 @@ exit 0 %{_bindir}/xorg-x11-filesystem-upgrade %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 7.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:36:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:36:22 +0000 (UTC) Subject: rpms/xorg-x11-font-utils/devel xorg-x11-font-utils.spec,1.32,1.33 Message-ID: <20090727083622.2A41B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-font-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29840 Modified Files: xorg-x11-font-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-font-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-font-utils/devel/xorg-x11-font-utils.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- xorg-x11-font-utils.spec 23 Jul 2009 13:58:15 -0000 1.32 +++ xorg-x11-font-utils.spec 27 Jul 2009 08:36:22 -0000 1.33 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # IMPORTANT: If package ever gets renamed to something else, remove the Epoch line! Epoch: 1 Version: 7.2 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:7.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 7.2-8 - Un-require xorg-x11-filesystem - Other general spec cleanup. From jkeating at fedoraproject.org Mon Jul 27 08:36:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:36:37 +0000 (UTC) Subject: rpms/xorg-x11-fonts/devel xorg-x11-fonts.spec,1.29,1.30 Message-ID: <20090727083637.624D411C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30035 Modified Files: xorg-x11-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-fonts/devel/xorg-x11-fonts.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-fonts.spec 26 Feb 2009 22:30:41 -0000 1.29 +++ xorg-x11-fonts.spec 27 Jul 2009 08:36:37 -0000 1.30 @@ -26,7 +26,7 @@ Summary: X.Org X11 fonts Name: xorg-x11-fonts Version: 7.2 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT and Lucida and Public Domain Group: User Interface/X URL: http://www.x.org @@ -1158,6 +1158,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %verify(not md5 size mtime) %{_x11fontdir}/cyrillic/fonts.cache-* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Adam Jackson 7.2-8 - Yet another rebuild attempt. From jkeating at fedoraproject.org Mon Jul 27 08:36:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:36:50 +0000 (UTC) Subject: rpms/xorg-x11-proto-devel/devel xorg-x11-proto-devel.spec, 1.102, 1.103 Message-ID: <20090727083650.9B9F311C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-proto-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30204 Modified Files: xorg-x11-proto-devel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-proto-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-proto-devel/devel/xorg-x11-proto-devel.spec,v retrieving revision 1.102 retrieving revision 1.103 diff -u -p -r1.102 -r1.103 --- xorg-x11-proto-devel.spec 23 Jul 2009 12:55:57 -0000 1.102 +++ xorg-x11-proto-devel.spec 27 Jul 2009 08:36:50 -0000 1.103 @@ -7,7 +7,7 @@ Summary: X.Org X11 Protocol headers Name: xorg-x11-proto-devel Version: 7.4 -Release: 25%{?dist} +Release: 26%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -250,6 +250,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xproxymngproto.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.4-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 7.4-25 - fixesproto 4.1 From jkeating at fedoraproject.org Mon Jul 27 08:37:02 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:37:02 +0000 (UTC) Subject: rpms/xorg-x11-resutils/devel xorg-x11-resutils.spec,1.21,1.22 Message-ID: <20090727083702.95B3B11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-resutils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30334 Modified Files: xorg-x11-resutils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-resutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-resutils/devel/xorg-x11-resutils.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- xorg-x11-resutils.spec 26 Feb 2009 11:32:02 -0000 1.21 +++ xorg-x11-resutils.spec 27 Jul 2009 08:37:02 -0000 1.22 @@ -3,7 +3,7 @@ Summary: X.Org X11 X resource utilities Name: xorg-x11-%{pkgname} Version: 7.1 -Release: 7%{?dist} +Release: 8%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -88,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/viewres.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 7.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:37:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:37:16 +0000 (UTC) Subject: rpms/xorg-x11-server-utils/devel xorg-x11-server-utils.spec, 1.46, 1.47 Message-ID: <20090727083716.A74AD11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-server-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30541 Modified Files: xorg-x11-server-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-server-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server-utils/devel/xorg-x11-server-utils.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- xorg-x11-server-utils.spec 7 Jul 2009 18:23:28 -0000 1.46 +++ xorg-x11-server-utils.spec 27 Jul 2009 08:37:16 -0000 1.47 @@ -5,7 +5,7 @@ Summary: X.Org X11 X server utilities Name: xorg-x11-%{pkgname} Version: 7.4 -Release: 10%{?dist} +Release: 11%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -182,6 +182,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Adam Jackson 7.4-10 - xrandr 1.3.0 From jkeating at fedoraproject.org Mon Jul 27 08:37:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:37:28 +0000 (UTC) Subject: rpms/xorg-x11-twm/devel xorg-x11-twm.spec,1.22,1.23 Message-ID: <20090727083728.A669611C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-twm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30668 Modified Files: xorg-x11-twm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-twm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-twm/devel/xorg-x11-twm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-twm.spec 26 Feb 2009 11:33:56 -0000 1.22 +++ xorg-x11-twm.spec 27 Jul 2009 08:37:28 -0000 1.23 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # NOTE: Remove Epoch line if package gets renamed to something like "twm" Epoch: 1 Version: 1.0.3 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -76,6 +76,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/X11/twm/system.twmrc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:37:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:37:41 +0000 (UTC) Subject: rpms/xorg-x11-util-macros/devel xorg-x11-util-macros.spec, 1.29, 1.30 Message-ID: <20090727083741.556B211C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-util-macros/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30816 Modified Files: xorg-x11-util-macros.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-util-macros.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-util-macros/devel/xorg-x11-util-macros.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-util-macros.spec 18 Jul 2009 02:29:30 -0000 1.29 +++ xorg-x11-util-macros.spec 27 Jul 2009 08:37:41 -0000 1.30 @@ -4,7 +4,7 @@ Summary: X.Org X11 Autotools macros Name: xorg-x11-util-macros Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT Group: Development/System URL: http://www.x.org @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/aclocal/xorg-macros.m4 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Peter Hutterer 1.2.2-1 - util-macros 1.2.2 From jkeating at fedoraproject.org Mon Jul 27 08:37:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:37:54 +0000 (UTC) Subject: rpms/xorg-x11-utils/devel xorg-x11-utils.spec,1.26,1.27 Message-ID: <20090727083754.4610C11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30947 Modified Files: xorg-x11-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-utils/devel/xorg-x11-utils.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- xorg-x11-utils.spec 2 Jul 2009 20:38:45 -0000 1.26 +++ xorg-x11-utils.spec 27 Jul 2009 08:37:54 -0000 1.27 @@ -3,7 +3,7 @@ Summary: X.Org X11 X client utilities Name: xorg-x11-%{pkgname} Version: 7.4 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -90,6 +90,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xwininfo.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 02 2009 Adam Jackson 7.4-5 - Drop xfd and xfontsel, move them to -apps to isolate libXaw deps. From jkeating at fedoraproject.org Mon Jul 27 08:38:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:38:06 +0000 (UTC) Subject: rpms/xorg-x11-xauth/devel xorg-x11-xauth.spec,1.19,1.20 Message-ID: <20090727083806.8461311C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xauth/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31117 Modified Files: xorg-x11-xauth.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xauth.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xauth/devel/xorg-x11-xauth.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-xauth.spec 26 Feb 2009 11:36:56 -0000 1.19 +++ xorg-x11-xauth.spec 27 Jul 2009 08:38:06 -0000 1.20 @@ -3,7 +3,7 @@ Summary: X.Org X11 X authority utilities Name: xorg-x11-%{pkgname} Version: 1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} # NOTE: Remove Epoch line if package gets renamed Epoch: 1 License: MIT @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/mkxauth.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:1.0.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:38:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:38:18 +0000 (UTC) Subject: rpms/xorg-x11-xbitmaps/devel xorg-x11-xbitmaps.spec,1.19,1.20 Message-ID: <20090727083818.3B0CA11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xbitmaps/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31260 Modified Files: xorg-x11-xbitmaps.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xbitmaps.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xbitmaps/devel/xorg-x11-xbitmaps.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- xorg-x11-xbitmaps.spec 23 Jul 2009 14:18:16 -0000 1.19 +++ xorg-x11-xbitmaps.spec 27 Jul 2009 08:38:18 -0000 1.20 @@ -5,7 +5,7 @@ Summary: X.Org X11 application bitmaps Name: xorg-x11-%{pkgname} Version: 1.0.1 -Release: 8%{?dist} +Release: 9%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/xbitmaps.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.1-8 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Mon Jul 27 08:38:32 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:38:32 +0000 (UTC) Subject: rpms/xorg-x11-xdm/devel xorg-x11-xdm.spec,1.48,1.49 Message-ID: <20090727083832.58B6911C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xdm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31424 Modified Files: xorg-x11-xdm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xdm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xdm/devel/xorg-x11-xdm.spec,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- xorg-x11-xdm.spec 20 Jul 2009 21:49:15 -0000 1.48 +++ xorg-x11-xdm.spec 27 Jul 2009 08:38:32 -0000 1.49 @@ -3,7 +3,7 @@ Summary: X.Org X11 xdm - X Display Manager Name: xorg-x11-%{pkgname} Version: 1.1.6 -Release: 12%{?dist} +Release: 13%{?dist} # NOTE: Remove Epoch line if/when the package ever gets renamed. Epoch: 1 License: MIT @@ -161,6 +161,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/*.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.1.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Adam Jackson 1.1.6-12 - Fix FTBFS due to Xaw xprint build macro disappearing. (#511508) From jkeating at fedoraproject.org Mon Jul 27 08:39:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:39:16 +0000 (UTC) Subject: rpms/xorg-x11-xinit/devel xorg-x11-xinit.spec,1.70,1.71 Message-ID: <20090727083916.4A8E711C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xinit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31956 Modified Files: xorg-x11-xinit.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xinit.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xinit/devel/xorg-x11-xinit.spec,v retrieving revision 1.70 retrieving revision 1.71 diff -u -p -r1.70 -r1.71 --- xorg-x11-xinit.spec 17 Jun 2009 18:33:48 -0000 1.70 +++ xorg-x11-xinit.spec 27 Jul 2009 08:39:16 -0000 1.71 @@ -3,7 +3,7 @@ Summary: X.Org X11 X Window System xinit startup scripts Name: xorg-x11-%{pkgname} Version: 1.0.9 -Release: 11%{?dist} +Release: 12%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xsessions/xinit-compat.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.9-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 17 2009 Nalin Dahyabhai - 1.0.9-11 - pull up ck-xinit-session changes for #502258 from from F11 branch From jkeating at fedoraproject.org Mon Jul 27 08:39:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:39:31 +0000 (UTC) Subject: rpms/xorg-x11-xkb-utils/devel xorg-x11-xkb-utils.spec,1.29,1.30 Message-ID: <20090727083931.E1C0E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32120 Modified Files: xorg-x11-xkb-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xkb-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xkb-utils/devel/xorg-x11-xkb-utils.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- xorg-x11-xkb-utils.spec 8 Jul 2009 23:23:15 -0000 1.29 +++ xorg-x11-xkb-utils.spec 27 Jul 2009 08:39:29 -0000 1.30 @@ -1,7 +1,7 @@ Summary: X.Org X11 xkb utilities Name: xorg-x11-xkb-utils Version: 7.4 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xkbprint.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 7.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 09 2009 Peter Hutterer 7.4-4 - setxkbmap 1.1.0 From jkeating at fedoraproject.org Mon Jul 27 08:39:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:39:46 +0000 (UTC) Subject: rpms/xorg-x11-xsm/devel xorg-x11-xsm.spec,1.22,1.23 Message-ID: <20090727083946.9732911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xsm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32331 Modified Files: xorg-x11-xsm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xsm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xsm/devel/xorg-x11-xsm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xorg-x11-xsm.spec 20 Jul 2009 21:53:22 -0000 1.22 +++ xorg-x11-xsm.spec 27 Jul 2009 08:39:46 -0000 1.23 @@ -5,7 +5,7 @@ Name: xorg-x11-%{pkgname} # NOTE: The Version field should be the version of the xsm tarball. Version: 1.0.2 # Bump the release on rebuilds/bugfixes/etc. -Release: 10%{?dist} +Release: 11%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %config %{_sysconfdir}/X11/xsm/system.xsm %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 Adam Jackson 1.0.2-10 - Fix FTBFS due to Xaw xprint macro disappearing. (#511614) From jkeating at fedoraproject.org Mon Jul 27 08:40:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:40:00 +0000 (UTC) Subject: rpms/xorg-x11-xtrans-devel/devel xorg-x11-xtrans-devel.spec, 1.31, 1.32 Message-ID: <20090727084000.0F2E811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xtrans-devel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32540 Modified Files: xorg-x11-xtrans-devel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xtrans-devel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xtrans-devel/devel/xorg-x11-xtrans-devel.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- xorg-x11-xtrans-devel.spec 26 Feb 2009 11:44:25 -0000 1.31 +++ xorg-x11-xtrans-devel.spec 27 Jul 2009 08:39:59 -0000 1.32 @@ -6,7 +6,7 @@ Summary: X.Org X11 developmental X transport library Name: xorg-x11-xtrans-devel Version: 1.2.2 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.x.org @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pkgconfig/xtrans.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:40:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:40:13 +0000 (UTC) Subject: rpms/xorriso/devel xorriso.spec,1.1,1.2 Message-ID: <20090727084013.1353D11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorriso/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32704 Modified Files: xorriso.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorriso.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorriso/devel/xorriso.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xorriso.spec 6 Jul 2009 08:43:18 -0000 1.1 +++ xorriso.spec 27 Jul 2009 08:40:12 -0000 1.2 @@ -2,7 +2,7 @@ Name: xorriso Version: 0.3.8 -Release: 6.%{__patchlevel}%{?dist} +Release: 7.%{__patchlevel}%{?dist} Summary: ISO 9660 image manipulation tool Group: Applications/Archiving @@ -56,6 +56,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.8-7.pl00 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 12 2009 Juha Tuomala - 0.3.8-6.pl00 - Minor spec edits. From jkeating at fedoraproject.org Mon Jul 27 08:40:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:40:26 +0000 (UTC) Subject: rpms/xosd/devel xosd.spec,1.18,1.19 Message-ID: <20090727084026.BB2E511C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xosd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv367 Modified Files: xosd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xosd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xosd/devel/xosd.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- xosd.spec 26 Feb 2009 11:45:24 -0000 1.18 +++ xosd.spec 27 Jul 2009 08:40:26 -0000 1.19 @@ -4,7 +4,7 @@ Name: xosd Version: 2.2.14 -Release: 12%{?dist} +Release: 13%{?dist} Summary: On-screen display library for X Group: System Environment/Libraries @@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT %{xmms_plugdir}/libxmms_osd.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.14-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.14-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:40:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:40:39 +0000 (UTC) Subject: rpms/xosview/devel xosview.spec,1.4,1.5 Message-ID: <20090727084039.ADEAB11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xosview/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv532 Modified Files: xosview.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xosview.spec =================================================================== RCS file: /cvs/pkgs/rpms/xosview/devel/xosview.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xosview.spec 26 Feb 2009 22:07:39 -0000 1.4 +++ xosview.spec 27 Jul 2009 08:40:39 -0000 1.5 @@ -3,7 +3,7 @@ Name: xosview Summary: An X Window System utility for monitoring system resources Version: 1.8.3 -Release: 16.%{date}cvs%{?dist} +Release: 17.%{date}cvs%{?dist} Group: Applications/System # The netbsd/swapinternal.{cc,h} source files are BSD only (with @@ -94,6 +94,9 @@ desktop-file-install --dir %{buildroot}% %{_datadir}/applications/%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.8.3-17.20080301cvs +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Terje Rosten - 1.8.3-16.20080301cvs - Add patch to build with gcc 4.4 From jkeating at fedoraproject.org Mon Jul 27 08:40:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:40:51 +0000 (UTC) Subject: rpms/xournal/devel xournal.spec,1.9,1.10 Message-ID: <20090727084051.57A4511C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xournal/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv671 Modified Files: xournal.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xournal.spec =================================================================== RCS file: /cvs/pkgs/rpms/xournal/devel/xournal.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xournal.spec 26 Feb 2009 11:47:29 -0000 1.9 +++ xournal.spec 27 Jul 2009 08:40:51 -0000 1.10 @@ -1,6 +1,6 @@ Name: xournal Version: 0.4.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Xournal notetaking, sketching and PDF annotation Group: Applications/Editors @@ -101,6 +101,9 @@ update-desktop-database %{_datadir}/appl %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:41:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:41:04 +0000 (UTC) Subject: rpms/xpa/devel xpa.spec,1.25,1.26 Message-ID: <20090727084104.8E42611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv808 Modified Files: xpa.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpa.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpa/devel/xpa.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- xpa.spec 26 Feb 2009 11:48:28 -0000 1.25 +++ xpa.spec 27 Jul 2009 08:41:04 -0000 1.26 @@ -3,7 +3,7 @@ Name: xpa Version: 2.1.8 -Release: 9%{?dist} +Release: 10%{?dist} Summary: The X Public Access messaging system # Upstream version @@ -115,6 +115,9 @@ This package contains the %{name} TCL in %exclude %{_libdir}/*.a %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.8-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.1.8-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:41:15 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:41:15 +0000 (UTC) Subject: rpms/xpad/devel xpad.spec,1.7,1.8 Message-ID: <20090727084115.A39E711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpad/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv981 Modified Files: xpad.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpad.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpad/devel/xpad.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- xpad.spec 13 Jun 2009 09:22:31 -0000 1.7 +++ xpad.spec 27 Jul 2009 08:41:15 -0000 1.8 @@ -1,6 +1,6 @@ Name: xpad Version: 4.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Sticky notepad for GTK+2 Group: User Interface/Desktops @@ -79,6 +79,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 13 2009 Stefan Posdzich - 4.0-3 - Add autostart - Add new icon cache scriptlets From jkeating at fedoraproject.org Mon Jul 27 08:41:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:41:30 +0000 (UTC) Subject: rpms/xpdf/devel xpdf.spec,1.16,1.17 Message-ID: <20090727084130.17A0211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpdf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1173 Modified Files: xpdf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpdf.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpdf/devel/xpdf.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xpdf.spec 16 Apr 2009 21:08:11 -0000 1.16 +++ xpdf.spec 27 Jul 2009 08:41:29 -0000 1.17 @@ -1,7 +1,7 @@ Summary: A PDF file viewer for the X Window System Name: xpdf Version: 3.02 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2 Epoch: 1 Url: http://www.foolabs.com/xpdf/ @@ -271,6 +271,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/xpdf/latin2 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:3.02-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Apr 16 2009 Tom "spot" Callaway - 1:3.02-13 - apply xpdf-3.02pl3 security patch to fix: CVE-2009-0799, CVE-2009-0800, CVE-2009-1179, CVE-2009-1180 From jkeating at fedoraproject.org Mon Jul 27 08:41:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:41:46 +0000 (UTC) Subject: rpms/xpilot-ng/devel xpilot-ng.spec,1.17,1.18 Message-ID: <20090727084146.2053711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpilot-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1415 Modified Files: xpilot-ng.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpilot-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpilot-ng/devel/xpilot-ng.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xpilot-ng.spec 26 Feb 2009 11:51:30 -0000 1.17 +++ xpilot-ng.spec 27 Jul 2009 08:41:45 -0000 1.18 @@ -7,7 +7,7 @@ Name: xpilot-ng Version: 4.7.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Multiplayer space arcade game Group: Amusements/Games @@ -267,6 +267,9 @@ rm -rf $RPM_BUILD_ROOT %{logwatch_scripts}/shared/applyxpilotdate %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.7.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.7.2-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kwizart at fedoraproject.org Mon Jul 27 08:41:51 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 08:41:51 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/devel import.log, NONE, 1.1 perl-Devel-FindRef.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727084151.EDC3811C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-FindRef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1394/devel Modified Files: .cvsignore sources Added Files: import.log perl-Devel-FindRef.spec Log Message: Initial import for devel --- NEW FILE import.log --- perl-Devel-FindRef-1_42-1_fc11:HEAD:perl-Devel-FindRef-1.42-1.fc11.src.rpm:1248684080 --- NEW FILE perl-Devel-FindRef.spec --- Name: perl-Devel-FindRef Version: 1.42 Release: 1%{?dist} Summary: Where is that reference to my variable hiding? License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-FindRef/ Source0: http://www.cpan.org/authors/id/M/ML/MLEHMANN/Devel-FindRef-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Tracking down reference problems (e.g. you expect some object to be destroyed, but there are still references to it that keep it alive) can be very hard. Fortunately, perl keeps track of all its values, so tracking references "backwards" is usually possible. %prep %setup -q -n Devel-FindRef-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Mon Jul 27 2009 Nicolas Chauvet (kwizart) 1.42-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:25:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 08:41:51 -0000 1.2 @@ -0,0 +1 @@ +Devel-FindRef-1.42.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:25:23 -0000 1.1 +++ sources 27 Jul 2009 08:41:51 -0000 1.2 @@ -0,0 +1 @@ +b14f71c5be088ae674bc821cfdcb56f7 Devel-FindRef-1.42.tar.gz From jkeating at fedoraproject.org Mon Jul 27 08:42:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:42:00 +0000 (UTC) Subject: rpms/xpp2/devel xpp2.spec,1.3,1.4 Message-ID: <20090727084200.6D48911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpp2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1560 Modified Files: xpp2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpp2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpp2/devel/xpp2.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xpp2.spec 26 Feb 2009 11:52:30 -0000 1.3 +++ xpp2.spec 27 Jul 2009 08:41:59 -0000 1.4 @@ -33,7 +33,7 @@ Summary: XML Pull Parser Name: xpp2 Version: 2.1.10 -Release: 7.2%{?dist} +Release: 8.2%{?dist} Epoch: 0 License: ASL 1.1 URL: http://www.extreme.indiana.edu/xgws/xsoap/xpp/ @@ -159,6 +159,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:2.1.10-8.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:2.1.10-7.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:42:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:42:13 +0000 (UTC) Subject: rpms/xpp3/devel xpp3.spec,1.3,1.4 Message-ID: <20090727084213.8F42D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpp3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1815 Modified Files: xpp3.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpp3.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpp3/devel/xpp3.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xpp3.spec 26 Feb 2009 11:53:28 -0000 1.3 +++ xpp3.spec 27 Jul 2009 08:42:13 -0000 1.4 @@ -33,7 +33,7 @@ Summary: XML Pull Parser Name: xpp3 Version: 1.1.3.8 -Release: 2.2%{?dist} +Release: 3.2%{?dist} Epoch: 0 License: ASL 1.1 URL: http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0:1.1.3.8-3.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0:1.1.3.8-2.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:42:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:42:25 +0000 (UTC) Subject: rpms/xprobe2/devel xprobe2.spec,1.13,1.14 Message-ID: <20090727084225.152B511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xprobe2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1958 Modified Files: xprobe2.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xprobe2.spec =================================================================== RCS file: /cvs/pkgs/rpms/xprobe2/devel/xprobe2.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- xprobe2.spec 26 Feb 2009 11:54:28 -0000 1.13 +++ xprobe2.spec 27 Jul 2009 08:42:24 -0000 1.14 @@ -1,6 +1,6 @@ Name: xprobe2 Version: 0.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Xprobe2 is an active operating system fingerprinting tool Group: Applications/Internet @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:42:37 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:42:37 +0000 (UTC) Subject: rpms/xpsk31/devel xpsk31.spec,1.3,1.4 Message-ID: <20090727084237.D41CD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xpsk31/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2133 Modified Files: xpsk31.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xpsk31.spec =================================================================== RCS file: /cvs/pkgs/rpms/xpsk31/devel/xpsk31.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xpsk31.spec 27 Feb 2009 08:53:50 -0000 1.3 +++ xpsk31.spec 27 Jul 2009 08:42:37 -0000 1.4 @@ -1,6 +1,6 @@ Name: xpsk31 Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: GTK+ graphical version of lpsk31 for Ham Radio Group: Applications/Communications @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/*%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Feb 27 2009 Lucian Langa - 1.2-3 - drop vendor from desktop file install - ustream modified source From jkeating at fedoraproject.org Mon Jul 27 08:42:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:42:52 +0000 (UTC) Subject: rpms/xqf/devel xqf.spec,1.4,1.5 Message-ID: <20090727084252.DFB2B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xqf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2330 Modified Files: xqf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xqf.spec =================================================================== RCS file: /cvs/pkgs/rpms/xqf/devel/xqf.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xqf.spec 7 Jun 2009 14:25:52 -0000 1.4 +++ xqf.spec 27 Jul 2009 08:42:52 -0000 1.5 @@ -1,6 +1,6 @@ Name: xqf Version: 1.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A server browser for many popular games Group: Amusements/Games @@ -89,6 +89,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 Stefan Posdzich - 1.0.5-7 - Added new icon cache scriptlets - Fixed "Bug 503695 - Xqf freezes with 100% CPU" From jkeating at fedoraproject.org Mon Jul 27 08:43:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:43:04 +0000 (UTC) Subject: rpms/xqilla/devel xqilla.spec,1.11,1.12 Message-ID: <20090727084304.781DE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xqilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2504 Modified Files: xqilla.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xqilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/xqilla/devel/xqilla.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- xqilla.spec 14 Apr 2009 02:07:18 -0000 1.11 +++ xqilla.spec 27 Jul 2009 08:43:04 -0000 1.12 @@ -4,7 +4,7 @@ Name: xqilla Summary: XQilla is an XQuery and XPath 2.0 library, built on top of Xerces-C Group: System Environment/Libraries Version: 2.1.3 -Release: 0.6%{?dist} +Release: 0.7%{?dist} License: ASL 2.0 URL: http://xqilla.sourceforge.net/HomePage Source0: http://downloads.sourceforge.net/xqilla/XQilla-%{version}.tar.gz @@ -107,6 +107,9 @@ rm -rf %{buildroot} %{_defaultdocdir}/%{name}-%{version}/simple-api %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.3-0.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Apr 14 2009 Robert Scheck 2.1.3-0.6 - Added a few #include lines needed to build properly with g++ 4.4 From jkeating at fedoraproject.org Mon Jul 27 08:43:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:43:16 +0000 (UTC) Subject: rpms/xqilla10/devel xqilla10.spec,1.9,1.10 Message-ID: <20090727084316.B008311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xqilla10/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2642 Modified Files: xqilla10.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xqilla10.spec =================================================================== RCS file: /cvs/pkgs/rpms/xqilla10/devel/xqilla10.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xqilla10.spec 13 Apr 2009 14:04:57 -0000 1.9 +++ xqilla10.spec 27 Jul 2009 08:43:16 -0000 1.10 @@ -8,7 +8,7 @@ Name: xqilla10 Summary: XQilla is an XQuery and XPath 2.0 library, built on top of Xerces-C Group: System Environment/Libraries Version: 1.0.2 -Release: %{xqilla_release}%{?dist} +Release: %{xqilla_release}%{?dist}.1 License: BSD URL: http://xqilla.sourceforge.net/HomePage Source0: http://downloads.sourceforge.net/xqilla/XQilla-%{version}.tar.gz @@ -96,6 +96,9 @@ rm -rf %{buildroot} %{_includedir}/xqilla10 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.2-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Robert Scheck - 1.0.2-6 - Added a few #include lines needed to build properly with g++ 4.4 From kwizart at fedoraproject.org Mon Jul 27 08:43:21 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 08:43:21 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/F-11 import.log, NONE, 1.1 perl-Devel-FindRef.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727084321.E554111C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-FindRef/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2608/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Devel-FindRef.spec Log Message: Initial import for F-11 --- NEW FILE import.log --- perl-Devel-FindRef-1_42-1_fc11:F-11:perl-Devel-FindRef-1.42-1.fc11.src.rpm:1248684164 --- NEW FILE perl-Devel-FindRef.spec --- Name: perl-Devel-FindRef Version: 1.42 Release: 1%{?dist} Summary: Where is that reference to my variable hiding? License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-FindRef/ Source0: http://www.cpan.org/authors/id/M/ML/MLEHMANN/Devel-FindRef-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Tracking down reference problems (e.g. you expect some object to be destroyed, but there are still references to it that keep it alive) can be very hard. Fortunately, perl keeps track of all its values, so tracking references "backwards" is usually possible. %prep %setup -q -n Devel-FindRef-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Mon Jul 27 2009 Nicolas Chauvet (kwizart) 1.42-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:25:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 08:43:21 -0000 1.2 @@ -0,0 +1 @@ +Devel-FindRef-1.42.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:25:23 -0000 1.1 +++ sources 27 Jul 2009 08:43:21 -0000 1.2 @@ -0,0 +1 @@ +b14f71c5be088ae674bc821cfdcb56f7 Devel-FindRef-1.42.tar.gz From jkeating at fedoraproject.org Mon Jul 27 08:43:29 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:43:29 +0000 (UTC) Subject: rpms/xrestop/devel xrestop.spec,1.16,1.17 Message-ID: <20090727084329.8870911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xrestop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2796 Modified Files: xrestop.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xrestop.spec =================================================================== RCS file: /cvs/pkgs/rpms/xrestop/devel/xrestop.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xrestop.spec 26 Feb 2009 11:59:21 -0000 1.16 +++ xrestop.spec 27 Jul 2009 08:43:29 -0000 1.17 @@ -1,7 +1,7 @@ Summary: X Resource Monitor Name: xrestop Version: 0.4 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.freedesktop.org/Software/xrestop @@ -39,6 +39,9 @@ rm -rf "$RPM_BUILD_ROOT" %{_mandir}/man1/xrestop.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:43:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:43:44 +0000 (UTC) Subject: rpms/xsane/devel xsane.spec,1.72,1.73 Message-ID: <20090727084344.E030D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2992 Modified Files: xsane.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/xsane.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- xsane.spec 21 Jul 2009 14:24:24 -0000 1.72 +++ xsane.spec 27 Jul 2009 08:43:44 -0000 1.73 @@ -5,7 +5,7 @@ Name: xsane Summary: X Window System front-end for the SANE scanner interface Version: 0.996 -Release: 9%{?dist} +Release: 10%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in @@ -123,6 +123,9 @@ fi %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.996-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Nils Philippsen 0.996-9 - don't show EULA, mention bugzilla in about dialog (#504344) From jkeating at fedoraproject.org Mon Jul 27 08:43:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:43:57 +0000 (UTC) Subject: rpms/xsc/devel xsc.spec,1.5,1.6 Message-ID: <20090727084357.C76C611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3176 Modified Files: xsc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsc/devel/xsc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- xsc.spec 26 Feb 2009 12:01:18 -0000 1.5 +++ xsc.spec 27 Jul 2009 08:43:57 -0000 1.6 @@ -1,6 +1,6 @@ Name: xsc Version: 1.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A clone of the old vector graphics video game Star Castle Group: Amusements/Games @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/32x32/apps/xsc.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:44:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:44:22 +0000 (UTC) Subject: rpms/xscope/devel xscope.spec,1.1,1.2 Message-ID: <20090727084422.3F48311C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xscope/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3456 Modified Files: xscope.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xscope.spec =================================================================== RCS file: /cvs/pkgs/rpms/xscope/devel/xscope.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xscope.spec 1 Jul 2009 05:08:44 -0000 1.1 +++ xscope.spec 27 Jul 2009 08:44:22 -0000 1.2 @@ -1,6 +1,6 @@ Name: xscope Version: 1.1 -Release: 3.gitfccbbd6%{?dist} +Release: 4.gitfccbbd6%{?dist} Summary: X Window Protocol Viewer Group: User Interface/X @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-4.gitfccbbd6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 28 2009 Yanko Kaneti 1.1-3.gitfccbbd6 - The software has a MIT not BSD license From jkeating at fedoraproject.org Mon Jul 27 08:44:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:44:36 +0000 (UTC) Subject: rpms/xscorch/devel xscorch.spec,1.17,1.18 Message-ID: <20090727084436.5BCFB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xscorch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3608 Modified Files: xscorch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xscorch.spec =================================================================== RCS file: /cvs/pkgs/rpms/xscorch/devel/xscorch.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- xscorch.spec 8 Jul 2009 14:04:17 -0000 1.17 +++ xscorch.spec 27 Jul 2009 08:44:36 -0000 1.18 @@ -2,7 +2,7 @@ Name: xscorch Version: 0.2.1 -Release: 0.3.%{pre}%{?dist} +Release: 0.4.%{pre}%{?dist} Summary: A Scorched Earth clone Group: Amusements/Games @@ -66,6 +66,9 @@ rm -rf %{buildroot} %{_datadir}/xscorch/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.1-0.4.pre2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 08 2009 Marcin Garski 0.2.1-0.3.pre2 - Update to 0.2.1-pre2 From jkeating at fedoraproject.org Mon Jul 27 08:44:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:44:50 +0000 (UTC) Subject: rpms/xsd/devel xsd.spec,1.2,1.3 Message-ID: <20090727084450.6F9B911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3779 Modified Files: xsd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsd/devel/xsd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xsd.spec 7 Jul 2009 15:20:56 -0000 1.2 +++ xsd.spec 27 Jul 2009 08:44:50 -0000 1.3 @@ -1,6 +1,6 @@ Name: xsd Version: 3.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: W3C XML schema to C++ data binding compiler Group: Development/Tools @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 07 2009 Antti Andreimann 3.2.0-4 - Removed redundant PostScript files from the doc package From kwizart at fedoraproject.org Mon Jul 27 08:44:57 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 08:44:57 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/F-10 import.log, NONE, 1.1 perl-Devel-FindRef.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727084457.3E1EE11C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-FindRef/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3476/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Devel-FindRef.spec Log Message: Initial import for F-10 --- NEW FILE import.log --- perl-Devel-FindRef-1_42-1_fc11:F-10:perl-Devel-FindRef-1.42-1.fc11.src.rpm:1248684231 --- NEW FILE perl-Devel-FindRef.spec --- Name: perl-Devel-FindRef Version: 1.42 Release: 1%{?dist} Summary: Where is that reference to my variable hiding? License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-FindRef/ Source0: http://www.cpan.org/authors/id/M/ML/MLEHMANN/Devel-FindRef-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Tracking down reference problems (e.g. you expect some object to be destroyed, but there are still references to it that keep it alive) can be very hard. Fortunately, perl keeps track of all its values, so tracking references "backwards" is usually possible. %prep %setup -q -n Devel-FindRef-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Mon Jul 27 2009 Nicolas Chauvet (kwizart) 1.42-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:25:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 08:44:56 -0000 1.2 @@ -0,0 +1 @@ +Devel-FindRef-1.42.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:25:23 -0000 1.1 +++ sources 27 Jul 2009 08:44:57 -0000 1.2 @@ -0,0 +1 @@ +b14f71c5be088ae674bc821cfdcb56f7 Devel-FindRef-1.42.tar.gz From jkeating at fedoraproject.org Mon Jul 27 08:45:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:45:07 +0000 (UTC) Subject: rpms/xsel/devel xsel.spec,1.3,1.4 Message-ID: <20090727084507.14B8B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3950 Modified Files: xsel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsel.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsel/devel/xsel.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xsel.spec 26 Feb 2009 12:03:09 -0000 1.3 +++ xsel.spec 27 Jul 2009 08:45:05 -0000 1.4 @@ -1,6 +1,6 @@ Name: xsel Version: 1.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Command line clipboard and X selection tool Group: Applications/System License: MIT @@ -36,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xsel %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:45:25 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:45:25 +0000 (UTC) Subject: rpms/xsettings-kde/devel xsettings-kde.spec,1.4,1.5 Message-ID: <20090727084525.C9A2511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsettings-kde/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4234 Modified Files: xsettings-kde.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsettings-kde.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsettings-kde/devel/xsettings-kde.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xsettings-kde.spec 27 Jun 2009 01:44:31 -0000 1.4 +++ xsettings-kde.spec 27 Jul 2009 08:45:25 -0000 1.5 @@ -2,7 +2,7 @@ Summary: XSettings Daemon for KDE Name: xsettings-kde Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: User Interface/Desktops # upstream is a svn @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 26 2009 Rex Dieter - 0.10-1 - xsettings-0.10 From jkeating at fedoraproject.org Mon Jul 27 08:45:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:45:44 +0000 (UTC) Subject: rpms/xsp/devel xsp.spec,1.39,1.40 Message-ID: <20090727084544.0BBBB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4482 Modified Files: xsp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsp/devel/xsp.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- xsp.spec 14 Jun 2009 11:37:49 -0000 1.39 +++ xsp.spec 27 Jul 2009 08:45:43 -0000 1.40 @@ -1,6 +1,6 @@ Name: xsp Version: 2.4.2 -Release: 1%{?dist} +Release: 2%{?dist} License: MIT BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) URL: http://mono.ximian.com/monobuild/preview/sources-preview/ @@ -96,6 +96,9 @@ rm -rf %{buildroot} %{_libdir}/xsp/test %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 09 2009 Paul F. Johnson 2.4.2-1 - Update to 2.4.2 preview - Enable ppc64 From jkeating at fedoraproject.org Mon Jul 27 08:46:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:46:00 +0000 (UTC) Subject: rpms/xsri/devel xsri.spec,1.22,1.23 Message-ID: <20090727084600.297F811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsri/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4639 Modified Files: xsri.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsri.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsri/devel/xsri.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- xsri.spec 26 Feb 2009 12:05:57 -0000 1.22 +++ xsri.spec 27 Jul 2009 08:45:58 -0000 1.23 @@ -1,7 +1,7 @@ Summary: X Set Root Image Name: xsri Version: 2.1.0 -Release: 16%{?dist} +Release: 17%{?dist} Epoch: 1 License: GPL+ Group: System Environment/Base @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xsri.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:2.1.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1:2.1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kwizart at fedoraproject.org Mon Jul 27 08:46:04 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 08:46:04 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/EL-5 import.log, NONE, 1.1 perl-Devel-FindRef.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727084604.67D0511C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Devel-FindRef/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4608/EL-5 Modified Files: .cvsignore sources Added Files: import.log perl-Devel-FindRef.spec Log Message: Initial import for EL-5 --- NEW FILE import.log --- perl-Devel-FindRef-1_42-1_fc11:EL-5:perl-Devel-FindRef-1.42-1.fc11.src.rpm:1248684330 --- NEW FILE perl-Devel-FindRef.spec --- Name: perl-Devel-FindRef Version: 1.42 Release: 1%{?dist} Summary: Where is that reference to my variable hiding? License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Devel-FindRef/ Source0: http://www.cpan.org/authors/id/M/ML/MLEHMANN/Devel-FindRef-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description Tracking down reference problems (e.g. you expect some object to be destroyed, but there are still references to it that keep it alive) can be very hard. Fortunately, perl keeps track of all its values, so tracking references "backwards" is usually possible. %prep %setup -q -n Devel-FindRef-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; %{_fixperms} $RPM_BUILD_ROOT/* %check make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Devel* %{_mandir}/man3/* %changelog * Mon Jul 27 2009 Nicolas Chauvet (kwizart) 1.42-1 - Specfile autogenerated by cpanspec 1.78. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:25:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 08:46:04 -0000 1.2 @@ -0,0 +1 @@ +Devel-FindRef-1.42.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Devel-FindRef/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:25:23 -0000 1.1 +++ sources 27 Jul 2009 08:46:04 -0000 1.2 @@ -0,0 +1 @@ +b14f71c5be088ae674bc821cfdcb56f7 Devel-FindRef-1.42.tar.gz From jkeating at fedoraproject.org Mon Jul 27 08:46:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:46:12 +0000 (UTC) Subject: rpms/xstar/devel xstar.spec,1.3,1.4 Message-ID: <20090727084612.EC04F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xstar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4841 Modified Files: xstar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xstar.spec =================================================================== RCS file: /cvs/pkgs/rpms/xstar/devel/xstar.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xstar.spec 26 Feb 2009 12:06:54 -0000 1.3 +++ xstar.spec 27 Jul 2009 08:46:12 -0000 1.4 @@ -1,6 +1,6 @@ Name: xstar Version: 2.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Program that simulates the movement of stars Group: Amusements/Graphics @@ -87,6 +87,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:46:41 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:46:41 +0000 (UTC) Subject: rpms/xsynth-dssi/devel xsynth-dssi.spec,1.1,1.2 Message-ID: <20090727084641.48B7E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsynth-dssi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5198 Modified Files: xsynth-dssi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsynth-dssi.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsynth-dssi/devel/xsynth-dssi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xsynth-dssi.spec 6 Jun 2009 02:51:23 -0000 1.1 +++ xsynth-dssi.spec 27 Jul 2009 08:46:41 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Classic-analog style software synthesizer Name: xsynth-dssi Version: 0.9.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://dssi.sourceforge.net/download.html#Xsynth-DSSI @@ -80,6 +80,9 @@ gtk-update-icon-cache %{_datadir}/icons/ %{_datadir}/icons/hicolor/48x48/apps/%{name}.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jun 04 2009 Orcan Ogetbil - 0.9.2-2 - Add icon cache scriptlet From jkeating at fedoraproject.org Mon Jul 27 08:46:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:46:30 +0000 (UTC) Subject: rpms/xsupplicant/devel xsupplicant.spec,1.41,1.42 Message-ID: <20090727084630.24FBC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xsupplicant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5050 Modified Files: xsupplicant.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xsupplicant.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsupplicant/devel/xsupplicant.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- xsupplicant.spec 14 May 2009 21:06:34 -0000 1.41 +++ xsupplicant.spec 27 Jul 2009 08:46:29 -0000 1.42 @@ -1,7 +1,7 @@ Name: xsupplicant Summary: Open Source Implementation of IEEE 802.1x Version: 2.1.7 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ or BSD with advertising Group: System Environment/Base URL: http://www.open1x.org/ @@ -133,6 +133,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Tom "spot" Callaway - 2.1.7-1 - update to 2.1.7, drop static libs, add ui package From jkeating at fedoraproject.org Mon Jul 27 08:46:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:46:53 +0000 (UTC) Subject: rpms/xteddy/devel xteddy.spec,1.3,1.4 Message-ID: <20090727084653.E7FC411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xteddy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5315 Modified Files: xteddy.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xteddy.spec =================================================================== RCS file: /cvs/pkgs/rpms/xteddy/devel/xteddy.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xteddy.spec 8 Mar 2009 23:15:22 -0000 1.3 +++ xteddy.spec 27 Jul 2009 08:46:53 -0000 1.4 @@ -1,6 +1,6 @@ Name: xteddy Version: 2.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to sit around silently, look cute, and make you smile Group: Amusements/Games @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Mar 08 2009 Lubomir Rintel 2.0.1-4 - Fix startup crash From jkeating at fedoraproject.org Mon Jul 27 08:47:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:47:13 +0000 (UTC) Subject: rpms/xterm/devel xterm.spec,1.73,1.74 Message-ID: <20090727084713.2BDB211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xterm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5597 Modified Files: xterm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xterm.spec =================================================================== RCS file: /cvs/pkgs/rpms/xterm/devel/xterm.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- xterm.spec 2 Mar 2009 12:52:20 -0000 1.73 +++ xterm.spec 27 Jul 2009 08:47:12 -0000 1.74 @@ -1,7 +1,7 @@ Summary: Terminal emulator for the X Window System Name: xterm Version: 242 -Release: 3%{?dist} +Release: 4%{?dist} URL: http://dickey.his.com/xterm License: MIT Group: User Interface/X @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %{x11_app_defaults_dir}/XTerm-color %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 242-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Miroslav Lichvar 242-3 - fix bell (#487829) From jkeating at fedoraproject.org Mon Jul 27 08:47:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:47:28 +0000 (UTC) Subject: rpms/xtvd/devel xtvd.spec,1.2,1.3 Message-ID: <20090727084728.6E3FB11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xtvd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5815 Modified Files: xtvd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xtvd.spec =================================================================== RCS file: /cvs/pkgs/rpms/xtvd/devel/xtvd.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xtvd.spec 26 Feb 2009 12:10:48 -0000 1.2 +++ xtvd.spec 27 Jul 2009 08:47:27 -0000 1.3 @@ -1,6 +1,6 @@ Name: xtvd Version: 2.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A client java library for easy access to the tv data from schedulesdirect.org Group: Development/Libraries License: GPL+ @@ -120,6 +120,9 @@ rm -rf $RPM_BUILD_ROOT %{_javadocdir}/%{name}-%{version}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:47:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:47:42 +0000 (UTC) Subject: rpms/xu4/devel xu4.spec,1.6,1.7 Message-ID: <20090727084742.9B3DE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xu4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6052 Modified Files: xu4.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xu4.spec =================================================================== RCS file: /cvs/pkgs/rpms/xu4/devel/xu4.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- xu4.spec 26 Feb 2009 12:11:44 -0000 1.6 +++ xu4.spec 27 Jul 2009 08:47:42 -0000 1.7 @@ -2,7 +2,7 @@ Name: xu4 Version: 1.1 -Release: 0.6.cvs%{cvsdate}%{?dist} +Release: 0.7.cvs%{cvsdate}%{?dist} Summary: Ultima IV recreated Group: Amusements/Games License: GPLv2+ @@ -109,6 +109,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1-0.7.cvs20090209 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1-0.6.cvs20090209 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:48:13 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:48:13 +0000 (UTC) Subject: rpms/xvarstar/devel xvarstar.spec,1.4,1.5 Message-ID: <20090727084813.1C32211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xvarstar/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6853 Modified Files: xvarstar.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xvarstar.spec =================================================================== RCS file: /cvs/pkgs/rpms/xvarstar/devel/xvarstar.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- xvarstar.spec 24 Mar 2009 16:06:44 -0000 1.4 +++ xvarstar.spec 27 Jul 2009 08:48:12 -0000 1.5 @@ -1,6 +1,6 @@ Name: xvarstar Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Astronomical program used for searching GCVS Group: Applications/Engineering @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/%{name}.conf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2009 Lubomir Rintel (Fedora Astronomy) - 0.9-6 - Fix summary - Add icon From jkeating at fedoraproject.org Mon Jul 27 08:47:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:47:57 +0000 (UTC) Subject: rpms/xulrunner/devel xulrunner.spec,1.166,1.167 Message-ID: <20090727084757.C9DDF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xulrunner/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6471 Modified Files: xulrunner.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xulrunner.spec =================================================================== RCS file: /cvs/pkgs/rpms/xulrunner/devel/xulrunner.spec,v retrieving revision 1.166 retrieving revision 1.167 diff -u -p -r1.166 -r1.167 --- xulrunner.spec 17 Jul 2009 19:01:03 -0000 1.166 +++ xulrunner.spec 27 Jul 2009 08:47:57 -0000 1.167 @@ -13,7 +13,7 @@ Summary: XUL Runtime for Gecko Applications Name: xulrunner Version: 1.9.1.1 -Release: 1%{?dist} +Release: 2%{?dist} URL: http://developer.mozilla.org/En/XULRunner License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -452,6 +452,9 @@ fi #--------------------------------------------------------------------- %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Christopher Aillon - 1.9.1.1-1 - Update to 1.9.1.1 From jkeating at fedoraproject.org Mon Jul 27 08:48:26 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:48:26 +0000 (UTC) Subject: rpms/xvattr/devel xvattr.spec,1.16,1.17 Message-ID: <20090727084826.6745411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xvattr/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7108 Modified Files: xvattr.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xvattr.spec =================================================================== RCS file: /cvs/pkgs/rpms/xvattr/devel/xvattr.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xvattr.spec 26 Feb 2009 12:15:28 -0000 1.16 +++ xvattr.spec 27 Jul 2009 08:48:26 -0000 1.17 @@ -1,7 +1,7 @@ Summary: Utility for getting and setting Xv attributes Name: xvattr Version: 1.3 -Release: 16 +Release: 17 License: GPLv2+ Group: User Interface/X URL: http://www.dtek.chalmers.se/groups/dvd/ @@ -46,6 +46,9 @@ iconv -f iso8859-1 -t utf-8 -o tmp xvatt %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.3-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:48:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:48:40 +0000 (UTC) Subject: rpms/xwnc/devel xwnc.spec,1.8,1.9 Message-ID: <20090727084840.0799C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xwnc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7344 Modified Files: xwnc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xwnc.spec =================================================================== RCS file: /cvs/pkgs/rpms/xwnc/devel/xwnc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- xwnc.spec 26 Feb 2009 12:16:27 -0000 1.8 +++ xwnc.spec 27 Jul 2009 08:48:39 -0000 1.9 @@ -1,7 +1,7 @@ Name: xwnc Summary: Mix of Xvnc and XDarwin with improved protocol Version: 0.3.3 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: User Interface/X @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.3.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.3.3-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:48:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:48:52 +0000 (UTC) Subject: rpms/xwota/devel xwota.spec,1.2,1.3 Message-ID: <20090727084852.B3A5C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xwota/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7486 Modified Files: xwota.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xwota.spec =================================================================== RCS file: /cvs/pkgs/rpms/xwota/devel/xwota.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xwota.spec 26 Feb 2009 12:17:24 -0000 1.2 +++ xwota.spec 27 Jul 2009 08:48:52 -0000 1.3 @@ -1,6 +1,6 @@ Name: xwota Version: 0.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Who's On the Air Database interface Group: Applications/Communications @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:49:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:49:10 +0000 (UTC) Subject: rpms/xwrits/devel xwrits.spec,1.9,1.10 Message-ID: <20090727084910.E748C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xwrits/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7675 Modified Files: xwrits.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xwrits.spec =================================================================== RCS file: /cvs/pkgs/rpms/xwrits/devel/xwrits.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- xwrits.spec 26 Feb 2009 12:18:21 -0000 1.9 +++ xwrits.spec 27 Jul 2009 08:49:10 -0000 1.10 @@ -2,7 +2,7 @@ Summary: Reminds you take wrist breaks Name: xwrits Version: 2.24 -Release: 5%{?dist} +Release: 6%{?dist} Source: http://www.lcdf.org/xwrits/xwrits-%{version}.tar.gz Source2: xwrits.png Source3: xwrits.desktop @@ -69,6 +69,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/applications/fedora-xwrits.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.24-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 2.24-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:49:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:49:24 +0000 (UTC) Subject: rpms/xwxapt/devel xwxapt.spec,1.2,1.3 Message-ID: <20090727084924.6BDE411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xwxapt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7865 Modified Files: xwxapt.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xwxapt.spec =================================================================== RCS file: /cvs/pkgs/rpms/xwxapt/devel/xwxapt.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xwxapt.spec 26 Feb 2009 12:19:22 -0000 1.2 +++ xwxapt.spec 27 Jul 2009 08:49:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: xwxapt Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GTK+ graphical application for decoding and saving weather images Group: Applications/Communications @@ -75,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:49:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:49:38 +0000 (UTC) Subject: rpms/xxdiff/devel xxdiff.spec,1.3,1.4 Message-ID: <20090727084938.AD14111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xxdiff/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8005 Modified Files: xxdiff.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xxdiff.spec =================================================================== RCS file: /cvs/pkgs/rpms/xxdiff/devel/xxdiff.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- xxdiff.spec 26 Feb 2009 12:20:20 -0000 1.3 +++ xxdiff.spec 27 Jul 2009 08:49:38 -0000 1.4 @@ -1,7 +1,7 @@ Summary: Graphical file and directories comparator and merge tool Name: xxdiff Version: 3.2 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: Development/Tools URL: http://furius.ca/xxdiff/ @@ -86,6 +86,9 @@ find ./build -name \*.py -print -exec %{_bindir}/xx-svn-resolve %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 3.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:49:51 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:49:51 +0000 (UTC) Subject: rpms/xylib/devel xylib.spec,1.1,1.2 Message-ID: <20090727084951.6E95811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xylib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8126 Modified Files: xylib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xylib.spec =================================================================== RCS file: /cvs/pkgs/rpms/xylib/devel/xylib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xylib.spec 20 Jul 2009 15:00:30 -0000 1.1 +++ xylib.spec 27 Jul 2009 08:49:51 -0000 1.2 @@ -1,7 +1,7 @@ Name: xylib Summary: Library for reading x-y data from several file formats Version: 0.4 -Release: 4%{?dist} +Release: 5%{?dist} License: LGPLv2 Group: Development/Libraries Url: http://www.unipress.waw.pl/fityk/xylib/ @@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libxy.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Marcin Wojdyr - 0.4-4 - added "Requires: boost-devel" to -devel package From jkeating at fedoraproject.org Mon Jul 27 08:50:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:50:20 +0000 (UTC) Subject: rpms/xz/devel xz.spec,1.1,1.2 Message-ID: <20090727085020.9BCE911C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8423 Modified Files: xz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xz.spec =================================================================== RCS file: /cvs/pkgs/rpms/xz/devel/xz.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xz.spec 17 Jul 2009 18:19:25 -0000 1.1 +++ xz.spec 27 Jul 2009 08:50:20 -0000 1.2 @@ -1,7 +1,7 @@ Summary: LZMA compression utilities Name: xz Version: 4.999.8 -Release: 0.7.beta%{?dist} +Release: 0.8.beta%{?dist} License: LGPLv2+ Group: Applications/File Source0: http://tukaani.org/%{name}/%{name}-%{version}beta.tar.gz @@ -102,6 +102,9 @@ rm -rf %{buildroot} %{_mandir}/man1/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.999.8-0.8.beta +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Bill Nottingham 4.999.8-0.7.beta - tweak summary - add %%check section () From jkeating at fedoraproject.org Mon Jul 27 08:50:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:50:35 +0000 (UTC) Subject: rpms/xzgv/devel xzgv.spec,1.10,1.11 Message-ID: <20090727085035.7E04611C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xzgv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8574 Modified Files: xzgv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xzgv.spec =================================================================== RCS file: /cvs/pkgs/rpms/xzgv/devel/xzgv.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- xzgv.spec 18 May 2009 08:51:06 -0000 1.10 +++ xzgv.spec 27 Jul 2009 08:50:35 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Picture viewer Name: xzgv Version: 0.9 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ Group: Applications/Multimedia Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz @@ -98,6 +98,9 @@ fi %{_datadir}/icons/hicolor/48x48/apps/xzgv.xpm %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.9-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 18 2009 Hans de Goede - 0.9-7 - Add an icon for the menu entry - Make ChangeLog and NEWS UTF-8 From jkeating at fedoraproject.org Mon Jul 27 08:50:50 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:50:50 +0000 (UTC) Subject: rpms/yaboot/devel yaboot.spec,1.61,1.62 Message-ID: <20090727085050.DE2F411C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yaboot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8721 Modified Files: yaboot.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yaboot.spec =================================================================== RCS file: /cvs/pkgs/rpms/yaboot/devel/yaboot.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- yaboot.spec 7 Jun 2009 08:04:45 -0000 1.61 +++ yaboot.spec 27 Jul 2009 08:50:50 -0000 1.62 @@ -1,7 +1,7 @@ Summary: Linux bootloader for Power Macintosh "New World" computers. Name: yaboot Version: 1.3.14 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: System Environment/Base Source: http://yaboot.ozlabs.org/releases/yaboot-%{version}.tar.gz @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %ghost %config(noreplace) %{_sysconfdir}/yaboot.conf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.3.14-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 07 2009 David Woodhouse - 1.3.14-13 - Don't set up bi_recs. Especially not in the middle of the kernel text. From jkeating at fedoraproject.org Mon Jul 27 08:51:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:51:04 +0000 (UTC) Subject: rpms/yacpi/devel yacpi.spec,1.2,1.3 Message-ID: <20090727085104.C530811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yacpi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8902 Modified Files: yacpi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yacpi.spec =================================================================== RCS file: /cvs/pkgs/rpms/yacpi/devel/yacpi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- yacpi.spec 25 Feb 2009 18:00:58 -0000 1.2 +++ yacpi.spec 27 Jul 2009 08:51:04 -0000 1.3 @@ -1,6 +1,6 @@ Name: yacpi Version: 3.0.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Yet Another Configuration and Power Interface Group: Applications/System @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 3.0.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:51:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:51:20 +0000 (UTC) Subject: rpms/yadex/devel yadex.spec,1.11,1.12 Message-ID: <20090727085120.C674411C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yadex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9088 Modified Files: yadex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yadex.spec =================================================================== RCS file: /cvs/pkgs/rpms/yadex/devel/yadex.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- yadex.spec 28 Feb 2009 12:52:45 -0000 1.11 +++ yadex.spec 27 Jul 2009 08:51:20 -0000 1.12 @@ -1,6 +1,6 @@ Name: yadex Version: 1.7.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Doom level editor Group: Amusements/Graphics @@ -101,6 +101,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Caol?n McNamara - 1.7.0-12 - fix bare #elif From jkeating at fedoraproject.org Mon Jul 27 08:51:34 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:51:34 +0000 (UTC) Subject: rpms/yafc/devel yafc.spec,1.8,1.9 Message-ID: <20090727085134.C22C011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yafc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9233 Modified Files: yafc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yafc.spec =================================================================== RCS file: /cvs/pkgs/rpms/yafc/devel/yafc.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- yafc.spec 25 Feb 2009 18:02:45 -0000 1.8 +++ yafc.spec 27 Jul 2009 08:51:34 -0000 1.9 @@ -5,7 +5,7 @@ Name: yafc Version: 1.1.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Yet Another FTP/SFTP Client Group: Applications/Internet @@ -110,6 +110,9 @@ fi ################################################################################ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:51:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:51:46 +0000 (UTC) Subject: rpms/yafray/devel yafray.spec,1.8,1.9 Message-ID: <20090727085146.6D14F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yafray/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9355 Modified Files: yafray.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yafray.spec =================================================================== RCS file: /cvs/pkgs/rpms/yafray/devel/yafray.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- yafray.spec 2 Mar 2009 10:33:00 -0000 1.8 +++ yafray.spec 27 Jul 2009 08:51:46 -0000 1.9 @@ -1,6 +1,6 @@ Name: yafray Version: 0.0.9 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Yet Another Free RAYtracer Group: Applications/Multimedia @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.0.9-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 2 2009 kwizart < kwizart at gmail.com > - 0.0.9-9 - Fix gcc44 From jkeating at fedoraproject.org Mon Jul 27 08:51:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:51:57 +0000 (UTC) Subject: rpms/yakuake/devel yakuake.spec,1.14,1.15 Message-ID: <20090727085157.9FBF511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yakuake/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9484 Modified Files: yakuake.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yakuake.spec =================================================================== RCS file: /cvs/pkgs/rpms/yakuake/devel/yakuake.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- yakuake.spec 10 Jul 2009 17:17:16 -0000 1.14 +++ yakuake.spec 27 Jul 2009 08:51:57 -0000 1.15 @@ -1,6 +1,6 @@ Name: yakuake Version: 2.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Terminal emulator Group: User Interface/Desktops @@ -75,6 +75,9 @@ rm -rf %{buildroot} %{_datadir}/icons/hicolor/scalable/apps/%{name}.svgz %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.9.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 10 2009 Johan Cwiklinski 2.9.6-1 - 2.9.6 From jkeating at fedoraproject.org Mon Jul 27 08:52:08 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:52:08 +0000 (UTC) Subject: rpms/yanone-kaffeesatz-fonts/devel yanone-kaffeesatz-fonts.spec, 1.7, 1.8 Message-ID: <20090727085208.DE70711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yanone-kaffeesatz-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9645 Modified Files: yanone-kaffeesatz-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yanone-kaffeesatz-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/yanone-kaffeesatz-fonts/devel/yanone-kaffeesatz-fonts.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- yanone-kaffeesatz-fonts.spec 25 Feb 2009 18:05:18 -0000 1.7 +++ yanone-kaffeesatz-fonts.spec 27 Jul 2009 08:52:08 -0000 1.8 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20080723 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Yanone Kaffeesatz decorative fonts Group: User Interface/X @@ -58,6 +58,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20080723-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20080723-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:52:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:52:20 +0000 (UTC) Subject: rpms/yanone-tagesschrift-fonts/devel yanone-tagesschrift-fonts.spec, 1.2, 1.3 Message-ID: <20090727085220.961CE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yanone-tagesschrift-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9803 Modified Files: yanone-tagesschrift-fonts.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yanone-tagesschrift-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/yanone-tagesschrift-fonts/devel/yanone-tagesschrift-fonts.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- yanone-tagesschrift-fonts.spec 25 Feb 2009 18:06:10 -0000 1.2 +++ yanone-tagesschrift-fonts.spec 27 Jul 2009 08:52:20 -0000 1.3 @@ -5,7 +5,7 @@ Name: %{fontname}-fonts Version: 20050524 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A serif decorative latin font Group: User Interface/X @@ -58,6 +58,9 @@ rm -fr %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20050524-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 20050524-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:52:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:52:58 +0000 (UTC) Subject: rpms/yap/devel yap.spec,1.24,1.25 Message-ID: <20090727085258.C8D2C11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yap/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10132 Modified Files: yap.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yap.spec =================================================================== RCS file: /cvs/pkgs/rpms/yap/devel/yap.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- yap.spec 15 Jun 2009 20:46:24 -0000 1.24 +++ yap.spec 27 Jul 2009 08:52:58 -0000 1.25 @@ -1,6 +1,6 @@ Name: yap Version: 5.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: High-performance Prolog Compiler @@ -143,6 +143,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 5.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Gerard Milmeister - 5.1.3-1 - new release 5.1.3 From jkeating at fedoraproject.org Mon Jul 27 08:53:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:53:11 +0000 (UTC) Subject: rpms/yasm/devel yasm.spec,1.20,1.21 Message-ID: <20090727085311.48AB011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yasm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10261 Modified Files: yasm.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yasm.spec =================================================================== RCS file: /cvs/pkgs/rpms/yasm/devel/yasm.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- yasm.spec 25 Feb 2009 18:08:03 -0000 1.20 +++ yasm.spec 27 Jul 2009 08:53:11 -0000 1.21 @@ -1,7 +1,7 @@ Summary: Modular Assembler Name: yasm Version: 0.7.2 -Release: 2%{?dist} +Release: 3%{?dist} # See COPYING for the detail, there is quite a lot! License: BSD and (GPLv2+ or Artistic or LGPLv2+) and LGPLv2 Group: Development/Languages @@ -68,6 +68,9 @@ Install this package if you need to rebu %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:53:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:53:31 +0000 (UTC) Subject: rpms/yaz/devel yaz.spec,1.18,1.19 Message-ID: <20090727085331.C47F611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yaz/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10422 Modified Files: yaz.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yaz.spec =================================================================== RCS file: /cvs/pkgs/rpms/yaz/devel/yaz.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- yaz.spec 27 Jun 2009 13:52:02 -0000 1.18 +++ yaz.spec 27 Jul 2009 08:53:30 -0000 1.19 @@ -1,6 +1,6 @@ Name: yaz Version: 3.0.46 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Z39.50/SRW/SRU programs Group: Applications/Internet @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.0.46-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 27 2009 Konstantin Ryabitsev - 3.0.46-1 - Update to 3.0.46 (miscellaneous bugfixes) From jkeating at fedoraproject.org Mon Jul 27 08:53:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:53:47 +0000 (UTC) Subject: rpms/yelp/devel yelp.spec,1.164,1.165 Message-ID: <20090727085347.37AFE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yelp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10621 Modified Files: yelp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yelp.spec =================================================================== RCS file: /cvs/pkgs/rpms/yelp/devel/yelp.spec,v retrieving revision 1.164 retrieving revision 1.165 diff -u -p -r1.164 -r1.165 --- yelp.spec 19 Jul 2009 02:27:00 -0000 1.164 +++ yelp.spec 27 Jul 2009 08:53:46 -0000 1.165 @@ -19,7 +19,7 @@ Summary: Help browser for the GNOME desktop Name: yelp Version: 2.27.2 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://download.gnome.org/sources/yelp/2.27/%{name}-%{version}.tar.bz2 URL: http://live.gnome.org/Yelp Patch1: yelp-2.15.5-fedora-docs.patch @@ -157,6 +157,9 @@ update-desktop-database &> /dev/null ||: %{_datadir}/yelp %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.27.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jul 18 2009 Matthias Clasen - 2.27.2-3 - Drop unused direct dependencies From jkeating at fedoraproject.org Mon Jul 27 08:54:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:54:01 +0000 (UTC) Subject: rpms/yersinia/devel yersinia.spec,1.2,1.3 Message-ID: <20090727085401.0AEFF11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yersinia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10787 Modified Files: yersinia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yersinia.spec =================================================================== RCS file: /cvs/pkgs/rpms/yersinia/devel/yersinia.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- yersinia.spec 25 Feb 2009 18:10:59 -0000 1.2 +++ yersinia.spec 27 Jul 2009 08:54:00 -0000 1.3 @@ -1,6 +1,6 @@ Name: yersinia Version: 0.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Network protocols tester and attacker Group: Applications/Internet @@ -66,6 +66,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:54:19 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:54:19 +0000 (UTC) Subject: rpms/ykclient/devel ykclient.spec,1.3,1.4 Message-ID: <20090727085419.268DD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ykclient/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10998 Modified Files: ykclient.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ykclient.spec =================================================================== RCS file: /cvs/pkgs/rpms/ykclient/devel/ykclient.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ykclient.spec 21 Jun 2009 19:26:41 -0000 1.3 +++ ykclient.spec 27 Jul 2009 08:54:18 -0000 1.4 @@ -1,6 +1,6 @@ Name: ykclient Version: 2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Yubikey management library and client Group: Applications/System @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libykclient.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 21 2009 Dennis Gilmore - 2.3-1 - update to 2.3 release From jkeating at fedoraproject.org Mon Jul 27 08:54:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:54:31 +0000 (UTC) Subject: rpms/yofrankie-bge/devel yofrankie-bge.spec,1.4,1.5 Message-ID: <20090727085431.92BD911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yofrankie-bge/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11174 Modified Files: yofrankie-bge.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yofrankie-bge.spec =================================================================== RCS file: /cvs/pkgs/rpms/yofrankie-bge/devel/yofrankie-bge.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- yofrankie-bge.spec 12 Apr 2009 14:01:31 -0000 1.4 +++ yofrankie-bge.spec 27 Jul 2009 08:54:31 -0000 1.5 @@ -3,7 +3,7 @@ Name: yofrankie-bge # The site puts the last "technical demo" before the DVD release at # version 1.2; that may make the DVD version 1.3. Version: 1.4 -Release: 0.4.20090412svn +Release: 0.5.20090412svn Summary: 3D Game with characters from Big Buck Bunny movie Group: Amusements/Games @@ -91,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4-0.5.20090412svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Apr 12 2009 Lubomir Rintel - 1.4-0.4.20090412svn - Update the SVN snapshots with new levels - Enhancements to the wrapper From jkeating at fedoraproject.org Mon Jul 27 08:54:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:54:43 +0000 (UTC) Subject: rpms/yokadi/devel yokadi.spec,1.1,1.2 Message-ID: <20090727085443.A2D4011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yokadi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11346 Modified Files: yokadi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yokadi.spec =================================================================== RCS file: /cvs/pkgs/rpms/yokadi/devel/yokadi.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- yokadi.spec 15 Jul 2009 20:16:18 -0000 1.1 +++ yokadi.spec 27 Jul 2009 08:54:43 -0000 1.2 @@ -2,7 +2,7 @@ Name: yokadi Version: 0.10.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Command line oriented todo list system Group: Applications/Internet @@ -61,6 +61,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 13 2009 Fabian Affolter - 0.10.0-2 - Changed BR From jkeating at fedoraproject.org Mon Jul 27 08:54:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:54:56 +0000 (UTC) Subject: rpms/yoltia/devel yoltia.spec,1.3,1.4 Message-ID: <20090727085456.E363611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yoltia/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11528 Modified Files: yoltia.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yoltia.spec =================================================================== RCS file: /cvs/pkgs/rpms/yoltia/devel/yoltia.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- yoltia.spec 25 Feb 2009 18:12:13 -0000 1.3 +++ yoltia.spec 27 Jul 2009 08:54:56 -0000 1.4 @@ -1,6 +1,6 @@ Name: yoltia Version: 0.22.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Qt based picture editing program Summary(pl): Graficzny edytor oparty na Qt Group: Applications/Multimedia @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.22.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.22.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:55:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:55:10 +0000 (UTC) Subject: rpms/youtube-dl/devel youtube-dl.spec,1.2,1.3 Message-ID: <20090727085510.74DD811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/youtube-dl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11715 Modified Files: youtube-dl.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: youtube-dl.spec =================================================================== RCS file: /cvs/pkgs/rpms/youtube-dl/devel/youtube-dl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- youtube-dl.spec 25 Feb 2009 18:13:50 -0000 1.2 +++ youtube-dl.spec 27 Jul 2009 08:55:10 -0000 1.3 @@ -1,6 +1,6 @@ Name: youtube-dl Version: 2008.01.24 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Small command-line program to download videos from YouTube Summary(pl): Tekstowy program do pobierania film?w z youtube.com Group: Applications/Multimedia @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %doc index.html %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2008.01.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2008.01.24-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:55:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:55:27 +0000 (UTC) Subject: rpms/yp-tools/devel yp-tools.spec,1.26,1.27 Message-ID: <20090727085527.DD55411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yp-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11875 Modified Files: yp-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yp-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/yp-tools/devel/yp-tools.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- yp-tools.spec 4 Mar 2009 12:52:24 -0000 1.26 +++ yp-tools.spec 27 Jul 2009 08:55:27 -0000 1.27 @@ -1,7 +1,7 @@ Summary: NIS (or YP) client programs. Name: yp-tools Version: 2.9 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2 Group: System Environment/Base Source: ftp://ftp.kernel.org/pub/linux/utils/net/NIS/yp-tools-%{version}.tar.bz2 @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %dir /var/yp %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 4 2009 Vitezslav Crhonek - 2.9-6 - Add SHA-2 password hashes support Resolves: #487607 From jkeating at fedoraproject.org Mon Jul 27 08:55:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:55:46 +0000 (UTC) Subject: rpms/ypbind/devel ypbind.spec,1.62,1.63 Message-ID: <20090727085546.E6F8D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ypbind/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12091 Modified Files: ypbind.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ypbind.spec =================================================================== RCS file: /cvs/pkgs/rpms/ypbind/devel/ypbind.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- ypbind.spec 8 Apr 2009 10:53:09 -0000 1.62 +++ ypbind.spec 27 Jul 2009 08:55:46 -0000 1.63 @@ -1,7 +1,7 @@ Summary: The NIS daemon which binds NIS clients to an NIS domain Name: ypbind Version: 1.20.4 -Release: 18%{?dist} +Release: 19%{?dist} License: GPLv2 Group: System Environment/Daemons Source0: ftp://ftp.us.kernel.org/pub/linux/utils/net/NIS/ypbind-mt-%{version}.tar.bz2 @@ -97,6 +97,9 @@ fi %doc README NEWS %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3:1.20.4-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Apr 8 2009 Vitezslav Crhonek - 3:1.20.4-18 - Remove LSB Header from init script Resolves: #494827 From jkeating at fedoraproject.org Mon Jul 27 08:55:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:55:58 +0000 (UTC) Subject: rpms/ypserv/devel ypserv.spec,1.43,1.44 Message-ID: <20090727085558.C9A9211C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ypserv/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12234 Modified Files: ypserv.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ypserv.spec =================================================================== RCS file: /cvs/pkgs/rpms/ypserv/devel/ypserv.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- ypserv.spec 3 Mar 2009 13:42:57 -0000 1.43 +++ ypserv.spec 27 Jul 2009 08:55:58 -0000 1.44 @@ -4,7 +4,7 @@ Summary: The NIS (Network Information Se Url: http://www.linux-nis.org/nis/ypserv/index.html Name: ypserv Version: 2.19 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2 Group: System Environment/Daemons Source0: ftp://ftp.kernel.org/pub/linux/utils/net/NIS/ypserv-%{version}.tar.bz2 @@ -144,6 +144,9 @@ exit 0 %{_includedir}/*/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.19-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 3 2009 Vitezslav Crhonek - 2.19-12 - Mark apropriate config files as noreplace From jkeating at fedoraproject.org Mon Jul 27 08:56:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:56:11 +0000 (UTC) Subject: rpms/ytalk/devel ytalk.spec,1.56,1.57 Message-ID: <20090727085611.4D1B511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ytalk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12402 Modified Files: ytalk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ytalk.spec =================================================================== RCS file: /cvs/pkgs/rpms/ytalk/devel/ytalk.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- ytalk.spec 1 Jul 2009 14:17:01 -0000 1.56 +++ ytalk.spec 27 Jul 2009 08:56:11 -0000 1.57 @@ -1,7 +1,7 @@ Summary: A chat program for multiple users Name: ytalk Version: 3.3.0 -Release: 15%{?dist} +Release: 16%{?dist} License: GPLv2+ Group: Applications/Internet URL: http://www.impul.se/ytalk/ @@ -38,6 +38,9 @@ rm -rf %{buildroot} %config(noreplace) /etc/ytalkrc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.3.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Mike McGrath 3.3.9-15 - Release bump for test build From jkeating at fedoraproject.org Mon Jul 27 08:56:23 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:56:23 +0000 (UTC) Subject: rpms/ytree/devel ytree.spec,1.1,1.2 Message-ID: <20090727085623.09FCD11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ytree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12551 Modified Files: ytree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: ytree.spec =================================================================== RCS file: /cvs/pkgs/rpms/ytree/devel/ytree.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ytree.spec 2 Jun 2009 07:33:58 -0000 1.1 +++ ytree.spec 27 Jul 2009 08:56:22 -0000 1.2 @@ -1,7 +1,7 @@ Summary: A filemanager similar to XTree Name: ytree Version: 1.92 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: System Environment/Shells @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/ytree %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.92-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 28 2009 Minto Joseph - 1.92-3 - Cleaned up spec file From jkeating at fedoraproject.org Mon Jul 27 08:56:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:56:44 +0000 (UTC) Subject: rpms/yum/devel yum.spec,1.266,1.267 Message-ID: <20090727085644.BC8F911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12771 Modified Files: yum.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum/devel/yum.spec,v retrieving revision 1.266 retrieving revision 1.267 diff -u -p -r1.266 -r1.267 --- yum.spec 22 Jul 2009 16:53:27 -0000 1.266 +++ yum.spec 27 Jul 2009 08:56:44 -0000 1.267 @@ -3,7 +3,7 @@ Summary: RPM installer/updater Name: yum Version: 3.2.23 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://yum.baseurl.org/download/3.2/%{name}-%{version}.tar.gz @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %dir /usr/lib/yum-plugins %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 3.2.23-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Seth Vidal - 3.2.23-10 - remove exactarchlist by request for rawhide From jkeating at fedoraproject.org Mon Jul 27 08:56:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:56:58 +0000 (UTC) Subject: rpms/yum-arch/devel yum-arch.spec,1.5,1.6 Message-ID: <20090727085658.5897D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-arch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12914 Modified Files: yum-arch.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-arch.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-arch/devel/yum-arch.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- yum-arch.spec 16 May 2009 19:01:30 -0000 1.5 +++ yum-arch.spec 27 Jul 2009 08:56:58 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Extract headers from rpm in a old yum repository Name: yum-arch Version: 2.2.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://linux.duke.edu/projects/yum/download/2.2/yum-%{version}.tar.gz @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/%{name}* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat May 16 2009 Remi Collet - 2.2.2-6 - fix python 2.6 issue From jkeating at fedoraproject.org Mon Jul 27 08:57:12 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:57:12 +0000 (UTC) Subject: rpms/yum-cron/devel yum-cron.spec,1.12,1.13 Message-ID: <20090727085712.2EF5411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-cron/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13059 Modified Files: yum-cron.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-cron.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-cron/devel/yum-cron.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- yum-cron.spec 25 Feb 2009 18:22:33 -0000 1.12 +++ yum-cron.spec 27 Jul 2009 08:57:11 -0000 1.13 @@ -1,7 +1,7 @@ Summary: Files needed to run yum updates as a cron job Name: yum-cron Version: 0.8.3 -Release: 2%{?dist} +Release: 3%{?dist} URL: http://linux.duke.edu/yum/ # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from @@ -91,6 +91,9 @@ exit 0 %config(noreplace) %{_sysconfdir}/sysconfig/yum-cron %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.8.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.8.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:57:24 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:57:24 +0000 (UTC) Subject: rpms/yum-metadata-parser/devel yum-metadata-parser.spec,1.28,1.29 Message-ID: <20090727085724.AA86511C0425@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-metadata-parser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13209 Modified Files: yum-metadata-parser.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-metadata-parser.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-metadata-parser/devel/yum-metadata-parser.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- yum-metadata-parser.spec 25 Feb 2009 18:23:32 -0000 1.28 +++ yum-metadata-parser.spec 27 Jul 2009 08:57:24 -0000 1.29 @@ -4,7 +4,7 @@ Summary: A fast metadata parser for yum Name: yum-metadata-parser Version: 1.1.2 -Release: 12%{?dist} +Release: 13%{?dist} Source0: http://linux.duke.edu/projects/yum/download/%{name}/%{name}-%{version}.tar.gz Patch0: yum-metadata-parser-1.1.2-null-pkgid.patch Patch1: yum-metadata-parser-exclusive-lock.patch @@ -53,6 +53,9 @@ Fast metadata parser for yum implemented %{python_sitelib_platform}/*egg-info %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.1.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:57:36 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:57:36 +0000 (UTC) Subject: rpms/yum-presto/devel yum-presto.spec,1.17,1.18 Message-ID: <20090727085736.BC80411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-presto/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13338 Modified Files: yum-presto.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-presto.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-presto/devel/yum-presto.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- yum-presto.spec 1 May 2009 11:19:34 -0000 1.17 +++ yum-presto.spec 27 Jul 2009 08:57:36 -0000 1.18 @@ -3,7 +3,7 @@ Summary: Presto plugin for yum Name: yum-presto Version: 0.5.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Development/Tools Source: http://www.lesbg.com/jdieter/presto/%{name}-%{version}.tar.bz2 @@ -45,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/yum/pluginconf.d/presto.conf %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Jonathan Dieter - 0.5.0-1 - Remove patches (now upstream) - Reduce summary to one-line sentence From jkeating at fedoraproject.org Mon Jul 27 08:57:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:57:49 +0000 (UTC) Subject: rpms/yum-updatesd/devel yum-updatesd.spec,1.10,1.11 Message-ID: <20090727085749.6FA7D11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-updatesd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13458 Modified Files: yum-updatesd.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-updatesd.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-updatesd/devel/yum-updatesd.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- yum-updatesd.spec 25 Feb 2009 18:25:29 -0000 1.10 +++ yum-updatesd.spec 27 Jul 2009 08:57:49 -0000 1.11 @@ -2,7 +2,7 @@ Summary: Update notification daemon Name: yum-updatesd Epoch: 1 Version: 0.9 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 Group: System Environment/Base Source0: %{name}-%{version}.tar.bz2 @@ -61,6 +61,9 @@ exit 0 %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1:0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:58:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:58:04 +0000 (UTC) Subject: rpms/yum-utils/devel yum-utils.spec,1.64,1.65 Message-ID: <20090727085804.88B8411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yum-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13606 Modified Files: yum-utils.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yum-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/yum-utils/devel/yum-utils.spec,v retrieving revision 1.64 retrieving revision 1.65 diff -u -p -r1.64 -r1.65 --- yum-utils.spec 7 Jul 2009 19:10:23 -0000 1.64 +++ yum-utils.spec 27 Jul 2009 08:58:04 -0000 1.65 @@ -1,7 +1,7 @@ Summary: Utilities based around the yum package manager Name: yum-utils Version: 1.1.22 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Development/Tools Source: http://yum.baseurl.org/download/yum-utils/%{name}-%{version}.tar.gz @@ -598,6 +598,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 7 2009 Seth Vidal - patch to repoclosure so spam-o-matic works again in rawhide From jkeating at fedoraproject.org Mon Jul 27 08:58:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:58:17 +0000 (UTC) Subject: rpms/yumex/devel yumex.spec,1.72,1.73 Message-ID: <20090727085817.2DB0811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/yumex/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13748 Modified Files: yumex.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: yumex.spec =================================================================== RCS file: /cvs/pkgs/rpms/yumex/devel/yumex.spec,v retrieving revision 1.72 retrieving revision 1.73 diff -u -p -r1.72 -r1.73 --- yumex.spec 25 Feb 2009 18:27:25 -0000 1.72 +++ yumex.spec 27 Jul 2009 08:58:16 -0000 1.73 @@ -2,7 +2,7 @@ Name: yumex Version: 2.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Yum Extender graphical package management tool Group: Applications/System @@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:58:30 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:58:30 +0000 (UTC) Subject: rpms/z88dk/devel z88dk.spec,1.20,1.21 Message-ID: <20090727085830.5BED011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/z88dk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13907 Modified Files: z88dk.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: z88dk.spec =================================================================== RCS file: /cvs/pkgs/rpms/z88dk/devel/z88dk.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- z88dk.spec 21 Jul 2009 03:25:28 -0000 1.20 +++ z88dk.spec 27 Jul 2009 08:58:30 -0000 1.21 @@ -1,7 +1,7 @@ Summary: A Z80 cross compiler Name: z88dk Version: 1.9 -Release: 1%{?dist} +Release: 2%{?dist} License: Artistic clarified Group: Development/Tools Source: http://downloads.sourceforge.net/z88dk/z88dk-src-%{version}.tgz @@ -80,6 +80,9 @@ export ZCCCFG=%{_datadir}/z88dk-%{versio %{_mandir}/man3z/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Kevin Kofler - 1.9-1 - update to 1.9 (#512391) - update 64bit patch (one issue fixed upstream, many left) From jkeating at fedoraproject.org Mon Jul 27 08:58:42 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:58:42 +0000 (UTC) Subject: rpms/zabbix/devel zabbix.spec,1.43,1.44 Message-ID: <20090727085842.DEFC511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zabbix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14082 Modified Files: zabbix.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zabbix.spec =================================================================== RCS file: /cvs/pkgs/rpms/zabbix/devel/zabbix.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- zabbix.spec 16 Jun 2009 15:04:40 -0000 1.43 +++ zabbix.spec 27 Jul 2009 08:58:42 -0000 1.44 @@ -7,7 +7,7 @@ Name: zabbix Version: 1.6.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Open-source monitoring solution for your IT infrastructure Group: Applications/Internet @@ -549,6 +549,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.6.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 8 2009 Jeffrey C. Ollie - 1.6.5-1 - Update to 1.6.5, see http://sourceforge.net/mailarchive/message.php?msg_name=4A37A2CA.8050503%40zabbix.com for the full release notes. - From jkeating at fedoraproject.org Mon Jul 27 08:58:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:58:53 +0000 (UTC) Subject: rpms/zaf/devel zaf.spec,1.3,1.4 Message-ID: <20090727085853.A3B8011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zaf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14202 Modified Files: zaf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zaf.spec =================================================================== RCS file: /cvs/pkgs/rpms/zaf/devel/zaf.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- zaf.spec 25 Feb 2009 18:30:25 -0000 1.3 +++ zaf.spec 27 Jul 2009 08:58:53 -0000 1.4 @@ -2,7 +2,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.2.%{upstreamid}svn%{?dist} +Release: 0.3.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 Group: Applications/Text URL: http://zaf.sourceforge.net/ @@ -61,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/hyphen/hyph_zu* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0-0.3.20080714svn +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0-0.2.20080714svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:59:05 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:59:05 +0000 (UTC) Subject: rpms/zapplet/devel zapplet.spec,1.3,1.4 Message-ID: <20090727085905.EB05011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zapplet/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14356 Modified Files: zapplet.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zapplet.spec =================================================================== RCS file: /cvs/pkgs/rpms/zapplet/devel/zapplet.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- zapplet.spec 25 Feb 2009 18:31:25 -0000 1.3 +++ zapplet.spec 27 Jul 2009 08:59:05 -0000 1.4 @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: zapplet Version: 0.1 -Release: 5%{dist} +Release: 6%{dist} Summary: Zenoss Tray Applet Group: Applications/Communications License: GPLv2+ @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/applications/zapplet.desktop %doc README.fedora %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:59:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:59:17 +0000 (UTC) Subject: rpms/zaptel/devel zaptel.spec,1.31,1.32 Message-ID: <20090727085917.09A7411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zaptel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14503 Modified Files: zaptel.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zaptel.spec =================================================================== RCS file: /cvs/pkgs/rpms/zaptel/devel/zaptel.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- zaptel.spec 25 Feb 2009 18:32:22 -0000 1.31 +++ zaptel.spec 27 Jul 2009 08:59:16 -0000 1.32 @@ -1,7 +1,7 @@ Summary: Tools and libraries for using/configuring/monitoring Zapata telephony interfaces Name: zaptel Version: 1.4.12.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.digium.com/ @@ -181,6 +181,9 @@ fi %{_libdir}/libtonezone.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4.12.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:59:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:59:28 +0000 (UTC) Subject: rpms/zasx/devel zasx.spec,1.7,1.8 Message-ID: <20090727085928.F0CBC11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zasx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14636 Modified Files: zasx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zasx.spec =================================================================== RCS file: /cvs/pkgs/rpms/zasx/devel/zasx.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- zasx.spec 25 Feb 2009 18:33:18 -0000 1.7 +++ zasx.spec 27 Jul 2009 08:59:28 -0000 1.8 @@ -1,6 +1,6 @@ Name: zasx Version: 1.30 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Asteroid like game with powerups Group: Amusements/Games License: GPLv2+ and Freely redistributable without restriction @@ -74,6 +74,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.30-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.30-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:59:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:59:44 +0000 (UTC) Subject: rpms/zd1211-firmware/devel zd1211-firmware.spec,1.4,1.5 Message-ID: <20090727085944.3D84B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zd1211-firmware/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14823 Modified Files: zd1211-firmware.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zd1211-firmware.spec =================================================================== RCS file: /cvs/pkgs/rpms/zd1211-firmware/devel/zd1211-firmware.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- zd1211-firmware.spec 25 Feb 2009 18:34:13 -0000 1.4 +++ zd1211-firmware.spec 27 Jul 2009 08:59:44 -0000 1.5 @@ -1,7 +1,7 @@ %define snap 2007-03-19 Name: zd1211-firmware Version: 1.4 -Release: 2 +Release: 3 Summary: Firmware for wireless devices based on zd1211 chipset Group: System Environment/Kernel License: GPLv2 @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 08:59:57 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:59:57 +0000 (UTC) Subject: rpms/zenity/devel zenity.spec,1.52,1.53 Message-ID: <20090727085957.326B811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zenity/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14947 Modified Files: zenity.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zenity.spec =================================================================== RCS file: /cvs/pkgs/rpms/zenity/devel/zenity.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- zenity.spec 17 Mar 2009 02:56:09 -0000 1.52 +++ zenity.spec 27 Jul 2009 08:59:56 -0000 1.53 @@ -1,6 +1,6 @@ Name: zenity Version: 2.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Display dialog boxes from shell scripts Group: Applications/System License: LGPLv2+ @@ -90,6 +90,9 @@ scrollkeeper-update -q || : %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Matthias Clasen - 2.26.0-1 - Update 2.26.0 From jkeating at fedoraproject.org Mon Jul 27 09:00:14 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:00:14 +0000 (UTC) Subject: rpms/zenon/devel zenon.spec,1.5,1.6 Message-ID: <20090727090014.B8E5F11C043C@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zenon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15144 Modified Files: zenon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zenon.spec =================================================================== RCS file: /cvs/pkgs/rpms/zenon/devel/zenon.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- zenon.spec 15 Jun 2009 16:27:25 -0000 1.5 +++ zenon.spec 27 Jul 2009 09:00:14 -0000 1.6 @@ -1,6 +1,6 @@ Name: zenon Version: 0.5.0 -Release: 4%{?dist}.1 +Release: 5%{?dist}.1 Summary: Automated theorem prover for first-order classical logic Group: Applications/Engineering License: BSD @@ -115,6 +115,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.0-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 15 2009 Karsten Hopp 0.5.0-4.1 - ocaml not available on mainframes, add excludearch From jkeating at fedoraproject.org Mon Jul 27 09:00:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:00:33 +0000 (UTC) Subject: rpms/zerofree/devel zerofree.spec,1.1,1.2 Message-ID: <20090727090033.2D45911C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zerofree/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15327 Modified Files: zerofree.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zerofree.spec =================================================================== RCS file: /cvs/pkgs/rpms/zerofree/devel/zerofree.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zerofree.spec 18 May 2009 08:14:24 -0000 1.1 +++ zerofree.spec 27 Jul 2009 09:00:32 -0000 1.2 @@ -1,7 +1,7 @@ Summary: Utility to force unused ext2 inodes and blocks to zero Name: zerofree Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL+ Group: System Environment/Libraries @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 15 2009 Richard W.M. Jones - 1.0.1-5 - Include the index file as a source file. - Improve the description, remove spelling mistakes and other typos. From jkeating at fedoraproject.org Mon Jul 27 09:00:48 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:00:48 +0000 (UTC) Subject: rpms/zeroinstall-injector/devel zeroinstall-injector.spec, 1.16, 1.17 Message-ID: <20090727090048.2D75211C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zeroinstall-injector/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15517 Modified Files: zeroinstall-injector.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zeroinstall-injector.spec =================================================================== RCS file: /cvs/pkgs/rpms/zeroinstall-injector/devel/zeroinstall-injector.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- zeroinstall-injector.spec 28 Feb 2009 17:04:20 -0000 1.16 +++ zeroinstall-injector.spec 27 Jul 2009 09:00:47 -0000 1.17 @@ -4,7 +4,7 @@ Name: zeroinstall-injector Version: 0.38 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Zero Install Injector (0launch) Group: Applications/System @@ -89,6 +89,9 @@ exit 0 %attr(755,zeroinst,zeroinst) %{cache_dir}/implementations %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.38-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Feb 28 2009 Michel Salim - 0.38-2 - Workaround for RHEL's desktop-file-utils - Add missing dependency on xdg-utils From jkeating at fedoraproject.org Mon Jul 27 08:38:47 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:38:47 +0000 (UTC) Subject: rpms/xorg-x11-xfs/devel xorg-x11-xfs.spec,1.36,1.37 Message-ID: <20090727083847.7688A11C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31612 Modified Files: xorg-x11-xfs.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xfs/devel/xorg-x11-xfs.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- xorg-x11-xfs.spec 13 Apr 2009 18:59:01 -0000 1.36 +++ xorg-x11-xfs.spec 27 Jul 2009 08:38:47 -0000 1.37 @@ -1,7 +1,7 @@ Summary: X.Org X11 xfs font server Name: xorg-x11-xfs Version: 1.0.5 -Release: 5%{?dist} +Release: 6%{?dist} # NOTE: Remove Epoch line if package gets renamed Epoch: 1 License: MIT @@ -244,6 +244,9 @@ EOF %{_mandir}/man1/xfsinfo.1x* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1:1.0.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Apr 13 2009 Adam Jackson 1.0.5-5 - xfs.init: Fix mkdir race (#492517) From jkeating at fedoraproject.org Mon Jul 27 09:01:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:01:01 +0000 (UTC) Subject: rpms/zfs-fuse/devel zfs-fuse.spec,1.14,1.15 Message-ID: <20090727090101.A46E611C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zfs-fuse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15666 Modified Files: zfs-fuse.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zfs-fuse.spec =================================================================== RCS file: /cvs/pkgs/rpms/zfs-fuse/devel/zfs-fuse.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- zfs-fuse.spec 10 Jun 2009 13:49:11 -0000 1.14 +++ zfs-fuse.spec 27 Jul 2009 09:01:01 -0000 1.15 @@ -1,7 +1,7 @@ Summary: ZFS ported to Linux FUSE Name: zfs-fuse Version: 0.5.0 -Release: 8.20081221%{?dist}.1 +Release: 9.20081221%{?dist}.1 Group: System Environment/Base License: CDDL URL: http://www.wizy.org/wiki/ZFS_on_FUSE @@ -90,6 +90,9 @@ fi %{_sysconfdir}/sysconfig/%{name} %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.5.0-9.20081221.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Karsten Hopp 0.5.0-8.20081221.1 - excludearch s390, s390x as there is no implementation for atomic instructions From jkeating at fedoraproject.org Mon Jul 27 08:39:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:39:00 +0000 (UTC) Subject: rpms/xorg-x11-xfwp/devel xorg-x11-xfwp.spec,1.20,1.21 Message-ID: <20090727083900.4600211C025F@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xorg-x11-xfwp/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31741 Modified Files: xorg-x11-xfwp.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xorg-x11-xfwp.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-xfwp/devel/xorg-x11-xfwp.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- xorg-x11-xfwp.spec 23 Jul 2009 14:19:27 -0000 1.20 +++ xorg-x11-xfwp.spec 27 Jul 2009 08:39:00 -0000 1.21 @@ -5,7 +5,7 @@ Summary: X.Org X11 X firewall proxy Name: xorg-x11-%{pkgname} # NOTE: The package version should always be the upstream xfwp tarball version. Version: %{xfwp_version} -Release: 9%{?dist} +Release: 10%{?dist} License: MIT Group: User Interface/X URL: http://www.x.org @@ -85,6 +85,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/xfwp.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Adam Jackson 1.0.1-9 - Un-require xorg-x11-filesystem From jkeating at fedoraproject.org Mon Jul 27 08:50:07 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 08:50:07 +0000 (UTC) Subject: rpms/xyz-gallery/devel xyz-gallery.spec,1.2,1.3 Message-ID: <20090727085007.3150011C043A@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/xyz-gallery/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8285 Modified Files: xyz-gallery.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: xyz-gallery.spec =================================================================== RCS file: /cvs/pkgs/rpms/xyz-gallery/devel/xyz-gallery.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- xyz-gallery.spec 26 Feb 2009 12:21:17 -0000 1.2 +++ xyz-gallery.spec 27 Jul 2009 08:50:07 -0000 1.3 @@ -1,6 +1,6 @@ Name: xyz-gallery Version: 0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A simple Perl script for creation image galleries with JavaScript viewer Group: Applications/Publishing License: GPLv3 @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %doc COPYING %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:01:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:01:16 +0000 (UTC) Subject: rpms/zfstream/devel zfstream.spec,1.2,1.3 Message-ID: <20090727090116.C1F1811C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zfstream/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15802 Modified Files: zfstream.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zfstream.spec =================================================================== RCS file: /cvs/pkgs/rpms/zfstream/devel/zfstream.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- zfstream.spec 1 May 2009 21:10:20 -0000 1.2 +++ zfstream.spec 27 Jul 2009 09:01:16 -0000 1.3 @@ -4,7 +4,7 @@ Name: zfstream Version: %{vyear}%{vmonth}%{vday} -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library for reading and writing compressed and non-compressed files Group: System Environment/Libraries @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 20041202-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri May 1 2009 Thomas Sailer - 20041202-5 - rebuild From jkeating at fedoraproject.org Mon Jul 27 09:01:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:01:33 +0000 (UTC) Subject: rpms/zhcon/devel zhcon.spec,1.13,1.14 Message-ID: <20090727090133.F286B11C0426@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zhcon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15966 Modified Files: zhcon.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zhcon.spec =================================================================== RCS file: /cvs/pkgs/rpms/zhcon/devel/zhcon.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- zhcon.spec 25 Feb 2009 18:38:58 -0000 1.13 +++ zhcon.spec 27 Jul 2009 09:01:33 -0000 1.14 @@ -1,7 +1,7 @@ Name: zhcon Summary: A Fast Console CJK System Using FrameBuffer Version: 0.2.6 -Release: 13%{?dist} +Release: 14%{?dist} Group: Applications/System License: GPLv2+ URL: http://zhcon.sourceforge.net/ @@ -85,6 +85,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_datadir}/%{name}/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.2.6-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:01:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:01:46 +0000 (UTC) Subject: rpms/zidrav/devel zidrav.spec,1.5,1.6 Message-ID: <20090727090146.D5E7B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zidrav/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16129 Modified Files: zidrav.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zidrav.spec =================================================================== RCS file: /cvs/pkgs/rpms/zidrav/devel/zidrav.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- zidrav.spec 25 Feb 2009 18:39:53 -0000 1.5 +++ zidrav.spec 27 Jul 2009 09:01:46 -0000 1.6 @@ -1,7 +1,7 @@ Summary: Zorba's Incredible Data Repairer And Verifier Name: zidrav Version: 1.2.0 -Release: 6%{?dist} +Release: 7%{?dist} URL: http://sourceforge.net/projects/zidrav Group: Applications/File Source: http://switch.dl.sourceforge.net/sourceforge/zidrav/%{name}4unix-%{version}.tar.gz @@ -45,6 +45,9 @@ tr -d '\r' zidrav.txt.cr && %{_mandir}/man1/%{name}.* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:02:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:02:04 +0000 (UTC) Subject: rpms/zikula/devel zikula.spec,1.1,1.2 Message-ID: <20090727090204.50FFE11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zikula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16254 Modified Files: zikula.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zikula.spec =================================================================== RCS file: /cvs/pkgs/rpms/zikula/devel/zikula.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zikula.spec 20 Mar 2009 16:03:44 -0000 1.1 +++ zikula.spec 27 Jul 2009 09:02:02 -0000 1.2 @@ -1,6 +1,6 @@ Name: zikula Version: 1.1.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Zikula is a free open source Web Application Framework Group: Applications/Publishing License: GPLv2+ @@ -91,6 +91,9 @@ ln -sf /usr/share/doc/zikula-1.1.1 /usr/ symlinks -crs /usr/share/zikula || : %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Mar 14 2009 David Nalley 1.1.1-12 - appended zero exit snippet to all pre and post lines From jkeating at fedoraproject.org Mon Jul 27 09:02:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:02:17 +0000 (UTC) Subject: rpms/zikula-module-MultiHook/devel zikula-module-MultiHook.spec, 1.1, 1.2 Message-ID: <20090727090217.5BF1F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zikula-module-MultiHook/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16476 Modified Files: zikula-module-MultiHook.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zikula-module-MultiHook.spec =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-MultiHook/devel/zikula-module-MultiHook.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zikula-module-MultiHook.spec 14 Jul 2009 12:12:31 -0000 1.1 +++ zikula-module-MultiHook.spec 27 Jul 2009 09:02:17 -0000 1.2 @@ -4,7 +4,7 @@ Name: zikula-module-%{zikula_modname} Version: 5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: MultiHook is a simple replacement for the old AutoLinks module for Zikula Group: Applications/Publishing @@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 5.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Eric "Sparks" Christensen - 5.0-4 - Fixed license in SPEC. From jkeating at fedoraproject.org Mon Jul 27 09:02:31 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:02:31 +0000 (UTC) Subject: rpms/zikula-module-News/devel zikula-module-News.spec,1.1,1.2 Message-ID: <20090727090231.50D6011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zikula-module-News/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16623 Modified Files: zikula-module-News.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zikula-module-News.spec =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-News/devel/zikula-module-News.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zikula-module-News.spec 21 Jul 2009 21:58:09 -0000 1.1 +++ zikula-module-News.spec 27 Jul 2009 09:02:30 -0000 1.2 @@ -4,7 +4,7 @@ Name: zikula-module-%{zikula_modname} Version: 2.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Manages news articles on your Zikula site Group: Applications/Publishing @@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 16 2009 Paul W. Frields - 2.4.1-2 - Fix packaging errors From jkeating at fedoraproject.org Mon Jul 27 09:02:43 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:02:43 +0000 (UTC) Subject: rpms/zikula-module-crpTag/devel zikula-module-crpTag.spec,1.1,1.2 Message-ID: <20090727090243.B4E3511C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zikula-module-crpTag/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16775 Modified Files: zikula-module-crpTag.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zikula-module-crpTag.spec =================================================================== RCS file: /cvs/pkgs/rpms/zikula-module-crpTag/devel/zikula-module-crpTag.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zikula-module-crpTag.spec 10 Jul 2009 04:06:29 -0000 1.1 +++ zikula-module-crpTag.spec 27 Jul 2009 09:02:43 -0000 1.2 @@ -4,7 +4,7 @@ Name: zikula-module-%{zikula_modname} Version: 0.1.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple Zikula component for tagging items, based on hooks Group: Applications/Publishing @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Eric "Sparks" Christensen - 0.1.3-3 - Corrected license * Sun Jun 14 2009 Eric "Sparks" Christensen - 0.1.3-2 From jkeating at fedoraproject.org Mon Jul 27 09:02:58 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:02:58 +0000 (UTC) Subject: rpms/zile/devel zile.spec,1.13,1.14 Message-ID: <20090727090258.B8F6E11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zile/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16892 Modified Files: zile.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zile.spec =================================================================== RCS file: /cvs/pkgs/rpms/zile/devel/zile.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- zile.spec 15 Jul 2009 16:41:57 -0000 1.13 +++ zile.spec 27 Jul 2009 09:02:58 -0000 1.14 @@ -1,7 +1,7 @@ Summary: Zile Is Lossy Emacs Name: zile Version: 2.3.9 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ Group: Applications/Editors URL: http://www.gnu.org/software/%{name}/ @@ -39,6 +39,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/%{name}/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.3.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 15 2009 Rakesh Pandit - 2.3.9-1 - Updated to 2.3.9 From jkeating at fedoraproject.org Mon Jul 27 09:03:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:03:18 +0000 (UTC) Subject: rpms/zip/devel zip.spec,1.30,1.31 Message-ID: <20090727090318.55F7411C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17104 Modified Files: zip.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/zip/devel/zip.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- zip.spec 25 Feb 2009 18:41:47 -0000 1.30 +++ zip.spec 27 Jul 2009 09:03:18 -0000 1.31 @@ -1,7 +1,7 @@ Summary: A file compression and packaging utility compatible with PKZIP Name: zip Version: 2.31 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD Group: Applications/Archiving Source: http://ftp.info-zip.org/pub/infozip/src/zip231.tar.gz @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/zip.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.31-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.31-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:03:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:03:40 +0000 (UTC) Subject: rpms/zisofs-tools/devel zisofs-tools.spec,1.21,1.22 Message-ID: <20090727090340.43BD011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zisofs-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17249 Modified Files: zisofs-tools.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zisofs-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/zisofs-tools/devel/zisofs-tools.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- zisofs-tools.spec 25 Feb 2009 18:42:46 -0000 1.21 +++ zisofs-tools.spec 27 Jul 2009 09:03:39 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Utilities for creating compressed CD-ROM filesystems Name: zisofs-tools Version: 1.0.8 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL+ Group: Applications/System URL: http://www.kernel.org/pub/linux/utils/fs/zisofs/ @@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/mkzftree.1* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:03:52 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:03:52 +0000 (UTC) Subject: rpms/zita-convolver/devel zita-convolver.spec,1.1,1.2 Message-ID: <20090727090352.6E64711C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zita-convolver/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17468 Modified Files: zita-convolver.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zita-convolver.spec =================================================================== RCS file: /cvs/pkgs/rpms/zita-convolver/devel/zita-convolver.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- zita-convolver.spec 13 May 2009 06:00:07 -0000 1.1 +++ zita-convolver.spec 27 Jul 2009 09:03:52 -0000 1.2 @@ -3,7 +3,7 @@ Summary: Convolution engine library Name: zita-convolver Version: 1.0.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.kokkinizita.net/linuxaudio/ @@ -64,6 +64,9 @@ rm -rf %{buildroot} %{_libdir}/lib%{name}.so %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue May 05 2009 Orcan Ogetbil - 1.0.0-2 - prepare package for Fedora submission (SPEC file from PlanetCCRMA) From jkeating at fedoraproject.org Mon Jul 27 09:04:10 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:04:10 +0000 (UTC) Subject: rpms/zlib/devel zlib.spec,1.50,1.51 Message-ID: <20090727090411.056A911C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zlib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17636 Modified Files: zlib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zlib.spec =================================================================== RCS file: /cvs/pkgs/rpms/zlib/devel/zlib.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- zlib.spec 18 Mar 2009 10:09:41 -0000 1.50 +++ zlib.spec 27 Jul 2009 09:04:10 -0000 1.51 @@ -1,7 +1,7 @@ Summary: The zlib compression and decompression library Name: zlib Version: 1.2.3 -Release: 22%{?dist} +Release: 23%{?dist} Group: System Environment/Libraries Source: http://www.zlib.net/zlib-%{version}.tar.gz Patch3: zlib-1.2.3-autotools.patch @@ -129,6 +129,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/pkgconfig/minizip.pc %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 18 2009 Stepan Kasal - 1.2.3-22 - fix the libz.so symlink From jkeating at fedoraproject.org Mon Jul 27 09:04:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:04:27 +0000 (UTC) Subject: rpms/znc/devel znc.spec,1.6,1.7 Message-ID: <20090727090427.2E80A11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/znc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17807 Modified Files: znc.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: znc.spec =================================================================== RCS file: /cvs/pkgs/rpms/znc/devel/znc.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- znc.spec 23 Jul 2009 18:10:45 -0000 1.6 +++ znc.spec 27 Jul 2009 09:04:26 -0000 1.7 @@ -1,7 +1,7 @@ Summary: An advanced IRC bouncer Name: znc Version: 0.074 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 with exceptions Group: System Environment/Daemons URL: http://znc.sf.net/ @@ -65,6 +65,9 @@ modules. %{_includedir}/znc/ %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.074-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Jul 23 2009 Nick Bebout - 0.074-1 - Update to 0.074 * Wed Jul 22 2009 Nick Bebout - 0.072-3 From jkeating at fedoraproject.org Mon Jul 27 09:04:40 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:04:40 +0000 (UTC) Subject: rpms/zoneminder/devel zoneminder.spec,1.23,1.24 Message-ID: <20090727090440.B7D9F11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zoneminder/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17984 Modified Files: zoneminder.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zoneminder.spec =================================================================== RCS file: /cvs/pkgs/rpms/zoneminder/devel/zoneminder.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- zoneminder.spec 22 Jul 2009 20:18:50 -0000 1.23 +++ zoneminder.spec 27 Jul 2009 09:04:40 -0000 1.24 @@ -5,7 +5,7 @@ Name: zoneminder Version: 1.24.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A camera monitoring and analysis tool Group: System Environment/Daemons # jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/ @@ -200,6 +200,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.24.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 22 2009 Jason L Tibbitts III - 1.24.2-2 - Bump release since 1.24.2-1 was mistakenly tagged a few months ago. From jkeating at fedoraproject.org Mon Jul 27 09:04:55 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:04:55 +0000 (UTC) Subject: rpms/zsh/devel zsh.spec,1.61,1.62 Message-ID: <20090727090455.36B8111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zsh/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18144 Modified Files: zsh.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zsh.spec =================================================================== RCS file: /cvs/pkgs/rpms/zsh/devel/zsh.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- zsh.spec 21 Jul 2009 04:31:12 -0000 1.61 +++ zsh.spec 27 Jul 2009 09:04:54 -0000 1.62 @@ -3,7 +3,7 @@ Summary: A powerful interactive shell Name: zsh Version: 4.3.10 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD URL: http://zsh.sunsite.dk/ Group: System Environment/Shells @@ -168,6 +168,9 @@ fi %doc Doc/*.html %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.3.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 20 2009 James Antill - 4.3.10-1 - Import new upstream 4.3.10 From jkeating at fedoraproject.org Mon Jul 27 09:05:09 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:05:09 +0000 (UTC) Subject: rpms/zvbi/devel zvbi.spec,1.12,1.13 Message-ID: <20090727090509.40DD611C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zvbi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18337 Modified Files: zvbi.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zvbi.spec =================================================================== RCS file: /cvs/pkgs/rpms/zvbi/devel/zvbi.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- zvbi.spec 25 Mar 2009 15:57:27 -0000 1.12 +++ zvbi.spec 27 Jul 2009 09:05:09 -0000 1.13 @@ -3,7 +3,7 @@ Name: zvbi Version: 0.2.33 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Raw VBI, Teletext and Closed Caption decoding library Group: System Environment/Libraries # See NEWS for a full breakdown of licensing. @@ -185,6 +185,9 @@ fi %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.2.33-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Mar 25 2009 Dmitry Butskoy - 0.2.33-3 - Rebuilt for #491975 From jkeating at fedoraproject.org Mon Jul 27 09:05:22 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:05:22 +0000 (UTC) Subject: rpms/zynaddsubfx/devel zynaddsubfx.spec,1.14,1.15 Message-ID: <20090727090522.C467B11C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zynaddsubfx/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18506 Modified Files: zynaddsubfx.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zynaddsubfx.spec =================================================================== RCS file: /cvs/pkgs/rpms/zynaddsubfx/devel/zynaddsubfx.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- zynaddsubfx.spec 25 Feb 2009 18:47:42 -0000 1.14 +++ zynaddsubfx.spec 27 Jul 2009 09:05:22 -0000 1.15 @@ -1,7 +1,7 @@ Summary: Real-time software synthesizer Name: zynaddsubfx Version: 2.2.1 -Release: 20%{?dist} +Release: 21%{?dist} License: GPLv2 Group: Applications/Multimedia URL: http://zynaddsubfx.sourceforge.net @@ -150,6 +150,9 @@ touch --no-create %{_datadir}/icons/hico %{_datadir}/icons/hicolor/64x64/apps/zynaddsubfx.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.1-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:05:35 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:05:35 +0000 (UTC) Subject: rpms/zynjacku/devel zynjacku.spec,1.2,1.3 Message-ID: <20090727090535.6B81111C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zynjacku/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18653 Modified Files: zynjacku.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zynjacku.spec =================================================================== RCS file: /cvs/pkgs/rpms/zynjacku/devel/zynjacku.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- zynjacku.spec 15 Jun 2009 21:28:28 -0000 1.2 +++ zynjacku.spec 27 Jul 2009 09:05:35 -0000 1.3 @@ -2,7 +2,7 @@ Name: zynjacku Version: 5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: LV2 synths and plugins host Group: Applications/Multimedia License: GPLv2 @@ -105,6 +105,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/72x72/apps/%{name}.png %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sun Jun 13 2009 Orcan Ogetbil - 5-1 - Update to 5 From jkeating at fedoraproject.org Mon Jul 27 09:05:49 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:05:49 +0000 (UTC) Subject: rpms/zziplib/devel zziplib.spec,1.15,1.16 Message-ID: <20090727090549.485C011C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zziplib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18812 Modified Files: zziplib.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zziplib.spec =================================================================== RCS file: /cvs/pkgs/rpms/zziplib/devel/zziplib.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- zziplib.spec 25 Feb 2009 18:48:39 -0000 1.15 +++ zziplib.spec 27 Jul 2009 09:05:49 -0000 1.16 @@ -1,7 +1,7 @@ Summary: Lightweight library to easily extract data from zip files Name: zziplib Version: 0.13.49 -Release: 7%{?dist} +Release: 8%{?dist} License: LGPLv2+ or MPLv1.1 Group: Applications/Archiving URL: http://zziplib.sourceforge.net/ @@ -110,6 +110,9 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpa %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.13.49-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.13.49-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Mon Jul 27 09:06:04 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Mon, 27 Jul 2009 09:06:04 +0000 (UTC) Subject: rpms/zzuf/devel zzuf.spec,1.9,1.10 Message-ID: <20090727090604.22B2811C00E8@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/zzuf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18947 Modified Files: zzuf.spec Log Message: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: zzuf.spec =================================================================== RCS file: /cvs/pkgs/rpms/zzuf/devel/zzuf.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- zzuf.spec 25 Feb 2009 18:49:33 -0000 1.9 +++ zzuf.spec 27 Jul 2009 09:06:03 -0000 1.10 @@ -1,6 +1,6 @@ Name: zzuf Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Transparent application input fuzzer Group: Development/Tools @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From kzak at fedoraproject.org Mon Jul 27 09:09:34 2009 From: kzak at fedoraproject.org (kzak) Date: Mon, 27 Jul 2009 09:09:34 +0000 (UTC) Subject: rpms/lsof/devel lsof_4.83A-selinux-typo.patch, NONE, 1.1 .cvsignore, 1.15, 1.16 lsof.spec, 1.46, 1.47 sources, 1.16, 1.17 lsof_4.81-man.patch, 1.1, NONE Message-ID: <20090727090934.AA03011C00E8@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/lsof/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20380 Modified Files: .cvsignore lsof.spec sources Added Files: lsof_4.83A-selinux-typo.patch Removed Files: lsof_4.81-man.patch Log Message: * Mon Jul 27 2009 Karel Zak 4.82-1 - upgrade to 4.82 (see the 00DIST file for list of changes) - backport an upstream patch from 4.83A-linux - remove lsof_4.81-man.patch (fixed upstream) lsof_4.83A-selinux-typo.patch: Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE lsof_4.83A-selinux-typo.patch --- Upstream patch, backported from 4.83A-linux. -- kzak 27-Jul-2009 diff -up lsof_4.82-rh/Configure.kzak lsof_4.82-rh/Configure --- lsof_4.82-rh/Configure.kzak 2009-07-27 09:50:15.000000000 +0200 +++ lsof_4.82-rh/Configure 2009-07-27 09:50:43.000000000 +0200 @@ -2700,7 +2700,7 @@ return(0); } LSOF_TMP1=1 fi # } else - if test "X$LINUX_HASSELINUX" = "XY" -o "X$LINUX_HASSELINUX" = "xY" # { + if test "X$LINUX_HASSELINUX" = "XY" -o "X$LINUX_HASSELINUX" = "Xy" # { then LSOF_TMP1=1 fi # } Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/lsof/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 2 Dec 2008 12:16:44 -0000 1.15 +++ .cvsignore 27 Jul 2009 09:09:34 -0000 1.16 @@ -1 +1 @@ -lsof_4.81-rh.tar.bz2 +lsof_4.82-rh.tar.bz2 Index: lsof.spec =================================================================== RCS file: /cvs/pkgs/rpms/lsof/devel/lsof.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- lsof.spec 25 Jul 2009 11:21:50 -0000 1.46 +++ lsof.spec 27 Jul 2009 09:09:34 -0000 1.47 @@ -1,7 +1,7 @@ Summary: A utility which lists open files on a Linux/UNIX system Name: lsof -Version: 4.81 -Release: 4%{?dist} +Version: 4.82 +Release: 1%{?dist} License: zlib Group: Development/Debuggers @@ -11,7 +11,7 @@ Group: Development/Debuggers # The script you can found in CVS or download from: # http://cvs.fedoraproject.org/viewcvs/rpms/lsof/devel/upstream2downstream.sh # -%define lsofrh lsof_4.81-rh +%define lsofrh lsof_%{version}-rh Source0: %{lsofrh}.tar.bz2 URL: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof @@ -21,8 +21,8 @@ BuildRequires: libselinux-devel # 184338 - allow lsof access nptl threads Patch1: lsof_4.81-threads.patch -# 480694 - lsof manpage mismarked and formats badly -Patch2: lsof_4.81-man.patch +# Backport of upstream patch +Patch2: lsof_4.83A-selinux-typo.patch %description Lsof stands for LiSt Open Files, and it does just that: it lists @@ -56,6 +56,11 @@ rm -rf ${RPM_BUILD_ROOT} %{_mandir}/man*/* %changelog +* Mon Jul 27 2009 Karel Zak 4.82-1 +- upgrade to 4.82 (see the 00DIST file for list of changes) +- backport an upstream patch from 4.83A-linux +- remove lsof_4.81-man.patch (fixed upstream) + * Sat Jul 25 2009 Fedora Release Engineering - 4.81-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/lsof/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 2 Dec 2008 12:16:44 -0000 1.16 +++ sources 27 Jul 2009 09:09:34 -0000 1.17 @@ -1 +1 @@ -b5ef18418760dd304b223a4acb3e14d7 lsof_4.81-rh.tar.bz2 +1361fa10f97f4c151aaec52815cd9d60 lsof_4.82-rh.tar.bz2 --- lsof_4.81-man.patch DELETED --- From caolanm at fedoraproject.org Mon Jul 27 09:10:38 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Mon, 27 Jul 2009 09:10:38 +0000 (UTC) Subject: rpms/hunspell-ko/devel hunspell-ko.spec,1.6,1.7 Message-ID: <20090727091038.AD65E11C043C@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/hunspell-ko/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20865 Modified Files: hunspell-ko.spec Log Message: disable tests for now Index: hunspell-ko.spec =================================================================== RCS file: /cvs/pkgs/rpms/hunspell-ko/devel/hunspell-ko.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- hunspell-ko.spec 26 Jul 2009 09:59:57 -0000 1.6 +++ hunspell-ko.spec 27 Jul 2009 09:10:38 -0000 1.7 @@ -27,8 +27,9 @@ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mys cp -p ko.aff $RPM_BUILD_ROOT/%{_datadir}/myspell/ko_KR.aff cp -p ko.dic $RPM_BUILD_ROOT/%{_datadir}/myspell/ko_KR.dic -%check -make test +#tests busted upstream +#%check +#make test %clean rm -rf $RPM_BUILD_ROOT From kwizart at fedoraproject.org Mon Jul 27 09:38:10 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 09:38:10 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/devel import.log, NONE, 1.1 perl-Socket-GetAddrInfo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727093810.5AC4911C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31126/devel Modified Files: .cvsignore sources Added Files: import.log perl-Socket-GetAddrInfo.spec Log Message: Initial import for devel --- NEW FILE import.log --- perl-Socket-GetAddrInfo-0_12-1_fc11:HEAD:perl-Socket-GetAddrInfo-0.12-1.fc11.src.rpm:1248687455 --- NEW FILE perl-Socket-GetAddrInfo.spec --- Name: perl-Socket-GetAddrInfo Version: 0.12 Release: 1%{?dist} Summary: RFC 2553's "getaddrinfo" and "getnameinfo" functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Socket-GetAddrInfo/ Source0: http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Socket-GetAddrInfo-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Build::Compat) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Exception) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The RFC 2553 functions getaddrinfo and getnameinfo provide an abstracted way to convert between a pair of host name/service name and socket addresses, or vice versa. getaddrinfo converts names into a set of arguments to pass to the socket() and connect() syscalls, and getnameinfo converts a socket address back into its host name/service name pair. %prep %setup -q -n Socket-GetAddrInfo-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} $RPM_BUILD_ROOT/* %check %{?_with_tests:export I_CAN_HAS_INTERNETS=1} make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes examples LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Socket* %{_mandir}/man3/*.3* %changelog * Thu Jul 9 2009 kwizart < kwizart at gmail.com > - 0.12-1 - Initial spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:26:06 -0000 1.1 +++ .cvsignore 27 Jul 2009 09:38:08 -0000 1.2 @@ -0,0 +1 @@ +Socket-GetAddrInfo-0.12.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:26:06 -0000 1.1 +++ sources 27 Jul 2009 09:38:08 -0000 1.2 @@ -0,0 +1 @@ +ca4db25266037c1cec66218d3732bf91 Socket-GetAddrInfo-0.12.tar.gz From kwizart at fedoraproject.org Mon Jul 27 09:39:31 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 09:39:31 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/F-11 import.log, NONE, 1.1 perl-Socket-GetAddrInfo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727093931.8DF4711C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31861/F-11 Modified Files: .cvsignore sources Added Files: import.log perl-Socket-GetAddrInfo.spec Log Message: Initial import for F-11 --- NEW FILE import.log --- perl-Socket-GetAddrInfo-0_12-1_fc11:F-11:perl-Socket-GetAddrInfo-0.12-1.fc11.src.rpm:1248687545 --- NEW FILE perl-Socket-GetAddrInfo.spec --- Name: perl-Socket-GetAddrInfo Version: 0.12 Release: 1%{?dist} Summary: RFC 2553's "getaddrinfo" and "getnameinfo" functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Socket-GetAddrInfo/ Source0: http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Socket-GetAddrInfo-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Build::Compat) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Exception) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The RFC 2553 functions getaddrinfo and getnameinfo provide an abstracted way to convert between a pair of host name/service name and socket addresses, or vice versa. getaddrinfo converts names into a set of arguments to pass to the socket() and connect() syscalls, and getnameinfo converts a socket address back into its host name/service name pair. %prep %setup -q -n Socket-GetAddrInfo-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} $RPM_BUILD_ROOT/* %check %{?_with_tests:export I_CAN_HAS_INTERNETS=1} make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes examples LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Socket* %{_mandir}/man3/*.3* %changelog * Thu Jul 9 2009 kwizart < kwizart at gmail.com > - 0.12-1 - Initial spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:26:06 -0000 1.1 +++ .cvsignore 27 Jul 2009 09:39:31 -0000 1.2 @@ -0,0 +1 @@ +Socket-GetAddrInfo-0.12.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:26:06 -0000 1.1 +++ sources 27 Jul 2009 09:39:31 -0000 1.2 @@ -0,0 +1 @@ +ca4db25266037c1cec66218d3732bf91 Socket-GetAddrInfo-0.12.tar.gz From kwizart at fedoraproject.org Mon Jul 27 09:40:45 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 09:40:45 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/F-10 import.log, NONE, 1.1 perl-Socket-GetAddrInfo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727094045.5A65C11C043C@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32419/F-10 Modified Files: .cvsignore sources Added Files: import.log perl-Socket-GetAddrInfo.spec Log Message: Initial import for F-10 --- NEW FILE import.log --- perl-Socket-GetAddrInfo-0_12-1_fc11:F-10:perl-Socket-GetAddrInfo-0.12-1.fc11.src.rpm:1248687603 --- NEW FILE perl-Socket-GetAddrInfo.spec --- Name: perl-Socket-GetAddrInfo Version: 0.12 Release: 1%{?dist} Summary: RFC 2553's "getaddrinfo" and "getnameinfo" functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Socket-GetAddrInfo/ Source0: http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Socket-GetAddrInfo-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Build::Compat) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Exception) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The RFC 2553 functions getaddrinfo and getnameinfo provide an abstracted way to convert between a pair of host name/service name and socket addresses, or vice versa. getaddrinfo converts names into a set of arguments to pass to the socket() and connect() syscalls, and getnameinfo converts a socket address back into its host name/service name pair. %prep %setup -q -n Socket-GetAddrInfo-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} $RPM_BUILD_ROOT/* %check %{?_with_tests:export I_CAN_HAS_INTERNETS=1} make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes examples LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Socket* %{_mandir}/man3/*.3* %changelog * Thu Jul 9 2009 kwizart < kwizart at gmail.com > - 0.12-1 - Initial spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:26:06 -0000 1.1 +++ .cvsignore 27 Jul 2009 09:40:44 -0000 1.2 @@ -0,0 +1 @@ +Socket-GetAddrInfo-0.12.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:26:06 -0000 1.1 +++ sources 27 Jul 2009 09:40:45 -0000 1.2 @@ -0,0 +1 @@ +ca4db25266037c1cec66218d3732bf91 Socket-GetAddrInfo-0.12.tar.gz From kwizart at fedoraproject.org Mon Jul 27 09:42:09 2009 From: kwizart at fedoraproject.org (Nicolas Chauvet) Date: Mon, 27 Jul 2009 09:42:09 +0000 (UTC) Subject: rpms/perl-Socket-GetAddrInfo/EL-5 import.log, NONE, 1.1 perl-Socket-GetAddrInfo.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727094209.A10D711C00E8@cvs1.fedora.phx.redhat.com> Author: kwizart Update of /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv621/EL-5 Modified Files: .cvsignore sources Added Files: import.log perl-Socket-GetAddrInfo.spec Log Message: Initial import for EL-5 --- NEW FILE import.log --- perl-Socket-GetAddrInfo-0_12-1_fc11:EL-5:perl-Socket-GetAddrInfo-0.12-1.fc11.src.rpm:1248687681 --- NEW FILE perl-Socket-GetAddrInfo.spec --- Name: perl-Socket-GetAddrInfo Version: 0.12 Release: 1%{?dist} Summary: RFC 2553's "getaddrinfo" and "getnameinfo" functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/Socket-GetAddrInfo/ Source0: http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/Socket-GetAddrInfo-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(Module::Build) BuildRequires: perl(Module::Build::Compat) BuildRequires: perl(Test::More) BuildRequires: perl(Test::Exception) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description The RFC 2553 functions getaddrinfo and getnameinfo provide an abstracted way to convert between a pair of host name/service name and socket addresses, or vice versa. getaddrinfo converts names into a set of arguments to pass to the socket() and connect() syscalls, and getnameinfo converts a socket address back into its host name/service name pair. %prep %setup -q -n Socket-GetAddrInfo-%{version} %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' %{_fixperms} $RPM_BUILD_ROOT/* %check %{?_with_tests:export I_CAN_HAS_INTERNETS=1} make test %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes examples LICENSE README %{perl_vendorarch}/auto/* %{perl_vendorarch}/Socket* %{_mandir}/man3/*.3* %changelog * Thu Jul 9 2009 kwizart < kwizart at gmail.com > - 0.12-1 - Initial spec Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 22:26:06 -0000 1.1 +++ .cvsignore 27 Jul 2009 09:42:09 -0000 1.2 @@ -0,0 +1 @@ +Socket-GetAddrInfo-0.12.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Socket-GetAddrInfo/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 22:26:06 -0000 1.1 +++ sources 27 Jul 2009 09:42:09 -0000 1.2 @@ -0,0 +1 @@ +ca4db25266037c1cec66218d3732bf91 Socket-GetAddrInfo-0.12.tar.gz From nickc at fedoraproject.org Mon Jul 27 10:08:11 2009 From: nickc at fedoraproject.org (Nicholas Clifton) Date: Mon, 27 Jul 2009 10:08:11 +0000 (UTC) Subject: rpms/binutils/F-11 .cvsignore, 1.43, 1.44 binutils-2.19.50.0.1-build-id.patch, 1.1, 1.2 binutils-2.19.50.0.1-symbolic-envvar-revert.patch, 1.2, 1.3 binutils.spec, 1.161, 1.162 sources, 1.43, 1.44 binutils-2.19.50.0.1-gcc_except_table.patch, 1.1, NONE binutils-2.19.51.0.2-IBM.patch, 1.1, NONE binutils-2.19.51.0.2-ifunc.patch, 1.2, NONE binutils-2.19.51.0.2-orphan-section-placement.patch, 1.1, NONE Message-ID: <20090727100811.D91DC11C00E8@cvs1.fedora.phx.redhat.com> Author: nickc Update of /cvs/pkgs/rpms/binutils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11380 Modified Files: .cvsignore binutils-2.19.50.0.1-build-id.patch binutils-2.19.50.0.1-symbolic-envvar-revert.patch binutils.spec sources Removed Files: binutils-2.19.50.0.1-gcc_except_table.patch binutils-2.19.51.0.2-IBM.patch binutils-2.19.51.0.2-ifunc.patch binutils-2.19.51.0.2-orphan-section-placement.patch Log Message: Rebase on 2.19.51.0.14 source tarball. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/.cvsignore,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- .cvsignore 5 Feb 2009 16:21:55 -0000 1.43 +++ .cvsignore 27 Jul 2009 10:08:09 -0000 1.44 @@ -1 +1 @@ -binutils-2.19.51.0.2.tar.bz2 +binutils-2.19.51.0.14.tar.bz2 binutils-2.19.50.0.1-build-id.patch: elfcode.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) Index: binutils-2.19.50.0.1-build-id.patch =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/binutils-2.19.50.0.1-build-id.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- binutils-2.19.50.0.1-build-id.patch 29 Nov 2008 07:54:12 -0000 1.1 +++ binutils-2.19.50.0.1-build-id.patch 27 Jul 2009 10:08:09 -0000 1.2 @@ -1,6 +1,7 @@ ---- ../binutils-2.19.50.0.1.orig/bfd/elfcode.h 2008-11-26 09:29:54.000000000 +0000 -+++ ./bfd/elfcode.h 2008-11-26 12:01:37.000000000 +0000 -@@ -1170,6 +1170,19 @@ elf_checksum_contents (bfd *abfd, +diff -rup ../binutils-2.19.51.0.11.orig/bfd/elfcode.h bfd/elfcode.h +--- ../binutils-2.19.51.0.11.orig/bfd/elfcode.h 2009-07-14 11:23:27.000000000 +0100 ++++ bfd/elfcode.h 2009-07-14 11:33:56.000000000 +0100 +@@ -1170,6 +1170,24 @@ elf_checksum_contents (bfd *abfd, if (i_shdr.contents) (*process) (i_shdr.contents, i_shdr.sh_size, arg); @@ -12,7 +13,12 @@ + if (sec != NULL) + { + if (sec->contents == NULL) -+ bfd_malloc_and_get_section (abfd, sec, & sec->contents); ++ { ++ /* Force rereading from file. */ ++ sec->flags &= ~SEC_IN_MEMORY; ++ if (! bfd_malloc_and_get_section (abfd, sec, & sec->contents)) ++ continue; ++ } + if (sec->contents != NULL) + (*process) (sec->contents, i_shdr.sh_size, arg); + } binutils-2.19.50.0.1-symbolic-envvar-revert.patch: NEWS | 5 ----- ld.texinfo | 16 +++------------- ldmain.c | 8 -------- 3 files changed, 3 insertions(+), 26 deletions(-) Index: binutils-2.19.50.0.1-symbolic-envvar-revert.patch =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/binutils-2.19.50.0.1-symbolic-envvar-revert.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- binutils-2.19.50.0.1-symbolic-envvar-revert.patch 23 Feb 2009 15:24:14 -0000 1.2 +++ binutils-2.19.50.0.1-symbolic-envvar-revert.patch 27 Jul 2009 10:08:09 -0000 1.3 @@ -1,24 +1,37 @@ -It reverts the H.J. Lu's binutils custom patch. - -Index: ld/NEWS -=================================================================== ---- ld/NEWS.orig 2009-02-04 19:21:50.000000000 +0100 -+++ ld/NEWS 2009-02-23 16:18:35.000000000 +0100 -@@ -26,9 +26,6 @@ - For the switch --enable-runtime-pseudo-reloc it uses for 32-bit - runtime pseudo relocation version one, for 64-bit the version two. +diff -rup ../binutils-2.19.51.0.10.orig/ld/ldmain.c ./ld/ldmain.c +--- ../binutils-2.19.51.0.10.orig/ld/ldmain.c 2009-06-22 15:56:54.000000000 +0100 ++++ ./ld/ldmain.c 2009-06-22 16:05:54.000000000 +0100 +@@ -256,14 +256,6 @@ main (int argc, char **argv) + command_line.warn_search_mismatch = TRUE; + command_line.check_section_addresses = -1; --* ELF: Support environment variables, LD_SYMBOLIC for -Bsymbolic and -- LD_SYMBOLIC_FUNCTIONS for -Bsymbolic-functions. +- if (getenv ("LD_SYMBOLIC") != NULL) +- command_line.symbolic = symbolic; +- else if (getenv ("LD_SYMBOLIC_FUNCTIONS") != NULL) +- command_line.symbolic = symbolic_functions; - - Changes in 2.19: +- if (getenv ("LD_AS_NEEDED") != NULL) +- as_needed = TRUE; +- + /* We initialize DEMANGLING based on the environment variable + COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the + output of the linker, unless COLLECT_NO_DEMANGLE is set in the +diff -rup ../binutils-2.19.51.0.10.orig/ld/ld.texinfo ./ld/ld.texinfo +--- ../binutils-2.19.51.0.10.orig/ld/ld.texinfo 2009-06-22 15:56:53.000000000 +0100 ++++ ./ld/ld.texinfo 2009-06-22 16:05:42.000000000 +0100 +@@ -1118,10 +1118,7 @@ for a library that satisfies a symbol re + which is undefined at the point that the library was linked, or, if + the library is not found in the DT_NEEDED lists of other libraries + linked up to that point, a reference from another dynamic library. +- at option{--no-as-needed} restores the default behaviour. If the +-environment variable @code{LD_AS_NEEDED} is set, the linker will +-behave as if the @option{--as-needed} option is passed to the linker as +-the first command line option. ++ at option{--no-as-needed} restores the default behaviour. - * Linker scripts support a new INSERT command that makes it easier to -Index: ld/ld.texinfo -=================================================================== ---- ld/ld.texinfo.orig 2009-02-04 19:21:50.000000000 +0100 -+++ ld/ld.texinfo 2009-02-23 16:18:06.000000000 +0100 -@@ -1163,21 +1163,14 @@ When creating a shared library, bind ref + @kindex --add-needed + @kindex --no-add-needed +@@ -1185,21 +1182,14 @@ When creating a shared library, bind ref definition within the shared library, if any. Normally, it is possible for a program linked against a shared library to override the definition within the shared library. This option is only meaningful on ELF @@ -42,19 +55,18 @@ Index: ld/ld.texinfo @kindex --dynamic-list=@var{dynamic-list-file} @item --dynamic-list=@var{dynamic-list-file} -Index: ld/ldmain.c -=================================================================== ---- ld/ldmain.c.orig 2009-02-04 19:21:50.000000000 +0100 -+++ ld/ldmain.c 2009-02-23 16:19:01.000000000 +0100 -@@ -256,11 +256,6 @@ main (int argc, char **argv) - command_line.warn_search_mismatch = TRUE; - command_line.check_section_addresses = -1; +diff -rup ../binutils-2.19.51.0.10.orig/ld/NEWS ./ld/NEWS +--- ../binutils-2.19.51.0.10.orig/ld/NEWS 2009-06-22 15:56:54.000000000 +0100 ++++ ./ld/NEWS 2009-06-22 16:04:15.000000000 +0100 +@@ -55,11 +55,6 @@ + For the switch --enable-runtime-pseudo-reloc it uses for 32-bit + runtime pseudo relocation version one, for 64-bit the version two. -- if (getenv ("LD_SYMBOLIC") != NULL) -- command_line.symbolic = symbolic; -- else if (getenv ("LD_SYMBOLIC_FUNCTIONS") != NULL) -- command_line.symbolic = symbolic_functions; +-* ELF: Support environment variable LD_AS_NEEDED for --as-needed. - - /* We initialize DEMANGLING based on the environment variable - COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the - output of the linker, unless COLLECT_NO_DEMANGLE is set in the +-* ELF: Support environment variables, LD_SYMBOLIC for -Bsymbolic and +- LD_SYMBOLIC_FUNCTIONS for -Bsymbolic-functions. +- + Changes in 2.19: + + * Linker scripts support a new INSERT command that makes it easier to Index: binutils.spec =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/binutils.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- binutils.spec 17 Jul 2009 10:57:38 -0000 1.161 +++ binutils.spec 27 Jul 2009 10:08:09 -0000 1.162 @@ -16,8 +16,8 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} -Version: 2.19.51.0.2 -Release: 18%{?dist} +Version: 2.19.51.0.14 +Release: 1%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -30,9 +30,6 @@ Patch04: binutils-2.19.50.0.1-symbolic-e Patch05: binutils-2.19.50.0.1-version.patch Patch06: binutils-2.19.50.0.1-set-long-long.patch Patch07: binutils-2.19.50.0.1-build-id.patch -Patch08: binutils-2.19.51.0.2-ifunc.patch -Patch09: binutils-2.19.51.0.2-IBM.patch -Patch10: binutils-2.19.51.0.2-orphan-section-placement.patch %if 0%{?_with_debug:1} # Define this if you want to skip the strip step and preserve debug info. @@ -103,9 +100,6 @@ to consider using libelf instead of BFD. %patch05 -p0 -b .version~ %patch06 -p0 -b .set-long-long~ %patch07 -p0 -b .build-id~ -%patch08 -p1 -b .ifunc~ -%patch09 -p0 -b .IBM~ -%patch10 -p0 -b .oprphan-section-placement~ # We cannot run autotools as there is an exact requirement of autoconf-2.59. @@ -349,6 +343,9 @@ fi %endif # %{isnative} %changelog +* Mon Jul 27 2009 Nick Clifton 2.19.51.0.14-1 +- Rebase on 2.19.51.0.14 source tarball. + * Fri Jul 17 2009 Nick Clifton 2.19.51.0.2-18 - Import orphan section placement patch from mainline. (BZ 510384). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/binutils/F-11/sources,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- sources 5 Feb 2009 16:21:55 -0000 1.43 +++ sources 27 Jul 2009 10:08:09 -0000 1.44 @@ -1 +1 @@ -2b019d9f3c46a5bb775b42ab55f199cc binutils-2.19.51.0.2.tar.bz2 +e0b485a3ff9392da1351dc3fb61a3d10 binutils-2.19.51.0.14.tar.bz2 --- binutils-2.19.50.0.1-gcc_except_table.patch DELETED --- --- binutils-2.19.51.0.2-IBM.patch DELETED --- --- binutils-2.19.51.0.2-ifunc.patch DELETED --- --- binutils-2.19.51.0.2-orphan-section-placement.patch DELETED --- From than at fedoraproject.org Mon Jul 27 10:12:48 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 27 Jul 2009 10:12:48 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin.spec,1.143,1.144 Message-ID: <20090727101248.58A8711C00E8@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13333 Modified Files: kdeadmin.spec Log Message: fix knetworkconf backend to recognize fedora network settings Index: kdeadmin.spec =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- kdeadmin.spec 25 Jul 2009 04:25:26 -0000 1.143 +++ kdeadmin.spec 27 Jul 2009 10:12:47 -0000 1.144 @@ -4,7 +4,7 @@ Name: kdeadmin Summary: K Desktop Environment - Administrative tools Epoch: 7 Version: 4.2.98 -Release: 2%{?dist} +Release: 3%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -12,11 +12,14 @@ URL: http://www.kde.org/ Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Source1: kuser.pam +Source2: kuser.pamd + # FIXME/TODO: upstream this -- Rex Patch0: kdeadmin-4.2.85-printing.patch -Source1: kuser.pam -Source2: kuser.pamd +# upstream patches +Patch100: kdeadmin-4.2.98-knetworkconf.patch BuildRequires: kdelibs4-devel >= %{version} BuildRequires: kdepimlibs-devel >= %{version} @@ -60,6 +63,8 @@ a CUPS print server. %setup -q %patch0 -p1 -b .printing +# upstream patches +%patch100 -p1 -b .fedora %build @@ -150,6 +155,9 @@ fi %changelog +* Mon Jul 27 2009 Than Ngo - 4.2.98-3 +- fix knetworkconf backend to recognize fedora network settings + * Fri Jul 24 2009 Fedora Release Engineering - 7:4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From than at fedoraproject.org Mon Jul 27 10:13:16 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 27 Jul 2009 10:13:16 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin-4.2.98-knetworkconf.patch,NONE,1.1 Message-ID: <20090727101316.7EB9611C00E8@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13553 Added Files: kdeadmin-4.2.98-knetworkconf.patch Log Message: fix knetworkconf backend to recognize fedora network settings kdeadmin-4.2.98-knetworkconf.patch: network-conf.cmake | 2 +- network.pl.cmake | 28 +++++++--------------------- platform.pl.cmake | 19 ++----------------- service.pl.cmake | 16 ++++------------ 4 files changed, 14 insertions(+), 51 deletions(-) --- NEW FILE kdeadmin-4.2.98-knetworkconf.patch --- diff -up kdeadmin-4.2.96/knetworkconf/backends/network-conf.cmake.orig kdeadmin-4.2.96/knetworkconf/backends/network-conf.cmake --- kdeadmin-4.2.96/knetworkconf/backends/network-conf.cmake.orig 2009-07-27 10:59:51.000000000 +0200 +++ kdeadmin-4.2.96/knetworkconf/backends/network-conf.cmake 2009-07-27 11:01:23.000000000 +0200 @@ -71,7 +71,7 @@ $version = "@VERSION@"; "debian-2.2", "debian-3.0", "debian-3.1", "debian-4.0", "debian-5.0", "debian-testing", "ubuntu-5.04", "ubuntu-5.10", "ubuntu-6.06", "ubuntu-6.10", "ubuntu-7.04", "ubuntu-7.10", "ubuntu-8.04", "suse-7.0", "suse-9.0", "suse-9.1", - "turbolinux-7.0", "fedora-1", "fedora-2", "fedora-3", "specifix", "yoper-2.1", "yoper-2.2", + "turbolinux-7.0", "fedora", "specifix", "yoper-2.1", "yoper-2.2", "pld-1.0", "pld-1.1", "pld-1.99", "conectiva-9", "conectiva-10", "mandriva-2006.1", "mandriva-2007.0", "mandriva-2007.1", "mandriva-2008.0", "mandriva-2008.1", diff -up kdeadmin-4.2.96/knetworkconf/backends/network.pl.cmake.orig kdeadmin-4.2.96/knetworkconf/backends/network.pl.cmake --- kdeadmin-4.2.96/knetworkconf/backends/network.pl.cmake.orig 2009-07-27 11:01:31.000000000 +0200 +++ kdeadmin-4.2.96/knetworkconf/backends/network.pl.cmake 2009-07-27 11:03:12.000000000 +0200 @@ -525,9 +525,7 @@ sub gst_network_get_broadcast_ping_cmd "pld-1.99" => "redhat-6.2", "conectiva-9" => "debian-2.2", "conectiva-10" => "debian-2.2", - "fedora-1" => "redhat-6.2", - "fedora-2" => "redhat-6.2", - "fedora-3" => "redhat-6.2", + "fedora" => "redhat-6.2", "yoper-2.1" => "redhat-6.2", "yoper-2.2" => "redhat-6.2", "specifix" => "redhat-6.2", @@ -1824,9 +1822,7 @@ sub gst_network_get_file "pld-1.0" => \&gst_network_pld10_get_file, "pld-1.1" => \&gst_network_pld10_get_file, "pld-1.99" => \&gst_network_pld10_get_file, - "fedora-1" => \&gst_network_rh72_get_file, - "fedora-2" => \&gst_network_rh72_get_file, - "fedora-3" => \&gst_network_rh72_get_file, + "fedora" => \&gst_network_rh72_get_file, "yoper-2.1" => \&gst_network_rh72_get_file, "yoper-2.2" => \&gst_network_rh72_get_file, "specifix" => \&gst_network_rh72_get_file, @@ -3943,9 +3939,7 @@ sub gst_network_ensure_loopback_interfac "pld-1.0" => "lo", "pld-1.1" => "lo", "pld-1.99" => "lo", - "fedora-1" => "", - "fedora-2" => "", - "fedora-3" => "", + "fedora" => "", "yoper-2.1" => "", "yoper-2.2" => "", "specifix" => "", @@ -4088,9 +4082,7 @@ sub gst_network_get_parse_table "pld-1.0" => "pld-1.0", "pld-1.1" => "pld-1.0", "pld-1.99" => "pld-1.0", - "fedora-1" => "redhat-7.2", - "fedora-2" => "redhat-7.2", - "fedora-3" => "redhat-7.2", + "fedora" => "redhat-7.2", "yoper-2.1" => "redhat-7.2", "yoper-2.2" => "redhat-7.2", "specifix" => "redhat-7.2", @@ -4584,9 +4576,7 @@ sub gst_network_get_interface_parse_tabl "pld-1.0" => "pld-1.0", "pld-1.1" => "pld-1.0", "pld-1.99" => "pld-1.0", - "fedora-1" => "redhat-7.2", - "fedora-2" => "redhat-7.2", - "fedora-3" => "redhat-7.2", + "fedora" => "redhat-7.2", "yoper-2.1" => "redhat-7.2", "yoper-2.2" => "redhat-7.2", "specifix" => "redhat-7.2", @@ -5475,9 +5465,7 @@ sub gst_network_get_replace_table "pld-1.0" => "pld-1.0", "pld-1.1" => "pld-1.0", "pld-1.99" => "pld-1.0", - "fedora-1" => "redhat-7.2", - "fedora-2" => "redhat-7.2", - "fedora-3" => "redhat-7.2", + "fedora" => "redhat-7.2", "yoper-2.1" => "redhat-7.2", "yoper-2.2" => "redhat-7.2", "specifix" => "redhat-7.2", @@ -5921,9 +5909,7 @@ sub gst_network_get_interface_replace_ta "pld-1.0" => "pld-1.0", "pld-1.1" => "pld-1.0", "pld-1.99" => "pld-1.0", - "fedora-1" => "redhat-7.2", - "fedora-2" => "redhat-7.2", - "fedora-3" => "redhat-7.2", + "fedora" => "redhat-7.2", "yoper-2.1" => "redhat-7.2", "yoper-2.2" => "redhat-7.2", "specifix" => "redhat-7.2", diff -up kdeadmin-4.2.96/knetworkconf/backends/platform.pl.cmake.orig kdeadmin-4.2.96/knetworkconf/backends/platform.pl.cmake --- kdeadmin-4.2.96/knetworkconf/backends/platform.pl.cmake.orig 2009-07-27 11:04:48.000000000 +0200 +++ kdeadmin-4.2.96/knetworkconf/backends/platform.pl.cmake 2009-07-27 11:06:12.000000000 +0200 @@ -101,9 +101,7 @@ $PLATFORM_INFO = { "pld-1.99" => "PLD 1.99 Ac-pre", "vine-3.0" => "Vine Linux 3.0", "vine-3.1" => "Vine Linux 3.1", - "fedora-1" => "Fedora Core 1 (Yarrow)", - "fedora-2" => "Fedora Core 2 (Tettnang)", - "fedora-3" => "Fedora Core 3 (Heidelberg)", + "fedora" => "Fedora", "yoper-2.1" => "Yoper Linux 2.1 (for i686)", "yoper-2.2" => "Yoper Linux 2.2 (for i686)", "specifix" => "Specifix Linux", @@ -293,20 +291,7 @@ sub check_blackpanther sub check_fedora { - open FEDORA, "$gst_prefix/etc/fedora-release" or return -1; - while () - { - $ver = $_; - chomp ($ver); - - if ($ver =~ /^Fedora Core release (\S+)/) - { - close FEDORA; - return "fedora-$1"; - } - } - - close FEDORA; + return "fedora" if stat ("$gst_prefix/etc/fedora-release"); return -1; } diff -up kdeadmin-4.2.96/knetworkconf/backends/service.pl.cmake.orig kdeadmin-4.2.96/knetworkconf/backends/service.pl.cmake --- kdeadmin-4.2.96/knetworkconf/backends/service.pl.cmake.orig 2009-07-27 11:03:28.000000000 +0200 +++ kdeadmin-4.2.96/knetworkconf/backends/service.pl.cmake 2009-07-27 11:04:44.000000000 +0200 @@ -102,9 +102,7 @@ sub gst_service_sysv_get_paths "pld-1.1" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], "pld-1.99" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], - "fedora-1" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], - "fedora-2" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], - "fedora-3" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], + "fedora" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], "yoper-2.1" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], "yoper-2.2" => ["$gst_prefix/etc/rc.d", "$gst_prefix/etc/rc.d/init.d", "../init.d"], @@ -182,9 +180,7 @@ sub gst_service_sysv_get_runlevels "pld-1.1" => [3, 5], "pld-1.99" => [3, 5], - "fedora-1" => [3, 5], - "fedora-2" => [3, 5], - "fedora-3" => [3, 5], + "fedora" => [3, 5], "yoper-2.1" => [3, 5], "yoper-2.2" => [3, 5], @@ -262,9 +258,7 @@ sub gst_service_get_runlevel_roles "pld-1.0" => "redhat-5.2", "pld-1.1" => "redhat-5.2", "pld-1.99" => "redhat-5.2", - "fedora-1" => "redhat-5.2", - "fedora-2" => "redhat-5.2", - "fedora-3" => "redhat-5.2", + "fedora" => "redhat-5.2", "yoper-2.1" => "redhat-5.2", "yoper-2.2" => "redhat-5.2", @@ -1625,9 +1619,7 @@ sub gst_service_get_status "redhat-8.0" => \&gst_service_redhat_get_status, "redhat-9" => \&gst_service_redhat_get_status, "mandrake-7.2" => \&gst_service_redhat_get_status, - "fedora-1" => \&gst_service_redhat_get_status, - "fedora-2" => \&gst_service_redhat_get_status, - "fedora-3" => \&gst_service_redhat_get_status, + "fedora" => \&gst_service_redhat_get_status, "yoper-2.1" => \&gst_service_redhat_get_status, "yoper-2.2" => \&gst_service_redhat_get_status, "specifix" => \&gst_service_redhat_get_status, From airlied at fedoraproject.org Mon Jul 27 10:17:10 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Mon, 27 Jul 2009 10:17:10 +0000 (UTC) Subject: rpms/xorg-x11-server/devel xserver-1.6.99-use-pci-access-boot.patch, 1.1, 1.2 Message-ID: <20090727101710.C4F1C11C00E8@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15079 Modified Files: xserver-1.6.99-use-pci-access-boot.patch Log Message: * Mon Jul 27 2009 Dave Airlie 1.6.99-18.20090724 - xserver-1.6.99-use-pci-access-boot.patch: use pciaccess boot vga - not sure what is up with the Conflicts stuff xserver-1.6.99-use-pci-access-boot.patch: xf86pciBus.c | 5 +++++ 1 file changed, 5 insertions(+) Index: xserver-1.6.99-use-pci-access-boot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xserver-1.6.99-use-pci-access-boot.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- xserver-1.6.99-use-pci-access-boot.patch 27 Jul 2009 05:26:40 -0000 1.1 +++ xserver-1.6.99-use-pci-access-boot.patch 27 Jul 2009 10:17:10 -0000 1.2 @@ -1,3 +1,7 @@ +From: Dave Airlie +Date: Tue, 3 Mar 2009 10:58:33 -0500 +Subject: [PATCH] Primary video device hack - the revenge + diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c index 8ed3567..183b1ba 100644 --- a/hw/xfree86/common/xf86pciBus.c From mmaslano at fedoraproject.org Mon Jul 27 10:31:16 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 10:31:16 +0000 (UTC) Subject: rpms/perl-Archive-Zip/devel .cvsignore, 1.6, 1.7 perl-Archive-Zip.spec, 1.16, 1.17 sources, 1.6, 1.7 Message-ID: <20090727103117.6704611C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Archive-Zip/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21647 Modified Files: .cvsignore perl-Archive-Zip.spec sources Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 1.30-1 - update to 1.30 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-Zip/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 16 May 2008 23:42:23 -0000 1.6 +++ .cvsignore 27 Jul 2009 10:31:06 -0000 1.7 @@ -1 +1 @@ -Archive-Zip-1.23.tar.gz +Archive-Zip-1.30.tar.gz Index: perl-Archive-Zip.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-Zip/devel/perl-Archive-Zip.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-Archive-Zip.spec 26 Jul 2009 01:43:04 -0000 1.16 +++ perl-Archive-Zip.spec 27 Jul 2009 10:31:07 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-Archive-Zip -Version: 1.23 -Release: 3%{?dist} +Version: 1.30 +Release: 1%{?dist} Summary: Perl library for accessing Zip archives Group: Development/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? - 1.30-1 +- update to 1.30 + * Sat Jul 25 2009 Fedora Release Engineering - 1.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Archive-Zip/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 16 May 2008 23:42:23 -0000 1.6 +++ sources 27 Jul 2009 10:31:07 -0000 1.7 @@ -1 +1 @@ -7ffcbdc1b603307235fb8d42084cb84d Archive-Zip-1.23.tar.gz +40153666e7538b410e001aa8a810e702 Archive-Zip-1.30.tar.gz From mmaslano at fedoraproject.org Mon Jul 27 10:39:34 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 10:39:34 +0000 (UTC) Subject: rpms/perl-Convert-ASN1/devel .cvsignore, 1.5, 1.6 perl-Convert-ASN1.spec, 1.14, 1.15 sources, 1.5, 1.6 Message-ID: <20090727103934.D870F11C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Convert-ASN1/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24646 Modified Files: .cvsignore perl-Convert-ASN1.spec sources Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 0.22-1 - update to 0.22 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-ASN1/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 6 Feb 2007 05:21:15 -0000 1.5 +++ .cvsignore 27 Jul 2009 10:39:34 -0000 1.6 @@ -1 +1 @@ -Convert-ASN1-0.21.tar.gz +Convert-ASN1-0.22.tar.gz Index: perl-Convert-ASN1.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-ASN1/devel/perl-Convert-ASN1.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- perl-Convert-ASN1.spec 26 Jul 2009 04:39:37 -0000 1.14 +++ perl-Convert-ASN1.spec 27 Jul 2009 10:39:34 -0000 1.15 @@ -1,7 +1,7 @@ Summary: ASN.1 Encode/Decode library Name: perl-Convert-ASN1 -Version: 0.21 -Release: 5%{?dist} +Version: 0.22 +Release: 1%{?dist} Group: Development/Libraries License: GPL+ or Artistic @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? - 0.22-1 +- update to 0.22 + * Sat Jul 25 2009 Fedora Release Engineering - 0.21-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Convert-ASN1/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 6 Feb 2007 05:21:15 -0000 1.5 +++ sources 27 Jul 2009 10:39:34 -0000 1.6 @@ -1 +1 @@ -6f5c45724db1b09911e489275d19d0f5 Convert-ASN1-0.21.tar.gz +64a555e44adc79d92072b9fc7a6779c4 Convert-ASN1-0.22.tar.gz From rishi at fedoraproject.org Mon Jul 27 10:48:11 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Mon, 27 Jul 2009 10:48:11 +0000 (UTC) Subject: rpms/glade3/devel glade3.spec,1.32,1.33 Message-ID: <20090727104812.2029411C00E8@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/glade3/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27973 Modified Files: glade3.spec Log Message: * Fri Jul 24 2009 Release Engineering - 3.6.7-2 - Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: glade3.spec =================================================================== RCS file: /cvs/pkgs/rpms/glade3/devel/glade3.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- glade3.spec 25 Jul 2009 00:17:40 -0000 1.32 +++ glade3.spec 27 Jul 2009 10:48:11 -0000 1.33 @@ -7,7 +7,7 @@ Group: Development/Tools URL: http://glade.gnome.org/ Source0: http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/%{name}-%{version}.tar.bz2 -Patch1: %{name}-3.6.5-pkgconfig.patch +Patch0: %{name}-3.6.5-pkgconfig.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) @@ -62,7 +62,7 @@ This package contains development files %prep %setup -q -%patch1 -p1 +%patch0 -p1 # Suppress rpmlint warning. chmod 644 ./plugins/gtk+/glade-attributes.c @@ -191,16 +191,45 @@ fi %{_includedir}/libgladeui-1.0/gladeui %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 3.6.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Fri Jul 24 2009 Release Engineering - 3.6.7-2 +- Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue Jun 30 2009 Matthias Clasen - 3.6.7-1 -- Update to 3.6.7 +- Version bump to 3.6.7. + * Fixed crashes when handling GtkTextView in GtkBuilder format. + * Fixed loading and saving of GtkIconSources. + * GNOME Goal: removed deprecated Gtk+ symbols. (GNOME Bugzilla #572756) + * Fixed obscure crash when loading a project. (GNOME Bugzilla #585860) + * Introspect lowest GTK+ project dependancy when loading files with missing + versioning information. (GNOME Bugzilla #586046) + * Detect correct modifiers and buttons to spawn a context menu in a platform + independant way. (GNOME Bugzilla #587128) + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.changes - Drop the menu patch, since glade-3 is the version we install by default now, and it didn't work right anyway * Mon Jun 15 2009 Matthias Clasen - 3.6.5-1 -- Update to 3.6.5 +- Version bump to 3.6.5. + * GtkButton only accepts real stock items and GtkImage but not icons. + * Removed buggy query dialog from GtkNotebook creation. (GNOME Bugzilla + #578727) + * Removed hard coded size request to palette. (GNOME Bugzilla #579624) + * Atk proxy objects should always have unique names. (GNOME Bugzilla + #579565) + * Fixed output format for GtkLabel attributes. (GNOME Bugzilla #579793) + * Widget names should be unique withing the project. (GNOME Bugzilla + #580745) + * Dialogs should not disappear on pressing ESC. (GNOME Bugzilla #582559) + * Properly load sizes of fixed/layout children. (GNOME Bugzilla #584334) + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.news + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.changes + * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.changes * Mon Apr 27 2009 Matthias Clasen - 3.6.2-2 - Don't drop schemas translations from po files From mmaslano at fedoraproject.org Mon Jul 27 10:53:05 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 10:53:05 +0000 (UTC) Subject: rpms/perl-BSD-Resource/devel perl-BSD-Resource.spec,1.31,1.32 Message-ID: <20090727105305.EBC4711C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-BSD-Resource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29994 Modified Files: perl-BSD-Resource.spec Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 1.2903-1 - update, remove unneeded patch Index: perl-BSD-Resource.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-BSD-Resource/devel/perl-BSD-Resource.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- perl-BSD-Resource.spec 26 Jul 2009 03:50:20 -0000 1.31 +++ perl-BSD-Resource.spec 27 Jul 2009 10:53:05 -0000 1.32 @@ -1,14 +1,12 @@ Name: perl-BSD-Resource -Version: 1.28 -Release: 9%{?dist} +Version: 1.2903 +Release: 1%{?dist} Summary: BSD process resource limit and priority functions Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/BSD-Resource/ Source0: http://www.cpan.org/authors/id/J/JH/JHI/BSD-Resource-%{version}.tar.gz -# Modified from http://rt.cpan.org/Public/Bug/Display.html?id=13131 -Patch0: perl-BSD-Resource-1.28-fix-setrlimit-test.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(ExtUtils::MakeMaker) @@ -24,7 +22,6 @@ and priorities. %prep %setup -q -n BSD-Resource-%{version} -%patch0 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" @@ -54,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? - 1.2903-1 +- update, remove unneeded patch + * Sat Jul 25 2009 Fedora Release Engineering - 1.28-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mmaslano at fedoraproject.org Mon Jul 27 10:54:41 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 10:54:41 +0000 (UTC) Subject: rpms/perl-BSD-Resource/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 perl-BSD-Resource-1.28-fix-setrlimit-test.patch, 1.1, NONE Message-ID: <20090727105441.F117B11C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-BSD-Resource/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31398 Modified Files: .cvsignore sources Removed Files: perl-BSD-Resource-1.28-fix-setrlimit-test.patch Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 1.2903-1 - update, remove unneeded patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-BSD-Resource/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 5 Jun 2006 23:05:13 -0000 1.7 +++ .cvsignore 27 Jul 2009 10:54:41 -0000 1.8 @@ -1,3 +1 @@ -BSD-Resource-1.23.tar.gz -BSD-Resource-1.24.tar.gz -BSD-Resource-1.28.tar.gz +BSD-Resource-1.2903.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-BSD-Resource/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 5 Jun 2006 23:05:13 -0000 1.7 +++ sources 27 Jul 2009 10:54:41 -0000 1.8 @@ -1 +1 @@ -bf3ecc4127a831f2cd359bf920dde1cb BSD-Resource-1.28.tar.gz +76c587796c4f090a4487835843f40548 BSD-Resource-1.2903.tar.gz --- perl-BSD-Resource-1.28-fix-setrlimit-test.patch DELETED --- From aleksey2005 at fedoraproject.org Mon Jul 27 11:07:31 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Mon, 27 Jul 2009 11:07:31 +0000 (UTC) Subject: rpms/openscada/EL-5 openscada.spec,1.6,1.7 Message-ID: <20090727110731.2897B11C00E8@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4029 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/EL-5/openscada.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- openscada.spec 14 Jul 2009 11:35:07 -0000 1.6 +++ openscada.spec 27 Jul 2009 11:07:30 -0000 1.7 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 9%{?dist} +Release: 11%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,12 +931,13 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif -%find_lang {name} --all-name +%find_lang o.* {name}.lang %clean %{__rm} -rf %{buildroot} %files -f {name}.lang + %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -1208,6 +1209,12 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Mon Jul 27 2009 Popkov Aleksey - 0.6.3.3-11 +- Fixed of macros %find_lang for epel-5 by Peter Lemenkov . + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild. + * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov - Somes cosmetics. From jzeleny at fedoraproject.org Mon Jul 27 11:07:32 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Mon, 27 Jul 2009 11:07:32 +0000 (UTC) Subject: rpms/nc/devel nc-1.84-verbose-segfault.patch, NONE, 1.1 nc.spec, 1.44, 1.45 Message-ID: <20090727110732.B26BF11C00E8@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/nc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3823 Modified Files: nc.spec Added Files: nc-1.84-verbose-segfault.patch Log Message: Fixed segfault when listening to socket and -v enabled (#513925) nc-1.84-verbose-segfault.patch: netcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE nc-1.84-verbose-segfault.patch --- --- nc/netcat.c.orig 2009-07-27 10:21:34.000000000 +0200 +++ nc/netcat.c 2009-07-27 11:26:23.000000000 +0200 @@ -336,7 +336,7 @@ &len); } - if(vflag) { + if(vflag && family != AF_UNIX) { /* Don't look up port if -n. */ if (nflag) sv = NULL; Index: nc.spec =================================================================== RCS file: /cvs/extras/rpms/nc/devel/nc.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- nc.spec 25 Jul 2009 15:50:11 -0000 1.44 +++ nc.spec 27 Jul 2009 11:07:32 -0000 1.45 @@ -1,7 +1,7 @@ Summary: Reads and writes data across network connections using TCP or UDP Name: nc Version: 1.84 -Release: 20%{?dist} +Release: 21%{?dist} URL: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/ # source is CVS checkout Source0: nc-%{version}.tar.bz2 @@ -17,6 +17,7 @@ Patch8: nc-1.84-verb.patch Patch9: nc-1.84-man.patch Patch10: nc-1.84-gcc4.3.patch Patch11: nc-1.84-efficient_reads.patch +Patch12: nc-1.84-verbose-segfault.patch License: GPL+ Group: Applications/Internet @@ -51,6 +52,7 @@ capabilities. %patch9 -p1 -b .man %patch10 -p1 -b .gcc %patch11 -p1 -b .reads +%patch12 -p1 -b .verb-segfault %build gcc $RPM_OPT_FLAGS -Werror -fno-strict-aliasing `pkg-config --cflags --libs glib-2.0` netcat.c atomicio.c socks.c -o nc @@ -72,6 +74,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc README scripts %changelog +* Mon Jul 27 2009 Jan Zeleny - 1.84-21 +- fixed segfault when listening to socket and -v enabled (#513925) + * Sat Jul 25 2009 Fedora Release Engineering - 1.84-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mmaslano at fedoraproject.org Mon Jul 27 11:07:48 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 11:07:48 +0000 (UTC) Subject: rpms/perl-Compress-Raw-Bzip2/devel perl-Compress-Raw-Bzip2.spec, 1.8, 1.9 Message-ID: <20090727110748.B30B711C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4198 Modified Files: perl-Compress-Raw-Bzip2.spec Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 2.020-1 - update Index: perl-Compress-Raw-Bzip2.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel/perl-Compress-Raw-Bzip2.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Compress-Raw-Bzip2.spec 26 Jul 2009 04:35:13 -0000 1.8 +++ perl-Compress-Raw-Bzip2.spec 27 Jul 2009 11:07:48 -0000 1.9 @@ -1,6 +1,6 @@ Name: perl-Compress-Raw-Bzip2 -Version: 2.005 -Release: 7%{?dist} +Version: 2.020 +Release: 1%{?dist} Summary: Low-Level Interface to bzip2 compression library Group: Development/Libraries @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? - 2.020-1 +- update + * Sat Jul 25 2009 Fedora Release Engineering - 2.005-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jzeleny at fedoraproject.org Mon Jul 27 11:10:40 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Mon, 27 Jul 2009 11:10:40 +0000 (UTC) Subject: rpms/nc/F-11 nc-1.84-verbose-segfault.patch, NONE, 1.1 nc.spec, 1.43, 1.44 Message-ID: <20090727111040.9C7A911C043C@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/nc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5491 Modified Files: nc.spec Added Files: nc-1.84-verbose-segfault.patch Log Message: fixed segfault when listening to socket and -v enabled (#513925) nc-1.84-verbose-segfault.patch: netcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE nc-1.84-verbose-segfault.patch --- --- nc/netcat.c.orig 2009-07-27 10:21:34.000000000 +0200 +++ nc/netcat.c 2009-07-27 11:26:23.000000000 +0200 @@ -336,7 +336,7 @@ &len); } - if(vflag) { + if(vflag && family != AF_UNIX) { /* Don't look up port if -n. */ if (nflag) sv = NULL; Index: nc.spec =================================================================== RCS file: /cvs/extras/rpms/nc/F-11/nc.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- nc.spec 3 Apr 2009 14:42:00 -0000 1.43 +++ nc.spec 27 Jul 2009 11:10:39 -0000 1.44 @@ -1,7 +1,7 @@ Summary: Reads and writes data across network connections using TCP or UDP Name: nc Version: 1.84 -Release: 19%{?dist} +Release: 20%{?dist} URL: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/ # source is CVS checkout Source0: nc-%{version}.tar.bz2 @@ -17,6 +17,7 @@ Patch8: nc-1.84-verb.patch Patch9: nc-1.84-man.patch Patch10: nc-1.84-gcc4.3.patch Patch11: nc-1.84-efficient_reads.patch +Patch12: nc-1.84-verbose-segfault.patch License: GPL+ Group: Applications/Internet @@ -51,6 +52,7 @@ capabilities. %patch9 -p1 -b .man %patch10 -p1 -b .gcc %patch11 -p1 -b .reads +%patch12 -p1 -b .verb-segfault %build gcc $RPM_OPT_FLAGS -Werror -fno-strict-aliasing `pkg-config --cflags --libs glib-2.0` netcat.c atomicio.c socks.c -o nc @@ -72,6 +74,9 @@ rm -rf ${RPM_BUILD_ROOT} %doc README scripts %changelog +* Mon Jul 27 2009 Jan Zeleny - 1.84-20 +- fixed segfault when listening to socket and -v enabled (#513925) + * Fri Apr 03 2009 Jan Zeleny - 1.84-19 - updated network reading to be more efficient (#493129) From pkgdb at fedoraproject.org Mon Jul 27 11:14:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:14:53 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchbugzilla Message-ID: <20090727111453.8C03610F890@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on virt-manager (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:16 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchbugzilla Message-ID: <20090727111516.23D2810F890@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on virt-manager (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:22 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchcommits Message-ID: <20090727111522.EDDAE10F8B1@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on virt-manager (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:31 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchcommits Message-ID: <20090727111531.766AD10F87E@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on virt-manager (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:33 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchbugzilla Message-ID: <20090727111533.38A5910F8B9@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on virt-manager (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:35 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchcommits Message-ID: <20090727111535.9650110F899@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on virt-manager (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:39 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchbugzilla Message-ID: <20090727111539.CBCD110F8BF@bastion2.fedora.phx.redhat.com> quintela has given up the watchbugzilla acl on virt-manager (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From pkgdb at fedoraproject.org Mon Jul 27 11:15:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:15:40 +0000 Subject: [pkgdb] virt-manager: quintela has given up watchcommits Message-ID: <20090727111540.8B54C10F8C5@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on virt-manager (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/virt-manager From than at fedoraproject.org Mon Jul 27 11:16:50 2009 From: than at fedoraproject.org (Than Ngo) Date: Mon, 27 Jul 2009 11:16:50 +0000 (UTC) Subject: rpms/kdeadmin/devel kdeadmin.spec,1.144,1.145 Message-ID: <20090727111650.A0AA011C00E8@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdeadmin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8018 Modified Files: kdeadmin.spec Log Message: don't include system_config_printer_kde for rhel Index: kdeadmin.spec =================================================================== RCS file: /cvs/extras/rpms/kdeadmin/devel/kdeadmin.spec,v retrieving revision 1.144 retrieving revision 1.145 diff -u -p -r1.144 -r1.145 --- kdeadmin.spec 27 Jul 2009 10:12:47 -0000 1.144 +++ kdeadmin.spec 27 Jul 2009 11:16:50 -0000 1.145 @@ -1,10 +1,12 @@ +%if 0%{?rhel} == 0 %define system_config_printer_kde 1 +%endif Name: kdeadmin Summary: K Desktop Environment - Administrative tools Epoch: 7 Version: 4.2.98 -Release: 3%{?dist} +Release: 4%{?dist} Group: User Interface/Desktops License: GPLv2 @@ -155,6 +157,9 @@ fi %changelog +* Mon Jul 27 2009 Than Ngo - 4.2.98-4 +- don't include system_config_printer_kde for rhel + * Mon Jul 27 2009 Than Ngo - 4.2.98-3 - fix knetworkconf backend to recognize fedora network settings From pkgdb at fedoraproject.org Mon Jul 27 11:17:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:17:44 +0000 Subject: [pkgdb] libvirt: quintela has given up watchcommits Message-ID: <20090727111744.3A27210F89A@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on libvirt (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt From pkgdb at fedoraproject.org Mon Jul 27 11:18:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:18:05 +0000 Subject: [pkgdb] libvirt: quintela has given up watchcommits Message-ID: <20090727111805.82C8610F89A@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on libvirt (Fedora 9) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt From pkgdb at fedoraproject.org Mon Jul 27 11:18:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:18:09 +0000 Subject: [pkgdb] libvirt: quintela has given up watchcommits Message-ID: <20090727111809.5D0B210F8B1@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on libvirt (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt From pkgdb at fedoraproject.org Mon Jul 27 11:18:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:18:11 +0000 Subject: [pkgdb] libvirt: quintela has given up watchcommits Message-ID: <20090727111811.3AAFD10F8B5@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on libvirt (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libvirt From pkgdb at fedoraproject.org Mon Jul 27 11:18:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:18:57 +0000 Subject: [pkgdb] kernel: quintela has given up watchcommits Message-ID: <20090727111857.6D10F10F89A@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on kernel (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From pkgdb at fedoraproject.org Mon Jul 27 11:19:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:19:02 +0000 Subject: [pkgdb] kernel: quintela has given up watchcommits Message-ID: <20090727111902.DA21610F8BD@bastion2.fedora.phx.redhat.com> quintela has given up the watchcommits acl on kernel (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/kernel From giesen at fedoraproject.org Mon Jul 27 11:20:05 2009 From: giesen at fedoraproject.org (giesen) Date: Mon, 27 Jul 2009 11:20:05 +0000 (UTC) Subject: rpms/rancid/F-10 import.log, NONE, 1.1 rancid-2.3.2-Makefile.patch, NONE, 1.1 rancid-2.3.2-conf.patch, NONE, 1.1 rancid.cron, NONE, 1.1 rancid.logrotate, NONE, 1.1 rancid.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090727112005.C3D5B11C043A@cvs1.fedora.phx.redhat.com> Author: giesen Update of /cvs/pkgs/rpms/rancid/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9327/F-10 Modified Files: .cvsignore sources Added Files: import.log rancid-2.3.2-Makefile.patch rancid-2.3.2-conf.patch rancid.cron rancid.logrotate rancid.spec Log Message: Initial import into CVS. --- NEW FILE import.log --- rancid-2_3_2-3_fc11:F-10:rancid-2.3.2-3.fc11.src.rpm:1248675528 rancid-2.3.2-Makefile.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-Makefile.patch --- --- bin/Makefile.am.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.am 2009-07-16 02:13:39.733312866 -0400 @@ -71,7 +71,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 YFLAGS = -d #LFLAGS = -i --- bin/Makefile.in.orig 2009-04-16 18:04:43.000000000 -0400 +++ bin/Makefile.in 2009-07-16 02:13:39.734487978 -0400 @@ -110,7 +110,7 @@ #INCLUDES += -I$(top_srcdir)/include #CFLAGS += -g -CFLAGS = -g -O0 +#CFLAGS = -g -O0 COMM = @COMM@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ rancid-2.3.2-conf.patch: rancid.conf.sample.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE rancid-2.3.2-conf.patch --- --- etc/rancid.conf.sample.in.orig 2007-12-20 13:09:24.000000000 -0500 +++ etc/rancid.conf.sample.in 2009-07-16 02:35:41.962728099 -0400 @@ -18,12 +18,12 @@ # TMPDIR=/tmp; export TMPDIR # Be careful changing this, it affects CVSROOT below. -BASEDIR=@localstatedir@; export BASEDIR +BASEDIR=/var/rancid; export BASEDIR PATH=@bindir@:@ENV_PATH@; export PATH # Location of the CVS/SVN repository. Be careful changing this. CVSROOT=$BASEDIR/CVS; export CVSROOT # Location of log files produced by rancid-run(1). -LOGDIR=$BASEDIR/logs; export LOGDIR +LOGDIR=/var/log/rancid; export LOGDIR # # Select which RCS system to use, "cvs" (default) or "svn". Do not change # this after CVSROOT has been created with rancid-cvs. Changing between these --- NEW FILE rancid.cron --- SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/var/rancid # Run config differ hourly 1 * * * * rancid RANCIDBINDIR/rancid-run --- NEW FILE rancid.logrotate --- /var/log/rancid/* { weekly rotate 1 notifempty missingok compress olddir old } --- NEW FILE rancid.spec --- Name: rancid Version: 2.3.2 Release: 3%{?dist} Summary: Really Awesome New Cisco confIg Differ Group: Applications/Internet License: BSD with advertising URL: http://www.shrubbery.net/rancid/ Source0: ftp://ftp.shrubbery.net/pub/{name}/%{name}-%{version}.tar.gz Source1: %{name}.cron Source2: %{name}.logrotate Patch0: rancid-2.3.2-Makefile.patch Patch1: rancid-2.3.2-conf.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: telnet BuildRequires: rsh BuildRequires: openssh-clients BuildRequires: expect BuildRequires: cvs BuildRequires: subversion BuildRequires: perl BuildRequires: iputils Requires(pre): shadow-utils Requires: findutils Requires: expect Requires: perl Requires: iputils Requires: logrotate %description RANCID monitors a router's (or more generally a device's) configuration, including software and hardware (cards, serial numbers, etc) and uses CVS (Concurrent Version System) or Subversion to maintain history of changes. %prep %setup -q -n %{name}-%{version} %patch0 -p0 %patch1 -p0 %build %configure --sysconfdir=%{_sysconfdir}/%{name} --bindir=%{_libexecdir}/%{name} --enable-conf-install make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL="install -p" install -d -m 0755 %{buildroot}/%{_localstatedir}/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name} install -d -m 0755 %{buildroot}/%{_localstatedir}/log/%{name}/old install -d -m 0755 %{buildroot}/%{_sysconfdir}/cron.d install -d -m 0755 %{buildroot}/%{_bindir}/ #symlink some bins from %%{_libexecdir}/%%{name} to %%{_bindir} for base in \ %{name} %{name}-cvs %{name}-fe %{name}-run do ln -sf %{_libexecdir}/%{name}/${base} \ %{buildroot}/%{_bindir}/${base} done install -D -p -m 0755 %{SOURCE1} %{buildroot}/%{_sysconfdir}/cron.d/%{name} #Patch cron file to point to correct installation directory sed -i 's|RANCIDBINDIR|%{_libexecdir}/%{name}|g' %{buildroot}/%{_sysconfdir}/cron.d/%{name} install -D -p -m 0644 %{SOURCE2} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name} %clean rm -rf %{buildroot} %pre getent group %{name} >/dev/null || groupadd -r %{name} getent passwd %{name} >/dev/null || \ useradd -r -g %{name} -d %{_localstatedir}/%{name}/ -s /bin/bash \ -k /etc/skel -m -c "RANCID" %{name} exit 0 %files %defattr(-,root,root,-) %doc CHANGES cloginrc.sample COPYING FAQ README README.lg Todo #%%{_sysconfdir}-files %attr(750,%{name},%{name}) %dir %{_sysconfdir}/%{name} %attr(640,%{name},%{name}) %config(noreplace) %{_sysconfdir}/%{name}/* %attr(644,root,root) %config(noreplace) %{_sysconfdir}/cron.d/%{name} %attr(644,root,root) %config(noreplace) %{_sysconfdir}/logrotate.d/%{name} #%%{_libexecdir}/%%{name}-files %dir %{_libexecdir}/%{name}/ %{_libexecdir}/%{name}/* #%%{_bindir}-files %{_bindir}/* #%%{_mandir}-files %{_mandir}/*/* #%%{_datadir}/%%{name}-files %dir %{_datadir}/%{name}/ %{_datadir}/%{name}/* #%%{_localstatedir}-directories %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name} %attr(750,%{name},%{name}) %dir %{_localstatedir}/log/%{name}/old %attr(750,%{name},%{name}) %dir %{_localstatedir}/%{name}/ %changelog * Wed Jul 22 2009 Gary T. Giesen 2.3.2-3 - Changed GECOS name for rancid user * Wed Jul 22 2009 Gary T. Giesen 2.3.2-2 - Added logrotate (and updated crontab to let logrotate handle log file cleanup - Removed Requires: for rsh, telnet, and openssh-clients - Removed Requires: for cvs - Cleaned up file permissions - Added shell for rancid user for CVS tree creation and troubleshooting - Patch cron file for installation path - Removed installation of CVS root to permit SVN use - Moved from libdir to libexecdir * Thu Jul 16 2009 Gary T. Giesen 2.3.2-1 - Updated to 2.3.2 stable - Removed versioned expect requirement so all supported Fedora/EPEL releases now meet the minimum - Spec file cleanup/style changes * Wed Oct 08 2008 Aage Olai Johnsen 2.3.2-0.6a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.5a8 - Some fixes (#451189) * Tue Sep 30 2008 Aage Olai Johnsen 2.3.2-0.4a8 - More fixes (#451189) - Patched Makefiles - Supplied by Mamoru Tasaka (mtasaka at ioa.s.u-tokyo.ac.jp) * Tue Sep 23 2008 Aage Olai Johnsen 2.3.2-0.3a8 - More fixes (#451189) * Wed Jul 09 2008 Aage Olai Johnsen 2.3.2a8-0.2a8 - Plenty of fixes (#451189) - Patched rancid.conf-file - Added cronjob * Sat May 31 2008 Aage Olai Johnsen 2.3.2a8-0.1 - Initial RPM release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rancid/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 23 Jul 2009 16:37:23 -0000 1.1 +++ .cvsignore 27 Jul 2009 11:20:05 -0000 1.2 @@ -0,0 +1 @@ +rancid-2.3.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rancid/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 23 Jul 2009 16:37:24 -0000 1.1 +++ sources 27 Jul 2009 11:20:05 -0000 1.2 @@ -0,0 +1 @@ +4e2de3ff6850b311c0e2a442f7ae5d82 rancid-2.3.2.tar.gz From pkgdb at fedoraproject.org Mon Jul 27 11:21:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:21:49 +0000 Subject: [pkgdb] qemu: quintela has requested watchbugzilla Message-ID: <20090727112149.B3F7310F897@bastion2.fedora.phx.redhat.com> quintela has requested the watchbugzilla acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Mon Jul 27 11:21:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:21:51 +0000 Subject: [pkgdb] qemu: quintela has requested watchcommits Message-ID: <20090727112151.1DB7C10F8A1@bastion2.fedora.phx.redhat.com> quintela has requested the watchcommits acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Mon Jul 27 11:21:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:21:52 +0000 Subject: [pkgdb] qemu: quintela has requested commit Message-ID: <20090727112153.0B7A410F8B8@bastion2.fedora.phx.redhat.com> quintela has requested the commit acl on qemu (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Mon Jul 27 11:22:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:22:14 +0000 Subject: [pkgdb] qemu: quintela has requested watchbugzilla Message-ID: <20090727112214.4D22810F897@bastion2.fedora.phx.redhat.com> quintela has requested the watchbugzilla acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Mon Jul 27 11:22:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:22:15 +0000 Subject: [pkgdb] qemu: quintela has requested watchcommits Message-ID: <20090727112215.4148510F8BF@bastion2.fedora.phx.redhat.com> quintela has requested the watchcommits acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From pkgdb at fedoraproject.org Mon Jul 27 11:22:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Mon, 27 Jul 2009 11:22:18 +0000 Subject: [pkgdb] qemu: quintela has requested commit Message-ID: <20090727112218.43B9410F8A1@bastion2.fedora.phx.redhat.com> quintela has requested the commit acl on qemu (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/qemu From aleksey2005 at fedoraproject.org Mon Jul 27 11:26:03 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Mon, 27 Jul 2009 11:26:03 +0000 (UTC) Subject: rpms/openscada/F-10 openscada.spec,1.8,1.9 Message-ID: <20090727112603.A6DEC11C00E8@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12356 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/F-10/openscada.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openscada.spec 14 Jul 2009 11:35:07 -0000 1.8 +++ openscada.spec 27 Jul 2009 11:26:03 -0000 1.9 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 9%{?dist} +Release: 11%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,12 +931,13 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif -%find_lang {name} --all-name +%find_lang o.* {name}.lang %clean %{__rm} -rf %{buildroot} %files -f {name}.lang + %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -1208,6 +1209,12 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Mon Jul 27 2009 Popkov Aleksey - 0.6.3.3-11 +- Fixed of macros %find_lang for epel-5 by Peter Lemenkov . + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild. + * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov - Somes cosmetics. From mmaslano at fedoraproject.org Mon Jul 27 11:27:02 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 11:27:02 +0000 (UTC) Subject: rpms/perl-Compress-Raw-Bzip2/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090727112702.9D53011C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12793 Modified Files: .cvsignore sources Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? - 2.020-1 - update Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 2 Jul 2007 03:13:54 -0000 1.3 +++ .cvsignore 27 Jul 2009 11:27:02 -0000 1.4 @@ -1 +1 @@ -Compress-Raw-Bzip2-2.005.tar.gz +Compress-Raw-Bzip2-2.020.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Compress-Raw-Bzip2/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 2 Jul 2007 03:13:54 -0000 1.3 +++ sources 27 Jul 2009 11:27:02 -0000 1.4 @@ -1 +1 @@ -fe1ec38a0faa79e2fc18c5bc8e44c9ad Compress-Raw-Bzip2-2.005.tar.gz +50f85a3ecab19fa6d2ca18b8f990f219 Compress-Raw-Bzip2-2.020.tar.gz From aleksey2005 at fedoraproject.org Mon Jul 27 11:27:46 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Mon, 27 Jul 2009 11:27:46 +0000 (UTC) Subject: rpms/openscada/F-11 openscada.spec,1.8,1.9 Message-ID: <20090727112746.0500C11C00E8@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13056 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/F-11/openscada.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openscada.spec 14 Jul 2009 11:35:07 -0000 1.8 +++ openscada.spec 27 Jul 2009 11:27:45 -0000 1.9 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 9%{?dist} +Release: 11%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,12 +931,13 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif -%find_lang {name} --all-name +%find_lang o.* {name}.lang %clean %{__rm} -rf %{buildroot} %files -f {name}.lang + %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -1208,6 +1209,12 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Mon Jul 27 2009 Popkov Aleksey - 0.6.3.3-11 +- Fixed of macros %find_lang for epel-5 by Peter Lemenkov . + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild. + * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov - Somes cosmetics. From aleksey2005 at fedoraproject.org Mon Jul 27 11:35:04 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Mon, 27 Jul 2009 11:35:04 +0000 (UTC) Subject: rpms/openscada/EL-4 openscada.spec,1.5,1.6 Message-ID: <20090727113504.463D511C00E8@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16127 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/EL-4/openscada.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- openscada.spec 14 Jul 2009 11:35:07 -0000 1.5 +++ openscada.spec 27 Jul 2009 11:35:03 -0000 1.6 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 9%{?dist} +Release: 11%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,12 +931,13 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif -%find_lang {name} --all-name +%find_lang o.* {name}.lang %clean %{__rm} -rf %{buildroot} %files -f {name}.lang + %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -1208,6 +1209,12 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Mon Jul 27 2009 Popkov Aleksey - 0.6.3.3-11 +- Fixed of macros %find_lang for epel-5 by Peter Lemenkov . + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild. + * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov - Somes cosmetics. From mmaslano at fedoraproject.org Mon Jul 27 11:37:58 2009 From: mmaslano at fedoraproject.org (=?utf-8?b?TWFyY2VsYSBNYcWhbMOhxYhvdsOh?=) Date: Mon, 27 Jul 2009 11:37:58 +0000 (UTC) Subject: rpms/perl-Class-XSAccessor-Array/devel .cvsignore, 1.3, 1.4 perl-Class-XSAccessor-Array.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090727113758.C308811C00E8@cvs1.fedora.phx.redhat.com> Author: mmaslano Update of /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17355 Modified Files: .cvsignore perl-Class-XSAccessor-Array.spec sources Log Message: * Mon Jul 27 2009 Marcela Ma?l??ov? 1.04-1 - update Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 4 Jun 2009 06:31:14 -0000 1.3 +++ .cvsignore 27 Jul 2009 11:37:58 -0000 1.4 @@ -1 +1 @@ -Class-XSAccessor-Array-1.03.tar.gz +Class-XSAccessor-Array-1.04.tar.gz Index: perl-Class-XSAccessor-Array.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel/perl-Class-XSAccessor-Array.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Class-XSAccessor-Array.spec 26 Jul 2009 04:33:51 -0000 1.3 +++ perl-Class-XSAccessor-Array.spec 27 Jul 2009 11:37:58 -0000 1.4 @@ -1,6 +1,6 @@ Name: perl-Class-XSAccessor-Array -Version: 1.03 -Release: 2%{?dist} +Version: 1.04 +Release: 1%{?dist} Summary: Generate fast XS accessors without runtime compilation License: GPL+ or Artistic Group: Development/Libraries @@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Mon Jul 27 2009 Marcela Ma?l??ov? 1.04-1 +- update + * Sat Jul 25 2009 Fedora Release Engineering - 1.03-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Class-XSAccessor-Array/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 4 Jun 2009 06:31:14 -0000 1.3 +++ sources 27 Jul 2009 11:37:58 -0000 1.4 @@ -1 +1 @@ -3a249c99ee4d3e765319a880a9de2fee Class-XSAccessor-Array-1.03.tar.gz +5202f1e45f51be5dcaac736385e38cb9 Class-XSAccessor-Array-1.04.tar.gz From varekova at fedoraproject.org Mon Jul 27 11:42:15 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Mon, 27 Jul 2009 11:42:15 +0000 (UTC) Subject: rpms/man-pages/devel .cvsignore, 1.60, 1.61 man-pages.spec, 1.115, 1.116 sources, 1.59, 1.60 man-pages-3.21-major.patch, 1.1, NONE Message-ID: <20090727114215.1351811C00E8@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/man-pages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19107 Modified Files: .cvsignore man-pages.spec sources Removed Files: man-pages-3.21-major.patch Log Message: - update to 3.22 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/.cvsignore,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- .cvsignore 21 Apr 2009 08:00:27 -0000 1.60 +++ .cvsignore 27 Jul 2009 11:42:14 -0000 1.61 @@ -3,4 +3,4 @@ man-suid-bins.tar.bz2 man-pages-posix-2003-a.tar.bz2 man-pages_syscalls.tar.bz2 man-pages_add-01.tar.bz2 -man-pages-3.21.tar.bz2 +man-pages-3.22.tar.bz2 Index: man-pages.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/man-pages.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- man-pages.spec 25 Jul 2009 11:42:43 -0000 1.115 +++ man-pages.spec 27 Jul 2009 11:42:14 -0000 1.116 @@ -3,8 +3,8 @@ Summary: Man (manual) pages from the Linux Documentation Project Name: man-pages -Version: 3.21 -Release: 3%{?dist} +Version: 3.22 +Release: 1%{?dist} License: GPLv2+ and GPL+ and BSD and MIT and Copyright only and IEEE Group: Documentation URL: http://www.kernel.org/pub/linux/docs/manpages/ @@ -126,6 +126,9 @@ rm -rf $RPM_BUILD_ROOT %lang(en) %{_mandir}/en/man* %changelog +* Mon Jul 27 2009 Ivana Varekova - 3.22-1 +- update to 3.22 + * Sat Jul 25 2009 Fedora Release Engineering - 3.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/sources,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- sources 21 Apr 2009 08:00:27 -0000 1.59 +++ sources 27 Jul 2009 11:42:14 -0000 1.60 @@ -3,4 +3,4 @@ a9c6a14e5b34c18c3684a0b68322572f man-su 7c78aff03c0a6767ba483d34f19e4b09 man-pages-posix-2003-a.tar.bz2 bf0d94a7faf6dc0db31325dbf576fd84 man-pages_syscalls.tar.bz2 4ae755c6caaa035cb7737bf4a3ec7927 man-pages_add-01.tar.bz2 -14b3f971348f4d59ae8b8362d8eb15ff man-pages-3.21.tar.bz2 +30adc758b14a45efff785f7c1e43a130 man-pages-3.22.tar.bz2 --- man-pages-3.21-major.patch DELETED --- From aleksey2005 at fedoraproject.org Mon Jul 27 11:44:45 2009 From: aleksey2005 at fedoraproject.org (Popkov Aleksey) Date: Mon, 27 Jul 2009 11:44:45 +0000 (UTC) Subject: rpms/openscada/devel openscada.spec,1.9,1.10 Message-ID: <20090727114445.12F1B11C00E8@cvs1.fedora.phx.redhat.com> Author: aleksey2005 Update of /cvs/pkgs/rpms/openscada/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20249 Modified Files: openscada.spec Log Message: Some fixed Index: openscada.spec =================================================================== RCS file: /cvs/pkgs/rpms/openscada/devel/openscada.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- openscada.spec 25 Jul 2009 20:51:52 -0000 1.9 +++ openscada.spec 27 Jul 2009 11:44:44 -0000 1.10 @@ -63,7 +63,7 @@ Summary: Open SCADA system project Name: openscada Version: 0.6.3.3 -Release: 10%{?dist} +Release: 11%{?dist} Source0: ftp://oscada.org.ua/OpenSCADA/0.6.3/openscada-%version.tar.gz # Init scripts for fedora Patch0: oscada.init.patch @@ -931,12 +931,13 @@ desktop-file-install --dir=%{buildroot}% desktop-file-install --dir=%{buildroot}%_desktopdir demo/openscada_demo.desktop %endif -%find_lang {name} --all-name +%find_lang o.* {name}.lang %clean %{__rm} -rf %{buildroot} %files -f {name}.lang + %defattr(-,root,root) %config(noreplace) %{_sysconfdir}/oscada.xml %config(noreplace) %{_sysconfdir}/oscada_start.xml @@ -1208,8 +1209,11 @@ desktop-file-install --dir=%{buildroot}% %endif %changelog +* Mon Jul 27 2009 Popkov Aleksey - 0.6.3.3-11 +- Fixed of macros %find_lang for epel-5 by Peter Lemenkov . + * Sat Jul 25 2009 Fedora Release Engineering - 0.6.3.3-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild. * Tue Jul 14 2009 Popkov Aleksey 0.6.3.3-9 - Adding %find_lang macros by Peter Lemenkov From varekova at fedoraproject.org Mon Jul 27 11:46:16 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Mon, 27 Jul 2009 11:46:16 +0000 (UTC) Subject: rpms/man-pages/devel man-pages.spec,1.116,1.117 Message-ID: <20090727114616.0C86811C00E8@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/man-pages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20844 Modified Files: man-pages.spec Log Message: increase release Index: man-pages.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/man-pages.spec,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -r1.116 -r1.117 --- man-pages.spec 27 Jul 2009 11:42:14 -0000 1.116 +++ man-pages.spec 27 Jul 2009 11:46:15 -0000 1.117 @@ -4,7 +4,7 @@ Summary: Man (manual) pages from the Linux Documentation Project Name: man-pages Version: 3.22 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GPL+ and BSD and MIT and Copyright only and IEEE Group: Documentation URL: http://www.kernel.org/pub/linux/docs/manpages/ @@ -126,7 +126,7 @@ rm -rf $RPM_BUILD_ROOT %lang(en) %{_mandir}/en/man* %changelog -* Mon Jul 27 2009 Ivana Varekova - 3.22-1 +* Mon Jul 27 2009 Ivana Varekova - 3.22-2 - update to 3.22 * Sat Jul 25 2009 Fedora Release Engineering - 3.21-3 From varekova at fedoraproject.org Mon Jul 27 11:51:25 2009 From: varekova at fedoraproject.org (Ivana Varekova) Date: Mon, 27 Jul 2009 11:51:25 +0000 (UTC) Subject: rpms/man-pages/devel man-pages.spec,1.117,1.118 Message-ID: <20090727115125.B846811C00E8@cvs1.fedora.phx.redhat.com> Author: varekova Update of /cvs/pkgs/rpms/man-pages/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22999 Modified Files: man-pages.spec Log Message: remove patch Index: man-pages.spec =================================================================== RCS file: /cvs/pkgs/rpms/man-pages/devel/man-pages.spec,v retrieving revision 1.117 retrieving revision 1.118 diff -u -p -r1.117 -r1.118 --- man-pages.spec 27 Jul 2009 11:46:15 -0000 1.117 +++ man-pages.spec 27 Jul 2009 11:51:25 -0000 1.118 @@ -4,7 +4,7 @@ Summary: Man (manual) pages from the Linux Documentation Project Name: man-pages Version: 3.22 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GPL+ and BSD and MIT and Copyright only and IEEE Group: Documentation URL: http://www.kernel.org/pub/linux/docs/manpages/ @@ -28,7 +28,6 @@ Patch49: man-pages-2.63-getent.patch Patch50: man-pages-2.63-iconv.patch Patch53: man-pages-2.78-stream.patch Patch54: man-pages-2.80-malloc_h.patch -Patch55: man-pages-3.21-major.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Autoreq: false @@ -55,7 +54,6 @@ rmdir man-pages-posix-%{posix_version}-% %patch50 -p1 %patch53 -p1 %patch54 -p1 -%patch55 -p1 ### And now remove those we are not going to use: @@ -126,7 +124,7 @@ rm -rf $RPM_BUILD_ROOT %lang(en) %{_mandir}/en/man* %changelog -* Mon Jul 27 2009 Ivana Varekova - 3.22-2 +* Mon Jul 27 2009 Ivana Varekova - 3.22-3 - update to 3.22 * Sat Jul 25 2009 Fedora Release Engineering - 3.21-3 From ndim at fedoraproject.org Mon Jul 27 11:51:48 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Mon, 27 Jul 2009 11:51:48 +0000 (UTC) Subject: rpms/nted/devel .cvsignore, 1.11, 1.12 nted.spec, 1.18, 1.19 sources, 1.11, 1.12 Message-ID: <20090727115148.E795F11C00E8@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/nted/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23205 Modified Files: .cvsignore nted.spec sources Log Message: * Mon Jul 27 2009 Hans Ulrich Niedermann - 1.6.2-1 - update to bugfix release 1.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 21 Jul 2009 13:04:53 -0000 1.11 +++ .cvsignore 27 Jul 2009 11:51:48 -0000 1.12 @@ -1 +1 @@ -nted-1.6.1.tar.gz +nted-1.6.2.tar.gz Index: nted.spec =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/nted.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- nted.spec 25 Jul 2009 19:37:30 -0000 1.18 +++ nted.spec 27 Jul 2009 11:51:48 -0000 1.19 @@ -14,8 +14,8 @@ Name: nted -Version: 1.6.1 -Release: 2%{?dist} +Version: 1.6.2 +Release: 1%{?dist} Summary: Musical score editor Summary(de): Partitureditor @@ -125,6 +125,9 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Hans Ulrich Niedermann - 1.6.2-1 +- update to bugfix release 1.6.2 + * Sat Jul 25 2009 Fedora Release Engineering - 1.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nted/devel/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 21 Jul 2009 13:04:53 -0000 1.11 +++ sources 27 Jul 2009 11:51:48 -0000 1.12 @@ -1 +1 @@ -ba40d2397d13e1585f113ba1f8db3bde nted-1.6.1.tar.gz +dd4290b9e5d8f513d37772cb801e636f nted-1.6.2.tar.gz From devrim at fedoraproject.org Mon Jul 27 12:11:46 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Mon, 27 Jul 2009 12:11:46 +0000 (UTC) Subject: rpms/postgis/devel .cvsignore, 1.12, 1.13 postgis.spec, 1.23, 1.24 sources, 1.12, 1.13 Message-ID: <20090727121146.940EC11C00E8@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31910 Modified Files: .cvsignore postgis.spec sources Log Message: Update to 1.4.0. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 6 Jul 2009 04:22:12 -0000 1.12 +++ .cvsignore 27 Jul 2009 12:11:44 -0000 1.13 @@ -1,2 +1,2 @@ -postgis-1.4.0rc1.tar.gz -postgis-1.4.0rc1.pdf +postgis-1.4.0.pdf +postgis-1.4.0.tar.gz Index: postgis.spec =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/postgis.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- postgis.spec 26 Jul 2009 19:14:21 -0000 1.23 +++ postgis.spec 27 Jul 2009 12:11:45 -0000 1.24 @@ -4,15 +4,13 @@ Summary: Geographic Information Systems Extensions to PostgreSQL Name: postgis -Version: 1.4.0rc1 -Release: 2%{?dist} +Version: 1.4.0 +Release: 1%{?dist} License: GPLv2+ Group: Applications/Databases Source0: http://postgis.refractions.net/download/%{name}-%{version}.tar.gz Source2: http://www.postgis.org/download/%{name}-%{version}.pdf Source4: filter-requires-perl-Pg.sh -# 1.4rc1 only patch. -Patch0: postgis-loader-makefile.patch URL: http://postgis.refractions.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -164,6 +162,9 @@ rm -rf %{buildroot} %doc postgis*.pdf %changelog +* Mon Jul 27 2009 Devrim GUNDUZ - 1.4.0-1 +- Update to 1.4.0 + * Sun Jul 26 2009 Fedora Release Engineering - 1.4.0rc1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 6 Jul 2009 04:22:12 -0000 1.12 +++ sources 27 Jul 2009 12:11:45 -0000 1.13 @@ -1,2 +1,2 @@ -f380bfdb29792f712662ab53967f4652 postgis-1.4.0rc1.tar.gz -855f97c92d95ceee78314d544bbd6f4c postgis-1.4.0rc1.pdf +8368d43560d20a23e9883d098c3e10ec postgis-1.4.0.pdf +bc5b97d5399bd20ca90bfdf784ab6c33 postgis-1.4.0.tar.gz From ndim at fedoraproject.org Mon Jul 27 12:27:35 2009 From: ndim at fedoraproject.org (Hans Ulrich Niedermann) Date: Mon, 27 Jul 2009 12:27:35 +0000 (UTC) Subject: rpms/nted/F-11 .cvsignore, 1.11, 1.12 nted.spec, 1.17, 1.18 sources, 1.11, 1.12 Message-ID: <20090727122735.D837111C00E8@cvs1.fedora.phx.redhat.com> Author: ndim Update of /cvs/pkgs/rpms/nted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7163 Modified Files: .cvsignore nted.spec sources Log Message: * Mon Jul 27 2009 Hans Ulrich Niedermann - 1.6.2-1 - update to bugfix release 1.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/.cvsignore,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- .cvsignore 21 Jul 2009 13:53:27 -0000 1.11 +++ .cvsignore 27 Jul 2009 12:27:35 -0000 1.12 @@ -1 +1 @@ -nted-1.6.1.tar.gz +nted-1.6.2.tar.gz Index: nted.spec =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/nted.spec,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- nted.spec 21 Jul 2009 13:53:28 -0000 1.17 +++ nted.spec 27 Jul 2009 12:27:35 -0000 1.18 @@ -14,7 +14,7 @@ Name: nted -Version: 1.6.1 +Version: 1.6.2 Release: 1%{?dist} Summary: Musical score editor Summary(de): Partitureditor @@ -125,6 +125,12 @@ rm -rf %{buildroot} %changelog +* Mon Jul 27 2009 Hans Ulrich Niedermann - 1.6.2-1 +- update to bugfix release 1.6.2 + +* Sat Jul 25 2009 Fedora Release Engineering - 1.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jul 21 2009 Hans Ulrich Niedermann - 1.6.1-1 - Upstream release 1.6.0/1.6.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nted/F-11/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 21 Jul 2009 13:53:28 -0000 1.11 +++ sources 27 Jul 2009 12:27:35 -0000 1.12 @@ -1 +1 @@ -ba40d2397d13e1585f113ba1f8db3bde nted-1.6.1.tar.gz +dd4290b9e5d8f513d37772cb801e636f nted-1.6.2.tar.gz From devrim at fedoraproject.org Mon Jul 27 12:28:20 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Mon, 27 Jul 2009 12:28:20 +0000 (UTC) Subject: rpms/postgis/devel postgis.spec,1.24,1.25 Message-ID: <20090727122820.66CBA11C00E8@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7747 Modified Files: postgis.spec Log Message: Fix spec . Index: postgis.spec =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/postgis.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- postgis.spec 27 Jul 2009 12:11:45 -0000 1.24 +++ postgis.spec 27 Jul 2009 12:28:19 -0000 1.25 @@ -65,7 +65,6 @@ The postgis-utils package provides the u %prep %setup -q -%patch0 -p0 # Copy .pdf file to top directory before installing. cp -p %{SOURCE2} . From mclasen at fedoraproject.org Mon Jul 27 12:43:40 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Mon, 27 Jul 2009 12:43:40 +0000 (UTC) Subject: rpms/gvfs/devel gvfs.spec,1.138,1.139 Message-ID: <20090727124340.5259F11C00E8@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gvfs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15565 Modified Files: gvfs.spec Log Message: Rebuild Index: gvfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/gvfs/devel/gvfs.spec,v retrieving revision 1.138 retrieving revision 1.139 diff -u -p -r1.138 -r1.139 --- gvfs.spec 25 Jul 2009 01:55:30 -0000 1.138 +++ gvfs.spec 27 Jul 2009 12:43:38 -0000 1.139 @@ -1,7 +1,7 @@ Summary: Backends for the gio framework in GLib Name: gvfs Version: 1.3.2 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: System Environment/Libraries URL: http://www.gtk.org @@ -270,6 +270,9 @@ update-desktop-database &> /dev/null ||: %changelog +* Mon Jul 27 2009 Matthias Clasen - 1.3.2-3 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mathstuf at fedoraproject.org Mon Jul 27 12:56:13 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 27 Jul 2009 12:56:13 +0000 (UTC) Subject: rpms/kde-plasma-networkmanagement/devel kde-plasma-networkmanagement.spec, 1.12, 1.13 sources, 1.7, 1.8 Message-ID: <20090727125613.4E8C111C00E8@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20720 Modified Files: kde-plasma-networkmanagement.spec sources Log Message: Update spec; new checkout Index: kde-plasma-networkmanagement.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/kde-plasma-networkmanagement.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- kde-plasma-networkmanagement.spec 25 Jul 2009 04:23:10 -0000 1.12 +++ kde-plasma-networkmanagement.spec 27 Jul 2009 12:56:12 -0000 1.13 @@ -1,6 +1,6 @@ Name: kde-plasma-networkmanagement Version: 0.1 -Release: 0.17.20090602svn%{?dist} +Release: 0.18.20090724svn%{?dist} Summary: NetworkManager KDE 4 integration Group: User Interface/Desktops @@ -8,12 +8,12 @@ License: (GPLv2 or GPLv3) and GPL URL: http://websvn.kde.org/trunk/playground/base/plasma/applets/networkmanager/ # The source for this package was pulled from upstream's vcs. Use the # following commands to generate the tarball: -# svn export -r 977393 svn://anonsvn.kde.org/home/kde/trunk/playground/base/plasma/applets/networkmanager kde-plasma-networkmanagement-0.1 +# svn export -r 1001960 svn://anonsvn.kde.org/home/kde/trunk/playground/base/plasma/applets/networkmanager kde-plasma-networkmanagement-0.1 # tar -c kde-plasma-networkmanagement-0.1 | bzip2 --best -c > kde-plasma-networkmanagement-0.1.tar.bz2 Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: kdebase-workspace-devel >= 4.1.96 +BuildRequires: kdebase-workspace-devel >= 4.2.98 BuildRequires: NetworkManager-glib-devel >= 0.7.0 BuildRequires: PolicyKit-devel @@ -151,6 +151,9 @@ xdg-icon-resource forceupdate --theme ox %changelog +* Fri Jul 24 2009 Ben Boeckel 0.1-0.18.20090724svn +- New snapshot + * Fri Jul 24 2009 Fedora Release Engineering - 0.1-0.17.20090602svn - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 4 Jun 2009 02:25:34 -0000 1.7 +++ sources 27 Jul 2009 12:56:12 -0000 1.8 @@ -1 +1 @@ -f8835e99c3683a11319150f310089f97 kde-plasma-networkmanagement-0.1.tar.bz2 +0ada82aa43921ead84ff85dce458dde2 kde-plasma-networkmanagement-0.1.tar.bz2 From ltinkl at fedoraproject.org Mon Jul 27 13:01:22 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Mon, 27 Jul 2009 13:01:22 +0000 (UTC) Subject: rpms/kdebase-workspace/devel kdebase-workspace-4.3.0-networkipv4config.patch, NONE, 1.1 kdebase-workspace.spec, 1.255, 1.256 Message-ID: <20090727130122.AA9C011C0424@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22865 Modified Files: kdebase-workspace.spec Added Files: kdebase-workspace-4.3.0-networkipv4config.patch Log Message: backport forgotten Solid method impl from the 4.3 branch (needed for the KDE NM applet) kdebase-workspace-4.3.0-networkipv4config.patch: networkipv4config.cpp | 5 +++++ 1 file changed, 5 insertions(+) --- NEW FILE kdebase-workspace-4.3.0-networkipv4config.patch --- --- libs/solid/control/networkipv4config.cpp 2009/07/21 20:48:36 1000714 +++ libs/solid/control/networkipv4config.cpp 2009/07/21 20:48:54 1000715 @@ -216,6 +216,11 @@ return d->domains; } +QList Solid::Control::IPv4Config::routes() const +{ + return d->routes; +} + Solid::Control::IPv4Config &Solid::Control::IPv4Config::operator=(const Solid::Control::IPv4Config& other) { if (this == &other) Index: kdebase-workspace.spec =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/kdebase-workspace.spec,v retrieving revision 1.255 retrieving revision 1.256 diff -u -p -r1.255 -r1.256 --- kdebase-workspace.spec 25 Jul 2009 04:26:10 -0000 1.255 +++ kdebase-workspace.spec 27 Jul 2009 13:01:21 -0000 1.256 @@ -4,7 +4,7 @@ Summary: K Desktop Environment - Workspa Name: kdebase-workspace Version: 4.2.98 -Release: 2%{?dist} +Release: 3%{?dist} Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-workspace-%{version}.tar.bz2 License: GPLv2 Group: User Interface/Desktops @@ -28,6 +28,8 @@ Patch15: kdebase-workspace-4.2.0-kio_sys # upstream patches: # 4.3 branch +# r1000715, forgotten method impl +Patch16: kdebase-workspace-4.3.0-networkipv4config.patch # trunk @@ -218,6 +220,7 @@ Requires: PyKDE4 >= %{version} %patch13 -p1 -b .pykde4 # kio_sysinfo based on OpenSUSE's patch %patch15 -p1 -b .kio_sysinfo +%patch16 -p0 -b .networkipv4config # upstream patches @@ -503,6 +506,9 @@ fi %changelog +* Mon Jul 27 2009 Luk?? Tinkl - 4.2.98-3 +- backport forgotten method impl in Solid from 4.3 branch, r1000715 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.98-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rjones at fedoraproject.org Mon Jul 27 13:08:13 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Mon, 27 Jul 2009 13:08:13 +0000 (UTC) Subject: rpms/libguestfs/EL-5 libguestfs.spec,1.50,1.51 Message-ID: <20090727130814.94F5411C00E8@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/libguestfs/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26706 Modified Files: libguestfs.spec Log Message: +- Fix broken runtime dep on virt-inspector (Dennis Gilmore). +- Fix broken runtime dep on genisoimage (Dennis Gilmore). Index: libguestfs.spec =================================================================== RCS file: /cvs/pkgs/rpms/libguestfs/EL-5/libguestfs.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- libguestfs.spec 23 Jul 2009 11:48:01 -0000 1.50 +++ libguestfs.spec 27 Jul 2009 13:08:12 -0000 1.51 @@ -5,7 +5,7 @@ Summary: Access and modify virtual m Name: libguestfs Epoch: 1 Version: 1.0.64 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2+ Group: Development/Libraries URL: http://libguestfs.org/ @@ -92,7 +92,7 @@ Requires: qemu-system-ppc >= 0.10.5 Requires: chntpw >= 0.99.6-8 # For libguestfs-test-tool. -Requires: genisoimage +Requires: mkisofs %description @@ -148,7 +148,7 @@ Group: Development/Tools License: GPLv2+ Requires: %{name} = %{epoch}:%{version}-%{release} Requires: /usr/bin/pod2text -Requires: virt-inspector +#Requires: virt-inspector %description -n guestfish @@ -537,6 +537,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Richard W.M. Jones - 1.0.64-3 +- Fix broken runtime dep on virt-inspector (Dennis Gilmore). +- Fix broken runtime dep on genisoimage (Dennis Gilmore). + * Thu Jul 23 2009 Richard W.M. Jones - 1.0.64-2 - New upstream release 1.0.64. - New tool 'libguestfs-test-tool'. From mmahut at fedoraproject.org Mon Jul 27 13:08:50 2009 From: mmahut at fedoraproject.org (Marek Mahut) Date: Mon, 27 Jul 2009 13:08:50 +0000 (UTC) Subject: rpms/gnuradio/devel gnuradio-3.2-gcc44.patch, NONE, 1.1 gnuradio-3.2-libtool.patch, NONE, 1.1 .cvsignore, 1.4, 1.5 gnuradio.spec, 1.13, 1.14 sources, 1.4, 1.5 gnuradio-3.1.2-gcc34.patch, 1.1, NONE gnuradio-3.1.2-libtool.bug.patch, 1.1, NONE gnuradio-3.1.3-comedilib0.8.patch, 1.1, NONE gnuradio-3.1.3-gcc44.patch, 1.1, NONE gnuradio-3.1.3-libtool.bug.patch, 1.1, NONE gnuradio-3.1.3-werror.patch, 1.2, NONE Message-ID: <20090727130850.6FE5711C00E8@cvs1.fedora.phx.redhat.com> Author: mmahut Update of /cvs/pkgs/rpms/gnuradio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25908 Modified Files: .cvsignore gnuradio.spec sources Added Files: gnuradio-3.2-gcc44.patch gnuradio-3.2-libtool.patch Removed Files: gnuradio-3.1.2-gcc34.patch gnuradio-3.1.2-libtool.bug.patch gnuradio-3.1.3-comedilib0.8.patch gnuradio-3.1.3-gcc44.patch gnuradio-3.1.3-libtool.bug.patch gnuradio-3.1.3-werror.patch Log Message: Upstream release 3.2 gnuradio-3.2-gcc44.patch: gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc | 1 + gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc | 1 + gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc | 1 + gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc | 1 + gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc | 1 + gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc | 1 + gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc | 2 +- gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc | 1 + gnuradio-core/src/lib/general/gr_dpll_bb.cc | 1 + gnuradio-core/src/lib/general/gr_fft_vfc.cc | 1 + gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc | 1 + gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc | 1 + gnuradio-core/src/lib/general/gr_ofdm_sampler.cc | 1 + gnuradio-core/src/lib/general/gr_simple_correlator.cc | 1 + gnuradio-core/src/lib/general/gr_stream_mux.cc | 1 + gnuradio-core/src/lib/io/gr_wavfile_sink.cc | 1 + gr-audio-alsa/src/gri_alsa.cc | 1 + gr-audio-osx/src/audio_osx_sink.cc | 1 + gr-audio-osx/src/audio_osx_source.cc | 1 + gr-audio-portaudio/src/gri_portaudio.cc | 1 + gr-pager/src/pager_flex_sync.cc | 1 + gr-qtgui/src/lib/Waterfall3DDisplayPlot.h | 2 ++ gr-qtgui/src/lib/spectrumUpdateEvents.h | 1 + gr-usrp/apps/usrp_siggen.cc | 1 + gr-usrp/src/usrp_sink_base.cc | 1 + gr-usrp/src/usrp_source_base.cc | 1 + mblock/src/lib/mb_worker.cc | 1 + mblock/src/lib/qa_bitset.cc | 1 + mblock/src/lib/qa_disconnect.cc | 1 + usrp/host/lib/legacy/db_boards.cc | 1 + usrp/host/lib/legacy/db_dbs_rx.cc | 1 + usrp/host/lib/legacy/db_xcvr2450.cc | 1 + usrp/host/lib/legacy/fusb_darwin.cc | 1 + usrp/host/lib/legacy/fusb_linux.cc | 2 +- usrp/host/lib/legacy/fusb_win32.cc | 1 + usrp/host/lib/legacy/usrp_basic.cc | 1 + usrp/host/lib/legacy/usrp_standard.cc | 1 + usrp2/host/apps/find_usrps.cc | 1 + usrp2/host/apps/gpio.cc | 1 + usrp2/host/apps/rx_streaming_samples.cc | 1 + usrp2/host/apps/test_mimo_tx.cc | 1 + usrp2/host/apps/tx_samples.cc | 1 + usrp2/host/lib/eth_buffer.cc | 1 + usrp2/host/lib/ethernet.cc | 1 + usrp2/host/lib/ethernet.h | 1 + usrp2/host/lib/find.cc | 1 + usrp2/host/lib/usrp2.cc | 1 + 47 files changed, 48 insertions(+), 2 deletions(-) --- NEW FILE gnuradio-3.2-gcc44.patch --- Marek Mahut : Patch to fix build under gcc 4.4 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc 2009-07-25 09:14:00.862437254 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc 2009-07-25 09:17:18.282187738 +0200 @@ -39,6 +39,7 @@ #include #include +#include gr_fft_filter_ccc_sptr gr_make_fft_filter_ccc (int decimation, const std::vector &taps) { diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc 2009-07-25 09:14:00.864437599 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc 2009-07-25 09:17:25.071217820 +0200 @@ -34,6 +34,7 @@ #include #include +#include gr_fft_filter_fff_sptr gr_make_fft_filter_fff (int decimation, const std::vector &taps) { diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc 2009-07-25 09:14:01.033433009 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_align_on_samplenumbers_ss.cc 2009-07-25 09:17:36.663188600 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #include //define ALIGN_ADVANCED_IMPLEMENTATION to have an alternative implementation of the align algoritm which exactly follows the align_interval spec. diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc 2009-07-25 09:14:01.051436257 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_clock_recovery_mm_cc.cc 2009-07-25 09:17:42.243478128 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include // Public constructor diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc 2009-07-25 09:14:01.025437774 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_constellation_decoder_cb.cc 2009-07-25 09:17:47.250185275 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include using std::cout; diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc 2009-07-25 09:14:01.060434982 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_correlate_access_code_bb.cc 2009-07-25 09:17:54.333184463 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #define VERBOSE 0 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc 2009-07-25 09:14:01.047433541 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_dd_mpsk_sync_cc.cc 2009-07-25 09:18:01.345183736 +0200 @@ -30,7 +30,7 @@ #include #include #include - +#include #include #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc 2009-07-25 09:14:01.076437534 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_decode_ccsds_27_fb.cc 2009-07-25 09:18:07.285215839 +0200 @@ -24,6 +24,7 @@ #include #include +#include gr_decode_ccsds_27_fb_sptr gr_make_decode_ccsds_27_fb() diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dpll_bb.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_dpll_bb.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_dpll_bb.cc 2009-07-25 09:14:01.055437436 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_dpll_bb.cc 2009-07-25 09:18:20.651188536 +0200 @@ -26,6 +26,7 @@ #include #include +#include gr_dpll_bb_sptr gr_make_dpll_bb (float period, float gain) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_fft_vfc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_fft_vfc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_fft_vfc.cc 2009-07-25 09:14:01.032433570 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_fft_vfc.cc 2009-07-25 09:18:27.588184185 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include // FIXME after this is working, change to use native real to complex fft. diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc 2009-07-25 09:14:01.080445069 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_mpsk_receiver_cc.cc 2009-07-25 09:18:45.986188440 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc 2009-07-25 09:14:01.067433082 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_frame_acquisition.cc 2009-07-25 09:36:03.133188443 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include #define VERBOSE 0 #define M_TWOPI (2*M_PI) diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc 2009-07-25 09:14:01.055437436 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_ofdm_sampler.cc 2009-07-25 09:43:44.309459146 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include gr_ofdm_sampler_sptr gr_make_ofdm_sampler (unsigned int fft_length, diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_simple_correlator.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_simple_correlator.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_simple_correlator.cc 2009-07-25 09:14:01.078437530 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_simple_correlator.cc 2009-07-25 09:18:50.951455747 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include static const int THRESHOLD = 3; diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_stream_mux.cc gnuradio-3.2/gnuradio-core/src/lib/general/gr_stream_mux.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/general/gr_stream_mux.cc 2009-07-25 09:14:01.083447508 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/general/gr_stream_mux.cc 2009-07-25 09:18:55.617260043 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #define VERBOSE 0 diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/lib/io/gr_wavfile_sink.cc gnuradio-3.2/gnuradio-core/src/lib/io/gr_wavfile_sink.cc --- gnuradio-3.2-upstream/gnuradio-core/src/lib/io/gr_wavfile_sink.cc 2009-07-25 09:14:00.995437624 +0200 +++ gnuradio-3.2/gnuradio-core/src/lib/io/gr_wavfile_sink.cc 2009-07-25 09:19:02.378184445 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/gr-audio-alsa/src/gri_alsa.cc gnuradio-3.2/gr-audio-alsa/src/gri_alsa.cc --- gnuradio-3.2-upstream/gr-audio-alsa/src/gri_alsa.cc 2009-07-25 09:14:00.474445345 +0200 +++ gnuradio-3.2/gr-audio-alsa/src/gri_alsa.cc 2009-07-25 09:19:13.904207014 +0200 @@ -26,6 +26,7 @@ #include #include +#include static snd_pcm_access_t access_types[] = { SND_PCM_ACCESS_MMAP_INTERLEAVED, diff -Naur gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_sink.cc gnuradio-3.2/gr-audio-osx/src/audio_osx_sink.cc --- gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_sink.cc 2009-07-25 09:14:00.341445675 +0200 +++ gnuradio-3.2/gr-audio-osx/src/audio_osx_sink.cc 2009-07-25 09:19:21.598183148 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #define _OSX_AU_DEBUG_ 0 diff -Naur gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_source.cc gnuradio-3.2/gr-audio-osx/src/audio_osx_source.cc --- gnuradio-3.2-upstream/gr-audio-osx/src/audio_osx_source.cc 2009-07-25 09:14:00.343450491 +0200 +++ gnuradio-3.2/gr-audio-osx/src/audio_osx_source.cc 2009-07-25 09:19:27.590184106 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #define _OSX_AU_DEBUG_ 0 #define _OSX_DO_LISTENERS_ 0 diff -Naur gnuradio-3.2-upstream/gr-audio-portaudio/src/gri_portaudio.cc gnuradio-3.2/gr-audio-portaudio/src/gri_portaudio.cc --- gnuradio-3.2-upstream/gr-audio-portaudio/src/gri_portaudio.cc 2009-07-25 09:14:00.477445200 +0200 +++ gnuradio-3.2/gr-audio-portaudio/src/gri_portaudio.cc 2009-07-25 09:19:33.475184246 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include PaDeviceIndex diff -Naur gnuradio-3.2-upstream/gr-pager/src/pager_flex_sync.cc gnuradio-3.2/gr-pager/src/pager_flex_sync.cc --- gnuradio-3.2-upstream/gr-pager/src/pager_flex_sync.cc 2009-07-25 09:14:01.100445030 +0200 +++ gnuradio-3.2/gr-pager/src/pager_flex_sync.cc 2009-07-25 09:19:38.231198885 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include pager_flex_sync_sptr pager_make_flex_sync() { diff -Naur gnuradio-3.2-upstream/gr-qtgui/src/lib/spectrumUpdateEvents.h gnuradio-3.2/gr-qtgui/src/lib/spectrumUpdateEvents.h --- gnuradio-3.2-upstream/gr-qtgui/src/lib/spectrumUpdateEvents.h 2009-07-25 09:14:00.716437539 +0200 +++ gnuradio-3.2/gr-qtgui/src/lib/spectrumUpdateEvents.h 2009-07-26 11:08:31.834443932 +0200 @@ -5,6 +5,7 @@ #include #include #include +#include class SpectrumUpdateEvent:public QEvent{ diff -Naur gnuradio-3.2-upstream/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h gnuradio-3.2/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h --- gnuradio-3.2-upstream/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h 2009-07-25 09:14:00.717434185 +0200 +++ gnuradio-3.2/gr-qtgui/src/lib/Waterfall3DDisplayPlot.h 2009-07-26 15:39:18.539220269 +0200 @@ -9,6 +9,8 @@ #include #include +#include + class Waterfall3DColorMap:public Qwt3D::Color, public QwtLinearColorMap{ public: Waterfall3DColorMap(); diff -Naur gnuradio-3.2-upstream/gr-usrp/apps/usrp_siggen.cc gnuradio-3.2/gr-usrp/apps/usrp_siggen.cc --- gnuradio-3.2-upstream/gr-usrp/apps/usrp_siggen.cc 2009-07-25 09:14:00.503447733 +0200 +++ gnuradio-3.2/gr-usrp/apps/usrp_siggen.cc 2009-07-25 17:21:57.442443913 +0200 @@ -26,6 +26,7 @@ #include #include #include +#include namespace po = boost::program_options; diff -Naur gnuradio-3.2-upstream/gr-usrp/src/usrp_sink_base.cc gnuradio-3.2/gr-usrp/src/usrp_sink_base.cc --- gnuradio-3.2-upstream/gr-usrp/src/usrp_sink_base.cc 2009-07-25 09:14:00.501447597 +0200 +++ gnuradio-3.2/gr-usrp/src/usrp_sink_base.cc 2009-07-25 17:19:08.780188246 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include static const int OUTPUT_MULTIPLE_SAMPLES = 128; // DON'T CHANGE THIS VALUE! diff -Naur gnuradio-3.2-upstream/gr-usrp/src/usrp_source_base.cc gnuradio-3.2/gr-usrp/src/usrp_source_base.cc --- gnuradio-3.2-upstream/gr-usrp/src/usrp_source_base.cc 2009-07-25 09:14:00.502445220 +0200 +++ gnuradio-3.2/gr-usrp/src/usrp_source_base.cc 2009-07-25 17:19:51.214219555 +0200 @@ -28,6 +28,7 @@ #include #include #include +#include static const int OUTPUT_MULTIPLE_BYTES = 4 * 1024; diff -Naur gnuradio-3.2-upstream/mblock/src/lib/mb_worker.cc gnuradio-3.2/mblock/src/lib/mb_worker.cc --- gnuradio-3.2-upstream/mblock/src/lib/mb_worker.cc 2009-07-25 09:14:00.496445162 +0200 +++ gnuradio-3.2/mblock/src/lib/mb_worker.cc 2009-07-25 11:17:09.894192322 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include #ifdef HAVE_SCHED_H #include #endif diff -Naur gnuradio-3.2-upstream/mblock/src/lib/qa_bitset.cc gnuradio-3.2/mblock/src/lib/qa_bitset.cc --- gnuradio-3.2-upstream/mblock/src/lib/qa_bitset.cc 2009-07-25 09:14:00.494447611 +0200 +++ gnuradio-3.2/mblock/src/lib/qa_bitset.cc 2009-07-25 11:17:15.999184361 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/mblock/src/lib/qa_disconnect.cc gnuradio-3.2/mblock/src/lib/qa_disconnect.cc --- gnuradio-3.2-upstream/mblock/src/lib/qa_disconnect.cc 2009-07-25 09:14:00.494447611 +0200 +++ gnuradio-3.2/mblock/src/lib/qa_disconnect.cc 2009-07-25 13:41:30.945188181 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static pmt_t s_in = pmt_intern("in"); static pmt_t s_out = pmt_intern("out"); diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_boards.cc gnuradio-3.2/usrp/host/lib/legacy/db_boards.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_boards.cc 2009-07-25 09:14:00.618447788 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_boards.cc 2009-07-25 16:59:10.714438636 +0200 @@ -31,6 +31,7 @@ #include #include #include +#include std::vector instantiate_dbs(int dbid, usrp_basic_sptr usrp, int which_side) diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_dbs_rx.cc gnuradio-3.2/usrp/host/lib/legacy/db_dbs_rx.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_dbs_rx.cc 2009-07-25 09:14:00.618447788 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_dbs_rx.cc 2009-07-25 17:00:38.567217525 +0200 @@ -21,6 +21,7 @@ #include #include #include +#include /*****************************************************************************/ diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/db_xcvr2450.cc gnuradio-3.2/usrp/host/lib/legacy/db_xcvr2450.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/db_xcvr2450.cc 2009-07-25 09:14:00.617445275 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/db_xcvr2450.cc 2009-07-25 17:01:20.805468727 +0200 @@ -21,6 +21,7 @@ #include #include #include +#include #include #include diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_darwin.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_darwin.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_darwin.cc 2009-07-25 09:14:00.612447799 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_darwin.cc 2009-07-25 09:19:46.638210966 +0200 @@ -33,6 +33,7 @@ #include "fusb.h" #include "fusb_darwin.h" #include "darwin_libusb.h" +#include static const int USB_TIMEOUT = 100; // in milliseconds static const UInt8 NUM_QUEUE_ITEMS = 20; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_linux.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_linux.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_linux.cc 2009-07-25 09:14:00.616447792 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_linux.cc 2009-07-25 09:19:54.041184719 +0200 @@ -33,10 +33,10 @@ #include // interface to kernel portion of user mode usb driver #include #include -#include #include #include #include +#include #define MINIMIZE_TX_BUFFERING 1 // must be defined to 0 or 1 diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_win32.cc gnuradio-3.2/usrp/host/lib/legacy/fusb_win32.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/fusb_win32.cc 2009-07-25 09:14:00.617445275 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/fusb_win32.cc 2009-07-25 09:19:58.736184198 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static const int MAX_BLOCK_SIZE = fusb_sysconfig::max_block_size(); static const int DEFAULT_BLOCK_SIZE = MAX_BLOCK_SIZE; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_basic.cc gnuradio-3.2/usrp/host/lib/legacy/usrp_basic.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_basic.cc 2009-07-25 09:14:00.611447732 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/usrp_basic.cc 2009-07-25 09:20:04.941434694 +0200 @@ -37,6 +37,7 @@ #include #include #include +#include using namespace ad9862; diff -Naur gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_standard.cc gnuradio-3.2/usrp/host/lib/legacy/usrp_standard.cc --- gnuradio-3.2-upstream/usrp/host/lib/legacy/usrp_standard.cc 2009-07-25 09:14:00.619447576 +0200 +++ gnuradio-3.2/usrp/host/lib/legacy/usrp_standard.cc 2009-07-25 09:20:09.756187465 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include static const int OLD_CAPS_VAL = 0xaa55ff77; diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/find_usrps.cc gnuradio-3.2/usrp2/host/apps/find_usrps.cc --- gnuradio-3.2-upstream/usrp2/host/apps/find_usrps.cc 2009-07-25 09:14:00.301437861 +0200 +++ gnuradio-3.2/usrp2/host/apps/find_usrps.cc 2009-07-25 17:14:41.128188741 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include static void usage(const char *progname) diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/gpio.cc gnuradio-3.2/usrp2/host/apps/gpio.cc --- gnuradio-3.2-upstream/usrp2/host/apps/gpio.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/gpio.cc 2009-07-25 17:18:14.131203844 +0200 @@ -22,6 +22,7 @@ #include #include +#include int main(int argc, char **argv) diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/rx_streaming_samples.cc gnuradio-3.2/usrp2/host/apps/rx_streaming_samples.cc --- gnuradio-3.2-upstream/usrp2/host/apps/rx_streaming_samples.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/rx_streaming_samples.cc 2009-07-25 17:15:30.560205148 +0200 @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/test_mimo_tx.cc gnuradio-3.2/usrp2/host/apps/test_mimo_tx.cc --- gnuradio-3.2-upstream/usrp2/host/apps/test_mimo_tx.cc 2009-07-25 09:14:00.301437861 +0200 +++ gnuradio-3.2/usrp2/host/apps/test_mimo_tx.cc 2009-07-25 17:17:26.239258963 +0200 @@ -40,6 +40,7 @@ #include #include #include +#include typedef std::complex fcomplex; diff -Naur gnuradio-3.2-upstream/usrp2/host/apps/tx_samples.cc gnuradio-3.2/usrp2/host/apps/tx_samples.cc --- gnuradio-3.2-upstream/usrp2/host/apps/tx_samples.cc 2009-07-25 09:14:00.302450501 +0200 +++ gnuradio-3.2/usrp2/host/apps/tx_samples.cc 2009-07-25 17:16:51.973188827 +0200 @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/eth_buffer.cc gnuradio-3.2/usrp2/host/lib/eth_buffer.cc --- gnuradio-3.2-upstream/usrp2/host/lib/eth_buffer.cc 2009-07-25 09:14:00.295439060 +0200 +++ gnuradio-3.2/usrp2/host/lib/eth_buffer.cc 2009-07-25 17:08:50.711203188 +0200 @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/ethernet.cc gnuradio-3.2/usrp2/host/lib/ethernet.cc --- gnuradio-3.2-upstream/usrp2/host/lib/ethernet.cc 2009-07-25 09:14:00.296436544 +0200 +++ gnuradio-3.2/usrp2/host/lib/ethernet.cc 2009-07-25 17:09:54.200210018 +0200 @@ -25,6 +25,7 @@ #include #include +#include #include #include //#include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/ethernet.h gnuradio-3.2/usrp2/host/lib/ethernet.h --- gnuradio-3.2-upstream/usrp2/host/lib/ethernet.h 2009-07-25 09:14:00.295439060 +0200 +++ gnuradio-3.2/usrp2/host/lib/ethernet.h 2009-07-25 17:12:39.574184059 +0200 @@ -20,6 +20,7 @@ #define INCLUDED_USRP2_ETHERNET_H #include +#include #include #include diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/find.cc gnuradio-3.2/usrp2/host/lib/find.cc --- gnuradio-3.2-upstream/usrp2/host/lib/find.cc 2009-07-25 09:14:00.299443453 +0200 +++ gnuradio-3.2/usrp2/host/lib/find.cc 2009-07-25 17:13:19.549453343 +0200 @@ -29,6 +29,7 @@ #include #include #include +#include #define FIND_DEBUG 0 diff -Naur gnuradio-3.2-upstream/usrp2/host/lib/usrp2.cc gnuradio-3.2/usrp2/host/lib/usrp2.cc --- gnuradio-3.2-upstream/usrp2/host/lib/usrp2.cc 2009-07-25 09:14:00.298438985 +0200 +++ gnuradio-3.2/usrp2/host/lib/usrp2.cc 2009-07-25 17:13:54.453437924 +0200 @@ -26,6 +26,7 @@ #include #include #include +#include #include namespace usrp2 { gnuradio-3.2-libtool.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE gnuradio-3.2-libtool.patch --- Marek Mahut : This patch fixes the build when libtool fails to detect that lib diff -Naur gnuradio-3.2-upstream/gnuradio-core/src/tests/Makefile.am gnuradio-3.2/gnuradio-core/src/tests/Makefile.am --- gnuradio-3.2-upstream/gnuradio-core/src/tests/Makefile.am 2009-07-25 09:14:01.090447704 +0200 +++ gnuradio-3.2/gnuradio-core/src/tests/Makefile.am 2009-07-25 09:25:12.681195057 +0200 @@ -59,7 +59,7 @@ benchmark_dotprod -LIBGNURADIO = $(GNURADIO_CORE_LA) +LIBGNURADIO = $(GNURADIO_CORE_LA) $(top_builddir)/omnithread/libgromnithread.la LIBGNURADIOQA = $(top_builddir)/gnuradio-core/src/lib/libgnuradio-core-qa.la $(LIBGNURADIO) benchmark_dotprod_fff_SOURCES = benchmark_dotprod_fff.cc Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 19 Dec 2008 23:15:36 -0000 1.4 +++ .cvsignore 27 Jul 2009 13:08:47 -0000 1.5 @@ -1 +1 @@ -gnuradio-3.1.3.tar.gz +gnuradio-3.2.tar.gz Index: gnuradio.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/gnuradio.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gnuradio.spec 25 Jul 2009 00:59:20 -0000 1.13 +++ gnuradio.spec 27 Jul 2009 13:08:50 -0000 1.14 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: gnuradio -Version: 3.1.3 -Release: 6%{?dist} +Version: 3.2 +Release: 1%{?dist} Summary: Software defined radio framework Group: Applications/Engineering @@ -11,10 +11,8 @@ URL: http://www.gnuradio.org Source0: ftp://ftp.gnu.org/gnu/gnuradio/gnuradio-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source1: 10-usrp.rules -Patch0: gnuradio-3.1.3-libtool.bug.patch -Patch1: gnuradio-3.1.3-werror.patch -Patch2: gnuradio-3.1.3-comedilib0.8.patch -Patch3: gnuradio-3.1.3-gcc44.patch +Patch0: gnuradio-3.2-libtool.patch +Patch1: gnuradio-3.2-gcc44.patch Requires(pre): shadow-utils BuildRequires: sdcc @@ -34,6 +32,12 @@ BuildRequires: guile-devel BuildRequires: portaudio-devel BuildRequires: libtool BuildRequires: comedilib-devel +BuildRequires: gsl-devel +BuildRequires: tex(latex) +BuildRequires: numpy +BuildRequires: PyQt4-devel +BuildRequires: PyQwt-devel +BuildRequires: qwtplot3d-qt4-devel Requires: numpy Requires: wxPython Requires: scipy @@ -90,9 +94,7 @@ GNU Radio USRP headers %prep %setup -q %patch0 -p1 -b .libtool -%patch1 -p1 -b .werror -%patch2 -p1 -b .comedilib -%patch3 -p1 -b .gcc44 +%patch1 -p1 -b .gcc44 %build export PATH=%{_libexecdir}/sdcc:$PATH @@ -124,28 +126,20 @@ getent group usrp >/dev/null || groupadd %files %defattr(-,root,root,-) %{python_sitelib}/gnuradio -%exclude %{python_sitelib}/gnuradio/_usrp1.so +%exclude %{python_sitelib}/gnuradio/_usrp2.so %exclude %{python_sitelib}/gnuradio/usrp* %{_sysconfdir}/gnuradio %{_bindir}/gr_* -%exclude %{_bindir}/gr_plot*.pyc -%exclude %{_bindir}/gr_plot*.pyo -%{_libdir}/libgnuradio-core.so.* -%{_libdir}/libgnuradio-core-qa.so.* -%{_libdir}/libgr_audio_alsa.so.* -%{_libdir}/libgromnithread.so.* -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gr-audio-alsa.conf -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gnuradio-core.conf -%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/gr-wxgui.conf +%{_bindir}/find_usrps +%{_bindir}/lsusrp +%{_libdir}/lib*.so.* +%config(noreplace)%{_sysconfdir}/gnuradio/conf.d/*.conf %exclude %{python_sitelib}/gnuradio/*.la %files devel %defattr(-,root,root,-) -%{_includedir}/gnuradio -%{_libdir}/libgnuradio-core.so -%{_libdir}/libgnuradio-core-qa.so -%{_libdir}/libgr_audio_alsa.so -%{_libdir}/libgromnithread.so +%{_includedir}/* +%{_libdir}/lib*.so %{_libdir}/pkgconfig/*.pc %exclude %{_libdir}/*.la @@ -158,26 +152,6 @@ getent group usrp >/dev/null || groupadd %files examples %defattr(-,root,root,-) %{_datadir}/%{name} -%exclude %{_datadir}/%{name}/examples/atsc/*.pyc -%exclude %{_datadir}/%{name}/examples/atsc/*.pyo -%exclude %{_datadir}/%{name}/examples/audio/*.pyc -%exclude %{_datadir}/%{name}/examples/audio/*.pyo -%exclude %{_datadir}/%{name}/examples/digital/*.pyc -%exclude %{_datadir}/%{name}/examples/digital/*.pyo -%exclude %{_datadir}/%{name}/examples/hf_explorer/*.pyc -%exclude %{_datadir}/%{name}/examples/hf_explorer/*.pyo -%exclude %{_datadir}/%{name}/examples/hf_radio/*.pyc -%exclude %{_datadir}/%{name}/examples/hf_radio/*.pyo -%exclude %{_datadir}/%{name}/examples/multi-antenna/*.pyc -%exclude %{_datadir}/%{name}/examples/multi-antenna/*.pyo -%exclude %{_datadir}/%{name}/examples/multi_usrp/*.pyc -%exclude %{_datadir}/%{name}/examples/multi_usrp/*.pyo -%exclude %{_datadir}/%{name}/examples/network/*.pyc -%exclude %{_datadir}/%{name}/examples/network/*.pyo -%exclude %{_datadir}/%{name}/examples/trellis/*.pyc -%exclude %{_datadir}/%{name}/examples/trellis/*.pyo -%exclude %{_datadir}/%{name}/examples/usrp/*.pyc -%exclude %{_datadir}/%{name}/examples/usrp/*.pyo %files -n usrp %defattr(-,root,root,-) @@ -186,11 +160,9 @@ getent group usrp >/dev/null || groupadd %{_datadir}/usrp %{_libdir}/libusrp.so.* %{python_sitelib}/usrpm -%{python_sitelib}/gnuradio/_usrp1.so +%{python_sitelib}/gnuradio/_usrp2.so %{python_sitelib}/gnuradio/usrp* -%config %{_sysconfdir}/udev/rules.d/10-usrp.rules -%exclude %{_bindir}/*.pyc -%exclude %{_bindir}/*.pyo +%config(noreplace) %{_sysconfdir}/udev/rules.d/10-usrp.rules %exclude %{_libdir}/*.la %exclude %{python_sitelib}/usrpm/*.la @@ -200,8 +172,8 @@ getent group usrp >/dev/null || groupadd %{_includedir}/usrp_* %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 3.1.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Sat Jul 25 2009 Marek Mahut - 3.2-1 +- Upstream release 3.2 * Thu Mar 4 2009 Lubomir Rintel - 3.1.3-5 - Fix build with GCC 4.4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gnuradio/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 19 Dec 2008 23:15:36 -0000 1.4 +++ sources 27 Jul 2009 13:08:50 -0000 1.5 @@ -1 +1 @@ -c1eb3de26b67ddc08a61a7c2fc636203 gnuradio-3.1.3.tar.gz +9d91d0f8f2cb35bc86435784fa8e72d8 gnuradio-3.2.tar.gz --- gnuradio-3.1.2-gcc34.patch DELETED --- --- gnuradio-3.1.2-libtool.bug.patch DELETED --- --- gnuradio-3.1.3-comedilib0.8.patch DELETED --- --- gnuradio-3.1.3-gcc44.patch DELETED --- --- gnuradio-3.1.3-libtool.bug.patch DELETED --- --- gnuradio-3.1.3-werror.patch DELETED --- From rjones at fedoraproject.org Mon Jul 27 13:19:02 2009 From: rjones at fedoraproject.org (Richard W.M. Jones) Date: Mon, 27 Jul 2009 13:19:02 +0000 (UTC) Subject: rpms/ocaml-lablgl/EL-5 ocaml-lablgl.spec,1.3,1.4 Message-ID: <20090727131902.79D8211C00E8@cvs1.fedora.phx.redhat.com> Author: rjones Update of /cvs/pkgs/rpms/ocaml-lablgl/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31830 Modified Files: ocaml-lablgl.spec Log Message: +- Remove runtime requires for ocaml-labltk-devel and replace with labtk + which is the old/obsolete name still used in EL-5 branch. Index: ocaml-lablgl.spec =================================================================== RCS file: /cvs/pkgs/rpms/ocaml-lablgl/EL-5/ocaml-lablgl.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- ocaml-lablgl.spec 29 Mar 2009 07:55:55 -0000 1.3 +++ ocaml-lablgl.spec 27 Jul 2009 13:19:02 -0000 1.4 @@ -2,7 +2,7 @@ Name: ocaml-lablgl Version: 1.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: LablGL is an OpenGL interface for Objective Caml @@ -39,7 +39,7 @@ extension, or with open-source Mesa. Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} -Requires: ocaml-labltk-devel +Requires: labltk %description devel The %{name}-devel package contains libraries and signature files for @@ -142,6 +142,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Richard W.M. Jones - 1.03-8 +- Remove runtime requires for ocaml-labltk-devel and replace with labtk + which is the old/obsolete name still used in EL-5 branch. + * Wed Feb 25 2009 Fedora Release Engineering - 1.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From schwab at fedoraproject.org Mon Jul 27 13:22:46 2009 From: schwab at fedoraproject.org (schwab) Date: Mon, 27 Jul 2009 13:22:46 +0000 (UTC) Subject: rpms/glibc/devel .cvsignore, 1.275, 1.276 glibc-fedora.patch, 1.309, 1.310 glibc.spec, 1.402, 1.403 import.log, 1.18, 1.19 sources, 1.300, 1.301 Message-ID: <20090727132246.97C2B11C00E8@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv555/devel Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Log Message: 2.10.90-9 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/.cvsignore,v retrieving revision 1.275 retrieving revision 1.276 diff -u -p -r1.275 -r1.276 --- .cvsignore 23 Jul 2009 16:45:23 -0000 1.275 +++ .cvsignore 27 Jul 2009 13:22:43 -0000 1.276 @@ -1,2 +1,2 @@ -glibc-2.10-193-g9b6bf8a-fedora.tar.bz2 -glibc-2.10-193-g9b6bf8a.tar.bz2 +glibc-2.10-214-g16d2ea4-fedora.tar.bz2 +glibc-2.10-214-g16d2ea4.tar.bz2 glibc-fedora.patch: ChangeLog | 35 ++ ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ Makeconfig | 6 csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 10 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc32/____longjmp_chk.S | 8 sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/powerpc/powerpc64/____longjmp_chk.S | 8 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 timezone/zic.c | 2 59 files changed, 787 insertions(+), 467 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc-fedora.patch,v retrieving revision 1.309 retrieving revision 1.310 diff -u -p -r1.309 -r1.310 --- glibc-fedora.patch 23 Jul 2009 23:57:26 -0000 1.309 +++ glibc-fedora.patch 27 Jul 2009 13:22:45 -0000 1.310 @@ -1,6 +1,6 @@ ---- glibc-2.10-193-g9b6bf8a/ChangeLog -+++ glibc-2.10.90-6/ChangeLog -@@ -15,6 +15,11 @@ +--- glibc-2.10-214-g16d2ea4/ChangeLog ++++ glibc-2.10.90-9/ChangeLog +@@ -121,6 +121,11 @@ * sysdeps/generic/ldsodefs.h (struct rtld_global): The map element in the unique symbol hash table should not be const. @@ -12,7 +12,7 @@ 2009-07-21 Ulrich Drepper * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups. Remove -@@ -280,6 +285,16 @@ +@@ -386,6 +391,16 @@ out common code into new function get_common_indeces. Determine extended family and model for Intel processors. @@ -29,7 +29,7 @@ 2009-06-26 Ulrich Drepper * resolv/resolv.h: Define RES_SNGLKUPREOP. -@@ -8678,6 +8693,13 @@ +@@ -8784,6 +8799,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -43,7 +43,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -8973,6 +8995,10 @@ +@@ -9079,6 +9101,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -54,7 +54,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -10230,6 +10256,15 @@ +@@ -10336,6 +10362,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -70,8 +70,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-2.10-193-g9b6bf8a/ChangeLog.15 -+++ glibc-2.10.90-6/ChangeLog.15 +--- glibc-2.10-214-g16d2ea4/ChangeLog.15 ++++ glibc-2.10.90-9/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -137,8 +137,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-2.10-193-g9b6bf8a/ChangeLog.16 -+++ glibc-2.10.90-6/ChangeLog.16 +--- glibc-2.10-214-g16d2ea4/ChangeLog.16 ++++ glibc-2.10.90-9/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -310,8 +310,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-2.10-193-g9b6bf8a/Makeconfig -+++ glibc-2.10.90-6/Makeconfig +--- glibc-2.10-214-g16d2ea4/Makeconfig ++++ glibc-2.10.90-9/Makeconfig @@ -780,12 +780,12 @@ endif # The assembler can generate debug information too. ifndef ASFLAGS @@ -328,8 +328,8 @@ ifndef BUILD_CC BUILD_CC = $(CC) ---- glibc-2.10-193-g9b6bf8a/csu/Makefile -+++ glibc-2.10.90-6/csu/Makefile +--- glibc-2.10-214-g16d2ea4/csu/Makefile ++++ glibc-2.10.90-9/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -340,8 +340,8 @@ vpath initfini.c $(sysdirs) ---- glibc-2.10-193-g9b6bf8a/csu/elf-init.c -+++ glibc-2.10.90-6/csu/elf-init.c +--- glibc-2.10-214-g16d2ea4/csu/elf-init.c ++++ glibc-2.10.90-9/csu/elf-init.c @@ -63,6 +63,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -366,8 +366,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-2.10-193-g9b6bf8a/debug/tst-chk1.c -+++ glibc-2.10.90-6/debug/tst-chk1.c +--- glibc-2.10-214-g16d2ea4/debug/tst-chk1.c ++++ glibc-2.10.90-9/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -396,8 +396,8 @@ # define O 0 # else # define O 1 ---- glibc-2.10-193-g9b6bf8a/elf/ldconfig.c -+++ glibc-2.10.90-6/elf/ldconfig.c +--- glibc-2.10-214-g16d2ea4/elf/ldconfig.c ++++ glibc-2.10.90-9/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -479,8 +479,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-2.10-193-g9b6bf8a/elf/tst-stackguard1.c -+++ glibc-2.10.90-6/elf/tst-stackguard1.c +--- glibc-2.10-214-g16d2ea4/elf/tst-stackguard1.c ++++ glibc-2.10.90-9/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -505,16 +505,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-193-g9b6bf8a/include/bits/stdlib-ldbl.h -+++ glibc-2.10.90-6/include/bits/stdlib-ldbl.h +--- glibc-2.10-214-g16d2ea4/include/bits/stdlib-ldbl.h ++++ glibc-2.10.90-9/include/bits/stdlib-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-193-g9b6bf8a/include/bits/wchar-ldbl.h -+++ glibc-2.10.90-6/include/bits/wchar-ldbl.h +--- glibc-2.10-214-g16d2ea4/include/bits/wchar-ldbl.h ++++ glibc-2.10.90-9/include/bits/wchar-ldbl.h @@ -0,0 +1 @@ +#include ---- glibc-2.10-193-g9b6bf8a/include/features.h -+++ glibc-2.10.90-6/include/features.h +--- glibc-2.10-214-g16d2ea4/include/features.h ++++ glibc-2.10.90-9/include/features.h @@ -299,8 +299,13 @@ #endif @@ -531,8 +531,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-2.10-193-g9b6bf8a/intl/locale.alias -+++ glibc-2.10.90-6/intl/locale.alias +--- glibc-2.10-214-g16d2ea4/intl/locale.alias ++++ glibc-2.10.90-9/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -542,8 +542,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-2.10-193-g9b6bf8a/libio/stdio.h -+++ glibc-2.10.90-6/libio/stdio.h +--- glibc-2.10-214-g16d2ea4/libio/stdio.h ++++ glibc-2.10.90-9/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -557,8 +557,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-2.10-193-g9b6bf8a/locale/iso-4217.def -+++ glibc-2.10.90-6/locale/iso-4217.def +--- glibc-2.10-214-g16d2ea4/locale/iso-4217.def ++++ glibc-2.10.90-9/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -650,8 +650,8 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-2.10-193-g9b6bf8a/locale/programs/locarchive.c -+++ glibc-2.10.90-6/locale/programs/locarchive.c +--- glibc-2.10-214-g16d2ea4/locale/programs/locarchive.c ++++ glibc-2.10.90-9/locale/programs/locarchive.c @@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, @@ -683,8 +683,8 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-2.10-193-g9b6bf8a/localedata/Makefile -+++ glibc-2.10.90-6/localedata/Makefile +--- glibc-2.10-214-g16d2ea4/localedata/Makefile ++++ glibc-2.10.90-9/localedata/Makefile @@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ @@ -693,8 +693,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-2.10-193-g9b6bf8a/localedata/SUPPORTED -+++ glibc-2.10.90-6/localedata/SUPPORTED +--- glibc-2.10-214-g16d2ea4/localedata/SUPPORTED ++++ glibc-2.10.90-9/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -736,8 +736,8 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-2.10-193-g9b6bf8a/localedata/locales/cy_GB -+++ glibc-2.10.90-6/localedata/locales/cy_GB +--- glibc-2.10-214-g16d2ea4/localedata/locales/cy_GB ++++ glibc-2.10.90-9/localedata/locales/cy_GB @@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -752,8 +752,8 @@ END LC_TIME LC_MESSAGES ---- glibc-2.10-193-g9b6bf8a/localedata/locales/en_GB -+++ glibc-2.10.90-6/localedata/locales/en_GB +--- glibc-2.10-214-g16d2ea4/localedata/locales/en_GB ++++ glibc-2.10.90-9/localedata/locales/en_GB @@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" @@ -765,8 +765,8 @@ date_fmt "/ / " ---- glibc-2.10-193-g9b6bf8a/localedata/locales/no_NO -+++ glibc-2.10.90-6/localedata/locales/no_NO +--- glibc-2.10-214-g16d2ea4/localedata/locales/no_NO ++++ glibc-2.10.90-9/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -837,8 +837,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-2.10-193-g9b6bf8a/localedata/locales/zh_TW -+++ glibc-2.10.90-6/localedata/locales/zh_TW +--- glibc-2.10-214-g16d2ea4/localedata/locales/zh_TW ++++ glibc-2.10.90-9/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -866,8 +866,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-2.10-193-g9b6bf8a/malloc/mcheck.c -+++ glibc-2.10.90-6/malloc/mcheck.c +--- glibc-2.10-214-g16d2ea4/malloc/mcheck.c ++++ glibc-2.10.90-9/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -943,8 +943,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-2.10-193-g9b6bf8a/manual/libc.texinfo -+++ glibc-2.10.90-6/manual/libc.texinfo +--- glibc-2.10-214-g16d2ea4/manual/libc.texinfo ++++ glibc-2.10.90-9/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -954,8 +954,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-2.10-193-g9b6bf8a/misc/sys/cdefs.h -+++ glibc-2.10.90-6/misc/sys/cdefs.h +--- glibc-2.10-214-g16d2ea4/misc/sys/cdefs.h ++++ glibc-2.10.90-9/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -999,17 +999,17 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-2.10-193-g9b6bf8a/nis/nss -+++ glibc-2.10.90-6/nis/nss +--- glibc-2.10-214-g16d2ea4/nis/nss ++++ glibc-2.10.90-9/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-2.10-193-g9b6bf8a/nptl/ChangeLog -+++ glibc-2.10.90-6/nptl/ChangeLog -@@ -3590,6 +3590,15 @@ +--- glibc-2.10-214-g16d2ea4/nptl/ChangeLog ++++ glibc-2.10.90-9/nptl/ChangeLog +@@ -3604,6 +3604,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -1025,7 +1025,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4326,6 +4335,11 @@ +@@ -4340,6 +4349,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -1037,7 +1037,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6400,6 +6414,11 @@ +@@ -6414,6 +6428,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1049,8 +1049,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-2.10-193-g9b6bf8a/nptl/Makefile -+++ glibc-2.10.90-6/nptl/Makefile +--- glibc-2.10-214-g16d2ea4/nptl/Makefile ++++ glibc-2.10.90-9/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1083,8 +1083,8 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-2.10-193-g9b6bf8a/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h -+++ glibc-2.10.90-6/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +--- glibc-2.10-214-g16d2ea4/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -187,4 +187,7 @@ /* Typed memory objects are not available. */ #define _POSIX_TYPED_MEMORY_OBJECTS -1 @@ -1093,8 +1093,8 @@ +#define _XOPEN_STREAMS -1 + #endif /* bits/posix_opt.h */ ---- glibc-2.10-193-g9b6bf8a/nptl/sysdeps/unix/sysv/linux/kernel-features.h -+++ glibc-2.10.90-6/nptl/sysdeps/unix/sysv/linux/kernel-features.h +--- glibc-2.10-214-g16d2ea4/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.90-9/nptl/sysdeps/unix/sysv/linux/kernel-features.h @@ -0,0 +1,6 @@ +#include_next + @@ -1102,8 +1102,8 @@ +#ifndef __ASSUME_CLONE_THREAD_FLAGS +# define __ASSUME_CLONE_THREAD_FLAGS 1 +#endif ---- glibc-2.10-193-g9b6bf8a/nptl/tst-stackguard1.c -+++ glibc-2.10.90-6/nptl/tst-stackguard1.c +--- glibc-2.10-214-g16d2ea4/nptl/tst-stackguard1.c ++++ glibc-2.10.90-9/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1128,8 +1128,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-2.10-193-g9b6bf8a/nscd/nscd.conf -+++ glibc-2.10.90-6/nscd/nscd.conf +--- glibc-2.10-214-g16d2ea4/nscd/nscd.conf ++++ glibc-2.10.90-9/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1139,8 +1139,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-2.10-193-g9b6bf8a/nscd/nscd.init -+++ glibc-2.10.90-6/nscd/nscd.init +--- glibc-2.10-214-g16d2ea4/nscd/nscd.init ++++ glibc-2.10.90-9/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1197,8 +1197,8 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-2.10-193-g9b6bf8a/posix/Makefile -+++ glibc-2.10.90-6/posix/Makefile +--- glibc-2.10-214-g16d2ea4/posix/Makefile ++++ glibc-2.10.90-9/posix/Makefile @@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1219,8 +1219,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-2.10-193-g9b6bf8a/posix/getconf.speclist.h -+++ glibc-2.10.90-6/posix/getconf.speclist.h +--- glibc-2.10-214-g16d2ea4/posix/getconf.speclist.h ++++ glibc-2.10.90-9/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1261,8 +1261,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-2.10-193-g9b6bf8a/streams/Makefile -+++ glibc-2.10.90-6/streams/Makefile +--- glibc-2.10-214-g16d2ea4/streams/Makefile ++++ glibc-2.10.90-9/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1272,8 +1272,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-2.10-193-g9b6bf8a/sysdeps/generic/dl-cache.h -+++ glibc-2.10.90-6/sysdeps/generic/dl-cache.h +--- glibc-2.10-214-g16d2ea4/sysdeps/generic/dl-cache.h ++++ glibc-2.10.90-9/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1289,8 +1289,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-2.10-193-g9b6bf8a/sysdeps/i386/Makefile -+++ glibc-2.10.90-6/sysdeps/i386/Makefile +--- glibc-2.10-214-g16d2ea4/sysdeps/i386/Makefile ++++ glibc-2.10.90-9/sysdeps/i386/Makefile @@ -2,6 +2,8 @@ # Every i386 port in use uses gas syntax (I think). asm-CPPFLAGS += -DGAS_SYNTAX @@ -1315,8 +1315,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/Makefile -+++ glibc-2.10.90-6/sysdeps/ia64/Makefile +--- glibc-2.10-214-g16d2ea4/sysdeps/ia64/Makefile ++++ glibc-2.10.90-9/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1328,8 +1328,8 @@ endif endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/ia64libgcc.S -+++ glibc-2.10.90-6/sysdeps/ia64/ia64libgcc.S +--- glibc-2.10-214-g16d2ea4/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.90-9/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1681,8 +1681,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/ia64/libgcc-compat.c -+++ glibc-2.10.90-6/sysdeps/ia64/libgcc-compat.c +--- glibc-2.10-214-g16d2ea4/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.90-9/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1768,8 +1768,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc32/____longjmp_chk.S -+++ glibc-2.10.90-6/sysdeps/powerpc/powerpc32/____longjmp_chk.S +--- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc32/____longjmp_chk.S ++++ glibc-2.10.90-9/sysdeps/powerpc/powerpc32/____longjmp_chk.S @@ -49,8 +49,16 @@ #define CHECK_SP(reg) \ cmplw reg, r1; \ @@ -1787,8 +1787,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc64/Makefile -+++ glibc-2.10.90-6/sysdeps/powerpc/powerpc64/Makefile +--- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1797,8 +1797,8 @@ endif ifeq ($(subdir),elf) ---- glibc-2.10-193-g9b6bf8a/sysdeps/powerpc/powerpc64/____longjmp_chk.S -+++ glibc-2.10.90-6/sysdeps/powerpc/powerpc64/____longjmp_chk.S +--- glibc-2.10-214-g16d2ea4/sysdeps/powerpc/powerpc64/____longjmp_chk.S ++++ glibc-2.10.90-9/sysdeps/powerpc/powerpc64/____longjmp_chk.S @@ -32,8 +32,16 @@ #define CHECK_SP(reg) \ cmpld reg, r1; \ @@ -1816,8 +1816,8 @@ .Lok: #include <__longjmp-common.S> ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/nice.c -+++ glibc-2.10.90-6/sysdeps/unix/nice.c +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/nice.c ++++ glibc-2.10.90-9/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1832,8 +1832,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/check_pf.c -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/check_pf.c +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1849,8 +1849,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/dl-osinfo.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/dl-osinfo.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1898,8 +1898,8 @@ } else #endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/futimesat.c -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/futimesat.c +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1942,8 +1942,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/i386/clone.S -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/i386/clone.S +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1962,8 +1962,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/i386/dl-cache.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/i386/dl-cache.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -2024,8 +2024,8 @@ + } while (0) + +#include_next ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-cache.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-cache.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2058,29 +2058,29 @@ + } while (0) + #include_next ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/netlinkaccess.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/netlinkaccess.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -25,6 +25,24 @@ #include @@ -2106,8 +2106,8 @@ struct netlink_res { ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/paths.h -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/paths.h +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/paths.h @@ -62,7 +62,7 @@ #define _PATH_TTY "/dev/tty" #define _PATH_UNIX "/boot/vmlinux" @@ -2117,8 +2117,8 @@ #define _PATH_WTMP "/var/log/wtmp" /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/tcsetattr.c -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/tcsetattr.c +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/tcsetattr.c @@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) { struct __kernel_termios k_termios; @@ -2164,8 +2164,8 @@ + return retval; } libc_hidden_def (tcsetattr) ---- glibc-2.10-193-g9b6bf8a/sysdeps/unix/sysv/linux/x86_64/clone.S -+++ glibc-2.10.90-6/sysdeps/unix/sysv/linux/x86_64/clone.S +--- glibc-2.10-214-g16d2ea4/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.90-9/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret @@ -2184,8 +2184,8 @@ cfi_startproc; PSEUDO_END (BP_SYM (__clone)) ---- glibc-2.10-193-g9b6bf8a/timezone/zic.c -+++ glibc-2.10.90-6/timezone/zic.c +--- glibc-2.10-214-g16d2ea4/timezone/zic.c ++++ glibc-2.10.90-9/timezone/zic.c @@ -1921,7 +1921,7 @@ const int zonecount; if (stdrp != NULL && stdrp->r_hiyear == 2037) return; @@ -2195,25 +2195,3 @@ return; abbrvar = (stdrp == NULL) ? "" : stdrp->r_abbrvar; doabbr(result, zp->z_format, abbrvar, FALSE, TRUE); -2009-07-23 Ulrich Drepper - - * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Fix error - path when not using absolute timeout futex. - ---- libc/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S -+++ libc/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S -@@ -551,12 +551,12 @@ __pthread_cond_timedwait: - jne 53b - - cmpq 24(%rsp), %r9 -- jbe 45b -+ jbe 15f - - cmpq %rax, %r9 - ja 39b - -- cmpq $-ETIMEDOUT, %r14 -+15: cmpq $-ETIMEDOUT, %r14 - jne 8b - - jmp 99b Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/glibc.spec,v retrieving revision 1.402 retrieving revision 1.403 diff -u -p -r1.402 -r1.403 --- glibc.spec 25 Jul 2009 00:20:16 -0000 1.402 +++ glibc.spec 27 Jul 2009 13:22:45 -0000 1.403 @@ -1,4 +1,4 @@ -%define glibcsrcdir glibc-2.10-193-g9b6bf8a +%define glibcsrcdir glibc-2.10-214-g16d2ea4 %define glibcversion 2.10.90 ### glibc.spec.in follows: %define run_glibc_tests 1 @@ -24,7 +24,7 @@ Summary: The GNU libc libraries Name: glibc Version: %{glibcversion} -Release: 8.1 +Release: 9 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -321,7 +321,7 @@ BuildFlags="$BuildFlags -fasynchronous-u # Add -DNDEBUG unless using a prerelease case %{version} in *.*.9[0-9]*) ;; - *) + *) BuildFlags="$BuildFlags -DNDEBUG" ;; esac @@ -588,11 +588,11 @@ rm -f $RPM_BUILD_ROOT%{_sbindir}/rpcinfo -name gconv-modules.cache \ -printf "%%%%verify(not md5 size mtime) " \ , \ - ! -path "*/lib/debug" -printf "/%%P\n" \) + ! -path "*/lib/debug" -printf "/%%P\n" \) find $RPM_BUILD_ROOT -type d \ \( -path '*%{_prefix}/share/*' ! -path '*%{_infodir}' -o \ - -path "*%{_prefix}/include/*" -o \ - -path "*%{_prefix}/lib/locale/*" \ + -path "*%{_prefix}/include/*" -o \ + -path "*%{_prefix}/lib/locale/*" \ \) -printf "%%%%dir /%%P\n" } | { @@ -1037,6 +1037,9 @@ rm -f *.filelist* %endif %changelog +* Mon Jul 27 2009 Andreas Schwab - 2.10.90-9 +- Update from master. + * Fri Jul 24 2009 Fedora Release Engineering - 2.10.90-8.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/import.log,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- import.log 23 Jul 2009 16:45:25 -0000 1.18 +++ import.log 27 Jul 2009 13:22:45 -0000 1.19 @@ -16,3 +16,4 @@ glibc-2_10_90-1:HEAD:glibc-2.10.90-1.src glibc-2_10_90-4:HEAD:glibc-2.10.90-4.src.rpm:1248096214 glibc-2_10_90-5:HEAD:glibc-2.10.90-5.src.rpm:1248267823 glibc-2_10_90-7:HEAD:glibc-2.10.90-7.src.rpm:1248367427 +glibc-2_10_90-9:HEAD:glibc-2.10.90-9.src.rpm:1248700754 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/devel/sources,v retrieving revision 1.300 retrieving revision 1.301 diff -u -p -r1.300 -r1.301 --- sources 23 Jul 2009 16:45:25 -0000 1.300 +++ sources 27 Jul 2009 13:22:45 -0000 1.301 @@ -1,2 +1,2 @@ -bc45a5ed4138df8172ff8f2e913c8fef glibc-2.10-193-g9b6bf8a-fedora.tar.bz2 -40eb6793214d03b536f18c20783dc761 glibc-2.10-193-g9b6bf8a.tar.bz2 +1c6e81b1f2100c55b32e9c298e7cce59 glibc-2.10-214-g16d2ea4-fedora.tar.bz2 +973e7a5fc0a6273a6da70f7d36f6b8b4 glibc-2.10-214-g16d2ea4.tar.bz2 From sseago at fedoraproject.org Mon Jul 27 13:24:34 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Mon, 27 Jul 2009 13:24:34 +0000 (UTC) Subject: rpms/ovirt-server/devel ovirt-server.spec,1.2,1.3 Message-ID: <20090727132434.28B0411C00E8@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/ovirt-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2102 Modified Files: ovirt-server.spec Log Message: removed ovirt-docs dependency Index: ovirt-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/devel/ovirt-server.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- ovirt-server.spec 25 Jul 2009 21:02:23 -0000 1.2 +++ ovirt-server.spec 27 Jul 2009 13:24:33 -0000 1.3 @@ -5,7 +5,7 @@ Summary: The oVirt Server Suite Name: ovirt-server Version: 0.100 -Release: 2%{?dist}%{?extra_release} +Release: 3%{?dist}%{?extra_release} # full source URL will be added with the next oVirt release. This is a pre-release # code drop to make sure we get the package approved by f12 feature freeze. Source0: %{name}-%{version}.tar.gz @@ -40,7 +40,6 @@ Requires: ruby-libvirt >= 0.0.2 Requires: rrdtool-ruby Requires: iscsi-initiator-utils Requires: cyrus-sasl-gssapi -Requires: ovirt-docs Requires: qpidd Requires: ruby-qpid >= 0.5.776856 Requires: qpidc @@ -263,6 +262,9 @@ fi %changelog +* Mon Jul 27 2009 Scott Seago - 0.100-3 +- Removed ovirt-docs dep + * Sat Jul 25 2009 Fedora Release Engineering - 0.100-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jussilehtola at fedoraproject.org Mon Jul 27 13:49:27 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Mon, 27 Jul 2009 13:49:27 +0000 (UTC) Subject: rpms/healpix/devel healpix.spec,1.3,1.4 Message-ID: <20090727134927.81CC911C00E8@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/healpix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13459/devel Modified Files: healpix.spec Log Message: Change location of Fortran modules. Index: healpix.spec =================================================================== RCS file: /cvs/pkgs/rpms/healpix/devel/healpix.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- healpix.spec 25 Jul 2009 02:05:33 -0000 1.3 +++ healpix.spec 27 Jul 2009 13:49:27 -0000 1.4 @@ -1,6 +1,6 @@ Name: healpix Version: 2.11c -Release: 6%{?dist} +Release: 7%{?dist} Summary: Hierarchical Equal Area isoLatitude Pixelization of a sphere Group: Development/Libraries @@ -223,7 +223,9 @@ install -pm 0644 cxxinc/* $RPM_BUILD_ROO # Fortran stuff install -p f90bin/* $RPM_BUILD_ROOT%{_bindir} install -p f90lib/* $RPM_BUILD_ROOT%{_libdir} -install -pm 0644 f90inc/* $RPM_BUILD_ROOT%{_includedir}/healpix +# Modules contain API/ABI and thus architecture dependent +mkdir $RPM_BUILD_ROOT%{_fmoddir}/healpix +install -pm 0644 f90inc/* $RPM_BUILD_ROOT%{_fmoddir}/healpix %clean @@ -244,6 +246,7 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) +%doc COPYING READ_Copyrights_Licenses.txt test %{_bindir}/hp_alteralm %{_bindir}/hp_anafast %{_bindir}/hp_hotspot @@ -257,17 +260,16 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/hp_ud_grade %{_libdir}/libhealpix.so %{_libdir}/libhealpix_gif.so -%doc COPYING READ_Copyrights_Licenses.txt test %files devel %defattr(-,root,root,-) -%dir %{_includedir}/healpix -%{_includedir}/healpix/*.mod +%{_fmoddir}/healpix/ %files c++ %defattr(-,root,root,-) +%doc COPYING READ_Copyrights_Licenses.txt %{_bindir}/hp_alice2 %{_bindir}/hp_alice_test %{_bindir}/hp_alm2map_cxx @@ -293,15 +295,15 @@ rm -rf $RPM_BUILD_ROOT %files c++-devel %defattr(-,root,root,-) +%doc src/cxx/test %dir %{_includedir}/healpix %{_includedir}/healpix/*.h -%doc src/cxx/test %files -n chealpix %defattr(-,root,root,-) -%{_libdir}/libchealpix.so %doc COPYING READ_Copyrights_Licenses.txt +%{_libdir}/libchealpix.so %files -n chealpix-devel @@ -312,6 +314,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Jussi Lehtola - 2.11c-7 +- Move modules to %%{_fmoddir}. +- Add missing documentation to -c++ package. + * Fri Jul 24 2009 Fedora Release Engineering - 2.11c-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -323,14 +329,14 @@ rm -rf $RPM_BUILD_ROOT - mkdir with -p to allow short-circuit builds - Fix build with GCC 4.4 -* Sat Apr 04 2009 Jussi Lehtola - 2.11c-4 +* Sat Apr 04 2009 Jussi Lehtola - 2.11c-4 - Review fixes. - Add C++ bindings, rename C++ and Fortran binaries (general names!). * Fri Apr 03 2009 Lubomir Rintel (Fedora Astronomy) - 2.11c-3 - Build Fortran library as DSO -* Thu Mar 26 2009 Jussi Lehtola - 2.11c-2 +* Thu Mar 26 2009 Jussi Lehtola - 2.11c-2 - Add Fortran bindings. * Wed Mar 25 2009 Lubomir Rintel (Fedora Astronomy) - 2.11c-1 From jussilehtola at fedoraproject.org Mon Jul 27 13:54:37 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Mon, 27 Jul 2009 13:54:37 +0000 (UTC) Subject: rpms/healpix/devel healpix.spec,1.4,1.5 Message-ID: <20090727135437.1150911C00E8@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/healpix/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15803 Modified Files: healpix.spec Log Message: Add R: gcc-gfortran on -devel package. Index: healpix.spec =================================================================== RCS file: /cvs/pkgs/rpms/healpix/devel/healpix.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- healpix.spec 27 Jul 2009 13:49:27 -0000 1.4 +++ healpix.spec 27 Jul 2009 13:54:36 -0000 1.5 @@ -33,6 +33,7 @@ hp_, e.g. anafast is now hp_anafast. Summary: Healpix Fortran headers Group: Development/Libraries Requires: %{name} = %{version}-%{release} +Requires: gcc-gfortran %description devel This package contains the Fortran module files needed to compile against From sseago at fedoraproject.org Mon Jul 27 13:57:27 2009 From: sseago at fedoraproject.org (Scott Seago) Date: Mon, 27 Jul 2009 13:57:27 +0000 (UTC) Subject: rpms/ovirt-server/F-11 ovirt-server.spec,1.1,1.2 Message-ID: <20090727135727.D8D6B11C00E8@cvs1.fedora.phx.redhat.com> Author: sseago Update of /cvs/pkgs/rpms/ovirt-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17027 Modified Files: ovirt-server.spec Log Message: removed ovirt-docs dependency Index: ovirt-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/ovirt-server/F-11/ovirt-server.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- ovirt-server.spec 23 Jul 2009 18:16:33 -0000 1.1 +++ ovirt-server.spec 27 Jul 2009 13:57:27 -0000 1.2 @@ -5,7 +5,7 @@ Summary: The oVirt Server Suite Name: ovirt-server Version: 0.100 -Release: 1%{?dist}%{?extra_release} +Release: 3%{?dist}%{?extra_release} # full source URL will be added with the next oVirt release. This is a pre-release # code drop to make sure we get the package approved by f12 feature freeze. Source0: %{name}-%{version}.tar.gz @@ -40,7 +40,6 @@ Requires: ruby-libvirt >= 0.0.2 Requires: rrdtool-ruby Requires: iscsi-initiator-utils Requires: cyrus-sasl-gssapi -Requires: ovirt-docs Requires: qpidd Requires: ruby-qpid >= 0.5.776856 Requires: qpidc @@ -263,6 +262,12 @@ fi %changelog +* Mon Jul 27 2009 Scott Seago - 0.100-3 +- Removed ovirt-docs dep + +* Sat Jul 25 2009 Fedora Release Engineering - 0.100-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jul 17 2009 Scott Seago - 0.100-1 - rpmlint fixes for Fedora 12 inclusion From mathstuf at fedoraproject.org Mon Jul 27 14:03:21 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Mon, 27 Jul 2009 14:03:21 +0000 (UTC) Subject: rpms/kde-plasma-networkmanagement/devel kde-plasma-networkmanagement-0.1-version-check.patch, NONE, 1.1 kde-plasma-networkmanagement.spec, 1.13, 1.14 sources, 1.8, 1.9 Message-ID: <20090727140321.0E25411C00E8@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kde-plasma-networkmanagement/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19926 Modified Files: kde-plasma-networkmanagement.spec sources Added Files: kde-plasma-networkmanagement-0.1-version-check.patch Log Message: New snapshot and patch for building kde-plasma-networkmanagement-0.1-version-check.patch: tooltipbuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE kde-plasma-networkmanagement-0.1-version-check.patch --- diff -r -U5 monolithic/tooltipbuilder.cpp monolithic/tooltipbuilder.cpp --- monolithic/tooltipbuilder.cpp 2009-07-25 02:58:28.000000000 -0400 +++ monolithic/tooltipbuilder.cpp 2009-07-27 09:06:26.264605509 -0400 @@ -279,11 +279,11 @@ html = QString("

%1: %2
comment_author_url; ?>comment_author_url; ?>
comment_author_email ) { printf( __( 'E-mail (%s):' ), get_comment_author_email_link( __( 'send e-mail' ), '', '' ) ); } else { _e( 'E-mail:' ); } ?>
" . __('visit site') . ""; + if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) { + $link = '' . __('visit site') . ''; printf( __( 'URL (%s):' ), apply_filters('get_comment_author_link', $link ) ); } else { _e( 'URL:' ); } ?>
diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index e89ea83..075da6a 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1960,9 +1960,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true, $author_url = get_comment_author_url(); if ( 'http://' == $author_url ) $author_url = ''; - $author_url_display = $author_url; - $author_url_display = str_replace('http://www.', '', $author_url_display); - $author_url_display = str_replace('http://', '', $author_url_display); + $author_url_display = preg_replace('|http://(www\.)?|i', '', $author_url); if ( strlen($author_url_display) > 50 ) $author_url_display = substr($author_url_display, 0, 49) . '...'; diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index a4a126b..f31f6b5 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -193,7 +193,9 @@ function comment_author_IP() { */ function get_comment_author_url() { global $comment; - return apply_filters('get_comment_author_url', $comment->comment_author_url); + $url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url; + $url = clean_url( $url, array('http', 'https') ); + return apply_filters('get_comment_author_url', $url); } /** @@ -809,8 +811,28 @@ function comments_template( $file = '/comments.php', $separate_comments = false $file = '/comments.php'; $req = get_option('require_name_email'); + + /** + * Comment author information fetched from the comment cookies. + * + * @uses wp_get_current_commenter() + */ $commenter = wp_get_current_commenter(); - extract($commenter, EXTR_SKIP); + + /** + * The name of the current comment author escaped for use in attributes. + */ + $comment_author = $commenter['comment_author']; // Escaped by sanitize_comment_cookies() + + /** + * The email address of the current comment author escaped for use in attributes. + */ + $comment_author_email = $commenter['comment_author_email']; // Escaped by sanitize_comment_cookies() + + /** + * The url of the current comment author escaped for use in attributes. + */ + $comment_author_url = clean_url($commenter['comment_author_url']); /** @todo Use API instead of SELECTs. */ if ( $user_ID) { Index: wordpress-mu.spec =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/EL-5/wordpress-mu.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- wordpress-mu.spec 10 Jul 2009 18:40:36 -0000 1.8 +++ wordpress-mu.spec 30 Jul 2009 16:40:58 -0000 1.9 @@ -2,13 +2,14 @@ Summary: WordPress-MU multi-user bloggin URL: http://mu.wordpress.org/latest.tar.gz Name: wordpress-mu Version: 2.7 -Release: 6%{?dist} +Release: 8%{?dist} Group: Applications/Publishing License: GPLv2 Source0: %{name}-%{version}.tar.gz Source1: wordpress-mu-httpd-conf Source2: README.fedora.wordpress-mu Patch0: cve-2009-2334.patch +Patch1: 2.8.2-commentor-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: php >= 4.1.0, httpd, php-mysql BuildArch: noarch @@ -20,6 +21,7 @@ one instance to serve multiple users. %prep %setup -q -n wordpress-mu %patch0 -p1 -b .patch1 +%patch1 -p1 -b .patch2 # disable-wordpress-core-update, updates are always installed via rpm # @@ -100,6 +102,9 @@ rm -rf %{buildroot} %dir %{_sysconfdir}/wordpress-mu %changelog +* Thu Jul 30 2009 Bret McMillan - 2.7-8 +- fix backported for 2.8.2 comment author XSS vulnerability + * Fri Jul 10 2009 Bret McMillan - 2.7-6 - Patch for CVE-2009-2334 From langel at fedoraproject.org Thu Jul 30 16:43:08 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Thu, 30 Jul 2009 16:43:08 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch,1.2,1.3 Message-ID: <20090730164308.7796E11C00D3@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14325 Modified Files: java-1.6.0-openjdk-x11.patch Log Message: Updated patch java-1.6.0-openjdk-x11.patch: awt/awt_GraphicsEnv.h | 3 ++- java2d/x11/X11SurfaceData.h | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-x11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-x11.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- java-1.6.0-openjdk-x11.patch 30 Jul 2009 15:42:27 -0000 1.2 +++ java-1.6.0-openjdk-x11.patch 30 Jul 2009 16:43:08 -0000 1.3 @@ -10,3 +10,19 @@ extern int XShmQueryExtension(); +--- old/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.h 2009-07-30 11:39:44.000000000 -0400 ++++ openjdk/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.h 2009-07-30 12:40:27.000000000 -0400 +@@ -73,6 +73,13 @@ + typedef void ReleasePixmapBgFunc(JNIEnv *env, + X11SDOps *xsdo); + ++typedef struct { ++ ShmSeg shmseg; /* resource id */ ++ int shmid; /* kernel id */ ++ char *shmaddr; /* address in client */ ++ Bool readOnly; /* how the server should attach it */ ++} XShmSegmentInfo; ++ + + #ifdef MITSHM + typedef struct { From langel at fedoraproject.org Thu Jul 30 16:52:40 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Thu, 30 Jul 2009 16:52:40 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch,1.3,1.4 Message-ID: <20090730165240.BA24211C00D3@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18252 Modified Files: java-1.6.0-openjdk-x11.patch Log Message: Fixed patch java-1.6.0-openjdk-x11.patch: awt_GraphicsEnv.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-x11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-x11.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- java-1.6.0-openjdk-x11.patch 30 Jul 2009 16:43:08 -0000 1.3 +++ java-1.6.0-openjdk-x11.patch 30 Jul 2009 16:52:40 -0000 1.4 @@ -1,5 +1,5 @@ ---- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 -+++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-29 13:38:35.000000000 -0400 +--- awt_GraphicsEnv.h 2009-07-30 12:51:18.000000000 -0400 ++++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-30 12:51:41.000000000 -0400 @@ -41,7 +41,8 @@ #include @@ -10,19 +10,17 @@ extern int XShmQueryExtension(); ---- old/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.h 2009-07-30 11:39:44.000000000 -0400 -+++ openjdk/jdk/src/solaris/native/sun/java2d/x11/X11SurfaceData.h 2009-07-30 12:40:27.000000000 -0400 -@@ -73,6 +73,13 @@ - typedef void ReleasePixmapBgFunc(JNIEnv *env, - X11SDOps *xsdo); +@@ -49,6 +50,13 @@ + void resetXShmAttachFailed(); + jboolean isXShmAttachFailed(); +typedef struct { -+ ShmSeg shmseg; /* resource id */ -+ int shmid; /* kernel id */ -+ char *shmaddr; /* address in client */ -+ Bool readOnly; /* how the server should attach it */ ++ ShmSeg shmseg; /* resource id */ ++ int shmid; /* kernel id */ ++ char *shmaddr; /* address in client */ ++ Bool readOnly; /* how the server should attach it */ +} XShmSegmentInfo; + + #endif /* MITSHM */ - #ifdef MITSHM - typedef struct { + /* fieldIDs for X11GraphicsConfig fields that may be accessed from C */ From s4504kr at fedoraproject.org Thu Jul 30 16:53:51 2009 From: s4504kr at fedoraproject.org (Jochen Schmitt) Date: Thu, 30 Jul 2009 16:53:51 +0000 (UTC) Subject: rpms/aplus-fsf/devel aplus-fsf-lpath.el,1.1,1.2 Message-ID: <20090730165351.2A26411C00D3@cvs1.fedora.phx.redhat.com> Author: s4504kr Update of /cvs/extras/rpms/aplus-fsf/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18681 Modified Files: aplus-fsf-lpath.el Log Message: Add missing paranthesis in lpath.el Index: aplus-fsf-lpath.el =================================================================== RCS file: /cvs/extras/rpms/aplus-fsf/devel/aplus-fsf-lpath.el,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- aplus-fsf-lpath.el 30 Jul 2009 16:33:06 -0000 1.1 +++ aplus-fsf-lpath.el 30 Jul 2009 16:53:51 -0000 1.2 @@ -3,4 +3,4 @@ ;; Make sure we get the right files. (setq load-path (cons "." load-path) - byte-compile-warnings nil + byte-compile-warnings nil) From mathstuf at fedoraproject.org Thu Jul 30 16:57:41 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 16:57:41 +0000 (UTC) Subject: rpms/kobby/F-11 kobby.spec,1.1,1.2 Message-ID: <20090730165741.ABC2E11C00D3@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19919 Modified Files: kobby.spec Log Message: Fix summary Index: kobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/kobby/F-11/kobby.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kobby.spec 30 Jul 2009 00:28:04 -0000 1.1 +++ kobby.spec 30 Jul 2009 16:57:41 -0000 1.2 @@ -1,7 +1,7 @@ Name: kobby Version: 1.0 -Release: 0.1.b3%{?dist} -Summary: Collaborative editor for KDE +Release: 0.2.b3%{?dist} +Summary: Collaborative editor using the infinote protocol Group: Applications/Editors License: GPLv2+ @@ -48,5 +48,8 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Ben Boeckel 1.0-0.2.b3 +- Fix summary + * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package From mathstuf at fedoraproject.org Thu Jul 30 16:59:51 2009 From: mathstuf at fedoraproject.org (Ben Boeckel) Date: Thu, 30 Jul 2009 16:59:51 +0000 (UTC) Subject: rpms/kobby/F-10 kobby.spec,1.1,1.2 Message-ID: <20090730165951.8F41E11C00D3@cvs1.fedora.phx.redhat.com> Author: mathstuf Update of /cvs/pkgs/rpms/kobby/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20573 Modified Files: kobby.spec Log Message: Fix summary Index: kobby.spec =================================================================== RCS file: /cvs/pkgs/rpms/kobby/F-10/kobby.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- kobby.spec 30 Jul 2009 00:29:32 -0000 1.1 +++ kobby.spec 30 Jul 2009 16:59:51 -0000 1.2 @@ -1,7 +1,7 @@ Name: kobby Version: 1.0 -Release: 0.1.b3%{?dist} -Summary: Collaborative editor for KDE +Release: 0.2.b3%{?dist} +Summary: Collaborative editor using the infinote protocol Group: Applications/Editors License: GPLv2+ @@ -48,5 +48,8 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Ben Boeckel 1.0-0.2.b3 +- Fix summary + * Sat Jun 20 2009 Ben Boeckel 1.0-0.1.b3 - Initial package From markmc at fedoraproject.org Thu Jul 30 17:02:51 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Thu, 30 Jul 2009 17:02:51 +0000 (UTC) Subject: rpms/libvirt/devel libvirt-fix-permissions-problem-starting-qemu.patch, NONE, 1.1 libvirt.spec, 1.160, 1.161 Message-ID: <20090730170251.5F9B511C00D3@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21444 Modified Files: libvirt.spec Added Files: libvirt-fix-permissions-problem-starting-qemu.patch Log Message: * Thu Jul 30 2009 Mark McLoughlin - 0.7.0-0.8.gite195b43 - Add patch from upstream to fix qemu pidfile perms problem libvirt-fix-permissions-problem-starting-qemu.patch: qemu_driver.c | 2 +- util.c | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) --- NEW FILE libvirt-fix-permissions-problem-starting-qemu.patch --- From: "Daniel P. Berrange" Subject: PATCH: Fix permissions problem starting QEMU There is a minor bug when running QEMU non-root, and having capng enabled. libvirt is unable to write the PID file in /var/run/libvirt/qemu, since its now owned by 'qemu', but libvirtd has dropped all capabilties at this point. The fix is to delay dropping capabilities until after the PID file has been created. We should also be sure to kill the child if writing the PID file fails * src/util.c: Don't drop capabilities until after the PID file has been written. Kill off child if writing the PID file fails * src/qemu_driver.c: Remove bogus trailing '/' in state dir diff --git a/src/qemu_driver.c b/src/qemu_driver.c index 9fb8506..26897d3 100644 --- a/src/qemu_driver.c +++ b/src/qemu_driver.c @@ -468,7 +468,7 @@ qemudStartup(int privileged) { goto out_of_memory; if (virAsprintf(&qemu_driver->stateDir, - "%s/run/libvirt/qemu/", LOCAL_STATE_DIR) == -1) + "%s/run/libvirt/qemu", LOCAL_STATE_DIR) == -1) goto out_of_memory; } else { uid_t uid = geteuid(); diff --git a/src/util.c b/src/util.c index ee64b28..39aae24 100644 --- a/src/util.c +++ b/src/util.c @@ -513,12 +513,6 @@ __virExec(virConnectPtr conn, if ((hook)(data) != 0) _exit(1); - /* The hook above may need todo something privileged, so - * we delay clearing capabilities until now */ - if ((flags & VIR_EXEC_CLEAR_CAPS) && - virClearCapabilities() < 0) - _exit(1); - /* Daemonize as late as possible, so the parent process can detect * the above errors with wait* */ if (flags & VIR_EXEC_DAEMON) { @@ -543,6 +537,9 @@ __virExec(virConnectPtr conn, if (pid > 0) { if (pidfile && virFileWritePidPath(pidfile,pid)) { + kill(pid, SIGTERM); + usleep(500*1000); + kill(pid, SIGTERM); virReportSystemError(conn, errno, "%s", _("could not write pidfile")); _exit(1); @@ -551,6 +548,12 @@ __virExec(virConnectPtr conn, } } + /* The steps above may need todo something privileged, so + * we delay clearing capabilities until the last minute */ + if ((flags & VIR_EXEC_CLEAR_CAPS) && + virClearCapabilities() < 0) + _exit(1); + if (envp) execve(argv[0], (char **) argv, (char**)envp); else Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.160 retrieving revision 1.161 diff -u -p -r1.160 -r1.161 --- libvirt.spec 30 Jul 2009 11:07:16 -0000 1.160 +++ libvirt.spec 30 Jul 2009 17:02:51 -0000 1.161 @@ -78,11 +78,14 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.7.gite195b43%{?dist}%{?extra_release} +Release: 0.8.gite195b43%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.6.gite195b43.tar.gz +# Should be in 0.7.0 +Patch01: libvirt-fix-permissions-problem-starting-qemu.patch + # Temporary hack till PulseAudio autostart problems are sorted # out when SELinux enforcing (bz 486112) Patch200: libvirt-0.6.4-svirt-sound.patch @@ -252,6 +255,8 @@ of recent versions of Linux (and other O %prep %setup -q +%patch01 -p1 + %patch200 -p0 %build @@ -612,6 +617,9 @@ fi %endif %changelog +* Thu Jul 30 2009 Mark McLoughlin - 0.7.0-0.8.gite195b43 +- Add patch from upstream to fix qemu pidfile perms problem + * Thu Jul 30 2009 Daniel P. Berrange - 0.7.0-0.7.gite195b43 - Create qemu/kvm user & group to fix upgrades From slankes at fedoraproject.org Thu Jul 30 17:12:02 2009 From: slankes at fedoraproject.org (Sven Lankes) Date: Thu, 30 Jul 2009 17:12:02 +0000 (UTC) Subject: rpms/kde-plasma-stasks/devel kde-plasma-stasks.spec,1.4,1.5 Message-ID: <20090730171202.94C1E11C00D3@cvs1.fedora.phx.redhat.com> Author: slankes Update of /cvs/pkgs/rpms/kde-plasma-stasks/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24609 Modified Files: kde-plasma-stasks.spec Log Message: * Mon Jul 30 2009 Sven Lankes 0.5.1-6 - Rebuild to fix changelog dates that broke mass rebuild Index: kde-plasma-stasks.spec =================================================================== RCS file: /cvs/pkgs/rpms/kde-plasma-stasks/devel/kde-plasma-stasks.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- kde-plasma-stasks.spec 25 Jul 2009 04:23:52 -0000 1.4 +++ kde-plasma-stasks.spec 30 Jul 2009 17:12:02 -0000 1.5 @@ -1,6 +1,6 @@ Name: kde-plasma-stasks Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Alternate Task-Switcher plasma applet Group: User Interface/Desktops @@ -44,10 +44,13 @@ rm -rf %{buildroot} %doc COPYING README %changelog +* Mon Jul 30 2009 Sven Lankes 0.5.1-6 +- Rebuild to fix changelog dates that broke mass rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Mon Jul 26 2009 Sven Lankes 0.5.1-4 +* Mon Jul 20 2009 Sven Lankes 0.5.1-4 - Really fix it for KDE 4.3 * Mon Jun 29 2009 Sven Lankes 0.5.1-3 From corsepiu at fedoraproject.org Thu Jul 30 17:22:50 2009 From: corsepiu at fedoraproject.org (corsepiu) Date: Thu, 30 Jul 2009 17:22:50 +0000 (UTC) Subject: rpms/perl-Gtk2-Ex-Simple-List/devel perl-Gtk2-Ex-Simple-List.spec, 1.5, 1.6 Message-ID: <20090730172250.DD1A811C00D3@cvs1.fedora.phx.redhat.com> Author: corsepiu Update of /cvs/pkgs/rpms/perl-Gtk2-Ex-Simple-List/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28535 Modified Files: perl-Gtk2-Ex-Simple-List.spec Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.50-6 - Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). Index: perl-Gtk2-Ex-Simple-List.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Gtk2-Ex-Simple-List/devel/perl-Gtk2-Ex-Simple-List.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Gtk2-Ex-Simple-List.spec 26 Jul 2009 06:21:04 -0000 1.5 +++ perl-Gtk2-Ex-Simple-List.spec 30 Jul 2009 17:22:50 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Gtk2-Ex-Simple-List Version: 0.50 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple interface to Gtk2's complex MVC list widget License: LGPLv2+ Group: Development/Libraries @@ -9,6 +9,7 @@ Source0: http://www.cpan.org/auth BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch +BuildRequires: perl(Glib::MakeHelper) BuildRequires: perl(Gtk2) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -49,6 +50,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Ralf Cors?pius - 0.50-6 +- Fix mass rebuild breakdown: Add BR: perl(Glib::MakeHelper). + * Sat Jul 25 2009 Fedora Release Engineering - 0.50-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From langel at fedoraproject.org Thu Jul 30 17:26:25 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Thu, 30 Jul 2009 17:26:25 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch,1.4,1.5 Message-ID: <20090730172625.AD18011C00D3@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29503 Modified Files: java-1.6.0-openjdk-x11.patch Log Message: * Thu Jul 30 2009 Lillian Angel - 1:1.6.0-27.b16 - java-1.6.0-openjdk-x11.patch updated. java-1.6.0-openjdk-x11.patch: awt_GraphicsEnv.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-x11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-x11.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- java-1.6.0-openjdk-x11.patch 30 Jul 2009 16:52:40 -0000 1.4 +++ java-1.6.0-openjdk-x11.patch 30 Jul 2009 17:26:25 -0000 1.5 @@ -1,16 +1,18 @@ ---- awt_GraphicsEnv.h 2009-07-30 12:51:18.000000000 -0400 -+++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-30 12:51:41.000000000 -0400 -@@ -41,7 +41,8 @@ +--- /notnfs/langel/jdk6-orig/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 ++++ icedtea6-1.5/openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-30 13:25:52.000000000 -0400 +@@ -41,7 +41,10 @@ #include #include -#include +#include +#include ++ ++#define ShmSeg CARD32 extern int XShmQueryExtension(); -@@ -49,6 +50,13 @@ +@@ -49,6 +52,14 @@ void resetXShmAttachFailed(); jboolean isXShmAttachFailed(); @@ -21,6 +23,7 @@ + Bool readOnly; /* how the server should attach it */ +} XShmSegmentInfo; + ++#undef ShmSeg #endif /* MITSHM */ /* fieldIDs for X11GraphicsConfig fields that may be accessed from C */ From mtasaka at fedoraproject.org Thu Jul 30 17:31:18 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 17:31:18 +0000 (UTC) Subject: rpms/rubygem-rails/devel rubygem-rails.spec,1.14,1.15 Message-ID: <20090730173118.2A7BF11C00D3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31391 Modified Files: rubygem-rails.spec Log Message: * Fri Jul 31 2009 Mamoru Tasaka - Restore some changes Index: rubygem-rails.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rails/devel/rubygem-rails.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- rubygem-rails.spec 26 Jul 2009 10:42:17 -0000 1.14 +++ rubygem-rails.spec 30 Jul 2009 17:31:17 -0000 1.15 @@ -7,15 +7,14 @@ Summary: Web-application framework Name: rubygem-%{gemname} Version: 2.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Languages License: MIT URL: http://www.rubyonrails.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(rubygems) >= 1.1.1 -Requires: rubygem(rake) >= 0.7.2 -Requires: rubygem(rack) >= 1.0.0 +Requires: rubygem(rake) >= 0.8.3 Requires: rubygem(activesupport) = %{version} Requires: rubygem(activerecord) = %{version} Requires: rubygem(actionpack) = %{version} @@ -23,7 +22,6 @@ Requires: rubygem(actionmailer) = %{vers Requires: rubygem(activeresource) = %{version} BuildRequires: rubygems -BuildRequires: rubygem(rack) >= 1.0.0 BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} @@ -42,6 +40,7 @@ Oracle with eRuby- or Builder-based temp rm -rf %{buildroot} mkdir -p %{buildroot}%{gemdir} gem install --local --install-dir %{buildroot}%{gemdir} \ + -V \ --force %{SOURCE0} mkdir -p %{buildroot}/%{_bindir} mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir} @@ -51,22 +50,26 @@ find %{buildroot}%{geminstdir}/bin -type # Cleanup some upstream packaging oddities, mostly to make rpmlint happy sed -i '1i#!/usr/bin/ruby\n' %{buildroot}%{geminstdir}/bin/rails +# ref: bug 496480 for file in `find %{buildroot}/%{geminstdir}/ -type f -perm /a+x`; do - sed -i -e '1c#!/usr/bin/ruby' $file + sed -i -e '1s|%{_bindir}/env ruby|%{_bindir}/ruby|' $file chmod 755 $file done # Remove backup files find %{buildroot}/%{geminstdir} -type f -name "*~" -delete -# Delete zero-length files -find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; +# Don't delete zero-length files (bug 496480) +#find %{buildroot}/%{geminstdir} -type f -size 0c -exec rm -rvf {} \; # Fix anything executable that does not have a shebang for file in `find %{buildroot}/%{geminstdir} -type f -perm /a+x`; do [ -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 644 $file done +# For sure... +find %{buildroot} -name \*.gem | xargs chmod 0644 + # Find files with a shebang that do not have executable permissions for file in `find %{buildroot}/%{geminstdir} -type f ! -perm /a+x -name "*.rb"`; do [ ! -z "`head -n 1 $file | grep \"^#!/\"`" ] && chmod -v 755 $file @@ -105,9 +108,18 @@ rm -rf %{buildroot} %changelog +* Fri Jul 31 2009 Mamoru Tasaka +- Restore some changes + * Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 - New upstream version +* Wed Jul 24 2009 Scott Seago - 2.3.2-3 +- Remove the 'delete zero length files' bit, as some of these are needed. + +* Wed May 6 2009 David Lutterkort - 2.3.2-2 +- Fix replacement of shebang lines; broke scripts/generate (bz 496480) + * Mon Mar 16 2009 Jeroen van Meeuwen - 2.3.2-1 - New upstream version From mtasaka at fedoraproject.org Thu Jul 30 17:32:05 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 17:32:05 +0000 (UTC) Subject: rpms/rubygem-rails/devel rubygem-rails.spec,1.15,1.16 Message-ID: <20090730173205.B477611C00D3@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/rubygem-rails/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31630 Modified Files: rubygem-rails.spec Log Message: A bit more... Index: rubygem-rails.spec =================================================================== RCS file: /cvs/extras/rpms/rubygem-rails/devel/rubygem-rails.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- rubygem-rails.spec 30 Jul 2009 17:31:17 -0000 1.15 +++ rubygem-rails.spec 30 Jul 2009 17:32:05 -0000 1.16 @@ -108,7 +108,7 @@ rm -rf %{buildroot} %changelog -* Fri Jul 31 2009 Mamoru Tasaka +* Fri Jul 31 2009 Mamoru Tasaka - 2.3.3-2 - Restore some changes * Sun Jul 26 2009 Jeroen van Meeuwen - 2.3.3-1 From steved at fedoraproject.org Thu Jul 30 17:38:57 2009 From: steved at fedoraproject.org (Steve Dickson) Date: Thu, 30 Jul 2009 17:38:57 +0000 (UTC) Subject: rpms/nfs4-acl-tools/devel nfs4-acl-tools.spec,1.7,1.8 Message-ID: <20090730173857.49AE611C00D3@cvs1.fedora.phx.redhat.com> Author: steved Update of /cvs/pkgs/rpms/nfs4-acl-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1163 Modified Files: nfs4-acl-tools.spec Log Message: Change Group in spec file (bz 512580) Index: nfs4-acl-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/nfs4-acl-tools/devel/nfs4-acl-tools.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- nfs4-acl-tools.spec 25 Jul 2009 19:18:24 -0000 1.7 +++ nfs4-acl-tools.spec 30 Jul 2009 17:38:55 -0000 1.8 @@ -1,8 +1,8 @@ Name: nfs4-acl-tools Version: 0.3.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The nfs4 ACL tools -Group: System Environment/Tools +Group: Applications/System License: BSD URL: http://www.citi.umich.edu/projects/nfsv4/linux/ @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_mandir}/man5/* %changelog +* Thu Jul 30 2009 Steve Dickson - 0.3.3-4 +- Change Group in spec file (bz 512580) + * Sat Jul 25 2009 Fedora Release Engineering - 0.3.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From langel at fedoraproject.org Thu Jul 30 17:40:01 2009 From: langel at fedoraproject.org (Lillian Angel) Date: Thu, 30 Jul 2009 17:40:01 +0000 (UTC) Subject: rpms/java-1.6.0-openjdk/devel java-1.6.0-openjdk-x11.patch,1.5,1.6 Message-ID: <20090730174001.E8F6311C04DE@cvs1.fedora.phx.redhat.com> Author: langel Update of /cvs/pkgs/rpms/java-1.6.0-openjdk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1715 Modified Files: java-1.6.0-openjdk-x11.patch Log Message: Fixed paths in patch java-1.6.0-openjdk-x11.patch: awt_GraphicsEnv.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) Index: java-1.6.0-openjdk-x11.patch =================================================================== RCS file: /cvs/pkgs/rpms/java-1.6.0-openjdk/devel/java-1.6.0-openjdk-x11.patch,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- java-1.6.0-openjdk-x11.patch 30 Jul 2009 17:26:25 -0000 1.5 +++ java-1.6.0-openjdk-x11.patch 30 Jul 2009 17:40:01 -0000 1.6 @@ -1,5 +1,5 @@ ---- /notnfs/langel/jdk6-orig/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 -+++ icedtea6-1.5/openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-30 13:25:52.000000000 -0400 +--- old/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-17 10:36:09.000000000 -0400 ++++ openjdk/jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.h 2009-07-30 13:25:52.000000000 -0400 @@ -41,7 +41,10 @@ #include From pkgdb at fedoraproject.org Thu Jul 30 17:42:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:42:50 +0000 Subject: [pkgdb] libtool: jakub has requested commit Message-ID: <20090730174250.900AA10F889@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on libtool (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libtool From pkgdb at fedoraproject.org Thu Jul 30 17:43:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:43:09 +0000 Subject: [pkgdb] libtool: jakub has requested commit Message-ID: <20090730174309.907A110F89D@bastion2.fedora.phx.redhat.com> jakub has requested the commit acl on libtool (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libtool From ltinkl at fedoraproject.org Thu Jul 30 17:46:54 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 30 Jul 2009 17:46:54 +0000 (UTC) Subject: rpms/akonadi/F-11 .cvsignore, 1.10, 1.11 akonadi.spec, 1.32, 1.33 sources, 1.10, 1.11 Message-ID: <20090730174654.9BC6011C0417@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/akonadi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4703/F-11 Modified Files: .cvsignore akonadi.spec sources Log Message: Akonadi 1.2.0, to go with KDE 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-11/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 30 Apr 2009 20:46:14 -0000 1.10 +++ .cvsignore 30 Jul 2009 17:46:54 -0000 1.11 @@ -1 +1 @@ -akonadi-1.1.2.tar.bz2 +akonadi-1.2.0.tar.bz2 Index: akonadi.spec =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-11/akonadi.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- akonadi.spec 6 May 2009 14:01:09 -0000 1.32 +++ akonadi.spec 30 Jul 2009 17:46:54 -0000 1.33 @@ -1,19 +1,21 @@ Summary: PIM Storage Service Name: akonadi -Version: 1.1.2 +Version: 1.2.0 Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://download.akonadi-project.org/ -Source0: http://download.akonadi-project.org/akonadi-%{version}.tar.bz2 +Source0: http://download.akonadi-project.org/akonadi-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # shrink default initial db size a bit (approx 140mb->28mb) %define mysql_conf_timestamp 20090220 Patch1: akonadi-1.1.1-mysql_conf.patch +## upstream patches + BuildRequires: cmake >= 2.6.0 BuildRequires: qt4-devel >= 4.4 BuildRequires: automoc4 @@ -23,13 +25,13 @@ BuildRequires: mysql-server BuildRequires: libxslt BuildRequires: shared-mime-info BuildRequires: boost-devel +BuildRequires: soprano-devel # when/if akonadi grows support for other backends, consider splitting # these similar to how phonon is done currently. Requires: qt4-mysql # not *strictly* required, but we need a functional default configuration -Requires(hint): mysql-server - +Requires: mysql-server Requires(postun): /sbin/ldconfig %description @@ -71,6 +73,7 @@ make %{?_smp_mflags} -C %{_target_platfo %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform} + mkdir -p $RPM_BUILD_ROOT%{_datadir}/akonadi/agents touch -d %{mysql_conf_timestamp} $RPM_BUILD_ROOT%{_sysconfdir}/akonadi/mysql-local.conf @@ -112,11 +115,30 @@ fi %{_includedir}/akonadi/ %{_libdir}/pkgconfig/akonadi.pc %{_libdir}/libakonadi*.so +%{_libdir}/cmake/Akonadi/ %changelog -* Wed May 06 2009 Rex Dieter - 1.1.2-2 -- cleanup %%files, dir-owner ship a bit +* Thu Jul 30 2009 Luk?? Tinkl - 1.2.0-1 +- Akonadi 1.2.0 + +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.95-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jun 25 2009 Than Ngo - 1.1.95-1 +- 1.1.95 + +* Wed Jun 03 2009 Rex Dieter 1.1.90-1 +- akonadi-1.1.90 + +* Tue May 26 2009 Rex Dieter 1.1.85-3 +- akonadi.pc.cmake: s/AKONADI_LIB_VERSION_STRING/AKONADI_VERSION_STRING/ + +* Tue May 12 2009 Than Ngo 1.1.85-2 +- fix rpm file list + +* Wed May 06 2009 Rex Dieter - 1.1.85-1 +- akonadi-1.1.85 * Thu Apr 30 2009 Rex Dieter - 1.1.2-1 - akonadi-1.1.2 Index: sources =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 30 Apr 2009 20:46:14 -0000 1.10 +++ sources 30 Jul 2009 17:46:54 -0000 1.11 @@ -1 +1 @@ -5651b02358f7d2f1c0954dfd31feafb1 akonadi-1.1.2.tar.bz2 +4b04ab0b4670e1133307f7b82af46ce1 akonadi-1.2.0.tar.bz2 From ltinkl at fedoraproject.org Thu Jul 30 17:46:54 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 30 Jul 2009 17:46:54 +0000 (UTC) Subject: rpms/akonadi/F-10 .cvsignore, 1.7, 1.8 akonadi.spec, 1.20, 1.21 sources, 1.7, 1.8 Message-ID: <20090730174654.7351911C00D3@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/akonadi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4703/F-10 Modified Files: .cvsignore akonadi.spec sources Log Message: Akonadi 1.2.0, to go with KDE 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 3 May 2009 02:57:35 -0000 1.7 +++ .cvsignore 30 Jul 2009 17:46:54 -0000 1.8 @@ -1 +1 @@ -akonadi-1.1.2.tar.bz2 +akonadi-1.2.0.tar.bz2 Index: akonadi.spec =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-10/akonadi.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- akonadi.spec 3 May 2009 02:57:35 -0000 1.20 +++ akonadi.spec 30 Jul 2009 17:46:54 -0000 1.21 @@ -1,20 +1,20 @@ Summary: PIM Storage Service Name: akonadi -Version: 1.1.2 +Version: 1.2.0 Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://download.akonadi-project.org/ -Source0: http://download.akonadi-project.org/akonadi-%{version}.tar.bz2 +Source0: http://download.akonadi-project.org/akonadi-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # shrink default initial db size a bit (approx 140mb->28mb) %define mysql_conf_timestamp 20090220 Patch1: akonadi-1.1.1-mysql_conf.patch -## upstream +## upstream patches BuildRequires: cmake >= 2.6.0 BuildRequires: qt4-devel >= 4.4 @@ -25,13 +25,13 @@ BuildRequires: mysql-server BuildRequires: libxslt BuildRequires: shared-mime-info BuildRequires: boost-devel +BuildRequires: soprano-devel # when/if akonadi grows support for other backends, consider splitting # these similar to how phonon is done currently. Requires: qt4-mysql # not *strictly* required, but we need a functional default configuration -Requires(hint): mysql-server - +Requires: mysql-server Requires(postun): /sbin/ldconfig %description @@ -73,6 +73,7 @@ make %{?_smp_mflags} -C %{_target_platfo %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform} + mkdir -p $RPM_BUILD_ROOT%{_datadir}/akonadi/agents touch -d %{mysql_conf_timestamp} $RPM_BUILD_ROOT%{_sysconfdir}/akonadi/mysql-local.conf @@ -104,20 +105,41 @@ fi %{_bindir}/akonadictl %{_bindir}/akonadiserver %{_libdir}/libakonadi*.so.1* -%{_datadir}/dbus-1/interfaces/ -%{_datadir}/dbus-1/services/org.freedesktop.Akonadi.Control.service +%{_datadir}/dbus-1/interfaces/org.freedesktop.Akonadi.*.xml +%{_datadir}/dbus-1/services/org.freedesktop.Akonadi.*.service %{_datadir}/mime/packages/akonadi-mime.xml -%dir %{_datadir}/akonadi -%dir %{_datadir}/akonadi/agents +%{_datadir}/akonadi/ %files devel %defattr(-,root,root,-) %{_includedir}/akonadi/ %{_libdir}/pkgconfig/akonadi.pc %{_libdir}/libakonadi*.so +%{_libdir}/cmake/Akonadi/ %changelog +* Thu Jul 30 2009 Luk?? Tinkl - 1.2.0-1 +- Akonadi 1.2.0 + +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.95-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jun 25 2009 Than Ngo - 1.1.95-1 +- 1.1.95 + +* Wed Jun 03 2009 Rex Dieter 1.1.90-1 +- akonadi-1.1.90 + +* Tue May 26 2009 Rex Dieter 1.1.85-3 +- akonadi.pc.cmake: s/AKONADI_LIB_VERSION_STRING/AKONADI_VERSION_STRING/ + +* Tue May 12 2009 Than Ngo 1.1.85-2 +- fix rpm file list + +* Wed May 06 2009 Rex Dieter - 1.1.85-1 +- akonadi-1.1.85 + * Thu Apr 30 2009 Rex Dieter - 1.1.2-1 - akonadi-1.1.2 - optimize scriptlets a bit Index: sources =================================================================== RCS file: /cvs/extras/rpms/akonadi/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 3 May 2009 02:57:35 -0000 1.7 +++ sources 30 Jul 2009 17:46:54 -0000 1.8 @@ -1 +1 @@ -5651b02358f7d2f1c0954dfd31feafb1 akonadi-1.1.2.tar.bz2 +4b04ab0b4670e1133307f7b82af46ce1 akonadi-1.2.0.tar.bz2 From ltinkl at fedoraproject.org Thu Jul 30 17:46:54 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 30 Jul 2009 17:46:54 +0000 (UTC) Subject: rpms/akonadi/devel .cvsignore, 1.13, 1.14 akonadi.spec, 1.41, 1.42 sources, 1.14, 1.15 Message-ID: <20090730174654.DBA3C11C00D3@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/akonadi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4703/devel Modified Files: .cvsignore akonadi.spec sources Log Message: Akonadi 1.2.0, to go with KDE 4.3.0 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/akonadi/devel/.cvsignore,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- .cvsignore 25 Jun 2009 10:34:18 -0000 1.13 +++ .cvsignore 30 Jul 2009 17:46:54 -0000 1.14 @@ -1,3 +1 @@ -akonadi-1.1.85.tar.bz2 -akonadi-1.1.90.tar.bz2 -akonadi-1.1.95.tar.bz2 +akonadi-1.2.0.tar.bz2 Index: akonadi.spec =================================================================== RCS file: /cvs/extras/rpms/akonadi/devel/akonadi.spec,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- akonadi.spec 24 Jul 2009 16:40:34 -0000 1.41 +++ akonadi.spec 30 Jul 2009 17:46:54 -0000 1.42 @@ -1,8 +1,8 @@ Summary: PIM Storage Service Name: akonadi -Version: 1.1.95 -Release: 2%{?dist} +Version: 1.2.0 +Release: 1%{?dist} Group: System Environment/Libraries License: LGPLv2+ @@ -119,6 +119,9 @@ fi %changelog +* Thu Jul 30 2009 Luk?? Tinkl - 1.2.0-1 +- Akonadi 1.2.0 + * Fri Jul 24 2009 Fedora Release Engineering - 1.1.95-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/akonadi/devel/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 25 Jun 2009 10:34:18 -0000 1.14 +++ sources 30 Jul 2009 17:46:54 -0000 1.15 @@ -1 +1 @@ -d5b264d29b7849aac9b65469df0cd2fb akonadi-1.1.95.tar.bz2 +4b04ab0b4670e1133307f7b82af46ce1 akonadi-1.2.0.tar.bz2 From pkgdb at fedoraproject.org Thu Jul 30 17:53:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:04 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchbugzilla Message-ID: <20090730175304.9D9D410F89B@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchbugzilla acl on soprano (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:06 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchcommits Message-ID: <20090730175306.B4B9010F89F@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchcommits acl on soprano (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:08 +0000 Subject: [pkgdb] soprano: ltinkl has requested commit Message-ID: <20090730175308.A581910F8B0@bastion2.fedora.phx.redhat.com> ltinkl has requested the commit acl on soprano (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:12 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchbugzilla Message-ID: <20090730175312.897E710F8B4@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchbugzilla acl on soprano (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:15 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchcommits Message-ID: <20090730175315.7E7B510F8B9@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchcommits acl on soprano (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:17 +0000 Subject: [pkgdb] soprano: ltinkl has requested commit Message-ID: <20090730175318.0028410F8BD@bastion2.fedora.phx.redhat.com> ltinkl has requested the commit acl on soprano (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:29 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchbugzilla Message-ID: <20090730175329.0E7C210F89A@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchbugzilla acl on soprano (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:30 +0000 Subject: [pkgdb] soprano: ltinkl has requested watchcommits Message-ID: <20090730175330.B62C510F8C0@bastion2.fedora.phx.redhat.com> ltinkl has requested the watchcommits acl on soprano (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:53:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:53:33 +0000 Subject: [pkgdb] soprano: ltinkl has requested commit Message-ID: <20090730175333.6DA5310F89F@bastion2.fedora.phx.redhat.com> ltinkl has requested the commit acl on soprano (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:58:49 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:58:49 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175849.CB2AB10F875@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on soprano (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:58:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:58:53 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175853.8812A10F89F@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on soprano (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:58:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:58:51 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175851.9074510F89B@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on soprano (Fedora devel) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:00 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175900.2F97910F8B4@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on soprano (Fedora 10) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:01 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175901.85B8510F8B8@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on soprano (Fedora 10) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:01 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175901.9285910F8BB@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on soprano (Fedora 10) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:06 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175906.EDEDC10F875@bastion2.fedora.phx.redhat.com> rdieter has set the watchbugzilla acl on soprano (Fedora 11) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:07 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175907.7BFF310F8C0@bastion2.fedora.phx.redhat.com> rdieter has set the watchcommits acl on soprano (Fedora 11) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From pkgdb at fedoraproject.org Thu Jul 30 17:59:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 17:59:08 +0000 Subject: [pkgdb] soprano had acl change status Message-ID: <20090730175908.BF77210F8C5@bastion2.fedora.phx.redhat.com> rdieter has set the commit acl on soprano (Fedora 11) to Approved for ltinkl To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/soprano From behdad at fedoraproject.org Thu Jul 30 18:04:50 2009 From: behdad at fedoraproject.org (Behdad Esfahbod) Date: Thu, 30 Jul 2009 18:04:50 +0000 (UTC) Subject: rpms/freetype/devel freetype-2.3.9-aliasing.patch, NONE, 1.1 freetype.spec, 1.74, 1.75 Message-ID: <20090730180450.D078E11C00D3@cvs1.fedora.phx.redhat.com> Author: behdad Update of /cvs/pkgs/rpms/freetype/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10677 Modified Files: freetype.spec Added Files: freetype-2.3.9-aliasing.patch Log Message: * Thu Jul 30 2009 Behdad Esfahbod 2.3.9-6 - Add freetype-2.3.9-aliasing.patch - Resolves: 513582 freetype-2.3.9-aliasing.patch: ftccache.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- NEW FILE freetype-2.3.9-aliasing.patch --- --- freetype-2.3.9.bak/src/cache/ftccache.h 2007-05-16 17:37:05.000000000 +0200 +++ freetype-2.3.9/src/cache/ftccache.h 2009-07-02 14:54:10.000000000 +0200 @@ -246,8 +246,7 @@ error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \ \ _Ok: \ - _pnode = (FTC_Node*)(void*)&(node); \ - *_pnode = _node; \ + node = _node; \ FT_END_STMNT #else /* !FTC_INLINE */ Index: freetype.spec =================================================================== RCS file: /cvs/pkgs/rpms/freetype/devel/freetype.spec,v retrieving revision 1.74 retrieving revision 1.75 diff -u -p -r1.74 -r1.75 --- freetype.spec 24 Jul 2009 23:12:00 -0000 1.74 +++ freetype.spec 30 Jul 2009 18:04:50 -0000 1.75 @@ -9,7 +9,7 @@ Summary: A free and portable font rendering engine Name: freetype Version: 2.3.9 -Release: 5%{?dist} +Release: 6%{?dist} License: FTL or GPLv2+ Group: System Environment/Libraries URL: http://www.freetype.org @@ -31,6 +31,9 @@ Patch88: freetype-multilib.patch # Fix crash https://bugs.freedesktop.org/show_bug.cgi?id=6841 Patch89: freetype-2.2.1-memcpy-fix.patch +# Fix aliasing issue +Patch90: freetype-2.3.9-aliasing.patch + Buildroot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) BuildRequires: libX11-devel @@ -97,6 +100,7 @@ popd %patch88 -p1 -b .multilib %patch89 -p1 -b .memcpy +%patch90 -p1 -b .aliasing %build @@ -226,6 +230,10 @@ rm -rf $RPM_BUILD_ROOT %doc docs/tutorial %changelog +* Thu Jul 30 2009 Behdad Esfahbod 2.3.9-6 +- Add freetype-2.3.9-aliasing.patch +- Resolves: 513582 + * Fri Jul 24 2009 Fedora Release Engineering - 2.3.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mtasaka at fedoraproject.org Thu Jul 30 18:10:23 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 18:10:23 +0000 (UTC) Subject: rpms/jd/F-10 .cvsignore, 1.388, 1.389 jd.spec, 1.448, 1.449 sources, 1.389, 1.390 Message-ID: <20090730181023.90BB811C04D5@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12551/F-10 Modified Files: .cvsignore jd.spec sources Log Message: * Fri Jul 31 2009 Mamoru Tasaka - rev 3000 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/.cvsignore,v retrieving revision 1.388 retrieving revision 1.389 diff -u -p -r1.388 -r1.389 --- .cvsignore 28 Jul 2009 18:29:52 -0000 1.388 +++ .cvsignore 30 Jul 2009 18:10:22 -0000 1.389 @@ -1 +1 @@ -jd-2.4.2-svn2993_trunk.tgz +jd-2.4.2-svn3000_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/jd.spec,v retrieving revision 1.448 retrieving revision 1.449 diff -u -p -r1.448 -r1.449 --- jd.spec 28 Jul 2009 18:29:52 -0000 1.448 +++ jd.spec 30 Jul 2009 18:10:22 -0000 1.449 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2993_trunk +%define strtag svn3000_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Wed Jul 29 2009 Mamoru Tasaka -- rev 2993 +* Fri Jul 31 2009 Mamoru Tasaka +- rev 3000 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-10/sources,v retrieving revision 1.389 retrieving revision 1.390 diff -u -p -r1.389 -r1.390 --- sources 28 Jul 2009 18:29:52 -0000 1.389 +++ sources 30 Jul 2009 18:10:23 -0000 1.390 @@ -1 +1 @@ -adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz +f33bc571bad857ee1a286ee80b11f1a0 jd-2.4.2-svn3000_trunk.tgz From mtasaka at fedoraproject.org Thu Jul 30 18:10:25 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 18:10:25 +0000 (UTC) Subject: rpms/jd/F-11 .cvsignore, 1.382, 1.383 jd.spec, 1.444, 1.445 sources, 1.383, 1.384 Message-ID: <20090730181026.1D5F511C04D5@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12551/F-11 Modified Files: .cvsignore jd.spec sources Log Message: * Fri Jul 31 2009 Mamoru Tasaka - rev 3000 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/.cvsignore,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- .cvsignore 28 Jul 2009 18:29:52 -0000 1.382 +++ .cvsignore 30 Jul 2009 18:10:23 -0000 1.383 @@ -1 +1 @@ -jd-2.4.2-svn2993_trunk.tgz +jd-2.4.2-svn3000_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/jd.spec,v retrieving revision 1.444 retrieving revision 1.445 diff -u -p -r1.444 -r1.445 --- jd.spec 28 Jul 2009 18:29:52 -0000 1.444 +++ jd.spec 30 Jul 2009 18:10:23 -0000 1.445 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2993_trunk +%define strtag svn3000_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Wed Jul 29 2009 Mamoru Tasaka -- rev 2993 +* Fri Jul 31 2009 Mamoru Tasaka +- rev 3000 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/F-11/sources,v retrieving revision 1.383 retrieving revision 1.384 diff -u -p -r1.383 -r1.384 --- sources 28 Jul 2009 18:29:52 -0000 1.383 +++ sources 30 Jul 2009 18:10:23 -0000 1.384 @@ -1 +1 @@ -adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz +f33bc571bad857ee1a286ee80b11f1a0 jd-2.4.2-svn3000_trunk.tgz From mtasaka at fedoraproject.org Thu Jul 30 18:10:26 2009 From: mtasaka at fedoraproject.org (Mamoru Tasaka) Date: Thu, 30 Jul 2009 18:10:26 +0000 (UTC) Subject: rpms/jd/devel .cvsignore, 1.381, 1.382 jd.spec, 1.444, 1.445 sources, 1.382, 1.383 Message-ID: <20090730181026.8896211C04D5@cvs1.fedora.phx.redhat.com> Author: mtasaka Update of /cvs/extras/rpms/jd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12551/devel Modified Files: .cvsignore jd.spec sources Log Message: * Fri Jul 31 2009 Mamoru Tasaka - rev 3000 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/jd/devel/.cvsignore,v retrieving revision 1.381 retrieving revision 1.382 diff -u -p -r1.381 -r1.382 --- .cvsignore 28 Jul 2009 17:38:51 -0000 1.381 +++ .cvsignore 30 Jul 2009 18:10:25 -0000 1.382 @@ -1 +1 @@ -jd-2.4.2-svn2993_trunk.tgz +jd-2.4.2-svn3000_trunk.tgz Index: jd.spec =================================================================== RCS file: /cvs/extras/rpms/jd/devel/jd.spec,v retrieving revision 1.444 retrieving revision 1.445 diff -u -p -r1.444 -r1.445 --- jd.spec 28 Jul 2009 17:38:52 -0000 1.444 +++ jd.spec 30 Jul 2009 18:10:25 -0000 1.445 @@ -10,7 +10,7 @@ # Defined by upsteam # %define main_ver 2.4.2 -%define strtag svn2993_trunk +%define strtag svn3000_trunk %define repoid 41293 # Define this if this is pre-version %define pre_release 1 @@ -135,8 +135,8 @@ gtk-update-icon-cache %{_datadir}/icons/ %{icondir}/%{name}.png %changelog -* Wed Jul 29 2009 Mamoru Tasaka -- rev 2993 +* Fri Jul 31 2009 Mamoru Tasaka +- rev 3000 * Sun Jul 12 2009 Mamoru Tasaka - 2.4.1-1 - 2.4.1 Index: sources =================================================================== RCS file: /cvs/extras/rpms/jd/devel/sources,v retrieving revision 1.382 retrieving revision 1.383 diff -u -p -r1.382 -r1.383 --- sources 28 Jul 2009 17:38:52 -0000 1.382 +++ sources 30 Jul 2009 18:10:25 -0000 1.383 @@ -1 +1 @@ -adcfd670d1121bf256da7aaa86875dc7 jd-2.4.2-svn2993_trunk.tgz +f33bc571bad857ee1a286ee80b11f1a0 jd-2.4.2-svn3000_trunk.tgz From rdieter at fedoraproject.org Thu Jul 30 18:10:29 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 18:10:29 +0000 (UTC) Subject: rpms/maxima/EL-5 .cvsignore, 1.16, 1.17 maxima.spec, 1.54, 1.55 sources, 1.14, 1.15 maxima-5.9.4-gcl_setarch.patch, 1.1, NONE Message-ID: <20090730181029.D6E6911C04D5@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/maxima/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12589 Modified Files: .cvsignore maxima.spec sources Removed Files: maxima-5.9.4-gcl_setarch.patch Log Message: sync w/devel branch for 5.18.1 goodness Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/maxima/EL-5/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 5 Nov 2008 17:44:03 -0000 1.16 +++ .cvsignore 30 Jul 2009 18:10:29 -0000 1.17 @@ -2,4 +2,4 @@ clog macref.pdf maxima.png maximabook-19-Sept-2004.pdf -maxima-5.16.3.tar.gz +maxima-5.18.1.tar.gz Index: maxima.spec =================================================================== RCS file: /cvs/pkgs/rpms/maxima/EL-5/maxima.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- maxima.spec 5 Nov 2008 17:44:03 -0000 1.54 +++ maxima.spec 30 Jul 2009 18:10:29 -0000 1.55 @@ -1,9 +1,9 @@ Summary: Symbolic Computation Program Name: maxima -Version: 5.16.3 +Version: 5.18.1 -Release: 4%{?dist} +Release: 6%{?dist} License: GPLv2 Group: Applications/Engineering URL: http://maxima.sourceforge.net/ @@ -11,11 +11,10 @@ Source: http://downloads.sourceforge.ne BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?fedora} > 8 - # reinclude ppc when fixed: http://bugzilla.redhat.com/448734 -ExclusiveArch: i386 x86_64 sparcv9 +ExclusiveArch: %{ix86} x86_64 sparcv9 %else -ExclusiveArch: i386 x86_64 ppc sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc sparcv9 %endif %define maxima_ver %{version}%{?beta} @@ -26,7 +25,7 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %ifarch %{ix86} %define _enable_cmucl --enable-cmucl %if 0%{?fedora} -# gcl/f8 bustage on i386: https://bugzilla.redhat.com/show_bug.cgi?id=451801 +# temporarily disable -gcl (#496124) #define _enable_gcl --enable-gcl %endif %endif @@ -35,7 +34,7 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %define default_lisp sbcl %if 0%{?fedora} > 2 %define _enable_clisp --enable-clisp -# gcl busted on x86_64 atm: http://bugzilla.redhat.com/427250 +# temporarily disable -gcl (#496124) #define _enable_gcl --enable-gcl %define _enable_sbcl --enable-sbcl %else @@ -48,8 +47,8 @@ ExclusiveArch: i386 x86_64 ppc sparcv9 %define default_lisp sbcl # clisp: http://bugzilla.redhat.com/166347 (resolved) - clisp/ppc (still) awol. #define _enable_clisp --enable-clisp -# gcl: http://bugzilla.redhat.com/167952 -#define _enable_gcl --enable-gcl +# temporarily disable -gcl (#496124) +#define _enable_gcl --enable-gcl # sbcl: http://bugzilla.redhat.com/220053 (resolved) # sbcl: ppc/ld joy, "final link failed: Nonrepresentable section on output" http://bugzilla.redhat.com/448734 %define _enable_sbcl --enable-sbcl @@ -70,7 +69,6 @@ Obsoletes: %{name}-runtime-gcl < %{versi Obsoletes: %{name}-runtime-sbcl < %{version}-%{release} %endif - Source1: maxima.png Source2: xmaxima.desktop Source6: maxima-modes.el @@ -79,11 +77,8 @@ Source6: maxima-modes.el Source10: http://starship.python.net/crew/mike/TixMaxima/macref.pdf Source11: http://maxima.sourceforge.net/docs/maximabook/maximabook-19-Sept-2004.pdf -# maxima-runtime-gcl: Unrecoverable error: fault count too high (#187647) -Patch6: maxima-5.9.4-gcl_setarch.patch - -# Inhibit automatic compressing of info files. Compressed info -# files break maxima's internal help. +# Inhibit automatic compressing of info files. +# Compressed info files break maxima's internal help. %define __spec_install_post %{nil} # debuginfo.list ends up empty/blank anyway. disable %define debug_package %{nil} @@ -96,6 +91,9 @@ Obsoletes: %{name}-lang-pt-utf8 < %{vers Obsoletes: %{name}-lang-pt_BR < %{version}-%{release} Obsoletes: %{name}-lang-pt_BR-utf8 < %{version}-%{release} +# 5.18.0 tarball busted?, temporary +#BuildRequires: automake +BuildRequires: desktop-file-utils BuildRequires: time # texi2dvi %if 0%{?fedora} > 5 || 0%{?rhel} > 4 @@ -104,7 +102,6 @@ BuildRequires: texinfo-tex BuildRequires: texinfo %endif BuildRequires: tetex-latex -BuildRequires: desktop-file-utils # /usr/bin/wish BuildRequires: tk @@ -176,12 +173,6 @@ Summary: Maxima compiled with GCL Group: Applications/Engineering BuildRequires: gcl Requires: %{name} = %{version} -%if 0%{?fedora} > 4 || 0%{?rhel} > 4 -# See http://bugzilla.redhat.com/187647 -%define setarch_hack 1 -BuildRequires: setarch -Requires: setarch -%endif Obsoletes: maxima-exec-gcl < %{version}-%{release} Provides: %{name}-runtime = %{version} Provides: %{name}-runtime-gcl = %{version}-%{release} @@ -214,10 +205,6 @@ Maxima compiled with Steel Bank Common L # Extra docs install -p -m644 %{SOURCE10} . -%if 0%{?setarch_hack} == 1 -%patch6 -p1 -b .gcl-setarch -%endif - sed -i -e 's|@ARCH@|%{_target_cpu}|' src/maxima.in sed -i -e 's:/usr/local/info:/usr/share/info:' \ @@ -244,18 +231,14 @@ find -name CVS -type d | xargs rm -r make %{?_smp_mflags} # docs -pushd doc +install -D -p -m644 %{SOURCE11} doc/maximabook/maxima.pdf - install -D -p -m644 %{SOURCE11} maximabook/maxima.pdf - -# pushd info +# pushd doc/info # texi2dvi --pdf maxima.texi # popd - pushd intromax - pdflatex intromax.ltx - popd - +pushd doc/intromax + pdflatex intromax.ltx popd @@ -378,11 +361,17 @@ rm -rf $RPM_BUILD_ROOT %dir %{_datadir}/maxima/%{maxima_ver} %{_datadir}/maxima/%{maxima_ver}/[a-c,f-r,t-w,y-z,A-Z]* %{_datadir}/maxima/%{maxima_ver}/demo/ -%doc %{_datadir}/maxima/%{maxima_ver}/doc/ -%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es* +%dir %{_datadir}/maxima/%{maxima_ver}/doc/ +%dir %{_datadir}/maxima/%{maxima_ver}/doc/html/ +%{_datadir}/maxima/%{maxima_ver}/doc/html/figures/ +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/html/*.h* +%doc %lang(en) %{_datadir}/maxima/%{maxima_ver}/doc/share/ +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es/ +%doc %lang(es) %{_datadir}/maxima/%{maxima_ver}/doc/html/es.utf8/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt/ %doc %lang(pt) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt.utf8/ -%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR* +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR/ +%doc %lang(pt_BR) %{_datadir}/maxima/%{maxima_ver}/doc/html/pt_BR.utf8/ %{_datadir}/maxima/%{maxima_ver}/share/ %dir %{_libdir}/maxima/ %dir %{_libdir}/maxima/%{maxima_ver}/ @@ -441,6 +430,48 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jul 28 2009 Rex Dieter - 5.18.1-6 +- rebuild (sbcl) + +* Sat Jul 25 2009 Fedora Release Engineering - 5.18.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun Jun 29 2009 Rex Dieter - 5.18.1-3 +- disable -runtime-gcl until issues (selinux, bug #496124) are fixed + +* Sat May 02 2009 Rex Dieter - 5.18.1-2 +- rebuild (sbcl) + +* Sat Apr 18 2009 Rex Dieter - 5.18.1-1 +- maxima-5.18.1 + +* Fri Apr 17 2009 Rex Dieter - 5.18.0-1 +- maxima-5.18.0 + +* Wed Mar 04 2009 Rex Dieter - 5.17.1-7 +- respin (sbcl) + +* Fri Feb 27 2009 Rex Dieter - 5.17.1-6 +- ExclusiveArch: s/i386/%%ix86/ + +* Wed Feb 25 2009 Fedora Release Engineering - 5.17.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 03 2009 Rex Dieter - 5.17.1-4 +- respin (sbcl) + +* Sun Jan 18 2009 Rex Dieter - 5.17.1-3 +- reenable gcl on i386 (#451801), x86_64 (#427250), ppc (#167952) + +* Wed Dec 31 2008 Rex Dieter - 5.17.1-2 +- respin (sbcl) + +* Wed Dec 17 2008 Rex Dieter - 5.17.1-1 +- maxima-5.17.1 + +* Thu Dec 04 2008 Rex Dieter - 5.17.0-1 +- maxima-5.17.0 + * Wed Nov 05 2008 Rex Dieter - 5.16.3-4 - respin (sbcl) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/maxima/EL-5/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 5 Nov 2008 17:44:03 -0000 1.14 +++ sources 30 Jul 2009 18:10:29 -0000 1.15 @@ -1,4 +1,4 @@ 9faa5a513de43b5e7384216a8783f620 maximabook-19-Sept-2004.pdf c101a1ce604d31b02bbc2f37cced280d macref.pdf 2da3872c0bdcc0446ee933392a907f50 maxima.png -690ee57f3884f565c898ed39a592e4e1 maxima-5.16.3.tar.gz +8be7388ad31b975335623b390bc2516e maxima-5.18.1.tar.gz --- maxima-5.9.4-gcl_setarch.patch DELETED --- From silfreed at fedoraproject.org Thu Jul 30 18:16:23 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 18:16:23 +0000 (UTC) Subject: rpms/libconcord/devel libconcord-0.21-mime-type-def.patch, 1.2, 1.3 libconcord.spec, 1.9, 1.10 Message-ID: <20090730181623.8BB7C11C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14853 Modified Files: libconcord-0.21-mime-type-def.patch libconcord.spec Log Message: * Thu Jul 30 2009 Douglas E. Warner 0.21-6 - updated patch w/ autoreconf run libconcord-0.21-mime-type-def.patch: Makefile.am | 22 + Makefile.in | 267 +++++++++++++----- aclocal.m4 | 328 +++++++++++++---------- autom4te.cache/output.0 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/output.1 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/requests | 48 +-- autom4te.cache/traces.0 | 560 ++++++++++++++++++++++----------------- autom4te.cache/traces.1 | 120 ++++---- config.guess | 51 +++ config.h.in | 3 config.h.in~ | 61 ++++ config.sub | 54 ++- configure | 684 +++++++++++++++++++++++++++++------------------- configure.ac | 17 + depcomp | 87 ++++-- install-sh | 5 libconcord.xml | 12 ltmain.sh | 12 missing | 49 ++- 19 files changed, 2295 insertions(+), 1361 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.2 -r 1.3 libconcord-0.21-mime-type-def.patchIndex: libconcord-0.21-mime-type-def.patch =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/devel/libconcord-0.21-mime-type-def.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libconcord-0.21-mime-type-def.patch 17 Jun 2009 20:15:56 -0000 1.2 +++ libconcord-0.21-mime-type-def.patch 30 Jul 2009 18:16:22 -0000 1.3 @@ -1,6 +1,25 @@ -diff -ruN concordance-0.21/libconcord/aclocal.m4 concordance-0.21-new/libconcord/aclocal.m4 ---- concordance-0.21/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 -+++ concordance-0.21-new/libconcord/aclocal.m4 2009-06-17 15:27:59.000000000 -0400 +diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 +--- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 ++++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 +@@ -1,7 +1,7 @@ +-# generated automatically by aclocal 1.10.1 -*- Autoconf -*- ++# generated automatically by aclocal 1.11 -*- Autoconf -*- + + # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +-# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ++# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. +@@ -13,7 +13,7 @@ + + m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-m4_if(AC_AUTOCONF_VERSION, [2.63],, ++m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, + [m4_warning([this file was generated for autoconf 2.63. + You have another version of autoconf. It may work, but is not guaranteed to. + If you have problems, you may need to regenerate the build system entirely. @@ -21,7 +21,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- @@ -113,50557 +132,3238 @@ diff -ruN concordance-0.21/libconcord/ac if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else -diff -ruN concordance-0.21/libconcord/autom4te.cache/output.0 concordance-0.21-new/libconcord/autom4te.cache/output.0 ---- concordance-0.21/libconcord/autom4te.cache/output.0 2009-03-08 15:07:42.000000000 -0400 -+++ concordance-0.21-new/libconcord/autom4te.cache/output.0 1969-12-31 19:00:00.000000000 -0500 -@@ -1,22109 +0,0 @@ --@%:@! /bin/sh --@%:@ Guess values for system-dependent variables and create Makefiles. --@%:@ Generated by GNU Autoconf 2.63 for libconcord 0.21. --@%:@ --@%:@ Report bugs to . --@%:@ --@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, --@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. --@%:@ This configure script is free software; the Free Software Foundation --@%:@ gives unlimited permission to copy, distribute and modify it. --## --------------------- ## --## M4sh Initialization. ## --## --------------------- ## -- --# Be more Bourne compatible --DUALCASE=1; export DUALCASE # for MKS sh --if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then -- emulate sh -- NULLCMD=: -- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which -- # is contrary to our usage. Disable this feature. -- alias -g '${1+"$@"}'='"$@"' -- setopt NO_GLOB_SUBST --else -- case `(set -o) 2>/dev/null` in -- *posix*) set -o posix ;; --esac -- --fi -- -- -- -- --# PATH needs CR --# Avoid depending upon Character Ranges. --as_cr_letters='abcdefghijklmnopqrstuvwxyz' --as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' --as_cr_Letters=$as_cr_letters$as_cr_LETTERS --as_cr_digits='0123456789' --as_cr_alnum=$as_cr_Letters$as_cr_digits -- --as_nl=' --' --export as_nl --# Printing a long string crashes Solaris 7 /usr/bin/printf. --as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' --as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo --as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo --if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then -- as_echo='printf %s\n' -- as_echo_n='printf %s' --else -- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then -- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' -- as_echo_n='/usr/ucb/echo -n' +@@ -6671,7 +6658,7 @@ + AC_MSG_RESULT([$SED]) + ]) + +-# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. ++# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -6683,10 +6670,10 @@ + # generated from the m4 files accompanying Automake X.Y. + # (This private macro should not be called outside this file.) + AC_DEFUN([AM_AUTOMAKE_VERSION], +-[am__api_version='1.10' ++[am__api_version='1.11' + dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to + dnl require some minimum version. Point them to the right macro. +-m4_if([$1], [1.10.1], [], ++m4_if([$1], [1.11], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl + ]) + +@@ -6700,12 +6687,12 @@ + # AM_SET_CURRENT_AUTOMAKE_VERSION + # ------------------------------- + # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +-# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. ++# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. + AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +-[AM_AUTOMAKE_VERSION([1.10.1])dnl ++[AM_AUTOMAKE_VERSION([1.11])dnl + m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) ++_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + + # AM_AUX_DIR_EXPAND -*- Autoconf -*- + +@@ -6762,14 +6749,14 @@ + + # AM_CONDITIONAL -*- Autoconf -*- + +-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 ++# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 + # Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. + +-# serial 8 ++# serial 9 + + # AM_CONDITIONAL(NAME, SHELL-CONDITION) + # ------------------------------------- +@@ -6782,6 +6769,7 @@ + AC_SUBST([$1_FALSE])dnl + _AM_SUBST_NOTMAKE([$1_TRUE])dnl + _AM_SUBST_NOTMAKE([$1_FALSE])dnl ++m4_define([_AM_COND_VALUE_$1], [$2])dnl + if $2; then + $1_TRUE= + $1_FALSE='#' +@@ -6795,14 +6783,14 @@ + Usually this means the macro was only invoked conditionally.]]) + fi])]) + +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 + # Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. + +-# serial 9 ++# serial 10 + + # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be + # written in clear, in which case automake, when reading aclocal.m4, +@@ -6859,6 +6847,16 @@ + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi ++ am__universal=false ++ m4_case([$1], [CC], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac], ++ [CXX], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac]) ++ + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and +@@ -6876,7 +6874,17 @@ + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf [...60651 lines suppressed...] +@@ -642,27 +733,30 @@ ps-am: -uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES +- +-.MAKE: install-am install-strip +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \ + uninstall-newmimeDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook - --.MAKE: install-am install-strip -+.MAKE: install-am install-data-am install-strip uninstall-am ++.MAKE: all install-am install-data-am install-strip uninstall-am .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ clean-generic clean-libLTLIBRARIES clean-libtool ctags dist \ -@@ -653,16 +688,17 @@ + dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \ +- dist-zip distcheck distclean distclean-compile \ ++ dist-xz dist-zip distcheck distclean distclean-compile \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ @@ -55475,7 +6793,7 @@ diff -ruN concordance-0.21/libconcord/Ma # udev and friends support -@@ -694,6 +730,16 @@ +@@ -694,6 +788,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms @@ -55489,6 +6807,165 @@ diff -ruN concordance-0.21/libconcord/Ma + at HAVE_NEW_MIME_TRUE@ if test -z "$(DESTDIR)"; then \ + at HAVE_NEW_MIME_TRUE@ $(UPDATE_MIME_DATABASE) "$(datadir)/mime"; \ + at HAVE_NEW_MIME_TRUE@ fi ++ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: +diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing +--- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 ++++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 +@@ -1,10 +1,10 @@ + #! /bin/sh + # Common stub for a few missing GNU programs while installing. + +-scriptversion=2006-05-10.23 ++scriptversion=2009-04-28.21; # UTC + +-# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 +-# Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, ++# 2008, 2009 Free Software Foundation, Inc. + # Originally by Fran,cois Pinard , 1996. + + # This program is free software; you can redistribute it and/or modify +@@ -18,9 +18,7 @@ + # GNU General Public License for more details. + + # You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +-# 02110-1301, USA. ++# along with this program. If not, see . + + # As a special exception to the GNU General Public License, if you + # distribute this file as part of a program that contains a +@@ -89,6 +87,9 @@ + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + ++Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and ++\`g' are ignored when checking the name. ++ + Send bug reports to ." + exit $? + ;; +@@ -106,15 +107,22 @@ + + esac + ++# normalize program name to check for. ++program=`echo "$1" | sed ' ++ s/^gnu-//; t ++ s/^gnu//; t ++ s/^g//; t'` ++ + # Now exit if we have it, but it failed. Also exit now if we + # don't have it and --version was passed (most likely to detect +-# the program). ++# the program). This is about non-GNU programs, so use $1 not ++# $program. + case $1 in +- lex|yacc) ++ lex*|yacc*) + # Not GNU programs, they don't have --version. + ;; + +- tar) ++ tar*) + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 +@@ -138,7 +146,7 @@ + + # If it does not exist, or fails to run (possibly an outdated version), + # try to emulate it. +-case $1 in ++case $program in + aclocal*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if +@@ -148,7 +156,7 @@ + touch aclocal.m4 + ;; + +- autoconf) ++ autoconf*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the +@@ -157,7 +165,7 @@ + touch configure + ;; + +- autoheader) ++ autoheader*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want +@@ -187,7 +195,7 @@ + while read f; do touch "$f"; done + ;; + +- autom4te) ++ autom4te*) + echo 1>&2 "\ + WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the +@@ -210,7 +218,7 @@ + fi + ;; + +- bison|yacc) ++ bison*|yacc*) + echo 1>&2 "\ + WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package +@@ -240,7 +248,7 @@ + fi + ;; + +- lex|flex) ++ lex*|flex*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package +@@ -263,7 +271,7 @@ + fi + ;; + +- help2man) ++ help2man*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the +@@ -277,11 +285,11 @@ + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" +- exit 1 ++ exit $? + fi + ;; + +- makeinfo) ++ makeinfo*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file +@@ -310,7 +318,7 @@ + touch $file + ;; + +- tar) ++ tar*) + shift + + # We have already tried tar in the generic part. +@@ -363,5 +371,6 @@ + # eval: (add-hook 'write-file-hooks 'time-stamp) + # time-stamp-start: "scriptversion=" + # time-stamp-format: "%:y-%02m-%02d.%02H" +-# time-stamp-end: "$" ++# time-stamp-time-zone: "UTC" ++# time-stamp-end: "; # UTC" + # End: Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/devel/libconcord.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libconcord.spec 25 Jul 2009 05:27:50 -0000 1.9 +++ libconcord.spec 30 Jul 2009 18:16:23 -0000 1.10 @@ -3,7 +3,7 @@ Name: libconcord Version: 0.21 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries @@ -62,7 +62,6 @@ Python bindings for libconcord %build cd %{name} -autoreconf -i %configure --disable-static --disable-mime-update make %{_smp_mflags} make policykit @@ -174,6 +173,9 @@ update-mime-database %{_datadir}/mime &> %changelog +* Thu Jul 30 2009 Douglas E. Warner 0.21-6 +- updated patch w/ autoreconf run + * Fri Jul 24 2009 Fedora Release Engineering - 0.21-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From silfreed at fedoraproject.org Thu Jul 30 18:31:38 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 18:31:38 +0000 (UTC) Subject: rpms/libconcord/F-11 libconcord-0.21-mime-type-def.patch, NONE, 1.1 libconcord.spec, 1.6, 1.7 Message-ID: <20090730183138.D1D6911C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19853 Modified Files: libconcord.spec Added Files: libconcord-0.21-mime-type-def.patch Log Message: * Thu Jul 30 2009 Douglas E. Warner 0.21-3 - adding a mime-type definition so other packages can handle them appropriately (bug#506536) libconcord-0.21-mime-type-def.patch: Makefile.am | 22 + Makefile.in | 267 +++++++++++++----- aclocal.m4 | 328 +++++++++++++---------- autom4te.cache/output.0 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/output.1 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/requests | 48 +-- autom4te.cache/traces.0 | 560 ++++++++++++++++++++++----------------- autom4te.cache/traces.1 | 120 ++++---- config.guess | 51 +++ config.h.in | 3 config.h.in~ | 61 ++++ config.sub | 54 ++- configure | 684 +++++++++++++++++++++++++++++------------------- configure.ac | 17 + depcomp | 87 ++++-- install-sh | 5 libconcord.xml | 12 ltmain.sh | 12 missing | 49 ++- 19 files changed, 2295 insertions(+), 1361 deletions(-) --- NEW FILE libconcord-0.21-mime-type-def.patch --- diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 --- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 +++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.11 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,7 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(AC_AUTOCONF_VERSION, [2.63],, +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. @@ -21,7 +21,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL +# serial 52 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) @@ -645,6 +645,7 @@ esac ;; *64-bit*) + libsuff=64 case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" @@ -1707,11 +1708,13 @@ # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -1723,18 +1726,6 @@ dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no @@ -2516,7 +2507,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -3523,7 +3514,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= @@ -5215,7 +5206,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in @@ -5592,9 +5583,6 @@ cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' ;; - linux* | k*bsd*-gnu) - _LT_AC_TAGVAR(link_all_deplibs, $1)=no - ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -5803,13 +5791,12 @@ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=no else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -6240,7 +6227,7 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -6671,7 +6658,7 @@ AC_MSG_RESULT([$SED]) ]) -# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -6683,10 +6670,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' +[am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10.1], [], +m4_if([$1], [1.11], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -6700,12 +6687,12 @@ # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.10.1])dnl +[AM_AUTOMAKE_VERSION([1.11])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- @@ -6762,14 +6749,14 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 8 +# serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- @@ -6782,6 +6769,7 @@ AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' @@ -6795,14 +6783,14 @@ Usually this means the macro was only invoked conditionally.]]) [...6572 lines suppressed...] - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-includeHEADERS install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-includeHEADERS \ - uninstall-libLTLIBRARIES + install-data install-data-am install-data-hook install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-includeHEADERS install-info \ + install-info-am install-libLTLIBRARIES install-man \ + install-newmimeDATA install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-hook uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES uninstall-newmimeDATA # udev and friends support @@ -694,6 +788,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms + +install-data-hook: + at HAVE_NEW_MIME_TRUE@ if test -z "$(DESTDIR)"; then \ + at HAVE_NEW_MIME_TRUE@ $(UPDATE_MIME_DATABASE) "$(datadir)/mime"; \ + at HAVE_NEW_MIME_TRUE@ fi + +uninstall-hook: + at HAVE_NEW_MIME_TRUE@ if test -z "$(DESTDIR)"; then \ + at HAVE_NEW_MIME_TRUE@ $(UPDATE_MIME_DATABASE) "$(datadir)/mime"; \ + at HAVE_NEW_MIME_TRUE@ fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing --- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 +++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2006-05-10.23 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -18,9 +18,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -89,6 +87,9 @@ tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + Send bug reports to ." exit $? ;; @@ -106,15 +107,22 @@ esac +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect -# the program). +# the program). This is about non-GNU programs, so use $1 not +# $program. case $1 in - lex|yacc) + lex*|yacc*) # Not GNU programs, they don't have --version. ;; - tar) + tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 @@ -138,7 +146,7 @@ # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case $1 in +case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if @@ -148,7 +156,7 @@ touch aclocal.m4 ;; - autoconf) + autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the @@ -157,7 +165,7 @@ touch configure ;; - autoheader) + autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want @@ -187,7 +195,7 @@ while read f; do touch "$f"; done ;; - autom4te) + autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the @@ -210,7 +218,7 @@ fi ;; - bison|yacc) + bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package @@ -240,7 +248,7 @@ fi ;; - lex|flex) + lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package @@ -263,7 +271,7 @@ fi ;; - help2man) + help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the @@ -277,11 +285,11 @@ else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" - exit 1 + exit $? fi ;; - makeinfo) + makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file @@ -310,7 +318,7 @@ touch $file ;; - tar) + tar*) shift # We have already tried tar in the generic part. @@ -363,5 +371,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-11/libconcord.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- libconcord.spec 17 Jun 2009 13:24:25 -0000 1.6 +++ libconcord.spec 30 Jul 2009 18:31:38 -0000 1.7 @@ -3,13 +3,14 @@ Name: libconcord Version: 0.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries License: GPLv3+ URL: http://phildev.net/concordance/ Source0: http://downloads.sourceforge.net/sourceforge/concordance/%{mainpkg}-%{version}.tar.bz2 +Patch0: libconcord-0.21-mime-type-def.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: libusb-devel @@ -57,11 +58,11 @@ Python bindings for libconcord %prep %setup -q -n %{mainpkg}-%{version} - +%patch0 -p1 %build cd %{name} -%configure --disable-static +%configure --disable-static --disable-mime-update make %{_smp_mflags} make policykit @@ -134,11 +135,13 @@ rm -rf %{buildroot} /sbin/ldconfig /sbin/udevcontrol reload_rules touch /var/lib/misc/PolicyKit.reload +update-mime-database %{_datadir}/mime &> /dev/null || : %postun /sbin/ldconfig /sbin/udevcontrol reload_rules touch /var/lib/misc/PolicyKit.reload +update-mime-database %{_datadir}/mime &> /dev/null || : %files @@ -148,6 +151,7 @@ touch /var/lib/misc/PolicyKit.reload %config(noreplace) %{_sysconfdir}/udev/rules.d/*.rules %{_datadir}/hal/fdi/policy/10osvendor/*.fdi %{_datadir}/PolicyKit/policy/*.policy +%{_datadir}/mime/packages/%{name}.xml %{_libdir}/*.so.* %files devel @@ -169,6 +173,10 @@ touch /var/lib/misc/PolicyKit.reload %changelog +* Thu Jul 30 2009 Douglas E. Warner 0.21-3 +- adding a mime-type definition so other packages can handle them appropriately + (bug#506536) + * Wed Jun 17 2009 Douglas E. Warner 0.21-2 - fixing name of hal policy to allow device to be accessed from non-root user properly (bug#506371) From silfreed at fedoraproject.org Thu Jul 30 18:32:28 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 18:32:28 +0000 (UTC) Subject: rpms/libconcord/F-10 libconcord-0.21-mime-type-def.patch, NONE, 1.1 libconcord.spec, 1.4, 1.5 Message-ID: <20090730183228.DD8CE11C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20123 Modified Files: libconcord.spec Added Files: libconcord-0.21-mime-type-def.patch Log Message: * Thu Jul 30 2009 Douglas E. Warner 0.21-3 - adding a mime-type definition so other packages can handle them appropriately (bug#506536) libconcord-0.21-mime-type-def.patch: Makefile.am | 22 + Makefile.in | 267 +++++++++++++----- aclocal.m4 | 328 +++++++++++++---------- autom4te.cache/output.0 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/output.1 | 638 +++++++++++++++++++++++++++----------------- autom4te.cache/requests | 48 +-- autom4te.cache/traces.0 | 560 ++++++++++++++++++++++----------------- autom4te.cache/traces.1 | 120 ++++---- config.guess | 51 +++ config.h.in | 3 config.h.in~ | 61 ++++ config.sub | 54 ++- configure | 684 +++++++++++++++++++++++++++++------------------- configure.ac | 17 + depcomp | 87 ++++-- install-sh | 5 libconcord.xml | 12 ltmain.sh | 12 missing | 49 ++- 19 files changed, 2295 insertions(+), 1361 deletions(-) --- NEW FILE libconcord-0.21-mime-type-def.patch --- diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 --- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 +++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.11 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,7 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(AC_AUTOCONF_VERSION, [2.63],, +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. @@ -21,7 +21,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL +# serial 52 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) @@ -645,6 +645,7 @@ esac ;; *64-bit*) + libsuff=64 case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" @@ -1707,11 +1708,13 @@ # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -1723,18 +1726,6 @@ dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no @@ -2516,7 +2507,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -3523,7 +3514,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= @@ -5215,7 +5206,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in @@ -5592,9 +5583,6 @@ cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' ;; - linux* | k*bsd*-gnu) - _LT_AC_TAGVAR(link_all_deplibs, $1)=no - ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -5803,13 +5791,12 @@ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=no else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -6240,7 +6227,7 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -6671,7 +6658,7 @@ AC_MSG_RESULT([$SED]) ]) -# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -6683,10 +6670,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' +[am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10.1], [], +m4_if([$1], [1.11], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -6700,12 +6687,12 @@ # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.10.1])dnl +[AM_AUTOMAKE_VERSION([1.11])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- @@ -6762,14 +6749,14 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 8 +# serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- @@ -6782,6 +6769,7 @@ AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' @@ -6795,14 +6783,14 @@ Usually this means the macro was only invoked conditionally.]]) [...6572 lines suppressed...] - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-includeHEADERS install-info install-info-am \ - install-libLTLIBRARIES install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-includeHEADERS \ - uninstall-libLTLIBRARIES + install-data install-data-am install-data-hook install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-includeHEADERS install-info \ + install-info-am install-libLTLIBRARIES install-man \ + install-newmimeDATA install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-hook uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES uninstall-newmimeDATA # udev and friends support @@ -694,6 +788,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms + +install-data-hook: + at HAVE_NEW_MIME_TRUE@ if test -z "$(DESTDIR)"; then \ + at HAVE_NEW_MIME_TRUE@ $(UPDATE_MIME_DATABASE) "$(datadir)/mime"; \ + at HAVE_NEW_MIME_TRUE@ fi + +uninstall-hook: + at HAVE_NEW_MIME_TRUE@ if test -z "$(DESTDIR)"; then \ + at HAVE_NEW_MIME_TRUE@ $(UPDATE_MIME_DATABASE) "$(datadir)/mime"; \ + at HAVE_NEW_MIME_TRUE@ fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing --- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 +++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2006-05-10.23 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -18,9 +18,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -89,6 +87,9 @@ tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + Send bug reports to ." exit $? ;; @@ -106,15 +107,22 @@ esac +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect -# the program). +# the program). This is about non-GNU programs, so use $1 not +# $program. case $1 in - lex|yacc) + lex*|yacc*) # Not GNU programs, they don't have --version. ;; - tar) + tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 @@ -138,7 +146,7 @@ # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case $1 in +case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if @@ -148,7 +156,7 @@ touch aclocal.m4 ;; - autoconf) + autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the @@ -157,7 +165,7 @@ touch configure ;; - autoheader) + autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want @@ -187,7 +195,7 @@ while read f; do touch "$f"; done ;; - autom4te) + autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the @@ -210,7 +218,7 @@ fi ;; - bison|yacc) + bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package @@ -240,7 +248,7 @@ fi ;; - lex|flex) + lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package @@ -263,7 +271,7 @@ fi ;; - help2man) + help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the @@ -277,11 +285,11 @@ else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" - exit 1 + exit $? fi ;; - makeinfo) + makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file @@ -310,7 +318,7 @@ touch $file ;; - tar) + tar*) shift # We have already tried tar in the generic part. @@ -363,5 +371,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-10/libconcord.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libconcord.spec 17 Jun 2009 13:09:42 -0000 1.4 +++ libconcord.spec 30 Jul 2009 18:32:28 -0000 1.5 @@ -3,13 +3,14 @@ Name: libconcord Version: 0.21 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries License: GPLv3+ URL: http://phildev.net/concordance/ Source0: http://downloads.sourceforge.net/sourceforge/concordance/%{mainpkg}-%{version}.tar.bz2 +Patch0: libconcord-0.21-mime-type-def.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: libusb-devel @@ -57,11 +58,11 @@ Python bindings for libconcord %prep %setup -q -n %{mainpkg}-%{version} - +%patch0 -p1 %build cd %{name} -%configure --disable-static +%configure --disable-static --disable-mime-update make %{_smp_mflags} make policykit @@ -134,11 +135,13 @@ rm -rf %{buildroot} /sbin/ldconfig /sbin/udevcontrol reload_rules touch /var/lib/misc/PolicyKit.reload +update-mime-database %{_datadir}/mime &> /dev/null || : %postun /sbin/ldconfig /sbin/udevcontrol reload_rules touch /var/lib/misc/PolicyKit.reload +update-mime-database %{_datadir}/mime &> /dev/null || : %files @@ -148,6 +151,7 @@ touch /var/lib/misc/PolicyKit.reload %config(noreplace) %{_sysconfdir}/udev/rules.d/*.rules %{_datadir}/hal/fdi/policy/10osvendor/*.fdi %{_datadir}/PolicyKit/policy/*.policy +%{_datadir}/mime/packages/%{name}.xml %{_libdir}/*.so.* %files devel @@ -169,6 +173,10 @@ touch /var/lib/misc/PolicyKit.reload %changelog +* Thu Jul 30 2009 Douglas E. Warner 0.21-3 +- adding a mime-type definition so other packages can handle them appropriately + (bug#506536) + * Wed Jun 17 2009 Douglas E. Warner 0.21-2 - fixing name of hal policy to allow device to be accessed from non-root user properly (bug#506371) @@ -182,7 +190,7 @@ touch /var/lib/misc/PolicyKit.reload * Fri Jan 30 2009 Douglas E. Warner 0.20-6 - removing registered marks - + * Sat May 03 2008 Douglas E. Warner 0.20-5 - fixing TODO file included twice - adding bindings docs From silfreed at fedoraproject.org Thu Jul 30 18:45:36 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 18:45:36 +0000 (UTC) Subject: rpms/qtpfsgui/devel qtpfsgui-1.9.3-disable-sse2.patch, NONE, 1.1 qtpfsgui.spec, 1.18, 1.19 Message-ID: <20090730184536.3653411C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qtpfsgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24877 Modified Files: qtpfsgui.spec Added Files: qtpfsgui-1.9.3-disable-sse2.patch Log Message: * Mon Jul 30 2009 Douglas E. Warner 1.9.3-3 - disabling SSE2 on all arches except x86_64 qtpfsgui-1.9.3-disable-sse2.patch: project.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE qtpfsgui-1.9.3-disable-sse2.patch --- diff -ruN qtpfsgui-1.9.3-orig/project.pro qtpfsgui-1.9.3/project.pro --- qtpfsgui-1.9.3-orig/project.pro 2009-03-29 09:25:15.000000000 -0400 +++ qtpfsgui-1.9.3/project.pro 2009-07-30 14:38:06.000000000 -0400 @@ -3,7 +3,7 @@ DEFINES += QT_NO_DEBUG_OUTPUT # Assume openmp-capable g++ (>=4.2) -QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp -msse2 +QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp QMAKE_LFLAGS += -fopenmp TARGET = qtpfsgui Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/devel/qtpfsgui.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- qtpfsgui.spec 27 Jul 2009 02:38:13 -0000 1.18 +++ qtpfsgui.spec 30 Jul 2009 18:45:35 -0000 1.19 @@ -1,12 +1,13 @@ Name: qtpfsgui Version: 1.9.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A graphical tool for creating and tone-mapping HDR images Group: Applications/Productivity License: GPLv2+ URL: http://qtpfsgui.sourceforge.net/ Source0: http://downloads.sourceforge.net/qtpfsgui/%{name}-%{version}.tar.gz +Patch0: qtpfsgui-1.9.3-disable-sse2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel @@ -26,6 +27,11 @@ operators for creating low dynamic range %prep %setup -q +# fix missing SSE on everything bug x86_64 +%ifarch x86_64 +%patch0 +%endif + # fix inconsistant newlines %{__sed} -i 's/\r//' Changelog @@ -72,6 +78,9 @@ fi %changelog +* Mon Jul 30 2009 Douglas E. Warner 1.9.3-3 +- disabling SSE2 on all arches except x86_64 + * Sun Jul 26 2009 Fedora Release Engineering - 1.9.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hman-it at fedoraproject.org Thu Jul 30 18:47:23 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 18:47:23 +0000 (UTC) Subject: rpms/monosim/devel .cvsignore, 1.2, 1.3 monosim.spec, 1.4, 1.5 sources, 1.2, 1.3 Message-ID: <20090730184723.8A8C211C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25489 Modified Files: .cvsignore monosim.spec sources Log Message: Update to 1.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monosim/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Mar 2008 20:09:39 -0000 1.2 +++ .cvsignore 30 Jul 2009 18:47:22 -0000 1.3 @@ -1 +1 @@ -monosim-1.3.0.2.tar.gz +monosim-1.5.2.tar.gz Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/devel/monosim.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- monosim.spec 25 Jul 2009 15:03:50 -0000 1.4 +++ monosim.spec 30 Jul 2009 18:47:23 -0000 1.5 @@ -1,22 +1,20 @@ Summary: Manage your SIM Card contacts Name: monosim -Version: 1.3.0.2 -Release: 4%{?dist} +Version: 1.5.2 +Release: 1%{?dist} License: GPLv2 Group: Applications/Productivity -Source: http://www.integrazioneweb.com/monosim/packages/fedora/%{name}-%{version}.tar.gz +Source: http://www.integrazioneweb.com/repository/SOURCES/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://www.integrazioneweb.com/monosim BuildRequires: gtk-sharp2-devel >= 2.8.3 BuildRequires: mono-core >= 1.2.3 -BuildRequires: mono-web >= 1.2.3 BuildRequires: pkgconfig -BuildRequires: desktop-file-utils +#BuildRequires: desktop-file-utils Requires: gtk-sharp2 >= 2.8.3 Requires: mono-core >= 1.2.3 -Requires: mono-web >= 1.2.3 Requires: pcsc-lite >= 1.0.0 Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 @@ -41,24 +39,32 @@ make %{?_smp_mflags} %install rm -fr %{buildroot} make DESTDIR=%{buildroot} install -desktop-file-install --vendor="fedora" \ - --dir=%{buildroot}%{_datadir}/applications \ - monoSIM/images/%{name}.desktop +# desktop-file-install --vendor="fedora" \ +# --dir=%{buildroot}%{_datadir}/applications \ +# monoSIM/images/%{name}.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc README -%doc COPYING.GPL +%doc monosim/copying.gpl %{_bindir}/%{name} %{_libdir}/%{name}/ %{_datadir}/pixmaps/%{name}.png -%{_datadir}/applications/fedora-monosim.desktop +%{_datadir}/applications/monosim.desktop %changelog +* Thu Jul 30 2009 A.Basile 1.5.2-1 +- bug fixed: issue 4/5 - fix verified (pin1 enable/disable) +- bug fixed: issue 6 - fix verified (monosim on 64 bit) +- bug fixed: issue 7 - fix verified (international numbers) +- bug fixed: issue 8 - fix verified (closing main window) +- bug fixed: cross compile compatibility (monodevelop, #develop) +- deleted pkgconfig file for monopcsclib +- modified monosim.desktop file (compliant to desktop-file-validate) + * Sat Jul 25 2009 Fedora Release Engineering - 1.3.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monosim/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 Mar 2008 20:09:39 -0000 1.2 +++ sources 30 Jul 2009 18:47:23 -0000 1.3 @@ -1 +1 @@ -b416576f703b267d1c4532d01b67cb64 monosim-1.3.0.2.tar.gz +0a842f8443f04680efbdc9dacacb1ce0 monosim-1.5.2.tar.gz From silfreed at fedoraproject.org Thu Jul 30 18:55:04 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 18:55:04 +0000 (UTC) Subject: rpms/qtpfsgui/devel qtpfsgui.spec,1.19,1.20 Message-ID: <20090730185504.5F85111C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qtpfsgui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28438 Modified Files: qtpfsgui.spec Log Message: fixing patch logic (not x86_64) Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/devel/qtpfsgui.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- qtpfsgui.spec 30 Jul 2009 18:45:35 -0000 1.19 +++ qtpfsgui.spec 30 Jul 2009 18:55:04 -0000 1.20 @@ -28,8 +28,8 @@ operators for creating low dynamic range %setup -q # fix missing SSE on everything bug x86_64 -%ifarch x86_64 -%patch0 +%ifnarch x86_64 +%patch0 -p1 %endif # fix inconsistant newlines From hman-it at fedoraproject.org Thu Jul 30 19:01:56 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:01:56 +0000 (UTC) Subject: rpms/monosim/F-11 .cvsignore, 1.2, 1.3 monosim.spec, 1.3, 1.4 sources, 1.2, 1.3 Message-ID: <20090730190156.952FB11C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30447 Modified Files: .cvsignore monosim.spec sources Log Message: Update to 1.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Mar 2008 20:09:39 -0000 1.2 +++ .cvsignore 30 Jul 2009 19:01:56 -0000 1.3 @@ -1 +1 @@ -monosim-1.3.0.2.tar.gz +monosim-1.5.2.tar.gz Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-11/monosim.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- monosim.spec 25 May 2009 22:17:37 -0000 1.3 +++ monosim.spec 30 Jul 2009 19:01:56 -0000 1.4 @@ -1,22 +1,20 @@ Summary: Manage your SIM Card contacts Name: monosim -Version: 1.3.0.2 -Release: 3%{?dist} +Version: 1.5.2 +Release: 1%{?dist} License: GPLv2 Group: Applications/Productivity -Source: http://www.integrazioneweb.com/monosim/packages/fedora/%{name}-%{version}.tar.gz +Source: http://www.integrazioneweb.com/repository/SOURCES/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://www.integrazioneweb.com/monosim BuildRequires: gtk-sharp2-devel >= 2.8.3 BuildRequires: mono-core >= 1.2.3 -BuildRequires: mono-web >= 1.2.3 BuildRequires: pkgconfig -BuildRequires: desktop-file-utils +#BuildRequires: desktop-file-utils Requires: gtk-sharp2 >= 2.8.3 Requires: mono-core >= 1.2.3 -Requires: mono-web >= 1.2.3 Requires: pcsc-lite >= 1.0.0 Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 @@ -41,24 +39,35 @@ make %{?_smp_mflags} %install rm -fr %{buildroot} make DESTDIR=%{buildroot} install -desktop-file-install --vendor="fedora" \ - --dir=%{buildroot}%{_datadir}/applications \ - monoSIM/images/%{name}.desktop +# desktop-file-install --vendor="fedora" \ +# --dir=%{buildroot}%{_datadir}/applications \ +# monoSIM/images/%{name}.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc README -%doc COPYING.GPL +%doc monosim/copying.gpl %{_bindir}/%{name} %{_libdir}/%{name}/ %{_datadir}/pixmaps/%{name}.png -%{_datadir}/applications/fedora-monosim.desktop +%{_datadir}/applications/monosim.desktop %changelog +* Thu Jul 30 2009 A.Basile 1.5.2-1 +- bug fixed: issue 4/5 - fix verified (pin1 enable/disable) +- bug fixed: issue 6 - fix verified (monosim on 64 bit) +- bug fixed: issue 7 - fix verified (international numbers) +- bug fixed: issue 8 - fix verified (closing main window) +- bug fixed: cross compile compatibility (monodevelop, #develop) +- deleted pkgconfig file for monopcsclib +- modified monosim.desktop file (compliant to desktop-file-validate) + +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon May 25 2009 Xavier Lamien - 1.3.0.2-3 - build arch ppc64. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 Mar 2008 20:09:39 -0000 1.2 +++ sources 30 Jul 2009 19:01:56 -0000 1.3 @@ -1 +1 @@ -b416576f703b267d1c4532d01b67cb64 monosim-1.3.0.2.tar.gz +0a842f8443f04680efbdc9dacacb1ce0 monosim-1.5.2.tar.gz From kylev at fedoraproject.org Thu Jul 30 19:02:44 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Thu, 30 Jul 2009 19:02:44 +0000 (UTC) Subject: rpms/python-beaker/F-11 beaker-hmac2.4.patch, NONE, 1.1 python-beaker-absimport.patch, NONE, 1.1 python-beaker-middleware-config.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 python-beaker.spec, 1.9, 1.10 sources, 1.8, 1.9 Message-ID: <20090730190244.03CE711C00D3@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-beaker/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30774 Modified Files: .cvsignore python-beaker.spec sources Added Files: beaker-hmac2.4.patch python-beaker-absimport.patch python-beaker-middleware-config.patch Log Message: Begin back-porting Pylons 0.9.7 prereqs to F-11 beaker-hmac2.4.patch: crypto/pbkdf2.py | 12 ++++++++---- session.py | 26 ++++++++++++++++++++------ 2 files changed, 28 insertions(+), 10 deletions(-) --- NEW FILE beaker-hmac2.4.patch --- diff -up Beaker-1.3.1/beaker/crypto/pbkdf2.py.hmac Beaker-1.3.1/beaker/crypto/pbkdf2.py --- Beaker-1.3.1/beaker/crypto/pbkdf2.py.hmac 2008-09-19 16:49:24.000000000 -0700 +++ Beaker-1.3.1/beaker/crypto/pbkdf2.py 2009-06-20 12:05:47.994184824 -0700 @@ -79,12 +79,16 @@ try: except ImportError: # PyCrypto not available. Use the Python standard library. import hmac as HMAC - try: - from hashlib import sha1 as SHA1 - except ImportError: + import sys + # When using the stdlib, we have to make sure the hmac version and sha + # version are compatible + if sys.version_info[0:2] <= (2,4): + # hmac in python2.4 or less require the sha module + import sha as SHA1 + else: # NOTE: We have to use the callable with hashlib (hashlib.sha1), # otherwise hmac only accepts the sha module object itself - import sha as SHA1 + from hashlib import sha1 as SHA1 def strxor(a, b): return "".join([chr(ord(x) ^ ord(y)) for (x, y) in zip(a, b)]) diff -up Beaker-1.3.1/beaker/session.py.hmac Beaker-1.3.1/beaker/session.py --- Beaker-1.3.1/beaker/session.py.hmac 2009-05-05 09:58:19.000000000 -0700 +++ Beaker-1.3.1/beaker/session.py 2009-06-20 12:04:36.435934313 -0700 @@ -6,12 +6,26 @@ import random import time from datetime import datetime, timedelta try: - from hashlib import md5, sha1 + from hashlib import md5 except ImportError: from md5 import md5 - # NOTE: We have to use the callable with hashlib (hashlib.sha1), - # otherwise hmac only accepts the sha module object itself - import sha as sha1 +try: + # Use PyCrypto (if available) + from Crypto.Hash import HMAC, SHA as SHA1 + +except ImportError: + # PyCrypto not available. Use the Python standard library. + import hmac as HMAC + import sys + # When using the stdlib, we have to make sure the hmac version and sha + # version are compatible + if sys.version_info[0:2] <= (2,4): + # hmac in python2.4 or less require the sha module + import sha as SHA1 + else: + # NOTE: We have to use the callable with hashlib (hashlib.sha1), + # otherwise hmac only accepts the sha module object itself + from hashlib import sha1 as SHA1 # Check for pycryptopp encryption for AES try: @@ -37,14 +51,14 @@ class SignedCookie(Cookie.BaseCookie): def value_decode(self, val): val = val.strip('"') - sig = hmac.new(self.secret, val[40:], sha1).hexdigest() + sig = HMAC.new(self.secret, val[40:], SHA1).hexdigest() if sig != val[:40]: return None, val else: return val[40:], val def value_encode(self, val): - sig = hmac.new(self.secret, val, sha1).hexdigest() + sig = HMAC.new(self.secret, val, SHA1).hexdigest() return str(val), ("%s%s" % (sig, val)) python-beaker-absimport.patch: google.py | 1 - 1 file changed, 1 deletion(-) --- NEW FILE python-beaker-absimport.patch --- --- beaker/ext/google.py.orig 2009-06-27 13:57:33.000000000 -0400 +++ beaker/ext/google.py 2009-06-27 13:57:37.000000000 -0400 @@ -1,4 +1,3 @@ -from __future__ import absolute_import import cPickle import logging from datetime import datetime python-beaker-middleware-config.patch: middleware.py | 11 +++++++---- util.py | 9 ++++++--- 2 files changed, 13 insertions(+), 7 deletions(-) --- NEW FILE python-beaker-middleware-config.patch --- # HG changeset patch -- Bitbucket.org # Project beaker # URL http://bitbucket.org/bbangert/beaker/overview/ # User Ben Bangert # Date 1245698939 25200 # Node ID 403ef7c82d328c7c0057cde5510a387d830e1595 # Parent 9d0c12f93b4d65771e243fd96e81b40e137843cd * Fixed bug with CacheMiddleware overwriting configuration with default arguments despite prior setting. --- a/beaker/util.py +++ b/beaker/util.py @@ -304,12 +304,15 @@ def coerce_cache_params(params): return verify_rules(params, rules) -def parse_cache_config_options(config): +def parse_cache_config_options(config, include_defaults=True): """Parse configuration options and validate for use with the CacheManager""" # Load default cache options - options= dict(type='memory', data_dir=None, expire=None, - log_file=None) + if include_defaults: + options= dict(type='memory', data_dir=None, expire=None, + log_file=None) + else: + options = {} for key, val in config.iteritems(): if key.startswith('beaker.cache.'): options[key[13:]] = val --- a/beaker/middleware.py +++ b/beaker/middleware.py @@ -47,11 +47,14 @@ class CacheMiddleware(object): self.options = {} - # Pull out any config args starting with beaker cache. if there are any - for dct in [config, kwargs]: - parsed_opts = parse_cache_config_options(dct) - self.options.update(parsed_opts) + # Update the options with the parsed config + self.options.update(parse_cache_config_options(config)) + # Add any options from kwargs, but leave out the defaults this + # time + self.options.update( + parse_cache_config_options(kwargs, include_defaults=False)) + # Assume all keys are intended for cache if none are prefixed with # 'cache.' if not self.options and config: Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-beaker/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 7 Apr 2009 06:26:05 -0000 1.8 +++ .cvsignore 30 Jul 2009 19:02:43 -0000 1.9 @@ -1 +1 @@ -Beaker-1.3.tar.gz +Beaker-1.3.1.tar.gz Index: python-beaker.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-beaker/F-11/python-beaker.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- python-beaker.spec 7 Apr 2009 06:26:05 -0000 1.9 +++ python-beaker.spec 30 Jul 2009 19:02:43 -0000 1.10 @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: python-beaker -Version: 1.3 -Release: 1%{?dist} +Version: 1.3.1 +Release: 6%{?dist} Summary: WSGI middleware layer to provide sessions Group: Development/Languages @@ -12,6 +12,9 @@ Source0: http://pypi.python.org/packages BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel +Patch0: beaker-hmac2.4.patch +Patch1: %{name}-absimport.patch +Patch2: %{name}-middleware-config.patch %description Beaker is a caching library that includes Session and Cache objects built on @@ -21,6 +24,9 @@ manage Session objects and signed cookie %prep %setup -q -n Beaker-%{version} +%patch0 -p1 -b .hashlib +%patch1 -p0 -b .absimport +%patch2 -p1 -b .middleconfig %build @@ -44,6 +50,27 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.3.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jul 21 2009 Kyle VanderBeek - 1.3.1-5 +- Add patch based on upstream hg 403ef7c82d32 for config overwriting that + breaks Pylons unit tests + +* Sat Jun 27 2009 Luke Macken - 1.3.1-4 +- Add a patch to remove the use of __future__.absolute_import in the google + backend + +* Sat Jun 20 2009 Toshio Kuratomi - 1.3.1-3 +- Different hmac patch suitable for upstream inclusion. + +* Tue Jun 02 2009 Luke Macken - 1.3.1-2 +- Add a patch to remove Beaker's use of hashlib on Python2.4, + due to incompatiblities with Python's hmac module (#503772) + +* Sun May 31 2009 Luke Macken - 1.3.1-1 +- Update to 1.3.1 + * Tue Apr 07 2009 Felix Schwarz - 1.3-1 - Update to 1.3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-beaker/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 7 Apr 2009 06:26:05 -0000 1.8 +++ sources 30 Jul 2009 19:02:43 -0000 1.9 @@ -1 +1 @@ -b38afdc892460113609bf933284c75c5 Beaker-1.3.tar.gz +bdc4237d68f1a0f9b853d202a2d16617 Beaker-1.3.1.tar.gz From silfreed at fedoraproject.org Thu Jul 30 19:07:08 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 19:07:08 +0000 (UTC) Subject: rpms/qgis/devel .cvsignore, 1.8, 1.9 qgis.spec, 1.36, 1.37 sources, 1.8, 1.9 Message-ID: <20090730190708.8602311C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31753 Modified Files: .cvsignore qgis.spec sources Log Message: * Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 - updating for 1.0.2 - moving libqgispython.so to python subpackage for bug#507381 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qgis/devel/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 Feb 2009 22:09:04 -0000 1.8 +++ .cvsignore 30 Jul 2009 19:07:08 -0000 1.9 @@ -1 +1 @@ -qgis_1.0.1.tar.gz +qgis_1.0.2.tar.gz Index: qgis.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgis/devel/qgis.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- qgis.spec 25 Feb 2009 17:29:13 -0000 1.36 +++ qgis.spec 30 Jul 2009 19:07:08 -0000 1.37 @@ -2,8 +2,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: qgis -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: A user friendly Open Source Geographic Information System Group: Applications/Engineering @@ -217,7 +217,6 @@ desktop-file-install --vendor="fedora" \ %{_includedir}/%{name} %{_libdir}/lib%{name}_*.so %{_libdir}/libqgisgrass.so -%{_libdir}/libqgispython.so %files grass %defattr(-, root, root, -) @@ -229,6 +228,7 @@ desktop-file-install --vendor="fedora" \ %files python %defattr(-, root, root, -) %{_libdir}/libqgispython.so.* +%{_libdir}/libqgispython.so %{_datadir}/%{name}/python %{python_sitearch}/%{name} @@ -246,6 +246,10 @@ desktop-file-install --vendor="fedora" \ %changelog +* Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 +- updating for 1.0.2 +- moving libqgispython.so to python subpackage for bug#507381 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qgis/devel/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 Feb 2009 22:09:04 -0000 1.8 +++ sources 30 Jul 2009 19:07:08 -0000 1.9 @@ -1 +1 @@ -a9159461b2c34ca988829b5a23ae693e qgis_1.0.1.tar.gz +71faff161c0b893f75d008187b471fc8 qgis_1.0.2.tar.gz From silfreed at fedoraproject.org Thu Jul 30 19:09:30 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 19:09:30 +0000 (UTC) Subject: rpms/qtpfsgui/F-11 qtpfsgui-1.9.3-disable-sse2.patch, NONE, 1.1 qtpfsgui.spec, 1.15, 1.16 Message-ID: <20090730190930.8FC3311C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qtpfsgui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32157 Modified Files: qtpfsgui.spec Added Files: qtpfsgui-1.9.3-disable-sse2.patch Log Message: * Mon Jul 30 2009 Douglas E. Warner 1.9.3-1 - update to 1.9.3 - disabling SSE2 on all arches except x86_64 - Performance improvements on MultiCore Machines - Integrated pfstmo 1.3.x changes, including better Mantiuk performance - Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data" panel). - Added Hungarian language (thanks to Peter Gaal) - Added Indonesian language (thanks to Teddy Widhi Laksono) - Drag and Drop support for HDR creation/opening - UI improvements: new icons, cleanup of tonemapping panel - added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric - Now using native file saving dialogs on Windows and Mac - 'Save all' feature in tonemapping dialog. - Many bugfixes, including the old filename problem - Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and optimization - see pfstmo ChangeLog for more information - Renamed reinhard04 to reinhard05 (src directory and references) - Improved linux packaging system: docs and html target directories can be specified separately qtpfsgui-1.9.3-disable-sse2.patch: project.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE qtpfsgui-1.9.3-disable-sse2.patch --- diff -ruN qtpfsgui-1.9.3-orig/project.pro qtpfsgui-1.9.3/project.pro --- qtpfsgui-1.9.3-orig/project.pro 2009-03-29 09:25:15.000000000 -0400 +++ qtpfsgui-1.9.3/project.pro 2009-07-30 14:38:06.000000000 -0400 @@ -3,7 +3,7 @@ DEFINES += QT_NO_DEBUG_OUTPUT # Assume openmp-capable g++ (>=4.2) -QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp -msse2 +QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp QMAKE_LFLAGS += -fopenmp TARGET = qtpfsgui Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-11/qtpfsgui.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- qtpfsgui.spec 25 Feb 2009 18:16:04 -0000 1.15 +++ qtpfsgui.spec 30 Jul 2009 19:09:30 -0000 1.16 @@ -1,12 +1,13 @@ Name: qtpfsgui -Version: 1.9.2 -Release: 4%{?dist} +Version: 1.9.3 +Release: 1%{?dist} Summary: A graphical tool for creating and tone-mapping HDR images Group: Applications/Productivity License: GPLv2+ URL: http://qtpfsgui.sourceforge.net/ Source0: http://downloads.sourceforge.net/qtpfsgui/%{name}-%{version}.tar.gz +Patch0: qtpfsgui-1.9.3-disable-sse2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel @@ -26,6 +27,11 @@ operators for creating low dynamic range %prep %setup -q +# fix missing SSE on everything bug x86_64 +%ifnarch x86_64 +%patch0 -p1 +%endif + # fix inconsistant newlines %{__sed} -i 's/\r//' Changelog @@ -68,10 +74,32 @@ fi %{_bindir}/%{name} %{_datadir}/%{name} %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/icons/hicolor/48x48/apps/%{name}.png +%{_datadir}/icons/hicolor/32x32/apps/%{name}.png %changelog +* Mon Jul 30 2009 Douglas E. Warner 1.9.3-1 +- update to 1.9.3 +- disabling SSE2 on all arches except x86_64 +- Performance improvements on MultiCore Machines +- Integrated pfstmo 1.3.x changes, including better Mantiuk performance +- Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data" + panel). +- Added Hungarian language (thanks to Peter Gaal) +- Added Indonesian language (thanks to Teddy Widhi Laksono) +- Drag and Drop support for HDR creation/opening +- UI improvements: new icons, cleanup of tonemapping panel +- added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric +- Now using native file saving dialogs on Windows and Mac +- 'Save all' feature in tonemapping dialog. +- Many bugfixes, including the old filename problem +- Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and + convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and + optimization - see pfstmo ChangeLog for more information +- Renamed reinhard04 to reinhard05 (src directory and references) +- Improved linux packaging system: docs and html target directories can be + specified separately + * Wed Feb 25 2009 Fedora Release Engineering - 1.9.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From silfreed at fedoraproject.org Thu Jul 30 19:10:17 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 19:10:17 +0000 (UTC) Subject: rpms/qtpfsgui/F-11 .cvsignore, 1.8, 1.9 qtpfsgui.spec, 1.16, 1.17 sources, 1.8, 1.9 Message-ID: <20090730191017.A3CF011C04D5@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qtpfsgui/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32460 Modified Files: .cvsignore qtpfsgui.spec sources Log Message: * Mon Jul 30 2009 Douglas E. Warner 1.9.3-2 - missing files in tag Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 9 May 2008 14:08:25 -0000 1.8 +++ .cvsignore 30 Jul 2009 19:10:17 -0000 1.9 @@ -1 +1 @@ -qtpfsgui-1.9.2.tar.gz +qtpfsgui-1.9.3.tar.gz Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-11/qtpfsgui.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- qtpfsgui.spec 30 Jul 2009 19:09:30 -0000 1.16 +++ qtpfsgui.spec 30 Jul 2009 19:10:17 -0000 1.17 @@ -1,6 +1,6 @@ Name: qtpfsgui Version: 1.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A graphical tool for creating and tone-mapping HDR images Group: Applications/Productivity @@ -78,6 +78,9 @@ fi %changelog +* Mon Jul 30 2009 Douglas E. Warner 1.9.3-2 +- missing files in tag + * Mon Jul 30 2009 Douglas E. Warner 1.9.3-1 - update to 1.9.3 - disabling SSE2 on all arches except x86_64 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 9 May 2008 14:08:25 -0000 1.8 +++ sources 30 Jul 2009 19:10:17 -0000 1.9 @@ -1 +1 @@ -8a037c1dc75f04752dc36a59e7237fc4 qtpfsgui-1.9.2.tar.gz +5a6421391e373c912e4a793e131151c8 qtpfsgui-1.9.3.tar.gz From silfreed at fedoraproject.org Thu Jul 30 19:11:03 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 19:11:03 +0000 (UTC) Subject: rpms/qtpfsgui/F-10 qtpfsgui-1.9.3-disable-sse2.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 qtpfsgui.spec, 1.13, 1.14 sources, 1.8, 1.9 Message-ID: <20090730191103.2A78D11C04D5@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qtpfsgui/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32744 Modified Files: .cvsignore qtpfsgui.spec sources Added Files: qtpfsgui-1.9.3-disable-sse2.patch Log Message: * Mon Jul 30 2009 Douglas E. Warner 1.9.3-1 - update to 1.9.3 - disabling SSE2 on all arches except x86_64 - Performance improvements on MultiCore Machines - Integrated pfstmo 1.3.x changes, including better Mantiuk performance - Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data" panel). - Added Hungarian language (thanks to Peter Gaal) - Added Indonesian language (thanks to Teddy Widhi Laksono) - Drag and Drop support for HDR creation/opening - UI improvements: new icons, cleanup of tonemapping panel - added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric - Now using native file saving dialogs on Windows and Mac - 'Save all' feature in tonemapping dialog. - Many bugfixes, including the old filename problem - Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and optimization - see pfstmo ChangeLog for more information - Renamed reinhard04 to reinhard05 (src directory and references) - Improved linux packaging system: docs and html target directories can be specified separately qtpfsgui-1.9.3-disable-sse2.patch: project.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE qtpfsgui-1.9.3-disable-sse2.patch --- diff -ruN qtpfsgui-1.9.3-orig/project.pro qtpfsgui-1.9.3/project.pro --- qtpfsgui-1.9.3-orig/project.pro 2009-03-29 09:25:15.000000000 -0400 +++ qtpfsgui-1.9.3/project.pro 2009-07-30 14:38:06.000000000 -0400 @@ -3,7 +3,7 @@ DEFINES += QT_NO_DEBUG_OUTPUT # Assume openmp-capable g++ (>=4.2) -QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp -msse2 +QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp QMAKE_LFLAGS += -fopenmp TARGET = qtpfsgui Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 9 May 2008 14:08:25 -0000 1.8 +++ .cvsignore 30 Jul 2009 19:11:02 -0000 1.9 @@ -1 +1 @@ -qtpfsgui-1.9.2.tar.gz +qtpfsgui-1.9.3.tar.gz Index: qtpfsgui.spec =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/qtpfsgui.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- qtpfsgui.spec 26 Jun 2008 13:35:19 -0000 1.13 +++ qtpfsgui.spec 30 Jul 2009 19:11:03 -0000 1.14 @@ -1,12 +1,13 @@ Name: qtpfsgui -Version: 1.9.2 -Release: 2%{?dist} +Version: 1.9.3 +Release: 1%{?dist} Summary: A graphical tool for creating and tone-mapping HDR images Group: Applications/Productivity License: GPLv2+ URL: http://qtpfsgui.sourceforge.net/ Source0: http://downloads.sourceforge.net/qtpfsgui/%{name}-%{version}.tar.gz +Patch0: qtpfsgui-1.9.3-disable-sse2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: qt4-devel @@ -26,6 +27,11 @@ operators for creating low dynamic range %prep %setup -q +# fix missing SSE on everything bug x86_64 +%ifnarch x86_64 +%patch0 -p1 +%endif + # fix inconsistant newlines %{__sed} -i 's/\r//' Changelog @@ -68,10 +74,32 @@ fi %{_bindir}/%{name} %{_datadir}/%{name} %{_datadir}/applications/fedora-%{name}.desktop -%{_datadir}/icons/hicolor/48x48/apps/%{name}.png +%{_datadir}/icons/hicolor/32x32/apps/%{name}.png %changelog +* Mon Jul 30 2009 Douglas E. Warner 1.9.3-1 +- update to 1.9.3 +- disabling SSE2 on all arches except x86_64 +- Performance improvements on MultiCore Machines +- Integrated pfstmo 1.3.x changes, including better Mantiuk performance +- Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data" + panel). +- Added Hungarian language (thanks to Peter Gaal) +- Added Indonesian language (thanks to Teddy Widhi Laksono) +- Drag and Drop support for HDR creation/opening +- UI improvements: new icons, cleanup of tonemapping panel +- added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric +- Now using native file saving dialogs on Windows and Mac +- 'Save all' feature in tonemapping dialog. +- Many bugfixes, including the old filename problem +- Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and + convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and + optimization - see pfstmo ChangeLog for more information +- Renamed reinhard04 to reinhard05 (src directory and references) +- Improved linux packaging system: docs and html target directories can be + specified separately + * Thu Jun 26 2008 Douglas E. Warner 1.9.2-2 - rebuild for libexiv2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 9 May 2008 14:08:25 -0000 1.8 +++ sources 30 Jul 2009 19:11:03 -0000 1.9 @@ -1 +1 @@ -8a037c1dc75f04752dc36a59e7237fc4 qtpfsgui-1.9.2.tar.gz +5a6421391e373c912e4a793e131151c8 qtpfsgui-1.9.3.tar.gz From hman-it at fedoraproject.org Thu Jul 30 19:13:10 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:13:10 +0000 (UTC) Subject: rpms/monosim/F-10 .cvsignore, 1.2, 1.3 monosim.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730191310.2ACC311C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv903 Modified Files: .cvsignore monosim.spec sources Log Message: Update to 1.5.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Mar 2008 20:09:39 -0000 1.2 +++ .cvsignore 30 Jul 2009 19:13:09 -0000 1.3 @@ -1 +1 @@ -monosim-1.3.0.2.tar.gz +monosim-1.5.2.tar.gz Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- monosim.spec 27 Mar 2008 20:09:39 -0000 1.1 +++ monosim.spec 30 Jul 2009 19:13:09 -0000 1.2 @@ -1,23 +1,20 @@ Summary: Manage your SIM Card contacts Name: monosim -Version: 1.3.0.2 +Version: 1.5.2 Release: 1%{?dist} License: GPLv2 -ExcludeArch: ppc64 Group: Applications/Productivity -Source: http://www.integrazioneweb.com/monosim/packages/fedora/%{name}-%{version}.tar.gz +Source: http://www.integrazioneweb.com/repository/SOURCES/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root URL: http://www.integrazioneweb.com/monosim BuildRequires: gtk-sharp2-devel >= 2.8.3 BuildRequires: mono-core >= 1.2.3 -BuildRequires: mono-web >= 1.2.3 BuildRequires: pkgconfig -BuildRequires: desktop-file-utils +#BuildRequires: desktop-file-utils Requires: gtk-sharp2 >= 2.8.3 Requires: mono-core >= 1.2.3 -Requires: mono-web >= 1.2.3 Requires: pcsc-lite >= 1.0.0 Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 @@ -42,24 +39,41 @@ make %{?_smp_mflags} %install rm -fr %{buildroot} make DESTDIR=%{buildroot} install -desktop-file-install --vendor="fedora" \ - --dir=%{buildroot}%{_datadir}/applications \ - monoSIM/images/%{name}.desktop +# desktop-file-install --vendor="fedora" \ +# --dir=%{buildroot}%{_datadir}/applications \ +# monoSIM/images/%{name}.desktop %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc README -%doc COPYING.GPL +%doc monosim/copying.gpl %{_bindir}/%{name} %{_libdir}/%{name}/ %{_datadir}/pixmaps/%{name}.png -%{_datadir}/applications/fedora-monosim.desktop +%{_datadir}/applications/monosim.desktop %changelog +* Thu Jul 30 2009 A.Basile 1.5.2-1 +- bug fixed: issue 4/5 - fix verified (pin1 enable/disable) +- bug fixed: issue 6 - fix verified (monosim on 64 bit) +- bug fixed: issue 7 - fix verified (international numbers) +- bug fixed: issue 8 - fix verified (closing main window) +- bug fixed: cross compile compatibility (monodevelop, #develop) +- deleted pkgconfig file for monopcsclib +- modified monosim.desktop file (compliant to desktop-file-validate) + +* Sat Jul 25 2009 Fedora Release Engineering - 1.3.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon May 25 2009 Xavier Lamien - 1.3.0.2-3 +- build arch ppc64. + +* Wed Feb 25 2009 Fedora Release Engineering - 1.3.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Mon Jul 02 2007 hman 1.3.0.2-1 - bug fixed: Fixed wrong label position reference in language files - added support informations in language files Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 Mar 2008 20:09:39 -0000 1.2 +++ sources 30 Jul 2009 19:13:09 -0000 1.3 @@ -1 +1 @@ -b416576f703b267d1c4532d01b67cb64 monosim-1.3.0.2.tar.gz +0a842f8443f04680efbdc9dacacb1ce0 monosim-1.5.2.tar.gz From rdieter at fedoraproject.org Thu Jul 30 19:14:40 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 19:14:40 +0000 (UTC) Subject: rpms/OpenEXR/EL-5 openexr-1.4.0-CVE-2009-1722.patch, NONE, 1.1 openexr-1.4.0-gcc43.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-1.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-2.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1721.patch, NONE, 1.1 OpenEXR.spec, 1.13, 1.14 Message-ID: <20090730191440.A467B11C00D3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1573 Modified Files: OpenEXR.spec Added Files: openexr-1.4.0-CVE-2009-1722.patch openexr-1.4.0-gcc43.patch openexr-1.6.1-CVE-2009-1720-1.patch openexr-1.6.1-CVE-2009-1720-2.patch openexr-1.6.1-CVE-2009-1721.patch Log Message: * Thu Jul 30 2009 Rex Dieter 1.4.0a-5 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) - CVE-2009-1722 OpenEXR: Integer overflow in decompression of range of values in the pixel data (#514016) openexr-1.4.0-CVE-2009-1722.patch: ImfHeader.cpp | 73 ++++++++++++++++++++++++++++++++++++++++++++++++--- ImfHeader.h | 20 +++++++++++++ ImfPizCompressor.cpp | 7 ++++ 3 files changed, 96 insertions(+), 4 deletions(-) --- NEW FILE openexr-1.4.0-CVE-2009-1722.patch --- diff -up openexr-1.4.0/IlmImf/ImfHeader.cpp.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfHeader.cpp --- openexr-1.4.0/IlmImf/ImfHeader.cpp.CVE-2009-1722 2006-06-04 21:04:52.000000000 -0500 +++ openexr-1.4.0/IlmImf/ImfHeader.cpp 2009-07-30 14:01:07.213632289 -0500 @@ -80,6 +80,12 @@ using IlmThread::Lock; namespace { +int maxImageWidth = 0; +int maxImageHeight = 0; +int maxTileWidth = 0; +int maxTileHeight = 0; + + void initialize (Header &header, const Box2i &displayWindow, @@ -514,21 +520,50 @@ void Header::sanityCheck (bool isTiled) const { // - // The display window and the data window - // must contain at least one pixel each. + // The display window and the data window must each + // contain at least one pixel. In addition, the + // coordinates of the window corners must be small + // enough to keep expressions like max-min+1 or + // max+min from overflowing. // const Box2i &displayWindow = this->displayWindow(); if (displayWindow.min.x > displayWindow.max.x || - displayWindow.min.y > displayWindow.max.y) + displayWindow.min.y > displayWindow.max.y || + displayWindow.min.x <= -(INT_MAX / 2) || + displayWindow.min.y <= -(INT_MAX / 2) || + displayWindow.max.x >= (INT_MAX / 2) || + displayWindow.max.y >= (INT_MAX / 2)) + { throw Iex::ArgExc ("Invalid display window in image header."); + } const Box2i &dataWindow = this->dataWindow(); if (dataWindow.min.x > dataWindow.max.x || - dataWindow.min.y > dataWindow.max.y) + dataWindow.min.y > dataWindow.max.y || + dataWindow.min.x <= -(INT_MAX / 2) || + dataWindow.min.y <= -(INT_MAX / 2) || + dataWindow.max.x >= (INT_MAX / 2) || + dataWindow.max.y >= (INT_MAX / 2)) + { throw Iex::ArgExc ("Invalid data window in image header."); + } + + if (maxImageWidth > 0 && + maxImageWidth < dataWindow.max.x - dataWindow.min.x + 1) + { + THROW (Iex::ArgExc, "The width of the data window exceeds the " + "maximum width of " << maxImageWidth << "pixels."); + } + + if (maxImageHeight > 0 && + maxImageHeight < dataWindow.max.y - dataWindow.min.y + 1) + { + THROW (Iex::ArgExc, "The width of the data window exceeds the " + "maximum width of " << maxImageHeight << "pixels."); + } // // The pixel aspect ratio must be greater than 0. @@ -587,6 +622,20 @@ Header::sanityCheck (bool isTiled) const if (tileDesc.xSize <= 0 || tileDesc.ySize <= 0) throw Iex::ArgExc ("Invalid tile size in image header."); + if (maxTileWidth > 0 && + maxTileWidth < tileDesc.xSize) + { + THROW (Iex::ArgExc, "The width of the tiles exceeds the maximum " + "width of " << maxTileWidth << "pixels."); + } + + if (maxTileHeight > 0 && + maxTileHeight < tileDesc.ySize) + { + THROW (Iex::ArgExc, "The width of the tiles exceeds the maximum " + "width of " << maxTileHeight << "pixels."); + } + if (tileDesc.mode != ONE_LEVEL && tileDesc.mode != MIPMAP_LEVELS && tileDesc.mode != RIPMAP_LEVELS) @@ -725,6 +774,22 @@ Header::sanityCheck (bool isTiled) const } +void +Header::setMaxImageSize (int maxWidth, int maxHeight) +{ + maxImageWidth = maxWidth; + maxImageHeight = maxHeight; +} + + +void +Header::setMaxTileSize (int maxWidth, int maxHeight) +{ + maxTileWidth = maxWidth; + maxTileHeight = maxHeight; +} + + Int64 Header::writeTo (OStream &os, bool isTiled) const { diff -up openexr-1.4.0/IlmImf/ImfHeader.h.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfHeader.h --- openexr-1.4.0/IlmImf/ImfHeader.h.CVE-2009-1722 2006-06-04 21:04:52.000000000 -0500 +++ openexr-1.4.0/IlmImf/ImfHeader.h 2009-07-30 14:01:07.213632289 -0500 @@ -299,6 +299,26 @@ class Header void sanityCheck (bool isTiled = false) const; + //---------------------------------------------------------------- + // Maximum image size and maximim tile size: + // + // sanityCheck() will throw an exception if the width or height of + // the data window exceeds the maximum image width or height, or + // if the size of a tile exceeds the maximum tile width or height. + // + // At program startup the maximum image and tile width and height + // are set to zero, meaning that width and height are unlimited. + // + // Limiting image and tile width and height limits how much memory + // will be allocated when a file is opened. This can help protect + // applications from running out of memory while trying to read + // a damaged image file. + //---------------------------------------------------------------- + + static void setMaxImageSize (int maxWidth, int maxHeight); + static void setMaxTileSize (int maxWidth, int maxHeight); + + //------------------------------------------------------------------ // Input and output: // diff -up openexr-1.4.0/IlmImf/ImfPizCompressor.cpp.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfPizCompressor.cpp --- openexr-1.4.0/IlmImf/ImfPizCompressor.cpp.CVE-2009-1722 2009-07-30 14:01:07.205616394 -0500 +++ openexr-1.4.0/IlmImf/ImfPizCompressor.cpp 2009-07-30 14:01:07.214632487 -0500 @@ -60,6 +60,7 @@ using Imath::divp; using Imath::modp; using Imath::Box2i; using Imath::V2i; +using Iex::InputExc; namespace { @@ -556,6 +557,12 @@ PizCompressor::uncompress (const char *i Xdr::read (inPtr, minNonZero); Xdr::read (inPtr, maxNonZero); + if (maxNonZero >= BITMAP_SIZE) + { + throw InputExc ("Error in header for PIZ-compressed data " + "(invalid bitmap size)."); + } + if (minNonZero <= maxNonZero) { Xdr::read (inPtr, (char *) &bitmap[0] + minNonZero, openexr-1.4.0-gcc43.patch: exrenvmap/main.cpp | 3 ++- exrmaketiled/main.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE openexr-1.4.0-gcc43.patch --- diff -up openexr-1.4.0/exrenvmap/main.cpp.gcc43 openexr-1.4.0/exrenvmap/main.cpp --- openexr-1.4.0/exrenvmap/main.cpp.gcc43 2004-03-22 22:23:39.000000000 -0600 +++ openexr-1.4.0/exrenvmap/main.cpp 2009-07-30 14:08:20.174867457 -0500 @@ -42,9 +42,10 @@ #include #include #include +#include #include #include -#include +#include using namespace Imf; using namespace std; diff -up openexr-1.4.0/exrmaketiled/main.cpp.gcc43 openexr-1.4.0/exrmaketiled/main.cpp --- openexr-1.4.0/exrmaketiled/main.cpp.gcc43 2004-12-06 19:49:33.000000000 -0600 +++ openexr-1.4.0/exrmaketiled/main.cpp 2009-07-30 14:07:38.338618026 -0500 @@ -44,7 +44,7 @@ #include #include -#include +#include #include using namespace Imf; openexr-1.6.1-CVE-2009-1720-1.patch: ImfPreviewImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-1.patch --- diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.cpp --- openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 2006-06-06 00:58:16.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPreviewImage.cpp 2009-07-29 13:27:39.087038617 -0500 @@ -41,6 +41,7 @@ #include #include "Iex.h" +#include namespace Imf { @@ -51,6 +52,9 @@ PreviewImage::PreviewImage (unsigned int { _width = width; _height = height; + if (_height && _width > UINT_MAX / _height || _width * _height > UINT_MAX / sizeof(PreviewRgba)) { + throw Iex::ArgExc ("Invalid height and width."); + } _pixels = new PreviewRgba [_width * _height]; if (pixels) diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.h.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.h openexr-1.6.1-CVE-2009-1720-2.patch: ImfPizCompressor.cpp | 3 +++ ImfRleCompressor.cpp | 3 +++ ImfZipCompressor.cpp | 3 +++ 3 files changed, 9 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-2.patch --- diff -up openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfPizCompressor.cpp --- openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 2007-09-20 23:17:46.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPizCompressor.cpp 2009-07-29 13:15:41.883288491 -0500 @@ -181,6 +181,9 @@ PizCompressor::PizCompressor _channels (hdr.channels()), _channelData (0) { + if ((unsigned) maxScanLineSize > (INT_MAX - 65536 - 8192) / (unsigned) numScanLines) { + throw InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new unsigned short [maxScanLineSize * numScanLines / 2]; _outBuffer = new char [maxScanLineSize * numScanLines + 65536 + 8192]; diff -up openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfRleCompressor.cpp --- openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:06:39.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfRleCompressor.cpp 2009-07-29 13:17:39.505037955 -0500 @@ -164,6 +164,9 @@ RleCompressor::RleCompressor (const Head _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / 3) { + throw Iex::InputExc ("Error: maxScanLineSize * 3 would overflow."); + } _tmpBuffer = new char [maxScanLineSize]; _outBuffer = new char [maxScanLineSize * 3 / 2]; } diff -up openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfZipCompressor.cpp --- openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:07:17.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfZipCompressor.cpp 2009-07-29 13:18:25.223038291 -0500 @@ -58,6 +58,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) { + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new char [maxScanLineSize * numScanLines]; openexr-1.6.1-CVE-2009-1721.patch: ImfAutoArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openexr-1.6.1-CVE-2009-1721.patch --- diff -up openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 openexr-1.6.1/IlmImf/ImfAutoArray.h --- openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 2007-04-23 20:26:56.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfAutoArray.h 2009-07-29 13:22:08.309288375 -0500 @@ -57,7 +57,7 @@ namespace Imf { { public: - AutoArray (): _data (new T [size]) {} + AutoArray (): _data (new T [size]) {memset(_data, 0, size * sizeof(T));} ~AutoArray () {delete [] _data;} operator T * () {return _data;} Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/EL-5/OpenEXR.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- OpenEXR.spec 12 Jun 2007 03:09:34 -0000 1.13 +++ OpenEXR.spec 30 Jul 2009 19:14:40 -0000 1.14 @@ -4,7 +4,7 @@ Name: OpenEXR Version: %{ver}%{?beta} -Release: 4%{?dist} +Release: 5%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -20,6 +20,13 @@ Provides: openexr = %{version}-%{releas Patch1: openexr-1.4.0-no_undefined.patch # Use Libs.private Patch2: openexr-1.4.0-pkgconfig.patch +Patch3: openexr-1.4.0-gcc43.patch + +## upstream patches +Patch100: openexr-1.6.1-CVE-2009-1720-1.patch +Patch101: openexr-1.6.1-CVE-2009-1720-2.patch +Patch102: openexr-1.6.1-CVE-2009-1721.patch +Patch103: openexr-1.4.0-CVE-2009-1722.patch BuildRequires: fltk-devel >= 1.1 BuildRequires: zlib-devel @@ -46,6 +53,12 @@ Requires: pkgconfig %patch1 -p1 -b .no_undefined %patch2 -p1 -b .pkgconfig +%patch3 -p1 -b .gcc43 + +%patch100 -p1 -b .CVE-2009-1720-1 +%patch101 -p1 -b .CVE-2009-1720-2 +%patch102 -p1 -b .CVE-2009-1721 +%patch103 -p1 -b .CVE-2009-1722 # for patch1 ./bootstrap @@ -89,18 +102,29 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS ChangeLog LICENSE NEWS README %{_bindir}/* -%{_libdir}/lib*.so.* +%{_libdir}/libHalf.so.4* +%{_libdir}/libIex.so.4* +%{_libdir}/libIlmImf.so.4* +%{_libdir}/libIlmThread.so.4* +%{_libdir}/libImath.so.4* %files devel %defattr(-,root,root,-) -%doc rpmdocs/examples -%{_datadir}/aclocal/* +#omit for now, they're mostly useless, and include multilib conflicts (#342781) +#doc rpmdocs/examples +%{_datadir}/aclocal/openexr.m4 %{_includedir}/OpenEXR/ %{_libdir}/lib*.so -%{_libdir}/pkgconfig/* +%{_libdir}/pkgconfig/OpenEXR.pc %changelog +* Thu Jul 30 2009 Rex Dieter 1.4.0a-5 +- CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) +- CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) +- CVE-2009-1722 OpenEXR: Integer overflow in decompression of range of values + in the pixel data (#514016) + * Sat Oct 28 2006 Rex Dieter 1.4.0a-4 - Obsoletes/Provides: openexr(-devel) (rpmforge compatibility) From rdieter at fedoraproject.org Thu Jul 30 19:15:41 2009 From: rdieter at fedoraproject.org (Rex Dieter) Date: Thu, 30 Jul 2009 19:15:41 +0000 (UTC) Subject: rpms/OpenEXR/EL-4 openexr-1.4.0-CVE-2009-1722.patch, NONE, 1.1 openexr-1.4.0-gcc43.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-1.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1720-2.patch, NONE, 1.1 openexr-1.6.1-CVE-2009-1721.patch, NONE, 1.1 OpenEXR.spec, 1.13, 1.14 Message-ID: <20090730191541.E723A11C00D3@cvs1.fedora.phx.redhat.com> Author: rdieter Update of /cvs/pkgs/rpms/OpenEXR/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1897 Modified Files: OpenEXR.spec Added Files: openexr-1.4.0-CVE-2009-1722.patch openexr-1.4.0-gcc43.patch openexr-1.6.1-CVE-2009-1720-1.patch openexr-1.6.1-CVE-2009-1720-2.patch openexr-1.6.1-CVE-2009-1721.patch Log Message: * Thu Jul 30 2009 Rex Dieter 1.4.0a-5 - CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) - CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) - CVE-2009-1722 OpenEXR: Integer overflow in decompression of range of values in the pixel data (#514016) openexr-1.4.0-CVE-2009-1722.patch: ImfHeader.cpp | 73 ++++++++++++++++++++++++++++++++++++++++++++++++--- ImfHeader.h | 20 +++++++++++++ ImfPizCompressor.cpp | 7 ++++ 3 files changed, 96 insertions(+), 4 deletions(-) --- NEW FILE openexr-1.4.0-CVE-2009-1722.patch --- diff -up openexr-1.4.0/IlmImf/ImfHeader.cpp.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfHeader.cpp --- openexr-1.4.0/IlmImf/ImfHeader.cpp.CVE-2009-1722 2006-06-04 21:04:52.000000000 -0500 +++ openexr-1.4.0/IlmImf/ImfHeader.cpp 2009-07-30 14:01:07.213632289 -0500 @@ -80,6 +80,12 @@ using IlmThread::Lock; namespace { +int maxImageWidth = 0; +int maxImageHeight = 0; +int maxTileWidth = 0; +int maxTileHeight = 0; + + void initialize (Header &header, const Box2i &displayWindow, @@ -514,21 +520,50 @@ void Header::sanityCheck (bool isTiled) const { // - // The display window and the data window - // must contain at least one pixel each. + // The display window and the data window must each + // contain at least one pixel. In addition, the + // coordinates of the window corners must be small + // enough to keep expressions like max-min+1 or + // max+min from overflowing. // const Box2i &displayWindow = this->displayWindow(); if (displayWindow.min.x > displayWindow.max.x || - displayWindow.min.y > displayWindow.max.y) + displayWindow.min.y > displayWindow.max.y || + displayWindow.min.x <= -(INT_MAX / 2) || + displayWindow.min.y <= -(INT_MAX / 2) || + displayWindow.max.x >= (INT_MAX / 2) || + displayWindow.max.y >= (INT_MAX / 2)) + { throw Iex::ArgExc ("Invalid display window in image header."); + } const Box2i &dataWindow = this->dataWindow(); if (dataWindow.min.x > dataWindow.max.x || - dataWindow.min.y > dataWindow.max.y) + dataWindow.min.y > dataWindow.max.y || + dataWindow.min.x <= -(INT_MAX / 2) || + dataWindow.min.y <= -(INT_MAX / 2) || + dataWindow.max.x >= (INT_MAX / 2) || + dataWindow.max.y >= (INT_MAX / 2)) + { throw Iex::ArgExc ("Invalid data window in image header."); + } + + if (maxImageWidth > 0 && + maxImageWidth < dataWindow.max.x - dataWindow.min.x + 1) + { + THROW (Iex::ArgExc, "The width of the data window exceeds the " + "maximum width of " << maxImageWidth << "pixels."); + } + + if (maxImageHeight > 0 && + maxImageHeight < dataWindow.max.y - dataWindow.min.y + 1) + { + THROW (Iex::ArgExc, "The width of the data window exceeds the " + "maximum width of " << maxImageHeight << "pixels."); + } // // The pixel aspect ratio must be greater than 0. @@ -587,6 +622,20 @@ Header::sanityCheck (bool isTiled) const if (tileDesc.xSize <= 0 || tileDesc.ySize <= 0) throw Iex::ArgExc ("Invalid tile size in image header."); + if (maxTileWidth > 0 && + maxTileWidth < tileDesc.xSize) + { + THROW (Iex::ArgExc, "The width of the tiles exceeds the maximum " + "width of " << maxTileWidth << "pixels."); + } + + if (maxTileHeight > 0 && + maxTileHeight < tileDesc.ySize) + { + THROW (Iex::ArgExc, "The width of the tiles exceeds the maximum " + "width of " << maxTileHeight << "pixels."); + } + if (tileDesc.mode != ONE_LEVEL && tileDesc.mode != MIPMAP_LEVELS && tileDesc.mode != RIPMAP_LEVELS) @@ -725,6 +774,22 @@ Header::sanityCheck (bool isTiled) const } +void +Header::setMaxImageSize (int maxWidth, int maxHeight) +{ + maxImageWidth = maxWidth; + maxImageHeight = maxHeight; +} + + +void +Header::setMaxTileSize (int maxWidth, int maxHeight) +{ + maxTileWidth = maxWidth; + maxTileHeight = maxHeight; +} + + Int64 Header::writeTo (OStream &os, bool isTiled) const { diff -up openexr-1.4.0/IlmImf/ImfHeader.h.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfHeader.h --- openexr-1.4.0/IlmImf/ImfHeader.h.CVE-2009-1722 2006-06-04 21:04:52.000000000 -0500 +++ openexr-1.4.0/IlmImf/ImfHeader.h 2009-07-30 14:01:07.213632289 -0500 @@ -299,6 +299,26 @@ class Header void sanityCheck (bool isTiled = false) const; + //---------------------------------------------------------------- + // Maximum image size and maximim tile size: + // + // sanityCheck() will throw an exception if the width or height of + // the data window exceeds the maximum image width or height, or + // if the size of a tile exceeds the maximum tile width or height. + // + // At program startup the maximum image and tile width and height + // are set to zero, meaning that width and height are unlimited. + // + // Limiting image and tile width and height limits how much memory + // will be allocated when a file is opened. This can help protect + // applications from running out of memory while trying to read + // a damaged image file. + //---------------------------------------------------------------- + + static void setMaxImageSize (int maxWidth, int maxHeight); + static void setMaxTileSize (int maxWidth, int maxHeight); + + //------------------------------------------------------------------ // Input and output: // diff -up openexr-1.4.0/IlmImf/ImfPizCompressor.cpp.CVE-2009-1722 openexr-1.4.0/IlmImf/ImfPizCompressor.cpp --- openexr-1.4.0/IlmImf/ImfPizCompressor.cpp.CVE-2009-1722 2009-07-30 14:01:07.205616394 -0500 +++ openexr-1.4.0/IlmImf/ImfPizCompressor.cpp 2009-07-30 14:01:07.214632487 -0500 @@ -60,6 +60,7 @@ using Imath::divp; using Imath::modp; using Imath::Box2i; using Imath::V2i; +using Iex::InputExc; namespace { @@ -556,6 +557,12 @@ PizCompressor::uncompress (const char *i Xdr::read (inPtr, minNonZero); Xdr::read (inPtr, maxNonZero); + if (maxNonZero >= BITMAP_SIZE) + { + throw InputExc ("Error in header for PIZ-compressed data " + "(invalid bitmap size)."); + } + if (minNonZero <= maxNonZero) { Xdr::read (inPtr, (char *) &bitmap[0] + minNonZero, openexr-1.4.0-gcc43.patch: exrenvmap/main.cpp | 3 ++- exrmaketiled/main.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) --- NEW FILE openexr-1.4.0-gcc43.patch --- diff -up openexr-1.4.0/exrenvmap/main.cpp.gcc43 openexr-1.4.0/exrenvmap/main.cpp --- openexr-1.4.0/exrenvmap/main.cpp.gcc43 2004-03-22 22:23:39.000000000 -0600 +++ openexr-1.4.0/exrenvmap/main.cpp 2009-07-30 14:08:20.174867457 -0500 @@ -42,9 +42,10 @@ #include #include #include +#include #include #include -#include +#include using namespace Imf; using namespace std; diff -up openexr-1.4.0/exrmaketiled/main.cpp.gcc43 openexr-1.4.0/exrmaketiled/main.cpp --- openexr-1.4.0/exrmaketiled/main.cpp.gcc43 2004-12-06 19:49:33.000000000 -0600 +++ openexr-1.4.0/exrmaketiled/main.cpp 2009-07-30 14:07:38.338618026 -0500 @@ -44,7 +44,7 @@ #include #include -#include +#include #include using namespace Imf; openexr-1.6.1-CVE-2009-1720-1.patch: ImfPreviewImage.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-1.patch --- diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.cpp --- openexr-1.6.1/IlmImf/ImfPreviewImage.cpp.CVE-2009-1720-1 2006-06-06 00:58:16.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPreviewImage.cpp 2009-07-29 13:27:39.087038617 -0500 @@ -41,6 +41,7 @@ #include #include "Iex.h" +#include namespace Imf { @@ -51,6 +52,9 @@ PreviewImage::PreviewImage (unsigned int { _width = width; _height = height; + if (_height && _width > UINT_MAX / _height || _width * _height > UINT_MAX / sizeof(PreviewRgba)) { + throw Iex::ArgExc ("Invalid height and width."); + } _pixels = new PreviewRgba [_width * _height]; if (pixels) diff -up openexr-1.6.1/IlmImf/ImfPreviewImage.h.CVE-2009-1720-1 openexr-1.6.1/IlmImf/ImfPreviewImage.h openexr-1.6.1-CVE-2009-1720-2.patch: ImfPizCompressor.cpp | 3 +++ ImfRleCompressor.cpp | 3 +++ ImfZipCompressor.cpp | 3 +++ 3 files changed, 9 insertions(+) --- NEW FILE openexr-1.6.1-CVE-2009-1720-2.patch --- diff -up openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfPizCompressor.cpp --- openexr-1.6.1/IlmImf/ImfPizCompressor.cpp.CVE-2009-1720-2 2007-09-20 23:17:46.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfPizCompressor.cpp 2009-07-29 13:15:41.883288491 -0500 @@ -181,6 +181,9 @@ PizCompressor::PizCompressor _channels (hdr.channels()), _channelData (0) { + if ((unsigned) maxScanLineSize > (INT_MAX - 65536 - 8192) / (unsigned) numScanLines) { + throw InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new unsigned short [maxScanLineSize * numScanLines / 2]; _outBuffer = new char [maxScanLineSize * numScanLines + 65536 + 8192]; diff -up openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfRleCompressor.cpp --- openexr-1.6.1/IlmImf/ImfRleCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:06:39.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfRleCompressor.cpp 2009-07-29 13:17:39.505037955 -0500 @@ -164,6 +164,9 @@ RleCompressor::RleCompressor (const Head _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / 3) { + throw Iex::InputExc ("Error: maxScanLineSize * 3 would overflow."); + } _tmpBuffer = new char [maxScanLineSize]; _outBuffer = new char [maxScanLineSize * 3 / 2]; } diff -up openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 openexr-1.6.1/IlmImf/ImfZipCompressor.cpp --- openexr-1.6.1/IlmImf/ImfZipCompressor.cpp.CVE-2009-1720-2 2006-10-13 22:07:17.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfZipCompressor.cpp 2009-07-29 13:18:25.223038291 -0500 @@ -58,6 +58,9 @@ ZipCompressor::ZipCompressor _tmpBuffer (0), _outBuffer (0) { + if ((unsigned) maxScanLineSize > INT_MAX / (unsigned) numScanLines) { + throw Iex::InputExc ("Error: maxScanLineSize * numScanLines would overflow."); + } _tmpBuffer = new char [maxScanLineSize * numScanLines]; openexr-1.6.1-CVE-2009-1721.patch: ImfAutoArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE openexr-1.6.1-CVE-2009-1721.patch --- diff -up openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 openexr-1.6.1/IlmImf/ImfAutoArray.h --- openexr-1.6.1/IlmImf/ImfAutoArray.h.CVE-2009-1721 2007-04-23 20:26:56.000000000 -0500 +++ openexr-1.6.1/IlmImf/ImfAutoArray.h 2009-07-29 13:22:08.309288375 -0500 @@ -57,7 +57,7 @@ namespace Imf { { public: - AutoArray (): _data (new T [size]) {} + AutoArray (): _data (new T [size]) {memset(_data, 0, size * sizeof(T));} ~AutoArray () {delete [] _data;} operator T * () {return _data;} Index: OpenEXR.spec =================================================================== RCS file: /cvs/pkgs/rpms/OpenEXR/EL-4/OpenEXR.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- OpenEXR.spec 11 Dec 2006 23:46:19 -0000 1.13 +++ OpenEXR.spec 30 Jul 2009 19:15:41 -0000 1.14 @@ -4,7 +4,7 @@ Name: OpenEXR Version: %{ver}%{?beta} -Release: 4%{?dist} +Release: 5%{?dist} Summary: A high dynamic-range (HDR) image file format Group: System Environment/Libraries @@ -20,6 +20,13 @@ Provides: openexr = %{version}-%{releas Patch1: openexr-1.4.0-no_undefined.patch # Use Libs.private Patch2: openexr-1.4.0-pkgconfig.patch +Patch3: openexr-1.4.0-gcc43.patch + +## upstream patches +Patch100: openexr-1.6.1-CVE-2009-1720-1.patch +Patch101: openexr-1.6.1-CVE-2009-1720-2.patch +Patch102: openexr-1.6.1-CVE-2009-1721.patch +Patch103: openexr-1.4.0-CVE-2009-1722.patch BuildRequires: fltk-devel >= 1.1 BuildRequires: zlib-devel @@ -38,8 +45,7 @@ Provides: openexr-devel = %{version}-%{ Requires: %{name} = %{version}-%{release} Requires: pkgconfig %description devel -This package contains headers and libraries required to build applications that -use the %{name} format. +%{summary}. %prep @@ -47,6 +53,12 @@ use the %{name} format. %patch1 -p1 -b .no_undefined %patch2 -p1 -b .pkgconfig +%patch3 -p1 -b .gcc43 + +%patch100 -p1 -b .CVE-2009-1720-1 +%patch101 -p1 -b .CVE-2009-1720-2 +%patch102 -p1 -b .CVE-2009-1721 +%patch103 -p1 -b .CVE-2009-1722 # for patch1 ./bootstrap @@ -90,18 +102,29 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS ChangeLog LICENSE NEWS README %{_bindir}/* -%{_libdir}/lib*.so.* +%{_libdir}/libHalf.so.4* +%{_libdir}/libIex.so.4* +%{_libdir}/libIlmImf.so.4* +%{_libdir}/libIlmThread.so.4* +%{_libdir}/libImath.so.4* %files devel %defattr(-,root,root,-) -%doc rpmdocs/examples -%{_datadir}/aclocal/* +#omit for now, they're mostly useless, and include multilib conflicts (#342781) +#doc rpmdocs/examples +%{_datadir}/aclocal/openexr.m4 %{_includedir}/OpenEXR/ %{_libdir}/lib*.so -%{_libdir}/pkgconfig/* +%{_libdir}/pkgconfig/OpenEXR.pc %changelog +* Thu Jul 30 2009 Rex Dieter 1.4.0a-5 +- CVE-2009-1720 OpenEXR: Multiple integer overflows (#513995) +- CVE-2009-1721 OpenEXR: Invalid pointer free by image decompression (#514003) +- CVE-2009-1722 OpenEXR: Integer overflow in decompression of range of values + in the pixel data (#514016) + * Sat Oct 28 2006 Rex Dieter 1.4.0a-4 - Obsoletes/Provides: openexr(-devel) (rpmforge compatibility) From silfreed at fedoraproject.org Thu Jul 30 19:15:53 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 19:15:53 +0000 (UTC) Subject: rpms/qgis/devel qgis.spec,1.37,1.38 Message-ID: <20090730191553.D93A811C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2003 Modified Files: qgis.spec Log Message: fixing dir name Index: qgis.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgis/devel/qgis.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- qgis.spec 30 Jul 2009 19:07:08 -0000 1.37 +++ qgis.spec 30 Jul 2009 19:15:53 -0000 1.38 @@ -100,7 +100,7 @@ Addtional theme for qgis - nkids %prep -%setup -q -n %{name}_%{version} +%setup -q -n %{name}-%{version} # fix spurious executable bits %{__chmod} -x \ From devrim at fedoraproject.org Thu Jul 30 19:22:39 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:22:39 +0000 (UTC) Subject: rpms/postgresql_autodoc/devel .cvsignore, 1.3, 1.4 postgresql_autodoc.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090730192239.5C14B11C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4245 Modified Files: .cvsignore postgresql_autodoc.spec sources Log Message: Update to 1.40 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2008 23:47:39 -0000 1.3 +++ .cvsignore 30 Jul 2009 19:22:38 -0000 1.4 @@ -1 +1 @@ -postgresql_autodoc-1.31.tar.gz +postgresql_autodoc-1.40.tar.gz Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/devel/postgresql_autodoc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- postgresql_autodoc.spec 26 Jul 2009 19:17:47 -0000 1.4 +++ postgresql_autodoc.spec 30 Jul 2009 19:22:39 -0000 1.5 @@ -1,6 +1,6 @@ Name: postgresql_autodoc -Version: 1.31 -Release: 3%{?dist} +Version: 1.40 +Release: 1%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases License: BSD @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Thu Jul 30 2009 - Devrim GUNDUZ 1.40-1 +- Update to 1.40 + * Sun Jul 26 2009 Fedora Release Engineering - 1.31-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2008 23:47:39 -0000 1.3 +++ sources 30 Jul 2009 19:22:39 -0000 1.4 @@ -1 +1 @@ -0dbb61cf8b78da7ae9d12221f7a14d27 postgresql_autodoc-1.31.tar.gz +68c91ec94051b45feb4ed801698c4149 postgresql_autodoc-1.40.tar.gz From kylev at fedoraproject.org Thu Jul 30 19:24:44 2009 From: kylev at fedoraproject.org (Kyle VanderBeek) Date: Thu, 30 Jul 2009 19:24:44 +0000 (UTC) Subject: rpms/python-pylons/F-11 .cvsignore, 1.3, 1.4 python-pylons.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090730192444.6B1CE11C00D3@cvs1.fedora.phx.redhat.com> Author: kylev Update of /cvs/pkgs/rpms/python-pylons/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5076 Modified Files: .cvsignore python-pylons.spec sources Log Message: back port 0.9.7 final to F-11 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 Jan 2009 06:06:11 -0000 1.3 +++ .cvsignore 30 Jul 2009 19:24:42 -0000 1.4 @@ -1 +1 @@ -Pylons-0.9.7rc4.tar.gz +Pylons-0.9.7.tar.gz Index: python-pylons.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/F-11/python-pylons.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- python-pylons.spec 26 Feb 2009 23:11:36 -0000 1.4 +++ python-pylons.spec 30 Jul 2009 19:24:43 -0000 1.5 @@ -1,16 +1,14 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%define _rc rc4 - Name: python-pylons Version: 0.9.7 -Release: 0.2.%{_rc}%{?dist} +Release: 2%{?dist} Summary: Pylons web framework Group: Development/Languages License: BSD URL: http://www.pylonshq.com/ -Source0: http://pypi.python.org/packages/source/P/Pylons/Pylons-%{version}%{_rc}.tar.gz +Source0: http://pypi.python.org/packages/source/P/Pylons/Pylons-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: python-setuptools-devel @@ -21,23 +19,27 @@ BuildRequires: python-paste python-paste BuildRequires: python-formencode python-simplejson python-decorator BuildRequires: python-nose python-mako python-webob python-weberror BuildRequires: python-tempita python-webtest python-turbocheetah -BuildRequires: python-turbokid +BuildRequires: python-turbokid python-myghty python-genshi python-jinja2 +BuildRequires: python-coverage -Requires: python-routes >= 1.10.1 -Requires: python-webhelpers >= 0.6.3 -Requires: python-beaker >= 1.1.2 +Requires: python-routes >= 1.10.3 +Requires: python-webhelpers >= 0.6.4 +# Some versions of Beaker caused FTBFS bug 511511 +Requires: python-beaker >= 1.3.1-5 Requires: python-paste >= 1.7.2 Requires: python-paste-script >= 1.7.3 -Requires: python-paste-deploy >= 1.3.2 -Requires: python-formencode >= 1.2 -Requires: python-simplejson >= 2.0.4 -Requires: python-decorator >= 2.2.0 +Requires: python-paste-deploy >= 1.3.3 +Requires: python-formencode >= 1.2.1 +Requires: python-simplejson >= 2.0.8 +Requires: python-decorator >= 2.3.2 Requires: python-nose >= 0.10.4 -Requires: python-mako >= 0.2.3 -Requires: python-webob >= 0.9.4 -Requires: python-weberror >= 0.9.1 +Requires: python-mako >= 0.2.4 +Requires: python-webob >= 0.9.6.1 +Requires: python-weberror >= 0.10.1 +Requires: python-webtest >= 1.1 Requires: python-tempita >= 0.2 -Requires: python-webtest >= 1.0.3 +# TurboGears hooks pylons (if present) and barfs w/o myghty (Bug 497244) +Requires: python-myghty >= 1.1 %description @@ -52,9 +54,7 @@ website development in Python easy. Seve %prep -%setup -q -n Pylons-%{version}%{_rc} -# Trash up OSX tar'ed useless resource files. -find . -name '._*' -delete +%setup -q -n Pylons-%{version} %build @@ -64,8 +64,6 @@ find . -name '._*' -delete %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} -# Honestly, what package installs their tests?! -rm -rf %{buildroot}/%{python_sitelib}/tests %check @@ -83,6 +81,13 @@ rm -rf %{buildroot} %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.9.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 22 2009 Kyle VanderBeek - 0.9.7-1 +- Update to 0.9.7 final +- Remove some cleanups that have been fixed upstream + * Thu Feb 26 2009 Fedora Release Engineering - 0.9.7-0.2.rc4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-pylons/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 Jan 2009 06:06:11 -0000 1.3 +++ sources 30 Jul 2009 19:24:43 -0000 1.4 @@ -1 +1 @@ -464e5fa61f7d899899fd767176b9f42a Pylons-0.9.7rc4.tar.gz +f6de97faa730eb0e975f6b2e64a0c574 Pylons-0.9.7.tar.gz From devrim at fedoraproject.org Thu Jul 30 19:35:22 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:35:22 +0000 (UTC) Subject: rpms/postgresql_autodoc/EL-5 postgresql_autodoc.spec,1.2,1.3 Message-ID: <20090730193522.3C13411C0417@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7535/EL-5 Modified Files: postgresql_autodoc.spec Log Message: Update to 1.40 Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-5/postgresql_autodoc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- postgresql_autodoc.spec 17 Mar 2008 23:47:16 -0000 1.2 +++ postgresql_autodoc.spec 30 Jul 2009 19:35:22 -0000 1.3 @@ -1,5 +1,5 @@ Name: postgresql_autodoc -Version: 1.31 +Version: 1.40 Release: 1%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Thu Jul 30 2009 - Devrim GUNDUZ 1.40-1 +- Update to 1.40 + * Mon Mar 17 2008 - Devrim GUNDUZ 1.31-1 - Update to 1.31 From devrim at fedoraproject.org Thu Jul 30 19:35:22 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:35:22 +0000 (UTC) Subject: rpms/postgresql_autodoc/EL-4 postgresql_autodoc.spec,1.2,1.3 Message-ID: <20090730193522.2133C11C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7535/EL-4 Modified Files: postgresql_autodoc.spec Log Message: Update to 1.40 Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-4/postgresql_autodoc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- postgresql_autodoc.spec 17 Mar 2008 23:47:12 -0000 1.2 +++ postgresql_autodoc.spec 30 Jul 2009 19:35:21 -0000 1.3 @@ -1,5 +1,5 @@ Name: postgresql_autodoc -Version: 1.31 +Version: 1.40 Release: 1%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Thu Jul 30 2009 - Devrim GUNDUZ 1.40-1 +- Update to 1.40 + * Mon Mar 17 2008 - Devrim GUNDUZ 1.31-1 - Update to 1.31 From devrim at fedoraproject.org Thu Jul 30 19:35:22 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:35:22 +0000 (UTC) Subject: rpms/postgresql_autodoc/F-10 postgresql_autodoc.spec,1.2,1.3 Message-ID: <20090730193522.67D3111C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7535/F-10 Modified Files: postgresql_autodoc.spec Log Message: Update to 1.40 Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-10/postgresql_autodoc.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- postgresql_autodoc.spec 17 Mar 2008 23:47:39 -0000 1.2 +++ postgresql_autodoc.spec 30 Jul 2009 19:35:22 -0000 1.3 @@ -1,5 +1,5 @@ Name: postgresql_autodoc -Version: 1.31 +Version: 1.40 Release: 1%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Thu Jul 30 2009 - Devrim GUNDUZ 1.40-1 +- Update to 1.40 + * Mon Mar 17 2008 - Devrim GUNDUZ 1.31-1 - Update to 1.31 From devrim at fedoraproject.org Thu Jul 30 19:35:22 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:35:22 +0000 (UTC) Subject: rpms/postgresql_autodoc/F-11 postgresql_autodoc.spec,1.3,1.4 Message-ID: <20090730193522.8CC1111C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7535/F-11 Modified Files: postgresql_autodoc.spec Log Message: Update to 1.40 Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-11/postgresql_autodoc.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- postgresql_autodoc.spec 27 Feb 2009 01:54:51 -0000 1.3 +++ postgresql_autodoc.spec 30 Jul 2009 19:35:22 -0000 1.4 @@ -1,6 +1,6 @@ Name: postgresql_autodoc -Version: 1.31 -Release: 2%{?dist} +Version: 1.40 +Release: 1%{?dist} Summary: PostgreSQL AutoDoc Utility Group: Applications/Databases License: BSD @@ -44,6 +44,9 @@ rm -rf %{buildroot} %{_datadir}/pgsql/%{name} %changelog +* Thu Jul 30 2009 - Devrim GUNDUZ 1.40-1 +- Update to 1.40 + * Thu Feb 26 2009 Fedora Release Engineering - 1.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From mitr at fedoraproject.org Thu Jul 30 19:37:11 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Thu, 30 Jul 2009 19:37:11 +0000 (UTC) Subject: rpms/libuser/devel libuser-0.56.10-nscd.patch, NONE, 1.1 libuser.spec, 1.83, 1.84 Message-ID: <20090730193711.A0D7511C00D3@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/libuser/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8014 Modified Files: libuser.spec Added Files: libuser-0.56.10-nscd.patch Log Message: * Thu Jul 30 2009 Miloslav Trma? - 0.56.10-3 - Fix nscd cache invalidation Resolves: #506628 - Preserve timestamps during (make install) libuser-0.56.10-nscd.patch: ChangeLog | 30 ++++++++++++++++++++++++++++++ Makefile.am | 1 + apps/apputil.c | 51 ++++++++++++++++++++++++++------------------------- apps/apputil.h | 2 +- apps/lchage.c | 2 +- apps/lchfn.c | 2 +- apps/lchsh.c | 2 +- apps/lgroupadd.c | 2 +- apps/lgroupdel.c | 2 +- apps/lgroupmod.c | 12 ++++-------- apps/lnewusers.c | 3 ++- apps/lpasswd.c | 2 ++ apps/luseradd.c | 6 +++--- apps/luserdel.c | 5 ++--- apps/lusermod.c | 4 ++-- configure.in | 3 +++ 16 files changed, 81 insertions(+), 48 deletions(-) --- NEW FILE libuser-0.56.10-nscd.patch --- diff -ur libuser/apps/apputil.c libuser-0.56.10/apps/apputil.c --- libuser/apps/apputil.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/apputil.c 2009-06-23 16:24:31.413046399 +0200 @@ -31,9 +31,11 @@ #include #include #include +#include #include #include #include +#include #include #include #ifdef WITH_SELINUX @@ -670,33 +672,32 @@ exit(1); } -/* Send nscd an arbitrary signal. */ -static void -lu_signal_nscd(int signum) -{ - FILE *fp; - /* If it's running, then its PID is in this file. Open it. */ - if ((fp = fopen("/var/run/nscd.pid", "r")) != NULL) { - char buf[LINE_MAX]; - - /* Read the PID. */ - memset(buf, 0, sizeof(buf)); - /* If the PID is sane, send it a signal. */ - if (fgets(buf, sizeof(buf), fp) != NULL && strlen(buf) > 0) { - pid_t pid = atol(buf); - if (pid != 0) { - kill(pid, signum); - } - } - fclose(fp); - } -} - -/* Send nscd a SIGHUP. */ +/* Flush the specified nscd cache */ void -lu_hup_nscd() +lu_nscd_flush_cache (const char *table) { - lu_signal_nscd(SIGHUP); + static char *const envp[] = { NULL }; + + posix_spawn_file_actions_t fa; + char *argv[4]; + pid_t pid; + + if (posix_spawn_file_actions_init(&fa) != 0 + || posix_spawn_file_actions_addopen(&fa, STDERR_FILENO, "/dev/null", + O_RDWR, 0) != 0) + return; + + argv[0] = NSCD; + argv[1] = "-i"; + argv[2] = (char *)table; + argv[3] = NULL; + if (posix_spawn(&pid, argv[0], &fa, NULL, argv, envp) != 0) + return; + posix_spawn_file_actions_destroy(&fa); + + /* Wait for the spawned process to exit */ + while (waitpid(pid, NULL, 0) == -1 && errno == EINTR) + ; /* Nothing */ } /* Create a mail spool for the user. */ diff -ur libuser/apps/apputil.h libuser-0.56.10/apps/apputil.h --- libuser/apps/apputil.h 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/apputil.h 2009-06-23 16:24:31.414044511 +0200 @@ -41,7 +41,7 @@ void lu_authenticate_unprivileged(const char *user, const char *appname) G_GNUC_INTERNAL; -void lu_hup_nscd(void) G_GNUC_INTERNAL; +void lu_nscd_flush_cache (const char *table) G_GNUC_INTERNAL; gboolean lu_mailspool_create_remove(struct lu_context *ctx, struct lu_ent *ent, gboolean action) G_GNUC_INTERNAL; diff -ur libuser/apps/lgroupadd.c libuser-0.56.10/apps/lgroupadd.c --- libuser/apps/lgroupadd.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lgroupadd.c 2009-06-23 16:24:31.415043321 +0200 @@ -126,7 +126,7 @@ return 2; } - lu_hup_nscd(); + lu_nscd_flush_cache("group"); lu_ent_free(ent); diff -ur libuser/apps/lgroupdel.c libuser-0.56.10/apps/lgroupdel.c --- libuser/apps/lgroupdel.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lgroupdel.c 2009-06-23 16:24:31.415043321 +0200 @@ -91,7 +91,7 @@ return 3; } - lu_hup_nscd(); + lu_nscd_flush_cache("group"); lu_ent_free(ent); diff -ur libuser/apps/lgroupmod.c libuser-0.56.10/apps/lgroupmod.c --- libuser/apps/lgroupmod.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lgroupmod.c 2009-06-23 16:24:31.415043321 +0200 @@ -191,7 +191,6 @@ lu_ent_add(ent, LU_ADMINISTRATORNAME, &val); g_value_reset(&val); } - lu_hup_nscd(); g_strfreev(admins); } g_value_unset(&val); @@ -206,7 +205,6 @@ lu_ent_del(ent, LU_ADMINISTRATORNAME, &val); g_value_reset(&val); } - lu_hup_nscd(); g_strfreev(admins); } g_value_unset(&val); @@ -222,7 +220,6 @@ lu_ent_add(ent, LU_MEMBERNAME, &val); g_value_reset(&val); } - lu_hup_nscd(); g_strfreev(members); } g_value_unset(&val); @@ -237,7 +234,6 @@ lu_ent_del(ent, LU_MEMBERNAME, &val); g_value_reset(&val); } - lu_hup_nscd(); g_strfreev(members); } g_value_unset(&val); @@ -276,10 +272,10 @@ } } - lu_hup_nscd(); - lu_ent_free(ent); + lu_nscd_flush_cache("group"); + if (oldGidNumber != LU_VALUE_INVALID_ID && gidNumber != LU_VALUE_INVALID_ID && users != NULL) { size_t i; @@ -304,13 +300,13 @@ lu_user_modify(ctx, ent, &error); if (error != NULL) lu_error_free(&error); - lu_hup_nscd(); } } } - g_value_unset(&val); lu_ent_free(ent); + + lu_nscd_flush_cache("passwd"); } lu_end(ctx); diff -ur libuser/apps/lchage.c libuser-0.56.10/apps/lchage.c --- libuser/apps/lchage.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lchage.c 2009-06-23 16:24:31.414044511 +0200 @@ -256,7 +256,7 @@ return 3; } - lu_hup_nscd(); + lu_nscd_flush_cache("passwd"); } lu_ent_free(ent); diff -ur libuser/apps/lchfn.c libuser-0.56.10/apps/lchfn.c --- libuser/apps/lchfn.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lchfn.c 2009-06-23 16:24:31.414044511 +0200 @@ -294,7 +294,7 @@ /* Try to save our changes. */ if (lu_user_modify(ctx, ent, &error)) { g_print(_("Finger information changed.\n")); - lu_hup_nscd(); + lu_nscd_flush_cache("passwd"); } else { fprintf(stderr, _("Finger information not changed: %s.\n"), lu_strerror(error)); diff -ur libuser/apps/lchsh.c libuser-0.56.10/apps/lchsh.c --- libuser/apps/lchsh.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lchsh.c 2009-06-23 16:24:31.415043321 +0200 @@ -135,7 +135,7 @@ /* Modify the user's record in the information store. */ if (lu_user_modify(ctx, ent, &error)) { g_print(_("Shell changed.\n")); - lu_hup_nscd(); + lu_nscd_flush_cache("passwd"); } else { fprintf(stderr, _("Shell not changed: %s\n"), lu_strerror(error)); diff -ur libuser/apps/lnewusers.c libuser-0.56.10/apps/lnewusers.c --- libuser/apps/lnewusers.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lnewusers.c 2009-06-23 16:24:31.416044296 +0200 @@ -207,6 +207,7 @@ /* Try to create the group, and if it works, get its * GID, which we need to give to this user. */ if (lu_group_add(ctx, ent, &error)) { + lu_nscd_flush_cache("group"); values = lu_ent_get(ent, LU_GIDNUMBER); value = g_value_array_get_nth(values, 0); gid = lu_value_get_id(value); @@ -267,7 +268,6 @@ /* Now try to add the user's account. */ if (lu_user_add(ctx, ent, &error)) { - lu_hup_nscd(); if (!lu_user_setpass(ctx, ent, fields[1], FALSE, &error)) { fprintf(stderr, @@ -278,6 +278,7 @@ lu_error_free(&error); } } + lu_nscd_flush_cache("passwd"); /* Unless the nocreatehomedirs flag was given, attempt * to create the user's home directory. */ if (!nocreatehome) { diff -ur libuser/apps/lpasswd.c libuser-0.56.10/apps/lpasswd.c --- libuser/apps/lpasswd.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/lpasswd.c 2009-06-23 16:24:31.416044296 +0200 @@ -188,6 +188,7 @@ lu_strerror(error)); return 3; } + lu_nscd_flush_cache("passwd"); } else { if (lu_group_setpass(ctx, ent, password, is_crypted, &error) == FALSE) { @@ -196,6 +197,7 @@ lu_strerror(error)); return 3; } + lu_nscd_flush_cache("group"); } lu_ent_free(ent); diff -ur libuser/apps/luseradd.c libuser-0.56.10/apps/luseradd.c --- libuser/apps/luseradd.c 2009-02-19 23:42:33.000000000 +0100 +++ libuser-0.56.10/apps/luseradd.c 2009-06-23 16:24:31.417040103 +0200 @@ -183,7 +183,7 @@ /* Try to add the group. */ if (lu_group_add(ctx, groupEnt, &error)) - lu_hup_nscd(); + lu_nscd_flush_cache("group"); else { /* Aargh! Abandon all hope. */ fprintf(stderr, _("Error creating group `%s': %s\n"), @@ -265,8 +265,6 @@ return 3; } - lu_hup_nscd(); - if (userPassword != NULL) { if (lu_user_setpass(ctx, ent, userPassword, FALSE, &error) == FALSE) { @@ -287,6 +285,8 @@ } } + lu_nscd_flush_cache("passwd"); + /* If we don't have the the don't-create-home flag, create the user's * home directory. */ if (!dont_create_home) { diff -ur libuser/apps/luserdel.c libuser-0.56.10/apps/luserdel.c --- libuser/apps/luserdel.c 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/apps/luserdel.c 2009-06-23 16:24:31.417040103 +0200 @@ -96,7 +96,7 @@ return 3; } - lu_hup_nscd(); + lu_nscd_flush_cache("passwd"); if (!dont_remove_group) { values = lu_ent_get(ent, LU_GIDNUMBER); @@ -134,11 +134,10 @@ return 7; } } + lu_nscd_flush_cache("group"); } } - lu_hup_nscd(); - if (remove_home) { values = lu_ent_get(ent, LU_HOMEDIRECTORY); if (values == NULL) { diff -ur libuser/apps/lusermod.c libuser-0.56.10/apps/lusermod.c --- libuser/apps/lusermod.c 2008-02-28 00:03:42.000000000 +0100 +++ libuser-0.56.10/apps/lusermod.c 2009-06-23 16:24:31.417040103 +0200 @@ -276,7 +276,7 @@ user, lu_strerror(error)); return 9; } - lu_hup_nscd(); + lu_nscd_flush_cache("passwd"); /* If the user's name changed, we need to update supplemental * group membership information. */ @@ -336,7 +336,7 @@ groupname, lu_strerror(error)); lu_ent_free(group); } - lu_hup_nscd(); + lu_nscd_flush_cache("group"); } /* If we need to move the user's directory, we do that now. */ diff -ur libuser/configure.in libuser-0.56.10/configure.in --- libuser/configure.in 2009-04-14 13:04:23.000000000 +0200 +++ libuser-0.56.10/configure.in 2009-06-23 16:25:09.528264894 +0200 @@ -8,6 +8,9 @@ AM_PROG_CC_C_O AC_CHECK_PROG([YACC], [bison -y], [bison -y], [:]) AC_ISC_POSIX +AC_PATH_PROG([NSCD], [nscd], [/usr/sbin/nscd], + [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin]) +AC_ARG_VAR([NSCD], [Path to nscd]) AC_DISABLE_STATIC AC_PROG_LIBTOOL diff -ur libuser/ChangeLog libuser-0.56.10/ChangeLog --- libuser/ChangeLog 2009-04-14 13:04:19.000000000 +0200 +++ libuser-0.56.10/ChangeLog 2009-06-23 16:27:49.363265232 +0200 @@ -1,3 +1,33 @@ +2009-06-23 Miloslav Trma? + + * apps/lgroupmod.c (main): Remove unnecessary nscd refreshes. Refresh + the "passwd" nscd cache only once after modifying all affected users. + * apps/lnewusers.c (main): Refresh the "group" nscd cache after adding + a group. Refresh the "passwd" nscd cache only after changing the user's + password. + * apps/lpasswd.c (main): Refresh the relevant nscd cache after changing + the password. + * apps/luseradd.c (main): Refresh the "passwd" nscd cache only after + changing the user's password. + * apps/luserdel.c (main): Only refresh the "group" cache if a group was + deleted. + + * Makefile.am (apps_libapputil_la_CPPFLAGS): New variable. + * apps/apputil.c (lu_nscd_flush_cache): New function. + (lu_signal_nscd, lu_hup_nscd): Remove. + * apps/apputil.h: Update prototypes. + * apps/lchage.c (main) + * apps/lchfn.c (main) + * apps/lchsh.c (main) + * apps/lgroupadd.c (main) + * apps/lgroupdel.c (main) + * apps/lgroupmod.c (main): + * apps/lnewusers.c (main): + * apps/luseradd.c (main) + * apps/luserdel.c (main): Use lu_nscd_flush_cache () instead of + lu_hup_nscd (). + Based on a patch by Masahiro Matsuya . + 2009-04-14 Miloslav Trma? * configure.in: Version 0.56.10. diff -ur libuser/Makefile.am libuser-0.56.10/Makefile.am --- libuser/Makefile.am 2008-02-26 18:10:51.000000000 +0100 +++ libuser-0.56.10/Makefile.am 2009-06-23 16:24:31.413046399 +0200 @@ -92,6 +92,7 @@ ## Dependency data +apps_libapputil_la_CPPFLAGS = $(AM_CPPFLAGS) -DNSCD='"$(NSCD)"' apps_libapputil_la_SOURCES = apps/apputil.c apps/apputil.h apps_libapputil_la_LDFLAGS = $(GOBJECT_LIBS) -lpam -lpam_misc $(SELINUX_LIBS) Index: libuser.spec =================================================================== RCS file: /cvs/pkgs/rpms/libuser/devel/libuser.spec,v retrieving revision 1.83 retrieving revision 1.84 diff -u -p -r1.83 -r1.84 --- libuser.spec 25 Jul 2009 08:50:37 -0000 1.83 +++ libuser.spec 30 Jul 2009 19:37:11 -0000 1.84 @@ -2,14 +2,19 @@ Name: libuser Version: 0.56.10 -Release: 2 +Release: 3 Group: System Environment/Base License: LGPLv2+ URL: https://fedorahosted.org/libuser/ Source: https://fedorahosted.org/releases/l/i/libuser/libuser-%{version}.tar.bz2 +Patch0: libuser-0.56.10-nscd.patch BuildRoot: %{_tmppath}/%{name}-root BuildRequires: glib2-devel, linuxdoc-tools, pam-devel, popt-devel, python-devel BuildRequires: cyrus-sasl-devel, libselinux-devel, openldap-devel +# To make sure the configure script can find it +BuildRequires: nscd +# For Patch0 +BuildRequires: autoconf, automake, cvs, gettext-devel, gtk-doc, libtool Summary: A user and group account administration library %description @@ -42,6 +47,14 @@ administering user and group accounts. %prep %setup -q +%patch0 -p1 -b .nscd +gtkdocize --docdir docs/reference +libtoolize --force +autopoint +aclocal -I m4 +autoconf -Wall +autoheader -Wall +automake -Wall --add-missing %build %configure --with-selinux --with-ldap --with-html-dir=%{_datadir}/gtk-doc/html @@ -52,7 +65,7 @@ rm -fr $RPM_BUILD_ROOT %install rm -fr $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' %find_lang %{name} @@ -98,6 +111,11 @@ python -c "import libuser" %{_datadir}/gtk-doc/html/* %changelog +* Thu Jul 30 2009 Miloslav Trma? - 0.56.10-3 +- Fix nscd cache invalidation + Resolves: #506628 +- Preserve timestamps during (make install) + * Sat Jul 25 2009 Fedora Release Engineering - 0.56.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hman-it at fedoraproject.org Thu Jul 30 19:38:24 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:38:24 +0000 (UTC) Subject: rpms/monosim/F-10 monosim.spec,1.2,1.3 Message-ID: <20090730193824.6B00A11C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8308 Modified Files: monosim.spec Log Message: Update to 1.5.2 Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- monosim.spec 30 Jul 2009 19:13:09 -0000 1.2 +++ monosim.spec 30 Jul 2009 19:38:24 -0000 1.3 @@ -19,6 +19,12 @@ Requires: pcsc-lite >= 1.0.0 Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 +# If Fedora 10 Exclude ppc64 +%if 0%{?fedora} = 10 +ExcludeArch: ppc64 +%endif + + %define debug_package %{nil} %description From hman-it at fedoraproject.org Thu Jul 30 19:42:42 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:42:42 +0000 (UTC) Subject: rpms/monosim/F-10 monosim.spec,1.3,1.4 Message-ID: <20090730194242.5752E11C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8883 Modified Files: monosim.spec Log Message: Update to 1.5.2 Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- monosim.spec 30 Jul 2009 19:38:24 -0000 1.3 +++ monosim.spec 30 Jul 2009 19:42:42 -0000 1.4 @@ -20,7 +20,7 @@ Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 # If Fedora 10 Exclude ppc64 -%if 0%{?fedora} = 10 +%if %{?fedora} = 10 ExcludeArch: ppc64 %endif From devrim at fedoraproject.org Thu Jul 30 19:42:45 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:42:45 +0000 (UTC) Subject: rpms/postgresql_autodoc/EL-4 .cvsignore,1.2,1.3 sources,1.3,1.4 Message-ID: <20090730194245.8BA0911C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/EL-4 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8819/EL-4 Modified Files: .cvsignore sources Log Message: Update remaining files. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 17 Mar 2008 23:47:12 -0000 1.2 +++ .cvsignore 30 Jul 2009 19:42:45 -0000 1.3 @@ -1 +1 @@ -postgresql_autodoc-1.31.tar.gz +postgresql_autodoc-1.40.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-4/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2008 23:47:12 -0000 1.3 +++ sources 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -0dbb61cf8b78da7ae9d12221f7a14d27 postgresql_autodoc-1.31.tar.gz +68c91ec94051b45feb4ed801698c4149 postgresql_autodoc-1.40.tar.gz From devrim at fedoraproject.org Thu Jul 30 19:42:45 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:42:45 +0000 (UTC) Subject: rpms/postgresql_autodoc/EL-5 .cvsignore,1.3,1.4 sources,1.3,1.4 Message-ID: <20090730194245.B419811C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8819/EL-5 Modified Files: .cvsignore sources Log Message: Update remaining files. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2008 23:47:16 -0000 1.3 +++ .cvsignore 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -postgresql_autodoc-1.31.tar.gz +postgresql_autodoc-1.40.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2008 23:47:16 -0000 1.3 +++ sources 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -0dbb61cf8b78da7ae9d12221f7a14d27 postgresql_autodoc-1.31.tar.gz +68c91ec94051b45feb4ed801698c4149 postgresql_autodoc-1.40.tar.gz From devrim at fedoraproject.org Thu Jul 30 19:42:45 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:42:45 +0000 (UTC) Subject: rpms/postgresql_autodoc/F-10 .cvsignore,1.3,1.4 sources,1.3,1.4 Message-ID: <20090730194245.E770C11C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8819/F-10 Modified Files: .cvsignore sources Log Message: Update remaining files. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2008 23:47:39 -0000 1.3 +++ .cvsignore 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -postgresql_autodoc-1.31.tar.gz +postgresql_autodoc-1.40.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2008 23:47:39 -0000 1.3 +++ sources 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -0dbb61cf8b78da7ae9d12221f7a14d27 postgresql_autodoc-1.31.tar.gz +68c91ec94051b45feb4ed801698c4149 postgresql_autodoc-1.40.tar.gz From devrim at fedoraproject.org Thu Jul 30 19:42:46 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 19:42:46 +0000 (UTC) Subject: rpms/postgresql_autodoc/F-11 .cvsignore,1.3,1.4 sources,1.3,1.4 Message-ID: <20090730194246.22B1911C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8819/F-11 Modified Files: .cvsignore sources Log Message: Update remaining files. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 17 Mar 2008 23:47:39 -0000 1.3 +++ .cvsignore 30 Jul 2009 19:42:45 -0000 1.4 @@ -1 +1 @@ -postgresql_autodoc-1.31.tar.gz +postgresql_autodoc-1.40.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 17 Mar 2008 23:47:39 -0000 1.3 +++ sources 30 Jul 2009 19:42:46 -0000 1.4 @@ -1 +1 @@ -0dbb61cf8b78da7ae9d12221f7a14d27 postgresql_autodoc-1.31.tar.gz +68c91ec94051b45feb4ed801698c4149 postgresql_autodoc-1.40.tar.gz From pkgdb at fedoraproject.org Thu Jul 30 19:45:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:45:39 +0000 Subject: [pkgdb] memtest86+ ownership updated Message-ID: <20090730194539.C274B10F875@bastion2.fedora.phx.redhat.com> Package memtest86+ in Fedora devel was orphaned by wtogami To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From pkgdb at fedoraproject.org Thu Jul 30 19:46:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:46:01 +0000 Subject: [pkgdb] memtest86+: wtogami has given up watchbugzilla Message-ID: <20090730194600.EACFE10F875@bastion2.fedora.phx.redhat.com> wtogami has given up the watchbugzilla acl on memtest86+ (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From pkgdb at fedoraproject.org Thu Jul 30 19:46:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:46:11 +0000 Subject: [pkgdb] memtest86+: wtogami has given up watchbugzilla Message-ID: <20090730194611.B11CE10F89B@bastion2.fedora.phx.redhat.com> wtogami has given up the watchbugzilla acl on memtest86+ (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From pkgdb at fedoraproject.org Thu Jul 30 19:46:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:46:02 +0000 Subject: [pkgdb] memtest86+: wtogami has given up watchcommits Message-ID: <20090730194602.5186C10F897@bastion2.fedora.phx.redhat.com> wtogami has given up the watchcommits acl on memtest86+ (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From pkgdb at fedoraproject.org Thu Jul 30 19:46:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:46:12 +0000 Subject: [pkgdb] memtest86+: wtogami has given up watchcommits Message-ID: <20090730194612.7398910F89E@bastion2.fedora.phx.redhat.com> wtogami has given up the watchcommits acl on memtest86+ (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From hman-it at fedoraproject.org Thu Jul 30 19:46:34 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:46:34 +0000 (UTC) Subject: rpms/monosim/F-10 monosim.spec,1.4,1.5 Message-ID: <20090730194634.2B1C211C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9646 Modified Files: monosim.spec Log Message: Update to 1.5.2 Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- monosim.spec 30 Jul 2009 19:42:42 -0000 1.4 +++ monosim.spec 30 Jul 2009 19:46:34 -0000 1.5 @@ -20,7 +20,7 @@ Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 # If Fedora 10 Exclude ppc64 -%if %{?fedora} = 10 +%if %{fc10} = 1 ExcludeArch: ppc64 %endif From pkgdb at fedoraproject.org Thu Jul 30 19:53:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:53:29 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195329.C2D6310F897@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora devel) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:53:37 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:53:37 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195337.D748610F89C@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 4) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:53:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:53:40 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195340.8A24E10F8B0@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 5) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:53:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:53:48 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195348.9E6B510F8B7@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 10) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:53:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:53:58 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195358.F1F6910F89B@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 11) to Obsolete for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:54:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:54:25 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195425.1AEDC10F8A1@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora devel) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:54:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:54:31 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195431.B4BD210F8B1@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 4) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:54:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:54:33 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195433.919A010F8B8@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora EPEL 5) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:54:39 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:54:39 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195439.3308710F89B@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 10) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From pkgdb at fedoraproject.org Thu Jul 30 19:54:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:54:41 +0000 Subject: [pkgdb] rtpproxy had acl change status Message-ID: <20090730195441.3A9A210F8BB@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on rtpproxy (Fedora 11) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/rtpproxy From hman-it at fedoraproject.org Thu Jul 30 19:56:05 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 19:56:05 +0000 (UTC) Subject: rpms/monosim/F-10 monosim.spec,1.5,1.6 Message-ID: <20090730195605.77B3111C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11631 Modified Files: monosim.spec Log Message: Update to 1.5.2 Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- monosim.spec 30 Jul 2009 19:46:34 -0000 1.5 +++ monosim.spec 30 Jul 2009 19:56:05 -0000 1.6 @@ -20,7 +20,7 @@ Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 # If Fedora 10 Exclude ppc64 -%if %{fc10} = 1 +%if 0%{?fedora} = 10 ExcludeArch: ppc64 %endif From pkgdb at fedoraproject.org Thu Jul 30 19:57:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:57:48 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195749.1624010F88F@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on sems (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:57:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:57:51 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195751.2333D10F89C@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on sems (Fedora devel) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:57:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:57:52 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195753.3AB6E10F856@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on sems (Fedora devel) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:57:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:57:59 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195759.9BEEB10F8B4@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on sems (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:01 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195801.1F6E210F8B8@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on sems (Fedora 11) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:02 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195802.B0DA710F8BC@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on sems (Fedora 11) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:07 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195807.B8E8010F89A@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on sems (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:08 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195808.6847610F8C0@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on sems (Fedora 10) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:09 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195809.7442410F8C4@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on sems (Fedora 10) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:16 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195816.A6DD010F8C7@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on sems (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:18 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195818.2DF6610F856@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on sems (Fedora EPEL 5) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:20 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195820.2B38310F8CC@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on sems (Fedora EPEL 5) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:23 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195823.1D4E010F8CF@bastion2.fedora.phx.redhat.com> peter has set the watchbugzilla acl on sems (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:24 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195825.0EB4210F8D4@bastion2.fedora.phx.redhat.com> peter has set the watchcommits acl on sems (Fedora EPEL 4) to Approved for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:58:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:58:26 +0000 Subject: [pkgdb] sems had acl change status Message-ID: <20090730195826.2432210F8D7@bastion2.fedora.phx.redhat.com> peter has set the approveacls acl on sems (Fedora EPEL 4) to Denied for itamarjp To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/sems From pkgdb at fedoraproject.org Thu Jul 30 19:59:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 19:59:46 +0000 Subject: [pkgdb] memtest86+ ownership updated Message-ID: <20090730195946.6450010F89B@bastion2.fedora.phx.redhat.com> Package memtest86+ in Fedora devel is now owned by jwilson To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/memtest86+ From ltinkl at fedoraproject.org Thu Jul 30 20:05:56 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 30 Jul 2009 20:05:56 +0000 (UTC) Subject: rpms/soprano/F-10 soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch, NONE, 1.1 soprano-svn_checkout.sh, NONE, 1.1 .cvsignore, 1.15, 1.16 soprano.spec, 1.26, 1.27 sources, 1.16, 1.17 Message-ID: <20090730200556.D7ECD11C00D3@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/soprano/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13320/F-10 Modified Files: .cvsignore soprano.spec sources Added Files: soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch soprano-svn_checkout.sh Log Message: sync Soprano 2.3.0 with devel soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch: CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- NEW FILE soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch --- diff -up soprano-2.2.69/cmake/modules/CMakeLists.txt.cmake_DATA_INSTALL_DIR soprano-2.2.69/cmake/modules/CMakeLists.txt --- soprano-2.2.69/cmake/modules/CMakeLists.txt.cmake_DATA_INSTALL_DIR 2009-06-23 14:45:40.000000000 -0500 +++ soprano-2.2.69/cmake/modules/CMakeLists.txt 2009-06-26 09:32:48.946251752 -0500 @@ -1,5 +1,14 @@ + + +# Doesn't work, needs love (remove?) -- Rex +FIND_PACKAGE(KDE4Internal) + +IF (NOT DATA_INSTALL_DIR) +SET( DATA_INSTALL_DIR share/apps) +ENDIF (NOT DATA_INSTALL_DIR) + install(FILES SopranoAddOntology.cmake DESTINATION - share/apps/cmake/modules + ${DATA_INSTALL_DIR}/cmake/modules ) --- NEW FILE soprano-svn_checkout.sh --- #/bin/sh DATE=$(date +%Y%m%d) EXPORT_DIR=soprano set -x rm -rf $EXPORT_DIR # app svn export svn://anonsvn.kde.org/home/kde/trunk/kdesupport/soprano $EXPORT_DIR/ tar cjf $EXPORT_DIR-${DATE}svn.tar.bz2 $EXPORT_DIR # cleanup rm -rf $EXPORT_DIR Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/soprano/F-10/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 29 Jan 2009 16:57:58 -0000 1.15 +++ .cvsignore 30 Jul 2009 20:05:52 -0000 1.16 @@ -1 +1 @@ -soprano-2.2.1.tar.bz2 +soprano-2.3.0.tar.bz2 Index: soprano.spec =================================================================== RCS file: /cvs/extras/rpms/soprano/F-10/soprano.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- soprano.spec 2 Mar 2009 16:31:56 -0000 1.26 +++ soprano.spec 30 Jul 2009 20:05:55 -0000 1.27 @@ -2,25 +2,31 @@ # fedora review: http://bugzilla.redhat.com/248120 # set this to 0 to disable -apidocs for a faster build -%define apidocs 1 +%define apidocs 1 Summary: Qt wrapper API to different RDF storage solutions Name: soprano -Version: 2.2.3 -Release: 1%{?dist} +Version: 2.3.0 +Release: 2%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/soprano Source0: http://downloads.sf.net/soprano/soprano-%{version}.tar.bz2 +Source1: soprano-svn_checkout.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +## upstreamable patches +Patch50: soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch + +BuildRequires: clucene-core-devel >= 0.9.20-2 BuildRequires: cmake +BuildRequires: kde-filesystem +# for backends/virtuoso +#BuildRequires: libiodbc-devel +BuildRequires: qt4-devel BuildRequires: redland-devel >= 1.0.6 BuildRequires: raptor-devel >= 1.4.15 -BuildRequires: qt4-devel -# older packages had clucene-config.h in the wrong place -BuildRequires: clucene-core-devel >= 0.9.20-2 %if "%{?apidocs}" == "1" BuildRequires: doxygen @@ -43,7 +49,12 @@ Requires: pkgconfig %package apidocs Group: Development/Documentation Summary: Soprano API documentation -Requires: %{name} = %{?epoch:%{epoch}:}%{version} +Requires: %{name} = %{version} +%if 0%{?fedora} > 9 +# help workaround yum bug http://bugzilla.redhat.com/502401 +Obsoletes: soprano-apidocs < 2.2.3-2 +BuildArch: noarch +%endif %description apidocs This package includes the Soprano API documentation in HTML @@ -53,17 +64,28 @@ format for easy browsing. %prep %setup -q -n soprano-%{version} +%patch50 -p1 -b .cmake_DATA_INSTALL_DIR + %build -%cmake . -DQT_DOC_DIR=`pkg-config --variable=docdir Qt` -DSOPRANO_BUILD_API_DOCS:BOOL=%{?apidocs} -make %{?_smp_mflags} + +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake} \ + -DDATA_INSTALL_DIR:PATH=%{_kde4_appsdir} \ + -DQT_DOC_DIR=`pkg-config --variable=docdir Qt` \ + -DSOPRANO_BUILD_API_DOCS:BOOL=%{?apidocs} \ + .. +popd + +make %{?_smp_mflags} -C %{_target_platform} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform} %clean @@ -81,16 +103,18 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/sopranocmd %{_bindir}/sopranod %{_bindir}/onto2vocabularyclass -%{_libdir}/lib*.so.* +%{_libdir}/libsoprano.so.4* +%{_libdir}/libsopranoclient.so.1* +%{_libdir}/libsopranoindex.so.1* +%{_libdir}/libsopranoserver.so.1* %{_libdir}/soprano/ %{_datadir}/soprano/ -# Own this one here for lack of a better place (see also #334681) -%dir %{_datadir}/dbus-1/interfaces -%{_datadir}/dbus-1/interfaces/org.soprano.* +%{_datadir}/dbus-1/interfaces/org.soprano.*.xml %files devel %defattr(-,root,root,-) -%{_libdir}/lib*.so +%{_kde4_appsdir}/cmake/modules/SopranoAddOntology.cmake +%{_libdir}/libsoprano*.so %{_libdir}/pkgconfig/soprano.pc %{_includedir}/soprano/ %{_includedir}/Soprano/ @@ -98,11 +122,32 @@ rm -rf $RPM_BUILD_ROOT %if "%{?apidocs}" == "1" %files apidocs %defattr(-,root,root,-) -%doc docs/html +%doc %{_target_platform}/docs/html %endif %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 16 2009 Rex Dieter - 2.3.0-1 +- soprano-2.3.0 +- upstream dropped virtuoso backend ): + +* Fri Jun 26 2009 Rex Dieter - 2.2.69-1 +- soprano-2.2.69 + +* Tue Jun 09 2009 Rex Dieter - 2.2.67-2 +- upstream soprano-2.2.67 tarball + +* Wed Jun 03 2009 Rex Dieter - 2.2.67-1 +- soprano-2.2.67, 20090603 snapshot from kdesupport + +* Wed May 6 2009 Rex Dieter - 2.2.3-2 +- %%files: drop ownership of %%_datadir/dbus-1.0/interfaces (#334681) +- %%files: track shlib sonames +- make -apidocs noarch + * Mon Mar 2 2009 Luk?? Tinkl - 2.2.3-1 - update to 2.2.3, fix apidox building Index: sources =================================================================== RCS file: /cvs/extras/rpms/soprano/F-10/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 2 Mar 2009 16:31:56 -0000 1.16 +++ sources 30 Jul 2009 20:05:55 -0000 1.17 @@ -1 +1 @@ -22c992a252144ae0a3a964ba2f6f1933 soprano-2.2.3.tar.bz2 +286d5d37c1d4f070527758e79706d1a7 soprano-2.3.0.tar.bz2 From dwalsh at fedoraproject.org Thu Jul 30 20:08:03 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 20:08:03 +0000 (UTC) Subject: rpms/setroubleshoot/devel .cvsignore, 1.114, 1.115 setroubleshoot.spec, 1.151, 1.152 sources, 1.127, 1.128 Message-ID: <20090730200803.ECC4211C00D3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14778 Modified Files: .cvsignore setroubleshoot.spec sources Log Message: * Thu Jul 30 2009 Dan Walsh - 2.2.18-1 - Add sgrubb drop capabilities, patch - Fix infiniteloop Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/.cvsignore,v retrieving revision 1.114 retrieving revision 1.115 diff -u -p -r1.114 -r1.115 --- .cvsignore 27 Jul 2009 22:09:35 -0000 1.114 +++ .cvsignore 30 Jul 2009 20:08:03 -0000 1.115 @@ -31,3 +31,4 @@ setroubleshoot-2.2.14.tar.gz setroubleshoot-2.2.15.tar.gz setroubleshoot-2.2.16.tar.gz setroubleshoot-2.2.17.tar.gz +setroubleshoot-2.2.18.tar.gz Index: setroubleshoot.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/setroubleshoot.spec,v retrieving revision 1.151 retrieving revision 1.152 diff -u -p -r1.151 -r1.152 --- setroubleshoot.spec 28 Jul 2009 16:06:42 -0000 1.151 +++ setroubleshoot.spec 30 Jul 2009 20:08:03 -0000 1.152 @@ -1,6 +1,6 @@ Summary: Helps troubleshoot SELinux problems Name: setroubleshoot -Version: 2.2.17 +Version: 2.2.18 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -209,6 +209,10 @@ Setroubleshoot documentation package %doc %{pkgdocdir} %changelog +* Thu Jul 30 2009 Dan Walsh - 2.2.18-1 +- Add sgrubb drop capabilities, patch +- Fix infiniteloop + * Mon Jul 27 2009 Dan Walsh - 2.2.17-1 - Fix handling of mountpoints that the kernel reports as "/" Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot/devel/sources,v retrieving revision 1.127 retrieving revision 1.128 diff -u -p -r1.127 -r1.128 --- sources 28 Jul 2009 19:17:20 -0000 1.127 +++ sources 30 Jul 2009 20:08:03 -0000 1.128 @@ -1 +1 @@ -89b9878bbf380d1ae7e44357783ef93d setroubleshoot-2.2.17.tar.gz +adcf8da780472ce7a353b34716619a78 setroubleshoot-2.2.18.tar.gz From hman-it at fedoraproject.org Thu Jul 30 20:09:40 2009 From: hman-it at fedoraproject.org (Armando Basile) Date: Thu, 30 Jul 2009 20:09:40 +0000 (UTC) Subject: rpms/monosim/F-10 monosim.spec,1.6,1.7 Message-ID: <20090730200940.89A5211C00D3@cvs1.fedora.phx.redhat.com> Author: hman-it Update of /cvs/pkgs/rpms/monosim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15370 Modified Files: monosim.spec Log Message: Update to 1.5.2 Index: monosim.spec =================================================================== RCS file: /cvs/pkgs/rpms/monosim/F-10/monosim.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- monosim.spec 30 Jul 2009 19:56:05 -0000 1.6 +++ monosim.spec 30 Jul 2009 20:09:37 -0000 1.7 @@ -20,7 +20,7 @@ Requires: pcsc-lite-libs >= 1.0.0 Requires: pcsc-lite-devel >= 1.0.0 # If Fedora 10 Exclude ppc64 -%if 0%{?fedora} = 10 +%if 0%{?fedora} == 10 ExcludeArch: ppc64 %endif From dwalsh at fedoraproject.org Thu Jul 30 20:09:45 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 20:09:45 +0000 (UTC) Subject: rpms/setroubleshoot-plugins/devel .cvsignore, 1.28, 1.29 setroubleshoot-plugins.spec, 1.33, 1.34 sources, 1.29, 1.30 Message-ID: <20090730200945.6C06811C00D3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15303 Modified Files: .cvsignore setroubleshoot-plugins.spec sources Log Message: * Thu Jul 30 2009 - 2.1.12-1 - Add leaks.py and tftpd_write_content.py plugin - Check execmod protection Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/.cvsignore,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- .cvsignore 19 Jul 2009 11:07:33 -0000 1.28 +++ .cvsignore 30 Jul 2009 20:09:45 -0000 1.29 @@ -18,3 +18,4 @@ setroubleshoot-plugins-2.1.7.tar.gz setroubleshoot-plugins-2.1.8.tar.gz setroubleshoot-plugins-2.1.9.tar.gz setroubleshoot-plugins-2.1.11.tar.gz +setroubleshoot-plugins-2.1.12.tar.gz Index: setroubleshoot-plugins.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/setroubleshoot-plugins.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- setroubleshoot-plugins.spec 27 Jul 2009 04:12:49 -0000 1.33 +++ setroubleshoot-plugins.spec 30 Jul 2009 20:09:45 -0000 1.34 @@ -1,7 +1,7 @@ Summary: Analysis plugins for use with setroubleshoot Name: setroubleshoot-plugins -Version: 2.1.11 -Release: 2%{?dist} +Version: 2.1.12 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot @@ -52,6 +52,10 @@ rm -rf %{buildroot} %{_datadir}/setroubleshoot/plugins %changelog +* Thu Jul 30 2009 - 2.1.12-1 +- Add leaks.py and tftpd_write_content.py plugin +- Check execmod protection + * Sun Jul 26 2009 Fedora Release Engineering - 2.1.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/devel/sources,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- sources 19 Jul 2009 11:07:33 -0000 1.29 +++ sources 30 Jul 2009 20:09:45 -0000 1.30 @@ -1 +1 @@ -293f7fdd2faefe73fa07b819e4a1dd1d setroubleshoot-plugins-2.1.11.tar.gz +e8d87268ae6abc651613223c969c324b setroubleshoot-plugins-2.1.12.tar.gz From silfreed at fedoraproject.org Thu Jul 30 20:16:19 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 20:16:19 +0000 (UTC) Subject: rpms/qgis/F-11 .cvsignore, 1.8, 1.9 qgis.spec, 1.36, 1.37 sources, 1.8, 1.9 Message-ID: <20090730201619.68C1C11C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qgis/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17647 Modified Files: .cvsignore qgis.spec sources Log Message: * Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 - updating for 1.0.2 - moving libqgispython.so to python subpackage for bug#507381 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-11/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 Feb 2009 22:09:04 -0000 1.8 +++ .cvsignore 30 Jul 2009 20:16:18 -0000 1.9 @@ -1 +1 @@ -qgis_1.0.1.tar.gz +qgis_1.0.2.tar.gz Index: qgis.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-11/qgis.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- qgis.spec 25 Feb 2009 17:29:13 -0000 1.36 +++ qgis.spec 30 Jul 2009 20:16:18 -0000 1.37 @@ -2,8 +2,8 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: qgis -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: A user friendly Open Source Geographic Information System Group: Applications/Engineering @@ -100,7 +100,7 @@ Addtional theme for qgis - nkids %prep -%setup -q -n %{name}_%{version} +%setup -q -n %{name}-%{version} # fix spurious executable bits %{__chmod} -x \ @@ -217,7 +217,6 @@ desktop-file-install --vendor="fedora" \ %{_includedir}/%{name} %{_libdir}/lib%{name}_*.so %{_libdir}/libqgisgrass.so -%{_libdir}/libqgispython.so %files grass %defattr(-, root, root, -) @@ -229,6 +228,7 @@ desktop-file-install --vendor="fedora" \ %files python %defattr(-, root, root, -) %{_libdir}/libqgispython.so.* +%{_libdir}/libqgispython.so %{_datadir}/%{name}/python %{python_sitearch}/%{name} @@ -246,6 +246,10 @@ desktop-file-install --vendor="fedora" \ %changelog +* Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 +- updating for 1.0.2 +- moving libqgispython.so to python subpackage for bug#507381 + * Wed Feb 25 2009 Fedora Release Engineering - 1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-11/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 Feb 2009 22:09:04 -0000 1.8 +++ sources 30 Jul 2009 20:16:18 -0000 1.9 @@ -1 +1 @@ -a9159461b2c34ca988829b5a23ae693e qgis_1.0.1.tar.gz +71faff161c0b893f75d008187b471fc8 qgis_1.0.2.tar.gz From silfreed at fedoraproject.org Thu Jul 30 20:18:55 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Thu, 30 Jul 2009 20:18:55 +0000 (UTC) Subject: rpms/qgis/F-10 .cvsignore, 1.8, 1.9 qgis.spec, 1.29, 1.30 sources, 1.8, 1.9 Message-ID: <20090730201855.B6E2311C00D3@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/qgis/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19099 Modified Files: .cvsignore qgis.spec sources Log Message: * Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 - updating for 1.0.2 - moving libqgispython.so to python subpackage for bug#507381 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-10/.cvsignore,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- .cvsignore 18 Feb 2009 22:49:18 -0000 1.8 +++ .cvsignore 30 Jul 2009 20:18:55 -0000 1.9 @@ -1 +1 @@ -qgis_1.0.1.tar.gz +qgis_1.0.2.tar.gz Index: qgis.spec =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-10/qgis.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- qgis.spec 18 Feb 2009 22:49:18 -0000 1.29 +++ qgis.spec 30 Jul 2009 20:18:55 -0000 1.30 @@ -2,7 +2,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: qgis -Version: 1.0.1 +Version: 1.0.2 Release: 1%{?dist} Summary: A user friendly Open Source Geographic Information System @@ -100,7 +100,7 @@ Addtional theme for qgis - nkids %prep -%setup -q -n %{name}_%{version} +%setup -q -n %{name}-%{version} # fix spurious executable bits %{__chmod} -x \ @@ -217,7 +217,6 @@ desktop-file-install --vendor="fedora" \ %{_includedir}/%{name} %{_libdir}/lib%{name}_*.so %{_libdir}/libqgisgrass.so -%{_libdir}/libqgispython.so %files grass %defattr(-, root, root, -) @@ -229,6 +228,7 @@ desktop-file-install --vendor="fedora" \ %files python %defattr(-, root, root, -) %{_libdir}/libqgispython.so.* +%{_libdir}/libqgispython.so %{_datadir}/%{name}/python %{python_sitearch}/%{name} @@ -246,6 +246,10 @@ desktop-file-install --vendor="fedora" \ %changelog +* Thu Jul 30 2009 Douglas E. Warner 1.0.2-1 +- updating for 1.0.2 +- moving libqgispython.so to python subpackage for bug#507381 + * Wed Feb 18 2009 Douglas E. Warner 1.0.1-1 - updating for 1.0.1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/qgis/F-10/sources,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- sources 18 Feb 2009 22:49:18 -0000 1.8 +++ sources 30 Jul 2009 20:18:55 -0000 1.9 @@ -1 +1 @@ -a9159461b2c34ca988829b5a23ae693e qgis_1.0.1.tar.gz +71faff161c0b893f75d008187b471fc8 qgis_1.0.2.tar.gz From dwalsh at fedoraproject.org Thu Jul 30 20:30:26 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 20:30:26 +0000 (UTC) Subject: rpms/selinux-policy/devel nsadiff, 1.16, 1.17 policy-F12.patch, 1.36, 1.37 selinux-policy.spec, 1.885, 1.886 Message-ID: <20090730203026.E505D11C0439@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22638 Modified Files: nsadiff policy-F12.patch selinux-policy.spec Log Message: * Thu Jul 28 2009 Dan Walsh 3.6.26-1 - More fixes from upstream Index: nsadiff =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/nsadiff,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- nsadiff 30 Jul 2009 04:09:13 -0000 1.16 +++ nsadiff 30 Jul 2009 20:30:26 -0000 1.17 @@ -1 +1 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.25 > /tmp/diff +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy serefpolicy-3.6.26 > /tmp/diff policy-F12.patch: Makefile | 2 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 8 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 36 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 92 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 4 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 82 + policy/modules/apps/sambagui.fc | 1 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 1 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 3 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 39 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 409 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 25 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 31 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 3 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 36 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 97 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 261 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 166 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 151 +- policy/modules/system/libraries.if | 4 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 288 ++++ policy/modules/system/selinuxutil.te | 227 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 116 + policy/modules/system/sysnetwork.te | 72 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1299 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 28 policy/modules/system/xen.te | 127 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 290 files changed, 12771 insertions(+), 2595 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.36 -r 1.37 policy-F12.patchIndex: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- policy-F12.patch 30 Jul 2009 04:31:53 -0000 1.36 +++ policy-F12.patch 30 Jul 2009 20:30:26 -0000 1.37 @@ -1,6 +1,6 @@ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.25/config/appconfig-mcs/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/default_contexts serefpolicy-3.6.26/config/appconfig-mcs/default_contexts --- nsaserefpolicy/config/appconfig-mcs/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -22,15 +22,15 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.25/config/appconfig-mcs/failsafe_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/failsafe_context serefpolicy-3.6.26/config/appconfig-mcs/failsafe_context --- nsaserefpolicy/config/appconfig-mcs/failsafe_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/failsafe_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/failsafe_context 2009-07-30 15:33:08.000000000 -0400 @@ -1 +1 @@ -sysadm_r:sysadm_t:s0 +system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/root_default_contexts serefpolicy-3.6.26/config/appconfig-mcs/root_default_contexts --- nsaserefpolicy/config/appconfig-mcs/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/root_default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/root_default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,11 +1,7 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -45,9 +45,9 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.25/config/appconfig-mcs/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/securetty_types serefpolicy-3.6.26/config/appconfig-mcs/securetty_types --- nsaserefpolicy/config/appconfig-mcs/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/securetty_types 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/securetty_types 2009-07-30 15:33:08.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -55,18 +55,18 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.25/config/appconfig-mcs/seusers +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/seusers serefpolicy-3.6.26/config/appconfig-mcs/seusers --- nsaserefpolicy/config/appconfig-mcs/seusers 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/seusers 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/seusers 2009-07-30 15:33:08.000000000 -0400 @@ -1,3 +1,3 @@ system_u:system_u:s0-mcs_systemhigh -root:root:s0-mcs_systemhigh -__default__:user_u:s0 +root:unconfined_u:s0-mcs_systemhigh +__default__:unconfined_u:s0-mcs_systemhigh -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/staff_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts serefpolicy-3.6.26/config/appconfig-mcs/staff_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/staff_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/staff_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/staff_u_default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,10 +1,12 @@ system_r:local_login_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 system_r:remote_login_t:s0 staff_r:staff_t:s0 @@ -81,9 +81,9 @@ diff -b -B --ignore-all-space --exclude- sysadm_r:sysadm_su_t:s0 sysadm_r:sysadm_t:s0 sysadm_r:sysadm_sudo_t:s0 sysadm_r:sysadm_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/unconfined_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts serefpolicy-3.6.26/config/appconfig-mcs/unconfined_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/unconfined_u_default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,4 +1,4 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 unconfined_r:unconfined_cronjob_t:s0 +system_r:crond_t:s0 unconfined_r:unconfined_t:s0 @@ -97,15 +97,15 @@ diff -b -B --ignore-all-space --exclude- +system_r:initrc_su_t:s0 unconfined_r:unconfined_t:s0 +unconfined_r:unconfined_t:s0 unconfined_r:unconfined_t:s0 system_r:xdm_t:s0 unconfined_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.25/config/appconfig-mcs/userhelper_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/userhelper_context serefpolicy-3.6.26/config/appconfig-mcs/userhelper_context --- nsaserefpolicy/config/appconfig-mcs/userhelper_context 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/userhelper_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/userhelper_context 2009-07-30 15:33:08.000000000 -0400 @@ -1 +1 @@ -system_u:sysadm_r:sysadm_t:s0 +system_u:system_r:unconfined_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.25/config/appconfig-mcs/user_u_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts serefpolicy-3.6.26/config/appconfig-mcs/user_u_default_contexts --- nsaserefpolicy/config/appconfig-mcs/user_u_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mcs/user_u_default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/user_u_default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,8 +1,9 @@ system_r:local_login_t:s0 user_r:user_t:s0 system_r:remote_login_t:s0 user_r:user_t:s0 @@ -118,20 +118,20 @@ diff -b -B --ignore-all-space --exclude- - +system_r:initrc_su_t:s0 user_r:user_t:s0 +user_r:user_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.25/config/appconfig-mcs/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_domain_context serefpolicy-3.6.26/config/appconfig-mcs/virtual_domain_context --- nsaserefpolicy/config/appconfig-mcs/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.25/config/appconfig-mcs/virtual_domain_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/virtual_domain_context 2009-07-30 15:33:08.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:svirt_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.25/config/appconfig-mcs/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mcs/virtual_image_context serefpolicy-3.6.26/config/appconfig-mcs/virtual_image_context --- nsaserefpolicy/config/appconfig-mcs/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.25/config/appconfig-mcs/virtual_image_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mcs/virtual_image_context 2009-07-30 15:33:08.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:svirt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.25/config/appconfig-mls/default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/default_contexts serefpolicy-3.6.26/config/appconfig-mls/default_contexts --- nsaserefpolicy/config/appconfig-mls/default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mls/default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mls/default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,15 +1,6 @@ -system_r:crond_t:s0 user_r:cronjob_t:s0 staff_r:cronjob_t:s0 sysadm_r:cronjob_t:s0 system_r:cronjob_t:s0 unconfined_r:unconfined_cronjob_t:s0 -system_r:local_login_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 unconfined_r:unconfined_t:s0 @@ -153,9 +153,9 @@ diff -b -B --ignore-all-space --exclude- -user_r:user_su_t:s0 user_r:user_t:s0 staff_r:staff_t:s0 sysadm_r:sysadm_t:s0 -user_r:user_sudo_t:s0 sysadm_r:sysadm_t:s0 user_r:user_t:s0 +system_r:xdm_t:s0 user_r:user_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.25/config/appconfig-mls/root_default_contexts +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/root_default_contexts serefpolicy-3.6.26/config/appconfig-mls/root_default_contexts --- nsaserefpolicy/config/appconfig-mls/root_default_contexts 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-mls/root_default_contexts 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mls/root_default_contexts 2009-07-30 15:33:08.000000000 -0400 @@ -1,11 +1,11 @@ -system_r:crond_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:cronjob_t:s0 staff_r:cronjob_t:s0 user_r:cronjob_t:s0 -system_r:local_login_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 @@ -174,20 +174,20 @@ diff -b -B --ignore-all-space --exclude- # -#system_r:sshd_t:s0 unconfined_r:unconfined_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 user_r:user_t:s0 +#system_r:sshd_t:s0 sysadm_r:sysadm_t:s0 staff_r:staff_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.25/config/appconfig-mls/virtual_domain_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_domain_context serefpolicy-3.6.26/config/appconfig-mls/virtual_domain_context --- nsaserefpolicy/config/appconfig-mls/virtual_domain_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.25/config/appconfig-mls/virtual_domain_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mls/virtual_domain_context 2009-07-30 15:33:08.000000000 -0400 @@ -0,0 +1 @@ +system_u:system_r:qemu_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.25/config/appconfig-mls/virtual_image_context +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-mls/virtual_image_context serefpolicy-3.6.26/config/appconfig-mls/virtual_image_context --- nsaserefpolicy/config/appconfig-mls/virtual_image_context 1969-12-31 19:00:00.000000000 -0500 -+++ serefpolicy-3.6.25/config/appconfig-mls/virtual_image_context 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-mls/virtual_image_context 2009-07-30 15:33:08.000000000 -0400 @@ -0,0 +1,2 @@ +system_u:object_r:virt_image_t:s0 +system_u:object_r:virt_content_t:s0 -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.25/config/appconfig-standard/securetty_types +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/config/appconfig-standard/securetty_types serefpolicy-3.6.26/config/appconfig-standard/securetty_types --- nsaserefpolicy/config/appconfig-standard/securetty_types 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/config/appconfig-standard/securetty_types 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/config/appconfig-standard/securetty_types 2009-07-30 15:33:08.000000000 -0400 @@ -1 +1,6 @@ +auditadm_tty_device_t +secadm_tty_device_t @@ -195,74 +195,21 @@ diff -b -B --ignore-all-space --exclude- +sysadm_tty_device_t +unconfined_tty_device_t user_tty_device_t -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.25/Makefile +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Makefile serefpolicy-3.6.26/Makefile --- nsaserefpolicy/Makefile 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/Makefile 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/Makefile 2009-07-30 15:34:52.000000000 -0400 @@ -241,7 +241,7 @@ appdir := $(contextpath) user_default_contexts := $(wildcard config/appconfig-$(TYPE)/*_default_contexts) user_default_contexts_names := $(addprefix $(contextpath)/users/,$(subst _default_contexts,,$(notdir $(user_default_contexts)))) -appfiles := $(addprefix $(appdir)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts x_contexts customizable_types securetty_types) $(contextpath)/files/media $(user_default_contexts_names) -+appfiles := $(addprefix $(appdir)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts x_contexts customizable_types securetty_types virtual_image_context virtual_domain_context) $(contextpath)/files/media $(user_default_contexts_names) ++appfiles := $(addprefix $(appdir)/,default_contexts default_type initrc_context failsafe_context userhelper_context removable_context dbus_contexts x_contexts customizable_types securetty_types virtual_image_context virtual_domain_context) $(contextpath)/files/media $(user_default_contexts_names) net_contexts := $(builddir)net_contexts all_layers := $(shell find $(wildcard $(moddir)/*) -maxdepth 0 -type d) -@@ -315,20 +315,22 @@ - - # parse-rolemap modulename,outputfile - define parse-rolemap -- $(verbose) $(M4) $(M4PARAM) $(rolemap) | \ -- $(AWK) '/^[[:blank:]]*[A-Za-z]/{ print "gen_require(type " $$3 "; role " $$1 ";)\n$1_per_role_template(" $$2 "," $$3 "," $$1 ")" }' >> $2 -+ echo "" >> $2 -+# $(verbose) $(M4) $(M4PARAM) $(rolemap) | \ -+# $(AWK) '/^[[:blank:]]*[A-Za-z]/{ print "gen_require(type " $$3 "; role " $$1 ";)\n$1_per_role_template(" $$2 "," $$3 "," $$1 ")" }' >> $2 - endef - [...4482 lines suppressed...] ') read_files_pattern($1, userdomain, userdomain) @@ -24358,7 +24148,7 @@ diff -b -B --ignore-all-space --exclude- kernel_search_proc($1) ') -@@ -3027,3 +3199,501 @@ +@@ -3027,3 +3200,501 @@ allow $1 userdomain:dbus send_msg; ') @@ -24860,9 +24650,9 @@ diff -b -B --ignore-all-space --exclude- + allow $1 user_home_dir_t:dir search_dir_perms; + files_search_home($1) +') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.25/policy/modules/system/userdomain.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.te serefpolicy-3.6.26/policy/modules/system/userdomain.te --- nsaserefpolicy/policy/modules/system/userdomain.te 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.25/policy/modules/system/userdomain.te 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/system/userdomain.te 2009-07-30 15:33:09.000000000 -0400 @@ -8,13 +8,6 @@ ## @@ -24948,9 +24738,9 @@ diff -b -B --ignore-all-space --exclude- +') + +allow userdomain userdomain:process signull; -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.25/policy/modules/system/xen.fc +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.fc serefpolicy-3.6.26/policy/modules/system/xen.fc --- nsaserefpolicy/policy/modules/system/xen.fc 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/policy/modules/system/xen.fc 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/system/xen.fc 2009-07-30 15:33:09.000000000 -0400 @@ -1,5 +1,7 @@ /dev/xen/tapctrl.* -p gen_context(system_u:object_r:xenctl_t,s0) @@ -24978,9 +24768,9 @@ diff -b -B --ignore-all-space --exclude- /var/run/xenstore\.pid -- gen_context(system_u:object_r:xenstored_var_run_t,s0) /var/run/xenstored(/.*)? gen_context(system_u:object_r:xenstored_var_run_t,s0) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.25/policy/modules/system/xen.if +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.if serefpolicy-3.6.26/policy/modules/system/xen.if --- nsaserefpolicy/policy/modules/system/xen.if 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/policy/modules/system/xen.if 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/system/xen.if 2009-07-30 15:33:09.000000000 -0400 @@ -71,6 +71,8 @@ ') @@ -25006,7 +24796,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -191,3 +196,46 @@ +@@ -191,3 +196,24 @@ domtrans_pattern($1, xm_exec_t, xm_t) ') @@ -25031,31 +24821,9 @@ diff -b -B --ignore-all-space --exclude- + allow $1 xend_var_lib_t:dir search_dir_perms; + rw_files_pattern($1, xen_image_t, xen_image_t) +') -+ -+####################################### -+## -+## Connect to evtchnd over a unix domain -+## stream socket. -+## -+## -+## -+## Domain allowed access. -+## -+## -+# -+interface(`evtchnd_stream_connect',` -+ gen_require(` -+ type evtchnd_var_run_t, evtchnd_t; -+ ') -+ -+ allow $1 evtchnd_t:unix_stream_socket connectto; -+ allow $1 evtchnd_var_run_t:sock_file { getattr write }; -+ files_search_pids($1) -+') -+ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.25/policy/modules/system/xen.te +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/xen.te serefpolicy-3.6.26/policy/modules/system/xen.te --- nsaserefpolicy/policy/modules/system/xen.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/policy/modules/system/xen.te 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/system/xen.te 2009-07-30 15:41:16.000000000 -0400 @@ -6,6 +6,13 @@ # Declarations # @@ -25206,7 +24974,7 @@ diff -b -B --ignore-all-space --exclude- xen_stream_connect_xenstore(xenconsoled_t) ######################################## -@@ -256,21 +289,34 @@ +@@ -256,21 +289,33 @@ # Xen store local policy # @@ -25236,13 +25004,12 @@ diff -b -B --ignore-all-space --exclude- manage_sock_files_pattern(xenstored_t, xenstored_var_lib_t, xenstored_var_lib_t) files_var_lib_filetrans(xenstored_t, xenstored_var_lib_t,{ file dir sock_file }) -+# write and connect to evtchnd socket -+evtchnd_stream_connect(xenstored_t) ++stream_connect_pattern(xenstored_t, evtchnd_var_run_t, evtchnd_var_run_t, evtchnd_t) + kernel_write_xen_state(xenstored_t) kernel_read_xen_state(xenstored_t) -@@ -304,6 +350,7 @@ +@@ -304,6 +349,7 @@ # allow xm_t self:capability { dac_override ipc_lock sys_tty_config }; @@ -25250,7 +25017,7 @@ diff -b -B --ignore-all-space --exclude- # internal communication is often done using fifo and unix sockets. allow xm_t self:fifo_file rw_fifo_file_perms; -@@ -312,24 +359,28 @@ +@@ -312,24 +358,28 @@ manage_files_pattern(xm_t, xend_var_lib_t, xend_var_lib_t) manage_fifo_files_pattern(xm_t, xend_var_lib_t, xend_var_lib_t) @@ -25280,7 +25047,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_runtime_files(xm_t) files_read_usr_files(xm_t) -@@ -339,15 +390,68 @@ +@@ -339,15 +389,62 @@ storage_raw_read_fixed_disk(xm_t) @@ -25336,23 +25103,17 @@ diff -b -B --ignore-all-space --exclude- +# evtchnd local policy +# + -+# pid file -+manage_dirs_pattern(evtchnd_t, evtchnd_var_run_t, evtchnd_var_run_t) -+manage_files_pattern(evtchnd_t,evtchnd_var_run_t,evtchnd_var_run_t) -+manage_sock_files_pattern(evtchnd_t,evtchnd_var_run_t,evtchnd_var_run_t) -+files_pid_filetrans(evtchnd_t, evtchnd_var_run_t, { file sock_file dir }) -+ -+# log files +manage_dirs_pattern(evtchnd_t, evtchnd_var_log_t, evtchnd_var_log_t) +manage_files_pattern(evtchnd_t,evtchnd_var_log_t,evtchnd_var_log_t) +logging_log_filetrans(evtchnd_t,evtchnd_var_log_t,{ file dir }) + -+libs_use_ld_so(evtchnd_t) -+libs_use_shared_libs(evtchnd_t) -+ -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.25/policy/support/obj_perm_sets.spt ++manage_dirs_pattern(evtchnd_t, evtchnd_var_run_t, evtchnd_var_run_t) ++manage_files_pattern(evtchnd_t,evtchnd_var_run_t,evtchnd_var_run_t) ++manage_sock_files_pattern(evtchnd_t,evtchnd_var_run_t,evtchnd_var_run_t) ++files_pid_filetrans(evtchnd_t, evtchnd_var_run_t, { file sock_file dir }) +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/support/obj_perm_sets.spt serefpolicy-3.6.26/policy/support/obj_perm_sets.spt --- nsaserefpolicy/policy/support/obj_perm_sets.spt 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/policy/support/obj_perm_sets.spt 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/support/obj_perm_sets.spt 2009-07-30 15:33:09.000000000 -0400 @@ -201,7 +201,7 @@ define(`setattr_file_perms',`{ setattr }') define(`read_file_perms',`{ getattr open read lock ioctl }') @@ -25385,9 +25146,9 @@ diff -b -B --ignore-all-space --exclude- +define(`all_association_perms', `{ sendto recvfrom setcontext polmatch } ') + +define(`manage_key_perms', `{ create link read search setattr view write } ') -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.25/policy/users +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/users serefpolicy-3.6.26/policy/users --- nsaserefpolicy/policy/users 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/policy/users 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/policy/users 2009-07-30 15:33:09.000000000 -0400 @@ -25,11 +25,8 @@ # permit any access to such users, then remove this entry. # @@ -25412,9 +25173,9 @@ diff -b -B --ignore-all-space --exclude- - gen_user(root, sysadm, sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r'), s0, s0 - mls_systemhigh, mcs_allcats) -') +gen_user(root, user, unconfined_r sysadm_r staff_r ifdef(`enable_mls',`secadm_r auditadm_r') system_r, s0, s0 - mls_systemhigh, mcs_allcats) -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.25/Rules.modular +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/Rules.modular serefpolicy-3.6.26/Rules.modular --- nsaserefpolicy/Rules.modular 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/Rules.modular 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/Rules.modular 2009-07-30 15:33:09.000000000 -0400 @@ -73,8 +73,8 @@ $(tmpdir)/%.mod: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf %.te @echo "Compliling $(NAME) $(@F) module" @@ -25444,9 +25205,9 @@ diff -b -B --ignore-all-space --exclude- $(tmpdir)/all_te_files.conf: M4PARAM += -D self_contained_policy $(tmpdir)/all_te_files.conf: $(m4support) $(tmpdir)/generated_definitions.conf $(tmpdir)/all_interfaces.conf $(base_te_files) $(tmpdir)/rolemap.conf -diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.25/support/Makefile.devel +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/support/Makefile.devel serefpolicy-3.6.26/support/Makefile.devel --- nsaserefpolicy/support/Makefile.devel 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.25/support/Makefile.devel 2009-07-29 21:34:35.000000000 -0400 ++++ serefpolicy-3.6.26/support/Makefile.devel 2009-07-30 15:33:09.000000000 -0400 @@ -185,8 +185,7 @@ tmp/%.mod: $(m4support) tmp/all_interfaces.conf %.te @$(EINFO) "Compiling $(NAME) $(basename $(@F)) module" Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.885 retrieving revision 1.886 diff -u -p -r1.885 -r1.886 --- selinux-policy.spec 30 Jul 2009 04:09:14 -0000 1.885 +++ selinux-policy.spec 30 Jul 2009 20:30:26 -0000 1.886 @@ -19,7 +19,7 @@ %define CHECKPOLICYVER 2.0.16-3 Summary: SELinux policy configuration Name: selinux-policy -Version: 3.6.25 +Version: 3.6.26 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base @@ -185,7 +185,7 @@ fi; %description SELinux Reference Policy - modular. -Based off of reference policy: Checked out revision 3011. +Based off of reference policy: Checked out revision 2.20090730 %build @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Thu Jul 28 2009 Dan Walsh 3.6.26-1 +- More fixes from upstream + * Tue Jul 28 2009 Dan Walsh 3.6.25-1 - Fix polkit label - Remove hidebrokensymptoms for nss_ldap fix From devrim at fedoraproject.org Thu Jul 30 20:31:06 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 20:31:06 +0000 (UTC) Subject: rpms/postgresql_autodoc/devel postgresql_autodoc.spec,1.5,1.6 Message-ID: <20090730203106.C260711C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgresql_autodoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22845 Modified Files: postgresql_autodoc.spec Log Message: 1.4.0 fixes. Index: postgresql_autodoc.spec =================================================================== RCS file: /cvs/extras/rpms/postgresql_autodoc/devel/postgresql_autodoc.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- postgresql_autodoc.spec 30 Jul 2009 19:22:39 -0000 1.5 +++ postgresql_autodoc.spec 30 Jul 2009 20:31:06 -0000 1.6 @@ -24,8 +24,7 @@ describes the database. %setup -q -n %{name} %build -%configure --datadir=%{_datadir}/pgsql -make %{?_smp_mflags} +make PREFIX=/usr {?_smp_mflags} %install rm -rf %{buildroot} From ltinkl at fedoraproject.org Thu Jul 30 20:05:58 2009 From: ltinkl at fedoraproject.org (Lukas Tinkl) Date: Thu, 30 Jul 2009 20:05:58 +0000 (UTC) Subject: rpms/soprano/F-11 soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch, NONE, 1.1 soprano-svn_checkout.sh, NONE, 1.1 .cvsignore, 1.19, 1.20 soprano.spec, 1.32, 1.33 sources, 1.19, 1.20 Message-ID: <20090730200558.045B411C00D3@cvs1.fedora.phx.redhat.com> Author: ltinkl Update of /cvs/extras/rpms/soprano/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13320/F-11 Modified Files: .cvsignore soprano.spec sources Added Files: soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch soprano-svn_checkout.sh Log Message: sync Soprano 2.3.0 with devel soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch: CMakeLists.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- NEW FILE soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch --- diff -up soprano-2.2.69/cmake/modules/CMakeLists.txt.cmake_DATA_INSTALL_DIR soprano-2.2.69/cmake/modules/CMakeLists.txt --- soprano-2.2.69/cmake/modules/CMakeLists.txt.cmake_DATA_INSTALL_DIR 2009-06-23 14:45:40.000000000 -0500 +++ soprano-2.2.69/cmake/modules/CMakeLists.txt 2009-06-26 09:32:48.946251752 -0500 @@ -1,5 +1,14 @@ + + +# Doesn't work, needs love (remove?) -- Rex +FIND_PACKAGE(KDE4Internal) + +IF (NOT DATA_INSTALL_DIR) +SET( DATA_INSTALL_DIR share/apps) +ENDIF (NOT DATA_INSTALL_DIR) + install(FILES SopranoAddOntology.cmake DESTINATION - share/apps/cmake/modules + ${DATA_INSTALL_DIR}/cmake/modules ) --- NEW FILE soprano-svn_checkout.sh --- #/bin/sh DATE=$(date +%Y%m%d) EXPORT_DIR=soprano set -x rm -rf $EXPORT_DIR # app svn export svn://anonsvn.kde.org/home/kde/trunk/kdesupport/soprano $EXPORT_DIR/ tar cjf $EXPORT_DIR-${DATE}svn.tar.bz2 $EXPORT_DIR # cleanup rm -rf $EXPORT_DIR Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/soprano/F-11/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 26 Jun 2009 14:51:04 -0000 1.19 +++ .cvsignore 30 Jul 2009 20:05:57 -0000 1.20 @@ -1 +1 @@ -soprano-2.2.4.tar.bz2 +soprano-2.3.0.tar.bz2 Index: soprano.spec =================================================================== RCS file: /cvs/extras/rpms/soprano/F-11/soprano.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- soprano.spec 26 Jun 2009 14:51:05 -0000 1.32 +++ soprano.spec 30 Jul 2009 20:05:57 -0000 1.33 @@ -2,25 +2,31 @@ # fedora review: http://bugzilla.redhat.com/248120 # set this to 0 to disable -apidocs for a faster build -%define apidocs 1 +%define apidocs 1 Summary: Qt wrapper API to different RDF storage solutions Name: soprano -Version: 2.2.4 -Release: 1%{?dist} +Version: 2.3.0 +Release: 2%{?dist} Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/soprano Source0: http://downloads.sf.net/soprano/soprano-%{version}.tar.bz2 +Source1: soprano-svn_checkout.sh BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +## upstreamable patches +Patch50: soprano-2.2.69-cmake_DATA_INSTALL_DIR.patch + +BuildRequires: clucene-core-devel >= 0.9.20-2 BuildRequires: cmake +BuildRequires: kde-filesystem +# for backends/virtuoso +#BuildRequires: libiodbc-devel +BuildRequires: qt4-devel BuildRequires: redland-devel >= 1.0.6 BuildRequires: raptor-devel >= 1.4.15 -BuildRequires: qt4-devel -# older packages had clucene-config.h in the wrong place -BuildRequires: clucene-core-devel >= 0.9.20-2 %if "%{?apidocs}" == "1" BuildRequires: doxygen @@ -43,8 +49,10 @@ Requires: pkgconfig %package apidocs Group: Development/Documentation Summary: Soprano API documentation -Requires: %{name} = %{?epoch:%{epoch}:}%{version} +Requires: %{name} = %{version} %if 0%{?fedora} > 9 +# help workaround yum bug http://bugzilla.redhat.com/502401 +Obsoletes: soprano-apidocs < 2.2.3-2 BuildArch: noarch %endif @@ -56,17 +64,28 @@ format for easy browsing. %prep %setup -q -n soprano-%{version} +%patch50 -p1 -b .cmake_DATA_INSTALL_DIR + %build -%cmake . -DQT_DOC_DIR=`pkg-config --variable=docdir Qt` -DSOPRANO_BUILD_API_DOCS:BOOL=%{?apidocs} -make %{?_smp_mflags} + +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake} \ + -DDATA_INSTALL_DIR:PATH=%{_kde4_appsdir} \ + -DQT_DOC_DIR=`pkg-config --variable=docdir Qt` \ + -DSOPRANO_BUILD_API_DOCS:BOOL=%{?apidocs} \ + .. +popd + +make %{?_smp_mflags} -C %{_target_platform} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform} %clean @@ -94,6 +113,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) +%{_kde4_appsdir}/cmake/modules/SopranoAddOntology.cmake %{_libdir}/libsoprano*.so %{_libdir}/pkgconfig/soprano.pc %{_includedir}/soprano/ @@ -102,13 +122,26 @@ rm -rf $RPM_BUILD_ROOT %if "%{?apidocs}" == "1" %files apidocs %defattr(-,root,root,-) -%doc docs/html +%doc %{_target_platform}/docs/html %endif %changelog -* Fri Jun 26 2009 Rex Dieter - 2.2.4-1 -- soprano-2.2.4 +* Sun Jul 26 2009 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 16 2009 Rex Dieter - 2.3.0-1 +- soprano-2.3.0 +- upstream dropped virtuoso backend ): + +* Fri Jun 26 2009 Rex Dieter - 2.2.69-1 +- soprano-2.2.69 + +* Tue Jun 09 2009 Rex Dieter - 2.2.67-2 +- upstream soprano-2.2.67 tarball + +* Wed Jun 03 2009 Rex Dieter - 2.2.67-1 +- soprano-2.2.67, 20090603 snapshot from kdesupport * Wed May 6 2009 Rex Dieter - 2.2.3-2 - %%files: drop ownership of %%_datadir/dbus-1.0/interfaces (#334681) Index: sources =================================================================== RCS file: /cvs/extras/rpms/soprano/F-11/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 26 Jun 2009 14:51:05 -0000 1.19 +++ sources 30 Jul 2009 20:05:57 -0000 1.20 @@ -1 +1 @@ -3cb3047ff897c003c9140ed5d21c0352 soprano-2.2.4.tar.bz2 +286d5d37c1d4f070527758e79706d1a7 soprano-2.3.0.tar.bz2 From bmarzins at fedoraproject.org Thu Jul 30 20:39:53 2009 From: bmarzins at fedoraproject.org (Benjamin Marzinski) Date: Thu, 30 Jul 2009 20:39:53 +0000 (UTC) Subject: rpms/device-mapper-multipath/devel select_lib.patch, NONE, 1.1 device-mapper-multipath.spec, 1.60, 1.61 redhatification.patch, 1.4, 1.5 lib64_multipath.patch, 1.2, NONE Message-ID: <20090730203953.72A0711C00D3@cvs1.fedora.phx.redhat.com> Author: bmarzins Update of /cvs/pkgs/rpms/device-mapper-multipath/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25673 Modified Files: device-mapper-multipath.spec redhatification.patch Added Files: select_lib.patch Removed Files: lib64_multipath.patch Log Message: Fixed build issue on i686 machines. select_lib.patch: Makefile.inc | 14 +++++++++++--- libmultipath/defaults.h | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) --- NEW FILE select_lib.patch --- Index: multipath-tools/libmultipath/defaults.h =================================================================== --- multipath-tools.orig/libmultipath/defaults.h +++ multipath-tools/libmultipath/defaults.h @@ -1,6 +1,6 @@ #define DEFAULT_GETUID "/lib/udev/scsi_id --whitelisted --device=/dev/%n" #define DEFAULT_UDEVDIR "/dev" -#define DEFAULT_MULTIPATHDIR "/lib/multipath" +#define DEFAULT_MULTIPATHDIR "/" LIB_STRING "/multipath" #define DEFAULT_SELECTOR "round-robin 0" #define DEFAULT_FEATURES "0" #define DEFAULT_HWHANDLER "0" Index: multipath-tools/Makefile.inc =================================================================== --- multipath-tools.orig/Makefile.inc +++ multipath-tools/Makefile.inc @@ -13,6 +13,14 @@ ifeq ($(TOPDIR),) TOPDIR = .. endif +ifndef LIB + ifeq ($(shell test -d /lib64 && echo 1),1) + LIB=lib64 + else + LIB=lib + endif +endif + prefix = exec_prefix = $(prefix) bindir = $(exec_prefix)/sbin @@ -21,14 +29,14 @@ multipathdir = $(TOPDIR)/libmultipath mandir = $(prefix)/usr/share/man/man8 man5dir = $(prefix)/usr/share/man/man5 rcdir = $(prefix)/etc/init.d -syslibdir = $(prefix)/lib -libdir = $(prefix)/lib/multipath +syslibdir = $(prefix)/$(LIB) +libdir = $(prefix)/$(LIB)/multipath GZIP = /bin/gzip -9 -c INSTALL_PROGRAM = install OPTFLAGS = -pipe -g -Wall -Wunused -Wstrict-prototypes -CFLAGS = $(OPTFLAGS) -fPIC +CFLAGS = $(OPTFLAGS) -fPIC -DLIB_STRING=\"${LIB}\" SHARED_FLAGS = -shared %.o: %.c Index: device-mapper-multipath.spec =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/device-mapper-multipath.spec,v retrieving revision 1.60 retrieving revision 1.61 diff -u -p -r1.60 -r1.61 --- device-mapper-multipath.spec 30 Jul 2009 01:34:50 -0000 1.60 +++ device-mapper-multipath.spec 30 Jul 2009 20:39:53 -0000 1.61 @@ -1,7 +1,7 @@ Summary: Tools to manage multipath devices using device-mapper Name: device-mapper-multipath Version: 0.4.9 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL+ Group: System Environment/Base URL: http://christophe.varoqui.free.fr/ @@ -13,7 +13,7 @@ Patch2: queue_without_daemon.patch Patch3: path_checker.patch Patch4: root_init_script.patch Patch5: uninstall.patch -Patch6: lib64_multipath.patch +Patch6: select_lib.patch Patch7: directio_message_cleanup.patch Patch8: fix_kpartx.patch Patch9: redhatification.patch @@ -67,9 +67,7 @@ kpartx manages partition creation and re %patch3 -p1 -b .path_checker %patch4 -p1 -b .root_init_script %patch5 -p1 -b .uninstall.patch -%if %{_lib} == "lib64" -%patch6 -p1 -b .lib64_multipath -%endif +%patch6 -p1 -b .select_lib %patch7 -p1 -b .directio_message_cleanup %patch8 -p1 -b .fix_kpartx %patch9 -p1 -b .redhatification @@ -83,7 +81,7 @@ kpartx manages partition creation and re %define _sbindir /sbin %define _libdir /%{_lib} %define _libmpathdir %{_libdir}/multipath -make %{?_smp_mflags} +make %{?_smp_mflags} LIB=%{_lib} %install rm -rf $RPM_BUILD_ROOT @@ -144,6 +142,9 @@ fi %{_mandir}/man8/kpartx.8.gz %changelog +* Thu Jul 30 2009 Benjamin Marzinski - 0.4.9-4 +- Fixed build issue on i686 machines. + * Wed Jul 29 2009 Benjamin Marzinski - 0.4.9-3 - Updated to latest upstream 0.4.9 code : multipath-tools-090729.tgz (git commit id: d678c139719d5631194b50e49f16ca97162ecd0f) redhatification.patch: Makefile.inc | 2 kpartx/Makefile | 8 +-- libmultipath/hwtable.c | 2 multipath/Makefile | 3 + multipath/multipath.conf.redhat | 97 ++++++++++++++++++++++++++++++++++++++++ multipathd/Makefile | 1 6 files changed, 107 insertions(+), 6 deletions(-) Index: redhatification.patch =================================================================== RCS file: /cvs/pkgs/rpms/device-mapper-multipath/devel/redhatification.patch,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- redhatification.patch 29 Jul 2009 22:54:06 -0000 1.4 +++ redhatification.patch 30 Jul 2009 20:39:53 -0000 1.5 @@ -1,7 +1,7 @@ -Index: multipath-tools-090724/libmultipath/hwtable.c +Index: multipath-tools/libmultipath/hwtable.c =================================================================== ---- multipath-tools-090724.orig/libmultipath/hwtable.c -+++ multipath-tools-090724/libmultipath/hwtable.c +--- multipath-tools.orig/libmultipath/hwtable.c ++++ multipath-tools/libmultipath/hwtable.c @@ -589,7 +589,7 @@ static struct hwentry default_hw[] = { .vendor = "IBM", .product = "S/390 DASD ECKD", @@ -11,11 +11,11 @@ Index: multipath-tools-090724/libmultipa .features = "1 queue_if_no_path", .hwhandler = DEFAULT_HWHANDLER, .selector = DEFAULT_SELECTOR, -Index: multipath-tools-090724/Makefile.inc +Index: multipath-tools/Makefile.inc =================================================================== ---- multipath-tools-090724.orig/Makefile.inc -+++ multipath-tools-090724/Makefile.inc -@@ -26,7 +26,7 @@ libudevdir = ${prefix}/lib/udev +--- multipath-tools.orig/Makefile.inc ++++ multipath-tools/Makefile.inc +@@ -28,7 +28,7 @@ libudevdir = ${prefix}/lib/udev multipathdir = $(TOPDIR)/libmultipath mandir = $(prefix)/usr/share/man/man8 man5dir = $(prefix)/usr/share/man/man5 @@ -24,10 +24,10 @@ Index: multipath-tools-090724/Makefile.i syslibdir = $(prefix)/$(LIB) libdir = $(prefix)/$(LIB)/multipath -Index: multipath-tools-090724/multipathd/Makefile +Index: multipath-tools/multipathd/Makefile =================================================================== ---- multipath-tools-090724.orig/multipathd/Makefile -+++ multipath-tools-090724/multipathd/Makefile +--- multipath-tools.orig/multipathd/Makefile ++++ multipath-tools/multipathd/Makefile @@ -35,6 +35,7 @@ install: $(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir) $(INSTALL_PROGRAM) -m 755 $(EXEC) $(DESTDIR)$(bindir) @@ -36,10 +36,10 @@ Index: multipath-tools-090724/multipathd $(INSTALL_PROGRAM) -d $(DESTDIR)$(mandir) $(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir) -Index: multipath-tools-090724/multipath/Makefile +Index: multipath-tools/multipath/Makefile =================================================================== ---- multipath-tools-090724.orig/multipath/Makefile -+++ multipath-tools-090724/multipath/Makefile +--- multipath-tools.orig/multipath/Makefile ++++ multipath-tools/multipath/Makefile @@ -27,6 +27,9 @@ install: $(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir) $(INSTALL_PROGRAM) -d $(DESTDIR)$(man5dir) @@ -50,10 +50,10 @@ Index: multipath-tools-090724/multipath/ uninstall: rm $(DESTDIR)/etc/udev/rules.d/multipath.rules -Index: multipath-tools-090724/multipath/multipath.conf.redhat +Index: multipath-tools/multipath/multipath.conf.redhat =================================================================== --- /dev/null -+++ multipath-tools-090724/multipath/multipath.conf.redhat ++++ multipath-tools/multipath/multipath.conf.redhat @@ -0,0 +1,97 @@ +# This is a basic configuration file with some examples, for device mapper +# multipath. @@ -152,10 +152,10 @@ Index: multipath-tools-090724/multipath/ +# path_grouping_policy multibus +# } +#} -Index: multipath-tools-090724/kpartx/Makefile +Index: multipath-tools/kpartx/Makefile =================================================================== ---- multipath-tools-090724.orig/kpartx/Makefile -+++ multipath-tools-090724/kpartx/Makefile +--- multipath-tools.orig/kpartx/Makefile ++++ multipath-tools/kpartx/Makefile @@ -20,10 +20,10 @@ $(EXEC): $(OBJS) install: $(EXEC) $(EXEC).8 $(INSTALL_PROGRAM) -d $(DESTDIR)$(bindir) --- lib64_multipath.patch DELETED --- From mjg59 at fedoraproject.org Thu Jul 30 20:43:31 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Thu, 30 Jul 2009 20:43:31 +0000 (UTC) Subject: rpms/kernel/devel drm-intel-pm.patch, 1.1, 1.2 kernel.spec, 1.1675, 1.1676 Message-ID: <20090730204331.7B29F11C00D3@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26268 Modified Files: drm-intel-pm.patch kernel.spec Log Message: * Thu Jul 30 2009 Matthew Garrett - drm-intel-pm.patch: Don't reclock external outputs. Increase the reduced clock slightly to avoid upsetting some hardware. Disable renderclock adjustment for the moment - it's breaking on some hardware. drm-intel-pm.patch: linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h.orig |only linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h.orig |only linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c.orig |only linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c | 15 linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h | 14 linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c | 8 linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h | 22 linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c | 483 +++++++++- linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h | 4 9 files changed, 511 insertions(+), 35 deletions(-) Index: drm-intel-pm.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-intel-pm.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- drm-intel-pm.patch 27 Jul 2009 02:22:56 -0000 1.1 +++ drm-intel-pm.patch 30 Jul 2009 20:43:31 -0000 1.2 @@ -1,19 +1,31 @@ diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.c linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.c 2009-07-27 03:06:09.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c 2009-07-27 03:11:18.000000000 +0100 -@@ -43,6 +43,9 @@ +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.c 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.c 2009-07-30 21:29:34.000000000 +0100 +@@ -43,6 +43,21 @@ unsigned int i915_fbpercrtc = 0; module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400); +unsigned int i915_powersave = 1; +module_param_named(powersave, i915_powersave, int, 0400); + ++unsigned int i915_lvdsclock = 1; ++module_param_named(lvdsclock, i915_lvdsclock, int, 0400); ++ ++unsigned int i915_lvdsscale = 85; ++module_param_named(lvdsscale, i915_lvdsscale, int, 0400); ++ ++unsigned int i915_displayclock = 1; ++module_param_named(displayclock, i915_displayclock, int, 0600); ++ ++unsigned int i915_renderclock = 0; ++module_param_named(renderclock, i915_renderclock, int, 0600); ++ static struct drm_driver driver; static struct pci_device_id pciidlist[] = { diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h 2009-07-27 02:59:58.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h 2009-07-27 03:11:18.000000000 +0100 +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_drv.h 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_drv.h 2009-07-30 21:29:34.000000000 +0100 @@ -436,6 +436,12 @@ struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT]; } mm; @@ -27,15 +39,19 @@ diff -ur linux-2.6.30.noarch.orig/driver } drm_i915_private_t; /** driver private structure attached to each drm_gem_object */ -@@ -565,6 +571,7 @@ +@@ -565,6 +571,11 @@ extern struct drm_ioctl_desc i915_ioctls[]; extern int i915_max_ioctl; extern unsigned int i915_fbpercrtc; +extern unsigned int i915_powersave; ++extern unsigned int i915_lvdsclock; ++extern unsigned int i915_lvdsscale; ++extern unsigned int i915_displayclock; ++extern unsigned int i915_renderclock; extern int i915_master_create(struct drm_device *dev, struct drm_master *master); extern void i915_master_destroy(struct drm_device *dev, struct drm_master *master); -@@ -892,6 +899,9 @@ +@@ -893,6 +904,9 @@ /* dsparb controlled by hw only */ #define DSPARB_HWCONTROL(dev) (IS_G4X(dev) || IS_IGDNG(dev)) @@ -45,9 +61,10 @@ diff -ur linux-2.6.30.noarch.orig/driver #define PRIMARY_RINGBUFFER_SIZE (128*1024) #endif +Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: i915_drv.h.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c 2009-07-27 03:06:09.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c 2009-07-27 03:11:18.000000000 +0100 +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c 2009-07-30 21:29:34.000000000 +0100 @@ -29,6 +29,7 @@ #include "drm.h" #include "i915_drm.h" @@ -87,9 +104,9 @@ diff -ur linux-2.6.30.noarch.orig/driver DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n", __func__, obj, diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h 2009-07-27 02:59:58.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h 2009-07-27 03:11:18.000000000 +0100 -@@ -55,7 +55,7 @@ +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_reg.h 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_reg.h 2009-07-30 21:29:34.000000000 +0100 +@@ -56,7 +56,7 @@ /* PCI config space */ #define HPLLCC 0xc0 /* 855 only */ @@ -98,7 +115,7 @@ diff -ur linux-2.6.30.noarch.orig/driver #define GC_CLOCK_133_200 (0 << 0) #define GC_CLOCK_100_200 (1 << 0) #define GC_CLOCK_100_133 (2 << 0) -@@ -65,6 +65,25 @@ +@@ -66,6 +66,25 @@ #define GC_DISPLAY_CLOCK_190_200_MHZ (0 << 4) #define GC_DISPLAY_CLOCK_333_MHZ (4 << 4) #define GC_DISPLAY_CLOCK_MASK (7 << 4) @@ -124,7 +141,7 @@ diff -ur linux-2.6.30.noarch.orig/driver #define LBB 0xf4 /* VGA stuff */ -@@ -1569,6 +1588,7 @@ +@@ -1570,6 +1589,7 @@ #define PIPECONF_PROGRESSIVE (0 << 21) #define PIPECONF_INTERLACE_W_FIELD_INDICATION (6 << 21) #define PIPECONF_INTERLACE_FIELD_0_ONLY (7 << 21) @@ -132,9 +149,10 @@ diff -ur linux-2.6.30.noarch.orig/driver #define PIPEASTAT 0x70024 #define PIPE_FIFO_UNDERRUN_STATUS (1UL<<31) #define PIPE_CRC_ERROR_ENABLE (1UL<<29) +Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: i915_reg.h.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c 2009-07-27 03:06:09.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c 2009-07-27 03:12:17.000000000 +0100 +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c 2009-07-30 21:29:34.000000000 +0100 @@ -36,6 +36,7 @@ bool intel_pipe_has_type (struct drm_crtc *crtc, int type); @@ -452,10 +470,10 @@ diff -ur linux-2.6.30.noarch.orig/driver return -EINVAL; } -+ if (limit->find_reduced_pll) { ++ if (limit->find_reduced_pll && is_lvds) { + memcpy(&reduced_clock, &clock, sizeof(intel_clock_t)); + has_reduced_clock = limit->find_reduced_pll(limit, crtc, -+ (adjusted_mode->clock*3/4), ++ (adjusted_mode->clock*i915_lvdsscale/100), + refclk, + &reduced_clock); + } @@ -496,7 +514,7 @@ diff -ur linux-2.6.30.noarch.orig/driver intel_dp_set_m_n(crtc, mode, adjusted_mode); I915_WRITE(fp_reg, fp); -+ if (has_reduced_clock && i915_powersave) { ++ if (has_reduced_clock && i915_powersave && i915_lvdsclock) { + I915_WRITE(fp_reg + 4, fp2); + intel_crtc->lowfreq_avail = true; + if (HAS_PIPE_CXSR(dev)) { @@ -536,7 +554,7 @@ diff -ur linux-2.6.30.noarch.orig/driver if (x < 0) { temp |= CURSOR_POS_SIGN << CURSOR_X_SHIFT; x = -x; -@@ -2813,6 +2920,271 @@ +@@ -2813,6 +2920,286 @@ return mode; } @@ -559,6 +577,9 @@ diff -ur linux-2.6.30.noarch.orig/driver +{ + drm_i915_private_t *dev_priv = dev->dev_private; + ++ if (!i915_renderclock) ++ return; ++ + if (IS_G4X(dev) || IS_I9XX(dev)) { + /* Up to maximum... */ + pci_write_config_word(dev->pdev, GCFGC, dev_priv->orig_clock); @@ -577,6 +598,9 @@ diff -ur linux-2.6.30.noarch.orig/driver + +void intel_decrease_renderclock(struct drm_device *dev) +{ ++ if (!i915_renderclock) ++ return; ++ + if (IS_G4X(dev)) { + u16 gcfgc; + @@ -641,6 +665,9 @@ diff -ur linux-2.6.30.noarch.orig/driver + */ +void intel_decrease_displayclock(struct drm_device *dev) +{ ++ if (!i915_displayclock) ++ return; ++ + if (IS_I945G(dev) || IS_I945GM(dev) || IS_I915G(dev) || + IS_I915GM(dev)) { + u16 gcfgc; @@ -678,6 +705,9 @@ diff -ur linux-2.6.30.noarch.orig/driver + int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; + int dpll = I915_READ(dpll_reg); + ++ if (!i915_lvdsclock) ++ return; ++ + if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { + DRM_DEBUG("upclocking LVDS\n"); + @@ -708,6 +738,9 @@ diff -ur linux-2.6.30.noarch.orig/driver + int dpll_reg = (pipe == 0) ? DPLL_A : DPLL_B; + int dpll = I915_READ(dpll_reg); + ++ if (!i915_lvdsclock) ++ return; ++ + /* + * Since this is called by a timer, we should never get here in + * the manual case. @@ -808,7 +841,7 @@ diff -ur linux-2.6.30.noarch.orig/driver static void intel_crtc_destroy(struct drm_crtc *crtc) { struct intel_crtc *intel_crtc = to_intel_crtc(crtc); -@@ -2869,6 +3241,10 @@ +@@ -2869,6 +3256,10 @@ intel_crtc->mode_set.crtc = &intel_crtc->base; intel_crtc->mode_set.connectors = (struct drm_connector **)(intel_crtc + 1); intel_crtc->mode_set.num_connectors = 0; @@ -819,7 +852,7 @@ diff -ur linux-2.6.30.noarch.orig/driver if (i915_fbpercrtc) { -@@ -3143,6 +3519,7 @@ +@@ -3143,6 +3534,7 @@ void intel_modeset_init(struct drm_device *dev) { @@ -827,7 +860,7 @@ diff -ur linux-2.6.30.noarch.orig/driver int num_pipe; int i; -@@ -3174,15 +3551,38 @@ +@@ -3174,15 +3566,38 @@ DRM_DEBUG("%d display pipe%s available.\n", num_pipe, num_pipe > 1 ? "s" : ""); @@ -866,12 +899,10 @@ diff -ur linux-2.6.30.noarch.orig/driver drm_mode_config_cleanup(dev); } -Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c~ -Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c.orig -Only in linux-2.6.30.noarch/drivers/gpu/drm/i915: intel_display.c.rej +Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: intel_display.c.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h ---- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h 2009-07-27 02:59:58.000000000 +0100 -+++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h 2009-07-27 03:11:18.000000000 +0100 +--- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h 2009-07-30 21:32:05.000000000 +0100 ++++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h 2009-07-30 21:29:34.000000000 +0100 @@ -98,6 +98,9 @@ struct intel_framebuffer *fbdev_fb; /* a mode_set for fbdev users on this crtc */ Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1675 retrieving revision 1.1676 diff -u -p -r1.1675 -r1.1676 --- kernel.spec 30 Jul 2009 15:48:44 -0000 1.1675 +++ kernel.spec 30 Jul 2009 20:43:31 -0000 1.1676 @@ -1933,6 +1933,11 @@ fi # and build. %changelog +* Thu Jul 30 2009 Matthew Garrett +- drm-intel-pm.patch: Don't reclock external outputs. Increase the reduced + clock slightly to avoid upsetting some hardware. Disable renderclock + adjustment for the moment - it's breaking on some hardware. + * Thu Jul 30 2009 Ben Skeggs - nouveau: another DCB 1.5 entry, G80 corruption fixes, small Author: jkeating Update of /cvs/pkgs/rpms/PyOpenGL/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26808 Modified Files: PyOpenGL.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 3.0.0-2 - Rebuild for Fedora 12 mass rebuild Index: PyOpenGL.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyOpenGL/devel/PyOpenGL.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- PyOpenGL.spec 9 Jun 2009 20:07:59 -0000 1.15 +++ PyOpenGL.spec 30 Jul 2009 20:45:48 -0000 1.16 @@ -2,7 +2,7 @@ Name: PyOpenGL Version: 3.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Python bindings for OpenGL License: BSD Group: System Environment/Libraries @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/OpenGL/Tk %changelog +* Thu Jul 30 2009 Jesse Keating - 3.0.0-2 +- Rebuild for Fedora 12 mass rebuild + * Tue Jun 9 2009 Nikolay Vladimirov - 3.0.0-1 - Updated to 3.0 stable - Changed requires from python-numeric to numpy for BZ #504681 From katzj at fedoraproject.org Thu Jul 30 20:47:06 2009 From: katzj at fedoraproject.org (Jeremy Katz) Date: Thu, 30 Jul 2009 20:47:06 +0000 (UTC) Subject: rpms/livecd-tools/devel .cvsignore, 1.20, 1.21 livecd-tools.spec, 1.27, 1.28 sources, 1.21, 1.22 Message-ID: <20090730204706.B8BA811C00D3@cvs1.fedora.phx.redhat.com> Author: katzj Update of /cvs/pkgs/rpms/livecd-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27055 Modified Files: .cvsignore livecd-tools.spec sources Log Message: * Thu Jul 30 2009 Jeremy Katz - 025-1 - Bind mount /dev/shm also (#502921) - Update man pages (Michel Duquaine, #505742) - Use blkid instead of vol_id (mclasen, #506360) - A few livecd-iso-to-disk tweaks (Martin Dengler, Jason Farrell) - Another fix for SELinux being disabled (#508402) - Use resize2fs -M and handle resize errors better - Use isohybrid on the live image - Use system-config-keyboard instead of rhpl Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/livecd-tools/devel/.cvsignore,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- .cvsignore 14 Apr 2009 18:01:19 -0000 1.20 +++ .cvsignore 30 Jul 2009 20:47:06 -0000 1.21 @@ -1 +1 @@ -livecd-tools-023.tar.bz2 +livecd-tools-025.tar.bz2 Index: livecd-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/livecd-tools/devel/livecd-tools.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- livecd-tools.spec 25 Jul 2009 11:09:54 -0000 1.27 +++ livecd-tools.spec 30 Jul 2009 20:47:06 -0000 1.28 @@ -4,8 +4,8 @@ Summary: Tools for building live CDs Name: livecd-tools -Version: 024 -Release: 2%{?dist} +Version: 025 +Release: 1%{?dist} License: GPLv2 Group: System Environment/Base URL: http://git.fedorahosted.org/git/livecd @@ -39,7 +39,7 @@ Requires: yum >= 3.2.18 Requires: squashfs-tools Requires: pykickstart >= 0.96 Requires: dosfstools >= 2.11-8 -Requires: rhpl +Requires: system-config-keyboard >= 1.3.0 Requires: python-urlgrabber Requires: libselinux-python Requires: dbus-python @@ -81,6 +81,16 @@ rm -rf $RPM_BUILD_ROOT %{python_sitelib}/imgcreate/*.pyc %changelog +* Thu Jul 30 2009 Jeremy Katz - 025-1 +- Bind mount /dev/shm also (#502921) +- Update man pages (Michel Duquaine, #505742) +- Use blkid instead of vol_id (mclasen, #506360) +- A few livecd-iso-to-disk tweaks (Martin Dengler, Jason Farrell) +- Another fix for SELinux being disabled (#508402) +- Use resize2fs -M and handle resize errors better +- Use isohybrid on the live image +- Use system-config-keyboard instead of rhpl + * Sat Jul 25 2009 Fedora Release Engineering - 024-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/livecd-tools/devel/sources,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- sources 6 Jul 2009 18:03:30 -0000 1.21 +++ sources 30 Jul 2009 20:47:06 -0000 1.22 @@ -1 +1 @@ -9e1ffda4a6b93c53ef7964dfadce2452 livecd-tools-024.tar.bz2 +5f66482e1143c3717b356df0ec61b864 livecd-tools-025.tar.bz2 From jkeating at fedoraproject.org Thu Jul 30 20:52:38 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 20:52:38 +0000 (UTC) Subject: rpms/autofs/devel autofs.spec,1.284,1.285 Message-ID: <20090730205238.294C011C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28461 Modified Files: autofs.spec Log Message: bump the release farther, consider using dist tag Index: autofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/autofs/devel/autofs.spec,v retrieving revision 1.284 retrieving revision 1.285 diff -u -p -r1.284 -r1.285 --- autofs.spec 24 Jul 2009 17:37:20 -0000 1.284 +++ autofs.spec 30 Jul 2009 20:52:37 -0000 1.285 @@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4 -Release: 35 +Release: 36 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons @@ -227,7 +227,7 @@ fi %{_libdir}/autofs/ %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1:5.0.4-35 +* Fri Jul 24 2009 Fedora Release Engineering - 1:5.0.4-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Jul 17 2009 Ian Kent - 1:5.0.4-34 From jamatos at fedoraproject.org Thu Jul 30 20:54:01 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Thu, 30 Jul 2009 20:54:01 +0000 (UTC) Subject: rpms/pygsl/devel .cvsignore, 1.4, 1.5 pygsl.spec, 1.21, 1.22 sources, 1.6, 1.7 Message-ID: <20090730205401.C103E11C00D3@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/pygsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29028 Modified Files: .cvsignore pygsl.spec sources Log Message: * Thu Jul 30 2009 Jos? Matos - 0.9.4-1 - New upstream bugfix release Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pygsl/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 17 Jun 2008 15:40:01 -0000 1.4 +++ .cvsignore 30 Jul 2009 20:54:01 -0000 1.5 @@ -1 +1,2 @@ pygsl-0.9.3.tar.gz +pygsl-0.9.4.tar.gz Index: pygsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygsl/devel/pygsl.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- pygsl.spec 26 Jul 2009 19:51:15 -0000 1.21 +++ pygsl.spec 30 Jul 2009 20:54:01 -0000 1.22 @@ -6,8 +6,8 @@ Summary: GNU Scientific Library Interface for python Name: pygsl -Version: 0.9.3 -Release: 5%{?dist} +Version: 0.9.4 +Release: 1%{?dist} # The package is mostly GPL+ but there are two scripts # GLPv2+: pygsl/odeiv.py and examples/siman_tsp.py License: GPLv2+ @@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jos? Matos - 0.9.4-1 +- New upstream bugfix release + * Sun Jul 26 2009 Fedora Release Engineering - 0.9.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pygsl/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 17 Jun 2008 15:40:01 -0000 1.6 +++ sources 30 Jul 2009 20:54:01 -0000 1.7 @@ -1 +1,2 @@ fdb9eb0c6843950bb50173898fbbff02 pygsl-0.9.3.tar.gz +4751db2c8465f75c72fbc8c8778d64f4 pygsl-0.9.4.tar.gz From jkeating at fedoraproject.org Thu Jul 30 20:54:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 20:54:00 +0000 (UTC) Subject: rpms/autofs/devel autofs.spec,1.285,1.286 Message-ID: <20090730205400.8C00D11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/autofs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29013 Modified Files: autofs.spec Log Message: bump again Index: autofs.spec =================================================================== RCS file: /cvs/pkgs/rpms/autofs/devel/autofs.spec,v retrieving revision 1.285 retrieving revision 1.286 diff -u -p -r1.285 -r1.286 --- autofs.spec 30 Jul 2009 20:52:37 -0000 1.285 +++ autofs.spec 30 Jul 2009 20:54:00 -0000 1.286 @@ -4,7 +4,7 @@ Summary: A tool for automatically mounting and unmounting filesystems Name: autofs Version: 5.0.4 -Release: 36 +Release: 37 Epoch: 1 License: GPLv2+ Group: System Environment/Daemons @@ -227,7 +227,7 @@ fi %{_libdir}/autofs/ %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 1:5.0.4-36 +* Fri Jul 24 2009 Fedora Release Engineering - 1:5.0.4-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Jul 17 2009 Ian Kent - 1:5.0.4-34 From spot at fedoraproject.org Thu Jul 30 20:56:56 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 20:56:56 +0000 (UTC) Subject: rpms/ebtables/EL-5 ebtables-2.0.8-buildid.patch, NONE, 1.1 ebtables-2.0.8-cflags.patch, NONE, 1.1 ebtables-2.0.8-norootinst.patch, NONE, 1.1 ebtables.spec, 1.18, 1.19 sources, 1.6, 1.7 Message-ID: <20090730205656.1834911C00D3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ebtables/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29505 Modified Files: ebtables.spec sources Added Files: ebtables-2.0.8-buildid.patch ebtables-2.0.8-cflags.patch ebtables-2.0.8-norootinst.patch Log Message: 2.0.9 for EL5 ebtables-2.0.8-buildid.patch: Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE ebtables-2.0.8-buildid.patch --- diff -up ebtables-v2.0.8-1/Makefile.BAD ebtables-v2.0.8-1/Makefile --- ebtables-v2.0.8-1/Makefile.BAD 2007-08-23 09:57:40.000000000 -0400 +++ ebtables-v2.0.8-1/Makefile 2007-08-23 09:58:11.000000000 -0400 @@ -94,7 +94,7 @@ ebtables-standalone.o: ebtables-standalo .PHONY: libebtc libebtc: $(OBJECTS2) - $(LD) -shared -soname libebtc.so -o libebtc.so -lc $(OBJECTS2) + $(LD) --build-id -shared -soname libebtc.so -o libebtc.so -lc $(OBJECTS2) ebtables: $(OBJECTS) ebtables-standalone.o libebtc $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) -o $@ ebtables-standalone.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \ ebtables-2.0.8-cflags.patch: Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- NEW FILE ebtables-2.0.8-cflags.patch --- diff -up ebtables-v2.0.8-1/extensions/Makefile.BAD ebtables-v2.0.8-1/extensions/Makefile --- ebtables-v2.0.8-1/extensions/Makefile.BAD 2007-08-23 09:52:37.000000000 -0400 +++ ebtables-v2.0.8-1/extensions/Makefile 2007-08-23 09:52:50.000000000 -0400 @@ -11,13 +11,13 @@ EXT_LIBSI+=$(foreach T,$(EXT_FUNC), -leb EXT_LIBSI+=$(foreach T,$(EXT_TABLES), -lebtable_$(T)) extensions/ebt_%.so: extensions/ebt_%.o - $(CC) -shared -o $@ -lc $< -nostartfiles + $(CC) $(CFLAGS) -shared -o $@ -lc $< -nostartfiles extensions/libebt_%.so: extensions/ebt_%.so mv $< $@ extensions/ebtable_%.so: extensions/ebtable_%.o - $(CC) -shared -o $@ -lc $< -nostartfiles + $(CC) $(CFLAGS) -shared -o $@ -lc $< -nostartfiles extensions/libebtable_%.so: extensions/ebtable_%.so mv $< $@ ebtables-2.0.8-norootinst.patch: Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) --- NEW FILE ebtables-2.0.8-norootinst.patch --- diff -up ebtables-v2.0.8-2/Makefile.orig ebtables-v2.0.8-2/Makefile --- ebtables-v2.0.8-2/Makefile.orig 2007-09-21 13:27:20.000000000 -0400 +++ ebtables-v2.0.8-2/Makefile 2007-10-28 15:09:01.000000000 -0400 @@ -154,28 +154,28 @@ tmp3:=$(shell printf $(PIPE) | sed 's/\/ .PHONY: scripts scripts: ebtables-save ebtables.sysv ebtables-config cat ebtables-save | sed 's/__EXEC_PATH__/$(tmp1)/g' > ebtables-save_ - install -m 0755 -o root -g root ebtables-save_ $(DESTDIR)$(BINDIR)/ebtables-save + install -m 0755 ebtables-save_ $(DESTDIR)$(BINDIR)/ebtables-save cat ebtables.sysv | sed 's/__EXEC_PATH__/$(tmp1)/g' | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables.sysv_ - install -m 0755 -o root -g root ebtables.sysv_ $(DESTDIR)$(INITDIR)/ebtables + install -m 0755 ebtables.sysv_ $(DESTDIR)$(INITDIR)/ebtables cat ebtables-config | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables-config_ - install -m 0600 -o root -g root ebtables-config_ $(DESTDIR)$(SYSCONFIGDIR)/ebtables-config + install -m 0600 ebtables-config_ $(DESTDIR)$(SYSCONFIGDIR)/ebtables-config rm -f ebtables-save_ ebtables.sysv_ ebtables-config_ $(MANDIR)/man8/ebtables.8: ebtables.8 mkdir -p $(DESTDIR)$(@D) sed 's/$$(VERSION)/$(PROGVERSION)/' ebtables.8 | sed 's/$$(DATE)/$(PROGDATE)/' > ebtables.8_ - install -m 0644 -o root -g root ebtables.8_ $(DESTDIR)$@ + install -m 0644 ebtables.8_ $(DESTDIR)$@ rm -f ebtables.8_ $(ETHERTYPESFILE): ethertypes mkdir -p $(DESTDIR)$(@D) - install -m 0644 -o root -g root $< $(DESTDIR)$@ + install -m 0644 $< $(DESTDIR)$@ .PHONY: exec exec: ebtables ebtables-restore mkdir -p $(DESTDIR)$(BINDIR) - install -m 0755 -o root -g root $(PROGNAME) $(DESTDIR)$(BINDIR)/$(PROGNAME) - install -m 0755 -o root -g root ebtables-restore $(DESTDIR)$(BINDIR)/ebtables-restore + install -m 0755 $(PROGNAME) $(DESTDIR)$(BINDIR)/$(PROGNAME) + install -m 0755 ebtables-restore $(DESTDIR)$(BINDIR)/ebtables-restore .PHONY: install install: $(MANDIR)/man8/ebtables.8 $(ETHERTYPESFILE) exec scripts @@ -199,18 +199,18 @@ release: rm -f extensions/ebt_inat.c rm -rf $(CVSDIRS) mkdir -p include/linux/netfilter_bridge - install -m 0644 -o root -g root \ + install -m 0644 \ $(KERNEL_INCLUDES)/linux/netfilter_bridge.h include/linux/ # To keep possible compile error complaints about undefined ETH_P_8021Q # off my back - install -m 0644 -o root -g root \ + install -m 0644 \ $(KERNEL_INCLUDES)/linux/if_ether.h include/linux/ - install -m 0644 -o root -g root \ + install -m 0644 \ $(KERNEL_INCLUDES)/linux/types.h include/linux/ - install -m 0644 -o root -g root \ + install -m 0644 \ $(KERNEL_INCLUDES)/linux/netfilter_bridge/*.h \ include/linux/netfilter_bridge/ - install -m 0644 -o root -g root \ + install -m 0644 \ include/ebtables.h include/linux/netfilter_bridge/ make clean touch * Index: ebtables.spec =================================================================== RCS file: /cvs/extras/rpms/ebtables/EL-5/ebtables.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- ebtables.spec 23 Aug 2007 14:49:19 -0000 1.18 +++ ebtables.spec 30 Jul 2009 20:56:54 -0000 1.19 @@ -1,15 +1,17 @@ -Name: ebtables -Version: 2.0.8 -Release: 1%{?dist} -Summary: Ethernet Bridge frame table administration tool -License: GPLv2+ -Group: System Environment/Base -URL: http://ebtables.sourceforge.net/ -Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-1.tar.gz -Source1: ebtables.sysv -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -PreReq: /sbin/chkconfig -PreReq: /sbin/service +Name: ebtables +Version: 2.0.9 +Release: 1%{?dist} +Summary: Ethernet Bridge frame table administration tool +License: GPLv2+ +Group: System Environment/Base +URL: http://ebtables.sourceforge.net/ +Source0: http://dl.sf.net/ebtables/ebtables-v%{version}-1.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(pre): /sbin/chkconfig +Requires(postun): /sbin/service +Patch0: ebtables-2.0.8-norootinst.patch +Patch1: ebtables-2.0.8-cflags.patch +Patch2: ebtables-2.0.8-buildid.patch %description Ethernet bridge tables is a firewalling tool to transparently filter network @@ -17,30 +19,32 @@ traffic passing a bridge. The filtering layer filtering and some basic filtering on higher network layers. This tool is the userspace control for the bridge and ebtables kernel -components (built by default in Fedora Core kernels). +components (built by default in Fedora kernels). The ebtables tool can be used together with the other Linux filtering tools, like iptables. There are no known incompatibility issues. %prep %setup -q -n ebtables-v%{version}-1 +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 + +# Convert to UTF-8 +f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f %build MY_CFLAGS=`echo $RPM_OPT_FLAGS -fPIC | sed -e 's/-fstack-protector//g'` -make %{?_smp_mflags} CFLAGS="$MY_CFLAGS" +make %{?_smp_mflags} CFLAGS="$MY_CFLAGS" LIBDIR="%{_libdir}/ebtables" BINDIR="/sbin" MANDIR="%{_mandir}" %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_libdir} -install -m0755 extensions/*.so $RPM_BUILD_ROOT%{_libdir} -install -m0755 *.so $RPM_BUILD_ROOT%{_libdir} -install -D -m0755 ebtables $RPM_BUILD_ROOT/sbin/ebtables -install -D -m0755 %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/ebtables -install -D -m0644 ethertypes $RPM_BUILD_ROOT%{_sysconfdir}/ethertypes -install -D -m0644 ebtables.8 $RPM_BUILD_ROOT%{_mandir}/man8/ebtables.8 -touch $RPM_BUILD_ROOT%{_sysconfdir}/ebtables.filter -touch $RPM_BUILD_ROOT%{_sysconfdir}/ebtables.nat -touch $RPM_BUILD_ROOT%{_sysconfdir}/ebtables.broute +mkdir -p $RPM_BUILD_ROOT%{_initrddir} +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig +make DESTDIR="$RPM_BUILD_ROOT" LIBDIR="%{_libdir}/ebtables" BINDIR="/sbin" MANDIR="%{_mandir}" install +touch $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ebtables.filter +touch $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ebtables.nat +touch $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ebtables.broute %clean rm -rf $RPM_BUILD_ROOT @@ -66,14 +70,42 @@ fi %doc ChangeLog COPYING THANKS %doc %{_mandir}/man8/ebtables.8* %config(noreplace) %{_sysconfdir}/ethertypes +%config(noreplace) %{_sysconfdir}/sysconfig/ebtables-config %{_initrddir}/ebtables -%{_libdir}/libebt*.so -/sbin/ebtables -%ghost %{_sysconfdir}/ebtables.filter -%ghost %{_sysconfdir}/ebtables.nat -%ghost %{_sysconfdir}/ebtables.broute +%{_libdir}/ebtables/ +/sbin/ebtables* +%ghost %{_sysconfdir}/sysconfig/ebtables.filter +%ghost %{_sysconfdir}/sysconfig/ebtables.nat +%ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Mon Jul 27 2009 Tom "spot" Callaway - 2.0.9-1 +- update to 2.0.9 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.0.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 2.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 19 2008 Fedora Release Engineering - 2.0.8-5 +- Autorebuild for GCC 4.3 + +* Sun Oct 28 2007 Tom "spot" Callaway 2.0.8-4 +- bump to 2.0.8-2 from upstream +- keep _libdir/ebtables, even though upstream just moved away from it. + +* Thu Aug 23 2007 Tom "spot" Callaway 2.0.8-3 +- use _libdir/ebtables to match upstream RPATH (bugzilla 248865) +- correct license tag +- use upstream init script +- enable build-id +- use cflags for all compiles +- be sane with DESTDIR + +* Mon Jul 9 2007 Tom "spot" Callaway 2.0.8-2 +- remove "Fedora Core" reference in spec + * Mon Jul 2 2007 Tom "spot" Callaway 2.0.8-1 - final 2.0.8 release @@ -125,9 +157,9 @@ fi * Fri Jul 1 2005 Tom "spot" Callaway 2.0.6-4 - remove INSTALL file - add some text to description, correct typos -- fix %postun +- fix %%postun - add PreReqs -- add %ghost config files +- add %%ghost config files * Tue May 31 2005 Tom "spot" Callaway 2.0.6-3 - reworked for Fedora Extras Index: sources =================================================================== RCS file: /cvs/extras/rpms/ebtables/EL-5/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 2 Jul 2007 20:41:37 -0000 1.6 +++ sources 30 Jul 2009 20:56:54 -0000 1.7 @@ -1,2 +1 @@ -92f0dd5107b92a744e104f50f9b2dd2d ebtables-v2.0.8-rc3.tar.gz -216e5d20fbd0e56dbe7e56b0d07b1909 ebtables-v2.0.8-1.tar.gz +0e0c20adf2bba6d91dbd0b74a1a38c33 ebtables-v2.0.9-1.tar.gz From james at fedoraproject.org Thu Jul 30 20:57:27 2009 From: james at fedoraproject.org (James Antill) Date: Thu, 30 Jul 2009 20:57:27 +0000 (UTC) Subject: rpms/python/devel .cvsignore, 1.19, 1.20 python.spec, 1.150, 1.151 sources, 1.19, 1.20 python-2.5.2-binutils-no-dep.patch, 1.1, NONE python-2.6-canonicalize.patch, 1.1, NONE python-2.6-config.patch, 1.2, NONE Message-ID: <20090730205727.EDF0E11C00D3@cvs1.fedora.phx.redhat.com> Author: james Update of /cvs/pkgs/rpms/python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29887 Modified Files: .cvsignore python.spec sources Removed Files: python-2.5.2-binutils-no-dep.patch python-2.6-canonicalize.patch python-2.6-config.patch Log Message: * Mon Jul 27 2009 James Antill - 2.6.2-1 - Update to 2.6.2 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python/devel/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- .cvsignore 29 Nov 2008 02:03:47 -0000 1.19 +++ .cvsignore 30 Jul 2009 20:57:27 -0000 1.20 @@ -1 +1 @@ -Python-2.6.tar.bz2 +Python-2.6.2.tar.bz2 Index: python.spec =================================================================== RCS file: /cvs/pkgs/rpms/python/devel/python.spec,v retrieving revision 1.150 retrieving revision 1.151 diff -u -p -r1.150 -r1.151 --- python.spec 26 Jul 2009 20:00:18 -0000 1.150 +++ python.spec 30 Jul 2009 20:57:27 -0000 1.151 @@ -21,25 +21,24 @@ Summary: An interpreted, interactive, object-oriented programming language Name: %{python} -Version: 2.6 -Release: 11%{?dist} +Version: 2.6.2 +Release: 1%{?dist} License: Python Group: Development/Languages Provides: python-abi = %{pybasever} Provides: python(abi) = %{pybasever} Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2 -Patch0: python-2.6-config.patch +Patch0: python-2.6.2-config.patch Patch1: Python-2.2.1-pydocnogui.patch #Patch2: python-2.3.4-pydocnodoc.patch -Patch3: python-2.6-canonicalize.patch Patch4: python-2.5-cflags.patch #Patch5: python-2.5.1-ctypes-exec-stack.patch Patch6: python-2.5.1-plural-fix.patch Patch7: python-2.5.1-sqlite-encoding.patch #Patch8: python-2.5-xmlrpclib-marshal-objects.patch #Patch9: python-2.5-tkinter.patch -Patch10: python-2.5.2-binutils-no-dep.patch +Patch10: python-2.6.2-binutils-no-dep.patch Patch11: python-2.5.1-codec-ascii-tolower.patch #Patch12: python-2.5.1-pysqlite.patch Patch13: python-2.5.1-socketmodule-constants.patch @@ -204,7 +203,6 @@ code that uses more than just unittest a %patch0 -p1 -b .rhconfig %patch1 -p1 -b .no_gui #%%patch2 -p1 -b .no-doc -%patch3 -p1 -b .canonicalize %patch4 -p1 -b .cflags #%%patch5 -p1 -b .ctypesexec %patch6 -p1 -b .plural @@ -540,6 +538,9 @@ rm -fr $RPM_BUILD_ROOT %{_libdir}/python%{pybasever}/lib-dynload/_testcapimodule.so %changelog +* Mon Jul 27 2009 James Antill - 2.6.2-1 +- Update to 2.6.2 + * Sun Jul 26 2009 Fedora Release Engineering - 2.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 29 Nov 2008 02:03:47 -0000 1.19 +++ sources 30 Jul 2009 20:57:27 -0000 1.20 @@ -1 +1 @@ -837476958702cb386c657b5dba61cdc5 Python-2.6.tar.bz2 +245db9f1e0f09ab7e0faaa0cf7301011 Python-2.6.2.tar.bz2 --- python-2.5.2-binutils-no-dep.patch DELETED --- --- python-2.6-canonicalize.patch DELETED --- --- python-2.6-config.patch DELETED --- From pkgdb at fedoraproject.org Thu Jul 30 20:57:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 20:57:44 +0000 Subject: [pkgdb] bmp-flac2 ownership updated Message-ID: <20090730205746.9E74410F88F@bastion2.fedora.phx.redhat.com> Package bmp-flac2 in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmp-flac2 From pkgdb at fedoraproject.org Thu Jul 30 20:57:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 20:57:44 +0000 Subject: [pkgdb] bmp-flac2 (un)retirement Message-ID: <20090730205747.B388910F89A@bastion2.fedora.phx.redhat.com> Package bmp-flac2 in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/bmp-flac2 From spot at fedoraproject.org Thu Jul 30 21:00:58 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 21:00:58 +0000 (UTC) Subject: rpms/mono-ndoc/devel mono-ndoc.spec,1.4,1.5 Message-ID: <20090730210058.C3E9111C00D3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mono-ndoc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30373 Modified Files: mono-ndoc.spec Log Message: rebuild Index: mono-ndoc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-ndoc/devel/mono-ndoc.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- mono-ndoc.spec 25 Jul 2009 15:01:08 -0000 1.4 +++ mono-ndoc.spec 30 Jul 2009 21:00:58 -0000 1.5 @@ -2,7 +2,7 @@ Name: mono-ndoc Version: 1.3.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Code Documentation Generator for .NET URL: http://ndoc.sourceforge.net/ License: GPLv2+ @@ -90,6 +90,9 @@ rm -rf -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/ndoc.pc %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 1.3.1-6 +- rebuild + * Sat Jul 25 2009 Fedora Release Engineering - 1.3.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From spot at fedoraproject.org Thu Jul 30 21:01:17 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 21:01:17 +0000 (UTC) Subject: rpms/nant/devel nant.spec,1.33,1.34 Message-ID: <20090730210117.3502811C00D3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/nant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30457 Modified Files: nant.spec Log Message: rebuild for bootstrap Index: nant.spec =================================================================== RCS file: /cvs/pkgs/rpms/nant/devel/nant.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- nant.spec 25 Jul 2009 15:44:45 -0000 1.33 +++ nant.spec 30 Jul 2009 21:01:17 -0000 1.34 @@ -1,12 +1,12 @@ %global debug_package %{nil} %global monodir %{_libdir} %global mlib %{_lib} -%global bootstrap 0 +%global bootstrap 1 Summary: NAnt is a build tool for Mono and .NET Name: nant Version: 0.85 -Release: 28%{?dist} +Release: 28%{?dist}.1 Epoch: 1 Source0: http://download.sourceforge.net/nant/%{name}-%{version}-src.tar.gz Patch0: nant-build.patch @@ -132,6 +132,9 @@ scrollkeeper-update -q || : %doc examples/* doc/help/* %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 1:0.85-28.1 +- bootstrap to get mono-ndoc rebuilt + * Sat Jul 25 2009 Fedora Release Engineering - 1:0.85-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mjg59 at fedoraproject.org Thu Jul 30 21:01:40 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Thu, 30 Jul 2009 21:01:40 +0000 (UTC) Subject: rpms/kernel/devel drm-intel-pm.patch,1.2,1.3 Message-ID: <20090730210140.29C5711C00D3@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30575 Modified Files: drm-intel-pm.patch Log Message: Remove cruft to make Kyle happy drm-intel-pm.patch: i915_drv.c | 15 + i915_drv.h | 14 + i915_gem.c | 8 i915_reg.h | 22 ++ intel_display.c | 483 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- intel_drv.h | 4 6 files changed, 511 insertions(+), 35 deletions(-) Index: drm-intel-pm.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-intel-pm.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- drm-intel-pm.patch 30 Jul 2009 20:43:31 -0000 1.2 +++ drm-intel-pm.patch 30 Jul 2009 21:01:40 -0000 1.3 @@ -61,7 +61,6 @@ diff -ur linux-2.6.30.noarch.orig/driver #define PRIMARY_RINGBUFFER_SIZE (128*1024) #endif -Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: i915_drv.h.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/i915_gem.c 2009-07-30 21:32:05.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/i915_gem.c 2009-07-30 21:29:34.000000000 +0100 @@ -149,7 +148,6 @@ diff -ur linux-2.6.30.noarch.orig/driver #define PIPEASTAT 0x70024 #define PIPE_FIFO_UNDERRUN_STATUS (1UL<<31) #define PIPE_CRC_ERROR_ENABLE (1UL<<29) -Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: i915_reg.h.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_display.c 2009-07-30 21:32:05.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_display.c 2009-07-30 21:29:34.000000000 +0100 @@ -899,7 +897,6 @@ diff -ur linux-2.6.30.noarch.orig/driver drm_mode_config_cleanup(dev); } -Only in linux-2.6.30.noarch.orig/drivers/gpu/drm/i915: intel_display.c.orig diff -ur linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h --- linux-2.6.30.noarch.orig/drivers/gpu/drm/i915/intel_drv.h 2009-07-30 21:32:05.000000000 +0100 +++ linux-2.6.30.noarch/drivers/gpu/drm/i915/intel_drv.h 2009-07-30 21:29:34.000000000 +0100 From jkeating at fedoraproject.org Thu Jul 30 21:02:00 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:02:00 +0000 (UTC) Subject: rpms/crypto-utils/devel crypto-utils.spec,1.62,1.63 Message-ID: <20090730210200.CC88A11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/crypto-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30630 Modified Files: crypto-utils.spec Log Message: * Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: crypto-utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/crypto-utils/devel/crypto-utils.spec,v retrieving revision 1.62 retrieving revision 1.63 diff -u -p -r1.62 -r1.63 --- crypto-utils.spec 24 Jul 2009 19:41:43 -0000 1.62 +++ crypto-utils.spec 30 Jul 2009 21:02:00 -0000 1.63 @@ -4,7 +4,7 @@ Summary: SSL certificate and key management utilities Name: crypto-utils Version: 2.4.1 -Release: 21 +Release: 22 Source: crypto-rand-%{crver}.tar.gz Source1: genkey.pl Source2: certwatch.c @@ -131,7 +131,7 @@ chmod -R u+w $RPM_BUILD_ROOT %{perl_vendorarch}/auto/Crypt %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-21 +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu May 21 2009 Elio Maldonado - 2.4.1-20 From james at fedoraproject.org Thu Jul 30 21:03:26 2009 From: james at fedoraproject.org (James Antill) Date: Thu, 30 Jul 2009 21:03:26 +0000 (UTC) Subject: rpms/python/devel python-2.6.2-binutils-no-dep.patch, NONE, 1.1 python-2.6.2-config.patch, NONE, 1.1 Message-ID: <20090730210326.2ACA611C00D3@cvs1.fedora.phx.redhat.com> Author: james Update of /cvs/pkgs/rpms/python/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31092 Added Files: python-2.6.2-binutils-no-dep.patch python-2.6.2-config.patch Log Message: * Mon Jul 27 2009 James Antill - 2.6.2-1 - Update to 2.6.2 python-2.6.2-binutils-no-dep.patch: util.py | 4 +++- util.py~ |only 2 files changed, 3 insertions(+), 1 deletion(-) --- NEW FILE python-2.6.2-binutils-no-dep.patch --- diff -ru Python-2.6.2-orig/Lib/ctypes/util.py Python-2.6.2/Lib/ctypes/util.py --- Python-2.6.2-orig/Lib/ctypes/util.py 2009-01-10 12:11:11.000000000 -0500 +++ Python-2.6.2/Lib/ctypes/util.py 2009-07-30 15:17:39.000000000 -0400 @@ -133,7 +133,9 @@ dump = f.read() rv = f.close() if rv == 10: - raise OSError, 'objdump command not found' + return os.path.basename(f) # This is good for GLibc, I think, + # and a dep on binutils is big (for + # live CDs). res = re.search(r'\sSONAME\s+([^\s]+)', os.popen(cmd).read()) if not res: return None Only in Python-2.6.2/Lib/ctypes: util.py~ python-2.6.2-config.patch: Python-2.6 | 137 ++++++++++++++++++++++++------------------------- Python-2.6.2/setup.py~ |only setup.py | 2 3 files changed, 68 insertions(+), 71 deletions(-) --- NEW FILE python-2.6.2-config.patch --- diff -ru Python-2.6-orig Python-2.6 --- Python-2.6.2-orig/Modules/Setup.dist 2008-11-27 05:15:12.000000000 -0500 +++ Python-2.6.2/Modules/Setup.dist 2009-07-30 15:06:59.000000000 -0400 @@ -152,7 +152,7 @@ # modules are to be built as shared libraries (see above for more # detail; also note that *static* reverses this effect): -#*shared* +*shared* # GNU readline. Unlike previous Python incarnations, GNU readline is # now incorporated in an optional module, configured in the Setup file @@ -162,74 +162,74 @@ # it, depending on your system -- see the GNU readline instructions. # It's okay for this to be a shared library, too. -#readline readline.c -lreadline -ltermcap +readline readline.c -lreadline -ltermcap # Modules that should always be present (non UNIX dependent): -#array arraymodule.c # array objects -#cmath cmathmodule.c # -lm # complex math library functions -#math mathmodule.c # -lm # math library functions, e.g. sin() -#_struct _struct.c # binary structure packing/unpacking -#time timemodule.c # -lm # time operations and variables -#operator operator.c # operator.add() and similar goodies -#_weakref _weakref.c # basic weak reference support -#_testcapi _testcapimodule.c # Python C API test module -#_random _randommodule.c # Random number generator -#_collections _collectionsmodule.c # Container types -#itertools itertoolsmodule.c # Functions creating iterators for efficient looping -#strop stropmodule.c # String manipulations -#_functools _functoolsmodule.c # Tools for working with functions and callable objects -#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator -#_pickle _pickle.c # pickle accelerator -#datetime datetimemodule.c # date/time type -#_bisect _bisectmodule.c # Bisection algorithms +array arraymodule.c # array objects +cmath cmathmodule.c # -lm # complex math library functions +math mathmodule.c # -lm # math library functions, e.g. sin() +_struct _struct.c # binary structure packing/unpacking +time timemodule.c # -lm # time operations and variables +operator operator.c # operator.add() and similar goodies +_weakref _weakref.c # basic weak reference support +_testcapi _testcapimodule.c # Python C API test module +_random _randommodule.c # Random number generator +_collections _collectionsmodule.c # Container types +itertools itertoolsmodule.c # Functions creating iterators for efficient looping +strop stropmodule.c # String manipulations +_functools _functoolsmodule.c # Tools for working with functions and callable objects +_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator +#_pickle _pickle.c # pickle accelerator +#datetime datetimemodule.c # date/time type +_bisect _bisectmodule.c # Bisection algorithms -#unicodedata unicodedata.c # static Unicode character database +unicodedata unicodedata.c # static Unicode character database # access to ISO C locale support -#_locale _localemodule.c # -lintl +_locale _localemodule.c # -lintl # Modules with some UNIX dependencies -- on by default: # (If you have a really backward UNIX, select and socket may not be # supported...) -#fcntl fcntlmodule.c # fcntl(2) and ioctl(2) -#spwd spwdmodule.c # spwd(3) -#grp grpmodule.c # grp(3) -#select selectmodule.c # select(2); not on ancient System V +fcntl fcntlmodule.c # fcntl(2) and ioctl(2) +spwd spwdmodule.c # spwd(3) +grp grpmodule.c # grp(3) +select selectmodule.c # select(2); not on ancient System V # Memory-mapped files (also works on Win32). -#mmap mmapmodule.c +mmap mmapmodule.c # CSV file helper -#_csv _csv.c +_csv _csv.c # Socket module helper for socket(2) -#_socket socketmodule.c +_socket socketmodule.c # Socket module helper for SSL support; you must comment out the other # socket line above, and possibly edit the SSL variable: #SSL=/usr/local/ssl -#_ssl _ssl.c \ -# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ -# -L$(SSL)/lib -lssl -lcrypto +_ssl _ssl.c \ + -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ + -L$(SSL)/lib -lssl -lcrypto # The crypt module is now disabled by default because it breaks builds # on many systems (where -lcrypt is needed), e.g. Linux (I believe). # # First, look at Setup.config; configure may have set this for you. -#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems +crypt cryptmodule.c -lcrypt # crypt(3); needs -lcrypt on some systems # Some more UNIX dependent modules -- off by default, since these # are not supported by all UNIX systems: -#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere -#termios termios.c # Steen Lumholt's termios module -#resource resource.c # Jeremy Hylton's rlimit interface +nis nismodule.c -lnsl # Sun yellow pages -- not everywhere +termios termios.c # Steen Lumholt's termios module +resource resource.c # Jeremy Hylton's rlimit interface # Multimedia modules -- off by default. @@ -237,8 +237,8 @@ # #993173 says audioop works on 64-bit platforms, though. # These represent audio samples or images as strings: -#audioop audioop.c # Operations on audio samples -#imageop imageop.c # Operations on images +audioop audioop.c # Operations on audio samples +imageop imageop.c # Operations on images # Note that the _md5 and _sha modules are normally only built if the @@ -248,14 +248,14 @@ # Message-Digest Algorithm, described in RFC 1321. The necessary files # md5.c and md5.h are included here. -#_md5 md5module.c md5.c +_md5 md5module.c md5.c # The _sha module implements the SHA checksum algorithms. # (NIST's Secure Hash Algorithms.) -#_sha shamodule.c -#_sha256 sha256module.c -#_sha512 sha512module.c +_sha shamodule.c +_sha256 sha256module.c +_sha512 sha512module.c # SGI IRIX specific modules -- off by default. @@ -302,12 +302,12 @@ # A Linux specific module -- off by default; this may also work on # some *BSDs. -#linuxaudiodev linuxaudiodev.c +linuxaudiodev linuxaudiodev.c # George Neville-Neil's timing module: -#timing timingmodule.c +timing timingmodule.c # The _tkinter module. @@ -322,7 +322,7 @@ # every system. # *** Always uncomment this (leave the leading underscore in!): -# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ +_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ # *** Uncomment and edit to reflect where your Tcl/Tk libraries are: # -L/usr/local/lib \ # *** Uncomment and edit to reflect where your Tcl/Tk headers are: @@ -332,7 +332,7 @@ # *** Or uncomment this for Solaris: # -I/usr/openwin/include \ # *** Uncomment and edit for Tix extension only: -# -DWITH_TIX -ltix8.1.8.2 \ + -DWITH_TIX -ltix \ # *** Uncomment and edit for BLT extension only: # -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \ # *** Uncomment and edit for PIL (TkImaging) extension only: @@ -341,7 +341,7 @@ # *** Uncomment and edit for TOGL extension only: # -DWITH_TOGL togl.c \ # *** Uncomment and edit to reflect your Tcl/Tk versions: -# -ltk8.2 -ltcl8.2 \ + -ltk -ltcl \ # *** Uncomment and edit to reflect where your X11 libraries are: # -L/usr/X11R6/lib \ # *** Or uncomment this for Solaris: @@ -351,7 +351,7 @@ # *** Uncomment for AIX: # -lld \ # *** Always uncomment this; X11 libraries to link with: -# -lX11 + -lX11 # Lance Ellinghaus's syslog module #syslog syslogmodule.c # syslog daemon interface @@ -363,9 +363,9 @@ # # First, look at Setup.config; configure may have set this for you. -#_curses _cursesmodule.c -lcurses -ltermcap +_curses _cursesmodule.c -lcurses -ltermcap # Wrapper for the panel library that's part of ncurses and SYSV curses. -#_curses_panel _curses_panel.c -lpanel -lncurses +_curses_panel _curses_panel.c -lpanel -lncurses # Generic (SunOS / SVR4) dynamic loading module. @@ -373,7 +373,7 @@ # it is a highly experimental and dangerous device for calling # *arbitrary* C functions in *arbitrary* shared libraries: -#dl dlmodule.c +dl dlmodule.c # Modules that provide persistent dictionary-like semantics. You will @@ -396,7 +396,7 @@ # # First, look at Setup.config; configure may have set this for you. -#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm +gdbm gdbmmodule.c -lgdbm # Sleepycat Berkeley DB interface. @@ -412,10 +412,9 @@ # Edit the variables DB and DBLIBVERto point to the db top directory # and the subdirectory of PORT where you built it. -#DB=/usr/local/BerkeleyDB.4.0 -#DBLIBVER=4.0 -#DBINC=$(DB)/include -#DBLIB=$(DB)/lib -#_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER) +DBLIBVER=4.7 +DBINC=/usr/include/db4 +DBLIB=/usr/lib +_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER) # Historical Berkeley DB 1.85 # @@ -430,14 +429,14 @@ # Helper module for various ascii-encoders -#binascii binascii.c +binascii binascii.c # Fred Drake's interface to the Python parser -#parser parsermodule.c +parser parsermodule.c # cStringIO and cPickle -#cStringIO cStringIO.c -#cPickle cPickle.c +cStringIO cStringIO.c +cPickle cPickle.c # Lee Busby's SIGFPE modules. @@ -460,7 +459,7 @@ # Andrew Kuchling's zlib module. # This require zlib 1.1.3 (or later). # See http://www.gzip.org/zlib/ -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz +zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz # Interface to the Expat XML parser # @@ -473,20 +472,20 @@ # # More information on Expat can be found at www.libexpat.org. # -#pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI +pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI # Hye-Shik Chang's CJKCodecs # multibytecodec is required for all the other CJK codec modules -#_multibytecodec cjkcodecs/multibytecodec.c +_multibytecodec cjkcodecs/multibytecodec.c -#_codecs_cn cjkcodecs/_codecs_cn.c -#_codecs_hk cjkcodecs/_codecs_hk.c -#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c -#_codecs_jp cjkcodecs/_codecs_jp.c -#_codecs_kr cjkcodecs/_codecs_kr.c -#_codecs_tw cjkcodecs/_codecs_tw.c +_codecs_cn cjkcodecs/_codecs_cn.c +_codecs_hk cjkcodecs/_codecs_hk.c +_codecs_iso2022 cjkcodecs/_codecs_iso2022.c +_codecs_jp cjkcodecs/_codecs_jp.c +_codecs_kr cjkcodecs/_codecs_kr.c +_codecs_tw cjkcodecs/_codecs_tw.c # Example -- included for reference only: # xx xxmodule.c --- Python-2.6.2-orig/setup.py 2009-07-30 14:56:58.000000000 -0400 +++ Python-2.6.2/setup.py 2009-07-30 15:07:39.000000000 -0400 @@ -1203,7 +1203,6 @@ exts.append(Extension('pyexpat', define_macros = define_macros, - include_dirs = [expatinc], sources = ['pyexpat.c', 'expat/xmlparse.c', 'expat/xmlrole.c', @@ -1218,7 +1217,6 @@ define_macros.append(('USE_PYEXPAT_CAPI', None)) exts.append(Extension('_elementtree', define_macros = define_macros, - include_dirs = [expatinc], sources = ['_elementtree.c'], )) else: Only in Python-2.6.2: setup.py~ From spot at fedoraproject.org Thu Jul 30 21:03:47 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 21:03:47 +0000 (UTC) Subject: rpms/ebtables/EL-5 ebtables.spec,1.19,1.20 Message-ID: <20090730210347.8619911C00D3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/ebtables/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31196 Modified Files: ebtables.spec Log Message: disable buildid patch Index: ebtables.spec =================================================================== RCS file: /cvs/extras/rpms/ebtables/EL-5/ebtables.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- ebtables.spec 30 Jul 2009 20:56:54 -0000 1.19 +++ ebtables.spec 30 Jul 2009 21:03:47 -0000 1.20 @@ -1,6 +1,6 @@ Name: ebtables Version: 2.0.9 -Release: 1%{?dist} +Release: 1%{?dist}.1 Summary: Ethernet Bridge frame table administration tool License: GPLv2+ Group: System Environment/Base @@ -11,7 +11,6 @@ Requires(pre): /sbin/chkconfig Requires(postun): /sbin/service Patch0: ebtables-2.0.8-norootinst.patch Patch1: ebtables-2.0.8-cflags.patch -Patch2: ebtables-2.0.8-buildid.patch %description Ethernet bridge tables is a firewalling tool to transparently filter network @@ -28,7 +27,6 @@ like iptables. There are no known incomp %setup -q -n ebtables-v%{version}-1 %patch0 -p1 %patch1 -p1 -%patch2 -p1 # Convert to UTF-8 f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f @@ -79,6 +77,9 @@ fi %ghost %{_sysconfdir}/sysconfig/ebtables.broute %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 2.0.9-1.1 +- buildid not supported on EL5 + * Mon Jul 27 2009 Tom "spot" Callaway - 2.0.9-1 - update to 2.0.9 From pgf at fedoraproject.org Thu Jul 30 21:06:07 2009 From: pgf at fedoraproject.org (Paul Fox) Date: Thu, 30 Jul 2009 21:06:07 +0000 (UTC) Subject: rpms/olpc-kbdshim/F-11 .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 olpc-kbdshim.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730210607.B7D1711C00D3@cvs1.fedora.phx.redhat.com> Author: pgf Update of /cvs/pkgs/rpms/olpc-kbdshim/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31623/F-11 Modified Files: .cvsignore import.log olpc-kbdshim.spec sources Log Message: update to 8-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 11 Jun 2009 20:06:42 -0000 1.2 +++ .cvsignore 30 Jul 2009 21:06:07 -0000 1.3 @@ -1 +1 @@ -olpc-kbdshim-6.tar.gz +olpc-kbdshim-8-gitdf06c81.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/F-11/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 11 Jun 2009 20:06:42 -0000 1.1 +++ import.log 30 Jul 2009 21:06:07 -0000 1.2 @@ -1 +1,2 @@ olpc-kbdshim-6-4:F-11:olpc-kbdshim-6-4.src.rpm:1244750749 +olpc-kbdshim-8-1:F-11:olpc-kbdshim-8-1.src.rpm:1248987932 Index: olpc-kbdshim.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/F-11/olpc-kbdshim.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-kbdshim.spec 11 Jun 2009 20:06:42 -0000 1.1 +++ olpc-kbdshim.spec 30 Jul 2009 21:06:07 -0000 1.2 @@ -1,18 +1,18 @@ Summary: OLPC XO keyboard support daemon Name: olpc-kbdshim -Version: 6 -Release: 4%{?dist} +Version: 8 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/olpc-kbdshim/tree/README # Source0: the source tarball is created by "make tarball" from within # a clone of this git tree: git://dev.laptop.org/users/pgf/olpc-kbdshim -Source0: %{name}-%{version}.tar.gz +Source0: olpc-kbdshim-8-gitdf06c81.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: kernel-headers, pkgconfig, glib2-devel BuildRequires: dbus-glib-devel, hal-devel -ExclusiveArch: i586 +ExclusiveArch: %{ix86} Requires: hal @@ -20,7 +20,8 @@ Requires: hal The olpc-kbdshim-hal daemon integrates with hal to monitor the keyboard and touchpad, enabling the XO "grab" keys and touchpad rotation (to match screen rotation), and reporting user (in)activity. It can also bind the XO -screen rotate and brightness keys to appropriate commands. +screen rotate and brightness keys to appropriate commands (which are +provided). %prep %setup -q @@ -58,6 +59,20 @@ echo A system restart may be necessary f echo proper initialization of olpc-kbdshim-hal. %changelog +* Thu Jul 30 2009 Paul Fox +- 8-1 +- add timestamps to events, to reduce racing during suspend/resume + +* Tue Jul 27 2009 Paul Fox +- 7-1 +- fix touchpad rotation for F-11, which includes X11 amd/geode + driver that fixes the earlier rotation direction issue. + (2.11.x and later are fixed.) +- revise Makefile for easier pre-release management + +* Sat Jul 25 2009 Fedora Release Engineering - 6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jun 10 2009 Paul Fox - 6-4 - 6-3 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-kbdshim/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 11 Jun 2009 20:06:42 -0000 1.2 +++ sources 30 Jul 2009 21:06:07 -0000 1.3 @@ -1 +1 @@ -18b5150fa16d26eb26feeb09d5fd4cab olpc-kbdshim-6.tar.gz +8782388dfe033c3d362484fc4a3068a2 olpc-kbdshim-8-gitdf06c81.tar.gz From jamatos at fedoraproject.org Thu Jul 30 21:08:04 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Thu, 30 Jul 2009 21:08:04 +0000 (UTC) Subject: rpms/pygsl/devel pygsl.spec,1.22,1.23 Message-ID: <20090730210804.D330E11C00D3@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/pygsl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31953 Modified Files: pygsl.spec Log Message: * Thu Jul 30 2009 Jos? Matos - 0.9.4-2 - Add missing BR numpy-f2py Index: pygsl.spec =================================================================== RCS file: /cvs/pkgs/rpms/pygsl/devel/pygsl.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- pygsl.spec 30 Jul 2009 20:54:01 -0000 1.22 +++ pygsl.spec 30 Jul 2009 21:08:04 -0000 1.23 @@ -7,7 +7,7 @@ Summary: GNU Scientific Library Interface for python Name: pygsl Version: 0.9.4 -Release: 1%{?dist} +Release: 2%{?dist} # The package is mostly GPL+ but there are two scripts # GLPv2+: pygsl/odeiv.py and examples/siman_tsp.py License: GPLv2+ @@ -23,6 +23,7 @@ BuildRequires: gsl-devel BuildRequires: python-devel # Only need if the generated sources are different from the version used in source BuildRequires: swig +BuildRequires: numpy-f2py Requires: numpy Requires: gsl = %{gslver} @@ -66,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jos? Matos - 0.9.4-2 +- Add missing BR numpy-f2py + * Thu Jul 30 2009 Jos? Matos - 0.9.4-1 - New upstream bugfix release From jamatos at fedoraproject.org Thu Jul 30 21:12:22 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Thu, 30 Jul 2009 21:12:22 +0000 (UTC) Subject: rpms/PyX/devel PyX.spec,1.13,1.14 Message-ID: <20090730211223.0831711C00D3@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/PyX/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv863 Modified Files: PyX.spec Log Message: * Thu Jul 30 2009 Jos? Matos - 0.10-8 - Disable faq pdf generation for now (it breaks the build) Index: PyX.spec =================================================================== RCS file: /cvs/pkgs/rpms/PyX/devel/PyX.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- PyX.spec 24 Jul 2009 16:04:34 -0000 1.13 +++ PyX.spec 30 Jul 2009 21:12:22 -0000 1.14 @@ -7,7 +7,7 @@ Name: PyX Version: 0.10 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Python graphics package Group: Applications/Publishing @@ -49,9 +49,10 @@ CFLAGS="$RPM_OPT_FLAGS" %{__python} setu # turn on ipc in config file %{__sed} -i 's|^texipc =.*|texipc = 1|' pyxrc -pushd faq -make -popd +# disable for now +# pushd faq +# make +# popd pushd manual #ln -s %{doc_tools_dir}/mkhowto . @@ -74,7 +75,7 @@ rm -rf %{buildroot} %files %defattr(-,root,root,-) -%doc AUTHORS CHANGES LICENSE PKG-INFO README faq/pyxfaq.pdf manual/manual.pdf +%doc AUTHORS CHANGES LICENSE PKG-INFO README manual/manual.pdf %doc contrib/ examples/ %config(noreplace) %{_sysconfdir}/pyxrc %{_datadir}/pyx/ @@ -86,6 +87,9 @@ rm -rf %{buildroot} %changelog +* Thu Jul 30 2009 Jos? Matos - 0.10-8 +- Disable faq pdf generation for now (it breaks the build) + * Fri Jul 24 2009 Fedora Release Engineering - 0.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From overholt at fedoraproject.org Thu Jul 30 21:16:52 2009 From: overholt at fedoraproject.org (Andrew Overholt) Date: Thu, 30 Jul 2009 21:16:52 +0000 (UTC) Subject: rpms/json/devel json.spec,1.2,1.3 Message-ID: <20090730211652.D160F11C00D3@cvs1.fedora.phx.redhat.com> Author: overholt Update of /cvs/pkgs/rpms/json/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1686 Modified Files: json.spec Log Message: * Thu Jul 30 2009 Andrew Overholt 3-2 - Update summary/description. - Resolves bug #511007. Index: json.spec =================================================================== RCS file: /cvs/pkgs/rpms/json/devel/json.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- json.spec 25 Jul 2009 04:11:26 -0000 1.2 +++ json.spec 30 Jul 2009 21:16:52 -0000 1.3 @@ -29,9 +29,9 @@ # Name: json -Summary: JavaScript Object Notation +Summary: JavaScript Object Notation support in Java URL: http://www.json.org/java/index.html -Version: 2 +Version: 3 Release: 2%{?dist} License: ASL 2.0 Group: Development/Libraries @@ -43,12 +43,13 @@ BuildRequires: java-devel BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description -JSON (JavaScript Object Notation) is a lightweight data-interchange format. -It is based on a subset of the JavaScript Programming Language, Standard -ECMA-262 3rd Edition - December 1999. JSON is a text format that is -completely language independent but uses conventions that are familiar to -programmers of the C-family of languages including C, C++, C#, Java, -JavaScript, Perl, Python, and many others. +Java support for the JSON (JavaScript Object Notation) lightweight +data-interchange format. It is based on a subset of the JavaScript +Programming Language, Standard ECMA-262 3rd Edition - December 1999. +JSON is a text format that is completely language independent but uses +conventions that are familiar to programmers of the C-family of +languages including C, C++, C#, Java, JavaScript, Perl, Python, and many +others. %package javadoc Summary: Javadoc for %{name} @@ -93,6 +94,10 @@ rm -rf $RPM_BUILD_ROOT %doc %{_javadocdir}/%{name}-%{version} %changelog +* Thu Jul 30 2009 Andrew Overholt 3-2 +- Update summary/description. +- Resolves bug #511007. + * Fri Jul 24 2009 Fedora Release Engineering - 2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 21:21:33 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:21:33 +0000 (UTC) Subject: rpms/eggdbus/devel eggdbus.spec,1.2,1.3 Message-ID: <20090730212133.96CD911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/eggdbus/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3006 Modified Files: eggdbus.spec Log Message: * Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: eggdbus.spec =================================================================== RCS file: /cvs/pkgs/rpms/eggdbus/devel/eggdbus.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- eggdbus.spec 19 Jun 2009 21:45:30 -0000 1.2 +++ eggdbus.spec 30 Jul 2009 21:21:33 -0000 1.3 @@ -1,7 +1,7 @@ Summary: Experimental D-Bus bindings for GObject Name: eggdbus Version: 0.5 -Release: 1 +Release: 2 License: LGPLv2 Group: Development/Libraries URL: http://cgit.freedesktop.org/~david/eggdbus @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Jun 19 2009 David Zeuthen - 0.5-1 - Update to 0.5 From pgf at fedoraproject.org Thu Jul 30 21:23:13 2009 From: pgf at fedoraproject.org (Paul Fox) Date: Thu, 30 Jul 2009 21:23:13 +0000 (UTC) Subject: rpms/olpc-powerd/devel .cvsignore, 1.2, 1.3 import.log, 1.1, 1.2 olpc-powerd.spec, 1.1, 1.2 sources, 1.2, 1.3 Message-ID: <20090730212313.9420E11C00D3@cvs1.fedora.phx.redhat.com> Author: pgf Update of /cvs/pkgs/rpms/olpc-powerd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3759/devel Modified Files: .cvsignore import.log olpc-powerd.spec sources Log Message: update to 9-1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 27 Jul 2009 15:41:46 -0000 1.2 +++ .cvsignore 30 Jul 2009 21:23:13 -0000 1.3 @@ -1 +1 @@ -olpc-powerd-8-gite8b44c6.tar.gz +olpc-powerd-9-gitb61ec99.tar.gz Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/import.log,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- import.log 27 Jul 2009 15:41:47 -0000 1.1 +++ import.log 30 Jul 2009 21:23:13 -0000 1.2 @@ -1 +1,2 @@ olpc-powerd-8-1:HEAD:olpc-powerd-8-1.src.rpm:1248709261 +olpc-powerd-9-1:HEAD:olpc-powerd-9-1.src.rpm:1248988975 Index: olpc-powerd.spec =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/olpc-powerd.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- olpc-powerd.spec 27 Jul 2009 15:41:47 -0000 1.1 +++ olpc-powerd.spec 30 Jul 2009 21:23:13 -0000 1.2 @@ -1,13 +1,13 @@ Summary: OLPC XO power management Name: olpc-powerd -Version: 8 +Version: 9 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/powerd/tree/powerd # Source0: the source tarball is created by "make tarball" from within # a clone of this git tree: git://dev.laptop.org/users/pgf/powerd -Source0: olpc-powerd-8-gite8b44c6.tar.gz +Source0: olpc-powerd-9-gitb61ec99.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: kernel-headers Requires: olpc-kbdshim, upstart @@ -18,9 +18,7 @@ Requires(preun): chkconfig Requires(post): initscripts Requires(preun): initscripts - -# for F-9 rpms from teach, use ExclusiveArch: %{ix86} -ExclusiveArch: i586 +ExclusiveArch: %{ix86} %description The powerd daemon can function as an easily customizable replacement for ohmd, @@ -106,6 +104,12 @@ fi exit 0 %changelog +* Thu Jul 30 2009 Paul Fox +- 9-1 +- disable tracing, by default. use "powerd-control =tracing-on" to enable at runtime. +- create the inhibit file so that root owns it and can make it writeable. +- don't brighten the screen on wlan wakeups. + * Fri Jul 17 2009 Paul Fox - 8-1 - incorporate package review fixups Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 27 Jul 2009 15:41:47 -0000 1.2 +++ sources 30 Jul 2009 21:23:13 -0000 1.3 @@ -1 +1 @@ -fd551ab64727f7e4cab6ba3956ce7511 olpc-powerd-8-gite8b44c6.tar.gz +7cc49b84ae66f9ed0c2dc841ce3c9b9a olpc-powerd-9-gitb61ec99.tar.gz From jamatos at fedoraproject.org Thu Jul 30 21:28:31 2009 From: jamatos at fedoraproject.org (=?utf-8?q?Jos=C3=A9_Ab=C3=ADlio_Oliveira_Matos?=) Date: Thu, 30 Jul 2009 21:28:31 +0000 (UTC) Subject: rpms/t1utils/devel t1utils-compile.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 t1utils.spec, 1.18, 1.19 Message-ID: <20090730212831.9A71E11C00D3@cvs1.fedora.phx.redhat.com> Author: jamatos Update of /cvs/pkgs/rpms/t1utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4664 Modified Files: .cvsignore sources t1utils.spec Added Files: t1utils-compile.patch Log Message: * Thu Jul 30 2009 Jos? Matos - 1.34-1 - New upstream release and fix issue with stricter gcc. t1utils-compile.patch: t1asm.c | 96 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 48 insertions(+), 48 deletions(-) --- NEW FILE t1utils-compile.patch --- --- t1asm.c.orig 2008-03-01 17:59:11.000000000 +0000 +++ t1asm.c 2009-07-30 22:23:47.038752459 +0100 @@ -23,11 +23,11 @@ * Revision 1.4 92/07/10 10:53:09 ilh * Added support for additional PostScript after the closefile command * (ie., some fonts have {restore}if after the cleartomark). - * + * * Revision 1.3 92/06/23 10:58:25 ilh * MSDOS porting by Kai-Uwe Herbing (herbing at netmbx.netmbx.de) * incoporated. - * + * * Revision 1.2 92/05/22 11:54:45 ilh * Fixed bug where integers larger than 32000 could not be encoded in * charstrings. Now integer range is correct for four-byte @@ -183,7 +183,7 @@ static byte cencrypt(byte plain) { byte cipher; - + /* Thanks to Tom Kacvinsky who reported that lenIV == -1 means unencrypted charstrings. */ if (lenIV < 0) return plain; @@ -201,7 +201,7 @@ { static const char *hexchar = "0123456789abcdef"; static int hexcol = 0; - + if (pfb) { /* PFB */ PFB_OUTPUT_BYTE(&w, b); @@ -252,7 +252,7 @@ pfb_writer_output_block(&w); w.blocktyp = PFB_BINARY; } - + in_eexec = 1; er = 55665; eexec_byte(0); @@ -280,16 +280,16 @@ the newline is put into line[]. When terminated by '{', the '{' is not put into line[], and the flag start_charstring is set to 1. */ -static void getline() +static void getline_() { int c; char *p = line; int comment = 0; start_charstring = 0; - + while (p < line + LINESIZE) { c = getc(ifp); - + if (c == EOF) break; else if (c == '%') @@ -302,9 +302,9 @@ } else active = 0; } - + *p++ = (char) c; - + /* end of line processing: change CR or CRLF into LF, and exit */ if (c == '\r') { c = getc(ifp); @@ -315,7 +315,7 @@ } else if (c == '\n') break; } - + *p = '\0'; } @@ -326,16 +326,16 @@ static void eexec_end(void) { int i, j; - + if (!pfb) putc('\n', ofp); else if (w.blocktyp != PFB_ASCII) { pfb_writer_output_block(&w); w.blocktyp = PFB_ASCII; } - + in_eexec = active = 0; - + for (i = 0; i < 8; i++) { for (j = 0; j < 64; j++) eexec_byte('0'); @@ -438,16 +438,16 @@ int c = getc(ifp); while (isspace(c)) c = getc(ifp); - + if (c == '%') { while (c != EOF && c != '\r' && c != '\n') c = getc(ifp); get_charstring_token(); - + } else if (c == '}') { line[0] = '}'; line[1] = 0; - + } else { char *p = line; while (p < line + LINESIZE) { @@ -481,13 +481,13 @@ int one; int two; int ok = 0; - + cp = (struct command *) bsearch((void *) line, (void *) command_table, sizeof(command_table) / sizeof(struct command), sizeof(struct command), command_compare); - + if (cp) { one = cp->one; two = cp->two; @@ -503,7 +503,7 @@ } else if (strncmp(line, "UNKNOWN_", 8) == 0) { /* Allow unanticipated UNKNOWN commands. */ one = 12; - if (sscanf(line + 8, "12_%d", &two) == 1) + if (sscanf(line + 8, "12_%d", &two) == 1) ok = 1; else if (sscanf(line + 8, "%d", &one) == 1) { two = -1; @@ -611,20 +611,20 @@ int main(int argc, char *argv[]) { char *p, *q, *r; - + Clp_Parser *clp = Clp_NewParser(argc, (const char * const *)argv, sizeof(options) / sizeof(options[0]), options); program_name = Clp_ProgramName(clp); - + /* interpret command line arguments using CLP */ while (1) { int opt = Clp_Next(clp); switch (opt) { - + case BLOCK_LEN_OPT: blocklen = clp->val.i; break; - + output_file: case OUTPUT_OPT: if (ofp) @@ -634,20 +634,20 @@ else if (!(ofp = fopen(clp->arg, "w"))) fatal_error("%s: %s", clp->arg, strerror(errno)); break; - + case PFB_OPT: pfb = 1; break; - + case PFA_OPT: pfb = 0; break; - + case HELP_OPT: usage(); exit(0); break; - + case VERSION_OPT: printf("t1asm (LCDF t1utils) %s\n", VERSION); printf("Copyright (C) 1992-2003 I. Lee Hetherington, Eddie Kohler et al.\n\ @@ -656,7 +656,7 @@ particular purpose.\n"); exit(0); break; - + case Clp_NotOption: if (ifp && ofp) fatal_error("too many arguments"); @@ -667,18 +667,18 @@ else if (!(ifp = fopen(clp->arg, "r"))) fatal_error("%s: %s", clp->arg, strerror(errno)); break; - + case Clp_Done: goto done; - + case Clp_BadOption: short_usage(); exit(1); break; - + } } - + done: if (!pfb) { if (blocklen == -1) @@ -691,38 +691,38 @@ error("warning: line length lowered to %d", blocklen); } } - + if (!ifp) ifp = stdin; if (!ofp) ofp = stdout; if (pfb) init_pfb_writer(&w, blocklen, ofp); - + #if defined(_MSDOS) || defined(_WIN32) /* If we are processing a PFB (binary) output */ /* file, we must set its file mode to binary. */ if (pfb) _setmode(_fileno(ofp), _O_BINARY); #endif - + /* Finally, we loop until no more input. Some special things to look for are the `currentfile eexec' line, the beginning of the `/Subrs' or `/CharStrings' definition, the definition of `/lenIV', and the definition of the charstring start command which has `...string currentfile...' in it. - + Being careful: Check with `/Subrs' and `/CharStrings' to see that a number follows the token -- otherwise, the token is probably nested in a subroutine a la Adobe Jenson, and we shouldn't pay attention to it. - + Bugs: Occurrence of `/Subrs 9' in a comment will fool t1asm. - + Thanks to Tom Kacvinsky who reported that some fonts come without /Subrs sections and provided a patch. */ - + while (!feof(ifp) && !ferror(ifp)) { - getline(); - + getline_(); + if (!ever_active) { if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) { /* Allow arbitrary whitespace after "currentfile eexec". @@ -775,9 +775,9 @@ eexec_string(line); break; } - + eexec_string(line); - + /* output line data */ if (start_charstring) { if (!cs_start[0]) @@ -785,17 +785,17 @@ parse_charstring(); } } - + /* Handle remaining PostScript after the eexec section */ if (in_eexec) eexec_end(); - + /* There may be additional code. */ while (!feof(ifp) && !ferror(ifp)) { - getline(); + getline_(); eexec_string(line); } - + if (pfb) pfb_writer_end(&w); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/t1utils/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 Sep 2008 15:19:58 -0000 1.3 +++ .cvsignore 30 Jul 2009 21:28:31 -0000 1.4 @@ -1 +1 @@ -t1utils-1.33.tar.gz +t1utils-1.34.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/t1utils/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 Sep 2008 15:19:58 -0000 1.3 +++ sources 30 Jul 2009 21:28:31 -0000 1.4 @@ -1 +1 @@ -a8d9dad4eab239357dd045275770eb8f t1utils-1.33.tar.gz +2e83dbd36ade1a9e127ca64a8684771e t1utils-1.34.tar.gz Index: t1utils.spec =================================================================== RCS file: /cvs/pkgs/rpms/t1utils/devel/t1utils.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- t1utils.spec 27 Jul 2009 05:28:15 -0000 1.18 +++ t1utils.spec 30 Jul 2009 21:28:31 -0000 1.19 @@ -1,6 +1,6 @@ Name: t1utils -Version: 1.33 -Release: 3%{?dist} +Version: 1.34 +Release: 1%{?dist} Summary: Collection of Type 1 and 2 font manipulation utilities @@ -9,6 +9,7 @@ Group: Applications/Publishing License: MIT URL: http://www.lcdf.org/~eddietwo/type/ Source0: http://www.lcdf.org/~eddietwo/type/t1utils-%{version}.tar.gz +Patch0: t1utils-compile.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -20,6 +21,7 @@ format, and Macintosh resource forks. %prep %setup -q +%patch0 -p0 iconv -f iso-8859-1 -t utf-8 -o NEWS{.utf8,} mv NEWS{.utf8,} @@ -45,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jos? Matos - 1.34-1 +- New upstream release and fix issue with stricter gcc. + * Sun Jul 26 2009 Fedora Release Engineering - 1.33-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From kzak at fedoraproject.org Thu Jul 30 21:29:42 2009 From: kzak at fedoraproject.org (kzak) Date: Thu, 30 Jul 2009 21:29:42 +0000 (UTC) Subject: rpms/util-linux-ng/devel util-linux-ng.spec, 1.52, 1.53 util-linux-ng-2.16-mount-conf.patch, 1.1, NONE Message-ID: <20090730212942.8FC6C11C00D3@cvs1.fedora.phx.redhat.com> Author: kzak Update of /cvs/pkgs/rpms/util-linux-ng/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4921 Modified Files: util-linux-ng.spec Removed Files: util-linux-ng-2.16-mount-conf.patch Log Message: * Thu Jul 30 2009 Karel Zak 2.16-3 - remove the mount.conf support (see #214891) Index: util-linux-ng.spec =================================================================== RCS file: /cvs/pkgs/rpms/util-linux-ng/devel/util-linux-ng.spec,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- util-linux-ng.spec 27 Jul 2009 21:11:14 -0000 1.52 +++ util-linux-ng.spec 30 Jul 2009 21:29:42 -0000 1.53 @@ -2,7 +2,7 @@ Summary: A collection of basic system utilities Name: util-linux-ng Version: 2.16 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 and GPLv2+ and BSD with advertising and Public Domain Group: System Environment/Base URL: ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng @@ -96,8 +96,6 @@ Patch3: util-linux-ng-2.14-blockdev-rmpa Patch4: util-linux-ng-2.13-ctrlaltdel-man.patch # /etc/blkid.tab --> /etc/blkid/blkid.tab Patch5: util-linux-ng-2.16-blkid-cachefile.patch -# 214891 - mount: move mtab locks to /var/lock -Patch6: util-linux-ng-2.16-mount-conf.patch ### Ready for upstream? ### @@ -197,7 +195,6 @@ cp %{SOURCE8} %{SOURCE9} . %patch3 -p1 %patch4 -p1 %patch5 -p1 -%patch6 -p1 %patch7 -p1 %patch8 -p1 @@ -474,7 +471,7 @@ fi %files -f %{name}.files %defattr(-,root,root) -%doc */README.* NEWS AUTHORS licenses/* README* example.files/mount.conf +%doc */README.* NEWS AUTHORS licenses/* README* %doc getopt/getopt-*.{bash,tcsh} %config(noreplace) %{_sysconfdir}/pam.d/chfn @@ -710,6 +707,9 @@ fi %changelog +* Thu Jul 30 2009 Karel Zak 2.16-3 +- remove the mount.conf support (see #214891) + * Mon Jul 27 2009 Karel Zak 2.16-2 - fix #214891 - add mount.conf and MTAB_LOCK_DIR= option --- util-linux-ng-2.16-mount-conf.patch DELETED --- From bioinfornatics at fedoraproject.org Thu Jul 30 21:29:48 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Thu, 30 Jul 2009 21:29:48 +0000 (UTC) Subject: rpms/valide/devel valide.spec,1.6,1.7 Message-ID: <20090730212948.92B0811C00D3@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4986 Modified Files: valide.spec Log Message: Fix the empty debuginfo with a newest option --debug in build section and install section Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/devel/valide.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- valide.spec 28 Jul 2009 23:03:31 -0000 1.6 +++ valide.spec 30 Jul 2009 21:29:48 -0000 1.7 @@ -10,7 +10,7 @@ Name: valide Version: 0.5.1 -Release: 0.15.%{alphatag}%{svn_revision}%{?dist} +Release: 0.16.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -22,6 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{versio BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: vala-devel >= %{vala_version} BuildRequires: sqlite-devel, unique-devel, desktop-file-utils, gtksourceview2-devel, intltool +BuildRequires: waf Requires: vala-devel >= %{vala_version} Requires: hicolor-icon-theme @@ -35,7 +36,8 @@ Summary: Support for developing plugins Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: gtk2-devel >= %{gtk2_version} -Requires: sqlite-devel, unique-devel, gtksourceview2-devel, glib-devel +Requires: sqlite-devel, unique-devel, gtksourceview2-devel +Requires: libxml2-devel %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. @@ -46,12 +48,12 @@ functionality to Val(a)IDE. %setup -q -n %{name}-%{alphatag}%{svn_revision} %build -CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" ./waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} -./waf -v %{?_smp_mflags} +CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} --debug +waf -v %{?_smp_mflags} %install rm -rf %{buildroot} -./waf -v install --destdir=%{buildroot} +waf -v install --destdir=%{buildroot} --debug desktop-file-install --vendor="" \ --mode 0644 \ --dir=%{buildroot}%{_datadir}/applications/ \ @@ -108,6 +110,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Fri Jul 30 2009 Jonathan MERCIER 0.5.1-0.16.20090726svn303 +- Fix the empty debuginfo with a newest option in build section --debug + * Tue Jul 28 2009 Jonathan MERCIER 0.5.1-0.15.20090726svn303 - Update valide to revision 303 - Add require for devel package From bioinfornatics at fedoraproject.org Thu Jul 30 21:31:47 2009 From: bioinfornatics at fedoraproject.org (MERCIER Jonathan) Date: Thu, 30 Jul 2009 21:31:47 +0000 (UTC) Subject: rpms/valide/F-11 valide.spec,1.5,1.6 Message-ID: <20090730213147.27BF311C00D3@cvs1.fedora.phx.redhat.com> Author: bioinfornatics Update of /cvs/pkgs/rpms/valide/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5421 Modified Files: valide.spec Log Message: Fix the empty debuginfo with a newest option --debug in build section and install section Index: valide.spec =================================================================== RCS file: /cvs/pkgs/rpms/valide/F-11/valide.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- valide.spec 28 Jul 2009 23:11:34 -0000 1.5 +++ valide.spec 30 Jul 2009 21:31:46 -0000 1.6 @@ -10,7 +10,7 @@ Name: valide Version: 0.5.1 -Release: 0.15.%{alphatag}%{svn_revision}%{?dist} +Release: 0.16.%{alphatag}%{svn_revision}%{?dist} Summary: An integrated development environment (IDE) for the Vala programming language Group: Development/Tools @@ -22,6 +22,7 @@ BuildRoot: %{_tmppath}/%{name}-%{versio BuildRequires: gtk2-devel >= %{gtk2_version} BuildRequires: vala-devel >= %{vala_version} BuildRequires: sqlite-devel, unique-devel, desktop-file-utils, gtksourceview2-devel, intltool +BuildRequires: waf Requires: vala-devel >= %{vala_version} Requires: hicolor-icon-theme @@ -35,7 +36,8 @@ Summary: Support for developing plugins Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: gtk2-devel >= %{gtk2_version} -Requires: sqlite-devel, unique-devel, gtksourceview2-devel, glib-devel +Requires: sqlite-devel, unique-devel, gtksourceview2-devel +Requires: libxml2-devel %description devel Val(a)IDE is an Integrated Development Environment for the Vala programming language. @@ -46,12 +48,12 @@ functionality to Val(a)IDE. %setup -q -n %{name}-%{alphatag}%{svn_revision} %build -CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" ./waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} -./waf -v %{?_smp_mflags} +CFLAGS="%{optflags}" LINKFLAGS="%{optflags}" waf -v configure --prefix=%{_prefix} --with-libdir=%{_libdir} --debug +waf -v %{?_smp_mflags} %install rm -rf %{buildroot} -./waf -v install --destdir=%{buildroot} +waf -v install --destdir=%{buildroot} --debug desktop-file-install --vendor="" \ --mode 0644 \ --dir=%{buildroot}%{_datadir}/applications/ \ @@ -108,6 +110,9 @@ fi %{_libdir}/libvalide-*.so %changelog +* Fri Jul 30 2009 Jonathan MERCIER 0.5.1-0.16.20090726svn303 +- Fix the empty debuginfo with a newest option in build section --debug + * Tue Jul 28 2009 Jonathan MERCIER 0.5.1-0.15.20090726svn303 - Update valide to revision 303 - Add require for devel package From jkeating at fedoraproject.org Thu Jul 30 21:34:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:34:17 +0000 (UTC) Subject: rpms/fuse-emulator/devel fuse-emulator.spec,1.15,1.16 Message-ID: <20090730213417.DA72711C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/fuse-emulator/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5893 Modified Files: fuse-emulator.spec Log Message: * Fri Jul 24 2009 Fedora Release Engineering - 0.10.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: fuse-emulator.spec =================================================================== RCS file: /cvs/pkgs/rpms/fuse-emulator/devel/fuse-emulator.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- fuse-emulator.spec 24 Jul 2009 23:18:32 -0000 1.15 +++ fuse-emulator.spec 30 Jul 2009 21:34:17 -0000 1.16 @@ -1,6 +1,6 @@ Name: fuse-emulator Version: 0.10.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Free UNIX Spectrum Emulator Group: Applications/Emulators License: GPLv2+ @@ -81,7 +81,7 @@ rm -rf %{buildroot} %changelog -* Fri Jul 24 2009 Fedora Release Engineering - 0.10.0.2-2 +* Fri Jul 24 2009 Fedora Release Engineering - 0.10.0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Jul 15 2009 Lucian Langa - 0.10.0.2-1 From pgf at fedoraproject.org Thu Jul 30 21:34:55 2009 From: pgf at fedoraproject.org (Paul Fox) Date: Thu, 30 Jul 2009 21:34:55 +0000 (UTC) Subject: rpms/olpc-powerd/F-11 import.log, NONE, 1.1 olpc-powerd.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730213455.0495411C00D3@cvs1.fedora.phx.redhat.com> Author: pgf Update of /cvs/pkgs/rpms/olpc-powerd/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6127/F-11 Modified Files: .cvsignore sources Added Files: import.log olpc-powerd.spec Log Message: update to 9-1 --- NEW FILE import.log --- olpc-powerd-9-1:F-11:olpc-powerd-9-1.src.rpm:1248989675 --- NEW FILE olpc-powerd.spec --- Summary: OLPC XO power management Name: olpc-powerd Version: 9 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base URL: http://dev.laptop.org/git/users/pgf/powerd/tree/powerd # Source0: the source tarball is created by "make tarball" from within # a clone of this git tree: git://dev.laptop.org/users/pgf/powerd Source0: olpc-powerd-9-gitb61ec99.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: kernel-headers Requires: olpc-kbdshim, upstart # these are all for the manipulation of ohmd -- powerd doesn't need them. Requires(post): chkconfig Requires(preun): chkconfig Requires(post): initscripts Requires(preun): initscripts ExclusiveArch: %{ix86} %description The powerd daemon can function as an easily customizable replacement for ohmd, which is independent of X, dbus, and hald. This package provides the powerd and olpc-switchd daemons, and related utilities. %prep %setup -q %build export OPT_FLAGS="$RPM_OPT_FLAGS" make %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/%{_sbindir} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/event.d mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/powerd mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/powerd/postresume.d %{__install} -p -m 755 olpc-switchd $RPM_BUILD_ROOT/%{_sbindir}/olpc-switchd %{__install} -p -m 755 powerd $RPM_BUILD_ROOT/%{_sbindir}/powerd %{__install} -p -m 755 pnmto565fb $RPM_BUILD_ROOT/%{_bindir}/pnmto565fb %{__install} -p -m 755 powerd-config $RPM_BUILD_ROOT/%{_bindir}/powerd-config %{__install} -p -m 644 olpc-switchd.upstart $RPM_BUILD_ROOT%{_sysconfdir}/event.d/olpc-switchd %{__install} -p -m 644 powerd.upstart $RPM_BUILD_ROOT%{_sysconfdir}/event.d/powerd %{__install} -p -m 644 pleaseconfirm.pgm $RPM_BUILD_ROOT%{_sysconfdir}/powerd/pleaseconfirm.pgm %{__install} -p -m 644 shuttingdown.pgm $RPM_BUILD_ROOT%{_sysconfdir}/powerd/shuttingdown.pgm %{__install} -p -m 644 powerd.conf.dist $RPM_BUILD_ROOT%{_sysconfdir}/powerd/powerd.conf %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc COPYING %{_sbindir}/olpc-switchd %{_sbindir}/powerd %{_bindir}/pnmto565fb %{_bindir}/powerd-config %config(noreplace) %{_sysconfdir}/event.d/olpc-switchd %config(noreplace) %{_sysconfdir}/event.d/powerd %config(noreplace) %{_sysconfdir}/powerd/pleaseconfirm.pgm %config(noreplace) %{_sysconfdir}/powerd/shuttingdown.pgm %config(noreplace) %{_sysconfdir}/powerd/powerd.conf %post # Only on install if [ $1 = 1 ] ; then if test -e /etc/init.d/ohmd ; then service ohmd stop >/dev/null 2>&1 chkconfig ohmd off fi initctl -q start powerd initctl -q start olpc-switchd fi exit 0 %preun # Only on uninstall if [ $1 = 0 ] ; then initctl stop -q olpc-switchd initctl stop -q powerd if test -e /etc/init.d/ohmd then /sbin/service ohmd start >/dev/null 2>&1 /sbin/chkconfig ohmd on fi fi exit 0 %postun # Restart after upgrade if [ "$1" -ge "1" ] ; then initctl stop -q olpc-switchd initctl stop -q powerd initctl start -q powerd initctl start -q olpc-switchd fi exit 0 %changelog * Thu Jul 30 2009 Paul Fox - 9-1 - disable tracing, by default. use "powerd-control =tracing-on" to enable at runtime. - create the inhibit file so that root owns it and can make it writeable. - don't brighten the screen on wlan wakeups. * Fri Jul 17 2009 Paul Fox - 8-1 - incorporate package review fixups - commentary and powerd-config UI clarification - fix fatal bug when battery is missing * Fri Jul 6 2009 Paul Fox - 7-1 - no longer wake on AC events -- unnecessary - doc fixups * Thu Jun 11 2009 Paul Fox - 6-2 - utility targets in makefile * Sat Jun 6 2009 Paul Fox - 6-1 - various fixes - incorporate lessons from kbdshim review * Tue May 5 2009 Paul Fox - 5-1 - fixed ability to shut down with backlight off. oops. - various utility bug fixes (powerd-config, olpc-brightness) * Sun Apr 12 2009 Paul Fox - 4-1 - add control over sleep on lid-close - resync version numbers * Sat Apr 11 2009 Paul Fox - 3-3 - fixed powerd-config behavior wrt symlinked configs * Fri Apr 10 2009 Paul Fox - 3-2 - fix bugs, implement cpu idleness check, and add suspend inhibit mechanism * Tue Apr 7 2009 Paul Fox - 3-1 - convert to HAL-based operation * Thu Mar 19 2009 Paul Fox - 1-2 - fix rpmlint errors, move daemons to /usr/sbin Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 24 Jul 2009 19:23:16 -0000 1.1 +++ .cvsignore 30 Jul 2009 21:34:54 -0000 1.2 @@ -0,0 +1 @@ +olpc-powerd-9-gitb61ec99.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/olpc-powerd/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 24 Jul 2009 19:23:16 -0000 1.1 +++ sources 30 Jul 2009 21:34:54 -0000 1.2 @@ -0,0 +1 @@ +7cc49b84ae66f9ed0c2dc841ce3c9b9a olpc-powerd-9-gitb61ec99.tar.gz From dwalsh at fedoraproject.org Thu Jul 30 21:38:54 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Thu, 30 Jul 2009 21:38:54 +0000 (UTC) Subject: rpms/selinux-policy/devel .cvsignore, 1.178, 1.179 policy-F12.patch, 1.37, 1.38 sources, 1.198, 1.199 Message-ID: <20090730213854.8280B11C00D3@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6661 Modified Files: .cvsignore policy-F12.patch sources Log Message: * Thu Jul 28 2009 Dan Walsh 3.6.26-1 - More fixes from upstream Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/.cvsignore,v retrieving revision 1.178 retrieving revision 1.179 diff -u -p -r1.178 -r1.179 --- .cvsignore 30 Jul 2009 04:31:52 -0000 1.178 +++ .cvsignore 30 Jul 2009 21:38:53 -0000 1.179 @@ -181,3 +181,4 @@ serefpolicy-3.6.22.tgz serefpolicy-3.6.23.tgz serefpolicy-3.6.24.tgz serefpolicy-3.6.25.tgz +serefpolicy-3.6.26.tgz policy-F12.patch: Makefile | 2 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 8 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 36 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 92 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 4 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 82 + policy/modules/apps/sambagui.fc | 1 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 1 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 3 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 39 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 409 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 25 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 35 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 3 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 10 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 2 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 36 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 97 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 261 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 166 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 151 +- policy/modules/system/libraries.if | 4 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 288 ++++ policy/modules/system/selinuxutil.te | 227 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 116 + policy/modules/system/sysnetwork.te | 72 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1299 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 28 policy/modules/system/xen.te | 127 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 290 files changed, 12774 insertions(+), 2596 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- policy-F12.patch 30 Jul 2009 20:30:26 -0000 1.37 +++ policy-F12.patch 30 Jul 2009 21:38:53 -0000 1.38 @@ -10579,7 +10579,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.te serefpolicy-3.6.26/policy/modules/services/hal.te --- nsaserefpolicy/policy/modules/services/hal.te 2009-07-28 13:28:33.000000000 -0400 -+++ serefpolicy-3.6.26/policy/modules/services/hal.te 2009-07-30 15:33:08.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/services/hal.te 2009-07-30 17:31:42.000000000 -0400 @@ -55,6 +55,9 @@ type hald_var_lib_t; files_type(hald_var_lib_t) @@ -10645,7 +10645,7 @@ diff -b -B --ignore-all-space --exclude- policykit_domtrans_auth(hald_acl_t) policykit_read_lib(hald_acl_t) policykit_read_reload(hald_acl_t) -@@ -450,11 +466,15 @@ +@@ -450,12 +466,16 @@ miscfiles_read_localization(hald_keymap_t) @@ -10658,12 +10658,18 @@ diff -b -B --ignore-all-space --exclude- # Local hald dccm policy # - +-allow hald_dccm_t self:capability { net_bind_service }; +allow hald_dccm_t self:fifo_file rw_fifo_file_perms; - allow hald_dccm_t self:capability { net_bind_service }; ++allow hald_dccm_t self:capability { chown net_bind_service }; allow hald_dccm_t self:process getsched; allow hald_dccm_t self:tcp_socket create_stream_socket_perms; -@@ -473,6 +493,8 @@ + allow hald_dccm_t self:udp_socket create_socket_perms; +@@ -471,8 +491,12 @@ + write_files_pattern(hald_dccm_t, hald_log_t, hald_log_t) + ++dev_read_urand(hald_dccm_t) ++ kernel_search_network_sysctl(hald_dccm_t) +hal_dontaudit_rw_dgram_sockets(hald_dccm_t) @@ -10671,7 +10677,7 @@ diff -b -B --ignore-all-space --exclude- corenet_all_recvfrom_unlabeled(hald_dccm_t) corenet_all_recvfrom_netlabel(hald_dccm_t) corenet_tcp_sendrecv_generic_if(hald_dccm_t) -@@ -484,6 +506,7 @@ +@@ -484,6 +508,7 @@ corenet_tcp_bind_generic_node(hald_dccm_t) corenet_udp_bind_generic_node(hald_dccm_t) corenet_udp_bind_dhcpc_port(hald_dccm_t) @@ -10679,7 +10685,7 @@ diff -b -B --ignore-all-space --exclude- corenet_tcp_bind_dccm_port(hald_dccm_t) logging_send_syslog_msg(hald_dccm_t) -@@ -491,3 +514,9 @@ +@@ -491,3 +516,9 @@ files_read_usr_files(hald_dccm_t) miscfiles_read_localization(hald_dccm_t) Index: sources =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/sources,v retrieving revision 1.198 retrieving revision 1.199 diff -u -p -r1.198 -r1.199 --- sources 30 Jul 2009 04:31:53 -0000 1.198 +++ sources 30 Jul 2009 21:38:54 -0000 1.199 @@ -1 +1 @@ -1bf047937d814f33c84b5fb13f55b620 serefpolicy-3.6.25.tgz +8c707d664792b43fa6c1f1adde8cfd57 serefpolicy-3.6.26.tgz From pkgdb at fedoraproject.org Thu Jul 30 21:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:42:32 +0000 Subject: [pkgdb] gcdmaster (un)retirement Message-ID: <20090730214232.411E710F89A@bastion2.fedora.phx.redhat.com> Package gcdmaster in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gcdmaster From pkgdb at fedoraproject.org Thu Jul 30 21:42:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:42:32 +0000 Subject: [pkgdb] gcdmaster ownership updated Message-ID: <20090730214232.3B31810F88F@bastion2.fedora.phx.redhat.com> Package gcdmaster in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gcdmaster From pkgdb at fedoraproject.org Thu Jul 30 21:43:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:43:07 +0000 Subject: [pkgdb] gconfmm20 ownership updated Message-ID: <20090730214307.EE6A410F875@bastion2.fedora.phx.redhat.com> Package gconfmm20 in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gconfmm20 From pkgdb at fedoraproject.org Thu Jul 30 21:43:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:43:07 +0000 Subject: [pkgdb] gconfmm20 (un)retirement Message-ID: <20090730214308.0B49410F897@bastion2.fedora.phx.redhat.com> Package gconfmm20 in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gconfmm20 From pkgdb at fedoraproject.org Thu Jul 30 21:45:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:45:24 +0000 Subject: [pkgdb] gtkmm20 ownership updated Message-ID: <20090730214524.B404F10F89B@bastion2.fedora.phx.redhat.com> Package gtkmm20 in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtkmm20 From pkgdb at fedoraproject.org Thu Jul 30 21:45:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:45:24 +0000 Subject: [pkgdb] gtkmm20 (un)retirement Message-ID: <20090730214524.C5D3610F88F@bastion2.fedora.phx.redhat.com> Package gtkmm20 in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/gtkmm20 From spot at fedoraproject.org Thu Jul 30 21:46:39 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 21:46:39 +0000 (UTC) Subject: rpms/nant/devel nant.spec,1.34,1.35 Message-ID: <20090730214639.231E811C00D3@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/nant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7966 Modified Files: nant.spec Log Message: unbootstrap Index: nant.spec =================================================================== RCS file: /cvs/pkgs/rpms/nant/devel/nant.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -p -r1.34 -r1.35 --- nant.spec 30 Jul 2009 21:01:17 -0000 1.34 +++ nant.spec 30 Jul 2009 21:46:38 -0000 1.35 @@ -1,12 +1,12 @@ %global debug_package %{nil} %global monodir %{_libdir} %global mlib %{_lib} -%global bootstrap 1 +%global bootstrap 0 Summary: NAnt is a build tool for Mono and .NET Name: nant Version: 0.85 -Release: 28%{?dist}.1 +Release: 29%{?dist} Epoch: 1 Source0: http://download.sourceforge.net/nant/%{name}-%{version}-src.tar.gz Patch0: nant-build.patch @@ -132,6 +132,9 @@ scrollkeeper-update -q || : %doc examples/* doc/help/* %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 1:0.85-29 +- unbootstrap + * Thu Jul 30 2009 Tom "spot" Callaway - 1:0.85-28.1 - bootstrap to get mono-ndoc rebuilt From jkeating at fedoraproject.org Thu Jul 30 21:46:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:46:46 +0000 (UTC) Subject: rpms/gupnp-ui/devel gupnp-ui.spec,1.3,1.4 Message-ID: <20090730214646.E70E311C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8023 Modified Files: gupnp-ui.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.1.1-5 - Rebuild for Fedora 12 mass rebuild Index: gupnp-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-ui/devel/gupnp-ui.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gupnp-ui.spec 4 Mar 2009 23:08:30 -0000 1.3 +++ gupnp-ui.spec 30 Jul 2009 21:46:46 -0000 1.4 @@ -1,6 +1,6 @@ Name: gupnp-ui Version: 0.1.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: GUPnP-UI is a collection of helpers for adding ui to upnp apps Group: System Environment/Libraries @@ -84,6 +84,9 @@ rm -rf $RPM_BUILD_ROOT %doc %{_datadir}/gtk-doc/html/gupnp-ui %changelog +* Thu Jul 30 2009 Jesse Keating - 0.1.1-5 +- Rebuild for Fedora 12 mass rebuild + * Wed Mar 4 2009 Peter Robinson 0.1.1-4 - Move docs to noarch subpackage From jkeating at fedoraproject.org Thu Jul 30 21:48:28 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:48:28 +0000 (UTC) Subject: rpms/gupnp-ui/devel gupnp-ui.spec,1.4,1.5 Message-ID: <20090730214828.D2DA111C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/gupnp-ui/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8370 Modified Files: gupnp-ui.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.1.1-5 - Rebuild for Fedora 12 mass rebuild - Fix the docs subpackage files section Index: gupnp-ui.spec =================================================================== RCS file: /cvs/pkgs/rpms/gupnp-ui/devel/gupnp-ui.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- gupnp-ui.spec 30 Jul 2009 21:46:46 -0000 1.4 +++ gupnp-ui.spec 30 Jul 2009 21:48:28 -0000 1.5 @@ -79,13 +79,14 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/gupnp-ui-1.0.pc %{_libdir}/libgupnp-ui-1.0.so -%files devel +%files docs %defattr(-,root,root,-) %doc %{_datadir}/gtk-doc/html/gupnp-ui %changelog * Thu Jul 30 2009 Jesse Keating - 0.1.1-5 - Rebuild for Fedora 12 mass rebuild +- Fix the docs subpackage files section * Wed Mar 4 2009 Peter Robinson 0.1.1-4 - Move docs to noarch subpackage From jkeating at fedoraproject.org Thu Jul 30 21:50:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 21:50:11 +0000 (UTC) Subject: rpms/ifplugd/devel ifplugd.spec,1.21,1.22 Message-ID: <20090730215011.33E8011C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/ifplugd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8736 Modified Files: ifplugd.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.28-14 - Rebuild for F12 mass rebuild Index: ifplugd.spec =================================================================== RCS file: /cvs/pkgs/rpms/ifplugd/devel/ifplugd.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- ifplugd.spec 25 Feb 2009 06:53:24 -0000 1.21 +++ ifplugd.spec 30 Jul 2009 21:50:11 -0000 1.22 @@ -1,7 +1,7 @@ Summary: Detect and take action when an ethernet cable is unplugged Name: ifplugd Version: 0.28 -Release: 13%{?dist} +Release: 14%{?dist} License: GPLv2+ Group: System Environment/Daemons @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/chkconfig --del ifplugd %changelog +* Thu Jul 30 2009 Jesse Keating - 0.28-14 +- Rebuild for F12 mass rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 0.28-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From pkgdb at fedoraproject.org Thu Jul 30 21:55:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:55:00 +0000 Subject: [pkgdb] compat-guichan07 ownership updated Message-ID: <20090730215500.DCA4610F875@bastion2.fedora.phx.redhat.com> Package compat-guichan07 in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-guichan07 From pkgdb at fedoraproject.org Thu Jul 30 21:55:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 21:55:00 +0000 Subject: [pkgdb] compat-guichan07 (un)retirement Message-ID: <20090730215500.EA9C210F89A@bastion2.fedora.phx.redhat.com> Package compat-guichan07 in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/compat-guichan07 From spot at fedoraproject.org Thu Jul 30 22:00:08 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Thu, 30 Jul 2009 22:00:08 +0000 (UTC) Subject: rpms/log4net/devel log4net.spec,1.5,1.6 Message-ID: <20090730220008.DC22711C04D5@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/log4net/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11141 Modified Files: log4net.spec Log Message: rebuild for nant Index: log4net.spec =================================================================== RCS file: /cvs/pkgs/rpms/log4net/devel/log4net.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- log4net.spec 25 Jul 2009 11:14:33 -0000 1.5 +++ log4net.spec 30 Jul 2009 22:00:08 -0000 1.6 @@ -16,7 +16,7 @@ URL: http://logging.apache.org/log4net/ License: ASL 2.0 Group: System Environment/Libraries Version: 1.2.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A .NET framework for logging Source: http://cvs.apache.org/dist/incubator/log4net/1.2.10/incubating-log4net-1.2.10.zip Source1: log4net.pc @@ -80,6 +80,9 @@ gacutil -i bin/mono/1.0/release/log4net. %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 1.2.10-7 +- rebuild to get nant cooking again + * Sat Jul 25 2009 Fedora Release Engineering - 1.2.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 22:01:44 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:01:44 +0000 (UTC) Subject: rpms/libzdb/devel libzdb.spec,1.4,1.5 Message-ID: <20090730220144.0DA6C11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/libzdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11596 Modified Files: libzdb.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 2.6-2 - Bump for F12 mass rebuild Index: libzdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/libzdb/devel/libzdb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- libzdb.spec 5 Jul 2009 20:02:36 -0000 1.4 +++ libzdb.spec 30 Jul 2009 22:01:43 -0000 1.5 @@ -1,6 +1,6 @@ Name: libzdb Version: 2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Small, fast, and easy to use database API Group: System Environment/Libraries @@ -63,6 +63,9 @@ Developer header files & libraries for l %changelog +* Thu Jul 30 2009 Jesse Keating - 2.6-2 +- Bump for F12 mass rebuild + * Sun Jul 05 2009 Bernard Johnson - 2.6-1 - v 2.6 From jkeating at fedoraproject.org Thu Jul 30 22:04:54 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:04:54 +0000 (UTC) Subject: rpms/mingw32-hunspell/devel mingw32-hunspell.spec,1.2,1.3 Message-ID: <20090730220454.733A511C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-hunspell/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12093 Modified Files: mingw32-hunspell.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 1.2.8-8 - Bump for F12 rebuild - Fill in a date for the previous commit Index: mingw32-hunspell.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-hunspell/devel/mingw32-hunspell.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-hunspell.spec 2 Jun 2009 15:21:49 -0000 1.2 +++ mingw32-hunspell.spec 30 Jul 2009 22:04:54 -0000 1.3 @@ -7,7 +7,7 @@ Name: mingw32-hunspell Summary: MinGW Windows spell checker and morphological analyzer library Version: 1.2.8 -Release: 7%{?dist} +Release: 8%{?dist} Source0: http://downloads.sourceforge.net/%{name}/hunspell-%{version}.tar.gz Group: System Environment/Libraries URL: http://hunspell.sourceforge.net/ @@ -123,7 +123,11 @@ rm -rf $RPM_BUILD_ROOT %changelog -* xx xx xx Erik van Pienbroek 1.2.8-7 +* Thu Jul 30 2009 Jesse Keating - 1.2.8-8 +- Bump for F12 rebuild +- Fill in a date for the previous commit + +* Thu Jul 30 2009 Erik van Pienbroek 1.2.8-7 - Updated description * Wed May 20 2009 Erik van Pienbroek - 1.2.8-6 From jkeating at fedoraproject.org Thu Jul 30 22:06:46 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:06:46 +0000 (UTC) Subject: rpms/mingw32-libsqlite3x/devel mingw32-libsqlite3x.spec,1.2,1.3 Message-ID: <20090730220646.3FFE311C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mingw32-libsqlite3x/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12397 Modified Files: mingw32-libsqlite3x.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 20071018-9 - Bump for F12 mass rebulid. Index: mingw32-libsqlite3x.spec =================================================================== RCS file: /cvs/pkgs/rpms/mingw32-libsqlite3x/devel/mingw32-libsqlite3x.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mingw32-libsqlite3x.spec 25 Jun 2009 10:51:55 -0000 1.2 +++ mingw32-libsqlite3x.spec 30 Jul 2009 22:06:46 -0000 1.3 @@ -12,7 +12,7 @@ %global name1 libsqlite3x Name: mingw32-%{name1} Version: %{veryear}%{vermon}%{verday} -Release: 8%{?dist} +Release: 9%{?dist} Summary: MinGW Windows C++ Wrapper for the SQLite3 embeddable SQL database engine Group: System Environment/Libraries @@ -99,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %{_mingw32_libdir}/pkgconfig/libsq3.pc %changelog +* Thu Jul 30 2009 Jesse Keating - 20071018-9 +- Bump for F12 mass rebulid. + * Mon Jun 22 2009 Thomas Sailer - 20071018-8 - add debuginfo packages From pkgdb at fedoraproject.org Thu Jul 30 22:07:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:07:41 +0000 Subject: [pkgdb] libdlo ownership updated Message-ID: <20090730220741.AE1F110F875@bastion2.fedora.phx.redhat.com> Package libdlo in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libdlo From pkgdb at fedoraproject.org Thu Jul 30 22:07:41 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:07:41 +0000 Subject: [pkgdb] libdlo (un)retirement Message-ID: <20090730220741.BCD9A10F897@bastion2.fedora.phx.redhat.com> Package libdlo in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libdlo From jkeating at fedoraproject.org Thu Jul 30 22:09:01 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:09:01 +0000 (UTC) Subject: rpms/mod_scgi/devel mod_scgi.spec,1.2,1.3 Message-ID: <20090730220901.55B7F11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/mod_scgi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12756 Modified Files: mod_scgi.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 1.13-3 - Bump for F12 mass rebuild Index: mod_scgi.spec =================================================================== RCS file: /cvs/pkgs/rpms/mod_scgi/devel/mod_scgi.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mod_scgi.spec 26 Feb 2009 02:12:46 -0000 1.2 +++ mod_scgi.spec 30 Jul 2009 22:09:01 -0000 1.3 @@ -2,7 +2,7 @@ Name: mod_scgi Version: 1.13 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Python implementation of the SCGI protocol Group: Applications/Internet @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jesse Keating - 1.13-3 +- Bump for F12 mass rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 22:10:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:10:17 +0000 (UTC) Subject: rpms/moodle/devel moodle.spec,1.44,1.45 Message-ID: <20090730221017.5A46511C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/moodle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12975 Modified Files: moodle.spec Log Message: * Sat Jul 25 2009 Fedora Release Engineering - 1.9.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: moodle.spec =================================================================== RCS file: /cvs/pkgs/rpms/moodle/devel/moodle.spec,v retrieving revision 1.44 retrieving revision 1.45 diff -u -p -r1.44 -r1.45 --- moodle.spec 15 May 2009 16:37:02 -0000 1.44 +++ moodle.spec 30 Jul 2009 22:10:17 -0000 1.45 @@ -8,7 +8,7 @@ Name: moodle Version: 1.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Course Management System Group: Applications/Publishing @@ -1709,6 +1709,9 @@ fi %exclude %{moodlewebdir}/COPYING.txt %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 1.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 14 2009 Jon Ciesla - 1.9.5-1 - Move symlink scripts from pretrans to post, pre. - 1.9.5. From jkeating at fedoraproject.org Thu Jul 30 22:11:20 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:11:20 +0000 (UTC) Subject: rpms/nessus-libraries/devel nessus-libraries.spec,1.12,1.13 Message-ID: <20090730221120.E958211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nessus-libraries/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13277 Modified Files: nessus-libraries.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 2.2.11-3 - Bump for F12 mass rebuild Index: nessus-libraries.spec =================================================================== RCS file: /cvs/pkgs/rpms/nessus-libraries/devel/nessus-libraries.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- nessus-libraries.spec 26 Feb 2009 04:52:56 -0000 1.12 +++ nessus-libraries.spec 30 Jul 2009 22:11:20 -0000 1.13 @@ -1,6 +1,6 @@ Name: nessus-libraries Version: 2.2.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Support libraries for nessus Group: System Environment/Libraries @@ -80,6 +80,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/nessus-config %changelog +* Thu Jul 30 2009 Jesse Keating - 2.2.11-3 +- Bump for F12 mass rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 2.2.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 22:12:11 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:12:11 +0000 (UTC) Subject: rpms/nethogs/devel nethogs.spec,1.6,1.7 Message-ID: <20090730221211.E104C11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/nethogs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13489 Modified Files: nethogs.spec Log Message: * Sat Jul 25 2009 Fedora Release Engineering - 0.7.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: nethogs.spec =================================================================== RCS file: /cvs/pkgs/rpms/nethogs/devel/nethogs.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- nethogs.spec 9 Jun 2009 22:54:06 -0000 1.6 +++ nethogs.spec 30 Jul 2009 22:12:11 -0000 1.7 @@ -1,6 +1,6 @@ Name: nethogs Version: 0.7.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A tool resembling top for network traffic Group: Applications/Internet @@ -49,6 +49,9 @@ rm -rf "${RPM_BUILD_ROOT}" %doc %{_mandir}/man*/* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.7.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 9 2009 Anderson Silva - 0.7.0-7 - Update codebase to version 0.7.0 - remove patches From jkeating at fedoraproject.org Thu Jul 30 22:13:03 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:13:03 +0000 (UTC) Subject: rpms/octave/devel octave.spec,1.86,1.87 Message-ID: <20090730221303.C572E11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13664 Modified Files: octave.spec Log Message: * Sat Jul 25 2009 Fedora Release Engineering - 6:3.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -r1.86 -r1.87 --- octave.spec 13 Jul 2009 11:52:26 -0000 1.86 +++ octave.spec 30 Jul 2009 22:13:03 -0000 1.87 @@ -3,7 +3,7 @@ Name: octave Version: 3.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level language for numerical computations Epoch: 6 Group: Applications/Engineering @@ -168,6 +168,9 @@ fi %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 6:3.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jul 13 2009 Jussi Lehtola - 6:3.2.0-2 - Added BR: ftgl-devel for native graphics. - Dropped obsolete X-Fedora category from desktop file. From pkgdb at fedoraproject.org Thu Jul 30 22:14:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:14:01 +0000 Subject: [pkgdb] olpcsound ownership updated Message-ID: <20090730221401.2260410F875@bastion2.fedora.phx.redhat.com> Package olpcsound in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpcsound From pkgdb at fedoraproject.org Thu Jul 30 22:14:01 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:14:01 +0000 Subject: [pkgdb] olpcsound (un)retirement Message-ID: <20090730221401.2EC5510F897@bastion2.fedora.phx.redhat.com> Package olpcsound in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/olpcsound From pkgdb at fedoraproject.org Thu Jul 30 22:16:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:16:40 +0000 Subject: [pkgdb] padauk-fonts ownership updated Message-ID: <20090730221645.DE34210F88F@bastion2.fedora.phx.redhat.com> Package padauk-fonts in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/padauk-fonts From pkgdb at fedoraproject.org Thu Jul 30 22:16:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:16:40 +0000 Subject: [pkgdb] padauk-fonts (un)retirement Message-ID: <20090730221646.23D7210F89B@bastion2.fedora.phx.redhat.com> Package padauk-fonts in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/padauk-fonts From jkeating at fedoraproject.org Thu Jul 30 22:17:53 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:17:53 +0000 (UTC) Subject: rpms/paktype-fonts/devel paktype-fonts.spec,1.3,1.4 Message-ID: <20090730221753.2668211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/paktype-fonts/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14360 Modified Files: paktype-fonts.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 2.0-5 - Bump for F12 mass rebuild Index: paktype-fonts.spec =================================================================== RCS file: /cvs/pkgs/rpms/paktype-fonts/devel/paktype-fonts.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- paktype-fonts.spec 9 Jul 2009 05:40:58 -0000 1.3 +++ paktype-fonts.spec 30 Jul 2009 22:17:52 -0000 1.4 @@ -9,7 +9,7 @@ Arabic from the PakType by Lateef Sagar. Name: %{fontname}-fonts Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2 with exceptions Source: %{paktype}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -79,6 +79,9 @@ rm -rf %{buildroot} %dir %{fontdir} %changelog +* Thu Jul 30 2009 Jesse Keating - 2.0-5 +- Bump for F12 mass rebuild + * Thu Jul 9 2009 Pravin Satpute 2.0-4 - updated as per new font packaging guideline From jkeating at fedoraproject.org Thu Jul 30 22:20:21 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:20:21 +0000 (UTC) Subject: rpms/perl-Algorithm-Permute/devel perl-Algorithm-Permute.spec, 1.2, 1.3 Message-ID: <20090730222021.0E3EE11C04D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Algorithm-Permute/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15242 Modified Files: perl-Algorithm-Permute.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.12-3 - Bump for F12 mass rebuild Index: perl-Algorithm-Permute.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Algorithm-Permute/devel/perl-Algorithm-Permute.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Algorithm-Permute.spec 26 Feb 2009 10:46:32 -0000 1.2 +++ perl-Algorithm-Permute.spec 30 Jul 2009 22:20:20 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Algorithm-Permute Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Handy and fast permutation with object oriented interface License: GPL+ or Artistic Group: Development/Libraries @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jesse Keating - 0.12-3 +- Bump for F12 mass rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 22:21:17 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:21:17 +0000 (UTC) Subject: rpms/perl-Crypt-DSA/devel perl-Crypt-DSA.spec,1.10,1.11 Message-ID: <20090730222117.841F211C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Crypt-DSA/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15657 Modified Files: perl-Crypt-DSA.spec Log Message: * Sat Jul 25 2009 Fedora Release Engineering - 0.14-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: perl-Crypt-DSA.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Crypt-DSA/devel/perl-Crypt-DSA.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Crypt-DSA.spec 26 Feb 2009 13:46:22 -0000 1.10 +++ perl-Crypt-DSA.spec 30 Jul 2009 22:21:16 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Perl module for DSA signatures and key generation Name: perl-Crypt-DSA Version: 0.14 -Release: 8%{?dist} +Release: 9%{?dist} License: GPL+ or Artistic Group: Development/Libraries Url: http://search.cpan.org/dist/Crypt-DSA/ @@ -63,6 +63,9 @@ verification, and key generation. %{_mandir}/man3/Crypt::DSA::Util.3pm* %changelog +* Sat Jul 25 2009 Fedora Release Engineering - 0.14-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 0.14-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From jkeating at fedoraproject.org Thu Jul 30 22:23:27 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:23:27 +0000 (UTC) Subject: rpms/perl-Net-Amazon/devel perl-Net-Amazon.spec,1.4,1.5 Message-ID: <20090730222327.CDBC411C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Net-Amazon/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17085 Modified Files: perl-Net-Amazon.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.54-2 - Bump for F12 mass rebuild Index: perl-Net-Amazon.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Net-Amazon/devel/perl-Net-Amazon.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Net-Amazon.spec 24 Jun 2009 04:03:39 -0000 1.4 +++ perl-Net-Amazon.spec 30 Jul 2009 22:23:27 -0000 1.5 @@ -1,6 +1,6 @@ Name: perl-Net-Amazon Version: 0.54 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Framework for accessing amazon.com via REST License: GPL+ or Artistic Group: Development/Libraries @@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Jesse Keating - 0.54-2 +- Bump for F12 mass rebuild + * Wed Jun 24 2009 Iain Arnell 0.54-1 - update to latest upstream From jkeating at fedoraproject.org Thu Jul 30 22:24:56 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:24:56 +0000 (UTC) Subject: rpms/perl-Parse-CPAN-Meta/devel perl-Parse-CPAN-Meta.spec,1.5,1.6 Message-ID: <20090730222456.8711111C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/perl-Parse-CPAN-Meta/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17685 Modified Files: perl-Parse-CPAN-Meta.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 1.39-2 - Bump for F12 mass rebuild Index: perl-Parse-CPAN-Meta.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Parse-CPAN-Meta/devel/perl-Parse-CPAN-Meta.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Parse-CPAN-Meta.spec 14 Jun 2009 20:25:19 -0000 1.5 +++ perl-Parse-CPAN-Meta.spec 30 Jul 2009 22:24:56 -0000 1.6 @@ -1,6 +1,6 @@ Name: perl-Parse-CPAN-Meta Version: 1.39 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Parse META.yml and other similar CPAN metadata files License: GPL+ or Artistic Group: Development/Libraries @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Thu Jul 30 2009 Jesse Keating - 1.39-2 +- Bump for F12 mass rebuild + * Sun Jun 14 2009 Chris Weyl 1.39-1 - auto-update to 1.39 (by cpan-spec-update 0.01) From jkeating at fedoraproject.org Thu Jul 30 22:30:18 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:30:18 +0000 (UTC) Subject: rpms/python-sippy/devel python-sippy.spec,1.2,1.3 Message-ID: <20090730223018.ABE4211C04D5@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/python-sippy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19271 Modified Files: python-sippy.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0-0.10.20090429cvs - Bump for F12 mass rebuild Index: python-sippy.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-sippy/devel/python-sippy.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-sippy.spec 28 May 2009 18:32:45 -0000 1.2 +++ python-sippy.spec 30 Jul 2009 22:30:18 -0000 1.3 @@ -3,7 +3,7 @@ Name: python-sippy Version: 0 -Release: 0.9.20090429cvs%{?dist} +Release: 0.10.20090429cvs%{?dist} Summary: B2BUA (back-to-back user agent) SIP call controlling component Group: Development/Libraries License: GPLv2+ @@ -73,6 +73,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jesse Keating - 0-0.10.20090429cvs +- Bump for F12 mass rebuild + * Thu May 28 2009 Peter Lemenkov 0-0.9.20090429cvs - Fixed build for EL-4 From jkeating at fedoraproject.org Thu Jul 30 22:35:16 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:35:16 +0000 (UTC) Subject: rpms/qdevelop/devel qdevelop.spec,1.8,1.9 Message-ID: <20090730223516.D233911C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/qdevelop/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20732 Modified Files: qdevelop.spec Log Message: * Thu Jul 30 2009 Jesse Keating - 0.27.4-4 - Bump for F12 mass rebuild Index: qdevelop.spec =================================================================== RCS file: /cvs/pkgs/rpms/qdevelop/devel/qdevelop.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- qdevelop.spec 30 Apr 2009 22:24:59 -0000 1.8 +++ qdevelop.spec 30 Jul 2009 22:35:16 -0000 1.9 @@ -1,6 +1,6 @@ Name: qdevelop Version: 0.27.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Development environment dedicated to Qt4 Group: Development/Tools @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 30 2009 Jesse Keating - 0.27.4-4 +- Bump for F12 mass rebuild + * Thu Apr 30 2009 Kevin Kofler - 0.27.4-3 - Fix failure to compile a project with Qt 4.5.1 (#497734, patch by Than Ngo) * Wed Apr 22 2009 Nicoleau Fabien - 0.27.4-2 From karsten at fedoraproject.org Thu Jul 30 22:35:49 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Thu, 30 Jul 2009 22:35:49 +0000 (UTC) Subject: rpms/automake16/devel automake-1.6.3-checks.patch, 1.3, 1.4 automake16.spec, 1.20, 1.21 Message-ID: <20090730223549.B409411C00D3@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/automake16/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20969 Modified Files: automake-1.6.3-checks.patch automake16.spec Log Message: - undo changes automake-1.6.3-checks.patch: Makefile.am | 2 +- Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: automake-1.6.3-checks.patch =================================================================== RCS file: /cvs/extras/rpms/automake16/devel/automake-1.6.3-checks.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- automake-1.6.3-checks.patch 30 Jul 2009 15:01:23 -0000 1.3 +++ automake-1.6.3-checks.patch 30 Jul 2009 22:35:49 -0000 1.4 @@ -5,7 +5,7 @@ diff -up automake-1.6.3/tests/Makefile.a ## Process this file with automake to create Makefile.in -XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test -+XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test lex5.test ++XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test TESTS = \ acinclude.test \ @@ -17,7 +17,7 @@ diff -up automake-1.6.3/tests/Makefile.i pkgvdatadir = @pkgvdatadir@ -XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test -+XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test lex5.test ++XFAIL_TESTS = condd.test subdir5.test auxdir2.test cond17.test depcomp2.test TESTS = \ acinclude.test \ Index: automake16.spec =================================================================== RCS file: /cvs/extras/rpms/automake16/devel/automake16.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- automake16.spec 30 Jul 2009 15:01:23 -0000 1.20 +++ automake16.spec 30 Jul 2009 22:35:49 -0000 1.21 @@ -3,7 +3,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake16 Version: %{api_version}.3 -Release: 17 +Release: 18 License: GPLv2+ and MIT and OFSFDL Group: Development/Tools Source: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2 @@ -91,6 +91,9 @@ rm -rf ${RPM_BUILD_ROOT} %{_infodir}/* %changelog +* Fri Jul 31 2009 Karsten Hopp 1.6.3-18 +- rebuild + * Thu Jul 30 2009 Karsten Hopp 1.6.3-17 - fix build problem From pkgdb at fedoraproject.org Thu Jul 30 22:40:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:40:33 +0000 Subject: [pkgdb] libtool had acl change status Message-ID: <20090730224033.C35A010F88F@bastion2.fedora.phx.redhat.com> karsten has set the commit acl on libtool (Fedora devel) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libtool From pkgdb at fedoraproject.org Thu Jul 30 22:40:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:40:45 +0000 Subject: [pkgdb] libtool had acl change status Message-ID: <20090730224046.253CE10F89C@bastion2.fedora.phx.redhat.com> karsten has set the commit acl on libtool (Fedora 11) to Approved for jakub To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libtool From jkeating at fedoraproject.org Thu Jul 30 22:41:06 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:41:06 +0000 (UTC) Subject: rpms/subdownloader/devel subdownloader.spec,1.7,1.8 Message-ID: <20090730224107.150D411C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/subdownloader/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22503 Modified Files: subdownloader.spec Log Message: * Sun Jul 26 2009 Fedora Release Engineering - 2.0.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: subdownloader.spec =================================================================== RCS file: /cvs/pkgs/rpms/subdownloader/devel/subdownloader.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- subdownloader.spec 27 Jul 2009 04:56:59 -0000 1.7 +++ subdownloader.spec 30 Jul 2009 22:41:05 -0000 1.8 @@ -2,7 +2,7 @@ Name: subdownloader Version: 2.0.9.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Program for download/upload subtitles for videofiles and DVDs Group: Applications/Multimedia @@ -71,7 +71,7 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/pixmaps/%{name}.xpm %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 2.0.9.3-2 +* Sun Jul 26 2009 Fedora Release Engineering - 2.0.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Apr 10 2009 Jan Klepek 2.0.9.3-2 From pkgdb at fedoraproject.org Thu Jul 30 22:42:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:42:12 +0000 Subject: [pkgdb] tetex-fonts-hebrew ownership updated Message-ID: <20090730224212.2429710F897@bastion2.fedora.phx.redhat.com> Package tetex-fonts-hebrew in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tetex-fonts-hebrew From pkgdb at fedoraproject.org Thu Jul 30 22:42:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:42:12 +0000 Subject: [pkgdb] tetex-fonts-hebrew (un)retirement Message-ID: <20090730224212.3BA8510F89C@bastion2.fedora.phx.redhat.com> Package tetex-fonts-hebrew in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/tetex-fonts-hebrew From jussilehtola at fedoraproject.org Thu Jul 30 22:42:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:42:34 +0000 (UTC) Subject: rpms/gausssum/F-11 gausssum.spec,1.1,1.2 Message-ID: <20090730224234.E735011C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gausssum/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23082/F-11 Modified Files: gausssum.spec Log Message: Fix a rather nasty packaging mishap by adding BR: python-devel, BZ #514820 Index: gausssum.spec =================================================================== RCS file: /cvs/pkgs/rpms/gausssum/F-11/gausssum.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gausssum.spec 4 May 2009 06:26:27 -0000 1.1 +++ gausssum.spec 30 Jul 2009 22:42:34 -0000 1.2 @@ -2,7 +2,7 @@ Name: gausssum Version: 2.1.6 -Release: 3%{?dist} +Release: 5%{?dist} Summary: A GUI application for analysis of output of quantum computations Group: Applications/Engineering License: GPLv2+ @@ -17,6 +17,8 @@ BuildArch: noarch # For converting .ico into .png BuildRequires: ImageMagick BuildRequires: desktop-file-utils +# We need this for python_sitelib to make sense +BuildRequires: python-devel Requires: gnuplot Requires: numpy @@ -93,11 +95,18 @@ rm -rf %{buildroot} %endif %changelog -* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 -- Final eview fixes. +* Fri Jul 31 2009 Jussi Lehtola - 2.1.6-5 +- Fix a rather nasty packaging bug, BZ #514820 arising from missing + BR: python-devel causing library to be placed in / instead of Python library. -* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 +- Final review fixes. + +* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 - Review fixes. -* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 +* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 - First release. From jussilehtola at fedoraproject.org Thu Jul 30 22:42:34 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:42:34 +0000 (UTC) Subject: rpms/gausssum/F-10 gausssum.spec,1.1,1.2 Message-ID: <20090730224234.B610111C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gausssum/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23082/F-10 Modified Files: gausssum.spec Log Message: Fix a rather nasty packaging mishap by adding BR: python-devel, BZ #514820 Index: gausssum.spec =================================================================== RCS file: /cvs/pkgs/rpms/gausssum/F-10/gausssum.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- gausssum.spec 4 May 2009 06:26:27 -0000 1.1 +++ gausssum.spec 30 Jul 2009 22:42:34 -0000 1.2 @@ -2,7 +2,7 @@ Name: gausssum Version: 2.1.6 -Release: 3%{?dist} +Release: 5%{?dist} Summary: A GUI application for analysis of output of quantum computations Group: Applications/Engineering License: GPLv2+ @@ -17,6 +17,8 @@ BuildArch: noarch # For converting .ico into .png BuildRequires: ImageMagick BuildRequires: desktop-file-utils +# We need this for python_sitelib to make sense +BuildRequires: python-devel Requires: gnuplot Requires: numpy @@ -93,11 +95,18 @@ rm -rf %{buildroot} %endif %changelog -* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 -- Final eview fixes. +* Fri Jul 31 2009 Jussi Lehtola - 2.1.6-5 +- Fix a rather nasty packaging bug, BZ #514820 arising from missing + BR: python-devel causing library to be placed in / instead of Python library. -* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 +* Fri Jul 24 2009 Fedora Release Engineering - 2.1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 +- Final review fixes. + +* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 - Review fixes. -* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 +* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 - First release. From jussilehtola at fedoraproject.org Thu Jul 30 22:42:35 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:42:35 +0000 (UTC) Subject: rpms/gausssum/devel gausssum.spec,1.2,1.3 Message-ID: <20090730224235.27FEE11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/gausssum/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23082/devel Modified Files: gausssum.spec Log Message: Fix a rather nasty packaging mishap by adding BR: python-devel, BZ #514820 Index: gausssum.spec =================================================================== RCS file: /cvs/pkgs/rpms/gausssum/devel/gausssum.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gausssum.spec 24 Jul 2009 23:32:27 -0000 1.2 +++ gausssum.spec 30 Jul 2009 22:42:34 -0000 1.3 @@ -2,7 +2,7 @@ Name: gausssum Version: 2.1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A GUI application for analysis of output of quantum computations Group: Applications/Engineering License: GPLv2+ @@ -17,6 +17,8 @@ BuildArch: noarch # For converting .ico into .png BuildRequires: ImageMagick BuildRequires: desktop-file-utils +# We need this for python_sitelib to make sense +BuildRequires: python-devel Requires: gnuplot Requires: numpy @@ -93,14 +95,18 @@ rm -rf %{buildroot} %endif %changelog +* Fri Jul 31 2009 Jussi Lehtola - 2.1.6-5 +- Fix a rather nasty packaging bug, BZ #514820 arising from missing + BR: python-devel causing library to be placed in / instead of Python library. + * Fri Jul 24 2009 Fedora Release Engineering - 2.1.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 -- Final eview fixes. +* Sun May 03 2009 Jussi Lehtola - 2.1.6-3 +- Final review fixes. -* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 +* Sun May 03 2009 Jussi Lehtola - 2.1.6-2 - Review fixes. -* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 +* Wed Apr 29 2009 Jussi Lehtola - 2.1.6-1 - First release. From pkgdb at fedoraproject.org Thu Jul 30 22:51:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:51:38 +0000 Subject: [pkgdb] FUR was added for abompard Message-ID: <20090730225138.CC6F610F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package FUR with summary Mount a Windows CE based device on your Linux file system tibbs has approved Package FUR tibbs has added a Fedora devel branch for FUR with an owner of abompard tibbs has approved FUR in Fedora devel tibbs has approved Package FUR tibbs has set commit to Approved for 107427 on FUR (Fedora devel) tibbs has set checkout to Approved for 107427 on FUR (Fedora devel) tibbs has set build to Approved for 107427 on FUR (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/FUR From pkgdb at fedoraproject.org Thu Jul 30 22:51:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:51:40 +0000 Subject: [pkgdb] FUR summary updated by tibbs Message-ID: <20090730225140.8F74810F89C@bastion2.fedora.phx.redhat.com> tibbs set package FUR summary to Mount a Windows CE based device on your Linux file system To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/FUR From pkgdb at fedoraproject.org Thu Jul 30 22:51:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:51:40 +0000 Subject: [pkgdb] FUR (Fedora, 11) updated by tibbs Message-ID: <20090730225140.C02CC10F8A1@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on FUR (Fedora devel) for awjb tibbs approved watchcommits on FUR (Fedora devel) for awjb tibbs approved commit on FUR (Fedora devel) for awjb tibbs approved build on FUR (Fedora devel) for awjb tibbs approved approveacls on FUR (Fedora devel) for awjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/FUR From pkgdb at fedoraproject.org Thu Jul 30 22:51:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:51:40 +0000 Subject: [pkgdb] FUR (Fedora, 11) updated by tibbs Message-ID: <20090730225141.4EFF210F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for FUR tibbs has set commit to Approved for 107427 on FUR (Fedora 11) tibbs has set checkout to Approved for 107427 on FUR (Fedora 11) tibbs has set build to Approved for 107427 on FUR (Fedora 11) tibbs approved watchbugzilla on FUR (Fedora 11) for awjb tibbs approved watchcommits on FUR (Fedora 11) for awjb tibbs approved commit on FUR (Fedora 11) for awjb tibbs approved build on FUR (Fedora 11) for awjb tibbs approved approveacls on FUR (Fedora 11) for awjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/FUR From tibbs at fedoraproject.org Thu Jul 30 22:51:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:51:47 +0000 (UTC) Subject: rpms/FUR/devel - New directory Message-ID: <20090730225147.5E79D11C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/FUR/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ26102/rpms/FUR/devel Log Message: Directory /cvs/pkgs/rpms/FUR/devel added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:51:47 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:51:47 +0000 (UTC) Subject: rpms/FUR - New directory Message-ID: <20090730225147.2A1F711C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/FUR In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ26102/rpms/FUR Log Message: Directory /cvs/pkgs/rpms/FUR added to the repository From pkgdb at fedoraproject.org Thu Jul 30 22:51:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:51:40 +0000 Subject: [pkgdb] FUR (Fedora, 11) updated by tibbs Message-ID: <20090730225141.B5C4D10F8B9@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for FUR tibbs has set commit to Approved for 107427 on FUR (Fedora 10) tibbs has set checkout to Approved for 107427 on FUR (Fedora 10) tibbs has set build to Approved for 107427 on FUR (Fedora 10) tibbs approved watchbugzilla on FUR (Fedora 10) for awjb tibbs approved watchcommits on FUR (Fedora 10) for awjb tibbs approved commit on FUR (Fedora 10) for awjb tibbs approved build on FUR (Fedora 10) for awjb tibbs approved approveacls on FUR (Fedora 10) for awjb To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/FUR From tibbs at fedoraproject.org Thu Jul 30 22:51:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:51:53 +0000 (UTC) Subject: rpms/FUR Makefile,NONE,1.1 Message-ID: <20090730225153.89CA211C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/FUR In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ26102/rpms/FUR Added Files: Makefile Log Message: Setup of module FUR --- NEW FILE Makefile --- # Top level Makefile for module FUR all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:51:53 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:51:53 +0000 (UTC) Subject: rpms/FUR/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225153.E1D2E11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/FUR/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ26102/rpms/FUR/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module FUR --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: FUR # $Id: Makefile,v 1.1 2009/07/30 22:51:53 tibbs Exp $ NAME := FUR SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jussilehtola at fedoraproject.org Thu Jul 30 22:52:10 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:52:10 +0000 (UTC) Subject: rpms/python-cclib/F-10 python-cclib.spec,1.1,1.2 Message-ID: <20090730225210.9E3FF11C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/python-cclib/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26328/F-10 Modified Files: python-cclib.spec Log Message: Drop additional requires. Index: python-cclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cclib/F-10/python-cclib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-cclib.spec 4 May 2009 06:24:55 -0000 1.1 +++ python-cclib.spec 30 Jul 2009 22:52:10 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-cclib Version: 0.91 -Release: 4%{?dist} +Release: 6%{?dist} Summary: A library for processing results of computational chemistry packages Group: Development/Languages License: LGPLv2+ @@ -16,13 +16,10 @@ BuildArch: noarch BuildRequires: python-devel # For test phase BuildRequires: numpy +# Needed for operation Requires: numpy - -# Supplementary Requires: +# Extra stuff Requires: PyQt4 -Requires: PyQuante -Requires: python-biopython -Requires: python-openbabel Requires: vtk-python %description @@ -68,15 +65,21 @@ PYTHONPATH=../build/lib python testall.p %{_bindir}/cda %changelog -* Sat May 02 2009 Jussi Lehtola - 0.91-4 +* Fri Jul 31 2009 Jussi Lehtola - 0.91-6 +- Drop extra requires by request of upstream. + +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat May 02 2009 Jussi Lehtola - 0.91-4 - Put everything in main package instead. -* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 +* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 - Branched supplementary Requires metapackage. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 - Added BR: numpy and Requires: numpy. - Removed test/ from %%doc. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 - First release. From jussilehtola at fedoraproject.org Thu Jul 30 22:52:10 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:52:10 +0000 (UTC) Subject: rpms/python-cclib/F-11 python-cclib.spec,1.1,1.2 Message-ID: <20090730225210.F062611C00D3@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/python-cclib/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26328/F-11 Modified Files: python-cclib.spec Log Message: Drop additional requires. Index: python-cclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cclib/F-11/python-cclib.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-cclib.spec 4 May 2009 06:24:56 -0000 1.1 +++ python-cclib.spec 30 Jul 2009 22:52:10 -0000 1.2 @@ -4,7 +4,7 @@ Name: python-cclib Version: 0.91 -Release: 4%{?dist} +Release: 6%{?dist} Summary: A library for processing results of computational chemistry packages Group: Development/Languages License: LGPLv2+ @@ -16,13 +16,10 @@ BuildArch: noarch BuildRequires: python-devel # For test phase BuildRequires: numpy +# Needed for operation Requires: numpy - -# Supplementary Requires: +# Extra stuff Requires: PyQt4 -Requires: PyQuante -Requires: python-biopython -Requires: python-openbabel Requires: vtk-python %description @@ -68,15 +65,21 @@ PYTHONPATH=../build/lib python testall.p %{_bindir}/cda %changelog -* Sat May 02 2009 Jussi Lehtola - 0.91-4 +* Fri Jul 31 2009 Jussi Lehtola - 0.91-6 +- Drop extra requires by request of upstream. + +* Sun Jul 26 2009 Fedora Release Engineering - 0.91-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat May 02 2009 Jussi Lehtola - 0.91-4 - Put everything in main package instead. -* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 +* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 - Branched supplementary Requires metapackage. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 - Added BR: numpy and Requires: numpy. - Removed test/ from %%doc. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 - First release. From jussilehtola at fedoraproject.org Thu Jul 30 22:52:11 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Thu, 30 Jul 2009 22:52:11 +0000 (UTC) Subject: rpms/python-cclib/devel python-cclib.spec,1.2,1.3 Message-ID: <20090730225211.33EBC11C0417@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/python-cclib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26328/devel Modified Files: python-cclib.spec Log Message: Drop additional requires. Index: python-cclib.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-cclib/devel/python-cclib.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- python-cclib.spec 26 Jul 2009 20:11:39 -0000 1.2 +++ python-cclib.spec 30 Jul 2009 22:52:11 -0000 1.3 @@ -4,7 +4,7 @@ Name: python-cclib Version: 0.91 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A library for processing results of computational chemistry packages Group: Development/Languages License: LGPLv2+ @@ -16,13 +16,10 @@ BuildArch: noarch BuildRequires: python-devel # For test phase BuildRequires: numpy +# Needed for operation Requires: numpy - -# Supplementary Requires: +# Extra stuff Requires: PyQt4 -Requires: PyQuante -Requires: python-biopython -Requires: python-openbabel Requires: vtk-python %description @@ -68,18 +65,21 @@ PYTHONPATH=../build/lib python testall.p %{_bindir}/cda %changelog +* Fri Jul 31 2009 Jussi Lehtola - 0.91-6 +- Drop extra requires by request of upstream. + * Sun Jul 26 2009 Fedora Release Engineering - 0.91-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Sat May 02 2009 Jussi Lehtola - 0.91-4 +* Sat May 02 2009 Jussi Lehtola - 0.91-4 - Put everything in main package instead. -* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 +* Fri Apr 24 2009 Jussi Lehtola - 0.91-3 - Branched supplementary Requires metapackage. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-2 - Added BR: numpy and Requires: numpy. - Removed test/ from %%doc. -* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 +* Thu Apr 23 2009 Jussi Lehtola - 0.91-1 - First release. From pkgdb at fedoraproject.org Thu Jul 30 22:52:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:17 +0000 Subject: [pkgdb] pacemaker was added for beekhof Message-ID: <20090730225217.7CF6410F89D@bastion2.fedora.phx.redhat.com> tibbs has added Package pacemaker with summary Advanced High Availability cluster manager tibbs has approved Package pacemaker tibbs has added a Fedora devel branch for pacemaker with an owner of beekhof tibbs has approved pacemaker in Fedora devel tibbs has approved Package pacemaker tibbs has set commit to Approved for 107427 on pacemaker (Fedora devel) tibbs has set checkout to Approved for 107427 on pacemaker (Fedora devel) tibbs has set build to Approved for 107427 on pacemaker (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pacemaker From tibbs at fedoraproject.org Thu Jul 30 22:52:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:24 +0000 (UTC) Subject: rpms/pacemaker/devel - New directory Message-ID: <20090730225224.5760711C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pacemaker/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvss26506/rpms/pacemaker/devel Log Message: Directory /cvs/pkgs/rpms/pacemaker/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 30 22:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:18 +0000 Subject: [pkgdb] pacemaker summary updated by tibbs Message-ID: <20090730225219.0285010F8A1@bastion2.fedora.phx.redhat.com> tibbs set package pacemaker summary to Advanced High Availability cluster manager To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pacemaker From pkgdb at fedoraproject.org Thu Jul 30 22:52:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:18 +0000 Subject: [pkgdb] pacemaker (Fedora, devel) updated by tibbs Message-ID: <20090730225219.444FD10F8C3@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on pacemaker (Fedora devel) for lon tibbs approved watchcommits on pacemaker (Fedora devel) for lon tibbs approved watchbugzilla on pacemaker (Fedora devel) for fabbione tibbs approved watchcommits on pacemaker (Fedora devel) for fabbione To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pacemaker From tibbs at fedoraproject.org Thu Jul 30 22:52:24 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:24 +0000 (UTC) Subject: rpms/pacemaker - New directory Message-ID: <20090730225224.17D4D11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pacemaker In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvss26506/rpms/pacemaker Log Message: Directory /cvs/pkgs/rpms/pacemaker added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:52:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:30 +0000 (UTC) Subject: rpms/pacemaker Makefile,NONE,1.1 Message-ID: <20090730225230.2172E11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pacemaker In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvss26506/rpms/pacemaker Added Files: Makefile Log Message: Setup of module pacemaker --- NEW FILE Makefile --- # Top level Makefile for module pacemaker all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:52:30 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:30 +0000 (UTC) Subject: rpms/pacemaker/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225230.5E3E011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/pacemaker/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvss26506/rpms/pacemaker/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module pacemaker --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: pacemaker # $Id: Makefile,v 1.1 2009/07/30 22:52:30 tibbs Exp $ NAME := pacemaker SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 30 22:52:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:47 +0000 Subject: [pkgdb] python-firkin was added for fab Message-ID: <20090730225248.5D22610F8BC@bastion2.fedora.phx.redhat.com> tibbs has added Package python-firkin with summary A python module to convert between different measurement units tibbs has approved Package python-firkin tibbs has added a Fedora devel branch for python-firkin with an owner of fab tibbs has approved python-firkin in Fedora devel tibbs has approved Package python-firkin tibbs has set commit to Approved for 107427 on python-firkin (Fedora devel) tibbs has set checkout to Approved for 107427 on python-firkin (Fedora devel) tibbs has set build to Approved for 107427 on python-firkin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-firkin From pkgdb at fedoraproject.org Thu Jul 30 22:52:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:48 +0000 Subject: [pkgdb] python-firkin summary updated by tibbs Message-ID: <20090730225249.2ADB610F8BB@bastion2.fedora.phx.redhat.com> tibbs set package python-firkin summary to A python module to convert between different measurement units To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-firkin From pkgdb at fedoraproject.org Thu Jul 30 22:52:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:48 +0000 Subject: [pkgdb] python-firkin (Fedora, 11) updated by tibbs Message-ID: <20090730225249.6FB0D10F8BF@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-firkin tibbs has set commit to Approved for 107427 on python-firkin (Fedora 11) tibbs has set checkout to Approved for 107427 on python-firkin (Fedora 11) tibbs has set build to Approved for 107427 on python-firkin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-firkin From pkgdb at fedoraproject.org Thu Jul 30 22:52:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:48 +0000 Subject: [pkgdb] python-firkin (Fedora, 11) updated by tibbs Message-ID: <20090730225249.C8C8610F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-firkin tibbs has set commit to Approved for 107427 on python-firkin (Fedora 10) tibbs has set checkout to Approved for 107427 on python-firkin (Fedora 10) tibbs has set build to Approved for 107427 on python-firkin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-firkin From tibbs at fedoraproject.org Thu Jul 30 22:52:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:55 +0000 (UTC) Subject: rpms/python-firkin - New directory Message-ID: <20090730225255.1C29E11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-firkin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso26720/rpms/python-firkin Log Message: Directory /cvs/pkgs/rpms/python-firkin added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:52:55 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:52:55 +0000 (UTC) Subject: rpms/python-firkin/devel - New directory Message-ID: <20090730225255.482C011C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-firkin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso26720/rpms/python-firkin/devel Log Message: Directory /cvs/pkgs/rpms/python-firkin/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 30 22:52:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:57 +0000 Subject: [pkgdb] cogito ownership updated Message-ID: <20090730225257.8B74510F8D6@bastion2.fedora.phx.redhat.com> Package cogito in Fedora devel was orphaned by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cogito From tibbs at fedoraproject.org Thu Jul 30 22:53:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:01 +0000 (UTC) Subject: rpms/python-firkin Makefile,NONE,1.1 Message-ID: <20090730225301.2267D11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-firkin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso26720/rpms/python-firkin Added Files: Makefile Log Message: Setup of module python-firkin --- NEW FILE Makefile --- # Top level Makefile for module python-firkin all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Thu Jul 30 22:52:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:52:57 +0000 Subject: [pkgdb] cogito (un)retirement Message-ID: <20090730225257.AC6E910F8D8@bastion2.fedora.phx.redhat.com> Package cogito in Fedora devel has been retired by jkeating To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/cogito From tibbs at fedoraproject.org Thu Jul 30 22:53:01 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:01 +0000 (UTC) Subject: rpms/python-firkin/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225301.779AC11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-firkin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvso26720/rpms/python-firkin/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-firkin --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-firkin # $Id: Makefile,v 1.1 2009/07/30 22:53:01 tibbs Exp $ NAME := python-firkin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 30 22:53:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:53:19 +0000 Subject: [pkgdb] php-facedetect was added for topdog Message-ID: <20090730225319.DF30D10F8C4@bastion2.fedora.phx.redhat.com> tibbs has added Package php-facedetect with summary PHP extension to access the OpenCV library tibbs has approved Package php-facedetect tibbs has added a Fedora devel branch for php-facedetect with an owner of topdog tibbs has approved php-facedetect in Fedora devel tibbs has approved Package php-facedetect tibbs has set commit to Approved for 107427 on php-facedetect (Fedora devel) tibbs has set checkout to Approved for 107427 on php-facedetect (Fedora devel) tibbs has set build to Approved for 107427 on php-facedetect (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-facedetect From pkgdb at fedoraproject.org Thu Jul 30 22:53:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:53:20 +0000 Subject: [pkgdb] php-facedetect summary updated by tibbs Message-ID: <20090730225320.5EC7810F8C3@bastion2.fedora.phx.redhat.com> tibbs set package php-facedetect summary to PHP extension to access the OpenCV library To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-facedetect From pkgdb at fedoraproject.org Thu Jul 30 22:53:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:53:20 +0000 Subject: [pkgdb] php-facedetect (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225320.82D8010F8C7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for php-facedetect tibbs has set commit to Approved for 107427 on php-facedetect (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on php-facedetect (Fedora EPEL 5) tibbs has set build to Approved for 107427 on php-facedetect (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-facedetect From pkgdb at fedoraproject.org Thu Jul 30 22:53:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:53:20 +0000 Subject: [pkgdb] php-facedetect (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225320.E1DE010F8DA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for php-facedetect tibbs has set commit to Approved for 107427 on php-facedetect (Fedora 11) tibbs has set checkout to Approved for 107427 on php-facedetect (Fedora 11) tibbs has set build to Approved for 107427 on php-facedetect (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-facedetect From pkgdb at fedoraproject.org Thu Jul 30 22:53:20 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:53:20 +0000 Subject: [pkgdb] php-facedetect (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225321.2A1B210F8DC@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for php-facedetect tibbs has set commit to Approved for 107427 on php-facedetect (Fedora 10) tibbs has set checkout to Approved for 107427 on php-facedetect (Fedora 10) tibbs has set build to Approved for 107427 on php-facedetect (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/php-facedetect From tibbs at fedoraproject.org Thu Jul 30 22:53:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:26 +0000 (UTC) Subject: rpms/php-facedetect - New directory Message-ID: <20090730225326.1D68D11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-facedetect In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm27086/rpms/php-facedetect Log Message: Directory /cvs/pkgs/rpms/php-facedetect added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:53:26 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:26 +0000 (UTC) Subject: rpms/php-facedetect/devel - New directory Message-ID: <20090730225326.4263F11C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-facedetect/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm27086/rpms/php-facedetect/devel Log Message: Directory /cvs/pkgs/rpms/php-facedetect/devel added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:53:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:32 +0000 (UTC) Subject: rpms/php-facedetect Makefile,NONE,1.1 Message-ID: <20090730225332.04D1111C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-facedetect In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm27086/rpms/php-facedetect Added Files: Makefile Log Message: Setup of module php-facedetect --- NEW FILE Makefile --- # Top level Makefile for module php-facedetect all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:53:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:53:32 +0000 (UTC) Subject: rpms/php-facedetect/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225332.665C911C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/php-facedetect/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsm27086/rpms/php-facedetect/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module php-facedetect --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: php-facedetect # $Id: Makefile,v 1.1 2009/07/30 22:53:32 tibbs Exp $ NAME := php-facedetect SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From jkeating at fedoraproject.org Thu Jul 30 22:53:39 2009 From: jkeating at fedoraproject.org (Jesse Keating) Date: Thu, 30 Jul 2009 22:53:39 +0000 (UTC) Subject: rpms/cogito/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE cogito.spec, 1.22, NONE sources, 1.13, NONE Message-ID: <20090730225339.BAC9C11C00D3@cvs1.fedora.phx.redhat.com> Author: jkeating Update of /cvs/pkgs/rpms/cogito/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27426 Added Files: dead.package Removed Files: Makefile cogito.spec sources Log Message: kill with fire --- NEW FILE dead.package --- Orphan clean up --- Makefile DELETED --- --- cogito.spec DELETED --- --- sources DELETED --- From pkgdb at fedoraproject.org Thu Jul 30 22:54:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:11 +0000 Subject: [pkgdb] emacs-verilog-mode was added for chitlesh Message-ID: <20090730225411.26B4810F8C0@bastion2.fedora.phx.redhat.com> tibbs has added Package emacs-verilog-mode with summary Verilog mode for Emacs tibbs has approved Package emacs-verilog-mode tibbs has added a Fedora devel branch for emacs-verilog-mode with an owner of chitlesh tibbs has approved emacs-verilog-mode in Fedora devel tibbs has approved Package emacs-verilog-mode tibbs has set commit to Approved for 107427 on emacs-verilog-mode (Fedora devel) tibbs has set checkout to Approved for 107427 on emacs-verilog-mode (Fedora devel) tibbs has set build to Approved for 107427 on emacs-verilog-mode (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-verilog-mode From pkgdb at fedoraproject.org Thu Jul 30 22:54:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:12 +0000 Subject: [pkgdb] emacs-verilog-mode summary updated by tibbs Message-ID: <20090730225412.8334B10F8CF@bastion2.fedora.phx.redhat.com> tibbs set package emacs-verilog-mode summary to Verilog mode for Emacs To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-verilog-mode From pkgdb at fedoraproject.org Thu Jul 30 22:54:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:12 +0000 Subject: [pkgdb] emacs-verilog-mode (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225412.C00F910F8CB@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for emacs-verilog-mode tibbs has set commit to Approved for 107427 on emacs-verilog-mode (Fedora 11) tibbs has set checkout to Approved for 107427 on emacs-verilog-mode (Fedora 11) tibbs has set build to Approved for 107427 on emacs-verilog-mode (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-verilog-mode From pkgdb at fedoraproject.org Thu Jul 30 22:54:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:12 +0000 Subject: [pkgdb] emacs-verilog-mode (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225413.3FCE510F8E6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for emacs-verilog-mode tibbs has set commit to Approved for 107427 on emacs-verilog-mode (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on emacs-verilog-mode (Fedora EPEL 5) tibbs has set build to Approved for 107427 on emacs-verilog-mode (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-verilog-mode From pkgdb at fedoraproject.org Thu Jul 30 22:54:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:12 +0000 Subject: [pkgdb] emacs-verilog-mode (Fedora EPEL, 5) updated by tibbs Message-ID: <20090730225414.0F22C10F8D2@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for emacs-verilog-mode tibbs has set commit to Approved for 107427 on emacs-verilog-mode (Fedora 10) tibbs has set checkout to Approved for 107427 on emacs-verilog-mode (Fedora 10) tibbs has set build to Approved for 107427 on emacs-verilog-mode (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-verilog-mode From tibbs at fedoraproject.org Thu Jul 30 22:54:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:19 +0000 (UTC) Subject: rpms/emacs-verilog-mode - New directory Message-ID: <20090730225419.187F011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-verilog-mode In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsb28008/rpms/emacs-verilog-mode Log Message: Directory /cvs/pkgs/rpms/emacs-verilog-mode added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:54:19 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:19 +0000 (UTC) Subject: rpms/emacs-verilog-mode/devel - New directory Message-ID: <20090730225419.42ADA11C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-verilog-mode/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsb28008/rpms/emacs-verilog-mode/devel Log Message: Directory /cvs/pkgs/rpms/emacs-verilog-mode/devel added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:54:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:25 +0000 (UTC) Subject: rpms/emacs-verilog-mode Makefile,NONE,1.1 Message-ID: <20090730225425.75D2E11C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-verilog-mode In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsb28008/rpms/emacs-verilog-mode Added Files: Makefile Log Message: Setup of module emacs-verilog-mode --- NEW FILE Makefile --- # Top level Makefile for module emacs-verilog-mode all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:54:25 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:25 +0000 (UTC) Subject: rpms/emacs-verilog-mode/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225425.D25F911C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-verilog-mode/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsb28008/rpms/emacs-verilog-mode/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module emacs-verilog-mode --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: emacs-verilog-mode # $Id: Makefile,v 1.1 2009/07/30 22:54:25 tibbs Exp $ NAME := emacs-verilog-mode SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 30 22:54:52 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:52 +0000 Subject: [pkgdb] nilfs-utils was added for sandeen Message-ID: <20090730225453.1165C10F8C2@bastion2.fedora.phx.redhat.com> tibbs has added Package nilfs-utils with summary Utilities for managing NILFS v2 filesystems tibbs has approved Package nilfs-utils tibbs has added a Fedora devel branch for nilfs-utils with an owner of sandeen tibbs has approved nilfs-utils in Fedora devel tibbs has approved Package nilfs-utils tibbs has set commit to Approved for 107427 on nilfs-utils (Fedora devel) tibbs has set checkout to Approved for 107427 on nilfs-utils (Fedora devel) tibbs has set build to Approved for 107427 on nilfs-utils (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nilfs-utils From pkgdb at fedoraproject.org Thu Jul 30 22:54:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:53 +0000 Subject: [pkgdb] nilfs-utils summary updated by tibbs Message-ID: <20090730225453.C700B10F8C3@bastion2.fedora.phx.redhat.com> tibbs set package nilfs-utils summary to Utilities for managing NILFS v2 filesystems To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nilfs-utils From tibbs at fedoraproject.org Thu Jul 30 22:54:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:59 +0000 (UTC) Subject: rpms/nilfs-utils - New directory Message-ID: <20090730225459.1AE8011C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/nilfs-utils In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw28891/rpms/nilfs-utils Log Message: Directory /cvs/pkgs/rpms/nilfs-utils added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:54:59 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:54:59 +0000 (UTC) Subject: rpms/nilfs-utils/devel - New directory Message-ID: <20090730225459.3D58611C0417@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/nilfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw28891/rpms/nilfs-utils/devel Log Message: Directory /cvs/pkgs/rpms/nilfs-utils/devel added to the repository From pkgdb at fedoraproject.org Thu Jul 30 22:54:53 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:54:53 +0000 Subject: [pkgdb] nilfs-utils (Fedora, 11) updated by tibbs Message-ID: <20090730225454.07A2E10F8C6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for nilfs-utils tibbs has set commit to Approved for 107427 on nilfs-utils (Fedora 11) tibbs has set checkout to Approved for 107427 on nilfs-utils (Fedora 11) tibbs has set build to Approved for 107427 on nilfs-utils (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/nilfs-utils From tibbs at fedoraproject.org Thu Jul 30 22:55:05 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:55:05 +0000 (UTC) Subject: rpms/nilfs-utils Makefile,NONE,1.1 Message-ID: <20090730225505.3914911C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/nilfs-utils In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw28891/rpms/nilfs-utils Added Files: Makefile Log Message: Setup of module nilfs-utils --- NEW FILE Makefile --- # Top level Makefile for module nilfs-utils all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:55:05 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:55:05 +0000 (UTC) Subject: rpms/nilfs-utils/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225505.6D83011C0425@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/nilfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsw28891/rpms/nilfs-utils/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module nilfs-utils --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: nilfs-utils # $Id: Makefile,v 1.1 2009/07/30 22:55:05 tibbs Exp $ NAME := nilfs-utils SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Thu Jul 30 22:58:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:58:14 +0000 Subject: [pkgdb] poppler-data was added for rdieter Message-ID: <20090730225817.0DD4510F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package poppler-data with summary Encoding files tibbs has approved Package poppler-data tibbs has added a Fedora devel branch for poppler-data with an owner of rdieter tibbs has approved poppler-data in Fedora devel tibbs has approved Package poppler-data tibbs has set commit to Approved for 107427 on poppler-data (Fedora devel) tibbs has set checkout to Approved for 107427 on poppler-data (Fedora devel) tibbs has set build to Approved for 107427 on poppler-data (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/poppler-data From pkgdb at fedoraproject.org Thu Jul 30 22:58:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Thu, 30 Jul 2009 22:58:23 +0000 Subject: [pkgdb] poppler-data summary updated by tibbs Message-ID: <20090730225824.9973910F89D@bastion2.fedora.phx.redhat.com> tibbs set package poppler-data summary to Encoding files To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/poppler-data From tibbs at fedoraproject.org Thu Jul 30 22:58:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:58:37 +0000 (UTC) Subject: rpms/poppler-data - New directory Message-ID: <20090730225837.1D15411C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/poppler-data In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJ30018/rpms/poppler-data Log Message: Directory /cvs/pkgs/rpms/poppler-data added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:58:37 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:58:37 +0000 (UTC) Subject: rpms/poppler-data/devel - New directory Message-ID: <20090730225837.4201C11C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/poppler-data/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJ30018/rpms/poppler-data/devel Log Message: Directory /cvs/pkgs/rpms/poppler-data/devel added to the repository From tibbs at fedoraproject.org Thu Jul 30 22:58:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:58:43 +0000 (UTC) Subject: rpms/poppler-data Makefile,NONE,1.1 Message-ID: <20090730225843.99BE111C00D3@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/poppler-data In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJ30018/rpms/poppler-data Added Files: Makefile Log Message: Setup of module poppler-data --- NEW FILE Makefile --- # Top level Makefile for module poppler-data all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Thu Jul 30 22:58:43 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Thu, 30 Jul 2009 22:58:43 +0000 (UTC) Subject: rpms/poppler-data/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090730225843.D5A5911C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/poppler-data/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsJ30018/rpms/poppler-data/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module poppler-data --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: poppler-data # $Id: Makefile,v 1.1 2009/07/30 22:58:43 tibbs Exp $ NAME := poppler-data SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From devrim at fedoraproject.org Thu Jul 30 23:01:56 2009 From: devrim at fedoraproject.org (=?utf-8?b?RGV2cmltIEfDnE5Ew5xa?=) Date: Thu, 30 Jul 2009 23:01:56 +0000 (UTC) Subject: rpms/postgis/devel postgis.spec,1.25,1.26 Message-ID: <20090730230156.DE32D11C00D3@cvs1.fedora.phx.redhat.com> Author: devrim Update of /cvs/extras/rpms/postgis/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31122 Modified Files: postgis.spec Log Message: Just testing . Index: postgis.spec =================================================================== RCS file: /cvs/extras/rpms/postgis/devel/postgis.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- postgis.spec 27 Jul 2009 12:28:19 -0000 1.25 +++ postgis.spec 30 Jul 2009 23:01:56 -0000 1.26 @@ -70,7 +70,8 @@ cp -p %{SOURCE2} . %build %configure -make %{?_smp_mflags} LPATH=`pg_config --pkglibdir` shlib="%{name}.so" +#make %{?_smp_mflags} LPATH=`pg_config --pkglibdir` shlib="%{name}.so" +make LPATH=`pg_config --pkglibdir` shlib="%{name}.so" %if %javabuild export BUILDXML_DIR=%{_builddir}/%{name}-%{version}/java/jdbc From sandeen at fedoraproject.org Thu Jul 30 23:07:56 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Thu, 30 Jul 2009 23:07:56 +0000 (UTC) Subject: rpms/nilfs-utils/devel import.log, NONE, 1.1 nilfs-utils-2.0.14-no-cleanerd-chown.patch, NONE, 1.1 nilfs-utils.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090730230756.4482B11C00D3@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/nilfs-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1419/devel Modified Files: .cvsignore sources Added Files: import.log nilfs-utils-2.0.14-no-cleanerd-chown.patch nilfs-utils.spec Log Message: Initial import --- NEW FILE import.log --- nilfs-utils-2_0_14-2_fc12:HEAD:nilfs-utils-2.0.14-2.fc12.src.rpm:1248995242 nilfs-utils-2.0.14-no-cleanerd-chown.patch: cleanerd/Makefile.am | 6 ------ cleanerd/Makefile.in | 5 ----- mkfs/Makefile.am | 6 ------ mkfs/Makefile.in | 5 ----- mount/Makefile.am | 6 ------ mount/Makefile.in | 5 ----- 6 files changed, 33 deletions(-) --- NEW FILE nilfs-utils-2.0.14-no-cleanerd-chown.patch --- Index: nilfs-utils-2.0.14/sbin/cleanerd/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/cleanerd/Makefile.am +++ nilfs-utils-2.0.14/sbin/cleanerd/Makefile.am @@ -14,9 +14,3 @@ nilfs_cleanerd_CPPFLAGS = -I$(top_srcdir nilfs_cleanerd_LDADD = $(top_builddir)/lib/libnilfs.la dist_sysconf_DATA = nilfs_cleanerd.conf - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/cleanerd/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/cleanerd/Makefile.in +++ nilfs-utils-2.0.14/sbin/cleanerd/Makefile.in @@ -542,11 +542,6 @@ uninstall-am: uninstall-dist_sysconfDATA uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: nilfs-utils-2.0.14/sbin/mkfs/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mkfs/Makefile.am +++ nilfs-utils-2.0.14/sbin/mkfs/Makefile.am @@ -10,9 +10,3 @@ mkfs_nilfs2_SOURCES = mkfs.c bitops.c .. mkfs_nilfs2_CFLAGS = -Wall mkfs_nilfs2_CPPFLAGS = -I$(top_srcdir)/include mkfs_nilfs2_LDADD = -luuid - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/mkfs/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mkfs/Makefile.in +++ nilfs-utils-2.0.14/sbin/mkfs/Makefile.in @@ -507,11 +507,6 @@ uninstall-am: uninstall-sbinPROGRAMS tags uninstall uninstall-am uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: nilfs-utils-2.0.14/sbin/mount/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mount/Makefile.am +++ nilfs-utils-2.0.14/sbin/mount/Makefile.am @@ -20,9 +20,3 @@ mount_nilfs2_LDADD = $(top_builddir)/lib umount_nilfs2_SOURCES = umount.nilfs2.c $(COMMONSOURCES) $(COMMONHEADERS) umount_nilfs2_LDADD = $(top_builddir)/lib/libnilfsmisc.la - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/mount/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mount/Makefile.in +++ nilfs-utils-2.0.14/sbin/mount/Makefile.in @@ -485,11 +464,6 @@ uninstall-am: uninstall-sbinPROGRAMS tags uninstall uninstall-am uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: --- NEW FILE nilfs-utils.spec --- %global _root_libdir /%{_lib} %global _root_sbindir /sbin Name: nilfs-utils Version: 2.0.14 Release: 2%{?dist} Summary: Utilities for managing NILFS v2 filesystems Group: System Environment/Base License: GPLv2+ URL: http://www.nilfs.org Source0: http://www.nilfs.org/download/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libuuid-devel # Upstream is trying to chown binaries to root; this won't work # when a mere mortal installs to a chroot. Will be fixed # upstream. Patch0: nilfs-utils-2.0.14-no-cleanerd-chown.patch %description Userspace utilities for creating and mounting NILFS v2 filesystems. %package devel Summary: NILFS2 filesystem-specific headers Group: Development/Libraries Requires: nilfs-utils = %{version}-%{release} %description devel nilfs-utils-devel contains the header files needed to develop NILFS filesystem-specific programs. You should install nilfs-utils-devel if you want to develop NILFS filesystem-specific programs. If you install nilfs-utils-devel, you'll also want to install nilfs-utils. %prep %setup -q %patch0 -p1 %build # geez, make install is trying to run ldconfig on the system %configure LDCONFIG=/bin/true --disable-static --libdir %{_root_libdir} sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_root_libdir}/libnilfs.la %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING ChangeLog %config(noreplace) /etc/nilfs_cleanerd.conf %{_root_sbindir}/mkfs.nilfs2 %{_root_sbindir}/mount.nilfs2 %{_root_sbindir}/nilfs_cleanerd %{_root_sbindir}/umount.nilfs2 %{_bindir}/chcp %{_bindir}/dumpseg %{_bindir}/lscp %{_bindir}/lssu %{_bindir}/mkcp %{_bindir}/rmcp %{_mandir}/man1/lscp.1.gz %{_mandir}/man1/lssu.1.gz %{_mandir}/man5/nilfs_cleanerd.conf.5.gz %{_mandir}/man8/chcp.8.gz %{_mandir}/man8/dumpseg.8.gz %{_mandir}/man8/mkcp.8.gz %{_mandir}/man8/mkfs.nilfs2.8.gz %{_mandir}/man8/mount.nilfs2.8.gz %{_mandir}/man8/nilfs.8.gz %{_mandir}/man8/nilfs_cleanerd.8.gz %{_mandir}/man8/rmcp.8.gz %{_mandir}/man8/umount.nilfs2.8.gz %{_root_libdir}/libnilfs.so.* %files devel %defattr(-,root,root,-) %{_root_libdir}/libnilfs.so %{_includedir}/nilfs.h %{_includedir}/nilfs2_fs.h %changelog * Thu Jul 30 2009 Eric Sandeen 2.0.14-2 - Fix libuuid-devel dep, fix odd chown in make install * Wed Jul 29 2009 Eric Sandeen 2.0.14-1 - New upstream release * Wed Jun 10 2009 Eric Sandeen 2.0.12-1 - Initial fedora package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/nilfs-utils/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:55:05 -0000 1.1 +++ .cvsignore 30 Jul 2009 23:07:55 -0000 1.2 @@ -0,0 +1 @@ +nilfs-utils-2.0.14.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nilfs-utils/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:55:05 -0000 1.1 +++ sources 30 Jul 2009 23:07:55 -0000 1.2 @@ -0,0 +1 @@ +96e3de978c68d69d3ffb1e975c275cbe nilfs-utils-2.0.14.tar.bz2 From sandeen at fedoraproject.org Thu Jul 30 23:12:16 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Thu, 30 Jul 2009 23:12:16 +0000 (UTC) Subject: rpms/nilfs-utils/F-11 nilfs-utils-2.0.14-no-cleanerd-chown.patch, NONE, 1.1 nilfs-utils.spec, NONE, 1.1 sources, 1.1, 1.2 Message-ID: <20090730231216.A759711C00D3@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/nilfs-utils/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3220 Modified Files: sources Added Files: nilfs-utils-2.0.14-no-cleanerd-chown.patch nilfs-utils.spec Log Message: * Thu Jul 30 2009 Eric Sandeen 2.0.14-2 - Fix libuuid-devel dep, fix odd chown in make install nilfs-utils-2.0.14-no-cleanerd-chown.patch: cleanerd/Makefile.am | 6 ------ cleanerd/Makefile.in | 5 ----- mkfs/Makefile.am | 6 ------ mkfs/Makefile.in | 5 ----- mount/Makefile.am | 6 ------ mount/Makefile.in | 5 ----- 6 files changed, 33 deletions(-) --- NEW FILE nilfs-utils-2.0.14-no-cleanerd-chown.patch --- Index: nilfs-utils-2.0.14/sbin/cleanerd/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/cleanerd/Makefile.am +++ nilfs-utils-2.0.14/sbin/cleanerd/Makefile.am @@ -14,9 +14,3 @@ nilfs_cleanerd_CPPFLAGS = -I$(top_srcdir nilfs_cleanerd_LDADD = $(top_builddir)/lib/libnilfs.la dist_sysconf_DATA = nilfs_cleanerd.conf - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/cleanerd/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/cleanerd/Makefile.in +++ nilfs-utils-2.0.14/sbin/cleanerd/Makefile.in @@ -542,11 +542,6 @@ uninstall-am: uninstall-dist_sysconfDATA uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: nilfs-utils-2.0.14/sbin/mkfs/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mkfs/Makefile.am +++ nilfs-utils-2.0.14/sbin/mkfs/Makefile.am @@ -10,9 +10,3 @@ mkfs_nilfs2_SOURCES = mkfs.c bitops.c .. mkfs_nilfs2_CFLAGS = -Wall mkfs_nilfs2_CPPFLAGS = -I$(top_srcdir)/include mkfs_nilfs2_LDADD = -luuid - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/mkfs/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mkfs/Makefile.in +++ nilfs-utils-2.0.14/sbin/mkfs/Makefile.in @@ -507,11 +507,6 @@ uninstall-am: uninstall-sbinPROGRAMS tags uninstall uninstall-am uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: nilfs-utils-2.0.14/sbin/mount/Makefile.am =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mount/Makefile.am +++ nilfs-utils-2.0.14/sbin/mount/Makefile.am @@ -20,9 +20,3 @@ mount_nilfs2_LDADD = $(top_builddir)/lib umount_nilfs2_SOURCES = umount.nilfs2.c $(COMMONSOURCES) $(COMMONHEADERS) umount_nilfs2_LDADD = $(top_builddir)/lib/libnilfsmisc.la - -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done Index: nilfs-utils-2.0.14/sbin/mount/Makefile.in =================================================================== --- nilfs-utils-2.0.14.orig/sbin/mount/Makefile.in +++ nilfs-utils-2.0.14/sbin/mount/Makefile.in @@ -485,11 +464,6 @@ uninstall-am: uninstall-sbinPROGRAMS tags uninstall uninstall-am uninstall-sbinPROGRAMS -install-exec-hook: - list='$(sbin_PROGRAMS)'; \ - for p in $$list; do \ - chown root $(DESTDIR)$(sbindir)/$$p$(EXEEXT); \ - done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: --- NEW FILE nilfs-utils.spec --- %global _root_libdir /%{_lib} %global _root_sbindir /sbin Name: nilfs-utils Version: 2.0.14 Release: 2%{?dist} Summary: Utilities for managing NILFS v2 filesystems Group: System Environment/Base License: GPLv2+ URL: http://www.nilfs.org Source0: http://www.nilfs.org/download/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel # Upstream is trying to chown binaries to root; this won't work # when a mere mortal installs to a chroot. Will be fixed # upstream. Patch0: nilfs-utils-2.0.14-no-cleanerd-chown.patch %description Userspace utilities for creating and mounting NILFS v2 filesystems. %package devel Summary: NILFS2 filesystem-specific headers Group: Development/Libraries Requires: nilfs-utils = %{version}-%{release} %description devel nilfs-utils-devel contains the header files needed to develop NILFS filesystem-specific programs. You should install nilfs-utils-devel if you want to develop NILFS filesystem-specific programs. If you install nilfs-utils-devel, you'll also want to install nilfs-utils. %prep %setup -q %patch0 -p1 %build # geez, make install is trying to run ldconfig on the system %configure LDCONFIG=/bin/true --disable-static --libdir %{_root_libdir} sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm -f $RPM_BUILD_ROOT/%{_root_libdir}/libnilfs.la %clean rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc COPYING ChangeLog %config(noreplace) /etc/nilfs_cleanerd.conf %{_root_sbindir}/mkfs.nilfs2 %{_root_sbindir}/mount.nilfs2 %{_root_sbindir}/nilfs_cleanerd %{_root_sbindir}/umount.nilfs2 %{_bindir}/chcp %{_bindir}/dumpseg %{_bindir}/lscp %{_bindir}/lssu %{_bindir}/mkcp %{_bindir}/rmcp %{_mandir}/man1/lscp.1.gz %{_mandir}/man1/lssu.1.gz %{_mandir}/man5/nilfs_cleanerd.conf.5.gz %{_mandir}/man8/chcp.8.gz %{_mandir}/man8/dumpseg.8.gz %{_mandir}/man8/mkcp.8.gz %{_mandir}/man8/mkfs.nilfs2.8.gz %{_mandir}/man8/mount.nilfs2.8.gz %{_mandir}/man8/nilfs.8.gz %{_mandir}/man8/nilfs_cleanerd.8.gz %{_mandir}/man8/rmcp.8.gz %{_mandir}/man8/umount.nilfs2.8.gz %{_root_libdir}/libnilfs.so.* %files devel %defattr(-,root,root,-) %{_root_libdir}/libnilfs.so %{_includedir}/nilfs.h %{_includedir}/nilfs2_fs.h %changelog * Thu Jul 30 2009 Eric Sandeen 2.0.14-2 - Fix libuuid-devel dep, fix odd chown in make install * Wed Jul 29 2009 Eric Sandeen 2.0.14-1 - New upstream release * Wed Jun 10 2009 Eric Sandeen 2.0.12-1 - Initial fedora package Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/nilfs-utils/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:55:05 -0000 1.1 +++ sources 30 Jul 2009 23:12:16 -0000 1.2 @@ -0,0 +1 @@ +96e3de978c68d69d3ffb1e975c275cbe nilfs-utils-2.0.14.tar.bz2 From mitr at fedoraproject.org Fri Jul 31 00:12:50 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Fri, 31 Jul 2009 00:12:50 +0000 (UTC) Subject: rpms/sigul/devel import.log,1.2,NONE Message-ID: <20090731001250.94D2911C00D3@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20459 Removed Files: import.log Log Message: Drop import.log... --- import.log DELETED --- From mitr at fedoraproject.org Fri Jul 31 00:19:05 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Fri, 31 Jul 2009 00:19:05 +0000 (UTC) Subject: rpms/sigul/devel .cvsignore, 1.2, 1.3 sigul.spec, 1.4, 1.5 sources, 1.2, 1.3 0001-Handle-signing-of-source-rpms.patch, 1.1, NONE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, 1.2, NONE Message-ID: <20090731001905.7F6B011C00D3@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/sigul/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21841 Modified Files: .cvsignore sigul.spec sources Removed Files: 0001-Handle-signing-of-source-rpms.patch 0002-Temporary-workaround-for-accidentially-re-downloadin.patch Log Message: * Fri Jul 31 2009 Miloslav Trma? - 0.97-1 - Update to sigul-0.97. - Ship NEWS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Jul 2009 03:14:10 -0000 1.2 +++ .cvsignore 31 Jul 2009 00:19:05 -0000 1.3 @@ -1 +1 @@ -sigul-0.96.tar.bz2 +sigul-0.97.tar.bz2 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sigul.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sigul.spec 29 Jul 2009 03:41:20 -0000 1.4 +++ sigul.spec 31 Jul 2009 00:19:05 -0000 1.5 @@ -1,11 +1,10 @@ Summary: A signing server and related software client Name: sigul -Version: 0.96 -Release: 6%{?dist} +Version: 0.97 +Release: 1%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ -# Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init @@ -25,8 +24,6 @@ BuildRequires: python BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -Patch0: 0001-Handle-signing-of-source-rpms.patch -Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any @@ -35,8 +32,6 @@ that connects the two. %prep %setup -q -%patch0 -p1 -%patch1 -p1 %build %configure @@ -80,7 +75,7 @@ fi %files %defattr(-,root,root,-) -%doc AUTHORS COPYING README +%doc AUTHORS COPYING NEWS README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf @@ -96,6 +91,10 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Fri Jul 31 2009 Miloslav Trma? - 0.97-1 +- Update to sigul-0.97. +- Ship NEWS. + * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jul 2009 03:14:11 -0000 1.2 +++ sources 31 Jul 2009 00:19:05 -0000 1.3 @@ -1 +1 @@ -faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 +dc840745fd3bd6795065c29e43ff00e8 sigul-0.97.tar.bz2 --- 0001-Handle-signing-of-source-rpms.patch DELETED --- --- 0002-Temporary-workaround-for-accidentially-re-downloadin.patch DELETED --- From mitr at fedoraproject.org Fri Jul 31 00:26:35 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Fri, 31 Jul 2009 00:26:35 +0000 (UTC) Subject: rpms/sigul/F-11 .cvsignore, 1.2, 1.3 sigul.spec, 1.1, 1.2 sources, 1.2, 1.3 0001-Handle-signing-of-source-rpms.patch, 1.1, NONE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, 1.1, NONE Message-ID: <20090731002635.9887311C00D3@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/sigul/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23812 Modified Files: .cvsignore sigul.spec sources Removed Files: 0001-Handle-signing-of-source-rpms.patch 0002-Temporary-workaround-for-accidentially-re-downloadin.patch Log Message: * Fri Jul 31 2009 Miloslav Trma? - 0.97-1 - Update to sigul-0.97. - Ship NEWS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 30 Jul 2009 00:48:33 -0000 1.2 +++ .cvsignore 31 Jul 2009 00:26:35 -0000 1.3 @@ -1 +1 @@ -sigul-0.96.tar.bz2 +sigul-0.97.tar.bz2 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/F-11/sigul.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sigul.spec 30 Jul 2009 00:48:33 -0000 1.1 +++ sigul.spec 31 Jul 2009 00:26:35 -0000 1.2 @@ -1,11 +1,10 @@ Summary: A signing server and related software client Name: sigul -Version: 0.96 -Release: 6%{?dist} +Version: 0.97 +Release: 1%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ -# Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init @@ -25,8 +24,6 @@ BuildRequires: python BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -Patch0: 0001-Handle-signing-of-source-rpms.patch -Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any @@ -35,8 +32,6 @@ that connects the two. %prep %setup -q -%patch0 -p1 -%patch1 -p1 %build %configure @@ -80,7 +75,7 @@ fi %files %defattr(-,root,root,-) -%doc AUTHORS COPYING README +%doc AUTHORS COPYING NEWS README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf @@ -96,6 +91,10 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Fri Jul 31 2009 Miloslav Trma? - 0.97-1 +- Update to sigul-0.97. +- Ship NEWS. + * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 30 Jul 2009 00:48:33 -0000 1.2 +++ sources 31 Jul 2009 00:26:35 -0000 1.3 @@ -1 +1 @@ -faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 +dc840745fd3bd6795065c29e43ff00e8 sigul-0.97.tar.bz2 --- 0001-Handle-signing-of-source-rpms.patch DELETED --- --- 0002-Temporary-workaround-for-accidentially-re-downloadin.patch DELETED --- From mitr at fedoraproject.org Fri Jul 31 00:35:23 2009 From: mitr at fedoraproject.org (Miloslav Trmac) Date: Fri, 31 Jul 2009 00:35:23 +0000 (UTC) Subject: rpms/sigul/EL-5 .cvsignore, 1.2, 1.3 sigul.spec, 1.3, 1.4 sources, 1.2, 1.3 0001-Handle-signing-of-source-rpms.patch, 1.1, NONE 0002-Temporary-workaround-for-accidentially-re-downloadin.patch, 1.2, NONE Message-ID: <20090731003523.567AB11C00D3@cvs1.fedora.phx.redhat.com> Author: mitr Update of /cvs/pkgs/rpms/sigul/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26846 Modified Files: .cvsignore sigul.spec sources Removed Files: 0001-Handle-signing-of-source-rpms.patch 0002-Temporary-workaround-for-accidentially-re-downloadin.patch Log Message: * Fri Jul 31 2009 Miloslav Trma? - 0.97-1 - Update to sigul-0.97. - Ship NEWS. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 29 Jul 2009 03:19:52 -0000 1.2 +++ .cvsignore 31 Jul 2009 00:35:23 -0000 1.3 @@ -1 +1 @@ -sigul-0.96.tar.bz2 +sigul-0.97.tar.bz2 Index: sigul.spec =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/sigul.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sigul.spec 29 Jul 2009 03:40:05 -0000 1.3 +++ sigul.spec 31 Jul 2009 00:35:23 -0000 1.4 @@ -1,11 +1,10 @@ Summary: A signing server and related software client Name: sigul -Version: 0.96 -Release: 6%{?dist} +Version: 0.97 +Release: 1%{?dist} License: GPLv2 Group: Applications/Internet URL: https://fedorahosted.org/sigul/ -# Source may not be uploaded yet Source0: https://fedorahosted.org/releases/s/i/sigul/sigul-%{version}.tar.bz2 Source1: sigul_bridge.init Source2: sigul_server.init @@ -25,8 +24,6 @@ BuildRequires: python BuildRequires: gnupg BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch -Patch0: 0001-Handle-signing-of-source-rpms.patch -Patch1: 0002-Temporary-workaround-for-accidentially-re-downloadin.patch %description A signing server, which lets authorized users sign data without having any @@ -35,8 +32,6 @@ that connects the two. %prep %setup -q -%patch0 -p1 -%patch1 -p1 %build %configure @@ -80,7 +75,7 @@ fi %files %defattr(-,root,root,-) -%doc AUTHORS COPYING README +%doc AUTHORS COPYING NEWS README %dir %{_sysconfdir}/sigul %config(noreplace) %{_sysconfdir}/sigul/client.conf %config(noreplace) %attr(640,root,sigul) %{_sysconfdir}/sigul/bridge.conf @@ -96,6 +91,10 @@ fi %dir %attr(700,sigul,sigul) %{_localstatedir}/lib/sigul/gnupg %changelog +* Fri Jul 31 2009 Miloslav Trma? - 0.97-1 +- Update to sigul-0.97. +- Ship NEWS. + * Tue Jul 28 2009 Jesse Keating - 0.96-6 - Fix the patch in -4 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sigul/EL-5/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 29 Jul 2009 03:19:52 -0000 1.2 +++ sources 31 Jul 2009 00:35:23 -0000 1.3 @@ -1 +1 @@ -faa8e4fd42d01ac08888ec9a88932820 sigul-0.96.tar.bz2 +dc840745fd3bd6795065c29e43ff00e8 sigul-0.97.tar.bz2 --- 0001-Handle-signing-of-source-rpms.patch DELETED --- --- 0002-Temporary-workaround-for-accidentially-re-downloadin.patch DELETED --- From cebbert at fedoraproject.org Fri Jul 31 01:00:05 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 31 Jul 2009 01:00:05 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-x86-set_memory_wc-fixes.patch, NONE, 1.1 patch-2.6.31-rc4-git6.bz2.sign, NONE, 1.1 .cvsignore, 1.1104, 1.1105 config-generic, 1.314, 1.315 kernel.spec, 1.1676, 1.1677 linux-2.6-ksm.patch, 1.1, 1.2 linux-2.6.31-lirc.patch, 1.2, 1.3 sources, 1.1062, 1.1063 upstream, 1.976, 1.977 patch-2.6.31-rc4-git3.bz2.sign, 1.1, NONE Message-ID: <20090731010005.7912511C04D5@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1950 Modified Files: .cvsignore config-generic kernel.spec linux-2.6-ksm.patch linux-2.6.31-lirc.patch sources upstream Added Files: linux-2.6-x86-set_memory_wc-fixes.patch patch-2.6.31-rc4-git6.bz2.sign Removed Files: patch-2.6.31-rc4-git3.bz2.sign Log Message: Linux 2.6.31-rc4-git6 New config item: CONFIG_BATTERY_DS2782 is not set Add last-minute set_memory_wc() fix from LKML. linux-2.6-x86-set_memory_wc-fixes.patch: pageattr.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) --- NEW FILE linux-2.6-x86-set_memory_wc-fixes.patch --- From: "Pallipadi, Venkatesh" To: Ingo Molnar , "H. Peter Anvin" , Thomas Gleixner Cc: linux-kernel at vger.kernel.org, stable at kernel.org, suresh.b.siddha at intel.com, Jerome Glisse Subject: [PATCH] x86: Fix set_memory_wc related corruption Message-ID: <20090730214319.GA1889 at linux-os.sc.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Sender: linux-kernel-owner at vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel at vger.kernel.org Changeset 3869c4aa18835c8c61b44bd0f3ace36e9d3b5bd0 that went in after 2.6.30-rc1 was a seemingly small change to _set_memory_wc() to make it complaint with SDM requirements. But, introduced a nasty bug, which can result in crash and/or strange corruptions when set_memory_wc is used. One such crash reported here http://lkml.org/lkml/2009/7/30/94 Actually, that changeset introduced two bugs. * change_page_attr_set() takes &addr as first argument and can the addr value might have changed on return, even for single page change_page_attr_set() call. That will make the second change_page_attr_set() in this routine operate on unrelated addr, that can eventually cause strange corruptions and bad page state crash. * The second change_page_attr_set() call, before setting _PAGE_CACHE_WC, should clear the earlier _PAGE_CACHE_UC_MINUS, as otherwise cache attribute will not be WC (will be UC instead). The patch below fixes both these problems. Sending a single patch to fix both the problems, as the change is to the same line of code. The change to have a addr_copy is not very clean. But, it is simpler than making more changes through various routines in pageattr.c. A huge thanks to Jerome for reporting this problem and providing a simple test case that helped us root cause the problem. Reported-by: Jerome Glisse Signed-off-by: Venkatesh Pallipadi Signed-off-by: Suresh Siddha --- Patch needed for 2.6.30-stable as well arch/x86/mm/pageattr.c | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 1b734d7..895d90e 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c @@ -997,12 +997,15 @@ EXPORT_SYMBOL(set_memory_array_uc); int _set_memory_wc(unsigned long addr, int numpages) { int ret; + unsigned long addr_copy = addr; + ret = change_page_attr_set(&addr, numpages, __pgprot(_PAGE_CACHE_UC_MINUS), 0); - if (!ret) { - ret = change_page_attr_set(&addr, numpages, - __pgprot(_PAGE_CACHE_WC), 0); + ret = change_page_attr_set_clr(&addr_copy, numpages, + __pgprot(_PAGE_CACHE_WC), + __pgprot(_PAGE_CACHE_MASK), + 0, 0, NULL); } return ret; } -- 1.6.0.6 --- NEW FILE patch-2.6.31-rc4-git6.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKcjipyGugalF9Dw4RAmnoAJ0c4vwUj764wafADxzQ8/HUvfW/3ACeM9tS 6RHBb7VUKldTInhcjNgXUBk= =txfa -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/.cvsignore,v retrieving revision 1.1104 retrieving revision 1.1105 diff -u -p -r1.1104 -r1.1105 --- .cvsignore 29 Jul 2009 01:42:07 -0000 1.1104 +++ .cvsignore 31 Jul 2009 01:00:04 -0000 1.1105 @@ -6,4 +6,4 @@ temp-* kernel-2.6.30 linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 -patch-2.6.31-rc4-git3.bz2 +patch-2.6.31-rc4-git6.bz2 Index: config-generic =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/config-generic,v retrieving revision 1.314 retrieving revision 1.315 diff -u -p -r1.314 -r1.315 --- config-generic 28 Jul 2009 13:35:42 -0000 1.314 +++ config-generic 31 Jul 2009 01:00:04 -0000 1.315 @@ -3761,6 +3761,7 @@ CONFIG_POWER_SUPPLY=m # CONFIG_POWER_SUPPLY_DEBUG is not set CONFIG_APM_POWER=m # CONFIG_BATTERY_DS2760 is not set +# CONFIG_BATTERY_DS2782 is not set CONFIG_BATTERY_PMU=m CONFIG_BATTERY_BQ27x00=m CONFIG_BATTERY_MAX17040=m Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1676 retrieving revision 1.1677 diff -u -p -r1.1676 -r1.1677 --- kernel.spec 30 Jul 2009 20:43:31 -0000 1.1676 +++ kernel.spec 31 Jul 2009 01:00:04 -0000 1.1677 @@ -61,7 +61,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 4 # The git snapshot level -%define gitrev 3 +%define gitrev 6 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -702,6 +702,7 @@ Patch3050: linux-2.6-nfsd4-proots.patch Patch11010: via-hwmon-temp-sensor.patch # patches headed upstream +Patch12000: linux-2.6-x86-set_memory_wc-fixes.patch %endif @@ -1122,6 +1123,7 @@ ApplyPatch sched-introduce-SCHED_RESET_O # Architecture patches # x86(-64) ApplyPatch via-hwmon-temp-sensor.patch +ApplyPatch linux-2.6-x86-set_memory_wc-fixes.patch # # PowerPC @@ -1933,6 +1935,11 @@ fi # and build. %changelog +* Thu Jul 30 2009 Chuck Ebbert +- Linux 2.6.31-rc4-git6 + New config item: CONFIG_BATTERY_DS2782 is not set +- Add last-minute set_memory_wc() fix from LKML. + * Thu Jul 30 2009 Matthew Garrett - drm-intel-pm.patch: Don't reclock external outputs. Increase the reduced clock slightly to avoid upsetting some hardware. Disable renderclock linux-2.6-ksm.patch: b/arch/alpha/include/asm/mman.h | 3 b/arch/mips/include/asm/mman.h | 3 b/arch/parisc/include/asm/mman.h | 3 b/arch/xtensa/include/asm/mman.h | 3 b/fs/proc/page.c | 5 b/include/asm-generic/mman-common.h | 5 b/include/linux/ksm.h | 50 + b/include/linux/mm.h | 1 b/include/linux/mmu_notifier.h | 34 b/include/linux/rmap.h | 6 b/include/linux/sched.h | 7 b/kernel/fork.c | 8 b/mm/Kconfig | 11 b/mm/Makefile | 1 b/mm/ksm.c | 56 + b/mm/madvise.c | 41 b/mm/memory.c | 9 b/mm/mmu_notifier.c | 22 b/mm/mremap.c | 14 b/mm/rmap.c | 23 include/linux/ksm.h | 29 mm/ksm.c | 1506 +++++++++++++++++++++++++++++++++++- mm/madvise.c | 16 mm/memory.c | 7 24 files changed, 1780 insertions(+), 83 deletions(-) Index: linux-2.6-ksm.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6-ksm.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- linux-2.6-ksm.patch 23 Jul 2009 18:25:23 -0000 1.1 +++ linux-2.6-ksm.patch 31 Jul 2009 01:00:04 -0000 1.2 @@ -546,9 +546,9 @@ index bd29592..ac312a4 100644 - mm->flags = (current->mm) ? current->mm->flags : default_dump_filter; + mm->flags = (current->mm) ? + (current->mm->flags & MMF_INIT_MASK) : default_dump_filter; + mm->oom_adj = (current->mm) ? current->mm->oom_adj : 0; mm->core_state = NULL; mm->nr_ptes = 0; - set_mm_counter(mm, file_rss, 0); @@ -486,6 +491,7 @@ void mmput(struct mm_struct *mm) if (atomic_dec_and_test(&mm->mm_users)) { linux-2.6.31-lirc.patch: MAINTAINERS | 9 drivers/input/Kconfig | 2 drivers/input/Makefile | 2 drivers/input/lirc/Kconfig | 112 + drivers/input/lirc/Makefile | 20 drivers/input/lirc/lirc.h | 100 + drivers/input/lirc/lirc_bt829.c | 383 ++++++ drivers/input/lirc/lirc_dev.c | 851 ++++++++++++++ drivers/input/lirc/lirc_dev.h | 184 +++ drivers/input/lirc/lirc_i2c.c | 537 ++++++++ drivers/input/lirc/lirc_igorplugusb.c | 556 +++++++++ drivers/input/lirc/lirc_imon.c | 2062 ++++++++++++++++++++++++++++++++++ drivers/input/lirc/lirc_it87.c | 986 ++++++++++++++++ drivers/input/lirc/lirc_it87.h | 116 + drivers/input/lirc/lirc_ite8709.c | 539 ++++++++ drivers/input/lirc/lirc_mceusb.c | 1223 ++++++++++++++++++++ drivers/input/lirc/lirc_parallel.c | 709 +++++++++++ drivers/input/lirc/lirc_parallel.h | 26 drivers/input/lirc/lirc_sasem.c | 931 +++++++++++++++ drivers/input/lirc/lirc_serial.c | 1316 +++++++++++++++++++++ drivers/input/lirc/lirc_sir.c | 1294 +++++++++++++++++++++ drivers/input/lirc/lirc_streamzap.c | 777 ++++++++++++ drivers/input/lirc/lirc_ttusbir.c | 397 ++++++ drivers/input/lirc/lirc_zilog.c | 1374 ++++++++++++++++++++++ 24 files changed, 14506 insertions(+) Index: linux-2.6.31-lirc.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/linux-2.6.31-lirc.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- linux-2.6.31-lirc.patch 7 Jul 2009 06:17:04 -0000 1.2 +++ linux-2.6.31-lirc.patch 31 Jul 2009 01:00:04 -0000 1.3 @@ -51,8 +51,8 @@ index 381190c..fc79bdf 100644 +S: Maintained + LINUX SECURITY MODULE (LSM) FRAMEWORK - P: Chris Wright - M: chrisw at sous-sol.org + M: Chris Wright + L: linux-security-module at vger.kernel.org diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index cd50c00..442f94f 100644 --- a/drivers/input/Kconfig Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/sources,v retrieving revision 1.1062 retrieving revision 1.1063 diff -u -p -r1.1062 -r1.1063 --- sources 29 Jul 2009 01:42:07 -0000 1.1062 +++ sources 31 Jul 2009 01:00:05 -0000 1.1063 @@ -1,3 +1,3 @@ 7a80058a6382e5108cdb5554d1609615 linux-2.6.30.tar.bz2 879f514ce009b9a7535b743f71cd3c02 patch-2.6.31-rc4.bz2 -c7015e64d87ae5573ee85308ec680082 patch-2.6.31-rc4-git3.bz2 +600168a562b18faa4bdc2f6ba934d57c patch-2.6.31-rc4-git6.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/upstream,v retrieving revision 1.976 retrieving revision 1.977 diff -u -p -r1.976 -r1.977 --- upstream 29 Jul 2009 01:42:07 -0000 1.976 +++ upstream 31 Jul 2009 01:00:05 -0000 1.977 @@ -1,3 +1,3 @@ linux-2.6.30.tar.bz2 patch-2.6.31-rc4.bz2 -patch-2.6.31-rc4-git3.bz2 +patch-2.6.31-rc4-git6.bz2 --- patch-2.6.31-rc4-git3.bz2.sign DELETED --- From pkgdb at fedoraproject.org Fri Jul 31 01:07:42 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:07:42 +0000 Subject: [pkgdb] ibus-table-extraphrase: cchance has requested watchbugzilla Message-ID: <20090731010743.1C13810F88F@bastion2.fedora.phx.redhat.com> cchance has requested the watchbugzilla acl on ibus-table-extraphrase (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-extraphrase From pkgdb at fedoraproject.org Fri Jul 31 01:07:46 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:07:46 +0000 Subject: [pkgdb] ibus-table-extraphrase: cchance has given up watchbugzilla Message-ID: <20090731010746.53A5310F89B@bastion2.fedora.phx.redhat.com> cchance has given up the watchbugzilla acl on ibus-table-extraphrase (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-extraphrase From pkgdb at fedoraproject.org Fri Jul 31 01:08:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:08:57 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010857.D77B310F88F@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:08:59 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:08:59 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010859.2C04A10F89B@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:03 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010903.36BC310F8A1@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:14 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010914.E443F10F8B0@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table (Fedora 9) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:16 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010916.5824A10F8B5@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table (Fedora 9) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:17 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010917.D5FB210F8B8@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora 9) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:25 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010925.79F0A10F8B9@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:23 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:23 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010923.774EE10F89A@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:26 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010926.AAEF210F8BC@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:30 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:30 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010930.9C6AD10F89F@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:32 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010932.7E0E710F89E@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:33 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010933.7267F10F8C0@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:38 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:38 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010938.B071210F8C3@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora 11) to Awaiting Review for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:09:40 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:09:40 +0000 Subject: [pkgdb] ibus-table had acl change status Message-ID: <20090731010940.D93FF10F8C5@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table From pkgdb at fedoraproject.org Fri Jul 31 01:10:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:06 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011006.4C47810F89B@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:07 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011007.6032310F8B7@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:08 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011008.2D61510F8B9@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:10 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011010.6315B10F8C6@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:14 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011014.3D7A710F8BE@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:15 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:15 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011015.5527A10F8BD@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:16 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011016.D566910F8C7@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:21 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:21 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011021.E582E10F8CA@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:22 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011022.512BB10F8CC@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-cangjie (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:24 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011024.DDEFD10F8CE@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-cangjie (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:26 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011026.CFE1110F89F@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-cangjie (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:10:27 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:10:27 +0000 Subject: [pkgdb] ibus-table-cangjie had acl change status Message-ID: <20090731011027.DE58610F8A1@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-cangjie (Fedora 10) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-cangjie From pkgdb at fedoraproject.org Fri Jul 31 01:11:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:04 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011104.1388310F89A@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-wubi (Fedora devel) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:08 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011108.B773610F8C1@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-wubi (Fedora 11) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:05 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011105.8167510F8B5@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-wubi (Fedora devel) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:10 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011110.B510510F8C4@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-wubi (Fedora 11) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:12 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011112.9CFD210F8B9@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-wubi (Fedora 10) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:14 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011114.6B31E10F8D4@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-wubi (Fedora 10) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:32 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011132.70C2010F8BB@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-wubi (Fedora devel) to Approved for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:11:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:11:33 +0000 Subject: [pkgdb] ibus-table-wubi had acl change status Message-ID: <20090731011133.E292810F8C7@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-wubi (Fedora devel) to Approved for i18n-team To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-wubi From pkgdb at fedoraproject.org Fri Jul 31 01:12:56 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:12:56 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011256.A925A10F89D@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-erbi (Fedora devel) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:12:57 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:12:57 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011257.E4C1810F8A1@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-erbi (Fedora devel) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:13:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:13:00 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011301.07BFC10F8B4@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-erbi (Fedora 11) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:13:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:13:02 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011302.55E1810F8B7@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-erbi (Fedora 11) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:13:04 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:13:04 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011304.B673F10F8B9@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-erbi (Fedora 10) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:13:06 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:13:06 +0000 Subject: [pkgdb] ibus-table-erbi had acl change status Message-ID: <20090731011306.5097810F8BC@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-erbi (Fedora 10) to Obsolete for hnws To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-erbi From pkgdb at fedoraproject.org Fri Jul 31 01:14:13 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:13 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011413.256AD10F89B@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:14 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011414.A44F310F8BA@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:17 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011417.4F2A010F89D@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:19 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011419.3119110F8BB@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora devel) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:22 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011422.CB40C10F897@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on ibus-table-translit (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:24 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011424.3237010F8BE@bastion2.fedora.phx.redhat.com> cchance has set the watchcommits acl on ibus-table-translit (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:25 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:25 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011425.B9E8B10F8BF@bastion2.fedora.phx.redhat.com> cchance has set the commit acl on ibus-table-translit (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From pkgdb at fedoraproject.org Fri Jul 31 01:14:28 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:14:28 +0000 Subject: [pkgdb] ibus-table-translit had acl change status Message-ID: <20090731011428.2C22E10F8C1@bastion2.fedora.phx.redhat.com> cchance has set the approveacls acl on ibus-table-translit (Fedora 11) to Obsolete for cchance To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ibus-table-translit From bskeggs at fedoraproject.org Fri Jul 31 01:15:46 2009 From: bskeggs at fedoraproject.org (Ben Skeggs) Date: Fri, 31 Jul 2009 01:15:46 +0000 (UTC) Subject: rpms/kernel/devel drm-nouveau.patch, 1.40, 1.41 kernel.spec, 1.1677, 1.1678 Message-ID: <20090731011546.9BC0511C00D3@cvs1.fedora.phx.redhat.com> Author: bskeggs Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6021 Modified Files: drm-nouveau.patch kernel.spec Log Message: * Fri Jul 31 2009 Ben Skeggs - nouveau: build against 2.6.31-rc4-git6, fix script parsing on some G8x chips drm-nouveau.patch: drivers/gpu/drm/Kconfig | 30 drivers/gpu/drm/Makefile | 1 drivers/gpu/drm/drm_bufs.c | 28 drivers/gpu/drm/nouveau/Makefile | 27 drivers/gpu/drm/nouveau/nouveau_backlight.c | 155 drivers/gpu/drm/nouveau/nouveau_bios.c | 5052 ++++++ drivers/gpu/drm/nouveau/nouveau_bios.h | 226 drivers/gpu/drm/nouveau/nouveau_bo.c | 567 drivers/gpu/drm/nouveau/nouveau_calc.c | 622 drivers/gpu/drm/nouveau/nouveau_connector.h | 55 drivers/gpu/drm/nouveau/nouveau_crtc.h | 90 drivers/gpu/drm/nouveau/nouveau_display.c | 115 drivers/gpu/drm/nouveau/nouveau_dma.c | 143 drivers/gpu/drm/nouveau/nouveau_dma.h | 144 drivers/gpu/drm/nouveau/nouveau_drv.c | 363 drivers/gpu/drm/nouveau/nouveau_drv.h | 1147 + drivers/gpu/drm/nouveau/nouveau_encoder.h | 51 drivers/gpu/drm/nouveau/nouveau_fb.h | 43 drivers/gpu/drm/nouveau/nouveau_fbcon.c | 1019 + drivers/gpu/drm/nouveau/nouveau_fbcon.h | 49 drivers/gpu/drm/nouveau/nouveau_fence.c | 261 drivers/gpu/drm/nouveau/nouveau_fifo.c | 681 drivers/gpu/drm/nouveau/nouveau_gem.c | 751 drivers/gpu/drm/nouveau/nouveau_hw.c | 1019 + drivers/gpu/drm/nouveau/nouveau_hw.h | 431 drivers/gpu/drm/nouveau/nouveau_i2c.c | 274 drivers/gpu/drm/nouveau/nouveau_i2c.h | 46 drivers/gpu/drm/nouveau/nouveau_ioc32.c | 72 drivers/gpu/drm/nouveau/nouveau_irq.c | 674 drivers/gpu/drm/nouveau/nouveau_mem.c | 557 drivers/gpu/drm/nouveau/nouveau_notifier.c | 192 drivers/gpu/drm/nouveau/nouveau_object.c | 1275 + drivers/gpu/drm/nouveau/nouveau_reg.h | 834 + drivers/gpu/drm/nouveau/nouveau_sgdma.c | 331 drivers/gpu/drm/nouveau/nouveau_state.c | 833 + drivers/gpu/drm/nouveau/nouveau_swmthd.h | 33 drivers/gpu/drm/nouveau/nouveau_ttm.c | 116 drivers/gpu/drm/nouveau/nv04_crtc.c | 1135 + drivers/gpu/drm/nouveau/nv04_cursor.c | 70 drivers/gpu/drm/nouveau/nv04_display.c | 250 drivers/gpu/drm/nouveau/nv04_fb.c | 21 drivers/gpu/drm/nouveau/nv04_fbcon.c | 291 drivers/gpu/drm/nouveau/nv04_fifo.c | 146 drivers/gpu/drm/nouveau/nv04_graph.c | 586 drivers/gpu/drm/nouveau/nv04_instmem.c | 192 drivers/gpu/drm/nouveau/nv04_mc.c | 20 drivers/gpu/drm/nouveau/nv04_output.c | 1193 + drivers/gpu/drm/nouveau/nv04_timer.c | 51 drivers/gpu/drm/nouveau/nv10_fb.c | 24 drivers/gpu/drm/nouveau/nv10_fifo.c | 177 drivers/gpu/drm/nouveau/nv10_graph.c | 945 + drivers/gpu/drm/nouveau/nv20_graph.c | 958 + drivers/gpu/drm/nouveau/nv40_fb.c | 62 drivers/gpu/drm/nouveau/nv40_fifo.c | 222 drivers/gpu/drm/nouveau/nv40_graph.c | 2200 ++ drivers/gpu/drm/nouveau/nv40_mc.c | 38 drivers/gpu/drm/nouveau/nv50_connector.c | 495 drivers/gpu/drm/nouveau/nv50_crtc.c | 812 + drivers/gpu/drm/nouveau/nv50_cursor.c | 153 drivers/gpu/drm/nouveau/nv50_dac.c | 284 drivers/gpu/drm/nouveau/nv50_display.c | 844 + drivers/gpu/drm/nouveau/nv50_display.h | 46 drivers/gpu/drm/nouveau/nv50_evo.h | 113 drivers/gpu/drm/nouveau/nv50_fbcon.c | 256 drivers/gpu/drm/nouveau/nv50_fifo.c | 475 drivers/gpu/drm/nouveau/nv50_graph.c | 432 drivers/gpu/drm/nouveau/nv50_grctx.h |22284 ++++++++++++++++++++++++++++ drivers/gpu/drm/nouveau/nv50_instmem.c | 499 drivers/gpu/drm/nouveau/nv50_mc.c | 40 drivers/gpu/drm/nouveau/nv50_sor.c | 268 drivers/gpu/drm/nouveau/nvreg.h | 503 drivers/gpu/drm/ttm/ttm_bo.c | 4 include/drm/Kbuild | 1 include/drm/drmP.h | 2 include/drm/nouveau_drm.h | 214 75 files changed, 54592 insertions(+), 21 deletions(-) Index: drm-nouveau.patch =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/drm-nouveau.patch,v retrieving revision 1.40 retrieving revision 1.41 diff -u -p -r1.40 -r1.41 --- drm-nouveau.patch 30 Jul 2009 08:41:40 -0000 1.40 +++ drm-nouveau.patch 31 Jul 2009 01:15:45 -0000 1.41 @@ -138,10 +138,10 @@ index 0000000..67a9582 +obj-$(CONFIG_DRM_NOUVEAU)+= nouveau.o diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c new file mode 100644 -index 0000000..d0f3bc9 +index 0000000..20564f8 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_backlight.c -@@ -0,0 +1,156 @@ +@@ -0,0 +1,155 @@ +/* + * Copyright (C) 2009 Red Hat + * @@ -278,7 +278,6 @@ index 0000000..d0f3bc9 + + switch (dev_priv->card_type) { + case NV_40: -+ case NV_44: + return nouveau_nv40_backlight_init(dev); + case NV_50: + return nouveau_nv50_backlight_init(dev); @@ -300,7 +299,7 @@ index 0000000..d0f3bc9 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c new file mode 100644 -index 0000000..70f6947 +index 0000000..668008b --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c @@ -0,0 +1,5052 @@ @@ -2773,7 +2772,7 @@ index 0000000..70f6947 + val <<= (0x100 - bios->data[offset + 5]); + val &= bios->data[offset + 6]; + -+ val = bios->data[xlatptr + val]; ++ val = bios->data[ROM16(bios->data[xlatptr]) + val]; + val <<= bios->data[offset + 16]; + + if (!iexec->execute) @@ -7368,10 +7367,10 @@ index 0000000..f15873f +#endif diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.c b/drivers/gpu/drm/nouveau/nouveau_drv.c new file mode 100644 -index 0000000..fec1b29 +index 0000000..c9b169f --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_drv.c -@@ -0,0 +1,353 @@ +@@ -0,0 +1,363 @@ +/* + * Copyright 2005 Stephane Marchesin. + * All Rights Reserved. @@ -7529,15 +7528,14 @@ index 0000000..fec1b29 + ret = nouveau_gpuobj_suspend(dev); + if (ret) { + NV_ERROR(dev, "... failed: %d\n", ret); -+ return ret; ++ goto out_abort; + } + -+ if (engine->instmem.suspend) { -+ ret = engine->instmem.suspend(dev); -+ if (ret) { -+ NV_ERROR(dev, "... failed: %d\n", ret); -+ return ret; -+ } ++ ret = engine->instmem.suspend(dev); ++ if (ret) { ++ NV_ERROR(dev, "... failed: %d\n", ret); ++ nouveau_gpuobj_suspend_cleanup(dev); ++ goto out_abort; + } + + NV_INFO(dev, "And we're gone!\n"); @@ -7552,6 +7550,18 @@ index 0000000..fec1b29 + release_console_sem(); + dev_priv->fbdev_info->flags = fbdev_flags; + return 0; ++ ++out_abort: ++ NV_INFO(dev, "Re-enabling acceleration..\n"); ++ nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_PUSH, ++ nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_PUSH) | 1); ++ nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0, 0x00000001); ++ nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, 0x00000001); ++ nv_wr32(dev, NV04_PFIFO_CACHE1_PULL1, 0x00000001); ++ nv_wr32(dev, NV03_PFIFO_CACHES, 1); ++ ++ engine->graph.fifo_access(dev, true); ++ return ret; +} + +static int @@ -7591,8 +7601,7 @@ index 0000000..fec1b29 + } + + NV_INFO(dev, "Reinitialising engines...\n"); -+ if (engine->instmem.resume) -+ engine->instmem.resume(dev); ++ engine->instmem.resume(dev); + engine->mc.init(dev); + engine->timer.init(dev); + engine->fb.init(dev); @@ -7727,10 +7736,10 @@ index 0000000..fec1b29 +MODULE_LICENSE("GPL and additional rights"); diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h new file mode 100644 -index 0000000..ed9b4df +index 0000000..9f6dc8d --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h -@@ -0,0 +1,1145 @@ +@@ -0,0 +1,1147 @@ +/* + * Copyright 2005 Stephane Marchesin. + * All Rights Reserved. @@ -8175,7 +8184,6 @@ index 0000000..ed9b4df + NV_20 = 20, + NV_30 = 30, + NV_40 = 40, -+ NV_44 = 44, + NV_50 = 50, +}; + @@ -8403,6 +8411,7 @@ index 0000000..ed9b4df +extern void nouveau_gpuobj_takedown(struct drm_device *); +extern void nouveau_gpuobj_late_takedown(struct drm_device *); +extern int nouveau_gpuobj_suspend(struct drm_device *dev); ++extern void nouveau_gpuobj_suspend_cleanup(struct drm_device *dev); +extern void nouveau_gpuobj_resume(struct drm_device *dev); +extern int nouveau_gpuobj_channel_init(struct nouveau_channel *, + uint32_t vram_h, uint32_t tt_h); @@ -8591,6 +8600,8 @@ index 0000000..ed9b4df +/* nv04_instmem.c */ +extern int nv04_instmem_init(struct drm_device *); +extern void nv04_instmem_takedown(struct drm_device *); ++extern int nv04_instmem_suspend(struct drm_device *); ++extern void nv04_instmem_resume(struct drm_device *); +extern int nv04_instmem_populate(struct drm_device *, struct nouveau_gpuobj *, + uint32_t *size); +extern void nv04_instmem_clear(struct drm_device *, struct nouveau_gpuobj *); @@ -10331,10 +10342,10 @@ index 0000000..32b4bb9 + diff --git a/drivers/gpu/drm/nouveau/nouveau_fifo.c b/drivers/gpu/drm/nouveau/nouveau_fifo.c new file mode 100644 -index 0000000..69ac2f6 +index 0000000..44a8467 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_fifo.c -@@ -0,0 +1,668 @@ +@@ -0,0 +1,681 @@ +/* + * Copyright 2005-2006 Stephane Marchesin + * All Rights Reserved. @@ -10408,12 +10419,25 @@ index 0000000..69ac2f6 + break; + } + -+ nv_wr32(dev, NV40_PFIFO_RAMFC, 0x30002); -+ break; -+ case NV_44: -+ nv_wr32(dev, NV40_PFIFO_RAMFC, -+ ((nouveau_mem_fb_amount(dev) - 512 * 1024 + -+ dev_priv->ramfc_offset) >> 16) | (2 << 16)); ++ switch (dev_priv->chipset) { ++ case 0x40: ++ case 0x41: ++ case 0x42: ++ case 0x43: ++ case 0x45: ++ case 0x47: ++ case 0x48: ++ case 0x49: ++ case 0x4b: ++ nv_wr32(dev, NV40_PFIFO_RAMFC, 0x30002); ++ break; ++ default: ++ nv_wr32(dev, 0x2230, 0); ++ nv_wr32(dev, NV40_PFIFO_RAMFC, ++ ((nouveau_mem_fb_amount(dev) - 512 * 1024 + ++ dev_priv->ramfc_offset) >> 16) | (2 << 16)); ++ break; ++ } + break; + case NV_30: + case NV_20: @@ -14314,7 +14338,7 @@ index 0000000..bad3712 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_mem.c b/drivers/gpu/drm/nouveau/nouveau_mem.c new file mode 100644 -index 0000000..3a3d384 +index 0000000..85f3597 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_mem.c @@ -0,0 +1,557 @@ @@ -14713,7 +14737,6 @@ index 0000000..3a3d384 + case NV_20: + case NV_30: + case NV_40: -+ case NV_44: + case NV_50: + default: + if (dev_priv->flags & (NV_NFORCE | NV_NFORCE2)) { @@ -14817,7 +14840,8 @@ index 0000000..3a3d384 + + ret = ttm_bo_device_init(&dev_priv->ttm.bdev, + dev_priv->ttm.mem_global_ref.object, -+ &nouveau_bo_driver, DRM_FILE_PAGE_OFFSET); ++ &nouveau_bo_driver, DRM_FILE_PAGE_OFFSET, ++ dev_priv->card_type < NV_50); + if (ret) { + NV_ERROR(dev, "Error initialising bo driver: %d\n", ret); + return ret; @@ -15075,10 +15099,10 @@ index 0000000..afe0210 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_object.c b/drivers/gpu/drm/nouveau/nouveau_object.c new file mode 100644 -index 0000000..9ba67df +index 0000000..f5054d1 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_object.c -@@ -0,0 +1,1258 @@ +@@ -0,0 +1,1275 @@ +/* + * Copyright (C) 2006 Ben Skeggs. + * @@ -16207,8 +16231,7 @@ index 0000000..9ba67df + int i; + + if (dev_priv->card_type < NV_50) { -+ dev_priv->susres.ramin_copy = kmalloc(dev_priv->ramin_rsvd_vram, -+ GFP_KERNEL); ++ dev_priv->susres.ramin_copy = vmalloc(dev_priv->ramin_rsvd_vram); + if (!dev_priv->susres.ramin_copy) + return -ENOMEM; + @@ -16221,8 +16244,7 @@ index 0000000..9ba67df + if (!gpuobj->im_backing || (gpuobj->flags & NVOBJ_FLAG_FAKE)) + continue; + -+ gpuobj->im_backing_suspend = kmalloc(gpuobj->im_pramin->size, -+ GFP_KERNEL); ++ gpuobj->im_backing_suspend = vmalloc(gpuobj->im_pramin->size); + if (!gpuobj->im_backing_suspend) { + nouveau_gpuobj_resume(dev); + return -ENOMEM; @@ -16238,6 +16260,27 @@ index 0000000..9ba67df +} + +void ++nouveau_gpuobj_suspend_cleanup(struct drm_device *dev) ++{ ++ struct drm_nouveau_private *dev_priv = dev->dev_private; ++ struct nouveau_gpuobj *gpuobj; ++ ++ if (dev_priv->card_type < NV_50) { ++ vfree(dev_priv->susres.ramin_copy); ++ dev_priv->susres.ramin_copy = NULL; ++ return; ++ } ++ ++ list_for_each_entry(gpuobj, &dev_priv->gpuobj_list, list) { ++ if (!gpuobj->im_backing_suspend) ++ continue; ++ ++ vfree(gpuobj->im_backing_suspend); ++ gpuobj->im_backing_suspend = NULL; ++ } ++} ++ ++void +nouveau_gpuobj_resume(struct drm_device *dev) +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; @@ -16247,8 +16290,7 @@ index 0000000..9ba67df + if (dev_priv->card_type < NV_50) { + for (i = 0; i < dev_priv->ramin_rsvd_vram; i += 4) + nv_wi32(dev, i, dev_priv->susres.ramin_copy[i/4]); -+ kfree(dev_priv->susres.ramin_copy); -+ dev_priv->susres.ramin_copy = NULL; ++ nouveau_gpuobj_suspend_cleanup(dev); + return; + } + @@ -16260,10 +16302,9 @@ index 0000000..9ba67df + for (i = 0; i < gpuobj->im_pramin->size / 4; i++) + nv_wo32(dev, gpuobj, i, gpuobj->im_backing_suspend[i]); + dev_priv->engine.instmem.finish_access(dev); -+ -+ kfree(gpuobj->im_backing_suspend); -+ gpuobj->im_backing_suspend = NULL; + } ++ ++ nouveau_gpuobj_suspend_cleanup(dev); +} + +int nouveau_ioctl_grobj_alloc(struct drm_device *dev, void *data, @@ -17516,10 +17557,10 @@ index 0000000..32a9452 +} diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c new file mode 100644 -index 0000000..a09ee5e +index 0000000..f8f5bec --- /dev/null +++ b/drivers/gpu/drm/nouveau/nouveau_state.c -@@ -0,0 +1,837 @@ +@@ -0,0 +1,833 @@ +/* + * Copyright 2005 Stephane Marchesin + * Copyright 2008 Stuart Bennett @@ -17611,6 +17652,8 @@ index 0000000..a09ee5e + case 0x00: + engine->instmem.init = nv04_instmem_init; + engine->instmem.takedown= nv04_instmem_takedown; ++ engine->instmem.suspend = nv04_instmem_suspend; ++ engine->instmem.resume = nv04_instmem_resume; + engine->instmem.populate = nv04_instmem_populate; + engine->instmem.clear = nv04_instmem_clear; + engine->instmem.bind = nv04_instmem_bind; @@ -17644,6 +17687,8 @@ index 0000000..a09ee5e + case 0x10: + engine->instmem.init = nv04_instmem_init; + engine->instmem.takedown= nv04_instmem_takedown; ++ engine->instmem.suspend = nv04_instmem_suspend; ++ engine->instmem.resume = nv04_instmem_resume; + engine->instmem.populate = nv04_instmem_populate; + engine->instmem.clear = nv04_instmem_clear; + engine->instmem.bind = nv04_instmem_bind; @@ -17677,6 +17722,8 @@ index 0000000..a09ee5e + case 0x20: + engine->instmem.init = nv04_instmem_init; + engine->instmem.takedown= nv04_instmem_takedown; ++ engine->instmem.suspend = nv04_instmem_suspend; ++ engine->instmem.resume = nv04_instmem_resume; + engine->instmem.populate = nv04_instmem_populate; + engine->instmem.clear = nv04_instmem_clear; + engine->instmem.bind = nv04_instmem_bind; @@ -17710,6 +17757,8 @@ index 0000000..a09ee5e + case 0x30: + engine->instmem.init = nv04_instmem_init; + engine->instmem.takedown= nv04_instmem_takedown; ++ engine->instmem.suspend = nv04_instmem_suspend; ++ engine->instmem.resume = nv04_instmem_resume; + engine->instmem.populate = nv04_instmem_populate; + engine->instmem.clear = nv04_instmem_clear; + engine->instmem.bind = nv04_instmem_bind; @@ -17744,6 +17793,8 @@ index 0000000..a09ee5e + case 0x60: + engine->instmem.init = nv04_instmem_init; + engine->instmem.takedown= nv04_instmem_takedown; ++ engine->instmem.suspend = nv04_instmem_suspend; ++ engine->instmem.resume = nv04_instmem_resume; + engine->instmem.populate = nv04_instmem_populate; + engine->instmem.clear = nv04_instmem_clear; + engine->instmem.bind = nv04_instmem_bind; @@ -18033,9 +18084,6 @@ index 0000000..a09ee5e +#endif +} + -+#define NV40_CHIPSET_MASK 0x00000baf -+#define NV44_CHIPSET_MASK 0x00005450 -+ +int nouveau_load(struct drm_device *dev, unsigned long flags) +{ + struct drm_nouveau_private *dev_priv; @@ -18091,45 +18139,34 @@ index 0000000..a09ee5e + architecture = 0x04; + } + -+ if (architecture >= 0x80) { ++ if (architecture >= 0x80) + dev_priv->card_type = NV_50; -+ } else if (architecture >= 0x60) { -+ /* FIXME we need to figure out who's who for NV6x */ -+ dev_priv->card_type = NV_44; -+ } else if (architecture >= 0x50) { ++ else if (architecture >= 0x60) ++ dev_priv->card_type = NV_40; ++ else if (architecture >= 0x50) + dev_priv->card_type = NV_50; -+ } else if (architecture >= 0x40) { -+ uint8_t subarch = architecture & 0xf; -+ /* Selection criteria borrowed from NV40EXA */ -+ if (NV40_CHIPSET_MASK & (1 << subarch)) { -+ dev_priv->card_type = NV_40; -+ } else if (NV44_CHIPSET_MASK & (1 << subarch)) { -+ dev_priv->card_type = NV_44; -+ } else { -+ dev_priv->card_type = NV_UNKNOWN; -+ } -+ } else if (architecture >= 0x30) { ++ else if (architecture >= 0x40) ++ dev_priv->card_type = NV_40; ++ else if (architecture >= 0x30) + dev_priv->card_type = NV_30; -+ } else if (architecture >= 0x20) { ++ else if (architecture >= 0x20) + dev_priv->card_type = NV_20; -+ } else if (architecture >= 0x17) { ++ else if (architecture >= 0x17) + dev_priv->card_type = NV_17; -+ } else if (architecture >= 0x11) { ++ else if (architecture >= 0x11) + dev_priv->card_type = NV_11; -+ } else if (architecture >= 0x10) { ++ else if (architecture >= 0x10) + dev_priv->card_type = NV_10; -+ } else if (architecture >= 0x04) { ++ else if (architecture >= 0x04) + dev_priv->card_type = NV_04; -+ } else { ++ else + dev_priv->card_type = NV_UNKNOWN; -+ } + + NV_INFO(dev, "Detected an NV%d generation card (0x%08x)\n", -+ dev_priv->card_type, reg0); ++ dev_priv->card_type, reg0); + -+ if (dev_priv->card_type == NV_UNKNOWN) { ++ if (dev_priv->card_type == NV_UNKNOWN) + return -EINVAL; -+ } + + /* map larger RAMIN aperture on NV40 cards */ + dev_priv->ramin = NULL; @@ -21061,10 +21098,10 @@ index 0000000..6a0f4d3 + diff --git a/drivers/gpu/drm/nouveau/nv04_instmem.c b/drivers/gpu/drm/nouveau/nv04_instmem.c new file mode 100644 -index 0000000..883e6dd +index 0000000..74fde48 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv04_instmem.c -@@ -0,0 +1,182 @@ +@@ -0,0 +1,192 @@ +#include "drmP.h" +#include "drm.h" +#include "nouveau_drv.h" @@ -21139,7 +21176,6 @@ index 0000000..883e6dd + switch(dev_priv->card_type) + { + case NV_40: -+ case NV_44: + dev_priv->ramfc_offset = 0x20000; + dev_priv->ramfc_size = engine->fifo.channels * + nouveau_fifo_ctx_size(dev); @@ -21247,6 +21283,17 @@ index 0000000..883e6dd +{ +} + ++int ++nv04_instmem_suspend(struct drm_device *dev) ++{ ++ return 0; ++} ++ ++void ++nv04_instmem_resume(struct drm_device *dev) ++{ ++} ++ diff --git a/drivers/gpu/drm/nouveau/nv04_mc.c b/drivers/gpu/drm/nouveau/nv04_mc.c new file mode 100644 index 0000000..617ed1e @@ -53465,7 +53512,7 @@ index 0000000..9abaa72 +#endif diff --git a/drivers/gpu/drm/nouveau/nv50_instmem.c b/drivers/gpu/drm/nouveau/nv50_instmem.c new file mode 100644 -index 0000000..6761e3a +index 0000000..062d085 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv50_instmem.c @@ -0,0 +1,499 @@ @@ -53788,7 +53835,7 @@ index 0000000..6761e3a + struct nouveau_gpuobj *ramin = chan->ramin->gpuobj; + int i; + -+ ramin->im_backing_suspend = kmalloc(ramin->im_pramin->size, GFP_KERNEL); ++ ramin->im_backing_suspend = vmalloc(ramin->im_pramin->size); + if (!ramin->im_backing_suspend) + return -ENOMEM; + @@ -53809,7 +53856,7 @@ index 0000000..6761e3a + nv_wr32(dev, NV50_PUNK_BAR0_PRAMIN, (ramin->im_backing_start >> 16)); + for (i = 0; i < ramin->im_pramin->size; i += 4) + BAR0_WI32(ramin, i, ramin->im_backing_suspend[i/4]); -+ kfree(ramin->im_backing_suspend); ++ vfree(ramin->im_backing_suspend); + ramin->im_backing_suspend = NULL; + + /* Poke the relevant regs, and pray it works :) */ @@ -54798,10 +54845,10 @@ index 0000000..90623b0 + +#endif diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c -index c1c407f..cbdfbd2 100644 +index 6538d42..ebc9532 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c -@@ -90,6 +90,7 @@ int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible) +@@ -89,6 +89,7 @@ int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo, bool interruptible) } return 0; } @@ -54809,7 +54856,7 @@ index c1c407f..cbdfbd2 100644 static void ttm_bo_add_to_lru(struct ttm_buffer_object *bo) { -@@ -811,6 +812,7 @@ int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait) +@@ -843,6 +844,7 @@ int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait) return ret; } @@ -54817,7 +54864,7 @@ index c1c407f..cbdfbd2 100644 int ttm_bo_move_buffer(struct ttm_buffer_object *bo, uint32_t proposed_placement, -@@ -1593,12 +1595,14 @@ int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait) +@@ -1628,12 +1630,14 @@ int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait) ttm_bo_unreserve(bo); return ret; } Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1677 retrieving revision 1.1678 diff -u -p -r1.1677 -r1.1678 --- kernel.spec 31 Jul 2009 01:00:04 -0000 1.1677 +++ kernel.spec 31 Jul 2009 01:15:46 -0000 1.1678 @@ -1935,6 +1935,9 @@ fi # and build. %changelog +* Fri Jul 31 2009 Ben Skeggs +- nouveau: build against 2.6.31-rc4-git6, fix script parsing on some G8x chips + * Thu Jul 30 2009 Chuck Ebbert - Linux 2.6.31-rc4-git6 New config item: CONFIG_BATTERY_DS2782 is not set From pkgdb at fedoraproject.org Fri Jul 31 01:17:48 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 01:17:48 +0000 Subject: [pkgdb] liberation-fonts had acl change status Message-ID: <20090731011748.CB0FB10F88F@bastion2.fedora.phx.redhat.com> cchance has set the watchbugzilla acl on liberation-fonts (Fedora devel) to Approved for petersen To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/liberation-fonts From roma at fedoraproject.org Fri Jul 31 01:22:41 2009 From: roma at fedoraproject.org (Paulo Roma Cavalcanti) Date: Fri, 31 Jul 2009 01:22:41 +0000 (UTC) Subject: rpms/kradio4/devel import.log, NONE, 1.1 kradio4.spec, NONE, 1.1 pulse.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731012241.7CF9011C00D3@cvs1.fedora.phx.redhat.com> Author: roma Update of /cvs/pkgs/rpms/kradio4/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8086/devel Modified Files: .cvsignore sources Added Files: import.log kradio4.spec pulse.patch Log Message: Initial build for F12. --- NEW FILE import.log --- kradio4-4_0_0-1_fc10:HEAD:kradio4-4.0.0-1.fc10.src.rpm:1249003321 --- NEW FILE kradio4.spec --- Name: kradio4 License: GPLv2 Summary: V4L/V4L2-Radio Application for KDE4 Version: 4.0.0 Release: 1%{?dist} Url: http://kradio.sourceforge.net/ Group: Applications/Multimedia Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 # Generate a doxygen documentation of the code Source1: Doxyfile.tar.gz # Provide pulseaudio support to kradio4 Patch0: pulse.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Buildrequires: cmake >= 2.6.2 Buildrequires: alsa-lib-devel Buildrequires: gettext flex doxygen graphviz dbus-devel Buildrequires: kdelibs-devel >= 4.2 Buildrequires: lirc-devel Buildrequires: libsndfile-devel Buildrequires: libogg-devel Buildrequires: libvorbis-devel %description KRadio is a comfortable radio application for KDE4 with support for V4L and V4L2 radio card drivers. KRadio currently provides: * V4L/V4L2 Radio support * Remote Control support (LIRC) * Alarms, Sleep Countdown * Several GUI Controls (Docking Menu, Station Quickbar, Radio Display) * Timeshifter Capability * Recording Capabilities (mp3, ogg/vorbis, wav, ...) * Extendable Plugin Architecture This Package also includes a growing collection of station preset files for many cities around the world contributed by KRadio Users. As KRadio is based on an extendable plugin architecture, contributions of new plugins (e.g. Internet Radio Streams, new cool GUIs) are welcome. %prep %setup -q -a 1 %patch0 -p1 -b .pulse iconv -f iso8859-1 -t utf8 TODO -o TODO.txt touch -r TODO TODO.txt mv TODO.txt TODO %build %cmake_kde4 make %{?_smp_mflags} doxygen %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} find %{_builddir} -type f -name '*.map' -a -size 0 -exec rm -f {} \; find %{_builddir} -type f -name installdox -exec rm -f {} \; mkdir -p %{buildroot}%{_kde4_datadir}/doc/HTML/en/%{name} cp -R %{_builddir}/%{name}-%{version}/html/* \ %{buildroot}%{_kde4_datadir}/doc/HTML/en/%{name} %find_lang %{name}.\* %check desktop-file-validate %{buildroot}/%{_kde4_datadir}/applications/kde4/%{name}.desktop %clean rm -rf %{buildroot} %post touch --no-create %{_kde4_datadir}/icons/hicolor &>/dev/null || : touch --no-create %{_kde4_datadir}/icons/locolor &>/dev/null || : %postun if [ $1 -eq 0 ] ; then touch --no-create %{_kde4_datadir}/icons/hicolor &>/dev/null touch --no-create %{_kde4_datadir}/icons/locolor &>/dev/null gtk-update-icon-cache %{_kde4_datadir}/icons/hicolor &>/dev/null || : gtk-update-icon-cache %{_kde4_datadir}/icons/locolor &>/dev/null || : fi %posttrans gtk-update-icon-cache %{_kde4_datadir}/icons/hicolor &>/dev/null || : gtk-update-icon-cache %{_kde4_datadir}/icons/locolor &>/dev/null || : %files -f %{name}.\*.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog FAQ INSTALL dot-lircrc.example %doc README README.* REQUIREMENTS TODO TODO.kdetestscripts %{_bindir}/%{name} %{_libdir}/%{name} %{_kde4_datadir}/icons/hicolor/*/*/* %{_kde4_datadir}/icons/locolor/*/*/* %{_kde4_datadir}/kde4/apps/%{name} %{_kde4_datadir}/applications/kde4/%{name}.desktop %{_kde4_datadir}/doc/HTML/en/%{name} %exclude %{_kde4_datadir}/doc/%{name} %changelog * Mon Jun 01 2009 Paulo Roma - 4.0.0-1 - Updated to 4.0.0 final. - Removed %%{rel} macro. * Sun May 31 2009 Paulo Roma - 4.0.0-0.12.r889.20090531 - Updated to snapshot 889. - Using bundled desktop entry. - Converted TODO to utf8. * Fri May 29 2009 Paulo Roma - 4.0.0-0.11.r883.20090514 - Removed BR ffmpeg/libmms for Fedora version. * Fri May 29 2009 Paulo Roma - 4.0.0-0.10.r883.20090514 - Using kde4 macros. - Not copying icon to /usr/share/pixmaps. - Created check, post, postun and posttrans sections. - Using %%cmake_kde4. * Sat May 14 2009 Paulo Roma - 4.0.0-0.9.r883.20090514 - Updated to snapshot 883. - Fixed mute/umute again. - Changed "pulse" for "default" in the pulse patch. * Fri May 08 2009 Paulo Roma - 4.0.0-0.9.r869.20090508 - Updated to snapshot 869. - Fixed segfault when reading my .lircrc without a lirc running. * Fri May 01 2009 Paulo Roma - 4.0.0-0.9.r861.20090501 - Updated to snapshot 861. - Fixed internet radio mute/unmute when quiting. - Patched for using pulse audio for playing back. * Fri May 01 2009 Paulo Roma - 4.0.0-0.8.rc4 - Updated to 4.0.0-rc4. - Removed unneeded BR strigi-devel. * Tue Apr 26 2009 Paulo Roma - 4.0.0-0.7.rc3 - Updated to 4.0.0-rc3. * Tue Apr 14 2009 Paulo Roma - 4.0.0-0.7.r829.20090411 - Using %%cmake. Rpaths removed automatically. - Changed Source URL. * Fri Apr 11 2009 Paulo Roma - 4.0.0-0.6.r829.20090411 - Updated to snapshot 829. - Removed already applied mute patch. * Fri Apr 10 2009 Paulo Roma - 4.0.0-0.5.r827.20090410 - Updated to snapshot 827. svn co https://kradio.svn.sourceforge.net/svnroot/kradio/trunk kradio - Removed obsolete flag.patch - Created mute patch for unmuting after power off/power on. * Fri Apr 10 2009 Paulo Roma - 4.0.0-0.4.rc2 - Updated to 4.0.0-rc2 * Thu Apr 02 2009 Paulo Roma - 4.0.0-0.3.rc1 - Added BR strigi-devel and libmms-devel for internet radio plugin. - Updated to 4.0.0-rc1 * Fri Mar 31 2009 Paulo Roma - 4.0.0-0.1.r778.20090322 - Added BR alsa-lib-devel. * Fri Mar 27 2009 Paulo Roma - 4.0-0.1.r778.20090322 - Updated to kradio4-snapshot-2009-03-22-r778. - Rewritten spec file. * Wed Jun 11 2008 Paulo Roma - r497.20061112-4 - Changed BRs qt-devel for qt3-devel and kdelibs-devel for kdelibs3-devel. - Patched for lirc support in F9. * Fri May 09 2008 Paulo Roma - r497.20061112-3 - Removed unneeded Requires. - Using find_lang. - Disabled rpath. - Removed empty files. * Sun Feb 04 2007 Paulo Roma - r497.20061112-2.1 - Created Doxyfile for generating html docs and man pages. - Added missing BRs. * Sat Feb 03 2007 Paulo Roma - r497.20061112-2 - Rebuilt for Fedora 6. - Using unsermake. - Updated to r497.20061112 * Wed Feb 08 2006 Paulo Roma - r497.20061112-1 - Initial spec file. pulse.patch: alsa-sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE pulse.patch --- diff -Naur kradio4-snapshot-2009-05-01-r861/plugins/alsa-sound/alsa-sound.cpp kradio4-snapshot-2009-05-01-r861-new/plugins/alsa-sound/alsa-sound.cpp --- kradio4-snapshot-2009-05-01-r861/plugins/alsa-sound/alsa-sound.cpp 2009-05-01 10:05:52.000000000 -0300 +++ kradio4-snapshot-2009-05-01-r861-new/plugins/alsa-sound/alsa-sound.cpp 2009-05-02 06:02:21.000000000 -0300 @@ -721,7 +721,7 @@ setWaitForMinPlaybackBufferFill(66/*percent*/); - QString dev = QString("plughw:%1,%2").arg(m_PlaybackCard).arg(m_PlaybackDevice); + QString dev = "default"; bool error = !openAlsaDevice(m_hPlayback, m_PlaybackFormat, dev.toLocal8Bit(), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK, m_PlaybackLatency); if (!error) { Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kradio4/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 2 Jun 2009 21:31:38 -0000 1.1 +++ .cvsignore 31 Jul 2009 01:22:41 -0000 1.2 @@ -0,0 +1,2 @@ +Doxyfile.tar.gz +kradio4-4.0.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kradio4/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 2 Jun 2009 21:31:38 -0000 1.1 +++ sources 31 Jul 2009 01:22:41 -0000 1.2 @@ -0,0 +1,2 @@ +f3d33d2e61fea9e1ce4e6d5286d5f295 Doxyfile.tar.gz +fe19f793e272bdac1081a880557b5cd2 kradio4-4.0.0.tar.bz2 From airlied at fedoraproject.org Fri Jul 31 01:23:28 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 01:23:28 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess-vga-arbiter.patch, NONE, 1.1 libpciaccess.spec, 1.19, 1.20 Message-ID: <20090731012328.7ACC611C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8420 Modified Files: libpciaccess.spec Added Files: libpciaccess-vga-arbiter.patch Log Message: * Fri Jul 31 2009 Dave Airlie 0.10.6-2 - libpciaccess-vga-arbiter.patch: add vga arbiter support to libpciaccess libpciaccess-vga-arbiter.patch: include/pciaccess.h | 53 ++++++++++ src/Makefile.am | 7 + src/common_interface.c | 15 ++ src/common_vgaarb.c | 245 +++++++++++++++++++++++++++++++++++++++++++++++ src/common_vgaarb_stub.c | 73 ++++++++++++++ src/linux_sysfs.c | 21 ++++ src/pciaccess_private.h | 3 7 files changed, 417 insertions(+) --- NEW FILE libpciaccess-vga-arbiter.patch --- diff --git a/include/pciaccess.h b/include/pciaccess.h index 6413ae0..9d68a08 100644 --- a/include/pciaccess.h +++ b/include/pciaccess.h @@ -21,6 +21,31 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ +/* + * Copyright (c) 2007 Paulo R. Zanoni, Tiago Vignatti + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + */ /** * \file pciaccess.h @@ -50,6 +75,8 @@ struct pci_slot_match; extern "C" { #endif +int pci_device_has_kernel_driver(struct pci_device *dev); + int pci_device_is_boot_vga(struct pci_device *dev); int pci_device_read_rom(struct pci_device *dev, void *buffer); @@ -350,6 +377,11 @@ struct pci_device { * the \c pci_device structure. */ intptr_t user_data; + + /** + * Used by the VGA arbiter. Type of resource decoded by the device and + * the file descriptor (/dev/vga_arbiter). */ + int vgaarb_rsrc; }; @@ -449,4 +481,25 @@ struct pci_pcmcia_bridge_info { }; + +/** + * VGA Arbiter definitions, functions and related. + */ + +/* Legacy VGA regions */ +#define VGA_ARB_RSRC_NONE 0x00 +#define VGA_ARB_RSRC_LEGACY_IO 0x01 +#define VGA_ARB_RSRC_LEGACY_MEM 0x02 +/* Non-legacy access */ +#define VGA_ARB_RSRC_NORMAL_IO 0x04 +#define VGA_ARB_RSRC_NORMAL_MEM 0x08 + +int pci_device_vgaarb_init (void); +void pci_device_vgaarb_fini (void); +int pci_device_vgaarb_set_target (struct pci_device *dev); +int pci_device_vgaarb_decodes (struct pci_device *dev, int new_vga_rsrc); +int pci_device_vgaarb_lock (struct pci_device *dev); +int pci_device_vgaarb_trylock (struct pci_device *dev); +int pci_device_vgaarb_unlock (struct pci_device *dev); + #endif /* PCIACCESS_H */ diff --git a/src/Makefile.am b/src/Makefile.am index 14f2e48..0de6894 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -45,6 +45,12 @@ if SOLARIS OS_SUPPORT = solx_devfs.c pci_tools.h endif +if LINUX +VGA_ARBITER = common_vgaarb.c +else +VGA_ARBITER = common_vgaarb_stub.c +endif + libpciaccess_la_SOURCES = common_bridge.c \ common_iterator.c \ common_init.c \ @@ -53,6 +59,7 @@ libpciaccess_la_SOURCES = common_bridge.c \ common_device_name.c \ common_map.c \ pciaccess_private.h \ + $(VGA_ARBITER) \ $(OS_SUPPORT) INCLUDES = -I$(top_srcdir)/include diff --git a/src/common_interface.c b/src/common_interface.c index 5dcc707..d46feab 100644 --- a/src/common_interface.c +++ b/src/common_interface.c @@ -124,6 +124,21 @@ pci_device_is_boot_vga( struct pci_device * dev ) } /** + * Probe a PCI device to determine if a kernel driver is attached. + * + * \param dev Device to query + * \return + * Zero if no driver attached, 1 if attached kernel drviver + */ +int +pci_device_has_kernel_driver( struct pci_device * dev ) +{ + if (!pci_sys->methods->has_kernel_driver) + return 0; + return pci_sys->methods->has_kernel_driver( dev ); +} + +/** * Probe a PCI device to learn information about the device. * * Probes a PCI device to learn various information about the device. Before diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c new file mode 100644 index 0000000..302b89d --- /dev/null +++ b/src/common_vgaarb.c @@ -0,0 +1,245 @@ +/* + * Copyright (c) 2007 Paulo R. Zanoni, Tiago Vignatti + * 2009 Tiago Vignatti + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "pciaccess.h" +#include "pciaccess_private.h" + +#define BUFSIZE 64 + +int +pci_device_vgaarb_init(void) +{ + if ((pci_sys->vgaarb_fd = open ("/dev/vga_arbiter", O_RDWR)) < 0) { + return errno; + } + + return 0; +} + +void +pci_device_vgaarb_fini(void) +{ + close(pci_sys->vgaarb_fd); +} + +/** + * Writes message on vga device. The messages are defined by the kernel + * implementation. + * + * \param fd vga arbiter device. + * \param buf message itself. + * \param len message length. + * + * \return + * Zero on success, 1 if something gets wrong and 2 if fd is busy (only for + * 'trylock') + */ +static int +vgaarb_write(int fd, char *buf, int len) +{ + int ret; + + + buf[len] = '\0'; + + ret = write(fd, buf, len); + if (ret == -1) { + /* the user may have called "trylock" and didn't get the lock */ + if (errno == EBUSY) + return 2; + +#ifdef DEBUG + fprintf(stderr, "write error"); +#endif + return 1; + } + else if (ret != len) { + /* it's need to receive the exactly amount required. */ +#ifdef DEBUG + fprintf(stderr, "write error: wrote different than expected\n"); +#endif + return 1; + } + +#ifdef DEBUG + fprintf(stderr, "%s: successfully wrote: '%s'\n", __FUNCTION__, buf); +#endif + + return 0; +} + +static int +parse_string_to_decodes_rsrc(char *input, int *vga_count) +{ + char *tok; + char count[16]; + + strncpy(count, input, 10); + count[11] = 0; + + tok = strtok(count,":"); + if (!tok) + goto fail; + tok = strtok(NULL, ""); + if (!tok) + goto fail; + + *vga_count = strtoul(tok, NULL, 10); + if (*vga_count == LONG_MAX) + goto fail; + +#ifdef DEBUG + fprintf(stderr,"vga count is %d\n", *vga_count); +#endif + + tok = strtok(input, ","); + if (!tok) + goto fail; + + tok = strtok(NULL, ","); + if (!tok) + goto fail; + tok = strtok(tok, "="); + if (!tok) + goto fail; + tok = strtok(NULL, "="); + if (!tok) + goto fail; + + if (!strncmp(tok, "io+mem", 6)) + return VGA_ARB_RSRC_LEGACY_IO | VGA_ARB_RSRC_LEGACY_MEM; + if (!strncmp(tok, "io", 2)) + return VGA_ARB_RSRC_LEGACY_IO; + if (!strncmp(tok, "mem", 3)) + return VGA_ARB_RSRC_LEGACY_MEM; +fail: + return VGA_ARB_RSRC_NONE; +} + +static const char * +rsrc_to_str(int iostate) +{ + switch (iostate) { + case VGA_ARB_RSRC_LEGACY_IO | VGA_ARB_RSRC_LEGACY_MEM: + return "io+mem"; + case VGA_ARB_RSRC_LEGACY_IO: + return "io"; + case VGA_ARB_RSRC_LEGACY_MEM: + return "mem"; + } + + return "none"; +} + +int +pci_device_vgaarb_set_target(struct pci_device *dev) +{ + int len; + char buf[BUFSIZE]; + int ret; + + len = snprintf(buf, BUFSIZE, "target PCI:%d:%d:%d.%d", + dev->domain, dev->bus, dev->dev, dev->func); + + ret = vgaarb_write(pci_sys->vgaarb_fd, buf, len); + if (ret) + return ret; + + ret = read(pci_sys->vgaarb_fd, buf, BUFSIZE); + if (ret <= 0) + return -1; + + dev->vgaarb_rsrc = parse_string_to_decodes_rsrc(buf, &pci_sys->vga_count); + return 0; +} + +int +pci_device_vgaarb_decodes(struct pci_device *dev, int new_vgaarb_rsrc) +{ + int len; + char buf[BUFSIZE]; + int ret; + + if (dev->vgaarb_rsrc == new_vgaarb_rsrc) + return 0; + + len = snprintf(buf, BUFSIZE, "decodes %s", rsrc_to_str(dev->vgaarb_rsrc)); + ret = vgaarb_write(pci_sys->vgaarb_fd, buf, len); + if (ret == 0) + dev->vgaarb_rsrc = new_vgaarb_rsrc; + return ret; +} + +int +pci_device_vgaarb_lock(struct pci_device *dev) +{ + int len; + char buf[BUFSIZE]; + + if (dev->vgaarb_rsrc == 0 || pci_sys->vga_count == 1) + return 0; + + len = snprintf(buf, BUFSIZE, "lock %s", rsrc_to_str(dev->vgaarb_rsrc)); + + return vgaarb_write(pci_sys->vgaarb_fd, buf, len); +} + +int +pci_device_vgaarb_trylock(struct pci_device *dev) +{ + int len; + char buf[BUFSIZE]; + + if (dev->vgaarb_rsrc == 0 || pci_sys->vga_count == 1) + return 0; + + len = snprintf(buf, BUFSIZE, "trylock %s", rsrc_to_str(dev->vgaarb_rsrc)); + + return vgaarb_write(pci_sys->vgaarb_fd, buf, len); +} + +int +pci_device_vgaarb_unlock(struct pci_device *dev) +{ + int len; + char buf[BUFSIZE]; + + if (dev->vgaarb_rsrc == 0 || pci_sys->vga_count == 1) + return 0; + + len = snprintf(buf, BUFSIZE, "unlock %s", rsrc_to_str(dev->vgaarb_rsrc)); + + return vgaarb_write(pci_sys->vgaarb_fd, buf, len); +} diff --git a/src/common_vgaarb_stub.c b/src/common_vgaarb_stub.c new file mode 100644 index 0000000..5fc5dfe --- /dev/null +++ b/src/common_vgaarb_stub.c @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2009 Tiago Vignatti + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + */ + +#include +#include "pciaccess.h" + +int +pci_device_vgaarb_init(struct pci_device *dev) +{ +#ifdef DEBUG + fprintf(stderr, "%s: You're using VGA arbiter stub functions!\n", + __FUNCTION__); +#endif + return 0; +} + +void +pci_device_vgaarb_fini(struct pci_device *dev) +{ +} + +int +pci_device_vgaarb_set_target(struct pci_device *dev) +{ + return 0; +} + +int +pci_device_vgaarb_decodes(struct pci_device *dev) +{ + return 0; +} + +int +pci_device_vgaarb_lock(struct pci_device *dev) +{ + return 0; +} + +int +pci_device_vgaarb_trylock(struct pci_device *dev) +{ + return 0; +} + +int +pci_device_vgaarb_unlock(struct pci_device *dev) +{ + return 0; +} diff --git a/src/linux_sysfs.c b/src/linux_sysfs.c index 1ae9e52..65e1cf6 100644 --- a/src/linux_sysfs.c +++ b/src/linux_sysfs.c @@ -76,6 +76,7 @@ static int pci_device_linux_sysfs_write( struct pci_device * dev, pciaddr_t * bytes_written ); static int pci_device_linux_sysfs_boot_vga( struct pci_device * dev ); +static int pci_device_linux_sysfs_has_kernel_driver(struct pci_device *dev); static const struct pci_system_methods linux_sysfs_methods = { .destroy = NULL, @@ -91,6 +92,7 @@ static const struct pci_system_methods linux_sysfs_methods = { .fill_capabilities = pci_fill_capabilities_generic, .enable = pci_device_linux_sysfs_enable, .boot_vga = pci_device_linux_sysfs_boot_vga, + .has_kernel_driver = pci_device_linux_sysfs_has_kernel_driver, }; #define SYS_BUS_PCI "/sys/bus/pci/devices" @@ -729,3 +731,22 @@ out: close(fd); return ret; } + +static int pci_device_linux_sysfs_has_kernel_driver(struct pci_device *dev) +{ + char name[256]; + struct stat dummy; + int ret; + + snprintf( name, 255, "%s/%04x:%02x:%02x.%1u/driver", + SYS_BUS_PCI, + dev->domain, + dev->bus, + dev->dev, + dev->func ); + + ret = stat(name, &dummy); + if (ret < 0) + return 0; + return 1; +} diff --git a/src/pciaccess_private.h b/src/pciaccess_private.h index 769e181..b97d31b 100644 --- a/src/pciaccess_private.h +++ b/src/pciaccess_private.h @@ -61,6 +61,7 @@ struct pci_system_methods { int (*fill_capabilities)( struct pci_device * dev ); void (*enable)( struct pci_device *dev ); int (*boot_vga)( struct pci_device *dev ); + int (*has_kernel_driver)( struct pci_device *dev ); }; struct pci_device_mapping { @@ -131,6 +132,8 @@ struct pci_system { #ifdef HAVE_MTRR int mtrr_fd; #endif + int vgaarb_fd; + int vga_count; }; extern struct pci_system * pci_sys; Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- libpciaccess.spec 27 Jul 2009 05:17:15 -0000 1.19 +++ libpciaccess.spec 31 Jul 2009 01:23:28 -0000 1.20 @@ -3,7 +3,7 @@ Name: libpciaccess Version: 0.10.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PCI access library Group: System Environment/Libraries @@ -20,6 +20,7 @@ BuildRoot: %{_tmppath}/%{name}-%{ve Patch0: libpciaccess-fd-cache.patch Patch2: libpciaccess-rom-size.patch Patch3: libpciaccess-boot-vga.patch +Patch4: libpciaccess-vga-arbiter.patch BuildRequires: autoconf automake libtool pkgconfig Requires: hwdata @@ -42,6 +43,7 @@ Development package for libpciaccess. %patch0 -p1 -b .cache %patch2 -p1 -b .rom-size %patch3 -p1 -b .bootvga +%patch4 -p1 -b .vgaarb %build #autoreconf -v --install @@ -72,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pciaccess.pc %changelog +* Fri Jul 31 2009 Dave Airlie 0.10.6-2 +- libpciaccess-vga-arbiter.patch: add vga arbiter support to libpciaccess + * Mon Jul 27 2009 Dave Airlie 0.10.6-1 - rebase to latest release (will do release with VGA bits later) - libpciaccess-boot-vga.patch: add boot vga patch from upstream From airlied at fedoraproject.org Fri Jul 31 01:31:29 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 01:31:29 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess-vga-arbiter.patch,1.1,1.2 Message-ID: <20090731013129.C474E11C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10907 Modified Files: libpciaccess-vga-arbiter.patch Log Message: damn fuzz libpciaccess-vga-arbiter.patch: include/pciaccess.h | 53 ++++++++++ src/Makefile.am | 7 + src/common_interface.c | 15 ++ src/common_vgaarb.c | 245 +++++++++++++++++++++++++++++++++++++++++++++++ src/common_vgaarb_stub.c | 73 ++++++++++++++ src/linux_sysfs.c | 21 ++++ src/pciaccess_private.h | 3 7 files changed, 417 insertions(+) Index: libpciaccess-vga-arbiter.patch =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess-vga-arbiter.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libpciaccess-vga-arbiter.patch 31 Jul 2009 01:23:28 -0000 1.1 +++ libpciaccess-vga-arbiter.patch 31 Jul 2009 01:31:29 -0000 1.2 @@ -1,7 +1,6 @@ -diff --git a/include/pciaccess.h b/include/pciaccess.h -index 6413ae0..9d68a08 100644 ---- a/include/pciaccess.h -+++ b/include/pciaccess.h +diff -up libpciaccess-0.10.6/include/pciaccess.h.da libpciaccess-0.10.6/include/pciaccess.h +--- libpciaccess-0.10.6/include/pciaccess.h.da 2009-07-31 11:29:24.000000000 +1000 ++++ libpciaccess-0.10.6/include/pciaccess.h 2009-07-31 11:29:36.000000000 +1000 @@ -21,6 +21,31 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. @@ -81,36 +80,10 @@ index 6413ae0..9d68a08 100644 +int pci_device_vgaarb_unlock (struct pci_device *dev); + #endif /* PCIACCESS_H */ -diff --git a/src/Makefile.am b/src/Makefile.am -index 14f2e48..0de6894 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -45,6 +45,12 @@ if SOLARIS - OS_SUPPORT = solx_devfs.c pci_tools.h - endif - -+if LINUX -+VGA_ARBITER = common_vgaarb.c -+else -+VGA_ARBITER = common_vgaarb_stub.c -+endif -+ - libpciaccess_la_SOURCES = common_bridge.c \ - common_iterator.c \ - common_init.c \ -@@ -53,6 +59,7 @@ libpciaccess_la_SOURCES = common_bridge.c \ - common_device_name.c \ - common_map.c \ - pciaccess_private.h \ -+ $(VGA_ARBITER) \ - $(OS_SUPPORT) - - INCLUDES = -I$(top_srcdir)/include -diff --git a/src/common_interface.c b/src/common_interface.c -index 5dcc707..d46feab 100644 ---- a/src/common_interface.c -+++ b/src/common_interface.c -@@ -124,6 +124,21 @@ pci_device_is_boot_vga( struct pci_device * dev ) +diff -up libpciaccess-0.10.6/src/common_interface.c.da libpciaccess-0.10.6/src/common_interface.c +--- libpciaccess-0.10.6/src/common_interface.c.da 2009-07-31 11:29:24.000000000 +1000 ++++ libpciaccess-0.10.6/src/common_interface.c 2009-07-31 11:29:36.000000000 +1000 +@@ -124,6 +124,21 @@ pci_device_is_boot_vga( struct pci_devic } /** @@ -132,11 +105,9 @@ index 5dcc707..d46feab 100644 * Probe a PCI device to learn information about the device. * * Probes a PCI device to learn various information about the device. Before -diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c -new file mode 100644 -index 0000000..302b89d ---- /dev/null -+++ b/src/common_vgaarb.c +diff -up /dev/null libpciaccess-0.10.6/src/common_vgaarb.c +--- /dev/null 2009-07-28 15:36:51.159175345 +1000 ++++ libpciaccess-0.10.6/src/common_vgaarb.c 2009-07-31 11:29:36.000000000 +1000 @@ -0,0 +1,245 @@ +/* + * Copyright (c) 2007 Paulo R. Zanoni, Tiago Vignatti @@ -383,11 +354,9 @@ index 0000000..302b89d + + return vgaarb_write(pci_sys->vgaarb_fd, buf, len); +} -diff --git a/src/common_vgaarb_stub.c b/src/common_vgaarb_stub.c -new file mode 100644 -index 0000000..5fc5dfe ---- /dev/null -+++ b/src/common_vgaarb_stub.c +diff -up /dev/null libpciaccess-0.10.6/src/common_vgaarb_stub.c +--- /dev/null 2009-07-28 15:36:51.159175345 +1000 ++++ libpciaccess-0.10.6/src/common_vgaarb_stub.c 2009-07-31 11:29:36.000000000 +1000 @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2009 Tiago Vignatti @@ -462,19 +431,18 @@ index 0000000..5fc5dfe +{ + return 0; +} -diff --git a/src/linux_sysfs.c b/src/linux_sysfs.c -index 1ae9e52..65e1cf6 100644 ---- a/src/linux_sysfs.c -+++ b/src/linux_sysfs.c -@@ -76,6 +76,7 @@ static int pci_device_linux_sysfs_write( struct pci_device * dev, +diff -up libpciaccess-0.10.6/src/linux_sysfs.c.da libpciaccess-0.10.6/src/linux_sysfs.c +--- libpciaccess-0.10.6/src/linux_sysfs.c.da 2009-07-31 11:29:24.000000000 +1000 ++++ libpciaccess-0.10.6/src/linux_sysfs.c 2009-07-31 11:29:36.000000000 +1000 +@@ -78,6 +78,7 @@ static int pci_device_linux_sysfs_write( pciaddr_t * bytes_written ); static int pci_device_linux_sysfs_boot_vga( struct pci_device * dev ); +static int pci_device_linux_sysfs_has_kernel_driver(struct pci_device *dev); static const struct pci_system_methods linux_sysfs_methods = { - .destroy = NULL, -@@ -91,6 +92,7 @@ static const struct pci_system_methods linux_sysfs_methods = { + .destroy = pci_device_linux_sysfs_destroy, +@@ -93,6 +94,7 @@ static const struct pci_system_methods l .fill_capabilities = pci_fill_capabilities_generic, .enable = pci_device_linux_sysfs_enable, .boot_vga = pci_device_linux_sysfs_boot_vga, @@ -482,7 +450,7 @@ index 1ae9e52..65e1cf6 100644 }; #define SYS_BUS_PCI "/sys/bus/pci/devices" -@@ -729,3 +731,22 @@ out: +@@ -761,3 +763,22 @@ out: close(fd); return ret; } @@ -505,10 +473,33 @@ index 1ae9e52..65e1cf6 100644 + return 0; + return 1; +} -diff --git a/src/pciaccess_private.h b/src/pciaccess_private.h -index 769e181..b97d31b 100644 ---- a/src/pciaccess_private.h -+++ b/src/pciaccess_private.h +diff -up libpciaccess-0.10.6/src/Makefile.am.da libpciaccess-0.10.6/src/Makefile.am +--- libpciaccess-0.10.6/src/Makefile.am.da 2009-04-18 15:01:36.000000000 +1000 ++++ libpciaccess-0.10.6/src/Makefile.am 2009-07-31 11:29:36.000000000 +1000 +@@ -45,6 +45,12 @@ if SOLARIS + OS_SUPPORT = solx_devfs.c pci_tools.h + endif + ++if LINUX ++VGA_ARBITER = common_vgaarb.c ++else ++VGA_ARBITER = common_vgaarb_stub.c ++endif ++ + libpciaccess_la_SOURCES = common_bridge.c \ + common_iterator.c \ + common_init.c \ +@@ -53,6 +59,7 @@ libpciaccess_la_SOURCES = common_bridge. + common_device_name.c \ + common_map.c \ + pciaccess_private.h \ ++ $(VGA_ARBITER) \ + $(OS_SUPPORT) + + INCLUDES = -I$(top_srcdir)/include +diff -up libpciaccess-0.10.6/src/pciaccess_private.h.da libpciaccess-0.10.6/src/pciaccess_private.h +--- libpciaccess-0.10.6/src/pciaccess_private.h.da 2009-07-31 11:29:24.000000000 +1000 ++++ libpciaccess-0.10.6/src/pciaccess_private.h 2009-07-31 11:29:36.000000000 +1000 @@ -61,6 +61,7 @@ struct pci_system_methods { int (*fill_capabilities)( struct pci_device * dev ); void (*enable)( struct pci_device *dev ); From airlied at fedoraproject.org Fri Jul 31 01:54:39 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 01:54:39 +0000 (UTC) Subject: rpms/vbetool/devel pciaccess.patch, NONE, 1.1 vgaarbpost.patch, NONE, 1.1 vbetool.spec, 1.11, 1.12 Message-ID: <20090731015439.C998811C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/vbetool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17104 Modified Files: vbetool.spec Added Files: pciaccess.patch vgaarbpost.patch Log Message: * Fri Jul 31 2009 Dave Airlie 1.2-0.1 - pciacccess.patch: post to use libpciaccess - vgaarbpost.patch: use vga arb to post secondaries pciaccess.patch: Makefile.am | 2 +- Makefile.am~ |only vbetool.c | 39 ++++++++++++++++++++------------------- vbetool.c~ |only 4 files changed, 21 insertions(+), 20 deletions(-) --- NEW FILE pciaccess.patch --- diff -ur vbetool-1.1/Makefile.am vbetool-dave/Makefile.am --- vbetool-1.1/Makefile.am 2008-05-16 22:52:33.000000000 +1000 +++ vbetool-dave/Makefile.am 2009-07-27 14:09:51.000000000 +1000 @@ -2,7 +2,7 @@ sbin_PROGRAMS = vbetool -vbetool_LDADD = $(libdir)/libpci.a +vbetool_LDADD = $(VBETOOL_LIBS) -lpciaccess -lz man_MANS = vbetool.1 vbetool_SOURCES = vbetool.c $(x86) Only in vbetool-dave: Makefile.am~ diff -ur vbetool-1.1/vbetool.c vbetool-dave/vbetool.c --- vbetool-1.1/vbetool.c 2008-05-16 22:56:30.000000000 +1000 +++ vbetool-dave/vbetool.c 2009-07-27 14:12:41.000000000 +1000 @@ -8,7 +8,7 @@ version 2 */ -#include +#include #include #include #include @@ -36,8 +36,6 @@ #define DPMS_STATE_OFF 0x0400 #define DPMS_STATE_LOW 0x0800 -static struct pci_access *pacc; - int vbetool_init (void) { if (!LRMI_init()) { fprintf(stderr, "Failed to initialise LRMI (Linux Real-Mode Interface).\n"); @@ -46,9 +44,7 @@ iopl(3); - pacc = pci_alloc(); - pacc->numeric_ids = 1; - pci_init(pacc); + pci_system_init(); return 0; } @@ -220,25 +216,30 @@ int do_post(void) { - struct pci_dev *p; unsigned int c; - unsigned int pci_id; int error; + struct pci_id_match dev_match = { + PCI_MATCH_ANY, PCI_MATCH_ANY, PCI_MATCH_ANY, PCI_MATCH_ANY, + (0x03 << 16), 0xff000, 0 }; + struct pci_device *dev, *first_dev = NULL; + struct pci_device_iterator *iter; + unsigned pci_id; - pci_scan_bus(pacc); + iter = pci_id_match_iterator_create(&dev_match); + if (iter == NULL) { + return 1; + } - for (p = pacc->devices; p; p = p->next) { - c = pci_read_word(p, PCI_CLASS_DEVICE); - if (c == 0x300) { - pci_id = - (p->bus << 8) + (p->dev << 3) + - (p->func & 0x7); - error = do_real_post(pci_id); - if (error != 0) { - return error; - } + while ((dev = pci_device_next(iter)) != NULL) { + pci_id = (dev->bus << 8) + (dev->dev << 3) + + (dev->func & 0x7); + + error = do_real_post(dev); + if (error != 0) { + return error; } } + pci_iterator_destroy(iter); return 0; } Only in vbetool-dave: vbetool.c~ vgaarbpost.patch: vbetool.c | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 72 insertions(+), 10 deletions(-) --- NEW FILE vgaarbpost.patch --- diff -up vbetool-1.1/vbetool.c.da vbetool-1.1/vbetool.c --- vbetool-1.1/vbetool.c.da 2009-07-31 11:14:18.000000000 +1000 +++ vbetool-1.1/vbetool.c 2009-07-31 11:45:39.000000000 +1000 @@ -119,7 +119,14 @@ int main(int argc, char *argv[]) MAP_FIXED|MAP_PRIVATE, romfd, 0); } - return do_post(); + return do_post(0); + } else if (!strcmp(argv[1], "bootpost")) { + int err = check_console(); + + if (err) { + return err; + } + return do_post(1); } else if (!strcmp(argv[1], "vgastate")) { if (!strcmp(argv[2], "on")) { return enable_vga(); @@ -143,7 +150,7 @@ int main(int argc, char *argv[]) } else { usage: fprintf(stderr, - "%s: Usage %s [[vbestate save|restore]|[vbemode set|get]|[vgamode]|[dpms on|off|standby|suspend|reduced]|[post [romfile]]|[vgastate on|off]|[vbefp panelid|panelsize|getbrightness|setbrightness|invert]]\n", + "%s: Usage %s [[vbestate save|restore]|[vbemode set|get]|[vgamode]|[dpms on|off|standby|suspend|reduced]|[post [romfile]]|[bootpost]|[vgastate on|off]|[vbefp panelid|panelsize|getbrightness|setbrightness|invert]]\n", argv[0], argv[0]); return 1; } @@ -214,7 +221,48 @@ int do_real_post(unsigned pci_device) return error; } -int do_post(void) +#define MAX_ROMSIZE 64*1024 +void *rom_cseg; +unsigned char romfile[MAX_ROMSIZE]; + +void setup_rom_section(void) +{ + munmap((void *)0xc0000, MAX_ROMSIZE); + rom_cseg = mmap((void *)0xc0000, MAX_ROMSIZE, PROT_READ|PROT_WRITE|PROT_EXEC, + MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); + if (!rom_cseg) { + fprintf(stdrer,"unable to setup fake rom\n"); + return -1 + } + return 0; +} + +int do_device_post(struct pci_device *dev) +{ + int error = 0; + /* need to pull the ROM file */ + unsigned int pci_id; + int ret; + + pci_device_vgaarb_set_target(dev); + pci_device_vgaarb_lock(dev); + ret = pci_device_read_rom(dev, romfile); + if (ret) { + pci_device_vgaarb_unlock(dev); + fprintf(stderr,"rom read returned %d\n"); + return 0; + } + + memcpy(rom_cseg, romfile, MAX_ROMSIZE); + + pci_id = (dev->bus << 8) + (dev->dev << 3) + + (dev->func & 0x7); + error = do_real_post(pci_id); + pci_device_vgaarb_unlock(dev); + return error; +} + +int do_post(int boot_flag) { unsigned int c; int error; @@ -225,21 +273,35 @@ int do_post(void) struct pci_device_iterator *iter; unsigned pci_id; + if (setup_rom_section()) + return -1; + + pci_device_vgaarb_init(); iter = pci_id_match_iterator_create(&dev_match); if (iter == NULL) { return 1; } - + while ((dev = pci_device_next(iter)) != NULL) { - pci_id = (dev->bus << 8) + (dev->dev << 3) + - (dev->func & 0x7); - - error = do_real_post(dev); - if (error != 0) { - return error; + if (!first_dev) + first_dev = dev; + + if (pci_device_is_boot_vga(dev) && (boot_flag == 1)) { + continue; + } + if (pci_device_has_kernel_driver(dev)) { + continue; } + error = do_device_post(dev); + if (error) + return error; } + pci_iterator_destroy(iter); + pci_device_vgaarb_set_target(first_dev); + pci_device_vgaarb_lock(first_dev); + pci_device_vgaarb_unlock(first_dev); + pci_device_vgaarb_fini(); return 0; } Index: vbetool.spec =================================================================== RCS file: /cvs/pkgs/rpms/vbetool/devel/vbetool.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- vbetool.spec 27 Jul 2009 06:44:54 -0000 1.11 +++ vbetool.spec 31 Jul 2009 01:54:39 -0000 1.12 @@ -1,6 +1,6 @@ Name: vbetool -Version: 1.1 -Release: 4%{?dist}.1 +Version: 1.2 +Release: 0.1%{?dist} Summary: Run real-mode video BIOS code to alter hardware state Group: System Environment/Base @@ -9,7 +9,9 @@ URL: http://www.codon.org.uk/ Source0: http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: libpciaccess > 0.10.6-2 BuildRequires: zlib-devel pciutils-devel libx86-devel +BuildRequires: libpciaccess-devel >= 0.10.6-2 # does not build on ppc, ppc64 and sparc arches, see #285361 (RedHat Bugzilla) # on ppc sys/io.h is missing, on ppc64 there are more complaints # build.logs are attached in the bug report @@ -17,6 +19,8 @@ ExcludeArch: ppc ppc64 %{sparc} s390 # vbetool is included in (some of) these pm-utils releases Conflicts: pm-utils <= 0.99.3-11 +Patch0: pciaccess.patch +Patch1: vgaarbpost.patch %description vbetool uses lrmi in order to run code from the video BIOS. Currently, it is @@ -26,6 +30,8 @@ initialize the video card from scratch. %prep %setup -q +%patch0 -p1 +%patch1 -p1 -b .vga %build %configure --with-x86emu @@ -49,6 +55,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Dave Airlie 1.2-0.1 +- pciacccess.patch: post to use libpciaccess +- vgaarbpost.patch: use vga arb to post secondaries + * Sun Jul 26 2009 Fedora Release Engineering - 1.1-4.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From allisson at fedoraproject.org Fri Jul 31 02:10:50 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 31 Jul 2009 02:10:50 +0000 (UTC) Subject: rpms/couchdb/devel .cvsignore, 1.3, 1.4 couchdb.spec, 1.4, 1.5 import.log, 1.3, 1.4 sources, 1.3, 1.4 couchdb-0.9.0-pid.patch, 1.1, NONE Message-ID: <20090731021050.909FA11C00D3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/couchdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21661/devel Modified Files: .cvsignore couchdb.spec import.log sources Removed Files: couchdb-0.9.0-pid.patch Log Message: Update to 0.9.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 May 2009 01:22:34 -0000 1.3 +++ .cvsignore 31 Jul 2009 02:10:49 -0000 1.4 @@ -1 +1 @@ -apache-couchdb-0.9.0.tar.gz +apache-couchdb-0.9.1.tar.gz Index: couchdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/devel/couchdb.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- couchdb.spec 24 Jul 2009 19:31:14 -0000 1.4 +++ couchdb.spec 31 Jul 2009 02:10:50 -0000 1.5 @@ -3,8 +3,8 @@ %define couchdb_group couchdb %define couchdb_home %{_localstatedir}/lib/couchdb Name: couchdb -Version: 0.9.0 -Release: 3%{?dist} +Version: 0.9.1 +Release: 1%{?dist} Summary: A document database server, accessible via a RESTful JSON API Group: Applications/Databases @@ -12,14 +12,14 @@ License: ASL 2.0 URL: http://incubator.apache.org/couchdb/ Source0: http://www.apache.org/dist/%{name}/%{version}/%{tarname}-%{version}.tar.gz Source1: %{name}.init -Patch0: couchdb-0.9.0-pid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: erlang BuildRequires: libicu-devel BuildRequires: js-devel BuildRequires: help2man -BuildRequires: libcurl-devel +#BuildRequires: libcurl-devel +BuildRequires: curl-devel Requires: erlang #Requires: %{_bindir}/icu-config Requires: libicu-devel @@ -42,7 +42,9 @@ JavaScript acting as the default view de %prep %setup -q -n %{tarname}-%{version} -%patch0 -p1 -b .pid +# Patch pid location +sed -i 's/%localstatedir%\/run\/couchdb.pid/%localstatedir%\/run\/couchdb\/couchdb.pid/g' \ +bin/couchdb.tpl.in %build @@ -74,9 +76,11 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/def # Remove unecessary files rm $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/couchdb -rm $RPM_BUILD_ROOT%{_libdir}/couchdb/erlang/lib/couch-0.9.0/priv/lib/couch_erl_driver.la rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/couchdb +# clean-up .la archives +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + %clean rm -rf $RPM_BUILD_ROOT @@ -125,6 +129,10 @@ fi %dir %attr(0755, %{couchdb_user}, root) %{_localstatedir}/lib/couchdb %changelog +* Thu Jul 30 2009 Allisson Azevedo 0.9.1-1 +- Update to 0.9.1. +- Drop couchdb-0.9.0-pid.patch. + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 8 May 2009 00:24:43 -0000 1.3 +++ import.log 31 Jul 2009 02:10:50 -0000 1.4 @@ -1,3 +1,4 @@ couchdb-0_8_1-4_fc10:HEAD:couchdb-0.8.1-4.fc10.src.rpm:1236039841 couchdb-0_9_0-1_fc10:HEAD:couchdb-0.9.0-1.fc10.src.rpm:1241659193 couchdb-0_9_0-2_fc10:HEAD:couchdb-0.9.0-2.fc10.src.rpm:1241742181 +couchdb-0_9_1-1_fc11:HEAD:couchdb-0.9.1-1.fc11.src.rpm:1249005969 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 May 2009 01:22:34 -0000 1.3 +++ sources 31 Jul 2009 02:10:50 -0000 1.4 @@ -1 +1 @@ -16526c807ae8a455a0a4feb50d0357eb apache-couchdb-0.9.0.tar.gz +9583efae5adfb3f9043e970fef825561 apache-couchdb-0.9.1.tar.gz --- couchdb-0.9.0-pid.patch DELETED --- From allisson at fedoraproject.org Fri Jul 31 02:21:25 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 31 Jul 2009 02:21:25 +0000 (UTC) Subject: rpms/couchdb/F-11 .cvsignore, 1.3, 1.4 couchdb.spec, 1.3, 1.4 import.log, 1.3, 1.4 sources, 1.3, 1.4 couchdb-0.9.0-pid.patch, 1.1, NONE Message-ID: <20090731022125.4475C11C00D3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/couchdb/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24708/F-11 Modified Files: .cvsignore couchdb.spec import.log sources Removed Files: couchdb-0.9.0-pid.patch Log Message: Update to 0.9.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-11/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 May 2009 01:24:36 -0000 1.3 +++ .cvsignore 31 Jul 2009 02:21:24 -0000 1.4 @@ -1 +1 @@ -apache-couchdb-0.9.0.tar.gz +apache-couchdb-0.9.1.tar.gz Index: couchdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-11/couchdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- couchdb.spec 8 May 2009 00:27:01 -0000 1.3 +++ couchdb.spec 31 Jul 2009 02:21:25 -0000 1.4 @@ -3,8 +3,8 @@ %define couchdb_group couchdb %define couchdb_home %{_localstatedir}/lib/couchdb Name: couchdb -Version: 0.9.0 -Release: 2%{?dist} +Version: 0.9.1 +Release: 1%{?dist} Summary: A document database server, accessible via a RESTful JSON API Group: Applications/Databases @@ -12,14 +12,14 @@ License: ASL 2.0 URL: http://incubator.apache.org/couchdb/ Source0: http://www.apache.org/dist/%{name}/%{version}/%{tarname}-%{version}.tar.gz Source1: %{name}.init -Patch0: couchdb-0.9.0-pid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: erlang BuildRequires: libicu-devel BuildRequires: js-devel BuildRequires: help2man -BuildRequires: libcurl-devel +#BuildRequires: libcurl-devel +BuildRequires: curl-devel Requires: erlang #Requires: %{_bindir}/icu-config Requires: libicu-devel @@ -42,7 +42,9 @@ JavaScript acting as the default view de %prep %setup -q -n %{tarname}-%{version} -%patch0 -p1 -b .pid +# Patch pid location +sed -i 's/%localstatedir%\/run\/couchdb.pid/%localstatedir%\/run\/couchdb\/couchdb.pid/g' \ +bin/couchdb.tpl.in %build @@ -74,9 +76,11 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/def # Remove unecessary files rm $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/couchdb -rm $RPM_BUILD_ROOT%{_libdir}/couchdb/erlang/lib/couch-0.9.0/priv/lib/couch_erl_driver.la rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/couchdb +# clean-up .la archives +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + %clean rm -rf $RPM_BUILD_ROOT @@ -125,6 +129,10 @@ fi %dir %attr(0755, %{couchdb_user}, root) %{_localstatedir}/lib/couchdb %changelog +* Thu Jul 30 2009 Allisson Azevedo 0.9.1-1 +- Update to 0.9.1. +- Drop couchdb-0.9.0-pid.patch. + * Tue Apr 21 2009 Allisson Azevedo 0.9.0-2 - Fix permission for ini files. - Fix couchdb.init start process. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-11/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 8 May 2009 00:27:01 -0000 1.3 +++ import.log 31 Jul 2009 02:21:25 -0000 1.4 @@ -1,3 +1,4 @@ couchdb-0_8_1-4_fc10:HEAD:couchdb-0.8.1-4.fc10.src.rpm:1236039841 couchdb-0_9_0-1_fc10:F-11:couchdb-0.9.0-1.fc10.src.rpm:1241659387 couchdb-0_9_0-2_fc10:F-11:couchdb-0.9.0-2.fc10.src.rpm:1241742295 +couchdb-0_9_1-1_fc11:F-11:couchdb-0.9.1-1.fc11.src.rpm:1249006797 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 May 2009 01:24:36 -0000 1.3 +++ sources 31 Jul 2009 02:21:25 -0000 1.4 @@ -1 +1 @@ -16526c807ae8a455a0a4feb50d0357eb apache-couchdb-0.9.0.tar.gz +9583efae5adfb3f9043e970fef825561 apache-couchdb-0.9.1.tar.gz --- couchdb-0.9.0-pid.patch DELETED --- From allisson at fedoraproject.org Fri Jul 31 02:26:54 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 31 Jul 2009 02:26:54 +0000 (UTC) Subject: rpms/couchdb/F-10 .cvsignore, 1.3, 1.4 couchdb.spec, 1.3, 1.4 import.log, 1.3, 1.4 sources, 1.3, 1.4 couchdb-0.9.0-pid.patch, 1.1, NONE Message-ID: <20090731022654.F3AF611C00D3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/couchdb/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26533/F-10 Modified Files: .cvsignore couchdb.spec import.log sources Removed Files: couchdb-0.9.0-pid.patch Log Message: Update to 0.9.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-10/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 May 2009 01:27:01 -0000 1.3 +++ .cvsignore 31 Jul 2009 02:26:54 -0000 1.4 @@ -1 +1 @@ -apache-couchdb-0.9.0.tar.gz +apache-couchdb-0.9.1.tar.gz Index: couchdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-10/couchdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- couchdb.spec 8 May 2009 00:29:07 -0000 1.3 +++ couchdb.spec 31 Jul 2009 02:26:54 -0000 1.4 @@ -3,8 +3,8 @@ %define couchdb_group couchdb %define couchdb_home %{_localstatedir}/lib/couchdb Name: couchdb -Version: 0.9.0 -Release: 2%{?dist} +Version: 0.9.1 +Release: 1%{?dist} Summary: A document database server, accessible via a RESTful JSON API Group: Applications/Databases @@ -12,14 +12,14 @@ License: ASL 2.0 URL: http://incubator.apache.org/couchdb/ Source0: http://www.apache.org/dist/%{name}/%{version}/%{tarname}-%{version}.tar.gz Source1: %{name}.init -Patch0: couchdb-0.9.0-pid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: erlang BuildRequires: libicu-devel BuildRequires: js-devel BuildRequires: help2man -BuildRequires: libcurl-devel +#BuildRequires: libcurl-devel +BuildRequires: curl-devel Requires: erlang #Requires: %{_bindir}/icu-config Requires: libicu-devel @@ -42,7 +42,9 @@ JavaScript acting as the default view de %prep %setup -q -n %{tarname}-%{version} -%patch0 -p1 -b .pid +# Patch pid location +sed -i 's/%localstatedir%\/run\/couchdb.pid/%localstatedir%\/run\/couchdb\/couchdb.pid/g' \ +bin/couchdb.tpl.in %build @@ -74,9 +76,11 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/def # Remove unecessary files rm $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/couchdb -rm $RPM_BUILD_ROOT%{_libdir}/couchdb/erlang/lib/couch-0.9.0/priv/lib/couch_erl_driver.la rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/couchdb +# clean-up .la archives +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + %clean rm -rf $RPM_BUILD_ROOT @@ -125,6 +129,10 @@ fi %dir %attr(0755, %{couchdb_user}, root) %{_localstatedir}/lib/couchdb %changelog +* Thu Jul 30 2009 Allisson Azevedo 0.9.1-1 +- Update to 0.9.1. +- Drop couchdb-0.9.0-pid.patch. + * Tue Apr 21 2009 Allisson Azevedo 0.9.0-2 - Fix permission for ini files. - Fix couchdb.init start process. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-10/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 8 May 2009 00:29:07 -0000 1.3 +++ import.log 31 Jul 2009 02:26:54 -0000 1.4 @@ -1,3 +1,4 @@ couchdb-0_8_1-4_fc10:F-10:couchdb-0.8.1-4.fc10.src.rpm:1236040037 couchdb-0_9_0-1_fc10:F-10:couchdb-0.9.0-1.fc10.src.rpm:1241659502 couchdb-0_9_0-2_fc10:F-10:couchdb-0.9.0-2.fc10.src.rpm:1241742435 +couchdb-0_9_1-1_fc11:F-10:couchdb-0.9.1-1.fc11.src.rpm:1249007041 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 May 2009 01:27:01 -0000 1.3 +++ sources 31 Jul 2009 02:26:54 -0000 1.4 @@ -1 +1 @@ -16526c807ae8a455a0a4feb50d0357eb apache-couchdb-0.9.0.tar.gz +9583efae5adfb3f9043e970fef825561 apache-couchdb-0.9.1.tar.gz --- couchdb-0.9.0-pid.patch DELETED --- From cebbert at fedoraproject.org Fri Jul 31 02:33:59 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 31 Jul 2009 02:33:59 +0000 (UTC) Subject: rpms/kernel/F-10 patch-2.6.27.29.bz2.sign, NONE, 1.1.2.1 .cvsignore, 1.960.2.16, 1.960.2.17 kernel.spec, 1.1206.2.75, 1.1206.2.76 sources, 1.922.2.16, 1.922.2.17 upstream, 1.834.2.16, 1.834.2.17 patch-2.6.27.28.bz2.sign, 1.1.2.1, NONE patch-2.6.27.29-rc1.bz2.sign, 1.1.2.1, NONE Message-ID: <20090731023359.F0C2E11C00D3@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29479 Modified Files: Tag: private-fedora-10-2_6_27 .cvsignore kernel.spec sources upstream Added Files: Tag: private-fedora-10-2_6_27 patch-2.6.27.29.bz2.sign Removed Files: Tag: private-fedora-10-2_6_27 patch-2.6.27.28.bz2.sign patch-2.6.27.29-rc1.bz2.sign Log Message: Linux 2.6.27.29 --- NEW FILE patch-2.6.27.29.bz2.sign --- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: See http://www.kernel.org/signature.html for info iD8DBQBKcilfyGugalF9Dw4RAgKfAJ9bnNa+O9DwLi7E+2k82TkldirrdACgivce fQqCHOO9d4HtOjip6iAherQ= =bDn8 -----END PGP SIGNATURE----- Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/.cvsignore,v retrieving revision 1.960.2.16 retrieving revision 1.960.2.17 diff -u -p -r1.960.2.16 -r1.960.2.17 --- .cvsignore 29 Jul 2009 21:32:36 -0000 1.960.2.16 +++ .cvsignore 31 Jul 2009 02:33:58 -0000 1.960.2.17 @@ -4,5 +4,4 @@ kernel-2.6.*.config temp-* kernel-2.6.27 linux-2.6.27.tar.bz2 -patch-2.6.27.28.bz2 -patch-2.6.27.29-rc1.bz2 +patch-2.6.27.29.bz2 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.75 retrieving revision 1.1206.2.76 diff -u -p -r1.1206.2.75 -r1.1206.2.76 --- kernel.spec 29 Jul 2009 21:32:36 -0000 1.1206.2.75 +++ kernel.spec 31 Jul 2009 02:33:59 -0000 1.1206.2.76 @@ -38,7 +38,7 @@ Summary: The Linux kernel # Do we have a -stable update to apply? %define stable_update 29 # Is it a -stable RC? -%define stable_rc 1 +%define stable_rc 0 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev .%{stable_update} @@ -1988,7 +1988,10 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog -* Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.74 +* Thu Jul 30 2009 Chuck Ebbert 2.6.27.28-170.2.76 +- Linux 2.6.27.29 + +* Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.75 - Linux 2.6.27.29-rc1 (CVE-2009-2406, CVE-2009-2407) - Drop linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch, now in -stable. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/sources,v retrieving revision 1.922.2.16 retrieving revision 1.922.2.17 diff -u -p -r1.922.2.16 -r1.922.2.17 --- sources 29 Jul 2009 21:32:36 -0000 1.922.2.16 +++ sources 31 Jul 2009 02:33:59 -0000 1.922.2.17 @@ -1,3 +1,2 @@ b3e78977aa79d3754cb7f8143d7ddabd linux-2.6.27.tar.bz2 -3bf7ae5309bbff6cd54c58450565a2a8 patch-2.6.27.28.bz2 -673903ff24a60c264b2d1c1a16a87b6a patch-2.6.27.29-rc1.bz2 +ab19d1f101f8711e7963cbe254557f33 patch-2.6.27.29.bz2 Index: upstream =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/upstream,v retrieving revision 1.834.2.16 retrieving revision 1.834.2.17 diff -u -p -r1.834.2.16 -r1.834.2.17 --- upstream 29 Jul 2009 21:32:37 -0000 1.834.2.16 +++ upstream 31 Jul 2009 02:33:59 -0000 1.834.2.17 @@ -1,4 +1,3 @@ linux-2.6.27.tar.bz2 -patch-2.6.27.28.bz2 -patch-2.6.27.29-rc1.bz2 +patch-2.6.27.29.bz2 --- patch-2.6.27.28.bz2.sign DELETED --- --- patch-2.6.27.29-rc1.bz2.sign DELETED --- From mjg59 at fedoraproject.org Fri Jul 31 02:37:11 2009 From: mjg59 at fedoraproject.org (Matthew Garrett) Date: Fri, 31 Jul 2009 02:37:11 +0000 (UTC) Subject: rpms/kernel/devel linux-2.6-dell-laptop-rfkill-fix.patch, NONE, 1.1 kernel.spec, 1.1678, 1.1679 Message-ID: <20090731023711.DEE3C11C00D3@cvs1.fedora.phx.redhat.com> Author: mjg59 Update of /cvs/pkgs/rpms/kernel/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30255 Modified Files: kernel.spec Added Files: linux-2.6-dell-laptop-rfkill-fix.patch Log Message: * Fri Jul 31 2009 Matthew Garrett - linux-2.6-dell-laptop-rfkill-fix.patch: Fix up Dell rfkill linux-2.6-dell-laptop-rfkill-fix.patch: b/drivers/input/input.c | 91 +++++++++++++++++++++++++++---- b/drivers/platform/x86/dell-laptop.c | 100 +++++++++++++++++++++++++++++++++++ b/include/linux/input.h | 5 + drivers/platform/x86/dell-laptop.c | 5 - 4 files changed, 185 insertions(+), 16 deletions(-) --- NEW FILE linux-2.6-dell-laptop-rfkill-fix.patch --- diff --git a/drivers/input/input.c b/drivers/input/input.c index 7c237e6..80f1e48 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -88,19 +88,26 @@ static int input_defuzz_abs_event(int value, int old_val, int fuzz) */ static void input_pass_event(struct input_dev *dev, unsigned int type, unsigned int code, int value) -{ - struct input_handle *handle; + +{ struct input_handle *handle; rcu_read_lock(); handle = rcu_dereference(dev->grab); - if (handle) + if (handle) { handle->handler->event(handle, type, code, value); - else - list_for_each_entry_rcu(handle, &dev->h_list, d_node) - if (handle->open) - handle->handler->event(handle, - type, code, value); + goto out; + } + + handle = rcu_dereference(dev->filter); + if (handle && handle->handler->filter(handle, type, code, value)) + goto out; + + list_for_each_entry_rcu(handle, &dev->h_list, d_node) + if (handle->open) + handle->handler->event(handle, + type, code, value); +out: rcu_read_unlock(); } @@ -375,12 +382,15 @@ int input_grab_device(struct input_handle *handle) } EXPORT_SYMBOL(input_grab_device); -static void __input_release_device(struct input_handle *handle) +static void __input_release_device(struct input_handle *handle, bool filter) { struct input_dev *dev = handle->dev; - if (dev->grab == handle) { - rcu_assign_pointer(dev->grab, NULL); + if (handle == (filter ? dev->filter : dev->grab)) { + if (filter) + rcu_assign_pointer(dev->filter, NULL); + else + rcu_assign_pointer(dev->grab, NULL); /* Make sure input_pass_event() notices that grab is gone */ synchronize_rcu(); @@ -404,12 +414,65 @@ void input_release_device(struct input_handle *handle) struct input_dev *dev = handle->dev; mutex_lock(&dev->mutex); - __input_release_device(handle); + __input_release_device(handle, false); mutex_unlock(&dev->mutex); } EXPORT_SYMBOL(input_release_device); /** + * input_filter_device - allow input events to be filtered from higher layers + * @handle: input handle that wants to filter the device + * + * When a device is filtered by an input handle all events generated by + * the device are to this handle. If the filter function returns true then + * the event is discarded rather than being passed to any other input handles, + * otherwise it is passed to them as normal. Grabs will be handled before + * filters, so a grabbed device will not deliver events to a filter function. + */ +int input_filter_device(struct input_handle *handle) +{ + struct input_dev *dev = handle->dev; + int retval; + + retval = mutex_lock_interruptible(&dev->mutex); + if (retval) + return retval; + + if (dev->filter) { + retval = -EBUSY; + goto out; + } + + rcu_assign_pointer(dev->filter, handle); + synchronize_rcu(); + + out: + mutex_unlock(&dev->mutex); + return retval; +} +EXPORT_SYMBOL(input_filter_device); + +/** + * input_unfilter_device - removes a filter from a device + * @handle: input handle that owns the device + * + * Removes the filter from a device so that other input handles can + * start receiving unfiltered input events. Upon release all handlers + * attached to the device have their start() method called so they + * have a change to synchronize device state with the rest of the + * system. + */ +void input_unfilter_device(struct input_handle *handle) +{ + struct input_dev *dev = handle->dev; + + mutex_lock(&dev->mutex); + __input_release_device(handle, true); + mutex_unlock(&dev->mutex); +} +EXPORT_SYMBOL(input_unfilter_device); + +/** * input_open_device - open input device * @handle: handle through which device is being accessed * @@ -482,7 +545,9 @@ void input_close_device(struct input_handle *handle) mutex_lock(&dev->mutex); - __input_release_device(handle); + /* Release both grabs and filters */ + __input_release_device(handle, false); + __input_release_device(handle, true); if (!--dev->users && dev->close) dev->close(dev); diff --git a/include/linux/input.h b/include/linux/input.h index 8b3bc3e..e28f116 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -1118,6 +1118,7 @@ struct input_dev { int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value); struct input_handle *grab; + struct input_handle *filter; spinlock_t event_lock; struct mutex mutex; @@ -1218,6 +1219,7 @@ struct input_handler { void *private; void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value); + bool (*filter)(struct input_handle *handle, unsigned int type, unsigned int code, int value); int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id); void (*disconnect)(struct input_handle *handle); void (*start)(struct input_handle *handle); @@ -1295,6 +1297,9 @@ void input_unregister_handle(struct input_handle *); int input_grab_device(struct input_handle *); void input_release_device(struct input_handle *); +int input_filter_device(struct input_handle *); +void input_unfilter_device(struct input_handle *); + int input_open_device(struct input_handle *); void input_close_device(struct input_handle *); diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index 74909c4..71a4149 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "../../firmware/dcdbas.h" #define BRIGHTNESS_TOKEN 0x7d @@ -206,6 +207,16 @@ static const struct rfkill_ops dell_rfkill_ops = { .query = dell_rfkill_query, }; +static void dell_rfkill_update(void) +{ + if (wifi_rfkill) + dell_rfkill_query(wifi_rfkill, (void *)1); + if (bluetooth_rfkill) + dell_rfkill_query(bluetooth_rfkill, (void *)2); + if (wwan_rfkill) + dell_rfkill_query(wwan_rfkill, (void *)3); +} + static int dell_setup_rfkill(void) { struct calling_interface_buffer buffer; @@ -310,6 +321,90 @@ static struct backlight_ops dell_ops = { .update_status = dell_send_intensity, }; +static const struct input_device_id dell_input_ids[] = { + { + .bustype = 0x11, + .vendor = 0x01, + .product = 0x01, + .version = 0xab41, + .flags = INPUT_DEVICE_ID_MATCH_BUS | + INPUT_DEVICE_ID_MATCH_VENDOR | + INPUT_DEVICE_ID_MATCH_PRODUCT | + INPUT_DEVICE_ID_MATCH_VERSION + }, + { }, +}; + +static bool dell_input_filter(struct input_handle *handle, unsigned int type, + unsigned int code, int value) +{ + if (type == EV_KEY && code == KEY_WLAN && value == 1) { + dell_rfkill_update(); + return 1; + } + + return 0; +} + +static void dell_input_event(struct input_handle *handle, unsigned int type, + unsigned int code, int value) +{ +} + +static int dell_input_connect(struct input_handler *handler, + struct input_dev *dev, + const struct input_device_id *id) +{ + struct input_handle *handle; + int error; + + handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL); + if (!handle) + return -ENOMEM; + + handle->dev = dev; + handle->handler = handler; + handle->name = "dell-laptop"; + + error = input_register_handle(handle); + if (error) + goto err_free_handle; + + error = input_open_device(handle); + if (error) + goto err_unregister_handle; + + error = input_filter_device(handle); + if (error) + goto err_close_handle; + + return 0; + +err_close_handle: + input_close_device(handle); +err_unregister_handle: + input_unregister_handle(handle); +err_free_handle: + kfree(handle); + return error; +} + +static void dell_input_disconnect(struct input_handle *handle) +{ + input_close_device(handle); + input_unregister_handle(handle); + kfree(handle); +} + +static struct input_handler dell_input_handler = { + .name = "dell-laptop", + .filter = dell_input_filter, + .event = dell_input_event, + .connect = dell_input_connect, + .disconnect = dell_input_disconnect, + .id_table = dell_input_ids, +}; + static int __init dell_init(void) { struct calling_interface_buffer buffer; @@ -333,6 +428,10 @@ static int __init dell_init(void) goto out; } + if (input_register_handler(&dell_input_handler)) + printk(KERN_INFO + "dell-laptop: Could not register input filter\n"); + #ifdef CONFIG_ACPI /* In the event of an ACPI backlight being available, don't * register the platform controller. @@ -388,6 +487,7 @@ static void __exit dell_exit(void) rfkill_unregister(bluetooth_rfkill); if (wwan_rfkill) rfkill_unregister(wwan_rfkill); + input_unregister_handler(&dell_input_handler); } module_init(dell_init); diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index 71a4149..e559fa1 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c @@ -198,8 +198,8 @@ static void dell_rfkill_query(struct rfkill *rfkill, void *data) dell_send_request(&buffer, 17, 11); status = buffer.output[1]; - if (status & BIT(bit)) - rfkill_set_hw_state(rfkill, !!(status & BIT(16))); + rfkill_set_sw_state(rfkill, !!(status & BIT(bit))); + rfkill_set_hw_state(rfkill, !(status & BIT(16))); } static const struct rfkill_ops dell_rfkill_ops = { -- 1.6.3.3 Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v retrieving revision 1.1678 retrieving revision 1.1679 diff -u -p -r1.1678 -r1.1679 --- kernel.spec 31 Jul 2009 01:15:46 -0000 1.1678 +++ kernel.spec 31 Jul 2009 02:37:11 -0000 1.1679 @@ -703,6 +703,7 @@ Patch11010: via-hwmon-temp-sensor.patch # patches headed upstream Patch12000: linux-2.6-x86-set_memory_wc-fixes.patch +Patch12010: linux-2.6-dell-laptop-rfkill-fix.patch %endif @@ -1124,6 +1125,7 @@ ApplyPatch sched-introduce-SCHED_RESET_O # x86(-64) ApplyPatch via-hwmon-temp-sensor.patch ApplyPatch linux-2.6-x86-set_memory_wc-fixes.patch +ApplyPatch linux-2.6-dell-laptop-rfkill-fix.patch # # PowerPC @@ -1935,6 +1937,9 @@ fi # and build. %changelog +* Fri Jul 31 2009 Matthew Garrett +- linux-2.6-dell-laptop-rfkill-fix.patch: Fix up Dell rfkill + * Fri Jul 31 2009 Ben Skeggs - nouveau: build against 2.6.31-rc4-git6, fix script parsing on some G8x chips From allisson at fedoraproject.org Fri Jul 31 02:38:29 2009 From: allisson at fedoraproject.org (Allisson Azevedo) Date: Fri, 31 Jul 2009 02:38:29 +0000 (UTC) Subject: rpms/couchdb/EL-5 .cvsignore, 1.3, 1.4 couchdb.spec, 1.3, 1.4 import.log, 1.4, 1.5 sources, 1.3, 1.4 couchdb-0.9.0-pid.patch, 1.1, NONE Message-ID: <20090731023829.7CFB611C00D3@cvs1.fedora.phx.redhat.com> Author: allisson Update of /cvs/pkgs/rpms/couchdb/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30656/EL-5 Modified Files: .cvsignore couchdb.spec import.log sources Removed Files: couchdb-0.9.0-pid.patch Log Message: Update to 0.9.1. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/EL-5/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 7 May 2009 02:13:48 -0000 1.3 +++ .cvsignore 31 Jul 2009 02:38:29 -0000 1.4 @@ -1 +1 @@ -apache-couchdb-0.9.0.tar.gz +apache-couchdb-0.9.1.tar.gz Index: couchdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/EL-5/couchdb.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- couchdb.spec 8 May 2009 01:08:03 -0000 1.3 +++ couchdb.spec 31 Jul 2009 02:38:29 -0000 1.4 @@ -3,8 +3,8 @@ %define couchdb_group couchdb %define couchdb_home %{_localstatedir}/lib/couchdb Name: couchdb -Version: 0.9.0 -Release: 2%{?dist} +Version: 0.9.1 +Release: 1%{?dist} Summary: A document database server, accessible via a RESTful JSON API Group: Applications/Databases @@ -12,13 +12,13 @@ License: ASL 2.0 URL: http://incubator.apache.org/couchdb/ Source0: http://www.apache.org/dist/%{name}/%{version}/%{tarname}-%{version}.tar.gz Source1: %{name}.init -Patch0: couchdb-0.9.0-pid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: erlang BuildRequires: libicu-devel BuildRequires: js-devel BuildRequires: help2man +#BuildRequires: libcurl-devel BuildRequires: curl-devel Requires: erlang #Requires: %{_bindir}/icu-config @@ -42,7 +42,9 @@ JavaScript acting as the default view de %prep %setup -q -n %{tarname}-%{version} -%patch0 -p1 -b .pid +# Patch pid location +sed -i 's/%localstatedir%\/run\/couchdb.pid/%localstatedir%\/run\/couchdb\/couchdb.pid/g' \ +bin/couchdb.tpl.in %build @@ -74,9 +76,11 @@ rm -rf $RPM_BUILD_ROOT%{_sysconfdir}/def # Remove unecessary files rm $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/couchdb -rm $RPM_BUILD_ROOT%{_libdir}/couchdb/erlang/lib/couch-0.9.0/priv/lib/couch_erl_driver.la rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/couchdb +# clean-up .la archives +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + %clean rm -rf $RPM_BUILD_ROOT @@ -125,6 +129,10 @@ fi %dir %attr(0755, %{couchdb_user}, root) %{_localstatedir}/lib/couchdb %changelog +* Thu Jul 30 2009 Allisson Azevedo 0.9.1-1 +- Update to 0.9.1. +- Drop couchdb-0.9.0-pid.patch. + * Tue Apr 21 2009 Allisson Azevedo 0.9.0-2 - Fix permission for ini files. - Fix couchdb.init start process. Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/EL-5/import.log,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- import.log 8 May 2009 01:08:03 -0000 1.4 +++ import.log 31 Jul 2009 02:38:29 -0000 1.5 @@ -2,3 +2,4 @@ couchdb-0_8_1-4_fc10:HEAD:couchdb-0.8.1- couchdb-0_8_1-4_fc10:EL-5:couchdb-0.8.1-4.fc10.src.rpm:1236122295 couchdb-0_9_0-1_fc10:EL-5:couchdb-0.9.0-1.fc10.src.rpm:1241662322 couchdb-0_9_0-2_fc10:EL-5:couchdb-0.9.0-2.fc10.src.rpm:1241744775 +couchdb-0_9_1-1_fc11:EL-5:couchdb-0.9.1-1.fc11.src.rpm:1249007818 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/couchdb/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 7 May 2009 02:13:48 -0000 1.3 +++ sources 31 Jul 2009 02:38:29 -0000 1.4 @@ -1 +1 @@ -16526c807ae8a455a0a4feb50d0357eb apache-couchdb-0.9.0.tar.gz +9583efae5adfb3f9043e970fef825561 apache-couchdb-0.9.1.tar.gz --- couchdb-0.9.0-pid.patch DELETED --- From airlied at fedoraproject.org Fri Jul 31 03:16:25 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 03:16:25 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess.spec,1.20,1.21 Message-ID: <20090731031625.E365211C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7558 Modified Files: libpciaccess.spec Log Message: * Fri Jul 31 2009 Dave Airlie 0.10.6-3 - enable autoreconf to rebuild configure properly Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -r1.20 -r1.21 --- libpciaccess.spec 31 Jul 2009 01:23:28 -0000 1.20 +++ libpciaccess.spec 31 Jul 2009 03:16:24 -0000 1.21 @@ -3,7 +3,7 @@ Name: libpciaccess Version: 0.10.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: PCI access library Group: System Environment/Libraries @@ -46,7 +46,7 @@ Development package for libpciaccess. %patch4 -p1 -b .vgaarb %build -#autoreconf -v --install +autoreconf -v --install %configure --disable-static make %{?_smp_mflags} @@ -74,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/pciaccess.pc %changelog +* Fri Jul 31 2009 Dave Airlie 0.10.6-3 +- enable autoreconf to rebuild configure properly + * Fri Jul 31 2009 Dave Airlie 0.10.6-2 - libpciaccess-vga-arbiter.patch: add vga arbiter support to libpciaccess From airlied at fedoraproject.org Fri Jul 31 03:23:53 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 03:23:53 +0000 (UTC) Subject: rpms/libpciaccess/devel libpciaccess.spec,1.21,1.22 Message-ID: <20090731032353.B20EB11C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/libpciaccess/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9279 Modified Files: libpciaccess.spec Log Message: fix BRs Index: libpciaccess.spec =================================================================== RCS file: /cvs/pkgs/rpms/libpciaccess/devel/libpciaccess.spec,v retrieving revision 1.21 retrieving revision 1.22 diff -u -p -r1.21 -r1.22 --- libpciaccess.spec 31 Jul 2009 03:16:24 -0000 1.21 +++ libpciaccess.spec 31 Jul 2009 03:23:53 -0000 1.22 @@ -22,7 +22,7 @@ Patch2: libpciaccess-rom-size.patch Patch3: libpciaccess-boot-vga.patch Patch4: libpciaccess-vga-arbiter.patch -BuildRequires: autoconf automake libtool pkgconfig +BuildRequires: autoconf automake libtool pkgconfig xorg-x11-util-macros Requires: hwdata %description From airlied at fedoraproject.org Fri Jul 31 03:57:45 2009 From: airlied at fedoraproject.org (Dave Airlie) Date: Fri, 31 Jul 2009 03:57:45 +0000 (UTC) Subject: rpms/vbetool/devel vbetool.spec,1.12,1.13 vgaarbpost.patch,1.1,1.2 Message-ID: <20090731035745.72AED11C00D3@cvs1.fedora.phx.redhat.com> Author: airlied Update of /cvs/pkgs/rpms/vbetool/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17107 Modified Files: vbetool.spec vgaarbpost.patch Log Message: * Fri Jul 31 2009 Dave Airlie 1.1-5.1 - pciacccess.patch: post to use libpciaccess - vgaarbpost.patch: use vga arb to post secondaries Index: vbetool.spec =================================================================== RCS file: /cvs/pkgs/rpms/vbetool/devel/vbetool.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- vbetool.spec 31 Jul 2009 01:54:39 -0000 1.12 +++ vbetool.spec 31 Jul 2009 03:57:44 -0000 1.13 @@ -1,6 +1,6 @@ Name: vbetool -Version: 1.2 -Release: 0.1%{?dist} +Version: 1.1 +Release: 5.1%{?dist} Summary: Run real-mode video BIOS code to alter hardware state Group: System Environment/Base @@ -9,9 +9,10 @@ URL: http://www.codon.org.uk/ Source0: http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: libpciaccess > 0.10.6-2 -BuildRequires: zlib-devel pciutils-devel libx86-devel -BuildRequires: libpciaccess-devel >= 0.10.6-2 +Requires: libpciaccess > 0.10.6-3 +BuildRequires: zlib-devel libx86-devel +BuildRequires: libpciaccess-devel >= 0.10.6-3 +BuildRequires: autoconf automake libtool pkgconfig # does not build on ppc, ppc64 and sparc arches, see #285361 (RedHat Bugzilla) # on ppc sys/io.h is missing, on ppc64 there are more complaints # build.logs are attached in the bug report @@ -34,6 +35,7 @@ initialize the video card from scratch. %patch1 -p1 -b .vga %build +autoreconf -v --install %configure --with-x86emu make %{?_smp_mflags} @@ -55,7 +57,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jul 31 2009 Dave Airlie 1.2-0.1 +* Fri Jul 31 2009 Dave Airlie 1.1-5.1 - pciacccess.patch: post to use libpciaccess - vgaarbpost.patch: use vga arb to post secondaries vgaarbpost.patch: vbetool.c | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++--------- vbetool.h | 2 - 2 files changed, 90 insertions(+), 15 deletions(-) Index: vgaarbpost.patch =================================================================== RCS file: /cvs/pkgs/rpms/vbetool/devel/vgaarbpost.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- vgaarbpost.patch 31 Jul 2009 01:54:39 -0000 1.1 +++ vgaarbpost.patch 31 Jul 2009 03:57:44 -0000 1.2 @@ -1,7 +1,15 @@ -diff -up vbetool-1.1/vbetool.c.da vbetool-1.1/vbetool.c ---- vbetool-1.1/vbetool.c.da 2009-07-31 11:14:18.000000000 +1000 -+++ vbetool-1.1/vbetool.c 2009-07-31 11:45:39.000000000 +1000 -@@ -119,7 +119,14 @@ int main(int argc, char *argv[]) +diff -up vbetool-1.1/vbetool.c.vga vbetool-1.1/vbetool.c +--- vbetool-1.1/vbetool.c.vga 2009-07-31 13:46:35.000000000 +1000 ++++ vbetool-1.1/vbetool.c 2009-07-31 13:53:35.000000000 +1000 +@@ -113,13 +113,20 @@ int main(int argc, char *argv[]) + void *rc; + int romfd = open (argv[2], O_RDWR); + +- munmap(0xc0000, 64*1024); +- rc = mmap(0xc0000, 64*1024, ++ munmap((void*)0xc0000, 64*1024); ++ rc = mmap((void *)0xc0000, 64*1024, + PROT_READ|PROT_WRITE|PROT_EXEC, MAP_FIXED|MAP_PRIVATE, romfd, 0); } @@ -26,7 +34,7 @@ diff -up vbetool-1.1/vbetool.c.da vbetoo argv[0], argv[0]); return 1; } -@@ -214,7 +221,48 @@ int do_real_post(unsigned pci_device) +@@ -214,32 +221,100 @@ int do_real_post(unsigned pci_device) return error; } @@ -35,55 +43,67 @@ diff -up vbetool-1.1/vbetool.c.da vbetoo +void *rom_cseg; +unsigned char romfile[MAX_ROMSIZE]; + -+void setup_rom_section(void) ++int setup_rom_section(void) +{ + munmap((void *)0xc0000, MAX_ROMSIZE); + rom_cseg = mmap((void *)0xc0000, MAX_ROMSIZE, PROT_READ|PROT_WRITE|PROT_EXEC, + MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); + if (!rom_cseg) { -+ fprintf(stdrer,"unable to setup fake rom\n"); -+ return -1 ++ fprintf(stderr,"unable to setup fake rom\n"); ++ return -1; + } + return 0; +} + -+int do_device_post(struct pci_device *dev) ++int do_device_post(struct pci_device *dev, int has_arb) +{ + int error = 0; + /* need to pull the ROM file */ + unsigned int pci_id; + int ret; + -+ pci_device_vgaarb_set_target(dev); -+ pci_device_vgaarb_lock(dev); -+ ret = pci_device_read_rom(dev, romfile); -+ if (ret) { -+ pci_device_vgaarb_unlock(dev); -+ fprintf(stderr,"rom read returned %d\n"); -+ return 0; -+ } -+ -+ memcpy(rom_cseg, romfile, MAX_ROMSIZE); ++ if (has_arb) { ++ pci_device_vgaarb_set_target(dev); ++ pci_device_vgaarb_lock(dev); ++ ++ ret = pci_device_read_rom(dev, romfile); ++ if (ret) { ++ pci_device_vgaarb_unlock(dev); ++ fprintf(stderr,"rom read returned %d\n", ret); ++ return 0; ++ } + ++ memcpy(rom_cseg, romfile, MAX_ROMSIZE); ++ } + pci_id = (dev->bus << 8) + (dev->dev << 3) + + (dev->func & 0x7); + error = do_real_post(pci_id); -+ pci_device_vgaarb_unlock(dev); ++ if (has_arb) ++ pci_device_vgaarb_unlock(dev); + return error; +} + +int do_post(int boot_flag) { - unsigned int c; +- unsigned int c; int error; -@@ -225,21 +273,35 @@ int do_post(void) + struct pci_id_match dev_match = { + PCI_MATCH_ANY, PCI_MATCH_ANY, PCI_MATCH_ANY, PCI_MATCH_ANY, + (0x03 << 16), 0xff000, 0 }; + struct pci_device *dev, *first_dev = NULL; struct pci_device_iterator *iter; - unsigned pci_id; +- unsigned pci_id; ++ int has_arb = 1; ++ int ret; ++ ++ ret = pci_device_vgaarb_init(); ++ if (ret) ++ has_arb = 0; ++ ++ if (has_arb) ++ if (setup_rom_section()) ++ return -1; -+ if (setup_rom_section()) -+ return -1; -+ -+ pci_device_vgaarb_init(); iter = pci_id_match_iterator_create(&dev_match); if (iter == NULL) { return 1; @@ -97,25 +117,43 @@ diff -up vbetool-1.1/vbetool.c.da vbetoo - error = do_real_post(dev); - if (error != 0) { - return error; ++ int is_boot = pci_device_is_boot_vga(dev); + if (!first_dev) + first_dev = dev; + -+ if (pci_device_is_boot_vga(dev) && (boot_flag == 1)) { ++ if (!is_boot && !has_arb) ++ continue; ++ ++ if (is_boot && boot_flag) { + continue; + } + if (pci_device_has_kernel_driver(dev)) { + continue; } -+ error = do_device_post(dev); ++ error = do_device_post(dev, has_arb); + if (error) + return error; } + pci_iterator_destroy(iter); -+ pci_device_vgaarb_set_target(first_dev); -+ pci_device_vgaarb_lock(first_dev); -+ pci_device_vgaarb_unlock(first_dev); -+ pci_device_vgaarb_fini(); ++ if (has_arb) { ++ pci_device_vgaarb_set_target(first_dev); ++ pci_device_vgaarb_lock(first_dev); ++ pci_device_vgaarb_unlock(first_dev); ++ pci_device_vgaarb_fini(); ++ } return 0; } +diff -up vbetool-1.1/vbetool.h.vga vbetool-1.1/vbetool.h +--- vbetool-1.1/vbetool.h.vga 2007-03-03 11:50:00.000000000 +1000 ++++ vbetool-1.1/vbetool.h 2009-07-31 13:46:35.000000000 +1000 +@@ -8,7 +8,7 @@ int do_get_mode(void); + int do_get_panel_brightness(void); + int do_set_panel_brightness(int brightness); + int do_invert_panel(void); +-int do_post(void); ++int do_post(int boot_flag); + void restore_state(void); + void save_state(void); + void text_mode(void); From mclasen at fedoraproject.org Fri Jul 31 04:45:47 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 31 Jul 2009 04:45:47 +0000 (UTC) Subject: rpms/gnome-media/devel gnome-media.spec,1.174,1.175 Message-ID: <20090731044547.AB01311C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16198 Modified Files: gnome-media.spec Log Message: Split off an apps subpackage Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.174 retrieving revision 1.175 diff -u -p -r1.174 -r1.175 --- gnome-media.spec 27 Jul 2009 22:12:49 -0000 1.174 +++ gnome-media.spec 31 Jul 2009 04:45:46 -0000 1.175 @@ -14,7 +14,7 @@ Summary: GNOME media programs Name: gnome-media Version: 2.27.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.27/gnome-media-%{version}.tar.bz2 @@ -24,8 +24,6 @@ Obsoletes: gnome URL: http://www.gnome.org ExcludeArch: s390 s390x -Requires(post): scrollkeeper >= 0.1.4 -Requires(postun): scrollkeeper >= 0.1.4 Requires(post): GConf2 >= 2.14 Requires(pre): GConf2 >= 2.14 Requires(preun): GConf2 >= 2.14 @@ -73,6 +71,16 @@ Requires: %{name} = %{version}-%{release This package contains the libraries required for using encoding profiles in GNOME media applications. +%package apps +Summary: Some media-related applications for the GNOME desktop +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} + +%description apps +This package contains an application to record and play sound files +in various formats, a configuration utility for audio profiles and +a configuration utility for the gstreamer media framework. + %prep %setup -q @@ -139,17 +147,32 @@ for helpdir in $RPM_BUILD_ROOT%{_datadir done done -%find_lang %{gettext_package} --all-name --with-gnome +%find_lang %{gettext_package} +%find_lang gnome-audio-profiles --with-gnome +%find_lang gnome-sound-recorder --with-gnome +%find_lang gstreamer-properties --with-gnome +cat gnome-audio-profiles.lang >> apps.lang +cat gnome-sound-recorder.lang >> apps.lang +cat gstreamer-properties.lang >> apps.lang %clean rm -rf $RPM_BUILD_ROOT %post -scrollkeeper-update -q -o %{_datadir}/omf/%{name} || : +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi + +%post apps export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule \ %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas \ > /dev/null || : +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi %post libs export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -187,6 +210,16 @@ if [ "$1" -gt 1 ]; then > /dev/null || : fi +%pre apps +if [ "$1" -gt 1 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + if [ -f %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas ] ; then + gconftool-2 --makefile-uninstall-rule \ + %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas \ + > /dev/null || : + fi +fi + %preun if [ "$1" -eq 0 ]; then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` @@ -208,6 +241,16 @@ if [ "$1" -eq 0 ]; then fi fi +%preun apps +if [ "$1" -gt 1 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + if [ -f %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas ] ; then + gconftool-2 --makefile-uninstall-rule \ + %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas \ + > /dev/null || : + fi +fi + %preun libs if [ "$1" -eq 0 ]; then if [ -f %{_sysconfdir}/gconf/schemas/gnome-audio-profiles.schemas ] ; then @@ -219,25 +262,28 @@ if [ "$1" -eq 0 ]; then fi %postun -scrollkeeper-update -q || : +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi -%postun libs -/sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%postun apps +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi %files %defattr(-, root, root) - %doc AUTHORS COPYING NEWS README -%config %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas - +%{_bindir}/gnome-volume-control +%{_bindir}/gnome-volume-control-applet %{_sysconfdir}/xdg/autostart/gnome-volume-control-applet.desktop - -%{_datadir}/applications/* -%{_datadir}/icons/hicolor/*/apps/* +%{_datadir}/applications/gnome-volume-control.desktop +%{_datadir}/icons/hicolor/*/apps/gnome-volume-control* %{_datadir}/gnome-media -%{_datadir}/gstreamer-properties -%{_datadir}/gnome-sound-recorder -%{_bindir}/* %{_datadir}/sounds/gnome/ %files libs -f %{gettext_package}.lang @@ -252,7 +298,24 @@ scrollkeeper-update -q || : %{_libdir}/*.so %{_libdir}/pkgconfig/* +%files apps -f apps.lang +%defattr(-, root, root) +%{_bindir}/gnome-sound-recorder +%{_bindir}/gnome-audio-profiles-properties +%{_bindir}/gstreamer-properties +%{_datadir}/gnome-sound-recorder +%{_datadir}/gstreamer-properties +%config %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas +%{_datadir}/applications/gnome-sound-recorder.desktop +%{_datadir}/applications/gstreamer-properties.desktop +%{_datadir}/icons/hicolor/*/apps/gnome-sound-recorder* +%{_datadir}/icons/hicolor/*/apps/gstreamer-properties* + + %changelog +* Fri Jul 31 2009 Matthias Clasen 2.27.5-2 +- Split off an apps subpackage + * Mon Jul 27 2009 Bastien Nocera 2.27.5-1 - Update to 2.27.5 From abompard at fedoraproject.org Fri Jul 31 05:22:49 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Fri, 31 Jul 2009 05:22:49 +0000 (UTC) Subject: rpms/FUR/devel FUR.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731052249.C35F511C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/FUR/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24760/devel Modified Files: .cvsignore sources Added Files: FUR.spec import.log Log Message: initial import --- NEW FILE FUR.spec --- Name: FUR Version: 0.4.6 Release: 2%{?dist} Summary: Mount a Windows CE based device on your Linux file system Group: Applications/System License: GPLv2 URL: http://www.infis.univ.ts.it/~riccardo/FUR.html Source0: http://downloads.sourceforge.net/synce/FUR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: librapi-devel fuse-devel Requires: fuse %description FUR is an application that let the user mount a Windows CE based device on your Linux file system: it uses the brilliant FUSE and the librapi2 of the Synce Project (a *nix implementation of the RAPI protocol that your device uses to communicate with your other operating system) to give you the illusion that the storage of your Pocket PC is a directory on your local filesystem. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -D -p -m 755 Fur $RPM_BUILD_ROOT%{_bindir}/Fur %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changelog docs/* %{_bindir}/Fur %changelog * Wed Jul 29 2009 Aurelien Bompard - 0.4.6-2 - fixes proposed by Peter L. during review (#514310) * Mon Jul 27 2009 Aurelien Bompard - 0.4.6-1 - version 0.4.6 * Tue Jun 16 2009 Aurelien Bompard - 0.4.5-1 - initial package --- NEW FILE import.log --- FUR-0_4_6-2_fc11:HEAD:FUR-0.4.6-2.fc11.src.rpm:1249017707 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/FUR/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:51:53 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:22:49 -0000 1.2 @@ -0,0 +1 @@ +FUR-0.4.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/FUR/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:51:53 -0000 1.1 +++ sources 31 Jul 2009 05:22:49 -0000 1.2 @@ -0,0 +1 @@ +76688e4b208e33d72e53c0f7dcc59534 FUR-0.4.6.tar.gz From abompard at fedoraproject.org Fri Jul 31 05:25:07 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Fri, 31 Jul 2009 05:25:07 +0000 (UTC) Subject: rpms/FUR/F-10 FUR.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090731052507.18D1E11C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/FUR/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25589/F-10 Modified Files: .cvsignore sources Added Files: FUR.spec Log Message: initial import --- NEW FILE FUR.spec --- Name: FUR Version: 0.4.6 Release: 2%{?dist} Summary: Mount a Windows CE based device on your Linux file system Group: Applications/System License: GPLv2 URL: http://www.infis.univ.ts.it/~riccardo/FUR.html Source0: http://downloads.sourceforge.net/synce/FUR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: librapi-devel fuse-devel Requires: fuse %description FUR is an application that let the user mount a Windows CE based device on your Linux file system: it uses the brilliant FUSE and the librapi2 of the Synce Project (a *nix implementation of the RAPI protocol that your device uses to communicate with your other operating system) to give you the illusion that the storage of your Pocket PC is a directory on your local filesystem. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -D -p -m 755 Fur $RPM_BUILD_ROOT%{_bindir}/Fur %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changelog docs/* %{_bindir}/Fur %changelog * Wed Jul 29 2009 Aurelien Bompard - 0.4.6-2 - fixes proposed by Peter L. during review (#514310) * Mon Jul 27 2009 Aurelien Bompard - 0.4.6-1 - version 0.4.6 * Tue Jun 16 2009 Aurelien Bompard - 0.4.5-1 - initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/FUR/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:51:53 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:25:06 -0000 1.2 @@ -0,0 +1 @@ +FUR-0.4.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/FUR/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:51:53 -0000 1.1 +++ sources 31 Jul 2009 05:25:06 -0000 1.2 @@ -0,0 +1 @@ +76688e4b208e33d72e53c0f7dcc59534 FUR-0.4.6.tar.gz From abompard at fedoraproject.org Fri Jul 31 05:25:07 2009 From: abompard at fedoraproject.org (Aurelien Bompard) Date: Fri, 31 Jul 2009 05:25:07 +0000 (UTC) Subject: rpms/FUR/F-11 FUR.spec,NONE,1.1 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090731052507.590E611C00CE@cvs1.fedora.phx.redhat.com> Author: abompard Update of /cvs/pkgs/rpms/FUR/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25589/F-11 Modified Files: .cvsignore sources Added Files: FUR.spec Log Message: initial import --- NEW FILE FUR.spec --- Name: FUR Version: 0.4.6 Release: 2%{?dist} Summary: Mount a Windows CE based device on your Linux file system Group: Applications/System License: GPLv2 URL: http://www.infis.univ.ts.it/~riccardo/FUR.html Source0: http://downloads.sourceforge.net/synce/FUR-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: librapi-devel fuse-devel Requires: fuse %description FUR is an application that let the user mount a Windows CE based device on your Linux file system: it uses the brilliant FUSE and the librapi2 of the Synce Project (a *nix implementation of the RAPI protocol that your device uses to communicate with your other operating system) to give you the illusion that the storage of your Pocket PC is a directory on your local filesystem. %prep %setup -q %build %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT install -D -p -m 755 Fur $RPM_BUILD_ROOT%{_bindir}/Fur %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changelog docs/* %{_bindir}/Fur %changelog * Wed Jul 29 2009 Aurelien Bompard - 0.4.6-2 - fixes proposed by Peter L. during review (#514310) * Mon Jul 27 2009 Aurelien Bompard - 0.4.6-1 - version 0.4.6 * Tue Jun 16 2009 Aurelien Bompard - 0.4.5-1 - initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/FUR/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:51:53 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:25:07 -0000 1.2 @@ -0,0 +1 @@ +FUR-0.4.6.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/FUR/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:51:53 -0000 1.1 +++ sources 31 Jul 2009 05:25:07 -0000 1.2 @@ -0,0 +1 @@ +76688e4b208e33d72e53c0f7dcc59534 FUR-0.4.6.tar.gz From pkgdb at fedoraproject.org Fri Jul 31 05:28:43 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:43 +0000 Subject: [pkgdb] psimedia: abompard has requested watchbugzilla Message-ID: <20090731052843.D9CDE10F88F@bastion2.fedora.phx.redhat.com> abompard has requested the watchbugzilla acl on psimedia (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 05:28:45 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:45 +0000 Subject: [pkgdb] psimedia: abompard has requested commit Message-ID: <20090731052845.7977F10F89E@bastion2.fedora.phx.redhat.com> abompard has requested the commit acl on psimedia (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 05:28:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:44 +0000 Subject: [pkgdb] psimedia: abompard has requested watchcommits Message-ID: <20090731052844.7325C10F89B@bastion2.fedora.phx.redhat.com> abompard has requested the watchcommits acl on psimedia (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 05:28:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:50 +0000 Subject: [pkgdb] psimedia: abompard has requested watchcommits Message-ID: <20090731052850.40DA610F8B0@bastion2.fedora.phx.redhat.com> abompard has requested the watchcommits acl on psimedia (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 05:28:50 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:50 +0000 Subject: [pkgdb] psimedia: abompard has requested commit Message-ID: <20090731052850.BD7D010F8B5@bastion2.fedora.phx.redhat.com> abompard has requested the commit acl on psimedia (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 05:28:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 05:28:58 +0000 Subject: [pkgdb] psimedia: abompard has requested watchbugzilla Message-ID: <20090731052858.4DE8710F8B6@bastion2.fedora.phx.redhat.com> abompard has requested the watchbugzilla acl on psimedia (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From beekhof at fedoraproject.org Fri Jul 31 05:47:06 2009 From: beekhof at fedoraproject.org (Andrew Beekhof) Date: Fri, 31 Jul 2009 05:47:06 +0000 (UTC) Subject: rpms/pacemaker/devel import.log, NONE, 1.1 pacemaker.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731054707.01E2911C00CE@cvs1.fedora.phx.redhat.com> Author: beekhof Update of /cvs/pkgs/rpms/pacemaker/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32668/devel Modified Files: .cvsignore sources Added Files: import.log pacemaker.spec Log Message: Initial import of pacemaker from src.rpm --- NEW FILE import.log --- pacemaker-1_0_5-0_6_c9120a53a6ae_hg_fc12:HEAD:pacemaker-1.0.5-0.6.c9120a53a6ae.hg.fc12.src.rpm:1249016615 --- NEW FILE pacemaker.spec --- %global gname haclient %global uname hacluster %global with_ais_support 1 %global with_heartbeat_support 0 # Enable heartbeat support once it builds against cluster-glue # When downloading directly from Mercurial, it will automatically add this prefix # Invoking 'hg archive' wont but you can add one with: # hg archive -t tgz -p "Pacemaker-1-0-" -r $upstreamversion $upstreamversion.tar.gz %global upstreamprefix Pacemaker-1-0- %global upstreamversion c9120a53a6ae # Keep around for when/if required %global alphatag %{upstreamversion}.hg Name: pacemaker Summary: Scalable High-Availability cluster resource manager Version: 1.0.5 Release: %{?alphatag:0.}6%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Url: http://www.clusterlabs.org Group: System Environment/Daemons Source0: http://hg.clusterlabs.org/pacemaker/stable-1.0/archive/%{upstreamversion}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) AutoReqProv: on Requires(pre): cluster-glue # Required for core functionality BuildRequires: automake autoconf libtool pkgconfig chrpath libtool-ltdl-devel BuildRequires: glib2-devel cluster-glue-libs-devel libxml2-devel libxslt-devel BuildRequires: pkgconfig python-devel gcc-c++ bzip2-devel gnutls-devel pam-devel # Enables optional functionality BuildRequires: help2man ncurses-devel net-snmp-devel openssl-devel BuildRequires: libesmtp-devel lm_sensors-devel libselinux-devel %if %with_ais_support BuildRequires: corosynclib-devel Requires: corosync %endif %if %with_heartbeat_support BuildRequires: heartbeat-devel Requires: heartbeat %endif %description Pacemaker is an advanced, scalable High-Availability cluster resource manager for Linux-HA (Heartbeat) and/or OpenAIS. It supports "n-node" clusters with significant capabilities for managing resources and dependencies. It will run scripts at initialization, when machines go up or down, when related resources fail and can be configured to periodically check resource health. %package -n pacemaker-libs License: GPLv2+ and LGPLv2+ Summary: Libraries used by the Pacemaker cluster resource manager and its clients Group: System Environment/Daemons Requires: %{name} = %{version}-%{release} %description -n pacemaker-libs Pacemaker is an advanced, scalable High-Availability cluster resource manager for Linux-HA (Heartbeat) and/or OpenAIS. It supports "n-node" clusters with significant capabilities for managing resources and dependencies. It will run scripts at initialization, when machines go up or down, when related resources fail and can be configured to periodically check resource health. %package -n pacemaker-libs-devel License: GPLv2+ and LGPLv2+ Summary: Pacemaker development package Group: Development/Libraries Requires: %{name}-libs = %{version}-%{release} Requires: cluster-glue-libs-devel %description -n pacemaker-libs-devel Headers and shared libraries for developing tools for Pacemaker. Pacemaker is an advanced, scalable High-Availability cluster resource manager for Linux-HA (Heartbeat) and/or OpenAIS. It supports "n-node" clusters with significant capabilities for managing resources and dependencies. It will run scripts at initialization, when machines go up or down, when related resources fail and can be configured to periodically check resource health. %prep %setup -q -n %{upstreamprefix}%{upstreamversion} %build ./autogen.sh %{_configure} --localstatedir=%{_var} --enable-fatal-warnings=no make %{_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} # Scripts that need should be executable chmod a+x %{buildroot}/%{_libdir}/heartbeat/hb2openais-helper.py chmod a+x %{buildroot}/%{_datadir}/pacemaker/cts/CTSlab.py chmod a+x %{buildroot}/%{_datadir}/pacemaker/cts/OCFIPraTest.py chmod a+x %{buildroot}/%{_datadir}/pacemaker/cts/extracttests.py # Remove RPATH information find %{buildroot} -type f -exec chrpath -d {} >/dev/null 2>&1 \; # These are not actually scripts find %{buildroot} -name '*.xml' -type f -print0 | xargs -0 chmod a-x find %{buildroot} -name '*.xsl' -type f -print0 | xargs -0 chmod a-x find %{buildroot} -name '*.rng' -type f -print0 | xargs -0 chmod a-x find %{buildroot} -name '*.dtd' -type f -print0 | xargs -0 chmod a-x # Dont package static libs or compiled python find %{buildroot} -name '*.a' -type f -print0 | xargs -0 rm -f find %{buildroot} -name '*.la' -type f -print0 | xargs -0 rm -f find %{buildroot} -name '*.pyc' -type f -print0 | xargs -0 rm -f find %{buildroot} -name '*.pyo' -type f -print0 | xargs -0 rm -f # Don't package these either rm %{buildroot}/%{_libdir}/heartbeat/crm_primitive.py rm %{buildroot}/%{_libdir}/service_crm.so %clean rm -rf %{buildroot} %post -n pacemaker-libs -p /sbin/ldconfig %postun -n pacemaker-libs -p /sbin/ldconfig %files ########################################################### %defattr(-,root,root) %dir %{_datadir}/doc/packages/pacemaker %dir %{_datadir}/doc/packages/pacemaker/templates %{_datadir}/pacemaker %{_libdir}/heartbeat/* %{_sbindir}/cibadmin %{_sbindir}/crm_attribute %{_sbindir}/crm_diff %{_sbindir}/crm_failcount %{_sbindir}/crm_master %{_sbindir}/crm_mon %{_sbindir}/crm %{_sbindir}/crm_resource %{_sbindir}/crm_standby %{_sbindir}/crm_verify %{_sbindir}/crmadmin %{_sbindir}/iso8601 %{_sbindir}/attrd_updater %{_sbindir}/ptest %{_sbindir}/crm_shadow %{_sbindir}/cibpipe %{_sbindir}/crm_node %if %with_heartbeat_support %{_sbindir}/crm_uuid %else %exclude %{_sbindir}/crm_uuid %endif %doc %{_datadir}/doc/packages/pacemaker/AUTHORS %doc %{_datadir}/doc/packages/pacemaker/README %doc %{_datadir}/doc/packages/pacemaker/README.hb2openais %doc %{_datadir}/doc/packages/pacemaker/COPYING %doc %{_datadir}/doc/packages/pacemaker/COPYING.LGPL %doc %{_datadir}/doc/packages/pacemaker/crm_cli.txt %doc %{_datadir}/doc/packages/pacemaker/templates/* %doc %{_mandir}/man8/*.8* %doc COPYING %doc AUTHORS %dir %attr (750, %{uname}, %{gname}) %{_var}/lib/heartbeat/crm %dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pengine %dir %attr (750, %{uname}, %{gname}) %{_var}/run/crm %dir /usr/lib/ocf %dir /usr/lib/ocf/resource.d /usr/lib/ocf/resource.d/pacemaker %if %with_ais_support %{_libexecdir}/lcrso/pacemaker.lcrso %endif %files -n pacemaker-libs %defattr(-,root,root) %{_libdir}/libcib.so.* %{_libdir}/libcrmcommon.so.* %{_libdir}/libcrmcluster.so.* %{_libdir}/libpe_status.so.* %{_libdir}/libpe_rules.so.* %{_libdir}/libpengine.so.* %{_libdir}/libtransitioner.so.* %{_libdir}/libstonithd.so.* %doc COPYING.LIB %doc AUTHORS %files -n pacemaker-libs-devel %defattr(-,root,root) %{_includedir}/pacemaker %{_includedir}/heartbeat/fencing %{_libdir}/*.so %doc COPYING.LIB %doc AUTHORS %changelog * Wed Jul 29 2009 Andrew Beekhof - 1.0.5-0.6.c9120a53a6ae.hg - Add back missing build auto* dependancies - Minor cleanups to the install directive * Tue Jul 28 2009 Andrew Beekhof - 1.0.5-0.5.c9120a53a6ae.hg - Add a leading zero to the revision when alphatag is used * Tue Jul 28 2009 Andrew Beekhof - 1.0.5-0.4.c9120a53a6ae.hg - Incorporate the feedback from the cluster-glue review - Realistically, the version is a 1.0.5 pre-release - Use the global directive instead of define for variables - Use the haclient/hacluster group/user instead of daemon - Use the _configure macro - Fix install dependancies * Fri Jul 24 2009 Andrew Beekhof - 1.0.4-3 - Include an AUTHORS and license file in each package - Change the library package name to pacemaker-libs to be more Fedora compliant - Remove execute permissions from xml related files - Reference the new cluster-glue devel package name - Update the tarball from upstream to version c9120a53a6ae + High: PE: Only prevent migration if the clone dependancy is stopping/starting on the target node + High: PE: Bug 2160 - Dont shuffle clones due to colocation + High: PE: New implementation of the resource migration (not stop/start) logic + Medium: Tools: crm_resource - Prevent use-of-NULL by requiring a resource name for the -A and -a options + Medium: PE: Prevent use-of-NULL in find_first_action() + Low: Build: Include licensing files * Tue Jul 14 2009 Andrew Beekhof - 1.0.4-2 - Reference authors from the project AUTHORS file instead of listing in description - Change Source0 to reference the project's Mercurial repo - Cleaned up the summaries and descriptions - Incorporate the results of Fedora package self-review * Tue Jul 14 2009 Andrew Beekhof - 1.0.4-1 - Initial checkin Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/pacemaker/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:52:30 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:47:06 -0000 1.2 @@ -0,0 +1 @@ +c9120a53a6ae.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/pacemaker/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:52:30 -0000 1.1 +++ sources 31 Jul 2009 05:47:06 -0000 1.2 @@ -0,0 +1 @@ +0737aaf01c73868fe006b4880ef2776e c9120a53a6ae.tar.gz From cweyl at fedoraproject.org Fri Jul 31 05:54:14 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 05:54:14 +0000 (UTC) Subject: rpms/perl-Mouse/devel .cvsignore, 1.10, 1.11 perl-Mouse.spec, 1.12, 1.13 sources, 1.10, 1.11 Message-ID: <20090731055414.A0DBE11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Mouse/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2196 Modified Files: .cvsignore perl-Mouse.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.27-1 - auto-update to 0.27 (by cpan-spec-update 0.01) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 22 Jun 2009 07:20:30 -0000 1.10 +++ .cvsignore 31 Jul 2009 05:54:13 -0000 1.11 @@ -1 +1 @@ -Mouse-0.25.tar.gz +Mouse-0.27.tar.gz Index: perl-Mouse.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/devel/perl-Mouse.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- perl-Mouse.spec 26 Jul 2009 11:33:51 -0000 1.12 +++ perl-Mouse.spec 31 Jul 2009 05:54:13 -0000 1.13 @@ -1,6 +1,6 @@ Name: perl-Mouse -Version: 0.25 -Release: 2%{?dist} +Version: 0.27 +Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Moose minus the antlers @@ -81,6 +81,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.27-1 +- auto-update to 0.27 (by cpan-spec-update 0.01) + * Sun Jul 26 2009 Fedora Release Engineering - 0.25-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Jun 2009 07:20:31 -0000 1.10 +++ sources 31 Jul 2009 05:54:13 -0000 1.11 @@ -1 +1 @@ -97dbe3320902d3e769795849c26884f7 Mouse-0.25.tar.gz +4f1b209f7b6d1f34a31b2ee1037352cb Mouse-0.27.tar.gz From lkundrak at fedoraproject.org Fri Jul 31 05:54:55 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 31 Jul 2009 05:54:55 +0000 (UTC) Subject: rpms/rubygem-test-spec/EL-5 rubygem-test-spec.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731055455.4E53311C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-test-spec/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2445/EL-5 Modified Files: .cvsignore sources Added Files: rubygem-test-spec.spec Log Message: Import rubygem-test-spec --- NEW FILE rubygem-test-spec.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname test-spec %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Behaviour Driven Development interface for Test::Unit Name: rubygem-%{gemname} Version: 0.10.0 Release: 2%{?dist} Group: Development/Languages License: Ruby or GPLv2 URL: http://test-spec.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Test/spec layers an RSpec-inspired interface on top of Test::Unit, so you can mix TDD and BDD (Behavior-Driven Development). It is a clean-room implementation that maps most kinds of Test::Unit assertions to a should-like syntax. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/specrb %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/specrb %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/examples %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/SPECS %doc %{geminstdir}/ROADMAP %doc %{geminstdir}/TODO %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Wed Jul 08 2009 Lubomir Rintel (Good Data) - 0.10.0-2 - Fix up license - Consistent use of macros - Dependency on Ruby ABI * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 0.10.0-1 - Package generated by gem2rpm - Fix up plist Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:48:56 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:54:55 -0000 1.2 @@ -0,0 +1 @@ +test-spec-0.10.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:48:56 -0000 1.1 +++ sources 31 Jul 2009 05:54:55 -0000 1.2 @@ -0,0 +1 @@ +36ea0b3f04f95c756a459e156229ee62 test-spec-0.10.0.gem From lkundrak at fedoraproject.org Fri Jul 31 05:54:55 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 31 Jul 2009 05:54:55 +0000 (UTC) Subject: rpms/rubygem-test-spec/devel rubygem-test-spec.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731055455.8EF1711C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-test-spec/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2445/devel Modified Files: .cvsignore sources Added Files: rubygem-test-spec.spec Log Message: Import rubygem-test-spec --- NEW FILE rubygem-test-spec.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname test-spec %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Behaviour Driven Development interface for Test::Unit Name: rubygem-%{gemname} Version: 0.10.0 Release: 2%{?dist} Group: Development/Languages License: Ruby or GPLv2 URL: http://test-spec.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Test/spec layers an RSpec-inspired interface on top of Test::Unit, so you can mix TDD and BDD (Behavior-Driven Development). It is a clean-room implementation that maps most kinds of Test::Unit assertions to a should-like syntax. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/specrb %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/specrb %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/examples %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/SPECS %doc %{geminstdir}/ROADMAP %doc %{geminstdir}/TODO %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Wed Jul 08 2009 Lubomir Rintel (Good Data) - 0.10.0-2 - Fix up license - Consistent use of macros - Dependency on Ruby ABI * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 0.10.0-1 - Package generated by gem2rpm - Fix up plist Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:48:56 -0000 1.1 +++ .cvsignore 31 Jul 2009 05:54:55 -0000 1.2 @@ -0,0 +1 @@ +test-spec-0.10.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:48:56 -0000 1.1 +++ sources 31 Jul 2009 05:54:55 -0000 1.2 @@ -0,0 +1 @@ +36ea0b3f04f95c756a459e156229ee62 test-spec-0.10.0.gem From iarnell at fedoraproject.org Fri Jul 31 05:59:53 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Fri, 31 Jul 2009 05:59:53 +0000 (UTC) Subject: rpms/perl-App-Nopaste/devel .cvsignore, 1.3, 1.4 perl-App-Nopaste.spec, 1.7, 1.8 sources, 1.3, 1.4 Message-ID: <20090731055953.36F7411C00CE@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-App-Nopaste/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3914 Modified Files: .cvsignore perl-App-Nopaste.spec sources Log Message: * Fri Jul 31 2009 Iain Arnell 0.15-1 - update to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Nopaste/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 Jun 2009 07:13:14 -0000 1.3 +++ .cvsignore 31 Jul 2009 05:59:52 -0000 1.4 @@ -1 +1 @@ -App-Nopaste-0.11.tar.gz +App-Nopaste-0.15.tar.gz Index: perl-App-Nopaste.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Nopaste/devel/perl-App-Nopaste.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- perl-App-Nopaste.spec 26 Jul 2009 01:41:44 -0000 1.7 +++ perl-App-Nopaste.spec 31 Jul 2009 05:59:52 -0000 1.8 @@ -1,6 +1,6 @@ Name: perl-App-Nopaste -Version: 0.11 -Release: 3%{?dist} +Version: 0.15 +Release: 1%{?dist} Summary: Easy access to any pastebin License: GPL+ or Artistic Group: Development/Libraries @@ -11,13 +11,13 @@ BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Module::Pluggable) BuildRequires: perl(Moose) >= 0.74 -BuildRequires: perl(MooseX::Getopt) +BuildRequires: perl(MooseX::Getopt) >= 0.17 BuildRequires: perl(Test::More) BuildRequires: perl(WWW::Mechanize) # necessary for optional modules BuildRequires: perl(Clipboard) BuildRequires: perl(Config::INI::Reader) -BuildRequires: perl(Git) +#BuildRequires: perl(Git) BuildRequires: perl(WWW::Pastebin::PastebinCom::Create) BuildRequires: perl(WWW::Pastebin::RafbNet::Create) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 31 2009 Iain Arnell 0.15-1 +- update to latest upstream version + * Sat Jul 25 2009 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-App-Nopaste/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 Jun 2009 07:13:15 -0000 1.3 +++ sources 31 Jul 2009 05:59:52 -0000 1.4 @@ -1 +1 @@ -2ca3ce17daeee8cc5d8a20e9cf89aba6 App-Nopaste-0.11.tar.gz +1c99922772d1a33670f99da39a654c97 App-Nopaste-0.15.tar.gz From cweyl at fedoraproject.org Fri Jul 31 06:01:07 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:01:07 +0000 (UTC) Subject: rpms/perl-Mouse/F-11 perl-Mouse.spec,1.11,1.12 sources,1.10,1.11 Message-ID: <20090731060107.13F2F11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Mouse/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4408 Modified Files: perl-Mouse.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.27-1 - auto-update to 0.27 (by cpan-spec-update 0.01) Index: perl-Mouse.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/F-11/perl-Mouse.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- perl-Mouse.spec 22 Jun 2009 07:41:09 -0000 1.11 +++ perl-Mouse.spec 31 Jul 2009 06:01:06 -0000 1.12 @@ -1,5 +1,5 @@ Name: perl-Mouse -Version: 0.25 +Version: 0.27 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries @@ -81,6 +81,12 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.27-1 +- auto-update to 0.27 (by cpan-spec-update 0.01) + +* Sun Jul 26 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 0.25-1 - auto-update to 0.25 (by cpan-spec-update 0.01) - altered req on perl(Scalar::Util) (1.19 => 1.14) Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/F-11/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Jun 2009 07:41:09 -0000 1.10 +++ sources 31 Jul 2009 06:01:06 -0000 1.11 @@ -1 +1 @@ -97dbe3320902d3e769795849c26884f7 Mouse-0.25.tar.gz +4f1b209f7b6d1f34a31b2ee1037352cb Mouse-0.27.tar.gz From cweyl at fedoraproject.org Fri Jul 31 06:01:19 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:01:19 +0000 (UTC) Subject: rpms/perl-Mouse/F-10 perl-Mouse.spec,1.10,1.11 sources,1.10,1.11 Message-ID: <20090731060119.7365911C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Mouse/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4535 Modified Files: perl-Mouse.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.27-1 - auto-update to 0.27 (by cpan-spec-update 0.01) Index: perl-Mouse.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/F-10/perl-Mouse.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- perl-Mouse.spec 22 Jun 2009 07:41:18 -0000 1.10 +++ perl-Mouse.spec 31 Jul 2009 06:01:18 -0000 1.11 @@ -1,5 +1,5 @@ Name: perl-Mouse -Version: 0.25 +Version: 0.27 Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries @@ -81,6 +81,12 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.27-1 +- auto-update to 0.27 (by cpan-spec-update 0.01) + +* Sun Jul 26 2009 Fedora Release Engineering - 0.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Jun 22 2009 Chris Weyl 0.25-1 - auto-update to 0.25 (by cpan-spec-update 0.01) - altered req on perl(Scalar::Util) (1.19 => 1.14) Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Mouse/F-10/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 22 Jun 2009 07:41:18 -0000 1.10 +++ sources 31 Jul 2009 06:01:19 -0000 1.11 @@ -1 +1 @@ -97dbe3320902d3e769795849c26884f7 Mouse-0.25.tar.gz +4f1b209f7b6d1f34a31b2ee1037352cb Mouse-0.27.tar.gz From lkundrak at fedoraproject.org Fri Jul 31 06:08:02 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 31 Jul 2009 06:08:02 +0000 (UTC) Subject: rpms/rubygem-test-spec/F-11 rubygem-test-spec.spec,NONE,1.1 Message-ID: <20090731060802.9F64311C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-test-spec/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7058 Added Files: rubygem-test-spec.spec Log Message: Add forgotten file --- NEW FILE rubygem-test-spec.spec --- %global ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']") %global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null) %global gemname test-spec %global geminstdir %{gemdir}/gems/%{gemname}-%{version} Summary: Behaviour Driven Development interface for Test::Unit Name: rubygem-%{gemname} Version: 0.10.0 Release: 2%{?dist} Group: Development/Languages License: Ruby or GPLv2 URL: http://test-spec.rubyforge.org Source0: http://gems.rubyforge.org/gems/%{gemname}-%{version}.gem BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ruby(abi) = 1.8 Requires: rubygems BuildRequires: rubygems BuildArch: noarch Provides: rubygem(%{gemname}) = %{version} %description Test/spec layers an RSpec-inspired interface on top of Test::Unit, so you can mix TDD and BDD (Behavior-Driven Development). It is a clean-room implementation that maps most kinds of Test::Unit assertions to a should-like syntax. %prep %build %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{gemdir} gem install --local --install-dir $RPM_BUILD_ROOT%{gemdir} \ --force --rdoc %{SOURCE0} mkdir -p $RPM_BUILD_ROOT/%{_bindir} mv $RPM_BUILD_ROOT%{gemdir}/bin/* $RPM_BUILD_ROOT/%{_bindir} rmdir $RPM_BUILD_ROOT%{gemdir}/bin find $RPM_BUILD_ROOT%{geminstdir}/bin -type f |xargs chmod a+x %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-, root, root, -) %{_bindir}/specrb %dir %{geminstdir} %dir %{geminstdir}/bin %attr(0755,root,root) %{geminstdir}/bin/specrb %{geminstdir}/lib %{geminstdir}/Rakefile %doc %{geminstdir}/examples %doc %{geminstdir}/test %doc %{geminstdir}/README %doc %{geminstdir}/SPECS %doc %{geminstdir}/ROADMAP %doc %{geminstdir}/TODO %doc %{gemdir}/doc/%{gemname}-%{version} %{gemdir}/cache/%{gemname}-%{version}.gem %{gemdir}/specifications/%{gemname}-%{version}.gemspec %changelog * Wed Jul 08 2009 Lubomir Rintel (Good Data) - 0.10.0-2 - Fix up license - Consistent use of macros - Dependency on Ruby ABI * Thu Jun 25 2009 Lubomir Rintel (Good Data) - 0.10.0-1 - Package generated by gem2rpm - Fix up plist From cweyl at fedoraproject.org Fri Jul 31 06:09:22 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:09:22 +0000 (UTC) Subject: rpms/perl-Class-MOP/devel .cvsignore, 1.33, 1.34 perl-Class-MOP.spec, 1.39, 1.40 sources, 1.31, 1.32 Message-ID: <20090731060922.7830B11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Class-MOP/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7489 Modified Files: .cvsignore perl-Class-MOP.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.91-1 - auto-update to 0.91 (by cpan-spec-update 0.01) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/.cvsignore,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- .cvsignore 27 Jul 2009 21:07:14 -0000 1.33 +++ .cvsignore 31 Jul 2009 06:09:21 -0000 1.34 @@ -1 +1 @@ -Class-MOP-0.90.tar.gz +Class-MOP-0.91.tar.gz Index: perl-Class-MOP.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/perl-Class-MOP.spec,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- perl-Class-MOP.spec 27 Jul 2009 21:07:14 -0000 1.39 +++ perl-Class-MOP.spec 31 Jul 2009 06:09:22 -0000 1.40 @@ -1,5 +1,5 @@ Name: perl-Class-MOP -Version: 0.90 +Version: 0.91 Release: 1%{?dist} Summary: Meta object programming model for Perl 5 License: GPL+ or Artistic @@ -87,6 +87,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Fri Jul 31 2009 Chris Weyl 0.91-1 +- auto-update to 0.91 (by cpan-spec-update 0.01) + * Mon Jul 27 2009 Chris Weyl 0.90-1 - auto-update to 0.90 (by cpan-spec-update 0.01) - added a new req on perl(Carp) (version 0) Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Class-MOP/devel/sources,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- sources 27 Jul 2009 21:07:14 -0000 1.31 +++ sources 31 Jul 2009 06:09:22 -0000 1.32 @@ -1 +1 @@ -414506479d63324969c43df7be7f0a81 Class-MOP-0.90.tar.gz +8cd5d2b4bb502557a5f1f0ffaabe3fb3 Class-MOP-0.91.tar.gz From lkundrak at fedoraproject.org Fri Jul 31 06:10:48 2009 From: lkundrak at fedoraproject.org (Lubomir Rintel) Date: Fri, 31 Jul 2009 06:10:48 +0000 (UTC) Subject: rpms/rubygem-test-spec/F-11 .cvsignore,1.1,1.2 sources,1.1,1.2 Message-ID: <20090731061048.3954F11C00CE@cvs1.fedora.phx.redhat.com> Author: lkundrak Update of /cvs/pkgs/rpms/rubygem-test-spec/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7932 Modified Files: .cvsignore sources Log Message: Add forgotten files Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 04:48:56 -0000 1.1 +++ .cvsignore 31 Jul 2009 06:10:47 -0000 1.2 @@ -0,0 +1 @@ +test-spec-0.10.0.gem Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/rubygem-test-spec/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 14 Jul 2009 04:48:56 -0000 1.1 +++ sources 31 Jul 2009 06:10:48 -0000 1.2 @@ -0,0 +1 @@ +36ea0b3f04f95c756a459e156229ee62 test-spec-0.10.0.gem From cweyl at fedoraproject.org Fri Jul 31 06:53:33 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:53:33 +0000 (UTC) Subject: rpms/perl-Any-Moose/devel .cvsignore,1.3,1.4 sources,1.3,1.4 Message-ID: <20090731065333.CD1C611C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Any-Moose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20910 Modified Files: .cvsignore sources Log Message: * Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 21 May 2009 05:09:12 -0000 1.3 +++ .cvsignore 31 Jul 2009 06:53:31 -0000 1.4 @@ -1 +1 @@ -Any-Moose-0.09.tar.gz +Any-Moose-0.10.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 21 May 2009 05:09:12 -0000 1.3 +++ sources 31 Jul 2009 06:53:31 -0000 1.4 @@ -1 +1 @@ -fbae0fbd889ad3e06bf37e40e1e6fe2c Any-Moose-0.09.tar.gz +bacc0270c6dd29183fab6256dec53438 Any-Moose-0.10.tar.gz From cweyl at fedoraproject.org Fri Jul 31 06:53:53 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:53:53 +0000 (UTC) Subject: rpms/perl-Any-Moose/devel perl-Any-Moose.spec,1.3,1.4 Message-ID: <20090731065353.4BD8E11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Any-Moose/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21068 Modified Files: perl-Any-Moose.spec Log Message: * Fri Jul 31 2009 Chris Weyl 0.10-1 - auto-update to 0.10 (by cpan-spec-update 0.01) - altered req on perl(Mouse) (0.20 => 0.21) Index: perl-Any-Moose.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/devel/perl-Any-Moose.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- perl-Any-Moose.spec 26 Jul 2009 01:36:14 -0000 1.3 +++ perl-Any-Moose.spec 31 Jul 2009 06:53:53 -0000 1.4 @@ -1,18 +1,18 @@ Name: perl-Any-Moose -Version: 0.09 -Release: 2%{?dist} +Version: 0.10 +Release: 1%{?dist} # lib/Any/Moose.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Use Moose or Mouse automagically -Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Any-Moose-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Any-Moose-%{version}.tar.gz Url: http://search.cpan.org/dist/Any-Moose BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch # not automagically picked up -Requires: perl(Mouse) >= 0.20 +Requires: perl(Mouse) >= 0.21 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Mouse) >= 0.21 @@ -57,6 +57,10 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.10-1 +- auto-update to 0.10 (by cpan-spec-update 0.01) +- altered req on perl(Mouse) (0.20 => 0.21) + * Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cweyl at fedoraproject.org Fri Jul 31 06:54:26 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:54:26 +0000 (UTC) Subject: rpms/perl-Any-Moose/F-11 perl-Any-Moose.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090731065426.A634411C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Any-Moose/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21297 Modified Files: perl-Any-Moose.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.10-1 - auto-update to 0.10 (by cpan-spec-update 0.01) - altered req on perl(Mouse) (0.20 => 0.21) Index: perl-Any-Moose.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/F-11/perl-Any-Moose.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Any-Moose.spec 23 May 2009 21:23:17 -0000 1.2 +++ perl-Any-Moose.spec 31 Jul 2009 06:54:26 -0000 1.3 @@ -1,18 +1,18 @@ Name: perl-Any-Moose -Version: 0.09 +Version: 0.10 Release: 1%{?dist} # lib/Any/Moose.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Use Moose or Mouse automagically -Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Any-Moose-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Any-Moose-%{version}.tar.gz Url: http://search.cpan.org/dist/Any-Moose BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch # not automagically picked up -Requires: perl(Mouse) >= 0.20 +Requires: perl(Mouse) >= 0.21 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Mouse) >= 0.21 @@ -57,6 +57,13 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.10-1 +- auto-update to 0.10 (by cpan-spec-update 0.01) +- altered req on perl(Mouse) (0.20 => 0.21) + +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.09-1 - auto-update to 0.09 (by cpan-spec-update 0.01) - altered br on perl(Mouse) (0.20 => 0.21) Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/F-11/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 May 2009 21:23:17 -0000 1.3 +++ sources 31 Jul 2009 06:54:26 -0000 1.4 @@ -1 +1 @@ -fbae0fbd889ad3e06bf37e40e1e6fe2c Any-Moose-0.09.tar.gz +bacc0270c6dd29183fab6256dec53438 Any-Moose-0.10.tar.gz From cweyl at fedoraproject.org Fri Jul 31 06:54:46 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 06:54:46 +0000 (UTC) Subject: rpms/perl-Any-Moose/F-10 perl-Any-Moose.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090731065446.3926711C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Any-Moose/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21475 Modified Files: perl-Any-Moose.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.10-1 - auto-update to 0.10 (by cpan-spec-update 0.01) - altered req on perl(Mouse) (0.20 => 0.21) Index: perl-Any-Moose.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/F-10/perl-Any-Moose.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Any-Moose.spec 23 May 2009 21:24:35 -0000 1.2 +++ perl-Any-Moose.spec 31 Jul 2009 06:54:46 -0000 1.3 @@ -1,18 +1,18 @@ Name: perl-Any-Moose -Version: 0.09 +Version: 0.10 Release: 1%{?dist} # lib/Any/Moose.pm -> GPL+ or Artistic License: GPL+ or Artistic Group: Development/Libraries Summary: Use Moose or Mouse automagically -Source: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Any-Moose-%{version}.tar.gz +Source: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Any-Moose-%{version}.tar.gz Url: http://search.cpan.org/dist/Any-Moose BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) BuildArch: noarch # not automagically picked up -Requires: perl(Mouse) >= 0.20 +Requires: perl(Mouse) >= 0.21 BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Mouse) >= 0.21 @@ -57,6 +57,13 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 0.10-1 +- auto-update to 0.10 (by cpan-spec-update 0.01) +- altered req on perl(Mouse) (0.20 => 0.21) + +* Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu May 21 2009 Chris Weyl 0.09-1 - auto-update to 0.09 (by cpan-spec-update 0.01) - altered br on perl(Mouse) (0.20 => 0.21) Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Any-Moose/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 23 May 2009 21:24:35 -0000 1.3 +++ sources 31 Jul 2009 06:54:46 -0000 1.4 @@ -1 +1 @@ -fbae0fbd889ad3e06bf37e40e1e6fe2c Any-Moose-0.09.tar.gz +bacc0270c6dd29183fab6256dec53438 Any-Moose-0.10.tar.gz From remi at fedoraproject.org Fri Jul 31 06:59:39 2009 From: remi at fedoraproject.org (Remi Collet) Date: Fri, 31 Jul 2009 06:59:39 +0000 (UTC) Subject: rpms/php-idn/devel idn-php53.patch,NONE,1.1 php-idn.spec,1.8,1.9 Message-ID: <20090731065939.0ECAB11C00CE@cvs1.fedora.phx.redhat.com> Author: remi Update of /cvs/extras/rpms/php-idn/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23021 Modified Files: php-idn.spec Added Files: idn-php53.patch Log Message: add a php 5.3 patch (don't define function provided by php-intl) idn-php53.patch: idn.c | 4 ++++ php_idn.h | 2 ++ 2 files changed, 6 insertions(+) --- NEW FILE idn-php53.patch --- diff -up idn-1.2b/idn.c.orig idn-1.2b/idn.c --- idn-1.2b/idn.c.orig 2009-07-31 08:37:45.000000000 +0200 +++ idn-1.2b/idn.c 2009-07-31 08:41:15.000000000 +0200 @@ -104,8 +104,10 @@ function_entry idn_functions[] = { PHP_FE(idn_punycode_encode, NULL) PHP_FE(idn_punycode_decode, NULL) +#if ZEND_MODULE_API_NO < 20090626 PHP_FE(idn_to_ascii, NULL) PHP_FE(idn_to_utf8, NULL) +#endif PHP_FE(idn_to_unicode, NULL) #ifdef HAVE_IDN_TLD @@ -676,6 +678,7 @@ PHP_FUNCTION(idn_punycode_decode) /* IDNA wrappers */ /* --------------------- */ +#if ZEND_MODULE_API_NO < 20090626 /* {{{ proto string idn_to_ascii(string input [, string charset]) Convert to ACE according to IDNA */ @@ -727,6 +730,7 @@ PHP_FUNCTION(idn_to_utf8) efree(output); } /* }}} */ +#endif /* {{{ proto string idn_to_unicode(string input [, string charset]) Convert from ACE according to IDNA diff -up idn-1.2b/php_idn.h.orig idn-1.2b/php_idn.h --- idn-1.2b/php_idn.h.orig 2009-07-31 08:37:40.000000000 +0200 +++ idn-1.2b/php_idn.h 2009-07-31 08:39:29.000000000 +0200 @@ -59,8 +59,10 @@ PHP_FUNCTION(idn_prep_iscsi); PHP_FUNCTION(idn_punycode_encode); PHP_FUNCTION(idn_punycode_decode); +#if ZEND_MODULE_API_NO < 20090626 PHP_FUNCTION(idn_to_ascii); PHP_FUNCTION(idn_to_utf8); +#endif PHP_FUNCTION(idn_to_unicode); #ifdef HAVE_IDN_TLD Index: php-idn.spec =================================================================== RCS file: /cvs/extras/rpms/php-idn/devel/php-idn.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- php-idn.spec 26 Jul 2009 18:05:09 -0000 1.8 +++ php-idn.spec 31 Jul 2009 06:59:38 -0000 1.9 @@ -1,16 +1,25 @@ -%define default_apiver 20041225 +%global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) +%{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Summary: PHP API for GNU LibIDN Name: php-idn Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ Group: Development/Languages Source0: http://php-idn.bayour.com/idn_%{version}b.tar.gz Source1: idn.ini + +Patch0: idn-php53.patch + URL: http://php-idn.bayour.com/ BuildRequires: php-devel >= 4.3.0, libidn-devel >= 0.4.0, autoconf, automake, libtool -Requires: php-api = %((echo %{default_apiver}; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) +%if %{?php_zend_api}0 +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} +%else +Requires: php-api = %{php_apiver} +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -20,6 +29,9 @@ have international characters in the DNS %prep %setup -q -n idn-%{version}b + +%patch0 -p1 -b .php53 + export PHP_RPATH=no phpize %configure @@ -38,10 +50,16 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc CHANGES CREDITS GPL README.documentation THANX_TO idn.php -%{_libdir}/php/modules/idn.so +%{php_extdir}/idn.so %config(noreplace) %{_sysconfdir}/php.d/idn.ini %changelog +* Fri Jul 31 2009 Remi Collet 1.2-7 +- rebuild for new PHP 5.3.0 ABI (20090626) +- better PHP ABI check +- use php_extdir +- patch for PHP 5.3.0 provided functions + * Sun Jul 26 2009 Fedora Release Engineering - 1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hubbitus at fedoraproject.org Fri Jul 31 07:02:50 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Fri, 31 Jul 2009 07:02:50 +0000 (UTC) Subject: rpms/php-pecl-runkit/devel php-pecl-runkit.spec,1.3,1.4 Message-ID: <20090731070250.D324311C00CE@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-runkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24042 Modified Files: php-pecl-runkit.spec Log Message: Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-runkit/devel/php-pecl-runkit.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- php-pecl-runkit.spec 26 Jul 2009 18:36:25 -0000 1.3 +++ php-pecl-runkit.spec 31 Jul 2009 07:02:50 -0000 1.4 @@ -11,11 +11,7 @@ Summary(ru): ??????????????????????????? Summary(pl): Obr??bka zdefiniowanych przez u??ytkownika funkcji i klas Name: php-pecl-%{peclName} Version: 0.9 -%if 0%{?CVS:1} -Release: 12.CVS%{CVS}%{?dist} -%else -Release: 10%{?dist} -%endif +Release: 12%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -26,7 +22,7 @@ Source0: http://pecl.php.net/get/%{pecl %endif # Source0-md5: 05a690f04b7d2c42193f3e0c1bb99a19 URL: http://pecl.php.net/package/runkit/ -BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 +BuildRequires: php-pear, php-devel Requires(post): %{__pecl} Requires(postun): %{__pecl} %if %{?php_zend_api}0 @@ -63,9 +59,12 @@ og??lnego u??ytku. Wykonywanie danego ko %setup -q -c cd %{peclName} +# Patch set intended only for PHP version greater than 5.3.0 +%if %( php -r 'echo version_compare(PHP_VERSION, "5.3.0", ">=") ? 1 : 0;' ) %patch0 -p2 -b .zrefcount %patch1 -p2 -b .zaddref %patch3 -p2 -b .new_refcount +%endif %build cd %{peclName} @@ -114,11 +113,13 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog -* Sun Jul 26 2009 Fedora Release Engineering - 0.9-12.CVS20090215 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +* Thu Jul 30 2009 Pavel Alexeev - 0.9-12.CVS20090215 +- Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) -* Mon Jul 13 2009 Remi Collet - 0.9-11.CVS20090215 -- rebuild for new PHP 5.3.0 ABI (20090626) +* Sun Apr 5 2009 Pavel Alexeev - 0.9-11.CVS20090215 +- By suggestion in the bug https://fedorahosted.org/fedora-infrastructure/ticket/1298 try remove version specifications in requires: + Turn BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 to just BuildRequires: php-pear, php-devel +- Add more magick in Release tag: 11%%{?CVS:.CVS%%{CVS}}%%{?dist} * Tue Mar 17 2009 Pavel Alexeev - 0.9-10.CVS20090215 - Remi Collet notes in Fedora review: @@ -220,8 +221,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.3 2009/07/26 18:36:25 jkeating -#- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild +#Revision 1.4 2009/07/31 07:02:50 hubbitus +#Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From hubbitus at fedoraproject.org Fri Jul 31 07:08:15 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Fri, 31 Jul 2009 07:08:15 +0000 (UTC) Subject: rpms/php-pecl-runkit/F-10 php-pecl-runkit.spec,1.1,1.2 Message-ID: <20090731070816.2204311C00CE@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-runkit/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25695 Modified Files: php-pecl-runkit.spec Log Message: Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-runkit/F-10/php-pecl-runkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-runkit.spec 24 Mar 2009 21:19:13 -0000 1.1 +++ php-pecl-runkit.spec 31 Jul 2009 07:08:13 -0000 1.2 @@ -11,11 +11,7 @@ Summary(ru): ??????????????????????????? Summary(pl): Obr??bka zdefiniowanych przez u??ytkownika funkcji i klas Name: php-pecl-%{peclName} Version: 0.9 -%if 0%{?CVS:1} -Release: 10.CVS%{CVS}%{?dist} -%else -Release: 10%{?dist} -%endif +Release: 12%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -26,7 +22,7 @@ Source0: http://pecl.php.net/get/%{pecl %endif # Source0-md5: 05a690f04b7d2c42193f3e0c1bb99a19 URL: http://pecl.php.net/package/runkit/ -BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 +BuildRequires: php-pear, php-devel Requires(post): %{__pecl} Requires(postun): %{__pecl} %if %{?php_zend_api}0 @@ -63,9 +59,12 @@ og??lnego u??ytku. Wykonywanie danego ko %setup -q -c cd %{peclName} +# Patch set intended only for PHP version greater than 5.3.0 +%if %( php -r 'echo version_compare(PHP_VERSION, "5.3.0", ">=") ? 1 : 0;' ) %patch0 -p2 -b .zrefcount %patch1 -p2 -b .zaddref %patch3 -p2 -b .new_refcount +%endif %build cd %{peclName} @@ -114,6 +113,14 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog +* Thu Jul 30 2009 Pavel Alexeev - 0.9-12.CVS20090215 +- Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) + +* Sun Apr 5 2009 Pavel Alexeev - 0.9-11.CVS20090215 +- By suggestion in the bug https://fedorahosted.org/fedora-infrastructure/ticket/1298 try remove version specifications in requires: + Turn BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 to just BuildRequires: php-pear, php-devel +- Add more magick in Release tag: 11%%{?CVS:.CVS%%{CVS}}%%{?dist} + * Tue Mar 17 2009 Pavel Alexeev - 0.9-10.CVS20090215 - Remi Collet notes in Fedora review: - Rename back %%{peclName}.xml to %%{name}.xml :) @@ -214,8 +221,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.1 2009/03/24 21:19:13 hubbitus -#Initial push php-pecl-runkit to Fedora +#Revision 1.2 2009/07/31 07:08:13 hubbitus +#Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From cebbert at fedoraproject.org Fri Jul 31 07:08:28 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 31 Jul 2009 07:08:28 +0000 (UTC) Subject: rpms/kernel/F-10 kernel.spec,1.1206.2.76,1.1206.2.77 Message-ID: <20090731070828.95D3D11C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25828 Modified Files: Tag: private-fedora-10-2_6_27 kernel.spec Log Message: fix version in changelog Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.76 retrieving revision 1.1206.2.77 diff -u -p -r1.1206.2.76 -r1.1206.2.77 --- kernel.spec 31 Jul 2009 02:33:59 -0000 1.1206.2.76 +++ kernel.spec 31 Jul 2009 07:08:27 -0000 1.1206.2.77 @@ -1988,10 +1988,10 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog -* Thu Jul 30 2009 Chuck Ebbert 2.6.27.28-170.2.76 +* Thu Jul 30 2009 Chuck Ebbert 2.6.27.29-170.2.77 - Linux 2.6.27.29 -* Wed Jul 29 2009 Chuck Ebbert 2.6.27.28-170.2.75 +* Wed Jul 29 2009 Chuck Ebbert 2.6.27.29-170.2.75.rc1 - Linux 2.6.27.29-rc1 (CVE-2009-2406, CVE-2009-2407) - Drop linux-2.6-netdev-r8169-avoid-losing-msi-interrupts.patch, now in -stable. From mgrepl at fedoraproject.org Fri Jul 31 07:14:14 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 31 Jul 2009 07:14:14 +0000 (UTC) Subject: rpms/selinux-policy/F-10 policy-20080710.patch, 1.174, 1.175 selinux-policy.spec, 1.802, 1.803 Message-ID: <20090731071414.A55B211C00CE@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28122 Modified Files: policy-20080710.patch selinux-policy.spec Log Message: - Allow lircd read/write input event devices policy-20080710.patch: Makefile | 26 Rules.modular | 18 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/guest_u_default_contexts | 6 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 2 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/xguest_u_default_contexts | 7 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/guest_u_default_contexts | 4 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/staff_u_default_contexts | 2 config/appconfig-mls/user_u_default_contexts | 2 config/appconfig-mls/xguest_u_default_contexts | 7 config/appconfig-standard/guest_u_default_contexts | 4 config/appconfig-standard/root_default_contexts | 6 config/appconfig-standard/staff_u_default_contexts | 2 config/appconfig-standard/user_u_default_contexts | 2 config/appconfig-standard/xguest_u_default_contexts | 5 man/man8/nfs_selinux.8 | 19 man/man8/samba_selinux.8 | 12 policy/flask/access_vectors | 1 policy/global_tunables | 20 policy/mcs | 8 policy/mls | 9 policy/modules/admin/alsa.te | 1 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 4 policy/modules/admin/consoletype.te | 11 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 49 policy/modules/admin/logrotate.te | 14 policy/modules/admin/logwatch.te | 11 policy/modules/admin/mrtg.te | 1 policy/modules/admin/netutils.te | 11 policy/modules/admin/prelink.te | 18 policy/modules/admin/rpm.fc | 10 policy/modules/admin/rpm.if | 290 +++ policy/modules/admin/rpm.te | 40 policy/modules/admin/su.if | 69 policy/modules/admin/sudo.if | 55 policy/modules/admin/tmpreaper.te | 24 policy/modules/admin/usermanage.te | 19 policy/modules/admin/vbetool.if | 31 policy/modules/admin/vbetool.te | 9 policy/modules/admin/vpn.if | 36 policy/modules/apps/awstats.te | 6 policy/modules/apps/ethereal.fc | 2 policy/modules/apps/ethereal.if | 54 policy/modules/apps/ethereal.te | 7 policy/modules/apps/games.if | 28 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 94 policy/modules/apps/gitosis.te | 43 policy/modules/apps/gnome.fc | 14 policy/modules/apps/gnome.if | 171 + policy/modules/apps/gnome.te | 31 policy/modules/apps/gpg.fc | 8 policy/modules/apps/gpg.if | 304 --- policy/modules/apps/gpg.te | 248 ++ policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 188 + policy/modules/apps/java.te | 31 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 56 policy/modules/apps/livecd.te | 26 policy/modules/apps/loadkeys.te | 5 policy/modules/apps/mono.if | 103 + policy/modules/apps/mono.te | 6 policy/modules/apps/mozilla.fc | 13 policy/modules/apps/mozilla.if | 325 +-- policy/modules/apps/mozilla.te | 19 policy/modules/apps/mplayer.fc | 8 policy/modules/apps/mplayer.if | 64 policy/modules/apps/mplayer.te | 4 policy/modules/apps/nsplugin.fc | 13 policy/modules/apps/nsplugin.if | 318 +++ policy/modules/apps/nsplugin.te | 290 +++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 106 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/podsleuth.fc | 2 policy/modules/apps/podsleuth.if | 34 policy/modules/apps/podsleuth.te | 44 policy/modules/apps/qemu.fc | 5 policy/modules/apps/qemu.if | 367 +++ policy/modules/apps/qemu.te | 152 + policy/modules/apps/sambagui.fc | 4 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 62 policy/modules/apps/screen.fc | 2 policy/modules/apps/screen.if | 24 policy/modules/apps/screen.te | 4 policy/modules/apps/slocate.te | 4 policy/modules/apps/thunderbird.fc | 2 policy/modules/apps/thunderbird.if | 34 policy/modules/apps/thunderbird.te | 4 policy/modules/apps/tvtime.if | 39 policy/modules/apps/tvtime.te | 6 policy/modules/apps/uml.fc | 2 policy/modules/apps/vmware.fc | 19 policy/modules/apps/vmware.if | 14 policy/modules/apps/vmware.te | 17 policy/modules/apps/webalizer.te | 2 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 50 policy/modules/apps/wine.te | 8 policy/modules/apps/wireshark.if | 2 policy/modules/apps/wm.fc | 3 policy/modules/apps/wm.if | 178 + policy/modules/apps/wm.te | 10 policy/modules/kernel/.filesystem.if.swp |binary policy/modules/kernel/corecommands.fc | 47 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.if.in | 46 policy/modules/kernel/corenetwork.te.in | 41 policy/modules/kernel/devices.fc | 46 policy/modules/kernel/devices.if | 541 +++++ policy/modules/kernel/devices.te | 45 policy/modules/kernel/domain.if | 22 policy/modules/kernel/domain.te | 53 policy/modules/kernel/files.fc | 2 policy/modules/kernel/files.if | 304 +++ policy/modules/kernel/files.te | 11 policy/modules/kernel/filesystem.if | 356 +++ policy/modules/kernel/filesystem.te | 18 policy/modules/kernel/kernel.if | 42 policy/modules/kernel/kernel.te | 16 policy/modules/kernel/selinux.if | 54 policy/modules/kernel/selinux.te | 6 policy/modules/kernel/storage.fc | 2 policy/modules/kernel/storage.if | 1 policy/modules/kernel/terminal.if | 6 policy/modules/roles/.staff.te.swp |binary policy/modules/roles/guest.fc | 1 policy/modules/roles/guest.if | 161 + policy/modules/roles/guest.te | 36 policy/modules/roles/logadm.fc | 1 policy/modules/roles/logadm.if | 44 policy/modules/roles/logadm.te | 20 policy/modules/roles/staff.te | 58 policy/modules/roles/sysadm.if | 114 - policy/modules/roles/sysadm.te | 14 policy/modules/roles/unprivuser.if | 605 ++++++ policy/modules/roles/unprivuser.te | 15 policy/modules/roles/webadm.fc | 1 policy/modules/roles/webadm.if | 44 policy/modules/roles/webadm.te | 65 policy/modules/roles/xguest.fc | 1 policy/modules/roles/xguest.if | 161 + policy/modules/roles/xguest.te | 87 policy/modules/services/aide.if | 6 policy/modules/services/amavis.if | 20 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 488 +++-- policy/modules/services/apache.te | 397 +++- policy/modules/services/apcupsd.fc | 2 policy/modules/services/arpwatch.fc | 1 policy/modules/services/arpwatch.if | 42 policy/modules/services/arpwatch.te | 3 policy/modules/services/asterisk.fc | 1 policy/modules/services/asterisk.if | 53 policy/modules/services/asterisk.te | 3 policy/modules/services/audioentropy.fc | 2 policy/modules/services/audioentropy.te | 1 policy/modules/services/automount.if | 18 policy/modules/services/automount.te | 6 policy/modules/services/avahi.fc | 4 policy/modules/services/avahi.if | 132 + policy/modules/services/avahi.te | 15 policy/modules/services/bind.fc | 7 policy/modules/services/bind.if | 92 policy/modules/services/bind.te | 5 policy/modules/services/bitlbee.te | 2 policy/modules/services/bluetooth.fc | 5 policy/modules/services/bluetooth.if | 53 policy/modules/services/bluetooth.te | 22 policy/modules/services/certmaster.fc | 9 policy/modules/services/certmaster.if | 128 + policy/modules/services/certmaster.te | 81 policy/modules/services/clamav.fc | 12 policy/modules/services/clamav.if | 105 + policy/modules/services/clamav.te | 35 policy/modules/services/consolekit.fc | 3 policy/modules/services/consolekit.if | 21 policy/modules/services/consolekit.te | 64 policy/modules/services/courier.fc | 2 policy/modules/services/courier.if | 19 policy/modules/services/courier.te | 4 policy/modules/services/cron.fc | 10 policy/modules/services/cron.if | 250 +- policy/modules/services/cron.te | 112 - policy/modules/services/cups.fc | 32 policy/modules/services/cups.if | 106 + policy/modules/services/cups.te | 186 + policy/modules/services/cvs.te | 1 policy/modules/services/cyphesis.fc | 5 policy/modules/services/cyrus.te | 1 policy/modules/services/dbus.fc | 3 policy/modules/services/dbus.if | 235 ++ policy/modules/services/dbus.te | 57 policy/modules/services/dcc.fc | 2 policy/modules/services/dcc.if | 18 policy/modules/services/dcc.te | 62 policy/modules/services/dhcp.fc | 1 policy/modules/services/dhcp.if | 60 policy/modules/services/dhcp.te | 18 policy/modules/services/dnsmasq.fc | 3 policy/modules/services/dnsmasq.if | 174 + policy/modules/services/dnsmasq.te | 22 policy/modules/services/dovecot.fc | 12 policy/modules/services/dovecot.if | 98 + policy/modules/services/dovecot.te | 98 - policy/modules/services/exim.if | 40 policy/modules/services/exim.te | 102 - policy/modules/services/fail2ban.fc | 1 policy/modules/services/fail2ban.if | 45 policy/modules/services/fail2ban.te | 10 policy/modules/services/fetchmail.fc | 2 policy/modules/services/fetchmail.if | 26 policy/modules/services/fetchmail.te | 10 policy/modules/services/ftp.te | 53 policy/modules/services/gamin.fc | 2 policy/modules/services/gamin.if | 57 policy/modules/services/gamin.te | 39 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 75 policy/modules/services/gnomeclock.te | 55 policy/modules/services/gpsd.fc | 3 policy/modules/services/gpsd.if | 89 policy/modules/services/gpsd.te | 55 policy/modules/services/hal.fc | 4 policy/modules/services/hal.if | 39 policy/modules/services/hal.te | 112 + policy/modules/services/inetd.fc | 2 policy/modules/services/inetd.te | 2 policy/modules/services/kerberos.fc | 6 policy/modules/services/kerberos.te | 3 policy/modules/services/kerneloops.if | 23 policy/modules/services/kerneloops.te | 6 policy/modules/services/ktalk.te | 1 policy/modules/services/ldap.te | 6 policy/modules/services/lircd.fc | 9 policy/modules/services/lircd.if | 100 + policy/modules/services/lircd.te | 70 policy/modules/services/lpd.fc | 6 policy/modules/services/mailman.fc | 1 policy/modules/services/mailman.if | 28 policy/modules/services/mailman.te | 33 policy/modules/services/mailscanner.fc | 2 policy/modules/services/mailscanner.if | 59 policy/modules/services/mailscanner.te | 5 policy/modules/services/milter.fc | 15 policy/modules/services/milter.if | 104 + policy/modules/services/milter.te | 107 + policy/modules/services/mta.fc | 10 policy/modules/services/mta.if | 70 policy/modules/services/mta.te | 76 policy/modules/services/munin.fc | 7 policy/modules/services/munin.if | 92 policy/modules/services/munin.te | 77 policy/modules/services/mysql.fc | 3 policy/modules/services/mysql.if | 128 + policy/modules/services/mysql.te | 53 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 71 policy/modules/services/nagios.te | 58 policy/modules/services/networkmanager.fc | 12 policy/modules/services/networkmanager.if | 18 policy/modules/services/networkmanager.te | 106 - policy/modules/services/nis.fc | 6 policy/modules/services/nis.if | 126 + policy/modules/services/nis.te | 27 policy/modules/services/nscd.fc | 1 policy/modules/services/nscd.if | 126 + policy/modules/services/nscd.te | 32 policy/modules/services/ntp.if | 57 policy/modules/services/ntp.te | 19 policy/modules/services/oddjob.fc | 2 policy/modules/services/oddjob.if | 32 policy/modules/services/oddjob.te | 28 policy/modules/services/openvpn.fc | 1 policy/modules/services/openvpn.if | 36 policy/modules/services/openvpn.te | 19 policy/modules/services/pads.fc | 12 policy/modules/services/pads.if | 10 policy/modules/services/pads.te | 68 policy/modules/services/pcscd.fc | 1 policy/modules/services/pcscd.te | 12 policy/modules/services/pegasus.te | 28 policy/modules/services/pingd.fc | 11 policy/modules/services/pingd.if | 99 + policy/modules/services/pingd.te | 54 policy/modules/services/pki.fc | 46 policy/modules/services/pki.if | 643 ++++++ policy/modules/services/pki.te | 91 policy/modules/services/polkit.fc | 9 policy/modules/services/polkit.if | 233 ++ policy/modules/services/polkit.te | 235 ++ policy/modules/services/portmap.te | 1 policy/modules/services/portreserve.fc | 12 policy/modules/services/portreserve.if | 70 policy/modules/services/portreserve.te | 55 policy/modules/services/postfix.fc | 6 policy/modules/services/postfix.if | 136 + policy/modules/services/postfix.te | 134 + policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 11 policy/modules/services/postgrey.fc | 4 policy/modules/services/postgrey.if | 67 policy/modules/services/postgrey.te | 19 policy/modules/services/ppp.fc | 6 policy/modules/services/ppp.if | 64 policy/modules/services/ppp.te | 38 policy/modules/services/prelude.fc | 14 policy/modules/services/prelude.if | 71 policy/modules/services/prelude.te | 193 ++ policy/modules/services/privoxy.fc | 2 policy/modules/services/privoxy.if | 12 policy/modules/services/privoxy.te | 17 policy/modules/services/procmail.fc | 3 policy/modules/services/procmail.if | 38 policy/modules/services/procmail.te | 35 policy/modules/services/psad.fc | 17 policy/modules/services/psad.if | 304 +++ policy/modules/services/psad.te | 107 + policy/modules/services/pyzor.fc | 6 policy/modules/services/pyzor.if | 61 policy/modules/services/pyzor.te | 51 policy/modules/services/qmail.te | 8 policy/modules/services/radius.te | 3 policy/modules/services/radvd.te | 2 policy/modules/services/razor.fc | 4 policy/modules/services/razor.if | 87 policy/modules/services/razor.te | 38 policy/modules/services/ricci.te | 18 policy/modules/services/rlogin.te | 16 policy/modules/services/roundup.fc | 2 policy/modules/services/roundup.if | 38 policy/modules/services/roundup.te | 3 policy/modules/services/rpc.fc | 1 policy/modules/services/rpc.if | 43 policy/modules/services/rpc.te | 33 policy/modules/services/rpcbind.fc | 2 policy/modules/services/rpcbind.te | 3 policy/modules/services/rshd.te | 17 policy/modules/services/rsync.fc | 2 policy/modules/services/rsync.te | 11 policy/modules/services/samba.fc | 8 policy/modules/services/samba.if | 387 ++++ policy/modules/services/samba.te | 209 +- policy/modules/services/sasl.te | 5 policy/modules/services/sendmail.if | 103 + policy/modules/services/sendmail.te | 92 policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 48 policy/modules/services/setroubleshoot.te | 31 policy/modules/services/smartmon.te | 12 policy/modules/services/snmp.fc | 6 policy/modules/services/snmp.if | 36 policy/modules/services/snmp.te | 28 policy/modules/services/snort.if | 9 policy/modules/services/snort.te | 9 policy/modules/services/spamassassin.fc | 16 policy/modules/services/spamassassin.if | 472 ++-- policy/modules/services/spamassassin.te | 219 ++ policy/modules/services/squid.fc | 4 policy/modules/services/squid.if | 18 policy/modules/services/squid.te | 8 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 151 + policy/modules/services/ssh.te | 43 policy/modules/services/stunnel.fc | 1 policy/modules/services/stunnel.te | 3 policy/modules/services/sysstat.te | 2 policy/modules/services/telnet.te | 4 policy/modules/services/tftp.te | 1 policy/modules/services/tor.te | 2 policy/modules/services/ulogd.fc | 10 policy/modules/services/ulogd.if | 127 + policy/modules/services/ulogd.te | 54 policy/modules/services/uucp.fc | 7 policy/modules/services/uucp.te | 14 policy/modules/services/virt.fc | 1 policy/modules/services/virt.if | 94 policy/modules/services/virt.te | 47 policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 40 policy/modules/services/xserver.if | 915 +++++++-- policy/modules/services/xserver.te | 317 +++ policy/modules/services/zebra.te | 2 policy/modules/services/zosremote.fc | 2 policy/modules/services/zosremote.if | 52 policy/modules/services/zosremote.te | 36 policy/modules/system/application.te | 6 policy/modules/system/authlogin.fc | 10 policy/modules/system/authlogin.if | 212 ++ policy/modules/system/authlogin.te | 46 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 5 policy/modules/system/init.if | 129 + policy/modules/system/init.te | 114 + policy/modules/system/ipsec.fc | 3 policy/modules/system/ipsec.te | 47 policy/modules/system/iptables.fc | 16 policy/modules/system/iptables.te | 13 policy/modules/system/iscsi.te | 4 policy/modules/system/libraries.fc | 88 policy/modules/system/libraries.te | 18 policy/modules/system/locallogin.te | 26 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 25 policy/modules/system/logging.te | 18 policy/modules/system/lvm.fc | 2 policy/modules/system/lvm.te | 66 policy/modules/system/miscfiles.if | 39 policy/modules/system/modutils.te | 40 policy/modules/system/mount.fc | 8 policy/modules/system/mount.if | 21 policy/modules/system/mount.te | 81 policy/modules/system/raid.te | 4 policy/modules/system/selinuxutil.fc | 10 policy/modules/system/selinuxutil.if | 373 +++ policy/modules/system/selinuxutil.te | 229 -- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 15 policy/modules/system/sysnetwork.if | 82 policy/modules/system/sysnetwork.te | 72 policy/modules/system/udev.fc | 4 policy/modules/system/udev.if | 28 policy/modules/system/udev.te | 16 policy/modules/system/unconfined.fc | 34 policy/modules/system/unconfined.if | 300 +++ policy/modules/system/unconfined.te | 209 +- policy/modules/system/userdomain.fc | 9 policy/modules/system/userdomain.if | 1899 ++++++++++++++------ policy/modules/system/userdomain.te | 89 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 50 policy/modules/system/xen.te | 127 + policy/policy_capabilities | 2 policy/support/obj_perm_sets.spt | 74 policy/users | 13 support/Makefile.devel | 3 452 files changed, 22211 insertions(+), 3611 deletions(-) Index: policy-20080710.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/policy-20080710.patch,v retrieving revision 1.174 retrieving revision 1.175 diff -u -p -r1.174 -r1.175 --- policy-20080710.patch 20 Jul 2009 13:25:09 -0000 1.174 +++ policy-20080710.patch 31 Jul 2009 07:14:11 -0000 1.175 @@ -18687,8 +18687,8 @@ diff --exclude-from=exclude -N -u -r nsa + diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/lircd.te serefpolicy-3.5.13/policy/modules/services/lircd.te --- nsaserefpolicy/policy/modules/services/lircd.te 1970-01-01 01:00:00.000000000 +0100 -+++ serefpolicy-3.5.13/policy/modules/services/lircd.te 2009-04-17 10:05:39.000000000 +0200 -@@ -0,0 +1,69 @@ ++++ serefpolicy-3.5.13/policy/modules/services/lircd.te 2009-07-30 17:15:19.000000000 +0200 +@@ -0,0 +1,70 @@ +policy_module(lircd,1.0.0) + +######################################## @@ -18737,6 +18737,7 @@ diff --exclude-from=exclude -N -u -r nsa +dev_filetrans(lircd_t, lircd_sock_t, sock_file ) + +dev_filetrans_lirc(lircd_t) ++dev_rw_input_dev(lircd_t) +dev_rw_lirc(lircd_t) + +dev_read_generic_usb_dev(lircd_t) @@ -33829,7 +33830,7 @@ diff --exclude-from=exclude -N -u -r nsa allow iscsid_t iscsi_tmp_t:dir manage_dir_perms; diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/libraries.fc serefpolicy-3.5.13/policy/modules/system/libraries.fc --- nsaserefpolicy/policy/modules/system/libraries.fc 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/libraries.fc 2009-06-29 15:07:26.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/system/libraries.fc 2009-07-30 17:12:05.000000000 +0200 @@ -60,12 +60,15 @@ # # /opt @@ -33874,7 +33875,7 @@ diff --exclude-from=exclude -N -u -r nsa /opt/f-secure/fspms/libexec/librapi\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /opt/ibm/java.*/jre/.+\.jar -- gen_context(system_u:object_r:lib_t,s0) /opt/ibm/java.*/jre/.+\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -115,24 +120,35 @@ +@@ -115,24 +120,36 @@ /usr/(.*/)?nvidia/.+\.so(\..*)? -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33898,7 +33899,9 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib(64)?/fglrx/libGL\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libGLU\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libjs\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) - /usr/lib(64)?/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) +-/usr/lib(64)?/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) ++/usr/lib(64)?/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) ++/usr/lib(64)?/libnnz11.so(\.[^/]*)* gen_context(system_u:object_r:textrel_shlib_t,s0) +/usr/lib(64)?/sse2/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?(/.*)?/libnvidia.+\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?(/.*)?/nvidia_drv.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33910,7 +33913,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib(64)?/xulrunner-[^/]*/libgtkembedmoz\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/xulrunner-[^/]*/libxul\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -168,7 +184,8 @@ +@@ -168,7 +185,8 @@ # Fedora Core packages: gstreamer-plugins, compat-libstdc++, Glide3, libdv # HelixPlayer, SDL, xorg-x11, xorg-x11-libs, Hermes, valgrind, openoffice.org-libs, httpd - php /usr/lib(64)?/gstreamer-.*/[^/]*\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33920,7 +33923,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib/firefox-[^/]*/plugins/nppdf.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/libFLAC\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -180,6 +197,7 @@ +@@ -180,6 +198,7 @@ /usr/lib/VBoxVMM\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib64/mozilla/plugins/libvlcplugin\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33928,7 +33931,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib(64)?/libstdc\+\+\.so\.2\.7\.2\.8 -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libg\+\+\.so\.2\.7\.2\.8 -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libglide3\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -187,12 +205,14 @@ +@@ -187,12 +206,14 @@ /usr/lib(64)?/libdv\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/helix/plugins/[^/]*\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/helix/codecs/[^/]*\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33943,7 +33946,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib(64)?/libHermes\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/valgrind/hp2ps -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/valgrind/stage2 -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -208,6 +228,9 @@ +@@ -208,6 +229,9 @@ /usr/lib(64)?/.*/program/libsoffice\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/(.*/)?pcsc/drivers(/.*)?/lib(cm2020|cm4000|SCR24x)\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33953,7 +33956,7 @@ diff --exclude-from=exclude -N -u -r nsa # Fedora Extras packages: ladspa, imlib2, ocaml /usr/lib(64)?/ladspa/analogue_osc_1416\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/ladspa/bandpass_a_iir_1893\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -233,7 +256,7 @@ +@@ -233,7 +257,7 @@ /usr/lib(64)?/php/modules/.+\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) # Livna.org packages: xmms-mp3, ffmpeg, xvidcore, xine-lib, gsm, lame @@ -33962,7 +33965,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/lib(64)?/codecs/drv[1-9c]\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libpostproc\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libavformat.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -246,13 +269,16 @@ +@@ -246,13 +270,16 @@ # Flash plugin, Macromedia HOME_DIR/\.mozilla(/.*)?/plugins/libflashplayer\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -33981,7 +33984,7 @@ diff --exclude-from=exclude -N -u -r nsa # Jai, Sun Microsystems (Jpackage SPRM) /usr/lib(64)?/libmlib_jai\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libdivxdecore\.so\.0 -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -263,10 +289,14 @@ +@@ -263,10 +290,14 @@ /usr/lib(64)?/python2.4/site-packages/M2Crypto/__m2crypto\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) # vmware @@ -33996,7 +33999,7 @@ diff --exclude-from=exclude -N -u -r nsa # Java, Sun Microsystems (JPackage SRPM) /usr/(.*/)?jre.*/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/local/(.*/)?jre.*/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -283,6 +313,7 @@ +@@ -283,6 +314,7 @@ /usr/(local/)?matlab.*/bin/glnx86/libmwlapack\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/(local/)?matlab.*/bin/glnx86/(libmw(lapack|mathutil|services)|lapack|libmkl)\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/(local/)?matlab.*/sys/os/glnx86/libtermcap\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -34004,7 +34007,7 @@ diff --exclude-from=exclude -N -u -r nsa /usr/(.*/)?intellinux/SPPlugins/ADMPlugin\.apl -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -291,6 +322,8 @@ +@@ -291,6 +323,8 @@ /usr/lib/acroread/(.*/)?lib/[^/]*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/acroread/.+\.api -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/acroread/(.*/)?ADMPlugin\.apl -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -34013,7 +34016,7 @@ diff --exclude-from=exclude -N -u -r nsa ') dnl end distro_redhat # -@@ -307,6 +340,36 @@ +@@ -307,6 +341,36 @@ /var/lib/samba/bin/.+\.so(\.[^/]*)* -l gen_context(system_u:object_r:lib_t,s0) ') @@ -36220,8 +36223,15 @@ diff --exclude-from=exclude -N -u -r nsa xen_append_log(ifconfig_t) diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.fc serefpolicy-3.5.13/policy/modules/system/udev.fc --- nsaserefpolicy/policy/modules/system/udev.fc 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/udev.fc 2009-02-10 15:07:15.000000000 +0100 -@@ -13,8 +13,11 @@ ++++ serefpolicy-3.5.13/policy/modules/system/udev.fc 2009-07-30 17:22:23.000000000 +0200 +@@ -7,14 +7,18 @@ + /etc/dev\.d/.+ -- gen_context(system_u:object_r:udev_helper_exec_t,s0) + + /etc/hotplug\.d/default/udev.* -- gen_context(system_u:object_r:udev_helper_exec_t,s0) ++/etc/udev/rules\.d(/.*)? gen_context(system_u:object_r:udev_var_run_t,s0) + + /etc/udev/scripts/.+ -- gen_context(system_u:object_r:udev_helper_exec_t,s0) + /sbin/start_udev -- gen_context(system_u:object_r:udev_exec_t,s0) /sbin/udev -- gen_context(system_u:object_r:udev_exec_t,s0) /sbin/udevd -- gen_context(system_u:object_r:udev_exec_t,s0) @@ -36291,8 +36301,16 @@ diff --exclude-from=exclude -N -u -r nsa ') diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.te serefpolicy-3.5.13/policy/modules/system/udev.te --- nsaserefpolicy/policy/modules/system/udev.te 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/udev.te 2009-02-10 15:07:15.000000000 +0100 -@@ -83,6 +83,7 @@ ++++ serefpolicy-3.5.13/policy/modules/system/udev.te 2009-07-30 17:22:08.000000000 +0200 +@@ -70,6 +70,7 @@ + + manage_dirs_pattern(udev_t,udev_var_run_t,udev_var_run_t) + manage_files_pattern(udev_t,udev_var_run_t,udev_var_run_t) ++manage_lnk_files_pattern(udev_t, udev_var_run_t, udev_var_run_t) + files_pid_filetrans(udev_t,udev_var_run_t,{ dir file }) + + kernel_read_system_state(udev_t) +@@ -83,6 +84,7 @@ kernel_rw_unix_dgram_sockets(udev_t) kernel_dgram_send(udev_t) kernel_signal(udev_t) @@ -36300,7 +36318,7 @@ diff --exclude-from=exclude -N -u -r nsa #https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=235182 kernel_rw_net_sysctls(udev_t) -@@ -142,6 +143,7 @@ +@@ -142,6 +144,7 @@ logging_search_logs(udev_t) logging_send_syslog_msg(udev_t) @@ -36308,7 +36326,7 @@ diff --exclude-from=exclude -N -u -r nsa miscfiles_read_localization(udev_t) -@@ -189,6 +191,7 @@ +@@ -189,6 +192,7 @@ optional_policy(` alsa_domtrans(udev_t) @@ -36316,7 +36334,7 @@ diff --exclude-from=exclude -N -u -r nsa alsa_read_rw_config(udev_t) ') -@@ -197,6 +200,10 @@ +@@ -197,6 +201,10 @@ ') optional_policy(` @@ -36327,7 +36345,7 @@ diff --exclude-from=exclude -N -u -r nsa consoletype_exec(udev_t) ') -@@ -233,6 +240,10 @@ +@@ -233,6 +241,10 @@ ') optional_policy(` @@ -36338,7 +36356,7 @@ diff --exclude-from=exclude -N -u -r nsa kernel_write_xen_state(udev_t) kernel_read_xen_state(udev_t) xen_manage_log(udev_t) -@@ -240,5 +251,9 @@ +@@ -240,5 +252,9 @@ ') optional_policy(` @@ -37132,7 +37150,7 @@ diff --exclude-from=exclude -N -u -r nsa +/root(/.*)? gen_context(system_u:object_r:admin_home_t,s0) diff --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.if serefpolicy-3.5.13/policy/modules/system/userdomain.if --- nsaserefpolicy/policy/modules/system/userdomain.if 2008-10-17 14:49:13.000000000 +0200 -+++ serefpolicy-3.5.13/policy/modules/system/userdomain.if 2009-07-20 14:40:31.000000000 +0200 ++++ serefpolicy-3.5.13/policy/modules/system/userdomain.if 2009-07-31 08:38:31.000000000 +0200 @@ -28,10 +28,14 @@ class context contains; ') @@ -38467,7 +38485,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -1841,11 +1841,11 @@ +@@ -1841,11 +1841,12 @@ # template(`userdom_search_user_home_dirs',` gen_require(` @@ -38478,10 +38496,11 @@ diff --exclude-from=exclude -N -u -r nsa files_search_home($2) - allow $2 $1_home_dir_t:dir search_dir_perms; + allow $2 user_home_dir_t:dir search_dir_perms; ++ allow $2 user_home_dir_t:lnk_file read_lnk_file_perms; ') ######################################## -@@ -1875,11 +1875,11 @@ +@@ -1875,11 +1876,11 @@ # template(`userdom_list_user_home_dirs',` gen_require(` @@ -38495,7 +38514,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -1923,12 +1923,12 @@ +@@ -1923,12 +1924,12 @@ # template(`userdom_user_home_domtrans',` gen_require(` @@ -38511,7 +38530,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -1958,10 +1958,11 @@ +@@ -1958,10 +1959,11 @@ # template(`userdom_dontaudit_list_user_home_dirs',` gen_require(` @@ -38525,7 +38544,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -1993,11 +1994,72 @@ +@@ -1993,11 +1995,72 @@ # template(`userdom_manage_user_home_content_dirs',` gen_require(` @@ -38600,7 +38619,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2029,10 +2091,10 @@ +@@ -2029,10 +2092,10 @@ # template(`userdom_dontaudit_setattr_user_home_content_files',` gen_require(` @@ -38613,7 +38632,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2062,11 +2124,11 @@ +@@ -2062,11 +2125,11 @@ # template(`userdom_read_user_home_content_files',` gen_require(` @@ -38627,7 +38646,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2096,11 +2158,11 @@ +@@ -2096,11 +2159,11 @@ # template(`userdom_dontaudit_read_user_home_content_files',` gen_require(` @@ -38642,7 +38661,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2130,10 +2192,14 @@ +@@ -2130,10 +2193,14 @@ # template(`userdom_dontaudit_write_user_home_content_files',` gen_require(` @@ -38659,7 +38678,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2163,11 +2229,11 @@ +@@ -2163,11 +2230,11 @@ # template(`userdom_read_user_home_content_symlinks',` gen_require(` @@ -38673,7 +38692,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2197,11 +2263,11 @@ +@@ -2197,11 +2264,11 @@ # template(`userdom_exec_user_home_content_files',` gen_require(` @@ -38687,7 +38706,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2231,10 +2297,37 @@ +@@ -2231,10 +2298,37 @@ # template(`userdom_dontaudit_exec_user_home_content_files',` gen_require(` @@ -38727,7 +38746,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2266,12 +2359,12 @@ +@@ -2266,12 +2360,12 @@ # template(`userdom_manage_user_home_content_files',` gen_require(` @@ -38743,7 +38762,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2303,10 +2396,10 @@ +@@ -2303,10 +2397,10 @@ # template(`userdom_dontaudit_manage_user_home_content_dirs',` gen_require(` @@ -38756,7 +38775,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2338,12 +2431,12 @@ +@@ -2338,12 +2432,12 @@ # template(`userdom_manage_user_home_content_symlinks',` gen_require(` @@ -38772,7 +38791,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2375,12 +2468,12 @@ +@@ -2375,12 +2469,12 @@ # template(`userdom_manage_user_home_content_pipes',` gen_require(` @@ -38788,7 +38807,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2412,12 +2505,12 @@ +@@ -2412,12 +2506,12 @@ # template(`userdom_manage_user_home_content_sockets',` gen_require(` @@ -38804,7 +38823,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2462,11 +2555,11 @@ +@@ -2462,11 +2556,11 @@ # template(`userdom_user_home_dir_filetrans',` gen_require(` @@ -38818,7 +38837,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2511,11 +2604,11 @@ +@@ -2511,11 +2605,11 @@ # template(`userdom_user_home_content_filetrans',` gen_require(` @@ -38832,7 +38851,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2555,11 +2648,11 @@ +@@ -2555,11 +2649,11 @@ # template(`userdom_user_home_dir_filetrans_user_home_content',` gen_require(` @@ -38846,7 +38865,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2589,11 +2682,11 @@ +@@ -2589,11 +2683,11 @@ # template(`userdom_write_user_tmp_sockets',` gen_require(` @@ -38860,7 +38879,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2623,11 +2716,11 @@ +@@ -2623,11 +2717,11 @@ # template(`userdom_list_user_tmp',` gen_require(` @@ -38874,7 +38893,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2659,10 +2752,10 @@ +@@ -2659,10 +2753,10 @@ # template(`userdom_dontaudit_list_user_tmp',` gen_require(` @@ -38887,7 +38906,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2694,10 +2787,10 @@ +@@ -2694,10 +2788,10 @@ # template(`userdom_dontaudit_manage_user_tmp_dirs',` gen_require(` @@ -38900,7 +38919,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2727,12 +2820,12 @@ +@@ -2727,12 +2821,12 @@ # template(`userdom_read_user_tmp_files',` gen_require(` @@ -38916,7 +38935,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2764,10 +2857,10 @@ +@@ -2764,10 +2858,10 @@ # template(`userdom_dontaudit_read_user_tmp_files',` gen_require(` @@ -38929,7 +38948,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2799,10 +2892,10 @@ +@@ -2799,10 +2893,10 @@ # template(`userdom_dontaudit_append_user_tmp_files',` gen_require(` @@ -38942,7 +38961,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2832,12 +2925,12 @@ +@@ -2832,12 +2926,12 @@ # template(`userdom_rw_user_tmp_files',` gen_require(` @@ -38958,7 +38977,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2869,10 +2962,10 @@ +@@ -2869,10 +2963,10 @@ # template(`userdom_dontaudit_manage_user_tmp_files',` gen_require(` @@ -38971,7 +38990,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2904,12 +2997,12 @@ +@@ -2904,12 +2998,12 @@ # template(`userdom_read_user_tmp_symlinks',` gen_require(` @@ -38987,7 +39006,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2941,11 +3034,11 @@ +@@ -2941,11 +3035,11 @@ # template(`userdom_manage_user_tmp_dirs',` gen_require(` @@ -39001,7 +39020,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -2977,11 +3070,11 @@ +@@ -2977,11 +3071,11 @@ # template(`userdom_manage_user_tmp_files',` gen_require(` @@ -39015,7 +39034,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -3013,11 +3106,11 @@ +@@ -3013,11 +3107,11 @@ # template(`userdom_manage_user_tmp_symlinks',` gen_require(` @@ -39029,7 +39048,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -3049,11 +3142,11 @@ +@@ -3049,11 +3143,11 @@ # template(`userdom_manage_user_tmp_pipes',` gen_require(` @@ -39043,7 +39062,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -3085,11 +3178,11 @@ +@@ -3085,11 +3179,11 @@ # template(`userdom_manage_user_tmp_sockets',` gen_require(` @@ -39057,7 +39076,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -3134,10 +3227,10 @@ +@@ -3134,10 +3228,10 @@ # template(`userdom_user_tmp_filetrans',` gen_require(` @@ -39070,7 +39089,7 @@ diff --exclude-from=exclude -N -u -r nsa files_search_tmp($2) ') -@@ -3178,19 +3271,19 @@ +@@ -3178,19 +3272,19 @@ # template(`userdom_tmp_filetrans_user_tmp',` gen_require(` @@ -39094,7 +39113,7 @@ diff --exclude-from=exclude -N -u -r nsa ##

##

## This is a templated interface, and should only -@@ -3211,13 +3304,13 @@ +@@ -3211,13 +3305,13 @@ # template(`userdom_rw_user_tmpfs_files',` gen_require(` @@ -39112,7 +39131,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -4616,11 +4709,11 @@ +@@ -4616,11 +4710,11 @@ # interface(`userdom_search_all_users_home_dirs',` gen_require(` @@ -39126,7 +39145,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -4640,6 +4733,14 @@ +@@ -4640,6 +4734,14 @@ files_list_home($1) allow $1 home_dir_type:dir list_dir_perms; @@ -39141,7 +39160,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -4677,6 +4778,8 @@ +@@ -4677,6 +4779,8 @@ ') dontaudit $1 { home_dir_type home_type }:dir search_dir_perms; @@ -39150,7 +39169,7 @@ diff --exclude-from=exclude -N -u -r nsa ') ######################################## -@@ -4721,6 +4824,25 @@ +@@ -4721,6 +4825,25 @@ ######################################## ##

@@ -39176,7 +39195,7 @@ diff --exclude-from=exclude -N -u -r nsa ## Create, read, write, and delete all files ## in all users home directories. ## -@@ -4946,7 +5068,7 @@ +@@ -4946,7 +5069,7 @@ ######################################## ## @@ -39185,7 +39204,7 @@ diff --exclude-from=exclude -N -u -r nsa ## ## ## -@@ -5318,7 +5440,7 @@ +@@ -5318,7 +5441,7 @@ ######################################## ## @@ -39194,7 +39213,7 @@ diff --exclude-from=exclude -N -u -r nsa ## ## ## -@@ -5326,18 +5448,17 @@ +@@ -5326,18 +5449,17 @@ ## ## # @@ -39217,7 +39236,7 @@ diff --exclude-from=exclude -N -u -r nsa ## ## ## -@@ -5345,17 +5466,54 @@ +@@ -5345,17 +5467,54 @@ ## ## # @@ -39276,7 +39295,7 @@ diff --exclude-from=exclude -N -u -r nsa ## ## ## -@@ -5368,7 +5526,7 @@ +@@ -5368,7 +5527,7 @@ attribute userdomain; ') @@ -39285,7 +39304,7 @@ diff --exclude-from=exclude -N -u -r nsa kernel_search_proc($1) ') -@@ -5447,6 +5605,24 @@ +@@ -5447,6 +5606,24 @@ ######################################## ## @@ -39310,7 +39329,7 @@ diff --exclude-from=exclude -N -u -r nsa ## Send a SIGCHLD signal to all user domains. ## ## -@@ -5483,6 +5659,42 @@ +@@ -5483,6 +5660,42 @@ ######################################## ## @@ -39353,7 +39372,7 @@ diff --exclude-from=exclude -N -u -r nsa ## Send a dbus message to all user domains. ## ## -@@ -5513,3 +5725,661 @@ +@@ -5513,3 +5726,661 @@ interface(`userdom_unconfined',` refpolicywarn(`$0($*) has been deprecated.') ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-10/selinux-policy.spec,v retrieving revision 1.802 retrieving revision 1.803 diff -u -p -r1.802 -r1.803 --- selinux-policy.spec 20 Jul 2009 13:25:10 -0000 1.802 +++ selinux-policy.spec 31 Jul 2009 07:14:12 -0000 1.803 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.5.13 -Release: 67%{?dist} +Release: 68%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -462,6 +462,9 @@ exit 0 %endif %changelog +* Fri Jul 31 2009 Miroslav Grepl 3.5.13-68 +- Allow lircd read/write input event devices + * Mon Jul 20 2009 Miroslav Grepl 3.5.13-67 - Allow setroubleshootd to read all symlinks From cweyl at fedoraproject.org Fri Jul 31 07:17:37 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 07:17:37 +0000 (UTC) Subject: rpms/perl-ExtUtils-Depends/devel .cvsignore, 1.5, 1.6 perl-ExtUtils-Depends.spec, 1.16, 1.17 sources, 1.5, 1.6 Message-ID: <20090731071737.1400A11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-ExtUtils-Depends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29417 Modified Files: .cvsignore perl-ExtUtils-Depends.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 0.302-1 - auto-update to 0.302 (by cpan-spec-update 0.01) - added a new br on perl(Data::Dumper) (version 0) - added a new br on perl(File::Spec) (version 0) - added a new br on perl(IO::File) (version 0) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-ExtUtils-Depends/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 12 Dec 2008 18:28:33 -0000 1.5 +++ .cvsignore 31 Jul 2009 07:17:36 -0000 1.6 @@ -1 +1 @@ -ExtUtils-Depends-0.301.tar.gz +ExtUtils-Depends-0.302.tar.gz Index: perl-ExtUtils-Depends.spec =================================================================== RCS file: /cvs/extras/rpms/perl-ExtUtils-Depends/devel/perl-ExtUtils-Depends.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-ExtUtils-Depends.spec 26 Jul 2009 05:54:48 -0000 1.16 +++ perl-ExtUtils-Depends.spec 31 Jul 2009 07:17:36 -0000 1.17 @@ -1,17 +1,21 @@ Name: perl-ExtUtils-Depends -Version: 0.301 -Release: 3%{?dist} +Version: 0.302 +Release: 1%{?dist} Summary: Easily build XS extensions that depend on XS extensions License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/ExtUtils-Depends/ -Source0: http://www.cpan.org/authors/id/T/TS/TSCH/ExtUtils-Depends-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/T/TS/TSCH/ExtUtils-Depends-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Test::More) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +BuildRequires: perl(Data::Dumper) +BuildRequires: perl(File::Spec) +BuildRequires: perl(IO::File) + %description This module tries to make it easy to build Perl extensions that use functions and typemaps provided by other perl extensions. This means that a @@ -48,6 +52,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 31 2009 Chris Weyl 0.302-1 +- auto-update to 0.302 (by cpan-spec-update 0.01) +- added a new br on perl(Data::Dumper) (version 0) +- added a new br on perl(File::Spec) (version 0) +- added a new br on perl(IO::File) (version 0) + * Sat Jul 25 2009 Fedora Release Engineering - 0.301-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-ExtUtils-Depends/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 12 Dec 2008 18:28:33 -0000 1.5 +++ sources 31 Jul 2009 07:17:36 -0000 1.6 @@ -1 +1 @@ -43c6655dde347a8e0b5b0675f11ec27e ExtUtils-Depends-0.301.tar.gz +db46426f0599668da95c21b53b532508 ExtUtils-Depends-0.302.tar.gz From cweyl at fedoraproject.org Fri Jul 31 07:19:18 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 07:19:18 +0000 (UTC) Subject: rpms/perl-Class-Method-Modifiers/devel .cvsignore, 1.3, 1.4 perl-Class-Method-Modifiers.spec, 1.6, 1.7 sources, 1.3, 1.4 Message-ID: <20090731071918.1EAE011C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Class-Method-Modifiers/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29974 Modified Files: .cvsignore perl-Class-Method-Modifiers.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 1.04-1 - auto-update to 1.04 (by cpan-spec-update 0.01) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Class-Method-Modifiers/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Jun 2009 05:52:44 -0000 1.3 +++ .cvsignore 31 Jul 2009 07:19:17 -0000 1.4 @@ -1 +1 @@ -Class-Method-Modifiers-1.02.tar.gz +Class-Method-Modifiers-1.04.tar.gz Index: perl-Class-Method-Modifiers.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Class-Method-Modifiers/devel/perl-Class-Method-Modifiers.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- perl-Class-Method-Modifiers.spec 26 Jul 2009 04:30:33 -0000 1.6 +++ perl-Class-Method-Modifiers.spec 31 Jul 2009 07:19:17 -0000 1.7 @@ -1,7 +1,7 @@ Name: perl-Class-Method-Modifiers -Version: 1.02 -Release: 2%{?dist} +Version: 1.04 +Release: 1%{?dist} License: GPL+ or Artistic Group: Development/Libraries Summary: Provides Moose-like method modifiers @@ -65,6 +65,9 @@ rm -rf %{buildroot} %{_mandir}/man3/*.3* %changelog +* Fri Jul 31 2009 Chris Weyl 1.04-1 +- auto-update to 1.04 (by cpan-spec-update 0.01) + * Sat Jul 25 2009 Fedora Release Engineering - 1.02-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Class-Method-Modifiers/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Jun 2009 05:52:44 -0000 1.3 +++ sources 31 Jul 2009 07:19:17 -0000 1.4 @@ -1 +1 @@ -8f7564176826b01f5b1deab8a73646d3 Class-Method-Modifiers-1.02.tar.gz +bf278d379903849d492ab975d6504cbe Class-Method-Modifiers-1.04.tar.gz From cweyl at fedoraproject.org Fri Jul 31 07:21:19 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 07:21:19 +0000 (UTC) Subject: rpms/perl-Data-Dump/devel .cvsignore, 1.4, 1.5 perl-Data-Dump.spec, 1.8, 1.9 sources, 1.4, 1.5 Message-ID: <20090731072119.90E0F11C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-Data-Dump/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30703 Modified Files: .cvsignore perl-Data-Dump.spec sources Log Message: * Fri Jul 31 2009 Chris Weyl 1.15-1 - auto-update to 1.15 (by cpan-spec-update 0.01) Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-Data-Dump/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 11 Feb 2009 16:08:35 -0000 1.4 +++ .cvsignore 31 Jul 2009 07:21:19 -0000 1.5 @@ -1 +1 @@ -Data-Dump-1.14.tar.gz +Data-Dump-1.15.tar.gz Index: perl-Data-Dump.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Data-Dump/devel/perl-Data-Dump.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- perl-Data-Dump.spec 26 Jul 2009 05:27:24 -0000 1.8 +++ perl-Data-Dump.spec 31 Jul 2009 07:21:19 -0000 1.9 @@ -1,11 +1,11 @@ Name: perl-Data-Dump -Version: 1.14 -Release: 3%{?dist} +Version: 1.15 +Release: 1%{?dist} Summary: Pretty printing of data structures License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Data-Dump/ -Source0: http://www.cpan.org/authors/id/G/GA/GAAS/Data-Dump-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Data-Dump-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) @@ -53,6 +53,9 @@ rm -rf %{buildroot} %{_mandir}/man3/* %changelog +* Fri Jul 31 2009 Chris Weyl 1.15-1 +- auto-update to 1.15 (by cpan-spec-update 0.01) + * Sat Jul 25 2009 Fedora Release Engineering - 1.14-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-Data-Dump/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 11 Feb 2009 16:08:35 -0000 1.4 +++ sources 31 Jul 2009 07:21:19 -0000 1.5 @@ -1 +1 @@ -b4f4beb85058cff872f957aee2fbaf08 Data-Dump-1.14.tar.gz +775729739a599dc5fbf918dc7cffe9f4 Data-Dump-1.15.tar.gz From cweyl at fedoraproject.org Fri Jul 31 07:24:13 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 07:24:13 +0000 (UTC) Subject: rpms/perl-DBIx-Class/devel .cvsignore, 1.5, 1.6 perl-DBIx-Class.spec, 1.15, 1.16 sources, 1.5, 1.6 Message-ID: <20090731072413.2641511C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-DBIx-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31765 Modified Files: .cvsignore perl-DBIx-Class.spec sources Log Message: * Thu Jul 30 2009 Ralf Cors?pius - 0.08107-3 - Add BR: perl(CPAN) to fix rebuild-breakdown. Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/perl-DBIx-Class/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 26 Jun 2009 18:25:22 -0000 1.5 +++ .cvsignore 31 Jul 2009 07:24:12 -0000 1.6 @@ -1 +1 @@ -DBIx-Class-0.08107.tar.gz +DBIx-Class-0.08108.tar.gz Index: perl-DBIx-Class.spec =================================================================== RCS file: /cvs/extras/rpms/perl-DBIx-Class/devel/perl-DBIx-Class.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- perl-DBIx-Class.spec 30 Jul 2009 05:14:16 -0000 1.15 +++ perl-DBIx-Class.spec 31 Jul 2009 07:24:12 -0000 1.16 @@ -31,7 +31,6 @@ BuildRequires: perl(Class::Data::Inheri BuildRequires: perl(Class::Inspector) >= 1.24 BuildRequires: perl(Class::Trigger) BuildRequires: perl(Data::Page) >= 2 -# see BZ#245699 -- requires patched version, not CPAN BuildRequires: perl(DBD::SQLite) >= 1.25 BuildRequires: perl(DBI) >= 1.605 BuildRequires: perl(DBIx::ContextualFetch) @@ -40,7 +39,6 @@ BuildRequires: perl(List::Util) >= 1.19 BuildRequires: perl(Module::Find) >= 0.06 BuildRequires: perl(Scope::Guard) >= 0.03 BuildRequires: perl(SQL::Abstract) >= 1.56 -# darn RPM version compares... BuildRequires: perl(SQL::Abstract::Limit) >= 0.13 BuildRequires: perl(Test::Exception) # optional tests Index: sources =================================================================== RCS file: /cvs/extras/rpms/perl-DBIx-Class/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 26 Jun 2009 18:25:23 -0000 1.5 +++ sources 31 Jul 2009 07:24:12 -0000 1.6 @@ -1 +1 @@ -e8e9f6a34d74b8d1cdb29dd72a71e08b DBIx-Class-0.08107.tar.gz +ed377d6968192fcf874ee5b92d212382 DBIx-Class-0.08108.tar.gz From cweyl at fedoraproject.org Fri Jul 31 07:24:49 2009 From: cweyl at fedoraproject.org (Chris Weyl) Date: Fri, 31 Jul 2009 07:24:49 +0000 (UTC) Subject: rpms/perl-DBIx-Class/devel perl-DBIx-Class.spec,1.16,1.17 Message-ID: <20090731072449.4EFA811C00CE@cvs1.fedora.phx.redhat.com> Author: cweyl Update of /cvs/extras/rpms/perl-DBIx-Class/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32057 Modified Files: perl-DBIx-Class.spec Log Message: * Fri Jul 31 2009 Chris Weyl 0.08108-1 - auto-update to 0.08108 (by cpan-spec-update 0.01) Index: perl-DBIx-Class.spec =================================================================== RCS file: /cvs/extras/rpms/perl-DBIx-Class/devel/perl-DBIx-Class.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- perl-DBIx-Class.spec 31 Jul 2009 07:24:12 -0000 1.16 +++ perl-DBIx-Class.spec 31 Jul 2009 07:24:49 -0000 1.17 @@ -1,6 +1,6 @@ Name: perl-DBIx-Class -Version: 0.08107 -Release: 3%{?dist} +Version: 0.08108 +Release: 1%{?dist} Summary: Extensible and flexible object <-> relational mapper License: GPL+ or Artistic Group: Development/Libraries @@ -67,7 +67,7 @@ BuildRequires: perl(Test::Warn) >= 0.11 BuildRequires: perl(Sub::Name) >= 0.04 BuildRequires: perl(Path::Class) >= 0.16 -# these are hidden from PAUSE, yet picked up by us +# these are hidden from PAUSE, yet picked up by us Provides: perl(DBIx::Class::ClassResolver::PassThrough) = 0 Provides: perl(DBIx::Class::CDBICompat::Relationship) = 0 Provides: perl(DBIx::Class::Storage::DBI::Replicated::Types) = 0 @@ -158,6 +158,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 31 2009 Chris Weyl 0.08108-1 +- auto-update to 0.08108 (by cpan-spec-update 0.01) + * Thu Jul 30 2009 Ralf Cors?pius - 0.08107-3 - Add BR: perl(CPAN) to fix rebuild-breakdown. From hubbitus at fedoraproject.org Fri Jul 31 07:31:51 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Fri, 31 Jul 2009 07:31:51 +0000 (UTC) Subject: rpms/php-pecl-runkit/F-11 php-pecl-runkit.spec,1.1,1.2 Message-ID: <20090731073152.10AC711C00CE@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-runkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1959 Modified Files: php-pecl-runkit.spec Log Message: Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-runkit/F-11/php-pecl-runkit.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- php-pecl-runkit.spec 24 Mar 2009 20:31:27 -0000 1.1 +++ php-pecl-runkit.spec 31 Jul 2009 07:31:50 -0000 1.2 @@ -11,11 +11,7 @@ Summary(ru): ??????????????????????????? Summary(pl): Obr??bka zdefiniowanych przez u??ytkownika funkcji i klas Name: php-pecl-%{peclName} Version: 0.9 -%if 0%{?CVS:1} -Release: 10.CVS%{CVS}%{?dist} -%else -Release: 10%{?dist} -%endif +Release: 12%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -26,7 +22,7 @@ Source0: http://pecl.php.net/get/%{pecl %endif # Source0-md5: 05a690f04b7d2c42193f3e0c1bb99a19 URL: http://pecl.php.net/package/runkit/ -BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 +BuildRequires: php-pear, php-devel Requires(post): %{__pecl} Requires(postun): %{__pecl} %if %{?php_zend_api}0 @@ -63,9 +59,12 @@ og??lnego u??ytku. Wykonywanie danego ko %setup -q -c cd %{peclName} +# Patch set intended only for PHP version greater than 5.3.0 +%if %( php -r 'echo version_compare(PHP_VERSION, "5.3.0", ">=") ? 1 : 0;' ) %patch0 -p2 -b .zrefcount %patch1 -p2 -b .zaddref %patch3 -p2 -b .new_refcount +%endif %build cd %{peclName} @@ -114,6 +113,14 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog +* Thu Jul 30 2009 Pavel Alexeev - 0.9-12.CVS20090215 +- Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) + +* Sun Apr 5 2009 Pavel Alexeev - 0.9-11.CVS20090215 +- By suggestion in the bug https://fedorahosted.org/fedora-infrastructure/ticket/1298 try remove version specifications in requires: + Turn BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 to just BuildRequires: php-pear, php-devel +- Add more magick in Release tag: 11%%{?CVS:.CVS%%{CVS}}%%{?dist} + * Tue Mar 17 2009 Pavel Alexeev - 0.9-10.CVS20090215 - Remi Collet notes in Fedora review: - Rename back %%{peclName}.xml to %%{name}.xml :) @@ -214,8 +221,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.1 2009/03/24 20:31:27 hubbitus -#Initial push php-pecl-runkit to Fedora +#Revision 1.2 2009/07/31 07:31:50 hubbitus +#Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From dchen at fedoraproject.org Fri Jul 31 07:33:10 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Fri, 31 Jul 2009 07:33:10 +0000 (UTC) Subject: rpms/libchewing/devel import.log, 1.13, 1.14 libchewing-0.3.2.phraseChoiceRearward.patch, 1.2, 1.3 libchewing.spec, 1.36, 1.37 Message-ID: <20090731073310.0E30711C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/libchewing/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2745/devel Modified Files: import.log libchewing-0.3.2.phraseChoiceRearward.patch libchewing.spec Log Message: Fixed Bug 512108 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/devel/import.log,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- import.log 30 Jun 2009 02:46:45 -0000 1.13 +++ import.log 31 Jul 2009 07:33:09 -0000 1.14 @@ -11,3 +11,4 @@ libchewing-0_3_2-9_fc11:HEAD:libchewing- libchewing-0_3_2-10_fc11:HEAD:libchewing-0.3.2-10.fc11.src.rpm:1242803240 libchewing-0_3_2-11_fc11:HEAD:libchewing-0.3.2-11.fc11.src.rpm:1245996227 libchewing-0_3_2-12_fc11:HEAD:libchewing-0.3.2-12.fc11.src.rpm:1246329909 +libchewing-0_3_2-14_fc11:HEAD:libchewing-0.3.2-14.fc11.src.rpm:1249025558 libchewing-0.3.2.phraseChoiceRearward.patch: chewingio.c | 169 +++++++++++++++++++++++++++++++----------------------------- choice.c | 115 +++++++++++++++++++++++++--------------- 2 files changed, 163 insertions(+), 121 deletions(-) Index: libchewing-0.3.2.phraseChoiceRearward.patch =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/devel/libchewing-0.3.2.phraseChoiceRearward.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libchewing-0.3.2.phraseChoiceRearward.patch 26 Jun 2009 06:04:18 -0000 1.2 +++ libchewing-0.3.2.phraseChoiceRearward.patch 31 Jul 2009 07:33:09 -0000 1.3 @@ -1,7 +1,15 @@ diff -up ./src/chewingio.c.phraseChoiceRearward ./src/chewingio.c --- ./src/chewingio.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/chewingio.c 2009-06-26 15:58:08.000000000 +1000 -@@ -75,14 +75,14 @@ CHEWING_API int chewing_KBStr2Num( char ++++ ./src/chewingio.c 2009-07-31 17:17:06.000000000 +1000 +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + #include "chewing-utf8-util.h" + #include "global.h" +@@ -75,14 +76,14 @@ CHEWING_API int chewing_KBStr2Num( char return KB_DEFAULT; } @@ -18,7 +26,7 @@ diff -up ./src/chewingio.c.phraseChoiceR #endif int addTerminateService( void (*callback)() ) -@@ -103,7 +103,7 @@ int addTerminateService( void (*callback +@@ -103,7 +104,7 @@ int addTerminateService( void (*callback CHEWING_API ChewingContext *chewing_new() { ChewingContext *ctx; @@ -27,7 +35,7 @@ diff -up ./src/chewingio.c.phraseChoiceR ChewingData *internal_data = ALC( ChewingData, 1 ); ChewingOutput *internal_output = ALC( ChewingOutput, 1 ); ctx = ALC( ChewingContext, 1 ); -@@ -159,7 +159,7 @@ CHEWING_API int chewing_Init( +@@ -159,7 +160,7 @@ CHEWING_API int chewing_Init( dbg_path = FAILSAFE_OUTPUT; fp_g = fopen( dbg_path, "w+" ); if ( ! fp_g ) { @@ -36,7 +44,7 @@ diff -up ./src/chewingio.c.phraseChoiceR "Failed to record debug message in file.\n" "--> Output to stderr\n" ); } -@@ -237,14 +237,14 @@ CHEWING_API void chewing_Terminate() +@@ -237,14 +238,14 @@ CHEWING_API void chewing_Terminate() if ( TerminateServices[ i ] ) { #ifdef ENABLE_DEBUG /* Can't output to debug file because it's about to close */ @@ -53,7 +61,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* XXX: should check if the services are really completed. */ bTerminateCompleted = 1; return; -@@ -403,7 +403,7 @@ CHEWING_API void chewing_set_ChiEngMode( +@@ -403,7 +404,7 @@ CHEWING_API void chewing_set_ChiEngMode( ctx->data->bChiSym = ( mode == CHINESE_MODE ? 1 : 0 ); } @@ -62,7 +70,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bChiSym; } -@@ -413,7 +413,7 @@ CHEWING_API void chewing_set_ShapeMode( +@@ -413,7 +414,7 @@ CHEWING_API void chewing_set_ShapeMode( ctx->data->bFullShape = (mode == FULLSHAPE_MODE ? 1 : 0); } @@ -71,7 +79,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bFullShape; } -@@ -435,7 +435,7 @@ static int DoSelect( ChewingData *pgdata +@@ -435,7 +436,7 @@ static int DoSelect( ChewingData *pgdata if ( pgdata->choiceInfo.isSymbol ) { SymbolChoice( pgdata, num ); } @@ -80,7 +88,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* change the select interval & selectStr & nSelect */ AddSelect( pgdata, num ); /* second, call choice module */ -@@ -489,7 +489,7 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -489,7 +490,7 @@ CHEWING_API int chewing_handle_Space( Ch pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; keystrokeRtn = KEYSTROKE_COMMIT; @@ -89,7 +97,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->bChiSym != CHINESE_MODE ) { /* see if buffer contains nothing */ if ( pgdata->chiSymbolBufLen == 0 ) { -@@ -507,11 +507,11 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -507,11 +508,11 @@ CHEWING_API int chewing_handle_Space( Ch if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -103,7 +111,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else { keystrokeRtn = KEYSTROKE_ABSORB; } -@@ -524,9 +524,9 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -524,9 +525,9 @@ CHEWING_API int chewing_handle_Space( Ch /* Quick commit */ else { DEBUG_OUT( @@ -115,7 +123,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -643,7 +643,7 @@ CHEWING_API int chewing_handle_Enter( Ch +@@ -643,7 +644,7 @@ CHEWING_API int chewing_handle_Enter( Ch keystrokeRtn = KEYSTROKE_COMMIT; WriteChiSymbolToBuf( pgo->commitStr, nCommitStr, pgdata ); AutoLearnPhrase( pgdata ); @@ -124,7 +132,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = nCommitStr; } -@@ -664,12 +664,12 @@ CHEWING_API int chewing_handle_Del( Chew +@@ -664,12 +665,12 @@ CHEWING_API int chewing_handle_Del( Chew } if ( ! pgdata->bSelect ) { @@ -141,7 +149,7 @@ diff -up ./src/chewingio.c.phraseChoiceR NONDECREASE_CURSOR ); } CallPhrasing( pgdata ); -@@ -696,7 +696,7 @@ CHEWING_API int chewing_handle_Backspace +@@ -696,7 +697,7 @@ CHEWING_API int chewing_handle_Backspace } else if ( pgdata->chiSymbolCursor > 0 ) { ChewingKillChar( @@ -150,7 +158,13 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor - 1, DECREASE_CURSOR ); } -@@ -740,6 +740,7 @@ CHEWING_API int chewing_handle_Down( Che +@@ -735,11 +736,12 @@ CHEWING_API int chewing_handle_Up( Chewi + + CHEWING_API int chewing_handle_Down( ChewingContext *ctx ) + { +- ChewingData *pgdata = ctx->data; ++ ChewingData *pgdata = ctx->data; + ChewingOutput *pgo = ctx->output; int toSelect = 0; int keystrokeRtn = KEYSTROKE_ABSORB; int key_buf_cursor; @@ -158,10 +172,12 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); -@@ -757,12 +758,21 @@ CHEWING_API int chewing_handle_Down( Che +@@ -756,13 +758,22 @@ CHEWING_API int chewing_handle_Down( Che + toSelect = 1; if ( toSelect ) { - if( ! pgdata->bSelect ) { +- if( ! pgdata->bSelect ) { ++ if( ! pgdata->bSelect ) { + cursor_orig=pgdata->chiSymbolCursor; ChoiceFirstAvail( pgdata ); } @@ -181,7 +197,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->symbolKeyBuf[ key_buf_cursor ] ) { /* Open Symbol Choice List */ if ( ! pgdata->choiceInfo.isSymbol ) -@@ -782,11 +792,11 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -782,11 +793,11 @@ CHEWING_API int chewing_handle_ShiftLeft if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -196,7 +212,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 && pgdata->PointEnd > -9 ) { if ( pgdata->PointStart == -1 ) -@@ -797,7 +807,7 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -797,7 +808,7 @@ CHEWING_API int chewing_handle_ShiftLeft pgdata->PointEnd--; } if ( pgdata->PointEnd == 0 ) @@ -205,7 +221,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -822,8 +832,8 @@ CHEWING_API int chewing_handle_Left( Che +@@ -822,8 +833,8 @@ CHEWING_API int chewing_handle_Left( Che pgdata->choiceInfo.pageNo = pgdata->choiceInfo.nPage - 1; } else { @@ -216,7 +232,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 ) { CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor--; -@@ -842,13 +852,13 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -842,13 +853,13 @@ CHEWING_API int chewing_handle_ShiftRigh if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -234,7 +250,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->PointEnd < 9 ) { if ( pgdata->PointStart == -1 ) pgdata->PointStart = pgdata->chiSymbolCursor; -@@ -858,7 +868,7 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -858,7 +869,7 @@ CHEWING_API int chewing_handle_ShiftRigh } pgdata->chiSymbolCursor++; if ( pgdata->PointEnd == 0 ) @@ -243,7 +259,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -883,9 +893,9 @@ CHEWING_API int chewing_handle_Right( Ch +@@ -883,9 +894,9 @@ CHEWING_API int chewing_handle_Right( Ch pgdata->choiceInfo.pageNo = 0; } else { @@ -256,7 +272,7 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor++; } -@@ -974,11 +984,11 @@ CHEWING_API int chewing_handle_Home( Che +@@ -974,11 +985,11 @@ CHEWING_API int chewing_handle_Home( Che CheckAndResetRange( pgdata ); @@ -271,7 +287,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; -@@ -993,12 +1003,12 @@ CHEWING_API int chewing_handle_End( Chew +@@ -993,12 +1004,12 @@ CHEWING_API int chewing_handle_End( Chew CheckAndResetRange( pgdata ); if ( ! ChewingIsEntering( pgdata ) ) { @@ -289,7 +305,7 @@ diff -up ./src/chewingio.c.phraseChoiceR return 0; } -@@ -1013,9 +1023,9 @@ CHEWING_API int chewing_handle_PageUp( C +@@ -1013,9 +1024,9 @@ CHEWING_API int chewing_handle_PageUp( C if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -301,7 +317,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1031,9 +1041,9 @@ CHEWING_API int chewing_handle_PageDown( +@@ -1031,9 +1042,9 @@ CHEWING_API int chewing_handle_PageDown( if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -313,7 +329,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1107,7 +1117,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1107,7 +1118,7 @@ CHEWING_API int chewing_handle_Default( DoSelect( pgdata, num ); goto End_keyproc; } @@ -322,7 +338,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* Otherwise, use 'j' and 'k' for paging in selection mode */ DEBUG_OUT( "\t\tchecking paging key, got '%c'\n", -@@ -1163,10 +1173,10 @@ CHEWING_API int chewing_handle_Default( +@@ -1163,10 +1174,10 @@ CHEWING_API int chewing_handle_Default( rtn = ZuinPhoInput( &( pgdata->zuinData ), key ); DEBUG_OUT( "\t\tChinese mode key, " @@ -335,7 +351,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( rtn == ZUIN_KEY_ERROR ) rtn = SpecialSymbolInput( key, pgdata ); switch ( rtn ) { -@@ -1182,14 +1192,14 @@ CHEWING_API int chewing_handle_Default( +@@ -1182,14 +1193,14 @@ CHEWING_API int chewing_handle_Default( case ZUIN_KEY_ERROR: case ZUIN_IGNORE: DEBUG_OUT( @@ -353,7 +369,7 @@ diff -up ./src/chewingio.c.phraseChoiceR key ); /* see if buffer contains nothing */ -@@ -1207,7 +1217,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1207,7 +1218,7 @@ CHEWING_API int chewing_handle_Default( if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -362,7 +378,7 @@ diff -up ./src/chewingio.c.phraseChoiceR * then it's wrong to commit it. */ bQuickCommit = 0; -@@ -1248,9 +1258,9 @@ End_keyproc: +@@ -1248,9 +1259,9 @@ End_keyproc: /* Quick commit */ else { DEBUG_OUT( @@ -374,7 +390,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1309,12 +1319,12 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1309,12 +1320,12 @@ CHEWING_API int chewing_handle_CtrlNum( cursor = PhoneSeqCursor( pgdata ); if ( ! pgdata->config.bAddPhraseForward ) { @@ -392,7 +408,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor + newPhraseLen - 1 ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1328,10 +1338,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1328,10 +1339,10 @@ CHEWING_API int chewing_handle_CtrlNum( phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -407,7 +423,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1341,11 +1351,11 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1341,11 +1352,11 @@ CHEWING_API int chewing_handle_CtrlNum( } } else { @@ -423,7 +439,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor - newPhraseLen ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1358,10 +1368,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1358,10 +1369,10 @@ CHEWING_API int chewing_handle_CtrlNum( newPhraseLen, 1); phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -438,7 +454,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1414,10 +1424,10 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1414,10 +1425,10 @@ CHEWING_API int chewing_handle_Numlock( ChewingOutput *pgo = ctx->output; int rtn, QuickCommit = 0; int keystrokeRtn = KEYSTROKE_ABSORB; @@ -451,7 +467,7 @@ diff -up ./src/chewingio.c.phraseChoiceR */ if ( pgdata->chiSymbolBufLen == 0 ) { QuickCommit = 1; -@@ -1428,7 +1438,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1428,7 +1439,7 @@ CHEWING_API int chewing_handle_Numlock( keystrokeRtn = KEYSTROKE_IGNORE ; } else if ( QuickCommit ) { @@ -460,7 +476,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1443,7 +1453,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1443,7 +1454,7 @@ CHEWING_API int chewing_handle_Numlock( else { /* Otherwise, if we are selecting words, we use numeric keys * as selkey @@ -471,7 +487,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( key > '0' && key < '9' ) diff -up ./src/choice.c.phraseChoiceRearward ./src/choice.c --- ./src/choice.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/choice.c 2009-06-26 15:59:23.000000000 +1000 ++++ ./src/choice.c 2009-07-31 17:16:57.000000000 +1000 @@ -71,22 +71,44 @@ static void ChangeSelectIntervalAndBreak } @@ -520,7 +536,7 @@ diff -up ./src/choice.c.phraseChoiceRear + tail_tmp=begin; + } + -+ while(head<=head_tmp && tail_tmp>=tail){ ++ while(head<=head_tmp && tail_tmp<=tail){ + diff = tail_tmp - head_tmp; + pho_id = TreeFindPhrase( head_tmp, tail_tmp, phoneSeq ); if ( pho_id != -1 ) { @@ -559,7 +575,13 @@ diff -up ./src/choice.c.phraseChoiceRear return 1; return 0; } -@@ -138,7 +166,7 @@ static void SetChoiceInfo( +@@ -133,12 +161,12 @@ static void SetChoiceInfo( + ChoiceInfo *pci,AvailInfo *pai, uint16 *phoneSeq, int cursor, + int candPerPage ) + { +- Word tempWord; ++ Word tempWord; + Phrase tempPhrase; int len; UserPhraseData *pUserPhraseData; uint16 userPhoneSeq[ MAX_PHONE_SEQ_LEN ]; Index: libchewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/devel/libchewing.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- libchewing.spec 25 Jul 2009 05:26:33 -0000 1.36 +++ libchewing.spec 31 Jul 2009 07:33:09 -0000 1.37 @@ -1,7 +1,7 @@ Name: libchewing Version: 0.3.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Intelligent phonetic input method library for Traditional Chinese Group: System Environment/Libraries @@ -98,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Tue Jul 30 2009 Ding-Yi Chen - 0.3.2-14 +- Fix [Bug 512108] ibus-chewing crash the application + * Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild @@ -109,7 +112,7 @@ rm -rf $RPM_BUILD_ROOT when repeatly press down key. * Wed May 20 2009 Ding-Yi Chen - 0.3.2-10 -- Need autoreconf and BuildRequires: pkgconfig to make changes in +- Need autoreconf and BuildRequires: pkgconfig to make changes in Makefile.am effective, thus actually fix [Bug 477960] libchewing multilib conflict. * Mon May 18 2009 Ding-Yi Chen - 0.3.2-9 From dchen at fedoraproject.org Fri Jul 31 07:34:34 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Fri, 31 Jul 2009 07:34:34 +0000 (UTC) Subject: rpms/libchewing/F-11 import.log, 1.13, 1.14 libchewing-0.3.2.phraseChoiceRearward.patch, 1.2, 1.3 libchewing.spec, 1.35, 1.36 Message-ID: <20090731073434.1329E11C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/libchewing/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3429/F-11 Modified Files: import.log libchewing-0.3.2.phraseChoiceRearward.patch libchewing.spec Log Message: Fixed Bug 512108 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-11/import.log,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- import.log 30 Jun 2009 02:48:03 -0000 1.13 +++ import.log 31 Jul 2009 07:34:33 -0000 1.14 @@ -11,3 +11,4 @@ libchewing-0_3_2-9_fc11:F-11:libchewing- libchewing-0_3_2-10_fc11:F-11:libchewing-0.3.2-10.fc11.src.rpm:1242803442 libchewing-0_3_2-11_fc11:F-11:libchewing-0.3.2-11.fc11.src.rpm:1245996747 libchewing-0_3_2-12_fc11:F-11:libchewing-0.3.2-12.fc11.src.rpm:1246330058 +libchewing-0_3_2-14_fc11:F-11:libchewing-0.3.2-14.fc11.src.rpm:1249025650 libchewing-0.3.2.phraseChoiceRearward.patch: chewingio.c | 169 +++++++++++++++++++++++++++++++----------------------------- choice.c | 115 +++++++++++++++++++++++++--------------- 2 files changed, 163 insertions(+), 121 deletions(-) Index: libchewing-0.3.2.phraseChoiceRearward.patch =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-11/libchewing-0.3.2.phraseChoiceRearward.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libchewing-0.3.2.phraseChoiceRearward.patch 26 Jun 2009 06:12:57 -0000 1.2 +++ libchewing-0.3.2.phraseChoiceRearward.patch 31 Jul 2009 07:34:33 -0000 1.3 @@ -1,7 +1,15 @@ diff -up ./src/chewingio.c.phraseChoiceRearward ./src/chewingio.c --- ./src/chewingio.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/chewingio.c 2009-06-26 15:58:08.000000000 +1000 -@@ -75,14 +75,14 @@ CHEWING_API int chewing_KBStr2Num( char ++++ ./src/chewingio.c 2009-07-31 17:17:06.000000000 +1000 +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + #include "chewing-utf8-util.h" + #include "global.h" +@@ -75,14 +76,14 @@ CHEWING_API int chewing_KBStr2Num( char return KB_DEFAULT; } @@ -18,7 +26,7 @@ diff -up ./src/chewingio.c.phraseChoiceR #endif int addTerminateService( void (*callback)() ) -@@ -103,7 +103,7 @@ int addTerminateService( void (*callback +@@ -103,7 +104,7 @@ int addTerminateService( void (*callback CHEWING_API ChewingContext *chewing_new() { ChewingContext *ctx; @@ -27,7 +35,7 @@ diff -up ./src/chewingio.c.phraseChoiceR ChewingData *internal_data = ALC( ChewingData, 1 ); ChewingOutput *internal_output = ALC( ChewingOutput, 1 ); ctx = ALC( ChewingContext, 1 ); -@@ -159,7 +159,7 @@ CHEWING_API int chewing_Init( +@@ -159,7 +160,7 @@ CHEWING_API int chewing_Init( dbg_path = FAILSAFE_OUTPUT; fp_g = fopen( dbg_path, "w+" ); if ( ! fp_g ) { @@ -36,7 +44,7 @@ diff -up ./src/chewingio.c.phraseChoiceR "Failed to record debug message in file.\n" "--> Output to stderr\n" ); } -@@ -237,14 +237,14 @@ CHEWING_API void chewing_Terminate() +@@ -237,14 +238,14 @@ CHEWING_API void chewing_Terminate() if ( TerminateServices[ i ] ) { #ifdef ENABLE_DEBUG /* Can't output to debug file because it's about to close */ @@ -53,7 +61,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* XXX: should check if the services are really completed. */ bTerminateCompleted = 1; return; -@@ -403,7 +403,7 @@ CHEWING_API void chewing_set_ChiEngMode( +@@ -403,7 +404,7 @@ CHEWING_API void chewing_set_ChiEngMode( ctx->data->bChiSym = ( mode == CHINESE_MODE ? 1 : 0 ); } @@ -62,7 +70,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bChiSym; } -@@ -413,7 +413,7 @@ CHEWING_API void chewing_set_ShapeMode( +@@ -413,7 +414,7 @@ CHEWING_API void chewing_set_ShapeMode( ctx->data->bFullShape = (mode == FULLSHAPE_MODE ? 1 : 0); } @@ -71,7 +79,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bFullShape; } -@@ -435,7 +435,7 @@ static int DoSelect( ChewingData *pgdata +@@ -435,7 +436,7 @@ static int DoSelect( ChewingData *pgdata if ( pgdata->choiceInfo.isSymbol ) { SymbolChoice( pgdata, num ); } @@ -80,7 +88,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* change the select interval & selectStr & nSelect */ AddSelect( pgdata, num ); /* second, call choice module */ -@@ -489,7 +489,7 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -489,7 +490,7 @@ CHEWING_API int chewing_handle_Space( Ch pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; keystrokeRtn = KEYSTROKE_COMMIT; @@ -89,7 +97,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->bChiSym != CHINESE_MODE ) { /* see if buffer contains nothing */ if ( pgdata->chiSymbolBufLen == 0 ) { -@@ -507,11 +507,11 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -507,11 +508,11 @@ CHEWING_API int chewing_handle_Space( Ch if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -103,7 +111,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else { keystrokeRtn = KEYSTROKE_ABSORB; } -@@ -524,9 +524,9 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -524,9 +525,9 @@ CHEWING_API int chewing_handle_Space( Ch /* Quick commit */ else { DEBUG_OUT( @@ -115,7 +123,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -643,7 +643,7 @@ CHEWING_API int chewing_handle_Enter( Ch +@@ -643,7 +644,7 @@ CHEWING_API int chewing_handle_Enter( Ch keystrokeRtn = KEYSTROKE_COMMIT; WriteChiSymbolToBuf( pgo->commitStr, nCommitStr, pgdata ); AutoLearnPhrase( pgdata ); @@ -124,7 +132,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = nCommitStr; } -@@ -664,12 +664,12 @@ CHEWING_API int chewing_handle_Del( Chew +@@ -664,12 +665,12 @@ CHEWING_API int chewing_handle_Del( Chew } if ( ! pgdata->bSelect ) { @@ -141,7 +149,7 @@ diff -up ./src/chewingio.c.phraseChoiceR NONDECREASE_CURSOR ); } CallPhrasing( pgdata ); -@@ -696,7 +696,7 @@ CHEWING_API int chewing_handle_Backspace +@@ -696,7 +697,7 @@ CHEWING_API int chewing_handle_Backspace } else if ( pgdata->chiSymbolCursor > 0 ) { ChewingKillChar( @@ -150,7 +158,13 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor - 1, DECREASE_CURSOR ); } -@@ -740,6 +740,7 @@ CHEWING_API int chewing_handle_Down( Che +@@ -735,11 +736,12 @@ CHEWING_API int chewing_handle_Up( Chewi + + CHEWING_API int chewing_handle_Down( ChewingContext *ctx ) + { +- ChewingData *pgdata = ctx->data; ++ ChewingData *pgdata = ctx->data; + ChewingOutput *pgo = ctx->output; int toSelect = 0; int keystrokeRtn = KEYSTROKE_ABSORB; int key_buf_cursor; @@ -158,10 +172,12 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); -@@ -757,12 +758,21 @@ CHEWING_API int chewing_handle_Down( Che +@@ -756,13 +758,22 @@ CHEWING_API int chewing_handle_Down( Che + toSelect = 1; if ( toSelect ) { - if( ! pgdata->bSelect ) { +- if( ! pgdata->bSelect ) { ++ if( ! pgdata->bSelect ) { + cursor_orig=pgdata->chiSymbolCursor; ChoiceFirstAvail( pgdata ); } @@ -181,7 +197,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->symbolKeyBuf[ key_buf_cursor ] ) { /* Open Symbol Choice List */ if ( ! pgdata->choiceInfo.isSymbol ) -@@ -782,11 +792,11 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -782,11 +793,11 @@ CHEWING_API int chewing_handle_ShiftLeft if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -196,7 +212,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 && pgdata->PointEnd > -9 ) { if ( pgdata->PointStart == -1 ) -@@ -797,7 +807,7 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -797,7 +808,7 @@ CHEWING_API int chewing_handle_ShiftLeft pgdata->PointEnd--; } if ( pgdata->PointEnd == 0 ) @@ -205,7 +221,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -822,8 +832,8 @@ CHEWING_API int chewing_handle_Left( Che +@@ -822,8 +833,8 @@ CHEWING_API int chewing_handle_Left( Che pgdata->choiceInfo.pageNo = pgdata->choiceInfo.nPage - 1; } else { @@ -216,7 +232,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 ) { CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor--; -@@ -842,13 +852,13 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -842,13 +853,13 @@ CHEWING_API int chewing_handle_ShiftRigh if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -234,7 +250,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->PointEnd < 9 ) { if ( pgdata->PointStart == -1 ) pgdata->PointStart = pgdata->chiSymbolCursor; -@@ -858,7 +868,7 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -858,7 +869,7 @@ CHEWING_API int chewing_handle_ShiftRigh } pgdata->chiSymbolCursor++; if ( pgdata->PointEnd == 0 ) @@ -243,7 +259,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -883,9 +893,9 @@ CHEWING_API int chewing_handle_Right( Ch +@@ -883,9 +894,9 @@ CHEWING_API int chewing_handle_Right( Ch pgdata->choiceInfo.pageNo = 0; } else { @@ -256,7 +272,7 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor++; } -@@ -974,11 +984,11 @@ CHEWING_API int chewing_handle_Home( Che +@@ -974,11 +985,11 @@ CHEWING_API int chewing_handle_Home( Che CheckAndResetRange( pgdata ); @@ -271,7 +287,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; -@@ -993,12 +1003,12 @@ CHEWING_API int chewing_handle_End( Chew +@@ -993,12 +1004,12 @@ CHEWING_API int chewing_handle_End( Chew CheckAndResetRange( pgdata ); if ( ! ChewingIsEntering( pgdata ) ) { @@ -289,7 +305,7 @@ diff -up ./src/chewingio.c.phraseChoiceR return 0; } -@@ -1013,9 +1023,9 @@ CHEWING_API int chewing_handle_PageUp( C +@@ -1013,9 +1024,9 @@ CHEWING_API int chewing_handle_PageUp( C if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -301,7 +317,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1031,9 +1041,9 @@ CHEWING_API int chewing_handle_PageDown( +@@ -1031,9 +1042,9 @@ CHEWING_API int chewing_handle_PageDown( if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -313,7 +329,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1107,7 +1117,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1107,7 +1118,7 @@ CHEWING_API int chewing_handle_Default( DoSelect( pgdata, num ); goto End_keyproc; } @@ -322,7 +338,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* Otherwise, use 'j' and 'k' for paging in selection mode */ DEBUG_OUT( "\t\tchecking paging key, got '%c'\n", -@@ -1163,10 +1173,10 @@ CHEWING_API int chewing_handle_Default( +@@ -1163,10 +1174,10 @@ CHEWING_API int chewing_handle_Default( rtn = ZuinPhoInput( &( pgdata->zuinData ), key ); DEBUG_OUT( "\t\tChinese mode key, " @@ -335,7 +351,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( rtn == ZUIN_KEY_ERROR ) rtn = SpecialSymbolInput( key, pgdata ); switch ( rtn ) { -@@ -1182,14 +1192,14 @@ CHEWING_API int chewing_handle_Default( +@@ -1182,14 +1193,14 @@ CHEWING_API int chewing_handle_Default( case ZUIN_KEY_ERROR: case ZUIN_IGNORE: DEBUG_OUT( @@ -353,7 +369,7 @@ diff -up ./src/chewingio.c.phraseChoiceR key ); /* see if buffer contains nothing */ -@@ -1207,7 +1217,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1207,7 +1218,7 @@ CHEWING_API int chewing_handle_Default( if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -362,7 +378,7 @@ diff -up ./src/chewingio.c.phraseChoiceR * then it's wrong to commit it. */ bQuickCommit = 0; -@@ -1248,9 +1258,9 @@ End_keyproc: +@@ -1248,9 +1259,9 @@ End_keyproc: /* Quick commit */ else { DEBUG_OUT( @@ -374,7 +390,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1309,12 +1319,12 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1309,12 +1320,12 @@ CHEWING_API int chewing_handle_CtrlNum( cursor = PhoneSeqCursor( pgdata ); if ( ! pgdata->config.bAddPhraseForward ) { @@ -392,7 +408,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor + newPhraseLen - 1 ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1328,10 +1338,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1328,10 +1339,10 @@ CHEWING_API int chewing_handle_CtrlNum( phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -407,7 +423,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1341,11 +1351,11 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1341,11 +1352,11 @@ CHEWING_API int chewing_handle_CtrlNum( } } else { @@ -423,7 +439,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor - newPhraseLen ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1358,10 +1368,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1358,10 +1369,10 @@ CHEWING_API int chewing_handle_CtrlNum( newPhraseLen, 1); phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -438,7 +454,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1414,10 +1424,10 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1414,10 +1425,10 @@ CHEWING_API int chewing_handle_Numlock( ChewingOutput *pgo = ctx->output; int rtn, QuickCommit = 0; int keystrokeRtn = KEYSTROKE_ABSORB; @@ -451,7 +467,7 @@ diff -up ./src/chewingio.c.phraseChoiceR */ if ( pgdata->chiSymbolBufLen == 0 ) { QuickCommit = 1; -@@ -1428,7 +1438,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1428,7 +1439,7 @@ CHEWING_API int chewing_handle_Numlock( keystrokeRtn = KEYSTROKE_IGNORE ; } else if ( QuickCommit ) { @@ -460,7 +476,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1443,7 +1453,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1443,7 +1454,7 @@ CHEWING_API int chewing_handle_Numlock( else { /* Otherwise, if we are selecting words, we use numeric keys * as selkey @@ -471,7 +487,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( key > '0' && key < '9' ) diff -up ./src/choice.c.phraseChoiceRearward ./src/choice.c --- ./src/choice.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/choice.c 2009-06-26 15:59:23.000000000 +1000 ++++ ./src/choice.c 2009-07-31 17:16:57.000000000 +1000 @@ -71,22 +71,44 @@ static void ChangeSelectIntervalAndBreak } @@ -520,7 +536,7 @@ diff -up ./src/choice.c.phraseChoiceRear + tail_tmp=begin; + } + -+ while(head<=head_tmp && tail_tmp>=tail){ ++ while(head<=head_tmp && tail_tmp<=tail){ + diff = tail_tmp - head_tmp; + pho_id = TreeFindPhrase( head_tmp, tail_tmp, phoneSeq ); if ( pho_id != -1 ) { @@ -559,7 +575,13 @@ diff -up ./src/choice.c.phraseChoiceRear return 1; return 0; } -@@ -138,7 +166,7 @@ static void SetChoiceInfo( +@@ -133,12 +161,12 @@ static void SetChoiceInfo( + ChoiceInfo *pci,AvailInfo *pai, uint16 *phoneSeq, int cursor, + int candPerPage ) + { +- Word tempWord; ++ Word tempWord; + Phrase tempPhrase; int len; UserPhraseData *pUserPhraseData; uint16 userPhoneSeq[ MAX_PHONE_SEQ_LEN ]; Index: libchewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-11/libchewing.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- libchewing.spec 30 Jun 2009 02:48:03 -0000 1.35 +++ libchewing.spec 31 Jul 2009 07:34:33 -0000 1.36 @@ -1,7 +1,7 @@ Name: libchewing Version: 0.3.2 -Release: 12%{?dist} +Release: 14%{?dist} Summary: Intelligent phonetic input method library for Traditional Chinese Group: System Environment/Libraries @@ -98,6 +98,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Tue Jul 30 2009 Ding-Yi Chen - 0.3.2-14 +- Fix [Bug 512108] ibus-chewing crash the application + +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Ding-Yi Chen - 0.3.2-12 - Rebuild to correct tags. @@ -106,7 +112,7 @@ rm -rf $RPM_BUILD_ROOT when repeatly press down key. * Wed May 20 2009 Ding-Yi Chen - 0.3.2-10 -- Need autoreconf and BuildRequires: pkgconfig to make changes in +- Need autoreconf and BuildRequires: pkgconfig to make changes in Makefile.am effective, thus actually fix [Bug 477960] libchewing multilib conflict. * Mon May 18 2009 Ding-Yi Chen - 0.3.2-9 From dchen at fedoraproject.org Fri Jul 31 07:35:18 2009 From: dchen at fedoraproject.org (Ding-Yi Chen) Date: Fri, 31 Jul 2009 07:35:18 +0000 (UTC) Subject: rpms/libchewing/F-10 import.log, 1.13, 1.14 libchewing-0.3.2.phraseChoiceRearward.patch, 1.2, 1.3 libchewing.spec, 1.33, 1.34 Message-ID: <20090731073518.D8EEE11C00CE@cvs1.fedora.phx.redhat.com> Author: dchen Update of /cvs/pkgs/rpms/libchewing/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3786/F-10 Modified Files: import.log libchewing-0.3.2.phraseChoiceRearward.patch libchewing.spec Log Message: Fixed Bug 512108 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-10/import.log,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- import.log 30 Jun 2009 03:07:36 -0000 1.13 +++ import.log 31 Jul 2009 07:35:18 -0000 1.14 @@ -11,3 +11,4 @@ libchewing-0_3_2-9_fc11:F-10:libchewing- libchewing-0_3_2-10_fc11:F-10:libchewing-0.3.2-10.fc11.src.rpm:1242803706 libchewing-0_3_2-11_fc11:F-10:libchewing-0.3.2-11.fc11.src.rpm:1245996821 libchewing-0_3_2-12_fc11:F-10:libchewing-0.3.2-12.fc11.src.rpm:1246331199 +libchewing-0_3_2-14_fc11:F-10:libchewing-0.3.2-14.fc11.src.rpm:1249025696 libchewing-0.3.2.phraseChoiceRearward.patch: chewingio.c | 169 +++++++++++++++++++++++++++++++----------------------------- choice.c | 115 +++++++++++++++++++++++++--------------- 2 files changed, 163 insertions(+), 121 deletions(-) Index: libchewing-0.3.2.phraseChoiceRearward.patch =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-10/libchewing-0.3.2.phraseChoiceRearward.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libchewing-0.3.2.phraseChoiceRearward.patch 26 Jun 2009 06:14:14 -0000 1.2 +++ libchewing-0.3.2.phraseChoiceRearward.patch 31 Jul 2009 07:35:18 -0000 1.3 @@ -1,7 +1,15 @@ diff -up ./src/chewingio.c.phraseChoiceRearward ./src/chewingio.c --- ./src/chewingio.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/chewingio.c 2009-06-26 15:58:08.000000000 +1000 -@@ -75,14 +75,14 @@ CHEWING_API int chewing_KBStr2Num( char ++++ ./src/chewingio.c 2009-07-31 17:17:06.000000000 +1000 +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + #include "chewing-utf8-util.h" + #include "global.h" +@@ -75,14 +76,14 @@ CHEWING_API int chewing_KBStr2Num( char return KB_DEFAULT; } @@ -18,7 +26,7 @@ diff -up ./src/chewingio.c.phraseChoiceR #endif int addTerminateService( void (*callback)() ) -@@ -103,7 +103,7 @@ int addTerminateService( void (*callback +@@ -103,7 +104,7 @@ int addTerminateService( void (*callback CHEWING_API ChewingContext *chewing_new() { ChewingContext *ctx; @@ -27,7 +35,7 @@ diff -up ./src/chewingio.c.phraseChoiceR ChewingData *internal_data = ALC( ChewingData, 1 ); ChewingOutput *internal_output = ALC( ChewingOutput, 1 ); ctx = ALC( ChewingContext, 1 ); -@@ -159,7 +159,7 @@ CHEWING_API int chewing_Init( +@@ -159,7 +160,7 @@ CHEWING_API int chewing_Init( dbg_path = FAILSAFE_OUTPUT; fp_g = fopen( dbg_path, "w+" ); if ( ! fp_g ) { @@ -36,7 +44,7 @@ diff -up ./src/chewingio.c.phraseChoiceR "Failed to record debug message in file.\n" "--> Output to stderr\n" ); } -@@ -237,14 +237,14 @@ CHEWING_API void chewing_Terminate() +@@ -237,14 +238,14 @@ CHEWING_API void chewing_Terminate() if ( TerminateServices[ i ] ) { #ifdef ENABLE_DEBUG /* Can't output to debug file because it's about to close */ @@ -53,7 +61,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* XXX: should check if the services are really completed. */ bTerminateCompleted = 1; return; -@@ -403,7 +403,7 @@ CHEWING_API void chewing_set_ChiEngMode( +@@ -403,7 +404,7 @@ CHEWING_API void chewing_set_ChiEngMode( ctx->data->bChiSym = ( mode == CHINESE_MODE ? 1 : 0 ); } @@ -62,7 +70,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bChiSym; } -@@ -413,7 +413,7 @@ CHEWING_API void chewing_set_ShapeMode( +@@ -413,7 +414,7 @@ CHEWING_API void chewing_set_ShapeMode( ctx->data->bFullShape = (mode == FULLSHAPE_MODE ? 1 : 0); } @@ -71,7 +79,7 @@ diff -up ./src/chewingio.c.phraseChoiceR { return ctx->data->bFullShape; } -@@ -435,7 +435,7 @@ static int DoSelect( ChewingData *pgdata +@@ -435,7 +436,7 @@ static int DoSelect( ChewingData *pgdata if ( pgdata->choiceInfo.isSymbol ) { SymbolChoice( pgdata, num ); } @@ -80,7 +88,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* change the select interval & selectStr & nSelect */ AddSelect( pgdata, num ); /* second, call choice module */ -@@ -489,7 +489,7 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -489,7 +490,7 @@ CHEWING_API int chewing_handle_Space( Ch pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; keystrokeRtn = KEYSTROKE_COMMIT; @@ -89,7 +97,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->bChiSym != CHINESE_MODE ) { /* see if buffer contains nothing */ if ( pgdata->chiSymbolBufLen == 0 ) { -@@ -507,11 +507,11 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -507,11 +508,11 @@ CHEWING_API int chewing_handle_Space( Ch if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -103,7 +111,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else { keystrokeRtn = KEYSTROKE_ABSORB; } -@@ -524,9 +524,9 @@ CHEWING_API int chewing_handle_Space( Ch +@@ -524,9 +525,9 @@ CHEWING_API int chewing_handle_Space( Ch /* Quick commit */ else { DEBUG_OUT( @@ -115,7 +123,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -643,7 +643,7 @@ CHEWING_API int chewing_handle_Enter( Ch +@@ -643,7 +644,7 @@ CHEWING_API int chewing_handle_Enter( Ch keystrokeRtn = KEYSTROKE_COMMIT; WriteChiSymbolToBuf( pgo->commitStr, nCommitStr, pgdata ); AutoLearnPhrase( pgdata ); @@ -124,7 +132,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = nCommitStr; } -@@ -664,12 +664,12 @@ CHEWING_API int chewing_handle_Del( Chew +@@ -664,12 +665,12 @@ CHEWING_API int chewing_handle_Del( Chew } if ( ! pgdata->bSelect ) { @@ -141,7 +149,7 @@ diff -up ./src/chewingio.c.phraseChoiceR NONDECREASE_CURSOR ); } CallPhrasing( pgdata ); -@@ -696,7 +696,7 @@ CHEWING_API int chewing_handle_Backspace +@@ -696,7 +697,7 @@ CHEWING_API int chewing_handle_Backspace } else if ( pgdata->chiSymbolCursor > 0 ) { ChewingKillChar( @@ -150,7 +158,13 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor - 1, DECREASE_CURSOR ); } -@@ -740,6 +740,7 @@ CHEWING_API int chewing_handle_Down( Che +@@ -735,11 +736,12 @@ CHEWING_API int chewing_handle_Up( Chewi + + CHEWING_API int chewing_handle_Down( ChewingContext *ctx ) + { +- ChewingData *pgdata = ctx->data; ++ ChewingData *pgdata = ctx->data; + ChewingOutput *pgo = ctx->output; int toSelect = 0; int keystrokeRtn = KEYSTROKE_ABSORB; int key_buf_cursor; @@ -158,10 +172,12 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); -@@ -757,12 +758,21 @@ CHEWING_API int chewing_handle_Down( Che +@@ -756,13 +758,22 @@ CHEWING_API int chewing_handle_Down( Che + toSelect = 1; if ( toSelect ) { - if( ! pgdata->bSelect ) { +- if( ! pgdata->bSelect ) { ++ if( ! pgdata->bSelect ) { + cursor_orig=pgdata->chiSymbolCursor; ChoiceFirstAvail( pgdata ); } @@ -181,7 +197,7 @@ diff -up ./src/chewingio.c.phraseChoiceR else if ( pgdata->symbolKeyBuf[ key_buf_cursor ] ) { /* Open Symbol Choice List */ if ( ! pgdata->choiceInfo.isSymbol ) -@@ -782,11 +792,11 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -782,11 +793,11 @@ CHEWING_API int chewing_handle_ShiftLeft if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -196,7 +212,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 && pgdata->PointEnd > -9 ) { if ( pgdata->PointStart == -1 ) -@@ -797,7 +807,7 @@ CHEWING_API int chewing_handle_ShiftLeft +@@ -797,7 +808,7 @@ CHEWING_API int chewing_handle_ShiftLeft pgdata->PointEnd--; } if ( pgdata->PointEnd == 0 ) @@ -205,7 +221,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -822,8 +832,8 @@ CHEWING_API int chewing_handle_Left( Che +@@ -822,8 +833,8 @@ CHEWING_API int chewing_handle_Left( Che pgdata->choiceInfo.pageNo = pgdata->choiceInfo.nPage - 1; } else { @@ -216,7 +232,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->chiSymbolCursor > 0 ) { CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor--; -@@ -842,13 +852,13 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -842,13 +853,13 @@ CHEWING_API int chewing_handle_ShiftRigh if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; @@ -234,7 +250,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgdata->PointEnd < 9 ) { if ( pgdata->PointStart == -1 ) pgdata->PointStart = pgdata->chiSymbolCursor; -@@ -858,7 +868,7 @@ CHEWING_API int chewing_handle_ShiftRigh +@@ -858,7 +869,7 @@ CHEWING_API int chewing_handle_ShiftRigh } pgdata->chiSymbolCursor++; if ( pgdata->PointEnd == 0 ) @@ -243,7 +259,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } } -@@ -883,9 +893,9 @@ CHEWING_API int chewing_handle_Right( Ch +@@ -883,9 +894,9 @@ CHEWING_API int chewing_handle_Right( Ch pgdata->choiceInfo.pageNo = 0; } else { @@ -256,7 +272,7 @@ diff -up ./src/chewingio.c.phraseChoiceR CheckAndResetRange( pgdata ); pgdata->chiSymbolCursor++; } -@@ -974,11 +984,11 @@ CHEWING_API int chewing_handle_Home( Che +@@ -974,11 +985,11 @@ CHEWING_API int chewing_handle_Home( Che CheckAndResetRange( pgdata ); @@ -271,7 +287,7 @@ diff -up ./src/chewingio.c.phraseChoiceR } MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; -@@ -993,12 +1003,12 @@ CHEWING_API int chewing_handle_End( Chew +@@ -993,12 +1004,12 @@ CHEWING_API int chewing_handle_End( Chew CheckAndResetRange( pgdata ); if ( ! ChewingIsEntering( pgdata ) ) { @@ -289,7 +305,7 @@ diff -up ./src/chewingio.c.phraseChoiceR return 0; } -@@ -1013,9 +1023,9 @@ CHEWING_API int chewing_handle_PageUp( C +@@ -1013,9 +1024,9 @@ CHEWING_API int chewing_handle_PageUp( C if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -301,7 +317,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1031,9 +1041,9 @@ CHEWING_API int chewing_handle_PageDown( +@@ -1031,9 +1042,9 @@ CHEWING_API int chewing_handle_PageDown( if ( ! ChewingIsEntering( pgdata ) ) { keystrokeRtn = KEYSTROKE_IGNORE; } @@ -313,7 +329,7 @@ diff -up ./src/chewingio.c.phraseChoiceR MakeOutputWithRtn( pgo, pgdata, keystrokeRtn ); return 0; } -@@ -1107,7 +1117,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1107,7 +1118,7 @@ CHEWING_API int chewing_handle_Default( DoSelect( pgdata, num ); goto End_keyproc; } @@ -322,7 +338,7 @@ diff -up ./src/chewingio.c.phraseChoiceR /* Otherwise, use 'j' and 'k' for paging in selection mode */ DEBUG_OUT( "\t\tchecking paging key, got '%c'\n", -@@ -1163,10 +1173,10 @@ CHEWING_API int chewing_handle_Default( +@@ -1163,10 +1174,10 @@ CHEWING_API int chewing_handle_Default( rtn = ZuinPhoInput( &( pgdata->zuinData ), key ); DEBUG_OUT( "\t\tChinese mode key, " @@ -335,7 +351,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( rtn == ZUIN_KEY_ERROR ) rtn = SpecialSymbolInput( key, pgdata ); switch ( rtn ) { -@@ -1182,14 +1192,14 @@ CHEWING_API int chewing_handle_Default( +@@ -1182,14 +1193,14 @@ CHEWING_API int chewing_handle_Default( case ZUIN_KEY_ERROR: case ZUIN_IGNORE: DEBUG_OUT( @@ -353,7 +369,7 @@ diff -up ./src/chewingio.c.phraseChoiceR key ); /* see if buffer contains nothing */ -@@ -1207,7 +1217,7 @@ CHEWING_API int chewing_handle_Default( +@@ -1207,7 +1218,7 @@ CHEWING_API int chewing_handle_Default( if ( rtn == SYMBOL_KEY_ERROR ) { keystrokeRtn = KEYSTROKE_IGNORE; /* @@ -362,7 +378,7 @@ diff -up ./src/chewingio.c.phraseChoiceR * then it's wrong to commit it. */ bQuickCommit = 0; -@@ -1248,9 +1258,9 @@ End_keyproc: +@@ -1248,9 +1259,9 @@ End_keyproc: /* Quick commit */ else { DEBUG_OUT( @@ -374,7 +390,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1309,12 +1319,12 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1309,12 +1320,12 @@ CHEWING_API int chewing_handle_CtrlNum( cursor = PhoneSeqCursor( pgdata ); if ( ! pgdata->config.bAddPhraseForward ) { @@ -392,7 +408,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor + newPhraseLen - 1 ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1328,10 +1338,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1328,10 +1339,10 @@ CHEWING_API int chewing_handle_CtrlNum( phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -407,7 +423,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1341,11 +1351,11 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1341,11 +1352,11 @@ CHEWING_API int chewing_handle_CtrlNum( } } else { @@ -423,7 +439,7 @@ diff -up ./src/chewingio.c.phraseChoiceR cursor - newPhraseLen ) ) { /* Manually add phrase to the user phrase database. */ memcpy( addPhoneSeq, -@@ -1358,10 +1368,10 @@ CHEWING_API int chewing_handle_CtrlNum( +@@ -1358,10 +1369,10 @@ CHEWING_API int chewing_handle_CtrlNum( newPhraseLen, 1); phraseState = UserUpdatePhrase( addPhoneSeq, addWordSeq ); @@ -438,7 +454,7 @@ diff -up ./src/chewingio.c.phraseChoiceR phraseState ); /* Clear the breakpoint between the New Phrase */ -@@ -1414,10 +1424,10 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1414,10 +1425,10 @@ CHEWING_API int chewing_handle_Numlock( ChewingOutput *pgo = ctx->output; int rtn, QuickCommit = 0; int keystrokeRtn = KEYSTROKE_ABSORB; @@ -451,7 +467,7 @@ diff -up ./src/chewingio.c.phraseChoiceR */ if ( pgdata->chiSymbolBufLen == 0 ) { QuickCommit = 1; -@@ -1428,7 +1438,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1428,7 +1439,7 @@ CHEWING_API int chewing_handle_Numlock( keystrokeRtn = KEYSTROKE_IGNORE ; } else if ( QuickCommit ) { @@ -460,7 +476,7 @@ diff -up ./src/chewingio.c.phraseChoiceR pgo->nCommitStr = 1; pgdata->chiSymbolBufLen = 0; pgdata->chiSymbolCursor = 0; -@@ -1443,7 +1453,7 @@ CHEWING_API int chewing_handle_Numlock( +@@ -1443,7 +1454,7 @@ CHEWING_API int chewing_handle_Numlock( else { /* Otherwise, if we are selecting words, we use numeric keys * as selkey @@ -471,7 +487,7 @@ diff -up ./src/chewingio.c.phraseChoiceR if ( key > '0' && key < '9' ) diff -up ./src/choice.c.phraseChoiceRearward ./src/choice.c --- ./src/choice.c.phraseChoiceRearward 2008-12-02 00:29:20.000000000 +1000 -+++ ./src/choice.c 2009-06-26 15:59:23.000000000 +1000 ++++ ./src/choice.c 2009-07-31 17:16:57.000000000 +1000 @@ -71,22 +71,44 @@ static void ChangeSelectIntervalAndBreak } @@ -520,7 +536,7 @@ diff -up ./src/choice.c.phraseChoiceRear + tail_tmp=begin; + } + -+ while(head<=head_tmp && tail_tmp>=tail){ ++ while(head<=head_tmp && tail_tmp<=tail){ + diff = tail_tmp - head_tmp; + pho_id = TreeFindPhrase( head_tmp, tail_tmp, phoneSeq ); if ( pho_id != -1 ) { @@ -559,7 +575,13 @@ diff -up ./src/choice.c.phraseChoiceRear return 1; return 0; } -@@ -138,7 +166,7 @@ static void SetChoiceInfo( +@@ -133,12 +161,12 @@ static void SetChoiceInfo( + ChoiceInfo *pci,AvailInfo *pai, uint16 *phoneSeq, int cursor, + int candPerPage ) + { +- Word tempWord; ++ Word tempWord; + Phrase tempPhrase; int len; UserPhraseData *pUserPhraseData; uint16 userPhoneSeq[ MAX_PHONE_SEQ_LEN ]; Index: libchewing.spec =================================================================== RCS file: /cvs/pkgs/rpms/libchewing/F-10/libchewing.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- libchewing.spec 30 Jun 2009 03:07:36 -0000 1.33 +++ libchewing.spec 31 Jul 2009 07:35:18 -0000 1.34 @@ -1,7 +1,7 @@ Name: libchewing Version: 0.3.2 -Release: 12%{?dist} +Release: 14%{?dist} Summary: Intelligent phonetic input method library for Traditional Chinese Group: System Environment/Libraries @@ -98,6 +98,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/*.so %changelog +* Tue Jul 30 2009 Ding-Yi Chen - 0.3.2-14 +- Fix [Bug 512108] ibus-chewing crash the application + +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 30 2009 Ding-Yi Chen - 0.3.2-12 - Rebuild to correct tags. @@ -106,7 +112,7 @@ rm -rf $RPM_BUILD_ROOT when repeatly press down key. * Wed May 20 2009 Ding-Yi Chen - 0.3.2-10 -- Need autoreconf and BuildRequires: pkgconfig to make changes in +- Need autoreconf and BuildRequires: pkgconfig to make changes in Makefile.am effective, thus actually fix [Bug 477960] libchewing multilib conflict. * Mon May 18 2009 Ding-Yi Chen - 0.3.2-9 From cebbert at fedoraproject.org Fri Jul 31 07:55:43 2009 From: cebbert at fedoraproject.org (Chuck Ebbert) Date: Fri, 31 Jul 2009 07:55:43 +0000 (UTC) Subject: rpms/kernel/F-10 kernel.spec,1.1206.2.77,1.1206.2.78 Message-ID: <20090731075544.203EF11C00CE@cvs1.fedora.phx.redhat.com> Author: cebbert Update of /cvs/pkgs/rpms/kernel/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11077 Modified Files: Tag: private-fedora-10-2_6_27 kernel.spec Log Message: The kernel package needs to override the new rpm %install behavior. Index: kernel.spec =================================================================== RCS file: /cvs/pkgs/rpms/kernel/F-10/kernel.spec,v retrieving revision 1.1206.2.77 retrieving revision 1.1206.2.78 diff -u -p -r1.1206.2.77 -r1.1206.2.78 --- kernel.spec 31 Jul 2009 07:08:27 -0000 1.1206.2.77 +++ kernel.spec 31 Jul 2009 07:55:42 -0000 1.1206.2.78 @@ -1,3 +1,6 @@ +# We have to override the new %%install behavior because, well... the kernel is special. +%global __spec_install_pre %{___build_pre} + Summary: The Linux kernel # For a stable, released kernel, released_kernel should be 1. For rawhide @@ -1988,6 +1991,9 @@ fi %kernel_variant_files -k vmlinux %{with_kdump} kdump %changelog +* Fri Jul 31 2009 Chuck Ebbert 2.6.27.29-170.2.78 +- The kernel package needs to override the new rpm %%install behavior. + * Thu Jul 30 2009 Chuck Ebbert 2.6.27.29-170.2.77 - Linux 2.6.27.29 From lucilanga at fedoraproject.org Fri Jul 31 07:58:46 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 07:58:46 +0000 (UTC) Subject: rpms/libftdi/devel libftdi-0.16-multilib.patch, NONE, 1.1 libftdi.spec, 1.9, 1.10 Message-ID: <20090731075846.A1C8011C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12177 Modified Files: libftdi.spec Added Files: libftdi-0.16-multilib.patch Log Message: * Fri Jul 31 2009 Lucian Langa - 0.16-5 - fix multilib conflict in libftdi-config (#508498) libftdi-0.16-multilib.patch: libftdi-config.in | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) --- NEW FILE libftdi-0.16-multilib.patch --- --- libftdi-0.16/libftdi-config.in 2009-02-06 17:40:10.000000000 +0200 +++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 10:39:56.000000000 +0300 @@ -1,7 +1,7 @@ #!/bin/sh -prefix=@prefix@ -exec_prefix=@exec_prefix@ +prefix=`pkg-config --variable prefix libftdi` +exec_prefix=`pkg-config --variable exec_prefix libftdi` exec_prefix_set=no usage() @@ -46,17 +46,14 @@ echo_exec_prefix=yes ;; --version) - echo @VERSION@ + pkg-config --modversion libftdi exit 0 ;; --cflags) - if test "@includedir@" != /usr/include ; then - includes="-I at includedir@" - fi - echo_cflags=yes + pkg-config --cflags libftdi ;; --libs) - echo_libs=yes + pkg-config --libs libftdi ;; *) usage 1 1>&2 Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/devel/libftdi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libftdi.spec 25 Jul 2009 05:38:41 -0000 1.9 +++ libftdi.spec 31 Jul 2009 07:58:46 -0000 1.10 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -9,6 +9,7 @@ License: LGPLv2 URL: http://www.intra2net.com/de/produkte/opensource/ftdi/ Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz Source1: no_date_footer.html +Patch0: libftdi-0.16-multilib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig @@ -57,6 +58,7 @@ for building C++ applications with libft %prep %setup -q sed -i -e 's/HTML_FOOTER =/HTML_FOOTER = no_date_footer.html/g' doc/Doxyfile.in +%patch0 -p1 -b .multilib %build @@ -129,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 31 2009 Lucian Langa - 0.16-5 +- fix multilib conflict in libftdi-config (#508498) + * Fri Jul 24 2009 Fedora Release Engineering - 0.16-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From hubbitus at fedoraproject.org Fri Jul 31 07:59:58 2009 From: hubbitus at fedoraproject.org (Pavel Alexeev) Date: Fri, 31 Jul 2009 07:59:58 +0000 (UTC) Subject: rpms/php-pecl-runkit/EL-5 php-pecl-runkit.spec,1.2,1.3 Message-ID: <20090731075958.A0F5D11C00CE@cvs1.fedora.phx.redhat.com> Author: hubbitus Update of /cvs/pkgs/rpms/php-pecl-runkit/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4988 Modified Files: php-pecl-runkit.spec Log Message: Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) Index: php-pecl-runkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/php-pecl-runkit/EL-5/php-pecl-runkit.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- php-pecl-runkit.spec 19 Apr 2009 10:37:59 -0000 1.2 +++ php-pecl-runkit.spec 31 Jul 2009 07:59:58 -0000 1.3 @@ -11,11 +11,7 @@ Summary(ru): ??????????????????????????? Summary(pl): Obr??bka zdefiniowanych przez u??ytkownika funkcji i klas Name: php-pecl-%{peclName} Version: 0.9 -%if 0%{?CVS:1} -Release: 11.CVS%{CVS}%{?dist} -%else -Release: 11%{?dist} -%endif +Release: 12%{?CVS:.CVS%{CVS}}%{?dist} License: PHP Group: Development/Libraries %if 0%{?CVS:1} @@ -63,9 +59,12 @@ og??lnego u??ytku. Wykonywanie danego ko %setup -q -c cd %{peclName} +# Patch set intended only for PHP version greater than 5.3.0 +%if %( php -r 'echo version_compare(PHP_VERSION, "5.3.0", ">=") ? 1 : 0;' ) %patch0 -p2 -b .zrefcount %patch1 -p2 -b .zaddref %patch3 -p2 -b .new_refcount +%endif %build cd %{peclName} @@ -114,10 +113,13 @@ rm -rf %{buildroot} %attr(755,root,root) %{php_extdir}/%{peclName}.so %changelog -* Sun Apr 19 2009 Pavel Alexeev - 0.9-11.CVS20090215 -- Due to the bug in ppc builders ( https://fedorahosted.org/fedora-infrastructure/ticket/1298 ) - kanarip suggest temporrary workaraund: https://fedorahosted.org/fedora-infrastructure/ticket/1298#comment:1 - So, remove version specification from BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 +* Thu Jul 30 2009 Pavel Alexeev - 0.9-12.CVS20090215 +- Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) + +* Sun Apr 5 2009 Pavel Alexeev - 0.9-11.CVS20090215 +- By suggestion in the bug https://fedorahosted.org/fedora-infrastructure/ticket/1298 try remove version specifications in requires: + Turn BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 to just BuildRequires: php-pear, php-devel +- Add more magick in Release tag: 11%%{?CVS:.CVS%%{CVS}}%%{?dist} * Tue Mar 17 2009 Pavel Alexeev - 0.9-10.CVS20090215 - Remi Collet notes in Fedora review: @@ -219,10 +221,8 @@ rm -rf %{buildroot} # Old, Legacy changelog in incorrect format simple commented: #$Log$ -#Revision 1.2 2009/04/19 10:37:59 hubbitus -#- Due to the bug in ppc builders ( https://fedorahosted.org/fedora-infrastructure/ticket/1298 ) -# kanarip suggest temporrary workaraund: https://fedorahosted.org/fedora-infrastructure/ticket/1298#comment:1 -# So, remove version specification from BuildRequires: php-pear >= 1.4.7, php-devel >= 5.0.0 +#Revision 1.3 2009/07/31 07:59:58 hubbitus +#Apply patches only on PHP>=5.3.0. (Bug: https://bugzilla.redhat.com/show_bug.cgi?id=513096 ) # #Revision 1.8 2005/12/22 12:12:04 glen #- rel 5 (rebuild with new php) From lucilanga at fedoraproject.org Fri Jul 31 08:03:28 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 08:03:28 +0000 (UTC) Subject: rpms/libftdi/F-11 libftdi-0.16-multilib.patch, NONE, 1.1 libftdi.spec, 1.8, 1.9 Message-ID: <20090731080328.C21CF11C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13975 Modified Files: libftdi.spec Added Files: libftdi-0.16-multilib.patch Log Message: * Fri Jul 31 2009 Lucian Langa - 0.16-4 - fix multilib conflict in libftdi-config (#508498) libftdi-0.16-multilib.patch: libftdi-config.in | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) --- NEW FILE libftdi-0.16-multilib.patch --- --- libftdi-0.16/libftdi-config.in 2009-02-06 17:40:10.000000000 +0200 +++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 10:39:56.000000000 +0300 @@ -1,7 +1,7 @@ #!/bin/sh -prefix=@prefix@ -exec_prefix=@exec_prefix@ +prefix=`pkg-config --variable prefix libftdi` +exec_prefix=`pkg-config --variable exec_prefix libftdi` exec_prefix_set=no usage() @@ -46,17 +46,14 @@ echo_exec_prefix=yes ;; --version) - echo @VERSION@ + pkg-config --modversion libftdi exit 0 ;; --cflags) - if test "@includedir@" != /usr/include ; then - includes="-I at includedir@" - fi - echo_cflags=yes + pkg-config --cflags libftdi ;; --libs) - echo_libs=yes + pkg-config --libs libftdi ;; *) usage 1 1>&2 Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-11/libftdi.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- libftdi.spec 1 Jul 2009 13:03:58 -0000 1.8 +++ libftdi.spec 31 Jul 2009 08:03:28 -0000 1.9 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -9,6 +9,7 @@ License: LGPLv2 URL: http://www.intra2net.com/de/produkte/opensource/ftdi/ Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz Source1: no_date_footer.html +Patch0: libftdi-0.16-multilib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig @@ -55,6 +56,7 @@ for building C++ applications with libft %prep %setup -q sed -i -e 's/HTML_FOOTER =/HTML_FOOTER = no_date_footer.html/g' doc/Doxyfile.in +%patch0 -p1 -b .multilib %build @@ -126,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 31 2009 Lucian Langa - 0.16-4 +- fix multilib conflict in libftdi-config (#508498) + * Wed Jul 01 2009 Lucian Langa - 0.16-3 - added udev rules - addedd c++, python bindings From iarnell at fedoraproject.org Fri Jul 31 08:03:29 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Fri, 31 Jul 2009 08:03:29 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-State-URI/devel .cvsignore, 1.3, 1.4 perl-Catalyst-Plugin-Session-State-URI.spec, 1.4, 1.5 sources, 1.3, 1.4 Message-ID: <20090731080329.C129611C00CE@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13994 Modified Files: .cvsignore perl-Catalyst-Plugin-Session-State-URI.spec sources Log Message: * Fri Jul 31 2009 Iain Arnell 0.11-1 - update to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- .cvsignore 8 Apr 2009 15:31:36 -0000 1.3 +++ .cvsignore 31 Jul 2009 08:03:29 -0000 1.4 @@ -1 +1 @@ -Catalyst-Plugin-Session-State-URI-0.09.tar.gz +Catalyst-Plugin-Session-State-URI-0.11.tar.gz Index: perl-Catalyst-Plugin-Session-State-URI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel/perl-Catalyst-Plugin-Session-State-URI.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- perl-Catalyst-Plugin-Session-State-URI.spec 26 Jul 2009 04:15:11 -0000 1.4 +++ perl-Catalyst-Plugin-Session-State-URI.spec 31 Jul 2009 08:03:29 -0000 1.5 @@ -1,11 +1,11 @@ Name: perl-Catalyst-Plugin-Session-State-URI -Version: 0.09 -Release: 2%{?dist} +Version: 0.11 +Release: 1%{?dist} Summary: Saves session IDs by rewriting URIs delivered to the client License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/Catalyst-Plugin-Session-State-URI/ -Source0: http://www.cpan.org/authors/id/B/BO/BOBTFISH/Catalyst-Plugin-Session-State-URI-%{version}.tar.gz +Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Catalyst-Plugin-Session-State-URI-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: perl(Catalyst::Plugin::Session) >= 0.06 @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Fri Jul 31 2009 Iain Arnell 0.11-1 +- update to latest upstream version + * Sat Jul 25 2009 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 8 Apr 2009 15:31:36 -0000 1.3 +++ sources 31 Jul 2009 08:03:29 -0000 1.4 @@ -1 +1 @@ -f919b9753e0c474ede924d7a9c5f03dc Catalyst-Plugin-Session-State-URI-0.09.tar.gz +a54dee658c4556a72dcf4eea0e814ca1 Catalyst-Plugin-Session-State-URI-0.11.tar.gz From than at fedoraproject.org Fri Jul 31 08:04:12 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 31 Jul 2009 08:04:12 +0000 (UTC) Subject: rpms/kdebase-workspace/devel sources,1.42,1.43 Message-ID: <20090731080412.E178E11C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdebase-workspace/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14337 Modified Files: sources Log Message: respin Index: sources =================================================================== RCS file: /cvs/extras/rpms/kdebase-workspace/devel/sources,v retrieving revision 1.42 retrieving revision 1.43 diff -u -p -r1.42 -r1.43 --- sources 30 Jul 2009 08:03:59 -0000 1.42 +++ sources 31 Jul 2009 08:04:12 -0000 1.43 @@ -1 +1 @@ -fa5c39df1559e47b3176703a5b3e1ab4 kdebase-workspace-4.3.0.tar.bz2 +3d554558eb4187716172f60c8b97bd64 kdebase-workspace-4.3.0.tar.bz2 From fabbione at fedoraproject.org Fri Jul 31 08:17:20 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:17:20 +0000 (UTC) Subject: rpms/corosync/F-10 corosync.spec,1.3,1.4 sources,1.2,1.3 Message-ID: <20090731081720.9870711C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/corosync/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19412 Modified Files: corosync.spec sources Log Message: New upstream stable release fixes several major bugs Index: corosync.spec =================================================================== RCS file: /cvs/pkgs/rpms/corosync/F-10/corosync.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- corosync.spec 14 Oct 2008 04:06:08 -0000 1.3 +++ corosync.spec 31 Jul 2009 08:17:19 -0000 1.4 @@ -1,64 +1,70 @@ +# define alphatag svn1211 + Name: corosync Summary: The Corosync Cluster Engine and Application Programming Interfaces -Version: 0.92 -Release: 3%{?alphatag:.%{alphatag}}%{?dist} +Version: 1.0.0 +Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://www.openais.org Source0: http://developer.osdl.org/dev/openais/downloads/corosync-%{version}/corosync-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# Runtime bits +Requires: corosynclib = %{version}-%{release} Requires(pre): /usr/sbin/useradd Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig Conflicts: openais <= 0.89, openais-devel <= 0.89 -%define ais_user_uid 39 - -%description -This package contains the Corosync Cluster Engine Executive, several default -APIs and libraries, default configuration files, and an init script. - -%package devel -Summary: The Corosync Cluster Engine -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} +%define buildtrunk 0 +%{?alphatag: %define buildtrunk 1} +%{?_with_buildtrunk: %define buildtrunk 1} + +%if %{buildtrunk} +BuildRequires: autoconf automake +%endif +BuildRequires: nss-devel -%description devel -This package contains include files and man pages used to develop using -The Corosync Cluster Engine APIs. +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %prep %setup -q -n corosync-%{version} -%build +%if %{buildtrunk} +./autogen.sh +%endif + +%{_configure} CFLAGS="$(echo '%{optflags}')" \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ + --libdir=%{_libdir} -# -O3 required for performance reasons -# So we get proper debug output, for now we don't compile with O3 -#CFLAGS="$(echo '%{optflags}' | sed -e 's/-O[0-9]*//') -O3" -CFLAGS="$(echo '%{optflags}')" -make CFLAGS="$CFLAGS" +%build +make %{_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT STATICLIBS=NO -mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} -mkdir -p $RPM_BUILD_ROOT%{_initddir} -install -m 644 LICENSE SECURITY README.devmap \ - $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/ -install -m 755 init/redhat $RPM_BUILD_ROOT%{_initddir}/corosync +rm -rf %{buildroot} + +make install DESTDIR=%{buildroot} +install -d %{buildroot}%{_initddir} +install -m 755 init/redhat %{buildroot}%{_initddir}/corosync + +## tree fixup +# drop static libs +rm -f %{buildroot}%{_libdir}/*.a +# drop docs and html docs for now +rm -rf %{buildroot}%{_docdir}/* %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} -%pre -# Add the "ais" user -/usr/sbin/useradd -c 'The Corosync Cluster Engine' \ - -u %{ais_user_uid} -s /sbin/nologin -r -d '/' ais 2> /dev/null || : +%description +This package contains the Corosync Cluster Engine Executive, several default +APIs and libraries, default configuration files, and an init script. %post /sbin/chkconfig --add corosync || : -/sbin/ldconfig > /dev/null %preun if [ $1 -eq 0 ]; then @@ -68,19 +74,19 @@ fi %postun [ "$1" -ge "1" ] && /sbin/service corosync condrestart &>/dev/null || : -/sbin/ldconfig > /dev/null %files %defattr(-,root,root,-) -%dir %{_docdir}/%{name}-%{version} -%doc %{_docdir}/%{name}-%{version}/LICENSE -%doc %{_docdir}/%{name}-%{version}/SECURITY +%doc LICENSE SECURITY %{_sbindir}/corosync %{_sbindir}/corosync-keygen %{_sbindir}/corosync-objctl %{_sbindir}/corosync-cfgtool -%config(noreplace) /etc/corosync.conf -%config(noreplace) /etc/ld.so.conf.d/corosync-*.conf +%{_sbindir}/corosync-fplay +%{_sbindir}/corosync-pload +%dir %{_sysconfdir}/corosync +%dir %{_sysconfdir}/corosync/uidgid.d +%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example %{_initddir}/corosync %dir %{_libexecdir}/lcrso %{_libexecdir}/lcrso/coroparse.lcrso @@ -89,35 +95,75 @@ fi %{_libexecdir}/lcrso/service_cpg.lcrso %{_libexecdir}/lcrso/service_evs.lcrso %{_libexecdir}/lcrso/service_confdb.lcrso +%{_libexecdir}/lcrso/service_pload.lcrso +%{_libexecdir}/lcrso/quorum_votequorum.lcrso +%{_libexecdir}/lcrso/quorum_testquorum.lcrso +%{_libexecdir}/lcrso/vsf_quorum.lcrso %{_libexecdir}/lcrso/vsf_ykd.lcrso -%dir %{_libdir}/corosync -%{_libdir}/corosync/libcfg.so.* -%{_libdir}/corosync/libcpg.so.* -%{_libdir}/corosync/libconfdb.so.* -%{_libdir}/corosync/libevs.so.* -%{_libdir}/corosync/libtotem_pg.so.* -%{_libdir}/corosync/liblogsys.so.* -%{_libdir}/corosync/libcoroutil.so.* +%dir %{_localstatedir}/lib/corosync %{_mandir}/man8/corosync_overview.8* %{_mandir}/man8/corosync-objctl.8* %{_mandir}/man5/corosync.conf.5* -%files devel +%package -n corosynclib +Summary: The Corosync Cluster Engine Libraries +Group: System Environment/Libraries +Conflicts: corosync < 0.92-7 + +%description -n corosynclib +This package contains corosync libraries. + +%files -n corosynclib %defattr(-,root,root,-) -%dir %{_docdir}/%{name}-%{version} -%doc %{_docdir}/%{name}-%{version}/README.devmap +%doc LICENSE +%{_libdir}/libcfg.so.* +%{_libdir}/libcpg.so.* +%{_libdir}/libconfdb.so.* +%{_libdir}/libevs.so.* +%{_libdir}/libtotem_pg.so.* +%{_libdir}/liblogsys.so.* +%{_libdir}/libcoroipcc.so.* +%{_libdir}/libcoroipcs.so.* +%{_libdir}/libquorum.so.* +%{_libdir}/libvotequorum.so.* +%{_libdir}/libpload.so.* + +%post -n corosynclib -p /sbin/ldconfig + +%postun -n corosynclib -p /sbin/ldconfig + +%package -n corosynclib-devel +Summary: The Corosync Cluster Engine Development Kit +Group: Development/Libraries +Requires: corosynclib = %{version}-%{release} +Requires: pkgconfig +Provides: corosync-devel = %{version} +Obsoletes: corosync-devel < 0.92-7 + +%description -n corosynclib-devel +This package contains include files and man pages used to develop using +The Corosync Cluster Engine APIs. + +%files -n corosynclib-devel +%defattr(-,root,root,-) +%doc LICENSE README.devmap %dir %{_includedir}/corosync/ -%{_includedir}/corosync/saAis.h -%{_includedir}/corosync/ais_util.h +%{_includedir}/corosync/cs_config.h +%{_includedir}/corosync/corodefs.h +%{_includedir}/corosync/coroipc_types.h +%{_includedir}/corosync/coroipcs.h +%{_includedir}/corosync/coroipcc.h %{_includedir}/corosync/cfg.h %{_includedir}/corosync/confdb.h +%{_includedir}/corosync/corotypes.h %{_includedir}/corosync/cpg.h %{_includedir}/corosync/evs.h %{_includedir}/corosync/hdb.h -%{_includedir}/corosync/ipc_gen.h %{_includedir}/corosync/list.h %{_includedir}/corosync/mar_gen.h %{_includedir}/corosync/swab.h +%{_includedir}/corosync/quorum.h +%{_includedir}/corosync/votequorum.h %dir %{_includedir}/corosync/totem/ %{_includedir}/corosync/totem/coropoll.h %{_includedir}/corosync/totem/totem.h @@ -132,22 +178,149 @@ fi %{_includedir}/corosync/engine/coroapi.h %{_includedir}/corosync/engine/logsys.h %{_includedir}/corosync/engine/objdb.h -%{_libdir}/corosync/libcfg.so -%{_libdir}/corosync/libcpg.so -%{_libdir}/corosync/libconfdb.so -%{_libdir}/corosync/libevs.so -%{_libdir}/corosync/libtotem_pg.so -%{_libdir}/corosync/liblogsys.so -%{_libdir}/corosync/libcoroutil.so +%{_includedir}/corosync/engine/quorum.h +%{_libdir}/libcfg.so +%{_libdir}/libcpg.so +%{_libdir}/libconfdb.so +%{_libdir}/libevs.so +%{_libdir}/libtotem_pg.so +%{_libdir}/liblogsys.so +%{_libdir}/libcoroipcc.so +%{_libdir}/libcoroipcs.so +%{_libdir}/libquorum.so +%{_libdir}/libvotequorum.so +%{_libdir}/libpload.so +%{_libdir}/pkgconfig/*.pc %{_mandir}/man3/cpg_*3* %{_mandir}/man3/evs_*3* %{_mandir}/man3/confdb_*3* +%{_mandir}/man3/votequorum_*3* %{_mandir}/man8/cpg_overview.8* %{_mandir}/man8/evs_overview.8* %{_mandir}/man8/confdb_overview.8* %{_mandir}/man8/logsys_overview.8* +%{_mandir}/man8/votequorum_overview.8* +%{_mandir}/man8/coroipc_overview.8* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release +- spec file updates: + * more consistent use of macros across the board + * fix directory ownership + +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + +* Sat Jun 20 2009 Fabio M. Di Nitto - 0.98-1 +- New upstream release +- spec file updates: + * Drop corosync-trunk patch and alpha tag. + * Fix alphatag vs buildtrunk handling. + * Drop requirement on ais user/group and stop creating them. + * New config file locations from upstream: /etc/corosync/corosync.conf. + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.97-1.svn2233 +- spec file updates: + * Update to svn version 2233 to include library linking fixes + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.97-1.svn2232 +- New upstream release +- spec file updates: + * Drop pkgconfig fix that's now upstream + * Update to svn version 2232 + * Define buildtrunk if we are using svn snapshots + * BuildRequires: nss-devel to enable nss crypto for network communication + * Force autogen invokation if buildtrunk is defined + * Whitespace cleanup + * Stop shipping corosync.conf in favour of a generic example + * Update file list + +* Mon Mar 30 2009 Fabio M. Di Nitto - 0.95-2 +- Backport svn commit 1913 to fix pkgconfig files generation + and unbreak lvm2 build. + +* Tue Mar 24 2009 Fabio M. Di Nitto - 0.95-1 +- New upstream release +- spec file updates: + * Drop alpha tag + * Drop local patches (no longer required) + * Allow to build from svn trunk by supporting rpmbuild --with buildtrunk + * BuildRequires autoconf automake if building from trunk + * Execute autogen.sh if building from trunk and if no configure is available + * Switch to use rpm configure macro and set standard install paths + * Build invokation now supports _smp_mflags + * Remove install section for docs and use proper doc macro instead + * Add tree fixup bits to drop static libs and html docs (only for now) + * Add LICENSE file to all subpackages + * libraries have moved to libdir. Drop ld.so.conf.d corosync file + * Update BuildRoot usage to preferred versions/names + +* Tue Mar 10 2009 Fabio M. Di Nitto - 0.94-5.svn1797 +- Update the corosync-trunk patch for real this time. + +* Tue Mar 10 2009 Fabio M. Di Nitto - 0.94-4.svn1797 +- Import fixes from upstream: + * Cleanup logsys format init around to use default settings (1795) + * logsys_format_set should use its own internal copy of format_buffer (1796) + * Add logsys_format_get to logsys API (1797) +- Cherry pick svn1807 to unbreak CPG. + +* Mon Mar 9 2009 Fabio M. Di Nitto - 0.94-3.svn1794 +- Import fixes from upstream: + * Add reserve/release feature to totem message queue space (1793) + * Fix CG shutdown (1794) + +* Fri Mar 6 2009 Fabio M. Di Nitto - 0.94-2.svn1792 +- Import fixes from upstream: + * Fix uninitialized memory. Spotted by valgrind (1788) + * Fix logsys_set_format by updating the right bits (1789) + * logsys: re-add support for timestamp (1790) + * Fix cpg crash (1791) + * Allow logsys_format_set to reset to default (1792) + +* Tue Mar 3 2009 Fabio M. Di Nitto - 0.94-1 +- New upstream release. +- Drop obsolete patches. +- Add soname bump patch that was missing from upstream. + +* Wed Feb 25 2009 Fabio M. Di Nitto - 0.93-4 +- Add Makefile fix to install all corosync tools (commit r1780) + +* Tue Feb 24 2009 Fedora Release Engineering - 0.93-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 23 2009 Fabio M. Di Nitto - 0.93-2 +- Rename gcc-4.4 patch to match svn commit (r1767). +- Backport patch from trunk (commit r1774) to fix quorum engine. + +* Thu Feb 19 2009 Fabio M. Di Nitto - 0.93-1 +- New upstream release. +- Drop alphatag from spec file. +- Drop trunk patch. +- Update Provides for corosynclib-devel. +- Backport gcc-4.4 build fix from trunk. + +* Mon Feb 2 2009 Fabio M. Di Nitto - 0.92-7.svn1756 +- Update to svn trunk at revision 1756 from upstream. +- Add support pkgconfig to devel package. +- Tidy up spec files by re-organazing sections according to packages. +- Split libraries from corosync to corosynclib. +- Rename corosync-devel to corosynclib-devel. +- Comply with multiarch requirements (libraries). + +* Tue Jan 27 2009 Fabio M. Di Nitto - 0.92-6.svn1750 +- Update to svn trunk at revision 1750 from upstream. +- Include new quorum service in the packaging. + +* Mon Dec 15 2008 Fabio M. Di Nitto - 0.92-5.svn1709 +- Update to svn trunk at revision 1709 from upstream. +- Update spec file to include new include files. + +* Wed Dec 10 2008 Fabio M. Di Nitto - 0.92-4.svn1707 +- Update to svn trunk at revision 1707 from upstream. +- Update spec file to include new lcrso services and include file. + * Mon Oct 13 2008 Dennis Gilmore - 0.92-3 - remove ExclusiveArch line Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/corosync/F-10/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 25 Sep 2008 06:16:38 -0000 1.2 +++ sources 31 Jul 2009 08:17:19 -0000 1.3 @@ -1 +1 @@ -e0fec3c380de83711cf3f4609d59e16e corosync-0.92.tar.gz +257f5509f3da951ba84b596fedf42185 corosync-1.0.0.tar.gz From fabbione at fedoraproject.org Fri Jul 31 08:22:29 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:22:29 +0000 (UTC) Subject: rpms/openais/F-10 openais.spec,1.30,1.31 sources,1.11,1.12 Message-ID: <20090731082229.1E05711C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/openais/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21422 Modified Files: openais.spec sources Log Message: New upstream stable release fixes several major bugs Index: openais.spec =================================================================== RCS file: /cvs/pkgs/rpms/openais/F-10/openais.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- openais.spec 14 Oct 2008 03:55:11 -0000 1.30 +++ openais.spec 31 Jul 2009 08:22:28 -0000 1.31 @@ -1,55 +1,73 @@ +# define alphatag 0 + Name: openais Summary: The openais Standards-Based Cluster Framework executive and APIs -Version: 0.91 -Release: 2%{?dist} +Version: 1.0.0 +Release: 1%{?alphatag:.%{alphatag}}%{?dist} License: BSD Group: System Environment/Base URL: http://developer.osdl.org/dev/openais/ Source0: http://www.osdl.org/downloads/openais-%{version}/openais-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# Runtime bits Requires(post): /sbin/chkconfig Requires(preun): /sbin/chkconfig -Requires: corosync -BuildRequires: corosync-devel +Requires: corosync >= 1.0.0-1 +Requires: openaislib = %{version}-%{release} Conflicts: openais-devel <= 0.89 -%description -This package contains the openais service handlers, default configuration -files, programming libraries, and init script. +# Setup/build bits +BuildRequires: corosynclib-devel >= 1.0.0-1 -%package devel -Summary: The openais Standards-Based Cluster Framework libraries -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} +%define buildtrunk 0 +%{?alphatag: %define buildtrunk 1} +%{?_with_buildtrunk: %define buildtrunk 1} + +%if %{buildtrunk} +BuildRequires: autoconf automake +%endif -%description devel -This package contains the include files used to develop using openais APIs. +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %prep %setup -q -n openais-%{version} +%if %{buildtrunk} +./autogen.sh +%endif + +%{_configure} CFLAGS="$(echo '%{optflags}')" \ + --prefix=%{_prefix} \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ + --libdir=%{_libdir} \ + --with-lcrso-dir=$(pkg-config corosync --variable lcrsodir) + %build -# -O3 required for performance reasons -# So we get proper debug output, for now we don't compile with O3 -#CFLAGS="$(echo '%{optflags}' | sed -e 's/-O[0-9]*//') -O3" -CFLAGS="$(echo '%{optflags}')" -make CFLAGS="$CFLAGS" +make %{_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT STATICLIBS=NO -mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} -mkdir -p $RPM_BUILD_ROOT%{_initrddir} -install -m 644 LICENSE README.amf $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/ -install -m 755 init/redhat $RPM_BUILD_ROOT%{_initrddir}/openais +rm -rf %{buildroot} + +make install DESTDIR=%{buildroot} +mkdir -p %{buildroot}%{_initrddir} +install -m 755 init/redhat %{buildroot}%{_initrddir}/openais + +## tree fixup +# drop static libs +rm -f %{buildroot}%{_libdir}/*.a +# drop docs and html docs for now +rm -rf %{buildroot}%{_docdir}/* %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} + +%description +This package contains the openais service handlers, default configuration +files and init script. %post /sbin/chkconfig --add openais || : -/sbin/ldconfig > /dev/null %preun if [ $1 -eq 0 ]; then @@ -59,20 +77,14 @@ fi %postun [ "$1" -ge "1" ] && %{_initrddir}/openais condrestart &>/dev/null || : -/sbin/ldconfig > /dev/null %files %defattr(-,root,root,-) -%dir %{_docdir}/%{name}-%{version} -%doc %{_docdir}/%{name}-%{version}/LICENSE -%doc %{_docdir}/%{name}-%{version}/README.amf -%dir /etc/ais -%config(noreplace) /etc/ais/openais.conf -%config(noreplace) /etc/ais/amf.conf -%config(noreplace) /etc/ld.so.conf.d/openais-*.conf +%doc LICENSE README.amf +%dir %{_sysconfdir}/corosync +%config(noreplace) %{_sysconfdir}/corosync/amf.conf.example %{_initrddir}/openais %dir %{_libexecdir}/lcrso -%{_libexecdir}/lcrso/openaisparser.lcrso %{_libexecdir}/lcrso/openaisserviceenable.lcrso %{_libexecdir}/lcrso/service_amf.lcrso %{_libexecdir}/lcrso/service_ckpt.lcrso @@ -80,22 +92,50 @@ fi %{_libexecdir}/lcrso/service_evt.lcrso %{_libexecdir}/lcrso/service_lck.lcrso %{_libexecdir}/lcrso/service_msg.lcrso +%{_libexecdir}/lcrso/service_tmr.lcrso %{_mandir}/man8/openais_overview.8* %{_mandir}/man5/openais.conf.5* %{_mandir}/man5/amf.conf.5* -%dir %{_libdir}/openais -%{_libdir}/openais/libSaAmf.so.* -%{_libdir}/openais/libSaCkpt.so.* -%{_libdir}/openais/libSaClm.so.* -%{_libdir}/openais/libSaEvt.so.* -%{_libdir}/openais/libSaLck.so.* -%{_libdir}/openais/libSaMsg.so.* %{_sbindir}/aisexec %{_sbindir}/openais-instantiate -%files devel +%package -n openaislib +Summary: The openais Standards-Based Cluster Framework libraries +Group: System Environment/Libraries +Conflicts: openais < 0.91-6 + +%description -n openaislib +This package contains openais libraries. + +%files -n openaislib %defattr(-,root,root,-) -%dir %{_docdir}/%{name}-%{version} +%doc LICENSE +%{_libdir}/libSaAmf.so.* +%{_libdir}/libSaCkpt.so.* +%{_libdir}/libSaClm.so.* +%{_libdir}/libSaEvt.so.* +%{_libdir}/libSaLck.so.* +%{_libdir}/libSaMsg.so.* +%{_libdir}/libSaTmr.so.* + +%post -n openaislib -p /sbin/ldconfig + +%postun -n openaislib -p /sbin/ldconfig + +%package -n openaislib-devel +Summary: The openais Standards-Based Cluster Framework libraries +Group: Development/Libraries +Requires: openaislib = %{version}-%{release} +Requires: pkgconfig +Provides: openais-devel = %{version} +Obsoletes: openais-devel < 0.91-6 + +%description -n openaislib-devel +This package contains the include files used to develop using openais APIs. + +%files -n openaislib-devel +%defattr(-,root,root,-) +%doc LICENSE %dir %{_includedir}/openais/ %{_includedir}/openais/saAis.h %{_includedir}/openais/saAmf.h @@ -104,14 +144,103 @@ fi %{_includedir}/openais/saEvt.h %{_includedir}/openais/saLck.h %{_includedir}/openais/saMsg.h -%{_libdir}/openais/libSaAmf.so -%{_libdir}/openais/libSaCkpt.so -%{_libdir}/openais/libSaClm.so -%{_libdir}/openais/libSaEvt.so -%{_libdir}/openais/libSaLck.so -%{_libdir}/openais/libSaMsg.so +%{_includedir}/openais/saTmr.h +%{_libdir}/libSaAmf.so +%{_libdir}/libSaCkpt.so +%{_libdir}/libSaClm.so +%{_libdir}/libSaEvt.so +%{_libdir}/libSaLck.so +%{_libdir}/libSaMsg.so +%{_libdir}/libSaTmr.so +%{_libdir}/pkgconfig/*.pc %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 1.0.0-1 +- New upstream release +- spec file updates: + * consistent use of macros across the board + +* Thu Jul 2 2009 Fabio M. Di Nitto - 0.100-1 +- New upstream release + +* Sat Jun 20 2009 Fabio M. Di Nitto - 0.97-1 +- New upstream release +- spec file updates: + * Drop openais-trunk patch and alpha tag. + * Fix alphatag vs buildtrunk handling. + * New config file locations from upstream: /etc/corosync/. + * Fix configure invokation. + * Requires and BuildRequires corosync 0.98 + +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.96-1.svn1951 +- New upstream release +- spec file updates: + * Update to svn version 1951. + * Define buildtrunk if we are using svn snapshots + * Bump Requires and BuildRequires to corosync 0.97-1.svn2226 + * Force autogen invokation if buildtrunk is defined + * Whitespace cleanup + * Respect _smp_mflags and update configure invokation + * Update tree cleanup section + * Stop shipping openais.conf and amf.conf in favour of generic examples + * libraries have moved to libdir. Drop ld.so.conf.d openais file + +* Tue Mar 24 2009 Fabio M. Di Nitto - 0.94-1 +- New upstream release +- spec file updates: + * Drop alpha tag + * Drop local patches (no longer required) + * Remove install section for docs and use proper doc macro instead + * Add LICENSE file to all subpackages + * Bump Requires and BuildRequires to corosync 0.95-1 + * openaislib-devel now Requires pkgconfig + * Update BuildRoot usage to preferred versions/names + +* Mon Mar 9 2009 Fabio M. Di Nitto - 0.93-2.svn1741 +- Import fixes from upstream: + * Updates for new totem interface (1737, 1738, 1739, 1741). + * Fix ipc connection (1740). + +* Tue Mar 3 2009 Fabio M. Di Nitto - 0.93-1 +- New upstream release. +- Bump Requires and BuildRequires to corosync 0.94-1. + +* Thu Feb 26 2009 Fedora Release Engineering - 0.92-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 23 2009 Fabio M. Di Nitto - 0.92-2 +- Rename SaTmr patch to match svn commit (r1717). + +* Thu Feb 19 2009 Fabio M. Di Nitto - 0.92-1 +- New upstream release. +- Drop alphatag from spec file. +- Drop trunk patch. +- Update Provides for corosynclib-devel. +- Update BuildRequires and Requires for new corosync. +- Add libSaTmr to packaging. +- Backport pkgconfig support for libSaTmr from trunk. + +* Mon Feb 2 2009 Fabio M. Di Nitto - 0.91-6.svn1688 +- Update to svn trunk at revision 1688 from upstream. +- Add support pkgconfig to devel package. +- Update BuildRequires: on corosynclib-devel. +- Tidy up spec files by re-organazing sections according to packages. +- Split libraries from openais to openaislib. +- Rename openais-devel to openaislib-devel. +- Comply with multiarch requirements (libraries). + +* Tue Jan 27 2009 Fabio M. Di Nitto - 0.91-5.svn1682 +- Update to svn trunk at revision 1682 from upstream. + +* Mon Dec 15 2008 Fabio M. Di Nitto - 0.91-4.svn1667 +- No change rebuild against newer corosync. + +* Wed Dec 10 2008 Fabio M. Di Nitto - 0.91-3.svn1667 +- Update to svn trunk at revision 1667 from upstream. +- Update spec file to support alpha tag versioning. +- Tight dependencies (both build and runtime) with corosync to avoid + internal ABI issues. + * Mon Oct 13 2008 Dennis Gilmore 0.91-2 - remove ExclusiveArch line Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/openais/F-10/sources,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- sources 25 Sep 2008 08:07:36 -0000 1.11 +++ sources 31 Jul 2009 08:22:29 -0000 1.12 @@ -1 +1 @@ -b88301b21b4cb59765cb872c231128fb openais-0.91.tar.gz +33c22a0da30a5a4dd091375839edbf07 openais-1.0.0.tar.gz From iarnell at fedoraproject.org Fri Jul 31 08:22:22 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Fri, 31 Jul 2009 08:22:22 +0000 (UTC) Subject: rpms/perl-Catalyst-Plugin-Session-State-URI/devel perl-Catalyst-Plugin-Session-State-URI.spec, 1.5, 1.6 Message-ID: <20090731082222.B23F211C00CE@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21482 Modified Files: perl-Catalyst-Plugin-Session-State-URI.spec Log Message: PERL5_CPANPLUS_IS_RUNNING=1 Index: perl-Catalyst-Plugin-Session-State-URI.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Catalyst-Plugin-Session-State-URI/devel/perl-Catalyst-Plugin-Session-State-URI.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- perl-Catalyst-Plugin-Session-State-URI.spec 31 Jul 2009 08:03:29 -0000 1.5 +++ perl-Catalyst-Plugin-Session-State-URI.spec 31 Jul 2009 08:22:22 -0000 1.6 @@ -29,7 +29,7 @@ delivered to the client, and extracting %setup -q -n Catalyst-Plugin-Session-State-URI-%{version} %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +PERL5_CPANPLUS_IS_RUNNING=1 %{__perl} Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install From fabbione at fedoraproject.org Fri Jul 31 08:25:12 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:25:12 +0000 (UTC) Subject: rpms/cluster/F-10 cluster.spec, 1.26, 1.27 sources, 1.13, 1.14 fix_fence_xvmd.diff, 1.1, NONE fix_make_args1.diff, 1.1, NONE fix_make_args2.diff, 1.1, NONE fix_monlist.diff, 1.1, NONE fix_qdisk.diff, 1.1, NONE fix_rgmanager_build1.diff, 1.1, NONE fix_rgmanager_build2.diff, 1.1, NONE fix_rgmanager_build3.diff, 1.1, NONE fix_shell_quoting.diff, 1.1, NONE fix_smb.diff, 1.1, NONE fix_xmlloader1.diff, 1.1, NONE fix_xmlloader2.diff, 1.1, NONE Message-ID: <20090731082512.2D57811C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/cluster/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22760 Modified Files: cluster.spec sources Removed Files: fix_fence_xvmd.diff fix_make_args1.diff fix_make_args2.diff fix_monlist.diff fix_qdisk.diff fix_rgmanager_build1.diff fix_rgmanager_build2.diff fix_rgmanager_build3.diff fix_shell_quoting.diff fix_smb.diff fix_xmlloader1.diff fix_xmlloader2.diff Log Message: New upstream stable release fixes several major bugs Index: cluster.spec =================================================================== RCS file: /cvs/pkgs/rpms/cluster/F-10/cluster.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- cluster.spec 21 Nov 2008 07:40:19 -0000 1.26 +++ cluster.spec 31 Jul 2009 08:25:11 -0000 1.27 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,76 +14,39 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -# %%define alphatag 2.99.02 +## define alphatag rc4 Name: cluster Summary: Red Hat Cluster -Version: 2.99.12 -Release: 2%{?alphatag:.%{alphatag}}%{?dist} +Version: 3.0.0 +Release: 20%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ -Source0: ftp://sources.redhat.com/pub/cluster/releases/cluster-%{version}.tar.gz -Patch0: fix_fence_xvmd.diff -Patch1: fix_make_args2.diff -Patch2: fix_monlist.diff -Patch3: fix_qdisk.diff -Patch4: fix_rgmanager_build1.diff -Patch5: fix_rgmanager_build2.diff -Patch6: fix_rgmanager_build3.diff -Patch7: fix_shell_quoting.diff -Patch8: fix_smb.diff -Patch9: fix_xmlloader1.diff -Patch10: fix_xmlloader2.diff -Patch11: fix_make_args1.diff +Source0: ftp://sources.redhat.com/pub/cluster/releases/cluster-%{version}%{?alphatag:.%{alphatag}}.tar.gz ## Setup/build bits -# build support for virtualization -%define buildvirt 0 -%ifarch i386 x86_64 ia64 -%define buildvirt 1 -%endif - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Build dependencies BuildRequires: perl python BuildRequires: glibc-kernheaders glibc-devel -BuildRequires: libxml2-devel ncurses-devel slang-devel libvolume_id-devel -BuildRequires: corosync-devel >= 0.92 corosync-devel < 0.93 -BuildRequires: openais-devel >= 0.91 openais < 0.92 +BuildRequires: libxml2-devel ncurses-devel slang-devel +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 BuildRequires: openldap-devel perl(ExtUtils::MakeMaker) -%if %{buildvirt} -BuildRequires: nss-devel nspr-devel libvirt-devel xen-libs -%endif %prep -%setup -q -n cluster-%{version} -%patch0 -p1 -%patch11 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 +%setup -q -n cluster-%{version}%{?alphatag:.%{alphatag}} %build -# for legacy reasons, all binaries have always been installed in /sbin ./configure \ - --sbindir=/sbin \ + --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ -%if %{buildvirt} - --enable_virt \ -%endif - --corosynclibdir=%{_libdir}/corosync \ - --openaislibdir=%{_libdir}/openais \ + --without_fence_agents \ + --without_resource_agents \ --without_kernel_modules \ --disable_kernel_check @@ -91,35 +54,29 @@ BuildRequires: nss-devel nspr-devel libv CFLAGS="$(echo '%{optflags}')" make %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/cluster -# install logging bits -mkdir -p $RPM_BUILD_ROOT/var/log/cluster +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} ## tree fix up # logrotate name -mv $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/cluster \ - $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/cman +mv %{buildroot}%{_sysconfdir}/logrotate.d/cluster \ + %{buildroot}%{_sysconfdir}/logrotate.d/cman # remove static libraries -find $RPM_BUILD_ROOT -name "*.a" -exec rm {} \; +find %{buildroot} -name "*.a" -exec rm {} \; # fix library permissions or fedora strip helpers won't work. -find $RPM_BUILD_ROOT -name "lib*.so.*" -exec chmod 0755 {} \; +find %{buildroot} -name "lib*.so.*" -exec chmod 0755 {} \; # fix lcrso permissions or fedora strip helpers won't work. -find $RPM_BUILD_ROOT -name "*.lcrso" -exec chmod 0755 {} \; -# fix libfence permissions -chmod 0755 $RPM_BUILD_ROOT%{_datadir}/fence/*.py -chmod 0755 $RPM_BUILD_ROOT%{_datadir}/fence/telnet_ssl +find %{buildroot} -name "*.lcrso" -exec chmod 0755 {} \; # remove docs -rm -rf $RPM_BUILD_ROOT/usr/share/doc/cluster +rm -rf %{buildroot}/usr/share/doc/cluster # cleanup perl bindings bits -find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; -find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} \; -find $RPM_BUILD_ROOT -type f -name '*.bs' -a -empty -exec rm -f {} \; -find $RPM_BUILD_ROOT -type f -name CCS.so -exec chmod 755 {} \; +find %{buildroot} -type f -name .packlist -exec rm -f {} \; +find %{buildroot} -type f -name perllocal.pod -exec rm -f {} \; +find %{buildroot} -type f -name '*.bs' -a -empty -exec rm -f {} \; +find %{buildroot} -type f -name CCS.so -exec chmod 755 {} \; %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} ## Runtime and subpackages section @@ -135,63 +92,47 @@ Summary: Red Hat Cluster Manager Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig -Requires: corosync >= 0.92 corosync < 0.93 -Requires: openais >= 0.91 openais < 0.92 -Requires: sg3_utils OpenIPMI telnet openssh-clients -Requires: pexpect net-snmp-utils pyOpenSSL +Requires: corosync >= 1.0.0-1 +Requires: openais >= 1.0.0-1 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: ricci >= 0.15.0-4 modcluster >= 0.15.0-3 +Requires: fence-agents %description -n cman Red Hat Cluster Manager %post -n cman /sbin/chkconfig --add cman -/sbin/chkconfig --add scsi_reserve -/sbin/chkconfig --add qdiskd -/sbin/ldconfig > /dev/null # make sure to stop cman always as last %preun -n cman if [ "$1" = 0 ]; then - /sbin/service qdiskd stop >/dev/null 2>&1 - /sbin/service scsi_reserve stop >/dev/null 2>&1 /sbin/service cman stop >/dev/null 2>&1 - /sbin/chkconfig --del qdiskd - /sbin/chkconfig --del scsi_reserve /sbin/chkconfig --del cman fi -%postun -n cman -p /sbin/ldconfig - %files -n cman %defattr(-,root,root,-) %doc doc/COPYING.* doc/COPYRIGHT doc/README.licence doc/*.txt config/plugins/ldap/*.ldif %dir %{_sysconfdir}/cluster %{_sysconfdir}/rc.d/init.d/cman -%{_sysconfdir}/rc.d/init.d/qdiskd -%{_sysconfdir}/rc.d/init.d/scsi_reserve +%dir %{_sysconfdir}/cluster/cman-notify.d %config(noreplace) %{_sysconfdir}/udev/rules.d/*-dlm.rules %config(noreplace) %{_sysconfdir}/logrotate.d/cman -/sbin/ccs* -/sbin/cman* -/sbin/confdb2ldif -/sbin/dlm* -/sbin/fence* -/sbin/gfs_control* -/sbin/group* -/sbin/*qdisk* -%{_libdir}/libccs*.so.* -%{_libdir}/libdlm*.so.* -%{_libdir}/libfence*.so.* -%{_libdir}/liblogthread*.so.* -%{_datadir}/fence* -%{_datadir}/snmp/mibs/* +%{_sbindir}/ccs* +%{_sbindir}/cman* +%{_sbindir}/confdb2ldif +%{_sbindir}/dlm* +%{_sbindir}/fence* +%{_sbindir}/gfs_control* +%{_sbindir}/group* +%{_sbindir}/*qdisk* /usr/libexec/* +%dir %{_datadir}/cluster +%{_datadir}/cluster/cluster.rng %{perl_vendorarch}/* %dir /var/log/cluster %{_mandir}/man5/* -%{_mandir}/man7/* %{_mandir}/man8/ccs* %{_mandir}/man8/cman* %{_mandir}/man8/confdb2ldif* @@ -202,63 +143,64 @@ fi %{_mandir}/man8/*qdisk* %{_mandir}/man3/*.3pm.gz -%package -n cman-devel +%package -n clusterlib +Group: System Environment/Libraries +Summary: The Red Hat Cluster libraries +Conflicts: cman < 3.0.0-5.alpha4 +Provides: cmanlib = %{version} +Obsoletes: cmanlib < 3.0.0-5.alpha4 + +%description -n clusterlib +The Red Hat Cluster libraries package + +%files -n clusterlib +%defattr(-,root,root,-) +%doc doc/COPYING.* doc/COPYRIGHT doc/README.licence +%{_libdir}/libcman.so.* +%{_libdir}/libccs*.so.* +%{_libdir}/libdlm*.so.* +%{_libdir}/libfence*.so.* +%{_libdir}/liblogthread*.so.* + +%post -n clusterlib -p /sbin/ldconfig + +%postun -n clusterlib -p /sbin/ldconfig + +%package -n clusterlib-devel Group: Development/Libraries -Summary: The Cluster Manager development package -Requires: cman = %{version}-%{release} +Summary: The Red Hat Cluster libraries development package +Requires: clusterlib = %{version}-%{release} +Requires: pkgconfig +Provides: cman-devel = %{version} +Obsoletes: cman-devel < 3.0.0-5.alpha4 +Provides: cmanlib-devel = %{version} +Obsoletes: cmanlib-devel < 3.0.0-5.alpha4 + +%description -n clusterlib-devel +The Red Hat Cluster libraries development package -%files -n cman-devel +%files -n clusterlib-devel %defattr(-,root,root,-) +%doc doc/COPYING.* doc/COPYRIGHT doc/README.licence +%{_libdir}/libcman.so %{_libdir}/libccs*.so %{_libdir}/libdlm*.so %{_libdir}/libfence*.so %{_libdir}/liblogthread*.so %{_includedir}/ccs.h +%{_includedir}/libcman.h %{_includedir}/libdlm*.h %{_includedir}/libfence.h %{_includedir}/liblogthread.h %{_mandir}/man3/*3.gz - -%description -n cman-devel -The Cluster Manager development package - -%package -n cmanlib -Group: System Environment/Libraries -Summary: The Cluster Manager library -Conflicts: cman <= 2.99.10-3 - -%files -n cmanlib -%defattr(-,root,root,-) -%{_libdir}/libcman.so.* - -%description -n cmanlib -The Cluster Manager library package - -%post -n cmanlib -p /sbin/ldconfig - -%postun -n cmanlib -p /sbin/ldconfig - -%package -n cmanlib-devel -Group: Development/Libraries -Summary: The Cluster Manager library development package -Conflicts: cman-devel <= 2.99.10-3 -Requires: cmanlib = %{version}-%{release} - -%files -n cmanlib-devel -%defattr(-,root,root,-) -%{_includedir}/libcman.h -%{_libdir}/libcman.so - -%description -n cmanlib-devel -The Cluster Manager library development package +%{_libdir}/pkgconfig/*.pc %package -n rgmanager Group: System Environment/Base Summary: Open Source HA Resource Group Failover for Red Hat Cluster License: GPLv2+ and LGPLv2+ -Requires: chkconfig initscripts glibc ncurses bash grep sed gawk -Requires: cman -Requires: net-tools mount e2fsprogs +Requires: chkconfig initscripts +Requires: cman resource-agents Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig @@ -280,9 +222,9 @@ fi %defattr(-,root,root,-) %doc doc/COPYING.* doc/COPYRIGHT doc/README.licence rgmanager/README rgmanager/errors.txt %{_sysconfdir}/rc.d/init.d/rgmanager -/sbin/clu* -/sbin/rg_test -%{_datadir}/cluster +%{_sbindir}/clu* +%{_sbindir}/rgmanager +%{_sbindir}/rg_test %{_mandir}/man8/clu* %package -n gfs2-utils @@ -291,6 +233,7 @@ Summary: Utilities for managing the glob Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig +Requires: file %description -n gfs2-utils The gfs2-utils package contains a number of utilities for creating, @@ -310,7 +253,8 @@ fi %defattr(-,root,root,-) %doc doc/COPYRIGHT doc/README.licence doc/COPYING.* %{_sysconfdir}/rc.d/init.d/gfs2 -/sbin/*gfs2* +/sbin/*.gfs2 +%{_sbindir}/*gfs2* %{_mandir}/man8/*gfs2* %package -n gfs-utils @@ -320,6 +264,7 @@ Requires(post): chkconfig Requires(preun): initscripts Requires(preun): chkconfig Requires: gfs2-utils +Requires: file %description -n gfs-utils The gfs-utils package contains a number of utilities for creating, @@ -332,48 +277,145 @@ filesystems. This package requires the G %preun -n gfs-utils if [ "$1" = 0 ]; then /sbin/service gfs stop >/dev/null 2>&1 - /sbin/chkconfig --del gfs2 + /sbin/chkconfig --del gfs fi %files -n gfs-utils %defattr(-,root,root,-) %doc doc/COPYRIGHT doc/README.licence doc/COPYING.* %{_sysconfdir}/rc.d/init.d/gfs -/sbin/gfs_* /sbin/*.gfs +%{_sbindir}/gfs_debug +%{_sbindir}/gfs_edit +%{_sbindir}/gfs_grow +%{_sbindir}/gfs_jadd +%{_sbindir}/gfs_quota +%{_sbindir}/gfs_tool %{_mandir}/man8/gfs.* -%{_mandir}/man8/gfs_* +%{_mandir}/man8/gfs_edit* +%{_mandir}/man8/gfs_grow* +%{_mandir}/man8/gfs_jadd* +%{_mandir}/man8/gfs_quota* +%{_mandir}/man8/gfs_tool* +%{_mandir}/man8/*.gfs.* -%package -n gnbd-utils -Group: System Environment/Kernel -Summary: Utilities for managing the GFS Network Block Device -Requires(post): chkconfig -Requires(preun): initscripts -Requires(preun): chkconfig +%changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-20 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. -%description -n gnbd-utils -The gnbd-utils package contains a number of utilities for exporting, -importing and managing GFS Network Block Devices. -This package requires the GNBD kernel module. +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-19.rc4 +- New upstream release +- spec file updates: + * cman subpackage: avoid unnecessary calls to ldconfig + * rgmanager subpackage: drop unrequired Requires: that belong to ras + * BuildRequires and Requires corosync/openais 1.0.0.rc1 -%files -n gnbd-utils -%defattr(-,root,root,-) -%doc doc/COPYRIGHT doc/README.licence doc/COPYING.* -# %%{_sysconfdir}/rc.d/init.d/gfs -/sbin/gnbd_* -%{_mandir}/man8/gnbd* +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-18.rc3 +- New upstream release +- spec file updates: + * Drop local patches. + * Update BuildRequires and Requires: on newer corosync/openais. + +* Thu Jun 11 2009 Fabio M. Di Nitto - 3.0.0-17.rc2 +- Update from git up to 779dd3c23ca6c56f5b3f7a8a7831bae775c85201 +- spec file updates: + * Drop BuildRequires on libvolume_id-devel that's now obsoleted + * gfs*-utils now Requires: file + * Add temporary patch to get rid of volume_id references in the code + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-16.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Update configure invokation + * Cleanup tree fix up bits that are now upstream + * Ship cluster.rng + * Move fsck/mkfs gfs/gfs2 binaries in /sbin to be FHS compliant -%changelog -* Fri Nov 21 2008 Fabio M. Di Nitto - 2.99.12-2 -- import several important fixes from upstream. -- fix_fence_xvmd: make fence xvmd work with recent versions of libvirt -- fix_make_args*: handle correctly args to fence agents -- fix_monlist: make LDOM and ePowerSwitch agents work -- fix_qdisk: make qdisk work again when device= is used in config. -- fix_rgmanager_build*: rgmanager was not build correctly due to a CFLAGS leak. -- fix_shell_quoting: fix quoting of OCF variable. -- fix_smb: fix small (user invisible) regression. -- fix_xmlloader*: fix severe regression in xml parsing. +* Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-15.rc1 +- New upstream release. +- Update corosync/openais BuildRequires and Requires. +- Drop --corosynclibdir from configure. Libs are now in standard path. +- Update BuildRoot usage to preferred versions/names +- Drop qdisk init script. Now merged in cman init from upstream. + +* Mon Mar 9 2009 Fabio M. Di Nitto - 3.0.0-14.alpha7 +- New upstream release. +- Update corosync/openais BuildRequires and Requires. +- Fix gfs-utils and cman man page overlapping files. + +* Fri Mar 6 2009 Fabio M. Di Nitto - 3.0.0-13.alpha7 +- New upstream release. +- Drop local build fix patch. + +* Tue Mar 3 2009 Fabio M. Di Nitto - 3.0.0-12.alpha6 +- New upstream release. +- Add missing LICENCE and COPYRIGHT files from clusterlib-devel. +- Add patch to fix build failure (already upstream). + +* Tue Feb 24 2009 Fabio M. Di Nitto - 3.0.0-11.alpha5 +- Stop building fence and resource agents. +- cman now Requires: fence-agents. +- rgmanager now Requires: resource-agents. + +* Tue Feb 24 2009 Fabio M. Di Nitto - 3.0.0-10.alpha5 +- Fix typo in gfs-utils preun scriptlet. +- Fix gfs-utils file list. + +* Tue Feb 24 2009 Fedora Release Engineering - 3.0.0-9.alpha5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 23 2009 Fabio M. Di Nitto - 3.0.0-8.alpha5 +- New upstream release. + +* Thu Feb 19 2009 Fabio M. Di Nitto - 3.0.0-7.alpha4 +- Update to latest stable3 code from git (e3a9ac674fa0ff025e833dcfbc8575cada369843) +- Fix Provides: version. +- Update corosync/openais BuildRequires and Requires + +* Fri Feb 6 2009 Fabio M. Di Nitto - 3.0.0-6.alpha4 +- Fix datadir/fence directory ownership. + +* Sat Jan 31 2009 Fabio M. Di Nitto - 3.0.0-5.alpha4 +- New upstream release. +- Fix directory ownership #483330. +- Add support pkgconfig to devel package. +- Total libraries cleanup: + - split libraries out of cman into clusterlib. + - merge cmanlib into clusterlib. + - rename cman-devel into clusterlib-devel. + - merge cmanlib-devel into clusterlib-devel. +- Comply with multiarch requirements (libraries). +- Relax BuildRequires and Requires around corosync and openais. + +* Tue Jan 27 2009 Fabio M. Di Nitto - 3.0.0-4.alpha3 +- New upstream release + +* Wed Jan 21 2009 Fabio M. Di Nitto - 3.0.0-3.alpha2 +- Move all binaries where they belong. All the legacy stuff is now dead. + +* Mon Jan 12 2009 Fabio M. Di Nitto - 3.0.0-2.alpha2 +- New upstream release (retag cvs package) + +* Mon Jan 12 2009 Fabio M. Di Nitto - 3.0.0-1.alpha2 +- New upstream release + +* Wed Dec 17 2008 Fabio M. Di Nitto - 3.0.0-1.alpha1 +- New upstream release. +- Fix legacy code build. +- Fix wrong conffile attribute. + +* Mon Dec 15 2008 Fabio M. Di Nitto - 2.99.13-1 +- New upstream release. +- Drop gnbd* packages that are now a separate project. +- Tight dependencies with corosync/openais. + +* Mon Dec 01 2008 Ignacio Vazquez-Abrams - 2.99.12-2 +- Rebuild for Python 2.6 * Mon Nov 3 2008 Fabio M. Di Nitto - 2.99.12-1 - new upstream release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/cluster/F-10/sources,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- sources 3 Nov 2008 15:18:03 -0000 1.13 +++ sources 31 Jul 2009 08:25:11 -0000 1.14 @@ -1 +1 @@ -a05896e11f09ea77b4f3173c5f06a961 cluster-2.99.12.tar.gz +93101d0f3c724a46caee1f9f16abe4af cluster-3.0.0.tar.gz --- fix_fence_xvmd.diff DELETED --- --- fix_make_args1.diff DELETED --- --- fix_make_args2.diff DELETED --- --- fix_monlist.diff DELETED --- --- fix_qdisk.diff DELETED --- --- fix_rgmanager_build1.diff DELETED --- --- fix_rgmanager_build2.diff DELETED --- --- fix_rgmanager_build3.diff DELETED --- --- fix_shell_quoting.diff DELETED --- --- fix_smb.diff DELETED --- --- fix_xmlloader1.diff DELETED --- --- fix_xmlloader2.diff DELETED --- From fabbione at fedoraproject.org Fri Jul 31 08:26:43 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:26:43 +0000 (UTC) Subject: rpms/fence-agents/F-10 fence-agents.spec,1.4,1.5 sources,1.3,1.4 Message-ID: <20090731082643.BE14D11C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/fence-agents/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23468 Modified Files: fence-agents.spec sources Log Message: New upstream release fixes several major bugs Index: fence-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/F-10/fence-agents.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- fence-agents.spec 3 Mar 2009 07:33:44 -0000 1.4 +++ fence-agents.spec 31 Jul 2009 08:26:43 -0000 1.5 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag alpha6 +## define alphatag rc4 Name: fence-agents Summary: Fence Agents for Red Hat Cluster Version: 3.0.0 -Release: 6%{?alphatag:.%{alphatag}}%{?dist} +Release: 14%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -28,29 +28,19 @@ Source0: ftp://sources.redhat.com/pub/cl ## Runtime deps Requires: sg3_utils OpenIPMI telnet openssh-clients Requires: pexpect net-snmp-utils pyOpenSSL -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) ## Setup/build bits -# build support for virtualization -%define buildvirt 0 -%ifarch i386 x86_64 ia64 -%define buildvirt 1 -%endif - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) # Build dependencies BuildRequires: perl python BuildRequires: glibc-devel -BuildRequires: libxml2-devel +BuildRequires: nss-devel nspr-devel +BuildRequires: libxml2-devel libvirt-devel BuildRequires: clusterlib-devel >= 3.0.0 -BuildRequires: corosynclib-devel >= 0.94-1 -BuildRequires: openaislib-devel >= 0.93-1 - -%if %{buildvirt} -BuildRequires: nss-devel nspr-devel libvirt-devel xen-libs -%endif +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: openaislib-devel >= 1.0.0-1 %prep %setup -q -n fence-agents-%{version}%{?alphatag:.%{alphatag}} @@ -63,11 +53,6 @@ BuildRequires: nss-devel nspr-devel libv --sbindir=%{_sbindir} \ --initddir=%{_sysconfdir}/rc.d/init.d \ --libdir=%{_libdir} \ -%if %{buildvirt} - --enable_virt \ -%endif - --corosynclibdir=%{_libdir}/corosync \ - --openaislibdir=%{_libdir}/openais \ --disable_kernel_check ##CFLAGS="$(echo '%{optflags}')" make %{_smp_mflags} @@ -75,26 +60,16 @@ BuildRequires: nss-devel nspr-devel libv CFLAGS="$(echo '%{optflags}')" make -C fence/agents %install -rm -rf $RPM_BUILD_ROOT -make -C fence/agents install DESTDIR=$RPM_BUILD_ROOT -make -C fence/man install DESTDIR=$RPM_BUILD_ROOT +rm -rf %{buildroot} +make -C fence/agents install DESTDIR=%{buildroot} +make -C fence/man install DESTDIR=%{buildroot} ## tree fix up # fix libfence permissions -chmod 0755 $RPM_BUILD_ROOT%{_datadir}/fence/*.py -chmod 0755 $RPM_BUILD_ROOT%{_datadir}/fence/telnet_ssl +chmod 0755 %{buildroot}%{_datadir}/fence/*.py %clean -rm -rf $RPM_BUILD_ROOT - -%post -/sbin/chkconfig --add scsi_reserve - -%preun -if [ "$1" = 0 ]; then - /sbin/service scsi_reserve stop >/dev/null 2>&1 - /sbin/chkconfig --del scsi_reserve -fi +rm -rf %{buildroot} %description Red Hat Fence Agents is a collection of scripts to handle remote @@ -103,15 +78,56 @@ power management for several devices. %files %defattr(-,root,root,-) %doc doc/COPYING.* doc/COPYRIGHT doc/README.licence -%{_sysconfdir}/rc.d/init.d/scsi_reserve -%dir %{_sysconfdir}/cluster/cman-notify.d -%{_sysconfdir}/cluster/cman-notify.d/scsi_reserve_notify %{_sbindir}/fence* %{_datadir}/fence -%{_datadir}/snmp/mibs/* %{_mandir}/man8/fence* %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-14 +- New upstream release +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + * BuildRequires and Requires corosync/openais 1.0.0-1 final. + +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-13.rc4 +- New upstream release. +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Drop --enable_virt. Now default upstream + +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-12.rc3 +- New upstream release. +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-11.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 +- spec file updates: + * BuildRequires / Requires: latest corosync and openais + * Build fence_xvm unconditionally now that libvirt is everywhere + * Drop telnet_ssl wrapper in favour of nss version + +* Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-10.rc1 +- New upstream release. +- Cleanup BuildRequires to avoid to pull in tons of stuff when it's not + required. +- Update BuildRoot usage to preferred versions/names. +- Stop shipping powermib. Those are not required for operations anymore. + +* Thu Mar 12 2009 Fabio M. Di Nitto - 3.0.0-9.beta1 +- Fix arch check for virt support. +- Drop unrequired BuildRequires. +- Drop unrequired Requires: on perl. + +* Mon Mar 9 2009 Fabio M. Di Nitto - 3.0.0-8.beta1 +- New upstream release. +- Update corosync/openais BuildRequires and Requires. + +* Fri Mar 6 2009 Fabio M. Di Nitto - 3.0.0-7.alpha7 +- New upstream release. +- Drop fence_scsi init stuff that's not required anylonger. + * Tue Mar 3 2009 Fabio M. Di Nitto - 3.0.0-6.alpha6 - New upstream release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fence-agents/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Mar 2009 07:33:44 -0000 1.3 +++ sources 31 Jul 2009 08:26:43 -0000 1.4 @@ -1 +1 @@ -ce58a2548d880d709bc22777179acab5 fence-agents-3.0.0.alpha6.tar.gz +7bc650a9654a4e5059120243666b5eb5 fence-agents-3.0.0.tar.gz From fabbione at fedoraproject.org Fri Jul 31 08:27:57 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:27:57 +0000 (UTC) Subject: rpms/resource-agents/F-10 resource-agents.spec, 1.3, 1.4 sources, 1.3, 1.4 Message-ID: <20090731082757.88B4211C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/resource-agents/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24066 Modified Files: resource-agents.spec sources Log Message: New upstream release fixes several major bugs Index: resource-agents.spec =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/F-10/resource-agents.spec,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- resource-agents.spec 3 Mar 2009 06:54:30 -0000 1.3 +++ resource-agents.spec 31 Jul 2009 08:27:57 -0000 1.4 @@ -1,7 +1,7 @@ ############################################################################### ############################################################################### ## -## Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. +## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. ## ## This copyrighted material is made available to anyone wishing to use, ## modify, copy, or redistribute it subject to the terms and conditions @@ -14,12 +14,12 @@ # http://www.rpm.org/max-rpm/s1-rpm-subpack-spec-file-changes.html # keep around ready for later user -%define alphatag alpha6 +## define alphatag rc4 Name: resource-agents Summary: Open Source HA Resource Agents for Red Hat Cluster Version: 3.0.0 -Release: 5%{?alphatag:.%{alphatag}}%{?dist} +Release: 12%{?alphatag:.%{alphatag}}%{?dist} License: GPLv2+ and LGPLv2+ Group: System Environment/Base URL: http://sources.redhat.com/cluster/wiki/ @@ -31,7 +31,7 @@ Requires: net-tools mount e2fsprogs ## Setup/build bits -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch # Build dependencies (sed / bash) @@ -56,11 +56,11 @@ BuildArch: noarch CFLAGS="$(echo '%{optflags}')" make -C rgmanager/src/resources %install -rm -rf $RPM_BUILD_ROOT -make -C rgmanager/src/resources install DESTDIR=$RPM_BUILD_ROOT +rm -rf %{buildroot} +make -C rgmanager/src/resources install DESTDIR=%{buildroot} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %description Red Hat Resource Agents provides a set of scripts to interface with several @@ -72,6 +72,31 @@ services to operate in a High Availabili %{_datadir}/cluster %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 3.0.0-12 +- New upstream release. +- spec file updates: + * Update copyright header + * final release.. undefine alphatag + +* Thu Jul 2 2009 Fabio M. Di Nitto - 3.0.0-11.rc4 +- New upstream release. + +* Sat Jun 20 2009 Fabio M. Di Nitto - 3.0.0-10.rc3 +- New upstream release. + +* Wed Jun 10 2009 Fabio M. Di Nitto - 3.0.0-9.rc2 +- New upstream release + git94df30ca63e49afb1e8aeede65df8a3e5bcd0970 + +* Tue Mar 24 2009 Fabio M. Di Nitto - 3.0.0-8.rc1 +- New upstream release. +- Update BuildRoot usage to preferred versions/names + +* Mon Mar 9 2009 Fabio M. Di Nitto - 3.0.0-7.beta1 +- New upstream release. + +* Fri Mar 6 2009 Fabio M. Di Nitto - 3.0.0-6.alpha7 +- New upstream release. + * Tue Mar 3 2009 Fabio M. Di Nitto - 3.0.0-5.alpha6 - New upstream release. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/resource-agents/F-10/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 3 Mar 2009 06:54:30 -0000 1.3 +++ sources 31 Jul 2009 08:27:57 -0000 1.4 @@ -1 +1 @@ -cc66511f122f21c2936e63ec34fef7b7 resource-agents-3.0.0.alpha6.tar.gz +485253db9ea4d48d38d7a0aef84cf660 resource-agents-3.0.0.tar.gz From fabbione at fedoraproject.org Fri Jul 31 08:31:33 2009 From: fabbione at fedoraproject.org (Fabio M. Di Nitto) Date: Fri, 31 Jul 2009 08:31:33 +0000 (UTC) Subject: rpms/qpidc/F-10 qpidc_f12_new_cpg.diff, NONE, 1.1 qpidc.spec, 1.85, 1.86 examples.patch, 1.2, NONE Message-ID: <20090731083133.9AFFA11C00CE@cvs1.fedora.phx.redhat.com> Author: fabbione Update of /cvs/pkgs/rpms/qpidc/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25262 Modified Files: qpidc.spec Added Files: qpidc_f12_new_cpg.diff Removed Files: examples.patch Log Message: Resync changes from F-11 to allow corosync/openais/cluster update in F-10. Drop examples.patch that was not applied or used anywhere. qpidc_f12_new_cpg.diff: Cluster.cpp | 14 +++++++------- Cluster.cpp.orig |only Cluster.h | 12 ++++++------ Cluster.h.orig |only Cpg.cpp | 12 ++++++------ Cpg.h | 24 ++++++++++++------------ 6 files changed, 31 insertions(+), 31 deletions(-) --- NEW FILE qpidc_f12_new_cpg.diff --- diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cluster.cpp qpidc-0.5.788782.new/src/qpid/cluster/Cluster.cpp --- qpidc-0.5.788782/src/qpid/cluster/Cluster.cpp 2009-06-18 17:25:00.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cluster.cpp 2009-06-29 14:02:02.980566645 -0400 @@ -292,11 +292,11 @@ // Deliver CPG message. void Cluster::deliver( cpg_handle_t /*handle*/, - cpg_name* /*group*/, + const cpg_name* /*group*/, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len) + size_t msg_len) { MemberId from(nodeid, pid); framing::Buffer buf(static_cast(msg), msg_len); @@ -453,10 +453,10 @@ void Cluster::configChange ( cpg_handle_t /*handle*/, - cpg_name */*group*/, - cpg_address *current, int nCurrent, - cpg_address *left, int nLeft, - cpg_address */*joined*/, int /*nJoined*/) + const cpg_name */*group*/, + const cpg_address *current, size_t nCurrent, + const cpg_address *left, size_t nLeft, + const cpg_address */*joined*/, size_t /*nJoined*/) { Mutex::ScopedLock l(lock); if (state == INIT) { // First config change. @@ -467,7 +467,7 @@ QPID_LOG(debug, *this << " config change: " << AddrList(current, nCurrent) << AddrList(left, nLeft, "left: ")); std::string addresses; - for (cpg_address* p = current; p < current+nCurrent; ++p) + for (const cpg_address* p = current; p < current+nCurrent; ++p) addresses.append(MemberId(*p).str()); deliverEvent(Event::control(ClusterConfigChangeBody(ProtocolVersion(), addresses), self)); } Only in qpidc-0.5.788782.new/src/qpid/cluster: Cluster.cpp.orig diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cluster.h qpidc-0.5.788782.new/src/qpid/cluster/Cluster.h --- qpidc-0.5.788782/src/qpid/cluster/Cluster.h 2009-06-18 17:25:00.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cluster.h 2009-06-29 14:02:02.982566348 -0400 @@ -159,20 +159,20 @@ // == Called in CPG dispatch thread void deliver( // CPG deliver callback. cpg_handle_t /*handle*/, - struct cpg_name *group, + const struct cpg_name *group, uint32_t /*nodeid*/, uint32_t /*pid*/, void* /*msg*/, - int /*msg_len*/); + size_t /*msg_len*/); void deliverEvent(const Event&); void configChange( // CPG config change callback. cpg_handle_t /*handle*/, - struct cpg_name */*group*/, - struct cpg_address */*members*/, int /*nMembers*/, - struct cpg_address */*left*/, int /*nLeft*/, - struct cpg_address */*joined*/, int /*nJoined*/ + const struct cpg_name */*group*/, + const struct cpg_address */*members*/, size_t /*nMembers*/, + const struct cpg_address */*left*/, size_t /*nLeft*/, + const struct cpg_address */*joined*/, size_t /*nJoined*/ ); // == Called in management threads. Only in qpidc-0.5.788782.new/src/qpid/cluster: Cluster.h.orig diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cpg.cpp qpidc-0.5.788782.new/src/qpid/cluster/Cpg.cpp --- qpidc-0.5.788782/src/qpid/cluster/Cpg.cpp 2009-06-18 12:22:19.000000000 -0400 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cpg.cpp 2009-06-29 14:02:02.983566410 -0400 @@ -44,21 +44,21 @@ // Global callback functions. void Cpg::globalDeliver ( cpg_handle_t handle, - struct cpg_name *group, + const struct cpg_name *group, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len) + size_t msg_len) { cpgFromHandle(handle)->handler.deliver(handle, group, nodeid, pid, msg, msg_len); } void Cpg::globalConfigChange( cpg_handle_t handle, - struct cpg_name *group, - struct cpg_address *members, int nMembers, - struct cpg_address *left, int nLeft, - struct cpg_address *joined, int nJoined + const struct cpg_name *group, + const struct cpg_address *members, size_t nMembers, + const struct cpg_address *left, size_t nLeft, + const struct cpg_address *joined, size_t nJoined ) { cpgFromHandle(handle)->handler.configChange(handle, group, members, nMembers, left, nLeft, joined, nJoined); diff -U3 -r qpidc-0.5.788782/src/qpid/cluster/Cpg.h qpidc-0.5.788782.new/src/qpid/cluster/Cpg.h --- qpidc-0.5.788782/src/qpid/cluster/Cpg.h 2009-02-26 12:21:40.000000000 -0500 +++ qpidc-0.5.788782.new/src/qpid/cluster/Cpg.h 2009-06-29 14:02:02.984566541 -0400 @@ -68,18 +68,18 @@ virtual ~Handler() {}; virtual void deliver( cpg_handle_t /*handle*/, - struct cpg_name *group, + const struct cpg_name *group, uint32_t /*nodeid*/, uint32_t /*pid*/, void* /*msg*/, - int /*msg_len*/) = 0; + size_t /*msg_len*/) = 0; virtual void configChange( cpg_handle_t /*handle*/, - struct cpg_name */*group*/, - struct cpg_address */*members*/, int /*nMembers*/, - struct cpg_address */*left*/, int /*nLeft*/, - struct cpg_address */*joined*/, int /*nJoined*/ + const struct cpg_name */*group*/, + const struct cpg_address */*members*/, size_t /*nMembers*/, + const struct cpg_address */*left*/, size_t /*nLeft*/, + const struct cpg_address */*joined*/, size_t /*nJoined*/ ) = 0; }; @@ -128,18 +128,18 @@ static void globalDeliver( cpg_handle_t handle, - struct cpg_name *group, + const struct cpg_name *group, uint32_t nodeid, uint32_t pid, void* msg, - int msg_len); + size_t msg_len); static void globalConfigChange( cpg_handle_t handle, - struct cpg_name *group, - struct cpg_address *members, int nMembers, - struct cpg_address *left, int nLeft, - struct cpg_address *joined, int nJoined + const struct cpg_name *group, + const struct cpg_address *members, size_t nMembers, + const struct cpg_address *left, size_t nLeft, + const struct cpg_address *joined, size_t nJoined ); cpg_handle_t handle; Index: qpidc.spec =================================================================== RCS file: /cvs/pkgs/rpms/qpidc/F-10/qpidc.spec,v retrieving revision 1.85 retrieving revision 1.86 diff -u -p -r1.85 -r1.86 --- qpidc.spec 2 Jul 2009 18:29:00 -0000 1.85 +++ qpidc.spec 31 Jul 2009 08:31:33 -0000 1.86 @@ -9,13 +9,14 @@ Name: qpidc Version: 0.5.790661 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries for Qpid C++ client applications Group: System Environment/Libraries License: ASL 2.0 URL: http://qpid.apache.org Source0: %{name}-%{version}.tar.gz Source1: qpidd.pp +Patch1: qpidc_f12_new_cpg.diff BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: boost-devel @@ -36,8 +37,8 @@ BuildRequires: nss-devel BuildRequires: nspr-devel BuildRequires: xqilla-devel BuildRequires: xerces-c-devel -BuildRequires: corosync-devel -BuildRequires: cmanlib-devel +BuildRequires: corosynclib-devel >= 1.0.0-1 +BuildRequires: clusterlib-devel >= 3.0.0-20 BuildRequires: swig Requires: boost @@ -187,8 +188,8 @@ Summary: Cluster support for the Qpid da Group: System Environment/Daemons Requires: qpidd = %version-%release Requires: qpidc = %version-%release -Requires: corosync -Requires: cmanlib +Requires: corosync >= 1.0.0-1 +Requires: clusterlib >= 3.0.0-20 %description -n qpidd-cluster A Qpid daemon plugin enabling broker clustering using openais @@ -210,9 +211,9 @@ exit 0 %prep %setup -q +%patch1 -p1 -%define perftests "perftest topic_listener topic_publisher \ - latencytest client_test txtest" +%define perftests "perftest topic_listener topic_publisher latencytest client_test txtest" install -d selinux install %{SOURCE1} selinux @@ -437,6 +438,13 @@ fi %postun -n qmf -p /sbin/ldconfig %changelog +* Tue Jul 28 2009 Fabio M. Di Nitto - 0.5.790661-2 +- Update BuildRequires and Requires to use latest stable versions of + corosync and clusterlib. +- Sync spec file changelog from F-11. +- Unbreak perftests define (and fix vim spec syntax coloring). +- Apply qpidc_f12_new_cpg.diff from rawhide. + * Thu Jul 2 2009 Nuno Santos - 0.5.790661-1 - Rebased to svn rev 790661; .so lib numbers bumped @@ -446,9 +454,22 @@ fi * Mon Jun 22 2009 Nuno Santos - 0.5.787286-1 - Rebased to svn rev 787286 +* Wed Jun 10 2009 Fabio M. Di Nitto - 0.5.752600-8 +- update BuildRequires to use corosynclib-devel in correct version. +- update BuildRequires to use clusterlib-devel instead of the obsoleted + cmanlib-devel. +- drop Requires on cmanlib. This should come in automatically as part + of the rpm build process. +- re-align package version to -8. -7 didn't have a changelog entry? +- add patch to port Cluster/Cpg to newest Cpg code. +- change patch tag to use patch0. + * Mon May 4 2009 Nuno Santos - 0.5.752600-5 - patch for SASL credentials refresh +* Wed Apr 1 2009 Michael Schwendt - 0.5.752600-5 +- Fix unowned examples directory in -devel pkg. + * Mon Mar 16 2009 Nuno Santos - 0.5.752600-4 - BZ483925 - split docs into a separate noarch subpackage --- examples.patch DELETED --- From jussilehtola at fedoraproject.org Fri Jul 31 08:01:59 2009 From: jussilehtola at fedoraproject.org (Jussi Lehtola) Date: Fri, 31 Jul 2009 08:01:59 +0000 (UTC) Subject: rpms/octave/devel .cvsignore, 1.25, 1.26 import.log, 1.3, 1.4 octave.spec, 1.87, 1.88 sources, 1.25, 1.26 Message-ID: <20090731080159.91E9811C00CE@cvs1.fedora.phx.redhat.com> Author: jussilehtola Update of /cvs/pkgs/rpms/octave/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13409/devel Modified Files: .cvsignore import.log octave.spec sources Log Message: Update to 3.2.2. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/.cvsignore,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- .cvsignore 11 Jul 2009 12:00:01 -0000 1.25 +++ .cvsignore 31 Jul 2009 08:01:59 -0000 1.26 @@ -1 +1 @@ -octave-3.2.0.tar.bz2 +octave-3.2.2.tar.bz2 Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/import.log,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- import.log 11 Jul 2009 12:00:01 -0000 1.3 +++ import.log 31 Jul 2009 08:01:59 -0000 1.4 @@ -1,3 +1,4 @@ octave-3_0_2-2_fc10:HEAD:octave-3.0.2-2.fc10.src.rpm:1224776342 octave-3_0_5-1_fc11:HEAD:octave-3.0.5-1.fc11.src.rpm:1239552316 octave-3_2_0-1_fc11:HEAD:octave-3.2.0-1.fc11.src.rpm:1247313567 +octave-3_2_2-1_fc11:HEAD:octave-3.2.2-1.fc11.src.rpm:1249027014 Index: octave.spec =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/octave.spec,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -r1.87 -r1.88 --- octave.spec 30 Jul 2009 22:13:03 -0000 1.87 +++ octave.spec 31 Jul 2009 08:01:59 -0000 1.88 @@ -2,8 +2,8 @@ %define octave_api api-v37 Name: octave -Version: 3.2.0 -Release: 3%{?dist} +Version: 3.2.2 +Release: 1%{?dist} Summary: A high-level language for numerical computations Epoch: 6 Group: Applications/Engineering @@ -76,11 +76,10 @@ fi %global enable64 no export CPPFLAGS="-DH5_USE_16_API" %configure --enable-shared --disable-static --enable-64=%enable64 F77=gfortran -# SMP make doesn't work in Octave 3.2.0 +# SMP make doesn't work in Octave 3.2.2 #make %{?_smp_mflags} OCTAVE_RELEASE="Fedora %{version}-%{release}" make OCTAVE_RELEASE="Fedora %{version}-%{release}" - %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} @@ -168,6 +167,9 @@ fi %changelog +* Fri Jul 31 2009 Jussi Lehtola - 6:3.2.2-1 +- Update to latest upstream (3.2.2). + * Sat Jul 25 2009 Fedora Release Engineering - 6:3.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/octave/devel/sources,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- sources 11 Jul 2009 12:00:01 -0000 1.25 +++ sources 31 Jul 2009 08:01:59 -0000 1.26 @@ -1 +1 @@ -f7965847648233cd7ed866dd2db3bcdc octave-3.2.0.tar.bz2 +656d0d11bf9cfea7a4cee226ee63fea7 octave-3.2.2.tar.bz2 From jkratoch at fedoraproject.org Fri Jul 31 08:36:06 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Fri, 31 Jul 2009 08:36:06 +0000 (UTC) Subject: rpms/gdb/devel gdb-readline-6.0.patch, NONE, 1.1 gdb-orphanripper.c, 1.2, 1.3 gdb.spec, 1.365, 1.366 Message-ID: <20090731083606.ECA1911C00CE@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/gdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26930 Modified Files: gdb-orphanripper.c gdb.spec Added Files: gdb-readline-6.0.patch Log Message: * Fri Jul 31 2009 Jan Kratochvil - 6.8.50.20090302-41 - Fix compatibility of --with-system-readline and readline-6.0+. - Temporarily disabled orphanripper on Fedora 12. gdb-readline-6.0.patch: config.in | 3 ++ configure | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 15 ++++++++++++++ 3 files changed, 81 insertions(+) --- NEW FILE gdb-readline-6.0.patch --- gdb/ 2009-07-31 Jan Kratochvil Fix compatibility of --with-system-readline and readline-6.0+. * configure.ac <--with-system-readline> (for readline_echoing_p): New test. * config.in: Regenerate. * configure: Regenerate. --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -536,6 +536,21 @@ if test "$with_system_readline" = yes; then READLINE=-lreadline READLINE_DEPS= READLINE_CFLAGS= + + # readline-6.0 started to use the name `_rl_echoing_p'. + # `$(READLINE_DIR)/' of bundled readline would not resolve in configure. + + AC_MSG_CHECKING([for readline_echoing_p]) + save_LIBS=$LIBS + LIBS="$LIBS $READLINE" + AC_LINK_IFELSE(AC_LANG_PROGRAM(,[[extern int readline_echoing_p; + return readline_echoing_p;]]), + [READLINE_ECHOING_P=yes], + [READLINE_ECHOING_P=no + AC_DEFINE([readline_echoing_p], [_rl_echoing_p], + [readline-6.0 started to use different name.])]) + LIBS="$save_LIBS" + AC_MSG_RESULT([$READLINE_ECHOING_P]) else READLINE='$(READLINE_DIR)/libreadline.a' READLINE_DEPS='$(READLINE)' --- a/gdb/config.in +++ b/gdb/config.in @@ -790,6 +790,9 @@ /* Define to `int' if does not define. */ #undef pid_t +/* readline-6.0 started to use different name. */ +#undef readline_echoing_p + /* Define to the equivalent of the C99 'restrict' keyword, or to nothing if this is not supported. Do not define if restrict is supported directly. */ --- a/gdb/configure +++ b/gdb/configure @@ -10763,6 +10763,69 @@ if test "$with_system_readline" = yes; then READLINE=-lreadline READLINE_DEPS= READLINE_CFLAGS= + + # readline-6.0 started to use the name `_rl_echoing_p'. + # `$(READLINE_DIR)/' of bundled readline would not resolve in configure. + + echo "$as_me:$LINENO: checking for readline_echoing_p" >&5 +echo $ECHO_N "checking for readline_echoing_p... $ECHO_C" >&6 + save_LIBS=$LIBS + LIBS="$LIBS $READLINE" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +extern int readline_echoing_p; + return readline_echoing_p; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + READLINE_ECHOING_P=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +READLINE_ECHOING_P=no + +cat >>confdefs.h <<\_ACEOF +#define readline_echoing_p _rl_echoing_p +_ACEOF + +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$save_LIBS" + echo "$as_me:$LINENO: result: $READLINE_ECHOING_P" >&5 +echo "${ECHO_T}$READLINE_ECHOING_P" >&6 else READLINE='$(READLINE_DIR)/libreadline.a' READLINE_DEPS='$(READLINE)' Index: gdb-orphanripper.c =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb-orphanripper.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- gdb-orphanripper.c 10 Jun 2009 13:05:57 -0000 1.2 +++ gdb-orphanripper.c 31 Jul 2009 08:36:06 -0000 1.3 @@ -46,51 +46,90 @@ static const char *progname; -static volatile int signal_child_hit = 0; +static volatile int signal_chld_hit = 0; -/* We use it to race-safely emulate ppoll(2) by poll(2). */ -static int pipefd[2]; - -static void signal_child (int signo) +static void signal_chld (int signo) { - int i; + signal_chld_hit = 1; +} - signal_child_hit = 1; +static volatile int signal_alrm_hit = 0; - assert (pipefd[1] != -1); - i = close (pipefd[1]); - assert (i == 0); - pipefd[1] = -1; +static void signal_alrm (int signo) +{ + signal_alrm_hit = 1; } static char childptyname[LINE_MAX]; static pid_t child; -static int spawn (char **argv) +static void print_child_error (const char *reason, char **argv) +{ + char **sp; + + fprintf (stderr, "%s: %d %s:", progname, (int) child, reason); + for (sp = argv; *sp != NULL; sp++) + { + fputc (' ', stderr); + fputs (*sp, stderr); + } + fputc ('\n', stderr); +} + +static int read_out (int amaster) +{ + char buf[LINE_MAX]; + ssize_t buf_got; + + buf_got = read (amaster, buf, sizeof buf); + if (buf_got == 0) + return 0; + /* Weird but at least after POLLHUP we get EIO instead of just EOF. */ + if (buf_got == -1 && errno == EIO) + return 0; + if (buf_got < 0) + { + perror ("read (amaster)"); + exit (EXIT_FAILURE); + } + if (write (STDOUT_FILENO, buf, buf_got) != buf_got) + { + perror ("write(2)"); + exit (EXIT_FAILURE); + } + return 1; +} + +static int spawn (char **argv, int timeout) { pid_t child_got; - int status, amaster, i; + int status, amaster, i, rc; struct sigaction act; + sigset_t set; struct termios termios; + unsigned alarm_orig; - i = pipe (pipefd); - assert (i == 0); - - /* We do not use signal(2) to be sure we have SA_RESTART set. */ + /* We do not use signal(2) to be sure we do not have SA_RESTART. */ memset (&act, 0, sizeof (act)); - act.sa_handler = signal_child; + act.sa_handler = signal_chld; i = sigemptyset (&act.sa_mask); assert (i == 0); - act.sa_flags = SA_RESTART; + act.sa_flags = 0; /* !SA_RESTART */ i = sigaction (SIGCHLD, &act, NULL); assert (i == 0); + i = sigemptyset (&set); + assert (i == 0); + i = sigaddset (&set, SIGCHLD); + assert (i == 0); + i = sigprocmask (SIG_SETMASK, &set, NULL); + assert (i == 0); + /* With TERMP passed as NULL we get "\n" -> "\r\n". */ termios.c_iflag = IGNBRK | IGNPAR; termios.c_oflag = 0; termios.c_cflag = CS8 | CREAD | CLOCAL | HUPCL | B9600; termios.c_lflag = IEXTEN | NOFLSH; - termios.c_line = 0; memset (termios.c_cc, _POSIX_VDISABLE, sizeof (termios.c_cc)); termios.c_cc[VTIME] = 0; termios.c_cc[VMIN ] = 1; @@ -106,11 +145,6 @@ static int spawn (char **argv) perror ("forkpty(3)"); exit (EXIT_FAILURE); case 0: - i = close (pipefd[0]); - assert (i == 0); - i = close (pipefd[1]); - assert (i == 0); - /* Do not replace STDIN as inferiors query its termios. */ #if 0 i = close (STDIN_FILENO); @@ -135,7 +169,7 @@ static int spawn (char **argv) perror ("getpgrp(2)"); exit (EXIT_FAILURE); } - execvp (argv[1], argv + 1); + execvp (argv[0], argv); perror ("execvp(2)"); exit (EXIT_FAILURE); default: @@ -147,51 +181,58 @@ static int spawn (char **argv) perror ("fcntl (amaster, F_SETFL, O_NONBLOCK)"); exit (EXIT_FAILURE); } - for (;;) + + /* We do not use signal(2) to be sure we do not have SA_RESTART. */ + act.sa_handler = signal_alrm; + i = sigaction (SIGALRM, &act, NULL); + assert (i == 0); + + alarm_orig = alarm (timeout); + assert (alarm_orig == 0); + + i = sigemptyset (&set); + assert (i == 0); + + while (!signal_alrm_hit) { - struct pollfd pollfd[2]; - char buf[LINE_MAX]; - ssize_t buf_got; - - pollfd[0].fd = amaster; - pollfd[0].events = POLLIN; - pollfd[1].fd = pipefd[0]; - pollfd[1].events = POLLIN; - i = poll (pollfd, LENGTH (pollfd), -1); - if (i == -1 && errno == EINTR) - { - /* Weird but SA_RESTART sometimes does not work. */ - continue; - } - assert (i >= 1); + struct pollfd pollfd; + + pollfd.fd = amaster; + pollfd.events = POLLIN; + i = ppoll (&pollfd, 1, NULL, &set); + if (i == -1 && errno == EINTR && signal_chld_hit) + break; + assert (i == 1); /* Data available? Process it first. */ - if (pollfd[0].revents & POLLIN) + if (pollfd.revents & POLLIN) { - buf_got = read (amaster, buf, sizeof buf); - if (buf_got <= 0) - { - perror ("read (amaster)"); - exit (EXIT_FAILURE); - } - if (write (STDOUT_FILENO, buf, buf_got) != buf_got) + if (!read_out (amaster)) { - perror ("write(2)"); + fprintf (stderr, "%s: Unexpected EOF\n", progname); exit (EXIT_FAILURE); } } - if (pollfd[0].revents & POLLHUP) + if (pollfd.revents & POLLHUP) break; - if ((pollfd[0].revents &= ~POLLIN) != 0) + if ((pollfd.revents &= ~POLLIN) != 0) { fprintf (stderr, "%s: ppoll(2): revents 0x%x\n", progname, - (unsigned) pollfd[0].revents); + (unsigned) pollfd.revents); exit (EXIT_FAILURE); } /* Child exited? */ - if (pollfd[1].revents & POLLHUP) + if (signal_chld_hit) break; - assert (pollfd[1].revents == 0); } + + if (signal_alrm_hit) + { + i = kill (child, SIGKILL); + assert (i == 0); + } + else + alarm (0); + /* WNOHANG still could fail. */ child_got = waitpid (child, &status, 0); if (child != child_got) @@ -199,17 +240,51 @@ static int spawn (char **argv) fprintf (stderr, "waitpid (%d) = %d: %m\n", (int) child, (int) child_got); exit (EXIT_FAILURE); } - if (!WIFEXITED (status)) + if (signal_alrm_hit) + { + char *buf; + + if (asprintf (&buf, "Timed out after %d seconds", timeout) != -1) + { + print_child_error (buf, argv); + free (buf); + } + rc = 128 + SIGALRM; + } + else if (WIFEXITED (status)) + rc = WEXITSTATUS (status); + else if (WIFSIGNALED (status)) + { + print_child_error (strsignal (WTERMSIG (status)), argv); + rc = 128 + WTERMSIG (status); + } + else if (WIFSTOPPED (status)) + { + fprintf (stderr, "waitpid (%d): WIFSTOPPED - WSTOPSIG is %d\n", + (int) child, WSTOPSIG (status)); + exit (EXIT_FAILURE); + } + else { fprintf (stderr, "waitpid (%d): !WIFEXITED (%d)\n", (int) child, status); exit (EXIT_FAILURE); } - assert (signal_child_hit != 0); - assert (pipefd[1] == -1); - i = close (pipefd[0]); + /* In the POLLHUP case we may not have seen SIGCHLD so far. */ + i = sigprocmask (SIG_SETMASK, &set, NULL); assert (i == 0); + assert (signal_chld_hit != 0); + + i = fcntl (amaster, F_SETFL, O_RDONLY /* !O_NONBLOCK */); + if (i != 0) + { + perror ("fcntl (amaster, F_SETFL, O_RDONLY /* !O_NONBLOCK */)"); + exit (EXIT_FAILURE); + } + + while (read_out (amaster)); + /* Do not close the master FD as the child would have `/dev/pts/23 (deleted)' entries which are not expected (and expecting ` (deleted)' would be a race. */ @@ -222,7 +297,7 @@ static int spawn (char **argv) } #endif - return WEXITSTATUS (status); + return rc; } /* Detected commandline may look weird due to a race: @@ -297,7 +372,7 @@ static int dir_scan (const char *dirname pathname_len = snprintf (pathname, sizeof pathname, "%s/%s", dirname, dirent->d_name); - if (pathname_len <= 0 || pathname_len >= sizeof pathname) + if (pathname_len <= 0 || pathname_len >= (int) sizeof pathname) { fprintf (stderr, "entry file name too long: `%s' / `%s'\n", dirname, dirent->d_name); @@ -373,7 +448,7 @@ static int fd_fs_scan (pid_t pid, int (* if (dirent->d_type == DT_DIR) return 0; buf_len = readlink (pathname, buf, sizeof buf - 1); - if (buf_len <= 0 || buf_len >= sizeof buf - 1) + if (buf_len <= 0 || buf_len >= (ssize_t) sizeof buf - 1) { if (errno != ENOENT && errno != EACCES) fprintf (stderr, "Error reading link \"%s\": %m\n", pathname); @@ -583,16 +658,44 @@ static void rip (void) int main (int argc, char **argv) { + int timeout = 0; int rc; - if (argc < 2 || strcmp (argv[1], "-h") == 0 - || strcmp (argv[1], "--help") == 0) + progname = *argv++; + argc--; + + if (argc < 1 || strcmp (*argv, "-h") == 0 + || strcmp (*argv, "--help") == 0) { - fputs ("Syntax: orphanripper \n", stdout); + puts ("Syntax: orphanripper [-t ] "); exit (EXIT_FAILURE); } - progname = argv[0]; - rc = spawn (argv); + if ((*argv)[0] == '-' && (*argv)[1] == 't') + { + char *timeout_s = NULL; + + if ((*argv)[2] == 0) + timeout_s = *++argv; + else if (isdigit ((*argv)[2])) + timeout_s = (*argv) + 2; + if (timeout_s != NULL) + { + long l; + char *endptr; + + argv++; + l = strtol (timeout_s, &endptr, 0); + timeout = l; + if ((endptr != NULL && *endptr != 0) || timeout < 0 || timeout != l) + { + fprintf (stderr, "%s: Invalid timeout value: %s\n", progname, + timeout_s); + exit (EXIT_FAILURE); + } + } + } + + rc = spawn (argv, timeout); rip (); return rc; } Index: gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb.spec,v retrieving revision 1.365 retrieving revision 1.366 diff -u -p -r1.365 -r1.366 --- gdb.spec 24 Jul 2009 23:40:11 -0000 1.365 +++ gdb.spec 31 Jul 2009 08:36:06 -0000 1.366 @@ -14,7 +14,7 @@ Version: 6.8.50.20090302 # The release always contains a leading reserved number, start it at 1. # `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing. -Release: 40%{?_with_upstream:.upstream}%{?dist} +Release: 41%{?_with_upstream:.upstream}%{?dist} License: GPLv3+ Group: Development/Debuggers @@ -392,6 +392,9 @@ Patch373: gdb-DW_OP_call_frame_cfa.patch # Accelerate sorting blocks on reading a file (found on WebKit) (BZ 507267). Patch374: gdb-bz507267-block-sort-fast.patch +# Fix compatibility of --with-system-readline and readline-6.0+. +Patch375: gdb-readline-6.0.patch + BuildRequires: ncurses-devel texinfo gettext flex bison expat-devel Requires: readline BuildRequires: readline-devel @@ -594,6 +597,7 @@ rm -f gdb/jv-exp.c gdb/m2-exp.c gdb/objc %patch370 -p1 %patch373 -p1 %patch374 -p1 +%patch375 -p1 %patch124 -p1 find -name "*.orig" | xargs rm -f @@ -755,7 +759,8 @@ gcc -o ./orphanripper %{SOURCE2} -Wall - CHECK="$(echo $CHECK|sed 's#check//unix/[^ ]*#& &/-fPIE/-pie#g')" %endif # 0%{!?_with_upstream:1} - ./orphanripper make %{?_smp_mflags} -k $CHECK || : + # FIXME: Temporary F12 disable: ./orphanripper + make %{?_smp_mflags} -k $CHECK || : ) for t in sum log do @@ -881,6 +886,10 @@ fi %endif %changelog +* Fri Jul 31 2009 Jan Kratochvil - 6.8.50.20090302-41 +- Fix compatibility of --with-system-readline and readline-6.0+. +- Temporarily disabled orphanripper on Fedora 12. + * Fri Jul 24 2009 Fedora Release Engineering - 6.8.50.20090302-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From jkratoch at fedoraproject.org Fri Jul 31 08:40:04 2009 From: jkratoch at fedoraproject.org (Jan Kratochvil) Date: Fri, 31 Jul 2009 08:40:04 +0000 (UTC) Subject: rpms/gdb/devel gdb.spec,1.366,1.367 Message-ID: <20090731084004.DB19C11C04D5@cvs1.fedora.phx.redhat.com> Author: jkratoch Update of /cvs/pkgs/rpms/gdb/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28650 Modified Files: gdb.spec Log Message: * Fri Jul 31 2009 Jan Kratochvil - 6.8.50.20090302-42 - Release bump only. Index: gdb.spec =================================================================== RCS file: /cvs/pkgs/rpms/gdb/devel/gdb.spec,v retrieving revision 1.366 retrieving revision 1.367 diff -u -p -r1.366 -r1.367 --- gdb.spec 31 Jul 2009 08:36:06 -0000 1.366 +++ gdb.spec 31 Jul 2009 08:40:04 -0000 1.367 @@ -14,7 +14,7 @@ Version: 6.8.50.20090302 # The release always contains a leading reserved number, start it at 1. # `upstream' is not a part of `name' to stay fully rpm dependencies compatible for the testing. -Release: 41%{?_with_upstream:.upstream}%{?dist} +Release: 42%{?_with_upstream:.upstream}%{?dist} License: GPLv3+ Group: Development/Debuggers @@ -886,6 +886,9 @@ fi %endif %changelog +* Fri Jul 31 2009 Jan Kratochvil - 6.8.50.20090302-42 +- Release bump only. + * Fri Jul 31 2009 Jan Kratochvil - 6.8.50.20090302-41 - Fix compatibility of --with-system-readline and readline-6.0+. - Temporarily disabled orphanripper on Fedora 12. From mgrepl at fedoraproject.org Fri Jul 31 08:41:13 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 31 Jul 2009 08:41:13 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.35, 1.36 selinux-policy.spec, 1.891, 1.892 Message-ID: <20090731084113.45DF311C00CE@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29116 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Allow lircd read/write input event devices policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/logrotate.te | 6 modules/admin/mrtg.te | 4 modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/rpm.te | 4 modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 30 +++- modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 9 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 18 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cron.te | 2 modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/exim.te | 4 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 4 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/polkit.te | 1 modules/services/postfix.if | 19 ++ modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.if | 21 ++ modules/services/sendmail.te | 7 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 23 ++- modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 2 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iptables.te | 4 modules/system/iscsi.te | 1 modules/system/libraries.fc | 11 + modules/system/locallogin.te | 6 modules/system/miscfiles.fc | 1 modules/system/sysnetwork.te | 17 +- modules/system/udev.fc | 1 modules/system/udev.te | 6 modules/system/userdomain.if | 23 +-- modules/system/virtual.te | 5 modules/system/xen.te | 1 117 files changed, 1916 insertions(+), 580 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- policy-20090521.patch 28 Jul 2009 14:20:07 -0000 1.35 +++ policy-20090521.patch 31 Jul 2009 08:41:12 -0000 1.36 @@ -1368,7 +1368,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/kernel/corenetwork.te.in serefpolicy-3.6.12/policy/modules/kernel/corenetwork.te.in --- nsaserefpolicy/policy/modules/kernel/corenetwork.te.in 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/kernel/corenetwork.te.in 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/kernel/corenetwork.te.in 2009-07-31 09:37:03.000000000 +0200 @@ -134,7 +134,7 @@ network_port(ldap, tcp,389,s0, udp,389,s0, tcp,636,s0, udp,636,s0, tcp,3268,s0) type lrrd_port_t, port_type; dnl network_port(lrrd_port_t) # no defined portcon @@ -2087,6 +2087,18 @@ diff -b -B --ignore-all-space --exclude- userdom_dontaudit_list_admin_dir($1) role system_r types $1; ') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cron.te serefpolicy-3.6.12/policy/modules/services/cron.te +--- nsaserefpolicy/policy/modules/services/cron.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/cron.te 2009-07-30 17:13:52.000000000 +0200 +@@ -440,7 +440,7 @@ + init_dontaudit_rw_utmp(system_cronjob_t) + # prelink tells init to restart it self, we either need to allow or dontaudit + init_telinit(system_cronjob_t) +-init_spec_domtrans_script(system_cronjob_t) ++init_domtrans_script(system_cronjob_t) + + auth_use_nsswitch(system_cronjob_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/cups.te serefpolicy-3.6.12/policy/modules/services/cups.te --- nsaserefpolicy/policy/modules/services/cups.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/cups.te 2009-07-07 09:04:11.000000000 +0200 @@ -2492,12 +2504,13 @@ diff -b -B --ignore-all-space --exclude- kerberos_use(kpropd_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/lircd.te serefpolicy-3.6.12/policy/modules/services/lircd.te --- nsaserefpolicy/policy/modules/services/lircd.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/lircd.te 2009-06-25 10:21:01.000000000 +0200 -@@ -45,6 +45,9 @@ ++++ serefpolicy-3.6.12/policy/modules/services/lircd.te 2009-07-30 17:14:36.000000000 +0200 +@@ -45,6 +45,10 @@ dev_filetrans(lircd_t, lircd_sock_t, sock_file ) dev_read_generic_usb_dev(lircd_t) +dev_filetrans_lirc(lircd_t) ++dev_rw_input_dev(lircd_t) +dev_rw_lirc(lircd_t) + logging_send_syslog_msg(lircd_t) @@ -4239,16 +4252,19 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/libraries.fc serefpolicy-3.6.12/policy/modules/system/libraries.fc --- nsaserefpolicy/policy/modules/system/libraries.fc 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/libraries.fc 2009-07-15 09:44:42.000000000 +0200 -@@ -139,6 +139,7 @@ ++++ serefpolicy-3.6.12/policy/modules/system/libraries.fc 2009-07-31 09:55:41.000000000 +0200 +@@ -139,8 +139,10 @@ /usr/lib(64)?/(nvidia/)?libGL(core)?\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/fglrx/.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libGLU\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) +/usr/lib(64)?/libjackserver\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libjs\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) ++/usr/lib(64)?/libnnz11.so(\.[^/]*)* gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/sse2/libx264\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -167,6 +168,8 @@ + /usr/lib(64)?(/.*)?/libnvidia.+\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) + /usr/lib(64)?(/.*)?/nvidia_drv.*\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) +@@ -167,6 +169,8 @@ /usr/lib(64)?/xorg/modules/drivers/nvidia_drv\.o -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/xorg/modules/extensions/nvidia(-[^/]*)?/libglx\.so(\.[^/]*)* -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -4257,7 +4273,7 @@ diff -b -B --ignore-all-space --exclude- ifdef(`distro_debian',` /usr/lib32 -l gen_context(system_u:object_r:lib_t,s0) ') -@@ -190,6 +193,7 @@ +@@ -190,6 +194,7 @@ /usr/lib/firefox-[^/]*/plugins/nppdf.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/libFLAC\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/mozilla/plugins/nppdf\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -4265,7 +4281,7 @@ diff -b -B --ignore-all-space --exclude- /usr/lib/maxima/[^/]+/binary-gcl/maxima -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/mozilla/plugins/libvlcplugin\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib/nx/libXcomp\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -284,6 +288,7 @@ +@@ -284,6 +289,7 @@ /usr/lib(64)?/python2.4/site-packages/M2Crypto/__m2crypto\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) # vmware @@ -4273,7 +4289,16 @@ diff -b -B --ignore-all-space --exclude- /usr/lib(64)?/vmware/lib(/.*)?/libgdk-x11-.*\.so.* -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/vmware/lib(/.*)?/HConfig\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/lib(64)?/vmware/(.*/)?VmPerl\.so -- gen_context(system_u:object_r:textrel_shlib_t,s0) -@@ -366,9 +371,10 @@ +@@ -329,6 +335,8 @@ + + /var/mailman/pythonlib(/.*)?/.+\.so(\..*)? -- gen_context(system_u:object_r:lib_t,s0) + ++/var/named/chroot/usr/lib/bind(/.*)? gen_context(system_u:object_r:lib_t,s0) ++ + /var/lib/spamassassin/compiled/.*\.so.* -- gen_context(system_u:object_r:lib_t,s0) + + ifdef(`distro_suse',` +@@ -366,9 +374,10 @@ /usr/matlab.*\.so(\.[^/]*)* gen_context(system_u:object_r:textrel_shlib_t,s0) /opt/local/matlab.*\.so(\.[^/]*)* gen_context(system_u:object_r:textrel_shlib_t,s0) /usr/local/matlab.*\.so(\.[^/]*)* gen_context(system_u:object_r:textrel_shlib_t,s0) @@ -4308,6 +4333,17 @@ diff -b -B --ignore-all-space --exclude- ifdef(`sulogin_no_pam', ` allow sulogin_t self:capability sys_tty_config; +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/miscfiles.fc serefpolicy-3.6.12/policy/modules/system/miscfiles.fc +--- nsaserefpolicy/policy/modules/system/miscfiles.fc 2009-04-07 21:54:48.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/miscfiles.fc 2009-07-30 17:46:06.000000000 +0200 +@@ -11,6 +11,7 @@ + /etc/avahi/etc/localtime -- gen_context(system_u:object_r:locale_t,s0) + /etc/localtime -- gen_context(system_u:object_r:locale_t,s0) + /etc/pki(/.*)? gen_context(system_u:object_r:cert_t,s0) ++/var/named/chroot/etc/pki(/.*)? gen_context(system_u:object_r:cert_t,s0) + + ifdef(`distro_redhat',` + /etc/sysconfig/clock -- gen_context(system_u:object_r:locale_t,s0) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/sysnetwork.te serefpolicy-3.6.12/policy/modules/system/sysnetwork.te --- nsaserefpolicy/policy/modules/system/sysnetwork.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/system/sysnetwork.te 2009-07-17 09:43:41.000000000 +0200 @@ -4366,10 +4402,29 @@ diff -b -B --ignore-all-space --exclude- + hal_dontaudit_rw_pipes(ifconfig_t) +') + +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.fc serefpolicy-3.6.12/policy/modules/system/udev.fc +--- nsaserefpolicy/policy/modules/system/udev.fc 2009-04-07 21:54:48.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/udev.fc 2009-07-30 17:22:30.000000000 +0200 +@@ -5,6 +5,7 @@ + /etc/dev\.d/.+ -- gen_context(system_u:object_r:udev_helper_exec_t,s0) + + /etc/hotplug\.d/default/udev.* -- gen_context(system_u:object_r:udev_helper_exec_t,s0) ++/etc/udev/rules\.d(/.*)? gen_context(system_u:object_r:udev_var_run_t,s0) + + /etc/udev/scripts/.+ -- gen_context(system_u:object_r:udev_helper_exec_t,s0) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/udev.te serefpolicy-3.6.12/policy/modules/system/udev.te --- nsaserefpolicy/policy/modules/system/udev.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/udev.te 2009-06-25 10:21:01.000000000 +0200 -@@ -112,6 +112,7 @@ ++++ serefpolicy-3.6.12/policy/modules/system/udev.te 2009-07-30 17:17:23.000000000 +0200 +@@ -67,6 +67,7 @@ + + manage_dirs_pattern(udev_t,udev_var_run_t,udev_var_run_t) + manage_files_pattern(udev_t,udev_var_run_t,udev_var_run_t) ++manage_lnk_files_pattern(udev_t, udev_var_run_t, udev_var_run_t) + files_pid_filetrans(udev_t,udev_var_run_t,{ dir file }) + + kernel_read_system_state(udev_t) +@@ -112,6 +113,7 @@ fs_getattr_all_fs(udev_t) fs_list_inotifyfs(udev_t) @@ -4377,7 +4432,7 @@ diff -b -B --ignore-all-space --exclude- mcs_ptrace_all(udev_t) -@@ -196,6 +197,10 @@ +@@ -196,6 +198,10 @@ ') optional_policy(` @@ -4390,7 +4445,7 @@ diff -b -B --ignore-all-space --exclude- diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/system/userdomain.if serefpolicy-3.6.12/policy/modules/system/userdomain.if --- nsaserefpolicy/policy/modules/system/userdomain.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/system/userdomain.if 2009-06-25 10:21:01.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/system/userdomain.if 2009-07-31 09:32:45.000000000 +0200 @@ -627,12 +627,6 @@ ') @@ -4421,7 +4476,15 @@ diff -b -B --ignore-all-space --exclude- gnome_manage_config($1_usertype) gnome_manage_gconf_home_files($1_usertype) gnome_read_gconf_config($1_usertype) -@@ -1880,7 +1884,7 @@ +@@ -1457,6 +1461,7 @@ + ') + + allow $1 user_home_dir_t:dir search_dir_perms; ++ allow $1 user_home_dir_t:lnk_file read_lnk_file_perms; + files_search_home($1) + ') + +@@ -1880,7 +1885,7 @@ type user_home_t; ') @@ -4430,7 +4493,7 @@ diff -b -B --ignore-all-space --exclude- ') ######################################## -@@ -3317,10 +3321,6 @@ +@@ -3317,10 +3322,6 @@ seutil_run_newrole($1_t, $1_r) optional_policy(` Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.891 retrieving revision 1.892 diff -u -p -r1.891 -r1.892 --- selinux-policy.spec 28 Jul 2009 14:21:57 -0000 1.891 +++ selinux-policy.spec 31 Jul 2009 08:41:12 -0000 1.892 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 70%{?dist} +Release: 71%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 31 2009 Miroslav Grepl 3.6.12-71 +- Allow lircd read/write input event devices + * Tue Jul 28 2009 Miroslav Grepl 3.6.12-70 - Dontaudit logrotate sys_ptrace capability - Allow mrtg to transition to ping_t From jskala at fedoraproject.org Fri Jul 31 08:43:59 2009 From: jskala at fedoraproject.org (Jiri Skala) Date: Fri, 31 Jul 2009 08:43:59 +0000 (UTC) Subject: rpms/bltk/devel bltk-1.0.9-conf_home.patch, NONE, 1.1 bltk-1.0.9-bltk_paths.patch, 1.1, 1.2 bltk-1.0.9-cond_install.patch, 1.1, 1.2 bltk-1.0.9-installed.patch, 1.1, 1.2 bltk-1.0.9-opt_developer.patch, 1.1, 1.2 bltk-1.0.9-opt_game.patch, 1.1, 1.2 bltk-1.0.9-opt_office.patch, 1.1, 1.2 bltk-1.0.9-opt_player.patch, 1.1, 1.2 bltk-1.0.9-opt_reader.patch, 1.1, 1.2 bltk.spec, 1.5, 1.6 Message-ID: <20090731084359.8268811C00CE@cvs1.fedora.phx.redhat.com> Author: jskala Update of /cvs/extras/rpms/bltk/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30959 Modified Files: bltk-1.0.9-bltk_paths.patch bltk-1.0.9-cond_install.patch bltk-1.0.9-installed.patch bltk-1.0.9-opt_developer.patch bltk-1.0.9-opt_game.patch bltk-1.0.9-opt_office.patch bltk-1.0.9-opt_player.patch bltk-1.0.9-opt_reader.patch bltk.spec Added Files: bltk-1.0.9-conf_home.patch Log Message: * Fri Jul 31 2009 Jiri Skala 1.0.9-5 - bltk.conf can be located in ~/.bltk bltk-1.0.9-conf_home.patch: parseconf.c | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) --- NEW FILE bltk-1.0.9-conf_home.patch --- diff -up bltk-1.0.9/tools/bltk/parseconf.c.conf_home bltk-1.0.9/tools/bltk/parseconf.c --- bltk-1.0.9/tools/bltk/parseconf.c.conf_home 2009-07-31 10:11:51.812041537 +0200 +++ bltk-1.0.9/tools/bltk/parseconf.c 2009-07-31 10:14:00.747294693 +0200 @@ -47,7 +47,8 @@ #include "bltk.h" -#define BLTK_CONF "/etc/bltk.conf" +#define BLTK_CONF "bltk.conf" +#define BLTK_HOME ".bltk" typedef struct para_item_str_t { @@ -221,12 +222,24 @@ void param_load_conf() { char str[STR_LEN]; + char conf_file[STR_LEN]; char name[STR_LEN], val[STR_LEN]; int index, len; FILE *f; - if ((f = fopen(BLTK_CONF, "rt")) != NULL) + + sprintf(conf_file, "%s/%s/%s", getenv("HOME"), BLTK_HOME, BLTK_CONF); + if ((f = fopen(conf_file, "rt")) == NULL) { + sprintf(conf_file, "/etc/%s", BLTK_CONF); + f = fopen(conf_file, "rt"); + } + + if (f != NULL) + { + sprintf(str, "BLTK_CONF=%s", conf_file); + putenv(strdup(str)); + while (fgets(str, STR_LEN, f) != NULL) { if ((len = strlen(str)) > 0 && str[len-1] == '\n') @@ -264,7 +277,7 @@ param_load_defaults() if (bltk_home == NULL) { - sprintf(str, "%s/.bltk", getenv("HOME")); + sprintf(str, "%s/%s", getenv("HOME"), BLTK_HOME); bltk_home = strdup(str); } else if (bltk_home[0] == '~') { sprintf(str, "%s%s", getenv("HOME"), bltk_home+1); bltk-1.0.9-bltk_paths.patch: Makefile | 2 - bltk_func.sh | 77 ++++++++++++++++++++++++++++++++++++++++++++++ bltk_plot.sh | 48 +++++++++++++++++++--------- bltk_report.sh | 60 ++++++++++++++++++++++++----------- bltk_report_check.sh | 50 ++++++++++++++++++++--------- bltk_report_compress.sh | 51 ++++++++++++++++++++---------- bltk_report_table.sh | 50 ++++++++++++++++++++--------- bltk_report_uncompress.sh | 51 ++++++++++++++++++++---------- 8 files changed, 288 insertions(+), 101 deletions(-) Index: bltk-1.0.9-bltk_paths.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-bltk_paths.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-bltk_paths.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-bltk_paths.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -43,7 +43,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -102,7 +102,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -166,7 +166,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -235,7 +235,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -302,7 +302,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -366,7 +366,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + @@ -451,7 +451,7 @@ + then + RETCODE=2 + else -+ [ -f /etc/bltk.conf ] && . /etc/bltk.conf ++ [ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + + [ -z $BLTK_HOME ] && BLTK_HOME=~/.bltk + bltk-1.0.9-cond_install.patch: wl_developer/bltk_wl_developer_install.sh | 17 ++++++++++----- wl_office/bltk_wl_office_install.sh | 33 +++++++++++++++++------------- wl_player/bltk_wl_player_install.sh | 22 ++++++++++++-------- 3 files changed, 45 insertions(+), 27 deletions(-) Index: bltk-1.0.9-cond_install.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-cond_install.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-cond_install.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-cond_install.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -5,7 +5,7 @@ diff -up bltk-1.0.9/wl_developer/bltk_wl # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -37,7 +37,7 @@ diff -up bltk-1.0.9/wl_office/bltk_wl_of # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -95,7 +95,7 @@ diff -up bltk-1.0.9/wl_player/bltk_wl_pl PLAYER_INSTALL_FLAGS=" --disable-ivtv" -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } bltk-1.0.9-installed.patch: bltk_check.sh | 3 ++- bltk_wl_common.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) Index: bltk-1.0.9-installed.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-installed.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-installed.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-installed.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -4,7 +4,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" source `dirname $0`/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } bltk-1.0.9-opt_developer.patch: bltk_wl_developer.sh | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) Index: bltk-1.0.9-opt_developer.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-opt_developer.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-opt_developer.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-opt_developer.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -4,7 +4,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } bltk-1.0.9-opt_game.patch: bltk_wl_game.sh | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) Index: bltk-1.0.9-opt_game.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-opt_game.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-opt_game.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-opt_game.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -27,7 +27,7 @@ set -x -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } bltk-1.0.9-opt_office.patch: tools/bltk/bltk_wl_common.sh | 24 +++++++++++-- wl_office/bltk_wl_office.sh | 64 ++++++++++++++++++++++++++++-------- wl_office/bltk_wl_office_run_app.sh | 4 +- 3 files changed, 74 insertions(+), 18 deletions(-) Index: bltk-1.0.9-opt_office.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-opt_office.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-opt_office.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-opt_office.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -4,7 +4,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" unalias -a @@ -22,7 +22,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" + source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } @@ -156,7 +156,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" unalias -a bltk-1.0.9-opt_player.patch: bltk_wl_player.sh | 49 ++++++++++++++++++++++-------------------- bltk_wl_player_make_binary.sh | 16 ++++++++----- 2 files changed, 36 insertions(+), 29 deletions(-) Index: bltk-1.0.9-opt_player.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-opt_player.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-opt_player.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-opt_player.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -28,7 +28,7 @@ +BLTK_PLAYER_PROG_FLG= + -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } bltk-1.0.9-opt_reader.patch: bltk_wl_reader.sh | 57 ++++++++++++++++++++++++++++++++++----------------- bltk_wl_reader_xse.c | 2 - 2 files changed, 39 insertions(+), 20 deletions(-) Index: bltk-1.0.9-opt_reader.patch =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk-1.0.9-opt_reader.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- bltk-1.0.9-opt_reader.patch 29 Jul 2009 13:48:31 -0000 1.1 +++ bltk-1.0.9-opt_reader.patch 31 Jul 2009 08:43:58 -0000 1.2 @@ -4,7 +4,7 @@ # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # -+. /etc/bltk.conf ++[ -f "$BLTK_CONF" ] && . "$BLTK_CONF" source `dirname $0`/../../bin/bltk_wl_common [[ $? != 0 ]] && { echo "bltk tree corrupted"; exit 2; } Index: bltk.spec =================================================================== RCS file: /cvs/extras/rpms/bltk/devel/bltk.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- bltk.spec 29 Jul 2009 13:48:31 -0000 1.5 +++ bltk.spec 31 Jul 2009 08:43:58 -0000 1.6 @@ -1,6 +1,6 @@ Name: bltk Version: 1.0.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: The BLTK measures notebook battery life under any workload Group: Applications/System @@ -28,6 +28,7 @@ Patch12: bltk-1.0.9-opt_reader.patch Patch13: bltk-1.0.9-installed.patch Patch14: bltk-1.0.9-sudo.patch Patch15: bltk-1.0.9-xse.patch +Patch16: bltk-1.0.9-conf_home.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -67,6 +68,7 @@ The following workloads are currently im %patch13 -p1 -b .installed %patch14 -p1 -b .sudo %patch15 -p1 -b .xse +%patch16 -p1 -b .conf_home %build export CFLAGS="$RPM_OPT_FLAGS" @@ -231,6 +233,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/bltk/wl_reader/war_and_peace.html %changelog +* Fri Jul 31 2009 Jiri Skala 1.0.9-5 +- bltk.conf can be located in ~/.bltk + * Tue Jul 28 2009 Jiri Skala 1.0.9-4 - added man mages - splitted patch to more files From eseyman at fedoraproject.org Fri Jul 31 08:45:01 2009 From: eseyman at fedoraproject.org (Emmanuel Seyman) Date: Fri, 31 Jul 2009 08:45:01 +0000 (UTC) Subject: rpms/bugzilla/devel .cvsignore, 1.12, 1.13 bugzilla-rw-paths.patch, 1.3, 1.4 bugzilla.spec, 1.27, 1.28 sources, 1.12, 1.13 Message-ID: <20090731084501.636FD11C00CE@cvs1.fedora.phx.redhat.com> Author: eseyman Update of /cvs/pkgs/rpms/bugzilla/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31347 Modified Files: .cvsignore bugzilla-rw-paths.patch bugzilla.spec sources Log Message: Update to 3.4; fix packaging errors Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/.cvsignore,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- .cvsignore 8 Jul 2009 19:18:50 -0000 1.12 +++ .cvsignore 31 Jul 2009 08:45:01 -0000 1.13 @@ -1 +1 @@ -bugzilla-3.2.4.tar.gz +bugzilla-3.4.tar.gz bugzilla-rw-paths.patch: Constants.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: bugzilla-rw-paths.patch =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/bugzilla-rw-paths.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- bugzilla-rw-paths.patch 5 Mar 2009 15:15:11 -0000 1.3 +++ bugzilla-rw-paths.patch 31 Jul 2009 08:45:01 -0000 1.4 @@ -1,6 +1,6 @@ ---- bugzilla-3.2.2/Bugzilla/Constants.pm 2009-02-03 10:02:53.000000000 +0000 -+++ bugzilla-3.2.2-rw/Bugzilla/Constants.pm 2009-02-18 17:59:52.000000000 +0000 -@@ -465,9 +465,9 @@ +--- bugzilla-3.4/Bugzilla/Constants.pm 2009-02-03 10:02:53.000000000 +0000 ++++ bugzilla-3.4-rw/Bugzilla/Constants.pm 2009-02-18 17:59:52.000000000 +0000 +@@ -499,9 +499,9 @@ sub bz_locations { 'cgi_path' => $libpath, 'templatedir' => "$libpath/template", 'project' => $project, @@ -13,14 +13,12 @@ 'skinsdir' => "$libpath/skins", # $webdotdir must be in the web server's tree somewhere. Even if you use a # local dot, we output images to there. Also, if $webdotdir is -@@ -475,8 +475,8 @@ +@@ -509,7 +509,7 @@ sub bz_locations { # change showdependencygraph.cgi to set image_url to the correct # location. # The script should really generate these graphs directly... - 'webdotdir' => "$libpath/$datadir/webdot", -- 'extensionsdir' => "$libpath/extensions", + 'webdotdir' => "/var/lib/bugzilla/$datadir/webdot", -+ 'extensionsdir' => "/var/lib/bugzilla/extensions", + 'extensionsdir' => "$libpath/extensions", }; } - Index: bugzilla.spec =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/bugzilla.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bugzilla.spec 24 Jul 2009 18:28:53 -0000 1.27 +++ bugzilla.spec 31 Jul 2009 08:45:01 -0000 1.28 @@ -4,9 +4,9 @@ Summary: Bug tracking system URL: http://www.bugzilla.org/ Name: bugzilla -Version: 3.2.4 +Version: 3.4 Group: Applications/Publishing -Release: 2%{?dist} +Release: 1%{?dist} License: MPLv1.1 Source0: http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar.gz Source1: bugzilla-httpd-conf @@ -21,6 +21,10 @@ Requires: webserver, patchutils, mod_per Summary: Bugzilla documentation Group: Documentation +%package doc-build +Summary: Tools to generate the Bugzilla documentation +Group: Applications/Publishing + %package contrib Summary: Bugzilla contributed scripts Group: Applications/Publishing @@ -35,6 +39,9 @@ Without one of these database engines (l %description doc Documentation distributed with the Bugzilla bug tracking system +%description doc-build +Tools to generate the documentation distributed with Bugzilla + %description contrib Contributed scripts and functions for Bugzilla @@ -110,7 +117,6 @@ popd > /dev/null) %{bzinstallprefix}/bugzilla/*.pl %{bzinstallprefix}/bugzilla/Bugzilla.pm %{bzinstallprefix}/bugzilla/bugzilla.dtd -%{bzinstallprefix}/bugzilla/duplicates.xul %{bzinstallprefix}/bugzilla/robots.txt %{bzinstallprefix}/bugzilla/Bugzilla %{bzinstallprefix}/bugzilla/images @@ -136,13 +142,25 @@ popd > /dev/null) %files doc %defattr(-,root,root,-) -%{bzinstallprefix}/bugzilla/docs +%{bzinstallprefix}/bugzilla/docs/en +%{bzinstallprefix}/bugzilla/docs/bugzilla.ent +%{bzinstallprefix}/bugzilla/docs/style.css + +%files doc-build +%defattr(-,root,root,-) +%{bzinstallprefix}/bugzilla/docs/makedocs.pl +%{bzinstallprefix}/bugzilla/docs/lib %files contrib %defattr(-,root,root,-) %{bzinstallprefix}/bugzilla/contrib %changelog +* Wed Jul 29 2009 Fedora Release Engineering - 3.4-1 +- Update to 3.4 (fixes #514315) +- move makedocs.pl to its own package (fixes #509041) +- move the extensions dir to /usr/share/ (fixes #450636) + * Fri Jul 24 2009 Fedora Release Engineering - 3.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bugzilla/devel/sources,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- sources 8 Jul 2009 19:18:50 -0000 1.12 +++ sources 31 Jul 2009 08:45:01 -0000 1.13 @@ -1 +1 @@ -845c94c8a498340b244a2c36db7abd76 bugzilla-3.2.4.tar.gz +15a681c445549d5913dfb54301ec58bb bugzilla-3.4.tar.gz From iarnell at fedoraproject.org Fri Jul 31 08:54:25 2009 From: iarnell at fedoraproject.org (Iain Arnell) Date: Fri, 31 Jul 2009 08:54:25 +0000 (UTC) Subject: rpms/perl-Cache-FastMmap/F-11 .cvsignore, 1.2, 1.3 perl-Cache-FastMmap.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090731085425.99F5E11C00CE@cvs1.fedora.phx.redhat.com> Author: iarnell Update of /cvs/pkgs/rpms/perl-Cache-FastMmap/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2019 Modified Files: .cvsignore perl-Cache-FastMmap.spec sources Log Message: * Sun Jun 21 2009 Iain Arnell 1.34-1 - update to latest upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-FastMmap/F-11/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 7 Nov 2008 17:27:42 -0000 1.2 +++ .cvsignore 31 Jul 2009 08:54:24 -0000 1.3 @@ -1 +1 @@ -Cache-FastMmap-1.28.tar.gz +Cache-FastMmap-1.34.tar.gz Index: perl-Cache-FastMmap.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-FastMmap/F-11/perl-Cache-FastMmap.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- perl-Cache-FastMmap.spec 26 Feb 2009 11:51:29 -0000 1.2 +++ perl-Cache-FastMmap.spec 31 Jul 2009 08:54:24 -0000 1.3 @@ -1,6 +1,6 @@ Name: perl-Cache-FastMmap -Version: 1.28 -Release: 3%{?dist} +Version: 1.34 +Release: 1%{?dist} Summary: Uses an mmap'ed file to act as a shared memory interprocess cache License: GPL+ or Artistic Group: Development/Libraries @@ -51,6 +51,12 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/* %changelog +* Sun Jun 21 2009 Iain Arnell 1.34-1 +- update to latest upstream version + +* Thu May 14 2009 Iain Arnell 1.30-1 +- update to latest upstream version + * Thu Feb 26 2009 Fedora Release Engineering - 1.28-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-Cache-FastMmap/F-11/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 7 Nov 2008 17:27:42 -0000 1.2 +++ sources 31 Jul 2009 08:54:24 -0000 1.3 @@ -1 +1 @@ -c185facf64a0606f9966b13a14094126 Cache-FastMmap-1.28.tar.gz +f74c4919e9ca349716682f4f113c04dc Cache-FastMmap-1.34.tar.gz From markmc at fedoraproject.org Fri Jul 31 08:55:24 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 31 Jul 2009 08:55:24 +0000 (UTC) Subject: rpms/libvirt/devel libvirt.spec,1.161,1.162 Message-ID: <20090731085524.7AEDB11C00CE@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/libvirt/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2361 Modified Files: libvirt.spec Log Message: * Fri Jul 31 2009 Mark McLoughlin - 0.7.0-0.9.gite195b43 - Set perms on /var/lib/libvirt/images to 0711 Index: libvirt.spec =================================================================== RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v retrieving revision 1.161 retrieving revision 1.162 diff -u -p -r1.161 -r1.162 --- libvirt.spec 30 Jul 2009 17:02:51 -0000 1.161 +++ libvirt.spec 31 Jul 2009 08:55:24 -0000 1.162 @@ -78,7 +78,7 @@ Summary: Library providing a simple API virtualization Name: libvirt Version: 0.7.0 -Release: 0.8.gite195b43%{?dist}%{?extra_release} +Release: 0.9.gite195b43%{?dist}%{?extra_release} License: LGPLv2+ Group: Development/Libraries Source: libvirt-0.7.0-0.6.gite195b43.tar.gz @@ -501,7 +501,7 @@ fi %dir %{_localstatedir}/run/libvirt/ %dir %{_localstatedir}/lib/libvirt/ -%dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/images/ +%dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/images/ %dir %attr(0700, root, root) %{_localstatedir}/lib/libvirt/boot/ %dir %attr(0700, root, root) %{_localstatedir}/cache/libvirt/ @@ -617,6 +617,9 @@ fi %endif %changelog +* Fri Jul 31 2009 Mark McLoughlin - 0.7.0-0.9.gite195b43 +- Set perms on /var/lib/libvirt/images to 0711 + * Thu Jul 30 2009 Mark McLoughlin - 0.7.0-0.8.gite195b43 - Add patch from upstream to fix qemu pidfile perms problem From pkgdb at fedoraproject.org Fri Jul 31 09:04:05 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:05 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090406.1CD1310F88F@bastion2.fedora.phx.redhat.com> nucleo has set the watchbugzilla acl on psimedia (Fedora devel) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 09:04:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:09 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090409.B9D1510F89B@bastion2.fedora.phx.redhat.com> nucleo has set the watchcommits acl on psimedia (Fedora devel) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 09:04:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:11 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090412.12A6A10F89E@bastion2.fedora.phx.redhat.com> nucleo has set the commit acl on psimedia (Fedora devel) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 09:04:16 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:16 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090416.A0FBA10F8B0@bastion2.fedora.phx.redhat.com> nucleo has set the watchbugzilla acl on psimedia (Fedora 11) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 09:04:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:17 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090417.8ABE810F8B6@bastion2.fedora.phx.redhat.com> nucleo has set the watchcommits acl on psimedia (Fedora 11) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From pkgdb at fedoraproject.org Fri Jul 31 09:04:19 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 09:04:19 +0000 Subject: [pkgdb] psimedia had acl change status Message-ID: <20090731090420.BDB7E10F8B7@bastion2.fedora.phx.redhat.com> nucleo has set the commit acl on psimedia (Fedora 11) to Approved for abompard To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/psimedia From drago01 at fedoraproject.org Fri Jul 31 09:31:39 2009 From: drago01 at fedoraproject.org (drago01) Date: Fri, 31 Jul 2009 09:31:39 +0000 (UTC) Subject: rpms/dbus-c++/devel dbus-c++-build-fix.patch, NONE, 1.1 dbus-c++.spec, 1.7, 1.8 Message-ID: <20090731093140.6661B11C00CE@cvs1.fedora.phx.redhat.com> Author: drago01 Update of /cvs/pkgs/rpms/dbus-c++/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14269 Modified Files: dbus-c++.spec Added Files: dbus-c++-build-fix.patch Log Message: fix build dbus-c++-build-fix.patch: Makefile.am | 1 - 1 file changed, 1 deletion(-) --- NEW FILE dbus-c++-build-fix.patch --- diff -upNr dbus-c++.orign/src/Makefile.am dbus-c++/src/Makefile.am --- dbus-c++.orign/src/Makefile.am 2009-01-08 21:58:42.000000000 +0100 +++ dbus-c++/src/Makefile.am 2009-07-31 11:29:22.871072420 +0200 @@ -24,7 +24,6 @@ HEADER_FILES = \ $(HEADER_DIR)/object.h \ $(HEADER_DIR)/pendingcall.h \ $(HEADER_DIR)/server.h \ - $(HEADER_DIR)/debug.h \ $(HEADER_DIR)/util.h \ $(HEADER_DIR)/refptr_impl.h \ $(HEADER_DIR)/introspection.h \ Index: dbus-c++.spec =================================================================== RCS file: /cvs/pkgs/rpms/dbus-c++/devel/dbus-c++.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- dbus-c++.spec 24 Jul 2009 20:01:43 -0000 1.7 +++ dbus-c++.spec 31 Jul 2009 09:31:36 -0000 1.8 @@ -2,7 +2,7 @@ %define git_version 13281b3 Name: dbus-c++ Version: 0.5.0 -Release: 0.9.%{git_date}git%{git_version}%{?dist} +Release: 0.10.%{git_date}git%{git_version}%{?dist} Summary: Native C++ bindings for D-Bus Group: System Environment/Libraries @@ -16,6 +16,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version Patch1: dbus-c++-get-uid-api.patch Patch2: gcc-44.patch +Patch3: dbus-c++-build-fix.patch BuildRequires: dbus-devel BuildRequires: glib2-devel @@ -42,6 +43,7 @@ developing applications that use %{name} %{__sed} -i 's/-O3//' configure.ac %patch1 -p1 -b .uid %patch2 -p1 -b .gcc44 +%patch3 -p1 -b .buildfix %build ./autogen.sh @@ -80,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/* %changelog +* Fri Jul 31 2009 Adel Gadllah - 0.5.0-0.10.20090203git13281b3 +- Fix build + * Fri Jul 24 2009 Fedora Release Engineering - 0.5.0-0.9.20090203git13281b3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mso at fedoraproject.org Fri Jul 31 10:04:03 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 31 Jul 2009 10:04:03 +0000 (UTC) Subject: rpms/libass/F-11 libass.spec,1.1,1.2 Message-ID: <20090731100403.83FD511C00CE@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/libass/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24815/F-11 Modified Files: libass.spec Log Message: Upstream changed from sourceforge to code.google. Adviced version (by upstream) is git snapshot which is API incompatible with latest stable (0.9.6), so no rebuild for now. Index: libass.spec =================================================================== RCS file: /cvs/extras/rpms/libass/F-11/libass.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libass.spec 24 Mar 2009 17:52:39 -0000 1.1 +++ libass.spec 31 Jul 2009 10:04:02 -0000 1.2 @@ -1,11 +1,11 @@ Name: libass Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: GPLv2+ -URL: http://sourceforge.net/projects/libass +URL: http://code.google.com/p/libass/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -65,6 +65,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Martin Sourada +- Upstream changed from sourceforge to code.google + +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2008 Martin Sourada - 0.9.6-2 - remove glibc-devel and freetype-devel BRs, they're already pulled in by the rest From mso at fedoraproject.org Fri Jul 31 10:04:03 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 31 Jul 2009 10:04:03 +0000 (UTC) Subject: rpms/libass/devel libass.spec,1.2,1.3 Message-ID: <20090731100403.8A8A611C0439@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/libass/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24815/devel Modified Files: libass.spec Log Message: Upstream changed from sourceforge to code.google. Adviced version (by upstream) is git snapshot which is API incompatible with latest stable (0.9.6), so no rebuild for now. Index: libass.spec =================================================================== RCS file: /cvs/extras/rpms/libass/devel/libass.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- libass.spec 25 Jul 2009 05:19:27 -0000 1.2 +++ libass.spec 31 Jul 2009 10:04:03 -0000 1.3 @@ -5,7 +5,7 @@ Summary: Portable library for SSA Group: System Environment/Libraries License: GPLv2+ -URL: http://sourceforge.net/projects/libass +URL: http://code.google.com/p/libass/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Martin Sourada +- Upstream changed from sourceforge to code.google + * Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mso at fedoraproject.org Fri Jul 31 10:04:03 2009 From: mso at fedoraproject.org (Martin Sourada) Date: Fri, 31 Jul 2009 10:04:03 +0000 (UTC) Subject: rpms/libass/F-10 libass.spec,1.1,1.2 Message-ID: <20090731100403.8741011C00D4@cvs1.fedora.phx.redhat.com> Author: mso Update of /cvs/extras/rpms/libass/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24815/F-10 Modified Files: libass.spec Log Message: Upstream changed from sourceforge to code.google. Adviced version (by upstream) is git snapshot which is API incompatible with latest stable (0.9.6), so no rebuild for now. Index: libass.spec =================================================================== RCS file: /cvs/extras/rpms/libass/F-10/libass.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libass.spec 24 Mar 2009 17:56:28 -0000 1.1 +++ libass.spec 31 Jul 2009 10:04:01 -0000 1.2 @@ -1,11 +1,11 @@ Name: libass Version: 0.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Portable library for SSA/ASS subtitles rendering Group: System Environment/Libraries License: GPLv2+ -URL: http://sourceforge.net/projects/libass +URL: http://code.google.com/p/libass/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -65,6 +65,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/libass.pc %changelog +* Martin Sourada +- Upstream changed from sourceforge to code.google + +* Fri Jul 24 2009 Fedora Release Engineering - 0.9.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 24 2008 Martin Sourada - 0.9.6-2 - remove glibc-devel and freetype-devel BRs, they're already pulled in by the rest From sharkcz at fedoraproject.org Fri Jul 31 10:09:29 2009 From: sharkcz at fedoraproject.org (=?utf-8?q?Dan_Hor=C3=A1k?=) Date: Fri, 31 Jul 2009 10:09:29 +0000 (UTC) Subject: rpms/tailor/devel tailor.spec,1.15,1.16 Message-ID: <20090731100929.9469611C00CE@cvs1.fedora.phx.redhat.com> Author: sharkcz Update of /cvs/pkgs/rpms/tailor/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27360 Modified Files: tailor.spec Log Message: * Fri Jul 31 2009 Dan Hor?k 0.9.35-7 - drop cogito from Requires Index: tailor.spec =================================================================== RCS file: /cvs/pkgs/rpms/tailor/devel/tailor.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- tailor.spec 27 Jul 2009 05:30:26 -0000 1.15 +++ tailor.spec 31 Jul 2009 10:09:29 -0000 1.16 @@ -3,7 +3,7 @@ Summary: A tool to migrate changesets between several version control systems Name: tailor Version: 0.9.35 -Release: 6%{?dist} +Release: 7%{?dist} Source0: http://darcs.arstecnica.it/%{name}-%{version}.tar.gz License: GPLv3+ Group: Development/Tools @@ -30,7 +30,7 @@ URI and revision in special properties o %package -n python-vcpx Summary: Version Control Patch eXchanger Group: Development/Libraries -Requires: cvs, subversion, cogito, tla, bazaar, monotone, git-core +Requires: cvs, subversion, tla, bazaar, monotone, git-core Requires: mercurial >= 1.1.2 %description -n python-vcpx @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Dan Hor?k 0.9.35-7 +- drop cogito from Requires + * Sun Jul 26 2009 Fedora Release Engineering - 0.9.35-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dwalsh at fedoraproject.org Fri Jul 31 10:35:03 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Fri, 31 Jul 2009 10:35:03 +0000 (UTC) Subject: rpms/setroubleshoot-plugins/F-11 setroubleshoot-plugins-2.0.18-global_ssp.patch, 1.1, 1.2 setroubleshoot-plugins.spec, 1.24, 1.25 Message-ID: <20090731103503.BAA0C11C00CE@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/setroubleshoot-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3762 Modified Files: setroubleshoot-plugins-2.0.18-global_ssp.patch setroubleshoot-plugins.spec Log Message: * Fri Jul 31 2009 - 2.0.18-3 - Remove stunnel_is_daemon plugin setroubleshoot-plugins-2.0.18-global_ssp.patch: Makefile.am | 1 - global_ssp.py | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) Index: setroubleshoot-plugins-2.0.18-global_ssp.patch =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/F-11/setroubleshoot-plugins-2.0.18-global_ssp.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- setroubleshoot-plugins-2.0.18-global_ssp.patch 19 Jul 2009 11:13:20 -0000 1.1 +++ setroubleshoot-plugins-2.0.18-global_ssp.patch 31 Jul 2009 10:35:01 -0000 1.2 @@ -20,3 +20,14 @@ diff -up setroubleshoot-plugins-2.0.18/s return self.report(avc, None, self.summary, self.problem_description, self.fix_description, self.fix_cmd) +diff -up setroubleshoot-plugins-2.0.18/src/Makefile.am~ setroubleshoot-plugins-2.0.18/src/Makefile.am +--- setroubleshoot-plugins-2.0.18/src/Makefile.am~ 2009-04-03 15:57:24.000000000 -0400 ++++ setroubleshoot-plugins-2.0.18/src/Makefile.am 2009-07-31 06:31:13.000000000 -0400 +@@ -84,7 +84,6 @@ PLUGIN_FILES = \ + secure_mode_policyload.py \ + spamd_enable_home_dirs.py \ + squid_connect_any.py \ +- stunnel_is_daemon.py \ + swapfile.py \ + use_nfs_home_dirs.py \ + use_samba_home_dirs.py \ Index: setroubleshoot-plugins.spec =================================================================== RCS file: /cvs/extras/rpms/setroubleshoot-plugins/F-11/setroubleshoot-plugins.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- setroubleshoot-plugins.spec 19 Jul 2009 11:13:20 -0000 1.24 +++ setroubleshoot-plugins.spec 31 Jul 2009 10:35:02 -0000 1.25 @@ -1,7 +1,7 @@ Summary: Analysis plugins for use with setroubleshoot Name: setroubleshoot-plugins Version: 2.0.18 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/setroubleshoot @@ -54,6 +54,9 @@ rm -rf %{buildroot} %{_datadir}/setroubleshoot/plugins %changelog +* Fri Jul 31 2009 - 2.0.18-3 +- Remove stunnel_is_daemon plugin + * Sun Jun 19 2009 - 2.0.18-2 - Fix global_ssp to report correct boolean name From xavierb at fedoraproject.org Fri Jul 31 10:44:21 2009 From: xavierb at fedoraproject.org (Xavier Bachelot) Date: Fri, 31 Jul 2009 10:44:21 +0000 (UTC) Subject: rpms/xorg-x11-drv-openchrome/devel openchrome-0.2.903-latest_snapshot.patch, 1.8, 1.9 xorg-x11-drv-openchrome.spec, 1.47, 1.48 openchrome-0.2.903-XO-1.5-panel.patch, 1.1, NONE openchrome-0.2.903-disable_TMDS_by_default.patch, 1.1, NONE openchrome-0.2.903-remove_loader_symbol_lists.patch, 1.1, NONE Message-ID: <20090731104421.62EA811C00CE@cvs1.fedora.phx.redhat.com> Author: xavierb Update of /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6731 Modified Files: openchrome-0.2.903-latest_snapshot.patch xorg-x11-drv-openchrome.spec Removed Files: openchrome-0.2.903-XO-1.5-panel.patch openchrome-0.2.903-disable_TMDS_by_default.patch openchrome-0.2.903-remove_loader_symbol_lists.patch Log Message: 0.2.903 + rev. 766 openchrome-0.2.903-latest_snapshot.patch: ChangeLog | 338 ++++++++++++ configure.ac | 31 - libxvmc/Makefile.am | 8 libxvmc/viaLowLevel.c | 4 libxvmc/viaLowLevelPro.c | 6 libxvmc/viaXvMC.c | 62 +- src/Makefile.am | 6 src/via.h | 22 src/via_accel.c | 505 ++++++++++-------- src/via_bandwidth.c | 34 + src/via_bios.h | 113 +++- src/via_crtc.c | 664 ++++++++++++++++++++++++ src/via_cursor.c | 580 +++++++++++++++++---- src/via_dga.c | 4 src/via_display.c | 145 +++++ src/via_dri.c | 12 src/via_driver.c | 886 +++++++++++++++----------------- src/via_driver.h | 68 +- src/via_id.c | 17 src/via_id.h | 4 src/via_lvds.c | 117 ++++ src/via_memory.c | 8 src/via_mode.c | 1282 +++++++++++++++++------------------------------ src/via_mode.h | 129 ++-- src/via_panel.c | 462 ++++++++++++++++ src/via_priv.h | 4 src/via_regs.h | 79 ++ src/via_swov.c | 88 ++- src/via_timing.c | 398 ++++++++++++++ src/via_timing.h | 51 + src/via_vbe.c | 6 src/via_video.c | 61 -- src/via_vt162x.h | 17 src/via_xvmc.c | 23 34 files changed, 4425 insertions(+), 1809 deletions(-) Index: openchrome-0.2.903-latest_snapshot.patch =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/openchrome-0.2.903-latest_snapshot.patch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- openchrome-0.2.903-latest_snapshot.patch 18 Jul 2009 12:28:44 -0000 1.8 +++ openchrome-0.2.903-latest_snapshot.patch 31 Jul 2009 10:44:20 -0000 1.9 @@ -1,17 +1,21 @@ Index: configure.ac =================================================================== ---- configure.ac (.../tags/release_0_2_903) (revision 758) -+++ configure.ac (.../trunk) (revision 758) -@@ -70,7 +70,7 @@ +--- configure.ac (.../tags/release_0_2_903) (revision 766) ++++ configure.ac (.../trunk) (revision 766) +@@ -70,7 +70,11 @@ XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto) # Checks for pkg-config packages -PKG_CHECK_MODULES(XORG, [xorg-server xproto xvmc fontsproto libdrm $REQUIRED_MODULES]) +PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto libdrm $REQUIRED_MODULES]) ++PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], ++ HAVE_XEXTPROTO_71="yes"; AC_DEFINE(HAVE_XEXTPROTO_71, 1, [xextproto 7.1 available]), ++ HAVE_XEXTPROTO_71="no") ++AM_CONDITIONAL(HAVE_XEXTPROTO_71, [ test "$HAVE_XEXTPROTO_71" = "yes" ]) sdkdir=$(pkg-config --variable=sdkdir xorg-server) # Checks for libraries. -@@ -126,6 +126,7 @@ +@@ -126,6 +130,7 @@ if test "x$XVMC" = xyes; then AC_CHECK_HEADERS(pthread.h sys/ioctl.h sys/time.h time.h,,[XVMC="no"; break],) @@ -19,7 +23,7 @@ Index: configure.ac fi AC_MSG_CHECKING([whether to build XvMC driver support]) -@@ -133,33 +134,10 @@ +@@ -133,33 +138,10 @@ AM_CONDITIONAL(XVMC, test x$XVMC = xyes) @@ -53,7 +57,7 @@ Index: configure.ac AM_CONDITIONAL(XSERVER_LIBPCIACCESS, test x$XSERVER_LIBPCIACCESS = xyes) if test "$XSERVER_LIBPCIACCESS" = yes; then AC_DEFINE(XSERVER_LIBPCIACCESS,1,[Enable libpciaccess]) -@@ -186,7 +164,6 @@ +@@ -186,7 +168,6 @@ AC_DEFINE(X_USE_REGION_NULL,1,[Compatibility define for older Xen]) AC_DEFINE(X_HAVE_XAAGETROP,1,[Compatibility define for older Xen]) AC_DEFINE(X_NEED_I2CSTART,1,[Compatibility define for older Xen]) @@ -63,8 +67,8 @@ Index: configure.ac AC_SUBST([DRIVER_MAN_SUFFIX]) Index: libxvmc/Makefile.am =================================================================== ---- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 758) -+++ libxvmc/Makefile.am (.../trunk) (revision 758) +--- libxvmc/Makefile.am (.../tags/release_0_2_903) (revision 766) ++++ libxvmc/Makefile.am (.../trunk) (revision 766) @@ -24,13 +24,13 @@ xf86dristr.h \ vldXvMC.h @@ -85,8 +89,8 @@ Index: libxvmc/Makefile.am driDrawable.c \ Index: libxvmc/viaLowLevel.c =================================================================== ---- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 758) -+++ libxvmc/viaLowLevel.c (.../trunk) (revision 758) +--- libxvmc/viaLowLevel.c (.../tags/release_0_2_903) (revision 766) ++++ libxvmc/viaLowLevel.c (.../trunk) (revision 766) @@ -276,8 +276,8 @@ xl->tsMem.context = *(xl->drmcontext); xl->tsMem.size = 64; @@ -100,8 +104,8 @@ Index: libxvmc/viaLowLevel.c return -1; Index: libxvmc/viaLowLevelPro.c =================================================================== ---- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 758) -+++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 758) +--- libxvmc/viaLowLevelPro.c (.../tags/release_0_2_903) (revision 766) ++++ libxvmc/viaLowLevelPro.c (.../trunk) (revision 766) @@ -1460,13 +1460,13 @@ if (size != mem->size) { @@ -129,8 +133,8 @@ Index: libxvmc/viaLowLevelPro.c Index: libxvmc/viaXvMC.c =================================================================== ---- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 758) -+++ libxvmc/viaXvMC.c (.../trunk) (revision 758) +--- libxvmc/viaXvMC.c (.../tags/release_0_2_903) (revision 766) ++++ libxvmc/viaXvMC.c (.../trunk) (revision 766) @@ -248,7 +248,7 @@ return errType; } @@ -407,9 +411,27 @@ Index: libxvmc/viaXvMC.c Index: ChangeLog =================================================================== ---- ChangeLog (.../tags/release_0_2_903) (revision 758) -+++ ChangeLog (.../trunk) (revision 758) -@@ -1,3 +1,323 @@ +--- ChangeLog (.../tags/release_0_2_903) (revision 766) ++++ ChangeLog (.../trunk) (revision 766) +@@ -1,3 +1,341 @@ ++2009-07-28 Jon Nettleton ++ ++ Forgot to remove an old Dot Clock entry from the table. ++ ++ * src/via_mode.h: ++ ++2009-07-28 Jon Nettleton ++ ++ XO 1.5 Panel patch contributed by Xavier Bachelot. ++ Fixup some of the Dotclock code and add working plls ++ for the XO 1.5 ++ ++ * src/via_bios.h: ++ * src/via_mode.c: (ViaSetDotclock), (ViaSetPrimaryDotclock), ++ (ViaSetSecondaryDotclock): ++ * src/via_mode.h: ++ * src/via_panel.c: ++ +2009-03-21 Xavier Bachelot + + * src/via_bios.h: @@ -736,8 +758,8 @@ Index: ChangeLog Index: src/via_panel.c =================================================================== --- src/via_panel.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_panel.c (.../trunk) (revision 758) -@@ -0,0 +1,461 @@ ++++ src/via_panel.c (.../trunk) (revision 766) +@@ -0,0 +1,462 @@ +/* + * Copyright 2007 The Openchrome Project [openchrome.org] + * Copyright (c) 1997-2003 by The XFree86 Project, Inc. @@ -794,7 +816,8 @@ Index: src/via_panel.c + {1920, 1200}, + {1024, 600}, + {1440, 900}, -+ {1280, 720} ++ {1280, 720}, ++ {1200, 900} +}; + +static int @@ -1201,8 +1224,8 @@ Index: src/via_panel.c +} Index: src/via_id.h =================================================================== ---- src/via_id.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_id.h (.../trunk) (revision 758) +--- src/via_id.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_id.h (.../trunk) (revision 766) @@ -37,6 +37,8 @@ VIA_P4M900, VIA_CX700, @@ -1223,8 +1246,8 @@ Index: src/via_id.h * the CLE266, often labelled Ax and Cx. The dividing line seems to be Index: src/via_video.c =================================================================== ---- src/via_video.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_video.c (.../trunk) (revision 758) +--- src/via_video.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_video.c (.../trunk) (revision 766) @@ -112,11 +112,7 @@ static int viaSetPortAttribute(ScrnInfoPtr, Atom, INT32, pointer); static int viaPutImage(ScrnInfoPtr, short, short, short, short, short, short, @@ -1418,7 +1441,7 @@ Index: src/via_video.c Index: src/via_lvds.c =================================================================== --- src/via_lvds.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_lvds.c (.../trunk) (revision 758) ++++ src/via_lvds.c (.../trunk) (revision 766) @@ -0,0 +1,117 @@ +/* + * Copyright 2007 The Openchrome Project [openchrome.org] @@ -1539,8 +1562,8 @@ Index: src/via_lvds.c +} Index: src/via_mode.c =================================================================== ---- src/via_mode.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_mode.c (.../trunk) (revision 758) +--- src/via_mode.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_mode.c (.../trunk) (revision 766) @@ -1,4 +1,5 @@ /* + * Copyright 2005-2007 The Openchrome Project [openchrome.org] @@ -1674,7 +1697,7 @@ Index: src/via_mode.c } #ifdef HAVE_DEBUG -@@ -347,24 +436,30 @@ +@@ -347,24 +436,33 @@ " Initialised register: 0x%02x\n", VIAGetActiveDisplay(pScrn))); @@ -1697,9 +1720,12 @@ Index: src/via_mode.c if (pBIOSInfo->CrtPresent) pBIOSInfo->CrtActive = TRUE; + ++#if 0 ++ # FIXME : DFP must be activated with the ActiveDevice option + /* DFP */ + if (pBIOSInfo->DfpPresent) + pBIOSInfo->DfpActive = TRUE; ++#endif + } else { if (pVia->ActiveDevice & VIA_DEVICE_LCD) { @@ -1709,7 +1735,7 @@ Index: src/via_mode.c else xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Unable to activate" " panel: no panel is present.\n"); -@@ -377,7 +472,7 @@ +@@ -377,7 +475,7 @@ else if (pBIOSInfo->TVOutput == TVOUTPUT_NONE) xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Unable to activate" " TV encoder: no cable attached.\n"); @@ -1718,7 +1744,7 @@ Index: src/via_mode.c xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Unable to activate" " TV encoder and panel simultaneously. Not using" " TV encoder.\n"); -@@ -385,221 +480,118 @@ +@@ -385,221 +483,118 @@ pBIOSInfo->TVActive = TRUE; } @@ -1990,7 +2016,7 @@ Index: src/via_mode.c } /* -@@ -656,7 +648,7 @@ +@@ -656,7 +651,7 @@ /* * @@ -1999,7 +2025,7 @@ Index: src/via_mode.c * pBIOSInfo->PanelIndex is the index to lcdTable. * */ -@@ -670,9 +662,9 @@ +@@ -670,9 +665,9 @@ pBIOSInfo->PanelIndex = VIA_BIOS_NUM_PANEL; @@ -2011,7 +2037,7 @@ Index: src/via_mode.c xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "ViaPanelGetIndex: PanelSize not set.\n"); return FALSE; -@@ -692,12 +684,14 @@ +@@ -692,12 +687,14 @@ return FALSE; } @@ -2028,7 +2054,7 @@ Index: src/via_mode.c if (ViaResolutionTable[i].Index == VIA_RES_INVALID) { xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaPanelGetIndex: Unable" -@@ -712,8 +706,11 @@ +@@ -712,8 +709,11 @@ return FALSE; } @@ -2042,7 +2068,7 @@ Index: src/via_mode.c int modeNum, tmp; modeNum = ViaGetVesaMode(pScrn, mode); -@@ -736,6 +733,7 @@ +@@ -736,6 +736,7 @@ " to match given mode with this PanelSize.\n"); return FALSE; } @@ -2050,7 +2076,7 @@ Index: src/via_mode.c xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaPanelGetIndex: Unable" " to match PanelSize with an lcdTable entry.\n"); -@@ -743,6 +741,53 @@ +@@ -743,6 +744,53 @@ } /* @@ -2104,7 +2130,7 @@ Index: src/via_mode.c * Stolen from xf86Config.c's addDefaultModes */ static void -@@ -764,6 +809,7 @@ +@@ -764,6 +812,7 @@ mode->prev = NULL; } last = mode; @@ -2112,7 +2138,7 @@ Index: src/via_mode.c } monitorp->Last = last; } -@@ -778,7 +824,7 @@ +@@ -778,7 +827,7 @@ DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "ViaModesAttach\n")); @@ -2121,7 +2147,7 @@ Index: src/via_mode.c ViaModesAttachHelper(pScrn, monitorp, ViaPanelModes); if (pBIOSInfo->TVActive && pBIOSInfo->TVModes) ViaModesAttachHelper(pScrn, monitorp, pBIOSInfo->TVModes); -@@ -815,155 +861,12 @@ +@@ -815,155 +864,12 @@ } } @@ -2279,7 +2305,7 @@ Index: src/via_mode.c ModeStatus ViaValidMode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags) { -@@ -982,27 +885,57 @@ +@@ -982,27 +888,57 @@ if (mode->Flags & V_INTERLACE) return MODE_NO_INTERLACE; @@ -2353,7 +2379,7 @@ Index: src/via_mode.c temp = mode->CrtcHDisplay * mode->CrtcVDisplay * mode->VRefresh * (pScrn->bitsPerPixel >> 3); if (pBIOSInfo->Bandwidth < temp) { -@@ -1037,54 +970,71 @@ +@@ -1037,57 +973,81 @@ hwp->writeMiscOut(hwp, data | 0x0C); } @@ -2399,7 +2425,18 @@ Index: src/via_mode.c + hwp->writeSeq(hwp, probase+1, ((dm >> 8) & 0x03) | (dr << 2) | ((dtz & 1) << 7)); + hwp->writeSeq(hwp, probase+2, (dn & 0x7f) | ((dtz & 2) << 6)); } ++} ++/* ++ * ++ */ ++static void ++ViaSetPrimaryDotclock(ScrnInfoPtr pScrn, CARD32 clock) ++{ ++ vgaHWPtr hwp = VGAHWPTR(pScrn); ++ ++ ViaSetDotclock(pScrn, clock, 0x46, 0x44); ++ ViaSeqMask(hwp, 0x40, 0x02, 0x02); ViaSeqMask(hwp, 0x40, 0x00, 0x02); } @@ -2409,25 +2446,15 @@ Index: src/via_mode.c * */ static void -+ViaSetPrimaryDotclock(ScrnInfoPtr pScrn, CARD32 clock) -+{ -+ ViaSetDotclock(pScrn, clock, 0x46, 0x44); -+} -+ -+/* -+ * -+ */ -+static void ViaSetSecondaryDotclock(ScrnInfoPtr pScrn, CARD32 clock) { -- vgaHWPtr hwp = VGAHWPTR(pScrn); + vgaHWPtr hwp = VGAHWPTR(pScrn); - VIAPtr pVia = VIAPTR(pScrn); -+ ViaSetDotclock(pScrn, clock, 0x44, 0x4A); -+} - DEBUG(xf86DrvMsg(hwp->pScrn->scrnIndex, X_INFO, - "ViaSetSecondaryDotclock to 0x%06x\n", (unsigned)clock)); -- ++ ViaSetDotclock(pScrn, clock, 0x44, 0x4A); + - if ((pVia->Chipset == VIA_CLE266) || (pVia->Chipset == VIA_KM400)) { - hwp->writeSeq(hwp, 0x44, clock >> 8); - hwp->writeSeq(hwp, 0x45, clock & 0xFF); @@ -2437,9 +2464,11 @@ Index: src/via_mode.c - hwp->writeSeq(hwp, 0x4C, clock & 0xFF); - } - -- ViaSeqMask(hwp, 0x40, 0x04, 0x04); -- ViaSeqMask(hwp, 0x40, 0x00, 0x04); -+/* + ViaSeqMask(hwp, 0x40, 0x04, 0x04); + ViaSeqMask(hwp, 0x40, 0x00, 0x04); + } + + /* + * + */ +static void @@ -2447,10 +2476,13 @@ Index: src/via_mode.c +{ + /* Does the non-pro chip have an ECK clock ? */ + ViaSetDotclock(pScrn, clock, 0, 0x47); - } - - /* -@@ -1104,7 +1054,7 @@ ++} ++ ++/* + * Broken, only does native mode decently. I (Luc) personally broke this. + */ + static void +@@ -1104,7 +1064,7 @@ DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIASetLCDMode\n")); @@ -2459,7 +2491,7 @@ Index: src/via_mode.c hwp->writeCrtc(hwp, 0x89, 0x07); /* LCD Expand Mode Y Scale Flag */ -@@ -1165,7 +1115,7 @@ +@@ -1165,7 +1125,7 @@ case VIA_RES_1280X768: case VIA_RES_1280X960: case VIA_RES_1280X1024: @@ -2468,7 +2500,7 @@ Index: src/via_mode.c resIdx = VIA_RES_INVALID; else resIdx = 4; -@@ -1317,261 +1267,6 @@ +@@ -1317,261 +1277,6 @@ } } @@ -2730,7 +2762,7 @@ Index: src/via_mode.c static CARD32 ViaComputeDotClock(unsigned clock) { -@@ -1609,15 +1304,16 @@ +@@ -1609,15 +1314,16 @@ { double fvco, fout, fref, err, minErr; CARD32 dr = 0, dn, dm, maxdm, maxdn; @@ -2751,7 +2783,7 @@ Index: src/via_mode.c do { fvco = fout * (1 << dr); -@@ -1628,30 +1324,31 @@ +@@ -1628,30 +1334,31 @@ } if (clock < 30000) @@ -2795,7 +2827,7 @@ Index: src/via_mode.c } /* -@@ -1681,7 +1378,7 @@ +@@ -1681,7 +1388,7 @@ } else { for (i = 0; ViaDotClocks[i].DotClock; i++) if (ViaDotClocks[i].DotClock == mode->Clock) @@ -2804,7 +2836,7 @@ Index: src/via_mode.c return ViaComputeProDotClock(mode->Clock); } -@@ -1692,13 +1389,14 @@ +@@ -1692,13 +1399,14 @@ * */ void @@ -2820,7 +2852,7 @@ Index: src/via_mode.c /* Turn off Screen */ ViaCrtcMask(hwp, 0x17, 0x00, 0x80); -@@ -1709,7 +1407,8 @@ +@@ -1709,7 +1417,8 @@ hwp->writeCrtc(hwp, 0x6C, 0x00); hwp->writeCrtc(hwp, 0x93, 0x00); @@ -2830,7 +2862,7 @@ Index: src/via_mode.c pBIOSInfo->Clock = ViaModeDotClockTranslate(pScrn, mode); pBIOSInfo->ClockExternal = FALSE; -@@ -1721,7 +1420,7 @@ +@@ -1721,7 +1430,7 @@ else ViaSeqMask(hwp, 0x16, 0x00, 0x40); @@ -2839,7 +2871,7 @@ Index: src/via_mode.c VIASetLCDMode(pScrn, mode); ViaLCDPower(pScrn, TRUE); } else if (pBIOSInfo->PanelPresent) -@@ -1765,192 +1464,23 @@ +@@ -1765,192 +1474,23 @@ hwp->disablePalette(hwp); } @@ -3035,7 +3067,7 @@ Index: src/via_mode.c if (pBIOSInfo->TVActive) ViaTVSetMode(pScrn, mode); -@@ -1959,7 +1489,7 @@ +@@ -1959,7 +1499,7 @@ if (!(pVia->Chipset == VIA_CLE266 && pVia->ChipRev == 0x02)) ViaCrtcMask(hwp, 0x6C, 0x00, 0x1E); @@ -3044,7 +3076,7 @@ Index: src/via_mode.c && (pBIOSInfo->PanelIndex != VIA_BIOS_NUM_PANEL)) { pBIOSInfo->SetDVI = TRUE; VIASetLCDMode(pScrn, mode); -@@ -2017,9 +1547,12 @@ +@@ -2017,9 +1557,12 @@ else ViaCrtcMask(hwp, 0x6A, 0x00, 0x08); @@ -3058,7 +3090,7 @@ Index: src/via_mode.c for (i = 0; i < NumPowerOn; i++) { if (lcdTable[pBIOSInfo->PanelIndex].powerSeq == powerOn[i].powerSeq) -@@ -2038,3 +1571,137 @@ +@@ -2038,3 +1581,140 @@ ViaLCDPowerSequence(hwp, powerOff[i]); usleep(1); } @@ -3100,6 +3132,9 @@ Index: src/via_mode.c + pBIOSInfo->Clock = ViaModeDotClockTranslate(pScrn, mode); + pBIOSInfo->ClockExternal = FALSE; + ++ /* Enable MMIO & PCI burst (1 wait state) */ ++ ViaSeqMask(hwp, 0x1A, 0x06, 0x06); ++ + ViaSetPrimaryFIFO(pScrn, mode); + + ViaSetPrimaryDotclock(pScrn, pBIOSInfo->Clock); @@ -3198,8 +3233,8 @@ Index: src/via_mode.c +} Index: src/via_mode.h =================================================================== ---- src/via_mode.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_mode.h (.../trunk) (revision 758) +--- src/via_mode.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_mode.h (.../trunk) (revision 766) @@ -32,10 +32,19 @@ */ #define VIA_BW_MIN 74000000 /* > 640x480 at 60Hz@32bpp */ @@ -3222,7 +3257,7 @@ Index: src/via_mode.h /* * simple lookup table for dotclocks * -@@ -43,51 +52,51 @@ +@@ -43,51 +52,52 @@ static struct ViaDotClock { int DotClock; CARD16 UniChrome; @@ -3288,6 +3323,7 @@ Index: src/via_mode.h + { 49500, 0xC353, /* 0xa48c04 */ { 3, 3, 5, 138 } }, + { 50000, 0xC354, /* 0x368c00 */ { 1, 3, 2, 56 } }, + { 56300, 0x4F76, /* 0x3d8c00 */ { 1, 3, 2, 63 } }, ++ { 57275, 0, /* 0x3e8c00 */ { 1, 3, 5, 157 } }, /* For XO 1.5 no need for a unichrome clock */ + { 57284, 0x4E70, /* 0x3e8c00 */ { 1, 3, 2, 64 } }, + { 64995, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, + { 65000, 0x0D3B, /* 0x6b8c01 */ { 1, 3, 3, 109 } }, /* Slightly unstable on PM800 */ @@ -3318,7 +3354,7 @@ Index: src/via_mode.h }; /* -@@ -113,20 +122,27 @@ +@@ -113,20 +123,28 @@ static DisplayModeRec ViaPanelModes[] = { { MODEPREFIX("640x480"), 25312, 640, 656, 752, 800, 0, 480, 489, 491, 525, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX }, @@ -3337,6 +3373,7 @@ Index: src/via_mode.h - { MODEPREFIX("1600x1200"), 161793, 1600, 1664, 1856, 2160, 0, 1200, 1200, 1203, 1250, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, { MODEPREFIX("1280x768"), 81135, 1280, 1328, 1440, 1688, 0, 768, 770, 776, 802, 0, V_PHSYNC | V_NVSYNC, MODESUFFIX }, + { MODEPREFIX("1280x720"), 74600, 1280, 1341, 1474, 1688, 0, 720, 721, 724, 746, 0, V_NHSYNC | V_PVSYNC, MODESUFFIX }, ++ { MODEPREFIX("1200x900"), 57275, 1200, 1208, 1216, 1240, 0, 900, 905, 908, 912, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX }, { MODEPREFIX("1280x960"), 108280, 1280, 1376, 1488, 1800, 0, 960, 960, 963, 1000, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, - { MODEPREFIX("848x480"), 33750, 848, 864, 976, 1088, 0, 480, 485, 493, 517, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, + { MODEPREFIX("1280x1024"), 108280, 1280, 1328, 1440, 1688, 0, 1024, 1024, 1027, 1066, 0, V_PHSYNC | V_PVSYNC, MODESUFFIX }, @@ -3354,19 +3391,41 @@ Index: src/via_mode.h { MODEPREFIX(NULL), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, MODESUFFIX }, }; -@@ -182,6 +198,7 @@ +@@ -152,6 +170,7 @@ + #define VIA_RES_1280X720 19 + #define VIA_RES_1920X1080 20 + #define VIA_RES_1366X768 22 ++#define VIA_RES_1200X900 23 + #define VIA_RES_INVALID 0xFF + + /* +@@ -182,6 +201,8 @@ {VIA_RES_1024X512, VIA_PANEL_INVALID, 1024, 512}, {VIA_RES_856X480, VIA_PANEL_INVALID, 856, 480}, {VIA_RES_1024X576, VIA_PANEL_INVALID, 1024, 576}, + {VIA_RES_800X480, VIA_PANEL8X4, 800, 480}, ++ {VIA_RES_1200X900, VIA_PANEL12X9, 1200, 900}, {VIA_RES_INVALID, VIA_PANEL_INVALID, 0, 0} }; Index: src/via_driver.c =================================================================== ---- src/via_driver.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_driver.c (.../trunk) (revision 758) -@@ -73,6 +73,7 @@ +--- src/via_driver.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_driver.c (.../trunk) (revision 766) +@@ -33,8 +33,12 @@ + #include "shadowfb.h" + + #include "globals.h" ++#ifdef HAVE_XEXTPROTO_71 ++#include ++#else + #define DPMS_SERVER + #include ++#endif + + #include "svnversion.h" + +@@ -73,6 +77,7 @@ return via_pci_device(&bridge_match); } @@ -3374,7 +3433,7 @@ Index: src/via_driver.c viaPciDeviceVga(void) { static const struct pci_slot_match bridge_match = { -@@ -126,6 +127,8 @@ +@@ -126,6 +131,8 @@ VIA_DEVICE_MATCH (PCI_CHIP_VT3364, 0 ), VIA_DEVICE_MATCH (PCI_CHIP_VT3324, 0 ), VIA_DEVICE_MATCH (PCI_CHIP_VT3327, 0 ), @@ -3383,7 +3442,7 @@ Index: src/via_driver.c { 0, 0, 0 }, }; -@@ -161,6 +164,8 @@ +@@ -161,6 +168,8 @@ {VIA_P4M900, "P4M900/VN896/CN896"}, {VIA_CX700, "CX700/VX700"}, {VIA_P4M890, "P4M890"}, @@ -3392,7 +3451,7 @@ Index: src/via_driver.c {-1, NULL } }; -@@ -175,6 +180,8 @@ +@@ -175,6 +184,8 @@ {VIA_P4M900, PCI_CHIP_VT3364, RES_SHARED_VGA}, {VIA_CX700, PCI_CHIP_VT3324, RES_SHARED_VGA}, {VIA_P4M890, PCI_CHIP_VT3327, RES_SHARED_VGA}, @@ -3401,7 +3460,7 @@ Index: src/via_driver.c {-1, -1, RES_UNDEFINED} }; -@@ -189,11 +196,9 @@ +@@ -189,11 +200,9 @@ #endif OPTION_VBEMODES, OPTION_NOACCEL, @@ -3413,7 +3472,7 @@ Index: src/via_driver.c OPTION_SWCURSOR, OPTION_SHADOW_FB, OPTION_ROTATE, -@@ -227,11 +232,9 @@ +@@ -227,11 +236,9 @@ #endif {OPTION_VBEMODES, "VBEModes", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_NOACCEL, "NoAccel", OPTV_BOOLEAN, {0}, FALSE}, @@ -3425,40 +3484,225 @@ Index: src/via_driver.c {OPTION_SWCURSOR, "SWCursor", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_SHADOW_FB, "ShadowFB", OPTV_BOOLEAN, {0}, FALSE}, {OPTION_ROTATE, "Rotate", OPTV_ANYSTR, {0}, FALSE}, -@@ -346,7 +349,6 @@ - NULL +@@ -259,190 +266,7 @@ }; + +-static const char *vgaHWSymbols[] = { +- "vgaHWGetHWRec", +- "vgaHWSetMmioFuncs", +- "vgaHWSetStdFuncs", +- "vgaHWGetIOBase", +- "vgaHWSave", +- "vgaHWProtect", +- "vgaHWRestore", +- "vgaHWMapMem", +- "vgaHWUnmapMem", +- "vgaHWInit", +- "vgaHWSaveScreen", +- "vgaHWLock", +- "vgaHWUnlock", +- "vgaHWFreeHWRec", +- "vgaHWGetIndex", /* Through VGAHWPTR() */ +- NULL +-}; +- +-static const char *ramdacSymbols[] = { +- "xf86InitCursor", +- "xf86CreateCursorInfoRec", +- "xf86DestroyCursorInfoRec", +- NULL +-}; +- +-static const char *vbeSymbols[] = { +- "vbeDoEDID", +- "VBEDPMSSet", +- "VBEExtendedInit", +- "vbeFree", +- "VBEGetVBEInfo", +- "VBEGetVBEMode", +- "VBEGetModePool", +- "VBEInit", +- "VBEPrintModes", +- "VBESaveRestore", +- "VBESetDisplayStart", +- "VBESetGetLogicalScanlineLength", +- "VBESetLogicalScanline", +- "VBESetModeNames", +- "VBESetModeParameters", +- "VBESetVBEMode", +- "VBEValidateModes", +- "xf86ExecX86int10", +- "xf86Int10AllocPages", +- "xf86Int10FreePages", +- NULL +-}; +- +-static const char *ddcSymbols[] = { +- "xf86PrintEDID", +- "xf86DoEDID_DDC2", +- "xf86SetDDCproperties", +- NULL +-}; +- +-static const char *i2cSymbols[] = { +- "xf86CreateI2CBusRec", +- "xf86I2CBusInit", +- "xf86CreateI2CDevRec", +- "xf86I2CDevInit", +- "xf86I2CWriteRead", +- "xf86I2CProbeAddress", +- "xf86DestroyI2CDevRec", +- "xf86I2CReadByte", +- "xf86I2CWriteByte", +- NULL +-}; +- +-static const char *xaaSymbols[] = { +-#ifdef X_HAVE_XAAGETROP +- "XAAGetCopyROP", +- "XAAGetCopyROP_PM", +- "XAAGetPatternROP", +-#else +- "XAACopyROP", +- "XAACopyROP_PM", +- "XAAPatternROP", +-#endif +- "XAACreateInfoRec", +- "XAADestroyInfoRec", +- "XAAInit", +- "XAAFillSolidRects", +- NULL +-}; +- -#ifdef VIA_HAVE_EXA - static const char *exaSymbols[] = { - "exaGetVersion", - "exaDriverInit", -@@ -356,14 +358,9 @@ - "exaGetPixmapPitch", - "exaGetPixmapOffset", - "exaWaitSync", +-static const char *exaSymbols[] = { +- "exaGetVersion", +- "exaDriverInit", +- "exaDriverFini", +- "exaOffscreenAlloc", +- "exaOffscreenFree", +- "exaGetPixmapPitch", +- "exaGetPixmapOffset", +- "exaWaitSync", -#if (EXA_VERSION_MAJOR >= 2) - "exaDriverAlloc", +- "exaDriverAlloc", -#else - "exaGetVersion", -#endif - NULL - }; +- NULL +-}; -#endif +- +-static const char *shadowSymbols[] = { +- "ShadowFBInit", +- NULL +-}; +- +-#ifdef USE_FB +-static const char *fbSymbols[] = { +- "fbScreenInit", +- "fbPictureInit", +- NULL +-}; +-#else +-static const char *cfbSymbols[] = { +- "cfbScreenInit", +- "cfb16ScreenInit", +- "cfb24ScreenInit", +- "cfb24_32ScreenInit", +- "cfb32ScreenInit", +- "cfb16BresS", +- "cfb24BresS", +- NULL +-}; +-#endif +- + #ifdef XFree86LOADER +-#ifdef XF86DRI +-static const char *drmSymbols[] = { +- "drmAddBufs", +- "drmAddMap", +- "drmAgpAcquire", +- "drmAgpAlloc", +- "drmAgpBase", +- "drmAgpBind", +- "drmAgpDeviceId", +- "drmAgpEnable", +- "drmAgpFree", +- "drmAgpGetMode", +- "drmAgpRelease", +- "drmAgpVendorId", +- "drmCtlInstHandler", +- "drmCtlUninstHandler", +- "drmCommandNone", +- "drmCommandWrite", +- "drmCommandWriteRead", +- "drmFreeVersion", +- "drmGetInterruptFromBusID", +- "drmGetLibVersion", +- "drmGetVersion", +- "drmMap", +- "drmMapBufs", +- "drmUnmap", +- "drmUnmapBufs", +- "drmAgpUnbind", +- "drmRmMap", +- "drmCreateContext", +- "drmAuthMagic", +- "drmDestroyContext", +- "drmSetContextFlags", +- NULL +-}; +- +-static const char *driSymbols[] = { +- "DRICloseScreen", +- "DRICreateInfoRec", +- "DRIDestroyInfoRec", +- "DRIFinishScreenInit", +- "DRIGetSAREAPrivate", +- "DRILock", +- "DRIQueryVersion", +- "DRIScreenInit", +- "DRIUnlock", +- "DRIOpenConnection", +- "DRICloseConnection", +- "GlxSetVisualConfigs", +- NULL +-}; +-#endif +- + static MODULESETUPPROTO(VIASetup); - static const char *shadowSymbols[] = { - "ShadowFBInit", -@@ -486,9 +483,7 @@ + static XF86ModuleVersionInfo VIAVersRec = { +@@ -478,26 +302,6 @@ + 0 #endif - ramdacSymbols, - xaaSymbols, + ); +- LoaderRefSymLists(vgaHWSymbols, +-#ifdef USE_FB +- fbSymbols, +-#else +- cfbSymbols, +-#endif +- ramdacSymbols, +- xaaSymbols, -#ifdef VIA_HAVE_EXA - exaSymbols, +- exaSymbols, -#endif - shadowSymbols, - vbeSymbols, - i2cSymbols, -@@ -513,34 +508,97 @@ +- shadowSymbols, +- vbeSymbols, +- i2cSymbols, +- ddcSymbols, +-#ifdef XF86DRI +- drmSymbols, +- driSymbols, +-#endif +- NULL); + + return (pointer) 1; + } else { +@@ -513,34 +317,97 @@ static Bool VIAGetRec(ScrnInfoPtr pScrn) { @@ -3563,7 +3807,15 @@ Index: src/via_driver.c if (((VIARec *) (pScrn->driverPrivate))->pBIOSInfo->TVI2CDev) xf86DestroyI2CDevRec((((VIARec *) (pScrn->driverPrivate))->pBIOSInfo-> TVI2CDev), TRUE); -@@ -787,10 +845,8 @@ +@@ -771,7 +638,6 @@ + vbeInfoPtr pVbe; + + if (xf86LoadSubModule(pScrn, "vbe")) { +- xf86LoaderReqSymLists(vbeSymbols, NULL); + pVbe = VBEInit(NULL, index); + ConfiguredMonitor = vbeDoEDID(pVbe, NULL); + vbeFree(pVbe); +@@ -787,10 +653,8 @@ pVia->shadowFB = FALSE; pVia->NoAccel = FALSE; @@ -3574,7 +3826,7 @@ Index: src/via_driver.c pVia->hwcursor = TRUE; pVia->VQEnable = TRUE; pVia->DRIIrqEnable = TRUE; -@@ -813,6 +869,8 @@ +@@ -813,6 +677,8 @@ pVia->swov.maxHInterp = 600; pVia->useLegacyVBE = TRUE; @@ -3583,7 +3835,7 @@ Index: src/via_driver.c switch (pVia->Chipset) { case VIA_KM400: /* IRQ is not broken on KM400A, but testing (pVia->ChipRev < 0x80) -@@ -820,19 +878,18 @@ +@@ -820,19 +686,18 @@ pVia->DRIIrqEnable = FALSE; break; case VIA_K8M800: @@ -3604,7 +3856,7 @@ Index: src/via_driver.c break; case VIA_P4M900: pVia->VideoEngine = VIDEO_ENGINE_CME; -@@ -840,16 +897,26 @@ +@@ -840,16 +705,26 @@ pVia->useLegacyVBE = FALSE; /* FIXME: this needs to be tested */ pVia->dmaXV = FALSE; @@ -3631,7 +3883,14 @@ Index: src/via_driver.c } return TRUE; -@@ -875,6 +942,7 @@ +@@ -868,13 +743,13 @@ + + #ifndef USE_FB + char *mod = NULL; +- const char *reqSym = NULL; + #endif + vgaHWPtr hwp; + int i, bMemSize = 0; #ifdef XSERVER_LIBPCIACCESS struct pci_device *bridge = via_host_bridge(); @@ -3639,7 +3898,15 @@ Index: src/via_driver.c #endif DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAPreInit\n")); -@@ -1067,9 +1135,8 @@ +@@ -888,7 +763,6 @@ + if (!xf86LoadSubModule(pScrn, "vgahw")) + return FALSE; + +- xf86LoaderReqSymLists(vgaHWSymbols, NULL); + if (!vgaHWGetHWRec(pScrn)) + return FALSE; + +@@ -1067,9 +941,8 @@ } else { /* Read PCI bus 0, dev 0, function 0, index 0xF6 to get chip revision */ #ifdef XSERVER_LIBPCIACCESS @@ -3651,7 +3918,7 @@ Index: src/via_driver.c #else pVia->ChipRev = pciReadByte(pciTag(0, 0, 0), 0xF6); #endif -@@ -1090,6 +1157,8 @@ +@@ -1090,6 +963,8 @@ struct pci_device *vgaDevice = viaPciDeviceVga(); #endif @@ -3660,7 +3927,7 @@ Index: src/via_driver.c switch (pVia->Chipset) { case VIA_CLE266: case VIA_KM400: -@@ -1114,6 +1183,8 @@ +@@ -1114,6 +989,8 @@ case VIA_P4M890: case VIA_P4M900: case VIA_CX700: @@ -3669,7 +3936,7 @@ Index: src/via_driver.c #ifdef XSERVER_LIBPCIACCESS pci_device_cfg_read_u8(vgaDevice, &videoRam, 0xA1); #else -@@ -1139,7 +1210,7 @@ +@@ -1139,7 +1016,7 @@ } else { from = X_DEFAULT; xf86DrvMsg(pScrn->scrnIndex, X_WARNING, @@ -3678,7 +3945,7 @@ Index: src/via_driver.c } } -@@ -1202,7 +1273,6 @@ +@@ -1202,7 +1079,6 @@ "Valid options are \"CW\" or \"CCW\".\n"); } } @@ -3686,7 +3953,7 @@ Index: src/via_driver.c if (!pVia->NoAccel) { from = X_DEFAULT; if ((s = (char *)xf86GetOptValString(VIAOptions, OPTION_ACCELMETHOD))) { -@@ -1235,13 +1305,13 @@ +@@ -1235,13 +1111,13 @@ pVia->exaScratchSize); } } @@ -3702,7 +3969,7 @@ Index: src/via_driver.c pVia->hwcursor = !pVia->hwcursor; from = X_CONFIG; } -@@ -1346,8 +1416,8 @@ +@@ -1346,8 +1222,8 @@ pVia->ActiveDevice |= VIA_DEVICE_CRT; if (strstr(s, "LCD")) pVia->ActiveDevice |= VIA_DEVICE_LCD; @@ -3713,7 +3980,7 @@ Index: src/via_driver.c if (strstr(s, "TV")) pVia->ActiveDevice |= VIA_DEVICE_TV; } -@@ -1375,45 +1445,24 @@ +@@ -1375,45 +1251,24 @@ xf86DrvMsg(pScrn->scrnIndex, from, "DVI Center is %s.\n", pBIOSInfo->Center ? "enabled" : "disabled"); @@ -3768,7 +4035,7 @@ Index: src/via_driver.c /* Force the use of the Panel? */ pBIOSInfo->ForcePanel = FALSE; from = xf86GetOptValBool(VIAOptions, OPTION_FORCEPANEL, -@@ -1504,7 +1553,6 @@ +@@ -1504,7 +1359,6 @@ VIAFreeRec(pScrn); return FALSE; } @@ -3776,7 +4043,23 @@ Index: src/via_driver.c #ifdef HAVE_DEBUG //pVia->PrintVGARegs = FALSE; -@@ -1607,18 +1655,21 @@ +@@ -1581,7 +1435,6 @@ + VIAFreeRec(pScrn); + return FALSE; + } else { +- xf86LoaderReqSymLists(i2cSymbols, NULL); + ViaI2CInit(pScrn); + } + +@@ -1589,7 +1442,6 @@ + VIAFreeRec(pScrn); + return FALSE; + } else { +- xf86LoaderReqSymLists(ddcSymbols, NULL); + + if (pVia->pI2CBus1) { + pVia->DDC1 = xf86DoEDID_DDC2(pScrn->scrnIndex, pVia->pI2CBus1); +@@ -1607,18 +1459,21 @@ return FALSE; } @@ -3807,7 +4090,42 @@ Index: src/via_driver.c "Using VBE to set modes to work around this.\n"); pVia->useVBEModes = TRUE; } -@@ -1755,9 +1806,7 @@ +@@ -1628,7 +1483,6 @@ + /* VBE doesn't properly initialise int10 itself. */ + if (xf86LoadSubModule(pScrn, "int10") + && xf86LoadSubModule(pScrn, "vbe")) { +- xf86LoaderReqSymLists(vbeSymbols, NULL); + pVia->pVbe = VBEExtendedInit(NULL, pVia->EntityIndex, + SET_BIOS_SCRATCH | + RESTORE_BIOS_SCRATCH); +@@ -1727,22 +1581,18 @@ + return FALSE; + } + +- xf86LoaderReqSymLists(fbSymbols, NULL); + + #else + /* Load bpp-specific modules. */ + switch (pScrn->bitsPerPixel) { + case 8: + mod = "cfb"; +- reqSym = "cfbScreenInit"; + break; + case 16: + mod = "cfb16"; +- reqSym = "cfb16ScreenInit"; + break; + case 32: + mod = "cfb32"; +- reqSym = "cfb32ScreenInit"; + break; + } + +@@ -1751,13 +1601,10 @@ + return FALSE; + } + +- xf86LoaderReqSymbols(reqSym, NULL); #endif if (!pVia->NoAccel) { @@ -3817,7 +4135,7 @@ Index: src/via_driver.c XF86ModReqInfo req; int errmaj, errmin; -@@ -1770,16 +1819,8 @@ +@@ -1770,21 +1617,11 @@ VIAFreeRec(pScrn); return FALSE; } @@ -3828,13 +4146,34 @@ Index: src/via_driver.c - return FALSE; - } -#endif /* EXA_VERSION */ - xf86LoaderReqSymLists(exaSymbols, NULL); +- xf86LoaderReqSymLists(exaSymbols, NULL); } -#endif /* VIA_HAVE_EXA */ if (!xf86LoadSubModule(pScrn, "xaa")) { VIAFreeRec(pScrn); return FALSE; -@@ -1836,7 +1877,7 @@ + } +- xf86LoaderReqSymLists(xaaSymbols, NULL); + } + + if (pVia->hwcursor) { +@@ -1792,7 +1629,6 @@ + VIAFreeRec(pScrn); + return FALSE; + } +- xf86LoaderReqSymLists(ramdacSymbols, NULL); + } + + if (pVia->shadowFB) { +@@ -1800,7 +1636,6 @@ + VIAFreeRec(pScrn); + return FALSE; + } +- xf86LoaderReqSymLists(shadowSymbols, NULL); + } + + VIAUnmapMem(pScrn); +@@ -1836,7 +1671,7 @@ /* A patch for APM suspend/resume, when HWCursor has garbage. */ if (pVia->hwcursor) @@ -3843,7 +4182,7 @@ Index: src/via_driver.c /* Restore video status. */ if (!pVia->IsSecondary) -@@ -1890,8 +1931,16 @@ +@@ -1890,8 +1725,16 @@ viaAccelSync(pScrn); /* A soft reset helps to avoid a 3D hang on VT switch. */ @@ -3862,7 +4201,7 @@ Index: src/via_driver.c #ifdef XF86DRI if (pVia->directRenderingEnabled) { -@@ -1908,7 +1957,7 @@ +@@ -1908,7 +1751,7 @@ viaSaveVideo(pScrn); if (pVia->hwcursor) @@ -3871,7 +4210,7 @@ Index: src/via_driver.c if (pVia->pVbe && pVia->vbeSR) ViaVbeSaveRestore(pScrn, MODE_RESTORE); -@@ -1918,7 +1967,40 @@ +@@ -1918,7 +1761,40 @@ vgaHWLock(hwp); } @@ -3912,7 +4251,7 @@ Index: src/via_driver.c static void VIASave(ScrnInfoPtr pScrn) { -@@ -2009,6 +2091,7 @@ +@@ -2009,6 +1885,7 @@ Regs->CR35 = hwp->readCrtc(hwp, 0x35); Regs->CR36 = hwp->readCrtc(hwp, 0x36); @@ -3920,7 +4259,7 @@ Index: src/via_driver.c Regs->CR49 = hwp->readCrtc(hwp, 0x49); DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "TVSave...\n")); -@@ -2019,15 +2102,28 @@ +@@ -2019,15 +1896,28 @@ for (i = 0; i < 68; i++) Regs->CRTCRegs[i] = hwp->readCrtc(hwp, i + 0x50); @@ -3956,7 +4295,7 @@ Index: src/via_driver.c vgaHWProtect(pScrn, FALSE); } } -@@ -2055,6 +2151,8 @@ +@@ -2055,6 +1945,8 @@ hwp->writeCrtc(hwp, 0x6B, 0x00); hwp->writeCrtc(hwp, 0x6C, 0x00); @@ -3965,7 +4304,7 @@ Index: src/via_driver.c if (pBIOSInfo->TVI2CDev) ViaTVRestore(pScrn); -@@ -2118,22 +2216,36 @@ +@@ -2118,22 +2010,36 @@ hwp->writeCrtc(hwp, 0x35, Regs->CR35); hwp->writeCrtc(hwp, 0x36, Regs->CR36); @@ -4012,7 +4351,7 @@ Index: src/via_driver.c ViaLCDPower(pScrn, TRUE); ViaDisablePrimaryFIFO(pScrn); -@@ -2145,26 +2257,63 @@ +@@ -2145,26 +2051,63 @@ vgaHWProtect(pScrn, FALSE); } @@ -4065,26 +4404,26 @@ Index: src/via_driver.c VIAPtr pVia = VIAPTR(pScrn); #ifdef XSERVER_LIBPCIACCESS -+ pVia->MmioBase = pVia->PciInfo->regions[1].base_addr; - int err; -+#else -+ pVia->MmioBase = pVia->PciInfo->memBase[1]; - #endif - - DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAMapMMIO\n")); - +- int err; +-#endif +- +- DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAMapMMIO\n")); +- -#ifdef XSERVER_LIBPCIACCESS - pVia->FrameBufferBase = pVia->PciInfo->regions[0].base_addr; -- pVia->MmioBase = pVia->PciInfo->regions[1].base_addr; --#else + pVia->MmioBase = pVia->PciInfo->regions[1].base_addr; ++ int err; + #else - pVia->FrameBufferBase = pVia->PciInfo->memBase[0]; -- pVia->MmioBase = pVia->PciInfo->memBase[1]; --#endif -- + pVia->MmioBase = pVia->PciInfo->memBase[1]; + #endif + ++ DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAMapMMIO\n")); ++ xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "mapping MMIO @ 0x%lx with size 0x%x\n", pVia->MmioBase, VIA_MMIO_REGSIZE); -@@ -2196,8 +2345,7 @@ +@@ -2196,8 +2139,7 @@ err = pci_device_map_range(pVia->PciInfo, pVia->MmioBase + VIA_MMIO_BLTBASE, VIA_MMIO_BLTSIZE, @@ -4094,7 +4433,7 @@ Index: src/via_driver.c (void **)&pVia->BltBase); if (err) { -@@ -2215,7 +2363,7 @@ +@@ -2215,7 +2157,7 @@ if (!pVia->MapBase || !pVia->BltBase) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, @@ -4103,7 +4442,7 @@ Index: src/via_driver.c return FALSE; } -@@ -2238,14 +2386,15 @@ +@@ -2238,14 +2180,15 @@ hwp->writeMiscOut(hwp, val | 0x01); /* Unlock extended IO space. */ @@ -4125,7 +4464,7 @@ Index: src/via_driver.c vgaHWGetIOBase(hwp); } -@@ -2257,8 +2406,12 @@ +@@ -2257,8 +2200,12 @@ VIAMapFB(ScrnInfoPtr pScrn) { VIAPtr pVia = VIAPTR(pScrn); @@ -4138,7 +4477,7 @@ Index: src/via_driver.c #endif DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAMapFB\n")); -@@ -2298,7 +2451,8 @@ +@@ -2298,7 +2245,8 @@ #ifdef XSERVER_LIBPCIACCESS err = pci_device_map_range(pVia->PciInfo, pVia->FrameBufferBase, pVia->videoRambytes, @@ -4148,7 +4487,7 @@ Index: src/via_driver.c (void **)&pVia->FBBase); if (err) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, -@@ -2346,8 +2500,7 @@ +@@ -2346,8 +2294,7 @@ DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAUnmapMem\n")); @@ -4158,7 +4497,7 @@ Index: src/via_driver.c #ifdef XSERVER_LIBPCIACCESS if (pVia->MapBase) -@@ -2431,75 +2584,65 @@ +@@ -2431,75 +2378,65 @@ { vgaHWPtr hwp = VGAHWPTR(pScrn); VIAPtr pVia = VIAPTR(pScrn); @@ -4273,7 +4612,7 @@ Index: src/via_driver.c for (i = 0; i < numColors; i++) { index = indices[i]; hwp->writeDacWriteAddr(hwp, index); -@@ -2507,6 +2650,23 @@ +@@ -2507,6 +2444,23 @@ hwp->writeDacData(hwp, colors[index].green); hwp->writeDacData(hwp, colors[index].blue); } @@ -4297,7 +4636,7 @@ Index: src/via_driver.c } } -@@ -2543,6 +2703,7 @@ +@@ -2543,6 +2497,7 @@ } } else { vgaHWBlankScreen(pScrn, FALSE); @@ -4305,7 +4644,7 @@ Index: src/via_driver.c if (!VIAWriteMode(pScrn, pScrn->currentMode)) { vgaHWBlankScreen(pScrn, TRUE); return FALSE; -@@ -2623,7 +2784,8 @@ +@@ -2623,7 +2578,8 @@ DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "- SW cursor set up\n")); if (pVia->hwcursor) { @@ -4315,7 +4654,7 @@ Index: src/via_driver.c xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "Hardware cursor initialization failed\n"); } -@@ -2787,6 +2949,7 @@ +@@ -2787,6 +2743,7 @@ VIAWriteMode(ScrnInfoPtr pScrn, DisplayModePtr mode) { VIAPtr pVia = VIAPTR(pScrn); @@ -4323,7 +4662,7 @@ Index: src/via_driver.c DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "VIAWriteMode\n")); -@@ -2799,10 +2962,15 @@ +@@ -2799,10 +2756,15 @@ if (!vgaHWInit(pScrn, mode)) return FALSE; @@ -4343,7 +4682,7 @@ Index: src/via_driver.c } else { -@@ -2813,22 +2981,25 @@ +@@ -2813,22 +2775,25 @@ * to detect when the display is using the secondary head. * TODO: This should be enabled for other chipsets as well. */ @@ -4379,7 +4718,7 @@ Index: src/via_driver.c viaInitialize2DEngine(pScrn); } -@@ -2856,14 +3027,22 @@ +@@ -2856,14 +2821,22 @@ viaAccelSync(pScrn); /* A soft reset avoids a 3D hang after X restart. */ @@ -4406,7 +4745,7 @@ Index: src/via_driver.c } if (pVia->VQEnable) -@@ -2875,10 +3054,6 @@ +@@ -2875,10 +2848,6 @@ #endif viaExitAccel(pScreen); @@ -4417,19 +4756,11 @@ Index: src/via_driver.c if (pVia->ShadowPtr) { xfree(pVia->ShadowPtr); pVia->ShadowPtr = NULL; -@@ -2936,24 +3111,17 @@ +@@ -2936,24 +2905,17 @@ if (pVia->pVbe) { ViaVbeAdjustFrame(scrnIndex, x, y, flags); } else { -+ if (pVia->UseLegacyModeSwitch) { -+ if (!pVia->IsSecondary) -+ ViaFirstCRTCSetStartingAddress(pScrn, x, y); -+ else -+ ViaSecondCRTCSetStartingAddress(pScrn, x, y); -+ } else { -+ if (pVia->pBIOSInfo->FirstCRTC->IsActive) -+ ViaFirstCRTCSetStartingAddress(pScrn, x, y); - +- - Base = (y * pScrn->displayWidth + x) * (pScrn->bitsPerPixel / 8); - - /* Now program the start address registers. */ @@ -4438,7 +4769,12 @@ Index: src/via_driver.c - ViaCrtcMask(hwp, 0x62, (Base & 0x7F) << 1, 0xFE); - hwp->writeCrtc(hwp, 0x63, (Base & 0x7F80) >> 7); - hwp->writeCrtc(hwp, 0x64, (Base & 0x7F8000) >> 15); -- } else { ++ if (pVia->UseLegacyModeSwitch) { ++ if (!pVia->IsSecondary) ++ ViaFirstCRTCSetStartingAddress(pScrn, x, y); ++ else ++ ViaSecondCRTCSetStartingAddress(pScrn, x, y); + } else { - Base = Base >> 1; - hwp->writeCrtc(hwp, 0x0C, (Base & 0xFF00) >> 8); - hwp->writeCrtc(hwp, 0x0D, Base & 0xFF); @@ -4447,12 +4783,15 @@ Index: src/via_driver.c - /* The CLE266A doesn't have this implemented, it seems. -- Luc */ - ViaCrtcMask(hwp, 0x48, Base >> 24, 0x03); -#endif ++ if (pVia->pBIOSInfo->FirstCRTC->IsActive) ++ ViaFirstCRTCSetStartingAddress(pScrn, x, y); ++ + if (pVia->pBIOSInfo->SecondCRTC->IsActive) + ViaSecondCRTCSetStartingAddress(pScrn, x, y); } } -@@ -3003,52 +3171,65 @@ +@@ -3003,52 +2965,65 @@ vgaHWPtr hwp = VGAHWPTR(pScrn); VIAPtr pVia = VIAPTR(pScrn); VIABIOSInfoPtr pBIOSInfo = pVia->pBIOSInfo; @@ -4551,7 +4890,7 @@ Index: src/via_driver.c void VIAInitialize3DEngine(ScrnInfoPtr pScrn) { -@@ -3111,4 +3292,3 @@ +@@ -3111,4 +3086,3 @@ VIASETREG(VIA_REG_TRANSPACE, 0x11000000); VIASETREG(VIA_REG_TRANSPACE, 0x20000000); } @@ -4559,7 +4898,7 @@ Index: src/via_driver.c Index: src/via_crtc.c =================================================================== --- src/via_crtc.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_crtc.c (.../trunk) (revision 758) ++++ src/via_crtc.c (.../trunk) (revision 766) @@ -0,0 +1,664 @@ +/* + * Copyright 2005-2007 The Openchrome Project [openchrome.org] @@ -5227,8 +5566,8 @@ Index: src/via_crtc.c +} Index: src/via_swov.c =================================================================== ---- src/via_swov.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_swov.c (.../trunk) (revision 758) +--- src/via_swov.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_swov.c (.../trunk) (revision 766) @@ -95,7 +95,8 @@ pdwState = (CARD32 volatile *)(pVia->VidMapBase + (HQV_CONTROL + proReg)); @@ -5411,8 +5750,8 @@ Index: src/via_swov.c Index: src/via_driver.h =================================================================== ---- src/via_driver.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_driver.h (.../trunk) (revision 758) +--- src/via_driver.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_driver.h (.../trunk) (revision 766) @@ -65,6 +65,7 @@ #include "via_swov.h" #include "via_dmabuffer.h" @@ -5581,9 +5920,9 @@ Index: src/via_driver.h Bool viaInitAccel(ScreenPtr); Index: src/via_bios.h =================================================================== ---- src/via_bios.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_bios.h (.../trunk) (revision 758) -@@ -34,6 +34,14 @@ +--- src/via_bios.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_bios.h (.../trunk) (revision 766) +@@ -34,6 +34,15 @@ #define VIA_PANEL14X10 5 #define VIA_PANEL16X12 6 #define VIA_PANEL12X8 7 @@ -5595,10 +5934,11 @@ Index: src/via_bios.h +#define VIA_PANEL10X6 13 +#define VIA_PANEL14X9 14 +#define VIA_PANEL1280X720 15 ++#define VIA_PANEL12X9 16 #define VIA_PANEL_INVALID 255 #define TVTYPE_NONE 0x00 -@@ -90,6 +98,46 @@ +@@ -90,6 +99,46 @@ #define VIA_DI_12BIT 0x00 #define VIA_DI_24BIT 0x01 @@ -5645,7 +5985,7 @@ Index: src/via_bios.h typedef struct _VIABIOSINFO { int scrnIndex; -@@ -102,13 +150,12 @@ +@@ -102,13 +151,12 @@ CARD32 Bandwidth; /* available memory bandwidth */ /* Panel/LCD entries */ @@ -5661,7 +6001,7 @@ Index: src/via_bios.h Bool SetDVI; /* LCD Simultaneous Expand Mode HWCursor Y Scale */ Bool scaleY; -@@ -116,6 +163,20 @@ +@@ -116,6 +164,20 @@ int panelY; int resY; @@ -5682,7 +6022,7 @@ Index: src/via_bios.h /* TV entries */ int TVEncoder; int TVOutput; -@@ -156,18 +217,46 @@ +@@ -156,18 +218,46 @@ void ViaModesAttach(ScrnInfoPtr pScrn, MonPtr monitorp); CARD32 ViaGetMemoryBandwidth(ScrnInfoPtr pScrn); ModeStatus ViaValidMode(int scrnIndex, DisplayModePtr mode, Bool verbose, int flags); @@ -5733,7 +6073,7 @@ Index: src/via_bios.h /* in via_bandwidth.c */ void ViaSetPrimaryFIFO(ScrnInfoPtr pScrn, DisplayModePtr mode); void ViaSetSecondaryFIFO(ScrnInfoPtr pScrn, DisplayModePtr mode); -@@ -181,4 +270,13 @@ +@@ -181,4 +271,13 @@ I2CDevPtr ViaCH7xxxDetect(ScrnInfoPtr pScrn, I2CBusPtr pBus, CARD8 Address); void ViaCH7xxxInit(ScrnInfoPtr pScrn); @@ -5749,8 +6089,8 @@ Index: src/via_bios.h #endif /* _VIA_BIOS_H_ */ Index: src/via_bandwidth.c =================================================================== ---- src/via_bandwidth.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_bandwidth.c (.../trunk) (revision 758) +--- src/via_bandwidth.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_bandwidth.c (.../trunk) (revision 766) @@ -227,6 +227,10 @@ ViaSeqMask(hwp, 0x18, 0x00, 0x80); break; @@ -5809,7 +6149,7 @@ Index: src/via_bandwidth.c Index: src/via_display.c =================================================================== --- src/via_display.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_display.c (.../trunk) (revision 758) ++++ src/via_display.c (.../trunk) (revision 766) @@ -0,0 +1,145 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" @@ -5958,8 +6298,8 @@ Index: src/via_display.c + Index: src/via_regs.h =================================================================== ---- src/via_regs.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_regs.h (.../trunk) (revision 758) +--- src/via_regs.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_regs.h (.../trunk) (revision 766) @@ -42,7 +42,7 @@ #define VIA_MMIO_REGBASE 0x0 #define VIA_MMIO_VGABASE 0x8000 @@ -6069,8 +6409,8 @@ Index: src/via_regs.h #define VIA_GEC_NOOP 0x00000000 Index: src/via_accel.c =================================================================== ---- src/via_accel.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_accel.c (.../trunk) (revision 758) +--- src/via_accel.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_accel.c (.../trunk) (revision 766) @@ -1,5 +1,5 @@ /* - * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved. @@ -7011,8 +7351,8 @@ Index: src/via_accel.c ADVANCE_RING; Index: src/via_memory.c =================================================================== ---- src/via_memory.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_memory.c (.../trunk) (revision 758) +--- src/via_memory.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_memory.c (.../trunk) (revision 766) @@ -52,7 +52,6 @@ * 2 - DRM */ @@ -7075,8 +7415,8 @@ Index: src/via_memory.c long size = pVia->FBFreeEnd / pVia->Bpp - offset; Index: src/via_vbe.c =================================================================== ---- src/via_vbe.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_vbe.c (.../trunk) (revision 758) +--- src/via_vbe.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_vbe.c (.../trunk) (revision 766) @@ -95,7 +95,7 @@ /* Set Active Device and translate BIOS byte definition. */ if (pBIOSInfo->CrtActive) @@ -7106,8 +7446,8 @@ Index: src/via_vbe.c VBEDPMSSet(pVia->pVbe, mode); Index: src/via_cursor.c =================================================================== ---- src/via_cursor.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_cursor.c (.../trunk) (revision 758) +--- src/via_cursor.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_cursor.c (.../trunk) (revision 766) @@ -1,5 +1,6 @@ /* - * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved. @@ -7787,8 +8127,8 @@ Index: src/via_cursor.c } Index: src/via_xvmc.c =================================================================== ---- src/via_xvmc.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_xvmc.c (.../trunk) (revision 758) +--- src/via_xvmc.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_xvmc.c (.../trunk) (revision 766) @@ -114,11 +114,7 @@ static int viaXvMCInterceptPutImage(ScrnInfoPtr, short, short, short, short, short, short, short, short, int, @@ -7849,9 +8189,9 @@ Index: src/via_xvmc.c unsigned long Index: src/via_dri.c =================================================================== ---- src/via_dri.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_dri.c (.../trunk) (revision 758) -@@ -588,7 +588,16 @@ +--- src/via_dri.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_dri.c (.../trunk) (revision 766) +@@ -588,7 +588,17 @@ pDRIInfo = pVia->pDRIInfo; pDRIInfo->drmDriverName = VIAKernelDriverName; @@ -7860,6 +8200,7 @@ Index: src/via_dri.c + case VIA_K8M890: + case VIA_P4M900: + case VIA_VX800: ++ case VIA_VX855: + pDRIInfo->clientDriverName = "swrast"; + break; + default: @@ -7871,8 +8212,8 @@ Index: src/via_dri.c #ifdef XSERVER_LIBPCIACCESS Index: src/via_vt162x.h =================================================================== ---- src/via_vt162x.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_vt162x.h (.../trunk) (revision 758) +--- src/via_vt162x.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_vt162x.h (.../trunk) (revision 766) @@ -926,6 +926,23 @@ 0x0, 0x0, }, @@ -7899,8 +8240,8 @@ Index: src/via_vt162x.h { 0x03, 0x00, 0x10, 0x1f, 0x03, 0x00, 0x00, 0xc9, 0x4c, 0x11, 0x7c, 0x00, 0x56, 0x57, 0x07, 0xbf, Index: src/via.h =================================================================== ---- src/via.h (.../tags/release_0_2_903) (revision 758) -+++ src/via.h (.../trunk) (revision 758) +--- src/via.h (.../tags/release_0_2_903) (revision 766) ++++ src/via.h (.../trunk) (revision 766) @@ -327,6 +327,12 @@ #define VIDEO_FIFO_PRETHRESHOLD_VT3336 250 #define VIDEO_EXPIRE_NUM_VT3336 31 @@ -7946,8 +8287,8 @@ Index: src/via.h #define CHROMA_KEY_HIGH 0x00FFFFFF Index: src/via_priv.h =================================================================== ---- src/via_priv.h (.../tags/release_0_2_903) (revision 758) -+++ src/via_priv.h (.../trunk) (revision 758) +--- src/via_priv.h (.../tags/release_0_2_903) (revision 766) ++++ src/via_priv.h (.../trunk) (revision 766) @@ -29,9 +29,7 @@ #ifdef XF86DRI #include "via_drm.h" @@ -7971,7 +8312,7 @@ Index: src/via_priv.h Index: src/via_timing.c =================================================================== --- src/via_timing.c (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.c (.../trunk) (revision 758) ++++ src/via_timing.c (.../trunk) (revision 766) @@ -0,0 +1,398 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. @@ -8373,8 +8714,8 @@ Index: src/via_timing.c +} Index: src/Makefile.am =================================================================== ---- src/Makefile.am (.../tags/release_0_2_903) (revision 758) -+++ src/Makefile.am (.../trunk) (revision 758) +--- src/Makefile.am (.../tags/release_0_2_903) (revision 766) ++++ src/Makefile.am (.../trunk) (revision 766) @@ -43,23 +43,29 @@ via_ch7xxx.c \ via_ch7xxx.h \ @@ -8407,8 +8748,8 @@ Index: src/Makefile.am via_vgahw.h \ Index: src/via_dga.c =================================================================== ---- src/via_dga.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_dga.c (.../trunk) (revision 758) +--- src/via_dga.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_dga.c (.../trunk) (revision 766) @@ -248,7 +248,7 @@ pScrn->SwitchMode(index, pScrn->currentMode, 0); @@ -8429,8 +8770,8 @@ Index: src/via_dga.c pVia->DGAOldDisplayWidth = pScrn->displayWidth; Index: src/via_id.c =================================================================== ---- src/via_id.c (.../tags/release_0_2_903) (revision 758) -+++ src/via_id.c (.../trunk) (revision 758) +--- src/via_id.c (.../tags/release_0_2_903) (revision 766) ++++ src/via_id.c (.../trunk) (revision 766) @@ -87,10 +87,12 @@ {"Asustek K8V-MX", VIA_K8M800, 0x1043, 0x8129, VIA_DEVICE_CRT}, {"Mitac 8399", VIA_K8M800, 0x1071, 0x8399, VIA_DEVICE_CRT | VIA_DEVICE_LCD | VIA_DEVICE_TV}, /* aka "Pogolinux Konabook 3100" */ @@ -8516,7 +8857,7 @@ Index: src/via_id.c Index: src/via_timing.h =================================================================== --- src/via_timing.h (.../tags/release_0_2_903) (revision 0) -+++ src/via_timing.h (.../trunk) (revision 758) ++++ src/via_timing.h (.../trunk) (revision 766) @@ -0,0 +1,51 @@ +/* + * Copyright 2007-2008 Gabriel Mansi. Index: xorg-x11-drv-openchrome.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-drv-openchrome/devel/xorg-x11-drv-openchrome.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- xorg-x11-drv-openchrome.spec 27 Jul 2009 08:29:22 -0000 1.47 +++ xorg-x11-drv-openchrome.spec 31 Jul 2009 10:44:21 -0000 1.48 @@ -10,7 +10,7 @@ Summary: Xorg X11 openchrome video driver Name: xorg-x11-drv-openchrome Version: 0.2.903 -Release: 13%{?dist} +Release: 14%{?dist} URL: http://www.openchrome.org License: MIT Group: User Interface/X Hardware Support @@ -25,14 +25,6 @@ Patch99: openchrome-0.2.903-late # Fedora specific patches : #Patch100: openchrome-0.2.903-disable_hwcursor.patch # Experimental patches (branch backport, etc...): -#Patch200: openchrome-0.2.903-vx855_support.patch -#Patch201: openchrome-0.2.903-pll_rework.patch -#Patch202: openchrome-0.2.903-fix_cursor_on_secondary.patch -Patch203: openchrome-0.2.903-disable_TMDS_by_default.patch -#Patch204: openchrome-switch-on-lvds-pads-only-for-active-channels.patch -Patch205: openchrome-0.2.903-XO-1.5-panel.patch -Patch206: openchrome-0.2.903-remove_loader_symbol_lists.patch -#Patch207: openchrome-0.2.903-fix_null_pointer_deref_in_viaExaCheckComposite.patch Patch208: openchrome-vt1625.patch ExclusiveArch: %{ix86} x86_64 @@ -74,9 +66,6 @@ X.Org X11 openchrome video driver XvMC d %prep %setup -q -n %{tarball}-%{version} %patch99 -p0 -b .latest -%patch203 -p0 -b .tmds -%patch205 -p0 -b .XO_1.5_panel -%patch206 -p0 -b .loader_symbol %patch208 -p0 -b .vt1625 @@ -135,6 +124,10 @@ fi %changelog +* Thu Jul 30 2009 Xavier Bachelot - 0.2.903-14 +- Update to latest snapshot (svn 766) for bugfixes. +- Drop upstreamed patches. + * Mon Jul 27 2009 Fedora Release Engineering - 0.2.903-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- openchrome-0.2.903-XO-1.5-panel.patch DELETED --- --- openchrome-0.2.903-disable_TMDS_by_default.patch DELETED --- --- openchrome-0.2.903-remove_loader_symbol_lists.patch DELETED --- From jgranado at fedoraproject.org Fri Jul 31 10:44:27 2009 From: jgranado at fedoraproject.org (Joel Andres Granados Moreno) Date: Fri, 31 Jul 2009 10:44:27 +0000 (UTC) Subject: rpms/parted/F-11 parted-1.9.0-handle-dup-error.patch, NONE, 1.1 parted-1.9.0-swap-flag.patch, 1.1, 1.2 parted.spec, 1.136, 1.137 sources, 1.38, 1.39 Message-ID: <20090731104427.6C98611C00CE@cvs1.fedora.phx.redhat.com> Author: jgranado Update of /cvs/pkgs/rpms/parted/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6564 Modified Files: parted-1.9.0-swap-flag.patch parted.spec sources Added Files: parted-1.9.0-handle-dup-error.patch Log Message: Update to new official parted version. parted-1.9.0-handle-dup-error.patch: disk.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- NEW FILE parted-1.9.0-handle-dup-error.patch --- >From 4f14bec7eb887aba8b8e38b987bc01e8456a79fc Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 22 Jul 2009 12:08:34 +0200 Subject: [PATCH] Try to handle the duplicate error a little better. --- libparted/disk.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libparted/disk.c b/libparted/disk.c index 3656d22..27611eb 100644 --- a/libparted/disk.c +++ b/libparted/disk.c @@ -277,8 +277,10 @@ ped_disk_duplicate (const PedDisk* old_disk) for (old_part = ped_disk_next_partition (old_disk, NULL); old_part; old_part = ped_disk_next_partition (old_disk, old_part)) { if (ped_partition_is_active (old_part)) { - if (!_add_duplicate_part (new_disk, old_part)) + if (!_add_duplicate_part (new_disk, old_part)){ + _disk_pop_update_mode (new_disk); goto error_destroy_new_disk; + } } } if (!_disk_pop_update_mode (new_disk)) -- 1.6.0.6 parted-1.9.0-swap-flag.patch: dos.c | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) Index: parted-1.9.0-swap-flag.patch =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted-1.9.0-swap-flag.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- parted-1.9.0-swap-flag.patch 13 Jul 2009 16:30:15 -0000 1.1 +++ parted-1.9.0-swap-flag.patch 31 Jul 2009 10:44:27 -0000 1.2 @@ -1,26 +1,125 @@ -From ae78428ae1bc521a11be60b6acdb511a6e7aee21 Mon Sep 17 00:00:00 2001 +From 2df065840eda1ac1fc99a31627ea0f06ca7a4ca7 Mon Sep 17 00:00:00 2001 From: Joel Granados Moreno Date: Wed, 10 Jun 2009 18:34:46 +0200 -Subject: [PATCH] Use the swap flag. +Subject: [PATCH] Handle swap flag in msdos type labels. -* libparted/labels/dos.c (msdos_partition_set_flag): Set the partition -type if the user sets the swap flag. +* libparted/labels/dos.c (swap, raw_part_parse, msdos_partition_new) +(msdos_partition_duplicate, msdos_partition_set_system) +(msdos_partition_set_flag, msdos_partition_get_flag): Handle the swap +flag. Set the partition type if the user sets the swap flag. --- - libparted/labels/dos.c | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + libparted/labels/dos.c | 28 ++++++++++++++++++++++++++++ + 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/libparted/labels/dos.c b/libparted/labels/dos.c -index f219e7d..b4cd23a 100644 +index 7ec15ee..f8307c5 100644 --- a/libparted/labels/dos.c +++ b/libparted/labels/dos.c -@@ -1413,6 +1413,11 @@ msdos_partition_set_flag (PedPartition* part, +@@ -148,6 +148,7 @@ typedef struct { + int lba; + int palo; + int prep; ++ int swap; + OrigState* orig; /* used for CHS stuff */ + } DosPartitionData; + +@@ -818,6 +819,7 @@ raw_part_parse (const PedDisk* disk, const DosRawPartition* raw_part, + dos_data->lba = raw_part_is_lba (raw_part); + dos_data->palo = raw_part->type == PARTITION_PALO; + dos_data->prep = raw_part->type == PARTITION_PREP; ++ dos_data->swap = raw_part->type == PARTITION_LINUX_SWAP; + dos_data->orig = ped_malloc (sizeof (OrigState)); + if (!dos_data->orig) { + ped_partition_destroy (part); +@@ -1202,6 +1204,7 @@ msdos_partition_new (const PedDisk* disk, PedPartitionType part_type, + dos_data->lba = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } else { + part->disk_specific = NULL; + } +@@ -1237,6 +1240,7 @@ msdos_partition_duplicate (const PedPartition* part, PedDisk* disk) + new_dos_data->lba = old_dos_data->lba; + new_dos_data->palo = old_dos_data->palo; + new_dos_data->prep = old_dos_data->prep; ++ new_dos_data->swap = old_dos_data->swap; + + if (old_dos_data->orig) { + new_dos_data->orig = ped_malloc (sizeof (OrigState)); +@@ -1284,6 +1288,7 @@ msdos_partition_set_system (PedPartition* part, + dos_data->lvm = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + if (dos_data->lba) + dos_data->system = PARTITION_EXT_LBA; + else +@@ -1307,6 +1312,10 @@ msdos_partition_set_system (PedPartition* part, + dos_data->system = PARTITION_PREP; + return 1; + } ++ if (dos_data->swap) { ++ dos_data->system = PARTITION_LINUX_SWAP; ++ return 1; ++ } + + if (!fs_type) + dos_data->system = PARTITION_LINUX; +@@ -1379,6 +1388,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->lvm = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } + dos_data->raid = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1389,6 +1399,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->raid = 0; + dos_data->palo = 0; + dos_data->prep = 0; ++ dos_data->swap = 0; + } + dos_data->lvm = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1402,6 +1413,7 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->hidden = 0; + dos_data->raid = 0; + dos_data->lvm = 0; ++ dos_data->swap = 0; + } + dos_data->palo = state; + return ped_partition_set_system (part, part->fs_type); +@@ -1411,10 +1423,23 @@ msdos_partition_set_flag (PedPartition* part, + dos_data->hidden = 0; + dos_data->raid = 0; + dos_data->lvm = 0; ++ dos_data->swap = 0; ++ dos_data->palo = 0; + } dos_data->prep = state; return ped_partition_set_system (part, part->fs_type); + case PED_PARTITION_SWAP: + if (state) { -+ return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); ++ dos_data->hidden = 0; ++ dos_data->raid = 0; ++ dos_data->lvm = 0; ++ dos_data->palo = 0; ++ dos_data->prep = 0; + } ++ dos_data->swap = state; ++ return ped_partition_set_system (part, ped_file_system_type_get("linux-swap")); ++ + default: + return 0; + } +@@ -1451,6 +1476,9 @@ msdos_partition_get_flag (const PedPartition* part, PedPartitionFlag flag) + case PED_PARTITION_PREP: + return dos_data->prep; + ++ case PED_PARTITION_SWAP: ++ return dos_data->swap; + default: return 0; Index: parted.spec =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/parted.spec,v retrieving revision 1.136 retrieving revision 1.137 diff -u -p -r1.136 -r1.137 --- parted.spec 21 Jul 2009 15:31:56 -0000 1.136 +++ parted.spec 31 Jul 2009 10:44:27 -0000 1.137 @@ -4,30 +4,23 @@ Summary: The GNU disk partition manipulation program Name: parted Version: 1.9.0 -Release: 4.20090721git980c%{?dist} +Release: 9%{?dist} License: GPLv3+ Group: Applications/System URL: http://www.gnu.org/software/parted -# Reproduce the snapshot tar.gz run this script: -# run http://jgranado.fedorapeople.org/packages/parted/upstream/parted-release -# -# the line that was used is: -# parted-release --version 1.9.0 --key-id PUB_KEY -# -# Note that this script will give different results if master changes in upstream. -# -Source: %{name}/%{name}-%{version}.tar.gz -Patch1: %{name}-1.9.0-appletv-support.patch -Patch2: %{name}-1.9.0-extended-mbr.patch -Patch3: %{name}-1.9.0-noheaders.patch -Patch4: %{name}-1.9.0-pop-push-error.patch -Patch5: %{name}-1.9.0-no-cylinder-align.patch -Patch6: %{name}-1.9.0-swap-flag.patch -Patch7: %{name}-1.9.0-remove-struct-elem.patch -Patch8: %{name}-1.9.0-move-function-declarations.patch -Patch9: %{name}-1.9.0-dasd-duplicate.patch -Patch10: %{name}-1.9.0-new-duplicate.patch +Source0: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.gz +Patch1: %{name}-1.9.0-appletv-support.patch +Patch2: %{name}-1.9.0-extended-mbr.patch +Patch3: %{name}-1.9.0-noheaders.patch +Patch4: %{name}-1.9.0-pop-push-error.patch +Patch5: %{name}-1.9.0-no-cylinder-align.patch +Patch6: %{name}-1.9.0-remove-struct-elem.patch +Patch7: %{name}-1.9.0-move-function-declarations.patch +Patch8: %{name}-1.9.0-dasd-duplicate.patch +Patch9: %{name}-1.9.0-new-duplicate.patch +Patch10: %{name}-1.9.0-handle-dup-error.patch +Patch11: %{name}-1.9.0-swap-flag.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: e2fsprogs-devel @@ -72,11 +65,12 @@ Parted library, you need to install this %patch3 -p1 -b .noheaders %patch4 -p1 -b .pop-push-error %patch5 -p1 -b .no-cylinder-align -%patch6 -p1 -b .swap-flag -%patch7 -p1 -b .remove-struct-elem -%patch8 -p1 -b .move-function-declarations -%patch9 -p1 -b .dasd-duplicate -%patch10 -p1 -b .new-duplicate +%patch6 -p1 -b .remove-struct-elem +%patch7 -p1 -b .move-function-declarations +%patch8 -p1 -b .dasd-duplicate +%patch9 -p1 -b .new-duplicate +%patch10 -p1 -b .handle-dup-error +%patch11 -p1 -b .swap-flag %build @@ -135,6 +129,21 @@ fi %{_exec_prefix}/%{_lib}/pkgconfig/libparted.pc %changelog +* Wed Jul 29 2009 Joel Granados - 1.9.0-9 +- Add parenthesis where needed (#511907) + +* Mon Jul 27 2009 Joel Granados - 1.9.0-8 +- Add the swap flag to the dos type labels + +* Sat Jul 25 2009 Fedora Release Engineering - 1.9.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 23 2009 Joel Granados - 1.9.0-6 +- Rebuild usiing the official tar.gz at http://ftp.gnu.org/gnu/parted/parted-1.9.0.tar.gz + +* Wed Jul 22 2009 Joel Granados - 1.9.0-5.20090721git980c +- Better handle a duplicate error. + * Tue Jul 21 2009 Joel Granados - 1.9.0-4.20090721git980c - New snapshot. - Add patches to make dasd duplicate disk work. Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/parted/F-11/sources,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- sources 21 Jul 2009 15:31:56 -0000 1.38 +++ sources 31 Jul 2009 10:44:27 -0000 1.39 @@ -1 +1 @@ -d76712c8b6855e6810283c9e91fd25ee parted-1.9.0.tar.gz +055305bc7bcf472ce38f9abf69a9d94d parted-1.9.0.tar.gz From wolfy at fedoraproject.org Fri Jul 31 10:52:31 2009 From: wolfy at fedoraproject.org (Manuel Wolfshant) Date: Fri, 31 Jul 2009 10:52:31 +0000 (UTC) Subject: rpms/mysqltuner/EL-5 .cvsignore, 1.2, 1.3 mysqltuner.spec, 1.2, 1.3 sources, 1.3, 1.4 Message-ID: <20090731105231.2D22811C00CE@cvs1.fedora.phx.redhat.com> Author: wolfy Update of /cvs/pkgs/rpms/mysqltuner/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10341 Modified Files: .cvsignore mysqltuner.spec sources Log Message: Update to 1.0.0 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/EL-5/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 21 Jun 2008 18:23:53 -0000 1.2 +++ .cvsignore 31 Jul 2009 10:52:30 -0000 1.3 @@ -1 +1 @@ -mysqltuner.pl.gz +mysqltuner-1.0.0.pl Index: mysqltuner.spec =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/EL-5/mysqltuner.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mysqltuner.spec 30 Jul 2008 21:40:00 -0000 1.2 +++ mysqltuner.spec 31 Jul 2009 10:52:30 -0000 1.3 @@ -1,12 +1,12 @@ Name: mysqltuner -Version: 0.9.8 -Release: 2%{?dist} +Version: 1.0.0 +Release: 1%{?dist} Summary: MySQL high performance tuning script Group: Applications/Databases License: GPLv3+ URL: http://mysqltuner.com/ -Source0: http://mysqltuner.com/mysqltuner.pl.gz +Source0: http://mysqltuner.com/releases/mysqltuner-%{version}.pl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -14,17 +14,15 @@ Requires: mysql Requires: which %description -MySQLTuner is a MySQL high performance tuning script written in perl -that will provide you with a snapshot of a MySQL server's health. -Based on the statistics gathered, specific recommendations will be -provided that will increase a MySQL server's efficiency and -performance. The script gives you automated MySQL tuning that is on -the level of what you would receive from a MySQL DBA. +MySQLTuner is a script written in Perl that will assist you with your +MySQL configuration and make recommendations for increased performance +and stability. Within seconds, it will display statistics about your +MySQL installation and the areas where it can be improved. %prep %setup -q -c -T -gzip -dc %{SOURCE0} | sed -e 's/\r\+//g' > mysqltuner.pl +cp -p %{SOURCE0} ./mysqltuner.pl %build @@ -45,6 +43,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 manuel wolfshant - 1.0.0-1 +- sync with rawhide (update to 1.0.0). + * Wed Jul 30 2008 manuel wolfshant - 0.9.8-2%{dist} - add %%dist to release tag Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mysqltuner/EL-5/sources,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- sources 30 Jul 2008 21:40:00 -0000 1.3 +++ sources 31 Jul 2009 10:52:30 -0000 1.4 @@ -1 +1 @@ -960fff8a910ba86b1eef62e627670b1f mysqltuner.pl.gz +de535154b7fb28e437ba412434ea535e mysqltuner-1.0.0.pl From dwalsh at fedoraproject.org Fri Jul 31 11:02:27 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Fri, 31 Jul 2009 11:02:27 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch, 1.38, 1.39 selinux-policy.spec, 1.886, 1.887 Message-ID: <20090731110227.8790611C00CE@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13405 Modified Files: policy-F12.patch selinux-policy.spec Log Message: * Fri Jul 31 2009 Dan Walsh 3.6.26-2 - Allod hald_dccm_t to create sock_files in /tmp policy-F12.patch: Makefile | 2 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 8 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 36 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 92 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 4 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 82 + policy/modules/apps/sambagui.fc | 1 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 1 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 3 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 39 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 409 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 25 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 38 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 3 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 11 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 4 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 36 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 97 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 261 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 166 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 151 +- policy/modules/system/libraries.if | 4 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 288 ++++ policy/modules/system/selinuxutil.te | 227 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 116 + policy/modules/system/sysnetwork.te | 72 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1299 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 28 policy/modules/system/xen.te | 127 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 290 files changed, 12780 insertions(+), 2596 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.38 retrieving revision 1.39 diff -u -p -r1.38 -r1.39 --- policy-F12.patch 30 Jul 2009 21:38:53 -0000 1.38 +++ policy-F12.patch 31 Jul 2009 11:02:22 -0000 1.39 @@ -10579,7 +10579,7 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/hal.te serefpolicy-3.6.26/policy/modules/services/hal.te --- nsaserefpolicy/policy/modules/services/hal.te 2009-07-28 13:28:33.000000000 -0400 -+++ serefpolicy-3.6.26/policy/modules/services/hal.te 2009-07-30 17:31:42.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/services/hal.te 2009-07-31 06:43:31.000000000 -0400 @@ -55,6 +55,9 @@ type hald_var_lib_t; files_type(hald_var_lib_t) @@ -10664,8 +10664,13 @@ diff -b -B --ignore-all-space --exclude- allow hald_dccm_t self:process getsched; allow hald_dccm_t self:tcp_socket create_stream_socket_perms; allow hald_dccm_t self:udp_socket create_socket_perms; -@@ -471,8 +491,12 @@ +@@ -469,10 +489,17 @@ + manage_files_pattern(hald_dccm_t, hald_var_lib_t, hald_var_lib_t) + files_search_var_lib(hald_dccm_t) ++manage_sock_files_pattern(hald_dccm_t, hald_tmp_t, hald_tmp_t) ++files_tmp_filetrans(hald_dccm_t, hald_tmp_t, sock_file) ++ write_files_pattern(hald_dccm_t, hald_log_t, hald_log_t) +dev_read_urand(hald_dccm_t) @@ -10677,7 +10682,7 @@ diff -b -B --ignore-all-space --exclude- corenet_all_recvfrom_unlabeled(hald_dccm_t) corenet_all_recvfrom_netlabel(hald_dccm_t) corenet_tcp_sendrecv_generic_if(hald_dccm_t) -@@ -484,6 +508,7 @@ +@@ -484,6 +511,7 @@ corenet_tcp_bind_generic_node(hald_dccm_t) corenet_udp_bind_generic_node(hald_dccm_t) corenet_udp_bind_dhcpc_port(hald_dccm_t) @@ -10685,7 +10690,7 @@ diff -b -B --ignore-all-space --exclude- corenet_tcp_bind_dccm_port(hald_dccm_t) logging_send_syslog_msg(hald_dccm_t) -@@ -491,3 +516,9 @@ +@@ -491,3 +519,9 @@ files_read_usr_files(hald_dccm_t) miscfiles_read_localization(hald_dccm_t) @@ -11899,8 +11904,16 @@ diff -b -B --ignore-all-space --exclude- ## diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/nscd.te serefpolicy-3.6.26/policy/modules/services/nscd.te --- nsaserefpolicy/policy/modules/services/nscd.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.26/policy/modules/services/nscd.te 2009-07-30 15:33:09.000000000 -0400 -@@ -90,6 +90,7 @@ ++++ serefpolicy-3.6.26/policy/modules/services/nscd.te 2009-07-31 07:01:44.000000000 -0400 +@@ -65,6 +65,7 @@ + + fs_getattr_all_fs(nscd_t) + fs_search_auto_mountpoints(nscd_t) ++fs_list_inotifyfs(nscd_t) + + # for when /etc/passwd has just been updated and has the wrong type + auth_getattr_shadow(nscd_t) +@@ -90,6 +91,7 @@ selinux_compute_relabel_context(nscd_t) selinux_compute_user_contexts(nscd_t) domain_use_interactive_fds(nscd_t) @@ -11908,7 +11921,7 @@ diff -b -B --ignore-all-space --exclude- files_read_etc_files(nscd_t) files_read_generic_tmp_symlinks(nscd_t) -@@ -127,3 +128,12 @@ +@@ -127,3 +129,12 @@ xen_dontaudit_rw_unix_stream_sockets(nscd_t) xen_append_log(nscd_t) ') @@ -12381,13 +12394,15 @@ diff -b -B --ignore-all-space --exclude- +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/policykit.fc serefpolicy-3.6.26/policy/modules/services/policykit.fc --- nsaserefpolicy/policy/modules/services/policykit.fc 2009-07-23 14:11:04.000000000 -0400 -+++ serefpolicy-3.6.26/policy/modules/services/policykit.fc 2009-07-30 15:33:09.000000000 -0400 -@@ -1,7 +1,7 @@ ++++ serefpolicy-3.6.26/policy/modules/services/policykit.fc 2009-07-31 06:55:00.000000000 -0400 +@@ -1,7 +1,9 @@ /usr/libexec/polkit-read-auth-helper -- gen_context(system_u:object_r:policykit_auth_exec_t,s0) ++/usr/libexec/polkit-gnome-authentication-agent-1 -- gen_context(system_u:object_r:policykit_auth_exec_t,s0) /usr/libexec/polkit-grant-helper.* -- gen_context(system_u:object_r:policykit_grant_exec_t,s0) /usr/libexec/polkit-resolve-exe-helper.* -- gen_context(system_u:object_r:policykit_resolve_exec_t,s0) -/usr/libexec/polkitd -- gen_context(system_u:object_r:policykit_exec_t,s0) -+/usr/libexec/polkit.* gen_context(system_u:object_r:policykit_exec_t,s0) ++/usr/libexec/polkitd.* -- gen_context(system_u:object_r:policykit_exec_t,s0) ++/usr/libexec/polkit-1/polkitd.* -- gen_context(system_u:object_r:policykit_exec_t,s0) /var/lib/misc/PolicyKit.reload gen_context(system_u:object_r:policykit_reload_t,s0) /var/lib/PolicyKit(/.*)? gen_context(system_u:object_r:policykit_var_lib_t,s0) Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.886 retrieving revision 1.887 diff -u -p -r1.886 -r1.887 --- selinux-policy.spec 30 Jul 2009 20:30:26 -0000 1.886 +++ selinux-policy.spec 31 Jul 2009 11:02:24 -0000 1.887 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.26 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,7 +475,10 @@ exit 0 %endif %changelog -* Thu Jul 28 2009 Dan Walsh 3.6.26-1 +* Fri Jul 31 2009 Dan Walsh 3.6.26-2 +- Allod hald_dccm_t to create sock_files in /tmp + +* Thu Jul 30 2009 Dan Walsh 3.6.26-1 - More fixes from upstream * Tue Jul 28 2009 Dan Walsh 3.6.25-1 From lucilanga at fedoraproject.org Fri Jul 31 11:04:37 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 11:04:37 +0000 (UTC) Subject: rpms/libftdi/devel libftdi-0.16-multilib.patch,1.1,1.2 Message-ID: <20090731110437.8B5A711C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14117 Modified Files: libftdi-0.16-multilib.patch Log Message: update multilib patch libftdi-0.16-multilib.patch: libftdi-config.in | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) Index: libftdi-0.16-multilib.patch =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/devel/libftdi-0.16-multilib.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libftdi-0.16-multilib.patch 31 Jul 2009 07:58:46 -0000 1.1 +++ libftdi-0.16-multilib.patch 31 Jul 2009 11:04:37 -0000 1.2 @@ -1,5 +1,5 @@ --- libftdi-0.16/libftdi-config.in 2009-02-06 17:40:10.000000000 +0200 -+++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 10:39:56.000000000 +0300 ++++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 13:08:08.000000000 +0300 @@ -1,7 +1,7 @@ #!/bin/sh @@ -31,3 +31,13 @@ ;; *) usage 1 1>&2 +@@ -71,9 +68,3 @@ + if test "$echo_exec_prefix" = "yes"; then + echo $exec_prefix + fi +-if test "$echo_cflags" = "yes"; then +- echo $includes +-fi +-if test "$echo_libs" = "yes"; then +- echo -L at libdir@ -lftdi @LIBS@ +-fi From lucilanga at fedoraproject.org Fri Jul 31 11:07:54 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 11:07:54 +0000 (UTC) Subject: rpms/libftdi/devel libftdi.spec,1.10,1.11 Message-ID: <20090731110754.A882111C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15322 Modified Files: libftdi.spec Log Message: * Fri Jul 31 2009 Lucian Langa - 0.16-6 - rebuilt with modified patch Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/devel/libftdi.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libftdi.spec 31 Jul 2009 07:58:46 -0000 1.10 +++ libftdi.spec 31 Jul 2009 11:07:54 -0000 1.11 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -131,6 +131,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 31 2009 Lucian Langa - 0.16-6 +- rebuilt with modified patch + * Fri Jul 31 2009 Lucian Langa - 0.16-5 - fix multilib conflict in libftdi-config (#508498) From caolanm at fedoraproject.org Fri Jul 31 11:09:32 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 31 Jul 2009 11:09:32 +0000 (UTC) Subject: rpms/desktop-data-model/devel desktop-data-model.spec,1.18,1.19 Message-ID: <20090731110932.74E7511C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/desktop-data-model/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16110 Modified Files: desktop-data-model.spec Log Message: rebuild for dependencies Index: desktop-data-model.spec =================================================================== RCS file: /cvs/pkgs/rpms/desktop-data-model/devel/desktop-data-model.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- desktop-data-model.spec 24 Jul 2009 20:10:24 -0000 1.18 +++ desktop-data-model.spec 31 Jul 2009 11:09:32 -0000 1.19 @@ -1,6 +1,6 @@ Name: desktop-data-model Version: 1.2.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Engine providing live updates of online data to the desktop Group: System Environment/Libraries @@ -82,6 +82,9 @@ echo %{version} > %{_datadir}/desktop-da %{_libdir}/*.so %changelog +* Fri Jul 31 2009 Caol?n McNamara - 1.2.5-13 +- Rebuild for yet another libempathy + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From lucilanga at fedoraproject.org Fri Jul 31 11:11:51 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 11:11:51 +0000 (UTC) Subject: rpms/libftdi/F-11 libftdi.spec,1.9,1.10 Message-ID: <20090731111151.6494211C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16971 Modified Files: libftdi.spec Log Message: rebuilt with newer patch Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-11/libftdi.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- libftdi.spec 31 Jul 2009 08:03:28 -0000 1.9 +++ libftdi.spec 31 Jul 2009 11:11:51 -0000 1.10 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -128,6 +128,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 31 2009 Lucian Langa - 0.16-5 +- rebuilt with newer patch + * Fri Jul 31 2009 Lucian Langa - 0.16-4 - fix multilib conflict in libftdi-config (#508498) From lucilanga at fedoraproject.org Fri Jul 31 11:12:03 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 11:12:03 +0000 (UTC) Subject: rpms/libftdi/F-11 libftdi-0.16-multilib.patch,1.1,1.2 Message-ID: <20090731111203.EE57111C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17091 Modified Files: libftdi-0.16-multilib.patch Log Message: rebuilt with newer patch libftdi-0.16-multilib.patch: libftdi-config.in | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) Index: libftdi-0.16-multilib.patch =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-11/libftdi-0.16-multilib.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libftdi-0.16-multilib.patch 31 Jul 2009 08:03:28 -0000 1.1 +++ libftdi-0.16-multilib.patch 31 Jul 2009 11:12:03 -0000 1.2 @@ -1,5 +1,5 @@ --- libftdi-0.16/libftdi-config.in 2009-02-06 17:40:10.000000000 +0200 -+++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 10:39:56.000000000 +0300 ++++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 13:08:08.000000000 +0300 @@ -1,7 +1,7 @@ #!/bin/sh @@ -31,3 +31,13 @@ ;; *) usage 1 1>&2 +@@ -71,9 +68,3 @@ + if test "$echo_exec_prefix" = "yes"; then + echo $exec_prefix + fi +-if test "$echo_cflags" = "yes"; then +- echo $includes +-fi +-if test "$echo_libs" = "yes"; then +- echo -L at libdir@ -lftdi @LIBS@ +-fi From mbarnes at fedoraproject.org Fri Jul 31 11:18:52 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 31 Jul 2009 11:18:52 +0000 (UTC) Subject: rpms/evolution/F-11 evolution-2.26.3-missing-gconf-schemas.patch, NONE, 1.1 evolution.spec, 1.385, 1.386 Message-ID: <20090731111852.0C7D011C00D4@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19512 Modified Files: evolution.spec Added Files: evolution-2.26.3-missing-gconf-schemas.patch Log Message: * Fri Jul 31 2009 Matthew Barnes - 2.26.3-4.fc11 - Add some missing GConf schemas. evolution-2.26.3-missing-gconf-schemas.patch: apps_evolution_calendar.schemas.in | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) --- NEW FILE evolution-2.26.3-missing-gconf-schemas.patch --- diff -up evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in.missing-gconf-schemas evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in --- evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in.missing-gconf-schemas 2009-06-26 10:49:50.000000000 -0400 +++ evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in 2009-07-31 06:55:42.000000000 -0400 @@ -4,6 +4,17 @@ + /schemas/apps/evolution/calendar/display/primary_calendar + /apps/evolution/calendar/display/primary_calendar + evolution-calendar + string + + Primary calendar + URI of the highlighted ("primary") calendar + + + + /schemas/apps/evolution/calendar/display/timezone /apps/evolution/calendar/display/timezone evolution-calendar @@ -400,9 +411,33 @@ + + + + /schemas/apps/evolution/calendar/memos/primary_memos + /apps/evolution/calendar/memos/primary_memos + evolution-calendar + string + + Primary memo list + URI of the highlighted ("primary") memo list + + + + /schemas/apps/evolution/calendar/tasks/primary_tasks + /apps/evolution/calendar/tasks/primary_tasks + evolution-calendar + string + + Primary task list + URI of the highlighted ("primary") task list + + + + /schemas/apps/evolution/calendar/tasks/hide_completed /apps/evolution/calendar/tasks/hide_completed evolution-calendar Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/F-11/evolution.spec,v retrieving revision 1.385 retrieving revision 1.386 diff -u -p -r1.385 -r1.386 --- evolution.spec 28 Jul 2009 16:44:55 -0000 1.385 +++ evolution.spec 31 Jul 2009 11:18:51 -0000 1.386 @@ -45,7 +45,7 @@ Name: evolution Version: 2.26.3 -Release: 3%{?dist} +Release: 4%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -68,6 +68,9 @@ Patch11: evolution-2.5.4-fix-conduit-dir # RH bug #176400 Patch12: evolution-2.9.1-im-context-reset.patch +# Add missing GConf schemas +Patch13: evolution-2.26.3-missing-gconf-schemas.patch + ## Dependencies ### Requires(post): GConf2 @@ -223,6 +226,7 @@ This package contains supplemental utili %patch10 -p1 -b .ldaphack %patch11 -p1 -b .fix-conduit-dir %patch12 -p1 -b .im-context-reset +%patch13 -p1 -b .missing-gconf-schemas mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/lib @@ -689,6 +693,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Fri Jul 31 2009 Matthew Barnes - 2.26.3-4.fc11 +- Add some missing GConf schemas. + * Tue Jul 28 2009 Matthew Barnes - 2.26.3-3.fc11 - Move libeconduit.so into the conduits subpackage to see if that untangles us from gnome-pilot. From mgrepl at fedoraproject.org Fri Jul 31 11:36:19 2009 From: mgrepl at fedoraproject.org (Miroslav Grepl) Date: Fri, 31 Jul 2009 11:36:19 +0000 (UTC) Subject: rpms/selinux-policy/F-11 policy-20090521.patch, 1.36, 1.37 selinux-policy.spec, 1.892, 1.893 Message-ID: <20090731113619.ECA7C11C00CE@cvs1.fedora.phx.redhat.com> Author: mgrepl Update of /cvs/extras/rpms/selinux-policy/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25259 Modified Files: policy-20090521.patch selinux-policy.spec Log Message: - Add postfix and dovecot fixes from dwalsh policy-20090521.patch: mcs | 12 - modules/admin/certwatch.te | 4 modules/admin/kismet.te | 16 ++ modules/admin/logrotate.te | 6 modules/admin/mrtg.te | 4 modules/admin/prelink.te | 9 - modules/admin/readahead.te | 2 modules/admin/rpm.if | 18 ++ modules/admin/rpm.te | 4 modules/admin/shorewall.fc | 12 + modules/admin/shorewall.if | 166 ++++++++++++++++++++++ modules/admin/shorewall.te | 103 +++++++++++++ modules/admin/usermanage.te | 1 modules/apps/gitosis.fc | 4 modules/apps/gitosis.if | 96 ++++++++++++ modules/apps/gitosis.te | 43 +++++ modules/apps/mozilla.if | 16 ++ modules/apps/mozilla.te | 14 + modules/apps/nsplugin.if | 2 modules/apps/qemu.fc | 1 modules/apps/qemu.te | 5 modules/apps/sandbox.if | 134 +++++++++++++----- modules/apps/sandbox.te | 274 ++++++++++++++++++++++++++++++++++--- modules/apps/vmware.fc | 1 modules/apps/vmware.te | 6 modules/kernel/corecommands.fc | 9 + modules/kernel/corenetwork.te.in | 2 modules/kernel/devices.fc | 2 modules/kernel/devices.if | 145 +++++++++++++++++++ modules/kernel/devices.te | 13 + modules/kernel/domain.if | 45 ++---- modules/kernel/domain.te | 30 +++- modules/kernel/files.if | 3 modules/kernel/kernel.if | 2 modules/kernel/terminal.if | 19 ++ modules/roles/staff.te | 8 + modules/roles/sysadm.if | 35 ++++ modules/roles/sysadm.te | 4 modules/roles/unconfineduser.te | 9 - modules/roles/unprivuser.te | 4 modules/roles/xguest.te | 6 modules/services/apache.fc | 4 modules/services/automount.if | 18 ++ modules/services/avahi.te | 2 modules/services/bluetooth.te | 1 modules/services/clamav.te | 4 modules/services/consolekit.te | 3 modules/services/cron.if | 19 -- modules/services/cron.te | 2 modules/services/cups.te | 2 modules/services/dcc.te | 8 - modules/services/ddclient.if | 25 +++ modules/services/devicekit.te | 6 modules/services/dnsmasq.te | 4 modules/services/dovecot.if | 34 ++-- modules/services/dovecot.te | 20 +- modules/services/exim.te | 6 modules/services/fetchmail.te | 2 modules/services/fprintd.te | 8 - modules/services/ftp.te | 7 modules/services/gnomeclock.te | 1 modules/services/gpsd.fc | 3 modules/services/gpsd.te | 17 ++ modules/services/hal.te | 12 + modules/services/kerberos.if | 2 modules/services/kerberos.te | 12 + modules/services/lircd.te | 4 modules/services/mailman.if | 1 modules/services/mta.if | 1 modules/services/mysql.te | 4 modules/services/nis.te | 3 modules/services/nslcd.fc | 4 modules/services/nslcd.if | 145 +++++++++++++++++++ modules/services/nslcd.te | 50 ++++++ modules/services/openvpn.te | 1 modules/services/pcscd.te | 3 modules/services/polkit.fc | 2 modules/services/polkit.if | 2 modules/services/polkit.te | 1 modules/services/postfix.if | 26 +++ modules/services/postfix.te | 26 --- modules/services/postgresql.te | 2 modules/services/ppp.if | 6 modules/services/privoxy.te | 3 modules/services/pyzor.fc | 2 modules/services/pyzor.te | 2 modules/services/rpc.te | 12 + modules/services/rsync.te | 2 modules/services/sendmail.if | 39 +++++ modules/services/sendmail.te | 7 modules/services/setroubleshoot.te | 5 modules/services/shorewall.fc | 12 - modules/services/shorewall.if | 166 ---------------------- modules/services/shorewall.te | 102 ------------- modules/services/spamassassin.fc | 4 modules/services/spamassassin.te | 1 modules/services/ssh.if | 23 ++- modules/services/ssh.te | 4 modules/services/uucp.te | 2 modules/services/virt.te | 27 ++- modules/services/xserver.fc | 2 modules/services/xserver.if | 19 ++ modules/services/xserver.te | 11 + modules/system/authlogin.fc | 3 modules/system/authlogin.if | 222 ++++++++++++++++------------- modules/system/authlogin.te | 27 +-- modules/system/init.fc | 2 modules/system/init.te | 2 modules/system/ipsec.te | 34 ++-- modules/system/iptables.te | 4 modules/system/iscsi.te | 1 modules/system/libraries.fc | 11 + modules/system/locallogin.te | 6 modules/system/miscfiles.fc | 1 modules/system/sysnetwork.te | 17 +- modules/system/udev.fc | 1 modules/system/udev.te | 6 modules/system/userdomain.if | 23 +-- modules/system/virtual.te | 5 modules/system/xen.te | 1 120 files changed, 1970 insertions(+), 633 deletions(-) Index: policy-20090521.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/policy-20090521.patch,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- policy-20090521.patch 31 Jul 2009 08:41:12 -0000 1.36 +++ policy-20090521.patch 31 Jul 2009 11:36:19 -0000 1.37 @@ -2233,20 +2233,178 @@ diff -b -B --ignore-all-space --exclude- tftp_read_content(dnsmasq_t) ') +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/dovecot.if serefpolicy-3.6.12/policy/modules/services/dovecot.if +--- nsaserefpolicy/policy/modules/services/dovecot.if 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/dovecot.if 2009-07-31 13:05:17.000000000 +0200 +@@ -2,47 +2,44 @@ + + ######################################## + ## +-## Create, read, write, and delete the dovecot spool files. ++## Connect to dovecot auth unix domain stream socket. + ## + ## + ## + ## Domain allowed access. + ## + ## ++## + # +-interface(`dovecot_manage_spool',` ++interface(`dovecot_stream_connect_auth',` + gen_require(` +- type dovecot_spool_t; ++ type dovecot_auth_t, dovecot_var_run_t; + ') + +- manage_files_pattern($1, dovecot_spool_t, dovecot_spool_t) +- manage_lnk_files_pattern($1, dovecot_spool_t, dovecot_spool_t) ++ stream_connect_pattern($1, dovecot_var_run_t, dovecot_var_run_t, dovecot_auth_t) + ') + + ######################################## + ## +-## Connect to dovecot auth unix domain stream socket. ++## Execute dovecot_deliver in the dovecot_deliver domain. + ## + ## + ## + ## Domain allowed access. + ## + ## +-## + # +-interface(`dovecot_auth_stream_connect',` ++interface(`dovecot_domtrans_deliver',` + gen_require(` +- type dovecot_auth_t, dovecot_var_run_t; ++ type dovecot_deliver_t, dovecot_deliver_exec_t; + ') + +- allow $1 dovecot_var_run_t:dir search; +- allow $1 dovecot_var_run_t:sock_file write; +- allow $1 dovecot_auth_t:unix_stream_socket connectto; ++ domtrans_pattern($1, dovecot_deliver_exec_t, dovecot_deliver_t) + ') + + ######################################## + ## +-## Execute dovecot_deliver in the dovecot_deliver domain. ++## Create, read, write, and delete the dovecot spool files. + ## + ## + ## +@@ -50,17 +47,18 @@ + ## + ## + # +-interface(`dovecot_domtrans_deliver',` ++interface(`dovecot_manage_spool',` + gen_require(` +- type dovecot_deliver_t, dovecot_deliver_exec_t; ++ type dovecot_spool_t; + ') + +- domtrans_pattern($1, dovecot_deliver_exec_t, dovecot_deliver_t) ++ manage_files_pattern($1, dovecot_spool_t, dovecot_spool_t) ++ manage_lnk_files_pattern($1, dovecot_spool_t, dovecot_spool_t) + ') + +-####################################### ++######################################## + ## +-## Do not audit attempts to d`elete dovecot lib files. ++## Do not audit attempts to delete dovecot lib files. + ## + ## + ## +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/dovecot.te serefpolicy-3.6.12/policy/modules/services/dovecot.te +--- nsaserefpolicy/policy/modules/services/dovecot.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/dovecot.te 2009-07-31 13:05:22.000000000 +0200 +@@ -1,5 +1,5 @@ + +-policy_module(dovecot, 1.10.2) ++policy_module(dovecot, 1.10.3) + + ######################################## + # +@@ -15,15 +15,18 @@ + domain_entry_file(dovecot_auth_t, dovecot_auth_exec_t) + role system_r types dovecot_auth_t; + ++type dovecot_auth_tmp_t; ++files_tmp_file(dovecot_auth_tmp_t) ++ ++type dovecot_cert_t; ++files_type(dovecot_cert_t) ++ + type dovecot_deliver_t; + type dovecot_deliver_exec_t; + domain_type(dovecot_deliver_t) + domain_entry_file(dovecot_deliver_t, dovecot_deliver_exec_t) + role system_r types dovecot_deliver_t; + +-type dovecot_cert_t; +-files_type(dovecot_cert_t) +- + type dovecot_etc_t; + files_config_file(dovecot_etc_t) + +@@ -46,9 +49,6 @@ + type dovecot_var_run_t; + files_pid_file(dovecot_var_run_t) + +-type dovecot_auth_tmp_t; +-files_tmp_file(dovecot_auth_tmp_t) +- + ######################################## + # + # dovecot local policy +@@ -73,7 +73,6 @@ + + can_exec(dovecot_t, dovecot_exec_t) + +-# log files + manage_files_pattern(dovecot_t, dovecot_var_log_t, dovecot_var_log_t) + logging_log_filetrans(dovecot_t, dovecot_var_log_t, file) + +@@ -181,7 +180,7 @@ + + allow dovecot_auth_t dovecot_var_run_t:dir list_dir_perms; + manage_sock_files_pattern(dovecot_auth_t, dovecot_var_run_t, dovecot_var_run_t) +-dovecot_auth_stream_connect(dovecot_auth_t) ++dovecot_stream_connect_auth(dovecot_auth_t) + + kernel_read_all_sysctls(dovecot_auth_t) + kernel_read_system_state(dovecot_auth_t) +@@ -252,9 +251,10 @@ + + miscfiles_read_localization(dovecot_deliver_t) + +-dovecot_auth_stream_connect(dovecot_deliver_t) ++dovecot_stream_connect_auth(dovecot_deliver_t) + + files_search_tmp(dovecot_deliver_t) ++ + fs_getattr_all_fs(dovecot_deliver_t) + + userdom_manage_user_home_content_dirs(dovecot_deliver_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/exim.te serefpolicy-3.6.12/policy/modules/services/exim.te --- nsaserefpolicy/policy/modules/services/exim.te 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/exim.te 2009-07-24 15:40:36.000000000 +0200 -@@ -152,6 +152,10 @@ ++++ serefpolicy-3.6.12/policy/modules/services/exim.te 2009-07-31 13:05:27.000000000 +0200 +@@ -148,7 +148,11 @@ ') optional_policy(` -+ sendmail_manage_tmp(exim_t) +- dovecot_auth_stream_connect(exim_t) ++ dovecot_stream_connect_auth(exim_t) +') + +optional_policy(` - tunable_policy(`exim_can_connect_db',` - mysql_stream_connect(exim_t) - ') ++ sendmail_manage_tmp(exim_t) + ') + + optional_policy(` diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/fetchmail.te serefpolicy-3.6.12/policy/modules/services/fetchmail.te --- nsaserefpolicy/policy/modules/services/fetchmail.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/fetchmail.te 2009-06-29 16:22:53.000000000 +0200 @@ -2854,8 +3012,22 @@ diff -b -B --ignore-all-space --exclude- optional_policy(` diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postfix.if serefpolicy-3.6.12/policy/modules/services/postfix.if --- nsaserefpolicy/policy/modules/services/postfix.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/postfix.if 2009-06-25 10:21:01.000000000 +0200 -@@ -580,6 +580,25 @@ ++++ serefpolicy-3.6.12/policy/modules/services/postfix.if 2009-07-31 13:05:32.000000000 +0200 +@@ -112,6 +112,13 @@ + template(`postfix_server_domain_template',` + postfix_domain_template($1) + ++ type postfix_$1_tmp_t; ++ files_tmp_file(postfix_$1_tmp_t) ++ ++ manage_dirs_pattern(postfix_$1_t, postfix_$1_tmp_t, postfix_$1_tmp_t) ++ manage_files_pattern(postfix_$1_t, postfix_$1_tmp_t, postfix_$1_tmp_t) ++ files_tmp_filetrans(postfix_$1_t, postfix_$1_tmp_t, { file dir }) ++ + allow postfix_$1_t self:capability { setuid setgid dac_override }; + allow postfix_$1_t postfix_master_t:unix_stream_socket { connectto rw_stream_socket_perms }; + allow postfix_$1_t self:tcp_socket create_socket_perms; +@@ -580,6 +587,25 @@ ######################################## ## @@ -2881,6 +3053,84 @@ diff -b -B --ignore-all-space --exclude- ## Execute the master postdrop in the ## postfix_postdrop domain. ## +diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postfix.te serefpolicy-3.6.12/policy/modules/services/postfix.te +--- nsaserefpolicy/policy/modules/services/postfix.te 2009-06-25 10:19:44.000000000 +0200 ++++ serefpolicy-3.6.12/policy/modules/services/postfix.te 2009-07-31 13:05:36.000000000 +0200 +@@ -42,9 +42,6 @@ + mta_manage_spool(postfix_local_t) + ') + +-type postfix_local_tmp_t; +-files_tmp_file(postfix_local_tmp_t) +- + # Program for creating database files + type postfix_map_t; + type postfix_map_exec_t; +@@ -106,9 +103,6 @@ + postfix_server_domain_template(virtual) + mta_mailserver_delivery(postfix_virtual_t) + +-type postfix_virtual_tmp_t; +-files_tmp_file(postfix_virtual_tmp_t) +- + ######################################## + # + # Postfix master process local policy +@@ -302,10 +296,6 @@ + allow postfix_local_t self:fifo_file rw_fifo_file_perms; + allow postfix_local_t self:process { setsched setrlimit }; + +-manage_dirs_pattern(postfix_local_t, postfix_local_tmp_t, postfix_local_tmp_t) +-manage_files_pattern(postfix_local_t, postfix_local_tmp_t, postfix_local_tmp_t) +-files_tmp_filetrans(postfix_local_t, postfix_local_tmp_t, { file dir }) +- + # connect to master process + stream_connect_pattern(postfix_local_t, postfix_public_t, postfix_public_t, postfix_master_t) + +@@ -399,14 +389,6 @@ + + miscfiles_read_localization(postfix_map_t) + +-tunable_policy(`read_default_t',` +- files_list_default(postfix_map_t) +- files_read_default_files(postfix_map_t) +- files_read_default_symlinks(postfix_map_t) +- files_read_default_sockets(postfix_map_t) +- files_read_default_pipes(postfix_map_t) +-') +- + optional_policy(` + locallogin_dontaudit_use_fds(postfix_map_t) + ') +@@ -508,7 +490,7 @@ + ') + + optional_policy(` +- sendmail_rw_unix_stream_sockets(postfix_postdrop_t) ++ sendmail_dontaudit_rw_unix_stream_sockets(postfix_postdrop_t) + ') + + optional_policy(` +@@ -640,7 +622,7 @@ + mta_read_aliases(postfix_smtpd_t) + + optional_policy(` +- dovecot_auth_stream_connect(postfix_smtpd_t) ++ dovecot_stream_connect_auth(postfix_smtpd_t) + ') + + optional_policy(` +@@ -665,10 +647,6 @@ + + allow postfix_virtual_t postfix_spool_t:file rw_file_perms; + +-manage_dirs_pattern(postfix_virtual_t, postfix_virtual_tmp_t, postfix_virtual_tmp_t) +-manage_files_pattern(postfix_virtual_t, postfix_virtual_tmp_t, postfix_virtual_tmp_t) +-files_tmp_filetrans(postfix_virtual_t, postfix_virtual_tmp_t, { file dir }) +- + # connect to master process + stream_connect_pattern(postfix_virtual_t, { postfix_private_t postfix_public_t }, { postfix_private_t postfix_public_t }, postfix_master_t) + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/postgresql.te serefpolicy-3.6.12/policy/modules/services/postgresql.te --- nsaserefpolicy/policy/modules/services/postgresql.te 2009-06-25 10:19:44.000000000 +0200 +++ serefpolicy-3.6.12/policy/modules/services/postgresql.te 2009-07-08 21:12:21.000000000 +0200 @@ -3007,8 +3257,33 @@ diff -b -B --ignore-all-space --exclude- auth_read_all_symlinks_except_shadow(rsync_t) diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/sendmail.if serefpolicy-3.6.12/policy/modules/services/sendmail.if --- nsaserefpolicy/policy/modules/services/sendmail.if 2009-06-25 10:19:44.000000000 +0200 -+++ serefpolicy-3.6.12/policy/modules/services/sendmail.if 2009-07-24 15:42:39.000000000 +0200 -@@ -238,3 +238,24 @@ ++++ serefpolicy-3.6.12/policy/modules/services/sendmail.if 2009-07-31 13:22:05.000000000 +0200 +@@ -92,6 +92,24 @@ + allow $1 sendmail_t:unix_stream_socket { getattr read write ioctl }; + ') + ++####################################### ++## ++## Dontaudit Read and write sendmail unix_stream_sockets. ++## ++## ++## ++## Domain allowed access. ++## ++## ++# ++interface(`sendmail_dontaudit_rw_unix_stream_sockets',` ++ gen_require(` ++ type sendmail_t; ++ ') ++ ++ dontaudit $1 sendmail_t:unix_stream_socket { getattr read write ioctl }; ++') ++ + ######################################## + ## + ## Read sendmail logs. +@@ -238,3 +256,24 @@ allow $1 sendmail_t:fifo_file rw_fifo_file_perms; ') Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/F-11/selinux-policy.spec,v retrieving revision 1.892 retrieving revision 1.893 diff -u -p -r1.892 -r1.893 --- selinux-policy.spec 31 Jul 2009 08:41:12 -0000 1.892 +++ selinux-policy.spec 31 Jul 2009 11:36:19 -0000 1.893 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.12 -Release: 71%{?dist} +Release: 72%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 31 2009 Miroslav Grepl 3.6.12-72 +- Add postfix and dovecot fixes from dwalsh + * Fri Jul 31 2009 Miroslav Grepl 3.6.12-71 - Allow lircd read/write input event devices From pmachata at fedoraproject.org Fri Jul 31 11:48:16 2009 From: pmachata at fedoraproject.org (Petr Machata) Date: Fri, 31 Jul 2009 11:48:16 +0000 (UTC) Subject: rpms/make/devel make-3.81-strcpy-overlap.patch, NONE, 1.1 make.spec, 1.47, 1.48 Message-ID: <20090731114816.2DFF311C00CE@cvs1.fedora.phx.redhat.com> Author: pmachata Update of /cvs/pkgs/rpms/make/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29129 Modified Files: make.spec Added Files: make-3.81-strcpy-overlap.patch Log Message: - Replace the use of strcpy on overlapping areas with memmove. It's possible that this ... - Resolves: #514721 make-3.81-strcpy-overlap.patch: job.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE make-3.81-strcpy-overlap.patch --- Index: job.c =================================================================== RCS file: /sources/make/make/job.c,v retrieving revision 1.193 diff -u -r1.193 job.c --- job.c 9 Jun 2009 15:35:38 -0000 1.193 +++ job.c 31 Jul 2009 11:42:16 -0000 @@ -1600,7 +1600,7 @@ /* There are no more references in this line to worry about. Copy the remaining uninteresting text to the output. */ if (out != in) - strcpy (out, in); + memmove (out, in, strlen (in) + 1); /* Finally, expand the line. */ lines[i] = allocated_variable_expand_for_file (cmds->command_lines[i], Index: make.spec =================================================================== RCS file: /cvs/pkgs/rpms/make/devel/make.spec,v retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- make.spec 25 Jul 2009 11:41:11 -0000 1.47 +++ make.spec 31 Jul 2009 11:48:15 -0000 1.48 @@ -3,7 +3,7 @@ Summary: A GNU tool which simplifies the Name: make Epoch: 1 Version: 3.81 -Release: 16%{?dist} +Release: 17%{?dist} License: GPLv2+ Group: Development/Tools URL: http://www.gnu.org/software/make/ @@ -17,6 +17,7 @@ Patch8: make-3.81-rlimit.patch Patch9: make-3.81-newlines.patch Patch10: make-3.81-jobserver.patch Patch11: make-3.81-fdleak.patch +Patch12: make-3.81-strcpy-overlap.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(post): /sbin/install-info Requires(preun): /sbin/install-info @@ -40,6 +41,7 @@ makefile. %patch9 -p1 %patch10 -p1 %patch11 -p1 +%patch12 -p0 %build %configure @@ -78,6 +80,11 @@ fi %{_infodir}/*.info* %changelog +* Fri Jul 31 2009 Petr Machata - 1:3.81-17 +- Replace the use of strcpy on overlapping areas with memmove. It's + possible that this ... +- Resolves: #514721 + * Sat Jul 25 2009 Fedora Release Engineering - 1:3.81-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From lucilanga at fedoraproject.org Fri Jul 31 12:01:19 2009 From: lucilanga at fedoraproject.org (Lucian Langa) Date: Fri, 31 Jul 2009 12:01:19 +0000 (UTC) Subject: rpms/libftdi/F-10 libftdi-0.16-multilib.patch, NONE, 1.1 libftdi.spec, 1.5, 1.6 Message-ID: <20090731120119.697CA11C00CE@cvs1.fedora.phx.redhat.com> Author: lucilanga Update of /cvs/pkgs/rpms/libftdi/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1785 Modified Files: libftdi.spec Added Files: libftdi-0.16-multilib.patch Log Message: * Fri Jul 31 2009 Lucian Langa - 0.16-3 - fix multilib conflict in libftdi-config libftdi-0.16-multilib.patch: libftdi-config.in | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) --- NEW FILE libftdi-0.16-multilib.patch --- --- libftdi-0.16/libftdi-config.in 2009-02-06 17:40:10.000000000 +0200 +++ libftdi-0.16-mod/libftdi-config.in 2009-07-31 13:08:08.000000000 +0300 @@ -1,7 +1,7 @@ #!/bin/sh -prefix=@prefix@ -exec_prefix=@exec_prefix@ +prefix=`pkg-config --variable prefix libftdi` +exec_prefix=`pkg-config --variable exec_prefix libftdi` exec_prefix_set=no usage() @@ -46,17 +46,14 @@ echo_exec_prefix=yes ;; --version) - echo @VERSION@ + pkg-config --modversion libftdi exit 0 ;; --cflags) - if test "@includedir@" != /usr/include ; then - includes="-I at includedir@" - fi - echo_cflags=yes + pkg-config --cflags libftdi ;; --libs) - echo_libs=yes + pkg-config --libs libftdi ;; *) usage 1 1>&2 @@ -71,9 +68,3 @@ if test "$echo_exec_prefix" = "yes"; then echo $exec_prefix fi -if test "$echo_cflags" = "yes"; then - echo $includes -fi -if test "$echo_libs" = "yes"; then - echo -L at libdir@ -lftdi @LIBS@ -fi Index: libftdi.spec =================================================================== RCS file: /cvs/pkgs/rpms/libftdi/F-10/libftdi.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libftdi.spec 1 Jul 2009 14:02:14 -0000 1.5 +++ libftdi.spec 31 Jul 2009 12:01:19 -0000 1.6 @@ -1,7 +1,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: libftdi Version: 0.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Library to program and control the FTDI USB controller Group: System Environment/Libraries @@ -9,6 +9,7 @@ License: LGPLv2 URL: http://www.intra2net.com/de/produkte/opensource/ftdi/ Source0: http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/%{name}-%{version}.tar.gz Source1: no_date_footer.html +Patch0: libftdi-0.16-multilib.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libusb-devel, doxygen, boost-devel, python-devel, swig @@ -129,6 +130,9 @@ rm -rf $RPM_BUILD_ROOT %postun c++ -p /sbin/ldconfig %changelog +* Fri Jul 31 2009 Lucian Langa - 0.16-3 +- fix multilib conflict in libftdi-config + * Wed Jul 01 2009 Lucian Langa - 0.16-2 - added udev rules - addedd c++, python bindings From schwab at fedoraproject.org Fri Jul 31 12:10:17 2009 From: schwab at fedoraproject.org (schwab) Date: Fri, 31 Jul 2009 12:10:17 +0000 (UTC) Subject: rpms/glibc/F-11 .cvsignore, 1.279, 1.280 glibc-fedora.patch, 1.313, 1.314 glibc.spec, 1.403, 1.404 import.log, 1.23, 1.24 sources, 1.304, 1.305 glibc-accept4.patch, 1.1, NONE glibc-bz10162.patch, 1.1, NONE glibc-nscd-avc_destroy.patch, 1.1, NONE glibc-nscd-cache-search.patch, 1.1, NONE glibc-ppc-math-errno.patch, 1.1, NONE glibc-sunrpc-license.patch, 1.1, NONE Message-ID: <20090731121017.626F511C04D5@cvs1.fedora.phx.redhat.com> Author: schwab Update of /cvs/pkgs/rpms/glibc/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4752/F-11 Modified Files: .cvsignore glibc-fedora.patch glibc.spec import.log sources Removed Files: glibc-accept4.patch glibc-bz10162.patch glibc-nscd-avc_destroy.patch glibc-nscd-cache-search.patch glibc-ppc-math-errno.patch glibc-sunrpc-license.patch Log Message: 2.10.1-3 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/glibc/F-11/.cvsignore,v retrieving revision 1.279 retrieving revision 1.280 diff -u -p -r1.279 -r1.280 --- .cvsignore 10 May 2009 19:01:04 -0000 1.279 +++ .cvsignore 31 Jul 2009 12:10:15 -0000 1.280 @@ -1,2 +1,2 @@ -glibc-20090510T1842.tar.bz2 -glibc-fedora-20090510T1842.tar.bz2 +glibc-2.10.1-65-gc97164f-fedora.tar.bz2 +glibc-2.10.1-65-gc97164f.tar.bz2 glibc-fedora.patch: ChangeLog | 20 + ChangeLog.15 | 37 ++ ChangeLog.16 | 101 +++++++ csu/Makefile | 3 csu/elf-init.c | 17 + debug/tst-chk1.c | 7 elf/ldconfig.c | 25 + elf/tst-stackguard1.c | 8 include/bits/stdlib-ldbl.h | 1 include/bits/wchar-ldbl.h | 1 include/features.h | 9 intl/locale.alias | 2 libio/stdio.h | 2 locale/iso-4217.def | 13 locale/programs/locarchive.c | 10 localedata/Makefile | 1 localedata/SUPPORTED | 6 localedata/locales/cy_GB | 7 localedata/locales/en_GB | 4 localedata/locales/no_NO | 69 ++++ localedata/locales/zh_TW | 6 malloc/mcheck.c | 30 +- manual/libc.texinfo | 2 misc/sys/cdefs.h | 20 + nis/nss | 2 nptl/ChangeLog | 19 + nptl/Makefile | 11 nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 3 nptl/sysdeps/unix/sysv/linux/kernel-features.h | 6 nptl/tst-stackguard1.c | 8 nscd/nscd.conf | 2 nscd/nscd.init | 28 -- posix/Makefile | 15 - posix/getconf.speclist.h | 39 ++ streams/Makefile | 2 sysdeps/generic/dl-cache.h | 8 sysdeps/i386/Makefile | 8 sysdeps/ia64/Makefile | 4 sysdeps/ia64/ia64libgcc.S | 350 ------------------------- sysdeps/ia64/libgcc-compat.c | 84 ++++++ sysdeps/powerpc/powerpc64/Makefile | 1 sysdeps/unix/nice.c | 7 sysdeps/unix/sysv/linux/check_pf.c | 5 sysdeps/unix/sysv/linux/dl-osinfo.h | 29 ++ sysdeps/unix/sysv/linux/futimesat.c | 23 - sysdeps/unix/sysv/linux/i386/clone.S | 4 sysdeps/unix/sysv/linux/i386/dl-cache.h | 59 ++++ sysdeps/unix/sysv/linux/ia64/dl-cache.h | 27 + sysdeps/unix/sysv/linux/ia64/dl-procinfo.c | 5 sysdeps/unix/sysv/linux/ia64/dl-procinfo.h | 5 sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed | 2 sysdeps/unix/sysv/linux/netlinkaccess.h | 18 + sysdeps/unix/sysv/linux/paths.h | 2 sysdeps/unix/sysv/linux/tcsetattr.c | 32 ++ sysdeps/unix/sysv/linux/x86_64/clone.S | 4 55 files changed, 750 insertions(+), 463 deletions(-) Index: glibc-fedora.patch =================================================================== RCS file: /cvs/pkgs/rpms/glibc/F-11/glibc-fedora.patch,v retrieving revision 1.313 retrieving revision 1.314 diff -u -p -r1.313 -r1.314 --- glibc-fedora.patch 10 May 2009 19:01:04 -0000 1.313 +++ glibc-fedora.patch 31 Jul 2009 12:10:15 -0000 1.314 @@ -1,6 +1,6 @@ ---- glibc-20090510T1842/ChangeLog 10 May 2009 18:38:52 -0000 1.11656 -+++ glibc-20090510T1842-fedora/ChangeLog 10 May 2009 18:50:00 -0000 1.8782.2.337 -@@ -7676,6 +7676,13 @@ +--- glibc-2.10.1-65-gc97164f/ChangeLog ++++ glibc-2.10.1-3/ChangeLog +@@ -8044,6 +8044,13 @@ * include/sys/cdefs.h: Redefine __nonnull so that test for incorrect parameters in the libc code itself are not omitted. @@ -14,7 +14,7 @@ 2007-05-09 Jakub Jelinek * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow -@@ -7971,6 +7978,10 @@ +@@ -8339,6 +8346,10 @@ [BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath. @@ -25,7 +25,7 @@ 2007-04-16 Ulrich Drepper [BZ #4364] -@@ -9228,6 +9239,15 @@ +@@ -9596,6 +9607,15 @@ separators also if no non-zero digits found. * stdlib/Makefile (tests): Add tst-strtod3. @@ -41,8 +41,8 @@ 2006-12-09 Ulrich Drepper [BZ #3632] ---- glibc-20090510T1842/ChangeLog.15 16 Feb 2005 07:34:17 -0000 1.1 -+++ glibc-20090510T1842-fedora/ChangeLog.15 19 Dec 2006 19:05:40 -0000 1.1.6.3 +--- glibc-2.10.1-65-gc97164f/ChangeLog.15 ++++ glibc-2.10.1-3/ChangeLog.15 @@ -477,6 +477,14 @@ 2004-11-26 Jakub Jelinek @@ -108,8 +108,8 @@ 2004-08-30 Roland McGrath * scripts/extract-abilist.awk: If `lastversion' variable defined, omit ---- glibc-20090510T1842/ChangeLog.16 4 May 2006 16:05:24 -0000 1.1 -+++ glibc-20090510T1842-fedora/ChangeLog.16 5 May 2006 06:11:52 -0000 1.1.2.1 +--- glibc-2.10.1-65-gc97164f/ChangeLog.16 ++++ glibc-2.10.1-3/ChangeLog.16 @@ -171,6 +171,11 @@ [BZ #2611] * stdio-common/renameat.c (renameat): Fix typo. @@ -281,8 +281,8 @@ 2005-02-10 Roland McGrath [BZ #157] ---- glibc-20090510T1842/csu/Makefile 1 Mar 2006 10:35:47 -0000 1.79 -+++ glibc-20090510T1842-fedora/csu/Makefile 30 Nov 2006 17:07:37 -0000 1.74.2.6 +--- glibc-2.10.1-65-gc97164f/csu/Makefile ++++ glibc-2.10.1-3/csu/Makefile @@ -93,7 +93,8 @@ omit-deps += $(crtstuff) $(crtstuff:%=$(objpfx)%.o): %.o: %.S $(objpfx)defs.h $(compile.S) -g0 $(ASFLAGS-.os) -o $@ @@ -293,9 +293,9 @@ vpath initfini.c $(sysdirs) ---- glibc-20090510T1842/csu/elf-init.c 5 Nov 2005 17:41:38 -0000 1.8 -+++ glibc-20090510T1842-fedora/csu/elf-init.c 15 Nov 2005 09:54:10 -0000 1.3.2.6 -@@ -49,6 +49,23 @@ extern void (*__init_array_end []) (int, +--- glibc-2.10.1-65-gc97164f/csu/elf-init.c ++++ glibc-2.10.1-3/csu/elf-init.c +@@ -49,6 +49,23 @@ extern void (*__init_array_end []) (int, char **, char **) extern void (*__fini_array_start []) (void) attribute_hidden; extern void (*__fini_array_end []) (void) attribute_hidden; @@ -319,8 +319,8 @@ /* These function symbols are provided for the .init/.fini section entry points automagically by the linker. */ ---- glibc-20090510T1842/debug/tst-chk1.c 5 Mar 2008 06:51:37 -0000 1.19 -+++ glibc-20090510T1842-fedora/debug/tst-chk1.c 5 Mar 2008 09:37:40 -0000 1.1.2.19 +--- glibc-2.10.1-65-gc97164f/debug/tst-chk1.c ++++ glibc-2.10.1-3/debug/tst-chk1.c @@ -17,6 +17,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -349,8 +349,8 @@ # define O 0 # else # define O 1 ---- glibc-20090510T1842/elf/ldconfig.c 6 Feb 2009 20:09:33 -0000 1.65 -+++ glibc-20090510T1842-fedora/elf/ldconfig.c 18 Feb 2009 15:49:28 -0000 1.47.2.20 +--- glibc-2.10.1-65-gc97164f/elf/ldconfig.c ++++ glibc-2.10.1-3/elf/ldconfig.c @@ -1020,17 +1020,19 @@ search_dirs (void) @@ -373,7 +373,7 @@ if (do_chroot && opt_chroot) { -@@ -1091,7 +1093,14 @@ parse_conf (const char *filename, bool d +@@ -1091,7 +1093,14 @@ parse_conf (const char *filename, bool do_chroot) cp += 8; while ((dir = strsep (&cp, " \t")) != NULL) if (dir[0] != '\0') @@ -389,7 +389,7 @@ } else if (!strncasecmp (cp, "hwcap", 5) && isblank (cp[5])) { -@@ -1154,7 +1163,7 @@ parse_conf (const char *filename, bool d +@@ -1154,7 +1163,7 @@ parse_conf (const char *filename, bool do_chroot) config files to read. */ static void parse_conf_include (const char *config_file, unsigned int lineno, @@ -398,7 +398,7 @@ { if (opt_chroot && pattern[0] != '/') error (EXIT_FAILURE, 0, -@@ -1184,7 +1193,7 @@ parse_conf_include (const char *config_f +@@ -1184,7 +1193,7 @@ parse_conf_include (const char *config_file, unsigned int lineno, { case 0: for (size_t i = 0; i < gl.gl_pathc; ++i) @@ -432,8 +432,8 @@ } if (! opt_ignore_aux_cache) ---- glibc-20090510T1842/elf/tst-stackguard1.c 26 Jun 2005 18:08:36 -0000 1.1 -+++ glibc-20090510T1842-fedora/elf/tst-stackguard1.c 8 Aug 2005 21:24:27 -0000 1.1.2.3 +--- glibc-2.10.1-65-gc97164f/elf/tst-stackguard1.c ++++ glibc-2.10.1-3/elf/tst-stackguard1.c @@ -160,17 +160,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -458,8 +458,16 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-20090510T1842/include/features.h 9 May 2009 17:35:13 -0000 1.55 -+++ glibc-20090510T1842-fedora/include/features.h 9 May 2009 18:40:11 -0000 1.35.2.24 +--- glibc-2.10.1-65-gc97164f/include/bits/stdlib-ldbl.h ++++ glibc-2.10.1-3/include/bits/stdlib-ldbl.h +@@ -0,0 +1 @@ ++#include +--- glibc-2.10.1-65-gc97164f/include/bits/wchar-ldbl.h ++++ glibc-2.10.1-3/include/bits/wchar-ldbl.h +@@ -0,0 +1 @@ ++#include +--- glibc-2.10.1-65-gc97164f/include/features.h ++++ glibc-2.10.1-3/include/features.h @@ -299,8 +299,13 @@ #endif @@ -476,16 +484,8 @@ # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 ---- glibc-20090510T1842/include/bits/stdlib-ldbl.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/include/bits/stdlib-ldbl.h 1 Feb 2006 09:30:43 -0000 1.1.2.1 -@@ -0,0 +1 @@ -+#include ---- glibc-20090510T1842/include/bits/wchar-ldbl.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/include/bits/wchar-ldbl.h 1 Feb 2006 09:30:43 -0000 1.1.2.1 -@@ -0,0 +1 @@ -+#include ---- glibc-20090510T1842/intl/locale.alias 28 Oct 2007 01:39:54 -0000 1.24 -+++ glibc-20090510T1842-fedora/intl/locale.alias 12 Dec 2007 18:13:23 -0000 1.23.2.2 +--- glibc-2.10.1-65-gc97164f/intl/locale.alias ++++ glibc-2.10.1-3/intl/locale.alias @@ -57,8 +57,6 @@ korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR @@ -495,8 +495,8 @@ norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 ---- glibc-20090510T1842/libio/stdio.h 26 Feb 2009 15:43:58 -0000 1.94 -+++ glibc-20090510T1842-fedora/libio/stdio.h 9 Mar 2009 14:35:17 -0000 1.78.2.15 +--- glibc-2.10.1-65-gc97164f/libio/stdio.h ++++ glibc-2.10.1-3/libio/stdio.h @@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t; extern struct _IO_FILE *stdin; /* Standard input stream. */ extern struct _IO_FILE *stdout; /* Standard output stream. */ @@ -510,8 +510,8 @@ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ ---- glibc-20090510T1842/locale/iso-4217.def 17 Feb 2007 07:46:20 -0000 1.20 -+++ glibc-20090510T1842-fedora/locale/iso-4217.def 21 Feb 2007 11:15:50 -0000 1.15.2.5 +--- glibc-2.10.1-65-gc97164f/locale/iso-4217.def ++++ glibc-2.10.1-3/locale/iso-4217.def @@ -8,6 +8,7 @@ * * !!! The list has to be sorted !!! @@ -520,7 +520,7 @@ DEFINE_INT_CURR("AED") /* United Arab Emirates Dirham */ DEFINE_INT_CURR("AFN") /* Afghanistan Afgani */ DEFINE_INT_CURR("ALL") /* Albanian Lek */ -@@ -15,12 +16,14 @@ DEFINE_INT_CURR("AMD") /* Armenia Dram +@@ -15,12 +16,14 @@ DEFINE_INT_CURR("AMD") /* Armenia Dram */ DEFINE_INT_CURR("ANG") /* Netherlands Antilles */ DEFINE_INT_CURR("AOA") /* Angolan Kwanza */ DEFINE_INT_CURR("ARS") /* Argentine Peso */ @@ -535,7 +535,7 @@ DEFINE_INT_CURR("BGN") /* Bulgarian Lev */ DEFINE_INT_CURR("BHD") /* Bahraini Dinar */ DEFINE_INT_CURR("BIF") /* Burundi Franc */ -@@ -44,6 +47,7 @@ DEFINE_INT_CURR("CUP") /* Cuban Peso * +@@ -44,6 +47,7 @@ DEFINE_INT_CURR("CUP") /* Cuban Peso */ DEFINE_INT_CURR("CVE") /* Cape Verde Escudo */ DEFINE_INT_CURR("CYP") /* Cypriot Pound */ DEFINE_INT_CURR("CZK") /* Czech Koruna */ @@ -543,7 +543,7 @@ DEFINE_INT_CURR("DJF") /* Djibouti Franc */ DEFINE_INT_CURR("DKK") /* Danish Krone (Faroe Islands, Greenland) */ DEFINE_INT_CURR("DOP") /* Dominican Republic */ -@@ -51,16 +55,20 @@ DEFINE_INT_CURR("DZD") /* Algerian Dina +@@ -51,16 +55,20 @@ DEFINE_INT_CURR("DZD") /* Algerian Dinar */ DEFINE_INT_CURR("EEK") /* Estonian Kroon */ DEFINE_INT_CURR("EGP") /* Egyptian Pound */ DEFINE_INT_CURR("ERN") /* Eritrean Nakfa */ @@ -564,7 +564,7 @@ DEFINE_INT_CURR("GTQ") /* Guatemala Quetzal */ DEFINE_INT_CURR("GYD") /* Guyana Dollar */ DEFINE_INT_CURR("HKD") /* Hong Kong Dollar */ -@@ -69,12 +77,14 @@ DEFINE_INT_CURR("HRK") /* Croatia Kuna +@@ -69,12 +77,14 @@ DEFINE_INT_CURR("HRK") /* Croatia Kuna */ DEFINE_INT_CURR("HTG") /* Haiti Gourde */ DEFINE_INT_CURR("HUF") /* Hungarian Forint */ DEFINE_INT_CURR("IDR") /* Indonesia Rupiah */ @@ -579,7 +579,7 @@ DEFINE_INT_CURR("JEP") /* Jersey Pound */ DEFINE_INT_CURR("JMD") /* Jamaican Dollar */ DEFINE_INT_CURR("JOD") /* Jordanian Dinar */ -@@ -94,6 +104,7 @@ DEFINE_INT_CURR("LKR") /* Sri Lankan Ru +@@ -94,6 +104,7 @@ DEFINE_INT_CURR("LKR") /* Sri Lankan Rupee */ DEFINE_INT_CURR("LRD") /* Liberian Dollar */ DEFINE_INT_CURR("LSL") /* Lesotho Maloti */ DEFINE_INT_CURR("LTL") /* Lithuanian Litas */ @@ -587,7 +587,7 @@ DEFINE_INT_CURR("LVL") /* Latvia Lat */ DEFINE_INT_CURR("LYD") /* Libyan Arab Jamahiriya Dinar */ DEFINE_INT_CURR("MAD") /* Moroccan Dirham */ -@@ -114,6 +125,7 @@ DEFINE_INT_CURR("MZM") /* Mozambique Me +@@ -114,6 +125,7 @@ DEFINE_INT_CURR("MZM") /* Mozambique Metical */ DEFINE_INT_CURR("NAD") /* Namibia Dollar */ DEFINE_INT_CURR("NGN") /* Nigeria Naira */ DEFINE_INT_CURR("NIO") /* Nicaragua Cordoba Oro */ @@ -595,7 +595,7 @@ DEFINE_INT_CURR("NOK") /* Norwegian Krone */ DEFINE_INT_CURR("NPR") /* Nepalese Rupee */ DEFINE_INT_CURR("NZD") /* New Zealand Dollar */ -@@ -124,6 +136,7 @@ DEFINE_INT_CURR("PGK") /* Papau New Gui +@@ -124,6 +136,7 @@ DEFINE_INT_CURR("PGK") /* Papau New Guinea Kina */ DEFINE_INT_CURR("PHP") /* Philippines Peso */ DEFINE_INT_CURR("PKR") /* Pakistan Rupee */ DEFINE_INT_CURR("PLN") /* Polish Zloty */ @@ -603,9 +603,9 @@ DEFINE_INT_CURR("PYG") /* Paraguay Guarani */ DEFINE_INT_CURR("QAR") /* Qatar Rial */ DEFINE_INT_CURR("ROL") /* Romanian Leu */ ---- glibc-20090510T1842/locale/programs/locarchive.c 27 Apr 2009 14:07:47 -0000 1.31 -+++ glibc-20090510T1842-fedora/locale/programs/locarchive.c 27 Apr 2009 14:33:47 -0000 1.21.2.7 -@@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const vo +--- glibc-2.10.1-65-gc97164f/locale/programs/locarchive.c ++++ glibc-2.10.1-3/locale/programs/locarchive.c +@@ -241,9 +241,9 @@ oldlocrecentcmp (const void *a, const void *b) /* forward decls for below */ static uint32_t add_locale (struct locarhandle *ah, const char *name, locale_data_t data, bool replace); @@ -636,9 +636,9 @@ add_alias (struct locarhandle *ah, const char *alias, bool replace, const char *oldname, uint32_t *locrec_offset_p) { ---- glibc-20090510T1842/localedata/Makefile 7 Feb 2009 05:28:00 -0000 1.110 -+++ glibc-20090510T1842-fedora/localedata/Makefile 18 Feb 2009 15:49:33 -0000 1.101.2.10 -@@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-lo +--- glibc-2.10.1-65-gc97164f/localedata/Makefile ++++ glibc-2.10.1-3/localedata/Makefile +@@ -225,6 +225,7 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ $(LOCALEDEF) --alias-file=../intl/locale.alias \ @@ -646,8 +646,8 @@ -i locales/$$input -c -f charmaps/$$charset \ $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ ---- glibc-20090510T1842/localedata/SUPPORTED 18 Apr 2009 08:43:52 -0000 1.117 -+++ glibc-20090510T1842-fedora/localedata/SUPPORTED 24 Apr 2009 08:00:32 -0000 1.71.2.25 +--- glibc-2.10.1-65-gc97164f/localedata/SUPPORTED ++++ glibc-2.10.1-3/localedata/SUPPORTED @@ -84,6 +84,7 @@ cy_GB.UTF-8/UTF-8 \ cy_GB/ISO-8859-14 \ da_DK.UTF-8/UTF-8 \ @@ -689,9 +689,9 @@ ta_IN/UTF-8 \ te_IN/UTF-8 \ tg_TJ.UTF-8/UTF-8 \ ---- glibc-20090510T1842/localedata/locales/cy_GB 28 Sep 2004 04:37:33 -0000 1.4 -+++ glibc-20090510T1842-fedora/localedata/locales/cy_GB 29 Sep 2004 08:48:23 -0000 1.3.2.2 -@@ -248,8 +248,11 @@ mon "";/ d_t_fmt "" d_fmt "" t_fmt "" @@ -705,9 +705,9 @@ END LC_TIME LC_MESSAGES ---- glibc-20090510T1842/localedata/locales/en_GB 25 Apr 2009 04:43:43 -0000 1.19 -+++ glibc-20090510T1842-fedora/localedata/locales/en_GB 27 Apr 2009 14:33:48 -0000 1.10.2.8 -@@ -116,8 +116,8 @@ mon "";/ d_t_fmt "" d_fmt "" t_fmt "" @@ -718,8 +718,8 @@ date_fmt "/ / " ---- glibc-20090510T1842/localedata/locales/no_NO 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/localedata/locales/no_NO 22 Sep 2004 21:21:01 -0000 1.11.2.1 +--- glibc-2.10.1-65-gc97164f/localedata/locales/no_NO ++++ glibc-2.10.1-3/localedata/locales/no_NO @@ -0,0 +1,69 @@ +escape_char / +comment_char % @@ -790,8 +790,8 @@ +LC_ADDRESS +copy "nb_NO" +END LC_ADDRESS ---- glibc-20090510T1842/localedata/locales/zh_TW 31 Oct 2004 23:42:28 -0000 1.7 -+++ glibc-20090510T1842-fedora/localedata/locales/zh_TW 2 Nov 2004 12:25:57 -0000 1.5.2.2 +--- glibc-2.10.1-65-gc97164f/localedata/locales/zh_TW ++++ glibc-2.10.1-3/localedata/locales/zh_TW @@ -1,7 +1,7 @@ comment_char % escape_char / @@ -819,8 +819,8 @@ revision "0.2" date "2000-08-02" % ---- glibc-20090510T1842/malloc/mcheck.c 19 May 2007 04:27:20 -0000 1.20 -+++ glibc-20090510T1842-fedora/malloc/mcheck.c 21 May 2007 20:01:08 -0000 1.18.2.2 +--- glibc-2.10.1-65-gc97164f/malloc/mcheck.c ++++ glibc-2.10.1-3/malloc/mcheck.c @@ -24,9 +24,25 @@ # include # include @@ -847,7 +847,7 @@ /* Old hook values. */ static void (*old_free_hook) (__ptr_t ptr, __const __ptr_t); static __ptr_t (*old_malloc_hook) (__malloc_size_t size, const __ptr_t); -@@ -197,7 +213,7 @@ freehook (__ptr_t ptr, const __ptr_t cal +@@ -197,7 +213,7 @@ freehook (__ptr_t ptr, const __ptr_t caller) if (old_free_hook != NULL) (*old_free_hook) (ptr, caller); else @@ -856,7 +856,7 @@ __free_hook = freehook; } -@@ -214,7 +230,7 @@ mallochook (__malloc_size_t size, const +@@ -214,7 +230,7 @@ mallochook (__malloc_size_t size, const __ptr_t caller) hdr = (struct hdr *) (*old_malloc_hook) (sizeof (struct hdr) + size + 1, caller); else @@ -865,7 +865,7 @@ __malloc_hook = mallochook; if (hdr == NULL) return NULL; -@@ -245,7 +261,7 @@ memalignhook (__malloc_size_t alignment, +@@ -245,7 +261,7 @@ memalignhook (__malloc_size_t alignment, __malloc_size_t size, if (old_memalign_hook != NULL) block = (*old_memalign_hook) (alignment, slop + size + 1, caller); else @@ -874,7 +874,7 @@ __memalign_hook = memalignhook; if (block == NULL) return NULL; -@@ -300,8 +316,8 @@ reallochook (__ptr_t ptr, __malloc_size_ +@@ -300,8 +316,8 @@ reallochook (__ptr_t ptr, __malloc_size_t size, const __ptr_t caller) sizeof (struct hdr) + size + 1, caller); else @@ -896,8 +896,8 @@ old_free_hook = __free_hook; __free_hook = freehook; ---- glibc-20090510T1842/manual/libc.texinfo 31 Jan 2008 01:43:04 -0000 1.98 -+++ glibc-20090510T1842-fedora/manual/libc.texinfo 31 Jan 2008 08:43:19 -0000 1.94.2.4 +--- glibc-2.10.1-65-gc97164f/manual/libc.texinfo ++++ glibc-2.10.1-3/manual/libc.texinfo @@ -5,7 +5,7 @@ @c setchapternewpage odd @@ -907,8 +907,8 @@ @direntry * Libc: (libc). C library. @end direntry ---- glibc-20090510T1842/misc/sys/cdefs.h 2 Mar 2009 15:56:03 -0000 1.74 -+++ glibc-20090510T1842-fedora/misc/sys/cdefs.h 9 Mar 2009 14:35:17 -0000 1.58.2.11 +--- glibc-2.10.1-65-gc97164f/misc/sys/cdefs.h ++++ glibc-2.10.1-3/misc/sys/cdefs.h @@ -132,7 +132,10 @@ #define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1) #define __bos0(ptr) __builtin_object_size (ptr, 0) @@ -952,17 +952,17 @@ # define __va_arg_pack() __builtin_va_arg_pack () # define __va_arg_pack_len() __builtin_va_arg_pack_len () #endif ---- glibc-20090510T1842/nis/nss 28 Apr 2006 21:02:23 -0000 1.3 -+++ glibc-20090510T1842-fedora/nis/nss 1 May 2006 08:02:53 -0000 1.2.2.2 +--- glibc-2.10.1-65-gc97164f/nis/nss ++++ glibc-2.10.1-3/nis/nss @@ -25,4 +25,4 @@ # memory with every getXXent() call. Otherwise each getXXent() call # might result into a network communication with the server to get # the next entry. -#SETENT_BATCH_READ=TRUE +SETENT_BATCH_READ=TRUE ---- glibc-20090510T1842/nptl/ChangeLog 29 Apr 2009 18:04:10 -0000 1.1115 -+++ glibc-20090510T1842-fedora/nptl/ChangeLog 9 May 2009 18:40:12 -0000 1.706.2.173 -@@ -3482,6 +3482,15 @@ +--- glibc-2.10.1-65-gc97164f/nptl/ChangeLog ++++ glibc-2.10.1-3/nptl/ChangeLog +@@ -3508,6 +3508,15 @@ Use __sigfillset. Document that sigfillset does the right thing wrt to SIGSETXID. @@ -978,7 +978,7 @@ 2005-07-11 Jakub Jelinek [BZ #1102] -@@ -4218,6 +4227,11 @@ +@@ -4244,6 +4253,11 @@ Move definition inside libpthread, libc, librt check. Provide definition for rtld. @@ -990,7 +990,7 @@ 2004-09-02 Ulrich Drepper * sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. -@@ -6292,6 +6306,11 @@ +@@ -6318,6 +6332,11 @@ * Makefile [$(build-shared) = yes] (tests): Depend on $(test-modules). @@ -1002,8 +1002,8 @@ 2003-07-25 Jakub Jelinek * tst-cancel17.c (do_test): Check if aio_cancel failed. ---- glibc-20090510T1842/nptl/Makefile 12 Nov 2008 13:38:23 -0000 1.195 -+++ glibc-20090510T1842-fedora/nptl/Makefile 12 Nov 2008 20:29:34 -0000 1.157.2.37 +--- glibc-2.10.1-65-gc97164f/nptl/Makefile ++++ glibc-2.10.1-3/nptl/Makefile @@ -339,7 +339,8 @@ endif extra-objs += $(crti-objs) $(crtn-objs) omit-deps += crti crtn @@ -1036,8 +1036,27 @@ else $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a endif ---- glibc-20090510T1842/nptl/tst-stackguard1.c 26 Jun 2005 17:44:14 -0000 1.1 -+++ glibc-20090510T1842-fedora/nptl/tst-stackguard1.c 8 Aug 2005 21:24:28 -0000 1.1.2.3 +--- glibc-2.10.1-65-gc97164f/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h ++++ glibc-2.10.1-3/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +@@ -187,4 +187,7 @@ + /* Typed memory objects are not available. */ + #define _POSIX_TYPED_MEMORY_OBJECTS -1 + ++/* Streams are not available. */ ++#define _XOPEN_STREAMS -1 ++ + #endif /* bits/posix_opt.h */ +--- glibc-2.10.1-65-gc97164f/nptl/sysdeps/unix/sysv/linux/kernel-features.h ++++ glibc-2.10.1-3/nptl/sysdeps/unix/sysv/linux/kernel-features.h +@@ -0,0 +1,6 @@ ++#include_next ++ ++/* NPTL can always assume all clone thread flags work. */ ++#ifndef __ASSUME_CLONE_THREAD_FLAGS ++# define __ASSUME_CLONE_THREAD_FLAGS 1 ++#endif +--- glibc-2.10.1-65-gc97164f/nptl/tst-stackguard1.c ++++ glibc-2.10.1-3/nptl/tst-stackguard1.c @@ -190,17 +190,21 @@ do_test (void) the 16 runs, something is very wrong. */ int ndifferences = 0; @@ -1062,27 +1081,8 @@ { puts ("stack guard canaries are not randomized enough"); puts ("nor equal to the default canary value"); ---- glibc-20090510T1842/nptl/sysdeps/unix/sysv/linux/kernel-features.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/nptl/sysdeps/unix/sysv/linux/kernel-features.h 22 Sep 2004 21:21:02 -0000 1.1.2.1 -@@ -0,0 +1,6 @@ -+#include_next -+ -+/* NPTL can always assume all clone thread flags work. */ -+#ifndef __ASSUME_CLONE_THREAD_FLAGS -+# define __ASSUME_CLONE_THREAD_FLAGS 1 -+#endif ---- glibc-20090510T1842/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h 26 Feb 2009 16:22:45 -0000 1.18 -+++ glibc-20090510T1842-fedora/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h 9 Mar 2009 14:35:18 -0000 1.8.2.10 -@@ -187,4 +187,7 @@ - /* Typed memory objects are not available. */ - #define _POSIX_TYPED_MEMORY_OBJECTS -1 - -+/* Streams are not available. */ -+#define _XOPEN_STREAMS -1 -+ - #endif /* bits/posix_opt.h */ ---- glibc-20090510T1842/nscd/nscd.conf 6 Nov 2007 00:50:48 -0000 1.16 -+++ glibc-20090510T1842-fedora/nscd/nscd.conf 12 Dec 2007 18:13:28 -0000 1.8.2.7 +--- glibc-2.10.1-65-gc97164f/nscd/nscd.conf ++++ glibc-2.10.1-3/nscd/nscd.conf @@ -33,7 +33,7 @@ # logfile /var/log/nscd.log # threads 4 @@ -1092,8 +1092,8 @@ # stat-user somebody debug-level 0 # reload-count 5 ---- glibc-20090510T1842/nscd/nscd.init 1 Dec 2006 20:12:45 -0000 1.10 -+++ glibc-20090510T1842-fedora/nscd/nscd.init 12 Dec 2007 18:13:28 -0000 1.6.2.6 +--- glibc-2.10.1-65-gc97164f/nscd/nscd.init ++++ glibc-2.10.1-3/nscd/nscd.init @@ -9,6 +9,7 @@ # slow naming services like NIS, NIS+, LDAP, or hesiod. # processname: /usr/sbin/nscd @@ -1150,9 +1150,9 @@ ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" ---- glibc-20090510T1842/posix/Makefile 7 Feb 2009 08:18:49 -0000 1.204 -+++ glibc-20090510T1842-fedora/posix/Makefile 18 Feb 2009 15:49:37 -0000 1.171.2.28 -@@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindi +--- glibc-2.10.1-65-gc97164f/posix/Makefile ++++ glibc-2.10.1-3/posix/Makefile +@@ -301,15 +301,8 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist @@ -1172,8 +1172,8 @@ + | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \ + > $@.new mv -f $@.new $@ ---- glibc-20090510T1842/posix/getconf.speclist.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/posix/getconf.speclist.h 18 Feb 2009 16:47:01 -0000 1.1.2.3 +--- glibc-2.10.1-65-gc97164f/posix/getconf.speclist.h ++++ glibc-2.10.1-3/posix/getconf.speclist.h @@ -0,0 +1,39 @@ +#include +const char *START_OF_STRINGS = @@ -1214,8 +1214,8 @@ +"XBS5_LPBIG_OFFBIG" +#endif +""; ---- glibc-20090510T1842/streams/Makefile 23 Oct 2002 23:48:41 -0000 1.4 -+++ glibc-20090510T1842-fedora/streams/Makefile 14 Mar 2008 22:36:46 -0000 1.4.2.1 +--- glibc-2.10.1-65-gc97164f/streams/Makefile ++++ glibc-2.10.1-3/streams/Makefile @@ -21,7 +21,7 @@ # subdir := streams @@ -1225,8 +1225,8 @@ routines = isastream getmsg getpmsg putmsg putpmsg fattach fdetach include ../Rules ---- glibc-20090510T1842/sysdeps/generic/dl-cache.h 25 Jun 2003 08:01:22 -0000 1.13 -+++ glibc-20090510T1842-fedora/sysdeps/generic/dl-cache.h 22 Sep 2004 21:21:07 -0000 1.13.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/generic/dl-cache.h ++++ glibc-2.10.1-3/sysdeps/generic/dl-cache.h @@ -36,6 +36,14 @@ # define add_system_dir(dir) add_dir (dir) #endif @@ -1242,8 +1242,8 @@ #define CACHEMAGIC "ld.so-1.7.0" /* libc5 and glibc 2.0/2.1 use the same format. For glibc 2.2 another ---- glibc-20090510T1842/sysdeps/i386/Makefile 13 May 2008 05:30:43 -0000 1.21 -+++ glibc-20090510T1842-fedora/sysdeps/i386/Makefile 15 May 2008 07:57:47 -0000 1.16.2.5 +--- glibc-2.10.1-65-gc97164f/sysdeps/i386/Makefile ++++ glibc-2.10.1-3/sysdeps/i386/Makefile @@ -64,6 +64,14 @@ endif ifneq (,$(filter -mno-tls-direct-seg-refs,$(CFLAGS))) @@ -1259,8 +1259,8 @@ endif ifeq ($(subdir),elf) ---- glibc-20090510T1842/sysdeps/ia64/Makefile 16 Aug 2004 06:46:14 -0000 1.10 -+++ glibc-20090510T1842-fedora/sysdeps/ia64/Makefile 22 Sep 2004 21:21:07 -0000 1.10.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/ia64/Makefile ++++ glibc-2.10.1-3/sysdeps/ia64/Makefile @@ -12,8 +12,8 @@ elide-routines.os += hp-timing ifeq (yes,$(build-shared)) @@ -1272,8 +1272,8 @@ endif endif ---- glibc-20090510T1842/sysdeps/ia64/ia64libgcc.S 11 May 2002 05:12:35 -0000 1.2 -+++ glibc-20090510T1842-fedora/sysdeps/ia64/ia64libgcc.S 22 Sep 2004 21:21:07 -0000 1.2.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/ia64/ia64libgcc.S ++++ glibc-2.10.1-3/sysdeps/ia64/ia64libgcc.S @@ -1,350 +0,0 @@ -/* From the Intel IA-64 Optimization Guide, choose the minimum latency - alternative. */ @@ -1625,8 +1625,8 @@ - .symver ___multi3, __multi3 at GLIBC_2.2 - -#endif ---- glibc-20090510T1842/sysdeps/ia64/libgcc-compat.c 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/sysdeps/ia64/libgcc-compat.c 22 Sep 2004 21:21:08 -0000 1.1.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/ia64/libgcc-compat.c ++++ glibc-2.10.1-3/sysdeps/ia64/libgcc-compat.c @@ -0,0 +1,84 @@ +/* pre-.hidden libgcc compatibility + Copyright (C) 2002 Free Software Foundation, Inc. @@ -1712,8 +1712,8 @@ +symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); + +#endif ---- glibc-20090510T1842/sysdeps/powerpc/powerpc64/Makefile 2 Feb 2006 08:23:44 -0000 1.8 -+++ glibc-20090510T1842-fedora/sysdeps/powerpc/powerpc64/Makefile 30 Nov 2006 17:07:38 -0000 1.4.2.5 +--- glibc-2.10.1-65-gc97164f/sysdeps/powerpc/powerpc64/Makefile ++++ glibc-2.10.1-3/sysdeps/powerpc/powerpc64/Makefile @@ -30,6 +30,7 @@ ifneq ($(elf),no) # we use -fpic instead which is much better. CFLAGS-initfini.s += -fpic -O1 @@ -1722,8 +1722,8 @@ endif ifeq ($(subdir),elf) ---- glibc-20090510T1842/sysdeps/unix/nice.c 15 Aug 2006 05:24:45 -0000 1.7 -+++ glibc-20090510T1842-fedora/sysdeps/unix/nice.c 15 Aug 2006 05:53:50 -0000 1.6.2.2 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/nice.c ++++ glibc-2.10.1-3/sysdeps/unix/nice.c @@ -42,7 +42,12 @@ nice (int incr) __set_errno (save); } @@ -1738,8 +1738,8 @@ if (result == -1) { if (errno == EACCES) ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/check_pf.c 3 Jan 2008 00:24:52 -0000 1.15 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/check_pf.c 3 Jan 2008 20:20:42 -0000 1.3.2.11 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/check_pf.c ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/check_pf.c @@ -27,13 +27,10 @@ #include #include @@ -1755,8 +1755,8 @@ #ifndef IFA_F_HOMEADDRESS # define IFA_F_HOMEADDRESS 0 ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/dl-osinfo.h 26 Apr 2009 20:09:24 -0000 1.30 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/dl-osinfo.h 27 Apr 2009 14:33:57 -0000 1.14.2.16 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/dl-osinfo.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -17,10 +17,13 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ @@ -1771,7 +1771,7 @@ #ifndef MIN # define MIN(a,b) (((a)<(b))?(a):(b)) -@@ -80,6 +83,32 @@ _dl_setup_stack_chk_guard (void *dl_rand +@@ -80,6 +83,32 @@ _dl_setup_stack_chk_guard (void *dl_random) unsigned char *p = (unsigned char *) &ret; p[sizeof (ret) - 1] = 255; p[sizeof (ret) - 2] = '\n'; @@ -1804,8 +1804,8 @@ } else #endif ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/futimesat.c 3 Feb 2006 05:26:34 -0000 1.6 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/futimesat.c 3 Feb 2006 09:43:55 -0000 1.1.2.7 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/futimesat.c ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/futimesat.c @@ -37,14 +37,14 @@ futimesat (fd, file, tvp) { int result; @@ -1848,93 +1848,8 @@ { size_t filelen = strlen (file); static const char procfd[] = "/proc/self/fd/%d/%s"; ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/netlinkaccess.h 8 Jan 2006 08:21:15 -0000 1.3 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/netlinkaccess.h 10 Dec 2006 10:51:12 -0000 1.1.2.3 -@@ -25,6 +25,24 @@ - - #include - -+#ifndef IFA_MAX -+/* 2.6.19 kernel headers helpfully removed some macros and -+ moved lots of stuff into new headers, some of which aren't -+ included by linux/rtnetlink.h. */ -+#include -+#endif -+ -+#ifndef IFA_RTA -+# define IFA_RTA(r) \ -+ ((struct rtattr*) ((char*)(r) + NLMSG_ALIGN (sizeof (struct ifaddrmsg)))) -+# define IFA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifaddrmsg)) -+#endif -+ -+#ifndef IFLA_RTA -+# define IFLA_RTA(r) \ -+ ((struct rtattr*) ((char*)(r) + NLMSG_ALIGN (sizeof (struct ifinfomsg)))) -+# define IFLA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifinfomsg)) -+#endif - - struct netlink_res - { ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/paths.h 23 Apr 2009 18:29:16 -0000 1.12 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/paths.h 24 Apr 2009 08:00:37 -0000 1.11.4.2 -@@ -62,7 +62,7 @@ - #define _PATH_TTY "/dev/tty" - #define _PATH_UNIX "/boot/vmlinux" - #define _PATH_UTMP "/var/run/utmp" --#define _PATH_VI "/usr/bin/vi" -+#define _PATH_VI "/bin/vi" - #define _PATH_WTMP "/var/log/wtmp" - - /* Provide trailing slash, since mostly used for building pathnames. */ ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/tcsetattr.c 10 Sep 2003 19:16:07 -0000 1.16 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/tcsetattr.c 22 Sep 2004 21:21:08 -0000 1.16.2.1 -@@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios - { - struct __kernel_termios k_termios; - unsigned long int cmd; -+ int retval; - - switch (optional_actions) - { -@@ -80,6 +81,35 @@ tcsetattr (fd, optional_actions, termios - memcpy (&k_termios.c_cc[0], &termios_p->c_cc[0], - __KERNEL_NCCS * sizeof (cc_t)); - -- return INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); -+ retval = INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); -+ -+ if (retval == 0 && cmd == TCSETS) -+ { -+ /* The Linux kernel has a bug which silently ignore the invalid -+ c_cflag on pty. We have to check it here. */ -+ int save = errno; -+ retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios); -+ if (retval) -+ { -+ /* We cannot verify if the setting is ok. We don't return -+ an error (?). */ -+ __set_errno (save); -+ retval = 0; -+ } -+ else if ((termios_p->c_cflag & (PARENB | CREAD)) -+ != (k_termios.c_cflag & (PARENB | CREAD)) -+ || ((termios_p->c_cflag & CSIZE) -+ && ((termios_p->c_cflag & CSIZE) -+ != (k_termios.c_cflag & CSIZE)))) -+ { -+ /* It looks like the Linux kernel silently changed the -+ PARENB/CREAD/CSIZE bits in c_cflag. Report it as an -+ error. */ -+ __set_errno (EINVAL); -+ retval = -1; -+ } -+ } -+ -+ return retval; - } - libc_hidden_def (tcsetattr) ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/i386/clone.S 3 Dec 2006 23:12:36 -0000 1.27 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/i386/clone.S 14 Dec 2006 09:06:34 -0000 1.22.2.6 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/i386/clone.S ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/i386/clone.S @@ -120,9 +120,6 @@ L(pseudo_end): ret @@ -1953,8 +1868,8 @@ cfi_startproc PSEUDO_END (BP_SYM (__clone)) ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/i386/dl-cache.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/i386/dl-cache.h 22 Sep 2004 21:21:08 -0000 1.1.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/i386/dl-cache.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/i386/dl-cache.h @@ -0,0 +1,59 @@ +/* Support for reading /etc/ld.so.cache files written by Linux ldconfig. + Copyright (C) 2004 Free Software Foundation, Inc. @@ -2015,8 +1930,8 @@ + } while (0) + +#include_next ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/ia64/dl-cache.h 6 Jul 2001 04:56:17 -0000 1.2 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/ia64/dl-cache.h 22 Sep 2004 21:21:09 -0000 1.2.4.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/ia64/dl-cache.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -22,4 +22,31 @@ #define _dl_cache_check_flags(flags) \ ((flags) == _DL_CACHE_DEFAULT_ID) @@ -2049,29 +1964,114 @@ + } while (0) + #include_next ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c 22 Sep 2004 21:21:09 -0000 1.1.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/ia64/dl-procinfo.c @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h 1 Jan 1970 00:00:00 -0000 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h 22 Sep 2004 21:21:09 -0000 1.1.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/ia64/dl-procinfo.h @@ -0,0 +1,5 @@ +#ifdef IS_IN_ldconfig +#include +#else +#include +#endif ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed 17 Jan 2002 06:49:28 -0000 1.2 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed 22 Sep 2004 21:21:09 -0000 1.2.2.1 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed @@ -1 +1 @@ -s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 \2\3"_ +s_^\(RTLDLIST=\)\([^ ]*\)-ia64\(\.so\.[0-9.]*\)[ ]*$_\1"\2-ia64\3 /emul/ia32-linux\2\3"_ ---- glibc-20090510T1842/sysdeps/unix/sysv/linux/x86_64/clone.S 3 Dec 2006 23:12:36 -0000 1.7 -+++ glibc-20090510T1842-fedora/sysdeps/unix/sysv/linux/x86_64/clone.S 14 Dec 2006 09:06:34 -0000 1.4.2.4 +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/netlinkaccess.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/netlinkaccess.h +@@ -25,6 +25,24 @@ + + #include + ++#ifndef IFA_MAX ++/* 2.6.19 kernel headers helpfully removed some macros and ++ moved lots of stuff into new headers, some of which aren't ++ included by linux/rtnetlink.h. */ ++#include ++#endif ++ ++#ifndef IFA_RTA ++# define IFA_RTA(r) \ ++ ((struct rtattr*) ((char*)(r) + NLMSG_ALIGN (sizeof (struct ifaddrmsg)))) ++# define IFA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifaddrmsg)) ++#endif ++ ++#ifndef IFLA_RTA ++# define IFLA_RTA(r) \ ++ ((struct rtattr*) ((char*)(r) + NLMSG_ALIGN (sizeof (struct ifinfomsg)))) ++# define IFLA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifinfomsg)) ++#endif + + struct netlink_res + { +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/paths.h ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/paths.h +@@ -62,7 +62,7 @@ + #define _PATH_TTY "/dev/tty" + #define _PATH_UNIX "/boot/vmlinux" + #define _PATH_UTMP "/var/run/utmp" +-#define _PATH_VI "/usr/bin/vi" ++#define _PATH_VI "/bin/vi" + #define _PATH_WTMP "/var/log/wtmp" + + /* Provide trailing slash, since mostly used for building pathnames. */ +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/tcsetattr.c ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/tcsetattr.c +@@ -49,6 +49,7 @@ tcsetattr (fd, optional_actions, termios_p) + { + struct __kernel_termios k_termios; + unsigned long int cmd; ++ int retval; + + switch (optional_actions) + { +@@ -80,6 +81,35 @@ tcsetattr (fd, optional_actions, termios_p) + memcpy (&k_termios.c_cc[0], &termios_p->c_cc[0], + __KERNEL_NCCS * sizeof (cc_t)); + +- return INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); ++ retval = INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); ++ ++ if (retval == 0 && cmd == TCSETS) ++ { ++ /* The Linux kernel has a bug which silently ignore the invalid ++ c_cflag on pty. We have to check it here. */ ++ int save = errno; ++ retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios); ++ if (retval) ++ { ++ /* We cannot verify if the setting is ok. We don't return ++ an error (?). */ ++ __set_errno (save); ++ retval = 0; ++ } ++ else if ((termios_p->c_cflag & (PARENB | CREAD)) ++ != (k_termios.c_cflag & (PARENB | CREAD)) ++ || ((termios_p->c_cflag & CSIZE) ++ && ((termios_p->c_cflag & CSIZE) ++ != (k_termios.c_cflag & CSIZE)))) ++ { ++ /* It looks like the Linux kernel silently changed the ++ PARENB/CREAD/CSIZE bits in c_cflag. Report it as an ++ error. */ ++ __set_errno (EINVAL); ++ retval = -1; ++ } ++ } ++ ++ return retval; + } + libc_hidden_def (tcsetattr) +--- glibc-2.10.1-65-gc97164f/sysdeps/unix/sysv/linux/x86_64/clone.S ++++ glibc-2.10.1-3/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -89,9 +89,6 @@ L(pseudo_end): ret Index: glibc.spec =================================================================== RCS file: /cvs/pkgs/rpms/glibc/F-11/glibc.spec,v retrieving revision 1.403 retrieving revision 1.404 diff -u -p -r1.403 -r1.404 --- glibc.spec 22 May 2009 16:10:29 -0000 1.403 +++ glibc.spec 31 Jul 2009 12:10:17 -0000 1.404 @@ -1,7 +1,6 @@ -%define glibcdate 20090510T1842 -%define glibcname glibc -%define glibcsrcdir glibc-20090510T1842 -%define glibc_release_tarballs 0 +%define glibcsrcdir glibc-2.10.1-65-gc97164f +%define glibcversion 2.10.1 +### glibc.spec.in follows: %define run_glibc_tests 1 %define auxarches i686 athlon sparcv9v sparc64v alphaev6 %define xenarches i686 athlon @@ -20,10 +19,11 @@ %define rtkaioarches %{ix86} x86_64 ia64 ppc ppc64 s390 s390x %define debuginfocommonarches %{ix86} alpha alphaev6 sparc sparcv9 sparcv9v sparc64 sparc64v %define _unpackaged_files_terminate_build 0 + Summary: The GNU libc libraries Name: glibc -Version: 2.10.1 -Release: 2 +Version: %{glibcversion} +Release: 3 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries. # Things that are linked directly into dynamically linked programs # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional @@ -32,21 +32,16 @@ Release: 2 License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ Group: System Environment/Libraries URL: http://sources.redhat.com/glibc/ -Source0: %{glibcsrcdir}.tar.bz2 -%if %{glibc_release_tarballs} -Source1: %(echo %{glibcsrcdir} | sed s/glibc-/glibc-linuxthreads-/).tar.bz2 -Source2: %(echo %{glibcsrcdir} | sed s/glibc-/glibc-libidn-/).tar.bz2 -%define glibc_release_unpack -a1 -a2 +Source0: %{?glibc_release_url}%{glibcsrcdir}.tar.bz2 +%if 0%{?glibc_release_url:1} +%define glibc_libidn_srcdir %(echo %{glibcsrcdir} | sed s/glibc-/glibc-libidn-/) +Source1: %{glibc_release_url}%{glibc_libidn_srcdir}.tar.bz2 +%define glibc_release_unpack -a1 +%define glibc_release_setup mv %{glibc_libidn_srcdir} libidn %endif -Source3: %{glibcname}-fedora-%{glibcdate}.tar.bz2 -Patch0: %{glibcname}-fedora.patch +Source2: %{glibcsrcdir}-fedora.tar.bz2 +Patch0: %{name}-fedora.patch Patch1: %{name}-ia64-lib64.patch -Patch2: glibc-accept4.patch -Patch3: glibc-bz10162.patch -Patch4: glibc-nscd-avc_destroy.patch -Patch5: glibc-nscd-cache-search.patch -Patch6: glibc-ppc-math-errno.patch -Patch7: glibc-sunrpc-license.patch Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Obsoletes: glibc-profile < 2.4 Provides: ldconfig @@ -231,19 +226,14 @@ package or when debugging this package. %endif %prep -%setup -q -n %{glibcsrcdir} %{glibc_release_unpack} -a3 +%setup -q -n %{glibcsrcdir} %{?glibc_release_unpack} -b2 +%{?glibc_release_setup} %patch0 -E -p1 %ifarch ia64 %if "%{_lib}" == "lib64" %patch1 -p1 %endif %endif -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 -%patch6 -p1 -%patch7 -p1 # A lot of programs still misuse memcpy when they have to use # memmove. The memcpy implementation below is not tolerant at @@ -1025,6 +1015,26 @@ rm -f *.filelist* %endif %changelog +* Wed Jul 31 2009 Andreas Schwab - 2.10.1-3 +- Update from release/2.10/master. + - handle missing NSS modules (#513698) + - Handle SERVFAIL, NOTIMP, REFUSED replies from DNS server better + - Fix handling of xmm6 in ld.so audit hooks on x86-64 + - Fix possible race when freeing object in fast bin list + - Fix NIS and NIS+ getnetbyaddr backends + - Fix getent networks lookup and resulting incorrect NSS change + - Fix getnetbyaddr implementation + - Fix cfa offset for saved registers in PPC sqrt implementations + - Handle empty TZ strings at the end of new-style timzeone files correctly + - Add 802.15.4 definitions to header files + - Fix incorrect use of cmpldi in 32-bit PPC code + - Define week, first_weekday, first_workday in de_AT locale (BZ#10011) + - Fix permission of slave device on devpts if necessary + - When iterating over CPU bitmask, don't try more than CPU_SETSIZE + - Fix memory leak when batch-reading large NIS password maps + - Handle leap seconds even if no DST rule exists + - Fix errno for IBM long double + * Fri May 22 2009 Jakub Jelinek 2.10.1-2 - fix accept4 on architectures other than i?86/x86_64 - robustify nscd client code during server GC Index: import.log =================================================================== RCS file: /cvs/pkgs/rpms/glibc/F-11/import.log,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -r1.23 -r1.24 --- import.log 10 May 2009 19:01:05 -0000 1.23 +++ import.log 31 Jul 2009 12:10:17 -0000 1.24 @@ -21,3 +21,4 @@ glibc-2_9_90-22:F-11:glibc-2.9.90-22.src glibc-2_10-1:F-11:glibc-2.10-1.src.rpm:1241896636 glibc-2_10-2:F-11:glibc-2.10-2.src.rpm:1241907762 glibc-2_10_1-1:F-11:glibc-2.10.1-1.src.rpm:1241982035 +glibc-2_10_1-3:F-11:glibc-2.10.1-3.src.rpm:1249041173 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/glibc/F-11/sources,v retrieving revision 1.304 retrieving revision 1.305 diff -u -p -r1.304 -r1.305 --- sources 10 May 2009 19:01:05 -0000 1.304 +++ sources 31 Jul 2009 12:10:17 -0000 1.305 @@ -1,2 +1,2 @@ -693892ae9e1643b7d8017e71cf1d8c70 glibc-20090510T1842.tar.bz2 -e4a59f07896976185966c2e5e6a12cc9 glibc-fedora-20090510T1842.tar.bz2 +8bdb1d7fc8fa4be2bd5117542042fd4c glibc-2.10.1-65-gc97164f-fedora.tar.bz2 +ba8e5fbcc320129c6b42715e8f74d8a3 glibc-2.10.1-65-gc97164f.tar.bz2 --- glibc-accept4.patch DELETED --- --- glibc-bz10162.patch DELETED --- --- glibc-nscd-avc_destroy.patch DELETED --- --- glibc-nscd-cache-search.patch DELETED --- --- glibc-ppc-math-errno.patch DELETED --- --- glibc-sunrpc-license.patch DELETED --- From nphilipp at fedoraproject.org Fri Jul 31 12:26:46 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 12:26:46 +0000 (UTC) Subject: rpms/xsane/devel .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 xsane.spec, 1.73, 1.74 xsane-0.996-sane-backends-1.0.20.patch, 1.1, NONE Message-ID: <20090731122646.F25D411C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10779 Modified Files: .cvsignore sources xsane.spec Removed Files: xsane-0.996-sane-backends-1.0.20.patch Log Message: version 0.997 drop obsolete sane-backends-1.0.20 patch Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 18 Jan 2009 18:31:22 -0000 1.18 +++ .cvsignore 31 Jul 2009 12:26:46 -0000 1.19 @@ -1 +1 @@ -xsane-0.996.tar.gz +xsane-0.997.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 18 Jan 2009 18:31:22 -0000 1.18 +++ sources 31 Jul 2009 12:26:46 -0000 1.19 @@ -1 +1 @@ -7dcbcdf0e83322d7c0a543672d9ca2d8 xsane-0.996.tar.gz +8377b3e3b792f3d2b7f13895467c7082 xsane-0.997.tar.gz Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/devel/xsane.spec,v retrieving revision 1.73 retrieving revision 1.74 diff -u -p -r1.73 -r1.74 --- xsane.spec 27 Jul 2009 08:43:44 -0000 1.73 +++ xsane.spec 31 Jul 2009 12:26:46 -0000 1.74 @@ -4,15 +4,14 @@ Name: xsane Summary: X Window System front-end for the SANE scanner interface -Version: 0.996 -Release: 10%{?dist} +Version: 0.997 +Release: 1%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in Patch0: xsane-0.995-xdg-open.patch Patch1: xsane-0.995-close-fds.patch -Patch2: xsane-0.996-sane-backends-1.0.20.patch -Patch3: xsane-0.996-no-eula.patch +Patch2: xsane-0.996-no-eula.patch License: GPLv2+ URL: http://www.xsane.org/ Group: Applications/Multimedia @@ -56,8 +55,7 @@ done %patch0 -p1 -b .xdg-open %patch1 -p1 -b .close-fds -%patch2 -p1 -b .sane-backends-1.0.20 -%patch3 -p1 -b .no-eula +%patch2 -p1 -b .no-eula %build CC='gcc -DXSANE_BUGTRACKER_URL=\"%{bugtracker_url}\"' @@ -123,6 +121,10 @@ fi %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog +* Fri Jul 31 2009 Nils Philippsen 0.997-1 +- version 0.997 +- drop obsolete sane-backends-1.0.20 patch + * Mon Jul 27 2009 Fedora Release Engineering - 0.996-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xsane-0.996-sane-backends-1.0.20.patch DELETED --- From ruben at fedoraproject.org Fri Jul 31 12:26:59 2009 From: ruben at fedoraproject.org (Ruben Kerkhof) Date: Fri, 31 Jul 2009 12:26:59 +0000 (UTC) Subject: rpms/gearmand/devel .cvsignore, 1.5, 1.6 gearmand.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090731122659.0EC0F11C00CE@cvs1.fedora.phx.redhat.com> Author: ruben Update of /cvs/pkgs/rpms/gearmand/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11205 Modified Files: .cvsignore gearmand.spec sources Log Message: * Fri Jul 31 2009 Ruben Kerkhof 0.9-1 - Upstream released new version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 14 Jul 2009 14:54:57 -0000 1.5 +++ .cvsignore 31 Jul 2009 12:26:58 -0000 1.6 @@ -1 +1 @@ -gearmand-0.8.tar.gz +gearmand-0.9.tar.gz Index: gearmand.spec =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/gearmand.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- gearmand.spec 24 Jul 2009 23:45:06 -0000 1.8 +++ gearmand.spec 31 Jul 2009 12:26:58 -0000 1.9 @@ -1,6 +1,6 @@ Name: gearmand -Version: 0.8 -Release: 2%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: A distributed job system Group: System Environment/Daemons @@ -130,6 +130,9 @@ fi %changelog +* Fri Jul 31 2009 Ruben Kerkhof 0.9-1 +- Upstream released new version + * Fri Jul 24 2009 Fedora Release Engineering - 0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gearmand/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 14 Jul 2009 14:54:57 -0000 1.5 +++ sources 31 Jul 2009 12:26:58 -0000 1.6 @@ -1 +1 @@ -2118ad03aa055d22374d3a095554e54a gearmand-0.8.tar.gz +8bdedc7809180f5f33ec123e2c47389e gearmand-0.9.tar.gz From pghmcfc at fedoraproject.org Fri Jul 31 12:33:12 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Fri, 31 Jul 2009 12:33:12 +0000 (UTC) Subject: rpms/proftpd/devel proftpd-1.3.2-parallel-build.patch, NONE, 1.1 proftpd.spec, 1.50, 1.51 Message-ID: <20090731123312.4115E11C00CE@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/proftpd/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13287 Modified Files: proftpd.spec Added Files: proftpd-1.3.2-parallel-build.patch Log Message: Add upstream patch to fix parallel build (http://bugs.proftpd.org/3189) proftpd-1.3.2-parallel-build.patch: Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- NEW FILE proftpd-1.3.2-parallel-build.patch --- diff -ru proftpd-1.3.2-orig/Makefile.in proftpd-1.3.2/Makefile.in --- proftpd-1.3.2-orig/Makefile.in 2008-11-19 04:51:38.000000000 +0100 +++ proftpd-1.3.2/Makefile.in 2009-02-16 14:28:43.000000000 +0100 @@ -54,13 +54,13 @@ proftpd$(EXEEXT): lib src modules dirs locale $(LIBTOOL) --mode=link --tag=CC $(CC) $(LDFLAGS) $(MAIN_LDFLAGS) -o $@ $(BUILD_PROFTPD_OBJS) $(BUILD_PROFTPD_ARCHIVES) $(LIBS) $(MAIN_LIBS) -ftpcount$(EXEEXT): utils +ftpcount$(EXEEXT): lib utils $(CC) $(LDFLAGS) -o $@ $(BUILD_FTPCOUNT_OBJS) $(UTILS_LIBS) -ftpdctl$(EXEEXT): src +ftpdctl$(EXEEXT): lib src $(CC) $(LDFLAGS) -o $@ $(BUILD_FTPDCTL_OBJS) $(LIBS) -ftpshut$(EXEEXT): utils +ftpshut$(EXEEXT): lib utils $(CC) $(LDFLAGS) -o $@ $(BUILD_FTPSHUT_OBJS) $(UTILS_LIBS) ftptop$(EXEEXT): lib utils Index: proftpd.spec =================================================================== RCS file: /cvs/pkgs/rpms/proftpd/devel/proftpd.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- proftpd.spec 30 Jul 2009 10:25:53 -0000 1.50 +++ proftpd.spec 31 Jul 2009 12:33:11 -0000 1.51 @@ -7,7 +7,7 @@ %endif #global prever rc3 -%global rpmrel 1 +%global rpmrel 2 Summary: Flexible, stable and highly-configurable FTP server Name: proftpd @@ -28,6 +28,7 @@ Source8: proftpd-mod_quotatab_ldap.sche Source9: proftpd.sysconfig Patch0: proftpd-1.3.2rc3-nostrip.patch Patch1: proftpd-1.3.2a-defines.patch +Patch2: proftpd-1.3.2-parallel-build.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root Requires(post): /sbin/chkconfig Requires(preun): /sbin/service, /sbin/chkconfig, coreutils, findutils @@ -84,6 +85,9 @@ Module to add PostgreSQL support to the # Reinstate command-line defines (http://bugs.proftpd.org/3221) %patch1 -p1 -b .defines +# Fix parallel build (http://bugs.proftpd.org/3189) +%patch2 -p1 -b .parallel + # Avoid documentation name conflicts %{__mv} contrib/README contrib/README.contrib @@ -142,10 +146,7 @@ SMOD5=mod_wrap2:mod_wrap2_file:mod_wrap2 --with-modules=mod_readme:mod_auth_pam:mod_tls \ --with-shared=${SMOD1}:${SMOD2}:${SMOD3}:${SMOD4}:${SMOD5}:mod_ifsession -# Note: %{?_smp_mflags} not used because ftpcount has missing dependency on -lsupp, -# which can cause build failures with parallel builds -# (http://bugs.proftpd.org/show_bug.cgi?id=3271) -%{__make} +%{__make} %{?_smp_mflags} %install @@ -273,9 +274,12 @@ fi %changelog +* Fri Jul 31 2009 Paul Howarth 1.3.2a-2 +- Add upstream patch to fix parallel build (http://bugs.proftpd.org/3189) + * Mon Jul 27 2009 Paul Howarth 1.3.2a-1 - Update to 1.3.2a -- Add patch to reinstate support for -DPARAMETER (upstream bug 3221) +- Add patch to reinstate support for -DPARAMETER (http://bugs.proftpd.org/3221) - Retain CAP_AUDIT_WRITE, needed for pam_loginuid (#506735, fixed upstream) - Remove ScoreboardFile directive from configuration file - default value works better with SELinux (#498375) From cwickert at fedoraproject.org Fri Jul 31 12:35:42 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 31 Jul 2009 12:35:42 +0000 (UTC) Subject: rpms/xfce4-places-plugin/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-places-plugin.spec, 1.15, 1.16 Message-ID: <20090731123542.826C711C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-places-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14102 Modified Files: .cvsignore sources xfce4-places-plugin.spec Log Message: * Fri Jul 31 2009 Christoph Wickert - 1.2.0-1 - Update to 1.2.0 - Drop Andea Santilli's xdg-userdir-compat.patch because it got upstreamed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jun 2008 23:57:50 -0000 1.7 +++ .cvsignore 31 Jul 2009 12:35:42 -0000 1.8 @@ -1 +1 @@ -xfce4-places-plugin-1.1.0.tar.bz2 +xfce4-places-plugin-1.2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jun 2008 23:57:50 -0000 1.7 +++ sources 31 Jul 2009 12:35:42 -0000 1.8 @@ -1 +1 @@ -b26019e355c52b4a4254ebdcf1c904ee xfce4-places-plugin-1.1.0.tar.bz2 +f2d8c13340b3d52c5a7f6e2b9cdc55e3 xfce4-places-plugin-1.2.0.tar.bz2 Index: xfce4-places-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/devel/xfce4-places-plugin.spec,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- xfce4-places-plugin.spec 27 Jul 2009 07:54:47 -0000 1.15 +++ xfce4-places-plugin.spec 31 Jul 2009 12:35:42 -0000 1.16 @@ -1,13 +1,12 @@ Name: xfce4-places-plugin -Version: 1.1.0 -Release: 6%{?dist} +Version: 1.2.0 +Release: 1%{?dist} Summary: Places menu for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-1.1.0-xdg-userdir-compat.patch +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/1.2/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.99.1 @@ -27,20 +26,23 @@ a menu with 4 sections: %prep %setup -q -%patch0 -p1 -b .userdir + %build %configure --disable-static make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} + %clean rm -rf $RPM_BUILD_ROOT + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO @@ -48,7 +50,12 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/xfce4/panel-plugins/%{name} %{_datadir}/xfce4/panel-plugins/*.desktop + %changelog +* Fri Jul 31 2009 Christoph Wickert - 1.2.0-1 +- Update to 1.2.0 +- Drop Andea Santilli's xdg-userdir-compat.patch because it got upstreamed + * Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 31 12:43:37 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 31 Jul 2009 12:43:37 +0000 (UTC) Subject: rpms/xfce4-places-plugin/devel xfce4-places-plugin.spec,1.16,1.17 Message-ID: <20090731124337.B0CA911C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-places-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16708 Modified Files: xfce4-places-plugin.spec Log Message: BR intltool Index: xfce4-places-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/devel/xfce4-places-plugin.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- xfce4-places-plugin.spec 31 Jul 2009 12:35:42 -0000 1.16 +++ xfce4-places-plugin.spec 31 Jul 2009 12:43:37 -0000 1.17 @@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.99.1 BuildRequires: Thunar-devel >= 0.4.0 -BuildRequires: libxml2-devel, gettext, perl(XML::Parser) +BuildRequires: libxml2-devel, gettext, intltool Requires: xfce4-panel >= 4.4.1, Thunar >= 0.9.0 %description From nphilipp at fedoraproject.org Fri Jul 31 12:44:21 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 12:44:21 +0000 (UTC) Subject: rpms/xsane/F-10 xsane-0.996-no-eula.patch, NONE, 1.1 .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 xsane.spec, 1.61, 1.62 xsane-0.995-eula-license-size.patch, 1.1, NONE Message-ID: <20090731124421.A5DF411C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16600 Modified Files: .cvsignore sources xsane.spec Added Files: xsane-0.996-no-eula.patch Removed Files: xsane-0.995-eula-license-size.patch Log Message: - version 0.997 - don't show EULA, mention bugzilla in about dialog (#504344) - don't own %{_datadir}/applications/ (filesystem package owns it) - Merge review (#226658): - convert documentation files to UTF-8 - don't BR: sed - don't own %{_datadir}/applications, %{_sysconfdir}/gimp, %{_sysconfdir}/gimp/plugins.d - don't package unnecessary documentation xsane-0.996-no-eula.patch: xsane-text.h | 2 ++ xsane.c | 16 ++++++---------- xsane.h | 3 +++ 3 files changed, 11 insertions(+), 10 deletions(-) --- NEW FILE xsane-0.996-no-eula.patch --- diff -up xsane-0.996/src/xsane.c.no-eula xsane-0.996/src/xsane.c --- xsane-0.996/src/xsane.c.no-eula 2009-07-21 15:33:00.927455229 +0200 +++ xsane-0.996/src/xsane.c 2009-07-21 15:39:28.661456472 +0200 @@ -3524,10 +3524,13 @@ static void xsane_about_dialog(GtkWidget snprintf(buf, sizeof(buf), "XSane %s %s\n" "%s %s\n" "\n" + "%s\n%s" + "\n\n" "%s %s\n" "%s %s\n", TEXT_VERSION, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT, + TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL, TEXT_HOMEPAGE, XSANE_HOMEPAGE, TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); @@ -5714,6 +5717,7 @@ static int xsane_init(int argc, char **a case 'v': /* --version */ g_print("%s-%s %s %s\n", xsane.prog_name, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT); + g_print("\n%s\n%s\n\n", TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL); g_print(" %s %s\n", TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); g_print(" %s %s\n", TEXT_PACKAGE, XSANE_PACKAGE_VERSION); g_print(" %s%d.%d.%d\n", TEXT_GTK_VERSION, GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); @@ -5840,17 +5844,9 @@ static int xsane_init(int argc, char **a } - if (xsane_pref_restore()) /* restore preferences, returns TRUE if license is not accpted yet */ + if (xsane_pref_restore()) /* restore preferences, returns TRUE if the version is different from the last run */ { - if (xsane_display_eula(1)) /* show license and ask for accept/not accept */ - { - DBG(DBG_info, "user did not accept eula, we abort\n"); - return 1; /* User did not accept eula */ - } - else /* User did accept eula */ - { - xsane_pref_save(); - } + xsane_pref_save(); } xsane_pref_restore_media(); diff -up xsane-0.996/src/xsane.h.no-eula xsane-0.996/src/xsane.h --- xsane-0.996/src/xsane.h.no-eula 2009-07-21 15:33:00.921470546 +0200 +++ xsane-0.996/src/xsane.h 2009-07-21 16:08:01.398707123 +0200 @@ -98,6 +98,9 @@ #define XSANE_EMAIL_ADR "Oliver.Rauch at xsane.org" #define XSANE_HOMEPAGE "http://www.xsane.org" #define XSANE_COPYRIGHT_TXT XSANE_DATE " " XSANE_COPYRIGHT +#ifndef XSANE_BUGTRACKER_URL +#define XSANE_BUGTRACKER_URL "(no bug tracker configured)" +#endif /* ---------------------------------------------------------------------------------------------------------------------- */ diff -up xsane-0.996/src/xsane-text.h.no-eula xsane-0.996/src/xsane-text.h --- xsane-0.996/src/xsane-text.h.no-eula 2007-08-13 09:16:43.000000000 +0200 +++ xsane-0.996/src/xsane-text.h 2009-07-21 15:42:00.609707360 +0200 @@ -230,6 +230,8 @@ "This program is distributed in the hope that it will be useful, but\n" \ "WITHOUT ANY WARRANTY; without even the implied warranty of\n" \ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n") +#define TEXT_MODIFIED_BLURB _("This package is modified from the original version.\n" \ + "Please contact your vendor or report problems at") #define TEXT_EMAIL_ADR _("E-mail:") #define TEXT_HOMEPAGE _("Homepage:") #define TEXT_FILE _("File:") Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-10/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 20 Jan 2009 10:21:45 -0000 1.18 +++ .cvsignore 31 Jul 2009 12:44:21 -0000 1.19 @@ -1 +1 @@ -xsane-0.996.tar.gz +xsane-0.997.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-10/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 20 Jan 2009 10:21:45 -0000 1.18 +++ sources 31 Jul 2009 12:44:21 -0000 1.19 @@ -1 +1 @@ -7dcbcdf0e83322d7c0a543672d9ca2d8 xsane-0.996.tar.gz +8377b3e3b792f3d2b7f13895467c7082 xsane-0.997.tar.gz Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-10/xsane.spec,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- xsane.spec 20 Jan 2009 10:42:58 -0000 1.61 +++ xsane.spec 31 Jul 2009 12:44:21 -0000 1.62 @@ -1,15 +1,17 @@ -%define desktop_vendor fedora +# if you rebuild, please change bugtracker_url accordingly: +%global bugtracker_url http://bugzilla.redhat.com +%global desktop_vendor fedora Name: xsane Summary: X Window System front-end for the SANE scanner interface -Version: 0.996 -Release: 3%{?dist} +Version: 0.997 +Release: 1%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in Patch0: xsane-0.995-xdg-open.patch -Patch1: xsane-0.995-eula-license-size.patch -Patch2: xsane-0.995-close-fds.patch +Patch1: xsane-0.995-close-fds.patch +Patch2: xsane-0.996-no-eula.patch License: GPLv2+ URL: http://www.xsane.org/ Group: Applications/Multimedia @@ -18,11 +20,10 @@ BuildRequires: gimp-devel BuildRequires: lcms-devel BuildRequires: libjpeg-devel BuildRequires: libpng-devel -BuildRequires: sane-backends-devel +BuildRequires: sane-backends-devel >= 1.0.19-15 BuildRequires: desktop-file-utils >= 0.2.92 BuildRequires: libtiff-devel BuildRequires: gettext-devel -BuildRequires: sed ExcludeArch: s390 s390x %description @@ -44,11 +45,21 @@ installed to use this package. %prep %setup -q + +# convert some files to UTF-8 +for doc in xsane.{CHANGES,PROBLEMS,INSTALL}; do + iconv -f ISO-8859-1 -t utf8 "$doc" -o "$doc.new" && \ + touch -r "$doc" "$doc.new" && \ + mv "$doc.new" "$doc" +done + %patch0 -p1 -b .xdg-open -%patch1 -p1 -b .eula-license-size -%patch2 -p1 -b .close-fds +%patch1 -p1 -b .close-fds +%patch2 -p1 -b .no-eula %build +CC='gcc -DXSANE_BUGTRACKER_URL=\"%{bugtracker_url}\"' +export CC %configure --enable-gimp make LDFLAGS= @@ -94,11 +105,10 @@ fi %files -f XSANE.lang %defattr(-,root,root) -%doc xsane.[A-Z]* +%doc xsane.ACCELKEYS xsane.AUTHOR xsane.BEGINNERS-INFO xsane.BUGS xsane.CHANGES xsane.COPYING xsane.FAQ xsane.LANGUAGES xsane.LOGO xsane.NEWS xsane.ONLINEHELP xsane.PROBLEMS xsane.ROOT xsane.TODO %{_bindir}/xsane %{_mandir}/man1/* %{_datadir}/sane -%dir %{_datadir}/applications %{_datadir}/applications/%{desktop_vendor}-xsane.desktop %{_datadir}/pixmaps/xsane.xpm @@ -108,11 +118,39 @@ fi %dir %{_datadir}/sane %dir %{_datadir}/sane/xsane %{_datadir}/sane/xsane/*eula* -%dir %{_sysconfdir}/gimp -%dir %{_sysconfdir}/gimp/plugins.d %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog +* Fri Jul 31 2009 Nils Philippsen 0.997-1 +- version 0.997 +- drop obsolete sane-backends-1.0.20 patch + +* Mon Jul 27 2009 Fedora Release Engineering - 0.996-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jul 21 2009 Nils Philippsen 0.996-9 +- don't show EULA, mention bugzilla in about dialog (#504344) + +* Mon Jul 20 2009 Nils Philippsen 0.996-8 +- don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) + +* Tue Jul 7 2009 Tom "spot" Callaway 0.996-7 +- don't own %%{_datadir}/applications/ (filesystem package owns it) + +* Fri May 29 2009 Nils Philippsen +- Merge review (#226658): + - convert documentation files to UTF-8 + - don't BR: sed + - don't own %{_datadir}/applications, %{_sysconfdir}/gimp, + %{_sysconfdir}/gimp/plugins.d + - don't package unnecessary documentation + +* Mon Mar 02 2009 Nils Philippsen - 0.996-6 +- rebuild against new sane-backends (just in case) + +* Thu Feb 26 2009 Fedora Release Engineering - 0.996-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Jan 20 2009 Nils Philippsen - 0.996-3 - pickup changed desktop file, close-fds patch in F9, F10 @@ -428,9 +466,3 @@ fi * Thu Apr 22 1999 Preston Brown - initial RPM for PowerTools 6.0 - - - - - - --- xsane-0.995-eula-license-size.patch DELETED --- From nphilipp at fedoraproject.org Fri Jul 31 12:45:31 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 12:45:31 +0000 (UTC) Subject: rpms/xsane/F-11 xsane-0.996-no-eula.patch, NONE, 1.1 .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 xsane.spec, 1.69, 1.70 xsane-0.995-eula-license-size.patch, 1.1, NONE Message-ID: <20090731124531.2603B11C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/xsane/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16648 Modified Files: .cvsignore sources xsane.spec Added Files: xsane-0.996-no-eula.patch Removed Files: xsane-0.995-eula-license-size.patch Log Message: - version 0.997 - don't show EULA, mention bugzilla in about dialog (#504344) - don't own %{_datadir}/applications/ (filesystem package owns it) - Merge review (#226658): - convert documentation files to UTF-8 - don't BR: sed - don't own %{_datadir}/applications, %{_sysconfdir}/gimp, %{_sysconfdir}/gimp/plugins.d - don't package unnecessary documentation xsane-0.996-no-eula.patch: xsane-text.h | 2 ++ xsane.c | 16 ++++++---------- xsane.h | 3 +++ 3 files changed, 11 insertions(+), 10 deletions(-) --- NEW FILE xsane-0.996-no-eula.patch --- diff -up xsane-0.996/src/xsane.c.no-eula xsane-0.996/src/xsane.c --- xsane-0.996/src/xsane.c.no-eula 2009-07-21 15:33:00.927455229 +0200 +++ xsane-0.996/src/xsane.c 2009-07-21 15:39:28.661456472 +0200 @@ -3524,10 +3524,13 @@ static void xsane_about_dialog(GtkWidget snprintf(buf, sizeof(buf), "XSane %s %s\n" "%s %s\n" "\n" + "%s\n%s" + "\n\n" "%s %s\n" "%s %s\n", TEXT_VERSION, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT, + TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL, TEXT_HOMEPAGE, XSANE_HOMEPAGE, TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); @@ -5714,6 +5717,7 @@ static int xsane_init(int argc, char **a case 'v': /* --version */ g_print("%s-%s %s %s\n", xsane.prog_name, XSANE_VERSION, XSANE_COPYRIGHT_SIGN, XSANE_COPYRIGHT_TXT); + g_print("\n%s\n%s\n\n", TEXT_MODIFIED_BLURB, XSANE_BUGTRACKER_URL); g_print(" %s %s\n", TEXT_EMAIL_ADR, XSANE_EMAIL_ADR); g_print(" %s %s\n", TEXT_PACKAGE, XSANE_PACKAGE_VERSION); g_print(" %s%d.%d.%d\n", TEXT_GTK_VERSION, GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); @@ -5840,17 +5844,9 @@ static int xsane_init(int argc, char **a } - if (xsane_pref_restore()) /* restore preferences, returns TRUE if license is not accpted yet */ + if (xsane_pref_restore()) /* restore preferences, returns TRUE if the version is different from the last run */ { - if (xsane_display_eula(1)) /* show license and ask for accept/not accept */ - { - DBG(DBG_info, "user did not accept eula, we abort\n"); - return 1; /* User did not accept eula */ - } - else /* User did accept eula */ - { - xsane_pref_save(); - } + xsane_pref_save(); } xsane_pref_restore_media(); diff -up xsane-0.996/src/xsane.h.no-eula xsane-0.996/src/xsane.h --- xsane-0.996/src/xsane.h.no-eula 2009-07-21 15:33:00.921470546 +0200 +++ xsane-0.996/src/xsane.h 2009-07-21 16:08:01.398707123 +0200 @@ -98,6 +98,9 @@ #define XSANE_EMAIL_ADR "Oliver.Rauch at xsane.org" #define XSANE_HOMEPAGE "http://www.xsane.org" #define XSANE_COPYRIGHT_TXT XSANE_DATE " " XSANE_COPYRIGHT +#ifndef XSANE_BUGTRACKER_URL +#define XSANE_BUGTRACKER_URL "(no bug tracker configured)" +#endif /* ---------------------------------------------------------------------------------------------------------------------- */ diff -up xsane-0.996/src/xsane-text.h.no-eula xsane-0.996/src/xsane-text.h --- xsane-0.996/src/xsane-text.h.no-eula 2007-08-13 09:16:43.000000000 +0200 +++ xsane-0.996/src/xsane-text.h 2009-07-21 15:42:00.609707360 +0200 @@ -230,6 +230,8 @@ "This program is distributed in the hope that it will be useful, but\n" \ "WITHOUT ANY WARRANTY; without even the implied warranty of\n" \ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n") +#define TEXT_MODIFIED_BLURB _("This package is modified from the original version.\n" \ + "Please contact your vendor or report problems at") #define TEXT_EMAIL_ADR _("E-mail:") #define TEXT_HOMEPAGE _("Homepage:") #define TEXT_FILE _("File:") Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-11/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 18 Jan 2009 18:31:22 -0000 1.18 +++ .cvsignore 31 Jul 2009 12:45:30 -0000 1.19 @@ -1 +1 @@ -xsane-0.996.tar.gz +xsane-0.997.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-11/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 18 Jan 2009 18:31:22 -0000 1.18 +++ sources 31 Jul 2009 12:45:30 -0000 1.19 @@ -1 +1 @@ -7dcbcdf0e83322d7c0a543672d9ca2d8 xsane-0.996.tar.gz +8377b3e3b792f3d2b7f13895467c7082 xsane-0.997.tar.gz Index: xsane.spec =================================================================== RCS file: /cvs/pkgs/rpms/xsane/F-11/xsane.spec,v retrieving revision 1.69 retrieving revision 1.70 diff -u -p -r1.69 -r1.70 --- xsane.spec 3 May 2009 17:41:52 -0000 1.69 +++ xsane.spec 31 Jul 2009 12:45:31 -0000 1.70 @@ -1,15 +1,17 @@ -%define desktop_vendor fedora +# if you rebuild, please change bugtracker_url accordingly: +%global bugtracker_url http://bugzilla.redhat.com +%global desktop_vendor fedora Name: xsane Summary: X Window System front-end for the SANE scanner interface -Version: 0.996 -Release: 7%{?dist} +Version: 0.997 +Release: 1%{?dist} Source0: http://www.xsane.org/download/%{name}-%{version}.tar.gz Source1: xsane.desktop Source2: xsane.conf.in Patch0: xsane-0.995-xdg-open.patch -Patch1: xsane-0.995-eula-license-size.patch -Patch2: xsane-0.995-close-fds.patch +Patch1: xsane-0.995-close-fds.patch +Patch2: xsane-0.996-no-eula.patch License: GPLv2+ URL: http://www.xsane.org/ Group: Applications/Multimedia @@ -22,7 +24,6 @@ BuildRequires: sane-backends-devel >= 1. BuildRequires: desktop-file-utils >= 0.2.92 BuildRequires: libtiff-devel BuildRequires: gettext-devel -BuildRequires: sed ExcludeArch: s390 s390x %description @@ -44,11 +45,21 @@ installed to use this package. %prep %setup -q + +# convert some files to UTF-8 +for doc in xsane.{CHANGES,PROBLEMS,INSTALL}; do + iconv -f ISO-8859-1 -t utf8 "$doc" -o "$doc.new" && \ + touch -r "$doc" "$doc.new" && \ + mv "$doc.new" "$doc" +done + %patch0 -p1 -b .xdg-open -%patch1 -p1 -b .eula-license-size -%patch2 -p1 -b .close-fds +%patch1 -p1 -b .close-fds +%patch2 -p1 -b .no-eula %build +CC='gcc -DXSANE_BUGTRACKER_URL=\"%{bugtracker_url}\"' +export CC %configure --enable-gimp make LDFLAGS= @@ -94,11 +105,10 @@ fi %files -f XSANE.lang %defattr(-,root,root) -%doc xsane.[A-Z]* +%doc xsane.ACCELKEYS xsane.AUTHOR xsane.BEGINNERS-INFO xsane.BUGS xsane.CHANGES xsane.COPYING xsane.FAQ xsane.LANGUAGES xsane.LOGO xsane.NEWS xsane.ONLINEHELP xsane.PROBLEMS xsane.ROOT xsane.TODO %{_bindir}/xsane %{_mandir}/man1/* %{_datadir}/sane -%dir %{_datadir}/applications %{_datadir}/applications/%{desktop_vendor}-xsane.desktop %{_datadir}/pixmaps/xsane.xpm @@ -108,13 +118,32 @@ fi %dir %{_datadir}/sane %dir %{_datadir}/sane/xsane %{_datadir}/sane/xsane/*eula* -%dir %{_sysconfdir}/gimp -%dir %{_sysconfdir}/gimp/plugins.d %config(noreplace) %{_sysconfdir}/gimp/plugins.d/xsane.conf %changelog -* Sun May 03 2009 Warren Togami - 0.996-7 -- rebuild to make it work (gcc miscompile?) +* Fri Jul 31 2009 Nils Philippsen 0.997-1 +- version 0.997 +- drop obsolete sane-backends-1.0.20 patch + +* Mon Jul 27 2009 Fedora Release Engineering - 0.996-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jul 21 2009 Nils Philippsen 0.996-9 +- don't show EULA, mention bugzilla in about dialog (#504344) + +* Mon Jul 20 2009 Nils Philippsen 0.996-8 +- don't use obsolete SANE_CAP_ALWAYS_SETTABLE macro (#507823) + +* Tue Jul 7 2009 Tom "spot" Callaway 0.996-7 +- don't own %%{_datadir}/applications/ (filesystem package owns it) + +* Fri May 29 2009 Nils Philippsen +- Merge review (#226658): + - convert documentation files to UTF-8 + - don't BR: sed + - don't own %{_datadir}/applications, %{_sysconfdir}/gimp, + %{_sysconfdir}/gimp/plugins.d + - don't package unnecessary documentation * Mon Mar 02 2009 Nils Philippsen - 0.996-6 - rebuild against new sane-backends (just in case) @@ -437,9 +466,3 @@ fi * Thu Apr 22 1999 Preston Brown - initial RPM for PowerTools 6.0 - - - - - - --- xsane-0.995-eula-license-size.patch DELETED --- From caolanm at fedoraproject.org Fri Jul 31 12:53:06 2009 From: caolanm at fedoraproject.org (Caolan McNamara) Date: Fri, 31 Jul 2009 12:53:06 +0000 (UTC) Subject: rpms/bigboard/devel bigboard.spec,1.77,1.78 Message-ID: <20090731125307.0207911C00CE@cvs1.fedora.phx.redhat.com> Author: caolanm Update of /cvs/pkgs/rpms/bigboard/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20639 Modified Files: bigboard.spec Log Message: Rebuild for new libempathy Index: bigboard.spec =================================================================== RCS file: /cvs/pkgs/rpms/bigboard/devel/bigboard.spec,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- bigboard.spec 24 Jul 2009 18:01:19 -0000 1.77 +++ bigboard.spec 31 Jul 2009 12:53:06 -0000 1.78 @@ -3,7 +3,7 @@ Name: bigboard Version: 0.6.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Sidebar application launcher using mugshot.org Group: Applications/Internet @@ -128,6 +128,9 @@ gconftool-2 --makefile-install-rule \ killall -HUP gconfd-2 || : %changelog +* Fri Jul 31 2009 Caolan McNamara - 0.6.4-12 +- Rebuild for new libempathy + * Fri Jul 24 2009 Fedora Release Engineering - 0.6.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From cwickert at fedoraproject.org Fri Jul 31 12:54:26 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 31 Jul 2009 12:54:26 +0000 (UTC) Subject: rpms/xfce4-places-plugin/devel xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch, 1.2, NONE Message-ID: <20090731125426.CBAC611C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-places-plugin/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21202 Removed Files: xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch Log Message: remove obsolete patch --- xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch DELETED --- From cwickert at fedoraproject.org Fri Jul 31 12:54:46 2009 From: cwickert at fedoraproject.org (Christoph Wickert) Date: Fri, 31 Jul 2009 12:54:46 +0000 (UTC) Subject: rpms/xfce4-places-plugin/F-11 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xfce4-places-plugin.spec, 1.14, 1.15 xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch, 1.2, NONE Message-ID: <20090731125446.BC72C11C00CE@cvs1.fedora.phx.redhat.com> Author: cwickert Update of /cvs/pkgs/rpms/xfce4-places-plugin/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21377 Modified Files: .cvsignore sources xfce4-places-plugin.spec Removed Files: xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch Log Message: * Fri Jul 31 2009 Christoph Wickert - 1.2.0-1 - Update to 1.2.0 - Drop Andea Santilli's xdg-userdir-compat.patch because it got upstreamed Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 11 Jun 2008 23:57:50 -0000 1.7 +++ .cvsignore 31 Jul 2009 12:54:46 -0000 1.8 @@ -1 +1 @@ -xfce4-places-plugin-1.1.0.tar.bz2 +xfce4-places-plugin-1.2.0.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 11 Jun 2008 23:57:50 -0000 1.7 +++ sources 31 Jul 2009 12:54:46 -0000 1.8 @@ -1 +1 @@ -b26019e355c52b4a4254ebdcf1c904ee xfce4-places-plugin-1.1.0.tar.bz2 +f2d8c13340b3d52c5a7f6e2b9cdc55e3 xfce4-places-plugin-1.2.0.tar.bz2 Index: xfce4-places-plugin.spec =================================================================== RCS file: /cvs/pkgs/rpms/xfce4-places-plugin/F-11/xfce4-places-plugin.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- xfce4-places-plugin.spec 26 Feb 2009 09:01:52 -0000 1.14 +++ xfce4-places-plugin.spec 31 Jul 2009 12:54:46 -0000 1.15 @@ -1,18 +1,17 @@ Name: xfce4-places-plugin -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.2.0 +Release: 1%{?dist} Summary: Places menu for the Xfce panel Group: User Interface/Desktops License: GPLv2+ URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-1.1.0-xdg-userdir-compat.patch +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/1.2/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.99.1, libxfcegui4-devel >= 4.3.99.1 BuildRequires: Thunar-devel >= 0.4.0 -BuildRequires: libxml2-devel, gettext, perl(XML::Parser) +BuildRequires: libxml2-devel, gettext, intltool Requires: xfce4-panel >= 4.4.1, Thunar >= 0.9.0 %description @@ -27,20 +26,23 @@ a menu with 4 sections: %prep %setup -q -%patch0 -p1 -b .userdir + %build %configure --disable-static make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT %find_lang %{name} + %clean rm -rf $RPM_BUILD_ROOT + %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README TODO @@ -48,7 +50,15 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/xfce4/panel-plugins/%{name} %{_datadir}/xfce4/panel-plugins/*.desktop + %changelog +* Fri Jul 31 2009 Christoph Wickert - 1.2.0-1 +- Update to 1.2.0 +- Drop Andea Santilli's xdg-userdir-compat.patch because it got upstreamed + +* Mon Jul 27 2009 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- xfce4-places-plugin-1.1.0-xdg-userdir-compat.patch DELETED --- From rishi at fedoraproject.org Fri Jul 31 13:03:35 2009 From: rishi at fedoraproject.org (Debarshi Ray) Date: Fri, 31 Jul 2009 13:03:35 +0000 (UTC) Subject: rpms/gajim/F-10 .cvsignore, 1.14, 1.15 gajim.spec, 1.29, 1.30 sources, 1.14, 1.15 Message-ID: <20090731130335.CE74D11C00CE@cvs1.fedora.phx.redhat.com> Author: rishi Update of /cvs/pkgs/rpms/gajim/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24661 Modified Files: .cvsignore gajim.spec sources Log Message: * Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 - Version bump to 0.12.3. (Red Hat Bugzilla #510803) * Better keepalive / ping behaviour. * Fixed custom port handling. * Fixed PEP discovery. * Fixed PLAIN authentication (in particular with Google Talk). * Fixed SSL with some servers. * Handle XFCE notification-daemon. * Improve Kerberos support. * NetworkManager 0.7 support. * Restore old behaviour of click on systray: left click to open events. * Totem support for played music. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-10/.cvsignore,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- .cvsignore 23 Dec 2008 20:00:28 -0000 1.14 +++ .cvsignore 31 Jul 2009 13:03:35 -0000 1.15 @@ -1 +1 @@ -gajim-0.12.1.tar.gz +gajim-0.12.3.tar.gz Index: gajim.spec =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-10/gajim.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- gajim.spec 2 May 2009 12:01:13 -0000 1.29 +++ gajim.spec 31 Jul 2009 13:03:35 -0000 1.30 @@ -2,9 +2,9 @@ Summary: Jabber client written in PyGTK Name: gajim -Version: 0.12.1 -Release: 3%{?dist} -License: GPLv2 +Version: 0.12.3 +Release: 1%{?dist} +License: GPLv3 Group: Applications/Internet URL: http://gajim.org/ Source0: http://gajim.org/downloads/%{name}-%{version}.tar.gz @@ -22,10 +22,13 @@ Requires: gnome-python2-gnome Requires: gnome-python2-bonobo Requires: gnome-python2-canvas +Requires: gnupg Requires: notify-python Requires: pygtk2-libglade Requires: pyOpenSSL +Requires: python-crypto Requires: python-docutils +Requires: python-GnuPGInterface Requires: python-kerberos Requires: python-sexy @@ -46,10 +49,6 @@ Gajim does not require GNOME to run, eve %prep %setup -q -# Suppress error. -sed --in-place --expression '1d' ./src/gajim.py -sed --in-place --expression '1d' ./src/gajim-remote.py - %build %configure --docdir=%{_docdir}/%{name}-%{version} \ --libdir=%{python_sitearch} \ @@ -65,9 +64,6 @@ make install INSTALL="%{__install} -p" D rm -rf $RPM_BUILD_ROOT%{python_sitearch}/%{name}/*.la -# Suppress rpmlint error. -chmod 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/src/history_manager.py - desktop-file-install --vendor fedora --delete-original \ --dir $RPM_BUILD_ROOT%{_datadir}/applications \ --remove-category=Application \ @@ -85,9 +81,11 @@ rm -rf %{buildroot} %doc COPYING %doc README.html %doc THANKS +%doc THANKS.artists %doc %{_mandir}/man1/%{name}.1* %doc %{_mandir}/man1/%{name}-remote.1* %{_bindir}/%{name} +%{_bindir}/%{name}-history-manager %{_bindir}/%{name}-remote %{_datadir}/applications/fedora-%{name}.desktop %{_datadir}/pixmaps/%{name}.png @@ -103,6 +101,24 @@ rm -rf %{buildroot} %{python_sitearch}/%{name}/trayicon.so %changelog +* Wed Jul 22 2009 Debarshi Ray - 0.12.3-1 +- Version bump to 0.12.3. (Red Hat Bugzilla #510803) + * Better keepalive / ping behaviour. + * Fixed custom port handling. + * Fixed PEP discovery. + * Fixed PLAIN authentication (in particular with Google Talk). + * Fixed SSL with some servers. + * Handle XFCE notification-daemon. + * Improve Kerberos support. + * NetworkManager 0.7 support. + * Restore old behaviour of click on systray: left click to open events. + * Totem support for played music. + +* Tue Jul 14 2009 Debarshi Ray - 0.12.1-2 +- Replaced 'License: GPLv2' with 'License: GPLv3'. +- Added 'Requires: gnupg python-crypto python-GnuPGInterface'. (Red Hat + Bugzilla #510804) + * Sat May 02 2009 Debarshi Ray - 0.12.1-3 - Added 'Requires: gnome-python2-bonobo'. (Red Hat Bugzilla #470181) @@ -111,11 +127,22 @@ rm -rf %{buildroot} * Tue Dec 23 2008 Debarshi Ray - 0.12.1-1 - Version bump to 0.12.1. + * Fixed click on notifications when text string is empty. + * Fixed file transfer. + * Improve systray popup menu. + * Translation updates: de. - /usr/share/gajim/src/gajim-{remote}.py need not contain shebangs nor have the executable bits. * Thu Dec 18 2008 Debarshi Ray - 0.12-1 - Version bump to 0.12. + * Better auto-away support. + * Better sessions support. + * Fixed Banshee support. + * Fixed end to end encryption autonegation. + * Fixed GSSAPI authentication. + * Fixed text rendering in notifications. + * Quodlibet support. - Added 'Requires: notify-python python-kerberos'. * Sun Nov 30 2008 Debarshi Ray - 0.12-0.1.beta1 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gajim/F-10/sources,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- sources 23 Dec 2008 20:00:28 -0000 1.14 +++ sources 31 Jul 2009 13:03:35 -0000 1.15 @@ -1 +1 @@ -195a7973d3fbfb538e2ee74156aa6e9e gajim-0.12.1.tar.gz +088ebbcd8cb4242452831bee5de70639 gajim-0.12.3.tar.gz From limb at fedoraproject.org Fri Jul 31 13:07:39 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 31 Jul 2009 13:07:39 +0000 (UTC) Subject: rpms/bacula/devel bacula-traymonitor.desktop.consolehelper, NONE, 1.1 bacula.spec, 1.28, 1.29 Message-ID: <20090731130739.234D211C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26013 Modified Files: bacula.spec Added Files: bacula-traymonitor.desktop.consolehelper Log Message: gnome-console consolehelper correction. BZ 426790. add tray-monitor to consolehelper. BZ 426790 --- NEW FILE bacula-traymonitor.desktop.consolehelper --- [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server Exec=/usr/bin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/devel/bacula.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- bacula.spec 24 Jul 2009 17:47:20 -0000 1.28 +++ bacula.spec 31 Jul 2009 13:07:38 -0000 1.29 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 3.0.2 -Release: 1%{?dist} +Release: 2%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -25,6 +25,7 @@ Source9: bacula-sd.init #Source10: http://download.sourceforge.net/bacula/bacula-gui-%{gui_version}.tar.gz #Source11: bacula-web.apache Source12: bacula-bat.desktop +Source13: bacula-traymonitor.desktop.consolehelper Patch0: bacula-director-configuration.patch Patch1: bacula-config.patch #Patch2: bacula-wxconsole.patch @@ -572,11 +573,13 @@ install -m 644 -D bacula-sqlite/scripts/ install -m 644 -D bacula-sqlite/scripts/bat.desktop.consolehelper %{buildroot}%{_sysconfdir}/security/console.apps/bat install -m 644 -D bacula-sqlite/src/tray-monitor/generic.xpm %{buildroot}%{_datadir}/pixmaps/bacula-tray-monitor.xpm install -m 644 -D bacula-sqlite/src/qt-console/images/bat_icon.png %{buildroot}%{_datadir}/pixmaps/bat_icon.png +install -m 644 -D bacula-sqlite/scripts/bgnome-console.pamd %{buildroot}%{_sysconfdir}/pam.d/bacula-tray-monitor +install -m 644 %{SOURCE13} %{buildroot}%{_sysconfdir}/security/console.apps/bacula-tray-monitor - -ln -sf consolehelper %{buildroot}%{_bindir}/gnome-console +ln -sf consolehelper %{buildroot}%{_bindir}/bgnome-console ln -sf consolehelper %{buildroot}%{_bindir}/wxconsole ln -sf consolehelper %{buildroot}%{_bindir}/bat +ln -sf consolehelper %{buildroot}%{_bindir}/bacula-tray-monitor install -m 755 bacula-sqlite/src/qt-console/bat %{buildroot}%{_sbindir} desktop-file-install --vendor="fedora" --dir=%{buildroot}%{_datadir}/applications %{SOURCE3} @@ -823,7 +826,7 @@ fi %config %{_sysconfdir}/security/console.apps/bgnome-console %config %{_sysconfdir}/pam.d/bgnome-console %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/bgnome-console.conf -%{_bindir}/gnome-console +%{_bindir}/bgnome-console %{_sbindir}/bgnome-console %{_mandir}/man1/bacula-bgnome-console.1.gz #%{_mandir}/man1/bacula-bconsole-gnome.1* @@ -968,8 +971,11 @@ fi %files traymonitor %defattr(-,root,root,-) +%{_bindir}/bacula-tray-monitor %{_sbindir}/bacula-tray-monitor %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/tray-monitor.conf +%config %{_sysconfdir}/security/console.apps/bacula-tray-monitor +%config %{_sysconfdir}/pam.d/bacula-tray-monitor %{_mandir}/man1/bacula-tray-monitor.1* %{_datadir}/applications/fedora-bacula-traymonitor.desktop %{_datadir}/pixmaps/bacula-tray-monitor.xpm @@ -997,6 +1003,10 @@ fi %changelog +* Thu Jul 30 2009 Jon Ciesla - 3.0.2-1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dnovotny at fedoraproject.org Fri Jul 31 13:15:48 2009 From: dnovotny at fedoraproject.org (Daniel Novotny) Date: Fri, 31 Jul 2009 13:15:48 +0000 (UTC) Subject: rpms/emacs/devel .cvsignore, 1.26, 1.27 emacs.spec, 1.130, 1.131 sources, 1.28, 1.29 Message-ID: <20090731131548.BF13E11C00CE@cvs1.fedora.phx.redhat.com> Author: dnovotny Update of /cvs/extras/rpms/emacs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28618 Modified Files: .cvsignore emacs.spec sources Log Message: new upstream version 23.1 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/emacs/devel/.cvsignore,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- .cvsignore 18 May 2009 11:02:30 -0000 1.26 +++ .cvsignore 31 Jul 2009 13:15:48 -0000 1.27 @@ -1 +1 @@ -emacs-23.0.93.tar.gz +emacs-23.1.tar.gz Index: emacs.spec =================================================================== RCS file: /cvs/extras/rpms/emacs/devel/emacs.spec,v retrieving revision 1.130 retrieving revision 1.131 diff -u -p -r1.130 -r1.131 --- emacs.spec 24 Jul 2009 22:02:41 -0000 1.130 +++ emacs.spec 31 Jul 2009 13:15:48 -0000 1.131 @@ -3,8 +3,8 @@ Summary: GNU Emacs text editor Name: emacs Epoch: 1 -Version: 23.0.93 -Release: 7%{?dist} +Version: 23.1 +Release: 1%{?dist} License: GPLv3+ URL: http://www.gnu.org/software/emacs/ Group: Applications/Editors @@ -369,6 +369,9 @@ alternatives --install %{_bindir}/etags %dir %{_datadir}/emacs/%{version} %changelog +* Fri Jul 31 2009 Daniel Novotny 1:23.1-1 +- new upstream version 23.1 + * Fri Jul 24 2009 Fedora Release Engineering - 1:23.0.93-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/emacs/devel/sources,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sources 18 May 2009 11:02:30 -0000 1.28 +++ sources 31 Jul 2009 13:15:48 -0000 1.29 @@ -1 +1 @@ -955946a33bbe3bf1dc72da4ea72d3401 emacs-23.0.93.tar.gz +a620d4452769d04ad8864d662f34f8dd emacs-23.1.tar.gz From pghmcfc at fedoraproject.org Fri Jul 31 13:29:09 2009 From: pghmcfc at fedoraproject.org (Paul Howarth) Date: Fri, 31 Jul 2009 13:29:09 +0000 (UTC) Subject: rpms/bluefish/devel bluefish-1.0.7-enchant-configure.patch, NONE, 1.1 bluefish-1.0.7-enchant.patch, NONE, 1.1 bluefish.spec, 1.28, 1.29 Message-ID: <20090731132909.E622811C00CE@cvs1.fedora.phx.redhat.com> Author: pghmcfc Update of /cvs/pkgs/rpms/bluefish/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1465 Modified Files: bluefish.spec Added Files: bluefish-1.0.7-enchant-configure.patch bluefish-1.0.7-enchant.patch Log Message: - Include patch from Caolan McNamara for using enchant rather than aspell for spell-checking (#509514) http://fedoraproject.org/wiki/Releases/FeatureDictionary - Try to maintain timestamps on unmodified files from upstream bluefish-1.0.7-enchant-configure.patch: configure | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) --- NEW FILE bluefish-1.0.7-enchant-configure.patch --- diff -ur bluefish-1.0.7.orig/configure bluefish-1.0.7/configure --- bluefish-1.0.7.orig/configure 2006-11-05 19:36:59.000000000 +0000 +++ bluefish-1.0.7/configure 2009-07-30 16:38:30.000000000 +0100 @@ -4519,7 +4519,20 @@ fi -# On IRIX 5.3, sys/types and inttypes.h are conflicting. +# Check ENCHANT is available +echo -n "checking for enchant... " +if pkg-config --exists enchant ; then + LIBS="$LIBS `pkg-config --libs enchant`" + CFLAGS="$CFLAGS `pkg-config --cflags enchant`" + echo "yes" + cat >>confdefs.h <<\_ACEOF +#define HAVE_ENCHANT 1 +_ACEOF + +else + echo "no" + # otherwise Check ASPELL is available + # On IRIX 5.3, sys/types and inttypes.h are conflicting. @@ -4834,14 +4847,14 @@ echo "${ECHO_T}$ac_cv_lib_aspell_new_aspell_config" >&6; } if test $ac_cv_lib_aspell_new_aspell_config = yes; then LIBS="$LIBS -laspell" - cat >>confdefs.h <<\_ACEOF + cat >>confdefs.h <<\_ACEOF #define HAVE_LIBASPELL 1 _ACEOF else OLDLIBS=$LIBS - LIBS="$OLDSLIBS -lstdc++" - { echo "$as_me:$LINENO: checking for new_aspell_config in -laspell" >&5 + LIBS="$OLDSLIBS -lstdc++" + { echo "$as_me:$LINENO: checking for new_aspell_config in -laspell" >&5 echo $ECHO_N "checking for new_aspell_config in -laspell... $ECHO_C" >&6; } if test "${ac_cv_lib_aspell_new_aspell_config+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4920,13 +4933,13 @@ echo "${ECHO_T}$ac_cv_lib_aspell_new_aspell_config" >&6; } if test $ac_cv_lib_aspell_new_aspell_config = yes; then LIBS="$LIBS -laspell" - cat >>confdefs.h <<\_ACEOF + cat >>confdefs.h <<\_ACEOF #define HAVE_LIBASPELL 1 _ACEOF else LIBS="$OLDSLIBS -laspell-common -lstdc++" - { echo "$as_me:$LINENO: checking for new_aspell_config in -laspell" >&5 + { echo "$as_me:$LINENO: checking for new_aspell_config in -laspell" >&5 echo $ECHO_N "checking for new_aspell_config in -laspell... $ECHO_C" >&6; } if test "${ac_cv_lib_aspell_new_aspell_config+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5005,13 +5018,13 @@ echo "${ECHO_T}$ac_cv_lib_aspell_new_aspell_config" >&6; } if test $ac_cv_lib_aspell_new_aspell_config = yes; then LIBS="$LIBS -laspell" - cat >>confdefs.h <<\_ACEOF + cat >>confdefs.h <<\_ACEOF #define HAVE_LIBASPELL 1 _ACEOF else LIBS=$OLDLIBS - echo "libaspell not found please install libaspell-dev or similar" + echo "libaspell not found please install libaspell-dev or similar" fi @@ -5025,6 +5038,7 @@ fi +fi localedir='${prefix}/share/locale' bluefish-1.0.7-enchant.patch: INSTALL | 2 configure.ac | 33 +++++++---- redhat/bluefish.spec | 4 - src/about.c | 3 + src/bfspell.c | 148 ++++++++++++++++++++++++++++++++++++++++++--------- src/bfspell.h | 4 - src/bluefish.h | 4 - src/config.h.in | 3 + src/gui.c | 8 +- src/menu.c | 8 +- src/rcfile.c | 4 - 11 files changed, 168 insertions(+), 53 deletions(-) --- NEW FILE bluefish-1.0.7-enchant.patch --- diff -ru bluefish-1.0.7.orig/configure.ac bluefish-1.0.7/configure.ac --- bluefish-1.0.7.orig/configure.ac 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/configure.ac 2009-07-02 16:24:04.000000000 +0100 @@ -324,25 +324,36 @@ ) ) -AC_CHECK_HEADER(aspell.h, - AC_CHECK_LIB(aspell, new_aspell_config, - LIBS="$LIBS -laspell" - AC_DEFINE(HAVE_LIBASPELL), - OLDLIBS=$LIBS - LIBS="$OLDSLIBS -lstdc++" - AC_CHECK_LIB(aspell, new_aspell_config, +# Check ENCHANT is available +echo -n "checking for enchant... " +if pkg-config --exists enchant ; then + LIBS="$LIBS `pkg-config --libs enchant`" + CFLAGS="$CFLAGS `pkg-config --cflags enchant`" + echo "yes" + AC_DEFINE(HAVE_ENCHANT) +else + echo "no" + # otherwise Check ASPELL is available + AC_CHECK_HEADER(aspell.h, + AC_CHECK_LIB(aspell, new_aspell_config, LIBS="$LIBS -laspell" AC_DEFINE(HAVE_LIBASPELL), - LIBS="$OLDSLIBS -laspell-common -lstdc++" + OLDLIBS=$LIBS + LIBS="$OLDSLIBS -lstdc++" AC_CHECK_LIB(aspell, new_aspell_config, LIBS="$LIBS -laspell" AC_DEFINE(HAVE_LIBASPELL), - LIBS=$OLDLIBS - echo "libaspell not found please install libaspell-dev or similar" + LIBS="$OLDSLIBS -laspell-common -lstdc++" + AC_CHECK_LIB(aspell, new_aspell_config, + LIBS="$LIBS -laspell" + AC_DEFINE(HAVE_LIBASPELL), + LIBS=$OLDLIBS + echo "libaspell not found please install libaspell-dev or similar" + ) ) ) ) -) +fi localedir='${prefix}/share/locale' AC_SUBST(localedir) diff -ru bluefish-1.0.7.orig/INSTALL bluefish-1.0.7/INSTALL --- bluefish-1.0.7.orig/INSTALL 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/INSTALL 2009-07-02 16:16:47.000000000 +0100 @@ -6,7 +6,7 @@ *libgtk2 (preferrably 2.2.2 or newer) *libpcre *gnome-vfs2 (Optional; for remote file handling) - *aspell (Optional; for spell checking) + *enchant or aspell (Optional; for spell checking) *grep and find are required to use the Advance Open function 2) run ./configure --help diff -ru bluefish-1.0.7.orig/redhat/bluefish.spec bluefish-1.0.7/redhat/bluefish.spec --- bluefish-1.0.7.orig/redhat/bluefish.spec 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/redhat/bluefish.spec 2009-07-02 16:16:29.000000000 +0100 @@ -13,9 +13,9 @@ URL: http://bluefish.openoffice.nl License: GPL Group: Development/Tools -Requires: gtk2, pcre, aspell, gnome-vfs2 +Requires: gtk2, pcre, enchant, gnome-vfs2 BuildRequires: gtk2-devel, pcre-devel, gnome-vfs2-devel -BuildRequires: aspell-devel, desktop-file-utils, gettext +BuildRequires: enchant-devel, desktop-file-utils, gettext Requires(post): desktop-file-utils, shared-mime-info Requires(postun): desktop-file-utils, shared-mime-info BuildRoot: %{_tmppath}/%{name}-%{release}-root diff -ru bluefish-1.0.7.orig/src/about.c bluefish-1.0.7/src/about.c --- bluefish-1.0.7.orig/src/about.c 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/about.c 2009-07-02 16:18:41.000000000 +0100 @@ -201,6 +201,9 @@ notebook = gtk_notebook_new(); config_options = g_strconcat (CONFIGURE_OPTIONS, _("\n\nResulting in the detection of:\n"), +#ifdef HAVE_ENCHANT + "enchant\n", +#endif #ifdef HAVE_LIBASPELL "libaspell\n", #endif diff -ru bluefish-1.0.7.orig/src/bfspell.c bluefish-1.0.7/src/bfspell.c --- bluefish-1.0.7.orig/src/bfspell.c 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/bfspell.c 2009-07-03 08:58:12.000000000 +0100 @@ -22,8 +22,12 @@ #include "config.h" -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) +#if defined(HAVE_LIBASPELL) #include +#elif defined(HAVE_ENCHANT) +#include +#endif #include #include #include /* isdigit() */ @@ -39,8 +43,13 @@ typedef enum {filtnone,filthtml} Tspellfilter; typedef struct { +#if defined(HAVE_ENCHANT) + EnchantBroker *broker; + EnchantDict *spell_checker; +#else AspellConfig *spell_config; AspellSpeller *spell_checker; +#endif Tspellfilter filtert; GtkWidget *win; GtkWidget *lang; @@ -119,19 +128,37 @@ void spell_add_to_session(Tbfspell *bfspell, gboolean to_session, const gchar * word) { DEBUG_MSG("spell_add_to_session, to_session=%d, word=%s\n",to_session,word); if (to_session) { +#ifdef HAVE_ENCHANT + enchant_dict_add_to_session(bfspell->spell_checker, word, strlen(word)); +#else aspell_speller_add_to_session(bfspell->spell_checker, word, -1); +#endif } else { +#ifdef HAVE_ENCHANT + enchant_dict_add(bfspell->spell_checker, word, strlen(word)); +#else aspell_speller_add_to_personal(bfspell->spell_checker, word, -1); +#endif } - } gboolean spell_check_word(Tbfspell *bfspell, gchar * tocheck, GtkTextIter *itstart, GtkTextIter *itend) { if (tocheck && !isdigit(tocheck[0])) { +#ifdef HAVE_ENCHANT + int correct = enchant_dict_check(bfspell->spell_checker, tocheck, strlen(tocheck)) == 0; +#else int correct = aspell_speller_check(bfspell->spell_checker, tocheck, -1); +#endif DEBUG_MSG("word '%s' has correct=%d\n",tocheck,correct); if (!correct) { +#ifdef HAVE_ENCHANT + size_t n_suggs; + char ** suggs; + + suggs = enchant_dict_suggest(bfspell->spell_checker, tocheck, strlen(tocheck), &n_suggs); +#else AspellWordList *awl = (AspellWordList *)aspell_speller_suggest(bfspell->spell_checker, tocheck,-1); +#endif if (!bfspell->so || !bfspell->eo) { bfspell->so = gtk_text_buffer_create_mark(bfspell->doc->buffer,NULL,itstart,FALSE); bfspell->eo = gtk_text_buffer_create_mark(bfspell->doc->buffer,NULL,itend,TRUE); @@ -143,23 +170,39 @@ bfspell->offset = -1; gtk_entry_set_text(GTK_ENTRY(bfspell->incorrectword), tocheck); gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(bfspell->suggestions)->entry), ""); +#ifndef HAVE_ENCHANT if (awl == 0) { DEBUG_MSG("spell_check_word error: %s\n", aspell_speller_error_message(bfspell->spell_checker)); } else { + +#endif GList *poplist=NULL; +#ifdef HAVE_ENCHANT + size_t i; + for (i = 0; i < n_suggs; i++) { + poplist = g_list_append(poplist,g_strdup(suggs[i])); + } +#else AspellStringEnumeration *els = aspell_word_list_elements(awl); const char *word; while ((word = aspell_string_enumeration_next(els)) != 0) { poplist = g_list_append(poplist,g_strdup(word)); } +#endif if (!poplist) { poplist = g_list_append(poplist, g_strdup("(no suggested words)")); } gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(bfspell->suggestions)->entry), ""); gtk_combo_set_popdown_strings(GTK_COMBO(bfspell->suggestions), poplist); free_stringlist(poplist); +#ifdef HAVE_ENCHANT + if (suggs) { + enchant_dict_free_string_list (bfspell->spell_checker, suggs); + } +#else delete_aspell_string_enumeration(els); } +#endif return FALSE; } } @@ -175,8 +218,12 @@ gtk_combo_set_popdown_strings(GTK_COMBO(bfspell->suggestions), poplist); g_list_free(poplist); bfspell->offset = 0; +#ifdef HAVE_ENCHANT + enchant_broker_free_dict(bfspell->broker, bfspell->spell_checker); +#else aspell_speller_save_all_word_lists(bfspell->spell_checker); delete_aspell_speller(bfspell->spell_checker); +#endif bfspell->spell_checker = NULL; spell_gui_set_button_status(bfspell, FALSE); } @@ -208,6 +255,10 @@ void spell_start(Tbfspell *bfspell) { DEBUG_MSG("spell_start, started for bfspell=%p\n",bfspell); +#ifdef HAVE_ENCHANT + bfspell->broker = enchant_broker_init(); + DEBUG_MSG("spell_start, created enchant broker at %p\n",bfspell->broker); +#else bfspell->spell_config = new_aspell_config(); DEBUG_MSG("spell_start, created spell_config at %p\n",bfspell->spell_config); /* @@ -226,16 +277,24 @@ /* * from the aspell manual */ +#endif } static void spell_gui_destroy(GtkWidget * widget, Tbfspell *bfspell) { DEBUG_MSG("spell_gui_destroy started\n"); window_destroy(bfspell->win); +#ifdef HAVE_ENCHANT + if (bfspell->spell_checker) { + enchant_broker_free_dict(bfspell->broker, bfspell->spell_checker); + } + enchant_broker_free(bfspell->broker); +#else if (bfspell->spell_checker) { aspell_speller_save_all_word_lists(bfspell->spell_checker); delete_aspell_speller(bfspell->spell_checker); } delete_aspell_config(bfspell->spell_config); +#endif if (bfspell->so) { gtk_text_buffer_delete_mark(bfspell->doc->buffer, bfspell->so); } @@ -250,7 +309,9 @@ } void spell_gui_ok_clicked_cb(GtkWidget *widget, Tbfspell *bfspell) { +#ifndef HAVE_ENCHANT AspellCanHaveError *possible_err; +#endif const gchar *lang; DEBUG_MSG("spell_gui_ok_clicked_cb, bfspell=%p, bfwin=%p\n",bfspell, bfspell->bfwin); bfspell->doc = bfspell->bfwin->current_document; @@ -260,6 +321,9 @@ lang = g_list_nth_data(bfspell->langs, indx); DEBUG_MSG("spell_gui_ok_clicked_cb, indx=%d has language %s\n",indx,lang); } +#ifdef HAVE_ENCHANT + bfspell->spell_checker = enchant_broker_request_dict (bfspell->broker, lang); +#else aspell_config_replace(bfspell->spell_config, "lang", lang); DEBUG_MSG("spell_gui_ok_clicked_cb, about to create speller for spell_config=%p\n",bfspell->spell_config); @@ -272,7 +336,7 @@ } else { bfspell->spell_checker = to_aspell_speller(possible_err); } - +#endif if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(bfspell->in_doc))) { bfspell->stop_position = gtk_text_buffer_get_char_count(bfspell->doc->buffer); } else { @@ -289,38 +353,68 @@ } } +typedef struct _spellstruct +{ + Tbfspell *bfspell; + GtkWidget *menu; +} spellstruct; + +void DictDescribe(const char * const lang_tag, + const char * const provider_name, + const char * const provider_desc, + const char * const provider_file, + void *user_data) +{ + GtkWidget *menuitem; + GtkWidget *label; + spellstruct *spellinfo = (spellstruct*)user_data; + + menuitem = gtk_menu_item_new(); + label = gtk_label_new(lang_tag); + + gtk_misc_set_alignment(GTK_MISC(label),0,0.5); + gtk_container_add(GTK_CONTAINER(menuitem), label); +/* g_signal_connect(G_OBJECT (menuitem), "activate",G_CALLBACK(),GINT_TO_POINTER(0));*/ + if (strcmp(lang_tag, main_v->props.spell_default_lang) == 0) { + DEBUG_MSG("spell_gui_fill_dicts, lang %s is the default language, inserting menuitem %p at position 0\n",lang_tag,menuitem); + gtk_menu_shell_insert(GTK_MENU_SHELL(spellinfo->menu), menuitem, 0); + spellinfo->bfspell->langs = g_list_prepend(spellinfo->bfspell->langs,g_strdup(lang_tag)); + } else { + DEBUG_MSG("spell_gui_fill_dicts, lang %s is not the default language, appending menuitem %p\n",lang_tag,menuitem); + gtk_menu_shell_append(GTK_MENU_SHELL(spellinfo->menu), menuitem); + spellinfo->bfspell->langs = g_list_append(spellinfo->bfspell->langs,g_strdup(lang_tag)); + } +} + + void spell_gui_fill_dicts(Tbfspell *bfspell) { - GtkWidget *menu, *menuitem; +#ifndef HAVE_ENCHANT AspellDictInfoEnumeration * dels; AspellDictInfoList * dlist; const AspellDictInfo * entry; + dlist = get_aspell_dict_info_list(bfspell->spell_config); dels = aspell_dict_info_list_elements(dlist); +#endif free_stringlist(bfspell->langs); bfspell->langs = NULL; - menu = gtk_menu_new(); - gtk_option_menu_set_menu(GTK_OPTION_MENU(bfspell->lang), menu); + + spellstruct spellinfo; + spellinfo.bfspell = bfspell; + spellinfo.menu = gtk_menu_new(); + gtk_option_menu_set_menu(GTK_OPTION_MENU(bfspell->lang), spellinfo.menu); + +#ifdef HAVE_ENCHANT + enchant_broker_list_dicts(bfspell->broker, DictDescribe, &spellinfo); +#else while ( (entry = aspell_dict_info_enumeration_next(dels)) != 0) { - GtkWidget *label; - menuitem = gtk_menu_item_new(); - label = gtk_label_new(entry->name); - gtk_misc_set_alignment(GTK_MISC(label),0,0.5); - gtk_container_add(GTK_CONTAINER(menuitem), label); -/* g_signal_connect(G_OBJECT (menuitem), "activate",G_CALLBACK(),GINT_TO_POINTER(0));*/ - if (strcmp(entry->name, main_v->props.spell_default_lang) == 0) { - DEBUG_MSG("spell_gui_fill_dicts, lang %s is the default language, inserting menuitem %p at position 0\n",entry->name,menuitem); - gtk_menu_shell_insert(GTK_MENU_SHELL(menu), menuitem, 0); - bfspell->langs = g_list_prepend(bfspell->langs,g_strdup(entry->name)); - } else { - DEBUG_MSG("spell_gui_fill_dicts, lang %s is not the default language, appending menuitem %p\n",entry->name,menuitem); - gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); - bfspell->langs = g_list_append(bfspell->langs,g_strdup(entry->name)); - } + DictDescribe(entry->name, "", "", "", &spellinfo); } delete_aspell_dict_info_enumeration(dels); - gtk_widget_show_all(menu); - gtk_option_menu_set_menu(GTK_OPTION_MENU(bfspell->lang), menu); +#endif + gtk_widget_show_all(spellinfo.menu); + gtk_option_menu_set_menu(GTK_OPTION_MENU(bfspell->lang), spellinfo.menu); DEBUG_MSG("spell_gui_fill_dicts, set item 0 as selected item\n"); gtk_option_menu_set_history(GTK_OPTION_MENU(bfspell->lang),0); } @@ -353,8 +447,12 @@ GtkTextIter iter; const gchar *original = gtk_entry_get_text(GTK_ENTRY(bfspell->incorrectword)); const gchar *newstring = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(bfspell->suggestions)->entry)); - +#ifdef HAVE_ENCHANT + enchant_dict_store_replacement (bfspell->spell_checker, original, strlen(original), + newstring, strlen(newstring)); +#else aspell_speller_store_replacement(bfspell->spell_checker,original,-1,newstring,-1); +#endif gtk_text_buffer_get_iter_at_mark(bfspell->doc->buffer,&iter,bfspell->so); start = gtk_text_iter_get_offset(&iter); @@ -498,4 +596,4 @@ spell_start(bfspell); spell_gui_fill_dicts(bfspell); } -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ diff -ru bluefish-1.0.7.orig/src/bfspell.h bluefish-1.0.7/src/bfspell.h --- bluefish-1.0.7.orig/src/bfspell.h 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/bfspell.h 2009-07-02 16:30:48.000000000 +0100 @@ -18,6 +18,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) void spell_check_cb(GtkWidget *widget, Tbfwin *bfwin); -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ diff -ru bluefish-1.0.7.orig/src/bluefish.h bluefish-1.0.7/src/bluefish.h --- bluefish-1.0.7.orig/src/bluefish.h 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/bluefish.h 2009-07-02 16:21:41.000000000 +0100 @@ -220,9 +220,9 @@ gint leftpanel_tabposition; gchar *default_basedir; gchar *project_suffix; -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) gchar *spell_default_lang; -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ /* not yet in use */ gchar *image_editor_cline; /* image editor commandline */ gint allow_dep; /* allow ... */ diff -ru bluefish-1.0.7.orig/src/config.h.in bluefish-1.0.7/src/config.h.in --- bluefish-1.0.7.orig/src/config.h.in 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/config.h.in 2009-07-02 16:17:15.000000000 +0100 @@ -51,6 +51,9 @@ /* libaspell */ #undef HAVE_LIBASPELL +/* libaspell */ +#undef HAVE_ENCHANT + /* gnome-vfs-2.0 */ #undef HAVE_GNOME_VFS diff -ru bluefish-1.0.7.orig/src/gui.c bluefish-1.0.7/src/gui.c --- bluefish-1.0.7.orig/src/gui.c 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/gui.c 2009-07-02 16:21:09.000000000 +0100 @@ -55,9 +55,9 @@ #include "quickstart.h" #endif /* HAVE_ATLEAST_GTK_2_4 */ -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) #include "bfspell.h" -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ typedef struct { GtkWidget *window; @@ -1123,10 +1123,10 @@ /* gtk_toolbar_append_item(GTK_TOOLBAR(toolbar), NULL, _("Print..."), "", new_pixmap(015), G_CALLBACK(file_print_cb), NULL);*/ -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) gtk_toolbar_insert_stock (GTK_TOOLBAR (toolbar), GTK_STOCK_SPELL_CHECK, _("Spellcheck..."), "", G_CALLBACK(spell_check_cb), bfwin, -1); -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ gtk_toolbar_append_item(GTK_TOOLBAR(toolbar), NULL, _("View in browser"), "", diff -ru bluefish-1.0.7.orig/src/menu.c bluefish-1.0.7/src/menu.c --- bluefish-1.0.7.orig/src/menu.c 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/menu.c 2009-07-02 16:20:01.000000000 +0100 @@ -280,11 +280,11 @@ exit(123); } } -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) static void spell_check_menu_cb(Tbfwin *bfwin,guint callback_action, GtkWidget *widget) { spell_check_cb(NULL, bfwin); } -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ static void menu_bmark_operations_cb(Tbfwin *bfwin,guint callback_action, GtkWidget *widget) { switch(callback_action) { @@ -696,9 +696,9 @@ {N_("/Document/Character _Encoding"), NULL, NULL, 0, ""}, {"/Document/Character Encoding/tearoff1", NULL, NULL, 0, ""}, {"/Document/sep4", NULL, NULL, 0, ""}, -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) {N_("/Document/Check _Spelling..."), NULL, spell_check_menu_cb, 0, "", GTK_STOCK_SPELL_CHECK}, -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ {N_("/Document/_Floating window"), NULL, file_floatingview_menu_cb, 1, ""}, {N_("/Document/Word _Count"), NULL, word_count_cb, 1, ""}, {N_("/_Go"), NULL, NULL, 0, ""}, diff -ru bluefish-1.0.7.orig/src/rcfile.c bluefish-1.0.7/src/rcfile.c --- bluefish-1.0.7.orig/src/rcfile.c 2009-07-02 16:05:14.000000000 +0100 +++ bluefish-1.0.7/src/rcfile.c 2009-07-02 16:20:29.000000000 +0100 @@ -391,9 +391,9 @@ init_prop_integer (&config_rc, &main_v->props.leftpanel_tabposition,"leftpanel_tabposition:",(gint)GTK_POS_BOTTOM, TRUE); init_prop_string (&config_rc, &main_v->props.default_basedir,"default_basedir:",g_get_home_dir()); init_prop_string (&config_rc, &main_v->props.project_suffix,"project_suffix:",".bfproject"); -#ifdef HAVE_LIBASPELL +#if defined(HAVE_ENCHANT) || defined(HAVE_LIBASPELL) init_prop_string(&config_rc, &main_v->props.spell_default_lang, "spell_default_lang:", "en"); -#endif /* HAVE_LIBASPELL */ +#endif /* HAVE_ENCHANT || HAVE_LIBASPELL */ /* not yet in use */ init_prop_string(&config_rc, &main_v->props.image_editor_cline, "image_editor_command:", "gimp-remote -n \"%s\"&"); init_prop_integer(&config_rc, &main_v->props.allow_dep, "allow_the_use_of_font:", 0, TRUE); Index: bluefish.spec =================================================================== RCS file: /cvs/pkgs/rpms/bluefish/devel/bluefish.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- bluefish.spec 24 Jul 2009 18:14:47 -0000 1.28 +++ bluefish.spec 31 Jul 2009 13:29:09 -0000 1.29 @@ -9,16 +9,18 @@ Name: bluefish Version: 1.0.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: GTK2 web development application for experienced users Group: Development/Tools License: GPLv2+ URL: http://bluefish.openoffice.nl/ Source0: http://www.bennewitz.com/bluefish/stable/source/bluefish-%{version}.tar.bz2 Patch0: bluefish-1.0.7-syntax-highlight.patch +Patch1: bluefish-1.0.7-enchant.patch +Patch2: bluefish-1.0.7-enchant-configure.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: aspell-devel >= 0.5 BuildRequires: desktop-file-utils +BuildRequires: enchant-devel BuildRequires: gettext BuildRequires: gnome-vfs2-devel BuildRequires: gtk2-devel >= 2.0.6 @@ -54,8 +56,14 @@ Files common to every architecture versi %prep %setup -q + +# Upstream patch to work around problem editing syntax highlighting patterns (#390871) %patch0 -p0 +# Use enchant rather than aspell (#509514, http://bugzilla.gnome.org/587666) +%patch1 -p1 +%patch2 -p1 + %build %configure --disable-update-databases %{__make} %{?_smp_mflags} @@ -63,7 +71,10 @@ Files common to every architecture versi %install %{__rm} -rf %{buildroot} %{__mkdir_p} %{buildroot}%{_datadir}/applications -%{__make} install DESTDIR=%{buildroot} INSTALL_PROGRAM="%{__install} -m 755" +%{__make} install \ + DESTDIR=%{buildroot} \ + INSTALL="%{__install} -p" \ + INSTALL_PROGRAM="%{__install} -m 755" %find_lang %{name} /usr/bin/desktop-file-install --vendor fedora --delete-original \ @@ -115,6 +126,12 @@ Files common to every architecture versi %{_mandir}/man1/bluefish.1* %changelog +* Thu Jul 30 2009 Paul Howarth - 1.0.7-8 +- Include patch from Caolan McNamara for using enchant rather than aspell for + spell-checking (#509514) + http://fedoraproject.org/wiki/Releases/FeatureDictionary +- Try to maintain timestamps on unmodified files from upstream + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From mclasen at fedoraproject.org Fri Jul 31 13:30:14 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 31 Jul 2009 13:30:14 +0000 (UTC) Subject: rpms/gnome-media/devel gnome-media.spec,1.175,1.176 Message-ID: <20090731133014.7E99811C0503@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-media/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1720 Modified Files: gnome-media.spec Log Message: fix a split-induced problem Index: gnome-media.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-media/devel/gnome-media.spec,v retrieving revision 1.175 retrieving revision 1.176 diff -u -p -r1.175 -r1.176 --- gnome-media.spec 31 Jul 2009 04:45:46 -0000 1.175 +++ gnome-media.spec 31 Jul 2009 13:30:14 -0000 1.176 @@ -14,7 +14,7 @@ Summary: GNOME media programs Name: gnome-media Version: 2.27.5 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ and GFDL Group: Applications/Multimedia Source: http://download.gnome.org/sources/gnome-media/2.27/gnome-media-%{version}.tar.bz2 @@ -47,7 +47,7 @@ BuildRequires: unique-devel %description This package contains a few media utilities for the GNOME desktop, -including a sound recorder and an audio mixer. +including a volume control and a configuration utility for audio profiles. %package devel Summary: Development files for gnome-media @@ -78,8 +78,8 @@ Requires: %{name} = %{version}-%{release %description apps This package contains an application to record and play sound files -in various formats, a configuration utility for audio profiles and -a configuration utility for the gstreamer media framework. +in various formats and a configuration utility for the gstreamer media +framework. %prep %setup -q @@ -280,6 +280,7 @@ fi %doc AUTHORS COPYING NEWS README %{_bindir}/gnome-volume-control %{_bindir}/gnome-volume-control-applet +%{_bindir}/gnome-audio-profiles-properties %{_sysconfdir}/xdg/autostart/gnome-volume-control-applet.desktop %{_datadir}/applications/gnome-volume-control.desktop %{_datadir}/icons/hicolor/*/apps/gnome-volume-control* @@ -301,18 +302,21 @@ fi %files apps -f apps.lang %defattr(-, root, root) %{_bindir}/gnome-sound-recorder -%{_bindir}/gnome-audio-profiles-properties -%{_bindir}/gstreamer-properties %{_datadir}/gnome-sound-recorder -%{_datadir}/gstreamer-properties %config %{_sysconfdir}/gconf/schemas/gnome-sound-recorder.schemas %{_datadir}/applications/gnome-sound-recorder.desktop -%{_datadir}/applications/gstreamer-properties.desktop %{_datadir}/icons/hicolor/*/apps/gnome-sound-recorder* + +%{_bindir}/gstreamer-properties +%{_datadir}/gstreamer-properties +%{_datadir}/applications/gstreamer-properties.desktop %{_datadir}/icons/hicolor/*/apps/gstreamer-properties* %changelog +* Fri Jul 31 2009 Matthias Clasen 2.27.5-3 +- Adjust the package split to not break rhythmbox + * Fri Jul 31 2009 Matthias Clasen 2.27.5-2 - Split off an apps subpackage From rcritten at fedoraproject.org Fri Jul 31 13:43:10 2009 From: rcritten at fedoraproject.org (rcritten) Date: Fri, 31 Jul 2009 13:43:10 +0000 (UTC) Subject: rpms/jss/F-10 jss-ECC-pop.patch, NONE, 1.1 jss-ipv6.patch, NONE, 1.1 jss.spec, 1.6, 1.7 Message-ID: <20090731134310.BE6F611C00CE@cvs1.fedora.phx.redhat.com> Author: rcritten Update of /cvs/extras/rpms/jss/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6322 Modified Files: jss.spec Added Files: jss-ECC-pop.patch jss-ipv6.patch Log Message: - Support ECC POP on the server (#224688) - Server Sockets are hard coded to IPV4 (#469456) - Set NSS dependency >= 3.12.3.99 jss-ECC-pop.patch: CertReqMsg.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- NEW FILE jss-ECC-pop.patch --- diff -rupN jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java --- jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2004-04-25 08:02:26.000000000 -0700 +++ jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2009-07-27 13:38:38.197422000 -0700 @@ -130,6 +130,16 @@ public class CertReqMsg implements ASN1V /////////////////////////////////////////////////////////////////////// public void verify() throws SignatureException, + InvalidKeyFormatException, NoSuchAlgorithmException, + org.mozilla.jss.CryptoManager.NotInitializedException, + TokenException, java.security.InvalidKeyException, IOException{ + + CryptoToken token = CryptoManager.getInstance() + .getInternalCryptoToken(); + verify(token); + } + + public void verify(CryptoToken token) throws SignatureException, InvalidKeyFormatException, NoSuchAlgorithmException, org.mozilla.jss.CryptoManager.NotInitializedException, TokenException, java.security.InvalidKeyException, IOException{ @@ -149,8 +159,6 @@ public class CertReqMsg implements ASN1V pubkey = (PublicKey) spi.toPublicKey(); } - CryptoToken token = CryptoManager.getInstance() - .getInternalCryptoToken(); SignatureAlgorithm sigAlg = SignatureAlgorithm.fromOID(alg.getOID()); Signature sig = token.getSignatureContext(sigAlg); jss-ipv6.patch: lib/jss.def | 2 org/mozilla/jss/ssl/SSLServerSocket.java | 27 ++--- org/mozilla/jss/ssl/SSLSocket.c | 63 +++++++++++ org/mozilla/jss/ssl/SSLSocket.java | 9 + org/mozilla/jss/ssl/SocketBase.java | 77 +++++++++++++- org/mozilla/jss/ssl/common.c | 163 +++++++++++++++++++++++++++++-- org/mozilla/jss/ssl/javasock.c | 19 ++- org/mozilla/jss/util/java_ids.h | 2 8 files changed, 322 insertions(+), 40 deletions(-) --- NEW FILE jss-ipv6.patch --- diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def jss-4.2.6/mozilla/security/jss/lib/jss.def --- jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def 2009-06-24 17:08:59.784371000 -0700 +++ jss-4.2.6/mozilla/security/jss/lib/jss.def 2009-06-19 17:56:00.000000000 -0700 @@ -175,6 +175,7 @@ Java_org_mozilla_jss_ssl_SSLServerSocket Java_org_mozilla_jss_ssl_SSLSocket_forceHandshake; Java_org_mozilla_jss_ssl_SSLSocket_getKeepAlive; Java_org_mozilla_jss_ssl_SSLSocket_getLocalAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative; Java_org_mozilla_jss_ssl_SSLSocket_getPort; Java_org_mozilla_jss_ssl_SSLSocket_getReceiveBufferSize; Java_org_mozilla_jss_ssl_SSLSocket_getSendBufferSize; @@ -199,6 +200,7 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke Java_org_mozilla_jss_ssl_SSLSocket_socketWrite; Java_org_mozilla_jss_ssl_SocketBase_getLocalPortNative; Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative; Java_org_mozilla_jss_ssl_SocketBase_setClientCertNicknameNative; Java_org_mozilla_jss_ssl_SocketBase_requestClientAuthNoExpiryCheckNative; Java_org_mozilla_jss_ssl_SocketBase_setSSLOption; diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2009-06-24 13:46:49.000000000 -0700 @@ -36,7 +36,8 @@ package org.mozilla.jss.ssl; -import java.net.InetAddress; +import java.util.*; +import java.net.*; import java.io.IOException; import java.net.Socket; import java.net.SocketException; @@ -138,34 +139,34 @@ public class SSLServerSocket extends jav super.close(); // create the socket + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } + sockProxy = new SocketProxy( - base.socketCreate(this, certApprovalCallback, null) ); + base.socketCreate(this, certApprovalCallback, null,socketFamily) ); base.setProxy(sockProxy); setReuseAddress(reuseAddr); - // bind it to the local address and port - if( bindAddr == null ) { - bindAddr = anyLocalAddr; - } byte[] bindAddrBA = null; if( bindAddr != null ) { bindAddrBA = bindAddr.getAddress(); } base.socketBind(bindAddrBA, port); + + String hostName = null; + if(bindAddr != null) { + hostName = bindAddr.getCanonicalHostName(); + } socketListen(backlog); } private native void socketListen(int backlog) throws SocketException; - private static InetAddress anyLocalAddr; - static { - try { - anyLocalAddr = InetAddress.getByName("0.0.0.0"); - } catch (java.net.UnknownHostException e) { } - } - /** * Accepts a connection. This call will block until a connection is made * or the timeout is reached. diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2009-06-24 13:27:15.000000000 -0700 @@ -460,10 +460,15 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; int stat; const char *hostnameStr=NULL; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -472,16 +477,32 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + + PR_ASSERT(addrBALen != 0); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); /* * Tell SSL the URL we think we want to connect to. @@ -495,6 +516,38 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke goto finish; } + if( addrBAelems == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + if(addrBALen != 4 && addrBALen != 16) { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + } + /* * make the connect call */ diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2009-06-24 13:45:59.000000000 -0700 @@ -243,11 +243,16 @@ public class SSLSocket extends java.net. SSLClientCertificateSelectionCallback clientCertSelectionCallback) throws IOException { + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } // create the socket sockProxy = new SocketProxy( base.socketCreate( - this, certApprovalCallback, clientCertSelectionCallback) ); + this, certApprovalCallback, clientCertSelectionCallback,socketFamily) ); base.setProxy(sockProxy); @@ -288,7 +293,7 @@ public class SSLSocket extends java.net. new SocketProxy( base.socketCreate( this, certApprovalCallback, clientCertSelectionCallback, - s, host ) ); + s, host,SocketBase.SSL_AF_INET ) ); base.setProxy(sockProxy); resetHandshake(); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2009-06-24 13:50:32.000000000 -0700 @@ -70,16 +70,16 @@ class SocketBase { native byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, SSLClientCertificateSelectionCallback clientCertSelectionCallback, - java.net.Socket javaSock, String host) + java.net.Socket javaSock, String host,int family) throws SocketException; byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, - SSLClientCertificateSelectionCallback clientCertSelectionCallback) + SSLClientCertificateSelectionCallback clientCertSelectionCallback,int family) throws SocketException { return socketCreate(socketObject, certApprovalCallback, - clientCertSelectionCallback, null, null); + clientCertSelectionCallback, null, null,family); } native void socketBind(byte[] addrBA, int port) throws SocketException; @@ -115,6 +115,10 @@ class SocketBase { static final int SSL_REQUIRE_FIRST_HANDSHAKE = 20; static final int SSL_REQUIRE_NO_ERROR = 21; + + static final int SSL_AF_INET = 50; + static final int SSL_AF_INET6 = 51; + void close() throws IOException { socketClose(); } @@ -281,13 +285,25 @@ class SocketBase { return in; } + private native byte[] getLocalAddressByteArrayNative() throws SocketException; + private native byte[] getPeerAddressByteArrayNative() throws SocketException; /** * @return the InetAddress of the peer end of the socket. */ InetAddress getInetAddress() { try { - return convertIntToInetAddress( getPeerAddressNative() ); + byte[] address = getPeerAddressByteArrayNative(); + + InetAddress iAddr = null; + + try { + + iAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return iAddr; } catch(SocketException e) { return null; } @@ -299,7 +315,17 @@ class SocketBase { */ InetAddress getLocalAddress() { try { - return convertIntToInetAddress( getLocalAddressNative() ); + byte[] address = getLocalAddressByteArrayNative(); + + InetAddress lAddr = null; + + try { + + lAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return lAddr; } catch(SocketException e) { return null; } @@ -378,4 +404,45 @@ class SocketBase { return topException; } } + + static private int supportsIPV6 = -1; + static boolean supportsIPV6() { + + if(supportsIPV6 >= 0) { + if(supportsIPV6 > 0) { + return true; + } else { + return false; + } + } + + Enumeration netInter; + try { + netInter = NetworkInterface.getNetworkInterfaces(); + } catch (SocketException e) { + + return false; + } + while ( netInter.hasMoreElements() ) + { + NetworkInterface ni = (NetworkInterface)netInter.nextElement(); + Enumeration addrs = ni.getInetAddresses(); + while ( addrs.hasMoreElements() ) + { + Object o = addrs.nextElement(); + if ( o.getClass() == InetAddress.class || + o.getClass() == Inet4Address.class || + o.getClass() == Inet6Address.class ) + { + InetAddress iaddr = (InetAddress) o; + if(o.getClass() == Inet6Address.class) { + supportsIPV6 = 1; + return true; + } + } + } + } + supportsIPV6 = 0; + return false; + } } diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2009-06-24 14:22:02.000000000 -0700 @@ -33,7 +33,6 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ - #include #include #include @@ -51,6 +50,9 @@ #include #endif +#define SSL_AF_INET 50 +#define SSL_AF_INET6 51 + void JSSL_throwSSLSocketException(JNIEnv *env, char *message) { @@ -142,7 +144,7 @@ finish: JNIEXPORT jbyteArray JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketCreate(JNIEnv *env, jobject self, jobject sockObj, jobject certApprovalCallback, - jobject clientCertSelectionCallback, jobject javaSock, jstring host) + jobject clientCertSelectionCallback, jobject javaSock, jstring host,jint family) { jbyteArray sdArray = NULL; JSSL_SocketData *sockdata = NULL; @@ -150,10 +152,21 @@ Java_org_mozilla_jss_ssl_SocketBase_sock PRFileDesc *newFD; PRFileDesc *tmpFD; PRFilePrivate *priv = NULL; + int socketFamily = 0; + + if (family != SSL_AF_INET6 && family != SSL_AF_INET) { + JSSL_throwSSLSocketException(env, + "socketCreate() Invalid family!"); + goto finish; + } + if( family == SSL_AF_INET) + socketFamily = PR_AF_INET; + else + socketFamily = PR_AF_INET6; if( javaSock == NULL ) { /* create a TCP socket */ - newFD = PR_NewTCPSocket(); + newFD = PR_OpenTCPSocket(socketFamily); if( newFD == NULL ) { JSSL_throwSSLSocketException(env, "PR_NewTCPSocket() returned NULL"); @@ -394,10 +407,10 @@ PRInt32 JSSL_enums[] = { SSL_REQUIRE_ALWAYS, /* 19 */ /* ssl.h */ SSL_REQUIRE_FIRST_HANDSHAKE,/* 20 */ /* ssl.h */ SSL_REQUIRE_NO_ERROR, /* 21 */ /* ssl.h */ - 0 }; + JNIEXPORT void JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketBind (JNIEnv *env, jobject self, jbyteArray addrBA, jint port) @@ -405,8 +418,13 @@ Java_org_mozilla_jss_ssl_SocketBase_sock JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -415,19 +433,72 @@ Java_org_mozilla_jss_ssl_SocketBase_sock /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); + + /* + * Do we support IPV6? + */ + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + + memset( &addr, 0, sizeof( PRNetAddr )); + if( addrBA != NULL ) { - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); + + if(addrBALen != 4 && addrBALen != 16) { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = PR_AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.inet.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + } } else { - addr.inet.ip = PR_htonl(INADDR_ANY); + if(supportsIPV6) { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET6, port, &addr); + } else { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET, port, &addr); + } } /* do the bind() call */ @@ -601,6 +672,78 @@ finish: return status; } +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, PEER_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size ,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, LOCAL_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +/* Leave the original versions of these functions for compatibility */ + JNIEXPORT jint JNICALL Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative (JNIEnv *env, jobject self) diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2009-06-24 13:43:13.000000000 -0700 @@ -290,6 +290,7 @@ getInetAddress(PRFileDesc *fd, PRNetAddr jobject inetAddress; jbyteArray addrByteArray; jint port; + int addrBALen = 0; if( GET_ENV(fd->secret->javaVM, env) ) goto finish; @@ -377,8 +378,9 @@ getInetAddress(PRFileDesc *fd, PRNetAddr memset(addr, 0, sizeof(PRNetAddr)); - /* we only handle IPV4 */ - PR_ASSERT( (*env)->GetArrayLength(env, addrByteArray) == 4 ); + addrBALen = (*env)->GetArrayLength(env, addrByteArray); + + PR_ASSERT( (addrBALen == 4) || (addrBALen == 16 ) ); /* make sure you release them later */ addrBytes = (*env)->GetByteArrayElements(env, addrByteArray, NULL); @@ -388,9 +390,16 @@ getInetAddress(PRFileDesc *fd, PRNetAddr } /* ip field is in network byte order */ - memcpy( (void*) &addr->inet.ip, addrBytes, 4); - addr->inet.family = PR_AF_INET; - addr->inet.port = port; + + if (addrBALen == 4) { + memcpy( (void*) &addr->inet.ip, addrBytes, 4); + addr->inet.family = PR_AF_INET; + addr->inet.port = port; + } else { + memcpy( (void*) &addr->ipv6.ip,addrBytes, 16); + addr->inet.family = PR_AF_INET6; + addr->inet.port = port; + } (*env)->ReleaseByteArrayElements(env, addrByteArray, addrBytes, JNI_ABORT); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2006-02-22 17:21:52.000000000 -0800 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2009-06-19 17:56:00.000000000 -0700 @@ -312,6 +312,8 @@ PR_BEGIN_EXTERN_C #define SOCKET_BASE_NAME "org/mozilla/jss/ssl/SocketBase" #define PROCESS_EXCEPTIONS_NAME "processExceptions" #define PROCESS_EXCEPTIONS_SIG "(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;" +#define SUPPORTS_IPV6_NAME "supportsIPV6" +#define SUPPORTS_IPV6_SIG "()Z" /* * SSLCertificateApprovalCallback Index: jss.spec =================================================================== RCS file: /cvs/extras/rpms/jss/F-10/jss.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- jss.spec 5 Jun 2009 17:49:03 -0000 1.6 +++ jss.spec 31 Jul 2009 13:43:10 -0000 1.7 @@ -1,6 +1,6 @@ Name: jss Version: 4.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java Security Services (JSS) Group: System Environment/Libraries @@ -16,13 +16,16 @@ Source2: gpl.txt Source3: lgpl.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: nss-devel >= 3.12.0 +BuildRequires: nss-devel >= 3.12.3.99 BuildRequires: nspr-devel >= 4.6.99 BuildRequires: java-devel Requires: java +Requires: nss >= 3.12.3.99 Patch1: jss-key_pair_usage_with_op_flags.patch Patch2: jss-javadocs-param.patch +Patch3: jss-ipv6.patch +Patch4: jss-ECC-pop.patch %description Java Security Services (JSS) is a java native interface which provides a bridge @@ -41,6 +44,8 @@ This package contains the API documentat %setup -q %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 %build [ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java @@ -136,6 +141,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Rob Crittenden 4.2.6-2 +- Support ECC POP on the server (#224688) +- Server Sockets are hard coded to IPV4 (#469456) +- Set NSS dependency >= 3.12.3.99 + * Fri Jun 5 2009 Rob Crittenden 4.2.6-1 - Update to 4.2.6 - Include patch to add jss interface to PK11_GenerateKeyPairWithOpFlags() From limb at fedoraproject.org Fri Jul 31 13:48:26 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 31 Jul 2009 13:48:26 +0000 (UTC) Subject: rpms/bacula/F-11 bacula-traymonitor.desktop.consolehelper, NONE, 1.1 bacula.spec, 1.25, 1.26 Message-ID: <20090731134826.A750D11C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8239 Modified Files: bacula.spec Added Files: bacula-traymonitor.desktop.consolehelper Log Message: gnome-console consolehelper correction. BZ 426790. add tray-monitor to consolehelper. BZ 426790 --- NEW FILE bacula-traymonitor.desktop.consolehelper --- [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server Exec=/usr/bin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- bacula.spec 23 Jul 2009 16:22:34 -0000 1.25 +++ bacula.spec 31 Jul 2009 13:48:26 -0000 1.26 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 2.4.4 -Release: 4%{?dist} +Release: 5%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -25,6 +25,7 @@ Source9: bacula-sd.init #Source10: http://download.sourceforge.net/bacula/bacula-gui-%{gui_version}.tar.gz #Source11: bacula-web.apache Source12: bacula-bat.desktop +Source13: bacula-traymonitor.desktop.consolehelper Patch0: bacula-director-configuration.patch Patch1: bacula-config.patch #Patch2: bacula-wxconsole.patch @@ -571,12 +572,14 @@ install -m 644 -D bacula-sqlite/scripts/ install -m 644 -D bacula-sqlite/scripts/bat.desktop.consolehelper %{buildroot}%{_sysconfdir}/security/console.apps/bat install -m 644 -D bacula-sqlite/src/tray-monitor/generic.xpm %{buildroot}%{_datadir}/pixmaps/bacula-tray-monitor.xpm install -m 644 -D bacula-sqlite/src/qt-console/images/bat_icon.png %{buildroot}%{_datadir}/pixmaps/bat_icon.png +install -m 644 -D bacula-sqlite/scripts/bgnome-console.pamd %{buildroot}%{_sysconfdir}/pam.d/bacula-tray-monitor +install -m 644 %{SOURCE13} %{buildroot}%{_sysconfdir}/security/console.apps/bacula-tray-monitor - -ln -sf consolehelper %{buildroot}%{_bindir}/gnome-console +ln -sf consolehelper %{buildroot}%{_bindir}/bgnome-console ln -sf consolehelper %{buildroot}%{_bindir}/wxconsole ln -sf consolehelper %{buildroot}%{_bindir}/bat install -m 755 bacula-sqlite/src/qt-console/bat %{buildroot}%{_sbindir} +ln -sf consolehelper %{buildroot}%{_bindir}/bacula-tray-monitor desktop-file-install --vendor="fedora" --dir=%{buildroot}%{_datadir}/applications %{SOURCE3} desktop-file-install --vendor="fedora" --dir=%{buildroot}%{_datadir}/applications %{SOURCE4} @@ -817,7 +820,7 @@ fi %config %{_sysconfdir}/security/console.apps/bgnome-console %config %{_sysconfdir}/pam.d/bgnome-console %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/bgnome-console.conf -%{_bindir}/gnome-console +%{_bindir}/bgnome-console %{_sbindir}/bgnome-console %{_mandir}/man1/bacula-bgnome-console.1.gz #%{_mandir}/man1/bacula-bconsole-gnome.1* @@ -962,8 +965,11 @@ fi %files traymonitor %defattr(-,root,root,-) +%{_bindir}/bacula-tray-monitor %{_sbindir}/bacula-tray-monitor %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/tray-monitor.conf +> %config %{_sysconfdir}/security/console.apps/bacula-tray-monitor +> %config %{_sysconfdir}/pam.d/bacula-tray-monitor %{_mandir}/man1/bacula-tray-monitor.1* %{_datadir}/applications/fedora-bacula-traymonitor.desktop %{_datadir}/pixmaps/bacula-tray-monitor.xpm @@ -990,6 +996,10 @@ fi %changelog +> * Thu Jul 30 2009 Jon Ciesla - gnome-console consolehelper correction. BZ 426790. +> - add tray-monitor to consolehelper. BZ 426790 + * Thu Jul 23 2009 Jon Ciesla Author: limb Update of /cvs/pkgs/rpms/bacula/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8618 Modified Files: bacula.spec Log Message: Oops. Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- bacula.spec 31 Jul 2009 13:48:26 -0000 1.26 +++ bacula.spec 31 Jul 2009 13:49:14 -0000 1.27 @@ -996,9 +996,9 @@ fi %changelog -> * Thu Jul 30 2009 Jon Ciesla - gnome-console consolehelper correction. BZ 426790. -> - add tray-monitor to consolehelper. BZ 426790 +* Thu Jul 30 2009 Jon Ciesla Author: rcritten Update of /cvs/extras/rpms/jss/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10149 Modified Files: jss.spec Added Files: jss-ECC-pop.patch jss-ipv6.patch Log Message: - Support ECC POP on the server (#224688) - Server Sockets are hard coded to IPV4 (#469456) - Set NSS dependency >= 3.12.3.99 jss-ECC-pop.patch: CertReqMsg.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- NEW FILE jss-ECC-pop.patch --- diff -rupN jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java --- jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2004-04-25 08:02:26.000000000 -0700 +++ jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2009-07-27 13:38:38.197422000 -0700 @@ -130,6 +130,16 @@ public class CertReqMsg implements ASN1V /////////////////////////////////////////////////////////////////////// public void verify() throws SignatureException, + InvalidKeyFormatException, NoSuchAlgorithmException, + org.mozilla.jss.CryptoManager.NotInitializedException, + TokenException, java.security.InvalidKeyException, IOException{ + + CryptoToken token = CryptoManager.getInstance() + .getInternalCryptoToken(); + verify(token); + } + + public void verify(CryptoToken token) throws SignatureException, InvalidKeyFormatException, NoSuchAlgorithmException, org.mozilla.jss.CryptoManager.NotInitializedException, TokenException, java.security.InvalidKeyException, IOException{ @@ -149,8 +159,6 @@ public class CertReqMsg implements ASN1V pubkey = (PublicKey) spi.toPublicKey(); } - CryptoToken token = CryptoManager.getInstance() - .getInternalCryptoToken(); SignatureAlgorithm sigAlg = SignatureAlgorithm.fromOID(alg.getOID()); Signature sig = token.getSignatureContext(sigAlg); jss-ipv6.patch: lib/jss.def | 2 org/mozilla/jss/ssl/SSLServerSocket.java | 27 ++--- org/mozilla/jss/ssl/SSLSocket.c | 63 +++++++++++ org/mozilla/jss/ssl/SSLSocket.java | 9 + org/mozilla/jss/ssl/SocketBase.java | 77 +++++++++++++- org/mozilla/jss/ssl/common.c | 163 +++++++++++++++++++++++++++++-- org/mozilla/jss/ssl/javasock.c | 19 ++- org/mozilla/jss/util/java_ids.h | 2 8 files changed, 322 insertions(+), 40 deletions(-) --- NEW FILE jss-ipv6.patch --- diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def jss-4.2.6/mozilla/security/jss/lib/jss.def --- jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def 2009-06-24 17:08:59.784371000 -0700 +++ jss-4.2.6/mozilla/security/jss/lib/jss.def 2009-06-19 17:56:00.000000000 -0700 @@ -175,6 +175,7 @@ Java_org_mozilla_jss_ssl_SSLServerSocket Java_org_mozilla_jss_ssl_SSLSocket_forceHandshake; Java_org_mozilla_jss_ssl_SSLSocket_getKeepAlive; Java_org_mozilla_jss_ssl_SSLSocket_getLocalAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative; Java_org_mozilla_jss_ssl_SSLSocket_getPort; Java_org_mozilla_jss_ssl_SSLSocket_getReceiveBufferSize; Java_org_mozilla_jss_ssl_SSLSocket_getSendBufferSize; @@ -199,6 +200,7 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke Java_org_mozilla_jss_ssl_SSLSocket_socketWrite; Java_org_mozilla_jss_ssl_SocketBase_getLocalPortNative; Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative; Java_org_mozilla_jss_ssl_SocketBase_setClientCertNicknameNative; Java_org_mozilla_jss_ssl_SocketBase_requestClientAuthNoExpiryCheckNative; Java_org_mozilla_jss_ssl_SocketBase_setSSLOption; diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2009-06-24 13:46:49.000000000 -0700 @@ -36,7 +36,8 @@ package org.mozilla.jss.ssl; -import java.net.InetAddress; +import java.util.*; +import java.net.*; import java.io.IOException; import java.net.Socket; import java.net.SocketException; @@ -138,34 +139,34 @@ public class SSLServerSocket extends jav super.close(); // create the socket + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } + sockProxy = new SocketProxy( - base.socketCreate(this, certApprovalCallback, null) ); + base.socketCreate(this, certApprovalCallback, null,socketFamily) ); base.setProxy(sockProxy); setReuseAddress(reuseAddr); - // bind it to the local address and port - if( bindAddr == null ) { - bindAddr = anyLocalAddr; - } byte[] bindAddrBA = null; if( bindAddr != null ) { bindAddrBA = bindAddr.getAddress(); } base.socketBind(bindAddrBA, port); + + String hostName = null; + if(bindAddr != null) { + hostName = bindAddr.getCanonicalHostName(); + } socketListen(backlog); } private native void socketListen(int backlog) throws SocketException; - private static InetAddress anyLocalAddr; - static { - try { - anyLocalAddr = InetAddress.getByName("0.0.0.0"); - } catch (java.net.UnknownHostException e) { } - } - /** * Accepts a connection. This call will block until a connection is made * or the timeout is reached. diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2009-06-24 13:27:15.000000000 -0700 @@ -460,10 +460,15 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; int stat; const char *hostnameStr=NULL; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -472,16 +477,32 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + + PR_ASSERT(addrBALen != 0); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); /* * Tell SSL the URL we think we want to connect to. @@ -495,6 +516,38 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke goto finish; } + if( addrBAelems == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + if(addrBALen != 4 && addrBALen != 16) { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + } + /* * make the connect call */ diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2009-06-24 13:45:59.000000000 -0700 @@ -243,11 +243,16 @@ public class SSLSocket extends java.net. SSLClientCertificateSelectionCallback clientCertSelectionCallback) throws IOException { + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } // create the socket sockProxy = new SocketProxy( base.socketCreate( - this, certApprovalCallback, clientCertSelectionCallback) ); + this, certApprovalCallback, clientCertSelectionCallback,socketFamily) ); base.setProxy(sockProxy); @@ -288,7 +293,7 @@ public class SSLSocket extends java.net. new SocketProxy( base.socketCreate( this, certApprovalCallback, clientCertSelectionCallback, - s, host ) ); + s, host,SocketBase.SSL_AF_INET ) ); base.setProxy(sockProxy); resetHandshake(); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2009-06-24 13:50:32.000000000 -0700 @@ -70,16 +70,16 @@ class SocketBase { native byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, SSLClientCertificateSelectionCallback clientCertSelectionCallback, - java.net.Socket javaSock, String host) + java.net.Socket javaSock, String host,int family) throws SocketException; byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, - SSLClientCertificateSelectionCallback clientCertSelectionCallback) + SSLClientCertificateSelectionCallback clientCertSelectionCallback,int family) throws SocketException { return socketCreate(socketObject, certApprovalCallback, - clientCertSelectionCallback, null, null); + clientCertSelectionCallback, null, null,family); } native void socketBind(byte[] addrBA, int port) throws SocketException; @@ -115,6 +115,10 @@ class SocketBase { static final int SSL_REQUIRE_FIRST_HANDSHAKE = 20; static final int SSL_REQUIRE_NO_ERROR = 21; + + static final int SSL_AF_INET = 50; + static final int SSL_AF_INET6 = 51; + void close() throws IOException { socketClose(); } @@ -281,13 +285,25 @@ class SocketBase { return in; } + private native byte[] getLocalAddressByteArrayNative() throws SocketException; + private native byte[] getPeerAddressByteArrayNative() throws SocketException; /** * @return the InetAddress of the peer end of the socket. */ InetAddress getInetAddress() { try { - return convertIntToInetAddress( getPeerAddressNative() ); + byte[] address = getPeerAddressByteArrayNative(); + + InetAddress iAddr = null; + + try { + + iAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return iAddr; } catch(SocketException e) { return null; } @@ -299,7 +315,17 @@ class SocketBase { */ InetAddress getLocalAddress() { try { - return convertIntToInetAddress( getLocalAddressNative() ); + byte[] address = getLocalAddressByteArrayNative(); + + InetAddress lAddr = null; + + try { + + lAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return lAddr; } catch(SocketException e) { return null; } @@ -378,4 +404,45 @@ class SocketBase { return topException; } } + + static private int supportsIPV6 = -1; + static boolean supportsIPV6() { + + if(supportsIPV6 >= 0) { + if(supportsIPV6 > 0) { + return true; + } else { + return false; + } + } + + Enumeration netInter; + try { + netInter = NetworkInterface.getNetworkInterfaces(); + } catch (SocketException e) { + + return false; + } + while ( netInter.hasMoreElements() ) + { + NetworkInterface ni = (NetworkInterface)netInter.nextElement(); + Enumeration addrs = ni.getInetAddresses(); + while ( addrs.hasMoreElements() ) + { + Object o = addrs.nextElement(); + if ( o.getClass() == InetAddress.class || + o.getClass() == Inet4Address.class || + o.getClass() == Inet6Address.class ) + { + InetAddress iaddr = (InetAddress) o; + if(o.getClass() == Inet6Address.class) { + supportsIPV6 = 1; + return true; + } + } + } + } + supportsIPV6 = 0; + return false; + } } diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2009-06-24 14:22:02.000000000 -0700 @@ -33,7 +33,6 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ - #include #include #include @@ -51,6 +50,9 @@ #include #endif +#define SSL_AF_INET 50 +#define SSL_AF_INET6 51 + void JSSL_throwSSLSocketException(JNIEnv *env, char *message) { @@ -142,7 +144,7 @@ finish: JNIEXPORT jbyteArray JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketCreate(JNIEnv *env, jobject self, jobject sockObj, jobject certApprovalCallback, - jobject clientCertSelectionCallback, jobject javaSock, jstring host) + jobject clientCertSelectionCallback, jobject javaSock, jstring host,jint family) { jbyteArray sdArray = NULL; JSSL_SocketData *sockdata = NULL; @@ -150,10 +152,21 @@ Java_org_mozilla_jss_ssl_SocketBase_sock PRFileDesc *newFD; PRFileDesc *tmpFD; PRFilePrivate *priv = NULL; + int socketFamily = 0; + + if (family != SSL_AF_INET6 && family != SSL_AF_INET) { + JSSL_throwSSLSocketException(env, + "socketCreate() Invalid family!"); + goto finish; + } + if( family == SSL_AF_INET) + socketFamily = PR_AF_INET; + else + socketFamily = PR_AF_INET6; if( javaSock == NULL ) { /* create a TCP socket */ - newFD = PR_NewTCPSocket(); + newFD = PR_OpenTCPSocket(socketFamily); if( newFD == NULL ) { JSSL_throwSSLSocketException(env, "PR_NewTCPSocket() returned NULL"); @@ -394,10 +407,10 @@ PRInt32 JSSL_enums[] = { SSL_REQUIRE_ALWAYS, /* 19 */ /* ssl.h */ SSL_REQUIRE_FIRST_HANDSHAKE,/* 20 */ /* ssl.h */ SSL_REQUIRE_NO_ERROR, /* 21 */ /* ssl.h */ - 0 }; + JNIEXPORT void JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketBind (JNIEnv *env, jobject self, jbyteArray addrBA, jint port) @@ -405,8 +418,13 @@ Java_org_mozilla_jss_ssl_SocketBase_sock JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -415,19 +433,72 @@ Java_org_mozilla_jss_ssl_SocketBase_sock /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); + + /* + * Do we support IPV6? + */ + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + + memset( &addr, 0, sizeof( PRNetAddr )); + if( addrBA != NULL ) { - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); + + if(addrBALen != 4 && addrBALen != 16) { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = PR_AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.inet.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + } } else { - addr.inet.ip = PR_htonl(INADDR_ANY); + if(supportsIPV6) { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET6, port, &addr); + } else { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET, port, &addr); + } } /* do the bind() call */ @@ -601,6 +672,78 @@ finish: return status; } +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, PEER_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size ,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, LOCAL_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +/* Leave the original versions of these functions for compatibility */ + JNIEXPORT jint JNICALL Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative (JNIEnv *env, jobject self) diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2009-06-24 13:43:13.000000000 -0700 @@ -290,6 +290,7 @@ getInetAddress(PRFileDesc *fd, PRNetAddr jobject inetAddress; jbyteArray addrByteArray; jint port; + int addrBALen = 0; if( GET_ENV(fd->secret->javaVM, env) ) goto finish; @@ -377,8 +378,9 @@ getInetAddress(PRFileDesc *fd, PRNetAddr memset(addr, 0, sizeof(PRNetAddr)); - /* we only handle IPV4 */ - PR_ASSERT( (*env)->GetArrayLength(env, addrByteArray) == 4 ); + addrBALen = (*env)->GetArrayLength(env, addrByteArray); + + PR_ASSERT( (addrBALen == 4) || (addrBALen == 16 ) ); /* make sure you release them later */ addrBytes = (*env)->GetByteArrayElements(env, addrByteArray, NULL); @@ -388,9 +390,16 @@ getInetAddress(PRFileDesc *fd, PRNetAddr } /* ip field is in network byte order */ - memcpy( (void*) &addr->inet.ip, addrBytes, 4); - addr->inet.family = PR_AF_INET; - addr->inet.port = port; + + if (addrBALen == 4) { + memcpy( (void*) &addr->inet.ip, addrBytes, 4); + addr->inet.family = PR_AF_INET; + addr->inet.port = port; + } else { + memcpy( (void*) &addr->ipv6.ip,addrBytes, 16); + addr->inet.family = PR_AF_INET6; + addr->inet.port = port; + } (*env)->ReleaseByteArrayElements(env, addrByteArray, addrBytes, JNI_ABORT); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2006-02-22 17:21:52.000000000 -0800 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2009-06-19 17:56:00.000000000 -0700 @@ -312,6 +312,8 @@ PR_BEGIN_EXTERN_C #define SOCKET_BASE_NAME "org/mozilla/jss/ssl/SocketBase" #define PROCESS_EXCEPTIONS_NAME "processExceptions" #define PROCESS_EXCEPTIONS_SIG "(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;" +#define SUPPORTS_IPV6_NAME "supportsIPV6" +#define SUPPORTS_IPV6_SIG "()Z" /* * SSLCertificateApprovalCallback Index: jss.spec =================================================================== RCS file: /cvs/extras/rpms/jss/F-11/jss.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- jss.spec 5 Jun 2009 17:37:29 -0000 1.7 +++ jss.spec 31 Jul 2009 13:52:35 -0000 1.8 @@ -1,6 +1,6 @@ Name: jss Version: 4.2.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Java Security Services (JSS) Group: System Environment/Libraries @@ -16,13 +16,16 @@ Source2: gpl.txt Source3: lgpl.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: nss-devel >= 3.12.0 +BuildRequires: nss-devel >= 3.12.3.99 BuildRequires: nspr-devel >= 4.6.99 BuildRequires: java-devel Requires: java +Requires: nss >= 3.12.3.99 Patch1: jss-key_pair_usage_with_op_flags.patch Patch2: jss-javadocs-param.patch +Patch3: jss-ipv6.patch +Patch4: jss-ECC-pop.patch %description Java Security Services (JSS) is a java native interface which provides a bridge @@ -41,6 +44,8 @@ This package contains the API documentat %setup -q %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 %build [ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java @@ -136,6 +141,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Rob Crittenden 4.2.6-2 +- Support ECC POP on the server (#224688) +- Server Sockets are hard coded to IPV4 (#469456) +- Set NSS dependency >= 3.12.3.99 + * Fri Jun 5 2009 Rob Crittenden 4.2.6-1 - Update to 4.2.6 - Include patch to add jss interface to PK11_GenerateKeyPairWithOpFlags() From terjeros at fedoraproject.org Fri Jul 31 14:01:15 2009 From: terjeros at fedoraproject.org (terjeros) Date: Fri, 31 Jul 2009 14:01:15 +0000 (UTC) Subject: rpms/gle/devel gle.spec,1.13,1.14 Message-ID: <20090731140115.8B7C411C00CE@cvs1.fedora.phx.redhat.com> Author: terjeros Update of /cvs/extras/rpms/gle/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13321 Modified Files: gle.spec Log Message: * Fri Jul 31 2009 Terje Rosten - 4.2.0-4 - Rebuild Index: gle.spec =================================================================== RCS file: /cvs/extras/rpms/gle/devel/gle.spec,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- gle.spec 25 Jul 2009 00:18:12 -0000 1.13 +++ gle.spec 31 Jul 2009 14:01:15 -0000 1.14 @@ -2,7 +2,7 @@ Summary: Graphics Layout Engine Name: gle Version: 4.2.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Applications/Multimedia URL: http://www.gle-graphics.org/ @@ -61,6 +61,9 @@ dos2unix LICENSE.txt %{_libdir}/lib%{name}-graphics-%{version}.so %changelog +* Fri Jul 31 2009 Terje Rosten - 4.2.0-4 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From rcritten at fedoraproject.org Fri Jul 31 14:03:14 2009 From: rcritten at fedoraproject.org (rcritten) Date: Fri, 31 Jul 2009 14:03:14 +0000 (UTC) Subject: rpms/jss/devel jss-ECC-pop.patch, NONE, 1.1 jss-ipv6.patch, NONE, 1.1 jss.spec, 1.9, 1.10 Message-ID: <20090731140314.6DE3B11C00CE@cvs1.fedora.phx.redhat.com> Author: rcritten Update of /cvs/extras/rpms/jss/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14061 Modified Files: jss.spec Added Files: jss-ECC-pop.patch jss-ipv6.patch Log Message: - Support ECC POP on the server (#224688) - Server Sockets are hard coded to IPV4 (#469456) - Set NSS dependency >= 3.12.3.99 jss-ECC-pop.patch: CertReqMsg.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- NEW FILE jss-ECC-pop.patch --- diff -rupN jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java --- jss-4.2.6/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2004-04-25 08:02:26.000000000 -0700 +++ jss-4.2.6.cfu/mozilla/security/jss/org/mozilla/jss/pkix/crmf/CertReqMsg.java 2009-07-27 13:38:38.197422000 -0700 @@ -130,6 +130,16 @@ public class CertReqMsg implements ASN1V /////////////////////////////////////////////////////////////////////// public void verify() throws SignatureException, + InvalidKeyFormatException, NoSuchAlgorithmException, + org.mozilla.jss.CryptoManager.NotInitializedException, + TokenException, java.security.InvalidKeyException, IOException{ + + CryptoToken token = CryptoManager.getInstance() + .getInternalCryptoToken(); + verify(token); + } + + public void verify(CryptoToken token) throws SignatureException, InvalidKeyFormatException, NoSuchAlgorithmException, org.mozilla.jss.CryptoManager.NotInitializedException, TokenException, java.security.InvalidKeyException, IOException{ @@ -149,8 +159,6 @@ public class CertReqMsg implements ASN1V pubkey = (PublicKey) spi.toPublicKey(); } - CryptoToken token = CryptoManager.getInstance() - .getInternalCryptoToken(); SignatureAlgorithm sigAlg = SignatureAlgorithm.fromOID(alg.getOID()); Signature sig = token.getSignatureContext(sigAlg); jss-ipv6.patch: lib/jss.def | 2 org/mozilla/jss/ssl/SSLServerSocket.java | 27 ++--- org/mozilla/jss/ssl/SSLSocket.c | 63 +++++++++++ org/mozilla/jss/ssl/SSLSocket.java | 9 + org/mozilla/jss/ssl/SocketBase.java | 77 +++++++++++++- org/mozilla/jss/ssl/common.c | 163 +++++++++++++++++++++++++++++-- org/mozilla/jss/ssl/javasock.c | 19 ++- org/mozilla/jss/util/java_ids.h | 2 8 files changed, 322 insertions(+), 40 deletions(-) --- NEW FILE jss-ipv6.patch --- diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def jss-4.2.6/mozilla/security/jss/lib/jss.def --- jss-4.2.6.pre-IPv6/mozilla/security/jss/lib/jss.def 2009-06-24 17:08:59.784371000 -0700 +++ jss-4.2.6/mozilla/security/jss/lib/jss.def 2009-06-19 17:56:00.000000000 -0700 @@ -175,6 +175,7 @@ Java_org_mozilla_jss_ssl_SSLServerSocket Java_org_mozilla_jss_ssl_SSLSocket_forceHandshake; Java_org_mozilla_jss_ssl_SSLSocket_getKeepAlive; Java_org_mozilla_jss_ssl_SSLSocket_getLocalAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative; Java_org_mozilla_jss_ssl_SSLSocket_getPort; Java_org_mozilla_jss_ssl_SSLSocket_getReceiveBufferSize; Java_org_mozilla_jss_ssl_SSLSocket_getSendBufferSize; @@ -199,6 +200,7 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke Java_org_mozilla_jss_ssl_SSLSocket_socketWrite; Java_org_mozilla_jss_ssl_SocketBase_getLocalPortNative; Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative; +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative; Java_org_mozilla_jss_ssl_SocketBase_setClientCertNicknameNative; Java_org_mozilla_jss_ssl_SocketBase_requestClientAuthNoExpiryCheckNative; Java_org_mozilla_jss_ssl_SocketBase_setSSLOption; diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.java 2009-06-24 13:46:49.000000000 -0700 @@ -36,7 +36,8 @@ package org.mozilla.jss.ssl; -import java.net.InetAddress; +import java.util.*; +import java.net.*; import java.io.IOException; import java.net.Socket; import java.net.SocketException; @@ -138,34 +139,34 @@ public class SSLServerSocket extends jav super.close(); // create the socket + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } + sockProxy = new SocketProxy( - base.socketCreate(this, certApprovalCallback, null) ); + base.socketCreate(this, certApprovalCallback, null,socketFamily) ); base.setProxy(sockProxy); setReuseAddress(reuseAddr); - // bind it to the local address and port - if( bindAddr == null ) { - bindAddr = anyLocalAddr; - } byte[] bindAddrBA = null; if( bindAddr != null ) { bindAddrBA = bindAddr.getAddress(); } base.socketBind(bindAddrBA, port); + + String hostName = null; + if(bindAddr != null) { + hostName = bindAddr.getCanonicalHostName(); + } socketListen(backlog); } private native void socketListen(int backlog) throws SocketException; - private static InetAddress anyLocalAddr; - static { - try { - anyLocalAddr = InetAddress.getByName("0.0.0.0"); - } catch (java.net.UnknownHostException e) { } - } - /** * Accepts a connection. This call will block until a connection is made * or the timeout is reached. diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.c 2009-06-24 13:27:15.000000000 -0700 @@ -460,10 +460,15 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; int stat; const char *hostnameStr=NULL; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -472,16 +477,32 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + + PR_ASSERT(addrBALen != 0); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); /* * Tell SSL the URL we think we want to connect to. @@ -495,6 +516,38 @@ Java_org_mozilla_jss_ssl_SSLSocket_socke goto finish; } + if( addrBAelems == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + if(addrBALen != 4 && addrBALen != 16) { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSSL_throwSSLSocketException(env, "Invalid address in connect!"); + goto finish; + } + } + /* * make the connect call */ diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2007-05-08 18:40:14.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java 2009-06-24 13:45:59.000000000 -0700 @@ -243,11 +243,16 @@ public class SSLSocket extends java.net. SSLClientCertificateSelectionCallback clientCertSelectionCallback) throws IOException { + + int socketFamily = SocketBase.SSL_AF_INET; + if(SocketBase.supportsIPV6()) { + socketFamily = SocketBase.SSL_AF_INET6; + } // create the socket sockProxy = new SocketProxy( base.socketCreate( - this, certApprovalCallback, clientCertSelectionCallback) ); + this, certApprovalCallback, clientCertSelectionCallback,socketFamily) ); base.setProxy(sockProxy); @@ -288,7 +293,7 @@ public class SSLSocket extends java.net. new SocketProxy( base.socketCreate( this, certApprovalCallback, clientCertSelectionCallback, - s, host ) ); + s, host,SocketBase.SSL_AF_INET ) ); base.setProxy(sockProxy); resetHandshake(); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2007-03-20 15:39:28.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SocketBase.java 2009-06-24 13:50:32.000000000 -0700 @@ -70,16 +70,16 @@ class SocketBase { native byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, SSLClientCertificateSelectionCallback clientCertSelectionCallback, - java.net.Socket javaSock, String host) + java.net.Socket javaSock, String host,int family) throws SocketException; byte[] socketCreate(Object socketObject, SSLCertificateApprovalCallback certApprovalCallback, - SSLClientCertificateSelectionCallback clientCertSelectionCallback) + SSLClientCertificateSelectionCallback clientCertSelectionCallback,int family) throws SocketException { return socketCreate(socketObject, certApprovalCallback, - clientCertSelectionCallback, null, null); + clientCertSelectionCallback, null, null,family); } native void socketBind(byte[] addrBA, int port) throws SocketException; @@ -115,6 +115,10 @@ class SocketBase { static final int SSL_REQUIRE_FIRST_HANDSHAKE = 20; static final int SSL_REQUIRE_NO_ERROR = 21; + + static final int SSL_AF_INET = 50; + static final int SSL_AF_INET6 = 51; + void close() throws IOException { socketClose(); } @@ -281,13 +285,25 @@ class SocketBase { return in; } + private native byte[] getLocalAddressByteArrayNative() throws SocketException; + private native byte[] getPeerAddressByteArrayNative() throws SocketException; /** * @return the InetAddress of the peer end of the socket. */ InetAddress getInetAddress() { try { - return convertIntToInetAddress( getPeerAddressNative() ); + byte[] address = getPeerAddressByteArrayNative(); + + InetAddress iAddr = null; + + try { + + iAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return iAddr; } catch(SocketException e) { return null; } @@ -299,7 +315,17 @@ class SocketBase { */ InetAddress getLocalAddress() { try { - return convertIntToInetAddress( getLocalAddressNative() ); + byte[] address = getLocalAddressByteArrayNative(); + + InetAddress lAddr = null; + + try { + + lAddr = InetAddress.getByAddress(address); + } catch(UnknownHostException e) { + } + + return lAddr; } catch(SocketException e) { return null; } @@ -378,4 +404,45 @@ class SocketBase { return topException; } } + + static private int supportsIPV6 = -1; + static boolean supportsIPV6() { + + if(supportsIPV6 >= 0) { + if(supportsIPV6 > 0) { + return true; + } else { + return false; + } + } + + Enumeration netInter; + try { + netInter = NetworkInterface.getNetworkInterfaces(); + } catch (SocketException e) { + + return false; + } + while ( netInter.hasMoreElements() ) + { + NetworkInterface ni = (NetworkInterface)netInter.nextElement(); + Enumeration addrs = ni.getInetAddresses(); + while ( addrs.hasMoreElements() ) + { + Object o = addrs.nextElement(); + if ( o.getClass() == InetAddress.class || + o.getClass() == Inet4Address.class || + o.getClass() == Inet6Address.class ) + { + InetAddress iaddr = (InetAddress) o; + if(o.getClass() == Inet6Address.class) { + supportsIPV6 = 1; + return true; + } + } + } + } + supportsIPV6 = 0; + return false; + } } diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/common.c 2009-06-24 14:22:02.000000000 -0700 @@ -33,7 +33,6 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ - #include #include #include @@ -51,6 +50,9 @@ #include #endif +#define SSL_AF_INET 50 +#define SSL_AF_INET6 51 + void JSSL_throwSSLSocketException(JNIEnv *env, char *message) { @@ -142,7 +144,7 @@ finish: JNIEXPORT jbyteArray JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketCreate(JNIEnv *env, jobject self, jobject sockObj, jobject certApprovalCallback, - jobject clientCertSelectionCallback, jobject javaSock, jstring host) + jobject clientCertSelectionCallback, jobject javaSock, jstring host,jint family) { jbyteArray sdArray = NULL; JSSL_SocketData *sockdata = NULL; @@ -150,10 +152,21 @@ Java_org_mozilla_jss_ssl_SocketBase_sock PRFileDesc *newFD; PRFileDesc *tmpFD; PRFilePrivate *priv = NULL; + int socketFamily = 0; + + if (family != SSL_AF_INET6 && family != SSL_AF_INET) { + JSSL_throwSSLSocketException(env, + "socketCreate() Invalid family!"); + goto finish; + } + if( family == SSL_AF_INET) + socketFamily = PR_AF_INET; + else + socketFamily = PR_AF_INET6; if( javaSock == NULL ) { /* create a TCP socket */ - newFD = PR_NewTCPSocket(); + newFD = PR_OpenTCPSocket(socketFamily); if( newFD == NULL ) { JSSL_throwSSLSocketException(env, "PR_NewTCPSocket() returned NULL"); @@ -394,10 +407,10 @@ PRInt32 JSSL_enums[] = { SSL_REQUIRE_ALWAYS, /* 19 */ /* ssl.h */ SSL_REQUIRE_FIRST_HANDSHAKE,/* 20 */ /* ssl.h */ SSL_REQUIRE_NO_ERROR, /* 21 */ /* ssl.h */ - 0 }; + JNIEXPORT void JNICALL Java_org_mozilla_jss_ssl_SocketBase_socketBind (JNIEnv *env, jobject self, jbyteArray addrBA, jint port) @@ -405,8 +418,13 @@ Java_org_mozilla_jss_ssl_SocketBase_sock JSSL_SocketData *sock; PRNetAddr addr; jbyte *addrBAelems = NULL; + int addrBALen = 0; PRStatus status; + jmethodID supportsIPV6ID; + jclass socketBaseClass; + jboolean supportsIPV6 = 0; + if( JSSL_getSockData(env, self, &sock) != PR_SUCCESS) { /* exception was thrown */ goto finish; @@ -415,19 +433,72 @@ Java_org_mozilla_jss_ssl_SocketBase_sock /* * setup the PRNetAddr structure */ - addr.inet.family = AF_INET; - addr.inet.port = htons(port); + + /* + * Do we support IPV6? + */ + + socketBaseClass = (*env)->FindClass(env, SOCKET_BASE_NAME); + if( socketBaseClass == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + supportsIPV6ID = (*env)->GetStaticMethodID(env, socketBaseClass, + SUPPORTS_IPV6_NAME, SUPPORTS_IPV6_SIG); + + if( supportsIPV6ID == NULL ) { + ASSERT_OUTOFMEM(env); + goto finish; + } + + supportsIPV6 = (*env)->CallStaticBooleanMethod(env, socketBaseClass, + supportsIPV6ID); + + memset( &addr, 0, sizeof( PRNetAddr )); + if( addrBA != NULL ) { - PR_ASSERT(sizeof(addr.inet.ip) == 4); - PR_ASSERT( (*env)->GetArrayLength(env, addrBA) == 4); addrBAelems = (*env)->GetByteArrayElements(env, addrBA, NULL); + addrBALen = (*env)->GetArrayLength(env, addrBA); + if( addrBAelems == NULL ) { ASSERT_OUTOFMEM(env); goto finish; } - memcpy(&addr.inet.ip, addrBAelems, 4); + + if(addrBALen != 4 && addrBALen != 16) { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + + if( addrBALen == 4) { + addr.inet.family = PR_AF_INET; + addr.inet.port = PR_htons(port); + memcpy(&addr.inet.ip, addrBAelems, 4); + + if(supportsIPV6) { + addr.inet.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + PR_ConvertIPv4AddrToIPv6(addr.inet.ip,&addr.ipv6.ip); + } + + } else { /* Must be 16 and ipv6 */ + if(supportsIPV6) { + addr.ipv6.family = PR_AF_INET6; + addr.ipv6.port = PR_htons(port); + memcpy(&addr.ipv6.ip,addrBAelems, 16); + } else { + JSS_throwMsgPrErr(env, BIND_EXCEPTION, + "Invalid address in bind!"); + goto finish; + } + } } else { - addr.inet.ip = PR_htonl(INADDR_ANY); + if(supportsIPV6) { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET6, port, &addr); + } else { + status = PR_SetNetAddr(PR_IpAddrAny, PR_AF_INET, port, &addr); + } } /* do the bind() call */ @@ -601,6 +672,78 @@ finish: return status; } +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, PEER_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size ,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +JNIEXPORT jbyteArray JNICALL +Java_org_mozilla_jss_ssl_SocketBase_getLocalAddressByteArrayNative + (JNIEnv *env, jobject self) +{ + jbyteArray byteArray=NULL; + PRNetAddr addr; + jbyte *address=NULL; + int size=4; + + if( JSSL_getSockAddr(env, self, &addr, LOCAL_SOCK) != PR_SUCCESS) { + goto finish; + } + + if( PR_NetAddrFamily(&addr) == PR_AF_INET6) { + size = 16; + address = (jbyte *) &addr.ipv6.ip; + } else { + address = (jbyte *) &addr.inet.ip; + } + + byteArray = (*env)->NewByteArray(env,size); + if(byteArray == NULL) { + ASSERT_OUTOFMEM(env); + goto finish; + } + (*env)->SetByteArrayRegion(env, byteArray, 0,size,address); + if( (*env)->ExceptionOccurred(env) != NULL) { + PR_ASSERT(PR_FALSE); + goto finish; + } + +finish: + return byteArray; +} + +/* Leave the original versions of these functions for compatibility */ + JNIEXPORT jint JNICALL Java_org_mozilla_jss_ssl_SocketBase_getPeerAddressNative (JNIEnv *env, jobject self) diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2007-04-24 11:34:58.000000000 -0700 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/javasock.c 2009-06-24 13:43:13.000000000 -0700 @@ -290,6 +290,7 @@ getInetAddress(PRFileDesc *fd, PRNetAddr jobject inetAddress; jbyteArray addrByteArray; jint port; + int addrBALen = 0; if( GET_ENV(fd->secret->javaVM, env) ) goto finish; @@ -377,8 +378,9 @@ getInetAddress(PRFileDesc *fd, PRNetAddr memset(addr, 0, sizeof(PRNetAddr)); - /* we only handle IPV4 */ - PR_ASSERT( (*env)->GetArrayLength(env, addrByteArray) == 4 ); + addrBALen = (*env)->GetArrayLength(env, addrByteArray); + + PR_ASSERT( (addrBALen == 4) || (addrBALen == 16 ) ); /* make sure you release them later */ addrBytes = (*env)->GetByteArrayElements(env, addrByteArray, NULL); @@ -388,9 +390,16 @@ getInetAddress(PRFileDesc *fd, PRNetAddr } /* ip field is in network byte order */ - memcpy( (void*) &addr->inet.ip, addrBytes, 4); - addr->inet.family = PR_AF_INET; - addr->inet.port = port; + + if (addrBALen == 4) { + memcpy( (void*) &addr->inet.ip, addrBytes, 4); + addr->inet.family = PR_AF_INET; + addr->inet.port = port; + } else { + memcpy( (void*) &addr->ipv6.ip,addrBytes, 16); + addr->inet.family = PR_AF_INET6; + addr->inet.port = port; + } (*env)->ReleaseByteArrayElements(env, addrByteArray, addrBytes, JNI_ABORT); diff -rupN jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h --- jss-4.2.6.pre-IPv6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2006-02-22 17:21:52.000000000 -0800 +++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/util/java_ids.h 2009-06-19 17:56:00.000000000 -0700 @@ -312,6 +312,8 @@ PR_BEGIN_EXTERN_C #define SOCKET_BASE_NAME "org/mozilla/jss/ssl/SocketBase" #define PROCESS_EXCEPTIONS_NAME "processExceptions" #define PROCESS_EXCEPTIONS_SIG "(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;" +#define SUPPORTS_IPV6_NAME "supportsIPV6" +#define SUPPORTS_IPV6_SIG "()Z" /* * SSLCertificateApprovalCallback Index: jss.spec =================================================================== RCS file: /cvs/extras/rpms/jss/devel/jss.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- jss.spec 25 Jul 2009 04:12:08 -0000 1.9 +++ jss.spec 31 Jul 2009 14:03:14 -0000 1.10 @@ -1,6 +1,6 @@ Name: jss Version: 4.2.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Java Security Services (JSS) Group: System Environment/Libraries @@ -16,13 +16,16 @@ Source2: gpl.txt Source3: lgpl.txt BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: nss-devel >= 3.12.0 +BuildRequires: nss-devel >= 3.12.3.99 BuildRequires: nspr-devel >= 4.6.99 BuildRequires: java-devel Requires: java +Requires: nss >= 3.12.3.99 Patch1: jss-key_pair_usage_with_op_flags.patch Patch2: jss-javadocs-param.patch +Patch3: jss-ipv6.patch +Patch4: jss-ECC-pop.patch %description Java Security Services (JSS) is a java native interface which provides a bridge @@ -41,6 +44,8 @@ This package contains the API documentat %setup -q %patch1 -p1 %patch2 -p1 +%patch3 -p1 +%patch4 -p1 %build [ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java @@ -136,6 +141,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Rob Crittenden 4.2.6-4 +- Support ECC POP on the server (#224688) +- Server Sockets are hard coded to IPV4 (#469456) +- Set NSS dependency >= 3.12.3.99 + * Fri Jul 24 2009 Fedora Release Engineering - 4.2.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From lennart at fedoraproject.org Fri Jul 31 14:04:31 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Fri, 31 Jul 2009 14:04:31 +0000 (UTC) Subject: rpms/alsa-plugins/devel alsa-plugins.spec,1.24,1.25 Message-ID: <20090731140431.E0BEA11C00CE@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/alsa-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14639 Modified Files: alsa-plugins.spec Log Message: Add a couple of clean up patches for the pulse plugin Index: alsa-plugins.spec =================================================================== RCS file: /cvs/pkgs/rpms/alsa-plugins/devel/alsa-plugins.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- alsa-plugins.spec 24 Jul 2009 16:47:52 -0000 1.24 +++ alsa-plugins.spec 31 Jul 2009 14:04:31 -0000 1.25 @@ -1,6 +1,6 @@ Name: alsa-plugins Version: 1.0.20 -Release: 3%{?dist} +Release: 4%{?dist} Summary: The Advanced Linux Sound Architecture (ALSA) Plugins # All packages are LGPLv2+ with the exception of samplerate which is GPLv2+ License: GPLv2+ and LGPLv2+ @@ -16,6 +16,11 @@ Source6: vdownmix.conf Source7: pulse-default.conf Source8: arcamav.conf BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: 0001-alsa-plugins-pulse-Implement-pause.patch +Patch1: 0001-alsa-get-rid-of-a-number-of-assert-s.patch +Patch2: 0002-pulse-use-PA_CONTEXT_IS_GOOD-where-applicable.patch +Patch3: 0003-pulse-unify-destruction-of-snd_pulse_t.patch +Patch4: 0004-pulse-call-pa_threaded_mainloop_wait-to-handle-spuri.patch BuildRequires: alsa-lib-devel @@ -123,6 +128,11 @@ pre-processing of a mono stream like den %prep %setup -q -n %{name}-%{version}%{?prever} +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 %build %configure --disable-static \ @@ -225,6 +235,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Lennart Poettering - 1.0.20-4 +- Add a couple of clean up patches for the pulse plugin + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From lennart at fedoraproject.org Fri Jul 31 14:05:04 2009 From: lennart at fedoraproject.org (Lennart Poettering) Date: Fri, 31 Jul 2009 14:05:04 +0000 (UTC) Subject: rpms/alsa-plugins/devel 0001-alsa-get-rid-of-a-number-of-assert-s.patch, NONE, 1.1 0001-alsa-plugins-pulse-Implement-pause.patch, NONE, 1.1 0002-pulse-use-PA_CONTEXT_IS_GOOD-where-applicable.patch, NONE, 1.1 0003-pulse-unify-destruction-of-snd_pulse_t.patch, NONE, 1.1 0004-pulse-call-pa_threaded_mainloop_wait-to-handle-spuri.patch, NONE, 1.1 Message-ID: <20090731140504.F058D11C00CE@cvs1.fedora.phx.redhat.com> Author: lennart Update of /cvs/pkgs/rpms/alsa-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14839 Added Files: 0001-alsa-get-rid-of-a-number-of-assert-s.patch 0001-alsa-plugins-pulse-Implement-pause.patch 0002-pulse-use-PA_CONTEXT_IS_GOOD-where-applicable.patch 0003-pulse-unify-destruction-of-snd_pulse_t.patch 0004-pulse-call-pa_threaded_mainloop_wait-to-handle-spuri.patch Log Message: add missing patches 0001-alsa-get-rid-of-a-number-of-assert-s.patch: ctl_pulse.c | 35 +++++++++++++++++++------- pcm_pulse.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++-------------- pulse.c | 35 ++++++++++++++++++-------- 3 files changed, 111 insertions(+), 38 deletions(-) --- NEW FILE 0001-alsa-get-rid-of-a-number-of-assert-s.patch --- >From ae28f795b7a3f626e2c02e0805936e07b06ed290 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 31 Jul 2009 15:25:44 +0200 Subject: [PATCH 1/4] alsa: get rid of a number of assert()s Instead of hitting an assert when any of the plugin functions is called in an invalid context we should return a clean error to make sure programs are not unnecessarily aborted. This should fix issues such as http://pulseaudio.org/ticket/595 --- pulse/ctl_pulse.c | 35 +++++++++++++++++------ pulse/pcm_pulse.c | 79 +++++++++++++++++++++++++++++++++++++++++------------ pulse/pulse.c | 34 ++++++++++++++++------- 3 files changed, 111 insertions(+), 37 deletions(-) diff --git a/pulse/ctl_pulse.c b/pulse/ctl_pulse.c index c6cf9e2..1b057ef 100644 --- a/pulse/ctl_pulse.c +++ b/pulse/ctl_pulse.c @@ -125,8 +125,9 @@ static void event_cb(pa_context * c, pa_subscription_event_type_t t, pa_operation *o; assert(ctl); - assert(ctl->p); - assert(ctl->p->context); + + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return; o = pa_context_get_sink_info_by_name(ctl->p->context, ctl->sink, sink_info_cb, ctl); @@ -148,8 +149,9 @@ static int pulse_update_volume(snd_ctl_pulse_t * ctl) pa_operation *o; assert(ctl); - assert(ctl->p); - assert(ctl->p->context); + + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; o = pa_context_get_sink_info_by_name(ctl->p->context, ctl->sink, sink_info_cb, ctl); @@ -203,6 +205,9 @@ static int pulse_elem_list(snd_ctl_ext_t * ext, unsigned int offset, assert(ctl); + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; + snd_ctl_elem_id_set_interface(id, SND_CTL_ELEM_IFACE_MIXER); pa_threaded_mainloop_lock(ctl->p->mainloop); @@ -260,7 +265,9 @@ static int pulse_get_attribute(snd_ctl_ext_t * ext, snd_ctl_ext_key_t key, return -EINVAL; assert(ctl); - assert(ctl->p); + + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; pa_threaded_mainloop_lock(ctl->p->mainloop); @@ -311,7 +318,9 @@ static int pulse_read_integer(snd_ctl_ext_t * ext, snd_ctl_ext_key_t key, pa_cvolume *vol = NULL; assert(ctl); - assert(ctl->p); + + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; pa_threaded_mainloop_lock(ctl->p->mainloop); @@ -361,7 +370,9 @@ static int pulse_write_integer(snd_ctl_ext_t * ext, snd_ctl_ext_key_t key, pa_cvolume *vol = NULL; assert(ctl); - assert(ctl->p && ctl->p->context); + + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; pa_threaded_mainloop_lock(ctl->p->mainloop); @@ -465,6 +476,9 @@ static void pulse_subscribe_events(snd_ctl_ext_t * ext, int subscribe) assert(ctl); + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return; + pa_threaded_mainloop_lock(ctl->p->mainloop); ctl->subscribed = !!(subscribe & SND_CTL_EVENT_MASK_VALUE); @@ -481,6 +495,9 @@ static int pulse_read_event(snd_ctl_ext_t * ext, snd_ctl_elem_id_t * id, assert(ctl); + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; + pa_threaded_mainloop_lock(ctl->p->mainloop); if (!ctl->updated || !ctl->subscribed) @@ -525,8 +542,8 @@ static int pulse_ctl_poll_revents(snd_ctl_ext_t * ext, struct pollfd *pfd, snd_ctl_pulse_t *ctl = ext->private_data; int err = 0; - assert(ctl); - assert(ctl->p); + if (!ctl->p || !ctl->p->mainloop || !ctl->p->context) + return -EBADFD; pa_threaded_mainloop_lock(ctl->p->mainloop); diff --git a/pulse/pcm_pulse.c b/pulse/pcm_pulse.c index c276839..24347f9 100644 --- a/pulse/pcm_pulse.c +++ b/pulse/pcm_pulse.c @@ -106,6 +106,9 @@ static int update_active(snd_pcm_pulse_t *pcm) { assert(pcm); + if (!pcm->p) + return -EBADFD; + ret = check_active(pcm); if (ret < 0) return ret; @@ -125,7 +128,9 @@ static int pulse_start(snd_pcm_ioplug_t * io) int err = 0, err_o = 0, err_u = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -174,7 +179,9 @@ static int pulse_stop(snd_pcm_ioplug_t * io) int err = 0, err_o = 0, err_u = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -224,7 +231,9 @@ static int pulse_drain(snd_pcm_ioplug_t * io) int err = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -259,7 +268,9 @@ static snd_pcm_sframes_t pulse_pointer(snd_pcm_ioplug_t * io) snd_pcm_sframes_t ret = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; if (io->state == SND_PCM_STATE_XRUN) return -EPIPE; @@ -269,7 +280,10 @@ static snd_pcm_sframes_t pulse_pointer(snd_pcm_ioplug_t * io) pa_threaded_mainloop_lock(pcm->p->mainloop); - assert(pcm->stream); + if (!pcm->stream) { + ret = -EBADFD; + goto finish; + } ret = pulse_check_connection(pcm->p); if (ret < 0) @@ -305,11 +319,16 @@ static int pulse_delay(snd_pcm_ioplug_t * io, snd_pcm_sframes_t * delayp) pa_usec_t lat = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); - assert(pcm->stream); + if (!pcm->stream) { + err = -EBADFD; + goto finish; + } for (;;) { err = pulse_check_connection(pcm->p); @@ -354,11 +373,16 @@ static snd_pcm_sframes_t pulse_write(snd_pcm_ioplug_t * io, snd_pcm_sframes_t ret = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); - assert(pcm->stream); + if (!pcm->stream) { + ret = -EBADFD; + goto finish; + } ret = pulse_check_connection(pcm->p); if (ret < 0) @@ -409,11 +433,16 @@ static snd_pcm_sframes_t pulse_read(snd_pcm_ioplug_t * io, snd_pcm_sframes_t ret = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); - assert(pcm->stream); + if (!pcm->stream) { + ret = -EBADFD; + goto finish; + } ret = pulse_check_connection(pcm->p); if (ret < 0) @@ -480,7 +509,9 @@ static void stream_request_cb(pa_stream * p, size_t length, void *userdata) snd_pcm_pulse_t *pcm = userdata; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return; update_active(pcm); } @@ -490,7 +521,9 @@ static void stream_underrun_cb(pa_stream * p, void *userdata) snd_pcm_pulse_t *pcm = userdata; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return; pcm->underrun = 1; } @@ -499,7 +532,9 @@ static void stream_latency_cb(pa_stream *p, void *userdata) { snd_pcm_pulse_t *pcm = userdata; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return; pa_threaded_mainloop_signal(pcm->p->mainloop, 0); } @@ -512,7 +547,9 @@ static int pulse_pcm_poll_revents(snd_pcm_ioplug_t * io, snd_pcm_pulse_t *pcm = io->private_data; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -541,7 +578,9 @@ static int pulse_prepare(snd_pcm_ioplug_t * io) unsigned c, d; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -645,7 +684,9 @@ static int pulse_hw_params(snd_pcm_ioplug_t * io, int err = 0; assert(pcm); - assert(pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); @@ -745,7 +786,9 @@ static int pulse_pause(snd_pcm_ioplug_t * io, int enable) int err = 0; assert (pcm); - assert (pcm->p); + + if (!pcm->p) + return -EBADFD; pa_threaded_mainloop_lock(pcm->p->mainloop); diff --git a/pulse/pulse.c b/pulse/pulse.c index 3940238..95d8dde 100644 --- a/pulse/pulse.c +++ b/pulse/pulse.c @@ -32,8 +32,9 @@ int pulse_check_connection(snd_pulse_t * p) pa_context_state_t state; assert(p); - assert(p->context); - assert(p->mainloop); + + if (!p->context || !p->mainloop) + return -EBADFD; state = pa_context_get_state(p->context); @@ -77,8 +78,12 @@ int pulse_wait_operation(snd_pulse_t * p, pa_operation * o) { assert(p); assert(o); - assert(p->state == PULSE_STATE_READY); - assert(p->mainloop); + + if (p->state != PULSE_STATE_READY) + return -EBADFD; + + if (!p->mainloop) + return -EBADFD; for (;;) { int err; @@ -103,8 +108,12 @@ int pulse_wait_stream_state(snd_pulse_t * p, pa_stream * stream, assert(p); assert(stream); - assert(p->state == PULSE_STATE_READY); - assert(p->mainloop); + + if (p->state != PULSE_STATE_READY) + return -EBADFD; + + if (!p->mainloop) + return -EBADFD; for (;;) { int err; @@ -197,7 +206,9 @@ snd_pulse_t *pulse_new(void) p->context = pa_context_new(pa_threaded_mainloop_get_api(p->mainloop), buf); - assert(p->context); + + if (!p->context) + goto fail; pa_context_set_state_callback(p->context, context_state_cb, p); @@ -246,9 +257,12 @@ int pulse_connect(snd_pulse_t * p, const char *server) int err; assert(p); - assert(p->context); - assert(p->mainloop); - assert(p->state == PULSE_STATE_INIT); + + if (!p->context || !p->mainloop) + return -EBADFD; + + if (p->state != PULSE_STATE_INIT) + return -EBADFD; pa_threaded_mainloop_lock(p->mainloop); -- 1.6.3.3 0001-alsa-plugins-pulse-Implement-pause.patch: pcm_pulse.c | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) --- NEW FILE 0001-alsa-plugins-pulse-Implement-pause.patch --- >From d9a839d51255c939f394f770b249c8a4a9600122 Mon Sep 17 00:00:00 2001 From: Troy Moure Date: Thu, 18 Jun 2009 14:55:21 +0100 Subject: [PATCH] alsa-plugins/pulse: Implement 'pause'. Just cork or uncork the stream to pause or unpause it. Signed-off-by: Troy Moure Signed-off-by: Takashi Iwai --- pulse/pcm_pulse.c | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/pulse/pcm_pulse.c b/pulse/pcm_pulse.c index db8d1e1..c276839 100644 --- a/pulse/pcm_pulse.c +++ b/pulse/pcm_pulse.c @@ -739,6 +739,30 @@ static int pulse_close(snd_pcm_ioplug_t * io) return 0; } +static int pulse_pause(snd_pcm_ioplug_t * io, int enable) +{ + snd_pcm_pulse_t *pcm = io->private_data; + int err = 0; + + assert (pcm); + assert (pcm->p); + + pa_threaded_mainloop_lock(pcm->p->mainloop); + + if (pcm->stream) { + pa_operation *o; + o = pa_stream_cork(pcm->stream, enable, NULL, NULL); + if (o) + pa_operation_unref(o); + else + err = -EIO; + } + + pa_threaded_mainloop_unlock(pcm->p->mainloop); + + return err; +} + static const snd_pcm_ioplug_callback_t pulse_playback_callback = { .start = pulse_start, .stop = pulse_stop, @@ -750,6 +774,7 @@ static const snd_pcm_ioplug_callback_t pulse_playback_callback = { .prepare = pulse_prepare, .hw_params = pulse_hw_params, .close = pulse_close, + .pause = pulse_pause }; -- 1.6.3.3 0002-pulse-use-PA_CONTEXT_IS_GOOD-where-applicable.patch: configure.in | 2 +- pulse/pulse.c | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) --- NEW FILE 0002-pulse-use-PA_CONTEXT_IS_GOOD-where-applicable.patch --- >From bf4d77ef87be83c3f9f249575cc4d08e7fb554df Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 31 Jul 2009 15:32:25 +0200 Subject: [PATCH 2/4] pulse: use PA_CONTEXT_IS_GOOD where applicable PA_CONTEXT_IS_GOOD is a safer way to check whether a context is still valid. This patch also bumps the version requirement of libpulse to 0.9.11. --- configure.in | 2 +- pulse/pulse.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 36740e9..f8bc669 100644 --- a/configure.in +++ b/configure.in @@ -30,7 +30,7 @@ AC_ARG_ENABLE([pulseaudio], AS_HELP_STRING([--disable-pulseaudio], [Disable building of pulseaudio plugin])) if test "x$enable_pulseaudio" != "xno"; then - PKG_CHECK_MODULES(pulseaudio, [libpulse >= 0.9.2], [HAVE_PULSE=yes], [HAVE_PULSE=no]) + PKG_CHECK_MODULES(pulseaudio, [libpulse >= 0.9.11], [HAVE_PULSE=yes], [HAVE_PULSE=no]) fi AM_CONDITIONAL(HAVE_PULSE, test x$HAVE_PULSE = xyes) diff --git a/pulse/pulse.c b/pulse/pulse.c index 95d8dde..dd17384 100644 --- a/pulse/pulse.c +++ b/pulse/pulse.c @@ -38,7 +38,7 @@ int pulse_check_connection(snd_pulse_t * p) state = pa_context_get_state(p->context); - if (state != PA_CONTEXT_READY) + if (!PA_CONTEXT_IS_GOOD(state)) return -EIO; return 0; @@ -127,8 +127,7 @@ int pulse_wait_stream_state(snd_pulse_t * p, pa_stream * stream, if (state == target) break; - if (state == PA_STREAM_FAILED || - state == PA_STREAM_TERMINATED) + if (!PA_STREAM_IS_GOOD(state)) return -EIO; pa_threaded_mainloop_wait(p->mainloop); -- 1.6.3.3 0003-pulse-unify-destruction-of-snd_pulse_t.patch: pulse.c | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) --- NEW FILE 0003-pulse-unify-destruction-of-snd_pulse_t.patch --- >From 563bf2ff83018bdd03a5159522e1fb2ce6532d47 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 31 Jul 2009 15:33:52 +0200 Subject: [PATCH 3/4] pulse: unify destruction of snd_pulse_t --- pulse/pulse.c | 31 ++++++++++++------------------- 1 files changed, 12 insertions(+), 19 deletions(-) diff --git a/pulse/pulse.c b/pulse/pulse.c index dd17384..ae66b0c 100644 --- a/pulse/pulse.c +++ b/pulse/pulse.c @@ -217,36 +217,29 @@ snd_pulse_t *pulse_new(void) return p; fail: + pulse_free(p); + + return NULL; +} + +void pulse_free(snd_pulse_t * p) +{ if (p->mainloop) pa_threaded_mainloop_stop(p->mainloop); - if (p->context) + if (p->context) { + pa_context_disconnect(p->context); pa_context_unref(p->context); + } if (p->mainloop) pa_threaded_mainloop_free(p->mainloop); - if (p->main_fd >= 0) - close(p->main_fd); - if (p->thread_fd >= 0) close(p->thread_fd); - free(p); - - return NULL; -} - -void pulse_free(snd_pulse_t * p) -{ - pa_threaded_mainloop_stop(p->mainloop); - - pa_context_disconnect(p->context); - pa_context_unref(p->context); - pa_threaded_mainloop_free(p->mainloop); - - close(p->thread_fd); - close(p->main_fd); + if (p->main_fd >= 0) + close(p->main_fd); free(p); } -- 1.6.3.3 0004-pulse-call-pa_threaded_mainloop_wait-to-handle-spuri.patch: pulse.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) --- NEW FILE 0004-pulse-call-pa_threaded_mainloop_wait-to-handle-spuri.patch --- >From 97e12ff5b53d569bb63d3ea32241d56f2f14cb73 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 31 Jul 2009 15:34:13 +0200 Subject: [PATCH 4/4] pulse: call pa_threaded_mainloop_wait() to handle spurious wakeups pa_threaded_mainloop_wait() can wake up for no reason, according to the specs of the underlying POSIX ptrhead_cond_wait() docs, so we need to call it in a loop here which should be cleaner anyway. --- pulse/pulse.c | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/pulse/pulse.c b/pulse/pulse.c index ae66b0c..6f58a7e 100644 --- a/pulse/pulse.c +++ b/pulse/pulse.c @@ -262,10 +262,17 @@ int pulse_connect(snd_pulse_t * p, const char *server) if (err < 0) goto error; - pa_threaded_mainloop_wait(p->mainloop); + for (;;) { + pa_context_state_t state = pa_context_get_state(p->context); - if (pa_context_get_state(p->context) != PA_CONTEXT_READY) - goto error; + if (!PA_CONTEXT_IS_GOOD(state)) + goto error; + + if (state == PA_CONTEXT_READY) + break; + + pa_threaded_mainloop_wait(p->mainloop); + } pa_threaded_mainloop_unlock(p->mainloop); -- 1.6.3.3 From terjeros at fedoraproject.org Fri Jul 31 14:09:39 2009 From: terjeros at fedoraproject.org (terjeros) Date: Fri, 31 Jul 2009 14:09:39 +0000 (UTC) Subject: rpms/e16-themes/devel e16-themes.spec,1.4,1.5 Message-ID: <20090731140939.CC7F811C00CE@cvs1.fedora.phx.redhat.com> Author: terjeros Update of /cvs/extras/rpms/e16-themes/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16234 Modified Files: e16-themes.spec Log Message: * Fri Jul 31 2009 Terje Rosten - 0.16.8.0.2-5 - Rebuild Index: e16-themes.spec =================================================================== RCS file: /cvs/extras/rpms/e16-themes/devel/e16-themes.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- e16-themes.spec 24 Jul 2009 20:44:37 -0000 1.4 +++ e16-themes.spec 31 Jul 2009 14:09:39 -0000 1.5 @@ -1,7 +1,7 @@ Summary: Themes for Enlightenment, DR16 Name: e16-themes Version: 0.16.8.0.2 -Release: 4%{?dist} +Release: 5%{?dist} License: MIT with advertising Group: User Interface/Desktops URL: http://www.enlightenment.org/ @@ -37,6 +37,9 @@ This is part of the Enlightenment distri %{_datadir}/e16/themes %changelog +* Fri Jul 31 2009 Terje Rosten - 0.16.8.0.2-5 +- Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 0.16.8.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From limb at fedoraproject.org Fri Jul 31 14:12:41 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 31 Jul 2009 14:12:41 +0000 (UTC) Subject: rpms/bacula/F-11 bacula.spec,1.27,1.28 Message-ID: <20090731141241.8F4BC11C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17400 Modified Files: bacula.spec Log Message: Frack. Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-11/bacula.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- bacula.spec 31 Jul 2009 13:49:14 -0000 1.27 +++ bacula.spec 31 Jul 2009 14:12:41 -0000 1.28 @@ -968,8 +968,8 @@ fi %{_bindir}/bacula-tray-monitor %{_sbindir}/bacula-tray-monitor %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/tray-monitor.conf -> %config %{_sysconfdir}/security/console.apps/bacula-tray-monitor -> %config %{_sysconfdir}/pam.d/bacula-tray-monitor +%config %{_sysconfdir}/security/console.apps/bacula-tray-monitor +%config %{_sysconfdir}/pam.d/bacula-tray-monitor %{_mandir}/man1/bacula-tray-monitor.1* %{_datadir}/applications/fedora-bacula-traymonitor.desktop %{_datadir}/pixmaps/bacula-tray-monitor.xpm From james at fedoraproject.org Fri Jul 31 14:14:21 2009 From: james at fedoraproject.org (James Antill) Date: Fri, 31 Jul 2009 14:14:21 +0000 (UTC) Subject: rpms/python-docs/devel .cvsignore, 1.10, 1.11 python-2.6-extdocmodules.patch, 1.1, 1.2 python-docs.spec, 1.22, 1.23 sources, 1.10, 1.11 python-2.6-import_error.patch, 1.1, NONE Message-ID: <20090731141422.1398E11C00CE@cvs1.fedora.phx.redhat.com> Author: james Update of /cvs/pkgs/rpms/python-docs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18147 Modified Files: .cvsignore python-2.6-extdocmodules.patch python-docs.spec sources Removed Files: python-2.6-import_error.patch Log Message: * Fri Jul 31 2009 Jame Antill - 2.6.2-1 - Move to 2.6.2 like python itself. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/python-docs/devel/.cvsignore,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- .cvsignore 29 Nov 2008 23:33:15 -0000 1.10 +++ .cvsignore 31 Jul 2009 14:14:21 -0000 1.11 @@ -1 +1 @@ -Python-2.6.tar.bz2 +Python-2.6.2.tar.bz2 python-2.6-extdocmodules.patch: Makefile | 2 +- Makefile~ |only 2 files changed, 1 insertion(+), 1 deletion(-) Index: python-2.6-extdocmodules.patch =================================================================== RCS file: /cvs/pkgs/rpms/python-docs/devel/python-2.6-extdocmodules.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- python-2.6-extdocmodules.patch 29 Nov 2008 23:33:15 -0000 1.1 +++ python-2.6-extdocmodules.patch 31 Jul 2009 14:14:21 -0000 1.2 @@ -1,8 +1,8 @@ -diff -up Python-2.6/Doc/Makefile.ext Python-2.6/Doc/Makefile ---- Python-2.6/Doc/Makefile.ext 2008-11-29 15:06:38.000000000 -0500 -+++ Python-2.6/Doc/Makefile 2008-11-29 15:07:14.000000000 -0500 -@@ -51,7 +51,7 @@ update: checkout - svn update tools/jinja +diff -ru Python-2.6.2-orig/Doc/Makefile Python-2.6.2/Doc/Makefile +--- Python-2.6.2-orig/Doc/Makefile 2009-07-31 10:10:04.000000000 -0400 ++++ Python-2.6.2/Doc/Makefile 2009-07-31 10:11:35.000000000 -0400 +@@ -52,7 +52,7 @@ + svn update tools/jinja2 svn update tools/pygments -build: checkout @@ -10,3 +10,4 @@ diff -up Python-2.6/Doc/Makefile.ext Pyt mkdir -p build/$(BUILDER) build/doctrees $(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS) @echo +Only in Python-2.6.2/Doc: Makefile~ Index: python-docs.spec =================================================================== RCS file: /cvs/pkgs/rpms/python-docs/devel/python-docs.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- python-docs.spec 26 Jul 2009 20:19:16 -0000 1.22 +++ python-docs.spec 31 Jul 2009 14:14:21 -0000 1.23 @@ -12,8 +12,8 @@ Summary: Documentation for the Python programming language Name: %{python}-docs -Version: %{pybasever} -Release: 5%{?dist} +Version: %{pybasever}.2 +Release: 1%{?dist} License: Python Group: Documentation Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2 @@ -22,10 +22,6 @@ BuildArch: noarch Patch4: python-2.6-nowhatsnew.patch Patch18: python-2.6-extdocmodules.patch -# False import makes python-docs to be unbuildable (#511647) -# Is fixed in python-2.6.2, but we use python-2.6 so far -Patch19: python-2.6-import_error.patch - Requires: %{python} = %{version} %if %{main_python} Obsoletes: python2-docs @@ -49,9 +45,8 @@ for the Python language. %prep %setup -q -n Python-%{version} -%patch4 -p1 -b .nowhatsnew +#patch4 -p1 -b .nowhatsnew %patch18 -p1 -b .extdocmodules -%patch19 -p1 -b .import_error %build make -C Doc html @@ -71,6 +66,9 @@ rm -fr $RPM_BUILD_ROOT %doc Misc/HISTORY Doc/build/html %changelog +* Fri Jul 31 2009 Jame Antill - 2.6.2-1 +- Move to 2.6.2 like python itself. + * Sun Jul 26 2009 Fedora Release Engineering - 2.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/python-docs/devel/sources,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- sources 29 Nov 2008 23:33:15 -0000 1.10 +++ sources 31 Jul 2009 14:14:21 -0000 1.11 @@ -1 +1 @@ -837476958702cb386c657b5dba61cdc5 Python-2.6.tar.bz2 +245db9f1e0f09ab7e0faaa0cf7301011 Python-2.6.2.tar.bz2 --- python-2.6-import_error.patch DELETED --- From twaugh at fedoraproject.org Fri Jul 31 14:14:42 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 31 Jul 2009 14:14:42 +0000 (UTC) Subject: rpms/system-config-printer/devel system-config-printer-a6cf4d3.patch, NONE, 1.1 system-config-printer-getdevices.patch, NONE, 1.1 system-config-printer.spec, 1.274, 1.275 system-config-printer-525e996.patch, 1.1, NONE Message-ID: <20090731141442.E5AA411C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/system-config-printer/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18304 Modified Files: system-config-printer.spec Added Files: system-config-printer-a6cf4d3.patch system-config-printer-getdevices.patch Removed Files: system-config-printer-525e996.patch Log Message: * Fri Jul 31 2009 Tim Waugh 1.1.10-7 - Sync with 1.1.x. - Added patch for cupspk DevicesGet method call. system-config-printer-a6cf4d3.patch: Makefile.am | 82 +- PhysicalDevice.py | 8 aclocal.m4 | 156 +++ configure.in | 3 cupshelpers/ppds.py | 27 cupspk.py | 4 jobviewer.py | 10 po/el.po | 567 +++++--------- po/it.po | 1114 ++++++++++++--------------- system-config-printer.py | 94 +- udev/70-printers.rules | 6 udev/com.redhat.PrinterConfig.conf | 16 udev/com.redhat.PrinterConfig.service.in | 4 udev/com.redhat.PrinterConfig.xml | 71 + udev/printer-config-daemon.c | 1248 +++++++++++++++++++++++++++++++ udev/printer-config-main.c | 159 +++ udev/printer-config.h | 76 + udev/udev-add-printer | 87 +- udev/udev-usb-printer.c | 454 +++++++++++ 19 files changed, 3131 insertions(+), 1055 deletions(-) --- NEW FILE system-config-printer-a6cf4d3.patch --- diff -up system-config-printer-1.1.10/aclocal.m4.a6cf4d3 system-config-printer-1.1.10/aclocal.m4 --- system-config-printer-1.1.10/aclocal.m4.a6cf4d3 2009-07-22 13:54:02.000000000 +0100 +++ system-config-printer-1.1.10/aclocal.m4 2009-07-31 15:09:03.192962439 +0100 @@ -1867,6 +1867,162 @@ AC_DEFUN([AM_NLS], AC_SUBST(USE_NLS) ]) +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# +# Copyright ? 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi + +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# +# Similar to PKG_CHECK_MODULES, make sure that the first instance of +# this or PKG_CHECK_MODULES is called, or make sure to call +# PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_ifval([$2], [$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + ifelse([$4], , [AC_MSG_ERROR(dnl +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT +])], + [AC_MSG_RESULT([no]) + $4]) +elif test $pkg_failed = untried; then + ifelse([$4], , [AC_MSG_FAILURE(dnl +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .])], + [$4]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + ifelse([$3], , :, [$3]) +fi[]dnl +])# PKG_CHECK_MODULES + # po.m4 serial 15 (gettext-0.17) dnl Copyright (C) 1995-2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation diff -up system-config-printer-1.1.10/configure.in.a6cf4d3 system-config-printer-1.1.10/configure.in --- system-config-printer-1.1.10/configure.in.a6cf4d3 2009-07-22 13:53:25.000000000 +0100 +++ system-config-printer-1.1.10/configure.in 2009-07-31 15:09:03.194961651 +0100 @@ -40,6 +40,9 @@ AC_ARG_WITH(udev-rules, AM_CONDITIONAL([UDEV_RULES], [test x$with_udev_rules != xno]) if test x$with_udev_rules != xno; then + PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.76]) + AC_SUBST(DBUS_GLIB_CFLAGS) + AC_SUBST(DBUS_GLIB_LIBS) AM_PROG_CC_C_O fi diff -up system-config-printer-1.1.10/cupshelpers/ppds.py.a6cf4d3 system-config-printer-1.1.10/cupshelpers/ppds.py --- system-config-printer-1.1.10/cupshelpers/ppds.py.a6cf4d3 2009-07-22 13:22:49.000000000 +0100 +++ system-config-printer-1.1.10/cupshelpers/ppds.py 2009-07-31 15:09:03.198961636 +0100 @@ -113,7 +113,7 @@ def ppdMakeModelSplit (ppd_make_and_mode model = ppd_make_and_model # Handle PPDs provided by Turboprint - elif l.startswith ("turboprint"): + elif l.find ("turboprint") != -1: t = ppd_make_and_model.find (" TurboPrint") if t != -1: ppd_make_and_model = ppd_make_and_model[:t] @@ -159,29 +159,32 @@ def ppdMakeModelSplit (ppd_make_and_mode # HP PPDs give NickNames like: # *NickName: "HP LaserJet 4 Plus v2013.111 Postscript (recommended)" # Find the version number. - v = model.find (" v") + modell = model.lower () + v = modell.find (" v") if v != -1 and (model[v + 2].isdigit () or [...6139 lines suppressed...] + + syslog (LOG_DEBUG, "Device vendor/product is %04zX:%04zX", + idVendor, idProduct); + + usb_init (); + usb_find_busses (); + usb_find_devices (); + for (bus = usb_get_busses (); bus && !got; bus = bus->next) + { + struct usb_device *device; + for (device = bus->devices; device && !got; device = device->next) + { + struct usb_config_descriptor *confptr; + if (device->descriptor.idVendor != idVendor || + device->descriptor.idProduct != idProduct || + !device->config) + continue; + + conf = 0; + for (confptr = device->config; + conf < device->descriptor.bNumConfigurations && !got; + conf++, confptr++) + { + struct usb_interface *ifaceptr; + iface = 0; + for (ifaceptr = confptr->interface; + iface < confptr->bNumInterfaces && !got; + iface++, ifaceptr++) + { + struct usb_interface_descriptor *altptr; + int altset = 0; + for (altptr = ifaceptr->altsetting; + altset < ifaceptr->num_altsetting && !got; + altset++, altptr++) + { + if (altptr->bInterfaceClass == USB_CLASS_PRINTER && + altptr->bInterfaceSubClass == 1) + { + int n; + handle = usb_open (device); + if (!handle) + { + syslog (LOG_DEBUG, "failed to open device"); + continue; + } + + n = altptr->bInterfaceNumber; + if (usb_claim_interface (handle, n) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed to claim interface"); + continue; + } + + if (n != 0 && usb_claim_interface (handle, 0) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed to claim interface 0"); + continue; + } + + n = altptr->bAlternateSetting; + if (usb_set_altinterface (handle, n) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_DEBUG, "failed set altinterface"); + continue; + } + + memset (ieee1284_id, '\0', sizeof (ieee1284_id)); + if (usb_control_msg (handle, + USB_TYPE_CLASS | + USB_ENDPOINT_IN | + USB_RECIP_INTERFACE, + 0, conf, iface, + ieee1284_id, + sizeof (ieee1284_id), + 5000) < 0) + { + usb_close (handle); + handle = NULL; + syslog (LOG_ERR, "Failed to fetch Device ID"); + continue; + } + + got = 1; + usb_close (handle); + break; + } + } + } + } + } + } + + got_deviceid: + if (got) + { + if (!device_id) + device_id = ieee1284_id + 2; + parse_device_id (device_id, id); + } + + udev_device_unref (dev); + udev_unref (udev); + return usb_device_devpath; +} + +static int +do_add (DBusGProxy *proxy, const char *devpath) +{ + GError *error = NULL; + struct device_id id; + char *usb_device_devpath; + char usbserial[256]; + + syslog (LOG_DEBUG, "add %s", devpath); + + usb_device_devpath = device_id_from_devpath (devpath, &id, + usbserial, sizeof (usbserial)); + + if (!id.mfg || !id.mdl) + { + syslog (LOG_ERR, "invalid or missing IEEE 1284 Device ID%s%s", + id.full_device_id ? " " : "", + id.full_device_id ? id.full_device_id : ""); + exit (1); + } + + syslog (LOG_DEBUG, "MFG:%s MDL:%s SERN:%s serial:%s", id.mfg, id.mdl, + id.sern ? id.sern : "-", usbserial); + + com_redhat_PrinterConfig_usb_printer_add (proxy, + usb_device_devpath, + id.full_device_id, + &error); + free (usb_device_devpath); + free_device_id (&id); + return 0; +} + +static int +do_remove (DBusGProxy *proxy, const char *devpath) +{ + GError *error = NULL; + syslog (LOG_DEBUG, "remove %s", devpath); + + com_redhat_PrinterConfig_usb_printer_remove (proxy, + devpath, + &error); + return 0; +} + +int +main (int argc, char **argv) +{ + DBusGConnection *connection; + DBusGProxy *proxy; + GError *error = NULL; + int add; + + g_type_init (); + + if (argc != 3 || + !((add = !strcmp (argv[1], "add")) || + !strcmp (argv[1], "remove"))) + { + fprintf (stderr, + "Syntax: %s add {USB device path}\n" + " %s remove {USB device path}\n", + argv[0], argv[0]); + return 1; + } + + openlog ("udev-usb-printer", 0, LOG_LPR); + + connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error); + if (connection == NULL) + { + syslog (LOG_ERR, "unable to connect to D-Bus: %s", error->message); + g_error_free (error); + exit (1); + } + + proxy = dbus_g_proxy_new_for_name (connection, + "com.redhat.PrinterConfig", + "/com/redhat/PrinterConfig", + "com.redhat.PrinterConfig"); + + if (add) + do_add (proxy, argv[2]); + else + do_remove (proxy, argv[2]); + + g_object_unref (proxy); + return 0; +} system-config-printer-getdevices.patch: cupspk.py | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) --- NEW FILE system-config-printer-getdevices.patch --- diff -up system-config-printer-1.1.10/cupspk.py.getdevices system-config-printer-1.1.10/cupspk.py --- system-config-printer-1.1.10/cupspk.py.getdevices 2009-07-31 15:11:10.285962319 +0100 +++ system-config-printer-1.1.10/cupspk.py 2009-07-31 15:11:23.732961871 +0100 @@ -300,7 +300,53 @@ class Connection: # getPPDs # getServerPPD # getDocument -# getDevices + + + def getDevices(self, *args, **kwds): + use_pycups = False + pk_args = () + + result = self._call_with_pk_and_fallback(use_pycups, + 'DevicesGet', pk_args, + self._connection.getDevices, + *args, **kwds) + + result_str = {} + if result != None: + for i in result.keys(): + if type(i) == dbus.String: + result_str[str(i)] = str(result[i]) + else: + result_str[i] = result[i] + + # cups-pk-helper returns all devices in one dictionary. + # Keys of different devices are distinguished by ':n' postfix. + + devices = {} + n = 0 + postfix = ':' + str (n) + device_keys = [x for x in result_str.keys() if x.endswith(postfix)] + while len (device_keys) > 0: + + device_uri = None + device_dict = {} + for i in device_keys: + key = i[:len(i)-len(postfix)] + if key != 'device-uri': + device_dict[key] = result_str[i] + else: + device_uri = result_str[i] + + if device_uri != None: + devices[device_uri] = device_dict + + n += 1 + postfix = ':' + str (n) + device_keys = [x for x in result_str.keys() if x.endswith(postfix)] + + return devices + + # getJobs # getJobAttributes Index: system-config-printer.spec =================================================================== RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v retrieving revision 1.274 retrieving revision 1.275 diff -u -p -r1.274 -r1.275 --- system-config-printer.spec 27 Jul 2009 04:43:29 -0000 1.274 +++ system-config-printer.spec 31 Jul 2009 14:14:42 -0000 1.275 @@ -7,14 +7,15 @@ Summary: A printer administration tool Name: system-config-printer Version: 1.1.10 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 -Patch1: system-config-printer-525e996.patch +Patch1: system-config-printer-a6cf4d3.patch +Patch2: system-config-printer-getdevices.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -79,7 +80,8 @@ printers. %prep %setup -q -a 1 -a 2 -%patch1 -p1 -b .525e996 +%patch1 -p1 -b .a6cf4d3 +%patch2 -p1 -b .getdevices automake --copy --add-missing autoconf @@ -194,6 +196,10 @@ rm -rf %buildroot exit 0 %changelog +* Fri Jul 31 2009 Tim Waugh 1.1.10-7 +- Sync with 1.1.x. +- Added patch for cupspk DevicesGet method call. + * Mon Jul 27 2009 Matthias Clasen 1.1.10-6 - Drop no-longer-used python-sexy dep --- system-config-printer-525e996.patch DELETED --- From glommer at fedoraproject.org Fri Jul 31 14:23:51 2009 From: glommer at fedoraproject.org (Glauber Costa) Date: Fri, 31 Jul 2009 14:23:51 +0000 (UTC) Subject: rpms/bochs/devel bochs.spec,1.43,1.44 sources,1.15,1.16 Message-ID: <20090731142351.67B1B11C00CE@cvs1.fedora.phx.redhat.com> Author: glommer Update of /cvs/pkgs/rpms/bochs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22362 Modified Files: bochs.spec sources Log Message: replace kvm-bios with a more modern version, and refresh instructions on how to get it. Index: bochs.spec =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/bochs.spec,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- bochs.spec 24 Jul 2009 18:16:57 -0000 1.43 +++ bochs.spec 31 Jul 2009 14:23:51 -0000 1.44 @@ -1,7 +1,7 @@ %define githead 04387139e3b Name: bochs Version: 2.3.8 -Release: 0.7.git%{githead}%{?dist} +Release: 0.8.git%{githead}%{?dist} Summary: Portable x86 PC emulator Group: Applications/Emulators License: LGPLv2+ @@ -14,8 +14,9 @@ Source0: %{name}-%{version}.tar.g # This should not live here, but letting it in the kvm package would produce another noarch package we would # then have to get rid of in the future. So let it be. -# git clone git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm-userspace.git -# git archive --format=tar --prefix=kvm-bios.tar.gz HEAD bios | gzip > ../kvm-bios.tar.gz +# git clone git://git.kernel.org/pub/scm/linux/kernel/git/avi/qemu-kvm.git +# cd kvm +# git archive --format=tar --prefix=kvm-bios/ HEAD bios | gzip > ../../kvm-bios.tar.gz Source1: kvm-bios.tar.gz Patch0: %{name}-0001_bx-qemu.patch @@ -215,6 +216,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Glauber Costa - 2:0.10.50-14.kvm88 +- replace kvm-bios with a more modern version, and refresh instructions on how to get it. + * Fri Jul 24 2009 Fedora Release Engineering - 2.3.8-0.7.git04387139e3b - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/sources,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- sources 11 Mar 2009 16:48:03 -0000 1.15 +++ sources 31 Jul 2009 14:23:51 -0000 1.16 @@ -1,2 +1 @@ -a360358375ad00487f0f26dcc667a4a4 bochs-2.3.8.tar.gz -9fb228d2176430963c4d2d8afcf2faff kvm-bios.tar.gz +6a9ea13ca552ab7369206196b0dc1afa kvm-bios.tar.gz From terjeros at fedoraproject.org Fri Jul 31 14:23:55 2009 From: terjeros at fedoraproject.org (terjeros) Date: Fri, 31 Jul 2009 14:23:55 +0000 (UTC) Subject: rpms/bpython/devel .cvsignore, 1.6, 1.7 bpython.spec, 1.9, 1.10 sources, 1.6, 1.7 Message-ID: <20090731142355.53BC111C00CE@cvs1.fedora.phx.redhat.com> Author: terjeros Update of /cvs/extras/rpms/bpython/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22599 Modified Files: .cvsignore bpython.spec sources Log Message: * Fri Jul 31 2009 Terje Rosten - 0.9.4-1 - 0.9.4 - Update urls Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/bpython/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 18 May 2009 08:03:29 -0000 1.6 +++ .cvsignore 31 Jul 2009 14:23:55 -0000 1.7 @@ -1 +1 @@ -bpython-0.8.0.tar.gz +bpython-0.9.4.tar.gz Index: bpython.spec =================================================================== RCS file: /cvs/extras/rpms/bpython/devel/bpython.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- bpython.spec 24 Jul 2009 18:24:01 -0000 1.9 +++ bpython.spec 31 Jul 2009 14:23:55 -0000 1.10 @@ -2,12 +2,12 @@ Name: bpython Summary: Fancy curses interface to the Python interactive interpreter -Version: 0.8.0 -Release: 2%{?dist} -URL: http://www.noiseforfree.com/bpython/ +Version: 0.9.4 +Release: 1%{?dist} +URL: http://www.bpython-interpreter.org/ Group: Development/Libraries License: MIT -Source0: http://www.noiseforfree.com/%{name}/%{name}-%{version}.tar.gz +Source0: http://www.bpython-interpreter.org/releases/bpython-%{version}.tar.gz BuildArch: noarch BuildRequires: python-devel python-setuptools desktop-file-utils Requires: python-pygments pyparsing @@ -27,7 +27,7 @@ operating systems. It has the following o auto indentation %prep -%setup -q -n %{name} +%setup -q %{__sed} -i -e \ "s|/usr/share/docs/bpython/examples on Debian|%{_docdir}/%{name}-%{version}/sample-rc on Fedora/RHEL|g" doc/bpython.1 %{__sed} -i -e '1d' bpython/cli.py @@ -49,14 +49,18 @@ operating systems. It has the following %files %defattr(-, root, root, -) -%doc CHANGELOG LICENSE README sample-rc +%doc AUTHORS CHANGELOG doc LICENSE light.theme README sample-config sample.theme %{_bindir}/%{name} %{python_sitelib}/%{name}* %{_mandir}/man1/%{name}.1* -%{_mandir}/man5/bpythonrc.5* +%{_mandir}/man5/bpython-config.5* #{_datadir}/applications/%{name}.desktop %changelog +* Fri Jul 31 2009 Terje Rosten - 0.9.4-1 +- 0.9.4 +- Update urls + * Fri Jul 24 2009 Fedora Release Engineering - 0.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/bpython/devel/sources,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- sources 18 May 2009 08:03:29 -0000 1.6 +++ sources 31 Jul 2009 14:23:55 -0000 1.7 @@ -1 +1 @@ -d0275118b28d2eb984c902f162732736 bpython-0.8.0.tar.gz +68750ec12ed22c9a5f91b34c10785fd1 bpython-0.9.4.tar.gz From nphilipp at fedoraproject.org Fri Jul 31 14:31:01 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 14:31:01 +0000 (UTC) Subject: rpms/sane-frontends/devel sane-frontends-1.0.14-array-out-of-bounds.patch, NONE, 1.1 sane-frontends-1.0.14-sane-backends-1.0.20.patch, NONE, 1.1 sane-frontends.spec, 1.28, 1.29 sane-frontends-1.0.14-badcode.patch, 1.1, NONE Message-ID: <20090731143101.6E39311C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/sane-frontends/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25077 Modified Files: sane-frontends.spec Added Files: sane-frontends-1.0.14-array-out-of-bounds.patch sane-frontends-1.0.14-sane-backends-1.0.20.patch Removed Files: sane-frontends-1.0.14-badcode.patch Log Message: replace badcode with array-out-of-bounds patch fix compilation with sane-backends-1.0.20 sane-frontends-1.0.14-array-out-of-bounds.patch: xcam.c | 2 +- xscanimage.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE sane-frontends-1.0.14-array-out-of-bounds.patch --- commit c4cb247732767aed76502069d0b3040c4c4e5123 Author: Nils Philippsen Date: Fri Jul 31 16:21:53 2009 +0200 patch: array-out-of-bounds Squashed commit of the following: commit 337bcefaa7a67931095b74317a266a1244978ab6 Author: Nils Philippsen Date: Fri Jul 31 16:03:28 2009 +0200 fix array subscript out of bounds errors (#133121) diff --git a/src/xcam.c b/src/xcam.c index 2d494a5..f6859b7 100644 --- a/src/xcam.c +++ b/src/xcam.c @@ -1289,7 +1289,7 @@ save_frame_button (GtkWidget * widget, gpointer client_data, /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || diff --git a/src/xscanimage.c b/src/xscanimage.c index a36324f..065923d 100644 --- a/src/xscanimage.c +++ b/src/xscanimage.c @@ -1284,7 +1284,7 @@ scan_dialog (GtkWidget * widget, gpointer call_data) { /* We are running in standalone mode */ /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || sane-frontends-1.0.14-sane-backends-1.0.20.patch: gtkglue.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE sane-frontends-1.0.14-sane-backends-1.0.20.patch --- commit ddd90b1502a263d03938b1e45a57684d576993ba Author: Nils Philippsen Date: Fri Jul 31 16:25:58 2009 +0200 patch: sane-backends-1.0.20 Squashed commit of the following: commit 0c84326fa37bb309481c4d2658ab6cb17c9f0e85 Author: Nils Philippsen Date: Fri Jul 31 16:18:59 2009 +0200 use SANE_CAP_ALWAYS_SETTABLE only if available diff --git a/src/gtkglue.c b/src/gtkglue.c index ba5cbf5..ec81f45 100644 --- a/src/gtkglue.c +++ b/src/gtkglue.c @@ -1476,8 +1476,12 @@ gsg_set_sensitivity (GSGDialog * dialog, int sensitive) || opt->type == SANE_TYPE_GROUP || !dialog->element[i].widget) continue; +#ifdef SANE_CAP_ALWAYS_SETTABLE if (!(opt->cap & SANE_CAP_ALWAYS_SETTABLE)) gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#else + gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#endif } } Index: sane-frontends.spec =================================================================== RCS file: /cvs/pkgs/rpms/sane-frontends/devel/sane-frontends.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- sane-frontends.spec 27 Jul 2009 03:48:13 -0000 1.28 +++ sane-frontends.spec 31 Jul 2009 14:31:01 -0000 1.29 @@ -1,10 +1,11 @@ Name: sane-frontends Version: 1.0.14 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Graphical frontend to SANE -URL: http://www.sane-project.org -Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz -Patch0: sane-frontends-1.0.14-badcode.patch +URL: http://www.sane-project.org +Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz +Patch0: sane-frontends-1.0.14-array-out-of-bounds.patch +Patch1: sane-frontends-1.0.14-sane-backends-1.0.20.patch License: GPLv2+ Group: Applications/System BuildRequires: gtk2-devel gimp-devel @@ -20,7 +21,8 @@ This packages includes the scanadf and x %prep %setup -q -%patch0 -p1 -b .badcode +%patch0 -p1 -b .array-out-of-bounds +%patch1 -p1 -b .sane-backends-1.0.20 %build %configure --with-gnu-ld --prefix=%{_prefix} --sysconfdir=%{_sysconfdir} --mandir=%{_mandir} @@ -44,6 +46,10 @@ rm -R $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Nils Philippsen 1.0.14-8 +- replace badcode with array-out-of-bounds patch +- fix compilation with sane-backends-1.0.20 + * Sun Jul 26 2009 Fedora Release Engineering - 1.0.14-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- sane-frontends-1.0.14-badcode.patch DELETED --- From nphilipp at fedoraproject.org Fri Jul 31 14:32:08 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 14:32:08 +0000 (UTC) Subject: rpms/sane-frontends/F-11 sane-frontends-1.0.14-array-out-of-bounds.patch, NONE, 1.1 sane-frontends-1.0.14-sane-backends-1.0.20.patch, NONE, 1.1 sane-frontends.spec, 1.27, 1.28 sane-frontends-1.0.14-badcode.patch, 1.1, NONE Message-ID: <20090731143208.E457911C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/sane-frontends/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25552 Modified Files: sane-frontends.spec Added Files: sane-frontends-1.0.14-array-out-of-bounds.patch sane-frontends-1.0.14-sane-backends-1.0.20.patch Removed Files: sane-frontends-1.0.14-badcode.patch Log Message: replace badcode with array-out-of-bounds patch fix compilation with sane-backends-1.0.20 sane-frontends-1.0.14-array-out-of-bounds.patch: xcam.c | 2 +- xscanimage.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE sane-frontends-1.0.14-array-out-of-bounds.patch --- commit c4cb247732767aed76502069d0b3040c4c4e5123 Author: Nils Philippsen Date: Fri Jul 31 16:21:53 2009 +0200 patch: array-out-of-bounds Squashed commit of the following: commit 337bcefaa7a67931095b74317a266a1244978ab6 Author: Nils Philippsen Date: Fri Jul 31 16:03:28 2009 +0200 fix array subscript out of bounds errors (#133121) diff --git a/src/xcam.c b/src/xcam.c index 2d494a5..f6859b7 100644 --- a/src/xcam.c +++ b/src/xcam.c @@ -1289,7 +1289,7 @@ save_frame_button (GtkWidget * widget, gpointer client_data, /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || diff --git a/src/xscanimage.c b/src/xscanimage.c index a36324f..065923d 100644 --- a/src/xscanimage.c +++ b/src/xscanimage.c @@ -1284,7 +1284,7 @@ scan_dialog (GtkWidget * widget, gpointer call_data) { /* We are running in standalone mode */ /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || sane-frontends-1.0.14-sane-backends-1.0.20.patch: gtkglue.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE sane-frontends-1.0.14-sane-backends-1.0.20.patch --- commit ddd90b1502a263d03938b1e45a57684d576993ba Author: Nils Philippsen Date: Fri Jul 31 16:25:58 2009 +0200 patch: sane-backends-1.0.20 Squashed commit of the following: commit 0c84326fa37bb309481c4d2658ab6cb17c9f0e85 Author: Nils Philippsen Date: Fri Jul 31 16:18:59 2009 +0200 use SANE_CAP_ALWAYS_SETTABLE only if available diff --git a/src/gtkglue.c b/src/gtkglue.c index ba5cbf5..ec81f45 100644 --- a/src/gtkglue.c +++ b/src/gtkglue.c @@ -1476,8 +1476,12 @@ gsg_set_sensitivity (GSGDialog * dialog, int sensitive) || opt->type == SANE_TYPE_GROUP || !dialog->element[i].widget) continue; +#ifdef SANE_CAP_ALWAYS_SETTABLE if (!(opt->cap & SANE_CAP_ALWAYS_SETTABLE)) gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#else + gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#endif } } Index: sane-frontends.spec =================================================================== RCS file: /cvs/pkgs/rpms/sane-frontends/F-11/sane-frontends.spec,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- sane-frontends.spec 2 Mar 2009 13:10:13 -0000 1.27 +++ sane-frontends.spec 31 Jul 2009 14:32:08 -0000 1.28 @@ -1,10 +1,11 @@ Name: sane-frontends Version: 1.0.14 -Release: 6%{?dist} +Release: 8%{?dist} Summary: Graphical frontend to SANE -URL: http://www.sane-project.org -Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz -Patch0: sane-frontends-1.0.14-badcode.patch +URL: http://www.sane-project.org +Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz +Patch0: sane-frontends-1.0.14-array-out-of-bounds.patch +Patch1: sane-frontends-1.0.14-sane-backends-1.0.20.patch License: GPLv2+ Group: Applications/System BuildRequires: gtk2-devel gimp-devel @@ -20,7 +21,8 @@ This packages includes the scanadf and x %prep %setup -q -%patch0 -p1 -b .badcode +%patch0 -p1 -b .array-out-of-bounds +%patch1 -p1 -b .sane-backends-1.0.20 %build %configure --with-gnu-ld --prefix=%{_prefix} --sysconfdir=%{_sysconfdir} --mandir=%{_mandir} @@ -44,6 +46,13 @@ rm -R $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Nils Philippsen 1.0.14-8 +- replace badcode with array-out-of-bounds patch +- fix compilation with sane-backends-1.0.20 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.14-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 02 2009 Nils Philippsen 1.0.14-6 - don't require libieee2384-devel, libjpeg-devel but require fixed sane-backends-devel for building --- sane-frontends-1.0.14-badcode.patch DELETED --- From nphilipp at fedoraproject.org Fri Jul 31 14:32:23 2009 From: nphilipp at fedoraproject.org (Nils Philippsen) Date: Fri, 31 Jul 2009 14:32:23 +0000 (UTC) Subject: rpms/sane-frontends/F-10 sane-frontends-1.0.14-array-out-of-bounds.patch, NONE, 1.1 sane-frontends-1.0.14-sane-backends-1.0.20.patch, NONE, 1.1 sane-frontends.spec, 1.24, 1.25 sane-frontends-1.0.14-badcode.patch, 1.1, NONE Message-ID: <20090731143223.900C411C00CE@cvs1.fedora.phx.redhat.com> Author: nphilipp Update of /cvs/pkgs/rpms/sane-frontends/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25659 Modified Files: sane-frontends.spec Added Files: sane-frontends-1.0.14-array-out-of-bounds.patch sane-frontends-1.0.14-sane-backends-1.0.20.patch Removed Files: sane-frontends-1.0.14-badcode.patch Log Message: replace badcode with array-out-of-bounds patch fix compilation with sane-backends-1.0.20 sane-frontends-1.0.14-array-out-of-bounds.patch: xcam.c | 2 +- xscanimage.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- NEW FILE sane-frontends-1.0.14-array-out-of-bounds.patch --- commit c4cb247732767aed76502069d0b3040c4c4e5123 Author: Nils Philippsen Date: Fri Jul 31 16:21:53 2009 +0200 patch: array-out-of-bounds Squashed commit of the following: commit 337bcefaa7a67931095b74317a266a1244978ab6 Author: Nils Philippsen Date: Fri Jul 31 16:03:28 2009 +0200 fix array subscript out of bounds errors (#133121) diff --git a/src/xcam.c b/src/xcam.c index 2d494a5..f6859b7 100644 --- a/src/xcam.c +++ b/src/xcam.c @@ -1289,7 +1289,7 @@ save_frame_button (GtkWidget * widget, gpointer client_data, /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || diff --git a/src/xscanimage.c b/src/xscanimage.c index a36324f..065923d 100644 --- a/src/xscanimage.c +++ b/src/xscanimage.c @@ -1284,7 +1284,7 @@ scan_dialog (GtkWidget * widget, gpointer call_data) { /* We are running in standalone mode */ /* test for pnm formats */ strncpy (testfilename, preferences.filename, sizeof (testfilename)); - testfilename[sizeof (testfilename)] = 0; + testfilename[sizeof (testfilename) - 1] = 0; g_strreverse (testfilename); if (!((!strncmp (testfilename, "mnp.", 4)) || (!strncmp (testfilename, "mgp.", 4)) || sane-frontends-1.0.14-sane-backends-1.0.20.patch: gtkglue.c | 4 ++++ 1 file changed, 4 insertions(+) --- NEW FILE sane-frontends-1.0.14-sane-backends-1.0.20.patch --- commit ddd90b1502a263d03938b1e45a57684d576993ba Author: Nils Philippsen Date: Fri Jul 31 16:25:58 2009 +0200 patch: sane-backends-1.0.20 Squashed commit of the following: commit 0c84326fa37bb309481c4d2658ab6cb17c9f0e85 Author: Nils Philippsen Date: Fri Jul 31 16:18:59 2009 +0200 use SANE_CAP_ALWAYS_SETTABLE only if available diff --git a/src/gtkglue.c b/src/gtkglue.c index ba5cbf5..ec81f45 100644 --- a/src/gtkglue.c +++ b/src/gtkglue.c @@ -1476,8 +1476,12 @@ gsg_set_sensitivity (GSGDialog * dialog, int sensitive) || opt->type == SANE_TYPE_GROUP || !dialog->element[i].widget) continue; +#ifdef SANE_CAP_ALWAYS_SETTABLE if (!(opt->cap & SANE_CAP_ALWAYS_SETTABLE)) gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#else + gtk_widget_set_sensitive (dialog->element[i].widget, sensitive); +#endif } } Index: sane-frontends.spec =================================================================== RCS file: /cvs/pkgs/rpms/sane-frontends/F-10/sane-frontends.spec,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- sane-frontends.spec 4 Sep 2008 15:34:32 -0000 1.24 +++ sane-frontends.spec 31 Jul 2009 14:32:23 -0000 1.25 @@ -1,14 +1,15 @@ Name: sane-frontends Version: 1.0.14 -Release: 5%{?dist} +Release: 8%{?dist} Summary: Graphical frontend to SANE -URL: http://www.sane-project.org -Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz -Patch0: sane-frontends-1.0.14-badcode.patch +URL: http://www.sane-project.org +Source0: ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz +Patch0: sane-frontends-1.0.14-array-out-of-bounds.patch +Patch1: sane-frontends-1.0.14-sane-backends-1.0.20.patch License: GPLv2+ Group: Applications/System -BuildRequires: gtk2-devel gimp-devel libjpeg-devel -BuildRequires: sane-backends-devel libieee1284-devel +BuildRequires: gtk2-devel gimp-devel +BuildRequires: sane-backends-devel >= 1.0.19-15 Requires: sane-backends Buildroot: %{_tmppath}/%{name}-root Obsoletes: sane <= 0:1.0.9 @@ -20,7 +21,8 @@ This packages includes the scanadf and x %prep %setup -q -%patch0 -p1 -b .badcode +%patch0 -p1 -b .array-out-of-bounds +%patch1 -p1 -b .sane-backends-1.0.20 %build %configure --with-gnu-ld --prefix=%{_prefix} --sysconfdir=%{_sysconfdir} --mandir=%{_mandir} @@ -44,6 +46,20 @@ rm -R $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Nils Philippsen 1.0.14-8 +- replace badcode with array-out-of-bounds patch +- fix compilation with sane-backends-1.0.20 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0.14-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Mar 02 2009 Nils Philippsen 1.0.14-6 +- don't require libieee2384-devel, libjpeg-devel but require fixed + sane-backends-devel for building + +* Wed Feb 25 2009 Fedora Release Engineering +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Sep 4 2008 Tom "spot" Callaway - 1.0.14-5 - fix license tag --- sane-frontends-1.0.14-badcode.patch DELETED --- From glommer at fedoraproject.org Fri Jul 31 14:35:02 2009 From: glommer at fedoraproject.org (Glauber Costa) Date: Fri, 31 Jul 2009 14:35:02 +0000 (UTC) Subject: rpms/bochs/devel .cvsignore,1.15,1.16 sources,1.16,1.17 Message-ID: <20090731143502.221CA11C00CE@cvs1.fedora.phx.redhat.com> Author: glommer Update of /cvs/pkgs/rpms/bochs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26771 Modified Files: .cvsignore sources Log Message: modify sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/.cvsignore,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- .cvsignore 11 Mar 2009 17:13:22 -0000 1.15 +++ .cvsignore 31 Jul 2009 14:35:01 -0000 1.16 @@ -1 +1,2 @@ kvm-bios.tar.gz +bochs-bios-2.3.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/sources,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- sources 31 Jul 2009 14:23:51 -0000 1.16 +++ sources 31 Jul 2009 14:35:01 -0000 1.17 @@ -1 +1,2 @@ 6a9ea13ca552ab7369206196b0dc1afa kvm-bios.tar.gz +d898379736b0137cf35677bab787a0cb bochs-bios-2.3.8.tar.gz From spot at fedoraproject.org Fri Jul 31 14:36:25 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 14:36:25 +0000 (UTC) Subject: rpms/nant/devel nant.spec,1.35,1.36 Message-ID: <20090731143625.7477911C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/nant/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27383 Modified Files: nant.spec Log Message: fix comments about bootstrapping to be clearer Index: nant.spec =================================================================== RCS file: /cvs/pkgs/rpms/nant/devel/nant.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -p -r1.35 -r1.36 --- nant.spec 30 Jul 2009 21:46:38 -0000 1.35 +++ nant.spec 31 Jul 2009 14:36:25 -0000 1.36 @@ -6,7 +6,7 @@ Summary: NAnt is a build tool for Mono and .NET Name: nant Version: 0.85 -Release: 29%{?dist} +Release: 30%{?dist} Epoch: 1 Source0: http://download.sourceforge.net/nant/%{name}-%{version}-src.tar.gz Patch0: nant-build.patch @@ -60,16 +60,16 @@ sed -i 's/\r//' README.txt sed -i 's/\r//' doc/releasenotes.html # Clean out the prebuilt files (unless we're bootstrapping) +# If we're not bootstrapping, leave the files alone: %if 0%{bootstrap} -echo "NORMAL BUILD" +echo "BOOTSTRAP BUILD" %else -echo "BOOTSTRAPPING BUILD" +echo "NORMAL BUILD, NUKING PREBUILT BUNDLED DLL FILES" rm -rf lib/ICSharpCode.SharpCvsLib.Console.dll lib/ICSharpCode.SharpCvsLib.dll lib/scvs.exe rm -rf lib/ICSharpCode.SharpZipLib.dll lib/NUnitCore.dll lib/log4net.dll lib/mono/1.0/*.dll lib/mono/2.0/*.dll %endif -# Copy in the system libs -# If you're bootstrapping, comment out all these cp lines +# Copy in the system libs, unless we're bootstrapping. %if 0%{bootstrap} # do nothing %else @@ -102,8 +102,7 @@ sed -i -e "s#%{buildroot}##" %{buildroot find examples -name \*.dll -o -name \*.exe|xargs rm -f rm -rf %{buildroot}%{_datadir}/NAnt/doc -# Flush out the binary bits that we used to build -# If you're bootstrapping, comment out all these rm lines +# Flush out the binary bits that we used to build, unless we're bootstrapping. %if 0%{bootstrap} # Do nothing %else @@ -132,6 +131,9 @@ scrollkeeper-update -q || : %doc examples/* doc/help/* %changelog +* Fri Jul 31 2009 Tom "spot" Callaway - 1:0.85-30 +- clarify comments on bootstrapping + * Thu Jul 30 2009 Tom "spot" Callaway - 1:0.85-29 - unbootstrap From terjeros at fedoraproject.org Fri Jul 31 14:37:08 2009 From: terjeros at fedoraproject.org (terjeros) Date: Fri, 31 Jul 2009 14:37:08 +0000 (UTC) Subject: rpms/moserial/devel .cvsignore, 1.2, 1.3 moserial.spec, 1.2, 1.3 sources, 1.2, 1.3 Message-ID: <20090731143708.CF78411C00CE@cvs1.fedora.phx.redhat.com> Author: terjeros Update of /cvs/extras/rpms/moserial/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27802 Modified Files: .cvsignore moserial.spec sources Log Message: * Fri Jul 31 2009 Terje Rosten - 2.27.3-1 - 2.27.3 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/moserial/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 31 May 2009 20:53:12 -0000 1.2 +++ .cvsignore 31 Jul 2009 14:37:08 -0000 1.3 @@ -1 +1 @@ -moserial-2.26.1.tar.gz +moserial-2.27.3.tar.gz Index: moserial.spec =================================================================== RCS file: /cvs/extras/rpms/moserial/devel/moserial.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- moserial.spec 25 Jul 2009 15:09:27 -0000 1.2 +++ moserial.spec 31 Jul 2009 14:37:08 -0000 1.3 @@ -1,11 +1,11 @@ Summary: Serial terminal for the gnome desktop Name: moserial -Version: 2.26.1 -Release: 3%{?dist} +Version: 2.27.3 +Release: 1%{?dist} Group: Applications/Communications License: GPLv3+ URL: http://live.gnome.org/moserial/ -Source0: http://ftp.gnome.org/pub/GNOME/sources/moserial/2.26/moserial-%{version}.tar.gz +Source0: http://ftp.gnome.org/pub/GNOME/sources/moserial/2.27/moserial-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: yelp hicolor-icon-theme BuildRequires: vala desktop-file-utils GConf2-devel perl(XML::Parser) @@ -58,6 +58,9 @@ fi %{_datadir}/omf/%{name} %changelog +* Fri Jul 31 2009 Terje Rosten - 2.27.3-1 +- 2.27.3 + * Sat Jul 25 2009 Fedora Release Engineering - 2.26.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/moserial/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 31 May 2009 20:53:13 -0000 1.2 +++ sources 31 Jul 2009 14:37:08 -0000 1.3 @@ -1 +1 @@ -437ebcc0eb7fa56751604eee2a4b4cd0 moserial-2.26.1.tar.gz +7943770ba35f41be18a2633efee28b77 moserial-2.27.3.tar.gz From spot at fedoraproject.org Fri Jul 31 14:37:20 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 14:37:20 +0000 (UTC) Subject: rpms/mono-sharpcvslib/devel mono-sharpcvslib.spec,1.9,1.10 Message-ID: <20090731143720.0815011C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/mono-sharpcvslib/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27930 Modified Files: mono-sharpcvslib.spec Log Message: rebuild again Index: mono-sharpcvslib.spec =================================================================== RCS file: /cvs/pkgs/rpms/mono-sharpcvslib/devel/mono-sharpcvslib.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mono-sharpcvslib.spec 25 Jul 2009 15:02:07 -0000 1.9 +++ mono-sharpcvslib.spec 31 Jul 2009 14:37:19 -0000 1.10 @@ -2,7 +2,7 @@ Name: mono-sharpcvslib Version: 0.35 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Client cvs library written in C# URL: http://sharpcvslib.sourceforge.net/ # Exception: Permission is given to use this library in commercial closed-source applications @@ -95,6 +95,9 @@ mv src/doc/api/msdn/tree.js{.utf8,} %{_libdir}/pkgconfig/sharpcvslib.pc %changelog +* Fri Jul 31 2009 Tom "spot" Callaway - 0.35-11 +- rebuild again + * Sat Jul 25 2009 Fedora Release Engineering - 0.35-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From nhorman at fedoraproject.org Fri Jul 31 14:39:28 2009 From: nhorman at fedoraproject.org (Neil Horman) Date: Fri, 31 Jul 2009 14:39:28 +0000 (UTC) Subject: rpms/kexec-tools/devel kdump.init,1.22,1.23 Message-ID: <20090731143928.A52D711C00CE@cvs1.fedora.phx.redhat.com> Author: nhorman Update of /cvs/extras/rpms/kexec-tools/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28895 Modified Files: kdump.init Log Message: Fixing mistyped DRACUT_CMD directive Index: kdump.init =================================================================== RCS file: /cvs/extras/rpms/kexec-tools/devel/kdump.init,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- kdump.init 29 Jul 2009 19:34:47 -0000 1.22 +++ kdump.init 31 Jul 2009 14:39:28 -0000 1.23 @@ -56,7 +56,7 @@ function check_config() if [ -f /etc/kdump-adv-conf/initramfs.conf ] then $LOGGER "Using Kdump advanced configuration service" - if [ -n "DRACUT_CMD" ] + if [ -n "$DRACUT_CMD" ] then MKDUMPRD=$DRACUT_CMD else From limb at fedoraproject.org Fri Jul 31 14:40:10 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 31 Jul 2009 14:40:10 +0000 (UTC) Subject: rpms/bacula/F-10 bacula.spec,1.16,1.17 Message-ID: <20090731144010.8754511C04D5@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29092 Modified Files: bacula.spec Log Message: gnome-console consolehelper correction. BZ 426790. add tray-monitor to consolehelper. BZ 426790 Index: bacula.spec =================================================================== RCS file: /cvs/pkgs/rpms/bacula/F-10/bacula.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- bacula.spec 23 Jul 2009 16:53:40 -0000 1.16 +++ bacula.spec 31 Jul 2009 14:40:10 -0000 1.17 @@ -8,7 +8,7 @@ Summary: Cross platform network backup for Linux, Unix, Mac and Windows Name: bacula Version: 2.4.4 -Release: 4%{?dist} +Release: 5%{?dist} # See LICENSE for details License: GPLv2 with exceptions Group: System Environment/Daemons @@ -25,6 +25,7 @@ Source9: bacula-sd.init #Source10: http://download.sourceforge.net/bacula/bacula-gui-%{gui_version}.tar.gz #Source11: bacula-web.apache Source12: bacula-bat.desktop +Source13: bacula-traymonitor.desktop.consolehelper Patch0: bacula-director-configuration.patch Patch1: bacula-config.patch #Patch2: bacula-wxconsole.patch @@ -571,12 +572,14 @@ install -m 644 -D bacula-sqlite/scripts/ install -m 644 -D bacula-sqlite/scripts/bat.desktop.consolehelper %{buildroot}%{_sysconfdir}/security/console.apps/bat install -m 644 -D bacula-sqlite/src/tray-monitor/generic.xpm %{buildroot}%{_datadir}/pixmaps/bacula-tray-monitor.xpm install -m 644 -D bacula-sqlite/src/qt-console/images/bat_icon.png %{buildroot}%{_datadir}/pixmaps/bat_icon.png +install -m 644 -D bacula-sqlite/scripts/bgnome-console.pamd %{buildroot}%{_sysconfdir}/pam.d/bacula-tray-monitor +install -m 644 %{SOURCE13} %{buildroot}%{_sysconfdir}/security/console.apps/bacula-tray-monitor - -ln -sf consolehelper %{buildroot}%{_bindir}/gnome-console +ln -sf consolehelper %{buildroot}%{_bindir}/bgnome-console ln -sf consolehelper %{buildroot}%{_bindir}/wxconsole ln -sf consolehelper %{buildroot}%{_bindir}/bat install -m 755 bacula-sqlite/src/qt-console/bat %{buildroot}%{_sbindir} +ln -sf consolehelper %{buildroot}%{_bindir}/bacula-tray-monitor desktop-file-install --vendor="fedora" --dir=%{buildroot}%{_datadir}/applications %{SOURCE3} desktop-file-install --vendor="fedora" --dir=%{buildroot}%{_datadir}/applications %{SOURCE4} @@ -817,7 +820,7 @@ fi %config %{_sysconfdir}/security/console.apps/bgnome-console %config %{_sysconfdir}/pam.d/bgnome-console %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/bgnome-console.conf -%{_bindir}/gnome-console +%{_bindir}/bgnome-console %{_sbindir}/bgnome-console %{_mandir}/man1/bacula-bgnome-console.1.gz #%{_mandir}/man1/bacula-bconsole-gnome.1* @@ -962,8 +965,11 @@ fi %files traymonitor %defattr(-,root,root,-) +%{_bindir}/bacula-tray-monitor %{_sbindir}/bacula-tray-monitor %attr(640,root,bacula) %config(noreplace) %{_sysconfdir}/bacula/tray-monitor.conf +%config %{_sysconfdir}/security/console.apps/bacula-tray-monitor +%config %{_sysconfdir}/pam.d/bacula-tray-monitor %{_mandir}/man1/bacula-tray-monitor.1* %{_datadir}/applications/fedora-bacula-traymonitor.desktop %{_datadir}/pixmaps/bacula-tray-monitor.xpm @@ -990,6 +996,10 @@ fi %changelog +* Thu Jul 30 2009 Jon Ciesla Author: glommer Update of /cvs/pkgs/rpms/bochs/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31436 Modified Files: .cvsignore sources Log Message: wrong file name Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 31 Jul 2009 14:35:01 -0000 1.16 +++ .cvsignore 31 Jul 2009 14:46:48 -0000 1.17 @@ -1,2 +1,2 @@ kvm-bios.tar.gz -bochs-bios-2.3.8.tar.gz +bochs-2.3.8.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/bochs/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 31 Jul 2009 14:35:01 -0000 1.17 +++ sources 31 Jul 2009 14:46:48 -0000 1.18 @@ -1,2 +1,2 @@ 6a9ea13ca552ab7369206196b0dc1afa kvm-bios.tar.gz -d898379736b0137cf35677bab787a0cb bochs-bios-2.3.8.tar.gz +a360358375ad00487f0f26dcc667a4a4 bochs-2.3.8.tar.gz From chitlesh at fedoraproject.org Fri Jul 31 14:46:58 2009 From: chitlesh at fedoraproject.org (Chitlesh GOORAH) Date: Fri, 31 Jul 2009 14:46:58 +0000 (UTC) Subject: rpms/emacs-verilog-mode/EL-5 emacs-verilog-mode.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731144658.2E2D911C00CE@cvs1.fedora.phx.redhat.com> Author: chitlesh Update of /cvs/pkgs/rpms/emacs-verilog-mode/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31559/EL-5 Modified Files: .cvsignore sources Added Files: emacs-verilog-mode.spec import.log Log Message: new package --- NEW FILE emacs-verilog-mode.spec --- # If the emacs-el package has installed a pkgconfig file, use that to determine # install locations and Emacs version at build time, otherwise set defaults. %if %($(pkg-config emacs) ; echo $?) %define emacs_version 22.2 %define emacs_lispdir %{_datadir}/emacs/site-lisp %define emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d %else %define emacs_version %{expand:%(pkg-config emacs --modversion)} %define emacs_lispdir %{expand:%(pkg-config emacs --variable sitepkglispdir)} %define emacs_startdir %{expand:%(pkg-config emacs --variable sitestartdir)} %endif %define realname verilog-mode Name: emacs-%{realname} Version: 528 Release: 1%{?dist} Summary: Verilog mode for Emacs Group: Applications/Engineering License: GPLv3+ URL: http://www.veripool.org/wiki/verilog-mode/ Source0: http://www.veripool.org/ftp/%{realname}-%{version}.el.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: emacs-el BuildRequires: emacs Requires: emacs(bin) >= %{emacs_version} BuildArch: noarch %description Verilog-mode.el is a free Verilog mode for Emacs which provides context-sensitive highlighting, auto indenting, and provides macro expansion capabilities to greatly reduce Verilog coding time. %prep #setup -q # /bin/tar: This does not look like a tar archive rm -rf %{_builddir}/%{name}-%{version} mkdir -p %{_builddir}/%{name}-%{version} cd %{_builddir}/%{name}-%{version} gunzip < %{SOURCE0} > %{realname}.el %build cd %{name}-%{version} cat > %{realname}.el.site-start << EOF ;; Load verilog mode only when needed (autoload 'verilog-mode "verilog-mode" "Verilog mode" t ) ;; Any files that end in .v should be in verilog mode (setq auto-mode-alist (cons '("\\.v\\'" . verilog-mode) auto-mode-alist)) ;; Any files in verilog mode should have their keywords colorized (add-hook 'verilog-mode-hook '(lambda () (font-lock-mode 1))) EOF %install rm -rf %{buildroot} cd %{name}-%{version} %{__install} -d %{buildroot}%{emacs_lispdir} %{__install} -d %{buildroot}%{emacs_startdir} emacs -batch -f batch-byte-compile %{realname}.el %{__install} -pm 0644 %{realname}.el %{realname}.elc %{buildroot}%{emacs_lispdir}/ %{__install} -pm 0644 %{realname}.el.site-start %{buildroot}%{emacs_startdir}/%{realname}-init.el %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{emacs_lispdir}/%{realname}.el %{emacs_lispdir}/%{realname}.elc %{emacs_startdir}/%{realname}-init.el %changelog * Thu Jul 30 2009 Chitlesh Goorah 528-1 - update to 528 * Thu May 14 2009 Chitlesh Goorah 502-1 - update to 502 * Sun Jan 04 2009 Chitlesh Goorah 463-1 - initial package --- NEW FILE import.log --- emacs-verilog-mode-528-1_fc11:EL-5:emacs-verilog-mode-528-1.fc11.src.rpm:1249051366 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emacs-verilog-mode/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:54:25 -0000 1.1 +++ .cvsignore 31 Jul 2009 14:46:57 -0000 1.2 @@ -0,0 +1 @@ +verilog-mode-528.el.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emacs-verilog-mode/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:54:25 -0000 1.1 +++ sources 31 Jul 2009 14:46:58 -0000 1.2 @@ -0,0 +1 @@ +effbbf14e5467b2c2c0ed4c69fa1476e verilog-mode-528.el.gz From limb at fedoraproject.org Fri Jul 31 14:56:43 2009 From: limb at fedoraproject.org (Jon Ciesla) Date: Fri, 31 Jul 2009 14:56:43 +0000 (UTC) Subject: rpms/bacula/F-10 bacula-traymonitor.desktop.consolehelper,NONE,1.1 Message-ID: <20090731145643.1166811C00CE@cvs1.fedora.phx.redhat.com> Author: limb Update of /cvs/pkgs/rpms/bacula/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3671 Added Files: bacula-traymonitor.desktop.consolehelper Log Message: Oops. --- NEW FILE bacula-traymonitor.desktop.consolehelper --- [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=Bacula Monitor GenericName=Bacula Tray Monitor Comment=Monitor your Bacula Backup server Exec=/usr/bin/bacula-tray-monitor -c /etc/bacula/tray-monitor.conf Icon=bacula-tray-monitor.xpm Terminal=false Type=Application Categories=System;Application;Utility From rstrode at fedoraproject.org Fri Jul 31 15:01:17 2009 From: rstrode at fedoraproject.org (Ray Strode) Date: Fri, 31 Jul 2009 15:01:17 +0000 (UTC) Subject: rpms/ConsoleKit/devel .cvsignore, 1.16, 1.17 ConsoleKit.spec, 1.46, 1.47 sources, 1.19, 1.20 ConsoleKit-0.3.0-get-vt-from-display-instead-of-controlling-tty.patch, 1.1, NONE ConsoleKit-skipvalidation.patch, 1.2, NONE consolekit-dbus-permissions.patch, 1.3, NONE null-warning.patch, 1.1, NONE polkit1.patch, 1.1, NONE Message-ID: <20090731150117.61D2811C00CE@cvs1.fedora.phx.redhat.com> Author: rstrode Update of /cvs/pkgs/rpms/ConsoleKit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5401 Modified Files: .cvsignore ConsoleKit.spec sources Removed Files: ConsoleKit-0.3.0-get-vt-from-display-instead-of-controlling-tty.patch ConsoleKit-skipvalidation.patch consolekit-dbus-permissions.patch null-warning.patch polkit1.patch Log Message: - Update to 0.3.1 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/ConsoleKit/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 31 Jul 2008 01:13:18 -0000 1.16 +++ .cvsignore 31 Jul 2009 15:01:15 -0000 1.17 @@ -1 +1 @@ -ConsoleKit-0.3.0.tar.bz2 +ConsoleKit-0.3.1.tar.bz2 Index: ConsoleKit.spec =================================================================== RCS file: /cvs/pkgs/rpms/ConsoleKit/devel/ConsoleKit.spec,v retrieving revision 1.46 retrieving revision 1.47 diff -u -p -r1.46 -r1.47 --- ConsoleKit.spec 24 Jul 2009 15:05:28 -0000 1.46 +++ ConsoleKit.spec 31 Jul 2009 15:01:15 -0000 1.47 @@ -5,12 +5,12 @@ Summary: System daemon for tracking users, sessions and seats Name: ConsoleKit -Version: 0.3.0 -Release: 12%{?dist} +Version: 0.3.1 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Libraries URL: http://www.freedesktop.org/wiki/Software/ConsoleKit -Source0: http://people.freedesktop.org/~mccann/dist/ConsoleKit-%{version}.tar.bz2 +Source0: http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: dbus >= %{dbus_version} Requires: dbus-glib >= %{dbus_glib_version} @@ -25,19 +25,6 @@ BuildRequires: zlib-devel BuildRequires: xmlto BuildRequires: automake, autoconf, libtool -Patch0: ConsoleKit-0.3.0-get-vt-from-display-instead-of-controlling-tty.patch -# http://bugs.freedesktop.org/show_bug.cgi?id=19020 -# http://bugs.freedesktop.org/show_bug.cgi?id=20471 -Patch1: consolekit-dbus-permissions.patch - -Patch2: ConsoleKit-skipvalidation.patch - -# http://bugs.freedesktop.org/show_bug.cgi?id=21310 -Patch3: null-warning.patch - -# https://bugzilla.redhat.com/show_bug.cgi?id=495617 -Patch4: polkit1.patch - %description ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. @@ -92,11 +79,6 @@ This package contains developer document %prep %setup -q -%patch0 -p1 -b .get-vt-from-display-instead-of-controlling-tty -%patch1 -p1 -b .consolekit -%patch2 -p1 -b .skipvalidation -%patch3 -p1 -b .null-warning -%patch4 -p1 -b .polkit1 autoreconf -f -i @@ -117,6 +99,10 @@ rm -f $RPM_BUILD_ROOT/%{_lib}/security/* # make sure we don't package a history log rm -f $RPM_BUILD_ROOT/%{_var}/log/ConsoleKit/history +# The sample upstart files are good enough for us. +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/event.d +cp data/ck-log-system-{start,stop,restart} $RPM_BUILD_ROOT%{_sysconfdir}/event.d + cp README AUTHORS NEWS COPYING $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} %clean @@ -135,6 +121,7 @@ fi %doc %{_datadir}/doc/%{name}-%{version}/NEWS %doc %{_datadir}/doc/%{name}-%{version}/COPYING %{_sysconfdir}/dbus-1/system.d/* +%config(noreplace) %{_sysconfdir}/event.d/* %{_datadir}/dbus-1/system-services/*.service %{_datadir}/polkit-1/actions/*.policy %dir %{_sysconfdir}/ConsoleKit @@ -179,6 +166,9 @@ fi %doc %{_datadir}/doc/%{name}-%{version}/spec/* %changelog +* Fri Jul 31 2009 Ray Strode 0.3.1-1 +- Update to 0.3.1 + * Fri Jul 24 2009 Fedora Release Engineering - 0.3.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/ConsoleKit/devel/sources,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- sources 31 Jul 2008 01:13:18 -0000 1.19 +++ sources 31 Jul 2009 15:01:16 -0000 1.20 @@ -1 +1 @@ -43b02a52212330b54cfb34c4044d9ce0 ConsoleKit-0.3.0.tar.bz2 +3ee89345f610c462806aaaae9a997683 ConsoleKit-0.3.1.tar.bz2 --- ConsoleKit-0.3.0-get-vt-from-display-instead-of-controlling-tty.patch DELETED --- --- ConsoleKit-skipvalidation.patch DELETED --- --- consolekit-dbus-permissions.patch DELETED --- --- null-warning.patch DELETED --- --- polkit1.patch DELETED --- From mclasen at fedoraproject.org Fri Jul 31 15:07:09 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 31 Jul 2009 15:07:09 +0000 (UTC) Subject: rpms/gnome-games/devel gnome-games.spec,1.222,1.223 Message-ID: <20090731150709.21BA111C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/rpms/gnome-games/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5155 Modified Files: gnome-games.spec Log Message: Split off some games to include in the live cd Index: gnome-games.spec =================================================================== RCS file: /cvs/pkgs/rpms/gnome-games/devel/gnome-games.spec,v retrieving revision 1.222 retrieving revision 1.223 diff -u -p -r1.222 -r1.223 --- gnome-games.spec 30 Jul 2009 13:18:44 -0000 1.222 +++ gnome-games.spec 31 Jul 2009 15:07:08 -0000 1.223 @@ -6,10 +6,12 @@ %define build_tali 1 %if %{build_card} -%define card_schemas aisleriot.schemas blackjack.schemas -%define card_desktops $RPM_BUILD_ROOT%{_datadir}/applications/gnome-freecell.desktop $RPM_BUILD_ROOT%{_datadir}/applications/gnome-sol.desktop +%define card_schemas aisleriot.schemas +%define card_schemas_extra blackjack.schemas +%define card_desktops $RPM_BUILD_ROOT%{_datadir}/applications/gnome-sol.desktop $RPM_BUILD_ROOT%{_datadir}/applications/gnome-freecell.desktop %else %define card_schemas %{nil} +%define card_schemas_extra %{nil} %define card_desktops %{nil} %endif @@ -44,7 +46,7 @@ Summary: Games for the GNOME desktop Name: gnome-games Version: 2.27.5 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPLv2+ and GFDL Group: Amusements/Games @@ -59,8 +61,6 @@ BuildRoot: %{_tmppath}/%{name}-%{versio Obsoletes: gnome-games-devel URL: http://projects.gnome.org/gnome-games/ -Requires(post): scrollkeeper >= 0.1.4 -Requires(postun): scrollkeeper >= 0.1.4 Requires(pre): GConf2 Requires(post): GConf2 Requires(preun): GConf2 @@ -84,7 +84,6 @@ BuildRequires: pygtk2-devel BuildRequires: gnome-python2-desktop >= %{gnome_python_desktop} BuildRequires: libgnomeui-devel >= %{libgnomeui_version} BuildRequires: desktop-file-utils >= %{desktop_file_utils_version} -BuildRequires: scrollkeeper BuildRequires: librsvg2-devel BuildRequires: guile-devel >= 1.6.5 BuildRequires: expat-devel @@ -114,6 +113,17 @@ Obsoletes: glchess < 2.0 The gnome-games package is a collection of some small "five-minute" games in a variety of styles and genres for the GNOME desktop. + +%package extra +Group: Amusements/Games +Summary: More games for the GNOME desktop +Requires: %{name} = %{epoch}%{version}-%{release} + +%description extra +The gnome-games-extra package contains additional small "five-minute" games +in a variety of styles and genres for the GNOME desktop. + + %package help Group: Applications/Productivity Summary: Help files for %{name} @@ -210,12 +220,28 @@ grep -v "/usr/share/locale" %{gettext_pa rm -rf $RPM_BUILD_ROOT %post -scrollkeeper-update -q - export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` (cd %{_sysconfdir}/gconf/schemas; \ gconftool-2 --makefile-install-rule \ %{card_schemas} \ + gnomine.schemas \ + iagno.schemas \ + same-gnome.schemas \ + gnome-sudoku.schemas \ +> /dev/null || : ) + +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi + +ggz-config -i -f -m %{_datadir}/ggz/iagno-client.dsc >& /dev/null || : + +%post extra +export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` +(cd %{_sysconfdir}/gconf/schemas; \ +gconftool-2 --makefile-install-rule \ + %{card_schemas_extra} \ %{gtali_schemas} \ glchess.schemas \ glines.schemas \ @@ -223,13 +249,9 @@ gconftool-2 --makefile-install-rule \ gnibbles.schemas \ gnobots2.schemas \ gnometris.schemas \ - gnomine.schemas \ gnotravex.schemas \ gnotski.schemas \ - iagno.schemas \ mahjongg.schemas \ - same-gnome.schemas \ - gnome-sudoku.schemas \ > /dev/null || : ) touch %{_datadir}/icons/hicolor @@ -239,7 +261,6 @@ fi ggz-config -i -f -m %{_datadir}/ggz/gnect-client.dsc >& /dev/null || : ggz-config -i -f -m %{_datadir}/ggz/gnibbles-client.dsc >& /dev/null || : -ggz-config -i -f -m %{_datadir}/ggz/iagno-client.dsc >& /dev/null || : %pre if [ "$1" -gt 1 ]; then @@ -247,6 +268,19 @@ if [ "$1" -gt 1 ]; then (cd %{_sysconfdir}/gconf/schemas; \ gconftool-2 --makefile-uninstall-rule \ %{card_schemas} \ + gnomine.schemas \ + iagno.schemas \ + same-gnome.schemas \ + gnome-sudoku.schemas \ +> /dev/null || : ) +fi + +%pre extra +if [ "$1" -gt 1 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + (cd %{_sysconfdir}/gconf/schemas; \ + gconftool-2 --makefile-uninstall-rule \ + %{card_schemas_extra} \ %{gtali_schemas} \ glchess.schemas \ glines.schemas \ @@ -254,12 +288,9 @@ if [ "$1" -gt 1 ]; then gnibbles.schemas \ gnobots2.schemas \ gnometris.schemas \ - gnomine.schemas \ gnotravex.schemas \ gnotski.schemas \ - iagno.schemas \ mahjongg.schemas \ - same-gnome.schemas \ > /dev/null || : ) fi @@ -269,6 +300,21 @@ if [ "$1" -eq 0 ]; then (cd %{_sysconfdir}/gconf/schemas; \ gconftool-2 --makefile-uninstall-rule \ %{card_schemas} \ + gnomine.schemas \ + iagno.schemas \ + same-gnome.schemas \ + gnome-sudoku.schemas \ +> /dev/null || : ) + + ggz-config -r -m %{_datadir}/ggz/iagno-client.dsc >& /dev/null || : +fi + +%preun extra +if [ "$1" -eq 0 ]; then + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + (cd %{_sysconfdir}/gconf/schemas; \ + gconftool-2 --makefile-uninstall-rule \ + %{card_schemas_extra} \ %{gtali_schemas} \ glchess.schemas \ glines.schemas \ @@ -276,79 +322,121 @@ if [ "$1" -eq 0 ]; then gnibbles.schemas \ gnobots2.schemas \ gnometris.schemas \ - gnomine.schemas \ gnotravex.schemas \ gnotski.schemas \ - iagno.schemas \ mahjongg.schemas \ - same-gnome.schemas \ - gnome-sudoku.schemas \ > /dev/null || : ) ggz-config -r -m %{_datadir}/ggz/gnect-client.dsc >& /dev/null || : ggz-config -r -m %{_datadir}/ggz/gnibbles-client.dsc >& /dev/null || : - ggz-config -r -m %{_datadir}/ggz/iagno-client.dsc >& /dev/null || : fi %postun -scrollkeeper-update -q touch %{_datadir}/icons/hicolor if [ -x /usr/bin/gtk-update-icon-cache ]; then /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor fi +%postun extra +touch %{_datadir}/icons/hicolor +if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor +fi + +%files help -f help.lang + %files -f translations.lang %defattr(-, root, root) %doc AUTHORS COPYING README -%{_datadir}/applications/* -%{_datadir}/gnome-games +%{_datadir}/applications/gnome-sol.desktop +%{_datadir}/applications/gnome-gnomine.desktop +%{_datadir}/applications/gnome-iagno.desktop +%{_datadir}/applications/gnome-same-gnome.desktop +%{_datadir}/applications/gnome-sudoku.desktop + +%dir %{_datadir}/gnome-games +%{_datadir}/gnome-games/aisleriot +%{_datadir}/gnome-games/gnomine +%{_datadir}/gnome-games/iagno +%{_datadir}/gnome-games/same-gnome +%{_datadir}/gnome-games/icons +%{_datadir}/gnome-games/sounds +%{_datadir}/gnome-games/pixmaps %{_datadir}/gnome-games-common -%{_datadir}/glchess %{_datadir}/gnome-sudoku -%{_datadir}/icons/hicolor/*/*/* -%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/* + +%{_datadir}/icons/hicolor/*/apps/gnome-aisleriot.* +%{_datadir}/icons/hicolor/*/apps/gnome-iagno.* +%{_datadir}/icons/hicolor/*/apps/gnome-mines.* +%{_datadir}/icons/hicolor/*/apps/gnome-samegnome.* +%{_datadir}/icons/hicolor/*/apps/gnome-sudoku.* + +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/same-gnome.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnomine.* %{_libdir}/gnome-games -%{python_sitelib}/glchess %{python_sitelib}/gnome_sudoku # gconf schemas %if %{build_card} %{_sysconfdir}/gconf/schemas/aisleriot.schemas -%{_sysconfdir}/gconf/schemas/blackjack.schemas %endif -%{_sysconfdir}/gconf/schemas/glines.schemas -%{_sysconfdir}/gconf/schemas/gnect.schemas -%{_sysconfdir}/gconf/schemas/gnibbles.schemas -%{_sysconfdir}/gconf/schemas/gnobots2.schemas -%{_sysconfdir}/gconf/schemas/gnometris.schemas %{_sysconfdir}/gconf/schemas/gnomine.schemas -%{_sysconfdir}/gconf/schemas/gnotravex.schemas -%{_sysconfdir}/gconf/schemas/gnotski.schemas -%if %{build_tali} -%{_sysconfdir}/gconf/schemas/gtali.schemas -%endif %{_sysconfdir}/gconf/schemas/iagno.schemas -%{_sysconfdir}/gconf/schemas/mahjongg.schemas %{_sysconfdir}/gconf/schemas/same-gnome.schemas -%{_sysconfdir}/gconf/schemas/glchess.schemas %{_sysconfdir}/gconf/schemas/gnome-sudoku.schemas +%{_datadir}/ggz/gnome-games +%{_datadir}/ggz/iagno-client.dsc + +# these are not setgid games +%{_bindir}/sol +%{_bindir}/gnome-sudoku + +# these are setgid games +%attr(2551, root, games) %{_bindir}/same-gnome +%attr(2551, root, games) %{_bindir}/iagno +%attr(2551, root, games) %{_bindir}/gnomine + + +%files extra +%defattr(-, root, root) + +%{python_sitelib}/glchess +%{_datadir}/glchess + +%{_datadir}/applications/gnome-blackjack.desktop +%{_datadir}/applications/gnome-freecell.desktop +%{_datadir}/applications/gnome-glchess.desktop +%{_datadir}/applications/gnome-glines.desktop +%{_datadir}/applications/gnome-gnect.desktop +%{_datadir}/applications/gnome-gnibbles.desktop +%{_datadir}/applications/gnome-gnobots2.desktop +%{_datadir}/applications/gnome-gnotravex.desktop +%{_datadir}/applications/gnome-gnotski.desktop +%{_datadir}/applications/gnome-gtali.desktop +%{_datadir}/applications/gnome-mahjongg.desktop +%{_datadir}/applications/gnometris.desktop + +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/glines.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnibbles.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnobots2.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnometris.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnotravex.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gnotski.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/gtali.* +%verify(not md5 size mtime) %config(noreplace) %attr(664, games, games) /var/lib/games/mahjongg.* + + # these are not setgid games %{_bindir}/gnect %if %{build_card} %{_bindir}/blackjack -%{_bindir}/sol %endif %{_bindir}/glchess -%{_bindir}/gnome-sudoku - -%{_datadir}/ggz/* # these are setgid games -%attr(2551, root, games) %{_bindir}/gnomine -%attr(2551, root, games) %{_bindir}/same-gnome %attr(2551, root, games) %{_bindir}/mahjongg %if %{build_tali} %attr(2551, root, games) %{_bindir}/gtali @@ -359,11 +447,55 @@ fi %attr(2551, root, games) %{_bindir}/gnotski %attr(2551, root, games) %{_bindir}/gnibbles %attr(2551, root, games) %{_bindir}/glines -%attr(2551, root, games) %{_bindir}/iagno -%files help -f help.lang +# gconf schemas +%if %{build_card} +%{_sysconfdir}/gconf/schemas/blackjack.schemas +%endif +%{_sysconfdir}/gconf/schemas/glines.schemas +%{_sysconfdir}/gconf/schemas/gnect.schemas +%{_sysconfdir}/gconf/schemas/gnibbles.schemas +%{_sysconfdir}/gconf/schemas/gnobots2.schemas +%{_sysconfdir}/gconf/schemas/gnometris.schemas +%{_sysconfdir}/gconf/schemas/gnotravex.schemas +%{_sysconfdir}/gconf/schemas/gnotski.schemas +%if %{build_tali} +%{_sysconfdir}/gconf/schemas/gtali.schemas +%endif +%{_sysconfdir}/gconf/schemas/mahjongg.schemas +%{_sysconfdir}/gconf/schemas/glchess.schemas + +%{_datadir}/gnome-games/blackjack +%{_datadir}/gnome-games/glines +%{_datadir}/gnome-games/gnect +%{_datadir}/gnome-games/gnibbles +%{_datadir}/gnome-games/gnobots2 +%{_datadir}/gnome-games/gnometris +%{_datadir}/gnome-games/gtali +%{_datadir}/gnome-games/mahjongg +%{_datadir}/gnome-games/gnotski + +%{_datadir}/ggz/gnect-client.dsc +%{_datadir}/ggz/gnibbles-client.dsc + +%{_datadir}/icons/hicolor/*/apps/gnome-blackjack.* +%{_datadir}/icons/hicolor/*/apps/gnome-freecell.* +%{_datadir}/icons/hicolor/*/apps/gnome-glchess.* +%{_datadir}/icons/hicolor/*/apps/gnome-glines.* +%{_datadir}/icons/hicolor/*/apps/gnome-gnect.* +%{_datadir}/icons/hicolor/*/apps/gnome-gnibbles.* +%{_datadir}/icons/hicolor/*/apps/gnome-gnometris.* +%{_datadir}/icons/hicolor/*/apps/gnome-klotski.* +%{_datadir}/icons/hicolor/*/apps/gnome-mahjongg.* +%{_datadir}/icons/hicolor/*/apps/gnome-robots.* +%{_datadir}/icons/hicolor/*/apps/gnome-tali.* +%{_datadir}/icons/hicolor/*/apps/gnome-tetravex.* + %changelog +* Fri Jul 31 2009 Matthias Clasen 2.27.5-3 +- Split off a subset of games to include on the live cd + * Thu Jul 30 2009 Bastien Nocera 2.27.5-2 - Rebuild for new clutter-gtk and clutter From markmc at fedoraproject.org Fri Jul 31 15:12:00 2009 From: markmc at fedoraproject.org (Mark McLoughlin) Date: Fri, 31 Jul 2009 15:12:00 +0000 (UTC) Subject: rpms/qemu/devel qemu-add-ksm-support.patch, NONE, 1.1 qemu.spec, 1.115, 1.116 Message-ID: <20090731151200.B2C4A11C00CE@cvs1.fedora.phx.redhat.com> Author: markmc Update of /cvs/pkgs/rpms/qemu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9226 Modified Files: qemu.spec Added Files: qemu-add-ksm-support.patch Log Message: * Fri Jul 31 2009 Mark McLoughlin - 2:0.10.91-0.2.rc1.rc0 - Add KSM support - Require bochs-bios >= 2.3.8-0.8 for latest kvm bios updates qemu-add-ksm-support.patch: exec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- NEW FILE qemu-add-ksm-support.patch --- >From 511a4f5ab30a36fdaa48fb0d146cfc3f123b4f0a Mon Sep 17 00:00:00 2001 From: Izik Eidus Date: Tue, 28 Jul 2009 19:14:26 +0300 Subject: [PATCH] kvm userspace: ksm support rfc for ksm support to kvm userpsace. Signed-off-by: Izik Eidus Signed-off-by: Mark McLoughlin Fedora-patch: qemu-add-ksm-support.patch --- exec.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/exec.c b/exec.c index 2134697..88bcff5 100644 --- a/exec.c +++ b/exec.c @@ -2578,6 +2578,9 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size) new_block->host = file_ram_alloc(size, mem_path); if (!new_block->host) { new_block->host = qemu_vmalloc(size); +#ifdef MADV_MERGEABLE + madvise(new_block->host, size, MADV_MERGEABLE); +#endif } new_block->offset = last_ram_offset; new_block->length = size; -- 1.6.2.5 Index: qemu.spec =================================================================== RCS file: /cvs/pkgs/rpms/qemu/devel/qemu.spec,v retrieving revision 1.115 retrieving revision 1.116 diff -u -p -r1.115 -r1.116 --- qemu.spec 30 Jul 2009 16:28:52 -0000 1.115 +++ qemu.spec 31 Jul 2009 15:12:00 -0000 1.116 @@ -4,7 +4,7 @@ Summary: QEMU is a FAST! processor emulator Name: qemu Version: 0.10.91 -Release: 0.1.%{kvmvertag}%{?dist} +Release: 0.2.%{kvmvertag}%{?dist} # Epoch because we pushed a qemu-1.0 package Epoch: 2 License: GPLv2+ and LGPLv2+ and BSD @@ -26,6 +26,9 @@ Patch02: qemu-fix-linux-user-build-on-pp # Make sure multiboot.bin/extboot.bin gets installed Patch03: qemu-fix-optionrom-install.patch +# Add KSM support - see https://fedoraproject.org/wiki/Features/KSM +Patch04: qemu-add-ksm-support.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL-devel zlib-devel which texi2html gnutls-devel cyrus-sasl-devel BuildRequires: rsync dev86 iasl @@ -110,7 +113,7 @@ Group: Development/Tools Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: gpxe-roms-qemu Requires: vgabios -Requires: bochs-bios >= 2.3.8-0.5 +Requires: bochs-bios >= 2.3.8-0.8 Provides: kvm = 85 Obsoletes: kvm < 85 @@ -209,6 +212,7 @@ such as kvmtrace and kvm_stat. %patch01 -p1 %patch02 -p1 %patch03 -p1 +%patch04 -p1 %build # systems like rhel build system does not have a recent enough linker so @@ -473,6 +477,10 @@ getent passwd qemu >/dev/null || \ %{_mandir}/man1/qemu-img.1* %changelog +* Fri Jul 31 2009 Mark McLoughlin - 2:0.10.91-0.2.rc1.rc0 +- Add KSM support +- Require bochs-bios >= 2.3.8-0.8 for latest kvm bios updates + * Thu Jul 30 2009 Mark McLoughlin - 2:0.10.91-0.1.rc1.rc0 - Update to qemu-kvm-0.11.0-rc1-rc0 - This is a pre-release of the official -rc1 From xhorak at fedoraproject.org Fri Jul 31 15:12:45 2009 From: xhorak at fedoraproject.org (Jan Horak) Date: Fri, 31 Jul 2009 15:12:45 +0000 (UTC) Subject: rpms/thunderbird/devel thunderbird-setjmp.patch, NONE, 1.1 thunderbird.spec, 1.140, 1.141 Message-ID: <20090731151245.D074911C00CE@cvs1.fedora.phx.redhat.com> Author: xhorak Update of /cvs/pkgs/rpms/thunderbird/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9588 Modified Files: thunderbird.spec Added Files: thunderbird-setjmp.patch Log Message: Fix build thunderbird-setjmp.patch: nsImageModule.cpp | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) --- NEW FILE thunderbird-setjmp.patch --- diff -up thunderbird-3.0/mozilla/modules/libpr0n/build/nsImageModule.cpp.setjmp thunderbird-3.0/mozilla/modules/libpr0n/build/nsImageModule.cpp --- thunderbird-3.0/mozilla/modules/libpr0n/build/nsImageModule.cpp.setjmp 2009-07-31 13:22:44.000000000 +0200 +++ thunderbird-3.0/mozilla/modules/libpr0n/build/nsImageModule.cpp 2009-07-31 13:34:42.000000000 +0200 @@ -59,6 +59,16 @@ #include "imgRequestProxy.h" #include "imgTools.h" +#ifdef IMG_BUILD_ENCODER_png +// png +#include "nsPNGEncoder.h" +#endif +#ifdef IMG_BUILD_ENCODER_jpeg +// jpeg +#include "nsJPEGEncoder.h" +#endif + + #ifdef IMG_BUILD_DECODER_gif // gif #include "nsGIFDecoder2.h" @@ -85,17 +95,6 @@ #include "nsXBMDecoder.h" #endif - -#ifdef IMG_BUILD_ENCODER_png -// png -#include "nsPNGEncoder.h" -#endif -#ifdef IMG_BUILD_ENCODER_jpeg -// jpeg -#include "nsJPEGEncoder.h" -#endif - - // objects that just require generic constructors NS_GENERIC_FACTORY_CONSTRUCTOR(imgContainer) Index: thunderbird.spec =================================================================== RCS file: /cvs/pkgs/rpms/thunderbird/devel/thunderbird.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- thunderbird.spec 30 Jul 2009 16:14:43 -0000 1.140 +++ thunderbird.spec 31 Jul 2009 15:12:45 -0000 1.141 @@ -38,6 +38,7 @@ Patch2: thunderbird-shared-error Patch3: xulrunner-elif.patch Patch4: thunderbird-pango.patch Patch5: thunderbird-makebug.patch +Patch6: thunderbird-setjmp.patch %if %{official_branding} # Required by Mozilla Corporation @@ -95,6 +96,7 @@ Mozilla Thunderbird is a standalone mail #%patch3 -p0 -b .xulrunner-elif #%patch4 -p1 -b .pango-fix %patch5 -p1 -b .makebug +%patch6 -p1 -b .setjmp %if %{official_branding} # Required by Mozilla Corporation From topdog at fedoraproject.org Fri Jul 31 15:21:42 2009 From: topdog at fedoraproject.org (topdog) Date: Fri, 31 Jul 2009 15:21:42 +0000 (UTC) Subject: rpms/php-facedetect/devel import.log, NONE, 1.1 php-facedetect.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731152142.3AE7C11C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-facedetect/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12314/devel Modified Files: .cvsignore sources Added Files: import.log php-facedetect.spec Log Message: * Fri Jul 31 2009 Andrew Colin Kissa - 1.0.0-2 - Initial checkin --- NEW FILE import.log --- php-facedetect-1_0_0-2_fc11:HEAD:php-facedetect-1.0.0-2.fc11.src.rpm:1249053439 --- NEW FILE php-facedetect.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Name: php-facedetect Version: 1.0.0 Release: 2%{?dist} Summary: PHP extension to access the OpenCV library Group: Development/Languages License: PHP URL: http://www.xarg.org/project/php-facedetect/ Source0: http://www.xarg.org/download/facedetect-1.0.0.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: php-devel opencv-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif %description This extension provides a PHP implementation of the OpenCV library. The extension offers two new functions. In principle, they differ only by their return value. The first returns only the number of faces found on the given image and the other an associative array of their coordinates. %prep %setup -q -n facedetect-%{version} %{__cat} <<'EOF' >facedetect.ini extension=facedetect.so EOF sed -i 's/\r//' CREDITS %build phpize %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT INSTALL="install -p" install -p -D -m0644 facedetect.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.d/facedetect.ini %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CREDITS %config(noreplace) %{_sysconfdir}/php.d/facedetect.ini %{php_extdir}/facedetect.so %changelog * Thu Jul 30 2009 Andrew Colin Kissa - 1.0.0-2 - Fix macros * Wed Jul 22 2009 Andrew Colin Kissa - 1.0.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:53:32 -0000 1.1 +++ .cvsignore 31 Jul 2009 15:21:41 -0000 1.2 @@ -0,0 +1 @@ +facedetect-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:53:32 -0000 1.1 +++ sources 31 Jul 2009 15:21:41 -0000 1.2 @@ -0,0 +1 @@ +1f05e6eafd930babad7b4c0b4786433c facedetect-1.0.0.tar.gz From topdog at fedoraproject.org Fri Jul 31 15:26:29 2009 From: topdog at fedoraproject.org (topdog) Date: Fri, 31 Jul 2009 15:26:29 +0000 (UTC) Subject: rpms/php-facedetect/F-11 import.log, NONE, 1.1 php-facedetect.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731152629.26AF711C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-facedetect/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14924/F-11 Modified Files: .cvsignore sources Added Files: import.log php-facedetect.spec Log Message: * Fri Jul 31 2009 Andrew Colin Kissa - 1.0.0-2 - Initial checkin --- NEW FILE import.log --- php-facedetect-1_0_0-2_fc11:F-11:php-facedetect-1.0.0-2.fc11.src.rpm:1249053896 --- NEW FILE php-facedetect.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Name: php-facedetect Version: 1.0.0 Release: 2%{?dist} Summary: PHP extension to access the OpenCV library Group: Development/Languages License: PHP URL: http://www.xarg.org/project/php-facedetect/ Source0: http://www.xarg.org/download/facedetect-1.0.0.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: php-devel opencv-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif %description This extension provides a PHP implementation of the OpenCV library. The extension offers two new functions. In principle, they differ only by their return value. The first returns only the number of faces found on the given image and the other an associative array of their coordinates. %prep %setup -q -n facedetect-%{version} %{__cat} <<'EOF' >facedetect.ini extension=facedetect.so EOF sed -i 's/\r//' CREDITS %build phpize %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT INSTALL="install -p" install -p -D -m0644 facedetect.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.d/facedetect.ini %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CREDITS %config(noreplace) %{_sysconfdir}/php.d/facedetect.ini %{php_extdir}/facedetect.so %changelog * Thu Jul 30 2009 Andrew Colin Kissa - 1.0.0-2 - Fix macros * Wed Jul 22 2009 Andrew Colin Kissa - 1.0.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:53:32 -0000 1.1 +++ .cvsignore 31 Jul 2009 15:26:28 -0000 1.2 @@ -0,0 +1 @@ +facedetect-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:53:32 -0000 1.1 +++ sources 31 Jul 2009 15:26:28 -0000 1.2 @@ -0,0 +1 @@ +1f05e6eafd930babad7b4c0b4786433c facedetect-1.0.0.tar.gz From chkr at fedoraproject.org Fri Jul 31 15:26:37 2009 From: chkr at fedoraproject.org (chkr) Date: Fri, 31 Jul 2009 15:26:37 +0000 (UTC) Subject: rpms/f-spot/F-10 f-spot-0.5.0.3-link-system-mono-addins.patch, NONE, 1.1 f-spot.spec, 1.82, 1.83 f-spot-0.4.4-link-system-mono-addins.patch, 1.1, NONE Message-ID: <20090731152637.A9C6611C00CE@cvs1.fedora.phx.redhat.com> Author: chkr Update of /cvs/pkgs/rpms/f-spot/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15036 Modified Files: f-spot.spec Added Files: f-spot-0.5.0.3-link-system-mono-addins.patch Removed Files: f-spot-0.4.4-link-system-mono-addins.patch Log Message: * Fri Jul 31 2009 Christian Krause - 0.5.0.3-5 - Re-add patch to use system mono-addins (BZ #484996) f-spot-0.5.0.3-link-system-mono-addins.patch: Makefile.am | 2 -- Makefile.in | 2 -- Makefile.include | 8 ++++---- Tao/Tao.GlPostProcess/Makefile.in | 6 +++--- Tao/Tao.OpenGl.ExtensionLoader/Makefile.in | 6 +++--- Tao/Tao.OpenGl.Glu/Makefile.in | 6 +++--- Tao/Tao.OpenGl/Makefile.in | 6 +++--- configure.in | 4 ---- dbus-sharp-glib/Makefile.in | 6 +++--- dbus-sharp/Makefile.in | 6 +++--- extensions/Exporters/CDExport/Makefile.in | 6 +++--- extensions/Exporters/DefaultExporters/Makefile.in | 6 +++--- extensions/Exporters/FacebookExport/Makefile.in | 9 +++------ extensions/Exporters/FlickrExport/FlickrNet/Makefile.in | 6 +++--- extensions/Exporters/FlickrExport/Makefile.in | 6 +++--- extensions/Exporters/FolderExport/Makefile.in | 6 +++--- extensions/Exporters/GalleryExport/Makefile.in | 6 +++--- extensions/Exporters/PicasaWebExport/Makefile.in | 6 +++--- extensions/Exporters/PicasaWebExport/google-sharp/Makefile.in | 6 +++--- extensions/Exporters/SmugMugExport/Makefile.in | 6 +++--- extensions/Exporters/SmugMugExport/SmugMugNet/Makefile.in | 6 +++--- extensions/Exporters/TabbloExport/Makefile.in | 9 +++------ extensions/Exporters/ZipExport/Makefile.in | 9 +++------ extensions/Services/BeagleService/Makefile.in | 9 +++------ extensions/Services/DBusService/Makefile.in | 9 +++------ extensions/Tools/ChangePhotoPath/Makefile.in | 9 +++------ extensions/Tools/DevelopInUFraw/Makefile.in | 10 +++------- extensions/Tools/HashJob/Makefile.in | 9 +++------ extensions/Tools/MergeDb/Makefile.in | 9 +++------ extensions/Tools/RawPlusJpeg/Makefile.in | 9 +++------ glitz-sharp/src/Makefile.in | 6 +++--- gnome-keyring-sharp/Makefile.in | 6 +++--- libgphoto2-sharp/Makefile.in | 6 +++--- mono-addins/Mono.Addins.Gui/Makefile.in | 6 +++--- mono-addins/Mono.Addins.Setup/Makefile.in | 6 +++--- mono-addins/Mono.Addins/Makefile.in | 6 +++--- semweb/Makefile.in | 6 +++--- src/Makefile.in | 6 +++--- 38 files changed, 106 insertions(+), 145 deletions(-) --- NEW FILE f-spot-0.5.0.3-link-system-mono-addins.patch --- diff -up f-spot-0.5.0.3/configure.in.link-system-mono-addins f-spot-0.5.0.3/configure.in --- f-spot-0.5.0.3/configure.in.link-system-mono-addins 2008-10-17 14:54:15.000000000 -0400 +++ f-spot-0.5.0.3/configure.in 2008-10-17 14:54:15.000000000 -0400 @@ -346,10 +346,6 @@ libeog/cursors/Makefile libjpegtran/Makefile libfspot/Makefile libgphoto2-sharp/Makefile -mono-addins/Makefile -mono-addins/Mono.Addins/Makefile -mono-addins/Mono.Addins.Gui/Makefile -mono-addins/Mono.Addins.Setup/Makefile semweb/Makefile tools/Makefile po/Makefile.in diff -up f-spot-0.5.0.3/dbus-sharp-glib/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/dbus-sharp-glib/Makefile.in --- f-spot-0.5.0.3/dbus-sharp-glib/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/dbus-sharp-glib/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/dbus-sharp/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/dbus-sharp/Makefile.in --- f-spot-0.5.0.3/dbus-sharp/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/dbus-sharp/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/CDExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/CDExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/CDExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:08.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/CDExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/DefaultExporters/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/DefaultExporters/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/DefaultExporters/Makefile.in.link-system-mono-addins 2008-10-18 07:48:09.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/DefaultExporters/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/FacebookExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/FacebookExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/FacebookExport/Makefile.in.link-system-mono-addins 2008-12-04 14:26:06.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Exporters/FacebookExport/Makefile.in 2008-12-04 14:26:31.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/FlickrExport/FlickrNet/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/FlickrExport/FlickrNet/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/FlickrExport/FlickrNet/Makefile.in.link-system-mono-addins 2008-10-18 07:48:09.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/FlickrExport/FlickrNet/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/FlickrExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/FlickrExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/FlickrExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:09.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/FlickrExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -302,9 +302,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/FolderExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/FolderExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/FolderExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:09.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/FolderExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/GalleryExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/GalleryExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/GalleryExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:09.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/GalleryExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/google-sharp/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/google-sharp/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/google-sharp/Makefile.in.link-system-mono-addins 2008-10-18 07:48:10.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/google-sharp/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:10.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/PicasaWebExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -302,9 +302,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:10.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -302,9 +302,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/SmugMugNet/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/SmugMugNet/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/SmugMugNet/Makefile.in.link-system-mono-addins 2008-10-18 07:48:10.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/SmugMugExport/SmugMugNet/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/TabbloExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/TabbloExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/TabbloExport/Makefile.in.link-system-mono-addins 2008-12-04 14:26:54.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Exporters/TabbloExport/Makefile.in 2008-12-04 14:27:19.000000000 -0500 @@ -280,9 +280,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -302,9 +299,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Exporters/ZipExport/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Exporters/ZipExport/Makefile.in --- f-spot-0.5.0.3/extensions/Exporters/ZipExport/Makefile.in.link-system-mono-addins 2008-10-18 07:48:10.000000000 -0400 +++ f-spot-0.5.0.3/extensions/Exporters/ZipExport/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Services/BeagleService/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Services/BeagleService/Makefile.in --- f-spot-0.5.0.3/extensions/Services/BeagleService/Makefile.in.link-system-mono-addins 2008-12-04 14:27:31.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Services/BeagleService/Makefile.in 2008-12-04 14:27:49.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Services/DBusService/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Services/DBusService/Makefile.in --- f-spot-0.5.0.3/extensions/Services/DBusService/Makefile.in.link-system-mono-addins 2008-12-04 14:27:55.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Services/DBusService/Makefile.in 2008-12-04 14:28:14.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Tools/ChangePhotoPath/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Tools/ChangePhotoPath/Makefile.in --- f-spot-0.5.0.3/extensions/Tools/ChangePhotoPath/Makefile.in.link-system-mono-addins 2008-12-04 14:28:23.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Tools/ChangePhotoPath/Makefile.in 2008-12-04 14:28:42.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Tools/DevelopInUFraw/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Tools/DevelopInUFraw/Makefile.in --- f-spot-0.5.0.3/extensions/Tools/DevelopInUFraw/Makefile.in.link-system-mono-addins 2008-12-04 14:23:47.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Tools/DevelopInUFraw/Makefile.in 2008-12-04 14:24:50.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,10 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll - + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ -r:$(DIR_TAO_OPENGL)/Tao.OpenGl.dll \ diff -up f-spot-0.5.0.3/extensions/Tools/HashJob/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Tools/HashJob/Makefile.in --- f-spot-0.5.0.3/extensions/Tools/HashJob/Makefile.in.link-system-mono-addins 2008-12-04 14:28:57.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Tools/HashJob/Makefile.in 2008-12-04 14:29:16.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Tools/MergeDb/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Tools/MergeDb/Makefile.in --- f-spot-0.5.0.3/extensions/Tools/MergeDb/Makefile.in.link-system-mono-addins 2008-12-04 14:29:22.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Tools/MergeDb/Makefile.in 2008-12-04 14:29:38.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/extensions/Tools/RawPlusJpeg/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/extensions/Tools/RawPlusJpeg/Makefile.in --- f-spot-0.5.0.3/extensions/Tools/RawPlusJpeg/Makefile.in.link-system-mono-addins 2008-12-04 14:29:43.000000000 -0500 +++ f-spot-0.5.0.3/extensions/Tools/RawPlusJpeg/Makefile.in 2008-12-04 14:29:57.000000000 -0500 @@ -268,9 +268,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -DIR_ADDINS_ADDINS = $(top_builddir)/mono-addins/Mono.Addins -DIR_ADDINS_GUI = $(top_builddir)/mono-addins/Mono.Addins.Gui -DIR_ADDINS_SETUP = $(top_builddir)/mono-addins/Mono.Addins.Setup DIR_DOCS = $(top_builddir)/docs DIR_EXTENSIONS = $(top_builddir)/extensions DIR_GLITZ = $(top_builddir)/glitz-sharp/src @@ -290,9 +287,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/glitz-sharp/src/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/glitz-sharp/src/Makefile.in --- f-spot-0.5.0.3/glitz-sharp/src/Makefile.in.link-system-mono-addins 2008-10-18 07:48:12.000000000 -0400 +++ f-spot-0.5.0.3/glitz-sharp/src/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/gnome-keyring-sharp/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/gnome-keyring-sharp/Makefile.in --- f-spot-0.5.0.3/gnome-keyring-sharp/Makefile.in.link-system-mono-addins 2008-10-18 07:48:12.000000000 -0400 +++ f-spot-0.5.0.3/gnome-keyring-sharp/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/libgphoto2-sharp/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/libgphoto2-sharp/Makefile.in --- f-spot-0.5.0.3/libgphoto2-sharp/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/libgphoto2-sharp/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/Makefile.am.link-system-mono-addins f-spot-0.5.0.3/Makefile.am --- f-spot-0.5.0.3/Makefile.am.link-system-mono-addins 2008-09-26 04:27:39.000000000 -0400 +++ f-spot-0.5.0.3/Makefile.am 2008-12-04 14:20:57.000000000 -0500 @@ -12,7 +12,6 @@ SUBDIRS = \ libfspot \ libgphoto2-sharp \ Tao \ - mono-addins \ tools \ po \ src \ @@ -33,7 +32,6 @@ DIST_SUBDIRS = \ libfspot \ libgphoto2-sharp \ Tao \ - mono-addins \ tools \ po \ src \ diff -up f-spot-0.5.0.3/Makefile.include.link-system-mono-addins f-spot-0.5.0.3/Makefile.include --- f-spot-0.5.0.3/Makefile.include.link-system-mono-addins 2008-07-08 07:01:42.000000000 -0400 +++ f-spot-0.5.0.3/Makefile.include 2008-12-04 14:20:57.000000000 -0500 @@ -27,10 +27,10 @@ DIR_TAO_GLPOSTPROCESS = $(top_builddir)/ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-keyring-sharp.dll LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll -LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll +LINK_MONO_ADDINS = \ + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ -r:$(DIR_TAO_OPENGL)/Tao.OpenGl.dll \ diff -up f-spot-0.5.0.3/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/Makefile.in --- f-spot-0.5.0.3/Makefile.in.link-system-mono-addins 2008-10-18 07:48:14.000000000 -0400 +++ f-spot-0.5.0.3/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -316,7 +316,6 @@ SUBDIRS = \ libfspot \ libgphoto2-sharp \ Tao \ - mono-addins \ tools \ po \ src \ @@ -337,7 +336,6 @@ DIST_SUBDIRS = \ libfspot \ libgphoto2-sharp \ Tao \ - mono-addins \ tools \ po \ src \ diff -up f-spot-0.5.0.3/mono-addins/Mono.Addins.Gui/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/mono-addins/Mono.Addins.Gui/Makefile.in --- f-spot-0.5.0.3/mono-addins/Mono.Addins.Gui/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/mono-addins/Mono.Addins.Gui/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/mono-addins/Mono.Addins/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/mono-addins/Mono.Addins/Makefile.in --- f-spot-0.5.0.3/mono-addins/Mono.Addins/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/mono-addins/Mono.Addins/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/mono-addins/Mono.Addins.Setup/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/mono-addins/Mono.Addins.Setup/Makefile.in --- f-spot-0.5.0.3/mono-addins/Mono.Addins.Setup/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/mono-addins/Mono.Addins.Setup/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/semweb/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/semweb/Makefile.in --- f-spot-0.5.0.3/semweb/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/semweb/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/src/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/src/Makefile.in --- f-spot-0.5.0.3/src/Makefile.in.link-system-mono-addins 2008-10-18 07:48:13.000000000 -0400 +++ f-spot-0.5.0.3/src/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -296,9 +296,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/Tao/Tao.GlPostProcess/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/Tao/Tao.GlPostProcess/Makefile.in --- f-spot-0.5.0.3/Tao/Tao.GlPostProcess/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/Tao/Tao.GlPostProcess/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -280,9 +280,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/Tao/Tao.OpenGl.ExtensionLoader/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/Tao/Tao.OpenGl.ExtensionLoader/Makefile.in --- f-spot-0.5.0.3/Tao/Tao.OpenGl.ExtensionLoader/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/Tao/Tao.OpenGl.ExtensionLoader/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/Tao/Tao.OpenGl.Glu/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/Tao/Tao.OpenGl.Glu/Makefile.in --- f-spot-0.5.0.3/Tao/Tao.OpenGl.Glu/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/Tao/Tao.OpenGl.Glu/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ diff -up f-spot-0.5.0.3/Tao/Tao.OpenGl/Makefile.in.link-system-mono-addins f-spot-0.5.0.3/Tao/Tao.OpenGl/Makefile.in --- f-spot-0.5.0.3/Tao/Tao.OpenGl/Makefile.in.link-system-mono-addins 2008-10-18 07:48:07.000000000 -0400 +++ f-spot-0.5.0.3/Tao/Tao.OpenGl/Makefile.in 2008-12-04 14:20:57.000000000 -0500 @@ -290,9 +290,9 @@ LINK_KEYRING = -r:$(DIR_KEYRING)/gnome-k LINK_GLITZ = -r:$(DIR_GLITZ)/NDesk.Glitz.dll LINK_GPHOTO2 = -r:$(DIR_GPHOTO2)/libgphoto2-sharp.dll LINK_MONO_ADDINS = \ - -r:$(DIR_ADDINS_ADDINS)/Mono.Addins.dll \ - -r:$(DIR_ADDINS_SETUP)/Mono.Addins.Setup.dll \ - -r:$(DIR_ADDINS_GUI)/Mono.Addins.Gui.dll + -pkg:mono-addins \ + -pkg:mono-addins-setup \ + -pkg:mono-addins-gui LINK_SEMWEB = -r:$(DIR_SEMWEB)/SemWeb.dll LINK_TAO = \ Index: f-spot.spec =================================================================== RCS file: /cvs/pkgs/rpms/f-spot/F-10/f-spot.spec,v retrieving revision 1.82 retrieving revision 1.83 diff -u -p -r1.82 -r1.83 --- f-spot.spec 25 Jul 2009 19:51:25 -0000 1.82 +++ f-spot.spec 31 Jul 2009 15:26:37 -0000 1.83 @@ -1,6 +1,6 @@ Name: f-spot Version: 0.5.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Photo management application Group: Applications/Multimedia @@ -13,6 +13,9 @@ Patch1: f-spot-0.4.4-gtk-deprecated.pat Patch2: missing-icon.patch # unmount cameras before importing Patch3: gvfs-gphoto.patch +# Use system mono-addins +Patch4: f-spot-0.5.0.3-link-system-mono-addins.patch + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: mono-devel mono-web mono-data mono-data-sqlite lcms-devel @@ -56,6 +59,8 @@ touch -r configure.in configure.in.stamp %patch1 -p1 -b .gtk-deprecated %patch2 -p1 -b .missing-icon %patch3 -p1 -b .gvfs-gphoto +%patch4 -p1 -b .link-system-mono-addins + # restore timestamps touch -r configure.in.stamp configure.in @@ -123,6 +128,9 @@ fi %{_libdir}/gio-sharp-unstable %changelog +* Fri Jul 31 2009 Christian Krause - 0.5.0.3-5 +- Re-add patch to use system mono-addins (BZ #484996) + * Sat Jul 25 2009 Christian Krause - 0.5.0.3-4 - Avoid showing f-spot twice for photo imports - Make f-spot-import work with gvfs (BZ #485037) --- f-spot-0.4.4-link-system-mono-addins.patch DELETED --- From topdog at fedoraproject.org Fri Jul 31 15:28:57 2009 From: topdog at fedoraproject.org (topdog) Date: Fri, 31 Jul 2009 15:28:57 +0000 (UTC) Subject: rpms/php-facedetect/F-10 import.log, NONE, 1.1 php-facedetect.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731152857.45CAF11C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-facedetect/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15870/F-10 Modified Files: .cvsignore sources Added Files: import.log php-facedetect.spec Log Message: * Fri Jul 31 2009 Andrew Colin Kissa - 1.0.0-2 - Initial checkin --- NEW FILE import.log --- php-facedetect-1_0_0-2_fc11:F-10:php-facedetect-1.0.0-2.fc11.src.rpm:1249054102 --- NEW FILE php-facedetect.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Name: php-facedetect Version: 1.0.0 Release: 2%{?dist} Summary: PHP extension to access the OpenCV library Group: Development/Languages License: PHP URL: http://www.xarg.org/project/php-facedetect/ Source0: http://www.xarg.org/download/facedetect-1.0.0.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: php-devel opencv-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif %description This extension provides a PHP implementation of the OpenCV library. The extension offers two new functions. In principle, they differ only by their return value. The first returns only the number of faces found on the given image and the other an associative array of their coordinates. %prep %setup -q -n facedetect-%{version} %{__cat} <<'EOF' >facedetect.ini extension=facedetect.so EOF sed -i 's/\r//' CREDITS %build phpize %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT INSTALL="install -p" install -p -D -m0644 facedetect.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.d/facedetect.ini %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CREDITS %config(noreplace) %{_sysconfdir}/php.d/facedetect.ini %{php_extdir}/facedetect.so %changelog * Thu Jul 30 2009 Andrew Colin Kissa - 1.0.0-2 - Fix macros * Wed Jul 22 2009 Andrew Colin Kissa - 1.0.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:53:32 -0000 1.1 +++ .cvsignore 31 Jul 2009 15:28:56 -0000 1.2 @@ -0,0 +1 @@ +facedetect-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:53:32 -0000 1.1 +++ sources 31 Jul 2009 15:28:57 -0000 1.2 @@ -0,0 +1 @@ +1f05e6eafd930babad7b4c0b4786433c facedetect-1.0.0.tar.gz From topdog at fedoraproject.org Fri Jul 31 15:31:54 2009 From: topdog at fedoraproject.org (topdog) Date: Fri, 31 Jul 2009 15:31:54 +0000 (UTC) Subject: rpms/php-facedetect/EL-5 import.log, NONE, 1.1 php-facedetect.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731153154.AEA5811C00CE@cvs1.fedora.phx.redhat.com> Author: topdog Update of /cvs/pkgs/rpms/php-facedetect/EL-5 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16857/EL-5 Modified Files: .cvsignore sources Added Files: import.log php-facedetect.spec Log Message: * Fri Jul 31 2009 Andrew Colin Kissa - 1.0.0-2 - Initial checkin --- NEW FILE import.log --- php-facedetect-1_0_0-2_fc11:EL-5:php-facedetect-1.0.0-2.fc11.src.rpm:1249054268 --- NEW FILE php-facedetect.spec --- %global php_apiver %((echo 0; php -i 2>/dev/null | sed -n 's/^PHP API => //p') | tail -1) %{!?php_extdir: %{expand: %%global php_extdir %(php-config --extension-dir)}} Name: php-facedetect Version: 1.0.0 Release: 2%{?dist} Summary: PHP extension to access the OpenCV library Group: Development/Languages License: PHP URL: http://www.xarg.org/project/php-facedetect/ Source0: http://www.xarg.org/download/facedetect-1.0.0.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: php-devel opencv-devel %if %{?php_zend_api}0 Requires: php(zend-abi) = %{php_zend_api} Requires: php(api) = %{php_core_api} %else Requires: php-api = %{php_apiver} %endif %description This extension provides a PHP implementation of the OpenCV library. The extension offers two new functions. In principle, they differ only by their return value. The first returns only the number of faces found on the given image and the other an associative array of their coordinates. %prep %setup -q -n facedetect-%{version} %{__cat} <<'EOF' >facedetect.ini extension=facedetect.so EOF sed -i 's/\r//' CREDITS %build phpize %configure make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install INSTALL_ROOT=$RPM_BUILD_ROOT INSTALL="install -p" install -p -D -m0644 facedetect.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.d/facedetect.ini %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc CREDITS %config(noreplace) %{_sysconfdir}/php.d/facedetect.ini %{php_extdir}/facedetect.so %changelog * Thu Jul 30 2009 Andrew Colin Kissa - 1.0.0-2 - Fix macros * Wed Jul 22 2009 Andrew Colin Kissa - 1.0.0-1 - Initial package Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/EL-5/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 30 Jul 2009 22:53:32 -0000 1.1 +++ .cvsignore 31 Jul 2009 15:31:54 -0000 1.2 @@ -0,0 +1 @@ +facedetect-1.0.0.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/php-facedetect/EL-5/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 30 Jul 2009 22:53:32 -0000 1.1 +++ sources 31 Jul 2009 15:31:54 -0000 1.2 @@ -0,0 +1 @@ +1f05e6eafd930babad7b4c0b4786433c facedetect-1.0.0.tar.gz From pkgdb at fedoraproject.org Fri Jul 31 15:38:44 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:38:44 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchbugzilla Message-ID: <20090731153844.6980810F882@bastion2.fedora.phx.redhat.com> chkr has requested the watchbugzilla acl on mono-addins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:38:47 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:38:47 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchcommits Message-ID: <20090731153847.8EC8B10F89A@bastion2.fedora.phx.redhat.com> chkr has requested the watchcommits acl on mono-addins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:38:51 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:38:51 +0000 Subject: [pkgdb] mono-addins: chkr has requested commit Message-ID: <20090731153851.988C010F89D@bastion2.fedora.phx.redhat.com> chkr has requested the commit acl on mono-addins (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:08 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:08 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchbugzilla Message-ID: <20090731154109.164AC10F89B@bastion2.fedora.phx.redhat.com> chkr has requested the watchbugzilla acl on mono-addins (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:11 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchcommits Message-ID: <20090731154111.014D610F89D@bastion2.fedora.phx.redhat.com> chkr has requested the watchcommits acl on mono-addins (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:14 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:14 +0000 Subject: [pkgdb] mono-addins: chkr has requested commit Message-ID: <20090731154114.2398810F8B0@bastion2.fedora.phx.redhat.com> chkr has requested the commit acl on mono-addins (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:29 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:29 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchbugzilla Message-ID: <20090731154129.B980210F89B@bastion2.fedora.phx.redhat.com> chkr has requested the watchbugzilla acl on mono-addins (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:32 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:32 +0000 Subject: [pkgdb] mono-addins: chkr has requested watchcommits Message-ID: <20090731154132.4573810F89D@bastion2.fedora.phx.redhat.com> chkr has requested the watchcommits acl on mono-addins (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From pkgdb at fedoraproject.org Fri Jul 31 15:41:35 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 15:41:35 +0000 Subject: [pkgdb] mono-addins: chkr has requested commit Message-ID: <20090731154135.6FD3F10F8B7@bastion2.fedora.phx.redhat.com> chkr has requested the commit acl on mono-addins (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/mono-addins From mbarnes at fedoraproject.org Fri Jul 31 15:59:11 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 31 Jul 2009 15:59:11 +0000 (UTC) Subject: rpms/evolution/F-11 evolution-2.26.3-missing-gconf-schemas.patch, 1.1, 1.2 Message-ID: <20090731155911.802BA11C00CE@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26787 Modified Files: evolution-2.26.3-missing-gconf-schemas.patch Log Message: * Fri Jul 31 2009 Matthew Barnes - 2.26.3-4.fc11 - Add some missing GConf schemas. evolution-2.26.3-missing-gconf-schemas.patch: apps_evolution_calendar.schemas.in | 48 +++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) Index: evolution-2.26.3-missing-gconf-schemas.patch =================================================================== RCS file: /cvs/pkgs/rpms/evolution/F-11/evolution-2.26.3-missing-gconf-schemas.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- evolution-2.26.3-missing-gconf-schemas.patch 31 Jul 2009 11:18:51 -0000 1.1 +++ evolution-2.26.3-missing-gconf-schemas.patch 31 Jul 2009 15:59:11 -0000 1.2 @@ -1,6 +1,6 @@ diff -up evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in.missing-gconf-schemas evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in --- evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in.missing-gconf-schemas 2009-06-26 10:49:50.000000000 -0400 -+++ evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in 2009-07-31 06:55:42.000000000 -0400 ++++ evolution-2.26.3/calendar/gui/apps_evolution_calendar.schemas.in 2009-07-31 11:58:24.000000000 -0400 @@ -4,6 +4,17 @@ @@ -19,10 +19,23 @@ diff -up evolution-2.26.3/calendar/gui/a /schemas/apps/evolution/calendar/display/timezone /apps/evolution/calendar/display/timezone evolution-calendar -@@ -400,9 +411,33 @@ +@@ -400,9 +411,46 @@ ++ ++ /schemas/apps/evolution/calendar/display/use_system_timezone ++ /apps/evolution/calendar/display/use_system_timezone ++ evolution-calendar ++ bool ++ false ++ ++ Use system timezone ++ Use the system timezone instead of the timezone selected ++ in Evolution. ++ ++ ++ + + + From kasal at fedoraproject.org Fri Jul 31 16:09:08 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Fri, 31 Jul 2009 16:09:08 +0000 (UTC) Subject: rpms/perl/devel perl.spec,1.227,1.228 Message-ID: <20090731160908.04CBD11C00CE@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30267 Modified Files: perl.spec Log Message: - Add configure option -DDEBUGGING=-g (#156113) Index: perl.spec =================================================================== RCS file: /cvs/extras/rpms/perl/devel/perl.spec,v retrieving revision 1.227 retrieving revision 1.228 diff -u -p -r1.227 -r1.228 --- perl.spec 28 Jul 2009 07:31:46 -0000 1.227 +++ perl.spec 31 Jul 2009 16:09:07 -0000 1.228 @@ -7,7 +7,7 @@ Name: perl Version: %{perl_version} -Release: 77%{?dist} +Release: 78%{?dist} Epoch: %{perl_epoch} Summary: Practical Extraction and Report Language Group: Development/Languages @@ -1092,6 +1092,7 @@ echo "RPM Build arch: %{_arch}" # use "lib", not %{_lib}, for privlib, sitelib, and vendorlib /bin/sh Configure -des -Doptimize="$RPM_OPT_FLAGS" \ + -DDEBUGGING=-g \ -Accflags="-DPERL_USE_SAFE_PUTENV" \ -Dversion=%{perl_version} \ -Dmyhostname=localhost \ @@ -1929,6 +1930,9 @@ TMPDIR="$PWD/tmp" make test # Old changelog entries are preserved in CVS. %changelog +* Fri Jul 31 2009 Stepan Kasal - 4:5.10.0-78 +- Add configure option -DDEBUGGING=-g (#156113) + * Tue Jul 28 2009 arcela Ma?l??ov? - 4:5.10.0-77 - 510127 spam assassin suffer from tainted bug From kasal at fedoraproject.org Fri Jul 31 16:13:57 2009 From: kasal at fedoraproject.org (=?utf-8?b?xaB0xJtww6FuIEthc2Fs?=) Date: Fri, 31 Jul 2009 16:13:57 +0000 (UTC) Subject: rpms/perl-Devel-FindRef/devel perl-Devel-FindRef.spec,1.1,1.2 Message-ID: <20090731161357.7B02D11C00CE@cvs1.fedora.phx.redhat.com> Author: kasal Update of /cvs/extras/rpms/perl-Devel-FindRef/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31999 Modified Files: perl-Devel-FindRef.spec Log Message: - rebuild against perl build without -DDEBUGGING Index: perl-Devel-FindRef.spec =================================================================== RCS file: /cvs/extras/rpms/perl-Devel-FindRef/devel/perl-Devel-FindRef.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- perl-Devel-FindRef.spec 27 Jul 2009 08:41:51 -0000 1.1 +++ perl-Devel-FindRef.spec 31 Jul 2009 16:13:57 -0000 1.2 @@ -1,6 +1,6 @@ Name: perl-Devel-FindRef Version: 1.42 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Where is that reference to my variable hiding? License: GPL+ or Artistic Group: Development/Libraries @@ -43,10 +43,13 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc Changes COPYING README -%{perl_vendorarch}/auto/* -%{perl_vendorarch}/Devel* -%{_mandir}/man3/* +%{perl_vendorarch}/auto/Devel +%{perl_vendorarch}/Devel +%{_mandir}/man3/Devel*.3* %changelog +* Fri Jul 31 2009 Stepan Kasal 1.42-2 +- rebuild against perl build without -DDEBUGGING + * Mon Jul 27 2009 Nicolas Chauvet (kwizart) 1.42-1 - Specfile autogenerated by cpanspec 1.78. From spot at fedoraproject.org Fri Jul 31 16:13:50 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:13:50 +0000 (UTC) Subject: rpms/alienarena/F-11 alienarena.spec,1.11,1.12 sources,1.5,1.6 Message-ID: <20090731161350.A800611C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31907/F-11 Modified Files: alienarena.spec sources Log Message: update to 7.30 Index: alienarena.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/F-11/alienarena.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- alienarena.spec 24 Feb 2009 00:33:41 -0000 1.11 +++ alienarena.spec 31 Jul 2009 16:13:50 -0000 1.12 @@ -1,50 +1,49 @@ Name: alienarena Summary: Multiplayer retro sci-fi deathmatch game -Version: 7.21 -Release: 2%{?dist} +Version: 7.30 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games # Subversion: https://svn.icculus.org/alienarena/trunk/?sortby=date # Upstream seems too inept to provide a simple source only tarball, so we use svn. # Trunk contains the huge data also, so for the exe just get the source dir. -# mkdir alienarena-7.21 && cd alienarena-7.21/ -# svn co svn://svn.icculus.org/alienarena/tags/7.21/source -# svn co svn://svn.icculus.org/alienarena/tags/7.21/docs +# mkdir alienarena-7.30 && cd alienarena-7.30/ +# svn co svn://svn.icculus.org/alienarena/tags/7.30/source +# svn co svn://svn.icculus.org/alienarena/tags/7.30/docs # cd ../ -# find alienarena-7.21 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-7.21.tar.bz2 alienarena-7.21 -Source0: alienarena-7.21.tar.bz2 +# find alienarena-7.30 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-7.30.tar.bz2 alienarena-7.30 +Source0: alienarena-7.30.tar.bz2 Source1: alienarena.desktop Source2: GPL.acebot.txt Source3: alienarena.png Patch0: alienarena-7.20-currentdir-option.patch Patch1: alienarena-7.10-dont-search-dll-in-data-path.patch -Patch2: alienarena-7.10-genericoptflagsonly.patch Patch3: alienarena-7.21-show-search-paths.patch URL: http://red.planetarena.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel, libXext-devel, libXxf86dga-devel, libXxf86vm-devel, libjpeg-devel -BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, SDL-devel, curl-devel, libpng-devel +BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, curl-devel, libpng-devel +BuildRequires: libvorbis-devel, openal-devel BuildRequires: desktop-file-utils -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 Requires: desktop-file-utils >= 0.9, opengl-games-utils - %description -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). %package server Group: Amusements/Games Summary: Dedicated server for alienarena, the FPS game -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 %description server -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). This is the dedicated server. @@ -56,7 +55,6 @@ This is the dedicated server. # WITH_CURRENTDIR helps a little bit, but is not a proper fix %patch0 -p0 %patch1 -p1 -%patch2 -p1 %patch3 -p1 # Copy license clarification for acebot @@ -71,9 +69,9 @@ cp -p %{SOURCE2} . %build cd source/ -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" - WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no - DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" \ + WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no \ + DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" OPTIMIZED_CFLAGS=no %install @@ -82,9 +80,7 @@ rm -rf %{buildroot} cd source install -D -m 755 release/crded %{buildroot}%{_libexecdir}/%{name}-server -# The SDL binary works better. -# install -m0755 release/crx %{buildroot}%{_bindir} -%{__install} -D -m 755 release/crx.sdl %{buildroot}/%{_libexecdir}/%{name} +%{__install} -D -m 755 release/crx %{buildroot}/%{_libexecdir}/%{name} %{__install} -D -m 755 release/game.so %{buildroot}/%{_libdir}/%{name}/arena/game.so # Create the alienarena startup script. @@ -151,6 +147,12 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 7.30-1 +- update to 7.30 + +* Fri Jul 24 2009 Fedora Release Engineering - 7.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 7.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:32:19 -0000 1.5 +++ sources 31 Jul 2009 16:13:50 -0000 1.6 @@ -1 +1 @@ -2743db92fa3f2f9d3b80d323356c0313 alienarena-7.21.tar.bz2 +f947f8b4234daad11bef6e23620e0d59 alienarena-7.30.tar.bz2 From spot at fedoraproject.org Fri Jul 31 16:13:50 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:13:50 +0000 (UTC) Subject: rpms/alienarena/F-10 alienarena.spec,1.10,1.11 sources,1.5,1.6 Message-ID: <20090731161350.830D711C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31907/F-10 Modified Files: alienarena.spec sources Log Message: update to 7.30 Index: alienarena.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/F-10/alienarena.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- alienarena.spec 31 Jan 2009 01:32:18 -0000 1.10 +++ alienarena.spec 31 Jul 2009 16:13:50 -0000 1.11 @@ -1,50 +1,49 @@ Name: alienarena Summary: Multiplayer retro sci-fi deathmatch game -Version: 7.21 +Version: 7.30 Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games # Subversion: https://svn.icculus.org/alienarena/trunk/?sortby=date # Upstream seems too inept to provide a simple source only tarball, so we use svn. # Trunk contains the huge data also, so for the exe just get the source dir. -# mkdir alienarena-7.21 && cd alienarena-7.21/ -# svn co svn://svn.icculus.org/alienarena/tags/7.21/source -# svn co svn://svn.icculus.org/alienarena/tags/7.21/docs +# mkdir alienarena-7.30 && cd alienarena-7.30/ +# svn co svn://svn.icculus.org/alienarena/tags/7.30/source +# svn co svn://svn.icculus.org/alienarena/tags/7.30/docs # cd ../ -# find alienarena-7.21 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-7.21.tar.bz2 alienarena-7.21 -Source0: alienarena-7.21.tar.bz2 +# find alienarena-7.30 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-7.30.tar.bz2 alienarena-7.30 +Source0: alienarena-7.30.tar.bz2 Source1: alienarena.desktop Source2: GPL.acebot.txt Source3: alienarena.png Patch0: alienarena-7.20-currentdir-option.patch Patch1: alienarena-7.10-dont-search-dll-in-data-path.patch -Patch2: alienarena-7.10-genericoptflagsonly.patch Patch3: alienarena-7.21-show-search-paths.patch URL: http://red.planetarena.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel, libXext-devel, libXxf86dga-devel, libXxf86vm-devel, libjpeg-devel -BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, SDL-devel, curl-devel, libpng-devel +BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, curl-devel, libpng-devel +BuildRequires: libvorbis-devel, openal-devel BuildRequires: desktop-file-utils -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 Requires: desktop-file-utils >= 0.9, opengl-games-utils - %description -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). %package server Group: Amusements/Games Summary: Dedicated server for alienarena, the FPS game -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 %description server -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). This is the dedicated server. @@ -56,7 +55,6 @@ This is the dedicated server. # WITH_CURRENTDIR helps a little bit, but is not a proper fix %patch0 -p0 %patch1 -p1 -%patch2 -p1 %patch3 -p1 # Copy license clarification for acebot @@ -71,9 +69,9 @@ cp -p %{SOURCE2} . %build cd source/ -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" - WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no - DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" \ + WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no \ + DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" OPTIMIZED_CFLAGS=no %install @@ -82,9 +80,7 @@ rm -rf %{buildroot} cd source install -D -m 755 release/crded %{buildroot}%{_libexecdir}/%{name}-server -# The SDL binary works better. -# install -m0755 release/crx %{buildroot}%{_bindir} -%{__install} -D -m 755 release/crx.sdl %{buildroot}/%{_libexecdir}/%{name} +%{__install} -D -m 755 release/crx %{buildroot}/%{_libexecdir}/%{name} %{__install} -D -m 755 release/game.so %{buildroot}/%{_libdir}/%{name}/arena/game.so # Create the alienarena startup script. @@ -151,6 +147,15 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 7.30-1 +- update to 7.30 + +* Fri Jul 24 2009 Fedora Release Engineering - 7.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 7.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Jan 30 2009 Tom "spot" Callaway - 7.21-1 - update to 7.21 - apply Paul's patch to print the search paths Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:32:18 -0000 1.5 +++ sources 31 Jul 2009 16:13:50 -0000 1.6 @@ -1 +1 @@ -2743db92fa3f2f9d3b80d323356c0313 alienarena-7.21.tar.bz2 +f947f8b4234daad11bef6e23620e0d59 alienarena-7.30.tar.bz2 From spot at fedoraproject.org Fri Jul 31 16:13:50 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:13:50 +0000 (UTC) Subject: rpms/alienarena/devel .cvsignore, 1.5, 1.6 alienarena.spec, 1.12, 1.13 sources, 1.5, 1.6 Message-ID: <20090731161350.F204511C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31907/devel Modified Files: .cvsignore alienarena.spec sources Log Message: update to 7.30 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 31 Jan 2009 01:32:19 -0000 1.5 +++ .cvsignore 31 Jul 2009 16:13:50 -0000 1.6 @@ -1 +1 @@ -alienarena-7.21.tar.bz2 +alienarena-7.30.tar.bz2 Index: alienarena.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/devel/alienarena.spec,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- alienarena.spec 24 Jul 2009 16:43:10 -0000 1.12 +++ alienarena.spec 31 Jul 2009 16:13:50 -0000 1.13 @@ -1,50 +1,49 @@ Name: alienarena Summary: Multiplayer retro sci-fi deathmatch game -Version: 7.21 -Release: 3%{?dist} +Version: 7.30 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games # Subversion: https://svn.icculus.org/alienarena/trunk/?sortby=date # Upstream seems too inept to provide a simple source only tarball, so we use svn. # Trunk contains the huge data also, so for the exe just get the source dir. -# mkdir alienarena-7.21 && cd alienarena-7.21/ -# svn co svn://svn.icculus.org/alienarena/tags/7.21/source -# svn co svn://svn.icculus.org/alienarena/tags/7.21/docs +# mkdir alienarena-7.30 && cd alienarena-7.30/ +# svn co svn://svn.icculus.org/alienarena/tags/7.30/source +# svn co svn://svn.icculus.org/alienarena/tags/7.30/docs # cd ../ -# find alienarena-7.21 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-7.21.tar.bz2 alienarena-7.21 -Source0: alienarena-7.21.tar.bz2 +# find alienarena-7.30 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-7.30.tar.bz2 alienarena-7.30 +Source0: alienarena-7.30.tar.bz2 Source1: alienarena.desktop Source2: GPL.acebot.txt Source3: alienarena.png Patch0: alienarena-7.20-currentdir-option.patch Patch1: alienarena-7.10-dont-search-dll-in-data-path.patch -Patch2: alienarena-7.10-genericoptflagsonly.patch Patch3: alienarena-7.21-show-search-paths.patch URL: http://red.planetarena.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libX11-devel, libXext-devel, libXxf86dga-devel, libXxf86vm-devel, libjpeg-devel -BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, SDL-devel, curl-devel, libpng-devel +BuildRequires: mesa-libGL-devel, mesa-libGLU-devel, curl-devel, libpng-devel +BuildRequires: libvorbis-devel, openal-devel BuildRequires: desktop-file-utils -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 Requires: desktop-file-utils >= 0.9, opengl-games-utils - %description -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). %package server Group: Amusements/Games Summary: Dedicated server for alienarena, the FPS game -Requires: alienarena-data = 20090115 +Requires: alienarena-data = 20090730 %description server -Alien Arena 2008 is an online deathmatch game with over 30 levels, seven modes -of play, loads of mutators, built-in bots, 11 player characters, and 9 weapons +Alien Arena 2009 is an online deathmatch game with over 30 levels, seven modes +of play, loads of mutators, built-in bots, multiple player characters and weapons (with alt-fire modes). This is the dedicated server. @@ -56,7 +55,6 @@ This is the dedicated server. # WITH_CURRENTDIR helps a little bit, but is not a proper fix %patch0 -p0 %patch1 -p1 -%patch2 -p1 %patch3 -p1 # Copy license clarification for acebot @@ -71,9 +69,9 @@ cp -p %{SOURCE2} . %build cd source/ -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" - WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no - DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" PREFIX="%{_prefix}" \ + WITH_DATADIR=yes WITH_LIBDIR=yes WITH_CURRENTDIR=no \ + DATADIR=%{_datadir}/%{name} LIBDIR="%{_libdir}/%{name}" OPTIMIZED_CFLAGS=no %install @@ -82,9 +80,7 @@ rm -rf %{buildroot} cd source install -D -m 755 release/crded %{buildroot}%{_libexecdir}/%{name}-server -# The SDL binary works better. -# install -m0755 release/crx %{buildroot}%{_bindir} -%{__install} -D -m 755 release/crx.sdl %{buildroot}/%{_libexecdir}/%{name} +%{__install} -D -m 755 release/crx %{buildroot}/%{_libexecdir}/%{name} %{__install} -D -m 755 release/game.so %{buildroot}/%{_libdir}/%{name}/arena/game.so # Create the alienarena startup script. @@ -151,6 +147,9 @@ gtk-update-icon-cache -qf %{_datadir}/ic %changelog +* Thu Jul 30 2009 Tom "spot" Callaway - 7.30-1 +- update to 7.30 + * Fri Jul 24 2009 Fedora Release Engineering - 7.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:32:19 -0000 1.5 +++ sources 31 Jul 2009 16:13:50 -0000 1.6 @@ -1 +1 @@ -2743db92fa3f2f9d3b80d323356c0313 alienarena-7.21.tar.bz2 +f947f8b4234daad11bef6e23620e0d59 alienarena-7.30.tar.bz2 From krh at fedoraproject.org Fri Jul 31 16:20:04 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 31 Jul 2009 16:20:04 +0000 (UTC) Subject: rpms/mesa/devel mesa-7.6-dri2-page-flip.patch, NONE, 1.1 mesa.spec, 1.247, 1.248 Message-ID: <20090731162004.3C0E911C04D3@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1821 Modified Files: mesa.spec Added Files: mesa-7.6-dri2-page-flip.patch Log Message: * Fri Jul 31 2009 Kristian H?gsberg 7.6-0.6 - Add DRI2 pageflipping patch. mesa-7.6-dri2-page-flip.patch: include/GL/internal/dri_interface.h | 14 ++++++++- src/glx/x11/dri2.c | 16 ++++++++++ src/glx/x11/dri2.h | 3 ++ src/glx/x11/dri2_glx.c | 38 +++++++++++++++++++++----- src/mesa/drivers/dri/common/dri_util.c | 1 src/mesa/drivers/dri/common/dri_util.h | 2 + src/mesa/drivers/dri/intel/intel_context.c | 15 ++++------ src/mesa/drivers/dri/intel/intel_context.h | 1 src/mesa/drivers/dri/intel/intel_extensions.h | 3 ++ src/mesa/drivers/dri/intel/intel_screen.c | 36 +++++++++++++++++++----- src/mesa/drivers/dri/intel/intel_tex_image.c | 3 +- 11 files changed, 107 insertions(+), 25 deletions(-) --- NEW FILE mesa-7.6-dri2-page-flip.patch --- diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index 910c916..ec6238f 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -262,10 +262,22 @@ struct __DRItexBufferExtensionRec { * Used by drivers that implement DRI2 */ #define __DRI2_FLUSH "DRI2_Flush" -#define __DRI2_FLUSH_VERSION 1 +#define __DRI2_FLUSH_VERSION 2 struct __DRI2flushExtensionRec { __DRIextension base; void (*flush)(__DRIdrawable *drawable); + + /** + * Flush all rendering queue in the driver to the drm and + * invalidate all buffers. The driver will call out to + * getBuffers/getBuffersWithFormat before it starts rendering + * again. + * + * \param drawable the drawable to flush and invalidate + * + * \since 2 + */ + void (*flushInvalidate)(__DRIdrawable *drawable); }; diff --git a/src/glx/x11/dri2.c b/src/glx/x11/dri2.c index ebb2985..a7863ee 100644 --- a/src/glx/x11/dri2.c +++ b/src/glx/x11/dri2.c @@ -369,3 +369,19 @@ void DRI2CopyRegion(Display *dpy, XID drawable, XserverRegion region, UnlockDisplay(dpy); SyncHandle(); } + +void DRI2SwapBuffers(Display *dpy, XID drawable) +{ + XExtDisplayInfo *info = DRI2FindDisplay(dpy); + xDRI2SwapBuffersReq *req; + + XextSimpleCheckExtension (dpy, info, dri2ExtensionName); + + LockDisplay(dpy); + GetReq(DRI2SwapBuffers, req); + req->reqType = info->codes->major_opcode; + req->dri2ReqType = X_DRI2SwapBuffers; + req->drawable = drawable; + UnlockDisplay(dpy); + SyncHandle(); +} diff --git a/src/glx/x11/dri2.h b/src/glx/x11/dri2.h index b0e61f8..fc80649 100644 --- a/src/glx/x11/dri2.h +++ b/src/glx/x11/dri2.h @@ -77,4 +77,7 @@ extern void DRI2CopyRegion(Display *dpy, XID drawable, XserverRegion region, CARD32 dest, CARD32 src); +extern void +DRI2SwapBuffers(Display *dpy, XID drawable); + #endif diff --git a/src/glx/x11/dri2_glx.c b/src/glx/x11/dri2_glx.c index f4865ae..48c8c71 100644 --- a/src/glx/x11/dri2_glx.c +++ b/src/glx/x11/dri2_glx.c @@ -35,6 +35,7 @@ #include #include #include +#include "glapi.h" #include "glxclient.h" #include "glcontextmodes.h" #include "xf86dri.h" @@ -63,6 +64,8 @@ struct __GLXDRIdisplayPrivateRec { int driMajor; int driMinor; int driPatch; + + int swapAvailable; }; struct __GLXDRIcontextPrivateRec { @@ -224,13 +227,6 @@ static void dri2CopySubBuffer(__GLXDRIdrawable *pdraw, dri2WaitX(pdraw); } -static void dri2SwapBuffers(__GLXDRIdrawable *pdraw) -{ - __GLXDRIdrawablePrivate *priv = (__GLXDRIdrawablePrivate *) pdraw; - - dri2CopySubBuffer(pdraw, 0, 0, priv->width, priv->height); -} - static void dri2WaitX(__GLXDRIdrawable *pdraw) { __GLXDRIdrawablePrivate *priv = (__GLXDRIdrawablePrivate *) pdraw; @@ -331,6 +327,31 @@ process_buffers(__GLXDRIdrawablePrivate *pdraw, DRI2Buffer *buffers, } +static void dri2SwapBuffers(__GLXDRIdrawable *pdraw) +{ + __GLXDRIdrawablePrivate *priv = (__GLXDRIdrawablePrivate *) pdraw; + __GLXdisplayPrivate *dpyPriv = __glXInitialize(priv->base.psc->dpy); + __GLXDRIdisplayPrivate *pdp = + (__GLXDRIdisplayPrivate *)dpyPriv->dri2Display; + __GLXscreenConfigs *psc = pdraw->psc; + +#ifdef __DRI2_FLUSH + if (pdraw->psc->f) + (*pdraw->psc->f->flush)(pdraw->driDrawable); +#endif + + /* Old servers can't handle swapbuffers */ + if (!pdp->swapAvailable) + return dri2CopySubBuffer(pdraw, 0, 0, priv->width, priv->height); + + DRI2SwapBuffers(pdraw->psc->dpy, pdraw->drawable); + +#if __DRI2_FLUSH_VERSION >= 2 + if (pdraw->psc->f) + (*pdraw->psc->f->flushInvalidate)(pdraw->driDrawable); +#endif +} + static __DRIbuffer * dri2GetBuffers(__DRIdrawable *driDrawable, int *width, int *height, @@ -544,6 +565,9 @@ _X_HIDDEN __GLXDRIdisplay *dri2CreateDisplay(Display *dpy) } pdp->driPatch = 0; + pdp->swapAvailable = 0; + if (pdp->driMinor >= 2) + pdp->swapAvailable = 1; pdp->base.destroyDisplay = dri2DestroyDisplay; pdp->base.createScreen = dri2CreateScreen; diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c index 1d94060..3c5e580 100644 --- a/src/mesa/drivers/dri/common/dri_util.c +++ b/src/mesa/drivers/dri/common/dri_util.c @@ -453,6 +453,7 @@ driCreateNewDrawable(__DRIscreen *psp, const __DRIconfig *config, pdp->driScreenPriv = psp; pdp->driContextPriv = &psp->dummyContextPriv; + pdp->validBuffers = GL_FALSE; if (!(*psp->DriverAPI.CreateBuffer)(psp, pdp, &config->modes, renderType == GLX_PIXMAP_BIT)) { diff --git a/src/mesa/drivers/dri/common/dri_util.h b/src/mesa/drivers/dri/common/dri_util.h index c95a5c8..c3046d6 100644 --- a/src/mesa/drivers/dri/common/dri_util.h +++ b/src/mesa/drivers/dri/common/dri_util.h @@ -380,6 +380,8 @@ struct __DRIdrawableRec { * GLX_MESA_swap_control. */ unsigned int swap_interval; + + GLboolean validBuffers; }; /** diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index 4abb525..42e946f 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -71,8 +71,6 @@ int INTEL_DEBUG = (0); #define DRIVER_DATE_GEM "GEM " DRIVER_DATE -static void intel_flush(GLcontext *ctx, GLboolean needs_mi_flush); - static const GLubyte * intelGetString(GLcontext * ctx, GLenum name) { @@ -390,6 +388,7 @@ intel_update_renderbuffers(__DRIcontext *context, __DRIdrawable *drawable) } } + drawable->validBuffers = GL_TRUE; driUpdateFramebufferSize(&intel->ctx, drawable); } @@ -477,7 +476,7 @@ intelInvalidateState(GLcontext * ctx, GLuint new_state) intel->vtbl.invalidate_state( intel, new_state ); } -static void +void intel_flush(GLcontext *ctx, GLboolean needs_mi_flush) { struct intel_context *intel = intel_context(ctx); @@ -908,11 +907,7 @@ intelMakeCurrent(__DRIcontextPrivate * driContextPriv, (struct intel_framebuffer *) driDrawPriv->driverPrivate; GLframebuffer *readFb = (GLframebuffer *) driReadPriv->driverPrivate; - if (driContextPriv->driScreenPriv->dri2.enabled) { - intel_update_renderbuffers(driContextPriv, driDrawPriv); - if (driDrawPriv != driReadPriv) - intel_update_renderbuffers(driContextPriv, driReadPriv); - } else { + if (!driContextPriv->driScreenPriv->dri2.enabled) { /* XXX FBO temporary fix-ups! These are released in * intelDextroyContext(), above. Changes here should be * reflected there. @@ -1067,6 +1062,10 @@ void LOCK_HARDWARE( struct intel_context *intel ) if (intel->driDrawable) { intel_fb = intel->driDrawable->driverPrivate; + if (!intel->driDrawable->validBuffers) + intel_update_renderbuffers(intel->driContext, + intel->driDrawable); + if (intel_fb) intel_rb = intel_get_renderbuffer(&intel_fb->Base, diff --git a/src/mesa/drivers/dri/intel/intel_context.h b/src/mesa/drivers/dri/intel/intel_context.h index 08bea88..57cb247 100644 --- a/src/mesa/drivers/dri/intel/intel_context.h +++ b/src/mesa/drivers/dri/intel/intel_context.h @@ -462,6 +462,7 @@ extern void intelGetLock(struct intel_context *intel, GLuint flags); extern void intelFinish(GLcontext * ctx); extern void intelFlush(GLcontext * ctx); +extern void intel_flush(GLcontext * ctx, GLboolean needs_mi_flush); extern void intelInitDriverFunctions(struct dd_function_table *functions); diff --git a/src/mesa/drivers/dri/intel/intel_extensions.h b/src/mesa/drivers/dri/intel/intel_extensions.h index 97147ec..9283ee9 100644 --- a/src/mesa/drivers/dri/intel/intel_extensions.h +++ b/src/mesa/drivers/dri/intel/intel_extensions.h @@ -32,5 +32,8 @@ extern void intelInitExtensions(GLcontext *ctx, GLboolean enable_imaging); +extern void +intelFlushDrawable(__DRIdrawable *drawable); + #endif diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/intel/intel_screen.c index 6bbc995..7767ff9 100644 --- a/src/mesa/drivers/dri/intel/intel_screen.c +++ b/src/mesa/drivers/dri/intel/intel_screen.c @@ -225,6 +225,28 @@ static const __DRItexBufferExtension intelTexBufferExtension = { intelSetTexBuffer2, }; +static void +intelDRI2Flush(__DRIdrawable *drawable) +{ + struct intel_context *intel = drawable->driContextPriv->driverPrivate; + GLcontext *ctx = &intel->ctx; + + intel_flush(ctx, GL_TRUE); +} + +static void +intelDRI2FlushInvalidate(__DRIdrawable *drawable) +{ + intelDRI2Flush(drawable); + drawable->validBuffers = GL_FALSE; +} + +static const struct __DRI2flushExtensionRec intelFlushExtension = { + { __DRI2_FLUSH, __DRI2_FLUSH_VERSION }, + intelDRI2Flush, + intelDRI2FlushInvalidate, +}; + static const __DRIextension *intelScreenExtensions[] = { &driReadDrawableExtension, &driCopySubBufferExtension.base, @@ -233,6 +255,7 @@ static const __DRIextension *intelScreenExtensions[] = { &driMediaStreamCounterExtension.base, &intelTexOffsetExtension.base, &intelTexBufferExtension.base, + &intelFlushExtension.base, NULL }; @@ -513,11 +536,9 @@ intelFillInModes(__DRIscreenPrivate *psp, unsigned back_buffer_factor; int i; - /* GLX_SWAP_COPY_OML is only supported because the Intel driver doesn't - * support pageflipping at all. - */ static const GLenum back_buffer_modes[] = { - GLX_NONE, GLX_SWAP_UNDEFINED_OML, GLX_SWAP_COPY_OML + GLX_NONE, GLX_SWAP_UNDEFINED_OML, + GLX_SWAP_EXCHANGE_OML, GLX_SWAP_COPY_OML }; uint8_t depth_bits_array[3]; @@ -738,11 +759,10 @@ __DRIconfig **intelInitScreen2(__DRIscreenPrivate *psp) intelScreenPrivate *intelScreen; GLenum fb_format[3]; GLenum fb_type[3]; - /* GLX_SWAP_COPY_OML is only supported because the Intel driver doesn't - * support pageflipping at all. - */ + static const GLenum back_buffer_modes[] = { - GLX_NONE, GLX_SWAP_UNDEFINED_OML, GLX_SWAP_COPY_OML + GLX_NONE, GLX_SWAP_UNDEFINED_OML, + GLX_SWAP_EXCHANGE_OML, GLX_SWAP_COPY_OML }; uint8_t depth_bits[4], stencil_bits[4], msaa_samples_array[1]; int color; diff --git a/src/mesa/drivers/dri/intel/intel_tex_image.c b/src/mesa/drivers/dri/intel/intel_tex_image.c index c5f5220..54c3d16 100644 --- a/src/mesa/drivers/dri/intel/intel_tex_image.c +++ b/src/mesa/drivers/dri/intel/intel_tex_image.c @@ -751,7 +751,8 @@ intelSetTexBuffer2(__DRIcontext *pDRICtx, GLint target, if (!intelObj) return; - intel_update_renderbuffers(pDRICtx, dPriv); + if (!dPriv->validBuffers) + intel_update_renderbuffers(pDRICtx, dPriv); rb = intel_fb->color_rb[0]; /* If the region isn't set, then intel_update_renderbuffers was unable Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.247 retrieving revision 1.248 diff -u -p -r1.247 -r1.248 --- mesa.spec 25 Jul 2009 12:04:17 -0000 1.247 +++ mesa.spec 31 Jul 2009 16:20:03 -0000 1.248 @@ -21,7 +21,7 @@ Summary: Mesa graphics libraries Name: mesa Version: 7.6 -Release: 0.5%{?dist} +Release: 0.6%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -47,6 +47,8 @@ Patch9: intel-revert-vbl.patch Patch12: mesa-7.1-disable-intel-classic-warn.patch Patch13: mesa-7.5-sparc64.patch +Patch20: mesa-7.6-dri2-page-flip.patch + BuildRequires: pkgconfig autoconf automake %if %{with_hardware} BuildRequires: kernel-headers >= 2.6.27-0.305.rc5.git6 @@ -171,6 +173,7 @@ This package provides some demo applicat %patch9 -p1 -b .intel-vbl %patch12 -p1 -b .intel-nowarn %patch13 -p1 -b .sparc64 +%patch20 -p1 -b .dri2-page-flip # Hack the demos to use installed data files sed -i 's,../images,%{_libdir}/mesa,' progs/demos/*.c @@ -366,6 +369,9 @@ rm -rf $RPM_BUILD_ROOT %{demodir} %changelog +* Fri Jul 31 2009 Kristian H?gsberg 7.6-0.6 +- Add DRI2 pageflipping patch. + * Sat Jul 25 2009 Fedora Release Engineering - 7.6-0.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From krh at fedoraproject.org Fri Jul 31 16:21:02 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 31 Jul 2009 16:21:02 +0000 (UTC) Subject: rpms/mesa/devel mesa.spec,1.248,1.249 Message-ID: <20090731162102.2021411C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/mesa/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2224 Modified Files: mesa.spec Log Message: * Fri Jul 31 2009 Kristian H?gsberg 7.6-0.6 - Add DRI2 pageflipping patch. Index: mesa.spec =================================================================== RCS file: /cvs/pkgs/rpms/mesa/devel/mesa.spec,v retrieving revision 1.248 retrieving revision 1.249 diff -u -p -r1.248 -r1.249 --- mesa.spec 31 Jul 2009 16:20:03 -0000 1.248 +++ mesa.spec 31 Jul 2009 16:21:01 -0000 1.249 @@ -21,7 +21,7 @@ Summary: Mesa graphics libraries Name: mesa Version: 7.6 -Release: 0.6%{?dist} +Release: 0.7%{?dist} License: MIT Group: System Environment/Libraries URL: http://www.mesa3d.org @@ -369,7 +369,7 @@ rm -rf $RPM_BUILD_ROOT %{demodir} %changelog -* Fri Jul 31 2009 Kristian H?gsberg 7.6-0.6 +* Fri Jul 31 2009 Kristian H?gsberg 7.6-0.7 - Add DRI2 pageflipping patch. * Sat Jul 25 2009 Fedora Release Engineering - 7.6-0.5 From jakub at fedoraproject.org Fri Jul 31 16:26:10 2009 From: jakub at fedoraproject.org (Jakub Jelinek) Date: Fri, 31 Jul 2009 16:26:10 +0000 (UTC) Subject: rpms/compat-gcc-34/devel compat-gcc-34.spec,1.16,1.17 Message-ID: <20090731162610.3D6BC11C00CE@cvs1.fedora.phx.redhat.com> Author: jakub Update of /cvs/pkgs/rpms/compat-gcc-34/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4100 Modified Files: compat-gcc-34.spec Log Message: 3.4.6-17 Index: compat-gcc-34.spec =================================================================== RCS file: /cvs/pkgs/rpms/compat-gcc-34/devel/compat-gcc-34.spec,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- compat-gcc-34.spec 28 Jul 2009 13:07:36 -0000 1.16 +++ compat-gcc-34.spec 31 Jul 2009 16:26:09 -0000 1.17 @@ -16,7 +16,7 @@ Summary: Compatibility GNU Compiler Collection Name: compat-gcc-34 Version: 3.4.6 -Release: 16 +Release: 17 # libgcc and crtstuff have an exception which allows # linking it into any kind of programs or shared libraries without # restrictions. @@ -341,6 +341,11 @@ for d in `pwd`/%{gcc_target_platform}/li popd done +# Make sure we are using system libgcc_s, as system libstdc++.so.6 might +# use unwinding features that require it. +mv gcc/libgcc_s.so.1{,.bak} +ln -sf /%{_lib}/libgcc_s.so.1 gcc/libgcc_s.so.1 + # run the tests. make %{?_smp_mflags} -k check || : echo ====================TESTING========================= @@ -669,6 +674,10 @@ fi %{_prefix}/%{_lib}/libg2c.so.0* %changelog +* Fri Jul 31 2009 Jakub Jelinek 3.4.6-17 +- make sure to use system libgcc_s.so.1 instead of gcc34 one during + testing + * Tue Jul 28 2009 Jakub Jelinek 3.4.6-16 - replace -mtune=atom in $RPM_OPT_FLAGS with something that GCC 3.4.6 groks From spot at fedoraproject.org Fri Jul 31 16:26:14 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:26:14 +0000 (UTC) Subject: rpms/alienarena-data/F-10 alienarena-data.spec, 1.6, 1.7 sources, 1.5, 1.6 Message-ID: <20090731162614.621F111C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena-data/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4075/F-10 Modified Files: alienarena-data.spec sources Log Message: update data to 7.30 Index: alienarena-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/F-10/alienarena-data.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- alienarena-data.spec 31 Jan 2009 01:43:13 -0000 1.6 +++ alienarena-data.spec 31 Jul 2009 16:26:14 -0000 1.7 @@ -1,25 +1,25 @@ Name: alienarena-data -Summary: Data files for Alien Arena 2008 -Version: 20090115 +Summary: Data files for Alien Arena 2009 +Version: 20090730 Release: 1%{?dist} License: Redistributable, no modification permitted Group: Amusements/Games URL: http://icculus.org/alienarena/ # We need to get this from SVN -# mkdir alienarena-data-20090115 && cd alienarena-data-20090115 -# svn co svn://svn.icculus.org/alienarena/tags/7.21/arena -# svn co svn://svn.icculus.org/alienarena/tags/7.21/botinfo -# svn co svn://svn.icculus.org/alienarena/tags/7.21/data1 +# mkdir alienarena-data-20090730 && cd alienarena-data-20090730 +# svn co svn://svn.icculus.org/alienarena/tags/7.30/arena +# svn co svn://svn.icculus.org/alienarena/tags/7.30/botinfo +# svn co svn://svn.icculus.org/alienarena/tags/7.30/data1 # cd ../ -# find alienarena-20090115 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-data-20090115.tar.bz2 alienarena-data-20090115 +# find alienarena-data-20090730 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-data-20090730.tar.bz2 alienarena-data-20090730 Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description -Data files (audio, maps, etc) for Alien Arena 2008. +Data files (audio, maps, etc) for Alien Arena 2009. %prep @@ -45,6 +45,15 @@ rm -rf %{buildroot} %{_datadir}/alienarena/ %changelog +* Thu Jul 30 2009 Tom "spot" Callaway 20090730-1 +- update to 20090730 (7.30) + +* Fri Jul 24 2009 Fedora Release Engineering - 20090115-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 20090115-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Jan 30 2009 Tom "spot" Callaway 20090115-1 - update to 20090115 (7.21) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/F-10/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:43:13 -0000 1.5 +++ sources 31 Jul 2009 16:26:14 -0000 1.6 @@ -1 +1 @@ -85fcf79affa2ac14a7d1983cf02990fd alienarena-data-20090115.tar.bz2 +db441b9856f8fb51eac472232f54e0ad alienarena-data-20090730.tar.bz2 From spot at fedoraproject.org Fri Jul 31 16:26:14 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:26:14 +0000 (UTC) Subject: rpms/alienarena-data/F-11 alienarena-data.spec, 1.7, 1.8 sources, 1.5, 1.6 Message-ID: <20090731162614.A07D511C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena-data/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4075/F-11 Modified Files: alienarena-data.spec sources Log Message: update data to 7.30 Index: alienarena-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/F-11/alienarena-data.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- alienarena-data.spec 24 Feb 2009 00:34:32 -0000 1.7 +++ alienarena-data.spec 31 Jul 2009 16:26:14 -0000 1.8 @@ -1,25 +1,25 @@ Name: alienarena-data -Summary: Data files for Alien Arena 2008 -Version: 20090115 -Release: 2%{?dist} +Summary: Data files for Alien Arena 2009 +Version: 20090730 +Release: 1%{?dist} License: Redistributable, no modification permitted Group: Amusements/Games URL: http://icculus.org/alienarena/ # We need to get this from SVN -# mkdir alienarena-data-20090115 && cd alienarena-data-20090115 -# svn co svn://svn.icculus.org/alienarena/tags/7.21/arena -# svn co svn://svn.icculus.org/alienarena/tags/7.21/botinfo -# svn co svn://svn.icculus.org/alienarena/tags/7.21/data1 +# mkdir alienarena-data-20090730 && cd alienarena-data-20090730 +# svn co svn://svn.icculus.org/alienarena/tags/7.30/arena +# svn co svn://svn.icculus.org/alienarena/tags/7.30/botinfo +# svn co svn://svn.icculus.org/alienarena/tags/7.30/data1 # cd ../ -# find alienarena-20090115 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-data-20090115.tar.bz2 alienarena-data-20090115 +# find alienarena-data-20090730 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-data-20090730.tar.bz2 alienarena-data-20090730 Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description -Data files (audio, maps, etc) for Alien Arena 2008. +Data files (audio, maps, etc) for Alien Arena 2009. %prep @@ -45,6 +45,12 @@ rm -rf %{buildroot} %{_datadir}/alienarena/ %changelog +* Thu Jul 30 2009 Tom "spot" Callaway 20090730-1 +- update to 20090730 (7.30) + +* Fri Jul 24 2009 Fedora Release Engineering - 20090115-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 20090115-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:43:14 -0000 1.5 +++ sources 31 Jul 2009 16:26:14 -0000 1.6 @@ -1 +1 @@ -85fcf79affa2ac14a7d1983cf02990fd alienarena-data-20090115.tar.bz2 +db441b9856f8fb51eac472232f54e0ad alienarena-data-20090730.tar.bz2 From spot at fedoraproject.org Fri Jul 31 16:26:15 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 16:26:15 +0000 (UTC) Subject: rpms/alienarena-data/devel .cvsignore, 1.5, 1.6 alienarena-data.spec, 1.8, 1.9 sources, 1.5, 1.6 Message-ID: <20090731162615.0949E11C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/pkgs/rpms/alienarena-data/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4075/devel Modified Files: .cvsignore alienarena-data.spec sources Log Message: update data to 7.30 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/devel/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 31 Jan 2009 01:43:14 -0000 1.5 +++ .cvsignore 31 Jul 2009 16:26:14 -0000 1.6 @@ -1 +1 @@ -alienarena-data-20090115.tar.bz2 +alienarena-data-20090730.tar.bz2 Index: alienarena-data.spec =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/devel/alienarena-data.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- alienarena-data.spec 24 Jul 2009 16:43:27 -0000 1.8 +++ alienarena-data.spec 31 Jul 2009 16:26:14 -0000 1.9 @@ -1,25 +1,25 @@ Name: alienarena-data -Summary: Data files for Alien Arena 2008 -Version: 20090115 -Release: 3%{?dist} +Summary: Data files for Alien Arena 2009 +Version: 20090730 +Release: 1%{?dist} License: Redistributable, no modification permitted Group: Amusements/Games URL: http://icculus.org/alienarena/ # We need to get this from SVN -# mkdir alienarena-data-20090115 && cd alienarena-data-20090115 -# svn co svn://svn.icculus.org/alienarena/tags/7.21/arena -# svn co svn://svn.icculus.org/alienarena/tags/7.21/botinfo -# svn co svn://svn.icculus.org/alienarena/tags/7.21/data1 +# mkdir alienarena-data-20090730 && cd alienarena-data-20090730 +# svn co svn://svn.icculus.org/alienarena/tags/7.30/arena +# svn co svn://svn.icculus.org/alienarena/tags/7.30/botinfo +# svn co svn://svn.icculus.org/alienarena/tags/7.30/data1 # cd ../ -# find alienarena-20090115 -depth -name .svn -type d -exec rm -rf {} \; -# tar -cvjf alienarena-data-20090115.tar.bz2 alienarena-data-20090115 +# find alienarena-data-20090730 -depth -name .svn -type d -exec rm -rf {} \; +# tar -cvjf alienarena-data-20090730.tar.bz2 alienarena-data-20090730 Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %description -Data files (audio, maps, etc) for Alien Arena 2008. +Data files (audio, maps, etc) for Alien Arena 2009. %prep @@ -45,6 +45,9 @@ rm -rf %{buildroot} %{_datadir}/alienarena/ %changelog +* Thu Jul 30 2009 Tom "spot" Callaway 20090730-1 +- update to 20090730 (7.30) + * Fri Jul 24 2009 Fedora Release Engineering - 20090115-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/alienarena-data/devel/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 31 Jan 2009 01:43:14 -0000 1.5 +++ sources 31 Jul 2009 16:26:14 -0000 1.6 @@ -1 +1 @@ -85fcf79affa2ac14a7d1983cf02990fd alienarena-data-20090115.tar.bz2 +db441b9856f8fb51eac472232f54e0ad alienarena-data-20090730.tar.bz2 From twaugh at fedoraproject.org Fri Jul 31 16:38:18 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 31 Jul 2009 16:38:18 +0000 (UTC) Subject: rpms/gutenprint/F-11 gutenprint-O6.patch, 1.3, 1.4 gutenprint.spec, 1.50, 1.51 Message-ID: <20090731163818.D71A911C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9042 Modified Files: gutenprint-O6.patch gutenprint.spec Log Message: * Fri Jul 31 2009 Tim Waugh 5.2.4-1 - 5.2.4. Re-enabled compiler optimization for ppc64. gutenprint-O6.patch: configure | 415 ----------------------------------------------------------- configure.ac | 21 -- 2 files changed, 436 deletions(-) Index: gutenprint-O6.patch =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint-O6.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gutenprint-O6.patch 20 Nov 2008 17:15:23 -0000 1.3 +++ gutenprint-O6.patch 31 Jul 2009 16:38:18 -0000 1.4 @@ -1,6 +1,6 @@ -diff -up gutenprint-5.2.2/configure.ac.O6 gutenprint-5.2.2/configure.ac ---- gutenprint-5.2.2/configure.ac.O6 2008-11-19 11:23:29.000000000 +0000 -+++ gutenprint-5.2.2/configure.ac 2008-11-19 11:24:35.000000000 +0000 +diff -up gutenprint-5.2.4/configure.ac.O6 gutenprint-5.2.4/configure.ac +--- gutenprint-5.2.4/configure.ac.O6 2009-07-31 17:29:06.175961565 +0100 ++++ gutenprint-5.2.4/configure.ac 2009-07-31 17:29:32.117962246 +0100 @@ -625,27 +625,6 @@ AH_TEMPLATE(PKGMODULEDIR,, [Package modu PKGMODULEDIR="${PACKAGE_LIB_DIR}/${GUTENPRINT_RELEASE_VERSION}/modules" AC_DEFINE_UNQUOTED(PKGMODULEDIR, ["$PKGMODULEDIR"]) @@ -29,10 +29,10 @@ diff -up gutenprint-5.2.2/configure.ac.O AC_SUBST(GNUCFLAGS) AH_TEMPLATE([HAVE_GCC_ATTRIBUTES], -diff -up gutenprint-5.2.2/configure.O6 gutenprint-5.2.2/configure ---- gutenprint-5.2.2/configure.O6 2008-11-19 11:23:32.000000000 +0000 -+++ gutenprint-5.2.2/configure 2008-11-19 11:24:49.000000000 +0000 -@@ -26509,410 +26509,6 @@ cat >>confdefs.h <<_ACEOF +diff -up gutenprint-5.2.4/configure.O6 gutenprint-5.2.4/configure +--- gutenprint-5.2.4/configure.O6 2009-07-31 17:29:39.376961485 +0100 ++++ gutenprint-5.2.4/configure 2009-07-31 17:31:08.881961477 +0100 +@@ -17925,421 +17925,6 @@ cat >>confdefs.h <<_ACEOF _ACEOF @@ -40,8 +40,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -Wall -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -65,26 +65,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -98,8 +99,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -pedantic -Waggregate-return -Wcast-qual -Wshadow -Wredundant-decls ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -123,26 +124,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -155,8 +157,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - fi - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -180,26 +182,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -212,8 +215,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O6 -O3 -O2 -O1 -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -237,26 +240,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -271,8 +275,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -else - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -296,26 +300,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -328,8 +333,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -353,26 +358,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -387,8 +393,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -fi -if test x$ENABLE_PROFILE = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 --echo $ECHO_N "checking if ${CC} supports -pg... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 +-$as_echo_n "checking if ${CC} supports -pg... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -pg" - cat >conftest.$ac_ext <<_ACEOF @@ -412,26 +418,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -440,6 +447,10 @@ diff -up gutenprint-5.2.2/configure.O6 g - CFLAGS="${stp_newCFLAGS}" - -fi - - - +- +- +- +- + { $as_echo "$as_me:$LINENO: checking if $CC supports __attribute__ syntax" >&5 + $as_echo_n "checking if $CC supports __attribute__ syntax... " >&6; } + cat >conftest.$ac_ext <<_ACEOF Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint.spec,v retrieving revision 1.50 retrieving revision 1.51 diff -u -p -r1.50 -r1.51 --- gutenprint.spec 30 Jul 2009 10:29:13 -0000 1.50 +++ gutenprint.spec 31 Jul 2009 16:38:18 -0000 1.51 @@ -3,8 +3,8 @@ Name: gutenprint Summary: Printer Drivers Package. -Version: 5.2.3 -Release: 8%{?dist} +Version: 5.2.4 +Release: 1%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -138,9 +138,6 @@ Epson, HP and compatible printers.. %patch2 -p1 -b .selinux %build -%ifarch ppc64 -export CFLAGS="${CFLAGS} -O0" -%endif %configure --disable-static --disable-dependency-tracking \ --with-foomatic --with-ghostscript \ --disable-libgutenprintui --without-gimp \ @@ -264,6 +261,9 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Fri Jul 31 2009 Tim Waugh 5.2.4-1 +- 5.2.4. Re-enabled compiler optimization for ppc64. + * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Don't show output when upgrading cups sub-package (bug #507324). - Split documentation into doc sub-package (bug #492452). From twaugh at fedoraproject.org Fri Jul 31 16:41:26 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 31 Jul 2009 16:41:26 +0000 (UTC) Subject: rpms/gutenprint/F-11 .cvsignore, 1.7, 1.8 gutenprint.spec, 1.51, 1.52 sources, 1.7, 1.8 Message-ID: <20090731164126.5C55A11C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10149 Modified Files: .cvsignore gutenprint.spec sources Log Message: Upload the tarball. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 23 Dec 2008 11:33:41 -0000 1.7 +++ .cvsignore 31 Jul 2009 16:41:26 -0000 1.8 @@ -4,3 +4,4 @@ gutenprint-5.0.1.tar.bz2 gutenprint-5.0.2.tar.bz2 gutenprint-5.2.2.tar.bz2 gutenprint-5.2.3.tar.bz2 +gutenprint-5.2.4.tar.bz2 Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/gutenprint.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gutenprint.spec 31 Jul 2009 16:38:18 -0000 1.51 +++ gutenprint.spec 31 Jul 2009 16:41:26 -0000 1.52 @@ -4,7 +4,7 @@ Name: gutenprint Summary: Printer Drivers Package. Version: 5.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -261,7 +261,7 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog -* Fri Jul 31 2009 Tim Waugh 5.2.4-1 +* Fri Jul 31 2009 Tim Waugh 5.2.4-2 - 5.2.4. Re-enabled compiler optimization for ppc64. * Thu Jul 30 2009 Tim Waugh 5.2.3-8 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-11/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Dec 2008 11:33:41 -0000 1.7 +++ sources 31 Jul 2009 16:41:26 -0000 1.8 @@ -1 +1 @@ -4db2605739b3cbc6fc72bb1665731aeb gutenprint-5.2.3.tar.bz2 +4b0ecc20f3fc68e67c76991cc8516fe7 gutenprint-5.2.4.tar.bz2 From twaugh at fedoraproject.org Fri Jul 31 16:52:29 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 31 Jul 2009 16:52:29 +0000 (UTC) Subject: rpms/gutenprint/devel .cvsignore, 1.7, 1.8 gutenprint-O6.patch, 1.3, 1.4 gutenprint.spec, 1.51, 1.52 sources, 1.7, 1.8 Message-ID: <20090731165229.E03A511C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13838 Modified Files: .cvsignore gutenprint-O6.patch gutenprint.spec sources Log Message: * Fri Jul 31 2009 Tim Waugh 5.2.4-2 - 5.2.4. Re-enabled compiler optimization for ppc64. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 23 Dec 2008 11:33:41 -0000 1.7 +++ .cvsignore 31 Jul 2009 16:52:29 -0000 1.8 @@ -4,3 +4,4 @@ gutenprint-5.0.1.tar.bz2 gutenprint-5.0.2.tar.bz2 gutenprint-5.2.2.tar.bz2 gutenprint-5.2.3.tar.bz2 +gutenprint-5.2.4.tar.bz2 gutenprint-O6.patch: configure | 415 ----------------------------------------------------------- configure.ac | 21 -- 2 files changed, 436 deletions(-) Index: gutenprint-O6.patch =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint-O6.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gutenprint-O6.patch 20 Nov 2008 17:15:23 -0000 1.3 +++ gutenprint-O6.patch 31 Jul 2009 16:52:29 -0000 1.4 @@ -1,6 +1,6 @@ -diff -up gutenprint-5.2.2/configure.ac.O6 gutenprint-5.2.2/configure.ac ---- gutenprint-5.2.2/configure.ac.O6 2008-11-19 11:23:29.000000000 +0000 -+++ gutenprint-5.2.2/configure.ac 2008-11-19 11:24:35.000000000 +0000 +diff -up gutenprint-5.2.4/configure.ac.O6 gutenprint-5.2.4/configure.ac +--- gutenprint-5.2.4/configure.ac.O6 2009-07-31 17:29:06.175961565 +0100 ++++ gutenprint-5.2.4/configure.ac 2009-07-31 17:29:32.117962246 +0100 @@ -625,27 +625,6 @@ AH_TEMPLATE(PKGMODULEDIR,, [Package modu PKGMODULEDIR="${PACKAGE_LIB_DIR}/${GUTENPRINT_RELEASE_VERSION}/modules" AC_DEFINE_UNQUOTED(PKGMODULEDIR, ["$PKGMODULEDIR"]) @@ -29,10 +29,10 @@ diff -up gutenprint-5.2.2/configure.ac.O AC_SUBST(GNUCFLAGS) AH_TEMPLATE([HAVE_GCC_ATTRIBUTES], -diff -up gutenprint-5.2.2/configure.O6 gutenprint-5.2.2/configure ---- gutenprint-5.2.2/configure.O6 2008-11-19 11:23:32.000000000 +0000 -+++ gutenprint-5.2.2/configure 2008-11-19 11:24:49.000000000 +0000 -@@ -26509,410 +26509,6 @@ cat >>confdefs.h <<_ACEOF +diff -up gutenprint-5.2.4/configure.O6 gutenprint-5.2.4/configure +--- gutenprint-5.2.4/configure.O6 2009-07-31 17:29:39.376961485 +0100 ++++ gutenprint-5.2.4/configure 2009-07-31 17:31:08.881961477 +0100 +@@ -17925,421 +17925,6 @@ cat >>confdefs.h <<_ACEOF _ACEOF @@ -40,8 +40,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -Wall -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -65,26 +65,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -98,8 +99,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -pedantic -Waggregate-return -Wcast-qual -Wshadow -Wredundant-decls ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -123,26 +124,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -155,8 +157,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - fi - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -180,26 +182,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -212,8 +215,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O6 -O3 -O2 -O1 -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -237,26 +240,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -271,8 +275,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -else - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -296,26 +300,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -328,8 +333,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -353,26 +358,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -387,8 +393,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -fi -if test x$ENABLE_PROFILE = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 --echo $ECHO_N "checking if ${CC} supports -pg... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 +-$as_echo_n "checking if ${CC} supports -pg... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -pg" - cat >conftest.$ac_ext <<_ACEOF @@ -412,26 +418,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -440,6 +447,10 @@ diff -up gutenprint-5.2.2/configure.O6 g - CFLAGS="${stp_newCFLAGS}" - -fi - - - +- +- +- +- + { $as_echo "$as_me:$LINENO: checking if $CC supports __attribute__ syntax" >&5 + $as_echo_n "checking if $CC supports __attribute__ syntax... " >&6; } + cat >conftest.$ac_ext <<_ACEOF Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/gutenprint.spec,v retrieving revision 1.51 retrieving revision 1.52 diff -u -p -r1.51 -r1.52 --- gutenprint.spec 30 Jul 2009 10:29:28 -0000 1.51 +++ gutenprint.spec 31 Jul 2009 16:52:29 -0000 1.52 @@ -3,8 +3,8 @@ Name: gutenprint Summary: Printer Drivers Package. -Version: 5.2.3 -Release: 8%{?dist} +Version: 5.2.4 +Release: 2%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -138,9 +138,6 @@ Epson, HP and compatible printers.. %patch2 -p1 -b .selinux %build -%ifarch ppc64 -export CFLAGS="${CFLAGS} -O0" -%endif %configure --disable-static --disable-dependency-tracking \ --with-foomatic --with-ghostscript \ --disable-libgutenprintui --without-gimp \ @@ -264,6 +261,9 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Fri Jul 31 2009 Tim Waugh 5.2.4-2 +- 5.2.4. Re-enabled compiler optimization for ppc64. + * Thu Jul 30 2009 Tim Waugh 5.2.3-8 - Don't show output when upgrading cups sub-package (bug #507324). - Split documentation into doc sub-package (bug #492452). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/devel/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Dec 2008 11:33:41 -0000 1.7 +++ sources 31 Jul 2009 16:52:29 -0000 1.8 @@ -1 +1 @@ -4db2605739b3cbc6fc72bb1665731aeb gutenprint-5.2.3.tar.bz2 +4b0ecc20f3fc68e67c76991cc8516fe7 gutenprint-5.2.4.tar.bz2 From silfreed at fedoraproject.org Fri Jul 31 16:55:34 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Fri, 31 Jul 2009 16:55:34 +0000 (UTC) Subject: rpms/libconcord/devel libconcord-0.21-mime-type-def.patch, 1.3, 1.4 libconcord.spec, 1.10, 1.11 Message-ID: <20090731165534.2C0FA11C00CE@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14772 Modified Files: libconcord-0.21-mime-type-def.patch libconcord.spec Log Message: * Fri Jul 31 2009 Douglas E. Warner 0.21-7 - updating mime patch with different source: http://stuff.onse.fi/concordance-mime2.patch https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 libconcord-0.21-mime-type-def.patch: Makefile.am | 22 Makefile.in | 281 aclocal.m4 |10632 ++++++++++-------- autom4te.cache/output.1 |28039 ++++++++++++++++++++---------------------------- autom4te.cache/output.2 |18176 +++++++++++++++++++++++++++++++ autom4te.cache/requests | 207 autom4te.cache/traces.1 | 365 autom4te.cache/traces.2 | 2376 ++++ config.guess | 51 config.h.in | 7 config.h.in~ | 58 config.sub | 54 configure |26101 ++++++++++++++++++-------------------------- configure.ac | 17 depcomp | 87 install-sh | 5 libconcord.xml | 15 ltmain.sh |13228 ++++++++++++---------- missing | 49 19 files changed, 57892 insertions(+), 41878 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.3 -r 1.4 libconcord-0.21-mime-type-def.patchIndex: libconcord-0.21-mime-type-def.patch =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/devel/libconcord-0.21-mime-type-def.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- libconcord-0.21-mime-type-def.patch 30 Jul 2009 18:16:22 -0000 1.3 +++ libconcord-0.21-mime-type-def.patch 31 Jul 2009 16:55:32 -0000 1.4 @@ -1,6 +1,6 @@ diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 --- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 -+++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 ++++ concordance-0.21/libconcord/aclocal.m4 2009-07-31 12:49:14.000000000 -0400 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.11 -*- Autoconf -*- @@ -11,7 +11,7 @@ diff -ruN concordance-0.21-orig/libconco # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -@@ -13,7 +13,7 @@ +@@ -13,108 +13,194 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl @@ -20,3408 +20,11652 @@ diff -ruN concordance-0.21-orig/libconco [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. -@@ -21,7 +21,7 @@ + To do so, use the procedure documented by the package, typically `autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ++# ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is free software; the Free Software Foundation gives ++# unlimited permission to copy and/or distribute it, with or without ++# modifications, as long as this notice is preserved. ++ ++m4_define([_LT_COPYING], [dnl ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is part of GNU Libtool. ++# ++# GNU Libtool is free software; you can redistribute it and/or ++# modify it under the terms of the GNU General Public License as ++# published by the Free Software Foundation; either version 2 of ++# the License, or (at your option) any later version. ++# ++# As a special exception to the GNU General Public License, ++# if you distribute this file as part of a program or library that ++# is built using GNU Libtool, you may include this file under the ++# same distribution terms that you use for the rest of that program. ++# ++# GNU Libtool is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with GNU Libtool; see the file COPYING. If not, a copy ++# can be downloaded from http://www.gnu.org/licenses/gpl.html, or ++# obtained by writing to the Free Software Foundation, Inc., ++# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ++]) -# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL -+# serial 52 AC_PROG_LIBTOOL - - - # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -@@ -645,6 +645,7 @@ - esac - ;; - *64-bit*) -+ libsuff=64 - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" -@@ -1707,11 +1708,13 @@ - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` -- sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi ++# serial 56 LT_INIT - # We used to test for /lib/ld.so.1 and disable shared libraries on -@@ -1723,18 +1726,6 @@ - dynamic_linker='GNU/Linux ld.so' - ;; --netbsdelf*-gnu) -- version_type=linux -- need_lib_prefix=no -- need_version=no -- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -- soname_spec='${libname}${release}${shared_ext}$major' -- shlibpath_var=LD_LIBRARY_PATH -- shlibpath_overrides_runpath=no -- hardcode_into_libs=yes -- dynamic_linker='NetBSD ld.elf_so' -- ;; +-# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) +-# ----------------------------------------------------------- +-# If this macro is not defined by Autoconf, define it here. +-m4_ifdef([AC_PROVIDE_IFELSE], +- [], +- [m4_define([AC_PROVIDE_IFELSE], +- [m4_ifdef([AC_PROVIDE_$1], +- [$2], [$3])])]) ++# LT_PREREQ(VERSION) ++# ------------------ ++# Complain and exit if this libtool version is less that VERSION. ++m4_defun([LT_PREREQ], ++[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, ++ [m4_default([$3], ++ [m4_fatal([Libtool version $1 or higher is required], ++ 63)])], ++ [$2])]) + + +-# AC_PROG_LIBTOOL +-# --------------- +-AC_DEFUN([AC_PROG_LIBTOOL], +-[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl +-dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX +-dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. +- AC_PROVIDE_IFELSE([AC_PROG_CXX], +- [AC_LIBTOOL_CXX], +- [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX +- ])]) +-dnl And a similar setup for Fortran 77 support +- AC_PROVIDE_IFELSE([AC_PROG_F77], +- [AC_LIBTOOL_F77], +- [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 +-])]) - - netbsd*) - version_type=sunos - need_lib_prefix=no -@@ -2516,7 +2507,7 @@ - lt_cv_deplibs_check_method=pass_all - ;; - --netbsd* | netbsdelf*-gnu) -+netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else -@@ -3523,7 +3514,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= -@@ -5215,7 +5206,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in -@@ -5592,9 +5583,6 @@ - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - ;; -- linux* | k*bsd*-gnu) -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no -- ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; -@@ -5803,13 +5791,12 @@ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - [...112526 lines suppressed...] + NMEDIT = @NMEDIT@ ++OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ ++OTOOL = @OTOOL@ ++OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ +@@ -157,6 +182,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ @@ -6347,7 +107519,24 @@ diff -ruN concordance-0.21-orig/libconco VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ -@@ -220,6 +241,14 @@ +@@ -164,7 +190,7 @@ + abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ +-ac_ct_F77 = @ac_ct_F77@ ++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -195,6 +221,7 @@ + libexecdir = @libexecdir@ + localedir = @localedir@ + localstatedir = @localstatedir@ ++lt_ECHO = @lt_ECHO@ + mandir = @mandir@ + mkdir_p = @mkdir_p@ + oldincludedir = @oldincludedir@ +@@ -220,6 +247,14 @@ include_HEADERS = libconcord.h libconcord_la_LDFLAGS = -version-info 1:0:0 -lusb libconcord_la_LADD = usb @@ -6362,7 +107551,7 @@ diff -ruN concordance-0.21-orig/libconco all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am -@@ -231,15 +260,15 @@ +@@ -231,15 +266,15 @@ @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -6383,7 +107572,7 @@ diff -ruN concordance-0.21-orig/libconco .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ -@@ -255,9 +284,10 @@ +@@ -255,9 +290,10 @@ $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) @@ -6396,7 +107585,7 @@ diff -ruN concordance-0.21-orig/libconco config.h: stamp-h1 @if test ! -f $@; then \ -@@ -269,7 +299,7 @@ +@@ -269,7 +305,7 @@ @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) @@ -6405,7 +107594,7 @@ diff -ruN concordance-0.21-orig/libconco rm -f stamp-h1 touch $@ -@@ -278,20 +308,24 @@ +@@ -278,20 +314,24 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @@ -6439,7 +107628,7 @@ diff -ruN concordance-0.21-orig/libconco done clean-libLTLIBRARIES: -@@ -321,31 +355,31 @@ +@@ -321,31 +361,31 @@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -6477,7 +107666,7 @@ diff -ruN concordance-0.21-orig/libconco mostlyclean-libtool: -rm -f *.lo -@@ -354,38 +388,61 @@ +@@ -354,38 +394,61 @@ -rm -rf .libs _libs distclean-libtool: @@ -6551,7 +107740,7 @@ diff -ruN concordance-0.21-orig/libconco here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ -@@ -393,36 +450,41 @@ +@@ -393,36 +456,41 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ @@ -6602,7 +107791,7 @@ diff -ruN concordance-0.21-orig/libconco @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ -@@ -438,21 +500,26 @@ +@@ -438,21 +506,26 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ @@ -6635,7 +107824,7 @@ diff -ruN concordance-0.21-orig/libconco dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) -@@ -465,6 +532,10 @@ +@@ -465,6 +538,10 @@ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) @@ -6646,7 +107835,7 @@ diff -ruN concordance-0.21-orig/libconco dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) -@@ -493,6 +564,8 @@ +@@ -493,6 +570,8 @@ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ @@ -6655,7 +107844,7 @@ diff -ruN concordance-0.21-orig/libconco *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ -@@ -504,9 +577,11 @@ +@@ -504,9 +583,11 @@ mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) @@ -6668,7 +107857,7 @@ diff -ruN concordance-0.21-orig/libconco && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ -@@ -528,13 +603,15 @@ +@@ -528,13 +609,15 @@ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ @@ -6686,7 +107875,7 @@ diff -ruN concordance-0.21-orig/libconco && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ -@@ -553,9 +630,9 @@ +@@ -553,9 +636,9 @@ exit 1; } >&2 check-am: all-am check: check-am @@ -6698,7 +107887,7 @@ diff -ruN concordance-0.21-orig/libconco test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am -@@ -578,6 +655,7 @@ +@@ -578,6 +661,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) @@ -6706,7 +107895,7 @@ diff -ruN concordance-0.21-orig/libconco maintainer-clean-generic: @echo "This command is intended for maintainers to use" -@@ -600,26 +678,39 @@ +@@ -600,26 +684,39 @@ html: html-am @@ -6748,7 +107937,7 @@ diff -ruN concordance-0.21-orig/libconco installcheck-am: maintainer-clean: maintainer-clean-am -@@ -642,27 +733,30 @@ +@@ -642,27 +739,30 @@ ps-am: @@ -6793,7 +107982,7 @@ diff -ruN concordance-0.21-orig/libconco # udev and friends support -@@ -694,6 +788,17 @@ +@@ -694,6 +794,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms @@ -6813,7 +108002,7 @@ diff -ruN concordance-0.21-orig/libconco .NOEXPORT: diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing --- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 -+++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 ++++ concordance-0.21/libconcord/missing 2009-07-31 12:49:18.000000000 -0400 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/devel/libconcord.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- libconcord.spec 30 Jul 2009 18:16:23 -0000 1.10 +++ libconcord.spec 31 Jul 2009 16:55:33 -0000 1.11 @@ -3,7 +3,7 @@ Name: libconcord Version: 0.21 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries @@ -173,6 +173,11 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 31 2009 Douglas E. Warner 0.21-7 +- updating mime patch with different source: + http://stuff.onse.fi/concordance-mime2.patch + https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 + * Thu Jul 30 2009 Douglas E. Warner 0.21-6 - updated patch w/ autoreconf run From silfreed at fedoraproject.org Fri Jul 31 17:08:50 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Fri, 31 Jul 2009 17:08:50 +0000 (UTC) Subject: rpms/libconcord/F-10 libconcord-0.21-mime-type-def.patch, 1.1, 1.2 libconcord.spec, 1.5, 1.6 Message-ID: <20090731170850.DA8F011C00CE@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19772 Modified Files: libconcord-0.21-mime-type-def.patch libconcord.spec Log Message: * Fri Jul 31 2009 Douglas E. Warner 0.21-4 - updating mime patch with different source: http://stuff.onse.fi/concordance-mime2.patch https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 libconcord-0.21-mime-type-def.patch: Makefile.am | 22 Makefile.in | 281 aclocal.m4 |10632 ++++++++++-------- autom4te.cache/output.1 |28039 ++++++++++++++++++++---------------------------- autom4te.cache/output.2 |18176 +++++++++++++++++++++++++++++++ autom4te.cache/requests | 207 autom4te.cache/traces.1 | 365 autom4te.cache/traces.2 | 2376 ++++ config.guess | 51 config.h.in | 7 config.h.in~ | 58 config.sub | 54 configure |26101 ++++++++++++++++++-------------------------- configure.ac | 17 depcomp | 87 install-sh | 5 libconcord.xml | 15 ltmain.sh |13228 ++++++++++++---------- missing | 49 19 files changed, 57892 insertions(+), 41878 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.1 -r 1.2 libconcord-0.21-mime-type-def.patchIndex: libconcord-0.21-mime-type-def.patch =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-10/libconcord-0.21-mime-type-def.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libconcord-0.21-mime-type-def.patch 30 Jul 2009 18:32:28 -0000 1.1 +++ libconcord-0.21-mime-type-def.patch 31 Jul 2009 17:08:49 -0000 1.2 @@ -1,6 +1,6 @@ diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 --- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 -+++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 ++++ concordance-0.21/libconcord/aclocal.m4 2009-07-31 12:49:14.000000000 -0400 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.11 -*- Autoconf -*- @@ -11,7 +11,7 @@ diff -ruN concordance-0.21-orig/libconco # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -@@ -13,7 +13,7 @@ +@@ -13,108 +13,194 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl @@ -20,3408 +20,11652 @@ diff -ruN concordance-0.21-orig/libconco [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. -@@ -21,7 +21,7 @@ + To do so, use the procedure documented by the package, typically `autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ++# ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is free software; the Free Software Foundation gives ++# unlimited permission to copy and/or distribute it, with or without ++# modifications, as long as this notice is preserved. ++ ++m4_define([_LT_COPYING], [dnl ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is part of GNU Libtool. ++# ++# GNU Libtool is free software; you can redistribute it and/or ++# modify it under the terms of the GNU General Public License as ++# published by the Free Software Foundation; either version 2 of ++# the License, or (at your option) any later version. ++# ++# As a special exception to the GNU General Public License, ++# if you distribute this file as part of a program or library that ++# is built using GNU Libtool, you may include this file under the ++# same distribution terms that you use for the rest of that program. ++# ++# GNU Libtool is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with GNU Libtool; see the file COPYING. If not, a copy ++# can be downloaded from http://www.gnu.org/licenses/gpl.html, or ++# obtained by writing to the Free Software Foundation, Inc., ++# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ++]) -# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL -+# serial 52 AC_PROG_LIBTOOL - - - # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -@@ -645,6 +645,7 @@ - esac - ;; - *64-bit*) -+ libsuff=64 - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" -@@ -1707,11 +1708,13 @@ - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` -- sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi ++# serial 56 LT_INIT - # We used to test for /lib/ld.so.1 and disable shared libraries on -@@ -1723,18 +1726,6 @@ - dynamic_linker='GNU/Linux ld.so' - ;; --netbsdelf*-gnu) -- version_type=linux -- need_lib_prefix=no -- need_version=no -- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -- soname_spec='${libname}${release}${shared_ext}$major' -- shlibpath_var=LD_LIBRARY_PATH -- shlibpath_overrides_runpath=no -- hardcode_into_libs=yes -- dynamic_linker='NetBSD ld.elf_so' -- ;; +-# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) +-# ----------------------------------------------------------- +-# If this macro is not defined by Autoconf, define it here. +-m4_ifdef([AC_PROVIDE_IFELSE], +- [], +- [m4_define([AC_PROVIDE_IFELSE], +- [m4_ifdef([AC_PROVIDE_$1], +- [$2], [$3])])]) ++# LT_PREREQ(VERSION) ++# ------------------ ++# Complain and exit if this libtool version is less that VERSION. ++m4_defun([LT_PREREQ], ++[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, ++ [m4_default([$3], ++ [m4_fatal([Libtool version $1 or higher is required], ++ 63)])], ++ [$2])]) + + +-# AC_PROG_LIBTOOL +-# --------------- +-AC_DEFUN([AC_PROG_LIBTOOL], +-[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl +-dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX +-dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. +- AC_PROVIDE_IFELSE([AC_PROG_CXX], +- [AC_LIBTOOL_CXX], +- [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX +- ])]) +-dnl And a similar setup for Fortran 77 support +- AC_PROVIDE_IFELSE([AC_PROG_F77], +- [AC_LIBTOOL_F77], +- [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 +-])]) - - netbsd*) - version_type=sunos - need_lib_prefix=no -@@ -2516,7 +2507,7 @@ - lt_cv_deplibs_check_method=pass_all - ;; - --netbsd* | netbsdelf*-gnu) -+netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else -@@ -3523,7 +3514,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= -@@ -5215,7 +5206,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in -@@ -5592,9 +5583,6 @@ - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - ;; -- linux* | k*bsd*-gnu) -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no -- ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; -@@ -5803,13 +5791,12 @@ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - [...112526 lines suppressed...] + NMEDIT = @NMEDIT@ ++OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ ++OTOOL = @OTOOL@ ++OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ +@@ -157,6 +182,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ @@ -6347,7 +107519,24 @@ diff -ruN concordance-0.21-orig/libconco VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ -@@ -220,6 +241,14 @@ +@@ -164,7 +190,7 @@ + abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ +-ac_ct_F77 = @ac_ct_F77@ ++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -195,6 +221,7 @@ + libexecdir = @libexecdir@ + localedir = @localedir@ + localstatedir = @localstatedir@ ++lt_ECHO = @lt_ECHO@ + mandir = @mandir@ + mkdir_p = @mkdir_p@ + oldincludedir = @oldincludedir@ +@@ -220,6 +247,14 @@ include_HEADERS = libconcord.h libconcord_la_LDFLAGS = -version-info 1:0:0 -lusb libconcord_la_LADD = usb @@ -6362,7 +107551,7 @@ diff -ruN concordance-0.21-orig/libconco all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am -@@ -231,15 +260,15 @@ +@@ -231,15 +266,15 @@ @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -6383,7 +107572,7 @@ diff -ruN concordance-0.21-orig/libconco .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ -@@ -255,9 +284,10 @@ +@@ -255,9 +290,10 @@ $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) @@ -6396,7 +107585,7 @@ diff -ruN concordance-0.21-orig/libconco config.h: stamp-h1 @if test ! -f $@; then \ -@@ -269,7 +299,7 @@ +@@ -269,7 +305,7 @@ @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) @@ -6405,7 +107594,7 @@ diff -ruN concordance-0.21-orig/libconco rm -f stamp-h1 touch $@ -@@ -278,20 +308,24 @@ +@@ -278,20 +314,24 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @@ -6439,7 +107628,7 @@ diff -ruN concordance-0.21-orig/libconco done clean-libLTLIBRARIES: -@@ -321,31 +355,31 @@ +@@ -321,31 +361,31 @@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -6477,7 +107666,7 @@ diff -ruN concordance-0.21-orig/libconco mostlyclean-libtool: -rm -f *.lo -@@ -354,38 +388,61 @@ +@@ -354,38 +394,61 @@ -rm -rf .libs _libs distclean-libtool: @@ -6551,7 +107740,7 @@ diff -ruN concordance-0.21-orig/libconco here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ -@@ -393,36 +450,41 @@ +@@ -393,36 +456,41 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ @@ -6602,7 +107791,7 @@ diff -ruN concordance-0.21-orig/libconco @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ -@@ -438,21 +500,26 @@ +@@ -438,21 +506,26 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ @@ -6635,7 +107824,7 @@ diff -ruN concordance-0.21-orig/libconco dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) -@@ -465,6 +532,10 @@ +@@ -465,6 +538,10 @@ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) @@ -6646,7 +107835,7 @@ diff -ruN concordance-0.21-orig/libconco dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) -@@ -493,6 +564,8 @@ +@@ -493,6 +570,8 @@ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ @@ -6655,7 +107844,7 @@ diff -ruN concordance-0.21-orig/libconco *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ -@@ -504,9 +577,11 @@ +@@ -504,9 +583,11 @@ mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) @@ -6668,7 +107857,7 @@ diff -ruN concordance-0.21-orig/libconco && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ -@@ -528,13 +603,15 @@ +@@ -528,13 +609,15 @@ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ @@ -6686,7 +107875,7 @@ diff -ruN concordance-0.21-orig/libconco && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ -@@ -553,9 +630,9 @@ +@@ -553,9 +636,9 @@ exit 1; } >&2 check-am: all-am check: check-am @@ -6698,7 +107887,7 @@ diff -ruN concordance-0.21-orig/libconco test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am -@@ -578,6 +655,7 @@ +@@ -578,6 +661,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) @@ -6706,7 +107895,7 @@ diff -ruN concordance-0.21-orig/libconco maintainer-clean-generic: @echo "This command is intended for maintainers to use" -@@ -600,26 +678,39 @@ +@@ -600,26 +684,39 @@ html: html-am @@ -6748,7 +107937,7 @@ diff -ruN concordance-0.21-orig/libconco installcheck-am: maintainer-clean: maintainer-clean-am -@@ -642,27 +733,30 @@ +@@ -642,27 +739,30 @@ ps-am: @@ -6793,7 +107982,7 @@ diff -ruN concordance-0.21-orig/libconco # udev and friends support -@@ -694,6 +788,17 @@ +@@ -694,6 +794,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms @@ -6813,7 +108002,7 @@ diff -ruN concordance-0.21-orig/libconco .NOEXPORT: diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing --- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 -+++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 ++++ concordance-0.21/libconcord/missing 2009-07-31 12:49:18.000000000 -0400 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-10/libconcord.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- libconcord.spec 30 Jul 2009 18:32:28 -0000 1.5 +++ libconcord.spec 31 Jul 2009 17:08:50 -0000 1.6 @@ -3,7 +3,7 @@ Name: libconcord Version: 0.21 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries @@ -173,6 +173,11 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 31 2009 Douglas E. Warner 0.21-4 +- updating mime patch with different source: + http://stuff.onse.fi/concordance-mime2.patch + https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 + * Thu Jul 30 2009 Douglas E. Warner 0.21-3 - adding a mime-type definition so other packages can handle them appropriately (bug#506536) From silfreed at fedoraproject.org Fri Jul 31 17:08:59 2009 From: silfreed at fedoraproject.org (Douglas E. Warner) Date: Fri, 31 Jul 2009 17:08:59 +0000 (UTC) Subject: rpms/libconcord/F-11 libconcord-0.21-mime-type-def.patch, 1.1, 1.2 libconcord.spec, 1.7, 1.8 Message-ID: <20090731170859.69D9211C00CE@cvs1.fedora.phx.redhat.com> Author: silfreed Update of /cvs/pkgs/rpms/libconcord/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19798 Modified Files: libconcord-0.21-mime-type-def.patch libconcord.spec Log Message: * Fri Jul 31 2009 Douglas E. Warner 0.21-4 - updating mime patch with different source: http://stuff.onse.fi/concordance-mime2.patch https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 libconcord-0.21-mime-type-def.patch: Makefile.am | 22 Makefile.in | 281 aclocal.m4 |10632 ++++++++++-------- autom4te.cache/output.1 |28039 ++++++++++++++++++++---------------------------- autom4te.cache/output.2 |18176 +++++++++++++++++++++++++++++++ autom4te.cache/requests | 207 autom4te.cache/traces.1 | 365 autom4te.cache/traces.2 | 2376 ++++ config.guess | 51 config.h.in | 7 config.h.in~ | 58 config.sub | 54 configure |26101 ++++++++++++++++++-------------------------- configure.ac | 17 depcomp | 87 install-sh | 5 libconcord.xml | 15 ltmain.sh |13228 ++++++++++++---------- missing | 49 19 files changed, 57892 insertions(+), 41878 deletions(-) View full diff with command: /usr/bin/cvs -n -f diff -kk -u -p -N -r 1.1 -r 1.2 libconcord-0.21-mime-type-def.patchIndex: libconcord-0.21-mime-type-def.patch =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-11/libconcord-0.21-mime-type-def.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- libconcord-0.21-mime-type-def.patch 30 Jul 2009 18:31:37 -0000 1.1 +++ libconcord-0.21-mime-type-def.patch 31 Jul 2009 17:08:58 -0000 1.2 @@ -1,6 +1,6 @@ diff -ruN concordance-0.21-orig/libconcord/aclocal.m4 concordance-0.21/libconcord/aclocal.m4 --- concordance-0.21-orig/libconcord/aclocal.m4 2009-03-08 15:07:43.000000000 -0400 -+++ concordance-0.21/libconcord/aclocal.m4 2009-07-30 14:03:36.000000000 -0400 ++++ concordance-0.21/libconcord/aclocal.m4 2009-07-31 12:49:14.000000000 -0400 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- +# generated automatically by aclocal 1.11 -*- Autoconf -*- @@ -11,7 +11,7 @@ diff -ruN concordance-0.21-orig/libconco # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -@@ -13,7 +13,7 @@ +@@ -13,108 +13,194 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl @@ -20,3408 +20,11652 @@ diff -ruN concordance-0.21-orig/libconco [m4_warning([this file was generated for autoconf 2.63. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. -@@ -21,7 +21,7 @@ + To do so, use the procedure documented by the package, typically `autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ++# ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is free software; the Free Software Foundation gives ++# unlimited permission to copy and/or distribute it, with or without ++# modifications, as long as this notice is preserved. ++ ++m4_define([_LT_COPYING], [dnl ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, ++# 2006, 2007, 2008 Free Software Foundation, Inc. ++# Written by Gordon Matzigkeit, 1996 ++# ++# This file is part of GNU Libtool. ++# ++# GNU Libtool is free software; you can redistribute it and/or ++# modify it under the terms of the GNU General Public License as ++# published by the Free Software Foundation; either version 2 of ++# the License, or (at your option) any later version. ++# ++# As a special exception to the GNU General Public License, ++# if you distribute this file as part of a program or library that ++# is built using GNU Libtool, you may include this file under the ++# same distribution terms that you use for the rest of that program. ++# ++# GNU Libtool is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with GNU Libtool; see the file COPYING. If not, a copy ++# can be downloaded from http://www.gnu.org/licenses/gpl.html, or ++# obtained by writing to the Free Software Foundation, Inc., ++# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ++]) -# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL -+# serial 52 AC_PROG_LIBTOOL - - - # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -@@ -645,6 +645,7 @@ - esac - ;; - *64-bit*) -+ libsuff=64 - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" -@@ -1707,11 +1708,13 @@ - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` -- sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" - fi ++# serial 56 LT_INIT - # We used to test for /lib/ld.so.1 and disable shared libraries on -@@ -1723,18 +1726,6 @@ - dynamic_linker='GNU/Linux ld.so' - ;; --netbsdelf*-gnu) -- version_type=linux -- need_lib_prefix=no -- need_version=no -- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -- soname_spec='${libname}${release}${shared_ext}$major' -- shlibpath_var=LD_LIBRARY_PATH -- shlibpath_overrides_runpath=no -- hardcode_into_libs=yes -- dynamic_linker='NetBSD ld.elf_so' -- ;; +-# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) +-# ----------------------------------------------------------- +-# If this macro is not defined by Autoconf, define it here. +-m4_ifdef([AC_PROVIDE_IFELSE], +- [], +- [m4_define([AC_PROVIDE_IFELSE], +- [m4_ifdef([AC_PROVIDE_$1], +- [$2], [$3])])]) ++# LT_PREREQ(VERSION) ++# ------------------ ++# Complain and exit if this libtool version is less that VERSION. ++m4_defun([LT_PREREQ], ++[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, ++ [m4_default([$3], ++ [m4_fatal([Libtool version $1 or higher is required], ++ 63)])], ++ [$2])]) + + +-# AC_PROG_LIBTOOL +-# --------------- +-AC_DEFUN([AC_PROG_LIBTOOL], +-[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl +-dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX +-dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. +- AC_PROVIDE_IFELSE([AC_PROG_CXX], +- [AC_LIBTOOL_CXX], +- [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX +- ])]) +-dnl And a similar setup for Fortran 77 support +- AC_PROVIDE_IFELSE([AC_PROG_F77], +- [AC_LIBTOOL_F77], +- [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 +-])]) - - netbsd*) - version_type=sunos - need_lib_prefix=no -@@ -2516,7 +2507,7 @@ - lt_cv_deplibs_check_method=pass_all - ;; - --netbsd* | netbsdelf*-gnu) -+netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else -@@ -3523,7 +3514,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= -@@ -5215,7 +5206,7 @@ - ;; - esac - ;; -- netbsd* | netbsdelf*-gnu) -+ netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in -@@ -5592,9 +5583,6 @@ - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - ;; -- linux* | k*bsd*-gnu) -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no -- ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; -@@ -5803,13 +5791,12 @@ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi -- _LT_AC_TAGVAR(link_all_deplibs, $1)=no - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - [...112526 lines suppressed...] + NMEDIT = @NMEDIT@ ++OBJDUMP = @OBJDUMP@ + OBJEXT = @OBJEXT@ ++OTOOL = @OTOOL@ ++OTOOL64 = @OTOOL64@ + PACKAGE = @PACKAGE@ + PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + PACKAGE_NAME = @PACKAGE_NAME@ +@@ -157,6 +182,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ @@ -6347,7 +107519,24 @@ diff -ruN concordance-0.21-orig/libconco VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ -@@ -220,6 +241,14 @@ +@@ -164,7 +190,7 @@ + abs_top_srcdir = @abs_top_srcdir@ + ac_ct_CC = @ac_ct_CC@ + ac_ct_CXX = @ac_ct_CXX@ +-ac_ct_F77 = @ac_ct_F77@ ++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -195,6 +221,7 @@ + libexecdir = @libexecdir@ + localedir = @localedir@ + localstatedir = @localstatedir@ ++lt_ECHO = @lt_ECHO@ + mandir = @mandir@ + mkdir_p = @mkdir_p@ + oldincludedir = @oldincludedir@ +@@ -220,6 +247,14 @@ include_HEADERS = libconcord.h libconcord_la_LDFLAGS = -version-info 1:0:0 -lusb libconcord_la_LADD = usb @@ -6362,7 +107551,7 @@ diff -ruN concordance-0.21-orig/libconco all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am -@@ -231,15 +260,15 @@ +@@ -231,15 +266,15 @@ @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -6383,7 +107572,7 @@ diff -ruN concordance-0.21-orig/libconco .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ -@@ -255,9 +284,10 @@ +@@ -255,9 +290,10 @@ $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) @@ -6396,7 +107585,7 @@ diff -ruN concordance-0.21-orig/libconco config.h: stamp-h1 @if test ! -f $@; then \ -@@ -269,7 +299,7 @@ +@@ -269,7 +305,7 @@ @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) @@ -6405,7 +107594,7 @@ diff -ruN concordance-0.21-orig/libconco rm -f stamp-h1 touch $@ -@@ -278,20 +308,24 @@ +@@ -278,20 +314,24 @@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @@ -6439,7 +107628,7 @@ diff -ruN concordance-0.21-orig/libconco done clean-libLTLIBRARIES: -@@ -321,31 +355,31 @@ +@@ -321,31 +361,31 @@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -6477,7 +107666,7 @@ diff -ruN concordance-0.21-orig/libconco mostlyclean-libtool: -rm -f *.lo -@@ -354,38 +388,61 @@ +@@ -354,38 +394,61 @@ -rm -rf .libs _libs distclean-libtool: @@ -6551,7 +107740,7 @@ diff -ruN concordance-0.21-orig/libconco here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ -@@ -393,36 +450,41 @@ +@@ -393,36 +456,41 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ @@ -6602,7 +107791,7 @@ diff -ruN concordance-0.21-orig/libconco @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ -@@ -438,21 +500,26 @@ +@@ -438,21 +506,26 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ @@ -6635,7 +107824,7 @@ diff -ruN concordance-0.21-orig/libconco dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) -@@ -465,6 +532,10 @@ +@@ -465,6 +538,10 @@ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) @@ -6646,7 +107835,7 @@ diff -ruN concordance-0.21-orig/libconco dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) -@@ -493,6 +564,8 @@ +@@ -493,6 +570,8 @@ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ @@ -6655,7 +107844,7 @@ diff -ruN concordance-0.21-orig/libconco *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ -@@ -504,9 +577,11 @@ +@@ -504,9 +583,11 @@ mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) @@ -6668,7 +107857,7 @@ diff -ruN concordance-0.21-orig/libconco && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ -@@ -528,13 +603,15 @@ +@@ -528,13 +609,15 @@ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ @@ -6686,7 +107875,7 @@ diff -ruN concordance-0.21-orig/libconco && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ -@@ -553,9 +630,9 @@ +@@ -553,9 +636,9 @@ exit 1; } >&2 check-am: all-am check: check-am @@ -6698,7 +107887,7 @@ diff -ruN concordance-0.21-orig/libconco test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am -@@ -578,6 +655,7 @@ +@@ -578,6 +661,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) @@ -6706,7 +107895,7 @@ diff -ruN concordance-0.21-orig/libconco maintainer-clean-generic: @echo "This command is intended for maintainers to use" -@@ -600,26 +678,39 @@ +@@ -600,26 +684,39 @@ html: html-am @@ -6748,7 +107937,7 @@ diff -ruN concordance-0.21-orig/libconco installcheck-am: maintainer-clean: maintainer-clean-am -@@ -642,27 +733,30 @@ +@@ -642,27 +739,30 @@ ps-am: @@ -6793,7 +107982,7 @@ diff -ruN concordance-0.21-orig/libconco # udev and friends support -@@ -694,6 +788,17 @@ +@@ -694,6 +794,17 @@ $(MKDIR_P) $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/ $(install_sh_DATA) libconcord.perms \ $(DESTDIR)$(datarootdir)/hal/fdi/policy/10osvendor/99-libconcord.perms @@ -6813,7 +108002,7 @@ diff -ruN concordance-0.21-orig/libconco .NOEXPORT: diff -ruN concordance-0.21-orig/libconcord/missing concordance-0.21/libconcord/missing --- concordance-0.21-orig/libconcord/missing 2009-03-08 15:07:49.000000000 -0400 -+++ concordance-0.21/libconcord/missing 2009-07-30 14:03:41.000000000 -0400 ++++ concordance-0.21/libconcord/missing 2009-07-31 12:49:18.000000000 -0400 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. Index: libconcord.spec =================================================================== RCS file: /cvs/pkgs/rpms/libconcord/F-11/libconcord.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- libconcord.spec 30 Jul 2009 18:31:38 -0000 1.7 +++ libconcord.spec 31 Jul 2009 17:08:58 -0000 1.8 @@ -3,7 +3,7 @@ Name: libconcord Version: 0.21 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Library to talk to Logitech Harmony universal remote controls Group: Development/Libraries @@ -173,6 +173,11 @@ update-mime-database %{_datadir}/mime &> %changelog +* Fri Jul 31 2009 Douglas E. Warner 0.21-4 +- updating mime patch with different source: + http://stuff.onse.fi/concordance-mime2.patch + https://sourceforge.net/tracker/?func=detail&aid=2807865&group_id=201579&atid=978130 + * Thu Jul 30 2009 Douglas E. Warner 0.21-3 - adding a mime-type definition so other packages can handle them appropriately (bug#506536) From dbhole at fedoraproject.org Fri Jul 31 17:17:50 2009 From: dbhole at fedoraproject.org (Deepak Bhole) Date: Fri, 31 Jul 2009 17:17:50 +0000 (UTC) Subject: rpms/tanukiwrapper/devel tanukiwrapper-compilewithfpic.patch, NONE, 1.1 tanukiwrapper-Makefile-s390-s390x-ppc.patch, 1.1, 1.2 tanukiwrapper.spec, 1.31, 1.32 Message-ID: <20090731171750.647DE11C00CE@cvs1.fedora.phx.redhat.com> Author: dbhole Update of /cvs/pkgs/rpms/tanukiwrapper/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22996 Modified Files: tanukiwrapper-Makefile-s390-s390x-ppc.patch tanukiwrapper.spec Added Files: tanukiwrapper-compilewithfpic.patch Log Message: - Fix bug #480189 Compile files with -fPIC tanukiwrapper-compilewithfpic.patch: Makefile-linux-ppc-64 | 2 +- Makefile-linux-x86-32 | 2 +- Makefile-linux-x86-64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE tanukiwrapper-compilewithfpic.patch --- diff -up ./src/c/Makefile-linux-ppc-64.sav ./src/c/Makefile-linux-ppc-64 --- ./src/c/Makefile-linux-ppc-64.sav 2009-07-31 12:18:21.000000000 -0400 +++ ./src/c/Makefile-linux-ppc-64 2009-07-31 12:18:31.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-32.sav ./src/c/Makefile-linux-x86-32 --- ./src/c/Makefile-linux-x86-32.sav 2009-07-31 12:17:28.000000000 -0400 +++ ./src/c/Makefile-linux-x86-32 2009-07-31 12:19:11.000000000 -0400 @@ -31,7 +31,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-64.sav ./src/c/Makefile-linux-x86-64 --- ./src/c/Makefile-linux-x86-64.sav 2009-07-31 12:17:40.000000000 -0400 +++ ./src/c/Makefile-linux-x86-64 2009-07-31 12:19:41.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ tanukiwrapper-Makefile-s390-s390x-ppc.patch: Makefile-linux-ppc-32 | 41 +++++++++++++++++++++++++++++++++++++++++ Makefile-linux-s390-32 | 39 +++++++++++++++++++++++++++++++++++++++ Makefile-linux-s390x-64 | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 119 insertions(+) Index: tanukiwrapper-Makefile-s390-s390x-ppc.patch =================================================================== RCS file: /cvs/pkgs/rpms/tanukiwrapper/devel/tanukiwrapper-Makefile-s390-s390x-ppc.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- tanukiwrapper-Makefile-s390-s390x-ppc.patch 4 Aug 2006 23:02:25 -0000 1.1 +++ tanukiwrapper-Makefile-s390-s390x-ppc.patch 31 Jul 2009 17:17:50 -0000 1.2 @@ -34,7 +34,7 @@ + +%.o: %.c + @echo '$(COMPILE) -c $<'; \ -+ $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< ++ $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< + @-cp .deps/$(*F).pp .deps/$(*F).P; \ + tr ' ' '\012' < .deps/$(*F).pp \ + | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ @@ -76,7 +76,7 @@ + +%.o: %.c + @echo '$(COMPILE) -c $<'; \ -+ $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< ++ $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< + @-cp .deps/$(*F).pp .deps/$(*F).P; \ + tr ' ' '\012' < .deps/$(*F).pp \ + | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ @@ -120,7 +120,7 @@ + +%.o: %.c + @echo '$(COMPILE) -c $<'; \ -+ $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< ++ $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< + @-cp .deps/$(*F).pp .deps/$(*F).P; \ + tr ' ' '\012' < .deps/$(*F).pp \ + | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ Index: tanukiwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/tanukiwrapper/devel/tanukiwrapper.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- tanukiwrapper.spec 27 Jul 2009 05:31:42 -0000 1.31 +++ tanukiwrapper.spec 31 Jul 2009 17:17:50 -0000 1.32 @@ -34,7 +34,7 @@ Name: tanukiwrapper Version: 3.2.3 -Release: 4.3%{?dist} +Release: 4.4%{?dist} Summary: Java Service Wrapper Epoch: 0 License: BSD @@ -47,6 +47,7 @@ Patch3: %{name}-makefile-linux-x86-32.p Patch4: %{name}-Makefile-s390-s390x-ppc.patch # The following patch is only needed for GCJ. Patch5: %{name}-nosun-jvm-64.patch +Patch6: %{name}-compilewithfpic.patch Group: Development/Java BuildRequires: jpackage-utils >= 0:1.6 BuildRequires: glibc-devel @@ -106,6 +107,7 @@ Group: Development/Documentatio %if %{gcj_support} %patch5 %endif +%patch6 find . -name "*.jar" -exec %__rm -f {} \; %__perl -p -i -e 's/\r//' doc/AUTHORS %__perl -p -i -e 's|-O3|%optflags|' src/c/Makefile* @@ -202,6 +204,9 @@ fi %doc doc/* %changelog +* Fri Jul 31 2009 Deepak Bhole - 0:3.2.3-4.4 +- Fix bug #480189 Compile files with -fPIC + * Sun Jul 26 2009 Fedora Release Engineering - 0:3.2.3-4.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From twaugh at fedoraproject.org Fri Jul 31 17:19:40 2009 From: twaugh at fedoraproject.org (Tim Waugh) Date: Fri, 31 Jul 2009 17:19:40 +0000 (UTC) Subject: rpms/gutenprint/F-10 .cvsignore, 1.7, 1.8 gutenprint-O6.patch, 1.3, 1.4 gutenprint.spec, 1.45, 1.46 sources, 1.7, 1.8 Message-ID: <20090731171940.EDED311C00CE@cvs1.fedora.phx.redhat.com> Author: twaugh Update of /cvs/pkgs/rpms/gutenprint/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23820 Modified Files: .cvsignore gutenprint-O6.patch gutenprint.spec sources Log Message: * Fri Jul 31 2009 Tim Waugh 5.2.4-1 - 5.2.4. Re-enabled compiler optimization for ppc64. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-10/.cvsignore,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- .cvsignore 23 Dec 2008 11:47:15 -0000 1.7 +++ .cvsignore 31 Jul 2009 17:19:40 -0000 1.8 @@ -4,3 +4,4 @@ gutenprint-5.0.1.tar.bz2 gutenprint-5.0.2.tar.bz2 gutenprint-5.2.2.tar.bz2 gutenprint-5.2.3.tar.bz2 +gutenprint-5.2.4.tar.bz2 gutenprint-O6.patch: configure | 415 ----------------------------------------------------------- configure.ac | 21 -- 2 files changed, 436 deletions(-) Index: gutenprint-O6.patch =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-10/gutenprint-O6.patch,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- gutenprint-O6.patch 5 Dec 2008 16:19:01 -0000 1.3 +++ gutenprint-O6.patch 31 Jul 2009 17:19:40 -0000 1.4 @@ -1,6 +1,6 @@ -diff -up gutenprint-5.2.2/configure.ac.O6 gutenprint-5.2.2/configure.ac ---- gutenprint-5.2.2/configure.ac.O6 2008-11-19 11:23:29.000000000 +0000 -+++ gutenprint-5.2.2/configure.ac 2008-11-19 11:24:35.000000000 +0000 +diff -up gutenprint-5.2.4/configure.ac.O6 gutenprint-5.2.4/configure.ac +--- gutenprint-5.2.4/configure.ac.O6 2009-07-31 17:29:06.175961565 +0100 ++++ gutenprint-5.2.4/configure.ac 2009-07-31 17:29:32.117962246 +0100 @@ -625,27 +625,6 @@ AH_TEMPLATE(PKGMODULEDIR,, [Package modu PKGMODULEDIR="${PACKAGE_LIB_DIR}/${GUTENPRINT_RELEASE_VERSION}/modules" AC_DEFINE_UNQUOTED(PKGMODULEDIR, ["$PKGMODULEDIR"]) @@ -29,10 +29,10 @@ diff -up gutenprint-5.2.2/configure.ac.O AC_SUBST(GNUCFLAGS) AH_TEMPLATE([HAVE_GCC_ATTRIBUTES], -diff -up gutenprint-5.2.2/configure.O6 gutenprint-5.2.2/configure ---- gutenprint-5.2.2/configure.O6 2008-11-19 11:23:32.000000000 +0000 -+++ gutenprint-5.2.2/configure 2008-11-19 11:24:49.000000000 +0000 -@@ -26509,410 +26509,6 @@ cat >>confdefs.h <<_ACEOF +diff -up gutenprint-5.2.4/configure.O6 gutenprint-5.2.4/configure +--- gutenprint-5.2.4/configure.O6 2009-07-31 17:29:39.376961485 +0100 ++++ gutenprint-5.2.4/configure 2009-07-31 17:31:08.881961477 +0100 +@@ -17925,421 +17925,6 @@ cat >>confdefs.h <<_ACEOF _ACEOF @@ -40,8 +40,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -Wall -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -65,26 +65,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -98,8 +99,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - - for stp_ac_arg in -pedantic -Waggregate-return -Wcast-qual -Wshadow -Wredundant-decls ; do - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${GNUCFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -123,26 +124,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -155,8 +157,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - fi - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -180,26 +182,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -212,8 +215,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O6 -O3 -O2 -O1 -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -237,26 +240,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -271,8 +275,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -else - if test x$ENABLE_DEBUG = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 --echo $ECHO_N "checking if ${CC} supports -g... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -g" >&5 +-$as_echo_n "checking if ${CC} supports -g... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -g" - cat >conftest.$ac_ext <<_ACEOF @@ -296,26 +300,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -328,8 +333,8 @@ diff -up gutenprint-5.2.2/configure.O6 g - for stp_ac_arg in -O ; do - stp_ac_save_CFLAGS="${CFLAGS}" - -- { echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 --echo $ECHO_N "checking if ${CC} supports ${stp_ac_arg}... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports ${stp_ac_arg}" >&5 +-$as_echo_n "checking if ${CC} supports ${stp_ac_arg}... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} ${stp_ac_arg}" - cat >conftest.$ac_ext <<_ACEOF @@ -353,26 +358,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -387,8 +393,8 @@ diff -up gutenprint-5.2.2/configure.O6 g -fi -if test x$ENABLE_PROFILE = xyes ; then - -- { echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 --echo $ECHO_N "checking if ${CC} supports -pg... $ECHO_C" >&6; } +- { $as_echo "$as_me:$LINENO: checking if ${CC} supports -pg" >&5 +-$as_echo_n "checking if ${CC} supports -pg... " >&6; } - stp_acOLDCFLAGS="${CFLAGS}" - CFLAGS="${CFLAGS} -pg" - cat >conftest.$ac_ext <<_ACEOF @@ -412,26 +418,27 @@ diff -up gutenprint-5.2.2/configure.O6 g - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac --eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" +-$as_echo "$ac_try_echo") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 -- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then -- { echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6; }; +- { $as_echo "$as_me:$LINENO: result: yes" >&5 +-$as_echo "yes" >&6; }; - stp_newCFLAGS="$CFLAGS" -else -- echo "$as_me: failed program was:" >&5 +- $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -- { echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6; }; +- { $as_echo "$as_me:$LINENO: result: no" >&5 +-$as_echo "no" >&6; }; - stp_newCFLAGS="$stp_acOLDCFLAGS" -fi - @@ -440,6 +447,10 @@ diff -up gutenprint-5.2.2/configure.O6 g - CFLAGS="${stp_newCFLAGS}" - -fi - - - +- +- +- +- + { $as_echo "$as_me:$LINENO: checking if $CC supports __attribute__ syntax" >&5 + $as_echo_n "checking if $CC supports __attribute__ syntax... " >&6; } + cat >conftest.$ac_ext <<_ACEOF Index: gutenprint.spec =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-10/gutenprint.spec,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- gutenprint.spec 29 Jan 2009 12:36:23 -0000 1.45 +++ gutenprint.spec 31 Jul 2009 17:19:40 -0000 1.46 @@ -3,8 +3,8 @@ Name: gutenprint Summary: Printer Drivers Package. -Version: 5.2.3 -Release: 4%{?dist} +Version: 5.2.4 +Release: 1%{?dist} Group: System Environment/Base URL: http://gimp-print.sourceforge.net/ Source0: http://dl.sf.net/gimp-print/gutenprint-%{version}.tar.bz2 @@ -36,6 +36,13 @@ Gutenprint is a package of high quality Solaris, IRIX, and other UNIX-alike operating systems. Gutenprint was formerly called Gimp-Print. +%package doc +Summary: Documentation for gutenprint +Group: Documentation + +%description doc +Documentation for gutenprint. + %package devel Summary: Library development files for gutenprint Group: Development/Libraries @@ -131,16 +138,13 @@ Epson, HP and compatible printers.. %patch2 -p1 -b .selinux %build -%ifarch ppc64 -export CFLAGS="${CFLAGS} -O0" -%endif %configure --disable-static --disable-dependency-tracking \ --with-foomatic --with-ghostscript \ --disable-libgutenprintui --without-gimp \ --with-user-guide --with-samples \ --with-escputil --with-test --disable-rpath \ --enable-cups-1_2-enhancements \ - --enable-simplified-cups-ppds + --disable-cups-ppds make %{?_smp_mflags} @@ -183,14 +187,13 @@ rm -rf %{buildroot} %postun -p /sbin/ldconfig %post cups -/usr/sbin/cups-genppdupdate +/usr/sbin/cups-genppdupdate >/dev/null 2>&1 || : /sbin/service cups reload >/dev/null 2>&1 || : exit 0 %files -f gutenprint.lang %defattr(-, root, root,-) -%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf %{_bindir}/escputil %{_mandir}/man1/escputil.1* %{_bindir}/ijsgutenprint.5.2 @@ -204,6 +207,10 @@ exit 0 # For some reason the po files are needed as well. %{_datadir}/locale/*/gutenprint_*.po +%files doc +%defattr(-,root,root,-) +%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf + %files devel %defattr(-,root,root,-) %doc ChangeLog doc/developer/reference-html doc/developer/gutenprint.pdf @@ -254,6 +261,23 @@ fi /bin/rm -f /var/cache/foomatic/* %changelog +* Fri Jul 31 2009 Tim Waugh 5.2.4-1 +- 5.2.4. Re-enabled compiler optimization for ppc64. + +* Thu Jul 30 2009 Tim Waugh 5.2.3-8 +- Don't show output when upgrading cups sub-package (bug #507324). +- Split documentation into doc sub-package (bug #492452). + +* Fri Jul 24 2009 Fedora Release Engineering - 5.2.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 15 2009 Tim Waugh 5.2.3-6 +- Don't build CUPS PPDs (instead build a CUPS driver that can + generate them). Fixes build (bug #511538). + +* Tue Feb 24 2009 Fedora Release Engineering - 5.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Jan 29 2009 Tim Waugh 5.2.3-4 - When updating foomatic PPDs, don't give a traceback if some PPD is not strictly conformant (bug #481397). Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/gutenprint/F-10/sources,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- sources 23 Dec 2008 11:47:15 -0000 1.7 +++ sources 31 Jul 2009 17:19:40 -0000 1.8 @@ -1 +1 @@ -4db2605739b3cbc6fc72bb1665731aeb gutenprint-5.2.3.tar.bz2 +4b0ecc20f3fc68e67c76991cc8516fe7 gutenprint-5.2.4.tar.bz2 From jzeleny at fedoraproject.org Fri Jul 31 17:51:11 2009 From: jzeleny at fedoraproject.org (Jan Zeleny) Date: Fri, 31 Jul 2009 17:51:11 +0000 (UTC) Subject: rpms/fcoe-utils/devel fcoe-utils-1.0.8-includes.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 fcoe-utils-1.0.7-init-condrestart.patch, 1.1, 1.2 fcoe-utils-1.0.7-init.patch, 1.2, 1.3 fcoe-utils.spec, 1.6, 1.7 sources, 1.2, 1.3 fcoe-utils-1.0.7-free.patch, 1.1, NONE fcoe-utils-1.0.7-longOpts.patch, 1.1, NONE Message-ID: <20090731175111.0EF9211C00CE@cvs1.fedora.phx.redhat.com> Author: jzeleny Update of /cvs/extras/rpms/fcoe-utils/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1674 Modified Files: .cvsignore fcoe-utils-1.0.7-init-condrestart.patch fcoe-utils-1.0.7-init.patch fcoe-utils.spec sources Added Files: fcoe-utils-1.0.8-includes.patch Removed Files: fcoe-utils-1.0.7-free.patch fcoe-utils-1.0.7-longOpts.patch Log Message: Added patch to compile cleanly and without upstream's ugly hack fcoe-utils-1.0.8-includes.patch: Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- NEW FILE fcoe-utils-1.0.8-includes.patch --- --- fcoe-utils-1.0.8/Makefile.am.orig 2009-07-31 13:28:11.484799253 +0200 +++ fcoe-utils-1.0.8/Makefile.am 2009-07-31 13:28:38.331800646 +0200 @@ -5,7 +5,7 @@ endif ## all targets should look for headers in the include directory -AM_CPPFLAGS = -I${srcdir}/include +AM_CPPFLAGS = -I${srcdir}/include -I/lib/modules/`rpm -q --list kernel | grep "^/lib/modules/.*/build$$" | cut -f4 -d"/" | sort -r | head -1`/build/include ## pass the sysconfdir into the C proprocessor AM_CFLAGS = -DSYSCONFDIR="\"${sysconfdir}\"" Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/fcoe-utils/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- .cvsignore 10 Apr 2009 07:34:34 -0000 1.2 +++ .cvsignore 31 Jul 2009 17:51:09 -0000 1.3 @@ -1 +1 @@ -fcoe-utils-1.0.7.tar.gz +fcoe-utils-1.0.8.tar.gz fcoe-utils-1.0.7-init-condrestart.patch: initd.fedora | 3 +++ 1 file changed, 3 insertions(+) Index: fcoe-utils-1.0.7-init-condrestart.patch =================================================================== RCS file: /cvs/extras/rpms/fcoe-utils/devel/fcoe-utils-1.0.7-init-condrestart.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- fcoe-utils-1.0.7-init-condrestart.patch 14 May 2009 14:17:13 -0000 1.1 +++ fcoe-utils-1.0.7-init-condrestart.patch 31 Jul 2009 17:51:10 -0000 1.2 @@ -1,7 +1,7 @@ --- fcoe-utils-1.0.7/etc/initd/initd.fedora 2009-03-27 21:40:22.000000000 +0100 +++ fcoe-utils-1.0.7/etc/initd/initd.fedora.update 2009-04-03 09:54:39.000000000 +0200 service_status() -@@ -243,6 +243,8 @@ service_status() +@@ -245,6 +245,8 @@ service_status() else echo "Created interfaces: $IF_LIST" fi @@ -10,7 +10,7 @@ } case "$1" in -@@ -282,6 +284,7 @@ case "$1" in +@@ -284,6 +286,7 @@ case "$1" in ;; status) service_status fcoe-utils-1.0.7-init.patch: initd.fedora | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) Index: fcoe-utils-1.0.7-init.patch =================================================================== RCS file: /cvs/extras/rpms/fcoe-utils/devel/fcoe-utils-1.0.7-init.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- fcoe-utils-1.0.7-init.patch 14 May 2009 14:17:13 -0000 1.2 +++ fcoe-utils-1.0.7-init.patch 31 Jul 2009 17:51:10 -0000 1.3 @@ -20,8 +20,8 @@ # Description: Open-FCoE SAN Setup ### END INIT INFO -@@ -183,6 +186,9 @@ service_start() - daemon --pidfile ${PID_FILE} ${FCOEMON} +@@ -185,6 +187,9 @@ service_start() + daemon --pidfile ${PID_FILE} ${FCOEMON} ${FCOEMON_OPTS} fi + echo @@ -30,7 +30,7 @@ return } -@@ -218,6 +224,7 @@ service_stop() +@@ -220,6 +226,7 @@ service_stop() done rm -f /var/run/fcoemon.* rm -f /tmp/fcoemon.dcbd.* Index: fcoe-utils.spec =================================================================== RCS file: /cvs/extras/rpms/fcoe-utils/devel/fcoe-utils.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- fcoe-utils.spec 24 Jul 2009 22:34:01 -0000 1.6 +++ fcoe-utils.spec 31 Jul 2009 17:51:10 -0000 1.7 @@ -1,21 +1,25 @@ Name: fcoe-utils -Version: 1.0.7 -Release: 8%{?dist} +Version: 1.0.8 +Release: 2%{?dist} Summary: Fibre Channel over Ethernet utilities Group: Applications/System License: GPLv2 URL: http://www.open-fcoe.org -Source0: http://www.open-fcoe.org/openfc/downloads/%{name}-%{version}.tar.gz +# This source was pulled from upstream git repository +# To make a tarball, just run: +# git clone git://open-fcoe.org/openfc/fcoe-utils.git && cd fcoe-utils +# git archive --prefix=fcoe-utils-%{version}/ v%{version} > ../fcoe-utils-%{version}.tar +# cd .. && gzip fcoe-utils-%{version} +Source0: %{name}-%{version}.tar.gz Source1: quickstart.txt Patch0: fcoe-utils-1.0.7-init.patch -Patch1: fcoe-utils-1.0.7-free.patch -Patch2: fcoe-utils-1.0.7-init-condrestart.patch -Patch3: fcoe-utils-1.0.7-longOpts.patch +Patch1: fcoe-utils-1.0.7-init-condrestart.patch +Patch2: fcoe-utils-1.0.8-includes.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libhbaapi-devel dcbd-devel -Requires: dcbd libhbalinux +BuildRequires: libhbaapi-devel dcbd-devel libtool automake kernel-devel +Requires: dcbd libhbalinux >= 1.0.8 Requires(post): chkconfig Requires(preun): chkconfig initscripts Requires(postun): initscripts @@ -28,12 +32,11 @@ fcoemon - service to configure DCB Ether %prep %setup -q %patch0 -p1 -b .initPatch -%patch1 -p1 -b .freePatch -%patch2 -p1 -b .condrestartPatch -%patch3 -p1 -b .longOpts - +%patch1 -p1 -b .condrestartPatch +%patch2 -p1 -b .includes-fix %build +./bootstrap.sh %configure make %{?_smp_mflags} @@ -93,6 +96,12 @@ fi %changelog +* Fri Jul 31 2009 Jan Zeleny - 1.0.8-2 +- patch for clean compilation without usage of upstream's ugly hack + +* Thu Jul 30 2009 Jan Zeleny - 1.0.8-1 +- rebase of fcoe-utils to 1.0.8, adjusted spec file + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/extras/rpms/fcoe-utils/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- sources 10 Apr 2009 07:34:34 -0000 1.2 +++ sources 31 Jul 2009 17:51:10 -0000 1.3 @@ -1 +1 @@ -66dc5a5605719875d5434d7dbb9f6d88 fcoe-utils-1.0.7.tar.gz +0f8ddd3e4a5d75dc9568fe7141364894 fcoe-utils-1.0.8.tar.gz --- fcoe-utils-1.0.7-free.patch DELETED --- --- fcoe-utils-1.0.7-longOpts.patch DELETED --- From bretm at fedoraproject.org Fri Jul 31 17:53:17 2009 From: bretm at fedoraproject.org (Bret Richard McMillan) Date: Fri, 31 Jul 2009 17:53:17 +0000 (UTC) Subject: rpms/wordpress-mu/devel .cvsignore,1.4,1.5 sources,1.4,1.5 Message-ID: <20090731175317.174CA11C00CE@cvs1.fedora.phx.redhat.com> Author: bretm Update of /cvs/pkgs/rpms/wordpress-mu/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2471 Modified Files: .cvsignore sources Log Message: upload wordpress-mu-2.8.2 sources Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/devel/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 12 Feb 2009 19:30:57 -0000 1.4 +++ .cvsignore 31 Jul 2009 17:53:16 -0000 1.5 @@ -1 +1,2 @@ wordpress-mu-2.7.tar.gz +wordpress-mu-2.8.2.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/wordpress-mu/devel/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 12 Feb 2009 19:30:57 -0000 1.4 +++ sources 31 Jul 2009 17:53:16 -0000 1.5 @@ -1 +1,2 @@ b7d119c663833a3fe00d30224530447e wordpress-mu-2.7.tar.gz +5b412d16fdcc590698af565aa50d046c wordpress-mu-2.8.2.tar.gz From mclasen at fedoraproject.org Fri Jul 31 17:54:27 2009 From: mclasen at fedoraproject.org (Matthias Clasen) Date: Fri, 31 Jul 2009 17:54:27 +0000 (UTC) Subject: comps comps-f12.xml.in,1.63,1.64 Message-ID: <20090731175427.D3EA911C00CE@cvs1.fedora.phx.redhat.com> Author: mclasen Update of /cvs/pkgs/comps In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2288 Modified Files: comps-f12.xml.in Log Message: reflect recent package splits Index: comps-f12.xml.in =================================================================== RCS file: /cvs/pkgs/comps/comps-f12.xml.in,v retrieving revision 1.63 retrieving revision 1.64 diff -u -p -r1.63 -r1.64 --- comps-f12.xml.in 30 Jul 2009 13:57:35 -0000 1.63 +++ comps-f12.xml.in 31 Jul 2009 17:54:26 -0000 1.64 @@ -2201,6 +2201,7 @@ glaxium glest glob2 + gnome-games-extra gnome-games-extra-data gnome-hearts gnubg @@ -2514,6 +2515,7 @@ gnome-applet-timer gnome-commander gnome-device-manager + gnome-media-apps gnome-netstatus gnome-phone-manager gnome-pilot-conduits From krh at fedoraproject.org Fri Jul 31 17:56:40 2009 From: krh at fedoraproject.org (=?utf-8?q?Kristian_H=C3=B8gsberg?=) Date: Fri, 31 Jul 2009 17:56:40 +0000 (UTC) Subject: rpms/xorg-x11-server/devel dri2-page-flip.patch, NONE, 1.1 xorg-x11-server.spec, 1.456, 1.457 Message-ID: <20090731175640.73C0B11C00CE@cvs1.fedora.phx.redhat.com> Author: krh Update of /cvs/pkgs/rpms/xorg-x11-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3864 Modified Files: xorg-x11-server.spec Added Files: dri2-page-flip.patch Log Message: * Wed Jul 29 2009 Kristian H?gsberg - 1.6.99-22.20090724 - Add DRI2 page flipping feature. dri2-page-flip.patch: glx/glxcontext.h | 4 + glx/glxdri2.c | 47 ++++++++++++++---- glx/glxext.c | 3 + glx/glxserver.h | 18 +++---- hw/xfree86/dri2/dri2.c | 118 ++++++++++++++++++++++++++++++++++++++++++++-- hw/xfree86/dri2/dri2.h | 12 +++- hw/xfree86/dri2/dri2ext.c | 26 +++++++++- 7 files changed, 200 insertions(+), 28 deletions(-) --- NEW FILE dri2-page-flip.patch --- >From fb33e4a3cb43ff4b2ca4bdd9170d84569d3e9de0 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Kristian=20H=C3=B8gsberg?= Date: Wed, 29 Jul 2009 08:26:14 -0400 Subject: [PATCH] DRI2 Page Flipping --- glx/glxcontext.h | 4 ++ glx/glxdri2.c | 47 ++++++++++++++---- glx/glxext.c | 3 + glx/glxserver.h | 18 +++---- hw/xfree86/dri2/dri2.c | 118 +++++++++++++++++++++++++++++++++++++++++++- hw/xfree86/dri2/dri2.h | 12 ++++- hw/xfree86/dri2/dri2ext.c | 25 +++++++++- 7 files changed, 200 insertions(+), 27 deletions(-) diff --git a/glx/glxcontext.h b/glx/glxcontext.h index 70a1411..79bc083 100644 --- a/glx/glxcontext.h +++ b/glx/glxcontext.h @@ -55,6 +55,10 @@ struct __GLXcontext { unsigned long mask); int (*forceCurrent) (__GLXcontext *context); + Bool (*wait) (__GLXcontext *context, + __GLXclientState *cl, + int *error); + __GLXtextureFromPixmap *textureFromPixmap; /* diff --git a/glx/glxdri2.c b/glx/glxdri2.c index ed7fb4c..4b89c31 100644 --- a/glx/glxdri2.c +++ b/glx/glxdri2.c @@ -70,6 +70,7 @@ struct __GLXDRIscreen { const __DRIcoreExtension *core; const __DRIdri2Extension *dri2; + const __DRI2flushExtension *flush; const __DRIcopySubBufferExtension *copySubBuffer; const __DRIswapControlExtension *swapControl; const __DRItexBufferExtension *texBuffer; @@ -132,17 +133,6 @@ __glXDRIdrawableCopySubBuffer(__GLXdrawable *drawable, DRI2BufferFrontLeft, DRI2BufferBackLeft); } -static GLboolean -__glXDRIdrawableSwapBuffers(__GLXdrawable *drawable) -{ - __GLXDRIdrawable *private = (__GLXDRIdrawable *) drawable; - - __glXDRIdrawableCopySubBuffer(drawable, 0, 0, - private->width, private->height); - - return TRUE; -} - static void __glXDRIdrawableWaitX(__GLXdrawable *drawable) { @@ -177,6 +167,20 @@ __glXDRIdrawableWaitGL(__GLXdrawable *drawable) DRI2BufferFrontLeft, DRI2BufferFakeFrontLeft); } +static GLboolean +__glXDRIdrawableSwapBuffers(__GLXdrawable *drawable) +{ + __GLXDRIdrawable *priv = (__GLXDRIdrawable *) drawable; + __GLXDRIscreen *screen = priv->screen; + + (*screen->flush->flushInvalidate)(priv->driDrawable); + + if (DRI2SwapBuffers(drawable->pDraw) != Success) + return FALSE; + + return TRUE; +} + static int __glXDRIdrawableSwapInterval(__GLXdrawable *drawable, int interval) { @@ -241,6 +245,18 @@ __glXDRIcontextForceCurrent(__GLXcontext *baseContext) read->driDrawable); } +static Bool +__glXDRIcontextWait(__GLXcontext *baseContext, + __GLXclientState *cl, int *error) +{ + if (DRI2WaitSwap(cl->client, baseContext->drawPriv->pDraw)) { + *error = cl->client->noClientException; + return TRUE; + } + + return FALSE; +} + #ifdef __DRI_TEX_BUFFER static int @@ -346,6 +362,7 @@ __glXDRIscreenCreateContext(__GLXscreen *baseScreen, context->base.copy = __glXDRIcontextCopy; context->base.forceCurrent = __glXDRIcontextForceCurrent; context->base.textureFromPixmap = &__glXDRItextureFromPixmap; + context->base.wait = __glXDRIcontextWait; context->driContext = (*screen->dri2->createNewContext)(screen->driScreen, @@ -581,6 +598,14 @@ initializeExtensions(__GLXDRIscreen *screen) LogMessage(X_INFO, "AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects\n"); } #endif + +#ifdef __DRI2_FLUSH + if (strcmp(extensions[i]->name, __DRI2_FLUSH) == 0 && + extensions[i]->version >= __DRI2_FLUSH_VERSION) { + screen->flush = (__DRI2flushExtension *) extensions[i]; + } +#endif + /* Ignore unknown extensions */ } } diff --git a/glx/glxext.c b/glx/glxext.c index 19d70d4..f57ccf5 100644 --- a/glx/glxext.c +++ b/glx/glxext.c @@ -439,6 +439,9 @@ __GLXcontext *__glXForceCurrent(__GLXclientState *cl, GLXContextTag tag, } } + if (cx->wait && (*cx->wait)(cx, cl, error)) + return NULL; + if (cx == __glXLastContext) { /* No need to re-bind */ return cx; diff --git a/glx/glxserver.h b/glx/glxserver.h index 46c9382..3e62782 100644 --- a/glx/glxserver.h +++ b/glx/glxserver.h @@ -56,7 +56,14 @@ #include #include -/* For glxscreens.h */ +/* +** GLX resources. +*/ +typedef XID GLXContextID; +typedef XID GLXPixmap; +typedef XID GLXDrawable; + +typedef struct __GLXclientStateRec __GLXclientState; typedef struct __GLXdrawable __GLXdrawable; typedef struct __GLXcontext __GLXcontext; @@ -75,15 +82,6 @@ typedef struct __GLXcontext __GLXcontext; #define False 0 #endif -/* -** GLX resources. -*/ -typedef XID GLXContextID; -typedef XID GLXPixmap; -typedef XID GLXDrawable; - -typedef struct __GLXclientStateRec __GLXclientState; - extern __GLXscreen *glxGetScreen(ScreenPtr pScreen); extern __GLXclientState *glxGetClient(ClientPtr pClient); diff --git a/hw/xfree86/dri2/dri2.c b/hw/xfree86/dri2/dri2.c index 8795cd1..8f5e0c3 100644 --- a/hw/xfree86/dri2/dri2.c +++ b/hw/xfree86/dri2/dri2.c @@ -38,6 +38,7 @@ #include "xf86Module.h" #include "scrnintstr.h" #include "windowstr.h" +#include "dixstruct.h" #include "dri2.h" #include "xf86.h" @@ -55,7 +56,8 @@ typedef struct _DRI2Drawable { int height; DRI2BufferPtr *buffers; int bufferCount; - unsigned int pendingSequence; + unsigned int swapPending; + ClientPtr blockedClient; } DRI2DrawableRec, *DRI2DrawablePtr; typedef struct _DRI2Screen { @@ -67,6 +69,7 @@ typedef struct _DRI2Screen { DRI2CreateBufferProcPtr CreateBuffer; DRI2DestroyBufferProcPtr DestroyBuffer; DRI2CopyRegionProcPtr CopyRegion; + DRI2SwapBuffersProcPtr SwapBuffers; HandleExposuresProcPtr HandleExposures; } DRI2ScreenRec, *DRI2ScreenPtr; @@ -118,6 +121,8 @@ DRI2CreateDrawable(DrawablePtr pDraw) pPriv->height = pDraw->height; pPriv->buffers = NULL; pPriv->bufferCount = 0; + pPriv->swapPending = FALSE; + pPriv->blockedClient = NULL; if (pDraw->type == DRAWABLE_WINDOW) { @@ -337,6 +342,106 @@ DRI2CopyRegion(DrawablePtr pDraw, RegionPtr pRegion, return Success; } +static Bool +DRI2FlipCheck(DrawablePtr pDraw) +{ + ScreenPtr pScreen = pDraw->pScreen; + WindowPtr pWin, pRoot; + PixmapPtr pWinPixmap, pRootPixmap; + + if (pDraw->type == DRAWABLE_PIXMAP) + return TRUE; + + pRoot = WindowTable[pScreen->myNum]; + pRootPixmap = pScreen->GetWindowPixmap(pRoot); + + pWin = (WindowPtr) pDraw; + pWinPixmap = pScreen->GetWindowPixmap(pWin); + if (pRootPixmap != pWinPixmap) + return FALSE; + if (!REGION_EQUAL(pScreen, &pWin->clipList, &pRoot->winSize)) + return FALSE; + + return TRUE; +} + +int +DRI2SwapBuffers(DrawablePtr pDraw) +{ + DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen); + DRI2DrawablePtr pPriv; + DRI2BufferPtr pDestBuffer, pSrcBuffer; + int i; + BoxRec box; + RegionRec region; + + pPriv = DRI2GetDrawable(pDraw); + if (pPriv == NULL) + return BadDrawable; + + pDestBuffer = NULL; + pSrcBuffer = NULL; + for (i = 0; i < pPriv->bufferCount; i++) + { + if (pPriv->buffers[i]->attachment == DRI2BufferFrontLeft) + pDestBuffer = pPriv->buffers[i]; + if (pPriv->buffers[i]->attachment == DRI2BufferBackLeft) + pSrcBuffer = pPriv->buffers[i]; + } + if (pSrcBuffer == NULL || pDestBuffer == NULL) + return BadValue; + + if (DRI2FlipCheck(pDraw) && + (*ds->SwapBuffers)(pDraw, pDestBuffer, pSrcBuffer, pPriv)) + { + pPriv->swapPending = TRUE; + return Success; + } + + box.x1 = 0; + box.y1 = 0; + box.x2 = pDraw->width; + box.y2 = pDraw->height; + REGION_INIT(drawable->pDraw->pScreen, ®ion, &box, 0); + + return DRI2CopyRegion(pDraw, ®ion, + DRI2BufferFrontLeft, DRI2BufferBackLeft); +} + +Bool +DRI2WaitSwap(ClientPtr client, DrawablePtr pDrawable) +{ + DRI2DrawablePtr pPriv = DRI2GetDrawable(pDrawable); + + /* If we're currently waiting for a swap on this drawable, reset + * the request and suspend the client. We only support one + * blocked client per drawable. */ + if (pPriv->swapPending && pPriv->blockedClient == NULL) { + ResetCurrentRequest(client); + client->sequence--; + IgnoreClient(client); + pPriv->blockedClient = client; + return TRUE; + } + + return FALSE; +} + +void +DRI2SwapComplete(void *data) +{ + DRI2DrawablePtr pPriv = data; + + if (pPriv->blockedClient) + AttendClient(pPriv->blockedClient); + + pPriv->swapPending = FALSE; + pPriv->blockedClient = NULL; + + if (pPriv->refCount == 0) + xfree(pPriv); +} + void DRI2DestroyDrawable(DrawablePtr pDraw) { @@ -362,7 +467,11 @@ DRI2DestroyDrawable(DrawablePtr pDraw) xfree(pPriv->buffers); } - xfree(pPriv); + /* If the window is destroyed while we have a swap pending, don't + * actually free the priv yet. We'll need it in the DRI2SwapComplete() + * callback and we'll free it there once we're done. */ + if (!pPriv->swapPending) + xfree(pPriv); if (pDraw->type == DRAWABLE_WINDOW) { @@ -414,7 +523,7 @@ DRI2ScreenInit(ScreenPtr pScreen, DRI2InfoPtr info) if (info->version < 3) return FALSE; - ds = xalloc(sizeof *ds); + ds = xcalloc(1, sizeof *ds); if (!ds) return FALSE; @@ -426,6 +535,9 @@ DRI2ScreenInit(ScreenPtr pScreen, DRI2InfoPtr info) ds->DestroyBuffer = info->DestroyBuffer; ds->CopyRegion = info->CopyRegion; + if (info->version >= 4) + ds->SwapBuffers = info->SwapBuffers; + dixSetPrivate(&pScreen->devPrivates, dri2ScreenPrivateKey, ds); xf86DrvMsg(pScreen->myNum, X_INFO, "[DRI2] Setup complete\n"); diff --git a/hw/xfree86/dri2/dri2.h b/hw/xfree86/dri2/dri2.h index 175471a..42bdb09 100644 --- a/hw/xfree86/dri2/dri2.h +++ b/hw/xfree86/dri2/dri2.h @@ -58,6 +58,10 @@ typedef void (*DRI2CopyRegionProcPtr)(DrawablePtr pDraw, RegionPtr pRegion, DRI2BufferPtr pDestBuffer, DRI2BufferPtr pSrcBuffer); +typedef Bool (*DRI2SwapBuffersProcPtr)(DrawablePtr pDraw, + DRI2BufferPtr pFrontBuffer, + DRI2BufferPtr pBackBuffer, + void *data); typedef void (*DRI2WaitProcPtr)(WindowPtr pWin, unsigned int sequence); @@ -71,7 +75,7 @@ typedef void (*DRI2DestroyBufferProcPtr)(DrawablePtr pDraw, /** * Version of the DRI2InfoRec structure defined in this header */ -#define DRI2INFOREC_VERSION 3 +#define DRI2INFOREC_VERSION 4 typedef struct { unsigned int version; /**< Version of this struct */ @@ -82,7 +86,7 @@ typedef struct { DRI2CreateBufferProcPtr CreateBuffer; DRI2DestroyBufferProcPtr DestroyBuffer; DRI2CopyRegionProcPtr CopyRegion; - DRI2WaitProcPtr Wait; + DRI2SwapBuffersProcPtr SwapBuffers; } DRI2InfoRec, *DRI2InfoPtr; @@ -137,4 +141,8 @@ extern _X_EXPORT DRI2BufferPtr *DRI2GetBuffersWithFormat(DrawablePtr pDraw, int *width, int *height, unsigned int *attachments, int count, int *out_count); +extern _X_EXPORT int DRI2SwapBuffers(DrawablePtr pDrawable); +extern _X_EXPORT Bool DRI2WaitSwap(ClientPtr client, DrawablePtr pDrawable); +extern _X_EXPORT void DRI2SwapComplete(void *data); + #endif diff --git a/hw/xfree86/dri2/dri2ext.c b/hw/xfree86/dri2/dri2ext.c index 029dce8..9f5f389 100644 --- a/hw/xfree86/dri2/dri2ext.c +++ b/hw/xfree86/dri2/dri2ext.c @@ -80,7 +80,7 @@ ProcDRI2QueryVersion(ClientPtr client) rep.length = 0; rep.sequenceNumber = client->sequence; rep.majorVersion = 1; - rep.minorVersion = 1; + rep.minorVersion = 2; if (client->swapped) { swaps(&rep.sequenceNumber, n); @@ -253,6 +253,9 @@ ProcDRI2GetBuffers(ClientPtr client) if (!validDrawable(client, stuff->drawable, &pDrawable, &status)) return status; + if (DRI2WaitSwap(client, pDrawable)) + return client->noClientException; + attachments = (unsigned int *) &stuff[1]; buffers = DRI2GetBuffers(pDrawable, &width, &height, attachments, stuff->count, &count); @@ -276,6 +279,9 @@ ProcDRI2GetBuffersWithFormat(ClientPtr client) if (!validDrawable(client, stuff->drawable, &pDrawable, &status)) return status; + if (DRI2WaitSwap(client, pDrawable)) + return client->noClientException; + attachments = (unsigned int *) &stuff[1]; buffers = DRI2GetBuffersWithFormat(pDrawable, &width, &height, attachments, stuff->count, &count); @@ -322,6 +328,21 @@ ProcDRI2CopyRegion(ClientPtr client) } static int +ProcDRI2SwapBuffers(ClientPtr client) +{ + REQUEST(xDRI2SwapBuffersReq); + DrawablePtr pDrawable; + int status; + + REQUEST_SIZE_MATCH(xDRI2SwapBuffersReq); + + if (!validDrawable(client, stuff->drawable, &pDrawable, &status)) + return status; + + return DRI2SwapBuffers(pDrawable); +} + +static int ProcDRI2Dispatch (ClientPtr client) { REQUEST(xReq); @@ -349,6 +370,8 @@ ProcDRI2Dispatch (ClientPtr client) return ProcDRI2CopyRegion(client); case X_DRI2GetBuffersWithFormat: return ProcDRI2GetBuffersWithFormat(client); + case X_DRI2SwapBuffers: + return ProcDRI2SwapBuffers(client); default: return BadRequest; } -- 1.6.3.3 Index: xorg-x11-server.spec =================================================================== RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v retrieving revision 1.456 retrieving revision 1.457 diff -u -p -r1.456 -r1.457 --- xorg-x11-server.spec 28 Jul 2009 18:41:28 -0000 1.456 +++ xorg-x11-server.spec 31 Jul 2009 17:56:40 -0000 1.457 @@ -19,7 +19,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 1.6.99 -Release: 21.%{gitdate}%{?dist} +Release: 22.%{gitdate}%{?dist} URL: http://www.x.org License: MIT Group: User Interface/X @@ -50,6 +50,7 @@ Patch10: xserver-1.6.99-linkmap.patch # OpenGL compositing manager feature/optimization patches. Patch103: xserver-1.5.0-bg-none-root.patch +Patch104: dri2-page-flip.patch Patch2013: xserver-1.4.99-document-fontpath-correctly.patch Patch2014: xserver-1.5.0-projector-fb-size.patch @@ -103,7 +104,7 @@ BuildRequires: git-core BuildRequires: automake autoconf libtool pkgconfig BuildRequires: xorg-x11-util-macros >= 1.1.5 -BuildRequires: xorg-x11-proto-devel >= 7.4-23 +BuildRequires: xorg-x11-proto-devel >= 7.4-27 BuildRequires: xorg-x11-xtrans-devel >= 1.2.2-1 BuildRequires: libXfont-devel libXau-devel libxkbfile-devel libXres-devel @@ -119,8 +120,9 @@ BuildRequires: libXi-devel libXpm-devel BuildRequires: libXv-devel # openssl? really? -BuildRequires: pixman-devel libpciaccess-devel >= 0.10.6-1 openssl-devel byacc flex -BuildRequires: mesa-libGL-devel >= 7.1-0.37 +BuildRequires: pixman-devel >= 0.15.14 +BuildRequires: libpciaccess-devel >= 0.10.6-1 openssl-devel byacc flex +BuildRequires: mesa-libGL-devel >= 7.6-0.6 # XXX silly... BuildRequires: libdrm-devel >= 2.4.0 kernel-headers @@ -525,6 +527,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2009 Kristian H?gsberg - 1.6.99-22.20090724 +- Add DRI2 page flipping feature. + * Tue Jul 28 2009 Adam Jackson 1.6.99-21.20090724 - xserver-1.6.99-right-of.patch: Default to right-of initial placement for RANDR 1.2 drivers with enough virtual space. From peter at fedoraproject.org Fri Jul 31 18:01:39 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:01:39 +0000 (UTC) Subject: rpms/irqbalance/devel import.log, NONE, 1.1 .cvsignore, 1.6, 1.7 irqbalance.init, 1.11, 1.12 irqbalance.spec, 1.56, 1.57 Message-ID: <20090731180139.1813111C00CE@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6380/devel Modified Files: .cvsignore irqbalance.init irqbalance.spec Added Files: import.log Log Message: Fixes per Merge Review --- NEW FILE import.log --- irqbalance-0_55-17_fc11:HEAD:irqbalance-0.55-17.fc11.src.rpm:1249063146 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/devel/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 12 Dec 2006 13:20:16 -0000 1.6 +++ .cvsignore 31 Jul 2009 18:01:38 -0000 1.7 @@ -1,5 +1 @@ -irqbalance-0.12.tar.gz -irqbalance-1.12 -irqbalance-0.13.tar.gz -irqbalance-0.54.tar.gz irqbalance-0.55.tar.gz Index: irqbalance.init =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/devel/irqbalance.init,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- irqbalance.init 12 Dec 2008 11:50:19 -0000 1.11 +++ irqbalance.init 31 Jul 2009 18:01:38 -0000 1.12 @@ -7,7 +7,6 @@ # Description: The irqbalance daemon will distribute interrupts across # the cpus on a multiprocessor system with the purpose of # spreading the load -# ### END INIT INFO # chkconfig: 2345 13 87 Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/devel/irqbalance.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- irqbalance.spec 25 Jul 2009 03:36:43 -0000 1.56 +++ irqbalance.spec 31 Jul 2009 18:01:38 -0000 1.57 @@ -1,21 +1,23 @@ -Summary: IRQ balancing daemon. +Summary: IRQ balancing daemon Name: irqbalance -Version: 0.55 -Release: 15%{?dist} -Epoch: 2 +Version: 0.55 +Release: 17%{?dist} +Epoch: 2 Group: System Environment/Base License: GPLv2 -Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz +Url: http://irqbalance.org/ +Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz Source1: irqbalance.init Source2: irqbalance.sysconfig Source3: irqbalance.1 -Buildroot: %{_tmppath}/%{name}-%{version}-root -Prereq: /sbin/chkconfig /sbin/service +Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +Requires(post): chkconfig +Requires(postun):chkconfig +Requires(preun):chkconfig -ExclusiveArch: i386 i586 x86_64 ia64 ppc ppc64 +ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig imake -Requires: glib2 +BuildRequires: glib2-devel pkgconfig Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -31,38 +33,31 @@ multiple CPUs for enhanced performance. #%patch0 -p1 %patch1 -p1 %patch2 -p1 +sed -i s/-Os//g %{name}-%{version}/Makefile %build -rm -rf $RPM_BUILD_ROOT - -mkdir -p %{buildroot}/usr/sbin -mkdir -p %{buildroot}/usr/man -mkdir -p %{buildroot}/etc/rc.d/init.d -mkdir -p %{buildroot}/etc/sysconfig - -cd irqbalance-%{version} -make +cd %{name}-%{version} +CFLAGS="%{optflags}" make %{?_smp_mflags} %install -mkdir -p %{buildroot}/usr/share/man/man{1,8} - -cd irqbalance-%{version} -install irqbalance %{buildroot}/usr/sbin -install %{SOURCE1} %{buildroot}/etc/rc.d/init.d/irqbalance -install %{SOURCE2} %{buildroot}/etc/sysconfig/irqbalance -install %{SOURCE3} %{buildroot}/usr/share/man/man1/ +rm -rf %{buildroot} +cd %{name}-%{version} +install -D -p -m 0755 %{name} %{buildroot}%{_sbindir}/%{name} +install -D -p -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name} +install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/%{name} -chmod -R a-s %{buildroot} +install -d %{buildroot}%{_mandir}/man1/ +install -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/ %clean -[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT; +rm -rf %{buildroot} %files %defattr(-,root,root) -/usr/sbin/irqbalance -/etc/rc.d/init.d/irqbalance -%attr(0644,root,root) %{_mandir}/*/* -%attr(0644,root,root) /etc/sysconfig/irqbalance +%{_sbindir}/irqbalance +%{_initrddir}/irqbalance +%{_mandir}/man1/* +%config(noreplace) %{_sysconfdir}/sysconfig/irqbalance %preun if [ "$1" = "0" ] ; then @@ -78,6 +73,13 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 +- Cosmetic fixes in spec-file +- Fixed rpmlint error in the init-script + +* Tue Jul 28 2009 Peter Lemenkov - 2:0.55-16 +- Many imrovements in spec-file + * Fri Jul 24 2009 Fedora Release Engineering - 2:0.55-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From peter at fedoraproject.org Fri Jul 31 18:02:45 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:02:45 +0000 (UTC) Subject: rpms/irqbalance/F-11 import.log, NONE, 1.1 .cvsignore, 1.6, 1.7 irqbalance.init, 1.11, 1.12 irqbalance.spec, 1.55, 1.56 Message-ID: <20090731180245.9BFB311C00CE@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6834/F-11 Modified Files: .cvsignore irqbalance.init irqbalance.spec Added Files: import.log Log Message: Fixes per Merge Review --- NEW FILE import.log --- irqbalance-0_55-17_fc11:F-11:irqbalance-0.55-17.fc11.src.rpm:1249063327 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-11/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 12 Dec 2006 13:20:16 -0000 1.6 +++ .cvsignore 31 Jul 2009 18:02:45 -0000 1.7 @@ -1,5 +1 @@ -irqbalance-0.12.tar.gz -irqbalance-1.12 -irqbalance-0.13.tar.gz -irqbalance-0.54.tar.gz irqbalance-0.55.tar.gz Index: irqbalance.init =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-11/irqbalance.init,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- irqbalance.init 12 Dec 2008 11:50:19 -0000 1.11 +++ irqbalance.init 31 Jul 2009 18:02:45 -0000 1.12 @@ -7,7 +7,6 @@ # Description: The irqbalance daemon will distribute interrupts across # the cpus on a multiprocessor system with the purpose of # spreading the load -# ### END INIT INFO # chkconfig: 2345 13 87 Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-11/irqbalance.spec,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- irqbalance.spec 6 Mar 2009 14:52:28 -0000 1.55 +++ irqbalance.spec 31 Jul 2009 18:02:45 -0000 1.56 @@ -1,21 +1,23 @@ -Summary: IRQ balancing daemon. +Summary: IRQ balancing daemon Name: irqbalance -Version: 0.55 -Release: 14%{?dist} -Epoch: 2 +Version: 0.55 +Release: 17%{?dist} +Epoch: 2 Group: System Environment/Base License: GPLv2 -Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz +Url: http://irqbalance.org/ +Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz Source1: irqbalance.init Source2: irqbalance.sysconfig Source3: irqbalance.1 -Buildroot: %{_tmppath}/%{name}-%{version}-root -Prereq: /sbin/chkconfig /sbin/service +Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +Requires(post): chkconfig +Requires(postun):chkconfig +Requires(preun):chkconfig -ExclusiveArch: i386 i586 x86_64 ia64 ppc ppc64 +ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig imake -Requires: glib2 +BuildRequires: glib2-devel pkgconfig Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -31,38 +33,31 @@ multiple CPUs for enhanced performance. #%patch0 -p1 %patch1 -p1 %patch2 -p1 +sed -i s/-Os//g %{name}-%{version}/Makefile %build -rm -rf $RPM_BUILD_ROOT - -mkdir -p %{buildroot}/usr/sbin -mkdir -p %{buildroot}/usr/man -mkdir -p %{buildroot}/etc/rc.d/init.d -mkdir -p %{buildroot}/etc/sysconfig - -cd irqbalance-%{version} -make +cd %{name}-%{version} +CFLAGS="%{optflags}" make %{?_smp_mflags} %install -mkdir -p %{buildroot}/usr/share/man/man{1,8} - -cd irqbalance-%{version} -install irqbalance %{buildroot}/usr/sbin -install %{SOURCE1} %{buildroot}/etc/rc.d/init.d/irqbalance -install %{SOURCE2} %{buildroot}/etc/sysconfig/irqbalance -install %{SOURCE3} %{buildroot}/usr/share/man/man1/ +rm -rf %{buildroot} +cd %{name}-%{version} +install -D -p -m 0755 %{name} %{buildroot}%{_sbindir}/%{name} +install -D -p -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name} +install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/%{name} -chmod -R a-s %{buildroot} +install -d %{buildroot}%{_mandir}/man1/ +install -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/ %clean -[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT; +rm -rf %{buildroot} %files %defattr(-,root,root) -/usr/sbin/irqbalance -/etc/rc.d/init.d/irqbalance -%attr(0644,root,root) %{_mandir}/*/* -%attr(0644,root,root) /etc/sysconfig/irqbalance +%{_sbindir}/irqbalance +%{_initrddir}/irqbalance +%{_mandir}/man1/* +%config(noreplace) %{_sysconfdir}/sysconfig/irqbalance %preun if [ "$1" = "0" ] ; then @@ -78,6 +73,16 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 +- Cosmetic fixes in spec-file +- Fixed rpmlint error in the init-script + +* Tue Jul 28 2009 Peter Lemenkov - 2:0.55-16 +- Many imrovements in spec-file + +* Fri Jul 24 2009 Fedora Release Engineering - 2:0.55-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Neil Horman - Update spec file to build for i586 as per new build guidelines (bz 488849) From peter at fedoraproject.org Fri Jul 31 18:03:37 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:03:37 +0000 (UTC) Subject: rpms/irqbalance/F-10 import.log, NONE, 1.1 .cvsignore, 1.6, 1.7 irqbalance.init, 1.11, 1.12 irqbalance.spec, 1.53, 1.54 Message-ID: <20090731180337.79CB111C00CE@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7192/F-10 Modified Files: .cvsignore irqbalance.init irqbalance.spec Added Files: import.log Log Message: Fixes per Merge Review --- NEW FILE import.log --- irqbalance-0_55-17_fc11:F-10:irqbalance-0.55-17.fc11.src.rpm:1249063396 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-10/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- .cvsignore 12 Dec 2006 13:20:16 -0000 1.6 +++ .cvsignore 31 Jul 2009 18:03:37 -0000 1.7 @@ -1,5 +1 @@ -irqbalance-0.12.tar.gz -irqbalance-1.12 -irqbalance-0.13.tar.gz -irqbalance-0.54.tar.gz irqbalance-0.55.tar.gz Index: irqbalance.init =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-10/irqbalance.init,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- irqbalance.init 12 Dec 2008 11:39:17 -0000 1.11 +++ irqbalance.init 31 Jul 2009 18:03:37 -0000 1.12 @@ -7,7 +7,6 @@ # Description: The irqbalance daemon will distribute interrupts across # the cpus on a multiprocessor system with the purpose of # spreading the load -# ### END INIT INFO # chkconfig: 2345 13 87 Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-10/irqbalance.spec,v retrieving revision 1.53 retrieving revision 1.54 diff -u -p -r1.53 -r1.54 --- irqbalance.spec 12 Dec 2008 11:39:17 -0000 1.53 +++ irqbalance.spec 31 Jul 2009 18:03:37 -0000 1.54 @@ -1,21 +1,23 @@ -Summary: IRQ balancing daemon. +Summary: IRQ balancing daemon Name: irqbalance -Version: 0.55 -Release: 12%{?dist} -Epoch: 2 +Version: 0.55 +Release: 17%{?dist} +Epoch: 2 Group: System Environment/Base License: GPLv2 -Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz +Url: http://irqbalance.org/ +Source0: http://www.irqbalance.org/releases/irqbalance-%{version}.tar.gz Source1: irqbalance.init Source2: irqbalance.sysconfig Source3: irqbalance.1 -Buildroot: %{_tmppath}/%{name}-%{version}-root -Prereq: /sbin/chkconfig /sbin/service +Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +Requires(post): chkconfig +Requires(postun):chkconfig +Requires(preun):chkconfig -ExclusiveArch: i386 x86_64 ia64 ppc ppc64 +ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig imake -Requires: glib2 +BuildRequires: glib2-devel pkgconfig Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -31,38 +33,31 @@ multiple CPUs for enhanced performance. #%patch0 -p1 %patch1 -p1 %patch2 -p1 +sed -i s/-Os//g %{name}-%{version}/Makefile %build -rm -rf $RPM_BUILD_ROOT - -mkdir -p %{buildroot}/usr/sbin -mkdir -p %{buildroot}/usr/man -mkdir -p %{buildroot}/etc/rc.d/init.d -mkdir -p %{buildroot}/etc/sysconfig - -cd irqbalance-%{version} -make +cd %{name}-%{version} +CFLAGS="%{optflags}" make %{?_smp_mflags} %install -mkdir -p %{buildroot}/usr/share/man/man{1,8} +rm -rf %{buildroot} +cd %{name}-%{version} +install -D -p -m 0755 %{name} %{buildroot}%{_sbindir}/%{name} +install -D -p -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name} +install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/%{name} -cd irqbalance-%{version} -install irqbalance %{buildroot}/usr/sbin -install %{SOURCE1} %{buildroot}/etc/rc.d/init.d/irqbalance -install %{SOURCE2} %{buildroot}/etc/sysconfig/irqbalance -install %{SOURCE3} %{buildroot}/usr/share/man/man1/ - -chmod -R a-s %{buildroot} +install -d %{buildroot}%{_mandir}/man1/ +install -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/ %clean -[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT; +rm -rf %{buildroot} %files %defattr(-,root,root) -/usr/sbin/irqbalance -/etc/rc.d/init.d/irqbalance -%attr(0644,root,root) %{_mandir}/*/* -%attr(0644,root,root) /etc/sysconfig/irqbalance +%{_sbindir}/irqbalance +%{_initrddir}/irqbalance +%{_mandir}/man1/* +%config(noreplace) %{_sysconfdir}/sysconfig/irqbalance %preun if [ "$1" = "0" ] ; then @@ -78,6 +73,22 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 +- Cosmetic fixes in spec-file +- Fixed rpmlint error in the init-script + +* Tue Jul 28 2009 Peter Lemenkov - 2:0.55-16 +- Many imrovements in spec-file + +* Fri Jul 24 2009 Fedora Release Engineering - 2:0.55-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Mar 6 2009 Neil Horman +- Update spec file to build for i586 as per new build guidelines (bz 488849) + +* Wed Feb 25 2009 Fedora Release Engineering - 2:0.55-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Dec 12 2008 Neil Norman - 2:0.55-12 - Remove odd Netorking dependence from irqbalance (bz 476179) From hadess at fedoraproject.org Fri Jul 31 18:08:13 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 31 Jul 2009 18:08:13 +0000 (UTC) Subject: rpms/totem/F-11 0001-Fix-crash-when-a-storage-volume-has-an-emblem.patch, NONE, 1.1 totem.spec, 1.238, 1.239 Message-ID: <20090731180813.D544D11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8733 Modified Files: totem.spec Added Files: 0001-Fix-crash-when-a-storage-volume-has-an-emblem.patch Log Message: * Fri Jul 31 2009 Bastien Nocera 2.26.3-2 - Fix crash when a drive has an emblemed icon (#514914) 0001-Fix-crash-when-a-storage-volume-has-an-emblem.patch: totem-menu.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) --- NEW FILE 0001-Fix-crash-when-a-storage-volume-has-an-emblem.patch --- >From bfc5f434cd87b0d3f933f602eef13dbb1a91f580 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 31 Jul 2009 19:03:04 +0100 Subject: [PATCH] Fix crash when a (storage) volume has an emblem See https://bugzilla.redhat.com/show_bug.cgi?id=514914 --- src/totem-menu.c | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/totem-menu.c b/src/totem-menu.c index 28b8b73..ec59fea 100644 --- a/src/totem-menu.c +++ b/src/totem-menu.c @@ -802,12 +802,22 @@ add_drive_to_menu (GDrive *drive, guint position, Totem *totem) /* Work out an icon to display */ icon = g_volume_get_icon (i->data); icon_name = NULL; - icon_names = g_themed_icon_get_names (G_THEMED_ICON (icon)); - for (j = 0; icon_names[j] != NULL; j++) { - icon_name = icon_names[j]; - if (gtk_icon_theme_has_icon (theme, icon_name) != FALSE) - break; + if (G_IS_EMBLEMED_ICON (icon) != FALSE) { + GIcon *new_icon; + new_icon = g_emblemed_icon_get_icon (G_EMBLEMED_ICON (icon)); + g_object_unref (icon); + icon = new_icon; + } + + if (G_IS_THEMED_ICON (icon)) { + icon_names = g_themed_icon_get_names (G_THEMED_ICON (icon)); + + for (j = 0; icon_names[j] != NULL; j++) { + icon_name = icon_names[j]; + if (gtk_icon_theme_has_icon (theme, icon_name) != FALSE) + break; + } } /* Get the volume's pretty name for the menu label */ -- 1.6.2.5 Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/F-11/totem.spec,v retrieving revision 1.238 retrieving revision 1.239 diff -u -p -r1.238 -r1.239 --- totem.spec 30 Jun 2009 09:12:25 -0000 1.238 +++ totem.spec 31 Jul 2009 18:08:13 -0000 1.239 @@ -9,7 +9,7 @@ Summary: Movie player for GNOME Name: totem Version: 2.26.3 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ with exceptions Group: Applications/Multimedia URL: http://projects.gnome.org/totem/ @@ -17,6 +17,7 @@ Source0: http://download.gnome.org/sourc Source1: totem-bin-backend-ondemand.sh # Will be removed when we switch to playbin2 Patch0: totem-use-pulsesink-volume.patch +Patch1: 0001-Fix-crash-when-a-storage-volume-has-an-emblem.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires(pre): GConf2 >= 2.14 @@ -211,6 +212,7 @@ audio and video files in the properties pushd totem-%{version}/ %patch0 -p0 -b .pulsesink-vol popd +%patch1 -p1 -b .emblemed-drive-crash # Whatever needs to be changed in both copies do here ## remember to update me when changing %doc for i in AUTHORS COPYING NEWS README TODO;do @@ -483,6 +485,9 @@ fi %endif %changelog +* Fri Jul 31 2009 Bastien Nocera 2.26.3-2 +- Fix crash when a drive has an emblemed icon (#514914) + * Tue Jun 30 2009 Bastien Nocera 2.26.3-1 - Update to 2.26.3 From peter at fedoraproject.org Fri Jul 31 18:12:39 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:12:39 +0000 (UTC) Subject: rpms/irqbalance/F-10 irqbalance.spec,1.54,1.55 Message-ID: <20090731181239.8BDD311C00CE@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10244/F-10 Modified Files: irqbalance.spec Log Message: added back accidentally removed imake Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-10/irqbalance.spec,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- irqbalance.spec 31 Jul 2009 18:03:37 -0000 1.54 +++ irqbalance.spec 31 Jul 2009 18:12:39 -0000 1.55 @@ -1,7 +1,7 @@ Summary: IRQ balancing daemon Name: irqbalance Version: 0.55 -Release: 17%{?dist} +Release: 18%{?dist} Epoch: 2 Group: System Environment/Base License: GPLv2 @@ -17,7 +17,7 @@ Requires(preun):chkconfig ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig +BuildRequires: glib2-devel pkgconfig imake Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -73,6 +73,9 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-18 +- Added back accidentaly forgotten imake + * Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 - Cosmetic fixes in spec-file - Fixed rpmlint error in the init-script From peter at fedoraproject.org Fri Jul 31 18:12:39 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:12:39 +0000 (UTC) Subject: rpms/irqbalance/F-11 irqbalance.spec,1.56,1.57 Message-ID: <20090731181239.ABDF811C00CE@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10244/F-11 Modified Files: irqbalance.spec Log Message: added back accidentally removed imake Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/F-11/irqbalance.spec,v retrieving revision 1.56 retrieving revision 1.57 diff -u -p -r1.56 -r1.57 --- irqbalance.spec 31 Jul 2009 18:02:45 -0000 1.56 +++ irqbalance.spec 31 Jul 2009 18:12:39 -0000 1.57 @@ -1,7 +1,7 @@ Summary: IRQ balancing daemon Name: irqbalance Version: 0.55 -Release: 17%{?dist} +Release: 18%{?dist} Epoch: 2 Group: System Environment/Base License: GPLv2 @@ -17,7 +17,7 @@ Requires(preun):chkconfig ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig +BuildRequires: glib2-devel pkgconfig imake Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -73,6 +73,9 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-18 +- Added back accidentaly forgotten imake + * Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 - Cosmetic fixes in spec-file - Fixed rpmlint error in the init-script From peter at fedoraproject.org Fri Jul 31 18:12:39 2009 From: peter at fedoraproject.org (Peter Lemenkov) Date: Fri, 31 Jul 2009 18:12:39 +0000 (UTC) Subject: rpms/irqbalance/devel irqbalance.spec,1.57,1.58 Message-ID: <20090731181239.CE33411C00D4@cvs1.fedora.phx.redhat.com> Author: peter Update of /cvs/pkgs/rpms/irqbalance/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10244/devel Modified Files: irqbalance.spec Log Message: added back accidentally removed imake Index: irqbalance.spec =================================================================== RCS file: /cvs/pkgs/rpms/irqbalance/devel/irqbalance.spec,v retrieving revision 1.57 retrieving revision 1.58 diff -u -p -r1.57 -r1.58 --- irqbalance.spec 31 Jul 2009 18:01:38 -0000 1.57 +++ irqbalance.spec 31 Jul 2009 18:12:39 -0000 1.58 @@ -1,7 +1,7 @@ Summary: IRQ balancing daemon Name: irqbalance Version: 0.55 -Release: 17%{?dist} +Release: 18%{?dist} Epoch: 2 Group: System Environment/Base License: GPLv2 @@ -17,7 +17,7 @@ Requires(preun):chkconfig ExclusiveArch: %{ix86} x86_64 ia64 ppc ppc64 Obsoletes: kernel-utils -BuildRequires: glib2-devel pkgconfig +BuildRequires: glib2-devel pkgconfig imake Patch0: irqbalance-pie.patch Patch1: irqbalance-0.55-cputree-parse.patch @@ -73,6 +73,9 @@ exit 0 %changelog +* Fri Jul 31 2009 Peter Lemenkov - 2:0.55-18 +- Added back accidentaly forgotten imake + * Fri Jul 31 2009 Peter Lemenkov - 2:0.55-17 - Cosmetic fixes in spec-file - Fixed rpmlint error in the init-script From sandeen at fedoraproject.org Fri Jul 31 18:26:37 2009 From: sandeen at fedoraproject.org (Eric Sandeen) Date: Fri, 31 Jul 2009 18:26:37 +0000 (UTC) Subject: rpms/fio/devel .cvsignore, 1.9, 1.10 fio.spec, 1.10, 1.11 sources, 1.9, 1.10 Message-ID: <20090731182637.BB4F711C00CE@cvs1.fedora.phx.redhat.com> Author: sandeen Update of /cvs/pkgs/rpms/fio/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15015 Modified Files: .cvsignore fio.spec sources Log Message: * Fri Jul 31 2009 Eric Sandeen 1.32-1 - New upstream version Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 11 Jul 2009 16:13:33 -0000 1.9 +++ .cvsignore 31 Jul 2009 18:26:37 -0000 1.10 @@ -1 +1 @@ -fio-1.31.tar.bz2 +fio-1.32.tar.bz2 Index: fio.spec =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/fio.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- fio.spec 24 Jul 2009 22:47:47 -0000 1.10 +++ fio.spec 31 Jul 2009 18:26:37 -0000 1.11 @@ -1,6 +1,6 @@ Name: fio -Version: 1.31 -Release: 2%{?dist} +Version: 1.32 +Release: 1%{?dist} Summary: Multithreaded IO generation tool Group: Applications/System @@ -40,6 +40,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/* %changelog +* Fri Jul 31 2009 Eric Sandeen 1.32-1 +- New upstream version + * Fri Jul 24 2009 Fedora Release Engineering - 1.31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/fio/devel/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 11 Jul 2009 16:13:34 -0000 1.9 +++ sources 31 Jul 2009 18:26:37 -0000 1.10 @@ -1 +1 @@ -23b305d4f878d3bb7d62b3bd2c80b018 fio-1.31.tar.bz2 +59ae314ab7662b13bc00c7d6c9557ac7 fio-1.32.tar.bz2 From dbhole at fedoraproject.org Fri Jul 31 18:35:11 2009 From: dbhole at fedoraproject.org (Deepak Bhole) Date: Fri, 31 Jul 2009 18:35:11 +0000 (UTC) Subject: rpms/tanukiwrapper/F-11 tanukiwrapper-compilewithfpic.patch, NONE, 1.1 tanukiwrapper.spec, 1.30, 1.31 Message-ID: <20090731183511.BF6DC11C00CE@cvs1.fedora.phx.redhat.com> Author: dbhole Update of /cvs/pkgs/rpms/tanukiwrapper/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18687 Modified Files: tanukiwrapper.spec Added Files: tanukiwrapper-compilewithfpic.patch Log Message: - Fix bug #480189 Compile files with -fPIC tanukiwrapper-compilewithfpic.patch: Makefile-linux-ppc-64 | 2 +- Makefile-linux-x86-32 | 2 +- Makefile-linux-x86-64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE tanukiwrapper-compilewithfpic.patch --- diff -up ./src/c/Makefile-linux-ppc-64.sav ./src/c/Makefile-linux-ppc-64 --- ./src/c/Makefile-linux-ppc-64.sav 2009-07-31 12:18:21.000000000 -0400 +++ ./src/c/Makefile-linux-ppc-64 2009-07-31 12:18:31.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-32.sav ./src/c/Makefile-linux-x86-32 --- ./src/c/Makefile-linux-x86-32.sav 2009-07-31 12:17:28.000000000 -0400 +++ ./src/c/Makefile-linux-x86-32 2009-07-31 12:19:11.000000000 -0400 @@ -31,7 +31,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-64.sav ./src/c/Makefile-linux-x86-64 --- ./src/c/Makefile-linux-x86-64.sav 2009-07-31 12:17:40.000000000 -0400 +++ ./src/c/Makefile-linux-x86-64 2009-07-31 12:19:41.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ Index: tanukiwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/tanukiwrapper/F-11/tanukiwrapper.spec,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -r1.30 -r1.31 --- tanukiwrapper.spec 25 Feb 2009 18:28:55 -0000 1.30 +++ tanukiwrapper.spec 31 Jul 2009 18:35:11 -0000 1.31 @@ -34,7 +34,7 @@ Name: tanukiwrapper Version: 3.2.3 -Release: 3.3%{?dist} +Release: 3.4%{?dist} Summary: Java Service Wrapper Epoch: 0 License: BSD @@ -47,6 +47,7 @@ Patch3: %{name}-makefile-linux-x86-32.p Patch4: %{name}-Makefile-s390-s390x-ppc.patch # The following patch is only needed for GCJ. Patch5: %{name}-nosun-jvm-64.patch +Patch6: %{name}-compilewithfpic.patch Group: Development/Java BuildRequires: jpackage-utils >= 0:1.6 BuildRequires: glibc-devel @@ -106,6 +107,7 @@ Group: Development/Documentatio %if %{gcj_support} %patch5 %endif +%patch6 find . -name "*.jar" -exec %__rm -f {} \; %__perl -p -i -e 's/\r//' doc/AUTHORS %__perl -p -i -e 's|-O3|%optflags|' src/c/Makefile* @@ -202,6 +204,9 @@ fi %doc doc/* %changelog +* Fri Jul 31 2009 Deepak Bhole - 0:3.2.3-3.4 +- Fix bug #480189 Compile files with -fPIC + * Wed Feb 25 2009 Fedora Release Engineering - 0:3.2.3-3.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From hadess at fedoraproject.org Fri Jul 31 18:35:19 2009 From: hadess at fedoraproject.org (Bastien Nocera) Date: Fri, 31 Jul 2009 18:35:19 +0000 (UTC) Subject: rpms/totem/F-11 totem.spec,1.239,1.240 Message-ID: <20090731183519.D081F11C00CE@cvs1.fedora.phx.redhat.com> Author: hadess Update of /cvs/pkgs/rpms/totem/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18835 Modified Files: totem.spec Log Message: Fix patch application Index: totem.spec =================================================================== RCS file: /cvs/pkgs/rpms/totem/F-11/totem.spec,v retrieving revision 1.239 retrieving revision 1.240 diff -u -p -r1.239 -r1.240 --- totem.spec 31 Jul 2009 18:08:13 -0000 1.239 +++ totem.spec 31 Jul 2009 18:35:19 -0000 1.240 @@ -211,8 +211,8 @@ audio and video files in the properties %setup -q -c pushd totem-%{version}/ %patch0 -p0 -b .pulsesink-vol -popd %patch1 -p1 -b .emblemed-drive-crash +popd # Whatever needs to be changed in both copies do here ## remember to update me when changing %doc for i in AUTHORS COPYING NEWS README TODO;do From dbhole at fedoraproject.org Fri Jul 31 18:35:57 2009 From: dbhole at fedoraproject.org (Deepak Bhole) Date: Fri, 31 Jul 2009 18:35:57 +0000 (UTC) Subject: rpms/tanukiwrapper/F-10 tanukiwrapper-compilewithfpic.patch, NONE, 1.1 tanukiwrapper.spec, 1.29, 1.30 Message-ID: <20090731183557.C562711C00CE@cvs1.fedora.phx.redhat.com> Author: dbhole Update of /cvs/pkgs/rpms/tanukiwrapper/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19194 Modified Files: tanukiwrapper.spec Added Files: tanukiwrapper-compilewithfpic.patch Log Message: - Fix bug #480189 Compile files with -fPIC tanukiwrapper-compilewithfpic.patch: Makefile-linux-ppc-64 | 2 +- Makefile-linux-x86-32 | 2 +- Makefile-linux-x86-64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- NEW FILE tanukiwrapper-compilewithfpic.patch --- diff -up ./src/c/Makefile-linux-ppc-64.sav ./src/c/Makefile-linux-ppc-64 --- ./src/c/Makefile-linux-ppc-64.sav 2009-07-31 12:18:21.000000000 -0400 +++ ./src/c/Makefile-linux-ppc-64 2009-07-31 12:18:31.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-32.sav ./src/c/Makefile-linux-x86-32 --- ./src/c/Makefile-linux-x86-32.sav 2009-07-31 12:17:28.000000000 -0400 +++ ./src/c/Makefile-linux-x86-32 2009-07-31 12:19:11.000000000 -0400 @@ -31,7 +31,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ diff -up ./src/c/Makefile-linux-x86-64.sav ./src/c/Makefile-linux-x86-64 --- ./src/c/Makefile-linux-x86-64.sav 2009-07-31 12:17:40.000000000 -0400 +++ ./src/c/Makefile-linux-x86-64 2009-07-31 12:19:41.000000000 -0400 @@ -33,7 +33,7 @@ libwrapper.so: $(libwrapper_so_OBJECTS) %.o: %.c @echo '$(COMPILE) -c $<'; \ - $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< + $(COMPILE) $(DEFS) -fPIC -Wp,-MD,.deps/$(*F).pp -c $< @-cp .deps/$(*F).pp .deps/$(*F).P; \ tr ' ' '\012' < .deps/$(*F).pp \ | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ Index: tanukiwrapper.spec =================================================================== RCS file: /cvs/pkgs/rpms/tanukiwrapper/F-10/tanukiwrapper.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- tanukiwrapper.spec 24 Sep 2008 14:58:04 -0000 1.29 +++ tanukiwrapper.spec 31 Jul 2009 18:35:57 -0000 1.30 @@ -34,7 +34,7 @@ Name: tanukiwrapper Version: 3.2.3 -Release: 2.3%{?dist} +Release: 2.4%{?dist} Summary: Java Service Wrapper Epoch: 0 License: BSD @@ -47,6 +47,7 @@ Patch3: %{name}-makefile-linux-x86-32.p Patch4: %{name}-Makefile-s390-s390x-ppc.patch # The following patch is only needed for GCJ. Patch5: %{name}-nosun-jvm-64.patch +Patch6: %{name}-compilewithfpic.patch Group: Development/Java BuildRequires: jpackage-utils >= 0:1.6 BuildRequires: glibc-devel @@ -106,6 +107,7 @@ Group: Development/Documentatio %if %{gcj_support} %patch5 %endif +%patch6 find . -name "*.jar" -exec %__rm -f {} \; %__perl -p -i -e 's/\r//' doc/AUTHORS %__perl -p -i -e 's|-O3|%optflags|' src/c/Makefile* @@ -202,6 +204,9 @@ fi %doc doc/* %changelog +* Fri Jul 31 2009 Deepak Bhole - 0:3.2.3-2.4 +- Fix bug #480189 Compile files with -fPIC + * Wed Sep 24 2008 Deepak Bhole 3.2.3-2.3 - Update nosun-jvm-64.patch to remove fuzz From jnovy at fedoraproject.org Fri Jul 31 18:40:04 2009 From: jnovy at fedoraproject.org (Jindrich Novy) Date: Fri, 31 Jul 2009 18:40:04 +0000 (UTC) Subject: rpms/mc/devel .cvsignore, 1.37, 1.38 mc-exit.patch, 1.1, 1.2 mc-prompt.patch, 1.2, 1.3 mc.spec, 1.143, 1.144 sources, 1.45, 1.46 mc-4.6.2-utf8.patch, 1.1, NONE mc-64bit.patch, 1.3, NONE mc-cedit-configurable-highlight.patch, 1.1, NONE mc-cedit.patch, 1.1, NONE mc-delcheck.patch, 1.2, NONE mc-edit-segv.patch, 1.1, NONE mc-etcmc.patch, 1.2, NONE mc-extensions.patch, 1.13, NONE mc-hintchk.patch, 1.1, NONE mc-lzma.patch, 1.2, NONE mc-ministatus.patch, 1.1, NONE mc-newlinedir.patch, 1.2, NONE mc-oldrpmtags.patch, 1.1, NONE mc-refresh.patch, 1.1, NONE mc-shellcwd.patch, 1.1, NONE mc-showfree.patch, 1.12, NONE mc-spaceprompt.patch, 1.2, NONE mc-userhost.patch, 1.5, NONE Message-ID: <20090731184004.EFF7011C04D5@cvs1.fedora.phx.redhat.com> Author: jnovy Update of /cvs/pkgs/rpms/mc/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20518 Modified Files: .cvsignore mc-exit.patch mc-prompt.patch mc.spec sources Removed Files: mc-4.6.2-utf8.patch mc-64bit.patch mc-cedit-configurable-highlight.patch mc-cedit.patch mc-delcheck.patch mc-edit-segv.patch mc-etcmc.patch mc-extensions.patch mc-hintchk.patch mc-lzma.patch mc-ministatus.patch mc-newlinedir.patch mc-oldrpmtags.patch mc-refresh.patch mc-shellcwd.patch mc-showfree.patch mc-spaceprompt.patch mc-userhost.patch Log Message: * Fri Jul 31 2009 Jindrich Novy 4.6.99-0.20090731git - update to latest GIT mc - forwardport prompt fix and exit patch, keep IPv6 patch and drop the others Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/.cvsignore,v retrieving revision 1.37 retrieving revision 1.38 diff -u -p -r1.37 -r1.38 --- .cvsignore 27 May 2009 05:49:12 -0000 1.37 +++ .cvsignore 31 Jul 2009 18:40:03 -0000 1.38 @@ -1 +1 @@ -mc-4.6.2.tar.gz +mc-4.6.99-20090731git.tar.bz2 mc-exit.patch: command.c | 5 +++++ 1 file changed, 5 insertions(+) Index: mc-exit.patch =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/mc-exit.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mc-exit.patch 15 Aug 2006 11:00:45 -0000 1.1 +++ mc-exit.patch 31 Jul 2009 18:40:04 -0000 1.2 @@ -1,14 +1,15 @@ ---- mc-2006-08-12-18/src/command.c.exit 2005-06-07 16:16:19.000000000 +0200 -+++ mc-2006-08-12-18/src/command.c 2006-08-15 12:48:12.000000000 +0200 -@@ -214,6 +214,11 @@ +diff -up mc-4.6.99/src/command.c.exit mc-4.6.99/src/command.c +--- mc-4.6.99/src/command.c.exit 2009-07-31 19:27:10.000000000 +0200 ++++ mc-4.6.99/src/command.c 2009-07-31 20:08:01.000000000 +0200 +@@ -224,6 +224,11 @@ enter (WInput *cmdline) size_t i, j, cmd_len; if (!vfs_current_is_local ()) { -+ if (strcmp (cmd, "exit") == 0) { -+ quiet_quit_cmd (); -+ return MSG_HANDLED; -+ } ++ if (strcmp (cmd, "exit") == 0) { ++ quiet_quit_cmd (); ++ return MSG_HANDLED; ++ } + - message (1, MSG_ERROR, + message (D_ERROR, MSG_ERROR, _ (" Cannot execute commands on non-local filesystems")); mc-prompt.patch: execute.c | 2 ++ main.c | 2 +- subshell.c | 39 ++++++++++++++++++++++++++++++++------- subshell.h | 3 +++ 4 files changed, 38 insertions(+), 8 deletions(-) Index: mc-prompt.patch =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/mc-prompt.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- mc-prompt.patch 20 Jun 2007 14:39:18 -0000 1.2 +++ mc-prompt.patch 31 Jul 2009 18:40:04 -0000 1.3 @@ -1,6 +1,7 @@ ---- mc-2007-06-04-22/src/execute.c.prompt 2005-09-28 23:28:06.000000000 +0200 -+++ mc-2007-06-04-22/src/execute.c 2007-06-20 14:07:17.000000000 +0200 -@@ -140,6 +140,8 @@ do_execute (const char *shell, const cha +diff -up mc-4.6.99/src/execute.c.prompt mc-4.6.99/src/execute.c +--- mc-4.6.99/src/execute.c.prompt 2009-07-31 14:57:10.000000000 +0200 ++++ mc-4.6.99/src/execute.c 2009-07-31 14:58:21.000000000 +0200 +@@ -146,6 +146,8 @@ do_execute (const char *shell, const cha printf ("\r\n"); fflush (stdout); } @@ -9,9 +10,10 @@ if (console_flag) { if (output_lines && keybar_visible) { putchar ('\n'); ---- mc-2007-06-04-22/src/main.c.prompt 2007-06-20 14:07:17.000000000 +0200 -+++ mc-2007-06-04-22/src/main.c 2007-06-20 14:07:17.000000000 +0200 -@@ -454,7 +454,7 @@ void +diff -up mc-4.6.99/src/main.c.prompt mc-4.6.99/src/main.c +--- mc-4.6.99/src/main.c.prompt 2009-07-31 14:57:10.000000000 +0200 ++++ mc-4.6.99/src/main.c 2009-07-31 14:58:21.000000000 +0200 +@@ -459,7 +459,7 @@ void do_update_prompt (void) { if (update_prompt) { @@ -20,21 +22,10 @@ fflush (stdout); update_prompt = 0; } ---- mc-2007-06-04-22/src/subshell.h.prompt 2004-12-03 20:17:47.000000000 +0100 -+++ mc-2007-06-04-22/src/subshell.h 2007-06-20 14:07:17.000000000 +0200 -@@ -20,6 +20,9 @@ extern enum subshell_state_enum subshell - /* Holds the latest prompt captured from the subshell */ - extern char *subshell_prompt; - -+/* Holds the latest prompt captured from the subshell with terminal codes */ -+extern char *original_subshell_prompt; -+ - /* For the `how' argument to various functions */ - enum {QUIETLY, VISIBLY}; - ---- mc-2007-06-04-22/src/subshell.c.prompt 2007-06-20 14:07:17.000000000 +0200 -+++ mc-2007-06-04-22/src/subshell.c 2007-06-20 14:24:14.000000000 +0200 -@@ -107,6 +107,9 @@ enum subshell_state_enum subshell_state; +diff -up mc-4.6.99/src/subshell.c.prompt mc-4.6.99/src/subshell.c +--- mc-4.6.99/src/subshell.c.prompt 2009-07-31 14:57:11.000000000 +0200 ++++ mc-4.6.99/src/subshell.c 2009-07-31 15:02:35.000000000 +0200 +@@ -114,6 +114,9 @@ enum subshell_state_enum subshell_state; /* Holds the latest prompt captured from the subshell */ char *subshell_prompt = NULL; @@ -44,7 +35,7 @@ /* Initial length of the buffer for the subshell's prompt */ #define INITIAL_PROMPT_SIZE 10 -@@ -148,6 +151,7 @@ static struct termios raw_mode; +@@ -160,6 +163,7 @@ static struct termios raw_mode; /* This counter indicates how many characters of prompt we have read */ /* FIXME: try to figure out why this had to become global */ static int prompt_pos; @@ -52,7 +43,7 @@ /* -@@ -567,6 +571,7 @@ int invoke_subshell (const char *command +@@ -598,6 +602,7 @@ int invoke_subshell (const char *command init_subshell (); prompt_pos = 0; @@ -60,7 +51,7 @@ return quit; } -@@ -576,6 +581,7 @@ int +@@ -607,6 +612,7 @@ int read_subshell_prompt (void) { static int prompt_size = INITIAL_PROMPT_SIZE; @@ -68,7 +59,7 @@ int bytes = 0, i, rc = 0; struct timeval timeleft = { 0, 0 }; -@@ -586,7 +592,10 @@ read_subshell_prompt (void) +@@ -617,7 +623,10 @@ read_subshell_prompt (void) if (subshell_prompt == NULL) { /* First time through */ subshell_prompt = g_malloc (prompt_size); *subshell_prompt = '\0'; @@ -79,7 +70,7 @@ } while (subshell_alive -@@ -607,20 +616,27 @@ read_subshell_prompt (void) +@@ -638,20 +647,27 @@ read_subshell_prompt (void) /* Extract the prompt from the shell output */ @@ -111,16 +102,15 @@ } if (rc == 0 && bytes == 0) return FALSE; -@@ -743,6 +759,8 @@ subshell_name_quote (const char *s) - void - do_subshell_chdir (const char *directory, int do_update, int reset_prompt) - { +@@ -792,6 +808,7 @@ do_subshell_chdir (const char *directory + char *pcwd; + char *temp; + char *translate; + static char *old_subshell_prompt = NULL; -+ - if (! - (subshell_state == INACTIVE - && strcmp (subshell_cwd, current_panel->cwd))) { -@@ -750,8 +768,14 @@ do_subshell_chdir (const char *directory + + pcwd = vfs_translate_path_n (current_panel->cwd); + +@@ -802,8 +819,14 @@ do_subshell_chdir (const char *directory * the main program. Please note that in the code after this * if, the cd command that is sent will make the subshell * repaint the prompt, so we don't have to paint it. */ @@ -129,15 +119,15 @@ + if (do_update) { + if (old_subshell_prompt == NULL + || strcmp (old_subshell_prompt, original_subshell_prompt)) { -+ g_free (old_subshell_prompt); -+ old_subshell_prompt = g_strdup (original_subshell_prompt); -+ do_update_prompt (); ++ g_free (old_subshell_prompt); ++ old_subshell_prompt = g_strdup (original_subshell_prompt); ++ do_update_prompt (); + } + } + g_free (pcwd); return; } - -@@ -802,8 +826,10 @@ do_subshell_chdir (const char *directory +@@ -861,8 +884,10 @@ do_subshell_chdir (const char *directory } } @@ -147,5 +137,18 @@ + original_prompt_pos = 0; + } update_prompt = FALSE; - /* Make sure that MC never stores the CWD in a silly format */ - /* like /usr////lib/../bin, or the strcmp() above will fail */ + + g_free (pcwd); +diff -up mc-4.6.99/src/subshell.h.prompt mc-4.6.99/src/subshell.h +--- mc-4.6.99/src/subshell.h.prompt 2009-07-31 14:57:10.000000000 +0200 ++++ mc-4.6.99/src/subshell.h 2009-07-31 14:58:21.000000000 +0200 +@@ -25,6 +25,9 @@ extern enum subshell_state_enum subshell + /* Holds the latest prompt captured from the subshell */ + extern char *subshell_prompt; + ++/* Holds the latest prompt captured from the subshell with terminal codes */ ++extern char *original_subshell_prompt; ++ + /* For the `how' argument to various functions */ + enum {QUIETLY, VISIBLY}; + Index: mc.spec =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/mc.spec,v retrieving revision 1.143 retrieving revision 1.144 diff -u -p -r1.143 -r1.144 --- mc.spec 25 Jul 2009 11:54:02 -0000 1.143 +++ mc.spec 31 Jul 2009 18:40:04 -0000 1.144 @@ -1,38 +1,23 @@ +%define alphatag 20090731git + Summary: User-friendly text console file manager and visual shell Name: mc -Version: 4.6.2 -Release: 12%{?dist} +Version: 4.6.99 +Release: 0.%{alphatag}%{?dist} Epoch: 1 License: GPLv2 Group: System Environment/Shells -# tarball from http://www.midnight-commander.org/downloads/3 -Source0: mc-%{version}.tar.gz +# tarball created from git clone git://midnight-commander.org/git/mc.git +Source0: mc-%{version}-%{alphatag}.tar.bz2 URL: http://www.midnight-commander.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: glib2-devel e2fsprogs-devel slang-devel -BuildRequires: gettext cvs automake autoconf -Requires: dev >= 0:3.3-3 +BuildRequires: gettext cvs automake autoconf libtool +Requires: dev >= 3.3-3 -# UTF-8 patch from http://www.midnight-commander.org/downloads/4 -Patch0: mc-4.6.2-utf8.patch -Patch1: mc-extensions.patch -Patch2: mc-userhost.patch -Patch3: mc-64bit.patch -Patch6: mc-showfree.patch -Patch7: mc-cedit.patch -Patch8: mc-delcheck.patch -Patch9: mc-etcmc.patch -Patch10: mc-exit.patch -Patch12: mc-ipv6.patch -Patch13: mc-newlinedir.patch -Patch15: mc-prompt.patch -Patch16: mc-refresh.patch -Patch18: mc-lzma.patch -Patch19: mc-hintchk.patch -Patch21: mc-oldrpmtags.patch -Patch22: mc-shellcwd.patch -Patch23: mc-cedit-configurable-highlight.patch -Patch24: mc-edit-segv.patch +Patch1: mc-ipv6.patch +Patch2: mc-prompt.patch +Patch3: mc-exit.patch %description Midnight Commander is a visual shell much like a file manager, only @@ -43,88 +28,13 @@ specific files. %prep %setup -q -%patch0 -p1 -b .utf8 -%patch1 -p1 -b .extensions -%patch2 -p1 -b .userhost -%patch3 -p1 -b .64bit -%patch6 -p1 -b .showfree -%patch7 -p1 -b .cedit -%patch8 -p1 -b .delcheck -%patch9 -p1 -b .etcmc -%patch10 -p1 -b .exit -%patch12 -p1 -b .ipv6 -%patch13 -p1 -b .newlinedir -%patch15 -p1 -b .prompt -%patch16 -p1 -b .refresh -%patch18 -p1 -b .lzmavfs -%patch19 -p1 -b .hintchk -%patch21 -p1 -b .oldrpmtags -%patch22 -p1 -b .shellcwd -%patch23 -p1 -b .cedit-configurable-highlight -%patch24 -p1 -b .edit-segv - -# convert files in /lib to UTF-8 -pushd lib -for i in mc.hint mc.hint.es mc.hint.it mc.hint.nl; do - iconv -f iso-8859-1 -t utf-8 < ${i} > ${i}.tmp - mv -f ${i}.tmp ${i} -done - -for i in mc.hint.cs mc.hint.hu mc.hint.pl; do - iconv -f iso-8859-2 -t utf-8 < ${i} > ${i}.tmp - mv -f ${i}.tmp ${i} -done - -for i in mc.hint.sr mc.menu.sr; do - iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp - mv -f ${i}.tmp ${i} -done - -iconv -f koi8-r -t utf8 < mc.hint.ru > mc.hint.ru.tmp -mv -f mc.hint.ru.tmp mc.hint.ru -iconv -f koi8-u -t utf8 < mc.hint.uk > mc.hint.uk.tmp -mv -f mc.hint.uk.tmp mc.hint.uk -iconv -f big5 -t utf8 < mc.hint.zh > mc.hint.zh.tmp -mv -f mc.hint.zh.tmp mc.hint.zh -popd - - -# convert man pages in /doc to UTF-8 -pushd doc - -pushd ru -for i in mc.1.in xnc.hlp; do - iconv -f koi8-r -t utf-8 < ${i} > ${i}.tmp - mv -f ${i}.tmp ${i} -done -popd - -pushd sr -for i in mc.1.in mcserv.8.in xnc.hlp; do - iconv -f iso-8859-5 -t utf-8 < ${i} > ${i}.tmp - mv -f ${i}.tmp ${i} -done -popd - -for d in es it; do - for i in mc.1.in xnc.hlp; do - iconv -f iso-8859-3 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp - mv -f ${d}/${i}.tmp ${d}/${i} - done -done - -for d in hu pl; do - for i in mc.1.in xnc.hlp; do - iconv -f iso-8859-2 -t utf-8 < ${d}/${i} > ${d}/${i}.tmp - mv -f ${d}/${i}.tmp ${d}/${i} - done -done - -popd +%patch1 -p1 -b .ipv6 +%patch2 -p1 -b .prompt +%patch3 -p1 -b .exit %build ./autogen.sh -export CFLAGS="-DUTF8=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $RPM_OPT_FLAGS -fgnu89-inline" +export CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $RPM_OPT_FLAGS" %configure --with-screen=slang \ --enable-charset \ --with-samba \ @@ -134,33 +44,13 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/profile.d -install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/mc -install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/mc/extfs -install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/mc/syntax make install DESTDIR="$RPM_BUILD_ROOT" -install lib/{mc.sh,mc.csh} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d - -# move configuration files to /etc/mc to make it FHS compliant (#2188) -mv -f $RPM_BUILD_ROOT%{_datadir}/mc/{cedit.menu,edit.indent.rc,edit.spell.rc,\ -mc.ext,mc.lib,mc.menu,mc.charsets} $RPM_BUILD_ROOT%{_sysconfdir}/mc -mv -f $RPM_BUILD_ROOT%{_datadir}/mc/extfs/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/mc/extfs -mv -f $RPM_BUILD_ROOT%{_datadir}/mc/syntax/Syntax $RPM_BUILD_ROOT%{_sysconfdir}/mc/syntax - -# install man pages in various languages -for l in es hu it pl ru sr; do -mkdir -p $RPM_BUILD_ROOT%{_mandir}/${l} -mkdir -p $RPM_BUILD_ROOT%{_mandir}/${l}/man1 -install -m 644 doc/${l}/mc.1 $RPM_BUILD_ROOT%{_mandir}/${l}/man1 -done - -for I in /etc/pam.d/mcserv \ - /etc/rc.d/init.d/mcserv \ - /etc/mc.global; do - rm -rf ${RPM_BUILD_ROOT}${I} -done +install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/profile.d +install contrib/{mc.sh,mc.csh} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d +#mkdir -p $RPM_BUILD_ROOT%{_datadir}/mc/bin +#mv $RPM_BUILD_ROOT%{_libexecdir}/mc/{mc.sh,mc.csh,mc-wrapper.sh,mc-wrapper.csh} $RPM_BUILD_ROOT%{_datadir}/mc/bin %find_lang %{name} @@ -169,14 +59,14 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-, root, root) - -%doc FAQ COPYING NEWS README +%doc doc/FAQ doc/COPYING doc/NEWS doc/README %{_bindir}/mc %{_bindir}/mcedit %{_bindir}/mcmfmt %{_bindir}/mcview %{_datadir}/mc/* %attr(4711, vcsa, root) %{_libexecdir}/mc/cons.saver +%{_libexecdir}/mc/mc* %{_mandir}/man1/* %lang(es) %{_mandir}/es/man1/mc.1* %lang(hu) %{_mandir}/hu/man1/mc.1* @@ -185,7 +75,7 @@ rm -rf $RPM_BUILD_ROOT %lang(ru) %{_mandir}/ru/man1/mc.1* %lang(sr) %{_mandir}/sr/man1/mc.1* %{_sysconfdir}/profile.d/* -%config %{_sysconfdir}/mc/syntax/Syntax +%config %{_sysconfdir}/mc/Syntax %config %{_sysconfdir}/mc/mc.charsets %config %{_sysconfdir}/mc/mc.lib %config(noreplace) %{_sysconfdir}/mc/*edit* @@ -195,11 +85,14 @@ rm -rf $RPM_BUILD_ROOT %config(noreplace) %{_sysconfdir}/mc/extfs/sfs.ini %dir %{_datadir}/mc %dir %{_sysconfdir}/mc -%dir %{_sysconfdir}/mc/syntax %dir %{_sysconfdir}/mc/extfs %dir %{_libexecdir}/mc %changelog +* Fri Jul 31 2009 Jindrich Novy 4.6.99-0.20090731git +- update to latest GIT mc +- forwardport prompt fix and exit patch, keep IPv6 patch and drop the others + * Sat Jul 25 2009 Fedora Release Engineering - 1:4.6.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/mc/devel/sources,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -r1.45 -r1.46 --- sources 27 May 2009 05:49:13 -0000 1.45 +++ sources 31 Jul 2009 18:40:04 -0000 1.46 @@ -1 +1 @@ -ec92966f4d0c8b50c344fe901859ae2a mc-4.6.2.tar.gz +9f705ec40a2551121ddf0f517c13d96b mc-4.6.99-20090731git.tar.bz2 --- mc-4.6.2-utf8.patch DELETED --- --- mc-64bit.patch DELETED --- --- mc-cedit-configurable-highlight.patch DELETED --- --- mc-cedit.patch DELETED --- --- mc-delcheck.patch DELETED --- --- mc-edit-segv.patch DELETED --- --- mc-etcmc.patch DELETED --- --- mc-extensions.patch DELETED --- --- mc-hintchk.patch DELETED --- --- mc-lzma.patch DELETED --- --- mc-ministatus.patch DELETED --- --- mc-newlinedir.patch DELETED --- --- mc-oldrpmtags.patch DELETED --- --- mc-refresh.patch DELETED --- --- mc-shellcwd.patch DELETED --- --- mc-showfree.patch DELETED --- --- mc-spaceprompt.patch DELETED --- --- mc-userhost.patch DELETED --- From notting at fedoraproject.org Fri Jul 31 18:41:28 2009 From: notting at fedoraproject.org (Bill Nottingham) Date: Fri, 31 Jul 2009 18:41:28 +0000 (UTC) Subject: rpms/mash/devel noautobuild,1.1,NONE Message-ID: <20090731184128.A331211C00CE@cvs1.fedora.phx.redhat.com> Author: notting Update of /cvs/extras/rpms/mash/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20988 Removed Files: noautobuild Log Message: Remove. --- noautobuild DELETED --- From pingou at fedoraproject.org Fri Jul 31 19:01:42 2009 From: pingou at fedoraproject.org (pingou) Date: Fri, 31 Jul 2009 19:01:42 +0000 (UTC) Subject: rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731190142.57CD811C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26300 Modified Files: .cvsignore sources Log Message: Update to 1.3.13 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 5 Jan 2008 18:22:42 -0000 1.1 +++ .cvsignore 31 Jul 2009 19:01:41 -0000 1.2 @@ -0,0 +1 @@ +BSgenome.Celegans.UCSC.ce2_1.3.13.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 5 Jan 2008 18:22:42 -0000 1.1 +++ sources 31 Jul 2009 19:01:42 -0000 1.2 @@ -0,0 +1 @@ +ed104a2f25f002cf6f6e2b918767a8c2 BSgenome.Celegans.UCSC.ce2_1.3.13.tar.gz From dwalsh at fedoraproject.org Fri Jul 31 19:05:35 2009 From: dwalsh at fedoraproject.org (Daniel J Walsh) Date: Fri, 31 Jul 2009 19:05:35 +0000 (UTC) Subject: rpms/selinux-policy/devel policy-F12.patch, 1.39, 1.40 selinux-policy.spec, 1.887, 1.888 Message-ID: <20090731190535.5139011C00CE@cvs1.fedora.phx.redhat.com> Author: dwalsh Update of /cvs/extras/rpms/selinux-policy/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27023 Modified Files: policy-F12.patch selinux-policy.spec Log Message: * Fri Jul 31 2009 Dan Walsh 3.6.26-3 - Allow svirt_t to stream_connect to virtd_t policy-F12.patch: Makefile | 2 Rules.modular | 8 config/appconfig-mcs/default_contexts | 19 config/appconfig-mcs/failsafe_context | 2 config/appconfig-mcs/root_default_contexts | 8 config/appconfig-mcs/securetty_types | 5 config/appconfig-mcs/seusers | 4 config/appconfig-mcs/staff_u_default_contexts | 4 config/appconfig-mcs/unconfined_u_default_contexts | 4 config/appconfig-mcs/user_u_default_contexts | 5 config/appconfig-mcs/userhelper_context | 2 config/appconfig-mcs/virtual_domain_context | 1 config/appconfig-mcs/virtual_image_context | 2 config/appconfig-mls/default_contexts | 19 config/appconfig-mls/root_default_contexts | 12 config/appconfig-mls/virtual_domain_context | 1 config/appconfig-mls/virtual_image_context | 2 config/appconfig-standard/securetty_types | 5 policy/global_tunables | 24 policy/mcs | 10 policy/modules/admin/anaconda.te | 1 policy/modules/admin/certwatch.te | 1 policy/modules/admin/dmesg.fc | 2 policy/modules/admin/dmesg.te | 7 policy/modules/admin/kismet.if | 1 policy/modules/admin/kismet.te | 17 policy/modules/admin/logrotate.te | 13 policy/modules/admin/logwatch.te | 1 policy/modules/admin/mrtg.te | 3 policy/modules/admin/prelink.if | 19 policy/modules/admin/readahead.te | 3 policy/modules/admin/rpm.fc | 15 policy/modules/admin/rpm.if | 176 ++ policy/modules/admin/rpm.te | 61 policy/modules/admin/sudo.if | 8 policy/modules/admin/tmpreaper.te | 4 policy/modules/admin/usermanage.te | 9 policy/modules/admin/vbetool.te | 8 policy/modules/apps/awstats.te | 2 policy/modules/apps/cpufreqselector.te | 4 policy/modules/apps/gitosis.fc | 4 policy/modules/apps/gitosis.if | 96 + policy/modules/apps/gitosis.te | 36 policy/modules/apps/gnome.fc | 12 policy/modules/apps/gnome.if | 170 ++ policy/modules/apps/gnome.te | 92 + policy/modules/apps/gpg.te | 15 policy/modules/apps/java.fc | 17 policy/modules/apps/java.if | 129 ++ policy/modules/apps/java.te | 17 policy/modules/apps/livecd.fc | 2 policy/modules/apps/livecd.if | 50 policy/modules/apps/livecd.te | 26 policy/modules/apps/mono.if | 101 + policy/modules/apps/mono.te | 9 policy/modules/apps/mozilla.if | 13 policy/modules/apps/mozilla.te | 21 policy/modules/apps/nsplugin.fc | 12 policy/modules/apps/nsplugin.if | 313 +++++ policy/modules/apps/nsplugin.te | 287 ++++ policy/modules/apps/openoffice.fc | 3 policy/modules/apps/openoffice.if | 93 + policy/modules/apps/openoffice.te | 14 policy/modules/apps/qemu.fc | 4 policy/modules/apps/qemu.if | 270 +++- policy/modules/apps/qemu.te | 82 + policy/modules/apps/sambagui.fc | 1 policy/modules/apps/sambagui.if | 2 policy/modules/apps/sambagui.te | 57 policy/modules/apps/sandbox.fc | 1 policy/modules/apps/sandbox.if | 145 ++ policy/modules/apps/sandbox.te | 274 ++++ policy/modules/apps/screen.if | 21 policy/modules/apps/vmware.fc | 1 policy/modules/apps/vmware.te | 1 policy/modules/apps/webalizer.te | 1 policy/modules/apps/wine.fc | 23 policy/modules/apps/wine.if | 60 policy/modules/apps/wine.te | 23 policy/modules/kernel/corecommands.fc | 21 policy/modules/kernel/corecommands.if | 1 policy/modules/kernel/corenetwork.te.in | 28 policy/modules/kernel/devices.fc | 2 policy/modules/kernel/devices.if | 146 ++ policy/modules/kernel/devices.te | 13 policy/modules/kernel/domain.if | 132 +- policy/modules/kernel/domain.te | 85 + policy/modules/kernel/files.fc | 3 policy/modules/kernel/files.if | 279 ++++ policy/modules/kernel/files.te | 5 policy/modules/kernel/filesystem.fc | 2 policy/modules/kernel/filesystem.if | 20 policy/modules/kernel/kernel.if | 39 policy/modules/kernel/kernel.te | 31 policy/modules/kernel/selinux.if | 25 policy/modules/kernel/terminal.fc | 1 policy/modules/kernel/terminal.if | 40 policy/modules/roles/guest.te | 8 policy/modules/roles/staff.te | 123 - policy/modules/roles/sysadm.te | 125 -- policy/modules/roles/unconfineduser.fc | 37 policy/modules/roles/unconfineduser.if | 638 ++++++++++ policy/modules/roles/unconfineduser.te | 395 ++++++ policy/modules/roles/unprivuser.te | 131 -- policy/modules/roles/webadm.te | 2 policy/modules/roles/xguest.te | 18 policy/modules/services/amavis.te | 2 policy/modules/services/apache.fc | 35 policy/modules/services/apache.if | 327 +++-- policy/modules/services/apache.te | 409 +++++- policy/modules/services/apm.te | 2 policy/modules/services/automount.te | 1 policy/modules/services/bind.if | 19 policy/modules/services/bluetooth.te | 1 policy/modules/services/certmaster.te | 2 policy/modules/services/clamav.te | 12 policy/modules/services/consolekit.if | 20 policy/modules/services/consolekit.te | 18 policy/modules/services/courier.if | 18 policy/modules/services/courier.te | 1 policy/modules/services/cron.fc | 13 policy/modules/services/cron.if | 202 ++- policy/modules/services/cron.te | 132 +- policy/modules/services/cups.fc | 7 policy/modules/services/cups.te | 13 policy/modules/services/cvs.te | 1 policy/modules/services/dbus.if | 22 policy/modules/services/dbus.te | 25 policy/modules/services/dcc.te | 8 policy/modules/services/ddclient.if | 25 policy/modules/services/devicekit.fc | 2 policy/modules/services/devicekit.if | 22 policy/modules/services/devicekit.te | 41 policy/modules/services/dnsmasq.te | 8 policy/modules/services/dovecot.te | 7 policy/modules/services/exim.te | 4 policy/modules/services/fetchmail.te | 2 policy/modules/services/fprintd.te | 2 policy/modules/services/ftp.te | 50 policy/modules/services/gnomeclock.fc | 3 policy/modules/services/gnomeclock.if | 69 + policy/modules/services/gnomeclock.te | 50 policy/modules/services/gpsd.fc | 5 policy/modules/services/gpsd.if | 27 policy/modules/services/gpsd.te | 12 policy/modules/services/hal.if | 18 policy/modules/services/hal.te | 38 policy/modules/services/kerberos.te | 13 policy/modules/services/ktalk.te | 1 policy/modules/services/lircd.te | 11 policy/modules/services/mailman.te | 4 policy/modules/services/memcached.te | 2 policy/modules/services/modemmanager.fc | 2 policy/modules/services/modemmanager.if | 43 policy/modules/services/modemmanager.te | 41 policy/modules/services/mta.fc | 2 policy/modules/services/mta.if | 5 policy/modules/services/mta.te | 52 policy/modules/services/munin.fc | 3 policy/modules/services/munin.te | 3 policy/modules/services/mysql.te | 4 policy/modules/services/nagios.fc | 11 policy/modules/services/nagios.if | 70 - policy/modules/services/nagios.te | 55 policy/modules/services/networkmanager.fc | 13 policy/modules/services/networkmanager.if | 45 policy/modules/services/networkmanager.te | 113 + policy/modules/services/nis.fc | 5 policy/modules/services/nis.if | 87 + policy/modules/services/nis.te | 13 policy/modules/services/nscd.if | 18 policy/modules/services/nscd.te | 11 policy/modules/services/nslcd.fc | 4 policy/modules/services/nslcd.if | 142 ++ policy/modules/services/nslcd.te | 50 policy/modules/services/ntp.if | 46 policy/modules/services/ntp.te | 7 policy/modules/services/nx.te | 6 policy/modules/services/oddjob.if | 1 policy/modules/services/openvpn.te | 1 policy/modules/services/pcscd.te | 3 policy/modules/services/pegasus.te | 28 policy/modules/services/policykit.fc | 4 policy/modules/services/policykit.if | 30 policy/modules/services/policykit.te | 36 policy/modules/services/postfix.fc | 2 policy/modules/services/postfix.if | 150 ++ policy/modules/services/postfix.te | 136 +- policy/modules/services/postgresql.fc | 1 policy/modules/services/postgresql.if | 43 policy/modules/services/postgresql.te | 7 policy/modules/services/ppp.if | 6 policy/modules/services/ppp.te | 14 policy/modules/services/privoxy.te | 3 policy/modules/services/procmail.te | 12 policy/modules/services/pyzor.fc | 4 policy/modules/services/pyzor.if | 47 policy/modules/services/pyzor.te | 37 policy/modules/services/razor.fc | 1 policy/modules/services/razor.if | 42 policy/modules/services/razor.te | 32 policy/modules/services/ricci.te | 4 policy/modules/services/rpc.if | 6 policy/modules/services/rpc.te | 8 policy/modules/services/rpcbind.if | 20 policy/modules/services/rsync.te | 22 policy/modules/services/rtkit_daemon.fc | 2 policy/modules/services/rtkit_daemon.if | 64 + policy/modules/services/rtkit_daemon.te | 36 policy/modules/services/samba.fc | 4 policy/modules/services/samba.if | 104 + policy/modules/services/samba.te | 78 + policy/modules/services/sasl.te | 15 policy/modules/services/sendmail.if | 137 ++ policy/modules/services/sendmail.te | 87 + policy/modules/services/setroubleshoot.fc | 2 policy/modules/services/setroubleshoot.if | 63 - policy/modules/services/setroubleshoot.te | 59 policy/modules/services/shorewall.fc | 12 policy/modules/services/shorewall.if | 166 ++ policy/modules/services/shorewall.te | 97 + policy/modules/services/smartmon.te | 12 policy/modules/services/spamassassin.fc | 14 policy/modules/services/spamassassin.if | 68 + policy/modules/services/spamassassin.te | 129 +- policy/modules/services/squid.te | 7 policy/modules/services/ssh.fc | 2 policy/modules/services/ssh.if | 163 ++ policy/modules/services/ssh.te | 66 - policy/modules/services/sssd.fc | 2 policy/modules/services/sssd.if | 43 policy/modules/services/uucp.te | 3 policy/modules/services/virt.fc | 11 policy/modules/services/virt.if | 106 + policy/modules/services/virt.te | 263 ++++ policy/modules/services/w3c.te | 7 policy/modules/services/xserver.fc | 28 policy/modules/services/xserver.if | 518 +++++++- policy/modules/services/xserver.te | 307 ++++ policy/modules/system/application.if | 20 policy/modules/system/application.te | 11 policy/modules/system/authlogin.fc | 9 policy/modules/system/authlogin.if | 203 ++- policy/modules/system/authlogin.te | 9 policy/modules/system/fstools.fc | 2 policy/modules/system/fstools.te | 9 policy/modules/system/hostname.te | 4 policy/modules/system/init.fc | 6 policy/modules/system/init.if | 138 ++ policy/modules/system/init.te | 166 ++ policy/modules/system/ipsec.fc | 2 policy/modules/system/ipsec.if | 25 policy/modules/system/ipsec.te | 28 policy/modules/system/iptables.fc | 11 policy/modules/system/iptables.te | 5 policy/modules/system/iscsi.if | 40 policy/modules/system/iscsi.te | 6 policy/modules/system/libraries.fc | 151 +- policy/modules/system/libraries.if | 4 policy/modules/system/libraries.te | 16 policy/modules/system/locallogin.te | 28 policy/modules/system/logging.fc | 11 policy/modules/system/logging.if | 4 policy/modules/system/logging.te | 32 policy/modules/system/lvm.te | 17 policy/modules/system/miscfiles.if | 19 policy/modules/system/modutils.te | 35 policy/modules/system/mount.fc | 7 policy/modules/system/mount.te | 76 + policy/modules/system/selinuxutil.fc | 16 policy/modules/system/selinuxutil.if | 288 ++++ policy/modules/system/selinuxutil.te | 227 +-- policy/modules/system/setrans.if | 20 policy/modules/system/sysnetwork.fc | 9 policy/modules/system/sysnetwork.if | 116 + policy/modules/system/sysnetwork.te | 72 - policy/modules/system/udev.fc | 3 policy/modules/system/udev.te | 34 policy/modules/system/unconfined.fc | 15 policy/modules/system/unconfined.if | 439 ------- policy/modules/system/unconfined.te | 226 --- policy/modules/system/userdomain.fc | 5 policy/modules/system/userdomain.if | 1299 +++++++++++++++------ policy/modules/system/userdomain.te | 50 policy/modules/system/xen.fc | 6 policy/modules/system/xen.if | 28 policy/modules/system/xen.te | 127 +- policy/support/obj_perm_sets.spt | 14 policy/users | 13 support/Makefile.devel | 3 290 files changed, 12782 insertions(+), 2596 deletions(-) Index: policy-F12.patch =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/policy-F12.patch,v retrieving revision 1.39 retrieving revision 1.40 diff -u -p -r1.39 -r1.40 --- policy-F12.patch 31 Jul 2009 11:02:22 -0000 1.39 +++ policy-F12.patch 31 Jul 2009 19:05:34 -0000 1.40 @@ -16487,7 +16487,7 @@ diff -b -B --ignore-all-space --exclude- + diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/virt.te serefpolicy-3.6.26/policy/modules/services/virt.te --- nsaserefpolicy/policy/modules/services/virt.te 2009-07-14 14:19:57.000000000 -0400 -+++ serefpolicy-3.6.26/policy/modules/services/virt.te 2009-07-30 15:33:09.000000000 -0400 ++++ serefpolicy-3.6.26/policy/modules/services/virt.te 2009-07-31 15:02:22.000000000 -0400 @@ -20,6 +20,28 @@ ## gen_tunable(virt_use_samba, false) @@ -16705,7 +16705,7 @@ diff -b -B --ignore-all-space --exclude- ') optional_policy(` -@@ -195,8 +290,152 @@ +@@ -195,8 +290,154 @@ xen_stream_connect(virtd_t) xen_stream_connect_xenstore(virtd_t) @@ -16737,6 +16737,7 @@ diff -b -B --ignore-all-space --exclude- +manage_files_pattern(svirt_t, svirt_var_run_t, svirt_var_run_t) +manage_lnk_files_pattern(svirt_t, svirt_var_run_t, svirt_var_run_t) +files_pid_filetrans(svirt_t, svirt_var_run_t, { dir file }) ++stream_connect_pattern($1, svirt_var_run_t, svirt_var_run_t, virtd_t) + +read_lnk_files_pattern(svirt_t, virt_image_t, virt_image_t) + @@ -16857,6 +16858,7 @@ diff -b -B --ignore-all-space --exclude- + virt_read_config(virt_domain) + virt_read_lib_files(virt_domain) + virt_read_content(virt_domain) ++ virt_stream_connect(virt_domain) +') diff -b -B --ignore-all-space --exclude-from=exclude -N -u -r nsaserefpolicy/policy/modules/services/w3c.te serefpolicy-3.6.26/policy/modules/services/w3c.te --- nsaserefpolicy/policy/modules/services/w3c.te 2009-07-14 14:19:57.000000000 -0400 Index: selinux-policy.spec =================================================================== RCS file: /cvs/extras/rpms/selinux-policy/devel/selinux-policy.spec,v retrieving revision 1.887 retrieving revision 1.888 diff -u -p -r1.887 -r1.888 --- selinux-policy.spec 31 Jul 2009 11:02:24 -0000 1.887 +++ selinux-policy.spec 31 Jul 2009 19:05:34 -0000 1.888 @@ -20,7 +20,7 @@ Summary: SELinux policy configuration Name: selinux-policy Version: 3.6.26 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: System Environment/Base Source: serefpolicy-%{version}.tgz @@ -475,6 +475,9 @@ exit 0 %endif %changelog +* Fri Jul 31 2009 Dan Walsh 3.6.26-3 +- Allow svirt_t to stream_connect to virtd_t + * Fri Jul 31 2009 Dan Walsh 3.6.26-2 - Allod hald_dccm_t to create sock_files in /tmp From athimm at fedoraproject.org Fri Jul 31 19:10:19 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:10:19 +0000 (UTC) Subject: rpms/vtkdata/F-11 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 vtkdata.spec, 1.9, 1.10 Message-ID: <20090731191019.3DC4611C04E9@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtkdata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28064/F-11 Modified Files: .cvsignore sources vtkdata.spec Log Message: Backpackage 5.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-11/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- .cvsignore 12 Mar 2009 20:27:05 -0000 1.5 +++ .cvsignore 31 Jul 2009 19:10:18 -0000 1.6 @@ -1 +1 @@ -vtkdata-5.2.1.tar.gz +vtkdata-5.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-11/sources,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- sources 12 Mar 2009 20:27:05 -0000 1.5 +++ sources 31 Jul 2009 19:10:18 -0000 1.6 @@ -1 +1 @@ -3cd99917ab1ec3ef369dd40db74b93b1 vtkdata-5.2.1.tar.gz +3b05eadd4446bbf3f863e744b7bee14a vtkdata-5.4.2.tar.gz Index: vtkdata.spec =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-11/vtkdata.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- vtkdata.spec 12 Mar 2009 20:27:05 -0000 1.9 +++ vtkdata.spec 31 Jul 2009 19:10:18 -0000 1.10 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata -Version: 5.2.1 -Release: 1 +Version: 5.4.2 +Release: 11 # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -41,11 +41,11 @@ rm -rf %{buildroot} %{_datadir}/* %changelog -* Wed Mar 11 2009 Orion Poplawski - 5.2.1-1 -- Update to 5.2.1 +* Sat Jun 6 2009 Axel Thimm - 5.4.2-11 +- Update to 5.4.2. -* Wed Feb 25 2009 Fedora Release Engineering - 5.2.0-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Wed Mar 11 2009 Orion Poplawski - 5.2.1-10 +- Update to 5.2.1 * Sun Oct 5 2008 Axel Thimm - 5.2.0-9 - Update to 5.2.0. From athimm at fedoraproject.org Fri Jul 31 19:10:19 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:10:19 +0000 (UTC) Subject: rpms/vtkdata/F-10 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 vtkdata.spec, 1.7, 1.8 Message-ID: <20090731191019.2A01011C04D5@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtkdata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28064/F-10 Modified Files: .cvsignore sources vtkdata.spec Log Message: Backpackage 5.4.2 Index: .cvsignore =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-10/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- .cvsignore 5 Oct 2008 09:06:28 -0000 1.4 +++ .cvsignore 31 Jul 2009 19:10:17 -0000 1.5 @@ -1 +1 @@ -vtkdata-5.2.0.tar.gz +vtkdata-5.4.2.tar.gz Index: sources =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-10/sources,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -r1.4 -r1.5 --- sources 5 Oct 2008 09:06:28 -0000 1.4 +++ sources 31 Jul 2009 19:10:18 -0000 1.5 @@ -1 +1 @@ -4da83c829cf38663f9c77b681f29a921 vtkdata-5.2.0.tar.gz +3b05eadd4446bbf3f863e744b7bee14a vtkdata-5.4.2.tar.gz Index: vtkdata.spec =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-10/vtkdata.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- vtkdata.spec 5 Oct 2008 09:38:37 -0000 1.7 +++ vtkdata.spec 31 Jul 2009 19:10:18 -0000 1.8 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata -Version: 5.2.0 -Release: 10 +Version: 5.4.2 +Release: 11 # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -41,6 +41,12 @@ rm -rf %{buildroot} %{_datadir}/* %changelog +* Sat Jun 6 2009 Axel Thimm - 5.4.2-11 +- Update to 5.4.2. + +* Wed Mar 11 2009 Orion Poplawski - 5.2.1-10 +- Update to 5.2.1 + * Sun Oct 5 2008 Axel Thimm - 5.2.0-9 - Update to 5.2.0. From athimm at fedoraproject.org Fri Jul 31 19:17:25 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:17:25 +0000 (UTC) Subject: rpms/vtkdata/F-10 vtkdata.spec,1.8,1.9 Message-ID: <20090731191725.59BFF11C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtkdata/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29735/F-10 Modified Files: vtkdata.spec Log Message: Currently rpms cannot be shared between releases. Index: vtkdata.spec =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-10/vtkdata.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- vtkdata.spec 31 Jul 2009 19:10:18 -0000 1.8 +++ vtkdata.spec 31 Jul 2009 19:17:25 -0000 1.9 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata Version: 5.4.2 -Release: 11 +Release: 13%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 6 2009 Axel Thimm - 5.4.2-11 - Update to 5.4.2. From athimm at fedoraproject.org Fri Jul 31 19:17:25 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:17:25 +0000 (UTC) Subject: rpms/vtkdata/F-11 vtkdata.spec,1.10,1.11 Message-ID: <20090731191725.727DE11C00D4@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtkdata/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29735/F-11 Modified Files: vtkdata.spec Log Message: Currently rpms cannot be shared between releases. Index: vtkdata.spec =================================================================== RCS file: /cvs/extras/rpms/vtkdata/F-11/vtkdata.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -r1.10 -r1.11 --- vtkdata.spec 31 Jul 2009 19:10:18 -0000 1.10 +++ vtkdata.spec 31 Jul 2009 19:17:25 -0000 1.11 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata Version: 5.4.2 -Release: 11 +Release: 13%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant @@ -41,6 +41,9 @@ rm -rf %{buildroot} %{_datadir}/* %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 5.4.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Sat Jun 6 2009 Axel Thimm - 5.4.2-11 - Update to 5.4.2. From athimm at fedoraproject.org Fri Jul 31 19:17:25 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:17:25 +0000 (UTC) Subject: rpms/vtkdata/devel vtkdata.spec,1.11,1.12 Message-ID: <20090731191725.AF99111C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/vtkdata/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29735/devel Modified Files: vtkdata.spec Log Message: Currently rpms cannot be shared between releases. Index: vtkdata.spec =================================================================== RCS file: /cvs/extras/rpms/vtkdata/devel/vtkdata.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- vtkdata.spec 27 Jul 2009 06:59:46 -0000 1.11 +++ vtkdata.spec 31 Jul 2009 19:17:25 -0000 1.12 @@ -1,7 +1,7 @@ Summary: Example data file for VTK Name: vtkdata Version: 5.4.2 -Release: 12 +Release: 13%{?dist} # This is a variant BSD license, a cross between BSD and ZLIB. # For all intents, it has the same rights and restrictions as BSD. # http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant From clumens at fedoraproject.org Fri Jul 31 19:19:03 2009 From: clumens at fedoraproject.org (Christopher Edward Lumens) Date: Fri, 31 Jul 2009 19:19:03 +0000 (UTC) Subject: rpms/anaconda/devel .cvsignore, 1.649, 1.650 anaconda.spec, 1.799, 1.800 sources, 1.783, 1.784 Message-ID: <20090731191903.B816711C00CE@cvs1.fedora.phx.redhat.com> Author: clumens Update of /cvs/pkgs/rpms/anaconda/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30208 Modified Files: .cvsignore anaconda.spec sources Log Message: New version. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v retrieving revision 1.649 retrieving revision 1.650 diff -u -p -r1.649 -r1.650 --- .cvsignore 29 Jul 2009 19:40:17 -0000 1.649 +++ .cvsignore 31 Jul 2009 19:19:03 -0000 1.650 @@ -1,2 +1,3 @@ anaconda-12.5.tar.bz2 anaconda-12.6.tar.bz2 +anaconda-12.7.tar.bz2 Index: anaconda.spec =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v retrieving revision 1.799 retrieving revision 1.800 diff -u -p -r1.799 -r1.800 --- anaconda.spec 29 Jul 2009 19:40:18 -0000 1.799 +++ anaconda.spec 31 Jul 2009 19:19:03 -0000 1.800 @@ -3,7 +3,7 @@ Summary: Graphical system installer Name: anaconda -Version: 12.6 +Version: 12.7 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -208,6 +208,16 @@ update-desktop-database &> /dev/null || %endif %changelog +* Fri Jul 31 2009 Chris Lumens - 12.7-1 +- Fix up udev sillies (related to #514501) (katzj) +- Log when we unmount filesystems so we have a match for mount messages. + (clumens) +- Let's not exit from buildinstall.functions, say, ever (katzj) +- Rework shutDown() to better accomidate "nokill" better. (pjones) +- Make upgradeany boot option work again (#513227) (rvykydal) +- Update device.map when upgrading (#513393) (rvykydal) +- Catch None devs (katzj) + * Wed Jul 29 2009 Chris Lumens - 12.6-1 - Fix CDLABEL substitution in syslinux.cfg for x86 boot.iso (katzj) - And finish off the removal of rhpl (katzj) Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v retrieving revision 1.783 retrieving revision 1.784 diff -u -p -r1.783 -r1.784 --- sources 29 Jul 2009 19:40:18 -0000 1.783 +++ sources 31 Jul 2009 19:19:03 -0000 1.784 @@ -1 +1 @@ -3f9d1f4802ad88ff69deae6879854b1b anaconda-12.6.tar.bz2 +9817081809bd5e752cdb304212328494 anaconda-12.7.tar.bz2 From athimm at fedoraproject.org Fri Jul 31 19:19:30 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:19:30 +0000 (UTC) Subject: rpms/freenx-server/F-11 freenx-server-0.7.3-fixes.patch, 1.1, 1.2 freenx-server.spec, 1.8, 1.9 Message-ID: <20090731191930.12A7811C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30334/F-11 Modified Files: freenx-server-0.7.3-fixes.patch freenx-server.spec Log Message: Fix regression reported in bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 84 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 318 insertions(+), 83 deletions(-) Index: freenx-server-0.7.3-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-11/freenx-server-0.7.3-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-server-0.7.3-fixes.patch 25 Jul 2009 22:29:30 -0000 1.1 +++ freenx-server-0.7.3-fixes.patch 31 Jul 2009 19:19:29 -0000 1.2 @@ -25,7 +25,7 @@ diff -Naur freenx-server-0.7.3/ChangeLog diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 -@@ -8,21 +8,78 @@ +@@ -8,21 +8,79 @@ # # SVN: $Id$ # @@ -49,6 +49,7 @@ diff -Naur freenx-server-0.7.3/init.d/fr + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? ++ restorecon /tmp/.X11-unix 2>/dev/null || : + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-11/freenx-server.spec,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- freenx-server.spec 25 Jul 2009 22:55:30 -0000 1.8 +++ freenx-server.spec 31 Jul 2009 19:19:29 -0000 1.9 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 +* Fri Jul 31 2009 Axel Thimm - 0.7.3-15 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From athimm at fedoraproject.org Fri Jul 31 19:19:29 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:19:29 +0000 (UTC) Subject: rpms/freenx-server/F-10 freenx-server-0.7.3-fixes.patch, 1.1, 1.2 freenx-server.spec, 1.7, 1.8 Message-ID: <20090731191929.D1E4C11C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30334/F-10 Modified Files: freenx-server-0.7.3-fixes.patch freenx-server.spec Log Message: Fix regression reported in bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 84 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 318 insertions(+), 83 deletions(-) Index: freenx-server-0.7.3-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-10/freenx-server-0.7.3-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-server-0.7.3-fixes.patch 25 Jul 2009 22:29:29 -0000 1.1 +++ freenx-server-0.7.3-fixes.patch 31 Jul 2009 19:19:29 -0000 1.2 @@ -25,7 +25,7 @@ diff -Naur freenx-server-0.7.3/ChangeLog diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 -@@ -8,21 +8,78 @@ +@@ -8,21 +8,79 @@ # # SVN: $Id$ # @@ -49,6 +49,7 @@ diff -Naur freenx-server-0.7.3/init.d/fr + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? ++ restorecon /tmp/.X11-unix 2>/dev/null || : + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/F-10/freenx-server.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- freenx-server.spec 25 Jul 2009 22:55:30 -0000 1.7 +++ freenx-server.spec 31 Jul 2009 19:19:29 -0000 1.8 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 +* Fri Jul 31 2009 Axel Thimm - 0.7.3-15 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From spot at fedoraproject.org Fri Jul 31 19:19:31 2009 From: spot at fedoraproject.org (Tom Callaway) Date: Fri, 31 Jul 2009 19:19:31 +0000 (UTC) Subject: rpms/pydot/devel pydot.spec,1.9,1.10 Message-ID: <20090731191931.2666011C00CE@cvs1.fedora.phx.redhat.com> Author: spot Update of /cvs/extras/rpms/pydot/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30433 Modified Files: pydot.spec Log Message: rebuild again for egginfo Index: pydot.spec =================================================================== RCS file: /cvs/extras/rpms/pydot/devel/pydot.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- pydot.spec 26 Jul 2009 19:47:23 -0000 1.9 +++ pydot.spec 31 Jul 2009 19:19:31 -0000 1.10 @@ -2,7 +2,7 @@ Name: pydot Version: 1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} License: MIT Group: System Environment/Libraries Summary: Python interface to Graphviz's Dot language @@ -45,9 +45,14 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE ChangeLog PKG-INFO README -%{python_sitelib}/* +%{python_sitelib}/dot_parser.py* +%{python_sitelib}/pydot-*.egg-info/ +%{python_sitelib}/pydot.* %changelog +* Fri Jul 31 2009 Tom "spot" Callaway - 1.0.2-6 +- somehow, the egg info didn't make it into the rebuild... + * Sun Jul 26 2009 Fedora Release Engineering - 1.0.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From athimm at fedoraproject.org Fri Jul 31 19:19:30 2009 From: athimm at fedoraproject.org (athimm) Date: Fri, 31 Jul 2009 19:19:30 +0000 (UTC) Subject: rpms/freenx-server/devel freenx-server-0.7.3-fixes.patch, 1.1, 1.2 freenx-server.spec, 1.9, 1.10 Message-ID: <20090731191930.51E4511C00CE@cvs1.fedora.phx.redhat.com> Author: athimm Update of /cvs/extras/rpms/freenx-server/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30334/devel Modified Files: freenx-server-0.7.3-fixes.patch freenx-server.spec Log Message: Fix regression reported in bug #437655. freenx-server-0.7.3-fixes.patch: ChangeLog | 17 ++++++ Makefile | 4 - init.d/freenx-server | 84 +++++++++++++++++++++++++++----- node.conf.sample | 7 ++ nxloadconfig | 35 +++++++++++-- nxnode | 132 ++++++++++++++++++++++++++++++++++++++++++++++----- nxprint | 3 - nxredir/nxsmb | 5 + nxserver | 114 +++++++++++++++++++++++++------------------- 9 files changed, 318 insertions(+), 83 deletions(-) Index: freenx-server-0.7.3-fixes.patch =================================================================== RCS file: /cvs/extras/rpms/freenx-server/devel/freenx-server-0.7.3-fixes.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- freenx-server-0.7.3-fixes.patch 25 Jul 2009 22:29:31 -0000 1.1 +++ freenx-server-0.7.3-fixes.patch 31 Jul 2009 19:19:30 -0000 1.2 @@ -25,7 +25,7 @@ diff -Naur freenx-server-0.7.3/ChangeLog diff -Naur freenx-server-0.7.3/init.d/freenx-server freenx-server.svn613.plusfixes/init.d/freenx-server --- freenx-server-0.7.3/init.d/freenx-server 2008-03-02 11:29:52.000000000 +0100 +++ freenx-server.svn613.plusfixes/init.d/freenx-server 2009-07-25 22:15:28.000000000 +0200 -@@ -8,21 +8,78 @@ +@@ -8,21 +8,79 @@ # # SVN: $Id$ # @@ -49,6 +49,7 @@ diff -Naur freenx-server-0.7.3/init.d/fr + if [ ! -d "/tmp/.X11-unix" ]; then + mkdir -m1777 /tmp/.X11-unix/ + ret=$? ++ restorecon /tmp/.X11-unix 2>/dev/null || : + else + X11_owner=`/bin/ls -ald /tmp/.X11-unix | /bin/gawk {'print $3'}` + if [ "$X11_owner" != "root" ]; then Index: freenx-server.spec =================================================================== RCS file: /cvs/extras/rpms/freenx-server/devel/freenx-server.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- freenx-server.spec 25 Jul 2009 22:55:31 -0000 1.9 +++ freenx-server.spec 31 Jul 2009 19:19:30 -0000 1.10 @@ -7,7 +7,7 @@ Summary: Free Software (GPL) Implementation of the NX Server Name: freenx-server Version: 0.7.3 -Release: 14%{?dist} +Release: 15%{?dist} License: GPLv2 Group: Applications/Internet URL: http://freenx.berlios.de/ @@ -121,7 +121,7 @@ fi %{_sysconfdir}/init.d/freenx-server %changelog -* Sat Jul 25 2009 Axel Thimm - 0.7.3-14 +* Fri Jul 31 2009 Axel Thimm - 0.7.3-15 - Use some patches from up to svn 613 (dated 2008-09-01). - Add keymap.patch from Fedora bug #506470. - Add cups listing patch from Fedora bug #509879. From pingou at fedoraproject.org Fri Jul 31 19:21:26 2009 From: pingou at fedoraproject.org (pingou) Date: Fri, 31 Jul 2009 19:21:26 +0000 (UTC) Subject: rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 R-BSgenome.Celegans.UCSC.ce2.spec, NONE, 1.1 Message-ID: <20090731192126.3874911C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31021 Added Files: R-BSgenome.Celegans.UCSC.ce2.spec Log Message: Add new spec --- NEW FILE R-BSgenome.Celegans.UCSC.ce2.spec --- %global packname BSgenome.Celegans.UCSC.ce2 %global bioc 2.4 Name: R-%{packname} Version: 1.3.13 Release: 1 Summary: Caenorhabditis elegans genome (UCSC Release ce2) Summary(fr): Genome de Caenorhabditis elegans (UCSC Release ce2) Group: Applications/Engineering License: Artistic 2.0 URL: http://www.bioconductor.org/packages/%{bioc}/data/annotation/html/%{packname}.html Source0: http://www.bioconductor.org/packages/%{bioc}/data/annotation/src/contrib/%{packname}_%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: R R-BSgenome Requires(post): R Requires(postun): R BuildRequires: R-devel tetex-latex R-BSgenome %description Caenorhabditis elegans genome grabbed from UCSC (ce2, Mar. 2004) and stored in Biostrings objects %description -l fr Genome de Caenorhabditis elegans extrait par UCSC (ce2, Mar. 2004) et stock? dans un objet Biostrings %prep %setup -q -c -n %{packname} %build %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/R/library R CMD INSTALL %{packname} -l %{buildroot}%{_datadir}/R/library # Clean up in advance of check test -d %{packname}/src && (cd %{packname}/src; rm -f *.o *.so) rm -rf %{buildroot}%{_datadir}/R/library/R.css %check #this section refered to Biostrings which refer to this package #%{_bindir}/R CMD check %{packname} %clean rm -rf %{buildroot} %post %{_R_make_search_index} %postun %{_R_make_search_index} %files %defattr(-, root, root, -) %{_datadir}/R/library/%{packname}/CONTENTS %{_datadir}/R/library/%{packname}/INDEX %{_datadir}/R/library/%{packname}/NAMESPACE %{_datadir}/R/library/%{packname}/extdata %{_datadir}/R/library/%{packname}/Meta %{_datadir}/R/library/%{packname}/help %{_datadir}/R/library/%{packname}/R %{_datadir}/R/library/%{packname}/R-ex #noarch %dir %{_datadir}/R/library/%{packname} %doc %{_datadir}/R/library/%{packname}/latex %doc %{_datadir}/R/library/%{packname}/html %doc %{_datadir}/R/library/%{packname}/DESCRIPTION %doc %{_datadir}/R/library/%{packname}/man %changelog * Fri Jul 31 2009 pingou 1.3.13-1 - Update license tag - Use global instead of define - Update the R and BR (add R-BSgenome) - Finally update the package * Sat Jan 05 2008 Pingou 1.2.0-5 - Remove the distro specific build of this package * Fri Nov 23 2007 Pingou 1.2.0-4 - Correction on the dependancies * Thu Sep 20 2007 Pingou 1.2.0-3 - Changes in the requires * Wed Aug 29 2007 Pingou 1.2.0-2 -Change the license tag * Mon Jul 16 2007 Pingou 1.2.0-1 - initial package for Fedora From pingou at fedoraproject.org Fri Jul 31 19:22:16 2009 From: pingou at fedoraproject.org (pingou) Date: Fri, 31 Jul 2009 19:22:16 +0000 (UTC) Subject: rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 R-BSgenome.Celegans.UCSC.ce2.spec, 1.1, 1.2 Message-ID: <20090731192216.52B6711C00CE@cvs1.fedora.phx.redhat.com> Author: pingou Update of /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv31237 Modified Files: R-BSgenome.Celegans.UCSC.ce2.spec Log Message: Increase release tag Index: R-BSgenome.Celegans.UCSC.ce2.spec =================================================================== RCS file: /cvs/pkgs/rpms/R-BSgenome.Celegans.UCSC.ce2/F-10/R-BSgenome.Celegans.UCSC.ce2.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- R-BSgenome.Celegans.UCSC.ce2.spec 31 Jul 2009 19:21:25 -0000 1.1 +++ R-BSgenome.Celegans.UCSC.ce2.spec 31 Jul 2009 19:22:16 -0000 1.2 @@ -3,7 +3,7 @@ Name: R-%{packname} Version: 1.3.13 -Release: 1 +Release: 2 Summary: Caenorhabditis elegans genome (UCSC Release ce2) Summary(fr): Genome de Caenorhabditis elegans (UCSC Release ce2) @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 31 2009 pingou 1.3.13-2 +- Increase release tag + * Fri Jul 31 2009 pingou 1.3.13-1 - Update license tag - Use global instead of define From pkgdb at fedoraproject.org Fri Jul 31 19:36:54 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:36:54 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193654.EBF8B10F875@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora devel is now owned by hadess To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:37:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:37:07 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193707.177AD10F882@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 8 was orphaned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:37:12 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:37:12 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193712.50C0110F89C@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 9 was orphaned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:37:11 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:37:11 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193711.1227110F897@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 7 was orphaned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:37:17 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:37:17 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193717.3AAF710F89E@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 10 is now owned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:37:22 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:37:22 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731193722.9314C10F882@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 11 is now owned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From mbarnes at fedoraproject.org Fri Jul 31 19:38:35 2009 From: mbarnes at fedoraproject.org (Matthew Barnes) Date: Fri, 31 Jul 2009 19:38:35 +0000 (UTC) Subject: rpms/evolution/devel evolution.spec,1.394.2.21,1.394.2.22 Message-ID: <20090731193835.499EA11C00CE@cvs1.fedora.phx.redhat.com> Author: mbarnes Update of /cvs/pkgs/rpms/evolution/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2974 Modified Files: Tag: private-mbarnes-kb evolution.spec Log Message: * Fri Jul 31 2009 Matthew Barnes - 2.27.5-3.kb.1.fc12 - Rebuild to keep N-V-R ahead of Rawhide. Index: evolution.spec =================================================================== RCS file: /cvs/pkgs/rpms/evolution/devel/evolution.spec,v retrieving revision 1.394.2.21 retrieving revision 1.394.2.22 diff -u -p -r1.394.2.21 -r1.394.2.22 --- evolution.spec 28 Jul 2009 15:42:57 -0000 1.394.2.21 +++ evolution.spec 31 Jul 2009 19:38:34 -0000 1.394.2.22 @@ -45,7 +45,7 @@ Name: evolution Version: 2.27.5 -Release: 1.kb.1%{?dist} +Release: 3.kb.1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -671,6 +671,9 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/evolution/%{evo_major}/evolution-addressbook-clean %changelog +* Fri Jul 31 2009 Matthew Barnes - 2.27.5-3.kb.1.fc12 +- Rebuild to keep N-V-R ahead of Rawhide. + * Tue Jul 28 2009 Matthew Barnes - 2.27.5-1.kb.1.fc12 - Snapshot of "kill-bonobo" branch at commit 2c4510e. From pkgdb at fedoraproject.org Fri Jul 31 19:45:07 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:45:07 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731194507.CB47E10F88F@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 10 is now owned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From pkgdb at fedoraproject.org Fri Jul 31 19:45:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 19:45:10 +0000 Subject: [pkgdb] libfprint ownership updated Message-ID: <20090731194510.8BDAB10F89B@bastion2.fedora.phx.redhat.com> Package libfprint in Fedora 11 is now owned by pingou To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libfprint From dmaphy at fedoraproject.org Fri Jul 31 19:45:29 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Fri, 31 Jul 2009 19:45:29 +0000 (UTC) Subject: rpms/geany-plugins/devel geany-plugins.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731194529.57AAE11C00CE@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany-plugins/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3299/devel Modified Files: .cvsignore sources Added Files: geany-plugins.spec import.log Log Message: * Sat Jul 25 2009 Dominic Hopf 0.17.1-4 - write BuildRequires at the beginning of this file * Wed Jul 22 2009 Dominic Hopf 0.17.1-3 - remove Requires: geany from the main package - change Group to Development/Tools - add release to the geanyvc Provides - entirely remove %%files stanza for the main package * Wed Jul 22 2009 Dominic Hopf 0.17.1-2 - fix the required geany version also in the subpackages - remove the requires to sub-packages to avoid building the metapackage since all geany plugins also can be installed by something like 'yum install geany-plugins-*' - fix the requires of geany-plugins-common to include the release * Wed Jul 22 2009 Dominic Hopf 0.17.1-1 - bump upstream version to 0.17.1 - fix required geany version to be 0.16 at the present * Sat Jul 18 2009 Dominic Hopf 0.17-5 - add Requires for metapackage - rename subpackages back to geany-plugins-* instead of geany-plugin-* * Fri Jul 17 2009 Dominic Hopf 0.17-4 - readd the geany_plug_docdir global to fix the versioned directory issue for documentation files - replace geany-plugins with %%{name} to be more consistent with macro usage - remove zero-length documentation files - fix the changelog - remove static *.la-files - split up packages * Wed Jul 15 2009 Dominic Hopf 0.17-3 - add %%{_datadir}/geany-plugins/geanylua/ to %%files-section * Wed Jul 15 2009 Dominic Hopf 0.17-2 - fix %%files-section again, thanks to Jonathan for the hint. * Tue Jul 14 2009 Dominic Hopf 0.17-1 - update URL to plugins.geany.org * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.2 - Add Obsoletes for geanyvc - Add more BuildRequires and Requires * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.1 - Update to 0.17 (first upstream release of tarball) - Fix handling of docs - Spec file cleanups * Mon Jun 22 2009 Pingou 0.1-1 - First RPM for Fedora --- NEW FILE geany-plugins.spec --- %global geany_plug_docdir %{_defaultdocdir}/%{name}-%{version} %global req_geany_ver 0.16 Name: geany-plugins Version: 0.17.1 Release: 4%{?dist} Summary: Plugins for Geany Group: Development/Tools License: GPLv2+ URL: http://plugins.geany.org/ Source0: http://plugins.geany.org/geany-plugins/geany-plugins-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: geany-devel >= %{req_geany_ver} gettext intltool pkgconfig BuildRequires: lua-devel enchant-devel gtkspell-devel %description Plugins for Geany. Plugins included are: * Addons (various small addons) * Geanygdb (provides integration with gdb) * Geanylatex (improved support for LaTeX documents) * Geanylipsum (for inserting blocks of Lorem Ipsum text) * Geanylua (provides support for scripting with Lua) * Geanysendmail (allows sending of documents from within Geany) * Geanyvc (support for various version control systems) * Shiftcolumn (for moving blocks of text horizontally) * Spellcheck (for spell checking documents) %package common Summary: Common files used by all geany plugins Group: Development/Tools Requires: geany >= %{req_geany_ver} %description common This package contains some common files which are used by every Geany plugin, e.g. language translations. %package addons Summary: Miscellaneous Addons for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description addons This plugins consists of various small addons too small to justify their own plugin, but are useful to have. The following functionality is implemented: * Doclist: This addon places a new item in the toolbar and when clicked offers a menu listing all open files plus the 'Close All' and 'Close Other Documents' menu items. This can be useful to quickly access open files and switch to them. * OpenURI: Adds 'Open URI' and 'Copy URI' menu items to the editor menu when the word under the cursor looks like a URI. 'Open URI' uses the browser command configured in Geany to open it. * Tasks:The tasks plugin goes through a file being edited and picks out lines with "TODO" or "FIXME" in them. It collects the text after those words and puts them in a new "Tasks" tab in the message window. Clicking on a task in that tab takes you to the line in the file where the task was defined. * Systray: Adds a status icon to the notification area (systray) and provides a simple popup menu with some basic actions. It can also be used to quickly show and hide the Geany main window. %package geanygdb Summary: Debugger Plugin for Geany using GDB Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: gdb %description geanygdb GeanyGDB plugin provides an integrated debugging environment for the GNU debugger (gdb). %package geanylatex Summary: LaTeX support for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: tex(latex) %description geanylatex This plugin improves LaTeX support in Geany. It provides several templates for new documents, help with adding labels and inserting special characters, and much more. %package geanylipsum Summary: Lorem Ipsum generator for Inserting Placeholder Text Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description geanylipsum GeanyLipsum is a Lorem Ipsum generator for inserting placeholder text into a document. %package geanylua Summary: Lua Scripting for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: lua %description geanylua This plugin provides extensive support for developing in the lua programming language. %package geanysendmail Summary: Send E-Mails from within Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description geanysendmail GeanySendMail is a little plugin to send a document as attachment using the preferred mail client from inside Geany. It is similar to the envelope symbol of most office tools and requires a mail client that supports remote calls. %package geanyvc Summary: Version Control for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Obsoletes: geanyvc <= 0.5 Provides: geanyvc = %{version}-%{release} %description geanyvc Geanyvc is a plugin that provides a uniform way of accessing different version control systems from within the Geany IDE. Currently, support for the following version control systems is provided: * Bazaar * Git * Mercurial * Subversion * SVK * CVS %package shiftcolumn Summary: Move Blocks of Text horizontally Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description shiftcolumn Shiftcolumn allows you to move blocks of text horizontally in Geany. %package spellcheck Summary: Spellcheck Text in Geany using the Enchant Library Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: enchant %description spellcheck Spellcheck checks the selected text (or the whole document) with the spellcheck library Enchant %prep %setup -q %build %configure --docdir=%{geany_plug_docdir} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install -p DESTDIR=$RPM_BUILD_ROOT # Remove static library *.la files find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' \; %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files common -f %{name}.lang %defattr(-,root,root,-) %dir %{_libdir}/%{name}/ %dir %{_datadir}/%{name}/ %files addons %defattr(-,root,root,-) %doc %{geany_plug_docdir}/addons %{_libdir}/geany/addons.so %files geanygdb %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanygdb/ %{_libdir}/geany/geanygdb.so %{_libexecdir}/geany-plugins/geanygdb/ttyhelper %files geanylatex %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylatex/ %{_libdir}/geany/geanylatex.so %files geanylipsum %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylipsum/ %{_libdir}/geany/geanylipsum.so %files geanylua %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylua/ %{_libdir}/geany/geanylua.so %{_datadir}/%{name}/geanylua/ %{_libdir}/%{name}/geanylua/ %files geanysendmail %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanysendmail/ %{_libdir}/geany/geanysendmail.so %files geanyvc %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanyvc/ %{_libdir}/geany/geanyvc.so %files shiftcolumn %defattr(-,root,root,-) %doc %{geany_plug_docdir}/shiftcolumn/ %{_libdir}/geany/shiftcolumn.so %files spellcheck %defattr(-,root,root,-) %doc %{geany_plug_docdir}/spellcheck/ %{_libdir}/geany/spellcheck.so %changelog * Sat Jul 25 2009 Dominic Hopf 0.17.1-4 - write BuildRequires at the beginning of this file * Wed Jul 22 2009 Dominic Hopf 0.17.1-3 - remove Requires: geany from the main package - change Group to Development/Tools - add release to the geanyvc Provides - entirely remove %%files stanza for the main package * Wed Jul 22 2009 Dominic Hopf 0.17.1-2 - fix the required geany version also in the subpackages - remove the requires to sub-packages to avoid building the metapackage since all geany plugins also can be installed by something like 'yum install geany-plugins-*' - fix the requires of geany-plugins-common to include the release * Wed Jul 22 2009 Dominic Hopf 0.17.1-1 - bump upstream version to 0.17.1 - fix required geany version to be 0.16 at the present * Sat Jul 18 2009 Dominic Hopf 0.17-5 - add Requires for metapackage - rename subpackages back to geany-plugins-* instead of geany-plugin-* * Fri Jul 17 2009 Dominic Hopf 0.17-4 - readd the geany_plug_docdir global to fix the versioned directory issue for documentation files - replace geany-plugins with %%{name} to be more consistent with macro usage - remove zero-length documentation files - fix the changelog - remove static *.la-files - split up packages * Wed Jul 15 2009 Dominic Hopf 0.17-3 - add %%{_datadir}/geany-plugins/geanylua/ to %%files-section * Wed Jul 15 2009 Dominic Hopf 0.17-2 - fix %%files-section again, thanks to Jonathan for the hint. * Tue Jul 14 2009 Dominic Hopf 0.17-1 - update URL to plugins.geany.org * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.2 - Add Obsoletes for geanyvc - Add more BuildRequires and Requires * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.1 - Update to 0.17 (first upstream release of tarball) - Fix handling of docs - Spec file cleanups * Mon Jun 22 2009 Pingou 0.1-1 - First RPM for Fedora --- NEW FILE import.log --- geany-plugins-0_17_1-4_fc11:HEAD:geany-plugins-0.17.1-4.fc11.src.rpm:1249068552 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/geany-plugins/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:45:11 -0000 1.1 +++ .cvsignore 31 Jul 2009 19:45:29 -0000 1.2 @@ -0,0 +1 @@ +geany-plugins-0.17.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/geany-plugins/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:45:12 -0000 1.1 +++ sources 31 Jul 2009 19:45:29 -0000 1.2 @@ -0,0 +1 @@ +9587a8d8680c73833c7c55b9e1fd58aa geany-plugins-0.17.1.tar.gz From dmaphy at fedoraproject.org Fri Jul 31 19:49:42 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Fri, 31 Jul 2009 19:49:42 +0000 (UTC) Subject: rpms/geany-plugins/F-11 geany-plugins.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731194942.5EC2411C00CE@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany-plugins/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4681/F-11 Modified Files: .cvsignore sources Added Files: geany-plugins.spec import.log Log Message: * Sat Jul 25 2009 Dominic Hopf 0.17.1-4 - write BuildRequires at the beginning of this file * Wed Jul 22 2009 Dominic Hopf 0.17.1-3 - remove Requires: geany from the main package - change Group to Development/Tools - add release to the geanyvc Provides - entirely remove %%files stanza for the main package * Wed Jul 22 2009 Dominic Hopf 0.17.1-2 - fix the required geany version also in the subpackages - remove the requires to sub-packages to avoid building the metapackage since all geany plugins also can be installed by something like 'yum install geany-plugins-*' - fix the requires of geany-plugins-common to include the release * Wed Jul 22 2009 Dominic Hopf 0.17.1-1 - bump upstream version to 0.17.1 - fix required geany version to be 0.16 at the present * Sat Jul 18 2009 Dominic Hopf 0.17-5 - add Requires for metapackage - rename subpackages back to geany-plugins-* instead of geany-plugin-* * Fri Jul 17 2009 Dominic Hopf 0.17-4 - readd the geany_plug_docdir global to fix the versioned directory issue for documentation files - replace geany-plugins with %%{name} to be more consistent with macro usage - remove zero-length documentation files - fix the changelog - remove static *.la-files - split up packages * Wed Jul 15 2009 Dominic Hopf 0.17-3 - add %%{_datadir}/geany-plugins/geanylua/ to %%files-section * Wed Jul 15 2009 Dominic Hopf 0.17-2 - fix %%files-section again, thanks to Jonathan for the hint. * Tue Jul 14 2009 Dominic Hopf 0.17-1 - update URL to plugins.geany.org * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.2 - Add Obsoletes for geanyvc - Add more BuildRequires and Requires * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.1 - Update to 0.17 (first upstream release of tarball) - Fix handling of docs - Spec file cleanups * Mon Jun 22 2009 Pingou 0.1-1 - First RPM for Fedora --- NEW FILE geany-plugins.spec --- %global geany_plug_docdir %{_defaultdocdir}/%{name}-%{version} %global req_geany_ver 0.16 Name: geany-plugins Version: 0.17.1 Release: 4%{?dist} Summary: Plugins for Geany Group: Development/Tools License: GPLv2+ URL: http://plugins.geany.org/ Source0: http://plugins.geany.org/geany-plugins/geany-plugins-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: geany-devel >= %{req_geany_ver} gettext intltool pkgconfig BuildRequires: lua-devel enchant-devel gtkspell-devel %description Plugins for Geany. Plugins included are: * Addons (various small addons) * Geanygdb (provides integration with gdb) * Geanylatex (improved support for LaTeX documents) * Geanylipsum (for inserting blocks of Lorem Ipsum text) * Geanylua (provides support for scripting with Lua) * Geanysendmail (allows sending of documents from within Geany) * Geanyvc (support for various version control systems) * Shiftcolumn (for moving blocks of text horizontally) * Spellcheck (for spell checking documents) %package common Summary: Common files used by all geany plugins Group: Development/Tools Requires: geany >= %{req_geany_ver} %description common This package contains some common files which are used by every Geany plugin, e.g. language translations. %package addons Summary: Miscellaneous Addons for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description addons This plugins consists of various small addons too small to justify their own plugin, but are useful to have. The following functionality is implemented: * Doclist: This addon places a new item in the toolbar and when clicked offers a menu listing all open files plus the 'Close All' and 'Close Other Documents' menu items. This can be useful to quickly access open files and switch to them. * OpenURI: Adds 'Open URI' and 'Copy URI' menu items to the editor menu when the word under the cursor looks like a URI. 'Open URI' uses the browser command configured in Geany to open it. * Tasks:The tasks plugin goes through a file being edited and picks out lines with "TODO" or "FIXME" in them. It collects the text after those words and puts them in a new "Tasks" tab in the message window. Clicking on a task in that tab takes you to the line in the file where the task was defined. * Systray: Adds a status icon to the notification area (systray) and provides a simple popup menu with some basic actions. It can also be used to quickly show and hide the Geany main window. %package geanygdb Summary: Debugger Plugin for Geany using GDB Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: gdb %description geanygdb GeanyGDB plugin provides an integrated debugging environment for the GNU debugger (gdb). %package geanylatex Summary: LaTeX support for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: tex(latex) %description geanylatex This plugin improves LaTeX support in Geany. It provides several templates for new documents, help with adding labels and inserting special characters, and much more. %package geanylipsum Summary: Lorem Ipsum generator for Inserting Placeholder Text Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description geanylipsum GeanyLipsum is a Lorem Ipsum generator for inserting placeholder text into a document. %package geanylua Summary: Lua Scripting for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: lua %description geanylua This plugin provides extensive support for developing in the lua programming language. %package geanysendmail Summary: Send E-Mails from within Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description geanysendmail GeanySendMail is a little plugin to send a document as attachment using the preferred mail client from inside Geany. It is similar to the envelope symbol of most office tools and requires a mail client that supports remote calls. %package geanyvc Summary: Version Control for Geany Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Obsoletes: geanyvc <= 0.5 Provides: geanyvc = %{version}-%{release} %description geanyvc Geanyvc is a plugin that provides a uniform way of accessing different version control systems from within the Geany IDE. Currently, support for the following version control systems is provided: * Bazaar * Git * Mercurial * Subversion * SVK * CVS %package shiftcolumn Summary: Move Blocks of Text horizontally Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} %description shiftcolumn Shiftcolumn allows you to move blocks of text horizontally in Geany. %package spellcheck Summary: Spellcheck Text in Geany using the Enchant Library Group: Development/Tools Requires: geany >= %{req_geany_ver} Requires: geany-plugins-common = %{version}-%{release} Requires: enchant %description spellcheck Spellcheck checks the selected text (or the whole document) with the spellcheck library Enchant %prep %setup -q %build %configure --docdir=%{geany_plug_docdir} make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install -p DESTDIR=$RPM_BUILD_ROOT # Remove static library *.la files find $RPM_BUILD_ROOT -name '*.la' -exec rm -f '{}' \; %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %files common -f %{name}.lang %defattr(-,root,root,-) %dir %{_libdir}/%{name}/ %dir %{_datadir}/%{name}/ %files addons %defattr(-,root,root,-) %doc %{geany_plug_docdir}/addons %{_libdir}/geany/addons.so %files geanygdb %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanygdb/ %{_libdir}/geany/geanygdb.so %{_libexecdir}/geany-plugins/geanygdb/ttyhelper %files geanylatex %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylatex/ %{_libdir}/geany/geanylatex.so %files geanylipsum %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylipsum/ %{_libdir}/geany/geanylipsum.so %files geanylua %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanylua/ %{_libdir}/geany/geanylua.so %{_datadir}/%{name}/geanylua/ %{_libdir}/%{name}/geanylua/ %files geanysendmail %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanysendmail/ %{_libdir}/geany/geanysendmail.so %files geanyvc %defattr(-,root,root,-) %doc %{geany_plug_docdir}/geanyvc/ %{_libdir}/geany/geanyvc.so %files shiftcolumn %defattr(-,root,root,-) %doc %{geany_plug_docdir}/shiftcolumn/ %{_libdir}/geany/shiftcolumn.so %files spellcheck %defattr(-,root,root,-) %doc %{geany_plug_docdir}/spellcheck/ %{_libdir}/geany/spellcheck.so %changelog * Sat Jul 25 2009 Dominic Hopf 0.17.1-4 - write BuildRequires at the beginning of this file * Wed Jul 22 2009 Dominic Hopf 0.17.1-3 - remove Requires: geany from the main package - change Group to Development/Tools - add release to the geanyvc Provides - entirely remove %%files stanza for the main package * Wed Jul 22 2009 Dominic Hopf 0.17.1-2 - fix the required geany version also in the subpackages - remove the requires to sub-packages to avoid building the metapackage since all geany plugins also can be installed by something like 'yum install geany-plugins-*' - fix the requires of geany-plugins-common to include the release * Wed Jul 22 2009 Dominic Hopf 0.17.1-1 - bump upstream version to 0.17.1 - fix required geany version to be 0.16 at the present * Sat Jul 18 2009 Dominic Hopf 0.17-5 - add Requires for metapackage - rename subpackages back to geany-plugins-* instead of geany-plugin-* * Fri Jul 17 2009 Dominic Hopf 0.17-4 - readd the geany_plug_docdir global to fix the versioned directory issue for documentation files - replace geany-plugins with %%{name} to be more consistent with macro usage - remove zero-length documentation files - fix the changelog - remove static *.la-files - split up packages * Wed Jul 15 2009 Dominic Hopf 0.17-3 - add %%{_datadir}/geany-plugins/geanylua/ to %%files-section * Wed Jul 15 2009 Dominic Hopf 0.17-2 - fix %%files-section again, thanks to Jonathan for the hint. * Tue Jul 14 2009 Dominic Hopf 0.17-1 - update URL to plugins.geany.org * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.2 - Add Obsoletes for geanyvc - Add more BuildRequires and Requires * Tue Jul 14 2009 Jonathan G. Underwood - 0.17-0.1 - Update to 0.17 (first upstream release of tarball) - Fix handling of docs - Spec file cleanups * Mon Jun 22 2009 Pingou 0.1-1 - First RPM for Fedora --- NEW FILE import.log --- geany-plugins-0_17_1-4_fc11:F-11:geany-plugins-0.17.1-4.fc11.src.rpm:1249069622 Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/geany-plugins/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 28 Jul 2009 04:45:11 -0000 1.1 +++ .cvsignore 31 Jul 2009 19:49:42 -0000 1.2 @@ -0,0 +1 @@ +geany-plugins-0.17.1.tar.gz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/geany-plugins/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 28 Jul 2009 04:45:12 -0000 1.1 +++ sources 31 Jul 2009 19:49:42 -0000 1.2 @@ -0,0 +1 @@ +9587a8d8680c73833c7c55b9e1fd58aa geany-plugins-0.17.1.tar.gz From dwayne at fedoraproject.org Fri Jul 31 20:14:23 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 31 Jul 2009 20:14:23 +0000 (UTC) Subject: rpms/translate-toolkit/devel .cvsignore, 1.16, 1.17 sources, 1.17, 1.18 translate-toolkit.spec, 1.31, 1.32 Message-ID: <20090731201423.448C811C00CE@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/translate-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10226 Modified Files: .cvsignore sources translate-toolkit.spec Log Message: * Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.4.rc2 - Update to 1.4.0 rc2 - Some small fixes for XLIFF support - API documentation has been augmented with diagrams Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 24 Jul 2009 06:22:45 -0000 1.16 +++ .cvsignore 31 Jul 2009 20:14:22 -0000 1.17 @@ -1,3 +1,4 @@ translate-toolkit-1.3.0.tar.bz2 translate-toolkit-1.4.0-beta1.tar.bz2 translate-toolkit-1.4.0-rc1.tar.bz2 +translate-toolkit-1.4.0-rc2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 24 Jul 2009 06:22:46 -0000 1.17 +++ sources 31 Jul 2009 20:14:23 -0000 1.18 @@ -1,3 +1,4 @@ b21e7b1e382c03ecfeece6eab295840c translate-toolkit-1.3.0.tar.bz2 1fd86891d3a8fa0e92d1fed3a04d3697 translate-toolkit-1.4.0-beta1.tar.bz2 373ea5b4d02ef3c8cc35cdce34c73863 translate-toolkit-1.4.0-rc1.tar.bz2 +e7f1227922ed8a03fbfcb1e63511e73e translate-toolkit-1.4.0-rc2.tar.bz2 Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/translate-toolkit.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- translate-toolkit.spec 27 Jul 2009 06:14:28 -0000 1.31 +++ translate-toolkit.spec 31 Jul 2009 20:14:23 -0000 1.32 @@ -2,7 +2,7 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.3.rc1%{?dist} +Release: 0.4.rc2%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools @@ -123,6 +123,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.4.rc2 +- Update to 1.4.0 rc2 + - Some small fixes for XLIFF support + - API documentation has been augmented with diagrams + * Sun Jul 26 2009 Fedora Release Engineering - 1.4.0-0.3.rc1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From dwayne at fedoraproject.org Fri Jul 31 20:43:38 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 31 Jul 2009 20:43:38 +0000 (UTC) Subject: rpms/translate-toolkit/devel translate-toolkit.spec,1.32,1.33 Message-ID: <20090731204338.4F23D11C00CE@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/translate-toolkit/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17565 Modified Files: translate-toolkit.spec Log Message: * Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.5.rc2 - Fix tarball reference Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/devel/translate-toolkit.spec,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -r1.32 -r1.33 --- translate-toolkit.spec 31 Jul 2009 20:14:23 -0000 1.32 +++ translate-toolkit.spec 31 Jul 2009 20:43:38 -0000 1.33 @@ -2,14 +2,14 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.4.rc2%{?dist} +Release: 0.5.rc2%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/toolkit/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc1/%{name}-%{version}-rc1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc2/%{name}-%{version}-rc2.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: translate-toolkit-1.2.1-stoplist.patch @@ -67,7 +67,7 @@ toolkit or to use the libraries in other %prep -%setup -q -n %{name}-%{version}-rc1 +%setup -q -n %{name}-%{version}-rc2 %patch0 -p1 @@ -123,6 +123,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.5.rc2 +- Fix tarball reference + * Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.4.rc2 - Update to 1.4.0 rc2 - Some small fixes for XLIFF support From dwayne at fedoraproject.org Fri Jul 31 20:54:43 2009 From: dwayne at fedoraproject.org (dwayne) Date: Fri, 31 Jul 2009 20:54:43 +0000 (UTC) Subject: rpms/translate-toolkit/F-11 .cvsignore, 1.16, 1.17 sources, 1.17, 1.18 translate-toolkit.spec, 1.31, 1.32 Message-ID: <20090731205443.104F611C00CE@cvs1.fedora.phx.redhat.com> Author: dwayne Update of /cvs/pkgs/rpms/translate-toolkit/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19277 Modified Files: .cvsignore sources translate-toolkit.spec Log Message: * Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.4.rc2 - Update to 1.4.0 rc2: - Some small fixes for XLIFF support - API documentation has been augmented with diagrams Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/.cvsignore,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- .cvsignore 24 Jul 2009 06:37:37 -0000 1.16 +++ .cvsignore 31 Jul 2009 20:54:42 -0000 1.17 @@ -1,3 +1,4 @@ translate-toolkit-1.3.0.tar.bz2 translate-toolkit-1.4.0-beta1.tar.bz2 translate-toolkit-1.4.0-rc1.tar.bz2 +translate-toolkit-1.4.0-rc2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/sources,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- sources 24 Jul 2009 06:37:37 -0000 1.17 +++ sources 31 Jul 2009 20:54:42 -0000 1.18 @@ -1,3 +1,4 @@ b21e7b1e382c03ecfeece6eab295840c translate-toolkit-1.3.0.tar.bz2 1fd86891d3a8fa0e92d1fed3a04d3697 translate-toolkit-1.4.0-beta1.tar.bz2 373ea5b4d02ef3c8cc35cdce34c73863 translate-toolkit-1.4.0-rc1.tar.bz2 +e7f1227922ed8a03fbfcb1e63511e73e translate-toolkit-1.4.0-rc2.tar.bz2 Index: translate-toolkit.spec =================================================================== RCS file: /cvs/pkgs/rpms/translate-toolkit/F-11/translate-toolkit.spec,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- translate-toolkit.spec 24 Jul 2009 06:37:37 -0000 1.31 +++ translate-toolkit.spec 31 Jul 2009 20:54:42 -0000 1.32 @@ -2,14 +2,14 @@ Name: translate-toolkit Version: 1.4.0 -Release: 0.3.rc1%{?dist} +Release: 0.4.rc2%{?dist} Summary: Tools to assist with translation and software localization Group: Development/Tools License: GPLv2+ URL: http://translate.sourceforge.net/wiki/toolkit/index #Source0: http://downloads.sourceforge.net/translate/%{name}-%{version}.tar.bz2 -Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc1/%{name}-%{version}-rc1.tar.bz2 +Source0: http://translate.sourceforge.net/snapshots/%{name}-%{version}-rc2/%{name}-%{version}-rc2.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch0: translate-toolkit-1.2.1-stoplist.patch @@ -67,7 +67,7 @@ toolkit or to use the libraries in other %prep -%setup -q -n %{name}-%{version}-rc1 +%setup -q -n %{name}-%{version}-rc2 %patch0 -p1 @@ -123,6 +123,11 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 Dwayne Bailey - 1.4.0-0.4.rc2 +- Update to 1.4.0 rc2: + - Some small fixes for XLIFF support + - API documentation has been augmented with diagrams + * Fri Jul 24 2009 Dwayne Bailey - 1.4.0-0.3.rc1 - Update to 1.4.0 rc1: From bochecha at fedoraproject.org Fri Jul 31 20:55:06 2009 From: bochecha at fedoraproject.org (Mathieu Bridon) Date: Fri, 31 Jul 2009 20:55:06 +0000 (UTC) Subject: rpms/sugar-artwork/devel .cvsignore, 1.18, 1.19 sources, 1.18, 1.19 sugar-artwork.spec, 1.26, 1.27 Message-ID: <20090731205506.BCCD111C00CE@cvs1.fedora.phx.redhat.com> Author: bochecha Update of /cvs/pkgs/rpms/sugar-artwork/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19344 Modified Files: .cvsignore sources sugar-artwork.spec Log Message: New upstream release. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/.cvsignore,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- .cvsignore 18 Jul 2009 14:12:23 -0000 1.18 +++ .cvsignore 31 Jul 2009 20:55:06 -0000 1.19 @@ -1 +1 @@ -sugar-artwork-0.85.1.tar.bz2 +sugar-artwork-0.85.2.tar.bz2 Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sources,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- sources 18 Jul 2009 14:12:23 -0000 1.18 +++ sources 31 Jul 2009 20:55:06 -0000 1.19 @@ -1 +1 @@ -bfb42b922189b1ea843566b65f880a2a sugar-artwork-0.85.1.tar.bz2 +02c2a00fcaca92311fdf8ef66d662477 sugar-artwork-0.85.2.tar.bz2 Index: sugar-artwork.spec =================================================================== RCS file: /cvs/pkgs/rpms/sugar-artwork/devel/sugar-artwork.spec,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- sugar-artwork.spec 27 Jul 2009 04:58:54 -0000 1.26 +++ sugar-artwork.spec 31 Jul 2009 20:55:06 -0000 1.27 @@ -3,8 +3,8 @@ Summary: Artwork for Sugar look-and-feel Name: sugar-artwork -Version: 0.85.1 -Release: 3%{?dist} +Version: 0.85.2 +Release: 1%{?dist} #Release: 2.%{alphatag}%{?dist} URL: http://sugarlabs.org # git clone git://dev.laptop.org/artwork @@ -63,6 +63,9 @@ touch --no-create %{_datadir}/icons/suga %{_libdir}/gtk-2.0/*/engines/*.so %changelog +* Fri Jul 31 2009 Mathieu Bridon (bochecha) - 0.85.2-1 +- New upstream release + * Sun Jul 26 2009 Fedora Release Engineering - 0.85.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From pkgdb at fedoraproject.org Fri Jul 31 21:13:24 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:13:24 +0000 Subject: [pkgdb] python-tgext-admin was added for lmacken Message-ID: <20090731211325.11F3C10F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package python-tgext-admin with summary Admin Controller add-on for basic TG identity model tibbs has approved Package python-tgext-admin tibbs has added a Fedora devel branch for python-tgext-admin with an owner of lmacken tibbs has approved python-tgext-admin in Fedora devel tibbs has approved Package python-tgext-admin tibbs has set commit to Approved for 107427 on python-tgext-admin (Fedora devel) tibbs has set checkout to Approved for 107427 on python-tgext-admin (Fedora devel) tibbs has set build to Approved for 107427 on python-tgext-admin (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-admin From pkgdb at fedoraproject.org Fri Jul 31 21:13:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:13:26 +0000 Subject: [pkgdb] python-tgext-admin summary updated by tibbs Message-ID: <20090731211326.63AFF10F89C@bastion2.fedora.phx.redhat.com> tibbs set package python-tgext-admin summary to Admin Controller add-on for basic TG identity model To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-admin From pkgdb at fedoraproject.org Fri Jul 31 21:13:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:13:26 +0000 Subject: [pkgdb] python-tgext-admin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211326.8475810F89E@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-tgext-admin tibbs has set commit to Approved for 107427 on python-tgext-admin (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-tgext-admin (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-tgext-admin (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-admin From pkgdb at fedoraproject.org Fri Jul 31 21:13:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:13:26 +0000 Subject: [pkgdb] python-tgext-admin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211326.D5DC110F8B0@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-tgext-admin tibbs has set commit to Approved for 107427 on python-tgext-admin (Fedora 11) tibbs has set checkout to Approved for 107427 on python-tgext-admin (Fedora 11) tibbs has set build to Approved for 107427 on python-tgext-admin (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-admin From tibbs at fedoraproject.org Fri Jul 31 21:13:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:13:32 +0000 (UTC) Subject: rpms/python-tgext-admin/devel - New directory Message-ID: <20090731211332.3CF0311C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-admin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23017/rpms/python-tgext-admin/devel Log Message: Directory /cvs/pkgs/rpms/python-tgext-admin/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 31 21:13:26 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:13:26 +0000 Subject: [pkgdb] python-tgext-admin (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211327.3B82710F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-tgext-admin tibbs has set commit to Approved for 107427 on python-tgext-admin (Fedora 10) tibbs has set checkout to Approved for 107427 on python-tgext-admin (Fedora 10) tibbs has set build to Approved for 107427 on python-tgext-admin (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-tgext-admin From tibbs at fedoraproject.org Fri Jul 31 21:13:32 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:13:32 +0000 (UTC) Subject: rpms/python-tgext-admin - New directory Message-ID: <20090731211332.28EFD11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-admin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23017/rpms/python-tgext-admin Log Message: Directory /cvs/pkgs/rpms/python-tgext-admin added to the repository From tibbs at fedoraproject.org Fri Jul 31 21:13:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:13:38 +0000 (UTC) Subject: rpms/python-tgext-admin/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090731211338.7C21E11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-admin/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23017/rpms/python-tgext-admin/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-tgext-admin --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-tgext-admin # $Id: Makefile,v 1.1 2009/07/31 21:13:38 tibbs Exp $ NAME := python-tgext-admin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Fri Jul 31 21:13:38 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:13:38 +0000 (UTC) Subject: rpms/python-tgext-admin Makefile,NONE,1.1 Message-ID: <20090731211338.4603511C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-tgext-admin In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23017/rpms/python-tgext-admin Added Files: Makefile Log Message: Setup of module python-tgext-admin --- NEW FILE Makefile --- # Top level Makefile for module python-tgext-admin all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Fri Jul 31 21:14:09 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:14:09 +0000 Subject: [pkgdb] emacs-common-proofgeneral was added for amdunn Message-ID: <20090731211410.8EC6410F89E@bastion2.fedora.phx.redhat.com> tibbs has added Package emacs-common-proofgeneral with summary Emacs mode for standard interaction interface for proof assistants tibbs has approved Package emacs-common-proofgeneral tibbs has added a Fedora devel branch for emacs-common-proofgeneral with an owner of amdunn tibbs has approved emacs-common-proofgeneral in Fedora devel tibbs has approved Package emacs-common-proofgeneral tibbs has set commit to Approved for 107427 on emacs-common-proofgeneral (Fedora devel) tibbs has set checkout to Approved for 107427 on emacs-common-proofgeneral (Fedora devel) tibbs has set build to Approved for 107427 on emacs-common-proofgeneral (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-common-proofgeneral From pkgdb at fedoraproject.org Fri Jul 31 21:14:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:14:10 +0000 Subject: [pkgdb] emacs-common-proofgeneral summary updated by tibbs Message-ID: <20090731211412.3D85210F8BD@bastion2.fedora.phx.redhat.com> tibbs set package emacs-common-proofgeneral summary to Emacs mode for standard interaction interface for proof assistants To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-common-proofgeneral From pkgdb at fedoraproject.org Fri Jul 31 21:14:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:14:10 +0000 Subject: [pkgdb] emacs-common-proofgeneral (Fedora, 11) updated by tibbs Message-ID: <20090731211417.A08F610F8C7@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for emacs-common-proofgeneral tibbs has set commit to Approved for 107427 on emacs-common-proofgeneral (Fedora 10) tibbs has set checkout to Approved for 107427 on emacs-common-proofgeneral (Fedora 10) tibbs has set build to Approved for 107427 on emacs-common-proofgeneral (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-common-proofgeneral From tibbs at fedoraproject.org Fri Jul 31 21:14:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:14:15 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral - New directory Message-ID: <20090731211415.16D6F11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-common-proofgeneral In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh23345/rpms/emacs-common-proofgeneral Log Message: Directory /cvs/pkgs/rpms/emacs-common-proofgeneral added to the repository From pkgdb at fedoraproject.org Fri Jul 31 21:14:10 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:14:10 +0000 Subject: [pkgdb] emacs-common-proofgeneral (Fedora, 11) updated by tibbs Message-ID: <20090731211415.0B8A510F8C1@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for emacs-common-proofgeneral tibbs has set commit to Approved for 107427 on emacs-common-proofgeneral (Fedora 11) tibbs has set checkout to Approved for 107427 on emacs-common-proofgeneral (Fedora 11) tibbs has set build to Approved for 107427 on emacs-common-proofgeneral (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/emacs-common-proofgeneral From tibbs at fedoraproject.org Fri Jul 31 21:14:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:14:15 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral/devel - New directory Message-ID: <20090731211415.3C6D011C00D7@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-common-proofgeneral/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh23345/rpms/emacs-common-proofgeneral/devel Log Message: Directory /cvs/pkgs/rpms/emacs-common-proofgeneral/devel added to the repository From tibbs at fedoraproject.org Fri Jul 31 21:14:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:14:21 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090731211421.3D64811C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-common-proofgeneral/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh23345/rpms/emacs-common-proofgeneral/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module emacs-common-proofgeneral --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: emacs-common-proofgeneral # $Id: Makefile,v 1.1 2009/07/31 21:14:21 tibbs Exp $ NAME := emacs-common-proofgeneral SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Fri Jul 31 21:14:21 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:14:21 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral Makefile,NONE,1.1 Message-ID: <20090731211421.01B5C11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/emacs-common-proofgeneral In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsh23345/rpms/emacs-common-proofgeneral Added Files: Makefile Log Message: Setup of module emacs-common-proofgeneral --- NEW FILE Makefile --- # Top level Makefile for module emacs-common-proofgeneral all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From pkgdb at fedoraproject.org Fri Jul 31 21:15:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:00 +0000 Subject: [pkgdb] python-sprox was added for lmacken Message-ID: <20090731211501.1E7F210F89C@bastion2.fedora.phx.redhat.com> tibbs has added Package python-sprox with summary A package for creation of web widgets directly from database schema tibbs has approved Package python-sprox tibbs has added a Fedora devel branch for python-sprox with an owner of lmacken tibbs has approved python-sprox in Fedora devel tibbs has approved Package python-sprox tibbs has set commit to Approved for 107427 on python-sprox (Fedora devel) tibbs has set checkout to Approved for 107427 on python-sprox (Fedora devel) tibbs has set build to Approved for 107427 on python-sprox (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sprox From pkgdb at fedoraproject.org Fri Jul 31 21:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:02 +0000 Subject: [pkgdb] python-sprox summary updated by tibbs Message-ID: <20090731211502.A883810F89E@bastion2.fedora.phx.redhat.com> tibbs set package python-sprox summary to A package for creation of web widgets directly from database schema To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sprox From pkgdb at fedoraproject.org Fri Jul 31 21:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:02 +0000 Subject: [pkgdb] python-sprox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211503.5F3FF10F8B5@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for python-sprox tibbs has set commit to Approved for 107427 on python-sprox (Fedora 11) tibbs has set checkout to Approved for 107427 on python-sprox (Fedora 11) tibbs has set build to Approved for 107427 on python-sprox (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sprox From tibbs at fedoraproject.org Fri Jul 31 21:15:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:15:09 +0000 (UTC) Subject: rpms/python-sprox - New directory Message-ID: <20090731211509.1F42F11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sprox In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23678/rpms/python-sprox Log Message: Directory /cvs/pkgs/rpms/python-sprox added to the repository From pkgdb at fedoraproject.org Fri Jul 31 21:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:02 +0000 Subject: [pkgdb] python-sprox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211503.C83A210F8BA@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-sprox tibbs has set commit to Approved for 107427 on python-sprox (Fedora 10) tibbs has set checkout to Approved for 107427 on python-sprox (Fedora 10) tibbs has set build to Approved for 107427 on python-sprox (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sprox From tibbs at fedoraproject.org Fri Jul 31 21:15:09 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:15:09 +0000 (UTC) Subject: rpms/python-sprox/devel - New directory Message-ID: <20090731211509.3944911C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sprox/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23678/rpms/python-sprox/devel Log Message: Directory /cvs/pkgs/rpms/python-sprox/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 31 21:15:02 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:02 +0000 Subject: [pkgdb] python-sprox (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211504.3A8C010F8BE@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for python-sprox tibbs has set commit to Approved for 107427 on python-sprox (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on python-sprox (Fedora EPEL 5) tibbs has set build to Approved for 107427 on python-sprox (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-sprox From tibbs at fedoraproject.org Fri Jul 31 21:15:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:15:15 +0000 (UTC) Subject: rpms/python-sprox Makefile,NONE,1.1 Message-ID: <20090731211515.0C4D211C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sprox In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23678/rpms/python-sprox Added Files: Makefile Log Message: Setup of module python-sprox --- NEW FILE Makefile --- # Top level Makefile for module python-sprox all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 31 21:15:15 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:15:15 +0000 (UTC) Subject: rpms/python-sprox/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090731211515.3EDCE11C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/python-sprox/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsq23678/rpms/python-sprox/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module python-sprox --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: python-sprox # $Id: Makefile,v 1.1 2009/07/31 21:15:15 tibbs Exp $ NAME := python-sprox SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 31 21:15:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:15:58 +0000 Subject: [pkgdb] libHX (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211559.E456B10F8B4@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for libHX tibbs has set commit to Approved for 107427 on libHX (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on libHX (Fedora EPEL 5) tibbs has set build to Approved for 107427 on libHX (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/libHX From pkgdb at fedoraproject.org Fri Jul 31 21:17:18 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:17:18 +0000 Subject: [pkgdb] pam_mount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211718.ADA4210F88F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for pam_mount tibbs has set commit to Approved for 107427 on pam_mount (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on pam_mount (Fedora EPEL 5) tibbs has set build to Approved for 107427 on pam_mount (Fedora EPEL 5) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/pam_mount From than at fedoraproject.org Fri Jul 31 21:17:21 2009 From: than at fedoraproject.org (Than Ngo) Date: Fri, 31 Jul 2009 21:17:21 +0000 (UTC) Subject: rpms/kdegames/devel kdegames-4.3.0-trademarks.patch, NONE, 1.1 kdegames.spec, 1.140, 1.141 kdegames-4.2.98-trademarks.patch, 1.1, NONE Message-ID: <20090731211721.B528D11C00CE@cvs1.fedora.phx.redhat.com> Author: than Update of /cvs/extras/rpms/kdegames/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24200 Modified Files: kdegames.spec Added Files: kdegames-4.3.0-trademarks.patch Removed Files: kdegames-4.2.98-trademarks.patch Log Message: adapt the patch kdegames-4.3.0-trademarks.patch: README | 12 ++++++-- doc/kbattleship/index.docbook | 37 +++++++++++++------------ doc/ktron/index.docbook | 11 ++++--- kbattleship/src/kbattleship.desktop | 14 +++------ kbattleship/src/kbattleship.protocol | 50 +++++++++++++++++------------------ kbattleship/src/main.cpp | 4 +- ktron/main.cpp | 5 ++- ktron/player.cpp | 2 - 8 files changed, 70 insertions(+), 65 deletions(-) --- NEW FILE kdegames-4.3.0-trademarks.patch --- diff -up kdegames-4.3.0/doc/kbattleship/index.docbook.trademarks kdegames-4.3.0/doc/kbattleship/index.docbook --- kdegames-4.3.0/doc/kbattleship/index.docbook.trademarks 2009-02-26 10:11:22.000000000 +0100 +++ kdegames-4.3.0/doc/kbattleship/index.docbook 2009-07-31 23:01:31.000000000 +0200 @@ -1,6 +1,6 @@ + KSinkShips"> @@ -8,7 +8,7 @@ -The &kbattleship; Handbook +The &kappname; Handbook @@ -57,16 +57,17 @@ -&kbattleship; is a network-enabled implementation of the famous Battle Ship game for &kde;. +&kappname; is a network-enabled implementation of the famous ship sinking game for &kde;. KDE kdegames -kbattleship +ksinkships game -battleship -battle +sinkships +sink +ships @@ -76,7 +77,7 @@ Gametype:Strategy, Board Number of possible players:Two -&kbattleship; is a Battle Ship game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others +&kappname; is a ship sinking game for &kde;. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. @@ -85,14 +86,14 @@ ships in turns without knowing where the How to Play Objective:Sink all of the opponent???s ships before the opponent sink all the ships of your own. -If you want to play &kbattleship;, you will need two players, either play +If you want to play &kappname;, you will need two players, either play against the computer or in a network against another player. To play against your computer, first select the difficulty level on the right of the status bar, and then select Single player on the welcome screen, or directly on the Game menu. To start a network game, one player has to host the game by selecting Host network game on the welcome screen, or choosing Game Host Game.... A dialog box opens which asks for a Nickname: and Port:. Normally, -&kbattleship; will suggest your full name, but you can enter any string +&kappname; will suggest your full name, but you can enter any string you want. The predefined port should be ok. However, if you encounter problems, you can choose any other free port above 1024. @@ -186,10 +187,10 @@ The first player to destroy all their op Multiplayer support -&kbattleship; can be played online on any GGZ Gaming Zone site. You can +&kappname; can be played online on any GGZ Gaming Zone site. You can find other players there, and compete against them. Just enter one -of the available Battleship rooms with any GGZ core client, such as -kggz, and &kbattleship; will be offered to you as your favourite +of the available rooms with any GGZ core client, such as +kggz, and &kappname; will be offered to you as your favourite game client. If a GGZ core client is installed, you can try out GGZ by visiting the community site. @@ -197,7 +198,7 @@ out GGZ by visiting the Credits and Licenses -&kbattleship; Copyright 2000-2007 +&kappname; Copyright 2000-2007 Authors diff -up kdegames-4.3.0/doc/ktron/index.docbook.trademarks kdegames-4.3.0/doc/ktron/index.docbook --- kdegames-4.3.0/doc/ktron/index.docbook.trademarks 2009-02-26 10:11:14.000000000 +0100 +++ kdegames-4.3.0/doc/ktron/index.docbook 2009-07-31 23:01:31.000000000 +0200 @@ -1,6 +1,6 @@ + KSnakeDuel"> @@ -61,7 +61,7 @@ -&kappname; is a simple Tron clone for &kde;, which you can +&kappname; is a simple snake duel game for &kde;, which you can play alone or against a friend. @@ -69,11 +69,12 @@ play alone or against a friend. KDE kdegames -KTron +KSnakeDuel game -tron +snakeduel KSnake snake +duel @@ -81,7 +82,7 @@ play alone or against a friend. Introduction -&kappname; is a simple Tron-Clone for the +&kappname; is a simple snake duel game for the K Desktop Environment. You can play &kappname; against the computer or a friend. The aim of the game is to live longer than your opponent. To do that, diff -up kdegames-4.3.0/kbattleship/src/kbattleship.desktop.trademarks kdegames-4.3.0/kbattleship/src/kbattleship.desktop --- kdegames-4.3.0/kbattleship/src/kbattleship.desktop.trademarks 2009-07-21 17:20:37.000000000 +0200 +++ kdegames-4.3.0/kbattleship/src/kbattleship.desktop 2009-07-31 23:01:31.000000000 +0200 @@ -1,6 +1,5 @@ [Desktop Entry] -Name=KBattleship -Name[af]=Kbattleship +Name=KSinkShips Name[be]=???????????? ?????? Name[bn]=??????-?????????????????????????????? Name[cs]=Lod?? @@ -14,17 +13,16 @@ Name[pa]=??????-???????????? ??????????? Name[ro]=B??t??lie naval?? Name[sr]=????????????????????????? Name[sr at latin]=K???podmornice -Name[sv]=Kbattleship Name[ta]=?????????????????????????????????????????? Name[tg]=K?????????? ?????????????? Name[uk]=???????????????? ?????? -Name[x-test]=xxKBattleshipxx -Name[zh_TW]=KBattleship ?????? +Name[x-test]=xxKSinkShipsxx +Name[zh_TW]=KSinkShips ?????? Exec=kbattleship -caption "%c" Icon=kbattleship Type=Application X-DocPath=kbattleship/index.html -GenericName=Battleship Game +GenericName=Ship Sinking Game GenericName[be]=???????????? ?? ???????????? ?????? GenericName[bn]=?????????????????????????????? ???????????? GenericName[ca]=Joc d'enfonsar la flota @@ -32,7 +30,6 @@ GenericName[cs]=Bitva lod?? GenericName[cy]=G??m Longau Rhyfel GenericName[da]=S??nke slagskibe-spil GenericName[de]=Schiffe versenken -GenericName[el]=???????????????? Battleship GenericName[eo]=Batal??ipa ludo GenericName[es]=Juego de la batalla de naves GenericName[et]=Laevade pommitamise m??ng @@ -40,7 +37,6 @@ GenericName[eu]=Ontzi-guda jokoa GenericName[fa]=???????? ?????? ??????????????? GenericName[fi]=Meritaistelupeli GenericName[fr]=Jeu de bataille navale -GenericName[ga]=Cluiche cos??il le "Battleship" GenericName[gl]=Xogo de batalla naval GenericName[he]=???????? ???????????? GenericName[hne]=????????????????????? ????????? @@ -74,7 +70,7 @@ GenericName[ta]=???????????????????????? GenericName[tr]=Amiral Batt?? Oyunu GenericName[uk]=?????? ?? ???????????????? ?????? GenericName[wa]=Djeu di batreye di bateas -GenericName[x-test]=xxBattleship Gamexx +GenericName[x-test]=xxShip Sinking Gamexx GenericName[zh_CN]=?????????????????? GenericName[zh_TW]=???????????? Terminal=false diff -up kdegames-4.3.0/kbattleship/src/kbattleship.protocol.trademarks kdegames-4.3.0/kbattleship/src/kbattleship.protocol --- kdegames-4.3.0/kbattleship/src/kbattleship.protocol.trademarks 2009-07-29 13:11:24.000000000 +0200 +++ kdegames-4.3.0/kbattleship/src/kbattleship.protocol 2009-07-31 23:15:48.000000000 +0200 @@ -5,34 +5,34 @@ input=none output=none Icon=kbattleship -Description=A protocol for the game KBattleship -Description[ca]=Un protocol pel joc KBattleship -Description[da]=En protokol for spillet KBattleship -Description[de]=Ein Protokoll f??r das KBattleship-Spiel. -Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KBattleship -Description[es]=Un protocolo para el juego KBattleship -Description[et]=KBattleshipi protokoll -Description[eu]=KBattleship jokoaren protokoloa -Description[fr]=Un protocole pour le jeu KBattleship -Description[ga]=Pr??tacal le haghaidh an chluiche KBattleship -Description[gl]=Un protocolo para o xogo KBattleship -Description[it]=Un protocollo per KBattleship -Description[km]=??????????????????????????????????????????????????????????????? KBattleship -Description[lv]=Protokols sp??lei KBattleship -Description[nds]=En Protokoll f??r dat Speel "KBattleship" -Description[nl]=Een protocol voor het spel KBattleship -Description[nn]=Protokoll for KBattleship -Description[pt]=Um protocolo para o jogo KBattleship -Description[pt_BR]=Um protocolo para o jogo KBattleship -Description[ru]=???????????????? ?????? ???????? KBattleship -Description[sl]=Protokol za igro KBattleship +Description=A protocol for the game KSinkShips +Description[ca]=Un protocol pel joc KSinkShips +Description[da]=En protokol for spillet KSinkShips +Description[de]=Ein Protokoll f??r das KSinkShips-Spiel. +Description[el]=?????? ???????????????????? ?????? ???? ???????????????? KSinkShips +Description[es]=Un protocolo para el juego KSinkShips +Description[et]=KSinkShipsi protokoll +Description[eu]=KSinkShips jokoaren protokoloa +Description[fr]=Un protocole pour le jeu KSinkShips +Description[ga]=Pr??tacal le haghaidh an chluiche KSinkShips +Description[gl]=Un protocolo para o xogo KSinkShips +Description[it]=Un protocollo per KSinkShips +Description[km]=??????????????????????????????????????????????????????????????? KSinkShips +Description[lv]=Protokols sp??lei KSinkShips +Description[nds]=En Protokoll f??r dat Speel "KSinkShips" +Description[nl]=Een protocol voor het spel KSinkShips +Description[nn]=Protokoll for KSinkShips +Description[pt]=Um protocolo para o jogo KSinkShips +Description[pt_BR]=Um protocolo para o jogo KSinkShips +Description[ru]=???????????????? ?????? ???????? KSinkShips +Description[sl]=Protokol za igro KSinkShips Description[sr]=???????????????? ???? ????????????????????????? Description[sr at latin]=Protokol za K???podmornice Description[sv]=Ett protokoll f??r spelet S??nka fartyg -Description[uk]=???????????????? ?????? ?????? KBattleship -Description[x-test]=xxA protocol for the game KBattleshipxx -Description[zh_CN]=KBattleship ?????????????????? -Description[zh_TW]=KBattleship ????????????????????? +Description[uk]=???????????????? ?????? ?????? KSinkShips +Description[x-test]=xxA protocol for the game KSinkShipsxx +Description[zh_CN]=KSinkShips ?????????????????? +Description[zh_TW]=KSinkShips ????????????????????? #exec=kbattleship %u helper=true diff -up kdegames-4.3.0/kbattleship/src/main.cpp.trademarks kdegames-4.3.0/kbattleship/src/main.cpp --- kdegames-4.3.0/kbattleship/src/main.cpp.trademarks 2009-03-18 10:57:42.000000000 +0100 +++ kdegames-4.3.0/kbattleship/src/main.cpp 2009-07-31 23:01:31.000000000 +0200 @@ -21,7 +21,7 @@ int main(int argc, char** argv) { - KAboutData aboutData("kbattleship", 0, ki18n("KBattleship"), "2.0", + KAboutData aboutData("kbattleship", 0, ki18n("KSinkShips"), "2.0", ki18n("The KDE Battleship clone"), KAboutData::License_GPL, ki18n("(c) 2000-2005 Nikolas Zimmermann, Daniel Molkentin\n" "(c) 2007 Paolo Capriotti"), KLocalizedString(), "http://games.kde.org/kbattleship" ); @@ -48,7 +48,7 @@ int main(int argc, char** argv) KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; - options.add("!+[URL]", ki18n("URL of a KBattleship game server to connect to after startup")); + options.add("!+[URL]", ki18n("URL of a KSinkShips game server to connect to after startup")); KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. KApplication app; diff -up kdegames-4.3.0/ktron/main.cpp.trademarks kdegames-4.3.0/ktron/main.cpp --- kdegames-4.3.0/ktron/main.cpp.trademarks 2009-02-26 10:11:10.000000000 +0100 +++ kdegames-4.3.0/ktron/main.cpp 2009-07-31 23:01:31.000000000 +0200 @@ -41,7 +41,7 @@ static KLocalizedString notice = ki18n(" int main(int argc, char* argv[]) { - KAboutData aboutData( "ktron", 0, ki18n("KTron"), + KAboutData aboutData( "ktron", 0, ki18n("KSnakeDuel"), KTRON_VERSION, description, KAboutData::License_GPL, notice); aboutData.addAuthor(ki18n("Matthias Kiefer"), ki18n("Original author"), "matthias.kiefer at gmx.de"); aboutData.addAuthor(ki18n("Benjamin Meyer"), ki18n("Various improvements"), "ben+ktron at meyerhome.net"); @@ -50,7 +50,8 @@ int main(int argc, char* argv[]) KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineOptions options; - options.add("ktron", ki18n("Start in KTron mode")); + // This is the default anyway, why does this need an option? -- Kevin Kofler + // options.add("ktron", ki18n("Start in KTron mode")); options.add("snake", ki18n("Start in KSnake mode")); KCmdLineArgs::addCmdLineOptions(options); diff -up kdegames-4.3.0/ktron/player.cpp.trademarks kdegames-4.3.0/ktron/player.cpp --- kdegames-4.3.0/ktron/player.cpp.trademarks 2009-04-05 21:59:49.000000000 +0200 +++ kdegames-4.3.0/ktron/player.cpp 2009-07-31 23:01:31.000000000 +0200 @@ -92,7 +92,7 @@ QString Player::getName() { if (isComputer()) { - return i18n("KTron"); + return i18n("KSnakeDuel"); } else { diff -up kdegames-4.3.0/README.trademarks kdegames-4.3.0/README --- kdegames-4.3.0/README.trademarks 2009-01-16 16:09:32.000000000 +0100 +++ kdegames-4.3.0/README 2009-07-31 23:01:31.000000000 +0200 @@ -25,9 +25,6 @@ This is a compilation of more than 20 va Play backgammon against a local human player, via a game server or against GNU Backgammon (not included) -* kbattleship - Sink battleship of your opponents, with built-in game server. - * kblackbox Find the balls hidden in the black box by shooting laser beams! @@ -70,6 +67,15 @@ This is a compilation of more than 20 va * kshisen Patience game where you take away all pieces. +* ksinkships + Sink ships of your opponents, with built-in game server. + +* ksnake + Don't bite yourself, eat apples! + +* ksnakeduel + Like ksnake, but without fruits. + * kspaceduel Two player game with shooting spaceships flying around a sun. Index: kdegames.spec =================================================================== RCS file: /cvs/extras/rpms/kdegames/devel/kdegames.spec,v retrieving revision 1.140 retrieving revision 1.141 diff -u -p -r1.140 -r1.141 --- kdegames.spec 29 Jul 2009 22:54:16 -0000 1.140 +++ kdegames.spec 31 Jul 2009 21:17:21 -0000 1.141 @@ -8,7 +8,7 @@ License: GPLv2 URL: http://www.kde.org/ Group: Amusements/Games Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdegames-%{version}.tar.bz2 -Patch0: kdegames-4.2.98-trademarks.patch +Patch0: kdegames-4.3.0-trademarks.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) --- kdegames-4.2.98-trademarks.patch DELETED --- From pkgdb at fedoraproject.org Fri Jul 31 21:17:58 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:17:58 +0000 Subject: [pkgdb] ccrypt was added for fab Message-ID: <20090731211758.DE19610F88F@bastion2.fedora.phx.redhat.com> tibbs has added Package ccrypt with summary Secure encryption and decryption of files and streams tibbs has approved Package ccrypt tibbs has added a Fedora devel branch for ccrypt with an owner of fab tibbs has approved ccrypt in Fedora devel tibbs has approved Package ccrypt tibbs has set commit to Approved for 107427 on ccrypt (Fedora devel) tibbs has set checkout to Approved for 107427 on ccrypt (Fedora devel) tibbs has set build to Approved for 107427 on ccrypt (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccrypt From pkgdb at fedoraproject.org Fri Jul 31 21:18:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:18:00 +0000 Subject: [pkgdb] ccrypt summary updated by tibbs Message-ID: <20090731211800.5E10610F89B@bastion2.fedora.phx.redhat.com> tibbs set package ccrypt summary to Secure encryption and decryption of files and streams To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccrypt From pkgdb at fedoraproject.org Fri Jul 31 21:18:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:18:00 +0000 Subject: [pkgdb] ccrypt (Fedora, 11) updated by tibbs Message-ID: <20090731211801.1508D10F89E@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for ccrypt tibbs has set commit to Approved for 107427 on ccrypt (Fedora 10) tibbs has set checkout to Approved for 107427 on ccrypt (Fedora 10) tibbs has set build to Approved for 107427 on ccrypt (Fedora 10) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccrypt From pkgdb at fedoraproject.org Fri Jul 31 21:18:00 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:18:00 +0000 Subject: [pkgdb] ccrypt (Fedora, 11) updated by tibbs Message-ID: <20090731211800.BC89B10F89F@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for ccrypt tibbs has set commit to Approved for 107427 on ccrypt (Fedora 11) tibbs has set checkout to Approved for 107427 on ccrypt (Fedora 11) tibbs has set build to Approved for 107427 on ccrypt (Fedora 11) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/ccrypt From tibbs at fedoraproject.org Fri Jul 31 21:18:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:18:06 +0000 (UTC) Subject: rpms/ccrypt - New directory Message-ID: <20090731211806.213E711C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ccrypt In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ24493/rpms/ccrypt Log Message: Directory /cvs/pkgs/rpms/ccrypt added to the repository From tibbs at fedoraproject.org Fri Jul 31 21:18:06 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:18:06 +0000 (UTC) Subject: rpms/ccrypt/devel - New directory Message-ID: <20090731211806.3EAD411C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ccrypt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ24493/rpms/ccrypt/devel Log Message: Directory /cvs/pkgs/rpms/ccrypt/devel added to the repository From tibbs at fedoraproject.org Fri Jul 31 21:18:13 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:18:13 +0000 (UTC) Subject: rpms/ccrypt Makefile,NONE,1.1 Message-ID: <20090731211813.B320011C0439@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ccrypt In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ24493/rpms/ccrypt Added Files: Makefile Log Message: Setup of module ccrypt --- NEW FILE Makefile --- # Top level Makefile for module ccrypt all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From tibbs at fedoraproject.org Fri Jul 31 21:18:14 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:18:14 +0000 (UTC) Subject: rpms/ccrypt/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090731211814.50BAC11C043B@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/ccrypt/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsQ24493/rpms/ccrypt/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module ccrypt --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: ccrypt # $Id: Makefile,v 1.1 2009/07/31 21:18:14 tibbs Exp $ NAME := ccrypt SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From pkgdb at fedoraproject.org Fri Jul 31 21:19:03 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:03 +0000 Subject: [pkgdb] python-stomper (Fedora, 10) updated by tibbs Message-ID: <20090731211903.7BC8E10F89C@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for python-stomper tibbs has set commit to Approved for 107427 on python-stomper (Fedora 10) tibbs has set checkout to Approved for 107427 on python-stomper (Fedora 10) tibbs has set build to Approved for 107427 on python-stomper (Fedora 10) tibbs changed owner of python-stomper in Fedora 10 to lmacken tibbs approved watchbugzilla on python-stomper (Fedora 10) for silas tibbs approved watchcommits on python-stomper (Fedora 10) for silas tibbs approved commit on python-stomper (Fedora 10) for silas tibbs approved build on python-stomper (Fedora 10) for silas tibbs approved approveacls on python-stomper (Fedora 10) for silas To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/python-stomper From pkgdb at fedoraproject.org Fri Jul 31 21:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:33 +0000 Subject: [pkgdb] perl-Test-Refcount summary updated by tibbs Message-ID: <20090731211934.0B80010F89A@bastion2.fedora.phx.redhat.com> tibbs set package perl-Test-Refcount summary to Assert reference counts on objects To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From pkgdb at fedoraproject.org Fri Jul 31 21:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:33 +0000 Subject: [pkgdb] perl-Test-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211936.2A07A10F8C0@bastion2.fedora.phx.redhat.com> tibbs approved watchbugzilla on perl-Test-Refcount (Fedora devel) for perl-sig tibbs approved watchcommits on perl-Test-Refcount (Fedora devel) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From pkgdb at fedoraproject.org Fri Jul 31 21:19:31 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:31 +0000 Subject: [pkgdb] perl-Test-Refcount was added for kwizart Message-ID: <20090731211932.A697710F89B@bastion2.fedora.phx.redhat.com> tibbs has added Package perl-Test-Refcount with summary Assert reference counts on objects tibbs has approved Package perl-Test-Refcount tibbs has added a Fedora devel branch for perl-Test-Refcount with an owner of kwizart tibbs has approved perl-Test-Refcount in Fedora devel tibbs has approved Package perl-Test-Refcount tibbs has set commit to Approved for 107427 on perl-Test-Refcount (Fedora devel) tibbs has set checkout to Approved for 107427 on perl-Test-Refcount (Fedora devel) tibbs has set build to Approved for 107427 on perl-Test-Refcount (Fedora devel) To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From pkgdb at fedoraproject.org Fri Jul 31 21:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:33 +0000 Subject: [pkgdb] perl-Test-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211937.D216810F8C8@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 11 branch for perl-Test-Refcount tibbs has set commit to Approved for 107427 on perl-Test-Refcount (Fedora 11) tibbs has set checkout to Approved for 107427 on perl-Test-Refcount (Fedora 11) tibbs has set build to Approved for 107427 on perl-Test-Refcount (Fedora 11) tibbs approved watchbugzilla on perl-Test-Refcount (Fedora 11) for perl-sig tibbs approved watchcommits on perl-Test-Refcount (Fedora 11) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From pkgdb at fedoraproject.org Fri Jul 31 21:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:33 +0000 Subject: [pkgdb] perl-Test-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211938.DAD7710F89E@bastion2.fedora.phx.redhat.com> tibbs added a Fedora EPEL 5 branch for perl-Test-Refcount tibbs has set commit to Approved for 107427 on perl-Test-Refcount (Fedora EPEL 5) tibbs has set checkout to Approved for 107427 on perl-Test-Refcount (Fedora EPEL 5) tibbs has set build to Approved for 107427 on perl-Test-Refcount (Fedora EPEL 5) tibbs approved watchbugzilla on perl-Test-Refcount (Fedora EPEL 5) for perl-sig tibbs approved watchcommits on perl-Test-Refcount (Fedora EPEL 5) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From tibbs at fedoraproject.org Fri Jul 31 21:19:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:19:39 +0000 (UTC) Subject: rpms/perl-Test-Refcount - New directory Message-ID: <20090731211939.145F611C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Test-Refcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO24971/rpms/perl-Test-Refcount Log Message: Directory /cvs/pkgs/rpms/perl-Test-Refcount added to the repository From tibbs at fedoraproject.org Fri Jul 31 21:19:39 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:19:39 +0000 (UTC) Subject: rpms/perl-Test-Refcount/devel - New directory Message-ID: <20090731211939.360F611C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Test-Refcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO24971/rpms/perl-Test-Refcount/devel Log Message: Directory /cvs/pkgs/rpms/perl-Test-Refcount/devel added to the repository From pkgdb at fedoraproject.org Fri Jul 31 21:19:33 2009 From: pkgdb at fedoraproject.org (Fedora PackageDB) Date: Fri, 31 Jul 2009 21:19:33 +0000 Subject: [pkgdb] perl-Test-Refcount (Fedora EPEL, 5) updated by tibbs Message-ID: <20090731211937.3E75E10F8C6@bastion2.fedora.phx.redhat.com> tibbs added a Fedora 10 branch for perl-Test-Refcount tibbs has set commit to Approved for 107427 on perl-Test-Refcount (Fedora 10) tibbs has set checkout to Approved for 107427 on perl-Test-Refcount (Fedora 10) tibbs has set build to Approved for 107427 on perl-Test-Refcount (Fedora 10) tibbs approved watchbugzilla on perl-Test-Refcount (Fedora 10) for perl-sig tibbs approved watchcommits on perl-Test-Refcount (Fedora 10) for perl-sig To make changes to this package see: https://admin.fedoraproject.org/pkgdb/packages/name/perl-Test-Refcount From tibbs at fedoraproject.org Fri Jul 31 21:19:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:19:45 +0000 (UTC) Subject: rpms/perl-Test-Refcount/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1 Message-ID: <20090731211945.3F26D11C00D4@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Test-Refcount/devel In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO24971/rpms/perl-Test-Refcount/devel Added Files: .cvsignore Makefile sources Log Message: Setup of module perl-Test-Refcount --- NEW FILE .cvsignore --- --- NEW FILE Makefile --- # Makefile for source rpm: perl-Test-Refcount # $Id: Makefile,v 1.1 2009/07/31 21:19:45 tibbs Exp $ NAME := perl-Test-Refcount SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) ifeq ($(MAKEFILE_COMMON),) # attept a checkout define checkout-makefile-common test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 endef MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) endif include $(MAKEFILE_COMMON) --- NEW FILE sources --- From tibbs at fedoraproject.org Fri Jul 31 21:19:45 2009 From: tibbs at fedoraproject.org (=?utf-8?b?SmFzb24g44OG44Kj44OT44OE?=) Date: Fri, 31 Jul 2009 21:19:45 +0000 (UTC) Subject: rpms/perl-Test-Refcount Makefile,NONE,1.1 Message-ID: <20090731211945.0B71E11C00CE@cvs1.fedora.phx.redhat.com> Author: tibbs Update of /cvs/pkgs/rpms/perl-Test-Refcount In directory cvs1.fedora.phx.redhat.com:/home/fedora/tibbs/CVSROOT/admin/tmpcvsO24971/rpms/perl-Test-Refcount Added Files: Makefile Log Message: Setup of module perl-Test-Refcount --- NEW FILE Makefile --- # Top level Makefile for module perl-Test-Refcount all : CVS/Root common-update @cvs update common-update : common @cd common && cvs update common : CVS/Root @cvs checkout common CVS/Root : @echo "ERROR: This does not look like a CVS checkout" && exit 1 clean : @find . -type f -name *~ -exec rm -fv {} \; From dmaphy at fedoraproject.org Fri Jul 31 21:20:10 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Fri, 31 Jul 2009 21:20:10 +0000 (UTC) Subject: rpms/geany/F-10 geany.spec,1.25,1.26 Message-ID: <20090731212010.CD30711C04D4@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25025 Modified Files: geany.spec Log Message: update URL to www.geany.org Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/F-10/geany.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- geany.spec 27 Jul 2009 18:32:24 -0000 1.25 +++ geany.spec 31 Jul 2009 21:20:10 -0000 1.26 @@ -5,7 +5,7 @@ Summary: A fast and lightweight IDE us Group: Development/Tools License: GPLv2+ -URL: http://geany.uvena.de/ +URL: http://www.geany.org/ Source0: http://download.geany.org/%{name}-%{version}.tar.bz2 # The following tags files were retrieved 25th Feb 2009 From dmaphy at fedoraproject.org Fri Jul 31 21:21:24 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Fri, 31 Jul 2009 21:21:24 +0000 (UTC) Subject: rpms/geany/F-11 geany.spec,1.28,1.29 Message-ID: <20090731212124.DCDC711C00CE@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25403 Modified Files: geany.spec Log Message: update URL to www.geany.org Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/F-11/geany.spec,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- geany.spec 27 Jul 2009 18:36:46 -0000 1.28 +++ geany.spec 31 Jul 2009 21:21:24 -0000 1.29 @@ -5,7 +5,7 @@ Summary: A fast and lightweight IDE us Group: Development/Tools License: GPLv2+ -URL: http://geany.uvena.de/ +URL: http://www.geany.org/ Source0: http://download.geany.org/%{name}-%{version}.tar.bz2 # The following tags files were retrieved 25th Feb 2009 From dmaphy at fedoraproject.org Fri Jul 31 21:22:47 2009 From: dmaphy at fedoraproject.org (Dominic Hopf) Date: Fri, 31 Jul 2009 21:22:47 +0000 (UTC) Subject: rpms/geany/devel geany.spec,1.29,1.30 Message-ID: <20090731212247.83CA511C00CE@cvs1.fedora.phx.redhat.com> Author: dmaphy Update of /cvs/pkgs/rpms/geany/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25582 Modified Files: geany.spec Log Message: update URL to www.geany.org Index: geany.spec =================================================================== RCS file: /cvs/pkgs/rpms/geany/devel/geany.spec,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -r1.29 -r1.30 --- geany.spec 27 Jul 2009 18:11:02 -0000 1.29 +++ geany.spec 31 Jul 2009 21:22:47 -0000 1.30 @@ -5,7 +5,7 @@ Summary: A fast and lightweight IDE us Group: Development/Tools License: GPLv2+ -URL: http://geany.uvena.de/ +URL: http://www.geany.org/ Source0: http://download.geany.org/%{name}-%{version}.tar.bz2 # The following tags files were retrieved 25th Feb 2009 From leigh123linux at fedoraproject.org Fri Jul 31 21:39:17 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Fri, 31 Jul 2009 21:39:17 +0000 (UTC) Subject: rpms/libcompizconfig/devel libcompizconfig.spec,1.18,1.19 Message-ID: <20090731213917.E9A6611C00CE@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29488 Modified Files: libcompizconfig.spec Log Message: * Fri Jul 31 2009 leigh scott - 0.8.2-5 - add patch to Update .pb when an older .xml is used Index: libcompizconfig.spec =================================================================== RCS file: /cvs/pkgs/rpms/libcompizconfig/devel/libcompizconfig.spec,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- libcompizconfig.spec 25 Jul 2009 05:27:31 -0000 1.18 +++ libcompizconfig.spec 31 Jul 2009 21:39:17 -0000 1.19 @@ -2,7 +2,7 @@ Name: libcompizconfig Version: 0.8.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Configuration backend for compiz Group: System Environment/Libraries @@ -12,7 +12,7 @@ URL: http://www.opencompositi Source0: http://releases.compiz-fusion.org/%{version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -#Patch100: libcompizconfig-fix-weak-symbols.patch +Patch100: libcompizconfig-update_pb.patch #Patch101: libcompizconfig-gcc43-buildfix.patch #Patch102: libcompizconfig-gcc43-buildfix2.patch @@ -45,7 +45,7 @@ developing applications that use %{name} %prep %setup -q -#%patch100 -p1 -b .fix-weak-symbols +%patch100 -p1 -b .libcompizconfig-update_pb #%patch101 -p1 -b .gcc43-buildfix #%patch102 -p1 -b .gcc43-buildfix2 @@ -89,6 +89,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2009 leigh scott - 0.8.2-5 +- add patch to Update .pb when an older .xml is used + * Fri Jul 24 2009 Fedora Release Engineering - 0.8.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From leigh123linux at fedoraproject.org Fri Jul 31 21:41:13 2009 From: leigh123linux at fedoraproject.org (Leigh Scott) Date: Fri, 31 Jul 2009 21:41:13 +0000 (UTC) Subject: rpms/libcompizconfig/devel libcompizconfig-update_pb.patch, NONE, 1.1 Message-ID: <20090731214113.7BBBD11C00CE@cvs1.fedora.phx.redhat.com> Author: leigh123linux Update of /cvs/pkgs/rpms/libcompizconfig/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29701 Added Files: libcompizconfig-update_pb.patch Log Message: Update .pb when an older .xml is used libcompizconfig-update_pb.patch: compiz.cpp | 72 ++++++++++++++++++++++++++++++++--------------------- compizconfig.proto | 17 ++++++------ 2 files changed, 53 insertions(+), 36 deletions(-) --- NEW FILE libcompizconfig-update_pb.patch --- From: Erkin Bahceci Date: Sat, 14 Mar 2009 19:30:43 +0000 (-0500) Subject: Update .pb when an older .xml is used, too. X-Git-Url: http://gitweb.compiz-fusion.org/?p=compiz%2Fcompizconfig%2Flibcompizconfig;a=commitdiff_plain;h=5dab250c7da6020ec3efbe85f511d3af4ccf79b7 Update .pb when an older .xml is used, too. --- diff --git a/src/compiz.cpp b/src/compiz.cpp index 5b36a4d..ac7a9d9 100644 --- a/src/compiz.cpp +++ b/src/compiz.cpp @@ -53,7 +53,7 @@ extern int xmlLoadExtDtdDefaultValue; Bool usingProtobuf = TRUE; -#define PB_ABI_VERSION 20081004 +#define PB_ABI_VERSION 20090314 typedef metadata::PluginInfo PluginInfoMetadata; typedef metadata::PluginBrief PluginBriefMetadata; @@ -2665,13 +2665,12 @@ checkAndLoadProtoBuf (char *pbPath, !loadPluginMetadataFromProtoBuf (pbPath, pluginBriefPB, NULL) || (!basicMetadata && pluginBriefPB->info ().basic_metadata ()) || pluginInfoPB.pb_abi_version () != PB_ABI_VERSION || + pluginInfoPB.time () != (unsigned long)xmlStat->st_mtime || + // xml modification time mismatch? (pluginInfoPB.locale () != "NONE" && pluginInfoPB.locale () != shortLocale)) { // .pb needs update - - remove (pbPath); // Attempt to remove .pb - return FALSE; } return TRUE; @@ -2681,7 +2680,8 @@ checkAndLoadProtoBuf (char *pbPath, static void writePBFile (char *pbFilePath, PluginMetadata *pluginPB, - PluginBriefMetadata *pluginBriefPB) + PluginBriefMetadata *pluginBriefPB, + struct stat *xmlStat) { if (!createProtoBufCacheDir ()) return; @@ -2698,6 +2698,7 @@ writePBFile (char *pbFilePath, pluginInfoPB = pluginBriefPB->mutable_info (); pluginInfoPB->set_pb_abi_version (PB_ABI_VERSION); pluginInfoPB->set_locale (shortLocale); + pluginInfoPB->set_time ((unsigned long)xmlStat->st_mtime); pluginInfoPB->set_brief_metadata (TRUE); } @@ -2779,11 +2780,11 @@ loadPluginFromXMLFile (CCSContext * context, char *xmlName, char *xmlDirPath) #ifdef USE_PROTOBUF char *name = NULL; + struct stat xmlStat; + Bool removePB = FALSE; if (usingProtobuf) { - struct stat xmlStat; - if (stat (xmlFilePath, &xmlStat)) { free (xmlFilePath); @@ -2817,26 +2818,32 @@ loadPluginFromXMLFile (CCSContext * context, char *xmlName, char *xmlDirPath) error = stat (pbFilePath, &pbStat); } - if (!error && - checkAndLoadProtoBuf (pbFilePath, &pbStat, &xmlStat, - &persistentPluginBriefPB)) + if (!error) { - // Found and loaded .pb - if (!strcmp (name, "core")) - addCoreSettingsFromPB (context, persistentPluginBriefPB.info (), - pbFilePath, xmlFilePath); + if (checkAndLoadProtoBuf (pbFilePath, &pbStat, &xmlStat, + &persistentPluginBriefPB)) + { + // Found and loaded .pb + if (!strcmp (name, "core")) + addCoreSettingsFromPB (context, + persistentPluginBriefPB.info (), + pbFilePath, xmlFilePath); + else + addPluginFromPB (context, persistentPluginBriefPB.info (), + pbFilePath, xmlFilePath); + + updatePBFilePath (context, name, pbFilePath); + + free (xmlFilePath); + free (pbFilePath); + free (name); + return; + } else - addPluginFromPB (context, persistentPluginBriefPB.info (), - pbFilePath, xmlFilePath); - - updatePBFilePath (context, name, pbFilePath); - - free (xmlFilePath); - free (pbFilePath); - free (name); - return; + { + removePB = TRUE; + } } - persistentPluginBriefPB.Clear (); pluginInfoPBv = persistentPluginBriefPB.mutable_info (); } @@ -2862,7 +2869,9 @@ loadPluginFromXMLFile (CCSContext * context, char *xmlName, char *xmlDirPath) #ifdef USE_PROTOBUF if (usingProtobuf && xmlLoaded) { - writePBFile (pbFilePath, NULL, &persistentPluginBriefPB); + if (removePB) + remove (pbFilePath); // Attempt to remove .pb + writePBFile (pbFilePath, NULL, &persistentPluginBriefPB, &xmlStat); updatePBFilePath (context, name, pbFilePath); } @@ -3050,13 +3059,18 @@ ccsLoadPlugins (CCSContext * context) static void loadOptionsStringExtensionsFromXML (CCSPlugin * plugin, - void * pluginPBv) + void * pluginPBv, + struct stat *xmlStat) { PLUGIN_PRIV (plugin); xmlDoc *doc = NULL; xmlNode **nodes; int num; + + if (stat (pPrivate->xmlFile, xmlStat)) + return; + FILE *fp = fopen (pPrivate->xmlFile, "r"); if (!fp) return; @@ -3120,14 +3134,16 @@ ccsLoadPluginSettings (CCSPlugin * plugin) } #endif + struct stat xmlStat; + // Load from .xml if (!ignoreXML && pPrivate->xmlFile) - loadOptionsStringExtensionsFromXML (plugin, pluginPBToWrite); + loadOptionsStringExtensionsFromXML (plugin, pluginPBToWrite, &xmlStat); #ifdef USE_PROTOBUF if (pluginPBToWrite && pPrivate->pbFilePath && loadedAtLeastBriefPB) writePBFile (pPrivate->pbFilePath, (PluginMetadata *) pluginPBToWrite, - NULL); + NULL, &xmlStat); #endif D (D_FULL, "done\n"); diff --git a/src/compizconfig.proto b/src/compizconfig.proto index f4eedd1..5834842 100644 --- a/src/compizconfig.proto +++ b/src/compizconfig.proto @@ -7,21 +7,22 @@ message PluginInfo { required sint32 pb_abi_version = 1; required string locale = 2; + required uint64 time = 3; // modification time of source .xml file // true if container is missing options and extensions, and only includes // plugin info - required bool brief_metadata = 3; + required bool brief_metadata = 4; // true if container is missing extensions, string restrictions, and // short/long descriptions for the plugin and its options - required bool basic_metadata = 4; + required bool basic_metadata = 5; - required string name = 5; - optional string short_desc = 6; - optional string long_desc = 7; - optional string category = 8; + required string name = 6; + optional string short_desc = 7; + optional string long_desc = 8; + optional string category = 9; - repeated string feature = 9; + repeated string feature = 10; message Dependencies { @@ -35,7 +36,7 @@ message PluginInfo repeated string conflict_feature = 6; } - optional Dependencies deps = 10; + optional Dependencies deps = 11; } From jdieter at fedoraproject.org Fri Jul 31 22:05:13 2009 From: jdieter at fedoraproject.org (Jonathan Dieter) Date: Fri, 31 Jul 2009 22:05:13 +0000 (UTC) Subject: rpms/deltarpm/devel deltarpm.spec,1.22,1.23 Message-ID: <20090731220513.6C57211C00CE@cvs1.fedora.phx.redhat.com> Author: jdieter Update of /cvs/extras/rpms/deltarpm/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2442 Modified Files: deltarpm.spec Log Message: Explain where we get the source from --------------------------------------------------------------------- Index: deltarpm.spec =================================================================== RCS file: /cvs/extras/rpms/deltarpm/devel/deltarpm.spec,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- deltarpm.spec 29 Jul 2009 10:15:37 -0000 1.22 +++ deltarpm.spec 31 Jul 2009 22:05:13 -0000 1.23 @@ -5,7 +5,11 @@ Release: 0.git.20090729%{?dist} License: BSD Group: System Environment/Base URL: http://gitorious.org/deltarpm/deltarpm - +# Generate source by doing: +# git clone git://gitorious.org/deltarpm/deltarpm +# cd deltarpm +# git archive --format=tar --prefix="deltarpm-git-20090729/" 0a8fdaa | \ +# bzip2 > deltarpm-git-20090729.tar.bz2 Source: %{name}-git-20090729.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -61,6 +65,9 @@ deltarpms. %{_bindir}/drpmsync %changelog +* Sat Aug 1 2009 Jonathan Dieter - 3.5.0.git.20090729.1 +- Explain where we get the source from + * Wed Jul 29 2009 Jonathan Dieter - 3.5.0.git.20090729 - Fix bug in writing Fedora's xz-compressed rpms (surely that's the last one) From amdunn at fedoraproject.org Fri Jul 31 22:05:38 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 31 Jul 2009 22:05:38 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral/devel emacs-common-proofgeneral.spec, NONE, 1.1 import.log, NONE, 1.1 pg-3.7.1-Makefile.patch, NONE, 1.1 pg-3.7.1-startscript.patch, NONE, 1.1 pg-3.7.1-xemacs-display-table.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731220538.30AB211C00CE@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/emacs-common-proofgeneral/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3064/devel Modified Files: .cvsignore sources Added Files: emacs-common-proofgeneral.spec import.log pg-3.7.1-Makefile.patch pg-3.7.1-startscript.patch pg-3.7.1-xemacs-display-table.patch Log Message: * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE emacs-common-proofgeneral.spec --- # Patches described below with the patch commands %define pkg proofgeneral # Check version defaults # If the emacs-el package has installed a pkgconfig file, use that to # determine install locations and Emacs version at build time, otherwise # set defaults. %if %($(pkg-config emacs) ; echo $?) %define emacs_version 22.1 %define emacs_lispdir %{_datadir}/emacs/site-lisp %define emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d %else %define emacs_version %(pkg-config emacs --modversion) %define emacs_lispdir %(pkg-config emacs --variable sitepkglispdir) %define emacs_startdir %(pkg-config emacs --variable sitestartdir) %endif # If the xemacs-devel package has installed a pkgconfig file, use that # to determine install locations and Emacs version at build time, # otherwise set defaults. %if %($(pkg-config xemacs) ; echo $?) %define xemacs_version 21.5 %define xemacs_lispdir %{_datadir}/xemacs/site-packages/lisp %define xemacs_startdir %{_datadir}/xemacs/site-packages/lisp/site-start.d %else %define xemacs_version %(pkg-config xemacs --modversion) %define xemacs_lispdir %(pkg-config xemacs --variable sitepkglispdir) %define xemacs_startdir %(pkg-config xemacs --variable sitestartdir) %endif Name: emacs-common-%{pkg} Version: 3.7.1 Release: 4%{?dist} Summary: Emacs mode for standard interaction interface for proof assistants Group: Applications/Editors License: GPLv2 URL: http://proofgeneral.inf.ed.ac.uk/ Source0: http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-%{version}.tgz # Patch 0 - Fedora specific, don't do an "install-info" in the make process # (which would occur at build time), but instead put it into a scriptlet Patch0: pg-3.7.1-Makefile.patch # Patch 1 - Somewhat Fedora specific, patches Proof General starting # script to include values of build time generated variables (which # are inserted in the build process with sed) instead of its way of # getting this information. Also moves around some script parts related # to emacs version detection. Patch1: pg-3.7.1-startscript.patch # Patch 2 - Display tables were changed in XEmacs 21.5.29 in a way # that breaks ProofGeneral's X-Symbol code unless changes are made # Incorporating a patch here from Jerry James. (Of course, right now # the X-Symbol code is disabled as X-Symbol isn't packaged and # ProofGeneral makes changes to the X-Symbol code that would have to # be included somehow anyway, but ProofGeneral's X-Symbol code could # be activated in the future and the change is necessary to allow the # code to be byte-compiled). Patch2: pg-3.7.1-xemacs-display-table.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: emacs emacs-el xemacs xemacs-devel texinfo-tex xemacs-packages-extra %description Proof General is a generic front-end for proof assistants (also known as interactive theorem provers) based on Emacs. Proof General allows one to edit and submit a proof script to a proof assistant in an interactive manner: - It tracks the goal state, and the script as it is submitted, and allows for easy backtracking and block execution. - It adds toolbars and menus to Emacs for easy access to proof assistant features. - It integrates with X-Symbol for some provers to provide output using proper mathematical symbols. - It includes utilities for generating Emacs tags for proof scripts, allowing for easy navigation. Proof General supports a number of different proof assistants (Isabelle, Coq, PhoX, and LEGO to name a few) and is designed to be easily extendable to work with others. %package -n emacs-%{pkg} Summary: Compiled elisp files to run Proof General under GNU Emacs Group: Applications/Editors Requires: emacs(bin) >= %{emacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # MMM Mode is separately packaged for emacs (but not for XEmacs) Requires: emacs-mmm %description -n emacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with GNU Emacs. %package -n emacs-%{pkg}-el Summary: Elisp source files for Proof General under GNU Emacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n emacs-%{pkg}-el This package contains the elisp source files for Proof General under GNU Emacs. You do not need to install this package to run Proof General. Install the emacs-%{pkg} package to use Proof General with GNU Emacs. %package -n xemacs-%{pkg} Summary: Compiled elisp files to run Proof General under XEmacs Group: Applications/Editors Requires: xemacs(bin) >= %{xemacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # For MMM mode (and X-Symbol, whose use in this package currently # doesn't work - disabled until X-Symbol can be separately packaged) Requires: xemacs-packages-extra %description -n xemacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with XEmacs. %package -n xemacs-%{pkg}-el Summary: Elisp source files for Proof General under XEmacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n xemacs-%{pkg}-el This package contains the elisp source files for Proof General under XEmacs. You do not need to install this package to run Proof General. Install the xemacs-%{pkg} package to use Proof General with XEmacs. %prep %setup -q -n ProofGeneral-%{version} %patch0 %patch1 %patch2 -p1 %build # Fix rpmlint complaints: # Correct permissions for isartags script chmod 755 isar/isartags # Correct permissions for x-symbol ChangeLog chmod 644 x-symbol/lisp/ChangeLog # Correct permissions for x-symbol Makefile chmod 644 x-symbol/etc/fonts/Makefile # Remove .cvsignore file rm images/gimp/.cvsignore # Fix non UTF-8 documentation and theory files # File listing taken from the Makefile %define doc_files AUTHORS BUGS COMPATIBILITY CHANGES COPYING INSTALL README REGISTER acl2/*.acl2 hol98/*.sml isar/*.thy lclam/*.lcm lego/*.l pgshell/*.pgsh phox/*.phx plastic/*.lf twelf/*.elf for f in `find %{doc_files}`; do mv $f $f.old && iconv -f iso-8859-1 -t utf8 < $f.old > $f && rm $f.old; done # Make full copies of emacs and xemacs versions, set options in the proofgeneral start script make clean make EMACS=emacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir emacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs`; do cp -pr $f emacs/$f; done make clean make EMACS=xemacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir xemacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs ! -name xemacs`; do cp -pr $f xemacs/$f; done %install rm -rf %{buildroot} %define full_doc_dir %{_datadir}/doc/%{pkg} %define full_man_dir %{_mandir}/man1 %define full_data_dir %{_datadir}/%{pkg} %define doc_options DOCDIR=%{buildroot}%{full_doc_dir} MANDIR=%{buildroot}%{full_man_dir} INFODIR=%{buildroot}%{_infodir} %define common_options PREFIX=%{buildroot}%{_prefix} DEST_PREFIX=%{_prefix} DESKTOP=%{buildroot}%{full_data_dir} BINDIR=%{buildroot}%{_bindir} %{doc_options} %define emacs_options ELISP_START=%{buildroot}%{emacs_startdir} ELISP=%{buildroot}%{emacs_lispdir}/%{pkg} DEST_ELISP=%{emacs_lispdir}/%{pkg} %define xemacs_options ELISP_START=%{buildroot}%{xemacs_startdir} ELISP=%{buildroot}%{xemacs_lispdir}/%{pkg} DEST_ELISP=%{xemacs_lispdir}/%{pkg} cp -pr `find xemacs/ -maxdepth 1 -mindepth 1` . make EMACS=xemacs %{common_options} %{xemacs_options} install install-doc cp -pr `find emacs/ -maxdepth 1 -mindepth 1` . make EMACS=emacs %{common_options} %{emacs_options} install install-doc # Don't accidentally install an infodir file over an existing one rm -f %{buildroot}%{_infodir}/dir %clean rm -rf %{buildroot} %post /sbin/install-info %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : %preun if [ $1 -eq 0 ]; then /sbin/install-info --delete %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info --delete %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : fi %files %defattr(-,root,root,-) %{full_doc_dir} %{full_data_dir} %{full_man_dir}/* %{_infodir}/* %{_bindir}/* %files -n emacs-%{pkg} %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{emacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{emacs_lispdir}/%{pkg}/mmm %exclude %{emacs_lispdir}/%{pkg}/*/*.el %{emacs_startdir}/*.el %dir %{emacs_lispdir}/%{pkg} %files -n emacs-%{pkg}-el %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/*/*.el %files -n xemacs-%{pkg} %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{xemacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{xemacs_lispdir}/%{pkg}/mmm %exclude %{xemacs_lispdir}/%{pkg}/*/*.el %{xemacs_startdir}/*.el %dir %{xemacs_lispdir}/%{pkg} %files -n xemacs-%{pkg}-el %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/*/*.el %changelog * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE import.log --- emacs-common-proofgeneral-3_7_1-4_fc10:HEAD:emacs-common-proofgeneral-3.7.1-4.fc10.src.rpm:1249077541 pg-3.7.1-Makefile.patch: Makefile | 2 -- 1 file changed, 2 deletions(-) --- NEW FILE pg-3.7.1-Makefile.patch --- --- Makefile 2009-01-27 21:22:49.000000000 -0500 +++ Makefile 2009-01-27 21:23:26.000000000 -0500 @@ -215,8 +215,6 @@ cp -pf doc/proofgeneral.1 ${MANDIR} mkdir -p ${INFODIR} cp -pf doc/*.info ${INFODIR} - /sbin/install-info ${INFODIR}/ProofGeneral.info* ${INFODIR}/dir - /sbin/install-info ${INFODIR}/PG-adapting.info* ${INFODIR}/dir mkdir -p ${DOCDIR} for f in ${DOC_FILES}; do cp -pf $$f ${DOCDIR}; done for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done pg-3.7.1-startscript.patch: proofgeneral | 50 +++++++++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 21 deletions(-) --- NEW FILE pg-3.7.1-startscript.patch --- --- bin/proofgeneral 2009-02-04 06:03:47.000000000 -0500 +++ bin/proofgeneral 2009-02-04 07:24:42.000000000 -0500 @@ -15,31 +15,18 @@ # # proofgeneral,v 9.6 2008/07/19 16:10:12 da Exp # +# Additional edits for Fedora made by Alan Dunn (parts of script +# also rearranged) + +# Fedora extra variables +EMACS_LISPDIR= +XEMACS_LISPDIR= +PACKAGE= # The default path should work if you are using the Proof General RPM # or unpack Proof General in your home directory. Otherwise edit below. # NB: no trailing backslash here! -PGHOMEDEFAULT=$HOME/ProofGeneral - -# Try to find a default Emacs executable -if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then - if which emacs > /dev/null; then - EMACS=`which emacs` - else - EMACS=`which xemacs` - fi -fi - -# Try to find Proof General directory -if [ -d $PGHOMEDEFAULT ]; then - PGHOME=$PGHOMEDEFAULT -elif [ -d /usr/share/${EMACSVERSION}/site-lisp/proofgeneral ]; then - PGHOME=/usr/share/${EMACSVERSION}/site-lisp/proofgeneral -else - echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." - exit 1 -fi - +PGHOMEDEFAULT=/usr/share/emacs/site-lisp/${PACKAGE} NAME=`basename $0` @@ -98,6 +85,15 @@ esac do shift; done +# Try to find a default Emacs executable +if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then + if which emacs > /dev/null; then + EMACS=`which emacs` + else + EMACS=`which xemacs` + fi +fi + if [ ! -x "$EMACS" ]; then echo "$NAME: cannot find an Emacs or XEmacs executable. Set EMACS or your PATH." 1>&2 exit 1 @@ -105,6 +101,18 @@ EMACSVERSION=`basename $EMACS` +# Try to find Proof General directory +if [ -d $PGHOMEDEFAULT ]; then + PGHOME=$PGHOMEDEFAULT +elif [[ $EMACSVERSION == emacs && -d ${EMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${EMACS_LISPDIR}/${PACKAGE} +elif [[ $EMACSVERSION == xemacs && -d ${XEMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${XEMACS_LISPDIR}/${PACKAGE} +else + echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." + exit 1 +fi + # Deal with UTF issue if [ `locale | grep LC_CTYPE | grep UTF` ]; then echo "Warning: detected Unicode LC_CTYPE setting, switched back to C" pg-3.7.1-xemacs-display-table.patch: Makefile | 2 - generic/pg-display-table.el | 46 +++++++++++++++++++++++++++++++++++++++ generic/proof-shell.el | 3 +- phox/phox-sym-lock.el | 10 +++++--- x-symbol/lisp/x-symbol-nomule.el | 6 ++--- x-symbol/lisp/x-symbol.el | 3 +- 6 files changed, 59 insertions(+), 11 deletions(-) --- NEW FILE pg-3.7.1-xemacs-display-table.patch --- diff -durN ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el ProofGeneral-3.7.1/generic/pg-display-table.el --- ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el 1969-12-31 19:00:00.000000000 -0500 +++ ProofGeneral-3.7.1/generic/pg-display-table.el 2009-07-09 12:49:34.923843082 -0400 @@ -0,0 +1,46 @@ +;; pg-display-table.el --- Wrapper functions for display-table vectors and +;; objects. +;; +;; Copyright (C) 2009 LFCS Edinburgh. +;; Author: Jerry James +;; License: GPL (GNU GENERAL PUBLIC LICENSE) +;; +;; pg-display-table.el,v 1.0 2009/07/06 16:07:09 da Exp +;; +;; +;;; Commentary: +;; +;; This file hides the differences between display-tables that are represented +;; as vectors and recent XEmacs display-tables, which are objects. + +;;; Code: + +(require 'disp-table) + +(defmacro defun-when-void (&rest args) + "Define a function, just like `defun', unless it's already defined. +Used for compatibility among different emacs variants." + `(if (fboundp ',(car args)) + nil + (defun , at args))) + +(defun-when-void put-display-table (range value display-table) + "Set the value for char RANGE to VALUE in DISPLAY-TABLE." + (if (sequencep display-table) + (aset display-table range value) + (put-char-table range value display-table))) + +(defun-when-void get-display-table (character display-table) + "Find value for CHARACTER in DISPLAY-TABLE." + (if (sequencep display-table) + (aref display-table character) + (get-char-table character display-table))) + +(defun-when-void fill-display-table (value display-table) + "Map every entry in the table to VALUE." + (if (sequencep display-table) + (fillarray display-table value) + (put-char-table t value display-table))) + +(provide 'pg-display-table) +;;; pg-display-table.el ends here diff -durN ProofGeneral-3.7.1.ORIG/generic/proof-shell.el ProofGeneral-3.7.1/generic/proof-shell.el --- ProofGeneral-3.7.1.ORIG/generic/proof-shell.el 2008-07-10 08:49:32.000000000 -0400 +++ ProofGeneral-3.7.1/generic/proof-shell.el 2009-07-09 12:49:34.948238190 -0400 @@ -16,6 +16,7 @@ (require 'proof-utils)) (require 'proof-autoloads) +(require 'pg-display-table) (require 'pg-response) (require 'pg-goals) (require 'proof-script) @@ -1695,7 +1696,7 @@ (let ((disp (make-display-table)) (i 128)) (while (< i 256) - (aset disp i []) + (put-display-table i [] disp) (incf i)) (cond ((featurep 'xemacs) (add-spec-to-specifier current-display-table disp (current-buffer))) diff -durN ProofGeneral-3.7.1.ORIG/Makefile ProofGeneral-3.7.1/Makefile --- ProofGeneral-3.7.1.ORIG/Makefile 2008-01-31 08:06:38.000000000 -0500 +++ ProofGeneral-3.7.1/Makefile 2009-07-09 13:16:35.366276826 -0400 @@ -86,8 +86,6 @@ @echo " Byte compiling... " @echo "****************************************************************" make elc - @echo " Byte compiling X-Symbol..." - (cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file") echo $(EMACS) > $(@) @echo "****************************************************************" @echo " Finished." diff -durN ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el ProofGeneral-3.7.1/phox/phox-sym-lock.el --- ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el 2008-01-30 10:22:21.000000000 -0500 +++ ProofGeneral-3.7.1/phox/phox-sym-lock.el 2009-07-09 12:49:35.065515654 -0400 @@ -28,6 +28,7 @@ ;; more about symbol font ? check out: xfd -fn '-adobe-symbol-*--12-*' (require 'font-lock) +(require 'pg-display-table) (if (featurep 'xemacs) (require 'atomic-extents)) ;; not available on GNU Emacs @@ -223,9 +224,10 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") - (aset table (string-to-char (substring pat (1- pos) pos)) - (phox-sym-lock-translate-char-or-string obj)) + (fill-display-table "" table) + (put-display-table (string-to-char (substring pat (1- pos) pos)) + (phox-sym-lock-translate-char-or-string obj) + table) (set-face-foreground tface (if (and (boundp 'font-lock-use-fonts) font-lock-use-fonts) (face-foreground 'default) phox-sym-lock-color)) @@ -240,7 +242,7 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") + (fill-display-table "" table) (set-face-property tface 'display-table table) (set-face-property tface 'phox-sym-lock-remap 1) ; mark it tface diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el 2008-07-18 12:10:30.000000000 -0400 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el 2009-07-09 12:49:35.115921558 -0400 @@ -39,6 +39,7 @@ (provide 'x-symbol) ;;(require 'x-symbol-hooks) (require 'x-symbol-vars) +(require 'pg-display-table) (require (if (featurep 'mule) 'x-symbol-mule 'x-symbol-nomule)) (eval-when-compile (require 'x-symbol-macs)) (eval-when-compile (require 'cl)) @@ -1612,7 +1613,7 @@ (let ((table (make-display-table)) (i 0)) (while (< i 256) - (aset table i "") + (put-display-table i "" table) (setq i (1+ i))) table) "Internal variable. Display table for `x-symbol-invisible-face'.") diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el 2008-01-30 10:22:26.000000000 -0500 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el 2009-07-09 12:49:35.156890261 -0400 @@ -33,6 +33,7 @@ (error "This file is meant to be used with XEmacs/no-Mule")) (provide 'x-symbol-nomule) (require 'x-symbol-hooks) +(require 'pg-display-table) (eval-when-compile (require 'x-symbol)) ; x-symbol also requires this file ;;(eval-when-compile ;; (defvar x-symbol-encode-rchars) @@ -80,11 +81,10 @@ "Internal. Face to fontify current font-lock match.") (defvar x-symbol-nomule-display-table - ;; display-table via characters table is not implemented in XEmacs yet... - (let ((table (make-vector 256 nil)) + (let ((table (make-display-table)) (i 128)) (while (< i 160) - (aset table i "") + (put-display-table i "" table) (incf i)) table) "Display table in faces with non-standard charset registry. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/devel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 31 Jul 2009 21:14:21 -0000 1.1 +++ .cvsignore 31 Jul 2009 22:05:37 -0000 1.2 @@ -0,0 +1 @@ +ProofGeneral-3.7.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/devel/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 31 Jul 2009 21:14:21 -0000 1.1 +++ sources 31 Jul 2009 22:05:38 -0000 1.2 @@ -0,0 +1 @@ +eebfff672b5941823fe893075316b02e ProofGeneral-3.7.1.tgz From karsten at fedoraproject.org Fri Jul 31 22:39:18 2009 From: karsten at fedoraproject.org (Karsten Hopp) Date: Fri, 31 Jul 2009 22:39:18 +0000 (UTC) Subject: rpms/vim/devel 7.2.149, NONE, 1.1 7.2.150, NONE, 1.1 7.2.151, NONE, 1.1 7.2.152, NONE, 1.1 7.2.153, NONE, 1.1 7.2.154, NONE, 1.1 7.2.155, NONE, 1.1 7.2.156, NONE, 1.1 7.2.157, NONE, 1.1 7.2.158, NONE, 1.1 7.2.159, NONE, 1.1 7.2.160, NONE, 1.1 7.2.161, NONE, 1.1 7.2.162, NONE, 1.1 7.2.163, NONE, 1.1 7.2.164, NONE, 1.1 7.2.165, NONE, 1.1 7.2.166, NONE, 1.1 7.2.167, NONE, 1.1 7.2.168, NONE, 1.1 7.2.169, NONE, 1.1 7.2.170, NONE, 1.1 7.2.171, NONE, 1.1 7.2.172, NONE, 1.1 7.2.173, NONE, 1.1 7.2.174, NONE, 1.1 7.2.175, NONE, 1.1 7.2.176, NONE, 1.1 7.2.177, NONE, 1.1 7.2.178, NONE, 1.1 7.2.179, NONE, 1.1 7.2.180, NONE, 1.1 7.2.181, NONE, 1.1 7.2.182, NONE, 1.1 7.2.183, NONE, 1.1 7.2.184, NONE, 1.1 7.2.185, NONE, 1.1 7.2.186, NONE, 1.1 7.2.187, NONE, 1.1 7.2.188, NONE, 1.1 7.2.189, NONE, 1.1 7.2.190, NONE, 1.1 7.2.191, NONE, 1.1 7.2.192, NONE, 1.1 7.2.193, NONE, 1.1 7.2.194, NONE, 1.1 7.2.195, NONE, 1.1 7.2.196, NONE, 1.1 7.2.197, NONE, 1.1 7.2.198, NONE, 1.1 7.2.199, NONE, 1.1 7.2.200, NONE, 1.1 7.2.201, NONE, 1.1 7.2.202, NONE, 1.1 7.2.203, NONE, 1.1 7.2.204, NONE, 1.1 7.2.205, NONE, 1.1 7.2.206, NONE, 1.1 7.2.207, NONE, 1.1 7.2.208, NONE, 1.1 7.2.209, NONE, 1.1 7.2.210, NONE, 1.1 7.2.211, NONE, 1.1 7.2.212, NONE, 1.1 7.2.213, NONE, 1.1 7.2.214, NONE, 1.1 7.2.215, NONE, 1.1 7.2.216, NONE, 1.1 7.2.217, NONE, 1.1 7.2.218, NONE, 1.1 7.2.219, NONE, 1.1 7.2.220, NONE, 1.1 7.2.221, NONE, 1.1 7.2.222, NONE, 1.1 7.2.223, NONE, 1.1 7.2.224, NONE, 1.1 7.2.225, NONE, 1.1 7.2.226, NONE, 1.1 7.2.227, NONE, 1.1 7.2.228, NONE, 1.1 7.2.229, NONE, 1.1 7.2.230, NONE, 1.1 7.2.231, NONE, 1.1 7.2.232, NONE, 1.1 7.2.233, NONE, 1.1 7.2.234, NONE, 1.1 7.2.235, NONE, 1.1 7.2.236, NONE, 1.1 7.2.237, NONE, 1.1 7.2.238, NONE, 1.1 7.2.239, NONE, 1.1 7.2.240, NONE, 1.1 7.2.241, NONE, 1.1 7.2.242, NONE, 1.1 7.2.243, NONE, 1.1 7.2.244, NONE, 1.1 7.2.245, NONE, 1.1 README.patches, 1.122, 1.123 vim.spec, 1.237, 1.238 Message-ID: <20090731223918.63EF911C00CE@cvs1.fedora.phx.redhat.com> Author: karsten Update of /cvs/extras/rpms/vim/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9322 Modified Files: README.patches vim.spec Added Files: 7.2.149 7.2.150 7.2.151 7.2.152 7.2.153 7.2.154 7.2.155 7.2.156 7.2.157 7.2.158 7.2.159 7.2.160 7.2.161 7.2.162 7.2.163 7.2.164 7.2.165 7.2.166 7.2.167 7.2.168 7.2.169 7.2.170 7.2.171 7.2.172 7.2.173 7.2.174 7.2.175 7.2.176 7.2.177 7.2.178 7.2.179 7.2.180 7.2.181 7.2.182 7.2.183 7.2.184 7.2.185 7.2.186 7.2.187 7.2.188 7.2.189 7.2.190 7.2.191 7.2.192 7.2.193 7.2.194 7.2.195 7.2.196 7.2.197 7.2.198 7.2.199 7.2.200 7.2.201 7.2.202 7.2.203 7.2.204 7.2.205 7.2.206 7.2.207 7.2.208 7.2.209 7.2.210 7.2.211 7.2.212 7.2.213 7.2.214 7.2.215 7.2.216 7.2.217 7.2.218 7.2.219 7.2.220 7.2.221 7.2.222 7.2.223 7.2.224 7.2.225 7.2.226 7.2.227 7.2.228 7.2.229 7.2.230 7.2.231 7.2.232 7.2.233 7.2.234 7.2.235 7.2.236 7.2.237 7.2.238 7.2.239 7.2.240 7.2.241 7.2.242 7.2.243 7.2.244 7.2.245 Log Message: - add 97 upstream patches to get to patchlevel 245 --- NEW FILE 7.2.149 --- To: vim-dev at vim.org Subject: Patch 7.2.149 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.149 Problem: Using return value of function that doesn't return a value results in reading uninitialized memory. Solution: Set the default to return zero. Make cursor() return -1 on failure. Let complete() return an empty string in case of an error. (partly by Dominique Pelle) Files: runtime/doc/eval.txt, src/eval.c *** ../vim-7.2.148/runtime/doc/eval.txt Tue Dec 9 10:56:50 2008 --- runtime/doc/eval.txt Sun Mar 22 14:28:49 2009 *************** *** 2414,2419 **** --- 2419,2425 ---- When 'virtualedit' is used {off} specifies the offset in screen columns from the start of the character. E.g., a position within a or after the last character. + Returns 0 when the position could be set, -1 otherwise. deepcopy({expr}[, {noref}]) *deepcopy()* *E698* *************** *** 4516,4521 **** --- 4526,4532 ---- should also work to move files across file systems. The result is a Number, which is 0 if the file was renamed successfully, and non-zero when the renaming failed. + NOTE: If {to} exists it is overwritten without warning. This function is not available in the |sandbox|. repeat({expr}, {count}) *repeat()* *** ../vim-7.2.148/src/eval.c Wed Feb 4 16:25:53 2009 --- src/eval.c Sun Mar 22 20:45:18 2009 *************** *** 1285,1291 **** --- 1285,1293 ---- typval_T tv; char_u *retval; garray_T ga; + #ifdef FEAT_FLOAT char_u numbuf[NUMBUFLEN]; + #endif if (eval0(arg, &tv, nextcmd, TRUE) == FAIL) retval = NULL; *************** *** 8018,8024 **** /* execute the function if no errors detected and executing */ if (evaluate && error == ERROR_NONE) { ! rettv->v_type = VAR_NUMBER; /* default is number rettv */ error = ERROR_UNKNOWN; if (!builtin_function(fname)) --- 8020,8027 ---- /* execute the function if no errors detected and executing */ if (evaluate && error == ERROR_NONE) { ! rettv->v_type = VAR_NUMBER; /* default rettv is number zero */ ! rettv->vval.v_number = 0; error = ERROR_UNKNOWN; if (!builtin_function(fname)) *************** *** 8268,8274 **** return; li = l->lv_first; } - rettv->vval.v_number = 0; /* Default: Success */ for (;;) { if (l == NULL) --- 8271,8276 ---- *************** *** 8728,8734 **** int dummy; dict_T *selfdict = NULL; - rettv->vval.v_number = 0; if (argvars[1].v_type != VAR_LIST) { EMSG(_(e_listreq)); --- 8730,8735 ---- *************** *** 9036,9048 **** if (buttons == NULL || *buttons == NUL) buttons = (char_u *)_("&Ok"); ! if (error) ! rettv->vval.v_number = 0; ! else rettv->vval.v_number = do_dialog(type, NULL, message, buttons, def, NULL); - #else - rettv->vval.v_number = 0; #endif } --- 9037,9045 ---- if (buttons == NULL || *buttons == NUL) buttons = (char_u *)_("&Ok"); ! if (!error) rettv->vval.v_number = do_dialog(type, NULL, message, buttons, def, NULL); #endif } *************** *** 9181,9195 **** } rettv->vval.v_number = cs_connection(num, dbpath, prepend); - #else - rettv->vval.v_number = 0; #endif } /* * "cursor(lnum, col)" function * ! * Moves the cursor to the specified line and column */ /*ARGSUSED*/ static void --- 9178,9191 ---- } rettv->vval.v_number = cs_connection(num, dbpath, prepend); #endif } /* * "cursor(lnum, col)" function * ! * Moves the cursor to the specified line and column. ! * Returns 0 when the position could be set, -1 otherwise. */ /*ARGSUSED*/ static void *************** *** 9202,9207 **** --- 9198,9204 ---- long coladd = 0; #endif + rettv->vval.v_number = -1; if (argvars[1].v_type == VAR_UNKNOWN) { pos_T pos; *************** *** 9246,9251 **** --- 9243,9249 ---- #endif curwin->w_set_curswant = TRUE; + rettv->vval.v_number = 0; } /* *************** *** 9291,9298 **** { #ifdef FEAT_AUTOCMD rettv->vval.v_number = did_filetype; - #else - rettv->vval.v_number = 0; #endif } --- 9289,9294 ---- *************** *** 9605,9611 **** typval_T *argvars; typval_T *rettv; { - rettv->vval.v_number = 0; if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST) { list_T *l1, *l2; --- 9601,9606 ---- *************** *** 9733,9739 **** if (check_secure()) return; - rettv->vval.v_number = 0; keys = get_tv_string(&argvars[0]); if (*keys != NUL) { --- 9728,9733 ---- *************** *** 9901,9907 **** char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()"; int save_did_emsg; - rettv->vval.v_number = 0; if (argvars[0].v_type == VAR_LIST) { if ((l = argvars[0].vval.v_list) == NULL --- 9895,9900 ---- *************** *** 10084,10091 **** else rettv->vval.v_number = (varnumber_T)f; } - else - rettv->vval.v_number = 0; } /* --- 10077,10082 ---- *************** *** 10219,10227 **** lnum = get_tv_lnum(argvars); if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count) rettv->vval.v_number = foldLevel(lnum); - else #endif - rettv->vval.v_number = 0; } /* --- 10210,10216 ---- *************** *** 10337,10343 **** typval_T *argvars; typval_T *rettv; { - rettv->vval.v_number = 0; #ifdef FEAT_GUI if (gui.in_use) gui_mch_set_foreground(); --- 10326,10331 ---- *************** *** 10359,10365 **** { char_u *s; - rettv->vval.v_number = 0; s = get_tv_string(&argvars[0]); if (s == NULL || *s == NUL || VIM_ISDIGIT(*s)) EMSG2(_(e_invarg2), s); --- 10347,10352 ---- *************** *** 10429,10437 **** if (tv == NULL) { ! if (argvars[2].v_type == VAR_UNKNOWN) ! rettv->vval.v_number = 0; ! else copy_tv(&argvars[2], rettv); } else --- 10416,10422 ---- if (tv == NULL) { ! if (argvars[2].v_type != VAR_UNKNOWN) copy_tv(&argvars[2], rettv); } else *************** *** 10456,10468 **** { char_u *p; ! if (retlist) ! { ! if (rettv_list_alloc(rettv) == FAIL) ! return; ! } ! else ! rettv->vval.v_number = 0; if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0) return; --- 10441,10448 ---- { char_u *p; ! if (retlist && rettv_list_alloc(rettv) == FAIL) ! return; if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0) return; *************** *** 11009,11016 **** dict_T *dict; matchitem_T *cur = curwin->w_match_head; - rettv->vval.v_number = 0; - if (rettv_list_alloc(rettv) == OK) { while (cur != NULL) --- 10989,10994 ---- *************** *** 11089,11095 **** win_T *wp; #endif - rettv->vval.v_number = 0; #ifdef FEAT_QUICKFIX if (rettv_list_alloc(rettv) == OK) { --- 11067,11072 ---- *************** *** 11935,11941 **** typval_T *argvars; typval_T *rettv; { - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_DICT) { EMSG(_(e_dictreq)); --- 11912,11917 ---- *************** *** 12052,12059 **** n = del_history_entry(get_histtype(str), get_tv_string_buf(&argvars[1], buf)); rettv->vval.v_number = n; - #else - rettv->vval.v_number = 0; #endif } --- 12028,12033 ---- *************** *** 12415,12421 **** int selected; int mouse_used; - rettv->vval.v_number = 0; #ifdef NO_CONSOLE_INPUT /* While starting up, there is no place to enter text. */ if (no_console_input()) --- 12389,12394 ---- *************** *** 12464,12470 **** --ga_userinput.ga_len; restore_typeahead((tasave_T *)(ga_userinput.ga_data) + ga_userinput.ga_len); ! rettv->vval.v_number = 0; /* OK */ } else if (p_verbose > 1) { --- 12437,12443 ---- --ga_userinput.ga_len; restore_typeahead((tasave_T *)(ga_userinput.ga_data) + ga_userinput.ga_len); ! /* default return is zero == OK */ } else if (p_verbose > 1) { *************** *** 12488,12494 **** save_typeahead((tasave_T *)(ga_userinput.ga_data) + ga_userinput.ga_len); ++ga_userinput.ga_len; ! rettv->vval.v_number = 0; /* OK */ } else rettv->vval.v_number = 1; /* Failed */ --- 12461,12467 ---- save_typeahead((tasave_T *)(ga_userinput.ga_data) + ga_userinput.ga_len); ++ga_userinput.ga_len; ! /* default return is zero == OK */ } else rettv->vval.v_number = 1; /* Failed */ *************** *** 12522,12528 **** list_T *l; int error = FALSE; - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_LIST) EMSG2(_(e_listarg), "insert()"); else if ((l = argvars[0].vval.v_list) != NULL --- 12495,12500 ---- *************** *** 12641,12647 **** dict_T *d; int todo; - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_DICT) { EMSG(_(e_dictreq)); --- 12613,12618 ---- *************** *** 12729,12735 **** garray_T ga; char_u *sep; - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_LIST) { EMSG(_(e_listreq)); --- 12700,12705 ---- *************** *** 12827,12835 **** #endif rettv->v_type = type; ! if (type == VAR_NUMBER) ! rettv->vval.v_number = 0; ! else rettv->vval.v_string = NULL; if (check_restricted() || check_secure()) --- 12797,12803 ---- #endif rettv->v_type = type; ! if (type != VAR_NUMBER) rettv->vval.v_string = NULL; if (check_restricted() || check_secure()) *************** *** 13770,13776 **** typval_T *argvars; typval_T *rettv; { - rettv->vval.v_number = 0; #ifdef FEAT_INS_EXPAND if (pum_visible()) rettv->vval.v_number = 1; --- 13738,13743 ---- *************** *** 13804,13810 **** stride = get_tv_number_chk(&argvars[2], &error); } - rettv->vval.v_number = 0; if (error) return; /* type error; errmsg already given */ if (stride == 0) --- 13771,13776 ---- *************** *** 14193,14199 **** typval_T *argvars; typval_T *rettv; { - rettv->vval.v_number = 0; #ifdef FEAT_CLIENTSERVER # ifdef WIN32 /* On Win32 it's done in this application. */ --- 14159,14164 ---- *************** *** 14249,14255 **** rettv->vval.v_number = (s != NULL); } # else - rettv->vval.v_number = 0; if (check_connection() == FAIL) return; --- 14214,14219 ---- *************** *** 14338,14344 **** dict_T *d; dictitem_T *di; - rettv->vval.v_number = 0; if (argvars[0].v_type == VAR_DICT) { if (argvars[2].v_type != VAR_UNKNOWN) --- 14302,14307 ---- *************** *** 14696,14702 **** list_T *l; listitem_T *li, *ni; - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_LIST) EMSG2(_(e_listarg), "reverse()"); else if ((l = argvars[0].vval.v_list) != NULL --- 14659,14664 ---- *************** *** 15048,15055 **** int lnum = 0; int col = 0; - rettv->vval.v_number = 0; - if (rettv_list_alloc(rettv) == FAIL) return; --- 15010,15015 ---- *************** *** 15236,15243 **** int n; int flags = 0; - rettv->vval.v_number = 0; - if (rettv_list_alloc(rettv) == FAIL) return; --- 15196,15201 ---- *************** *** 15323,15330 **** typval_T *varp; char_u nbuf[NUMBUFLEN]; - rettv->vval.v_number = 0; - if (check_restricted() || check_secure()) return; (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */ --- 15281,15286 ---- *************** *** 15404,15410 **** else line = get_tv_string_chk(&argvars[1]); ! rettv->vval.v_number = 0; /* OK */ for (;;) { if (l != NULL) --- 15360,15366 ---- else line = get_tv_string_chk(&argvars[1]); ! /* default result is zero == OK */ for (;;) { if (l != NULL) *************** *** 15717,15722 **** --- 15673,15679 ---- /* * "setwinvar()" and "settabwinvar()" functions */ + /*ARGSUSED*/ static void setwinvar(argvars, rettv, off) typval_T *argvars; *************** *** 15733,15740 **** char_u nbuf[NUMBUFLEN]; tabpage_T *tp; - rettv->vval.v_number = 0; - if (check_restricted() || check_secure()) return; --- 15690,15695 ---- *************** *** 15947,15953 **** long len; long i; - rettv->vval.v_number = 0; if (argvars[0].v_type != VAR_LIST) EMSG2(_(e_listarg), "sort()"); else --- 15902,15907 ---- *************** *** 16870,16878 **** typval_T *argvars; typval_T *rettv; { ! #ifndef FEAT_WINDOWS ! rettv->vval.v_number = 0; ! #else tabpage_T *tp; win_T *wp = NULL; --- 16824,16830 ---- typval_T *argvars; typval_T *rettv; { ! #ifdef FEAT_WINDOWS tabpage_T *tp; win_T *wp = NULL; *************** *** 16884,16902 **** if (tp != NULL) wp = (tp == curtab) ? firstwin : tp->tp_firstwin; } ! if (wp == NULL) ! rettv->vval.v_number = 0; ! else { ! if (rettv_list_alloc(rettv) == FAIL) ! rettv->vval.v_number = 0; ! else ! { ! for (; wp != NULL; wp = wp->w_next) ! if (list_append_number(rettv->vval.v_list, wp->w_buffer->b_fnum) == FAIL) ! break; ! } } #endif } --- 16836,16847 ---- if (tp != NULL) wp = (tp == curtab) ? firstwin : tp->tp_firstwin; } ! if (wp != NULL && rettv_list_alloc(rettv) != FAIL) { ! for (; wp != NULL; wp = wp->w_next) ! if (list_append_number(rettv->vval.v_list, wp->w_buffer->b_fnum) == FAIL) ! break; } #endif } *************** *** 17024,17033 **** int first; if (rettv_list_alloc(rettv) == FAIL) - { - rettv->vval.v_number = 0; return; - } for (first = TRUE; ; first = FALSE) if (get_tagfname(&tn, first, fname) == FAIL --- 16969,16975 ---- *************** *** 17401,17408 **** /* A non-zero number or non-empty string argument: reset mode. */ if (non_zero_arg(&argvars[0])) curbuf->b_visual_mode_eval = NUL; - #else - rettv->vval.v_number = 0; /* return anything, it won't work anyway */ #endif } --- 17343,17348 ---- *** ../vim-7.2.148/src/version.c Wed Mar 18 19:07:09 2009 --- src/version.c Wed Apr 22 12:44:05 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 149, /**/ -- WOMAN: Well, 'ow did you become king then? ARTHUR: The Lady of the Lake, [angels sing] her arm clad in the purest shimmering samite, held aloft Excalibur from the bosom of the water signifying by Divine Providence that I, Arthur, was to carry Excalibur. [singing stops] That is why I am your king! The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.150 --- To: vim-dev at vim.org Subject: Patch 7.2.150 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Note: I haven't tested this myself, since I don't have a compiler that works for this code. Patch 7.2.150 (extra) Problem: Can't use tab pages from VisVim. Solution: Add tab page support to VisVim. (Adam Slater) Files: src/VisVim/Commands.cpp, src/VisVim/Resource.h, src/VisVim/VisVim.rc *** ../vim-7.2.149/src/VisVim/Commands.cpp Thu May 10 20:45:34 2007 --- src/VisVim/Commands.cpp Mon Mar 2 00:52:15 2009 *************** *** 20,39 **** static BOOL g_bEnableVim = TRUE; // Vim enabled static BOOL g_bDevStudioEditor = FALSE; // Open file in Dev Studio editor simultaneously static int g_ChangeDir = CD_NONE; // CD after file open? ! static void VimSetEnableState (BOOL bEnableState); ! static BOOL VimOpenFile (BSTR& FileName, long LineNr); ! static DISPID VimGetDispatchId (COleAutomationControl& VimOle, char* Method); ! static void VimErrDiag (COleAutomationControl& VimOle); ! static void VimChangeDir (COleAutomationControl& VimOle, DISPID DispatchId, BSTR& FileName); ! static void DebugMsg (char* Msg, char* Arg = NULL); ///////////////////////////////////////////////////////////////////////////// // CCommands ! CCommands::CCommands () { // m_pApplication == NULL; M$ Code generation bug!!! m_pApplication = NULL; --- 20,40 ---- static BOOL g_bEnableVim = TRUE; // Vim enabled static BOOL g_bDevStudioEditor = FALSE; // Open file in Dev Studio editor simultaneously + static BOOL g_bNewTabs = FALSE; static int g_ChangeDir = CD_NONE; // CD after file open? ! static void VimSetEnableState(BOOL bEnableState); ! static BOOL VimOpenFile(BSTR& FileName, long LineNr); ! static DISPID VimGetDispatchId(COleAutomationControl& VimOle, char* Method); ! static void VimErrDiag(COleAutomationControl& VimOle); ! static void VimChangeDir(COleAutomationControl& VimOle, DISPID DispatchId, BSTR& FileName); ! static void DebugMsg(char* Msg, char* Arg = NULL); ///////////////////////////////////////////////////////////////////////////// // CCommands ! CCommands::CCommands() { // m_pApplication == NULL; M$ Code generation bug!!! m_pApplication = NULL; *************** *** 41,57 **** m_pDebuggerEventsObj = NULL; } ! CCommands::~CCommands () { ! ASSERT (m_pApplication != NULL); if (m_pApplication) { ! m_pApplication->Release (); m_pApplication = NULL; } } ! void CCommands::SetApplicationObject (IApplication * pApplication) { // This function assumes pApplication has already been AddRef'd // for us, which CDSAddIn did in it's QueryInterface call --- 42,58 ---- m_pDebuggerEventsObj = NULL; } ! CCommands::~CCommands() { ! ASSERT(m_pApplication != NULL); if (m_pApplication) { ! m_pApplication->Release(); m_pApplication = NULL; } } ! void CCommands::SetApplicationObject(IApplication * pApplication) { // This function assumes pApplication has already been AddRef'd // for us, which CDSAddIn did in it's QueryInterface call *************** *** 61,115 **** return; // Create Application event handlers ! XApplicationEventsObj::CreateInstance (&m_pApplicationEventsObj); if (! m_pApplicationEventsObj) { ! ReportInternalError ("XApplicationEventsObj::CreateInstance"); return; } ! m_pApplicationEventsObj->AddRef (); ! m_pApplicationEventsObj->Connect (m_pApplication); m_pApplicationEventsObj->m_pCommands = this; #ifdef NEVER // Create Debugger event handler CComPtr < IDispatch > pDebugger; ! if (SUCCEEDED (m_pApplication->get_Debugger (&pDebugger)) && pDebugger != NULL) { ! XDebuggerEventsObj::CreateInstance (&m_pDebuggerEventsObj); ! m_pDebuggerEventsObj->AddRef (); ! m_pDebuggerEventsObj->Connect (pDebugger); m_pDebuggerEventsObj->m_pCommands = this; } #endif // Get settings from registry HKEY_CURRENT_USER\Software\Vim\VisVim ! HKEY hAppKey = GetAppKey ("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey (hAppKey, "VisVim"); if (hSectionKey) { ! g_bEnableVim = GetRegistryInt (hSectionKey, "EnableVim", g_bEnableVim); ! g_bDevStudioEditor = GetRegistryInt(hSectionKey,"DevStudioEditor", ! g_bDevStudioEditor); ! g_ChangeDir = GetRegistryInt (hSectionKey, "ChangeDir", g_ChangeDir); ! RegCloseKey (hSectionKey); } ! RegCloseKey (hAppKey); } } ! void CCommands::UnadviseFromEvents () { ! ASSERT (m_pApplicationEventsObj != NULL); if (m_pApplicationEventsObj) { ! m_pApplicationEventsObj->Disconnect (m_pApplication); ! m_pApplicationEventsObj->Release (); m_pApplicationEventsObj = NULL; } --- 62,118 ---- return; // Create Application event handlers ! XApplicationEventsObj::CreateInstance(&m_pApplicationEventsObj); if (! m_pApplicationEventsObj) { ! ReportInternalError("XApplicationEventsObj::CreateInstance"); return; } ! m_pApplicationEventsObj->AddRef(); ! m_pApplicationEventsObj->Connect(m_pApplication); m_pApplicationEventsObj->m_pCommands = this; #ifdef NEVER // Create Debugger event handler CComPtr < IDispatch > pDebugger; ! if (SUCCEEDED(m_pApplication->get_Debugger(&pDebugger)) && pDebugger != NULL) { ! XDebuggerEventsObj::CreateInstance(&m_pDebuggerEventsObj); ! m_pDebuggerEventsObj->AddRef(); ! m_pDebuggerEventsObj->Connect(pDebugger); m_pDebuggerEventsObj->m_pCommands = this; } #endif // Get settings from registry HKEY_CURRENT_USER\Software\Vim\VisVim ! HKEY hAppKey = GetAppKey("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); if (hSectionKey) { ! g_bEnableVim = GetRegistryInt(hSectionKey, "EnableVim", g_bEnableVim); ! g_bDevStudioEditor = GetRegistryInt(hSectionKey, ! "DevStudioEditor", g_bDevStudioEditor); ! g_bNewTabs = GetRegistryInt(hSectionKey, "NewTabs", ! g_bNewTabs); ! g_ChangeDir = GetRegistryInt(hSectionKey, "ChangeDir", g_ChangeDir); ! RegCloseKey(hSectionKey); } ! RegCloseKey(hAppKey); } } ! void CCommands::UnadviseFromEvents() { ! ASSERT(m_pApplicationEventsObj != NULL); if (m_pApplicationEventsObj) { ! m_pApplicationEventsObj->Disconnect(m_pApplication); ! m_pApplicationEventsObj->Release(); m_pApplicationEventsObj = NULL; } *************** *** 121,130 **** // unadvise from its events (thus the VERIFY_OK below--see // stdafx.h). CComPtr < IDispatch > pDebugger; ! VERIFY_OK (m_pApplication->get_Debugger (&pDebugger)); ! ASSERT (pDebugger != NULL); ! m_pDebuggerEventsObj->Disconnect (pDebugger); ! m_pDebuggerEventsObj->Release (); m_pDebuggerEventsObj = NULL; } #endif --- 124,133 ---- // unadvise from its events (thus the VERIFY_OK below--see // stdafx.h). CComPtr < IDispatch > pDebugger; ! VERIFY_OK(m_pApplication->get_Debugger(&pDebugger)); ! ASSERT(pDebugger != NULL); ! m_pDebuggerEventsObj->Disconnect(pDebugger); ! m_pDebuggerEventsObj->Release(); m_pDebuggerEventsObj = NULL; } #endif *************** *** 136,156 **** // Application events ! HRESULT CCommands::XApplicationEvents::BeforeBuildStart () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BuildFinish (long nNumErrors, long nNumWarnings) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BeforeApplicationShutDown () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } --- 139,159 ---- // Application events ! HRESULT CCommands::XApplicationEvents::BeforeBuildStart() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BuildFinish(long nNumErrors, long nNumWarnings) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BeforeApplicationShutDown() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } *************** *** 158,166 **** // is done. // Vim gets called from here. // ! HRESULT CCommands::XApplicationEvents::DocumentOpen (IDispatch * theDocument) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); if (! g_bEnableVim) // Vim not enabled or empty command line entered --- 161,169 ---- // is done. // Vim gets called from here. // ! HRESULT CCommands::XApplicationEvents::DocumentOpen(IDispatch * theDocument) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); if (! g_bEnableVim) // Vim not enabled or empty command line entered *************** *** 169,175 **** // First get the current file name and line number // Get the document object ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc (theDocument); if (! pDoc) return S_OK; --- 172,178 ---- // First get the current file name and line number // Get the document object ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc(theDocument); if (! pDoc) return S_OK; *************** *** 177,202 **** long LineNr = -1; // Get the document name ! if (FAILED (pDoc->get_FullName (&FileName))) return S_OK; LPDISPATCH pDispSel; // Get a selection object dispatch pointer ! if (SUCCEEDED (pDoc->get_Selection (&pDispSel))) { // Get the selection object ! CComQIPtr < ITextSelection, &IID_ITextSelection > pSel (pDispSel); if (pSel) // Get the selection line number ! pSel->get_CurrentLine (&LineNr); ! pDispSel->Release (); } // Open the file in Vim and position to the current line ! if (VimOpenFile (FileName, LineNr)) { if (! g_bDevStudioEditor) { --- 180,205 ---- long LineNr = -1; // Get the document name ! if (FAILED(pDoc->get_FullName(&FileName))) return S_OK; LPDISPATCH pDispSel; // Get a selection object dispatch pointer ! if (SUCCEEDED(pDoc->get_Selection(&pDispSel))) { // Get the selection object ! CComQIPtr < ITextSelection, &IID_ITextSelection > pSel(pDispSel); if (pSel) // Get the selection line number ! pSel->get_CurrentLine(&LineNr); ! pDispSel->Release(); } // Open the file in Vim and position to the current line ! if (VimOpenFile(FileName, LineNr)) { if (! g_bDevStudioEditor) { *************** *** 204,233 **** CComVariant vSaveChanges = dsSaveChangesPrompt; DsSaveStatus Saved; ! pDoc->Close (vSaveChanges, &Saved); } } // We're done here ! SysFreeString (FileName); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BeforeDocumentClose (IDispatch * theDocument) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::DocumentSave (IDispatch * theDocument) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::NewDocument (IDispatch * theDocument) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); if (! g_bEnableVim) // Vim not enabled or empty command line entered --- 207,236 ---- CComVariant vSaveChanges = dsSaveChangesPrompt; DsSaveStatus Saved; ! pDoc->Close(vSaveChanges, &Saved); } } // We're done here ! SysFreeString(FileName); return S_OK; } ! HRESULT CCommands::XApplicationEvents::BeforeDocumentClose(IDispatch * theDocument) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::DocumentSave(IDispatch * theDocument) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::NewDocument(IDispatch * theDocument) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); if (! g_bEnableVim) // Vim not enabled or empty command line entered *************** *** 235,253 **** // First get the current file name and line number ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc (theDocument); if (! pDoc) return S_OK; BSTR FileName; HRESULT hr; ! hr = pDoc->get_FullName (&FileName); ! if (FAILED (hr)) return S_OK; // Open the file in Vim and position to the current line ! if (VimOpenFile (FileName, 0)) { if (! g_bDevStudioEditor) { --- 238,256 ---- // First get the current file name and line number ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc(theDocument); if (! pDoc) return S_OK; BSTR FileName; HRESULT hr; ! hr = pDoc->get_FullName(&FileName); ! if (FAILED(hr)) return S_OK; // Open the file in Vim and position to the current line ! if (VimOpenFile(FileName, 0)) { if (! g_bDevStudioEditor) { *************** *** 255,303 **** CComVariant vSaveChanges = dsSaveChangesPrompt; DsSaveStatus Saved; ! pDoc->Close (vSaveChanges, &Saved); } } ! SysFreeString (FileName); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WindowActivate (IDispatch * theWindow) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WindowDeactivate (IDispatch * theWindow) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WorkspaceOpen () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WorkspaceClose () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::NewWorkspace () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } // Debugger event ! HRESULT CCommands::XDebuggerEvents::BreakpointHit (IDispatch * pBreakpoint) { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); return S_OK; } --- 258,306 ---- CComVariant vSaveChanges = dsSaveChangesPrompt; DsSaveStatus Saved; ! pDoc->Close(vSaveChanges, &Saved); } } ! SysFreeString(FileName); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WindowActivate(IDispatch * theWindow) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WindowDeactivate(IDispatch * theWindow) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WorkspaceOpen() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::WorkspaceClose() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } ! HRESULT CCommands::XApplicationEvents::NewWorkspace() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } // Debugger event ! HRESULT CCommands::XDebuggerEvents::BreakpointHit(IDispatch * pBreakpoint) { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); return S_OK; } *************** *** 308,324 **** class CMainDialog : public CDialog { public: ! CMainDialog (CWnd * pParent = NULL); // Standard constructor //{{AFX_DATA(CMainDialog) enum { IDD = IDD_ADDINMAIN }; int m_ChangeDir; BOOL m_bDevStudioEditor; //}}AFX_DATA //{{AFX_VIRTUAL(CMainDialog) protected: ! virtual void DoDataExchange (CDataExchange * pDX); // DDX/DDV support //}}AFX_VIRTUAL protected: --- 311,328 ---- class CMainDialog : public CDialog { public: ! CMainDialog(CWnd * pParent = NULL); // Standard constructor //{{AFX_DATA(CMainDialog) enum { IDD = IDD_ADDINMAIN }; int m_ChangeDir; BOOL m_bDevStudioEditor; + BOOL m_bNewTabs; //}}AFX_DATA //{{AFX_VIRTUAL(CMainDialog) protected: ! virtual void DoDataExchange(CDataExchange * pDX); // DDX/DDV support //}}AFX_VIRTUAL protected: *************** *** 326,425 **** afx_msg void OnEnable(); afx_msg void OnDisable(); //}}AFX_MSG ! DECLARE_MESSAGE_MAP () }; ! CMainDialog::CMainDialog (CWnd * pParent /* =NULL */ ) ! : CDialog (CMainDialog::IDD, pParent) { //{{AFX_DATA_INIT(CMainDialog) m_ChangeDir = -1; m_bDevStudioEditor = FALSE; //}}AFX_DATA_INIT } ! void CMainDialog::DoDataExchange (CDataExchange * pDX) { ! CDialog::DoDataExchange (pDX); //{{AFX_DATA_MAP(CMainDialog) DDX_Radio(pDX, IDC_CD_SOURCE_PATH, m_ChangeDir); ! DDX_Check (pDX, IDC_DEVSTUDIO_EDITOR, m_bDevStudioEditor); //}}AFX_DATA_MAP } ! BEGIN_MESSAGE_MAP (CMainDialog, CDialog) //{{AFX_MSG_MAP(CMainDialog) //}}AFX_MSG_MAP ! END_MESSAGE_MAP () ///////////////////////////////////////////////////////////////////////////// // CCommands methods ! STDMETHODIMP CCommands::VisVimDialog () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); // Use m_pApplication to access the Developer Studio Application // object, // and VERIFY_OK to see error strings in DEBUG builds of your add-in // (see stdafx.h) ! VERIFY_OK (m_pApplication->EnableModeless (VARIANT_FALSE)); CMainDialog Dlg; Dlg.m_bDevStudioEditor = g_bDevStudioEditor; Dlg.m_ChangeDir = g_ChangeDir; ! if (Dlg.DoModal () == IDOK) { g_bDevStudioEditor = Dlg.m_bDevStudioEditor; g_ChangeDir = Dlg.m_ChangeDir; // Save settings to registry HKEY_CURRENT_USER\Software\Vim\VisVim ! HKEY hAppKey = GetAppKey ("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey (hAppKey, "VisVim"); if (hSectionKey) { ! WriteRegistryInt (hSectionKey, "DevStudioEditor", g_bDevStudioEditor); ! WriteRegistryInt (hSectionKey, "ChangeDir", g_ChangeDir); ! RegCloseKey (hSectionKey); } ! RegCloseKey (hAppKey); } } ! VERIFY_OK (m_pApplication->EnableModeless (VARIANT_TRUE)); return S_OK; } ! STDMETHODIMP CCommands::VisVimEnable () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); ! VimSetEnableState (true); return S_OK; } ! STDMETHODIMP CCommands::VisVimDisable () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); ! VimSetEnableState (false); return S_OK; } ! STDMETHODIMP CCommands::VisVimToggle () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); ! VimSetEnableState (! g_bEnableVim); return S_OK; } ! STDMETHODIMP CCommands::VisVimLoad () { ! AFX_MANAGE_STATE (AfxGetStaticModuleState ()); // Use m_pApplication to access the Developer Studio Application object, // and VERIFY_OK to see error strings in DEBUG builds of your add-in --- 330,435 ---- afx_msg void OnEnable(); afx_msg void OnDisable(); //}}AFX_MSG ! DECLARE_MESSAGE_MAP() }; ! CMainDialog::CMainDialog(CWnd * pParent /* =NULL */ ) ! : CDialog(CMainDialog::IDD, pParent) { //{{AFX_DATA_INIT(CMainDialog) m_ChangeDir = -1; m_bDevStudioEditor = FALSE; + m_bNewTabs = FALSE; //}}AFX_DATA_INIT } ! void CMainDialog::DoDataExchange(CDataExchange * pDX) { ! CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CMainDialog) DDX_Radio(pDX, IDC_CD_SOURCE_PATH, m_ChangeDir); ! DDX_Check(pDX, IDC_DEVSTUDIO_EDITOR, m_bDevStudioEditor); ! DDX_Check(pDX, IDC_NEW_TABS, m_bNewTabs); //}}AFX_DATA_MAP } ! BEGIN_MESSAGE_MAP(CMainDialog, CDialog) //{{AFX_MSG_MAP(CMainDialog) //}}AFX_MSG_MAP ! END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CCommands methods ! STDMETHODIMP CCommands::VisVimDialog() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); // Use m_pApplication to access the Developer Studio Application // object, // and VERIFY_OK to see error strings in DEBUG builds of your add-in // (see stdafx.h) ! VERIFY_OK(m_pApplication->EnableModeless(VARIANT_FALSE)); CMainDialog Dlg; Dlg.m_bDevStudioEditor = g_bDevStudioEditor; + Dlg.m_bNewTabs = g_bNewTabs; Dlg.m_ChangeDir = g_ChangeDir; ! if (Dlg.DoModal() == IDOK) { g_bDevStudioEditor = Dlg.m_bDevStudioEditor; + g_bNewTabs = Dlg.m_bNewTabs; g_ChangeDir = Dlg.m_ChangeDir; // Save settings to registry HKEY_CURRENT_USER\Software\Vim\VisVim ! HKEY hAppKey = GetAppKey("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); if (hSectionKey) { ! WriteRegistryInt(hSectionKey, "DevStudioEditor", g_bDevStudioEditor); ! WriteRegistryInt(hSectionKey, "NewTabs", ! g_bNewTabs); ! WriteRegistryInt(hSectionKey, "ChangeDir", g_ChangeDir); ! RegCloseKey(hSectionKey); } ! RegCloseKey(hAppKey); } } ! VERIFY_OK(m_pApplication->EnableModeless(VARIANT_TRUE)); return S_OK; } ! STDMETHODIMP CCommands::VisVimEnable() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); ! VimSetEnableState(true); return S_OK; } ! STDMETHODIMP CCommands::VisVimDisable() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); ! VimSetEnableState(false); return S_OK; } ! STDMETHODIMP CCommands::VisVimToggle() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); ! VimSetEnableState(! g_bEnableVim); return S_OK; } ! STDMETHODIMP CCommands::VisVimLoad() { ! AFX_MANAGE_STATE(AfxGetStaticModuleState()); // Use m_pApplication to access the Developer Studio Application object, // and VERIFY_OK to see error strings in DEBUG builds of your add-in *************** *** 430,436 **** CComPtr < IDispatch > pDispDoc, pDispSel; // Get a document object dispatch pointer ! VERIFY_OK (m_pApplication->get_ActiveDocument (&pDispDoc)); if (! pDispDoc) return S_OK; --- 440,446 ---- CComPtr < IDispatch > pDispDoc, pDispSel; // Get a document object dispatch pointer ! VERIFY_OK(m_pApplication->get_ActiveDocument(&pDispDoc)); if (! pDispDoc) return S_OK; *************** *** 438,467 **** long LineNr = -1; // Get the document object ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc (pDispDoc); if (! pDoc) return S_OK; // Get the document name ! if (FAILED (pDoc->get_FullName (&FileName))) return S_OK; // Get a selection object dispatch pointer ! if (SUCCEEDED (pDoc->get_Selection (&pDispSel))) { // Get the selection object ! CComQIPtr < ITextSelection, &IID_ITextSelection > pSel (pDispSel); if (pSel) // Get the selection line number ! pSel->get_CurrentLine (&LineNr); } // Open the file in Vim ! VimOpenFile (FileName, LineNr); ! SysFreeString (FileName); return S_OK; } --- 448,477 ---- long LineNr = -1; // Get the document object ! CComQIPtr < ITextDocument, &IID_ITextDocument > pDoc(pDispDoc); if (! pDoc) return S_OK; // Get the document name ! if (FAILED(pDoc->get_FullName(&FileName))) return S_OK; // Get a selection object dispatch pointer ! if (SUCCEEDED(pDoc->get_Selection(&pDispSel))) { // Get the selection object ! CComQIPtr < ITextSelection, &IID_ITextSelection > pSel(pDispSel); if (pSel) // Get the selection line number ! pSel->get_CurrentLine(&LineNr); } // Open the file in Vim ! VimOpenFile(FileName, LineNr); ! SysFreeString(FileName); return S_OK; } *************** *** 472,487 **** // Set the enable state and save to registry // ! static void VimSetEnableState (BOOL bEnableState) { g_bEnableVim = bEnableState; ! HKEY hAppKey = GetAppKey ("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey (hAppKey, "VisVim"); if (hSectionKey) ! WriteRegistryInt (hSectionKey, "EnableVim", g_bEnableVim); ! RegCloseKey (hAppKey); } } --- 482,497 ---- // Set the enable state and save to registry // ! static void VimSetEnableState(BOOL bEnableState) { g_bEnableVim = bEnableState; ! HKEY hAppKey = GetAppKey("Vim"); if (hAppKey) { ! HKEY hSectionKey = GetSectionKey(hAppKey, "VisVim"); if (hSectionKey) ! WriteRegistryInt(hSectionKey, "EnableVim", g_bEnableVim); ! RegCloseKey(hAppKey); } } *************** *** 490,496 **** // letter. // 'LineNr' must contain a valid line number or 0, e. g. for a new file // ! static BOOL VimOpenFile (BSTR& FileName, long LineNr) { // OLE automation object for com. with Vim --- 500,506 ---- // letter. // 'LineNr' must contain a valid line number or 0, e. g. for a new file // ! static BOOL VimOpenFile(BSTR& FileName, long LineNr) { // OLE automation object for com. with Vim *************** *** 507,513 **** // Get a dispatch id for the SendKeys method of Vim; // enables connection to Vim if necessary DISPID DispatchId; ! DispatchId = VimGetDispatchId (VimOle, "SendKeys"); if (! DispatchId) // OLE error, can't obtain dispatch id goto OleError; --- 517,523 ---- // Get a dispatch id for the SendKeys method of Vim; // enables connection to Vim if necessary DISPID DispatchId; ! DispatchId = VimGetDispatchId(VimOle, "SendKeys"); if (! DispatchId) // OLE error, can't obtain dispatch id goto OleError; *************** *** 525,544 **** #ifdef SINGLE_WINDOW // Update the current file in Vim if it has been modified. // Disabled, because it could write the file when you don't want to. ! sprintf (VimCmd + 2, ":up\n"); #endif ! if (! VimOle.Method (DispatchId, "s", TO_OLE_STR_BUF (VimCmd, Buf))) goto OleError; // Change Vim working directory to where the file is if desired if (g_ChangeDir != CD_NONE) ! VimChangeDir (VimOle, DispatchId, FileName); // Make Vim open the file. // In the filename convert all \ to /, put a \ before a space. ! sprintf(VimCmd, ":drop "); sprintf(FileNameTmp, "%S", (char *)FileName); - s = VimCmd + 6; for (p = FileNameTmp; *p != '\0' && s < FileNameTmp + MAX_OLE_STR - 4; ++p) if (*p == '\\') --- 535,562 ---- #ifdef SINGLE_WINDOW // Update the current file in Vim if it has been modified. // Disabled, because it could write the file when you don't want to. ! sprintf(VimCmd + 2, ":up\n"); #endif ! if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf))) goto OleError; // Change Vim working directory to where the file is if desired if (g_ChangeDir != CD_NONE) ! VimChangeDir(VimOle, DispatchId, FileName); // Make Vim open the file. // In the filename convert all \ to /, put a \ before a space. ! if (g_bNewTabs) ! { ! sprintf(VimCmd, ":tab drop "); ! s = VimCmd + 11; ! } ! else ! { ! sprintf(VimCmd, ":drop "); ! s = VimCmd + 6; ! } sprintf(FileNameTmp, "%S", (char *)FileName); for (p = FileNameTmp; *p != '\0' && s < FileNameTmp + MAX_OLE_STR - 4; ++p) if (*p == '\\') *************** *** 552,571 **** *s++ = '\n'; *s = '\0'; ! if (! VimOle.Method (DispatchId, "s", TO_OLE_STR_BUF (VimCmd, Buf))) goto OleError; if (LineNr > 0) { // Goto line ! sprintf (VimCmd, ":%d\n", LineNr); ! if (! VimOle.Method (DispatchId, "s", TO_OLE_STR_BUF (VimCmd, Buf))) goto OleError; } // Make Vim come to the foreground ! if (! VimOle.Method ("SetForeground")) ! VimOle.ErrDiag (); // We're done return true; --- 570,589 ---- *s++ = '\n'; *s = '\0'; ! if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf))) goto OleError; if (LineNr > 0) { // Goto line ! sprintf(VimCmd, ":%d\n", LineNr); ! if (! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf))) goto OleError; } // Make Vim come to the foreground ! if (! VimOle.Method("SetForeground")) ! VimOle.ErrDiag(); // We're done return true; *************** *** 573,579 **** OleError: // There was an OLE error // Check if it's the "unknown class string" error ! VimErrDiag (VimOle); return false; } --- 591,597 ---- OleError: // There was an OLE error // Check if it's the "unknown class string" error ! VimErrDiag(VimOle); return false; } *************** *** 581,598 **** // Create the Vim OLE object if necessary // Returns a valid dispatch id or null on error // ! static DISPID VimGetDispatchId (COleAutomationControl& VimOle, char* Method) { // Initialize Vim OLE connection if not already done ! if (! VimOle.IsCreated ()) { ! if (! VimOle.CreateObject ("Vim.Application")) return NULL; } // Get the dispatch id for the SendKeys method. // By doing this, we are checking if Vim is still there... ! DISPID DispatchId = VimOle.GetDispatchId ("SendKeys"); if (! DispatchId) { // We can't get a dispatch id. --- 599,616 ---- // Create the Vim OLE object if necessary // Returns a valid dispatch id or null on error // ! static DISPID VimGetDispatchId(COleAutomationControl& VimOle, char* Method) { // Initialize Vim OLE connection if not already done ! if (! VimOle.IsCreated()) { ! if (! VimOle.CreateObject("Vim.Application")) return NULL; } // Get the dispatch id for the SendKeys method. // By doing this, we are checking if Vim is still there... ! DISPID DispatchId = VimOle.GetDispatchId("SendKeys"); if (! DispatchId) { // We can't get a dispatch id. *************** *** 604,615 **** // should not be kept long enough to allow the user to terminate Vim // to avoid memory corruption (why the heck is there no system garbage // collection for those damned OLE memory chunks???). ! VimOle.DeleteObject (); ! if (! VimOle.CreateObject ("Vim.Application")) // If this create fails, it's time for an error msg return NULL; ! if (! (DispatchId = VimOle.GetDispatchId ("SendKeys"))) // There is something wrong... return NULL; } --- 622,633 ---- // should not be kept long enough to allow the user to terminate Vim // to avoid memory corruption (why the heck is there no system garbage // collection for those damned OLE memory chunks???). ! VimOle.DeleteObject(); ! if (! VimOle.CreateObject("Vim.Application")) // If this create fails, it's time for an error msg return NULL; ! if (! (DispatchId = VimOle.GetDispatchId("SendKeys"))) // There is something wrong... return NULL; } *************** *** 620,639 **** // Output an error message for an OLE error // Check on the classstring error, which probably means Vim wasn't registered. // ! static void VimErrDiag (COleAutomationControl& VimOle) { ! SCODE sc = GetScode (VimOle.GetResult ()); if (sc == CO_E_CLASSSTRING) { char Buf[256]; ! sprintf (Buf, "There is no registered OLE automation server named " "\"Vim.Application\".\n" "Use the OLE-enabled version of Vim with VisVim and " "make sure to register Vim by running \"vim -register\"."); ! MessageBox (NULL, Buf, "OLE Error", MB_OK); } else ! VimOle.ErrDiag (); } // Change directory to the directory the file 'FileName' is in or it's parent --- 638,657 ---- // Output an error message for an OLE error // Check on the classstring error, which probably means Vim wasn't registered. // ! static void VimErrDiag(COleAutomationControl& VimOle) { ! SCODE sc = GetScode(VimOle.GetResult()); if (sc == CO_E_CLASSSTRING) { char Buf[256]; ! sprintf(Buf, "There is no registered OLE automation server named " "\"Vim.Application\".\n" "Use the OLE-enabled version of Vim with VisVim and " "make sure to register Vim by running \"vim -register\"."); ! MessageBox(NULL, Buf, "OLE Error", MB_OK); } else ! VimOle.ErrDiag(); } // Change directory to the directory the file 'FileName' is in or it's parent *************** *** 644,650 **** // CD_SOURCE_PATH // CD_SOURCE_PARENT // ! static void VimChangeDir (COleAutomationControl& VimOle, DISPID DispatchId, BSTR& FileName) { // Do a :cd first --- 662,668 ---- // CD_SOURCE_PATH // CD_SOURCE_PARENT // ! static void VimChangeDir(COleAutomationControl& VimOle, DISPID DispatchId, BSTR& FileName) { // Do a :cd first *************** *** 655,661 **** char DirUnix[_MAX_DIR * 2]; char *s, *t; ! _splitpath (StrFileName, Drive, Dir, NULL, NULL); // Convert to Unix path name format, escape spaces. t = DirUnix; --- 673,679 ---- char DirUnix[_MAX_DIR * 2]; char *s, *t; ! _splitpath(StrFileName, Drive, Dir, NULL, NULL); // Convert to Unix path name format, escape spaces. t = DirUnix; *************** *** 676,694 **** OLECHAR Buf[MAX_OLE_STR]; char VimCmd[MAX_OLE_STR]; ! sprintf (VimCmd, ":cd %s%s%s\n", Drive, DirUnix, g_ChangeDir == CD_SOURCE_PARENT && DirUnix[1] ? ".." : ""); ! VimOle.Method (DispatchId, "s", TO_OLE_STR_BUF (VimCmd, Buf)); } #ifdef _DEBUG // Print out a debug message // ! static void DebugMsg (char* Msg, char* Arg) { char Buf[400]; ! sprintf (Buf, Msg, Arg); ! AfxMessageBox (Buf); } #endif - --- 694,711 ---- OLECHAR Buf[MAX_OLE_STR]; char VimCmd[MAX_OLE_STR]; ! sprintf(VimCmd, ":cd %s%s%s\n", Drive, DirUnix, g_ChangeDir == CD_SOURCE_PARENT && DirUnix[1] ? ".." : ""); ! VimOle.Method(DispatchId, "s", TO_OLE_STR_BUF(VimCmd, Buf)); } #ifdef _DEBUG // Print out a debug message // ! static void DebugMsg(char* Msg, char* Arg) { char Buf[400]; ! sprintf(Buf, Msg, Arg); ! AfxMessageBox(Buf); } #endif *** ../vim-7.2.149/src/VisVim/Resource.h Sun Jun 13 19:17:32 2004 --- src/VisVim/Resource.h Mon Mar 2 00:39:21 2009 *************** *** 16,21 **** --- 16,22 ---- #define IDC_CD_SOURCE_PATH 1001 #define IDC_CD_SOURCE_PARENT 1002 #define IDC_CD_NONE 1003 + #define IDC_NEW_TABS 1004 // Next default values for new objects // *** ../vim-7.2.149/src/VisVim/VisVim.rc Sun Jun 13 19:38:03 2004 --- src/VisVim/VisVim.rc Mon Mar 2 00:40:19 2009 *************** *** 122,127 **** --- 122,130 ---- CONTROL "&Open file in DevStudio editor simultaneously", IDC_DEVSTUDIO_EDITOR,"Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,7,7,153,10 + CONTROL "Open files in new tabs", + IDC_NEW_TABS,"Button",BS_AUTOCHECKBOX | WS_GROUP | + WS_TABSTOP,7,21,153,10 GROUPBOX "Current directory",IDC_STATIC,7,35,164,58,WS_GROUP CONTROL "Set to &source file path",IDC_CD_SOURCE_PATH,"Button", BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,17,49,85,10 *** ../vim-7.2.149/src/version.c Wed Apr 22 12:53:31 2009 --- src/version.c Wed Apr 22 13:04:32 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 150, /**/ -- A poem: read aloud: <> !*''# Waka waka bang splat tick tick hash, ^"`$$- Caret quote back-tick dollar dollar dash, !*=@$_ Bang splat equal at dollar under-score, %*<> ~#4 Percent splat waka waka tilde number four, &[]../ Ampersand bracket bracket dot dot slash, |{,,SYSTEM HALTED Vertical-bar curly-bracket comma comma CRASH. Fred Bremmer and Steve Kroese (Calvin College & Seminary of Grand Rapids, MI.) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.151 --- To: vim-dev at vim.org Subject: Patch 7.2.151 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.151 Problem: ":hist a" doesn't work like ":hist all" as the docs suggest. Solution: Make ":hist a" and ":hist al" work. (Dominique Pelle) Files: src/ex_getln.c *** ../vim-7.2.150/src/ex_getln.c Wed Mar 18 12:50:58 2009 --- src/ex_getln.c Sun Apr 12 13:36:06 2009 *************** *** 5686,5692 **** histype1 = get_histtype(arg); if (histype1 == -1) { ! if (STRICMP(arg, "all") == 0) { histype1 = 0; histype2 = HIST_COUNT-1; --- 5686,5692 ---- histype1 = get_histtype(arg); if (histype1 == -1) { ! if (STRNICMP(arg, "all", STRLEN(arg)) == 0) { histype1 = 0; histype2 = HIST_COUNT-1; *** ../vim-7.2.150/src/version.c Wed Apr 22 13:06:11 2009 --- src/version.c Wed Apr 22 13:49:41 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 151, /**/ -- I'm sure that I asked CBuilder to do a "full" install. Looks like I got a "fool" install, instead. Charles E Campbell, Jr, PhD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.152 --- To: vim-dev at vim.org Subject: Patch 7.2.152 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.152 Problem: When using "silent echo x" inside ":redir" a next echo may start halfway the line. (Tony Mechelynck, Dennis Benzinger) Solution: Reset msg_col after redirecting silently. Files: src/ex_docmd.c, src/message.c, src/proto/message.pro *** ../vim-7.2.151/src/ex_docmd.c Wed Mar 18 12:50:58 2009 --- src/ex_docmd.c Wed Apr 22 11:57:49 2009 *************** *** 2699,2704 **** --- 2699,2709 ---- /* Restore msg_scroll, it's set by file I/O commands, even when no * message is actually displayed. */ msg_scroll = save_msg_scroll; + + /* "silent reg" or "silent echo x" inside "redir" leaves msg_col + * somewhere in the line. Put it back in the first column. */ + if (redirecting()) + msg_col = 0; } #ifdef HAVE_SANDBOX *** ../vim-7.2.151/src/message.c Tue Feb 24 04:36:50 2009 --- src/message.c Sun Apr 12 14:08:25 2009 *************** *** 3023,3033 **** if (*p_vfile != NUL) verbose_write(s, maxlen); ! if (redir_fd != NULL ! #ifdef FEAT_EVAL ! || redir_reg || redir_vname ! #endif ! ) { /* If the string doesn't start with CR or NL, go to msg_col */ if (*s != '\n' && *s != '\r') --- 3023,3029 ---- if (*p_vfile != NUL) verbose_write(s, maxlen); ! if (redirecting()) { /* If the string doesn't start with CR or NL, go to msg_col */ if (*s != '\n' && *s != '\r') *************** *** 3074,3079 **** --- 3070,3085 ---- } } + int + redirecting() + { + return redir_fd != NULL + #ifdef FEAT_EVAL + || redir_reg || redir_vname + #endif + ; + } + /* * Before giving verbose message. * Must always be called paired with verbose_leave()! *** ../vim-7.2.151/src/proto/message.pro Sat May 5 19:35:34 2007 --- src/proto/message.pro Sun Apr 12 14:08:50 2009 *************** *** 54,59 **** --- 54,60 ---- void msg_clr_cmdline __ARGS((void)); int msg_end __ARGS((void)); void msg_check __ARGS((void)); + int redirecting __ARGS((void)); void verbose_enter __ARGS((void)); void verbose_leave __ARGS((void)); void verbose_enter_scroll __ARGS((void)); *** ../vim-7.2.151/src/version.c Wed Apr 22 13:50:14 2009 --- src/version.c Wed Apr 22 14:40:22 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 152, /**/ -- Q: How does a UNIX Guru pick up a girl? A: look; grep; which; eval; nice; uname; talk; date; /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.153 --- To: vim-dev at vim.org Subject: Patch 7.2.153 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.153 Problem: Memory leak for ":recover empty_dir/". Solution: Free files[] when it becomes empty. (Dominique Pelle) Files: src/memline.c *** ../vim-7.2.152/src/memline.c Sun Jul 13 19:40:43 2008 --- src/memline.c Wed Apr 22 11:48:35 2009 *************** *** 1554,1563 **** for (i = 0; i < num_files; ++i) if (fullpathcmp(p, files[i], TRUE) & FPC_SAME) { vim_free(files[i]); ! --num_files; ! for ( ; i < num_files; ++i) ! files[i] = files[i + 1]; } } if (nr > 0) --- 1554,1568 ---- for (i = 0; i < num_files; ++i) if (fullpathcmp(p, files[i], TRUE) & FPC_SAME) { + /* Remove the name from files[i]. Move further entries + * down. When the array becomes empty free it here, since + * FreeWild() won't be called below. */ vim_free(files[i]); ! if (--num_files == 0) ! vim_free(files); ! else ! for ( ; i < num_files; ++i) ! files[i] = files[i + 1]; } } if (nr > 0) *************** *** 3522,3528 **** if (errno == EINVAL || errno == ENOENT) { /* Found non-symlink or not existing file, stop here. ! * When at the first level use the unmodifed name, skip the * call to vim_FullName(). */ if (depth == 1) return FAIL; --- 3527,3533 ---- if (errno == EINVAL || errno == ENOENT) { /* Found non-symlink or not existing file, stop here. ! * When at the first level use the unmodified name, skip the * call to vim_FullName(). */ if (depth == 1) return FAIL; *************** *** 4560,4566 **** buf->b_ml.ml_chunksize + curix, (buf->b_ml.ml_usedchunks - curix) * sizeof(chunksize_T)); ! /* Compute length of first half of lines in the splitted chunk */ size = 0; linecnt = 0; while (curline < buf->b_ml.ml_line_count --- 4568,4574 ---- buf->b_ml.ml_chunksize + curix, (buf->b_ml.ml_usedchunks - curix) * sizeof(chunksize_T)); ! /* Compute length of first half of lines in the split chunk */ size = 0; linecnt = 0; while (curline < buf->b_ml.ml_line_count *** ../vim-7.2.152/src/version.c Wed Apr 22 14:42:26 2009 --- src/version.c Wed Apr 22 15:34:18 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 153, /**/ -- Windows M!uqoms /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.154 --- To: vim-dev at vim.org Subject: Patch 7.2.154 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.154 (after 7.2.132) Problem: ":cd" is still possible in a SwapExists autocmd. Solution: Set allbuf_lock in do_swapexists(). Files: src/memline.c *** ../vim-7.2.153/src/memline.c Wed Apr 22 15:37:12 2009 --- src/memline.c Wed Apr 22 15:54:48 2009 *************** *** 3771,3778 **** set_vim_var_string(VV_SWAPCHOICE, NULL, -1); /* Trigger SwapExists autocommands with set to the file being ! * edited. */ apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL); set_vim_var_string(VV_SWAPNAME, NULL, -1); --- 3771,3780 ---- set_vim_var_string(VV_SWAPCHOICE, NULL, -1); /* Trigger SwapExists autocommands with set to the file being ! * edited. Disallow changing directory here. */ ! ++allbuf_lock; apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL); + --allbuf_lock; set_vim_var_string(VV_SWAPNAME, NULL, -1); *************** *** 3798,3803 **** --- 3800,3806 ---- * * Note: If BASENAMELEN is not correct, you will get error messages for * not being able to open the swapfile + * Note: May trigger SwapExists autocmd, pointers may change! */ static char_u * findswapname(buf, dirp, old_fname) *** ../vim-7.2.153/src/version.c Wed Apr 22 15:37:12 2009 --- src/version.c Wed Apr 22 15:55:48 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 154, /**/ -- ARTHUR: Be quiet! DENNIS: Well you can't expect to wield supreme executive power just 'cause some watery tart threw a sword at you! ARTHUR: Shut up! DENNIS: I mean, if I went around sayin' I was an empereror just because some moistened bint had lobbed a scimitar at me they'd put me away! The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.155 --- To: vim-dev at vim.org Subject: Patch 7.2.155 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.155 Problem: Memory leak in ":function /pat". Solution: Free the memory. (Dominique Pelle) Files: src/eval.c *** ../vim-7.2.154/src/eval.c Wed Apr 22 12:53:31 2009 --- src/eval.c Wed Apr 22 16:04:34 2009 *************** *** 19720,19725 **** --- 19720,19726 ---- list_func_head(fp, FALSE); } } + vim_free(regmatch.regprog); } } if (*p == '/') *** ../vim-7.2.154/src/version.c Wed Apr 22 15:56:27 2009 --- src/version.c Wed Apr 22 16:07:27 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 155, /**/ -- Q: How many hardware engineers does it take to change a lightbulb? A: None. We'll fix it in software. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.156 --- To: vim-dev at vim.org Subject: Patch 7.2.156 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.156 (after 7.2.143) Problem: No completion for :scscope and :lcscope commands. Solution: Implement the completion. (Dominique Pelle) Files: src/if_cscope.c, src/ex_docmd.c, src/proto/if_cscope.pro *** ../vim-7.2.155/src/if_cscope.c Wed Mar 18 14:30:46 2009 --- src/if_cscope.c Wed Apr 22 11:57:49 2009 *************** *** 98,103 **** --- 98,104 ---- static enum { EXP_CSCOPE_SUBCMD, /* expand ":cscope" sub-commands */ + EXP_SCSCOPE_SUBCMD, /* expand ":scscope" sub-commands */ EXP_CSCOPE_FIND, /* expand ":cscope find" arguments */ EXP_CSCOPE_KILL /* expand ":cscope kill" arguments */ } expand_what; *************** *** 112,123 **** --- 113,135 ---- expand_T *xp; int idx; { + int current_idx; + int i; + switch (expand_what) { case EXP_CSCOPE_SUBCMD: /* Complete with sub-commands of ":cscope": * add, find, help, kill, reset, show */ return (char_u *)cs_cmds[idx].name; + case EXP_SCSCOPE_SUBCMD: + /* Complete with sub-commands of ":scscope": same sub-commands as + * ":cscope" but skip commands which don't support split windows */ + for (i = 0, current_idx = 0; cs_cmds[i].name != NULL; i++) + if (cs_cmds[i].cansplit) + if (current_idx++ == idx) + break; + return (char_u *)cs_cmds[i].name; case EXP_CSCOPE_FIND: { const char *query_type[] = *************** *** 133,147 **** } case EXP_CSCOPE_KILL: { - int i; - int current_idx = 0; static char_u connection[2]; /* ":cscope kill" accepts connection numbers or partial names of * the pathname of the cscope database as argument. Only complete * with connection numbers. -1 can also be used to kill all * connections. */ ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname == NULL) continue; --- 145,157 ---- } case EXP_CSCOPE_KILL: { static char_u connection[2]; /* ":cscope kill" accepts connection numbers or partial names of * the pathname of the cscope database as argument. Only complete * with connection numbers. -1 can also be used to kill all * connections. */ ! for (i = 0, current_idx = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname == NULL) continue; *************** *** 165,180 **** * Handle command line completion for :cscope command. */ void ! set_context_in_cscope_cmd(xp, arg) expand_T *xp; char_u *arg; { char_u *p; /* Default: expand subcommands */ xp->xp_context = EXPAND_CSCOPE; - expand_what = EXP_CSCOPE_SUBCMD; xp->xp_pattern = arg; /* (part of) subcommand already typed */ if (*arg != NUL) --- 175,192 ---- * Handle command line completion for :cscope command. */ void ! set_context_in_cscope_cmd(xp, arg, cmdidx) expand_T *xp; char_u *arg; + cmdidx_T cmdidx; { char_u *p; /* Default: expand subcommands */ xp->xp_context = EXPAND_CSCOPE; xp->xp_pattern = arg; + expand_what = (cmdidx == CMD_scscope) + ? EXP_SCSCOPE_SUBCMD : EXP_CSCOPE_SUBCMD; /* (part of) subcommand already typed */ if (*arg != NUL) *** ../vim-7.2.155/src/ex_docmd.c Wed Apr 22 14:42:26 2009 --- src/ex_docmd.c Wed Apr 22 11:57:49 2009 *************** *** 3690,3696 **** break; #ifdef FEAT_CSCOPE case CMD_cscope: ! set_context_in_cscope_cmd(xp, arg); break; #endif #ifdef FEAT_LISTCMDS --- 3690,3698 ---- break; #ifdef FEAT_CSCOPE case CMD_cscope: ! case CMD_lcscope: ! case CMD_scscope: ! set_context_in_cscope_cmd(xp, arg, ea.cmdidx); break; #endif #ifdef FEAT_LISTCMDS *** ../vim-7.2.155/src/proto/if_cscope.pro Wed Mar 18 12:50:58 2009 --- src/proto/if_cscope.pro Wed Apr 22 11:57:49 2009 *************** *** 1,6 **** /* if_cscope.c */ char_u *get_cscope_name __ARGS((expand_T *xp, int idx)); ! void set_context_in_cscope_cmd __ARGS((expand_T *xp, char_u *arg)); void do_cscope __ARGS((exarg_T *eap)); void do_scscope __ARGS((exarg_T *eap)); void do_cstag __ARGS((exarg_T *eap)); --- 1,6 ---- /* if_cscope.c */ char_u *get_cscope_name __ARGS((expand_T *xp, int idx)); ! void set_context_in_cscope_cmd __ARGS((expand_T *xp, char_u *arg, cmdidx_T cmdidx)); void do_cscope __ARGS((exarg_T *eap)); void do_scscope __ARGS((exarg_T *eap)); void do_cstag __ARGS((exarg_T *eap)); *** ../vim-7.2.155/src/version.c Wed Apr 22 16:07:57 2009 --- src/version.c Wed Apr 22 16:21:43 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 156, /**/ -- ARTHUR: Shut up! Will you shut up! DENNIS: Ah, now we see the violence inherent in the system. ARTHUR: Shut up! DENNIS: Oh! Come and see the violence inherent in the system! HELP! HELP! I'm being repressed! The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.157 --- To: vim-dev at vim.org Subject: Patch 7.2.157 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.157 Problem: Illegal memory access when searching in path. Solution: Avoid looking at a byte after end of a string. (Dominique Pelle) Files: src/search.c *** ../vim-7.2.156/src/search.c Fri Jul 18 12:05:58 2008 --- src/search.c Wed Apr 22 12:26:19 2009 *************** *** 2327,2334 **** for (col = pos.col; check_prevcol(linep, col, '\\', &col);) bslcnt++; } ! /* Only accept a match when 'M' is in 'cpo' or when ecaping is ! * what we expect. */ if (cpo_bsl || (bslcnt & 1) == match_escaped) { if (c == initc) --- 2336,2343 ---- for (col = pos.col; check_prevcol(linep, col, '\\', &col);) bslcnt++; } ! /* Only accept a match when 'M' is in 'cpo' or when escaping ! * is what we expect. */ if (cpo_bsl || (bslcnt & 1) == match_escaped) { if (c == initc) *************** *** 4663,4669 **** msg_putchar('\n'); /* cursor below last one */ if (!got_int) /* don't display if 'q' typed at "--more--" ! mesage */ { msg_home_replace_hl(new_fname); MSG_PUTS(_(" (includes previously listed match)")); --- 4672,4678 ---- msg_putchar('\n'); /* cursor below last one */ if (!got_int) /* don't display if 'q' typed at "--more--" ! message */ { msg_home_replace_hl(new_fname); MSG_PUTS(_(" (includes previously listed match)")); *************** *** 4975,4981 **** || IObuff[i-2] == '!')))) IObuff[i++] = ' '; } ! /* copy as much as posible of the new word */ if (p - aux >= IOSIZE - i) p = aux + IOSIZE - i - 1; STRNCPY(IObuff + i, aux, p - aux); --- 4984,4990 ---- || IObuff[i-2] == '!')))) IObuff[i++] = ' '; } ! /* copy as much as possible of the new word */ if (p - aux >= IOSIZE - i) p = aux + IOSIZE - i - 1; STRNCPY(IObuff + i, aux, p - aux); *************** *** 5010,5016 **** if (did_show) msg_putchar('\n'); /* cursor below last one */ if (!got_int) /* don't display if 'q' typed ! at "--more--" mesage */ msg_home_replace_hl(curr_fname); prev_fname = curr_fname; } --- 5019,5025 ---- if (did_show) msg_putchar('\n'); /* cursor below last one */ if (!got_int) /* don't display if 'q' typed ! at "--more--" message */ msg_home_replace_hl(curr_fname); prev_fname = curr_fname; } *************** *** 5092,5098 **** } if (action != ACTION_SHOW) { ! curwin->w_cursor.col = (colnr_T) (startp - line); curwin->w_set_curswant = TRUE; } --- 5101,5107 ---- } if (action != ACTION_SHOW) { ! curwin->w_cursor.col = (colnr_T)(startp - line); curwin->w_set_curswant = TRUE; } *************** *** 5119,5125 **** && action == ACTION_EXPAND && !(compl_cont_status & CONT_SOL) #endif ! && *(p = startp + 1)) goto search_line; } line_breakcheck(); --- 5128,5135 ---- && action == ACTION_EXPAND && !(compl_cont_status & CONT_SOL) #endif ! && *startp != NUL ! && *(p = startp + 1) != NUL) goto search_line; } line_breakcheck(); *** ../vim-7.2.156/src/version.c Wed Apr 22 16:22:44 2009 --- src/version.c Wed Apr 22 16:39:59 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 157, /**/ -- ARTHUR: Bloody peasant! DENNIS: Oh, what a give away. Did you hear that, did you hear that, eh? That's what I'm on about -- did you see him repressing me, you saw it didn't you? The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.158 --- To: vim-dev at vim.org Subject: Patch 7.2.158 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.158 Problem: Warnings from VisualC compiler. Solution: Add type casts. (George Reilly) Files: src/ops.c *** ../vim-7.2.157/src/ops.c Wed Mar 11 16:26:01 2009 --- src/ops.c Wed Apr 22 13:01:46 2009 *************** *** 495,504 **** block_space_width = non_white_col - oap->start_vcol; /* We will shift by "total" or "block_space_width", whichever is less. */ ! shift_amount = (block_space_width < total? block_space_width: total); /* The column to which we will shift the text. */ ! destination_col = non_white_col - shift_amount; /* Now let's find out how much of the beginning of the line we can * reuse without modification. */ --- 495,505 ---- block_space_width = non_white_col - oap->start_vcol; /* We will shift by "total" or "block_space_width", whichever is less. */ ! shift_amount = (block_space_width < (size_t)total ! ? block_space_width : (size_t)total); /* The column to which we will shift the text. */ ! destination_col = (colnr_T)(non_white_col - shift_amount); /* Now let's find out how much of the beginning of the line we can * reuse without modification. */ *** ../vim-7.2.157/src/version.c Wed Apr 22 16:42:24 2009 --- src/version.c Wed Apr 22 17:42:19 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 158, /**/ -- ARTHUR: What? BLACK KNIGHT: None shall pass. ARTHUR: I have no quarrel with you, good Sir knight, but I must cross this bridge. BLACK KNIGHT: Then you shall die. The Quest for the Holy Grail (Monty Python) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.159 --- To: vim-dev at vim.org Subject: Patch 7.2.159 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.159 Problem: When $x_includes ends up being "NONE" configure fails. Solution: Check for $x_includes not to be "NONE" (Rainer) Files: src/auto/configure, src/configure.in *** ../vim-7.2.158/src/auto/configure Mon Mar 2 02:44:54 2009 --- src/auto/configure Wed Apr 22 14:37:24 2009 *************** *** 15519,15525 **** if test "$enable_multibyte" = "yes"; then cflags_save=$CFLAGS ldflags_save=$LDFLAGS ! if test -n "$x_includes" ; then CFLAGS="$CFLAGS -I$x_includes" LDFLAGS="$X_LIBS $LDFLAGS -lX11" { $as_echo "$as_me:$LINENO: checking whether X_LOCALE needed" >&5 --- 15519,15525 ---- if test "$enable_multibyte" = "yes"; then cflags_save=$CFLAGS ldflags_save=$LDFLAGS ! if test "x$x_includes" != "xNONE" ; then CFLAGS="$CFLAGS -I$x_includes" LDFLAGS="$X_LIBS $LDFLAGS -lX11" { $as_echo "$as_me:$LINENO: checking whether X_LOCALE needed" >&5 *** ../vim-7.2.158/src/configure.in Mon Mar 2 02:44:54 2009 --- src/configure.in Wed Apr 22 14:35:57 2009 *************** *** 2952,2958 **** if test "$enable_multibyte" = "yes"; then cflags_save=$CFLAGS ldflags_save=$LDFLAGS ! if test -n "$x_includes" ; then CFLAGS="$CFLAGS -I$x_includes" LDFLAGS="$X_LIBS $LDFLAGS -lX11" AC_MSG_CHECKING(whether X_LOCALE needed) --- 2952,2958 ---- if test "$enable_multibyte" = "yes"; then cflags_save=$CFLAGS ldflags_save=$LDFLAGS ! if test "x$x_includes" != "xNONE" ; then CFLAGS="$CFLAGS -I$x_includes" LDFLAGS="$X_LIBS $LDFLAGS -lX11" AC_MSG_CHECKING(whether X_LOCALE needed) *** ../vim-7.2.158/src/version.c Wed Apr 22 17:42:53 2009 --- src/version.c Wed Apr 22 17:49:50 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 159, /**/ -- "Hegel was right when he said that we learn from history that man can never learn anything from history." (George Bernard Shaw) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.160 --- To: vim-dev at vim.org Subject: Patch 7.2.160 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.160 Problem: Search pattern not freed on exit when 'rightleft' set. Solution: Free mr_pattern_alloced. Files: src/search.c *** ../vim-7.2.159/src/search.c Wed Apr 22 16:42:24 2009 --- src/search.c Wed Apr 22 12:26:19 2009 *************** *** 345,350 **** --- 345,359 ---- { vim_free(spats[0].pat); vim_free(spats[1].pat); + + # ifdef FEAT_RIGHTLEFT + if (mr_pattern_alloced) + { + vim_free(mr_pattern); + mr_pattern_alloced = FALSE; + mr_pattern = NULL; + } + # endif } #endif *** ../vim-7.2.159/src/version.c Wed Apr 22 17:50:53 2009 --- src/version.c Wed Apr 22 18:42:25 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 160, /**/ -- f y cn rd ths thn y cn hv grt jb n cmptr prgrmmng /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.161 --- To: vim-dev at vim.org Subject: Patch 7.2.161 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.161 Problem: Folds messed up in other tab page. (Vlad Irnov) Solution: Instead of going over all windows in current tab page go over all windows in all tab pages. Also free memory for location lists in other tab pages when exiting. (Lech Lorens) Files: src/fileio.c, src/mark.c, src/misc1.c, src/misc2.c *** ../vim-7.2.160/src/fileio.c Wed Mar 18 15:40:03 2009 --- src/fileio.c Wed Apr 22 15:46:35 2009 *************** *** 6846,6855 **** #endif #ifdef FEAT_FOLDING { ! win_T *wp; /* Update folds unless they are defined manually. */ ! FOR_ALL_WINDOWS(wp) if (wp->w_buffer == curwin->w_buffer && !foldmethodIsManual(wp)) foldUpdateAll(wp); --- 6846,6856 ---- #endif #ifdef FEAT_FOLDING { ! win_T *wp; ! tabpage_T *tp; /* Update folds unless they are defined manually. */ ! FOR_ALL_TAB_WINDOWS(tp, wp) if (wp->w_buffer == curwin->w_buffer && !foldmethodIsManual(wp)) foldUpdateAll(wp); *** ../vim-7.2.160/src/mark.c Sun Nov 9 13:43:25 2008 --- src/mark.c Wed Apr 22 17:32:29 2009 *************** *** 1023,1028 **** --- 1023,1031 ---- int fnum = curbuf->b_fnum; linenr_T *lp; win_T *win; + #ifdef FEAT_WINDOWS + tabpage_T *tab; + #endif if (line2 < line1 && amount_after == 0L) /* nothing to do */ return; *************** *** 1064,1070 **** /* quickfix marks */ qf_mark_adjust(NULL, line1, line2, amount, amount_after); /* location lists */ ! FOR_ALL_WINDOWS(win) qf_mark_adjust(win, line1, line2, amount, amount_after); #endif --- 1067,1073 ---- /* quickfix marks */ qf_mark_adjust(NULL, line1, line2, amount, amount_after); /* location lists */ ! FOR_ALL_TAB_WINDOWS(tab, win) qf_mark_adjust(win, line1, line2, amount, amount_after); #endif *************** *** 1086,1092 **** /* * Adjust items in all windows related to the current buffer. */ ! FOR_ALL_WINDOWS(win) { #ifdef FEAT_JUMPLIST if (!cmdmod.lockmarks) --- 1089,1095 ---- /* * Adjust items in all windows related to the current buffer. */ ! FOR_ALL_TAB_WINDOWS(tab, win) { #ifdef FEAT_JUMPLIST if (!cmdmod.lockmarks) *** ../vim-7.2.160/src/misc1.c Wed Mar 18 15:40:03 2009 --- src/misc1.c Wed Apr 22 17:32:46 2009 *************** *** 2717,2722 **** --- 2717,2725 ---- long xtra; { win_T *wp; + #ifdef FEAT_WINDOWS + tabpage_T *tp; + #endif int i; #ifdef FEAT_JUMPLIST int cols; *************** *** 2769,2775 **** curbuf->b_changelistlen = JUMPLISTSIZE - 1; mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1, sizeof(pos_T) * (JUMPLISTSIZE - 1)); ! FOR_ALL_WINDOWS(wp) { /* Correct position in changelist for other windows on * this buffer. */ --- 2772,2778 ---- curbuf->b_changelistlen = JUMPLISTSIZE - 1; mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1, sizeof(pos_T) * (JUMPLISTSIZE - 1)); ! FOR_ALL_TAB_WINDOWS(tp, wp) { /* Correct position in changelist for other windows on * this buffer. */ *************** *** 2777,2783 **** --wp->w_changelistidx; } } ! FOR_ALL_WINDOWS(wp) { /* For other windows, if the position in the changelist is * at the end it stays at the end. */ --- 2780,2786 ---- --wp->w_changelistidx; } } ! FOR_ALL_TAB_WINDOWS(tp, wp) { /* For other windows, if the position in the changelist is * at the end it stays at the end. */ *************** *** 2796,2802 **** #endif } ! FOR_ALL_WINDOWS(wp) { if (wp->w_buffer == curbuf) { --- 2799,2805 ---- #endif } ! FOR_ALL_TAB_WINDOWS(tp, wp) { if (wp->w_buffer == curbuf) { *** ../vim-7.2.160/src/misc2.c Wed Mar 11 17:27:46 2009 --- src/misc2.c Wed Apr 22 15:46:35 2009 *************** *** 1075,1085 **** #ifdef FEAT_QUICKFIX { ! win_T *win; qf_free_all(NULL); /* Free all location lists */ ! FOR_ALL_WINDOWS(win) qf_free_all(win); } #endif --- 1075,1086 ---- #ifdef FEAT_QUICKFIX { ! win_T *win; ! tabpage_T *tab; qf_free_all(NULL); /* Free all location lists */ ! FOR_ALL_TAB_WINDOWS(tab, win) qf_free_all(win); } #endif *** ../vim-7.2.160/src/version.c Wed Apr 22 18:43:06 2009 --- src/version.c Wed Apr 29 10:59:01 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 161, /**/ -- CONCORDE: Quickly, sir, come this way! LAUNCELOT: No! It's not right for my idiom. I must escape more ... more ... CONCORDE: Dramatically, sir? LAUNCELOT: Dramatically. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.162 --- To: vim-dev at vim.org Subject: Patch 7.2.162 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.162 Problem: The quickfix window may get wrong filetype. Solution: Do not detect the filetype for the quickfix window. (Lech Lorens) Files: src/quickfix.c *** ../vim-7.2.161/src/quickfix.c Sun Feb 22 02:36:36 2009 --- src/quickfix.c Wed Apr 22 17:34:57 2009 *************** *** 2346,2352 **** set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix", OPT_LOCAL); set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL); ! set_option_value((char_u *)"diff", 0L, NULL, OPT_LOCAL); } /* Only set the height when still in the same tab page and there is no --- 2346,2358 ---- set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix", OPT_LOCAL); set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL); ! #ifdef FEAT_DIFF ! curwin->w_p_diff = FALSE; ! #endif ! #ifdef FEAT_FOLDING ! set_option_value((char_u *)"fdm", 0L, (char_u *)"manual", ! OPT_LOCAL); ! #endif } /* Only set the height when still in the same tab page and there is no *************** *** 2607,2616 **** --- 2613,2624 ---- curbuf->b_p_ma = FALSE; #ifdef FEAT_AUTOCMD + keep_filetype = TRUE; /* don't detect 'filetype' */ apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL, FALSE, curbuf); apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL, FALSE, curbuf); + keep_filetype = FALSE; #endif /* make sure it will be redrawn */ *** ../vim-7.2.161/src/version.c Wed Apr 29 11:00:09 2009 --- src/version.c Wed Apr 29 11:49:09 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 162, /**/ -- Yesterday is history. Tomorrow is a mystery. Today is a gift. That's why it is called 'present'. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.163 --- To: vim-dev at vim.org Subject: Patch 7.2.163 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.163 Problem: The command line window may get folding. Solution: Default to no/manual folding. (Lech Lorens) Files: src/ex_getln.c *** ../vim-7.2.162/src/ex_getln.c Wed Apr 22 13:50:14 2009 --- src/ex_getln.c Wed Apr 22 16:12:54 2009 *************** *** 6073,6078 **** --- 6073,6081 ---- set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); curbuf->b_p_ma = TRUE; + #ifdef FEAT_FOLDING + curwin->w_p_fen = FALSE; + #endif # ifdef FEAT_RIGHTLEFT curwin->w_p_rl = cmdmsg_rl; cmdmsg_rl = FALSE; *** ../vim-7.2.162/src/version.c Wed Apr 29 11:49:57 2009 --- src/version.c Wed Apr 29 12:02:56 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 163, /**/ -- [SIR LAUNCELOT runs back up the stairs, grabs a rope of the wall and swings out over the heads of the CROWD in a swashbuckling manner towards a large window. He stops just short of the window and is left swing pathetically back and forth.] LAUNCELOT: Excuse me ... could somebody give me a push ... "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.164 --- To: vim-dev at vim.org Subject: Patch 7.2.164 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.164 Problem: When 'showbreak' is set the size of the Visual block may be reported wrong. (Eduardo Daudt Flach) Solution: Temporarily make 'sbr' empty. Files: src/normal.c, src/ops.c *** ../vim-7.2.163/src/normal.c Sat Feb 21 20:27:00 2009 --- src/normal.c Wed Apr 22 18:30:20 2009 *************** *** 3709,3721 **** #ifdef FEAT_VISUAL if (VIsual_active && !char_avail()) { ! int i = lt(VIsual, curwin->w_cursor); long lines; colnr_T leftcol, rightcol; linenr_T top, bot; /* Show the size of the Visual area. */ ! if (i) { top = VIsual.lnum; bot = curwin->w_cursor.lnum; --- 3709,3721 ---- #ifdef FEAT_VISUAL if (VIsual_active && !char_avail()) { ! int cursor_bot = lt(VIsual, curwin->w_cursor); long lines; colnr_T leftcol, rightcol; linenr_T top, bot; /* Show the size of the Visual area. */ ! if (cursor_bot) { top = VIsual.lnum; bot = curwin->w_cursor.lnum; *************** *** 3734,3747 **** if (VIsual_mode == Ctrl_V) { getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol); sprintf((char *)showcmd_buf, "%ldx%ld", lines, (long)(rightcol - leftcol + 1)); } else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) sprintf((char *)showcmd_buf, "%ld", lines); else ! sprintf((char *)showcmd_buf, "%ld", (long)(i ? curwin->w_cursor.col - VIsual.col : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e')); showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */ --- 3734,3756 ---- if (VIsual_mode == Ctrl_V) { + #ifdef FEAT_LINEBREAK + char_u *saved_sbr = p_sbr; + + /* Make 'sbr' empty for a moment to get the correct size. */ + p_sbr = empty_option; + #endif getvcols(curwin, &curwin->w_cursor, &VIsual, &leftcol, &rightcol); + #ifdef FEAT_LINEBREAK + p_sbr = saved_sbr; + #endif sprintf((char *)showcmd_buf, "%ldx%ld", lines, (long)(rightcol - leftcol + 1)); } else if (VIsual_mode == 'V' || VIsual.lnum != curwin->w_cursor.lnum) sprintf((char *)showcmd_buf, "%ld", lines); else ! sprintf((char *)showcmd_buf, "%ld", (long)(cursor_bot ? curwin->w_cursor.col - VIsual.col : VIsual.col - curwin->w_cursor.col) + (*p_sel != 'e')); showcmd_buf[SHOWCMD_COLS] = NUL; /* truncate */ *** ../vim-7.2.163/src/ops.c Wed Apr 22 17:42:53 2009 --- src/ops.c Wed Apr 22 18:30:07 2009 *************** *** 392,398 **** colnr_T ws_vcol; int i = 0, j = 0; int len; - #ifdef FEAT_RIGHTLEFT int old_p_ri = p_ri; --- 392,397 ---- *************** *** 6284,6294 **** --- 6283,6302 ---- if (VIsual_mode == Ctrl_V) { + #ifdef FEAT_LINEBREAK + char_u * saved_sbr = p_sbr; + + /* Make 'sbr' empty for a moment to get the correct size. */ + p_sbr = empty_option; + #endif oparg.is_VIsual = 1; oparg.block_mode = TRUE; oparg.op_type = OP_NOP; getvcols(curwin, &min_pos, &max_pos, &oparg.start_vcol, &oparg.end_vcol); + #ifdef FEAT_LINEBREAK + p_sbr = saved_sbr; + #endif if (curwin->w_curswant == MAXCOL) oparg.end_vcol = MAXCOL; /* Swap the start, end vcol if needed */ *** ../vim-7.2.163/src/version.c Wed Apr 29 12:03:35 2009 --- src/version.c Wed Apr 29 17:38:05 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 164, /**/ -- There are 10 kinds of people: Those who understand binary and those who don't. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.165 --- To: vim-dev at vim.org Subject: Patch 7.2.165 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.165 Problem: The argument for the FuncUndefined autocmd event is expanded like a file name. Solution: Don't try expanding it. (Wang Xu) Files: src/fileio.c *** ../vim-7.2.164/src/fileio.c Wed Apr 29 11:00:09 2009 --- src/fileio.c Wed Apr 29 18:01:06 2009 *************** *** 8785,8793 **** else { sfname = vim_strsave(fname); ! /* Don't try expanding FileType, Syntax, WindowID or QuickFixCmd* */ if (event == EVENT_FILETYPE || event == EVENT_SYNTAX || event == EVENT_REMOTEREPLY || event == EVENT_SPELLFILEMISSING || event == EVENT_QUICKFIXCMDPRE --- 8785,8795 ---- else { sfname = vim_strsave(fname); ! /* Don't try expanding FileType, Syntax, FuncUndefined, WindowID or ! * QuickFixCmd* */ if (event == EVENT_FILETYPE || event == EVENT_SYNTAX + || event == EVENT_FUNCUNDEFINED || event == EVENT_REMOTEREPLY || event == EVENT_SPELLFILEMISSING || event == EVENT_QUICKFIXCMDPRE *** ../vim-7.2.164/src/version.c Wed Apr 29 17:39:17 2009 --- src/version.c Wed Apr 29 18:00:43 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 165, /**/ -- Be nice to your kids... they'll be the ones choosing your nursing home. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.166 --- To: vim-dev at vim.org Subject: Patch 7.2.166 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.166 Problem: No completion for ":sign" command. Solution: Add ":sign" completion. (Dominique Pelle) Files: src/ex_cmds.c, src/ex_docmd.c, src/ex_getln.c, src/vim.h, src/proto/ex_cmds.pro *** ../vim-7.2.165/src/ex_cmds.c Tue Feb 24 04:28:40 2009 --- src/ex_cmds.c Wed Apr 29 17:08:27 2009 *************** *** 6543,6562 **** static void sign_list_defined __ARGS((sign_T *sp)); static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev)); ! /* ! * ":sign" command ! */ ! void ! ex_sign(eap) ! exarg_T *eap; ! { ! char_u *arg = eap->arg; ! char_u *p; ! int idx; ! sign_T *sp; ! sign_T *sp_prev; ! buf_T *buf; ! static char *cmds[] = { "define", #define SIGNCMD_DEFINE 0 "undefine", --- 6543,6549 ---- static void sign_list_defined __ARGS((sign_T *sp)); static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev)); ! static char *cmds[] = { "define", #define SIGNCMD_DEFINE 0 "undefine", *************** *** 6569,6590 **** #define SIGNCMD_UNPLACE 4 "jump", #define SIGNCMD_JUMP 5 #define SIGNCMD_LAST 6 ! }; /* Parse the subcommand. */ p = skiptowhite(arg); ! if (*p != NUL) ! *p++ = NUL; ! for (idx = 0; ; ++idx) { ! if (idx == SIGNCMD_LAST) ! { ! EMSG2(_("E160: Unknown sign command: %s"), arg); ! return; ! } ! if (STRCMP(arg, cmds[idx]) == 0) ! break; } arg = skipwhite(p); --- 6556,6606 ---- #define SIGNCMD_UNPLACE 4 "jump", #define SIGNCMD_JUMP 5 + NULL #define SIGNCMD_LAST 6 ! }; ! ! /* ! * Find index of a ":sign" subcmd from its name. ! * "*end_cmd" must be writable. ! */ ! static int ! sign_cmd_idx(begin_cmd, end_cmd) ! char *begin_cmd; /* begin of sign subcmd */ ! char *end_cmd; /* just after sign subcmd */ ! { ! int idx; ! char save = *end_cmd; ! ! *end_cmd = NUL; ! for (idx = 0; ; ++idx) ! if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) ! break; ! *end_cmd = save; ! return idx; ! } ! ! /* ! * ":sign" command ! */ ! void ! ex_sign(eap) ! exarg_T *eap; ! { ! char_u *arg = eap->arg; ! char_u *p; ! int idx; ! sign_T *sp; ! sign_T *sp_prev; ! buf_T *buf; /* Parse the subcommand. */ p = skiptowhite(arg); ! idx = sign_cmd_idx(arg, p); ! if (idx == SIGNCMD_LAST) { ! EMSG2(_("E160: Unknown sign command: %s"), arg); ! return; } arg = skipwhite(p); *************** *** 7110,7115 **** --- 7126,7311 ---- } #endif + #if defined(FEAT_CMDL_COMPL) || defined(PROTO) + static enum + { + EXP_SUBCMD, /* expand :sign sub-commands */ + EXP_DEFINE, /* expand :sign define {name} args */ + EXP_PLACE, /* expand :sign place {id} args */ + EXP_UNPLACE, /* expand :sign unplace" */ + EXP_SIGN_NAMES /* expand with name of placed signs */ + } expand_what; + + /* + * Function given to ExpandGeneric() to obtain the sign command + * expansion. + */ + /*ARGSUSED*/ + char_u * + get_sign_name(xp, idx) + expand_T *xp; + int idx; + { + sign_T *sp; + int current_idx; + + switch (expand_what) + { + case EXP_SUBCMD: + return (char_u *)cmds[idx]; + case EXP_DEFINE: + { + char *define_arg[] = + { + "icon=", "linehl=", "text=", "texthl=", NULL + }; + return (char_u *)define_arg[idx]; + } + case EXP_PLACE: + { + char *place_arg[] = + { + "line=", "name=", "file=", "buffer=", NULL + }; + return (char_u *)place_arg[idx]; + } + case EXP_UNPLACE: + { + char *unplace_arg[] = { "file=", "buffer=", NULL }; + return (char_u *)unplace_arg[idx]; + } + case EXP_SIGN_NAMES: + /* Complete with name of signs already defined */ + current_idx = 0; + for (sp = first_sign; sp != NULL; sp = sp->sn_next) + if (current_idx++ == idx) + return sp->sn_name; + return NULL; + default: + return NULL; + } + } + + /* + * Handle command line completion for :sign command. + */ + void + set_context_in_sign_cmd(xp, arg) + expand_T *xp; + char_u *arg; + { + char_u *p; + char_u *end_subcmd; + char_u *last; + int cmd_idx; + char_u *begin_subcmd_args; + + /* Default: expand subcommands. */ + xp->xp_context = EXPAND_SIGN; + expand_what = EXP_SUBCMD; + xp->xp_pattern = arg; + + end_subcmd = skiptowhite(arg); + if (*end_subcmd == NUL) + /* expand subcmd name + * :sign {subcmd}*/ + return; + + cmd_idx = sign_cmd_idx(arg, end_subcmd); + + /* :sign {subcmd} {subcmd_args} + * | + * begin_subcmd_args */ + begin_subcmd_args = skipwhite(end_subcmd); + p = skiptowhite(begin_subcmd_args); + if (*p == NUL) + { + /* + * Expand first argument of subcmd when possible. + * For ":jump {id}" and ":unplace {id}", we could + * possibly expand the ids of all signs already placed. + */ + xp->xp_pattern = begin_subcmd_args; + switch (cmd_idx) + { + case SIGNCMD_LIST: + case SIGNCMD_UNDEFINE: + /* :sign list + * :sign undefine */ + expand_what = EXP_SIGN_NAMES; + break; + default: + xp->xp_context = EXPAND_NOTHING; + } + return; + } + + /* expand last argument of subcmd */ + + /* :sign define {name} {args}... + * | + * p */ + + /* Loop until reaching last argument. */ + do + { + p = skipwhite(p); + last = p; + p = skiptowhite(p); + } while (*p != NUL); + + p = vim_strchr(last, '='); + + /* :sign define {name} {args}... {last}= + * | | + * last p */ + if (p == NUL) + { + /* Expand last argument name (before equal sign). */ + xp->xp_pattern = last; + switch (cmd_idx) + { + case SIGNCMD_DEFINE: + expand_what = EXP_DEFINE; + break; + case SIGNCMD_PLACE: + expand_what = EXP_PLACE; + break; + case SIGNCMD_JUMP: + case SIGNCMD_UNPLACE: + expand_what = EXP_UNPLACE; + break; + default: + xp->xp_context = EXPAND_NOTHING; + } + } + else + { + /* Expand last argument value (after equal sign). */ + xp->xp_pattern = p + 1; + switch (cmd_idx) + { + case SIGNCMD_DEFINE: + if (STRNCMP(last, "texthl", p - last) == 0 || + STRNCMP(last, "linehl", p - last) == 0) + xp->xp_context = EXPAND_HIGHLIGHT; + else if (STRNCMP(last, "icon", p - last) == 0) + xp->xp_context = EXPAND_FILES; + else + xp->xp_context = EXPAND_NOTHING; + break; + case SIGNCMD_PLACE: + if (STRNCMP(last, "name", p - last) == 0) + expand_what = EXP_SIGN_NAMES; + else + xp->xp_context = EXPAND_NOTHING; + break; + default: + xp->xp_context = EXPAND_NOTHING; + } + } + } + #endif #endif #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) *** ../vim-7.2.165/src/ex_docmd.c Wed Apr 22 16:22:44 2009 --- src/ex_docmd.c Wed Apr 29 17:05:23 2009 *************** *** 3695,3700 **** --- 3695,3705 ---- set_context_in_cscope_cmd(xp, arg, ea.cmdidx); break; #endif + #ifdef FEAT_SIGNS + case CMD_sign: + set_context_in_sign_cmd(xp, arg); + break; + #endif #ifdef FEAT_LISTCMDS case CMD_bdelete: case CMD_bwipeout: *************** *** 5218,5223 **** --- 5223,5231 ---- {EXPAND_MENUS, "menu"}, {EXPAND_SETTINGS, "option"}, {EXPAND_SHELLCMD, "shellcmd"}, + #if defined(FEAT_SIGNS) + {EXPAND_SIGN, "sign"}, + #endif {EXPAND_TAGS, "tag"}, {EXPAND_TAGS_LISTFILES, "tag_listfiles"}, {EXPAND_USER_VARS, "var"}, *** ../vim-7.2.165/src/ex_getln.c Wed Apr 29 12:03:35 2009 --- src/ex_getln.c Wed Apr 29 12:51:42 2009 *************** *** 325,331 **** #endif #ifdef FEAT_DIGRAPHS ! do_digraph(-1); /* init digraph typahead */ #endif /* --- 325,331 ---- #endif #ifdef FEAT_DIGRAPHS ! do_digraph(-1); /* init digraph typeahead */ #endif /* *************** *** 4521,4526 **** --- 4521,4529 ---- #ifdef FEAT_CSCOPE {EXPAND_CSCOPE, get_cscope_name, TRUE}, #endif + #ifdef FEAT_SIGNS + {EXPAND_SIGN, get_sign_name, TRUE}, + #endif #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) {EXPAND_LANGUAGE, get_lang_arg, TRUE}, *** ../vim-7.2.165/src/vim.h Wed Mar 18 12:50:58 2009 --- src/vim.h Wed Apr 29 12:51:42 2009 *************** *** 709,714 **** --- 709,715 ---- #define EXPAND_USER_LIST 31 #define EXPAND_SHELLCMD 32 #define EXPAND_CSCOPE 33 + #define EXPAND_SIGN 34 /* Values for exmode_active (0 is no exmode) */ #define EXMODE_NORMAL 1 *** ../vim-7.2.165/src/proto/ex_cmds.pro Tue Feb 24 04:28:40 2009 --- src/proto/ex_cmds.pro Wed Apr 29 17:10:29 2009 *************** *** 40,46 **** int read_viminfo_sub_string __ARGS((vir_T *virp, int force)); void write_viminfo_sub_string __ARGS((FILE *fp)); void free_old_sub __ARGS((void)); - void free_signs __ARGS((void)); int prepare_tagpreview __ARGS((int undo_sync)); void ex_help __ARGS((exarg_T *eap)); char_u *check_help_lang __ARGS((char_u *arg)); --- 40,45 ---- *************** *** 56,60 **** --- 55,62 ---- char_u *sign_get_text __ARGS((int typenr)); void *sign_get_image __ARGS((int typenr)); char_u *sign_typenr2name __ARGS((int typenr)); + void free_signs __ARGS((void)); + char_u *get_sign_name __ARGS((expand_T *xp, int idx)); + void set_context_in_sign_cmd __ARGS((expand_T *xp, char_u *arg)); void ex_drop __ARGS((exarg_T *eap)); /* vim: set ft=c : */ *** ../vim-7.2.165/src/version.c Wed Apr 29 18:01:23 2009 --- src/version.c Wed Apr 29 18:43:14 2009 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 166, /**/ -- Did you ever stop to think... and forget to start again? -- Steven Wright /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.167 --- To: vim-dev at vim.org Subject: Patch 7.2.167 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.167 Problem: Splint doesn't work well for checking the code. Solution: Add splint arguments in the Makefile. Exclude some code from splint that it can't handle. Tune splint arguments to give reasonable errors. Add a filter for removing false warnings from splint output. Many small changes to avoid warnings. More to follow... Files: Filelist, src/Makefile, src/buffer.c, src/charset.c, src/cleanlint.vim, src/digraph.c, src/edit.c, src/ex_cmds.c, src/globals.h, src/ops.c, src/os_unix.c, src/os_unix.h, src/proto/buffer.pro, src/proto/edit.pro, src/screen.c, src/structs.h *** ../vim-7.2.166/Filelist 2008-09-20 16:26:10.000000000 +0200 --- Filelist 2009-05-05 21:45:49.000000000 +0200 *************** *** 139,144 **** --- 139,145 ---- src/INSTALL \ src/INSTALLx.txt \ src/Makefile \ + src/cleanlint.vim \ src/auto/configure \ src/config.aap.in \ src/config.h.in \ *************** *** 683,691 **** runtime/spell/??/main.aap \ runtime/spell/yi/README.txt \ runtime/spell/main.aap \ - runtime/spell/cleanadd.vim \ runtime/spell/*.vim \ - runtime/spell/fixdup \ # generic language files, binary LANG_GEN_BIN = \ --- 684,690 ---- *** ../vim-7.2.166/src/Makefile 2009-04-29 18:44:45.000000000 +0200 --- src/Makefile 2009-05-06 00:23:15.000000000 +0200 *************** *** 551,557 **** # }}} # LINT - for running lint ! LINT_OPTIONS = -beprxzF # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. # Might not work with GUI or Perl. --- 551,562 ---- # }}} # LINT - for running lint ! # For standard lint ! #LINT = lint ! #LINT_OPTIONS = -beprxzF ! # For splint (see cleanlint.vim for filtering the output) ! LINT = splint ! LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. # Might not work with GUI or Perl. *************** *** 1259,1274 **** # This is for cproto 3 patchlevel 8 or below # __inline, __attribute__ and __extension__ are not recognized by cproto # G_IMPLEMENT_INLINES is to avoid functions defined in glib/gutils.h. ! NO_ATTR = -D__inline= -D__inline__= -DG_IMPLEMENT_INLINES \ ! -D"__attribute__\\(x\\)=" -D"__asm__\\(x\\)=" \ ! -D__extension__= -D__restrict="" \ ! -D__gnuc_va_list=char -D__builtin_va_list=char # ! # This is for cproto 3 patchlevel 9 or above (currently 4.6) # __inline and __attribute__ are now recognized by cproto # -D"foo()=" is not supported by all compilers so do not use it ! # NO_ATTR= # # maybe the "/usr/bin/cc -E" has to be adjusted for some systems # This is for cproto 3.5 patchlevel 3: --- 1264,1279 ---- # This is for cproto 3 patchlevel 8 or below # __inline, __attribute__ and __extension__ are not recognized by cproto # G_IMPLEMENT_INLINES is to avoid functions defined in glib/gutils.h. ! #NO_ATTR = -D__inline= -D__inline__= -DG_IMPLEMENT_INLINES \ ! # -D"__attribute__\\(x\\)=" -D"__asm__\\(x\\)=" \ ! # -D__extension__= -D__restrict="" \ ! # -D__gnuc_va_list=char -D__builtin_va_list=char # ! # This is for cproto 3 patchlevel 9 or above (currently 4.6, 4.7g) # __inline and __attribute__ are now recognized by cproto # -D"foo()=" is not supported by all compilers so do not use it ! NO_ATTR= # # maybe the "/usr/bin/cc -E" has to be adjusted for some systems # This is for cproto 3.5 patchlevel 3: *************** *** 1432,1437 **** --- 1437,1443 ---- $(SNIFF_SRC) $(WORKSHOP_SRC) $(WSDEBUG_SRC) $(NETBEANS_SRC) #LINT_SRC = $(SRC) #LINT_SRC = $(ALL_SRC) + #LINT_SRC = $(BASIC_SRC) OBJ = \ objects/buffer.o \ *************** *** 2272,2283 **** # Run lint. Clean up the *.ln files that are sometimes left behind. lint: ! lint $(LINT_OPTIONS) $(LINT_CFLAGS) $(LINT_EXTRA) $(LINT_SRC) -rm -f *.ln # Check dosinst.c with lint. lintinstall: ! lint $(LINT_OPTIONS) -DWIN32 -DUNIX_LINT dosinst.c -rm -f dosinst.ln ########################################################################### --- 2279,2290 ---- # Run lint. Clean up the *.ln files that are sometimes left behind. lint: ! $(LINT) $(LINT_OPTIONS) $(LINT_CFLAGS) $(LINT_EXTRA) $(LINT_SRC) -rm -f *.ln # Check dosinst.c with lint. lintinstall: ! $(LINT) $(LINT_OPTIONS) -DWIN32 -DUNIX_LINT dosinst.c -rm -f dosinst.ln ########################################################################### *** ../vim-7.2.166/src/buffer.c 2009-02-22 00:01:42.000000000 +0100 --- src/buffer.c 2009-05-13 12:25:29.000000000 +0200 *************** *** 44,49 **** --- 44,50 ---- #ifdef FEAT_TITLE static int ti_change __ARGS((char_u *str, char_u **last)); #endif + static int append_arg_number __ARGS((win_T *wp, char_u *buf, int buflen, int add_file)); static void free_buffer __ARGS((buf_T *)); static void free_buffer_stuff __ARGS((buf_T *buf, int free_options)); static void clear_wininfo __ARGS((buf_T *buf)); *************** *** 1453,1465 **** #ifdef FEAT_KEYMAP if (curbuf->b_kmap_state & KEYMAP_INIT) ! keymap_init(); #endif #ifdef FEAT_SPELL /* May need to set the spell language. Can only do this after the buffer * has been properly setup. */ if (!curbuf->b_help && curwin->w_p_spell && *curbuf->b_p_spl != NUL) ! did_set_spelllang(curbuf); #endif redraw_later(NOT_VALID); --- 1454,1466 ---- #ifdef FEAT_KEYMAP if (curbuf->b_kmap_state & KEYMAP_INIT) ! (void)keymap_init(); #endif #ifdef FEAT_SPELL /* May need to set the spell language. Can only do this after the buffer * has been properly setup. */ if (!curbuf->b_help && curwin->w_p_spell && *curbuf->b_p_spl != NUL) ! (void)did_set_spelllang(curbuf); #endif redraw_later(NOT_VALID); *************** *** 2516,2522 **** buf_T *buf; { wininfo_T *wip; ! static pos_T no_position = {1, 0}; wip = find_wininfo(buf, FALSE); if (wip != NULL) --- 2517,2523 ---- buf_T *buf; { wininfo_T *wip; ! static pos_T no_position = INIT_POS_T(1, 0, 0); wip = find_wininfo(buf, FALSE); if (wip != NULL) *************** *** 2577,2584 **** { IObuff[len++] = ' '; } while (--i > 0 && len < IOSIZE - 18); ! vim_snprintf((char *)IObuff + len, IOSIZE - len, _("line %ld"), ! buf == curbuf ? curwin->w_cursor.lnum : (long)buflist_findlnum(buf)); msg_outtrans(IObuff); out_flush(); /* output one line at a time */ --- 2578,2585 ---- { IObuff[len++] = ' '; } while (--i > 0 && len < IOSIZE - 18); ! vim_snprintf((char *)IObuff + len, (size_t)(IOSIZE - len), ! _("line %ld"), buf == curbuf ? curwin->w_cursor.lnum : (long)buflist_findlnum(buf)); msg_outtrans(IObuff); out_flush(); /* output one line at a time */ *************** *** 2967,2973 **** if (fullname > 1) /* 2 CTRL-G: include buffer number */ { ! sprintf((char *)buffer, "buf %d: ", curbuf->b_fnum); p = buffer + STRLEN(buffer); } else --- 2968,2974 ---- if (fullname > 1) /* 2 CTRL-G: include buffer number */ { ! vim_snprintf((char *)buffer, IOSIZE, "buf %d: ", curbuf->b_fnum); p = buffer + STRLEN(buffer); } else *************** *** 3041,3051 **** (long)curbuf->b_ml.ml_line_count, n); validate_virtcol(); ! col_print(buffer + STRLEN(buffer), (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); } ! (void)append_arg_number(curwin, buffer, !shortmess(SHM_FILE), IOSIZE); if (dont_truncate) { --- 3042,3053 ---- (long)curbuf->b_ml.ml_line_count, n); validate_virtcol(); ! len = STRLEN(buffer); ! col_print(buffer + len, IOSIZE - len, (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); } ! (void)append_arg_number(curwin, buffer, IOSIZE, !shortmess(SHM_FILE)); if (dont_truncate) { *************** *** 3073,3087 **** } void ! col_print(buf, col, vcol) char_u *buf; int col; int vcol; { if (col == vcol) ! sprintf((char *)buf, "%d", col); else ! sprintf((char *)buf, "%d-%d", col, vcol); } #if defined(FEAT_TITLE) || defined(PROTO) --- 3075,3090 ---- } void ! col_print(buf, buflen, col, vcol) char_u *buf; + size_t buflen; int col; int vcol; { if (col == vcol) ! vim_snprintf((char *)buf, buflen, "%d", col); else ! vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol); } #if defined(FEAT_TITLE) || defined(PROTO) *************** *** 3194,3211 **** if (p == buf + off) /* must be a help buffer */ vim_strncpy(buf + off, (char_u *)_("help"), ! IOSIZE - off - 1); else *p = NUL; /* translate unprintable chars */ p = transstr(buf + off); ! vim_strncpy(buf + off, p, IOSIZE - off - 1); vim_free(p); STRCAT(buf, ")"); } ! append_arg_number(curwin, buf, FALSE, IOSIZE); #if defined(FEAT_CLIENTSERVER) if (serverName != NULL) --- 3197,3214 ---- if (p == buf + off) /* must be a help buffer */ vim_strncpy(buf + off, (char_u *)_("help"), ! (size_t)(IOSIZE - off - 1)); else *p = NUL; /* translate unprintable chars */ p = transstr(buf + off); ! vim_strncpy(buf + off, p, (size_t)(IOSIZE - off - 1)); vim_free(p); STRCAT(buf, ")"); } ! append_arg_number(curwin, buf, IOSIZE, FALSE); #if defined(FEAT_CLIENTSERVER) if (serverName != NULL) *************** *** 3520,3526 **** n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1; *t = '<'; ! mch_memmove(t + 1, t + n, p - (t + n)); p = p - n + 1; #ifdef FEAT_MBYTE /* Fill up space left over by half a double-wide char. */ --- 3523,3529 ---- n = (long)(p - t) - item[groupitem[groupdepth]].maxwid + 1; *t = '<'; ! mch_memmove(t + 1, t + n, (size_t)(p - (t + n))); p = p - n + 1; #ifdef FEAT_MBYTE /* Fill up space left over by half a double-wide char. */ *************** *** 3550,3556 **** else { /* fill by inserting characters */ ! mch_memmove(t + n - l, t, p - t); l = n - l; if (p + l >= out + outlen) l = (long)((out + outlen) - p - 1); --- 3553,3559 ---- else { /* fill by inserting characters */ ! mch_memmove(t + n - l, t, (size_t)(p - t)); l = n - l; if (p + l >= out + outlen) l = (long)((out + outlen) - p - 1); *************** *** 3686,3692 **** p = t; #ifdef FEAT_EVAL ! sprintf((char *)tmp, "%d", curbuf->b_fnum); set_internal_string_var((char_u *)"actual_curbuf", tmp); o_curbuf = curbuf; --- 3689,3695 ---- p = t; #ifdef FEAT_EVAL ! vim_snprintf((char *)tmp, sizeof(tmp), "%d", curbuf->b_fnum); set_internal_string_var((char_u *)"actual_curbuf", tmp); o_curbuf = curbuf; *************** *** 3753,3765 **** case STL_ALTPERCENT: str = tmp; ! get_rel_pos(wp, str); break; case STL_ARGLISTSTAT: fillable = FALSE; tmp[0] = 0; ! if (append_arg_number(wp, tmp, FALSE, (int)sizeof(tmp))) str = tmp; break; --- 3756,3768 ---- case STL_ALTPERCENT: str = tmp; ! get_rel_pos(wp, str, TMPLEN); break; case STL_ARGLISTSTAT: fillable = FALSE; tmp[0] = 0; ! if (append_arg_number(wp, tmp, (int)sizeof(tmp), FALSE)) str = tmp; break; *************** *** 3794,3800 **** case STL_BYTEVAL_X: base = 'X'; case STL_BYTEVAL: ! if (wp->w_cursor.col > STRLEN(linecont)) num = 0; else { --- 3797,3803 ---- case STL_BYTEVAL_X: base = 'X'; case STL_BYTEVAL: ! if (wp->w_cursor.col > (colnr_T)STRLEN(linecont)) num = 0; else { *************** *** 3967,3973 **** if (zeropad) *t++ = '0'; *t++ = '*'; ! *t++ = nbase == 16 ? base : (nbase == 8 ? 'o' : 'd'); *t = 0; for (n = num, l = 1; n >= nbase; n /= nbase) --- 3970,3976 ---- if (zeropad) *t++ = '0'; *t++ = '*'; ! *t++ = nbase == 16 ? base : (char_u)(nbase == 8 ? 'o' : 'd'); *t = 0; for (n = num, l = 1; n >= nbase; n /= nbase) *************** *** 4160,4172 **** #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ || defined(FEAT_GUI_TABLINE) || defined(PROTO) /* ! * Get relative cursor position in window into "str[]", in the form 99%, using ! * "Top", "Bot" or "All" when appropriate. */ void ! get_rel_pos(wp, str) win_T *wp; ! char_u *str; { long above; /* number of lines above window */ long below; /* number of lines below window */ --- 4163,4176 ---- #if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \ || defined(FEAT_GUI_TABLINE) || defined(PROTO) /* ! * Get relative cursor position in window into "buf[buflen]", in the form 99%, ! * using "Top", "Bot" or "All" when appropriate. */ void ! get_rel_pos(wp, buf, buflen) win_T *wp; ! char_u *buf; ! int buflen; { long above; /* number of lines above window */ long below; /* number of lines below window */ *************** *** 4177,4210 **** #endif below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; if (below <= 0) ! STRCPY(str, above == 0 ? _("All") : _("Bot")); else if (above <= 0) ! STRCPY(str, _("Top")); else ! sprintf((char *)str, "%2d%%", above > 1000000L ? (int)(above / ((above + below) / 100L)) : (int)(above * 100L / (above + below))); } #endif /* ! * Append (file 2 of 8) to 'buf', if editing more than one file. * Return TRUE if it was appended. */ ! int ! append_arg_number(wp, buf, add_file, maxlen) win_T *wp; char_u *buf; int add_file; /* Add "file" before the arg number */ - int maxlen; /* maximum nr of chars in buf or zero*/ { char_u *p; if (ARGCOUNT <= 1) /* nothing to do */ return FALSE; ! p = buf + STRLEN(buf); /* go to the end of the buffer */ ! if (maxlen && p - buf + 35 >= maxlen) /* getting too long */ return FALSE; *p++ = ' '; *p++ = '('; --- 4181,4215 ---- #endif below = wp->w_buffer->b_ml.ml_line_count - wp->w_botline + 1; if (below <= 0) ! vim_strncpy(buf, (char_u *)(above == 0 ? _("All") : _("Bot")), ! (size_t)(buflen - 1)); else if (above <= 0) ! vim_strncpy(buf, (char_u *)_("Top"), (size_t)(buflen - 1)); else ! vim_snprintf((char *)buf, (size_t)buflen, "%2d%%", above > 1000000L ? (int)(above / ((above + below) / 100L)) : (int)(above * 100L / (above + below))); } #endif /* ! * Append (file 2 of 8) to "buf[buflen]", if editing more than one file. * Return TRUE if it was appended. */ ! static int ! append_arg_number(wp, buf, buflen, add_file) win_T *wp; char_u *buf; + int buflen; int add_file; /* Add "file" before the arg number */ { char_u *p; if (ARGCOUNT <= 1) /* nothing to do */ return FALSE; ! p = buf + STRLEN(buf); /* go to the end of the buffer */ ! if (p - buf + 35 >= buflen) /* getting too long */ return FALSE; *p++ = ' '; *p++ = '('; *************** *** 4213,4219 **** STRCPY(p, "file "); p += 5; } ! sprintf((char *)p, wp->w_arg_idx_invalid ? "(%d) of %d)" : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); return TRUE; } --- 4218,4225 ---- STRCPY(p, "file "); p += 5; } ! vim_snprintf((char *)p, (size_t)(buflen - (p - buf)), ! wp->w_arg_idx_invalid ? "(%d) of %d)" : "%d of %d)", wp->w_arg_idx + 1, ARGCOUNT); return TRUE; } *************** *** 4996,5002 **** if (tab != NULL) { *tab++ = '\0'; ! col = atoi((char *)tab); tab = vim_strrchr(xline, '\t'); if (tab != NULL) { --- 5002,5008 ---- if (tab != NULL) { *tab++ = '\0'; ! col = (colnr_T)atoi((char *)tab); tab = vim_strrchr(xline, '\t'); if (tab != NULL) { *************** *** 5034,5039 **** --- 5040,5046 ---- #endif char_u *line; int max_buffers; + size_t len; if (find_viminfo_parameter('%') == NULL) return; *************** *** 5042,5048 **** max_buffers = get_viminfo_parameter('%'); /* Allocate room for the file name, lnum and col. */ ! line = alloc(MAXPATHL + 40); if (line == NULL) return; --- 5049,5056 ---- max_buffers = get_viminfo_parameter('%'); /* Allocate room for the file name, lnum and col. */ ! #define LINE_BUF_LEN (MAXPATHL + 40) ! line = alloc(LINE_BUF_LEN); if (line == NULL) return; *************** *** 5068,5074 **** break; putc('%', fp); home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE); ! sprintf((char *)line + STRLEN(line), "\t%ld\t%d", (long)buf->b_last_cursor.lnum, buf->b_last_cursor.col); viminfo_writestring(fp, line); --- 5076,5083 ---- break; putc('%', fp); home_replace(NULL, buf->b_ffname, line, MAXPATHL, TRUE); ! len = STRLEN(line); ! vim_snprintf((char *)line + len, len - LINE_BUF_LEN, "\t%ld\t%d", (long)buf->b_last_cursor.lnum, buf->b_last_cursor.col); viminfo_writestring(fp, line); *************** *** 5226,5232 **** return; } ! int buf_change_sign_type(buf, markId, typenr) buf_T *buf; /* buffer to store sign in */ int markId; /* sign ID */ --- 5235,5241 ---- return; } ! linenr_T buf_change_sign_type(buf, markId, typenr) buf_T *buf; /* buffer to store sign in */ int markId; /* sign ID */ *************** *** 5243,5252 **** } } ! return 0; } ! int_u buf_getsigntype(buf, lnum, type) buf_T *buf; linenr_T lnum; --- 5252,5261 ---- } } ! return (linenr_T)0; } ! int buf_getsigntype(buf, lnum, type) buf_T *buf; linenr_T lnum; *** ../vim-7.2.166/src/charset.c 2008-07-24 21:30:44.000000000 +0200 --- src/charset.c 2009-05-05 18:17:11.000000000 +0200 *************** *** 17,23 **** static int win_nolbr_chartabsize __ARGS((win_T *wp, char_u *s, colnr_T col, int *headp)); #endif ! static int nr2hex __ARGS((int c)); static int chartab_initialized = FALSE; --- 17,23 ---- static int win_nolbr_chartabsize __ARGS((win_T *wp, char_u *s, colnr_T col, int *headp)); #endif ! static unsigned nr2hex __ARGS((unsigned c)); static int chartab_initialized = FALSE; *************** *** 664,670 **** } #endif buf[++i] = nr2hex((unsigned)c >> 4); ! buf[++i] = nr2hex(c); buf[++i] = '>'; buf[++i] = NUL; } --- 664,670 ---- } #endif buf[++i] = nr2hex((unsigned)c >> 4); ! buf[++i] = nr2hex((unsigned)c); buf[++i] = '>'; buf[++i] = NUL; } *************** *** 674,682 **** * Lower case letters are used to avoid the confusion of being 0xf1 or * function key 1. */ ! static int nr2hex(c) ! int c; { if ((c & 0xf) <= 9) return (c & 0xf) + '0'; --- 674,682 ---- * Lower case letters are used to avoid the confusion of being 0xf1 or * function key 1. */ ! static unsigned nr2hex(c) ! unsigned c; { if ((c & 0xf) <= 9) return (c & 0xf) + '0'; *************** *** 884,890 **** if (c >= 0x100) { if (enc_dbcs != 0) ! return dbcs_class((unsigned)c >> 8, c & 0xff) >= 2; if (enc_utf8) return utf_class(c) >= 2; } --- 884,890 ---- if (c >= 0x100) { if (enc_dbcs != 0) ! return dbcs_class((unsigned)c >> 8, (unsigned)(c & 0xff)) >= 2; if (enc_utf8) return utf_class(c) >= 2; } *************** *** 1090,1096 **** */ numberextra = win_col_off(wp); col2 = col; ! colmax = W_WIDTH(wp) - numberextra; if (col >= colmax) { n = colmax + win_col_off2(wp); --- 1090,1096 ---- */ numberextra = win_col_off(wp); col2 = col; ! colmax = (colnr_T)(W_WIDTH(wp) - numberextra); if (col >= colmax) { n = colmax + win_col_off2(wp); *************** *** 1201,1217 **** win_T *wp; colnr_T vcol; { ! colnr_T width1; /* width of first line (after line number) */ ! colnr_T width2; /* width of further lines */ #ifdef FEAT_VERTSPLIT if (wp->w_width == 0) /* there is no border */ return FALSE; #endif width1 = W_WIDTH(wp) - win_col_off(wp); ! if (vcol < width1 - 1) return FALSE; ! if (vcol == width1 - 1) return TRUE; width2 = width1 + win_col_off2(wp); return ((vcol - width1) % width2 == width2 - 1); --- 1201,1217 ---- win_T *wp; colnr_T vcol; { ! int width1; /* width of first line (after line number) */ ! int width2; /* width of further lines */ #ifdef FEAT_VERTSPLIT if (wp->w_width == 0) /* there is no border */ return FALSE; #endif width1 = W_WIDTH(wp) - win_col_off(wp); ! if ((int)vcol < width1 - 1) return FALSE; ! if ((int)vcol == width1 - 1) return TRUE; width2 = width1 + win_col_off2(wp); return ((vcol - width1) % width2 == width2 - 1); *************** *** 1396,1408 **** # ifdef FEAT_MBYTE /* Cannot put the cursor on part of a wide character. */ ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE); ! if (pos->col < STRLEN(ptr)) { int c = (*mb_ptr2char)(ptr + pos->col); if (c != TAB && vim_isprintc(c)) { ! endadd = char2cells(c) - 1; if (coladd > endadd) /* past end of line */ endadd = 0; else --- 1396,1408 ---- # ifdef FEAT_MBYTE /* Cannot put the cursor on part of a wide character. */ ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE); ! if (pos->col < (colnr_T)STRLEN(ptr)) { int c = (*mb_ptr2char)(ptr + pos->col); if (c != TAB && vim_isprintc(c)) { ! endadd = (colnr_T)(char2cells(c) - 1); if (coladd > endadd) /* past end of line */ endadd = 0; else *** ../vim-7.2.166/src/cleanlint.vim 2009-05-13 12:08:12.000000000 +0200 --- src/cleanlint.vim 2009-05-05 21:34:01.000000000 +0200 *************** *** 0 **** --- 1,27 ---- + " Vim tool: Filter output of splint + " + " Maintainer: Bram Moolenaar + " Last Change: 2009 May 05 + + " Usage: redirect output of "make lint" to a file, edit that file with Vim and + " :call CleanLint() + " This deletes irrelevant messages. What remains might be valid warnings. + + fun! CleanLint() + g/^ Types are incompatible/lockmarks d + g/Assignment of dev_t to __dev_t:/lockmarks d + g/Assignment of __dev_t to dev_t:/lockmarks d + g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d + g/Operands of == have incompatible types (unsigned int, int): /lockmarks d + g/Assignment of char to char_u: /lockmarks d + g/Assignment of unsigned int to int: /lockmarks d + g/Assignment of colnr_T to int: /lockmarks d + g/Assignment of int to char_u: /lockmarks d + g/Function .* expects arg . to be wint_t gets int: /lockmarks d + g/^digraph.c.*digraphdefault.*is type char, expects char_u:/lockmarks d + g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d + g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d + g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d + g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d + g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d + endfun *** ../vim-7.2.166/src/digraph.c 2008-06-25 00:26:41.000000000 +0200 --- src/digraph.c 2009-05-05 20:32:43.000000000 +0200 *************** *** 32,38 **** static void printdigraph __ARGS((digr_T *)); /* digraphs added by the user */ ! static garray_T user_digraphs = {0, 0, sizeof(digr_T), 10, NULL}; /* * Note: Characters marked with XX are not included literally, because some --- 32,38 ---- static void printdigraph __ARGS((digr_T *)); /* digraphs added by the user */ ! static garray_T user_digraphs = {0, 0, (int)sizeof(digr_T), 10, NULL}; /* * Note: Characters marked with XX are not included literally, because some *************** *** 2371,2380 **** } else #endif ! *p++ = dp->result; if (char2cells(dp->result) == 1) *p++ = ' '; ! sprintf((char *)p, " %3d", dp->result); msg_outtrans(buf); } } --- 2371,2380 ---- } else #endif ! *p++ = (char_u)dp->result; if (char2cells(dp->result) == 1) *p++ = ' '; ! vim_snprintf((char *)p, sizeof(buf) - (p - buf), " %3d", dp->result); msg_outtrans(buf); } } *************** *** 2395,2401 **** static void keymap_unload __ARGS((void)); /* ! * Set up key mapping tables for the 'keymap' option */ char_u * keymap_init() --- 2395,2404 ---- static void keymap_unload __ARGS((void)); /* ! * Set up key mapping tables for the 'keymap' option. ! * Returns NULL if OK, an error message for failure. This only needs to be ! * used when setting the option, not later when the value has already been ! * checked. */ char_u * keymap_init() *************** *** 2412,2436 **** else { char_u *buf; /* Source the keymap file. It will contain a ":loadkeymap" command * which will call ex_loadkeymap() below. */ ! buf = alloc((unsigned)(STRLEN(curbuf->b_p_keymap) # ifdef FEAT_MBYTE ! + STRLEN(p_enc) # endif ! + 14)); if (buf == NULL) return e_outofmem; # ifdef FEAT_MBYTE /* try finding "keymap/'keymap'_'encoding'.vim" in 'runtimepath' */ ! sprintf((char *)buf, "keymap/%s_%s.vim", curbuf->b_p_keymap, p_enc); if (source_runtime(buf, FALSE) == FAIL) # endif { /* try finding "keymap/'keymap'.vim" in 'runtimepath' */ ! sprintf((char *)buf, "keymap/%s.vim", curbuf->b_p_keymap); if (source_runtime(buf, FALSE) == FAIL) { vim_free(buf); --- 2415,2443 ---- else { char_u *buf; + size_t buflen; /* Source the keymap file. It will contain a ":loadkeymap" command * which will call ex_loadkeymap() below. */ ! buflen = STRLEN(curbuf->b_p_keymap) # ifdef FEAT_MBYTE ! + STRLEN(p_enc) # endif ! + 14; ! buf = alloc((unsigned)buflen); if (buf == NULL) return e_outofmem; # ifdef FEAT_MBYTE /* try finding "keymap/'keymap'_'encoding'.vim" in 'runtimepath' */ ! vim_snprintf((char *)buf, buflen, "keymap/%s_%s.vim", ! curbuf->b_p_keymap, p_enc); if (source_runtime(buf, FALSE) == FAIL) # endif { /* try finding "keymap/'keymap'.vim" in 'runtimepath' */ ! vim_snprintf((char *)buf, buflen, "keymap/%s.vim", ! curbuf->b_p_keymap); if (source_runtime(buf, FALSE) == FAIL) { vim_free(buf); *** ../vim-7.2.166/src/edit.c 2009-02-21 20:27:00.000000000 +0100 --- src/edit.c 2009-05-05 21:14:50.000000000 +0200 *************** *** 57,63 **** N_(" Keyword Local completion (^N^P)"), }; ! static char_u e_hitend[] = N_("Hit end of paragraph"); /* * Structure used to store one match for insert completion. --- 57,63 ---- N_(" Keyword Local completion (^N^P)"), }; ! static char e_hitend[] = N_("Hit end of paragraph"); /* * Structure used to store one match for insert completion. *************** *** 69,75 **** --- 69,79 ---- compl_T *cp_prev; char_u *cp_str; /* matched text */ char cp_icase; /* TRUE or FALSE: ignore case */ + #ifdef S_SPLINT_S /* splint can't handle array of pointers */ + char_u **cp_text; /* text for the menu */ + #else char_u *(cp_text[CPT_COUNT]); /* text for the menu */ + #endif char_u *cp_fname; /* file containing the match, allocated when * cp_flags has FREE_FNAME */ int cp_flags; /* ORIGINAL_TEXT, CONT_S_IPOS or FREE_FNAME */ *************** *** 306,312 **** int c = 0; char_u *ptr; int lastc; ! colnr_T mincol; static linenr_T o_lnum = 0; int i; int did_backspace = TRUE; /* previous char was backspace */ --- 310,316 ---- int c = 0; char_u *ptr; int lastc; ! int mincol; static linenr_T o_lnum = 0; int i; int did_backspace = TRUE; /* previous char was backspace */ *************** *** 387,393 **** if (startln) Insstart.col = 0; } ! Insstart_textlen = linetabsize(ml_get_curline()); Insstart_blank_vcol = MAXCOL; if (!did_ai) ai_col = 0; --- 391,397 ---- if (startln) Insstart.col = 0; } ! Insstart_textlen = (colnr_T)linetabsize(ml_get_curline()); Insstart_blank_vcol = MAXCOL; if (!did_ai) ai_col = 0; *************** *** 653,659 **** mincol = curwin->w_wcol; validate_cursor_col(); ! if ((int)curwin->w_wcol < (int)mincol - curbuf->b_p_ts && curwin->w_wrow == W_WINROW(curwin) + curwin->w_height - 1 - p_so && (curwin->w_cursor.lnum != curwin->w_topline --- 657,663 ---- mincol = curwin->w_wcol; validate_cursor_col(); ! if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts && curwin->w_wrow == W_WINROW(curwin) + curwin->w_height - 1 - p_so && (curwin->w_cursor.lnum != curwin->w_topline *************** *** 1773,1779 **** * Compute the screen column where the cursor should be. */ vcol = get_indent() - vcol; ! curwin->w_virtcol = (vcol < 0) ? 0 : vcol; /* * Advance the cursor until we reach the right screen column. --- 1777,1783 ---- * Compute the screen column where the cursor should be. */ vcol = get_indent() - vcol; ! curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol); /* * Advance the cursor until we reach the right screen column. *************** *** 1800,1808 **** */ if (vcol != (int)curwin->w_virtcol) { ! curwin->w_cursor.col = new_cursor_col; i = (int)curwin->w_virtcol - vcol; ! ptr = alloc(i + 1); if (ptr != NULL) { new_cursor_col += i; --- 1804,1812 ---- */ if (vcol != (int)curwin->w_virtcol) { ! curwin->w_cursor.col = (colnr_T)new_cursor_col; i = (int)curwin->w_virtcol - vcol; ! ptr = alloc((unsigned)(i + 1)); if (ptr != NULL) { new_cursor_col += i; *************** *** 1826,1832 **** if (new_cursor_col <= 0) curwin->w_cursor.col = 0; else ! curwin->w_cursor.col = new_cursor_col; curwin->w_set_curswant = TRUE; changed_cline_bef_curs(); --- 1830,1836 ---- if (new_cursor_col <= 0) curwin->w_cursor.col = 0; else ! curwin->w_cursor.col = (colnr_T)new_cursor_col; curwin->w_set_curswant = TRUE; changed_cline_bef_curs(); *************** *** 1966,1972 **** #ifdef FEAT_MBYTE if (enc_utf8 && limit_col >= 0) { ! int ecol = curwin->w_cursor.col + 1; /* Make sure the cursor is at the start of a character, but * skip forward again when going too far back because of a --- 1970,1976 ---- #ifdef FEAT_MBYTE if (enc_utf8 && limit_col >= 0) { ! colnr_T ecol = curwin->w_cursor.col + 1; /* Make sure the cursor is at the start of a character, but * skip forward again when going too far back because of a *************** *** 1982,1988 **** } if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol) return FALSE; ! del_bytes((long)(ecol - curwin->w_cursor.col), FALSE, TRUE); } else #endif --- 1986,1992 ---- } if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol) return FALSE; ! del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE); } else #endif *************** *** 2201,2207 **** actual_compl_length = compl_length; /* Allocate wide character array for the completion and fill it. */ ! wca = (int *)alloc(actual_len * sizeof(int)); if (wca != NULL) { p = str; --- 2205,2211 ---- actual_compl_length = compl_length; /* Allocate wide character array for the completion and fill it. */ ! wca = (int *)alloc((unsigned)(actual_len * sizeof(int))); if (wca != NULL) { p = str; *************** *** 2580,2586 **** */ void set_completion(startcol, list) ! int startcol; list_T *list; { /* If already doing completions stop it. */ --- 2584,2590 ---- */ void set_completion(startcol, list) ! colnr_T startcol; list_T *list; { /* If already doing completions stop it. */ *************** *** 2591,2600 **** if (stop_arrow() == FAIL) return; ! if (startcol > (int)curwin->w_cursor.col) startcol = curwin->w_cursor.col; compl_col = startcol; ! compl_length = curwin->w_cursor.col - startcol; /* compl_pattern doesn't need to be set */ compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length); if (compl_orig_text == NULL || ins_compl_add(compl_orig_text, --- 2595,2604 ---- if (stop_arrow() == FAIL) return; ! if (startcol > curwin->w_cursor.col) startcol = curwin->w_cursor.col; compl_col = startcol; ! compl_length = (int)curwin->w_cursor.col - (int)startcol; /* compl_pattern doesn't need to be set */ compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length); if (compl_orig_text == NULL || ins_compl_add(compl_orig_text, *************** *** 2860,2866 **** regmatch_T regmatch; char_u **files; int count; - int i; int save_p_scs; int dir = compl_direction; --- 2864,2869 ---- *************** *** 2892,2908 **** if (ctrl_x_mode == CTRL_X_WHOLE_LINE) { char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\"); if (pat_esc == NULL) goto theend; ! i = (int)STRLEN(pat_esc) + 10; ! ptr = alloc(i); if (ptr == NULL) { vim_free(pat_esc); goto theend; } ! vim_snprintf((char *)ptr, i, "^\\s*\\zs\\V%s", pat_esc); regmatch.regprog = vim_regcomp(ptr, RE_MAGIC); vim_free(pat_esc); vim_free(ptr); --- 2895,2912 ---- if (ctrl_x_mode == CTRL_X_WHOLE_LINE) { char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\"); + size_t len; if (pat_esc == NULL) goto theend; ! len = STRLEN(pat_esc) + 10; ! ptr = alloc((unsigned)len); if (ptr == NULL) { vim_free(pat_esc); goto theend; } ! vim_snprintf((char *)ptr, len, "^\\s*\\zs\\V%s", pat_esc); regmatch.regprog = vim_regcomp(ptr, RE_MAGIC); vim_free(pat_esc); vim_free(ptr); *************** *** 2993,2999 **** { vim_snprintf((char *)IObuff, IOSIZE, _("Scanning dictionary: %s"), (char *)files[i]); ! msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } if (fp != NULL) --- 2997,3003 ---- { vim_snprintf((char *)IObuff, IOSIZE, _("Scanning dictionary: %s"), (char *)files[i]); ! (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } if (fp != NULL) *************** *** 3311,3317 **** static int ins_compl_len() { ! int off = curwin->w_cursor.col - compl_col; if (off < 0) return 0; --- 3315,3321 ---- static int ins_compl_len() { ! int off = (int)curwin->w_cursor.col - (int)compl_col; if (off < 0) return 0; *************** *** 3347,3353 **** vim_free(compl_leader); compl_leader = vim_strnsave(ml_get_curline() + compl_col, ! curwin->w_cursor.col - compl_col); if (compl_leader != NULL) ins_compl_new_leader(); } --- 3351,3357 ---- vim_free(compl_leader); compl_leader = vim_strnsave(ml_get_curline() + compl_col, ! (int)(curwin->w_cursor.col - compl_col)); if (compl_leader != NULL) ins_compl_new_leader(); } *************** *** 3395,3401 **** ins_compl_addfrommatch() { char_u *p; ! int len = curwin->w_cursor.col - compl_col; int c; compl_T *cp; --- 3399,3405 ---- ins_compl_addfrommatch() { char_u *p; ! int len = (int)curwin->w_cursor.col - (int)compl_col; int c; compl_T *cp; *************** *** 3961,3967 **** : ins_buf->b_sfname == NULL ? (char *)ins_buf->b_fname : (char *)ins_buf->b_sfname); ! msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else if (*e_cpt == NUL) break; --- 3965,3971 ---- : ins_buf->b_sfname == NULL ? (char *)ins_buf->b_fname : (char *)ins_buf->b_sfname); ! (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else if (*e_cpt == NUL) break; *************** *** 3991,3997 **** { type = CTRL_X_TAGS; sprintf((char*)IObuff, _("Scanning tags.")); ! msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else type = -1; --- 3995,4001 ---- { type = CTRL_X_TAGS; sprintf((char*)IObuff, _("Scanning tags.")); ! (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else type = -1; *************** *** 6320,6326 **** ins_need_undo = FALSE; } Insstart = curwin->w_cursor; /* new insertion starts here */ ! Insstart_textlen = linetabsize(ml_get_curline()); ai_col = 0; #ifdef FEAT_VREPLACE if (State & VREPLACE_FLAG) --- 6324,6330 ---- ins_need_undo = FALSE; } Insstart = curwin->w_cursor; /* new insertion starts here */ ! Insstart_textlen = (colnr_T)linetabsize(ml_get_curline()); ai_col = 0; #ifdef FEAT_VREPLACE if (State & VREPLACE_FLAG) *** ../vim-7.2.166/src/ex_cmds.c 2009-04-29 18:44:38.000000000 +0200 --- src/ex_cmds.c 2009-05-05 17:55:40.000000000 +0200 *************** *** 1789,1795 **** * overwrite a user's viminfo file after a "su root", with a * viminfo file that the user can't read. */ ! st_old.st_dev = 0; st_old.st_ino = 0; st_old.st_mode = 0600; if (mch_stat((char *)fname, &st_old) == 0 --- 1789,1795 ---- * overwrite a user's viminfo file after a "su root", with a * viminfo file that the user can't read. */ ! st_old.st_dev = (dev_t)0; st_old.st_ino = 0; st_old.st_mode = 0600; if (mch_stat((char *)fname, &st_old) == 0 *************** *** 3715,3721 **** /* If the window options were changed may need to set the spell language. * Can only do this after the buffer has been properly setup. */ if (did_get_winopts && curwin->w_p_spell && *curbuf->b_p_spl != NUL) ! did_set_spelllang(curbuf); #endif if (command == NULL) --- 3715,3721 ---- /* If the window options were changed may need to set the spell language. * Can only do this after the buffer has been properly setup. */ if (did_get_winopts && curwin->w_p_spell && *curbuf->b_p_spl != NUL) ! (void)did_set_spelllang(curbuf); #endif if (command == NULL) *************** *** 3788,3794 **** #ifdef FEAT_KEYMAP if (curbuf->b_kmap_state & KEYMAP_INIT) ! keymap_init(); #endif --RedrawingDisabled; --- 3788,3794 ---- #ifdef FEAT_KEYMAP if (curbuf->b_kmap_state & KEYMAP_INIT) ! (void)keymap_init(); #endif --RedrawingDisabled; *** ../vim-7.2.166/src/globals.h 2009-03-05 03:13:51.000000000 +0100 --- src/globals.h 2009-05-09 21:14:49.000000000 +0200 *************** *** 524,530 **** EXTERN win_T *prevwin INIT(= NULL); /* previous window */ # define W_NEXT(wp) ((wp)->w_next) # define FOR_ALL_WINDOWS(wp) for (wp = firstwin; wp != NULL; wp = wp->w_next) ! #define FOR_ALL_TAB_WINDOWS(tp, wp) \ for ((tp) = first_tabpage; (tp) != NULL; (tp) = (tp)->tp_next) \ for ((wp) = ((tp) == curtab) \ ? firstwin : (tp)->tp_firstwin; (wp); (wp) = (wp)->w_next) --- 524,530 ---- EXTERN win_T *prevwin INIT(= NULL); /* previous window */ # define W_NEXT(wp) ((wp)->w_next) # define FOR_ALL_WINDOWS(wp) for (wp = firstwin; wp != NULL; wp = wp->w_next) ! # define FOR_ALL_TAB_WINDOWS(tp, wp) \ for ((tp) = first_tabpage; (tp) != NULL; (tp) = (tp)->tp_next) \ for ((wp) = ((tp) == curtab) \ ? firstwin : (tp)->tp_firstwin; (wp); (wp) = (wp)->w_next) *************** *** 718,724 **** EXTERN pos_T saved_cursor /* w_cursor before formatting text. */ # ifdef DO_INIT ! = INIT_POS_T # endif ; --- 718,724 ---- EXTERN pos_T saved_cursor /* w_cursor before formatting text. */ # ifdef DO_INIT ! = INIT_POS_T(0, 0, 0) # endif ; *************** *** 1039,1045 **** EXTERN int did_cursorhold INIT(= FALSE); /* set when CursorHold t'gerd */ EXTERN pos_T last_cursormoved /* for CursorMoved event */ # ifdef DO_INIT ! = INIT_POS_T # endif ; #endif --- 1039,1045 ---- EXTERN int did_cursorhold INIT(= FALSE); /* set when CursorHold t'gerd */ EXTERN pos_T last_cursormoved /* for CursorMoved event */ # ifdef DO_INIT ! = INIT_POS_T(0, 0, 0) # endif ; #endif *** ../vim-7.2.166/src/ops.c 2009-04-29 17:39:17.000000000 +0200 --- src/ops.c 2009-05-13 12:41:02.000000000 +0200 *************** *** 6400,6406 **** { getvcols(curwin, &min_pos, &max_pos, &min_pos.col, &max_pos.col); ! sprintf((char *)buf1, _("%ld Cols; "), (long)(oparg.end_vcol - oparg.start_vcol + 1)); } else --- 6400,6406 ---- { getvcols(curwin, &min_pos, &max_pos, &min_pos.col, &max_pos.col); ! vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "), (long)(oparg.end_vcol - oparg.start_vcol + 1)); } else *************** *** 6408,6420 **** if (char_count_cursor == byte_count_cursor && char_count == byte_count) ! sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"), buf1, line_count_selected, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, byte_count_cursor, byte_count); else ! sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"), buf1, line_count_selected, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, --- 6408,6422 ---- if (char_count_cursor == byte_count_cursor && char_count == byte_count) ! vim_snprintf((char *)IObuff, IOSIZE, ! _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"), buf1, line_count_selected, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, byte_count_cursor, byte_count); else ! vim_snprintf((char *)IObuff, IOSIZE, ! _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"), buf1, line_count_selected, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, *************** *** 6426,6445 **** { p = ml_get_curline(); validate_virtcol(); ! col_print(buf1, (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); ! col_print(buf2, (int)STRLEN(p), linetabsize(p)); if (char_count_cursor == byte_count_cursor && char_count == byte_count) ! sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"), (char *)buf1, (char *)buf2, (long)curwin->w_cursor.lnum, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, byte_count_cursor, byte_count); else ! sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"), (char *)buf1, (char *)buf2, (long)curwin->w_cursor.lnum, (long)curbuf->b_ml.ml_line_count, --- 6428,6449 ---- { p = ml_get_curline(); validate_virtcol(); ! col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1, (int)curwin->w_virtcol + 1); ! col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p)); if (char_count_cursor == byte_count_cursor && char_count == byte_count) ! vim_snprintf((char *)IObuff, IOSIZE, ! _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"), (char *)buf1, (char *)buf2, (long)curwin->w_cursor.lnum, (long)curbuf->b_ml.ml_line_count, word_count_cursor, word_count, byte_count_cursor, byte_count); else ! vim_snprintf((char *)IObuff, IOSIZE, ! _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"), (char *)buf1, (char *)buf2, (long)curwin->w_cursor.lnum, (long)curbuf->b_ml.ml_line_count, *** ../vim-7.2.166/src/os_unix.c 2009-03-02 02:44:54.000000000 +0100 --- src/os_unix.c 2009-05-05 17:35:58.000000000 +0200 *************** *** 199,205 **** #endif #ifndef SIG_ERR ! # define SIG_ERR ((RETSIGTYPE (*)())-1) #endif /* volatile because it is used in signal handler sig_winch(). */ --- 199,207 ---- #endif #ifndef SIG_ERR ! # ifndef S_SPLINT_S ! # define SIG_ERR ((RETSIGTYPE (*)())-1) ! # endif #endif /* volatile because it is used in signal handler sig_winch(). */ *************** *** 441,447 **** #if defined(HAVE_TOTAL_MEM) || defined(PROTO) # ifdef HAVE_SYS_RESOURCE_H ! # include # endif # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) # include --- 443,451 ---- #if defined(HAVE_TOTAL_MEM) || defined(PROTO) # ifdef HAVE_SYS_RESOURCE_H ! # ifndef S_SPLINT_S /* splint crashes on bits/resource.h */ ! # include ! # endif # endif # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) # include *** ../vim-7.2.166/src/os_unix.h 2008-06-20 18:06:36.000000000 +0200 --- src/os_unix.h 2009-05-05 17:07:45.000000000 +0200 *************** *** 53,59 **** #endif #ifdef HAVE_UNISTD_H ! # include #endif #ifdef HAVE_LIBC_H --- 53,61 ---- #endif #ifdef HAVE_UNISTD_H ! # ifndef S_SPLINT_S /* splint crashes on bits/confname.h */ ! # include ! # endif #endif #ifdef HAVE_LIBC_H *** ../vim-7.2.166/src/proto/buffer.pro 2008-11-15 14:10:23.000000000 +0100 --- src/proto/buffer.pro 2009-05-13 12:23:41.000000000 +0200 *************** *** 37,49 **** int otherfile __ARGS((char_u *ffname)); void buf_setino __ARGS((buf_T *buf)); void fileinfo __ARGS((int fullname, int shorthelp, int dont_truncate)); ! void col_print __ARGS((char_u *buf, int col, int vcol)); void maketitle __ARGS((void)); void resettitle __ARGS((void)); void free_titles __ARGS((void)); int build_stl_str_hl __ARGS((win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, struct stl_hlrec *hltab, struct stl_hlrec *tabtab)); ! void get_rel_pos __ARGS((win_T *wp, char_u *str)); ! int append_arg_number __ARGS((win_T *wp, char_u *buf, int add_file, int maxlen)); char_u *fix_fname __ARGS((char_u *fname)); void fname_expand __ARGS((buf_T *buf, char_u **ffname, char_u **sfname)); char_u *alist_name __ARGS((aentry_T *aep)); --- 37,48 ---- int otherfile __ARGS((char_u *ffname)); void buf_setino __ARGS((buf_T *buf)); void fileinfo __ARGS((int fullname, int shorthelp, int dont_truncate)); ! void col_print __ARGS((char_u *buf, size_t buflen, int col, int vcol)); void maketitle __ARGS((void)); void resettitle __ARGS((void)); void free_titles __ARGS((void)); int build_stl_str_hl __ARGS((win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillchar, int maxwidth, struct stl_hlrec *hltab, struct stl_hlrec *tabtab)); ! void get_rel_pos __ARGS((win_T *wp, char_u *buf, int buflen)); char_u *fix_fname __ARGS((char_u *fname)); void fname_expand __ARGS((buf_T *buf, char_u **ffname, char_u **sfname)); char_u *alist_name __ARGS((aentry_T *aep)); *************** *** 54,61 **** void write_viminfo_bufferlist __ARGS((FILE *fp)); char *buf_spname __ARGS((buf_T *buf)); void buf_addsign __ARGS((buf_T *buf, int id, linenr_T lnum, int typenr)); ! int buf_change_sign_type __ARGS((buf_T *buf, int markId, int typenr)); ! int_u buf_getsigntype __ARGS((buf_T *buf, linenr_T lnum, int type)); linenr_T buf_delsign __ARGS((buf_T *buf, int id)); int buf_findsign __ARGS((buf_T *buf, int id)); int buf_findsign_id __ARGS((buf_T *buf, linenr_T lnum)); --- 53,60 ---- void write_viminfo_bufferlist __ARGS((FILE *fp)); char *buf_spname __ARGS((buf_T *buf)); void buf_addsign __ARGS((buf_T *buf, int id, linenr_T lnum, int typenr)); ! linenr_T buf_change_sign_type __ARGS((buf_T *buf, int markId, int typenr)); ! int buf_getsigntype __ARGS((buf_T *buf, linenr_T lnum, int type)); linenr_T buf_delsign __ARGS((buf_T *buf, int id)); int buf_findsign __ARGS((buf_T *buf, int id)); int buf_findsign_id __ARGS((buf_T *buf, linenr_T lnum)); *** ../vim-7.2.166/src/proto/edit.pro 2008-01-16 20:03:13.000000000 +0100 --- src/proto/edit.pro 2009-05-05 20:51:56.000000000 +0200 *************** *** 8,14 **** void backspace_until_column __ARGS((int col)); int vim_is_ctrl_x_key __ARGS((int c)); int ins_compl_add_infercase __ARGS((char_u *str, int len, int icase, char_u *fname, int dir, int flags)); ! void set_completion __ARGS((int startcol, list_T *list)); void ins_compl_show_pum __ARGS((void)); char_u *find_word_start __ARGS((char_u *ptr)); char_u *find_word_end __ARGS((char_u *ptr)); --- 8,14 ---- void backspace_until_column __ARGS((int col)); int vim_is_ctrl_x_key __ARGS((int c)); int ins_compl_add_infercase __ARGS((char_u *str, int len, int icase, char_u *fname, int dir, int flags)); ! void set_completion __ARGS((colnr_T startcol, list_T *list)); void ins_compl_show_pum __ARGS((void)); char_u *find_word_start __ARGS((char_u *ptr)); char_u *find_word_end __ARGS((char_u *ptr)); *** ../vim-7.2.166/src/screen.c 2009-03-18 19:07:09.000000000 +0100 --- src/screen.c 2009-05-05 17:42:45.000000000 +0200 *************** *** 9481,9493 **** win_T *wp; int always; { ! char_u buffer[70]; int row; int fillchar; int attr; int empty_line = FALSE; colnr_T virtcol; int i; int o; #ifdef FEAT_VERTSPLIT int this_ru_col; --- 9481,9495 ---- win_T *wp; int always; { ! #define RULER_BUF_LEN 70 ! char_u buffer[RULER_BUF_LEN]; int row; int fillchar; int attr; int empty_line = FALSE; colnr_T virtcol; int i; + size_t len; int o; #ifdef FEAT_VERTSPLIT int this_ru_col; *************** *** 9602,9612 **** * Some sprintfs return the length, some return a pointer. * To avoid portability problems we use strlen() here. */ ! sprintf((char *)buffer, "%ld,", (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) ? 0L : (long)(wp->w_cursor.lnum)); ! col_print(buffer + STRLEN(buffer), empty_line ? 0 : (int)wp->w_cursor.col + 1, (int)virtcol + 1); --- 9604,9615 ---- * Some sprintfs return the length, some return a pointer. * To avoid portability problems we use strlen() here. */ ! vim_snprintf((char *)buffer, RULER_BUF_LEN, "%ld,", (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) ? 0L : (long)(wp->w_cursor.lnum)); ! len = STRLEN(buffer); ! col_print(buffer + len, RULER_BUF_LEN - len, empty_line ? 0 : (int)wp->w_cursor.col + 1, (int)virtcol + 1); *************** *** 9616,9622 **** * screen up on some terminals). */ i = (int)STRLEN(buffer); ! get_rel_pos(wp, buffer + i + 1); o = i + vim_strsize(buffer + i + 1); #ifdef FEAT_WINDOWS if (wp->w_status_height == 0) /* can't use last char of screen */ --- 9619,9625 ---- * screen up on some terminals). */ i = (int)STRLEN(buffer); ! get_rel_pos(wp, buffer + i + 1, RULER_BUF_LEN - i - 1); o = i + vim_strsize(buffer + i + 1); #ifdef FEAT_WINDOWS if (wp->w_status_height == 0) /* can't use last char of screen */ *************** *** 9643,9649 **** buffer[i++] = fillchar; ++o; } ! get_rel_pos(wp, buffer + i); } /* Truncate at window boundary. */ #ifdef FEAT_MBYTE --- 9646,9652 ---- buffer[i++] = fillchar; ++o; } ! get_rel_pos(wp, buffer + i, RULER_BUF_LEN - i); } /* Truncate at window boundary. */ #ifdef FEAT_MBYTE *** ../vim-7.2.166/src/structs.h 2008-11-15 16:05:30.000000000 +0100 --- src/structs.h 2009-05-05 18:20:36.000000000 +0200 *************** *** 33,41 **** } pos_T; #ifdef FEAT_VIRTUALEDIT ! # define INIT_POS_T {0, 0, 0} #else ! # define INIT_POS_T {0, 0} #endif /* --- 33,41 ---- } pos_T; #ifdef FEAT_VIRTUALEDIT ! # define INIT_POS_T(l, c, ca) {l, c, ca} #else ! # define INIT_POS_T(l, c, ca) {l, c} #endif /* *************** *** 1166,1172 **** char_u *b_fname; /* current file name */ #ifdef UNIX ! int b_dev; /* device number (-1 if not set) */ ino_t b_ino; /* inode number */ #endif #ifdef FEAT_CW_EDITOR --- 1166,1172 ---- char_u *b_fname; /* current file name */ #ifdef UNIX ! dev_t b_dev; /* device number (-1 if not set) */ ino_t b_ino; /* inode number */ #endif #ifdef FEAT_CW_EDITOR *************** *** 1645,1651 **** --- 1645,1655 ---- #endif #ifdef FEAT_DIFF diff_T *tp_first_diff; + # ifdef S_SPLINT_S /* splint doesn't understand the array of pointers */ + buf_T **tp_diffbuf; + # else buf_T *(tp_diffbuf[DB_COUNT]); + # endif int tp_diff_invalid; /* list of diffs is outdated */ #endif frame_T *tp_snapshot; /* window layout snapshot */ *** ../vim-7.2.166/src/version.c 2009-04-29 18:44:38.000000000 +0200 --- src/version.c 2009-05-13 12:06:36.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 167, /**/ -- Snoring is prohibited unless all bedroom windows are closed and securely locked. [real standing law in Massachusetts, United States of America] /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.168 --- To: vim-dev at vim.org Subject: Patch 7.2.168 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.168 Problem: When no ctags program can be found, "make tags" attempts to execute the first C file. Solution: Default to "ctags" when no ctags program can be found. Files: src/configure.in, src/auto/configure *** ../vim-7.2.167/src/configure.in 2009-04-22 17:50:53.000000000 +0200 --- src/configure.in 2009-05-05 17:46:45.000000000 +0200 *************** *** 2968,2974 **** dnl Link with xpg4, it is said to make Korean locale working AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,) ! dnl Check how we can run ctags dnl --version for Exuberant ctags (preferred) dnl Add --fields=+S to get function signatures for omni completion. dnl -t for typedefs (many ctags have this) --- 2968,2974 ---- dnl Link with xpg4, it is said to make Korean locale working AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,) ! dnl Check how we can run ctags. Default to "ctags" when nothing works. dnl --version for Exuberant ctags (preferred) dnl Add --fields=+S to get function signatures for omni completion. dnl -t for typedefs (many ctags have this) *************** *** 2980,2985 **** --- 2980,2986 ---- if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then TAGPRG="ctags -I INIT+ --fields=+S" else + TAGPRG="ctags" (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags" (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c" (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags" *** ../vim-7.2.167/src/auto/configure 2009-04-22 17:50:53.000000000 +0200 --- src/auto/configure 2009-05-13 14:38:10.000000000 +0200 *************** *** 15707,15712 **** --- 15723,15729 ---- if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then TAGPRG="ctags -I INIT+ --fields=+S" else + TAGPRG="ctags" (eval etags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags" (eval etags -c /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags -c" (eval ctags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="ctags" *** ../vim-7.2.167/src/version.c 2009-05-13 12:46:36.000000000 +0200 --- src/version.c 2009-05-13 14:46:35.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 168, /**/ -- Zen Microsystems: we're the om in .commmmmmmmm /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.169 --- To: vim-dev at vim.org Subject: Patch 7.2.169 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.169 Problem: Splint complains about a lot of things. Solution: Add type casts, #ifdefs and other changes to avoid warnings. Change colnr_T from unsigned to int. Avoids mistakes with subtracting columns. Files: src/cleanlint.vim, src/diff.c, src/edit.c, src/ex_cmds.c, src/ex_cmds2.c, src/ex_docmd.c, src/proto/ex_cmds.pro, src/proto/spell.pro, src/quickfix.c, src/spell.c, src/structs.h, src/term.h, src/vim.h *** ../vim-7.2.168/src/cleanlint.vim 2009-05-13 12:46:36.000000000 +0200 --- src/cleanlint.vim 2009-05-13 18:03:11.000000000 +0200 *************** *** 1,27 **** " Vim tool: Filter output of splint " " Maintainer: Bram Moolenaar ! " Last Change: 2009 May 05 " Usage: redirect output of "make lint" to a file, edit that file with Vim and " :call CleanLint() " This deletes irrelevant messages. What remains might be valid warnings. fun! CleanLint() - g/^ Types are incompatible/lockmarks d g/Assignment of dev_t to __dev_t:/lockmarks d g/Assignment of __dev_t to dev_t:/lockmarks d g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d ! g/Operands of == have incompatible types (unsigned int, int): /lockmarks d g/Assignment of char to char_u: /lockmarks d g/Assignment of unsigned int to int: /lockmarks d ! g/Assignment of colnr_T to int: /lockmarks d g/Assignment of int to char_u: /lockmarks d g/Function .* expects arg . to be wint_t gets int: /lockmarks d ! g/^digraph.c.*digraphdefault.*is type char, expects char_u:/lockmarks d g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d endfun --- 1,32 ---- " Vim tool: Filter output of splint " " Maintainer: Bram Moolenaar ! " Last Change: 2009 May 13 " Usage: redirect output of "make lint" to a file, edit that file with Vim and " :call CleanLint() " This deletes irrelevant messages. What remains might be valid warnings. fun! CleanLint() g/Assignment of dev_t to __dev_t:/lockmarks d g/Assignment of __dev_t to dev_t:/lockmarks d g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d ! g/Operands of == have incompatible types (char_u, int): /lockmarks d g/Assignment of char to char_u: /lockmarks d g/Assignment of unsigned int to int: /lockmarks d ! g/Assignment of int to unsigned int: /lockmarks d ! g/Assignment of unsigned int to long int: /lockmarks d g/Assignment of int to char_u: /lockmarks d g/Function .* expects arg . to be wint_t gets int: /lockmarks d ! g/Function .* expects arg . to be size_t gets int: /lockmarks d ! g/Initial value of .* is type char, expects char_u: /lockmarks d ! g/^ex_cmds.h:.* Function types are inconsistent. Parameter 1 is implicitly temp, but unqualified in assigned function:/lockmarks d ! g/^ex_docmd.c:.* nospec_str/lockmarks d g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d + g/^ Types are incompatible/lockmarks d g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d + g+ A variable is declared but never used. Use /. at unused@./ in front of declaration to suppress message.+lockmarks d endfun *** ../vim-7.2.168/src/diff.c 2009-03-11 12:45:44.000000000 +0100 --- src/diff.c 2009-05-13 16:16:11.000000000 +0200 *************** *** 827,832 **** --- 827,833 ---- char_u *tmp_diff; { char_u *cmd; + size_t len; #ifdef FEAT_EVAL if (*p_dex != NUL) *************** *** 835,842 **** else #endif { ! cmd = alloc((unsigned)(STRLEN(tmp_orig) + STRLEN(tmp_new) ! + STRLEN(tmp_diff) + STRLEN(p_srr) + 27)); if (cmd != NULL) { /* We don't want $DIFF_OPTIONS to get in the way. */ --- 836,844 ---- else #endif { ! len = STRLEN(tmp_orig) + STRLEN(tmp_new) ! + STRLEN(tmp_diff) + STRLEN(p_srr) + 27; ! cmd = alloc((unsigned)len); if (cmd != NULL) { /* We don't want $DIFF_OPTIONS to get in the way. */ *************** *** 846,852 **** /* Build the diff command and execute it. Always use -a, binary * differences are of no use. Ignore errors, diff returns * non-zero when differences have been found. */ ! sprintf((char *)cmd, "diff %s%s%s%s%s %s", diff_a_works == FALSE ? "" : "-a ", #if defined(MSWIN) || defined(MSDOS) diff_bin_works == TRUE ? "--binary " : "", --- 848,854 ---- /* Build the diff command and execute it. Always use -a, binary * differences are of no use. Ignore errors, diff returns * non-zero when differences have been found. */ ! vim_snprintf((char *)cmd, len, "diff %s%s%s%s%s %s", diff_a_works == FALSE ? "" : "-a ", #if defined(MSWIN) || defined(MSDOS) diff_bin_works == TRUE ? "--binary " : "", *************** *** 856,862 **** (diff_flags & DIFF_IWHITE) ? "-b " : "", (diff_flags & DIFF_ICASE) ? "-i " : "", tmp_orig, tmp_new); ! append_redir(cmd, p_srr, tmp_diff); #ifdef FEAT_AUTOCMD block_autocmds(); /* Avoid ShellCmdPost stuff */ #endif --- 858,864 ---- (diff_flags & DIFF_IWHITE) ? "-b " : "", (diff_flags & DIFF_ICASE) ? "-i " : "", tmp_orig, tmp_new); ! append_redir(cmd, (int)len, p_srr, tmp_diff); #ifdef FEAT_AUTOCMD block_autocmds(); /* Avoid ShellCmdPost stuff */ #endif *************** *** 881,886 **** --- 883,889 ---- char_u *tmp_orig; /* name of original temp file */ char_u *tmp_new; /* name of patched temp file */ char_u *buf = NULL; + size_t buflen; win_T *old_curwin = curwin; char_u *newname = NULL; /* name of patched file buffer */ #ifdef UNIX *************** *** 920,930 **** /* Get the absolute path of the patchfile, changing directory below. */ fullname = FullName_save(eap->arg, FALSE); #endif ! buf = alloc((unsigned)(STRLEN(tmp_orig) + ( # ifdef UNIX fullname != NULL ? STRLEN(fullname) : # endif ! STRLEN(eap->arg)) + STRLEN(tmp_new) + 16)); if (buf == NULL) goto theend; --- 923,934 ---- /* Get the absolute path of the patchfile, changing directory below. */ fullname = FullName_save(eap->arg, FALSE); #endif ! buflen = STRLEN(tmp_orig) + ( # ifdef UNIX fullname != NULL ? STRLEN(fullname) : # endif ! STRLEN(eap->arg)) + STRLEN(tmp_new) + 16; ! buf = alloc((unsigned)buflen); if (buf == NULL) goto theend; *************** *** 961,967 **** { /* Build the patch command and execute it. Ignore errors. Switch to * cooked mode to allow the user to respond to prompts. */ ! sprintf((char *)buf, "patch -o %s %s < \"%s\"", tmp_new, tmp_orig, # ifdef UNIX fullname != NULL ? fullname : # endif --- 965,972 ---- { /* Build the patch command and execute it. Ignore errors. Switch to * cooked mode to allow the user to respond to prompts. */ ! vim_snprintf((char *)buf, buflen, "patch -o %s %s < \"%s\"", ! tmp_new, tmp_orig, # ifdef UNIX fullname != NULL ? fullname : # endif *** ../vim-7.2.168/src/edit.c 2009-05-13 12:46:36.000000000 +0200 --- src/edit.c 2009-05-13 18:29:21.000000000 +0200 *************** *** 169,175 **** static int ins_compl_key2count __ARGS((int c)); static int ins_compl_use_match __ARGS((int c)); static int ins_complete __ARGS((int c)); ! static int quote_meta __ARGS((char_u *dest, char_u *str, int len)); #endif /* FEAT_INS_EXPAND */ #define BACKSPACE_CHAR 1 --- 169,175 ---- static int ins_compl_key2count __ARGS((int c)); static int ins_compl_use_match __ARGS((int c)); static int ins_complete __ARGS((int c)); ! static unsigned quote_meta __ARGS((char_u *dest, char_u *str, int len)); #endif /* FEAT_INS_EXPAND */ #define BACKSPACE_CHAR 1 *************** *** 757,763 **** * there is nothing to add, CTRL-L works like CTRL-P then. */ if (c == Ctrl_L && (ctrl_x_mode != CTRL_X_WHOLE_LINE ! || STRLEN(compl_shown_match->cp_str) > curwin->w_cursor.col - compl_col)) { ins_compl_addfrommatch(); --- 757,763 ---- * there is nothing to add, CTRL-L works like CTRL-P then. */ if (c == Ctrl_L && (ctrl_x_mode != CTRL_X_WHOLE_LINE ! || (int)STRLEN(compl_shown_match->cp_str) > curwin->w_cursor.col - compl_col)) { ins_compl_addfrommatch(); *************** *** 3837,3843 **** --- 3837,3847 ---- char_u *word; int icase = FALSE; int adup = FALSE; + #ifdef S_SPLINT_S /* splint doesn't parse array of pointers correctly */ + char_u **cptext; + #else char_u *(cptext[CPT_COUNT]); + #endif if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL) { *************** *** 3994,4000 **** else if (*e_cpt == ']' || *e_cpt == 't') { type = CTRL_X_TAGS; ! sprintf((char*)IObuff, _("Scanning tags.")); (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else --- 3998,4004 ---- else if (*e_cpt == ']' || *e_cpt == 't') { type = CTRL_X_TAGS; ! vim_snprintf((char *)IObuff, IOSIZE, _("Scanning tags.")); (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); } else *************** *** 4093,4099 **** case CTRL_X_SPELL: #ifdef FEAT_SPELL num_matches = expand_spelling(first_match_pos.lnum, ! first_match_pos.col, compl_pattern, &matches); if (num_matches > 0) ins_compl_add_matches(num_matches, matches, p_ic); #endif --- 4097,4103 ---- case CTRL_X_SPELL: #ifdef FEAT_SPELL num_matches = expand_spelling(first_match_pos.lnum, ! compl_pattern, &matches); if (num_matches > 0) ins_compl_add_matches(num_matches, matches, p_ic); #endif *************** *** 4803,4812 **** { char_u *prefix = (char_u *)"\\<"; ! /* we need 3 extra chars, 1 for the NUL and ! * 2 >= strlen(prefix) -- Acevedo */ compl_pattern = alloc(quote_meta(NULL, line + compl_col, ! compl_length) + 3); if (compl_pattern == NULL) return FAIL; if (!vim_iswordp(line + compl_col) --- 4807,4815 ---- { char_u *prefix = (char_u *)"\\<"; ! /* we need up to 2 extra chars for the prefix */ compl_pattern = alloc(quote_meta(NULL, line + compl_col, ! compl_length) + 2); if (compl_pattern == NULL) return FAIL; if (!vim_iswordp(line + compl_col) *************** *** 4881,4887 **** else { compl_pattern = alloc(quote_meta(NULL, line + compl_col, ! compl_length) + 3); if (compl_pattern == NULL) return FAIL; STRCPY((char *)compl_pattern, "\\<"); --- 4884,4890 ---- else { compl_pattern = alloc(quote_meta(NULL, line + compl_col, ! compl_length) + 2); if (compl_pattern == NULL) return FAIL; STRCPY((char *)compl_pattern, "\\<"); *************** *** 4963,4969 **** if (col < 0) col = curs_col; compl_col = col; ! if ((colnr_T)compl_col > curs_col) compl_col = curs_col; /* Setup variables for completion. Need to obtain "line" again, --- 4966,4972 ---- if (col < 0) col = curs_col; compl_col = col; ! if (compl_col > curs_col) compl_col = curs_col; /* Setup variables for completion. Need to obtain "line" again, *************** *** 5236,5250 **** * a backslash) the metachars, and dest would be NUL terminated. * Returns the length (needed) of dest */ ! static int quote_meta(dest, src, len) char_u *dest; char_u *src; int len; { ! int m; ! for (m = len; --len >= 0; src++) { switch (*src) { --- 5239,5253 ---- * a backslash) the metachars, and dest would be NUL terminated. * Returns the length (needed) of dest */ ! static unsigned quote_meta(dest, src, len) char_u *dest; char_u *src; int len; { ! unsigned m = (unsigned)len + 1; /* one extra for the NUL */ ! for ( ; --len >= 0; src++) { switch (*src) { *************** *** 6073,6079 **** * in 'formatoptions' and there is a single character before the cursor. * Otherwise the line would be broken and when typing another non-white * next they are not joined back together. */ ! wasatend = (pos.col == STRLEN(old)); if (*old != NUL && !trailblank && wasatend) { dec_cursor(); --- 6076,6082 ---- * in 'formatoptions' and there is a single character before the cursor. * Otherwise the line would be broken and when typing another non-white * next they are not joined back together. */ ! wasatend = (pos.col == (colnr_T)STRLEN(old)); if (*old != NUL && !trailblank && wasatend) { dec_cursor(); *************** *** 6250,6256 **** * three digits. */ if (VIM_ISDIGIT(c)) { ! sprintf((char *)buf, "%03d", c); AppendToRedobuff(buf); } else --- 6253,6259 ---- * three digits. */ if (VIM_ISDIGIT(c)) { ! vim_snprintf((char *)buf, sizeof(buf), "%03d", c); AppendToRedobuff(buf); } else *************** *** 6453,6462 **** * deleted characters. */ if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum) { ! cc = (int)STRLEN(ml_get_curline()); ! if (VIsual.col > (colnr_T)cc) { ! VIsual.col = cc; # ifdef FEAT_VIRTUALEDIT VIsual.coladd = 0; # endif --- 6457,6467 ---- * deleted characters. */ if (VIsual_active && VIsual.lnum == curwin->w_cursor.lnum) { ! int len = (int)STRLEN(ml_get_curline()); ! ! if (VIsual.col > len) { ! VIsual.col = len; # ifdef FEAT_VIRTUALEDIT VIsual.coladd = 0; # endif *************** *** 8315,8320 **** --- 8320,8326 ---- linenr_T lnum; int cc; int temp = 0; /* init for GCC */ + colnr_T save_col; colnr_T mincol; int did_backspace = FALSE; int in_indent; *************** *** 8472,8484 **** */ while (cc > 0) { ! temp = curwin->w_cursor.col; #ifdef FEAT_MBYTE mb_replace_pop_ins(cc); #else ins_char(cc); #endif ! curwin->w_cursor.col = temp; cc = replace_pop(); } /* restore the characters that NL replaced */ --- 8478,8490 ---- */ while (cc > 0) { ! save_col = curwin->w_cursor.col; #ifdef FEAT_MBYTE mb_replace_pop_ins(cc); #else ins_char(cc); #endif ! curwin->w_cursor.col = save_col; cc = replace_pop(); } /* restore the characters that NL replaced */ *************** *** 8510,8520 **** #endif ) { ! temp = curwin->w_cursor.col; beginline(BL_WHITE); if (curwin->w_cursor.col < (colnr_T)temp) mincol = curwin->w_cursor.col; ! curwin->w_cursor.col = temp; } /* --- 8516,8526 ---- #endif ) { ! save_col = curwin->w_cursor.col; beginline(BL_WHITE); if (curwin->w_cursor.col < (colnr_T)temp) mincol = curwin->w_cursor.col; ! curwin->w_cursor.col = save_col; } /* *** ../vim-7.2.168/src/ex_cmds.c 2009-05-13 12:46:36.000000000 +0200 --- src/ex_cmds.c 2009-05-13 18:24:18.000000000 +0200 *************** *** 87,99 **** )) { transchar_nonprint(buf3, c); ! sprintf(buf1, " <%s>", (char *)buf3); } else buf1[0] = NUL; #ifndef EBCDIC if (c >= 0x80) ! sprintf(buf2, " ", transchar(c & 0x7f)); else #endif buf2[0] = NUL; --- 87,100 ---- )) { transchar_nonprint(buf3, c); ! vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); } else buf1[0] = NUL; #ifndef EBCDIC if (c >= 0x80) ! vim_snprintf(buf2, sizeof(buf2), " ", ! (char *)transchar(c & 0x7f)); else #endif buf2[0] = NUL; *************** *** 358,364 **** linenr_T lnum; long maxlen = 0; sorti_T *nrs; ! size_t count = eap->line2 - eap->line1 + 1; size_t i; char_u *p; char_u *s; --- 359,365 ---- linenr_T lnum; long maxlen = 0; sorti_T *nrs; ! size_t count = (size_t)(eap->line2 - eap->line1 + 1); size_t i; char_u *p; char_u *s; *************** *** 957,963 **** } len += (int)STRLEN(prevcmd); } ! if ((t = alloc(len)) == NULL) { vim_free(newcmd); return; --- 958,964 ---- } len += (int)STRLEN(prevcmd); } ! if ((t = alloc((unsigned)len)) == NULL) { vim_free(newcmd); return; *************** *** 1548,1554 **** * redirecting input and/or output. */ if (itmp != NULL || otmp != NULL) ! sprintf((char *)buf, "(%s)", (char *)cmd); else STRCPY(buf, cmd); if (itmp != NULL) --- 1549,1555 ---- * redirecting input and/or output. */ if (itmp != NULL || otmp != NULL) ! vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); else STRCPY(buf, cmd); if (itmp != NULL) *************** *** 1597,1633 **** } #endif if (otmp != NULL) ! append_redir(buf, p_srr, otmp); return buf; } /* ! * Append output redirection for file "fname" to the end of string buffer "buf" * Works with the 'shellredir' and 'shellpipe' options. * The caller should make sure that there is enough room: * STRLEN(opt) + STRLEN(fname) + 3 */ void ! append_redir(buf, opt, fname) char_u *buf; char_u *opt; char_u *fname; { char_u *p; ! buf += STRLEN(buf); /* find "%s", skipping "%%" */ for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) if (p[1] == 's') break; if (p != NULL) { ! *buf = ' '; /* not really needed? Not with sh, ksh or bash */ ! sprintf((char *)buf + 1, (char *)opt, (char *)fname); } else ! sprintf((char *)buf, #ifdef FEAT_QUICKFIX # ifndef RISCOS opt != p_sp ? " %s%s" : --- 1598,1638 ---- } #endif if (otmp != NULL) ! append_redir(buf, (int)len, p_srr, otmp); return buf; } /* ! * Append output redirection for file "fname" to the end of string buffer ! * "buf[buflen]" * Works with the 'shellredir' and 'shellpipe' options. * The caller should make sure that there is enough room: * STRLEN(opt) + STRLEN(fname) + 3 */ void ! append_redir(buf, buflen, opt, fname) char_u *buf; + int buflen; char_u *opt; char_u *fname; { char_u *p; + char_u *end; ! end = buf + STRLEN(buf); /* find "%s", skipping "%%" */ for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) if (p[1] == 's') break; if (p != NULL) { ! *end = ' '; /* not really needed? Not with sh, ksh or bash */ ! vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), ! (char *)opt, (char *)fname); } else ! vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), #ifdef FEAT_QUICKFIX # ifndef RISCOS opt != p_sp ? " %s%s" : *************** *** 2390,2396 **** if (curwin->w_p_nu || use_number) { ! sprintf((char *)numbuf, "%*ld ", number_width(curwin), (long)lnum); msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ } msg_prt_line(ml_get(lnum), list); --- 2395,2402 ---- if (curwin->w_p_nu || use_number) { ! vim_snprintf((char *)numbuf, sizeof(numbuf), ! "%*ld ", number_width(curwin), (long)lnum); msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ } msg_prt_line(ml_get(lnum), list); *************** *** 4486,4492 **** char_u *p1; int did_sub = FALSE; int lastone; ! unsigned len, needed_len; long nmatch_tl = 0; /* nr of lines matched below lnum */ int do_again; /* do it again after joining lines */ int skip_match = FALSE; --- 4492,4498 ---- char_u *p1; int did_sub = FALSE; int lastone; ! int len, copy_len, needed_len; long nmatch_tl = 0; /* nr of lines matched below lnum */ int do_again; /* do it again after joining lines */ int skip_match = FALSE; *************** *** 4631,4636 **** --- 4637,4644 ---- if (do_ask) { + int typed; + /* change State to CONFIRM, so that the mouse works * properly */ save_State = State; *************** *** 4669,4675 **** resp = getexmodeline('?', NULL, 0); if (resp != NULL) { ! i = *resp; vim_free(resp); } } --- 4677,4683 ---- resp = getexmodeline('?', NULL, 0); if (resp != NULL) { ! typed = *resp; vim_free(resp); } } *************** *** 4721,4727 **** #endif ++no_mapping; /* don't map this key */ ++allow_keys; /* allow special keys */ ! i = plain_vgetc(); --allow_keys; --no_mapping; --- 4729,4735 ---- #endif ++no_mapping; /* don't map this key */ ++allow_keys; /* allow special keys */ ! typed = plain_vgetc(); --allow_keys; --no_mapping; *************** *** 4732,4766 **** } need_wait_return = FALSE; /* no hit-return prompt */ ! if (i == 'q' || i == ESC || i == Ctrl_C #ifdef UNIX ! || i == intr_char #endif ) { got_quit = TRUE; break; } ! if (i == 'n') break; ! if (i == 'y') break; ! if (i == 'l') { /* last: replace and then stop */ do_all = FALSE; line2 = lnum; break; } ! if (i == 'a') { do_ask = FALSE; break; } #ifdef FEAT_INS_EXPAND ! if (i == Ctrl_E) scrollup_clamp(); ! else if (i == Ctrl_Y) scrolldown_clamp(); #endif } --- 4740,4774 ---- } need_wait_return = FALSE; /* no hit-return prompt */ ! if (typed == 'q' || typed == ESC || typed == Ctrl_C #ifdef UNIX ! || typed == intr_char #endif ) { got_quit = TRUE; break; } ! if (typed == 'n') break; ! if (typed == 'y') break; ! if (typed == 'l') { /* last: replace and then stop */ do_all = FALSE; line2 = lnum; break; } ! if (typed == 'a') { do_ask = FALSE; break; } #ifdef FEAT_INS_EXPAND ! if (typed == Ctrl_E) scrollup_clamp(); ! else if (typed == Ctrl_Y) scrolldown_clamp(); #endif } *************** *** 4771,4777 **** if (vim_strchr(p_cpo, CPO_UNDO) != NULL) --no_u_sync; ! if (i == 'n') { /* For a multi-line match, put matchcol at the NUL at * the end of the line and set nmatch to one, so that --- 4779,4785 ---- if (vim_strchr(p_cpo, CPO_UNDO) != NULL) --no_u_sync; ! if (typed == 'n') { /* For a multi-line match, put matchcol at the NUL at * the end of the line and set nmatch to one, so that *************** *** 4822,4830 **** p1 = ml_get(sub_firstlnum + nmatch - 1); nmatch_tl += nmatch - 1; } ! i = regmatch.startpos[0].col - copycol; ! needed_len = i + ((unsigned)STRLEN(p1) - regmatch.endpos[0].col) ! + sublen + 1; if (new_start == NULL) { /* --- 4830,4838 ---- p1 = ml_get(sub_firstlnum + nmatch - 1); nmatch_tl += nmatch - 1; } ! copy_len = regmatch.startpos[0].col - copycol; ! needed_len = copy_len + ((unsigned)STRLEN(p1) ! - regmatch.endpos[0].col) + sublen + 1; if (new_start == NULL) { /* *************** *** 4847,4853 **** */ len = (unsigned)STRLEN(new_start); needed_len += len; ! if (needed_len > new_start_len) { new_start_len = needed_len + 50; if ((p1 = alloc_check(new_start_len)) == NULL) --- 4855,4861 ---- */ len = (unsigned)STRLEN(new_start); needed_len += len; ! if (needed_len > (int)new_start_len) { new_start_len = needed_len + 50; if ((p1 = alloc_check(new_start_len)) == NULL) *************** *** 4865,4872 **** /* * copy the text up to the part that matched */ ! mch_memmove(new_end, sub_firstline + copycol, (size_t)i); ! new_end += i; (void)vim_regsub_multi(®match, sub_firstlnum - regmatch.startpos[0].lnum, --- 4873,4880 ---- /* * copy the text up to the part that matched */ ! mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); ! new_end += copy_len; (void)vim_regsub_multi(®match, sub_firstlnum - regmatch.startpos[0].lnum, *************** *** 5768,5773 **** --- 5776,5785 ---- { char_u *s, *d; int i; + #ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ + static char **mtable; + static char **rtable; + #else static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", "/*", "/\\*", "\"*", "**", "/\\(\\)", *************** *** 5782,5787 **** --- 5794,5800 ---- "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", "\\[count]", "\\[quotex]", "\\[range]", "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; + #endif int flags; d = IObuff; /* assume IObuff is long enough! */ *************** *** 5790,5796 **** * Recognize a few exceptions to the rule. Some strings that contain '*' * with "star". Otherwise '*' is recognized as a wildcard. */ ! for (i = sizeof(mtable) / sizeof(char *); --i >= 0; ) if (STRCMP(arg, mtable[i]) == 0) { STRCPY(d, rtable[i]); --- 5803,5809 ---- * Recognize a few exceptions to the rule. Some strings that contain '*' * with "star". Otherwise '*' is recognized as a wildcard. */ ! for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) if (STRCMP(arg, mtable[i]) == 0) { STRCPY(d, rtable[i]); *** ../vim-7.2.168/src/ex_cmds2.c 2009-02-05 20:47:14.000000000 +0100 --- src/ex_cmds2.c 2009-05-13 16:22:33.000000000 +0200 *************** *** 3373,3379 **** p = skipwhite(sp->nextline); if (*p != '\\') break; ! s = alloc((int)(STRLEN(line) + STRLEN(p))); if (s == NULL) /* out of memory */ break; STRCPY(s, line); --- 3373,3379 ---- p = skipwhite(sp->nextline); if (*p != '\\') break; ! s = alloc((unsigned)(STRLEN(line) + STRLEN(p))); if (s == NULL) /* out of memory */ break; STRCPY(s, line); *** ../vim-7.2.168/src/ex_docmd.c 2009-04-29 18:44:38.000000000 +0200 --- src/ex_docmd.c 2009-05-13 17:56:44.000000000 +0200 *************** *** 2737,2743 **** int i; for (i = 0; cmd[i] != NUL; ++i) ! if (cmd[i] != (*pp)[i]) break; if (i >= len && !isalpha((*pp)[i])) { --- 2737,2743 ---- int i; for (i = 0; cmd[i] != NUL; ++i) ! if (((char_u *)cmd)[i] != (*pp)[i]) break; if (i >= len && !isalpha((*pp)[i])) { *************** *** 2803,2809 **** /* Check for ":dl", ":dell", etc. to ":deletel": that's * :delete with the 'l' flag. Same for 'p'. */ for (i = 0; i < len; ++i) ! if (eap->cmd[i] != "delete"[i]) break; if (i == len - 1) { --- 2803,2809 ---- /* Check for ":dl", ":dell", etc. to ":deletel": that's * :delete with the 'l' flag. Same for 'p'. */ for (i = 0; i < len; ++i) ! if (eap->cmd[i] != ((char_u *)"delete")[i]) break; if (i == len - 1) { *************** *** 3823,3829 **** char_u *cmd; int *ctx; /* pointer to xp_context or NULL */ { ! int delim; while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL) { --- 3823,3829 ---- char_u *cmd; int *ctx; /* pointer to xp_context or NULL */ { ! unsigned delim; while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL) { *************** *** 9417,9423 **** { int len; int i; ! static char *(spec_str[]) = { "%", #define SPEC_PERC 0 "#", --- 9417,9429 ---- { int len; int i; ! #ifdef S_SPLINT_S /* splint can't handle array of pointers */ ! static char **spec_str; ! static char *(nospec_str[]) ! #else ! static char *(spec_str[]) ! #endif ! = { "%", #define SPEC_PERC 0 "#", *************** *** 9443,9451 **** # define SPEC_CLIENT 9 #endif }; - #define SPEC_COUNT (sizeof(spec_str) / sizeof(char *)) ! for (i = 0; i < SPEC_COUNT; ++i) { len = (int)STRLEN(spec_str[i]); if (STRNCMP(src, spec_str[i], len) == 0) --- 9449,9456 ---- # define SPEC_CLIENT 9 #endif }; ! for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i) { len = (int)STRLEN(spec_str[i]); if (STRNCMP(src, spec_str[i], len) == 0) *************** *** 9796,9802 **** } /* allocate memory */ ! retval = alloc(len + 1); if (retval == NULL) break; } --- 9801,9807 ---- } /* allocate memory */ ! retval = alloc((unsigned)len + 1); if (retval == NULL) break; } *** ../vim-7.2.168/src/proto/ex_cmds.pro 2009-04-29 18:44:38.000000000 +0200 --- src/proto/ex_cmds.pro 2009-05-13 15:53:39.000000000 +0200 *************** *** 9,15 **** void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out)); void do_shell __ARGS((char_u *cmd, int flags)); char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp)); ! void append_redir __ARGS((char_u *buf, char_u *opt, char_u *fname)); int viminfo_error __ARGS((char *errnum, char *message, char_u *line)); int read_viminfo __ARGS((char_u *file, int flags)); void write_viminfo __ARGS((char_u *file, int forceit)); --- 9,15 ---- void do_bang __ARGS((int addr_count, exarg_T *eap, int forceit, int do_in, int do_out)); void do_shell __ARGS((char_u *cmd, int flags)); char_u *make_filter_cmd __ARGS((char_u *cmd, char_u *itmp, char_u *otmp)); ! void append_redir __ARGS((char_u *buf, int buflen, char_u *opt, char_u *fname)); int viminfo_error __ARGS((char *errnum, char *message, char_u *line)); int read_viminfo __ARGS((char_u *file, int flags)); void write_viminfo __ARGS((char_u *file, int forceit)); *** ../vim-7.2.168/src/proto/spell.pro 2007-05-05 19:19:19.000000000 +0200 --- src/proto/spell.pro 2009-05-13 16:43:13.000000000 +0200 *************** *** 22,26 **** char_u *spell_to_word_end __ARGS((char_u *start, buf_T *buf)); int spell_word_start __ARGS((int startcol)); void spell_expand_check_cap __ARGS((colnr_T col)); ! int expand_spelling __ARGS((linenr_T lnum, int col, char_u *pat, char_u ***matchp)); /* vim: set ft=c : */ --- 22,26 ---- char_u *spell_to_word_end __ARGS((char_u *start, buf_T *buf)); int spell_word_start __ARGS((int startcol)); void spell_expand_check_cap __ARGS((colnr_T col)); ! int expand_spelling __ARGS((linenr_T lnum, char_u *pat, char_u ***matchp)); /* vim: set ft=c : */ *** ../vim-7.2.168/src/quickfix.c 2009-04-29 11:49:57.000000000 +0200 --- src/quickfix.c 2009-05-13 15:53:18.000000000 +0200 *************** *** 2774,2780 **** sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg, (char *)p_shq); if (*p_sp != NUL) ! append_redir(cmd, p_sp, fname); /* * Output a newline if there's something else than the :make command that * was typed (in which case the cursor is in column 0). --- 2774,2780 ---- sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg, (char *)p_shq); if (*p_sp != NUL) ! append_redir(cmd, len, p_sp, fname); /* * Output a newline if there's something else than the :make command that * was typed (in which case the cursor is in column 0). *** ../vim-7.2.168/src/spell.c 2009-02-11 17:57:43.000000000 +0100 --- src/spell.c 2009-05-13 16:31:15.000000000 +0200 *************** *** 16151,16161 **** * Returns the number of matches. The matches are in "matchp[]", array of * allocated strings. */ - /*ARGSUSED*/ int ! expand_spelling(lnum, col, pat, matchp) linenr_T lnum; - int col; char_u *pat; char_u ***matchp; { --- 16151,16159 ---- * Returns the number of matches. The matches are in "matchp[]", array of * allocated strings. */ int ! expand_spelling(lnum, pat, matchp) linenr_T lnum; char_u *pat; char_u ***matchp; { *** ../vim-7.2.168/src/structs.h 2009-05-13 12:46:36.000000000 +0200 --- src/structs.h 2009-05-13 16:45:51.000000000 +0200 *************** *** 16,22 **** */ #if defined(SASC) && SASC < 658 typedef long linenr_T; ! typedef unsigned colnr_T; typedef unsigned short short_u; #endif --- 16,22 ---- */ #if defined(SASC) && SASC < 658 typedef long linenr_T; ! typedef int colnr_T; typedef unsigned short short_u; #endif *** ../vim-7.2.168/src/term.h 2005-03-16 10:53:56.000000000 +0100 --- src/term.h 2009-05-13 17:27:41.000000000 +0200 *************** *** 96,102 **** --- 96,106 ---- * - there should be code in term.c to obtain the value from the termcap */ + #ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ + extern char_u **term_strings; /* current terminal strings */ + #else extern char_u *(term_strings[]); /* current terminal strings */ + #endif /* * strings used for terminal *** ../vim-7.2.168/src/vim.h 2009-04-29 18:44:38.000000000 +0200 --- src/vim.h 2009-05-13 16:45:39.000000000 +0200 *************** *** 1460,1467 **** # define PERROR(msg) perror(msg) #endif ! typedef long linenr_T; /* line number type */ ! typedef unsigned colnr_T; /* column number type */ typedef unsigned short disptick_T; /* display tick type */ #define MAXLNUM (0x7fffffffL) /* maximum (invalid) line number */ --- 1460,1467 ---- # define PERROR(msg) perror(msg) #endif ! typedef long linenr_T; /* line number type */ ! typedef int colnr_T; /* column number type */ typedef unsigned short disptick_T; /* display tick type */ #define MAXLNUM (0x7fffffffL) /* maximum (invalid) line number */ *** ../vim-7.2.168/src/version.c 2009-05-13 14:48:55.000000000 +0200 --- src/version.c 2009-05-13 18:44:28.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 169, /**/ -- Females are strictly forbidden to appear unshaven in public. [real standing law in New Mexico, United States of America] /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.170 --- To: vim-dev at vim.org Subject: Patch 7.2.170 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.170 Problem: Using b_dev while it was not set. (Dominique Pelle) Solution: Add the b_dev_valid flag. Files: src/buffer.c, src/fileio.c, src/structs.h *** ../vim-7.2.169/src/buffer.c 2009-05-13 12:46:36.000000000 +0200 --- src/buffer.c 2009-05-13 20:23:51.000000000 +0200 *************** *** 1678,1686 **** buf->b_fname = buf->b_sfname; #ifdef UNIX if (st.st_dev == (dev_T)-1) ! buf->b_dev = -1; else { buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } --- 1678,1687 ---- buf->b_fname = buf->b_sfname; #ifdef UNIX if (st.st_dev == (dev_T)-1) ! buf->b_dev_valid = FALSE; else { + buf->b_dev_valid = TRUE; buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } *************** *** 2693,2701 **** buf->b_fname = buf->b_sfname; #ifdef UNIX if (st.st_dev == (dev_T)-1) ! buf->b_dev = -1; else { buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } --- 2694,2703 ---- buf->b_fname = buf->b_sfname; #ifdef UNIX if (st.st_dev == (dev_T)-1) ! buf->b_dev_valid = FALSE; else { + buf->b_dev_valid = TRUE; buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } *************** *** 2889,2895 **** /* If no struct stat given, get it now */ if (stp == NULL) { ! if (buf->b_dev < 0 || mch_stat((char *)ffname, &st) < 0) st.st_dev = (dev_T)-1; stp = &st; } --- 2891,2897 ---- /* If no struct stat given, get it now */ if (stp == NULL) { ! if (!buf->b_dev_valid || mch_stat((char *)ffname, &st) < 0) st.st_dev = (dev_T)-1; stp = &st; } *************** *** 2926,2936 **** if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) { buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } else ! buf->b_dev = -1; } /* --- 2928,2939 ---- if (buf->b_fname != NULL && mch_stat((char *)buf->b_fname, &st) >= 0) { + buf->b_dev_valid = TRUE; buf->b_dev = st.st_dev; buf->b_ino = st.st_ino; } else ! buf->b_dev_valid = FALSE; } /* *************** *** 2941,2947 **** buf_T *buf; struct stat *stp; { ! return (buf->b_dev >= 0 && stp->st_dev == buf->b_dev && stp->st_ino == buf->b_ino); } --- 2944,2950 ---- buf_T *buf; struct stat *stp; { ! return (buf->b_dev_valid && stp->st_dev == buf->b_dev && stp->st_ino == buf->b_ino); } *** ../vim-7.2.169/src/fileio.c 2009-04-29 18:01:23.000000000 +0200 --- src/fileio.c 2009-05-13 20:24:08.000000000 +0200 *************** *** 4416,4422 **** # endif buf_setino(buf); } ! else if (buf->b_dev < 0) /* Set the inode when creating a new file. */ buf_setino(buf); #endif --- 4416,4422 ---- # endif buf_setino(buf); } ! else if (!buf->b_dev_valid) /* Set the inode when creating a new file. */ buf_setino(buf); #endif *** ../vim-7.2.169/src/structs.h 2009-05-13 18:54:14.000000000 +0200 --- src/structs.h 2009-05-13 20:24:54.000000000 +0200 *************** *** 1166,1172 **** char_u *b_fname; /* current file name */ #ifdef UNIX ! dev_t b_dev; /* device number (-1 if not set) */ ino_t b_ino; /* inode number */ #endif #ifdef FEAT_CW_EDITOR --- 1166,1173 ---- char_u *b_fname; /* current file name */ #ifdef UNIX ! int b_dev_valid; /* TRUE when b_dev has a valid number */ ! dev_t b_dev; /* device number */ ino_t b_ino; /* inode number */ #endif #ifdef FEAT_CW_EDITOR *** ../vim-7.2.169/src/version.c 2009-05-13 18:54:14.000000000 +0200 --- src/version.c 2009-05-13 20:43:22.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 170, /**/ -- A special cleaning ordinance bans housewives from hiding dirt and dust under a rug in a dwelling. [real standing law in Pennsylvania, United States of America] /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.171 --- To: vim-dev at vim.org Subject: Patch 7.2.171 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.171 (after 7.2.169) Problem: Compiler warnings. (Tony Mechelynck) Solution: Add function prototype. (Patrick Texier) Init variable. Files: src/ex_cmds.c *** ../vim-7.2.170/src/ex_cmds.c 2009-05-13 18:54:14.000000000 +0200 --- src/ex_cmds.c 2009-05-14 21:11:01.000000000 +0200 *************** *** 4637,4643 **** if (do_ask) { ! int typed; /* change State to CONFIRM, so that the mouse works * properly */ --- 4635,4641 ---- if (do_ask) { ! int typed = 0; /* change State to CONFIRM, so that the mouse works * properly */ *************** *** 6553,6558 **** --- 6549,6555 ---- static sign_T *first_sign = NULL; static int last_sign_typenr = MAX_TYPENR; /* is decremented */ + static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd)); static void sign_list_defined __ARGS((sign_T *sp)); static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev)); *************** *** 6579,6586 **** */ static int sign_cmd_idx(begin_cmd, end_cmd) ! char *begin_cmd; /* begin of sign subcmd */ ! char *end_cmd; /* just after sign subcmd */ { int idx; char save = *end_cmd; --- 6576,6583 ---- */ static int sign_cmd_idx(begin_cmd, end_cmd) ! char_u *begin_cmd; /* begin of sign subcmd */ ! char_u *end_cmd; /* just after sign subcmd */ { int idx; char save = *end_cmd; *** ../vim-7.2.170/src/version.c 2009-05-13 20:47:07.000000000 +0200 --- src/version.c 2009-05-14 21:49:22.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 171, /**/ -- Living on Earth includes an annual free trip around the Sun. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.172 --- To: vim-dev at vim.org Subject: Patch 7.2.172 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.172 (extra) Problem: Compiler warning. Solution: Adjust function prototype. (Patrick Texier) Files: src/os_mswin.c *** ../vim-7.2.171/src/os_mswin.c 2009-01-22 21:49:21.000000000 +0100 --- src/os_mswin.c 2009-05-14 20:54:32.000000000 +0200 *************** *** 1227,1234 **** * Wait for another process to Close the Clipboard. * Returns TRUE for success. */ ! int ! vim_open_clipboard() { int delay = 10; --- 1227,1234 ---- * Wait for another process to Close the Clipboard. * Returns TRUE for success. */ ! static int ! vim_open_clipboard(void) { int delay = 10; *** ../vim-7.2.171/src/version.c 2009-05-14 21:51:06.000000000 +0200 --- src/version.c 2009-05-14 21:59:45.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 172, /**/ -- FROG: How you English say: I one more time, mac, I unclog my nose towards you, sons of a window-dresser, so, you think you could out-clever us French fellows with your silly knees-bent creeping about advancing behaviour. (blows a raspberry) I wave my private parts at your aunties, you brightly-coloured, mealy-templed, cranberry-smelling, electric donkey-bottom biters. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.173 --- To: vim-dev at vim.org Subject: Patch 7.2.173 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.173 Problem: Without lint there is no check for unused function arguments. Solution: Use gcc -Wunused-parameter instead of lint. For a few files add attributes to arguments that are known not to be used. Files: src/auto/configure, src/buffer.c, src/charset.c, src/diff.c, src/configure.in, src/config.h.in, src/edit.c, src/ex_cmds.c, src/ex_cmds2.c, src/version.c, src/vim.h *** ../vim-7.2.172/src/auto/configure 2009-05-13 14:48:55.000000000 +0200 --- src/auto/configure 2009-05-14 22:08:12.000000000 +0200 *************** *** 10362,10367 **** --- 10372,10427 ---- rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { $as_echo "$as_me:$LINENO: checking whether __attribute__((unused)) is allowed" >&5 + $as_echo_n "checking whether __attribute__((unused)) is allowed... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + #include + int + main () + { + int x __attribute__((unused)); + ; + return 0; + } + _ACEOF + rm -f conftest.$ac_objext + if { (ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac + eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" + $as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + { $as_echo "$as_me:$LINENO: result: yes" >&5 + $as_echo "yes" >&6; }; cat >>confdefs.h <<\_ACEOF + #define HAVE_ATTRIBUTE_UNUSED 1 + _ACEOF + + else + $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + { $as_echo "$as_me:$LINENO: result: no" >&5 + $as_echo "no" >&6; } + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + if test "${ac_cv_header_elf_h+set}" = set; then { $as_echo "$as_me:$LINENO: checking for elf.h" >&5 $as_echo_n "checking for elf.h... " >&6; } *** ../vim-7.2.172/src/buffer.c 2009-05-13 20:47:07.000000000 +0200 --- src/buffer.c 2009-05-14 21:34:06.000000000 +0200 *************** *** 512,523 **** * buf_freeall() - free all things allocated for a buffer that are related to * the file. */ - /*ARGSUSED*/ void buf_freeall(buf, del_buf, wipe_buf) buf_T *buf; ! int del_buf; /* buffer is going to be deleted */ ! int wipe_buf; /* buffer is going to be wiped out */ { #ifdef FEAT_AUTOCMD int is_curbuf = (buf == curbuf); --- 512,522 ---- * buf_freeall() - free all things allocated for a buffer that are related to * the file. */ void buf_freeall(buf, del_buf, wipe_buf) buf_T *buf; ! int del_buf UNUSED; /* buffer is going to be deleted */ ! int wipe_buf UNUSED; /* buffer is going to be wiped out */ { #ifdef FEAT_AUTOCMD int is_curbuf = (buf == curbuf); *************** *** 2437,2447 **** * another tab page. * Returns NULL when there isn't any info. */ - /*ARGSUSED*/ static wininfo_T * find_wininfo(buf, skip_diff_buffer) buf_T *buf; ! int skip_diff_buffer; { wininfo_T *wip; --- 2436,2445 ---- * another tab page. * Returns NULL when there isn't any info. */ static wininfo_T * find_wininfo(buf, skip_diff_buffer) buf_T *buf; ! int skip_diff_buffer UNUSED; { wininfo_T *wip; *************** *** 4278,4287 **** * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL. * "ffname" becomes a pointer to allocated memory (or NULL). */ - /*ARGSUSED*/ void fname_expand(buf, ffname, sfname) ! buf_T *buf; char_u **ffname; char_u **sfname; { --- 4276,4284 ---- * Make "ffname" a full file name, set "sfname" to "ffname" if not NULL. * "ffname" becomes a pointer to allocated memory (or NULL). */ void fname_expand(buf, ffname, sfname) ! buf_T *buf UNUSED; char_u **ffname; char_u **sfname; { *************** *** 5577,5587 **** * this buffer. Call this to wipe out a temp buffer that does not contain any * marks. */ - /*ARGSUSED*/ void wipe_buffer(buf, aucmd) buf_T *buf; ! int aucmd; /* When TRUE trigger autocommands. */ { if (buf->b_fnum == top_file_num - 1) --top_file_num; --- 5574,5583 ---- * this buffer. Call this to wipe out a temp buffer that does not contain any * marks. */ void wipe_buffer(buf, aucmd) buf_T *buf; ! int aucmd UNUSED; /* When TRUE trigger autocommands. */ { if (buf->b_fnum == top_file_num - 1) --top_file_num; *** ../vim-7.2.172/src/charset.c 2009-05-13 14:10:46.000000000 +0200 --- src/charset.c 2009-05-14 21:34:30.000000000 +0200 *************** *** 1026,1038 **** * string at start of line. Warning: *headp is only set if it's a non-zero * value, init to 0 before calling. */ - /*ARGSUSED*/ int win_lbr_chartabsize(wp, s, col, headp) win_T *wp; char_u *s; colnr_T col; ! int *headp; { #ifdef FEAT_LINEBREAK int c; --- 1026,1037 ---- * string at start of line. Warning: *headp is only set if it's a non-zero * value, init to 0 before calling. */ int win_lbr_chartabsize(wp, s, col, headp) win_T *wp; char_u *s; colnr_T col; ! int *headp UNUSED; { #ifdef FEAT_LINEBREAK int c; *** ../vim-7.2.172/src/diff.c 2009-05-13 18:54:14.000000000 +0200 --- src/diff.c 2009-05-14 21:24:59.000000000 +0200 *************** *** 652,661 **** * The buffers are written to a file, also for unmodified buffers (the file * could have been produced by autocommands, e.g. the netrw plugin). */ - /*ARGSUSED*/ void ex_diffupdate(eap) ! exarg_T *eap; /* can be NULL, it's not used */ { buf_T *buf; int idx_orig; --- 652,660 ---- * The buffers are written to a file, also for unmodified buffers (the file * could have been produced by autocommands, e.g. the netrw plugin). */ void ex_diffupdate(eap) ! exarg_T *eap UNUSED; /* can be NULL */ { buf_T *buf; int idx_orig; *************** *** 1094,1103 **** /* * Set options to show difs for the current window. */ - /*ARGSUSED*/ void ex_diffthis(eap) ! exarg_T *eap; { /* Set 'diff', 'scrollbind' on and 'wrap' off. */ diff_win_options(curwin, TRUE); --- 1093,1101 ---- /* * Set options to show difs for the current window. */ void ex_diffthis(eap) ! exarg_T *eap UNUSED; { /* Set 'diff', 'scrollbind' on and 'wrap' off. */ diff_win_options(curwin, TRUE); *** ../vim-7.2.172/src/configure.in 2009-05-13 14:48:55.000000000 +0200 --- src/configure.in 2009-05-14 22:08:06.000000000 +0200 *************** *** 2067,2072 **** --- 2067,2077 ---- AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DATE_TIME), AC_MSG_RESULT(no)) + AC_MSG_CHECKING(whether __attribute__((unused)) is allowed) + AC_TRY_COMPILE([#include ], [int x __attribute__((unused));], + AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ATTRIBUTE_UNUSED), + AC_MSG_RESULT(no)) + dnl Checks for header files. AC_CHECK_HEADER(elf.h, HAS_ELF=1) dnl AC_CHECK_HEADER(dwarf.h, SVR4=1) *** ../vim-7.2.172/src/config.h.in 2009-03-02 02:44:54.000000000 +0100 --- src/config.h.in 2009-05-14 21:15:02.000000000 +0200 *************** *** 30,35 **** --- 30,38 ---- /* Define when __DATE__ " " __TIME__ can be used */ #undef HAVE_DATE_TIME + /* Define when __attribute__((unused)) can be used */ + #undef HAVE_ATTRIBUTE_UNUSED + /* defined always when using configure */ #undef UNIX *** ../vim-7.2.172/src/edit.c 2009-05-13 18:54:14.000000000 +0200 --- src/edit.c 2009-05-14 21:35:08.000000000 +0200 *************** *** 1447,1456 **** * Only redraw when there are no characters available. This speeds up * inserting sequences of characters (e.g., for CTRL-R). */ - /*ARGSUSED*/ static void ins_redraw(ready) ! int ready; /* not busy with something */ { if (!char_avail()) { --- 1447,1455 ---- * Only redraw when there are no characters available. This speeds up * inserting sequences of characters (e.g., for CTRL-R). */ static void ins_redraw(ready) ! int ready UNUSED; /* not busy with something */ { if (!char_avail()) { *************** *** 1962,1971 **** * Only matters when there are composing characters. * Return TRUE when something was deleted. */ - /*ARGSUSED*/ static int del_char_after_col(limit_col) ! int limit_col; { #ifdef FEAT_MBYTE if (enc_utf8 && limit_col >= 0) --- 1961,1969 ---- * Only matters when there are composing characters. * Return TRUE when something was deleted. */ static int del_char_after_col(limit_col) ! int limit_col UNUSED; { #ifdef FEAT_MBYTE if (enc_utf8 && limit_col >= 0) *** ../vim-7.2.172/src/ex_cmds.c 2009-05-14 21:51:06.000000000 +0200 --- src/ex_cmds.c 2009-05-14 21:11:01.000000000 +0200 *************** *** 43,52 **** /* * ":ascii" and "ga". */ - /*ARGSUSED*/ void do_ascii(eap) ! exarg_T *eap; { int c; int cval; --- 43,51 ---- /* * ":ascii" and "ga". */ void do_ascii(eap) ! exarg_T *eap UNUSED; { int c; int cval; *************** *** 2373,2382 **** * ^? ^H * not ^? ^? */ - /*ARGSUSED*/ void do_fixdel(eap) ! exarg_T *eap; { char_u *p; --- 2372,2380 ---- * ^? ^H * not ^? ^? */ void do_fixdel(eap) ! exarg_T *eap UNUSED; { char_u *p; *************** *** 6127,6136 **** /* * ":exusage" */ - /*ARGSUSED*/ void ex_exusage(eap) ! exarg_T *eap; { do_cmdline_cmd((char_u *)"help ex-cmd-index"); } --- 6125,6133 ---- /* * ":exusage" */ void ex_exusage(eap) ! exarg_T *eap UNUSED; { do_cmdline_cmd((char_u *)"help ex-cmd-index"); } *************** *** 6138,6147 **** /* * ":viusage" */ - /*ARGSUSED*/ void ex_viusage(eap) ! exarg_T *eap; { do_cmdline_cmd((char_u *)"help normal-index"); } --- 6135,6143 ---- /* * ":viusage" */ void ex_viusage(eap) ! exarg_T *eap UNUSED; { do_cmdline_cmd((char_u *)"help normal-index"); } *************** *** 7154,7163 **** * Function given to ExpandGeneric() to obtain the sign command * expansion. */ - /*ARGSUSED*/ char_u * get_sign_name(xp, idx) ! expand_T *xp; int idx; { sign_T *sp; --- 7150,7158 ---- * Function given to ExpandGeneric() to obtain the sign command * expansion. */ char_u * get_sign_name(xp, idx) ! expand_T *xp UNUSED; int idx; { sign_T *sp; *** ../vim-7.2.172/src/ex_cmds2.c 2009-05-13 18:54:14.000000000 +0200 --- src/ex_cmds2.c 2009-05-14 21:35:40.000000000 +0200 *************** *** 680,689 **** /* * ":breaklist". */ - /*ARGSUSED*/ void ex_breaklist(eap) ! exarg_T *eap; { struct debuggy *bp; int i; --- 680,688 ---- /* * ":breaklist". */ void ex_breaklist(eap) ! exarg_T *eap UNUSED; { struct debuggy *bp; int i; *************** *** 1342,1355 **** /* * return TRUE if buffer was changed and cannot be abandoned. */ - /*ARGSUSED*/ int check_changed(buf, checkaw, mult_win, forceit, allbuf) buf_T *buf; int checkaw; /* do autowrite if buffer was changed */ int mult_win; /* check also when several wins for the buf */ int forceit; ! int allbuf; /* may write all buffers */ { if ( !forceit && bufIsChanged(buf) --- 1341,1353 ---- /* * return TRUE if buffer was changed and cannot be abandoned. */ int check_changed(buf, checkaw, mult_win, forceit, allbuf) buf_T *buf; int checkaw; /* do autowrite if buffer was changed */ int mult_win; /* check also when several wins for the buf */ int forceit; ! int allbuf UNUSED; /* may write all buffers */ { if ( !forceit && bufIsChanged(buf) *************** *** 1759,1770 **** * * Return FAIL for failure, OK otherwise. */ - /*ARGSUSED*/ static int do_arglist(str, what, after) char_u *str; ! int what; ! int after; /* 0 means before first one */ { garray_T new_ga; int exp_count; --- 1757,1767 ---- * * Return FAIL for failure, OK otherwise. */ static int do_arglist(str, what, after) char_u *str; ! int what UNUSED; ! int after UNUSED; /* 0 means before first one */ { garray_T new_ga; int exp_count; *************** *** 2549,2559 **** static void source_callback __ARGS((char_u *fname, void *cookie)); - /*ARGSUSED*/ static void source_callback(fname, cookie) char_u *fname; ! void *cookie; { (void)do_source(fname, FALSE, DOSO_NONE); } --- 2546,2555 ---- static void source_callback __ARGS((char_u *fname, void *cookie)); static void source_callback(fname, cookie) char_u *fname; ! void *cookie UNUSED; { (void)do_source(fname, FALSE, DOSO_NONE); } *************** *** 2680,2689 **** /* * ":options" */ - /*ARGSUSED*/ void ex_options(eap) ! exarg_T *eap; { cmd_source((char_u *)SYS_OPTWIN_FILE, NULL); } --- 2676,2684 ---- /* * ":options" */ void ex_options(eap) ! exarg_T *eap UNUSED; { cmd_source((char_u *)SYS_OPTWIN_FILE, NULL); } *************** *** 3190,3199 **** /* * ":scriptnames" */ - /*ARGSUSED*/ void ex_scriptnames(eap) ! exarg_T *eap; { int i; --- 3185,3193 ---- /* * ":scriptnames" */ void ex_scriptnames(eap) ! exarg_T *eap UNUSED; { int i; *************** *** 3317,3328 **** * Return a pointer to the line in allocated memory. * Return NULL for end-of-file or some error. */ - /* ARGSUSED */ char_u * getsourceline(c, cookie, indent) ! int c; /* not used */ void *cookie; ! int indent; /* not used */ { struct source_cookie *sp = (struct source_cookie *)cookie; char_u *line; --- 3311,3321 ---- * Return a pointer to the line in allocated memory. * Return NULL for end-of-file or some error. */ char_u * getsourceline(c, cookie, indent) ! int c UNUSED; void *cookie; ! int indent UNUSED; { struct source_cookie *sp = (struct source_cookie *)cookie; char_u *line; *************** *** 3649,3658 **** * ":scriptencoding": Set encoding conversion for a sourced script. * Without the multi-byte feature it's simply ignored. */ - /*ARGSUSED*/ void ex_scriptencoding(eap) ! exarg_T *eap; { #ifdef FEAT_MBYTE struct source_cookie *sp; --- 3642,3650 ---- * ":scriptencoding": Set encoding conversion for a sourced script. * Without the multi-byte feature it's simply ignored. */ void ex_scriptencoding(eap) ! exarg_T *eap UNUSED; { #ifdef FEAT_MBYTE struct source_cookie *sp; *************** *** 4101,4110 **** * Function given to ExpandGeneric() to obtain the possible arguments of the * ":language" command. */ - /*ARGSUSED*/ char_u * get_lang_arg(xp, idx) ! expand_T *xp; int idx; { if (idx == 0) --- 4093,4101 ---- * Function given to ExpandGeneric() to obtain the possible arguments of the * ":language" command. */ char_u * get_lang_arg(xp, idx) ! expand_T *xp UNUSED; int idx; { if (idx == 0) *** ../vim-7.2.172/src/version.c 2009-05-14 22:00:37.000000000 +0200 --- src/version.c 2009-05-14 22:14:51.000000000 +0200 *************** *** 1623,1632 **** /* * ":intro": clear screen, display intro screen and wait for return. */ - /*ARGSUSED*/ void ex_intro(eap) ! exarg_T *eap; { screenclear(); intro_message(TRUE); --- 1625,1633 ---- /* * ":intro": clear screen, display intro screen and wait for return. */ void ex_intro(eap) ! exarg_T *eap UNUSED; { screenclear(); intro_message(TRUE); *** ../vim-7.2.172/src/vim.h 2009-05-13 18:54:14.000000000 +0200 --- src/vim.h 2009-05-14 21:17:51.000000000 +0200 *************** *** 262,267 **** --- 262,275 ---- # define __PARMS(x) __ARGS(x) #endif + /* Mark unused function arguments with UNUSED, so that gcc -Wunused-parameter + * can be used to check for mistakes. */ + #ifdef HAVE_ATTRIBUTE_UNUSED + # define UNUSED __attribute__((unused)) + #else + # define UNUSED + #endif + /* if we're compiling in C++ (currently only KVim), the system * headers must have the correct prototypes or nothing will build. * conversely, our prototypes might clash due to throw() specifiers and *** ../vim-7.2.172/src/version.c 2009-05-14 22:00:37.000000000 +0200 --- src/version.c 2009-05-14 22:14:51.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 173, /**/ -- SIGIRO -- irony detected (iron core dumped) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.174 --- To: vim-dev at vim.org Subject: Patch 7.2.174 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.174 Problem: Too many warnings from gcc -Wextra. Solution: Change initializer. Add UNUSED. Add type casts. Files: src/edit.c, src/eval.c, src/ex_cmds.c, src/ex_docmd.c, src/ex_getln.c, src/fileio.c, getchar.c, globals.h, main.c, memline.c, message.c, src/misc1.c, src/move.c, src/normal.c, src/option.c, src/os_unix.c, src/os_unix.h, src/regexp.c, src/search.c, src/tag.c *** ../vim-7.2.173/src/edit.c 2009-05-14 22:19:19.000000000 +0200 --- src/edit.c 2009-05-15 21:06:07.000000000 +0200 *************** *** 8991,8997 **** foldOpenCursor(); #endif undisplay_dollar(); ! if (gchar_cursor() != NUL || virtual_active() ) { start_arrow(&curwin->w_cursor); --- 8992,9001 ---- foldOpenCursor(); #endif undisplay_dollar(); ! if (gchar_cursor() != NUL ! #ifdef FEAT_VIRTUALEDIT ! || virtual_active() ! #endif ) { start_arrow(&curwin->w_cursor); *** ../vim-7.2.173/src/eval.c 2009-04-22 16:07:57.000000000 +0200 --- src/eval.c 2009-05-15 21:18:08.000000000 +0200 *************** *** 8303,8312 **** /* * "argc()" function */ - /* ARGSUSED */ static void f_argc(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { rettv->vval.v_number = ARGCOUNT; --- 8303,8311 ---- /* * "argc()" function */ static void f_argc(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { rettv->vval.v_number = ARGCOUNT; *************** *** 8315,8324 **** /* * "argidx()" function */ - /* ARGSUSED */ static void f_argidx(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { rettv->vval.v_number = curwin->w_arg_idx; --- 8314,8322 ---- /* * "argidx()" function */ static void f_argidx(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { rettv->vval.v_number = curwin->w_arg_idx; *************** *** 8396,8405 **** /* * "browse(save, title, initdir, default)" function */ - /* ARGSUSED */ static void f_browse(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { #ifdef FEAT_BROWSE --- 8394,8402 ---- /* * "browse(save, title, initdir, default)" function */ static void f_browse(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { #ifdef FEAT_BROWSE *************** *** 8431,8440 **** /* * "browsedir(title, initdir)" function */ - /* ARGSUSED */ static void f_browsedir(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { #ifdef FEAT_BROWSE --- 8428,8436 ---- /* * "browsedir(title, initdir)" function */ static void f_browsedir(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { #ifdef FEAT_BROWSE *************** *** 8801,8810 **** /* * "changenr()" function */ - /*ARGSUSED*/ static void f_changenr(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { rettv->vval.v_number = curbuf->b_u_seq_cur; --- 8797,8805 ---- /* * "changenr()" function */ static void f_changenr(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { rettv->vval.v_number = curbuf->b_u_seq_cur; *************** *** 8854,8863 **** /* * "clearmatches()" function */ - /*ARGSUSED*/ static void f_clearmatches(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { #ifdef FEAT_SEARCH_EXTRA --- 8849,8857 ---- /* * "clearmatches()" function */ static void f_clearmatches(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { #ifdef FEAT_SEARCH_EXTRA *** ../vim-7.2.173/src/ex_cmds.c 2009-05-14 22:19:19.000000000 +0200 --- src/ex_cmds.c 2009-05-15 20:42:18.000000000 +0200 *************** *** 4040,4047 **** --- 4040,4049 ---- bigness = curwin->w_height; else if (firstwin == lastwin) bigness = curwin->w_p_scr * 2; + #ifdef FEAT_WINDOWS else bigness = curwin->w_height - 3; + #endif if (bigness < 1) bigness = 1; *** ../vim-7.2.173/src/ex_docmd.c 2009-05-13 18:54:14.000000000 +0200 --- src/ex_docmd.c 2009-05-15 20:47:58.000000000 +0200 *************** *** 1578,1588 **** * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals * "func". * Otherwise return TRUE when "fgetline" equals "func". */ - /*ARGSUSED*/ int getline_equal(fgetline, cookie, func) char_u *(*fgetline) __ARGS((int, void *, int)); ! void *cookie; /* argument for fgetline() */ char_u *(*func) __ARGS((int, void *, int)); { #ifdef FEAT_EVAL --- 1578,1587 ---- * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals * "func". * Otherwise return TRUE when "fgetline" equals "func". */ int getline_equal(fgetline, cookie, func) char_u *(*fgetline) __ARGS((int, void *, int)); ! void *cookie UNUSED; /* argument for fgetline() */ char_u *(*func) __ARGS((int, void *, int)); { #ifdef FEAT_EVAL *************** *** 1610,1619 **** * If "fgetline" is get_loop_line(), return the cookie used by the original * getline function. Otherwise return "cookie". */ - /*ARGSUSED*/ void * getline_cookie(fgetline, cookie) ! char_u *(*fgetline) __ARGS((int, void *, int)); void *cookie; /* argument for fgetline() */ { # ifdef FEAT_EVAL --- 1609,1617 ---- * If "fgetline" is get_loop_line(), return the cookie used by the original * getline function. Otherwise return "cookie". */ void * getline_cookie(fgetline, cookie) ! char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED; void *cookie; /* argument for fgetline() */ { # ifdef FEAT_EVAL *************** *** 2754,2764 **** * "full" is set to TRUE if the whole command name matched. * Returns NULL for an ambiguous user command. */ - /*ARGSUSED*/ static char_u * find_command(eap, full) exarg_T *eap; ! int *full; { int len; char_u *p; --- 2752,2761 ---- * "full" is set to TRUE if the whole command name matched. * Returns NULL for an ambiguous user command. */ static char_u * find_command(eap, full) exarg_T *eap; ! int *full UNUSED; { int len; char_u *p; *************** *** 5053,5062 **** /* * Function given to ExpandGeneric() to obtain the list of command names. */ - /*ARGSUSED*/ char_u * get_command_name(xp, idx) ! expand_T *xp; int idx; { if (idx >= (int)CMD_SIZE) --- 5050,5058 ---- /* * Function given to ExpandGeneric() to obtain the list of command names. */ char_u * get_command_name(xp, idx) ! expand_T *xp UNUSED; int idx; { if (idx >= (int)CMD_SIZE) *************** *** 5573,5582 **** * ":comclear" * Clear all user commands, global and for current buffer. */ - /*ARGSUSED*/ void ex_comclear(eap) ! exarg_T *eap; { uc_clear(&ucmds); uc_clear(&curbuf->b_ucmds); --- 5569,5577 ---- * ":comclear" * Clear all user commands, global and for current buffer. */ void ex_comclear(eap) ! exarg_T *eap UNUSED; { uc_clear(&ucmds); uc_clear(&curbuf->b_ucmds); *************** *** 6072,6081 **** /* * Function given to ExpandGeneric() to obtain the list of user command names. */ - /*ARGSUSED*/ char_u * get_user_commands(xp, idx) ! expand_T *xp; int idx; { if (idx < curbuf->b_ucmds.ga_len) --- 6067,6075 ---- /* * Function given to ExpandGeneric() to obtain the list of user command names. */ char_u * get_user_commands(xp, idx) ! expand_T *xp UNUSED; int idx; { if (idx < curbuf->b_ucmds.ga_len) *************** *** 6090,6099 **** * Function given to ExpandGeneric() to obtain the list of user command * attributes. */ - /*ARGSUSED*/ char_u * get_user_cmd_flags(xp, idx) ! expand_T *xp; int idx; { static char *user_cmd_flags[] = --- 6084,6092 ---- * Function given to ExpandGeneric() to obtain the list of user command * attributes. */ char_u * get_user_cmd_flags(xp, idx) ! expand_T *xp UNUSED; int idx; { static char *user_cmd_flags[] = *************** *** 6108,6117 **** /* * Function given to ExpandGeneric() to obtain the list of values for -nargs. */ - /*ARGSUSED*/ char_u * get_user_cmd_nargs(xp, idx) ! expand_T *xp; int idx; { static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"}; --- 6101,6109 ---- /* * Function given to ExpandGeneric() to obtain the list of values for -nargs. */ char_u * get_user_cmd_nargs(xp, idx) ! expand_T *xp UNUSED; int idx; { static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"}; *************** *** 6124,6133 **** /* * Function given to ExpandGeneric() to obtain the list of values for -complete. */ - /*ARGSUSED*/ char_u * get_user_cmd_complete(xp, idx) ! expand_T *xp; int idx; { return (char_u *)command_complete[idx].name; --- 6116,6124 ---- /* * Function given to ExpandGeneric() to obtain the list of values for -complete. */ char_u * get_user_cmd_complete(xp, idx) ! expand_T *xp UNUSED; int idx; { return (char_u *)command_complete[idx].name; *************** *** 6305,6314 **** /* * ":cquit". */ - /*ARGSUSED*/ static void ex_cquit(eap) ! exarg_T *eap; { getout(1); /* this does not always pass on the exit code to the Manx compiler. why? */ --- 6296,6304 ---- /* * ":cquit". */ static void ex_cquit(eap) ! exarg_T *eap UNUSED; { getout(1); /* this does not always pass on the exit code to the Manx compiler. why? */ *************** *** 6750,6759 **** /* * ":shell". */ - /*ARGSUSED*/ static void ex_shell(eap) ! exarg_T *eap; { do_shell(NULL, 0); } --- 6740,6748 ---- /* * ":shell". */ static void ex_shell(eap) ! exarg_T *eap UNUSED; { do_shell(NULL, 0); } *************** *** 7057,7066 **** /* * ":preserve". */ - /*ARGSUSED*/ static void ex_preserve(eap) ! exarg_T *eap; { curbuf->b_flags |= BF_PRESERVED; ml_preserve(curbuf, TRUE); --- 7046,7054 ---- /* * ":preserve". */ static void ex_preserve(eap) ! exarg_T *eap UNUSED; { curbuf->b_flags |= BF_PRESERVED; ml_preserve(curbuf, TRUE); *************** *** 7292,7301 **** /* * :tabs command: List tabs and their contents. */ - /*ARGSUSED*/ static void ex_tabs(eap) ! exarg_T *eap; { tabpage_T *tp; win_T *wp; --- 7280,7288 ---- /* * :tabs command: List tabs and their contents. */ static void ex_tabs(eap) ! exarg_T *eap UNUSED; { tabpage_T *tp; win_T *wp; *************** *** 7482,7488 **** /* * ":edit " command and alikes. */ - /*ARGSUSED*/ void do_exedit(eap, old_curwin) exarg_T *eap; --- 7469,7474 ---- *************** *** 7694,7703 **** } #endif - /*ARGSUSED*/ static void ex_swapname(eap) ! exarg_T *eap; { if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL) MSG(_("No swap file")); --- 7680,7688 ---- } #endif static void ex_swapname(eap) ! exarg_T *eap UNUSED; { if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL) MSG(_("No swap file")); *************** *** 7710,7719 **** * offset. * (1998-11-02 16:21:01 R. Edward Ralston ) */ - /*ARGSUSED*/ static void ex_syncbind(eap) ! exarg_T *eap; { #ifdef FEAT_SCROLLBIND win_T *wp; --- 7695,7703 ---- * offset. * (1998-11-02 16:21:01 R. Edward Ralston ) */ static void ex_syncbind(eap) ! exarg_T *eap UNUSED; { #ifdef FEAT_SCROLLBIND win_T *wp; *************** *** 7983,7992 **** /* * ":pwd". */ - /*ARGSUSED*/ static void ex_pwd(eap) ! exarg_T *eap; { if (mch_dirname(NameBuff, MAXPATHL) == OK) { --- 7967,7975 ---- /* * ":pwd". */ static void ex_pwd(eap) ! exarg_T *eap UNUSED; { if (mch_dirname(NameBuff, MAXPATHL) == OK) { *************** *** 8417,8426 **** /* * ":undo". */ - /*ARGSUSED*/ static void ex_undo(eap) ! exarg_T *eap; { if (eap->addr_count == 1) /* :undo 123 */ undo_time(eap->line2, FALSE, TRUE); --- 8400,8408 ---- /* * ":undo". */ static void ex_undo(eap) ! exarg_T *eap UNUSED; { if (eap->addr_count == 1) /* :undo 123 */ undo_time(eap->line2, FALSE, TRUE); *************** *** 8431,8440 **** /* * ":redo". */ - /*ARGSUSED*/ static void ex_redo(eap) ! exarg_T *eap; { u_redo(1); } --- 8413,8421 ---- /* * ":redo". */ static void ex_redo(eap) ! exarg_T *eap UNUSED; { u_redo(1); } *************** *** 8442,8448 **** /* * ":earlier" and ":later". */ - /*ARGSUSED*/ static void ex_later(eap) exarg_T *eap; --- 8423,8428 ---- *************** *** 8627,8636 **** /* * ":redrawstatus": force redraw of status line(s) */ - /*ARGSUSED*/ static void ex_redrawstatus(eap) ! exarg_T *eap; { #if defined(FEAT_WINDOWS) int r = RedrawingDisabled; --- 8607,8615 ---- /* * ":redrawstatus": force redraw of status line(s) */ static void ex_redrawstatus(eap) ! exarg_T *eap UNUSED; { #if defined(FEAT_WINDOWS) int r = RedrawingDisabled; *************** *** 8891,8901 **** #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \ || defined(PROTO) - /*ARGSUSED*/ int vim_mkdir_emsg(name, prot) char_u *name; ! int prot; { if (vim_mkdir(name, prot) != 0) { --- 8870,8879 ---- #if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \ || defined(PROTO) int vim_mkdir_emsg(name, prot) char_u *name; ! int prot UNUSED; { if (vim_mkdir(name, prot) != 0) { *************** *** 10968,10977 **** } #endif - /*ARGSUSED*/ static void ex_digraphs(eap) ! exarg_T *eap; { #ifdef FEAT_DIGRAPHS if (*eap->arg != NUL) --- 10946,10954 ---- } #endif static void ex_digraphs(eap) ! exarg_T *eap UNUSED; { #ifdef FEAT_DIGRAPHS if (*eap->arg != NUL) *************** *** 11005,11014 **** /* * ":nohlsearch" */ - /*ARGSUSED*/ static void ex_nohlsearch(eap) ! exarg_T *eap; { no_hlsearch = TRUE; redraw_all_later(SOME_VALID); --- 10982,10990 ---- /* * ":nohlsearch" */ static void ex_nohlsearch(eap) ! exarg_T *eap UNUSED; { no_hlsearch = TRUE; redraw_all_later(SOME_VALID); *************** *** 11087,11096 **** /* * ":X": Get crypt key */ - /*ARGSUSED*/ static void ex_X(eap) ! exarg_T *eap; { (void)get_crypt_key(TRUE, TRUE); } --- 11063,11071 ---- /* * ":X": Get crypt key */ static void ex_X(eap) ! exarg_T *eap UNUSED; { (void)get_crypt_key(TRUE, TRUE); } *** ../vim-7.2.173/src/ex_getln.c 2009-04-29 18:44:38.000000000 +0200 --- src/ex_getln.c 2009-05-15 20:49:22.000000000 +0200 *************** *** 140,150 **** * Return pointer to allocated string if there is a commandline, NULL * otherwise. */ - /*ARGSUSED*/ char_u * getcmdline(firstc, count, indent) int firstc; ! long count; /* only used for incremental search */ int indent; /* indent for inside conditionals */ { int c; --- 140,149 ---- * Return pointer to allocated string if there is a commandline, NULL * otherwise. */ char_u * getcmdline(firstc, count, indent) int firstc; ! long count UNUSED; /* only used for incremental search */ int indent; /* indent for inside conditionals */ { int c; *************** *** 2113,2123 **** /* * Get an Ex command line for the ":" command. */ - /* ARGSUSED */ char_u * ! getexline(c, dummy, indent) int c; /* normally ':', NUL for ":append" */ ! void *dummy; /* cookie not used */ int indent; /* indent for inside conditionals */ { /* When executing a register, remove ':' that's in front of each line. */ --- 2112,2121 ---- /* * Get an Ex command line for the ":" command. */ char_u * ! getexline(c, cookie, indent) int c; /* normally ':', NUL for ":append" */ ! void *cookie UNUSED; int indent; /* indent for inside conditionals */ { /* When executing a register, remove ':' that's in front of each line. */ *************** *** 2132,2143 **** * mappings or abbreviations. * Returns a string in allocated memory or NULL. */ - /* ARGSUSED */ char_u * ! getexmodeline(promptc, dummy, indent) int promptc; /* normally ':', NUL for ":append" and '?' for :s prompt */ ! void *dummy; /* cookie not used */ int indent; /* indent for inside conditionals */ { garray_T line_ga; --- 2130,2140 ---- * mappings or abbreviations. * Returns a string in allocated memory or NULL. */ char_u * ! getexmodeline(promptc, cookie, indent) int promptc; /* normally ':', NUL for ":append" and '?' for :s prompt */ ! void *cookie UNUSED; int indent; /* indent for inside conditionals */ { garray_T line_ga; *************** *** 3832,3842 **** * Returns EXPAND_NOTHING when the character that triggered expansion should * be inserted like a normal character. */ - /*ARGSUSED*/ static int showmatches(xp, wildmenu) expand_T *xp; ! int wildmenu; { #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) int num_files; --- 3829,3838 ---- * Returns EXPAND_NOTHING when the character that triggered expansion should * be inserted like a normal character. */ static int showmatches(xp, wildmenu) expand_T *xp; ! int wildmenu UNUSED; { #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) int num_files; *** ../vim-7.2.173/src/fileio.c 2009-05-13 20:47:07.000000000 +0200 --- src/fileio.c 2009-05-15 20:52:40.000000000 +0200 *************** *** 3498,3504 **** if (mch_stat((char *)IObuff, &st) < 0 || st.st_uid != st_old.st_uid || st.st_gid != st_old.st_gid ! || st.st_mode != perm) backup_copy = TRUE; # endif /* Close the file before removing it, on MS-Windows we --- 3498,3504 ---- if (mch_stat((char *)IObuff, &st) < 0 || st.st_uid != st_old.st_uid || st.st_gid != st_old.st_gid ! || (long)st.st_mode != perm) backup_copy = TRUE; # endif /* Close the file before removing it, on MS-Windows we *************** *** 5963,5969 **** else if (*ext == '.') #endif { ! if (s - ptr > (size_t)8) { s = ptr + 8; *s = '\0'; --- 5971,5977 ---- else if (*ext == '.') #endif { ! if ((size_t)(s - ptr) > (size_t)8) { s = ptr + 8; *s = '\0'; *************** *** 6460,6470 **** * return 2 if a message has been displayed. * return 0 otherwise. */ - /*ARGSUSED*/ int buf_check_timestamp(buf, focus) buf_T *buf; ! int focus; /* called for GUI focus event */ { struct stat st; int stat_res; --- 6468,6477 ---- * return 2 if a message has been displayed. * return 0 otherwise. */ int buf_check_timestamp(buf, focus) buf_T *buf; ! int focus UNUSED; /* called for GUI focus event */ { struct stat st; int stat_res; *************** *** 6868,6879 **** /* Careful: autocommands may have made "buf" invalid! */ } - /*ARGSUSED*/ void buf_store_time(buf, st, fname) buf_T *buf; struct stat *st; ! char_u *fname; { buf->b_mtime = (long)st->st_mtime; buf->b_orig_size = (size_t)st->st_size; --- 6875,6885 ---- /* Careful: autocommands may have made "buf" invalid! */ } void buf_store_time(buf, st, fname) buf_T *buf; struct stat *st; ! char_u *fname UNUSED; { buf->b_mtime = (long)st->st_mtime; buf->b_orig_size = (size_t)st->st_size; *************** *** 6936,6945 **** * The returned pointer is to allocated memory. * The returned pointer is NULL if no valid name was found. */ - /*ARGSUSED*/ char_u * vim_tempname(extra_char) ! int extra_char; /* character to use in the name instead of '?' */ { #ifdef USE_TMPNAM char_u itmp[L_tmpnam]; /* use tmpnam() */ --- 6942,6950 ---- * The returned pointer is to allocated memory. * The returned pointer is NULL if no valid name was found. */ char_u * vim_tempname(extra_char) ! int extra_char UNUSED; /* char to use in the name instead of '?' */ { #ifdef USE_TMPNAM char_u itmp[L_tmpnam]; /* use tmpnam() */ *************** *** 6968,6974 **** /* * Try the entries in TEMPDIRNAMES to create the temp directory. */ ! for (i = 0; i < sizeof(tempdirs) / sizeof(char *); ++i) { /* expand $TMP, leave room for "/v1100000/999999999" */ expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20); --- 6973,6979 ---- /* * Try the entries in TEMPDIRNAMES to create the temp directory. */ ! for (i = 0; i < (int)(sizeof(tempdirs) / sizeof(char *)); ++i) { /* expand $TMP, leave room for "/v1100000/999999999" */ expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20); *************** *** 9588,9600 **** * * Returns NULL when out of memory. */ - /*ARGSUSED*/ char_u * file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash) char_u *pat; char_u *pat_end; /* first char after pattern or NULL */ char *allow_dirs; /* Result passed back out in here */ ! int no_bslash; /* Don't use a backward slash as pathsep */ { int size; char_u *endp; --- 9593,9604 ---- * * Returns NULL when out of memory. */ char_u * file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash) char_u *pat; char_u *pat_end; /* first char after pattern or NULL */ char *allow_dirs; /* Result passed back out in here */ ! int no_bslash UNUSED; /* Don't use a backward slash as pathsep */ { int size; char_u *endp; *** ../vim-7.2.173/src/misc1.c 2009-04-29 11:00:09.000000000 +0200 --- src/misc1.c 2009-05-15 20:59:08.000000000 +0200 *************** *** 2188,2199 **** * * return FAIL for failure, OK otherwise */ - /*ARGSUSED*/ int del_bytes(count, fixpos_arg, use_delcombine) long count; int fixpos_arg; ! int use_delcombine; /* 'delcombine' option applies */ { char_u *oldp, *newp; colnr_T oldlen; --- 2188,2198 ---- * * return FAIL for failure, OK otherwise */ int del_bytes(count, fixpos_arg, use_delcombine) long count; int fixpos_arg; ! int use_delcombine UNUSED; /* 'delcombine' option applies */ { char_u *oldp, *newp; colnr_T oldlen; *** ../vim-7.2.173/src/move.c 2008-11-15 16:05:30.000000000 +0100 --- src/move.c 2009-05-15 21:00:06.000000000 +0200 *************** *** 1238,1248 **** /* * Scroll the current window down by "line_count" logical lines. "CTRL-Y" */ - /*ARGSUSED*/ void scrolldown(line_count, byfold) long line_count; ! int byfold; /* TRUE: count a closed fold as one line */ { long done = 0; /* total # of physical lines done */ int wrow; --- 1238,1247 ---- /* * Scroll the current window down by "line_count" logical lines. "CTRL-Y" */ void scrolldown(line_count, byfold) long line_count; ! int byfold UNUSED; /* TRUE: count a closed fold as one line */ { long done = 0; /* total # of physical lines done */ int wrow; *************** *** 1349,1359 **** /* * Scroll the current window up by "line_count" logical lines. "CTRL-E" */ - /*ARGSUSED*/ void scrollup(line_count, byfold) long line_count; ! int byfold; /* TRUE: count a closed fold as one line */ { #if defined(FEAT_FOLDING) || defined(FEAT_DIFF) linenr_T lnum; --- 1348,1357 ---- /* * Scroll the current window up by "line_count" logical lines. "CTRL-E" */ void scrollup(line_count, byfold) long line_count; ! int byfold UNUSED; /* TRUE: count a closed fold as one line */ { #if defined(FEAT_FOLDING) || defined(FEAT_DIFF) linenr_T lnum; *** ../vim-7.2.173/src/normal.c 2009-04-29 17:39:17.000000000 +0200 --- src/normal.c 2009-05-15 21:08:07.000000000 +0200 *************** *** 493,506 **** int i; /* Fill the index table with a one to one relation. */ ! for (i = 0; i < NV_CMDS_SIZE; ++i) nv_cmd_idx[i] = i; /* Sort the commands by the command character. */ qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare); /* Find the first entry that can't be indexed by the command character. */ ! for (i = 0; i < NV_CMDS_SIZE; ++i) if (i != nv_cmds[nv_cmd_idx[i]].cmd_char) break; nv_max_linear = i - 1; --- 493,506 ---- int i; /* Fill the index table with a one to one relation. */ ! for (i = 0; i < (int)NV_CMDS_SIZE; ++i) nv_cmd_idx[i] = i; /* Sort the commands by the command character. */ qsort((void *)&nv_cmd_idx, (size_t)NV_CMDS_SIZE, sizeof(short), nv_compare); /* Find the first entry that can't be indexed by the command character. */ ! for (i = 0; i < (int)NV_CMDS_SIZE; ++i) if (i != nv_cmds[nv_cmd_idx[i]].cmd_char) break; nv_max_linear = i - 1; *************** *** 561,571 **** /* * Execute a command in Normal mode. */ - /*ARGSUSED*/ void normal_cmd(oap, toplevel) oparg_T *oap; ! int toplevel; /* TRUE when called from main() */ { cmdarg_T ca; /* command arguments */ int c; --- 561,570 ---- /* * Execute a command in Normal mode. */ void normal_cmd(oap, toplevel) oparg_T *oap; ! int toplevel UNUSED; /* TRUE when called from main() */ { cmdarg_T ca; /* command arguments */ int c; *************** *** 2188,2197 **** /* * Handle the "g@" operator: call 'operatorfunc'. */ - /*ARGSUSED*/ static void op_function(oap) ! oparg_T *oap; { #ifdef FEAT_EVAL char_u *(argv[1]); --- 2187,2195 ---- /* * Handle the "g@" operator: call 'operatorfunc'. */ static void op_function(oap) ! oparg_T *oap UNUSED; { #ifdef FEAT_EVAL char_u *(argv[1]); *************** *** 4100,4109 **** * Command character that doesn't do anything, but unlike nv_ignore() does * start edit(). Used for "startinsert" executed while starting up. */ - /*ARGSUSED */ static void nv_nop(cap) ! cmdarg_T *cap; { } --- 4098,4106 ---- * Command character that doesn't do anything, but unlike nv_ignore() does * start edit(). Used for "startinsert" executed while starting up. */ static void nv_nop(cap) ! cmdarg_T *cap UNUSED; { } *************** *** 5241,5247 **** if (cap->oap->op_type != OP_NOP && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count || cap->oap->start.col > ! STRLEN(ml_get(cap->oap->start.lnum)))) clearopbeep(cap->oap); } } --- 5238,5244 ---- if (cap->oap->op_type != OP_NOP && (cap->oap->start.lnum > curbuf->b_ml.ml_line_count || cap->oap->start.col > ! (colnr_T)STRLEN(ml_get(cap->oap->start.lnum)))) clearopbeep(cap->oap); } } *************** *** 5816,5822 **** for (n = cap->count1; n > 0; --n) { if ((!PAST_LINE && oneright() == FAIL) ! || (PAST_LINE && *ml_get_cursor() == NUL)) { /* * wraps to next line if 'whichwrap' has 's'. --- 5813,5822 ---- for (n = cap->count1; n > 0; --n) { if ((!PAST_LINE && oneright() == FAIL) ! #ifdef FEAT_VISUAL ! || (PAST_LINE && *ml_get_cursor() == NUL) ! #endif ! ) { /* * wraps to next line if 'whichwrap' has 's'. *** ../vim-7.2.173/src/option.c 2009-03-18 15:40:03.000000000 +0100 --- src/option.c 2009-05-15 21:08:50.000000000 +0200 *************** *** 5302,5315 **** * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid". */ - /*ARGSUSED*/ void set_string_option_direct(name, opt_idx, val, opt_flags, set_sid) char_u *name; int opt_idx; char_u *val; int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */ ! int set_sid; { char_u *s; char_u **varp; --- 5302,5314 ---- * When "set_sid" is zero set the scriptID to current_SID. When "set_sid" is * SID_NONE don't set the scriptID. Otherwise set the scriptID to "set_sid". */ void set_string_option_direct(name, opt_idx, val, opt_flags, set_sid) char_u *name; int opt_idx; char_u *val; int opt_flags; /* OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL */ ! int set_sid UNUSED; { char_u *s; char_u **varp; *************** *** 9357,9366 **** /* * Check for NULL pointers in a winopt_T and replace them with empty_option. */ - /*ARGSUSED*/ void check_winopt(wop) ! winopt_T *wop; { #ifdef FEAT_FOLDING check_string_option(&wop->wo_fdi); --- 9356,9364 ---- /* * Check for NULL pointers in a winopt_T and replace them with empty_option. */ void check_winopt(wop) ! winopt_T *wop UNUSED; { #ifdef FEAT_FOLDING check_string_option(&wop->wo_fdi); *************** *** 9382,9391 **** /* * Free the allocated memory inside a winopt_T. */ - /*ARGSUSED*/ void clear_winopt(wop) ! winopt_T *wop; { #ifdef FEAT_FOLDING clear_string_option(&wop->wo_fdi); --- 9380,9388 ---- /* * Free the allocated memory inside a winopt_T. */ void clear_winopt(wop) ! winopt_T *wop UNUSED; { #ifdef FEAT_FOLDING clear_string_option(&wop->wo_fdi); *** ../vim-7.2.173/src/os_unix.c 2009-05-13 12:46:36.000000000 +0200 --- src/os_unix.c 2009-05-15 21:13:43.000000000 +0200 *************** *** 458,467 **** * Return total amount of memory available in Kbyte. * Doesn't change when memory has been allocated. */ - /* ARGSUSED */ long_u mch_total_mem(special) ! int special; { # ifdef __EMX__ return ulimit(3, 0L) >> 10; /* always 32MB? */ --- 458,466 ---- * Return total amount of memory available in Kbyte. * Doesn't change when memory has been allocated. */ long_u mch_total_mem(special) ! int special UNUSED; { # ifdef __EMX__ return ulimit(3, 0L) >> 10; /* always 32MB? */ *************** *** 815,821 **** * Let me try it with a few tricky defines from my own osdef.h (jw). */ #if defined(SIGWINCH) - /* ARGSUSED */ static RETSIGTYPE sig_winch SIGDEFARG(sigarg) { --- 814,819 ---- *************** *** 1355,1365 **** /* * Check_win checks whether we have an interactive stdout. */ - /* ARGSUSED */ int mch_check_win(argc, argv) ! int argc; ! char **argv; { #ifdef OS2 /* --- 1353,1362 ---- /* * Check_win checks whether we have an interactive stdout. */ int mch_check_win(argc, argv) ! int argc UNUSED; ! char **argv UNUSED; { #ifdef OS2 /* *************** *** 2467,2473 **** } /* Catch file names which are too long. */ ! if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len) return FAIL; /* Do not append ".", "/dir/." is equal to "/dir". */ --- 2464,2470 ---- } /* Catch file names which are too long. */ ! if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) return FAIL; /* Do not append ".", "/dir/." is equal to "/dir". */ *************** *** 2686,2692 **** */ vim_acl_T mch_get_acl(fname) ! char_u *fname; { vim_acl_T ret = NULL; #ifdef HAVE_POSIX_ACL --- 2683,2689 ---- */ vim_acl_T mch_get_acl(fname) ! char_u *fname UNUSED; { vim_acl_T ret = NULL; #ifdef HAVE_POSIX_ACL *************** *** 2746,2752 **** */ void mch_set_acl(fname, aclent) ! char_u *fname; vim_acl_T aclent; { if (aclent == NULL) --- 2743,2749 ---- */ void mch_set_acl(fname, aclent) ! char_u *fname UNUSED; vim_acl_T aclent; { if (aclent == NULL) *************** *** 2789,2798 **** /* * Set hidden flag for "name". */ - /* ARGSUSED */ void mch_hide(name) ! char_u *name; { /* can't hide a file */ } --- 2786,2794 ---- /* * Set hidden flag for "name". */ void mch_hide(name) ! char_u *name UNUSED; { /* can't hide a file */ } *************** *** 3481,3490 **** /* * set screen mode, always fails. */ - /* ARGSUSED */ int mch_screenmode(arg) ! char_u *arg; { EMSG(_(e_screenmode)); return FAIL; --- 3477,3485 ---- /* * set screen mode, always fails. */ int mch_screenmode(arg) ! char_u *arg UNUSED; { EMSG(_(e_screenmode)); return FAIL; *************** *** 4189,4197 **** { s = vim_strchr(lp + written, NL); len = write(toshell_fd, (char *)lp + written, ! s == NULL ? l : s - (lp + written)); } ! if (len == l) { /* Finished a line, add a NL, unless this line * should not have one. */ --- 4184,4193 ---- { s = vim_strchr(lp + written, NL); len = write(toshell_fd, (char *)lp + written, ! s == NULL ? l ! : (size_t)(s - (lp + written))); } ! if (len == (int)l) { /* Finished a line, add a NL, unless this line * should not have one. */ *************** *** 4746,4752 **** * Returns also, when a request from Sniff is waiting -- toni. * Or when a Linux GPM mouse event is waiting. */ - /* ARGSUSED */ #if defined(__BEOS__) int #else --- 4742,4747 ---- *************** *** 4755,4761 **** RealWaitForChar(fd, msec, check_for_gpm) int fd; long msec; ! int *check_for_gpm; { int ret; #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) --- 4750,4756 ---- RealWaitForChar(fd, msec, check_for_gpm) int fd; long msec; ! int *check_for_gpm UNUSED; { int ret; #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) *************** *** 5572,5578 **** i = fread((char *)buffer, 1, len, fd); fclose(fd); mch_remove(tempname); ! if (i != len) { /* unexpected read error */ EMSG2(_(e_notread), tempname); --- 5567,5573 ---- i = fread((char *)buffer, 1, len, fd); fclose(fd); mch_remove(tempname); ! if (i != (int)len) { /* unexpected read error */ EMSG2(_(e_notread), tempname); *************** *** 5633,5639 **** if (shell_style == STYLE_PRINT && !did_find_nul) { /* If there is a NUL, set did_find_nul, else set check_spaces */ ! if (len && (int)STRLEN(buffer) < len - 1) did_find_nul = TRUE; else check_spaces = TRUE; --- 5628,5634 ---- if (shell_style == STYLE_PRINT && !did_find_nul) { /* If there is a NUL, set did_find_nul, else set check_spaces */ ! if (len && (int)STRLEN(buffer) < (int)len - 1) did_find_nul = TRUE; else check_spaces = TRUE; *** ../vim-7.2.173/src/os_unix.h 2009-05-13 12:46:36.000000000 +0200 --- src/os_unix.h 2009-05-15 21:10:31.000000000 +0200 *************** *** 126,132 **** # define SIGDUMMYARG 0, 0, (struct sigcontext *)0 # else # define SIGPROTOARG (int) ! # define SIGDEFARG(s) (s) int s; # define SIGDUMMYARG 0 # endif #else --- 126,132 ---- # define SIGDUMMYARG 0, 0, (struct sigcontext *)0 # else # define SIGPROTOARG (int) ! # define SIGDEFARG(s) (s) int s UNUSED; # define SIGDUMMYARG 0 # endif #else *** ../vim-7.2.173/src/regexp.c 2009-02-21 22:03:06.000000000 +0100 --- src/regexp.c 2009-05-15 21:14:18.000000000 +0200 *************** *** 471,477 **** if ((*pp)[1] == ':') { ! for (i = 0; i < sizeof(class_names) / sizeof(*class_names); ++i) if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) { *pp += STRLEN(class_names[i]) + 2; --- 471,477 ---- if ((*pp)[1] == ':') { ! for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i) if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) { *pp += STRLEN(class_names[i]) + 2; *************** *** 3362,3373 **** * Match a regexp against a string ("line" points to the string) or multiple * lines ("line" is NULL, use reg_getline()). */ - /*ARGSUSED*/ static long vim_regexec_both(line, col, tm) char_u *line; colnr_T col; /* column to start looking for match */ ! proftime_T *tm; /* timeout limit or NULL */ { regprog_T *prog; char_u *s; --- 3362,3372 ---- * Match a regexp against a string ("line" points to the string) or multiple * lines ("line" is NULL, use reg_getline()). */ static long vim_regexec_both(line, col, tm) char_u *line; colnr_T col; /* column to start looking for match */ ! proftime_T *tm UNUSED; /* timeout limit or NULL */ { regprog_T *prog; char_u *s; *** ../vim-7.2.173/src/search.c 2009-04-22 18:43:06.000000000 +0200 --- src/search.c 2009-05-15 21:16:36.000000000 +0200 *************** *** 522,528 **** * When FEAT_EVAL is defined, returns the index of the first matching * subpattern plus one; one if there was none. */ - /*ARGSUSED*/ int searchit(win, buf, pos, dir, pat, count, options, pat_use, stop_lnum, tm) win_T *win; /* window to search in; can be NULL for a --- 522,527 ---- *************** *** 535,541 **** int options; int pat_use; /* which pattern to use when "pat" is empty */ linenr_T stop_lnum; /* stop after this line number when != 0 */ ! proftime_T *tm; /* timeout limit or NULL */ { int found; linenr_T lnum; /* no init to shut up Apollo cc */ --- 534,540 ---- int options; int pat_use; /* which pattern to use when "pat" is empty */ linenr_T stop_lnum; /* stop after this line number when != 0 */ ! proftime_T *tm UNUSED; /* timeout limit or NULL */ { int found; linenr_T lnum; /* no init to shut up Apollo cc */ *************** *** 554,561 **** int save_called_emsg = called_emsg; #ifdef FEAT_SEARCH_EXTRA int break_loop = FALSE; - #else - # define break_loop FALSE #endif if (search_regcomp(pat, RE_SEARCH, pat_use, --- 553,558 ---- *************** *** 940,946 **** * twice. */ if (!p_ws || stop_lnum != 0 || got_int || called_emsg ! || break_loop || found || loop) break; /* --- 937,946 ---- * twice. */ if (!p_ws || stop_lnum != 0 || got_int || called_emsg ! #ifdef FEAT_SEARCH_EXTRA ! || break_loop ! #endif ! || found || loop) break; /* *************** *** 958,964 **** give_warning((char_u *)_(dir == BACKWARD ? top_bot_msg : bot_top_msg), TRUE); } ! if (got_int || called_emsg || break_loop) break; } while (--count > 0 && found); /* stop after count matches or no match */ --- 958,968 ---- give_warning((char_u *)_(dir == BACKWARD ? top_bot_msg : bot_top_msg), TRUE); } ! if (got_int || called_emsg ! #ifdef FEAT_SEARCH_EXTRA ! || break_loop ! #endif ! ) break; } while (--count > 0 && found); /* stop after count matches or no match */ *** ../vim-7.2.173/src/tag.c 2009-02-23 00:53:35.000000000 +0100 --- src/tag.c 2009-05-15 21:16:59.000000000 +0200 *************** *** 1105,1114 **** /* * Print the tag stack */ - /*ARGSUSED*/ void do_tags(eap) ! exarg_T *eap; { int i; char_u *name; --- 1105,1113 ---- /* * Print the tag stack */ void do_tags(eap) ! exarg_T *eap UNUSED; { int i; char_u *name; *************** *** 2530,2540 **** * Callback function for finding all "tags" and "tags-??" files in * 'runtimepath' doc directories. */ - /*ARGSUSED*/ static void found_tagfile_cb(fname, cookie) char_u *fname; ! void *cookie; { if (ga_grow(&tag_fnames, 1) == OK) ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = --- 2529,2538 ---- * Callback function for finding all "tags" and "tags-??" files in * 'runtimepath' doc directories. */ static void found_tagfile_cb(fname, cookie) char_u *fname; ! void *cookie UNUSED; { if (ga_grow(&tag_fnames, 1) == OK) ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = *** ../vim-7.2.173/src/version.c 2009-05-14 22:19:19.000000000 +0200 --- src/version.c 2009-05-15 21:21:44.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 174, /**/ -- TERRY GILLIAM PLAYED: PATSY (ARTHUR'S TRUSTY STEED), THE GREEN KNIGHT SOOTHSAYER, BRIDGEKEEPER, SIR GAWAIN (THE FIRST TO BE KILLED BY THE RABBIT) "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.175 --- To: vim-dev at vim.org Subject: Patch 7.2.175 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.175 Problem: Compiler warning in OpenBSD. Solution: Add type cast for NULL. (Dasn) Files: src/if_cscope.c *** ../vim-7.2.174/src/if_cscope.c 2009-04-22 16:22:44.000000000 +0200 --- src/if_cscope.c 2009-05-16 16:15:03.000000000 +0200 *************** *** 994,1000 **** vim_free(ppath); #if defined(UNIX) ! if (execl("/bin/sh", "sh", "-c", cmd, NULL) == -1) PERROR(_("cs_create_connection exec failed")); exit(127); --- 994,1000 ---- vim_free(ppath); #if defined(UNIX) ! if (execl("/bin/sh", "sh", "-c", cmd, (char *)NULL) == -1) PERROR(_("cs_create_connection exec failed")); exit(127); *** ../vim-7.2.174/src/version.c 2009-05-15 21:31:11.000000000 +0200 --- src/version.c 2009-05-16 16:13:15.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 175, /**/ -- Every time I lose weight, it finds me again! /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.176 --- To: vim-dev at vim.org Subject: Patch 7.2.176 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.176 Problem: Exceptions for splint are not useful. Solution: Remove the S_SPLINT_S ifdefs. Files: src/edit.c, src/ex_cmds.c, src/ex_docmd.c, src/os_unix.c, src/os_unix.h, src/os_unixx.h, src/structs.h, src/term.h *** ../vim-7.2.175/src/edit.c 2009-05-15 21:31:11.000000000 +0200 --- src/edit.c 2009-05-16 16:18:35.000000000 +0200 *************** *** 69,79 **** compl_T *cp_prev; char_u *cp_str; /* matched text */ char cp_icase; /* TRUE or FALSE: ignore case */ - #ifdef S_SPLINT_S /* splint can't handle array of pointers */ - char_u **cp_text; /* text for the menu */ - #else char_u *(cp_text[CPT_COUNT]); /* text for the menu */ - #endif char_u *cp_fname; /* file containing the match, allocated when * cp_flags has FREE_FNAME */ int cp_flags; /* ORIGINAL_TEXT, CONT_S_IPOS or FREE_FNAME */ --- 69,75 ---- *************** *** 3835,3845 **** char_u *word; int icase = FALSE; int adup = FALSE; - #ifdef S_SPLINT_S /* splint doesn't parse array of pointers correctly */ - char_u **cptext; - #else char_u *(cptext[CPT_COUNT]); - #endif if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL) { --- 3831,3837 ---- *** ../vim-7.2.175/src/ex_cmds.c 2009-05-15 21:31:11.000000000 +0200 --- src/ex_cmds.c 2009-05-16 16:18:56.000000000 +0200 *************** *** 5776,5785 **** { char_u *s, *d; int i; - #ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ - static char **mtable; - static char **rtable; - #else static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", "/*", "/\\*", "\"*", "**", "/\\(\\)", --- 5776,5781 ---- *************** *** 5794,5800 **** "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", "\\[count]", "\\[quotex]", "\\[range]", "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; - #endif int flags; d = IObuff; /* assume IObuff is long enough! */ --- 5790,5795 ---- *** ../vim-7.2.175/src/ex_docmd.c 2009-05-15 21:31:11.000000000 +0200 --- src/ex_docmd.c 2009-05-16 16:19:26.000000000 +0200 *************** *** 9395,9407 **** { int len; int i; ! #ifdef S_SPLINT_S /* splint can't handle array of pointers */ ! static char **spec_str; ! static char *(nospec_str[]) ! #else ! static char *(spec_str[]) ! #endif ! = { "%", #define SPEC_PERC 0 "#", --- 9395,9401 ---- { int len; int i; ! static char *(spec_str[]) = { "%", #define SPEC_PERC 0 "#", *** ../vim-7.2.175/src/os_unix.c 2009-05-15 21:31:11.000000000 +0200 --- src/os_unix.c 2009-05-16 16:20:00.000000000 +0200 *************** *** 199,207 **** #endif #ifndef SIG_ERR ! # ifndef S_SPLINT_S ! # define SIG_ERR ((RETSIGTYPE (*)())-1) ! # endif #endif /* volatile because it is used in signal handler sig_winch(). */ --- 199,205 ---- #endif #ifndef SIG_ERR ! # define SIG_ERR ((RETSIGTYPE (*)())-1) #endif /* volatile because it is used in signal handler sig_winch(). */ *************** *** 443,451 **** #if defined(HAVE_TOTAL_MEM) || defined(PROTO) # ifdef HAVE_SYS_RESOURCE_H ! # ifndef S_SPLINT_S /* splint crashes on bits/resource.h */ ! # include ! # endif # endif # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) # include --- 441,447 ---- #if defined(HAVE_TOTAL_MEM) || defined(PROTO) # ifdef HAVE_SYS_RESOURCE_H ! # include # endif # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) # include *** ../vim-7.2.175/src/os_unix.h 2009-05-15 21:31:11.000000000 +0200 --- src/os_unix.h 2009-05-16 16:17:22.000000000 +0200 *************** *** 53,61 **** #endif #ifdef HAVE_UNISTD_H ! # ifndef S_SPLINT_S /* splint crashes on bits/confname.h */ ! # include ! # endif #endif #ifdef HAVE_LIBC_H --- 53,59 ---- #endif #ifdef HAVE_UNISTD_H ! # include #endif #ifdef HAVE_LIBC_H *** ../vim-7.2.175/src/structs.h 2009-05-13 20:47:07.000000000 +0200 --- src/structs.h 2009-05-16 16:17:51.000000000 +0200 *************** *** 1646,1656 **** #endif #ifdef FEAT_DIFF diff_T *tp_first_diff; - # ifdef S_SPLINT_S /* splint doesn't understand the array of pointers */ - buf_T **tp_diffbuf; - # else buf_T *(tp_diffbuf[DB_COUNT]); - # endif int tp_diff_invalid; /* list of diffs is outdated */ #endif frame_T *tp_snapshot; /* window layout snapshot */ --- 1646,1652 ---- *** ../vim-7.2.175/src/term.h 2009-05-13 18:54:14.000000000 +0200 --- src/term.h 2009-05-16 16:20:06.000000000 +0200 *************** *** 96,106 **** * - there should be code in term.c to obtain the value from the termcap */ - #ifdef S_SPLINT_S /* splint doesn't understand array of pointers */ - extern char_u **term_strings; /* current terminal strings */ - #else extern char_u *(term_strings[]); /* current terminal strings */ - #endif /* * strings used for terminal --- 96,102 ---- *** ../vim-7.2.175/src/version.c 2009-05-16 16:15:39.000000000 +0200 --- src/version.c 2009-05-16 16:34:10.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 176, /**/ -- Corn oil comes from corn and olive oil comes from olives, so where does baby oil come from? /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.177 --- To: vim-dev at vim.org Subject: Patch 7.2.177 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.177 Problem: Compiler warnings when using -Wextra Solution: Add UNUSED and type casts. Files: src/eval.c, src/ex_docmd.c, src/ex_eval.c, src/ex_getln.c, src/fileio.c, src/hardcopy.c, src/if_cscope.c, src/if_xcmdsrv.c, src/farsi.c, src/mark.c, src/menu.c *** ../vim-7.2.176/src/eval.c 2009-05-15 21:31:11.000000000 +0200 --- src/eval.c 2009-05-16 16:58:30.000000000 +0200 *************** *** 3772,3778 **** * Function given to ExpandGeneric() to obtain the list of user defined * (global/buffer/window/built-in) variable names. */ - /*ARGSUSED*/ char_u * get_user_var_name(xp, idx) expand_T *xp; --- 3772,3777 ---- *************** *** 7787,7793 **** * Function given to ExpandGeneric() to obtain the list of internal or * user defined variable or function names. */ - /*ARGSUSED*/ char_u * get_expr_name(xp, idx) expand_T *xp; --- 7786,7791 ---- *************** *** 8655,8664 **** /* * "byte2line(byte)" function */ - /*ARGSUSED*/ static void f_byte2line(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { #ifndef FEAT_BYTEOFF --- 8653,8661 ---- /* * "byte2line(byte)" function */ static void f_byte2line(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { #ifndef FEAT_BYTEOFF *************** *** 8678,8684 **** /* * "byteidx()" function */ - /*ARGSUSED*/ static void f_byteidx(argvars, rettv) typval_T *argvars; --- 8675,8680 ---- *************** *** 8852,8858 **** static void f_clearmatches(argvars, rettv) typval_T *argvars UNUSED; ! typval_T *rettv; { #ifdef FEAT_SEARCH_EXTRA clear_matches(curwin); --- 8848,8854 ---- static void f_clearmatches(argvars, rettv) typval_T *argvars UNUSED; ! typval_T *rettv UNUSED; { #ifdef FEAT_SEARCH_EXTRA clear_matches(curwin); *************** *** 8916,8926 **** /* * "complete()" function */ - /*ARGSUSED*/ static void f_complete(argvars, rettv) typval_T *argvars; ! typval_T *rettv; { int startcol; --- 8912,8921 ---- /* * "complete()" function */ static void f_complete(argvars, rettv) typval_T *argvars; ! typval_T *rettv UNUSED; { int startcol; *************** *** 8951,8957 **** /* * "complete_add()" function */ - /*ARGSUSED*/ static void f_complete_add(argvars, rettv) typval_T *argvars; --- 8946,8951 ---- *************** *** 8963,8972 **** /* * "complete_check()" function */ - /*ARGSUSED*/ static void f_complete_check(argvars, rettv) ! typval_T *argvars; typval_T *rettv; { int saved = RedrawingDisabled; --- 8957,8965 ---- /* * "complete_check()" function */ static void f_complete_check(argvars, rettv) ! typval_T *argvars UNUSED; typval_T *rettv; { int saved = RedrawingDisabled; *************** *** 8981,8991 **** /* * "confirm(message, buttons[, default [, type]])" function */ - /*ARGSUSED*/ static void f_confirm(argvars, rettv) ! typval_T *argvars; ! typval_T *rettv; { #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) char_u *message; --- 8974,8983 ---- /* * "confirm(message, buttons[, default [, type]])" function */ static void f_confirm(argvars, rettv) ! typval_T *argvars UNUSED; ! typval_T *rettv UNUSED; { #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) char_u *message; *************** *** 9150,9160 **** * * Checks the existence of a cscope connection. */ - /*ARGSUSED*/ static void f_cscope_connection(argvars, rettv) ! typval_T *argvars; ! typval_T *rettv; { #ifdef FEAT_CSCOPE int num = 0; --- 9142,9151 ---- * * Checks the existence of a cscope connection. */ static void f_cscope_connection(argvars, rettv) ! typval_T *argvars UNUSED; ! typval_T *rettv UNUSED; { #ifdef FEAT_CSCOPE int num = 0; *************** *** 9181,9187 **** * Moves the cursor to the specified line and column. * Returns 0 when the position could be set, -1 otherwise. */ - /*ARGSUSED*/ static void [...2327 lines suppressed...] if (!curwin->w_cursor.col && p_ri) --- 595,602 ---- { int tempc; ! if (curwin->w_cursor.col != 0 && ! (curwin->w_cursor.col + 1 == (colnr_T)STRLEN(ml_get_curline()))) return; if (!curwin->w_cursor.col && p_ri) *************** *** 663,670 **** { int tempc; ! if (!curwin->w_cursor.col && ! (curwin->w_cursor.col+1 == STRLEN(ml_get_curline()))) return; if (!curwin->w_cursor.col && p_ri) --- 664,671 ---- { int tempc; ! if (curwin->w_cursor.col != 0 && ! (curwin->w_cursor.col + 1 == (colnr_T)STRLEN(ml_get_curline()))) return; if (!curwin->w_cursor.col && p_ri) *** ../vim-7.2.176/src/mark.c 2009-04-29 11:00:09.000000000 +0200 --- src/mark.c 2009-05-16 17:14:56.000000000 +0200 *************** *** 884,893 **** /* * print the jumplist */ - /*ARGSUSED*/ void ex_jumps(eap) ! exarg_T *eap; { int i; char_u *name; --- 884,892 ---- /* * print the jumplist */ void ex_jumps(eap) ! exarg_T *eap UNUSED; { int i; char_u *name; *************** *** 933,942 **** /* * print the changelist */ - /*ARGSUSED*/ void ex_changes(eap) ! exarg_T *eap; { int i; char_u *name; --- 932,940 ---- /* * print the changelist */ void ex_changes(eap) ! exarg_T *eap UNUSED; { int i; char_u *name; *** ../vim-7.2.176/src/menu.c 2008-08-17 23:43:53.000000000 +0200 --- src/menu.c 2009-05-16 17:19:57.000000000 +0200 *************** *** 231,237 **** if (skipdigits(menu_path + 7) == p) { menuarg.iconidx = atoi((char *)menu_path + 7); ! if (menuarg.iconidx >= TOOLBAR_NAME_COUNT) menuarg.iconidx = -1; else menuarg.icon_builtin = TRUE; --- 231,237 ---- if (skipdigits(menu_path + 7) == p) { menuarg.iconidx = atoi((char *)menu_path + 7); ! if (menuarg.iconidx >= (int)TOOLBAR_NAME_COUNT) menuarg.iconidx = -1; else menuarg.icon_builtin = TRUE; *************** *** 239,245 **** } else { ! for (i = 0; i < TOOLBAR_NAME_COUNT; ++i) if (STRNCMP(toolbar_names[i], menu_path, p - menu_path) == 0) { --- 239,245 ---- } else { ! for (i = 0; i < (int)TOOLBAR_NAME_COUNT; ++i) if (STRNCMP(toolbar_names[i], menu_path, p - menu_path) == 0) { *************** *** 1341,1350 **** * Function given to ExpandGeneric() to obtain the list of (sub)menus (not * entries). */ - /*ARGSUSED*/ char_u * get_menu_name(xp, idx) ! expand_T *xp; int idx; { static vimmenu_T *menu = NULL; --- 1341,1349 ---- * Function given to ExpandGeneric() to obtain the list of (sub)menus (not * entries). */ char_u * get_menu_name(xp, idx) ! expand_T *xp UNUSED; int idx; { static vimmenu_T *menu = NULL; *************** *** 1378,1387 **** * Function given to ExpandGeneric() to obtain the list of menus and menu * entries. */ - /*ARGSUSED*/ char_u * get_menu_names(xp, idx) ! expand_T *xp; int idx; { static vimmenu_T *menu = NULL; --- 1377,1385 ---- * Function given to ExpandGeneric() to obtain the list of menus and menu * entries. */ char_u * get_menu_names(xp, idx) ! expand_T *xp UNUSED; int idx; { static vimmenu_T *menu = NULL; *************** *** 1739,1748 **** /* * Return TRUE if the menu is the tearoff menu. */ - /*ARGSUSED*/ static int menu_is_tearoff(name) ! char_u *name; { #ifdef FEAT_GUI return (STRCMP(name, TEAR_STRING) == 0); --- 1737,1745 ---- /* * Return TRUE if the menu is the tearoff menu. */ static int menu_is_tearoff(name) ! char_u *name UNUSED; { #ifdef FEAT_GUI return (STRCMP(name, TEAR_STRING) == 0); *** ../vim-7.2.176/src/version.c 2009-05-16 16:36:25.000000000 +0200 --- src/version.c 2009-05-16 17:22:08.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 177, /**/ -- (letter from Mark to Mike, about the film's probable certificate) For an 'A' we would have to: Lose as many shits as possible; Take Jesus Christ out, if possible; Loose "I fart in your general direction"; Lose "the oral sex"; Lose "oh, fuck off"; Lose "We make castanets out of your testicles" "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.178 --- To: vim-dev at vim.org Subject: Patch 7.2.178 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.178 Problem: Using negative value for device number might not work. Solution: Use a separate flag for whether ffv_dev was set. Files: src/misc2.c *** ../vim-7.2.177/src/misc2.c 2009-04-29 11:00:09.000000000 +0200 --- src/misc2.c 2009-05-16 21:05:10.000000000 +0200 *************** *** 2841,2847 **** get_key_name(i) int i; { ! if (i >= KEY_NAMES_TABLE_LEN) return NULL; return key_names_table[i].name; } --- 2841,2847 ---- get_key_name(i) int i; { ! if (i >= (int)KEY_NAMES_TABLE_LEN) return NULL; return key_names_table[i].name; } *************** *** 3869,3875 **** * use filename. */ #ifdef UNIX ! int ffv_dev; /* device number (-1 if not set) */ ino_t ffv_ino; /* inode number */ #endif /* The memory for this struct is allocated according to the length of --- 3869,3876 ---- * use filename. */ #ifdef UNIX ! int ffv_dev_valid; /* ffv_dev and ffv_ino were set */ ! dev_t ffv_dev; /* device number */ ino_t ffv_ino; /* inode number */ #endif /* The memory for this struct is allocated according to the length of *************** *** 4059,4071 **** * This function silently ignores a few errors, vim_findfile() will have * limited functionality then. */ - /*ARGSUSED*/ void * vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what, search_ctx_arg, tagfile, rel_fname) char_u *path; char_u *filename; ! char_u *stopdirs; int level; int free_visited; int find_what; --- 4060,4071 ---- * This function silently ignores a few errors, vim_findfile() will have * limited functionality then. */ void * vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what, search_ctx_arg, tagfile, rel_fname) char_u *path; char_u *filename; ! char_u *stopdirs UNUSED; int level; int free_visited; int find_what; *************** *** 5063,5072 **** { if ( #ifdef UNIX ! !url ! ? (vp->ffv_dev == st.st_dev ! && vp->ffv_ino == st.st_ino) ! : #endif fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0 ) --- 5063,5071 ---- { if ( #ifdef UNIX ! !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev ! && vp->ffv_ino == st.st_ino) ! : #endif fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0 ) *************** *** 5091,5104 **** #ifdef UNIX if (!url) { vp->ffv_ino = st.st_ino; vp->ffv_dev = st.st_dev; vp->ffv_fname[0] = NUL; } else { ! vp->ffv_ino = 0; ! vp->ffv_dev = -1; #endif STRCPY(vp->ffv_fname, ff_expand_buffer); #ifdef UNIX --- 5090,5103 ---- #ifdef UNIX if (!url) { + vp->ffv_dev_valid = TRUE; vp->ffv_ino = st.st_ino; vp->ffv_dev = st.st_dev; vp->ffv_fname[0] = NUL; } else { ! vp->ffv_dev_valid = FALSE; #endif STRCPY(vp->ffv_fname, ff_expand_buffer); #ifdef UNIX *** ../vim-7.2.177/src/version.c 2009-05-16 17:29:37.000000000 +0200 --- src/version.c 2009-05-16 21:00:15.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 178, /**/ -- FATAL ERROR! SYSTEM HALTED! - Press any key to continue doing nothing. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.179 --- To: vim-dev at vim.org Subject: Patch 7.2.179 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.179 Problem: Using negative value for device number might not work. Solution: Use a separate flag for whether sn_dev was set. Files: src/ex_cmds2.c *** ../vim-7.2.178/src/ex_cmds2.c 2009-05-14 22:19:19.000000000 +0200 --- src/ex_cmds2.c 2009-05-16 21:13:29.000000000 +0200 *************** *** 28,34 **** { char_u *sn_name; # ifdef UNIX ! int sn_dev; ino_t sn_ino; # endif # ifdef FEAT_PROFILE --- 28,35 ---- { char_u *sn_name; # ifdef UNIX ! int sn_dev_valid; ! dev_t sn_dev; ino_t sn_ino; # endif # ifdef FEAT_PROFILE *************** *** 3049,3055 **** /* Compare dev/ino when possible, it catches symbolic * links. Also compare file names, the inode may change * when the file was edited. */ ! ((stat_ok && si->sn_dev != -1) && (si->sn_dev == st.st_dev && si->sn_ino == st.st_ino)) || # endif --- 3050,3056 ---- /* Compare dev/ino when possible, it catches symbolic * links. Also compare file names, the inode may change * when the file was edited. */ ! ((stat_ok && si->sn_dev_valid) && (si->sn_dev == st.st_dev && si->sn_ino == st.st_ino)) || # endif *************** *** 3076,3086 **** # ifdef UNIX if (stat_ok) { si->sn_dev = st.st_dev; si->sn_ino = st.st_ino; } else ! si->sn_dev = -1; # endif /* Allocate the local script variables to use for this script. */ --- 3077,3088 ---- # ifdef UNIX if (stat_ok) { + si->sn_dev_valid = TRUE; si->sn_dev = st.st_dev; si->sn_ino = st.st_ino; } else ! si->sn_dev_valid = FALSE; # endif /* Allocate the local script variables to use for this script. */ *** ../vim-7.2.178/src/version.c 2009-05-16 21:06:36.000000000 +0200 --- src/version.c 2009-05-16 21:15:08.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 179, /**/ -- (letter from Mark to Mike, about the film's probable certificate) I would like to get back to the Censor and agree to lose the shits, take the odd Jesus Christ out and lose Oh fuck off, but to retain 'fart in your general direction', 'castanets of your testicles' and 'oral sex' and ask him for an 'A' rating on that basis. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.180 --- To: vim-dev at vim.org Subject: Patch 7.2.180 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.180 Problem: Some more compiler warnings when using gcc -Wextra. Solution: Add UNUSED and type casts. Files: src/buffer.c, src/ex_cmds.c, src/macros.h, src/main.c, src/menu.c, src/message.c, src/misc1.c, src/mbyte.c, src/normal.c, src/option.c, src/os_unix.c, src/quickfix.c, src/screen.c, src/search.c, src/spell.c, src/syntax.c, src/tag.c, src/term.c, src/ui.c *** ../vim-7.2.179/src/buffer.c 2009-05-14 22:19:19.000000000 +0200 --- src/buffer.c 2009-05-16 22:21:41.000000000 +0200 *************** *** 2025,2037 **** * Return fnum of the found buffer. * Return < 0 for error. */ - /*ARGSUSED*/ int buflist_findpat(pattern, pattern_end, unlisted, diffmode) char_u *pattern; char_u *pattern_end; /* pointer to first char after pattern */ int unlisted; /* find unlisted buffers */ ! int diffmode; /* find diff-mode buffers only */ { buf_T *buf; regprog_T *prog; --- 2025,2036 ---- * Return fnum of the found buffer. * Return < 0 for error. */ int buflist_findpat(pattern, pattern_end, unlisted, diffmode) char_u *pattern; char_u *pattern_end; /* pointer to first char after pattern */ int unlisted; /* find unlisted buffers */ ! int diffmode UNUSED; /* find diff-mode buffers only */ { buf_T *buf; regprog_T *prog; *************** *** 2539,2545 **** /* * List all know file names (for :files and :buffers command). */ - /*ARGSUSED*/ void buflist_list(eap) exarg_T *eap; --- 2538,2543 ---- *************** *** 3346,3359 **** * If maxwidth is not zero, the string will be filled at any middle marker * or truncated if too long, fillchar is used for all whitespace. */ - /*ARGSUSED*/ int build_stl_str_hl(wp, out, outlen, fmt, use_sandbox, fillchar, maxwidth, hltab, tabtab) win_T *wp; char_u *out; /* buffer to write into != NameBuff */ size_t outlen; /* length of out[] */ char_u *fmt; ! int use_sandbox; /* "fmt" was set insecurely, use sandbox */ int fillchar; int maxwidth; struct stl_hlrec *hltab; /* return: HL attributes (can be NULL) */ --- 3344,3356 ---- * If maxwidth is not zero, the string will be filled at any middle marker * or truncated if too long, fillchar is used for all whitespace. */ int build_stl_str_hl(wp, out, outlen, fmt, use_sandbox, fillchar, maxwidth, hltab, tabtab) win_T *wp; char_u *out; /* buffer to write into != NameBuff */ size_t outlen; /* length of out[] */ char_u *fmt; ! int use_sandbox UNUSED; /* "fmt" was set insecurely, use sandbox */ int fillchar; int maxwidth; struct stl_hlrec *hltab; /* return: HL attributes (can be NULL) */ *** ../vim-7.2.179/src/ex_cmds.c 2009-05-16 16:36:25.000000000 +0200 --- src/ex_cmds.c 2009-05-16 22:22:46.000000000 +0200 *************** *** 2255,2266 **** * * Return the string in allocated memory (NULL when out of memory). */ - /*ARGSUSED*/ char_u * viminfo_readstring(virp, off, convert) vir_T *virp; int off; /* offset for virp->vir_line */ ! int convert; /* convert the string */ { char_u *retval; char_u *s, *d; --- 2255,2265 ---- * * Return the string in allocated memory (NULL when out of memory). */ char_u * viminfo_readstring(virp, off, convert) vir_T *virp; int off; /* offset for virp->vir_line */ ! int convert UNUSED; /* convert the string */ { char_u *retval; char_u *s, *d; *************** *** 2736,2742 **** * May set eap->forceit if a dialog says it's OK to overwrite. * Return OK if it's OK, FAIL if it is not. */ - /*ARGSUSED*/ static int check_overwrite(eap, buf, fname, ffname, other) exarg_T *eap; --- 2735,2740 ---- *** ../vim-7.2.179/src/macros.h 2009-02-21 20:27:00.000000000 +0100 --- src/macros.h 2009-05-16 21:52:56.000000000 +0200 *************** *** 284,290 **** # define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p)) # define MB_COPY_CHAR(f, t) if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++ ! # define MB_CHARLEN(p) (has_mbyte ? mb_charlen(p) : STRLEN(p)) # define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p)) #else # define mb_ptr_adv(p) ++p --- 284,290 ---- # define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p)) # define MB_COPY_CHAR(f, t) if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++ ! # define MB_CHARLEN(p) (has_mbyte ? mb_charlen(p) : (int)STRLEN(p)) # define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p)) #else # define mb_ptr_adv(p) ++p *** ../vim-7.2.179/src/main.c 2008-11-28 21:26:50.000000000 +0100 --- src/main.c 2009-05-16 22:25:59.000000000 +0200 *************** *** 1505,1514 **** * * Also find the --server... arguments and --socketid and --windowid */ - /*ARGSUSED*/ static void early_arg_scan(parmp) ! mparm_T *parmp; { #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \ || !defined(FEAT_NETBEANS_INTG) --- 1505,1513 ---- * * Also find the --server... arguments and --socketid and --windowid */ static void early_arg_scan(parmp) ! mparm_T *parmp UNUSED; { #if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \ || !defined(FEAT_NETBEANS_INTG) *************** *** 2380,2389 **** * Create the requested number of windows and edit buffers in them. * Also does recovery if "recoverymode" set. */ - /*ARGSUSED*/ static void create_windows(parmp) ! mparm_T *parmp; { #ifdef FEAT_WINDOWS int dorewind; --- 2379,2387 ---- * Create the requested number of windows and edit buffers in them. * Also does recovery if "recoverymode" set. */ static void create_windows(parmp) ! mparm_T *parmp UNUSED; { #ifdef FEAT_WINDOWS int dorewind; *************** *** 3851,3860 **** * return an allocated string. Otherwise return "data". * "*tofree" is set to the result when it needs to be freed later. */ - /*ARGSUSED*/ char_u * [...6121 lines suppressed...] *** ../vim-7.2.179/src/ui.c 2008-11-28 21:26:50.000000000 +0100 --- src/ui.c 2009-05-16 22:33:55.000000000 +0200 *************** *** 320,329 **** * The gui_set_shellsize() or mch_set_shellsize() function will try to set the * new size. If this is not possible, it will adjust Rows and Columns. */ - /*ARGSUSED*/ void ui_set_shellsize(mustset) ! int mustset; /* set by the user */ { #ifdef FEAT_GUI if (gui.in_use) --- 320,328 ---- * The gui_set_shellsize() or mch_set_shellsize() function will try to set the * new size. If this is not possible, it will adjust Rows and Columns. */ void ui_set_shellsize(mustset) ! int mustset UNUSED; /* set by the user */ { #ifdef FEAT_GUI if (gui.in_use) *************** *** 1127,1136 **** * available for pasting. * When "both" is TRUE also copy to the '+' register. */ - /*ARGSUSED*/ void clip_copy_modeless_selection(both) ! int both; { char_u *buffer; char_u *bufp; --- 1126,1134 ---- * available for pasting. * When "both" is TRUE also copy to the '+' register. */ void clip_copy_modeless_selection(both) ! int both UNUSED; { char_u *buffer; char_u *bufp; *************** *** 1701,1710 **** return (int)maxlen; } - /*ARGSUSED*/ void fill_input_buf(exit_on_error) ! int exit_on_error; { #if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX) int len; --- 1699,1707 ---- return (int)maxlen; } void fill_input_buf(exit_on_error) ! int exit_on_error UNUSED; { #if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX) int len; *************** *** 1992,2002 **** static void clip_x11_request_selection_cb __ARGS((Widget, XtPointer, Atom *, Atom *, XtPointer, long_u *, int *)); - /* ARGSUSED */ static void clip_x11_request_selection_cb(w, success, sel_atom, type, value, length, format) ! Widget w; XtPointer success; Atom *sel_atom; Atom *type; --- 1989,1998 ---- static void clip_x11_request_selection_cb __ARGS((Widget, XtPointer, Atom *, Atom *, XtPointer, long_u *, int *)); static void clip_x11_request_selection_cb(w, success, sel_atom, type, value, length, format) ! Widget w UNUSED; XtPointer success; Atom *sel_atom; Atom *type; *************** *** 2202,2211 **** static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *)); - /* ARGSUSED */ static Boolean clip_x11_convert_selection_cb(w, sel_atom, target, type, value, length, format) ! Widget w; Atom *sel_atom; Atom *target; Atom *type; --- 2198,2206 ---- static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *)); static Boolean clip_x11_convert_selection_cb(w, sel_atom, target, type, value, length, format) ! Widget w UNUSED; Atom *sel_atom; Atom *target; Atom *type; *************** *** 2332,2341 **** static void clip_x11_lose_ownership_cb __ARGS((Widget, Atom *)); - /* ARGSUSED */ static void clip_x11_lose_ownership_cb(w, sel_atom) ! Widget w; Atom *sel_atom; { if (*sel_atom == clip_plus.sel_atom) --- 2327,2335 ---- static void clip_x11_lose_ownership_cb __ARGS((Widget, Atom *)); static void clip_x11_lose_ownership_cb(w, sel_atom) ! Widget w UNUSED; Atom *sel_atom; { if (*sel_atom == clip_plus.sel_atom) *************** *** 2368,2377 **** * Send the current selection to the clipboard. Do nothing for X because we * will fill in the selection only when requested by another app. */ - /*ARGSUSED*/ void clip_x11_set_selection(cbd) ! VimClipboard *cbd; { } #endif --- 2362,2370 ---- * Send the current selection to the clipboard. Do nothing for X because we * will fill in the selection only when requested by another app. */ void clip_x11_set_selection(cbd) ! VimClipboard *cbd UNUSED; { } #endif *************** *** 2922,2932 **** * Find the window at screen position "*rowp" and "*colp". The positions are * updated to become relative to the top-left of the window. */ - /*ARGSUSED*/ win_T * mouse_find_win(rowp, colp) int *rowp; ! int *colp; { frame_T *fp; --- 2915,2924 ---- * Find the window at screen position "*rowp" and "*colp". The positions are * updated to become relative to the top-left of the window. */ win_T * mouse_find_win(rowp, colp) int *rowp; ! int *colp UNUSED; { frame_T *fp; *** ../vim-7.2.179/src/version.c 2009-05-16 21:16:12.000000000 +0200 --- src/version.c 2009-05-17 13:06:38.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 180, /**/ -- Wi n0t trei a h0liday in Sweden thi yer? "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.181 --- To: vim-dev at vim.org Subject: Patch 7.2.181 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.181 Problem: Some more compiler warnings when using gcc -Wextra. Solution: Add UNUSED and type casts. Files: src/if_mzsch.c, src/gui.c, src/gui_gtk.c, src/gui_gtk_x11.c, src/gui_gtk_f.c, src/gui_beval.c, src/netbeans.c *** ../vim-7.2.180/src/if_mzsch.c 2007-07-06 19:43:08.000000000 +0200 --- src/if_mzsch.c 2009-05-16 22:24:18.000000000 +0200 *************** *** 667,679 **** static void CALLBACK timer_proc(HWND hwnd, UINT uMsg, UINT idEvent, DWORD dwTime) # elif defined(FEAT_GUI_GTK) - /*ARGSUSED*/ static gint ! timer_proc(gpointer data) # elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) - /* ARGSUSED */ static void ! timer_proc(XtPointer timed_out, XtIntervalId *interval_id) # elif defined(FEAT_GUI_MAC) pascal void timer_proc(EventLoopTimerRef theTimer, void *userData) --- 667,677 ---- static void CALLBACK timer_proc(HWND hwnd, UINT uMsg, UINT idEvent, DWORD dwTime) # elif defined(FEAT_GUI_GTK) static gint ! timer_proc(gpointer data UNUSED) # elif defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) static void ! timer_proc(XtPointer timed_out UNUSED, XtIntervalId *interval_id UNUSED) # elif defined(FEAT_GUI_MAC) pascal void timer_proc(EventLoopTimerRef theTimer, void *userData) *** ../vim-7.2.180/src/gui.c 2008-12-03 18:50:09.000000000 +0100 --- src/gui.c 2009-05-17 15:52:18.000000000 +0200 *************** *** 678,688 **** * Return OK when able to set the font. When it failed FAIL is returned and * the fonts are unchanged. */ - /*ARGSUSED*/ int gui_init_font(font_list, fontset) char_u *font_list; ! int fontset; { #define FONTLEN 320 char_u font_name[FONTLEN]; --- 678,687 ---- * Return OK when able to set the font. When it failed FAIL is returned and * the fonts are unchanged. */ int gui_init_font(font_list, fontset) char_u *font_list; ! int fontset UNUSED; { #define FONTLEN 320 char_u font_name[FONTLEN]; *************** *** 1138,1147 **** * Position the various GUI components (text area, menu). The vertical * scrollbars are NOT handled here. See gui_update_scrollbars(). */ - /*ARGSUSED*/ static void gui_position_components(total_width) ! int total_width; { int text_area_x; int text_area_y; --- 1137,1145 ---- * Position the various GUI components (text area, menu). The vertical * scrollbars are NOT handled here. See gui_update_scrollbars(). */ static void gui_position_components(total_width) ! int total_width UNUSED; { int text_area_x; int text_area_y; *************** *** 1374,1383 **** * If "fit_to_display" is TRUE then the size may be reduced to fit the window * on the screen. */ - /*ARGSUSED*/ void gui_set_shellsize(mustset, fit_to_display, direction) ! int mustset; /* set by the user */ int fit_to_display; int direction; /* RESIZE_HOR, RESIZE_VER */ { --- 1372,1380 ---- * If "fit_to_display" is TRUE then the size may be reduced to fit the window * on the screen. */ void gui_set_shellsize(mustset, fit_to_display, direction) ! int mustset UNUSED; /* set by the user */ int fit_to_display; int direction; /* RESIZE_HOR, RESIZE_VER */ { *************** *** 3120,3126 **** * If "oldval" is not NULL, "oldval" is the previous value, the new value is * in p_go. */ - /*ARGSUSED*/ void gui_init_which_components(oldval) char_u *oldval; --- 3117,3122 ---- *************** *** 4411,4417 **** if (curwin->w_p_wrap) return FALSE; ! if (curwin->w_leftcol == scrollbar_value) return FALSE; curwin->w_leftcol = (colnr_T)scrollbar_value; --- 4407,4413 ---- if (curwin->w_p_wrap) return FALSE; ! if ((long_u)curwin->w_leftcol == scrollbar_value) return FALSE; curwin->w_leftcol = (colnr_T)scrollbar_value; *************** *** 4424,4430 **** && longest_lnum < curwin->w_botline && !virtual_active()) { ! if (scrollbar_value > scroll_line_len(curwin->w_cursor.lnum)) { curwin->w_cursor.lnum = longest_lnum; curwin->w_cursor.col = 0; --- 4420,4426 ---- && longest_lnum < curwin->w_botline && !virtual_active()) { ! if (scrollbar_value > (long_u)scroll_line_len(curwin->w_cursor.lnum)) { curwin->w_cursor.lnum = longest_lnum; curwin->w_cursor.col = 0; *************** *** 4670,4676 **** /* * Find window where the mouse pointer "y" coordinate is in. */ - /*ARGSUSED*/ static win_T * xy2win(x, y) int x; --- 4666,4671 ---- *************** *** 5124,5130 **** * of dropped files, they will be freed in this function, and caller can't use * fnames after call this function. */ - /*ARGSUSED*/ void gui_handle_drop(x, y, modifiers, fnames, count) int x; --- 5119,5124 ---- *** ../vim-7.2.180/src/gui_gtk.c 2008-07-31 22:29:28.000000000 +0200 --- src/gui_gtk.c 2009-05-17 16:06:30.000000000 +0200 *************** *** 285,298 **** return image; } - /*ARGSUSED*/ static gint ! toolbar_button_focus_in_event(GtkWidget *widget, GdkEventFocus *event, gpointer data) ! { ! /* When we're in a GtkPlug, we don't have window focus events, only widget focus. ! * To emulate stand-alone gvim, if a button gets focus (e.g., into GtkPlug) ! * immediately pass it to mainwin. ! */ if (gtk_socket_id != 0) gtk_widget_grab_focus(gui.drawarea); --- 285,298 ---- return image; } static gint ! toolbar_button_focus_in_event(GtkWidget *widget UNUSED, ! GdkEventFocus *event UNUSED, ! gpointer data UNUSED) ! { ! /* When we're in a GtkPlug, we don't have window focus events, only widget ! * focus. To emulate stand-alone gvim, if a button gets focus (e.g., ! * into GtkPlug) immediately pass it to mainwin. */ if (gtk_socket_id != 0) gtk_widget_grab_focus(gui.drawarea); *************** *** 585,593 **** gtk_menu_prepend(GTK_MENU(menu->submenu_id), menu->tearoff_handle); } - /*ARGSUSED*/ static void ! menu_item_activate(GtkWidget *widget, gpointer data) { gui_menu_cb((vimmenu_T *)data); --- 585,592 ---- gtk_menu_prepend(GTK_MENU(menu->submenu_id), menu->tearoff_handle); } static void ! menu_item_activate(GtkWidget *widget UNUSED, gpointer data) { gui_menu_cb((vimmenu_T *)data); *************** *** 1202,1210 **** #endif #ifndef USE_FILE_CHOOSER - /*ARGSUSED*/ static void ! browse_ok_cb(GtkWidget *widget, gpointer cbdata) { gui_T *vw = (gui_T *)cbdata; --- 1201,1208 ---- #endif #ifndef USE_FILE_CHOOSER static void ! browse_ok_cb(GtkWidget *widget UNUSED, gpointer cbdata) { gui_T *vw = (gui_T *)cbdata; *************** *** 1218,1226 **** gtk_main_quit(); } - /*ARGSUSED*/ static void ! browse_cancel_cb(GtkWidget *widget, gpointer cbdata) { gui_T *vw = (gui_T *)cbdata; --- 1216,1223 ---- gtk_main_quit(); } static void ! browse_cancel_cb(GtkWidget *widget UNUSED, gpointer cbdata) { gui_T *vw = (gui_T *)cbdata; *************** *** 1234,1242 **** gtk_main_quit(); } - /*ARGSUSED*/ static gboolean ! browse_destroy_cb(GtkWidget * widget) { if (gui.browse_fname != NULL) { --- 1231,1238 ---- gtk_main_quit(); } static gboolean ! browse_destroy_cb(GtkWidget *widget UNUSED) { if (gui.browse_fname != NULL) { *************** *** 1262,1275 **** * initdir initial directory, NULL for current dir * filter not used (file name filter) */ - /*ARGSUSED*/ char_u * ! gui_mch_browse(int saving, char_u *title, char_u *dflt, ! char_u *ext, char_u *initdir, ! char_u *filter) { #ifdef USE_FILE_CHOOSER GtkWidget *fc; --- 1258,1270 ---- * initdir initial directory, NULL for current dir * filter not used (file name filter) */ char_u * ! gui_mch_browse(int saving UNUSED, char_u *title, char_u *dflt, ! char_u *ext UNUSED, char_u *initdir, ! char_u *filter UNUSED) { #ifdef USE_FILE_CHOOSER GtkWidget *fc; *************** *** 1377,1383 **** * dflt default name * initdir initial directory, NULL for current dir */ - /*ARGSUSED*/ char_u * gui_mch_browsedir( char_u *title, --- 1372,1377 ---- *************** *** 1460,1466 **** } # ifdef FEAT_GUI_GNOME - /* ARGSUSED */ static int gui_gnome_dialog( int type, char_u *title, --- 1454,1459 ---- *************** *** 1611,1617 **** GtkWidget *dialog; } CancelData; - /* ARGSUSED */ static void dlg_button_clicked(GtkWidget * widget, ButtonData *data) { --- 1604,1609 ---- *************** *** 1622,1628 **** /* * This makes the Escape key equivalent to the cancel button. */ - /*ARGSUSED*/ static int dlg_key_press_event(GtkWidget *widget, GdkEventKey *event, CancelData *data) { --- 1614,1619 ---- *************** *** 1655,1661 **** gtk_main_quit(); } - /* ARGSUSED */ int gui_mch_dialog( int type, /* type of dialog */ char_u *title, /* title of dialog */ --- 1646,1651 ---- *************** *** 2215,2221 **** GtkDialog *dialog; /* Widget of the dialog */ } DialogInfo; - /*ARGSUSED2*/ static gboolean dialog_key_press_event_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) { --- 2205,2210 ---- *************** *** 2398,2411 **** * Note: The push_in output argument seems to affect scrolling of huge * menus that don't fit on the screen. Leave it at the default for now. */ - /*ARGSUSED0*/ static void ! popup_menu_position_func(GtkMenu *menu, gint *x, gint *y, # ifdef HAVE_GTK2 ! gboolean *push_in, # endif ! gpointer user_data) { gdk_window_get_origin(gui.drawarea->window, x, y); --- 2387,2399 ---- * Note: The push_in output argument seems to affect scrolling of huge * menus that don't fit on the screen. Leave it at the default for now. */ static void ! popup_menu_position_func(GtkMenu *menu UNUSED, gint *x, gint *y, # ifdef HAVE_GTK2 ! gboolean *push_in UNUSED, # endif ! gpointer user_data UNUSED) { gdk_window_get_origin(gui.drawarea->window, x, y); *************** *** 2464,2476 **** GtkWidget *all; /* 'Replace All' action button */ } SharedFindReplace; ! static SharedFindReplace find_widgets = { NULL, }; ! static SharedFindReplace repl_widgets = { NULL, }; - /* ARGSUSED */ static int find_key_press_event( ! GtkWidget *widget, GdkEventKey *event, SharedFindReplace *frdp) { --- 2452,2463 ---- GtkWidget *all; /* 'Replace All' action button */ } SharedFindReplace; ! static SharedFindReplace find_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}; ! static SharedFindReplace repl_widgets = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}; static int find_key_press_event( ! GtkWidget *widget UNUSED, GdkEventKey *event, SharedFindReplace *frdp) { *************** *** 2962,2970 **** /* * Callback for actions of the find and replace dialogs */ - /*ARGSUSED*/ static void ! find_replace_cb(GtkWidget *widget, gpointer data) { int flags; char_u *find_text; --- 2949,2956 ---- /* * Callback for actions of the find and replace dialogs */ static void ! find_replace_cb(GtkWidget *widget UNUSED, gpointer data) { int flags; char_u *find_text; *************** *** 3010,3018 **** } /* our usual callback function */ - /*ARGSUSED*/ static void ! entry_activate_cb(GtkWidget *widget, gpointer data) { gtk_widget_grab_focus(GTK_WIDGET(data)); } --- 2996,3003 ---- } /* our usual callback function */ static void ! entry_activate_cb(GtkWidget *widget UNUSED, gpointer data) { gtk_widget_grab_focus(GTK_WIDGET(data)); } *************** *** 3055,3064 **** /* * ":helpfind" */ - /*ARGSUSED*/ void ex_helpfind(eap) ! exarg_T *eap; { /* This will fail when menus are not loaded. Well, it's only for * backwards compatibility anyway. */ --- 3040,3048 ---- /* * ":helpfind" */ void ex_helpfind(eap) ! exarg_T *eap UNUSED; { /* This will fail when menus are not loaded. Well, it's only for * backwards compatibility anyway. */ *** ../vim-7.2.180/src/gui_gtk_x11.c 2008-11-28 21:26:50.000000000 +0100 --- src/gui_gtk_x11.c 2009-05-17 15:53:02.000000000 +0200 *************** *** 619,627 **** * Doesn't seem possible, since check_copy_area() relies on * this information. --danielk */ - /*ARGSUSED*/ static gint ! visibility_event(GtkWidget *widget, GdkEventVisibility *event, gpointer data) { gui.visibility = event->state; /* --- 625,634 ---- * Doesn't seem possible, since check_copy_area() relies on * this information. --danielk */ static gint ! visibility_event(GtkWidget *widget UNUSED, ! GdkEventVisibility *event, ! gpointer data UNUSED) { gui.visibility = event->state; /* *************** *** 638,646 **** /* * Redraw the corresponding portions of the screen. */ - /*ARGSUSED*/ static gint ! expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data) { /* Skip this when the GUI isn't set up yet, will redraw later. */ if (gui.starting) --- 645,654 ---- /* * Redraw the corresponding portions of the screen. */ static gint ! expose_event(GtkWidget *widget UNUSED, ! GdkEventExpose *event, ! gpointer data UNUSED) { /* Skip this when the GUI isn't set up yet, will redraw later. */ if (gui.starting) *************** *** 668,676 **** /* * Handle changes to the "Comm" property */ - /*ARGSUSED2*/ static gint ! property_event(GtkWidget *widget, GdkEventProperty *event, gpointer data) { if (event->type == GDK_PROPERTY_NOTIFY && event->state == (int)GDK_PROPERTY_NEW_VALUE --- 676,685 ---- /* * Handle changes to the "Comm" property */ static gint ! property_event(GtkWidget *widget, ! GdkEventProperty *event, ! gpointer data UNUSED) { if (event->type == GDK_PROPERTY_NOTIFY && event->state == (int)GDK_PROPERTY_NEW_VALUE *************** *** 740,748 **** blink_state = BLINK_NONE; } - /*ARGSUSED*/ static gint ! blink_cb(gpointer data) { if (blink_state == BLINK_ON) { --- 749,756 ---- blink_state = BLINK_NONE; } static gint ! blink_cb(gpointer data UNUSED) { if (blink_state == BLINK_ON) { *************** *** 781,789 **** } } - /*ARGSUSED*/ static gint ! enter_notify_event(GtkWidget *widget, GdkEventCrossing *event, gpointer data) { if (blink_state == BLINK_NONE) gui_mch_start_blink(); --- 789,798 ---- } } static gint ! enter_notify_event(GtkWidget *widget UNUSED, ! GdkEventCrossing *event UNUSED, ! gpointer data UNUSED) { if (blink_state == BLINK_NONE) gui_mch_start_blink(); *************** *** 795,803 **** return FALSE; } - /*ARGSUSED*/ static gint ! leave_notify_event(GtkWidget *widget, GdkEventCrossing *event, gpointer data) { if (blink_state != BLINK_NONE) gui_mch_stop_blink(); --- 804,813 ---- return FALSE; } static gint ! leave_notify_event(GtkWidget *widget UNUSED, ! GdkEventCrossing *event UNUSED, ! gpointer data UNUSED) { if (blink_state != BLINK_NONE) gui_mch_stop_blink(); *************** *** 805,813 **** return FALSE; } - /*ARGSUSED*/ static gint ! focus_in_event(GtkWidget *widget, GdkEventFocus *event, gpointer data) { gui_focus_change(TRUE); --- 815,824 ---- return FALSE; } static gint ! focus_in_event(GtkWidget *widget, ! GdkEventFocus *event UNUSED, ! gpointer data UNUSED) { gui_focus_change(TRUE); *************** *** 826,834 **** return TRUE; } - /*ARGSUSED*/ static gint ! focus_out_event(GtkWidget *widget, GdkEventFocus *event, gpointer data) { gui_focus_change(FALSE); --- 837,846 ---- return TRUE; } static gint ! focus_out_event(GtkWidget *widget UNUSED, ! GdkEventFocus *event UNUSED, ! gpointer data UNUSED) { gui_focus_change(FALSE); *************** *** 956,964 **** /* * Main keyboard handler: */ - /*ARGSUSED*/ static gint ! key_press_event(GtkWidget *widget, GdkEventKey *event, gpointer data) { #ifdef HAVE_GTK2 /* 256 bytes is way over the top, but for safety let's reduce it only --- 968,977 ---- /* * Main keyboard handler: */ static gint ! key_press_event(GtkWidget *widget UNUSED, ! GdkEventKey *event, ! gpointer data UNUSED) { #ifdef HAVE_GTK2 /* 256 bytes is way over the top, but for safety let's reduce it only *************** *** 1225,1233 **** } #if defined(FEAT_XIM) && defined(HAVE_GTK2) - /*ARGSUSED0*/ static gboolean ! key_release_event(GtkWidget *widget, GdkEventKey *event, gpointer data) { /* * GTK+ 2 input methods may do fancy stuff on key release events too. --- 1238,1247 ---- } #if defined(FEAT_XIM) && defined(HAVE_GTK2) static gboolean ! key_release_event(GtkWidget *widget UNUSED, ! GdkEventKey *event, ! gpointer data UNUSED) { /* * GTK+ 2 input methods may do fancy stuff on key release events too. *************** *** 1243,1253 **** * Selection handlers: */ - /*ARGSUSED*/ static gint ! selection_clear_event(GtkWidget *widget, GdkEventSelection *event, ! gpointer user_data) { if (event->selection == clip_plus.gtk_sel_atom) clip_lose_selection(&clip_plus); --- 1257,1266 ---- * Selection handlers: */ static gint ! selection_clear_event(GtkWidget *widget UNUSED, GdkEventSelection *event, ! gpointer user_data UNUSED) { if (event->selection == clip_plus.gtk_sel_atom) clip_lose_selection(&clip_plus); *************** *** 1265,1276 **** #define RS_FAIL 2 /* selection_received_cb() called and failed */ static int received_selection = RS_NONE; - /*ARGSUSED*/ static void ! selection_received_cb(GtkWidget *widget, GtkSelectionData *data, ! guint time_, ! gpointer user_data) { VimClipboard *cbd; char_u *text; --- 1278,1288 ---- #define RS_FAIL 2 /* selection_received_cb() called and failed */ static int received_selection = RS_NONE; static void ! selection_received_cb(GtkWidget *widget UNUSED, GtkSelectionData *data, ! guint time_ UNUSED, ! gpointer user_data UNUSED) { VimClipboard *cbd; char_u *text; *************** *** 1414,1426 **** * Prepare our selection data for passing it to the external selection * client. */ - /*ARGSUSED*/ static void ! selection_get_cb(GtkWidget *widget, GtkSelectionData *selection_data, guint info, ! guint time_, ! gpointer user_data) { char_u *string; char_u *tmpbuf; --- 1426,1437 ---- * Prepare our selection data for passing it to the external selection * client. */ static void ! selection_get_cb(GtkWidget *widget UNUSED, GtkSelectionData *selection_data, guint info, ! guint time_ UNUSED, ! gpointer user_data UNUSED) { char_u *string; char_u *tmpbuf; *************** *** 1678,1684 **** offshoot = dx > dy ? dx : dy; ! /* Make a linearly declaying timer delay with a threshold of 5 at a * distance of 127 pixels from the main window. * * One could think endlessly about the most ergonomic variant here. --- 1689,1695 ---- offshoot = dx > dy ? dx : dy; ! /* Make a linearly decaying timer delay with a threshold of 5 at a * distance of 127 pixels from the main window. * * One could think endlessly about the most ergonomic variant here. *************** *** 1707,1715 **** /* * Timer used to recognize multiple clicks of the mouse button. */ - /*ARGSUSED0*/ static gint ! motion_repeat_timer_cb(gpointer data) { int x; int y; --- 1718,1725 ---- /* * Timer used to recognize multiple clicks of the mouse button. */ static gint ! motion_repeat_timer_cb(gpointer data UNUSED) { int x; int y; *************** *** 1749,1757 **** return FALSE; } - /*ARGSUSED2*/ static gint ! motion_notify_event(GtkWidget *widget, GdkEventMotion *event, gpointer data) { if (event->is_hint) { --- 1759,1768 ---- return FALSE; } static gint ! motion_notify_event(GtkWidget *widget, ! GdkEventMotion *event, ! gpointer data UNUSED) { if (event->is_hint) { *************** *** 1777,1785 **** * by our own timeout mechanism instead of the one provided by GTK+ itself. * This is due to the way the generic VIM code is recognizing multiple clicks. */ - /*ARGSUSED2*/ static gint ! button_press_event(GtkWidget *widget, GdkEventButton *event, gpointer data) { int button; int repeated_click = FALSE; --- 1788,1797 ---- * by our own timeout mechanism instead of the one provided by GTK+ itself. * This is due to the way the generic VIM code is recognizing multiple clicks. */ static gint ! button_press_event(GtkWidget *widget, ! GdkEventButton *event, ! gpointer data UNUSED) { int button; int repeated_click = FALSE; *************** *** 1855,1863 **** * GTK+ 2 doesn't handle mouse buttons 4, 5, 6 and 7 the same way as GTK+ 1. * Instead, it abstracts scrolling via the new GdkEventScroll. */ - /*ARGSUSED2*/ static gboolean ! scroll_event(GtkWidget *widget, GdkEventScroll *event, gpointer data) { int button; int_u vim_modifiers; --- 1867,1876 ---- * GTK+ 2 doesn't handle mouse buttons 4, 5, 6 and 7 the same way as GTK+ 1. * Instead, it abstracts scrolling via the new GdkEventScroll. */ static gboolean ! scroll_event(GtkWidget *widget, ! GdkEventScroll *event, ! gpointer data UNUSED) { int button; int_u vim_modifiers; *************** *** 1896,1904 **** #endif /* HAVE_GTK2 */ - /*ARGSUSED*/ static gint ! button_release_event(GtkWidget *widget, GdkEventButton *event, gpointer data) { int x, y; int_u vim_modifiers; --- 1909,1918 ---- #endif /* HAVE_GTK2 */ static gint ! button_release_event(GtkWidget *widget UNUSED, ! GdkEventButton *event, ! gpointer data UNUSED) { int x, y; int_u vim_modifiers; *************** *** 2100,2106 **** /* * DND receiver. */ - /*ARGSUSED2*/ static void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, --- 2114,2119 ---- *************** *** 2109,2115 **** GtkSelectionData *data, guint info, guint time_, ! gpointer user_data) { GdkModifierType state; --- 2122,2128 ---- GtkSelectionData *data, guint info, guint time_, ! gpointer user_data UNUSED) { GdkModifierType state; *************** *** 2143,2149 **** * be abandoned and pop up a dialog asking the user for confirmation if * necessary. */ - /*ARGSUSED0*/ static void sm_client_check_changed_any(GnomeClient *client, gint key, --- 2156,2161 ---- *************** *** 2251,2257 **** * for confirmation if necessary. Save the current editing session and tell * the session manager how to restart Vim. */ - /*ARGSUSED1*/ static gboolean sm_client_save_yourself(GnomeClient *client, gint phase, --- 2263,2268 ---- *************** *** 2339,2345 **** * here since "save_yourself" has been emitted before (unless serious trouble * is happening). */ - /*ARGSUSED0*/ static void sm_client_die(GnomeClient *client, gpointer data) { --- 2350,2355 ---- *************** *** 2379,2388 **** /* * GTK tells us that XSMP needs attention */ - /*ARGSUSED*/ static gboolean local_xsmp_handle_requests(source, condition, data) ! GIOChannel *source; GIOCondition condition; gpointer data; { --- 2389,2397 ---- /* * GTK tells us that XSMP needs attention */ static gboolean local_xsmp_handle_requests(source, condition, data) ! GIOChannel *source UNUSED; GIOCondition condition; gpointer data; { *************** *** 2480,2495 **** * WM_SAVE_YOURSELF hack it actually stores the session... And yes, * it should work with KDE as well. */ - /*ARGSUSED1*/ static GdkFilterReturn ! global_event_filter(GdkXEvent *xev, GdkEvent *event, gpointer data) { XEvent *xevent = (XEvent *)xev; if (xevent != NULL && xevent->type == ClientMessage && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) ! && xevent->xclient.data.l[0] == GET_X_ATOM(save_yourself_atom)) { out_flush(); ml_sync_all(FALSE, FALSE); /* preserve all swap files */ --- 2489,2506 ---- * WM_SAVE_YOURSELF hack it actually stores the session... And yes, * it should work with KDE as well. */ static GdkFilterReturn ! global_event_filter(GdkXEvent *xev, ! GdkEvent *event UNUSED, ! gpointer data UNUSED) { XEvent *xevent = (XEvent *)xev; if (xevent != NULL && xevent->type == ClientMessage && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom) ! && (long_u)xevent->xclient.data.l[0] ! == GET_X_ATOM(save_yourself_atom)) { out_flush(); ml_sync_all(FALSE, FALSE); /* preserve all swap files */ *************** *** 2512,2518 **** /* * GDK handler for X ClientMessage events. */ - /*ARGSUSED2*/ static GdkFilterReturn gdk_wm_protocols_filter(GdkXEvent *xev, GdkEvent *event, gpointer data) { --- 2523,2528 ---- *************** *** 2558,2566 **** /* * Setup the window icon & xcmdsrv comm after the main window has been realized. */ - /*ARGSUSED*/ static void ! mainwin_realize(GtkWidget *widget, gpointer data) { /* If you get an error message here, you still need to unpack the runtime * archive! */ --- 2568,2575 ---- /* * Setup the window icon & xcmdsrv comm after the main window has been realized. */ static void ! mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED) { /* If you get an error message here, you still need to unpack the runtime * archive! */ *************** *** 2712,2722 **** } #ifdef HAVE_GTK_MULTIHEAD - /*ARGSUSED1*/ static void mainwin_screen_changed_cb(GtkWidget *widget, ! GdkScreen *previous_screen, ! gpointer data) { if (!gtk_widget_has_screen(widget)) return; --- 2721,2730 ---- } #ifdef HAVE_GTK_MULTIHEAD static void mainwin_screen_changed_cb(GtkWidget *widget, ! GdkScreen *previous_screen UNUSED, ! gpointer data UNUSED) { if (!gtk_widget_has_screen(widget)) return; *************** *** 2757,2765 **** * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the * fact that the main VIM engine doesn't take them into account anywhere. */ - /*ARGSUSED1*/ static void ! drawarea_realize_cb(GtkWidget *widget, gpointer data) { GtkWidget *sbar; --- 2765,2772 ---- * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the * fact that the main VIM engine doesn't take them into account anywhere. */ static void ! drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED) { GtkWidget *sbar; *************** *** 2789,2797 **** /* * Properly clean up on shutdown. */ - /*ARGSUSED0*/ static void ! drawarea_unrealize_cb(GtkWidget *widget, gpointer data) { /* Don't write messages to the GUI anymore */ full_screen = FALSE; --- 2796,2803 ---- /* * Properly clean up on shutdown. */ static void ! drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED) { /* Don't write messages to the GUI anymore */ full_screen = FALSE; *************** *** 2827,2837 **** #endif } - /*ARGSUSED0*/ static void ! drawarea_style_set_cb(GtkWidget *widget, ! GtkStyle *previous_style, ! gpointer data) { gui_mch_new_colors(); } --- 2833,2842 ---- #endif } static void ! drawarea_style_set_cb(GtkWidget *widget UNUSED, ! GtkStyle *previous_style UNUSED, ! gpointer data UNUSED) { gui_mch_new_colors(); } *************** *** 2840,2848 **** * Callback routine for the "delete_event" signal on the toplevel window. * Tries to vim gracefully, or refuses to exit with changed buffers. */ - /*ARGSUSED*/ static gint ! delete_event_cb(GtkWidget *widget, GdkEventAny *event, gpointer data) { gui_shell_closed(); return TRUE; --- 2845,2854 ---- * Callback routine for the "delete_event" signal on the toplevel window. * Tries to vim gracefully, or refuses to exit with changed buffers. */ static gint ! delete_event_cb(GtkWidget *widget UNUSED, ! GdkEventAny *event UNUSED, ! gpointer data UNUSED) { gui_shell_closed(); return TRUE; *************** *** 2964,2970 **** /* At start-up, don't try to set the hints until the initial * values have been used (those that dictate our initial size) ! * Let forced (i.e., correct) values thruogh always. */ if (!(force_width && force_height) && init_window_hints_state > 0) { --- 2970,2976 ---- /* At start-up, don't try to set the hints until the initial * values have been used (those that dictate our initial size) ! * Let forced (i.e., correct) values through always. */ if (!(force_width && force_height) && init_window_hints_state > 0) { *************** *** 3142,3150 **** /* * Handle selecting an item in the tab line popup menu. */ - /*ARGSUSED*/ static void ! tabline_menu_handler(GtkMenuItem *item, gpointer user_data) { /* Add the string cmd into input buffer */ send_tabline_menu_event(clicked_page, (int)(long)user_data); --- 3148,3155 ---- /* * Handle selecting an item in the tab line popup menu. */ static void ! tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data) { /* Add the string cmd into input buffer */ send_tabline_menu_event(clicked_page, (int)(long)user_data); *************** *** 3244,3256 **** /* * Handle selecting one of the tabs. */ - /*ARGSUSED*/ static void on_select_tab( ! GtkNotebook *notebook, ! GtkNotebookPage *page, gint idx, ! gpointer data) { if (!ignore_tabline_evt) { --- 3249,3260 ---- /* * Handle selecting one of the tabs. */ static void on_select_tab( ! GtkNotebook *notebook UNUSED, ! GtkNotebookPage *page UNUSED, gint idx, ! gpointer data UNUSED) { if (!ignore_tabline_evt) { *************** *** 3784,3790 **** #endif if (gtk_socket_id != 0) ! /* make sure keybord input can go to the drawarea */ GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); /* --- 3788,3794 ---- #endif if (gtk_socket_id != 0) ! /* make sure keyboard input can go to the drawarea */ GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS); /* *************** *** 3922,3931 **** /* * This signal informs us about the need to rearrange our sub-widgets. */ - /*ARGSUSED*/ static gint ! form_configure_event(GtkWidget *widget, GdkEventConfigure *event, ! gpointer data) { int usable_height = event->height; --- 3926,3935 ---- /* * This signal informs us about the need to rearrange our sub-widgets. */ static gint ! form_configure_event(GtkWidget *widget UNUSED, ! GdkEventConfigure *event, ! gpointer data UNUSED) { int usable_height = event->height; *************** *** 3948,3956 **** * We can't do much more here than to trying to preserve what had been done, * since the window is already inevitably going away. */ - /*ARGSUSED0*/ static void ! mainwin_destroy_cb(GtkObject *object, gpointer data) { /* Don't write messages to the GUI anymore */ full_screen = FALSE; --- 3952,3959 ---- * We can't do much more here than to trying to preserve what had been done, * since the window is already inevitably going away. */ static void ! mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED) { /* Don't write messages to the GUI anymore */ full_screen = FALSE; *************** *** 3980,3988 **** * scrollbar init.), actually do the standard hinst and stop the timer. * We'll not let the default hints be set while this timer's active. */ - /*ARGSUSED*/ static gboolean ! check_startup_plug_hints(gpointer data) { if (init_window_hints_state == 1) { --- 3983,3990 ---- * scrollbar init.), actually do the standard hinst and stop the timer. * We'll not let the default hints be set while this timer's active. */ static gboolean ! check_startup_plug_hints(gpointer data UNUSED) { if (init_window_hints_state == 1) { *************** *** 4055,4061 **** Columns = w; if (mask & HeightValue) { ! if (p_window > h - 1 || !option_was_set((char_u *)"window")) p_window = h - 1; Rows = h; } --- 4057,4063 ---- Columns = w; if (mask & HeightValue) { ! if (p_window > (long)h - 1 || !option_was_set((char_u *)"window")) p_window = h - 1; Rows = h; } *************** *** 4229,4237 **** } - /*ARGSUSED0*/ void ! gui_mch_exit(int rc) { if (gui.mainwin != NULL) gtk_widget_destroy(gui.mainwin); --- 4231,4238 ---- } void ! gui_mch_exit(int rc UNUSED) { if (gui.mainwin != NULL) gtk_widget_destroy(gui.mainwin); *************** *** 4286,4292 **** * report the new size through form_configure_event(). That caused the window * layout to be messed up. */ - /*ARGSUSED0*/ static gboolean force_shell_resize_idle(gpointer data) { --- 4287,4292 ---- *************** *** 4314,4325 **** /* * Set the windows size. */ - /*ARGSUSED2*/ void gui_mch_set_shellsize(int width, int height, ! int min_width, int min_height, ! int base_width, int base_height, ! int direction) { #ifndef HAVE_GTK2 /* Hack: When the form already is at the desired size, the window might --- 4314,4324 ---- /* * Set the windows size. */ void gui_mch_set_shellsize(int width, int height, ! int min_width UNUSED, int min_height UNUSED, ! int base_width UNUSED, int base_height UNUSED, ! int direction UNUSED) { #ifndef HAVE_GTK2 /* Hack: When the form already is at the desired size, the window might *************** *** 4413,4421 **** } #if defined(FEAT_TITLE) || defined(PROTO) - /*ARGSUSED*/ void ! gui_mch_settitle(char_u *title, char_u *icon) { # ifdef HAVE_GTK2 if (title != NULL && output_conv.vc_type != CONV_NONE) --- 4412,4419 ---- } #if defined(FEAT_TITLE) || defined(PROTO) void ! gui_mch_settitle(char_u *title, char_u *icon UNUSED) { # ifdef HAVE_GTK2 if (title != NULL && output_conv.vc_type != CONV_NONE) *************** *** 4493,4499 **** * Get a font structure for highlighting. * "cbdata" is a pointer to the global gui structure. */ - /*ARGSUSED*/ static void font_sel_ok(GtkWidget *wgt, gpointer cbdata) { --- 4491,4496 ---- *************** *** 4509,4515 **** gtk_main_quit(); } - /*ARGSUSED*/ static void font_sel_cancel(GtkWidget *wgt, gpointer cbdata) { --- 4506,4511 ---- *************** *** 4520,4526 **** gtk_main_quit(); } - /*ARGSUSED*/ static void font_sel_destroy(GtkWidget *wgt, gpointer cbdata) { --- 4516,4521 ---- *************** *** 4620,4626 **** /* * Try to load the requested fontset. */ - /*ARGSUSED2*/ GuiFontset gui_mch_get_fontset(char_u *name, int report_error, int fixed_width) { --- 4615,4620 ---- *************** *** 4863,4869 **** styled_font[1] = &gui.ital_font; styled_font[2] = &gui.boldital_font; ! /* First free whatever was freviously there. */ for (i = 0; i < 3; ++i) if (*styled_font[i]) { --- 4857,4863 ---- styled_font[1] = &gui.ital_font; styled_font[2] = &gui.boldital_font; ! /* First free whatever was previously there. */ for (i = 0; i < 3; ++i) if (*styled_font[i]) { *************** *** 5012,5020 **** * Initialize Vim to use the font or fontset with the given name. * Return FAIL if the font could not be loaded, OK otherwise. */ - /*ARGSUSED1*/ int ! gui_mch_init_font(char_u *font_name, int fontset) { #ifdef HAVE_GTK2 PangoFontDescription *font_desc; --- 5006,5013 ---- * Initialize Vim to use the font or fontset with the given name. * Return FAIL if the font could not be loaded, OK otherwise. */ int ! gui_mch_init_font(char_u *font_name, int fontset UNUSED) { #ifdef HAVE_GTK2 PangoFontDescription *font_desc; *************** *** 5326,5334 **** /* * Return the name of font "font" in allocated memory. */ - /*ARGSUSED*/ char_u * ! gui_mch_get_fontname(GuiFont font, char_u *name) { # ifdef HAVE_GTK2 if (font != NOFONT) --- 5319,5326 ---- /* * Return the name of font "font" in allocated memory. */ char_u * ! gui_mch_get_fontname(GuiFont font, char_u *name UNUSED) { # ifdef HAVE_GTK2 if (font != NOFONT) *************** *** 5732,5738 **** { int i; int offset; ! const static int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; int y = FILL_Y(row + 1) - 1; /* Undercurl: draw curl at the bottom of the character cell. */ --- 5724,5730 ---- { int i; int offset; ! static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 }; int y = FILL_Y(row + 1) - 1; /* Undercurl: draw curl at the bottom of the character cell. */ *************** *** 6402,6408 **** /* * Callback function, used when data is available on the SNiFF connection. */ - /* ARGSUSED */ static void sniff_request_cb( gpointer data, --- 6394,6399 ---- *************** *** 6711,6719 **** /* * Disown the selection. */ - /*ARGSUSED*/ void ! clip_mch_lose_selection(VimClipboard *cbd) { /* WEIRD: when using NULL to actually disown the selection, we lose the * selection the first time we own it. */ --- 6702,6709 ---- /* * Disown the selection. */ void ! clip_mch_lose_selection(VimClipboard *cbd UNUSED) { /* WEIRD: when using NULL to actually disown the selection, we lose the * selection the first time we own it. */ *************** *** 6741,6749 **** * Send the current selection to the clipboard. Do nothing for X because we * will fill in the selection only when requested by another app. */ - /*ARGSUSED*/ void ! clip_mch_set_selection(VimClipboard *cbd) { } --- 6731,6738 ---- * Send the current selection to the clipboard. Do nothing for X because we * will fill in the selection only when requested by another app. */ void ! clip_mch_set_selection(VimClipboard *cbd UNUSED) { } *************** *** 6950,6956 **** else id &= ~1; /* they are always even (why?) */ } ! else if (shape < sizeof(mshape_ids) / sizeof(int)) id = mshape_ids[shape]; else return; --- 6939,6945 ---- else id &= ~1; /* they are always even (why?) */ } ! else if (shape < (int)(sizeof(mshape_ids) / sizeof(int))) id = mshape_ids[shape]; else return; *** ../vim-7.2.180/src/gui_gtk_f.c 2007-05-10 19:50:33.000000000 +0200 --- src/gui_gtk_f.c 2009-05-17 15:48:51.000000000 +0200 *************** *** 227,240 **** if (!form_type) { ! GtkTypeInfo form_info = ! { ! "GtkForm", ! sizeof(GtkForm), ! sizeof(GtkFormClass), ! (GtkClassInitFunc) gtk_form_class_init, ! (GtkObjectInitFunc) gtk_form_init ! }; form_type = gtk_type_unique(GTK_TYPE_CONTAINER, &form_info); } --- 227,239 ---- if (!form_type) { ! GtkTypeInfo form_info; ! ! form_info.type_name = "GtkForm"; ! form_info.object_size = sizeof(GtkForm); ! form_info.class_size = sizeof(GtkFormClass); ! form_info.class_init_func = (GtkClassInitFunc)gtk_form_class_init; ! form_info.object_init_func = (GtkObjectInitFunc)gtk_form_init; form_type = gtk_type_unique(GTK_TYPE_CONTAINER, &form_info); } *************** *** 611,620 **** } } - /*ARGSUSED1*/ static void gtk_form_forall(GtkContainer *container, ! gboolean include_internals, GtkCallback callback, gpointer callback_data) { --- 610,618 ---- } } static void gtk_form_forall(GtkContainer *container, ! gboolean include_internals UNUSED, GtkCallback callback, gpointer callback_data) { *************** *** 786,794 **** * them or discards them, depending on whether we are obscured * or not. */ - /*ARGSUSED1*/ static GdkFilterReturn ! gtk_form_filter(GdkXEvent *gdk_xevent, GdkEvent *event, gpointer data) { XEvent *xevent; GtkForm *form; --- 784,791 ---- * them or discards them, depending on whether we are obscured * or not. */ static GdkFilterReturn ! gtk_form_filter(GdkXEvent *gdk_xevent, GdkEvent *event UNUSED, gpointer data) { XEvent *xevent; GtkForm *form; *************** *** 821,829 **** * there is no corresponding event in GTK, so we have * to get the events from a filter */ - /*ARGSUSED1*/ static GdkFilterReturn ! gtk_form_main_filter(GdkXEvent *gdk_xevent, GdkEvent *event, gpointer data) { XEvent *xevent; GtkForm *form; --- 818,827 ---- * there is no corresponding event in GTK, so we have * to get the events from a filter */ static GdkFilterReturn ! gtk_form_main_filter(GdkXEvent *gdk_xevent, ! GdkEvent *event UNUSED, ! gpointer data) { XEvent *xevent; GtkForm *form; *************** *** 911,919 **** #endif } - /*ARGSUSED0*/ static void ! gtk_form_child_map(GtkWidget *widget, gpointer user_data) { GtkFormChild *child; --- 909,916 ---- #endif } static void ! gtk_form_child_map(GtkWidget *widget UNUSED, gpointer user_data) { GtkFormChild *child; *************** *** 923,931 **** gdk_window_show(child->window); } - /*ARGSUSED0*/ static void ! gtk_form_child_unmap(GtkWidget *widget, gpointer user_data) { GtkFormChild *child; --- 920,927 ---- gdk_window_show(child->window); } static void ! gtk_form_child_unmap(GtkWidget *widget UNUSED, gpointer user_data) { GtkFormChild *child; *** ../vim-7.2.180/src/gui_beval.c 2009-03-18 12:20:35.000000000 +0100 --- src/gui_beval.c 2009-05-17 15:53:22.000000000 +0200 *************** *** 15,21 **** /* * Common code, invoked when the mouse is resting for a moment. */ - /*ARGSUSED*/ void general_beval_cb(beval, state) BalloonEval *beval; --- 15,20 ---- *************** *** 551,559 **** return FALSE; /* continue emission */ } - /*ARGSUSED*/ static gint ! mainwin_event_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { BalloonEval *beval = (BalloonEval *)data; --- 550,557 ---- return FALSE; /* continue emission */ } static gint ! mainwin_event_cb(GtkWidget *widget UNUSED, GdkEvent *event, gpointer data) { BalloonEval *beval = (BalloonEval *)data; *************** *** 663,671 **** return FALSE; /* don't call me again */ } - /*ARGSUSED2*/ static gint ! balloon_expose_event_cb(GtkWidget *widget, GdkEventExpose *event, gpointer data) { gtk_paint_flat_box(widget->style, widget->window, GTK_STATE_NORMAL, GTK_SHADOW_OUT, --- 661,670 ---- return FALSE; /* don't call me again */ } static gint ! balloon_expose_event_cb(GtkWidget *widget, ! GdkEventExpose *event, ! gpointer data UNUSED) { gtk_paint_flat_box(widget->style, widget->window, GTK_STATE_NORMAL, GTK_SHADOW_OUT, *************** *** 676,682 **** } # ifndef HAVE_GTK2 - /*ARGSUSED2*/ static void balloon_draw_cb(GtkWidget *widget, GdkRectangle *area, gpointer data) { --- 675,680 ---- *************** *** 726,732 **** /* * The X event handler. All it does is call the real event handler. */ - /*ARGSUSED*/ static void pointerEventEH(w, client_data, event, unused) Widget w; --- 724,729 ---- *************** *** 877,883 **** } } - /*ARGSUSED*/ static void timerRoutine(dx, id) XtPointer dx; --- 874,879 ---- *** ../vim-7.2.180/src/netbeans.c 2009-02-21 22:12:43.000000000 +0100 --- src/netbeans.c 2009-05-17 15:51:14.000000000 +0200 *************** *** 700,706 **** /* * Read and process a command from netbeans. */ - /*ARGSUSED*/ #if defined(FEAT_GUI_W32) || defined(PROTO) /* Use this one when generating prototypes, the others are static. */ void --- 700,705 ---- *************** *** 708,719 **** #else # ifdef FEAT_GUI_MOTIF static void ! messageFromNetbeans(XtPointer clientData, int *unused1, XtInputId *unused2) # endif # ifdef FEAT_GUI_GTK static void ! messageFromNetbeans(gpointer clientData, gint unused1, ! GdkInputCondition unused2) # endif #endif { --- 707,721 ---- #else # ifdef FEAT_GUI_MOTIF static void ! messageFromNetbeans(XtPointer clientData UNUSED ! int *unused1 UNUSED, ! XtInputId *unused2 UNUSED) # endif # ifdef FEAT_GUI_GTK static void ! messageFromNetbeans(gpointer clientData UNUSED, ! gint unused1 UNUSED, ! GdkInputCondition unused2 UNUSED) # endif #endif { *************** *** 1585,1591 **** --- 1587,1595 ---- buf_delsign(buf->bufp, id); } else + { nbdebug((" No sign on line %d\n", i)); + } } nbdebug((" Deleting lines %d through %d\n", del_from_lnum, del_to_lnum)); *************** *** 2144,2150 **** --- 2148,2156 ---- #endif } else + { nbdebug((" BAD POSITION in setDot: %s\n", s)); + } /* gui_update_cursor(TRUE, FALSE); */ /* update_curbuf(NOT_VALID); */ *************** *** 2744,2754 **** * cursor and sends it to the debugger for evaluation. The debugger should * respond with a showBalloon command when there is a useful result. */ - /*ARGSUSED*/ void netbeans_beval_cb( BalloonEval *beval, ! int state) { win_T *wp; char_u *text; --- 2750,2759 ---- * cursor and sends it to the debugger for evaluation. The debugger should * respond with a showBalloon command when there is a useful result. */ void netbeans_beval_cb( BalloonEval *beval, ! int state UNUSED) { win_T *wp; char_u *text; *************** *** 3061,3069 **** /* * Send netbeans an unmodufied command. */ - /*ARGSUSED*/ void ! netbeans_unmodified(buf_T *bufp) { #if 0 char_u buf[128]; --- 3066,3073 ---- /* * Send netbeans an unmodufied command. */ void ! netbeans_unmodified(buf_T *bufp UNUSED) { #if 0 char_u buf[128]; *************** *** 3370,3382 **** * buf->signmapused[] maps buffer-local annotation IDs to an index in * globalsignmap[]. */ - /*ARGSUSED*/ static void addsigntype( nbbuf_T *buf, int typeNum, char_u *typeName, ! char_u *tooltip, char_u *glyphFile, int use_fg, int fg, --- 3374,3385 ---- * buf->signmapused[] maps buffer-local annotation IDs to an index in * globalsignmap[]. */ static void addsigntype( nbbuf_T *buf, int typeNum, char_u *typeName, ! char_u *tooltip UNUSED, char_u *glyphFile, int use_fg, int fg, *** ../vim-7.2.180/src/version.c 2009-05-17 13:30:58.000000000 +0200 --- src/version.c 2009-05-17 16:07:26.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 181, /**/ -- I am always surprised in the Linux world how quickly solutions can be obtained. (Imagine sending an email to Bill Gates, asking why Windows crashed, and how to fix it... and then getting an answer that fixed the problem... <0>_<0> !) -- Mark Langdon /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.182 --- To: vim-dev at vim.org Subject: Patch 7.2.182 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.182 (after 7.2.181) Problem: Compilation problems after previous patch for Motif. Gvim with GTK crashes on startup. Solution: Add comma. Init form structure to zeroes. Files: src/netbeans.c, src/gui_gtk_f.c *** ../vim-7.2.181/src/netbeans.c 2009-05-17 16:23:20.000000000 +0200 --- src/netbeans.c 2009-05-17 22:34:11.000000000 +0200 *************** *** 707,713 **** #else # ifdef FEAT_GUI_MOTIF static void ! messageFromNetbeans(XtPointer clientData UNUSED int *unused1 UNUSED, XtInputId *unused2 UNUSED) # endif --- 707,713 ---- #else # ifdef FEAT_GUI_MOTIF static void ! messageFromNetbeans(XtPointer clientData UNUSED, int *unused1 UNUSED, XtInputId *unused2 UNUSED) # endif *** ../vim-7.2.181/src/gui_gtk_f.c 2009-05-17 16:23:20.000000000 +0200 --- src/gui_gtk_f.c 2009-05-17 23:20:41.000000000 +0200 *************** *** 229,234 **** --- 229,235 ---- { GtkTypeInfo form_info; + vim_memset(&form_info, 0, sizeof(form_info)); form_info.type_name = "GtkForm"; form_info.object_size = sizeof(GtkForm); form_info.class_size = sizeof(GtkFormClass); *** ../vim-7.2.181/src/version.c 2009-05-17 16:23:20.000000000 +0200 --- src/version.c 2009-05-17 23:21:41.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 182, /**/ -- We apologise again for the fault in the subtitles. Those responsible for sacking the people who have just been sacked have been sacked. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.183 --- To: vim-dev at vim.org Subject: Patch 7.2.183 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.183 Problem: Configure problem for sys/sysctl.h on OpenBSD. (Dasn) Solution: Add separate check for this header file. Also switch to newer version of autoconf. Files: src/auto/configure, src/configure.in *** ../vim-7.2.182/src/auto/configure 2009-05-14 22:19:19.000000000 +0200 --- src/auto/configure 2009-05-16 13:32:16.000000000 +0200 *************** *** 1,6 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.62. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. --- 1,6 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.63. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. *************** *** 635,772 **** # include #endif" ! ac_subst_vars='SHELL ! PATH_SEPARATOR ! PACKAGE_NAME ! PACKAGE_TARNAME ! PACKAGE_VERSION ! PACKAGE_STRING ! PACKAGE_BUGREPORT ! exec_prefix ! prefix ! program_transform_name ! bindir ! sbindir ! libexecdir ! datarootdir ! datadir ! sysconfdir ! sharedstatedir ! localstatedir ! includedir ! oldincludedir ! docdir ! infodir ! htmldir ! dvidir ! pdfdir ! psdir ! libdir ! localedir ! mandir ! DEFS ! ECHO_C ! ECHO_N ! ECHO_T ! LIBS ! build_alias ! host_alias ! target_alias ! SET_MAKE ! CC ! CFLAGS ! LDFLAGS ! CPPFLAGS ! ac_ct_CC ! EXEEXT ! OBJEXT ! CPP ! GREP ! EGREP ! AWK ! STRIP ! CPP_MM ! OS_EXTRA_SRC ! OS_EXTRA_OBJ ! VIMNAME ! EXNAME ! VIEWNAME ! line_break ! dovimdiff ! dogvimdiff ! compiledby ! vi_cv_path_mzscheme ! MZSCHEME_SRC ! MZSCHEME_OBJ ! MZSCHEME_PRO ! MZSCHEME_LIBS ! MZSCHEME_CFLAGS ! vi_cv_path_perl ! vi_cv_perllib ! shrpenv ! PERL_SRC ! PERL_OBJ ! PERL_PRO ! PERL_CFLAGS ! PERL_LIBS ! vi_cv_path_python ! PYTHON_CONFDIR ! PYTHON_LIBS ! PYTHON_GETPATH_CFLAGS ! PYTHON_CFLAGS ! PYTHON_SRC ! PYTHON_OBJ ! vi_cv_path_tcl ! TCL_SRC ! TCL_OBJ ! TCL_PRO ! TCL_CFLAGS ! TCL_LIBS ! vi_cv_path_ruby ! RUBY_SRC ! RUBY_OBJ ! RUBY_PRO ! RUBY_CFLAGS ! RUBY_LIBS ! WORKSHOP_SRC ! WORKSHOP_OBJ ! NETBEANS_SRC ! NETBEANS_OBJ ! SNIFF_SRC ! SNIFF_OBJ ! xmkmfpath ! XMKMF ! X_CFLAGS ! X_PRE_LIBS ! X_LIBS ! X_EXTRA_LIBS ! X_LIB ! GTK_CONFIG ! GTK12_CONFIG ! PKG_CONFIG ! GTK_CFLAGS ! GTK_LIBS ! GTK_LIBNAME ! GNOME_LIBS ! GNOME_LIBDIR ! GNOME_INCLUDEDIR ! GNOME_CONFIG ! MOTIF_LIBNAME ! NARROW_PROTO ! GUI_INC_LOC ! GUI_LIB_LOC ! GUITYPE ! GUI_X_LIBS ! HANGULIN_SRC ! HANGULIN_OBJ ! TAGPRG ! INSTALL_LANGS ! INSTALL_TOOL_LANGS ! MSGFMT ! MAKEMO ! DEPEND_CFLAGS_FILTER LIBOBJS ! LTLIBOBJS' ac_subst_files='' ac_user_opts=' enable_option_checking --- 635,772 ---- # include #endif" ! ac_subst_vars='LTLIBOBJS LIBOBJS ! DEPEND_CFLAGS_FILTER ! MAKEMO ! MSGFMT ! INSTALL_TOOL_LANGS ! INSTALL_LANGS ! TAGPRG ! HANGULIN_OBJ ! HANGULIN_SRC ! GUI_X_LIBS ! GUITYPE ! GUI_LIB_LOC ! GUI_INC_LOC ! NARROW_PROTO ! MOTIF_LIBNAME ! GNOME_CONFIG ! GNOME_INCLUDEDIR ! GNOME_LIBDIR ! GNOME_LIBS ! GTK_LIBNAME ! GTK_LIBS ! GTK_CFLAGS ! PKG_CONFIG ! GTK12_CONFIG ! GTK_CONFIG ! X_LIB ! X_EXTRA_LIBS ! X_LIBS ! X_PRE_LIBS ! X_CFLAGS ! XMKMF ! xmkmfpath ! SNIFF_OBJ ! SNIFF_SRC ! NETBEANS_OBJ ! NETBEANS_SRC ! WORKSHOP_OBJ ! WORKSHOP_SRC ! RUBY_LIBS ! RUBY_CFLAGS ! RUBY_PRO ! RUBY_OBJ ! RUBY_SRC ! vi_cv_path_ruby ! TCL_LIBS ! TCL_CFLAGS ! TCL_PRO ! TCL_OBJ ! TCL_SRC ! vi_cv_path_tcl ! PYTHON_OBJ ! PYTHON_SRC ! PYTHON_CFLAGS ! PYTHON_GETPATH_CFLAGS ! PYTHON_LIBS ! PYTHON_CONFDIR ! vi_cv_path_python ! PERL_LIBS ! PERL_CFLAGS ! PERL_PRO ! PERL_OBJ ! PERL_SRC ! shrpenv ! vi_cv_perllib ! vi_cv_path_perl ! MZSCHEME_CFLAGS ! MZSCHEME_LIBS ! MZSCHEME_PRO ! MZSCHEME_OBJ ! MZSCHEME_SRC ! vi_cv_path_mzscheme ! compiledby ! dogvimdiff ! dovimdiff ! line_break ! VIEWNAME ! EXNAME ! VIMNAME ! OS_EXTRA_OBJ ! OS_EXTRA_SRC ! CPP_MM ! STRIP ! AWK ! EGREP ! GREP ! CPP ! OBJEXT ! EXEEXT ! ac_ct_CC ! CPPFLAGS ! LDFLAGS ! CFLAGS ! CC ! SET_MAKE ! target_alias ! host_alias ! build_alias ! LIBS ! ECHO_T ! ECHO_N ! ECHO_C ! DEFS ! mandir ! localedir ! libdir ! psdir ! pdfdir ! dvidir ! htmldir ! infodir ! docdir ! oldincludedir ! includedir ! localstatedir ! sharedstatedir ! sysconfdir ! datadir ! datarootdir ! libexecdir ! sbindir ! bindir ! program_transform_name ! prefix ! exec_prefix ! PACKAGE_BUGREPORT ! PACKAGE_STRING ! PACKAGE_VERSION ! PACKAGE_TARNAME ! PACKAGE_NAME ! PATH_SEPARATOR ! SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking *************** *** 1253,1261 **** if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; ! fatal) { $as_echo "$as_me: error: Unrecognized options: $ac_unrecognized_opts" >&2 { (exit 1); exit 1; }; } ;; ! *) $as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi --- 1253,1261 ---- if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; ! fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 { (exit 1); exit 1; }; } ;; ! *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi *************** *** 1308,1314 **** ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ! { $as_echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 --- 1308,1314 ---- ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ! { $as_echo "$as_me: error: working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 *************** *** 1587,1593 **** if $ac_init_version; then cat <<\_ACEOF configure ! generated by GNU Autoconf 2.62 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. --- 1587,1593 ---- if $ac_init_version; then cat <<\_ACEOF configure ! generated by GNU Autoconf 2.63 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. *************** *** 1601,1607 **** running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was ! generated by GNU Autoconf 2.62. Invocation command line was $ $0 $@ --- 1601,1607 ---- running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was ! generated by GNU Autoconf 2.63. Invocation command line was $ $0 $@ *************** *** 1724,1731 **** case $ac_val in #( *${as_nl}*) case $ac_var in #( ! *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ! $as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( --- 1724,1731 ---- case $ac_val in #( *${as_nl}*) case $ac_var in #( ! *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 ! $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *************** *** 1928,1933 **** --- 1928,1935 ---- fi done if $ac_cache_corrupted; then + { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 *************** *** 2084,2095 **** else case $cross_compiling:$ac_tool_warned in yes:) ! { $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf at gnu.org." >&5 ! $as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf at gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC --- 2086,2093 ---- else case $cross_compiling:$ac_tool_warned in yes:) ! { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ! $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC *************** *** 2288,2299 **** else case $cross_compiling:$ac_tool_warned in yes:) ! { $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf at gnu.org." >&5 ! $as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf at gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC --- 2286,2293 ---- else case $cross_compiling:$ac_tool_warned in yes:) ! { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 ! $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC *************** *** 2303,2313 **** fi ! test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 $as_echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } # Provide some information about the compiler. $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 --- 2297,2309 ---- fi ! test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ! $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ! { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 $as_echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; }; } # Provide some information about the compiler. $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 *************** *** 2437,2447 **** $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 $as_echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} ! { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext --- 2433,2445 ---- $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 $as_echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} ! { (exit 77); exit 77; }; }; } fi ac_exeext=$ac_cv_exeext *************** *** 2469,2481 **** if test "$cross_compiling" = maybe; then cross_compiling=yes else ! { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } fi fi fi --- 2467,2481 ---- if test "$cross_compiling" = maybe; then cross_compiling=yes else ! { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ! $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ! { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; }; } fi fi fi *************** *** 2518,2528 **** esac done else ! { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext --- 2518,2530 ---- esac done else ! { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ! $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ! { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; }; } fi rm -f conftest$ac_cv_exeext *************** *** 2576,2586 **** $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext --- 2578,2590 ---- $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 $as_echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext *************** *** 3148,3158 **** if $ac_preproc_ok; then : else ! { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 $as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } fi ac_ext=c --- 3152,3164 ---- if $ac_preproc_ok; then : else ! { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 ! $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ! { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 $as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; }; } fi ac_ext=c *************** *** 4016,4023 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 4022,4030 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 4154,4160 **** $as_echo "$ac_cv_header_Carbon_Carbon_h" >&6; } fi ! if test $ac_cv_header_Carbon_Carbon_h = yes; then CARBON=yes fi --- 4161,4167 ---- $as_echo "$ac_cv_header_Carbon_Carbon_h" >&6; } fi ! if test "x$ac_cv_header_Carbon_Carbon_h" = x""yes; then CARBON=yes fi *************** *** 4484,4490 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_selinux_is_selinux_enabled" >&5 $as_echo "$ac_cv_lib_selinux_is_selinux_enabled" >&6; } ! if test $ac_cv_lib_selinux_is_selinux_enabled = yes; then LIBS="$LIBS -lselinux" cat >>confdefs.h <<\_ACEOF #define HAVE_SELINUX 1 --- 4491,4497 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_selinux_is_selinux_enabled" >&5 $as_echo "$ac_cv_lib_selinux_is_selinux_enabled" >&6; } ! if test "x$ac_cv_lib_selinux_is_selinux_enabled" = x""yes; then LIBS="$LIBS -lselinux" cat >>confdefs.h <<\_ACEOF #define HAVE_SELINUX 1 *************** *** 5891,5897 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 $as_echo "$ac_cv_lib_socket_socket" >&6; } ! if test $ac_cv_lib_socket_socket = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBSOCKET 1 _ACEOF --- 5898,5904 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 $as_echo "$ac_cv_lib_socket_socket" >&6; } ! if test "x$ac_cv_lib_socket_socket" = x""yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBSOCKET 1 _ACEOF *************** *** 5966,5972 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ! if test $ac_cv_lib_nsl_gethostbyname = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBNSL 1 _ACEOF --- 5973,5979 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ! if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBNSL 1 _ACEOF *************** *** 6203,6210 **** have_x=disabled else case $x_includes,$x_libraries in #( ! *\'*) { { $as_echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 ! $as_echo "$as_me: error: Cannot use X directory names containing '" >&2;} { (exit 1); exit 1; }; };; #( *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then $as_echo_n "(cached) " >&6 --- 6210,6217 ---- have_x=disabled else case $x_includes,$x_libraries in #( ! *\'*) { { $as_echo "$as_me:$LINENO: error: cannot use X directory names containing '" >&5 ! $as_echo "$as_me: error: cannot use X directory names containing '" >&2;} { (exit 1); exit 1; }; };; #( *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then $as_echo_n "(cached) " >&6 *************** *** 6242,6248 **** *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in ! /usr/lib | /lib) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi --- 6249,6255 ---- *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in ! /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi *************** *** 6682,6688 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } ! if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi --- 6689,6695 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } ! if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi *************** *** 6752,6758 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } ! if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi --- 6759,6765 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } ! if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi *************** *** 6924,6930 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ! if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi --- 6931,6937 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ! if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi *************** *** 6994,7000 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } ! if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi --- 7001,7007 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } ! if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi *************** *** 7160,7166 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 $as_echo "$ac_cv_lib_socket_connect" >&6; } ! if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi --- 7167,7173 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 $as_echo "$ac_cv_lib_socket_connect" >&6; } ! if test "x$ac_cv_lib_socket_connect" = x""yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi *************** *** 7319,7325 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 $as_echo "$ac_cv_lib_posix_remove" >&6; } ! if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi --- 7326,7332 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 $as_echo "$ac_cv_lib_posix_remove" >&6; } ! if test "x$ac_cv_lib_posix_remove" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi *************** *** 7478,7484 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 $as_echo "$ac_cv_lib_ipc_shmat" >&6; } ! if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi --- 7485,7491 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 $as_echo "$ac_cv_lib_ipc_shmat" >&6; } ! if test "x$ac_cv_lib_ipc_shmat" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi *************** *** 7559,7565 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } ! if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi --- 7566,7572 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } ! if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi *************** *** 7727,7733 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&5 $as_echo "$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&6; } ! if test $ac_cv_lib_Xdmcp__XdmcpAuthDoIt = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp" fi --- 7734,7740 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&5 $as_echo "$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&6; } ! if test "x$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp" fi *************** *** 7797,7803 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceOpenConnection" >&5 $as_echo "$ac_cv_lib_ICE_IceOpenConnection" >&6; } ! if test $ac_cv_lib_ICE_IceOpenConnection = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE" fi --- 7804,7810 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceOpenConnection" >&5 $as_echo "$ac_cv_lib_ICE_IceOpenConnection" >&6; } ! if test "x$ac_cv_lib_ICE_IceOpenConnection" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE" fi *************** *** 7868,7874 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5 $as_echo "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6; } ! if test $ac_cv_lib_Xpm_XpmCreatePixmapFromData = yes; then X_PRE_LIBS="$X_PRE_LIBS -lXpm" fi --- 7875,7881 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5 $as_echo "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6; } ! if test "x$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = x""yes; then X_PRE_LIBS="$X_PRE_LIBS -lXpm" fi *************** *** 9251,9257 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 $as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } ! if test $ac_cv_lib_Xext_XShapeQueryExtension = yes; then GUI_X_LIBS="-lXext" fi --- 9258,9264 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 $as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } ! if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = x""yes; then GUI_X_LIBS="-lXext" fi *************** *** 9320,9326 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_w_wslen" >&5 $as_echo "$ac_cv_lib_w_wslen" >&6; } ! if test $ac_cv_lib_w_wslen = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lw" fi --- 9327,9333 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_w_wslen" >&5 $as_echo "$ac_cv_lib_w_wslen" >&6; } ! if test "x$ac_cv_lib_w_wslen" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lw" fi *************** *** 9389,9395 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlsym" >&5 $as_echo "$ac_cv_lib_dl_dlsym" >&6; } ! if test $ac_cv_lib_dl_dlsym = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl" fi --- 9396,9402 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlsym" >&5 $as_echo "$ac_cv_lib_dl_dlsym" >&6; } ! if test "x$ac_cv_lib_dl_dlsym" = x""yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl" fi *************** *** 9458,9464 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&5 $as_echo "$ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&6; } ! if test $ac_cv_lib_Xmu_XmuCreateStippledPixmap = yes; then GUI_X_LIBS="-lXmu $GUI_X_LIBS" fi --- 9465,9471 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&5 $as_echo "$ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&6; } ! if test "x$ac_cv_lib_Xmu_XmuCreateStippledPixmap" = x""yes; then GUI_X_LIBS="-lXmu $GUI_X_LIBS" fi *************** *** 9528,9534 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xp_XpEndJob" >&5 $as_echo "$ac_cv_lib_Xp_XpEndJob" >&6; } ! if test $ac_cv_lib_Xp_XpEndJob = yes; then GUI_X_LIBS="-lXp $GUI_X_LIBS" fi --- 9535,9541 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xp_XpEndJob" >&5 $as_echo "$ac_cv_lib_Xp_XpEndJob" >&6; } ! if test "x$ac_cv_lib_Xp_XpEndJob" = x""yes; then GUI_X_LIBS="-lXp $GUI_X_LIBS" fi *************** *** 9699,9706 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 9706,9714 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 9852,9859 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 9860,9868 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 10098,10105 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 10107,10115 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 10539,10545 **** $as_echo "$ac_cv_header_elf_h" >&6; } fi ! if test $ac_cv_header_elf_h = yes; then HAS_ELF=1 fi --- 10549,10555 ---- $as_echo "$ac_cv_header_elf_h" >&6; } fi ! if test "x$ac_cv_header_elf_h" = x""yes; then HAS_ELF=1 fi *************** *** 10605,10611 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_elf_main" >&5 $as_echo "$ac_cv_lib_elf_main" >&6; } ! if test $ac_cv_lib_elf_main = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBELF 1 _ACEOF --- 10615,10621 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_elf_main" >&5 $as_echo "$ac_cv_lib_elf_main" >&6; } ! if test "x$ac_cv_lib_elf_main" = x""yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBELF 1 _ACEOF *************** *** 10679,10686 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 _ACEOF --- 10689,10697 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 _ACEOF *************** *** 10966,10972 **** - for ac_header in stdarg.h stdlib.h string.h sys/select.h sys/utsname.h \ termcap.h fcntl.h sgtty.h sys/ioctl.h sys/time.h sys/types.h termio.h \ iconv.h langinfo.h math.h unistd.h stropts.h errno.h \ --- 10977,10982 ---- *************** *** 10974,10980 **** sys/stream.h termios.h libc.h sys/statfs.h \ poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \ libgen.h util/debug.h util/msg18n.h frame.h \ ! sys/acl.h sys/access.h sys/sysctl.h sys/sysinfo.h wchar.h wctype.h do as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then --- 10984,10990 ---- sys/stream.h termios.h libc.h sys/statfs.h \ poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \ libgen.h util/debug.h util/msg18n.h frame.h \ ! sys/acl.h sys/access.h sys/sysinfo.h wchar.h wctype.h do as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then *************** *** 11108,11115 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 11118,11126 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 11172,11179 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 11183,11256 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then ! cat >>confdefs.h <<_ACEOF ! #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ! _ACEOF ! ! fi ! ! done ! ! ! ! for ac_header in sys/sysctl.h ! do ! as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ! { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ! $as_echo_n "checking for $ac_header... " >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ! $as_echo_n "(cached) " >&6 ! else ! cat >conftest.$ac_ext <<_ACEOF ! /* confdefs.h. */ ! _ACEOF ! cat confdefs.h >>conftest.$ac_ext ! cat >>conftest.$ac_ext <<_ACEOF ! /* end confdefs.h. */ ! #if defined HAVE_SYS_PARAM_H ! # include ! #endif ! ! #include <$ac_header> ! _ACEOF ! rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ! $as_echo "$ac_try_echo") >&5 ! (eval "$ac_compile") 2>conftest.er1 ! ac_status=$? ! grep -v '^ *+' conftest.er1 >conftest.err ! rm -f conftest.er1 ! cat conftest.err >&5 ! $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! eval "$as_ac_Header=yes" ! else ! $as_echo "$as_me: failed program was:" >&5 ! sed 's/^/| /' conftest.$ac_ext >&5 ! ! eval "$as_ac_Header=no" ! fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! fi ! ac_res=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ! $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 11372,11379 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 11449,11457 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 11770,11776 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 $as_echo "$ac_cv_type_mode_t" >&6; } ! if test $ac_cv_type_mode_t = yes; then : else --- 11848,11854 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 $as_echo "$ac_cv_type_mode_t" >&6; } ! if test "x$ac_cv_type_mode_t" = x""yes; then : else *************** *** 11874,11880 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 $as_echo "$ac_cv_type_off_t" >&6; } ! if test $ac_cv_type_off_t = yes; then : else --- 11952,11958 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 $as_echo "$ac_cv_type_off_t" >&6; } ! if test "x$ac_cv_type_off_t" = x""yes; then : else *************** *** 11978,11984 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 $as_echo "$ac_cv_type_pid_t" >&6; } ! if test $ac_cv_type_pid_t = yes; then : else --- 12056,12062 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 $as_echo "$ac_cv_type_pid_t" >&6; } ! if test "x$ac_cv_type_pid_t" = x""yes; then : else *************** *** 12082,12088 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 $as_echo "$ac_cv_type_size_t" >&6; } ! if test $ac_cv_type_size_t = yes; then : else --- 12160,12166 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 $as_echo "$ac_cv_type_size_t" >&6; } ! if test "x$ac_cv_type_size_t" = x""yes; then : else *************** *** 12286,12292 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_ino_t" >&5 $as_echo "$ac_cv_type_ino_t" >&6; } ! if test $ac_cv_type_ino_t = yes; then : else --- 12364,12370 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_ino_t" >&5 $as_echo "$ac_cv_type_ino_t" >&6; } ! if test "x$ac_cv_type_ino_t" = x""yes; then : else *************** *** 12390,12396 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_dev_t" >&5 $as_echo "$ac_cv_type_dev_t" >&6; } ! if test $ac_cv_type_dev_t = yes; then : else --- 12468,12474 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_type_dev_t" >&5 $as_echo "$ac_cv_type_dev_t" >&6; } ! if test "x$ac_cv_type_dev_t" = x""yes; then : else *************** *** 12680,12687 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_Lib'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_LIB${libname}" | $as_tr_cpp` 1 _ACEOF --- 12758,12766 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_Lib'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_LIB${libname}" | $as_tr_cpp` 1 _ACEOF *************** *** 13929,13936 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_var'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF --- 14008,14016 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_var'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF *************** *** 14313,14319 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_m_strtod" >&5 $as_echo "$ac_cv_lib_m_strtod" >&6; } ! if test $ac_cv_lib_m_strtod = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF --- 14393,14399 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_m_strtod" >&5 $as_echo "$ac_cv_lib_m_strtod" >&6; } ! if test "x$ac_cv_lib_m_strtod" = x""yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF *************** *** 14473,14479 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix1e_acl_get_file" >&5 $as_echo "$ac_cv_lib_posix1e_acl_get_file" >&6; } ! if test $ac_cv_lib_posix1e_acl_get_file = yes; then LIBS="$LIBS -lposix1e" else { $as_echo "$as_me:$LINENO: checking for acl_get_file in -lacl" >&5 --- 14553,14559 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix1e_acl_get_file" >&5 $as_echo "$ac_cv_lib_posix1e_acl_get_file" >&6; } ! if test "x$ac_cv_lib_posix1e_acl_get_file" = x""yes; then LIBS="$LIBS -lposix1e" else { $as_echo "$as_me:$LINENO: checking for acl_get_file in -lacl" >&5 *************** *** 14541,14547 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_file" >&5 $as_echo "$ac_cv_lib_acl_acl_get_file" >&6; } ! if test $ac_cv_lib_acl_acl_get_file = yes; then LIBS="$LIBS -lacl" { $as_echo "$as_me:$LINENO: checking for fgetxattr in -lattr" >&5 $as_echo_n "checking for fgetxattr in -lattr... " >&6; } --- 14621,14627 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_acl_acl_get_file" >&5 $as_echo "$ac_cv_lib_acl_acl_get_file" >&6; } ! if test "x$ac_cv_lib_acl_acl_get_file" = x""yes; then LIBS="$LIBS -lacl" { $as_echo "$as_me:$LINENO: checking for fgetxattr in -lattr" >&5 $as_echo_n "checking for fgetxattr in -lattr... " >&6; } *************** *** 14608,14614 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_attr_fgetxattr" >&5 $as_echo "$ac_cv_lib_attr_fgetxattr" >&6; } ! if test $ac_cv_lib_attr_fgetxattr = yes; then LIBS="$LIBS -lattr" fi --- 14688,14694 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_attr_fgetxattr" >&5 $as_echo "$ac_cv_lib_attr_fgetxattr" >&6; } ! if test "x$ac_cv_lib_attr_fgetxattr" = x""yes; then LIBS="$LIBS -lattr" fi *************** *** 15746,15752 **** fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_xpg4__xpg4_setrunelocale" >&5 $as_echo "$ac_cv_lib_xpg4__xpg4_setrunelocale" >&6; } ! if test $ac_cv_lib_xpg4__xpg4_setrunelocale = yes; then LIBS="$LIBS -lxpg4" fi --- 15826,15832 ---- fi { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_xpg4__xpg4_setrunelocale" >&5 $as_echo "$ac_cv_lib_xpg4__xpg4_setrunelocale" >&6; } ! if test "x$ac_cv_lib_xpg4__xpg4_setrunelocale" = x""yes; then LIBS="$LIBS -lxpg4" fi *************** *** 16045,16052 **** $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! if test `eval 'as_val=${'$as_ac_var'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF --- 16125,16133 ---- $as_echo "$as_val"'` { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } ! as_val=`eval 'as_val=${'$as_ac_var'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF *************** *** 16246,16252 **** $as_echo "$ac_cv_header_dlfcn_h" >&6; } fi ! if test $ac_cv_header_dlfcn_h = yes; then DLL=dlfcn.h else if test "${ac_cv_header_dl_h+set}" = set; then --- 16327,16333 ---- $as_echo "$ac_cv_header_dlfcn_h" >&6; } fi ! if test "x$ac_cv_header_dlfcn_h" = x""yes; then DLL=dlfcn.h else if test "${ac_cv_header_dl_h+set}" = set; then *************** *** 16376,16382 **** $as_echo "$ac_cv_header_dl_h" >&6; } fi ! if test $ac_cv_header_dl_h = yes; then DLL=dl.h fi --- 16457,16463 ---- $as_echo "$ac_cv_header_dl_h" >&6; } fi ! if test "x$ac_cv_header_dl_h" = x""yes; then DLL=dl.h fi *************** *** 16895,16902 **** $as_echo "$ac_res" >&6; } fi ! if test `eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` = yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF --- 16976,16984 ---- $as_echo "$ac_res" >&6; } fi ! as_val=`eval 'as_val=${'$as_ac_Header'} ! $as_echo "$as_val"'` ! if test "x$as_val" = x""yes; then cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF *************** *** 16986,16993 **** case $ac_val in #( *${as_nl}*) case $ac_var in #( ! *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ! $as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( --- 17068,17075 ---- case $ac_val in #( *${as_nl}*) case $ac_var in #( ! *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 ! $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *************** *** 17379,17385 **** # values after options handling. ac_log=" This file was extended by $as_me, which was ! generated by GNU Autoconf 2.62. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS --- 17461,17467 ---- # values after options handling. ac_log=" This file was extended by $as_me, which was ! generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS *************** *** 17392,17397 **** --- 17474,17488 ---- _ACEOF + case $ac_config_files in *" + "*) set x $ac_config_files; shift; ac_config_files=$*;; + esac + + case $ac_config_headers in *" + "*) set x $ac_config_headers; shift; ac_config_headers=$*;; + esac + + cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" *************** *** 17404,17419 **** \`$as_me' instantiates files from templates according to the current configuration. ! Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit ! -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions ! --file=FILE[:TEMPLATE] instantiate the configuration file FILE ! --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: --- 17495,17511 ---- \`$as_me' instantiates files from templates according to the current configuration. ! Usage: $0 [OPTION]... [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit ! -q, --quiet, --silent ! do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions ! --file=FILE[:TEMPLATE] instantiate the configuration file FILE ! --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: *************** *** 17428,17434 **** cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ config.status ! configured by $0, generated by GNU Autoconf 2.62, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2008 Free Software Foundation, Inc. --- 17520,17526 ---- cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ config.status ! configured by $0, generated by GNU Autoconf 2.63, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2008 Free Software Foundation, Inc. *************** *** 17625,17631 **** $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } ! if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` = $ac_delim_num; then break elif $ac_last_try; then { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 --- 17717,17724 ---- $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } ! ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` ! if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 *************** *** 17830,17838 **** } split(mac1, mac2, "(") #) macro = mac2[1] if (D_is_set[macro]) { # Preserve the white space surrounding the "#". - prefix = substr(line, 1, index(line, defundef) - 1) print prefix "define", macro P[macro] D[macro] next } else { --- 17923,17931 ---- } split(mac1, mac2, "(") #) macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { *************** *** 17840,17846 **** # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { ! print "/*", line, "*/" next } } --- 17933,17939 ---- # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { ! print "/*", prefix defundef, macro, "*/" next } } *************** *** 17864,17871 **** esac case $ac_mode$ac_tag in :[FHL]*:*);; ! :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ! $as_echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; --- 17957,17964 ---- esac case $ac_mode$ac_tag in :[FHL]*:*);; ! :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 ! $as_echo "$as_me: error: invalid tag $ac_tag" >&2;} { (exit 1); exit 1; }; };; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; *************** *** 18183,18190 **** $ac_cs_success || { (exit 1); exit 1; } fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then ! { $as_echo "$as_me:$LINENO: WARNING: Unrecognized options: $ac_unrecognized_opts" >&5 ! $as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2;} fi --- 18276,18283 ---- $ac_cs_success || { (exit 1); exit 1; } fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then ! { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 ! $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi *** ../vim-7.2.182/src/configure.in 2009-05-14 22:19:19.000000000 +0200 --- src/configure.in 2009-05-16 13:32:00.000000000 +0200 *************** *** 2100,2106 **** sys/stream.h termios.h libc.h sys/statfs.h \ poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \ libgen.h util/debug.h util/msg18n.h frame.h \ ! sys/acl.h sys/access.h sys/sysctl.h sys/sysinfo.h wchar.h wctype.h) dnl sys/ptem.h depends on sys/stream.h on Solaris AC_CHECK_HEADERS(sys/ptem.h, [], [], --- 2100,2106 ---- sys/stream.h termios.h libc.h sys/statfs.h \ poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \ libgen.h util/debug.h util/msg18n.h frame.h \ ! sys/acl.h sys/access.h sys/sysinfo.h wchar.h wctype.h) dnl sys/ptem.h depends on sys/stream.h on Solaris AC_CHECK_HEADERS(sys/ptem.h, [], [], *************** *** 2108,2113 **** --- 2108,2119 ---- # include #endif]) + dnl sys/sysctl.h depends on sys/param.h on OpenBSD + AC_CHECK_HEADERS(sys/sysctl.h, [], [], + [#if defined HAVE_SYS_PARAM_H + # include + #endif]) + dnl pthread_np.h may exist but can only be used after including pthread.h AC_MSG_CHECKING([for pthread_np.h]) *** ../vim-7.2.182/src/version.c 2009-05-17 23:25:16.000000000 +0200 --- src/version.c 2009-05-21 15:16:01.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 183, /**/ -- CART DRIVER: Bring out your dead! There are legs stick out of windows and doors. Two MEN are fighting in the mud - covered from head to foot in it. Another MAN is on his hands in knees shovelling mud into his mouth. We just catch sight of a MAN falling into a well. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.184 --- To: vim-dev at vim.org Subject: Patch 7.2.184 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.184 Problem: Some more compiler warnings when using gcc -Wextra. Solution: Add UNUSED and type casts. Autoconf check for wchar_t. Files: src/auto/configure, src/config.h.in, src/configure.in, src/gui_athena.c, src/gui_x11.c, src/gui.c, src/gui_beval.c, src/gui_at_sb.c, src/gui_at_fs.c, src/gui_motif.c, src/gui_xmdlg.c, src/gui_xmebw.c, src/if_python.c, src/window.c, src/workshop.c *** ../vim-7.2.183/src/auto/configure 2009-05-21 15:19:59.000000000 +0200 --- src/auto/configure 2009-05-21 16:05:01.000000000 +0200 *************** *** 7977,7982 **** --- 7977,8058 ---- LDFLAGS="$ac_save_LDFLAGS" + { $as_echo "$as_me:$LINENO: checking size of wchar_t is 2 bytes" >&5 + $as_echo_n "checking size of wchar_t is 2 bytes... " >&6; } + if test "${ac_cv_small_wchar_t+set}" = set; then + $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + { { $as_echo "$as_me:$LINENO: error: failed to compile test program" >&5 + $as_echo "$as_me: error: failed to compile test program" >&2;} + { (exit 1); exit 1; }; } + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + + #include + #if STDC_HEADERS + # include + # include + #endif + main() + { + if (sizeof(wchar_t) <= 2) + exit(1); + exit(0); + } + _ACEOF + rm -f conftest$ac_exeext + if { (ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac + eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" + $as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac + eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" + $as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_small_wchar_t="no" + else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_small_wchar_t="yes" + fi + rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + + { $as_echo "$as_me:$LINENO: result: $ac_cv_small_wchar_t" >&5 + $as_echo "$ac_cv_small_wchar_t" >&6; } + if test "x$ac_cv_small_wchar_t" = "xyes" ; then + cat >>confdefs.h <<\_ACEOF + #define SMALL_WCHAR_T 1 + _ACEOF + + fi + fi fi *************** *** 15417,15423 **** - bcopy_test_prog=' #include "confdefs.h" #ifdef HAVE_STRING_H --- 15493,15498 ---- *** ../vim-7.2.183/src/config.h.in 2009-05-14 22:19:19.000000000 +0200 --- src/config.h.in 2009-05-21 15:44:24.000000000 +0200 *************** *** 39,44 **** --- 39,47 ---- /* Defined to the size of an int */ #undef SIZEOF_INT + /* Define when wchar_t is only 2 bytes. */ + #undef SMALL_WCHAR_T + /* * If we cannot trust one of the following from the libraries, we use our * own safe but probably slower vim_memmove(). *** ../vim-7.2.183/src/configure.in 2009-05-21 15:19:59.000000000 +0200 --- src/configure.in 2009-05-21 16:04:56.000000000 +0200 *************** *** 1193,1198 **** --- 1193,1220 ---- LDFLAGS="$ac_save_LDFLAGS" + AC_MSG_CHECKING(size of wchar_t is 2 bytes) + AC_CACHE_VAL(ac_cv_small_wchar_t, + [AC_TRY_RUN([ + #include + #if STDC_HEADERS + # include + # include + #endif + main() + { + if (sizeof(wchar_t) <= 2) + exit(1); + exit(0); + }], + ac_cv_small_wchar_t="no", + ac_cv_small_wchar_t="yes", + AC_MSG_ERROR(failed to compile test program))]) + AC_MSG_RESULT($ac_cv_small_wchar_t) + if test "x$ac_cv_small_wchar_t" = "xyes" ; then + AC_DEFINE(SMALL_WCHAR_T) + fi + fi fi *************** *** 2881,2887 **** AC_MSG_RESULT($ac_cv_sizeof_int) AC_DEFINE_UNQUOTED(SIZEOF_INT, $ac_cv_sizeof_int) - dnl Check for memmove() before bcopy(), makes memmove() be used when both are dnl present, fixes problem with incompatibility between Solaris 2.4 and 2.5. --- 2903,2908 ---- *** ../vim-7.2.183/src/gui_athena.c 2008-06-24 23:00:51.000000000 +0200 --- src/gui_athena.c 2009-05-21 16:39:43.000000000 +0200 *************** *** 86,95 **** * Scrollbar callback (XtNjumpProc) for when the scrollbar is dragged with the * left or middle mouse button. */ - /* ARGSUSED */ static void gui_athena_scroll_cb_jump(w, client_data, call_data) ! Widget w; XtPointer client_data, call_data; { scrollbar_T *sb, *sb_info; --- 86,94 ---- * Scrollbar callback (XtNjumpProc) for when the scrollbar is dragged with the * left or middle mouse button. */ static void gui_athena_scroll_cb_jump(w, client_data, call_data) ! Widget w UNUSED; XtPointer client_data, call_data; { scrollbar_T *sb, *sb_info; *************** *** 122,131 **** [...3247 lines suppressed...] ! char *filename) { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) --- 262,270 ---- load_window(filename, lineno); } void workshop_front_file( ! char *filename UNUSED) { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) *************** *** 538,546 **** * breakpoints have moved when a program has been recompiled and * reloaded into dbx. */ - /*ARGSUSED*/ void ! workshop_moved_marks(char *filename) { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) --- 536,543 ---- * breakpoints have moved when a program has been recompiled and * reloaded into dbx. */ void ! workshop_moved_marks(char *filename UNUSED) { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) *************** *** 575,585 **** return (int)h; } - /*ARGSUSED*/ void workshop_footer_message( ! char *message, ! int severity) /* severity is currently unused */ { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) --- 572,581 ---- return (int)h; } void workshop_footer_message( ! char *message, ! int severity UNUSED) /* severity is currently unused */ { #ifdef WSDEBUG_TRACE if (WSDLEVEL(WS_TRACE_VERBOSE | WS_TRACE)) *************** *** 687,701 **** * command. The globals curMenuName and curMenuPriority contain the name and * priority of the parent menu tree. */ - /*ARGSUSED*/ void workshop_menu_item( char *label, char *verb, ! char *accelerator, char *acceleratorText, ! char *name, ! char *filepos, char *sensitive) { char cbuf[BUFSIZ]; --- 683,696 ---- * command. The globals curMenuName and curMenuPriority contain the name and * priority of the parent menu tree. */ void workshop_menu_item( char *label, char *verb, ! char *accelerator UNUSED, char *acceleratorText, ! char *name UNUSED, ! char *filepos UNUSED, char *sensitive) { char cbuf[BUFSIZ]; *************** *** 810,822 **** workshopInitDone = True; } - /*ARGSUSED*/ void workshop_toolbar_button( char *label, char *verb, ! char *senseVerb, ! char *filepos, char *help, char *sense, char *file, --- 805,816 ---- workshopInitDone = True; } void workshop_toolbar_button( char *label, char *verb, ! char *senseVerb UNUSED, ! char *filepos UNUSED, char *help, char *sense, char *file, *************** *** 968,974 **** if (strcmp(option, "syntax") == 0) vim_snprintf(cbuf, sizeof(cbuf), "syntax %s", value); else if (strcmp(option, "savefiles") == 0) ! ; /* XXX - Not yet implemented */ break; case 'l': --- 962,970 ---- if (strcmp(option, "syntax") == 0) vim_snprintf(cbuf, sizeof(cbuf), "syntax %s", value); else if (strcmp(option, "savefiles") == 0) ! { ! /* XXX - Not yet implemented */ ! } break; case 'l': *************** *** 1098,1107 **** /* * A button in the toolbar has been pushed. */ - /*ARGSUSED*/ int workshop_get_positions( ! void *clientData, /* unused */ char **filename, /* output data */ int *curLine, /* output data */ int *curCol, /* output data */ --- 1094,1102 ---- /* * A button in the toolbar has been pushed. */ int workshop_get_positions( ! void *clientData UNUSED, char **filename, /* output data */ int *curLine, /* output data */ int *curCol, /* output data */ *************** *** 1526,1534 **** return NULL; } - /*ARGSUSED*/ void ! workshop_save_sensitivity(char *filename) { } --- 1521,1528 ---- return NULL; } void ! workshop_save_sensitivity(char *filename UNUSED) { } *** ../vim-7.2.183/src/version.c 2009-05-21 15:19:59.000000000 +0200 --- src/version.c 2009-05-21 23:19:40.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 184, /**/ -- CART DRIVER: Bring out your dead! LARGE MAN: Here's one! CART DRIVER: Ninepence. BODY: I'm not dead! "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.185 --- To: vim-dev at vim.org Subject: Patch 7.2.185 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.185 Problem: Some more compiler warnings when using gcc -Wextra. Solution: Add UNUSED and type casts. Files: src/Makefile, src/if_tlc.c, src/if_ruby.c *** ../vim-7.2.184/src/Makefile 2009-05-21 23:25:47.000000000 +0200 --- src/Makefile 2009-05-22 18:18:44.000000000 +0200 *************** *** 105,112 **** # 4. "make test" {{{1 # This is optional. This will run Vim scripts on a number of test # files, and compare the produced output with the expected output. ! # If all is well, you will get the "ALL DONE" message in the end. See ! # below (search for "/^test"). # # 5. "make install" {{{1 # If the new Vim seems to be working OK you can install it and the --- 105,112 ---- # 4. "make test" {{{1 # This is optional. This will run Vim scripts on a number of test # files, and compare the produced output with the expected output. ! # If all is well, you will get the "ALL DONE" message in the end. If a ! # test fails you get "TEST FAILURE". See below (search for "/^test"). # # 5. "make install" {{{1 # If the new Vim seems to be working OK you can install it and the *************** *** 533,538 **** --- 533,543 ---- #CFLAGS = -g -DDEBUG -Wall -Wshadow -Wmissing-prototypes #CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall -Wmissing-prototypes + # Use this with GCC to check for mistakes, unused arguments, etc. + #CFLAGS = -g -Wall -Wextra -Wmissing-prototypes -Wunreachable-code + #PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers + #MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code + # EFENCE - Electric-Fence malloc debugging: catches memory accesses beyond # allocated memory (and makes every malloc()/free() very slow). # Electric Fence is free (search ftp sites). *************** *** 551,562 **** # }}} # LINT - for running lint ! # For standard lint ! #LINT = lint ! #LINT_OPTIONS = -beprxzF ! # For splint (see cleanlint.vim for filtering the output) ! LINT = splint ! LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. # Might not work with GUI or Perl. --- 556,568 ---- # }}} # LINT - for running lint ! # For standard Unix lint ! LINT = lint ! LINT_OPTIONS = -beprxzF ! # For splint ! # It doesn't work well, crashes on include files and non-ascii characters. ! #LINT = splint ! #LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999 # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. # Might not work with GUI or Perl. *************** *** 1743,1749 **** # messages. Don't worry about that. # If there is a real error, there will be a difference between "test.out" and # a "test99.ok" file. ! # If everything is alright, the final message will be "ALL DONE". # test check: $(MAKE) -f Makefile $(VIMTARGET) --- 1749,1756 ---- # messages. Don't worry about that. # If there is a real error, there will be a difference between "test.out" and # a "test99.ok" file. ! # If everything is alright, the final message will be "ALL DONE". If not you ! # get "TEST FAILURE". # test check: $(MAKE) -f Makefile $(VIMTARGET) *************** *** 2427,2433 **** $(CCC) -o $@ if_xcmdsrv.c objects/if_mzsch.o: if_mzsch.c ! $(CCC) -o $@ if_mzsch.c objects/if_perl.o: auto/if_perl.c $(CCC) -o $@ auto/if_perl.c --- 2434,2440 ---- $(CCC) -o $@ if_xcmdsrv.c objects/if_mzsch.o: if_mzsch.c ! $(CCC) -o $@ $(MZSCHEME_CFLAGS_EXTRA) if_mzsch.c objects/if_perl.o: auto/if_perl.c $(CCC) -o $@ auto/if_perl.c *************** *** 2436,2442 **** $(CCC) -o $@ if_perlsfio.c objects/if_python.o: if_python.c ! $(CCC) -o $@ if_python.c objects/if_ruby.o: if_ruby.c $(CCC) -o $@ if_ruby.c --- 2443,2449 ---- $(CCC) -o $@ if_perlsfio.c objects/if_python.o: if_python.c ! $(CCC) -o $@ $(PYTHON_CFLAGS_EXTRA) if_python.c objects/if_ruby.o: if_ruby.c $(CCC) -o $@ if_ruby.c *** ../vim-7.2.184/src/if_ruby.c 2007-09-13 15:00:49.000000000 +0200 --- src/if_ruby.c 2009-05-22 15:32:04.000000000 +0200 *************** *** 492,498 **** } } ! static VALUE vim_message(VALUE self, VALUE str) { char *buff, *p; --- 492,498 ---- } } ! static VALUE vim_message(VALUE self UNUSED, VALUE str) { char *buff, *p; *************** *** 505,524 **** return Qnil; } ! static VALUE vim_set_option(VALUE self, VALUE str) { do_set((char_u *)STR2CSTR(str), 0); update_screen(NOT_VALID); return Qnil; } ! static VALUE vim_command(VALUE self, VALUE str) { do_cmdline_cmd((char_u *)STR2CSTR(str)); return Qnil; } ! static VALUE vim_evaluate(VALUE self, VALUE str) { #ifdef FEAT_EVAL char_u *value = eval_to_string((char_u *)STR2CSTR(str), NULL, TRUE); --- 505,524 ---- return Qnil; } ! static VALUE vim_set_option(VALUE self UNUSED, VALUE str) { do_set((char_u *)STR2CSTR(str), 0); update_screen(NOT_VALID); return Qnil; } ! static VALUE vim_command(VALUE self UNUSED, VALUE str) { do_cmdline_cmd((char_u *)STR2CSTR(str)); return Qnil; } ! static VALUE vim_evaluate(VALUE self UNUSED, VALUE str) { #ifdef FEAT_EVAL char_u *value = eval_to_string((char_u *)STR2CSTR(str), NULL, TRUE); *************** *** 580,586 **** return INT2NUM(n); } ! static VALUE buffer_s_aref(VALUE self, VALUE num) { buf_T *b; int n = NUM2INT(num); --- 580,586 ---- return INT2NUM(n); } ! static VALUE buffer_s_aref(VALUE self UNUSED, VALUE num) { buf_T *b; int n = NUM2INT(num); *************** *** 629,635 **** --- 629,637 ---- return line ? rb_str_new2(line) : Qnil; } rb_raise(rb_eIndexError, "index %d out of buffer", n); + #ifndef __GNUC__ return Qnil; /* For stop warning */ + #endif } static VALUE buffer_aref(VALUE self, VALUE num) *************** *** 668,674 **** --- 670,678 ---- else { rb_raise(rb_eIndexError, "index %d out of buffer", n); + #ifndef __GNUC__ return Qnil; /* For stop warning */ + #endif } return str; } *************** *** 789,795 **** return get_buffer_line(curbuf, curwin->w_cursor.lnum); } ! static VALUE set_current_line(VALUE self, VALUE str) { return set_buffer_line(curbuf, curwin->w_cursor.lnum, str); } --- 793,799 ---- return get_buffer_line(curbuf, curwin->w_cursor.lnum); } ! static VALUE set_current_line(VALUE self UNUSED, VALUE str) { return set_buffer_line(curbuf, curwin->w_cursor.lnum, str); } *************** *** 815,821 **** #endif } ! static VALUE window_s_aref(VALUE self, VALUE num) { win_T *w; int n = NUM2INT(num); --- 819,825 ---- #endif } ! static VALUE window_s_aref(VALUE self UNUSED, VALUE num) { win_T *w; int n = NUM2INT(num); *************** *** 897,903 **** return Qnil; } ! static VALUE f_p(int argc, VALUE *argv, VALUE self) { int i; VALUE str = rb_str_new("", 0); --- 901,907 ---- return Qnil; } ! static VALUE f_p(int argc, VALUE *argv, VALUE self UNUSED) { int i; VALUE str = rb_str_new("", 0); *** ../vim-7.2.184/src/version.c 2009-05-21 23:25:38.000000000 +0200 --- src/version.c 2009-05-22 18:18:58.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 185, /**/ -- BODY: I'm not dead! CART DRIVER: 'Ere. He says he's not dead. LARGE MAN: Yes he is. BODY: I'm not! "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.186 --- To: vim-dev at vim.org Subject: Patch 7.2.186 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.186 Problem: Some more compiler warnings when using gcc -Wextra. Solution: Now with the intended if_tcl.c changes. Files: src/if_tcl.c *** ../vim-7.2.185/src/if_tcl.c 2007-05-10 20:55:34.000000000 +0200 --- src/if_tcl.c 2009-05-22 15:29:53.000000000 +0200 *************** *** 290,299 **** */ #define TCL_EXIT 5 - /* ARGSUSED */ static int exitcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 290,298 ---- */ #define TCL_EXIT 5 static int exitcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 315,324 **** return TCL_ERROR; } - /* ARGSUSED */ static int catchcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 314,322 ---- return TCL_ERROR; } static int catchcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 356,365 **** /* * "::vim::beep" - what Vi[m] does best :-) */ - /* ARGSUSED */ static int beepcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 354,362 ---- /* * "::vim::beep" - what Vi[m] does best :-) */ static int beepcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 378,387 **** * "::vim::buffer {N}" - create buffer command for buffer N. * "::vim::buffer new" - create a new buffer (not implemented) */ - /* ARGSUSED */ static int buffercmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 375,383 ---- * "::vim::buffer {N}" - create buffer command for buffer N. * "::vim::buffer new" - create a new buffer (not implemented) */ static int buffercmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 475,484 **** /* * "::vim::window list" - create list of window commands. */ - /* ARGSUSED */ static int windowcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 471,479 ---- /* * "::vim::window list" - create list of window commands. */ static int windowcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 1130,1139 **** } - /* ARGSUSED */ static int commandcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 1125,1133 ---- } static int commandcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 1145,1154 **** return err; } - /* ARGSUSED */ static int optioncmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 1139,1147 ---- return err; } static int optioncmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 1160,1169 **** return err; } - /* ARGSUSED */ static int exprcmd(dummy, interp, objc, objv) ! ClientData dummy; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; --- 1153,1161 ---- return err; } static int exprcmd(dummy, interp, objc, objv) ! ClientData dummy UNUSED; Tcl_Interp *interp; int objc; Tcl_Obj *CONST objv[]; *************** *** 1584,1594 **** I/O Channel ********************************************/ - /* ARGSUSED */ static int channel_close(instance, interp) ClientData instance; ! Tcl_Interp *interp; { int err = 0; --- 1576,1585 ---- I/O Channel ********************************************/ static int channel_close(instance, interp) ClientData instance; ! Tcl_Interp *interp UNUSED; { int err = 0; *************** *** 1602,1613 **** return err; } - /* ARGSUSED */ static int channel_input(instance, buf, bufsiz, errptr) ! ClientData instance; ! char *buf; ! int bufsiz; int *errptr; { --- 1593,1603 ---- return err; } static int channel_input(instance, buf, bufsiz, errptr) ! ClientData instance UNUSED; ! char *buf UNUSED; ! int bufsiz UNUSED; int *errptr; { *************** *** 1659,1679 **** return result; } - /* ARGSUSED */ static void channel_watch(instance, mask) ! ClientData instance; ! int mask; { Tcl_SetErrno(EINVAL); } - /* ARGSUSED */ static int channel_gethandle(instance, direction, handleptr) ! ClientData instance; ! int direction; ! ClientData *handleptr; { Tcl_SetErrno(EINVAL); return EINVAL; --- 1649,1667 ---- return result; } static void channel_watch(instance, mask) ! ClientData instance UNUSED; ! int mask UNUSED; { Tcl_SetErrno(EINVAL); } static int channel_gethandle(instance, direction, handleptr) ! ClientData instance UNUSED; ! int direction UNUSED; ! ClientData *handleptr UNUSED; { Tcl_SetErrno(EINVAL); return EINVAL; *************** *** 1691,1697 **** NULL, /* set option */ NULL, /* get option */ channel_watch, ! channel_gethandle }; /********************************** --- 1679,1692 ---- NULL, /* set option */ NULL, /* get option */ channel_watch, ! channel_gethandle, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL }; /********************************** *** ../vim-7.2.185/src/version.c 2009-05-22 18:20:23.000000000 +0200 --- src/version.c 2009-05-22 21:07:21.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 186, /**/ -- ARTHUR: Old woman! DENNIS: Man! ARTHUR: Man. I'm sorry. Old man, What knight live in that castle over there? DENNIS: I'm thirty-seven. "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.187 --- To: vim-dev at vim.org Subject: Patch 7.2.187 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.187 (after 7.2.186) Problem: Doesn't build with older versions of TCL. (Yongwei Wu) Solution: Add #ifdefs. (Dominique Pelle) Files: src/if_tcl.c *** ../vim-7.2.186/src/if_tcl.c 2009-05-22 21:07:45.000000000 +0200 --- src/if_tcl.c 2009-05-23 14:23:51.000000000 +0200 *************** *** 161,167 **** # endif /* ! * Declare HANDLE for perl.dll and function pointers. */ static HANDLE hTclLib = NULL; Tcl_Interp* (*dll_Tcl_CreateInterp)(); --- 161,167 ---- # endif /* ! * Declare HANDLE for tcl.dll and function pointers. */ static HANDLE hTclLib = NULL; Tcl_Interp* (*dll_Tcl_CreateInterp)(); *************** *** 182,188 **** * Make all runtime-links of tcl. * * 1. Get module handle using LoadLibraryEx. ! * 2. Get pointer to perl function by GetProcAddress. * 3. Repeat 2, until get all functions will be used. * * Parameter 'libname' provides name of DLL. --- 182,188 ---- * Make all runtime-links of tcl. * * 1. Get module handle using LoadLibraryEx. ! * 2. Get pointer to tcl function by GetProcAddress. * 3. Repeat 2, until get all functions will be used. * * Parameter 'libname' provides name of DLL. *************** *** 1670,1692 **** static Tcl_ChannelType channel_type = { ! "vimmessage", ! NULL, /* blockmode */ ! channel_close, ! channel_input, ! channel_output, ! NULL, /* seek */ ! NULL, /* set option */ ! NULL, /* get option */ ! channel_watch, ! channel_gethandle, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL, ! NULL }; /********************************** --- 1670,1700 ---- static Tcl_ChannelType channel_type = { ! "vimmessage", /* typeName */ ! NULL, /* version */ ! channel_close, /* closeProc */ ! channel_input, /* inputProc */ ! channel_output, /* outputProc */ ! NULL, /* seekProc */ ! NULL, /* setOptionProc */ ! NULL, /* getOptionProc */ ! channel_watch, /* watchProc */ ! channel_gethandle, /* getHandleProc */ ! NULL, /* close2Proc */ ! NULL, /* blockModeProc */ ! #ifdef TCL_CHANNEL_VERSION_2 ! NULL, /* flushProc */ ! NULL, /* handlerProc */ ! #endif ! #ifdef TCL_CHANNEL_VERSION_3 ! NULL, /* wideSeekProc */ ! #endif ! #ifdef TCL_CHANNEL_VERSION_4 ! NULL, /* threadActionProc */ ! #endif ! #ifdef TCL_CHANNEL_VERSION_5 ! NULL /* truncateProc */ ! #endif }; /********************************** *** ../vim-7.2.186/src/version.c 2009-05-22 21:07:45.000000000 +0200 --- src/version.c 2009-05-23 14:25:04.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 187, /**/ -- Friends? I have lots of friends! In fact, I have every episode ever made. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.188 --- To: vim-dev at vim.org Subject: Patch 7.2.188 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.188 Problem: Crash with specific use of function calls. (Meikel Brandmeyer) Solution: Make sure the items referenced by a function call are not freed twice. (based on patch from Nico Weber) Files: src/eval.c *** ../vim-7.2.187/src/eval.c 2009-05-16 17:29:37.000000000 +0200 --- src/eval.c 2009-05-22 20:04:22.000000000 +0200 *************** *** 129,136 **** --- 129,139 ---- /* * When recursively copying lists and dicts we need to remember which ones we * have done to avoid endless recursiveness. This unique ID is used for that. + * The last bit is used for previous_funccal, ignored when comparing. */ static int current_copyID = 0; + #define COPYID_INC 2 + #define COPYID_MASK (~0x1) /* * Array to hold the hashtab with variables local to each sourced script. *************** *** 439,444 **** --- 442,448 ---- static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2)); static char_u *list2string __ARGS((typval_T *tv, int copyID)); static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID)); + static int free_unref_items __ARGS((int copyID)); static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID)); static void set_ref_in_list __ARGS((list_T *l, int copyID)); static void set_ref_in_item __ARGS((typval_T *tv, int copyID)); *************** *** 6494,6507 **** int garbage_collect() { ! dict_T *dd; ! list_T *ll; ! int copyID = ++current_copyID; buf_T *buf; win_T *wp; int i; funccall_T *fc, **pfc; ! int did_free = FALSE; #ifdef FEAT_WINDOWS tabpage_T *tp; #endif --- 6498,6510 ---- int garbage_collect() { ! int copyID; buf_T *buf; win_T *wp; int i; funccall_T *fc, **pfc; ! int did_free; ! int did_free_funccal = FALSE; #ifdef FEAT_WINDOWS tabpage_T *tp; #endif *************** *** 6511,6520 **** --- 6514,6538 ---- may_garbage_collect = FALSE; garbage_collect_at_exit = FALSE; + /* We advance by two because we add one for items referenced through + * previous_funccal. */ + current_copyID += COPYID_INC; + copyID = current_copyID; + /* * 1. Go through all accessible variables and mark all lists and dicts * with copyID. */ + + /* Don't free variables in the previous_funccal list unless they are only + * referenced through previous_funccal. This must be first, because if + * the item is referenced elsewhere it must not be freed. */ + for (fc = previous_funccal; fc != NULL; fc = fc->caller) + { + set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1); + set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1); + } + /* script-local variables */ for (i = 1; i <= ga_scripts.ga_len; ++i) set_ref_in_ht(&SCRIPT_VARS(i), copyID); *************** *** 6546,6556 **** /* v: vars */ set_ref_in_ht(&vimvarht, copyID); /* ! * 2. Go through the list of dicts and free items without the copyID. */ for (dd = first_dict; dd != NULL; ) ! if (dd->dv_copyID != copyID) { /* Free the Dictionary and ordinary items it contains, but don't * recurse into Lists and Dictionaries, they will be in the list --- 6564,6610 ---- /* v: vars */ set_ref_in_ht(&vimvarht, copyID); + /* Free lists and dictionaries that are not referenced. */ + did_free = free_unref_items(copyID); + + /* check if any funccal can be freed now */ + for (pfc = &previous_funccal; *pfc != NULL; ) + { + if (can_free_funccal(*pfc, copyID)) + { + fc = *pfc; + *pfc = fc->caller; + free_funccal(fc, TRUE); + did_free = TRUE; + did_free_funccal = TRUE; + } + else + pfc = &(*pfc)->caller; + } + if (did_free_funccal) + /* When a funccal was freed some more items might be garbage + * collected, so run again. */ + (void)garbage_collect(); + + return did_free; + } + + /* + * Free lists and dictionaries that are no longer referenced. + */ + static int + free_unref_items(copyID) + int copyID; + { + dict_T *dd; + list_T *ll; + int did_free = FALSE; + /* ! * Go through the list of dicts and free items without the copyID. */ for (dd = first_dict; dd != NULL; ) ! if ((dd->dv_copyID & COPYID_MASK) != (copyID & COPYID_MASK)) { /* Free the Dictionary and ordinary items it contains, but don't * recurse into Lists and Dictionaries, they will be in the list *************** *** 6565,6576 **** dd = dd->dv_used_next; /* ! * 3. Go through the list of lists and free items without the copyID. ! * But don't free a list that has a watcher (used in a for loop), these ! * are not referenced anywhere. */ for (ll = first_list; ll != NULL; ) ! if (ll->lv_copyID != copyID && ll->lv_watch == NULL) { /* Free the List and ordinary items it contains, but don't recurse * into Lists and Dictionaries, they will be in the list of dicts --- 6619,6631 ---- dd = dd->dv_used_next; /* ! * Go through the list of lists and free items without the copyID. ! * But don't free a list that has a watcher (used in a for loop), these ! * are not referenced anywhere. */ for (ll = first_list; ll != NULL; ) ! if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK) ! && ll->lv_watch == NULL) { /* Free the List and ordinary items it contains, but don't recurse * into Lists and Dictionaries, they will be in the list of dicts *************** *** 6584,6603 **** else ll = ll->lv_used_next; - /* check if any funccal can be freed now */ - for (pfc = &previous_funccal; *pfc != NULL; ) - { - if (can_free_funccal(*pfc, copyID)) - { - fc = *pfc; - *pfc = fc->caller; - free_funccal(fc, TRUE); - did_free = TRUE; - } - else - pfc = &(*pfc)->caller; - } - return did_free; } --- 6639,6644 ---- *************** *** 18842,18847 **** --- 18883,18889 ---- { hash_init(&dict->dv_hashtab); dict->dv_refcount = DO_NOT_FREE_CNT; + dict->dv_copyID = 0; dict_var->di_tv.vval.v_dict = dict; dict_var->di_tv.v_type = VAR_DICT; dict_var->di_tv.v_lock = VAR_FIXED; *************** *** 21294,21301 **** current_funccal = fc->caller; --depth; ! /* if the a:000 list and the a: dict are not referenced we can free the ! * funccall_T and what's in it. */ if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT) --- 21336,21343 ---- current_funccal = fc->caller; --depth; ! /* If the a:000 list and the l: and a: dicts are not referenced we can ! * free the funccall_T and what's in it. */ if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT) *************** *** 21334,21340 **** /* * Return TRUE if items in "fc" do not have "copyID". That means they are not ! * referenced from anywhere. */ static int can_free_funccal(fc, copyID) --- 21376,21382 ---- /* * Return TRUE if items in "fc" do not have "copyID". That means they are not ! * referenced from anywhere that is in use. */ static int can_free_funccal(fc, copyID) *** ../vim-7.2.187/src/version.c 2009-05-23 14:27:43.000000000 +0200 --- src/version.c 2009-05-24 13:20:49.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 188, /**/ -- ARTHUR: ... and I am your king .... OLD WOMAN: Ooooh! I didn't know we had a king. I thought we were an autonomous collective ... "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.189 --- To: vim-dev at vim.org Subject: Patch 7.2.189 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.189 Problem: Possible hang for deleting auto-indent. (Dominique Pelle) Solution: Make sure the position is not beyond the end of the line. Files: src/edit.c *** ../vim-7.2.188/src/edit.c 2009-05-16 16:36:25.000000000 +0200 --- src/edit.c 2009-05-26 10:53:05.000000000 +0200 *************** *** 6420,6432 **** /* If we just did an auto-indent, remove the white space from the end * of the line, and put the cursor back. ! * Do this when ESC was used or moving the cursor up/down. */ if (did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL ! && curwin->w_cursor.lnum != end_insert_pos->lnum))) { pos_T tpos = curwin->w_cursor; curwin->w_cursor = *end_insert_pos; for (;;) { if (gchar_cursor() == NUL && curwin->w_cursor.col > 0) --- 6420,6436 ---- /* If we just did an auto-indent, remove the white space from the end * of the line, and put the cursor back. ! * Do this when ESC was used or moving the cursor up/down. ! * Check for the old position still being valid, just in case the text ! * got changed unexpectedly. */ if (did_ai && (esc || (vim_strchr(p_cpo, CPO_INDENT) == NULL ! && curwin->w_cursor.lnum != end_insert_pos->lnum)) ! && end_insert_pos->lnum <= curbuf->b_ml.ml_line_count) { pos_T tpos = curwin->w_cursor; curwin->w_cursor = *end_insert_pos; + check_cursor_col(); /* make sure it is not past the line */ for (;;) { if (gchar_cursor() == NUL && curwin->w_cursor.col > 0) *************** *** 6434,6440 **** cc = gchar_cursor(); if (!vim_iswhite(cc)) break; ! (void)del_char(TRUE); } if (curwin->w_cursor.lnum != tpos.lnum) curwin->w_cursor = tpos; --- 6438,6445 ---- cc = gchar_cursor(); if (!vim_iswhite(cc)) break; ! if (del_char(TRUE) == FAIL) ! break; /* should not happen */ } if (curwin->w_cursor.lnum != tpos.lnum) curwin->w_cursor = tpos; *** ../vim-7.2.188/src/version.c 2009-05-24 13:40:17.000000000 +0200 --- src/version.c 2009-05-26 10:50:53.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 189, /**/ -- FIRST VILLAGER: We have found a witch. May we burn her? "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.190 --- To: vim-dev at vim.org Subject: Patch 7.2.190 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.190 Problem: The register executed by @@ isn't restored. Solution: Mark the executable register in the viminfo file. Files: src/ops.c *** ../vim-7.2.189/src/ops.c 2009-05-13 12:46:36.000000000 +0200 --- src/ops.c 2009-05-26 18:05:23.000000000 +0200 *************** *** 1143,1148 **** --- 1143,1150 ---- return OK; } + static int execreg_lastc = NUL; + /* * execute a yank register: copy it into the stuff buffer * *************** *** 1155,1161 **** int addcr; /* always add '\n' to end of line */ int silent; /* set "silent" flag in typeahead buffer */ { - static int lastc = NUL; long i; char_u *p; int retval = OK; --- 1157,1162 ---- *************** *** 1163,1174 **** if (regname == '@') /* repeat previous one */ { ! if (lastc == NUL) { EMSG(_("E748: No previously used register")); return FAIL; } ! regname = lastc; } /* check for valid regname */ if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE)) --- 1164,1175 ---- if (regname == '@') /* repeat previous one */ { ! if (execreg_lastc == NUL) { EMSG(_("E748: No previously used register")); return FAIL; } ! regname = execreg_lastc; } /* check for valid regname */ if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE)) *************** *** 1176,1182 **** emsg_invreg(regname); return FAIL; } ! lastc = regname; #ifdef FEAT_CLIPBOARD regname = may_get_selection(regname); --- 1177,1183 ---- emsg_invreg(regname); return FAIL; } ! execreg_lastc = regname; #ifdef FEAT_CLIPBOARD regname = may_get_selection(regname); *************** *** 5337,5347 **** --- 5338,5351 ---- /* We only get here (hopefully) if line[0] == '"' */ str = virp->vir_line + 1; + + /* If the line starts with "" this is the y_previous register. */ if (*str == '"') { set_prev = TRUE; str++; } + if (!ASCII_ISALNUM(*str) && *str != '-') { if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line)) *************** *** 5351,5356 **** --- 5355,5368 ---- get_yank_register(*str++, FALSE); if (!force && y_current->y_array != NULL) do_it = FALSE; + + if (*str == '@') + { + /* "x@: register x used for @@ */ + if (force || execreg_lastc == NUL) + execreg_lastc = str[-1]; + } + size = 0; limit = 100; /* Optimized for registers containing <= 100 lines */ if (do_it) *************** *** 5360,5366 **** vim_free(y_current->y_array); array = y_current->y_array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *))); ! str = skipwhite(str); if (STRNCMP(str, "CHAR", 4) == 0) y_current->y_type = MCHAR; #ifdef FEAT_VISUAL --- 5372,5378 ---- vim_free(y_current->y_array); array = y_current->y_array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *))); ! str = skipwhite(skiptowhite(str)); if (STRNCMP(str, "CHAR", 4) == 0) y_current->y_type = MCHAR; #ifdef FEAT_VISUAL *************** *** 5443,5448 **** --- 5455,5461 ---- max_kbyte = get_viminfo_parameter('s'); if (max_kbyte == 0) return; + for (i = 0; i < NUM_REGISTERS; i++) { if (y_regs[i].y_array == NULL) *************** *** 5497,5503 **** if (y_previous == &y_regs[i]) fprintf(fp, "\""); c = get_register_name(i); ! fprintf(fp, "\"%c\t%s\t%d\n", c, type, #ifdef FEAT_VISUAL (int)y_regs[i].y_width #else --- 5510,5519 ---- if (y_previous == &y_regs[i]) fprintf(fp, "\""); c = get_register_name(i); ! fprintf(fp, "\"%c", c); ! if (c == execreg_lastc) ! fprintf(fp, "@"); ! fprintf(fp, "\t%s\t%d\n", type, #ifdef FEAT_VISUAL (int)y_regs[i].y_width #else *** ../vim-7.2.189/src/version.c 2009-05-26 11:01:43.000000000 +0200 --- src/version.c 2009-05-26 18:10:13.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 190, /**/ -- If you had to identify, in one word, the reason why the human race has not achieved, and never will achieve, its full potential, that word would be "meetings." /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.191 --- To: vim-dev at vim.org Subject: Patch 7.2.191 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.191 Problem: Mzscheme interface doesn't work on Ubuntu. Solution: Change autoconf rules. Define missing macro. Some changes to avoid gcc warnings. Remove per-buffer namespace. (Sergey Khorev) Files: runtime/doc/if_mzsch.txt, src/Makefile, src/Make_ming.mak, src/Make_mvc.mak, src/auto/configure, src/configure.in, src/config.mk.in, src/eval.c, src/if_mzsch.c, src/if_mzsch.h, src/main.c, src/proto/if_mzsch.pro *** ../vim-7.2.190/runtime/doc/if_mzsch.txt 2008-08-09 19:36:48.000000000 +0200 --- runtime/doc/if_mzsch.txt 2009-05-26 18:49:53.000000000 +0200 *************** *** 1,4 **** ! *if_mzsch.txt* For Vim version 7.2. Last change: 2008 Jun 28 VIM REFERENCE MANUAL by Sergey Khorev --- 1,4 ---- ! *if_mzsch.txt* For Vim version 7.2. Last change: 2009 May 26 VIM REFERENCE MANUAL by Sergey Khorev *************** *** 42,51 **** *:mzfile* *:mzf* :[range]mzf[ile] {file} Execute the MzScheme script in {file}. {not in Vi} - All statements are executed in the namespace of the - buffer that was current during :mzfile start. - If you want to access other namespaces, use - 'parameterize'. All of these commands do essentially the same thing - they execute a piece of MzScheme code, with the "current range" set to the given line --- 42,47 ---- *************** *** 54,61 **** In the case of :mzscheme, the code to execute is in the command-line. In the case of :mzfile, the code to execute is the contents of the given file. - Each buffer has its own MzScheme namespace. Global namespace is bound to - the "global-namespace" value from the 'vimext' module. MzScheme interface defines exception exn:vim, derived from exn. It is raised for various Vim errors. --- 50,55 ---- *************** *** 79,118 **** e.g.: > :mzscheme (require (prefix vim- vimext)) < ! All the examples below assume this naming scheme. Note that you need to do ! this again for every buffer. - The auto-instantiation can be achieved with autocommands, e.g. you can put - something like this in your .vimrc (EOFs should not have indentation): > - function s:MzRequire() - if has("mzscheme") - :mz << EOF - (require (prefix vim- vimext)) - (let ((buf (vim-get-buff-by-name (vim-eval "expand(\"\")")))) - (when (and buf (not (eq? buf (vim-curr-buff)))) - (parameterize ((current-namespace (vim-get-buff-namespace buf))) - (namespace-attach-module vim-global-namespace 'vimext) - (namespace-require '(prefix vim vimext))))) - EOF - endif - endfunction - - function s:MzStartup() - if has("mzscheme") - au BufNew,BufNewFile,BufAdd,BufReadPre * :call s:MzRequire() - :mz << EOF - (current-library-collection-paths - (cons - (build-path (find-system-path 'addon-dir) (version) "collects") - (current-library-collection-paths))) - EOF - endif - endfunction - - call s:MzStartup() - < - - The global namespace just instantiated this module with the prefix "vimext:". *mzscheme-sandbox* When executed in the |sandbox|, access to some filesystem and Vim interface procedures is restricted. --- 73,80 ---- e.g.: > :mzscheme (require (prefix vim- vimext)) < ! All the examples below assume this naming scheme. *mzscheme-sandbox* When executed in the |sandbox|, access to some filesystem and Vim interface procedures is restricted. *************** *** 121,135 **** 2. Examples *mzscheme-examples* > :mzscheme (display "Hello") :mzscheme (vim-set-buff-line 10 "This is line #10") < Inline script usage: > function! SetFirstLine() :mz << EOF (display "!!!") (vim-set-buff-line 1 "This is line #1") (vim-beep) ! EOF endfunction nmap :call SetFirstLine() --- 83,102 ---- 2. Examples *mzscheme-examples* > :mzscheme (display "Hello") + :mz (display (string-append "Using MzScheme version " (version))) + :mzscheme (require (prefix vim- vimext)) ; for MzScheme < 4.x + :mzscheme (require (prefix-in vim- 'vimext)) ; MzScheme 4.x :mzscheme (vim-set-buff-line 10 "This is line #10") < Inline script usage: > function! SetFirstLine() :mz << EOF (display "!!!") + (require (prefix vim- vimext)) + ; for newer versions (require (prefix-in vim- 'vimext)) (vim-set-buff-line 1 "This is line #1") (vim-beep) ! EOF endfunction nmap :call SetFirstLine() *************** *** 137,153 **** File execution: > :mzfile supascript.scm < ! Accessing the current buffer namespace from an MzScheme program running in ! another buffer within |:mzfile|-executed script : > ! ; Move to the window below ! (vim-command "wincmd j") ! ; execute in the context of buffer, to which window belongs ! ; assume that buffer has 'textstring' defined ! (parameterize ((current-namespace ! (vim-get-buff-namespace (vim-curr-buff)))) ! (eval '(vim-set-buff-line 1 textstring))) ! < ============================================================================== 3. Threads *mzscheme-threads* --- 104,136 ---- File execution: > :mzfile supascript.scm < ! Vim exception handling: > ! :mz << EOF ! (require (prefix vim- vimext)) ! ; for newer versions (require (prefix-in vim- 'vimext)) ! (with-handlers ! ([exn:vim? (lambda (e) (display (exn-message e)))]) ! (vim-eval "nonsense-string")) ! EOF ! < ! Auto-instantiation of vimext module (can be placed in your |vimrc|): > ! function! MzRequire() ! :redir => l:mzversion ! :mz (version) ! :redir END ! if strpart(l:mzversion, 1, 1) < "4" ! " MzScheme versions < 4.x: ! :mz (require (prefix vim- vimext)) ! else ! " newer versions: ! :mz (require (prefix-in vim- 'vimext)) ! endif ! endfunction + if has("mzscheme") + silent call MzRequire() + endif + < ============================================================================== 3. Threads *mzscheme-threads* *************** [...3306 lines suppressed...] */ --- 3035,3040 ---- *************** *** 2653,2675 **** } static void ! make_modules(Scheme_Env *env) { ! int i; ! Scheme_Env *mod; ! ! mod = scheme_primitive_module(scheme_intern_symbol("vimext"), env); /* all prims made closed so they can access their own names */ ! for (i = 0; i < sizeof(prims)/sizeof(prims[0]); i++) { Vim_Prim *prim = prims + i; ! scheme_add_global(prim->name, ! scheme_make_closed_prim_w_arity(prim->prim, prim, prim->name, ! prim->mina, prim->maxa), ! mod); } - scheme_add_global("global-namespace", (Scheme_Object *)environment, mod); scheme_finish_primitive_module(mod); } #ifdef HAVE_SANDBOX --- 3092,3126 ---- } static void ! make_modules() { ! int i; ! Scheme_Env *mod = NULL; ! Scheme_Object *vimext_symbol = NULL; ! Scheme_Object *closed_prim = NULL; ! ! MZ_GC_DECL_REG(3); ! MZ_GC_VAR_IN_REG(0, mod); ! MZ_GC_VAR_IN_REG(1, vimext_symbol); ! MZ_GC_VAR_IN_REG(2, closed_prim); ! MZ_GC_REG(); ! ! vimext_symbol = scheme_intern_symbol("vimext"); ! MZ_GC_CHECK(); ! mod = scheme_primitive_module(vimext_symbol, environment); ! MZ_GC_CHECK(); /* all prims made closed so they can access their own names */ ! for (i = 0; i < (int)(sizeof(prims)/sizeof(prims[0])); i++) { Vim_Prim *prim = prims + i; ! closed_prim = scheme_make_closed_prim_w_arity(prim->prim, prim, prim->name, ! prim->mina, prim->maxa); ! scheme_add_global(prim->name, closed_prim, mod); ! MZ_GC_CHECK(); } scheme_finish_primitive_module(mod); + MZ_GC_CHECK(); + MZ_GC_UNREG(); } #ifdef HAVE_SANDBOX *************** *** 2697,2717 **** --- 3148,3172 ---- { MZ_REGISTER_STATIC(M_write); M_write = scheme_intern_symbol("write"); + MZ_GC_CHECK(); } if (M_read == NULL) { MZ_REGISTER_STATIC(M_read); M_read = scheme_intern_symbol("read"); + MZ_GC_CHECK(); } if (M_execute == NULL) { MZ_REGISTER_STATIC(M_execute); M_execute = scheme_intern_symbol("execute"); + MZ_GC_CHECK(); } if (M_delete == NULL) { MZ_REGISTER_STATIC(M_delete); M_delete = scheme_intern_symbol("delete"); + MZ_GC_CHECK(); } while (!SCHEME_NULLP(requested_access)) *** ../vim-7.2.190/src/if_mzsch.h 2006-03-24 23:43:11.000000000 +0100 --- src/if_mzsch.h 2009-05-26 19:08:21.000000000 +0200 *************** *** 11,16 **** --- 11,17 ---- /* #ifdef needed for "make depend" */ #ifdef FEAT_MZSCHEME + # include # include #endif *************** *** 46,49 **** --- 47,77 ---- # define scheme_byte_string_to_char_string(obj) (obj) #endif + /* Precise GC macros */ + #ifndef MZ_GC_DECL_REG + # define MZ_GC_DECL_REG(size) /* empty */ + #endif + #ifndef MZ_GC_VAR_IN_REG + # define MZ_GC_VAR_IN_REG(x, v) /* empty */ + #endif + #ifndef MZ_GC_ARRAY_VAR_IN_REG + # define MZ_GC_ARRAY_VAR_IN_REG(x, v, l) /* empty */ + #endif + #ifndef MZ_GC_REG + # define MZ_GC_REG() /* empty */ + #endif + #ifndef MZ_GC_UNREG + # define MZ_GC_UNREG() /* empty */ + #endif + + #ifdef MZSCHEME_FORCE_GC + /* + * force garbage collection to check all references are registered + * seg faults will indicate not registered refs + */ + # define MZ_GC_CHECK() scheme_collect_garbage(); + #else + # define MZ_GC_CHECK() /* empty */ + #endif + #endif /* _IF_MZSCH_H_ */ *** ../vim-7.2.190/src/main.c 2009-05-17 13:30:58.000000000 +0200 --- src/main.c 2009-05-26 19:09:01.000000000 +0200 *************** *** 935,942 **** --- 935,948 ---- /* * Call the main command loop. This never returns. + * For embedded MzScheme the main_loop will be called by Scheme + * for proper stack tracking */ + #ifndef FEAT_MZSCHEME main_loop(FALSE, FALSE); + #else + mzscheme_main(); + #endif return 0; } *** ../vim-7.2.190/src/proto/if_mzsch.pro 2004-07-12 17:51:52.000000000 +0200 --- src/proto/if_mzsch.pro 2009-05-26 19:09:55.000000000 +0200 *************** *** 15,24 **** void *mzvim_eval_string __ARGS((char_u *str)); struct Scheme_Object *mzvim_apply __ARGS((struct Scheme_Object *, int argc, struct Scheme_Object **)); ! int mzthreads_allowed (void); ! #ifdef FEAT_GUI_KDE ! void timer_proc (void); ! void mzscheme_kde_start_timer (void); ! void mzscheme_kde_stop_timer (void); ! #endif /* vim: set ft=c : */ --- 15,20 ---- void *mzvim_eval_string __ARGS((char_u *str)); struct Scheme_Object *mzvim_apply __ARGS((struct Scheme_Object *, int argc, struct Scheme_Object **)); ! int mzthreads_allowed __ARGS((void)); ! void mzscheme_main __ARGS((void)); /* vim: set ft=c : */ *** ../vim-7.2.190/src/version.c 2009-05-26 18:12:13.000000000 +0200 --- src/version.c 2009-05-26 22:52:53.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 191, /**/ -- Scientists decoded the first message from an alien civilization: SIMPLY SEND 6 TIMES 10 TO THE 50 ATOMS OF HYDROGEN TO THE STAR SYSTEM AT THE TOP OF THE LIST, CROSS OFF THAT STAR SYSTEM, THEN PUT YOUR STAR SYSTEM AT THE BOTTOM OF THE LIST AND SEND IT TO 100 OTHER STAR SYSTEMS. WITHIN ONE TENTH GALACTIC ROTATION YOU WILL RECEIVE ENOUGH HYDROGREN TO POWER YOUR CIVILIZATION UNTIL ENTROPY REACHES ITS MAXIMUM! IT REALLY WORKS! /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.192 --- To: vim-dev at vim.org Subject: Patch 7.2.192 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.192 (after 7.2.188) Problem: Still a crash in the garbage collector for a very rare situation. Solution: Make sure current_copyID is always incremented correctly. (Kent Sibilev) Files: src/eval.c *** ../vim-7.2.191/src/eval.c 2009-05-26 22:58:43.000000000 +0200 --- src/eval.c 2009-05-29 21:13:47.000000000 +0200 *************** *** 6526,6532 **** /* Don't free variables in the previous_funccal list unless they are only * referenced through previous_funccal. This must be first, because if ! * the item is referenced elsewhere it must not be freed. */ for (fc = previous_funccal; fc != NULL; fc = fc->caller) { set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1); --- 6526,6532 ---- /* Don't free variables in the previous_funccal list unless they are only * referenced through previous_funccal. This must be first, because if ! * the item is referenced elsewhere the funccal must not be freed. */ for (fc = previous_funccal; fc != NULL; fc = fc->caller) { set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1); *************** *** 6564,6573 **** /* v: vars */ set_ref_in_ht(&vimvarht, copyID); ! /* Free lists and dictionaries that are not referenced. */ did_free = free_unref_items(copyID); ! /* check if any funccal can be freed now */ for (pfc = &previous_funccal; *pfc != NULL; ) { if (can_free_funccal(*pfc, copyID)) --- 6564,6577 ---- /* v: vars */ set_ref_in_ht(&vimvarht, copyID); ! /* ! * 2. Free lists and dictionaries that are not referenced. ! */ did_free = free_unref_items(copyID); ! /* ! * 3. Check if any funccal can be freed now. ! */ for (pfc = &previous_funccal; *pfc != NULL; ) { if (can_free_funccal(*pfc, copyID)) *************** *** 9286,9292 **** if (noref < 0 || noref > 1) EMSG(_(e_invarg)); else ! item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0); } /* --- 9290,9299 ---- if (noref < 0 || noref > 1) EMSG(_(e_invarg)); else ! { ! current_copyID += COPYID_INC; ! item_copy(&argvars[0], rettv, TRUE, noref == 0 ? current_copyID : 0); ! } } /* *************** *** 18966,18972 **** char_u *s; char_u numbuf[NUMBUFLEN]; ! s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID); list_one_var_a(prefix, v->di_key, v->di_tv.v_type, s == NULL ? (char_u *)"" : s, first); vim_free(tofree); --- 18973,18980 ---- char_u *s; char_u numbuf[NUMBUFLEN]; ! current_copyID += COPYID_INC; ! s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID); list_one_var_a(prefix, v->di_key, v->di_tv.v_type, s == NULL ? (char_u *)"" : s, first); vim_free(tofree); *************** *** 19401,19407 **** } else if (eap->cmdidx == CMD_echo) msg_puts_attr((char_u *)" ", echo_attr); ! p = echo_string(&rettv, &tofree, numbuf, ++current_copyID); if (p != NULL) for ( ; *p != NUL && !got_int; ++p) { --- 19409,19416 ---- } else if (eap->cmdidx == CMD_echo) msg_puts_attr((char_u *)" ", echo_attr); ! current_copyID += COPYID_INC; ! p = echo_string(&rettv, &tofree, numbuf, current_copyID); if (p != NULL) for ( ; *p != NUL && !got_int; ++p) { *** ../vim-7.2.191/src/version.c 2009-05-26 22:58:43.000000000 +0200 --- src/version.c 2009-06-03 13:21:20.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 192, /**/ -- Imagine a world without hypothetical situations. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.193 --- To: vim-dev at vim.org Subject: Patch 7.2.193 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.193 Problem: Warning for uninitialized values. Solution: Initialize all the struct items. Files: src/eval.c *** ../vim-7.2.192/src/eval.c 2009-06-03 13:22:22.000000000 +0200 --- src/eval.c 2009-05-29 21:13:47.000000000 +0200 *************** *** 286,292 **** #define VV_RO 2 /* read-only */ #define VV_RO_SBX 4 /* read-only in the sandbox */ ! #define VV_NAME(s, t) s, {{t}}, {0} static struct vimvar { --- 286,292 ---- #define VV_RO 2 /* read-only */ #define VV_RO_SBX 4 /* read-only in the sandbox */ ! #define VV_NAME(s, t) s, {{t, 0, {0}}, 0, {0}}, {0} static struct vimvar { *** ../vim-7.2.192/src/version.c 2009-06-03 13:22:23.000000000 +0200 --- src/version.c 2009-06-03 14:25:18.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 193, /**/ -- No engineer can take a shower without wondering if some sort of Teflon coating would make showering unnecessary. (Scott Adams - The Dilbert principle) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.194 --- To: vim-dev at vim.org Subject: Patch 7.2.194 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.194 (extra) Problem: MSVC: rem commands are echoed. Solution: Add commands to switch off echo. (Wang Xu) Files: src/msvc2008.bat *** ../vim-7.2.193/src/msvc2008.bat 2008-06-24 22:55:23.000000000 +0200 --- src/msvc2008.bat 2009-04-29 18:05:11.000000000 +0200 *************** *** 1,5 **** --- 1,7 ---- + @echo off rem To be used on MS-Windows for Visual C++ 2008 Express Edition rem aka Microsoft Visual Studio 9.0. rem See INSTALLpc.txt for information. + @echo on call "%VS90COMNTOOLS%%vsvars32.bat" *** ../vim-7.2.193/src/version.c 2009-06-03 14:25:47.000000000 +0200 --- src/version.c 2009-06-03 15:04:30.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 194, /**/ -- I used to be indecisive, now I'm not sure. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.195 --- To: vim-dev at vim.org Subject: Patch 7.2.195 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.195 Problem: Leaking memory for the command Vim was started with. Solution: Remember the pointer and free it. Files: src/gui_gtk_x11.c *** ../vim-7.2.194/src/gui_gtk_x11.c 2009-05-17 16:23:20.000000000 +0200 --- src/gui_gtk_x11.c 2009-06-03 12:44:31.000000000 +0200 *************** *** 412,417 **** --- 412,418 ---- #endif #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) static const char *restart_command = NULL; + static char *abs_restart_command = NULL; #endif static int found_iconic_arg = FALSE; *************** *** 449,456 **** char_u buf[MAXPATHL]; if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) ! /* Tiny leak; doesn't matter, and usually we don't even get here */ ! restart_command = (char *)vim_strsave(buf); } #endif --- 450,459 ---- char_u buf[MAXPATHL]; if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK) ! { ! abs_restart_command = (char *)vim_strsave(buf); ! restart_command = abs_restart_command; ! } } #endif *************** *** 611,616 **** --- 614,622 ---- gui_mch_free_all() { vim_free(gui_argv); + #if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION) + vim_free(abs_restart_command); + #endif } #endif *** ../vim-7.2.194/src/version.c 2009-06-03 15:05:05.000000000 +0200 --- src/version.c 2009-06-03 16:19:00.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 195, /**/ -- I think that you'll agree that engineers are very effective in their social interactions. It's the "normal" people who are nuts. (Scott Adams - The Dilbert principle) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.196 --- To: vim-dev at vim.org Subject: Patch 7.2.196 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.196 (after 7.2.167) Problem: Turns out splint doesn't work well enough to be usable. Solution: Remove splint support. Files: Filelist, src/cleanlint.vim *** ../vim-7.2.195/Filelist 2009-05-13 12:46:36.000000000 +0200 --- Filelist 2009-05-21 14:42:46.000000000 +0200 *************** *** 139,145 **** src/INSTALL \ src/INSTALLx.txt \ src/Makefile \ - src/cleanlint.vim \ src/auto/configure \ src/config.aap.in \ src/config.h.in \ --- 139,144 ---- *** ../vim-7.2.195/src/cleanlint.vim 2009-05-13 18:54:14.000000000 +0200 --- src/cleanlint.vim 1970-01-01 01:00:00.000000000 +0100 *************** *** 1,32 **** - " Vim tool: Filter output of splint - " - " Maintainer: Bram Moolenaar - " Last Change: 2009 May 13 - - " Usage: redirect output of "make lint" to a file, edit that file with Vim and - " :call CleanLint() - " This deletes irrelevant messages. What remains might be valid warnings. - - fun! CleanLint() - g/Assignment of dev_t to __dev_t:/lockmarks d - g/Assignment of __dev_t to dev_t:/lockmarks d - g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d - g/Operands of == have incompatible types (char_u, int): /lockmarks d - g/Assignment of char to char_u: /lockmarks d - g/Assignment of unsigned int to int: /lockmarks d - g/Assignment of int to unsigned int: /lockmarks d - g/Assignment of unsigned int to long int: /lockmarks d - g/Assignment of int to char_u: /lockmarks d - g/Function .* expects arg . to be wint_t gets int: /lockmarks d - g/Function .* expects arg . to be size_t gets int: /lockmarks d - g/Initial value of .* is type char, expects char_u: /lockmarks d - g/^ex_cmds.h:.* Function types are inconsistent. Parameter 1 is implicitly temp, but unqualified in assigned function:/lockmarks d - g/^ex_docmd.c:.* nospec_str/lockmarks d - g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d - g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d - g/^ Types are incompatible/lockmarks d - g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d - g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d - g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d - g+ A variable is declared but never used. Use /. at unused@./ in front of declaration to suppress message.+lockmarks d - endfun --- 0 ---- *** ../vim-7.2.195/src/version.c 2009-06-03 16:20:09.000000000 +0200 --- src/version.c 2009-06-03 22:04:31.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 196, /**/ -- It's totally unfair to suggest - as many have - that engineers are socially inept. Engineers simply have different objectives when it comes to social interaction. (Scott Adams - The Dilbert principle) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.197 --- To: vim-dev at vim.org Subject: Patch 7.2.197 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.197 Problem: Warning for uninitialized values. Solution: Initialize all the struct items of typebuf. Files: src/globals.h *** ../vim-7.2.196/src/globals.h 2009-05-13 12:46:36.000000000 +0200 --- src/globals.h 2009-06-10 15:52:18.000000000 +0200 *************** *** 960,966 **** ; EXTERN typebuf_T typebuf /* typeahead buffer */ #ifdef DO_INIT ! = {NULL, NULL} #endif ; #ifdef FEAT_EX_EXTRA --- 967,973 ---- ; EXTERN typebuf_T typebuf /* typeahead buffer */ #ifdef DO_INIT ! = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0} #endif ; #ifdef FEAT_EX_EXTRA *** ../vim-7.2.196/src/version.c 2009-06-03 22:07:38.000000000 +0200 --- src/version.c 2009-06-10 18:14:58.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 197, /**/ -- hundred-and-one symptoms of being an internet addict: 18. Your wife drapes a blond wig over your monitor to remind you of what she looks like. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.198 --- To: vim-dev at vim.org Subject: Patch 7.2.198 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.198 Problem: Size of buffer used for tgetent() may be too small. Solution: Use the largest known size everywhere. Files: src/vim.h *** ../vim-7.2.197/src/vim.h 2009-05-14 22:19:19.000000000 +0200 --- src/vim.h 2009-06-07 20:37:48.000000000 +0200 *************** *** 1345,1355 **** # define MSG_BUF_CLEN MSG_BUF_LEN /* cell length */ #endif ! #if defined(AMIGA) || defined(__linux__) || defined(__QNX__) || defined(__CYGWIN32__) || defined(_AIX) ! # define TBUFSZ 2048 /* buffer size for termcap entry */ ! #else ! # define TBUFSZ 1024 /* buffer size for termcap entry */ ! #endif /* * Maximum length of key sequence to be mapped. --- 1345,1355 ---- # define MSG_BUF_CLEN MSG_BUF_LEN /* cell length */ #endif ! /* Size of the buffer used for tgetent(). Unfortunately this is largely ! * undocumented, some systems use 1024. Using a buffer that is too small ! * causes a buffer overrun and a crash. Use the maximum known value to stay ! * on the safe side. */ ! #define TBUFSZ 2048 /* buffer size for termcap entry */ /* * Maximum length of key sequence to be mapped. *** ../vim-7.2.197/src/version.c 2009-06-10 18:15:49.000000000 +0200 --- src/version.c 2009-06-16 11:06:45.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 198, /**/ -- How To Keep A Healthy Level Of Insanity: 7. Finish all your sentences with "in accordance with the prophecy". /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.199 --- To: vim-dev at vim.org Subject: Patch 7.2.199 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.199 Problem: Strange character in comment. Solution: Change to "message". (Yongwei Wu) Files: src/term.c *** ../vim-7.2.198/src/term.c 2009-05-17 13:30:58.000000000 +0200 --- src/term.c 2009-06-16 11:16:17.000000000 +0200 *************** *** 5555,5561 **** * respects the current B/k/< settings of 'cpoption'. * * This function is called when expanding mappings/abbreviations on the ! * command-line, and for building the "Ambiguous mapping..." error mess?ge. * * It uses a growarray to build the translation string since the * latter can be wider than the original description. The caller has to --- 5555,5561 ---- * respects the current B/k/< settings of 'cpoption'. * * This function is called when expanding mappings/abbreviations on the ! * command-line, and for building the "Ambiguous mapping..." error message. * * It uses a growarray to build the translation string since the * latter can be wider than the original description. The caller has to *** ../vim-7.2.198/src/version.c 2009-06-16 11:08:13.000000000 +0200 --- src/version.c 2009-06-16 14:31:03.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 199, /**/ -- How To Keep A Healthy Level Of Insanity: 10. Ask people what sex they are. Laugh hysterically after they answer. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.200 --- To: vim-dev at vim.org Subject: Patch 7.2.200 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.200 Problem: Reading past end of string when navigating the menu bar or resizing the window. Solution: Add and use mb_ptr2len_len(). (partly by Dominique Pelle) Also add mb_ptr2cells_len() to prevent more trouble. Files: src/gui_gtk_x11.c, src/os_unix.c, src/globals.h, src/mbyte.c, src/proto/mbyte.pro *** ../vim-7.2.199/src/gui_gtk_x11.c 2009-06-03 16:20:09.000000000 +0200 --- src/gui_gtk_x11.c 2009-06-16 14:44:19.000000000 +0200 *************** *** 6077,6088 **** # ifdef FEAT_MBYTE if (enc_utf8) { ! c = utf_ptr2char(p); if (c >= 0x10000) /* show chars > 0xffff as ? */ c = 0xbf; buf[textlen].byte1 = c >> 8; buf[textlen].byte2 = c; ! p += utf_ptr2len(p); width += utf_char2cells(c); } else --- 6135,6149 ---- # ifdef FEAT_MBYTE if (enc_utf8) { ! int pcc[MAX_MCO]; ! ! /* TODO: use the composing characters */ ! c = utfc_ptr2char_len(p, &pcc, len - (p - s)); if (c >= 0x10000) /* show chars > 0xffff as ? */ c = 0xbf; buf[textlen].byte1 = c >> 8; buf[textlen].byte2 = c; ! p += utfc_ptr2len_len(p, len - (p - s)); width += utf_char2cells(c); } else *************** *** 6106,6113 **** if (has_mbyte) { width = 0; ! for (p = s; p < s + len; p += (*mb_ptr2len)(p)) ! width += (*mb_ptr2cells)(p); } else # endif --- 6167,6174 ---- if (has_mbyte) { width = 0; ! for (p = s; p < s + len; p += (*mb_ptr2len_len)(p, len - (p - s))) ! width += (*mb_ptr2cells_len)(p, len - (p - s)); } else # endif *** ../vim-7.2.199/src/os_unix.c 2009-05-17 13:30:58.000000000 +0200 --- src/os_unix.c 2009-06-03 12:35:59.000000000 +0200 *************** *** 4305,4311 **** ta_buf[i] = '\n'; # ifdef FEAT_MBYTE if (has_mbyte) ! i += (*mb_ptr2len)(ta_buf + i) - 1; # endif } --- 4305,4312 ---- ta_buf[i] = '\n'; # ifdef FEAT_MBYTE if (has_mbyte) ! i += (*mb_ptr2len_len)(ta_buf + i, ! ta_len + len - i) - 1; # endif } *** ../vim-7.2.199/src/globals.h 2009-06-10 18:15:49.000000000 +0200 --- src/globals.h 2009-06-12 21:10:30.000000000 +0200 *************** *** 810,820 **** --- 815,828 ---- */ /* length of char in bytes, including following composing chars */ EXTERN int (*mb_ptr2len) __ARGS((char_u *p)) INIT(= latin_ptr2len); + /* idem, with limit on string length */ + EXTERN int (*mb_ptr2len_len) __ARGS((char_u *p, int size)) INIT(= latin_ptr2len_len); /* byte length of char */ EXTERN int (*mb_char2len) __ARGS((int c)) INIT(= latin_char2len); /* convert char to bytes, return the length */ EXTERN int (*mb_char2bytes) __ARGS((int c, char_u *buf)) INIT(= latin_char2bytes); EXTERN int (*mb_ptr2cells) __ARGS((char_u *p)) INIT(= latin_ptr2cells); + EXTERN int (*mb_ptr2cells_len) __ARGS((char_u *p, int size)) INIT(= latin_ptr2cells_len); EXTERN int (*mb_char2cells) __ARGS((int c)) INIT(= latin_char2cells); EXTERN int (*mb_off2cells) __ARGS((unsigned off, unsigned max_off)) INIT(= latin_off2cells); EXTERN int (*mb_ptr2char) __ARGS((char_u *p)) INIT(= latin_ptr2char); *** ../vim-7.2.199/src/mbyte.c 2009-05-17 13:30:58.000000000 +0200 --- src/mbyte.c 2009-06-16 15:01:30.000000000 +0200 *************** *** 127,133 **** --- 127,136 ---- static int dbcs_char2len __ARGS((int c)); static int dbcs_char2bytes __ARGS((int c, char_u *buf)); static int dbcs_ptr2len __ARGS((char_u *p)); + static int dbcs_ptr2len_len __ARGS((char_u *p, int size)); + static int utf_ptr2cells_len __ARGS((char_u *p, int size)); static int dbcs_char2cells __ARGS((int c)); + static int dbcs_ptr2cells_len __ARGS((char_u *p, int size)); static int dbcs_ptr2char __ARGS((char_u *p)); /* Lookup table to quickly get the length in bytes of a UTF-8 character from *************** *** 606,614 **** --- 609,619 ---- if (enc_utf8) { mb_ptr2len = utfc_ptr2len; + mb_ptr2len_len = utfc_ptr2len_len; mb_char2len = utf_char2len; mb_char2bytes = utf_char2bytes; mb_ptr2cells = utf_ptr2cells; + mb_ptr2cells_len = utf_ptr2cells_len; mb_char2cells = utf_char2cells; mb_off2cells = utf_off2cells; mb_ptr2char = utf_ptr2char; *************** *** 617,625 **** --- 622,632 ---- else if (enc_dbcs != 0) { mb_ptr2len = dbcs_ptr2len; + mb_ptr2len_len = dbcs_ptr2len_len; mb_char2len = dbcs_char2len; mb_char2bytes = dbcs_char2bytes; mb_ptr2cells = dbcs_ptr2cells; + mb_ptr2cells_len = dbcs_ptr2cells_len; mb_char2cells = dbcs_char2cells; mb_off2cells = dbcs_off2cells; mb_ptr2char = dbcs_ptr2char; *************** *** 628,636 **** --- 635,645 ---- else { mb_ptr2len = latin_ptr2len; + mb_ptr2len_len = latin_ptr2len_len; mb_char2len = latin_char2len; mb_char2bytes = latin_char2bytes; mb_ptr2cells = latin_ptr2cells; + mb_ptr2cells_len = latin_ptr2cells_len; mb_char2cells = latin_char2cells; mb_off2cells = latin_off2cells; mb_ptr2char = latin_ptr2char; *************** *** 1069,1075 **** * Get byte length of character at "*p" but stop at a NUL. * For UTF-8 this includes following composing characters. * Returns 0 when *p is NUL. - * */ int latin_ptr2len(p) --- 1078,1083 ---- *************** *** 1091,1096 **** --- 1099,1138 ---- return len; } + /* + * mb_ptr2len_len() function pointer. + * Like mb_ptr2len(), but limit to read "size" bytes. + * Returns 0 for an empty string. + * Returns 1 for an illegal char or an incomplete byte sequence. + */ + int + latin_ptr2len_len(p, size) + char_u *p; + int size; + { + if (size < 1 || *p == NUL) + return 0; + return 1; + } + + static int + dbcs_ptr2len_len(p, size) + char_u *p; + int size; + { + int len; + + if (size < 1 || *p == NUL) + return 0; + if (size == 1) + return 1; + /* Check that second byte is not missing. */ + len = MB_BYTE2LEN(*p); + if (len == 2 && p[1] == NUL) + len = 1; + return len; + } + struct interval { unsigned short first; *************** *** 1287,1292 **** --- 1329,1383 ---- } /* + * mb_ptr2cells_len() function pointer. + * Like mb_ptr2cells(), but limit string length to "size". + * For an empty string or truncated character returns 1. + */ + int + latin_ptr2cells_len(p, size) + char_u *p UNUSED; + int size UNUSED; + { + return 1; + } + + static int + utf_ptr2cells_len(p, size) + char_u *p; + int size; + { + int c; + + /* Need to convert to a wide character. */ + if (size > 0 && *p >= 0x80) + { + if (utf_ptr2len_len(p, size) < utf8len_tab[*p]) + return 1; + c = utf_ptr2char(p); + /* An illegal byte is displayed as . */ + if (utf_ptr2len(p) == 1 || c == NUL) + return 4; + /* If the char is ASCII it must be an overlong sequence. */ + if (c < 0x80) + return char2cells(c); + return utf_char2cells(c); + } + return 1; + } + + static int + dbcs_ptr2cells_len(p, size) + char_u *p; + int size; + { + /* Number of cells is equal to number of bytes, except for euc-jp when + * the first byte is 0x8e. */ + if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)) + return 1; + return MB_BYTE2LEN(*p); + } + + /* * mb_char2cells() function pointer. * Return the number of display cells character "c" occupies. * Only takes care of multi-byte chars, not "^C" and such. *************** *** 1716,1721 **** --- 1807,1813 ---- /* * Return the number of bytes the UTF-8 encoding of the character at "p[size]" * takes. This includes following composing characters. + * Returns 0 for an empty string. * Returns 1 for an illegal char or an incomplete byte sequence. */ int *************** *** 1728,1734 **** int prevlen; #endif ! if (*p == NUL) return 0; if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */ return 1; --- 1820,1826 ---- int prevlen; #endif ! if (size < 1 || *p == NUL) return 0; if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */ return 1; *** ../vim-7.2.199/src/proto/mbyte.pro 2008-07-13 19:34:19.000000000 +0200 --- src/proto/mbyte.pro 2009-06-16 14:58:39.000000000 +0200 *************** *** 7,16 **** --- 7,18 ---- int latin_char2len __ARGS((int c)); int latin_char2bytes __ARGS((int c, char_u *buf)); int latin_ptr2len __ARGS((char_u *p)); + int latin_ptr2len_len __ARGS((char_u *p, int size)); int utf_char2cells __ARGS((int c)); int latin_ptr2cells __ARGS((char_u *p)); int utf_ptr2cells __ARGS((char_u *p)); int dbcs_ptr2cells __ARGS((char_u *p)); + int latin_ptr2cells_len __ARGS((char_u *p, int size)); int latin_char2cells __ARGS((int c)); int latin_off2cells __ARGS((unsigned off, unsigned max_off)); int dbcs_off2cells __ARGS((unsigned off, unsigned max_off)); *************** *** 85,90 **** --- 87,93 ---- int preedit_get_status __ARGS((void)); int im_is_preediting __ARGS((void)); int convert_setup __ARGS((vimconv_T *vcp, char_u *from, char_u *to)); + int convert_setup_ext __ARGS((vimconv_T *vcp, char_u *from, int from_unicode_is_utf8, char_u *to, int to_unicode_is_utf8)); int convert_input __ARGS((char_u *ptr, int len, int maxlen)); int convert_input_safe __ARGS((char_u *ptr, int len, int maxlen, char_u **restp, int *restlenp)); char_u *string_convert __ARGS((vimconv_T *vcp, char_u *ptr, int *lenp)); *** ../vim-7.2.199/src/version.c 2009-06-16 14:31:56.000000000 +0200 --- src/version.c 2009-06-16 14:37:38.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 200, /**/ -- How To Keep A Healthy Level Of Insanity: 12. Sing along at the opera. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.201 --- To: vim-dev at vim.org Subject: Patch 7.2.201 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.201 Problem: Cannot copy/paste HTML to/from Firefox via the clipboard. Solution: Implement this for GTK. Add the "html" value to 'clipboard'. Files: runtime/doc/options.txt, src/globals.h, src/gui_gtk_x11.c, src/mbyte.c, src/proto/mbyte.pro, src/option.c *** ../vim-7.2.200/runtime/doc/options.txt 2009-02-21 20:27:00.000000000 +0100 --- runtime/doc/options.txt 2009-06-12 22:25:22.000000000 +0200 *************** *** 1443,1448 **** --- 1444,1457 ---- autoselectml Like "autoselect", but for the modeless selection only. Compare to the 'A' flag in 'guioptions'. + html When the clipboard contains HTML, use this when + pasting. When putting text on the clipboard, mark it + as HTML. This works to copy rendered HTML from + Firefox, paste it as raw HTML in Vim, select the HTML + in Vim and paste it in a rich edit box in Firefox. + Only supported for GTK version 2 and later. + Only available with the |+multi_byte| feature. + exclude:{pattern} Defines a pattern that is matched against the name of the terminal 'term'. If there is a match, no *** ../vim-7.2.200/src/globals.h 2009-06-16 15:12:11.000000000 +0200 --- src/globals.h 2009-06-12 21:10:30.000000000 +0200 *************** *** 509,514 **** --- 509,515 ---- EXTERN int clip_unnamed INIT(= FALSE); EXTERN int clip_autoselect INIT(= FALSE); EXTERN int clip_autoselectml INIT(= FALSE); + EXTERN int clip_html INIT(= FALSE); EXTERN regprog_T *clip_exclude_prog INIT(= NULL); #endif *** ../vim-7.2.200/src/gui_gtk_x11.c 2009-06-16 15:12:11.000000000 +0200 --- src/gui_gtk_x11.c 2009-06-16 14:44:19.000000000 +0200 *************** *** 107,112 **** --- 107,113 ---- TARGET_UTF8_STRING, TARGET_STRING, TARGET_COMPOUND_TEXT, + TARGET_HTML, TARGET_TEXT, TARGET_TEXT_URI_LIST, TARGET_TEXT_PLAIN, *************** *** 123,128 **** --- 124,130 ---- {VIMENC_ATOM_NAME, 0, TARGET_VIMENC}, {VIM_ATOM_NAME, 0, TARGET_VIM}, #ifdef FEAT_MBYTE + {"text/html", 0, TARGET_HTML}, {"UTF8_STRING", 0, TARGET_UTF8_STRING}, #endif {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT}, *************** *** 140,145 **** --- 142,148 ---- { {"text/uri-list", 0, TARGET_TEXT_URI_LIST}, # ifdef FEAT_MBYTE + {"text/html", 0, TARGET_HTML}, {"UTF8_STRING", 0, TARGET_UTF8_STRING}, # endif {"STRING", 0, TARGET_STRING}, *************** *** 178,183 **** --- 181,187 ---- * Atoms used to control/reference X11 selections. */ #ifdef FEAT_MBYTE + static GdkAtom html_atom = GDK_NONE; static GdkAtom utf8_string_atom = GDK_NONE; #endif #ifndef HAVE_GTK2 *************** *** 1364,1369 **** --- 1368,1391 ---- else text = tmpbuf_utf8; } + else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe) + { + vimconv_T conv; + + /* UTF-16, we get this for HTML */ + conv.vc_type = CONV_NONE; + convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE); + + if (conv.vc_type != CONV_NONE) + { + text += 2; + len -= 2; + tmpbuf = string_convert(&conv, text, &len); + convert_setup(&conv, NULL, NULL); + } + if (tmpbuf != NULL) + text = tmpbuf; + } } #else /* !HAVE_GTK2 */ # ifdef FEAT_MBYTE *************** *** 1451,1456 **** --- 1473,1479 ---- if (info != (guint)TARGET_STRING #ifdef FEAT_MBYTE + && (!clip_html || info != (guint)TARGET_HTML) && info != (guint)TARGET_UTF8_STRING && info != (guint)TARGET_VIMENC #endif *************** *** 1486,1491 **** --- 1509,1548 ---- } #ifdef FEAT_MBYTE + else if (info == (guint)TARGET_HTML) + { + vimconv_T conv; + + /* Since we get utf-16, we probably should set it as well. */ + conv.vc_type = CONV_NONE; + convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE); + if (conv.vc_type != CONV_NONE) + { + tmpbuf = string_convert(&conv, string, &length); + convert_setup(&conv, NULL, NULL); + vim_free(string); + string = tmpbuf; + } + + /* Prepend the BOM: "fffe" */ + if (string != NULL) + { + tmpbuf = alloc(length + 2); + tmpbuf[0] = 0xff; + tmpbuf[1] = 0xfe; + mch_memmove(tmpbuf + 2, string, (size_t)length); + vim_free(string); + string = tmpbuf; + length += 2; + + selection_data->type = selection_data->target; + selection_data->format = 16; /* 16 bits per char */ + gtk_selection_data_set(selection_data, html_atom, 16, + string, length); + vim_free(string); + } + return; + } else if (info == (guint)TARGET_VIMENC) { int l = STRLEN(p_enc); *************** *** 3464,3469 **** --- 3521,3527 ---- /* Initialise atoms */ #ifdef FEAT_MBYTE + html_atom = gdk_atom_intern("text/html", FALSE); utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE); #endif #ifndef HAVE_GTK2 *************** *** 6665,6670 **** --- 6723,6732 ---- for (i = 0; i < N_SELECTION_TARGETS; ++i) { + #ifdef FEAT_MBYTE + if (!clip_html && selection_targets[i].info == TARGET_HTML) + continue; + #endif received_selection = RS_NONE; target = gdk_atom_intern(selection_targets[i].target, FALSE); *** ../vim-7.2.200/src/mbyte.c 2009-06-16 15:12:11.000000000 +0200 --- src/mbyte.c 2009-06-16 15:01:30.000000000 +0200 *************** *** 3265,3271 **** # if defined(USE_ICONV) || defined(PROTO) ! static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp)); /* * Call iconv_open() with a check if iconv() works properly (there are broken --- 3265,3271 ---- # if defined(USE_ICONV) || defined(PROTO) ! static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp)); /* * Call iconv_open() with a check if iconv() works properly (there are broken *************** *** 3326,3338 **** * If "unconvlenp" is not NULL handle the string ending in an incomplete * sequence and set "*unconvlenp" to the length of it. * Returns the converted string in allocated memory. NULL for an error. */ static char_u * ! iconv_string(vcp, str, slen, unconvlenp) vimconv_T *vcp; char_u *str; int slen; int *unconvlenp; { const char *from; size_t fromlen; --- 3326,3340 ---- * If "unconvlenp" is not NULL handle the string ending in an incomplete * sequence and set "*unconvlenp" to the length of it. * Returns the converted string in allocated memory. NULL for an error. + * If resultlenp is not NULL, sets it to the result length in bytes. */ static char_u * ! iconv_string(vcp, str, slen, unconvlenp, resultlenp) vimconv_T *vcp; char_u *str; int slen; int *unconvlenp; + int *resultlenp; { const char *from; size_t fromlen; *************** *** 3418,3423 **** --- 3420,3428 ---- /* Not enough room or skipping illegal sequence. */ done = to - (char *)result; } + + if (resultlenp != NULL) + *resultlenp = (int)(to - (char *)result); return result; } *************** *** 5837,5844 **** --- 5842,5866 ---- char_u *from; char_u *to; { + return convert_setup_ext(vcp, from, TRUE, to, TRUE); + } + + /* + * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all + * "from" unicode charsets be considered utf-8. Same for "to". + */ + int + convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8) + vimconv_T *vcp; + char_u *from; + int from_unicode_is_utf8; + char_u *to; + int to_unicode_is_utf8; + { int from_prop; int to_prop; + int from_is_utf8; + int to_is_utf8; /* Reset to no conversion. */ # ifdef USE_ICONV *************** *** 5856,5892 **** from_prop = enc_canon_props(from); to_prop = enc_canon_props(to); ! if ((from_prop & ENC_LATIN1) && (to_prop & ENC_UNICODE)) { /* Internal latin1 -> utf-8 conversion. */ vcp->vc_type = CONV_TO_UTF8; vcp->vc_factor = 2; /* up to twice as long */ } ! else if ((from_prop & ENC_LATIN9) && (to_prop & ENC_UNICODE)) { /* Internal latin9 -> utf-8 conversion. */ vcp->vc_type = CONV_9_TO_UTF8; vcp->vc_factor = 3; /* up to three as long (euro sign) */ } ! else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN1)) { /* Internal utf-8 -> latin1 conversion. */ vcp->vc_type = CONV_TO_LATIN1; } ! else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN9)) { /* Internal utf-8 -> latin9 conversion. */ vcp->vc_type = CONV_TO_LATIN9; } #ifdef WIN3264 /* Win32-specific codepage <-> codepage conversion without iconv. */ ! else if (((from_prop & ENC_UNICODE) || encname2codepage(from) > 0) ! && ((to_prop & ENC_UNICODE) || encname2codepage(to) > 0)) { vcp->vc_type = CONV_CODEPAGE; vcp->vc_factor = 2; /* up to twice as long */ ! vcp->vc_cpfrom = (from_prop & ENC_UNICODE) ? 0 : encname2codepage(from); ! vcp->vc_cpto = (to_prop & ENC_UNICODE) ? 0 : encname2codepage(to); } #endif #ifdef MACOS_X --- 5878,5923 ---- from_prop = enc_canon_props(from); to_prop = enc_canon_props(to); ! if (from_unicode_is_utf8) ! from_is_utf8 = from_prop & ENC_UNICODE; ! else ! from_is_utf8 = from_prop == ENC_UNICODE; ! if (to_unicode_is_utf8) ! to_is_utf8 = to_prop & ENC_UNICODE; ! else ! to_is_utf8 = to_prop == ENC_UNICODE; ! ! if ((from_prop & ENC_LATIN1) && to_is_utf8) { /* Internal latin1 -> utf-8 conversion. */ vcp->vc_type = CONV_TO_UTF8; vcp->vc_factor = 2; /* up to twice as long */ } ! else if ((from_prop & ENC_LATIN9) && to_is_utf8) { /* Internal latin9 -> utf-8 conversion. */ vcp->vc_type = CONV_9_TO_UTF8; vcp->vc_factor = 3; /* up to three as long (euro sign) */ } ! else if (from_is_utf8 && (to_prop & ENC_LATIN1)) { /* Internal utf-8 -> latin1 conversion. */ vcp->vc_type = CONV_TO_LATIN1; } ! else if (from_is_utf8 && (to_prop & ENC_LATIN9)) { /* Internal utf-8 -> latin9 conversion. */ vcp->vc_type = CONV_TO_LATIN9; } #ifdef WIN3264 /* Win32-specific codepage <-> codepage conversion without iconv. */ ! else if ((from_is_utf8 || encname2codepage(from) > 0) ! && (to_is_utf8 || encname2codepage(to) > 0)) { vcp->vc_type = CONV_CODEPAGE; vcp->vc_factor = 2; /* up to twice as long */ ! vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from); ! vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to); } #endif #ifdef MACOS_X *************** *** 5894,5900 **** { vcp->vc_type = CONV_MAC_LATIN1; } ! else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_UNICODE)) { vcp->vc_type = CONV_MAC_UTF8; vcp->vc_factor = 2; /* up to twice as long */ --- 5925,5931 ---- { vcp->vc_type = CONV_MAC_LATIN1; } ! else if ((from_prop & ENC_MACROMAN) && to_is_utf8) { vcp->vc_type = CONV_MAC_UTF8; vcp->vc_factor = 2; /* up to twice as long */ *************** *** 5903,5909 **** { vcp->vc_type = CONV_LATIN1_MAC; } ! else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_MACROMAN)) { vcp->vc_type = CONV_UTF8_MAC; } --- 5934,5940 ---- { vcp->vc_type = CONV_LATIN1_MAC; } ! else if (from_is_utf8 && (to_prop & ENC_MACROMAN)) { vcp->vc_type = CONV_UTF8_MAC; } *************** *** 5913,5920 **** { /* Use iconv() for conversion. */ vcp->vc_fd = (iconv_t)my_iconv_open( ! (to_prop & ENC_UNICODE) ? (char_u *)"utf-8" : to, ! (from_prop & ENC_UNICODE) ? (char_u *)"utf-8" : from); if (vcp->vc_fd != (iconv_t)-1) { vcp->vc_type = CONV_ICONV; --- 5944,5951 ---- { /* Use iconv() for conversion. */ vcp->vc_fd = (iconv_t)my_iconv_open( ! to_is_utf8 ? (char_u *)"utf-8" : to, ! from_is_utf8 ? (char_u *)"utf-8" : from); if (vcp->vc_fd != (iconv_t)-1) { vcp->vc_type = CONV_ICONV; *************** *** 6170,6178 **** # ifdef USE_ICONV case CONV_ICONV: /* conversion with output_conv.vc_fd */ ! retval = iconv_string(vcp, ptr, len, unconvlenp); ! if (retval != NULL && lenp != NULL) ! *lenp = (int)STRLEN(retval); break; # endif # ifdef WIN3264 --- 6201,6207 ---- # ifdef USE_ICONV case CONV_ICONV: /* conversion with output_conv.vc_fd */ ! retval = iconv_string(vcp, ptr, len, unconvlenp, lenp); break; # endif # ifdef WIN3264 *** ../vim-7.2.200/src/option.c 2009-05-17 13:30:58.000000000 +0200 --- src/option.c 2009-06-12 21:09:51.000000000 +0200 *************** *** 7024,7029 **** --- 7024,7030 ---- int new_unnamed = FALSE; int new_autoselect = FALSE; int new_autoselectml = FALSE; + int new_html = FALSE; regprog_T *new_exclude_prog = NULL; char_u *errmsg = NULL; char_u *p; *************** *** 7047,7052 **** --- 7048,7058 ---- new_autoselectml = TRUE; p += 12; } + else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL)) + { + new_html = TRUE; + p += 4; + } else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL) { p += 8; *************** *** 7068,7073 **** --- 7074,7080 ---- clip_unnamed = new_unnamed; clip_autoselect = new_autoselect; clip_autoselectml = new_autoselectml; + clip_html = new_html; vim_free(clip_exclude_prog); clip_exclude_prog = new_exclude_prog; } *** ../vim-7.2.200/src/version.c 2009-06-16 15:12:11.000000000 +0200 --- src/version.c 2009-06-16 15:14:02.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 201, /**/ -- How To Keep A Healthy Level Of Insanity: 13. Go to a poetry recital and ask why the poems don't rhyme. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.202 --- To: vim-dev at vim.org Subject: Patch 7.2.202 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.202 Problem: BufWipeout autocommand that edits another buffer causes problems. Solution: Check for the situation, give an error and quit the operation. Files: src/fileio.c *** ../vim-7.2.201/src/fileio.c 2009-05-16 17:29:37.000000000 +0200 --- src/fileio.c 2009-06-11 21:22:37.000000000 +0200 *************** *** 4824,4829 **** --- 4824,4831 ---- char_u *sfname; { #ifdef FEAT_AUTOCMD + buf_T *buf = curbuf; + /* It's like the unnamed buffer is deleted.... */ if (curbuf->b_p_bl) apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf); *************** *** 4832,4837 **** --- 4834,4845 ---- if (aborting()) /* autocmds may abort script processing */ return FAIL; # endif + if (curbuf != buf) + { + /* We are in another buffer now, don't do the renaming. */ + EMSG(_(e_auchangedbuf)); + return FAIL; + } #endif if (setfname(curbuf, fname, sfname, FALSE) == OK) *** ../vim-7.2.201/src/version.c 2009-06-16 15:23:07.000000000 +0200 --- src/version.c 2009-06-16 15:28:31.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 202, /**/ -- How To Keep A Healthy Level Of Insanity: 14. Put mosquito netting around your work area. Play a tape of jungle sounds all day. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.203 --- To: vim-dev at vim.org Subject: Patch 7.2.203 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.203 Problem: When reloading a buffer or doing anything else with a buffer that is not displayed in a visible window, autocommands may be applied to the current window, folds messed up, etc. Solution: Instead of using the current window for the hidden buffer use a special window, splitting the current one temporarily. Files: src/fileio.c, src/globals.h, src/gui.c, src/if_perl.xs, src/proto/gui.pro, src/proto/window.pro, src/screen.c, src/structs.h, src/window.c *** ../vim-7.2.202/src/fileio.c 2009-06-16 15:35:46.000000000 +0200 --- src/fileio.c 2009-06-11 21:22:37.000000000 +0200 *************** *** 8365,8371 **** /* Execute the modeline settings, but don't set window-local * options if we are using the current window for another buffer. */ ! do_modelines(aco.save_curwin == NULL ? OPT_NOWIN : 0); /* restore the current window */ aucmd_restbuf(&aco); --- 8365,8371 ---- /* Execute the modeline settings, but don't set window-local * options if we are using the current window for another buffer. */ ! do_modelines(curwin == aucmd_win ? OPT_NOWIN : 0); /* restore the current window */ aucmd_restbuf(&aco); *************** *** 8381,8388 **** /* * Prepare for executing autocommands for (hidden) buffer "buf". ! * Search a window for the current buffer. Save the cursor position and ! * screen offset. * Set "curbuf" and "curwin" to match "buf". * When FEAT_AUTOCMD is not defined another version is used, see below. */ --- 8381,8388 ---- /* * Prepare for executing autocommands for (hidden) buffer "buf". ! * Search for a visible window containing the current buffer. If there isn't ! * one then use "aucmd_win". * Set "curbuf" and "curwin" to match "buf". * When FEAT_AUTOCMD is not defined another version is used, see below. */ *************** *** 8392,8399 **** buf_T *buf; /* new curbuf */ { win_T *win; ! ! aco->new_curbuf = buf; /* Find a window that is for the new buffer */ if (buf == curbuf) /* be quick when buf is curbuf */ --- 8392,8400 ---- buf_T *buf; /* new curbuf */ { win_T *win; ! #ifdef FEAT_WINDOWS ! int save_ea; ! #endif /* Find a window that is for the new buffer */ if (buf == curbuf) /* be quick when buf is curbuf */ *************** *** 8407,8448 **** win = NULL; #endif ! /* ! * Prefer to use an existing window for the buffer, it has the least side ! * effects (esp. if "buf" is curbuf). ! * Otherwise, use curwin for "buf". It might make some items in the ! * window invalid. At least save the cursor and topline. ! */ if (win != NULL) { ! /* there is a window for "buf", make it the curwin */ ! aco->save_curwin = curwin; curwin = win; - aco->save_buf = win->w_buffer; - aco->new_curwin = win; } else { ! /* there is no window for "buf", use curwin */ ! aco->save_curwin = NULL; ! aco->save_buf = curbuf; ! --curbuf->b_nwindows; curwin->w_buffer = buf; ++buf->b_nwindows; ! /* save cursor and topline, set them to safe values */ ! aco->save_cursor = curwin->w_cursor; ! curwin->w_cursor.lnum = 1; ! curwin->w_cursor.col = 0; ! aco->save_topline = curwin->w_topline; ! curwin->w_topline = 1; ! #ifdef FEAT_DIFF ! aco->save_topfill = curwin->w_topfill; ! curwin->w_topfill = 0; #endif } - curbuf = buf; } /* --- 8408,8460 ---- win = NULL; #endif ! /* Allocate "aucmd_win" when needed. If this fails (out of memory) fall ! * back to using the current window. */ ! if (win == NULL && aucmd_win == NULL) ! { ! win_alloc_aucmd_win(); ! if (aucmd_win == NULL) ! win = curwin; ! } ! ! aco->save_curwin = curwin; ! aco->save_curbuf = curbuf; if (win != NULL) { ! /* There is a window for "buf" in the current tab page, make it the ! * curwin. This is preferred, it has the least side effects (esp. if ! * "buf" is curbuf). */ curwin = win; } else { ! /* There is no window for "buf", use "aucmd_win". To minimize the side ! * effects, insert it in a the current tab page. ! * Anything related to a window (e.g., setting folds) may have ! * unexpected results. */ ! curwin = aucmd_win; curwin->w_buffer = buf; ++buf->b_nwindows; ! #ifdef FEAT_WINDOWS ! /* Split the current window, put the aucmd_win in the upper half. */ ! make_snapshot(SNAP_AUCMD_IDX); ! save_ea = p_ea; ! p_ea = FALSE; ! (void)win_split_ins(0, WSP_TOP, aucmd_win, 0); ! (void)win_comp_pos(); /* recompute window positions */ ! p_ea = save_ea; ! #endif ! /* set cursor and topline to safe values */ ! curwin_init(); ! #ifdef FEAT_VERTSPLIT ! curwin->w_wincol = 0; ! curwin->w_width = Columns; #endif } curbuf = buf; + aco->new_curwin = curwin; + aco->new_curbuf = curbuf; } /* *************** *** 8454,8474 **** aucmd_restbuf(aco) aco_save_T *aco; /* structure holding saved values */ { ! if (aco->save_curwin != NULL) { /* restore curwin */ #ifdef FEAT_WINDOWS if (win_valid(aco->save_curwin)) #endif { ! /* restore the buffer which was previously edited by curwin, if ! * it's still the same window and it's valid */ if (curwin == aco->new_curwin ! && buf_valid(aco->save_buf) ! && aco->save_buf->b_ml.ml_mfp != NULL) { --curbuf->b_nwindows; ! curbuf = aco->save_buf; curwin->w_buffer = curbuf; ++curbuf->b_nwindows; } --- 8466,8551 ---- aucmd_restbuf(aco) aco_save_T *aco; /* structure holding saved values */ { ! #ifdef FEAT_WINDOWS ! int dummy; ! #endif ! ! if (aco->new_curwin == aucmd_win) ! { ! --curbuf->b_nwindows; ! #ifdef FEAT_WINDOWS ! /* Find "aucmd_win", it can't be closed, but it may be in another tab ! * page. */ ! if (curwin != aucmd_win) ! { ! tabpage_T *tp; ! win_T *wp; ! ! FOR_ALL_TAB_WINDOWS(tp, wp) ! { ! if (wp == aucmd_win) ! { ! if (tp != curtab) ! goto_tabpage_tp(tp); ! win_goto(aucmd_win); ! break; ! } ! } ! } ! ! /* Remove the window and frame from the tree of frames. */ ! (void)winframe_remove(curwin, &dummy, NULL); ! win_remove(curwin, NULL); ! last_status(FALSE); /* may need to remove last status line */ ! restore_snapshot(SNAP_AUCMD_IDX, FALSE); ! (void)win_comp_pos(); /* recompute window positions */ ! ! if (win_valid(aco->save_curwin)) ! curwin = aco->save_curwin; ! else ! /* Hmm, original window disappeared. Just use the first one. */ ! curwin = firstwin; ! # ifdef FEAT_EVAL ! vars_clear(&aucmd_win->w_vars.dv_hashtab); /* free all w: variables */ ! # endif ! #else ! curwin = aco->save_curwin; ! #endif ! curbuf = curwin->w_buffer; ! ! /* the buffer contents may have changed */ ! check_cursor(); ! if (curwin->w_topline > curbuf->b_ml.ml_line_count) ! { ! curwin->w_topline = curbuf->b_ml.ml_line_count; ! #ifdef FEAT_DIFF ! curwin->w_topfill = 0; ! #endif ! } ! #if defined(FEAT_GUI) ! /* Hide the scrollbars from the aucmd_win and update. */ ! gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_LEFT], FALSE); ! gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_RIGHT], FALSE); ! gui_may_update_scrollbars(); ! #endif ! } ! else { /* restore curwin */ #ifdef FEAT_WINDOWS if (win_valid(aco->save_curwin)) #endif { ! /* Restore the buffer which was previously edited by curwin, if ! * it was chagned, we are still the same window and the buffer is ! * valid. */ if (curwin == aco->new_curwin ! && curbuf != aco->new_curbuf ! && buf_valid(aco->new_curbuf) ! && aco->new_curbuf->b_ml.ml_mfp != NULL) { --curbuf->b_nwindows; ! curbuf = aco->new_curbuf; curwin->w_buffer = curbuf; ++curbuf->b_nwindows; } *************** *** 8477,8510 **** curbuf = curwin->w_buffer; } } - else - { - /* restore buffer for curwin if it still exists and is loaded */ - if (buf_valid(aco->save_buf) && aco->save_buf->b_ml.ml_mfp != NULL) - { - --curbuf->b_nwindows; - curbuf = aco->save_buf; - curwin->w_buffer = curbuf; - ++curbuf->b_nwindows; - curwin->w_cursor = aco->save_cursor; - check_cursor(); - /* check topline < line_count, in case lines got deleted */ - if (aco->save_topline <= curbuf->b_ml.ml_line_count) - { - curwin->w_topline = aco->save_topline; - #ifdef FEAT_DIFF - curwin->w_topfill = aco->save_topfill; - #endif - } - else - { - curwin->w_topline = curbuf->b_ml.ml_line_count; - #ifdef FEAT_DIFF - curwin->w_topfill = 0; - #endif - } - } - } } static int autocmd_nested = FALSE; --- 8554,8559 ---- *************** *** 9419,9427 **** aco_save_T *aco; /* structure to save values in */ buf_T *buf; /* new curbuf */ { ! aco->save_buf = curbuf; curbuf = buf; curwin->w_buffer = buf; } /* --- 9468,9478 ---- aco_save_T *aco; /* structure to save values in */ buf_T *buf; /* new curbuf */ { ! aco->save_curbuf = curbuf; ! --curbuf->b_nwindows; curbuf = buf; curwin->w_buffer = buf; + ++curbuf->b_nwindows; } /* *************** *** 9432,9439 **** aucmd_restbuf(aco) aco_save_T *aco; /* structure holding saved values */ { ! curbuf = aco->save_buf; curwin->w_buffer = curbuf; } #endif /* FEAT_AUTOCMD */ --- 9483,9492 ---- aucmd_restbuf(aco) aco_save_T *aco; /* structure holding saved values */ { ! --curbuf->b_nwindows; ! curbuf = aco->save_curbuf; curwin->w_buffer = curbuf; + ++curbuf->b_nwindows; } #endif /* FEAT_AUTOCMD */ *** ../vim-7.2.202/src/globals.h 2009-06-16 15:23:07.000000000 +0200 --- src/globals.h 2009-06-12 21:10:30.000000000 +0200 *************** *** 539,544 **** --- 539,548 ---- EXTERN win_T *curwin; /* currently active window */ + #ifdef FEAT_AUTOCMD + EXTERN win_T *aucmd_win; /* window used in aucmd_prepbuf() */ + #endif + /* * The window layout is kept in a tree of frames. topframe points to the top * of the tree. *** ../vim-7.2.202/src/gui.c 2009-05-21 23:25:38.000000000 +0200 --- src/gui.c 2009-06-11 20:58:05.000000000 +0200 *************** *** 3879,3884 **** --- 3879,3899 ---- * Scrollbar stuff: */ + /* + * Called when something in the window layout has changed. + */ + void + gui_may_update_scrollbars() + { + if (gui.in_use && starting == 0) + { + out_flush(); + gui_init_which_components(NULL); + gui_update_scrollbars(TRUE); + } + need_mouse_correct = TRUE; + } + void gui_update_scrollbars(force) int force; /* Force all scrollbars to get updated */ *** ../vim-7.2.202/src/if_perl.xs 2008-12-03 13:18:16.000000000 +0100 --- src/if_perl.xs 2009-06-03 17:52:51.000000000 +0200 *************** *** 1234,1240 **** { ml_delete(lnum, 0); deleted_lines_mark(lnum, 1L); ! if (aco.save_buf == curbuf) check_cursor(); } --- 1236,1242 ---- { ml_delete(lnum, 0); deleted_lines_mark(lnum, 1L); ! if (aco.save_curbuf == curbuf) check_cursor(); } *** ../vim-7.2.202/src/proto/gui.pro 2007-05-05 19:42:19.000000000 +0200 --- src/proto/gui.pro 2009-06-11 20:58:08.000000000 +0200 *************** *** 43,48 **** --- 43,49 ---- void gui_create_scrollbar __ARGS((scrollbar_T *sb, int type, win_T *wp)); scrollbar_T *gui_find_scrollbar __ARGS((long ident)); void gui_drag_scrollbar __ARGS((scrollbar_T *sb, long value, int still_dragging)); + void gui_may_update_scrollbars __ARGS((void)); void gui_update_scrollbars __ARGS((int force)); int gui_do_scroll __ARGS((void)); int gui_do_horiz_scroll __ARGS((void)); *** ../vim-7.2.202/src/proto/window.pro 2007-07-26 22:57:45.000000000 +0200 --- src/proto/window.pro 2009-06-10 21:20:39.000000000 +0200 *************** *** 1,6 **** --- 1,7 ---- /* window.c */ void do_window __ARGS((int nchar, long Prenum, int xchar)); int win_split __ARGS((int size, int flags)); + int win_split_ins __ARGS((int size, int flags, win_T *newwin, int dir)); int win_valid __ARGS((win_T *win)); int win_count __ARGS((void)); int make_windows __ARGS((int count, int vertical)); *************** *** 10,18 **** --- 11,21 ---- void win_close __ARGS((win_T *win, int free_buf)); void win_close_othertab __ARGS((win_T *win, int free_buf, tabpage_T *tp)); void win_free_all __ARGS((void)); + win_T *winframe_remove __ARGS((win_T *win, int *dirp, tabpage_T *tp)); void close_others __ARGS((int message, int forceit)); void curwin_init __ARGS((void)); int win_alloc_first __ARGS((void)); + void win_alloc_aucmd_win __ARGS((void)); void win_init_size __ARGS((void)); void free_tabpage __ARGS((tabpage_T *tp)); int win_new_tabpage __ARGS((int after)); *************** *** 30,35 **** --- 33,40 ---- void win_enter __ARGS((win_T *wp, int undo_sync)); win_T *buf_jump_open_win __ARGS((buf_T *buf)); win_T *buf_jump_open_tab __ARGS((buf_T *buf)); + void win_append __ARGS((win_T *after, win_T *wp)); + void win_remove __ARGS((win_T *wp, tabpage_T *tp)); int win_alloc_lines __ARGS((win_T *wp)); void win_free_lsize __ARGS((win_T *wp)); void shell_new_rows __ARGS((void)); *************** *** 58,63 **** --- 63,70 ---- int min_rows __ARGS((void)); int only_one_window __ARGS((void)); void check_lnums __ARGS((int do_curwin)); + void make_snapshot __ARGS((int idx)); + void restore_snapshot __ARGS((int idx, int close_curwin)); int win_hasvertsplit __ARGS((void)); int match_add __ARGS((win_T *wp, char_u *grp, char_u *pat, int prio, int id)); int match_delete __ARGS((win_T *wp, int id, int perr)); *** ../vim-7.2.202/src/screen.c 2009-05-17 13:30:58.000000000 +0200 --- src/screen.c 2009-06-10 16:41:45.000000000 +0200 *************** *** 7495,7500 **** --- 7495,7504 ---- #endif } } + #ifdef FEAT_AUTOCMD + if (aucmd_win != NULL && win_alloc_lines(aucmd_win) == FAIL) + outofmem = TRUE; + #endif #ifdef FEAT_WINDOWS give_up: #endif *** ../vim-7.2.202/src/structs.h 2009-05-16 16:36:25.000000000 +0200 --- src/structs.h 2009-06-13 12:51:56.000000000 +0200 *************** *** 1621,1626 **** --- 1621,1634 ---- }; #endif + #define SNAP_HELP_IDX 0 + #ifdef FEAT_AUTOCMD + # define SNAP_AUCMD_IDX 1 + # define SNAP_COUNT 2 + #else + # define SNAP_COUNT 1 + #endif + /* * Tab pages point to the top frame of each tab page. * Note: Most values are NOT valid for the current tab page! Use "curwin", *************** *** 1649,1655 **** buf_T *(tp_diffbuf[DB_COUNT]); int tp_diff_invalid; /* list of diffs is outdated */ #endif ! frame_T *tp_snapshot; /* window layout snapshot */ #ifdef FEAT_EVAL dictitem_T tp_winvar; /* variable for "t:" Dictionary */ dict_T tp_vars; /* internal variables, local to tab page */ --- 1657,1663 ---- buf_T *(tp_diffbuf[DB_COUNT]); int tp_diff_invalid; /* list of diffs is outdated */ #endif ! frame_T *(tp_snapshot[SNAP_COUNT]); /* window layout snapshots */ #ifdef FEAT_EVAL dictitem_T tp_winvar; /* variable for "t:" Dictionary */ dict_T tp_vars; /* internal variables, local to tab page */ *************** *** 2276,2291 **** */ typedef struct { ! buf_T *save_buf; /* saved curbuf */ #ifdef FEAT_AUTOCMD ! buf_T *new_curbuf; /* buffer to be used */ ! win_T *save_curwin; /* saved curwin, NULL if it didn't change */ ! win_T *new_curwin; /* new curwin if save_curwin != NULL */ ! pos_T save_cursor; /* saved cursor pos of save_curwin */ ! linenr_T save_topline; /* saved topline of save_curwin */ ! # ifdef FEAT_DIFF ! int save_topfill; /* saved topfill of save_curwin */ ! # endif #endif } aco_save_T; --- 2284,2294 ---- */ typedef struct { ! buf_T *save_curbuf; /* saved curbuf */ #ifdef FEAT_AUTOCMD ! win_T *save_curwin; /* saved curwin */ ! win_T *new_curwin; /* new curwin */ ! buf_T *new_curbuf; /* new curbuf */ #endif } aco_save_T; *** ../vim-7.2.202/src/window.c 2009-05-21 23:25:38.000000000 +0200 --- src/window.c 2009-06-12 22:29:33.000000000 +0200 *************** *** 11,18 **** static int path_is_url __ARGS((char_u *p)); #if defined(FEAT_WINDOWS) || defined(PROTO) - static int win_split_ins __ARGS((int size, int flags, win_T *newwin, int dir)); static void win_init __ARGS((win_T *newp, win_T *oldp, int flags)); static void frame_comp_pos __ARGS((frame_T *topfrp, int *row, int *col)); static void frame_setheight __ARGS((frame_T *curfrp, int height)); #ifdef FEAT_VERTSPLIT --- 11,18 ---- static int path_is_url __ARGS((char_u *p)); #if defined(FEAT_WINDOWS) || defined(PROTO) static void win_init __ARGS((win_T *newp, win_T *oldp, int flags)); + static void win_init_some __ARGS((win_T *newp, win_T *oldp)); static void frame_comp_pos __ARGS((frame_T *topfrp, int *row, int *col)); static void frame_setheight __ARGS((frame_T *curfrp, int height)); #ifdef FEAT_VERTSPLIT *************** *** 23,30 **** static void win_totop __ARGS((int size, int flags)); static void win_equal_rec __ARGS((win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height)); static int last_window __ARGS((void)); static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp)); - static win_T *winframe_remove __ARGS((win_T *win, int *dirp, tabpage_T *tp)); static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp)); static tabpage_T *alt_tabpage __ARGS((void)); static win_T *frame2win __ARGS((frame_T *frp)); --- 23,30 ---- static void win_totop __ARGS((int size, int flags)); static void win_equal_rec __ARGS((win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height)); static int last_window __ARGS((void)); + static int one_window __ARGS((void)); static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp)); static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp)); static tabpage_T *alt_tabpage __ARGS((void)); static win_T *frame2win __ARGS((frame_T *frp)); *************** *** 41,46 **** --- 41,47 ---- #endif #endif static int win_alloc_firstwin __ARGS((win_T *oldwin)); + static void new_frame __ARGS((win_T *wp)); #if defined(FEAT_WINDOWS) || defined(PROTO) static tabpage_T *alloc_tabpage __ARGS((void)); static int leave_tabpage __ARGS((buf_T *new_curbuf)); *************** *** 49,56 **** static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin)); static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin)); static void win_free __ARGS((win_T *wp, tabpage_T *tp)); - static void win_append __ARGS((win_T *, win_T *)); - static void win_remove __ARGS((win_T *, tabpage_T *tp)); static void frame_append __ARGS((frame_T *after, frame_T *frp)); static void frame_insert __ARGS((frame_T *before, frame_T *frp)); static void frame_remove __ARGS((frame_T *frp)); --- 50,55 ---- *************** *** 62,78 **** static void frame_add_height __ARGS((frame_T *frp, int n)); static void last_status_rec __ARGS((frame_T *fr, int statusline)); - static void make_snapshot __ARGS((void)); static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp)); ! static void clear_snapshot __ARGS((tabpage_T *tp)); static void clear_snapshot_rec __ARGS((frame_T *fr)); - static void restore_snapshot __ARGS((int close_curwin)); static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); #endif /* FEAT_WINDOWS */ ! static win_T *win_alloc __ARGS((win_T *after)); static void win_new_height __ARGS((win_T *, int)); #define URL_SLASH 1 /* path_is_url() has found "://" */ --- 61,75 ---- static void frame_add_height __ARGS((frame_T *frp, int n)); static void last_status_rec __ARGS((frame_T *fr, int statusline)); static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp)); ! static void clear_snapshot __ARGS((tabpage_T *tp, int idx)); static void clear_snapshot_rec __ARGS((frame_T *fr)); static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr)); #endif /* FEAT_WINDOWS */ ! static win_T *win_alloc __ARGS((win_T *after, int hidden)); static void win_new_height __ARGS((win_T *, int)); #define URL_SLASH 1 /* path_is_url() has found "://" */ *************** *** 259,265 **** /* cursor to previous window with wrap around */ case 'W': CHECK_CMDWIN ! if (lastwin == firstwin && Prenum != 1) /* just one window */ beep_flush(); else { --- 256,262 ---- /* cursor to previous window with wrap around */ case 'W': CHECK_CMDWIN ! if (firstwin == lastwin && Prenum != 1) /* just one window */ beep_flush(); else { *************** *** 343,349 **** /* move window to new tab page */ case 'T': ! if (firstwin == lastwin) MSG(_(m_onlyone)); else { --- 340,346 ---- /* move window to new tab page */ case 'T': ! if (one_window()) MSG(_(m_onlyone)); else { *************** *** 679,687 **** /* When creating the help window make a snapshot of the window layout. * Otherwise clear the snapshot, it's now invalid. */ if (flags & WSP_HELP) ! make_snapshot(); else ! clear_snapshot(curtab); return win_split_ins(size, flags, NULL, 0); } --- 676,684 ---- /* When creating the help window make a snapshot of the window layout. * Otherwise clear the snapshot, it's now invalid. */ if (flags & WSP_HELP) ! make_snapshot(SNAP_HELP_IDX); else ! clear_snapshot(curtab, SNAP_HELP_IDX); return win_split_ins(size, flags, NULL, 0); } *************** *** 692,698 **** * top/left/right/bottom. * return FAIL for failure, OK otherwise */ ! static int win_split_ins(size, flags, newwin, dir) int size; int flags; --- 689,695 ---- * top/left/right/bottom. * return FAIL for failure, OK otherwise */ ! int win_split_ins(size, flags, newwin, dir) int size; int flags; *************** *** 893,906 **** { /* new window below/right of current one */ if (newwin == NULL) ! wp = win_alloc(oldwin); else win_append(oldwin, wp); } else { if (newwin == NULL) ! wp = win_alloc(oldwin->w_prev); else win_append(oldwin->w_prev, wp); } --- 890,903 ---- { /* new window below/right of current one */ if (newwin == NULL) ! wp = win_alloc(oldwin, FALSE); else win_append(oldwin, wp); } else { if (newwin == NULL) ! wp = win_alloc(oldwin->w_prev, FALSE); else win_append(oldwin->w_prev, wp); } *************** *** 910,915 **** --- 907,919 ---- if (wp == NULL) return FAIL; + new_frame(wp); + if (wp->w_frame == NULL) + { + win_free(wp, NULL); + return FAIL; + } + /* make the contents of the new window the same as the current one */ win_init(wp, curwin, flags); } *************** *** 970,982 **** } if (newwin == NULL) ! { ! /* Create a frame for the new window. */ ! frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); ! frp->fr_layout = FR_LEAF; ! frp->fr_win = wp; ! wp->w_frame = frp; ! } else frp = newwin->w_frame; frp->fr_parent = curfrp->fr_parent; --- 974,980 ---- } if (newwin == NULL) ! frp = wp->w_frame; else frp = newwin->w_frame; frp->fr_parent = curfrp->fr_parent; *************** *** 1156,1161 **** --- 1154,1160 ---- return OK; } + /* * Initialize window "newp" from window "oldp". * Used when splitting a window and when creating a new tab page. *************** *** 1204,1217 **** if (oldp->w_localdir != NULL) newp->w_localdir = vim_strsave(oldp->w_localdir); ! /* Use the same argument list. */ ! newp->w_alist = oldp->w_alist; ! ++newp->w_alist->al_refcount; ! newp->w_arg_idx = oldp->w_arg_idx; ! ! /* ! * copy tagstack and options from existing window ! */ for (i = 0; i < oldp->w_tagstacklen; i++) { newp->w_tagstack[i] = oldp->w_tagstack[i]; --- 1203,1209 ---- if (oldp->w_localdir != NULL) newp->w_localdir = vim_strsave(oldp->w_localdir); ! /* copy tagstack and folds */ for (i = 0; i < oldp->w_tagstacklen; i++) { newp->w_tagstack[i] = oldp->w_tagstack[i]; *************** *** 1221,1230 **** } newp->w_tagstackidx = oldp->w_tagstackidx; newp->w_tagstacklen = oldp->w_tagstacklen; - win_copy_options(oldp, newp); # ifdef FEAT_FOLDING copyFoldingState(oldp, newp); # endif } #endif /* FEAT_WINDOWS */ --- 1213,1241 ---- } newp->w_tagstackidx = oldp->w_tagstackidx; newp->w_tagstacklen = oldp->w_tagstacklen; # ifdef FEAT_FOLDING copyFoldingState(oldp, newp); # endif + + win_init_some(newp, oldp); + } + + /* + * Initialize window "newp" from window"old". + * Only the essential things are copied. + */ + static void + win_init_some(newp, oldp) + win_T *newp; + win_T *oldp; + { + /* Use the same argument list. */ + newp->w_alist = oldp->w_alist; + ++newp->w_alist->al_refcount; + newp->w_arg_idx = oldp->w_arg_idx; + + /* copy options from existing window */ + win_copy_options(oldp, newp); } #endif /* FEAT_WINDOWS */ *************** *** 1565,1579 **** #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! if (gui.in_use) ! { ! out_flush(); ! gui_init_which_components(NULL); ! gui_update_scrollbars(TRUE); ! } ! need_mouse_correct = TRUE; #endif - } /* --- 1576,1583 ---- #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! gui_may_update_scrollbars(); #endif } /* *************** *** 2048,2060 **** } /* ! * Return TRUE if the current window is the only window that exists. * Returns FALSE if there is a window, possibly in another tab page. */ static int last_window() { ! return (lastwin == firstwin && first_tabpage->tp_next == NULL); } /* --- 2052,2091 ---- } /* ! * Return TRUE if the current window is the only window that exists (ignoring ! * "aucmd_win"). * Returns FALSE if there is a window, possibly in another tab page. */ static int last_window() { ! return (one_window() && first_tabpage->tp_next == NULL); ! } ! ! /* ! * Return TRUE if there is only one window other than "aucmd_win" in the ! * current tab page. ! */ ! static int ! one_window() ! { ! #ifdef FEAT_AUTOCMD ! win_T *wp; ! int seen_one = FALSE; ! ! FOR_ALL_WINDOWS(wp) ! { ! if (wp != aucmd_win) ! { ! if (seen_one) ! return FALSE; ! seen_one = TRUE; ! } ! } ! return TRUE; ! #else ! return firstwin == lastwin; ! #endif } /* *************** *** 2083,2088 **** --- 2114,2132 ---- return; } + #ifdef FEAT_AUTOCMD + if (win == aucmd_win) + { + EMSG(_("E813: Cannot close autocmd window")); + return; + } + if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window()) + { + EMSG(_("E814: Cannot close window, only autocmd window would remain")); + return; + } + #endif + /* * When closing the last window in a tab page first go to another tab * page and then close the window and the tab page. This avoids that *************** *** 2112,2118 **** if (win->w_buffer->b_help) help_window = TRUE; else ! clear_snapshot(curtab); #ifdef FEAT_AUTOCMD if (win == curwin) --- 2156,2162 ---- if (win->w_buffer->b_help) help_window = TRUE; else ! clear_snapshot(curtab, SNAP_HELP_IDX); #ifdef FEAT_AUTOCMD if (win == curwin) *************** *** 2229,2235 **** /* After closing the help window, try restoring the window layout from * before it was opened. */ if (help_window) ! restore_snapshot(close_curwin); #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */ --- 2273,2279 ---- /* After closing the help window, try restoring the window layout from * before it was opened. */ if (help_window) ! restore_snapshot(SNAP_HELP_IDX, close_curwin); #if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT) /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */ *************** *** 2344,2349 **** --- 2388,2401 ---- while (firstwin != NULL) (void)win_free_mem(firstwin, &dummy, NULL); + + # ifdef FEAT_AUTOCMD + if (aucmd_win != NULL) + { + (void)win_free_mem(aucmd_win, &dummy, NULL); + aucmd_win = NULL; + } + # endif } #endif *************** *** 2351,2357 **** * Remove a window and its frame from the tree of frames. * Returns a pointer to the window that got the freed up space. */ ! static win_T * winframe_remove(win, dirp, tp) win_T *win; int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */ --- 2403,2409 ---- * Remove a window and its frame from the tree of frames. * Returns a pointer to the window that got the freed up space. */ ! win_T * winframe_remove(win, dirp, tp) win_T *win; int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */ *************** *** 3090,3096 **** win_T *nextwp; int r; ! if (lastwin == firstwin) { if (message #ifdef FEAT_AUTOCMD --- 3142,3148 ---- win_T *nextwp; int r; ! if (one_window()) { if (message #ifdef FEAT_AUTOCMD *************** *** 3194,3202 **** --- 3246,3275 ---- first_tabpage->tp_topframe = topframe; curtab = first_tabpage; #endif + return OK; } + #if defined(FEAT_AUTOCMD) || defined(PROTO) + /* + * Init "aucmd_win". This can only be done after the first + * window is fully initialized, thus it can't be in win_alloc_first(). + */ + void + win_alloc_aucmd_win() + { + aucmd_win = win_alloc(NULL, TRUE); + if (aucmd_win != NULL) + { + win_init_some(aucmd_win, curwin); + # ifdef FEAT_SCROLLBIND + aucmd_win->w_p_scb = FALSE; + # endif + new_frame(aucmd_win); + } + } + #endif + /* * Allocate the first window or the first window in a new tab page. * When "oldwin" is NULL create an empty buffer for it. *************** *** 3208,3214 **** win_alloc_firstwin(oldwin) win_T *oldwin; { ! curwin = win_alloc(NULL); if (oldwin == NULL) { /* Very first window, need to create an empty buffer for it and --- 3281,3287 ---- win_alloc_firstwin(oldwin) win_T *oldwin; { ! curwin = win_alloc(NULL, FALSE); if (oldwin == NULL) { /* Very first window, need to create an empty buffer for it and *************** *** 3236,3256 **** } #endif ! topframe = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); ! if (topframe == NULL) return FAIL; ! topframe->fr_layout = FR_LEAF; #ifdef FEAT_VERTSPLIT topframe->fr_width = Columns; #endif topframe->fr_height = Rows - p_ch; topframe->fr_win = curwin; - curwin->w_frame = topframe; return OK; } /* * Initialize the window and frame size to the maximum. */ void --- 3309,3344 ---- } #endif ! new_frame(curwin); ! if (curwin->w_frame == NULL) return FAIL; ! topframe = curwin->w_frame; #ifdef FEAT_VERTSPLIT topframe->fr_width = Columns; #endif topframe->fr_height = Rows - p_ch; topframe->fr_win = curwin; return OK; } /* + * Create a frame for window "wp". + */ + static void + new_frame(win_T *wp) + { + frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T)); + + wp->w_frame = frp; + if (frp != NULL) + { + frp->fr_layout = FR_LEAF; + frp->fr_win = wp; + } + } + + /* * Initialize the window and frame size to the maximum. */ void *************** *** 3300,3309 **** free_tabpage(tp) tabpage_T *tp; { # ifdef FEAT_DIFF diff_clear(tp); # endif ! clear_snapshot(tp); #ifdef FEAT_EVAL vars_clear(&tp->tp_vars.dv_hashtab); /* free all t: variables */ #endif --- 3388,3400 ---- free_tabpage(tp) tabpage_T *tp; { + int idx; + # ifdef FEAT_DIFF diff_clear(tp); # endif ! for (idx = 0; idx < SNAP_COUNT; ++idx) ! clear_snapshot(tp, idx); #ifdef FEAT_EVAL vars_clear(&tp->tp_vars.dv_hashtab); /* free all t: variables */ #endif *************** *** 3370,3381 **** #if defined(FEAT_GUI) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! if (gui.in_use && starting == 0) ! { ! gui_init_which_components(NULL); ! gui_update_scrollbars(TRUE); ! } ! need_mouse_correct = TRUE; #endif redraw_all_later(CLEAR); --- 3461,3467 ---- #if defined(FEAT_GUI) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! gui_may_update_scrollbars(); #endif redraw_all_later(CLEAR); *************** *** 3593,3604 **** #if defined(FEAT_GUI) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! if (gui.in_use && starting == 0) ! { ! gui_init_which_components(NULL); ! gui_update_scrollbars(TRUE); ! } ! need_mouse_correct = TRUE; #endif redraw_all_later(CLEAR); --- 3679,3685 ---- #if defined(FEAT_GUI) /* When 'guioptions' includes 'L' or 'R' may have to remove or add * scrollbars. Have to update them anyway. */ ! gui_may_update_scrollbars(); #endif redraw_all_later(CLEAR); *************** *** 4150,4160 **** #endif /* ! * allocate a window structure and link it in the window list */ static win_T * ! win_alloc(after) win_T *after UNUSED; { win_T *newwin; --- 4231,4243 ---- #endif /* ! * Allocate a window structure and link it in the window list when "hidden" is ! * FALSE. */ static win_T * ! win_alloc(after, hidden) win_T *after UNUSED; + int hidden UNUSED; { win_T *newwin; *************** *** 4180,4186 **** * link the window in the window list */ #ifdef FEAT_WINDOWS ! win_append(after, newwin); #endif #ifdef FEAT_VERTSPLIT newwin->w_wincol = 0; --- 4263,4270 ---- * link the window in the window list */ #ifdef FEAT_WINDOWS ! if (!hidden) ! win_append(after, newwin); #endif #ifdef FEAT_VERTSPLIT newwin->w_wincol = 0; *************** *** 4314,4320 **** /* * Append window "wp" in the window list after window "after". */ ! static void win_append(after, wp) win_T *after, *wp; { --- 4398,4404 ---- /* * Append window "wp" in the window list after window "after". */ ! void win_append(after, wp) win_T *after, *wp; { *************** *** 4340,4346 **** /* * Remove a window from the window list. */ ! static void win_remove(wp, tp) win_T *wp; tabpage_T *tp; /* tab page "win" is in, NULL for current */ --- 4424,4430 ---- /* * Remove a window from the window list. */ ! void win_remove(wp, tp) win_T *wp; tabpage_T *tp; /* tab page "win" is in, NULL for current */ *************** *** 6040,6045 **** --- 6124,6130 ---- /* * Return TRUE if there is only one window (in the current tab page), not * counting a help or preview window, unless it is the current window. + * Does not count "aucmd_win". */ int only_one_window() *************** *** 6053,6063 **** return FALSE; for (wp = firstwin; wp != NULL; wp = wp->w_next) ! if (!((wp->w_buffer->b_help && !curbuf->b_help) # ifdef FEAT_QUICKFIX || wp->w_p_pvw # endif ) || wp == curwin) ++count; return (count <= 1); #else --- 6138,6152 ---- return FALSE; for (wp = firstwin; wp != NULL; wp = wp->w_next) ! if ((!((wp->w_buffer->b_help && !curbuf->b_help) # ifdef FEAT_QUICKFIX || wp->w_p_pvw # endif ) || wp == curwin) + # ifdef FEAT_AUTOCMD + && wp != aucmd_win + # endif + ) ++count; return (count <= 1); #else *************** *** 6112,6122 **** /* * Create a snapshot of the current frame sizes. */ ! static void ! make_snapshot() { ! clear_snapshot(curtab); ! make_snapshot_rec(topframe, &curtab->tp_snapshot); } static void --- 6201,6212 ---- /* * Create a snapshot of the current frame sizes. */ ! void ! make_snapshot(idx) ! int idx; { ! clear_snapshot(curtab, idx); ! make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]); } static void *************** *** 6144,6154 **** * Remove any existing snapshot. */ static void ! clear_snapshot(tp) tabpage_T *tp; { ! clear_snapshot_rec(tp->tp_snapshot); ! tp->tp_snapshot = NULL; } static void --- 6234,6245 ---- * Remove any existing snapshot. */ static void ! clear_snapshot(tp, idx) tabpage_T *tp; + int idx; { ! clear_snapshot_rec(tp->tp_snapshot[idx]); ! tp->tp_snapshot[idx] = NULL; } static void *************** *** 6168,6193 **** * This is only done if the screen size didn't change and the window layout is * still the same. */ ! static void ! restore_snapshot(close_curwin) int close_curwin; /* closing current window */ { win_T *wp; ! if (curtab->tp_snapshot != NULL # ifdef FEAT_VERTSPLIT ! && curtab->tp_snapshot->fr_width == topframe->fr_width # endif ! && curtab->tp_snapshot->fr_height == topframe->fr_height ! && check_snapshot_rec(curtab->tp_snapshot, topframe) == OK) { ! wp = restore_snapshot_rec(curtab->tp_snapshot, topframe); win_comp_pos(); if (wp != NULL && close_curwin) win_goto(wp); redraw_all_later(CLEAR); } ! clear_snapshot(curtab); } /* --- 6259,6285 ---- * This is only done if the screen size didn't change and the window layout is * still the same. */ ! void ! restore_snapshot(idx, close_curwin) ! int idx; int close_curwin; /* closing current window */ { win_T *wp; ! if (curtab->tp_snapshot[idx] != NULL # ifdef FEAT_VERTSPLIT ! && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width # endif ! && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height ! && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK) { ! wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe); win_comp_pos(); if (wp != NULL && close_curwin) win_goto(wp); redraw_all_later(CLEAR); } ! clear_snapshot(curtab, idx); } /* *** ../vim-7.2.202/src/version.c 2009-06-16 15:35:46.000000000 +0200 --- src/version.c 2009-06-16 15:37:16.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 203, /**/ -- How To Keep A Healthy Level Of Insanity: 15. Five days in advance, tell your friends you can't attend their party because you're not in the mood. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.204 --- To: vim-dev at vim.org Subject: Patch 7.2.204 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.204 (extra) Problem: Win32: Can't build with Visual Studio 2010 beta 1. Solution: Fix the makefile. (George Reilly) Files: src/Make_mvc.mak *** ../vim-7.2.203/src/Make_mvc.mak 2009-05-26 22:58:43.000000000 +0200 --- src/Make_mvc.mak 2009-06-16 16:27:59.000000000 +0200 *************** *** 1,18 **** # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me) # and Win64, using the Microsoft Visual C++ compilers. Known to work with # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005), ! # and VC9 (VS2008). # # To build using other Windows compilers, see INSTALLpc.txt # # This makefile can build the console, GUI, OLE-enable, Perl-enabled and ! # Python-enabled versions of vim for Win32 platforms. # ! # The basic command line to build vim is: # # nmake -f Make_mvc.mak # ! # This will build the console version of vim with no additional interfaces. # To add features, define any of the following: # # !!!! After changing features do "nmake clean" first !!!! --- 1,18 ---- # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me) # and Win64, using the Microsoft Visual C++ compilers. Known to work with # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005), ! # VC9 (VS2008), and VC10 (VS2010). # # To build using other Windows compilers, see INSTALLpc.txt # # This makefile can build the console, GUI, OLE-enable, Perl-enabled and ! # Python-enabled versions of Vim for Win32 platforms. # ! # The basic command line to build Vim is: # # nmake -f Make_mvc.mak # ! # This will build the console version of Vim with no additional interfaces. # To add features, define any of the following: # # !!!! After changing features do "nmake clean" first !!!! *************** *** 358,363 **** --- 358,366 ---- !if "$(_NMAKE_VER)" == "9.00.30729.01" MSVCVER = 9.0 !endif + !if "$(_NMAKE_VER)" == "10.00.20506.01" + MSVCVER = 10.0 + !endif !endif # Abort bulding VIM if version of VC is unrecognised. *************** *** 372,378 **** !endif # Convert processor ID to MVC-compatible number ! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") !if "$(CPUNR)" == "i386" CPUARG = /G3 !elseif "$(CPUNR)" == "i486" --- 375,381 ---- !endif # Convert processor ID to MVC-compatible number ! !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") !if "$(CPUNR)" == "i386" CPUARG = /G3 !elseif "$(CPUNR)" == "i486" *************** *** 405,411 **** !else # MAXSPEED OPTFLAG = /Ox !endif ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") # Use link time code generation if not worried about size !if "$(OPTIMIZE)" != "SPACE" OPTFLAG = $(OPTFLAG) /GL --- 408,414 ---- !else # MAXSPEED OPTFLAG = /Ox !endif ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") # Use link time code generation if not worried about size !if "$(OPTIMIZE)" != "SPACE" OPTFLAG = $(OPTFLAG) /GL *************** *** 793,799 **** # Report link time code generation progress if used. !ifdef NODEBUG ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") !if "$(OPTIMIZE)" != "SPACE" LINKARGS1 = $(LINKARGS1) /LTCG:STATUS !endif --- 796,802 ---- # Report link time code generation progress if used. !ifdef NODEBUG ! !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") !if "$(OPTIMIZE)" != "SPACE" LINKARGS1 = $(LINKARGS1) /LTCG:STATUS !endif *** ../vim-7.2.203/src/version.c 2009-06-16 16:01:34.000000000 +0200 --- src/version.c 2009-06-16 16:32:41.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 204, /**/ -- How To Keep A Healthy Level Of Insanity: 16. Have your coworkers address you by your wrestling name, Rock Hard Kim. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.205 --- To: vim-dev at vim.org Subject: Patch 7.2.205 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.205 (extra) Problem: Win32: No support for High DPI awarenes. Solution: Fix the manifest file. (George Reilly) Files: src/Make_mvc.mak, src/gvim.exe.mnf *** ../vim-7.2.204/src/Make_mvc.mak 2009-06-16 16:34:12.000000000 +0200 --- src/Make_mvc.mak 2009-06-16 16:36:32.000000000 +0200 *************** *** 1040,1046 **** $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c ! $(OUTDIR)/vim.res: $(OUTDIR) vim.rc version.h tools.bmp tearoff.bmp \ vim.ico vim_error.ico vim_alert.ico vim_info.ico vim_quest.ico $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc --- 1040,1046 ---- $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c ! $(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp tearoff.bmp \ vim.ico vim_error.ico vim_alert.ico vim_info.ico vim_quest.ico $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc *** ../vim-7.2.204/src/gvim.exe.mnf 2008-08-09 19:37:29.000000000 +0200 --- src/gvim.exe.mnf 2009-06-16 16:36:32.000000000 +0200 *************** *** 1,5 **** ! ! + + + + true + + *** ../vim-7.2.204/src/version.c 2009-06-16 16:34:12.000000000 +0200 --- src/version.c 2009-06-16 16:43:04.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 205, /**/ -- How To Keep A Healthy Level Of Insanity: 17. When the money comes out the ATM, scream "I won!, I won! 3rd time this week!!!!!" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.206 --- To: vim-dev at vim.org Subject: Patch 7.2.206 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.206 Problem: Win32: Can't build netbeans interface with Visual Studio 2010. Solution: Undefine ECONNREFUSED. (George Reilly) Files: src/netbeans.c *** ../vim-7.2.205/src/netbeans.c 2009-05-17 23:25:16.000000000 +0200 --- src/netbeans.c 2009-06-16 16:39:17.000000000 +0200 *************** *** 32,37 **** --- 32,38 ---- /* WinSock API is separated from C API, thus we can't use read(), write(), * errno... */ # define sock_errno WSAGetLastError() + # undef ECONNREFUSED # define ECONNREFUSED WSAECONNREFUSED # ifdef EINTR # undef EINTR *** ../vim-7.2.205/src/version.c 2009-06-16 16:45:14.000000000 +0200 --- src/version.c 2009-06-16 16:57:45.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 206, /**/ -- How To Keep A Healthy Level Of Insanity: 18. When leaving the zoo, start running towards the parking lot, yelling "run for your lives, they're loose!!" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.207 --- To: vim-dev at vim.org Subject: Patch 7.2.207 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.207 Problem: Using freed memory with ":redrawstatus" when it works recursively. Solution: Prevent recursively updating the status line. (partly by Dominique Pelle) Files: src/screen.c *** ../vim-7.2.206/src/screen.c 2009-06-16 16:01:34.000000000 +0200 --- src/screen.c 2009-06-16 17:04:53.000000000 +0200 *************** *** 5743,5748 **** --- 5743,5755 ---- int fillchar; int attr; int this_ru_col; + static int busy = FALSE; + + /* It's possible to get here recursively when 'statusline' (indirectly) + * invokes ":redrawstatus". Simply ignore the call then. */ + if (busy) + return; + busy = TRUE; wp->w_redr_status = FALSE; if (wp->w_status_height == 0) *************** *** 5881,5886 **** --- 5888,5894 ---- attr); } #endif + busy = FALSE; } #ifdef FEAT_STL_OPT *** ../vim-7.2.206/src/version.c 2009-06-16 16:57:53.000000000 +0200 --- src/version.c 2009-06-16 17:21:56.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 207, /**/ -- In many of the more relaxed civilizations on the Outer Eastern Rim of the Galaxy, "The Hitchhiker's Guide to the Galaxy" has already supplanted the great "Encyclopedia Galactica" as the standard repository of all knowledge and wisdom, for though it has many omissions and contains much that is apocryphal, or at least wildly inaccurate, it scores over the older, more pedestrian work in two important respects. First, it is slightly cheaper; and second, it has the words "DON'T PANIC" inscribed in large friendly letters on its cover. -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.208 --- To: vim-dev at vim.org Subject: Patch 7.2.208 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.208 Problem: "set novice" gives an error message, it should be ignored. Solution: Don't see "no" in "novice" as unsetting an option. (Patrick Texier) Files: src/option.c *** ../vim-7.2.207/src/option.c 2009-06-16 15:23:07.000000000 +0200 --- src/option.c 2009-06-16 17:35:08.000000000 +0200 *************** *** 4006,4012 **** else { prefix = 1; ! if (STRNCMP(arg, "no", 2) == 0) { prefix = 0; arg += 2; --- 4006,4012 ---- else { prefix = 1; ! if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0) { prefix = 0; arg += 2; *************** *** 9757,9763 **** } --p; } ! if (STRNCMP(p, "no", 2) == 0) { xp->xp_context = EXPAND_BOOL_SETTINGS; p += 2; --- 9757,9763 ---- } --p; } ! if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0) { xp->xp_context = EXPAND_BOOL_SETTINGS; p += 2; *** ../vim-7.2.207/src/version.c 2009-06-16 17:22:38.000000000 +0200 --- src/version.c 2009-06-16 17:50:33.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 208, /**/ -- Now it is such a bizarrely improbable coincidence that anything as mind-bogglingly useful as the Babel fish could have evolved purely by chance that some thinkers have chosen to see it as a final and clinching proof of the NON-existence of God. The argument goes something like this: 'I refuse to prove that I exist,' says God, 'for proof denies faith, and without faith I am nothing.' 'But,' says Man, 'the Babel fish is a dead giveaway, isn't it? It could not have evolved by chance. It proves you exist, and so therefore, by your own arguments, you don't. QED.' 'Oh dear,' says God, 'I hadn't thought of that,' and promptly vanishes in a puff of logic. 'Oh, that was easy,' says Man, and for an encore goes on to prove that black is white and gets himself killed on the next pedestrian crossing. -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.209 --- To: vim-dev at vim.org Subject: Patch 7.2.209 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.209 Problem: For xxd setmode() is undefined on Cygwin. Solution: Include io.h. (Dominique Pelle) Files: src/xxd/xxd.c *** ../vim-7.2.208/src/xxd/xxd.c 2007-12-03 21:32:21.000000000 +0100 --- src/xxd/xxd.c 2009-06-16 18:03:14.000000000 +0200 *************** *** 64,69 **** --- 64,72 ---- # define _CRT_SECURE_NO_DEPRECATE # define _CRT_NONSTDC_NO_DEPRECATE #endif + #if !defined(CYGWIN) && (defined(CYGWIN32) || defined(__CYGWIN__) || defined(__CYGWIN32__)) + # define CYGWIN + #endif #include #ifdef VAXC *************** *** 77,83 **** #if !defined(OS2) && defined(__EMX__) # define OS2 #endif ! #if defined(MSDOS) || defined(WIN32) || defined(OS2) || defined(__BORLANDC__) # include /* for setmode() */ #else # ifdef UNIX --- 80,87 ---- #if !defined(OS2) && defined(__EMX__) # define OS2 #endif ! #if defined(MSDOS) || defined(WIN32) || defined(OS2) || defined(__BORLANDC__) \ ! || defined(CYGWIN) # include /* for setmode() */ #else # ifdef UNIX *************** *** 150,158 **** # endif #endif - #if !defined(CYGWIN) && (defined(CYGWIN32) || defined(__CYGWIN__) || defined(__CYGWIN32__)) - # define CYGWIN - #endif #if defined(MSDOS) || defined(WIN32) || defined(OS2) # define BIN_READ(yes) ((yes) ? "rb" : "rt") # define BIN_WRITE(yes) ((yes) ? "wb" : "wt") --- 154,159 ---- *** ../vim-7.2.208/src/version.c 2009-06-16 17:50:56.000000000 +0200 --- src/version.c 2009-06-16 18:16:08.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 209, /**/ -- "So this is it," said Arthur, "we are going to die." "Yes," said Ford, "except...no! Wait a minute!" He suddenly lunged across the chamber at something behind Arthur's line of vision. "What's this switch?" he cried. "What? Where?" cried Arthur, twisting around. "No, I was only fooling," said Ford, "we are going to die after all." -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.210 --- To: vim-dev at vim.org Subject: Patch 7.2.210 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.210 Problem: When a file that is being edited has its timestamp updated outside of Vim and ":checktime" is used still get a warning when writing the file. (Matt Mueller) Solution: Store the timestamp in b_mtime_read when the timestamp is the only thing that changed. Files: src/fileio.c *** ../vim-7.2.209/src/fileio.c 2009-06-16 16:01:34.000000000 +0200 --- src/fileio.c 2009-06-20 13:29:41.000000000 +0200 *************** *** 6627,6633 **** mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started"); mesg2 = _("See \":help W16\" for more info."); } ! /* Else: only timestamp changed, ignored */ } } } --- 6627,6636 ---- mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started"); mesg2 = _("See \":help W16\" for more info."); } ! else ! /* Only timestamp changed, store it to avoid a warning ! * in check_mtime() later. */ ! buf->b_mtime_read = buf->b_mtime; } } } *** ../vim-7.2.209/src/version.c 2009-06-16 18:29:37.000000000 +0200 --- src/version.c 2009-06-24 11:57:08.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 210, /**/ -- Have you heard about the new Beowulf cluster? It's so fast, it executes an infinite loop in 6 seconds. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.211 --- To: vim-dev at vim.org Subject: Patch 7.2.211 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.211 Problem: Memory leak when expanding a series of file names. Solution: Use ga_clear_strings() instead of ga_clear(). Files: src/misc1.c *** ../vim-7.2.210/src/misc1.c 2009-05-17 13:30:58.000000000 +0200 --- src/misc1.c 2009-06-24 16:16:17.000000000 +0200 *************** *** 9193,9199 **** else if (vim_strpbrk(p, (char_u *)"$~") != NULL) { vim_free(p); ! ga_clear(&ga); i = mch_expand_wildcards(num_pat, pat, num_file, file, flags); recursive = FALSE; --- 9193,9199 ---- else if (vim_strpbrk(p, (char_u *)"$~") != NULL) { vim_free(p); ! ga_clear_strings(&ga); i = mch_expand_wildcards(num_pat, pat, num_file, file, flags); recursive = FALSE; *** ../vim-7.2.210/src/version.c 2009-06-24 11:57:53.000000000 +0200 --- src/version.c 2009-06-24 16:24:32.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 211, /**/ -- hundred-and-one symptoms of being an internet addict: 34. You laugh at people with 14400 baud modems. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.212 --- To: vim-dev at vim.org Subject: Patch 7.2.212 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.212 (extra) Problem: Warnings for redefining SIG macros. Solution: Don't define them if already defined. (Bjorn Winckler) Files: src/os_mac.h *** ../vim-7.2.211/src/os_mac.h 2008-06-24 22:27:34.000000000 +0200 --- src/os_mac.h 2009-06-19 21:21:57.000000000 +0200 *************** *** 268,276 **** */ #ifdef MACOS_X_UNIX ! # define SIGPROTOARG (int) ! # define SIGDEFARG(s) (s) int s; ! # define SIGDUMMYARG 0 # undef HAVE_AVAIL_MEM # ifndef HAVE_CONFIG_H # define RETSIGTYPE void --- 268,282 ---- */ #ifdef MACOS_X_UNIX ! # ifndef SIGPROTOARG ! # define SIGPROTOARG (int) ! # endif ! # ifndef SIGDEFARG ! # define SIGDEFARG(s) (s) int s UNUSED; ! # endif ! # ifndef SIGDUMMYARG ! # define SIGDUMMYARG 0 ! # endif # undef HAVE_AVAIL_MEM # ifndef HAVE_CONFIG_H # define RETSIGTYPE void *** ../vim-7.2.211/src/version.c 2009-06-24 16:25:23.000000000 +0200 --- src/version.c 2009-06-24 16:40:18.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 212, /**/ -- hundred-and-one symptoms of being an internet addict: 37. You start looking for hot HTML addresses in public restrooms. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.213 --- To: vim-dev at vim.org Subject: Patch 7.2.213 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.213 Problem: Warning for using vsprintf(). Solution: Use vim_vsnprintf(). Files: src/netbeans.c *** ../vim-7.2.212/src/netbeans.c 2009-06-16 16:57:53.000000000 +0200 --- src/netbeans.c 2009-06-24 11:26:43.000000000 +0200 *************** *** 2586,2592 **** va_list ap; va_start(ap, cmd); ! vsprintf(buf, cmd, ap); va_end(ap); nbdebug((" COLONCMD %s\n", buf)); --- 2586,2592 ---- va_list ap; va_start(ap, cmd); ! vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); va_end(ap); nbdebug((" COLONCMD %s\n", buf)); *** ../vim-7.2.212/src/version.c 2009-06-24 16:41:01.000000000 +0200 --- src/version.c 2009-06-24 16:49:06.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 213, /**/ -- hundred-and-one symptoms of being an internet addict: 38. You wake up at 3 a.m. to go to the bathroom and stop and check your e-mail on the way back to bed. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.214 --- To: vim-dev at vim.org Subject: Patch 7.2.214 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.214 Problem: Crash with complete function for user command. (Andy Wokula) Solution: Avoid using a NULL pointer (Dominique Pelle) Files: src/ex_getln.c *** ../vim-7.2.213/src/ex_getln.c 2009-05-16 17:29:37.000000000 +0200 --- src/ex_getln.c 2009-06-24 16:57:28.000000000 +0200 *************** *** 4874,4887 **** /* Loop over the items in the list. */ for (li = retlist->lv_first; li != NULL; li = li->li_next) { ! if (li->li_tv.v_type != VAR_STRING) ! continue; /* Skip non-string items */ if (ga_grow(&ga, 1) == FAIL) break; ((char_u **)ga.ga_data)[ga.ga_len] = ! vim_strsave(li->li_tv.vval.v_string); ++ga.ga_len; } list_unref(retlist); --- 4874,4887 ---- /* Loop over the items in the list. */ for (li = retlist->lv_first; li != NULL; li = li->li_next) { ! if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) ! continue; /* Skip non-string items and empty strings */ if (ga_grow(&ga, 1) == FAIL) break; ((char_u **)ga.ga_data)[ga.ga_len] = ! vim_strsave(li->li_tv.vval.v_string); ++ga.ga_len; } list_unref(retlist); *** ../vim-7.2.213/src/version.c 2009-06-24 16:49:50.000000000 +0200 --- src/version.c 2009-06-24 17:03:58.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 214, /**/ -- He who laughs last, thinks slowest. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.215 --- To: vim-dev at vim.org Subject: Patch 7.2.215 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.215 Problem: ml_get error when using ":vimgrep". Solution: Load the memfile for the hidden buffer before putting it in a window. Correct the order of splitting the window and filling the window and buffer with data. Files: src/fileio.c, src/proto/window.pro, src/quickfix.c, src/window.c *** ../vim-7.2.214/src/fileio.c 2009-06-24 11:57:53.000000000 +0200 --- src/fileio.c 2009-06-24 12:53:19.000000000 +0200 *************** *** 710,716 **** #endif #ifdef UNIX /* Set swap file protection bits after creating it. */ ! if (swap_mode > 0 && curbuf->b_ml.ml_mfp->mf_fname != NULL) (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode); #endif } --- 710,717 ---- #endif #ifdef UNIX /* Set swap file protection bits after creating it. */ ! if (swap_mode > 0 && curbuf->b_ml.ml_mfp != NULL ! && curbuf->b_ml.ml_mfp->mf_fname != NULL) (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode); #endif } *************** *** 8435,8443 **** * effects, insert it in a the current tab page. * Anything related to a window (e.g., setting folds) may have * unexpected results. */ ! curwin = aucmd_win; ! curwin->w_buffer = buf; ++buf->b_nwindows; #ifdef FEAT_WINDOWS /* Split the current window, put the aucmd_win in the upper half. */ --- 8436,8444 ---- * effects, insert it in a the current tab page. * Anything related to a window (e.g., setting folds) may have * unexpected results. */ ! aucmd_win->w_buffer = buf; ++buf->b_nwindows; + win_init_empty(aucmd_win); /* set cursor and topline to safe values */ #ifdef FEAT_WINDOWS /* Split the current window, put the aucmd_win in the upper half. */ *************** *** 8448,8459 **** (void)win_comp_pos(); /* recompute window positions */ p_ea = save_ea; #endif ! /* set cursor and topline to safe values */ ! curwin_init(); ! #ifdef FEAT_VERTSPLIT ! curwin->w_wincol = 0; ! curwin->w_width = Columns; ! #endif } curbuf = buf; aco->new_curwin = curwin; --- 8449,8455 ---- (void)win_comp_pos(); /* recompute window positions */ p_ea = save_ea; #endif ! curwin = aucmd_win; } curbuf = buf; aco->new_curwin = curwin; *** ../vim-7.2.214/src/proto/window.pro 2009-06-16 16:01:34.000000000 +0200 --- src/proto/window.pro 2009-06-24 12:53:13.000000000 +0200 *************** *** 14,19 **** --- 14,20 ---- win_T *winframe_remove __ARGS((win_T *win, int *dirp, tabpage_T *tp)); void close_others __ARGS((int message, int forceit)); void curwin_init __ARGS((void)); + void win_init_empty __ARGS((win_T *wp)); int win_alloc_first __ARGS((void)); void win_alloc_aucmd_win __ARGS((void)); void win_init_size __ARGS((void)); *** ../vim-7.2.214/src/quickfix.c 2009-05-17 13:30:58.000000000 +0200 --- src/quickfix.c 2009-06-24 15:30:06.000000000 +0200 *************** *** 3411,3424 **** /* Init the options. */ buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); ! /* set curwin/curbuf to buf and save a few things */ ! aucmd_prepbuf(&aco, newbuf); ! /* Need to set the filename for autocommands. */ ! (void)setfname(curbuf, fname, NULL, FALSE); - if (ml_open(curbuf) == OK) - { /* Create swap file now to avoid the ATTENTION message. */ check_need_swap(TRUE); --- 3411,3425 ---- /* Init the options. */ buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); ! /* need to open the memfile before putting the buffer in a window */ ! if (ml_open(newbuf) == OK) ! { ! /* set curwin/curbuf to buf and save a few things */ ! aucmd_prepbuf(&aco, newbuf); ! /* Need to set the filename for autocommands. */ ! (void)setfname(curbuf, fname, NULL, FALSE); /* Create swap file now to avoid the ATTENTION message. */ check_need_swap(TRUE); *************** *** 3441,3450 **** newbuf = curbuf; } } - } ! /* restore curwin/curbuf and a few other things */ ! aucmd_restbuf(&aco); if (!buf_valid(newbuf)) return NULL; --- 3442,3451 ---- newbuf = curbuf; } } ! /* restore curwin/curbuf and a few other things */ ! aucmd_restbuf(&aco); ! } if (!buf_valid(newbuf)) return NULL; *** ../vim-7.2.214/src/window.c 2009-06-16 16:01:34.000000000 +0200 --- src/window.c 2009-06-24 14:35:16.000000000 +0200 *************** *** 2354,2366 **** frame_T *frp; win_T *wp; - #ifdef FEAT_FOLDING - clearFolding(win); - #endif - - /* reduce the reference count to the argument list. */ - alist_unlink(win->w_alist); - /* Remove the window and its frame from the tree of frames. */ frp = win->w_frame; wp = winframe_remove(win, dirp, tp); --- 2354,2359 ---- *************** *** 2386,2394 **** tabpage_close(TRUE); # endif - while (firstwin != NULL) - (void)win_free_mem(firstwin, &dummy, NULL); - # ifdef FEAT_AUTOCMD if (aucmd_win != NULL) { --- 2379,2384 ---- *************** *** 2396,2401 **** --- 2386,2394 ---- aucmd_win = NULL; } # endif + + while (firstwin != NULL) + (void)win_free_mem(firstwin, &dummy, NULL); } #endif *************** *** 3204,3230 **** void curwin_init() { ! redraw_win_later(curwin, NOT_VALID); ! curwin->w_lines_valid = 0; ! curwin->w_cursor.lnum = 1; ! curwin->w_curswant = curwin->w_cursor.col = 0; #ifdef FEAT_VIRTUALEDIT ! curwin->w_cursor.coladd = 0; #endif ! curwin->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */ ! curwin->w_pcmark.col = 0; ! curwin->w_prev_pcmark.lnum = 0; ! curwin->w_prev_pcmark.col = 0; ! curwin->w_topline = 1; #ifdef FEAT_DIFF ! curwin->w_topfill = 0; #endif ! curwin->w_botline = 2; #ifdef FEAT_FKMAP ! if (curwin->w_p_rl) ! curwin->w_farsi = W_CONV + W_R_L; else ! curwin->w_farsi = W_CONV; #endif } --- 3197,3230 ---- void curwin_init() { ! win_init_empty(curwin); ! } ! ! void ! win_init_empty(wp) ! win_T *wp; ! { ! redraw_win_later(wp, NOT_VALID); ! wp->w_lines_valid = 0; ! wp->w_cursor.lnum = 1; ! wp->w_curswant = wp->w_cursor.col = 0; #ifdef FEAT_VIRTUALEDIT ! wp->w_cursor.coladd = 0; #endif ! wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */ ! wp->w_pcmark.col = 0; ! wp->w_prev_pcmark.lnum = 0; ! wp->w_prev_pcmark.col = 0; ! wp->w_topline = 1; #ifdef FEAT_DIFF ! wp->w_topfill = 0; #endif ! wp->w_botline = 2; #ifdef FEAT_FKMAP ! if (wp->w_p_rl) ! wp->w_farsi = W_CONV + W_R_L; else ! wp->w_farsi = W_CONV; #endif } *************** *** 4325,4330 **** --- 4325,4337 ---- { int i; + #ifdef FEAT_FOLDING + clearFolding(wp); + #endif + + /* reduce the reference count to the argument list. */ + alist_unlink(wp->w_alist); + #ifdef FEAT_AUTOCMD /* Don't execute autocommands while the window is halfway being deleted. * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */ *************** *** 4387,4393 **** } #endif /* FEAT_GUI */ ! win_remove(wp, tp); vim_free(wp); #ifdef FEAT_AUTOCMD --- 4394,4403 ---- } #endif /* FEAT_GUI */ ! #ifdef FEAT_AUTOCMD ! if (wp != aucmd_win) ! #endif ! win_remove(wp, tp); vim_free(wp); #ifdef FEAT_AUTOCMD *** ../vim-7.2.214/src/version.c 2009-06-24 17:04:40.000000000 +0200 --- src/version.c 2009-06-24 17:27:38.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 215, /**/ -- Micro$oft: where do you want to go today? Linux: where do you want to go tomorrow? FreeBSD: are you guys coming, or what? /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.216 --- To: vim-dev at vim.org Subject: Patch 7.2.216 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.216 Problem: Two error messages have the same number E812. Solution: Give one message a different number. Files: runtime/doc/autocmd.txt, runtime/doc/if_mzsch.txt, src/if_mzsch.c *** ../vim-7.2.215/runtime/doc/autocmd.txt 2008-08-09 19:36:46.000000000 +0200 --- runtime/doc/autocmd.txt 2009-06-24 17:49:04.000000000 +0200 *************** *** 335,340 **** --- 335,342 ---- NOTE: When this autocommand is executed, the current buffer "%" may be different from the buffer being deleted "" and "". + Don't change to another buffer, it will cause + problems. *BufEnter* BufEnter After entering a buffer. Useful for setting options for a file type. Also executed when *************** *** 397,402 **** --- 399,406 ---- NOTE: When this autocommand is executed, the current buffer "%" may be different from the buffer being unloaded "". + Don't change to another buffer, it will cause + problems. *BufWinEnter* BufWinEnter After a buffer is displayed in a window. This can be when the buffer is loaded (after *************** *** 428,433 **** --- 432,439 ---- NOTE: When this autocommand is executed, the current buffer "%" may be different from the buffer being deleted "". + Don't change to another buffer, it will cause + problems. *BufWrite* *BufWritePre* BufWrite or BufWritePre Before writing the whole buffer to a file. *BufWriteCmd* *************** *** 748,755 **** 'a' abort, like hitting CTRL-C When set to an empty string the user will be asked, as if there was no SwapExists autocmd. ! Note: Do not try to change the buffer, the ! results are unpredictable. *Syntax* Syntax When the 'syntax' option has been set. The pattern is matched against the syntax name. --- 754,763 ---- 'a' abort, like hitting CTRL-C When set to an empty string the user will be asked, as if there was no SwapExists autocmd. ! *E812* ! It is not allowed to change to another buffer, ! change a buffer name or change directory ! here. *Syntax* Syntax When the 'syntax' option has been set. The pattern is matched against the syntax name. *** ../vim-7.2.215/runtime/doc/if_mzsch.txt 2009-05-26 22:58:43.000000000 +0200 --- runtime/doc/if_mzsch.txt 2009-06-24 12:08:20.000000000 +0200 *************** *** 1,4 **** ! *if_mzsch.txt* For Vim version 7.2. Last change: 2009 May 26 VIM REFERENCE MANUAL by Sergey Khorev --- 1,4 ---- ! *if_mzsch.txt* For Vim version 7.2. Last change: 2009 Jun 24 VIM REFERENCE MANUAL by Sergey Khorev *************** *** 231,237 **** (set-cursor (line . col) [window]) Set cursor position. ============================================================================== ! 5. Dynamic loading *mzscheme-dynamic* *E812* On MS-Windows the MzScheme libraries can be loaded dynamically. The |:version| output then includes |+mzscheme/dyn|. --- 231,237 ---- (set-cursor (line . col) [window]) Set cursor position. ============================================================================== ! 5. Dynamic loading *mzscheme-dynamic* *E815* On MS-Windows the MzScheme libraries can be loaded dynamically. The |:version| output then includes |+mzscheme/dyn|. *** ../vim-7.2.215/src/if_mzsch.c 2009-05-26 22:58:43.000000000 +0200 --- src/if_mzsch.c 2009-06-24 12:08:23.000000000 +0200 *************** *** 1040,1046 **** #ifdef DYNAMIC_MZSCHEME if (!mzscheme_enabled(TRUE)) { ! EMSG(_("E812: Sorry, this command is disabled, the MzScheme libraries could not be loaded.")); return -1; } #endif --- 1040,1046 ---- #ifdef DYNAMIC_MZSCHEME if (!mzscheme_enabled(TRUE)) { ! EMSG(_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded.")); return -1; } #endif *** ../vim-7.2.215/src/version.c 2009-06-24 17:31:27.000000000 +0200 --- src/version.c 2009-06-24 17:46:56.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 216, /**/ -- Everyone has a photographic memory. Some don't have film. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.217 --- To: vim-dev at vim.org Subject: Patch 7.2.217 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.217 Problem: Running tests with valgrind doesn't work as advertised. Solution: Fix the line in the Makefile. Files: src/testdir/Makefile *** ../vim-7.2.216/src/testdir/Makefile 2009-03-11 16:26:01.000000000 +0100 --- src/testdir/Makefile 2009-06-24 14:59:42.000000000 +0200 *************** *** 4,12 **** VIMPROG = ../vim ! # Uncomment this line for using valgrind. ! # The output goes into a file "valgrind.$PID" (sorry, no test number). ! # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 --logfile=valgrind SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ test7.out test8.out test9.out test10.out test11.out \ --- 4,14 ---- VIMPROG = ../vim ! # Uncomment this line to use valgrind for memory leaks and extra warnings. ! # The output goes into a file "valgrind.testN" ! # Vim should be compiled with EXITFREE to avoid false warnings. ! # This will make testing about 10 times as slow. ! # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 --log-file=valgrind.$* SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ test7.out test8.out test9.out test10.out test11.out \ *** ../vim-7.2.216/src/version.c 2009-06-24 17:51:01.000000000 +0200 --- src/version.c 2009-06-24 18:07:07.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 217, /**/ -- A day without sunshine is like, well, night. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.218 --- To: vim-dev at vim.org Subject: Patch 7.2.218 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.218 Problem: Cannot build GTK with hangul_input feature. (Dominique Pelle) Solution: Adjuste #ifdef. (SungHyun Nam) Files: src/gui.c *** ../vim-7.2.217/src/gui.c 2009-06-16 16:01:34.000000000 +0200 --- src/gui.c 2009-06-24 17:45:01.000000000 +0200 *************** *** 959,965 **** guicolor_T fg, bg; if ( ! # ifdef HAVE_GTK2 preedit_get_status() # else im_get_status() --- 959,965 ---- guicolor_T fg, bg; if ( ! # if defined(HAVE_GTK2) && !defined(FEAT_HANGULIN) preedit_get_status() # else im_get_status() *** ../vim-7.2.217/src/version.c 2009-06-24 18:07:55.000000000 +0200 --- src/version.c 2009-06-24 18:31:06.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 218, /**/ -- The users that I support would double-click on a landmine to find out what happens. -- A system administrator /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.219 --- To: vim-dev at vim.org Subject: Patch 7.2.219 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.219 (extra) Problem: Photon GUI is outdated. Solution: Updates for QNX 6.4.0. (Sean Boudreau) Files: src/gui_photon.c *** ../vim-7.2.218/src/gui_photon.c 2007-05-10 20:23:35.000000000 +0200 --- src/gui_photon.c 2009-07-01 16:08:36.000000000 +0200 *************** *** 838,844 **** --- 838,849 ---- static void gui_ph_draw_start( void ) { + PhGC_t *gc; + + gc = PgGetGC(); PgSetRegion( PtWidgetRid( PtFindDisjoint( gui.vimTextArea ) ) ); + PgClearClippingsCx( gc ); + PgClearTranslationCx( gc ); PtWidgetOffset( gui.vimTextArea, &gui_ph_raw_offset ); PhTranslatePoint( &gui_ph_raw_offset, PtWidgetPos( gui.vimTextArea, NULL ) ); *************** *** 2970,2976 **** if( vim_font_name == NULL ) { /* Default font */ ! vim_font_name = "PC Term"; } if( STRCMP( vim_font_name, "*" ) == 0 ) --- 2975,2981 ---- if( vim_font_name == NULL ) { /* Default font */ ! vim_font_name = "PC Terminal"; } if( STRCMP( vim_font_name, "*" ) == 0 ) *** ../vim-7.2.218/src/version.c 2009-06-24 18:31:36.000000000 +0200 --- src/version.c 2009-07-01 16:11:34.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 219, /**/ -- "Oh, no! NOT the Spanish Inquisition!" "NOBODY expects the Spanish Inquisition!!!" -- Monty Python sketch -- "Oh, no! NOT another option!" "EVERYBODY expects another option!!!" -- Discussion in vim-dev mailing list -- /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.220 --- To: vim-dev at vim.org Subject: Patch 7.2.220 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.220 (after 7.2.215) Problem: a BufEnter autocommand that changes directory causes problems. (Ajit Thakkar) Solution: Disable autocommands when opening a hidden buffer in a window. Files: src/fileio.c *** ../vim-7.2.219/src/fileio.c 2009-06-24 17:31:27.000000000 +0200 --- src/fileio.c 2009-07-01 17:02:46.000000000 +0200 *************** *** 8441,8453 **** win_init_empty(aucmd_win); /* set cursor and topline to safe values */ #ifdef FEAT_WINDOWS ! /* Split the current window, put the aucmd_win in the upper half. */ make_snapshot(SNAP_AUCMD_IDX); save_ea = p_ea; p_ea = FALSE; (void)win_split_ins(0, WSP_TOP, aucmd_win, 0); (void)win_comp_pos(); /* recompute window positions */ p_ea = save_ea; #endif curwin = aucmd_win; } --- 8441,8456 ---- win_init_empty(aucmd_win); /* set cursor and topline to safe values */ #ifdef FEAT_WINDOWS ! /* Split the current window, put the aucmd_win in the upper half. ! * We don't want the BufEnter or WinEnter autocommands. */ ! block_autocmds(); make_snapshot(SNAP_AUCMD_IDX); save_ea = p_ea; p_ea = FALSE; (void)win_split_ins(0, WSP_TOP, aucmd_win, 0); (void)win_comp_pos(); /* recompute window positions */ p_ea = save_ea; + unblock_autocmds(); #endif curwin = aucmd_win; } *************** *** 8474,8480 **** --curbuf->b_nwindows; #ifdef FEAT_WINDOWS /* Find "aucmd_win", it can't be closed, but it may be in another tab ! * page. */ if (curwin != aucmd_win) { tabpage_T *tp; --- 8477,8484 ---- --curbuf->b_nwindows; #ifdef FEAT_WINDOWS /* Find "aucmd_win", it can't be closed, but it may be in another tab ! * page. Do not trigger autocommands here. */ ! block_autocmds(); if (curwin != aucmd_win) { tabpage_T *tp; *************** *** 8498,8503 **** --- 8502,8508 ---- last_status(FALSE); /* may need to remove last status line */ restore_snapshot(SNAP_AUCMD_IDX, FALSE); (void)win_comp_pos(); /* recompute window positions */ + unblock_autocmds(); if (win_valid(aco->save_curwin)) curwin = aco->save_curwin; *** ../vim-7.2.219/src/version.c 2009-07-01 16:12:54.000000000 +0200 --- src/version.c 2009-07-01 17:10:22.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 220, /**/ -- Microsoft is to software what McDonalds is to gourmet cooking /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.221 --- To: vim-dev at vim.org Subject: Patch 7.2.221 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.221 Problem: X cut_buffer0 text is used as-is, it may be in the wrong encoding. Solution: Convert between 'enc' and latin1. (James Vega) Files: src/gui_gtk_x11.c, src/message.c, src/ops.c, src/proto/ui.pro, src/ui.c *** ../vim-7.2.220/src/gui_gtk_x11.c 2009-06-16 15:23:07.000000000 +0200 --- src/gui_gtk_x11.c 2009-07-01 11:55:34.000000000 +0200 *************** *** 6717,6724 **** { GdkAtom target; unsigned i; - int nbytes; - char_u *buffer; time_t start; for (i = 0; i < N_SELECTION_TARGETS; ++i) --- 6717,6722 ---- *************** *** 6746,6767 **** } /* Final fallback position - use the X CUT_BUFFER0 store */ ! nbytes = 0; ! buffer = (char_u *)XFetchBuffer(GDK_WINDOW_XDISPLAY(gui.mainwin->window), ! &nbytes, 0); ! if (nbytes > 0) ! { ! /* Got something */ ! clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); ! if (p_verbose > 0) ! { ! verbose_enter(); ! smsg((char_u *)_("Used CUT_BUFFER0 instead of empty selection")); ! verbose_leave(); ! } ! } ! if (buffer != NULL) ! XFree(buffer); } /* --- 6744,6750 ---- } /* Final fallback position - use the X CUT_BUFFER0 store */ ! yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd); } /* *** ../vim-7.2.220/src/message.c 2009-05-17 13:30:58.000000000 +0200 --- src/message.c 2009-07-01 16:43:08.000000000 +0200 *************** *** 107,113 **** } #if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \ ! || defined(PROTO) /* * Like msg() but keep it silent when 'verbosefile' is set. */ --- 107,113 ---- } #if defined(FEAT_EVAL) || defined(FEAT_X11) || defined(USE_XSMP) \ ! || defined(FEAT_GUI_GTK) || defined(PROTO) /* * Like msg() but keep it silent when 'verbosefile' is set. */ *** ../vim-7.2.220/src/ops.c 2009-05-26 18:12:13.000000000 +0200 --- src/ops.c 2009-07-01 12:15:31.000000000 +0200 *************** *** 5591,5596 **** --- 5591,5619 ---- if (dpy != NULL && str != NULL && motion_type >= 0 && len < 1024*1024 && len > 0) { + #ifdef FEAT_MBYTE + /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from + * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit + * encoding conversion usually doesn't work, so keep the text as-is. + */ + if (has_mbyte) + { + char_u *conv_str = str; + vimconv_T vc; + + vc.vc_type = CONV_NONE; + if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK) + { + conv_str = string_convert(&vc, str, (int*)&len); + if (conv_str != NULL) + { + vim_free(str); + str = conv_str; + } + convert_setup(&vc, NULL, NULL); + } + } + #endif XStoreBuffer(dpy, (char *)str, (int)len, 0); XFlush(dpy); } *** ../vim-7.2.220/src/proto/ui.pro 2007-05-05 19:58:49.000000000 +0200 --- src/proto/ui.pro 2009-07-01 11:48:11.000000000 +0200 *************** *** 48,53 **** --- 48,54 ---- void open_app_context __ARGS((void)); void x11_setup_atoms __ARGS((Display *dpy)); void clip_x11_request_selection __ARGS((Widget myShell, Display *dpy, VimClipboard *cbd)); + void yank_cut_buffer0 __ARGS((Display *dpy, VimClipboard *cbd)); void clip_x11_lose_selection __ARGS((Widget myShell, VimClipboard *cbd)); int clip_x11_own_selection __ARGS((Widget myShell, VimClipboard *cbd)); void clip_x11_set_selection __ARGS((VimClipboard *cbd)); *** ../vim-7.2.220/src/ui.c 2009-05-17 13:30:58.000000000 +0200 --- src/ui.c 2009-07-01 15:44:07.000000000 +0200 *************** *** 2104,2111 **** Atom type; static int success; int i; - int nbytes = 0; - char_u *buffer; time_t start_time; int timed_out = FALSE; --- 2104,2109 ---- *************** *** 2185,2199 **** } /* Final fallback position - use the X CUT_BUFFER0 store */ ! buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0); ! if (nbytes > 0) ! { ! /* Got something */ ! clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); ! XFree((void *)buffer); ! if (p_verbose > 0) ! verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection")); ! } } static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *)); --- 2183,2189 ---- } /* Final fallback position - use the X CUT_BUFFER0 store */ ! yank_cut_buffer0(dpy, cbd); } static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *)); *************** *** 2369,2374 **** --- 2359,2418 ---- } #endif + #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \ + || defined(FEAT_GUI_GTK) || defined(PROTO) + /* + * Get the contents of the X CUT_BUFFER0 and put it in "cbd". + */ + void + yank_cut_buffer0(dpy, cbd) + Display *dpy; + VimClipboard *cbd; + { + int nbytes = 0; + char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0); + + if (nbytes > 0) + { + #ifdef FEAT_MBYTE + int done = FALSE; + + /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when + * using a multi-byte encoding. Conversion between two 8-bit + * character sets usually fails and the text might actually be in + * 'enc' anyway. */ + if (has_mbyte) + { + char_u *conv_buf = buffer; + vimconv_T vc; + + vc.vc_type = CONV_NONE; + if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK) + { + conv_buf = string_convert(&vc, buffer, &nbytes); + if (conv_buf != NULL) + { + clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd); + vim_free(conv_buf); + done = TRUE; + } + convert_setup(&vc, NULL, NULL); + } + } + if (!done) /* use the text without conversion */ + #endif + clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); + XFree((void *)buffer); + if (p_verbose > 0) + { + verbose_enter(); + verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection")); + verbose_leave(); + } + } + } + #endif + #if defined(FEAT_MOUSE) || defined(PROTO) /* *** ../vim-7.2.220/src/version.c 2009-07-01 17:11:40.000000000 +0200 --- src/version.c 2009-07-01 17:56:02.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 221, /**/ -- hundred-and-one symptoms of being an internet addict: 40. You tell the cab driver you live at http://123.elm.street/house/bluetrim.html 41. You actually try that 123.elm.street address. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.222 --- To: vim-dev at vim.org Subject: Patch 7.2.222 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.222 Problem: ":mksession" doesn't work properly with 'acd' set. Solution: Make it work. (Yakov Lerner) Files: src/ex_docmd.c *** ../vim-7.2.221/src/ex_docmd.c 2009-05-16 17:29:37.000000000 +0200 --- src/ex_docmd.c 2009-07-01 20:18:22.000000000 +0200 *************** *** 8686,8691 **** --- 8693,8700 ---- } #ifdef FEAT_SESSION + /* Use the short file name until ":lcd" is used. We also don't use the + * short file name when 'acd' is set, that is checked later. */ did_lcd = FALSE; /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */ *************** *** 10573,10578 **** --- 10582,10590 ---- if (buf->b_sfname != NULL && flagp == &ssop_flags && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR)) + #ifdef FEAT_AUTOCHDIR + && !p_acd + #endif && !did_lcd) name = buf->b_sfname; else *** ../vim-7.2.221/src/version.c 2009-07-01 18:04:30.000000000 +0200 --- src/version.c 2009-07-01 20:16:19.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 222, /**/ -- hundred-and-one symptoms of being an internet addict: 43. You tell the kids they can't use the computer because "Daddy's got work to do" and you don't even have a job. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.223 --- To: vim-dev at vim.org Subject: Patch 7.2.223 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.223 Problem: When a script is run with ":silent" it is not able to give warning messages. Solution: Add the ":unsilent" command. Files: runtime/doc/various.txt, src/ex_cmds.h, src/ex_docmd.c *** ../vim-7.2.222/runtime/doc/various.txt 2008-08-09 19:36:54.000000000 +0200 --- runtime/doc/various.txt 2009-07-09 15:52:54.000000000 +0200 *************** *** 508,513 **** --- 508,524 ---- messages though. Use ":silent" in the command itself to avoid that: ":silent menu .... :silent command". + *:uns* *:unsilent* + :uns[ilent] {command} Execute {command} not silently. Only makes a + difference when |:silent| was used to get to this + command. + Use this for giving a message even when |:silent| was + used. In this example |:silent| is used to avoid the + message about reading the file and |:unsilent| to be + able to list the first line of each file. > + :silent argdo unsilent echo expand('%') . ": " . getline(1) + < + *:verb* *:verbose* :[count]verb[ose] {command} Execute {command} with 'verbose' set to [count]. If *** ../vim-7.2.222/src/ex_cmds.h 2008-11-09 13:43:25.000000000 +0100 --- src/ex_cmds.h 2009-07-01 18:12:55.000000000 +0200 *************** *** 991,996 **** --- 991,998 ---- BANG|EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN), EX(CMD_unmenu, "unmenu", ex_menu, BANG|EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN), + EX(CMD_unsilent, "unsilent", ex_wrongmodifier, + NEEDARG|EXTRA|NOTRLCOM|SBOXOK|CMDWIN), EX(CMD_update, "update", ex_update, RANGE|WHOLEFOLD|BANG|FILE1|ARGOPT|DFLALL|TRLBAR), EX(CMD_vglobal, "vglobal", ex_global, *** ../vim-7.2.222/src/ex_docmd.c 2009-07-01 20:18:43.000000000 +0200 --- src/ex_docmd.c 2009-07-09 15:24:03.000000000 +0200 *************** *** 1677,1684 **** char_u *errormsg = NULL; /* error message */ exarg_T ea; /* Ex command arguments */ long verbose_save = -1; ! int save_msg_scroll = 0; ! int did_silent = 0; int did_esilent = 0; #ifdef HAVE_SANDBOX int did_sandbox = FALSE; --- 1677,1684 ---- char_u *errormsg = NULL; /* error message */ exarg_T ea; /* Ex command arguments */ long verbose_save = -1; ! int save_msg_scroll = msg_scroll; ! int save_msg_silent = -1; int did_esilent = 0; #ifdef HAVE_SANDBOX int did_sandbox = FALSE; *************** *** 1856,1864 **** } if (!checkforcmd(&ea.cmd, "silent", 3)) break; ! ++did_silent; ++msg_silent; - save_msg_scroll = msg_scroll; if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1])) { /* ":silent!", but not "silent !cmd" */ --- 1856,1864 ---- } if (!checkforcmd(&ea.cmd, "silent", 3)) break; ! if (save_msg_silent == -1) ! save_msg_silent = msg_silent; ++msg_silent; if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1])) { /* ":silent!", but not "silent !cmd" */ *************** *** 1886,1891 **** --- 1886,1898 ---- #endif continue; + case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3)) + break; + if (save_msg_silent == -1) + save_msg_silent = msg_silent; + msg_silent = 0; + continue; + case 'v': if (checkforcmd(&ea.cmd, "vertical", 4)) { #ifdef FEAT_VERTSPLIT *************** *** 2684,2696 **** cmdmod = save_cmdmod; ! if (did_silent > 0) { /* messages could be enabled for a serious error, need to check if the * counters don't become negative */ ! msg_silent -= did_silent; ! if (msg_silent < 0) ! msg_silent = 0; emsg_silent -= did_esilent; if (emsg_silent < 0) emsg_silent = 0; --- 2691,2702 ---- cmdmod = save_cmdmod; ! if (save_msg_silent != -1) { /* messages could be enabled for a serious error, need to check if the * counters don't become negative */ ! if (!did_emsg) ! msg_silent = save_msg_silent; emsg_silent -= did_esilent; if (emsg_silent < 0) emsg_silent = 0; *************** *** 2987,2992 **** --- 2993,2999 ---- {"silent", 3, FALSE}, {"tab", 3, TRUE}, {"topleft", 2, FALSE}, + {"unsilent", 3, FALSE}, {"verbose", 4, TRUE}, {"vertical", 4, FALSE}, }; *** ../vim-7.2.222/src/version.c 2009-07-01 20:18:43.000000000 +0200 --- src/version.c 2009-07-09 15:53:05.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 223, /**/ -- Q: How many legs does a giraffe have? A: Eight: two in front, two behind, two on the left and two on the right /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.224 --- To: vim-dev at vim.org Subject: Patch 7.2.224 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.224 Problem: Crash when using 'completefunc'. (Ingo Karkat) Solution: Disallow entering edit() recursively when doing completion. Files: src/edit.c *** ../vim-7.2.223/src/edit.c 2009-05-26 11:01:43.000000000 +0200 --- src/edit.c 2009-07-09 18:01:49.000000000 +0200 *************** *** 114,119 **** --- 114,123 ---- * FALSE the word to be completed must be located. */ static int compl_started = FALSE; + /* Set when doing something for completion that may call edit() recursively, + * which is not allowed. */ + static int compl_busy = FALSE; + static int compl_matches = 0; static char_u *compl_pattern = NULL; static int compl_direction = FORWARD; *************** *** 346,352 **** #ifdef FEAT_INS_EXPAND /* Don't allow recursive insert mode when busy with completion. */ ! if (compl_started || pum_visible()) { EMSG(_(e_secure)); return FALSE; --- 350,356 ---- #ifdef FEAT_INS_EXPAND /* Don't allow recursive insert mode when busy with completion. */ ! if (compl_started || compl_busy || pum_visible()) { EMSG(_(e_secure)); return FALSE; *************** *** 1340,1347 **** --- 1344,1353 ---- goto normalchar; docomplete: + compl_busy = TRUE; if (ins_complete(c) == FAIL) compl_cont_status = 0; + compl_busy = FALSE; break; #endif /* FEAT_INS_EXPAND */ *************** *** 3172,3177 **** --- 3178,3184 ---- vim_free(match); } while (compl_curr_match != NULL && compl_curr_match != compl_first_match); compl_first_match = compl_curr_match = NULL; + compl_shown_match = NULL; } static void *** ../vim-7.2.223/src/version.c 2009-07-09 15:55:34.000000000 +0200 --- src/version.c 2009-07-09 18:14:16.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 224, /**/ -- hundred-and-one symptoms of being an internet addict: 77. The phone company asks you to test drive their new PBX system /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.225 --- To: vim-dev at vim.org Subject: Patch 7.2.225 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.225 Problem: When using ":normal" a saved character may be executed. Solution: Also store old_char when saving typeahead. Files: src/getchar.c, src/structs.h *** ../vim-7.2.224/src/getchar.c 2009-02-22 23:42:08.000000000 +0100 --- src/getchar.c 2009-07-09 18:09:13.000000000 +0200 *************** *** 1309,1314 **** --- 1309,1317 ---- return OK; } + static int old_char = -1; /* character put back by vungetc() */ + static int old_mod_mask; /* mod_mask for ungotten character */ + #if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO) /* *************** *** 1323,1328 **** --- 1326,1335 ---- if (!tp->typebuf_valid) typebuf = tp->save_typebuf; + tp->old_char = old_char; + tp->old_mod_mask = old_mod_mask; + old_char = -1; + tp->save_stuffbuff = stuffbuff; stuffbuff.bh_first.b_next = NULL; # ifdef USE_INPUT_BUF *************** *** 1344,1349 **** --- 1351,1359 ---- typebuf = tp->save_typebuf; } + old_char = tp->old_char; + old_mod_mask = tp->old_mod_mask; + free_buff(&stuffbuff); stuffbuff = tp->save_stuffbuff; # ifdef USE_INPUT_BUF *************** *** 1499,1507 **** #define KL_PART_KEY -1 /* keylen value for incomplete key-code */ #define KL_PART_MAP -2 /* keylen value for incomplete mapping */ - static int old_char = -1; /* character put back by vungetc() */ - static int old_mod_mask; /* mod_mask for ungotten character */ - /* * Get the next input character. * Can return a special key or a multi-byte character. --- 1509,1514 ---- *** ../vim-7.2.224/src/structs.h 2009-06-16 16:01:34.000000000 +0200 --- src/structs.h 2009-07-09 18:09:20.000000000 +0200 *************** *** 882,887 **** --- 882,889 ---- { typebuf_T save_typebuf; int typebuf_valid; /* TRUE when save_typebuf valid */ + int old_char; + int old_mod_mask; struct buffheader save_stuffbuff; #ifdef USE_INPUT_BUF char_u *save_inputbuf; *** ../vim-7.2.224/src/version.c 2009-07-09 18:15:19.000000000 +0200 --- src/version.c 2009-07-09 18:21:56.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 225, /**/ -- hundred-and-one symptoms of being an internet addict: 78. You find yourself dialing IP numbers on the phone. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.226 --- To: vim-dev at vim.org Subject: Patch 7.2.226 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.226 Problem: ml_get error after deleting the last line. (Xavier de Gaye) Solution: When adjusting marks a callback may be invoked. Adjust the cursor position before invoking deleted_lines_mark(). Files: src/ex_cmds.c, src/ex_docmd.c, src/if_mzsch.c, src/if_python.c, src/if_perl.xs, src/misc1.c *** ../vim-7.2.225/src/ex_cmds.c 2009-05-17 13:30:58.000000000 +0200 --- src/ex_cmds.c 2009-07-09 12:56:51.000000000 +0200 *************** *** 4013,4018 **** --- 4013,4021 ---- break; ml_delete(eap->line1, FALSE); } + + /* make sure the cursor is not beyond the end of the file now */ + check_cursor_lnum(); deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); /* ":append" on the line above the deleted lines. */ *** ../vim-7.2.225/src/ex_docmd.c 2009-07-09 15:55:34.000000000 +0200 --- src/ex_docmd.c 2009-07-09 15:24:03.000000000 +0200 *************** *** 7845,7854 **** if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK) { ml_delete(lnum, FALSE); - deleted_lines_mark(lnum, 1L); if (curwin->w_cursor.lnum > 1 && curwin->w_cursor.lnum >= lnum) --curwin->w_cursor.lnum; } } redraw_curbuf_later(VALID); --- 7845,7854 ---- if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK) { ml_delete(lnum, FALSE); if (curwin->w_cursor.lnum > 1 && curwin->w_cursor.lnum >= lnum) --curwin->w_cursor.lnum; + deleted_lines_mark(lnum, 1L); } } redraw_curbuf_later(VALID); *** ../vim-7.2.225/src/if_mzsch.c 2009-06-24 17:51:01.000000000 +0200 --- src/if_mzsch.c 2009-07-09 12:59:17.000000000 +0200 *************** *** 2169,2177 **** curbuf = savebuf; raise_vim_exn(_("cannot delete line")); } - deleted_lines_mark((linenr_T)n, 1L); if (buf->buf == curwin->w_buffer) mz_fix_cursor(n, n + 1, -1); curbuf = savebuf; --- 2169,2177 ---- curbuf = savebuf; raise_vim_exn(_("cannot delete line")); } if (buf->buf == curwin->w_buffer) mz_fix_cursor(n, n + 1, -1); + deleted_lines_mark((linenr_T)n, 1L); curbuf = savebuf; *************** *** 2299,2307 **** curbuf = savebuf; raise_vim_exn(_("cannot delete line")); } - deleted_lines_mark((linenr_T)lo, (long)old_len); if (buf->buf == curwin->w_buffer) mz_fix_cursor(lo, hi, -old_len); } curbuf = savebuf; --- 2299,2307 ---- curbuf = savebuf; raise_vim_exn(_("cannot delete line")); } if (buf->buf == curwin->w_buffer) mz_fix_cursor(lo, hi, -old_len); + deleted_lines_mark((linenr_T)lo, (long)old_len); } curbuf = savebuf; *** ../vim-7.2.225/src/if_python.c 2009-05-21 23:25:38.000000000 +0200 --- src/if_python.c 2009-07-09 12:59:45.000000000 +0200 *************** *** 2497,2505 **** PyErr_SetVim(_("cannot delete line")); else { - deleted_lines_mark((linenr_T)n, 1L); if (buf == curwin->w_buffer) py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1); } curbuf = savebuf; --- 2497,2505 ---- PyErr_SetVim(_("cannot delete line")); else { if (buf == curwin->w_buffer) py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1); + deleted_lines_mark((linenr_T)n, 1L); } curbuf = savebuf; *************** *** 2596,2605 **** break; } } - deleted_lines_mark((linenr_T)lo, (long)i); - if (buf == curwin->w_buffer) py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n); } curbuf = savebuf; --- 2596,2604 ---- break; } } if (buf == curwin->w_buffer) py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n); + deleted_lines_mark((linenr_T)lo, (long)i); } curbuf = savebuf; *** ../vim-7.2.225/src/if_perl.xs 2009-06-16 16:01:34.000000000 +0200 --- src/if_perl.xs 2009-07-09 13:02:16.000000000 +0200 *************** *** 1233,1241 **** if (u_savedel(lnum, 1) == OK) { ml_delete(lnum, 0); deleted_lines_mark(lnum, 1L); - if (aco.save_curbuf == curbuf) - check_cursor(); } /* restore curwin/curbuf and a few other things */ --- 1235,1242 ---- if (u_savedel(lnum, 1) == OK) { ml_delete(lnum, 0); + check_cursor(); deleted_lines_mark(lnum, 1L); } /* restore curwin/curbuf and a few other things */ *** ../vim-7.2.225/src/misc1.c 2009-06-24 16:25:23.000000000 +0200 --- src/misc1.c 2009-07-09 13:00:59.000000000 +0200 *************** *** 2345,2356 **** int undo; /* if TRUE, prepare for undo */ { long n; if (nlines <= 0) return; /* save the deleted lines for undo */ ! if (undo && u_savedel(curwin->w_cursor.lnum, nlines) == FAIL) return; for (n = 0; n < nlines; ) --- 2345,2357 ---- int undo; /* if TRUE, prepare for undo */ { long n; + linenr_T first = curwin->w_cursor.lnum; if (nlines <= 0) return; /* save the deleted lines for undo */ ! if (undo && u_savedel(first, nlines) == FAIL) return; for (n = 0; n < nlines; ) *************** *** 2358,2375 **** if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ break; ! ml_delete(curwin->w_cursor.lnum, TRUE); ++n; /* If we delete the last line in the file, stop */ ! if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count) break; } - /* adjust marks, mark the buffer as changed and prepare for displaying */ - deleted_lines_mark(curwin->w_cursor.lnum, n); curwin->w_cursor.col = 0; check_cursor_lnum(); } int --- 2359,2379 ---- if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ break; ! ml_delete(first, TRUE); ++n; /* If we delete the last line in the file, stop */ ! if (first > curbuf->b_ml.ml_line_count) break; } + /* Correct the cursor position before calling deleted_lines_mark(), it may + * trigger a callback to display the cursor. */ curwin->w_cursor.col = 0; check_cursor_lnum(); + + /* adjust marks, mark the buffer as changed and prepare for displaying */ + deleted_lines_mark(first, n); } int *************** *** 2621,2626 **** --- 2625,2632 ---- /* * Like deleted_lines(), but adjust marks first. + * Make sure the cursor is on a valid line before calling, a GUI callback may + * be triggered to display the cursor. */ void deleted_lines_mark(lnum, count) *** ../vim-7.2.225/src/version.c 2009-07-09 18:24:24.000000000 +0200 --- src/version.c 2009-07-09 20:01:16.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 226, /**/ -- hundred-and-one symptoms of being an internet addict: 80. At parties, you introduce your spouse as your "service provider." /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.227 --- To: vim-dev at vim.org Subject: Patch 7.2.227 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.227 Problem: When using ":cd" in a script there is no way to track this. Solution: Display the directory when 'verbose' is 5 or higher. Files: src/ex_docmd.c *** ../vim-7.2.226/src/ex_docmd.c 2009-07-09 20:06:30.000000000 +0200 --- src/ex_docmd.c 2009-07-09 15:24:03.000000000 +0200 *************** *** 7964,7970 **** shorten_fnames(TRUE); /* Echo the new current directory if the command was typed. */ ! if (KeyTyped) ex_pwd(eap); } vim_free(tofree); --- 7964,7970 ---- shorten_fnames(TRUE); /* Echo the new current directory if the command was typed. */ ! if (KeyTyped || p_verbose >= 5) ex_pwd(eap); } vim_free(tofree); *** ../vim-7.2.226/src/version.c 2009-07-09 20:06:30.000000000 +0200 --- src/version.c 2009-07-09 20:13:13.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 227, /**/ -- hundred-and-one symptoms of being an internet addict: 83. Batteries in the TV remote now last for months. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.228 --- To: vim-dev at vim.org Subject: Patch 7.2.228 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.228 Problem: Cscope is limited to 8 connections. Solution: Allocated the connection array to handle any number of connections. (Dominique Pelle) Files: runtime/doc/if_cscop.txt, src/if_cscope.h, src/if_cscope.c *** ../vim-7.2.227/runtime/doc/if_cscop.txt 2009-03-18 14:30:46.000000000 +0100 --- runtime/doc/if_cscop.txt 2009-07-09 15:40:48.000000000 +0200 *************** *** 355,367 **** The DJGPP-built version from http://cscope.sourceforge.net is known to not work with Vim. ! There are a couple of hard-coded limitations: ! ! 1. The maximum number of cscope connections allowed is 8. Do you ! really need more? ! ! 2. Doing a |:tjump| when |:cstag| searches the tag files is not ! configurable (e.g., you can't do a tselect instead). ============================================================================== 6. Suggested usage *cscope-suggestions* --- 355,362 ---- The DJGPP-built version from http://cscope.sourceforge.net is known to not work with Vim. ! Hard-coded limitation: doing a |:tjump| when |:cstag| searches the tag files ! is not configurable (e.g., you can't do a tselect instead). ============================================================================== 6. Suggested usage *cscope-suggestions* *** ../vim-7.2.227/src/if_cscope.h 2008-08-25 04:35:13.000000000 +0200 --- src/if_cscope.h 2009-07-09 15:39:32.000000000 +0200 *************** *** 25,31 **** #define CSCOPE_SUCCESS 0 #define CSCOPE_FAILURE -1 - #define CSCOPE_MAX_CONNECTIONS 8 /* you actually need more? */ #define CSCOPE_DBFILE "cscope.out" #define CSCOPE_PROMPT ">> " --- 25,30 ---- *** ../vim-7.2.227/src/if_cscope.c 2009-05-16 17:29:37.000000000 +0200 --- src/if_cscope.c 2009-07-09 15:39:32.000000000 +0200 *************** *** 46,52 **** static int cs_find __ARGS((exarg_T *eap)); static int cs_find_common __ARGS((char *opt, char *pat, int, int, int)); static int cs_help __ARGS((exarg_T *eap)); - static void cs_init __ARGS((void)); static void clear_csinfo __ARGS((int i)); static int cs_insert_filelist __ARGS((char *, char *, char *, struct stat *)); --- 46,51 ---- *************** *** 66,72 **** static int cs_show __ARGS((exarg_T *eap)); ! static csinfo_T csinfo[CSCOPE_MAX_CONNECTIONS]; static int eap_arg_len; /* length of eap->arg, set in cs_lookup_cmd() */ static cscmd_T cs_cmds[] = --- 65,74 ---- static int cs_show __ARGS((exarg_T *eap)); ! static csinfo_T * csinfo = NULL; ! static int csinfo_size = 0; /* number of items allocated in ! csinfo[] */ ! static int eap_arg_len; /* length of eap->arg, set in cs_lookup_cmd() */ static cscmd_T cs_cmds[] = *************** *** 144,166 **** } case EXP_CSCOPE_KILL: { ! static char_u connection[2]; /* ":cscope kill" accepts connection numbers or partial names of * the pathname of the cscope database as argument. Only complete * with connection numbers. -1 can also be used to kill all * connections. */ ! for (i = 0, current_idx = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname == NULL) continue; if (current_idx++ == idx) { ! /* Connection number fits in one character since ! * CSCOPE_MAX_CONNECTIONS is < 10 */ ! connection[0] = i + '0'; ! connection[1] = NUL; ! return connection; } } return (current_idx == idx && idx > 0) ? (char_u *)"-1" : NULL; --- 146,165 ---- } case EXP_CSCOPE_KILL: { ! static char connection[5]; /* ":cscope kill" accepts connection numbers or partial names of * the pathname of the cscope database as argument. Only complete * with connection numbers. -1 can also be used to kill all * connections. */ ! for (i = 0, current_idx = 0; i < csinfo_size; i++) { if (csinfo[i].fname == NULL) continue; if (current_idx++ == idx) { ! vim_snprintf(connection, sizeof(connection), "%d", i); ! return (char_u *)connection; } } return (current_idx == idx && idx > 0) ? (char_u *)"-1" : NULL; *************** *** 223,229 **** { cscmd_T *cmdp; - cs_init(); if ((cmdp = cs_lookup_cmd(eap)) == NULL) { cs_help(eap); --- 222,227 ---- *************** *** 284,291 **** { int ret = FALSE; - cs_init(); - if (*eap->arg == NUL) { (void)EMSG(_("E562: Usage: cstag ")); --- 282,287 ---- *************** *** 441,447 **** if (num < 0 || num > 4 || (num > 0 && !dbpath)) return FALSE; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (!csinfo[i].fname) continue; --- 437,443 ---- if (num < 0 || num > 4 || (num > 0 && !dbpath)) return FALSE; ! for (i = 0; i < csinfo_size; i++) { if (!csinfo[i].fname) continue; *************** *** 684,690 **** short i; short cnt = 0; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname != NULL) cnt++; --- 680,686 ---- short i; short cnt = 0; ! for (i = 0; i < csinfo_size; i++) { if (csinfo[i].fname != NULL) cnt++; *************** *** 1112,1118 **** { int i; char *cmd; ! int nummatches[CSCOPE_MAX_CONNECTIONS], totmatches; #ifdef FEAT_QUICKFIX char cmdletter; char *qfpos; --- 1108,1115 ---- { int i; char *cmd; ! int *nummatches; ! int totmatches; #ifdef FEAT_QUICKFIX char cmdletter; char *qfpos; *************** *** 1123,1135 **** if (cmd == NULL) return FALSE; /* send query to all open connections, then count the total number * of matches so we can alloc matchesp all in one swell foop */ ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) nummatches[i] = 0; totmatches = 0; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname == NULL || csinfo[i].to_fp == NULL) continue; --- 1120,1136 ---- if (cmd == NULL) return FALSE; + nummatches = (int *)alloc(sizeof(int)*csinfo_size); + if (nummatches == NULL) + return FALSE; + /* send query to all open connections, then count the total number * of matches so we can alloc matchesp all in one swell foop */ ! for (i = 0; i < csinfo_size; i++) nummatches[i] = 0; totmatches = 0; ! for (i = 0; i < csinfo_size; i++) { if (csinfo[i].fname == NULL || csinfo[i].to_fp == NULL) continue; *************** *** 1154,1160 **** --- 1155,1164 ---- char *buf; if (!verbose) + { + vim_free(nummatches); return FALSE; + } buf = (char *)alloc((unsigned)(strlen(opt) + strlen(pat) + strlen(nf))); if (buf == NULL) *************** *** 1165,1170 **** --- 1169,1175 ---- (void)EMSG(buf); vim_free(buf); } + vim_free(nummatches); return FALSE; } *************** *** 1217,1222 **** --- 1222,1228 ---- (void)EMSG(buf); vim_free(buf); } + vim_free(nummatches); return FALSE; } } *************** *** 1264,1269 **** --- 1270,1276 ---- } mch_remove(tmp); vim_free(tmp); + vim_free(nummatches); return TRUE; } else *************** *** 1275,1280 **** --- 1282,1288 ---- /* read output */ cs_fill_results((char *)pat, totmatches, nummatches, &matches, &contexts, &matched); + vim_free(nummatches); if (matches == NULL) return FALSE; *************** *** 1328,1353 **** } /* cs_help */ - /* - * PRIVATE: cs_init - * - * initialize cscope structure if not already - */ - static void - cs_init() - { - short i; - static int init_already = FALSE; - - if (init_already) - return; - - for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) - clear_csinfo(i); - - init_already = TRUE; - } /* cs_init */ - static void clear_csinfo(i) int i; --- 1336,1341 ---- *************** *** 1444,1450 **** #endif i = -1; /* can be set to the index of an empty item in csinfo */ ! for (j = 0; j < CSCOPE_MAX_CONNECTIONS; j++) { if (csinfo[j].fname != NULL #if defined(UNIX) --- 1432,1438 ---- #endif i = -1; /* can be set to the index of an empty item in csinfo */ ! for (j = 0; j < csinfo_size; j++) { if (csinfo[j].fname != NULL #if defined(UNIX) *************** *** 1471,1479 **** if (i == -1) { ! if (p_csverbose) ! (void)EMSG(_("E569: maximum number of cscope connections reached")); ! return -1; } if ((csinfo[i].fname = (char *)alloc((unsigned)strlen(fname)+1)) == NULL) --- 1459,1483 ---- if (i == -1) { ! i = csinfo_size; ! if (csinfo_size == 0) ! { ! /* First time allocation: allocate only 1 connection. It should ! * be enough for most users. If more is needed, csinfo will be ! * reallocated. */ ! csinfo_size = 1; ! csinfo = (csinfo_T *)alloc_clear(sizeof(csinfo_T)); ! } ! else ! { ! /* Reallocate space for more connections. */ ! csinfo_size *= 2; ! csinfo = vim_realloc(csinfo, sizeof(csinfo_T)*csinfo_size); ! } ! if (csinfo == NULL) ! return -1; ! for (j = csinfo_size/2; j < csinfo_size; j++) ! clear_csinfo(j); } if ((csinfo[i].fname = (char *)alloc((unsigned)strlen(fname)+1)) == NULL) *************** *** 1580,1594 **** /* It must be part of a name. We will try to find a match * within all the names in the csinfo data structure */ ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname != NULL && strstr(csinfo[i].fname, stok)) break; } } ! if ((i >= CSCOPE_MAX_CONNECTIONS || i < -1 || csinfo[i].fname == NULL) ! && i != -1) { if (p_csverbose) (void)EMSG2(_("E261: cscope connection %s not found"), stok); --- 1584,1597 ---- /* It must be part of a name. We will try to find a match * within all the names in the csinfo data structure */ ! for (i = 0; i < csinfo_size; i++) { if (csinfo[i].fname != NULL && strstr(csinfo[i].fname, stok)) break; } } ! if ((i != -1) && (i >= csinfo_size || i < -1 || csinfo[i].fname == NULL)) { if (p_csverbose) (void)EMSG2(_("E261: cscope connection %s not found"), stok); *************** *** 1597,1603 **** { if (i == -1) { ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname) cs_kill_execute(i, csinfo[i].fname); --- 1600,1606 ---- { if (i == -1) { ! for (i = 0; i < csinfo_size; i++) { if (csinfo[i].fname) cs_kill_execute(i, csinfo[i].fname); *************** *** 1857,1863 **** if (buf == NULL) return; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (nummatches_a[i] < 1) continue; --- 1860,1866 ---- if (buf == NULL) return; ! for (i = 0; i < csinfo_size; i++) { if (nummatches_a[i] < 1) continue; *************** *** 1929,1935 **** if ((cntxts = (char **)alloc(sizeof(char *) * totmatches)) == NULL) goto parse_out; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (nummatches_a[i] < 1) continue; --- 1932,1938 ---- if ((cntxts = (char **)alloc(sizeof(char *) * totmatches)) == NULL) goto parse_out; ! for (i = 0; i < csinfo_size; i++) { if (nummatches_a[i] < 1) continue; *************** *** 2383,2392 **** int i; char buf[20]; /* for sprintf " (#%d)" */ /* malloc our db and ppath list */ ! dblist = (char **)alloc(CSCOPE_MAX_CONNECTIONS * sizeof(char *)); ! pplist = (char **)alloc(CSCOPE_MAX_CONNECTIONS * sizeof(char *)); ! fllist = (char **)alloc(CSCOPE_MAX_CONNECTIONS * sizeof(char *)); if (dblist == NULL || pplist == NULL || fllist == NULL) { vim_free(dblist); --- 2386,2398 ---- int i; char buf[20]; /* for sprintf " (#%d)" */ + if (csinfo_size == 0) + return CSCOPE_SUCCESS; + /* malloc our db and ppath list */ ! dblist = (char **)alloc(csinfo_size * sizeof(char *)); ! pplist = (char **)alloc(csinfo_size * sizeof(char *)); ! fllist = (char **)alloc(csinfo_size * sizeof(char *)); if (dblist == NULL || pplist == NULL || fllist == NULL) { vim_free(dblist); *************** *** 2395,2401 **** return CSCOPE_FAILURE; } ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { dblist[i] = csinfo[i].fname; pplist[i] = csinfo[i].ppath; --- 2401,2407 ---- return CSCOPE_FAILURE; } ! for (i = 0; i < csinfo_size; i++) { dblist[i] = csinfo[i].fname; pplist[i] = csinfo[i].ppath; *************** *** 2405,2411 **** } /* rebuild the cscope connection list */ ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (dblist[i] != NULL) { --- 2411,2417 ---- } /* rebuild the cscope connection list */ ! for (i = 0; i < csinfo_size; i++) { if (dblist[i] != NULL) { *************** *** 2502,2508 **** MSG_PUTS_ATTR( _(" # pid database name prepend path\n"), hl_attr(HLF_T)); ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) { if (csinfo[i].fname == NULL) continue; --- 2508,2514 ---- MSG_PUTS_ATTR( _(" # pid database name prepend path\n"), hl_attr(HLF_T)); ! for (i = 0; i < csinfo_size; i++) { if (csinfo[i].fname == NULL) continue; *************** *** 2531,2538 **** { int i; ! for (i = 0; i < CSCOPE_MAX_CONNECTIONS; i++) cs_release_csp(i, TRUE); } #endif /* FEAT_CSCOPE */ --- 2537,2546 ---- { int i; ! for (i = 0; i < csinfo_size; i++) cs_release_csp(i, TRUE); + vim_free(csinfo); + csinfo_size = 0; } #endif /* FEAT_CSCOPE */ *** ../vim-7.2.227/src/version.c 2009-07-09 20:13:59.000000000 +0200 --- src/version.c 2009-07-09 21:21:48.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 228, /**/ -- hundred-and-one symptoms of being an internet addict: 84. Books in your bookcase bear the names Bongo, WinSock and Inside OLE /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.229 --- To: vim-dev at vim.org Subject: Patch 7.2.229 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.229 Problem: Warning for shadowed variable. Solution: Rename "wait" to "wait_time". Files: src/os_unix.c *** ../vim-7.2.228/src/os_unix.c 2009-06-16 15:12:11.000000000 +0200 --- src/os_unix.c 2009-07-09 16:24:14.000000000 +0200 *************** *** 1138,1147 **** * to happen). */ { ! long wait; ! for (wait = 0; !sigcont_received && wait <= 3L; wait++) /* Loop is not entered most of the time */ ! mch_delay(wait, FALSE); } # endif --- 1138,1147 ---- * to happen). */ { ! long wait_time; ! for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) /* Loop is not entered most of the time */ ! mch_delay(wait_time, FALSE); } # endif *** ../vim-7.2.228/src/version.c 2009-07-09 21:22:36.000000000 +0200 --- src/version.c 2009-07-14 12:18:21.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 229, /**/ -- >From "know your smileys": :-) Funny |-) Funny Oriental (-: Funny Australian /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.230 --- To: vim-dev at vim.org Subject: Patch 7.2.230 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.230 Problem: A few old lint-style ARGUSED comments. Solution: Change to the new UNUSED style. Files: src/getchar.c *** ../vim-7.2.229/src/getchar.c 2009-07-09 18:24:24.000000000 +0200 --- src/getchar.c 2009-07-09 18:09:13.000000000 +0200 *************** *** 3708,3718 **** * Clear all mappings or abbreviations. * 'abbr' should be FALSE for mappings, TRUE for abbreviations. */ - /*ARGSUSED*/ void map_clear(cmdp, arg, forceit, abbr) char_u *cmdp; ! char_u *arg; int forceit; int abbr; { --- 3708,3717 ---- * Clear all mappings or abbreviations. * 'abbr' should be FALSE for mappings, TRUE for abbreviations. */ void map_clear(cmdp, arg, forceit, abbr) char_u *cmdp; ! char_u *arg UNUSED; int forceit; int abbr; { *************** *** 3741,3753 **** /* * Clear all mappings in "mode". */ - /*ARGSUSED*/ void map_clear_int(buf, mode, local, abbr) ! buf_T *buf; /* buffer for local mappings */ ! int mode; /* mode in which to delete */ ! int local; /* TRUE for buffer-local mappings */ ! int abbr; /* TRUE for abbreviations */ { mapblock_T *mp, **mpp; int hash; --- 3740,3751 ---- /* * Clear all mappings in "mode". */ void map_clear_int(buf, mode, local, abbr) ! buf_T *buf UNUSED; /* buffer for local mappings */ ! int mode; /* mode in which to delete */ ! int local UNUSED; /* TRUE for buffer-local mappings */ ! int abbr; /* TRUE for abbreviations */ { mapblock_T *mp, **mpp; int hash; *** ../vim-7.2.229/src/version.c 2009-07-14 12:20:28.000000000 +0200 --- src/version.c 2009-07-14 13:44:05.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 230, /**/ -- >From "know your smileys": :~) A man with a tape recorder up his nose /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.231 --- To: vim-dev at vim.org Subject: Patch 7.2.231 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.231 Problem: Warning for unreacheable code. Solution: Add #ifdef. Files: src/if_perl.xs *** ../vim-7.2.230/src/if_perl.xs 2009-07-09 20:06:30.000000000 +0200 --- src/if_perl.xs 2009-07-09 13:02:16.000000000 +0200 *************** *** 720,728 **** --- 720,730 ---- #ifdef HAVE_SANDBOX if (sandbox) { + # ifndef MAKE_TEST /* avoid a warning for unreachable code */ if ((safe = perl_get_sv( "VIM::safe", FALSE )) == NULL || !SvTRUE(safe)) EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module")); else + # endif { PUSHMARK(SP); XPUSHs(safe); *** ../vim-7.2.230/src/version.c 2009-07-14 13:44:43.000000000 +0200 --- src/version.c 2009-07-14 16:04:07.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 231, /**/ -- >From "know your smileys": ~#:-( I just washed my hair, and I can't do nuthin' with it. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.232 --- To: vim-dev at vim.org Subject: Patch 7.2.232 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.232 Problem: Cannot debug problems with being in a wrong directory. Solution: When 'verbose' is 5 or higher report directory changes. Files: src/os_unix.c, src/os_unix.h, src/proto/os_unix.pro *** ../vim-7.2.231/src/os_unix.c 2009-07-14 12:20:28.000000000 +0200 --- src/os_unix.c 2009-07-14 17:13:15.000000000 +0200 *************** *** 319,324 **** --- 319,341 ---- {-1, "Unknown!", FALSE} }; + int + mch_chdir(path) + char *path; + { + if (p_verbose >= 5) + { + verbose_enter(); + smsg((char_u *)"chdir(%s)", path); + verbose_leave(); + } + # ifdef VMS + return chdir(vms_fixfilename(path)); + # else + return chdir(path); + # endif + } + /* * Write s[len] to the screen. */ *************** *** 2424,2429 **** --- 2441,2452 ---- #ifdef HAVE_FCHDIR if (fd >= 0) { + if (p_verbose >= 5) + { + verbose_enter(); + MSG("fchdir() to previous dir"); + verbose_leave(); + } l = fchdir(fd); close(fd); } *** ../vim-7.2.231/src/os_unix.h 2009-05-16 16:36:25.000000000 +0200 --- src/os_unix.h 2009-07-14 16:55:05.000000000 +0200 *************** *** 482,492 **** # else int mch_rename __ARGS((const char *src, const char *dest)); # endif - # ifdef VMS - # define mch_chdir(s) chdir(vms_fixfilename(s)) - # else - # define mch_chdir(s) chdir(s) - # endif # ifndef VMS # ifdef __MVS__ /* on OS390 Unix getenv() doesn't return a pointer to persistent --- 482,487 ---- *** ../vim-7.2.231/src/proto/os_unix.pro 2008-06-24 23:58:57.000000000 +0200 --- src/proto/os_unix.pro 2009-07-14 16:58:08.000000000 +0200 *************** *** 1,4 **** --- 1,5 ---- /* os_unix.c */ + int mch_chdir __ARGS((char *path)); void mch_write __ARGS((char_u *s, int len)); int mch_inchar __ARGS((char_u *buf, int maxlen, long wtime, int tb_change_cnt)); int mch_char_avail __ARGS((void)); *** ../vim-7.2.231/src/version.c 2009-07-14 16:05:14.000000000 +0200 --- src/version.c 2009-07-14 17:37:15.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 232, /**/ -- >From "know your smileys": O:-) Saint /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.233 --- To: vim-dev at vim.org Subject: Patch 7.2.233 (extra) Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.233 (extra part of 7.2.232) Problem: Cannot debug problems with being in a wrong directory. Solution: When 'verbose' is 5 or higher report directory changes. Files: src/os_msdos.c, src/os_mswin.c, src/os_riscos.c, src/os_mac.h *** ../vim-7.2.232/src/os_msdos.c 2008-06-24 23:30:18.000000000 +0200 --- src/os_msdos.c 2009-07-14 16:50:57.000000000 +0200 *************** *** 2039,2044 **** --- 2039,2050 ---- { if (path[0] == NUL) /* just checking... */ return 0; + if (p_verbose >= 5) + { + verbose_enter(); + smsg((char_u *)"chdir(%s)", path); + verbose_leave(); + } if (path[1] == ':') /* has a drive name */ { if (change_drive(TOLOWER_ASC(path[0]) - 'a' + 1)) *** ../vim-7.2.232/src/os_mswin.c 2009-05-14 22:00:37.000000000 +0200 --- src/os_mswin.c 2009-07-14 16:53:03.000000000 +0200 *************** *** 653,658 **** --- 653,664 ---- if (path[0] == NUL) /* just checking... */ return -1; + if (p_verbose >= 5) + { + verbose_enter(); + smsg((char_u *)"chdir(%s)", path); + verbose_leave(); + } if (isalpha(path[0]) && path[1] == ':') /* has a drive name */ { /* If we can change to the drive, skip that part of the path. If we *** ../vim-7.2.232/src/os_riscos.c 2006-03-07 23:25:50.000000000 +0100 --- src/os_riscos.c 2009-07-14 16:53:35.000000000 +0200 *************** *** 1203,1208 **** --- 1203,1214 ---- int retval; char_u *new_dir; + if (p_verbose >= 5) + { + verbose_enter(); + smsg((char_u *)"chdir(%s)", dir); + verbose_leave(); + } length = strlen(dir); if (dir[length - 1] != '.') return chdir(dir); /* No trailing dots - nothing to do. */ *** ../vim-7.2.232/src/os_mac.h 2009-06-24 16:41:01.000000000 +0200 --- src/os_mac.h 2009-07-14 16:54:33.000000000 +0200 *************** *** 291,297 **** # define HAVE_SETENV # define HAVE_RENAME # endif - # define mch_chdir(s) chdir(s) #endif #if defined(MACOS_X) && !defined(HAVE_CONFIG_H) --- 291,296 ---- *** ../vim-7.2.232/src/version.c 2009-07-14 17:38:51.000000000 +0200 --- src/version.c 2009-07-14 18:35:30.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 233, /**/ -- >From "know your smileys": :-O>-o Smiley American tourist (note big mouth and camera) /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.234 --- To: vim-dev at vim.org Subject: Patch 7.2.234 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.234 Problem: It is not possible to ignore file names without a suffix. Solution: Use an empty entry in 'suffixes' for file names without a dot. Files: runtime/doc/cmdline.txt, src/misc1.c *** ../vim-7.2.233/runtime/doc/cmdline.txt 2008-11-09 13:43:25.000000000 +0100 --- runtime/doc/cmdline.txt 2009-07-14 13:35:56.000000000 +0200 *************** *** 441,453 **** those files with an extension that is in the 'suffixes' option are ignored. The default is ".bak,~,.o,.h,.info,.swp,.obj", which means that files ending in ".bak", "~", ".o", ".h", ".info", ".swp" and ".obj" are sometimes ignored. ! It is impossible to ignore suffixes with two dots. Examples: pattern: files: match: ~ test* test.c test.h test.o test.c test* test.h test.o test.h and test.o test* test.i test.h test.c test.i and test.c If there is more than one matching file (after ignoring the ones matching the 'suffixes' option) the first file name is inserted. You can see that there is only one match when you type 'wildchar' twice and the completed --- 439,458 ---- those files with an extension that is in the 'suffixes' option are ignored. The default is ".bak,~,.o,.h,.info,.swp,.obj", which means that files ending in ".bak", "~", ".o", ".h", ".info", ".swp" and ".obj" are sometimes ignored. ! ! An empty entry, two consecutive commas, match a file name that does not ! contain a ".", thus has no suffix. This is useful to ignore "prog" and prefer ! "prog.c". ! ! Examples: pattern: files: match: ~ test* test.c test.h test.o test.c test* test.h test.o test.h and test.o test* test.i test.h test.c test.i and test.c + It is impossible to ignore suffixes with two dots. + If there is more than one matching file (after ignoring the ones matching the 'suffixes' option) the first file name is inserted. You can see that there is only one match when you type 'wildchar' twice and the completed *** ../vim-7.2.233/src/misc1.c 2009-07-09 20:06:30.000000000 +0200 --- src/misc1.c 2009-07-14 15:51:55.000000000 +0200 *************** *** 8533,8543 **** for (setsuf = p_su; *setsuf; ) { setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,"); ! if (fnamelen >= setsuflen ! && fnamencmp(suf_buf, fname + fnamelen - setsuflen, ! (size_t)setsuflen) == 0) ! break; ! setsuflen = 0; } return (setsuflen != 0); } --- 8534,8558 ---- for (setsuf = p_su; *setsuf; ) { setsuflen = copy_option_part(&setsuf, suf_buf, MAXSUFLEN, ".,"); ! if (setsuflen == 0) ! { ! char_u *tail = gettail(fname); ! ! /* empty entry: match name without a '.' */ ! if (vim_strchr(tail, '.') == NULL) ! { ! setsuflen = 1; ! break; ! } ! } ! else ! { ! if (fnamelen >= setsuflen ! && fnamencmp(suf_buf, fname + fnamelen - setsuflen, ! (size_t)setsuflen) == 0) ! break; ! setsuflen = 0; ! } } return (setsuflen != 0); } *** ../vim-7.2.233/src/version.c 2009-07-14 18:38:09.000000000 +0200 --- src/version.c 2009-07-14 21:38:30.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 234, /**/ -- How many light bulbs does it take to change a person? /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.235 --- To: vim-dev at vim.org Subject: Patch 7.2.235 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.235 Problem: Using CTRL-O z= in Insert mode has a delay before redrawing. Solution: Reset msg_didout and msg_scroll. Files: src/misc1.c, src/spell.c *** ../vim-7.2.234/src/misc1.c 2009-07-14 21:40:30.000000000 +0200 --- src/misc1.c 2009-07-14 15:51:55.000000000 +0200 *************** *** 3276,3281 **** --- 3276,3282 ---- cmdline_row = msg_row - 1; need_wait_return = FALSE; msg_didany = FALSE; + msg_didout = FALSE; } else cmdline_row = save_cmdline_row; *** ../vim-7.2.234/src/spell.c 2009-05-17 13:30:58.000000000 +0200 --- src/spell.c 2009-07-14 15:57:55.000000000 +0200 *************** *** 10252,10257 **** --- 10252,10258 ---- int limit; int selected = count; int badlen = 0; + int msg_scroll_save = msg_scroll; if (no_spell_checking(curwin)) return; *************** *** 10416,10422 **** selected = prompt_for_number(&mouse_used); if (mouse_used) selected -= lines_left; ! lines_left = Rows; /* avoid more prompt */ } if (selected > 0 && selected <= sug.su_ga.ga_len && u_save_cursor() == OK) --- 10417,10425 ---- selected = prompt_for_number(&mouse_used); if (mouse_used) selected -= lines_left; ! lines_left = Rows; /* avoid more prompt */ ! /* don't delay for 'smd' in normal_cmd() */ ! msg_scroll = msg_scroll_save; } if (selected > 0 && selected <= sug.su_ga.ga_len && u_save_cursor() == OK) *************** *** 10441,10447 **** } /* Replace the word. */ ! p = alloc((unsigned)STRLEN(line) - stp->st_orglen + stp->st_wordlen + 1); if (p != NULL) { c = (int)(sug.su_badptr - line); --- 10444,10451 ---- } /* Replace the word. */ ! p = alloc((unsigned)STRLEN(line) - stp->st_orglen ! + stp->st_wordlen + 1); if (p != NULL) { c = (int)(sug.su_badptr - line); *** ../vim-7.2.234/src/version.c 2009-07-14 21:40:30.000000000 +0200 --- src/version.c 2009-07-22 11:00:34.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 235, /**/ -- >From "know your smileys": |-( Contact lenses, but has lost them /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.236 --- To: vim-dev at vim.org Subject: Patch 7.2.236 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.236 Problem: Mac: Compiling with Ruby doesn't always work. Solution: In configure filter out the --arch argument (Bjorn Winckler) Files: src/configure.in, src/auto/configure *** ../vim-7.2.235/src/configure.in 2009-05-26 22:58:43.000000000 +0200 --- src/configure.in 2009-07-14 16:09:34.000000000 +0200 *************** *** 984,990 **** fi rubyldflags=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["LDFLAGS"]]'` if test "X$rubyldflags" != "X"; then ! LDFLAGS="$rubyldflags $LDFLAGS" fi RUBY_SRC="if_ruby.c" RUBY_OBJ="objects/if_ruby.o" --- 984,996 ---- fi rubyldflags=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["LDFLAGS"]]'` if test "X$rubyldflags" != "X"; then ! dnl Ruby on Mac OS X 10.5 adds "-arch" flags but these should only ! dnl be included if requested by passing --with-mac-arch to ! dnl configure, so strip these flags first (if present) ! rubyldflags=`echo "$rubyldflags" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//'` ! if test "X$rubyldflags" != "X"; then ! LDFLAGS="$rubyldflags $LDFLAGS" ! fi fi RUBY_SRC="if_ruby.c" RUBY_OBJ="objects/if_ruby.o" *** ../vim-7.2.235/src/auto/configure 2009-05-26 22:58:43.000000000 +0200 --- src/auto/configure 2009-07-14 16:11:58.000000000 +0200 *************** *** 5780,5786 **** fi rubyldflags=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG["LDFLAGS"]'` if test "X$rubyldflags" != "X"; then ! LDFLAGS="$rubyldflags $LDFLAGS" fi RUBY_SRC="if_ruby.c" RUBY_OBJ="objects/if_ruby.o" --- 5780,5789 ---- fi rubyldflags=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG["LDFLAGS"]'` if test "X$rubyldflags" != "X"; then ! rubyldflags=`echo "$rubyldflags" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//'` ! if test "X$rubyldflags" != "X"; then ! LDFLAGS="$rubyldflags $LDFLAGS" ! fi fi RUBY_SRC="if_ruby.c" RUBY_OBJ="objects/if_ruby.o" *** ../vim-7.2.235/src/version.c 2009-07-22 11:03:38.000000000 +0200 --- src/version.c 2009-07-22 11:14:38.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 236, /**/ -- >From "know your smileys": <|-) Chinese <|-( Chinese and doesn't like these kind of jokes /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.237 --- To: vim-dev at vim.org Subject: Patch 7.2.237 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.237 Problem: Crash on exit when window icon not set. Solution: Copy terminal name when using it for the icon name. Files: src/os_unix.c *** ../vim-7.2.236/src/os_unix.c 2009-07-14 17:38:51.000000000 +0200 --- src/os_unix.c 2009-07-14 18:30:04.000000000 +0200 *************** *** 1734,1742 **** if (oldicon == NULL && !test_only) { if (STRNCMP(T_NAME, "builtin_", 8) == 0) ! oldicon = T_NAME + 8; else ! oldicon = T_NAME; } return retval; --- 1734,1742 ---- if (oldicon == NULL && !test_only) { if (STRNCMP(T_NAME, "builtin_", 8) == 0) ! oldicon = vim_strsave(T_NAME + 8); else ! oldicon = vim_strsave(T_NAME); } return retval; *************** *** 1939,1947 **** if (!test_only) { if (STRNCMP(T_NAME, "builtin_", 8) == 0) ! oldicon = T_NAME + 8; else ! oldicon = T_NAME; } return FALSE; } --- 1939,1947 ---- if (!test_only) { if (STRNCMP(T_NAME, "builtin_", 8) == 0) ! oldicon = vim_strsave(T_NAME + 8); else ! oldicon = vim_strsave(T_NAME); } return FALSE; } *** ../vim-7.2.236/src/version.c 2009-07-22 11:16:54.000000000 +0200 --- src/version.c 2009-07-22 13:26:30.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 237, /**/ -- Common sense is what tells you that the world is flat. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.238 --- To: vim-dev at vim.org Subject: Patch 7.2.238 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.238 Problem: Leaking memory when setting term to "builtin_dumb". Solution: Free memory when resetting term option t_Co. Files: src/option.c, src/proto/option.pro, src/term.c *** ../vim-7.2.237/src/option.c 2009-06-16 17:50:56.000000000 +0200 --- src/option.c 2009-07-22 12:49:19.000000000 +0200 *************** *** 403,410 **** #define P_NUM 0x02 /* the option is numeric */ #define P_STRING 0x04 /* the option is a string */ #define P_ALLOCED 0x08 /* the string option is in allocated memory, ! must use vim_free() when assigning new ! value. Not set if default is the same. */ #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can never be used for local or hidden options! */ #define P_NODEFAULT 0x40 /* don't set to default value */ --- 403,411 ---- #define P_NUM 0x02 /* the option is numeric */ #define P_STRING 0x04 /* the option is a string */ #define P_ALLOCED 0x08 /* the string option is in allocated memory, ! must use free_string_option() when ! assigning new value. Not set if default is ! the same. */ #define P_EXPAND 0x10 /* environment expansion. NOTE: P_EXPAND can never be used for local or hidden options! */ #define P_NODEFAULT 0x40 /* don't set to default value */ *************** *** 8927,8932 **** --- 8928,8955 ---- } /* + * Free the string for one term option, if it was allocated. + * Set the string to empty_option and clear allocated flag. + * "var" points to the option value. + */ + void + free_one_termoption(var) + char_u *var; + { + struct vimoption *p; + + for (p = &options[0]; p->fullname != NULL; p++) + if (p->var == var) + { + if (p->flags & P_ALLOCED) + free_string_option(*(char_u **)(p->var)); + *(char_u **)(p->var) = empty_option; + p->flags &= ~P_ALLOCED; + break; + } + } + + /* * Set the terminal option defaults to the current value. * Used after setting the terminal name. */ *** ../vim-7.2.237/src/proto/option.pro 2009-02-21 20:27:00.000000000 +0100 --- src/proto/option.pro 2009-07-22 12:52:31.000000000 +0200 *************** *** 29,34 **** --- 29,35 ---- int makefoldset __ARGS((FILE *fd)); void clear_termoptions __ARGS((void)); void free_termoptions __ARGS((void)); + void free_one_termoption __ARGS((char_u *var)); void set_term_defaults __ARGS((void)); void comp_col __ARGS((void)); char_u *get_equalprg __ARGS((void)); *** ../vim-7.2.237/src/term.c 2009-06-16 14:31:56.000000000 +0200 --- src/term.c 2009-07-22 13:19:59.000000000 +0200 *************** *** 2881,2887 **** /* if 'Sb' and 'AB' are not defined, reset "Co" */ if (*T_CSB == NUL && *T_CAB == NUL) ! T_CCO = empty_option; /* Set 'weirdinvert' according to value of 't_xs' */ p_wiv = (*T_XS != NUL); --- 2881,2887 ---- /* if 'Sb' and 'AB' are not defined, reset "Co" */ if (*T_CSB == NUL && *T_CAB == NUL) ! free_one_termoption(T_CCO); /* Set 'weirdinvert' according to value of 't_xs' */ p_wiv = (*T_XS != NUL); *** ../vim-7.2.237/src/version.c 2009-07-22 13:27:50.000000000 +0200 --- src/version.c 2009-07-22 14:25:44.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 238, /**/ -- hundred-and-one symptoms of being an internet addict: 95. Only communication in your household is through email. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.239 --- To: vim-dev at vim.org Subject: Patch 7.2.239 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.239 Problem: Using :diffpatch twice or when patching fails causes memory corruption and/or a crash. (Bryan Venteicher) Solution: Detect missing output file. Avoid using non-existing buffer. Files: src/diff.c *** ../vim-7.2.238/src/diff.c 2009-05-14 22:19:19.000000000 +0200 --- src/diff.c 2009-07-22 16:06:21.000000000 +0200 *************** *** 893,898 **** --- 893,899 ---- char_u *browseFile = NULL; int browse_flag = cmdmod.browse; #endif + struct stat st; #ifdef FEAT_BROWSE if (cmdmod.browse) *************** *** 999,1042 **** STRCAT(buf, ".rej"); mch_remove(buf); ! if (curbuf->b_fname != NULL) { ! newname = vim_strnsave(curbuf->b_fname, (int)(STRLEN(curbuf->b_fname) + 4)); ! if (newname != NULL) ! STRCAT(newname, ".new"); ! } #ifdef FEAT_GUI ! need_mouse_correct = TRUE; #endif ! /* don't use a new tab page, each tab page has its own diffs */ ! cmdmod.tab = 0; ! ! if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL) ! { ! /* Pretend it was a ":split fname" command */ ! eap->cmdidx = CMD_split; ! eap->arg = tmp_new; ! do_exedit(eap, old_curwin); ! if (curwin != old_curwin) /* split must have worked */ { ! /* Set 'diff', 'scrollbind' on and 'wrap' off. */ ! diff_win_options(curwin, TRUE); ! diff_win_options(old_curwin, TRUE); ! if (newname != NULL) { ! /* do a ":file filename.new" on the patched buffer */ ! eap->arg = newname; ! ex_file(eap); #ifdef FEAT_AUTOCMD ! /* Do filetype detection with the new name. */ ! if (au_has_group((char_u *)"filetypedetect")) ! do_cmdline_cmd((char_u *)":doau filetypedetect BufRead"); #endif } } } --- 1000,1050 ---- STRCAT(buf, ".rej"); mch_remove(buf); ! /* Only continue if the output file was created. */ ! if (mch_stat((char *)tmp_new, &st) < 0 || st.st_size == 0) ! EMSG(_("E816: Cannot read patch output")); ! else { ! if (curbuf->b_fname != NULL) ! { ! newname = vim_strnsave(curbuf->b_fname, (int)(STRLEN(curbuf->b_fname) + 4)); ! if (newname != NULL) ! STRCAT(newname, ".new"); ! } #ifdef FEAT_GUI ! need_mouse_correct = TRUE; #endif ! /* don't use a new tab page, each tab page has its own diffs */ ! cmdmod.tab = 0; ! if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL) { ! /* Pretend it was a ":split fname" command */ ! eap->cmdidx = CMD_split; ! eap->arg = tmp_new; ! do_exedit(eap, old_curwin); ! /* check that split worked and editing tmp_new */ ! if (curwin != old_curwin && win_valid(old_curwin)) { ! /* Set 'diff', 'scrollbind' on and 'wrap' off. */ ! diff_win_options(curwin, TRUE); ! diff_win_options(old_curwin, TRUE); ! ! if (newname != NULL) ! { ! /* do a ":file filename.new" on the patched buffer */ ! eap->arg = newname; ! ex_file(eap); #ifdef FEAT_AUTOCMD ! /* Do filetype detection with the new name. */ ! if (au_has_group((char_u *)"filetypedetect")) ! do_cmdline_cmd((char_u *)":doau filetypedetect BufRead"); #endif + } } } } *** ../vim-7.2.238/src/version.c 2009-07-22 14:27:33.000000000 +0200 --- src/version.c 2009-07-22 16:21:29.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 239, /**/ -- hundred-and-one symptoms of being an internet addict: 97. Your mother tells you to remember something, and you look for a File/Save command. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.240 --- To: vim-dev at vim.org Subject: Patch 7.2.240 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.240 Problem: Crash when using find/replace dialog repeatedly. (Michiel Hartsuiker) Solution: Avoid doing the operation while busy or recursively. Also refuse replace when text is locked. Files: src/gui.c *** ../vim-7.2.239/src/gui.c 2009-06-24 18:31:36.000000000 +0200 --- src/gui.c 2009-07-22 16:54:16.000000000 +0200 *************** *** 5004,5009 **** --- 5004,5022 ---- char_u *p; regmatch_T regmatch; int save_did_emsg = did_emsg; + static int busy = FALSE; + + /* When the screen is being updated we should not change buffers and + * windows structures, it may cause freed memory to be used. Also don't + * do this recursively (pressing "Find" quickly several times. */ + if (updating_screen || busy) + return FALSE; + + /* refuse replace when text cannot be changed */ + if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked()) + return FALSE; + + busy = TRUE; ga_init2(&ga, 1, 100); if (type == FRD_REPLACEALL) *************** *** 5094,5099 **** --- 5107,5113 ---- } vim_free(ga.ga_data); + busy = FALSE; return (ga.ga_len > 0); } *** ../vim-7.2.239/src/version.c 2009-07-22 16:22:33.000000000 +0200 --- src/version.c 2009-07-29 11:09:13.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 240, /**/ -- hundred-and-one symptoms of being an internet addict: 113. You are asked about a bus schedule, you wonder if it is 16 or 32 bits. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.241 --- To: vim-dev at vim.org Subject: Patch 7.2.241 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.241 Problem: When using a combination of ":bufdo" and "doautoall" we may end up in the wrong directory. (Ajit Thakkar) Crash when triggering an autocommand in ":vimgrep". (Yukihiro Nakadaira) Solution: Clear w_localdir and globaldir when using the aucmd_win. Use a separate flag to decide aucmd_win needs to be restored. Files: src/fileio.c, src/globals.h, src/structs.h *** ../vim-7.2.240/src/fileio.c 2009-07-01 17:11:40.000000000 +0200 --- src/fileio.c 2009-07-22 19:08:55.000000000 +0200 *************** *** 8420,8425 **** --- 8420,8429 ---- if (aucmd_win == NULL) win = curwin; } + if (win == NULL && aucmd_win_used) + /* Strange recursive autocommand, fall back to using the current + * window. Expect a few side effects... */ + win = curwin; aco->save_curwin = curwin; aco->save_curbuf = curbuf; *************** *** 8428,8433 **** --- 8432,8438 ---- /* There is a window for "buf" in the current tab page, make it the * curwin. This is preferred, it has the least side effects (esp. if * "buf" is curbuf). */ + aco->use_aucmd_win = FALSE; curwin = win; } else *************** *** 8436,8444 **** --- 8441,8460 ---- * effects, insert it in a the current tab page. * Anything related to a window (e.g., setting folds) may have * unexpected results. */ + aco->use_aucmd_win = TRUE; + aucmd_win_used = TRUE; aucmd_win->w_buffer = buf; ++buf->b_nwindows; win_init_empty(aucmd_win); /* set cursor and topline to safe values */ + vim_free(aucmd_win->w_localdir); + aucmd_win->w_localdir = NULL; + + /* Make sure w_localdir and globaldir are NULL to avoid a chdir() in + * win_enter_ext(). */ + aucmd_win->w_localdir = NULL; + aco->globaldir = globaldir; + globaldir = NULL; + #ifdef FEAT_WINDOWS /* Split the current window, put the aucmd_win in the upper half. *************** *** 8472,8478 **** int dummy; #endif ! if (aco->new_curwin == aucmd_win) { --curbuf->b_nwindows; #ifdef FEAT_WINDOWS --- 8488,8494 ---- int dummy; #endif ! if (aco->use_aucmd_win) { --curbuf->b_nwindows; #ifdef FEAT_WINDOWS *************** *** 8499,8504 **** --- 8515,8521 ---- /* Remove the window and frame from the tree of frames. */ (void)winframe_remove(curwin, &dummy, NULL); win_remove(curwin, NULL); + aucmd_win_used = FALSE; last_status(FALSE); /* may need to remove last status line */ restore_snapshot(SNAP_AUCMD_IDX, FALSE); (void)win_comp_pos(); /* recompute window positions */ *************** *** 8517,8522 **** --- 8534,8542 ---- #endif curbuf = curwin->w_buffer; + vim_free(globaldir); + globaldir = aco->globaldir; + /* the buffer contents may have changed */ check_cursor(); if (curwin->w_topline > curbuf->b_ml.ml_line_count) *************** *** 8541,8547 **** #endif { /* Restore the buffer which was previously edited by curwin, if ! * it was chagned, we are still the same window and the buffer is * valid. */ if (curwin == aco->new_curwin && curbuf != aco->new_curbuf --- 8561,8567 ---- #endif { /* Restore the buffer which was previously edited by curwin, if ! * it was changed, we are still the same window and the buffer is * valid. */ if (curwin == aco->new_curwin && curbuf != aco->new_curbuf *** ../vim-7.2.240/src/globals.h 2009-06-16 16:01:34.000000000 +0200 --- src/globals.h 2009-07-22 19:50:53.000000000 +0200 *************** *** 541,546 **** --- 541,547 ---- #ifdef FEAT_AUTOCMD EXTERN win_T *aucmd_win; /* window used in aucmd_prepbuf() */ + EXTERN int aucmd_win_used INIT(= FALSE); /* aucmd_win is being used */ #endif /* *** ../vim-7.2.240/src/structs.h 2009-07-09 18:24:24.000000000 +0200 --- src/structs.h 2009-07-22 18:58:35.000000000 +0200 *************** *** 2288,2296 **** --- 2288,2298 ---- { buf_T *save_curbuf; /* saved curbuf */ #ifdef FEAT_AUTOCMD + int use_aucmd_win; /* using aucmd_win */ win_T *save_curwin; /* saved curwin */ win_T *new_curwin; /* new curwin */ buf_T *new_curbuf; /* new curbuf */ + char_u *globaldir; /* saved value of globaldir */ #endif } aco_save_T; *** ../vim-7.2.240/src/version.c 2009-07-29 11:10:31.000000000 +0200 --- src/version.c 2009-07-29 12:06:31.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 241, /**/ -- hundred-and-one symptoms of being an internet addict: 114. You are counting items, you go "0,1,2,3,4,5,6,7,8,9,A,B,C,D...". /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.242 --- To: vim-dev at vim.org Subject: Patch 7.2.242 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.242 Problem: Setting 'lazyredraw' causes the cursor column to be recomputed. (Tom Link) Solution: Only recompute the cursor column for a boolean option if changes the cursor position. Files: src/option.c *** ../vim-7.2.241/src/option.c 2009-07-22 14:27:33.000000000 +0200 --- src/option.c 2009-07-29 10:03:39.000000000 +0200 *************** *** 7194,7199 **** --- 7194,7207 ---- compatible_set(); } + /* 'list', 'number' */ + else if ((int *)varp == &curwin->w_p_list + || (int *)varp == &curwin->w_p_nu) + { + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; + } + else if ((int *)varp == &curbuf->b_p_ro) { /* when 'readonly' is reset globally, also reset readonlymode */ *************** *** 7645,7650 **** --- 7653,7666 ---- curbuf->b_p_imsearch = B_IMODE_USE_INSERT; # endif } + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; + } + + else if ((int *)varp == &p_arshape) + { + if (curwin->w_curswant != MAXCOL) + curwin->w_set_curswant = TRUE; } #endif *************** *** 7655,7662 **** options[opt_idx].flags |= P_WAS_SET; comp_col(); /* in case 'ruler' or 'showcmd' changed */ ! if (curwin->w_curswant != MAXCOL) ! curwin->w_set_curswant = TRUE; /* in case 'list' changed */ check_redraw(options[opt_idx].flags); return NULL; --- 7671,7677 ---- options[opt_idx].flags |= P_WAS_SET; comp_col(); /* in case 'ruler' or 'showcmd' changed */ ! check_redraw(options[opt_idx].flags); return NULL; *** ../vim-7.2.241/src/version.c 2009-07-29 12:09:49.000000000 +0200 --- src/version.c 2009-07-29 15:40:43.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 242, /**/ -- hundred-and-one symptoms of being an internet addict: 117. You are more comfortable typing in html. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.243 --- To: vim-dev at vim.org Subject: Patch 7.2.243 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.243 Problem: Memory leak when using :vimgrep and resizing. (Dominique Pelle) Solution: Free memory for aucmd_win when resizing and don't allocate it twice. Files: src/screen.c *** ../vim-7.2.242/src/screen.c 2009-06-16 17:22:38.000000000 +0200 --- src/screen.c 2009-07-29 15:59:37.000000000 +0200 *************** *** 7467,7472 **** --- 7467,7476 ---- */ FOR_ALL_TAB_WINDOWS(tp, wp) win_free_lsize(wp); + #ifdef FEAT_AUTOCMD + if (aucmd_win != NULL) + win_free_lsize(aucmd_win); + #endif new_ScreenLines = (schar_T *)lalloc((long_u)( (Rows + 1) * Columns * sizeof(schar_T)), FALSE); *************** *** 7504,7510 **** } } #ifdef FEAT_AUTOCMD ! if (aucmd_win != NULL && win_alloc_lines(aucmd_win) == FAIL) outofmem = TRUE; #endif #ifdef FEAT_WINDOWS --- 7508,7515 ---- } } #ifdef FEAT_AUTOCMD ! if (aucmd_win != NULL && aucmd_win->w_lines == NULL ! && win_alloc_lines(aucmd_win) == FAIL) outofmem = TRUE; #endif #ifdef FEAT_WINDOWS *** ../vim-7.2.242/src/version.c 2009-07-29 15:41:32.000000000 +0200 --- src/version.c 2009-07-29 16:07:47.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 243, /**/ -- hundred-and-one symptoms of being an internet addict: 118. You are on a first-name basis with your ISP's staff. /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.244 --- To: vim-dev at vim.org Subject: Patch 7.2.244 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.244 Problem: When 'enc' is utf-8 and 'fenc' is latin1, writing a non-latin1 character gives a conversion error without any hint what is wrong. Solution: When known add the line number to the error message. Files: src/fileio.c *** ../vim-7.2.243/src/fileio.c 2009-07-29 12:09:49.000000000 +0200 --- src/fileio.c 2009-07-29 17:04:06.000000000 +0200 *************** *** 121,126 **** --- 121,128 ---- char_u *bw_conv_buf; /* buffer for writing converted chars */ int bw_conv_buflen; /* size of bw_conv_buf */ int bw_conv_error; /* set for conversion error */ + linenr_T bw_conv_error_lnum; /* first line with error or zero */ + linenr_T bw_start_lnum; /* line number at start of buffer */ # ifdef USE_ICONV iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */ # endif *************** *** 2924,2929 **** --- 2925,2931 ---- linenr_T lnum; long nchars; char_u *errmsg = NULL; + int errmsg_allocated = FALSE; char_u *errnum = NULL; char_u *buffer; char_u smallbuf[SMBUFSIZE]; *************** *** 2987,2992 **** --- 2989,2995 ---- /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */ write_info.bw_conv_buf = NULL; write_info.bw_conv_error = FALSE; + write_info.bw_conv_error_lnum = 0; write_info.bw_restlen = 0; # ifdef USE_ICONV write_info.bw_iconv_fd = (iconv_t)-1; *************** *** 4243,4248 **** --- 4245,4251 ---- nchars += write_info.bw_len; } } + write_info.bw_start_lnum = start; #endif write_info.bw_len = bufsize; *************** *** 4278,4283 **** --- 4281,4289 ---- nchars += bufsize; s = buffer; len = 0; + #ifdef FEAT_MBYTE + write_info.bw_start_lnum = lnum; + #endif } /* write failed or last line has no EOL: stop here */ if (end == 0 *************** *** 4474,4480 **** { #ifdef FEAT_MBYTE if (write_info.bw_conv_error) ! errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)"); else #endif if (got_int) --- 4480,4496 ---- { #ifdef FEAT_MBYTE if (write_info.bw_conv_error) ! { ! if (write_info.bw_conv_error_lnum == 0) ! errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)"); ! else ! { ! errmsg_allocated = TRUE; ! errmsg = alloc(300); ! vim_snprintf((char *)errmsg, 300, _("E513: write error, conversion failed in line %ld (make 'fenc' empty to override)"), ! (long)write_info.bw_conv_error_lnum); ! } ! } else #endif if (got_int) *************** *** 4550,4555 **** --- 4566,4577 ---- { STRCAT(IObuff, _(" CONVERSION ERROR")); c = TRUE; + if (write_info.bw_conv_error_lnum != 0) + { + int l = STRLEN(IObuff); + vim_snprintf((char *)IObuff + l, IOSIZE - l, _(" in line %ld;"), + (long)write_info.bw_conv_error_lnum); + } } else if (notconverted) { *************** *** 4746,4751 **** --- 4768,4775 ---- } STRCAT(IObuff, errmsg); emsg(IObuff); + if (errmsg_allocated) + vim_free(errmsg); retval = FAIL; if (end == 0) *************** *** 5105,5111 **** c = buf[wlen]; } ! ip->bw_conv_error |= ucs2bytes(c, &p, flags); } if (flags & FIO_LATIN1) len = (int)(p - buf); --- 5129,5141 ---- c = buf[wlen]; } ! if (ucs2bytes(c, &p, flags) && !ip->bw_conv_error) ! { ! ip->bw_conv_error = TRUE; ! ip->bw_conv_error_lnum = ip->bw_start_lnum; ! } ! if (c == NL) ! ++ip->bw_start_lnum; } if (flags & FIO_LATIN1) len = (int)(p - buf); *************** *** 5386,5391 **** --- 5416,5422 ---- #ifdef FEAT_MBYTE /* * Convert a Unicode character to bytes. + * Return TRUE for an error, FALSE when it's OK. */ static int ucs2bytes(c, pp, flags) *** ../vim-7.2.243/src/version.c 2009-07-29 16:13:35.000000000 +0200 --- src/version.c 2009-07-29 18:01:27.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 244, /**/ -- Support your right to bare arms! Wear short sleeves! /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// --- NEW FILE 7.2.245 --- To: vim-dev at vim.org Subject: Patch 7.2.245 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.2.245 Problem: When 'enc' is "utf-16" and 'fenc' is "utf-8" writing a file does conversion while none should be done. (Yukihiro Nakadaira) When 'fenc' is empty the file is written as utf-8 instead of utf-16. Solution: Do proper comparison of encodings, taking into account that all Unicode values for 'enc' use utf-8 internally. Files: src/fileio.c *** ../vim-7.2.244/src/fileio.c 2009-07-29 18:05:57.000000000 +0200 --- src/fileio.c 2009-07-29 17:04:06.000000000 +0200 *************** *** 134,140 **** #ifdef FEAT_MBYTE static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp)); static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags)); ! static int same_encoding __ARGS((char_u *a, char_u *b)); static int get_fio_flags __ARGS((char_u *ptr)); static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags)); static int make_bom __ARGS((char_u *buf, char_u *name)); --- 134,140 ---- #ifdef FEAT_MBYTE static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp)); static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags)); ! static int need_conversion __ARGS((char_u *fenc)); static int get_fio_flags __ARGS((char_u *ptr)); static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags)); static int make_bom __ARGS((char_u *buf, char_u *name)); *************** *** 1043,1055 **** } /* ! * Conversion is required when the encoding of the file is different ! * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4 (requires ! * conversion to UTF-8). */ fio_flags = 0; ! converted = (*fenc != NUL && !same_encoding(p_enc, fenc)); ! if (converted || enc_unicode != 0) { /* "ucs-bom" means we need to check the first bytes of the file --- 1043,1054 ---- } /* ! * Conversion may be required when the encoding of the file is different ! * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4. */ fio_flags = 0; ! converted = need_conversion(fenc); ! if (converted) { /* "ucs-bom" means we need to check the first bytes of the file *************** *** 3969,3978 **** fenc = buf->b_p_fenc; /* ! * The file needs to be converted when 'fileencoding' is set and ! * 'fileencoding' differs from 'encoding'. */ ! converted = (*fenc != NUL && !same_encoding(p_enc, fenc)); /* * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or --- 3968,3976 ---- fenc = buf->b_p_fenc; /* ! * Check if the file needs to be converted. */ ! converted = need_conversion(fenc); /* * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or *************** *** 5502,5521 **** } /* ! * Return TRUE if "a" and "b" are the same 'encoding'. ! * Ignores difference between "ansi" and "latin1", "ucs-4" and "ucs-4be", etc. */ static int ! same_encoding(a, b) ! char_u *a; ! char_u *b; { ! int f; ! if (STRCMP(a, b) == 0) ! return TRUE; ! f = get_fio_flags(a); ! return (f != 0 && get_fio_flags(b) == f); } /* --- 5500,5536 ---- } /* ! * Return TRUE if file encoding "fenc" requires conversion from or to ! * 'encoding'. */ static int ! need_conversion(fenc) ! char_u *fenc; { ! int same_encoding; ! int enc_flags; ! int fenc_flags; ! if (*fenc == NUL || STRCMP(p_enc, fenc) == 0) ! same_encoding = TRUE; ! else ! { ! /* Ignore difference between "ansi" and "latin1", "ucs-4" and ! * "ucs-4be", etc. */ ! enc_flags = get_fio_flags(p_enc); ! fenc_flags = get_fio_flags(fenc); ! same_encoding = (enc_flags != 0 && fenc_flags == enc_flags); ! } ! if (same_encoding) ! { ! /* Specified encoding matches with 'encoding'. This requires ! * conversion when 'encoding' is Unicode but not UTF-8. */ ! return enc_unicode != 0; ! } ! ! /* Encodings differ. However, conversion is not needed when 'enc' is any ! * Unicode encoding and the file is UTF-8. */ ! return !(enc_utf8 && fenc_flags == FIO_UTF8); } /* *** ../vim-7.2.244/src/version.c 2009-07-29 18:05:57.000000000 +0200 --- src/version.c 2009-07-29 18:20:08.000000000 +0200 *************** *** 678,679 **** --- 678,681 ---- { /* Add new patch number below this line */ + /**/ + 245, /**/ -- An actual excerpt from a classified section of a city newspaper: "Illiterate? Write today for free help!" /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// Index: README.patches =================================================================== RCS file: /cvs/extras/rpms/vim/devel/README.patches,v retrieving revision 1.122 retrieving revision 1.123 diff -u -p -r1.122 -r1.123 --- README.patches 27 Mar 2009 11:38:59 -0000 1.122 +++ README.patches 31 Jul 2009 22:39:17 -0000 1.123 @@ -25,6 +25,7 @@ Checksums for the patch files can be fou Collection of patches for Vim 7.2: SIZE NAME INCLUDES 108889 7.2.001-100.gz patches 7.2.001 to 7.2.100, gzip'ed +208102 7.2.101-200.gz patches 7.2.101 to 7.2.200, gzip'ed Individual patches for Vim 7.2: @@ -177,3 +178,100 @@ Individual patches for Vim 7.2: 3394 7.2.146 v:warningmsg isn't used for all warnings 1548 7.2.147 cursor in wrong position after Tab for small version 4275 7.2.148 highlighting a character after the line doesn't always work + 15646 7.2.149 read uninit memory when using return value that wasn't set + 35686 7.2.150 (extra) VisVim doesn't support tabs + 1533 7.2.151 ":hist a" doesn't work like ":hist all" as the docs suggest + 2963 7.2.152 "silent echo x" inside ":redir" leaves cursor halfway the line + 2908 7.2.153 memory leak for ":recover empty_dir/" + 2390 7.2.154 (after 7.2.132) can still do ":cd" in SwapExists autocmd + 1249 7.2.155 memory leak in ":function /pat" + 5543 7.2.156 no completion for :scscope and :lcscope commands + 4299 7.2.157 illegal memory access when searching in path + 2177 7.2.158 warnings from VisualC compiler + 2478 7.2.159 when $x_includes ends up being "NONE" configure fails + 1353 7.2.160 search pattern not freed on exit when 'rightleft' set + 5400 7.2.161 folds messed up in other tab page + 2363 7.2.162 the quickfix window may get the wrong filetype + 1754 7.2.163 the command line window may get folding + 4089 7.2.164 when 'showbreak' is set wrong Visual block size reported + 1794 7.2.165 FuncUndefined autocmd event argument is expanded like filename + 10538 7.2.166 no completion for ":sign" command + 54715 7.2.167 splint doesn't work well for checking the code (part 1) + 2936 7.2.168 if no ctags program found, "make tags" executes first C file + 35841 7.2.169 fix more splint warnings, define colnr_T to be int + 4481 7.2.170 using b_dev while it was not set + 2261 7.2.171 (after 7.2.169) compiler warnings + 1883 7.2.172 (extra) compiler warning + 17875 7.2.173 use gcc instead of lint to check for unused function arguments + 42277 7.2.174 too many warnings from gcc -Wextra + 1455 7.2.175 compiler warning in OpenBSD + 5956 7.2.176 exceptions for splint are not useful + 57904 7.2.177 more warnings from gcc -Wextra + 3898 7.2.178 using negative value for device number might not always work + 2944 7.2.179 using negative value for device number might not always work +198701 7.2.180 some more compiler warnings when using gcc -Wextra + 49635 7.2.181 some more compiler warnings when using gcc -Wextra + 2128 7.2.182 compilation fails for Motif, gvim with GTK crashes on startup + 52709 7.2.183 configure problem for sys/sysctl.h on OpenBSD + 84846 7.2.184 some more compiler warnings when using gcc -Wextra + 8242 7.2.185 some more compiler warnings when using gcc -Wextra + 7260 7.2.186 some more compiler warnings when using gcc -Wextra + 3334 7.2.187 (after 7.2.186) doesn't compile with older tcl versions + 8531 7.2.188 crash with specific use of function calls + 2889 7.2.189 possible hang for deleting auto-indent + 4827 7.2.190 the register executed by @@ isn't stored in viminfo +106448 7.2.191 Mzscheme interface doesn't work on Ubuntu + 4206 7.2.192 (after 7.2.188) still a crash in the garbage collector + 1545 7.2.193 warning for uninitialized values in struct + 1345 7.2.194 (extra) MSVC: rem commands are echoed + 2229 7.2.195 leaking memory for the command Vim was started with + 3466 7.2.196 remove support for splint, it doesn't work well + 1530 7.2.197 warning for uninitialized values of typebuf + 2006 7.2.198 buffer used for termcap entry may be too small + 1894 7.2.199 strange character in comment + 10318 7.2.200 reading past string end when using menu bar or resizing window + 14460 7.2.201 cannot copy/paste HTML to/from Firefox via the clipboard + 1846 7.2.202 BufWipeout autocmd that edits another buffer causes problems + 40481 7.2.203 using current window to work on hidden buffer has side effects + 4407 7.2.204 (extra) Win32: Can't build with Visual Studio 2010 beta 1 + 2852 7.2.205 (extra) Win32: No support for High DPI awarenes + 1485 7.2.206 Win32: Can't build netbeans interface with Visual Studio 2010 + 2237 7.2.207 using freed memory when ":redrawstatus" works recursively + 2569 7.2.208 "set novice" gives an error message, it should be ignored + 2532 7.2.209 for xxd setmode() is undefined on Cygwin + 1896 7.2.210 warning for file changed outside of vim even after :checktime + 1639 7.2.211 memory leak when expanding a series of file names + 1727 7.2.212 (extra) warnings for redefining SIG macros + 1521 7.2.213 warning for using vsprintf() + 1983 7.2.214 crash with complete function for user command + 8298 7.2.215 ml_get error when using ":vimgrep" + 4822 7.2.216 two error messages have the same number E812 + 2020 7.2.217 running tests with valgrind doesn't work as advertised + 1448 7.2.218 cannot build GTK with hangul_input feature + 2052 7.2.219 (extra) Photon GUI is outdated + 2958 7.2.220 (after 7.2.215) BufEnter "cd" autocommand causes problems + 7103 7.2.221 X cut_buffer0 text may be used in the wrong encoding + 1816 7.2.222 ":mksession" doesn't work properly with 'acd' set + 5132 7.2.223 a script run with ":silent" cannot give any messages + 2542 7.2.224 crash when using 'completefunc' + 2874 7.2.225 when using ":normal" a saved character may be executed + 7470 7.2.226 ml_get error after deleting the last line + 1574 7.2.227 when using ":cd" in a script there is no way to track this + 14946 7.2.228 cscope is limited to 8 connections + 1595 7.2.229 warning for shadowed variable + 2442 7.2.230 a few old lint-style ARGUSED comments + 1473 7.2.231 warning for unreacheable code in Perl interface + 2704 7.2.232 cannot debug problems with being in a wrong directory + 2901 7.2.233 extra part of 7.2.232 + 3831 7.2.234 it is not possible to ignore file names without a suffix + 2696 7.2.235 Using CTRL-O z= in Insert mode has a delay before redrawing + 2809 7.2.236 Mac: Compiling with Ruby doesn't always work + 1965 7.2.237 crash on exit when window icon not set + 3941 7.2.238 leaking memory when setting term to "builtin_dumb" + 4151 7.2.239 using :diffpatch twice may cause a crash + 2078 7.2.240 crash when using GUI find/replace dialog repeatedly + 5174 7.2.241 problems with using ":bufdo" and "doautoall" or ":vimgrep" + 2505 7.2.242 setting 'lazyredraw' causes the cursor column to be recomputed + 1918 7.2.243 memory leak when using :vimgrep and resizing + 4757 7.2.244 insufficient info for a conversion error from utf-8 to latin1 + 5093 7.2.245 wrong conversion when writing Unicode encoded files Index: vim.spec =================================================================== RCS file: /cvs/extras/rpms/vim/devel/vim.spec,v retrieving revision 1.237 retrieving revision 1.238 diff -u -p -r1.237 -r1.238 --- vim.spec 27 Jul 2009 06:53:18 -0000 1.237 +++ vim.spec 31 Jul 2009 22:39:18 -0000 1.238 @@ -18,13 +18,13 @@ #used for pre-releases: %define beta %{nil} %define vimdir vim72%{?beta} -%define patchlevel 148 +%define patchlevel 245 Summary: The VIM editor URL: http://www.vim.org/ Name: vim Version: %{baseversion}.%{beta}%{patchlevel} -Release: 2%{?dist} +Release: 1%{?dist} License: Vim Group: Applications/Editors Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}%{?beta}%{?CVSDATE}.tar.bz2 @@ -214,6 +214,103 @@ Patch145: ftp://ftp.vim.org/pub/vim/patc Patch146: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.146 Patch147: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.147 Patch148: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.148 +Patch149: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.149 +Patch150: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.150 +Patch151: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.151 +Patch152: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.152 +Patch153: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.153 +Patch154: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.154 +Patch155: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.155 +Patch156: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.156 +Patch157: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.157 +Patch158: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.158 +Patch159: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.159 +Patch160: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.160 +Patch161: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.161 +Patch162: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.162 +Patch163: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.163 +Patch164: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.164 +Patch165: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.165 +Patch166: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.166 +Patch167: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.167 +Patch168: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.168 +Patch169: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.169 +Patch170: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.170 +Patch171: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.171 +Patch172: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.172 +Patch173: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.173 +Patch174: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.174 +Patch175: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.175 +Patch176: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.176 +Patch177: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.177 +Patch178: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.178 +Patch179: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.179 +Patch180: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.180 +Patch181: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.181 +Patch182: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.182 +Patch183: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.183 +Patch184: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.184 +Patch185: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.185 +Patch186: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.186 +Patch187: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.187 +Patch188: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.188 +Patch189: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.189 +Patch190: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.190 +Patch191: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.191 +Patch192: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.192 +Patch193: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.193 +Patch194: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.194 +Patch195: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.195 +Patch196: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.196 +Patch197: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.197 +Patch198: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.198 +Patch199: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.199 +Patch200: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.200 +Patch201: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.201 +Patch202: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.202 +Patch203: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.203 +Patch204: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.204 +Patch205: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.205 +Patch206: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.206 +Patch207: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.207 +Patch208: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.208 +Patch209: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.209 +Patch210: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.210 +Patch211: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.211 +Patch212: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.212 +Patch213: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.213 +Patch214: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.214 +Patch215: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.215 +Patch216: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.216 +Patch217: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.217 +Patch218: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.218 +Patch219: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.219 +Patch220: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.220 +Patch221: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.221 +Patch222: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.222 +Patch223: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.223 +Patch224: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.224 +Patch225: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.225 +Patch226: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.226 +Patch227: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.227 +Patch228: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.228 +Patch229: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.229 +Patch230: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.230 +Patch231: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.231 +Patch232: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.232 +Patch233: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.233 +Patch234: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.234 +Patch235: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.235 +Patch236: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.236 +Patch237: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.237 +Patch238: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.238 +Patch239: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.239 +Patch240: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.240 +Patch241: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.241 +Patch242: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.242 +Patch243: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.243 +Patch244: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.244 +Patch245: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.245 Patch3000: vim-7.0-syntax.patch Patch3002: vim-7.1-nowarnings.patch @@ -495,6 +592,103 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runti %patch146 -p0 %patch147 -p0 %patch148 -p0 +%patch149 -p0 +%patch150 -p0 +%patch151 -p0 +%patch152 -p0 +%patch153 -p0 +%patch154 -p0 +%patch155 -p0 +%patch156 -p0 +%patch157 -p0 +%patch158 -p0 +%patch159 -p0 +%patch160 -p0 +%patch161 -p0 +%patch162 -p0 +%patch163 -p0 +%patch164 -p0 +%patch165 -p0 +%patch166 -p0 +%patch167 -p0 +%patch168 -p0 +%patch169 -p0 +%patch170 -p0 +%patch171 -p0 +%patch172 -p0 +%patch173 -p0 +%patch174 -p0 +%patch175 -p0 +%patch176 -p0 +%patch177 -p0 +%patch178 -p0 +%patch179 -p0 +%patch180 -p0 +%patch181 -p0 +%patch182 -p0 +%patch183 -p0 +%patch184 -p0 +%patch185 -p0 +%patch186 -p0 +%patch187 -p0 +%patch188 -p0 +%patch189 -p0 +%patch190 -p0 +%patch191 -p0 +%patch192 -p0 +%patch193 -p0 +%patch194 -p0 +%patch195 -p0 +%patch196 -p0 +%patch197 -p0 +%patch198 -p0 +%patch199 -p0 +%patch200 -p0 +%patch201 -p0 +%patch202 -p0 +%patch203 -p0 +%patch204 -p0 +%patch205 -p0 +%patch206 -p0 +%patch207 -p0 +%patch208 -p0 +%patch209 -p0 +%patch210 -p0 +%patch211 -p0 +%patch212 -p0 +%patch213 -p0 +%patch214 -p0 +%patch215 -p0 +%patch216 -p0 +%patch217 -p0 +%patch218 -p0 +%patch219 -p0 +%patch220 -p0 +%patch221 -p0 +%patch222 -p0 +%patch223 -p0 +%patch224 -p0 +%patch225 -p0 +%patch226 -p0 +%patch227 -p0 +%patch228 -p0 +%patch229 -p0 +%patch230 -p0 +%patch231 -p0 +%patch232 -p0 +%patch233 -p0 +%patch234 -p0 +%patch235 -p0 +%patch236 -p0 +%patch237 -p0 +%patch238 -p0 +%patch239 -p0 +%patch240 -p0 +%patch241 -p0 +%patch242 -p0 +%patch243 -p0 +%patch244 -p0 +%patch245 -p0 # install spell files @@ -954,6 +1148,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/icons/hicolor/*/apps/* %changelog +* Sat Aug 01 2009 Karsten Hopp 7.2.245-1 +- add 97 upstream patches to get to patchlevel 245 + * Sun Jul 26 2009 Fedora Release Engineering - 2:7.2.148-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From amdunn at fedoraproject.org Fri Jul 31 22:41:37 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 31 Jul 2009 22:41:37 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral/F-11 emacs-common-proofgeneral.spec, NONE, 1.1 import.log, NONE, 1.1 pg-3.7.1-Makefile.patch, NONE, 1.1 pg-3.7.1-startscript.patch, NONE, 1.1 pg-3.7.1-xemacs-display-table.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731224137.839D511C00CE@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/emacs-common-proofgeneral/F-11 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9951/F-11 Modified Files: .cvsignore sources Added Files: emacs-common-proofgeneral.spec import.log pg-3.7.1-Makefile.patch pg-3.7.1-startscript.patch pg-3.7.1-xemacs-display-table.patch Log Message: * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE emacs-common-proofgeneral.spec --- # Patches described below with the patch commands %define pkg proofgeneral # Check version defaults # If the emacs-el package has installed a pkgconfig file, use that to # determine install locations and Emacs version at build time, otherwise # set defaults. %if %($(pkg-config emacs) ; echo $?) %define emacs_version 22.1 %define emacs_lispdir %{_datadir}/emacs/site-lisp %define emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d %else %define emacs_version %(pkg-config emacs --modversion) %define emacs_lispdir %(pkg-config emacs --variable sitepkglispdir) %define emacs_startdir %(pkg-config emacs --variable sitestartdir) %endif # If the xemacs-devel package has installed a pkgconfig file, use that # to determine install locations and Emacs version at build time, # otherwise set defaults. %if %($(pkg-config xemacs) ; echo $?) %define xemacs_version 21.5 %define xemacs_lispdir %{_datadir}/xemacs/site-packages/lisp %define xemacs_startdir %{_datadir}/xemacs/site-packages/lisp/site-start.d %else %define xemacs_version %(pkg-config xemacs --modversion) %define xemacs_lispdir %(pkg-config xemacs --variable sitepkglispdir) %define xemacs_startdir %(pkg-config xemacs --variable sitestartdir) %endif Name: emacs-common-%{pkg} Version: 3.7.1 Release: 4%{?dist} Summary: Emacs mode for standard interaction interface for proof assistants Group: Applications/Editors License: GPLv2 URL: http://proofgeneral.inf.ed.ac.uk/ Source0: http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-%{version}.tgz # Patch 0 - Fedora specific, don't do an "install-info" in the make process # (which would occur at build time), but instead put it into a scriptlet Patch0: pg-3.7.1-Makefile.patch # Patch 1 - Somewhat Fedora specific, patches Proof General starting # script to include values of build time generated variables (which # are inserted in the build process with sed) instead of its way of # getting this information. Also moves around some script parts related # to emacs version detection. Patch1: pg-3.7.1-startscript.patch # Patch 2 - Display tables were changed in XEmacs 21.5.29 in a way # that breaks ProofGeneral's X-Symbol code unless changes are made # Incorporating a patch here from Jerry James. (Of course, right now # the X-Symbol code is disabled as X-Symbol isn't packaged and # ProofGeneral makes changes to the X-Symbol code that would have to # be included somehow anyway, but ProofGeneral's X-Symbol code could # be activated in the future and the change is necessary to allow the # code to be byte-compiled). Patch2: pg-3.7.1-xemacs-display-table.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: emacs emacs-el xemacs xemacs-devel texinfo-tex xemacs-packages-extra %description Proof General is a generic front-end for proof assistants (also known as interactive theorem provers) based on Emacs. Proof General allows one to edit and submit a proof script to a proof assistant in an interactive manner: - It tracks the goal state, and the script as it is submitted, and allows for easy backtracking and block execution. - It adds toolbars and menus to Emacs for easy access to proof assistant features. - It integrates with X-Symbol for some provers to provide output using proper mathematical symbols. - It includes utilities for generating Emacs tags for proof scripts, allowing for easy navigation. Proof General supports a number of different proof assistants (Isabelle, Coq, PhoX, and LEGO to name a few) and is designed to be easily extendable to work with others. %package -n emacs-%{pkg} Summary: Compiled elisp files to run Proof General under GNU Emacs Group: Applications/Editors Requires: emacs(bin) >= %{emacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # MMM Mode is separately packaged for emacs (but not for XEmacs) Requires: emacs-mmm %description -n emacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with GNU Emacs. %package -n emacs-%{pkg}-el Summary: Elisp source files for Proof General under GNU Emacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n emacs-%{pkg}-el This package contains the elisp source files for Proof General under GNU Emacs. You do not need to install this package to run Proof General. Install the emacs-%{pkg} package to use Proof General with GNU Emacs. %package -n xemacs-%{pkg} Summary: Compiled elisp files to run Proof General under XEmacs Group: Applications/Editors Requires: xemacs(bin) >= %{xemacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # For MMM mode (and X-Symbol, whose use in this package currently # doesn't work - disabled until X-Symbol can be separately packaged) Requires: xemacs-packages-extra %description -n xemacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with XEmacs. %package -n xemacs-%{pkg}-el Summary: Elisp source files for Proof General under XEmacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n xemacs-%{pkg}-el This package contains the elisp source files for Proof General under XEmacs. You do not need to install this package to run Proof General. Install the xemacs-%{pkg} package to use Proof General with XEmacs. %prep %setup -q -n ProofGeneral-%{version} %patch0 %patch1 %patch2 -p1 %build # Fix rpmlint complaints: # Correct permissions for isartags script chmod 755 isar/isartags # Correct permissions for x-symbol ChangeLog chmod 644 x-symbol/lisp/ChangeLog # Correct permissions for x-symbol Makefile chmod 644 x-symbol/etc/fonts/Makefile # Remove .cvsignore file rm images/gimp/.cvsignore # Fix non UTF-8 documentation and theory files # File listing taken from the Makefile %define doc_files AUTHORS BUGS COMPATIBILITY CHANGES COPYING INSTALL README REGISTER acl2/*.acl2 hol98/*.sml isar/*.thy lclam/*.lcm lego/*.l pgshell/*.pgsh phox/*.phx plastic/*.lf twelf/*.elf for f in `find %{doc_files}`; do mv $f $f.old && iconv -f iso-8859-1 -t utf8 < $f.old > $f && rm $f.old; done # Make full copies of emacs and xemacs versions, set options in the proofgeneral start script make clean make EMACS=emacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir emacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs`; do cp -pr $f emacs/$f; done make clean make EMACS=xemacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir xemacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs ! -name xemacs`; do cp -pr $f xemacs/$f; done %install rm -rf %{buildroot} %define full_doc_dir %{_datadir}/doc/%{pkg} %define full_man_dir %{_mandir}/man1 %define full_data_dir %{_datadir}/%{pkg} %define doc_options DOCDIR=%{buildroot}%{full_doc_dir} MANDIR=%{buildroot}%{full_man_dir} INFODIR=%{buildroot}%{_infodir} %define common_options PREFIX=%{buildroot}%{_prefix} DEST_PREFIX=%{_prefix} DESKTOP=%{buildroot}%{full_data_dir} BINDIR=%{buildroot}%{_bindir} %{doc_options} %define emacs_options ELISP_START=%{buildroot}%{emacs_startdir} ELISP=%{buildroot}%{emacs_lispdir}/%{pkg} DEST_ELISP=%{emacs_lispdir}/%{pkg} %define xemacs_options ELISP_START=%{buildroot}%{xemacs_startdir} ELISP=%{buildroot}%{xemacs_lispdir}/%{pkg} DEST_ELISP=%{xemacs_lispdir}/%{pkg} cp -pr `find xemacs/ -maxdepth 1 -mindepth 1` . make EMACS=xemacs %{common_options} %{xemacs_options} install install-doc cp -pr `find emacs/ -maxdepth 1 -mindepth 1` . make EMACS=emacs %{common_options} %{emacs_options} install install-doc # Don't accidentally install an infodir file over an existing one rm -f %{buildroot}%{_infodir}/dir %clean rm -rf %{buildroot} %post /sbin/install-info %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : %preun if [ $1 -eq 0 ]; then /sbin/install-info --delete %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info --delete %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : fi %files %defattr(-,root,root,-) %{full_doc_dir} %{full_data_dir} %{full_man_dir}/* %{_infodir}/* %{_bindir}/* %files -n emacs-%{pkg} %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{emacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{emacs_lispdir}/%{pkg}/mmm %exclude %{emacs_lispdir}/%{pkg}/*/*.el %{emacs_startdir}/*.el %dir %{emacs_lispdir}/%{pkg} %files -n emacs-%{pkg}-el %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/*/*.el %files -n xemacs-%{pkg} %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{xemacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{xemacs_lispdir}/%{pkg}/mmm %exclude %{xemacs_lispdir}/%{pkg}/*/*.el %{xemacs_startdir}/*.el %dir %{xemacs_lispdir}/%{pkg} %files -n xemacs-%{pkg}-el %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/*/*.el %changelog * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE import.log --- emacs-common-proofgeneral-3_7_1-4_fc10:F-11:emacs-common-proofgeneral-3.7.1-4.fc10.src.rpm:1249079698 pg-3.7.1-Makefile.patch: Makefile | 2 -- 1 file changed, 2 deletions(-) --- NEW FILE pg-3.7.1-Makefile.patch --- --- Makefile 2009-01-27 21:22:49.000000000 -0500 +++ Makefile 2009-01-27 21:23:26.000000000 -0500 @@ -215,8 +215,6 @@ cp -pf doc/proofgeneral.1 ${MANDIR} mkdir -p ${INFODIR} cp -pf doc/*.info ${INFODIR} - /sbin/install-info ${INFODIR}/ProofGeneral.info* ${INFODIR}/dir - /sbin/install-info ${INFODIR}/PG-adapting.info* ${INFODIR}/dir mkdir -p ${DOCDIR} for f in ${DOC_FILES}; do cp -pf $$f ${DOCDIR}; done for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done pg-3.7.1-startscript.patch: proofgeneral | 50 +++++++++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 21 deletions(-) --- NEW FILE pg-3.7.1-startscript.patch --- --- bin/proofgeneral 2009-02-04 06:03:47.000000000 -0500 +++ bin/proofgeneral 2009-02-04 07:24:42.000000000 -0500 @@ -15,31 +15,18 @@ # # proofgeneral,v 9.6 2008/07/19 16:10:12 da Exp # +# Additional edits for Fedora made by Alan Dunn (parts of script +# also rearranged) + +# Fedora extra variables +EMACS_LISPDIR= +XEMACS_LISPDIR= +PACKAGE= # The default path should work if you are using the Proof General RPM # or unpack Proof General in your home directory. Otherwise edit below. # NB: no trailing backslash here! -PGHOMEDEFAULT=$HOME/ProofGeneral - -# Try to find a default Emacs executable -if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then - if which emacs > /dev/null; then - EMACS=`which emacs` - else - EMACS=`which xemacs` - fi -fi - -# Try to find Proof General directory -if [ -d $PGHOMEDEFAULT ]; then - PGHOME=$PGHOMEDEFAULT -elif [ -d /usr/share/${EMACSVERSION}/site-lisp/proofgeneral ]; then - PGHOME=/usr/share/${EMACSVERSION}/site-lisp/proofgeneral -else - echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." - exit 1 -fi - +PGHOMEDEFAULT=/usr/share/emacs/site-lisp/${PACKAGE} NAME=`basename $0` @@ -98,6 +85,15 @@ esac do shift; done +# Try to find a default Emacs executable +if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then + if which emacs > /dev/null; then + EMACS=`which emacs` + else + EMACS=`which xemacs` + fi +fi + if [ ! -x "$EMACS" ]; then echo "$NAME: cannot find an Emacs or XEmacs executable. Set EMACS or your PATH." 1>&2 exit 1 @@ -105,6 +101,18 @@ EMACSVERSION=`basename $EMACS` +# Try to find Proof General directory +if [ -d $PGHOMEDEFAULT ]; then + PGHOME=$PGHOMEDEFAULT +elif [[ $EMACSVERSION == emacs && -d ${EMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${EMACS_LISPDIR}/${PACKAGE} +elif [[ $EMACSVERSION == xemacs && -d ${XEMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${XEMACS_LISPDIR}/${PACKAGE} +else + echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." + exit 1 +fi + # Deal with UTF issue if [ `locale | grep LC_CTYPE | grep UTF` ]; then echo "Warning: detected Unicode LC_CTYPE setting, switched back to C" pg-3.7.1-xemacs-display-table.patch: Makefile | 2 - generic/pg-display-table.el | 46 +++++++++++++++++++++++++++++++++++++++ generic/proof-shell.el | 3 +- phox/phox-sym-lock.el | 10 +++++--- x-symbol/lisp/x-symbol-nomule.el | 6 ++--- x-symbol/lisp/x-symbol.el | 3 +- 6 files changed, 59 insertions(+), 11 deletions(-) --- NEW FILE pg-3.7.1-xemacs-display-table.patch --- diff -durN ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el ProofGeneral-3.7.1/generic/pg-display-table.el --- ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el 1969-12-31 19:00:00.000000000 -0500 +++ ProofGeneral-3.7.1/generic/pg-display-table.el 2009-07-09 12:49:34.923843082 -0400 @@ -0,0 +1,46 @@ +;; pg-display-table.el --- Wrapper functions for display-table vectors and +;; objects. +;; +;; Copyright (C) 2009 LFCS Edinburgh. +;; Author: Jerry James +;; License: GPL (GNU GENERAL PUBLIC LICENSE) +;; +;; pg-display-table.el,v 1.0 2009/07/06 16:07:09 da Exp +;; +;; +;;; Commentary: +;; +;; This file hides the differences between display-tables that are represented +;; as vectors and recent XEmacs display-tables, which are objects. + +;;; Code: + +(require 'disp-table) + +(defmacro defun-when-void (&rest args) + "Define a function, just like `defun', unless it's already defined. +Used for compatibility among different emacs variants." + `(if (fboundp ',(car args)) + nil + (defun , at args))) + +(defun-when-void put-display-table (range value display-table) + "Set the value for char RANGE to VALUE in DISPLAY-TABLE." + (if (sequencep display-table) + (aset display-table range value) + (put-char-table range value display-table))) + +(defun-when-void get-display-table (character display-table) + "Find value for CHARACTER in DISPLAY-TABLE." + (if (sequencep display-table) + (aref display-table character) + (get-char-table character display-table))) + +(defun-when-void fill-display-table (value display-table) + "Map every entry in the table to VALUE." + (if (sequencep display-table) + (fillarray display-table value) + (put-char-table t value display-table))) + +(provide 'pg-display-table) +;;; pg-display-table.el ends here diff -durN ProofGeneral-3.7.1.ORIG/generic/proof-shell.el ProofGeneral-3.7.1/generic/proof-shell.el --- ProofGeneral-3.7.1.ORIG/generic/proof-shell.el 2008-07-10 08:49:32.000000000 -0400 +++ ProofGeneral-3.7.1/generic/proof-shell.el 2009-07-09 12:49:34.948238190 -0400 @@ -16,6 +16,7 @@ (require 'proof-utils)) (require 'proof-autoloads) +(require 'pg-display-table) (require 'pg-response) (require 'pg-goals) (require 'proof-script) @@ -1695,7 +1696,7 @@ (let ((disp (make-display-table)) (i 128)) (while (< i 256) - (aset disp i []) + (put-display-table i [] disp) (incf i)) (cond ((featurep 'xemacs) (add-spec-to-specifier current-display-table disp (current-buffer))) diff -durN ProofGeneral-3.7.1.ORIG/Makefile ProofGeneral-3.7.1/Makefile --- ProofGeneral-3.7.1.ORIG/Makefile 2008-01-31 08:06:38.000000000 -0500 +++ ProofGeneral-3.7.1/Makefile 2009-07-09 13:16:35.366276826 -0400 @@ -86,8 +86,6 @@ @echo " Byte compiling... " @echo "****************************************************************" make elc - @echo " Byte compiling X-Symbol..." - (cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file") echo $(EMACS) > $(@) @echo "****************************************************************" @echo " Finished." diff -durN ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el ProofGeneral-3.7.1/phox/phox-sym-lock.el --- ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el 2008-01-30 10:22:21.000000000 -0500 +++ ProofGeneral-3.7.1/phox/phox-sym-lock.el 2009-07-09 12:49:35.065515654 -0400 @@ -28,6 +28,7 @@ ;; more about symbol font ? check out: xfd -fn '-adobe-symbol-*--12-*' (require 'font-lock) +(require 'pg-display-table) (if (featurep 'xemacs) (require 'atomic-extents)) ;; not available on GNU Emacs @@ -223,9 +224,10 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") - (aset table (string-to-char (substring pat (1- pos) pos)) - (phox-sym-lock-translate-char-or-string obj)) + (fill-display-table "" table) + (put-display-table (string-to-char (substring pat (1- pos) pos)) + (phox-sym-lock-translate-char-or-string obj) + table) (set-face-foreground tface (if (and (boundp 'font-lock-use-fonts) font-lock-use-fonts) (face-foreground 'default) phox-sym-lock-color)) @@ -240,7 +242,7 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") + (fill-display-table "" table) (set-face-property tface 'display-table table) (set-face-property tface 'phox-sym-lock-remap 1) ; mark it tface diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el 2008-07-18 12:10:30.000000000 -0400 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el 2009-07-09 12:49:35.115921558 -0400 @@ -39,6 +39,7 @@ (provide 'x-symbol) ;;(require 'x-symbol-hooks) (require 'x-symbol-vars) +(require 'pg-display-table) (require (if (featurep 'mule) 'x-symbol-mule 'x-symbol-nomule)) (eval-when-compile (require 'x-symbol-macs)) (eval-when-compile (require 'cl)) @@ -1612,7 +1613,7 @@ (let ((table (make-display-table)) (i 0)) (while (< i 256) - (aset table i "") + (put-display-table i "" table) (setq i (1+ i))) table) "Internal variable. Display table for `x-symbol-invisible-face'.") diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el 2008-01-30 10:22:26.000000000 -0500 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el 2009-07-09 12:49:35.156890261 -0400 @@ -33,6 +33,7 @@ (error "This file is meant to be used with XEmacs/no-Mule")) (provide 'x-symbol-nomule) (require 'x-symbol-hooks) +(require 'pg-display-table) (eval-when-compile (require 'x-symbol)) ; x-symbol also requires this file ;;(eval-when-compile ;; (defvar x-symbol-encode-rchars) @@ -80,11 +81,10 @@ "Internal. Face to fontify current font-lock match.") (defvar x-symbol-nomule-display-table - ;; display-table via characters table is not implemented in XEmacs yet... - (let ((table (make-vector 256 nil)) + (let ((table (make-display-table)) (i 128)) (while (< i 160) - (aset table i "") + (put-display-table i "" table) (incf i)) table) "Display table in faces with non-standard charset registry. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/F-11/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 31 Jul 2009 21:14:21 -0000 1.1 +++ .cvsignore 31 Jul 2009 22:41:37 -0000 1.2 @@ -0,0 +1 @@ +ProofGeneral-3.7.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/F-11/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 31 Jul 2009 21:14:21 -0000 1.1 +++ sources 31 Jul 2009 22:41:37 -0000 1.2 @@ -0,0 +1 @@ +eebfff672b5941823fe893075316b02e ProofGeneral-3.7.1.tgz From amdunn at fedoraproject.org Fri Jul 31 22:50:23 2009 From: amdunn at fedoraproject.org (Alan Dunn) Date: Fri, 31 Jul 2009 22:50:23 +0000 (UTC) Subject: rpms/emacs-common-proofgeneral/F-10 emacs-common-proofgeneral.spec, NONE, 1.1 import.log, NONE, 1.1 pg-3.7.1-Makefile.patch, NONE, 1.1 pg-3.7.1-startscript.patch, NONE, 1.1 pg-3.7.1-xemacs-display-table.patch, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2 Message-ID: <20090731225023.C907A11C04D3@cvs1.fedora.phx.redhat.com> Author: amdunn Update of /cvs/pkgs/rpms/emacs-common-proofgeneral/F-10 In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11507/F-10 Modified Files: .cvsignore sources Added Files: emacs-common-proofgeneral.spec import.log pg-3.7.1-Makefile.patch pg-3.7.1-startscript.patch pg-3.7.1-xemacs-display-table.patch Log Message: * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE emacs-common-proofgeneral.spec --- # Patches described below with the patch commands %define pkg proofgeneral # Check version defaults # If the emacs-el package has installed a pkgconfig file, use that to # determine install locations and Emacs version at build time, otherwise # set defaults. %if %($(pkg-config emacs) ; echo $?) %define emacs_version 22.1 %define emacs_lispdir %{_datadir}/emacs/site-lisp %define emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d %else %define emacs_version %(pkg-config emacs --modversion) %define emacs_lispdir %(pkg-config emacs --variable sitepkglispdir) %define emacs_startdir %(pkg-config emacs --variable sitestartdir) %endif # If the xemacs-devel package has installed a pkgconfig file, use that # to determine install locations and Emacs version at build time, # otherwise set defaults. %if %($(pkg-config xemacs) ; echo $?) %define xemacs_version 21.5 %define xemacs_lispdir %{_datadir}/xemacs/site-packages/lisp %define xemacs_startdir %{_datadir}/xemacs/site-packages/lisp/site-start.d %else %define xemacs_version %(pkg-config xemacs --modversion) %define xemacs_lispdir %(pkg-config xemacs --variable sitepkglispdir) %define xemacs_startdir %(pkg-config xemacs --variable sitestartdir) %endif Name: emacs-common-%{pkg} Version: 3.7.1 Release: 4%{?dist} Summary: Emacs mode for standard interaction interface for proof assistants Group: Applications/Editors License: GPLv2 URL: http://proofgeneral.inf.ed.ac.uk/ Source0: http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-%{version}.tgz # Patch 0 - Fedora specific, don't do an "install-info" in the make process # (which would occur at build time), but instead put it into a scriptlet Patch0: pg-3.7.1-Makefile.patch # Patch 1 - Somewhat Fedora specific, patches Proof General starting # script to include values of build time generated variables (which # are inserted in the build process with sed) instead of its way of # getting this information. Also moves around some script parts related # to emacs version detection. Patch1: pg-3.7.1-startscript.patch # Patch 2 - Display tables were changed in XEmacs 21.5.29 in a way # that breaks ProofGeneral's X-Symbol code unless changes are made # Incorporating a patch here from Jerry James. (Of course, right now # the X-Symbol code is disabled as X-Symbol isn't packaged and # ProofGeneral makes changes to the X-Symbol code that would have to # be included somehow anyway, but ProofGeneral's X-Symbol code could # be activated in the future and the change is necessary to allow the # code to be byte-compiled). Patch2: pg-3.7.1-xemacs-display-table.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: emacs emacs-el xemacs xemacs-devel texinfo-tex xemacs-packages-extra %description Proof General is a generic front-end for proof assistants (also known as interactive theorem provers) based on Emacs. Proof General allows one to edit and submit a proof script to a proof assistant in an interactive manner: - It tracks the goal state, and the script as it is submitted, and allows for easy backtracking and block execution. - It adds toolbars and menus to Emacs for easy access to proof assistant features. - It integrates with X-Symbol for some provers to provide output using proper mathematical symbols. - It includes utilities for generating Emacs tags for proof scripts, allowing for easy navigation. Proof General supports a number of different proof assistants (Isabelle, Coq, PhoX, and LEGO to name a few) and is designed to be easily extendable to work with others. %package -n emacs-%{pkg} Summary: Compiled elisp files to run Proof General under GNU Emacs Group: Applications/Editors Requires: emacs(bin) >= %{emacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # MMM Mode is separately packaged for emacs (but not for XEmacs) Requires: emacs-mmm %description -n emacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with GNU Emacs. %package -n emacs-%{pkg}-el Summary: Elisp source files for Proof General under GNU Emacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n emacs-%{pkg}-el This package contains the elisp source files for Proof General under GNU Emacs. You do not need to install this package to run Proof General. Install the emacs-%{pkg} package to use Proof General with GNU Emacs. %package -n xemacs-%{pkg} Summary: Compiled elisp files to run Proof General under XEmacs Group: Applications/Editors Requires: xemacs(bin) >= %{xemacs_version} Requires: emacs-common-%{pkg} = %{version}-%{release} # For MMM mode (and X-Symbol, whose use in this package currently # doesn't work - disabled until X-Symbol can be separately packaged) Requires: xemacs-packages-extra %description -n xemacs-%{pkg} Proof General is a generic front-end for proof assistants based on Emacs. This package contains the byte compiled elisp packages to run Proof General with XEmacs. %package -n xemacs-%{pkg}-el Summary: Elisp source files for Proof General under XEmacs Group: Applications/Editors Requires: emacs-%{pkg} = %{version}-%{release} %description -n xemacs-%{pkg}-el This package contains the elisp source files for Proof General under XEmacs. You do not need to install this package to run Proof General. Install the xemacs-%{pkg} package to use Proof General with XEmacs. %prep %setup -q -n ProofGeneral-%{version} %patch0 %patch1 %patch2 -p1 %build # Fix rpmlint complaints: # Correct permissions for isartags script chmod 755 isar/isartags # Correct permissions for x-symbol ChangeLog chmod 644 x-symbol/lisp/ChangeLog # Correct permissions for x-symbol Makefile chmod 644 x-symbol/etc/fonts/Makefile # Remove .cvsignore file rm images/gimp/.cvsignore # Fix non UTF-8 documentation and theory files # File listing taken from the Makefile %define doc_files AUTHORS BUGS COMPATIBILITY CHANGES COPYING INSTALL README REGISTER acl2/*.acl2 hol98/*.sml isar/*.thy lclam/*.lcm lego/*.l pgshell/*.pgsh phox/*.phx plastic/*.lf twelf/*.elf for f in `find %{doc_files}`; do mv $f $f.old && iconv -f iso-8859-1 -t utf8 < $f.old > $f && rm $f.old; done # Make full copies of emacs and xemacs versions, set options in the proofgeneral start script make clean make EMACS=emacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir emacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs`; do cp -pr $f emacs/$f; done make clean make EMACS=xemacs compile bashscripts perlscripts doc sed -e 's|^EMACS_LISPDIR=.*$|EMACS_LISPDIR=%{emacs_lispdir}|' -e 's|^XEMACS_LISPDIR=.*$|XEMACS_LISPDIR=%{xemacs_lispdir}|' -e 's|^PACKAGE=.*$|PACKAGE=%{pkg}|' < bin/proofgeneral > .tmp && cat .tmp > bin/proofgeneral mkdir xemacs for f in `find . -maxdepth 1 -mindepth 1 ! -name emacs ! -name xemacs`; do cp -pr $f xemacs/$f; done %install rm -rf %{buildroot} %define full_doc_dir %{_datadir}/doc/%{pkg} %define full_man_dir %{_mandir}/man1 %define full_data_dir %{_datadir}/%{pkg} %define doc_options DOCDIR=%{buildroot}%{full_doc_dir} MANDIR=%{buildroot}%{full_man_dir} INFODIR=%{buildroot}%{_infodir} %define common_options PREFIX=%{buildroot}%{_prefix} DEST_PREFIX=%{_prefix} DESKTOP=%{buildroot}%{full_data_dir} BINDIR=%{buildroot}%{_bindir} %{doc_options} %define emacs_options ELISP_START=%{buildroot}%{emacs_startdir} ELISP=%{buildroot}%{emacs_lispdir}/%{pkg} DEST_ELISP=%{emacs_lispdir}/%{pkg} %define xemacs_options ELISP_START=%{buildroot}%{xemacs_startdir} ELISP=%{buildroot}%{xemacs_lispdir}/%{pkg} DEST_ELISP=%{xemacs_lispdir}/%{pkg} cp -pr `find xemacs/ -maxdepth 1 -mindepth 1` . make EMACS=xemacs %{common_options} %{xemacs_options} install install-doc cp -pr `find emacs/ -maxdepth 1 -mindepth 1` . make EMACS=emacs %{common_options} %{emacs_options} install install-doc # Don't accidentally install an infodir file over an existing one rm -f %{buildroot}%{_infodir}/dir %clean rm -rf %{buildroot} %post /sbin/install-info %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : %preun if [ $1 -eq 0 ]; then /sbin/install-info --delete %{_infodir}/ProofGeneral.info* %{_infodir}/dir 2>/dev/null || : /sbin/install-info --delete %{_infodir}/PG-adapting.info* %{_infodir}/dir 2>/dev/null || : fi %files %defattr(-,root,root,-) %{full_doc_dir} %{full_data_dir} %{full_man_dir}/* %{_infodir}/* %{_bindir}/* %files -n emacs-%{pkg} %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{emacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{emacs_lispdir}/%{pkg}/mmm %exclude %{emacs_lispdir}/%{pkg}/*/*.el %{emacs_startdir}/*.el %dir %{emacs_lispdir}/%{pkg} %files -n emacs-%{pkg}-el %defattr(-,root,root,-) %{emacs_lispdir}/%{pkg}/*/*.el %files -n xemacs-%{pkg} %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/* # Exclude bundled X-symbol, which should be separately packaged but # is not critical for the core functionality of the package %exclude %{xemacs_lispdir}/%{pkg}/x-symbol # Exclude bundled mmm-mode, packaged separately %exclude %{xemacs_lispdir}/%{pkg}/mmm %exclude %{xemacs_lispdir}/%{pkg}/*/*.el %{xemacs_startdir}/*.el %dir %{xemacs_lispdir}/%{pkg} %files -n xemacs-%{pkg}-el %defattr(-,root,root,-) %{xemacs_lispdir}/%{pkg}/*/*.el %changelog * Wed Jul 29 2009 Alan Dunn 3.7.1-4 - Incorporated comments from Jerry James about applying his patch: patch now applied unconditionally (regardless of Fedora version which was used as a somewhat imperfect way to control XEmacs version). - Patch descriptions moved upward in spec file in accordance with examples in guidelines. * Thu Jul 09 2009 Alan Dunn 3.7.1-3 - Added xemacs patch that fixes compilation problems for X-Symbol code. * Thu Jul 02 2009 Alan Dunn 3.7.1-2 - Excluded bundled X-symbol, mmm-mode. - Changed requires for these bundled packages. * Tue Apr 07 2009 Alan Dunn 3.7.1-1 - Initial Fedora RPM. --- NEW FILE import.log --- emacs-common-proofgeneral-3_7_1-4_fc10:F-10:emacs-common-proofgeneral-3.7.1-4.fc10.src.rpm:1249079805 pg-3.7.1-Makefile.patch: Makefile | 2 -- 1 file changed, 2 deletions(-) --- NEW FILE pg-3.7.1-Makefile.patch --- --- Makefile 2009-01-27 21:22:49.000000000 -0500 +++ Makefile 2009-01-27 21:23:26.000000000 -0500 @@ -215,8 +215,6 @@ cp -pf doc/proofgeneral.1 ${MANDIR} mkdir -p ${INFODIR} cp -pf doc/*.info ${INFODIR} - /sbin/install-info ${INFODIR}/ProofGeneral.info* ${INFODIR}/dir - /sbin/install-info ${INFODIR}/PG-adapting.info* ${INFODIR}/dir mkdir -p ${DOCDIR} for f in ${DOC_FILES}; do cp -pf $$f ${DOCDIR}; done for f in ${DOC_EXAMPLES}; do mkdir -p ${DOCDIR}/`dirname $$f`; cp -pf $$f ${DOCDIR}/$$f; done pg-3.7.1-startscript.patch: proofgeneral | 50 +++++++++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 21 deletions(-) --- NEW FILE pg-3.7.1-startscript.patch --- --- bin/proofgeneral 2009-02-04 06:03:47.000000000 -0500 +++ bin/proofgeneral 2009-02-04 07:24:42.000000000 -0500 @@ -15,31 +15,18 @@ # # proofgeneral,v 9.6 2008/07/19 16:10:12 da Exp # +# Additional edits for Fedora made by Alan Dunn (parts of script +# also rearranged) + +# Fedora extra variables +EMACS_LISPDIR= +XEMACS_LISPDIR= +PACKAGE= # The default path should work if you are using the Proof General RPM # or unpack Proof General in your home directory. Otherwise edit below. # NB: no trailing backslash here! -PGHOMEDEFAULT=$HOME/ProofGeneral - -# Try to find a default Emacs executable -if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then - if which emacs > /dev/null; then - EMACS=`which emacs` - else - EMACS=`which xemacs` - fi -fi - -# Try to find Proof General directory -if [ -d $PGHOMEDEFAULT ]; then - PGHOME=$PGHOMEDEFAULT -elif [ -d /usr/share/${EMACSVERSION}/site-lisp/proofgeneral ]; then - PGHOME=/usr/share/${EMACSVERSION}/site-lisp/proofgeneral -else - echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." - exit 1 -fi - +PGHOMEDEFAULT=/usr/share/emacs/site-lisp/${PACKAGE} NAME=`basename $0` @@ -98,6 +85,15 @@ esac do shift; done +# Try to find a default Emacs executable +if [ -z "$EMACS" ] || [ ! -x "$EMACS" ]; then + if which emacs > /dev/null; then + EMACS=`which emacs` + else + EMACS=`which xemacs` + fi +fi + if [ ! -x "$EMACS" ]; then echo "$NAME: cannot find an Emacs or XEmacs executable. Set EMACS or your PATH." 1>&2 exit 1 @@ -105,6 +101,18 @@ EMACSVERSION=`basename $EMACS` +# Try to find Proof General directory +if [ -d $PGHOMEDEFAULT ]; then + PGHOME=$PGHOMEDEFAULT +elif [[ $EMACSVERSION == emacs && -d ${EMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${EMACS_LISPDIR}/${PACKAGE} +elif [[ $EMACSVERSION == xemacs && -d ${XEMACS_LISPDIR}/${PACKAGE} ]]; then + PGHOME=${XEMACS_LISPDIR}/${PACKAGE} +else + echo "Cannot find the Proof General lisp files: please edit script to set PGHOMEDEFAULT correctly." + exit 1 +fi + # Deal with UTF issue if [ `locale | grep LC_CTYPE | grep UTF` ]; then echo "Warning: detected Unicode LC_CTYPE setting, switched back to C" pg-3.7.1-xemacs-display-table.patch: Makefile | 2 - generic/pg-display-table.el | 46 +++++++++++++++++++++++++++++++++++++++ generic/proof-shell.el | 3 +- phox/phox-sym-lock.el | 10 +++++--- x-symbol/lisp/x-symbol-nomule.el | 6 ++--- x-symbol/lisp/x-symbol.el | 3 +- 6 files changed, 59 insertions(+), 11 deletions(-) --- NEW FILE pg-3.7.1-xemacs-display-table.patch --- diff -durN ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el ProofGeneral-3.7.1/generic/pg-display-table.el --- ProofGeneral-3.7.1.ORIG/generic/pg-display-table.el 1969-12-31 19:00:00.000000000 -0500 +++ ProofGeneral-3.7.1/generic/pg-display-table.el 2009-07-09 12:49:34.923843082 -0400 @@ -0,0 +1,46 @@ +;; pg-display-table.el --- Wrapper functions for display-table vectors and +;; objects. +;; +;; Copyright (C) 2009 LFCS Edinburgh. +;; Author: Jerry James +;; License: GPL (GNU GENERAL PUBLIC LICENSE) +;; +;; pg-display-table.el,v 1.0 2009/07/06 16:07:09 da Exp +;; +;; +;;; Commentary: +;; +;; This file hides the differences between display-tables that are represented +;; as vectors and recent XEmacs display-tables, which are objects. + +;;; Code: + +(require 'disp-table) + +(defmacro defun-when-void (&rest args) + "Define a function, just like `defun', unless it's already defined. +Used for compatibility among different emacs variants." + `(if (fboundp ',(car args)) + nil + (defun , at args))) + +(defun-when-void put-display-table (range value display-table) + "Set the value for char RANGE to VALUE in DISPLAY-TABLE." + (if (sequencep display-table) + (aset display-table range value) + (put-char-table range value display-table))) + +(defun-when-void get-display-table (character display-table) + "Find value for CHARACTER in DISPLAY-TABLE." + (if (sequencep display-table) + (aref display-table character) + (get-char-table character display-table))) + +(defun-when-void fill-display-table (value display-table) + "Map every entry in the table to VALUE." + (if (sequencep display-table) + (fillarray display-table value) + (put-char-table t value display-table))) + +(provide 'pg-display-table) +;;; pg-display-table.el ends here diff -durN ProofGeneral-3.7.1.ORIG/generic/proof-shell.el ProofGeneral-3.7.1/generic/proof-shell.el --- ProofGeneral-3.7.1.ORIG/generic/proof-shell.el 2008-07-10 08:49:32.000000000 -0400 +++ ProofGeneral-3.7.1/generic/proof-shell.el 2009-07-09 12:49:34.948238190 -0400 @@ -16,6 +16,7 @@ (require 'proof-utils)) (require 'proof-autoloads) +(require 'pg-display-table) (require 'pg-response) (require 'pg-goals) (require 'proof-script) @@ -1695,7 +1696,7 @@ (let ((disp (make-display-table)) (i 128)) (while (< i 256) - (aset disp i []) + (put-display-table i [] disp) (incf i)) (cond ((featurep 'xemacs) (add-spec-to-specifier current-display-table disp (current-buffer))) diff -durN ProofGeneral-3.7.1.ORIG/Makefile ProofGeneral-3.7.1/Makefile --- ProofGeneral-3.7.1.ORIG/Makefile 2008-01-31 08:06:38.000000000 -0500 +++ ProofGeneral-3.7.1/Makefile 2009-07-09 13:16:35.366276826 -0400 @@ -86,8 +86,6 @@ @echo " Byte compiling... " @echo "****************************************************************" make elc - @echo " Byte compiling X-Symbol..." - (cd x-symbol/lisp; $(MAKE) EMACS="$(EMACS) -q -no-site-file") echo $(EMACS) > $(@) @echo "****************************************************************" @echo " Finished." diff -durN ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el ProofGeneral-3.7.1/phox/phox-sym-lock.el --- ProofGeneral-3.7.1.ORIG/phox/phox-sym-lock.el 2008-01-30 10:22:21.000000000 -0500 +++ ProofGeneral-3.7.1/phox/phox-sym-lock.el 2009-07-09 12:49:35.065515654 -0400 @@ -28,6 +28,7 @@ ;; more about symbol font ? check out: xfd -fn '-adobe-symbol-*--12-*' (require 'font-lock) +(require 'pg-display-table) (if (featurep 'xemacs) (require 'atomic-extents)) ;; not available on GNU Emacs @@ -223,9 +224,10 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") - (aset table (string-to-char (substring pat (1- pos) pos)) - (phox-sym-lock-translate-char-or-string obj)) + (fill-display-table "" table) + (put-display-table (string-to-char (substring pat (1- pos) pos)) + (phox-sym-lock-translate-char-or-string obj) + table) (set-face-foreground tface (if (and (boundp 'font-lock-use-fonts) font-lock-use-fonts) (face-foreground 'default) phox-sym-lock-color)) @@ -240,7 +242,7 @@ (let* ((name (phox-sym-lock-gen-symbol "face")) (table (make-display-table)) (tface (make-face name "phox-sym-lock-remap-face" t))) - (fillarray table "") + (fill-display-table "" table) (set-face-property tface 'display-table table) (set-face-property tface 'phox-sym-lock-remap 1) ; mark it tface diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol.el 2008-07-18 12:10:30.000000000 -0400 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol.el 2009-07-09 12:49:35.115921558 -0400 @@ -39,6 +39,7 @@ (provide 'x-symbol) ;;(require 'x-symbol-hooks) (require 'x-symbol-vars) +(require 'pg-display-table) (require (if (featurep 'mule) 'x-symbol-mule 'x-symbol-nomule)) (eval-when-compile (require 'x-symbol-macs)) (eval-when-compile (require 'cl)) @@ -1612,7 +1613,7 @@ (let ((table (make-display-table)) (i 0)) (while (< i 256) - (aset table i "") + (put-display-table i "" table) (setq i (1+ i))) table) "Internal variable. Display table for `x-symbol-invisible-face'.") diff -durN ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el --- ProofGeneral-3.7.1.ORIG/x-symbol/lisp/x-symbol-nomule.el 2008-01-30 10:22:26.000000000 -0500 +++ ProofGeneral-3.7.1/x-symbol/lisp/x-symbol-nomule.el 2009-07-09 12:49:35.156890261 -0400 @@ -33,6 +33,7 @@ (error "This file is meant to be used with XEmacs/no-Mule")) (provide 'x-symbol-nomule) (require 'x-symbol-hooks) +(require 'pg-display-table) (eval-when-compile (require 'x-symbol)) ; x-symbol also requires this file ;;(eval-when-compile ;; (defvar x-symbol-encode-rchars) @@ -80,11 +81,10 @@ "Internal. Face to fontify current font-lock match.") (defvar x-symbol-nomule-display-table - ;; display-table via characters table is not implemented in XEmacs yet... - (let ((table (make-vector 256 nil)) + (let ((table (make-display-table)) (i 128)) (while (< i 160) - (aset table i "") + (put-display-table i "" table) (incf i)) table) "Display table in faces with non-standard charset registry. Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/F-10/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- .cvsignore 31 Jul 2009 21:14:21 -0000 1.1 +++ .cvsignore 31 Jul 2009 22:50:22 -0000 1.2 @@ -0,0 +1 @@ +ProofGeneral-3.7.1.tgz Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/emacs-common-proofgeneral/F-10/sources,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- sources 31 Jul 2009 21:14:21 -0000 1.1 +++ sources 31 Jul 2009 22:50:23 -0000 1.2 @@ -0,0 +1 @@ +eebfff672b5941823fe893075316b02e ProofGeneral-3.7.1.tgz From nbecker at fedoraproject.org Fri Jul 31 23:27:51 2009 From: nbecker at fedoraproject.org (Neal Becker) Date: Fri, 31 Jul 2009 23:27:51 +0000 (UTC) Subject: rpms/filelight/devel filelight.spec,1.9,1.10 Message-ID: <20090731232751.969D411C00CE@cvs1.fedora.phx.redhat.com> Author: nbecker Update of /cvs/pkgs/rpms/filelight/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18746 Modified Files: filelight.spec Log Message: Upstream changed from .tar.bz2 -> .tgz Index: filelight.spec =================================================================== RCS file: /cvs/pkgs/rpms/filelight/devel/filelight.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- filelight.spec 24 Jul 2009 22:45:15 -0000 1.9 +++ filelight.spec 31 Jul 2009 23:27:50 -0000 1.10 @@ -2,17 +2,17 @@ Summary: Graphical disk usage statistics Name: filelight -Version: 1.0 +Version: 1.9rc2 Release: 16%{?dist} License: GPLv2+ Group: Applications/System URL: http://www.methylblue.com/filelight/ -Source: http://www.methylblue.com/filelight/packages/filelight-%{version}.tar.bz2 +Source: http://www.methylblue.com/filelight/packages/filelight-%{version}.tgz Patch0: filelight.desktop.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: kdelibs3-devel >= 3.2 desktop-file-utils +BuildRequires: kdelibs4-devel bkebase4-devel desktop-file-utils Requires: hicolor-icon-theme %description @@ -73,6 +73,9 @@ fi %changelog +* Fri Jul 31 2009 Neal Becker - 1.9rc2-16 +- Update to 1.9rc2 + * Fri Jul 24 2009 Fedora Release Engineering - 1.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild